-- -- PostgreSQL database dump -- \restrict xLz4YISeOc59s9IHoAhbmz5cPsM2F18ZTroUoXnGale69RBiUDyiW4LQqvtmuxm -- Dumped from database version 16.10 -- Dumped by pg_dump version 17.6 (Debian 17.6-0+deb13u1) SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET transaction_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: api_data_sync; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.api_data_sync ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, table_name character varying(50) NOT NULL, page_index integer NOT NULL, page_size integer NOT NULL, total_count integer NOT NULL, synced_rows integer NOT NULL, last_ctime timestamp with time zone, last_rowid character varying(64) NOT NULL, note character varying(255) NOT NULL, CONSTRAINT api_data_sync_page_index_check CHECK ((page_index >= 0)), CONSTRAINT api_data_sync_page_size_check CHECK ((page_size >= 0)), CONSTRAINT api_data_sync_synced_rows_check CHECK ((synced_rows >= 0)), CONSTRAINT api_data_sync_total_count_check CHECK ((total_count >= 0)) ); ALTER TABLE public.api_data_sync OWNER TO postgres; -- -- Name: api_data_sync_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.api_data_sync ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.api_data_sync_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: api_uploaded_file; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.api_uploaded_file ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, path character varying(500) NOT NULL, is_deleted boolean NOT NULL, original_filename character varying(255) NOT NULL, file_size bigint, content_type character varying(100) NOT NULL, owner_id integer NOT NULL ); ALTER TABLE public.api_uploaded_file OWNER TO postgres; -- -- Name: api_uploaded_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.api_uploaded_file ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.api_uploaded_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_group ( id integer NOT NULL, name character varying(150) NOT NULL ); ALTER TABLE public.auth_group OWNER TO postgres; -- -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_group_permissions ( id bigint NOT NULL, group_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE public.auth_group_permissions OWNER TO postgres; -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_group_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_permission ( id integer NOT NULL, name character varying(255) NOT NULL, content_type_id integer NOT NULL, codename character varying(100) NOT NULL ); ALTER TABLE public.auth_permission OWNER TO postgres; -- -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_permission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_user; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_user ( id integer NOT NULL, password character varying(128) NOT NULL, last_login timestamp with time zone, is_superuser boolean NOT NULL, username character varying(150) NOT NULL, first_name character varying(150) NOT NULL, last_name character varying(150) NOT NULL, email character varying(254) NOT NULL, is_staff boolean NOT NULL, is_active boolean NOT NULL, date_joined timestamp with time zone NOT NULL ); ALTER TABLE public.auth_user OWNER TO postgres; -- -- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_user_groups ( id bigint NOT NULL, user_id integer NOT NULL, group_id integer NOT NULL ); ALTER TABLE public.auth_user_groups OWNER TO postgres; -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_groups_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.auth_user_user_permissions ( id bigint NOT NULL, user_id integer NOT NULL, permission_id integer NOT NULL ); ALTER TABLE public.auth_user_user_permissions OWNER TO postgres; -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.auth_user_user_permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_bankaccount; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_bankaccount ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, auto_number character varying(50) NOT NULL, description text, attachment character varying(100), merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_bankaccount OWNER TO postgres; -- -- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_bankaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_bankaccount_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_customer; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_customer ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, mobile character varying(20), area character varying(100), email character varying(254), contact character varying, description text, merchant_id bigint NOT NULL, created_by_id bigint, mdy_uid character varying(100), from_mdy boolean NOT NULL ); ALTER TABLE public.basic_info_customer OWNER TO postgres; -- -- Name: basic_info_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_customer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_customer_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_customer_visible_employees; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_customer_visible_employees ( id bigint NOT NULL, customer_id bigint NOT NULL, employee_id bigint NOT NULL ); ALTER TABLE public.basic_info_customer_visible_employees OWNER TO postgres; -- -- Name: basic_info_customer_visible_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_customer_visible_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_customer_visible_employees_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_deviceinfo; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_deviceinfo ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, type character varying(20) NOT NULL, status character varying(20) NOT NULL, start_working_at date, stop_working_at date, is_occupied boolean NOT NULL, description text, merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_deviceinfo OWNER TO postgres; -- -- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_deviceinfo ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_deviceinfo_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_employee; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_employee ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, mobile character varying(20), area character varying(100), description text, status character varying(20) NOT NULL, sys_user_id integer, merchant_id bigint NOT NULL, position_id bigint ); ALTER TABLE public.basic_info_employee OWNER TO postgres; -- -- Name: basic_info_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_employee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_employee_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_employeetype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_employeetype ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, title character varying(50) NOT NULL, description text, reverse character varying(100), merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_employeetype OWNER TO postgres; -- -- Name: basic_info_employeetype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_employeetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_employeetype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_merchant; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_merchant ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, type integer NOT NULL, area character varying(100), email character varying(254), mobile character varying(20), contact text, description text, auto_complete_stock_change boolean NOT NULL ); ALTER TABLE public.basic_info_merchant OWNER TO postgres; -- -- Name: basic_info_merchant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_merchant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_merchant_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_merchantsetting; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_merchantsetting ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, key character varying(100) NOT NULL, description text, merchant_id bigint NOT NULL, val_bool boolean, val_float double precision, val_int integer, val_str character varying(100), type character varying(20) NOT NULL ); ALTER TABLE public.basic_info_merchantsetting OWNER TO postgres; -- -- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_merchantsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_merchantsetting_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_product; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_product ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, human_id character varying(100) NOT NULL, color character varying(50), width_size numeric(10,2), single_price_in numeric(10,2), single_price_out numeric(10,2), unit integer NOT NULL, spec character varying(100), description text, image character varying(100), transform_rate numeric(10,4), merchant_id bigint NOT NULL, category_id bigint NOT NULL, minimum_quantity integer, from_mdy boolean NOT NULL, mdy_image_url character varying(500), pieces integer, segment_size integer ); ALTER TABLE public.basic_info_product OWNER TO postgres; -- -- Name: basic_info_product_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_product ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_product_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_productcategory; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_productcategory ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, description text, product_prefix character varying(5) NOT NULL, merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_productcategory OWNER TO postgres; -- -- Name: basic_info_productcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_productcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_productcategory_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_quickinput; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_quickinput ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, value character varying(200) NOT NULL, "group" character varying NOT NULL ); ALTER TABLE public.basic_info_quickinput OWNER TO postgres; -- -- Name: basic_info_quickinput_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_quickinput ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_quickinput_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_supplier; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_supplier ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, area character varying(100), email character varying(254), mobile character varying(20), contact text, description text, merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_supplier OWNER TO postgres; -- -- Name: basic_info_supplier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_supplier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_supplier_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_userprofile; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_userprofile ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, description text, merchant_id bigint NOT NULL, user_id integer NOT NULL ); ALTER TABLE public.basic_info_userprofile OWNER TO postgres; -- -- Name: basic_info_userprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_userprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_userprofile_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_vehicletransportrecord; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_vehicletransportrecord ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, driver_name character varying(100) NOT NULL, contact_number character varying(20), license_plate character varying(20), delivery_date date NOT NULL, merchant_id bigint NOT NULL, vehicle_type_id bigint NOT NULL ); ALTER TABLE public.basic_info_vehicletransportrecord OWNER TO postgres; -- -- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_vehicletransportrecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_vehicletransportrecord_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_vehicletype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_vehicletype ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(50) NOT NULL, description text, merchant_id bigint NOT NULL ); ALTER TABLE public.basic_info_vehicletype OWNER TO postgres; -- -- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_vehicletype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_vehicletype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: basic_info_warehouse; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.basic_info_warehouse ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, name character varying(100) NOT NULL, location character varying(200), contact character varying(100), mobile character varying(20), area character varying(100), description text, merchant_id bigint NOT NULL, mode integer NOT NULL, type integer NOT NULL ); ALTER TABLE public.basic_info_warehouse OWNER TO postgres; -- -- Name: basic_info_warehouse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.basic_info_warehouse ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.basic_info_warehouse_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_balancechangerecord; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_balancechangerecord ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, target_type integer NOT NULL, source_type integer NOT NULL, source_id bigint NOT NULL, delta numeric(15,2) NOT NULL, direction integer NOT NULL, balance_before numeric(15,2) NOT NULL, balance_after numeric(15,2) NOT NULL, request_id character varying(64), remarks text, extra_meta jsonb NOT NULL, offset_to bigint, offset_at timestamp with time zone, offset_id bigint, cancelled boolean NOT NULL, cancelled_at timestamp with time zone, customer_id bigint, merchant_id bigint NOT NULL, supplier_id bigint, CONSTRAINT balance_change_single_counterparty CHECK ((((customer_id IS NULL) AND (supplier_id IS NOT NULL)) OR ((customer_id IS NOT NULL) AND (supplier_id IS NULL)))) ); ALTER TABLE public.business_balancechangerecord OWNER TO postgres; -- -- Name: business_balancechangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_balancechangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_balancechangerecord_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_customerbalance; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_customerbalance ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, balance numeric(15,2) NOT NULL, customer_id bigint NOT NULL, merchant_id bigint NOT NULL ); ALTER TABLE public.business_customerbalance OWNER TO postgres; -- -- Name: business_customerbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_customerbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_customerbalance_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_object; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_object ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, name character varying(100) NOT NULL, description text NOT NULL, process_id bigint NOT NULL, content_type_id integer, object_id integer, CONSTRAINT business_object_object_id_check CHECK ((object_id >= 0)) ); ALTER TABLE public.business_object OWNER TO postgres; -- -- Name: business_paymentorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_paymentorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, payment_date date NOT NULL, amount numeric(15,2) NOT NULL, status integer NOT NULL, remarks text, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, supplier_id bigint NOT NULL, bank_account_id bigint, markup character varying(255), discount_amount numeric(15,2) NOT NULL ); ALTER TABLE public.business_paymentorder OWNER TO postgres; -- -- Name: business_paymentorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_paymentorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_paymentorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_purchaseorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_purchaseorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, remarks text, merchant_id bigint NOT NULL, supplier_id bigint NOT NULL, kind integer NOT NULL, operator_id bigint NOT NULL, purchase_date date NOT NULL, status integer NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.business_purchaseorder OWNER TO postgres; -- -- Name: business_purchaseorderitem; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_purchaseorderitem ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, price numeric(15,2) NOT NULL, color character varying(50), quantity numeric(10,2) NOT NULL, unit character varying(50) NOT NULL, empty_diff_percent numeric(15,2) NOT NULL, quantity_of_rolls character varying(255), num_of_rolls integer NOT NULL, batch_number character varying(100), remarks text, product_id bigint NOT NULL, purchase_order_id bigint NOT NULL, spec character varying(100), CONSTRAINT business_purchaseorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0)) ); ALTER TABLE public.business_purchaseorderitem OWNER TO postgres; -- -- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_purchaseorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_purchaseorderitem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_purchasereturnorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_purchasereturnorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, return_date date NOT NULL, status integer NOT NULL, remarks text, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, purchase_order_id bigint, supplier_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.business_purchasereturnorder OWNER TO postgres; -- -- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_purchasereturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_purchasereturnorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_purchasereturnorderitem; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_purchasereturnorderitem ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, price numeric(15,2) NOT NULL, color character varying(50), quantity numeric(10,2) NOT NULL, unit character varying(50) NOT NULL, spec character varying(100), empty_diff_percent numeric(15,2) NOT NULL, quantity_of_rolls character varying(255), num_of_rolls integer NOT NULL, consume_detail_ids character varying(255), batch_number character varying(100), remarks text, product_id bigint NOT NULL, purchase_return_order_id bigint NOT NULL, CONSTRAINT business_purchasereturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0)) ); ALTER TABLE public.business_purchasereturnorderitem OWNER TO postgres; -- -- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_purchasereturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_purchasereturnorderitem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_receiptorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_receiptorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, receipt_date date NOT NULL, amount numeric(15,2) NOT NULL, status integer NOT NULL, remarks text, customer_id bigint NOT NULL, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, bank_account_id bigint, markup character varying(255), discount_amount numeric(15,2) NOT NULL ); ALTER TABLE public.business_receiptorder OWNER TO postgres; -- -- Name: business_receiptorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_receiptorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_receiptorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_salesorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_salesorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, sales_date date NOT NULL, kind integer NOT NULL, status integer NOT NULL, remarks text, customer_id bigint NOT NULL, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.business_salesorder OWNER TO postgres; -- -- Name: business_salesorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_salesorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_salesorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_salesorderitem; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_salesorderitem ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, price numeric(15,2) NOT NULL, color character varying(50), quantity numeric(10,2) NOT NULL, unit character varying(50) NOT NULL, spec character varying(100), empty_diff_percent numeric(15,2) NOT NULL, quantity_of_rolls character varying(255), num_of_rolls integer NOT NULL, consume_detail_ids character varying(255), batch_number character varying(100), remarks text, product_id bigint NOT NULL, sales_order_id bigint NOT NULL, CONSTRAINT business_salesorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0)) ); ALTER TABLE public.business_salesorderitem OWNER TO postgres; -- -- Name: business_salesorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_salesorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_salesorderitem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_salesreturnorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_salesreturnorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, return_date date NOT NULL, status integer NOT NULL, remarks text, customer_id bigint NOT NULL, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, sales_order_id bigint, warehouse_id bigint NOT NULL ); ALTER TABLE public.business_salesreturnorder OWNER TO postgres; -- -- Name: business_salesreturnorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_salesreturnorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_salesreturnorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_salesreturnorderitem; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_salesreturnorderitem ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, price numeric(15,2) NOT NULL, color character varying(50), quantity numeric(10,2) NOT NULL, unit character varying(50) NOT NULL, spec character varying(100), empty_diff_percent numeric(15,2) NOT NULL, quantity_of_rolls character varying(255), num_of_rolls integer NOT NULL, consume_detail_ids character varying(255), batch_number character varying(100), remarks text, product_id bigint NOT NULL, sales_return_order_id bigint NOT NULL, CONSTRAINT business_salesreturnorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0)) ); ALTER TABLE public.business_salesreturnorderitem OWNER TO postgres; -- -- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_salesreturnorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_salesreturnorderitem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: business_supplierbalance; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.business_supplierbalance ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, balance numeric(15,2) NOT NULL, merchant_id bigint NOT NULL, supplier_id bigint NOT NULL ); ALTER TABLE public.business_supplierbalance OWNER TO postgres; -- -- Name: business_supplierbalance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_supplierbalance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.business_supplierbalance_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.django_admin_log ( id integer NOT NULL, action_time timestamp with time zone NOT NULL, object_id text, object_repr character varying(200) NOT NULL, action_flag smallint NOT NULL, change_message text NOT NULL, content_type_id integer, user_id integer NOT NULL, CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) ); ALTER TABLE public.django_admin_log OWNER TO postgres; -- -- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_admin_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.django_content_type ( id integer NOT NULL, app_label character varying(100) NOT NULL, model character varying(100) NOT NULL ); ALTER TABLE public.django_content_type OWNER TO postgres; -- -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_content_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.django_migrations ( id bigint NOT NULL, app character varying(255) NOT NULL, name character varying(255) NOT NULL, applied timestamp with time zone NOT NULL ); ALTER TABLE public.django_migrations OWNER TO postgres; -- -- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.django_migrations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: django_session; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.django_session ( session_key character varying(40) NOT NULL, session_data text NOT NULL, expire_date timestamp with time zone NOT NULL ); ALTER TABLE public.django_session OWNER TO postgres; -- -- Name: printing_plateorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.printing_plateorder ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, design_code character varying(50), plate_type character varying(20), plate_date timestamp with time zone, plate_method character varying(50), plate_image jsonb NOT NULL, plate_notes text, reprint_reason text, urgency_level character varying(20) NOT NULL, area character varying(255), default_address character varying(500), is_mark_frame boolean NOT NULL, drawing_rating character varying(20), color_matching_rating character varying(20), sample_rating character varying(20), difficulty_rating character varying(20), required_completion_date timestamp with time zone, completion_date timestamp with time zone, fabric character varying(100), width character varying(50), style_name character varying(100), production_method character varying(50), sample_meter character varying(100), required_sample_meters numeric(10,2), approval_result character varying(50), is_ordered boolean NOT NULL, customer_feedback text, business_object_id bigint, customer_id bigint NOT NULL, merchandiser_id bigint, salesperson_id bigint, is_invalid boolean NOT NULL, process integer NOT NULL, fabric_source character varying(100), designer_id bigint, image_name text, print_count integer NOT NULL, CONSTRAINT printing_plateorder_print_count_check CHECK ((print_count >= 0)) ); ALTER TABLE public.printing_plateorder OWNER TO postgres; -- -- Name: printing_plateorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.printing_plateorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.printing_plateorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: printing_printingjob; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.printing_printingjob ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, quantity integer NOT NULL, unit character varying(50) NOT NULL, size character varying(100), pieces integer, description text, product_id bigint NOT NULL, printing_order_id bigint NOT NULL, business_object_id bigint, CONSTRAINT printing_printingjob_pieces_check CHECK ((pieces >= 0)), CONSTRAINT printing_printingjob_quantity_check CHECK ((quantity >= 0)) ); ALTER TABLE public.printing_printingjob OWNER TO postgres; -- -- Name: printing_printingjob_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.printing_printingjob ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.printing_printingjob_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: printing_printingorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.printing_printingorder ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, fabric character varying(100) NOT NULL, width character varying(100) NOT NULL, is_urgent boolean NOT NULL, area character varying(100), address character varying(200), fabric_source character varying(100), is_fabric_received boolean NOT NULL, craft character varying(100), description text, outgoing_date date, curve character varying(100), new_curve character varying(100), "position" text, printing_warn text, rolling_warn text, production_warn text, customer_id bigint NOT NULL, is_invalid boolean NOT NULL, process_id bigint, print_count integer NOT NULL, CONSTRAINT printing_printingorder_print_count_check CHECK ((print_count >= 0)) ); ALTER TABLE public.printing_printingorder OWNER TO postgres; -- -- Name: printing_printingorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.printing_printingorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.printing_printingorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: state_flow_record; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.state_flow_record ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, completed_at timestamp with time zone NOT NULL, completed_by_id integer, business_object_id bigint NOT NULL, state_id bigint NOT NULL, cancelled_at timestamp with time zone, is_cancelled boolean NOT NULL ); ALTER TABLE public.state_flow_record OWNER TO postgres; -- -- Name: state_log_parameter_record; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.state_log_parameter_record ( id bigint NOT NULL, updated_at timestamp with time zone NOT NULL, parameters jsonb NOT NULL, created_at timestamp with time zone NOT NULL, remark text NOT NULL, state_log_id bigint NOT NULL ); ALTER TABLE public.state_log_parameter_record OWNER TO postgres; -- -- Name: state_log_parameter_record_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.state_log_parameter_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.state_log_parameter_record_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_order_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_object ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_order_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.state_flow_record ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_orderstatelog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_process; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stateflow_process ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, name character varying(100) NOT NULL, description text NOT NULL ); ALTER TABLE public.stateflow_process OWNER TO postgres; -- -- Name: stateflow_process_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stateflow_process ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_process_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_processnode; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stateflow_processnode ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, "order" integer NOT NULL, process_id bigint NOT NULL, state_id bigint NOT NULL, CONSTRAINT stateflow_processnode_order_check CHECK (("order" >= 0)) ); ALTER TABLE public.stateflow_processnode OWNER TO postgres; -- -- Name: stateflow_processnode_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stateflow_processnode ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_processnode_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_state; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stateflow_state ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, name character varying(100) NOT NULL, description character varying(200) NOT NULL ); ALTER TABLE public.stateflow_state OWNER TO postgres; -- -- Name: stateflow_state_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stateflow_state ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_state_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_state_parameters; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stateflow_state_parameters ( id bigint NOT NULL, state_id bigint NOT NULL, stateparameter_id bigint NOT NULL ); ALTER TABLE public.stateflow_state_parameters OWNER TO postgres; -- -- Name: stateflow_state_parameters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stateflow_state_parameters ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_state_parameters_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stateflow_stateparameter; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stateflow_stateparameter ( id bigint NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, key character varying(100) NOT NULL, value character varying(200), description character varying(200) NOT NULL, attachment character varying(100), is_required boolean NOT NULL, is_image_path boolean NOT NULL ); ALTER TABLE public.stateflow_stateparameter OWNER TO postgres; -- -- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stateflow_stateparameter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stateflow_stateparameter_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_inventory; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_inventory ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, quantity numeric(10,2) NOT NULL, num_of_rolls integer NOT NULL, spec character varying(100), description text, merchant_id bigint NOT NULL, product_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.stock_inventory OWNER TO postgres; -- -- Name: stock_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_inventory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_inventory_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_purchaseorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.business_purchaseorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_purchaseorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_stockchangedetail; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_stockchangedetail ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, quantity numeric(10,2) NOT NULL, unit integer NOT NULL, merchant_id bigint NOT NULL, product_id bigint NOT NULL, stock_change_record_id bigint NOT NULL, is_consumed boolean NOT NULL, consume_with_id bigint ); ALTER TABLE public.stock_stockchangedetail OWNER TO postgres; -- -- Name: stock_stockchangedetail_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_stockchangedetail ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_stockchangedetail_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_stockchangerecord; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_stockchangerecord ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, type integer NOT NULL, source_type integer NOT NULL, source_id bigint, is_finished boolean NOT NULL, finished_at timestamp with time zone, remarks text, created_by_id integer, merchant_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.stock_stockchangerecord OWNER TO postgres; -- -- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_stockchangerecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_stockchangerecord_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_stockfreeze; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_stockfreeze ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, quantity numeric(10,2) NOT NULL, unit integer NOT NULL, status integer NOT NULL, frozen_with bigint, completed_at timestamp with time zone, completed_with bigint, cancelled_at timestamp with time zone, reason text, cancelled_by_id integer, completed_by_id integer, frozen_by_id integer NOT NULL, merchant_id bigint NOT NULL, product_id bigint NOT NULL, stock_detail_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.stock_stockfreeze OWNER TO postgres; -- -- Name: stock_stockfreeze_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_stockfreeze ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_stockfreeze_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_stocksnapshot; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_stocksnapshot ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, delta numeric(10,2) NOT NULL, quantity_before numeric(10,2) NOT NULL, quantity_after numeric(10,2) NOT NULL, unit integer NOT NULL, num_of_rolls integer NOT NULL, offset_to bigint, offset_at timestamp with time zone, cancelled boolean NOT NULL, cancelled_at timestamp with time zone, offset_id bigint, merchant_id bigint NOT NULL, product_id bigint NOT NULL, stock_change_record_id bigint NOT NULL, warehouse_id bigint NOT NULL ); ALTER TABLE public.stock_stocksnapshot OWNER TO postgres; -- -- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_stocksnapshot ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_stocksnapshot_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_transferorder; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_transferorder ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, mode integer NOT NULL, transfer_date date NOT NULL, status integer NOT NULL, remarks text, request_id character varying(64), created_by_id integer, from_warehouse_id bigint NOT NULL, incoming_record_id bigint, merchant_id bigint NOT NULL, operator_id bigint NOT NULL, outgoing_record_id bigint, to_warehouse_id bigint NOT NULL, CONSTRAINT transfer_different_warehouses CHECK ((NOT (from_warehouse_id = to_warehouse_id))) ); ALTER TABLE public.stock_transferorder OWNER TO postgres; -- -- Name: stock_transferorder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_transferorder ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_transferorder_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Name: stock_transferorderitem; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_transferorderitem ( created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL, id bigint NOT NULL, unit integer NOT NULL, total_quantity numeric(10,2) NOT NULL, num_of_rolls integer NOT NULL, product_id bigint NOT NULL, transfer_order_id bigint NOT NULL, CONSTRAINT stock_transferorderitem_num_of_rolls_check CHECK ((num_of_rolls >= 0)) ); ALTER TABLE public.stock_transferorderitem OWNER TO postgres; -- -- Name: stock_transferorderitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.stock_transferorderitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.stock_transferorderitem_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- Data for Name: api_data_sync; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.api_data_sync (id, created_at, updated_at, table_name, page_index, page_size, total_count, synced_rows, last_ctime, last_rowid, note) FROM stdin; 104 2025-12-09 09:00:00.653229+00 2025-12-09 09:00:00.653239+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 105 2025-12-09 10:00:01.537445+00 2025-12-09 10:00:01.537451+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 106 2025-12-09 11:00:00.63698+00 2025-12-09 11:00:00.636986+00 customer 3 100 1843 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 107 2025-12-09 12:00:02.474507+00 2025-12-09 12:00:02.474513+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 108 2025-12-09 13:00:01.84484+00 2025-12-09 13:00:01.844847+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 109 2025-12-09 14:00:01.075239+00 2025-12-09 14:00:01.075245+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 110 2025-12-09 15:00:00.663226+00 2025-12-09 15:00:00.663232+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 111 2025-12-09 16:00:02.607129+00 2025-12-09 16:00:02.607135+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 112 2025-12-09 17:00:00.835087+00 2025-12-09 17:00:00.835093+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan 113 2025-12-09 18:00:02.150147+00 2025-12-09 18:00:02.150153+00 customer 3 100 1844 0 2024-07-08 10:04:07+00 e2546419-78b2-47d5-9398-17ffaf224194 asc scan \. -- -- Data for Name: api_uploaded_file; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.api_uploaded_file (id, created_at, updated_at, path, is_deleted, original_filename, file_size, content_type, owner_id) FROM stdin; 1 2025-11-21 02:46:27.837198+00 2025-11-21 02:46:27.837209+00 uploads/2025/11/21/21aed50ea13146c68d20b4ae3e1b3079.png f debug_group_4.png 159627 image/png 2 2 2025-11-28 01:20:36.190015+00 2025-11-28 01:20:36.190028+00 uploads/2025/11/28/3f6310da200d4eed95fbf83e3a91c5d3.png f image.png 20215 image/png 2 3 2025-11-28 01:32:56.717249+00 2025-11-28 01:32:56.717258+00 uploads/2025/11/28/669cb9d758ec4d1d812221634c0a8f0c.png f image.png 9562 image/png 2 4 2025-11-28 01:33:05.201488+00 2025-11-28 01:33:05.201499+00 uploads/2025/11/28/7ceb226e55ff49f1ae19288bceb30043.png f image.png 27946 image/png 2 5 2025-11-28 01:33:07.382898+00 2025-11-28 01:33:07.382907+00 uploads/2025/11/28/d8476a09bc65428186de1fff70acc8cb.png f image.png 19360 image/png 2 6 2025-11-28 01:33:10.519571+00 2025-11-28 01:33:10.519581+00 uploads/2025/11/28/114c7bdecf9547dd8d55c19d814fcbe5.png f image.png 25338 image/png 2 7 2025-11-28 02:45:21.799563+00 2025-11-28 02:45:21.799574+00 uploads/2025/11/28/ccaba46c20a249f1ba70cc00a4abe75a.png f image.png 17641 image/png 2 8 2025-11-28 02:51:44.90851+00 2025-11-28 02:51:44.908523+00 uploads/2025/11/28/427aa1b8af0c44a3ba2ef930585e5f0e.png f image.png 29584 image/png 2 9 2025-11-28 02:53:41.308123+00 2025-11-28 02:53:41.308132+00 uploads/2025/11/28/ebb3a627a5ce4eaaabc6fc4d9cd15bc7.png f image.png 55897 image/png 2 10 2025-11-28 02:58:51.677179+00 2025-11-28 02:58:51.677189+00 uploads/2025/11/28/afaea93815684e2c8c3ea17124a702ed.png f image.png 35906 image/png 2 11 2025-12-01 03:39:12.602557+00 2025-12-01 03:39:12.602566+00 uploads/2025/12/01/bd8047e51ef94621aa7741374fbad214.png f image.png 38709 image/png 2 12 2025-12-01 03:39:16.058997+00 2025-12-01 03:39:16.059007+00 uploads/2025/12/01/2df23a8b39584f239830ea46b696f00f.png f image.png 38709 image/png 2 13 2025-12-01 03:42:49.826549+00 2025-12-01 03:42:49.826559+00 uploads/2025/12/01/2751345bc5714bec9ae26dbe7dbfeb01.png f image.png 22147 image/png 2 14 2025-12-01 03:42:49.959785+00 2025-12-01 03:42:49.959794+00 uploads/2025/12/01/beb6888ed0f44751a83534047560a320.png f image.png 22147 image/png 2 15 2025-12-01 03:42:50.145671+00 2025-12-01 03:42:50.145685+00 uploads/2025/12/01/6a5eab59f6f4421d956ac1173c20977c.png f image.png 22147 image/png 2 16 2025-12-01 03:42:50.262591+00 2025-12-01 03:42:50.262602+00 uploads/2025/12/01/0da6a1db469d4bbe82fac9acca841639.png f image.png 22147 image/png 2 17 2025-12-01 03:42:52.388878+00 2025-12-01 03:42:52.388889+00 uploads/2025/12/01/26583acb02d840aaabda7ec243ca64bd.png f image.png 22147 image/png 2 18 2025-12-01 03:43:09.800171+00 2025-12-01 03:43:09.800183+00 uploads/2025/12/01/fe2184c0908e4a31a3ed8d76c4d65cfb.jpeg f 1 (1).jpeg 5913871 image/jpeg 2 19 2025-12-01 03:43:17.140383+00 2025-12-01 03:43:17.140394+00 uploads/2025/12/01/4c89f613e5c748db804f5bbbe0fb0530.png f image.png 38036 image/png 2 20 2025-12-01 03:43:21.352445+00 2025-12-01 03:43:21.352456+00 uploads/2025/12/01/79d1132658c54d67aefc9546c8d8dae0.png f image.png 38036 image/png 2 21 2025-12-01 03:48:54.293441+00 2025-12-01 03:48:54.293456+00 uploads/2025/12/01/25c73df5548343e08f3ebe122d7206c6.png f image.png 60356 image/png 2 22 2025-12-01 03:49:31.899348+00 2025-12-01 03:49:31.899362+00 uploads/2025/12/01/1c464f8f5bcb4935831144894b40e5c4.png f image.png 31944 image/png 2 23 2025-12-01 03:52:04.190298+00 2025-12-01 03:52:04.190311+00 uploads/2025/12/01/84a8084a41914790817a3bbb0c6e1479.png f image.png 43993 image/png 2 24 2025-12-01 03:52:06.288095+00 2025-12-01 03:52:06.288104+00 uploads/2025/12/01/196fee8283a84aa7a809b73ed02a340a.png f image.png 43993 image/png 2 25 2025-12-01 03:53:53.77133+00 2025-12-01 03:53:53.77134+00 uploads/2025/12/01/f452e84e583b4afd930c26b61f353f44.png f image.png 43993 image/png 2 26 2025-12-01 03:53:55.465146+00 2025-12-01 03:53:55.465156+00 uploads/2025/12/01/1d1f9e7455a24d78b9434ebbe960f955.png f image.png 43993 image/png 2 27 2025-12-01 03:53:57.113175+00 2025-12-01 03:53:57.113187+00 uploads/2025/12/01/6a9628c0035f4e41b38301e642576c66.png f image.png 43993 image/png 2 28 2025-12-01 04:04:08.336637+00 2025-12-01 04:04:08.336649+00 uploads/2025/12/01/5d8bb0cb41574d6386a5bc6a2e9e8942.png f image.png 69136 image/png 2 29 2025-12-01 04:04:09.684582+00 2025-12-01 04:04:09.684592+00 uploads/2025/12/01/247c3dd314e748cc9569ca66098fe00e.png f image.png 69136 image/png 2 30 2025-12-01 04:04:11.687555+00 2025-12-01 04:04:11.687568+00 uploads/2025/12/01/a7915058c4624b1d8f4500a124f42d12.png f image.png 69136 image/png 2 31 2025-12-01 04:04:22.505629+00 2025-12-01 04:04:22.505638+00 uploads/2025/12/01/a50e4741d6824a1ab6989b06ee751c97.png f image.png 39520 image/png 2 32 2025-12-03 03:52:53.822552+00 2025-12-03 03:52:53.822568+00 uploads/2025/12/03/ad693dd7fc1241c49b756b63f2b31456.png f image.png 24247 image/png 2 33 2025-12-03 05:27:05.091131+00 2025-12-03 05:27:05.091145+00 uploads/2025/12/03/7d8e5d4a686e42ea849c3ff0754338e1.png f image.png 47455 image/png 2 34 2025-12-04 03:40:39.700448+00 2025-12-04 03:40:39.700461+00 uploads/2025/12/04/2927c245e093403d9a16cee069777518.jpg f xxx.jpg 5212160 image/jpeg 2 35 2025-12-04 05:45:22.413965+00 2025-12-04 05:45:22.413975+00 uploads/2025/12/04/dc5a16d8d5324a8c8a186ca7f86c1775.png f image.png 46007 image/png 2 36 2025-12-04 09:21:57.698525+00 2025-12-04 09:21:57.698534+00 uploads/2025/12/04/19140efce1194b378282fb98e18ee001.png f image.png 12171 image/png 2 37 2025-12-05 08:00:29.570759+00 2025-12-05 08:00:29.570768+00 uploads/2025/12/05/dbfca16214324684aae1008d13ecf44a.jpg f 诗怡2025-11-25.1.jpg 87204 image/jpeg 14 38 2025-12-05 08:03:27.791114+00 2025-12-05 08:03:27.791124+00 uploads/2025/12/05/6326e47af0bd4bd18b08c5317d929f7e.jpg f 诗怡2025-11-25.1.jpg 87204 image/jpeg 14 39 2025-12-05 08:03:47.551145+00 2025-12-05 08:03:47.551155+00 uploads/2025/12/05/429bca9610064d93b8fb81f469a526e5.jpg f 诗怡2025-11-25.1.jpg 87204 image/jpeg 14 40 2025-12-05 08:04:50.596871+00 2025-12-05 08:04:50.596884+00 uploads/2025/12/05/a65d9834edd04ba088c106ce50f65aee.jpg f 诗怡2025-11-25.1.jpg 87204 image/jpeg 14 41 2025-12-05 08:58:40.796438+00 2025-12-05 08:58:40.796447+00 uploads/2025/12/05/113eccd5e41c40d192f302a4e6ed3af4.png f image.png 22681 image/png 2 42 2025-12-05 10:17:12.708469+00 2025-12-05 10:17:12.70848+00 uploads/2025/12/05/19b400c7ddaa45beade3e87c201f74d9.jpg f photo_1764929831705.jpg 103287 image/jpeg 2 43 2025-12-05 10:22:33.890108+00 2025-12-05 10:22:33.890119+00 uploads/2025/12/05/0b0c7647efe04caa9bc71b2f4ad7c6cf.jpg f photo_1764930153041.jpg 110407 image/jpeg 2 44 2025-12-05 10:22:36.795543+00 2025-12-05 10:22:36.795554+00 uploads/2025/12/05/b9479b8eb0d64de6b1ddd131de68ae83.jpg f photo_1764930155953.jpg 108268 image/jpeg 2 45 2025-12-05 10:22:38.761304+00 2025-12-05 10:22:38.761314+00 uploads/2025/12/05/18b5f3db8c2b4f78ac59da5090e56455.jpg f photo_1764930157956.jpg 109249 image/jpeg 2 46 2025-12-05 10:26:46.466244+00 2025-12-05 10:26:46.466255+00 uploads/2025/12/05/6dd4d1ec58f0471a9c4d0b1f430304d2.jpg f photo_1764930405464.jpg 101992 image/jpeg 2 47 2025-12-06 07:40:19.401624+00 2025-12-06 07:40:19.401633+00 uploads/2025/12/06/e739711495144a818ec43a48faea023d.jpg f 福兴修改2025-12-6.1.jpg 185231 image/jpeg 14 48 2025-12-08 03:52:20.404872+00 2025-12-08 03:52:20.404886+00 uploads/2025/12/08/81fca5cf0fd14d8dace07bab3ff94c0d.png f image.png 26972 image/png 2 49 2025-12-08 05:02:10.614022+00 2025-12-08 05:02:10.614031+00 uploads/2025/12/08/0ecfe1cedac04e808abed32a61239170.png f image.png 26567 image/png 2 50 2025-12-08 05:25:57.890618+00 2025-12-08 05:25:57.890627+00 uploads/2025/12/08/9b8d6eb8c45242da866631afb7052a0f.png f image.png 63588 image/png 2 51 2025-12-08 06:46:45.57139+00 2025-12-08 06:46:45.571401+00 uploads/2025/12/08/d2e2a1e393dd4a2db86ef9eab52cd338.png f image.png 23812 image/png 2 52 2025-12-08 06:47:32.26917+00 2025-12-08 06:47:32.269183+00 uploads/2025/12/08/6e520ed1cbc949318195f6fed6684041.png f image.png 40234 image/png 2 53 2025-12-08 06:50:59.939669+00 2025-12-08 06:50:59.939678+00 uploads/2025/12/08/7b3ed67e7fc3468f89ba6eb5afb1e942.png f image.png 28732 image/png 2 54 2025-12-08 06:51:21.747772+00 2025-12-08 06:51:21.747782+00 uploads/2025/12/08/2edefbeb64b347ad84effefb6ea89744.png f image.png 27059 image/png 2 55 2025-12-08 09:33:06.958305+00 2025-12-08 09:33:06.958319+00 uploads/2025/12/08/9eef37b62bf84176b7175f73ba07b862.png f image.png 27272 image/png 2 56 2025-12-08 09:33:07.878419+00 2025-12-08 09:33:07.878426+00 uploads/2025/12/08/bc210a6ce1fe4818a3bbf65ac526d649.png f image.png 27272 image/png 2 57 2025-12-08 09:37:10.576298+00 2025-12-08 09:37:10.576307+00 uploads/2025/12/08/2fa5eb4eb4a24e9ba41ec9b10f9e8172.png f image.png 46167 image/png 2 58 2025-12-08 09:47:28.920235+00 2025-12-08 09:47:28.920245+00 uploads/2025/12/08/3269bf2f3f794bd3be309cf757423c4f.png f image.png 45007 image/png 2 59 2025-12-09 06:41:10.806085+00 2025-12-09 06:41:10.806103+00 uploads/2025/12/09/01ad0041e87c4e278e6b7402a1d62fd1.png f image.png 22162 image/png 2 60 2025-12-09 06:41:11.418761+00 2025-12-09 06:41:11.418769+00 uploads/2025/12/09/22d87ed3ee8143a18fe9b57d36b267df.png f image.png 22162 image/png 2 61 2025-12-09 06:41:12.879523+00 2025-12-09 06:41:12.879533+00 uploads/2025/12/09/fcbc5d4f576b4dee98c662d24c8937e1.png f image.png 22162 image/png 2 62 2025-12-09 06:41:13.782504+00 2025-12-09 06:41:13.782517+00 uploads/2025/12/09/6d4c7f2767d64ddf9cc6544e81a3e1d8.png f image.png 22162 image/png 2 63 2025-12-09 06:56:56.378444+00 2025-12-09 06:56:56.378453+00 uploads/2025/12/09/2ecbad61ac9843ea9257acd07959e7b3.png f image.png 25714 image/png 2 \. -- -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_group (id, name) FROM stdin; 2 跟单组 3 下单组 \. -- -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; 1 2 1 2 2 2 3 2 3 4 2 4 5 2 5 6 2 6 7 2 7 8 2 8 9 2 9 10 2 10 11 2 11 12 2 12 13 2 13 14 2 14 15 2 15 16 2 16 17 2 17 18 2 18 19 2 19 20 2 20 21 2 21 22 2 22 23 2 23 24 2 24 25 2 25 26 2 26 27 2 27 28 2 28 29 2 29 30 2 30 31 2 31 32 2 32 33 2 33 34 2 34 35 2 35 36 2 36 37 2 37 38 2 38 39 2 39 40 2 40 41 2 41 42 2 42 43 2 43 44 2 44 45 2 45 46 2 46 47 2 47 48 2 48 49 2 49 50 2 50 51 2 51 52 2 52 53 2 53 54 2 54 55 2 55 56 2 56 57 2 57 58 2 58 59 2 59 60 2 60 61 2 61 62 2 62 63 2 63 64 2 64 65 2 65 66 2 66 67 2 67 68 2 68 69 2 69 70 2 70 71 2 71 72 2 72 73 2 73 74 2 74 75 2 75 76 2 76 77 2 77 78 2 78 79 2 79 80 2 80 81 2 81 82 2 82 83 2 83 84 2 84 85 2 85 86 2 86 87 2 87 88 2 88 89 2 89 90 2 90 91 2 91 92 2 92 93 2 93 94 2 94 95 2 95 96 2 96 97 2 97 98 2 98 99 2 99 100 2 100 101 2 101 102 2 102 103 2 103 104 2 104 105 2 105 106 2 106 107 2 107 108 2 108 109 2 109 110 2 110 111 2 111 112 2 112 113 2 113 114 2 114 115 2 115 116 2 116 117 2 117 118 2 118 119 2 119 120 2 120 121 2 121 122 2 122 123 2 123 124 2 124 125 2 125 126 2 126 127 2 127 128 2 128 129 2 129 130 2 130 131 2 131 132 2 132 133 2 133 134 2 134 135 2 135 136 2 136 137 2 137 138 2 138 139 2 139 140 2 140 141 2 141 142 2 142 143 2 143 144 2 144 145 2 145 146 2 146 147 2 147 148 2 148 149 2 149 150 2 150 151 2 151 152 2 152 153 2 153 154 2 154 155 2 155 156 2 156 157 2 157 158 2 158 159 2 159 160 2 160 161 2 161 162 2 162 163 2 163 164 2 164 165 2 165 166 2 166 167 2 167 168 2 168 169 2 169 170 2 170 171 2 171 172 2 172 173 2 173 174 2 174 175 2 175 176 2 176 177 2 177 178 2 178 179 2 179 180 2 180 181 2 181 182 2 182 183 2 183 184 2 184 185 2 185 186 2 186 187 2 187 188 2 188 189 2 189 190 2 190 191 2 191 192 2 192 193 2 193 194 2 194 195 2 195 196 2 196 197 2 197 198 2 198 199 2 199 200 2 200 201 2 201 202 2 202 203 2 203 204 2 204 205 2 205 206 2 206 207 2 207 208 2 208 209 2 209 210 2 210 211 2 211 212 2 212 213 2 213 214 2 214 215 2 215 216 2 216 217 2 217 218 3 1 219 3 2 220 3 3 221 3 4 222 3 5 223 3 6 224 3 7 225 3 8 226 3 9 227 3 10 228 3 11 229 3 12 230 3 13 231 3 14 232 3 15 233 3 16 234 3 17 235 3 18 236 3 19 237 3 20 238 3 21 239 3 22 240 3 23 241 3 24 242 3 25 243 3 26 244 3 27 245 3 28 246 3 29 247 3 30 248 3 31 249 3 32 250 3 33 251 3 34 252 3 35 253 3 36 254 3 37 255 3 38 256 3 39 257 3 40 258 3 41 259 3 42 260 3 43 261 3 44 262 3 45 263 3 46 264 3 47 265 3 48 266 3 49 267 3 50 268 3 51 269 3 52 270 3 53 271 3 54 272 3 55 273 3 56 274 3 57 275 3 58 276 3 59 277 3 60 278 3 61 279 3 62 280 3 63 281 3 64 282 3 65 283 3 66 284 3 67 285 3 68 286 3 69 287 3 70 288 3 71 289 3 72 290 3 73 291 3 74 292 3 75 293 3 76 294 3 77 295 3 78 296 3 79 297 3 80 298 3 81 299 3 82 300 3 83 301 3 84 302 3 85 303 3 86 304 3 87 305 3 88 306 3 89 307 3 90 308 3 91 309 3 92 310 3 93 311 3 94 312 3 95 313 3 96 314 3 97 315 3 98 316 3 99 317 3 100 318 3 101 319 3 102 320 3 103 321 3 104 322 3 105 323 3 106 324 3 107 325 3 108 326 3 109 327 3 110 328 3 111 329 3 112 330 3 113 331 3 114 332 3 115 333 3 116 334 3 117 335 3 118 336 3 119 337 3 120 338 3 121 339 3 122 340 3 123 341 3 124 342 3 125 343 3 126 344 3 127 345 3 128 346 3 129 347 3 130 348 3 131 349 3 132 350 3 133 351 3 134 352 3 135 353 3 136 354 3 137 355 3 138 356 3 139 357 3 140 358 3 141 359 3 142 360 3 143 361 3 144 362 3 145 363 3 146 364 3 147 365 3 148 366 3 149 367 3 150 368 3 151 369 3 152 370 3 153 371 3 154 372 3 155 373 3 156 374 3 157 375 3 158 376 3 159 377 3 160 378 3 161 379 3 162 380 3 163 381 3 164 382 3 165 383 3 166 384 3 167 385 3 168 386 3 169 387 3 170 388 3 171 389 3 172 390 3 173 391 3 174 392 3 175 393 3 176 394 3 177 395 3 178 396 3 179 397 3 180 398 3 181 399 3 182 400 3 183 401 3 184 402 3 185 403 3 186 404 3 187 405 3 188 406 3 189 407 3 190 408 3 191 409 3 192 410 3 193 411 3 194 412 3 195 413 3 196 414 3 197 415 3 198 416 3 199 417 3 200 418 3 201 419 3 202 420 3 203 421 3 204 422 3 205 423 3 206 424 3 207 425 3 208 426 3 209 427 3 210 428 3 211 429 3 212 430 3 213 431 3 214 432 3 215 433 3 216 434 3 217 \. -- -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; 1 Can add log entry 1 add_logentry 2 Can change log entry 1 change_logentry 3 Can delete log entry 1 delete_logentry 4 Can view log entry 1 view_logentry 5 Can add permission 2 add_permission 6 Can change permission 2 change_permission 7 Can delete permission 2 delete_permission 8 Can view permission 2 view_permission 9 Can add group 3 add_group 10 Can change group 3 change_group 11 Can delete group 3 delete_group 12 Can view group 3 view_group 13 Can add user 4 add_user 14 Can change user 4 change_user 15 Can delete user 4 delete_user 16 Can view user 4 view_user 17 Can add content type 5 add_contenttype 18 Can change content type 5 change_contenttype 19 Can delete content type 5 delete_contenttype 20 Can view content type 5 view_contenttype 21 Can add session 6 add_session 22 Can change session 6 change_session 23 Can delete session 6 delete_session 24 Can view session 6 view_session 25 Can add 商户资料 7 add_merchant 26 Can change 商户资料 7 change_merchant 27 Can delete 商户资料 7 delete_merchant 28 Can view 商户资料 7 view_merchant 29 Can add 员工资料 8 add_employee 30 Can change 员工资料 8 change_employee 31 Can delete 员工资料 8 delete_employee 32 Can view 员工资料 8 view_employee 33 Can add 设备资料 9 add_deviceinfo 34 Can change 设备资料 9 change_deviceinfo 35 Can delete 设备资料 9 delete_deviceinfo 36 Can view 设备资料 9 view_deviceinfo 37 Can add 客户资料 10 add_customer 38 Can change 客户资料 10 change_customer 39 Can delete 客户资料 10 delete_customer 40 Can view 客户资料 10 view_customer 41 Can add 银行账户 11 add_bankaccount 42 Can change 银行账户 11 change_bankaccount 43 Can delete 银行账户 11 delete_bankaccount 44 Can view 银行账户 11 view_bankaccount 45 Can add 产品类别 12 add_productcategory 46 Can change 产品类别 12 change_productcategory 47 Can delete 产品类别 12 delete_productcategory 48 Can view 产品类别 12 view_productcategory 49 Can add 产品资料 13 add_product 50 Can change 产品资料 13 change_product 51 Can delete 产品资料 13 delete_product 52 Can view 产品资料 13 view_product 53 Can add 供应商 14 add_supplier 54 Can change 供应商 14 change_supplier 55 Can delete 供应商 14 delete_supplier 56 Can view 供应商 14 view_supplier 57 Can add 车辆类型 15 add_vehicletype 58 Can change 车辆类型 15 change_vehicletype 59 Can delete 车辆类型 15 delete_vehicletype 60 Can view 车辆类型 15 view_vehicletype 61 Can add 司机车次 16 add_vehicletransportrecord 62 Can change 司机车次 16 change_vehicletransportrecord 63 Can delete 司机车次 16 delete_vehicletransportrecord 64 Can view 司机车次 16 view_vehicletransportrecord 65 Can add 仓库资料 17 add_warehouse 66 Can change 仓库资料 17 change_warehouse 67 Can delete 仓库资料 17 delete_warehouse 68 Can view 仓库资料 17 view_warehouse 69 Can add 快捷输入 18 add_quickinput 70 Can change 快捷输入 18 change_quickinput 71 Can delete 快捷输入 18 delete_quickinput 72 Can view 快捷输入 18 view_quickinput 73 Can add 采购单 19 add_purchaseorder 74 Can change 采购单 19 change_purchaseorder 75 Can delete 采购单 19 delete_purchaseorder 76 Can view 采购单 19 view_purchaseorder 77 Can add 出入库记录 20 add_stockchangerecord 78 Can change 出入库记录 20 change_stockchangerecord 79 Can delete 出入库记录 20 delete_stockchangerecord 80 Can view 出入库记录 20 view_stockchangerecord 81 Can add 库存变动明细 21 add_stockchangedetail 82 Can change 库存变动明细 21 change_stockchangedetail 83 Can delete 库存变动明细 21 delete_stockchangedetail 84 Can view 库存变动明细 21 view_stockchangedetail 85 Can add 库存快照 22 add_stocksnapshot 86 Can change 库存快照 22 change_stocksnapshot 87 Can delete 库存快照 22 delete_stocksnapshot 88 Can view 库存快照 22 view_stocksnapshot 89 Can add 库存 23 add_inventory 90 Can change 库存 23 change_inventory 91 Can delete 库存 23 delete_inventory 92 Can view 库存 23 view_inventory 93 Can add 库存冻结 24 add_stockfreeze 94 Can change 库存冻结 24 change_stockfreeze 95 Can delete 库存冻结 24 delete_stockfreeze 96 Can view 库存冻结 24 view_stockfreeze 97 Can add 上传文件 25 add_uploadedfile 98 Can change 上传文件 25 change_uploadedfile 99 Can delete 上传文件 25 delete_uploadedfile 100 Can view 上传文件 25 view_uploadedfile 101 Can add 印染订单 26 add_printingorder 102 Can change 印染订单 26 change_printingorder 103 Can delete 印染订单 26 delete_printingorder 104 Can view 印染订单 26 view_printingorder 105 可以作废印染订单 26 can_invalidate_printingorder 106 可以恢复印染订单 26 can_activate_printingorder 107 Can add 印染款式明细 27 add_printingjob 108 Can change 印染款式明细 27 change_printingjob 109 Can delete 印染款式明细 27 delete_printingjob 110 Can view 印染款式明细 27 view_printingjob 111 Can add 开版订单 28 add_plateorder 112 Can change 开版订单 28 change_plateorder 113 Can delete 开版订单 28 delete_plateorder 114 Can view 开版订单 28 view_plateorder 115 可以作废开版订单 28 can_invalidate_plateorder 116 可以恢复开版订单 28 can_activate_plateorder 117 Can add 流程节点 29 add_state 118 Can change 流程节点 29 change_state 119 Can delete 流程节点 29 delete_state 120 Can view 流程节点 29 view_state 121 Can add 流程编排 30 add_process 122 Can change 流程编排 30 change_process 123 Can delete 流程编排 30 delete_process 124 Can view 流程编排 30 view_process 125 Can add 工艺参数 31 add_stateparameter 126 Can change 工艺参数 31 change_stateparameter 127 Can delete 工艺参数 31 delete_stateparameter 128 Can view 工艺参数 31 view_stateparameter 129 Can add 流程节点关联 32 add_processnode 130 Can change 流程节点关联 32 change_processnode 131 Can delete 流程节点关联 32 delete_processnode 132 Can view 流程节点关联 32 view_processnode 133 Can add 业务对象 33 add_businessobject 134 Can change 业务对象 33 change_businessobject 135 Can delete 业务对象 33 delete_businessobject 136 Can view 业务对象 33 view_businessobject 137 Can add 状态流转记录 34 add_stateflowrecord 138 Can change 状态流转记录 34 change_stateflowrecord 139 Can delete 状态流转记录 34 delete_stateflowrecord 140 Can view 状态流转记录 34 view_stateflowrecord 141 Can add 状态流转参数记录 35 add_statelogparameterrecord 142 Can change 状态流转参数记录 35 change_statelogparameterrecord 143 Can delete 状态流转参数记录 35 delete_statelogparameterrecord 144 Can view 状态流转参数记录 35 view_statelogparameterrecord 145 Can add 员工职位类型 36 add_employeetype 146 Can change 员工职位类型 36 change_employeetype 147 Can delete 员工职位类型 36 delete_employeetype 148 Can view 员工职位类型 36 view_employeetype 149 Can add 用户资料扩展 37 add_userprofile 150 Can change 用户资料扩展 37 change_userprofile 151 Can delete 用户资料扩展 37 delete_userprofile 152 Can view 用户资料扩展 37 view_userprofile 153 查看所有客户资料 10 view_all_customers 154 Can add 采购单 38 add_purchaseorder 155 Can change 采购单 38 change_purchaseorder 156 Can delete 采购单 38 delete_purchaseorder 157 Can view 采购单 38 view_purchaseorder 158 Can add 采购单明细 39 add_purchaseorderitem 159 Can change 采购单明细 39 change_purchaseorderitem 160 Can delete 采购单明细 39 delete_purchaseorderitem 161 Can view 采购单明细 39 view_purchaseorderitem 162 Can add 商户设置 40 add_merchantsetting 163 Can change 商户设置 40 change_merchantsetting 164 Can delete 商户设置 40 delete_merchantsetting 165 Can view 商户设置 40 view_merchantsetting 166 Can add 销售单 41 add_salesorder 167 Can change 销售单 41 change_salesorder 168 Can delete 销售单 41 delete_salesorder 169 Can view 销售单 41 view_salesorder 170 Can add 供应商余额 42 add_supplierbalance 171 Can change 供应商余额 42 change_supplierbalance 172 Can delete 供应商余额 42 delete_supplierbalance 173 Can view 供应商余额 42 view_supplierbalance 174 Can add 收款单 43 add_receiptorder 175 Can change 收款单 43 change_receiptorder 176 Can delete 收款单 43 delete_receiptorder 177 Can view 收款单 43 view_receiptorder 178 Can add 客户余额 44 add_customerbalance 179 Can change 客户余额 44 change_customerbalance 180 Can delete 客户余额 44 delete_customerbalance 181 Can view 客户余额 44 view_customerbalance 182 Can add 付款单 45 add_paymentorder 183 Can change 付款单 45 change_paymentorder 184 Can delete 付款单 45 delete_paymentorder 185 Can view 付款单 45 view_paymentorder 186 Can add 销售单明细 46 add_salesorderitem 187 Can change 销售单明细 46 change_salesorderitem 188 Can delete 销售单明细 46 delete_salesorderitem 189 Can view 销售单明细 46 view_salesorderitem 190 Can add 余额变动记录 47 add_balancechangerecord 191 Can change 余额变动记录 47 change_balancechangerecord 192 Can delete 余额变动记录 47 delete_balancechangerecord 193 Can view 余额变动记录 47 view_balancechangerecord 194 Can add 采购退货单 48 add_purchasereturnorder 195 Can change 采购退货单 48 change_purchasereturnorder 196 Can delete 采购退货单 48 delete_purchasereturnorder 197 Can view 采购退货单 48 view_purchasereturnorder 198 Can add 采购退货明细 49 add_purchasereturnorderitem 199 Can change 采购退货明细 49 change_purchasereturnorderitem 200 Can delete 采购退货明细 49 delete_purchasereturnorderitem 201 Can view 采购退货明细 49 view_purchasereturnorderitem 202 Can add 销售退货单 50 add_salesreturnorder 203 Can change 销售退货单 50 change_salesreturnorder 204 Can delete 销售退货单 50 delete_salesreturnorder 205 Can view 销售退货单 50 view_salesreturnorder 206 Can add 销售退货明细 51 add_salesreturnorderitem 207 Can change 销售退货明细 51 change_salesreturnorderitem 208 Can delete 销售退货明细 51 delete_salesreturnorderitem 209 Can view 销售退货明细 51 view_salesreturnorderitem 210 Can add 调拨单 52 add_transferorder 211 Can change 调拨单 52 change_transferorder 212 Can delete 调拨单 52 delete_transferorder 213 Can view 调拨单 52 view_transferorder 214 Can add 调拨单明细 53 add_transferorderitem 215 Can change 调拨单明细 53 change_transferorderitem 216 Can delete 调拨单明细 53 delete_transferorderitem 217 Can view 调拨单明细 53 view_transferorderitem 218 Can add 数据同步记录 54 add_datasync 219 Can change 数据同步记录 54 change_datasync 220 Can delete 数据同步记录 54 delete_datasync 221 Can view 数据同步记录 54 view_datasync \. -- -- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_user (id, password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined) FROM stdin; 15 pbkdf2_sha256$1000000$oTNIqdOxJquN5Hh4SOLMzS$bkqWiLyuGWrSUliV/x+m+zy96KG1dPeyZY6+jv0jXmY= 2025-12-04 06:48:53.516979+00 f 静云 f t 2025-12-04 06:12:00+00 19 pbkdf2_sha256$1000000$r4MzOEUTSt82z1iAuyJV7u$2E6ope6V06oM7XQRCtuMgvhuhwMDeofadB8ifHhoMIM= \N f test_user_1764834638834_409 测试员工 f t 2025-12-04 07:50:40.177367+00 20 pbkdf2_sha256$1000000$N7B6zdO3RulTvjuJReYhHe$E3jX5WK48MS1aA23csXfuHbJ5XTVnoVDiXf6Y0Uc9jM= \N f test_user_1764834716911_392 测试员工 test@example.com f t 2025-12-04 07:51:58.2532+00 21 pbkdf2_sha256$1000000$zrrXttxWRJHsISQ55IyIy4$qItgqFbBde6zzuz5LSfrc5ainsjDjkh7B/ZI3u9xuYg= \N f test_user_1764834718055_763 测试员工 f t 2025-12-04 07:51:59.421495+00 9 pbkdf2_sha256$1000000$7fHcKnjC9MsFNWvgmYndyZ$CNph1RseTOnvjE+ve3ExLeAms+ovmCF3AUnxqw7Ae34= \N f 丹红 f t 2025-12-04 06:05:00+00 5 pbkdf2_sha256$1000000$6QzgwlV3m9j08p5c6TimM6$dYqey1tpxL2fIuJj+qKVl2z5Dc41BrvHuZlQShmgIM4= \N f testuser_5599 testuser_5599@example.com f t 2025-11-24 05:45:22.629483+00 6 pbkdf2_sha256$1000000$Gc8ss3NEXAAO5mK1nQ51l2$/DOLtcYC+F+dG1LVSuvWvyrLVNR9qViopLL9ntjqojo= \N f apitest2 f t 2025-11-24 06:08:19.098505+00 17 pbkdf2_sha256$1000000$eMSZHdRVGRY1AlkVY64QW3$yap6dGAPHZoSzWr4cfxBPZiFAhtzOJkdX9SS6k57rBQ= \N f 丽容 f t 2025-12-04 06:13:00+00 7 pbkdf2_sha256$1000000$gXVjPP0SD9cgTNxOOsTPbG$/dtOlfY+1WsASF/pW+EtompccUEORJMTMyhL9YebZxo= \N f apitest666 f t 2025-11-24 06:16:49.620831+00 18 pbkdf2_sha256$1000000$mlouDZHnga4KB4BEozVRx5$sjaHgV7j0EIB9Yxk//5kqzY8N9YhJ4iaH1+bNt6eZr0= \N f 春香 f t 2025-12-04 06:13:00+00 3 pbkdf2_sha256$1000000$mlevMIoViCC3iCxkVWY7N7$Hs9ug78RJIMHoORM5k4YzX52IkUubzlzOzXpMDAG5/k= 2025-11-23 12:57:00+00 f 映雪 f t 2025-11-19 08:12:00+00 10 pbkdf2_sha256$1000000$8y7CVbT0jaOciUXw3SHAQK$tRaPE3XC8WerusH4BSGZRhZUA+VoaCzmPi3/3yWrdoM= \N f 杨淑滢 f t 2025-12-04 06:06:00+00 11 pbkdf2_sha256$1000000$JtvJXKVoYVlkYWuvNlGjFH$1rG6tXSClFyQhiNabIsaVxvf/t+bXJRRzcJ+3PUsxLM= \N f 翟中灿 f t 2025-12-04 06:09:00+00 16 pbkdf2_sha256$1000000$sNNmYwCVibkbbk9bAUW30b$ywTLReGUI6uELjsAartZxhzyc3GquHRIHOsz3ieBkDE= \N f 蕙婷 f t 2025-12-04 06:13:00+00 12 pbkdf2_sha256$1000000$r88b7oLTCFkQKYuvLD1Iho$dx0K9teGvYQZx60BpB4WR8xFJuMTaDZhLInhGn3R9uQ= \N f 赖晖怡 f t 2025-12-04 06:10:00+00 13 pbkdf2_sha256$1000000$AM05i4IzJijKsASZDIEv5y$DxFfl2FDLTRvLEaFugLph1R6EE3Z+DVjRZKD1D/faws= \N f 陈珍 f t 2025-12-04 06:11:00+00 22 pbkdf2_sha256$1000000$O0vPdaovJQ2pob72BQnGqn$XBVQc40r3dFOBJaHeS3rKq/Z7kKoqG5Yg6LLSwUL+Ac= \N f test_user_1764834723457_439 测试完整员工 fulltest@example.com f t 2025-12-04 07:52:04.873427+00 23 pbkdf2_sha256$1000000$dpRo76uiBiZP2TMftRb3U2$YmXyHtCYONB6sn7MSr2DY5CEwFum1kLJ7EDu9q3JfY0= \N f test_user_1764836863672_859 测试员工 test@example.com f t 2025-12-04 08:27:45.007015+00 8 pbkdf2_sha256$1000000$4zkjF3Q1o4FOFhV1JkLWgh$hPlRDRJpV8j7c6N9TjHoDqGrhTb8vqnpEKo4Ve9yczA= 2025-12-04 06:19:48.585223+00 f 文华 f t 2025-12-04 06:03:00+00 1 pbkdf2_sha256$1000000$NyR8RyN6CWu3xEJP4rXclZ$vKH5DuApHqxxHaxiWd/b6Ek0BTozUZ+ZaJXcxtfRkiA= 2025-12-08 05:31:01.301459+00 t admin t t 2025-11-18 05:58:19.271303+00 24 pbkdf2_sha256$1000000$XRssJtzwzRAZlrwGNfEq2e$GTd0X5T2w2Vk+9gawVJ+BzfKboyNAavNbXEFBPY57FI= \N f test_user_1764836864862_958 测试员工 f t 2025-12-04 08:27:46.316135+00 25 pbkdf2_sha256$1000000$c4avrjiDfI4OTUAmGsjbtH$Sl2X4HMQBxDx4XVWq5pT84rPiE8tzK06YWv5YdcSLbo= \N f test_user_1764836870109_178 测试完整员工 fulltest@example.com f t 2025-12-04 08:27:51.660225+00 14 pbkdf2_sha256$1000000$3cXzJtomgVsxYpXsRYq2Wj$8fvB061f7icuhK8H8dj34r/srMH5rYDAMZyL+BrEzTA= 2025-12-05 07:58:15.004682+00 f 陈紫莹 f t 2025-12-04 06:11:00+00 2 pbkdf2_sha256$1000000$FQEiwQ12oi0PN5Eiy8yBj8$5K56mG8hMRXmQDNAJaeacM1f7ILZ0cF/6Ad6wTI69QA= 2025-12-09 11:12:23.948602+00 f jimi f t 2025-11-18 05:59:00+00 26 pbkdf2_sha256$1000000$kIjIxsSWRNUVhXKm0o3GVb$582Es/Z5PVABOqezLhqk1cGFiK36wcYdIcwEdIDikhw= 2025-12-05 10:38:45.877563+00 f jimi6 测试 184793177@qq.com f t 2025-12-05 10:38:28.001447+00 \. -- -- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_user_groups (id, user_id, group_id) FROM stdin; 1 8 2 2 9 2 3 17 3 5 18 3 6 3 2 7 10 2 8 11 2 9 16 3 10 12 3 11 13 2 12 14 2 13 15 3 \. -- -- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; 1 2 101 2 2 102 3 2 103 4 2 104 5 2 105 6 2 106 7 2 107 8 2 108 9 2 109 10 2 110 11 2 111 12 2 112 13 2 113 14 2 114 15 2 115 16 2 116 17 3 101 18 3 102 19 3 103 20 3 104 21 3 105 22 3 106 23 3 107 24 3 108 25 3 109 26 3 110 27 3 111 28 3 112 29 3 113 30 3 114 31 3 115 32 3 116 33 2 16 34 2 13 35 2 153 36 2 40 37 2 37 38 2 38 39 2 39 \. -- -- Data for Name: basic_info_bankaccount; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_bankaccount (created_at, updated_at, id, name, auto_number, description, attachment, merchant_id) FROM stdin; 2025-12-03 06:31:51.611411+00 2025-12-03 06:31:51.611424+00 1 测试 001 \N 1 \. -- -- Data for Name: basic_info_customer; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_customer (created_at, updated_at, id, name, mobile, area, email, contact, description, merchant_id, created_by_id, mdy_uid, from_mdy) FROM stdin; 2025-12-08 15:00:00.672505+00 2025-12-08 15:00:00.672515+00 411 作废 \N 作废12.7 \N \N \N 1 \N ff69f4e3-9a6e-4847-bd7d-85da354de9dd t 2025-11-23 13:08:03.63937+00 2025-11-23 13:08:03.639378+00 5 福兴 15361280510 \N \N \N \N 1 2 \N f 2025-11-23 13:08:17.625385+00 2025-11-23 13:08:17.625392+00 6 张晓鹏 15361280510 \N \N \N \N 1 2 \N f 2025-11-23 13:08:36.458555+00 2025-11-23 13:08:36.458562+00 7 王杰敏 15361280510 \N \N \N \N 1 2 \N f 2025-12-08 15:00:00.673898+00 2025-12-08 15:00:00.673904+00 412 ODM大码玖源服饰 \N \N \N \N 1 \N b4fd9125-59fc-4621-9134-9d9a0b343b44 t 2025-12-08 15:00:00.675145+00 2025-12-08 15:00:00.675151+00 413 丝梵妮 \N \N \N \N 1 \N 73dee00d-c962-4eb0-bb5a-c5b42a19a208 t 2025-12-08 15:00:00.676082+00 2025-12-08 15:00:00.676086+00 414 中大新荣盛 \N \N \N \N 1 \N 17ec92b2-2d25-4d9f-9e62-7473200ffe5e t 2025-12-08 15:00:00.67691+00 2025-12-08 15:00:00.676914+00 415 粤炎-庄 \N \N \N \N 1 \N b1eae9eb-8707-48c0-b005-84c15b3d593f t 2025-12-05 08:20:53.169777+00 2025-12-05 08:21:02.701651+00 8 诗怡 15361280510 \N \N \N \N 1 16 \N f 2025-12-08 15:00:00.677715+00 2025-12-08 15:00:00.677719+00 416 陈武 \N \N \N \N 1 \N daaf90af-949f-4442-8a5f-acec106041c5 t 2025-11-18 08:20:30.133277+00 2025-12-08 10:24:25.661474+00 4 黄花鱼报 1235565 周边 \N \N \N 1 1 \N f 2025-12-08 15:00:00.678496+00 2025-12-08 15:00:00.678501+00 417 优雅图 \N \N \N \N 1 \N 9aecb21a-0bc7-4b65-a923-e4cdcbb1465d t 2025-11-18 08:20:18.652207+00 2025-12-08 10:29:21.609068+00 3 测试123 123 中大 \N \N \N 1 1 \N f 2025-12-08 10:29:38.499508+00 2025-12-08 10:29:38.499517+00 9 黄鱼 13104882887 \N \N \N 1 1 \N f 2025-12-08 15:00:00.679292+00 2025-12-08 15:00:00.679296+00 418 国成纺织 \N \N \N \N 1 \N e7b2377c-4780-4805-847e-2fa2bdbdd77b t 2025-12-08 15:00:00.680065+00 2025-12-08 15:00:00.680068+00 419 广州嘉理服饰 \N \N \N \N 1 \N fa411693-cbf8-4282-a68f-640f2b73cbb1 t 2025-12-08 15:00:00.68083+00 2025-12-08 15:00:00.680833+00 420 名阳服饰 \N \N \N \N 1 \N 07979ace-2a8c-4f05-9763-c457e3075a88 t 2025-12-08 15:00:00.681618+00 2025-12-08 15:00:00.681622+00 421 欧阳国斌 \N \N \N \N 1 \N c783f2eb-63b2-4889-8e58-f4a296856d3c t 2025-12-08 15:00:00.6824+00 2025-12-08 15:00:00.682403+00 422 丁小军 \N \N \N \N 1 \N cff343f0-2a98-4228-9911-97b329700ce1 t 2025-12-08 15:00:00.683156+00 2025-12-08 15:00:00.68316+00 423 钟赐欣 \N \N \N \N 1 \N c61d73fd-fbee-494c-814c-de18a0bffa4e t 2025-12-08 15:00:00.68392+00 2025-12-08 15:00:00.683924+00 424 粤炎F组 \N \N \N \N 1 \N 9b612e17-18b1-4a4e-9d13-ffaa25df7359 t 2025-12-08 15:00:00.684685+00 2025-12-08 15:00:00.684689+00 425 祥泰纺织 \N \N \N \N 1 \N 1560042c-51a2-430a-b723-b8e6a8a43a9c t 2025-12-08 15:00:00.685452+00 2025-12-08 15:00:00.685455+00 426 依姿弦服饰 \N \N \N \N 1 \N 6409554e-eb95-400c-8704-a91c0cb1cafa t 2025-12-08 15:00:00.686214+00 2025-12-08 15:00:00.686218+00 427 A陈雅丽 \N 白云 \N \N \N 1 \N d001dea9-02a0-4d40-a89a-1e42783324f4 t 2025-12-08 15:00:00.686991+00 2025-12-08 15:00:00.686995+00 428 王素 \N \N \N \N 1 \N 5e0be22a-b9f0-4435-98a2-e542b0ea53b2 t 2025-12-08 15:00:00.68775+00 2025-12-08 15:00:00.687754+00 429 聚源纺织 \N \N \N \N 1 \N 19cce44b-c982-4b82-816f-125bdc956594 t 2025-12-08 15:00:00.688517+00 2025-12-08 15:00:00.688521+00 430 锦华纺织 \N \N \N \N 1 \N 2e9649fd-619f-43cf-8805-612f9d63764e t 2025-12-08 15:00:00.689787+00 2025-12-08 15:00:00.68979+00 431 粤炎-王方新 \N \N \N \N 1 \N 22a6d61d-b8bd-4e47-bb1a-05dd6bab0e9a t 2025-12-08 15:00:00.690667+00 2025-12-08 15:00:00.69067+00 432 粤焱庄 \N \N \N \N 1 \N 21a333f2-7ae1-42dc-a93b-7920899e01ac t 2025-12-08 15:00:00.691524+00 2025-12-08 15:00:00.691528+00 433 赤沙黄总 \N \N \N \N 1 \N 20a91c7e-587a-4e3c-96b9-0d228003cc17 t 2025-12-08 15:00:00.692381+00 2025-12-08 15:00:00.692385+00 434 盛达黄子诺 \N \N \N \N 1 \N fd9d17e2-dd5e-4126-ba3f-27bd7a9f187d t 2025-12-08 15:00:00.693219+00 2025-12-08 15:00:00.693223+00 435 乾仓 \N \N \N \N 1 \N 7215b544-af54-4a5c-8af2-875533ad4a2b t 2025-12-08 15:00:00.694042+00 2025-12-08 15:00:00.694046+00 436 Alice服饰 \N 中大 \N \N \N 1 \N 75305cc5-0af4-4df1-abda-f6b207f5ce40 t 2025-12-08 15:00:00.694823+00 2025-12-08 15:00:00.694827+00 437 卓盛 \N \N \N \N 1 \N 38f3ae86-bf77-434b-8d02-0e7194668af5 t 2025-12-08 15:00:00.695578+00 2025-12-08 15:00:00.695581+00 438 0000 \N \N \N \N 1 \N 1470636f-7264-4229-80d2-dea309632d73 t 2025-12-08 15:00:00.696353+00 2025-12-08 15:00:00.696357+00 439 粤炎-阿泉 \N \N \N \N 1 \N 987219fa-ef3f-4c07-b6bb-35b3f09094d3 t 2025-12-08 15:00:00.697117+00 2025-12-08 15:00:00.697121+00 440 广州佰衫服饰 \N \N \N \N 1 \N 554d7e68-72c1-43f5-8006-3aa728dd33ea t 2025-12-08 15:00:00.69789+00 2025-12-08 15:00:00.697894+00 441 A森欣服饰 \N \N \N \N 1 \N 47ba5524-5931-45aa-b7f8-24a0e89152de t 2025-12-08 15:00:00.698648+00 2025-12-08 15:00:00.698652+00 442 歌斯拉张斌 \N \N \N \N 1 \N 7fb6a319-d2f9-43cb-9b32-3cee259447dc t 2025-12-08 15:00:00.699392+00 2025-12-08 15:00:00.699396+00 443 嘉欣服饰 \N \N \N \N 1 \N 874493cc-cc4e-422e-9bd7-bf36ed104b2a t 2025-12-08 15:00:00.700147+00 2025-12-08 15:00:00.700151+00 444 新兴杜总 \N \N \N \N 1 \N 54f6fb88-6eb8-4538-bebb-527fd9df08b6 t 2025-12-08 15:00:00.700906+00 2025-12-08 15:00:00.70091+00 445 嘉嘉纺织 \N \N \N \N 1 \N 054974d2-2d79-43ad-9939-b1f41ebdd690 t 2025-12-08 15:00:00.701648+00 2025-12-08 15:00:00.701652+00 446 A卡曼轩 \N \N \N \N 1 \N c629c276-9965-40a1-8f9d-0d8373e81bfd t 2025-12-08 15:00:00.702418+00 2025-12-08 15:00:00.702421+00 447 衣菲悦服饰 \N 周边 \N \N \N 1 \N e205e9d5-8203-4faf-b8c3-5aae7c8f5a33 t 2025-12-08 15:00:00.70318+00 2025-12-08 15:00:00.703183+00 448 艾依妮服饰 \N \N \N \N 1 \N c78bd1c5-6113-4a9b-b357-e5ed20cc5a7c t 2025-12-08 15:00:00.703932+00 2025-12-08 15:00:00.703936+00 449 晟型服饰 \N \N \N \N 1 \N 13b65a2c-ad08-49ff-ad89-6519a351c97a t 2025-12-08 15:00:00.704698+00 2025-12-08 15:00:00.704702+00 450 龚小芬 \N \N \N \N 1 \N 057effe7-b0f1-415e-b585-9993d1f10988 t 2025-12-08 15:00:00.705455+00 2025-12-08 15:00:00.705459+00 451 A王爱兵 \N 白云 \N \N \N 1 \N 44bfe40c-2c46-42bf-9fbc-2acf628e8ccb t 2025-12-08 15:00:00.706194+00 2025-12-08 15:00:00.706197+00 452 齐生 \N \N \N \N 1 \N 8768cc6b-86a0-4fee-b96a-946cafccfd7f t 2025-12-08 15:00:00.706968+00 2025-12-08 15:00:00.706972+00 453 赛扬 \N \N \N \N 1 \N d23c3f9f-1d24-41ae-a85a-28bca693f2bc t 2025-12-08 15:00:00.70772+00 2025-12-08 15:00:00.707724+00 454 瑞隆服饰 \N \N \N \N 1 \N 71940e48-471f-4fb5-ab3f-88b7cf49fbd2 t 2025-12-08 15:00:00.708472+00 2025-12-08 15:00:00.708476+00 455 A小阳 \N \N \N \N 1 \N 87aa6885-6f84-41ca-b438-585a9438d5ae t 2025-12-08 15:00:00.709228+00 2025-12-08 15:00:00.709232+00 456 依玖芭芭 \N \N \N \N 1 \N 6341fe89-712c-4a7d-9f8a-e43f6f9cab7d t 2025-12-08 15:00:00.709974+00 2025-12-08 15:00:00.709978+00 457 联昇 \N \N \N \N 1 \N 42dc335d-da59-47cd-af29-9cb983713921 t 2025-12-08 15:00:00.710731+00 2025-12-08 15:00:00.710735+00 458 吴俊加 \N 龙潭 \N \N \N 1 \N 3317c827-adbc-4470-aee8-8883b90e76e0 t 2025-12-08 15:00:00.711481+00 2025-12-08 15:00:00.711485+00 459 A蔓妮 \N 白云 \N \N \N 1 \N e26e9a40-41e9-454f-b53f-71d201a02159 t 2025-12-08 15:00:00.712211+00 2025-12-08 15:00:00.712215+00 460 楚逸 \N \N \N \N 1 \N 43192a1d-8d0e-4a70-9acf-cc62b2404745 t 2025-12-08 15:00:00.712966+00 2025-12-08 15:00:00.71297+00 461 A欧阳晓 \N 白云 \N \N \N 1 \N 1627e156-9ecc-497f-b937-81400e428d05 t 2025-12-08 15:00:00.713739+00 2025-12-08 15:00:00.713743+00 462 A盛达洪老板 \N 白云 \N \N \N 1 \N 04859a59-152e-4833-8502-390a3092c27c t 2025-12-08 15:00:00.714492+00 2025-12-08 15:00:00.714496+00 463 A金鑫 \N 白云 \N \N \N 1 \N d1f92cc6-2af7-4515-bcff-987d586f8ebb t 2025-12-08 15:00:00.715227+00 2025-12-08 15:00:00.71523+00 464 昱莹 \N \N \N \N 1 \N 6c36fc52-1144-4e31-9c9b-6f6289d0024b t 2025-12-08 15:00:00.715993+00 2025-12-08 15:00:00.715997+00 465 A和胜和杨总 \N 白云 \N \N \N 1 \N afaaea03-b139-4cc7-a37b-ec2247a12e48 t 2025-12-08 15:00:00.716748+00 2025-12-08 15:00:00.716751+00 466 A金锦 \N 白云 \N \N \N 1 \N cdf26e01-3f1f-4b73-b031-f6ea58828f40 t 2025-12-08 15:00:00.71785+00 2025-12-08 15:00:00.717854+00 467 晟帆 \N \N \N \N 1 \N 0562763e-d0f5-4f1b-9a88-74be0179af82 t 2025-12-08 15:00:00.718611+00 2025-12-08 15:00:00.718615+00 468 博弈 \N \N \N \N 1 \N 7a1f10ab-f623-47a4-99c1-160cebc5fba4 t 2025-12-08 15:00:00.719366+00 2025-12-08 15:00:00.71937+00 469 涵语服饰 \N 龙潭 \N \N \N 1 \N d68ac0ab-e363-48dd-afdc-d1b24e35cdf8 t 2025-12-08 15:00:00.720457+00 2025-12-08 15:00:00.720461+00 470 跃然 \N \N \N \N 1 \N 24f35d3b-367f-4bc7-a709-c6f9b07e1ab2 t 2025-12-08 15:00:00.721231+00 2025-12-08 15:00:00.721235+00 471 沈孟军 \N \N \N \N 1 \N 9a907e9f-9ebc-493a-84bf-00e67accb6ea t 2025-12-08 15:00:00.721998+00 2025-12-08 15:00:00.722002+00 472 A尹志勇 \N 白云 \N \N \N 1 \N 07dc7546-47bb-4aab-aa63-b0f98e292f30 t 2025-12-08 15:00:00.722762+00 2025-12-08 15:00:00.722766+00 473 F思雨服饰 \N 佛山 \N \N \N 1 \N 8de1b506-d152-4990-8edb-cbeb82a3787a t 2025-12-08 15:00:00.723529+00 2025-12-08 15:00:00.723533+00 474 作废10.4.1 \N \N \N \N 1 \N 94857c54-e39f-4f42-82f5-327fbd59a28c t 2025-12-08 15:00:00.724561+00 2025-12-08 15:00:00.724565+00 475 海岚纺织 \N \N \N \N 1 \N d8bc9479-d55a-4ab9-8273-f2f01d561672 t 2025-12-08 15:00:00.725611+00 2025-12-08 15:00:00.725615+00 476 龚丁富 \N \N \N \N 1 \N 781d7852-597b-42ac-adaa-4014cf30f94e t 2025-12-08 15:00:00.726665+00 2025-12-08 15:00:00.726669+00 477 万花盛 \N \N \N \N 1 \N 959f4ba3-3dba-454d-9986-0a4745bcf897 t 2025-12-08 15:00:00.727699+00 2025-12-08 15:00:00.727706+00 478 宏明布艺 \N \N \N \N 1 \N 10fad7ca-1d61-45a9-bdd0-efe2a91c816d t 2025-12-08 15:00:00.72875+00 2025-12-08 15:00:00.728754+00 479 鲁小超 \N \N \N \N 1 \N 5e444b37-c0eb-40ff-bc9b-da05747b2d5a t 2025-12-08 15:00:00.72979+00 2025-12-08 15:00:00.729794+00 480 A欧莉娅服饰 \N 白云 \N \N \N 1 \N 4217d1fd-3ab8-428e-aa6e-f813f30607d5 t 2025-12-08 15:00:00.730831+00 2025-12-08 15:00:00.730835+00 481 A青青 \N 白云 \N \N \N 1 \N 1ec47792-d568-4909-8d55-9e6a5ae998e8 t 2025-12-08 15:00:00.731871+00 2025-12-08 15:00:00.731875+00 482 盛达张子龙 \N 盛达张子龙 \N \N \N 1 \N 19466f0d-09a2-4aa5-9c78-44d544e257b6 t 2025-12-08 15:00:00.732612+00 2025-12-08 15:00:00.732615+00 483 盛达张 \N 盛达张子龙 \N \N \N 1 \N 6c05230c-52ae-4667-bbe6-654bc900870c t 2025-12-08 15:00:00.73335+00 2025-12-08 15:00:00.733354+00 484 测试 \N \N \N \N 1 \N 85047d01-bee0-4e9d-a26c-fa42d5ede100 t 2025-12-08 15:00:00.734097+00 2025-12-08 15:00:00.734102+00 485 周乔丰 \N \N \N \N 1 \N 402235ed-4217-4526-bf0b-6dc0bc66634d t 2025-12-08 15:00:00.734879+00 2025-12-08 15:00:00.734883+00 486 A李华 \N 白云 \N \N \N 1 \N b2314055-21f4-4a4d-9c85-642002879feb t 2025-12-08 15:00:00.735707+00 2025-12-08 15:00:00.735711+00 487 A宝发 \N 白云 \N \N \N 1 \N 595aba2d-02a6-427e-a33e-3ee40d22168c t 2025-12-08 15:00:00.736588+00 2025-12-08 15:00:00.736591+00 488 A晨林服饰 \N 白云 \N \N \N 1 \N fdb9d1fd-27ee-4418-8efd-84ec93115938 t 2025-12-08 15:00:00.737384+00 2025-12-08 15:00:00.737388+00 489 A升都苗子 \N 白云 \N \N \N 1 \N 60c88e3b-bffa-46ce-bd94-7235748697d6 t 2025-12-08 15:00:00.738174+00 2025-12-08 15:00:00.738178+00 490 白鑫 \N \N \N \N 1 \N 05e07c33-2158-44c0-b2ef-9b4318a95ac3 t 2025-12-08 15:00:00.738958+00 2025-12-08 15:00:00.738962+00 491 庞总 \N \N \N \N 1 \N 5766c260-b690-4cb2-8c8b-2a78fd1aae4c t 2025-12-08 15:00:00.739722+00 2025-12-08 15:00:00.739726+00 492 欧阳家燕 \N \N \N \N 1 \N c19e1ccf-0e34-42b4-8dcd-c53adda4f6b6 t 2025-12-08 15:00:00.740499+00 2025-12-08 15:00:00.740503+00 493 A欧阳家杰 \N A欧阳家杰 \N \N \N 1 \N 0142a5c1-6f2a-419e-a31a-2f8998afa1eb t 2025-12-08 15:00:00.741252+00 2025-12-08 15:00:00.741255+00 494 0 \N 0 \N \N \N 1 \N a27e9a2e-1fa4-46b5-b59e-350a4408df63 t 2025-12-08 15:00:00.741997+00 2025-12-08 15:00:00.742+00 495 A唯依服饰 \N 白云 \N \N \N 1 \N ae5683f7-ee3f-4a72-811f-3f096984ab87 t 2025-12-08 15:00:00.742742+00 2025-12-08 15:00:00.742746+00 496 作废10.7 \N \N \N \N 1 \N ca076bcc-2f52-4fce-b713-67994ee02c79 t 2025-12-08 15:00:00.74351+00 2025-12-08 15:00:00.743514+00 497 歌斯拉-欧漫尼 \N \N \N \N 1 \N f03963a5-df8f-47c8-b18a-2bb7180741c3 t 2025-12-08 15:00:00.744267+00 2025-12-08 15:00:00.744271+00 498 ATA \N \N \N \N 1 \N a1bf2da2-6a5e-4a8e-ab96-7d4002f183c6 t 2025-12-08 15:00:00.745026+00 2025-12-08 15:00:00.74503+00 499 江西顺源制衣厂 \N \N \N \N 1 \N 493f15db-3241-4c64-ba6b-332fafed6332 t 2025-12-08 15:00:00.745795+00 2025-12-08 15:00:00.745799+00 500 A林中梁 \N 白云 \N \N \N 1 \N e260c02b-6666-4ee2-bfe7-ddcd21794623 t 2025-12-08 15:00:00.746572+00 2025-12-08 15:00:00.746575+00 501 作废10.4 \N \N \N \N 1 \N 132a1896-8e24-4485-8d47-251c2d332813 t 2025-12-08 15:00:00.747334+00 2025-12-08 15:00:00.747338+00 502 Z嘉发 \N \N \N \N 1 \N 35cc3456-9834-46ff-a80d-af6864a000c5 t 2025-12-08 15:00:00.748122+00 2025-12-08 15:00:00.748126+00 503 汪军伟 \N \N \N \N 1 \N 600affab-c734-41fa-98c5-e4c706f9db98 t 2025-12-08 15:00:00.748901+00 2025-12-08 15:00:00.748905+00 504 曹老板 \N \N \N \N 1 \N 973fab20-ed55-4001-83ce-cb72506a5df3 t 2025-12-08 15:00:00.749655+00 2025-12-08 15:00:00.749659+00 505 别宏波 \N \N \N \N 1 \N 9eed4771-8ff0-4511-85d8-c0723e8e3a51 t 2025-12-08 15:00:00.75041+00 2025-12-08 15:00:00.750414+00 506 周耀 \N \N \N \N 1 \N 90412fa6-180d-4498-a87f-22cce8acf2bb t 2025-12-08 15:00:00.751168+00 2025-12-08 15:00:00.751172+00 507 辉波 \N \N \N \N 1 \N 04b07f3e-75a2-4bf0-be08-1ecf4b65fc12 t 2025-12-08 15:00:00.751931+00 2025-12-08 15:00:00.751935+00 508 盛达-恒兴 \N \N \N \N 1 \N 7a50a5e6-029d-4d79-97f4-b6ecca7bab07 t 2025-12-08 15:00:00.752692+00 2025-12-08 15:00:00.752696+00 509 盛达-赵洋 \N \N \N \N 1 \N 6cbbedce-b1e3-48c7-aad8-96cac9d688a5 t 2025-12-08 15:00:01.175171+00 2025-12-08 15:00:01.175179+00 510 盛达-德鑫 \N \N \N \N 1 \N 4a5b23fc-22dc-4442-b425-fc818018e23e t 2025-12-08 15:00:01.176414+00 2025-12-08 15:00:01.176419+00 511 盛达-兴兴 \N \N \N \N 1 \N 6cd30a34-7090-4b0f-ae96-97488ec06a67 t 2025-12-08 15:00:01.17726+00 2025-12-08 15:00:01.177265+00 512 盛达-杨国域 \N \N \N \N 1 \N 4ef72246-0489-438e-9220-1be66bfb7346 t 2025-12-08 15:00:01.178073+00 2025-12-08 15:00:01.178078+00 513 夏勇 \N \N \N \N 1 \N 56ea8491-67ce-4c59-82c8-fa0685e8d369 t 2025-12-08 15:00:01.178889+00 2025-12-08 15:00:01.178894+00 514 盛达-龙攀 \N \N \N \N 1 \N 77e467be-0278-4883-acea-1fa32b7f8921 t 2025-12-08 15:00:01.179686+00 2025-12-08 15:00:01.17969+00 515 盛达-万三千 \N \N \N \N 1 \N f5b09dcd-a73e-4431-8463-846c0792a7fc t 2025-12-08 15:00:01.180463+00 2025-12-08 15:00:01.180467+00 516 盛达-林泽彬 \N \N \N \N 1 \N 2bffeeab-b3ef-4b7b-84c7-d2ec53e10980 t 2025-12-08 15:00:01.181223+00 2025-12-08 15:00:01.181226+00 517 盛达-游明 \N \N \N \N 1 \N ba7c5263-5ea0-4928-a603-598ff9e66421 t 2025-12-08 15:00:01.182013+00 2025-12-08 15:00:01.182017+00 518 盛达-朱军 \N \N \N \N 1 \N 572aa878-b229-4591-b47b-60e4ba6866d1 t 2025-12-08 15:00:01.182786+00 2025-12-08 15:00:01.18279+00 519 高远 \N \N \N \N 1 \N 690c1f1f-a89c-4b56-9902-2e82cdec7ee1 t 2025-12-08 15:00:01.183541+00 2025-12-08 15:00:01.183545+00 520 刘闪 \N \N \N \N 1 \N 2bbb1c25-ebd5-4fc9-b67d-e1011e701e09 t 2025-12-08 15:00:01.184313+00 2025-12-08 15:00:01.184317+00 521 袁红宁 \N \N \N \N 1 \N 2f8d4f7e-e72b-4f00-9b40-14c0a8457d1c t 2025-12-08 15:00:01.185072+00 2025-12-08 15:00:01.185075+00 522 达达2号 \N \N \N \N 1 \N f71c0d7b-3d84-4e39-8e7c-519202232dc9 t 2025-12-08 15:00:01.185835+00 2025-12-08 15:00:01.185839+00 523 绮丽 \N \N \N \N 1 \N b9dcfd45-9da7-4c04-9c06-066bf5623093 t 2025-12-08 15:00:01.186615+00 2025-12-08 15:00:01.186619+00 524 彭勇 \N \N \N \N 1 \N 4fee6ddd-bf3d-4b66-ad0a-52b4a4d03696 t 2025-12-08 15:00:01.187386+00 2025-12-08 15:00:01.18739+00 525 盛达-王庭丰 \N \N \N \N 1 \N 2ae3a539-5274-4ede-bbf2-93b4ba1d5246 t 2025-12-08 15:00:01.188168+00 2025-12-08 15:00:01.188172+00 526 余华涛哥 \N \N \N \N 1 \N 748f2475-19cf-4c31-8b3d-acc97064d4b4 t 2025-12-08 15:00:01.188944+00 2025-12-08 15:00:01.188948+00 527 卓尔 \N \N \N \N 1 \N 3ae02dc8-fbf6-49d4-994f-74f8dcda14fd t 2025-12-08 15:00:01.189718+00 2025-12-08 15:00:01.189722+00 528 盛达-颜平 \N \N \N \N 1 \N 33f79a90-879c-4542-9775-c1011df05f98 t 2025-12-08 15:00:01.190719+00 2025-12-08 15:00:01.190723+00 529 张胜 \N \N \N \N 1 \N 9d0efb7d-b5b5-4dd0-9d5c-6dc539cd3d2f t 2025-12-08 15:00:01.191531+00 2025-12-08 15:00:01.191535+00 530 林G(联益盛) \N \N \N \N 1 \N 0e3c5208-b242-45e5-9544-125f5213d038 t 2025-12-08 15:00:01.192308+00 2025-12-08 15:00:01.192313+00 531 MC时尚 \N \N \N \N 1 \N a77fa988-385e-4b5a-a830-d45a9c7feea6 t 2025-12-08 15:00:01.193087+00 2025-12-08 15:00:01.193091+00 532 潘文军涛哥 \N \N \N \N 1 \N 5ce4be96-1f9f-4e98-af00-fecdad0f3960 t 2025-12-08 15:00:01.193885+00 2025-12-08 15:00:01.193889+00 533 俏迪 \N \N \N \N 1 \N 08f23e23-ed9c-4eca-b8b0-abb6d198332f t 2025-12-08 15:00:01.19481+00 2025-12-08 15:00:01.194814+00 534 别辉 \N \N \N \N 1 \N b0940502-6360-4e51-ba20-4a11829f1fb4 t 2025-12-08 15:00:01.195629+00 2025-12-08 15:00:01.195633+00 535 阿泽 \N \N \N \N 1 \N d4e0d73f-00ea-4474-b917-5803dc11458a t 2025-12-08 15:00:01.196415+00 2025-12-08 15:00:01.196419+00 536 盛达-王佳琪 \N \N \N \N 1 \N 6f85bb3a-611f-4f56-b49c-774b37c4a91a t 2025-12-08 15:00:01.197205+00 2025-12-08 15:00:01.197209+00 537 天佑王小姐 \N \N \N \N 1 \N 594e8cc2-9416-498d-bc92-c721ca10e0de t 2025-12-08 15:00:01.197991+00 2025-12-08 15:00:01.197995+00 538 财盛 \N \N \N \N 1 \N c984efcb-ffd6-4b2c-ac6e-3cbe2e97e60e t 2025-12-08 15:00:01.198754+00 2025-12-08 15:00:01.198758+00 539 LC-陈刊优尚品 \N \N \N \N 1 \N 940fa8bf-a053-4d53-8d44-60c3fcf6aa1b t 2025-12-08 15:00:01.199535+00 2025-12-08 15:00:01.199539+00 540 陈耀荣 \N \N \N \N 1 \N 68626e67-9431-46a7-b5dd-b6139953d665 t 2025-12-08 15:00:01.200322+00 2025-12-08 15:00:01.200325+00 541 依帆2号-关俊锋 \N \N \N \N 1 \N 4ee5e3fa-e087-43dc-b886-80a18fbef8b6 t 2025-12-08 15:00:01.201084+00 2025-12-08 15:00:01.201087+00 542 朱老板涛哥 \N \N \N \N 1 \N b4230736-442f-4675-a747-9ef94b5b258d t 2025-12-08 15:00:01.201862+00 2025-12-08 15:00:01.201866+00 543 游一明 \N \N \N \N 1 \N 31e4e961-ac61-448d-92aa-e5bea1a7e63a t 2025-12-08 15:00:01.202629+00 2025-12-08 15:00:01.202633+00 544 创利 \N \N \N \N 1 \N 0589f14d-a5c8-403f-939e-26f667fac0f6 t 2025-12-08 15:00:01.203392+00 2025-12-08 15:00:01.203396+00 545 创新行 \N \N \N \N 1 \N b8e6d8c4-3519-4914-9e36-741a66755bd3 t 2025-12-08 15:00:01.20417+00 2025-12-08 15:00:01.204174+00 546 朱鹏 \N \N \N \N 1 \N 41a85713-360e-42aa-b436-3d3835dbca7c t 2025-12-08 15:00:01.204936+00 2025-12-08 15:00:01.20494+00 547 纯 \N \N \N \N 1 \N 088e2f7a-e08d-431c-9c08-53f590d66893 t 2025-12-08 15:00:01.2057+00 2025-12-08 15:00:01.205708+00 548 大伟 \N \N \N \N 1 \N 802294cb-1a9e-4c73-a71c-64252c618b02 t 2025-12-08 15:00:01.206483+00 2025-12-08 15:00:01.206488+00 549 东旭 \N \N \N \N 1 \N 6ff268ee-e5b7-4826-98f3-6af55d5f9477 t 2025-12-08 15:00:01.207239+00 2025-12-08 15:00:01.207242+00 550 东诚 \N \N \N \N 1 \N 5f244e73-54cb-44e8-b3e3-2a6b1de0d321 t 2025-12-08 15:00:01.208018+00 2025-12-08 15:00:01.208022+00 551 丁必言 \N \N \N \N 1 \N 85cfc361-def6-4087-837b-14af20a96f6d t 2025-12-08 15:00:01.208801+00 2025-12-08 15:00:01.208805+00 552 飞越 \N \N \N \N 1 \N 2792955d-d043-4349-b219-67a70f04d720 t 2025-12-08 15:00:01.20957+00 2025-12-08 15:00:01.209574+00 553 广盛 \N \N \N \N 1 \N c91b978f-db1c-42b0-b2a9-304533ebbd1e t 2025-12-08 15:00:01.210352+00 2025-12-08 15:00:01.210357+00 554 关伟 \N \N \N \N 1 \N 68497e10-9835-442d-8c65-31c698469eb3 t 2025-12-08 15:00:01.21112+00 2025-12-08 15:00:01.211124+00 555 鹏 \N \N \N \N 1 \N e267f649-746f-41ac-b055-eae303d45f5c t 2025-12-08 15:00:01.211889+00 2025-12-08 15:00:01.211893+00 556 广兴隆 \N \N \N \N 1 \N 8eeab2d1-9ebb-451b-959a-0d6d66c0cceb t 2025-12-08 15:00:01.212657+00 2025-12-08 15:00:01.212661+00 557 格局 \N \N \N \N 1 \N 761bc55c-1220-4365-8009-f122d1366b68 t 2025-12-08 15:00:01.213435+00 2025-12-08 15:00:01.213439+00 558 亿朱 \N \N \N \N 1 \N d265c804-aaf9-49ff-96bd-96e7742eb20d t 2025-12-08 15:00:01.214192+00 2025-12-08 15:00:01.214195+00 559 粤旺 \N \N \N \N 1 \N 141e5763-ddb8-4ed0-b008-48daa2ef5b75 t 2025-12-08 15:00:01.214966+00 2025-12-08 15:00:01.21497+00 560 合丰 \N \N \N \N 1 \N 2c8a228d-3842-49a2-b25c-ed374dad82c7 t 2025-12-08 15:00:01.21574+00 2025-12-08 15:00:01.215744+00 561 浩丰 \N \N \N \N 1 \N 625d315e-5ae5-478b-a7ef-a927ad99f723 t 2025-12-08 15:00:01.216497+00 2025-12-08 15:00:01.216501+00 562 合顺 \N \N \N \N 1 \N be60dbf0-ab4a-414a-8fa4-3e55853541e7 t 2025-12-08 15:00:01.21724+00 2025-12-08 15:00:01.217244+00 563 和信 \N \N \N \N 1 \N 0047a2c0-c027-4592-80a1-2eec4a3fbf77 t 2025-12-08 15:00:01.218029+00 2025-12-08 15:00:01.218033+00 564 洪发 \N \N \N \N 1 \N b3008556-a66b-41f3-93e0-4a8715236880 t 2025-12-08 15:00:01.21885+00 2025-12-08 15:00:01.218854+00 565 恒达 \N \N \N \N 1 \N f8338078-aed1-4c86-979f-1db460884a8c t 2025-12-08 15:00:01.219644+00 2025-12-08 15:00:01.219648+00 566 鸿锦 \N \N \N \N 1 \N 8f9a6ae8-9750-487e-a566-e9d1594a60d5 t 2025-12-08 15:00:01.220433+00 2025-12-08 15:00:01.220437+00 567 宏鑫 \N \N \N \N 1 \N 6c6786f3-e62f-4f79-90b2-c2060f5e2bff t 2025-12-08 15:00:01.221206+00 2025-12-08 15:00:01.22121+00 568 胡亮 \N \N \N \N 1 \N bfe59ab1-3773-4eea-b0d9-ed5c1eec224e t 2025-12-08 15:00:01.221988+00 2025-12-08 15:00:01.221992+00 569 鸿亿 \N \N \N \N 1 \N 0ffa5a28-0357-4cb2-95a2-b9ee334d21e3 t 2025-12-08 15:00:01.222768+00 2025-12-08 15:00:01.222773+00 570 黄昭 \N \N \N \N 1 \N f619fea7-2b1e-4832-85bc-da4f1a5df34a t 2025-12-08 15:00:01.223526+00 2025-12-08 15:00:01.223529+00 571 辉昇 \N \N \N \N 1 \N d0185c83-bdfc-4229-8ed5-1d7ba88303f2 t 2025-12-08 15:00:01.224279+00 2025-12-08 15:00:01.224283+00 572 盛达-董老板 \N \N \N \N 1 \N c70fdce8-37db-4ecb-8ff4-3c668a61ca9b t 2025-12-08 15:00:01.225068+00 2025-12-08 15:00:01.225072+00 573 嘉亿 \N \N \N \N 1 \N 8c669187-3cf1-4158-89a5-34580ad76368 t 2025-12-08 15:00:01.225844+00 2025-12-08 15:00:01.225847+00 574 合鑫 \N \N \N \N 1 \N 51f955ee-6ece-4732-af21-24738fa7edce t 2025-12-08 15:00:01.226603+00 2025-12-08 15:00:01.226606+00 575 杰森 \N \N \N \N 1 \N 369904b8-e1f9-4c1f-a2be-8049ee254c9b t 2025-12-08 15:00:01.22738+00 2025-12-08 15:00:01.227384+00 576 刘东 \N \N \N \N 1 \N cf42c4dd-e2dd-4717-8210-ce106f9199e1 t 2025-12-08 15:00:01.228165+00 2025-12-08 15:00:01.228169+00 577 俊发 \N \N \N \N 1 \N f519d8df-ee1b-4491-9ea5-5855ea4b75ff t 2025-12-08 15:00:01.228932+00 2025-12-08 15:00:01.228936+00 578 金梭 \N \N \N \N 1 \N 2ea8a58c-d054-4455-8f3a-031d347a824b t 2025-12-08 15:00:01.229684+00 2025-12-08 15:00:01.229688+00 579 骏生 \N \N \N \N 1 \N 596a9bd3-390b-437d-85b3-16ca689956ec t 2025-12-08 15:00:01.23045+00 2025-12-08 15:00:01.230454+00 580 金年丰 \N \N \N \N 1 \N 13f5c199-fe92-4559-a1c0-26a93fff2e3e t 2025-12-08 15:00:01.231222+00 2025-12-08 15:00:01.231225+00 581 楷盛 \N \N \N \N 1 \N c281cc05-0097-4b75-bbcb-6fe9c1a9b527 t 2025-12-08 15:00:01.231989+00 2025-12-08 15:00:01.231992+00 582 Z凯盛 \N \N \N \N 1 \N 27bef759-4a08-454a-8cdc-352d3d23e7d5 t 2025-12-08 15:00:01.232766+00 2025-12-08 15:00:01.23277+00 583 卡莱 \N \N \N \N 1 \N 86182ba5-59b7-40d3-b9dd-11041275ef0b t 2025-12-08 15:00:01.233593+00 2025-12-08 15:00:01.233597+00 584 雷老板 \N \N \N \N 1 \N 14acfa7c-e554-43ae-af62-54eb623660d4 t 2025-12-08 15:00:01.234372+00 2025-12-08 15:00:01.234377+00 585 乐衣 \N \N \N \N 1 \N 7fca6d8b-9a11-4063-879e-1b567b816921 t 2025-12-08 15:00:01.235396+00 2025-12-08 15:00:01.2354+00 586 胡超涛哥 \N \N \N \N 1 \N 14e23955-b938-498a-90ee-106c2f847faa t 2025-12-08 15:00:01.236176+00 2025-12-08 15:00:01.23618+00 587 徐放之 \N \N \N \N 1 \N 4ce376c4-8501-406a-a8f6-417fca071d70 t 2025-12-08 15:00:01.236941+00 2025-12-08 15:00:01.236945+00 588 陈艳陈小姐 \N \N \N \N 1 \N 37196f84-8c1f-491a-83e0-ce4aeacfd6b1 t 2025-12-08 15:00:01.237733+00 2025-12-08 15:00:01.237737+00 589 丽泰 \N \N \N \N 1 \N a35f1d8d-1f9a-4333-b495-84e9f8d00a15 t 2025-12-08 15:00:01.238498+00 2025-12-08 15:00:01.238502+00 590 盛达-阿峰 \N \N \N \N 1 \N 85df8a86-21f1-4c2f-95c4-5c7336f530c3 t 2025-12-08 15:00:01.239244+00 2025-12-08 15:00:01.239248+00 591 孙一鸣 \N \N \N \N 1 \N f9e20e66-1a59-4a27-9649-3a9fbbb4024a t 2025-12-08 15:00:01.239993+00 2025-12-08 15:00:01.239997+00 592 汇雅花边 \N \N \N \N 1 \N 5e42269d-4b5b-4aad-97de-c256343c91a4 t 2025-12-08 15:00:01.240779+00 2025-12-08 15:00:01.240783+00 593 大目 \N \N \N \N 1 \N b61d6fc7-ea16-436e-a7a2-65ff2ab774f6 t 2025-12-08 15:00:01.241535+00 2025-12-08 15:00:01.241539+00 594 刘玉枫 \N \N \N \N 1 \N e1dfc60e-5fcb-49ce-8d27-c131264220d7 t 2025-12-08 15:00:01.242285+00 2025-12-08 15:00:01.242289+00 595 鲁卫-鲁江卫 \N \N \N \N 1 \N bab919a2-7bb1-480a-8c0f-1c143efd7fd1 t 2025-12-08 15:00:01.243067+00 2025-12-08 15:00:01.243071+00 596 铭纺 \N \N \N \N 1 \N a182f13a-1a1b-4df6-aef3-c6c636419dfe t 2025-12-08 15:00:01.243841+00 2025-12-08 15:00:01.243845+00 597 铭晟 \N \N \N \N 1 \N 57714eaa-8c55-4f5d-8c1c-f0886c72bb98 t 2025-12-08 15:00:01.244604+00 2025-12-08 15:00:01.244608+00 598 孟准 \N \N \N \N 1 \N e49ac18d-31c2-4c9b-93d8-060f2aa3a523 t 2025-12-08 15:00:01.245398+00 2025-12-08 15:00:01.245402+00 599 欧阳燕莉 \N \N \N \N 1 \N bb72e244-f60e-49db-b2a2-b6dfc617571b t 2025-12-08 15:00:01.246165+00 2025-12-08 15:00:01.246169+00 600 彭梦杰 \N \N \N \N 1 \N 7438d257-66b5-4576-b5cb-7bdf8512a378 t 2025-12-08 15:00:01.24693+00 2025-12-08 15:00:01.246933+00 601 铭纺(烧花) \N \N \N \N 1 \N d87cc14f-183d-4106-a2ad-4a9424b25713 t 2025-12-08 15:00:01.247692+00 2025-12-08 15:00:01.247696+00 602 大聚源 \N \N \N \N 1 \N 01ece091-ac49-461b-bb68-e5a47366a836 t 2025-12-08 15:00:01.248999+00 2025-12-08 15:00:01.249005+00 603 少杰 \N \N \N \N 1 \N c8ba960b-2ba3-4cd8-b332-2e0fd863ea86 t 2025-12-08 15:00:01.250367+00 2025-12-08 15:00:01.250372+00 604 顺隆 \N \N \N \N 1 \N c2a73295-098d-4632-8b74-2b7d3e85d92e t 2025-12-08 15:00:01.251563+00 2025-12-08 15:00:01.251568+00 605 盛兴-886 \N \N \N \N 1 \N c4464061-fea4-4da0-a497-6e861f3e2fc5 t 2025-12-08 15:00:01.252651+00 2025-12-08 15:00:01.252655+00 606 YOYO \N \N \N \N 1 \N 494eb685-8a12-441e-b3a3-82cee8d1b816 t 2025-12-08 15:00:01.253721+00 2025-12-08 15:00:01.253725+00 607 苏夫人 \N \N \N \N 1 \N 346f7d09-4eb2-4beb-8822-abaedaef8054 t 2025-12-08 15:00:01.25478+00 2025-12-08 15:00:01.254784+00 608 唐潮 \N \N \N \N 1 \N 0830baa9-1dde-4b05-85d7-86e3842ea2f4 t 2025-12-08 15:00:01.255843+00 2025-12-08 15:00:01.255846+00 609 泰源 \N \N \N \N 1 \N 37394b3f-8e52-485a-aaa4-68c8268eb1bb t 2025-12-08 15:00:00.669749+00 2025-12-09 06:20:23.837901+00 410 荣利兴(交易园) 17520145271 \N \N \N 1 \N e179e64d-fbbd-4f8f-8dbb-c847987ec639 t 2025-12-09 07:00:00.379663+00 2025-12-09 07:00:00.379674+00 610 雷芬 \N 龙潭 \N \N \N 1 \N 56b2fd8d-1bb6-4aec-82c0-5f9a2d854666 t 2025-12-09 07:00:00.381488+00 2025-12-09 07:00:00.381493+00 611 彭铁军-江涛 \N 龙潭 \N \N \N 1 \N 7d723b8b-4484-41d2-8dc5-62cc70cba170 t 2025-12-09 07:00:00.382391+00 2025-12-09 07:00:00.382396+00 612 金庸 \N 龙潭 \N \N \N 1 \N 06913fdf-3bae-4b46-a4b4-b177d0782f82 t 2025-12-09 07:00:00.383231+00 2025-12-09 07:00:00.383236+00 613 邱总 \N 龙潭 \N \N \N 1 \N 888ac135-3bda-4c50-8b67-d2bc1e0be344 t 2025-12-09 07:00:00.384145+00 2025-12-09 07:00:00.38415+00 614 Z飞岳 \N 龙潭 \N \N \N 1 \N b908e3a3-5696-4a1e-9b6f-d8120c107c49 t 2025-12-09 07:00:00.384972+00 2025-12-09 07:00:00.384976+00 615 Z成鑫-(Z-CX) \N 龙潭 \N \N \N 1 \N 2bb8290a-c84d-436f-add2-522f33f36281 t 2025-12-09 07:00:00.385786+00 2025-12-09 07:00:00.38579+00 616 郑泽彬 \N 龙潭 \N \N \N 1 \N 9d529e41-30e1-4aba-886e-40893cb380c1 t 2025-12-09 07:00:00.386583+00 2025-12-09 07:00:00.386587+00 617 Z欣发 \N 龙潭 \N \N \N 1 \N 586474d1-79f1-4e3b-8c59-3214e5310e32 t 2025-12-09 07:00:00.387361+00 2025-12-09 07:00:00.387365+00 618 张创崇 \N 龙潭 \N \N \N 1 \N c682d7ab-333e-4e26-9c22-f2bef31ec4ab t 2025-12-09 07:00:00.388153+00 2025-12-09 07:00:00.388157+00 619 盛达亨达 \N 龙潭 \N \N \N 1 \N e1407f05-cda8-4611-9fd7-70a40c42eef1 t 2025-12-09 07:00:00.388945+00 2025-12-09 07:00:00.388948+00 620 盛达朱文诚 \N 龙潭 \N \N \N 1 \N d6fe4d22-5502-4c9f-a0a0-0f15beb0df93 t 2025-12-09 07:00:00.389719+00 2025-12-09 07:00:00.389722+00 621 鑫泰 \N 龙潭 \N \N \N 1 \N 6e3a4d91-c75f-484d-abe5-7f8c9ae38106 t 2025-12-09 07:00:00.390513+00 2025-12-09 07:00:00.390517+00 622 永琪服饰雷总 \N 龙潭 \N \N \N 1 \N 60ca8e20-bbee-4d77-a403-ce519c3f0df1 t 2025-12-09 07:00:00.391565+00 2025-12-09 07:00:00.391569+00 623 彭锐 \N 龙潭 \N \N \N 1 \N cf1e7212-04d9-4523-9d00-4012f92a1c96 t 2025-12-09 07:00:00.392615+00 2025-12-09 07:00:00.392619+00 624 彭铁军-慕露 \N 龙潭 \N \N \N 1 \N a57c9f64-54b4-443e-87a7-9d0c151588b7 t 2025-12-09 07:00:00.393674+00 2025-12-09 07:00:00.393679+00 625 凯盛 \N 龙潭 \N \N \N 1 \N fb506605-ad92-4521-81b1-fb6060419bc0 t 2025-12-09 07:00:00.394743+00 2025-12-09 07:00:00.394747+00 626 李想林 \N 龙潭 \N \N \N 1 \N ec9171c3-ad85-4db0-96b6-178d4f9bb4bc t 2025-12-09 07:00:00.395787+00 2025-12-09 07:00:00.395791+00 627 张颖 \N 龙潭 \N \N \N 1 \N 1ebd7d0e-6b85-47a0-8db1-3f2acf587bd6 t 2025-12-09 07:00:00.396864+00 2025-12-09 07:00:00.396868+00 628 韩小峰 \N 龙潭 \N \N \N 1 \N a9d05d30-acfb-4020-8a07-c14624958133 t 2025-12-09 07:00:00.397928+00 2025-12-09 07:00:00.397932+00 629 盛达彭总 \N 龙潭 \N \N \N 1 \N 98b88c2e-45e4-4ff9-ac2c-6b53f7d3eb38 t 2025-12-09 07:00:00.398996+00 2025-12-09 07:00:00.399+00 630 刘静贤 \N 龙潭 \N \N \N 1 \N 2d44fcc4-e72a-4cbd-9129-cbdb680d77ca t 2025-12-09 07:00:00.399763+00 2025-12-09 07:00:00.399767+00 631 衣辰服饰 \N 龙潭 \N \N \N 1 \N 56236d02-53d0-4703-9138-20bca47c2e9a t 2025-12-09 07:00:00.400546+00 2025-12-09 07:00:00.40055+00 632 Z美艾 \N 龙潭 \N \N \N 1 \N a838a23c-53cb-4ab6-8029-df628248ea40 t 2025-12-09 07:00:00.401316+00 2025-12-09 07:00:00.401321+00 633 Z米老鼠 \N 龙潭 \N \N \N 1 \N 93d20d03-0020-4c89-9008-2d872b91188f t 2025-12-09 07:00:00.402082+00 2025-12-09 07:00:00.402086+00 634 A小宝 \N 白云 \N \N \N 1 \N 39144145-18c8-4385-a4b3-81c922ee1b20 t 2025-12-09 07:00:00.402862+00 2025-12-09 07:00:00.402866+00 635 A莎澜 \N 白云 \N \N \N 1 \N f54f80ee-b4f7-4fb5-80c4-82d9be978e41 t 2025-12-09 07:00:00.403633+00 2025-12-09 07:00:00.403636+00 636 A陈刚华 \N 白云 \N \N \N 1 \N 2d48c393-375a-4c25-83ce-4dd0d26d2506 t 2025-12-09 07:00:00.40442+00 2025-12-09 07:00:00.404424+00 637 A陈林帆 \N 白云 \N \N \N 1 \N f38e5ccb-3298-4597-8412-9c7f234430fc t 2025-12-09 07:00:00.405184+00 2025-12-09 07:00:00.405188+00 638 A粤焱联富-虹姐 \N 白云 \N \N \N 1 \N d4b67c1c-7b77-4ac6-b82f-6ea68a23b111 t 2025-12-09 07:00:00.405946+00 2025-12-09 07:00:00.40595+00 639 A粤焱联富-娟姐 \N 白云 \N \N \N 1 \N 8cd5c86f-8e96-42bd-a1a0-2cfebc818367 t 2025-12-09 07:00:00.406707+00 2025-12-09 07:00:00.406711+00 640 A粤焱集团 \N 白云 \N \N \N 1 \N ff35beaf-e0de-4ccd-a3db-308acc1abc0e t 2025-12-09 07:00:00.407488+00 2025-12-09 07:00:00.407492+00 641 A宋水斌 \N 白云 \N \N \N 1 \N 576eafb3-e645-4af8-abc7-4e9233d60806 t 2025-12-09 07:00:00.408253+00 2025-12-09 07:00:00.408257+00 642 A迪林服饰 \N 白云 \N \N \N 1 \N 2f8673d9-aa79-4359-9014-3d414ed8f541 t 2025-12-09 07:00:00.40903+00 2025-12-09 07:00:00.409035+00 643 梦舟服饰 \N \N \N \N 1 \N 58f31d57-f9c5-4655-8c7d-3f585733c04d t 2025-12-09 07:00:00.409807+00 2025-12-09 07:00:00.409812+00 644 Z广鹏 \N 龙潭 \N \N \N 1 \N 336b82a6-6e3d-4ea8-87a4-3cabbc11813d t 2025-12-09 07:00:00.410589+00 2025-12-09 07:00:00.410593+00 645 杨永华 \N 龙潭 \N \N \N 1 \N f3dac50b-b8f4-49ae-9ec0-ea59583b4dde t 2025-12-09 07:00:00.411356+00 2025-12-09 07:00:00.41136+00 646 华泰 \N 龙潭 \N \N \N 1 \N 1e9609c9-cd68-4bd3-a629-dbb99ea1f447 t 2025-12-09 07:00:00.412137+00 2025-12-09 07:00:00.41214+00 647 A龙白燕 \N 白云 \N \N \N 1 \N 59b86bdb-3745-4063-9711-8f2d0dadd292 t 2025-12-09 07:00:00.412899+00 2025-12-09 07:00:00.412903+00 648 A林庆洪 \N 白云 \N \N \N 1 \N 708d7c41-5de2-41fa-a610-b7dbd068e01e t 2025-12-09 07:00:00.41366+00 2025-12-09 07:00:00.413663+00 649 香港馨馨草服饰 \N 龙潭 \N \N \N 1 \N 55b0b6d1-1eb3-4b82-b9bb-5d2fd96305a6 t 2025-12-09 07:00:00.414442+00 2025-12-09 07:00:00.414446+00 650 倩菲服饰 \N 龙潭 \N \N \N 1 \N 6b8bf6c0-b27e-49fe-89be-96395487b209 t 2025-12-09 07:00:00.415207+00 2025-12-09 07:00:00.415211+00 651 张闯 \N 龙潭 \N \N \N 1 \N 1e741c12-ebd4-47c1-997d-9bc76b12c52a t 2025-12-09 07:00:00.415965+00 2025-12-09 07:00:00.415969+00 652 A李总 \N 白云 \N \N \N 1 \N 050ce989-7cd2-4704-8e93-63c2ce8ac312 t 2025-12-09 07:00:00.416723+00 2025-12-09 07:00:00.416726+00 653 马总(马锡廷) \N 龙潭 \N \N \N 1 \N c1e40b06-36c9-4229-918d-8f218e5c3afc t 2025-12-09 07:00:00.417508+00 2025-12-09 07:00:00.417512+00 654 王杰敏 \N 龙潭 \N \N \N 1 \N a3be3bca-aee4-48e5-a967-4f7632d4ef3e t 2025-12-09 07:00:00.418276+00 2025-12-09 07:00:00.41828+00 655 A吴凯和 \N 白云 \N \N \N 1 \N 2aca4355-24a5-4422-8527-98594eb5ae4f t 2025-12-09 07:00:00.419034+00 2025-12-09 07:00:00.419038+00 656 杨晓露 \N 龙潭 \N \N \N 1 \N 3b10fd43-1c6a-440d-a9b8-08c18aeb45ed t 2025-12-09 07:00:00.419889+00 2025-12-09 07:00:00.419895+00 657 鲁卫 \N 龙潭 \N \N \N 1 \N e943ef2a-6931-42d0-b17d-397b2ebcacc3 t 2025-12-09 07:00:00.420755+00 2025-12-09 07:00:00.420759+00 658 陈晓君 \N 龙潭 \N \N \N 1 \N 79748b70-2a59-449e-bbeb-0d8075f7ab33 t 2025-12-09 07:00:00.42154+00 2025-12-09 07:00:00.421544+00 659 郑健生 \N 龙潭 \N \N \N 1 \N cb3637b4-374c-441f-b74c-f7ccd4e6d96d t 2025-12-09 07:00:00.422331+00 2025-12-09 07:00:00.422335+00 660 林G \N 龙潭 \N \N \N 1 \N 5da3d78e-38c9-44e9-b911-891ca25156ea t 2025-12-09 07:00:00.423419+00 2025-12-09 07:00:00.423423+00 661 万利-李敏杰 \N 龙潭 \N \N \N 1 \N 3c377af7-0397-4d64-ba9e-cba4402cef2d t 2025-12-09 07:00:00.424255+00 2025-12-09 07:00:00.424259+00 662 福兴 \N 龙潭 \N \N \N 1 \N daed39af-c253-47e2-a04d-ce47afc2757e t 2025-12-09 07:00:00.425063+00 2025-12-09 07:00:00.425066+00 663 腾飞 \N 龙潭 \N \N \N 1 \N a0abb05a-4193-453e-9522-9b8f654de7eb t 2025-12-09 07:00:00.425844+00 2025-12-09 07:00:00.425848+00 664 郑泽钦 \N 龙潭 \N \N \N 1 \N a0bf013b-61f2-4759-8208-d4694c44e342 t 2025-12-09 07:00:00.426662+00 2025-12-09 07:00:00.426666+00 665 金总 \N 龙潭 \N \N \N 1 \N d0189feb-6e0c-479b-98d8-0917df50ae2d t 2025-12-09 07:00:00.427441+00 2025-12-09 07:00:00.427445+00 666 A俞总 \N 白云 \N \N \N 1 \N 409be234-5234-4119-b730-a0a80802e13d t 2025-12-09 07:00:00.428228+00 2025-12-09 07:00:00.428233+00 667 迪娜黛儿 \N 龙潭 \N \N \N 1 \N b765e1de-8706-440d-9be6-20e06cc64e0a t 2025-12-09 07:00:00.429021+00 2025-12-09 07:00:00.429025+00 668 燕姐 \N 龙潭 \N \N \N 1 \N d0617335-ee4c-4af8-80e7-be49e380559e t 2025-12-09 07:00:00.429797+00 2025-12-09 07:00:00.429801+00 669 德鑫 \N 龙潭 \N \N \N 1 \N 7522b307-d837-45f2-9e2e-d176e4b2a662 t 2025-12-09 07:00:00.430575+00 2025-12-09 07:00:00.430579+00 670 鲁江文 \N 龙潭 \N \N \N 1 \N 73eaaccf-c101-4598-8541-450100b946c8 t 2025-12-09 07:00:00.431347+00 2025-12-09 07:00:00.431351+00 671 罗标 \N 龙潭 \N \N \N 1 \N 73050773-eb46-4682-8aff-ad98cd1baf0f t 2025-12-09 07:00:00.432105+00 2025-12-09 07:00:00.432109+00 672 鸿灏 \N 龙潭 \N \N \N 1 \N 1b629f78-5f28-4942-b85c-48cfde93923c t 2025-12-09 07:00:00.432877+00 2025-12-09 07:00:00.432881+00 673 展兴 \N 龙潭 \N \N \N 1 \N e1e9e49e-b8f0-4b8f-a190-fd9e7d247812 t 2025-12-09 07:00:00.433657+00 2025-12-09 07:00:00.433661+00 674 林总 \N 龙潭 \N \N \N 1 \N 6a6935d5-3e78-4d47-9972-4d3ae031aa6c t 2025-12-09 07:00:00.434424+00 2025-12-09 07:00:00.434428+00 675 杨楚武 \N 龙潭 \N \N \N 1 \N ccfb4ad4-f078-4ff1-bf4f-bb283433130b t 2025-12-09 07:00:00.435203+00 2025-12-09 07:00:00.435207+00 676 A成丰 \N 龙潭 \N \N \N 1 \N 29df5a69-a557-42d1-9783-489cb58c9233 t 2025-12-09 07:00:00.43598+00 2025-12-09 07:00:00.435984+00 677 程朝慧 \N 龙潭 \N \N \N 1 \N fc82d4f2-3d64-4b3e-adca-464aeec0ed69 t 2025-12-09 07:00:00.436742+00 2025-12-09 07:00:00.436746+00 678 佳森 \N 龙潭 \N \N \N 1 \N bd729ef3-1c39-41a0-94b5-d73d9447b9a5 t 2025-12-09 07:00:00.437507+00 2025-12-09 07:00:00.437511+00 679 Z铭森 \N 龙潭 \N \N \N 1 \N acb53066-029e-417a-8eb5-fd76650f9855 t 2025-12-09 07:00:00.438298+00 2025-12-09 07:00:00.438302+00 680 周刚 \N 龙潭 \N \N \N 1 \N 9077261e-efa0-4d4d-b7ee-3df78d831570 t 2025-12-09 07:00:00.439057+00 2025-12-09 07:00:00.439061+00 681 森翔(乐艺) \N 龙潭 \N \N \N 1 \N b7e64f51-a799-4783-b9d0-b4d76baf43eb t 2025-12-09 07:00:00.439821+00 2025-12-09 07:00:00.439825+00 682 新起点 \N 龙潭 \N \N \N 1 \N 8dfddcc0-50ac-44c4-8b54-0852596df20f t 2025-12-09 07:00:00.440606+00 2025-12-09 07:00:00.44061+00 683 杨老板 \N 龙潭 \N \N \N 1 \N 2cecdbcd-f23d-4ed6-96bc-601c615877ca t 2025-12-09 07:00:00.441379+00 2025-12-09 07:00:00.441382+00 684 一比一 \N 龙潭 \N \N \N 1 \N cc6689fe-d703-4eef-a560-d61a88981cfe t 2025-12-09 07:00:00.442158+00 2025-12-09 07:00:00.442163+00 685 金总-徐金 \N 龙潭 \N \N \N 1 \N 6842b884-32fb-4d38-ad22-e16c6bc99a0b t 2025-12-09 07:00:00.443024+00 2025-12-09 07:00:00.443028+00 686 徐老板 \N 中大 \N \N \N 1 \N 0fd401a7-bd08-467b-8bae-8415650b96ce t 2025-12-09 07:00:00.443781+00 2025-12-09 07:00:00.443784+00 687 欧裳美 \N 龙潭 \N \N \N 1 \N 06e7115a-06b6-487d-bda8-59667878179a t 2025-12-09 07:00:00.444539+00 2025-12-09 07:00:00.444543+00 688 恩熙 \N 龙潭 \N \N \N 1 \N 74591e2a-68e4-4383-b6f1-4395c193a8f2 t 2025-12-09 07:00:00.445319+00 2025-12-09 07:00:00.445323+00 689 紫琪 \N 龙潭 \N \N \N 1 \N 5f71270f-9cbf-407c-ac45-2fdca0a25ddf t 2025-12-09 07:00:00.446088+00 2025-12-09 07:00:00.446092+00 690 周焕光 \N 龙潭 \N \N \N 1 \N 8be1089d-8f65-4126-a040-eb009f991a02 t 2025-12-09 07:00:00.446841+00 2025-12-09 07:00:00.446845+00 691 陈宣如 \N 龙潭 \N \N \N 1 \N 8c5b6e6f-271e-415d-9cac-38e90df69ff6 t 2025-12-09 07:00:00.447636+00 2025-12-09 07:00:00.447639+00 692 宋老板 \N 龙潭 \N \N \N 1 \N 1e3fb561-9ff3-4d2d-ae70-c4210b20f6ae t 2025-12-09 07:00:00.448414+00 2025-12-09 07:00:00.448417+00 693 王总 \N 龙潭 \N \N \N 1 \N 4c06f534-8fa8-4a24-b478-cc5b6864f039 t 2025-12-09 07:00:00.449172+00 2025-12-09 07:00:00.449176+00 694 白云大鑫 \N 龙潭 \N \N \N 1 \N a6cd1125-0f95-4ade-a689-f3241218554f t 2025-12-09 07:00:00.449944+00 2025-12-09 07:00:00.449948+00 695 大石康老板 \N 龙潭 \N \N \N 1 \N b95de3a3-a251-46cc-98e6-e023941cb229 t 2025-12-09 07:00:00.450723+00 2025-12-09 07:00:00.450727+00 696 土华苏总 \N 龙潭 \N \N \N 1 \N 533cc818-6da8-4d51-ab02-b5eabf3ebddd t 2025-12-09 07:00:00.451486+00 2025-12-09 07:00:00.451489+00 697 泽昱&蚨昕-伟 \N 龙潭 \N \N \N 1 \N 1ab2145d-6ebf-42cd-9a29-95e072538109 t 2025-12-09 07:00:00.452233+00 2025-12-09 07:00:00.452236+00 698 蚨昕纺织 \N \N \N \N 1 \N 094da8e2-aa54-42fd-bf22-59e448aac339 t 2025-12-09 07:00:00.453016+00 2025-12-09 07:00:00.45302+00 699 李美婵 \N 龙潭 \N \N \N 1 \N d533699a-83e7-4f8d-8d86-279dd1b19331 t 2025-12-09 07:00:00.453785+00 2025-12-09 07:00:00.453789+00 700 黄鑫奕 \N 龙潭 \N \N \N 1 \N 782920bd-e896-4e88-a654-adbe3a0b8992 t 2025-12-09 07:00:00.454549+00 2025-12-09 07:00:00.454553+00 701 白云黄宇 \N \N \N \N 1 \N 6e820dce-1bca-49c1-867d-c3f2c879fb02 t 2025-12-09 07:00:00.455321+00 2025-12-09 07:00:00.455325+00 702 尚艺 \N 龙潭 \N \N \N 1 \N f01b79bf-c2a9-4290-b28c-7affede4feb8 t 2025-12-09 07:00:00.456096+00 2025-12-09 07:00:00.4561+00 703 赤沙小伟 \N 龙潭 \N \N \N 1 \N 2be9278c-0965-4220-82ed-7e8284a931ff t 2025-12-09 07:00:00.456862+00 2025-12-09 07:00:00.456866+00 704 盛达李泽武 \N 龙潭 \N \N \N 1 \N f4da9d07-5681-4808-b63f-ef86e6296756 t 2025-12-09 07:00:00.457621+00 2025-12-09 07:00:00.457625+00 705 周红波 \N 龙潭 \N \N \N 1 \N beede284-37fc-4cdb-976f-59a7fb892c7a t 2025-12-09 07:00:00.458404+00 2025-12-09 07:00:00.458408+00 706 楚宇服饰 \N 龙潭 \N \N \N 1 \N f65941ca-da37-4243-ac2f-b2e7a38f789a t 2025-12-09 07:00:00.459168+00 2025-12-09 07:00:00.459171+00 707 赤沙杨总 \N 龙潭 \N \N \N 1 \N a78f867c-159b-4115-b7a5-836aa4867e4f t 2025-12-09 07:00:00.459958+00 2025-12-09 07:00:00.459963+00 708 万利-龙哥 \N 龙潭 \N \N \N 1 \N a0cdb3c6-b222-4584-8ea1-61790620780c t 2025-12-09 07:00:00.460737+00 2025-12-09 07:00:00.460741+00 709 帝雄纺织 \N 龙潭 \N \N \N 1 \N 20dabbd1-60a0-410d-860a-226ff2616780 t 2025-12-09 07:00:00.859137+00 2025-12-09 07:00:00.859147+00 710 鑫依佳人服饰 \N 龙潭 \N \N \N 1 \N 076385aa-2be5-4c83-acd7-08e8910c2905 t 2025-12-09 07:00:00.860707+00 2025-12-09 07:00:00.860713+00 711 朵晨服饰 \N 龙潭 \N \N \N 1 \N 647f6ff1-ca14-4769-965f-fb84fc4edf14 t 2025-12-09 07:00:00.861597+00 2025-12-09 07:00:00.861601+00 712 红辉服饰 \N 龙潭 \N \N \N 1 \N 382c3987-1725-45c4-9092-d7efcfdfbd55 t 2025-12-09 07:00:00.862445+00 2025-12-09 07:00:00.86245+00 713 大眼 \N 龙潭 \N \N \N 1 \N ce856380-1349-4f76-8db3-f4e29ab36add t 2025-12-09 07:00:00.863259+00 2025-12-09 07:00:00.863264+00 714 盛达-魏江明 \N 龙潭 \N \N \N 1 \N 973e710e-5421-492e-a26f-67708053cd04 t 2025-12-09 07:00:00.864063+00 2025-12-09 07:00:00.864067+00 715 浩瀚服饰 \N 龙潭 \N \N \N 1 \N 74356918-fe91-4afb-87a2-39c3556949fe t 2025-12-09 07:00:00.864872+00 2025-12-09 07:00:00.864876+00 716 史成 \N 龙潭 \N \N \N 1 \N 350e92b5-e525-4d5c-8e9b-0ec712bcb5ab t 2025-12-09 07:00:00.865679+00 2025-12-09 07:00:00.865683+00 717 芊琪服饰 \N 龙潭 \N \N \N 1 \N 369df537-9e46-4cd4-a47c-3600328a7fe0 t 2025-12-09 07:00:00.866489+00 2025-12-09 07:00:00.866493+00 718 尚表 \N 龙潭 \N \N \N 1 \N 39d92877-282f-494d-ab43-4628f6875507 t 2025-12-09 07:00:00.867287+00 2025-12-09 07:00:00.867291+00 719 鸿晟 \N 龙潭 \N \N \N 1 \N 693a51bb-c2f5-4eb1-b8f4-91b0b0bf527b t 2025-12-09 07:00:00.868062+00 2025-12-09 07:00:00.868066+00 720 兴旺(九州) \N 龙潭 \N \N \N 1 \N aa37d277-cf03-44c4-9465-a2159d09a0e7 t 2025-12-09 07:00:00.86884+00 2025-12-09 07:00:00.868844+00 721 米亚 \N 龙潭 \N \N \N 1 \N f0537d5e-c5b3-4633-862d-62984a9a5905 t 2025-12-09 07:00:00.869635+00 2025-12-09 07:00:00.86964+00 722 俊杰服饰 \N 龙潭 \N \N \N 1 \N 13d3c57c-2390-444f-9db4-b20a4531c39c t 2025-12-09 07:00:00.870426+00 2025-12-09 07:00:00.87043+00 723 王康波 \N \N \N \N 1 \N 83d262d3-a539-43c5-8e46-fbfece76539a t 2025-12-09 07:00:00.871202+00 2025-12-09 07:00:00.871206+00 724 仙鹤服饰 \N \N \N \N 1 \N 2876a2d4-572d-4e1b-9769-c898a00ca76a t 2025-12-09 07:00:00.872019+00 2025-12-09 07:00:00.872024+00 725 东胜 \N \N \N \N 1 \N 5383897b-72c8-4ea8-8875-9a629a1be88e t 2025-12-09 07:00:00.872811+00 2025-12-09 07:00:00.872815+00 726 汪城 \N 龙潭 \N \N \N 1 \N 306ae583-11a4-445c-8115-16bbab1145fc t 2025-12-09 07:00:00.873577+00 2025-12-09 07:00:00.873581+00 727 王小飞 \N 龙潭 \N \N \N 1 \N db38a29c-b516-4123-a6a1-5b93abf4d580 t 2025-12-09 07:00:00.874716+00 2025-12-09 07:00:00.87472+00 728 张雄伟 \N 龙潭 \N \N \N 1 \N f2147d80-6d2f-4ba6-bb75-c957dd929111 t 2025-12-09 07:00:00.875513+00 2025-12-09 07:00:00.875517+00 729 皓哲服饰 \N 龙潭 \N \N \N 1 \N 314bec4d-d3b4-4c6c-b9e9-22f42797de50 t 2025-12-09 07:00:00.876312+00 2025-12-09 07:00:00.876316+00 730 三毛 \N 三毛 \N \N \N 1 \N 6dab74d3-9c7e-4bd8-bd42-029792733cb3 t 2025-12-09 07:00:00.877084+00 2025-12-09 07:00:00.877088+00 731 郑耀 \N 龙潭 \N \N \N 1 \N f7dfce2f-264d-4d9a-954f-2a0c0a33b573 t 2025-12-09 07:00:00.877866+00 2025-12-09 07:00:00.877871+00 732 漫步者 \N 龙潭 \N \N \N 1 \N 192c3cf2-c652-4d65-8a12-fb1a7b6911e2 t 2025-12-09 07:00:00.878659+00 2025-12-09 07:00:00.878663+00 733 盛达刘小姐 \N 龙潭 \N \N \N 1 \N bc1338e7-b0a4-4d49-80b5-9ee47311d0e8 t 2025-12-09 07:00:00.879424+00 2025-12-09 07:00:00.879428+00 734 鼎利 \N 龙潭 \N \N \N 1 \N 61495801-3ec4-4d5e-b43e-25076ff0df3d t 2025-12-09 07:00:00.880203+00 2025-12-09 07:00:00.880207+00 735 锦兴源 \N 龙潭 \N \N \N 1 \N 8ff7ab2d-0c73-4ba7-8222-1531fced5655 t 2025-12-09 07:00:00.881057+00 2025-12-09 07:00:00.881062+00 736 衣之美服饰 \N 龙潭 \N \N \N 1 \N 652a8c32-25b8-485e-8e93-fb993e776321 t 2025-12-09 07:00:00.881881+00 2025-12-09 07:00:00.881885+00 737 方瑜 \N 龙潭 \N \N \N 1 \N 312034f8-12a1-4005-92e6-c26148a5f4e8 t 2025-12-09 07:00:00.882664+00 2025-12-09 07:00:00.882668+00 738 木棉 \N 龙潭 \N \N \N 1 \N b8e116b5-dab2-40ab-a5c7-60b49d954f3f t 2025-12-09 07:00:00.883459+00 2025-12-09 07:00:00.883463+00 739 王振 \N 龙潭 \N \N \N 1 \N 592844fd-c5dd-4dfa-8b97-143e3b84a62d t 2025-12-09 07:00:00.884228+00 2025-12-09 07:00:00.884232+00 740 龙达纺织 \N 龙潭 \N \N \N 1 \N a6b2e3c5-9105-4338-bdbd-84fe2e3e3651 t 2025-12-09 07:00:00.884988+00 2025-12-09 07:00:00.884992+00 741 黄岳勇 \N 龙潭 \N \N \N 1 \N 03ec5460-9e2b-4446-a4de-06b4ba458bd6 t 2025-12-09 07:00:00.885771+00 2025-12-09 07:00:00.885774+00 742 金腾时尚 \N 龙潭 \N \N \N 1 \N 0d2a8484-467d-4411-a827-ae7e0580cbe7 t 2025-12-09 07:00:00.886644+00 2025-12-09 07:00:00.88665+00 743 华盛 \N 龙潭 \N \N \N 1 \N 2d07977a-24c4-4041-b5ca-230cd6d8527f t 2025-12-09 07:00:00.887459+00 2025-12-09 07:00:00.887463+00 744 军芳服饰 \N 龙潭 \N \N \N 1 \N 6b4055aa-fa13-4c7e-b91d-fc5d1eeb4271 t 2025-12-09 07:00:00.888244+00 2025-12-09 07:00:00.888248+00 745 李外向 \N 龙潭 \N \N \N 1 \N 4668b929-597a-4645-abdd-1cb78ba14b9f t 2025-12-09 07:00:00.889012+00 2025-12-09 07:00:00.889016+00 746 铭纺纺织 \N 龙潭 \N \N \N 1 \N 20e341db-83f3-4d81-9dad-edb7d03363e1 t 2025-12-09 07:00:00.889774+00 2025-12-09 07:00:00.889781+00 747 张攀 \N 龙潭 \N \N \N 1 \N a91003bc-d277-4f6b-a251-98f11222178f t 2025-12-09 07:00:00.890566+00 2025-12-09 07:00:00.89057+00 748 何凯 \N 龙潭 \N \N \N 1 \N ce3c2fee-1642-4aff-985a-3eb5335cf613 t 2025-12-09 07:00:00.891331+00 2025-12-09 07:00:00.891335+00 749 和美 \N 龙潭 \N \N \N 1 \N e1b845dd-dbc4-436a-9d53-7c26917ccdb4 t 2025-12-09 07:00:00.892356+00 2025-12-09 07:00:00.89236+00 750 歌斯拉-朱绍文 \N 龙潭 \N \N \N 1 \N b9e4d18e-b736-456a-9afc-aedd8a180a88 t 2025-12-09 07:00:00.893421+00 2025-12-09 07:00:00.893425+00 751 盛达-华绣 \N 龙潭 \N \N \N 1 \N 81d1b257-8016-4f90-bf94-2cbc20babc89 t 2025-12-09 07:00:00.894474+00 2025-12-09 07:00:00.894478+00 752 杨涌填 \N 龙潭 \N \N \N 1 \N c2b7b0c4-a862-4417-a2ec-18e132605ddd t 2025-12-09 07:00:00.895518+00 2025-12-09 07:00:00.895522+00 753 许克威 \N 龙潭 \N \N \N 1 \N 982f7c71-39e9-4829-8fff-822706f39730 t 2025-12-09 07:00:00.896745+00 2025-12-09 07:00:00.896749+00 754 盛达-彭小姐 \N 龙潭 \N \N \N 1 \N cc16f919-908e-4cfa-90be-6959163cde46 t 2025-12-09 07:00:00.897846+00 2025-12-09 07:00:00.89785+00 755 芊芊服饰 \N 龙潭 \N \N \N 1 \N 4713c8db-a0ba-4c29-8b4e-4f22490f9ff1 t 2025-12-09 07:00:00.898948+00 2025-12-09 07:00:00.898953+00 756 土豆 \N 龙潭 \N \N \N 1 \N a1327ffb-32d4-4e5e-b752-677d1af60530 t 2025-12-09 07:00:00.900024+00 2025-12-09 07:00:00.900028+00 757 卡丹 \N 龙潭 \N \N \N 1 \N 61e53ef2-c47d-4d70-b1ce-605eb5a82c28 t 2025-12-09 07:00:00.900793+00 2025-12-09 07:00:00.900797+00 758 诗怡服饰 \N 龙潭 \N \N \N 1 \N 83c9bdc8-e00a-4b6f-9f72-07a4ba423a52 t 2025-12-09 07:00:00.901582+00 2025-12-09 07:00:00.901586+00 759 彭进宝 \N 龙潭 \N \N \N 1 \N 63662b78-c824-4b29-996b-1f29d9154661 t 2025-12-09 07:00:00.902365+00 2025-12-09 07:00:00.902369+00 760 三丰 \N 龙潭 \N \N \N 1 \N e20dcabc-d6c3-4b4d-85c9-7b525d78159d t 2025-12-09 07:00:00.903127+00 2025-12-09 07:00:00.903131+00 761 联衣社 \N 龙潭 \N \N \N 1 \N d1e772e4-b24b-4ab4-bfa2-d19d3161d5dc t 2025-12-09 07:00:00.9039+00 2025-12-09 07:00:00.903905+00 762 王涛 \N 龙潭 \N \N \N 1 \N af765636-857d-4cda-bf44-f2d7a6d3054d t 2025-12-09 07:00:00.904675+00 2025-12-09 07:00:00.904679+00 763 高坤明 \N 龙潭 \N \N \N 1 \N 395d169f-1841-4f1f-b470-7b34e0c61bc4 t 2025-12-09 07:00:00.90544+00 2025-12-09 07:00:00.905444+00 764 凯琪蕊娜服饰 \N 龙潭 \N \N \N 1 \N 21e29dbc-9f0b-4c2a-b878-86d029476e12 t 2025-12-09 07:00:00.906188+00 2025-12-09 07:00:00.906191+00 765 鑫盛 \N 龙潭 \N \N \N 1 \N 42b2bfc1-e676-4c1e-835e-6bfdc07fabd6 t 2025-12-09 07:00:00.906949+00 2025-12-09 07:00:00.906953+00 766 齐冀服饰 \N 龙潭 \N \N \N 1 \N 9db3db4b-83db-425e-ad29-fa2d6439b7bf t 2025-12-09 07:00:00.907719+00 2025-12-09 07:00:00.907723+00 767 美雅奇 \N 龙潭 \N \N \N 1 \N d49cb2a8-9af4-43e8-a648-973f542ff045 t 2025-12-09 07:00:00.908481+00 2025-12-09 07:00:00.908485+00 768 王小姐 \N 龙潭 \N \N \N 1 \N e77bc780-18a2-42e5-9136-8baa42d10067 t 2025-12-09 07:00:00.909227+00 2025-12-09 07:00:00.909231+00 769 添发 \N 龙潭 \N \N \N 1 \N 32f48277-113c-44ad-a348-29a5220645ed t 2025-12-09 07:00:00.910002+00 2025-12-09 07:00:00.910006+00 770 郭涛 \N 龙潭 \N \N \N 1 \N 67fa1f66-1b4f-453e-88aa-3d1013e0b785 t 2025-12-09 07:00:00.910829+00 2025-12-09 07:00:00.910833+00 771 珍妮服饰 \N 龙潭 \N \N \N 1 \N f2466a0c-0855-42de-bf5f-e487132f0ae1 t 2025-12-09 07:00:00.911591+00 2025-12-09 07:00:00.911594+00 772 盛达-进鹏 \N 龙潭 \N \N \N 1 \N a4f47e27-f0ab-400e-87b7-6a6d89e2dcc4 t 2025-12-09 07:00:00.91237+00 2025-12-09 07:00:00.912374+00 773 盛达-朝哥 \N 龙潭 \N \N \N 1 \N 69d815c3-db1c-4f84-b61f-587da68004a8 t 2025-12-09 07:00:00.913135+00 2025-12-09 07:00:00.913139+00 774 肖格 \N 龙潭 \N \N \N 1 \N 6a66ba01-c69b-4dd1-980c-0de09b05e1f0 t 2025-12-09 07:00:00.9139+00 2025-12-09 07:00:00.913904+00 775 盛达-植小姐 \N 龙潭 \N \N \N 1 \N 5aa81bc8-2ecf-4ee4-911b-739a003387ff t 2025-12-09 07:00:00.914671+00 2025-12-09 07:00:00.914675+00 776 电商LY服饰 \N 龙潭 \N \N \N 1 \N 9e98956c-d5f7-4fe5-8f81-b2b1b69d501c t 2025-12-09 07:00:00.91544+00 2025-12-09 07:00:00.915444+00 777 无际服饰 \N 龙潭 \N \N \N 1 \N a81d43b5-1279-4688-b6f3-99fd1db84912 t 2025-12-09 07:00:00.916205+00 2025-12-09 07:00:00.916208+00 778 朱圣龙 \N 龙潭 \N \N \N 1 \N b37fc25b-a18e-4e40-a18c-3bb58f9d3459 t 2025-12-09 07:00:00.916968+00 2025-12-09 07:00:00.916972+00 779 王君浩 \N 龙潭 \N \N \N 1 \N d79ae462-279a-47e0-981e-f1d149d69b2d t 2025-12-09 07:00:00.917753+00 2025-12-09 07:00:00.917756+00 780 卿卿 \N 龙潭 \N \N \N 1 \N de3b2da8-49ab-40c0-b35f-d377e0caff9f t 2025-12-09 07:00:00.918506+00 2025-12-09 07:00:00.91851+00 781 刘训 \N 龙潭 \N \N \N 1 \N 2a1c8978-3498-4b2a-b102-c6e0795560ee t 2025-12-09 07:00:00.91931+00 2025-12-09 07:00:00.919314+00 782 齐进 \N 龙潭 \N \N \N 1 \N c7b6dc03-64e7-47d5-8fdb-58ee4a7da1b5 t 2025-12-09 07:00:00.920098+00 2025-12-09 07:00:00.920102+00 783 邓南群 \N 龙潭 \N \N \N 1 \N 8996756c-9eca-420a-9de4-52bd62878422 t 2025-12-09 07:00:00.92086+00 2025-12-09 07:00:00.920864+00 784 金美贸易 \N 龙潭 \N \N \N 1 \N 8b50ef6c-75ed-4c64-b801-1d0d403b292b t 2025-12-09 07:00:00.921639+00 2025-12-09 07:00:00.921643+00 785 赤沙红派服饰 \N 龙潭 \N \N \N 1 \N 90ce5b48-8a7f-413e-a4ec-e67f3a4e4d0e t 2025-12-09 07:00:00.922577+00 2025-12-09 07:00:00.922581+00 786 嫣然博雅 \N 龙潭 \N \N \N 1 \N 0e33a7c6-d0ec-48d2-919c-194c2e699e37 t 2025-12-09 07:00:00.923414+00 2025-12-09 07:00:00.923419+00 787 盛达-冯老板 \N 龙潭 \N \N \N 1 \N 99591647-ea40-4c61-b385-bd50fdf9c5e7 t 2025-12-09 07:00:00.924213+00 2025-12-09 07:00:00.924217+00 788 仨和服饰 \N 龙潭 \N \N \N 1 \N 3baef4bb-62f4-495e-9def-08b8e09651e3 t 2025-12-09 07:00:00.924997+00 2025-12-09 07:00:00.925001+00 789 沐悦 \N 龙潭 \N \N \N 1 \N d718806a-4ba2-4a32-8ecd-d026295d0f78 t 2025-12-09 07:00:00.925786+00 2025-12-09 07:00:00.92579+00 790 广州艾妮优服饰 \N 龙潭 \N \N \N 1 \N dee92631-e008-4e4a-8e6d-d141425d2ef3 t 2025-12-09 07:00:00.926575+00 2025-12-09 07:00:00.926579+00 791 明文烁 \N 龙潭 \N \N \N 1 \N ee1dbf80-66e4-451e-a6af-04ee6f0fb864 t 2025-12-09 07:00:00.927364+00 2025-12-09 07:00:00.927368+00 792 伊人服饰 \N 龙潭 \N \N \N 1 \N 472319e9-a19a-435d-8a4b-dac99b108cff t 2025-12-09 07:00:00.928148+00 2025-12-09 07:00:00.928151+00 793 可可服饰 \N 龙潭 \N \N \N 1 \N 316f6748-1a34-4a2a-b464-7b59c540771f t 2025-12-09 07:00:00.928923+00 2025-12-09 07:00:00.928927+00 794 许腾 \N 龙潭 \N \N \N 1 \N 02f3428e-a280-4eb0-afa5-82514c224572 t 2025-12-09 07:00:00.929695+00 2025-12-09 07:00:00.929699+00 795 靖诚服饰 \N 龙潭 \N \N \N 1 \N 10ec4854-fc7d-41e5-b57a-fc766d58d8d4 t 2025-12-09 07:00:00.930474+00 2025-12-09 07:00:00.930478+00 796 仟佰汇 \N 龙潭 \N \N \N 1 \N 201fbcfd-e811-422c-9f69-01457201ed4e t 2025-12-09 07:00:00.931235+00 2025-12-09 07:00:00.931239+00 797 广州丝韵服饰 \N 龙潭 \N \N \N 1 \N 99ed8f7e-e614-4faf-bb7d-fe414ed1fbcc t 2025-12-09 07:00:00.932016+00 2025-12-09 07:00:00.93202+00 798 韩柚服饰 \N 龙潭 \N \N \N 1 \N efe34601-f00d-40de-bb98-1f401d0cdd62 t 2025-12-09 07:00:00.93279+00 2025-12-09 07:00:00.932794+00 799 土华莉维娅服饰 \N 龙潭 \N \N \N 1 \N a8d34e75-9a80-4aa9-aaea-ca93f0f4ba93 t 2025-12-09 07:00:00.933543+00 2025-12-09 07:00:00.933547+00 800 兴万胜 \N 龙潭 \N \N \N 1 \N 336432ab-f2d9-4b3f-a379-91be4df9dcda t 2025-12-09 07:00:00.934315+00 2025-12-09 07:00:00.934319+00 801 许赛兵 \N 龙潭 \N \N \N 1 \N 1365740d-ca8e-4442-bb10-3aca11cf5f9a t 2025-12-09 07:00:00.935111+00 2025-12-09 07:00:00.935114+00 802 高志成 \N 龙潭 \N \N \N 1 \N 283fa990-21a7-4a3f-a0a0-6c7dc3aca209 t 2025-12-09 07:00:00.935883+00 2025-12-09 07:00:00.935887+00 803 新兴 \N 龙潭 \N \N \N 1 \N 7860effa-5135-4d75-9507-99ab0f2c316b t 2025-12-09 07:00:00.936667+00 2025-12-09 07:00:00.936671+00 804 多多商贸 \N 龙潭 \N \N \N 1 \N f7d6b1a5-9bf1-45f3-b7d3-be670fdfe3cb t 2025-12-09 07:00:00.937529+00 2025-12-09 07:00:00.937533+00 805 金豪 \N 龙潭 \N \N \N 1 \N 46c3bd24-5f36-4fe6-b22b-edd3b2495ede t 2025-12-09 07:00:00.938294+00 2025-12-09 07:00:00.938298+00 806 土华宇邦服饰 \N 龙潭 \N \N \N 1 \N 4d4322bb-e095-437b-8381-19d0287cd5b2 t 2025-12-09 07:00:00.939073+00 2025-12-09 07:00:00.939077+00 807 涵涵潮郭总 \N 龙潭 \N \N \N 1 \N aca8976c-b2ef-4867-85ea-4fe0aeb4d5ff t 2025-12-09 07:00:00.93983+00 2025-12-09 07:00:00.939834+00 808 李泽强 \N 龙潭 \N \N \N 1 \N a932ed9a-e555-444a-abdf-69b7c277ff41 t 2025-12-09 07:00:00.940604+00 2025-12-09 07:00:00.940608+00 809 仑头马总 \N 龙潭 \N \N \N 1 \N d9fe3f30-fe85-4a0f-830c-2913fe0a6eaa t \. -- -- Data for Name: basic_info_customer_visible_employees; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_customer_visible_employees (id, customer_id, employee_id) FROM stdin; 1 3 6 4 3 9 5 410 8 6 410 6 \. -- -- Data for Name: basic_info_deviceinfo; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_deviceinfo (created_at, updated_at, id, name, type, status, start_working_at, stop_working_at, is_occupied, description, merchant_id) FROM stdin; 2025-12-06 06:52:52.804808+00 2025-12-06 06:52:52.804819+00 1 测试 打印 使用中 \N \N f \N 1 2025-12-06 07:02:37.085012+00 2025-12-06 07:02:37.085021+00 2 测试2 滚筒 使用中 \N \N f \N 1 \. -- -- Data for Name: basic_info_employee; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_employee (created_at, updated_at, id, name, mobile, area, description, status, sys_user_id, merchant_id, position_id) FROM stdin; 2025-11-18 06:00:44.202474+00 2025-11-20 06:10:09.963599+00 1 左威 \N \N 在职 2 1 2 2025-11-19 08:14:37.879581+00 2025-11-20 06:10:14.371773+00 2 映雪 15361280510 \N 在职 3 1 2 2025-11-24 09:25:06.187356+00 2025-11-24 09:25:06.187366+00 4 123 \N \N \N 在职 5 1 \N 2025-11-24 09:25:22.570921+00 2025-11-24 09:25:22.570928+00 5 312 \N \N \N 在职 7 1 2 2025-11-24 09:25:34.682437+00 2025-12-02 05:15:59.929915+00 6 威左 \N \N \N 在职 6 1 7 2025-12-04 06:20:29.464442+00 2025-12-04 06:20:29.46445+00 7 丹红 \N \N 在职 9 1 3 2025-12-04 06:20:54.859664+00 2025-12-04 06:22:16.679034+00 8 丽容 \N \N 在职 17 1 8 2025-12-04 06:22:59.122061+00 2025-12-04 06:22:59.122069+00 9 文华 \N \N 在职 8 1 3 2025-12-04 06:23:18.893132+00 2025-12-04 06:23:18.893139+00 10 春香 \N \N 在职 18 1 8 2025-12-04 06:27:04.00585+00 2025-12-04 06:27:04.005857+00 11 杨淑滢 \N \N 在职 10 1 3 2025-12-04 06:27:36.454577+00 2025-12-04 06:27:36.454585+00 12 翟中灿 \N \N 在职 11 1 3 2025-12-04 06:28:11.769851+00 2025-12-04 06:28:11.769863+00 13 蕙婷 \N \N 在职 16 1 8 2025-12-04 06:28:36.095811+00 2025-12-04 06:28:36.095818+00 14 赖晖怡 \N \N 在职 12 1 3 2025-12-04 06:28:57.226452+00 2025-12-04 06:28:57.22646+00 15 陈珍 \N \N 在职 13 1 3 2025-12-04 06:29:22.663197+00 2025-12-04 06:29:22.663206+00 16 陈紫莹 \N \N 在职 14 1 3 2025-12-04 06:29:45.849442+00 2025-12-04 06:29:45.849449+00 17 静云 \N \N 在职 15 1 8 2025-12-04 07:50:40.284012+00 2025-12-04 07:50:40.284019+00 18 测试员工 在职 19 1 \N 2025-12-04 07:51:58.358692+00 2025-12-04 07:51:58.358699+00 19 测试员工 13800138000 深圳 API测试创建的员工 在职 20 1 \N 2025-12-04 07:51:59.528492+00 2025-12-04 07:51:59.528498+00 20 测试员工 在职 21 1 \N 2025-12-04 07:52:04.979807+00 2025-12-04 07:52:04.979813+00 21 测试完整员工 13900139000 北京海淀区 这是一个包含所有字段的测试员工账号 在职 22 1 \N 2025-12-04 08:27:45.113326+00 2025-12-04 08:27:45.113332+00 22 测试员工 13800138000 深圳 API测试创建的员工 在职 23 1 \N 2025-12-04 08:27:46.423583+00 2025-12-04 08:27:46.42359+00 23 测试员工 在职 24 1 \N 2025-12-04 08:27:51.773532+00 2025-12-04 08:27:51.773538+00 24 测试完整员工 13900139000 北京海淀区 这是一个包含所有字段的测试员工账号 在职 25 1 \N 2025-12-05 10:38:28.107141+00 2025-12-05 10:38:28.107148+00 25 测试 在职 26 1 \N \. -- -- Data for Name: basic_info_employeetype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_employeetype (created_at, updated_at, id, title, description, reverse, merchant_id) FROM stdin; 2025-11-20 06:10:02.467608+00 2025-11-20 06:10:02.467618+00 2 设计师 设计师 \N 1 2025-11-20 06:39:12.672087+00 2025-11-20 06:39:12.672099+00 3 跟单员 \N \N 1 2025-11-20 06:39:22.85184+00 2025-11-20 06:39:22.851853+00 4 运营员 \N \N 1 2025-11-20 06:39:34.031356+00 2025-11-20 06:39:41.998153+00 5 打纸员 \N \N 1 2025-11-20 06:39:48.043445+00 2025-11-20 06:39:48.043455+00 6 滚筒工 \N \N 1 2025-11-20 06:39:54.142622+00 2025-11-20 06:39:54.14263+00 7 业务员 \N \N 1 2025-12-04 06:21:06.866439+00 2025-12-04 06:21:06.866447+00 8 下单员 \N 1 \. -- -- Data for Name: basic_info_merchant; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_merchant (created_at, updated_at, id, name, type, area, email, mobile, contact, description, auto_complete_stock_change) FROM stdin; 2025-11-18 06:00:31.465397+00 2025-11-18 06:00:31.465405+00 1 瑞彩印花 2 \N \N \N f 2025-11-20 06:02:58.795363+00 2025-11-20 06:02:58.795382+00 2 测试商户2 1 \N \N \N \N \N f 2025-11-24 05:45:09.309332+00 2025-11-24 05:45:09.309344+00 3 测试商户 1 \N \N \N \N \N f \. -- -- Data for Name: basic_info_merchantsetting; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_merchantsetting (created_at, updated_at, id, key, description, merchant_id, val_bool, val_float, val_int, val_str, type) FROM stdin; 2025-11-28 06:03:02.924489+00 2025-11-28 08:30:04.435452+00 1 auto_create_stock_change_tasks 1 t \N \N \N bool \. -- -- Data for Name: basic_info_product; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_product (created_at, updated_at, id, name, human_id, color, width_size, single_price_in, single_price_out, unit, spec, description, image, transform_rate, merchant_id, category_id, minimum_quantity, from_mdy, mdy_image_url, pieces, segment_size) FROM stdin; 2025-11-18 08:21:51.521625+00 2025-11-18 08:21:51.521633+00 1 Tj602#V领19号色-25码 RC00001 \N \N \N \N 1 \N \N product_images/Tj602V领19号色-25码LWQ15-幅宽151-双层四面弹-一段一件-151cmX274cm-印好不能低于147cmX269cm__佩_preview.jpg \N 1 1 \N f \N \N \N 2025-11-18 08:22:17.694033+00 2025-11-18 08:22:17.694041+00 2 Tj602#V领19号色-24码 RC00002 \N \N \N \N 1 \N \N product_images/Tj602V领19号色-24码LWQ15-幅宽151-双层四面弹-一段一件-151cmX268cm-印好不能低于147cmX253cm__佩_preview.jpg \N 1 1 \N f \N \N \N 2025-11-28 10:02:30.737719+00 2025-11-28 10:02:30.737728+00 3 四面弹 RC00003 \N \N \N \N 1 \N \N \N 1 1 \N f \N \N \N 2025-12-09 10:14:38.911944+00 2025-12-09 10:14:38.911957+00 2721 a597fb5e6246403290a976c0e6806ee8.jpg SPMX-20240815297840 \N \N \N 1 \N \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.913743+00 2025-12-09 10:14:38.913748+00 2722 a597fb5e6246403290a976c0e6806ee8.jpg SPMX-20240815297837 \N \N \N 1 \N \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.914831+00 2025-12-09 10:14:38.914836+00 2723 LHJ0125-A2#粉色 SPMX-20240815297842 \N \N \N 1 \N [{"file_id": "0b5fd1ae-d216-4036-9aed-bc93997bbfd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f71defe4ff544a2fac0927ce6b18a231.jpg", "file_size": 14510, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f71defe4ff544a2fac0927ce6b18a231.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIW-wXQZggWbJotzAcRA_l5Z7PU=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.915943+00 2025-12-09 10:14:38.915947+00 2724 C208#枣红净色 SPMX-20240815297846 \N \N \N 1 \N [{"file_id": "c63673a8-ee16-4ce1-a460-a974286cdd2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4defee846fb4b269d764cc53cb09d7d.jpg", "file_size": 8021, "is_delete": false, "file_type": 1, "original_file_name": "C208#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4defee846fb4b269d764cc53cb09d7d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCC7boByBqspG7iD5Kx_GT2DEUA=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.916952+00 2025-12-09 10:14:38.916956+00 2725 JS0104-A1#WJC22 SPMX-20240815297838 \N \N \N 1 \N [{"file_id": "2ca0ccc1-c9c0-401b-aa3c-2cf19b23bbe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c40ae907fc2f4668a75e575271aa3bd5.jpg", "file_size": 12269, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c40ae907fc2f4668a75e575271aa3bd5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mak71oSPXqt9NdKUKVNpHFnxNkk=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.917957+00 2025-12-09 10:14:38.917961+00 2726 #童装T上身号色 SPMX-20240815297844 \N \N \N 1 \N [{"file_id": "46afabb0-24e1-436a-b610-e72e06bcc140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6705d854baf840288d4799e8c732bf61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6705d854baf840288d4799e8c732bf61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6705d854baf840288d4799e8c732bf61.jpg", "file_size": 25345, "is_delete": false, "file_type": 1, "original_file_name": "#童装T上身号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6705d854baf840288d4799e8c732bf61.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC7MUnd0cvbtG7AGacBV40HYoBQ=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.918978+00 2025-12-09 10:14:38.918983+00 2727 DH001#柠檬 SPMX-20240815297839 \N \N \N 1 \N [{"file_id": "ad7740eb-a8af-4cbe-aae7-d08d6d331033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1762ba8b3c9042f7ab992097a91bec7b.jpg", "file_size": 9336, "is_delete": false, "file_type": 1, "original_file_name": "DH001#柠檬.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1762ba8b3c9042f7ab992097a91bec7b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdCx9aRrhm87BqWjWDrzsg4n-0c=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.920373+00 2025-12-09 10:14:38.920378+00 2728 80017#15-短袖上衣 SPMX-20240815297845 \N \N \N 1 \N [{"file_id": "01d23899-c7d4-4c77-94dc-04d4b28cda8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82933979ab20498aa5cca8a8ac48fadb.jpg", "file_size": 18743, "is_delete": false, "file_type": 1, "original_file_name": "80017#15-短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82933979ab20498aa5cca8a8ac48fadb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKGEa-82OD9aVoo4hKAt69dI_0Y=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.921376+00 2025-12-09 10:14:38.92138+00 2729 1038L-190版#枣红 SPMX-20240815297843 \N \N \N 1 \N [{"file_id": "810cfba5-58d3-45ec-9ca1-88a9c9e0cb82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fdaea90158942b693fda2b116cf80ca.jpg", "file_size": 10812, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fdaea90158942b693fda2b116cf80ca.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQRVPsiblCsn21lNO6FLTKKBrMI=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.922347+00 2025-12-09 10:14:38.922351+00 2730 FHPKDK-批布062-1 SPMX-20240815297841 \N \N \N 1 \N [{"file_id": "00920677-8b69-4148-ac92-f5641d47749e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f574275c0cd409dae856799064acf93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f574275c0cd409dae856799064acf93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f574275c0cd409dae856799064acf93.jpg", "file_size": 63090, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f574275c0cd409dae856799064acf93.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARsGyOKFOwAFa3lgpsFIiMW80bE=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.923322+00 2025-12-09 10:14:38.923326+00 2731 HSDC2066#蓝色L SPMX-20240815297847 \N \N \N 1 \N [{"file_id": "7da6581b-056f-4c54-842c-fe643af489cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "285830c8821e4f11ae980ed3e627a06a.jpg", "file_size": 14822, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/285830c8821e4f11ae980ed3e627a06a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GAtgU-Ux8Hb2bSMvo1A0FxsdsU=", "createTime": "2024-08-15 14:37:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.924326+00 2025-12-09 10:14:38.92433+00 2732 80017#15-短袖子 SPMX-20240815297858 \N \N \N 1 \N [{"file_id": "2571a803-08fa-4c23-80a4-ea7977f41696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20685483872d4dac99f27c11f337f5b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20685483872d4dac99f27c11f337f5b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20685483872d4dac99f27c11f337f5b1.jpg", "file_size": 15938, "is_delete": false, "file_type": 1, "original_file_name": "80017#15-短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20685483872d4dac99f27c11f337f5b1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F47nbQ4e5bSOzY-873rCAnG9VZY=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.925304+00 2025-12-09 10:14:38.925308+00 2733 #童装上身5号色 SPMX-20240815297856 \N \N \N 1 \N [{"file_id": "0b2a3a32-e61c-4b23-b563-3f14590650d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d799d7877a444c089a7e16ea01465b5.jpg", "file_size": 18828, "is_delete": false, "file_type": 1, "original_file_name": "#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d799d7877a444c089a7e16ea01465b5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2MF32Ma1zqL8dXnV1jWgviOY8w=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.926266+00 2025-12-09 10:14:38.92627+00 2734 JS0104-A11#WJC22 SPMX-20240815297860 \N \N \N 1 \N [{"file_id": "6fa9752d-55b4-42f4-829d-95da4ccc5792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505a0443023a453e8e77f656790fd6f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505a0443023a453e8e77f656790fd6f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505a0443023a453e8e77f656790fd6f1.jpg", "file_size": 7299, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505a0443023a453e8e77f656790fd6f1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lHraNTkRqIkFTBFFkaAmfxDMbE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.927217+00 2025-12-09 10:14:38.927221+00 2735 LHJ0125-A2#绿色 SPMX-20240815297857 \N \N \N 1 \N [{"file_id": "d46c88b8-a1ea-4804-8012-e8696ab80a90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5441781592c441eaa495b9c81d315081.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5441781592c441eaa495b9c81d315081.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5441781592c441eaa495b9c81d315081.jpg", "file_size": 14054, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5441781592c441eaa495b9c81d315081.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USLug_o41FsfZxcL3DYyJZSliJ0=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.928922+00 2025-12-09 10:14:38.92893+00 2736 DH001#气球 SPMX-20240815297850 \N \N \N 1 \N [{"file_id": "af5229f7-f053-4a39-8eb5-04ad014d023a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "871db63efa364ba3812c0c928bfb066e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "871db63efa364ba3812c0c928bfb066e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "871db63efa364ba3812c0c928bfb066e.jpg", "file_size": 10347, "is_delete": false, "file_type": 1, "original_file_name": "DH001#气球.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/871db63efa364ba3812c0c928bfb066e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTOZA0bpYixmbj-OA_xhQno8ow0=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.931072+00 2025-12-09 10:14:38.931078+00 2737 FHPKDK-批布062-2 SPMX-20240815297852 \N \N \N 1 \N [{"file_id": "882fb781-7f46-43f8-97d5-1b19e9d8c031", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7fff5bdf4fe424095175bf224ed19f4.jpg", "file_size": 48028, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7fff5bdf4fe424095175bf224ed19f4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRsTOXX_iMcUVSdiYjq_zqR6IV4=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.933043+00 2025-12-09 10:14:38.933048+00 2738 22A-95单#B SPMX-20240815297859 \N \N \N 1 \N [{"file_id": "49e065f0-ebc4-420e-b919-072c39ad2f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9f707b9ecf7410e8c6a14981fa4bb65.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwZl_M97LXn95DMJU7g1HLwqzXE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.934987+00 2025-12-09 10:14:38.934993+00 2739 HSDC2066#蓝色M SPMX-20240815297853 \N \N \N 1 \N [{"file_id": "6012c6b7-895f-41bf-9ab4-cc9338048d6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add9c50894ef4f75a20e09686f3c482b.jpg", "file_size": 15471, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add9c50894ef4f75a20e09686f3c482b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUEOeVQcGKhb_foi4BFkaPJGQwU=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.936976+00 2025-12-09 10:14:38.936983+00 2740 JS0104-A10#WJC22 SPMX-20240815297849 \N \N \N 1 \N [{"file_id": "7475887e-3be0-41f1-91c0-16c71222ad0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f76b2c114cc44f8bea10ff5c4108145.jpg", "file_size": 11209, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f76b2c114cc44f8bea10ff5c4108145.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMT-NJnYSgNROEOV8zVbLeDkApk=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.938934+00 2025-12-09 10:14:38.938939+00 2741 1038L-190版#蓝色 SPMX-20240815297851 \N \N \N 1 \N [{"file_id": "21b747ed-a795-4fc7-94c5-cc75b1b55140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c6cab7771fb46689f0b718b6a16146e.jpg", "file_size": 13328, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c6cab7771fb46689f0b718b6a16146e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zApmtStkSk2QuFh5BpqxNEcTJps=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.940302+00 2025-12-09 10:14:38.940306+00 2742 LZ1172#上身3号色 SPMX-20240815297854 \N \N \N 1 \N [{"file_id": "a4cacd8e-4c91-40fe-a4d3-2b6abf37344d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "337e4e5a65a445e1a21e205f043c98f3.jpg", "file_size": 11870, "is_delete": false, "file_type": 1, "original_file_name": "LZ1172#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/337e4e5a65a445e1a21e205f043c98f3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyhViiBJg6UceIa-_RnCoK8TFqE=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.941608+00 2025-12-09 10:14:38.941612+00 2743 C208#橙色 SPMX-20240815297855 \N \N \N 1 \N [{"file_id": "4a7bfb04-2a89-4ca9-9a43-ab446cff123f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a30cf99eee8e49b9984f0cc249edba5f.jpg", "file_size": 14037, "is_delete": false, "file_type": 1, "original_file_name": "C208#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a30cf99eee8e49b9984f0cc249edba5f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FJhP6gvCYvnO4hhVt1pTeHi57uk=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.942603+00 2025-12-09 10:14:38.942608+00 2744 22A-95单#A SPMX-20240815297848 \N \N \N 1 \N [{"file_id": "8b33b2e8-336f-43bc-a533-659c69bac1be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cebeb822a003481aad6b65bb8828c56e.jpg", "file_size": 8856, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cebeb822a003481aad6b65bb8828c56e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGdtwZ1L07DeXZ-T07G9SZplm-c=", "createTime": "2024-08-15 14:37:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.943614+00 2025-12-09 10:14:38.943618+00 2745 DH001#火烈鸟 SPMX-20240815297861 \N \N \N 1 \N [{"file_id": "03aabefa-33e9-470a-b12e-5ee0e79ae0f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "652f95b4220849a4988ab960fdfadb88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "652f95b4220849a4988ab960fdfadb88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "652f95b4220849a4988ab960fdfadb88.jpg", "file_size": 11749, "is_delete": false, "file_type": 1, "original_file_name": "DH001#火烈鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/652f95b4220849a4988ab960fdfadb88.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKcUpn6NiyFf_7WuYwrOCk_GR9U=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.944591+00 2025-12-09 10:14:38.944595+00 2746 HSDC2066#蓝色S SPMX-20240815297866 \N \N \N 1 \N [{"file_id": "cc9e9d9f-8abe-4bc4-aa20-e098e5d1c110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbfd200e61f844d5a7acc52fd6bb103e.jpg", "file_size": 16242, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbfd200e61f844d5a7acc52fd6bb103e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qt3OMWqNa7MPZA5U6sO6xEQCL7g=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.945589+00 2025-12-09 10:14:38.945593+00 2747 LZ1172#上身4号色 SPMX-20240815297864 \N \N \N 1 \N [{"file_id": "e3b01b5b-ad79-4c00-b971-e2c7d41bbd7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3733cccc1834761895e090e7019312f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3733cccc1834761895e090e7019312f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3733cccc1834761895e090e7019312f.jpg", "file_size": 11560, "is_delete": false, "file_type": 1, "original_file_name": "LZ1172#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3733cccc1834761895e090e7019312f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0cXhKPXSIhZ_JgyMunJlTmKGv8=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.946565+00 2025-12-09 10:14:38.946569+00 2748 80017#短袖上衣 SPMX-20240815297865 \N \N \N 1 \N [{"file_id": "bfbe449c-1b71-44a8-b7c4-b2c1c3f606a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c046a8e6db3748619764bd04586770bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c046a8e6db3748619764bd04586770bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c046a8e6db3748619764bd04586770bb.jpg", "file_size": 18631, "is_delete": false, "file_type": 1, "original_file_name": "80017#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c046a8e6db3748619764bd04586770bb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlmCV-m_miZHovbX08qn-6lwuBU=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.947821+00 2025-12-09 10:14:38.947826+00 2749 FHPKDK-批布062-4 SPMX-20240815297863 \N \N \N 1 \N [{"file_id": "f05209e4-927f-4dec-adc1-0f83f0d54a78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32e6c3b13d454e1fa13d1956dc541cce.jpg", "file_size": 49043, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32e6c3b13d454e1fa13d1956dc541cce.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D6xG-dPDrtQLslW_7-WJHxWNzio=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.948878+00 2025-12-09 10:14:38.948883+00 2750 1038L-190版#黄色 SPMX-20240815297862 \N \N \N 1 \N [{"file_id": "b40e1546-5a90-4c86-aa97-a12da68b2ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f17a6ecf52e49ad97b8b13a2665298c.jpg", "file_size": 13189, "is_delete": false, "file_type": 1, "original_file_name": "1038L-190版#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f17a6ecf52e49ad97b8b13a2665298c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76TXz5Do4j7IP1jKym97Hjhsr08=", "createTime": "2024-08-15 14:37:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.949934+00 2025-12-09 10:14:38.949938+00 2751 DH001#爱心 SPMX-20240815297871 \N \N \N 1 \N [{"file_id": "e425efa8-a75f-4827-a6d8-b3d3fc7de142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "file_size": 19015, "is_delete": false, "file_type": 1, "original_file_name": "DH001#爱心.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7000ab3ddb8c4d83a8974a17d6b35a59.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScUIxVXhJ2HoQ5V2O9zsoYzLlFo=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.950934+00 2025-12-09 10:14:38.950938+00 2752 LHJ0125-A2#蓝色 SPMX-20240815297873 \N \N \N 1 \N [{"file_id": "e3648a2c-aca1-4c67-ad27-1b10fb00deb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be3cb53fc63f492ea0c5026d3ac2532c.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be3cb53fc63f492ea0c5026d3ac2532c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHFdbSwy6onT1qz-8tM-eqBv1Uw=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.951935+00 2025-12-09 10:14:38.951938+00 2753 22A-95单#C SPMX-20240815297870 \N \N \N 1 \N [{"file_id": "b888812f-c18c-4303-b813-8f256394f1fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcc78c48b86e4f11947deed41f5ba961.jpg", "file_size": 7866, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcc78c48b86e4f11947deed41f5ba961.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pd0uQ-MmC5tSwu49OKTlZJ0NxUQ=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.952917+00 2025-12-09 10:14:38.952921+00 2754 1039#杏色 SPMX-20240815297874 \N \N \N 1 \N [{"file_id": "c6200965-c94e-493b-a449-3afa497268b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bd107031b0f4f95846ae2a9d4f43191.jpg", "file_size": 12684, "is_delete": false, "file_type": 1, "original_file_name": "1039#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bd107031b0f4f95846ae2a9d4f43191.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vnFrUGP_8xm9tr3TMBBRI-s6Qps=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.95389+00 2025-12-09 10:14:38.953894+00 2755 LZ1173#上身1号色 SPMX-20240815297877 \N \N \N 1 \N [{"file_id": "243bfc53-354d-49f2-a521-d0c101ffa247", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e657567f8949f4848464a7e7ed7713.jpg", "file_size": 12308, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e657567f8949f4848464a7e7ed7713.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXIbTkvpqC9cnxGwLBsHjvKbeUw=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.954888+00 2025-12-09 10:14:38.954893+00 2756 JS0104-A12#杏色 SPMX-20240815297868 \N \N \N 1 \N [{"file_id": "71a107e1-ff87-4523-b14d-165c5badc0b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ff5194bd1b44709a11d50f01dd892b8.jpg", "file_size": 6749, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ff5194bd1b44709a11d50f01dd892b8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0BUf_KmMGqP6oeOlLZ2x8eEWi88=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.955865+00 2025-12-09 10:14:38.955869+00 2757 80017#短袖子 SPMX-20240815297875 \N \N \N 1 \N [{"file_id": "e24dfe2e-b544-4abc-a7cf-e1de354fc001", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa364fe460ac4f58aa0e6a37dea822d7.jpg", "file_size": 15409, "is_delete": false, "file_type": 1, "original_file_name": "80017#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa364fe460ac4f58aa0e6a37dea822d7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vvng3miamUgKyyZMS3N1Djg21Ok=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.956845+00 2025-12-09 10:14:38.956849+00 2758 C208#浅玫红净色 SPMX-20240815297867 \N \N \N 1 \N [{"file_id": "a334c617-56a3-49d9-99c0-6256c2a51fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49471af9f0a14656901f08d2db3e6b59.jpg", "file_size": 8264, "is_delete": false, "file_type": 1, "original_file_name": "C208#浅玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49471af9f0a14656901f08d2db3e6b59.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4udnHRSOHpTQEBHMtKVdW0b77SM=", "createTime": "2024-08-15 14:37:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.957803+00 2025-12-09 10:14:38.957807+00 2759 FHPKDK-批布062-5 SPMX-20240815297872 \N \N \N 1 \N [{"file_id": "095a287c-be44-4ffb-96b1-55e2feeec403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "file_size": 55566, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布062-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c91b498e9424b9bb1c9f79b5a0d627d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6e8EaWG2sXErWCLr549vjFZxdKM=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.958783+00 2025-12-09 10:14:38.958787+00 2760 HSDC2066#蓝色XL SPMX-20240815297876 \N \N \N 1 \N [{"file_id": "1e056c0d-7a1a-42d5-95a2-d1f8021c1a51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c311a5dcdeb4d46937de256de61b666.jpg", "file_size": 15071, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c311a5dcdeb4d46937de256de61b666.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iEf7ipluwnZ56T2WqPkFiTrZrlo=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.959776+00 2025-12-09 10:14:38.95978+00 2761 -1#-003-6#玫红色 SPMX-20240815297869 \N \N \N 1 \N [{"file_id": "ccd3d255-c32f-4ec0-87be-0d22634b042c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fb652ea11a4e8683526f5bf7d902b4.jpg", "file_size": 64499, "is_delete": false, "file_type": 1, "original_file_name": "-1#-003-6#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fb652ea11a4e8683526f5bf7d902b4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3LOgNX-0B6UexZeog745x-KFW0=", "createTime": "2024-08-15 14:37:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.960806+00 2025-12-09 10:14:38.96081+00 2762 LHJ0125-A2#黄色 SPMX-20240815297888 \N \N \N 1 \N [{"file_id": "acec7390-1c1e-4297-a712-b7f85fe22241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a82ae48b65eb459481ab73b12d950a38.jpg", "file_size": 15452, "is_delete": false, "file_type": 1, "original_file_name": "LHJ0125-A2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a82ae48b65eb459481ab73b12d950a38.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGnWq843qANpvI0gGKLErKREbYw=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.961779+00 2025-12-09 10:14:38.961783+00 2763 80018#短袖上衣 SPMX-20240815297882 \N \N \N 1 \N [{"file_id": "0d635985-2d13-4927-b05b-16af85bbee20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7027718f1bc4c0089d9658a04160fd5.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "80018#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7027718f1bc4c0089d9658a04160fd5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFvNEFkC_Htsa-5NX3p-Z7c7_TM=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.962744+00 2025-12-09 10:14:38.962748+00 2764 22A-95单#HB SPMX-20240815297889 \N \N \N 1 \N [{"file_id": "8b3be81c-c7c8-4128-8242-54b631afdf7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2fe1c05d1d422b870a0fdae23b9349.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#HB.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2fe1c05d1d422b870a0fdae23b9349.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUPMAzb4SGhibMatRpI0_ASQVGM=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.963724+00 2025-12-09 10:14:38.963728+00 2765 22A-95单#D SPMX-20240815297879 \N \N \N 1 \N [{"file_id": "7f4efe8b-ad43-4293-85bf-5cb0fb1f2706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19e55f7e930450d97976816f9afc84e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19e55f7e930450d97976816f9afc84e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19e55f7e930450d97976816f9afc84e.jpg", "file_size": 7964, "is_delete": false, "file_type": 1, "original_file_name": "22A-95单#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19e55f7e930450d97976816f9afc84e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sx5Iz17Eif-jC4huXWUAusuLBck=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.964683+00 2025-12-09 10:14:38.964688+00 2766 DH001#粉红点 SPMX-20240815297881 \N \N \N 1 \N [{"file_id": "0668cba7-4f17-4540-bf70-a24980c12803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2271585f1448b68af9b0fbe67e3385.jpg", "file_size": 23940, "is_delete": false, "file_type": 1, "original_file_name": "DH001#粉红点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2271585f1448b68af9b0fbe67e3385.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fzSFQZmY4qlB1KMwK3ojIw_5Mbg=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.965646+00 2025-12-09 10:14:38.965649+00 2767 HSDC2066#蓝色净色批布 SPMX-20240815297886 \N \N \N 1 \N [{"file_id": "6bdc037b-0779-4304-b126-652bed52e5a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48527486fb15494c891c233cba819ad6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48527486fb15494c891c233cba819ad6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48527486fb15494c891c233cba819ad6.jpg", "file_size": 5218, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色净色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48527486fb15494c891c233cba819ad6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZs1ZgcTjF0laUsuETsz4O4g4jw=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.966602+00 2025-12-09 10:14:38.966606+00 2768 -13#灰色L码 SPMX-20240815297884 \N \N \N 1 \N [{"file_id": "835d83d7-e75d-4156-b841-5b22acbc17b7", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "0cf3344af5424f018a5a6e79d66a7c32.jpg", "file_size": 75299, "is_delete": false, "file_type": 1, "original_file_name": "aO6X0Z5L9q414L6Pco1FcKbQdEa1d83Hdi7y3Mc9755VcD4N4Y3z6qbIcY1ncLd8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/0cf3344af5424f018a5a6e79d66a7c32.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOXyupdRkz-FFTa_-x_bEVXCTnM=", "createTime": "2024-11-21 13:37:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.967584+00 2025-12-09 10:14:38.967588+00 2769 C208#玫红净色 SPMX-20240815297890 \N \N \N 1 \N [{"file_id": "c176cdbe-edad-46fe-b880-b0c1a163c74e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546f23b7511641c38e444c15f11fe3d8.jpg", "file_size": 7971, "is_delete": false, "file_type": 1, "original_file_name": "C208#玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546f23b7511641c38e444c15f11fe3d8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq5K1KJrQD3sz1z5GV6BIkyZ0Wo=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.968528+00 2025-12-09 10:14:38.968531+00 2770 JS0104-A12#浅粉底裙子版本 SPMX-20240815297880 \N \N \N 1 \N [{"file_id": "3b8eb120-6356-450d-921b-9166912c70b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91028b4a2da64bfc8d3c568152d07a4c.jpg", "file_size": 15806, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#浅粉底裙子版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91028b4a2da64bfc8d3c568152d07a4c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XlWaYonQrVm-a6wONzdDWmqXNHc=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.969498+00 2025-12-09 10:14:38.969502+00 2771 FHPKDK-批布063-1 SPMX-20240815297883 \N \N \N 1 \N [{"file_id": "04498812-e913-4ef0-8c03-712f1b9ce8b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f09e03c8470448b846a4091b42074b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f09e03c8470448b846a4091b42074b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f09e03c8470448b846a4091b42074b0.jpg", "file_size": 61312, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f09e03c8470448b846a4091b42074b0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKOGRTzndz18K73kcp9UolOiTT8=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.970469+00 2025-12-09 10:14:38.970473+00 2772 C208#玫红 SPMX-20240815297878 \N \N \N 1 \N [{"file_id": "0eb6a597-306e-4021-8bb4-9571bf5d8bf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6c846a921de4488a2f4649c96148e9f.jpg", "file_size": 13013, "is_delete": false, "file_type": 1, "original_file_name": "C208#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6c846a921de4488a2f4649c96148e9f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IXFaCFapJUgy1PufFohW5AizKKE=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.971463+00 2025-12-09 10:14:38.971467+00 2773 1039#浅粉色 SPMX-20240815297887 \N \N \N 1 \N [{"file_id": "dc8e8d7c-213a-4c9e-829c-557b50cb0ff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "file_size": 13595, "is_delete": false, "file_type": 1, "original_file_name": "1039#浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d68fbdc8c9f472db40a9bf1d22c1f87.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:717oETWZPGDt-9PM36La-knxlp4=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.972428+00 2025-12-09 10:14:38.972432+00 2774 LZ1173#上身2号色 SPMX-20240815297885 \N \N \N 1 \N [{"file_id": "231f7392-0e0b-43a3-8497-13500f265d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "file_size": 12081, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ba3d14b84b49ac8a12d8f65c728ad3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LbyfK_AelkCe0n2_WP5GGOStB0=", "createTime": "2024-08-15 14:37:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.973383+00 2025-12-09 10:14:38.973387+00 2775 80018#短袖子 SPMX-20240815297894 \N \N \N 1 \N [{"file_id": "6091f88f-51da-44d2-8cde-ae8654d7ef72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c066ff1d84749e9b58ca718ddb71d46.jpg", "file_size": 24895, "is_delete": false, "file_type": 1, "original_file_name": "80018#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c066ff1d84749e9b58ca718ddb71d46.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8g8VaUCSQ7kQClcQElUCedt3K8=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.974347+00 2025-12-09 10:14:38.974351+00 2776 -LJX-D3399#黑底黄 SPMX-20240815297895 \N \N \N 1 \N [{"file_id": "21857be4-cd1f-4d54-af33-5bea1d39479e", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "24b2034fbfae4e54983fd487883f07db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "24b2034fbfae4e54983fd487883f07db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "24b2034fbfae4e54983fd487883f07db.jpg", "file_size": 90205, "is_delete": false, "file_type": 1, "original_file_name": "eRbZ9O2k0d550d5P6e3l3Hfda23f1B2I3T3u91dLdQ2O9jdU2t10fEdX5JaXcC1e.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/24b2034fbfae4e54983fd487883f07db.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qb6akYonNLyli2ZZaZLHsNhR9jU=", "createTime": "2024-11-21 13:37:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.975319+00 2025-12-09 10:14:38.975323+00 2777 HSDC2066#蓝色领子 SPMX-20240815297899 \N \N \N 1 \N [{"file_id": "d3714fb8-c122-47ef-9594-143671c6d560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eed0bf4844724e8998f94e0bce41419b.jpg", "file_size": 22459, "is_delete": false, "file_type": 1, "original_file_name": "HSDC2066#蓝色领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eed0bf4844724e8998f94e0bce41419b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK303ZzW69rwfXQs7guqmwo3xcE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.976276+00 2025-12-09 10:14:38.97628+00 2778 22A-9单#A SPMX-20240815297898 \N \N \N 1 \N [{"file_id": "1a3c3708-883d-4fad-873f-c6372ba8db0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646c134668374088acecfade34c0add8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646c134668374088acecfade34c0add8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646c134668374088acecfade34c0add8.jpg", "file_size": 8915, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646c134668374088acecfade34c0add8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCZEwwzJTdRpR-rYhkB4IHR3idU=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.977245+00 2025-12-09 10:14:38.977249+00 2779 JS0104-A12#浅蓝底裙子版本 SPMX-20240815297891 \N \N \N 1 \N [{"file_id": "6970c6b2-1b7d-4588-adbe-9310dd1d222f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cb66f4f287f497bb5c3333136b3f987.jpg", "file_size": 23426, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#浅蓝底裙子版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cb66f4f287f497bb5c3333136b3f987.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuS6iSrbdPo9SIKSSekohD3fDc0=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.978205+00 2025-12-09 10:14:38.978209+00 2780 LHJ1160#杏色 SPMX-20240815297900 \N \N \N 1 \N [{"file_id": "99494c6e-493c-4c1b-8343-5460d35844e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f15edd69ed4e918a58144fec3f5419.jpg", "file_size": 10552, "is_delete": false, "file_type": 1, "original_file_name": "LHJ1160#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f15edd69ed4e918a58144fec3f5419.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL5IYbksy88HrEuOLHZFoPKONp0=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.979171+00 2025-12-09 10:14:38.979175+00 2781 LZ1173#上身4号色 SPMX-20240815297902 \N \N \N 1 \N [{"file_id": "ce301e39-369f-4b5b-ad55-0d18bbf28892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372e15142c924e6f93fc7b769c1e00e7.jpg", "file_size": 13162, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372e15142c924e6f93fc7b769c1e00e7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5QpY0kydjMg93fQW64eN3yBG7c=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.980232+00 2025-12-09 10:14:38.980237+00 2782 DH001#蒲公英 SPMX-20240815297892 \N \N \N 1 \N [{"file_id": "c8bbdfab-c5fc-4453-993f-7921ae617d65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afc48e1d1c3148bfb6c356a583ac9b94.jpg", "file_size": 15686, "is_delete": false, "file_type": 1, "original_file_name": "DH001#蒲公英.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afc48e1d1c3148bfb6c356a583ac9b94.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMACzxyClZ3MVCczQ1qVRfPRpTM=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.981228+00 2025-12-09 10:14:38.981231+00 2783 LZ1173#上身3号色 SPMX-20240815297893 \N \N \N 1 \N [{"file_id": "6b6ec008-167c-4ddd-9c91-58779732114a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2e9518355964251b6d86351edc296fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2e9518355964251b6d86351edc296fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2e9518355964251b6d86351edc296fa.jpg", "file_size": 12640, "is_delete": false, "file_type": 1, "original_file_name": "LZ1173#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2e9518355964251b6d86351edc296fa.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cPe2vlyQTQ1wCd5BKuEnipaKug=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.982196+00 2025-12-09 10:14:38.9822+00 2784 JS0104-A12#绿色 SPMX-20240815297904 \N \N \N 1 \N [{"file_id": "389c60bf-1b7d-46df-a4f8-7397f425156e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd64d2d5fb524993851e2600f852756f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd64d2d5fb524993851e2600f852756f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd64d2d5fb524993851e2600f852756f.jpg", "file_size": 7225, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A12#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd64d2d5fb524993851e2600f852756f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAJOt8EzXZOV36T3MLsZQFDrOOk=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.983182+00 2025-12-09 10:14:38.983186+00 2785 FHPKDK-批布063-2 SPMX-20240815297896 \N \N \N 1 \N [{"file_id": "d9365daa-5b72-44a9-953f-7b434ed13c9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a0626761414981906ce6c3b8ddd15a.jpg", "file_size": 49709, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a0626761414981906ce6c3b8ddd15a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jVFv0bp_HVgiv9U1sN76anOMfE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.984218+00 2025-12-09 10:14:38.984222+00 2786 C208#紫色 SPMX-20240815297901 \N \N \N 1 \N [{"file_id": "9d937c55-49b4-46e4-99a6-cb45022ea8bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e21eacf4e07c40cda6f69bb55509200d.jpg", "file_size": 13033, "is_delete": false, "file_type": 1, "original_file_name": "C208#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e21eacf4e07c40cda6f69bb55509200d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsiS_qYzhhbnvv-jzcWXl3sFwgI=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.98524+00 2025-12-09 10:14:38.985244+00 2787 DH001#西瓜 SPMX-20240815297903 \N \N \N 1 \N [{"file_id": "1d928c98-2e82-4b1c-9550-522ae620b440", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f59905055354b44bccef466f2e51b9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f59905055354b44bccef466f2e51b9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f59905055354b44bccef466f2e51b9a.jpg", "file_size": 9598, "is_delete": false, "file_type": 1, "original_file_name": "DH001#西瓜.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f59905055354b44bccef466f2e51b9a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywNxhD0QGAdMyjBDgwPEkmYtqhE=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.9862+00 2025-12-09 10:14:38.986204+00 2788 1039#浅蓝色 SPMX-20240815297897 \N \N \N 1 \N [{"file_id": "a51ce6b2-b348-4080-8a2f-0b71851d5c0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "file_size": 14742, "is_delete": false, "file_type": 1, "original_file_name": "1039#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13e8c3e041ae46ed93c4a5e7ea56f46d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_zyDD37QfUTwQqUhIvUssLeyOo=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.987161+00 2025-12-09 10:14:38.987166+00 2789 FHPKDK-批布063-4 SPMX-20240815297906 \N \N \N 1 \N [{"file_id": "86b56799-c963-4763-ba9c-ef6eed7263e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09c1110489c14df1933c5cd4071bd2bb.jpg", "file_size": 51581, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09c1110489c14df1933c5cd4071bd2bb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxfJD71Zd__Pu-01Fgj1VDPFmps=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.988146+00 2025-12-09 10:14:38.98815+00 2790 HSH001#D枣红 SPMX-20240815297910 \N \N \N 1 \N [{"file_id": "5ea82c73-726d-40a6-8463-8c029211b007", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c3c7e726b8b42e48429e07632a112a9.jpg", "file_size": 20541, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#D枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c3c7e726b8b42e48429e07632a112a9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTI4m-K74xSklRD94pWtK4K3ZYM=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.989101+00 2025-12-09 10:14:38.989105+00 2791 LHJ1160#浅蓝 SPMX-20240815297911 \N \N \N 1 \N [{"file_id": "b9761a54-46c9-44a9-ae60-ce793b8fed61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4350cc8fea58439ab62a81fecb9f4f60.jpg", "file_size": 20027, "is_delete": false, "file_type": 1, "original_file_name": "LHJ1160#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4350cc8fea58439ab62a81fecb9f4f60.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjl4GfMzUENwP892o4u2o4Bxpmc=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.990063+00 2025-12-09 10:14:38.990067+00 2792 80019#短袖上衣 SPMX-20240815297905 \N \N \N 1 \N [{"file_id": "2c439d0d-f979-4311-8b8d-4158bed3a4ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04e222a7d51048ea916ba9451f2a8e2a.jpg", "file_size": 23847, "is_delete": false, "file_type": 1, "original_file_name": "80019#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04e222a7d51048ea916ba9451f2a8e2a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HURyEj7misxgn3S0_jrAcmKDuu8=", "createTime": "2024-08-15 14:37:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.991014+00 2025-12-09 10:14:38.991018+00 2793 1039#白色 SPMX-20240815297908 \N \N \N 1 \N [{"file_id": "84e4c49a-b7ed-44b9-bf8b-43d7e9f90322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38bc310cf5d8426caa950e125ede5dd0.jpg", "file_size": 13145, "is_delete": false, "file_type": 1, "original_file_name": "1039#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38bc310cf5d8426caa950e125ede5dd0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSy_te6GnWZI1fRyHa8K2BPcCtw=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.991985+00 2025-12-09 10:14:38.991989+00 2794 22A-9单#B SPMX-20240815297909 \N \N \N 1 \N [{"file_id": "c8a9084c-6a89-495e-aa9e-889fd61527ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c70b2257ae5e4903b6cd00906f907f3e.jpg", "file_size": 15927, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c70b2257ae5e4903b6cd00906f907f3e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixKBSzZvNHkuTkW0ZaL7UBBkEZ0=", "createTime": "2024-08-15 14:37:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.992952+00 2025-12-09 10:14:38.992956+00 2795 JS0104-A13#LWQ15 SPMX-20240815297915 \N \N \N 1 \N [{"file_id": "d20a1d05-7d7e-4224-8a12-eb0821d936bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a59b221bb4db46cfb50d286ca428878d.jpg", "file_size": 11997, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A13#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a59b221bb4db46cfb50d286ca428878d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkFFPFjfF_UYCh7ovuNVkDJj0Nw=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.993923+00 2025-12-09 10:14:38.993928+00 2796 DH001#豹纹 SPMX-20240815297912 \N \N \N 1 \N [{"file_id": "d47b598a-fb76-4f62-9d5e-1601c718f305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cdb346f46834d93b136b80d3c3242ab.jpg", "file_size": 24783, "is_delete": false, "file_type": 1, "original_file_name": "DH001#豹纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cdb346f46834d93b136b80d3c3242ab.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHc9SMuaykhWBPQBg5qmiIJb7C4=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.99493+00 2025-12-09 10:14:38.994934+00 2797 1039FWF#-1 SPMX-20240815297920 \N \N \N 1 \N [{"file_id": "3233b9a4-858f-410c-b922-0bd6b05f549a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c071358ba70248fca78c623b2d7c6183.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c071358ba70248fca78c623b2d7c6183.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c071358ba70248fca78c623b2d7c6183.jpg", "file_size": 18656, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c071358ba70248fca78c623b2d7c6183.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRuFonfe_Q3CiVp9jWCkan21UUM=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.999861+00 2025-12-09 10:14:38.999865+00 2802 HSH001#D白 SPMX-20240815297917 \N \N \N 1 \N [{"file_id": "bab82dfa-a295-4d3a-887e-1ae0dcc02a58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59f67674f26348bfbc20c9e7c3d56f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59f67674f26348bfbc20c9e7c3d56f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59f67674f26348bfbc20c9e7c3d56f15.jpg", "file_size": 21623, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#D白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f67674f26348bfbc20c9e7c3d56f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f67674f26348bfbc20c9e7c3d56f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f67674f26348bfbc20c9e7c3d56f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59f67674f26348bfbc20c9e7c3d56f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59f67674f26348bfbc20c9e7c3d56f15.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:suSpqYheA3Mo9OOHLdDSpQ9GseY=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.995895+00 2025-12-09 10:14:38.9959+00 2798 -TT21037#正身粉色L码 SPMX-20240815297918 \N \N \N 1 \N [{"file_id": "ad919c69-07a9-4f52-8a9f-a2f5a8a633dd", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "7e207524336349b3846a1933c57f2fa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "7e207524336349b3846a1933c57f2fa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "7e207524336349b3846a1933c57f2fa0.jpg", "file_size": 55601, "is_delete": false, "file_type": 1, "original_file_name": "4zag8G6YeW6adw9S1Ran6nfdbTd45GbWbqfh075tbD1v6hfa5h7j4O921Uet4ceA.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/7e207524336349b3846a1933c57f2fa0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-l2NGCGLE0stUMu_GpNhk7AOqe8=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.996969+00 2025-12-09 10:14:38.996973+00 2799 C208#紫色净色 SPMX-20240815297913 \N \N \N 1 \N [{"file_id": "afc85235-a2a7-412d-bdcf-fa6fcf94ec09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13980d11a1f54648bccfaa645b060381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13980d11a1f54648bccfaa645b060381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13980d11a1f54648bccfaa645b060381.jpg", "file_size": 8138, "is_delete": false, "file_type": 1, "original_file_name": "C208#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13980d11a1f54648bccfaa645b060381.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv6h6gQeW4-15zWxUfrI-MSiFuM=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.997933+00 2025-12-09 10:14:38.997937+00 2800 LZ1174#上身1号色 SPMX-20240815297916 \N \N \N 1 \N [{"file_id": "c2d2044d-1c82-4400-9377-753593157852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3341cc32ddcc43259097c3180f77ebe8.jpg", "file_size": 12414, "is_delete": false, "file_type": 1, "original_file_name": "LZ1174#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3341cc32ddcc43259097c3180f77ebe8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oSbkDnxyqo-B3H7pdGeX-oxqdE=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:38.998908+00 2025-12-09 10:14:38.998912+00 2801 22A-9单#C SPMX-20240815297919 \N \N \N 1 \N [{"file_id": "1388c58b-12a8-4f22-9c5b-c209a08480d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "660d8610366f4920b239d9bf52277e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "660d8610366f4920b239d9bf52277e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "660d8610366f4920b239d9bf52277e21.jpg", "file_size": 7329, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660d8610366f4920b239d9bf52277e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660d8610366f4920b239d9bf52277e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660d8610366f4920b239d9bf52277e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/660d8610366f4920b239d9bf52277e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/660d8610366f4920b239d9bf52277e21.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kATrnntEBNVriXTxvF8SU1Zdjmw=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.000842+00 2025-12-09 10:14:39.000846+00 2803 80019#短袖子 SPMX-20240815297914 \N \N \N 1 \N [{"file_id": "267439f1-cebc-45d7-a35a-e4fbd9921552", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47cd5306764743d6af852e068ec80518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47cd5306764743d6af852e068ec80518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47cd5306764743d6af852e068ec80518.jpg", "file_size": 22813, "is_delete": false, "file_type": 1, "original_file_name": "80019#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cd5306764743d6af852e068ec80518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cd5306764743d6af852e068ec80518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cd5306764743d6af852e068ec80518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47cd5306764743d6af852e068ec80518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47cd5306764743d6af852e068ec80518.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faCX_ks0RJpkab4iW0GJXLnSIU4=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.001818+00 2025-12-09 10:14:39.001822+00 2804 LHJ2117#1#黑 SPMX-20240815297921 \N \N \N 1 \N [{"file_id": "2eb25998-48e8-4ff3-a8fb-8b9cb21d9866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17d69d6c799643ba90631c138491b2fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17d69d6c799643ba90631c138491b2fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17d69d6c799643ba90631c138491b2fc.jpg", "file_size": 16131, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2117#1#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d69d6c799643ba90631c138491b2fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d69d6c799643ba90631c138491b2fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d69d6c799643ba90631c138491b2fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17d69d6c799643ba90631c138491b2fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17d69d6c799643ba90631c138491b2fc.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ySj9BdF1dR3L-J89xITBwMVOA1w=", "createTime": "2024-08-15 14:37:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.002798+00 2025-12-09 10:14:39.002801+00 2805 FHPKDK-批布063-5 SPMX-20240815297924 \N \N \N 1 \N [{"file_id": "55a160de-29a9-438c-a905-3a3767e0debe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc53d5459c4a4f09a1956ae84e9966a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc53d5459c4a4f09a1956ae84e9966a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc53d5459c4a4f09a1956ae84e9966a8.jpg", "file_size": 56968, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布063-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc53d5459c4a4f09a1956ae84e9966a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc53d5459c4a4f09a1956ae84e9966a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc53d5459c4a4f09a1956ae84e9966a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc53d5459c4a4f09a1956ae84e9966a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc53d5459c4a4f09a1956ae84e9966a8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HsupPMqlzaFQKAyIrudOAyC1NRA=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.003749+00 2025-12-09 10:14:39.003752+00 2806 8002#咖色批布文件共用 SPMX-20240815297926 \N \N \N 1 \N [{"file_id": "c206eea8-4a8f-413b-87b1-02a3f051c430", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7c611afb0994695a5b45d6b2c5e4888.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7c611afb0994695a5b45d6b2c5e4888.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7c611afb0994695a5b45d6b2c5e4888.jpg", "file_size": 39424, "is_delete": false, "file_type": 1, "original_file_name": "8002#咖色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c611afb0994695a5b45d6b2c5e4888.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c611afb0994695a5b45d6b2c5e4888.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c611afb0994695a5b45d6b2c5e4888.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7c611afb0994695a5b45d6b2c5e4888.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7c611afb0994695a5b45d6b2c5e4888.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhoXUIPCzcmNCDiA_gkJDAwTADY=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.004818+00 2025-12-09 10:14:39.004823+00 2807 -TT21037#正身粉色XL码 SPMX-20240815297928 \N \N \N 1 \N [{"file_id": "d4ece3e8-460c-4545-b39d-de1a1f131d16", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "feb9fedfe22b46f8b02a43a4ac6219ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "feb9fedfe22b46f8b02a43a4ac6219ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "feb9fedfe22b46f8b02a43a4ac6219ca.jpg", "file_size": 55287, "is_delete": false, "file_type": 1, "original_file_name": "13dV1j8ga5935wcx5i7YbUcZ5sba2i278KbF47en5aeUc9c51L315O92fl9WbJbx.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/feb9fedfe22b46f8b02a43a4ac6219ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/feb9fedfe22b46f8b02a43a4ac6219ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/feb9fedfe22b46f8b02a43a4ac6219ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/feb9fedfe22b46f8b02a43a4ac6219ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/feb9fedfe22b46f8b02a43a4ac6219ca.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRtuzTKJwCSt5y9aliVPDAISQTc=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.006089+00 2025-12-09 10:14:39.006093+00 2808 HSH001#D蓝 SPMX-20240815297929 \N \N \N 1 \N [{"file_id": "5f8e9892-4364-4808-9adc-11fd7d03107c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0c79af5193a486fbd304dd4798c773b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0c79af5193a486fbd304dd4798c773b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0c79af5193a486fbd304dd4798c773b.jpg", "file_size": 21885, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#D蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c79af5193a486fbd304dd4798c773b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c79af5193a486fbd304dd4798c773b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c79af5193a486fbd304dd4798c773b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0c79af5193a486fbd304dd4798c773b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0c79af5193a486fbd304dd4798c773b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2-TGC0QhjP9wWbYLatSrtuemao=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.007109+00 2025-12-09 10:14:39.007112+00 2809 JS0104-A13#WJC22 SPMX-20240815297925 \N \N \N 1 \N [{"file_id": "f376ffd4-9a84-4066-8634-37736603f6a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d0685d2c53a40d39eaf8fe930831bf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d0685d2c53a40d39eaf8fe930831bf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d0685d2c53a40d39eaf8fe930831bf9.jpg", "file_size": 13355, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0685d2c53a40d39eaf8fe930831bf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0685d2c53a40d39eaf8fe930831bf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0685d2c53a40d39eaf8fe930831bf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d0685d2c53a40d39eaf8fe930831bf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d0685d2c53a40d39eaf8fe930831bf9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtFaAEJRdqYl-kCcqs-SELKtxDY=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.008115+00 2025-12-09 10:14:39.008119+00 2810 LZ1174#上身2号色 SPMX-20240815297927 \N \N \N 1 \N [{"file_id": "3856fea6-0de9-490b-9804-ea70ee8c981c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6ea42789b74a1b858a1ea60ef4e822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6ea42789b74a1b858a1ea60ef4e822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6ea42789b74a1b858a1ea60ef4e822.jpg", "file_size": 12198, "is_delete": false, "file_type": 1, "original_file_name": "LZ1174#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ea42789b74a1b858a1ea60ef4e822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ea42789b74a1b858a1ea60ef4e822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ea42789b74a1b858a1ea60ef4e822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6ea42789b74a1b858a1ea60ef4e822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6ea42789b74a1b858a1ea60ef4e822.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Sa3GswLgljNL3N1g6ybgSBWAbs=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.009098+00 2025-12-09 10:14:39.009103+00 2811 C208#绿色 SPMX-20240815297923 \N \N \N 1 \N [{"file_id": "1a6870bc-207b-4e2a-8746-f6198ab7c440", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a70654f8aa042bd8702de48237cd596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a70654f8aa042bd8702de48237cd596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a70654f8aa042bd8702de48237cd596.jpg", "file_size": 12563, "is_delete": false, "file_type": 1, "original_file_name": "C208#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a70654f8aa042bd8702de48237cd596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a70654f8aa042bd8702de48237cd596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a70654f8aa042bd8702de48237cd596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a70654f8aa042bd8702de48237cd596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a70654f8aa042bd8702de48237cd596.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BILwPXATELBxDASbey-ZEqkueVM=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.0101+00 2025-12-09 10:14:39.010104+00 2812 DH001FW#VS-D3 SPMX-20240815297922 \N \N \N 1 \N [{"file_id": "74e306ff-c612-4b40-a2ba-f7c52a2d5e88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4921e0a8f2ce43ff8e49367685f008d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4921e0a8f2ce43ff8e49367685f008d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4921e0a8f2ce43ff8e49367685f008d4.jpg", "file_size": 33077, "is_delete": false, "file_type": 1, "original_file_name": "DH001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4921e0a8f2ce43ff8e49367685f008d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4921e0a8f2ce43ff8e49367685f008d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4921e0a8f2ce43ff8e49367685f008d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4921e0a8f2ce43ff8e49367685f008d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4921e0a8f2ce43ff8e49367685f008d4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRJ1volA1hyjyjyauXzgYoR6Shs=", "createTime": "2024-08-15 14:37:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.011089+00 2025-12-09 10:14:39.011094+00 2813 8002#宝蓝底杏 SPMX-20240815297937 \N \N \N 1 \N [{"file_id": "1b298872-e0f5-43e0-a2ce-adf17c011846", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b24f6c688ca64dcb8a88e716408770aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b24f6c688ca64dcb8a88e716408770aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b24f6c688ca64dcb8a88e716408770aa.jpg", "file_size": 19375, "is_delete": false, "file_type": 1, "original_file_name": "8002#宝蓝底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f6c688ca64dcb8a88e716408770aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f6c688ca64dcb8a88e716408770aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f6c688ca64dcb8a88e716408770aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b24f6c688ca64dcb8a88e716408770aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b24f6c688ca64dcb8a88e716408770aa.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhVsIlmFPW1ZqZHOPTa1-pGUvt4=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.012095+00 2025-12-09 10:14:39.012099+00 2814 C208#绿色净色 SPMX-20240815297932 \N \N \N 1 \N [{"file_id": "b679d2dc-d7c9-4229-b245-6cc9261ef633", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be4088981774ae2be9bf3e16fc97a84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be4088981774ae2be9bf3e16fc97a84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be4088981774ae2be9bf3e16fc97a84.jpg", "file_size": 7970, "is_delete": false, "file_type": 1, "original_file_name": "C208#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be4088981774ae2be9bf3e16fc97a84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be4088981774ae2be9bf3e16fc97a84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be4088981774ae2be9bf3e16fc97a84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be4088981774ae2be9bf3e16fc97a84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be4088981774ae2be9bf3e16fc97a84.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IzlN1A8ClNYZ4gmczUlcHfWERes=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.013063+00 2025-12-09 10:14:39.013067+00 2815 1039FWF#-2 SPMX-20240815297930 \N \N \N 1 \N [{"file_id": "77142225-ad7b-4b66-a80e-3426facb592e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f324392420c487dbe3a0dd81521ebb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f324392420c487dbe3a0dd81521ebb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f324392420c487dbe3a0dd81521ebb9.jpg", "file_size": 17382, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f324392420c487dbe3a0dd81521ebb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f324392420c487dbe3a0dd81521ebb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f324392420c487dbe3a0dd81521ebb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f324392420c487dbe3a0dd81521ebb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f324392420c487dbe3a0dd81521ebb9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10UYjSnAGJRThgQ0XjmFMAGK4_g=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.014027+00 2025-12-09 10:14:39.014031+00 2816 22A-9单#D SPMX-20240815297931 \N \N \N 1 \N [{"file_id": "2faec344-bb68-4f87-8ffb-736ae97b88f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65a508b8430a4b48a0517dd981183879.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65a508b8430a4b48a0517dd981183879.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65a508b8430a4b48a0517dd981183879.jpg", "file_size": 8243, "is_delete": false, "file_type": 1, "original_file_name": "22A-9单#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a508b8430a4b48a0517dd981183879.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a508b8430a4b48a0517dd981183879.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a508b8430a4b48a0517dd981183879.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65a508b8430a4b48a0517dd981183879.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65a508b8430a4b48a0517dd981183879.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLrLDhgc0ySb3f_WKvv25E0JREg=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.015005+00 2025-12-09 10:14:39.015009+00 2817 FHPKDK-批布064-1 SPMX-20240815297934 \N \N \N 1 \N [{"file_id": "026cf663-d970-4897-af4a-fded5586ec23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c16eee892dc45768da12045bcd215ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c16eee892dc45768da12045bcd215ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c16eee892dc45768da12045bcd215ae.jpg", "file_size": 63359, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布064-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c16eee892dc45768da12045bcd215ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c16eee892dc45768da12045bcd215ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c16eee892dc45768da12045bcd215ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c16eee892dc45768da12045bcd215ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c16eee892dc45768da12045bcd215ae.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9HalhhQiIdz1AxyRTPXlAS844Q=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.01599+00 2025-12-09 10:14:39.015994+00 2818 DH001FWE#VS-D3 SPMX-20240815297935 \N \N \N 1 \N [{"file_id": "4072e54e-ca0e-49c3-ab40-b7323628a6d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1711440f921241a68ca9b78500d18084.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1711440f921241a68ca9b78500d18084.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1711440f921241a68ca9b78500d18084.jpg", "file_size": 24108, "is_delete": false, "file_type": 1, "original_file_name": "DH001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1711440f921241a68ca9b78500d18084.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1711440f921241a68ca9b78500d18084.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1711440f921241a68ca9b78500d18084.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1711440f921241a68ca9b78500d18084.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1711440f921241a68ca9b78500d18084.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5BxPcXxeveiJ0vZ5VmxF2tx7VI=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.016953+00 2025-12-09 10:14:39.016957+00 2819 LHJ2118FW#卡其底黑点VS-D3 SPMX-20240815297933 \N \N \N 1 \N [{"file_id": "90db50b1-ab79-4c23-9036-e0f8b6aa7a1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93fcc97fe6eb4af5b6f76115f8eead0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93fcc97fe6eb4af5b6f76115f8eead0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93fcc97fe6eb4af5b6f76115f8eead0e.jpg", "file_size": 12729, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2118FW#卡其底黑点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fcc97fe6eb4af5b6f76115f8eead0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fcc97fe6eb4af5b6f76115f8eead0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fcc97fe6eb4af5b6f76115f8eead0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93fcc97fe6eb4af5b6f76115f8eead0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93fcc97fe6eb4af5b6f76115f8eead0e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQcFO_wj3yohDhkwm6a_rlrN89Q=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.017929+00 2025-12-09 10:14:39.017933+00 2820 JS0104-A14#LWQ15 SPMX-20240815297936 \N \N \N 1 \N [{"file_id": "c1a94cfd-e4be-4e88-978c-5e925eb2bb1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3c42747070f4e2bb758bb532cef3e25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3c42747070f4e2bb758bb532cef3e25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3c42747070f4e2bb758bb532cef3e25.jpg", "file_size": 14761, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A14#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3c42747070f4e2bb758bb532cef3e25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3c42747070f4e2bb758bb532cef3e25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3c42747070f4e2bb758bb532cef3e25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3c42747070f4e2bb758bb532cef3e25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3c42747070f4e2bb758bb532cef3e25.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrGxhaVF-FBV_88hCNkbc0d3irM=", "createTime": "2024-08-15 14:37:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.018917+00 2025-12-09 10:14:39.018921+00 2821 LZ1174#上身3号色 SPMX-20240815297938 \N \N \N 1 \N [{"file_id": "89499126-d84b-442f-96f5-60bdadba5f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ee1bb0feba47408e1d59406d0c2f54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ee1bb0feba47408e1d59406d0c2f54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ee1bb0feba47408e1d59406d0c2f54.jpg", "file_size": 11189, "is_delete": false, "file_type": 1, "original_file_name": "LZ1174#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee1bb0feba47408e1d59406d0c2f54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee1bb0feba47408e1d59406d0c2f54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee1bb0feba47408e1d59406d0c2f54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ee1bb0feba47408e1d59406d0c2f54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ee1bb0feba47408e1d59406d0c2f54.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RImGxpMIvbC0W3kszDwI4XfTL7A=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.019894+00 2025-12-09 10:14:39.019897+00 2822 -一段两件-1月7日-罗小峰套 SPMX-20240815297939 \N \N \N 1 \N [{"file_id": "6ef4be51-632c-4c74-ae13-1d431c22ca1a", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "aacb908b142a4d5cb265a76cb55d7fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "aacb908b142a4d5cb265a76cb55d7fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "aacb908b142a4d5cb265a76cb55d7fad.jpg", "file_size": 14940, "is_delete": false, "file_type": 1, "original_file_name": "dMaFeebd5f5BfJ4Ac9209v5K1i6X3E8M335x9Yeb8laUdg6v1BfS4d090M5V6uaV.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/aacb908b142a4d5cb265a76cb55d7fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/aacb908b142a4d5cb265a76cb55d7fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/aacb908b142a4d5cb265a76cb55d7fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/aacb908b142a4d5cb265a76cb55d7fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/aacb908b142a4d5cb265a76cb55d7fad.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvNlpAU7ZrLrLJQgbiLKw1yoJUw=", "createTime": "2024-11-21 13:37:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.020896+00 2025-12-09 10:14:39.0209+00 2823 22A-单#A SPMX-20240815297943 \N \N \N 1 \N [{"file_id": "0b6ba6d8-b6d4-461f-bea7-3a8a9d5cb00e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b68cd72abd1b4815832dfac84377eed8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b68cd72abd1b4815832dfac84377eed8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b68cd72abd1b4815832dfac84377eed8.jpg", "file_size": 9033, "is_delete": false, "file_type": 1, "original_file_name": "22A-单#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cd72abd1b4815832dfac84377eed8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cd72abd1b4815832dfac84377eed8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cd72abd1b4815832dfac84377eed8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b68cd72abd1b4815832dfac84377eed8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b68cd72abd1b4815832dfac84377eed8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-974vPrHfT_nDvq-YtEJ6YlKeY=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.021869+00 2025-12-09 10:14:39.021873+00 2824 1039FWF#-2净色 SPMX-20240815297942 \N \N \N 1 \N [{"file_id": "cf950cb3-c7b7-4d6e-b8b8-fd5f52fa4bf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f8efc4e1f34256bd134f99c7c014fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f8efc4e1f34256bd134f99c7c014fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f8efc4e1f34256bd134f99c7c014fc.jpg", "file_size": 6443, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-2净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f8efc4e1f34256bd134f99c7c014fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f8efc4e1f34256bd134f99c7c014fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f8efc4e1f34256bd134f99c7c014fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f8efc4e1f34256bd134f99c7c014fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f8efc4e1f34256bd134f99c7c014fc.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPM6jFYSVrQTxDpLUFBHCRpX_cw=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.022863+00 2025-12-09 10:14:39.022867+00 2825 LHJ2118FW#橙底黑点VS-D3 SPMX-20240815297940 \N \N \N 1 \N [{"file_id": "d4b4a669-d65d-4af0-8748-d8e2ec8e5e09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg", "file_size": 14150, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2118FW#橙底黑点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6ff32b9d49e4cb18fd03ee135fe3b2f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vpw1DkWLYGAzaYzycR8invLyE3A=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.023833+00 2025-12-09 10:14:39.023837+00 2826 HSH001#D黑 SPMX-20240815297941 \N \N \N 1 \N [{"file_id": "43e35733-cd6e-4d09-b4c1-342d1b50c984", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0cf1e9902da4e55a51863cc770c44f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0cf1e9902da4e55a51863cc770c44f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0cf1e9902da4e55a51863cc770c44f3.jpg", "file_size": 22399, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#D黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cf1e9902da4e55a51863cc770c44f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cf1e9902da4e55a51863cc770c44f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cf1e9902da4e55a51863cc770c44f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0cf1e9902da4e55a51863cc770c44f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0cf1e9902da4e55a51863cc770c44f3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpLAK8dMaPPd6Rly-eQAFlO2H6Y=", "createTime": "2024-08-15 14:37:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.024835+00 2025-12-09 10:14:39.02484+00 2827 LZ1174#上身4号色 SPMX-20240815297950 \N \N \N 1 \N [{"file_id": "8b34c96c-09d7-4cc6-aa55-a1553d45587a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9972fe880ed49d3b653bf732a45e821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9972fe880ed49d3b653bf732a45e821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9972fe880ed49d3b653bf732a45e821.jpg", "file_size": 11993, "is_delete": false, "file_type": 1, "original_file_name": "LZ1174#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9972fe880ed49d3b653bf732a45e821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9972fe880ed49d3b653bf732a45e821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9972fe880ed49d3b653bf732a45e821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9972fe880ed49d3b653bf732a45e821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9972fe880ed49d3b653bf732a45e821.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBhyz9UxnQsxAsh6Oe0BvGF35Pw=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.025825+00 2025-12-09 10:14:39.025829+00 2828 22A-单#B SPMX-20240815297955 \N \N \N 1 \N [{"file_id": "e21ebd85-f05e-4c0e-a0e2-6f24149cafe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3b01f8b0cb249edb3f064f327b6b5ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3b01f8b0cb249edb3f064f327b6b5ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3b01f8b0cb249edb3f064f327b6b5ee.jpg", "file_size": 15494, "is_delete": false, "file_type": 1, "original_file_name": "22A-单#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b01f8b0cb249edb3f064f327b6b5ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b01f8b0cb249edb3f064f327b6b5ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b01f8b0cb249edb3f064f327b6b5ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3b01f8b0cb249edb3f064f327b6b5ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3b01f8b0cb249edb3f064f327b6b5ee.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0JciyjOTTq_S3Nr_10URTEER6Dk=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.026846+00 2025-12-09 10:14:39.026849+00 2829 8002#浅蓝色2XL SPMX-20240815297944 \N \N \N 1 \N [{"file_id": "9b234e7b-11e4-4a40-99b6-91c9a0576339", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "384b0468c6724a7a8776995b5490bcb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "384b0468c6724a7a8776995b5490bcb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "384b0468c6724a7a8776995b5490bcb4.jpg", "file_size": 76912, "is_delete": false, "file_type": 1, "original_file_name": "8002#浅蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/384b0468c6724a7a8776995b5490bcb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/384b0468c6724a7a8776995b5490bcb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/384b0468c6724a7a8776995b5490bcb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/384b0468c6724a7a8776995b5490bcb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/384b0468c6724a7a8776995b5490bcb4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMWzDb6Djr5GmSVT4MY7cql8tDc=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.02782+00 2025-12-09 10:14:39.027824+00 2830 DH002#白VS-D3 SPMX-20240815297956 \N \N \N 1 \N [{"file_id": "30199b09-3a50-4024-a666-2008cd2ae883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6859d989dae146de91faf866ab008937.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6859d989dae146de91faf866ab008937.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6859d989dae146de91faf866ab008937.jpg", "file_size": 10448, "is_delete": false, "file_type": 1, "original_file_name": "DH002#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6859d989dae146de91faf866ab008937.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6859d989dae146de91faf866ab008937.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6859d989dae146de91faf866ab008937.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6859d989dae146de91faf866ab008937.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6859d989dae146de91faf866ab008937.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kT79vrIqJmqg2xhbzgclTe8Hu-E=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.0288+00 2025-12-09 10:14:39.028804+00 2831 HSH001#白底 SPMX-20240815297953 \N \N \N 1 \N [{"file_id": "589331a8-58eb-43bf-95b1-224959cd012b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71d12834236545328b486ac6feaa7d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71d12834236545328b486ac6feaa7d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71d12834236545328b486ac6feaa7d3a.jpg", "file_size": 12229, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71d12834236545328b486ac6feaa7d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71d12834236545328b486ac6feaa7d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71d12834236545328b486ac6feaa7d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71d12834236545328b486ac6feaa7d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71d12834236545328b486ac6feaa7d3a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KGNRUqxu6pzOzFAnVrtrKElCN4=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.029762+00 2025-12-09 10:14:39.029766+00 2832 JS0104-A14#WJC22 SPMX-20240815297947 \N \N \N 1 \N [{"file_id": "cfc0c680-04dc-4f64-8105-70badb7821c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "979ea990756a440a82845344f2c2db20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "979ea990756a440a82845344f2c2db20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "979ea990756a440a82845344f2c2db20.jpg", "file_size": 12542, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A14#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ea990756a440a82845344f2c2db20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ea990756a440a82845344f2c2db20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ea990756a440a82845344f2c2db20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/979ea990756a440a82845344f2c2db20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/979ea990756a440a82845344f2c2db20.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKfnLAWGyLnCPkvMEqW5cn9U9v0=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.030822+00 2025-12-09 10:14:39.030827+00 2833 1039FWF#-3 SPMX-20240815297954 \N \N \N 1 \N [{"file_id": "73ff72fe-b7fb-4677-993c-5ab8cbc943b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7946c56301240d9a0bea2d55f0ed1e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7946c56301240d9a0bea2d55f0ed1e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7946c56301240d9a0bea2d55f0ed1e7.jpg", "file_size": 17167, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7946c56301240d9a0bea2d55f0ed1e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7946c56301240d9a0bea2d55f0ed1e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7946c56301240d9a0bea2d55f0ed1e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7946c56301240d9a0bea2d55f0ed1e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7946c56301240d9a0bea2d55f0ed1e7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVf-oRbOoV5287SAbPhPEJD0O6k=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.031838+00 2025-12-09 10:14:39.031842+00 2834 DH002#灰色 SPMX-20240815297946 \N \N \N 1 \N [{"file_id": "2f577717-2fbc-4aa9-86d4-661e58fb7a43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f2feaa518f149ccb564ddbbd77779ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f2feaa518f149ccb564ddbbd77779ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f2feaa518f149ccb564ddbbd77779ca.jpg", "file_size": 9247, "is_delete": false, "file_type": 1, "original_file_name": "DH002#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2feaa518f149ccb564ddbbd77779ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2feaa518f149ccb564ddbbd77779ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2feaa518f149ccb564ddbbd77779ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f2feaa518f149ccb564ddbbd77779ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f2feaa518f149ccb564ddbbd77779ca.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vY3N_rgJQd_c1tUsy-9PcPLxhiM=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.032815+00 2025-12-09 10:14:39.032819+00 2835 FHPKDK-批布064-2 SPMX-20240815297948 \N \N \N 1 \N [{"file_id": "82e3c985-490d-47d2-831b-ddb24b18d8c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e076bb2e9bb4f2191c1dc1e490ac442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e076bb2e9bb4f2191c1dc1e490ac442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e076bb2e9bb4f2191c1dc1e490ac442.jpg", "file_size": 50410, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布064-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e076bb2e9bb4f2191c1dc1e490ac442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e076bb2e9bb4f2191c1dc1e490ac442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e076bb2e9bb4f2191c1dc1e490ac442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e076bb2e9bb4f2191c1dc1e490ac442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e076bb2e9bb4f2191c1dc1e490ac442.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cnoTN53S0N70jbk8hYO88Ohgenk=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.033798+00 2025-12-09 10:14:39.033802+00 2836 -菱形麻-1段2件- SPMX-20240815297949 \N \N \N 1 \N [{"file_id": "d57deda0-a226-49c4-a2d4-e3421a542f4b", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "ae9f47f8f3354ba2b13ca488beb087c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "ae9f47f8f3354ba2b13ca488beb087c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "ae9f47f8f3354ba2b13ca488beb087c7.jpg", "file_size": 15252, "is_delete": false, "file_type": 1, "original_file_name": "8a6D4QcA8heI3zaO7f6NcJ5Wb1a17m8H4Dek7p8f7r5g8l6Ma56PdKfn7V2Ldmf5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/ae9f47f8f3354ba2b13ca488beb087c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/ae9f47f8f3354ba2b13ca488beb087c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/ae9f47f8f3354ba2b13ca488beb087c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/ae9f47f8f3354ba2b13ca488beb087c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/ae9f47f8f3354ba2b13ca488beb087c7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQ391jCqvzKc_uTQPahL5OOjNC4=", "createTime": "2024-11-21 13:37:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.034816+00 2025-12-09 10:14:39.03482+00 2837 LHJ2118FW#白底黑点VS-D3 SPMX-20240815297952 \N \N \N 1 \N [{"file_id": "bfce0fa7-3e96-4de3-af8c-343e149d54c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef544c41afab4898aed236b2bfb2eebb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef544c41afab4898aed236b2bfb2eebb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef544c41afab4898aed236b2bfb2eebb.jpg", "file_size": 12888, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2118FW#白底黑点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef544c41afab4898aed236b2bfb2eebb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef544c41afab4898aed236b2bfb2eebb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef544c41afab4898aed236b2bfb2eebb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef544c41afab4898aed236b2bfb2eebb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef544c41afab4898aed236b2bfb2eebb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdbBX_tFaJJsh_w6zyuc05JF9Hk=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.035901+00 2025-12-09 10:14:39.035905+00 2838 C209-C210#墨绿 SPMX-20240815297945 \N \N \N 1 \N [{"file_id": "8f0f1f7c-7f0a-4ed5-bdc0-d1b4bfae1afe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a88aacef92264c129a83a3f4e914c4c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a88aacef92264c129a83a3f4e914c4c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a88aacef92264c129a83a3f4e914c4c2.jpg", "file_size": 26448, "is_delete": false, "file_type": 1, "original_file_name": "C209-C210#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88aacef92264c129a83a3f4e914c4c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88aacef92264c129a83a3f4e914c4c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88aacef92264c129a83a3f4e914c4c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a88aacef92264c129a83a3f4e914c4c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a88aacef92264c129a83a3f4e914c4c2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_AIMNp0g7AF-ugxMeuC6qXtZ0OU=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.036953+00 2025-12-09 10:14:39.036958+00 2839 22A-单#C SPMX-20240815297964 \N \N \N 1 \N [{"file_id": "289f452a-5909-4753-bca8-3c9d47efa61e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6021729b82c4d72bf31cac6b40dcf5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6021729b82c4d72bf31cac6b40dcf5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6021729b82c4d72bf31cac6b40dcf5e.jpg", "file_size": 7271, "is_delete": false, "file_type": 1, "original_file_name": "22A-单#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6021729b82c4d72bf31cac6b40dcf5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6021729b82c4d72bf31cac6b40dcf5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6021729b82c4d72bf31cac6b40dcf5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6021729b82c4d72bf31cac6b40dcf5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6021729b82c4d72bf31cac6b40dcf5e.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWopgdX6mI0nqE2vuYED5Jn4HMk=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.037991+00 2025-12-09 10:14:39.037995+00 2840 JS0104-A15#LWQ15 SPMX-20240815297958 \N \N \N 1 \N [{"file_id": "47b3b016-297b-4f0c-9ca9-936b5752ad78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b96ff11b38e44bd8ad6f987103f8958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b96ff11b38e44bd8ad6f987103f8958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b96ff11b38e44bd8ad6f987103f8958.jpg", "file_size": 10471, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A15#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b96ff11b38e44bd8ad6f987103f8958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b96ff11b38e44bd8ad6f987103f8958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b96ff11b38e44bd8ad6f987103f8958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b96ff11b38e44bd8ad6f987103f8958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b96ff11b38e44bd8ad6f987103f8958.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAfY-8LuWgwGQBv8DXnC0x9qZZ8=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.039004+00 2025-12-09 10:14:39.039008+00 2841 C209-C210#枣红 SPMX-20240815297957 \N \N \N 1 \N [{"file_id": "884fe45a-0907-4db7-a03b-7909878ae965", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50da2d2680be452fb2041d1e537eb591.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50da2d2680be452fb2041d1e537eb591.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50da2d2680be452fb2041d1e537eb591.jpg", "file_size": 26446, "is_delete": false, "file_type": 1, "original_file_name": "C209-C210#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50da2d2680be452fb2041d1e537eb591.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50da2d2680be452fb2041d1e537eb591.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50da2d2680be452fb2041d1e537eb591.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50da2d2680be452fb2041d1e537eb591.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50da2d2680be452fb2041d1e537eb591.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QdnXIo9GRHJqR_SrIa4Q1ZZBGsI=", "createTime": "2024-08-15 14:37:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.040149+00 2025-12-09 10:14:39.040153+00 2842 C3423#兰色 SPMX-20240815297960 \N \N \N 1 \N [{"file_id": "528bbec1-9043-4461-b50a-d79bd1b92e43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg", "file_size": 42191, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e77d6ba2d224ebc89ba5c15dcd92e3b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lgM8a36Y45CA_7Kcj_Ae-HuvSs=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.041321+00 2025-12-09 10:14:39.041325+00 2843 1039FWF#-3净色 SPMX-20240815297963 \N \N \N 1 \N [{"file_id": "666de20f-6389-4340-bae5-84256a7f0d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b954bd5c2216471a974c9592d8ffb526.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b954bd5c2216471a974c9592d8ffb526.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b954bd5c2216471a974c9592d8ffb526.jpg", "file_size": 5989, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-3净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b954bd5c2216471a974c9592d8ffb526.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b954bd5c2216471a974c9592d8ffb526.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b954bd5c2216471a974c9592d8ffb526.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b954bd5c2216471a974c9592d8ffb526.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b954bd5c2216471a974c9592d8ffb526.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GvpoatTxSk5VD5qlK-M_SyrcK4=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.042515+00 2025-12-09 10:14:39.042521+00 2844 LHJ2119FW#咖啡底黑点VS-D3 SPMX-20240815297962 \N \N \N 1 \N [{"file_id": "df013236-2237-48b2-9df6-e3a01ed01f0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d32689aaea3e48b0b8ad7c06112e64ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d32689aaea3e48b0b8ad7c06112e64ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d32689aaea3e48b0b8ad7c06112e64ed.jpg", "file_size": 7664, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2119FW#咖啡底黑点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32689aaea3e48b0b8ad7c06112e64ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32689aaea3e48b0b8ad7c06112e64ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32689aaea3e48b0b8ad7c06112e64ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d32689aaea3e48b0b8ad7c06112e64ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d32689aaea3e48b0b8ad7c06112e64ed.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5KvhKvdcUv-Bix9GK9-5pXqres=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.043654+00 2025-12-09 10:14:39.043658+00 2845 JS0104-A15#WJC22 SPMX-20240815297968 \N \N \N 1 \N [{"file_id": "c85384a9-cc5e-4ee5-8c16-28e5cafff229", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba381189caf34f329fb69e9701b073d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba381189caf34f329fb69e9701b073d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba381189caf34f329fb69e9701b073d8.jpg", "file_size": 17217, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A15#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba381189caf34f329fb69e9701b073d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba381189caf34f329fb69e9701b073d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba381189caf34f329fb69e9701b073d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba381189caf34f329fb69e9701b073d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba381189caf34f329fb69e9701b073d8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnjvIk6nrLitdOUxRuS5YY4ISHg=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.04477+00 2025-12-09 10:14:39.044774+00 2846 C209-C210#粉色 SPMX-20240815297969 \N \N \N 1 \N [{"file_id": "35a90c85-3ba6-4a1e-a0b2-a2bed9c95c3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad9b2718d401476cbca9e9df87945813.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad9b2718d401476cbca9e9df87945813.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad9b2718d401476cbca9e9df87945813.jpg", "file_size": 16522, "is_delete": false, "file_type": 1, "original_file_name": "C209-C210#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9b2718d401476cbca9e9df87945813.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9b2718d401476cbca9e9df87945813.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9b2718d401476cbca9e9df87945813.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad9b2718d401476cbca9e9df87945813.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad9b2718d401476cbca9e9df87945813.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vy4enQmo1wmWlkpZW2QKea9nan8=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.045905+00 2025-12-09 10:14:39.04591+00 2847 HSH001#蓝VS-D3 SPMX-20240815297966 \N \N \N 1 \N [{"file_id": "4bde0301-7595-4c93-9826-bac8e1176296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99348fa9a8924819916da36edf5b7255.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99348fa9a8924819916da36edf5b7255.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99348fa9a8924819916da36edf5b7255.jpg", "file_size": 11254, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99348fa9a8924819916da36edf5b7255.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99348fa9a8924819916da36edf5b7255.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99348fa9a8924819916da36edf5b7255.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99348fa9a8924819916da36edf5b7255.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99348fa9a8924819916da36edf5b7255.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8mo1C91cKN6ArGK4sybCYBDwgA=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.046985+00 2025-12-09 10:14:39.046989+00 2848 C3423#橙色 SPMX-20240815297970 \N \N \N 1 \N [{"file_id": "15f899e0-bb4e-4a0b-a57e-ba4dedc11663", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72dac94ca3754c7b9c5c4c629d6cea2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72dac94ca3754c7b9c5c4c629d6cea2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72dac94ca3754c7b9c5c4c629d6cea2f.jpg", "file_size": 43350, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dac94ca3754c7b9c5c4c629d6cea2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dac94ca3754c7b9c5c4c629d6cea2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dac94ca3754c7b9c5c4c629d6cea2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72dac94ca3754c7b9c5c4c629d6cea2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72dac94ca3754c7b9c5c4c629d6cea2f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jf-NlUojMeq10AUVQFKRfWi_xw=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.048021+00 2025-12-09 10:14:39.048025+00 2849 FHPKDK-批布064-4 SPMX-20240815297965 \N \N \N 1 \N [{"file_id": "9675d440-d0e3-48fb-a8c8-3e91e5c54a17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf53f7c9a9f5446bb4ce209cfdf7f919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf53f7c9a9f5446bb4ce209cfdf7f919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf53f7c9a9f5446bb4ce209cfdf7f919.jpg", "file_size": 51423, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布064-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf53f7c9a9f5446bb4ce209cfdf7f919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf53f7c9a9f5446bb4ce209cfdf7f919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf53f7c9a9f5446bb4ce209cfdf7f919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf53f7c9a9f5446bb4ce209cfdf7f919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf53f7c9a9f5446bb4ce209cfdf7f919.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGM2EqV5wPLcLkv8b3nDmLsG3zc=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.049051+00 2025-12-09 10:14:39.049054+00 2850 DH002#红色 SPMX-20240815297967 \N \N \N 1 \N [{"file_id": "180a79d7-3dac-482e-b555-868cf44d3bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20bcde4ae78b40d8bc3fd25284658570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20bcde4ae78b40d8bc3fd25284658570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20bcde4ae78b40d8bc3fd25284658570.jpg", "file_size": 12599, "is_delete": false, "file_type": 1, "original_file_name": "DH002#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bcde4ae78b40d8bc3fd25284658570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bcde4ae78b40d8bc3fd25284658570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bcde4ae78b40d8bc3fd25284658570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20bcde4ae78b40d8bc3fd25284658570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20bcde4ae78b40d8bc3fd25284658570.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcZkUfYOULnxGYp91_umKK7MKNM=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.050075+00 2025-12-09 10:14:39.050079+00 2851 8002#浅蓝色L SPMX-20240815297959 \N \N \N 1 \N [{"file_id": "7dfad718-9972-458f-9d75-822f335f0407", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d200fa731d8f4009ab8d35e91cb591dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d200fa731d8f4009ab8d35e91cb591dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d200fa731d8f4009ab8d35e91cb591dd.jpg", "file_size": 79827, "is_delete": false, "file_type": 1, "original_file_name": "8002#浅蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d200fa731d8f4009ab8d35e91cb591dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d200fa731d8f4009ab8d35e91cb591dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d200fa731d8f4009ab8d35e91cb591dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d200fa731d8f4009ab8d35e91cb591dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d200fa731d8f4009ab8d35e91cb591dd.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lORy73eS73K3WKDRd3BsobEkOOA=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.051087+00 2025-12-09 10:14:39.051091+00 2852 LZ1175#上身1号色 SPMX-20240815297961 \N \N \N 1 \N [{"file_id": "be7a31ee-40f5-4d52-9117-9822596c35a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71daf85d33d649eda75118941c1cfcd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71daf85d33d649eda75118941c1cfcd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71daf85d33d649eda75118941c1cfcd2.jpg", "file_size": 12177, "is_delete": false, "file_type": 1, "original_file_name": "LZ1175#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71daf85d33d649eda75118941c1cfcd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71daf85d33d649eda75118941c1cfcd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71daf85d33d649eda75118941c1cfcd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71daf85d33d649eda75118941c1cfcd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71daf85d33d649eda75118941c1cfcd2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8OZBQkjCoPY01hDOxbhneKkbuM=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.052156+00 2025-12-09 10:14:39.05216+00 2853 DH002#蓝色 SPMX-20240815297978 \N \N \N 1 \N [{"file_id": "3288b5a5-9ac2-467f-8f14-c299596b4c95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d074cc025a4a4bd5bce98282ed76e93a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d074cc025a4a4bd5bce98282ed76e93a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d074cc025a4a4bd5bce98282ed76e93a.jpg", "file_size": 12664, "is_delete": false, "file_type": 1, "original_file_name": "DH002#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074cc025a4a4bd5bce98282ed76e93a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074cc025a4a4bd5bce98282ed76e93a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074cc025a4a4bd5bce98282ed76e93a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d074cc025a4a4bd5bce98282ed76e93a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d074cc025a4a4bd5bce98282ed76e93a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2rl08wK_KmzgtvjSHh7WIYHtSM=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.053216+00 2025-12-09 10:14:39.05322+00 2854 1039FWF#-4净色 SPMX-20240815297985 \N \N \N 1 \N [{"file_id": "6bf39ac5-3f50-4494-a8bd-bf0ed7317737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6071d403531e41a1beb2ef5d1ce44254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6071d403531e41a1beb2ef5d1ce44254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6071d403531e41a1beb2ef5d1ce44254.jpg", "file_size": 7313, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-4净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6071d403531e41a1beb2ef5d1ce44254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6071d403531e41a1beb2ef5d1ce44254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6071d403531e41a1beb2ef5d1ce44254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6071d403531e41a1beb2ef5d1ce44254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6071d403531e41a1beb2ef5d1ce44254.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sSmxt-cAFOi_GLeHLgzTd31TTbE=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.054232+00 2025-12-09 10:14:39.054236+00 2855 22A26-1单#-1 SPMX-20240815297986 \N \N \N 1 \N [{"file_id": "e6a8d9c3-271f-4269-858e-dd3fce50db2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f1b2779bd784e3bb5f2f71764ac4d96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f1b2779bd784e3bb5f2f71764ac4d96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f1b2779bd784e3bb5f2f71764ac4d96.jpg", "file_size": 14047, "is_delete": false, "file_type": 1, "original_file_name": "22A26-1单#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1b2779bd784e3bb5f2f71764ac4d96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1b2779bd784e3bb5f2f71764ac4d96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1b2779bd784e3bb5f2f71764ac4d96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f1b2779bd784e3bb5f2f71764ac4d96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f1b2779bd784e3bb5f2f71764ac4d96.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjMcGfPula4QpIIjALWUR2VxmWw=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.055312+00 2025-12-09 10:14:39.055315+00 2856 8002#浅蓝色批布文件共用 SPMX-20240815297981 \N \N \N 1 \N [{"file_id": "c14afc0c-ffbb-4e44-a8bf-df7cf3b690ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3de30ea494bc4730965afb9d114aacb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3de30ea494bc4730965afb9d114aacb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3de30ea494bc4730965afb9d114aacb9.jpg", "file_size": 40952, "is_delete": false, "file_type": 1, "original_file_name": "8002#浅蓝色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de30ea494bc4730965afb9d114aacb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de30ea494bc4730965afb9d114aacb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de30ea494bc4730965afb9d114aacb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3de30ea494bc4730965afb9d114aacb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3de30ea494bc4730965afb9d114aacb9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQbgkJMMPQFr1yd67onw68gFvDM=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.056493+00 2025-12-09 10:14:39.056498+00 2857 FHPKDK-批布064-5 SPMX-20240815297977 \N \N \N 1 \N [{"file_id": "6939291b-41c1-4aeb-9c23-f8f4c401ac11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a5a43be45d4a0fb203260475f952d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a5a43be45d4a0fb203260475f952d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a5a43be45d4a0fb203260475f952d5.jpg", "file_size": 58026, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布064-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5a43be45d4a0fb203260475f952d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5a43be45d4a0fb203260475f952d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5a43be45d4a0fb203260475f952d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a5a43be45d4a0fb203260475f952d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a5a43be45d4a0fb203260475f952d5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ts0eJXRQ_RbVibbrhbwp4O0Mzg=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.057683+00 2025-12-09 10:14:39.057687+00 2858 HSH001#黄VS-D3 SPMX-20240815297975 \N \N \N 1 \N [{"file_id": "33f191eb-91ad-4bce-b5af-33490259cf04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5afb3a56001048b1966a5e9eaa462549.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5afb3a56001048b1966a5e9eaa462549.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5afb3a56001048b1966a5e9eaa462549.jpg", "file_size": 12539, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afb3a56001048b1966a5e9eaa462549.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afb3a56001048b1966a5e9eaa462549.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afb3a56001048b1966a5e9eaa462549.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5afb3a56001048b1966a5e9eaa462549.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5afb3a56001048b1966a5e9eaa462549.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFJgtJqj0-QLzJoabFNNZdb1Zm4=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.058859+00 2025-12-09 10:14:39.058863+00 2859 C3423#玫红 SPMX-20240815297979 \N \N \N 1 \N [{"file_id": "a4b43bf2-93ba-4861-905c-69eec32129f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472840e24df3481daa876354d5f16b45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472840e24df3481daa876354d5f16b45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472840e24df3481daa876354d5f16b45.jpg", "file_size": 40963, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472840e24df3481daa876354d5f16b45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472840e24df3481daa876354d5f16b45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472840e24df3481daa876354d5f16b45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472840e24df3481daa876354d5f16b45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472840e24df3481daa876354d5f16b45.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5BcApJ21ZW0zkiuUn_-EF-GozI=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.059959+00 2025-12-09 10:14:39.059964+00 2860 JS0104-A16#LWQ15 SPMX-20240815297982 \N \N \N 1 \N [{"file_id": "35eec6d4-438e-48a9-83e1-a937df08d6ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5ec780652694ef1b6f9be178ddf99ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5ec780652694ef1b6f9be178ddf99ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5ec780652694ef1b6f9be178ddf99ec.jpg", "file_size": 14939, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A16#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec780652694ef1b6f9be178ddf99ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec780652694ef1b6f9be178ddf99ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec780652694ef1b6f9be178ddf99ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5ec780652694ef1b6f9be178ddf99ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5ec780652694ef1b6f9be178ddf99ec.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiPR7WdR6_a4X2G2GVTLODvdvls=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.06107+00 2025-12-09 10:14:39.061075+00 2861 C209-C210#绿色 SPMX-20240815297980 \N \N \N 1 \N [{"file_id": "8ebd4c9c-700c-4c44-b005-dfea66e9b7e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d5ecbd58c9546bd8dd175861dbeae6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d5ecbd58c9546bd8dd175861dbeae6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d5ecbd58c9546bd8dd175861dbeae6c.jpg", "file_size": 24213, "is_delete": false, "file_type": 1, "original_file_name": "C209-C210#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5ecbd58c9546bd8dd175861dbeae6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5ecbd58c9546bd8dd175861dbeae6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5ecbd58c9546bd8dd175861dbeae6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d5ecbd58c9546bd8dd175861dbeae6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d5ecbd58c9546bd8dd175861dbeae6c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1kNWDVVV0OJRE5UlKUw0p44c-OM=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.062107+00 2025-12-09 10:14:39.062111+00 2862 8002#浅蓝色XL SPMX-20240815297971 \N \N \N 1 \N [{"file_id": "1933f1c2-be71-4b5b-9149-c94e269bfa58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1efc51ece148426f9f93abb1c622a5d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1efc51ece148426f9f93abb1c622a5d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1efc51ece148426f9f93abb1c622a5d2.jpg", "file_size": 77917, "is_delete": false, "file_type": 1, "original_file_name": "8002#浅蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efc51ece148426f9f93abb1c622a5d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efc51ece148426f9f93abb1c622a5d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efc51ece148426f9f93abb1c622a5d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1efc51ece148426f9f93abb1c622a5d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1efc51ece148426f9f93abb1c622a5d2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sdw5Rppjc7nQCvZ0EVuurdF08o=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.063414+00 2025-12-09 10:14:39.063418+00 2863 LHJ2119FW#白底黑点VS-D3 SPMX-20240815297972 \N \N \N 1 \N [{"file_id": "47e6f9cf-ace5-473a-a42b-20cd501c14da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58b681dada104f31aeacd0f6e1917825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58b681dada104f31aeacd0f6e1917825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58b681dada104f31aeacd0f6e1917825.jpg", "file_size": 7493, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2119FW#白底黑点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b681dada104f31aeacd0f6e1917825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b681dada104f31aeacd0f6e1917825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b681dada104f31aeacd0f6e1917825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58b681dada104f31aeacd0f6e1917825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58b681dada104f31aeacd0f6e1917825.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUlD_y_gN4Qziq2pxPr3MCnVVIU=", "createTime": "2024-08-15 14:37:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.064688+00 2025-12-09 10:14:39.064692+00 2864 1039FWF#-4 SPMX-20240815297976 \N \N \N 1 \N [{"file_id": "91fb1957-a7f5-4d10-bb1d-802b369aaad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg", "file_size": 21327, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/025bab1e7b9d42a1ba9e8dcb97bf42d5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv5gmcs9SGPeTdQFSUZz1AYfxSs=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.066022+00 2025-12-09 10:14:39.066027+00 2865 LHJ2119FW#黄底白点VS-D3 SPMX-20240815297984 \N \N \N 1 \N [{"file_id": "9f6ffb0a-61d2-4d09-81d8-36da2e2cb861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b078fda66344b488c67c0b1975dfbdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b078fda66344b488c67c0b1975dfbdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b078fda66344b488c67c0b1975dfbdb.jpg", "file_size": 7458, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2119FW#黄底白点VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b078fda66344b488c67c0b1975dfbdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b078fda66344b488c67c0b1975dfbdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b078fda66344b488c67c0b1975dfbdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b078fda66344b488c67c0b1975dfbdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b078fda66344b488c67c0b1975dfbdb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJ5SA869XeomGzLc9LTUB-mFbw8=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.067411+00 2025-12-09 10:14:39.067416+00 2866 LZ1175#上身2号色 SPMX-20240815297973 \N \N \N 1 \N [{"file_id": "895a084c-7397-4078-a4f2-e483314512a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5113b553cbef489dbe59d2b7650306d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5113b553cbef489dbe59d2b7650306d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5113b553cbef489dbe59d2b7650306d0.jpg", "file_size": 11584, "is_delete": false, "file_type": 1, "original_file_name": "LZ1175#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5113b553cbef489dbe59d2b7650306d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5113b553cbef489dbe59d2b7650306d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5113b553cbef489dbe59d2b7650306d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5113b553cbef489dbe59d2b7650306d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5113b553cbef489dbe59d2b7650306d0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DdWfuHDE6xNC4AB8PLzs8-Fqijc=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.068701+00 2025-12-09 10:14:39.068709+00 2867 22A-单#D SPMX-20240815297974 \N \N \N 1 \N [{"file_id": "cf22840c-58be-443a-8827-3b547417819d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60ff33bf2a0840759be207ec81176a18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60ff33bf2a0840759be207ec81176a18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60ff33bf2a0840759be207ec81176a18.jpg", "file_size": 7884, "is_delete": false, "file_type": 1, "original_file_name": "22A-单#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ff33bf2a0840759be207ec81176a18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ff33bf2a0840759be207ec81176a18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ff33bf2a0840759be207ec81176a18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60ff33bf2a0840759be207ec81176a18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60ff33bf2a0840759be207ec81176a18.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLAGuAWChPqE8NSiWHus7vS1hJc=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.069982+00 2025-12-09 10:14:39.069987+00 2868 LZ1175#上身3号色 SPMX-20240815297983 \N \N \N 1 \N [{"file_id": "1658d7b7-6c0f-4f27-af7e-b63582abebc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4219d46fe5bb455a87ed1396ce99874f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4219d46fe5bb455a87ed1396ce99874f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4219d46fe5bb455a87ed1396ce99874f.jpg", "file_size": 10850, "is_delete": false, "file_type": 1, "original_file_name": "LZ1175#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4219d46fe5bb455a87ed1396ce99874f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4219d46fe5bb455a87ed1396ce99874f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4219d46fe5bb455a87ed1396ce99874f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4219d46fe5bb455a87ed1396ce99874f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4219d46fe5bb455a87ed1396ce99874f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uu8vnm8HmEg3F7WT-l48d3upw-I=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.07127+00 2025-12-09 10:14:39.071274+00 2869 DH002#黑VS-D3 SPMX-20240815297989 \N \N \N 1 \N [{"file_id": "e849c7e1-e9fc-4809-87c0-b8426ae83d9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c32a279e60a4282b6e3c2578b04b30d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c32a279e60a4282b6e3c2578b04b30d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c32a279e60a4282b6e3c2578b04b30d.jpg", "file_size": 14358, "is_delete": false, "file_type": 1, "original_file_name": "DH002#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c32a279e60a4282b6e3c2578b04b30d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c32a279e60a4282b6e3c2578b04b30d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c32a279e60a4282b6e3c2578b04b30d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c32a279e60a4282b6e3c2578b04b30d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c32a279e60a4282b6e3c2578b04b30d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUh3qpMjEneVGhTC1VuGivtb8JU=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.072612+00 2025-12-09 10:14:39.072615+00 2870 C209-C210#黑色 SPMX-20240815297991 \N \N \N 1 \N [{"file_id": "ba0075fb-520a-41b2-b2b8-b77340106275", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8e22ae0b5aa45cfba2447d25c463b05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8e22ae0b5aa45cfba2447d25c463b05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8e22ae0b5aa45cfba2447d25c463b05.jpg", "file_size": 26834, "is_delete": false, "file_type": 1, "original_file_name": "C209-C210#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e22ae0b5aa45cfba2447d25c463b05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e22ae0b5aa45cfba2447d25c463b05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e22ae0b5aa45cfba2447d25c463b05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8e22ae0b5aa45cfba2447d25c463b05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8e22ae0b5aa45cfba2447d25c463b05.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QbnopIZJ6XU36O8r02PnUB9rX1s=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.073879+00 2025-12-09 10:14:39.073883+00 2871 1039FWF#-5 SPMX-20240815297997 \N \N \N 1 \N [{"file_id": "454a75b6-ad44-4581-8d2e-67fbe66a9082", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb50ca5abfd14008b9c0d52669da77cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb50ca5abfd14008b9c0d52669da77cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb50ca5abfd14008b9c0d52669da77cf.jpg", "file_size": 18842, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb50ca5abfd14008b9c0d52669da77cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb50ca5abfd14008b9c0d52669da77cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb50ca5abfd14008b9c0d52669da77cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb50ca5abfd14008b9c0d52669da77cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb50ca5abfd14008b9c0d52669da77cf.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBqyrIcx6P_0-hLh8uMDcswlPxM=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.074875+00 2025-12-09 10:14:39.074879+00 2872 FHPKDK-批布065-1 SPMX-20240815297988 \N \N \N 1 \N [{"file_id": "5121bb74-a103-4806-b3c8-a6c91b92cbc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f17164b7e07e41b9921fde0fdcb57d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f17164b7e07e41b9921fde0fdcb57d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f17164b7e07e41b9921fde0fdcb57d16.jpg", "file_size": 39552, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布065-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17164b7e07e41b9921fde0fdcb57d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17164b7e07e41b9921fde0fdcb57d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17164b7e07e41b9921fde0fdcb57d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f17164b7e07e41b9921fde0fdcb57d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f17164b7e07e41b9921fde0fdcb57d16.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Am_hwTd3x0-9c-y8XNXSc_q_mcc=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.079819+00 2025-12-09 10:14:39.079823+00 2877 C3423#白色 SPMX-20240815297990 \N \N \N 1 \N [{"file_id": "7447f671-f210-4643-b281-f5a6fa9eb478", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e615af26d89d4b5b9eaacc88fac9db17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e615af26d89d4b5b9eaacc88fac9db17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e615af26d89d4b5b9eaacc88fac9db17.jpg", "file_size": 42012, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e615af26d89d4b5b9eaacc88fac9db17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e615af26d89d4b5b9eaacc88fac9db17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e615af26d89d4b5b9eaacc88fac9db17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e615af26d89d4b5b9eaacc88fac9db17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e615af26d89d4b5b9eaacc88fac9db17.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fWtsPSF2Z8WIQwyNzvkqQYTpen0=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.075854+00 2025-12-09 10:14:39.075857+00 2873 LHJ2120FW#天蓝底玫瑰花VS-D3 SPMX-20240815297995 \N \N \N 1 \N [{"file_id": "01cc5b72-5af9-422e-8ce7-e7a75a4facf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a684aab2b0ae42e991e550799cb7c583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a684aab2b0ae42e991e550799cb7c583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a684aab2b0ae42e991e550799cb7c583.jpg", "file_size": 17241, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2120FW#天蓝底玫瑰花VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a684aab2b0ae42e991e550799cb7c583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a684aab2b0ae42e991e550799cb7c583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a684aab2b0ae42e991e550799cb7c583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a684aab2b0ae42e991e550799cb7c583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a684aab2b0ae42e991e550799cb7c583.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmL7OdpBe78wPu1yFKqkFMyNJIg=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.076866+00 2025-12-09 10:14:39.07687+00 2874 LZ1175#上身4号色 SPMX-20240815297992 \N \N \N 1 \N [{"file_id": "a13b6a4b-0371-4266-9022-e2b2c9b6e2f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c18a9626ee24425978b6f20643efc0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c18a9626ee24425978b6f20643efc0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c18a9626ee24425978b6f20643efc0a.jpg", "file_size": 11134, "is_delete": false, "file_type": 1, "original_file_name": "LZ1175#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18a9626ee24425978b6f20643efc0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18a9626ee24425978b6f20643efc0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18a9626ee24425978b6f20643efc0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c18a9626ee24425978b6f20643efc0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c18a9626ee24425978b6f20643efc0a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hEA6WxZRvON_VX1dZ_6Tp6U6l8=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.077852+00 2025-12-09 10:14:39.077855+00 2875 FHPKDK-批布065-2 SPMX-20240815297999 \N \N \N 1 \N [{"file_id": "ace5f370-0b74-4fd4-be68-1fbd506a605b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e36baa8e860248a8a426d7ac0898855a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e36baa8e860248a8a426d7ac0898855a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e36baa8e860248a8a426d7ac0898855a.jpg", "file_size": 39736, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布065-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36baa8e860248a8a426d7ac0898855a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36baa8e860248a8a426d7ac0898855a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36baa8e860248a8a426d7ac0898855a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e36baa8e860248a8a426d7ac0898855a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e36baa8e860248a8a426d7ac0898855a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5wIverBQy1GuER2kG5X5qcAAQI=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.078818+00 2025-12-09 10:14:39.078822+00 2876 8002#灰底宝蓝 SPMX-20240815297993 \N \N \N 1 \N [{"file_id": "c4b9c53a-b200-4ce3-992f-c0f31bd553e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a47893d297546a4abd194cc71d7cfb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a47893d297546a4abd194cc71d7cfb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a47893d297546a4abd194cc71d7cfb5.jpg", "file_size": 18184, "is_delete": false, "file_type": 1, "original_file_name": "8002#灰底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a47893d297546a4abd194cc71d7cfb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a47893d297546a4abd194cc71d7cfb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a47893d297546a4abd194cc71d7cfb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a47893d297546a4abd194cc71d7cfb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a47893d297546a4abd194cc71d7cfb5.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKMF-_xa66q2FKxQNw42o99FsSQ=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.080842+00 2025-12-09 10:14:39.080847+00 2878 22A26-1单#-2 SPMX-20240815297996 \N \N \N 1 \N [{"file_id": "69960e1d-1ba1-4475-b6d5-2231f63d679c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a47a0974f9f545dfbe105534062a8a3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a47a0974f9f545dfbe105534062a8a3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a47a0974f9f545dfbe105534062a8a3a.jpg", "file_size": 14273, "is_delete": false, "file_type": 1, "original_file_name": "22A26-1单#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47a0974f9f545dfbe105534062a8a3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47a0974f9f545dfbe105534062a8a3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47a0974f9f545dfbe105534062a8a3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a47a0974f9f545dfbe105534062a8a3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a47a0974f9f545dfbe105534062a8a3a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1Nv4GN-3Ql-Vy2OzQNCnBrKPQc=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.081829+00 2025-12-09 10:14:39.081833+00 2879 HSH001#黑底 SPMX-20240815297987 \N \N \N 1 \N [{"file_id": "4b85a103-83b9-48e0-9c84-ec1bf1c6d220", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b4d99927b044f48b576b90ac11c14c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b4d99927b044f48b576b90ac11c14c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b4d99927b044f48b576b90ac11c14c3.jpg", "file_size": 19691, "is_delete": false, "file_type": 1, "original_file_name": "HSH001#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4d99927b044f48b576b90ac11c14c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4d99927b044f48b576b90ac11c14c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4d99927b044f48b576b90ac11c14c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b4d99927b044f48b576b90ac11c14c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b4d99927b044f48b576b90ac11c14c3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txsVUQaqt_2koatzNROd2RlAG1k=", "createTime": "2024-08-15 14:37:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.082808+00 2025-12-09 10:14:39.082813+00 2880 HSH001FW#VS-D3 SPMX-20240815297998 \N \N \N 1 \N [{"file_id": "538e3354-afd2-4349-acb5-a5944d4f6d1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d31a0702d9c4a9ebc5217844f42756b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d31a0702d9c4a9ebc5217844f42756b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d31a0702d9c4a9ebc5217844f42756b.jpg", "file_size": 18447, "is_delete": false, "file_type": 1, "original_file_name": "HSH001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d31a0702d9c4a9ebc5217844f42756b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d31a0702d9c4a9ebc5217844f42756b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d31a0702d9c4a9ebc5217844f42756b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d31a0702d9c4a9ebc5217844f42756b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d31a0702d9c4a9ebc5217844f42756b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XPG0w3-z-5cxuD4UI3nkorm8WWA=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.0838+00 2025-12-09 10:14:39.083804+00 2881 JS0104-A16#WJC22 SPMX-20240815297994 \N \N \N 1 \N [{"file_id": "22723c1e-28ba-4eff-b0ef-763e3891080c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03ac00dd39894ae68d489be49af5a25b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03ac00dd39894ae68d489be49af5a25b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03ac00dd39894ae68d489be49af5a25b.jpg", "file_size": 27153, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ac00dd39894ae68d489be49af5a25b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ac00dd39894ae68d489be49af5a25b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ac00dd39894ae68d489be49af5a25b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03ac00dd39894ae68d489be49af5a25b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03ac00dd39894ae68d489be49af5a25b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:seZakxO694sNfMOXVn9S6FVupTA=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.084796+00 2025-12-09 10:14:39.0848+00 2882 DH002FW#VS-D3 SPMX-20240815298000 \N \N \N 1 \N [{"file_id": "3b0822e0-2443-4c97-9dcd-0f7e998e5774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5339088764dc49478ca9109666d08e97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5339088764dc49478ca9109666d08e97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5339088764dc49478ca9109666d08e97.jpg", "file_size": 11006, "is_delete": false, "file_type": 1, "original_file_name": "DH002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339088764dc49478ca9109666d08e97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339088764dc49478ca9109666d08e97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339088764dc49478ca9109666d08e97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5339088764dc49478ca9109666d08e97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5339088764dc49478ca9109666d08e97.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXn6JQXkScJatpVDq5n1tfkdSSQ=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.085857+00 2025-12-09 10:14:39.085861+00 2883 HSH001FWE#VS-D3 SPMX-20240815298007 \N \N \N 1 \N [{"file_id": "7a0e2e53-0746-4b08-8a26-a064d35bdf34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab83b87b1da5494989d2868c61df92b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab83b87b1da5494989d2868c61df92b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab83b87b1da5494989d2868c61df92b0.jpg", "file_size": 7043, "is_delete": false, "file_type": 1, "original_file_name": "HSH001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab83b87b1da5494989d2868c61df92b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab83b87b1da5494989d2868c61df92b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab83b87b1da5494989d2868c61df92b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab83b87b1da5494989d2868c61df92b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab83b87b1da5494989d2868c61df92b0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mkNwZ1cSy5GEysi4Ce77dPkh8c8=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.086882+00 2025-12-09 10:14:39.086886+00 2884 FHPKDK-批布065-3 SPMX-20240815298011 \N \N \N 1 \N [{"file_id": "022c2d0d-f30d-479e-abf0-1a1644ec6512", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dacf25abaa2c45f29ed765170187ccdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dacf25abaa2c45f29ed765170187ccdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dacf25abaa2c45f29ed765170187ccdd.jpg", "file_size": 47942, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布065-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacf25abaa2c45f29ed765170187ccdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacf25abaa2c45f29ed765170187ccdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacf25abaa2c45f29ed765170187ccdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dacf25abaa2c45f29ed765170187ccdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dacf25abaa2c45f29ed765170187ccdd.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgPQo3eeDxpy3a355vqG2_7Ah48=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.08787+00 2025-12-09 10:14:39.087874+00 2885 HSH001FWE#咖啡VS-D3 SPMX-20240815298016 \N \N \N 1 \N [{"file_id": "f7222f85-8bdc-4b25-9f3a-3f8f38149d88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb51eeef9234cc2b56ee6f1e9d42994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb51eeef9234cc2b56ee6f1e9d42994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb51eeef9234cc2b56ee6f1e9d42994.jpg", "file_size": 7476, "is_delete": false, "file_type": 1, "original_file_name": "HSH001FWE#咖啡VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb51eeef9234cc2b56ee6f1e9d42994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb51eeef9234cc2b56ee6f1e9d42994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb51eeef9234cc2b56ee6f1e9d42994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb51eeef9234cc2b56ee6f1e9d42994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb51eeef9234cc2b56ee6f1e9d42994.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zc4mP6bTZl10v2j70-qc8Q2bM3M=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.088871+00 2025-12-09 10:14:39.088875+00 2886 8002#白底宝蓝 SPMX-20240815298003 \N \N \N 1 \N [{"file_id": "4f1eaf29-6e1e-4939-ba00-dc17672eae76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf4f1155d46d47b1b79546a5458e954f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf4f1155d46d47b1b79546a5458e954f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf4f1155d46d47b1b79546a5458e954f.jpg", "file_size": 18625, "is_delete": false, "file_type": 1, "original_file_name": "8002#白底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4f1155d46d47b1b79546a5458e954f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4f1155d46d47b1b79546a5458e954f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4f1155d46d47b1b79546a5458e954f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf4f1155d46d47b1b79546a5458e954f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf4f1155d46d47b1b79546a5458e954f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1dTMe8-LmcM65daBBZNKdra-Kc=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.089857+00 2025-12-09 10:14:39.089861+00 2887 LHJ2206#长裙墨绿 SPMX-20240815298006 \N \N \N 1 \N [{"file_id": "c4429f91-6dcd-4f54-b180-8b4ad6718792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4145f9743d24c53be3b5afa2e341405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4145f9743d24c53be3b5afa2e341405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4145f9743d24c53be3b5afa2e341405.jpg", "file_size": 17763, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4145f9743d24c53be3b5afa2e341405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4145f9743d24c53be3b5afa2e341405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4145f9743d24c53be3b5afa2e341405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4145f9743d24c53be3b5afa2e341405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4145f9743d24c53be3b5afa2e341405.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2koDEiwycOavjPcZW6ndm4eqQI=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.090856+00 2025-12-09 10:14:39.09086+00 2888 8002#白底粉 SPMX-20240815298013 \N \N \N 1 \N [{"file_id": "d37353c1-0aac-412a-a382-187ba7defb08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85e1466044c74bdf84ae061569ba9d09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85e1466044c74bdf84ae061569ba9d09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85e1466044c74bdf84ae061569ba9d09.jpg", "file_size": 14688, "is_delete": false, "file_type": 1, "original_file_name": "8002#白底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1466044c74bdf84ae061569ba9d09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1466044c74bdf84ae061569ba9d09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1466044c74bdf84ae061569ba9d09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85e1466044c74bdf84ae061569ba9d09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85e1466044c74bdf84ae061569ba9d09.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-UMjqS6pyopcMmJs3OUBzNuiVU=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.091822+00 2025-12-09 10:14:39.091826+00 2889 22A26-1单#-3 SPMX-20240815298008 \N \N \N 1 \N [{"file_id": "c45f3626-de3d-44a2-9b00-2f0866879c1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e093ecd288be4d90a516148f5edd034d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e093ecd288be4d90a516148f5edd034d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e093ecd288be4d90a516148f5edd034d.jpg", "file_size": 18954, "is_delete": false, "file_type": 1, "original_file_name": "22A26-1单#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e093ecd288be4d90a516148f5edd034d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e093ecd288be4d90a516148f5edd034d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e093ecd288be4d90a516148f5edd034d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e093ecd288be4d90a516148f5edd034d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e093ecd288be4d90a516148f5edd034d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SR6KsmtHKpFd-O5B1Yur6AzQ6Y=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.092789+00 2025-12-09 10:14:39.092794+00 2890 1039FWF#-5净色 SPMX-20240815298009 \N \N \N 1 \N [{"file_id": "98a5b972-66e2-47db-830e-664ba87858af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e48fb90f5ce24affa459fb08518a6f04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e48fb90f5ce24affa459fb08518a6f04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e48fb90f5ce24affa459fb08518a6f04.jpg", "file_size": 6984, "is_delete": false, "file_type": 1, "original_file_name": "1039FWF#-5净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48fb90f5ce24affa459fb08518a6f04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48fb90f5ce24affa459fb08518a6f04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48fb90f5ce24affa459fb08518a6f04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e48fb90f5ce24affa459fb08518a6f04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e48fb90f5ce24affa459fb08518a6f04.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8PtE1UjVXLCzQWmDpiffDAikYw=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.093771+00 2025-12-09 10:14:39.093775+00 2891 DH002FWE#VS-D3 SPMX-20240815298010 \N \N \N 1 \N [{"file_id": "1de769a1-fbf1-4b3c-ba15-4b24acf507f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72805d5419c5421aa4f9d624a20a1ace.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72805d5419c5421aa4f9d624a20a1ace.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72805d5419c5421aa4f9d624a20a1ace.jpg", "file_size": 21114, "is_delete": false, "file_type": 1, "original_file_name": "DH002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72805d5419c5421aa4f9d624a20a1ace.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72805d5419c5421aa4f9d624a20a1ace.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72805d5419c5421aa4f9d624a20a1ace.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72805d5419c5421aa4f9d624a20a1ace.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72805d5419c5421aa4f9d624a20a1ace.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxdlPmQDJ2RSg8W_nT2eNeKoSGQ=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.09476+00 2025-12-09 10:14:39.094765+00 2892 LHJ2206#长裙彩兰 SPMX-20240815298015 \N \N \N 1 \N [{"file_id": "fa71a553-0309-4311-adc8-2d4c6d747175", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c06f220de67488a9419dce4d48e495f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c06f220de67488a9419dce4d48e495f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c06f220de67488a9419dce4d48e495f.jpg", "file_size": 17712, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c06f220de67488a9419dce4d48e495f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c06f220de67488a9419dce4d48e495f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c06f220de67488a9419dce4d48e495f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c06f220de67488a9419dce4d48e495f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c06f220de67488a9419dce4d48e495f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:291DDp89BcLoAt9pqtWmIHIIh8Q=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.095748+00 2025-12-09 10:14:39.095752+00 2893 C21#WJC22 SPMX-20240815298002 \N \N \N 1 \N [{"file_id": "e52afcde-785a-4845-a790-6414c944bc00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784bf592b36a430285e519863d4e1bbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784bf592b36a430285e519863d4e1bbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784bf592b36a430285e519863d4e1bbc.jpg", "file_size": 19383, "is_delete": false, "file_type": 1, "original_file_name": "C21#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784bf592b36a430285e519863d4e1bbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784bf592b36a430285e519863d4e1bbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784bf592b36a430285e519863d4e1bbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784bf592b36a430285e519863d4e1bbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784bf592b36a430285e519863d4e1bbc.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:glseuRAdiHniktZY2GxbuCCRAIU=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.096733+00 2025-12-09 10:14:39.096738+00 2894 LZ1176#上身2号色 SPMX-20240815298014 \N \N \N 1 \N [{"file_id": "e66fa17d-10f9-40a6-9892-1ebf22811bc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "650ff8798ebd4a5a81ac8b1f9c8886f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "650ff8798ebd4a5a81ac8b1f9c8886f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "650ff8798ebd4a5a81ac8b1f9c8886f8.jpg", "file_size": 11020, "is_delete": false, "file_type": 1, "original_file_name": "LZ1176#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650ff8798ebd4a5a81ac8b1f9c8886f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650ff8798ebd4a5a81ac8b1f9c8886f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650ff8798ebd4a5a81ac8b1f9c8886f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/650ff8798ebd4a5a81ac8b1f9c8886f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/650ff8798ebd4a5a81ac8b1f9c8886f8.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GD4ttwe3zqEs1YsAP2Jf5_wP00I=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.097714+00 2025-12-09 10:14:39.097718+00 2895 LZ1176#上身1号色 SPMX-20240815298004 \N \N \N 1 \N [{"file_id": "42de1ae6-053a-446b-8ef4-34ed7bebbf17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a610d3cd9489428f91dca35354b440cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a610d3cd9489428f91dca35354b440cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a610d3cd9489428f91dca35354b440cf.jpg", "file_size": 11408, "is_delete": false, "file_type": 1, "original_file_name": "LZ1176#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a610d3cd9489428f91dca35354b440cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a610d3cd9489428f91dca35354b440cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a610d3cd9489428f91dca35354b440cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a610d3cd9489428f91dca35354b440cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a610d3cd9489428f91dca35354b440cf.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrU0NWmOMkiHILIrHpVXnwgHYS8=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.098694+00 2025-12-09 10:14:39.098699+00 2896 C3423#绿色 SPMX-20240815298001 \N \N \N 1 \N [{"file_id": "5f7d53c5-415e-4d1e-8844-26d6dd81e68b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6995bfb7170f496fbc2d062a3e7205a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6995bfb7170f496fbc2d062a3e7205a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6995bfb7170f496fbc2d062a3e7205a7.jpg", "file_size": 42561, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6995bfb7170f496fbc2d062a3e7205a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6995bfb7170f496fbc2d062a3e7205a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6995bfb7170f496fbc2d062a3e7205a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6995bfb7170f496fbc2d062a3e7205a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6995bfb7170f496fbc2d062a3e7205a7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xapjxnS1s8NqaBf6Yvl28NhDSiU=", "createTime": "2024-08-15 14:37:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.099687+00 2025-12-09 10:14:39.099691+00 2897 JS0104-A17#LWQ15 SPMX-20240815298005 \N \N \N 1 \N [{"file_id": "7d0124b7-d1bc-4791-a9fc-d106f00cb4d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ad0596b6e5548f3ad59179d0a9e0ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ad0596b6e5548f3ad59179d0a9e0ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ad0596b6e5548f3ad59179d0a9e0ce0.jpg", "file_size": 9142, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A17#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0596b6e5548f3ad59179d0a9e0ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0596b6e5548f3ad59179d0a9e0ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0596b6e5548f3ad59179d0a9e0ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ad0596b6e5548f3ad59179d0a9e0ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ad0596b6e5548f3ad59179d0a9e0ce0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ethsHB1AWyIFetGi-Mebtae_wRs=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.100678+00 2025-12-09 10:14:39.100682+00 2898 C3423#黑色 SPMX-20240815298012 \N \N \N 1 \N [{"file_id": "e0595a70-9f7f-4b7a-b2db-e06e574538c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a1d6ed23bf140b8938785d4e0f2302d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a1d6ed23bf140b8938785d4e0f2302d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a1d6ed23bf140b8938785d4e0f2302d.jpg", "file_size": 38932, "is_delete": false, "file_type": 1, "original_file_name": ".C3423#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1d6ed23bf140b8938785d4e0f2302d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1d6ed23bf140b8938785d4e0f2302d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1d6ed23bf140b8938785d4e0f2302d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a1d6ed23bf140b8938785d4e0f2302d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a1d6ed23bf140b8938785d4e0f2302d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x95RMw5lQLFZf8xoaVuMXyk4PfU=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.10164+00 2025-12-09 10:14:39.101644+00 2899 JS0104-A17#WJC22 SPMX-20240815298017 \N \N \N 1 \N [{"file_id": "d169a5d4-24f7-432b-b30c-6da21a6d4077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34cbb303ab7b465087d3a48ff9256fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34cbb303ab7b465087d3a48ff9256fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34cbb303ab7b465087d3a48ff9256fe1.jpg", "file_size": 21386, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A17#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34cbb303ab7b465087d3a48ff9256fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34cbb303ab7b465087d3a48ff9256fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34cbb303ab7b465087d3a48ff9256fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34cbb303ab7b465087d3a48ff9256fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34cbb303ab7b465087d3a48ff9256fe1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LdDZ_nLK5ZAqlpVn6w5pBDVUwM=", "createTime": "2024-08-15 14:37:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.111497+00 2025-12-09 10:14:39.111501+00 2909 22A26单#-2 SPMX-20240815298029 \N \N \N 1 \N [{"file_id": "f20f72c1-4e19-45ba-9f5b-68be910cf46a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "148e75bbfd664603af0f3ada1477e9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "148e75bbfd664603af0f3ada1477e9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "148e75bbfd664603af0f3ada1477e9e0.jpg", "file_size": 18825, "is_delete": false, "file_type": 1, "original_file_name": "22A26单#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148e75bbfd664603af0f3ada1477e9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148e75bbfd664603af0f3ada1477e9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148e75bbfd664603af0f3ada1477e9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/148e75bbfd664603af0f3ada1477e9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/148e75bbfd664603af0f3ada1477e9e0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXLG9GHsnGhAEqM5MLoxrd2Wr10=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.102617+00 2025-12-09 10:14:39.102621+00 2900 LZ1176#上身3号色 SPMX-20240815298023 \N \N \N 1 \N [{"file_id": "36fcee9a-28d7-4a55-b973-5735c4390f28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b43a7e10fc994c9090107897c482c858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b43a7e10fc994c9090107897c482c858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b43a7e10fc994c9090107897c482c858.jpg", "file_size": 10816, "is_delete": false, "file_type": 1, "original_file_name": "LZ1176#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a7e10fc994c9090107897c482c858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a7e10fc994c9090107897c482c858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a7e10fc994c9090107897c482c858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b43a7e10fc994c9090107897c482c858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b43a7e10fc994c9090107897c482c858.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmLat1ZavoUkRndSINxzdnvEbL4=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.10361+00 2025-12-09 10:14:39.103615+00 2901 22A26单#-1 SPMX-20240815298018 \N \N \N 1 \N [{"file_id": "4a065e6d-f5aa-4cdc-9b50-92d1f6de0052", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg", "file_size": 14422, "is_delete": false, "file_type": 1, "original_file_name": "22A26单#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30a98a995b3d4bf2bdb9f8dc19c6d7f4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9InBj5qfC8GGBTcK7c4yIzpjvI=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.104597+00 2025-12-09 10:14:39.104601+00 2902 HSH002#VS-D3 SPMX-20240815298026 \N \N \N 1 \N [{"file_id": "8d937019-c45a-4ae0-aa62-7473a9a8aa8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5ffe129925c475a977c5b6f6e652482.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5ffe129925c475a977c5b6f6e652482.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5ffe129925c475a977c5b6f6e652482.jpg", "file_size": 19606, "is_delete": false, "file_type": 1, "original_file_name": "HSH002#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ffe129925c475a977c5b6f6e652482.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ffe129925c475a977c5b6f6e652482.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ffe129925c475a977c5b6f6e652482.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5ffe129925c475a977c5b6f6e652482.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5ffe129925c475a977c5b6f6e652482.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYpa0VkeFRdtLJEoqm6to4bpc38=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.1056+00 2025-12-09 10:14:39.105604+00 2903 C211#枣红 SPMX-20240815298019 \N \N \N 1 \N [{"file_id": "95b63b97-9709-45ea-97f1-76c0181f4fa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9825849cb07c421bb6fa1b1493c42e89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9825849cb07c421bb6fa1b1493c42e89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9825849cb07c421bb6fa1b1493c42e89.jpg", "file_size": 16132, "is_delete": false, "file_type": 1, "original_file_name": "C211#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9825849cb07c421bb6fa1b1493c42e89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9825849cb07c421bb6fa1b1493c42e89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9825849cb07c421bb6fa1b1493c42e89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9825849cb07c421bb6fa1b1493c42e89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9825849cb07c421bb6fa1b1493c42e89.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmtS_RuKdEbIoHRHMkNNvc5Rsvk=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.1066+00 2025-12-09 10:14:39.106603+00 2904 8002#粉底宝蓝 SPMX-20240815298022 \N \N \N 1 \N [{"file_id": "9c2a33ab-0e5f-4371-b1ce-f14ad1f2c317", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "713db78cd4034a7fa6a553b6883bddb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "713db78cd4034a7fa6a553b6883bddb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "713db78cd4034a7fa6a553b6883bddb0.jpg", "file_size": 17452, "is_delete": false, "file_type": 1, "original_file_name": "8002#粉底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713db78cd4034a7fa6a553b6883bddb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713db78cd4034a7fa6a553b6883bddb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713db78cd4034a7fa6a553b6883bddb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/713db78cd4034a7fa6a553b6883bddb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/713db78cd4034a7fa6a553b6883bddb0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7xXgsO1L_H6w6vWjghbG37Yk7k=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.107588+00 2025-12-09 10:14:39.107592+00 2905 LHJ2206#长裙枣红 SPMX-20240815298025 \N \N \N 1 \N [{"file_id": "a21fc8ed-dc81-430e-bc94-1e9ebd755591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e8c9b5a27c4874ba6fdef91ea330de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e8c9b5a27c4874ba6fdef91ea330de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e8c9b5a27c4874ba6fdef91ea330de.jpg", "file_size": 17330, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e8c9b5a27c4874ba6fdef91ea330de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e8c9b5a27c4874ba6fdef91ea330de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e8c9b5a27c4874ba6fdef91ea330de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e8c9b5a27c4874ba6fdef91ea330de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e8c9b5a27c4874ba6fdef91ea330de.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6zJMngi6VLgjpUknkx-N1PMZGSo=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.108578+00 2025-12-09 10:14:39.108582+00 2906 C211#浅绿 SPMX-20240815298027 \N \N \N 1 \N [{"file_id": "5f8b59d9-9fdc-4122-8e77-70d83d10c041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49ec20e0fa364a2c9d6fa2856ff722a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49ec20e0fa364a2c9d6fa2856ff722a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49ec20e0fa364a2c9d6fa2856ff722a2.jpg", "file_size": 19534, "is_delete": false, "file_type": 1, "original_file_name": "C211#浅绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ec20e0fa364a2c9d6fa2856ff722a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ec20e0fa364a2c9d6fa2856ff722a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ec20e0fa364a2c9d6fa2856ff722a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49ec20e0fa364a2c9d6fa2856ff722a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49ec20e0fa364a2c9d6fa2856ff722a2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZnMLT7COQbcxdF3idWWzxG3qSQ=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.109547+00 2025-12-09 10:14:39.109551+00 2907 103A#-大码+105A小码-玫红 SPMX-20240815298031 \N \N \N 1 \N [{"file_id": "513e9703-8da7-442f-ad77-629efa0cd150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9facae90ebb644f8a79ebc5d02626723.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9facae90ebb644f8a79ebc5d02626723.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9facae90ebb644f8a79ebc5d02626723.jpg", "file_size": 70716, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9facae90ebb644f8a79ebc5d02626723.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9facae90ebb644f8a79ebc5d02626723.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9facae90ebb644f8a79ebc5d02626723.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9facae90ebb644f8a79ebc5d02626723.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9facae90ebb644f8a79ebc5d02626723.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZMc_FAdT4dDLkW9F9aLCoGrD_k=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.110521+00 2025-12-09 10:14:39.110525+00 2908 FHPKDK-批布065-6 SPMX-20240815298024 \N \N \N 1 \N [{"file_id": "604bdcac-4aca-4626-be6a-7e3779ba7f0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9af27c0147bf4bf4a31f413e5fb6fac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9af27c0147bf4bf4a31f413e5fb6fac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9af27c0147bf4bf4a31f413e5fb6fac7.jpg", "file_size": 38364, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布065-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af27c0147bf4bf4a31f413e5fb6fac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af27c0147bf4bf4a31f413e5fb6fac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af27c0147bf4bf4a31f413e5fb6fac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9af27c0147bf4bf4a31f413e5fb6fac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9af27c0147bf4bf4a31f413e5fb6fac7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJGVPLL7sLebgUgRRc2ZHF60zy0=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.112469+00 2025-12-09 10:14:39.112473+00 2910 DH002FWEF#VS-D3 SPMX-20240815298020 \N \N \N 1 \N [{"file_id": "c3acc891-b9e0-494a-84e0-a0aa91d342a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05075304a9ba4370ae899245d395b5ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05075304a9ba4370ae899245d395b5ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05075304a9ba4370ae899245d395b5ed.jpg", "file_size": 21697, "is_delete": false, "file_type": 1, "original_file_name": "DH002FWEF#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05075304a9ba4370ae899245d395b5ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05075304a9ba4370ae899245d395b5ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05075304a9ba4370ae899245d395b5ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05075304a9ba4370ae899245d395b5ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05075304a9ba4370ae899245d395b5ed.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F4cO8Ck5rcy2sMcFxR20--iBcYs=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.113476+00 2025-12-09 10:14:39.113481+00 2911 DH003#2XL2件 SPMX-20240815298030 \N \N \N 1 \N [{"file_id": "49a83b2a-ab4b-45ce-bb53-062ea2cd79a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56065a92bc094b5cb759106de31e09bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56065a92bc094b5cb759106de31e09bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56065a92bc094b5cb759106de31e09bc.jpg", "file_size": 10435, "is_delete": false, "file_type": 1, "original_file_name": "DH003#2XL2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56065a92bc094b5cb759106de31e09bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56065a92bc094b5cb759106de31e09bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56065a92bc094b5cb759106de31e09bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56065a92bc094b5cb759106de31e09bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56065a92bc094b5cb759106de31e09bc.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-EGbATRNlHaBb7xamv0zo1u_UeQ=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.114465+00 2025-12-09 10:14:39.114469+00 2912 103A#-大码+105A小码-橙色 SPMX-20240815298021 \N \N \N 1 \N [{"file_id": "b5ec1489-6e29-4871-a632-f57362d272de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93e689f0597942c2ad7b631a2377b169.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93e689f0597942c2ad7b631a2377b169.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93e689f0597942c2ad7b631a2377b169.jpg", "file_size": 72402, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e689f0597942c2ad7b631a2377b169.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e689f0597942c2ad7b631a2377b169.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e689f0597942c2ad7b631a2377b169.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93e689f0597942c2ad7b631a2377b169.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93e689f0597942c2ad7b631a2377b169.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snBBzrfe1k2X9Mg-OitL3R8F2oU=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.115433+00 2025-12-09 10:14:39.115437+00 2913 JS0104-A18#橙色 SPMX-20240815298028 \N \N \N 1 \N [{"file_id": "94edc938-d03d-47f4-8a37-ce773f6ecae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc13a5d08869430aacbd8c274631449a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc13a5d08869430aacbd8c274631449a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc13a5d08869430aacbd8c274631449a.jpg", "file_size": 13568, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A18#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc13a5d08869430aacbd8c274631449a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc13a5d08869430aacbd8c274631449a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc13a5d08869430aacbd8c274631449a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc13a5d08869430aacbd8c274631449a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc13a5d08869430aacbd8c274631449a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgwQu_bfxfCI_E9irBGcCgDv37I=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.116406+00 2025-12-09 10:14:39.11641+00 2914 0#-225-白色小领净色 SPMX-20240815298048 \N \N \N 1 \N [{"file_id": "0aa6e7f9-9183-47ab-8eff-94fc905b4717", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57f56e760c394f80a13d60e4cf8731a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57f56e760c394f80a13d60e4cf8731a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57f56e760c394f80a13d60e4cf8731a3.jpg", "file_size": 5738, "is_delete": false, "file_type": 1, "original_file_name": "0#-225-白色小领净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f56e760c394f80a13d60e4cf8731a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f56e760c394f80a13d60e4cf8731a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f56e760c394f80a13d60e4cf8731a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57f56e760c394f80a13d60e4cf8731a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57f56e760c394f80a13d60e4cf8731a3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFUH2lpLePnpcA29vEFwnYsWa34=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.117417+00 2025-12-09 10:14:39.117421+00 2915 HSH002#宝蓝 SPMX-20240815298035 \N \N \N 1 \N [{"file_id": "3f26165b-a0b3-4158-a62c-b87ab889f54a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce1083d22fca466a842af4ec3048fd4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce1083d22fca466a842af4ec3048fd4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce1083d22fca466a842af4ec3048fd4a.jpg", "file_size": 13201, "is_delete": false, "file_type": 1, "original_file_name": "HSH002#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1083d22fca466a842af4ec3048fd4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1083d22fca466a842af4ec3048fd4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1083d22fca466a842af4ec3048fd4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce1083d22fca466a842af4ec3048fd4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce1083d22fca466a842af4ec3048fd4a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpxqDQzSTUbtO2nQL0ttaDiwX40=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.118407+00 2025-12-09 10:14:39.118411+00 2916 LZ1176#上身4号色 SPMX-20240815298038 \N \N \N 1 \N [{"file_id": "b0ab55d5-76a7-4a61-bcb4-14aa99937192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c40a5cf4253485c8dc76c8499fd8481.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c40a5cf4253485c8dc76c8499fd8481.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c40a5cf4253485c8dc76c8499fd8481.jpg", "file_size": 11931, "is_delete": false, "file_type": 1, "original_file_name": "LZ1176#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40a5cf4253485c8dc76c8499fd8481.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40a5cf4253485c8dc76c8499fd8481.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40a5cf4253485c8dc76c8499fd8481.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c40a5cf4253485c8dc76c8499fd8481.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c40a5cf4253485c8dc76c8499fd8481.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehUuV6jzJ7-MoGE2vzNC5r00lcU=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.119382+00 2025-12-09 10:14:39.119387+00 2917 80020#短袖子 SPMX-20240815298044 \N \N \N 1 \N [{"file_id": "17b796b9-01c2-4448-9695-45f0b04718ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32a9f9786c214c01a36b7be96168f4c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32a9f9786c214c01a36b7be96168f4c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32a9f9786c214c01a36b7be96168f4c2.jpg", "file_size": 23282, "is_delete": false, "file_type": 1, "original_file_name": "80020#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a9f9786c214c01a36b7be96168f4c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a9f9786c214c01a36b7be96168f4c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a9f9786c214c01a36b7be96168f4c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32a9f9786c214c01a36b7be96168f4c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32a9f9786c214c01a36b7be96168f4c2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qKA0neMZ8rUQ0Me2zdL5r-LDYg=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.120357+00 2025-12-09 10:14:39.120361+00 2918 JS0104-A18#绿色 SPMX-20240815298036 \N \N \N 1 \N [{"file_id": "93e5e8cb-e697-4e1c-97cd-b6ba55aecc6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7538ec0aa90845b29c8f4310ab57ce05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7538ec0aa90845b29c8f4310ab57ce05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7538ec0aa90845b29c8f4310ab57ce05.jpg", "file_size": 12997, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A18#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7538ec0aa90845b29c8f4310ab57ce05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7538ec0aa90845b29c8f4310ab57ce05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7538ec0aa90845b29c8f4310ab57ce05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7538ec0aa90845b29c8f4310ab57ce05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7538ec0aa90845b29c8f4310ab57ce05.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixgxNc_FWQOoejQdH42vuMJZpEA=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.121359+00 2025-12-09 10:14:39.121363+00 2919 FHPKDK-批布066-3 SPMX-20240815298043 \N \N \N 1 \N [{"file_id": "86382b56-bf9a-4890-b887-e95a691adb44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8f97ded28d64d8a800d0f1345b2d06d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8f97ded28d64d8a800d0f1345b2d06d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8f97ded28d64d8a800d0f1345b2d06d.jpg", "file_size": 31279, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布066-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f97ded28d64d8a800d0f1345b2d06d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f97ded28d64d8a800d0f1345b2d06d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f97ded28d64d8a800d0f1345b2d06d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8f97ded28d64d8a800d0f1345b2d06d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8f97ded28d64d8a800d0f1345b2d06d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxTOvgnOtghCYQqQxTru-uoXUHk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.12235+00 2025-12-09 10:14:39.122354+00 2920 JS0104-A18#黑色 SPMX-20240815298047 \N \N \N 1 \N [{"file_id": "53595403-4eb9-4df5-ad5e-1221ed0e853f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f3749ff11fb46fbb76e393719a416b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f3749ff11fb46fbb76e393719a416b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f3749ff11fb46fbb76e393719a416b6.jpg", "file_size": 9722, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A18#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3749ff11fb46fbb76e393719a416b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3749ff11fb46fbb76e393719a416b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3749ff11fb46fbb76e393719a416b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f3749ff11fb46fbb76e393719a416b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f3749ff11fb46fbb76e393719a416b6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EB_I5o-by3cQCSVWJmbErtuufuE=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.123336+00 2025-12-09 10:14:39.12334+00 2921 22A26单#-4 SPMX-20240815298049 \N \N \N 1 \N [{"file_id": "e4be6e55-c968-4656-b401-0529dcb7bcdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785e22667c5345298fd788315b042528.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785e22667c5345298fd788315b042528.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785e22667c5345298fd788315b042528.jpg", "file_size": 25364, "is_delete": false, "file_type": 1, "original_file_name": "22A26单#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785e22667c5345298fd788315b042528.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785e22667c5345298fd788315b042528.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785e22667c5345298fd788315b042528.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785e22667c5345298fd788315b042528.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785e22667c5345298fd788315b042528.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zF4J4_3HO8AupfkAKOtLz2C-AnA=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.124307+00 2025-12-09 10:14:39.124311+00 2922 LHJ2206#长裙草绿 SPMX-20240815298046 \N \N \N 1 \N [{"file_id": "39a70bb1-488b-4a7e-b1f9-f87a573983be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb8fd99683f4e3eaf06b25439b7aa23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb8fd99683f4e3eaf06b25439b7aa23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb8fd99683f4e3eaf06b25439b7aa23.jpg", "file_size": 15811, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb8fd99683f4e3eaf06b25439b7aa23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb8fd99683f4e3eaf06b25439b7aa23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb8fd99683f4e3eaf06b25439b7aa23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb8fd99683f4e3eaf06b25439b7aa23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb8fd99683f4e3eaf06b25439b7aa23.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0YPWt5awsfEsXBr_F_jCLHVjz8=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.125298+00 2025-12-09 10:14:39.125302+00 2923 0#-147-1#杏色大领子 SPMX-20240815298037 \N \N \N 1 \N [{"file_id": "1cb54e14-40f0-42f6-a791-5bf6bb9010c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6b14ab745f343e09ecae1eb9afbe8f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6b14ab745f343e09ecae1eb9afbe8f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6b14ab745f343e09ecae1eb9afbe8f1.jpg", "file_size": 8125, "is_delete": false, "file_type": 1, "original_file_name": "0#-147-1#杏色大领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b14ab745f343e09ecae1eb9afbe8f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b14ab745f343e09ecae1eb9afbe8f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b14ab745f343e09ecae1eb9afbe8f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6b14ab745f343e09ecae1eb9afbe8f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6b14ab745f343e09ecae1eb9afbe8f1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9MifuBasEguZWNRRffznkwP2Rkk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.126268+00 2025-12-09 10:14:39.126272+00 2924 LHJ2206#长裙紫色 SPMX-20240815298034 \N \N \N 1 \N [{"file_id": "090f0aa4-2650-4c71-bdd7-6a2e9a07335a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5883b2fc981842cb98656099d7a14582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5883b2fc981842cb98656099d7a14582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5883b2fc981842cb98656099d7a14582.jpg", "file_size": 17508, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5883b2fc981842cb98656099d7a14582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5883b2fc981842cb98656099d7a14582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5883b2fc981842cb98656099d7a14582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5883b2fc981842cb98656099d7a14582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5883b2fc981842cb98656099d7a14582.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOD0gMdF1KIB6Z2qBXXs_GCG7G8=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.127224+00 2025-12-09 10:14:39.127227+00 2925 DH003#3XL2件 SPMX-20240815298041 \N \N \N 1 \N [{"file_id": "4f2283f1-0a72-4f54-b544-6bc0eaf835b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a680b7b3f14648c09388daf584ae787c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a680b7b3f14648c09388daf584ae787c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a680b7b3f14648c09388daf584ae787c.jpg", "file_size": 10646, "is_delete": false, "file_type": 1, "original_file_name": "DH003#3XL2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a680b7b3f14648c09388daf584ae787c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a680b7b3f14648c09388daf584ae787c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a680b7b3f14648c09388daf584ae787c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a680b7b3f14648c09388daf584ae787c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a680b7b3f14648c09388daf584ae787c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOpTmMsTQa5njsSa3O7XS-EMDjI=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.128205+00 2025-12-09 10:14:39.128209+00 2926 HSH002#棕Z SPMX-20240815298045 \N \N \N 1 \N [{"file_id": "f7505a4d-641c-493c-80a8-1f6ff542ec20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "956e9f78fe474216a648c61201281f18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "956e9f78fe474216a648c61201281f18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "956e9f78fe474216a648c61201281f18.jpg", "file_size": 10460, "is_delete": false, "file_type": 1, "original_file_name": "HSH002#棕Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956e9f78fe474216a648c61201281f18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956e9f78fe474216a648c61201281f18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956e9f78fe474216a648c61201281f18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/956e9f78fe474216a648c61201281f18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/956e9f78fe474216a648c61201281f18.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NeHIZ5jW1_dYHfjNOwrQrk7VdYA=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.129193+00 2025-12-09 10:14:39.129196+00 2927 80020#短袖上衣 SPMX-20240815298032 \N \N \N 1 \N [{"file_id": "fad98df6-122e-4675-a0fc-955dd7ac9ad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d62df2c3e1d419ab5f14bb059768acb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d62df2c3e1d419ab5f14bb059768acb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d62df2c3e1d419ab5f14bb059768acb.jpg", "file_size": 22860, "is_delete": false, "file_type": 1, "original_file_name": "80020#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d62df2c3e1d419ab5f14bb059768acb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d62df2c3e1d419ab5f14bb059768acb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d62df2c3e1d419ab5f14bb059768acb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d62df2c3e1d419ab5f14bb059768acb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d62df2c3e1d419ab5f14bb059768acb.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoDxDKGwWp0TCdgBETUhRhvLhZw=", "createTime": "2024-08-15 14:37:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.13027+00 2025-12-09 10:14:39.130275+00 2928 22A26单#-3 SPMX-20240815298040 \N \N \N 1 \N [{"file_id": "d018da19-b987-4caf-94d7-1a7923c23620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68db668b4a364dc59dc82e3267283a8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68db668b4a364dc59dc82e3267283a8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68db668b4a364dc59dc82e3267283a8b.jpg", "file_size": 15392, "is_delete": false, "file_type": 1, "original_file_name": "22A26单#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68db668b4a364dc59dc82e3267283a8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68db668b4a364dc59dc82e3267283a8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68db668b4a364dc59dc82e3267283a8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68db668b4a364dc59dc82e3267283a8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68db668b4a364dc59dc82e3267283a8b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qqkv7NHG3hs3RCoZQBqmaCHtlfo=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.131366+00 2025-12-09 10:14:39.131371+00 2929 103A#-大码+105A小码-紫色 SPMX-20240815298042 \N \N \N 1 \N [{"file_id": "01f34325-7383-471a-9ffe-a5fda2949126", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329175bfb1324b5c8c1ff1431d137871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329175bfb1324b5c8c1ff1431d137871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329175bfb1324b5c8c1ff1431d137871.jpg", "file_size": 70500, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329175bfb1324b5c8c1ff1431d137871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329175bfb1324b5c8c1ff1431d137871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329175bfb1324b5c8c1ff1431d137871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329175bfb1324b5c8c1ff1431d137871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329175bfb1324b5c8c1ff1431d137871.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g66owMqTsQyBAwzm1QXRlZoD0i0=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.132356+00 2025-12-09 10:14:39.132359+00 2930 FHPKDK-批布066-2 SPMX-20240815298033 \N \N \N 1 \N [{"file_id": "3b4fe10d-71f9-425c-a8f7-87b383acdeca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3125073067714548b8cd60c2d963d888.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3125073067714548b8cd60c2d963d888.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3125073067714548b8cd60c2d963d888.jpg", "file_size": 35821, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布066-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3125073067714548b8cd60c2d963d888.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3125073067714548b8cd60c2d963d888.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3125073067714548b8cd60c2d963d888.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3125073067714548b8cd60c2d963d888.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3125073067714548b8cd60c2d963d888.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPNAh1UVFEvD64e_O2SPM_bbIcE=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.133357+00 2025-12-09 10:14:39.133361+00 2931 C211#白色 SPMX-20240815298039 \N \N \N 1 \N [{"file_id": "4f3ae159-3f03-4e03-85ca-9b57d7280915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52417521f3914f69b49d44cbc21479a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52417521f3914f69b49d44cbc21479a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52417521f3914f69b49d44cbc21479a0.jpg", "file_size": 21124, "is_delete": false, "file_type": 1, "original_file_name": "C211#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52417521f3914f69b49d44cbc21479a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52417521f3914f69b49d44cbc21479a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52417521f3914f69b49d44cbc21479a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52417521f3914f69b49d44cbc21479a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52417521f3914f69b49d44cbc21479a0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcRPDYTkp9d0jkvRMyu3MVsi9Jk=", "createTime": "2024-08-15 14:37:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.134318+00 2025-12-09 10:14:39.134322+00 2932 DH003#4XL-L SPMX-20240815298052 \N \N \N 1 \N [{"file_id": "7e23b3c8-4bb3-49c7-bd33-a9a568335df0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "350396e15bd7415d9f45275fe176c67a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "350396e15bd7415d9f45275fe176c67a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "350396e15bd7415d9f45275fe176c67a.jpg", "file_size": 10504, "is_delete": false, "file_type": 1, "original_file_name": "DH003#4XL-L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/350396e15bd7415d9f45275fe176c67a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/350396e15bd7415d9f45275fe176c67a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/350396e15bd7415d9f45275fe176c67a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/350396e15bd7415d9f45275fe176c67a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/350396e15bd7415d9f45275fe176c67a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkrXA_92G9-pKmjLzF8BcaPALTQ=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.135299+00 2025-12-09 10:14:39.135304+00 2933 22A26单#-5 SPMX-20240815298057 \N \N \N 1 \N [{"file_id": "2bb8e693-2a25-44e3-831d-dc74444625cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "591abb1cba05459180e993326bf307c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "591abb1cba05459180e993326bf307c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "591abb1cba05459180e993326bf307c3.jpg", "file_size": 18053, "is_delete": false, "file_type": 1, "original_file_name": "22A26单#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591abb1cba05459180e993326bf307c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591abb1cba05459180e993326bf307c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591abb1cba05459180e993326bf307c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/591abb1cba05459180e993326bf307c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/591abb1cba05459180e993326bf307c3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mA4PbKunE7kBRBGgPjCKTdjdUEE=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.136264+00 2025-12-09 10:14:39.136268+00 2934 LZ1177#上身2号色 SPMX-20240815298062 \N \N \N 1 \N [{"file_id": "4ac49d95-4b9b-4ed7-8c7c-294eb9fe77a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b7d94d5e3824afc88b146c8b82a9657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b7d94d5e3824afc88b146c8b82a9657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b7d94d5e3824afc88b146c8b82a9657.jpg", "file_size": 11605, "is_delete": false, "file_type": 1, "original_file_name": "LZ1177#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7d94d5e3824afc88b146c8b82a9657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7d94d5e3824afc88b146c8b82a9657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7d94d5e3824afc88b146c8b82a9657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b7d94d5e3824afc88b146c8b82a9657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b7d94d5e3824afc88b146c8b82a9657.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bO6lWmH6vVPpjBavOZi4Put19gM=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.137257+00 2025-12-09 10:14:39.137261+00 2935 HSH002#粉 SPMX-20240815298055 \N \N \N 1 \N [{"file_id": "7dd5f123-ad9c-4612-b941-c74008ffbe9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57dbb54132214f379f9b7f43e85e6cda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57dbb54132214f379f9b7f43e85e6cda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57dbb54132214f379f9b7f43e85e6cda.jpg", "file_size": 10657, "is_delete": false, "file_type": 1, "original_file_name": "HSH002#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dbb54132214f379f9b7f43e85e6cda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dbb54132214f379f9b7f43e85e6cda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dbb54132214f379f9b7f43e85e6cda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57dbb54132214f379f9b7f43e85e6cda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57dbb54132214f379f9b7f43e85e6cda.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMjlTg6ZeutbaDHcvK-i2a1XT4w=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.138234+00 2025-12-09 10:14:39.138239+00 2936 C211#黑色 SPMX-20240815298060 \N \N \N 1 \N [{"file_id": "583c7692-0de6-4a78-878c-7bdfbaa5cc43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f89d09e1f7d34a05a729846af5a2ba65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f89d09e1f7d34a05a729846af5a2ba65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f89d09e1f7d34a05a729846af5a2ba65.jpg", "file_size": 20247, "is_delete": false, "file_type": 1, "original_file_name": "C211#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89d09e1f7d34a05a729846af5a2ba65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89d09e1f7d34a05a729846af5a2ba65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89d09e1f7d34a05a729846af5a2ba65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f89d09e1f7d34a05a729846af5a2ba65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f89d09e1f7d34a05a729846af5a2ba65.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuwvFps_HellYoy4wW9wfErdrhQ=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.139223+00 2025-12-09 10:14:39.139227+00 2937 0#RC23-衬衣款-加长-橙色 SPMX-20240815298061 \N \N \N 1 \N [{"file_id": "f2a3b023-2e2a-4e3c-a569-f7a59a379689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67f158d4868a40bfa38e9afdeecde06f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67f158d4868a40bfa38e9afdeecde06f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67f158d4868a40bfa38e9afdeecde06f.jpg", "file_size": 50116, "is_delete": false, "file_type": 1, "original_file_name": "0#RC23-衬衣款-加长-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f158d4868a40bfa38e9afdeecde06f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f158d4868a40bfa38e9afdeecde06f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f158d4868a40bfa38e9afdeecde06f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67f158d4868a40bfa38e9afdeecde06f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67f158d4868a40bfa38e9afdeecde06f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuBsmhbanp4PEB4-9-NkHWGbUOk=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.140182+00 2025-12-09 10:14:39.140186+00 2938 80022#短袖上衣 SPMX-20240815298053 \N \N \N 1 \N [{"file_id": "170c5256-223b-4814-98f0-0da585220244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f746f99bc54546c3a1106324fd9bc01a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f746f99bc54546c3a1106324fd9bc01a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f746f99bc54546c3a1106324fd9bc01a.jpg", "file_size": 22976, "is_delete": false, "file_type": 1, "original_file_name": "80022#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f99bc54546c3a1106324fd9bc01a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f99bc54546c3a1106324fd9bc01a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f99bc54546c3a1106324fd9bc01a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f746f99bc54546c3a1106324fd9bc01a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f746f99bc54546c3a1106324fd9bc01a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fhgoH3bO3A97czRWh4raw2gI4Q=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.14117+00 2025-12-09 10:14:39.141173+00 2939 LZ1177#上身1号色 SPMX-20240815298051 \N \N \N 1 \N [{"file_id": "bc039ad3-6fd4-48e0-8b75-52441317f462", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed07353c0ea94d5e978bdab3dca2cab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed07353c0ea94d5e978bdab3dca2cab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed07353c0ea94d5e978bdab3dca2cab6.jpg", "file_size": 12082, "is_delete": false, "file_type": 1, "original_file_name": "LZ1177#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed07353c0ea94d5e978bdab3dca2cab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed07353c0ea94d5e978bdab3dca2cab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed07353c0ea94d5e978bdab3dca2cab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed07353c0ea94d5e978bdab3dca2cab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed07353c0ea94d5e978bdab3dca2cab6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w83NHq9ZYLX-lBCC4cMC_-TLqX4=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.142148+00 2025-12-09 10:14:39.142152+00 2940 103A#-大码+105A小码-红色 SPMX-20240815298059 \N \N \N 1 \N [{"file_id": "83b152f5-a465-45a0-b38a-7dffeb3156ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7687eb76e56f4d9e97b8c205db779bc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7687eb76e56f4d9e97b8c205db779bc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7687eb76e56f4d9e97b8c205db779bc9.jpg", "file_size": 70471, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7687eb76e56f4d9e97b8c205db779bc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7687eb76e56f4d9e97b8c205db779bc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7687eb76e56f4d9e97b8c205db779bc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7687eb76e56f4d9e97b8c205db779bc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7687eb76e56f4d9e97b8c205db779bc9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DjDjeX-1FFCrXEeic4eUI6LCNRc=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.143126+00 2025-12-09 10:14:39.14313+00 2941 C211#绿色 SPMX-20240815298050 \N \N \N 1 \N [{"file_id": "1436dfc0-1059-4002-9d11-f5300a61ed70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19be0eed7164454cbcedd15e02bfe919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19be0eed7164454cbcedd15e02bfe919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19be0eed7164454cbcedd15e02bfe919.jpg", "file_size": 19040, "is_delete": false, "file_type": 1, "original_file_name": "C211#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19be0eed7164454cbcedd15e02bfe919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19be0eed7164454cbcedd15e02bfe919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19be0eed7164454cbcedd15e02bfe919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19be0eed7164454cbcedd15e02bfe919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19be0eed7164454cbcedd15e02bfe919.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogVF-mtOC8vK9VVgpkvYkmT_EgA=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.144095+00 2025-12-09 10:14:39.144099+00 2942 LHJ2206#长裙黑色 SPMX-20240815298056 \N \N \N 1 \N [{"file_id": "6aea9cd5-20b4-4244-9673-c332e915ad6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c04d86f1ba824b09b61516ffa5a4b3f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c04d86f1ba824b09b61516ffa5a4b3f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c04d86f1ba824b09b61516ffa5a4b3f2.jpg", "file_size": 19750, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206#长裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d86f1ba824b09b61516ffa5a4b3f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d86f1ba824b09b61516ffa5a4b3f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d86f1ba824b09b61516ffa5a4b3f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c04d86f1ba824b09b61516ffa5a4b3f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c04d86f1ba824b09b61516ffa5a4b3f2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZBk_OYbejEdRT0AW-BP-T3rwTM=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.145069+00 2025-12-09 10:14:39.145073+00 2943 FHPKDK-批布066-4 SPMX-20240815298054 \N \N \N 1 \N [{"file_id": "324fed53-9950-4c92-a309-dcdf89e183c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b41b29bf700443a793be34934883d54d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b41b29bf700443a793be34934883d54d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b41b29bf700443a793be34934883d54d.jpg", "file_size": 28841, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布066-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41b29bf700443a793be34934883d54d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41b29bf700443a793be34934883d54d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41b29bf700443a793be34934883d54d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b41b29bf700443a793be34934883d54d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b41b29bf700443a793be34934883d54d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9e7Gxx5R2dGxzzwhvWK2qXlyLIc=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.146043+00 2025-12-09 10:14:39.146047+00 2944 JS0104-A19#LWQ15 SPMX-20240815298058 \N \N \N 1 \N [{"file_id": "e778bcb4-39fa-462a-b9cd-aa1ef8283791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecb9ff196de5414da5db68d96af97f58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecb9ff196de5414da5db68d96af97f58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecb9ff196de5414da5db68d96af97f58.jpg", "file_size": 25539, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A19#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb9ff196de5414da5db68d96af97f58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb9ff196de5414da5db68d96af97f58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb9ff196de5414da5db68d96af97f58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecb9ff196de5414da5db68d96af97f58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecb9ff196de5414da5db68d96af97f58.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z49a6sBNO1BaxxgmkZ2CXiHeKrA=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.147027+00 2025-12-09 10:14:39.147031+00 2945 DH003#4XL2件 SPMX-20240815298063 \N \N \N 1 \N [{"file_id": "89c6575b-590d-4312-bfaa-e13082c3a24a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdebad40f7d04573a0aa9a0e05cf9db4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdebad40f7d04573a0aa9a0e05cf9db4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdebad40f7d04573a0aa9a0e05cf9db4.jpg", "file_size": 11436, "is_delete": false, "file_type": 1, "original_file_name": "DH003#4XL2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdebad40f7d04573a0aa9a0e05cf9db4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdebad40f7d04573a0aa9a0e05cf9db4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdebad40f7d04573a0aa9a0e05cf9db4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdebad40f7d04573a0aa9a0e05cf9db4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdebad40f7d04573a0aa9a0e05cf9db4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K16IWjSjcJ7FeiPGP-9LH34tewc=", "createTime": "2024-08-15 14:37:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.147985+00 2025-12-09 10:14:39.147989+00 2946 80022#短袖子 SPMX-20240815298064 \N \N \N 1 \N [{"file_id": "16b49e6d-d928-4516-9781-f1efbe9cf611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fbd7007a0864170928c6dc469bf0c6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fbd7007a0864170928c6dc469bf0c6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fbd7007a0864170928c6dc469bf0c6a.jpg", "file_size": 22953, "is_delete": false, "file_type": 1, "original_file_name": "80022#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbd7007a0864170928c6dc469bf0c6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbd7007a0864170928c6dc469bf0c6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbd7007a0864170928c6dc469bf0c6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fbd7007a0864170928c6dc469bf0c6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fbd7007a0864170928c6dc469bf0c6a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELQP2NXlvL02vxwwWdNOnwZCLqE=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.149146+00 2025-12-09 10:14:39.14915+00 2947 FHPKDK-批布066-6 SPMX-20240815298065 \N \N \N 1 \N [{"file_id": "93448b31-9b06-4579-8f60-34e62a8d4de0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8dd6875444049ccaba27c43482939a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8dd6875444049ccaba27c43482939a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8dd6875444049ccaba27c43482939a6.jpg", "file_size": 31992, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布066-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8dd6875444049ccaba27c43482939a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8dd6875444049ccaba27c43482939a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8dd6875444049ccaba27c43482939a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8dd6875444049ccaba27c43482939a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8dd6875444049ccaba27c43482939a6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbcNeE4cortCROMkbYUs6d5Q4PI=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.1502+00 2025-12-09 10:14:39.150204+00 2948 HSH002#黑Z SPMX-20240815298066 \N \N \N 1 \N [{"file_id": "04d4bf06-7662-4bc0-b037-a37eb330f154", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "709c8b088f6942f0805ca5c2999ead15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "709c8b088f6942f0805ca5c2999ead15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "709c8b088f6942f0805ca5c2999ead15.jpg", "file_size": 12563, "is_delete": false, "file_type": 1, "original_file_name": "HSH002#黑Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709c8b088f6942f0805ca5c2999ead15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709c8b088f6942f0805ca5c2999ead15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709c8b088f6942f0805ca5c2999ead15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/709c8b088f6942f0805ca5c2999ead15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/709c8b088f6942f0805ca5c2999ead15.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YE1qDyr6Z2F_bNJhgbS-DxFhOaQ=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.1512+00 2025-12-09 10:14:39.151204+00 2949 FHPKDK-批布067-2 SPMX-20240815298073 \N \N \N 1 \N [{"file_id": "3e8e8bd5-a6fd-4385-adf0-42d33103f5c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8551d74214de4ed59be3945b701dd7e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8551d74214de4ed59be3945b701dd7e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8551d74214de4ed59be3945b701dd7e6.jpg", "file_size": 34307, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布067-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8551d74214de4ed59be3945b701dd7e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8551d74214de4ed59be3945b701dd7e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8551d74214de4ed59be3945b701dd7e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8551d74214de4ed59be3945b701dd7e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8551d74214de4ed59be3945b701dd7e6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBhkl20vIR6kSe795vssaepa0rI=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.152186+00 2025-12-09 10:14:39.15219+00 2950 DH003#5XL-2XL SPMX-20240815298070 \N \N \N 1 \N [{"file_id": "c493dbab-2a48-40cd-b4b0-8c9c2ec1e085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d3a2d8924a14260abdfdd1bf6451aab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d3a2d8924a14260abdfdd1bf6451aab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d3a2d8924a14260abdfdd1bf6451aab.jpg", "file_size": 12335, "is_delete": false, "file_type": 1, "original_file_name": "DH003#5XL-2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3a2d8924a14260abdfdd1bf6451aab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3a2d8924a14260abdfdd1bf6451aab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3a2d8924a14260abdfdd1bf6451aab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d3a2d8924a14260abdfdd1bf6451aab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d3a2d8924a14260abdfdd1bf6451aab.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjVs6y_Lue8PgYfzNwRpnvbWy2s=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.153158+00 2025-12-09 10:14:39.153163+00 2951 JS0104-A19#WJC22 SPMX-20240815298075 \N \N \N 1 \N [{"file_id": "1323c62f-62ef-4b24-9385-5647cff1bf3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fd431fef5d047cfb96b1b050793a40c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fd431fef5d047cfb96b1b050793a40c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fd431fef5d047cfb96b1b050793a40c.jpg", "file_size": 13903, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A19#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd431fef5d047cfb96b1b050793a40c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd431fef5d047cfb96b1b050793a40c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd431fef5d047cfb96b1b050793a40c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fd431fef5d047cfb96b1b050793a40c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fd431fef5d047cfb96b1b050793a40c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytY-VVt2jbrIWyZvYuogzqwS-8Q=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.15414+00 2025-12-09 10:14:39.154143+00 2952 22A79#A1 SPMX-20240815298068 \N \N \N 1 \N [{"file_id": "b7000e43-6343-49ad-9817-9984d16f8730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1eacb9f14174288a8fb1e4abc7f4fe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1eacb9f14174288a8fb1e4abc7f4fe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1eacb9f14174288a8fb1e4abc7f4fe3.jpg", "file_size": 5874, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eacb9f14174288a8fb1e4abc7f4fe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eacb9f14174288a8fb1e4abc7f4fe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eacb9f14174288a8fb1e4abc7f4fe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1eacb9f14174288a8fb1e4abc7f4fe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1eacb9f14174288a8fb1e4abc7f4fe3.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtLG8hlWj0tUAhNsaQjvQhzIv_Y=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.155148+00 2025-12-09 10:14:39.155153+00 2953 80023#短袖上衣 SPMX-20240815298071 \N \N \N 1 \N [{"file_id": "4b6955d7-646a-419b-8fd0-d359713aa91b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b30ee53807a14dbf84ef04eb46dc9265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b30ee53807a14dbf84ef04eb46dc9265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b30ee53807a14dbf84ef04eb46dc9265.jpg", "file_size": 19838, "is_delete": false, "file_type": 1, "original_file_name": "80023#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30ee53807a14dbf84ef04eb46dc9265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30ee53807a14dbf84ef04eb46dc9265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30ee53807a14dbf84ef04eb46dc9265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b30ee53807a14dbf84ef04eb46dc9265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b30ee53807a14dbf84ef04eb46dc9265.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OMQxRXOC2QIGyFE-8BtkhwEH_U=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.156132+00 2025-12-09 10:14:39.156136+00 2954 LHJ2206-1#短裙彩兰 SPMX-20240815298079 \N \N \N 1 \N [{"file_id": "43236124-9dfc-424a-9638-705867e6d1e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "362b3a56ef754a479488c50099ecc2c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "362b3a56ef754a479488c50099ecc2c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "362b3a56ef754a479488c50099ecc2c6.jpg", "file_size": 23244, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362b3a56ef754a479488c50099ecc2c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362b3a56ef754a479488c50099ecc2c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362b3a56ef754a479488c50099ecc2c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/362b3a56ef754a479488c50099ecc2c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/362b3a56ef754a479488c50099ecc2c6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6swykp8Ty3ZjIS8D3DwdTcNTnc=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.15712+00 2025-12-09 10:14:39.157124+00 2955 0001#WJC22 SPMX-20240815298074 \N \N \N 1 \N [{"file_id": "b67e7e93-1f09-4ff6-9aa9-e2298101bfcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c605d01bd3e344eeabc85122f7469a3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c605d01bd3e344eeabc85122f7469a3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c605d01bd3e344eeabc85122f7469a3b.jpg", "file_size": 31086, "is_delete": false, "file_type": 1, "original_file_name": "0001#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605d01bd3e344eeabc85122f7469a3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605d01bd3e344eeabc85122f7469a3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605d01bd3e344eeabc85122f7469a3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c605d01bd3e344eeabc85122f7469a3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c605d01bd3e344eeabc85122f7469a3b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYQdk084qMAzMUC7a_NJJ4gKJlg=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.158097+00 2025-12-09 10:14:39.158101+00 2956 80023#短袖子 SPMX-20240815298082 \N \N \N 1 \N [{"file_id": "b2b79879-0047-45b6-9279-1bd33f5fd95f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfa88045278e471d84320b5c72bc43c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfa88045278e471d84320b5c72bc43c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfa88045278e471d84320b5c72bc43c7.jpg", "file_size": 16277, "is_delete": false, "file_type": 1, "original_file_name": "80023#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa88045278e471d84320b5c72bc43c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa88045278e471d84320b5c72bc43c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa88045278e471d84320b5c72bc43c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfa88045278e471d84320b5c72bc43c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfa88045278e471d84320b5c72bc43c7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoKgFpp5NKNsrV0vlw2bavV3N3I=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.159095+00 2025-12-09 10:14:39.159099+00 2957 C212-C212-1#兰咖 SPMX-20240815298069 \N \N \N 1 \N [{"file_id": "c9d3796a-ce62-4ff5-94df-0f80372590ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11d5cc5d84b74f6e93caef187cfcfe1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11d5cc5d84b74f6e93caef187cfcfe1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11d5cc5d84b74f6e93caef187cfcfe1c.jpg", "file_size": 25910, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#兰咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d5cc5d84b74f6e93caef187cfcfe1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d5cc5d84b74f6e93caef187cfcfe1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d5cc5d84b74f6e93caef187cfcfe1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11d5cc5d84b74f6e93caef187cfcfe1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11d5cc5d84b74f6e93caef187cfcfe1c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hacy5YAVLatruvuxbatMExOJxYo=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.160112+00 2025-12-09 10:14:39.160116+00 2958 LHJ2206-1#短裙墨绿 SPMX-20240815298067 \N \N \N 1 \N [{"file_id": "300339d5-9997-44ca-9736-8b2680f51782", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c005059b9a6497093e97fc255fb8423.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c005059b9a6497093e97fc255fb8423.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c005059b9a6497093e97fc255fb8423.jpg", "file_size": 23264, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c005059b9a6497093e97fc255fb8423.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c005059b9a6497093e97fc255fb8423.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c005059b9a6497093e97fc255fb8423.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c005059b9a6497093e97fc255fb8423.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c005059b9a6497093e97fc255fb8423.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHc8V9Ou4GgsoBQGLM2hJJngkCs=", "createTime": "2024-08-15 14:37:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.161098+00 2025-12-09 10:14:39.161102+00 2959 LZ1177#上身3号色 SPMX-20240815298072 \N \N \N 1 \N [{"file_id": "10f2590c-a0db-4af5-8bdc-ab1c743925a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6347a9c808e44084ba813a3295c47003.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6347a9c808e44084ba813a3295c47003.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6347a9c808e44084ba813a3295c47003.jpg", "file_size": 13154, "is_delete": false, "file_type": 1, "original_file_name": "LZ1177#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6347a9c808e44084ba813a3295c47003.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6347a9c808e44084ba813a3295c47003.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6347a9c808e44084ba813a3295c47003.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6347a9c808e44084ba813a3295c47003.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6347a9c808e44084ba813a3295c47003.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqUgfUSj5UY3HU_ZI8aOb3s__R4=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.162104+00 2025-12-09 10:14:39.162108+00 2960 HSH002FW#VS-D3 SPMX-20240815298078 \N \N \N 1 \N [{"file_id": "a13b9842-074f-4189-b9ea-0adaf15a5fd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33124783b24d4cb0ae71fba7b2dd193b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33124783b24d4cb0ae71fba7b2dd193b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33124783b24d4cb0ae71fba7b2dd193b.jpg", "file_size": 23274, "is_delete": false, "file_type": 1, "original_file_name": "HSH002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33124783b24d4cb0ae71fba7b2dd193b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33124783b24d4cb0ae71fba7b2dd193b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33124783b24d4cb0ae71fba7b2dd193b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33124783b24d4cb0ae71fba7b2dd193b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33124783b24d4cb0ae71fba7b2dd193b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LngixUD5ZvH4P_lbr1OGmUe4fc=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.163089+00 2025-12-09 10:14:39.163092+00 2961 C212-C212-1#兰橙 SPMX-20240815298080 \N \N \N 1 \N [{"file_id": "36bd9bac-d34e-4e82-840d-8b48829e1c2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e883c4ac65a48b68bd8773b0ebde05d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e883c4ac65a48b68bd8773b0ebde05d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e883c4ac65a48b68bd8773b0ebde05d.jpg", "file_size": 25176, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#兰橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e883c4ac65a48b68bd8773b0ebde05d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e883c4ac65a48b68bd8773b0ebde05d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e883c4ac65a48b68bd8773b0ebde05d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e883c4ac65a48b68bd8773b0ebde05d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e883c4ac65a48b68bd8773b0ebde05d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkKBj9reojhKJk95pOfY91j_GB0=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.164109+00 2025-12-09 10:14:39.164114+00 2962 22A79#A2 SPMX-20240815298077 \N \N \N 1 \N [{"file_id": "956d6d30-d598-482b-a5f8-16b302cf707f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd540bfda3c498aa54af9b0c7036c05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd540bfda3c498aa54af9b0c7036c05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd540bfda3c498aa54af9b0c7036c05.jpg", "file_size": 8088, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd540bfda3c498aa54af9b0c7036c05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd540bfda3c498aa54af9b0c7036c05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd540bfda3c498aa54af9b0c7036c05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd540bfda3c498aa54af9b0c7036c05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd540bfda3c498aa54af9b0c7036c05.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_RlJox22ofOj7TER2jVwswtimI=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.165088+00 2025-12-09 10:14:39.165091+00 2963 103A#-大码+105A小码-绿色 SPMX-20240815298076 \N \N \N 1 \N [{"file_id": "737e017b-8108-4406-a2f4-90427a030033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ccd9b8e190143af9684e22a6b79377a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ccd9b8e190143af9684e22a6b79377a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ccd9b8e190143af9684e22a6b79377a.jpg", "file_size": 72195, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccd9b8e190143af9684e22a6b79377a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccd9b8e190143af9684e22a6b79377a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccd9b8e190143af9684e22a6b79377a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ccd9b8e190143af9684e22a6b79377a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ccd9b8e190143af9684e22a6b79377a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GG9Z8yG8Hg-lwXFV51jjEfIzSUM=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.166086+00 2025-12-09 10:14:39.16609+00 2964 DH003#5XL2件 SPMX-20240815298081 \N \N \N 1 \N [{"file_id": "da117887-3e26-44d2-979a-b1924bc3f065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c34802c5cacf4044a8e755fc02e2b652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c34802c5cacf4044a8e755fc02e2b652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c34802c5cacf4044a8e755fc02e2b652.jpg", "file_size": 10870, "is_delete": false, "file_type": 1, "original_file_name": "DH003#5XL2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34802c5cacf4044a8e755fc02e2b652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34802c5cacf4044a8e755fc02e2b652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34802c5cacf4044a8e755fc02e2b652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c34802c5cacf4044a8e755fc02e2b652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c34802c5cacf4044a8e755fc02e2b652.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Nyf6v0rgzm3e8L6mqp6XYZgOVA=", "createTime": "2024-08-15 14:37:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.167073+00 2025-12-09 10:14:39.167077+00 2965 LZ1177#上身4号色 SPMX-20240815298084 \N \N \N 1 \N [{"file_id": "ff496f4c-c6d2-46b9-8cf8-d973a12f826b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a298c03c73af4dfe94190451ed40be69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a298c03c73af4dfe94190451ed40be69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a298c03c73af4dfe94190451ed40be69.jpg", "file_size": 12183, "is_delete": false, "file_type": 1, "original_file_name": "LZ1177#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a298c03c73af4dfe94190451ed40be69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a298c03c73af4dfe94190451ed40be69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a298c03c73af4dfe94190451ed40be69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a298c03c73af4dfe94190451ed40be69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a298c03c73af4dfe94190451ed40be69.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9dbdV-Us75q-utug-1o8yeA-_2w=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.168098+00 2025-12-09 10:14:39.168102+00 2966 LHJ2206-1#短裙枣红 SPMX-20240815298087 \N \N \N 1 \N [{"file_id": "7ab9d3d2-9307-4919-a94c-a4a82cc15926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15a9283564914252860d5f959c3a9fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15a9283564914252860d5f959c3a9fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15a9283564914252860d5f959c3a9fd9.jpg", "file_size": 22566, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a9283564914252860d5f959c3a9fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a9283564914252860d5f959c3a9fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a9283564914252860d5f959c3a9fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15a9283564914252860d5f959c3a9fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15a9283564914252860d5f959c3a9fd9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7s-qFG8BfyasiU_M1iRuSyItno=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.16915+00 2025-12-09 10:14:39.169154+00 2967 JS0104-A2#WJC22 SPMX-20240815298094 \N \N \N 1 \N [{"file_id": "2ea8c264-bb9c-4851-903b-ed1872483574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0986c8bba038487d885de9eab4ab1ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0986c8bba038487d885de9eab4ab1ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0986c8bba038487d885de9eab4ab1ef6.jpg", "file_size": 9788, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0986c8bba038487d885de9eab4ab1ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0986c8bba038487d885de9eab4ab1ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0986c8bba038487d885de9eab4ab1ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0986c8bba038487d885de9eab4ab1ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0986c8bba038487d885de9eab4ab1ef6.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCm-_j8El2aYDKU-6QVldJ5jupk=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.170148+00 2025-12-09 10:14:39.170152+00 2968 0001-10FWE#VS-D3 SPMX-20240815298096 \N \N \N 1 \N [{"file_id": "0482e20e-ee8d-4560-878b-cd9a17a6b141", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c63ca9e48ef4fc78172cab7af4baf58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c63ca9e48ef4fc78172cab7af4baf58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c63ca9e48ef4fc78172cab7af4baf58.jpg", "file_size": 22272, "is_delete": false, "file_type": 1, "original_file_name": "0001-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c63ca9e48ef4fc78172cab7af4baf58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c63ca9e48ef4fc78172cab7af4baf58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c63ca9e48ef4fc78172cab7af4baf58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c63ca9e48ef4fc78172cab7af4baf58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c63ca9e48ef4fc78172cab7af4baf58.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jeNMi6A-qOXrcPtD85etWBrzp8=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.171119+00 2025-12-09 10:14:39.171123+00 2969 22A79#A3 SPMX-20240815298089 \N \N \N 1 \N [{"file_id": "37d81429-781b-4a9b-ac53-e6873cbef04d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4aec57aba008498b97c84a7a54217763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4aec57aba008498b97c84a7a54217763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4aec57aba008498b97c84a7a54217763.jpg", "file_size": 6058, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aec57aba008498b97c84a7a54217763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aec57aba008498b97c84a7a54217763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aec57aba008498b97c84a7a54217763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4aec57aba008498b97c84a7a54217763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4aec57aba008498b97c84a7a54217763.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQC01UVpHSXIpMn8rKnVp8jcI-Q=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.172118+00 2025-12-09 10:14:39.172122+00 2970 HSH002FWE#VS-D3 SPMX-20240815298088 \N \N \N 1 \N [{"file_id": "0b64da02-c4e2-420a-8c55-18a3807648e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7f93f20a2a24e00a379d4f6194dcbb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7f93f20a2a24e00a379d4f6194dcbb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7f93f20a2a24e00a379d4f6194dcbb4.jpg", "file_size": 20260, "is_delete": false, "file_type": 1, "original_file_name": "HSH002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f93f20a2a24e00a379d4f6194dcbb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f93f20a2a24e00a379d4f6194dcbb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f93f20a2a24e00a379d4f6194dcbb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7f93f20a2a24e00a379d4f6194dcbb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7f93f20a2a24e00a379d4f6194dcbb4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5F9VNt-ZjyrsjSK05VWHJslLOc=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.173106+00 2025-12-09 10:14:39.17311+00 2971 DH003#L2件 SPMX-20240815298090 \N \N \N 1 \N [{"file_id": "c858ac10-9a10-4413-b99f-0c8091a63b90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15050986ccc4cbcaee6bf5c362b6619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15050986ccc4cbcaee6bf5c362b6619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15050986ccc4cbcaee6bf5c362b6619.jpg", "file_size": 10185, "is_delete": false, "file_type": 1, "original_file_name": "DH003#L2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15050986ccc4cbcaee6bf5c362b6619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15050986ccc4cbcaee6bf5c362b6619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15050986ccc4cbcaee6bf5c362b6619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15050986ccc4cbcaee6bf5c362b6619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15050986ccc4cbcaee6bf5c362b6619.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUYz-ucmXF_Mq-yzR-CQ2bGW1fw=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.174116+00 2025-12-09 10:14:39.17412+00 2972 0001#批布 SPMX-20240815298085 \N \N \N 1 \N [{"file_id": "9eb12da4-1601-4c9f-8ef9-601e233aba46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "962dd0b1b9c24dde8950f97e8d5ee52f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "962dd0b1b9c24dde8950f97e8d5ee52f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "962dd0b1b9c24dde8950f97e8d5ee52f.jpg", "file_size": 9679, "is_delete": false, "file_type": 1, "original_file_name": "0001#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962dd0b1b9c24dde8950f97e8d5ee52f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962dd0b1b9c24dde8950f97e8d5ee52f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962dd0b1b9c24dde8950f97e8d5ee52f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/962dd0b1b9c24dde8950f97e8d5ee52f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/962dd0b1b9c24dde8950f97e8d5ee52f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMYaG3Iwb45ZkuuETEQxNmtF4tY=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.175114+00 2025-12-09 10:14:39.175119+00 2973 FHPKDK-批布067-3 SPMX-20240815298093 \N \N \N 1 \N [{"file_id": "d38233fa-58d8-45e3-981b-455486a7c2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "815ded719613417c969032465855fafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "815ded719613417c969032465855fafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "815ded719613417c969032465855fafd.jpg", "file_size": 43569, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布067-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815ded719613417c969032465855fafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815ded719613417c969032465855fafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815ded719613417c969032465855fafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/815ded719613417c969032465855fafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/815ded719613417c969032465855fafd.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AzH9V5G1bMw_hWD1bvN3iAIau7I=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.176125+00 2025-12-09 10:14:39.176129+00 2974 JS0104-A2#LWQ15 SPMX-20240815298083 \N \N \N 1 \N [{"file_id": "023bbc7e-8c5f-4344-8357-271e9edd911c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e52221b04f5848479ea9acf9c1550caf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e52221b04f5848479ea9acf9c1550caf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e52221b04f5848479ea9acf9c1550caf.jpg", "file_size": 10971, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52221b04f5848479ea9acf9c1550caf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52221b04f5848479ea9acf9c1550caf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52221b04f5848479ea9acf9c1550caf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e52221b04f5848479ea9acf9c1550caf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e52221b04f5848479ea9acf9c1550caf.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thFpAY7s4dM_0JXhtO_Q0rOQWIw=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.177124+00 2025-12-09 10:14:39.177128+00 2975 C212-C212-1#兰红 SPMX-20240815298086 \N \N \N 1 \N [{"file_id": "4f4c8181-eef1-4231-a634-0d0fe2f91960", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bd13a8537224bc7a5bf8e76ce585d6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bd13a8537224bc7a5bf8e76ce585d6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bd13a8537224bc7a5bf8e76ce585d6a.jpg", "file_size": 24744, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#兰红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd13a8537224bc7a5bf8e76ce585d6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd13a8537224bc7a5bf8e76ce585d6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd13a8537224bc7a5bf8e76ce585d6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bd13a8537224bc7a5bf8e76ce585d6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bd13a8537224bc7a5bf8e76ce585d6a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTP6t-aTXJoHktt1bcGiB0-e324=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.178112+00 2025-12-09 10:14:39.178115+00 2976 103A#-大码+105A小码-蓝色 SPMX-20240815298091 \N \N \N 1 \N [{"file_id": "3751c4a5-7ed2-4294-9085-46387451f194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "387f46407dbc44668a344577a8025aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "387f46407dbc44668a344577a8025aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "387f46407dbc44668a344577a8025aa9.jpg", "file_size": 73601, "is_delete": false, "file_type": 1, "original_file_name": "103A#-大码+105A小码-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/387f46407dbc44668a344577a8025aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/387f46407dbc44668a344577a8025aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/387f46407dbc44668a344577a8025aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/387f46407dbc44668a344577a8025aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/387f46407dbc44668a344577a8025aa9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7H8tqfd4iMvbs_u2Y4mfuzk8PrE=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.179113+00 2025-12-09 10:14:39.179117+00 2977 80025#短袖上衣 SPMX-20240815298092 \N \N \N 1 \N [{"file_id": "b18192d1-c92f-44bf-bc8e-225a9d8484d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0db523b1e8ec49fc851696ef430918b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0db523b1e8ec49fc851696ef430918b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0db523b1e8ec49fc851696ef430918b7.jpg", "file_size": 21331, "is_delete": false, "file_type": 1, "original_file_name": "80025#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db523b1e8ec49fc851696ef430918b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db523b1e8ec49fc851696ef430918b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db523b1e8ec49fc851696ef430918b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0db523b1e8ec49fc851696ef430918b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0db523b1e8ec49fc851696ef430918b7.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_KMHuzT-VZ2MRO6gyj9IwNJVE4=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.180099+00 2025-12-09 10:14:39.180103+00 2978 LZ1178#上身1号色 SPMX-20240815298095 \N \N \N 1 \N [{"file_id": "3b6bf9c4-4078-41fe-8f69-b12da05190f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8d0b83ed85411cb17e88735df8f58f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8d0b83ed85411cb17e88735df8f58f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8d0b83ed85411cb17e88735df8f58f.jpg", "file_size": 11596, "is_delete": false, "file_type": 1, "original_file_name": "LZ1178#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8d0b83ed85411cb17e88735df8f58f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8d0b83ed85411cb17e88735df8f58f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8d0b83ed85411cb17e88735df8f58f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8d0b83ed85411cb17e88735df8f58f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8d0b83ed85411cb17e88735df8f58f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2pwjlLuitOGcVxhBPhgP3NUZBoo=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.181117+00 2025-12-09 10:14:39.181121+00 2979 FHPKDK-批布067-4 SPMX-20240815298102 \N \N \N 1 \N [{"file_id": "e37a5bc8-4d97-4435-a379-7d460faf8947", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b64e8270d48b4c9183f94cffa9e10d76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b64e8270d48b4c9183f94cffa9e10d76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b64e8270d48b4c9183f94cffa9e10d76.jpg", "file_size": 37609, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布067-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64e8270d48b4c9183f94cffa9e10d76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64e8270d48b4c9183f94cffa9e10d76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64e8270d48b4c9183f94cffa9e10d76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b64e8270d48b4c9183f94cffa9e10d76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b64e8270d48b4c9183f94cffa9e10d76.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTpMMnilNeLIl0j6FveD1L_4INM=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.182101+00 2025-12-09 10:14:39.182105+00 2980 LHJ2206-1#短裙草绿 SPMX-20240815298110 \N \N \N 1 \N [{"file_id": "39d53d42-674a-4ef6-b773-225bed3b4021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17de4a2649734a2c8e4e8a84142c7cb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17de4a2649734a2c8e4e8a84142c7cb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17de4a2649734a2c8e4e8a84142c7cb0.jpg", "file_size": 19915, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17de4a2649734a2c8e4e8a84142c7cb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17de4a2649734a2c8e4e8a84142c7cb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17de4a2649734a2c8e4e8a84142c7cb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17de4a2649734a2c8e4e8a84142c7cb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17de4a2649734a2c8e4e8a84142c7cb0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YLp8som6gimwCPlmYl0P7C0KMI=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.183106+00 2025-12-09 10:14:39.18311+00 2981 22A79#A4 SPMX-20240815298098 \N \N \N 1 \N [{"file_id": "8ec8840e-e417-42df-8130-45424f248289", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ccc59290f2d48fa9ee063fcb5a02553.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ccc59290f2d48fa9ee063fcb5a02553.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ccc59290f2d48fa9ee063fcb5a02553.jpg", "file_size": 5972, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccc59290f2d48fa9ee063fcb5a02553.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccc59290f2d48fa9ee063fcb5a02553.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccc59290f2d48fa9ee063fcb5a02553.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ccc59290f2d48fa9ee063fcb5a02553.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ccc59290f2d48fa9ee063fcb5a02553.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxJbrwaqzOdnvHm-R_CzODzkfbo=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.184095+00 2025-12-09 10:14:39.184099+00 2982 HSH003#D SPMX-20240815298112 \N \N \N 1 \N [{"file_id": "20c26faf-d222-4d36-9b12-f9d42d3078a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7f5d1c40f97434085073da1750ed475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7f5d1c40f97434085073da1750ed475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7f5d1c40f97434085073da1750ed475.jpg", "file_size": 25382, "is_delete": false, "file_type": 1, "original_file_name": "HSH003#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f5d1c40f97434085073da1750ed475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f5d1c40f97434085073da1750ed475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f5d1c40f97434085073da1750ed475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7f5d1c40f97434085073da1750ed475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7f5d1c40f97434085073da1750ed475.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9uHu2SYaP6eGcDWWX4iqWIx9B8=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.185091+00 2025-12-09 10:14:39.185095+00 2983 C212-C212-1#绿玫红 SPMX-20240815298097 \N \N \N 1 \N [{"file_id": "429e99fd-8e1e-425a-a431-dace7d4f7fe8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "326fbb9318a24d80a8673d93bb9d1f23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "326fbb9318a24d80a8673d93bb9d1f23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "326fbb9318a24d80a8673d93bb9d1f23.jpg", "file_size": 24301, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#绿玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326fbb9318a24d80a8673d93bb9d1f23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326fbb9318a24d80a8673d93bb9d1f23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326fbb9318a24d80a8673d93bb9d1f23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/326fbb9318a24d80a8673d93bb9d1f23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/326fbb9318a24d80a8673d93bb9d1f23.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qpDdpCFWHn_5wj_YdTCFdfAedU=", "createTime": "2024-08-15 14:37:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.18609+00 2025-12-09 10:14:39.186093+00 2984 80025#短袖子 SPMX-20240815298105 \N \N \N 1 \N [{"file_id": "e3239086-2f9a-42b9-9fdc-55ac5fc105a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d99ec167d804cc1b49c492d333d7587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d99ec167d804cc1b49c492d333d7587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d99ec167d804cc1b49c492d333d7587.jpg", "file_size": 19012, "is_delete": false, "file_type": 1, "original_file_name": "80025#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d99ec167d804cc1b49c492d333d7587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d99ec167d804cc1b49c492d333d7587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d99ec167d804cc1b49c492d333d7587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d99ec167d804cc1b49c492d333d7587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d99ec167d804cc1b49c492d333d7587.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysvjn5KUZyzeJ_D2X458K5AKviU=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.187095+00 2025-12-09 10:14:39.1871+00 2985 103A#-小码+105A大码-橙色 SPMX-20240815298103 \N \N \N 1 \N [{"file_id": "040d99d7-1cda-48a7-980b-59240237bffe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9483a21e85d45a2904649f72abd484d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9483a21e85d45a2904649f72abd484d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9483a21e85d45a2904649f72abd484d.jpg", "file_size": 73800, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9483a21e85d45a2904649f72abd484d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9483a21e85d45a2904649f72abd484d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9483a21e85d45a2904649f72abd484d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9483a21e85d45a2904649f72abd484d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9483a21e85d45a2904649f72abd484d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pcwCVOSoDM_e3oV8-xl8N5RAGM=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.188081+00 2025-12-09 10:14:39.188085+00 2986 DH003#灰 SPMX-20240815298109 \N \N \N 1 \N [{"file_id": "a3d077ad-384a-4c9a-be43-7e1f57be4d1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7ebe13931bc4181b6071021e2ddbcc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7ebe13931bc4181b6071021e2ddbcc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7ebe13931bc4181b6071021e2ddbcc0.jpg", "file_size": 10454, "is_delete": false, "file_type": 1, "original_file_name": "DH003#灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ebe13931bc4181b6071021e2ddbcc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ebe13931bc4181b6071021e2ddbcc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ebe13931bc4181b6071021e2ddbcc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7ebe13931bc4181b6071021e2ddbcc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7ebe13931bc4181b6071021e2ddbcc0.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnmSQBl3nZbrd5iaSwjpNlcU-74=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.189084+00 2025-12-09 10:14:39.189088+00 2987 LHJ2206-1#短裙紫色 SPMX-20240815298099 \N \N \N 1 \N [{"file_id": "1b4558d4-7e8e-49d1-a456-10f762c65a50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6af0eee32b834e34be2bb2a35e545592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6af0eee32b834e34be2bb2a35e545592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6af0eee32b834e34be2bb2a35e545592.jpg", "file_size": 22720, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af0eee32b834e34be2bb2a35e545592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af0eee32b834e34be2bb2a35e545592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af0eee32b834e34be2bb2a35e545592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6af0eee32b834e34be2bb2a35e545592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6af0eee32b834e34be2bb2a35e545592.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HYfh5QFV-5eSG-gMQ_l8xLlYEJA=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.190084+00 2025-12-09 10:14:39.190088+00 2988 DH003#XXL-3XL SPMX-20240815298100 \N \N \N 1 \N [{"file_id": "bc0738b0-8ec3-44da-8bf4-01035ed9d622", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9559c15d14ad49db9d1ca5904c9b730b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9559c15d14ad49db9d1ca5904c9b730b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9559c15d14ad49db9d1ca5904c9b730b.jpg", "file_size": 10772, "is_delete": false, "file_type": 1, "original_file_name": "DH003#XXL-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9559c15d14ad49db9d1ca5904c9b730b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9559c15d14ad49db9d1ca5904c9b730b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9559c15d14ad49db9d1ca5904c9b730b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9559c15d14ad49db9d1ca5904c9b730b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9559c15d14ad49db9d1ca5904c9b730b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfNBuB4wXq5D51l3awcoOhlnKfo=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.191084+00 2025-12-09 10:14:39.191089+00 2989 JS0104-A20#LWQ15 SPMX-20240815298104 \N \N \N 1 \N [{"file_id": "62035841-5ea7-423d-bbe5-a6e6303b87fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "693a65b4205344fea91fa6ea9d5351cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "693a65b4205344fea91fa6ea9d5351cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "693a65b4205344fea91fa6ea9d5351cf.jpg", "file_size": 17462, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A20#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/693a65b4205344fea91fa6ea9d5351cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/693a65b4205344fea91fa6ea9d5351cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/693a65b4205344fea91fa6ea9d5351cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/693a65b4205344fea91fa6ea9d5351cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/693a65b4205344fea91fa6ea9d5351cf.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kew0AzMXIlYORjy1mZ7eGRGxMk0=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.192066+00 2025-12-09 10:14:39.19207+00 2990 0001-10FWF#V5曲线 SPMX-20240815298106 \N \N \N 1 \N [{"file_id": "5010d42f-aebe-4678-8dc6-9d1f1e7cb4a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e774972129b4402db73929773ec4af4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e774972129b4402db73929773ec4af4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e774972129b4402db73929773ec4af4d.jpg", "file_size": 9835, "is_delete": false, "file_type": 1, "original_file_name": "0001-10FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e774972129b4402db73929773ec4af4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e774972129b4402db73929773ec4af4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e774972129b4402db73929773ec4af4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e774972129b4402db73929773ec4af4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e774972129b4402db73929773ec4af4d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkRmT5JvmtYgx8aZvbWDoi66EK8=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.193068+00 2025-12-09 10:14:39.193072+00 2991 22A79#A5 SPMX-20240815298108 \N \N \N 1 \N [{"file_id": "4beb137b-c83e-4de4-97cc-cf5a343a33c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a9d1bca4b4f4015bd0924e658123852.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a9d1bca4b4f4015bd0924e658123852.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a9d1bca4b4f4015bd0924e658123852.jpg", "file_size": 5900, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a9d1bca4b4f4015bd0924e658123852.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a9d1bca4b4f4015bd0924e658123852.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a9d1bca4b4f4015bd0924e658123852.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a9d1bca4b4f4015bd0924e658123852.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a9d1bca4b4f4015bd0924e658123852.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qq5hstbpe58CJW9x1XYM9wPixow=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.194359+00 2025-12-09 10:14:39.194364+00 2992 LZ1178#上身2号色 SPMX-20240815298107 \N \N \N 1 \N [{"file_id": "67b1b333-e2fa-4fed-b031-955994b7e050", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b26b7693f20742bd97e563fba3427e69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b26b7693f20742bd97e563fba3427e69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b26b7693f20742bd97e563fba3427e69.jpg", "file_size": 11866, "is_delete": false, "file_type": 1, "original_file_name": "LZ1178#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26b7693f20742bd97e563fba3427e69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26b7693f20742bd97e563fba3427e69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26b7693f20742bd97e563fba3427e69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b26b7693f20742bd97e563fba3427e69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b26b7693f20742bd97e563fba3427e69.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTyubMifvWJkK0sJhZQRkAq0ENQ=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.195649+00 2025-12-09 10:14:39.195653+00 2993 C212-C212-1#绿红 SPMX-20240815298111 \N \N \N 1 \N [{"file_id": "96cdd191-ecbb-49ef-88d2-feb850e480d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d38b736e18a94f5bb0c5ad689e141ade.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d38b736e18a94f5bb0c5ad689e141ade.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d38b736e18a94f5bb0c5ad689e141ade.jpg", "file_size": 24615, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#绿红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b736e18a94f5bb0c5ad689e141ade.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b736e18a94f5bb0c5ad689e141ade.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b736e18a94f5bb0c5ad689e141ade.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d38b736e18a94f5bb0c5ad689e141ade.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d38b736e18a94f5bb0c5ad689e141ade.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lcmSS6mc_kpXDICwm61zGUC5B7A=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.196938+00 2025-12-09 10:14:39.196942+00 2994 HSH002FWE SPMX-20240815298101 \N \N \N 1 \N [{"file_id": "1aa5a74f-c8d3-463c-a3b4-67f4129e3888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe5d6a37bcea4122b387489df98306a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe5d6a37bcea4122b387489df98306a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe5d6a37bcea4122b387489df98306a4.jpg", "file_size": 19706, "is_delete": false, "file_type": 1, "original_file_name": "HSH002FWE.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5d6a37bcea4122b387489df98306a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5d6a37bcea4122b387489df98306a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5d6a37bcea4122b387489df98306a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe5d6a37bcea4122b387489df98306a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe5d6a37bcea4122b387489df98306a4.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NO29sa8TdrjSCchN5roiZNKOVF4=", "createTime": "2024-08-15 14:37:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.198187+00 2025-12-09 10:14:39.198191+00 2995 JS0104-A20#WJC22 SPMX-20240815298113 \N \N \N 1 \N [{"file_id": "5d084543-21c4-4b8f-8310-e6ca79e5a854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "177c3c6142ff4c02a736ce39db870bb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "177c3c6142ff4c02a736ce39db870bb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "177c3c6142ff4c02a736ce39db870bb1.jpg", "file_size": 10873, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A20#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c3c6142ff4c02a736ce39db870bb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c3c6142ff4c02a736ce39db870bb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c3c6142ff4c02a736ce39db870bb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/177c3c6142ff4c02a736ce39db870bb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/177c3c6142ff4c02a736ce39db870bb1.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srHgCIrJYHPfmX1ZzaL32KOtmVE=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.19945+00 2025-12-09 10:14:39.199453+00 2996 LHJ2206-1#短裙黑色 SPMX-20240815298117 \N \N \N 1 \N [{"file_id": "6e9f12fe-5cf1-49ed-97f9-fa7440319bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0f585f3a6b14733bbb4915a2d186da9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0f585f3a6b14733bbb4915a2d186da9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0f585f3a6b14733bbb4915a2d186da9.jpg", "file_size": 25214, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2206-1#短裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f585f3a6b14733bbb4915a2d186da9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f585f3a6b14733bbb4915a2d186da9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f585f3a6b14733bbb4915a2d186da9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0f585f3a6b14733bbb4915a2d186da9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0f585f3a6b14733bbb4915a2d186da9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MyzUwQypEB3mGl-jb2EGhQJrMBI=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.200741+00 2025-12-09 10:14:39.200745+00 2997 80026#短袖上衣 SPMX-20240815298114 \N \N \N 1 \N [{"file_id": "1d893bce-9946-436c-b759-c6c588f36d88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56506f0409a641748887bbed27291e9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56506f0409a641748887bbed27291e9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56506f0409a641748887bbed27291e9d.jpg", "file_size": 20009, "is_delete": false, "file_type": 1, "original_file_name": "80026#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56506f0409a641748887bbed27291e9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56506f0409a641748887bbed27291e9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56506f0409a641748887bbed27291e9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56506f0409a641748887bbed27291e9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56506f0409a641748887bbed27291e9d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0so4wQ_E66fGAPizOw54-wo8n5Q=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.20209+00 2025-12-09 10:14:39.202094+00 2998 22A79#A6 SPMX-20240815298118 \N \N \N 1 \N [{"file_id": "b765a20c-a3d3-4b86-a95b-42a8ba2d261c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dfe287894824d8984fd48f56a4b4e41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dfe287894824d8984fd48f56a4b4e41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dfe287894824d8984fd48f56a4b4e41.jpg", "file_size": 5536, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfe287894824d8984fd48f56a4b4e41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfe287894824d8984fd48f56a4b4e41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfe287894824d8984fd48f56a4b4e41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dfe287894824d8984fd48f56a4b4e41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dfe287894824d8984fd48f56a4b4e41.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KceUMOPdsEeoGEq1EYaKNq4noI=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.203348+00 2025-12-09 10:14:39.203352+00 2999 103A#-小码+105A大码-玫红 SPMX-20240815298116 \N \N \N 1 \N [{"file_id": "f7586726-615a-4198-bb37-c9bffa3524e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04a9dfbfb6b94ca999e498c6dd3ce56d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04a9dfbfb6b94ca999e498c6dd3ce56d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04a9dfbfb6b94ca999e498c6dd3ce56d.jpg", "file_size": 71865, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a9dfbfb6b94ca999e498c6dd3ce56d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a9dfbfb6b94ca999e498c6dd3ce56d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a9dfbfb6b94ca999e498c6dd3ce56d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04a9dfbfb6b94ca999e498c6dd3ce56d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04a9dfbfb6b94ca999e498c6dd3ce56d.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cn4MdTm_HxfjA3qX0v-OY_0lGqY=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.20434+00 2025-12-09 10:14:39.204343+00 3000 FHPKDK-批布067-6 SPMX-20240815298115 \N \N \N 1 \N [{"file_id": "fb322c59-ab0c-40c6-ae2c-c7ad84ee34ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f852adf8574f4282bb1c09459efb03e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f852adf8574f4282bb1c09459efb03e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f852adf8574f4282bb1c09459efb03e2.jpg", "file_size": 40162, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布067-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f852adf8574f4282bb1c09459efb03e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f852adf8574f4282bb1c09459efb03e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f852adf8574f4282bb1c09459efb03e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f852adf8574f4282bb1c09459efb03e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f852adf8574f4282bb1c09459efb03e2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bccoc8JgZP7EcZb6eeKidXotIH4=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.205355+00 2025-12-09 10:14:39.205359+00 3001 0001-11FWE#VS-D3 SPMX-20240815298120 \N \N \N 1 \N [{"file_id": "b2111122-bb24-4b47-bc66-dd4d77febd39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9555a111c66427f920510ab418fc497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9555a111c66427f920510ab418fc497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9555a111c66427f920510ab418fc497.jpg", "file_size": 22110, "is_delete": false, "file_type": 1, "original_file_name": "0001-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9555a111c66427f920510ab418fc497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9555a111c66427f920510ab418fc497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9555a111c66427f920510ab418fc497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9555a111c66427f920510ab418fc497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9555a111c66427f920510ab418fc497.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4T6sYxsVoCFcC9jNkVGVMVkkZU=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.206349+00 2025-12-09 10:14:39.206353+00 3002 C212-C212-1#黄紫 SPMX-20240815298119 \N \N \N 1 \N [{"file_id": "fa4c7c50-c8d6-472d-a380-3a75f6749133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae6611cdcf1947f8b7144211ba3ae92b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae6611cdcf1947f8b7144211ba3ae92b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae6611cdcf1947f8b7144211ba3ae92b.jpg", "file_size": 25511, "is_delete": false, "file_type": 1, "original_file_name": "C212-C212-1#黄紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6611cdcf1947f8b7144211ba3ae92b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6611cdcf1947f8b7144211ba3ae92b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6611cdcf1947f8b7144211ba3ae92b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae6611cdcf1947f8b7144211ba3ae92b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae6611cdcf1947f8b7144211ba3ae92b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9cn4pbtRS8DiRbYUDzufZh_2iEI=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.207364+00 2025-12-09 10:14:39.207368+00 3003 DH003#红 SPMX-20240815298121 \N \N \N 1 \N [{"file_id": "d34be7a8-52d9-495f-8537-476aa228bad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f998b5d567614f4e9268f0b0bb50fe9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f998b5d567614f4e9268f0b0bb50fe9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f998b5d567614f4e9268f0b0bb50fe9b.jpg", "file_size": 12117, "is_delete": false, "file_type": 1, "original_file_name": "DH003#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f998b5d567614f4e9268f0b0bb50fe9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f998b5d567614f4e9268f0b0bb50fe9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f998b5d567614f4e9268f0b0bb50fe9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f998b5d567614f4e9268f0b0bb50fe9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f998b5d567614f4e9268f0b0bb50fe9b.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEZgP3m2lmMya1QbSG5yC6XAOMw=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.208354+00 2025-12-09 10:14:39.208358+00 3004 C213#枣红 SPMX-20240815298131 \N \N \N 1 \N [{"file_id": "467e1fd7-3518-470f-aaa5-8d8f440494c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8135ba78d8e047cea45e5fa0d698ebab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8135ba78d8e047cea45e5fa0d698ebab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8135ba78d8e047cea45e5fa0d698ebab.jpg", "file_size": 14416, "is_delete": false, "file_type": 1, "original_file_name": "C213#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135ba78d8e047cea45e5fa0d698ebab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135ba78d8e047cea45e5fa0d698ebab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135ba78d8e047cea45e5fa0d698ebab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8135ba78d8e047cea45e5fa0d698ebab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8135ba78d8e047cea45e5fa0d698ebab.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCU626QS9KHjapgA2AKv3vOntDQ=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.209362+00 2025-12-09 10:14:39.209366+00 3005 80027#短袖上衣 SPMX-20240815298135 \N \N \N 1 \N [{"file_id": "3039dead-e88b-4b32-afef-6c725eb35740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ca31386a6f415790ce1245455113b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ca31386a6f415790ce1245455113b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ca31386a6f415790ce1245455113b2.jpg", "file_size": 20018, "is_delete": false, "file_type": 1, "original_file_name": "80027#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ca31386a6f415790ce1245455113b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ca31386a6f415790ce1245455113b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ca31386a6f415790ce1245455113b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ca31386a6f415790ce1245455113b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ca31386a6f415790ce1245455113b2.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnlkHC2rlrm_WX-5R6-LHT6Zu9c=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.210363+00 2025-12-09 10:14:39.210367+00 3006 0001-11FWF#V5曲线 SPMX-20240815298130 \N \N \N 1 \N [{"file_id": "de272644-0de0-4fb2-80f1-858b3ad4299d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be9c59c6a6ef45219004319ef78a3317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be9c59c6a6ef45219004319ef78a3317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be9c59c6a6ef45219004319ef78a3317.jpg", "file_size": 18506, "is_delete": false, "file_type": 1, "original_file_name": "0001-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9c59c6a6ef45219004319ef78a3317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9c59c6a6ef45219004319ef78a3317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9c59c6a6ef45219004319ef78a3317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be9c59c6a6ef45219004319ef78a3317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be9c59c6a6ef45219004319ef78a3317.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Z9ny-nBXpXjTWrq_w5hlyUfguE=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.211353+00 2025-12-09 10:14:39.211357+00 3007 80026#短袖子 SPMX-20240815298124 \N \N \N 1 \N [{"file_id": "2bc8e4f1-3f18-4424-b3ae-8976fe0711a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e86be01dae8747398ed878a40c8e040c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e86be01dae8747398ed878a40c8e040c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e86be01dae8747398ed878a40c8e040c.jpg", "file_size": 16012, "is_delete": false, "file_type": 1, "original_file_name": "80026#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86be01dae8747398ed878a40c8e040c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86be01dae8747398ed878a40c8e040c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86be01dae8747398ed878a40c8e040c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e86be01dae8747398ed878a40c8e040c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e86be01dae8747398ed878a40c8e040c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DU5zmwYc2vXoeCgcNKdZans4UGw=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.212337+00 2025-12-09 10:14:39.21234+00 3008 103A#-小码+105A大码-紫色 SPMX-20240815298129 \N \N \N 1 \N [{"file_id": "c5df13b5-35de-4afa-a646-eeb221cd68d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5fb3787f0554559a3b453e2fe58fff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5fb3787f0554559a3b453e2fe58fff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5fb3787f0554559a3b453e2fe58fff9.jpg", "file_size": 69674, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb3787f0554559a3b453e2fe58fff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb3787f0554559a3b453e2fe58fff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb3787f0554559a3b453e2fe58fff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5fb3787f0554559a3b453e2fe58fff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5fb3787f0554559a3b453e2fe58fff9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EVGKFdyv1C9UnwUbyobm5Px2O4=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.213328+00 2025-12-09 10:14:39.213332+00 3009 HSH003FW#VS-D3 SPMX-20240815298134 \N \N \N 1 \N [{"file_id": "bcd824b0-4b29-4c82-b41c-845cbb1541eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d00b77f703e466ba4de5fd3c65ef403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d00b77f703e466ba4de5fd3c65ef403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d00b77f703e466ba4de5fd3c65ef403.jpg", "file_size": 23544, "is_delete": false, "file_type": 1, "original_file_name": "HSH003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d00b77f703e466ba4de5fd3c65ef403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d00b77f703e466ba4de5fd3c65ef403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d00b77f703e466ba4de5fd3c65ef403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d00b77f703e466ba4de5fd3c65ef403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d00b77f703e466ba4de5fd3c65ef403.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eWMo_NWZ-gLaB36HEG4rB4NFsfk=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.21431+00 2025-12-09 10:14:39.214313+00 3010 HSH003#VS-D3 SPMX-20240815298123 \N \N \N 1 \N [{"file_id": "b7892968-e8c3-4a5a-8c7f-f13484925f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b27de611b1eb4fb3a2f72016b5fb1f91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b27de611b1eb4fb3a2f72016b5fb1f91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b27de611b1eb4fb3a2f72016b5fb1f91.jpg", "file_size": 26602, "is_delete": false, "file_type": 1, "original_file_name": "HSH003#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27de611b1eb4fb3a2f72016b5fb1f91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27de611b1eb4fb3a2f72016b5fb1f91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27de611b1eb4fb3a2f72016b5fb1f91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b27de611b1eb4fb3a2f72016b5fb1f91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b27de611b1eb4fb3a2f72016b5fb1f91.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gn_PSKyuCm-mcgqQJxcsLSFfGAs=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.215293+00 2025-12-09 10:14:39.215298+00 3011 LHJ2207#长裙墨绿 SPMX-20240815298126 \N \N \N 1 \N [{"file_id": "276e945e-a7fa-4432-95e4-51b0aefd0e3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44b098d1ab574d4cb95aa748e2082fae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44b098d1ab574d4cb95aa748e2082fae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44b098d1ab574d4cb95aa748e2082fae.jpg", "file_size": 20302, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b098d1ab574d4cb95aa748e2082fae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b098d1ab574d4cb95aa748e2082fae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b098d1ab574d4cb95aa748e2082fae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44b098d1ab574d4cb95aa748e2082fae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44b098d1ab574d4cb95aa748e2082fae.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:czP2Joed3BYAFSdoTW377PKJnlA=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.216287+00 2025-12-09 10:14:39.216291+00 3012 DH003#蓝 SPMX-20240815298132 \N \N \N 1 \N [{"file_id": "75fb2ecf-0064-4fff-b0bb-d0a7aa5b2dad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0207e793dc444e4a3a191938e6a19ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0207e793dc444e4a3a191938e6a19ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0207e793dc444e4a3a191938e6a19ae.jpg", "file_size": 11863, "is_delete": false, "file_type": 1, "original_file_name": "DH003#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0207e793dc444e4a3a191938e6a19ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0207e793dc444e4a3a191938e6a19ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0207e793dc444e4a3a191938e6a19ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0207e793dc444e4a3a191938e6a19ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0207e793dc444e4a3a191938e6a19ae.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rMGlmkL-64HzO2raXT7kYff-Ak=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.217298+00 2025-12-09 10:14:39.217302+00 3013 LZ1178#上身3号色 SPMX-20240815298122 \N \N \N 1 \N [{"file_id": "e35a0547-3a9d-4fc3-93f8-411e23eebb46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d48dccbe0864e31be7dd0bdb3e22f52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d48dccbe0864e31be7dd0bdb3e22f52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d48dccbe0864e31be7dd0bdb3e22f52.jpg", "file_size": 11556, "is_delete": false, "file_type": 1, "original_file_name": "LZ1178#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d48dccbe0864e31be7dd0bdb3e22f52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d48dccbe0864e31be7dd0bdb3e22f52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d48dccbe0864e31be7dd0bdb3e22f52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d48dccbe0864e31be7dd0bdb3e22f52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d48dccbe0864e31be7dd0bdb3e22f52.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIKrMqkqPxFubB6nt5q_DZZqgY8=", "createTime": "2024-08-15 14:37:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.219187+00 2025-12-09 10:14:39.219195+00 3014 22A79#A7 SPMX-20240815298127 \N \N \N 1 \N [{"file_id": "68d5da77-0272-4aaa-8f0a-2427d555514f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1a98dea066245ffae52a96c193a71e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1a98dea066245ffae52a96c193a71e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1a98dea066245ffae52a96c193a71e9.jpg", "file_size": 5821, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a98dea066245ffae52a96c193a71e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a98dea066245ffae52a96c193a71e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a98dea066245ffae52a96c193a71e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1a98dea066245ffae52a96c193a71e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1a98dea066245ffae52a96c193a71e9.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lx9A2IKB_nguFs2MA9WjBv4F3J0=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.22091+00 2025-12-09 10:14:39.220915+00 3015 JS0104-A21#LWQ15 SPMX-20240815298125 \N \N \N 1 \N [{"file_id": "7d0499d5-6ce9-49c4-bd6f-bbbfa63be900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a631318680394cd88664b8e89e80db2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a631318680394cd88664b8e89e80db2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a631318680394cd88664b8e89e80db2a.jpg", "file_size": 13111, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A21#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a631318680394cd88664b8e89e80db2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a631318680394cd88664b8e89e80db2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a631318680394cd88664b8e89e80db2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a631318680394cd88664b8e89e80db2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a631318680394cd88664b8e89e80db2a.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FaZDLShmM6Wi0XrNmMKn6Kyh7Pw=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.222149+00 2025-12-09 10:14:39.222154+00 3016 LZ1178#上身4号色 SPMX-20240815298133 \N \N \N 1 \N [{"file_id": "a7d70647-7fa6-487b-87fa-d874a9ecf86d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db34c34b4ed0445ca61c272ddb905964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db34c34b4ed0445ca61c272ddb905964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db34c34b4ed0445ca61c272ddb905964.jpg", "file_size": 11152, "is_delete": false, "file_type": 1, "original_file_name": "LZ1178#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db34c34b4ed0445ca61c272ddb905964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db34c34b4ed0445ca61c272ddb905964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db34c34b4ed0445ca61c272ddb905964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db34c34b4ed0445ca61c272ddb905964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db34c34b4ed0445ca61c272ddb905964.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4DipYU_ZngZAThqxIdEcZJT4Ts=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.223181+00 2025-12-09 10:14:39.223185+00 3017 FHPKDK-批布068-2 SPMX-20240815298128 \N \N \N 1 \N [{"file_id": "35566819-ea53-4424-8a92-cf6b257ea70d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947510d0438c425a8b206175019d7c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947510d0438c425a8b206175019d7c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947510d0438c425a8b206175019d7c13.jpg", "file_size": 38290, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布068-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947510d0438c425a8b206175019d7c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947510d0438c425a8b206175019d7c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947510d0438c425a8b206175019d7c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947510d0438c425a8b206175019d7c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947510d0438c425a8b206175019d7c13.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0BZREEj1qj_hnF0wymD_5B1slA=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.224198+00 2025-12-09 10:14:39.224202+00 3018 FHPKDK-批布068-3 SPMX-20240815298139 \N \N \N 1 \N [{"file_id": "90dd96fb-081b-42b2-9b2d-74bafaf8e696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7546ddce9c5b40cea1b65ae7dca0e73f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7546ddce9c5b40cea1b65ae7dca0e73f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7546ddce9c5b40cea1b65ae7dca0e73f.jpg", "file_size": 29171, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布068-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7546ddce9c5b40cea1b65ae7dca0e73f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7546ddce9c5b40cea1b65ae7dca0e73f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7546ddce9c5b40cea1b65ae7dca0e73f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7546ddce9c5b40cea1b65ae7dca0e73f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7546ddce9c5b40cea1b65ae7dca0e73f.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIhoWhPK4867G2clci5girKxeaM=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.22523+00 2025-12-09 10:14:39.225234+00 3019 JS0104-A22#蓝色LWQ15 SPMX-20240815298137 \N \N \N 1 \N [{"file_id": "343d9150-e3f0-40fb-9c06-6498631f48fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19cbe1a1a0447dbbc1c464f46e5ebab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19cbe1a1a0447dbbc1c464f46e5ebab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19cbe1a1a0447dbbc1c464f46e5ebab.jpg", "file_size": 25183, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A22#蓝色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19cbe1a1a0447dbbc1c464f46e5ebab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19cbe1a1a0447dbbc1c464f46e5ebab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19cbe1a1a0447dbbc1c464f46e5ebab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19cbe1a1a0447dbbc1c464f46e5ebab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19cbe1a1a0447dbbc1c464f46e5ebab.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQTm8Xz7vRJ77NeoHxUFfVb7djc=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.226244+00 2025-12-09 10:14:39.226249+00 3020 0001-12FWE#VS-D3 SPMX-20240815298140 \N \N \N 1 \N [{"file_id": "b91db45b-b9a3-4473-a02e-08caadfd0214", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg", "file_size": 19332, "is_delete": false, "file_type": 1, "original_file_name": "0001-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b32e0bc90a84fe3b7f44ed9f1d3623c.jpg?e=1765361678&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JS8HAC_a4U2TjS7AgQOln3Jf0og=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.835982+00 2025-12-09 10:14:39.835993+00 3021 22A79#A8 SPMX-20240815298138 \N \N \N 1 \N [{"file_id": "c01c39d8-75d2-4145-96ed-d41b98471bd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a4efc0bc5fb45c094c5e6923a02e182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a4efc0bc5fb45c094c5e6923a02e182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a4efc0bc5fb45c094c5e6923a02e182.jpg", "file_size": 5667, "is_delete": false, "file_type": 1, "original_file_name": "22A79#A8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a4efc0bc5fb45c094c5e6923a02e182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a4efc0bc5fb45c094c5e6923a02e182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a4efc0bc5fb45c094c5e6923a02e182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a4efc0bc5fb45c094c5e6923a02e182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a4efc0bc5fb45c094c5e6923a02e182.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFjiaeOhnKiEo0lG1OWCDs0GEJk=", "createTime": "2024-08-15 14:37:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.837632+00 2025-12-09 10:14:39.837637+00 3022 LHJ2207#长裙彩兰 SPMX-20240815298136 \N \N \N 1 \N [{"file_id": "ba6b2647-1c9a-4e6b-8140-05e67211d466", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5c2b500ba9e4a30b88e26b2809354b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5c2b500ba9e4a30b88e26b2809354b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5c2b500ba9e4a30b88e26b2809354b2.jpg", "file_size": 20641, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c2b500ba9e4a30b88e26b2809354b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c2b500ba9e4a30b88e26b2809354b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c2b500ba9e4a30b88e26b2809354b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5c2b500ba9e4a30b88e26b2809354b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5c2b500ba9e4a30b88e26b2809354b2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bJgk1bYf2hI29Hsv6RuSGA-Vpc=", "createTime": "2024-08-15 14:37:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.838794+00 2025-12-09 10:14:39.838799+00 3023 LZ1179#上身1号色 SPMX-20240815298147 \N \N \N 1 \N [{"file_id": "2fa488bf-2725-4a74-bdb2-e6becfefd6a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5311f75c54b446b6a58697528c8d0bce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5311f75c54b446b6a58697528c8d0bce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5311f75c54b446b6a58697528c8d0bce.jpg", "file_size": 11673, "is_delete": false, "file_type": 1, "original_file_name": "LZ1179#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5311f75c54b446b6a58697528c8d0bce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5311f75c54b446b6a58697528c8d0bce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5311f75c54b446b6a58697528c8d0bce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5311f75c54b446b6a58697528c8d0bce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5311f75c54b446b6a58697528c8d0bce.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gn0Ijj-EY9CGWNmZxTz8TuXCG7M=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.839854+00 2025-12-09 10:14:39.839858+00 3024 HSH003FWE#VS-D3 SPMX-20240815298150 \N \N \N 1 \N [{"file_id": "d38ded86-9f87-4cc0-8d1a-0ba5e4c893cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg", "file_size": 13799, "is_delete": false, "file_type": 1, "original_file_name": "HSH003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71f1d38bd4b44f2eaf68b5e4bf4aab03.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1WDX6N4wEZB9-rFBMa46y9qdE0=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.840885+00 2025-12-09 10:14:39.840889+00 3025 DH003FW#VS-D3 SPMX-20240815298141 \N \N \N 1 \N [{"file_id": "ed60e138-9940-479a-a127-c9ea6927d8de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "114e71b77a8d40c7818ba0413949c15b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "114e71b77a8d40c7818ba0413949c15b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "114e71b77a8d40c7818ba0413949c15b.jpg", "file_size": 19477, "is_delete": false, "file_type": 1, "original_file_name": "DH003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114e71b77a8d40c7818ba0413949c15b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114e71b77a8d40c7818ba0413949c15b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114e71b77a8d40c7818ba0413949c15b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/114e71b77a8d40c7818ba0413949c15b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/114e71b77a8d40c7818ba0413949c15b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCupeWoCWEkasuMIeKnpLIsZyag=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.841881+00 2025-12-09 10:14:39.841885+00 3026 C213#浅绿 SPMX-20240815298144 \N \N \N 1 \N [{"file_id": "d7ee5b13-076d-42a4-a866-5334556c79e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg", "file_size": 22340, "is_delete": false, "file_type": 1, "original_file_name": "C213#浅绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7a68d8eb72b4ff89fe7a83ddb0d6cc2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uneHhOIEN_LXPnAEKl8VgGoMXqs=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.842913+00 2025-12-09 10:14:39.842916+00 3027 22C01-9-15#WJC22 SPMX-20240815298149 \N \N \N 1 \N [{"file_id": "d47fd2bf-5e87-4b7d-97af-45f830a4bde0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea454d5846b442e08b4a1610df92ad9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea454d5846b442e08b4a1610df92ad9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea454d5846b442e08b4a1610df92ad9e.jpg", "file_size": 14518, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-15#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea454d5846b442e08b4a1610df92ad9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea454d5846b442e08b4a1610df92ad9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea454d5846b442e08b4a1610df92ad9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea454d5846b442e08b4a1610df92ad9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea454d5846b442e08b4a1610df92ad9e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5sLrPAvb9I-pBBoIxhvrwXANwhk=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.843911+00 2025-12-09 10:14:39.843916+00 3028 103A#-小码+105A大码-红色 SPMX-20240815298142 \N \N \N 1 \N [{"file_id": "85655861-e6ff-4a55-83b4-a53494c34b98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d69de9039f4b4097ab705ae8a7ad9606.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d69de9039f4b4097ab705ae8a7ad9606.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d69de9039f4b4097ab705ae8a7ad9606.jpg", "file_size": 72704, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69de9039f4b4097ab705ae8a7ad9606.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69de9039f4b4097ab705ae8a7ad9606.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69de9039f4b4097ab705ae8a7ad9606.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d69de9039f4b4097ab705ae8a7ad9606.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d69de9039f4b4097ab705ae8a7ad9606.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0wfg7ZCqm5Scm07ylJBiDccG1tE=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.844917+00 2025-12-09 10:14:39.844921+00 3029 JS0104-A22#黄色LWQ15 SPMX-20240815298145 \N \N \N 1 \N [{"file_id": "0c327b28-722d-4424-afbd-82130f7c87b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0efe5d3230854cc88db47bb272793527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0efe5d3230854cc88db47bb272793527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0efe5d3230854cc88db47bb272793527.jpg", "file_size": 23815, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A22#黄色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0efe5d3230854cc88db47bb272793527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0efe5d3230854cc88db47bb272793527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0efe5d3230854cc88db47bb272793527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0efe5d3230854cc88db47bb272793527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0efe5d3230854cc88db47bb272793527.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfQ3O9pGBeex46f8O-9ITQ56zBI=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.845914+00 2025-12-09 10:14:39.845918+00 3030 LHJ2207#长裙枣红 SPMX-20240815298146 \N \N \N 1 \N [{"file_id": "14bd6a61-aa0b-4fda-97bf-65e5424c5cb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc0d1c640ff64a3a91fb8b5265987a3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc0d1c640ff64a3a91fb8b5265987a3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc0d1c640ff64a3a91fb8b5265987a3a.jpg", "file_size": 19877, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0d1c640ff64a3a91fb8b5265987a3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0d1c640ff64a3a91fb8b5265987a3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0d1c640ff64a3a91fb8b5265987a3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc0d1c640ff64a3a91fb8b5265987a3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc0d1c640ff64a3a91fb8b5265987a3a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32kpYULf0IU_SbKTaYsJMChuYGM=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.846919+00 2025-12-09 10:14:39.846922+00 3031 80027#短袖子 SPMX-20240815298143 \N \N \N 1 \N [{"file_id": "fb473066-d655-4dea-ad6b-d3ef270d4f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1fe178235874e3185cf0e146af3261c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1fe178235874e3185cf0e146af3261c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1fe178235874e3185cf0e146af3261c.jpg", "file_size": 16469, "is_delete": false, "file_type": 1, "original_file_name": "80027#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fe178235874e3185cf0e146af3261c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fe178235874e3185cf0e146af3261c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fe178235874e3185cf0e146af3261c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1fe178235874e3185cf0e146af3261c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1fe178235874e3185cf0e146af3261c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SH_kGRA2XWjwpx7LwgWrETiumM0=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.847889+00 2025-12-09 10:14:39.847893+00 3032 0001-12FWF#V5曲线 SPMX-20240815298148 \N \N \N 1 \N [{"file_id": "fe0ce6b6-7ba4-46b0-b7d4-5837fd4471c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d41720210b564cfcb6085213218f1208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d41720210b564cfcb6085213218f1208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d41720210b564cfcb6085213218f1208.jpg", "file_size": 26830, "is_delete": false, "file_type": 1, "original_file_name": "0001-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41720210b564cfcb6085213218f1208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41720210b564cfcb6085213218f1208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41720210b564cfcb6085213218f1208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d41720210b564cfcb6085213218f1208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d41720210b564cfcb6085213218f1208.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mu5ALVg6KCcTJftPj3E7X7mOGyU=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.848919+00 2025-12-09 10:14:39.848923+00 3033 FHPKDK-批布068-4 SPMX-20240815298151 \N \N \N 1 \N [{"file_id": "d6dcb67b-dc93-46ef-ba45-78eb090a6e3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2162ca66800c4e6790f07d092c19f754.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2162ca66800c4e6790f07d092c19f754.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2162ca66800c4e6790f07d092c19f754.jpg", "file_size": 30424, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布068-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2162ca66800c4e6790f07d092c19f754.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2162ca66800c4e6790f07d092c19f754.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2162ca66800c4e6790f07d092c19f754.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2162ca66800c4e6790f07d092c19f754.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2162ca66800c4e6790f07d092c19f754.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgwMQ2WsRpyRd2yl12nZFxyzsjE=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.849908+00 2025-12-09 10:14:39.849912+00 3034 DH003FWE#VS-D3 SPMX-20240815298152 \N \N \N 1 \N [{"file_id": "776f1eac-856d-4881-83eb-3164c903d29c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f70e70466854a3ca0f7d3288e7e8371.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f70e70466854a3ca0f7d3288e7e8371.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f70e70466854a3ca0f7d3288e7e8371.jpg", "file_size": 17926, "is_delete": false, "file_type": 1, "original_file_name": "DH003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f70e70466854a3ca0f7d3288e7e8371.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f70e70466854a3ca0f7d3288e7e8371.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f70e70466854a3ca0f7d3288e7e8371.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f70e70466854a3ca0f7d3288e7e8371.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f70e70466854a3ca0f7d3288e7e8371.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvlBME3p-lF1bFb6UAS9rjWdp5g=", "createTime": "2024-08-15 14:37:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.850931+00 2025-12-09 10:14:39.850935+00 3035 C213#白色 SPMX-20240815298156 \N \N \N 1 \N [{"file_id": "7232cfcc-04e4-4c62-92b2-611d9152d586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad986b736d934fc9a6b1b3ec0532e3e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad986b736d934fc9a6b1b3ec0532e3e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad986b736d934fc9a6b1b3ec0532e3e4.jpg", "file_size": 23107, "is_delete": false, "file_type": 1, "original_file_name": "C213#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad986b736d934fc9a6b1b3ec0532e3e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad986b736d934fc9a6b1b3ec0532e3e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad986b736d934fc9a6b1b3ec0532e3e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad986b736d934fc9a6b1b3ec0532e3e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad986b736d934fc9a6b1b3ec0532e3e4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQbVlRpgIOv2eol_VlNAzEADObY=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.851932+00 2025-12-09 10:14:39.851936+00 3036 80028#短袖上衣 SPMX-20240815298153 \N \N \N 1 \N [{"file_id": "d92b4e46-30dd-4e92-bd77-ab05da0320ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e68506076a24c7b864a5f542c13a6ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e68506076a24c7b864a5f542c13a6ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e68506076a24c7b864a5f542c13a6ec.jpg", "file_size": 18336, "is_delete": false, "file_type": 1, "original_file_name": "80028#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e68506076a24c7b864a5f542c13a6ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e68506076a24c7b864a5f542c13a6ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e68506076a24c7b864a5f542c13a6ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e68506076a24c7b864a5f542c13a6ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e68506076a24c7b864a5f542c13a6ec.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xirNtgqMV2WgevABVuxu98KezBo=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.852931+00 2025-12-09 10:14:39.852935+00 3037 LHJ2207#长裙紫色 SPMX-20240815298155 \N \N \N 1 \N [{"file_id": "dda32e2b-9e4a-4086-93b1-eef6359e723c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ceab272e0c04d4abd134f42cd53deeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ceab272e0c04d4abd134f42cd53deeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ceab272e0c04d4abd134f42cd53deeb.jpg", "file_size": 20224, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceab272e0c04d4abd134f42cd53deeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceab272e0c04d4abd134f42cd53deeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceab272e0c04d4abd134f42cd53deeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ceab272e0c04d4abd134f42cd53deeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ceab272e0c04d4abd134f42cd53deeb.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IqNYjU4WvfK2JS9GY6N4biw9F7s=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.85396+00 2025-12-09 10:14:39.853964+00 3038 JS0104-A23#粉色LWQ15 SPMX-20240815298154 \N \N \N 1 \N [{"file_id": "4617b77e-71ba-4d9f-af1d-55e7c603991f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae26e1f66784459db20fdd67ab6d95e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae26e1f66784459db20fdd67ab6d95e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae26e1f66784459db20fdd67ab6d95e7.jpg", "file_size": 13797, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A23#粉色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae26e1f66784459db20fdd67ab6d95e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae26e1f66784459db20fdd67ab6d95e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae26e1f66784459db20fdd67ab6d95e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae26e1f66784459db20fdd67ab6d95e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae26e1f66784459db20fdd67ab6d95e7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyFVWVZXaTF7FXGahR9BfMOkMiQ=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.854962+00 2025-12-09 10:14:39.854966+00 3039 HSH004# SPMX-20240815298161 \N \N \N 1 \N [{"file_id": "516ad8ce-a1cb-4ec2-8d81-8a240c545715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a1ac6a43f974edebf327a3c1c90ac9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a1ac6a43f974edebf327a3c1c90ac9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a1ac6a43f974edebf327a3c1c90ac9d.jpg", "file_size": 17121, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1ac6a43f974edebf327a3c1c90ac9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1ac6a43f974edebf327a3c1c90ac9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1ac6a43f974edebf327a3c1c90ac9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a1ac6a43f974edebf327a3c1c90ac9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a1ac6a43f974edebf327a3c1c90ac9d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7YI6Xd8er2iQ1S4eh_Aid1yVa8=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.855977+00 2025-12-09 10:14:39.855981+00 3040 80028#短袖子 SPMX-20240815298163 \N \N \N 1 \N [{"file_id": "33368271-1fa2-4f49-bfe8-2a6b1e77def3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a55daef602f94b65bd84de61e3733b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a55daef602f94b65bd84de61e3733b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a55daef602f94b65bd84de61e3733b87.jpg", "file_size": 13413, "is_delete": false, "file_type": 1, "original_file_name": "80028#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55daef602f94b65bd84de61e3733b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55daef602f94b65bd84de61e3733b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55daef602f94b65bd84de61e3733b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a55daef602f94b65bd84de61e3733b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a55daef602f94b65bd84de61e3733b87.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5TgeDpE_rzqiEhejjEFk4kESNM=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.856979+00 2025-12-09 10:14:39.856983+00 3041 LHJ2207#长裙草绿 SPMX-20240815298166 \N \N \N 1 \N [{"file_id": "b56da83b-0a0d-459a-ad9a-34d49717941f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48781fc21b194a2a9ed22eef79d90776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48781fc21b194a2a9ed22eef79d90776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48781fc21b194a2a9ed22eef79d90776.jpg", "file_size": 19103, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48781fc21b194a2a9ed22eef79d90776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48781fc21b194a2a9ed22eef79d90776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48781fc21b194a2a9ed22eef79d90776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48781fc21b194a2a9ed22eef79d90776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48781fc21b194a2a9ed22eef79d90776.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HepIavZcQYqEofHz62Op6NlTbBY=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.857971+00 2025-12-09 10:14:39.857975+00 3042 0001-13FWE#VS-D3 SPMX-20240815298160 \N \N \N 1 \N [{"file_id": "963d9936-0ee5-49ac-8370-c1018002c911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1502a7044d7f4448aef94f84bde97d22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1502a7044d7f4448aef94f84bde97d22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1502a7044d7f4448aef94f84bde97d22.jpg", "file_size": 25977, "is_delete": false, "file_type": 1, "original_file_name": "0001-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1502a7044d7f4448aef94f84bde97d22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1502a7044d7f4448aef94f84bde97d22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1502a7044d7f4448aef94f84bde97d22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1502a7044d7f4448aef94f84bde97d22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1502a7044d7f4448aef94f84bde97d22.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzE3I2NmwjLE00iQcL9ng5quAxw=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.858979+00 2025-12-09 10:14:39.858983+00 3043 JS0104-A23#黄色LWQ15 SPMX-20240815298162 \N \N \N 1 \N [{"file_id": "0961aac4-4718-4697-8fa8-ae10f85aab62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19254b8a455640b68b8c3fc496e10876.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19254b8a455640b68b8c3fc496e10876.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19254b8a455640b68b8c3fc496e10876.jpg", "file_size": 13964, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A23#黄色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19254b8a455640b68b8c3fc496e10876.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19254b8a455640b68b8c3fc496e10876.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19254b8a455640b68b8c3fc496e10876.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19254b8a455640b68b8c3fc496e10876.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19254b8a455640b68b8c3fc496e10876.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQdpLkzhY0jn5p7tsnKKFVwo7mY=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.860045+00 2025-12-09 10:14:39.860049+00 3044 LZ1179#上身2号色 SPMX-20240815298159 \N \N \N 1 \N [{"file_id": "71927abe-e697-4798-bd67-ec0f66cf1b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d349a6783164f5ca9bf6290f53cf41a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d349a6783164f5ca9bf6290f53cf41a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d349a6783164f5ca9bf6290f53cf41a.jpg", "file_size": 11902, "is_delete": false, "file_type": 1, "original_file_name": "LZ1179#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d349a6783164f5ca9bf6290f53cf41a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d349a6783164f5ca9bf6290f53cf41a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d349a6783164f5ca9bf6290f53cf41a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d349a6783164f5ca9bf6290f53cf41a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d349a6783164f5ca9bf6290f53cf41a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKf9RKMl6pz2KzZRMTsdVS2mD5w=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.861025+00 2025-12-09 10:14:39.861029+00 3045 C213#绿色 SPMX-20240815298167 \N \N \N 1 \N [{"file_id": "fb35f7d2-2793-424a-af97-c3d0a694fcf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42573cb302184325b7daffcfa22f74a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42573cb302184325b7daffcfa22f74a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42573cb302184325b7daffcfa22f74a9.jpg", "file_size": 19225, "is_delete": false, "file_type": 1, "original_file_name": "C213#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42573cb302184325b7daffcfa22f74a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42573cb302184325b7daffcfa22f74a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42573cb302184325b7daffcfa22f74a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42573cb302184325b7daffcfa22f74a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42573cb302184325b7daffcfa22f74a9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cfz0GV9UCMT-KQ47LE510nsKplw=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.86202+00 2025-12-09 10:14:39.862024+00 3046 FHPKDK-批布068-6 SPMX-20240815298164 \N \N \N 1 \N [{"file_id": "56c8802e-5b5f-43e8-bf5e-9f554cb5db89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b878380118d47abaeb249bbcd341cd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b878380118d47abaeb249bbcd341cd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b878380118d47abaeb249bbcd341cd2.jpg", "file_size": 35150, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布068-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b878380118d47abaeb249bbcd341cd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b878380118d47abaeb249bbcd341cd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b878380118d47abaeb249bbcd341cd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b878380118d47abaeb249bbcd341cd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b878380118d47abaeb249bbcd341cd2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wv-zMhZMWb3f6KTCCVliPW0IbDg=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.863025+00 2025-12-09 10:14:39.863029+00 3047 103A#-小码+105A大码-绿色 SPMX-20240815298158 \N \N \N 1 \N [{"file_id": "4bd0164d-96ba-40a0-be0c-d499a1f4eddc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59c3ea2792b64eeaa5281e4e1712c7d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59c3ea2792b64eeaa5281e4e1712c7d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59c3ea2792b64eeaa5281e4e1712c7d2.jpg", "file_size": 72640, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c3ea2792b64eeaa5281e4e1712c7d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c3ea2792b64eeaa5281e4e1712c7d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c3ea2792b64eeaa5281e4e1712c7d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59c3ea2792b64eeaa5281e4e1712c7d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59c3ea2792b64eeaa5281e4e1712c7d2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evlnpjal5lfyTLLUKir_doF6IjA=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.864008+00 2025-12-09 10:14:39.864012+00 3048 22C01-9-16#WJC22 SPMX-20240815298157 \N \N \N 1 \N [{"file_id": "255f2555-20bc-475f-b596-72c49446034c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "619f5c7d62a442d2a37e4953b797784c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "619f5c7d62a442d2a37e4953b797784c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "619f5c7d62a442d2a37e4953b797784c.jpg", "file_size": 13244, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619f5c7d62a442d2a37e4953b797784c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619f5c7d62a442d2a37e4953b797784c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619f5c7d62a442d2a37e4953b797784c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/619f5c7d62a442d2a37e4953b797784c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/619f5c7d62a442d2a37e4953b797784c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHsLbBzDsJKMeoNRH4l357PR_XI=", "createTime": "2024-08-15 14:37:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.864975+00 2025-12-09 10:14:39.86498+00 3049 DH003FWEF#VS-D3 SPMX-20240815298165 \N \N \N 1 \N [{"file_id": "cf084bd8-fac3-45b7-8cb3-cb48f541764a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a97e1ae29da4cb9a408c110dca53574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a97e1ae29da4cb9a408c110dca53574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a97e1ae29da4cb9a408c110dca53574.jpg", "file_size": 21543, "is_delete": false, "file_type": 1, "original_file_name": "DH003FWEF#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a97e1ae29da4cb9a408c110dca53574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a97e1ae29da4cb9a408c110dca53574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a97e1ae29da4cb9a408c110dca53574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a97e1ae29da4cb9a408c110dca53574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a97e1ae29da4cb9a408c110dca53574.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lA1e9oHnwD0cGtuRvG2ATTXQ7j8=", "createTime": "2024-08-15 14:37:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.865967+00 2025-12-09 10:14:39.86597+00 3050 22C01-9-17#WJC22 SPMX-20240815298170 \N \N \N 1 \N [{"file_id": "816d9141-a9aa-42ea-9a3a-60f513b55dfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0559704358a4e89a937962a7d18f699.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0559704358a4e89a937962a7d18f699.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0559704358a4e89a937962a7d18f699.jpg", "file_size": 8748, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-17#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0559704358a4e89a937962a7d18f699.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0559704358a4e89a937962a7d18f699.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0559704358a4e89a937962a7d18f699.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0559704358a4e89a937962a7d18f699.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0559704358a4e89a937962a7d18f699.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRzHXltvFL501vmhfVSXq6Hv_nE=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.866977+00 2025-12-09 10:14:39.866981+00 3051 0001-13FWF#V5曲线 SPMX-20240815298168 \N \N \N 1 \N [{"file_id": "8106eb3d-5f3b-4102-8cee-660ec44f4908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4c2887c31a14a32bd1d18d7d8f90b2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4c2887c31a14a32bd1d18d7d8f90b2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4c2887c31a14a32bd1d18d7d8f90b2c.jpg", "file_size": 12547, "is_delete": false, "file_type": 1, "original_file_name": "0001-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c2887c31a14a32bd1d18d7d8f90b2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c2887c31a14a32bd1d18d7d8f90b2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c2887c31a14a32bd1d18d7d8f90b2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4c2887c31a14a32bd1d18d7d8f90b2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4c2887c31a14a32bd1d18d7d8f90b2c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_-ImcK7Tg4dMj-CP-ODtTotOVY=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.867961+00 2025-12-09 10:14:39.867965+00 3052 JS0104-A24#LWQ15 SPMX-20240815298171 \N \N \N 1 \N [{"file_id": "374431cb-ce54-4e16-85c3-2baae13d2b8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "643e98b9d24440d184d9eda0b2e5cc4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "643e98b9d24440d184d9eda0b2e5cc4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "643e98b9d24440d184d9eda0b2e5cc4e.jpg", "file_size": 10927, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A24#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643e98b9d24440d184d9eda0b2e5cc4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643e98b9d24440d184d9eda0b2e5cc4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643e98b9d24440d184d9eda0b2e5cc4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/643e98b9d24440d184d9eda0b2e5cc4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/643e98b9d24440d184d9eda0b2e5cc4e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qE4qLP20l6Tau0rTYffUlvpGVCM=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.86894+00 2025-12-09 10:14:39.868944+00 3053 HSH004#墨绿VS-D3 SPMX-20240815298169 \N \N \N 1 \N [{"file_id": "77ef8880-da69-4c4e-89d1-2ad87db1bfab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f8c79b9ac6449b78bec54d1074a2684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f8c79b9ac6449b78bec54d1074a2684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f8c79b9ac6449b78bec54d1074a2684.jpg", "file_size": 23182, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#墨绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c79b9ac6449b78bec54d1074a2684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c79b9ac6449b78bec54d1074a2684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c79b9ac6449b78bec54d1074a2684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f8c79b9ac6449b78bec54d1074a2684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f8c79b9ac6449b78bec54d1074a2684.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Uaocs1TKNI32xnlkrUPfswXj3Q=", "createTime": "2024-08-15 14:38:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.869943+00 2025-12-09 10:14:39.869947+00 3054 C213#黑色 SPMX-20240815298178 \N \N \N 1 \N [{"file_id": "94619818-f420-4c6d-abbe-e43ccb432f08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af270423c6be41a08402a0c688573fb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af270423c6be41a08402a0c688573fb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af270423c6be41a08402a0c688573fb3.jpg", "file_size": 23465, "is_delete": false, "file_type": 1, "original_file_name": "C213#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af270423c6be41a08402a0c688573fb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af270423c6be41a08402a0c688573fb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af270423c6be41a08402a0c688573fb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af270423c6be41a08402a0c688573fb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af270423c6be41a08402a0c688573fb3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATopLfzniaH5G8T4gUhU3WaQbsw=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.870953+00 2025-12-09 10:14:39.870957+00 3055 0001-14FWE#米色 SPMX-20240815298179 \N \N \N 1 \N [{"file_id": "6d06222d-a886-48f6-95ec-cc7a2b159748", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c656450ef9d4356b3ceac1aba9e9a3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c656450ef9d4356b3ceac1aba9e9a3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c656450ef9d4356b3ceac1aba9e9a3e.jpg", "file_size": 18930, "is_delete": false, "file_type": 1, "original_file_name": "0001-14FWE#米色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c656450ef9d4356b3ceac1aba9e9a3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c656450ef9d4356b3ceac1aba9e9a3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c656450ef9d4356b3ceac1aba9e9a3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c656450ef9d4356b3ceac1aba9e9a3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c656450ef9d4356b3ceac1aba9e9a3e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EM0T6I64ECOJ_YuhB3qFd_e5X8=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.871949+00 2025-12-09 10:14:39.871953+00 3056 HSH004#深灰VS-D3 SPMX-20240815298180 \N \N \N 1 \N [{"file_id": "006f6ecb-3f7d-4eb4-931e-2f7e800667fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a1b14a48124b4089eea45752a1f49c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a1b14a48124b4089eea45752a1f49c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a1b14a48124b4089eea45752a1f49c.jpg", "file_size": 21122, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#深灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a1b14a48124b4089eea45752a1f49c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a1b14a48124b4089eea45752a1f49c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a1b14a48124b4089eea45752a1f49c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a1b14a48124b4089eea45752a1f49c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a1b14a48124b4089eea45752a1f49c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLXSKtzoKAOgzdQgn1XVkaSwSFU=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.872931+00 2025-12-09 10:14:39.872935+00 3057 LHJ2207#长裙黑色 SPMX-20240815298173 \N \N \N 1 \N [{"file_id": "8162208b-f7c7-42ed-b260-64ea756e6fce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90aa2cf577ec441da7bddbf1f8ef610f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90aa2cf577ec441da7bddbf1f8ef610f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90aa2cf577ec441da7bddbf1f8ef610f.jpg", "file_size": 20753, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207#长裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90aa2cf577ec441da7bddbf1f8ef610f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90aa2cf577ec441da7bddbf1f8ef610f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90aa2cf577ec441da7bddbf1f8ef610f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90aa2cf577ec441da7bddbf1f8ef610f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90aa2cf577ec441da7bddbf1f8ef610f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gDq9i5-eBkVxjSNPpDR6P_oXDsc=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.87406+00 2025-12-09 10:14:39.874063+00 3058 FHPKDK-批布069-1 SPMX-20240815298174 \N \N \N 1 \N [{"file_id": "4cb1e10f-b17a-47b9-8c47-294e30f2f4e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bf22a0dd39f454780cad4308937cff6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bf22a0dd39f454780cad4308937cff6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bf22a0dd39f454780cad4308937cff6.jpg", "file_size": 31033, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布069-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf22a0dd39f454780cad4308937cff6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf22a0dd39f454780cad4308937cff6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf22a0dd39f454780cad4308937cff6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bf22a0dd39f454780cad4308937cff6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bf22a0dd39f454780cad4308937cff6.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-H-UQaWVP3e6wZCdd52pRzNxyRc=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.875126+00 2025-12-09 10:14:39.87513+00 3059 JS0104-A25#红LWQ15 SPMX-20240815298181 \N \N \N 1 \N [{"file_id": "6603ad44-0414-4554-a963-23dc28ece24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ed19e52c5c840f7a3d6003de2dfde13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ed19e52c5c840f7a3d6003de2dfde13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ed19e52c5c840f7a3d6003de2dfde13.jpg", "file_size": 11623, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A25#红LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed19e52c5c840f7a3d6003de2dfde13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed19e52c5c840f7a3d6003de2dfde13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed19e52c5c840f7a3d6003de2dfde13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ed19e52c5c840f7a3d6003de2dfde13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ed19e52c5c840f7a3d6003de2dfde13.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-JuEZGqnvCd30iJ3J43Sdgcu3Q=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.876138+00 2025-12-09 10:14:39.876142+00 3060 103A#-小码+105A大码-蓝色 SPMX-20240815298175 \N \N \N 1 \N [{"file_id": "68b6546c-28ce-4257-bf3e-0c05ba9c69ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a5f3cae50e4a15bcc571dcd39d8bca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a5f3cae50e4a15bcc571dcd39d8bca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a5f3cae50e4a15bcc571dcd39d8bca.jpg", "file_size": 74609, "is_delete": false, "file_type": 1, "original_file_name": "103A#-小码+105A大码-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5f3cae50e4a15bcc571dcd39d8bca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5f3cae50e4a15bcc571dcd39d8bca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5f3cae50e4a15bcc571dcd39d8bca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a5f3cae50e4a15bcc571dcd39d8bca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a5f3cae50e4a15bcc571dcd39d8bca.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASre81VG5rk_DZyM5NLmXXW4r_I=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.87714+00 2025-12-09 10:14:39.877145+00 3061 LZ1179#上身3号色 SPMX-20240815298176 \N \N \N 1 \N [{"file_id": "8c011028-2146-40b1-9714-bb7f46c66c0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f71917e321443f6a953afd4615f7263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f71917e321443f6a953afd4615f7263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f71917e321443f6a953afd4615f7263.jpg", "file_size": 11702, "is_delete": false, "file_type": 1, "original_file_name": "LZ1179#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f71917e321443f6a953afd4615f7263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f71917e321443f6a953afd4615f7263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f71917e321443f6a953afd4615f7263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f71917e321443f6a953afd4615f7263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f71917e321443f6a953afd4615f7263.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BoO_TXRBY79wavTlvaoKSAR4qA4=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.878146+00 2025-12-09 10:14:39.87815+00 3062 80029#短袖上衣 SPMX-20240815298172 \N \N \N 1 \N [{"file_id": "c652c7ca-1853-41d2-ad3b-2118eee96db8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0b5a85841b345d3a71b5fa9392d0da5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0b5a85841b345d3a71b5fa9392d0da5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0b5a85841b345d3a71b5fa9392d0da5.jpg", "file_size": 22722, "is_delete": false, "file_type": 1, "original_file_name": "80029#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b5a85841b345d3a71b5fa9392d0da5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b5a85841b345d3a71b5fa9392d0da5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b5a85841b345d3a71b5fa9392d0da5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0b5a85841b345d3a71b5fa9392d0da5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0b5a85841b345d3a71b5fa9392d0da5.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ol5KhUeoF48KQAekq0KQhK5mnqg=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.879133+00 2025-12-09 10:14:39.879137+00 3063 DH004# SPMX-20240815298177 \N \N \N 1 \N [{"file_id": "01c5d080-8c36-432f-aa1c-5c47ba600fff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25fab4f30ac249f3be1471728a15ba6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25fab4f30ac249f3be1471728a15ba6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25fab4f30ac249f3be1471728a15ba6e.jpg", "file_size": 17854, "is_delete": false, "file_type": 1, "original_file_name": "DH004#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fab4f30ac249f3be1471728a15ba6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fab4f30ac249f3be1471728a15ba6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fab4f30ac249f3be1471728a15ba6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25fab4f30ac249f3be1471728a15ba6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25fab4f30ac249f3be1471728a15ba6e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CXm80BNdwyHjimzoe0kIvnRdkRQ=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.880132+00 2025-12-09 10:14:39.880136+00 3064 22C01-9-18#WJC22 SPMX-20240815298182 \N \N \N 1 \N [{"file_id": "cd6de18b-b2fe-4769-a3de-fe45777e58fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fd005694dd04cfc8276089f0dd26fd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fd005694dd04cfc8276089f0dd26fd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fd005694dd04cfc8276089f0dd26fd7.jpg", "file_size": 18147, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-18#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd005694dd04cfc8276089f0dd26fd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd005694dd04cfc8276089f0dd26fd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd005694dd04cfc8276089f0dd26fd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fd005694dd04cfc8276089f0dd26fd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fd005694dd04cfc8276089f0dd26fd7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UZIED1t2zQM0Igef9oNg4DMWCU=", "createTime": "2024-08-15 14:38:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.881119+00 2025-12-09 10:14:39.881123+00 3065 22C01-9-19#WJC22 SPMX-20240815298193 \N \N \N 1 \N [{"file_id": "7a1f81a7-5bce-4846-9869-dd35036fa706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "559ab0032b704f06900097f069ff5ed7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "559ab0032b704f06900097f069ff5ed7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "559ab0032b704f06900097f069ff5ed7.jpg", "file_size": 28463, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-19#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559ab0032b704f06900097f069ff5ed7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559ab0032b704f06900097f069ff5ed7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559ab0032b704f06900097f069ff5ed7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/559ab0032b704f06900097f069ff5ed7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/559ab0032b704f06900097f069ff5ed7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXZh4Re5sGSxAnDhRkllJM8MjiU=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.882129+00 2025-12-09 10:14:39.882133+00 3066 LHJ2207-1#短裙墨绿 SPMX-20240815298184 \N \N \N 1 \N [{"file_id": "9082a32d-657a-45e6-89ee-e203f5de0273", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c461f8da736043d181f29c40d88b4f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c461f8da736043d181f29c40d88b4f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c461f8da736043d181f29c40d88b4f1c.jpg", "file_size": 20266, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c461f8da736043d181f29c40d88b4f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c461f8da736043d181f29c40d88b4f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c461f8da736043d181f29c40d88b4f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c461f8da736043d181f29c40d88b4f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c461f8da736043d181f29c40d88b4f1c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zyYb4u62QiY2n5SdUkPwUruMCQQ=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.883102+00 2025-12-09 10:14:39.883106+00 3067 LHJ2207-1#短裙彩兰 SPMX-20240815298195 \N \N \N 1 \N [{"file_id": "cd024c40-6227-46ca-85f5-a6962c6416fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "271d724f4c544457ae397be1c56e5cb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "271d724f4c544457ae397be1c56e5cb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "271d724f4c544457ae397be1c56e5cb7.jpg", "file_size": 20356, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271d724f4c544457ae397be1c56e5cb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271d724f4c544457ae397be1c56e5cb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271d724f4c544457ae397be1c56e5cb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/271d724f4c544457ae397be1c56e5cb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/271d724f4c544457ae397be1c56e5cb7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rODqkUmNSwdCHqW_RC306bkH39A=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.884119+00 2025-12-09 10:14:39.884124+00 3068 104#-杏色 SPMX-20240815298186 \N \N \N 1 \N [{"file_id": "0a5d4eea-d865-4a03-8d74-8cff48d3de72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b5a0929b38a4d1993043fdc78f4f8ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b5a0929b38a4d1993043fdc78f4f8ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b5a0929b38a4d1993043fdc78f4f8ae.jpg", "file_size": 57032, "is_delete": false, "file_type": 1, "original_file_name": "104#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5a0929b38a4d1993043fdc78f4f8ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5a0929b38a4d1993043fdc78f4f8ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5a0929b38a4d1993043fdc78f4f8ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b5a0929b38a4d1993043fdc78f4f8ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b5a0929b38a4d1993043fdc78f4f8ae.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CYm82flJ5SsU5Noluxc2NTwKUw=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.885117+00 2025-12-09 10:14:39.885121+00 3069 HSH004#白 SPMX-20240815298192 \N \N \N 1 \N [{"file_id": "477c9064-26d4-441c-a06f-01a62d00a5c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72eda2a9d6e349eda34a9521c91bf1d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72eda2a9d6e349eda34a9521c91bf1d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72eda2a9d6e349eda34a9521c91bf1d2.jpg", "file_size": 13560, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72eda2a9d6e349eda34a9521c91bf1d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72eda2a9d6e349eda34a9521c91bf1d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72eda2a9d6e349eda34a9521c91bf1d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72eda2a9d6e349eda34a9521c91bf1d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72eda2a9d6e349eda34a9521c91bf1d2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wXy2Ib58u5CH1umIwwW4CE05GHE=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.886119+00 2025-12-09 10:14:39.886122+00 3070 80029#短袖子 SPMX-20240815298183 \N \N \N 1 \N [{"file_id": "8ccaffb1-6204-4725-89a5-8508c590490a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f9ef1660b1c4569baee51e17f90e4df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f9ef1660b1c4569baee51e17f90e4df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f9ef1660b1c4569baee51e17f90e4df.jpg", "file_size": 17882, "is_delete": false, "file_type": 1, "original_file_name": "80029#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9ef1660b1c4569baee51e17f90e4df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9ef1660b1c4569baee51e17f90e4df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9ef1660b1c4569baee51e17f90e4df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f9ef1660b1c4569baee51e17f90e4df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f9ef1660b1c4569baee51e17f90e4df.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ury3a1NukdVnxKGcX_3lZHqyUN4=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.887089+00 2025-12-09 10:14:39.887092+00 3071 FHPKDK-批布069-2 SPMX-20240815298185 \N \N \N 1 \N [{"file_id": "7231e558-990d-42aa-926b-d6c2cc70bd66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3502cabcfacf40298cd898b76f7e44c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3502cabcfacf40298cd898b76f7e44c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3502cabcfacf40298cd898b76f7e44c8.jpg", "file_size": 26732, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布069-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3502cabcfacf40298cd898b76f7e44c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3502cabcfacf40298cd898b76f7e44c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3502cabcfacf40298cd898b76f7e44c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3502cabcfacf40298cd898b76f7e44c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3502cabcfacf40298cd898b76f7e44c8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpfGp2LA0JZeyiUged2yNSi1bqM=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.888077+00 2025-12-09 10:14:39.888081+00 3072 0001-14FWF#V5曲线 SPMX-20240815298190 \N \N \N 1 \N [{"file_id": "4c6a708a-0a52-4510-83e6-0b4c2276c63b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16ecc4d13dae4cfab2accd1294a82cd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16ecc4d13dae4cfab2accd1294a82cd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16ecc4d13dae4cfab2accd1294a82cd2.jpg", "file_size": 21741, "is_delete": false, "file_type": 1, "original_file_name": "0001-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ecc4d13dae4cfab2accd1294a82cd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ecc4d13dae4cfab2accd1294a82cd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ecc4d13dae4cfab2accd1294a82cd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16ecc4d13dae4cfab2accd1294a82cd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16ecc4d13dae4cfab2accd1294a82cd2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7OR770y8-LAhkcOLAxF5phvEug=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.889079+00 2025-12-09 10:14:39.889083+00 3073 C215#兰色 SPMX-20240815298187 \N \N \N 1 \N [{"file_id": "ce56254a-700d-4da2-b842-900d022e2c62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3095321754444888b1c86fce3786fac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3095321754444888b1c86fce3786fac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3095321754444888b1c86fce3786fac.jpg", "file_size": 16638, "is_delete": false, "file_type": 1, "original_file_name": "C215#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3095321754444888b1c86fce3786fac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3095321754444888b1c86fce3786fac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3095321754444888b1c86fce3786fac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3095321754444888b1c86fce3786fac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3095321754444888b1c86fce3786fac.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-EoOJbYvbRTXyqNP_g6qeyYuc8=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.890081+00 2025-12-09 10:14:39.890085+00 3074 LZ1179#上身4号色 SPMX-20240815298189 \N \N \N 1 \N [{"file_id": "7374b203-637d-499f-a673-6c6b3ea068c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3e1ac6ab39f455db014a06de068c670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3e1ac6ab39f455db014a06de068c670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3e1ac6ab39f455db014a06de068c670.jpg", "file_size": 11091, "is_delete": false, "file_type": 1, "original_file_name": "LZ1179#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e1ac6ab39f455db014a06de068c670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e1ac6ab39f455db014a06de068c670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e1ac6ab39f455db014a06de068c670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3e1ac6ab39f455db014a06de068c670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3e1ac6ab39f455db014a06de068c670.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5yLaUkE2e6pGRk61oIYSK6H3J0=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.891065+00 2025-12-09 10:14:39.891069+00 3075 8002FWF#上衣 SPMX-20240815298194 \N \N \N 1 \N [{"file_id": "f88f90da-0a6f-404e-9e0b-53164dc57d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f809ea9f9e454f18ae19c24c05d853c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f809ea9f9e454f18ae19c24c05d853c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f809ea9f9e454f18ae19c24c05d853c8.jpg", "file_size": 23083, "is_delete": false, "file_type": 1, "original_file_name": "8002FWF#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f809ea9f9e454f18ae19c24c05d853c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f809ea9f9e454f18ae19c24c05d853c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f809ea9f9e454f18ae19c24c05d853c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f809ea9f9e454f18ae19c24c05d853c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f809ea9f9e454f18ae19c24c05d853c8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZ9ndS_6BentfA0Weq0HhApzko0=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.892058+00 2025-12-09 10:14:39.892063+00 3076 DH004#1 SPMX-20240815298188 \N \N \N 1 \N [{"file_id": "e75cb781-243a-4077-9a71-62958e9b7878", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg", "file_size": 17980, "is_delete": false, "file_type": 1, "original_file_name": "DH004#1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11b578ed0a6d4e3ca5635a1f00fcd5a0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvwCfcMSBKHY6Fy1d7QRQb-MWKQ=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.893351+00 2025-12-09 10:14:39.893356+00 3077 JS0104-A25#蓝LWQ15 SPMX-20240815298191 \N \N \N 1 \N [{"file_id": "04b8594e-f625-405d-8c0e-3ea6a838f862", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a44ccd1e8620464e99e8b4f1b5059778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a44ccd1e8620464e99e8b4f1b5059778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a44ccd1e8620464e99e8b4f1b5059778.jpg", "file_size": 10238, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A25#蓝LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a44ccd1e8620464e99e8b4f1b5059778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a44ccd1e8620464e99e8b4f1b5059778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a44ccd1e8620464e99e8b4f1b5059778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a44ccd1e8620464e99e8b4f1b5059778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a44ccd1e8620464e99e8b4f1b5059778.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkVdP8kN5qcldux7s4AKnxIs6nY=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.89446+00 2025-12-09 10:14:39.894464+00 3078 FHPKDK-批布069-6 SPMX-20240815298207 \N \N \N 1 \N [{"file_id": "accec888-74a1-43a9-b3a6-af665df6cf91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4745bbbfa2254e2a9ffb2b64ce829f8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4745bbbfa2254e2a9ffb2b64ce829f8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4745bbbfa2254e2a9ffb2b64ce829f8c.jpg", "file_size": 31302, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布069-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4745bbbfa2254e2a9ffb2b64ce829f8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4745bbbfa2254e2a9ffb2b64ce829f8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4745bbbfa2254e2a9ffb2b64ce829f8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4745bbbfa2254e2a9ffb2b64ce829f8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4745bbbfa2254e2a9ffb2b64ce829f8c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4c9sVeVCAmjnFadzjc7YciwQmKc=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.895478+00 2025-12-09 10:14:39.895482+00 3079 104#-浅杏色 SPMX-20240815298199 \N \N \N 1 \N [{"file_id": "c8be97b7-21c1-4006-bcc0-0f6ca03f0a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebd8490884a341b3a7d3667868507f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebd8490884a341b3a7d3667868507f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebd8490884a341b3a7d3667868507f74.jpg", "file_size": 56803, "is_delete": false, "file_type": 1, "original_file_name": "104#-浅杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd8490884a341b3a7d3667868507f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd8490884a341b3a7d3667868507f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd8490884a341b3a7d3667868507f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebd8490884a341b3a7d3667868507f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebd8490884a341b3a7d3667868507f74.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edomn4uiGFT6z6RfzmQgDen3UmM=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.896478+00 2025-12-09 10:14:39.896482+00 3080 DH004#2 SPMX-20240815298202 \N \N \N 1 \N [{"file_id": "a5920e30-9995-4331-a498-2049742d9491", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4b2078a27fa4d1e8798966c7bf69557.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4b2078a27fa4d1e8798966c7bf69557.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4b2078a27fa4d1e8798966c7bf69557.jpg", "file_size": 19318, "is_delete": false, "file_type": 1, "original_file_name": "DH004#2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b2078a27fa4d1e8798966c7bf69557.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b2078a27fa4d1e8798966c7bf69557.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b2078a27fa4d1e8798966c7bf69557.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4b2078a27fa4d1e8798966c7bf69557.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4b2078a27fa4d1e8798966c7bf69557.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUFCjsX3bRHMbMa2bq9flxA_BXI=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.911218+00 2025-12-09 10:14:39.911222+00 3093 HSH004FW#VS-D3 SPMX-20240815298224 \N \N \N 1 \N [{"file_id": "73d06210-696e-4e26-94f3-ca9487dfabe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f6431f0ebd24eb39d8a6dca62d56444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f6431f0ebd24eb39d8a6dca62d56444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f6431f0ebd24eb39d8a6dca62d56444.jpg", "file_size": 28727, "is_delete": false, "file_type": 1, "original_file_name": "HSH004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f6431f0ebd24eb39d8a6dca62d56444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f6431f0ebd24eb39d8a6dca62d56444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f6431f0ebd24eb39d8a6dca62d56444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f6431f0ebd24eb39d8a6dca62d56444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f6431f0ebd24eb39d8a6dca62d56444.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lAS7wrdmDLOGwuG4UxO22XtdesU=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.897478+00 2025-12-09 10:14:39.897482+00 3081 0001-15FWE#杏绿色 SPMX-20240815298197 \N \N \N 1 \N [{"file_id": "8ad591bf-e32f-43f0-9f25-c37a0fd54148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51658c79bf854ad7ae4104cf76bbd954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51658c79bf854ad7ae4104cf76bbd954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51658c79bf854ad7ae4104cf76bbd954.jpg", "file_size": 18402, "is_delete": false, "file_type": 1, "original_file_name": "0001-15FWE#杏绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51658c79bf854ad7ae4104cf76bbd954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51658c79bf854ad7ae4104cf76bbd954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51658c79bf854ad7ae4104cf76bbd954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51658c79bf854ad7ae4104cf76bbd954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51658c79bf854ad7ae4104cf76bbd954.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Grv2nWcvrdzpYNH9vlH3t9-k6o=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.898546+00 2025-12-09 10:14:39.89855+00 3082 HSH004#红VS-D3 SPMX-20240815298203 \N \N \N 1 \N [{"file_id": "b32334c9-b9f1-4297-8a5b-73deae117952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ff78347b27640628bcde2bb780e4e20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ff78347b27640628bcde2bb780e4e20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ff78347b27640628bcde2bb780e4e20.jpg", "file_size": 21588, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff78347b27640628bcde2bb780e4e20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff78347b27640628bcde2bb780e4e20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ff78347b27640628bcde2bb780e4e20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ff78347b27640628bcde2bb780e4e20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ff78347b27640628bcde2bb780e4e20.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmtbIz8blyvxPO0tU4G_TjEpkdw=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.899618+00 2025-12-09 10:14:39.899622+00 3083 22C01-9-61#WJC22 SPMX-20240815298204 \N \N \N 1 \N [{"file_id": "ab342194-3082-4701-8a46-1e2ead344d6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7d9ded275ab46029b25eb19c5c5354a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7d9ded275ab46029b25eb19c5c5354a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7d9ded275ab46029b25eb19c5c5354a.jpg", "file_size": 7604, "is_delete": false, "file_type": 1, "original_file_name": "22C01-9-61#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d9ded275ab46029b25eb19c5c5354a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d9ded275ab46029b25eb19c5c5354a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d9ded275ab46029b25eb19c5c5354a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7d9ded275ab46029b25eb19c5c5354a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7d9ded275ab46029b25eb19c5c5354a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mu7t-T8XSwEUfDZXrrnQWY35jHg=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.900611+00 2025-12-09 10:14:39.900615+00 3084 LHJ2207-1#短裙枣红 SPMX-20240815298206 \N \N \N 1 \N [{"file_id": "ab08fe99-fe43-4aa4-887f-00fed5cc68e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb2d5e4d75a463fa867b64dd20ae539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb2d5e4d75a463fa867b64dd20ae539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb2d5e4d75a463fa867b64dd20ae539.jpg", "file_size": 20279, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb2d5e4d75a463fa867b64dd20ae539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb2d5e4d75a463fa867b64dd20ae539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb2d5e4d75a463fa867b64dd20ae539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb2d5e4d75a463fa867b64dd20ae539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb2d5e4d75a463fa867b64dd20ae539.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRieRq0R1areN2VCAGqjUXnevKg=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.903021+00 2025-12-09 10:14:39.903025+00 3085 JS0104-A26#LWQ15 SPMX-20240815298200 \N \N \N 1 \N [{"file_id": "9bc16acb-1c97-479a-8ae1-0c880c976560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a241d33213b4cc98d227a3eb5f0839c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a241d33213b4cc98d227a3eb5f0839c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a241d33213b4cc98d227a3eb5f0839c.jpg", "file_size": 13178, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A26#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a241d33213b4cc98d227a3eb5f0839c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a241d33213b4cc98d227a3eb5f0839c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a241d33213b4cc98d227a3eb5f0839c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a241d33213b4cc98d227a3eb5f0839c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a241d33213b4cc98d227a3eb5f0839c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gnyy2mDu0laA_GNo5_Ll3yjghQ=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.904048+00 2025-12-09 10:14:39.904051+00 3086 C215#枣红 SPMX-20240815298201 \N \N \N 1 \N [{"file_id": "bd462784-e41f-44e2-8343-82c8925842ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0627f9a4fb7b40d9bfb63c5d46164684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0627f9a4fb7b40d9bfb63c5d46164684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0627f9a4fb7b40d9bfb63c5d46164684.jpg", "file_size": 16507, "is_delete": false, "file_type": 1, "original_file_name": "C215#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0627f9a4fb7b40d9bfb63c5d46164684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0627f9a4fb7b40d9bfb63c5d46164684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0627f9a4fb7b40d9bfb63c5d46164684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0627f9a4fb7b40d9bfb63c5d46164684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0627f9a4fb7b40d9bfb63c5d46164684.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t1-eBgenk_Fu4xhd7H1GRtqi1zQ=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.905072+00 2025-12-09 10:14:39.905077+00 3087 FHPKDK-批布069-5 SPMX-20240815298196 \N \N \N 1 \N [{"file_id": "1fc853fd-9166-4a9f-ba8f-574bfd56d222", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee28a7f3de544428a6d6ff369458533b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee28a7f3de544428a6d6ff369458533b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee28a7f3de544428a6d6ff369458533b.jpg", "file_size": 35672, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布069-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee28a7f3de544428a6d6ff369458533b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee28a7f3de544428a6d6ff369458533b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee28a7f3de544428a6d6ff369458533b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee28a7f3de544428a6d6ff369458533b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee28a7f3de544428a6d6ff369458533b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HP0eR3n9b8RUKEOBZBi8fWYDWzw=", "createTime": "2024-08-15 14:38:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.906151+00 2025-12-09 10:14:39.906156+00 3088 LZ117FWF#1号色上身 SPMX-20240815298198 \N \N \N 1 \N [{"file_id": "72461bb3-4610-4e5e-85e5-8b0f7968b316", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7975e84da6ca45a19c261187dc944d18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7975e84da6ca45a19c261187dc944d18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7975e84da6ca45a19c261187dc944d18.jpg", "file_size": 21743, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#1号色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7975e84da6ca45a19c261187dc944d18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7975e84da6ca45a19c261187dc944d18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7975e84da6ca45a19c261187dc944d18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7975e84da6ca45a19c261187dc944d18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7975e84da6ca45a19c261187dc944d18.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gP4Zak9wop7xQMitK13wfTWixfc=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.907195+00 2025-12-09 10:14:39.907199+00 3089 DH004#3 SPMX-20240815298211 \N \N \N 1 \N [{"file_id": "1cabe71a-553c-489d-b795-0024792e1785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1b0984a81964b0c8a30a5d4cb586976.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1b0984a81964b0c8a30a5d4cb586976.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1b0984a81964b0c8a30a5d4cb586976.jpg", "file_size": 18140, "is_delete": false, "file_type": 1, "original_file_name": "DH004#3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b0984a81964b0c8a30a5d4cb586976.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b0984a81964b0c8a30a5d4cb586976.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b0984a81964b0c8a30a5d4cb586976.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1b0984a81964b0c8a30a5d4cb586976.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1b0984a81964b0c8a30a5d4cb586976.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nuxYSBF2iKlrmcVY_NQZiFrBiBA=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.908202+00 2025-12-09 10:14:39.908206+00 3090 22C02-09#63# SPMX-20240815298219 \N \N \N 1 \N [{"file_id": "0ba2c787-1ce8-46c6-92bf-bb2add6f3183", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "359ea703fba04999a605ee308afdefd7.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "359ea703fba04999a605ee308afdefd7.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "359ea703fba04999a605ee308afdefd7.png", "file_size": 136745, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09#63#.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359ea703fba04999a605ee308afdefd7.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359ea703fba04999a605ee308afdefd7.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359ea703fba04999a605ee308afdefd7.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/359ea703fba04999a605ee308afdefd7.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/359ea703fba04999a605ee308afdefd7.png?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McLANwI22sU6NkM_vszxjnlgSWc=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.909189+00 2025-12-09 10:14:39.909193+00 3091 104#-白色 SPMX-20240815298221 \N \N \N 1 \N [{"file_id": "4ebf5e09-44a6-4b10-984f-2ae8fe21ac40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dcafb09c3fe4908a88966660ec82890.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dcafb09c3fe4908a88966660ec82890.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dcafb09c3fe4908a88966660ec82890.jpg", "file_size": 55620, "is_delete": false, "file_type": 1, "original_file_name": "104#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dcafb09c3fe4908a88966660ec82890.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dcafb09c3fe4908a88966660ec82890.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dcafb09c3fe4908a88966660ec82890.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dcafb09c3fe4908a88966660ec82890.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dcafb09c3fe4908a88966660ec82890.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AY6y8797e8TEx_AaCx4m-REaoo8=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.910179+00 2025-12-09 10:14:39.910183+00 3092 104#-灰色 SPMX-20240815298209 \N \N \N 1 \N [{"file_id": "476d58d4-fe57-4539-a6fd-357e0d763f99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24b25c0d595c4cfe8ece64ce2c78765d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24b25c0d595c4cfe8ece64ce2c78765d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24b25c0d595c4cfe8ece64ce2c78765d.jpg", "file_size": 61976, "is_delete": false, "file_type": 1, "original_file_name": "104#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b25c0d595c4cfe8ece64ce2c78765d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b25c0d595c4cfe8ece64ce2c78765d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b25c0d595c4cfe8ece64ce2c78765d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24b25c0d595c4cfe8ece64ce2c78765d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24b25c0d595c4cfe8ece64ce2c78765d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slgF0m2OKBFu-8OtOJP-9RNIWH8=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.912217+00 2025-12-09 10:14:39.912221+00 3094 JS0104-A27#粉色 SPMX-20240815298212 \N \N \N 1 \N [{"file_id": "b6a20b06-2e41-42f5-92d7-11a0062d8f4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6e2be1a8fc04622891bda855aa4317b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6e2be1a8fc04622891bda855aa4317b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6e2be1a8fc04622891bda855aa4317b.jpg", "file_size": 14331, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A27#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e2be1a8fc04622891bda855aa4317b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e2be1a8fc04622891bda855aa4317b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e2be1a8fc04622891bda855aa4317b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6e2be1a8fc04622891bda855aa4317b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6e2be1a8fc04622891bda855aa4317b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3H7Kd8n55uEV-a0LEYQPYKmcEo=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.913217+00 2025-12-09 10:14:39.91322+00 3095 HSH004#黑 SPMX-20240815298214 \N \N \N 1 \N [{"file_id": "d08fc083-56fc-4847-a329-9cd90976d841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ee66bc97b234562b788b2c75b6d6fd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ee66bc97b234562b788b2c75b6d6fd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ee66bc97b234562b788b2c75b6d6fd3.jpg", "file_size": 14061, "is_delete": false, "file_type": 1, "original_file_name": "HSH004#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee66bc97b234562b788b2c75b6d6fd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee66bc97b234562b788b2c75b6d6fd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee66bc97b234562b788b2c75b6d6fd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ee66bc97b234562b788b2c75b6d6fd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ee66bc97b234562b788b2c75b6d6fd3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6mI6CBqHgejXk9MErJlc-OG2JA=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.914208+00 2025-12-09 10:14:39.914212+00 3096 JS0104-A27#黄色 SPMX-20240815298223 \N \N \N 1 \N [{"file_id": "ddbd7f66-9b64-4fe7-b712-a89aa4d0eae4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5864365c46a244068a48771035ef2b9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5864365c46a244068a48771035ef2b9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5864365c46a244068a48771035ef2b9d.jpg", "file_size": 14360, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A27#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5864365c46a244068a48771035ef2b9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5864365c46a244068a48771035ef2b9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5864365c46a244068a48771035ef2b9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5864365c46a244068a48771035ef2b9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5864365c46a244068a48771035ef2b9d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_pNnIDZMQgKHmDNqQNLZbQ4olA=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.915202+00 2025-12-09 10:14:39.915206+00 3097 DH004#4 SPMX-20240815298222 \N \N \N 1 \N [{"file_id": "c2ccb261-6220-4ad3-acc8-c38dbfb9f1f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a42873de06e4c0cac07efe6f23b3672.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a42873de06e4c0cac07efe6f23b3672.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a42873de06e4c0cac07efe6f23b3672.jpg", "file_size": 12490, "is_delete": false, "file_type": 1, "original_file_name": "DH004#4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a42873de06e4c0cac07efe6f23b3672.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a42873de06e4c0cac07efe6f23b3672.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a42873de06e4c0cac07efe6f23b3672.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a42873de06e4c0cac07efe6f23b3672.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a42873de06e4c0cac07efe6f23b3672.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxlucX85TZL-6-AY2ncnL59qU4I=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.916211+00 2025-12-09 10:14:39.916216+00 3098 LHJ2207-1#短裙紫色 SPMX-20240815298215 \N \N \N 1 \N [{"file_id": "8db3f3cb-4ac5-48b7-a7fa-0e3352f6050a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a911be5e5dd4edda01385552eb6283d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a911be5e5dd4edda01385552eb6283d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a911be5e5dd4edda01385552eb6283d.jpg", "file_size": 20172, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a911be5e5dd4edda01385552eb6283d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a911be5e5dd4edda01385552eb6283d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a911be5e5dd4edda01385552eb6283d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a911be5e5dd4edda01385552eb6283d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a911be5e5dd4edda01385552eb6283d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLdA9DibOMRU-4m9t9S3a9mG4iE=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.917192+00 2025-12-09 10:14:39.917196+00 3099 C215#粉色 SPMX-20240815298213 \N \N \N 1 \N [{"file_id": "69db590a-bfc7-4ef4-9d4c-4d4b23ec682f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33646c5df1384b6c929957509c59e4b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33646c5df1384b6c929957509c59e4b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33646c5df1384b6c929957509c59e4b0.jpg", "file_size": 14669, "is_delete": false, "file_type": 1, "original_file_name": "C215#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33646c5df1384b6c929957509c59e4b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33646c5df1384b6c929957509c59e4b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33646c5df1384b6c929957509c59e4b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33646c5df1384b6c929957509c59e4b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33646c5df1384b6c929957509c59e4b0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OCAqDrrhyw7Uct9K5U1XrrNQ0Y=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.918209+00 2025-12-09 10:14:39.918213+00 3100 LZ117FWF#2号色上身 SPMX-20240815298218 \N \N \N 1 \N [{"file_id": "6a06bfb6-cf42-423e-bf76-eb428296f6e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44ed295a2ee84e4f8a9fedcdb0130adb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44ed295a2ee84e4f8a9fedcdb0130adb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44ed295a2ee84e4f8a9fedcdb0130adb.jpg", "file_size": 20547, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#2号色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ed295a2ee84e4f8a9fedcdb0130adb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ed295a2ee84e4f8a9fedcdb0130adb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ed295a2ee84e4f8a9fedcdb0130adb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44ed295a2ee84e4f8a9fedcdb0130adb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44ed295a2ee84e4f8a9fedcdb0130adb.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEu9-LcNHNjTjUQwHMaz7-ILBHk=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.919211+00 2025-12-09 10:14:39.919216+00 3101 8003#原版净色 SPMX-20240815298216 \N \N \N 1 \N [{"file_id": "866249f3-a5d3-4efb-8ce1-96ecc669bc7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b157cbd2476470e9978840b9b875880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b157cbd2476470e9978840b9b875880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b157cbd2476470e9978840b9b875880.jpg", "file_size": 6340, "is_delete": false, "file_type": 1, "original_file_name": "8003#原版净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b157cbd2476470e9978840b9b875880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b157cbd2476470e9978840b9b875880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b157cbd2476470e9978840b9b875880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b157cbd2476470e9978840b9b875880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b157cbd2476470e9978840b9b875880.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IzGodnoIlyYVHOmNtv6rQ2VJLE=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.920198+00 2025-12-09 10:14:39.920202+00 3102 0001-16FWE#VS-D3 SPMX-20240815298220 \N \N \N 1 \N [{"file_id": "d5aea0c5-7d9d-4d58-b465-92e05ba103dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "481468ec072e4094aa0be81bb7d28f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "481468ec072e4094aa0be81bb7d28f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "481468ec072e4094aa0be81bb7d28f15.jpg", "file_size": 20226, "is_delete": false, "file_type": 1, "original_file_name": "0001-16FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481468ec072e4094aa0be81bb7d28f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481468ec072e4094aa0be81bb7d28f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481468ec072e4094aa0be81bb7d28f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/481468ec072e4094aa0be81bb7d28f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/481468ec072e4094aa0be81bb7d28f15.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYFcnCWcmUEHjKwq6-yS4oam0ko=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.921194+00 2025-12-09 10:14:39.921198+00 3103 LZ117FWF#1号色裤子 SPMX-20240815298208 \N \N \N 1 \N [{"file_id": "d2fca7e3-b2f5-4730-abda-360392e16059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c3b3270f9654e57871f5d1d239fab34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c3b3270f9654e57871f5d1d239fab34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c3b3270f9654e57871f5d1d239fab34.jpg", "file_size": 22238, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#1号色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3b3270f9654e57871f5d1d239fab34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3b3270f9654e57871f5d1d239fab34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3b3270f9654e57871f5d1d239fab34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c3b3270f9654e57871f5d1d239fab34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c3b3270f9654e57871f5d1d239fab34.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-WsqjPrJ065ejOle5dC1AUzk6No=", "createTime": "2024-08-15 14:38:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.922331+00 2025-12-09 10:14:39.922335+00 3104 0001-15FWF#V5曲线 SPMX-20240815298210 \N \N \N 1 \N [{"file_id": "d2f09780-4f43-48c4-84e0-82ad51b952ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96239c8089746b89968cae0bc92edfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96239c8089746b89968cae0bc92edfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96239c8089746b89968cae0bc92edfc.jpg", "file_size": 8980, "is_delete": false, "file_type": 1, "original_file_name": "0001-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96239c8089746b89968cae0bc92edfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96239c8089746b89968cae0bc92edfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96239c8089746b89968cae0bc92edfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96239c8089746b89968cae0bc92edfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96239c8089746b89968cae0bc92edfc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91FJ2BeYCwcEnTCl8s6SbHtcuro=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.923368+00 2025-12-09 10:14:39.923372+00 3105 FHPKDK-批布070-1 SPMX-20240815298217 \N \N \N 1 \N [{"file_id": "d34f5715-e897-4c1d-9c6f-bc4e400a190c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60b6d6a58bf644b7b4d1098dc1b46f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60b6d6a58bf644b7b4d1098dc1b46f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60b6d6a58bf644b7b4d1098dc1b46f41.jpg", "file_size": 30934, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布070-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b6d6a58bf644b7b4d1098dc1b46f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b6d6a58bf644b7b4d1098dc1b46f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b6d6a58bf644b7b4d1098dc1b46f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60b6d6a58bf644b7b4d1098dc1b46f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60b6d6a58bf644b7b4d1098dc1b46f41.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t36yEuQu5ju0Zi96QuXEZMK64HI=", "createTime": "2024-08-15 14:38:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.92437+00 2025-12-09 10:14:39.924374+00 3106 LZ117FWF#2号色裤子 SPMX-20240815298229 \N \N \N 1 \N [{"file_id": "81640912-c57d-4a10-bf54-78afaeb9da49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8a63b41c96c425daf8a25f36ec0664a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8a63b41c96c425daf8a25f36ec0664a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8a63b41c96c425daf8a25f36ec0664a.jpg", "file_size": 20274, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#2号色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a63b41c96c425daf8a25f36ec0664a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a63b41c96c425daf8a25f36ec0664a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a63b41c96c425daf8a25f36ec0664a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8a63b41c96c425daf8a25f36ec0664a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8a63b41c96c425daf8a25f36ec0664a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9gyk4XXazZ7TBbQO6sIdCqOeUM=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.925381+00 2025-12-09 10:14:39.925385+00 3107 8003#咖色L SPMX-20240815298238 \N \N \N 1 \N [{"file_id": "4c6fed62-b0a5-4ed4-afbb-18ffd76ae52d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa62e502646c4276824291a20bd6b425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa62e502646c4276824291a20bd6b425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa62e502646c4276824291a20bd6b425.jpg", "file_size": 77010, "is_delete": false, "file_type": 1, "original_file_name": "8003#咖色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62e502646c4276824291a20bd6b425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62e502646c4276824291a20bd6b425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62e502646c4276824291a20bd6b425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa62e502646c4276824291a20bd6b425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa62e502646c4276824291a20bd6b425.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7nlUvQPTdMc-osBsZKBuAXWKd8g=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.926391+00 2025-12-09 10:14:39.926395+00 3108 FHPKDK-批布070-2 SPMX-20240815298228 \N \N \N 1 \N [{"file_id": "62754e3e-1118-4622-bce7-68fe5dfd6466", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "551c7b6656af4d759e1729feae949a5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "551c7b6656af4d759e1729feae949a5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "551c7b6656af4d759e1729feae949a5f.jpg", "file_size": 31589, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布070-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551c7b6656af4d759e1729feae949a5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551c7b6656af4d759e1729feae949a5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551c7b6656af4d759e1729feae949a5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/551c7b6656af4d759e1729feae949a5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/551c7b6656af4d759e1729feae949a5f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2OMnHT-JedT5NPYuMxqSvzhv-ac=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.927397+00 2025-12-09 10:14:39.927402+00 3109 FHPKDK-批布071-1 SPMX-20240815298239 \N \N \N 1 \N [{"file_id": "c2079b31-3f90-47f5-a52d-5abbb89560c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b04ced9b6b61412298ad5e507062e27f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b04ced9b6b61412298ad5e507062e27f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b04ced9b6b61412298ad5e507062e27f.jpg", "file_size": 37872, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布071-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04ced9b6b61412298ad5e507062e27f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04ced9b6b61412298ad5e507062e27f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04ced9b6b61412298ad5e507062e27f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b04ced9b6b61412298ad5e507062e27f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b04ced9b6b61412298ad5e507062e27f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6wVfsBa1kGdAl5if2vrUt6vKA7c=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.928824+00 2025-12-09 10:14:39.928829+00 3110 C215#红色 SPMX-20240815298225 \N \N \N 1 \N [{"file_id": "4ea55b02-5b87-41d7-9531-c59e0620580c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "473e974aef89491283b524fd3ec2ce6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "473e974aef89491283b524fd3ec2ce6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "473e974aef89491283b524fd3ec2ce6b.jpg", "file_size": 17454, "is_delete": false, "file_type": 1, "original_file_name": "C215#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473e974aef89491283b524fd3ec2ce6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473e974aef89491283b524fd3ec2ce6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473e974aef89491283b524fd3ec2ce6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/473e974aef89491283b524fd3ec2ce6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/473e974aef89491283b524fd3ec2ce6b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwOgzs2z3XkeSnYlfw0xY_Hig_o=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.938373+00 2025-12-09 10:14:39.938378+00 3119 HSH004FWE#VS-D3 SPMX-20240815298231 \N \N \N 1 \N [{"file_id": "6b91d4c1-9389-45aa-97da-f5f821d748e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deb4d325d7d043d48d02635f5b57dc2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deb4d325d7d043d48d02635f5b57dc2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deb4d325d7d043d48d02635f5b57dc2c.jpg", "file_size": 21661, "is_delete": false, "file_type": 1, "original_file_name": "HSH004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb4d325d7d043d48d02635f5b57dc2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb4d325d7d043d48d02635f5b57dc2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb4d325d7d043d48d02635f5b57dc2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deb4d325d7d043d48d02635f5b57dc2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deb4d325d7d043d48d02635f5b57dc2c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bIMnhzPbHpi9lt8_FnMlO97kNM8=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.929904+00 2025-12-09 10:14:39.929909+00 3111 LHJ2207-1#短裙黑色 SPMX-20240815298236 \N \N \N 1 \N [{"file_id": "b77240a0-ed63-4e83-a91b-d6d09bd64ba8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41997432b4a946ff8dac07a09b88916f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41997432b4a946ff8dac07a09b88916f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41997432b4a946ff8dac07a09b88916f.jpg", "file_size": 20691, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41997432b4a946ff8dac07a09b88916f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41997432b4a946ff8dac07a09b88916f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41997432b4a946ff8dac07a09b88916f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41997432b4a946ff8dac07a09b88916f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41997432b4a946ff8dac07a09b88916f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWdwSE6G3bYjI7HY5JO2ycdPHW8=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.930964+00 2025-12-09 10:14:39.930969+00 3112 8003#咖色2XL SPMX-20240815298227 \N \N \N 1 \N [{"file_id": "41eb6508-75f9-43e8-b1e3-bcf57f6e1566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e7779ef1b994a3b8d10fc00e1b69750.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e7779ef1b994a3b8d10fc00e1b69750.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e7779ef1b994a3b8d10fc00e1b69750.jpg", "file_size": 72591, "is_delete": false, "file_type": 1, "original_file_name": "8003#咖色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7779ef1b994a3b8d10fc00e1b69750.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7779ef1b994a3b8d10fc00e1b69750.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7779ef1b994a3b8d10fc00e1b69750.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e7779ef1b994a3b8d10fc00e1b69750.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e7779ef1b994a3b8d10fc00e1b69750.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4wk-0bU-Zj0B5hu2G1HKhuTGnCA=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.931976+00 2025-12-09 10:14:39.93198+00 3113 JS0104-A28#LWQ15 SPMX-20240815298234 \N \N \N 1 \N [{"file_id": "a7f93486-cae4-472b-aa7c-11240ee0f231", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e36103cc16424dbd9e62c01789cf0cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e36103cc16424dbd9e62c01789cf0cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e36103cc16424dbd9e62c01789cf0cb6.jpg", "file_size": 17944, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A28#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36103cc16424dbd9e62c01789cf0cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36103cc16424dbd9e62c01789cf0cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e36103cc16424dbd9e62c01789cf0cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e36103cc16424dbd9e62c01789cf0cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e36103cc16424dbd9e62c01789cf0cb6.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8D2ewTJPfTx_YQIEtUD5QwBxCuQ=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.933014+00 2025-12-09 10:14:39.933018+00 3114 DH004#5 SPMX-20240815298235 \N \N \N 1 \N [{"file_id": "d7eb1579-db67-4dc8-a6b8-f9711964a34d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c88fdfc116448418343663305d8c923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c88fdfc116448418343663305d8c923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c88fdfc116448418343663305d8c923.jpg", "file_size": 17693, "is_delete": false, "file_type": 1, "original_file_name": "DH004#5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c88fdfc116448418343663305d8c923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c88fdfc116448418343663305d8c923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c88fdfc116448418343663305d8c923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c88fdfc116448418343663305d8c923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c88fdfc116448418343663305d8c923.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xOBFWIoImbxwAsP8oOsW2r-0YQ=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.939656+00 2025-12-09 10:14:39.93966+00 3120 22C02-09-58#30码 SPMX-20240815298230 \N \N \N 1 \N [{"file_id": "a7cdf1ee-3ff8-448e-8a14-00db7b8ca84e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b82869211e8142dcbeceb64061c4805e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b82869211e8142dcbeceb64061c4805e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b82869211e8142dcbeceb64061c4805e.jpg", "file_size": 20891, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-58#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82869211e8142dcbeceb64061c4805e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82869211e8142dcbeceb64061c4805e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82869211e8142dcbeceb64061c4805e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b82869211e8142dcbeceb64061c4805e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b82869211e8142dcbeceb64061c4805e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6-Nj-AIFNv3btJHvnGd2kOvwEk=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.934018+00 2025-12-09 10:14:39.934022+00 3115 LZ117FWF#3号色上身 SPMX-20240815298240 \N \N \N 1 \N [{"file_id": "60c15d3a-33e4-4ef5-be1e-26e572490e6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c55e2ab0c6c445eaf386f780a275bbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c55e2ab0c6c445eaf386f780a275bbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c55e2ab0c6c445eaf386f780a275bbb.jpg", "file_size": 21122, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#3号色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c55e2ab0c6c445eaf386f780a275bbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c55e2ab0c6c445eaf386f780a275bbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c55e2ab0c6c445eaf386f780a275bbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c55e2ab0c6c445eaf386f780a275bbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c55e2ab0c6c445eaf386f780a275bbb.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsqVjB7EOz3JWQKhcEbb5K9rUIE=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.935045+00 2025-12-09 10:14:39.935048+00 3116 0001-16FWF#V5曲线 SPMX-20240815298232 \N \N \N 1 \N [{"file_id": "3aaa5896-e605-447c-98d1-01eca32afc2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72d0b413040f41bca478af121dddace8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72d0b413040f41bca478af121dddace8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72d0b413040f41bca478af121dddace8.jpg", "file_size": 7436, "is_delete": false, "file_type": 1, "original_file_name": "0001-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d0b413040f41bca478af121dddace8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d0b413040f41bca478af121dddace8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d0b413040f41bca478af121dddace8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72d0b413040f41bca478af121dddace8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72d0b413040f41bca478af121dddace8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bjL6M9OYMuZSJCW8ZVTCk1yxFM=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.936045+00 2025-12-09 10:14:39.936049+00 3117 C215#绿色 SPMX-20240815298237 \N \N \N 1 \N [{"file_id": "7304fa43-69e4-49a9-af47-f54ca8d749b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55789a977d9d446ab330fef4a199e7a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55789a977d9d446ab330fef4a199e7a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55789a977d9d446ab330fef4a199e7a2.jpg", "file_size": 14895, "is_delete": false, "file_type": 1, "original_file_name": "C215#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789a977d9d446ab330fef4a199e7a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789a977d9d446ab330fef4a199e7a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789a977d9d446ab330fef4a199e7a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55789a977d9d446ab330fef4a199e7a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55789a977d9d446ab330fef4a199e7a2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n571RESW9t8XRzM1XiPV7TfseSE=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.937079+00 2025-12-09 10:14:39.937082+00 3118 LHJ2207-1#短裙草绿 SPMX-20240815298226 \N \N \N 1 \N [{"file_id": "be1705e8-8c07-47d4-829e-4cee5f119108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5cdb1da99e74d72ab32e566b156883e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5cdb1da99e74d72ab32e566b156883e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5cdb1da99e74d72ab32e566b156883e.jpg", "file_size": 19120, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2207-1#短裙草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cdb1da99e74d72ab32e566b156883e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cdb1da99e74d72ab32e566b156883e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cdb1da99e74d72ab32e566b156883e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5cdb1da99e74d72ab32e566b156883e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5cdb1da99e74d72ab32e566b156883e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7JF8wK_zuK2Y--nbE0eFaMJYRE=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.940961+00 2025-12-09 10:14:39.940965+00 3121 104#-黑色 SPMX-20240815298233 \N \N \N 1 \N [{"file_id": "abed44c7-3bdf-4673-90ec-c9fa55957e3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17b3e343be0c46139831e67d22e911c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17b3e343be0c46139831e67d22e911c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17b3e343be0c46139831e67d22e911c8.jpg", "file_size": 57042, "is_delete": false, "file_type": 1, "original_file_name": "104#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3e343be0c46139831e67d22e911c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3e343be0c46139831e67d22e911c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3e343be0c46139831e67d22e911c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17b3e343be0c46139831e67d22e911c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17b3e343be0c46139831e67d22e911c8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vizAjhdcGkBvhGRrbSdW3Nwu4Wk=", "createTime": "2024-08-15 14:38:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.942277+00 2025-12-09 10:14:39.942282+00 3122 C215#黄色 SPMX-20240815298248 \N \N \N 1 \N [{"file_id": "b2428418-7f59-4aa2-b3d3-6f05a20ebe40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "300f9e7ac7d045a69b9a3c82a0d272cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "300f9e7ac7d045a69b9a3c82a0d272cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "300f9e7ac7d045a69b9a3c82a0d272cc.jpg", "file_size": 15271, "is_delete": false, "file_type": 1, "original_file_name": "C215#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300f9e7ac7d045a69b9a3c82a0d272cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300f9e7ac7d045a69b9a3c82a0d272cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300f9e7ac7d045a69b9a3c82a0d272cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/300f9e7ac7d045a69b9a3c82a0d272cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/300f9e7ac7d045a69b9a3c82a0d272cc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abFQhQ3get11LvE94j8EXm-ENv8=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.943556+00 2025-12-09 10:14:39.94356+00 3123 8003#咖色XL SPMX-20240815298249 \N \N \N 1 \N [{"file_id": "55d93b47-d21b-4668-a09e-79ae3b7f14c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e43571ed81f842378a74855c665be781.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e43571ed81f842378a74855c665be781.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e43571ed81f842378a74855c665be781.jpg", "file_size": 76768, "is_delete": false, "file_type": 1, "original_file_name": "8003#咖色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43571ed81f842378a74855c665be781.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43571ed81f842378a74855c665be781.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43571ed81f842378a74855c665be781.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e43571ed81f842378a74855c665be781.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e43571ed81f842378a74855c665be781.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nI9g62Wo9a0XaqoNLAoHHWrJ28=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.946188+00 2025-12-09 10:14:39.946192+00 3125 HSH005#VS-D3 SPMX-20240815298253 \N \N \N 1 \N [{"file_id": "a3f4fca4-23a3-45fa-9337-4dfb3816323e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8e8ed827668434f9cc6b5bae8850c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8e8ed827668434f9cc6b5bae8850c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8e8ed827668434f9cc6b5bae8850c8e.jpg", "file_size": 12598, "is_delete": false, "file_type": 1, "original_file_name": "HSH005#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e8ed827668434f9cc6b5bae8850c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e8ed827668434f9cc6b5bae8850c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e8ed827668434f9cc6b5bae8850c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8e8ed827668434f9cc6b5bae8850c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8e8ed827668434f9cc6b5bae8850c8e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vd-nsPtRofuxyK43vjvmXkU8ZA=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.947478+00 2025-12-09 10:14:39.947482+00 3126 22C02-09-58#32码 SPMX-20240815298241 \N \N \N 1 \N [{"file_id": "4ecd6ea6-0ec6-4fd8-bb17-116a197b557a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a81bb1ebf474a7b9498dedb8a611c27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a81bb1ebf474a7b9498dedb8a611c27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a81bb1ebf474a7b9498dedb8a611c27.jpg", "file_size": 21003, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-58#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81bb1ebf474a7b9498dedb8a611c27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81bb1ebf474a7b9498dedb8a611c27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81bb1ebf474a7b9498dedb8a611c27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a81bb1ebf474a7b9498dedb8a611c27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a81bb1ebf474a7b9498dedb8a611c27.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0urpP89XJ-XPlsHt5EGqYYy1U3Q=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.948517+00 2025-12-09 10:14:39.948521+00 3127 104#杏底红色 SPMX-20240815298246 \N \N \N 1 \N [{"file_id": "114b1439-8f73-4c26-bb4d-f5c10b7f65cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2c85165f5894a5b82a72b9e55e2dce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2c85165f5894a5b82a72b9e55e2dce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2c85165f5894a5b82a72b9e55e2dce5.jpg", "file_size": 19561, "is_delete": false, "file_type": 1, "original_file_name": "104#杏底红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c85165f5894a5b82a72b9e55e2dce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c85165f5894a5b82a72b9e55e2dce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c85165f5894a5b82a72b9e55e2dce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2c85165f5894a5b82a72b9e55e2dce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2c85165f5894a5b82a72b9e55e2dce5.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdddoOqhQjWxK0bhjM6Z_6Z04uw=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.944861+00 2025-12-09 10:14:39.944865+00 3124 22C02-09-58#34码 SPMX-20240815298252 \N \N \N 1 \N [{"file_id": "6ec31054-04c4-4dd7-bc96-b15df1575553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93c76bc7e0784bc880249d99b7bd36f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93c76bc7e0784bc880249d99b7bd36f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93c76bc7e0784bc880249d99b7bd36f3.jpg", "file_size": 20387, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-58#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c76bc7e0784bc880249d99b7bd36f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c76bc7e0784bc880249d99b7bd36f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c76bc7e0784bc880249d99b7bd36f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93c76bc7e0784bc880249d99b7bd36f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93c76bc7e0784bc880249d99b7bd36f3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7oNYXwTm5Q1fsGQzv-BmgqpNBQ=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.950854+00 2025-12-09 10:14:39.950859+00 3128 0001-17FWE#VS-D3 SPMX-20240815298243 \N \N \N 1 \N [{"file_id": "2529e42f-5de5-4fb2-a91c-8fd4071deeb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caab0abb9ff840c2994e1b232e6fc485.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caab0abb9ff840c2994e1b232e6fc485.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caab0abb9ff840c2994e1b232e6fc485.jpg", "file_size": 16910, "is_delete": false, "file_type": 1, "original_file_name": "0001-17FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caab0abb9ff840c2994e1b232e6fc485.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caab0abb9ff840c2994e1b232e6fc485.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caab0abb9ff840c2994e1b232e6fc485.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caab0abb9ff840c2994e1b232e6fc485.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caab0abb9ff840c2994e1b232e6fc485.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZ4uIYZyL0A0-OA67kBIikRq9PY=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.951971+00 2025-12-09 10:14:39.951975+00 3129 FHPKDK-批布071-2 SPMX-20240815298250 \N \N \N 1 \N [{"file_id": "c13cd845-8697-4a2b-87cd-d3807274e909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d8a6082a19c42cf95e30f43344804b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d8a6082a19c42cf95e30f43344804b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d8a6082a19c42cf95e30f43344804b9.jpg", "file_size": 39704, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布071-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8a6082a19c42cf95e30f43344804b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8a6082a19c42cf95e30f43344804b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8a6082a19c42cf95e30f43344804b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d8a6082a19c42cf95e30f43344804b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d8a6082a19c42cf95e30f43344804b9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwCSpHwxDQfMScufsVxyoASdBcI=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.95301+00 2025-12-09 10:14:39.953014+00 3130 HSH005#D SPMX-20240815298242 \N \N \N 1 \N [{"file_id": "e23a5bf5-a1b6-4879-aaca-67dfe79588de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e87eef7a376a47e3a832ba9c6f2be330.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e87eef7a376a47e3a832ba9c6f2be330.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e87eef7a376a47e3a832ba9c6f2be330.jpg", "file_size": 22651, "is_delete": false, "file_type": 1, "original_file_name": "HSH005#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87eef7a376a47e3a832ba9c6f2be330.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87eef7a376a47e3a832ba9c6f2be330.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87eef7a376a47e3a832ba9c6f2be330.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e87eef7a376a47e3a832ba9c6f2be330.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e87eef7a376a47e3a832ba9c6f2be330.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQBQFac0pmMIVLA0dGhoSM6I0ZQ=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.954038+00 2025-12-09 10:14:39.954043+00 3131 JS0104-A29#粉色 SPMX-20240815298244 \N \N \N 1 \N [{"file_id": "a141b38d-357a-4445-8ed1-8f2ab4759070", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6ef0d95d2b440b3adfc83698f5d78e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6ef0d95d2b440b3adfc83698f5d78e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6ef0d95d2b440b3adfc83698f5d78e3.jpg", "file_size": 16468, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A29#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ef0d95d2b440b3adfc83698f5d78e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ef0d95d2b440b3adfc83698f5d78e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ef0d95d2b440b3adfc83698f5d78e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6ef0d95d2b440b3adfc83698f5d78e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6ef0d95d2b440b3adfc83698f5d78e3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79EZpi3_8LAh5sl32abXaHGoqsE=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.955051+00 2025-12-09 10:14:39.955055+00 3132 LHJ2240#WJC22 SPMX-20240815298247 \N \N \N 1 \N [{"file_id": "38c8a48f-3816-4053-89cd-13df456c3da0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf79c3b9d9104c8890c233a175da9ee1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf79c3b9d9104c8890c233a175da9ee1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf79c3b9d9104c8890c233a175da9ee1.jpg", "file_size": 11672, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2240#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf79c3b9d9104c8890c233a175da9ee1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf79c3b9d9104c8890c233a175da9ee1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf79c3b9d9104c8890c233a175da9ee1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf79c3b9d9104c8890c233a175da9ee1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf79c3b9d9104c8890c233a175da9ee1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knqZcmFS5HIZ5OXfvBhLzK4Ejhg=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.956156+00 2025-12-09 10:14:39.95616+00 3133 DH004#6 SPMX-20240815298245 \N \N \N 1 \N [{"file_id": "11a42ed1-c247-4fe8-95d2-5055d97cc88a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38aa981bae084e61bf22344f88535587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38aa981bae084e61bf22344f88535587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38aa981bae084e61bf22344f88535587.jpg", "file_size": 17287, "is_delete": false, "file_type": 1, "original_file_name": "DH004#6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aa981bae084e61bf22344f88535587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aa981bae084e61bf22344f88535587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aa981bae084e61bf22344f88535587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38aa981bae084e61bf22344f88535587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38aa981bae084e61bf22344f88535587.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xOzb7H1Mt-M9w25zQfCiwxu8LRQ=", "createTime": "2024-08-15 14:38:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.957267+00 2025-12-09 10:14:39.957271+00 3134 LHJ2258-1#宝蓝 SPMX-20240815298256 \N \N \N 1 \N [{"file_id": "236a3eea-b9cb-463c-b7ed-1164361fcb69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8aea31a46914f758b3fdecf466ddbd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8aea31a46914f758b3fdecf466ddbd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8aea31a46914f758b3fdecf466ddbd4.jpg", "file_size": 20077, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8aea31a46914f758b3fdecf466ddbd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8aea31a46914f758b3fdecf466ddbd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8aea31a46914f758b3fdecf466ddbd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8aea31a46914f758b3fdecf466ddbd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8aea31a46914f758b3fdecf466ddbd4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNUXyB59ooENahj1XhWE5WsjuNs=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.958337+00 2025-12-09 10:14:39.958341+00 3135 104#红底杏色 SPMX-20240815298257 \N \N \N 1 \N [{"file_id": "db831cac-a667-4f28-a2bb-d73a16ec51a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6df98c80f9704ff291f9a862b3737636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6df98c80f9704ff291f9a862b3737636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6df98c80f9704ff291f9a862b3737636.jpg", "file_size": 19345, "is_delete": false, "file_type": 1, "original_file_name": "104#红底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df98c80f9704ff291f9a862b3737636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df98c80f9704ff291f9a862b3737636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df98c80f9704ff291f9a862b3737636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6df98c80f9704ff291f9a862b3737636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6df98c80f9704ff291f9a862b3737636.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIixWVBbhNiVoU5ENzCKahxCIqA=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.95937+00 2025-12-09 10:14:39.959374+00 3136 0001-17FWF#V5曲线 SPMX-20240815298255 \N \N \N 1 \N [{"file_id": "ed6cb8f8-b802-4de8-bcf6-0d4aaac86c44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6462536e70fe4a7cb60b6f88476cf4f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6462536e70fe4a7cb60b6f88476cf4f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6462536e70fe4a7cb60b6f88476cf4f2.jpg", "file_size": 33571, "is_delete": false, "file_type": 1, "original_file_name": "0001-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6462536e70fe4a7cb60b6f88476cf4f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6462536e70fe4a7cb60b6f88476cf4f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6462536e70fe4a7cb60b6f88476cf4f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6462536e70fe4a7cb60b6f88476cf4f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6462536e70fe4a7cb60b6f88476cf4f2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTD4OTY7c65T7nanYLm_vt-q00U=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.960396+00 2025-12-09 10:14:39.9604+00 3137 C218#咖啡净色 SPMX-20240815298254 \N \N \N 1 \N [{"file_id": "436f5d48-9c49-40ce-8422-29acbc09f41e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af9b152fe71b44ddae9602c69e2024b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af9b152fe71b44ddae9602c69e2024b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af9b152fe71b44ddae9602c69e2024b1.jpg", "file_size": 7855, "is_delete": false, "file_type": 1, "original_file_name": "C218#咖啡净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9b152fe71b44ddae9602c69e2024b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9b152fe71b44ddae9602c69e2024b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9b152fe71b44ddae9602c69e2024b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af9b152fe71b44ddae9602c69e2024b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af9b152fe71b44ddae9602c69e2024b1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdI3njN0nzQ5lYOE7RzgxFZms5g=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.961414+00 2025-12-09 10:14:39.961418+00 3138 8003#浅蓝色2XL SPMX-20240815298271 \N \N \N 1 \N [{"file_id": "b99bd9c2-8d2a-4b3a-ae84-14dc6f848f42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "064f64c3275b48028e60aea00e074d38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "064f64c3275b48028e60aea00e074d38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "064f64c3275b48028e60aea00e074d38.jpg", "file_size": 75023, "is_delete": false, "file_type": 1, "original_file_name": "8003#浅蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064f64c3275b48028e60aea00e074d38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064f64c3275b48028e60aea00e074d38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064f64c3275b48028e60aea00e074d38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/064f64c3275b48028e60aea00e074d38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/064f64c3275b48028e60aea00e074d38.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFcwiCHl8px9EUq4bVGWHszXHE0=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.962445+00 2025-12-09 10:14:39.962449+00 3139 HSH005FW#VS-D3 SPMX-20240815298263 \N \N \N 1 \N [{"file_id": "e7ddf93a-282d-49ae-a73f-3fcc8e97fdaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "979ac628edac490dafde358e1b6df182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "979ac628edac490dafde358e1b6df182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "979ac628edac490dafde358e1b6df182.jpg", "file_size": 22611, "is_delete": false, "file_type": 1, "original_file_name": "HSH005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ac628edac490dafde358e1b6df182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ac628edac490dafde358e1b6df182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979ac628edac490dafde358e1b6df182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/979ac628edac490dafde358e1b6df182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/979ac628edac490dafde358e1b6df182.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjS1k8loWc4YekU2--oYW1jlPf4=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.963466+00 2025-12-09 10:14:39.96347+00 3140 JS0104-A3#LWQ15 SPMX-20240815298258 \N \N \N 1 \N [{"file_id": "ce4825c7-e0b9-437a-9d26-ff40e1e619ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ebbb22728394f93b14971264e741a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ebbb22728394f93b14971264e741a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ebbb22728394f93b14971264e741a59.jpg", "file_size": 20128, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A3#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebbb22728394f93b14971264e741a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebbb22728394f93b14971264e741a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebbb22728394f93b14971264e741a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ebbb22728394f93b14971264e741a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ebbb22728394f93b14971264e741a59.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_zIajqBWo7TR3gJ8Z24WYvniYI=", "createTime": "2024-08-15 14:38:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.964472+00 2025-12-09 10:14:39.964475+00 3141 FHPKDK-批布072-1 SPMX-20240815298264 \N \N \N 1 \N [{"file_id": "2990b6dc-ad69-49e8-95e7-f0f4beac7a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eda29b9976d849b39d902def5f6428dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eda29b9976d849b39d902def5f6428dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eda29b9976d849b39d902def5f6428dd.jpg", "file_size": 43598, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布072-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda29b9976d849b39d902def5f6428dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda29b9976d849b39d902def5f6428dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda29b9976d849b39d902def5f6428dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eda29b9976d849b39d902def5f6428dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eda29b9976d849b39d902def5f6428dd.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiMjNErxM18abStAtCZdvRT6G6s=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.965475+00 2025-12-09 10:14:39.96548+00 3142 104#黑白色 SPMX-20240815298268 \N \N \N 1 \N [{"file_id": "fb8a2809-26d5-4a26-9973-6a9b5539ef47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f0174faf2434d06891d2b0333518636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f0174faf2434d06891d2b0333518636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f0174faf2434d06891d2b0333518636.jpg", "file_size": 20899, "is_delete": false, "file_type": 1, "original_file_name": "104#黑白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0174faf2434d06891d2b0333518636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0174faf2434d06891d2b0333518636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0174faf2434d06891d2b0333518636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f0174faf2434d06891d2b0333518636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f0174faf2434d06891d2b0333518636.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Su16N_zV2slLQU98jeb6bHDrC-o=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.966478+00 2025-12-09 10:14:39.966482+00 3143 22C02-09-58#38码 SPMX-20240815298274 \N \N \N 1 \N [{"file_id": "d29f1928-7888-42ee-b001-d8137342ef5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db1db527ddd844229e9a11260ad87ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db1db527ddd844229e9a11260ad87ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db1db527ddd844229e9a11260ad87ce0.jpg", "file_size": 19855, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-58#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1db527ddd844229e9a11260ad87ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1db527ddd844229e9a11260ad87ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1db527ddd844229e9a11260ad87ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db1db527ddd844229e9a11260ad87ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db1db527ddd844229e9a11260ad87ce0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPH_wq-dc8Iu6JpCzLokH4Hi8LI=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.967505+00 2025-12-09 10:14:39.967509+00 3144 8003#咖色批布文件共用 SPMX-20240815298260 \N \N \N 1 \N [{"file_id": "dbc10d24-874e-4651-867f-040165f9c36f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7cffd5fc6384c8ea789f0f25eb024ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7cffd5fc6384c8ea789f0f25eb024ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7cffd5fc6384c8ea789f0f25eb024ee.jpg", "file_size": 37539, "is_delete": false, "file_type": 1, "original_file_name": "8003#咖色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7cffd5fc6384c8ea789f0f25eb024ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7cffd5fc6384c8ea789f0f25eb024ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7cffd5fc6384c8ea789f0f25eb024ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7cffd5fc6384c8ea789f0f25eb024ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7cffd5fc6384c8ea789f0f25eb024ee.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIh1kIQ1QMAVQjso4LCFqWFrmn4=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.968518+00 2025-12-09 10:14:39.968522+00 3145 LZ117FWF#4号色裤子 SPMX-20240815298270 \N \N \N 1 \N [{"file_id": "a95a93f3-e246-4cfc-9970-d3944b52a1fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd4554fb0e64996b3adea30870ad7d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd4554fb0e64996b3adea30870ad7d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd4554fb0e64996b3adea30870ad7d0.jpg", "file_size": 20505, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#4号色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd4554fb0e64996b3adea30870ad7d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd4554fb0e64996b3adea30870ad7d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd4554fb0e64996b3adea30870ad7d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd4554fb0e64996b3adea30870ad7d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd4554fb0e64996b3adea30870ad7d0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIIF5gcFbyGj4a7Y8mRmYxwNiSQ=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.969518+00 2025-12-09 10:14:39.969522+00 3146 0001-18FWE#VS-D3 SPMX-20240815298266 \N \N \N 1 \N [{"file_id": "c3095b75-35ad-461b-8394-38d18ff7ebb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8df35571ff34923844483a62fdcb947.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8df35571ff34923844483a62fdcb947.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8df35571ff34923844483a62fdcb947.jpg", "file_size": 21108, "is_delete": false, "file_type": 1, "original_file_name": "0001-18FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8df35571ff34923844483a62fdcb947.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8df35571ff34923844483a62fdcb947.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8df35571ff34923844483a62fdcb947.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8df35571ff34923844483a62fdcb947.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8df35571ff34923844483a62fdcb947.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rI_JYI4QXuwCMdqF_4yN3x3F4U=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.970536+00 2025-12-09 10:14:39.97054+00 3147 LHJ2258-1#彩兰围巾 SPMX-20240815298267 \N \N \N 1 \N [{"file_id": "1cbd10df-870c-4c0f-b6a5-c34c83c9743e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce6bc57c9cb47caba8559b4e3fac2e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce6bc57c9cb47caba8559b4e3fac2e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce6bc57c9cb47caba8559b4e3fac2e6.jpg", "file_size": 26480, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#彩兰围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6bc57c9cb47caba8559b4e3fac2e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6bc57c9cb47caba8559b4e3fac2e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6bc57c9cb47caba8559b4e3fac2e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce6bc57c9cb47caba8559b4e3fac2e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce6bc57c9cb47caba8559b4e3fac2e6.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdvGfmVzn_WiC9QBMPAXCS-wSLM=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.971553+00 2025-12-09 10:14:39.971558+00 3148 LZ117FWF#4号色上身 SPMX-20240815298261 \N \N \N 1 \N [{"file_id": "50eb37fb-24cd-41b2-99d9-df007fa0b192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c34f77e267e456da73d917b0933db4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c34f77e267e456da73d917b0933db4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c34f77e267e456da73d917b0933db4d.jpg", "file_size": 19887, "is_delete": false, "file_type": 1, "original_file_name": "LZ117FWF#4号色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c34f77e267e456da73d917b0933db4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c34f77e267e456da73d917b0933db4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c34f77e267e456da73d917b0933db4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c34f77e267e456da73d917b0933db4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c34f77e267e456da73d917b0933db4d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wuDXO00LaLtvai7knqoqyh-RJ1A=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.972569+00 2025-12-09 10:14:39.972573+00 3149 DH004FWE#VS-D3 SPMX-20240815298273 \N \N \N 1 \N [{"file_id": "d221e467-df28-4fac-9dc8-8623ebb2c57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d33bebd2c3be48299c152eb4ca931b82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d33bebd2c3be48299c152eb4ca931b82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d33bebd2c3be48299c152eb4ca931b82.jpg", "file_size": 26566, "is_delete": false, "file_type": 1, "original_file_name": "DH004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bebd2c3be48299c152eb4ca931b82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bebd2c3be48299c152eb4ca931b82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bebd2c3be48299c152eb4ca931b82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d33bebd2c3be48299c152eb4ca931b82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d33bebd2c3be48299c152eb4ca931b82.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jbrfiYGZWw9tnkGPGJ8YdHmN-do=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.973722+00 2025-12-09 10:14:39.973726+00 3150 C218#咖啡黑 SPMX-20240815298265 \N \N \N 1 \N [{"file_id": "85c484e6-9b4e-4279-9a8e-1559c6ad0e01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e24771a1e6b849918c646aa5ae25e926.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e24771a1e6b849918c646aa5ae25e926.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e24771a1e6b849918c646aa5ae25e926.jpg", "file_size": 10867, "is_delete": false, "file_type": 1, "original_file_name": "C218#咖啡黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24771a1e6b849918c646aa5ae25e926.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24771a1e6b849918c646aa5ae25e926.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24771a1e6b849918c646aa5ae25e926.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e24771a1e6b849918c646aa5ae25e926.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e24771a1e6b849918c646aa5ae25e926.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPMi5sh7J-NDf9Uu5gZJMfGA7ss=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.974966+00 2025-12-09 10:14:39.97497+00 3151 JS0104-A3#WJC22 SPMX-20240815298269 \N \N \N 1 \N [{"file_id": "80d158fa-19c8-41a7-a771-1b5f08849bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeb56ebe2b3948db818a9715956f3c2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeb56ebe2b3948db818a9715956f3c2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeb56ebe2b3948db818a9715956f3c2f.jpg", "file_size": 21227, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb56ebe2b3948db818a9715956f3c2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb56ebe2b3948db818a9715956f3c2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb56ebe2b3948db818a9715956f3c2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeb56ebe2b3948db818a9715956f3c2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeb56ebe2b3948db818a9715956f3c2f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5lj_YfnTejW6ig8NZcMHZrJ8BmI=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.976065+00 2025-12-09 10:14:39.976069+00 3152 DH004FW#VS-D3 SPMX-20240815298259 \N \N \N 1 \N [{"file_id": "20c26987-84c9-44ae-933a-50f709709e2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bca5437404344a6a04bc7ee65f08f34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bca5437404344a6a04bc7ee65f08f34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bca5437404344a6a04bc7ee65f08f34.jpg", "file_size": 19425, "is_delete": false, "file_type": 1, "original_file_name": "DH004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bca5437404344a6a04bc7ee65f08f34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bca5437404344a6a04bc7ee65f08f34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bca5437404344a6a04bc7ee65f08f34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bca5437404344a6a04bc7ee65f08f34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bca5437404344a6a04bc7ee65f08f34.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHkePZTQ-8s1KXJtcq1zOUvk3-M=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.977139+00 2025-12-09 10:14:39.977143+00 3153 22C02-09-58#36码 SPMX-20240815298262 \N \N \N 1 \N [{"file_id": "c7c656f9-d911-4f5e-9c95-a7646b8b67a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec28023142e94954a942750ea5cc06b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec28023142e94954a942750ea5cc06b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec28023142e94954a942750ea5cc06b4.jpg", "file_size": 20426, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-58#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec28023142e94954a942750ea5cc06b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec28023142e94954a942750ea5cc06b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec28023142e94954a942750ea5cc06b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec28023142e94954a942750ea5cc06b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec28023142e94954a942750ea5cc06b4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OLnZimurMk1SQZUbIrJQSP4TYk=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.978185+00 2025-12-09 10:14:39.978189+00 3154 HSH005FWE#粉VS-D3 SPMX-20240815298272 \N \N \N 1 \N [{"file_id": "78bd7576-c575-4465-bd28-db5047b58cca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c88fe68dd48c475ab5ea73ed52427efd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c88fe68dd48c475ab5ea73ed52427efd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c88fe68dd48c475ab5ea73ed52427efd.jpg", "file_size": 12911, "is_delete": false, "file_type": 1, "original_file_name": "HSH005FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88fe68dd48c475ab5ea73ed52427efd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88fe68dd48c475ab5ea73ed52427efd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88fe68dd48c475ab5ea73ed52427efd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c88fe68dd48c475ab5ea73ed52427efd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c88fe68dd48c475ab5ea73ed52427efd.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ahmMHDNKt7lAueJpibV8IK4ybI=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.97922+00 2025-12-09 10:14:39.979224+00 3155 FHPKDK-批布072-2 SPMX-20240815298275 \N \N \N 1 \N [{"file_id": "9fc5d140-97c0-42a0-b452-6e90f23377c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b624d99ef019471782678b2727bdc1a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b624d99ef019471782678b2727bdc1a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b624d99ef019471782678b2727bdc1a4.jpg", "file_size": 45141, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布072-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b624d99ef019471782678b2727bdc1a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b624d99ef019471782678b2727bdc1a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b624d99ef019471782678b2727bdc1a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b624d99ef019471782678b2727bdc1a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b624d99ef019471782678b2727bdc1a4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxkNjmEcqGhQJk218FFrc0CkU-c=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.980275+00 2025-12-09 10:14:39.980279+00 3156 1040#S-110短款橙色 SPMX-20240815298279 \N \N \N 1 \N [{"file_id": "8d211065-edb4-407c-90b2-872f92d714e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c494b87aa44948bfbb6cb21233ee9343.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c494b87aa44948bfbb6cb21233ee9343.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c494b87aa44948bfbb6cb21233ee9343.jpg", "file_size": 16310, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c494b87aa44948bfbb6cb21233ee9343.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c494b87aa44948bfbb6cb21233ee9343.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c494b87aa44948bfbb6cb21233ee9343.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c494b87aa44948bfbb6cb21233ee9343.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c494b87aa44948bfbb6cb21233ee9343.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BEbRZYWHF3vUsTmEsM2NaZI1Qo=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.981402+00 2025-12-09 10:14:39.981406+00 3157 DH005#2XL袖 SPMX-20240815298283 \N \N \N 1 \N [{"file_id": "011f8eb9-78a7-4928-98d9-89c2a21f54bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c739878de1845928bacd2e9ff7ea4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c739878de1845928bacd2e9ff7ea4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c739878de1845928bacd2e9ff7ea4e6.jpg", "file_size": 5168, "is_delete": false, "file_type": 1, "original_file_name": "DH005#2XL袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c739878de1845928bacd2e9ff7ea4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c739878de1845928bacd2e9ff7ea4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c739878de1845928bacd2e9ff7ea4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c739878de1845928bacd2e9ff7ea4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c739878de1845928bacd2e9ff7ea4e6.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWu3A9W-Co_w5c9Hpr6AkszcG_U=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.982431+00 2025-12-09 10:14:39.982435+00 3158 8003#浅蓝色L SPMX-20240815298284 \N \N \N 1 \N [{"file_id": "88e955de-5601-4c89-91cc-ab08d8032141", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ba1d28cc8e41bc90059416e627ed13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ba1d28cc8e41bc90059416e627ed13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ba1d28cc8e41bc90059416e627ed13.jpg", "file_size": 79153, "is_delete": false, "file_type": 1, "original_file_name": "8003#浅蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ba1d28cc8e41bc90059416e627ed13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ba1d28cc8e41bc90059416e627ed13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ba1d28cc8e41bc90059416e627ed13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ba1d28cc8e41bc90059416e627ed13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ba1d28cc8e41bc90059416e627ed13.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzUYtoC4E-rILONkHG4Yt-v51rI=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.983432+00 2025-12-09 10:14:39.983436+00 3159 0001-18FWF#白色 SPMX-20240815298278 \N \N \N 1 \N [{"file_id": "5905bb8e-33b6-4b0b-8a44-180deb71156a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a83ab48658e4ea58892afd6f8213f72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a83ab48658e4ea58892afd6f8213f72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a83ab48658e4ea58892afd6f8213f72.jpg", "file_size": 7677, "is_delete": false, "file_type": 1, "original_file_name": "0001-18FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a83ab48658e4ea58892afd6f8213f72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a83ab48658e4ea58892afd6f8213f72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a83ab48658e4ea58892afd6f8213f72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a83ab48658e4ea58892afd6f8213f72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a83ab48658e4ea58892afd6f8213f72.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pCBQd9LVDhhZXBcYEIXpHD7qeAI=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.984486+00 2025-12-09 10:14:39.98449+00 3160 LHJ2258-1#橘红围巾 SPMX-20240815298277 \N \N \N 1 \N [{"file_id": "0f4a2b58-6f7f-4340-9f14-fb5bf1514346", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d749d753817042f684005c663a5f8a8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d749d753817042f684005c663a5f8a8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d749d753817042f684005c663a5f8a8d.jpg", "file_size": 26366, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#橘红围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d749d753817042f684005c663a5f8a8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d749d753817042f684005c663a5f8a8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d749d753817042f684005c663a5f8a8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d749d753817042f684005c663a5f8a8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d749d753817042f684005c663a5f8a8d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mxpFrvMmasFcDzVimP3fjk0Uck=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.985505+00 2025-12-09 10:14:39.985509+00 3161 C218#大红净色 SPMX-20240815298276 \N \N \N 1 \N [{"file_id": "3822eb47-4713-44aa-a6ff-d4da11cd64c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6a11c97d594920aa263f01ef2807ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6a11c97d594920aa263f01ef2807ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6a11c97d594920aa263f01ef2807ca.jpg", "file_size": 8074, "is_delete": false, "file_type": 1, "original_file_name": "C218#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a11c97d594920aa263f01ef2807ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a11c97d594920aa263f01ef2807ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a11c97d594920aa263f01ef2807ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6a11c97d594920aa263f01ef2807ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6a11c97d594920aa263f01ef2807ca.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eiNZ27BUxbQMH2eOWYi1W1qf7VE=", "createTime": "2024-08-15 14:38:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.986535+00 2025-12-09 10:14:39.986539+00 3162 JS0104-A30#黄色 SPMX-20240815298280 \N \N \N 1 \N [{"file_id": "b340c38c-e9be-4fd3-942b-e4b7056d580d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1ba1655b7b54768a6164b6829f606f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1ba1655b7b54768a6164b6829f606f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1ba1655b7b54768a6164b6829f606f6.jpg", "file_size": 11778, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A30#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ba1655b7b54768a6164b6829f606f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ba1655b7b54768a6164b6829f606f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ba1655b7b54768a6164b6829f606f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1ba1655b7b54768a6164b6829f606f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1ba1655b7b54768a6164b6829f606f6.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DUWxqegjs55LSATfETv6U6w9SY=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.987533+00 2025-12-09 10:14:39.987538+00 3163 22C02-09-60#30码 SPMX-20240815298285 \N \N \N 1 \N [{"file_id": "3748eedf-56c5-4b5c-88de-6531cee7082d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff5ff23cdeae43a39b5851a7b253579c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff5ff23cdeae43a39b5851a7b253579c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff5ff23cdeae43a39b5851a7b253579c.jpg", "file_size": 22590, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-60#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5ff23cdeae43a39b5851a7b253579c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5ff23cdeae43a39b5851a7b253579c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5ff23cdeae43a39b5851a7b253579c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff5ff23cdeae43a39b5851a7b253579c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff5ff23cdeae43a39b5851a7b253579c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49XqlKaP6mEJSJW81gbwV_Ap1I0=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.988587+00 2025-12-09 10:14:39.988591+00 3164 HSH005FWE#蓝VS-D3 SPMX-20240815298282 \N \N \N 1 \N [{"file_id": "599e10c3-88e3-4766-bc97-df740c309c6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb71fb0ad1a4403497c010df8ec1e151.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb71fb0ad1a4403497c010df8ec1e151.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb71fb0ad1a4403497c010df8ec1e151.jpg", "file_size": 18690, "is_delete": false, "file_type": 1, "original_file_name": "HSH005FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb71fb0ad1a4403497c010df8ec1e151.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb71fb0ad1a4403497c010df8ec1e151.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb71fb0ad1a4403497c010df8ec1e151.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb71fb0ad1a4403497c010df8ec1e151.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb71fb0ad1a4403497c010df8ec1e151.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiOBikIhqk_AjuFSaakQdaCrOZE=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.989613+00 2025-12-09 10:14:39.989617+00 3165 LZ1180#上身1号色 SPMX-20240815298281 \N \N \N 1 \N [{"file_id": "fdae8a3c-a991-481c-96fb-b9a7754463e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fff2f9fa61fa47b7933cd537e736fbe5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fff2f9fa61fa47b7933cd537e736fbe5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fff2f9fa61fa47b7933cd537e736fbe5.jpg", "file_size": 12619, "is_delete": false, "file_type": 1, "original_file_name": "LZ1180#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff2f9fa61fa47b7933cd537e736fbe5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff2f9fa61fa47b7933cd537e736fbe5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff2f9fa61fa47b7933cd537e736fbe5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fff2f9fa61fa47b7933cd537e736fbe5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fff2f9fa61fa47b7933cd537e736fbe5.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksvif_KvQnZD-D0H-pOthu3YFN4=", "createTime": "2024-08-15 14:38:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.990631+00 2025-12-09 10:14:39.990635+00 3166 FHPKDK-批布073-1 SPMX-20240815298288 \N \N \N 1 \N [{"file_id": "a63a3994-4769-4680-859e-be003edb7306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1337dd5bcf144ac3b83fbaced0ceb7b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1337dd5bcf144ac3b83fbaced0ceb7b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1337dd5bcf144ac3b83fbaced0ceb7b1.jpg", "file_size": 30485, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布073-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1337dd5bcf144ac3b83fbaced0ceb7b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1337dd5bcf144ac3b83fbaced0ceb7b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1337dd5bcf144ac3b83fbaced0ceb7b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1337dd5bcf144ac3b83fbaced0ceb7b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1337dd5bcf144ac3b83fbaced0ceb7b1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kq8aDjnQE_ND5oB4CoqrvBkEor0=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.991652+00 2025-12-09 10:14:39.991656+00 3167 LHJ2258-1#湖蓝 SPMX-20240815298289 \N \N \N 1 \N [{"file_id": "97ddb556-4a35-4e40-a778-3dd976263616", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2b314904954d0a82f9608026f2ac68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2b314904954d0a82f9608026f2ac68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2b314904954d0a82f9608026f2ac68.jpg", "file_size": 19541, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#湖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2b314904954d0a82f9608026f2ac68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2b314904954d0a82f9608026f2ac68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2b314904954d0a82f9608026f2ac68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2b314904954d0a82f9608026f2ac68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2b314904954d0a82f9608026f2ac68.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNv15LxWjzOQ-OL02IJ60dVc7Ts=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.992772+00 2025-12-09 10:14:39.992776+00 3168 C218#宝蓝大红 SPMX-20240815298286 \N \N \N 1 \N [{"file_id": "b0d2155d-5a82-4a3a-b64f-1181f3cbf804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab0f834877124418a03dfb0db13a9600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab0f834877124418a03dfb0db13a9600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab0f834877124418a03dfb0db13a9600.jpg", "file_size": 12321, "is_delete": false, "file_type": 1, "original_file_name": "C218#宝蓝大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0f834877124418a03dfb0db13a9600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0f834877124418a03dfb0db13a9600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0f834877124418a03dfb0db13a9600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab0f834877124418a03dfb0db13a9600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab0f834877124418a03dfb0db13a9600.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bsQAfPZced5eUf9PETFfdX0egBQ=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.993813+00 2025-12-09 10:14:39.993817+00 3169 0001-18FWF#黑色 SPMX-20240815298287 \N \N \N 1 \N [{"file_id": "8656b2b5-9d82-452d-bdd9-872cfcca2f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1486729cb5a419b995dc9a673ad283a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1486729cb5a419b995dc9a673ad283a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1486729cb5a419b995dc9a673ad283a.jpg", "file_size": 8653, "is_delete": false, "file_type": 1, "original_file_name": "0001-18FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1486729cb5a419b995dc9a673ad283a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1486729cb5a419b995dc9a673ad283a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1486729cb5a419b995dc9a673ad283a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1486729cb5a419b995dc9a673ad283a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1486729cb5a419b995dc9a673ad283a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zD0bYFrEW-aj4uXitQ_6XRckDEQ=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.994838+00 2025-12-09 10:14:39.994842+00 3170 22C02-09-60#34码 SPMX-20240815298303 \N \N \N 1 \N [{"file_id": "9b412e50-7717-4ad7-bf42-4a94675c61cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c385fd52388a4119a1c745866556d9bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c385fd52388a4119a1c745866556d9bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c385fd52388a4119a1c745866556d9bd.jpg", "file_size": 22209, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-60#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385fd52388a4119a1c745866556d9bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385fd52388a4119a1c745866556d9bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385fd52388a4119a1c745866556d9bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c385fd52388a4119a1c745866556d9bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c385fd52388a4119a1c745866556d9bd.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dH12L2uPrLk2sq5NQytyXmy5Kp4=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.995892+00 2025-12-09 10:14:39.995896+00 3171 22C02-09-60#32码 SPMX-20240815298295 \N \N \N 1 \N [{"file_id": "22d0c148-5f45-43b1-a9f9-d6bdced79e3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f072c544aed4592b737942f0e711efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f072c544aed4592b737942f0e711efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f072c544aed4592b737942f0e711efc.jpg", "file_size": 22858, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-60#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f072c544aed4592b737942f0e711efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f072c544aed4592b737942f0e711efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f072c544aed4592b737942f0e711efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f072c544aed4592b737942f0e711efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f072c544aed4592b737942f0e711efc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpZqH06HmnOjs2iKMFQAPh7jiq8=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.997086+00 2025-12-09 10:14:39.997091+00 3172 1040#S-110短款白色 SPMX-20240815298293 \N \N \N 1 \N [{"file_id": "07bb00b0-be04-4857-9318-b9de85ef0282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57d02f74350941078be00c127c9c0055.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57d02f74350941078be00c127c9c0055.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57d02f74350941078be00c127c9c0055.jpg", "file_size": 16571, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d02f74350941078be00c127c9c0055.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d02f74350941078be00c127c9c0055.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d02f74350941078be00c127c9c0055.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57d02f74350941078be00c127c9c0055.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57d02f74350941078be00c127c9c0055.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rEKJwMb5MTtaq0F5uOxt2vKh7Q=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.998309+00 2025-12-09 10:14:39.998313+00 3173 HSH006#D SPMX-20240815298301 \N \N \N 1 \N [{"file_id": "b3914561-ac59-4e19-9457-e2ef9576599f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc12e512103642cc84867aa69b4b1a45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc12e512103642cc84867aa69b4b1a45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc12e512103642cc84867aa69b4b1a45.jpg", "file_size": 6359, "is_delete": false, "file_type": 1, "original_file_name": "HSH006#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc12e512103642cc84867aa69b4b1a45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc12e512103642cc84867aa69b4b1a45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc12e512103642cc84867aa69b4b1a45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc12e512103642cc84867aa69b4b1a45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc12e512103642cc84867aa69b4b1a45.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4pigW-HVsFXqdNjN-TWwdZgNYCM=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:39.999515+00 2025-12-09 10:14:39.99952+00 3174 0001-19FWE#VS-D3 SPMX-20240815298298 \N \N \N 1 \N [{"file_id": "55f9bf50-e575-4387-b624-462fbb55b44c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cfb0d0a576b4ca1b653caa0c2d025dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cfb0d0a576b4ca1b653caa0c2d025dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cfb0d0a576b4ca1b653caa0c2d025dc.jpg", "file_size": 28229, "is_delete": false, "file_type": 1, "original_file_name": "0001-19FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfb0d0a576b4ca1b653caa0c2d025dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfb0d0a576b4ca1b653caa0c2d025dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfb0d0a576b4ca1b653caa0c2d025dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cfb0d0a576b4ca1b653caa0c2d025dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cfb0d0a576b4ca1b653caa0c2d025dc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjDpVua9CL--jUSpHCZnmX27Gy4=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.000737+00 2025-12-09 10:14:40.000742+00 3175 JS0104-A31#LWQ15 SPMX-20240815298296 \N \N \N 1 \N [{"file_id": "0ad0ade5-810f-49df-8c26-cdcaa8b00e84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52ecab5b8c4f46a1abb23edf0117c048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52ecab5b8c4f46a1abb23edf0117c048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52ecab5b8c4f46a1abb23edf0117c048.jpg", "file_size": 42798, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A31#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ecab5b8c4f46a1abb23edf0117c048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ecab5b8c4f46a1abb23edf0117c048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ecab5b8c4f46a1abb23edf0117c048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52ecab5b8c4f46a1abb23edf0117c048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52ecab5b8c4f46a1abb23edf0117c048.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17SmDGLwOytr9loLzAmS6y84Og4=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.001961+00 2025-12-09 10:14:40.001966+00 3176 DH005#L袖 SPMX-20240815298302 \N \N \N 1 \N [{"file_id": "e6d1187b-4fb1-4fc5-bc79-e6d57573a053", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7ddc7a222b2446fbeed078fef06c324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7ddc7a222b2446fbeed078fef06c324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7ddc7a222b2446fbeed078fef06c324.jpg", "file_size": 4908, "is_delete": false, "file_type": 1, "original_file_name": "DH005#L袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddc7a222b2446fbeed078fef06c324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddc7a222b2446fbeed078fef06c324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddc7a222b2446fbeed078fef06c324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7ddc7a222b2446fbeed078fef06c324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7ddc7a222b2446fbeed078fef06c324.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhkmOyHHPzvr5mKugeyZlLmM1ro=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.003171+00 2025-12-09 10:14:40.003176+00 3177 1040#S-110短款粉色 SPMX-20240815298304 \N \N \N 1 \N [{"file_id": "dd09907f-b52a-4ae7-9b92-e9bf5783f971", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8764aeeaa5294ffaaccc4c55982c6bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8764aeeaa5294ffaaccc4c55982c6bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8764aeeaa5294ffaaccc4c55982c6bd8.jpg", "file_size": 16346, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764aeeaa5294ffaaccc4c55982c6bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764aeeaa5294ffaaccc4c55982c6bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764aeeaa5294ffaaccc4c55982c6bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8764aeeaa5294ffaaccc4c55982c6bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8764aeeaa5294ffaaccc4c55982c6bd8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-0kPBkMpMQ6BOBuQWMXJLOT1K0=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.004383+00 2025-12-09 10:14:40.004387+00 3178 DH005#3XL袖 SPMX-20240815298290 \N \N \N 1 \N [{"file_id": "adcab57e-e4d4-400a-86dc-738fd90bc3b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba39cc697e75442493d83fa54819ca0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba39cc697e75442493d83fa54819ca0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba39cc697e75442493d83fa54819ca0b.jpg", "file_size": 5191, "is_delete": false, "file_type": 1, "original_file_name": "DH005#3XL袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39cc697e75442493d83fa54819ca0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39cc697e75442493d83fa54819ca0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39cc697e75442493d83fa54819ca0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba39cc697e75442493d83fa54819ca0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba39cc697e75442493d83fa54819ca0b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GU-kWNbKMByzMzU5c28NaBH1e-A=", "createTime": "2024-08-15 14:38:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.020473+00 2025-12-09 10:14:40.020477+00 3191 22C02-09-60#36码 SPMX-20240815298314 \N \N \N 1 \N [{"file_id": "f17f8e48-1608-45ae-b9e0-2c819ed52151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db8a4290588547ebabf8eca080b59ce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db8a4290588547ebabf8eca080b59ce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db8a4290588547ebabf8eca080b59ce9.jpg", "file_size": 21847, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-60#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8a4290588547ebabf8eca080b59ce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8a4290588547ebabf8eca080b59ce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8a4290588547ebabf8eca080b59ce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db8a4290588547ebabf8eca080b59ce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db8a4290588547ebabf8eca080b59ce9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8gMUBusFDglF7EgzoBYXylZHv8=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.005606+00 2025-12-09 10:14:40.005611+00 3179 LZ1180#上身2号色 SPMX-20240815298294 \N \N \N 1 \N [{"file_id": "bc52f086-f395-4109-90c1-1158424f57ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4021c24b5f4b42e1a869c7b23dbb35b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4021c24b5f4b42e1a869c7b23dbb35b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4021c24b5f4b42e1a869c7b23dbb35b1.jpg", "file_size": 12367, "is_delete": false, "file_type": 1, "original_file_name": "LZ1180#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4021c24b5f4b42e1a869c7b23dbb35b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4021c24b5f4b42e1a869c7b23dbb35b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4021c24b5f4b42e1a869c7b23dbb35b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4021c24b5f4b42e1a869c7b23dbb35b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4021c24b5f4b42e1a869c7b23dbb35b1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8Pvz9nbWkIt5KxJWA4wX21UaEI=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.006845+00 2025-12-09 10:14:40.00685+00 3180 LHJ2258-1#湖蓝围巾 SPMX-20240815298300 \N \N \N 1 \N [{"file_id": "492681d5-9829-4033-86bf-bb1eedc5d700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9ab5e3510a843c6b2322c2a9782e25e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9ab5e3510a843c6b2322c2a9782e25e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9ab5e3510a843c6b2322c2a9782e25e.jpg", "file_size": 25850, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#湖蓝围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ab5e3510a843c6b2322c2a9782e25e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ab5e3510a843c6b2322c2a9782e25e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ab5e3510a843c6b2322c2a9782e25e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9ab5e3510a843c6b2322c2a9782e25e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9ab5e3510a843c6b2322c2a9782e25e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XkYDO2NiZOrs9vvwbRak2a0X6Ds=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.008257+00 2025-12-09 10:14:40.008263+00 3181 HSH005FWE#黑VS-D3 SPMX-20240815298291 \N \N \N 1 \N [{"file_id": "6f6ca959-b34f-4128-803e-097a1f375fa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26159bdf2d78440fa15d3c76afd50d18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26159bdf2d78440fa15d3c76afd50d18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26159bdf2d78440fa15d3c76afd50d18.jpg", "file_size": 17553, "is_delete": false, "file_type": 1, "original_file_name": "HSH005FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26159bdf2d78440fa15d3c76afd50d18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26159bdf2d78440fa15d3c76afd50d18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26159bdf2d78440fa15d3c76afd50d18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26159bdf2d78440fa15d3c76afd50d18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26159bdf2d78440fa15d3c76afd50d18.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YfKPszkT3DkLLWC1k-o4z9PDZq4=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.009476+00 2025-12-09 10:14:40.009481+00 3182 C218#粉宝蓝 SPMX-20240815298297 \N \N \N 1 \N [{"file_id": "3c22be7f-583e-4dc1-9409-c0172e2719cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bdb49c0a36c48c8a0accf970a378bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bdb49c0a36c48c8a0accf970a378bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bdb49c0a36c48c8a0accf970a378bd3.jpg", "file_size": 11546, "is_delete": false, "file_type": 1, "original_file_name": "C218#粉宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdb49c0a36c48c8a0accf970a378bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdb49c0a36c48c8a0accf970a378bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdb49c0a36c48c8a0accf970a378bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bdb49c0a36c48c8a0accf970a378bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bdb49c0a36c48c8a0accf970a378bd3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cN9mbaTg1RUHr93mxo6KapvaV4A=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.010695+00 2025-12-09 10:14:40.010699+00 3183 LZ1180#上身3号色 SPMX-20240815298305 \N \N \N 1 \N [{"file_id": "a1fa278c-3b1c-4e45-8c2e-0a527a20b90d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69131ae9e52948a491b0f662c141d93f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69131ae9e52948a491b0f662c141d93f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69131ae9e52948a491b0f662c141d93f.jpg", "file_size": 12396, "is_delete": false, "file_type": 1, "original_file_name": "LZ1180#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69131ae9e52948a491b0f662c141d93f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69131ae9e52948a491b0f662c141d93f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69131ae9e52948a491b0f662c141d93f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69131ae9e52948a491b0f662c141d93f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69131ae9e52948a491b0f662c141d93f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDfT3bv_iz9R5i6GcGHTVi51L08=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.01193+00 2025-12-09 10:14:40.011934+00 3184 8003#浅蓝色XL SPMX-20240815298292 \N \N \N 1 \N [{"file_id": "649fb9fb-5f45-4863-94cb-c3fc2c60cfd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080ee1d0d08b46128009154720cbab9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080ee1d0d08b46128009154720cbab9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080ee1d0d08b46128009154720cbab9f.jpg", "file_size": 78109, "is_delete": false, "file_type": 1, "original_file_name": "8003#浅蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ee1d0d08b46128009154720cbab9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ee1d0d08b46128009154720cbab9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ee1d0d08b46128009154720cbab9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080ee1d0d08b46128009154720cbab9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080ee1d0d08b46128009154720cbab9f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esGXDJpO1Fu2qF5RH5wQCGPixqg=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.013146+00 2025-12-09 10:14:40.01315+00 3185 FHPKDK-批布073-2 SPMX-20240815298299 \N \N \N 1 \N [{"file_id": "7ec447e0-c8d3-4c79-a0da-02d617857ef8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5fb637acb7a4293af3fdee333aee6c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5fb637acb7a4293af3fdee333aee6c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5fb637acb7a4293af3fdee333aee6c8.jpg", "file_size": 31443, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布073-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb637acb7a4293af3fdee333aee6c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb637acb7a4293af3fdee333aee6c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5fb637acb7a4293af3fdee333aee6c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5fb637acb7a4293af3fdee333aee6c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5fb637acb7a4293af3fdee333aee6c8.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5JuLjoMEVyRSmk3RTKVBaZr08uM=", "createTime": "2024-08-15 14:38:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.014358+00 2025-12-09 10:14:40.014362+00 3186 HSH006#E SPMX-20240815298310 \N \N \N 1 \N [{"file_id": "8484cc38-d357-40ed-b124-70582f50afa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38d11e59791344e1bb8f5dd811deed1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38d11e59791344e1bb8f5dd811deed1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38d11e59791344e1bb8f5dd811deed1a.jpg", "file_size": 10269, "is_delete": false, "file_type": 1, "original_file_name": "HSH006#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d11e59791344e1bb8f5dd811deed1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d11e59791344e1bb8f5dd811deed1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d11e59791344e1bb8f5dd811deed1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38d11e59791344e1bb8f5dd811deed1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38d11e59791344e1bb8f5dd811deed1a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lawg-tLxLH8eDNiX8ZiWINXI6jU=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.015569+00 2025-12-09 10:14:40.015574+00 3187 0001-19FWF#V5曲线 SPMX-20240815298315 \N \N \N 1 \N [{"file_id": "d2d229ca-588e-4d63-9add-a964f828c4cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6491ccb3556842a68c17919a49c4e71f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6491ccb3556842a68c17919a49c4e71f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6491ccb3556842a68c17919a49c4e71f.jpg", "file_size": 23833, "is_delete": false, "file_type": 1, "original_file_name": "0001-19FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6491ccb3556842a68c17919a49c4e71f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6491ccb3556842a68c17919a49c4e71f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6491ccb3556842a68c17919a49c4e71f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6491ccb3556842a68c17919a49c4e71f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6491ccb3556842a68c17919a49c4e71f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UeAnUL4ZOr-u4ALS3as1Nlma0Ig=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.016812+00 2025-12-09 10:14:40.016816+00 3188 JS0104-A4#LWQ15 SPMX-20240815298307 \N \N \N 1 \N [{"file_id": "79fdc7fb-def5-4bb4-8817-d0f6683f2b52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f9e4721d63243858b74021fb3ff23f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f9e4721d63243858b74021fb3ff23f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f9e4721d63243858b74021fb3ff23f3.jpg", "file_size": 16522, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e4721d63243858b74021fb3ff23f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e4721d63243858b74021fb3ff23f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e4721d63243858b74021fb3ff23f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f9e4721d63243858b74021fb3ff23f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f9e4721d63243858b74021fb3ff23f3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjUUZe5xKNtUQdnrfVeq2oBRQRM=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.018027+00 2025-12-09 10:14:40.018032+00 3189 1040#S-110短款绿色 SPMX-20240815298313 \N \N \N 1 \N [{"file_id": "ffffdc6d-43f8-41b3-a6e5-e39ffd72e84c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "252472048d0b41c5ba5bf317bc69664a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "252472048d0b41c5ba5bf317bc69664a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "252472048d0b41c5ba5bf317bc69664a.jpg", "file_size": 15637, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/252472048d0b41c5ba5bf317bc69664a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/252472048d0b41c5ba5bf317bc69664a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/252472048d0b41c5ba5bf317bc69664a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/252472048d0b41c5ba5bf317bc69664a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/252472048d0b41c5ba5bf317bc69664a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTAN26tcw2DQ4PZ3oQ1dV8-4Ne8=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.01925+00 2025-12-09 10:14:40.019255+00 3190 LZ1180#上身4号色 SPMX-20240815298312 \N \N \N 1 \N [{"file_id": "a2875b01-5e1e-485e-818b-071ab28234eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e10ab50a21af49b7bd73eedea22be560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e10ab50a21af49b7bd73eedea22be560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e10ab50a21af49b7bd73eedea22be560.jpg", "file_size": 11201, "is_delete": false, "file_type": 1, "original_file_name": "LZ1180#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10ab50a21af49b7bd73eedea22be560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10ab50a21af49b7bd73eedea22be560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10ab50a21af49b7bd73eedea22be560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e10ab50a21af49b7bd73eedea22be560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e10ab50a21af49b7bd73eedea22be560.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GSHGoN8aTRzgFx2qedbG3-tVjE=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.021693+00 2025-12-09 10:14:40.021698+00 3192 C218#粉色净色 SPMX-20240815298306 \N \N \N 1 \N [{"file_id": "31b5a45d-0c5d-4686-a9cc-68becd4cfeb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8700424b886340a1b232fbc57b705687.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8700424b886340a1b232fbc57b705687.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8700424b886340a1b232fbc57b705687.jpg", "file_size": 7409, "is_delete": false, "file_type": 1, "original_file_name": "C218#粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8700424b886340a1b232fbc57b705687.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8700424b886340a1b232fbc57b705687.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8700424b886340a1b232fbc57b705687.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8700424b886340a1b232fbc57b705687.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8700424b886340a1b232fbc57b705687.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEK20eL1L04yEKJfeQn7pqp1cP4=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.022926+00 2025-12-09 10:14:40.022931+00 3193 JS0104-A4#WJC22 SPMX-20240815298317 \N \N \N 1 \N [{"file_id": "7fd77ff7-a812-457b-802d-32024b7dde4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d331ddfa5941fabbaedfa4a68b7957.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d331ddfa5941fabbaedfa4a68b7957.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d331ddfa5941fabbaedfa4a68b7957.jpg", "file_size": 10908, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d331ddfa5941fabbaedfa4a68b7957.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d331ddfa5941fabbaedfa4a68b7957.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d331ddfa5941fabbaedfa4a68b7957.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d331ddfa5941fabbaedfa4a68b7957.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d331ddfa5941fabbaedfa4a68b7957.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRPpnxyAxMYvvSzwEwzLFHy-jk8=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.024169+00 2025-12-09 10:14:40.024173+00 3194 C218#绿色净色 SPMX-20240815298318 \N \N \N 1 \N [{"file_id": "63f287da-d0f2-48a8-8f9f-ffb43e94695b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90a5da932d624ed4ac771756cee35236.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90a5da932d624ed4ac771756cee35236.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90a5da932d624ed4ac771756cee35236.jpg", "file_size": 7589, "is_delete": false, "file_type": 1, "original_file_name": "C218#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5da932d624ed4ac771756cee35236.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5da932d624ed4ac771756cee35236.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5da932d624ed4ac771756cee35236.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90a5da932d624ed4ac771756cee35236.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90a5da932d624ed4ac771756cee35236.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mJkoLHkrbTBFruOqBfxW3WdI_b4=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.025387+00 2025-12-09 10:14:40.025391+00 3195 8003#浅蓝色批布文件共用 SPMX-20240815298308 \N \N \N 1 \N [{"file_id": "dc683f34-277c-4e18-8b20-b8a3a9fc6ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad6c31026f74432a8c26451e245cf837.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad6c31026f74432a8c26451e245cf837.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad6c31026f74432a8c26451e245cf837.jpg", "file_size": 40719, "is_delete": false, "file_type": 1, "original_file_name": "8003#浅蓝色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c31026f74432a8c26451e245cf837.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c31026f74432a8c26451e245cf837.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c31026f74432a8c26451e245cf837.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad6c31026f74432a8c26451e245cf837.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad6c31026f74432a8c26451e245cf837.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMFg1aAX0nUwWeqCx5pwF1Sx4xo=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.026609+00 2025-12-09 10:14:40.026613+00 3196 DH005#M袖 SPMX-20240815298309 \N \N \N 1 \N [{"file_id": "bb4fdb7b-ea73-48d6-9a3b-a5ca6c8c4118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a01f4c7d78e49bd803bd2a2472ee338.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a01f4c7d78e49bd803bd2a2472ee338.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a01f4c7d78e49bd803bd2a2472ee338.jpg", "file_size": 4991, "is_delete": false, "file_type": 1, "original_file_name": "DH005#M袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01f4c7d78e49bd803bd2a2472ee338.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01f4c7d78e49bd803bd2a2472ee338.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01f4c7d78e49bd803bd2a2472ee338.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a01f4c7d78e49bd803bd2a2472ee338.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a01f4c7d78e49bd803bd2a2472ee338.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPZ8_Ilbt-PMngeqTZBfzTF395o=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.027846+00 2025-12-09 10:14:40.027851+00 3197 FHPKDK-批布074-1 SPMX-20240815298311 \N \N \N 1 \N [{"file_id": "074c0f69-9f69-45d2-8718-e85d8412028c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f290caa6c30478da8caa6c6fa8e3a9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f290caa6c30478da8caa6c6fa8e3a9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f290caa6c30478da8caa6c6fa8e3a9a.jpg", "file_size": 38295, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布074-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f290caa6c30478da8caa6c6fa8e3a9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f290caa6c30478da8caa6c6fa8e3a9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f290caa6c30478da8caa6c6fa8e3a9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f290caa6c30478da8caa6c6fa8e3a9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f290caa6c30478da8caa6c6fa8e3a9a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwCUbJRwCl18O0qc8eCfzdXP_zQ=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.029068+00 2025-12-09 10:14:40.029072+00 3198 LHJ2258-1#红色 SPMX-20240815298316 \N \N \N 1 \N [{"file_id": "a45babdc-44a7-4bd8-a1a2-62994c8a4dd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ab69498032648ff890e67b2821e5d4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ab69498032648ff890e67b2821e5d4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ab69498032648ff890e67b2821e5d4e.jpg", "file_size": 19958, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab69498032648ff890e67b2821e5d4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab69498032648ff890e67b2821e5d4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab69498032648ff890e67b2821e5d4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ab69498032648ff890e67b2821e5d4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ab69498032648ff890e67b2821e5d4e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7pbtUIyZxIXVSxMLfHPoIo77vc=", "createTime": "2024-08-15 14:38:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.030282+00 2025-12-09 10:14:40.030287+00 3199 DH005#S袖 SPMX-20240815298319 \N \N \N 1 \N [{"file_id": "894aa96a-2415-44a8-b8af-e85b51e529ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg", "file_size": 5458, "is_delete": false, "file_type": 1, "original_file_name": "DH005#S袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d812fd7f95a4cd4b0c93bfd4432c3aa.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzChKnx8jVA1clJxB0WDmvFwxQ0=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.031485+00 2025-12-09 10:14:40.031489+00 3200 HSH006#VS-D3 SPMX-20240815298321 \N \N \N 1 \N [{"file_id": "f15d6a51-ca72-4905-a356-df27172425d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88de059df6054ed7b01060dc1e28c4d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88de059df6054ed7b01060dc1e28c4d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88de059df6054ed7b01060dc1e28c4d2.jpg", "file_size": 26840, "is_delete": false, "file_type": 1, "original_file_name": "HSH006#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88de059df6054ed7b01060dc1e28c4d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88de059df6054ed7b01060dc1e28c4d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88de059df6054ed7b01060dc1e28c4d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88de059df6054ed7b01060dc1e28c4d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88de059df6054ed7b01060dc1e28c4d2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4krq-5rmUYHwrCVdeP_K4d_RZw=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.032697+00 2025-12-09 10:14:40.032701+00 3201 8003#灰底宝蓝 SPMX-20240815298320 \N \N \N 1 \N [{"file_id": "495245b5-dcf6-4a5c-8316-7fa8b1824d47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4280e94699fc4c7fa667f0470f5a49da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4280e94699fc4c7fa667f0470f5a49da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4280e94699fc4c7fa667f0470f5a49da.jpg", "file_size": 23924, "is_delete": false, "file_type": 1, "original_file_name": "8003#灰底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280e94699fc4c7fa667f0470f5a49da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280e94699fc4c7fa667f0470f5a49da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280e94699fc4c7fa667f0470f5a49da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4280e94699fc4c7fa667f0470f5a49da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4280e94699fc4c7fa667f0470f5a49da.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxelHS3J1MPOsvbXbiT3p8XfN-g=", "createTime": "2024-08-15 14:38:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.033972+00 2025-12-09 10:14:40.033977+00 3202 22C02-09-60#38码 SPMX-20240815298329 \N \N \N 1 \N [{"file_id": "0d748911-5a3b-4b1a-a186-aeed1d568c12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "376ee98a7b7a4af68c269079c495e33f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "376ee98a7b7a4af68c269079c495e33f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "376ee98a7b7a4af68c269079c495e33f.jpg", "file_size": 21590, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-60#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376ee98a7b7a4af68c269079c495e33f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376ee98a7b7a4af68c269079c495e33f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376ee98a7b7a4af68c269079c495e33f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/376ee98a7b7a4af68c269079c495e33f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/376ee98a7b7a4af68c269079c495e33f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CGidtM-2_9EJWB9ebmB8Wsqork=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.035194+00 2025-12-09 10:14:40.035199+00 3203 C218#绿色黄 SPMX-20240815298322 \N \N \N 1 \N [{"file_id": "4222ad73-a11c-49bf-9a42-dca982bd01de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232a8d2d34354ce996d347545b48ec4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232a8d2d34354ce996d347545b48ec4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232a8d2d34354ce996d347545b48ec4b.jpg", "file_size": 12208, "is_delete": false, "file_type": 1, "original_file_name": "C218#绿色黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232a8d2d34354ce996d347545b48ec4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232a8d2d34354ce996d347545b48ec4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232a8d2d34354ce996d347545b48ec4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232a8d2d34354ce996d347545b48ec4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232a8d2d34354ce996d347545b48ec4b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkLgLKkPEU--A93LYrvVCw3CF-M=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.036409+00 2025-12-09 10:14:40.036413+00 3204 1040#S-110短款蓝色 SPMX-20240815298325 \N \N \N 1 \N [{"file_id": "cf3ba519-b8c6-4542-9b1b-fd27d59b026c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "113bf4f3975e49e19cb6c9d449ddb1b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "113bf4f3975e49e19cb6c9d449ddb1b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "113bf4f3975e49e19cb6c9d449ddb1b9.jpg", "file_size": 16249, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113bf4f3975e49e19cb6c9d449ddb1b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113bf4f3975e49e19cb6c9d449ddb1b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113bf4f3975e49e19cb6c9d449ddb1b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/113bf4f3975e49e19cb6c9d449ddb1b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/113bf4f3975e49e19cb6c9d449ddb1b9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHqTWrIGIZZGZ02UnR8T127xSXg=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.038121+00 2025-12-09 10:14:40.038126+00 3205 0001-1FWE#VS-D3 SPMX-20240815298327 \N \N \N 1 \N [{"file_id": "f77cef0a-1741-4fa5-ae3b-da65a81004f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6014270f12634ab088344ba8111217e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6014270f12634ab088344ba8111217e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6014270f12634ab088344ba8111217e0.jpg", "file_size": 22063, "is_delete": false, "file_type": 1, "original_file_name": "0001-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6014270f12634ab088344ba8111217e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6014270f12634ab088344ba8111217e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6014270f12634ab088344ba8111217e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6014270f12634ab088344ba8111217e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6014270f12634ab088344ba8111217e0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WFvEcqNiEBvqDajrjO72-UkISIg=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.039348+00 2025-12-09 10:14:40.039353+00 3206 LHJ2258-1#红色围巾 SPMX-20240815298328 \N \N \N 1 \N [{"file_id": "909d1f77-216a-4e44-8547-025ae6cffde3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2908950e57b74f12a38d42af5ab1f0d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2908950e57b74f12a38d42af5ab1f0d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2908950e57b74f12a38d42af5ab1f0d9.jpg", "file_size": 25735, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#红色围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2908950e57b74f12a38d42af5ab1f0d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2908950e57b74f12a38d42af5ab1f0d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2908950e57b74f12a38d42af5ab1f0d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2908950e57b74f12a38d42af5ab1f0d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2908950e57b74f12a38d42af5ab1f0d9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMmINgRmGjX6SI0f4UmqSDY_bJs=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.040557+00 2025-12-09 10:14:40.040562+00 3207 LZ1181#上身1号色 SPMX-20240815298324 \N \N \N 1 \N [{"file_id": "79fde610-064f-44a8-849c-c3b76e4a7e30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2e490f64e4a49d8806c55c9279f846a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2e490f64e4a49d8806c55c9279f846a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2e490f64e4a49d8806c55c9279f846a.jpg", "file_size": 12055, "is_delete": false, "file_type": 1, "original_file_name": "LZ1181#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e490f64e4a49d8806c55c9279f846a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e490f64e4a49d8806c55c9279f846a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e490f64e4a49d8806c55c9279f846a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2e490f64e4a49d8806c55c9279f846a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2e490f64e4a49d8806c55c9279f846a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:obkwZi0WQkqkDMKR4clY4D-HBhw=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.04178+00 2025-12-09 10:14:40.041785+00 3208 FHPKDK-批布074-2 SPMX-20240815298323 \N \N \N 1 \N [{"file_id": "5333e4a7-5a7f-4151-bfee-a5fc59ab4d91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "767a6792611441bcb98a386d28c888cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "767a6792611441bcb98a386d28c888cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "767a6792611441bcb98a386d28c888cc.jpg", "file_size": 35356, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布074-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a6792611441bcb98a386d28c888cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a6792611441bcb98a386d28c888cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a6792611441bcb98a386d28c888cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/767a6792611441bcb98a386d28c888cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/767a6792611441bcb98a386d28c888cc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:940E12HvJIHEI5Qg8mTotl0oaQc=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.042994+00 2025-12-09 10:14:40.042999+00 3209 JS0104-A5#LWQ15 SPMX-20240815298330 \N \N \N 1 \N [{"file_id": "ee5452d8-1b49-4138-a547-68a8763c831f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a99b7289d89547ecbeb7c6fc07cccb8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a99b7289d89547ecbeb7c6fc07cccb8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a99b7289d89547ecbeb7c6fc07cccb8a.jpg", "file_size": 17054, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A5#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99b7289d89547ecbeb7c6fc07cccb8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99b7289d89547ecbeb7c6fc07cccb8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99b7289d89547ecbeb7c6fc07cccb8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a99b7289d89547ecbeb7c6fc07cccb8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a99b7289d89547ecbeb7c6fc07cccb8a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKbjhqFR-v3RIJ4SsDaeWMENzwY=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.044228+00 2025-12-09 10:14:40.044232+00 3210 8003#白底原版色 SPMX-20240815298332 \N \N \N 1 \N [{"file_id": "b905a009-c54a-43c6-944c-2e28dbbe89a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2bcf598aff47d1a177f5ff14ea77f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2bcf598aff47d1a177f5ff14ea77f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2bcf598aff47d1a177f5ff14ea77f4.jpg", "file_size": 21431, "is_delete": false, "file_type": 1, "original_file_name": "8003#白底原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2bcf598aff47d1a177f5ff14ea77f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2bcf598aff47d1a177f5ff14ea77f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2bcf598aff47d1a177f5ff14ea77f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2bcf598aff47d1a177f5ff14ea77f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2bcf598aff47d1a177f5ff14ea77f4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aU7ekPeQK582uhCZToUq5siCisE=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.045445+00 2025-12-09 10:14:40.04545+00 3211 1040#S-110短款青色 SPMX-20240815298341 \N \N \N 1 \N [{"file_id": "f191dde5-860f-460b-9585-e03c641600c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfd9729a8fed4236bab73804d8a026c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfd9729a8fed4236bab73804d8a026c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfd9729a8fed4236bab73804d8a026c0.jpg", "file_size": 16709, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd9729a8fed4236bab73804d8a026c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd9729a8fed4236bab73804d8a026c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd9729a8fed4236bab73804d8a026c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfd9729a8fed4236bab73804d8a026c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfd9729a8fed4236bab73804d8a026c0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUThqyNd3YJ-4cTb3tZiZ3sjMQ4=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.046669+00 2025-12-09 10:14:40.046674+00 3212 HSH006FW#VS-D3 SPMX-20240815298333 \N \N \N 1 \N [{"file_id": "abffcf55-f033-43ae-a8a1-ac09e1b7d5e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54d747c8ebc347d6bceb88b9f49fc8ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54d747c8ebc347d6bceb88b9f49fc8ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54d747c8ebc347d6bceb88b9f49fc8ee.jpg", "file_size": 14765, "is_delete": false, "file_type": 1, "original_file_name": "HSH006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54d747c8ebc347d6bceb88b9f49fc8ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54d747c8ebc347d6bceb88b9f49fc8ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54d747c8ebc347d6bceb88b9f49fc8ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54d747c8ebc347d6bceb88b9f49fc8ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54d747c8ebc347d6bceb88b9f49fc8ee.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqrQyUri7T1Lt-b7kTL13R8QW6I=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.047881+00 2025-12-09 10:14:40.047886+00 3213 22C02-09-61#WJC22 SPMX-20240815298337 \N \N \N 1 \N [{"file_id": "0c27a03c-b95f-4fdb-acff-f73ec6548501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg", "file_size": 8032, "is_delete": false, "file_type": 1, "original_file_name": "22C02-09-61#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d66cb32a1cf5431d8fa9f2d0f01b3e65.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxiatBkgnPNo1qp9OeSbOhEXki0=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.049114+00 2025-12-09 10:14:40.049119+00 3214 JS0104-A5#WJC22 SPMX-20240815298338 \N \N \N 1 \N [{"file_id": "882498d8-53a5-46d3-adc8-9d1eb450643a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8567a75c66f04cfc976b205f31b199dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8567a75c66f04cfc976b205f31b199dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8567a75c66f04cfc976b205f31b199dc.jpg", "file_size": 15837, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8567a75c66f04cfc976b205f31b199dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8567a75c66f04cfc976b205f31b199dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8567a75c66f04cfc976b205f31b199dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8567a75c66f04cfc976b205f31b199dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8567a75c66f04cfc976b205f31b199dc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mOkF_jgjHJWIvw44iWXqRy1sbPI=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.050324+00 2025-12-09 10:14:40.050329+00 3215 LHJ2258-1#绿色 SPMX-20240815298340 \N \N \N 1 \N [{"file_id": "008cf283-67a0-41de-8f93-e18927f39bca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3f0a18f47f841ad8e3b085db147d6bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3f0a18f47f841ad8e3b085db147d6bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3f0a18f47f841ad8e3b085db147d6bf.jpg", "file_size": 19859, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f0a18f47f841ad8e3b085db147d6bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f0a18f47f841ad8e3b085db147d6bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f0a18f47f841ad8e3b085db147d6bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3f0a18f47f841ad8e3b085db147d6bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3f0a18f47f841ad8e3b085db147d6bf.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQ6zRP52_15iJV7kJtvBhyBnSNw=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.051564+00 2025-12-09 10:14:40.051569+00 3216 0001-1FWF#乱花-V5曲线 SPMX-20240815298336 \N \N \N 1 \N [{"file_id": "ebffac40-c89f-4005-9305-46995ee4a32b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a91ecbbbcaf84e809d6da694d2a4d36a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a91ecbbbcaf84e809d6da694d2a4d36a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a91ecbbbcaf84e809d6da694d2a4d36a.jpg", "file_size": 17616, "is_delete": false, "file_type": 1, "original_file_name": "0001-1FWF#乱花-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91ecbbbcaf84e809d6da694d2a4d36a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91ecbbbcaf84e809d6da694d2a4d36a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91ecbbbcaf84e809d6da694d2a4d36a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a91ecbbbcaf84e809d6da694d2a4d36a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a91ecbbbcaf84e809d6da694d2a4d36a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bv58zUwKuaAllaAX-KSM9HamxlQ=", "createTime": "2024-08-15 14:38:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.05265+00 2025-12-09 10:14:40.052653+00 3217 DH005#XL袖 SPMX-20240815298331 \N \N \N 1 \N [{"file_id": "0a3e877f-a0f5-4b9d-9514-9c4e8795c7ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d1a4e8c03348e6b6f31141dbdfed10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d1a4e8c03348e6b6f31141dbdfed10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d1a4e8c03348e6b6f31141dbdfed10.jpg", "file_size": 4902, "is_delete": false, "file_type": 1, "original_file_name": "DH005#XL袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d1a4e8c03348e6b6f31141dbdfed10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d1a4e8c03348e6b6f31141dbdfed10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d1a4e8c03348e6b6f31141dbdfed10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d1a4e8c03348e6b6f31141dbdfed10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d1a4e8c03348e6b6f31141dbdfed10.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yep-92o89s25U3ngMhDUzwC7Bc=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.053729+00 2025-12-09 10:14:40.053734+00 3218 C218#领圈咖啡 SPMX-20240815298335 \N \N \N 1 \N [{"file_id": "5b2390e2-8e16-4cbe-aee9-7d5937d39477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c3164e1e0774458a34bec6230f2ced1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c3164e1e0774458a34bec6230f2ced1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c3164e1e0774458a34bec6230f2ced1.jpg", "file_size": 8013, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3164e1e0774458a34bec6230f2ced1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3164e1e0774458a34bec6230f2ced1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3164e1e0774458a34bec6230f2ced1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c3164e1e0774458a34bec6230f2ced1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c3164e1e0774458a34bec6230f2ced1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUaD4IuykEOZAL363G_GqyifXHs=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.054775+00 2025-12-09 10:14:40.054779+00 3219 FHPKDK-批布075-1 SPMX-20240815298339 \N \N \N 1 \N [{"file_id": "86cbf09a-4e0c-456d-88f0-36e9dbc9833e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ab988ead2f841e5abc7ce86038e9672.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ab988ead2f841e5abc7ce86038e9672.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ab988ead2f841e5abc7ce86038e9672.jpg", "file_size": 25186, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布075-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab988ead2f841e5abc7ce86038e9672.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab988ead2f841e5abc7ce86038e9672.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab988ead2f841e5abc7ce86038e9672.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ab988ead2f841e5abc7ce86038e9672.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ab988ead2f841e5abc7ce86038e9672.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5X6htSsHXXRHFYsyv0DQqgDTdI=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.05583+00 2025-12-09 10:14:40.055835+00 3220 LZ1181#上身2号色 SPMX-20240815298334 \N \N \N 1 \N [{"file_id": "698806cd-b988-4f37-8acf-eae467d4a394", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4baf4c275e16405e8e5b3bb783f01e02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4baf4c275e16405e8e5b3bb783f01e02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4baf4c275e16405e8e5b3bb783f01e02.jpg", "file_size": 11929, "is_delete": false, "file_type": 1, "original_file_name": "LZ1181#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baf4c275e16405e8e5b3bb783f01e02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baf4c275e16405e8e5b3bb783f01e02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baf4c275e16405e8e5b3bb783f01e02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4baf4c275e16405e8e5b3bb783f01e02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4baf4c275e16405e8e5b3bb783f01e02.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JL4eGfYx_KhlsJLyKLtBrsQssFs=", "createTime": "2024-08-15 14:38:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.056857+00 2025-12-09 10:14:40.056861+00 3221 8003#白底宝蓝 SPMX-20240815298342 \N \N \N 1 \N [{"file_id": "24b314d1-9415-4ba4-9ba0-45a1acfc00ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg", "file_size": 25396, "is_delete": false, "file_type": 1, "original_file_name": "8003#白底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d25ae6a6efa48ed8eb2f8ff9fbfb662.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsGprUHL8fzO84cRtdW1BkIuazA=", "createTime": "2024-08-15 14:38:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.057916+00 2025-12-09 10:14:40.057921+00 3222 HSH006FWE#VS-D3 SPMX-20240815298345 \N \N \N 1 \N [{"file_id": "f52e00d9-a37b-4faf-8d25-a54e485c16ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "922c5464e6284a3284565e41833f9ef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "922c5464e6284a3284565e41833f9ef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "922c5464e6284a3284565e41833f9ef7.jpg", "file_size": 22982, "is_delete": false, "file_type": 1, "original_file_name": "HSH006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922c5464e6284a3284565e41833f9ef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922c5464e6284a3284565e41833f9ef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922c5464e6284a3284565e41833f9ef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/922c5464e6284a3284565e41833f9ef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/922c5464e6284a3284565e41833f9ef7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jMuZAbC7apDoqRpjou8GYrRXhY=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.058946+00 2025-12-09 10:14:40.05895+00 3223 1040#S-110短款黄色 SPMX-20240815298353 \N \N \N 1 \N [{"file_id": "c1412488-40df-471c-8545-361dca5e6e4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "523bb34e4de841f991131bf2adaac36d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "523bb34e4de841f991131bf2adaac36d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "523bb34e4de841f991131bf2adaac36d.jpg", "file_size": 17203, "is_delete": false, "file_type": 1, "original_file_name": "1040#S-110短款黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523bb34e4de841f991131bf2adaac36d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523bb34e4de841f991131bf2adaac36d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523bb34e4de841f991131bf2adaac36d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/523bb34e4de841f991131bf2adaac36d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/523bb34e4de841f991131bf2adaac36d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uF0yOQN1iaK277AsEAigOBr_Mvo=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.059981+00 2025-12-09 10:14:40.059985+00 3224 DH005#口袋 SPMX-20240815298344 \N \N \N 1 \N [{"file_id": "c57e5b67-6413-44a0-b5d8-1279bf15c1e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbf8a5c0f56f40a6a25375a2d9968f49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbf8a5c0f56f40a6a25375a2d9968f49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbf8a5c0f56f40a6a25375a2d9968f49.jpg", "file_size": 6508, "is_delete": false, "file_type": 1, "original_file_name": "DH005#口袋.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8a5c0f56f40a6a25375a2d9968f49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8a5c0f56f40a6a25375a2d9968f49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8a5c0f56f40a6a25375a2d9968f49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbf8a5c0f56f40a6a25375a2d9968f49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbf8a5c0f56f40a6a25375a2d9968f49.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiWVm3Wg2wyWQdkmVzfi3lGiZoA=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.060999+00 2025-12-09 10:14:40.061003+00 3225 JS0104-A6#LWQ15 SPMX-20240815298349 \N \N \N 1 \N [{"file_id": "fb96328e-c054-4382-b35e-afe47a0007fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fed7a3629694e93940da482f2ef4b4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fed7a3629694e93940da482f2ef4b4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fed7a3629694e93940da482f2ef4b4f.jpg", "file_size": 7248, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A6#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fed7a3629694e93940da482f2ef4b4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fed7a3629694e93940da482f2ef4b4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fed7a3629694e93940da482f2ef4b4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fed7a3629694e93940da482f2ef4b4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fed7a3629694e93940da482f2ef4b4f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QqpX85hhrJUoQY7VawghXM7QJs=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.062024+00 2025-12-09 10:14:40.062028+00 3226 0001-1FWF#乱花-V5曲线番禺调色 SPMX-20240815298348 \N \N \N 1 \N [{"file_id": "0aca5e99-28a5-4b3c-9c92-73daaa3ed94f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4fe0a6f85cc4cf28f300295e4c86242.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4fe0a6f85cc4cf28f300295e4c86242.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4fe0a6f85cc4cf28f300295e4c86242.jpg", "file_size": 18238, "is_delete": false, "file_type": 1, "original_file_name": "0001-1FWF#乱花-V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe0a6f85cc4cf28f300295e4c86242.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe0a6f85cc4cf28f300295e4c86242.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe0a6f85cc4cf28f300295e4c86242.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4fe0a6f85cc4cf28f300295e4c86242.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4fe0a6f85cc4cf28f300295e4c86242.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vl7djB08AcnQqNEyo_LOgELySvM=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.063072+00 2025-12-09 10:14:40.063076+00 3227 LZ1181#上身4号色 SPMX-20240815298355 \N \N \N 1 \N [{"file_id": "efc124c0-d3ba-4786-9d04-8ec4165fb11d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "859e7b311d7b4616b3f77a102c056960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "859e7b311d7b4616b3f77a102c056960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "859e7b311d7b4616b3f77a102c056960.jpg", "file_size": 11914, "is_delete": false, "file_type": 1, "original_file_name": "LZ1181#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859e7b311d7b4616b3f77a102c056960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859e7b311d7b4616b3f77a102c056960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859e7b311d7b4616b3f77a102c056960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/859e7b311d7b4616b3f77a102c056960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/859e7b311d7b4616b3f77a102c056960.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3yUYe32W9cc7zrrfoEXU0865Pw=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.064096+00 2025-12-09 10:14:40.0641+00 3228 22C02-9-62#WJC22 SPMX-20240815298354 \N \N \N 1 \N [{"file_id": "4fd5efe1-d2db-4960-b444-b82b6c717a88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc0f1724f0564a2890b7e0a6838862e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc0f1724f0564a2890b7e0a6838862e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc0f1724f0564a2890b7e0a6838862e4.jpg", "file_size": 20514, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-62#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0f1724f0564a2890b7e0a6838862e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0f1724f0564a2890b7e0a6838862e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0f1724f0564a2890b7e0a6838862e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc0f1724f0564a2890b7e0a6838862e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc0f1724f0564a2890b7e0a6838862e4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K2vRnnNCklGAKoNrRr-C8Ltjajs=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.065112+00 2025-12-09 10:14:40.065116+00 3229 FHPKDK-批布075-2 SPMX-20240815298347 \N \N \N 1 \N [{"file_id": "3ce4c47b-8c98-4a8b-a035-4ee8e9f20421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d669fd6632f34ec8a653524cd8e57154.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d669fd6632f34ec8a653524cd8e57154.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d669fd6632f34ec8a653524cd8e57154.jpg", "file_size": 23083, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布075-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d669fd6632f34ec8a653524cd8e57154.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d669fd6632f34ec8a653524cd8e57154.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d669fd6632f34ec8a653524cd8e57154.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d669fd6632f34ec8a653524cd8e57154.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d669fd6632f34ec8a653524cd8e57154.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Sdwrb3T9dXjXOu1tZyLL3KzIrA=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.066138+00 2025-12-09 10:14:40.066142+00 3230 LZ1181#上身3号色 SPMX-20240815298346 \N \N \N 1 \N [{"file_id": "679fd421-660c-405a-9cb7-804178192b22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66503e45e8cd4e629b475a5cad1f467d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66503e45e8cd4e629b475a5cad1f467d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66503e45e8cd4e629b475a5cad1f467d.jpg", "file_size": 12468, "is_delete": false, "file_type": 1, "original_file_name": "LZ1181#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66503e45e8cd4e629b475a5cad1f467d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66503e45e8cd4e629b475a5cad1f467d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66503e45e8cd4e629b475a5cad1f467d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66503e45e8cd4e629b475a5cad1f467d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66503e45e8cd4e629b475a5cad1f467d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sI-0rhD5QdMWExPWGBcVHmkQ4cM=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.067175+00 2025-12-09 10:14:40.06718+00 3231 22C02-9-59#WJC22 SPMX-20240815298343 \N \N \N 1 \N [{"file_id": "e2b331ec-a530-45f2-b9a4-b58da45c27bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ff5cb48b082452c9cbeb41fd71201dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ff5cb48b082452c9cbeb41fd71201dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ff5cb48b082452c9cbeb41fd71201dc.jpg", "file_size": 28326, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-59#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ff5cb48b082452c9cbeb41fd71201dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ff5cb48b082452c9cbeb41fd71201dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ff5cb48b082452c9cbeb41fd71201dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ff5cb48b082452c9cbeb41fd71201dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ff5cb48b082452c9cbeb41fd71201dc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbXCtvXs_SDkEFFInpQ0x452uY4=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.068187+00 2025-12-09 10:14:40.068191+00 3232 8003#白底粉 SPMX-20240815298350 \N \N \N 1 \N [{"file_id": "54ad719c-3b19-487c-bbba-ebf33deb090e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62217c84f90c4e79a95302fe3dd01599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62217c84f90c4e79a95302fe3dd01599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62217c84f90c4e79a95302fe3dd01599.jpg", "file_size": 17593, "is_delete": false, "file_type": 1, "original_file_name": "8003#白底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62217c84f90c4e79a95302fe3dd01599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62217c84f90c4e79a95302fe3dd01599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62217c84f90c4e79a95302fe3dd01599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62217c84f90c4e79a95302fe3dd01599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62217c84f90c4e79a95302fe3dd01599.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wG15Fxt3WgmGtjcDkcKLAWgsZ1I=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.069218+00 2025-12-09 10:14:40.069222+00 3233 LHJ2258-1#绿色围巾 SPMX-20240815298351 \N \N \N 1 \N [{"file_id": "8e8587a1-80fb-4052-8647-98f0c8c17e7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "876ef65af7674f6e9ffcf33e1bd79c8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "876ef65af7674f6e9ffcf33e1bd79c8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "876ef65af7674f6e9ffcf33e1bd79c8a.jpg", "file_size": 25985, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#绿色围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876ef65af7674f6e9ffcf33e1bd79c8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876ef65af7674f6e9ffcf33e1bd79c8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876ef65af7674f6e9ffcf33e1bd79c8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/876ef65af7674f6e9ffcf33e1bd79c8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/876ef65af7674f6e9ffcf33e1bd79c8a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pD61KXQRdn917tgyH8se1jXDiQ=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.070243+00 2025-12-09 10:14:40.070247+00 3234 C218#领圈大红 SPMX-20240815298352 \N \N \N 1 \N [{"file_id": "c9e2c1e5-8609-4077-870c-f738c3aadacf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c988f42a7ba34baaa09d0fee1b3fb2b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c988f42a7ba34baaa09d0fee1b3fb2b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c988f42a7ba34baaa09d0fee1b3fb2b1.jpg", "file_size": 8821, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c988f42a7ba34baaa09d0fee1b3fb2b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c988f42a7ba34baaa09d0fee1b3fb2b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c988f42a7ba34baaa09d0fee1b3fb2b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c988f42a7ba34baaa09d0fee1b3fb2b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c988f42a7ba34baaa09d0fee1b3fb2b1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8FIilxldiGucIXWlQWeVOr-TrM=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.071275+00 2025-12-09 10:14:40.071279+00 3235 JS0104-A6#黄色 SPMX-20240815298360 \N \N \N 1 \N [{"file_id": "75b3ef03-cf5f-4b27-994f-5aca43e127e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5079c78abb343b68933d4454d918d2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5079c78abb343b68933d4454d918d2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5079c78abb343b68933d4454d918d2d.jpg", "file_size": 12385, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A6#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5079c78abb343b68933d4454d918d2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5079c78abb343b68933d4454d918d2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5079c78abb343b68933d4454d918d2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5079c78abb343b68933d4454d918d2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5079c78abb343b68933d4454d918d2d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xWEi3SySEV8D-2t88S5AfcbGz0E=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.072577+00 2025-12-09 10:14:40.072582+00 3236 FHPKDK-批布075-3 SPMX-20240815298356 \N \N \N 1 \N [{"file_id": "25d75565-3309-48b4-86ff-8a1e5a00f013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73df97d4420f472981ee20a40658e2ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73df97d4420f472981ee20a40658e2ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73df97d4420f472981ee20a40658e2ff.jpg", "file_size": 21988, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布075-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df97d4420f472981ee20a40658e2ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df97d4420f472981ee20a40658e2ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df97d4420f472981ee20a40658e2ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73df97d4420f472981ee20a40658e2ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73df97d4420f472981ee20a40658e2ff.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7u_p3QkLfDsFaoXaPHap5oZrKs=", "createTime": "2024-08-15 14:38:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.073596+00 2025-12-09 10:14:40.0736+00 3237 HSH006FWE#蓝底 SPMX-20240815298359 \N \N \N 1 \N [{"file_id": "8e53feee-ca6b-48bb-8817-02d2486a197e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d2b48cf2284dceb4f5daed3cc7be3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d2b48cf2284dceb4f5daed3cc7be3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d2b48cf2284dceb4f5daed3cc7be3e.jpg", "file_size": 27446, "is_delete": false, "file_type": 1, "original_file_name": "HSH006FWE#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2b48cf2284dceb4f5daed3cc7be3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2b48cf2284dceb4f5daed3cc7be3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2b48cf2284dceb4f5daed3cc7be3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d2b48cf2284dceb4f5daed3cc7be3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d2b48cf2284dceb4f5daed3cc7be3e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63wh9_63doJ8N_Au_-s1SMLGEl0=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.074607+00 2025-12-09 10:14:40.074611+00 3238 22C02-9-63#30码 SPMX-20240815298366 \N \N \N 1 \N [{"file_id": "cbff39b0-b302-49bd-8c76-c77edaba66d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd6cc0412532426191f7c7ca08823490.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd6cc0412532426191f7c7ca08823490.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd6cc0412532426191f7c7ca08823490.jpg", "file_size": 24832, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-63#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6cc0412532426191f7c7ca08823490.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6cc0412532426191f7c7ca08823490.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6cc0412532426191f7c7ca08823490.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd6cc0412532426191f7c7ca08823490.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd6cc0412532426191f7c7ca08823490.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGQi-8Xivimiio_iKqjbABEmess=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.075643+00 2025-12-09 10:14:40.075647+00 3239 10404-B#WJC22 SPMX-20240815298364 \N \N \N 1 \N [{"file_id": "8aee8ab0-cdfc-4583-acb4-d8663069d7c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccb46f9f7f854504b68a30b2811b6512.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccb46f9f7f854504b68a30b2811b6512.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccb46f9f7f854504b68a30b2811b6512.jpg", "file_size": 10242, "is_delete": false, "file_type": 1, "original_file_name": "10404-B#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb46f9f7f854504b68a30b2811b6512.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb46f9f7f854504b68a30b2811b6512.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb46f9f7f854504b68a30b2811b6512.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccb46f9f7f854504b68a30b2811b6512.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccb46f9f7f854504b68a30b2811b6512.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NtTztO2z4ySLe_UcEzuhiN_co7w=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.076637+00 2025-12-09 10:14:40.076641+00 3240 LHJ2258-1#黄色 SPMX-20240815298365 \N \N \N 1 \N [{"file_id": "27bfd210-6474-4438-a7a1-95bd872e16ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58ee5a546eaa4642a495cdcd46d35a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58ee5a546eaa4642a495cdcd46d35a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58ee5a546eaa4642a495cdcd46d35a07.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ee5a546eaa4642a495cdcd46d35a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ee5a546eaa4642a495cdcd46d35a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ee5a546eaa4642a495cdcd46d35a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58ee5a546eaa4642a495cdcd46d35a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58ee5a546eaa4642a495cdcd46d35a07.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnpVuN7LJqG5RRylZ8_pO5AAzwQ=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.077655+00 2025-12-09 10:14:40.07766+00 3241 DH005FW#VS-D3 SPMX-20240815298358 \N \N \N 1 \N [{"file_id": "d7ff441c-9ee5-4637-a8dd-89a665fef440", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab77edf754244c29a56a69f71268eae4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab77edf754244c29a56a69f71268eae4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab77edf754244c29a56a69f71268eae4.jpg", "file_size": 18890, "is_delete": false, "file_type": 1, "original_file_name": "DH005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab77edf754244c29a56a69f71268eae4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab77edf754244c29a56a69f71268eae4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab77edf754244c29a56a69f71268eae4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab77edf754244c29a56a69f71268eae4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab77edf754244c29a56a69f71268eae4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zY2iLL2Zar-uyggqNaPXmmplFRw=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.078868+00 2025-12-09 10:14:40.078873+00 3242 8003#粉底宝蓝 SPMX-20240815298363 \N \N \N 1 \N [{"file_id": "45fc122d-ca5b-442a-bb1b-02dcea482291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg", "file_size": 22926, "is_delete": false, "file_type": 1, "original_file_name": "8003#粉底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3fc2e1b15bf4b85ae8d3ac25921e7af.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZWCf02KbrSI9PXuoxxmWByYLdU=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.079961+00 2025-12-09 10:14:40.079966+00 3243 0001-1FWF#条纹-V5曲线 SPMX-20240815298357 \N \N \N 1 \N [{"file_id": "4b90e7f2-bb99-4132-ad98-2da93aed1949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b079a57ad3994916a44cf11f7e0871cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b079a57ad3994916a44cf11f7e0871cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b079a57ad3994916a44cf11f7e0871cd.jpg", "file_size": 9879, "is_delete": false, "file_type": 1, "original_file_name": "0001-1FWF#条纹-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079a57ad3994916a44cf11f7e0871cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079a57ad3994916a44cf11f7e0871cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079a57ad3994916a44cf11f7e0871cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b079a57ad3994916a44cf11f7e0871cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b079a57ad3994916a44cf11f7e0871cd.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zzss39xTpW406afY4473sY1rXgo=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.081018+00 2025-12-09 10:14:40.081022+00 3244 C218#领圈粉色 SPMX-20240815298361 \N \N \N 1 \N [{"file_id": "c5a32924-2c3a-4786-bd0f-29f02538a368", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d45d33367ce46f7be5b74c44719752f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d45d33367ce46f7be5b74c44719752f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d45d33367ce46f7be5b74c44719752f.jpg", "file_size": 7969, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d45d33367ce46f7be5b74c44719752f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d45d33367ce46f7be5b74c44719752f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d45d33367ce46f7be5b74c44719752f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d45d33367ce46f7be5b74c44719752f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d45d33367ce46f7be5b74c44719752f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZBM3WmAXvadjzxkwrGEYSVb6oMk=", "createTime": "2024-08-15 14:38:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.082043+00 2025-12-09 10:14:40.082047+00 3245 FHPKDK-批布075-4 SPMX-20240815298372 \N \N \N 1 \N [{"file_id": "ceae2b49-4793-4c55-9397-fd4f6499f0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ae37a71f60d4263b36435da76c5a929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ae37a71f60d4263b36435da76c5a929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ae37a71f60d4263b36435da76c5a929.jpg", "file_size": 27758, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布075-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae37a71f60d4263b36435da76c5a929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae37a71f60d4263b36435da76c5a929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae37a71f60d4263b36435da76c5a929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ae37a71f60d4263b36435da76c5a929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ae37a71f60d4263b36435da76c5a929.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwNxk3Si9-9eEthDmJ0ehZIFxdo=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.083455+00 2025-12-09 10:14:40.08346+00 3246 22C02-9-63#32码 SPMX-20240815298376 \N \N \N 1 \N [{"file_id": "fe930d67-71cb-45b8-8ae3-77cef2f02f53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29a47548f3dd47eb8b621e3f8451536d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29a47548f3dd47eb8b621e3f8451536d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29a47548f3dd47eb8b621e3f8451536d.jpg", "file_size": 24513, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-63#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a47548f3dd47eb8b621e3f8451536d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a47548f3dd47eb8b621e3f8451536d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a47548f3dd47eb8b621e3f8451536d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29a47548f3dd47eb8b621e3f8451536d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29a47548f3dd47eb8b621e3f8451536d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgiXFtfdMFGpMBiYwd5hpbQkB_E=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.084835+00 2025-12-09 10:14:40.084839+00 3247 JS0104-A7#紫色 SPMX-20240815298379 \N \N \N 1 \N [{"file_id": "1d9bdcad-273d-4ec5-b5cd-1a1aa5816125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0f80e3fa8e547049a16c1990dc9efe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0f80e3fa8e547049a16c1990dc9efe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0f80e3fa8e547049a16c1990dc9efe1.jpg", "file_size": 12621, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A7#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f80e3fa8e547049a16c1990dc9efe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f80e3fa8e547049a16c1990dc9efe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f80e3fa8e547049a16c1990dc9efe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0f80e3fa8e547049a16c1990dc9efe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0f80e3fa8e547049a16c1990dc9efe1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZpceIxrh5zMTmKXk0BjsDGvm5I=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.086189+00 2025-12-09 10:14:40.086193+00 3248 LHJ2258-1#黄色围巾 SPMX-20240815298375 \N \N \N 1 \N [{"file_id": "eb1bf85b-9880-467d-bb1e-f812cc484bd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc80abe142f04d7bbc6a25e01818b6fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc80abe142f04d7bbc6a25e01818b6fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc80abe142f04d7bbc6a25e01818b6fe.jpg", "file_size": 24137, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2258-1#黄色围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc80abe142f04d7bbc6a25e01818b6fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc80abe142f04d7bbc6a25e01818b6fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc80abe142f04d7bbc6a25e01818b6fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc80abe142f04d7bbc6a25e01818b6fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc80abe142f04d7bbc6a25e01818b6fe.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTOTKHBbdeRV5J8YAlj7OopEJyU=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.087526+00 2025-12-09 10:14:40.08753+00 3249 8003#黑色2XL SPMX-20240815298377 \N \N \N 1 \N [{"file_id": "9875175e-7328-43b3-b901-137cd7cac966", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05641e771aaf47a38ae03f1f9d56f919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05641e771aaf47a38ae03f1f9d56f919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05641e771aaf47a38ae03f1f9d56f919.jpg", "file_size": 76989, "is_delete": false, "file_type": 1, "original_file_name": "8003#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05641e771aaf47a38ae03f1f9d56f919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05641e771aaf47a38ae03f1f9d56f919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05641e771aaf47a38ae03f1f9d56f919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05641e771aaf47a38ae03f1f9d56f919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05641e771aaf47a38ae03f1f9d56f919.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6vemUiBoKW7b5oXr5emNJYwJNY=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.088867+00 2025-12-09 10:14:40.088871+00 3250 0001-20FWF#白黑条 SPMX-20240815298378 \N \N \N 1 \N [{"file_id": "8e10592c-4284-488b-be68-8ab38ba8531b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92fbd476ad8e4a45867cde815232c007.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92fbd476ad8e4a45867cde815232c007.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92fbd476ad8e4a45867cde815232c007.jpg", "file_size": 23702, "is_delete": false, "file_type": 1, "original_file_name": "0001-20FWF#白黑条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fbd476ad8e4a45867cde815232c007.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fbd476ad8e4a45867cde815232c007.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fbd476ad8e4a45867cde815232c007.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92fbd476ad8e4a45867cde815232c007.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92fbd476ad8e4a45867cde815232c007.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-P6q5LaBK_pVUteeonhu8XWYVlw=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.090232+00 2025-12-09 10:14:40.090236+00 3251 DH005FWE#VS-D3 SPMX-20240815298369 \N \N \N 1 \N [{"file_id": "43a42847-35a5-4b2a-aae4-b7f1b708ae4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf878ed2e19742ecb581640af31d2cf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf878ed2e19742ecb581640af31d2cf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf878ed2e19742ecb581640af31d2cf7.jpg", "file_size": 21692, "is_delete": false, "file_type": 1, "original_file_name": "DH005FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf878ed2e19742ecb581640af31d2cf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf878ed2e19742ecb581640af31d2cf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf878ed2e19742ecb581640af31d2cf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf878ed2e19742ecb581640af31d2cf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf878ed2e19742ecb581640af31d2cf7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZXBRtfrPefh4jJowuNrzpFbvls=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.091579+00 2025-12-09 10:14:40.091583+00 3252 LZ11815#净色 SPMX-20240815298374 \N \N \N 1 \N [{"file_id": "16ba4d76-2b47-4044-bcb1-6625393e82b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6796dcc0be84467ba086c7b4a5b3687c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6796dcc0be84467ba086c7b4a5b3687c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6796dcc0be84467ba086c7b4a5b3687c.jpg", "file_size": 4879, "is_delete": false, "file_type": 1, "original_file_name": "LZ11815#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6796dcc0be84467ba086c7b4a5b3687c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6796dcc0be84467ba086c7b4a5b3687c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6796dcc0be84467ba086c7b4a5b3687c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6796dcc0be84467ba086c7b4a5b3687c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6796dcc0be84467ba086c7b4a5b3687c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1L6UuYYzlrcYWarLBk3L8I3VkvY=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.093033+00 2025-12-09 10:14:40.093037+00 3253 JS0104-A7#LWQ15 SPMX-20240815298368 \N \N \N 1 \N [{"file_id": "ec5aa45e-010d-4f47-98e4-90ebce30f7ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0789203387c64663b7fa0226581bdee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0789203387c64663b7fa0226581bdee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0789203387c64663b7fa0226581bdee9.jpg", "file_size": 20402, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A7#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0789203387c64663b7fa0226581bdee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0789203387c64663b7fa0226581bdee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0789203387c64663b7fa0226581bdee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0789203387c64663b7fa0226581bdee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0789203387c64663b7fa0226581bdee9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fZhk9m5iFFSJrY1K32lYsjGzHMA=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.09407+00 2025-12-09 10:14:40.094075+00 3254 0001-20FWE#VS-D3 SPMX-20240815298367 \N \N \N 1 \N [{"file_id": "20af3699-28c6-4813-af94-c091f67f98a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e1d210d0f11489fa3501d72f3bdc989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e1d210d0f11489fa3501d72f3bdc989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e1d210d0f11489fa3501d72f3bdc989.jpg", "file_size": 19021, "is_delete": false, "file_type": 1, "original_file_name": "0001-20FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1d210d0f11489fa3501d72f3bdc989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1d210d0f11489fa3501d72f3bdc989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1d210d0f11489fa3501d72f3bdc989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e1d210d0f11489fa3501d72f3bdc989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e1d210d0f11489fa3501d72f3bdc989.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3snByVaLgrN_o7WsrA5oajmMpUA=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.095134+00 2025-12-09 10:14:40.095138+00 3255 1040FWF#-1 SPMX-20240815298370 \N \N \N 1 \N [{"file_id": "62426561-5cb4-4130-9215-d76dd81896b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f5ff5f8245d4fea8c4c36b182434b4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f5ff5f8245d4fea8c4c36b182434b4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f5ff5f8245d4fea8c4c36b182434b4d.jpg", "file_size": 19463, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f5ff5f8245d4fea8c4c36b182434b4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f5ff5f8245d4fea8c4c36b182434b4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f5ff5f8245d4fea8c4c36b182434b4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f5ff5f8245d4fea8c4c36b182434b4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f5ff5f8245d4fea8c4c36b182434b4d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdRhZaZANRxdmCI5CyTWQyVutYI=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.096184+00 2025-12-09 10:14:40.096188+00 3256 DH006FW#VS-D3 SPMX-20240815298380 \N \N \N 1 \N [{"file_id": "1447d471-ab2c-42e2-aaea-f62e63d0735b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db19ad36621645afbc3e305928691ca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db19ad36621645afbc3e305928691ca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db19ad36621645afbc3e305928691ca0.jpg", "file_size": 23448, "is_delete": false, "file_type": 1, "original_file_name": "DH006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db19ad36621645afbc3e305928691ca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db19ad36621645afbc3e305928691ca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db19ad36621645afbc3e305928691ca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db19ad36621645afbc3e305928691ca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db19ad36621645afbc3e305928691ca0.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJPav18pyUgmAsRfhDwNct1_OKA=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.097228+00 2025-12-09 10:14:40.097232+00 3257 C218#领圈绿色 SPMX-20240815298373 \N \N \N 1 \N [{"file_id": "a0fd0c62-9d28-4466-9bbf-0594dd52bba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69a15a11a7ad49c5a852acaad565203d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69a15a11a7ad49c5a852acaad565203d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69a15a11a7ad49c5a852acaad565203d.jpg", "file_size": 8522, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a15a11a7ad49c5a852acaad565203d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a15a11a7ad49c5a852acaad565203d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a15a11a7ad49c5a852acaad565203d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69a15a11a7ad49c5a852acaad565203d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69a15a11a7ad49c5a852acaad565203d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Viu1EKYwnkf7bI14HK3uvl2R0A=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.098271+00 2025-12-09 10:14:40.098276+00 3258 HSH007#E SPMX-20240815298382 \N \N \N 1 \N [{"file_id": "d629c4a4-8f89-4c68-b985-a86dc2ff628b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a36a9ef5ea04189b38be6e64e609754.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a36a9ef5ea04189b38be6e64e609754.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a36a9ef5ea04189b38be6e64e609754.jpg", "file_size": 19382, "is_delete": false, "file_type": 1, "original_file_name": "HSH007#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a36a9ef5ea04189b38be6e64e609754.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a36a9ef5ea04189b38be6e64e609754.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a36a9ef5ea04189b38be6e64e609754.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a36a9ef5ea04189b38be6e64e609754.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a36a9ef5ea04189b38be6e64e609754.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7cfM_SQpEyEzucsufFhFHKIbWI=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.099301+00 2025-12-09 10:14:40.099305+00 3259 HSH007#D SPMX-20240815298371 \N \N \N 1 \N [{"file_id": "1b7f9ead-5f4e-4cf0-b29e-c19d23923b5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a37a173c7d74402a0193c2262e2d6a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a37a173c7d74402a0193c2262e2d6a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a37a173c7d74402a0193c2262e2d6a1.jpg", "file_size": 11968, "is_delete": false, "file_type": 1, "original_file_name": "HSH007#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a37a173c7d74402a0193c2262e2d6a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a37a173c7d74402a0193c2262e2d6a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a37a173c7d74402a0193c2262e2d6a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a37a173c7d74402a0193c2262e2d6a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a37a173c7d74402a0193c2262e2d6a1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3be6VLxPx-Dud-TqmjWU3Stqnh8=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.100365+00 2025-12-09 10:14:40.100369+00 3260 1040FWF#-2 SPMX-20240815298381 \N \N \N 1 \N [{"file_id": "ea342626-332c-4477-b942-35d05f29eaee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e15e5f8614e94653ad817f4c70f89965.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e15e5f8614e94653ad817f4c70f89965.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e15e5f8614e94653ad817f4c70f89965.jpg", "file_size": 16780, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15e5f8614e94653ad817f4c70f89965.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15e5f8614e94653ad817f4c70f89965.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15e5f8614e94653ad817f4c70f89965.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e15e5f8614e94653ad817f4c70f89965.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e15e5f8614e94653ad817f4c70f89965.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n37SqIUS9-62PrKovEurCJQemRg=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.101404+00 2025-12-09 10:14:40.101409+00 3261 FHPKDK-批布076-1 SPMX-20240815298383 \N \N \N 1 \N [{"file_id": "79f59dad-5b8c-4ef2-a013-0148c73c8a0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93dc2e5357614483abe9c7dbec26156a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93dc2e5357614483abe9c7dbec26156a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93dc2e5357614483abe9c7dbec26156a.jpg", "file_size": 65513, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布076-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93dc2e5357614483abe9c7dbec26156a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93dc2e5357614483abe9c7dbec26156a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93dc2e5357614483abe9c7dbec26156a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93dc2e5357614483abe9c7dbec26156a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93dc2e5357614483abe9c7dbec26156a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4BWQXfXuRAbQmfLPZA3DZyjhLc=", "createTime": "2024-08-15 14:38:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.102442+00 2025-12-09 10:14:40.102446+00 3262 LZ11815#定位 SPMX-20240815298386 \N \N \N 1 \N [{"file_id": "92199a28-f172-4ec1-82aa-3785ed670dd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "475c7e5fa4904eb093c678c1e847550e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "475c7e5fa4904eb093c678c1e847550e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "475c7e5fa4904eb093c678c1e847550e.jpg", "file_size": 4933, "is_delete": false, "file_type": 1, "original_file_name": "LZ11815#定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475c7e5fa4904eb093c678c1e847550e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475c7e5fa4904eb093c678c1e847550e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475c7e5fa4904eb093c678c1e847550e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/475c7e5fa4904eb093c678c1e847550e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/475c7e5fa4904eb093c678c1e847550e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlUkasUrp8pETFfKtntepZckUzg=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.103504+00 2025-12-09 10:14:40.103509+00 3263 C218#领圈黑143 SPMX-20240815298384 \N \N \N 1 \N [{"file_id": "f5c39c33-3303-41ab-ba22-6ab89efe6a77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c63e375677f64e1eb8ba94368b33c04a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c63e375677f64e1eb8ba94368b33c04a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c63e375677f64e1eb8ba94368b33c04a.jpg", "file_size": 8624, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈黑143.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63e375677f64e1eb8ba94368b33c04a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63e375677f64e1eb8ba94368b33c04a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63e375677f64e1eb8ba94368b33c04a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c63e375677f64e1eb8ba94368b33c04a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c63e375677f64e1eb8ba94368b33c04a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-8LZCEQo5RpRH9OmJvxfo0nFqw=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.104576+00 2025-12-09 10:14:40.10458+00 3264 LHJ2261#彩兰 SPMX-20240815298385 \N \N \N 1 \N [{"file_id": "f1120b98-3271-47f0-942c-4931e247c14b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "257521a814b14420ae9ebca8513820cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "257521a814b14420ae9ebca8513820cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "257521a814b14420ae9ebca8513820cf.jpg", "file_size": 19280, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257521a814b14420ae9ebca8513820cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257521a814b14420ae9ebca8513820cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257521a814b14420ae9ebca8513820cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/257521a814b14420ae9ebca8513820cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/257521a814b14420ae9ebca8513820cf.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B72UMbSM-DoVKxfzMWn0FstEPBM=", "createTime": "2024-08-15 14:38:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.105641+00 2025-12-09 10:14:40.105645+00 3265 DH006FWE#VS-D3 SPMX-20240815298392 \N \N \N 1 \N [{"file_id": "e2d0f162-ff5e-441d-959e-9987319a5f7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdb2e93b6bcb4852a52a1347f778531f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdb2e93b6bcb4852a52a1347f778531f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdb2e93b6bcb4852a52a1347f778531f.jpg", "file_size": 27078, "is_delete": false, "file_type": 1, "original_file_name": "DH006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb2e93b6bcb4852a52a1347f778531f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb2e93b6bcb4852a52a1347f778531f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb2e93b6bcb4852a52a1347f778531f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdb2e93b6bcb4852a52a1347f778531f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdb2e93b6bcb4852a52a1347f778531f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7FXREOhMMw0S66cDH6IsFs4C6Y=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.106684+00 2025-12-09 10:14:40.106689+00 3266 0001-20FWF#黑白条 SPMX-20240815298388 \N \N \N 1 \N [{"file_id": "bca9c836-e49a-4c63-9191-bb7c1e055cac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e90caf46c73a4bc18dec78418cfe012a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e90caf46c73a4bc18dec78418cfe012a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e90caf46c73a4bc18dec78418cfe012a.jpg", "file_size": 23038, "is_delete": false, "file_type": 1, "original_file_name": "0001-20FWF#黑白条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90caf46c73a4bc18dec78418cfe012a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90caf46c73a4bc18dec78418cfe012a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90caf46c73a4bc18dec78418cfe012a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e90caf46c73a4bc18dec78418cfe012a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e90caf46c73a4bc18dec78418cfe012a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpLdNglFBPUX8nAaUljbFnCSpFc=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.107741+00 2025-12-09 10:14:40.107745+00 3267 HSH007#VS-D3 SPMX-20240815298395 \N \N \N 1 \N [{"file_id": "7d77c69a-d328-4ee0-9d64-3a26c43d9d68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3add25ae41744d9d82f3619840c9d30a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3add25ae41744d9d82f3619840c9d30a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3add25ae41744d9d82f3619840c9d30a.jpg", "file_size": 28915, "is_delete": false, "file_type": 1, "original_file_name": "HSH007#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3add25ae41744d9d82f3619840c9d30a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3add25ae41744d9d82f3619840c9d30a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3add25ae41744d9d82f3619840c9d30a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3add25ae41744d9d82f3619840c9d30a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3add25ae41744d9d82f3619840c9d30a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7Ghrc8ng7DyStbWlzb8TgSsAng=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.108797+00 2025-12-09 10:14:40.108801+00 3268 FHPKDK-批布076-2 SPMX-20240815298393 \N \N \N 1 \N [{"file_id": "8d01cbaa-0405-46a4-b531-ede6264611a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ff1f9e002a4021a7ee98915083a5fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ff1f9e002a4021a7ee98915083a5fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ff1f9e002a4021a7ee98915083a5fe.jpg", "file_size": 65458, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布076-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ff1f9e002a4021a7ee98915083a5fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ff1f9e002a4021a7ee98915083a5fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ff1f9e002a4021a7ee98915083a5fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ff1f9e002a4021a7ee98915083a5fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ff1f9e002a4021a7ee98915083a5fe.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:giHjLffWZdfrNVdIrjwP-jTC2WU=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.109838+00 2025-12-09 10:14:40.109843+00 3269 22C02-9-63#34码 SPMX-20240815298387 \N \N \N 1 \N [{"file_id": "227d90fd-d36f-4b95-8d37-001eb2e804f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "468f5009727449f3bb7dd9c004f88b86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "468f5009727449f3bb7dd9c004f88b86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "468f5009727449f3bb7dd9c004f88b86.jpg", "file_size": 23737, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-63#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468f5009727449f3bb7dd9c004f88b86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468f5009727449f3bb7dd9c004f88b86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468f5009727449f3bb7dd9c004f88b86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/468f5009727449f3bb7dd9c004f88b86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/468f5009727449f3bb7dd9c004f88b86.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZPwTEvxa7BP87Oza9q7-ihFUPc=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.110909+00 2025-12-09 10:14:40.110913+00 3270 8003#黑色L SPMX-20240815298390 \N \N \N 1 \N [{"file_id": "a22c325f-070d-4790-85fc-c2b4e5f8c1de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eef77767dc8e44a291b8bb76b7c93ec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eef77767dc8e44a291b8bb76b7c93ec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eef77767dc8e44a291b8bb76b7c93ec2.jpg", "file_size": 83732, "is_delete": false, "file_type": 1, "original_file_name": "8003#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef77767dc8e44a291b8bb76b7c93ec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef77767dc8e44a291b8bb76b7c93ec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef77767dc8e44a291b8bb76b7c93ec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eef77767dc8e44a291b8bb76b7c93ec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eef77767dc8e44a291b8bb76b7c93ec2.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wASWofjyYMiQfRFBMog7ip7nRZU=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.111996+00 2025-12-09 10:14:40.112+00 3271 LZ11815#循环 SPMX-20240815298391 \N \N \N 1 \N [{"file_id": "037828da-3451-43ed-9e53-0e5cddd77776", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb14436250b34c189bdce7e8ff8de47e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb14436250b34c189bdce7e8ff8de47e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb14436250b34c189bdce7e8ff8de47e.jpg", "file_size": 7449, "is_delete": false, "file_type": 1, "original_file_name": "LZ11815#循环.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb14436250b34c189bdce7e8ff8de47e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb14436250b34c189bdce7e8ff8de47e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb14436250b34c189bdce7e8ff8de47e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb14436250b34c189bdce7e8ff8de47e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb14436250b34c189bdce7e8ff8de47e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbkvAgtoSxaevhr9pW6DcCi53g4=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.113037+00 2025-12-09 10:14:40.113041+00 3272 LHJ2261#彩兰围巾 SPMX-20240815298394 \N \N \N 1 \N [{"file_id": "12731cce-8f5f-4112-af33-ad33abd2e273", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50b5e1ba1550480189fda42d71edbb10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50b5e1ba1550480189fda42d71edbb10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50b5e1ba1550480189fda42d71edbb10.jpg", "file_size": 24029, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#彩兰围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5e1ba1550480189fda42d71edbb10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5e1ba1550480189fda42d71edbb10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5e1ba1550480189fda42d71edbb10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50b5e1ba1550480189fda42d71edbb10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50b5e1ba1550480189fda42d71edbb10.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZzydQ4jqCt0kHnkdDZiauXDe60=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.11409+00 2025-12-09 10:14:40.114094+00 3273 JS0104-A8#LWQ15 SPMX-20240815298389 \N \N \N 1 \N [{"file_id": "33ad2d67-5e63-4af9-b91e-f6566eaf9eb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48dbfe2450f947979f14be9a0a8ea7fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48dbfe2450f947979f14be9a0a8ea7fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48dbfe2450f947979f14be9a0a8ea7fb.jpg", "file_size": 19130, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A8#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dbfe2450f947979f14be9a0a8ea7fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dbfe2450f947979f14be9a0a8ea7fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dbfe2450f947979f14be9a0a8ea7fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48dbfe2450f947979f14be9a0a8ea7fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48dbfe2450f947979f14be9a0a8ea7fb.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DExEu1OBlotvRx603-q6XSBUjiY=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.115185+00 2025-12-09 10:14:40.11519+00 3274 C218#领圈黑216 SPMX-20240815298396 \N \N \N 1 \N [{"file_id": "3130c213-10cf-4897-b89f-5b28890b3882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e218f72b189c49c8be060e59e066c5d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e218f72b189c49c8be060e59e066c5d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e218f72b189c49c8be060e59e066c5d9.jpg", "file_size": 7765, "is_delete": false, "file_type": 1, "original_file_name": "C218#领圈黑216.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e218f72b189c49c8be060e59e066c5d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e218f72b189c49c8be060e59e066c5d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e218f72b189c49c8be060e59e066c5d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e218f72b189c49c8be060e59e066c5d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e218f72b189c49c8be060e59e066c5d9.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gC9NpEqO-UkpLZ5kzOfCbX94nmY=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.116255+00 2025-12-09 10:14:40.116259+00 3275 1040FWF#-3 SPMX-20240815298397 \N \N \N 1 \N [{"file_id": "301a1caa-b4d1-4ec9-9864-5d0ea73357ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cfe8c7e9f3843788d57ba985bb2aac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cfe8c7e9f3843788d57ba985bb2aac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cfe8c7e9f3843788d57ba985bb2aac1.jpg", "file_size": 16373, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfe8c7e9f3843788d57ba985bb2aac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfe8c7e9f3843788d57ba985bb2aac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfe8c7e9f3843788d57ba985bb2aac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cfe8c7e9f3843788d57ba985bb2aac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cfe8c7e9f3843788d57ba985bb2aac1.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjVnyJXjoRJP0E29IMW1sxv_Kr8=", "createTime": "2024-08-15 14:38:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.117305+00 2025-12-09 10:14:40.117309+00 3276 22C02-9-63#36码 SPMX-20240815298400 \N \N \N 1 \N [{"file_id": "4b08a342-9b30-4493-842d-929d1cb4f46e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b978433b454f62b69ca2a2fea0f793.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b978433b454f62b69ca2a2fea0f793.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b978433b454f62b69ca2a2fea0f793.jpg", "file_size": 23606, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-63#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b978433b454f62b69ca2a2fea0f793.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b978433b454f62b69ca2a2fea0f793.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b978433b454f62b69ca2a2fea0f793.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b978433b454f62b69ca2a2fea0f793.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b978433b454f62b69ca2a2fea0f793.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxV7q2yYbxRJOcCExLNnBI2lxcU=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.118361+00 2025-12-09 10:14:40.118366+00 3277 JS0104-A8#粉色 SPMX-20240815298399 \N \N \N 1 \N [{"file_id": "67e74d3e-18d4-4b80-9ded-2ba202e25ee0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48488dc27cf249e0a1a6afe5f969fe81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48488dc27cf249e0a1a6afe5f969fe81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48488dc27cf249e0a1a6afe5f969fe81.jpg", "file_size": 9510, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A8#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48488dc27cf249e0a1a6afe5f969fe81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48488dc27cf249e0a1a6afe5f969fe81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48488dc27cf249e0a1a6afe5f969fe81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48488dc27cf249e0a1a6afe5f969fe81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48488dc27cf249e0a1a6afe5f969fe81.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qsBCQ2b6jZE5JQLUrmjMI9PqTU=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.119404+00 2025-12-09 10:14:40.119408+00 3278 0001-21FWE#VS-D3 SPMX-20240815298398 \N \N \N 1 \N [{"file_id": "0b42cefb-296c-4de4-917f-204f87c0caed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab46b868fb534ba29871ab565be4d87f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab46b868fb534ba29871ab565be4d87f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab46b868fb534ba29871ab565be4d87f.jpg", "file_size": 12356, "is_delete": false, "file_type": 1, "original_file_name": "0001-21FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab46b868fb534ba29871ab565be4d87f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab46b868fb534ba29871ab565be4d87f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab46b868fb534ba29871ab565be4d87f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab46b868fb534ba29871ab565be4d87f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab46b868fb534ba29871ab565be4d87f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NN96VEZrRBn4P30s2smAC1X96VU=", "createTime": "2024-08-15 14:38:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.120453+00 2025-12-09 10:14:40.120457+00 3279 8003#黑色XL SPMX-20240815298401 \N \N \N 1 \N [{"file_id": "6debf2e0-d9e7-4a1c-bdde-8272932e758b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70a20379ee7341d59aaa071283275d09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70a20379ee7341d59aaa071283275d09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70a20379ee7341d59aaa071283275d09.jpg", "file_size": 82415, "is_delete": false, "file_type": 1, "original_file_name": "8003#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a20379ee7341d59aaa071283275d09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a20379ee7341d59aaa071283275d09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a20379ee7341d59aaa071283275d09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70a20379ee7341d59aaa071283275d09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70a20379ee7341d59aaa071283275d09.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNJAwoNvWVGo9oy-M7l_2o8WykY=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.121559+00 2025-12-09 10:14:40.121564+00 3280 JS0104-A8#黄色 SPMX-20240815298406 \N \N \N 1 \N [{"file_id": "5461b289-233d-4bd6-80aa-f4a2babb5d88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94d9d700237b41ada494a14301337f52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94d9d700237b41ada494a14301337f52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94d9d700237b41ada494a14301337f52.jpg", "file_size": 9012, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A8#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d9d700237b41ada494a14301337f52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d9d700237b41ada494a14301337f52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d9d700237b41ada494a14301337f52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94d9d700237b41ada494a14301337f52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94d9d700237b41ada494a14301337f52.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfrb-j8dhjgBcxvnwf4acNmrkvQ=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.122591+00 2025-12-09 10:14:40.122595+00 3281 HSH007FW#粉VS-D3 SPMX-20240815298403 \N \N \N 1 \N [{"file_id": "0b6dfa4e-766c-456f-9eb9-73705cdc4653", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecd256a1ad6e4b329cf2a9781bec4929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecd256a1ad6e4b329cf2a9781bec4929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecd256a1ad6e4b329cf2a9781bec4929.jpg", "file_size": 15758, "is_delete": false, "file_type": 1, "original_file_name": "HSH007FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd256a1ad6e4b329cf2a9781bec4929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd256a1ad6e4b329cf2a9781bec4929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd256a1ad6e4b329cf2a9781bec4929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecd256a1ad6e4b329cf2a9781bec4929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecd256a1ad6e4b329cf2a9781bec4929.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YU0Ej3uSfcbMLhGJ43212egIEj4=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.123638+00 2025-12-09 10:14:40.123642+00 3282 FHPKDK-批布076-3 SPMX-20240815298404 \N \N \N 1 \N [{"file_id": "2250f1f8-b426-4b0c-8a52-599c81a92a36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9c97c746af044ba9e2b0c58abf6a991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9c97c746af044ba9e2b0c58abf6a991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9c97c746af044ba9e2b0c58abf6a991.jpg", "file_size": 75817, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布076-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c97c746af044ba9e2b0c58abf6a991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c97c746af044ba9e2b0c58abf6a991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c97c746af044ba9e2b0c58abf6a991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9c97c746af044ba9e2b0c58abf6a991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9c97c746af044ba9e2b0c58abf6a991.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmjhS_9hrWX0BdcRB1JrD3xGwCQ=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.124709+00 2025-12-09 10:14:40.124714+00 3283 LHJ2261#深蓝 SPMX-20240815298407 \N \N \N 1 \N [{"file_id": "3bc27d86-7e98-4288-9f53-cdecd13235e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c27714093f64bc4ad6385d8dd7990c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c27714093f64bc4ad6385d8dd7990c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c27714093f64bc4ad6385d8dd7990c4.jpg", "file_size": 18287, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c27714093f64bc4ad6385d8dd7990c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c27714093f64bc4ad6385d8dd7990c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c27714093f64bc4ad6385d8dd7990c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c27714093f64bc4ad6385d8dd7990c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c27714093f64bc4ad6385d8dd7990c4.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGVNN3fVw8V2Juj_sRjTRzqDCjk=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.125743+00 2025-12-09 10:14:40.125747+00 3284 1040FWF#-4 SPMX-20240815298408 \N \N \N 1 \N [{"file_id": "86a809be-dbea-46e9-a306-43eab8d62c8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba418a92e03440d29c387d9ff1061296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba418a92e03440d29c387d9ff1061296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba418a92e03440d29c387d9ff1061296.jpg", "file_size": 17467, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba418a92e03440d29c387d9ff1061296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba418a92e03440d29c387d9ff1061296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba418a92e03440d29c387d9ff1061296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba418a92e03440d29c387d9ff1061296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba418a92e03440d29c387d9ff1061296.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vq1pRQlw3rIn8ruecYeqxLfxGZI=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.126774+00 2025-12-09 10:14:40.126778+00 3285 LZ1182#上身1号色 SPMX-20240815298402 \N \N \N 1 \N [{"file_id": "29a96f0e-aafa-4d51-a556-5d09cdac6899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361e143e6eca478d90e4d8a6c05468e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361e143e6eca478d90e4d8a6c05468e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361e143e6eca478d90e4d8a6c05468e3.jpg", "file_size": 12124, "is_delete": false, "file_type": 1, "original_file_name": "LZ1182#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361e143e6eca478d90e4d8a6c05468e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361e143e6eca478d90e4d8a6c05468e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361e143e6eca478d90e4d8a6c05468e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361e143e6eca478d90e4d8a6c05468e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361e143e6eca478d90e4d8a6c05468e3.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QTJVKFp60aCe92y53FlDC9Corc=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.127785+00 2025-12-09 10:14:40.127789+00 3286 C218#黑枣红216 SPMX-20240815298405 \N \N \N 1 \N [{"file_id": "5a4d3fbc-e48a-4e6e-af47-2dd15d1f5762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95cb60ebf2be41fdb5f6c47fa500caab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95cb60ebf2be41fdb5f6c47fa500caab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95cb60ebf2be41fdb5f6c47fa500caab.jpg", "file_size": 10885, "is_delete": false, "file_type": 1, "original_file_name": "C218#黑枣红216.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95cb60ebf2be41fdb5f6c47fa500caab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95cb60ebf2be41fdb5f6c47fa500caab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95cb60ebf2be41fdb5f6c47fa500caab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95cb60ebf2be41fdb5f6c47fa500caab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95cb60ebf2be41fdb5f6c47fa500caab.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YRcinJwIn2g_n-vzVWiMQvimlE=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.128823+00 2025-12-09 10:14:40.128827+00 3287 0001-21FWF#V5曲线 SPMX-20240815298411 \N \N \N 1 \N [{"file_id": "b3706c3f-cafe-4b3f-9afd-1410a1f5ffde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f502aada84ce458b8dc39e1bab36377e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f502aada84ce458b8dc39e1bab36377e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f502aada84ce458b8dc39e1bab36377e.jpg", "file_size": 22026, "is_delete": false, "file_type": 1, "original_file_name": "0001-21FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f502aada84ce458b8dc39e1bab36377e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f502aada84ce458b8dc39e1bab36377e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f502aada84ce458b8dc39e1bab36377e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f502aada84ce458b8dc39e1bab36377e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f502aada84ce458b8dc39e1bab36377e.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9TDud-XylVa5jacBkBR8iuETfo=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.129857+00 2025-12-09 10:14:40.129862+00 3288 LHJ2261#深蓝围巾 SPMX-20240815298419 \N \N \N 1 \N [{"file_id": "08d1b928-00ad-480d-b2a7-d1853d3fee1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76bde9dd7dd64c969ad085bda0b6b31f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76bde9dd7dd64c969ad085bda0b6b31f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76bde9dd7dd64c969ad085bda0b6b31f.jpg", "file_size": 22390, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#深蓝围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76bde9dd7dd64c969ad085bda0b6b31f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76bde9dd7dd64c969ad085bda0b6b31f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76bde9dd7dd64c969ad085bda0b6b31f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76bde9dd7dd64c969ad085bda0b6b31f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76bde9dd7dd64c969ad085bda0b6b31f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4889ng3hdk9iM_mCTtOJpv9PzW8=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.130871+00 2025-12-09 10:14:40.130875+00 3289 DH007FW#VS-D3 SPMX-20240815298410 \N \N \N 1 \N [{"file_id": "81e25fa0-26ec-41c4-8a1d-a6df26b2d134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b7d0f3b764e49f4a553e22ef600113c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b7d0f3b764e49f4a553e22ef600113c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b7d0f3b764e49f4a553e22ef600113c.jpg", "file_size": 18337, "is_delete": false, "file_type": 1, "original_file_name": "DH007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7d0f3b764e49f4a553e22ef600113c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7d0f3b764e49f4a553e22ef600113c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7d0f3b764e49f4a553e22ef600113c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b7d0f3b764e49f4a553e22ef600113c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b7d0f3b764e49f4a553e22ef600113c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PM-YrHvyLS1ieZ36dG1cGXUBDU8=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.131903+00 2025-12-09 10:14:40.131907+00 3290 80030#短袖上衣 SPMX-20240815298423 \N \N \N 1 \N [{"file_id": "3f4ef7c6-bd5c-4c7e-ae69-0836d741c031", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a1ba22b619f4f4e829ccc53d2f43226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a1ba22b619f4f4e829ccc53d2f43226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a1ba22b619f4f4e829ccc53d2f43226.jpg", "file_size": 22353, "is_delete": false, "file_type": 1, "original_file_name": "80030#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1ba22b619f4f4e829ccc53d2f43226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1ba22b619f4f4e829ccc53d2f43226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1ba22b619f4f4e829ccc53d2f43226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a1ba22b619f4f4e829ccc53d2f43226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a1ba22b619f4f4e829ccc53d2f43226.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdkV3hLtuiaodLRPVeVWQGwJETs=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.132924+00 2025-12-09 10:14:40.132928+00 3291 8003#黑色批布文件共用 SPMX-20240815298412 \N \N \N 1 \N [{"file_id": "e197fe2d-4ca7-417f-9c12-34129f8670fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69411486da51449284c851ce1ec86103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69411486da51449284c851ce1ec86103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69411486da51449284c851ce1ec86103.jpg", "file_size": 40571, "is_delete": false, "file_type": 1, "original_file_name": "8003#黑色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69411486da51449284c851ce1ec86103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69411486da51449284c851ce1ec86103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69411486da51449284c851ce1ec86103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69411486da51449284c851ce1ec86103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69411486da51449284c851ce1ec86103.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFvlGWTbf20LkV_I7Ku9G-RAfY0=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.133957+00 2025-12-09 10:14:40.133961+00 3292 DH007FWE#VS-D3 SPMX-20240815298422 \N \N \N 1 \N [{"file_id": "f0c1b22b-2686-436b-b4b8-082898a48e03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a95fb221a7844c62a6ab710859c102d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a95fb221a7844c62a6ab710859c102d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a95fb221a7844c62a6ab710859c102d7.jpg", "file_size": 26985, "is_delete": false, "file_type": 1, "original_file_name": "DH007FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95fb221a7844c62a6ab710859c102d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95fb221a7844c62a6ab710859c102d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95fb221a7844c62a6ab710859c102d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a95fb221a7844c62a6ab710859c102d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a95fb221a7844c62a6ab710859c102d7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBVMYVQ7zbM8bKcXW2qewdTBiik=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.134984+00 2025-12-09 10:14:40.134988+00 3293 FHPKDK-批布076-4 SPMX-20240815298416 \N \N \N 1 \N [{"file_id": "9aae913d-0354-401c-91fa-4f62fcf29db5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da51af4818cd46f8bc40d52d8ea9dad5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da51af4818cd46f8bc40d52d8ea9dad5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da51af4818cd46f8bc40d52d8ea9dad5.jpg", "file_size": 69216, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布076-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da51af4818cd46f8bc40d52d8ea9dad5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da51af4818cd46f8bc40d52d8ea9dad5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da51af4818cd46f8bc40d52d8ea9dad5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da51af4818cd46f8bc40d52d8ea9dad5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da51af4818cd46f8bc40d52d8ea9dad5.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjNbUj7qzuV3UX9akpejeK99dw0=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.136012+00 2025-12-09 10:14:40.136016+00 3294 JS0104-A9#粉色 SPMX-20240815298418 \N \N \N 1 \N [{"file_id": "f36a92a7-e986-45a4-8560-438664959eac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f3395c84a8e44dc942e41a2dce6e410.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f3395c84a8e44dc942e41a2dce6e410.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f3395c84a8e44dc942e41a2dce6e410.jpg", "file_size": 11552, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A9#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3395c84a8e44dc942e41a2dce6e410.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3395c84a8e44dc942e41a2dce6e410.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3395c84a8e44dc942e41a2dce6e410.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f3395c84a8e44dc942e41a2dce6e410.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f3395c84a8e44dc942e41a2dce6e410.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qz1EmHKvzl7dF9mFgm2vFGQDz60=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.137027+00 2025-12-09 10:14:40.137031+00 3295 0001-22FWE#VS-D3 SPMX-20240815298421 \N \N \N 1 \N [{"file_id": "ab04d631-cfff-4892-b772-903e7a00ae1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f7a825af5e244b09b24b0e332386644.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f7a825af5e244b09b24b0e332386644.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f7a825af5e244b09b24b0e332386644.jpg", "file_size": 17998, "is_delete": false, "file_type": 1, "original_file_name": "0001-22FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7a825af5e244b09b24b0e332386644.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7a825af5e244b09b24b0e332386644.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7a825af5e244b09b24b0e332386644.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f7a825af5e244b09b24b0e332386644.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f7a825af5e244b09b24b0e332386644.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKn8hmd-j6RGViOnnQPqjVwy92o=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.138049+00 2025-12-09 10:14:40.138053+00 3296 HSH007FW#蓝VS-D3 SPMX-20240815298424 \N \N \N 1 \N [{"file_id": "3851e020-9c0a-4656-a31b-845333b7ff49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87dcd6528955400cab08127af2a39e83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87dcd6528955400cab08127af2a39e83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87dcd6528955400cab08127af2a39e83.jpg", "file_size": 16115, "is_delete": false, "file_type": 1, "original_file_name": "HSH007FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dcd6528955400cab08127af2a39e83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dcd6528955400cab08127af2a39e83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dcd6528955400cab08127af2a39e83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87dcd6528955400cab08127af2a39e83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87dcd6528955400cab08127af2a39e83.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRtkHKvVZPzBvoCRQfA5a6acjCc=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.139086+00 2025-12-09 10:14:40.139089+00 3297 22C02-9-63#38码 SPMX-20240815298409 \N \N \N 1 \N [{"file_id": "129d3328-f359-4938-82cf-0a9490edc9ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b327d2e3a18473780354da69ad70596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b327d2e3a18473780354da69ad70596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b327d2e3a18473780354da69ad70596.jpg", "file_size": 23252, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-63#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b327d2e3a18473780354da69ad70596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b327d2e3a18473780354da69ad70596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b327d2e3a18473780354da69ad70596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b327d2e3a18473780354da69ad70596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b327d2e3a18473780354da69ad70596.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2nK8JHv_brlEF8WrJnzCnQm7Zc=", "createTime": "2024-08-15 14:38:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.1401+00 2025-12-09 10:14:40.140104+00 3298 LZ1182#上身2号色 SPMX-20240815298414 \N \N \N 1 \N [{"file_id": "31734c02-f679-4d1c-a1b6-dd03d06930f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcc6d5ec2eb044628d856b17b2da2f83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcc6d5ec2eb044628d856b17b2da2f83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcc6d5ec2eb044628d856b17b2da2f83.jpg", "file_size": 11826, "is_delete": false, "file_type": 1, "original_file_name": "LZ1182#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc6d5ec2eb044628d856b17b2da2f83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc6d5ec2eb044628d856b17b2da2f83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc6d5ec2eb044628d856b17b2da2f83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcc6d5ec2eb044628d856b17b2da2f83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcc6d5ec2eb044628d856b17b2da2f83.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLrnb2LpyhZfIe2PRe8MRg6eq5I=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.141145+00 2025-12-09 10:14:40.141149+00 3299 HSH007FW#紫VS-D3 SPMX-20240815298413 \N \N \N 1 \N [{"file_id": "2175dcba-cc40-4dd2-91ce-c79b88712705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53ca2da6027947c6a721e15bc179682a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53ca2da6027947c6a721e15bc179682a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53ca2da6027947c6a721e15bc179682a.jpg", "file_size": 15238, "is_delete": false, "file_type": 1, "original_file_name": "HSH007FW#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ca2da6027947c6a721e15bc179682a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ca2da6027947c6a721e15bc179682a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ca2da6027947c6a721e15bc179682a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53ca2da6027947c6a721e15bc179682a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53ca2da6027947c6a721e15bc179682a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxI7n6VtSJl_qJ0oC6cB5J8RZ1M=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.142176+00 2025-12-09 10:14:40.14218+00 3300 22C02-9-64#30码 SPMX-20240815298417 \N \N \N 1 \N [{"file_id": "8fffeb9d-d829-4895-8e56-973f8b07274b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9264538592ab4ef9955811ba2b28f60b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9264538592ab4ef9955811ba2b28f60b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9264538592ab4ef9955811ba2b28f60b.jpg", "file_size": 20781, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9264538592ab4ef9955811ba2b28f60b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9264538592ab4ef9955811ba2b28f60b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9264538592ab4ef9955811ba2b28f60b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9264538592ab4ef9955811ba2b28f60b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9264538592ab4ef9955811ba2b28f60b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjpbkWTnPVpXj3l-phqcfeK4VdI=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.143194+00 2025-12-09 10:14:40.143198+00 3301 1040FWF#-5 SPMX-20240815298420 \N \N \N 1 \N [{"file_id": "63283916-3b2e-4305-8c7e-1233156d4b09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4178b51c72e24a438361aee6471dff9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4178b51c72e24a438361aee6471dff9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4178b51c72e24a438361aee6471dff9b.jpg", "file_size": 17185, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4178b51c72e24a438361aee6471dff9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4178b51c72e24a438361aee6471dff9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4178b51c72e24a438361aee6471dff9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4178b51c72e24a438361aee6471dff9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4178b51c72e24a438361aee6471dff9b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyNC-xuE56mZoUYXWQFU6WeZWsg=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.144197+00 2025-12-09 10:14:40.144201+00 3302 C218#黑色净色 SPMX-20240815298415 \N \N \N 1 \N [{"file_id": "7f40ff74-3dd6-425a-8325-745761600bb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a327c7cb000e4fdf9253f7834072db7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a327c7cb000e4fdf9253f7834072db7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a327c7cb000e4fdf9253f7834072db7b.jpg", "file_size": 8581, "is_delete": false, "file_type": 1, "original_file_name": "C218#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a327c7cb000e4fdf9253f7834072db7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a327c7cb000e4fdf9253f7834072db7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a327c7cb000e4fdf9253f7834072db7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a327c7cb000e4fdf9253f7834072db7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a327c7cb000e4fdf9253f7834072db7b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFDCnE1uHci27oBhYxDbyNzR7xw=", "createTime": "2024-08-15 14:38:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.145217+00 2025-12-09 10:14:40.14522+00 3303 1040FWF#墨绿 SPMX-20240815298428 \N \N \N 1 \N [{"file_id": "728fd5c8-095b-4ff2-8d3a-3d90a269a03e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11ef15948adb4c32babf52fbc586fb0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11ef15948adb4c32babf52fbc586fb0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11ef15948adb4c32babf52fbc586fb0c.jpg", "file_size": 19647, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef15948adb4c32babf52fbc586fb0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef15948adb4c32babf52fbc586fb0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef15948adb4c32babf52fbc586fb0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11ef15948adb4c32babf52fbc586fb0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11ef15948adb4c32babf52fbc586fb0c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9121HtB6Yq4vzNNlwk_BOzJo9M4=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.146222+00 2025-12-09 10:14:40.146226+00 3304 LZ1182#上身3号色 SPMX-20240815298425 \N \N \N 1 \N [{"file_id": "a15a4c3d-de12-4254-848b-efc0c53b6fd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34129ee7b2b84366a1abd6dc84a156fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34129ee7b2b84366a1abd6dc84a156fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34129ee7b2b84366a1abd6dc84a156fe.jpg", "file_size": 12353, "is_delete": false, "file_type": 1, "original_file_name": "LZ1182#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34129ee7b2b84366a1abd6dc84a156fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34129ee7b2b84366a1abd6dc84a156fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34129ee7b2b84366a1abd6dc84a156fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34129ee7b2b84366a1abd6dc84a156fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34129ee7b2b84366a1abd6dc84a156fe.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTlmF5aQ7JQZ5lagPsWbsS3BH7s=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.147264+00 2025-12-09 10:14:40.147268+00 3305 LHJ2261#湖蓝 SPMX-20240815298431 \N \N \N 1 \N [{"file_id": "57600d2f-c366-4f8e-9acd-71ad2125c9e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "632c4b40b58342e38a72eec98fbf54f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "632c4b40b58342e38a72eec98fbf54f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "632c4b40b58342e38a72eec98fbf54f7.jpg", "file_size": 18319, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#湖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c4b40b58342e38a72eec98fbf54f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c4b40b58342e38a72eec98fbf54f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c4b40b58342e38a72eec98fbf54f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/632c4b40b58342e38a72eec98fbf54f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/632c4b40b58342e38a72eec98fbf54f7.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYyGZQpmdTkM7NbNaGYz8RjzZ5w=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.148261+00 2025-12-09 10:14:40.148265+00 3306 C218#黑色枣红143 SPMX-20240815298436 \N \N \N 1 \N [{"file_id": "2d6c5694-1e69-4107-ad75-4733a55972e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbe20034ec0943c8939538b93d39c180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbe20034ec0943c8939538b93d39c180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbe20034ec0943c8939538b93d39c180.jpg", "file_size": 11448, "is_delete": false, "file_type": 1, "original_file_name": "C218#黑色枣红143.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe20034ec0943c8939538b93d39c180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe20034ec0943c8939538b93d39c180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe20034ec0943c8939538b93d39c180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbe20034ec0943c8939538b93d39c180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbe20034ec0943c8939538b93d39c180.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7YZadJijXANj33Uxl-zqqICAps=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.149271+00 2025-12-09 10:14:40.149275+00 3307 0001-22FWF#V5曲线 SPMX-20240815298434 \N \N \N 1 \N [{"file_id": "cb88d836-31b4-4617-bb9f-e63cb2490c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa49f0bf2a32463eb306ab55baee0753.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa49f0bf2a32463eb306ab55baee0753.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa49f0bf2a32463eb306ab55baee0753.jpg", "file_size": 21041, "is_delete": false, "file_type": 1, "original_file_name": "0001-22FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa49f0bf2a32463eb306ab55baee0753.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa49f0bf2a32463eb306ab55baee0753.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa49f0bf2a32463eb306ab55baee0753.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa49f0bf2a32463eb306ab55baee0753.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa49f0bf2a32463eb306ab55baee0753.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-_R2eIX2xyv31JnfXMEwYARQfY=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.150289+00 2025-12-09 10:14:40.150293+00 3308 22C02-9-64#32码 SPMX-20240815298430 \N \N \N 1 \N [{"file_id": "2d3454f3-987b-4142-a97c-1b5164aaeef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd34542c7d824a649b6a33f075a1e582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd34542c7d824a649b6a33f075a1e582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd34542c7d824a649b6a33f075a1e582.jpg", "file_size": 20478, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd34542c7d824a649b6a33f075a1e582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd34542c7d824a649b6a33f075a1e582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd34542c7d824a649b6a33f075a1e582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd34542c7d824a649b6a33f075a1e582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd34542c7d824a649b6a33f075a1e582.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Pknnvpw0uEQ02AFOnZLKYlnkXQ=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.151329+00 2025-12-09 10:14:40.151333+00 3309 80030#短袖子 SPMX-20240815298435 \N \N \N 1 \N [{"file_id": "a3f0a733-c3ef-4a53-99a8-4520aa94c1dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33e46767bb74492dac693568aef8109b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33e46767bb74492dac693568aef8109b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33e46767bb74492dac693568aef8109b.jpg", "file_size": 18416, "is_delete": false, "file_type": 1, "original_file_name": "80030#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e46767bb74492dac693568aef8109b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e46767bb74492dac693568aef8109b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e46767bb74492dac693568aef8109b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33e46767bb74492dac693568aef8109b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33e46767bb74492dac693568aef8109b.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0u6i9UFNV62783rMCv4iC3wSIR8=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.152348+00 2025-12-09 10:14:40.152352+00 3310 JS0104-A9#紫色 SPMX-20240815298429 \N \N \N 1 \N [{"file_id": "dcf87b4a-50d7-42ab-90f1-fb0fd73d31cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39362a69e10246c1aa5b121c6299216a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39362a69e10246c1aa5b121c6299216a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39362a69e10246c1aa5b121c6299216a.jpg", "file_size": 13195, "is_delete": false, "file_type": 1, "original_file_name": "JS0104-A9#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39362a69e10246c1aa5b121c6299216a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39362a69e10246c1aa5b121c6299216a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39362a69e10246c1aa5b121c6299216a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39362a69e10246c1aa5b121c6299216a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39362a69e10246c1aa5b121c6299216a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tu5OoJZS6g8owFVpV5HFyxDmT6w=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.153358+00 2025-12-09 10:14:40.153362+00 3311 HSH007FWE#VS-D3 SPMX-20240815298432 \N \N \N 1 \N [{"file_id": "ea11c2ea-32e2-44dd-a0df-684a7173241e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f3ea4fd56144a68c476426a4a9488c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f3ea4fd56144a68c476426a4a9488c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f3ea4fd56144a68c476426a4a9488c.jpg", "file_size": 11809, "is_delete": false, "file_type": 1, "original_file_name": "HSH007FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f3ea4fd56144a68c476426a4a9488c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f3ea4fd56144a68c476426a4a9488c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f3ea4fd56144a68c476426a4a9488c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f3ea4fd56144a68c476426a4a9488c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f3ea4fd56144a68c476426a4a9488c.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yTx5kJR4lcQ32dtcnbSExi_me8=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.154363+00 2025-12-09 10:14:40.154367+00 3312 DH008FW#VS-D3 SPMX-20240815298433 \N \N \N 1 \N [{"file_id": "df89d84a-c680-4c15-8681-2d8eb6863f39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a71e7a772e94efbbe92c6b78105ebdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a71e7a772e94efbbe92c6b78105ebdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a71e7a772e94efbbe92c6b78105ebdc.jpg", "file_size": 19327, "is_delete": false, "file_type": 1, "original_file_name": "DH008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a71e7a772e94efbbe92c6b78105ebdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a71e7a772e94efbbe92c6b78105ebdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a71e7a772e94efbbe92c6b78105ebdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a71e7a772e94efbbe92c6b78105ebdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a71e7a772e94efbbe92c6b78105ebdc.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQPCZtYzWZdjx8dhsi9NWTalI6U=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.155398+00 2025-12-09 10:14:40.155402+00 3313 C218#黑色枣红 SPMX-20240815298426 \N \N \N 1 \N [{"file_id": "a09e42c5-1b9b-4442-bbec-460f79b2c272", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1ed0cebaaab41398e5dc71344e76dbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1ed0cebaaab41398e5dc71344e76dbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1ed0cebaaab41398e5dc71344e76dbb.jpg", "file_size": 11523, "is_delete": false, "file_type": 1, "original_file_name": "C218#黑色枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ed0cebaaab41398e5dc71344e76dbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ed0cebaaab41398e5dc71344e76dbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ed0cebaaab41398e5dc71344e76dbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1ed0cebaaab41398e5dc71344e76dbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1ed0cebaaab41398e5dc71344e76dbb.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqI6INiZVXekNuv-i3O0qXQskxg=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.156419+00 2025-12-09 10:14:40.156423+00 3314 FHPKDK-批布076-5 SPMX-20240815298427 \N \N \N 1 \N [{"file_id": "a833cced-62f8-4529-af81-c442d0d7a8a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "294797c2ba2e489b87190218496316ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "294797c2ba2e489b87190218496316ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "294797c2ba2e489b87190218496316ef.jpg", "file_size": 76910, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布076-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294797c2ba2e489b87190218496316ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294797c2ba2e489b87190218496316ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294797c2ba2e489b87190218496316ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/294797c2ba2e489b87190218496316ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/294797c2ba2e489b87190218496316ef.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DxizqdJPyl-MVVdBYd4a6e6vkI=", "createTime": "2024-08-15 14:38:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.15745+00 2025-12-09 10:14:40.157454+00 3315 LZ1182#上身4号色 SPMX-20240815298438 \N \N \N 1 \N [{"file_id": "9700a527-0e2f-423e-9530-2847453943a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fae960a6aaae47fea95310d56fd4b9da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fae960a6aaae47fea95310d56fd4b9da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fae960a6aaae47fea95310d56fd4b9da.jpg", "file_size": 11499, "is_delete": false, "file_type": 1, "original_file_name": "LZ1182#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae960a6aaae47fea95310d56fd4b9da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae960a6aaae47fea95310d56fd4b9da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae960a6aaae47fea95310d56fd4b9da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fae960a6aaae47fea95310d56fd4b9da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fae960a6aaae47fea95310d56fd4b9da.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pg_OBGzJf6KbeJKQzF8LG717kWY=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.15848+00 2025-12-09 10:14:40.158483+00 3316 FHPKDK-批布077-1 SPMX-20240815298439 \N \N \N 1 \N [{"file_id": "db0c2d9b-1afd-41b8-bc8b-3f88be38e5a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg", "file_size": 52394, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布077-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41ae1770dd4a4e7d83c7e3ce50b3d37d.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iodfD3XvkzAFMn16o8qR5bv9WJY=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.159523+00 2025-12-09 10:14:40.159527+00 3317 C219#143#枣红 SPMX-20240815298447 \N \N \N 1 \N [{"file_id": "e63dda80-1b36-4fab-b167-68d642c8793e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90a706884e87442799fe7ba590ec845f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90a706884e87442799fe7ba590ec845f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90a706884e87442799fe7ba590ec845f.jpg", "file_size": 14745, "is_delete": false, "file_type": 1, "original_file_name": "C219#143#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a706884e87442799fe7ba590ec845f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a706884e87442799fe7ba590ec845f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a706884e87442799fe7ba590ec845f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90a706884e87442799fe7ba590ec845f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90a706884e87442799fe7ba590ec845f.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DF9_uEgqGQKx6ykkSP5E7tq0d7w=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.160527+00 2025-12-09 10:14:40.16053+00 3318 JS010FWE#VS-D3 SPMX-20240815298450 \N \N \N 1 \N [{"file_id": "853b8692-26a5-4c92-bf04-6a0edf959f97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e20542b7df84f6dab66acaf98b7277a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e20542b7df84f6dab66acaf98b7277a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e20542b7df84f6dab66acaf98b7277a.jpg", "file_size": 11902, "is_delete": false, "file_type": 1, "original_file_name": "JS010FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20542b7df84f6dab66acaf98b7277a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20542b7df84f6dab66acaf98b7277a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20542b7df84f6dab66acaf98b7277a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e20542b7df84f6dab66acaf98b7277a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e20542b7df84f6dab66acaf98b7277a.jpg?e=1765361679&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gZ8qnyQIeEAknIsyx1IX3IPLyo=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.838631+00 2025-12-09 10:14:40.838641+00 3319 LHJ2261#湖蓝围巾 SPMX-20240815298442 \N \N \N 1 \N [{"file_id": "493e2992-b6c2-4b2a-9274-973880f13635", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e81c4fc2291742d6856ca72e4d69435f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e81c4fc2291742d6856ca72e4d69435f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e81c4fc2291742d6856ca72e4d69435f.jpg", "file_size": 22307, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#湖蓝围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81c4fc2291742d6856ca72e4d69435f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81c4fc2291742d6856ca72e4d69435f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81c4fc2291742d6856ca72e4d69435f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e81c4fc2291742d6856ca72e4d69435f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e81c4fc2291742d6856ca72e4d69435f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-5RR9mSEqzOp1IzlboIY_ptpdQ=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.840054+00 2025-12-09 10:14:40.840059+00 3320 1040FWF#墨绿L SPMX-20240815298448 \N \N \N 1 \N [{"file_id": "fcad24c4-f884-482e-92d7-7638d3e5a6c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5254cdc9d1c24d46b753fb34d9cd0924.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5254cdc9d1c24d46b753fb34d9cd0924.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5254cdc9d1c24d46b753fb34d9cd0924.jpg", "file_size": 16227, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5254cdc9d1c24d46b753fb34d9cd0924.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5254cdc9d1c24d46b753fb34d9cd0924.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5254cdc9d1c24d46b753fb34d9cd0924.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5254cdc9d1c24d46b753fb34d9cd0924.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5254cdc9d1c24d46b753fb34d9cd0924.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyjWVXn5pg-kifGq8tXMLjHIf0Q=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.841279+00 2025-12-09 10:14:40.841284+00 3321 JS010FW#VS-D3 SPMX-20240815298440 \N \N \N 1 \N [{"file_id": "d35138ed-5896-4f26-b1c1-124ceddfe6a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee8a1a984d974ac0b1f7c9d8e858f701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee8a1a984d974ac0b1f7c9d8e858f701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee8a1a984d974ac0b1f7c9d8e858f701.jpg", "file_size": 16205, "is_delete": false, "file_type": 1, "original_file_name": "JS010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8a1a984d974ac0b1f7c9d8e858f701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8a1a984d974ac0b1f7c9d8e858f701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8a1a984d974ac0b1f7c9d8e858f701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee8a1a984d974ac0b1f7c9d8e858f701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee8a1a984d974ac0b1f7c9d8e858f701.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZ_hLuGjOi6g8oE_EDO0Fca3uJQ=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.842339+00 2025-12-09 10:14:40.842343+00 3322 HSH008#D SPMX-20240815298443 \N \N \N 1 \N [{"file_id": "01f29bdc-4a94-410e-b625-dbc690000410", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "580338c86185491e865fbc6cb08cf7df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "580338c86185491e865fbc6cb08cf7df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "580338c86185491e865fbc6cb08cf7df.jpg", "file_size": 26278, "is_delete": false, "file_type": 1, "original_file_name": "HSH008#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580338c86185491e865fbc6cb08cf7df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580338c86185491e865fbc6cb08cf7df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580338c86185491e865fbc6cb08cf7df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/580338c86185491e865fbc6cb08cf7df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/580338c86185491e865fbc6cb08cf7df.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TL5831gQveaS_PHp1KIAEM1KQM=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.843386+00 2025-12-09 10:14:40.84339+00 3323 22C02-9-64#36码 SPMX-20240815298451 \N \N \N 1 \N [{"file_id": "bd68c4f5-69cd-4ce3-90ef-50d592c06ddb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2fbd40d2f84eb69cfe4527698097b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2fbd40d2f84eb69cfe4527698097b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2fbd40d2f84eb69cfe4527698097b8.jpg", "file_size": 20021, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2fbd40d2f84eb69cfe4527698097b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2fbd40d2f84eb69cfe4527698097b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2fbd40d2f84eb69cfe4527698097b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2fbd40d2f84eb69cfe4527698097b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2fbd40d2f84eb69cfe4527698097b8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyU9ELAuwMJNnYM9Wlt-xVMHVlk=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.844447+00 2025-12-09 10:14:40.844451+00 3324 22C02-9-64#34码 SPMX-20240815298441 \N \N \N 1 \N [{"file_id": "3c114656-4c31-4b98-afbd-ba3ee3c59e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "088ea91e22cd49f89caa2eb8a7735a29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "088ea91e22cd49f89caa2eb8a7735a29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "088ea91e22cd49f89caa2eb8a7735a29.jpg", "file_size": 20017, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088ea91e22cd49f89caa2eb8a7735a29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088ea91e22cd49f89caa2eb8a7735a29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088ea91e22cd49f89caa2eb8a7735a29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/088ea91e22cd49f89caa2eb8a7735a29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/088ea91e22cd49f89caa2eb8a7735a29.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HdWMsNJyw89FFTfi4fyE-ViUEUM=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.845999+00 2025-12-09 10:14:40.846002+00 3325 DH008FWE#VS-D3 SPMX-20240815298445 \N \N \N 1 \N [{"file_id": "d7c975ad-9699-493c-aa30-5e484831de11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7226d2e347ea49b7a44a569c046b7950.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7226d2e347ea49b7a44a569c046b7950.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7226d2e347ea49b7a44a569c046b7950.jpg", "file_size": 18274, "is_delete": false, "file_type": 1, "original_file_name": "DH008FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7226d2e347ea49b7a44a569c046b7950.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7226d2e347ea49b7a44a569c046b7950.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7226d2e347ea49b7a44a569c046b7950.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7226d2e347ea49b7a44a569c046b7950.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7226d2e347ea49b7a44a569c046b7950.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkuJIkmpTyUxKjAp2PT5_ozY6Fo=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.847059+00 2025-12-09 10:14:40.847063+00 3326 LZ1183#上身1号色 SPMX-20240815298449 \N \N \N 1 \N [{"file_id": "f41e4ad6-2dc6-4ff8-8a98-7dfabdedc0f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79b24dd6d8314f0e8d07448fc7e61121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79b24dd6d8314f0e8d07448fc7e61121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79b24dd6d8314f0e8d07448fc7e61121.jpg", "file_size": 10875, "is_delete": false, "file_type": 1, "original_file_name": "LZ1183#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b24dd6d8314f0e8d07448fc7e61121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b24dd6d8314f0e8d07448fc7e61121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b24dd6d8314f0e8d07448fc7e61121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79b24dd6d8314f0e8d07448fc7e61121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79b24dd6d8314f0e8d07448fc7e61121.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARRtONrytaJnCFsOzyBqK9kxG30=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.848082+00 2025-12-09 10:14:40.848086+00 3327 0001-23FWE#VS-D3 SPMX-20240815298444 \N \N \N 1 \N [{"file_id": "725e0d1d-c585-42af-9c55-b7ee6b8b97e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38bb996a6d734024812a9b4c5f739f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38bb996a6d734024812a9b4c5f739f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38bb996a6d734024812a9b4c5f739f69.jpg", "file_size": 17681, "is_delete": false, "file_type": 1, "original_file_name": "0001-23FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb996a6d734024812a9b4c5f739f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb996a6d734024812a9b4c5f739f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb996a6d734024812a9b4c5f739f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38bb996a6d734024812a9b4c5f739f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38bb996a6d734024812a9b4c5f739f69.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugkapz0gZAvk3X24z4PHYyS_QIA=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.849109+00 2025-12-09 10:14:40.849113+00 3328 80031#短袖上衣 SPMX-20240815298446 \N \N \N 1 \N [{"file_id": "e220a0d3-e321-44fe-9a21-8467dc90bf7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5c34301eeef4ec4910d894f36cd1ada.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5c34301eeef4ec4910d894f36cd1ada.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5c34301eeef4ec4910d894f36cd1ada.jpg", "file_size": 21994, "is_delete": false, "file_type": 1, "original_file_name": "80031#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c34301eeef4ec4910d894f36cd1ada.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c34301eeef4ec4910d894f36cd1ada.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c34301eeef4ec4910d894f36cd1ada.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5c34301eeef4ec4910d894f36cd1ada.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5c34301eeef4ec4910d894f36cd1ada.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4Du96tqq9Q4CfYUitRJCAsJbhI=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.850138+00 2025-12-09 10:14:40.850142+00 3329 1040FWF#墨绿2XL SPMX-20240815298437 \N \N \N 1 \N [{"file_id": "9f231455-1ee0-4946-9c63-5d0476a6acd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea7b47d7f3f6427f860eb05121847c80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea7b47d7f3f6427f860eb05121847c80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea7b47d7f3f6427f860eb05121847c80.jpg", "file_size": 16616, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#墨绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7b47d7f3f6427f860eb05121847c80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7b47d7f3f6427f860eb05121847c80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7b47d7f3f6427f860eb05121847c80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea7b47d7f3f6427f860eb05121847c80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea7b47d7f3f6427f860eb05121847c80.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edg5FUNtk_trHRBuqY9WvbPOrhM=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.851202+00 2025-12-09 10:14:40.851206+00 3330 LZ1183#上身2号色 SPMX-20240815298460 \N \N \N 1 \N [{"file_id": "71d9da32-7a64-488e-a51f-081410ee89e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f87a52b3186e4d6f89049065dc01b276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f87a52b3186e4d6f89049065dc01b276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f87a52b3186e4d6f89049065dc01b276.jpg", "file_size": 10751, "is_delete": false, "file_type": 1, "original_file_name": "LZ1183#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87a52b3186e4d6f89049065dc01b276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87a52b3186e4d6f89049065dc01b276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87a52b3186e4d6f89049065dc01b276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f87a52b3186e4d6f89049065dc01b276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f87a52b3186e4d6f89049065dc01b276.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQMUP8arDckgq3mSpvjc8p-r9eo=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.852227+00 2025-12-09 10:14:40.852231+00 3331 22C02-9-64#38码 SPMX-20240815298461 \N \N \N 1 \N [{"file_id": "5aae48f6-737b-44b5-abc6-97b044fe6efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c886cbe0d644825b6ac8c785cb6f7db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c886cbe0d644825b6ac8c785cb6f7db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c886cbe0d644825b6ac8c785cb6f7db.jpg", "file_size": 19401, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c886cbe0d644825b6ac8c785cb6f7db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c886cbe0d644825b6ac8c785cb6f7db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c886cbe0d644825b6ac8c785cb6f7db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c886cbe0d644825b6ac8c785cb6f7db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c886cbe0d644825b6ac8c785cb6f7db.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6DbaMR8YpX2pjU6OtzIEiwfMJA=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.853251+00 2025-12-09 10:14:40.853255+00 3332 LHJ2261#紫色围巾 SPMX-20240815298462 \N \N \N 1 \N [{"file_id": "2e2989c0-ee75-4c12-a550-1831ed2ab79d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "055bd7b6d14f4632b8e82b8c4c2b5364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "055bd7b6d14f4632b8e82b8c4c2b5364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "055bd7b6d14f4632b8e82b8c4c2b5364.jpg", "file_size": 23344, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#紫色围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055bd7b6d14f4632b8e82b8c4c2b5364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055bd7b6d14f4632b8e82b8c4c2b5364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055bd7b6d14f4632b8e82b8c4c2b5364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/055bd7b6d14f4632b8e82b8c4c2b5364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/055bd7b6d14f4632b8e82b8c4c2b5364.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtDRyOxnRmD_pJedj64xvT92G7o=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.854873+00 2025-12-09 10:14:40.854881+00 3333 C219#50#土黄 SPMX-20240815298458 \N \N \N 1 \N [{"file_id": "5f001d1e-76ce-4615-b06a-b9dd4e97fd18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d5911a174fc486e93cc32f70f246e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d5911a174fc486e93cc32f70f246e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d5911a174fc486e93cc32f70f246e8a.jpg", "file_size": 14955, "is_delete": false, "file_type": 1, "original_file_name": "C219#50#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5911a174fc486e93cc32f70f246e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5911a174fc486e93cc32f70f246e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5911a174fc486e93cc32f70f246e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d5911a174fc486e93cc32f70f246e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d5911a174fc486e93cc32f70f246e8a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4mv-ItyiFhqsayewUwN4V6ETcw=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.856982+00 2025-12-09 10:14:40.856989+00 3334 HSH008FW#粉VS-D3 SPMX-20240815298464 \N \N \N 1 \N [{"file_id": "c27d1bd5-588e-423f-9142-e15c3d1a4c1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e17ecedabd244ad985ad6527b1334ef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e17ecedabd244ad985ad6527b1334ef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e17ecedabd244ad985ad6527b1334ef7.jpg", "file_size": 17991, "is_delete": false, "file_type": 1, "original_file_name": "HSH008FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ecedabd244ad985ad6527b1334ef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ecedabd244ad985ad6527b1334ef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ecedabd244ad985ad6527b1334ef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e17ecedabd244ad985ad6527b1334ef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e17ecedabd244ad985ad6527b1334ef7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pkl6CorPP-YiGTpnRI5ADB8SG-c=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.85869+00 2025-12-09 10:14:40.858697+00 3335 0001-24FWE#VS-D3 SPMX-20240815298465 \N \N \N 1 \N [{"file_id": "498cfb36-7d91-4154-823b-0ade730fec59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "523596ead84c48f99b9dd4e6fbc5768c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "523596ead84c48f99b9dd4e6fbc5768c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "523596ead84c48f99b9dd4e6fbc5768c.jpg", "file_size": 22509, "is_delete": false, "file_type": 1, "original_file_name": "0001-24FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523596ead84c48f99b9dd4e6fbc5768c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523596ead84c48f99b9dd4e6fbc5768c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523596ead84c48f99b9dd4e6fbc5768c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/523596ead84c48f99b9dd4e6fbc5768c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/523596ead84c48f99b9dd4e6fbc5768c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3sWQ_uJR96tauyQYH_TbiTy_U4=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.860324+00 2025-12-09 10:14:40.86033+00 3336 FHPKDK-批布077-2 SPMX-20240815298455 \N \N \N 1 \N [{"file_id": "f205b8f3-c459-411f-aa96-1f8620953d2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e6ec427f154d8b891bfec949122d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e6ec427f154d8b891bfec949122d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e6ec427f154d8b891bfec949122d86.jpg", "file_size": 52099, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布077-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e6ec427f154d8b891bfec949122d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e6ec427f154d8b891bfec949122d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e6ec427f154d8b891bfec949122d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e6ec427f154d8b891bfec949122d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e6ec427f154d8b891bfec949122d86.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBjLOB53hfpqfkeOCQZ_XcoQwWk=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.8621+00 2025-12-09 10:14:40.862106+00 3337 80031#短袖子 SPMX-20240815298457 \N \N \N 1 \N [{"file_id": "d32fd060-6bdd-4df5-a9a2-9f67650c4f11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8acd35e82f144b8eb5f431dc1660c4a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8acd35e82f144b8eb5f431dc1660c4a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8acd35e82f144b8eb5f431dc1660c4a1.jpg", "file_size": 18948, "is_delete": false, "file_type": 1, "original_file_name": "80031#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd35e82f144b8eb5f431dc1660c4a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd35e82f144b8eb5f431dc1660c4a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd35e82f144b8eb5f431dc1660c4a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8acd35e82f144b8eb5f431dc1660c4a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8acd35e82f144b8eb5f431dc1660c4a1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1D40zelGOxP4nrH4pD0LTeJm7c=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.863646+00 2025-12-09 10:14:40.863652+00 3338 1040FWF#墨绿XL SPMX-20240815298459 \N \N \N 1 \N [{"file_id": "0c618db3-6948-415e-8021-2eecb72c2e63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d272cf7c01754e16be002d2cb4ce15e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d272cf7c01754e16be002d2cb4ce15e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d272cf7c01754e16be002d2cb4ce15e1.jpg", "file_size": 16854, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d272cf7c01754e16be002d2cb4ce15e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d272cf7c01754e16be002d2cb4ce15e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d272cf7c01754e16be002d2cb4ce15e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d272cf7c01754e16be002d2cb4ce15e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d272cf7c01754e16be002d2cb4ce15e1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q4hbTyfFH30tYk4IIEs1Oca80w0=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.865173+00 2025-12-09 10:14:40.865178+00 3339 JS011# SPMX-20240815298463 \N \N \N 1 \N [{"file_id": "f5f90d3b-fadc-4cc5-be62-b3a4ef857e6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36ed6369c29f407fa7da2877ddd7c7a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36ed6369c29f407fa7da2877ddd7c7a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36ed6369c29f407fa7da2877ddd7c7a0.jpg", "file_size": 12445, "is_delete": false, "file_type": 1, "original_file_name": "JS011#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36ed6369c29f407fa7da2877ddd7c7a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36ed6369c29f407fa7da2877ddd7c7a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36ed6369c29f407fa7da2877ddd7c7a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36ed6369c29f407fa7da2877ddd7c7a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36ed6369c29f407fa7da2877ddd7c7a0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pu7jnxA0XYRjbXuBT1VXFdvy5ts=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.866685+00 2025-12-09 10:14:40.866691+00 3340 LHJ2261#紫色 SPMX-20240815298452 \N \N \N 1 \N [{"file_id": "2c7d0268-5f80-4e88-b46e-6bd33e24cf1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbe2979eca774a4bac7c8da81a86586c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbe2979eca774a4bac7c8da81a86586c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbe2979eca774a4bac7c8da81a86586c.jpg", "file_size": 19054, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe2979eca774a4bac7c8da81a86586c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe2979eca774a4bac7c8da81a86586c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe2979eca774a4bac7c8da81a86586c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbe2979eca774a4bac7c8da81a86586c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbe2979eca774a4bac7c8da81a86586c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DkMVBMsfJGRGX6GEtz_HI-50mCY=", "createTime": "2024-08-15 14:38:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.868213+00 2025-12-09 10:14:40.868219+00 3341 HSH008#VS-D3 SPMX-20240815298454 \N \N \N 1 \N [{"file_id": "cb67b6ce-8f2d-487f-831d-eff409496d23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f5dda84c36a48038eb1af388a49e839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f5dda84c36a48038eb1af388a49e839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f5dda84c36a48038eb1af388a49e839.jpg", "file_size": 22867, "is_delete": false, "file_type": 1, "original_file_name": "HSH008#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5dda84c36a48038eb1af388a49e839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5dda84c36a48038eb1af388a49e839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5dda84c36a48038eb1af388a49e839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f5dda84c36a48038eb1af388a49e839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f5dda84c36a48038eb1af388a49e839.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfJP4xFUopIHKItlui3O5jO7a2Y=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.869731+00 2025-12-09 10:14:40.869737+00 3342 FHPKDK-批布077-3 SPMX-20240815298466 \N \N \N 1 \N [{"file_id": "0d78c82d-2c8c-4c1b-b1b1-cc069001914f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d0c8da46d204e0f945cdf5c1ce1db2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d0c8da46d204e0f945cdf5c1ce1db2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d0c8da46d204e0f945cdf5c1ce1db2b.jpg", "file_size": 53676, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布077-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0c8da46d204e0f945cdf5c1ce1db2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0c8da46d204e0f945cdf5c1ce1db2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0c8da46d204e0f945cdf5c1ce1db2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d0c8da46d204e0f945cdf5c1ce1db2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d0c8da46d204e0f945cdf5c1ce1db2b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdFszuRS-DiVspGOQg3hXXbUjfk=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.87128+00 2025-12-09 10:14:40.871286+00 3343 0001-23FWF#V5曲线 SPMX-20240815298453 \N \N \N 1 \N [{"file_id": "275c975c-eb1b-4941-bb68-abd944dd0946", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d29062bd713040489192f44f9a7b04d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d29062bd713040489192f44f9a7b04d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d29062bd713040489192f44f9a7b04d0.jpg", "file_size": 24335, "is_delete": false, "file_type": 1, "original_file_name": "0001-23FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d29062bd713040489192f44f9a7b04d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d29062bd713040489192f44f9a7b04d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d29062bd713040489192f44f9a7b04d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d29062bd713040489192f44f9a7b04d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d29062bd713040489192f44f9a7b04d0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxiyb9CblWF-rN2ligyVCrzD6WY=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.872804+00 2025-12-09 10:14:40.872809+00 3344 DH009FW#VS-D3 SPMX-20240815298456 \N \N \N 1 \N [{"file_id": "4f8c6903-a93c-40de-9662-5ae768cd0423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "122d409c12db4c538675142304556c93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "122d409c12db4c538675142304556c93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "122d409c12db4c538675142304556c93.jpg", "file_size": 10968, "is_delete": false, "file_type": 1, "original_file_name": "DH009FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/122d409c12db4c538675142304556c93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/122d409c12db4c538675142304556c93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/122d409c12db4c538675142304556c93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/122d409c12db4c538675142304556c93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/122d409c12db4c538675142304556c93.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2BC4Rb1zzdZoKwVG-TcPtuGOJI=", "createTime": "2024-08-15 14:38:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.874329+00 2025-12-09 10:14:40.874334+00 3345 LZ1183#上身3号色 SPMX-20240815298475 \N \N \N 1 \N [{"file_id": "f81b3209-9306-4145-94d7-75c6f8d3e6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7256d28b22a240fdb9130a860d8a2956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7256d28b22a240fdb9130a860d8a2956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7256d28b22a240fdb9130a860d8a2956.jpg", "file_size": 10885, "is_delete": false, "file_type": 1, "original_file_name": "LZ1183#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7256d28b22a240fdb9130a860d8a2956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7256d28b22a240fdb9130a860d8a2956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7256d28b22a240fdb9130a860d8a2956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7256d28b22a240fdb9130a860d8a2956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7256d28b22a240fdb9130a860d8a2956.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkRgAzXSSbtYGwBVBTbUu79dk7o=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.875849+00 2025-12-09 10:14:40.875855+00 3346 LHJ2261#黄色 SPMX-20240815298474 \N \N \N 1 \N [{"file_id": "0b5864a9-dfb5-42c0-a859-f628611568c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b01c82ae590349db86234a3add519763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b01c82ae590349db86234a3add519763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b01c82ae590349db86234a3add519763.jpg", "file_size": 19484, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01c82ae590349db86234a3add519763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01c82ae590349db86234a3add519763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01c82ae590349db86234a3add519763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b01c82ae590349db86234a3add519763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b01c82ae590349db86234a3add519763.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHZEnOc7aixvubi-F2TmeMjkT7c=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.877148+00 2025-12-09 10:14:40.877153+00 3347 DH009FWE#VS-D3 SPMX-20240815298468 \N \N \N 1 \N [{"file_id": "809a532d-0a10-4bf8-bb1c-148ccf36e3fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c7a92ed6865478094a4ee8e68d9f1a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c7a92ed6865478094a4ee8e68d9f1a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c7a92ed6865478094a4ee8e68d9f1a8.jpg", "file_size": 26397, "is_delete": false, "file_type": 1, "original_file_name": "DH009FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c7a92ed6865478094a4ee8e68d9f1a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c7a92ed6865478094a4ee8e68d9f1a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c7a92ed6865478094a4ee8e68d9f1a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c7a92ed6865478094a4ee8e68d9f1a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c7a92ed6865478094a4ee8e68d9f1a8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLzD4gu9gl4c9NCYIcCIu2ly3nA=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.878216+00 2025-12-09 10:14:40.87822+00 3348 22C02-9-64#64码 SPMX-20240815298470 \N \N \N 1 \N [{"file_id": "73e4a4e8-de23-4d0a-8d7c-3d63c6f35616", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b856707b3654edeb80e637a0d7cdde9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b856707b3654edeb80e637a0d7cdde9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b856707b3654edeb80e637a0d7cdde9.jpg", "file_size": 19884, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-64#64码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b856707b3654edeb80e637a0d7cdde9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b856707b3654edeb80e637a0d7cdde9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b856707b3654edeb80e637a0d7cdde9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b856707b3654edeb80e637a0d7cdde9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b856707b3654edeb80e637a0d7cdde9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVuNk1g0N11lTFazahiSfmHvagU=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.879278+00 2025-12-09 10:14:40.879282+00 3349 0001-24FWF#V5曲线 SPMX-20240815298472 \N \N \N 1 \N [{"file_id": "fbd244f1-189b-44c6-90b8-cf1ef99d1c98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e268691be7104b82a2c421ec9a2666a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e268691be7104b82a2c421ec9a2666a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e268691be7104b82a2c421ec9a2666a9.jpg", "file_size": 24496, "is_delete": false, "file_type": 1, "original_file_name": "0001-24FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e268691be7104b82a2c421ec9a2666a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e268691be7104b82a2c421ec9a2666a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e268691be7104b82a2c421ec9a2666a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e268691be7104b82a2c421ec9a2666a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e268691be7104b82a2c421ec9a2666a9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jk43hKusiwR9Z_8WGXCkmHOWMQU=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.880317+00 2025-12-09 10:14:40.880321+00 3350 C219#绿色 SPMX-20240815298467 \N \N \N 1 \N [{"file_id": "648d3b2d-e10d-4af4-a350-55424280773b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "330ca23b4f644574b12c9f0744c7d3a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "330ca23b4f644574b12c9f0744c7d3a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "330ca23b4f644574b12c9f0744c7d3a0.jpg", "file_size": 15637, "is_delete": false, "file_type": 1, "original_file_name": "C219#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330ca23b4f644574b12c9f0744c7d3a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330ca23b4f644574b12c9f0744c7d3a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330ca23b4f644574b12c9f0744c7d3a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/330ca23b4f644574b12c9f0744c7d3a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/330ca23b4f644574b12c9f0744c7d3a0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuSvHull8WHN1suAOZvNfAFBhSQ=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.881371+00 2025-12-09 10:14:40.881375+00 3351 80032#短袖上衣 SPMX-20240815298469 \N \N \N 1 \N [{"file_id": "00fa6baf-f239-4385-848f-79f394e9fc60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334012d9e69841b4b814515aacdae874.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334012d9e69841b4b814515aacdae874.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334012d9e69841b4b814515aacdae874.jpg", "file_size": 21396, "is_delete": false, "file_type": 1, "original_file_name": "80032#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334012d9e69841b4b814515aacdae874.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334012d9e69841b4b814515aacdae874.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334012d9e69841b4b814515aacdae874.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334012d9e69841b4b814515aacdae874.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334012d9e69841b4b814515aacdae874.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywZBCtYMx4ieBt0qxMb9KdOP09o=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.882403+00 2025-12-09 10:14:40.882406+00 3352 1040FWF#灰色 SPMX-20240815298477 \N \N \N 1 \N [{"file_id": "539f24ef-8716-4b1c-a423-a7da6a6aaa90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a747918b70a4d77b8c881553e79a5aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a747918b70a4d77b8c881553e79a5aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a747918b70a4d77b8c881553e79a5aa.jpg", "file_size": 16386, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a747918b70a4d77b8c881553e79a5aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a747918b70a4d77b8c881553e79a5aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a747918b70a4d77b8c881553e79a5aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a747918b70a4d77b8c881553e79a5aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a747918b70a4d77b8c881553e79a5aa.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4GWUod_G2zGyUS3zY_pAjnLRH0=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.883445+00 2025-12-09 10:14:40.883449+00 3353 JS011#E SPMX-20240815298476 \N \N \N 1 \N [{"file_id": "7248080b-ef57-46f7-9998-efe11469ea95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8af01b23ce43f5901cbf45425080b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8af01b23ce43f5901cbf45425080b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8af01b23ce43f5901cbf45425080b3.jpg", "file_size": 11299, "is_delete": false, "file_type": 1, "original_file_name": "JS011#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8af01b23ce43f5901cbf45425080b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8af01b23ce43f5901cbf45425080b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8af01b23ce43f5901cbf45425080b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8af01b23ce43f5901cbf45425080b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8af01b23ce43f5901cbf45425080b3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzDZ6N8XVlK7nXY0uacayWjuMkE=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.884466+00 2025-12-09 10:14:40.88447+00 3354 HSH008FW#紫VS-D3 SPMX-20240815298471 \N \N \N 1 \N [{"file_id": "f9932c73-6bf5-4a18-9856-e3ff3d3e0d24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00a188c6dfe54810a51f8144b9419b0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00a188c6dfe54810a51f8144b9419b0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00a188c6dfe54810a51f8144b9419b0d.jpg", "file_size": 17670, "is_delete": false, "file_type": 1, "original_file_name": "HSH008FW#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a188c6dfe54810a51f8144b9419b0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a188c6dfe54810a51f8144b9419b0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a188c6dfe54810a51f8144b9419b0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00a188c6dfe54810a51f8144b9419b0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00a188c6dfe54810a51f8144b9419b0d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNZ8Dfm3XQgy2mteLfswH6qtbXk=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.885502+00 2025-12-09 10:14:40.885506+00 3355 FHPKDK-批布077-4 SPMX-20240815298473 \N \N \N 1 \N [{"file_id": "306cbfe0-0612-4c27-bc05-7253baeab32e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf0963cdad3c4f3292262cd3fd12929a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf0963cdad3c4f3292262cd3fd12929a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf0963cdad3c4f3292262cd3fd12929a.jpg", "file_size": 61233, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布077-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0963cdad3c4f3292262cd3fd12929a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0963cdad3c4f3292262cd3fd12929a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0963cdad3c4f3292262cd3fd12929a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf0963cdad3c4f3292262cd3fd12929a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf0963cdad3c4f3292262cd3fd12929a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cu38IH7K9cvNejeQ9lawPg-bEfw=", "createTime": "2024-08-15 14:38:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.886538+00 2025-12-09 10:14:40.886542+00 3356 80032#短袖子 SPMX-20240815298480 \N \N \N 1 \N [{"file_id": "9719a25e-c642-49c9-a4f1-c4c4301918ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dd5ab3c50f6484f956461a9ee10f64d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dd5ab3c50f6484f956461a9ee10f64d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dd5ab3c50f6484f956461a9ee10f64d.jpg", "file_size": 17248, "is_delete": false, "file_type": 1, "original_file_name": "80032#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dd5ab3c50f6484f956461a9ee10f64d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dd5ab3c50f6484f956461a9ee10f64d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dd5ab3c50f6484f956461a9ee10f64d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dd5ab3c50f6484f956461a9ee10f64d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dd5ab3c50f6484f956461a9ee10f64d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VYiZHJ5UsvjbQXFYYsAc5Sokjc=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.887587+00 2025-12-09 10:14:40.88759+00 3357 C219#黑色 SPMX-20240815298478 \N \N \N 1 \N [{"file_id": "c0fffe22-b961-4d82-9b8c-2b772bdeca23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a1373457b254c4b8bc58c2401b2fe19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a1373457b254c4b8bc58c2401b2fe19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a1373457b254c4b8bc58c2401b2fe19.jpg", "file_size": 16049, "is_delete": false, "file_type": 1, "original_file_name": "C219#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1373457b254c4b8bc58c2401b2fe19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1373457b254c4b8bc58c2401b2fe19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1373457b254c4b8bc58c2401b2fe19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a1373457b254c4b8bc58c2401b2fe19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a1373457b254c4b8bc58c2401b2fe19.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OmdgRUGr2Bsxiszr5CI4AVkM9E=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.888647+00 2025-12-09 10:14:40.888651+00 3358 DH010FW#VS-D3 SPMX-20240815298479 \N \N \N 1 \N [{"file_id": "ab23404a-c44d-4e02-8479-0966193d706e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "009909ccfedb47eb8a2c7ad8af53fd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "009909ccfedb47eb8a2c7ad8af53fd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "009909ccfedb47eb8a2c7ad8af53fd38.jpg", "file_size": 15922, "is_delete": false, "file_type": 1, "original_file_name": "DH010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009909ccfedb47eb8a2c7ad8af53fd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009909ccfedb47eb8a2c7ad8af53fd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009909ccfedb47eb8a2c7ad8af53fd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/009909ccfedb47eb8a2c7ad8af53fd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/009909ccfedb47eb8a2c7ad8af53fd38.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_OoXGki77ASD3pzmmumRc_aV4k=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.889673+00 2025-12-09 10:14:40.889677+00 3359 22C02-9-65#30码 SPMX-20240815298481 \N \N \N 1 \N [{"file_id": "50b85bd1-41c6-4182-9675-7d12bb380d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "378bdd1365d94adfb09cb86f885772ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "378bdd1365d94adfb09cb86f885772ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "378bdd1365d94adfb09cb86f885772ab.jpg", "file_size": 22821, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-65#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378bdd1365d94adfb09cb86f885772ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378bdd1365d94adfb09cb86f885772ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378bdd1365d94adfb09cb86f885772ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/378bdd1365d94adfb09cb86f885772ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/378bdd1365d94adfb09cb86f885772ab.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87GPjOaquatIutnOemxxKbGZmLA=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.890719+00 2025-12-09 10:14:40.890722+00 3360 HSH008FW#蓝VS-D3 SPMX-20240815298482 \N \N \N 1 \N [{"file_id": "c3ac4dcb-8593-4d9b-89e9-455008992b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81d164d3aeb94ad3bbaaab3b2936cc8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81d164d3aeb94ad3bbaaab3b2936cc8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81d164d3aeb94ad3bbaaab3b2936cc8f.jpg", "file_size": 17780, "is_delete": false, "file_type": 1, "original_file_name": "HSH008FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d164d3aeb94ad3bbaaab3b2936cc8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d164d3aeb94ad3bbaaab3b2936cc8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d164d3aeb94ad3bbaaab3b2936cc8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81d164d3aeb94ad3bbaaab3b2936cc8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81d164d3aeb94ad3bbaaab3b2936cc8f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1VgVhgYIax-C1snTJ5tfUo2_2TM=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.891737+00 2025-12-09 10:14:40.891741+00 3361 0001-25FWE#VS-D3 SPMX-20240815298483 \N \N \N 1 \N [{"file_id": "7df6e324-c863-4ffe-9a5d-72d6ca8ee8c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "953adafa39b44db0ba76541b336bfc22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "953adafa39b44db0ba76541b336bfc22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "953adafa39b44db0ba76541b336bfc22.jpg", "file_size": 16027, "is_delete": false, "file_type": 1, "original_file_name": "0001-25FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953adafa39b44db0ba76541b336bfc22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953adafa39b44db0ba76541b336bfc22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953adafa39b44db0ba76541b336bfc22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/953adafa39b44db0ba76541b336bfc22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/953adafa39b44db0ba76541b336bfc22.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHFs4loJcoZe-_jSIf68wkBJwyA=", "createTime": "2024-08-15 14:38:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.892782+00 2025-12-09 10:14:40.892786+00 3362 LHJ2261#黄色围巾 SPMX-20240815298484 \N \N \N 1 \N [{"file_id": "8e005c23-7583-4e1a-9370-209af69f59df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64d1144efec04926812151acbb959c34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64d1144efec04926812151acbb959c34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64d1144efec04926812151acbb959c34.jpg", "file_size": 24722, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2261#黄色围巾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d1144efec04926812151acbb959c34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d1144efec04926812151acbb959c34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d1144efec04926812151acbb959c34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64d1144efec04926812151acbb959c34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64d1144efec04926812151acbb959c34.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7sK0XC6DGZ7f0kcyHIkVawqXic=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.893807+00 2025-12-09 10:14:40.893811+00 3363 80033#短袖上衣 SPMX-20240815298487 \N \N \N 1 \N [{"file_id": "c8a8cc68-acfc-4d33-9090-9675b508683d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg", "file_size": 23313, "is_delete": false, "file_type": 1, "original_file_name": "80033#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eb71cb7a9b54fa9b496ae7dd0a9862e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3OZ55jNzZCuvTvVfVcEtB6fT38=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.894844+00 2025-12-09 10:14:40.894848+00 3364 0001-25FWF#V5曲线 SPMX-20240815298492 \N \N \N 1 \N [{"file_id": "88f0c1bd-e6e0-4a6b-aaad-5dd6c4f6cdd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c20c5dc676b48708da5c55c73d09007.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c20c5dc676b48708da5c55c73d09007.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c20c5dc676b48708da5c55c73d09007.jpg", "file_size": 11765, "is_delete": false, "file_type": 1, "original_file_name": "0001-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c20c5dc676b48708da5c55c73d09007.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c20c5dc676b48708da5c55c73d09007.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c20c5dc676b48708da5c55c73d09007.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c20c5dc676b48708da5c55c73d09007.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c20c5dc676b48708da5c55c73d09007.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EF_cGNr7b6w_PGC4xFGtXIX9rc8=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.895874+00 2025-12-09 10:14:40.895878+00 3365 DH010FWE#VS-D3 SPMX-20240815298490 \N \N \N 1 \N [{"file_id": "85d725fb-f939-4f0a-b08a-397d2f982fce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b146764c9c554bc88ffb955f9617932c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b146764c9c554bc88ffb955f9617932c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b146764c9c554bc88ffb955f9617932c.jpg", "file_size": 9280, "is_delete": false, "file_type": 1, "original_file_name": "DH010FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b146764c9c554bc88ffb955f9617932c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b146764c9c554bc88ffb955f9617932c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b146764c9c554bc88ffb955f9617932c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b146764c9c554bc88ffb955f9617932c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b146764c9c554bc88ffb955f9617932c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWucAoZynnJjvsbOZUNw8X5aS6w=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.896901+00 2025-12-09 10:14:40.896905+00 3366 1040FWF#灰色2XL SPMX-20240815298491 \N \N \N 1 \N [{"file_id": "2a24f51d-4bc1-400c-8d08-d3187f4c14d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39dc42a7220b4270b7c97ad5ce1ff95a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39dc42a7220b4270b7c97ad5ce1ff95a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39dc42a7220b4270b7c97ad5ce1ff95a.jpg", "file_size": 15075, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#灰色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39dc42a7220b4270b7c97ad5ce1ff95a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39dc42a7220b4270b7c97ad5ce1ff95a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39dc42a7220b4270b7c97ad5ce1ff95a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39dc42a7220b4270b7c97ad5ce1ff95a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39dc42a7220b4270b7c97ad5ce1ff95a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8u1Uc5u4WvFr41TtW1CyFeqCeY0=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.89793+00 2025-12-09 10:14:40.897934+00 3367 FHPKDK-批布077-5 SPMX-20240815298485 \N \N \N 1 \N [{"file_id": "052c2073-555b-4ea1-bce3-1957d346c85e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "537e76a387c446ed9a4d9565534dc05e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "537e76a387c446ed9a4d9565534dc05e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "537e76a387c446ed9a4d9565534dc05e.jpg", "file_size": 61224, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布077-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537e76a387c446ed9a4d9565534dc05e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537e76a387c446ed9a4d9565534dc05e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537e76a387c446ed9a4d9565534dc05e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/537e76a387c446ed9a4d9565534dc05e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/537e76a387c446ed9a4d9565534dc05e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfGsHc1RiOoiTkSt2EjdxOFL0XY=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.899015+00 2025-12-09 10:14:40.899019+00 3368 JS011FW#VS-D3 SPMX-20240815298486 \N \N \N 1 \N [{"file_id": "33a7caa8-a540-4dec-b6e3-c8cd5fa6a824", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8345b365649e4589aa5248274bf81f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8345b365649e4589aa5248274bf81f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8345b365649e4589aa5248274bf81f0e.jpg", "file_size": 12352, "is_delete": false, "file_type": 1, "original_file_name": "JS011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8345b365649e4589aa5248274bf81f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8345b365649e4589aa5248274bf81f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8345b365649e4589aa5248274bf81f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8345b365649e4589aa5248274bf81f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8345b365649e4589aa5248274bf81f0e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjpeM7kpLT2NYFEVwsvYZ0rDKFo=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.900054+00 2025-12-09 10:14:40.900058+00 3369 C22#WJC22 SPMX-20240815298493 \N \N \N 1 \N [{"file_id": "2cd0aa5e-9b2e-48a3-8403-1fc885734371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a987b9eb1d2f46708eb381bad68a23a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a987b9eb1d2f46708eb381bad68a23a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a987b9eb1d2f46708eb381bad68a23a9.jpg", "file_size": 17927, "is_delete": false, "file_type": 1, "original_file_name": "C22#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a987b9eb1d2f46708eb381bad68a23a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a987b9eb1d2f46708eb381bad68a23a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a987b9eb1d2f46708eb381bad68a23a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a987b9eb1d2f46708eb381bad68a23a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a987b9eb1d2f46708eb381bad68a23a9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9rN2w9fIFwf33wj7Zr3PZ-XXo8=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.901083+00 2025-12-09 10:14:40.901087+00 3370 HSH008FW#黄VS-D3 SPMX-20240815298494 \N \N \N 1 \N [{"file_id": "ac014cd1-2e18-44d4-8a7c-144ac6813447", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08830e78dcfc4f87abb02673aa623214.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08830e78dcfc4f87abb02673aa623214.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08830e78dcfc4f87abb02673aa623214.jpg", "file_size": 18378, "is_delete": false, "file_type": 1, "original_file_name": "HSH008FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08830e78dcfc4f87abb02673aa623214.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08830e78dcfc4f87abb02673aa623214.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08830e78dcfc4f87abb02673aa623214.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08830e78dcfc4f87abb02673aa623214.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08830e78dcfc4f87abb02673aa623214.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r816GV2hD3gjxvsAGGnPR4KFSYM=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.902131+00 2025-12-09 10:14:40.902135+00 3371 22C02-9-65#32码 SPMX-20240815298488 \N \N \N 1 \N [{"file_id": "edd51329-948e-4e4a-a210-d88eead45277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0549feb983884f9fab377d2018535597.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0549feb983884f9fab377d2018535597.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0549feb983884f9fab377d2018535597.jpg", "file_size": 21686, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-65#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0549feb983884f9fab377d2018535597.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0549feb983884f9fab377d2018535597.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0549feb983884f9fab377d2018535597.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0549feb983884f9fab377d2018535597.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0549feb983884f9fab377d2018535597.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSQsK_g6wve2cFVHgdTwR2sebac=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.903177+00 2025-12-09 10:14:40.903181+00 3372 LZ1183#上身4号色 SPMX-20240815298489 \N \N \N 1 \N [{"file_id": "2a058291-c982-44e3-a8b3-9348905a7cb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "160bfcb7ab1842519be36c125142a87c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "160bfcb7ab1842519be36c125142a87c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "160bfcb7ab1842519be36c125142a87c.jpg", "file_size": 10419, "is_delete": false, "file_type": 1, "original_file_name": "LZ1183#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160bfcb7ab1842519be36c125142a87c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160bfcb7ab1842519be36c125142a87c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160bfcb7ab1842519be36c125142a87c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/160bfcb7ab1842519be36c125142a87c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/160bfcb7ab1842519be36c125142a87c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRrTyKw9llVQsJScgRC2RKnQvi4=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.904675+00 2025-12-09 10:14:40.904679+00 3373 FHPKDK-批布078-1 SPMX-20240815298498 \N \N \N 1 \N [{"file_id": "16d2ca5e-d2e3-4315-8f2d-44fb420f9a61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "448e43bbce7746949f22922824b94bf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "448e43bbce7746949f22922824b94bf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "448e43bbce7746949f22922824b94bf1.jpg", "file_size": 56248, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布078-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448e43bbce7746949f22922824b94bf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448e43bbce7746949f22922824b94bf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448e43bbce7746949f22922824b94bf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/448e43bbce7746949f22922824b94bf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/448e43bbce7746949f22922824b94bf1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mh3Yc9n8nwkRlEJITUmqzpIbwqU=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.905695+00 2025-12-09 10:14:40.905699+00 3374 LZ1184#上身1号色 SPMX-20240815298501 \N \N \N 1 \N [{"file_id": "efc5ce9c-328d-44ad-9dcc-a9df71e09aa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88d90ad603de493c830ec2803820b706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88d90ad603de493c830ec2803820b706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88d90ad603de493c830ec2803820b706.jpg", "file_size": 12016, "is_delete": false, "file_type": 1, "original_file_name": "LZ1184#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d90ad603de493c830ec2803820b706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d90ad603de493c830ec2803820b706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d90ad603de493c830ec2803820b706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88d90ad603de493c830ec2803820b706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88d90ad603de493c830ec2803820b706.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mm9WwDmJ-Rh9S5h3OKQ4e0hYojQ=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.906756+00 2025-12-09 10:14:40.90676+00 3375 0001-26FWF#V5曲线 SPMX-20240815298512 \N \N \N 1 \N [{"file_id": "6106ffe9-e391-41bc-a960-135667a606ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2a468aed4af442098ed0cc4d8c404e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2a468aed4af442098ed0cc4d8c404e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2a468aed4af442098ed0cc4d8c404e9.jpg", "file_size": 13565, "is_delete": false, "file_type": 1, "original_file_name": "0001-26FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a468aed4af442098ed0cc4d8c404e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a468aed4af442098ed0cc4d8c404e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a468aed4af442098ed0cc4d8c404e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2a468aed4af442098ed0cc4d8c404e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2a468aed4af442098ed0cc4d8c404e9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zngq_aa2EZRryizXu516YDYmd0=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.907777+00 2025-12-09 10:14:40.907781+00 3376 DH011FW#VS-D3 SPMX-20240815298499 \N \N \N 1 \N [{"file_id": "b26371e7-44fe-4afc-9e47-4bed54339298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "902346caa2b04b86a174dec19fc3724f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "902346caa2b04b86a174dec19fc3724f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "902346caa2b04b86a174dec19fc3724f.jpg", "file_size": 6950, "is_delete": false, "file_type": 1, "original_file_name": "DH011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902346caa2b04b86a174dec19fc3724f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902346caa2b04b86a174dec19fc3724f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902346caa2b04b86a174dec19fc3724f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/902346caa2b04b86a174dec19fc3724f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/902346caa2b04b86a174dec19fc3724f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bT7AFiH4GCN45Nkp_AlYvHu71Q=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.908803+00 2025-12-09 10:14:40.908806+00 3377 FHPKDK-批布078-2 SPMX-20240815298509 \N \N \N 1 \N [{"file_id": "453ff1df-7df6-4171-b43f-3e32f430e0e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed56382a4fea4699b45f44dd04c66bbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed56382a4fea4699b45f44dd04c66bbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed56382a4fea4699b45f44dd04c66bbd.jpg", "file_size": 52554, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK-批布078-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed56382a4fea4699b45f44dd04c66bbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed56382a4fea4699b45f44dd04c66bbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed56382a4fea4699b45f44dd04c66bbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed56382a4fea4699b45f44dd04c66bbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed56382a4fea4699b45f44dd04c66bbd.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-v70EV9DPhKcRzVjRQP2S7t41hU=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.909847+00 2025-12-09 10:14:40.909851+00 3378 LHJ2317#A1短连衣裙 SPMX-20240815298506 \N \N \N 1 \N [{"file_id": "ca7e1206-78b1-40d2-bc54-b04f19142208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32fdf0d993df444ebf9e50875d359c7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32fdf0d993df444ebf9e50875d359c7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32fdf0d993df444ebf9e50875d359c7d.jpg", "file_size": 24001, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2317#A1短连衣裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fdf0d993df444ebf9e50875d359c7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fdf0d993df444ebf9e50875d359c7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fdf0d993df444ebf9e50875d359c7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32fdf0d993df444ebf9e50875d359c7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32fdf0d993df444ebf9e50875d359c7d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAVVSFquuJxVLPKaqhuLkSwgsnc=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.910896+00 2025-12-09 10:14:40.910899+00 3379 0001-26FWE#VS-D3 SPMX-20240815298502 \N \N \N 1 \N [{"file_id": "3d682380-748a-405c-95a0-61a9e341ed97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "449d8f3a000d495fafceae2c60585371.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "449d8f3a000d495fafceae2c60585371.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "449d8f3a000d495fafceae2c60585371.jpg", "file_size": 13718, "is_delete": false, "file_type": 1, "original_file_name": "0001-26FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449d8f3a000d495fafceae2c60585371.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449d8f3a000d495fafceae2c60585371.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449d8f3a000d495fafceae2c60585371.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/449d8f3a000d495fafceae2c60585371.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/449d8f3a000d495fafceae2c60585371.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgOF_Xht4_60vA6pLgJdTKx08hU=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.911932+00 2025-12-09 10:14:40.911937+00 3380 1040FWF#灰色L SPMX-20240815298504 \N \N \N 1 \N [{"file_id": "b6387a38-a33b-4a87-8f69-fa210573c795", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3269939138d440ea93d19827d5fc424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3269939138d440ea93d19827d5fc424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3269939138d440ea93d19827d5fc424.jpg", "file_size": 13992, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#灰色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3269939138d440ea93d19827d5fc424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3269939138d440ea93d19827d5fc424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3269939138d440ea93d19827d5fc424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3269939138d440ea93d19827d5fc424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3269939138d440ea93d19827d5fc424.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFZcNavAmBVtPwBdYb80rcY-EG8=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.912939+00 2025-12-09 10:14:40.912943+00 3381 80033#短袖子 SPMX-20240815298497 \N \N \N 1 \N [{"file_id": "0c5d4569-ded2-4853-b12d-80a68ca5c546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25dd9a8bafa841fba85091bdaa6f0604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25dd9a8bafa841fba85091bdaa6f0604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25dd9a8bafa841fba85091bdaa6f0604.jpg", "file_size": 21423, "is_delete": false, "file_type": 1, "original_file_name": "80033#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd9a8bafa841fba85091bdaa6f0604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd9a8bafa841fba85091bdaa6f0604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd9a8bafa841fba85091bdaa6f0604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25dd9a8bafa841fba85091bdaa6f0604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25dd9a8bafa841fba85091bdaa6f0604.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c16NvXBRTfStTbLy6PlazPuHnRM=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.913972+00 2025-12-09 10:14:40.913977+00 3382 22C02-9-65#34码 SPMX-20240815298500 \N \N \N 1 \N [{"file_id": "03b83338-60a8-49c6-876e-3f8d4d411f84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a891e51d1a6946059ef0e2fe2170a634.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a891e51d1a6946059ef0e2fe2170a634.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a891e51d1a6946059ef0e2fe2170a634.jpg", "file_size": 21603, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-65#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a891e51d1a6946059ef0e2fe2170a634.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a891e51d1a6946059ef0e2fe2170a634.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a891e51d1a6946059ef0e2fe2170a634.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a891e51d1a6946059ef0e2fe2170a634.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a891e51d1a6946059ef0e2fe2170a634.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqeaEzA2XFkQLPJpn2HmVSfetok=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.915021+00 2025-12-09 10:14:40.915025+00 3383 LZ1184#上身2号色 SPMX-20240815298511 \N \N \N 1 \N [{"file_id": "435363bc-2485-4118-9cef-729cf9adbbb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cd910612b794bcd9b6e5993e1e956e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cd910612b794bcd9b6e5993e1e956e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cd910612b794bcd9b6e5993e1e956e5.jpg", "file_size": 12086, "is_delete": false, "file_type": 1, "original_file_name": "LZ1184#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd910612b794bcd9b6e5993e1e956e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd910612b794bcd9b6e5993e1e956e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd910612b794bcd9b6e5993e1e956e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cd910612b794bcd9b6e5993e1e956e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cd910612b794bcd9b6e5993e1e956e5.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LA53AU3Da48LbLZ2urICIFcHT-o=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.916059+00 2025-12-09 10:14:40.916063+00 3384 LHJ2317#A1 SPMX-20240815298495 \N \N \N 1 \N [{"file_id": "89ceb954-f038-4bc6-845d-c0a4bf4b5c3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf892921ec1a4dbabb42c65c77920fc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf892921ec1a4dbabb42c65c77920fc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf892921ec1a4dbabb42c65c77920fc4.jpg", "file_size": 23298, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2317#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf892921ec1a4dbabb42c65c77920fc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf892921ec1a4dbabb42c65c77920fc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf892921ec1a4dbabb42c65c77920fc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf892921ec1a4dbabb42c65c77920fc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf892921ec1a4dbabb42c65c77920fc4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I00pn1rfHxXTnRX-awK1DKO0BDE=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.917074+00 2025-12-09 10:14:40.917078+00 3385 JS012# SPMX-20240815298508 \N \N \N 1 \N [{"file_id": "81f1a331-ab7c-4564-ad8a-3e70832e1f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20cc77ebe34547e0baa966cf435e597d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20cc77ebe34547e0baa966cf435e597d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20cc77ebe34547e0baa966cf435e597d.jpg", "file_size": 15146, "is_delete": false, "file_type": 1, "original_file_name": "JS012#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cc77ebe34547e0baa966cf435e597d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cc77ebe34547e0baa966cf435e597d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cc77ebe34547e0baa966cf435e597d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20cc77ebe34547e0baa966cf435e597d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20cc77ebe34547e0baa966cf435e597d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUKYIm8hJ7JXt-xtOeCg4ULpg9E=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.918106+00 2025-12-09 10:14:40.91811+00 3386 JS011FWE#VS-D3 SPMX-20240815298496 \N \N \N 1 \N [{"file_id": "3adedf05-b799-4e86-8483-187f3057331c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52a04ae92b4d4682b44cc827be3d6a4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52a04ae92b4d4682b44cc827be3d6a4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52a04ae92b4d4682b44cc827be3d6a4f.jpg", "file_size": 21718, "is_delete": false, "file_type": 1, "original_file_name": "JS011FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a04ae92b4d4682b44cc827be3d6a4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a04ae92b4d4682b44cc827be3d6a4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a04ae92b4d4682b44cc827be3d6a4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52a04ae92b4d4682b44cc827be3d6a4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52a04ae92b4d4682b44cc827be3d6a4f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsDgpVdnJFcxNtgGqnD6vqHTWp4=", "createTime": "2024-08-15 14:38:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.919126+00 2025-12-09 10:14:40.91913+00 3387 80035#短袖上衣 SPMX-20240815298507 \N \N \N 1 \N [{"file_id": "f17d7dac-4851-48a5-9741-78888a2ea24c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d2dfcbc45e4b738d9ac917fc633bcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d2dfcbc45e4b738d9ac917fc633bcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d2dfcbc45e4b738d9ac917fc633bcf.jpg", "file_size": 22134, "is_delete": false, "file_type": 1, "original_file_name": "80035#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2dfcbc45e4b738d9ac917fc633bcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2dfcbc45e4b738d9ac917fc633bcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d2dfcbc45e4b738d9ac917fc633bcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d2dfcbc45e4b738d9ac917fc633bcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d2dfcbc45e4b738d9ac917fc633bcf.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-i0GgvfKiC_dTmh51wRPV2reWA=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.920169+00 2025-12-09 10:14:40.920174+00 3388 22C02-9-65#36码 SPMX-20240815298510 \N \N \N 1 \N [{"file_id": "382588a1-1452-42df-9cf8-c3c4f432826d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2808c4636f4a470f966d684180f27935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2808c4636f4a470f966d684180f27935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2808c4636f4a470f966d684180f27935.jpg", "file_size": 21719, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-65#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2808c4636f4a470f966d684180f27935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2808c4636f4a470f966d684180f27935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2808c4636f4a470f966d684180f27935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2808c4636f4a470f966d684180f27935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2808c4636f4a470f966d684180f27935.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8pehUHsrjHuLFxVVPAw1G3f8Mo=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.921202+00 2025-12-09 10:14:40.921206+00 3389 HSH008FWE#VS-D3 SPMX-20240815298503 \N \N \N 1 \N [{"file_id": "611fe869-7916-46dd-b16c-fa1f285130ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df9730f74f64427eb65bd7f5794c1c77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df9730f74f64427eb65bd7f5794c1c77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df9730f74f64427eb65bd7f5794c1c77.jpg", "file_size": 20889, "is_delete": false, "file_type": 1, "original_file_name": "HSH008FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9730f74f64427eb65bd7f5794c1c77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9730f74f64427eb65bd7f5794c1c77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9730f74f64427eb65bd7f5794c1c77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df9730f74f64427eb65bd7f5794c1c77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df9730f74f64427eb65bd7f5794c1c77.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GY97qsEToUV-ON9b8AmftKNY-Z0=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.922222+00 2025-12-09 10:14:40.922226+00 3390 C220#12宝蓝46大红 SPMX-20240815298505 \N \N \N 1 \N [{"file_id": "dc4e8b93-ff61-4dbf-b3f0-05cb2745fb0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2dbd5e0bcd74699babc8e57cf7909fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2dbd5e0bcd74699babc8e57cf7909fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2dbd5e0bcd74699babc8e57cf7909fc.jpg", "file_size": 11313, "is_delete": false, "file_type": 1, "original_file_name": "C220#12宝蓝46大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2dbd5e0bcd74699babc8e57cf7909fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2dbd5e0bcd74699babc8e57cf7909fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2dbd5e0bcd74699babc8e57cf7909fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2dbd5e0bcd74699babc8e57cf7909fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2dbd5e0bcd74699babc8e57cf7909fc.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nu3ckirJvVaavoA7qQJKRShuPHA=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.923251+00 2025-12-09 10:14:40.923255+00 3391 JS012FW#VS-D3 SPMX-20240815298517 \N \N \N 1 \N [{"file_id": "ad0abd64-691e-4858-9cac-59eaccec6b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe3396153dd945399082e9413aeacd1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe3396153dd945399082e9413aeacd1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe3396153dd945399082e9413aeacd1e.jpg", "file_size": 13136, "is_delete": false, "file_type": 1, "original_file_name": "JS012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3396153dd945399082e9413aeacd1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3396153dd945399082e9413aeacd1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3396153dd945399082e9413aeacd1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe3396153dd945399082e9413aeacd1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe3396153dd945399082e9413aeacd1e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjIi1y_Ly_5oix_Tlo_0Ptw4QQA=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.924288+00 2025-12-09 10:14:40.924293+00 3392 0001-27FWE#VS-D3 SPMX-20240815298521 \N \N \N 1 \N [{"file_id": "08ddce38-c345-465f-b97f-7d1aa3620705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7c8567e497c4aaab0745f14bbc8d33a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7c8567e497c4aaab0745f14bbc8d33a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7c8567e497c4aaab0745f14bbc8d33a.jpg", "file_size": 16344, "is_delete": false, "file_type": 1, "original_file_name": "0001-27FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c8567e497c4aaab0745f14bbc8d33a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c8567e497c4aaab0745f14bbc8d33a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c8567e497c4aaab0745f14bbc8d33a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7c8567e497c4aaab0745f14bbc8d33a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7c8567e497c4aaab0745f14bbc8d33a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84gPIZi6TaHUW7qeAItBEE5XUyY=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.925329+00 2025-12-09 10:14:40.925333+00 3393 C220#C101粉12宝蓝 SPMX-20240815298515 \N \N \N 1 \N [{"file_id": "56a99d0e-7426-4268-b948-0b14e42f930f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f398515a8dd42cdad747fe333721adc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f398515a8dd42cdad747fe333721adc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f398515a8dd42cdad747fe333721adc.jpg", "file_size": 10981, "is_delete": false, "file_type": 1, "original_file_name": "C220#C101粉12宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f398515a8dd42cdad747fe333721adc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f398515a8dd42cdad747fe333721adc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f398515a8dd42cdad747fe333721adc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f398515a8dd42cdad747fe333721adc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f398515a8dd42cdad747fe333721adc.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxxB416B33LOmhkKWK2wE609S1k=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.926361+00 2025-12-09 10:14:40.926365+00 3394 DH012FW#VS-D3 SPMX-20240815298522 \N \N \N 1 \N [{"file_id": "6b7e19ac-fce9-4f82-bcfd-07ec7a9358a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "985a32780cc34434a0d4b571dead608d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "985a32780cc34434a0d4b571dead608d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "985a32780cc34434a0d4b571dead608d.jpg", "file_size": 27937, "is_delete": false, "file_type": 1, "original_file_name": "DH012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/985a32780cc34434a0d4b571dead608d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/985a32780cc34434a0d4b571dead608d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/985a32780cc34434a0d4b571dead608d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/985a32780cc34434a0d4b571dead608d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/985a32780cc34434a0d4b571dead608d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ucsSZCvpuzAfR-_TDqkqscLSA8=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.927372+00 2025-12-09 10:14:40.927376+00 3395 DH011FWE#VS-D3 SPMX-20240815298513 \N \N \N 1 \N [{"file_id": "a44d283b-e607-4a41-8ead-05629a76088f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84c556fb115344da9dd3c90d21ad7920.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84c556fb115344da9dd3c90d21ad7920.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84c556fb115344da9dd3c90d21ad7920.jpg", "file_size": 12794, "is_delete": false, "file_type": 1, "original_file_name": "DH011FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c556fb115344da9dd3c90d21ad7920.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c556fb115344da9dd3c90d21ad7920.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c556fb115344da9dd3c90d21ad7920.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84c556fb115344da9dd3c90d21ad7920.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84c556fb115344da9dd3c90d21ad7920.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEEmfc3qqKNZGcDVIiJKXxmCrQU=", "createTime": "2024-08-15 14:38:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.928408+00 2025-12-09 10:14:40.928412+00 3396 1040FWF#皮红 SPMX-20240815298526 \N \N \N 1 \N [{"file_id": "a1972d85-c99b-421e-bc07-e7b1e29f835d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg", "file_size": 16063, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9e98da8a85f4c1aa3d6d0a95969a0d7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-Ff8hT9G9z8cljZHdJKE7mxnTA=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.929445+00 2025-12-09 10:14:40.929449+00 3397 22C02-9-65#38码 SPMX-20240815298520 \N \N \N 1 \N [{"file_id": "4e73c3d0-f12a-412b-89b9-0a3bbcc202a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54f36507640949a69595867807353e41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54f36507640949a69595867807353e41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54f36507640949a69595867807353e41.jpg", "file_size": 21133, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-65#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54f36507640949a69595867807353e41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54f36507640949a69595867807353e41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54f36507640949a69595867807353e41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54f36507640949a69595867807353e41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54f36507640949a69595867807353e41.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1KsyddwSS98Nnen6xVhNbcS4TI8=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.930483+00 2025-12-09 10:14:40.930488+00 3398 LHJ2317#黑白 SPMX-20240815298516 \N \N \N 1 \N [{"file_id": "440eafef-7db8-4c94-8350-162ee978c2d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1246d12795d241bfa5b59f1f06d9b4fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1246d12795d241bfa5b59f1f06d9b4fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1246d12795d241bfa5b59f1f06d9b4fa.jpg", "file_size": 26912, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2317#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1246d12795d241bfa5b59f1f06d9b4fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1246d12795d241bfa5b59f1f06d9b4fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1246d12795d241bfa5b59f1f06d9b4fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1246d12795d241bfa5b59f1f06d9b4fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1246d12795d241bfa5b59f1f06d9b4fa.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvEeDdWnFD5CLSC_Pv9tDuEfX3A=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.931534+00 2025-12-09 10:14:40.931538+00 3399 LZ1184#上身3号色 SPMX-20240815298518 \N \N \N 1 \N [{"file_id": "f59da07f-e69b-4643-b055-ffd1348dd0ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c69a0e9786a48aab500d05f36c329d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c69a0e9786a48aab500d05f36c329d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c69a0e9786a48aab500d05f36c329d1.jpg", "file_size": 12104, "is_delete": false, "file_type": 1, "original_file_name": "LZ1184#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c69a0e9786a48aab500d05f36c329d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c69a0e9786a48aab500d05f36c329d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c69a0e9786a48aab500d05f36c329d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c69a0e9786a48aab500d05f36c329d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c69a0e9786a48aab500d05f36c329d1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Xzt-EDXE22NPOLo8u9I5OwYTGI=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.932554+00 2025-12-09 10:14:40.932558+00 3400 1040FWF#灰色XL SPMX-20240815298514 \N \N \N 1 \N [{"file_id": "a1d7c7aa-075d-432a-9f5d-2a0a9942dae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192a61ebee9b446cb591f9fd39f63e5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192a61ebee9b446cb591f9fd39f63e5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192a61ebee9b446cb591f9fd39f63e5e.jpg", "file_size": 14648, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#灰色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a61ebee9b446cb591f9fd39f63e5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a61ebee9b446cb591f9fd39f63e5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a61ebee9b446cb591f9fd39f63e5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192a61ebee9b446cb591f9fd39f63e5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192a61ebee9b446cb591f9fd39f63e5e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-nn6ell9Ky64_NkX3VLevkcyc8=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.933587+00 2025-12-09 10:14:40.933591+00 3401 LHJ2317#黑白短连衣裙 SPMX-20240815298525 \N \N \N 1 \N [{"file_id": "83e7e6e1-6851-4612-9a0a-8d3ad949d5a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "052b9aea45984a93bb16b6b963cd5346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "052b9aea45984a93bb16b6b963cd5346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "052b9aea45984a93bb16b6b963cd5346.jpg", "file_size": 27022, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2317#黑白短连衣裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052b9aea45984a93bb16b6b963cd5346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052b9aea45984a93bb16b6b963cd5346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052b9aea45984a93bb16b6b963cd5346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/052b9aea45984a93bb16b6b963cd5346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/052b9aea45984a93bb16b6b963cd5346.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuMHjytSt9fcONV7_WOe_hjI9Js=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.934622+00 2025-12-09 10:14:40.934626+00 3402 80035#短袖子 SPMX-20240815298519 \N \N \N 1 \N [{"file_id": "59cd5578-3d27-457a-83e3-9dd547e3fbc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c864031508b4064804ca9c0c4554820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c864031508b4064804ca9c0c4554820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c864031508b4064804ca9c0c4554820.jpg", "file_size": 21131, "is_delete": false, "file_type": 1, "original_file_name": "80035#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c864031508b4064804ca9c0c4554820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c864031508b4064804ca9c0c4554820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c864031508b4064804ca9c0c4554820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c864031508b4064804ca9c0c4554820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c864031508b4064804ca9c0c4554820.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QjDwVQlS10ixzLfK0Zk23IDGbi8=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.935645+00 2025-12-09 10:14:40.935649+00 3403 C220#咖啡黑 SPMX-20240815298524 \N \N \N 1 \N [{"file_id": "c2557562-6f37-40a9-9e0d-763bc9b1192d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf5cbbcab5d24eb6be22cac684a74a8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf5cbbcab5d24eb6be22cac684a74a8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf5cbbcab5d24eb6be22cac684a74a8f.jpg", "file_size": 9729, "is_delete": false, "file_type": 1, "original_file_name": "C220#咖啡黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf5cbbcab5d24eb6be22cac684a74a8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf5cbbcab5d24eb6be22cac684a74a8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf5cbbcab5d24eb6be22cac684a74a8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf5cbbcab5d24eb6be22cac684a74a8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf5cbbcab5d24eb6be22cac684a74a8f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x14X2ATWRprf5LG0xG062XnTy2I=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.936688+00 2025-12-09 10:14:40.936691+00 3404 FHPKDK1-001-1 SPMX-20240815298523 \N \N \N 1 \N [{"file_id": "b3d9a15f-c3f2-4512-a7fc-80a9eddb76fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09e9479ea1ca4ccb9b13f6f9af671f20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09e9479ea1ca4ccb9b13f6f9af671f20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09e9479ea1ca4ccb9b13f6f9af671f20.jpg", "file_size": 42285, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e9479ea1ca4ccb9b13f6f9af671f20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e9479ea1ca4ccb9b13f6f9af671f20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e9479ea1ca4ccb9b13f6f9af671f20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09e9479ea1ca4ccb9b13f6f9af671f20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09e9479ea1ca4ccb9b13f6f9af671f20.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzEIra3ExRtGGqzUuV7-WzkrJ68=", "createTime": "2024-08-15 14:38:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.937764+00 2025-12-09 10:14:40.937769+00 3405 C220#绿50黄 SPMX-20240815298535 \N \N \N 1 \N [{"file_id": "31c89649-281f-4b21-91b9-4f771dd35a93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76f793bcd1414567a7b87b6deb3c78c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76f793bcd1414567a7b87b6deb3c78c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76f793bcd1414567a7b87b6deb3c78c4.jpg", "file_size": 11293, "is_delete": false, "file_type": 1, "original_file_name": "C220#绿50黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f793bcd1414567a7b87b6deb3c78c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f793bcd1414567a7b87b6deb3c78c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f793bcd1414567a7b87b6deb3c78c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76f793bcd1414567a7b87b6deb3c78c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76f793bcd1414567a7b87b6deb3c78c4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:My9V21OzuirvLiCxTabgeD0o8LQ=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.938805+00 2025-12-09 10:14:40.938809+00 3406 80036#短袖上衣 SPMX-20240815298530 \N \N \N 1 \N [{"file_id": "2e852df2-2084-4b5c-a64d-4c71dc9c3e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b30dab619be54963afbd5f2d77e9b2df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b30dab619be54963afbd5f2d77e9b2df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b30dab619be54963afbd5f2d77e9b2df.jpg", "file_size": 23084, "is_delete": false, "file_type": 1, "original_file_name": "80036#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30dab619be54963afbd5f2d77e9b2df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30dab619be54963afbd5f2d77e9b2df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30dab619be54963afbd5f2d77e9b2df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b30dab619be54963afbd5f2d77e9b2df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b30dab619be54963afbd5f2d77e9b2df.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Px76ElYbAlpSXnnNAj6OnZhgnoY=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.939871+00 2025-12-09 10:14:40.939876+00 3407 LZ1184#上身4号色 SPMX-20240815298528 \N \N \N 1 \N [{"file_id": "8ea85f88-38a7-4124-95cb-1b36ea0736b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb34c4dd72f44818949c1113997ecf4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb34c4dd72f44818949c1113997ecf4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb34c4dd72f44818949c1113997ecf4d.jpg", "file_size": 11995, "is_delete": false, "file_type": 1, "original_file_name": "LZ1184#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb34c4dd72f44818949c1113997ecf4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb34c4dd72f44818949c1113997ecf4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb34c4dd72f44818949c1113997ecf4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb34c4dd72f44818949c1113997ecf4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb34c4dd72f44818949c1113997ecf4d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cQP4AKlpiXL0BaALQHWOvwAM-A=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.94135+00 2025-12-09 10:14:40.941356+00 3408 JS012FWE#粉VS-D3 SPMX-20240815298527 \N \N \N 1 \N [{"file_id": "52f781fe-43f1-4df2-8250-8f02fb0f0cb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68ea0c54474a4bfbbc39fd8121e8b20d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68ea0c54474a4bfbbc39fd8121e8b20d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68ea0c54474a4bfbbc39fd8121e8b20d.jpg", "file_size": 10101, "is_delete": false, "file_type": 1, "original_file_name": "JS012FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ea0c54474a4bfbbc39fd8121e8b20d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ea0c54474a4bfbbc39fd8121e8b20d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ea0c54474a4bfbbc39fd8121e8b20d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68ea0c54474a4bfbbc39fd8121e8b20d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68ea0c54474a4bfbbc39fd8121e8b20d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4qwGnpJd1HNeOZ4ABZ4FdOsz0A=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.943421+00 2025-12-09 10:14:40.943428+00 3409 FHPKDK1-001-2 SPMX-20240815298534 \N \N \N 1 \N [{"file_id": "db52fb6d-cc2f-4d8f-86c8-e1ba41a0da03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e1062c5a3a4ee99655a5c62217e6ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e1062c5a3a4ee99655a5c62217e6ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e1062c5a3a4ee99655a5c62217e6ce.jpg", "file_size": 41782, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e1062c5a3a4ee99655a5c62217e6ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e1062c5a3a4ee99655a5c62217e6ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e1062c5a3a4ee99655a5c62217e6ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e1062c5a3a4ee99655a5c62217e6ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e1062c5a3a4ee99655a5c62217e6ce.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1l3QNEWTz8EefuEoh8MfMY6ugs=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.945115+00 2025-12-09 10:14:40.945122+00 3410 LHJ2318#A1长连衣裙 SPMX-20240815298537 \N \N \N 1 \N [{"file_id": "75c5b6fd-a49a-4a0c-8573-c01dd9fc9f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "935be1c434ff4be486f41f239bcb65a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "935be1c434ff4be486f41f239bcb65a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "935be1c434ff4be486f41f239bcb65a7.jpg", "file_size": 23209, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2318#A1长连衣裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/935be1c434ff4be486f41f239bcb65a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/935be1c434ff4be486f41f239bcb65a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/935be1c434ff4be486f41f239bcb65a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/935be1c434ff4be486f41f239bcb65a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/935be1c434ff4be486f41f239bcb65a7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xG6x65Z3w1sJJDkgYy68pWiQH7Q=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.946975+00 2025-12-09 10:14:40.94698+00 3411 LZ1185#上身1号色 SPMX-20240815298539 \N \N \N 1 \N [{"file_id": "c9960173-c8dd-4ed4-9b46-0a08889d1403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3cb2113e85e402e8d5aac7162c97dff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3cb2113e85e402e8d5aac7162c97dff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3cb2113e85e402e8d5aac7162c97dff.jpg", "file_size": 11752, "is_delete": false, "file_type": 1, "original_file_name": "LZ1185#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cb2113e85e402e8d5aac7162c97dff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cb2113e85e402e8d5aac7162c97dff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cb2113e85e402e8d5aac7162c97dff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3cb2113e85e402e8d5aac7162c97dff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3cb2113e85e402e8d5aac7162c97dff.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0eA67pkifXkMiJ_FNqZzii-wvU=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.948166+00 2025-12-09 10:14:40.948169+00 3412 DH013FW#VS-D3 SPMX-20240815298532 \N \N \N 1 \N [{"file_id": "e212bebc-1b0c-4f36-a2a3-5f918e69cbb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb32ea70fbe1456f9daa6cd6e98946b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb32ea70fbe1456f9daa6cd6e98946b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb32ea70fbe1456f9daa6cd6e98946b7.jpg", "file_size": 15628, "is_delete": false, "file_type": 1, "original_file_name": "DH013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb32ea70fbe1456f9daa6cd6e98946b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb32ea70fbe1456f9daa6cd6e98946b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb32ea70fbe1456f9daa6cd6e98946b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb32ea70fbe1456f9daa6cd6e98946b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb32ea70fbe1456f9daa6cd6e98946b7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHBjIg0Wn5prDX2oPALSbcge1qM=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.94922+00 2025-12-09 10:14:40.949224+00 3413 JS012FWE#蓝VS-D3 SPMX-20240815298538 \N \N \N 1 \N [{"file_id": "0d67c250-31d4-43e3-ba19-6e2cad713c38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a039fc16c342a5a0797b6f351b627f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a039fc16c342a5a0797b6f351b627f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a039fc16c342a5a0797b6f351b627f.jpg", "file_size": 10272, "is_delete": false, "file_type": 1, "original_file_name": "JS012FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a039fc16c342a5a0797b6f351b627f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a039fc16c342a5a0797b6f351b627f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a039fc16c342a5a0797b6f351b627f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a039fc16c342a5a0797b6f351b627f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a039fc16c342a5a0797b6f351b627f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJoHkpzN5ITn4p6VRYTxucoTE54=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.950266+00 2025-12-09 10:14:40.95027+00 3414 HSH009# SPMX-20240815298529 \N \N \N 1 \N [{"file_id": "a4dbfe7c-0fcd-4d1e-a252-9668dca72b8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8048091845b34a879daeb1603560401c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8048091845b34a879daeb1603560401c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8048091845b34a879daeb1603560401c.jpg", "file_size": 18629, "is_delete": false, "file_type": 1, "original_file_name": "HSH009#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048091845b34a879daeb1603560401c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048091845b34a879daeb1603560401c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048091845b34a879daeb1603560401c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8048091845b34a879daeb1603560401c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8048091845b34a879daeb1603560401c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2gzyuN0KJHD26Vr5ZVf3XeoUspM=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.951302+00 2025-12-09 10:14:40.951306+00 3415 1040FWF#皮红2XL SPMX-20240815298536 \N \N \N 1 \N [{"file_id": "6832623c-c26f-4c17-8d8c-4ab68088f93d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7425c3b2c9544a1aeedd25669d91f5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7425c3b2c9544a1aeedd25669d91f5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7425c3b2c9544a1aeedd25669d91f5d.jpg", "file_size": 14408, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#皮红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7425c3b2c9544a1aeedd25669d91f5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7425c3b2c9544a1aeedd25669d91f5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7425c3b2c9544a1aeedd25669d91f5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7425c3b2c9544a1aeedd25669d91f5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7425c3b2c9544a1aeedd25669d91f5d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NalxnpkcnwWTG6ygI-toUk6wYVY=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.952323+00 2025-12-09 10:14:40.952327+00 3416 22C02-9-66#30码 SPMX-20240815298531 \N \N \N 1 \N [{"file_id": "7f474da0-848e-4146-bc2f-63c4fd084a07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb772086ccf64f37a2f8a4bcfab0165f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb772086ccf64f37a2f8a4bcfab0165f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb772086ccf64f37a2f8a4bcfab0165f.jpg", "file_size": 25327, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb772086ccf64f37a2f8a4bcfab0165f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb772086ccf64f37a2f8a4bcfab0165f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb772086ccf64f37a2f8a4bcfab0165f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb772086ccf64f37a2f8a4bcfab0165f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb772086ccf64f37a2f8a4bcfab0165f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYJqVvBOWQjufgbnmuUN3Z-r3Ys=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.953359+00 2025-12-09 10:14:40.953364+00 3417 0001-27FWF#V5曲线 SPMX-20240815298533 \N \N \N 1 \N [{"file_id": "d1df9732-374c-4fed-9482-2d58942ce8bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fb6eea0ae1045028992f99401f69c38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fb6eea0ae1045028992f99401f69c38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fb6eea0ae1045028992f99401f69c38.jpg", "file_size": 9928, "is_delete": false, "file_type": 1, "original_file_name": "0001-27FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb6eea0ae1045028992f99401f69c38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb6eea0ae1045028992f99401f69c38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb6eea0ae1045028992f99401f69c38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fb6eea0ae1045028992f99401f69c38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fb6eea0ae1045028992f99401f69c38.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7nHp8iQAqqsJY_kfG3CHExCvlM=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.954773+00 2025-12-09 10:14:40.954779+00 3418 HSH009#VS-D3 SPMX-20240815298540 \N \N \N 1 \N [{"file_id": "1ba355ae-192a-45f5-89c6-7f657ccb690a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12347d859711407a921cbe1ea6ad6aae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12347d859711407a921cbe1ea6ad6aae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12347d859711407a921cbe1ea6ad6aae.jpg", "file_size": 17763, "is_delete": false, "file_type": 1, "original_file_name": "HSH009#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12347d859711407a921cbe1ea6ad6aae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12347d859711407a921cbe1ea6ad6aae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12347d859711407a921cbe1ea6ad6aae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12347d859711407a921cbe1ea6ad6aae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12347d859711407a921cbe1ea6ad6aae.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0FFyPH6hvIZvZL3eJTWdytrGeA=", "createTime": "2024-08-15 14:38:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.956572+00 2025-12-09 10:14:40.956578+00 3419 C220#黑143枣红 SPMX-20240815298541 \N \N \N 1 \N [{"file_id": "75ea27ad-9d43-4a5c-8024-9974d1a10aae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fcdd6d021db47fb8124cd8049d0f4ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fcdd6d021db47fb8124cd8049d0f4ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fcdd6d021db47fb8124cd8049d0f4ed.jpg", "file_size": 10211, "is_delete": false, "file_type": 1, "original_file_name": "C220#黑143枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fcdd6d021db47fb8124cd8049d0f4ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fcdd6d021db47fb8124cd8049d0f4ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fcdd6d021db47fb8124cd8049d0f4ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fcdd6d021db47fb8124cd8049d0f4ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fcdd6d021db47fb8124cd8049d0f4ed.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N04NdFr9GfkcyUj-vXfEPbME8FA=", "createTime": "2024-08-15 14:38:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.958281+00 2025-12-09 10:14:40.958287+00 3420 C223-225#101粉色 SPMX-20240815298552 \N \N \N 1 \N [{"file_id": "65d34c66-d6ea-48b9-b0c4-1049fd9f1fba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61601e5b903e4d60aa7dd6fd624a0f60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61601e5b903e4d60aa7dd6fd624a0f60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61601e5b903e4d60aa7dd6fd624a0f60.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "C223-225#101粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61601e5b903e4d60aa7dd6fd624a0f60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61601e5b903e4d60aa7dd6fd624a0f60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61601e5b903e4d60aa7dd6fd624a0f60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61601e5b903e4d60aa7dd6fd624a0f60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61601e5b903e4d60aa7dd6fd624a0f60.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWM3515BKvnlnP6WPToSw0PYJZ4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.959954+00 2025-12-09 10:14:40.95996+00 3421 HSH009FW#4号VS-D3 SPMX-20240815298548 \N \N \N 1 \N [{"file_id": "ea27f56b-ba59-4db6-b605-7ef1dde797d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8830d46498e449348443c2ebf4f9a9a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8830d46498e449348443c2ebf4f9a9a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8830d46498e449348443c2ebf4f9a9a3.jpg", "file_size": 4957, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FW#4号VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8830d46498e449348443c2ebf4f9a9a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8830d46498e449348443c2ebf4f9a9a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8830d46498e449348443c2ebf4f9a9a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8830d46498e449348443c2ebf4f9a9a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8830d46498e449348443c2ebf4f9a9a3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w8IYYSjavitWjwnqMWwtn3MtpR4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.961647+00 2025-12-09 10:14:40.961653+00 3422 DH0961-1#RC23 SPMX-20240815298555 \N \N \N 1 \N [{"file_id": "6daf9591-d57c-4d71-b442-24a47c33d789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "805771d6f02f4250b5e49d00b238966e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "805771d6f02f4250b5e49d00b238966e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "805771d6f02f4250b5e49d00b238966e.jpg", "file_size": 69457, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805771d6f02f4250b5e49d00b238966e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805771d6f02f4250b5e49d00b238966e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805771d6f02f4250b5e49d00b238966e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/805771d6f02f4250b5e49d00b238966e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/805771d6f02f4250b5e49d00b238966e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_nwTjrFTRidWKGACzw1HD2eZ_3o=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.963313+00 2025-12-09 10:14:40.963319+00 3423 JS013# SPMX-20240815298557 \N \N \N 1 \N [{"file_id": "08accdb8-d1f0-4667-8fa9-c9741d1dfc9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ebdd41948a14f0385c5548b23f740ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ebdd41948a14f0385c5548b23f740ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ebdd41948a14f0385c5548b23f740ae.jpg", "file_size": 10954, "is_delete": false, "file_type": 1, "original_file_name": "JS013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebdd41948a14f0385c5548b23f740ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebdd41948a14f0385c5548b23f740ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebdd41948a14f0385c5548b23f740ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ebdd41948a14f0385c5548b23f740ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ebdd41948a14f0385c5548b23f740ae.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvwPQS9gCCncYpJ99QYyrnO7uSs=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.965009+00 2025-12-09 10:14:40.965015+00 3424 DH014FW#VS-D3 SPMX-20240815298543 \N \N \N 1 \N [{"file_id": "bad781ed-b6d1-46df-b760-d132f49a26e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22d839db97f644d3ba44e7495d825339.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22d839db97f644d3ba44e7495d825339.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22d839db97f644d3ba44e7495d825339.jpg", "file_size": 22719, "is_delete": false, "file_type": 1, "original_file_name": "DH014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d839db97f644d3ba44e7495d825339.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d839db97f644d3ba44e7495d825339.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d839db97f644d3ba44e7495d825339.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22d839db97f644d3ba44e7495d825339.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22d839db97f644d3ba44e7495d825339.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0kpwrGLzsQO364FKxe0opFy9gvg=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.966697+00 2025-12-09 10:14:40.966703+00 3425 22C02-9-66#32码 SPMX-20240815298550 \N \N \N 1 \N [{"file_id": "8fb68da0-88af-475d-a354-3abba452e584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6085e570ba9d4f66b7a66e92c05b287f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6085e570ba9d4f66b7a66e92c05b287f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6085e570ba9d4f66b7a66e92c05b287f.jpg", "file_size": 25545, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085e570ba9d4f66b7a66e92c05b287f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085e570ba9d4f66b7a66e92c05b287f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085e570ba9d4f66b7a66e92c05b287f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6085e570ba9d4f66b7a66e92c05b287f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6085e570ba9d4f66b7a66e92c05b287f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POYuZCRb37WRUV1Clx2uLfxZZ3o=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.968384+00 2025-12-09 10:14:40.968389+00 3426 LHJ8518#10#宝兰 SPMX-20240815298556 \N \N \N 1 \N [{"file_id": "ae72f1db-8cfd-4fa1-9f73-176b96a338ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1638dd07924c46778e756d10e5b122e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1638dd07924c46778e756d10e5b122e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1638dd07924c46778e756d10e5b122e1.jpg", "file_size": 7684, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#10#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1638dd07924c46778e756d10e5b122e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1638dd07924c46778e756d10e5b122e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1638dd07924c46778e756d10e5b122e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1638dd07924c46778e756d10e5b122e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1638dd07924c46778e756d10e5b122e1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qZ5bKop_phmprLpU-beXuEr9-g=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.970064+00 2025-12-09 10:14:40.97007+00 3427 LHJ2318#黑白长连衣裙 SPMX-20240815298545 \N \N \N 1 \N [{"file_id": "29948e76-eea9-42f8-887d-1b6f6ec8d107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9f51bad8e344bb6885507122c6a8e90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9f51bad8e344bb6885507122c6a8e90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9f51bad8e344bb6885507122c6a8e90.jpg", "file_size": 27291, "is_delete": false, "file_type": 1, "original_file_name": "LHJ2318#黑白长连衣裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f51bad8e344bb6885507122c6a8e90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f51bad8e344bb6885507122c6a8e90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f51bad8e344bb6885507122c6a8e90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9f51bad8e344bb6885507122c6a8e90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9f51bad8e344bb6885507122c6a8e90.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0i_M5BSZWPIkmmWLYAeg03fhs8=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.9717+00 2025-12-09 10:14:40.971723+00 3428 JS012FWE#黄VS-D3 SPMX-20240815298544 \N \N \N 1 \N [{"file_id": "87319c28-e3d0-4acd-9b26-c00f04c9ceef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8876c1d0f22d4a74b374d139d4443d9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8876c1d0f22d4a74b374d139d4443d9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8876c1d0f22d4a74b374d139d4443d9c.jpg", "file_size": 10771, "is_delete": false, "file_type": 1, "original_file_name": "JS012FWE#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8876c1d0f22d4a74b374d139d4443d9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8876c1d0f22d4a74b374d139d4443d9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8876c1d0f22d4a74b374d139d4443d9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8876c1d0f22d4a74b374d139d4443d9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8876c1d0f22d4a74b374d139d4443d9c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHozDfZWzwI1KP-epSGecYWQ0cc=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.972952+00 2025-12-09 10:14:40.972957+00 3429 LZ1185#上身2号色 SPMX-20240815298551 \N \N \N 1 \N [{"file_id": "40384e17-24fa-4793-8630-8b7d2633200c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "255d6021ec8948258fa9461b111bf4bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "255d6021ec8948258fa9461b111bf4bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "255d6021ec8948258fa9461b111bf4bb.jpg", "file_size": 11084, "is_delete": false, "file_type": 1, "original_file_name": "LZ1185#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255d6021ec8948258fa9461b111bf4bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255d6021ec8948258fa9461b111bf4bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255d6021ec8948258fa9461b111bf4bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/255d6021ec8948258fa9461b111bf4bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/255d6021ec8948258fa9461b111bf4bb.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wN35yrk8oAmmDI-lTHBykimMstA=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.974025+00 2025-12-09 10:14:40.97403+00 3430 FHPKDK1-001-3 SPMX-20240815298549 \N \N \N 1 \N [{"file_id": "614b50e3-c6ab-4b7f-9c03-1037d41e1dbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg", "file_size": 38204, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cdadd37bbbf4ceea7b2c9dc4ab43cb5.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CO1_a4YZk0HQ_L-u2omSWNnd8M8=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.975071+00 2025-12-09 10:14:40.975075+00 3431 80036#短袖子 SPMX-20240815298547 \N \N \N 1 \N [{"file_id": "e3658b9d-be73-427a-8525-f3b299066e4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cce25b632a2e449fac0b4d44805e9bd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cce25b632a2e449fac0b4d44805e9bd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cce25b632a2e449fac0b4d44805e9bd1.jpg", "file_size": 21780, "is_delete": false, "file_type": 1, "original_file_name": "80036#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce25b632a2e449fac0b4d44805e9bd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce25b632a2e449fac0b4d44805e9bd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce25b632a2e449fac0b4d44805e9bd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cce25b632a2e449fac0b4d44805e9bd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cce25b632a2e449fac0b4d44805e9bd1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFah-yMJr9TZmIL3b6W4U4T93iI=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.976118+00 2025-12-09 10:14:40.976122+00 3432 0001-28FWF#V5曲线 SPMX-20240815298546 \N \N \N 1 \N [{"file_id": "9c58e06f-c087-45a1-a7a3-5edf267fbe7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf2aa77e202240559aef859f5f3e2c42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf2aa77e202240559aef859f5f3e2c42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf2aa77e202240559aef859f5f3e2c42.jpg", "file_size": 20640, "is_delete": false, "file_type": 1, "original_file_name": "0001-28FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2aa77e202240559aef859f5f3e2c42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2aa77e202240559aef859f5f3e2c42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2aa77e202240559aef859f5f3e2c42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf2aa77e202240559aef859f5f3e2c42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf2aa77e202240559aef859f5f3e2c42.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQcy0JF0gjOHEEEk2l81hS4DoJ8=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.977155+00 2025-12-09 10:14:40.977159+00 3433 1040FWF#皮红L SPMX-20240815298542 \N \N \N 1 \N [{"file_id": "72507fb1-046a-442a-a21a-346c5e548878", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40a10895fc54defbca943d94c0e00b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40a10895fc54defbca943d94c0e00b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40a10895fc54defbca943d94c0e00b3.jpg", "file_size": 13913, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#皮红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40a10895fc54defbca943d94c0e00b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40a10895fc54defbca943d94c0e00b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40a10895fc54defbca943d94c0e00b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40a10895fc54defbca943d94c0e00b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40a10895fc54defbca943d94c0e00b3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdFmmMz5LRE9-ADt5f1Sl10y0IQ=", "createTime": "2024-08-15 14:38:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.97818+00 2025-12-09 10:14:40.978184+00 3434 1040FWF#皮红XL SPMX-20240815298553 \N \N \N 1 \N [{"file_id": "7cd17acb-39e6-4c06-8699-98ac05c06aa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2191a2570ec74664b5d988e2d0d34050.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2191a2570ec74664b5d988e2d0d34050.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2191a2570ec74664b5d988e2d0d34050.jpg", "file_size": 13902, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#皮红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2191a2570ec74664b5d988e2d0d34050.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2191a2570ec74664b5d988e2d0d34050.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2191a2570ec74664b5d988e2d0d34050.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2191a2570ec74664b5d988e2d0d34050.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2191a2570ec74664b5d988e2d0d34050.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kIqERISkB5-DhgdbQJ4Zit2WpKY=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.979202+00 2025-12-09 10:14:40.979206+00 3435 0001-29FWE#VS-D3 SPMX-20240815298554 \N \N \N 1 \N [{"file_id": "bb949864-ce07-4fb8-9a99-f75ed4504ce8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d25a63707aba418f9c8e41964d6848a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d25a63707aba418f9c8e41964d6848a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d25a63707aba418f9c8e41964d6848a8.jpg", "file_size": 20998, "is_delete": false, "file_type": 1, "original_file_name": "0001-29FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25a63707aba418f9c8e41964d6848a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25a63707aba418f9c8e41964d6848a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25a63707aba418f9c8e41964d6848a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d25a63707aba418f9c8e41964d6848a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d25a63707aba418f9c8e41964d6848a8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pVxkcO42Ue32NLp-o0OnxkLud4=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.98024+00 2025-12-09 10:14:40.980244+00 3436 80037#短袖上衣 SPMX-20240815298559 \N \N \N 1 \N [{"file_id": "ad77ec15-1c2f-4893-8fa6-b9b2a687866a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d26987a0f2940e8ae9781fda86b0ba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d26987a0f2940e8ae9781fda86b0ba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d26987a0f2940e8ae9781fda86b0ba7.jpg", "file_size": 23473, "is_delete": false, "file_type": 1, "original_file_name": "80037#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26987a0f2940e8ae9781fda86b0ba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26987a0f2940e8ae9781fda86b0ba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26987a0f2940e8ae9781fda86b0ba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d26987a0f2940e8ae9781fda86b0ba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d26987a0f2940e8ae9781fda86b0ba7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JRMMN-rdgL8hUcfKHf2hzyQ05dA=", "createTime": "2024-08-15 14:38:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.981818+00 2025-12-09 10:14:40.981822+00 3437 C223-225#枣红色 SPMX-20240815298563 \N \N \N 1 \N [{"file_id": "30273014-e8bc-4411-8272-96347ff680e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eac8dc1b264477dbd6a99b8f864ce35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eac8dc1b264477dbd6a99b8f864ce35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eac8dc1b264477dbd6a99b8f864ce35.jpg", "file_size": 21205, "is_delete": false, "file_type": 1, "original_file_name": "C223-225#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eac8dc1b264477dbd6a99b8f864ce35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eac8dc1b264477dbd6a99b8f864ce35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eac8dc1b264477dbd6a99b8f864ce35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eac8dc1b264477dbd6a99b8f864ce35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eac8dc1b264477dbd6a99b8f864ce35.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1Nd9yleoV9zs4LoTxUzT_wRdPo=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.98284+00 2025-12-09 10:14:40.982844+00 3438 FHPKDK1-001-4 SPMX-20240815298560 \N \N \N 1 \N [{"file_id": "e0994165-f3ac-453e-828b-0983b81263a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42777616c9a244ed89bc569b9674434d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42777616c9a244ed89bc569b9674434d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42777616c9a244ed89bc569b9674434d.jpg", "file_size": 45150, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42777616c9a244ed89bc569b9674434d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42777616c9a244ed89bc569b9674434d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42777616c9a244ed89bc569b9674434d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42777616c9a244ed89bc569b9674434d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42777616c9a244ed89bc569b9674434d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-AbKyJj4GsbaoVnPOMLah_bCmlk=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.98387+00 2025-12-09 10:14:40.983874+00 3439 1040FWF#酒红 SPMX-20240815298564 \N \N \N 1 \N [{"file_id": "834173bf-7483-458b-b3ee-6a3b843ccfd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320895d002c34d6d9686456b3e5cf46a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320895d002c34d6d9686456b3e5cf46a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320895d002c34d6d9686456b3e5cf46a.jpg", "file_size": 19629, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320895d002c34d6d9686456b3e5cf46a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320895d002c34d6d9686456b3e5cf46a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320895d002c34d6d9686456b3e5cf46a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320895d002c34d6d9686456b3e5cf46a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320895d002c34d6d9686456b3e5cf46a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JytzQPWNJpvTwHt-UaPDdOToIo=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.9849+00 2025-12-09 10:14:40.984904+00 3440 22C02-9-66#34码 SPMX-20240815298561 \N \N \N 1 \N [{"file_id": "d96d4305-826c-48ac-b967-e4db91c71b36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472ed67ed2c4411c92d62991df3ca54d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472ed67ed2c4411c92d62991df3ca54d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472ed67ed2c4411c92d62991df3ca54d.jpg", "file_size": 25342, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472ed67ed2c4411c92d62991df3ca54d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472ed67ed2c4411c92d62991df3ca54d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472ed67ed2c4411c92d62991df3ca54d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472ed67ed2c4411c92d62991df3ca54d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472ed67ed2c4411c92d62991df3ca54d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuoQwhUL7ywQC7peiytm6Dkw_jE=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.985927+00 2025-12-09 10:14:40.985931+00 3441 JS013#E SPMX-20240815298567 \N \N \N 1 \N [{"file_id": "1bd804a5-4f24-4985-86f5-9670a40417ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d0b5fa02214ab08180cfb62f6f3ce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d0b5fa02214ab08180cfb62f6f3ce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d0b5fa02214ab08180cfb62f6f3ce1.jpg", "file_size": 16511, "is_delete": false, "file_type": 1, "original_file_name": "JS013#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d0b5fa02214ab08180cfb62f6f3ce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d0b5fa02214ab08180cfb62f6f3ce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d0b5fa02214ab08180cfb62f6f3ce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d0b5fa02214ab08180cfb62f6f3ce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d0b5fa02214ab08180cfb62f6f3ce1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GxKoBRCUmoi7ey9_P6iDgqv9JHA=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.986941+00 2025-12-09 10:14:40.986945+00 3442 HSH009FW#5号VS-D3 SPMX-20240815298558 \N \N \N 1 \N [{"file_id": "b32e07f8-eeca-4121-bbcc-c19dfc3e8194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32acedfcafb3448f9aaf053f74412fd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32acedfcafb3448f9aaf053f74412fd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32acedfcafb3448f9aaf053f74412fd6.jpg", "file_size": 4863, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FW#5号VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32acedfcafb3448f9aaf053f74412fd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32acedfcafb3448f9aaf053f74412fd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32acedfcafb3448f9aaf053f74412fd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32acedfcafb3448f9aaf053f74412fd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32acedfcafb3448f9aaf053f74412fd6.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tb8i618-eSw37MGv4TygSFK-eHg=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.987987+00 2025-12-09 10:14:40.987991+00 3443 LZ1185#上身3号色 SPMX-20240815298562 \N \N \N 1 \N [{"file_id": "99aff091-f45e-4e67-bb5f-5492ffdf5467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78ad3a422a0f4920a5a66a120c0a7bf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78ad3a422a0f4920a5a66a120c0a7bf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78ad3a422a0f4920a5a66a120c0a7bf1.jpg", "file_size": 12686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1185#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ad3a422a0f4920a5a66a120c0a7bf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ad3a422a0f4920a5a66a120c0a7bf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ad3a422a0f4920a5a66a120c0a7bf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78ad3a422a0f4920a5a66a120c0a7bf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78ad3a422a0f4920a5a66a120c0a7bf1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbywaZNMSCSdxoKcfAoPrIy9bGQ=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.989119+00 2025-12-09 10:14:40.989124+00 3444 0001-29FWF#V5曲线 SPMX-20240815298565 \N \N \N 1 \N [{"file_id": "cd44e5bb-ccc3-4f12-b64c-33c45b0fe735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c99c401849544878e4f4b07f162a4f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c99c401849544878e4f4b07f162a4f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c99c401849544878e4f4b07f162a4f7.jpg", "file_size": 15573, "is_delete": false, "file_type": 1, "original_file_name": "0001-29FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c99c401849544878e4f4b07f162a4f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c99c401849544878e4f4b07f162a4f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c99c401849544878e4f4b07f162a4f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c99c401849544878e4f4b07f162a4f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c99c401849544878e4f4b07f162a4f7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-jPJMhQbc17-YSTs3kqgiuEO9o=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.990214+00 2025-12-09 10:14:40.990218+00 3445 LHJ8518#10#黑兰 SPMX-20240815298566 \N \N \N 1 \N [{"file_id": "5622a5ff-9c36-4c41-aea6-1720b0dd0cb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e71b87173354104bfe023104b0cb88b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e71b87173354104bfe023104b0cb88b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e71b87173354104bfe023104b0cb88b.jpg", "file_size": 7471, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#10#黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e71b87173354104bfe023104b0cb88b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e71b87173354104bfe023104b0cb88b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e71b87173354104bfe023104b0cb88b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e71b87173354104bfe023104b0cb88b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e71b87173354104bfe023104b0cb88b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxhMWMUB58HYrFMLk-k_vkbfWag=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.991266+00 2025-12-09 10:14:40.99127+00 3446 HSH009FW#6号VS-D3 SPMX-20240815298570 \N \N \N 1 \N [{"file_id": "7b6ba02e-7e95-45d7-a56d-b8e4bb33f158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf60bc182c734b03aa29fbb2ca1efd6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf60bc182c734b03aa29fbb2ca1efd6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf60bc182c734b03aa29fbb2ca1efd6c.jpg", "file_size": 4928, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FW#6号VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf60bc182c734b03aa29fbb2ca1efd6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf60bc182c734b03aa29fbb2ca1efd6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf60bc182c734b03aa29fbb2ca1efd6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf60bc182c734b03aa29fbb2ca1efd6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf60bc182c734b03aa29fbb2ca1efd6c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ieTukfL_8dUNFuJy7WbTJv4odrs=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.992308+00 2025-12-09 10:14:40.992312+00 3447 LZ1185#上身4号色 SPMX-20240815298572 \N \N \N 1 \N [{"file_id": "4352ffff-459e-4824-820d-a55100213553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4736ca85e9b940baa27781eb86d24332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4736ca85e9b940baa27781eb86d24332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4736ca85e9b940baa27781eb86d24332.jpg", "file_size": 12264, "is_delete": false, "file_type": 1, "original_file_name": "LZ1185#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4736ca85e9b940baa27781eb86d24332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4736ca85e9b940baa27781eb86d24332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4736ca85e9b940baa27781eb86d24332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4736ca85e9b940baa27781eb86d24332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4736ca85e9b940baa27781eb86d24332.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsMFD0gnNwO7zlaiPs7ZoiGATVs=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.993359+00 2025-12-09 10:14:40.993363+00 3448 C223-225#白色 SPMX-20240815298574 \N \N \N 1 \N [{"file_id": "d353511f-8977-4db0-8aeb-cdc284aad1d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33be54eb1032404b9bf892770dbe5c65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33be54eb1032404b9bf892770dbe5c65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33be54eb1032404b9bf892770dbe5c65.jpg", "file_size": 20220, "is_delete": false, "file_type": 1, "original_file_name": "C223-225#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33be54eb1032404b9bf892770dbe5c65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33be54eb1032404b9bf892770dbe5c65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33be54eb1032404b9bf892770dbe5c65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33be54eb1032404b9bf892770dbe5c65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33be54eb1032404b9bf892770dbe5c65.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19clS30a1xVEUBP_TX7KOx_q9sw=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.994391+00 2025-12-09 10:14:40.994395+00 3449 22C02-9-66#38码 SPMX-20240815298582 \N \N \N 1 \N [{"file_id": "de791512-c7e9-472a-9e24-24529f601bf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e19af32c47485d9d86d6ac1224ac30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e19af32c47485d9d86d6ac1224ac30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e19af32c47485d9d86d6ac1224ac30.jpg", "file_size": 24746, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e19af32c47485d9d86d6ac1224ac30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e19af32c47485d9d86d6ac1224ac30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e19af32c47485d9d86d6ac1224ac30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e19af32c47485d9d86d6ac1224ac30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e19af32c47485d9d86d6ac1224ac30.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_Zc2xye5la7KgU6LF5-RUd-1-Y=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.995422+00 2025-12-09 10:14:40.995426+00 3450 JS013FW#VS-D3 SPMX-20240815298577 \N \N \N 1 \N [{"file_id": "6dac64c8-8dea-498d-a429-3a85fa086e9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c443688ef5740c7bf83325823cc2acc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c443688ef5740c7bf83325823cc2acc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c443688ef5740c7bf83325823cc2acc.jpg", "file_size": 17794, "is_delete": false, "file_type": 1, "original_file_name": "JS013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c443688ef5740c7bf83325823cc2acc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c443688ef5740c7bf83325823cc2acc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c443688ef5740c7bf83325823cc2acc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c443688ef5740c7bf83325823cc2acc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c443688ef5740c7bf83325823cc2acc.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EnOy9yLQnbrC7sARwFOj15hy6Us=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.996447+00 2025-12-09 10:14:40.996451+00 3451 FHPKDK1-002-1 SPMX-20240815298583 \N \N \N 1 \N [{"file_id": "0c055be7-e8e1-4f88-92e3-107dcbcf00d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88eb9fc85ea94105a0653ce8836a6042.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88eb9fc85ea94105a0653ce8836a6042.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88eb9fc85ea94105a0653ce8836a6042.jpg", "file_size": 41581, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88eb9fc85ea94105a0653ce8836a6042.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88eb9fc85ea94105a0653ce8836a6042.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88eb9fc85ea94105a0653ce8836a6042.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88eb9fc85ea94105a0653ce8836a6042.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88eb9fc85ea94105a0653ce8836a6042.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NT-djTGanHxkGQKtjBSrbwTB9qE=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.997462+00 2025-12-09 10:14:40.997465+00 3452 0001-2FWE#VS-D3 SPMX-20240815298575 \N \N \N 1 \N [{"file_id": "57ce1df0-b8fe-4ecc-b45d-c1b52cf3e4c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "062d42844e3d4f22ab476d7c49ec069e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "062d42844e3d4f22ab476d7c49ec069e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "062d42844e3d4f22ab476d7c49ec069e.jpg", "file_size": 23392, "is_delete": false, "file_type": 1, "original_file_name": "0001-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062d42844e3d4f22ab476d7c49ec069e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062d42844e3d4f22ab476d7c49ec069e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062d42844e3d4f22ab476d7c49ec069e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/062d42844e3d4f22ab476d7c49ec069e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/062d42844e3d4f22ab476d7c49ec069e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yykx7PSOkylupItmMGPUoHa-f98=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.998496+00 2025-12-09 10:14:40.9985+00 3453 HSH009FW#7号VS-D3 SPMX-20240815298580 \N \N \N 1 \N [{"file_id": "2c265c29-cf2c-46d0-b7bb-f0f03f6c0e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa463cfffae24f87a8151b14fbb9e7dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa463cfffae24f87a8151b14fbb9e7dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa463cfffae24f87a8151b14fbb9e7dc.jpg", "file_size": 5095, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FW#7号VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa463cfffae24f87a8151b14fbb9e7dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa463cfffae24f87a8151b14fbb9e7dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa463cfffae24f87a8151b14fbb9e7dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa463cfffae24f87a8151b14fbb9e7dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa463cfffae24f87a8151b14fbb9e7dc.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_khgYd6sj9-MA_2WIcvPxyhT9Q=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:40.999512+00 2025-12-09 10:14:40.999515+00 3454 22C02-9-66#36码 SPMX-20240815298571 \N \N \N 1 \N [{"file_id": "c7e39a72-89b6-4162-854f-fb348651aaed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "313930ab56dd41c1b33ab6cf529c380d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "313930ab56dd41c1b33ab6cf529c380d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "313930ab56dd41c1b33ab6cf529c380d.jpg", "file_size": 24465, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313930ab56dd41c1b33ab6cf529c380d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313930ab56dd41c1b33ab6cf529c380d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313930ab56dd41c1b33ab6cf529c380d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/313930ab56dd41c1b33ab6cf529c380d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/313930ab56dd41c1b33ab6cf529c380d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pap9yE_e9HSn711SllLnocmZPd4=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.000552+00 2025-12-09 10:14:41.000556+00 3455 DH0961-11#RC23 SPMX-20240815298581 \N \N \N 1 \N [{"file_id": "c370876a-7162-4753-8e99-b61e36aa42f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eace01400aed4cdfb322c2e6ba707e56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eace01400aed4cdfb322c2e6ba707e56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eace01400aed4cdfb322c2e6ba707e56.jpg", "file_size": 74167, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-11#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eace01400aed4cdfb322c2e6ba707e56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eace01400aed4cdfb322c2e6ba707e56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eace01400aed4cdfb322c2e6ba707e56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eace01400aed4cdfb322c2e6ba707e56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eace01400aed4cdfb322c2e6ba707e56.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_zUSfTf967i2QaiiRyn7IzW3uY=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.001669+00 2025-12-09 10:14:41.001673+00 3456 DH0961-10#RC23 SPMX-20240815298568 \N \N \N 1 \N [{"file_id": "997a9764-c2ac-4f33-8685-0817ccb9634a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e11c695862ba45ddb79ffec8a3c13a06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e11c695862ba45ddb79ffec8a3c13a06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e11c695862ba45ddb79ffec8a3c13a06.jpg", "file_size": 44264, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-10#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11c695862ba45ddb79ffec8a3c13a06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11c695862ba45ddb79ffec8a3c13a06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11c695862ba45ddb79ffec8a3c13a06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e11c695862ba45ddb79ffec8a3c13a06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e11c695862ba45ddb79ffec8a3c13a06.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dKzCsdyJ99gPkOpsjZiY-iCb4aw=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.002763+00 2025-12-09 10:14:41.002767+00 3457 80037#短袖子 SPMX-20240815298569 \N \N \N 1 \N [{"file_id": "eb775cd1-48bb-442c-b4f8-88206817180c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "079a65c67789484eb60c4a7ba1bcf04b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "079a65c67789484eb60c4a7ba1bcf04b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "079a65c67789484eb60c4a7ba1bcf04b.jpg", "file_size": 22942, "is_delete": false, "file_type": 1, "original_file_name": "80037#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a65c67789484eb60c4a7ba1bcf04b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a65c67789484eb60c4a7ba1bcf04b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a65c67789484eb60c4a7ba1bcf04b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/079a65c67789484eb60c4a7ba1bcf04b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/079a65c67789484eb60c4a7ba1bcf04b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X3drInt6bzrDCuq9VtdJ4JV36Sc=", "createTime": "2024-08-15 14:38:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.003806+00 2025-12-09 10:14:41.00381+00 3458 LHJ8518#118#蓝色 SPMX-20240815298576 \N \N \N 1 \N [{"file_id": "0581736d-c703-4f00-b3da-f1324adc1be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2118b6137b32469ca3646aa8171918c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2118b6137b32469ca3646aa8171918c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2118b6137b32469ca3646aa8171918c5.jpg", "file_size": 8535, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2118b6137b32469ca3646aa8171918c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2118b6137b32469ca3646aa8171918c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2118b6137b32469ca3646aa8171918c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2118b6137b32469ca3646aa8171918c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2118b6137b32469ca3646aa8171918c5.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0aZWyIsGj_Hzc_6RigrChMmTLU=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.004856+00 2025-12-09 10:14:41.00486+00 3459 FHPKDK1-001-5 SPMX-20240815298573 \N \N \N 1 \N [{"file_id": "51cb3506-9f9e-4ad8-87bb-15df3d8a684c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2bb1e590215477984320e12e7f91ab9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2bb1e590215477984320e12e7f91ab9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2bb1e590215477984320e12e7f91ab9.jpg", "file_size": 35788, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-001-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb1e590215477984320e12e7f91ab9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb1e590215477984320e12e7f91ab9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb1e590215477984320e12e7f91ab9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2bb1e590215477984320e12e7f91ab9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2bb1e590215477984320e12e7f91ab9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkzaYrFxefpGOqt-nwQmats-K8k=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.005892+00 2025-12-09 10:14:41.005896+00 3460 80037 SPMX-20240815298578 \N \N \N 1 \N [{"file_id": "89799b5b-de21-4f26-b1ff-40121dd1d572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "260a47a98ca749bfbf666b26859d2b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "260a47a98ca749bfbf666b26859d2b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "260a47a98ca749bfbf666b26859d2b87.jpg", "file_size": 22942, "is_delete": false, "file_type": 1, "original_file_name": "80037.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260a47a98ca749bfbf666b26859d2b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260a47a98ca749bfbf666b26859d2b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260a47a98ca749bfbf666b26859d2b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/260a47a98ca749bfbf666b26859d2b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/260a47a98ca749bfbf666b26859d2b87.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bg0ANon1u7QPA1hXgsArRd42H6E=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.007876+00 2025-12-09 10:14:41.007881+00 3461 1040FWF#酒红2XL SPMX-20240815298579 \N \N \N 1 \N [{"file_id": "05571ee4-d554-4ffe-977c-c42552756a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5ca604a0bff470588948a0d1c48f699.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5ca604a0bff470588948a0d1c48f699.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5ca604a0bff470588948a0d1c48f699.jpg", "file_size": 16417, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#酒红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ca604a0bff470588948a0d1c48f699.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ca604a0bff470588948a0d1c48f699.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ca604a0bff470588948a0d1c48f699.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5ca604a0bff470588948a0d1c48f699.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5ca604a0bff470588948a0d1c48f699.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzqgknjG40qqgXAvLRAtxJiJtSg=", "createTime": "2024-08-15 14:38:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.00893+00 2025-12-09 10:14:41.008934+00 3462 22C02-9-66#捆条 SPMX-20240815298592 \N \N \N 1 \N [{"file_id": "68ef16b7-4762-4d8d-a44b-ab524fc32edf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b95e64e646b1405790cbaf0ee4e2ee5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b95e64e646b1405790cbaf0ee4e2ee5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b95e64e646b1405790cbaf0ee4e2ee5e.jpg", "file_size": 8677, "is_delete": false, "file_type": 1, "original_file_name": "22C02-9-66#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95e64e646b1405790cbaf0ee4e2ee5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95e64e646b1405790cbaf0ee4e2ee5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95e64e646b1405790cbaf0ee4e2ee5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b95e64e646b1405790cbaf0ee4e2ee5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b95e64e646b1405790cbaf0ee4e2ee5e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4se5VlL0Q4Q5-xbXrUUgMcRmHpk=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.009995+00 2025-12-09 10:14:41.009999+00 3463 DH0961-12#RC23 SPMX-20240815298593 \N \N \N 1 \N [{"file_id": "4b8dc078-1f73-4b81-bde2-17fb4ff7ca9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8ac3f15fceb480f894ec8d431b8aafe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8ac3f15fceb480f894ec8d431b8aafe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8ac3f15fceb480f894ec8d431b8aafe.jpg", "file_size": 72013, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-12#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ac3f15fceb480f894ec8d431b8aafe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ac3f15fceb480f894ec8d431b8aafe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ac3f15fceb480f894ec8d431b8aafe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8ac3f15fceb480f894ec8d431b8aafe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8ac3f15fceb480f894ec8d431b8aafe.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtENseMFw4W_i8V5n0tRr6fq7gw=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.011026+00 2025-12-09 10:14:41.01103+00 3464 C223-225#绿色 SPMX-20240815298584 \N \N \N 1 \N [{"file_id": "657a1c74-e9ce-44cf-bd73-a980332aab7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee3f16a904364059abec71793a546db9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee3f16a904364059abec71793a546db9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee3f16a904364059abec71793a546db9.jpg", "file_size": 20001, "is_delete": false, "file_type": 1, "original_file_name": "C223-225#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3f16a904364059abec71793a546db9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3f16a904364059abec71793a546db9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3f16a904364059abec71793a546db9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee3f16a904364059abec71793a546db9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee3f16a904364059abec71793a546db9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvYXlN4smP9cEjbEW8amjdq3KRI=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.012061+00 2025-12-09 10:14:41.012066+00 3465 LHJ8518#136#绿色 SPMX-20240815298587 \N \N \N 1 \N [{"file_id": "f802eb03-98b2-4b79-b3b3-ed0e138a7b94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d788c197c59e4b05a46a3d66cf04d98a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d788c197c59e4b05a46a3d66cf04d98a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d788c197c59e4b05a46a3d66cf04d98a.jpg", "file_size": 7774, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#136#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d788c197c59e4b05a46a3d66cf04d98a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d788c197c59e4b05a46a3d66cf04d98a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d788c197c59e4b05a46a3d66cf04d98a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d788c197c59e4b05a46a3d66cf04d98a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d788c197c59e4b05a46a3d66cf04d98a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4E49IfUmdYNlKRs4eBxZlF1HTQ=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.013099+00 2025-12-09 10:14:41.013103+00 3466 FHPKDK1-002-2 SPMX-20240815298595 \N \N \N 1 \N [{"file_id": "6e0e73d8-8aa4-40b7-a249-7db322da919a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e9f5dcc11c74af0bae68d96e7ef5b36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e9f5dcc11c74af0bae68d96e7ef5b36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e9f5dcc11c74af0bae68d96e7ef5b36.jpg", "file_size": 42338, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e9f5dcc11c74af0bae68d96e7ef5b36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e9f5dcc11c74af0bae68d96e7ef5b36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e9f5dcc11c74af0bae68d96e7ef5b36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e9f5dcc11c74af0bae68d96e7ef5b36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e9f5dcc11c74af0bae68d96e7ef5b36.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2quJYBNm1mkrKhjxlbmCXly078=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.014134+00 2025-12-09 10:14:41.014138+00 3467 JS013FWE#VS-D3 SPMX-20240815298588 \N \N \N 1 \N [{"file_id": "2036ee39-8016-48fe-9a24-a28de36d85c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1487c6e110b94841af86eedba69a4804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1487c6e110b94841af86eedba69a4804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1487c6e110b94841af86eedba69a4804.jpg", "file_size": 12138, "is_delete": false, "file_type": 1, "original_file_name": "JS013FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1487c6e110b94841af86eedba69a4804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1487c6e110b94841af86eedba69a4804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1487c6e110b94841af86eedba69a4804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1487c6e110b94841af86eedba69a4804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1487c6e110b94841af86eedba69a4804.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsOTayG8Jt1MSCyBRdCvTCnuq2w=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.01518+00 2025-12-09 10:14:41.015184+00 3468 80038#短袖匹布 SPMX-20240815298589 \N \N \N 1 \N [{"file_id": "cd18ee9a-1be8-4a88-9a2e-be29ffe4a55d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae64d54c484b4322ac6650e18fc76cd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae64d54c484b4322ac6650e18fc76cd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae64d54c484b4322ac6650e18fc76cd0.jpg", "file_size": 21364, "is_delete": false, "file_type": 1, "original_file_name": "80038#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae64d54c484b4322ac6650e18fc76cd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae64d54c484b4322ac6650e18fc76cd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae64d54c484b4322ac6650e18fc76cd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae64d54c484b4322ac6650e18fc76cd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae64d54c484b4322ac6650e18fc76cd0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cltDfrhcjRZIt7-25W5s5tmf4ik=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.016191+00 2025-12-09 10:14:41.016195+00 3469 0001-2FWF#V5曲线 SPMX-20240815298586 \N \N \N 1 \N [{"file_id": "23c3e011-30cd-4783-828e-50ce251024ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12c10ceb681f4737b4fb2abafa384f6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12c10ceb681f4737b4fb2abafa384f6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12c10ceb681f4737b4fb2abafa384f6f.jpg", "file_size": 20279, "is_delete": false, "file_type": 1, "original_file_name": "0001-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c10ceb681f4737b4fb2abafa384f6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c10ceb681f4737b4fb2abafa384f6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c10ceb681f4737b4fb2abafa384f6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12c10ceb681f4737b4fb2abafa384f6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12c10ceb681f4737b4fb2abafa384f6f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rxHEx5a9Rpoz6x9nyq2ptd2jW8=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.017269+00 2025-12-09 10:14:41.017273+00 3470 1040FWF#酒红L SPMX-20240815298590 \N \N \N 1 \N [{"file_id": "088fc04f-e0ea-47e9-ae2f-3a061d544f2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cec91bc79f145fcbb5c92f5506d30f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cec91bc79f145fcbb5c92f5506d30f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cec91bc79f145fcbb5c92f5506d30f8.jpg", "file_size": 15120, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#酒红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec91bc79f145fcbb5c92f5506d30f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec91bc79f145fcbb5c92f5506d30f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec91bc79f145fcbb5c92f5506d30f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cec91bc79f145fcbb5c92f5506d30f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cec91bc79f145fcbb5c92f5506d30f8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTTa2zXKH-NybzBfMG1JMy4mSEY=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.018335+00 2025-12-09 10:14:41.018339+00 3471 C223-225#黑色 SPMX-20240815298594 \N \N \N 1 \N [{"file_id": "59f18daf-bcef-4d66-a7f2-9fb101a650de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b160a82461847fbb6846fcbefe787b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b160a82461847fbb6846fcbefe787b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b160a82461847fbb6846fcbefe787b1.jpg", "file_size": 22623, "is_delete": false, "file_type": 1, "original_file_name": "C223-225#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b160a82461847fbb6846fcbefe787b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b160a82461847fbb6846fcbefe787b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b160a82461847fbb6846fcbefe787b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b160a82461847fbb6846fcbefe787b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b160a82461847fbb6846fcbefe787b1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Da3roh9aogJeqXHeuh0sUPDUhXQ=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.019386+00 2025-12-09 10:14:41.01939+00 3472 HSH009FWE#VS-D3 SPMX-20240815298591 \N \N \N 1 \N [{"file_id": "4ec61b88-fd1a-4796-94cb-52646e3ed41a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee78f193803f47ec9be352e24717085b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee78f193803f47ec9be352e24717085b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee78f193803f47ec9be352e24717085b.jpg", "file_size": 20037, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee78f193803f47ec9be352e24717085b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee78f193803f47ec9be352e24717085b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee78f193803f47ec9be352e24717085b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee78f193803f47ec9be352e24717085b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee78f193803f47ec9be352e24717085b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYweVBMeLxifI_a9vKEbH4RIbGM=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.020426+00 2025-12-09 10:14:41.02043+00 3473 LZ1186#上身1号色 SPMX-20240815298585 \N \N \N 1 \N [{"file_id": "ea50043d-6208-409a-bb83-f3f96cff93bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aada9c67736d4ea296d8da6a0a549f30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aada9c67736d4ea296d8da6a0a549f30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aada9c67736d4ea296d8da6a0a549f30.jpg", "file_size": 11276, "is_delete": false, "file_type": 1, "original_file_name": "LZ1186#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aada9c67736d4ea296d8da6a0a549f30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aada9c67736d4ea296d8da6a0a549f30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aada9c67736d4ea296d8da6a0a549f30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aada9c67736d4ea296d8da6a0a549f30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aada9c67736d4ea296d8da6a0a549f30.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-vapimJ_UhNP2FC4kDItNAg3ZA=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.021476+00 2025-12-09 10:14:41.021481+00 3474 LHJ8518#20#枣红 SPMX-20240815298597 \N \N \N 1 \N [{"file_id": "388b6cfc-366f-4b9f-a5d6-e70d73e1ceed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "289f6e9b15ea413484634a670452bbae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "289f6e9b15ea413484634a670452bbae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "289f6e9b15ea413484634a670452bbae.jpg", "file_size": 7324, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f6e9b15ea413484634a670452bbae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f6e9b15ea413484634a670452bbae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f6e9b15ea413484634a670452bbae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/289f6e9b15ea413484634a670452bbae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/289f6e9b15ea413484634a670452bbae.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlQhLhwAymcl5_98I2Ea9SMmcn0=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.02253+00 2025-12-09 10:14:41.022534+00 3475 0001-30FWE#VS-D3 SPMX-20240815298596 \N \N \N 1 \N [{"file_id": "e8859883-62fa-461b-9546-0acef23078a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db64c469650f4636bb8210f7f368af19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db64c469650f4636bb8210f7f368af19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db64c469650f4636bb8210f7f368af19.jpg", "file_size": 17307, "is_delete": false, "file_type": 1, "original_file_name": "0001-30FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db64c469650f4636bb8210f7f368af19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db64c469650f4636bb8210f7f368af19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db64c469650f4636bb8210f7f368af19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db64c469650f4636bb8210f7f368af19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db64c469650f4636bb8210f7f368af19.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdL0AdiwoVC34gubmkYqB_F_g58=", "createTime": "2024-08-15 14:39:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.023579+00 2025-12-09 10:14:41.023583+00 3476 HSH009FWE#黄VS-D3 SPMX-20240815298602 \N \N \N 1 \N [{"file_id": "99bcf712-21bc-4038-809d-aeb726e022b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aceb5a8d1e747b2a6216d7e33c2dafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aceb5a8d1e747b2a6216d7e33c2dafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aceb5a8d1e747b2a6216d7e33c2dafd.jpg", "file_size": 17621, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FWE#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aceb5a8d1e747b2a6216d7e33c2dafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aceb5a8d1e747b2a6216d7e33c2dafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aceb5a8d1e747b2a6216d7e33c2dafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aceb5a8d1e747b2a6216d7e33c2dafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aceb5a8d1e747b2a6216d7e33c2dafd.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WeI_BbswuOcsd_aEp8K5eDETe1k=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.024597+00 2025-12-09 10:14:41.024601+00 3477 80039#短袖匹布 SPMX-20240815298603 \N \N \N 1 \N [{"file_id": "7814d413-601a-4b4b-b76f-31f41c6f1943", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b57a43941561448a940193a277d9b2df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b57a43941561448a940193a277d9b2df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b57a43941561448a940193a277d9b2df.jpg", "file_size": 20584, "is_delete": false, "file_type": 1, "original_file_name": "80039#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57a43941561448a940193a277d9b2df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57a43941561448a940193a277d9b2df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57a43941561448a940193a277d9b2df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b57a43941561448a940193a277d9b2df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b57a43941561448a940193a277d9b2df.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6kg5BM7HorNvR3kAukEO-oEubIE=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.025771+00 2025-12-09 10:14:41.025776+00 3478 LZ1186#上身2号色 SPMX-20240815298598 \N \N \N 1 \N [{"file_id": "b3e88105-4936-495d-a8c2-b46f6cc4eb11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1dbc0827d1d4367b456b1dba97afa6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1dbc0827d1d4367b456b1dba97afa6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1dbc0827d1d4367b456b1dba97afa6a.jpg", "file_size": 11803, "is_delete": false, "file_type": 1, "original_file_name": "LZ1186#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1dbc0827d1d4367b456b1dba97afa6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1dbc0827d1d4367b456b1dba97afa6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1dbc0827d1d4367b456b1dba97afa6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1dbc0827d1d4367b456b1dba97afa6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1dbc0827d1d4367b456b1dba97afa6a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXh-1Nm17BYS4rI9hTzWNzEBfik=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.026872+00 2025-12-09 10:14:41.026876+00 3479 22C09-09-58#30码 SPMX-20240815298600 \N \N \N 1 \N [{"file_id": "56ae5432-a139-4d44-b6ae-7c5329179048", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2b1e7de10c74c678c74b196fd788cc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2b1e7de10c74c678c74b196fd788cc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2b1e7de10c74c678c74b196fd788cc8.jpg", "file_size": 21011, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-58#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b1e7de10c74c678c74b196fd788cc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b1e7de10c74c678c74b196fd788cc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b1e7de10c74c678c74b196fd788cc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2b1e7de10c74c678c74b196fd788cc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2b1e7de10c74c678c74b196fd788cc8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ydseOhdEdGVCCCry8HIN9A0wuz0=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.02794+00 2025-12-09 10:14:41.027945+00 3480 1040FWF#酒红XL SPMX-20240815298599 \N \N \N 1 \N [{"file_id": "1adba4ce-562b-449d-9d97-7608ad204f97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae8d4299d9334a6781e8fe38ffb16cf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae8d4299d9334a6781e8fe38ffb16cf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae8d4299d9334a6781e8fe38ffb16cf4.jpg", "file_size": 15571, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#酒红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8d4299d9334a6781e8fe38ffb16cf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8d4299d9334a6781e8fe38ffb16cf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8d4299d9334a6781e8fe38ffb16cf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae8d4299d9334a6781e8fe38ffb16cf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae8d4299d9334a6781e8fe38ffb16cf4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSeRtO9NxJ97DYeEq6yCLnIo1gk=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.02905+00 2025-12-09 10:14:41.029054+00 3481 JS014FW#VS-D3 SPMX-20240815298601 \N \N \N 1 \N [{"file_id": "da647062-3489-4cb7-a297-66ae62d49aa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d80b4518ecf349a3ba586b0d51043cf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d80b4518ecf349a3ba586b0d51043cf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d80b4518ecf349a3ba586b0d51043cf0.jpg", "file_size": 11042, "is_delete": false, "file_type": 1, "original_file_name": "JS014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b4518ecf349a3ba586b0d51043cf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b4518ecf349a3ba586b0d51043cf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b4518ecf349a3ba586b0d51043cf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d80b4518ecf349a3ba586b0d51043cf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d80b4518ecf349a3ba586b0d51043cf0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvS191XTTBK51H6Wndu_bVKmfBQ=", "createTime": "2024-08-15 14:39:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.030148+00 2025-12-09 10:14:41.030151+00 3482 0001-30FWE#VS-D3番禺调色 SPMX-20240815298606 \N \N \N 1 \N [{"file_id": "97080978-93be-4ef2-a23d-bff16cb78fc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg", "file_size": 17447, "is_delete": false, "file_type": 1, "original_file_name": "0001-30FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b40ce0e5d8a4d9eb1e59df73b36fa40.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6Q_Ykn6Ow_R3849MyP8f7Igdjg=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.031278+00 2025-12-09 10:14:41.031282+00 3483 FHPKDK1-002-3 SPMX-20240815298608 \N \N \N 1 \N [{"file_id": "44739e53-2aeb-4f5e-9d6c-85d8f66525c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94ec05b7a2d94acc98847ffe628a0856.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94ec05b7a2d94acc98847ffe628a0856.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94ec05b7a2d94acc98847ffe628a0856.jpg", "file_size": 38120, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec05b7a2d94acc98847ffe628a0856.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec05b7a2d94acc98847ffe628a0856.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec05b7a2d94acc98847ffe628a0856.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94ec05b7a2d94acc98847ffe628a0856.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94ec05b7a2d94acc98847ffe628a0856.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYptonK83fCE1yX999Y6eyYYqMk=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.032346+00 2025-12-09 10:14:41.03235+00 3484 C225#101粉 SPMX-20240815298604 \N \N \N 1 \N [{"file_id": "356f86be-590e-48f8-a660-cd1f1a642c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8d259344c64436ebfd8e9384532ac60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8d259344c64436ebfd8e9384532ac60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8d259344c64436ebfd8e9384532ac60.jpg", "file_size": 19617, "is_delete": false, "file_type": 1, "original_file_name": "C225#101粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d259344c64436ebfd8e9384532ac60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d259344c64436ebfd8e9384532ac60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d259344c64436ebfd8e9384532ac60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8d259344c64436ebfd8e9384532ac60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8d259344c64436ebfd8e9384532ac60.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsdwEAPIBaT2bysCFvGqTd75kn0=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.033833+00 2025-12-09 10:14:41.033837+00 3485 DH0961-13#RC23 SPMX-20240815298605 \N \N \N 1 \N [{"file_id": "566d1530-991d-43b3-ba86-57d3e1fc535f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "421f2c1044ac4736b0c8c59bff5ab85e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "421f2c1044ac4736b0c8c59bff5ab85e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "421f2c1044ac4736b0c8c59bff5ab85e.jpg", "file_size": 60930, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-13#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421f2c1044ac4736b0c8c59bff5ab85e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421f2c1044ac4736b0c8c59bff5ab85e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421f2c1044ac4736b0c8c59bff5ab85e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/421f2c1044ac4736b0c8c59bff5ab85e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/421f2c1044ac4736b0c8c59bff5ab85e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMbsN0h7UbQUqY0o601CWrumLlk=", "createTime": "2024-08-15 14:39:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.034872+00 2025-12-09 10:14:41.034876+00 3486 22C09-09-58#32码 SPMX-20240815298607 \N \N \N 1 \N [{"file_id": "5ab2fd32-1657-492c-86c7-9cf5ae2af2a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "336ecb3b4f0c4a4fbdb92a11d28da41e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "336ecb3b4f0c4a4fbdb92a11d28da41e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "336ecb3b4f0c4a4fbdb92a11d28da41e.jpg", "file_size": 20847, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-58#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336ecb3b4f0c4a4fbdb92a11d28da41e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336ecb3b4f0c4a4fbdb92a11d28da41e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336ecb3b4f0c4a4fbdb92a11d28da41e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/336ecb3b4f0c4a4fbdb92a11d28da41e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/336ecb3b4f0c4a4fbdb92a11d28da41e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGxbwqbE_DJ5i11JzB6pEaAF3C0=", "createTime": "2024-08-15 14:39:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.035945+00 2025-12-09 10:14:41.035949+00 3487 8003FWF#墨绿短款上身 SPMX-20240815298613 \N \N \N 1 \N [{"file_id": "bbf38ae2-15d2-4410-a303-7def9b08b4a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e222707401dc477f92fd97d6080d6c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e222707401dc477f92fd97d6080d6c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e222707401dc477f92fd97d6080d6c13.jpg", "file_size": 18782, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#墨绿短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e222707401dc477f92fd97d6080d6c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e222707401dc477f92fd97d6080d6c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e222707401dc477f92fd97d6080d6c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e222707401dc477f92fd97d6080d6c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e222707401dc477f92fd97d6080d6c13.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9-HO_XAPtaHK_Cob9Y1wQwGpTo8=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.036994+00 2025-12-09 10:14:41.036998+00 3488 1040FWF#黄色 SPMX-20240815298615 \N \N \N 1 \N [{"file_id": "6a4a26e4-078c-4825-a348-df3687165d18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c5a03f9287e4e1b9cb8834d68e19cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c5a03f9287e4e1b9cb8834d68e19cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c5a03f9287e4e1b9cb8834d68e19cea.jpg", "file_size": 17118, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5a03f9287e4e1b9cb8834d68e19cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5a03f9287e4e1b9cb8834d68e19cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5a03f9287e4e1b9cb8834d68e19cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c5a03f9287e4e1b9cb8834d68e19cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c5a03f9287e4e1b9cb8834d68e19cea.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nih0HXdP2cPUsar_XUv-jwrEHc8=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.038046+00 2025-12-09 10:14:41.03805+00 3489 8003FWF#墨绿短款下摆 SPMX-20240815298625 \N \N \N 1 \N [{"file_id": "fb825675-2e38-4bad-94c3-80ab10260ed7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50a407c75e774fc98c47a5f8fcb18a69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50a407c75e774fc98c47a5f8fcb18a69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50a407c75e774fc98c47a5f8fcb18a69.jpg", "file_size": 22889, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#墨绿短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a407c75e774fc98c47a5f8fcb18a69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a407c75e774fc98c47a5f8fcb18a69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a407c75e774fc98c47a5f8fcb18a69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50a407c75e774fc98c47a5f8fcb18a69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50a407c75e774fc98c47a5f8fcb18a69.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCRe8Z9hnsmK6pTa3DMNI228BJw=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.039062+00 2025-12-09 10:14:41.039066+00 3490 HSH010#D SPMX-20240815298620 \N \N \N 1 \N [{"file_id": "75a7ebdf-6552-4af5-bde6-0e4ce5bac8f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b29c0d29afce41f9831c5765a77b870a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b29c0d29afce41f9831c5765a77b870a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b29c0d29afce41f9831c5765a77b870a.jpg", "file_size": 21930, "is_delete": false, "file_type": 1, "original_file_name": "HSH010#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b29c0d29afce41f9831c5765a77b870a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b29c0d29afce41f9831c5765a77b870a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b29c0d29afce41f9831c5765a77b870a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b29c0d29afce41f9831c5765a77b870a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b29c0d29afce41f9831c5765a77b870a.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eAW1cBo63ZIsqAsdwqwKPUTTBag=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.04013+00 2025-12-09 10:14:41.040133+00 3491 LZ1186#上身4号色 SPMX-20240815298623 \N \N \N 1 \N [{"file_id": "6adacf64-8d6f-4b72-94dc-e8fe9c5bb392", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6f103ad2c0d4260bff961161b2f9a2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6f103ad2c0d4260bff961161b2f9a2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6f103ad2c0d4260bff961161b2f9a2b.jpg", "file_size": 11545, "is_delete": false, "file_type": 1, "original_file_name": "LZ1186#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f103ad2c0d4260bff961161b2f9a2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f103ad2c0d4260bff961161b2f9a2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f103ad2c0d4260bff961161b2f9a2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6f103ad2c0d4260bff961161b2f9a2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6f103ad2c0d4260bff961161b2f9a2b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BbdkmN07u-MmmkbOlENdObgj-BQ=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.041168+00 2025-12-09 10:14:41.041172+00 3492 HSH009FWE#黑VS-D3 SPMX-20240815298609 \N \N \N 1 \N [{"file_id": "7247d8ef-fabc-4c1c-9f1d-02d818730696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "128307f903d34b1097b108891e069d88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "128307f903d34b1097b108891e069d88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "128307f903d34b1097b108891e069d88.jpg", "file_size": 18928, "is_delete": false, "file_type": 1, "original_file_name": "HSH009FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128307f903d34b1097b108891e069d88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128307f903d34b1097b108891e069d88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128307f903d34b1097b108891e069d88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/128307f903d34b1097b108891e069d88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/128307f903d34b1097b108891e069d88.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4N_B4xC6uMA2x6ZD_NeDLtEEtrg=", "createTime": "2024-08-15 14:39:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.042259+00 2025-12-09 10:14:41.042264+00 3493 22C09-09-58#34码 SPMX-20240815298616 \N \N \N 1 \N [{"file_id": "c1044c82-30cf-4ef6-b804-fed57cf1cd36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d896a924bb944d893116fc94e56d261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d896a924bb944d893116fc94e56d261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d896a924bb944d893116fc94e56d261.jpg", "file_size": 20420, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-58#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d896a924bb944d893116fc94e56d261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d896a924bb944d893116fc94e56d261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d896a924bb944d893116fc94e56d261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d896a924bb944d893116fc94e56d261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d896a924bb944d893116fc94e56d261.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29Rds_Llwo-BKeqDwT_8bknKBA0=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.0436+00 2025-12-09 10:14:41.043604+00 3494 JS015FW#LW浅15 SPMX-20240815298621 \N \N \N 1 \N [{"file_id": "232680c3-1c05-442c-b22e-e47c402b14e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1919837790334b74a45dd073423841b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1919837790334b74a45dd073423841b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1919837790334b74a45dd073423841b9.jpg", "file_size": 14140, "is_delete": false, "file_type": 1, "original_file_name": "JS015FW#LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1919837790334b74a45dd073423841b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1919837790334b74a45dd073423841b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1919837790334b74a45dd073423841b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1919837790334b74a45dd073423841b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1919837790334b74a45dd073423841b9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLJrAKW03TpfdqwLcKKzTnj47TQ=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.044984+00 2025-12-09 10:14:41.044989+00 3495 LHJ8518#25# SPMX-20240815298612 \N \N \N 1 \N [{"file_id": "07187cf2-8681-40da-babb-503c88971a4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d33a9c33504040ddba2e03e400b1bf78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d33a9c33504040ddba2e03e400b1bf78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d33a9c33504040ddba2e03e400b1bf78.jpg", "file_size": 9321, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#25#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33a9c33504040ddba2e03e400b1bf78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33a9c33504040ddba2e03e400b1bf78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33a9c33504040ddba2e03e400b1bf78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d33a9c33504040ddba2e03e400b1bf78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d33a9c33504040ddba2e03e400b1bf78.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rb56Kr0wCb97eMIZA6EqlGDVvD4=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.046297+00 2025-12-09 10:14:41.046301+00 3496 FHPKDK1-002-4 SPMX-20240815298619 \N \N \N 1 \N [{"file_id": "c3464b44-eed6-4aa6-ab98-e19dd1b3f1e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bbba0938e9044b3b85feaf356d7ecbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bbba0938e9044b3b85feaf356d7ecbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bbba0938e9044b3b85feaf356d7ecbb.jpg", "file_size": 45105, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbba0938e9044b3b85feaf356d7ecbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbba0938e9044b3b85feaf356d7ecbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbba0938e9044b3b85feaf356d7ecbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bbba0938e9044b3b85feaf356d7ecbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bbba0938e9044b3b85feaf356d7ecbb.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGRbM6T2Ujy3agoRvC9wIRD6ndc=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.047631+00 2025-12-09 10:14:41.047635+00 3497 1040FWF#黄色2XL SPMX-20240815298624 \N \N \N 1 \N [{"file_id": "7f10aad8-d687-4939-ba11-dc3fadd7354d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6a9367abccc427ab9e72ef6d10d9658.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6a9367abccc427ab9e72ef6d10d9658.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6a9367abccc427ab9e72ef6d10d9658.jpg", "file_size": 14578, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a9367abccc427ab9e72ef6d10d9658.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a9367abccc427ab9e72ef6d10d9658.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a9367abccc427ab9e72ef6d10d9658.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6a9367abccc427ab9e72ef6d10d9658.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6a9367abccc427ab9e72ef6d10d9658.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnPxGq8mPIKj_-bmEXsAj3GQe-I=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.054238+00 2025-12-09 10:14:41.054242+00 3502 JS014FWE#VS-D3 SPMX-20240815298611 \N \N \N 1 \N [{"file_id": "e88f38cc-cd2d-4c06-a05f-6b531853208b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76793df1159b4b409286996dee5142a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76793df1159b4b409286996dee5142a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76793df1159b4b409286996dee5142a8.jpg", "file_size": 9176, "is_delete": false, "file_type": 1, "original_file_name": "JS014FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76793df1159b4b409286996dee5142a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76793df1159b4b409286996dee5142a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76793df1159b4b409286996dee5142a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76793df1159b4b409286996dee5142a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76793df1159b4b409286996dee5142a8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOfikTkHzAV3ZT6tkJa5XXsxz10=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.04897+00 2025-12-09 10:14:41.048974+00 3498 0001-30FWF#V5曲线 SPMX-20240815298614 \N \N \N 1 \N [{"file_id": "9cffc22e-1f95-445e-95b6-1db6bc8501ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f9db17e644b43b48c8757a202ff571c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f9db17e644b43b48c8757a202ff571c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f9db17e644b43b48c8757a202ff571c.jpg", "file_size": 15859, "is_delete": false, "file_type": 1, "original_file_name": "0001-30FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f9db17e644b43b48c8757a202ff571c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f9db17e644b43b48c8757a202ff571c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f9db17e644b43b48c8757a202ff571c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f9db17e644b43b48c8757a202ff571c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f9db17e644b43b48c8757a202ff571c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKuxY2twC64DupZ720LnbYZVJsQ=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.050323+00 2025-12-09 10:14:41.050328+00 3499 LHJ8518#25#土黄 SPMX-20240815298622 \N \N \N 1 \N [{"file_id": "64a6075e-4d52-4dcd-83ac-114dd8adfd03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18a3915115ba4d74b70b0b7cd31f6243.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18a3915115ba4d74b70b0b7cd31f6243.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18a3915115ba4d74b70b0b7cd31f6243.jpg", "file_size": 9321, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3915115ba4d74b70b0b7cd31f6243.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3915115ba4d74b70b0b7cd31f6243.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3915115ba4d74b70b0b7cd31f6243.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18a3915115ba4d74b70b0b7cd31f6243.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18a3915115ba4d74b70b0b7cd31f6243.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xd7PfSsywPCz--1DSRcP9czg4x8=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.051754+00 2025-12-09 10:14:41.051758+00 3500 LZ1186#上身3号色 SPMX-20240815298610 \N \N \N 1 \N [{"file_id": "c28bc708-c1a5-4e8b-9259-5b38151274e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6c908c878634535b05190883704f4be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6c908c878634535b05190883704f4be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6c908c878634535b05190883704f4be.jpg", "file_size": 11494, "is_delete": false, "file_type": 1, "original_file_name": "LZ1186#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c908c878634535b05190883704f4be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c908c878634535b05190883704f4be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c908c878634535b05190883704f4be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6c908c878634535b05190883704f4be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6c908c878634535b05190883704f4be.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zw7RYTOp1qGio3AXu2Ks0-O7G7A=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.053184+00 2025-12-09 10:14:41.053188+00 3501 C225#166#绿色 SPMX-20240815298618 \N \N \N 1 \N [{"file_id": "6364d1d7-e333-448d-b7f8-48138fdd536a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28105872057e4816b10508ffb3703c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28105872057e4816b10508ffb3703c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28105872057e4816b10508ffb3703c8e.jpg", "file_size": 20983, "is_delete": false, "file_type": 1, "original_file_name": "C225#166#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28105872057e4816b10508ffb3703c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28105872057e4816b10508ffb3703c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28105872057e4816b10508ffb3703c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28105872057e4816b10508ffb3703c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28105872057e4816b10508ffb3703c8e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuAUXjS8Tyu2w6DMo1-Ht3dvIRc=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.055496+00 2025-12-09 10:14:41.055501+00 3503 DH0961-14#条纹 SPMX-20240815298617 \N \N \N 1 \N [{"file_id": "62e27e47-4750-40e2-be2e-a097ae72eb62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f735f7df5013433bb244e7ebc6ad005b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f735f7df5013433bb244e7ebc6ad005b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f735f7df5013433bb244e7ebc6ad005b.jpg", "file_size": 21675, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-14#条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f735f7df5013433bb244e7ebc6ad005b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f735f7df5013433bb244e7ebc6ad005b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f735f7df5013433bb244e7ebc6ad005b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f735f7df5013433bb244e7ebc6ad005b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f735f7df5013433bb244e7ebc6ad005b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sN60t80czMrVyBNeaFOr7YHzu4=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.056762+00 2025-12-09 10:14:41.056766+00 3504 FHPKDK1-002-5 SPMX-20240815298629 \N \N \N 1 \N [{"file_id": "0f9083e8-46e4-4da5-8660-a5f0fda07e6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2410431b21804f4bb3da6b2d50ae6412.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2410431b21804f4bb3da6b2d50ae6412.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2410431b21804f4bb3da6b2d50ae6412.jpg", "file_size": 36542, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-002-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2410431b21804f4bb3da6b2d50ae6412.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2410431b21804f4bb3da6b2d50ae6412.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2410431b21804f4bb3da6b2d50ae6412.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2410431b21804f4bb3da6b2d50ae6412.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2410431b21804f4bb3da6b2d50ae6412.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxXJ-Fbl4w4KNz4qUMZbSw0CAJQ=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.057989+00 2025-12-09 10:14:41.057993+00 3505 DH0961-2#RC23 SPMX-20240815298638 \N \N \N 1 \N [{"file_id": "35817804-f180-4ce8-83ba-6826ed084dc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71ecc3a7b71045d39fe504fd1ca84087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71ecc3a7b71045d39fe504fd1ca84087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71ecc3a7b71045d39fe504fd1ca84087.jpg", "file_size": 65783, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ecc3a7b71045d39fe504fd1ca84087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ecc3a7b71045d39fe504fd1ca84087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ecc3a7b71045d39fe504fd1ca84087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71ecc3a7b71045d39fe504fd1ca84087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71ecc3a7b71045d39fe504fd1ca84087.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akbbCJggOQIXFjNhTLrbJk0DWrI=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.059226+00 2025-12-09 10:14:41.059231+00 3506 LZ1187#上身1号色 SPMX-20240815298634 \N \N \N 1 \N [{"file_id": "c2eb8b92-df73-429e-be9c-9c253b0c8731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d63900926264f21bb6e8b2af0c5cfdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d63900926264f21bb6e8b2af0c5cfdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d63900926264f21bb6e8b2af0c5cfdf.jpg", "file_size": 12168, "is_delete": false, "file_type": 1, "original_file_name": "LZ1187#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63900926264f21bb6e8b2af0c5cfdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63900926264f21bb6e8b2af0c5cfdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63900926264f21bb6e8b2af0c5cfdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d63900926264f21bb6e8b2af0c5cfdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d63900926264f21bb6e8b2af0c5cfdf.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S2gaVwx284Sns22IHh7rIoN180w=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.060474+00 2025-12-09 10:14:41.060479+00 3507 8003FWF#墨绿短款袖子 SPMX-20240815298637 \N \N \N 1 \N [{"file_id": "b3b0775c-4dbe-434f-9597-6ad8abd7f731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg", "file_size": 14768, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#墨绿短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bfe341b79fa4b3ebeb2d2cbd1f69f46.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILBL3x64lQ0AT0-PUwkWRumDChI=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.061751+00 2025-12-09 10:14:41.061756+00 3508 0001-31FWE#VS-D3 SPMX-20240815298626 \N \N \N 1 \N [{"file_id": "60fbe11d-f66d-4aa8-a8f6-216dfee58cf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ee79b247ab44e9c863f6cc2dbe36bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ee79b247ab44e9c863f6cc2dbe36bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ee79b247ab44e9c863f6cc2dbe36bd3.jpg", "file_size": 10044, "is_delete": false, "file_type": 1, "original_file_name": "0001-31FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee79b247ab44e9c863f6cc2dbe36bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee79b247ab44e9c863f6cc2dbe36bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee79b247ab44e9c863f6cc2dbe36bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ee79b247ab44e9c863f6cc2dbe36bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ee79b247ab44e9c863f6cc2dbe36bd3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icavGv1BdqOfDleHwwWB-dxfFRE=", "createTime": "2024-08-15 14:39:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.062992+00 2025-12-09 10:14:41.062997+00 3509 22C09-09-58#38码 SPMX-20240815298639 \N \N \N 1 \N [{"file_id": "1ddbd8d0-a29d-4e92-97db-ab4505840069", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3062bec2ca154c9d90f6ddeb0dd2ee84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3062bec2ca154c9d90f6ddeb0dd2ee84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3062bec2ca154c9d90f6ddeb0dd2ee84.jpg", "file_size": 19565, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-58#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3062bec2ca154c9d90f6ddeb0dd2ee84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3062bec2ca154c9d90f6ddeb0dd2ee84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3062bec2ca154c9d90f6ddeb0dd2ee84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3062bec2ca154c9d90f6ddeb0dd2ee84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3062bec2ca154c9d90f6ddeb0dd2ee84.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TCjU1FCO8E6ZCMpzdMGDtfFLYJE=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.064239+00 2025-12-09 10:14:41.064243+00 3510 LHJ8518#38#粉色 SPMX-20240815298633 \N \N \N 1 \N [{"file_id": "594bda5f-5110-40cb-bbe5-9e981d04e27e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e0d85d1aee0469ca27a01d69d092005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e0d85d1aee0469ca27a01d69d092005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e0d85d1aee0469ca27a01d69d092005.jpg", "file_size": 7940, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#38#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0d85d1aee0469ca27a01d69d092005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0d85d1aee0469ca27a01d69d092005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0d85d1aee0469ca27a01d69d092005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e0d85d1aee0469ca27a01d69d092005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e0d85d1aee0469ca27a01d69d092005.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7vhgZtttNdm9u2CWca7aks_poc=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.065482+00 2025-12-09 10:14:41.065487+00 3511 JS015FWE#VS-D3 SPMX-20240815298630 \N \N \N 1 \N [{"file_id": "8bb700e6-1c5c-4b08-9724-bba691616ec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7f350fc173b47f89b55ba3f397227c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7f350fc173b47f89b55ba3f397227c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7f350fc173b47f89b55ba3f397227c9.jpg", "file_size": 12471, "is_delete": false, "file_type": 1, "original_file_name": "JS015FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f350fc173b47f89b55ba3f397227c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f350fc173b47f89b55ba3f397227c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f350fc173b47f89b55ba3f397227c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7f350fc173b47f89b55ba3f397227c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7f350fc173b47f89b55ba3f397227c9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y0Of3UJ7OT-jDzxT7TyiWG0wo1A=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.066755+00 2025-12-09 10:14:41.06676+00 3512 1040FWF#黄色L SPMX-20240815298635 \N \N \N 1 \N [{"file_id": "59f3c92e-0262-446d-85c0-5842ec17206a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ab2a9518d14c418ad5545356761f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ab2a9518d14c418ad5545356761f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ab2a9518d14c418ad5545356761f37.jpg", "file_size": 13880, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab2a9518d14c418ad5545356761f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab2a9518d14c418ad5545356761f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab2a9518d14c418ad5545356761f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ab2a9518d14c418ad5545356761f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ab2a9518d14c418ad5545356761f37.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2fyVDApm2aarlwnHmZIS4z-7Y0=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.068+00 2025-12-09 10:14:41.068005+00 3513 DH0961-14#黑色花 SPMX-20240815298627 \N \N \N 1 \N [{"file_id": "63ec8a7b-51c5-41df-95cd-f065af41cf26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8391ffa88a64e5fa14b1717945101ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8391ffa88a64e5fa14b1717945101ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8391ffa88a64e5fa14b1717945101ca.jpg", "file_size": 56766, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-14#黑色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8391ffa88a64e5fa14b1717945101ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8391ffa88a64e5fa14b1717945101ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8391ffa88a64e5fa14b1717945101ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8391ffa88a64e5fa14b1717945101ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8391ffa88a64e5fa14b1717945101ca.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJkPg8fBpEnL8kwEPXmxrC84C5o=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.069246+00 2025-12-09 10:14:41.069251+00 3514 0001-31FWF#V5曲线 SPMX-20240815298636 \N \N \N 1 \N [{"file_id": "99d95965-d040-4f17-9941-5ed33cc1ce9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e66b8c35cd714ee6b04f1c31a8ea25b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e66b8c35cd714ee6b04f1c31a8ea25b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e66b8c35cd714ee6b04f1c31a8ea25b0.jpg", "file_size": 17294, "is_delete": false, "file_type": 1, "original_file_name": "0001-31FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66b8c35cd714ee6b04f1c31a8ea25b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66b8c35cd714ee6b04f1c31a8ea25b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66b8c35cd714ee6b04f1c31a8ea25b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e66b8c35cd714ee6b04f1c31a8ea25b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e66b8c35cd714ee6b04f1c31a8ea25b0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oe93nbcU1LR5g9HhJHRfADB2Xz8=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.070478+00 2025-12-09 10:14:41.070483+00 3515 JS016FW#VS-D3 SPMX-20240815298640 \N \N \N 1 \N [{"file_id": "b1919e67-d689-4707-b3ad-1c00cb85e0be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff7bfd7ea6a44528b35206ed497b6fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff7bfd7ea6a44528b35206ed497b6fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff7bfd7ea6a44528b35206ed497b6fe.jpg", "file_size": 11943, "is_delete": false, "file_type": 1, "original_file_name": "JS016FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff7bfd7ea6a44528b35206ed497b6fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff7bfd7ea6a44528b35206ed497b6fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff7bfd7ea6a44528b35206ed497b6fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff7bfd7ea6a44528b35206ed497b6fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff7bfd7ea6a44528b35206ed497b6fe.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjyDhk9MeTAho3_AbUCimKiGqzI=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.071745+00 2025-12-09 10:14:41.071749+00 3516 22C09-09-58#36码 SPMX-20240815298628 \N \N \N 1 \N [{"file_id": "268380a0-2de8-4f25-9f08-b37f4883257e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2bb3480a15c4acebba98a92427f9305.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2bb3480a15c4acebba98a92427f9305.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2bb3480a15c4acebba98a92427f9305.jpg", "file_size": 20831, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-58#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2bb3480a15c4acebba98a92427f9305.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2bb3480a15c4acebba98a92427f9305.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2bb3480a15c4acebba98a92427f9305.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2bb3480a15c4acebba98a92427f9305.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2bb3480a15c4acebba98a92427f9305.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmAlO1Mw1vzDi0JBdbuirNfCNbU=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.072969+00 2025-12-09 10:14:41.072974+00 3517 C225#216枣红 SPMX-20240815298631 \N \N \N 1 \N [{"file_id": "c6f35669-29f0-43cd-988a-cac8165d2151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4723111b586542bea2492799497deb54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4723111b586542bea2492799497deb54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4723111b586542bea2492799497deb54.jpg", "file_size": 22923, "is_delete": false, "file_type": 1, "original_file_name": "C225#216枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4723111b586542bea2492799497deb54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4723111b586542bea2492799497deb54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4723111b586542bea2492799497deb54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4723111b586542bea2492799497deb54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4723111b586542bea2492799497deb54.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-cWw0t245fLiyGdGcQIWrUnFSI=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.074072+00 2025-12-09 10:14:41.074076+00 3518 HSH010#VS-D3 SPMX-20240815298632 \N \N \N 1 \N [{"file_id": "9466ebb0-74a6-4dbc-b047-c86991603c6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6da6b8a53ebe402c9685752896f213c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6da6b8a53ebe402c9685752896f213c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6da6b8a53ebe402c9685752896f213c4.jpg", "file_size": 12124, "is_delete": false, "file_type": 1, "original_file_name": "HSH010#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6b8a53ebe402c9685752896f213c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6b8a53ebe402c9685752896f213c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6b8a53ebe402c9685752896f213c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6da6b8a53ebe402c9685752896f213c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6da6b8a53ebe402c9685752896f213c4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8CmLHnX9zC6roGahyiXib4Nwm0o=", "createTime": "2024-08-15 14:39:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.075159+00 2025-12-09 10:14:41.075164+00 3519 LZ1187#上身2号色 SPMX-20240815298645 \N \N \N 1 \N [{"file_id": "22b7e967-689a-4ecb-81ec-e706f146b499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a0ca6cfb8f46aa83e5a5a828de06b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a0ca6cfb8f46aa83e5a5a828de06b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a0ca6cfb8f46aa83e5a5a828de06b2.jpg", "file_size": 12213, "is_delete": false, "file_type": 1, "original_file_name": "LZ1187#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ca6cfb8f46aa83e5a5a828de06b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ca6cfb8f46aa83e5a5a828de06b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ca6cfb8f46aa83e5a5a828de06b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a0ca6cfb8f46aa83e5a5a828de06b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a0ca6cfb8f46aa83e5a5a828de06b2.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPkC_0SaaMXQQfj8Idep2_3ah20=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.076226+00 2025-12-09 10:14:41.07623+00 3520 1040FWF#黄色XL SPMX-20240815298647 \N \N \N 1 \N [{"file_id": "cbc7b4b7-fba4-4f3e-b5fb-e2f62eabc664", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0147a5a1f89484188a958ef7c47642b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0147a5a1f89484188a958ef7c47642b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0147a5a1f89484188a958ef7c47642b.jpg", "file_size": 14128, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0147a5a1f89484188a958ef7c47642b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0147a5a1f89484188a958ef7c47642b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0147a5a1f89484188a958ef7c47642b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0147a5a1f89484188a958ef7c47642b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0147a5a1f89484188a958ef7c47642b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EETvgMUOG4cyMqjn-cN68WirlKE=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.077297+00 2025-12-09 10:14:41.077302+00 3521 LHJ8518#5#彩兰 SPMX-20240815298644 \N \N \N 1 \N [{"file_id": "d68dcd28-de6a-4e58-9070-7663936db76c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59f97ef089bf49288656a05ba4fd6510.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59f97ef089bf49288656a05ba4fd6510.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59f97ef089bf49288656a05ba4fd6510.jpg", "file_size": 7432, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f97ef089bf49288656a05ba4fd6510.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f97ef089bf49288656a05ba4fd6510.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f97ef089bf49288656a05ba4fd6510.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59f97ef089bf49288656a05ba4fd6510.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59f97ef089bf49288656a05ba4fd6510.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PaL0m5Dy4j46T7UDQG7g28_TPTk=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.07837+00 2025-12-09 10:14:41.078374+00 3522 FHPKDK1-003-1 SPMX-20240815298641 \N \N \N 1 \N [{"file_id": "08ea9348-b0db-48a7-a4b1-e3ac6456dd83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06c209f479bf4a9e9380be1864acbe94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06c209f479bf4a9e9380be1864acbe94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06c209f479bf4a9e9380be1864acbe94.jpg", "file_size": 42537, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c209f479bf4a9e9380be1864acbe94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c209f479bf4a9e9380be1864acbe94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c209f479bf4a9e9380be1864acbe94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06c209f479bf4a9e9380be1864acbe94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06c209f479bf4a9e9380be1864acbe94.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyI0qx8WkxRyZlMI34pIfzuYIXs=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.079537+00 2025-12-09 10:14:41.079541+00 3523 C225#57#橙红 SPMX-20240815298643 \N \N \N 1 \N [{"file_id": "d818b8cb-844b-4e80-ac1c-ba66561bebc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1df7725d65b4960807223643b7a3ac0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1df7725d65b4960807223643b7a3ac0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1df7725d65b4960807223643b7a3ac0.jpg", "file_size": 20652, "is_delete": false, "file_type": 1, "original_file_name": "C225#57#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1df7725d65b4960807223643b7a3ac0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1df7725d65b4960807223643b7a3ac0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1df7725d65b4960807223643b7a3ac0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1df7725d65b4960807223643b7a3ac0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1df7725d65b4960807223643b7a3ac0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ieXVsml-Pmpb2cxTWNyFybwVNVs=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.080672+00 2025-12-09 10:14:41.080676+00 3524 HSH010FW#VS-D3 SPMX-20240815298642 \N \N \N 1 \N [{"file_id": "b17cb024-5c40-44a7-a62d-1da1aa16c728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "653f163dbd404058b558f7ea33f8d333.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "653f163dbd404058b558f7ea33f8d333.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "653f163dbd404058b558f7ea33f8d333.jpg", "file_size": 24613, "is_delete": false, "file_type": 1, "original_file_name": "HSH010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653f163dbd404058b558f7ea33f8d333.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653f163dbd404058b558f7ea33f8d333.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653f163dbd404058b558f7ea33f8d333.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/653f163dbd404058b558f7ea33f8d333.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/653f163dbd404058b558f7ea33f8d333.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q0DqOfTowjHiBzXTfn3luazHoSo=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.081784+00 2025-12-09 10:14:41.081789+00 3525 0001-32FWE#VS-D3 SPMX-20240815298646 \N \N \N 1 \N [{"file_id": "2fc8e97a-144f-43bb-9d71-21ac97f48291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24cb2507ec6c4bbbb1c4890611e5e4f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24cb2507ec6c4bbbb1c4890611e5e4f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24cb2507ec6c4bbbb1c4890611e5e4f0.jpg", "file_size": 19972, "is_delete": false, "file_type": 1, "original_file_name": "0001-32FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2507ec6c4bbbb1c4890611e5e4f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2507ec6c4bbbb1c4890611e5e4f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2507ec6c4bbbb1c4890611e5e4f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24cb2507ec6c4bbbb1c4890611e5e4f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24cb2507ec6c4bbbb1c4890611e5e4f0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_3Q2bdCamKXNqTs9od5yMLe5Tw=", "createTime": "2024-08-15 14:39:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.082889+00 2025-12-09 10:14:41.082893+00 3526 HSH010FWE#黑VS-D3 SPMX-20240815298660 \N \N \N 1 \N [{"file_id": "ca55355d-572d-4a17-9b39-2ebcc89a847d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15068799646548309effd11198662a99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15068799646548309effd11198662a99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15068799646548309effd11198662a99.jpg", "file_size": 22752, "is_delete": false, "file_type": 1, "original_file_name": "HSH010FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15068799646548309effd11198662a99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15068799646548309effd11198662a99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15068799646548309effd11198662a99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15068799646548309effd11198662a99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15068799646548309effd11198662a99.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WH7DLZgD3MvTC0yu3xZ_3gMVd_M=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.084025+00 2025-12-09 10:14:41.084029+00 3527 8003FWF#彩蓝短款下摆 SPMX-20240815298662 \N \N \N 1 \N [{"file_id": "97b6fc91-4231-478d-853c-e759fe585270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "413de6a0be964d90b54e4d40d5eddfea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "413de6a0be964d90b54e4d40d5eddfea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "413de6a0be964d90b54e4d40d5eddfea.jpg", "file_size": 22447, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#彩蓝短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/413de6a0be964d90b54e4d40d5eddfea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/413de6a0be964d90b54e4d40d5eddfea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/413de6a0be964d90b54e4d40d5eddfea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/413de6a0be964d90b54e4d40d5eddfea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/413de6a0be964d90b54e4d40d5eddfea.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njfai3epn8Epwxq1c5sR29kasRM=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.085197+00 2025-12-09 10:14:41.085201+00 3528 C225#白色 SPMX-20240815298649 \N \N \N 1 \N [{"file_id": "33a36c9f-4f01-4585-a24c-47bd4624c81d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1e816bc873943e5ac10eb0f6b3a4b02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1e816bc873943e5ac10eb0f6b3a4b02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1e816bc873943e5ac10eb0f6b3a4b02.jpg", "file_size": 20242, "is_delete": false, "file_type": 1, "original_file_name": "C225#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e816bc873943e5ac10eb0f6b3a4b02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e816bc873943e5ac10eb0f6b3a4b02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e816bc873943e5ac10eb0f6b3a4b02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1e816bc873943e5ac10eb0f6b3a4b02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1e816bc873943e5ac10eb0f6b3a4b02.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rqEXf8c4k_Wr8Q2KdFHMgVADNo=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.086331+00 2025-12-09 10:14:41.086335+00 3529 LHJ8518#61#橙色 SPMX-20240815298654 \N \N \N 1 \N [{"file_id": "3540561c-6166-4a06-95b6-49b95b6fe274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5700c7d85764fce829411ca911aa2f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5700c7d85764fce829411ca911aa2f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5700c7d85764fce829411ca911aa2f1.jpg", "file_size": 6693, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#61#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5700c7d85764fce829411ca911aa2f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5700c7d85764fce829411ca911aa2f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5700c7d85764fce829411ca911aa2f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5700c7d85764fce829411ca911aa2f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5700c7d85764fce829411ca911aa2f1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srror7GF0RvOzCJfCLs7kbx1IMc=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.087501+00 2025-12-09 10:14:41.087505+00 3530 HSH010FWE#粉VS-D3 SPMX-20240815298648 \N \N \N 1 \N [{"file_id": "8b3b11d5-2fff-473e-9971-9e419e062b56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38ce35b492d3487abb55277d50f60c67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38ce35b492d3487abb55277d50f60c67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38ce35b492d3487abb55277d50f60c67.jpg", "file_size": 17431, "is_delete": false, "file_type": 1, "original_file_name": "HSH010FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce35b492d3487abb55277d50f60c67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce35b492d3487abb55277d50f60c67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce35b492d3487abb55277d50f60c67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38ce35b492d3487abb55277d50f60c67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38ce35b492d3487abb55277d50f60c67.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9K95_5ydQeSk2jQeAGM_aaXY8PI=", "createTime": "2024-08-15 14:39:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.088647+00 2025-12-09 10:14:41.088651+00 3531 JS016FWE#VS-D3 SPMX-20240815298656 \N \N \N 1 \N [{"file_id": "43458f48-9388-4fad-9ab2-150ddd093c4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70053ad9bd5f4886960a318c6cd0ecf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70053ad9bd5f4886960a318c6cd0ecf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70053ad9bd5f4886960a318c6cd0ecf3.jpg", "file_size": 14289, "is_delete": false, "file_type": 1, "original_file_name": "JS016FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70053ad9bd5f4886960a318c6cd0ecf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70053ad9bd5f4886960a318c6cd0ecf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70053ad9bd5f4886960a318c6cd0ecf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70053ad9bd5f4886960a318c6cd0ecf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70053ad9bd5f4886960a318c6cd0ecf3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOBZsdn3zy7hzXdXZPgX1GgwedI=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.089782+00 2025-12-09 10:14:41.089786+00 3532 FHPKDK1-003-3 SPMX-20240815298664 \N \N \N 1 \N [{"file_id": "353b2d49-f919-47c8-b758-d8a0545d248a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23fbc5d4b47549879d2763814edbd429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23fbc5d4b47549879d2763814edbd429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23fbc5d4b47549879d2763814edbd429.jpg", "file_size": 38682, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fbc5d4b47549879d2763814edbd429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fbc5d4b47549879d2763814edbd429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fbc5d4b47549879d2763814edbd429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23fbc5d4b47549879d2763814edbd429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23fbc5d4b47549879d2763814edbd429.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pcAGKekpp_bm0WJS8a95nZIXccg=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.091303+00 2025-12-09 10:14:41.091308+00 3533 22C09-09-60#3 SPMX-20240815298652 \N \N \N 1 \N [{"file_id": "4c89dafd-e350-405e-820f-2ac4c898c99d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e70020d747d64cf4b358f3715763b6bd.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e70020d747d64cf4b358f3715763b6bd.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e70020d747d64cf4b358f3715763b6bd.png", "file_size": 113597, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#3.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70020d747d64cf4b358f3715763b6bd.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70020d747d64cf4b358f3715763b6bd.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70020d747d64cf4b358f3715763b6bd.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e70020d747d64cf4b358f3715763b6bd.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e70020d747d64cf4b358f3715763b6bd.png?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2z2lpYDn-6wMCyItSugApZB4bbg=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.092389+00 2025-12-09 10:14:41.092394+00 3534 LZ1187#上身3号色 SPMX-20240815298653 \N \N \N 1 \N [{"file_id": "5cae03c8-3a8f-436a-b365-15cf6abc8c04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ab83ab086d747f49749fb91e134c64f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ab83ab086d747f49749fb91e134c64f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ab83ab086d747f49749fb91e134c64f.jpg", "file_size": 11709, "is_delete": false, "file_type": 1, "original_file_name": "LZ1187#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab83ab086d747f49749fb91e134c64f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab83ab086d747f49749fb91e134c64f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab83ab086d747f49749fb91e134c64f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ab83ab086d747f49749fb91e134c64f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ab83ab086d747f49749fb91e134c64f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZYiLVuKJPBFj1DUsklllK-oNH4=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.094135+00 2025-12-09 10:14:41.09414+00 3535 1040FWF#黑色2XL SPMX-20240815298666 \N \N \N 1 \N [{"file_id": "53f4b188-482d-4639-b94c-b096de8af1dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b17793461980403abd302b50a29b1429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b17793461980403abd302b50a29b1429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b17793461980403abd302b50a29b1429.jpg", "file_size": 17943, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17793461980403abd302b50a29b1429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17793461980403abd302b50a29b1429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17793461980403abd302b50a29b1429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b17793461980403abd302b50a29b1429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b17793461980403abd302b50a29b1429.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mLxmRoZhv-9W8-Regt4xzGMI2i8=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.096013+00 2025-12-09 10:14:41.096017+00 3536 C225#黑色 SPMX-20240815298661 \N \N \N 1 \N [{"file_id": "5555fed9-c352-42d4-aa99-92ae1dda271f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45a3b72a1d8b4084bb24e1f913f718e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45a3b72a1d8b4084bb24e1f913f718e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45a3b72a1d8b4084bb24e1f913f718e3.jpg", "file_size": 20682, "is_delete": false, "file_type": 1, "original_file_name": "C225#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3b72a1d8b4084bb24e1f913f718e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3b72a1d8b4084bb24e1f913f718e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3b72a1d8b4084bb24e1f913f718e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45a3b72a1d8b4084bb24e1f913f718e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45a3b72a1d8b4084bb24e1f913f718e3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dr0dCPRrogQLpPK4sY0s0Gt9T9E=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.09791+00 2025-12-09 10:14:41.097914+00 3537 22C09-09-60#30码 SPMX-20240815298665 \N \N \N 1 \N [{"file_id": "f3d0a0a8-b28e-4f03-8750-eaf406b722ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc758fe7c056479bb7f0424d01851cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc758fe7c056479bb7f0424d01851cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc758fe7c056479bb7f0424d01851cc6.jpg", "file_size": 23010, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc758fe7c056479bb7f0424d01851cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc758fe7c056479bb7f0424d01851cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc758fe7c056479bb7f0424d01851cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc758fe7c056479bb7f0424d01851cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc758fe7c056479bb7f0424d01851cc6.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UBLV2A68DugpX8s2bmgwU8bAek=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.099173+00 2025-12-09 10:14:41.099177+00 3538 LHJ8518#64#粉 SPMX-20240815298667 \N \N \N 1 \N [{"file_id": "5f82db3a-81e6-49fb-be1b-f74954f7e7e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e74ab8885f480b946cd8b6a56db769.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e74ab8885f480b946cd8b6a56db769.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e74ab8885f480b946cd8b6a56db769.jpg", "file_size": 6878, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8518#64#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e74ab8885f480b946cd8b6a56db769.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e74ab8885f480b946cd8b6a56db769.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e74ab8885f480b946cd8b6a56db769.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e74ab8885f480b946cd8b6a56db769.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e74ab8885f480b946cd8b6a56db769.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoAYKl-NgkhaR2aWAWmmzh6Is1g=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.10028+00 2025-12-09 10:14:41.100285+00 3539 1040FWF#黑色 SPMX-20240815298655 \N \N \N 1 \N [{"file_id": "69789d4e-cd22-49ba-b0f0-ef3b082bf2e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "489799def2fa4e588f59e1bf8d807333.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "489799def2fa4e588f59e1bf8d807333.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "489799def2fa4e588f59e1bf8d807333.jpg", "file_size": 19324, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489799def2fa4e588f59e1bf8d807333.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489799def2fa4e588f59e1bf8d807333.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489799def2fa4e588f59e1bf8d807333.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/489799def2fa4e588f59e1bf8d807333.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/489799def2fa4e588f59e1bf8d807333.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3ReTOJkZhOndIT3kI1qBEr0DB8=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.10164+00 2025-12-09 10:14:41.101647+00 3540 0001-32FWF#V5曲线 SPMX-20240815298659 \N \N \N 1 \N [{"file_id": "d0926c3b-cd11-46ad-9acc-1c867d75db4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03809c31b0d9474599173ffbd51091e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03809c31b0d9474599173ffbd51091e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03809c31b0d9474599173ffbd51091e9.jpg", "file_size": 16550, "is_delete": false, "file_type": 1, "original_file_name": "0001-32FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03809c31b0d9474599173ffbd51091e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03809c31b0d9474599173ffbd51091e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03809c31b0d9474599173ffbd51091e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03809c31b0d9474599173ffbd51091e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03809c31b0d9474599173ffbd51091e9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRVTfBHWYfvJKGlbW9e77ISaKh0=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.102958+00 2025-12-09 10:14:41.102963+00 3541 FHPKDK1-003-2 SPMX-20240815298651 \N \N \N 1 \N [{"file_id": "84b06764-669b-4afd-b8b8-14d8f6edd7af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60b3bce3749043a1a4ff5ca38d0617ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60b3bce3749043a1a4ff5ca38d0617ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60b3bce3749043a1a4ff5ca38d0617ca.jpg", "file_size": 42679, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3bce3749043a1a4ff5ca38d0617ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3bce3749043a1a4ff5ca38d0617ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3bce3749043a1a4ff5ca38d0617ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60b3bce3749043a1a4ff5ca38d0617ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60b3bce3749043a1a4ff5ca38d0617ca.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_VA_8-fEBe4uZVXd_JRJxf5Uu0=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.104066+00 2025-12-09 10:14:41.104071+00 3542 DH0961-3#RC23 SPMX-20240815298658 \N \N \N 1 \N [{"file_id": "47d5767c-290d-4005-ae7b-8845acacd001", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee2389d1b9e54682a837e42beaabfdca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee2389d1b9e54682a837e42beaabfdca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee2389d1b9e54682a837e42beaabfdca.jpg", "file_size": 62754, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2389d1b9e54682a837e42beaabfdca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2389d1b9e54682a837e42beaabfdca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2389d1b9e54682a837e42beaabfdca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee2389d1b9e54682a837e42beaabfdca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee2389d1b9e54682a837e42beaabfdca.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrk6zeT2UZzEZqeXhz5YRqcqyx4=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.105146+00 2025-12-09 10:14:41.10515+00 3543 LZ1187#上身4号色 SPMX-20240815298663 \N \N \N 1 \N [{"file_id": "1b22c52d-5e54-42d1-80bb-e36dbc4aa5fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c44fd0e3d0414bd9b10997e4fdbd7065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c44fd0e3d0414bd9b10997e4fdbd7065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c44fd0e3d0414bd9b10997e4fdbd7065.jpg", "file_size": 11517, "is_delete": false, "file_type": 1, "original_file_name": "LZ1187#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fd0e3d0414bd9b10997e4fdbd7065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fd0e3d0414bd9b10997e4fdbd7065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fd0e3d0414bd9b10997e4fdbd7065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c44fd0e3d0414bd9b10997e4fdbd7065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c44fd0e3d0414bd9b10997e4fdbd7065.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0BlQdzZ5HlqnP7_296HM8FmpDc=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.106235+00 2025-12-09 10:14:41.106239+00 3544 8003FWF#彩蓝短款上身 SPMX-20240815298650 \N \N \N 1 \N [{"file_id": "ebbdfc79-d453-4a81-b8dd-60a279bdcf24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d33da8e41464d16a5f18918154f978e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d33da8e41464d16a5f18918154f978e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d33da8e41464d16a5f18918154f978e.jpg", "file_size": 18227, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#彩蓝短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d33da8e41464d16a5f18918154f978e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d33da8e41464d16a5f18918154f978e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d33da8e41464d16a5f18918154f978e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d33da8e41464d16a5f18918154f978e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d33da8e41464d16a5f18918154f978e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEr2JomDZm9wnObiMIMTO79LdeI=", "createTime": "2024-08-15 14:39:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.107293+00 2025-12-09 10:14:41.107297+00 3545 LZ1188#上身1号色 SPMX-20240815298672 \N \N \N 1 \N [{"file_id": "c673e750-3752-468d-a470-fd5854be470a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be5ad50c0de64900ab965c4677033cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be5ad50c0de64900ab965c4677033cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be5ad50c0de64900ab965c4677033cde.jpg", "file_size": 15061, "is_delete": false, "file_type": 1, "original_file_name": "LZ1188#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5ad50c0de64900ab965c4677033cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5ad50c0de64900ab965c4677033cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5ad50c0de64900ab965c4677033cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be5ad50c0de64900ab965c4677033cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be5ad50c0de64900ab965c4677033cde.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4z7QMDe1wCqVuRPf1Y6VOV6Xu3U=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.108349+00 2025-12-09 10:14:41.108354+00 3546 22C09-09-60#32码 SPMX-20240815298674 \N \N \N 1 \N [{"file_id": "413c058b-b7d3-487e-b71b-7c1f1b2c9081", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2089050e62754af4acbe259893757720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2089050e62754af4acbe259893757720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2089050e62754af4acbe259893757720.jpg", "file_size": 22297, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2089050e62754af4acbe259893757720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2089050e62754af4acbe259893757720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2089050e62754af4acbe259893757720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2089050e62754af4acbe259893757720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2089050e62754af4acbe259893757720.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIuYuFau5SFJKEckqgXBuNlTvp0=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.109396+00 2025-12-09 10:14:41.109399+00 3547 JS018# SPMX-20240815298676 \N \N \N 1 \N [{"file_id": "d01ea6f1-23c6-4ae5-bdcf-d2432b3f2d6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a40e2fc979f468bb7cafe499bd33472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a40e2fc979f468bb7cafe499bd33472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a40e2fc979f468bb7cafe499bd33472.jpg", "file_size": 7251, "is_delete": false, "file_type": 1, "original_file_name": "JS018#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a40e2fc979f468bb7cafe499bd33472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a40e2fc979f468bb7cafe499bd33472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a40e2fc979f468bb7cafe499bd33472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a40e2fc979f468bb7cafe499bd33472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a40e2fc979f468bb7cafe499bd33472.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYRsNXrUi5XzoN0uNW4LT62RLL0=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.110484+00 2025-12-09 10:14:41.110489+00 3548 DH0961-4#RC23 SPMX-20240815298670 \N \N \N 1 \N [{"file_id": "637c6786-0e71-4c4a-a63d-50fc14cd91e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bbace798a944842a9bde48266f3adad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bbace798a944842a9bde48266f3adad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bbace798a944842a9bde48266f3adad.jpg", "file_size": 57576, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-4#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bbace798a944842a9bde48266f3adad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bbace798a944842a9bde48266f3adad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bbace798a944842a9bde48266f3adad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bbace798a944842a9bde48266f3adad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bbace798a944842a9bde48266f3adad.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jjk_VC8IQSnBOHcIWtiXNxwiLWg=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.111543+00 2025-12-09 10:14:41.111547+00 3549 0001-33FWE#VS-D3 SPMX-20240815298669 \N \N \N 1 \N [{"file_id": "6be737ab-0431-46b5-9c1d-aaacc32a5041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg", "file_size": 19966, "is_delete": false, "file_type": 1, "original_file_name": "0001-33FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2db5ec0049dbbdad8ab672c7c9c8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKpDj-OfevS5BG-fcfKtmSc3aPk=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.112713+00 2025-12-09 10:14:41.112717+00 3550 8003FWF#彩蓝短款袖子 SPMX-20240815298671 \N \N \N 1 \N [{"file_id": "13eb0682-08db-4ccb-b183-b219e6ba69cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "342e2ce675dc4ba5a919b0b53cfcb5e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "342e2ce675dc4ba5a919b0b53cfcb5e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "342e2ce675dc4ba5a919b0b53cfcb5e3.jpg", "file_size": 14443, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#彩蓝短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342e2ce675dc4ba5a919b0b53cfcb5e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342e2ce675dc4ba5a919b0b53cfcb5e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342e2ce675dc4ba5a919b0b53cfcb5e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/342e2ce675dc4ba5a919b0b53cfcb5e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/342e2ce675dc4ba5a919b0b53cfcb5e3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08CQVmpzFRXvvP_NmWEsvjMmuY8=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.11391+00 2025-12-09 10:14:41.113914+00 3551 HSH011# SPMX-20240815298675 \N \N \N 1 \N [{"file_id": "94c1f12a-a6be-4124-9773-ad3b58c08c20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f557b57bc2c446998ced93b83cbc05b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f557b57bc2c446998ced93b83cbc05b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f557b57bc2c446998ced93b83cbc05b9.jpg", "file_size": 29524, "is_delete": false, "file_type": 1, "original_file_name": "HSH011#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f557b57bc2c446998ced93b83cbc05b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f557b57bc2c446998ced93b83cbc05b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f557b57bc2c446998ced93b83cbc05b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f557b57bc2c446998ced93b83cbc05b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f557b57bc2c446998ced93b83cbc05b9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRb9mauXGMku0RrxSGfP5qKmUPs=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.115073+00 2025-12-09 10:14:41.115077+00 3552 JS017FWE#VS-D3 SPMX-20240815298668 \N \N \N 1 \N [{"file_id": "62d689b3-bfb1-402c-abef-ab8077afaa47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141baf51ba8f4243b889106fc7600e98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141baf51ba8f4243b889106fc7600e98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141baf51ba8f4243b889106fc7600e98.jpg", "file_size": 16980, "is_delete": false, "file_type": 1, "original_file_name": "JS017FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141baf51ba8f4243b889106fc7600e98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141baf51ba8f4243b889106fc7600e98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141baf51ba8f4243b889106fc7600e98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141baf51ba8f4243b889106fc7600e98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141baf51ba8f4243b889106fc7600e98.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_csVpgsoUmkuc7Ip52tYom-q_E=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.116242+00 2025-12-09 10:14:41.116246+00 3553 1040FWF#黑色L SPMX-20240815298673 \N \N \N 1 \N [{"file_id": "e8391dfe-4cb7-44e2-892c-d551537507b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2889f1e6bc1a4b538ee9c21146f9474b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2889f1e6bc1a4b538ee9c21146f9474b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2889f1e6bc1a4b538ee9c21146f9474b.jpg", "file_size": 17458, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2889f1e6bc1a4b538ee9c21146f9474b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2889f1e6bc1a4b538ee9c21146f9474b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2889f1e6bc1a4b538ee9c21146f9474b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2889f1e6bc1a4b538ee9c21146f9474b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2889f1e6bc1a4b538ee9c21146f9474b.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoLRwvC3gQvcFkWm0NnqB7djoe0=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.117347+00 2025-12-09 10:14:41.117351+00 3554 22C09-09-60#34码 SPMX-20240815298683 \N \N \N 1 \N [{"file_id": "02927b41-bcf6-4c6e-9425-0850ea5540af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d95995ab1f34890b582c18c3d50c388.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d95995ab1f34890b582c18c3d50c388.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d95995ab1f34890b582c18c3d50c388.jpg", "file_size": 21863, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d95995ab1f34890b582c18c3d50c388.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d95995ab1f34890b582c18c3d50c388.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d95995ab1f34890b582c18c3d50c388.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d95995ab1f34890b582c18c3d50c388.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d95995ab1f34890b582c18c3d50c388.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dwAOrG7u8W6VXspBFmgkSriBpJs=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.118432+00 2025-12-09 10:14:41.118437+00 3555 JS018FWE#VS-D3 SPMX-20240815298685 \N \N \N 1 \N [{"file_id": "cd9d92ec-43c1-4b9b-af7f-3c41cd2fc2fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2da1faec42d248c5a284786d1a29143f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2da1faec42d248c5a284786d1a29143f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2da1faec42d248c5a284786d1a29143f.jpg", "file_size": 13630, "is_delete": false, "file_type": 1, "original_file_name": "JS018FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da1faec42d248c5a284786d1a29143f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da1faec42d248c5a284786d1a29143f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da1faec42d248c5a284786d1a29143f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2da1faec42d248c5a284786d1a29143f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2da1faec42d248c5a284786d1a29143f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DHcX72LxAcF-2odShlcHLqTXYA=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.119547+00 2025-12-09 10:14:41.11955+00 3556 HSH011#墨绿 SPMX-20240815298684 \N \N \N 1 \N [{"file_id": "9a01e269-2b0b-4d63-9922-4a79de448791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b898f4324a2c4dc6a875394a020d37ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b898f4324a2c4dc6a875394a020d37ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b898f4324a2c4dc6a875394a020d37ce.jpg", "file_size": 21054, "is_delete": false, "file_type": 1, "original_file_name": "HSH011#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b898f4324a2c4dc6a875394a020d37ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b898f4324a2c4dc6a875394a020d37ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b898f4324a2c4dc6a875394a020d37ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b898f4324a2c4dc6a875394a020d37ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b898f4324a2c4dc6a875394a020d37ce.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyLceWkEPxisG-0soLPLebbdSwY=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.120751+00 2025-12-09 10:14:41.120756+00 3557 LHJ8576#20#枣红 SPMX-20240815298679 \N \N \N 1 \N [{"file_id": "99038b39-7870-4ef2-bf60-4664f9672e49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22494e192f084bb38f31ed0098dd6a13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22494e192f084bb38f31ed0098dd6a13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22494e192f084bb38f31ed0098dd6a13.jpg", "file_size": 11188, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8576#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22494e192f084bb38f31ed0098dd6a13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22494e192f084bb38f31ed0098dd6a13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22494e192f084bb38f31ed0098dd6a13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22494e192f084bb38f31ed0098dd6a13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22494e192f084bb38f31ed0098dd6a13.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQHmD_qNWNKDfsu71JbwgXd9eas=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.121832+00 2025-12-09 10:14:41.121836+00 3558 C225-272#101粉 SPMX-20240815298678 \N \N \N 1 \N [{"file_id": "9b1d754d-e794-4307-927c-1301e7fed367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90fa082499414d6798fa5aa819f05e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90fa082499414d6798fa5aa819f05e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90fa082499414d6798fa5aa819f05e86.jpg", "file_size": 19846, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#101粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fa082499414d6798fa5aa819f05e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fa082499414d6798fa5aa819f05e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fa082499414d6798fa5aa819f05e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90fa082499414d6798fa5aa819f05e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90fa082499414d6798fa5aa819f05e86.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggt6XQwp2TOv2T6US4UR0WNgzaI=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.122914+00 2025-12-09 10:14:41.122917+00 3559 FHPKDK1-003-4 SPMX-20240815298677 \N \N \N 1 \N [{"file_id": "2ae5a847-3885-4f28-9a67-440859375686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f11948419ae04c8fa88cf2bb97150807.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f11948419ae04c8fa88cf2bb97150807.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f11948419ae04c8fa88cf2bb97150807.jpg", "file_size": 44912, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11948419ae04c8fa88cf2bb97150807.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11948419ae04c8fa88cf2bb97150807.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11948419ae04c8fa88cf2bb97150807.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f11948419ae04c8fa88cf2bb97150807.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f11948419ae04c8fa88cf2bb97150807.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ta3Rqms0pnO6xaqMwoccIufQHno=", "createTime": "2024-08-15 14:39:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.123967+00 2025-12-09 10:14:41.123971+00 3560 8003FWF#枣红短款下摆 SPMX-20240815298687 \N \N \N 1 \N [{"file_id": "4352de2e-1e7b-4ed6-afec-706197b4a6f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "612180dc05a04c2f89979243a0bccc30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "612180dc05a04c2f89979243a0bccc30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "612180dc05a04c2f89979243a0bccc30.jpg", "file_size": 22382, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#枣红短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612180dc05a04c2f89979243a0bccc30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612180dc05a04c2f89979243a0bccc30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612180dc05a04c2f89979243a0bccc30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/612180dc05a04c2f89979243a0bccc30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/612180dc05a04c2f89979243a0bccc30.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qa1MnPsN3yI3v8LZlewrh9uYThU=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.12507+00 2025-12-09 10:14:41.125074+00 3561 LZ1188#上身2号色 SPMX-20240815298681 \N \N \N 1 \N [{"file_id": "64af6b31-a5cc-4a1e-8ae1-ab38df593a06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25937ad92fb4408384a75376412da673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25937ad92fb4408384a75376412da673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25937ad92fb4408384a75376412da673.jpg", "file_size": 14765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1188#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25937ad92fb4408384a75376412da673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25937ad92fb4408384a75376412da673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25937ad92fb4408384a75376412da673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25937ad92fb4408384a75376412da673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25937ad92fb4408384a75376412da673.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:srPGocT_OP-j_WEkMlp7ZfDQp2Q=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.126263+00 2025-12-09 10:14:41.126268+00 3562 1040FWF#黑色XL SPMX-20240815298682 \N \N \N 1 \N [{"file_id": "b7877059-5cc1-43ef-9ccf-5b5d74b982e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aa2eb81e997409b80563b5a2350f145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aa2eb81e997409b80563b5a2350f145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aa2eb81e997409b80563b5a2350f145.jpg", "file_size": 17392, "is_delete": false, "file_type": 1, "original_file_name": "1040FWF#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa2eb81e997409b80563b5a2350f145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa2eb81e997409b80563b5a2350f145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa2eb81e997409b80563b5a2350f145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aa2eb81e997409b80563b5a2350f145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aa2eb81e997409b80563b5a2350f145.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1_OlZ_QAhb9uOQsZf6FVCBDEoM=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.127375+00 2025-12-09 10:14:41.12738+00 3563 FHPKDK1-003-5 SPMX-20240815298686 \N \N \N 1 \N [{"file_id": "98a5fb2e-5da6-4e76-9eff-ba027e076e87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1cbf0e0cbc84feda51af586baf1b7da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1cbf0e0cbc84feda51af586baf1b7da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1cbf0e0cbc84feda51af586baf1b7da.jpg", "file_size": 36318, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK1-003-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cbf0e0cbc84feda51af586baf1b7da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cbf0e0cbc84feda51af586baf1b7da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cbf0e0cbc84feda51af586baf1b7da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1cbf0e0cbc84feda51af586baf1b7da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1cbf0e0cbc84feda51af586baf1b7da.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67CSzM8vfK2xRN9trszJM71JmLk=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.128447+00 2025-12-09 10:14:41.128451+00 3564 8003FWF#枣红短款上身 SPMX-20240815298680 \N \N \N 1 \N [{"file_id": "69744b76-7d30-403b-b761-6fed1628089c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c0d432aeba3460283d7d1833caecc0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c0d432aeba3460283d7d1833caecc0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c0d432aeba3460283d7d1833caecc0e.jpg", "file_size": 17798, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#枣红短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0d432aeba3460283d7d1833caecc0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0d432aeba3460283d7d1833caecc0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0d432aeba3460283d7d1833caecc0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c0d432aeba3460283d7d1833caecc0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c0d432aeba3460283d7d1833caecc0e.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-QOpC6EYPZ9jMSgMcal8iB7uBM=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.129548+00 2025-12-09 10:14:41.129552+00 3565 DH0961-5#RC23 SPMX-20240815298693 \N \N \N 1 \N [{"file_id": "2de4a1c1-89b7-4a42-8de9-8880fbd633a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a8822e85984efa952b4a9d3594bc6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a8822e85984efa952b4a9d3594bc6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a8822e85984efa952b4a9d3594bc6d.jpg", "file_size": 50547, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a8822e85984efa952b4a9d3594bc6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a8822e85984efa952b4a9d3594bc6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a8822e85984efa952b4a9d3594bc6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a8822e85984efa952b4a9d3594bc6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a8822e85984efa952b4a9d3594bc6d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7UTpQV5AqP9atAQIFuJ-2hQfwA=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.130641+00 2025-12-09 10:14:41.130645+00 3566 LHJ8576#25#土黄 SPMX-20240815298699 \N \N \N 1 \N [{"file_id": "a9c3ae2b-cd87-4e21-a023-185505ddf282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc45307683934e329e8761a29291f367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc45307683934e329e8761a29291f367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc45307683934e329e8761a29291f367.jpg", "file_size": 8536, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8576#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc45307683934e329e8761a29291f367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc45307683934e329e8761a29291f367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc45307683934e329e8761a29291f367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc45307683934e329e8761a29291f367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc45307683934e329e8761a29291f367.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCVai8uvd4pv6ovbtWO8aSKuXDc=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.131727+00 2025-12-09 10:14:41.131731+00 3567 1041#S-110短款白色 SPMX-20240815298700 \N \N \N 1 \N [{"file_id": "752eb4ee-e008-47f9-a2b6-a5998742e480", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec7a5e533fa04de4af80c63260eab610.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec7a5e533fa04de4af80c63260eab610.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec7a5e533fa04de4af80c63260eab610.jpg", "file_size": 15903, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a5e533fa04de4af80c63260eab610.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a5e533fa04de4af80c63260eab610.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a5e533fa04de4af80c63260eab610.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec7a5e533fa04de4af80c63260eab610.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec7a5e533fa04de4af80c63260eab610.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5fPlsSsFb7k67xFLLy4kR720eU=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.132789+00 2025-12-09 10:14:41.132793+00 3568 0001-33FWF#V5曲线 SPMX-20240815298692 \N \N \N 1 \N [{"file_id": "d29c32f0-89f7-4634-be94-799e0b3cb802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ada27481cbb4f93879b21494f560675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ada27481cbb4f93879b21494f560675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ada27481cbb4f93879b21494f560675.jpg", "file_size": 21463, "is_delete": false, "file_type": 1, "original_file_name": "0001-33FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ada27481cbb4f93879b21494f560675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ada27481cbb4f93879b21494f560675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ada27481cbb4f93879b21494f560675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ada27481cbb4f93879b21494f560675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ada27481cbb4f93879b21494f560675.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3GlvY0LL9MzSRTOy58HYQrzk0yc=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.134054+00 2025-12-09 10:14:41.134059+00 3569 C225-272#101粉净色 SPMX-20240815298695 \N \N \N 1 \N [{"file_id": "397675f7-3109-42dd-b0e6-25321d40b56c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "139fdf15cb3a40eaa76b5c0d519a9bd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "139fdf15cb3a40eaa76b5c0d519a9bd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "139fdf15cb3a40eaa76b5c0d519a9bd0.jpg", "file_size": 8123, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#101粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139fdf15cb3a40eaa76b5c0d519a9bd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139fdf15cb3a40eaa76b5c0d519a9bd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139fdf15cb3a40eaa76b5c0d519a9bd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/139fdf15cb3a40eaa76b5c0d519a9bd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/139fdf15cb3a40eaa76b5c0d519a9bd0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RHAqCUSOITou36Ki8Ru5MX5edwY=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.135194+00 2025-12-09 10:14:41.135199+00 3570 HSH011#天蓝 SPMX-20240815298691 \N \N \N 1 \N [{"file_id": "955bcf9e-74f8-464a-afdc-4b9fbd7c63ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b460cc3c62b4e26a7f70983502bcb93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b460cc3c62b4e26a7f70983502bcb93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b460cc3c62b4e26a7f70983502bcb93.jpg", "file_size": 19625, "is_delete": false, "file_type": 1, "original_file_name": "HSH011#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b460cc3c62b4e26a7f70983502bcb93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b460cc3c62b4e26a7f70983502bcb93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b460cc3c62b4e26a7f70983502bcb93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b460cc3c62b4e26a7f70983502bcb93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b460cc3c62b4e26a7f70983502bcb93.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dD3eGi5Ji3IhQX3EeqTLGrnuuE8=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.136264+00 2025-12-09 10:14:41.136268+00 3571 8003FWF#枣红短款袖子 SPMX-20240815298696 \N \N \N 1 \N [{"file_id": "8cc67e19-2251-4a68-b6bb-bf15d2588eec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "257bb71dae554b5eb14cee5b96942afb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "257bb71dae554b5eb14cee5b96942afb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "257bb71dae554b5eb14cee5b96942afb.jpg", "file_size": 14863, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#枣红短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257bb71dae554b5eb14cee5b96942afb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257bb71dae554b5eb14cee5b96942afb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/257bb71dae554b5eb14cee5b96942afb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/257bb71dae554b5eb14cee5b96942afb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/257bb71dae554b5eb14cee5b96942afb.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRQKx_Upq3zxfUx9pr2WT0v9uo0=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.137328+00 2025-12-09 10:14:41.137332+00 3572 LZ1188#上身4号色 SPMX-20240815298698 \N \N \N 1 \N [{"file_id": "832d23f4-9c3e-4d07-b0d3-a7fe62d8a823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bef68ac171d1412d85a81cafdf09f5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bef68ac171d1412d85a81cafdf09f5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bef68ac171d1412d85a81cafdf09f5f7.jpg", "file_size": 16200, "is_delete": false, "file_type": 1, "original_file_name": "LZ1188#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef68ac171d1412d85a81cafdf09f5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef68ac171d1412d85a81cafdf09f5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef68ac171d1412d85a81cafdf09f5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bef68ac171d1412d85a81cafdf09f5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bef68ac171d1412d85a81cafdf09f5f7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCS3WzGUtJJgzw0UOEtpv6jdJrM=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.138395+00 2025-12-09 10:14:41.138399+00 3573 HSH011#深灰 SPMX-20240815298701 \N \N \N 1 \N [{"file_id": "7b40bede-9c37-4bd9-bad5-a466434675dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a13e646c0c4d4f3395eea25f01c56e6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a13e646c0c4d4f3395eea25f01c56e6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a13e646c0c4d4f3395eea25f01c56e6d.jpg", "file_size": 19821, "is_delete": false, "file_type": 1, "original_file_name": "HSH011#深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e646c0c4d4f3395eea25f01c56e6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e646c0c4d4f3395eea25f01c56e6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e646c0c4d4f3395eea25f01c56e6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a13e646c0c4d4f3395eea25f01c56e6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a13e646c0c4d4f3395eea25f01c56e6d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JDw8DLPhzPCbrhIdgi96tNr81k=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.139467+00 2025-12-09 10:14:41.139472+00 3574 JS019# SPMX-20240815298694 \N \N \N 1 \N [{"file_id": "9b7dd248-d2b5-4c62-87f0-dda8a191deb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c982ab72efb47b5a353b2d51ffb7f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c982ab72efb47b5a353b2d51ffb7f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c982ab72efb47b5a353b2d51ffb7f59.jpg", "file_size": 7355, "is_delete": false, "file_type": 1, "original_file_name": "JS019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c982ab72efb47b5a353b2d51ffb7f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c982ab72efb47b5a353b2d51ffb7f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c982ab72efb47b5a353b2d51ffb7f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c982ab72efb47b5a353b2d51ffb7f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c982ab72efb47b5a353b2d51ffb7f59.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEgEqSBnJL-oiAkT9i55AWaorkI=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.140535+00 2025-12-09 10:14:41.140539+00 3575 LZ1188#上身3号色 SPMX-20240815298688 \N \N \N 1 \N [{"file_id": "f477430a-56e3-4fe8-8d7c-78bcf2f84295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg", "file_size": 15878, "is_delete": false, "file_type": 1, "original_file_name": "LZ1188#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e65e4acb5b64ce9a70a1ae9ea4ec313.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1__Jq4EKD9PyWxwJmD91oC034XE=", "createTime": "2024-08-15 14:39:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.141596+00 2025-12-09 10:14:41.1416+00 3576 22C09-09-60#36码 SPMX-20240815298690 \N \N \N 1 \N [{"file_id": "e7740911-22c6-4ede-8f12-c95b67e94fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c8f2348d94e438cb1d895328b7e07a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c8f2348d94e438cb1d895328b7e07a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c8f2348d94e438cb1d895328b7e07a3.jpg", "file_size": 21870, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f2348d94e438cb1d895328b7e07a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f2348d94e438cb1d895328b7e07a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f2348d94e438cb1d895328b7e07a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c8f2348d94e438cb1d895328b7e07a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c8f2348d94e438cb1d895328b7e07a3.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ozGJcAxFFDalGBzXXq-zpm0LM8=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.142687+00 2025-12-09 10:14:41.142691+00 3577 1041#S-110短款橙色 SPMX-20240815298689 \N \N \N 1 \N [{"file_id": "e5c55b59-9a6f-41c2-9633-5ceab33917ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fdb581b3fe14a5990c3c5c838346478.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fdb581b3fe14a5990c3c5c838346478.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fdb581b3fe14a5990c3c5c838346478.jpg", "file_size": 15711, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdb581b3fe14a5990c3c5c838346478.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdb581b3fe14a5990c3c5c838346478.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdb581b3fe14a5990c3c5c838346478.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fdb581b3fe14a5990c3c5c838346478.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fdb581b3fe14a5990c3c5c838346478.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ROUYdlvt91sGf_qUTK5sew3wf_8=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.143742+00 2025-12-09 10:14:41.143746+00 3578 FHPKDK2-001-1-坯布 SPMX-20240815298697 \N \N \N 1 \N [{"file_id": "af0a6ff2-1c46-4a87-94e1-d82214f7d4ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02a8d4de2bca468d82b965a00ff83770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02a8d4de2bca468d82b965a00ff83770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02a8d4de2bca468d82b965a00ff83770.jpg", "file_size": 57969, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-1-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a8d4de2bca468d82b965a00ff83770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a8d4de2bca468d82b965a00ff83770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a8d4de2bca468d82b965a00ff83770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02a8d4de2bca468d82b965a00ff83770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02a8d4de2bca468d82b965a00ff83770.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFQggM6zZ1EMF2GuK1M_op1q4UY=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.144818+00 2025-12-09 10:14:41.144822+00 3579 22C09-09-63#30码 SPMX-20240815298713 \N \N \N 1 \N [{"file_id": "66cea5c9-2b31-4cf4-b3b1-ef42c98b2d2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4950ed11d5904a4e9b71f291993dc588.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4950ed11d5904a4e9b71f291993dc588.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4950ed11d5904a4e9b71f291993dc588.jpg", "file_size": 24432, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-63#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4950ed11d5904a4e9b71f291993dc588.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4950ed11d5904a4e9b71f291993dc588.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4950ed11d5904a4e9b71f291993dc588.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4950ed11d5904a4e9b71f291993dc588.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4950ed11d5904a4e9b71f291993dc588.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_fdzGyOOCZl7y_EZ7LrLf7tixM=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.145883+00 2025-12-09 10:14:41.145887+00 3580 22C09-09-60#38码 SPMX-20240815298703 \N \N \N 1 \N [{"file_id": "b72d7612-8da7-4b8a-b02d-c5fde83392d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf6eeb16275a4861a44f3c900005a636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf6eeb16275a4861a44f3c900005a636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf6eeb16275a4861a44f3c900005a636.jpg", "file_size": 21100, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-60#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6eeb16275a4861a44f3c900005a636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6eeb16275a4861a44f3c900005a636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6eeb16275a4861a44f3c900005a636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf6eeb16275a4861a44f3c900005a636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf6eeb16275a4861a44f3c900005a636.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oNKI3AkVYQOau-B74aXjQaC-pI=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.147297+00 2025-12-09 10:14:41.147301+00 3581 DH0961-6#RC23 SPMX-20240815298704 \N \N \N 1 \N [{"file_id": "be841ca0-f911-4da6-8c56-17814e40c794", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a0ad7a1e934add9bbc469f01dc8838.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a0ad7a1e934add9bbc469f01dc8838.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a0ad7a1e934add9bbc469f01dc8838.jpg", "file_size": 54054, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ad7a1e934add9bbc469f01dc8838.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ad7a1e934add9bbc469f01dc8838.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0ad7a1e934add9bbc469f01dc8838.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a0ad7a1e934add9bbc469f01dc8838.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a0ad7a1e934add9bbc469f01dc8838.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q37Wa0s8lVi1lChxsC77rqOVqEE=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.14833+00 2025-12-09 10:14:41.148333+00 3582 JS019FWE#VS-D3 SPMX-20240815298707 \N \N \N 1 \N [{"file_id": "a330023f-114a-4c46-b82b-0a3b8d13ec2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f93ac1b403a41609c4d3c498d0fb254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f93ac1b403a41609c4d3c498d0fb254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f93ac1b403a41609c4d3c498d0fb254.jpg", "file_size": 16216, "is_delete": false, "file_type": 1, "original_file_name": "JS019FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93ac1b403a41609c4d3c498d0fb254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93ac1b403a41609c4d3c498d0fb254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93ac1b403a41609c4d3c498d0fb254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f93ac1b403a41609c4d3c498d0fb254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f93ac1b403a41609c4d3c498d0fb254.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:el5Fj81U_HlwFw1Ql4fhyJZcsdM=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.149405+00 2025-12-09 10:14:41.149409+00 3583 8003FWF#短袖上衣 SPMX-20240815298706 \N \N \N 1 \N [{"file_id": "09b35300-ed12-4dd6-894e-0d2f408a91bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "930b99cd71524d6e854a859352938838.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "930b99cd71524d6e854a859352938838.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "930b99cd71524d6e854a859352938838.jpg", "file_size": 22848, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b99cd71524d6e854a859352938838.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b99cd71524d6e854a859352938838.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b99cd71524d6e854a859352938838.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/930b99cd71524d6e854a859352938838.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/930b99cd71524d6e854a859352938838.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGJqemRbZ43loOdKisnvurkhYq8=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.150471+00 2025-12-09 10:14:41.150476+00 3584 LZ1188#上身5号色 SPMX-20240815298708 \N \N \N 1 \N [{"file_id": "013103b1-7dd9-4761-b8fe-a7eaa2ba5af5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa6b2eae8c59479492b4c6cd93e3f650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa6b2eae8c59479492b4c6cd93e3f650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa6b2eae8c59479492b4c6cd93e3f650.jpg", "file_size": 14834, "is_delete": false, "file_type": 1, "original_file_name": "LZ1188#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6b2eae8c59479492b4c6cd93e3f650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6b2eae8c59479492b4c6cd93e3f650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6b2eae8c59479492b4c6cd93e3f650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa6b2eae8c59479492b4c6cd93e3f650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa6b2eae8c59479492b4c6cd93e3f650.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KpK5puYW6Ehg2MfriQ9nzPU8Gz8=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.151561+00 2025-12-09 10:14:41.151566+00 3585 1041#S-110短款粉色 SPMX-20240815298711 \N \N \N 1 \N [{"file_id": "1802f885-9240-42f0-9d1b-d9251df881a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee2bf34923774c1f8a81087f81df7d81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee2bf34923774c1f8a81087f81df7d81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee2bf34923774c1f8a81087f81df7d81.jpg", "file_size": 15309, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2bf34923774c1f8a81087f81df7d81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2bf34923774c1f8a81087f81df7d81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2bf34923774c1f8a81087f81df7d81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee2bf34923774c1f8a81087f81df7d81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee2bf34923774c1f8a81087f81df7d81.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkn6DV9fOBNIMKVNgMMDFupQ_TE=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.152623+00 2025-12-09 10:14:41.152627+00 3586 FHPKDK2-001-1 SPMX-20240815298710 \N \N \N 1 \N [{"file_id": "d8a5c3d8-796f-429c-9edd-63d1f9701ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14a2dc237989425cabd723d91645d9c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14a2dc237989425cabd723d91645d9c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14a2dc237989425cabd723d91645d9c4.jpg", "file_size": 45137, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a2dc237989425cabd723d91645d9c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a2dc237989425cabd723d91645d9c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a2dc237989425cabd723d91645d9c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14a2dc237989425cabd723d91645d9c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14a2dc237989425cabd723d91645d9c4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:doIaHaSnpQRK8u1H4wO2DYXdCm4=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.153684+00 2025-12-09 10:14:41.153688+00 3587 0001-34FWF#V5曲线 SPMX-20240815298714 \N \N \N 1 \N [{"file_id": "e72deff6-2e84-4c57-9107-c48f4abe8aa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b1a57ebf2074c48b5fb3242703a7eb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b1a57ebf2074c48b5fb3242703a7eb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b1a57ebf2074c48b5fb3242703a7eb1.jpg", "file_size": 7812, "is_delete": false, "file_type": 1, "original_file_name": "0001-34FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1a57ebf2074c48b5fb3242703a7eb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1a57ebf2074c48b5fb3242703a7eb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1a57ebf2074c48b5fb3242703a7eb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b1a57ebf2074c48b5fb3242703a7eb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b1a57ebf2074c48b5fb3242703a7eb1.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDq98_vbwvPrQo3PsA7qOc3GTEs=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.154759+00 2025-12-09 10:14:41.154763+00 3588 C225-272#166#绿色 SPMX-20240815298705 \N \N \N 1 \N [{"file_id": "44f0a8b4-68a8-4507-a637-fe19a896f6db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c5ea4d142443ce9598e497f3674943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c5ea4d142443ce9598e497f3674943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c5ea4d142443ce9598e497f3674943.jpg", "file_size": 21552, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#166#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5ea4d142443ce9598e497f3674943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5ea4d142443ce9598e497f3674943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5ea4d142443ce9598e497f3674943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c5ea4d142443ce9598e497f3674943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c5ea4d142443ce9598e497f3674943.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7NifXn74mUcgavvxlv_lScOEuw=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.155823+00 2025-12-09 10:14:41.155827+00 3589 8003FWF#短袖匹布 SPMX-20240815298717 \N \N \N 1 \N [{"file_id": "3e614ef6-3c7d-4bc1-8247-636bc06e5af0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea84672ff2b2408997dd72e9fb703d9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea84672ff2b2408997dd72e9fb703d9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea84672ff2b2408997dd72e9fb703d9d.jpg", "file_size": 15834, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea84672ff2b2408997dd72e9fb703d9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea84672ff2b2408997dd72e9fb703d9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea84672ff2b2408997dd72e9fb703d9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea84672ff2b2408997dd72e9fb703d9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea84672ff2b2408997dd72e9fb703d9d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIYMBIfl-p4e8MULWFwv1QP20o4=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.156897+00 2025-12-09 10:14:41.156901+00 3590 C225-272#166#绿色净色 SPMX-20240815298716 \N \N \N 1 \N [{"file_id": "c733fe49-1fe2-45db-b362-dc5a50b464b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5cc5f3740324b8f943d85cd4f4af66d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5cc5f3740324b8f943d85cd4f4af66d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5cc5f3740324b8f943d85cd4f4af66d.jpg", "file_size": 8671, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#166#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cc5f3740324b8f943d85cd4f4af66d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cc5f3740324b8f943d85cd4f4af66d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cc5f3740324b8f943d85cd4f4af66d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5cc5f3740324b8f943d85cd4f4af66d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5cc5f3740324b8f943d85cd4f4af66d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouju3nLU4fYVEJlj9i6XMhtL4sg=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.157974+00 2025-12-09 10:14:41.157977+00 3591 0001-34FWE#VS-D3 SPMX-20240815298702 \N \N \N 1 \N [{"file_id": "c1c60224-b012-45a2-8ad8-df0c8121e9c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b44b828afcd4cbfbf20699f4662e460.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b44b828afcd4cbfbf20699f4662e460.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b44b828afcd4cbfbf20699f4662e460.jpg", "file_size": 15491, "is_delete": false, "file_type": 1, "original_file_name": "0001-34FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b44b828afcd4cbfbf20699f4662e460.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b44b828afcd4cbfbf20699f4662e460.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b44b828afcd4cbfbf20699f4662e460.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b44b828afcd4cbfbf20699f4662e460.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b44b828afcd4cbfbf20699f4662e460.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Izy8zBATfjyTWPmDrZEMNZbhMr4=", "createTime": "2024-08-15 14:39:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.159038+00 2025-12-09 10:14:41.159042+00 3592 DH0961-7#RC23 SPMX-20240815298715 \N \N \N 1 \N [{"file_id": "c1484dd2-2031-4bbe-a66e-4d230efc0a15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7f13d7460164f5cbaf362fe0aaef43d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7f13d7460164f5cbaf362fe0aaef43d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7f13d7460164f5cbaf362fe0aaef43d.jpg", "file_size": 73075, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-7#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f13d7460164f5cbaf362fe0aaef43d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f13d7460164f5cbaf362fe0aaef43d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f13d7460164f5cbaf362fe0aaef43d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7f13d7460164f5cbaf362fe0aaef43d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7f13d7460164f5cbaf362fe0aaef43d.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kYcFmLGj6AwTAOM3m___09yY4U=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.16009+00 2025-12-09 10:14:41.160095+00 3593 LHJ8576#37#玫红 SPMX-20240815298709 \N \N \N 1 \N [{"file_id": "89f7e12f-b3df-4543-8351-c9a381da814b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c18fa3f235ee4f58ad9a0c0789da9556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c18fa3f235ee4f58ad9a0c0789da9556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c18fa3f235ee4f58ad9a0c0789da9556.jpg", "file_size": 8412, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8576#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c18fa3f235ee4f58ad9a0c0789da9556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c18fa3f235ee4f58ad9a0c0789da9556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c18fa3f235ee4f58ad9a0c0789da9556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c18fa3f235ee4f58ad9a0c0789da9556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c18fa3f235ee4f58ad9a0c0789da9556.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6GcPPO3TQjafmv-A8oJ1ZWPQX-w=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.161159+00 2025-12-09 10:14:41.161163+00 3594 HSH011#红色 SPMX-20240815298712 \N \N \N 1 \N [{"file_id": "34490a44-5fc3-42a9-9bc1-758f006f1614", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b7f77fd551844e1b3f6403179b1b5d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b7f77fd551844e1b3f6403179b1b5d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b7f77fd551844e1b3f6403179b1b5d7.jpg", "file_size": 21166, "is_delete": false, "file_type": 1, "original_file_name": "HSH011#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7f77fd551844e1b3f6403179b1b5d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7f77fd551844e1b3f6403179b1b5d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7f77fd551844e1b3f6403179b1b5d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b7f77fd551844e1b3f6403179b1b5d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b7f77fd551844e1b3f6403179b1b5d7.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5W9_Ie7LrgBhDH4KmU0eGiGnLmU=", "createTime": "2024-08-15 14:39:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.16222+00 2025-12-09 10:14:41.162224+00 3595 22C09-09-63#32码 SPMX-20240815298724 \N \N \N 1 \N [{"file_id": "da607a8e-ad1e-4f13-9169-8431c0eb0603", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d768331781a41bb985a3c9979139bba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d768331781a41bb985a3c9979139bba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d768331781a41bb985a3c9979139bba.jpg", "file_size": 24286, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-63#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d768331781a41bb985a3c9979139bba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d768331781a41bb985a3c9979139bba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d768331781a41bb985a3c9979139bba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d768331781a41bb985a3c9979139bba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d768331781a41bb985a3c9979139bba.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wC1_C13XLZN6wENMSbKpE0xqzdw=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.163278+00 2025-12-09 10:14:41.163282+00 3596 DH0961-8#RC23 SPMX-20240815298725 \N \N \N 1 \N [{"file_id": "2898718f-9576-4029-aada-a090c1245ccf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ce188fc3c554cc3a14114664e3fef70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ce188fc3c554cc3a14114664e3fef70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ce188fc3c554cc3a14114664e3fef70.jpg", "file_size": 73853, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-8#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce188fc3c554cc3a14114664e3fef70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce188fc3c554cc3a14114664e3fef70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce188fc3c554cc3a14114664e3fef70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ce188fc3c554cc3a14114664e3fef70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ce188fc3c554cc3a14114664e3fef70.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7gNSeOb7KXva23yunHsff1ecbDE=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.16433+00 2025-12-09 10:14:41.164334+00 3597 FHPKDK2-001-2-坯布 SPMX-20240815298722 \N \N \N 1 \N [{"file_id": "a010bc93-7128-4638-8dab-c4ca58bf327d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1268514953142cd830998962f88e5c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1268514953142cd830998962f88e5c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1268514953142cd830998962f88e5c0.jpg", "file_size": 57713, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-2-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1268514953142cd830998962f88e5c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1268514953142cd830998962f88e5c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1268514953142cd830998962f88e5c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1268514953142cd830998962f88e5c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1268514953142cd830998962f88e5c0.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFF9vf5DuxMw9BYnUtPAWXyoWEI=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.165395+00 2025-12-09 10:14:41.165398+00 3598 LZ1189#上身2号色 SPMX-20240815298730 \N \N \N 1 \N [{"file_id": "b02696b6-6ee7-4fe8-8278-1ea69a7a7431", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "663dafbda69f4d7193a7d1d421e0897f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "663dafbda69f4d7193a7d1d421e0897f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "663dafbda69f4d7193a7d1d421e0897f.jpg", "file_size": 14834, "is_delete": false, "file_type": 1, "original_file_name": "LZ1189#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663dafbda69f4d7193a7d1d421e0897f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663dafbda69f4d7193a7d1d421e0897f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663dafbda69f4d7193a7d1d421e0897f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/663dafbda69f4d7193a7d1d421e0897f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/663dafbda69f4d7193a7d1d421e0897f.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:07CqGElkBwVTdXz0t4cG0eYkTnI=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.166459+00 2025-12-09 10:14:41.166463+00 3599 LZ1189#上身1号色 SPMX-20240815298719 \N \N \N 1 \N [{"file_id": "b1079bb9-3c18-45ab-aa47-4f168c61354b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa55f418a0864d44a1b6d05ca3730a33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa55f418a0864d44a1b6d05ca3730a33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa55f418a0864d44a1b6d05ca3730a33.jpg", "file_size": 16072, "is_delete": false, "file_type": 1, "original_file_name": "LZ1189#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa55f418a0864d44a1b6d05ca3730a33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa55f418a0864d44a1b6d05ca3730a33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa55f418a0864d44a1b6d05ca3730a33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa55f418a0864d44a1b6d05ca3730a33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa55f418a0864d44a1b6d05ca3730a33.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yF9nDmk40B7lXgPZD_QdZTfmWs0=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.167555+00 2025-12-09 10:14:41.167559+00 3600 HSH011FW#宝蓝VS-D3 SPMX-20240815298723 \N \N \N 1 \N [{"file_id": "7607ef82-f697-46fb-af05-c094da2ef5cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80b2d5a5c395475eae4c11f1bc6c32d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80b2d5a5c395475eae4c11f1bc6c32d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80b2d5a5c395475eae4c11f1bc6c32d9.jpg", "file_size": 22454, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b2d5a5c395475eae4c11f1bc6c32d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b2d5a5c395475eae4c11f1bc6c32d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b2d5a5c395475eae4c11f1bc6c32d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80b2d5a5c395475eae4c11f1bc6c32d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80b2d5a5c395475eae4c11f1bc6c32d9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LiobhSoKneiA_dxPLI8Rz1PoCY=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.168652+00 2025-12-09 10:14:41.168656+00 3601 8003FWF#短袖裤子 SPMX-20240815298728 \N \N \N 1 \N [{"file_id": "1386970f-a760-4290-a515-53a17506abb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75e41246cb45479c93f81d2fcf001b52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75e41246cb45479c93f81d2fcf001b52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75e41246cb45479c93f81d2fcf001b52.jpg", "file_size": 22562, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#短袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e41246cb45479c93f81d2fcf001b52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e41246cb45479c93f81d2fcf001b52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e41246cb45479c93f81d2fcf001b52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75e41246cb45479c93f81d2fcf001b52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75e41246cb45479c93f81d2fcf001b52.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WP4XKFCof3bSY_7NTw0BwSlYU_w=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.169715+00 2025-12-09 10:14:41.169719+00 3602 1041#S-110短款绿色 SPMX-20240815298720 \N \N \N 1 \N [{"file_id": "5b5124e6-b2ea-4f09-bbec-0da2b74e1553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29f0fb53998747efb51890e6617881c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29f0fb53998747efb51890e6617881c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29f0fb53998747efb51890e6617881c4.jpg", "file_size": 15611, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f0fb53998747efb51890e6617881c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f0fb53998747efb51890e6617881c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f0fb53998747efb51890e6617881c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29f0fb53998747efb51890e6617881c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29f0fb53998747efb51890e6617881c4.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tI6vHiMXu0A7oFTN_CO09CXFe7c=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.170797+00 2025-12-09 10:14:41.170801+00 3603 0001-35FWE#VS-D3 SPMX-20240815298726 \N \N \N 1 \N [{"file_id": "5c7d215f-953a-469a-8c78-21fa6f7d943a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "305852600dc3483a9d601652559e3fdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "305852600dc3483a9d601652559e3fdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "305852600dc3483a9d601652559e3fdf.jpg", "file_size": 21909, "is_delete": false, "file_type": 1, "original_file_name": "0001-35FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305852600dc3483a9d601652559e3fdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305852600dc3483a9d601652559e3fdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305852600dc3483a9d601652559e3fdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/305852600dc3483a9d601652559e3fdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/305852600dc3483a9d601652559e3fdf.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDDyIB8aPd0DU0GKMDsrcsPfB6c=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.171859+00 2025-12-09 10:14:41.171863+00 3604 LHJ8576#5#彩兰 SPMX-20240815298721 \N \N \N 1 \N [{"file_id": "e6fbe9db-f3de-4680-bdd1-dce0811f7be4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63948c794d7c4ae0ba5756febc1e5794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63948c794d7c4ae0ba5756febc1e5794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63948c794d7c4ae0ba5756febc1e5794.jpg", "file_size": 10613, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8576#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63948c794d7c4ae0ba5756febc1e5794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63948c794d7c4ae0ba5756febc1e5794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63948c794d7c4ae0ba5756febc1e5794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63948c794d7c4ae0ba5756febc1e5794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63948c794d7c4ae0ba5756febc1e5794.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWscNVJU-3GB5ZtglcrKbV7tjMQ=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.172927+00 2025-12-09 10:14:41.172931+00 3605 JS020FWE#VS-D3 SPMX-20240815298727 \N \N \N 1 \N [{"file_id": "ab1f0537-922d-4c08-ab58-872ad0c4be79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a0ced23ba5d45edba32941bc46681f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a0ced23ba5d45edba32941bc46681f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a0ced23ba5d45edba32941bc46681f5.jpg", "file_size": 15240, "is_delete": false, "file_type": 1, "original_file_name": "JS020FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0ced23ba5d45edba32941bc46681f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0ced23ba5d45edba32941bc46681f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0ced23ba5d45edba32941bc46681f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a0ced23ba5d45edba32941bc46681f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a0ced23ba5d45edba32941bc46681f5.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:paUu0AYacX-TSKILUIRDjxNJEvs=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.173968+00 2025-12-09 10:14:41.173972+00 3606 C225-272#216枣红 SPMX-20240815298729 \N \N \N 1 \N [{"file_id": "2699cd0b-e073-4cb0-9479-501669baf329", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96b9d76867f342349052d91c9fc7d119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96b9d76867f342349052d91c9fc7d119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96b9d76867f342349052d91c9fc7d119.jpg", "file_size": 22290, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#216枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b9d76867f342349052d91c9fc7d119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b9d76867f342349052d91c9fc7d119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b9d76867f342349052d91c9fc7d119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96b9d76867f342349052d91c9fc7d119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96b9d76867f342349052d91c9fc7d119.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikskC6o0a6FOTU6zWrnWIASWjDA=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.175052+00 2025-12-09 10:14:41.175055+00 3607 JS020#D SPMX-20240815298718 \N \N \N 1 \N [{"file_id": "57eba355-536b-447e-9eb2-47ac6f01128b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b492647172cd4bcc89a2b254674bfed8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b492647172cd4bcc89a2b254674bfed8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b492647172cd4bcc89a2b254674bfed8.jpg", "file_size": 18067, "is_delete": false, "file_type": 1, "original_file_name": "JS020#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492647172cd4bcc89a2b254674bfed8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492647172cd4bcc89a2b254674bfed8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492647172cd4bcc89a2b254674bfed8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b492647172cd4bcc89a2b254674bfed8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b492647172cd4bcc89a2b254674bfed8.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ezm4Sl6aWYRLdYs21JIkpZureQI=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.176104+00 2025-12-09 10:14:41.176108+00 3608 1041#S-110短款蓝色 SPMX-20240815298731 \N \N \N 1 \N [{"file_id": "e7d63bb2-c94e-4336-8ac5-899d37c9fc80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd0e6247118d46789b083cc73f0016b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd0e6247118d46789b083cc73f0016b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd0e6247118d46789b083cc73f0016b9.jpg", "file_size": 16269, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd0e6247118d46789b083cc73f0016b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd0e6247118d46789b083cc73f0016b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd0e6247118d46789b083cc73f0016b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd0e6247118d46789b083cc73f0016b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd0e6247118d46789b083cc73f0016b9.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qL2UrQVSxzyI7KFPLhHpTf7CYDo=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.177178+00 2025-12-09 10:14:41.177181+00 3609 C225-272#216枣红净色 SPMX-20240815298738 \N \N \N 1 \N [{"file_id": "09f17c23-4dd7-4785-810b-5396b07c2d08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1824f95c319540fe97dd683bcc3ebd79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1824f95c319540fe97dd683bcc3ebd79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1824f95c319540fe97dd683bcc3ebd79.jpg", "file_size": 9288, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#216枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1824f95c319540fe97dd683bcc3ebd79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1824f95c319540fe97dd683bcc3ebd79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1824f95c319540fe97dd683bcc3ebd79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1824f95c319540fe97dd683bcc3ebd79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1824f95c319540fe97dd683bcc3ebd79.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4BSgiOdcOdWhaTcTBIx5yT_GFWM=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.17826+00 2025-12-09 10:14:41.178264+00 3610 HSH011FW#枣红VS-D3 SPMX-20240815298734 \N \N \N 1 \N [{"file_id": "61ff14b3-3b50-45e6-9e46-e87a6c2eaf0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "919b620c00114e7d84864cd2e784aa7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "919b620c00114e7d84864cd2e784aa7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "919b620c00114e7d84864cd2e784aa7c.jpg", "file_size": 19759, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#枣红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919b620c00114e7d84864cd2e784aa7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919b620c00114e7d84864cd2e784aa7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919b620c00114e7d84864cd2e784aa7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/919b620c00114e7d84864cd2e784aa7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/919b620c00114e7d84864cd2e784aa7c.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNt8KN-s8HqEyqcql0_TWJy2NAs=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.17934+00 2025-12-09 10:14:41.179344+00 3611 22C09-09-63#34码 SPMX-20240815298735 \N \N \N 1 \N [{"file_id": "79592a00-8c93-4dca-81d2-3d542b3db13a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8a581d905f485799b0374837e7a602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8a581d905f485799b0374837e7a602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8a581d905f485799b0374837e7a602.jpg", "file_size": 23691, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-63#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8a581d905f485799b0374837e7a602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8a581d905f485799b0374837e7a602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8a581d905f485799b0374837e7a602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8a581d905f485799b0374837e7a602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8a581d905f485799b0374837e7a602.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDqKUPFpRKoFCbskHRChBzcc2mQ=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.180406+00 2025-12-09 10:14:41.18041+00 3612 FHPKDK2-001-2 SPMX-20240815298733 \N \N \N 1 \N [{"file_id": "eefc76dc-81dd-4fc3-b115-47589f60ad65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e691fb0158a48e7a162cb7bb1798ebf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e691fb0158a48e7a162cb7bb1798ebf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e691fb0158a48e7a162cb7bb1798ebf.jpg", "file_size": 42878, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e691fb0158a48e7a162cb7bb1798ebf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e691fb0158a48e7a162cb7bb1798ebf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e691fb0158a48e7a162cb7bb1798ebf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e691fb0158a48e7a162cb7bb1798ebf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e691fb0158a48e7a162cb7bb1798ebf.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-GtlP-GAQeSnQAQ9knYtO19xQQ=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.181453+00 2025-12-09 10:14:41.181457+00 3613 0001-35FWE#VS-D3番禺调色 SPMX-20240815298737 \N \N \N 1 \N [{"file_id": "572de7be-23a5-44e7-9c74-9ff9c4eda3a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "010945303a184412ac5912510c35b869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "010945303a184412ac5912510c35b869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "010945303a184412ac5912510c35b869.jpg", "file_size": 21664, "is_delete": false, "file_type": 1, "original_file_name": "0001-35FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010945303a184412ac5912510c35b869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010945303a184412ac5912510c35b869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010945303a184412ac5912510c35b869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/010945303a184412ac5912510c35b869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/010945303a184412ac5912510c35b869.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYAWewR1mMAl-Vj7dw1JLzoVcdk=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.182522+00 2025-12-09 10:14:41.182527+00 3614 JS021# SPMX-20240815298739 \N \N \N 1 \N [{"file_id": "48acbaf3-48af-4e65-adaa-437ecf7935ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc5cec4fda9741bbac1ef5a5e1f184f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc5cec4fda9741bbac1ef5a5e1f184f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc5cec4fda9741bbac1ef5a5e1f184f6.jpg", "file_size": 9382, "is_delete": false, "file_type": 1, "original_file_name": "JS021#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cec4fda9741bbac1ef5a5e1f184f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cec4fda9741bbac1ef5a5e1f184f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cec4fda9741bbac1ef5a5e1f184f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc5cec4fda9741bbac1ef5a5e1f184f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc5cec4fda9741bbac1ef5a5e1f184f6.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsmIQjejizj_0Evjcn83sPDbZl4=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.183602+00 2025-12-09 10:14:41.183606+00 3615 LHJ8576 SPMX-20240815298732 \N \N \N 1 \N [{"file_id": "e091d035-878b-44d3-bdcb-5b10d980a0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ba6e41b56374eb9a0c092c832d76436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ba6e41b56374eb9a0c092c832d76436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ba6e41b56374eb9a0c092c832d76436.jpg", "file_size": 10613, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8576.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba6e41b56374eb9a0c092c832d76436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba6e41b56374eb9a0c092c832d76436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba6e41b56374eb9a0c092c832d76436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ba6e41b56374eb9a0c092c832d76436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ba6e41b56374eb9a0c092c832d76436.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zsQ2axp0hg4BvPdTc1sDkNYBlg=", "createTime": "2024-08-15 14:39:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.184647+00 2025-12-09 10:14:41.184651+00 3616 DH0961-9#RC23 SPMX-20240815298736 \N \N \N 1 \N [{"file_id": "647138a5-6724-410e-8c34-e34646552df2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "803e158e28524c47b16a58ba192488be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "803e158e28524c47b16a58ba192488be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "803e158e28524c47b16a58ba192488be.jpg", "file_size": 52727, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-9#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803e158e28524c47b16a58ba192488be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803e158e28524c47b16a58ba192488be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803e158e28524c47b16a58ba192488be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/803e158e28524c47b16a58ba192488be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/803e158e28524c47b16a58ba192488be.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq7V_Pu9gqREbO_f5KxTDexmTk4=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.185712+00 2025-12-09 10:14:41.185715+00 3617 8003FWF#紫色短款上身 SPMX-20240815298740 \N \N \N 1 \N [{"file_id": "0a6f2800-1075-429a-9c02-72b4cb925d4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3845e1b0e0643ca8d9626ca9fb62e04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3845e1b0e0643ca8d9626ca9fb62e04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3845e1b0e0643ca8d9626ca9fb62e04.jpg", "file_size": 17465, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#紫色短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3845e1b0e0643ca8d9626ca9fb62e04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3845e1b0e0643ca8d9626ca9fb62e04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3845e1b0e0643ca8d9626ca9fb62e04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3845e1b0e0643ca8d9626ca9fb62e04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3845e1b0e0643ca8d9626ca9fb62e04.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eKafmQrJfGWCVUM4GNN5AyXFJfw=", "createTime": "2024-08-15 14:39:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.186778+00 2025-12-09 10:14:41.186782+00 3618 LZ1189#上身3号色 SPMX-20240815298741 \N \N \N 1 \N [{"file_id": "e6210717-a948-4fb8-9578-3e527125341e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfceafb1aa44e0aa76ca920840aaa55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfceafb1aa44e0aa76ca920840aaa55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfceafb1aa44e0aa76ca920840aaa55.jpg", "file_size": 15678, "is_delete": false, "file_type": 1, "original_file_name": "LZ1189#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfceafb1aa44e0aa76ca920840aaa55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfceafb1aa44e0aa76ca920840aaa55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfceafb1aa44e0aa76ca920840aaa55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfceafb1aa44e0aa76ca920840aaa55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfceafb1aa44e0aa76ca920840aaa55.jpg?e=1765361680&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NY8SM_eKDt7syO5WRL2_qiSCvKc=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.817909+00 2025-12-09 10:14:41.817918+00 3619 LHJ8604#20#枣红 SPMX-20240815298745 \N \N \N 1 \N [{"file_id": "e9fc3cb4-2363-42ef-a696-85dc52856fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76cfd16e3e7e44b188521c36befb675e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76cfd16e3e7e44b188521c36befb675e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76cfd16e3e7e44b188521c36befb675e.jpg", "file_size": 22766, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8604#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cfd16e3e7e44b188521c36befb675e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cfd16e3e7e44b188521c36befb675e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cfd16e3e7e44b188521c36befb675e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76cfd16e3e7e44b188521c36befb675e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76cfd16e3e7e44b188521c36befb675e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Jqu7IRVvkqxQEoFRy6kPD8Eoik=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.81945+00 2025-12-09 10:14:41.819456+00 3620 0001-35FWF#V5曲线 SPMX-20240815298742 \N \N \N 1 \N [{"file_id": "acedbf7c-5c7b-4452-96dd-364ca1a09332", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f2e03085bd24a2d87c637c1c889607a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f2e03085bd24a2d87c637c1c889607a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f2e03085bd24a2d87c637c1c889607a.jpg", "file_size": 15467, "is_delete": false, "file_type": 1, "original_file_name": "0001-35FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2e03085bd24a2d87c637c1c889607a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2e03085bd24a2d87c637c1c889607a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2e03085bd24a2d87c637c1c889607a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f2e03085bd24a2d87c637c1c889607a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f2e03085bd24a2d87c637c1c889607a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kq63hULqlAv7WkeEBtueyK8cCdI=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.820642+00 2025-12-09 10:14:41.820647+00 3621 FHPKDK2-001-3 SPMX-20240815298744 \N \N \N 1 \N [{"file_id": "83f9f1c3-5a0a-4ed2-8a9e-54819e5baec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c95c7b22f064285a0b71e693cc13bf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c95c7b22f064285a0b71e693cc13bf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c95c7b22f064285a0b71e693cc13bf2.jpg", "file_size": 49211, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c95c7b22f064285a0b71e693cc13bf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c95c7b22f064285a0b71e693cc13bf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c95c7b22f064285a0b71e693cc13bf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c95c7b22f064285a0b71e693cc13bf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c95c7b22f064285a0b71e693cc13bf2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rv5EMRoR4OrdhpA67j45_OAvQwI=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.822075+00 2025-12-09 10:14:41.822079+00 3622 DH0961-A1#LWQ15 SPMX-20240815298743 \N \N \N 1 \N [{"file_id": "860f0f00-099d-4a8a-8e1b-38193a720956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a16d90d82534212b41b63b35fa7e0ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a16d90d82534212b41b63b35fa7e0ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a16d90d82534212b41b63b35fa7e0ed.jpg", "file_size": 25524, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a16d90d82534212b41b63b35fa7e0ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a16d90d82534212b41b63b35fa7e0ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a16d90d82534212b41b63b35fa7e0ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a16d90d82534212b41b63b35fa7e0ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a16d90d82534212b41b63b35fa7e0ed.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_jWgolUiP91DjNhdVw7-OG4-P0=", "createTime": "2024-08-15 14:39:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.823452+00 2025-12-09 10:14:41.823455+00 3623 22C09-09-63#36码 SPMX-20240815298749 \N \N \N 1 \N [{"file_id": "e76a1b5d-faa8-4c3a-8069-97ee7c966260", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c53325ce32114710811df598ff7fd9be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c53325ce32114710811df598ff7fd9be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c53325ce32114710811df598ff7fd9be.jpg", "file_size": 23999, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-63#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53325ce32114710811df598ff7fd9be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53325ce32114710811df598ff7fd9be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53325ce32114710811df598ff7fd9be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c53325ce32114710811df598ff7fd9be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c53325ce32114710811df598ff7fd9be.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZ9_r930zy0219XnTqjOMPoDvT4=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.824816+00 2025-12-09 10:14:41.82482+00 3624 0001-36FWE#VS-D3 SPMX-20240815298752 \N \N \N 1 \N [{"file_id": "ae2c3f4d-18d0-4a9e-9024-7aa5bb67b92b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36e91f0fba674e65a9973ff363fff7f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36e91f0fba674e65a9973ff363fff7f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36e91f0fba674e65a9973ff363fff7f0.jpg", "file_size": 22519, "is_delete": false, "file_type": 1, "original_file_name": "0001-36FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e91f0fba674e65a9973ff363fff7f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e91f0fba674e65a9973ff363fff7f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e91f0fba674e65a9973ff363fff7f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36e91f0fba674e65a9973ff363fff7f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36e91f0fba674e65a9973ff363fff7f0.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgYCAMVZDv6nB5boELIW4ZAPCsg=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.826184+00 2025-12-09 10:14:41.826187+00 3625 LHJ8604#32#墨绿 SPMX-20240815298753 \N \N \N 1 \N [{"file_id": "53f9cd18-2feb-4921-98a5-143372fc505b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5584dc6675e4367bd9e7203186968b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5584dc6675e4367bd9e7203186968b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5584dc6675e4367bd9e7203186968b4.jpg", "file_size": 22373, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8604#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5584dc6675e4367bd9e7203186968b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5584dc6675e4367bd9e7203186968b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5584dc6675e4367bd9e7203186968b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5584dc6675e4367bd9e7203186968b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5584dc6675e4367bd9e7203186968b4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvjSPywPglS5ApEk-R4WKOxRRAY=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.827558+00 2025-12-09 10:14:41.827562+00 3626 C225-272#57#橙红 SPMX-20240815298748 \N \N \N 1 \N [{"file_id": "dd08dc57-4fd7-40b9-86e8-b6d64ca99881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ede4b92e29ab439a90144f6788b766cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ede4b92e29ab439a90144f6788b766cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ede4b92e29ab439a90144f6788b766cc.jpg", "file_size": 20879, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#57#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede4b92e29ab439a90144f6788b766cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede4b92e29ab439a90144f6788b766cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede4b92e29ab439a90144f6788b766cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ede4b92e29ab439a90144f6788b766cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ede4b92e29ab439a90144f6788b766cc.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziaueaNDNRnVpYORgOx617_Kekg=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.828913+00 2025-12-09 10:14:41.828917+00 3627 HSH011FW#白VS-D3 SPMX-20240815298747 \N \N \N 1 \N [{"file_id": "3da53855-15fc-4ede-898d-b810a77e9b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d951b5e4f85944a5ae20f0b60cf0e519.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d951b5e4f85944a5ae20f0b60cf0e519.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d951b5e4f85944a5ae20f0b60cf0e519.jpg", "file_size": 20133, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d951b5e4f85944a5ae20f0b60cf0e519.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d951b5e4f85944a5ae20f0b60cf0e519.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d951b5e4f85944a5ae20f0b60cf0e519.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d951b5e4f85944a5ae20f0b60cf0e519.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d951b5e4f85944a5ae20f0b60cf0e519.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ISo8Y8hQ9fOw6cT3q4UuUC3z7fw=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.830284+00 2025-12-09 10:14:41.830288+00 3628 1041#S-110短款黄色 SPMX-20240815298750 \N \N \N 1 \N [{"file_id": "18e44586-5db3-40a3-a36c-bf5c1359b661", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b37284bc4240baaf7fe2f28520a453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b37284bc4240baaf7fe2f28520a453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b37284bc4240baaf7fe2f28520a453.jpg", "file_size": 16590, "is_delete": false, "file_type": 1, "original_file_name": "1041#S-110短款黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b37284bc4240baaf7fe2f28520a453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b37284bc4240baaf7fe2f28520a453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b37284bc4240baaf7fe2f28520a453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b37284bc4240baaf7fe2f28520a453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b37284bc4240baaf7fe2f28520a453.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmHVkRwbdKz0sZYaJ9dKOZFax60=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.831634+00 2025-12-09 10:14:41.831638+00 3629 8003FWF#紫色短款下摆 SPMX-20240815298754 \N \N \N 1 \N [{"file_id": "137a68e5-492a-484b-9a36-fc62e2fe764a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ab3d43bc3604c70a19f7fa3b1257c7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ab3d43bc3604c70a19f7fa3b1257c7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ab3d43bc3604c70a19f7fa3b1257c7f.jpg", "file_size": 21582, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#紫色短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab3d43bc3604c70a19f7fa3b1257c7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab3d43bc3604c70a19f7fa3b1257c7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab3d43bc3604c70a19f7fa3b1257c7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ab3d43bc3604c70a19f7fa3b1257c7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ab3d43bc3604c70a19f7fa3b1257c7f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLdcD8RKPsCfGVBLFgOTPW5OIv0=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.832721+00 2025-12-09 10:14:41.832725+00 3630 LZ1189#上身4号色 SPMX-20240815298751 \N \N \N 1 \N [{"file_id": "815d07d5-5459-4c8a-bd69-b26cba27c1b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3e6fe7400464943a6a98f7f603995fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3e6fe7400464943a6a98f7f603995fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3e6fe7400464943a6a98f7f603995fd.jpg", "file_size": 15757, "is_delete": false, "file_type": 1, "original_file_name": "LZ1189#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6fe7400464943a6a98f7f603995fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6fe7400464943a6a98f7f603995fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6fe7400464943a6a98f7f603995fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3e6fe7400464943a6a98f7f603995fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3e6fe7400464943a6a98f7f603995fd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63ogTsqXXhInXwFPAJUA1UeNXfA=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.833787+00 2025-12-09 10:14:41.833791+00 3631 DH0961-A10#LWQ15 SPMX-20240815298755 \N \N \N 1 \N [{"file_id": "3a5b13ea-c398-4eb2-9e93-0c70ddd4c75c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "385cc6ed401b4187a6ad2e1fe3d784d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "385cc6ed401b4187a6ad2e1fe3d784d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "385cc6ed401b4187a6ad2e1fe3d784d4.jpg", "file_size": 59895, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A10#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385cc6ed401b4187a6ad2e1fe3d784d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385cc6ed401b4187a6ad2e1fe3d784d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385cc6ed401b4187a6ad2e1fe3d784d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/385cc6ed401b4187a6ad2e1fe3d784d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/385cc6ed401b4187a6ad2e1fe3d784d4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jq0zotRtpqaKxf7e5pi1ExGeG7A=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.834859+00 2025-12-09 10:14:41.834864+00 3632 JS021FWE#VS-D3 SPMX-20240815298746 \N \N \N 1 \N [{"file_id": "8c1e1315-02f9-4fdf-838d-0b0715df112e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92eb069378914886842629a460fcf414.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92eb069378914886842629a460fcf414.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92eb069378914886842629a460fcf414.jpg", "file_size": 14521, "is_delete": false, "file_type": 1, "original_file_name": "JS021FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92eb069378914886842629a460fcf414.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92eb069378914886842629a460fcf414.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92eb069378914886842629a460fcf414.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92eb069378914886842629a460fcf414.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92eb069378914886842629a460fcf414.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIyeUFdXLmEgXBcGoQuZCPCn_Is=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.835911+00 2025-12-09 10:14:41.835915+00 3633 JS022FWE#绿VS-D3 SPMX-20240815298756 \N \N \N 1 \N [{"file_id": "1dc8186f-13a1-426d-ae31-8193869b4ef7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "161fc76167884714b5be94a41757a653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "161fc76167884714b5be94a41757a653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "161fc76167884714b5be94a41757a653.jpg", "file_size": 14848, "is_delete": false, "file_type": 1, "original_file_name": "JS022FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161fc76167884714b5be94a41757a653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161fc76167884714b5be94a41757a653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161fc76167884714b5be94a41757a653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/161fc76167884714b5be94a41757a653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/161fc76167884714b5be94a41757a653.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thTTYvx4QtArd7E3T_XEQ93TPlc=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.836977+00 2025-12-09 10:14:41.836981+00 3634 22C09-09-63#38码 SPMX-20240815298762 \N \N \N 1 \N [{"file_id": "9359ff93-8da9-4025-91f0-b25213c42361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a867c34ab0084a71892ea5bf99dcdedd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a867c34ab0084a71892ea5bf99dcdedd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a867c34ab0084a71892ea5bf99dcdedd.jpg", "file_size": 22911, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-63#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a867c34ab0084a71892ea5bf99dcdedd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a867c34ab0084a71892ea5bf99dcdedd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a867c34ab0084a71892ea5bf99dcdedd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a867c34ab0084a71892ea5bf99dcdedd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a867c34ab0084a71892ea5bf99dcdedd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkubTfFMoeuq7SyWeTNeCR-_VJI=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.838026+00 2025-12-09 10:14:41.83803+00 3635 FHPKDK2-002-1-坯布 SPMX-20240815298768 \N \N \N 1 \N [{"file_id": "be1a1f8c-270b-4841-b34c-287e042ec6e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7996a670caf24ec3a17938bfae40800b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7996a670caf24ec3a17938bfae40800b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7996a670caf24ec3a17938bfae40800b.jpg", "file_size": 55723, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-1-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7996a670caf24ec3a17938bfae40800b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7996a670caf24ec3a17938bfae40800b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7996a670caf24ec3a17938bfae40800b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7996a670caf24ec3a17938bfae40800b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7996a670caf24ec3a17938bfae40800b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e9CrcmHENLZhJ8LsKAR-heXBoU0=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.839146+00 2025-12-09 10:14:41.83915+00 3636 C225-272#57#橙红净色 SPMX-20240815298758 \N \N \N 1 \N [{"file_id": "f68cfd96-2fbd-4e73-a588-1e52c38e4940", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df512db8abb44510919661d0892b3eb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df512db8abb44510919661d0892b3eb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df512db8abb44510919661d0892b3eb0.jpg", "file_size": 9023, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#57#橙红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df512db8abb44510919661d0892b3eb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df512db8abb44510919661d0892b3eb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df512db8abb44510919661d0892b3eb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df512db8abb44510919661d0892b3eb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df512db8abb44510919661d0892b3eb0.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvKa_lB0Aurdr8njbHY3ZUVFF5I=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.840197+00 2025-12-09 10:14:41.840201+00 3637 8003FWF#紫色短款袖子 SPMX-20240815298763 \N \N \N 1 \N [{"file_id": "07230228-3386-44ef-bb0a-5cda6894780d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1784b2f377ff4a518cad534ba4bf4af7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1784b2f377ff4a518cad534ba4bf4af7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1784b2f377ff4a518cad534ba4bf4af7.jpg", "file_size": 14240, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#紫色短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1784b2f377ff4a518cad534ba4bf4af7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1784b2f377ff4a518cad534ba4bf4af7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1784b2f377ff4a518cad534ba4bf4af7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1784b2f377ff4a518cad534ba4bf4af7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1784b2f377ff4a518cad534ba4bf4af7.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhNWRBg8hto9z_IanDdv-PoknrA=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.841275+00 2025-12-09 10:14:41.841279+00 3638 LHJ8604#37#玫红 SPMX-20240815298766 \N \N \N 1 \N [{"file_id": "e75a1ef5-3e5e-4fc3-9edf-be48f2dcbeb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a204c3790784f1d9a4e0844c1180a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a204c3790784f1d9a4e0844c1180a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a204c3790784f1d9a4e0844c1180a0e.jpg", "file_size": 21291, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8604#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a204c3790784f1d9a4e0844c1180a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a204c3790784f1d9a4e0844c1180a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a204c3790784f1d9a4e0844c1180a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a204c3790784f1d9a4e0844c1180a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a204c3790784f1d9a4e0844c1180a0e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00TpLlWLur6qWocTpIDu15hsjCg=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.842314+00 2025-12-09 10:14:41.842318+00 3639 22C09-09-64#30码 SPMX-20240815298774 \N \N \N 1 \N [{"file_id": "78129d52-6f01-4a2a-ae3e-d3a4c8c6a797", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "139c86692fd046e0930e39c040ee8a8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "139c86692fd046e0930e39c040ee8a8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "139c86692fd046e0930e39c040ee8a8b.jpg", "file_size": 20808, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-64#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139c86692fd046e0930e39c040ee8a8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139c86692fd046e0930e39c040ee8a8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139c86692fd046e0930e39c040ee8a8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/139c86692fd046e0930e39c040ee8a8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/139c86692fd046e0930e39c040ee8a8b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHgQs0r5DMvcdJwbFt11pYbmltw=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.84338+00 2025-12-09 10:14:41.843384+00 3640 FHPKDK2-001-4 SPMX-20240815298757 \N \N \N 1 \N [{"file_id": "cd08b4b0-a32f-4f72-9e51-096ef8ea967d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b5409e0bbc4148913747fb6e42828a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b5409e0bbc4148913747fb6e42828a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b5409e0bbc4148913747fb6e42828a.jpg", "file_size": 49876, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b5409e0bbc4148913747fb6e42828a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b5409e0bbc4148913747fb6e42828a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b5409e0bbc4148913747fb6e42828a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b5409e0bbc4148913747fb6e42828a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b5409e0bbc4148913747fb6e42828a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghE_dKqgvXb14lADjFoAwlGBJGM=", "createTime": "2024-08-15 14:39:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.844433+00 2025-12-09 10:14:41.844437+00 3641 0001-36FWE#VS-D3番禺调色 SPMX-20240815298764 \N \N \N 1 \N [{"file_id": "4cc4c74f-5ecf-4e30-bff0-31eac73baf45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "322d3b5477224ca9bb1925a85d546afb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "322d3b5477224ca9bb1925a85d546afb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "322d3b5477224ca9bb1925a85d546afb.jpg", "file_size": 23873, "is_delete": false, "file_type": 1, "original_file_name": "0001-36FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/322d3b5477224ca9bb1925a85d546afb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/322d3b5477224ca9bb1925a85d546afb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/322d3b5477224ca9bb1925a85d546afb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/322d3b5477224ca9bb1925a85d546afb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/322d3b5477224ca9bb1925a85d546afb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02lmPgNvwHrjOJuiG7QLxnfJq_E=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.84552+00 2025-12-09 10:14:41.845524+00 3642 C225-272#白色 SPMX-20240815298769 \N \N \N 1 \N [{"file_id": "7442b834-d03a-4de6-ac2e-0bd153e03283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "692dc97781064e55b1a7ce681ee2bf04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "692dc97781064e55b1a7ce681ee2bf04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "692dc97781064e55b1a7ce681ee2bf04.jpg", "file_size": 20875, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692dc97781064e55b1a7ce681ee2bf04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692dc97781064e55b1a7ce681ee2bf04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692dc97781064e55b1a7ce681ee2bf04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/692dc97781064e55b1a7ce681ee2bf04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/692dc97781064e55b1a7ce681ee2bf04.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4g2vQo_MuFPy1BrmTGrSsJXxl7U=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.846562+00 2025-12-09 10:14:41.846566+00 3643 DH0961-A2#LWQ15 SPMX-20240815298767 \N \N \N 1 \N [{"file_id": "944998cb-8c2e-4afd-9f2b-3df1df0afd59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa954971ba504774befad6d2797b70a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa954971ba504774befad6d2797b70a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa954971ba504774befad6d2797b70a3.jpg", "file_size": 63149, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa954971ba504774befad6d2797b70a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa954971ba504774befad6d2797b70a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa954971ba504774befad6d2797b70a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa954971ba504774befad6d2797b70a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa954971ba504774befad6d2797b70a3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSM-Ct3uAxEMRmvtGytHNNmFkZM=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.84766+00 2025-12-09 10:14:41.847664+00 3644 HSH011FW#粉VS-D3 SPMX-20240815298761 \N \N \N 1 \N [{"file_id": "2a73e4d9-05fe-4a58-a8c9-aa3949bbfd0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9361da35bfd64d6ea7c198b5efd5f59b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9361da35bfd64d6ea7c198b5efd5f59b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9361da35bfd64d6ea7c198b5efd5f59b.jpg", "file_size": 19879, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9361da35bfd64d6ea7c198b5efd5f59b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9361da35bfd64d6ea7c198b5efd5f59b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9361da35bfd64d6ea7c198b5efd5f59b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9361da35bfd64d6ea7c198b5efd5f59b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9361da35bfd64d6ea7c198b5efd5f59b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUESqBDTW95jUb9q1ZXSBK0akF4=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.848717+00 2025-12-09 10:14:41.848722+00 3645 10414-10FWE#VS-D3 SPMX-20240815298759 \N \N \N 1 \N [{"file_id": "6c3576ae-7311-49ed-b0db-67624b786c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "499bebf218ce4b928665230e45745882.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "499bebf218ce4b928665230e45745882.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "499bebf218ce4b928665230e45745882.jpg", "file_size": 21469, "is_delete": false, "file_type": 1, "original_file_name": "10414-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499bebf218ce4b928665230e45745882.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499bebf218ce4b928665230e45745882.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499bebf218ce4b928665230e45745882.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/499bebf218ce4b928665230e45745882.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/499bebf218ce4b928665230e45745882.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUowPoKOqJH7KTn-8tZHWCkG_Pk=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.84978+00 2025-12-09 10:14:41.849783+00 3646 10414-11FWE#VS-D3 SPMX-20240815298770 \N \N \N 1 \N [{"file_id": "271361e2-96dc-4731-9cac-b5f629243708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41614a8c33684f008412b3daac12a875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41614a8c33684f008412b3daac12a875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41614a8c33684f008412b3daac12a875.jpg", "file_size": 15930, "is_delete": false, "file_type": 1, "original_file_name": "10414-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41614a8c33684f008412b3daac12a875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41614a8c33684f008412b3daac12a875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41614a8c33684f008412b3daac12a875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41614a8c33684f008412b3daac12a875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41614a8c33684f008412b3daac12a875.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WiF_NbTJCdy-Nluxd62V3PTO28=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.850847+00 2025-12-09 10:14:41.850852+00 3647 HSH011FW#紫VS-D3 SPMX-20240815298773 \N \N \N 1 \N [{"file_id": "b8b6032b-eba7-4751-95b1-4d5a5c2ca7f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d05a0e92565745c8b566dca0fa05cb2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d05a0e92565745c8b566dca0fa05cb2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d05a0e92565745c8b566dca0fa05cb2c.jpg", "file_size": 18594, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05a0e92565745c8b566dca0fa05cb2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05a0e92565745c8b566dca0fa05cb2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05a0e92565745c8b566dca0fa05cb2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d05a0e92565745c8b566dca0fa05cb2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d05a0e92565745c8b566dca0fa05cb2c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBCa2PL7z-fJPn4aPF2Xyw_viSM=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.851926+00 2025-12-09 10:14:41.85193+00 3648 LZ1189#上身5号色 SPMX-20240815298760 \N \N \N 1 \N [{"file_id": "d862a45d-e71d-4026-923d-48e6fb962163", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "414c823b36c14636b320e3ba08fb6fbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "414c823b36c14636b320e3ba08fb6fbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "414c823b36c14636b320e3ba08fb6fbf.jpg", "file_size": 15078, "is_delete": false, "file_type": 1, "original_file_name": "LZ1189#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414c823b36c14636b320e3ba08fb6fbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414c823b36c14636b320e3ba08fb6fbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414c823b36c14636b320e3ba08fb6fbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/414c823b36c14636b320e3ba08fb6fbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/414c823b36c14636b320e3ba08fb6fbf.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_NGEnZKWuSY93VoBgUzmc6DZggQ=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.852996+00 2025-12-09 10:14:41.853+00 3649 JS022FWE#蓝VS-D3 SPMX-20240815298771 \N \N \N 1 \N [{"file_id": "08616cc4-dd4f-4c74-ace0-056de3735afa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24ec051478ae42fe89e4face374c34fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24ec051478ae42fe89e4face374c34fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24ec051478ae42fe89e4face374c34fb.jpg", "file_size": 13756, "is_delete": false, "file_type": 1, "original_file_name": "JS022FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ec051478ae42fe89e4face374c34fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ec051478ae42fe89e4face374c34fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ec051478ae42fe89e4face374c34fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24ec051478ae42fe89e4face374c34fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24ec051478ae42fe89e4face374c34fb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1geEh24LKsM49duxGAUohpYluY8=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.854061+00 2025-12-09 10:14:41.854066+00 3650 LZ118FWF#1号色短袖 SPMX-20240815298772 \N \N \N 1 \N [{"file_id": "c626a956-92d9-4bd4-8f4f-7b3eaf33dc1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0750b09eeac4e428a9779cfd34ef995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0750b09eeac4e428a9779cfd34ef995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0750b09eeac4e428a9779cfd34ef995.jpg", "file_size": 19107, "is_delete": false, "file_type": 1, "original_file_name": "LZ118FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0750b09eeac4e428a9779cfd34ef995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0750b09eeac4e428a9779cfd34ef995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0750b09eeac4e428a9779cfd34ef995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0750b09eeac4e428a9779cfd34ef995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0750b09eeac4e428a9779cfd34ef995.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hy6eD77bD27PRSCtMST1EkZ08aI=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.855136+00 2025-12-09 10:14:41.855139+00 3651 8003FWF#黄绿短款上身 SPMX-20240815298775 \N \N \N 1 \N [{"file_id": "24199b2f-b1e4-4152-b52c-3aeff7a7dbaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e53e7786a1394b139a9aac0004b6c7c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e53e7786a1394b139a9aac0004b6c7c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e53e7786a1394b139a9aac0004b6c7c3.jpg", "file_size": 17352, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黄绿短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53e7786a1394b139a9aac0004b6c7c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53e7786a1394b139a9aac0004b6c7c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53e7786a1394b139a9aac0004b6c7c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e53e7786a1394b139a9aac0004b6c7c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e53e7786a1394b139a9aac0004b6c7c3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1Sbh25v_fUQzrgLkaRS-RYrBJs=", "createTime": "2024-08-15 14:39:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.856216+00 2025-12-09 10:14:41.85622+00 3652 0001-36FWF#V5曲线 SPMX-20240815298776 \N \N \N 1 \N [{"file_id": "5cb85f32-5b2d-48d7-9d68-5ad5f66d83fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac92f3d089224539beedc29cc686adab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac92f3d089224539beedc29cc686adab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac92f3d089224539beedc29cc686adab.jpg", "file_size": 7569, "is_delete": false, "file_type": 1, "original_file_name": "0001-36FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac92f3d089224539beedc29cc686adab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac92f3d089224539beedc29cc686adab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac92f3d089224539beedc29cc686adab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac92f3d089224539beedc29cc686adab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac92f3d089224539beedc29cc686adab.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXMZnFEPNifOEx-be66OxjdHgjU=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.857283+00 2025-12-09 10:14:41.857286+00 3653 FHPKDK2-002-1 SPMX-20240815298779 \N \N \N 1 \N [{"file_id": "0c90d2ea-c18e-41c3-afec-9b8b412de36d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a86eec44535140b6adb07a687a5237b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a86eec44535140b6adb07a687a5237b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a86eec44535140b6adb07a687a5237b3.jpg", "file_size": 50539, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86eec44535140b6adb07a687a5237b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86eec44535140b6adb07a687a5237b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86eec44535140b6adb07a687a5237b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a86eec44535140b6adb07a687a5237b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a86eec44535140b6adb07a687a5237b3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nb_dR4y-DdOdg0xMuWNXDWri1lE=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.858357+00 2025-12-09 10:14:41.858361+00 3654 8003FWF#黄绿短款下摆 SPMX-20240815298785 \N \N \N 1 \N [{"file_id": "e0221316-b4af-4270-96ac-30c909f4229b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92279fcb65a04836aa522f261713957c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92279fcb65a04836aa522f261713957c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92279fcb65a04836aa522f261713957c.jpg", "file_size": 21008, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黄绿短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92279fcb65a04836aa522f261713957c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92279fcb65a04836aa522f261713957c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92279fcb65a04836aa522f261713957c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92279fcb65a04836aa522f261713957c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92279fcb65a04836aa522f261713957c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lnEsM2W0c0rR8ATwFmZo5pIVmVg=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.859418+00 2025-12-09 10:14:41.859422+00 3655 DH0961-A3#LWQ15 SPMX-20240815298778 \N \N \N 1 \N [{"file_id": "9b38cec5-5f3e-4c7e-9711-eefaed48c253", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30e312e395a143a59d241a9df70eb078.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30e312e395a143a59d241a9df70eb078.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30e312e395a143a59d241a9df70eb078.jpg", "file_size": 42896, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A3#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e312e395a143a59d241a9df70eb078.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e312e395a143a59d241a9df70eb078.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e312e395a143a59d241a9df70eb078.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30e312e395a143a59d241a9df70eb078.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30e312e395a143a59d241a9df70eb078.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eYXKNaIkpshqPGWR7zmdICjzeHk=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.860497+00 2025-12-09 10:14:41.860501+00 3656 LHJ8604#5#彩兰 SPMX-20240815298777 \N \N \N 1 \N [{"file_id": "9b475db4-09d9-40e7-bc2f-2f93749a3cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg", "file_size": 23254, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8604#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99c56c7fb6a24b4f9a2df6ebbcae1e92.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiHKa8SVeuf0lFL9S20ajt4Io-Q=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.861551+00 2025-12-09 10:14:41.861555+00 3657 JS023FWE#VS-D3 SPMX-20240815298780 \N \N \N 1 \N [{"file_id": "99dac47b-11fb-4a7c-aee9-4071a33196a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bf45428f4084f0a955668c5edc5ef3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bf45428f4084f0a955668c5edc5ef3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bf45428f4084f0a955668c5edc5ef3a.jpg", "file_size": 14928, "is_delete": false, "file_type": 1, "original_file_name": "JS023FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf45428f4084f0a955668c5edc5ef3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf45428f4084f0a955668c5edc5ef3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf45428f4084f0a955668c5edc5ef3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bf45428f4084f0a955668c5edc5ef3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bf45428f4084f0a955668c5edc5ef3a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uXn9Zm9wsFWDJsFh8XDxxY7ODk=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.862628+00 2025-12-09 10:14:41.862631+00 3658 HSH011FW#黄VS-D3 SPMX-20240815298786 \N \N \N 1 \N [{"file_id": "6b25e9e2-cd39-441e-b487-6a2b3f8b2c7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80921a0c5a2449d09fc8cf26856b0dfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80921a0c5a2449d09fc8cf26856b0dfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80921a0c5a2449d09fc8cf26856b0dfa.jpg", "file_size": 19706, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80921a0c5a2449d09fc8cf26856b0dfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80921a0c5a2449d09fc8cf26856b0dfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80921a0c5a2449d09fc8cf26856b0dfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80921a0c5a2449d09fc8cf26856b0dfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80921a0c5a2449d09fc8cf26856b0dfa.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4JzHiSC-ZYTjcwf7WTZweX1C9Q=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.863676+00 2025-12-09 10:14:41.86368+00 3659 C225-272#黑色 SPMX-20240815298782 \N \N \N 1 \N [{"file_id": "b0f27925-5589-4dd9-b02e-d6df15ef0260", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8abea675693e47c1a8a1546b536e812c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8abea675693e47c1a8a1546b536e812c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8abea675693e47c1a8a1546b536e812c.jpg", "file_size": 21575, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abea675693e47c1a8a1546b536e812c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abea675693e47c1a8a1546b536e812c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abea675693e47c1a8a1546b536e812c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8abea675693e47c1a8a1546b536e812c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8abea675693e47c1a8a1546b536e812c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6WRrn4KONuEXx5f2S8rHIhyMxm4=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.864755+00 2025-12-09 10:14:41.864758+00 3660 22C09-09-64#32码 SPMX-20240815298784 \N \N \N 1 \N [{"file_id": "afc78468-d0c9-42f0-b441-282804b386e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "636326c7c1104eebb75a0edc17649aeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "636326c7c1104eebb75a0edc17649aeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "636326c7c1104eebb75a0edc17649aeb.jpg", "file_size": 20201, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-64#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636326c7c1104eebb75a0edc17649aeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636326c7c1104eebb75a0edc17649aeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636326c7c1104eebb75a0edc17649aeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/636326c7c1104eebb75a0edc17649aeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/636326c7c1104eebb75a0edc17649aeb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SeD3EDvtjJDLxjGhdZF1LW30hRM=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.865809+00 2025-12-09 10:14:41.865813+00 3661 10414-12FWE#VS-D3 SPMX-20240815298781 \N \N \N 1 \N [{"file_id": "7139ecaa-de6d-4f3f-9d72-834eefcdc695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8be5ffba4c5e4fa08eccac42809b4776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8be5ffba4c5e4fa08eccac42809b4776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8be5ffba4c5e4fa08eccac42809b4776.jpg", "file_size": 27579, "is_delete": false, "file_type": 1, "original_file_name": "10414-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be5ffba4c5e4fa08eccac42809b4776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be5ffba4c5e4fa08eccac42809b4776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be5ffba4c5e4fa08eccac42809b4776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8be5ffba4c5e4fa08eccac42809b4776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8be5ffba4c5e4fa08eccac42809b4776.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vJars4iG8aR3NYM3wDFMWeCp7E=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.866872+00 2025-12-09 10:14:41.866876+00 3662 0001-37FWE#红VS-D3 SPMX-20240815298787 \N \N \N 1 \N [{"file_id": "4a1d54a7-4e9c-4d3c-aa42-23ae91fa4041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5b086943fbe4bf6b2252e048e629120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5b086943fbe4bf6b2252e048e629120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5b086943fbe4bf6b2252e048e629120.jpg", "file_size": 17124, "is_delete": false, "file_type": 1, "original_file_name": "0001-37FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5b086943fbe4bf6b2252e048e629120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5b086943fbe4bf6b2252e048e629120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5b086943fbe4bf6b2252e048e629120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5b086943fbe4bf6b2252e048e629120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5b086943fbe4bf6b2252e048e629120.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KD-mLgGa_y6jEq73W31tmVwr4xQ=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.867911+00 2025-12-09 10:14:41.867915+00 3663 LZ118FWF#2号色短袖 SPMX-20240815298783 \N \N \N 1 \N [{"file_id": "f4c76665-d108-47de-9515-2572e6ed7c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c2836c205c1460597cc7678058786d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c2836c205c1460597cc7678058786d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c2836c205c1460597cc7678058786d7.jpg", "file_size": 20638, "is_delete": false, "file_type": 1, "original_file_name": "LZ118FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2836c205c1460597cc7678058786d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2836c205c1460597cc7678058786d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2836c205c1460597cc7678058786d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c2836c205c1460597cc7678058786d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c2836c205c1460597cc7678058786d7.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCaX9F-lb4CTfH-bery3zX-fiCc=", "createTime": "2024-08-15 14:39:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.868989+00 2025-12-09 10:14:41.868992+00 3664 DH0961-A4#LWQ15 SPMX-20240815298789 \N \N \N 1 \N [{"file_id": "04a84b07-4191-42a7-aa37-a35a376896f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b776d203d434ef48e09ca74243ce7ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b776d203d434ef48e09ca74243ce7ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b776d203d434ef48e09ca74243ce7ed.jpg", "file_size": 67352, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776d203d434ef48e09ca74243ce7ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776d203d434ef48e09ca74243ce7ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776d203d434ef48e09ca74243ce7ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b776d203d434ef48e09ca74243ce7ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b776d203d434ef48e09ca74243ce7ed.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0U81g_xnquURBoKNipyKRMWa0Y=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.870026+00 2025-12-09 10:14:41.870029+00 3665 FHPKDK2-002-2-坯布 SPMX-20240815298790 \N \N \N 1 \N [{"file_id": "27de2ab8-f374-4912-ad46-63b40f8992ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765bbf47848642d29c967e5bc2f6f51b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765bbf47848642d29c967e5bc2f6f51b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765bbf47848642d29c967e5bc2f6f51b.jpg", "file_size": 56765, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-2-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765bbf47848642d29c967e5bc2f6f51b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765bbf47848642d29c967e5bc2f6f51b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765bbf47848642d29c967e5bc2f6f51b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765bbf47848642d29c967e5bc2f6f51b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765bbf47848642d29c967e5bc2f6f51b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92sS0posMPZUGxzJc5VJnfn596w=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.871084+00 2025-12-09 10:14:41.871088+00 3666 JS024FWE#VS-D3 SPMX-20240815298793 \N \N \N 1 \N [{"file_id": "38a5c914-d074-4577-9075-41ac69312ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2d34c1eaeee4b96ba19589363ee2ce4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2d34c1eaeee4b96ba19589363ee2ce4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2d34c1eaeee4b96ba19589363ee2ce4.jpg", "file_size": 15722, "is_delete": false, "file_type": 1, "original_file_name": "JS024FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d34c1eaeee4b96ba19589363ee2ce4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d34c1eaeee4b96ba19589363ee2ce4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d34c1eaeee4b96ba19589363ee2ce4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2d34c1eaeee4b96ba19589363ee2ce4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2d34c1eaeee4b96ba19589363ee2ce4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ol0Qqr79gi8IicP934SuQPwgrok=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.872119+00 2025-12-09 10:14:41.872123+00 3667 8003FWF#黄绿短款袖子 SPMX-20240815298795 \N \N \N 1 \N [{"file_id": "143fa8cf-8f15-49d0-9991-bfadaa9eb5c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d345981afab46ebb7d51d6ec0f8d397.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d345981afab46ebb7d51d6ec0f8d397.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d345981afab46ebb7d51d6ec0f8d397.jpg", "file_size": 14368, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黄绿短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d345981afab46ebb7d51d6ec0f8d397.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d345981afab46ebb7d51d6ec0f8d397.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d345981afab46ebb7d51d6ec0f8d397.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d345981afab46ebb7d51d6ec0f8d397.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d345981afab46ebb7d51d6ec0f8d397.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9AE8v4bgOsWYZTWk-yXd33JATY=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.87321+00 2025-12-09 10:14:41.873213+00 3668 LHJ8607#20#枣红 SPMX-20240815298788 \N \N \N 1 \N [{"file_id": "61278390-a461-426b-abf9-49f5844ad960", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5339d51934f047698216241bdff52d90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5339d51934f047698216241bdff52d90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5339d51934f047698216241bdff52d90.jpg", "file_size": 23252, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8607#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339d51934f047698216241bdff52d90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339d51934f047698216241bdff52d90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5339d51934f047698216241bdff52d90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5339d51934f047698216241bdff52d90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5339d51934f047698216241bdff52d90.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eb8PVi_DLa0wy2HRddJrTkgfYWk=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.874247+00 2025-12-09 10:14:41.87425+00 3669 10414-13FWE#VS-D3 SPMX-20240815298791 \N \N \N 1 \N [{"file_id": "89785577-aede-4334-b762-c94a0506bf4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "126d61afc87449e58ae24f26a196f3a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "126d61afc87449e58ae24f26a196f3a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "126d61afc87449e58ae24f26a196f3a4.jpg", "file_size": 22057, "is_delete": false, "file_type": 1, "original_file_name": "10414-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/126d61afc87449e58ae24f26a196f3a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/126d61afc87449e58ae24f26a196f3a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/126d61afc87449e58ae24f26a196f3a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/126d61afc87449e58ae24f26a196f3a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/126d61afc87449e58ae24f26a196f3a4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ui8k4ByQXhJlFIWe8tMt58CQ0Jw=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.875299+00 2025-12-09 10:14:41.875303+00 3670 22C09-09-64#34码 SPMX-20240815298792 \N \N \N 1 \N [{"file_id": "523c51e2-2e1c-4627-a949-9233487554ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "906e90092d02489cbbcfd7f051eb8fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "906e90092d02489cbbcfd7f051eb8fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "906e90092d02489cbbcfd7f051eb8fad.jpg", "file_size": 20054, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-64#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906e90092d02489cbbcfd7f051eb8fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906e90092d02489cbbcfd7f051eb8fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906e90092d02489cbbcfd7f051eb8fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/906e90092d02489cbbcfd7f051eb8fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/906e90092d02489cbbcfd7f051eb8fad.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxiqAqOlk8GasKkAD3JZOHuOjzE=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.876353+00 2025-12-09 10:14:41.876357+00 3671 C225-272#黑色净色 SPMX-20240815298794 \N \N \N 1 \N [{"file_id": "b052d497-f548-4211-8437-51744e4dea6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "460ec0a9906c490494955cbc1ef8887e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "460ec0a9906c490494955cbc1ef8887e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "460ec0a9906c490494955cbc1ef8887e.jpg", "file_size": 8484, "is_delete": false, "file_type": 1, "original_file_name": "C225-272#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460ec0a9906c490494955cbc1ef8887e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460ec0a9906c490494955cbc1ef8887e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460ec0a9906c490494955cbc1ef8887e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/460ec0a9906c490494955cbc1ef8887e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/460ec0a9906c490494955cbc1ef8887e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYPtljpuuYFqlq3w1duKwf1psak=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.877436+00 2025-12-09 10:14:41.877439+00 3672 LZ118FWF#3号色短袖 SPMX-20240815298796 \N \N \N 1 \N [{"file_id": "7a8b65f2-173e-4e5d-84fc-718b1fe16733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fcbadc0d87c46e2a831e1648171c42b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fcbadc0d87c46e2a831e1648171c42b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fcbadc0d87c46e2a831e1648171c42b.jpg", "file_size": 19641, "is_delete": false, "file_type": 1, "original_file_name": "LZ118FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fcbadc0d87c46e2a831e1648171c42b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fcbadc0d87c46e2a831e1648171c42b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fcbadc0d87c46e2a831e1648171c42b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fcbadc0d87c46e2a831e1648171c42b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fcbadc0d87c46e2a831e1648171c42b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0tu6OIAJoxjdZ7e5c5LsOngkYg=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.878521+00 2025-12-09 10:14:41.878525+00 3673 C226#101粉色 SPMX-20240815298805 \N \N \N 1 \N [{"file_id": "b63152ce-cdaa-4f64-a0f2-9cf2ba6bf151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f1382b70f954bc6a835d843c4190467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f1382b70f954bc6a835d843c4190467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f1382b70f954bc6a835d843c4190467.jpg", "file_size": 19138, "is_delete": false, "file_type": 1, "original_file_name": "C226#101粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1382b70f954bc6a835d843c4190467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1382b70f954bc6a835d843c4190467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1382b70f954bc6a835d843c4190467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f1382b70f954bc6a835d843c4190467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f1382b70f954bc6a835d843c4190467.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZCVUTxe9Eay9Va7IvXrLwxP-SI=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.879635+00 2025-12-09 10:14:41.879638+00 3674 HSH011FWE#白VS-D3 SPMX-20240815298807 \N \N \N 1 \N [{"file_id": "81d46ff4-ef11-4c61-a48a-ee5ec96a0fd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cffb08c26a84295a8db39e9cd9bbeec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cffb08c26a84295a8db39e9cd9bbeec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cffb08c26a84295a8db39e9cd9bbeec.jpg", "file_size": 15573, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cffb08c26a84295a8db39e9cd9bbeec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cffb08c26a84295a8db39e9cd9bbeec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cffb08c26a84295a8db39e9cd9bbeec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cffb08c26a84295a8db39e9cd9bbeec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cffb08c26a84295a8db39e9cd9bbeec.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0j5j5X2_WNMPH9PBUEagfhlnPk=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.880719+00 2025-12-09 10:14:41.880724+00 3675 0001-37FWE#绿VS-D3 SPMX-20240815298799 \N \N \N 1 \N [{"file_id": "ac10b1c7-6105-4511-bfcb-a4015f191245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e034225584784176938b2679197a73f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e034225584784176938b2679197a73f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e034225584784176938b2679197a73f4.jpg", "file_size": 14809, "is_delete": false, "file_type": 1, "original_file_name": "0001-37FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e034225584784176938b2679197a73f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e034225584784176938b2679197a73f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e034225584784176938b2679197a73f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e034225584784176938b2679197a73f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e034225584784176938b2679197a73f4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9wvV-6fMc6iAfAiHaA-OGNNQZ4=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.881806+00 2025-12-09 10:14:41.88181+00 3676 HSH011FWE#深蓝VS-D3 SPMX-20240815298797 \N \N \N 1 \N [{"file_id": "21211b43-c02d-485d-849b-b1407f79a309", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "209092c756ed449884f6b2094a242d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "209092c756ed449884f6b2094a242d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "209092c756ed449884f6b2094a242d50.jpg", "file_size": 17793, "is_delete": false, "file_type": 1, "original_file_name": "HSH011FWE#深蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209092c756ed449884f6b2094a242d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209092c756ed449884f6b2094a242d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209092c756ed449884f6b2094a242d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/209092c756ed449884f6b2094a242d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/209092c756ed449884f6b2094a242d50.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqDbhzZ28SNEI8Jlp46B2TiAUlY=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.883278+00 2025-12-09 10:14:41.883282+00 3677 LHJ8607#32#墨绿 SPMX-20240815298798 \N \N \N 1 \N [{"file_id": "92c1ed14-5bd2-4d34-a9f8-bdc8a8ee8940", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15e9e892a1a44f1d8b20edb3e78425ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15e9e892a1a44f1d8b20edb3e78425ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15e9e892a1a44f1d8b20edb3e78425ae.jpg", "file_size": 23128, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8607#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e9e892a1a44f1d8b20edb3e78425ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e9e892a1a44f1d8b20edb3e78425ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e9e892a1a44f1d8b20edb3e78425ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15e9e892a1a44f1d8b20edb3e78425ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15e9e892a1a44f1d8b20edb3e78425ae.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJHbxLSA-LE73VBXTRR3xfEEK9M=", "createTime": "2024-08-15 14:39:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.884345+00 2025-12-09 10:14:41.884349+00 3678 DH0961-A5#LWQ15 SPMX-20240815298800 \N \N \N 1 \N [{"file_id": "43dde12a-d800-4a6f-91b6-b5bafc07002e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d61619bec994d0a9976a4cb3fa89761.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d61619bec994d0a9976a4cb3fa89761.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d61619bec994d0a9976a4cb3fa89761.jpg", "file_size": 66214, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A5#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61619bec994d0a9976a4cb3fa89761.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61619bec994d0a9976a4cb3fa89761.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61619bec994d0a9976a4cb3fa89761.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d61619bec994d0a9976a4cb3fa89761.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d61619bec994d0a9976a4cb3fa89761.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HAi7yUG1F0ZXESNIdRx6SpaFZbg=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.885387+00 2025-12-09 10:14:41.88539+00 3679 FHPKDK2-002-2 SPMX-20240815298801 \N \N \N 1 \N [{"file_id": "bba1e535-f13d-441c-a199-2c0a9d5c9bdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e92945064ace475a98cdeb45cea07e6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e92945064ace475a98cdeb45cea07e6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e92945064ace475a98cdeb45cea07e6d.jpg", "file_size": 49776, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92945064ace475a98cdeb45cea07e6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92945064ace475a98cdeb45cea07e6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92945064ace475a98cdeb45cea07e6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e92945064ace475a98cdeb45cea07e6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e92945064ace475a98cdeb45cea07e6d.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_M-i05IwpEJs7ZUKAXQEE_W5fKo=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.886466+00 2025-12-09 10:14:41.88647+00 3680 22C09-09-64#36码 SPMX-20240815298804 \N \N \N 1 \N [{"file_id": "ac79df28-abfc-4d72-b274-209bfe107de5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5335ed46c5d4f328c59fd193b1e2dbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5335ed46c5d4f328c59fd193b1e2dbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5335ed46c5d4f328c59fd193b1e2dbb.jpg", "file_size": 20171, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-64#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5335ed46c5d4f328c59fd193b1e2dbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5335ed46c5d4f328c59fd193b1e2dbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5335ed46c5d4f328c59fd193b1e2dbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5335ed46c5d4f328c59fd193b1e2dbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5335ed46c5d4f328c59fd193b1e2dbb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9SolyjKehBR_JwyGWwT_8NRvrI=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.887514+00 2025-12-09 10:14:41.887518+00 3681 JS025FWE#VS-D3 SPMX-20240815298802 \N \N \N 1 \N [{"file_id": "22e222fe-9e0a-4d6e-bac6-5be76fb1d22c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0217e8a64fe4e17a62b7faa9d99e20a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0217e8a64fe4e17a62b7faa9d99e20a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0217e8a64fe4e17a62b7faa9d99e20a.jpg", "file_size": 20107, "is_delete": false, "file_type": 1, "original_file_name": "JS025FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0217e8a64fe4e17a62b7faa9d99e20a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0217e8a64fe4e17a62b7faa9d99e20a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0217e8a64fe4e17a62b7faa9d99e20a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0217e8a64fe4e17a62b7faa9d99e20a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0217e8a64fe4e17a62b7faa9d99e20a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnQ09bhN4258Bp7sK8nqIdwcHbw=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.888571+00 2025-12-09 10:14:41.888574+00 3682 10414-14FWE#VS-D3 SPMX-20240815298803 \N \N \N 1 \N [{"file_id": "0c37ce56-2193-4632-a771-c7be91c63e17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fd2a7536e1b4270b2bd14a85791042c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fd2a7536e1b4270b2bd14a85791042c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fd2a7536e1b4270b2bd14a85791042c.jpg", "file_size": 31249, "is_delete": false, "file_type": 1, "original_file_name": "10414-14FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd2a7536e1b4270b2bd14a85791042c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd2a7536e1b4270b2bd14a85791042c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd2a7536e1b4270b2bd14a85791042c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fd2a7536e1b4270b2bd14a85791042c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fd2a7536e1b4270b2bd14a85791042c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iailzj7SUTqLB1Hui-SYqfPAc-M=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.894294+00 2025-12-09 10:14:41.894299+00 3687 JS025FWE#蓝 VS-D3 SPMX-20240815298812 \N \N \N 1 \N [{"file_id": "f1f11c77-bf15-42b4-8c0f-37e19a3640db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a0f068abdb143dab22340421a007678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a0f068abdb143dab22340421a007678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a0f068abdb143dab22340421a007678.jpg", "file_size": 22908, "is_delete": false, "file_type": 1, "original_file_name": "JS025FWE#蓝 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0f068abdb143dab22340421a007678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0f068abdb143dab22340421a007678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0f068abdb143dab22340421a007678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a0f068abdb143dab22340421a007678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a0f068abdb143dab22340421a007678.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRhDFGVG0LLTsWAtiK4x564zbuo=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.88989+00 2025-12-09 10:14:41.889895+00 3683 8003FWF#黄绿袖子 SPMX-20240815298806 \N \N \N 1 \N [{"file_id": "f8adf9d7-404c-40ba-9a2b-b2deb901f7d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d850e3f413254bd688dabb726ceac633.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d850e3f413254bd688dabb726ceac633.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d850e3f413254bd688dabb726ceac633.jpg", "file_size": 13777, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黄绿袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d850e3f413254bd688dabb726ceac633.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d850e3f413254bd688dabb726ceac633.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d850e3f413254bd688dabb726ceac633.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d850e3f413254bd688dabb726ceac633.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d850e3f413254bd688dabb726ceac633.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcuAHBlZVQ3XG3ZRItJyoUH5J6o=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.891058+00 2025-12-09 10:14:41.891062+00 3684 LZ118FWF#4号色短袖 SPMX-20240815298808 \N \N \N 1 \N [{"file_id": "ab0dc0a6-6525-4128-963a-db55309bd9c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db0a53bd6f24b1c86039a1f2d76922e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db0a53bd6f24b1c86039a1f2d76922e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db0a53bd6f24b1c86039a1f2d76922e.jpg", "file_size": 19629, "is_delete": false, "file_type": 1, "original_file_name": "LZ118FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db0a53bd6f24b1c86039a1f2d76922e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db0a53bd6f24b1c86039a1f2d76922e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db0a53bd6f24b1c86039a1f2d76922e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db0a53bd6f24b1c86039a1f2d76922e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db0a53bd6f24b1c86039a1f2d76922e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDpoqvWSn5_4c24bbfHa5E-D7_E=", "createTime": "2024-08-15 14:39:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.892168+00 2025-12-09 10:14:41.892172+00 3685 LHJ8607#37#梅红 SPMX-20240815298810 \N \N \N 1 \N [{"file_id": "6fa8c9bf-24b8-454f-8703-3345f99d87d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56dac7d89021400da5a0ee58e4561832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56dac7d89021400da5a0ee58e4561832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56dac7d89021400da5a0ee58e4561832.jpg", "file_size": 22136, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8607#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56dac7d89021400da5a0ee58e4561832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56dac7d89021400da5a0ee58e4561832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56dac7d89021400da5a0ee58e4561832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56dac7d89021400da5a0ee58e4561832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56dac7d89021400da5a0ee58e4561832.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SjDxs6Ftxs1ZGggHvjvkIkC2kc=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.893225+00 2025-12-09 10:14:41.893229+00 3686 DH0961-A6#LWQ15 SPMX-20240815298813 \N \N \N 1 \N [{"file_id": "0f392829-434f-4669-8934-d45c39842dc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be1945f663e45ef95fee3c452db9166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be1945f663e45ef95fee3c452db9166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be1945f663e45ef95fee3c452db9166.jpg", "file_size": 81923, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A6#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1945f663e45ef95fee3c452db9166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1945f663e45ef95fee3c452db9166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1945f663e45ef95fee3c452db9166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be1945f663e45ef95fee3c452db9166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be1945f663e45ef95fee3c452db9166.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-48ytCPU3mkf-iEy7Di3-rrXERM=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.895349+00 2025-12-09 10:14:41.895353+00 3688 FHPKDK2-002-3 SPMX-20240815298814 \N \N \N 1 \N [{"file_id": "4152e412-c712-4089-8411-1ddd512a4d84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31cf743544894336a5c8f57eacd09883.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31cf743544894336a5c8f57eacd09883.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31cf743544894336a5c8f57eacd09883.jpg", "file_size": 58692, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cf743544894336a5c8f57eacd09883.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cf743544894336a5c8f57eacd09883.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cf743544894336a5c8f57eacd09883.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31cf743544894336a5c8f57eacd09883.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31cf743544894336a5c8f57eacd09883.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IW5Ybw6ieTN6TpdvX7xYcRz6k-U=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.896415+00 2025-12-09 10:14:41.896419+00 3689 0001-37FWF#WJC22番禺调色 SPMX-20240815298809 \N \N \N 1 \N [{"file_id": "f7dc3189-0da0-4870-898d-bdacf10ff23d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f318a53fb76b4ca284e28e0ba963787b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f318a53fb76b4ca284e28e0ba963787b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f318a53fb76b4ca284e28e0ba963787b.jpg", "file_size": 7798, "is_delete": false, "file_type": 1, "original_file_name": "0001-37FWF#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f318a53fb76b4ca284e28e0ba963787b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f318a53fb76b4ca284e28e0ba963787b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f318a53fb76b4ca284e28e0ba963787b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f318a53fb76b4ca284e28e0ba963787b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f318a53fb76b4ca284e28e0ba963787b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fq1EVjxklUvqrAWZkCoPg_JFpNo=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.897491+00 2025-12-09 10:14:41.897494+00 3690 8003FWF#黑色短款上身 SPMX-20240815298817 \N \N \N 1 \N [{"file_id": "2fc33316-5a23-4909-9cf8-0b9e8b475f68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84d55a001b4b43e1932d52150741cfce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84d55a001b4b43e1932d52150741cfce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84d55a001b4b43e1932d52150741cfce.jpg", "file_size": 18947, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黑色短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d55a001b4b43e1932d52150741cfce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d55a001b4b43e1932d52150741cfce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d55a001b4b43e1932d52150741cfce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84d55a001b4b43e1932d52150741cfce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84d55a001b4b43e1932d52150741cfce.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:By1NY19UiHg7rTNXTnyD1tBL1TM=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.898547+00 2025-12-09 10:14:41.89855+00 3691 22C09-09-64#38码 SPMX-20240815298815 \N \N \N 1 \N [{"file_id": "86800de2-449c-44db-b780-84eca719b585", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a68231b47054e2da5470c6d7d0cc63b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a68231b47054e2da5470c6d7d0cc63b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a68231b47054e2da5470c6d7d0cc63b.jpg", "file_size": 19885, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-64#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68231b47054e2da5470c6d7d0cc63b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68231b47054e2da5470c6d7d0cc63b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68231b47054e2da5470c6d7d0cc63b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a68231b47054e2da5470c6d7d0cc63b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a68231b47054e2da5470c6d7d0cc63b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmKnjbtxa5-7x4SjgcwoaQG2f_g=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.899613+00 2025-12-09 10:14:41.899616+00 3692 HSH012# SPMX-20240815298818 \N \N \N 1 \N [{"file_id": "19680f27-82bf-427b-9a85-1db90fe6ff27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aba2f9faeb54023a3b7fedb95e8ac6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aba2f9faeb54023a3b7fedb95e8ac6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aba2f9faeb54023a3b7fedb95e8ac6e.jpg", "file_size": 16280, "is_delete": false, "file_type": 1, "original_file_name": "HSH012#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aba2f9faeb54023a3b7fedb95e8ac6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aba2f9faeb54023a3b7fedb95e8ac6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aba2f9faeb54023a3b7fedb95e8ac6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aba2f9faeb54023a3b7fedb95e8ac6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aba2f9faeb54023a3b7fedb95e8ac6e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3O9r6OFyArW-iShuf8tnILfG58k=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.900663+00 2025-12-09 10:14:41.900666+00 3693 10414-15FWE#VS-D3 SPMX-20240815298811 \N \N \N 1 \N [{"file_id": "4a6f14a6-c6b9-4909-9c9a-bd89774f1467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8666e93341f4fd297c95ae9c38db946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8666e93341f4fd297c95ae9c38db946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8666e93341f4fd297c95ae9c38db946.jpg", "file_size": 18717, "is_delete": false, "file_type": 1, "original_file_name": "10414-15FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8666e93341f4fd297c95ae9c38db946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8666e93341f4fd297c95ae9c38db946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8666e93341f4fd297c95ae9c38db946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8666e93341f4fd297c95ae9c38db946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8666e93341f4fd297c95ae9c38db946.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ou-jdeF0mP2NmAb1IDzn3R6bJzY=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.901746+00 2025-12-09 10:14:41.90175+00 3694 0001-38FWE#VS-D3 SPMX-20240815298819 \N \N \N 1 \N [{"file_id": "d7a8075b-c14b-47b4-b4a4-40245a7113fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c5b88440b794a569d236eda5f9db5b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c5b88440b794a569d236eda5f9db5b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c5b88440b794a569d236eda5f9db5b8.jpg", "file_size": 18292, "is_delete": false, "file_type": 1, "original_file_name": "0001-38FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5b88440b794a569d236eda5f9db5b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5b88440b794a569d236eda5f9db5b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5b88440b794a569d236eda5f9db5b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c5b88440b794a569d236eda5f9db5b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c5b88440b794a569d236eda5f9db5b8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NcWThqVWcee0nqO9f1Tewsp6Ls=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.902811+00 2025-12-09 10:14:41.902815+00 3695 C226#墨绿色 SPMX-20240815298816 \N \N \N 1 \N [{"file_id": "a8e46db5-a64e-480e-8d67-2ae87e3e693e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9499d1947a0b4f95a81bc312215cd4bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9499d1947a0b4f95a81bc312215cd4bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9499d1947a0b4f95a81bc312215cd4bf.jpg", "file_size": 19173, "is_delete": false, "file_type": 1, "original_file_name": "C226#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9499d1947a0b4f95a81bc312215cd4bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9499d1947a0b4f95a81bc312215cd4bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9499d1947a0b4f95a81bc312215cd4bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9499d1947a0b4f95a81bc312215cd4bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9499d1947a0b4f95a81bc312215cd4bf.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPz-fz_W0TkgLJB9eqH4xO3douA=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.903882+00 2025-12-09 10:14:41.903886+00 3696 LZ118FWF#5号色短袖 SPMX-20240815298821 \N \N \N 1 \N [{"file_id": "6bd982c6-c0da-4d47-9bf1-9b873a7f01ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aecaa9c401244e47bdb9c17953ab8e5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aecaa9c401244e47bdb9c17953ab8e5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aecaa9c401244e47bdb9c17953ab8e5c.jpg", "file_size": 18728, "is_delete": false, "file_type": 1, "original_file_name": "LZ118FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecaa9c401244e47bdb9c17953ab8e5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecaa9c401244e47bdb9c17953ab8e5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecaa9c401244e47bdb9c17953ab8e5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aecaa9c401244e47bdb9c17953ab8e5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aecaa9c401244e47bdb9c17953ab8e5c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwehMHeNVxyNybLXcPeI9p4PtX8=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.904935+00 2025-12-09 10:14:41.904939+00 3697 FHPKDK2-002-4 SPMX-20240815298823 \N \N \N 1 \N [{"file_id": "a142a0b8-403e-49dd-b161-3c393c31646d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "888f398236c349ad85efc7345dc0fca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "888f398236c349ad85efc7345dc0fca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "888f398236c349ad85efc7345dc0fca2.jpg", "file_size": 55550, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/888f398236c349ad85efc7345dc0fca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/888f398236c349ad85efc7345dc0fca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/888f398236c349ad85efc7345dc0fca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/888f398236c349ad85efc7345dc0fca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/888f398236c349ad85efc7345dc0fca2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpkkU0Q-WD1ec-upOFU9YQLLX8g=", "createTime": "2024-08-15 14:39:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.906012+00 2025-12-09 10:14:41.906017+00 3698 LHJ8607#5#彩兰 SPMX-20240815298820 \N \N \N 1 \N [{"file_id": "6176e8fb-53b8-46e9-a4d9-4c6e9364f502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "686be160fb794ae084ea9dfc456d96e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "686be160fb794ae084ea9dfc456d96e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "686be160fb794ae084ea9dfc456d96e5.jpg", "file_size": 22949, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8607#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/686be160fb794ae084ea9dfc456d96e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/686be160fb794ae084ea9dfc456d96e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/686be160fb794ae084ea9dfc456d96e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/686be160fb794ae084ea9dfc456d96e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/686be160fb794ae084ea9dfc456d96e5.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PWroAPGASSf4jgy797ZvDf1-LPY=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.907071+00 2025-12-09 10:14:41.907075+00 3699 10414-16FWE#VS-D3 SPMX-20240815298822 \N \N \N 1 \N [{"file_id": "94d07ef6-cf76-4630-9682-376d26a68834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5018207a244e4b6f967990b0a53f5f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5018207a244e4b6f967990b0a53f5f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5018207a244e4b6f967990b0a53f5f89.jpg", "file_size": 18395, "is_delete": false, "file_type": 1, "original_file_name": "10414-16FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5018207a244e4b6f967990b0a53f5f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5018207a244e4b6f967990b0a53f5f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5018207a244e4b6f967990b0a53f5f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5018207a244e4b6f967990b0a53f5f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5018207a244e4b6f967990b0a53f5f89.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlR-4mMu-7KSRXh7LUCcItVEgko=", "createTime": "2024-08-15 14:39:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.908132+00 2025-12-09 10:14:41.908136+00 3700 DH0961-A7#LWQ15 SPMX-20240815298824 \N \N \N 1 \N [{"file_id": "64906ed0-7cdd-4028-8b83-ce1db55d1a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06c16cc4d99e4ba0973e731e0132829a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06c16cc4d99e4ba0973e731e0132829a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06c16cc4d99e4ba0973e731e0132829a.jpg", "file_size": 61489, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A7#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c16cc4d99e4ba0973e731e0132829a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c16cc4d99e4ba0973e731e0132829a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c16cc4d99e4ba0973e731e0132829a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06c16cc4d99e4ba0973e731e0132829a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06c16cc4d99e4ba0973e731e0132829a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkkFuq7NcEGRWytmvV7HeXkaOsA=", "createTime": "2024-08-15 14:39:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.909202+00 2025-12-09 10:14:41.909206+00 3701 C226#灰色 SPMX-20240815298827 \N \N \N 1 \N [{"file_id": "8e888526-5e4d-4384-bf19-f8825a47bcc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e832fec806d4a26b6aadf1bd52d7276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e832fec806d4a26b6aadf1bd52d7276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e832fec806d4a26b6aadf1bd52d7276.jpg", "file_size": 19760, "is_delete": false, "file_type": 1, "original_file_name": "C226#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e832fec806d4a26b6aadf1bd52d7276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e832fec806d4a26b6aadf1bd52d7276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e832fec806d4a26b6aadf1bd52d7276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e832fec806d4a26b6aadf1bd52d7276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e832fec806d4a26b6aadf1bd52d7276.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w08amLzn6lc8J_W_9aGslVN8T9o=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.911345+00 2025-12-09 10:14:41.911349+00 3703 22C09-09-65#30码 SPMX-20240815298825 \N \N \N 1 \N [{"file_id": "08dfe0b2-4c98-410d-b5f1-70b4c150528d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26779a4b40e642a2bd0a520aa9b60956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26779a4b40e642a2bd0a520aa9b60956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26779a4b40e642a2bd0a520aa9b60956.jpg", "file_size": 22576, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-65#30码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26779a4b40e642a2bd0a520aa9b60956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26779a4b40e642a2bd0a520aa9b60956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26779a4b40e642a2bd0a520aa9b60956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26779a4b40e642a2bd0a520aa9b60956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26779a4b40e642a2bd0a520aa9b60956.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjonF_mAG4DsgiOH3gvQWrLuhQw=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.91027+00 2025-12-09 10:14:41.910274+00 3702 LHJ8631#10#宝蓝色 SPMX-20240815298829 \N \N \N 1 \N [{"file_id": "89910ac9-4c69-4ac0-888c-1c5b2e5da0b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52dd576384f54952b30da9256641dbcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52dd576384f54952b30da9256641dbcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52dd576384f54952b30da9256641dbcd.jpg", "file_size": 19801, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#10#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd576384f54952b30da9256641dbcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd576384f54952b30da9256641dbcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd576384f54952b30da9256641dbcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52dd576384f54952b30da9256641dbcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52dd576384f54952b30da9256641dbcd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epRx6FG0snULV6TU_lyyAyecKho=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.913664+00 2025-12-09 10:14:41.913668+00 3704 8003FWF#黑色短款下摆 SPMX-20240815298826 \N \N \N 1 \N [{"file_id": "9437a598-b146-4643-94ff-66c5f58dce6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d612d00e24d54dec8209004dbf5449c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d612d00e24d54dec8209004dbf5449c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d612d00e24d54dec8209004dbf5449c9.jpg", "file_size": 23922, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黑色短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d612d00e24d54dec8209004dbf5449c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d612d00e24d54dec8209004dbf5449c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d612d00e24d54dec8209004dbf5449c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d612d00e24d54dec8209004dbf5449c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d612d00e24d54dec8209004dbf5449c9.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pymbRC8OwdLiYeJneZbXTOZQWG0=", "createTime": "2024-08-15 14:39:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.457744+00 2025-12-09 10:15:37.457749+00 16786 HX003#D SPMX-20240815312004 \N \N \N 1 \N [{"file_id": "e61633ce-c05a-4804-9e75-fae716ed33a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd0a480d09654d029bb28ca99c9f9fca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd0a480d09654d029bb28ca99c9f9fca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd0a480d09654d029bb28ca99c9f9fca.jpg", "file_size": 5438, "is_delete": false, "file_type": 1, "original_file_name": "HX003#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd0a480d09654d029bb28ca99c9f9fca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd0a480d09654d029bb28ca99c9f9fca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd0a480d09654d029bb28ca99c9f9fca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd0a480d09654d029bb28ca99c9f9fca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd0a480d09654d029bb28ca99c9f9fca.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6rkP53Iaa2qGfmoEhYkOgOgp6MI=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.91475+00 2025-12-09 10:14:41.914754+00 3705 LZ1190#上身1号色 SPMX-20240815298830 \N \N \N 1 \N [{"file_id": "c358ba95-be08-49db-ad8c-69cbb5999a32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "852e3ce6d82542dc831d1171c7c3c54b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "852e3ce6d82542dc831d1171c7c3c54b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "852e3ce6d82542dc831d1171c7c3c54b.jpg", "file_size": 12050, "is_delete": false, "file_type": 1, "original_file_name": "LZ1190#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852e3ce6d82542dc831d1171c7c3c54b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852e3ce6d82542dc831d1171c7c3c54b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852e3ce6d82542dc831d1171c7c3c54b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/852e3ce6d82542dc831d1171c7c3c54b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/852e3ce6d82542dc831d1171c7c3c54b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEJzolhbxOKSZ3jOSrcrsinbsKc=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.915849+00 2025-12-09 10:14:41.915853+00 3706 0001-38FWF#V5曲线 SPMX-20240815298834 \N \N \N 1 \N [{"file_id": "eb124215-d901-41cb-b1f2-2ec1689fa564", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "597af776b3a44766bcd6a572acf9bc87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "597af776b3a44766bcd6a572acf9bc87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "597af776b3a44766bcd6a572acf9bc87.jpg", "file_size": 15209, "is_delete": false, "file_type": 1, "original_file_name": "0001-38FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af776b3a44766bcd6a572acf9bc87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af776b3a44766bcd6a572acf9bc87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af776b3a44766bcd6a572acf9bc87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/597af776b3a44766bcd6a572acf9bc87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/597af776b3a44766bcd6a572acf9bc87.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5FAFyHRKZCy-AbfPmc3tjnFTIo=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.916947+00 2025-12-09 10:14:41.916951+00 3707 C226#白绿字 SPMX-20240815298838 \N \N \N 1 \N [{"file_id": "f98bb996-ec31-4699-99b7-52b09165be09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "703d97b89f4845ee9cb4277c5f71afdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "703d97b89f4845ee9cb4277c5f71afdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "703d97b89f4845ee9cb4277c5f71afdd.jpg", "file_size": 19550, "is_delete": false, "file_type": 1, "original_file_name": "C226#白绿字.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d97b89f4845ee9cb4277c5f71afdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d97b89f4845ee9cb4277c5f71afdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d97b89f4845ee9cb4277c5f71afdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/703d97b89f4845ee9cb4277c5f71afdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/703d97b89f4845ee9cb4277c5f71afdd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wIQDO49EhoIAXIYCc9xESQeIY8=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.918004+00 2025-12-09 10:14:41.918007+00 3708 HSH012#2019 SPMX-20240815298833 \N \N \N 1 \N [{"file_id": "b7659303-27a5-4cf9-90e2-636b70da84d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcc3f3bdb18047db9303ee114ef7c380.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcc3f3bdb18047db9303ee114ef7c380.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcc3f3bdb18047db9303ee114ef7c380.jpg", "file_size": 21583, "is_delete": false, "file_type": 1, "original_file_name": "HSH012#2019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc3f3bdb18047db9303ee114ef7c380.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc3f3bdb18047db9303ee114ef7c380.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc3f3bdb18047db9303ee114ef7c380.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcc3f3bdb18047db9303ee114ef7c380.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcc3f3bdb18047db9303ee114ef7c380.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tG5JqcZ2iPVPYP7q3vRLFBsDyo=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.919049+00 2025-12-09 10:14:41.919054+00 3709 FHPKDK2-003- SPMX-20240815298835 \N \N \N 1 \N [{"file_id": "758433e2-ee83-46ed-a79b-90edfbb1ee67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8701805d36640269cedf5915de3c99b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8701805d36640269cedf5915de3c99b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8701805d36640269cedf5915de3c99b.jpg", "file_size": 48734, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8701805d36640269cedf5915de3c99b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8701805d36640269cedf5915de3c99b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8701805d36640269cedf5915de3c99b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8701805d36640269cedf5915de3c99b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8701805d36640269cedf5915de3c99b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulMR54VKMj5g_P0jL6ZUbbNrKSc=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.920131+00 2025-12-09 10:14:41.920135+00 3710 22C09-09-65#32码 SPMX-20240815298836 \N \N \N 1 \N [{"file_id": "b6c97a1e-9e5d-47f9-aad9-a77b37d85bc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce0f986b26b1466388c6b5116645ebef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce0f986b26b1466388c6b5116645ebef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce0f986b26b1466388c6b5116645ebef.jpg", "file_size": 21994, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-65#32码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce0f986b26b1466388c6b5116645ebef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce0f986b26b1466388c6b5116645ebef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce0f986b26b1466388c6b5116645ebef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce0f986b26b1466388c6b5116645ebef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce0f986b26b1466388c6b5116645ebef.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjrv6OyUlhYeIejVacdxALE_ehs=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.921204+00 2025-12-09 10:14:41.921208+00 3711 10414-1FWE#VS-D3 SPMX-20240815298832 \N \N \N 1 \N [{"file_id": "6edf981e-8881-471a-bb0b-9e6bb8381aca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be63cb9499c4f8783eb92662055ff6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be63cb9499c4f8783eb92662055ff6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be63cb9499c4f8783eb92662055ff6f.jpg", "file_size": 25565, "is_delete": false, "file_type": 1, "original_file_name": "10414-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be63cb9499c4f8783eb92662055ff6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be63cb9499c4f8783eb92662055ff6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be63cb9499c4f8783eb92662055ff6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be63cb9499c4f8783eb92662055ff6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be63cb9499c4f8783eb92662055ff6f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsOcl2A5GaVybKRQbcy8i3Ye3eE=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.922275+00 2025-12-09 10:14:41.922279+00 3712 8003FWF#黑色短款袖子 SPMX-20240815298837 \N \N \N 1 \N [{"file_id": "7997857c-4e39-4f1d-9676-a5311eb91f2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fea77a972ed340bba5a2499d1029fd0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fea77a972ed340bba5a2499d1029fd0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fea77a972ed340bba5a2499d1029fd0f.jpg", "file_size": 14770, "is_delete": false, "file_type": 1, "original_file_name": "8003FWF#黑色短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea77a972ed340bba5a2499d1029fd0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea77a972ed340bba5a2499d1029fd0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea77a972ed340bba5a2499d1029fd0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fea77a972ed340bba5a2499d1029fd0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fea77a972ed340bba5a2499d1029fd0f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXYm5aitYcgvl8P72WOzTMK0peY=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.923327+00 2025-12-09 10:14:41.923331+00 3713 DH0961-A8#LWQ15 SPMX-20240815298831 \N \N \N 1 \N [{"file_id": "f50848ee-770a-48e1-99bc-99313c539c9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b9b2fe2b35c42a8935fe0cabeaf6966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b9b2fe2b35c42a8935fe0cabeaf6966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b9b2fe2b35c42a8935fe0cabeaf6966.jpg", "file_size": 63075, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A8#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9b2fe2b35c42a8935fe0cabeaf6966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9b2fe2b35c42a8935fe0cabeaf6966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9b2fe2b35c42a8935fe0cabeaf6966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b9b2fe2b35c42a8935fe0cabeaf6966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b9b2fe2b35c42a8935fe0cabeaf6966.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvAqzkUdCaEOsukffUul3E04JsE=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.924382+00 2025-12-09 10:14:41.924386+00 3714 0001-39FWE#VS-D3 SPMX-20240815298843 \N \N \N 1 \N [{"file_id": "94f58fb1-ff5b-46bb-b52a-98614dfb0879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db86561d4234c7693168af097ae2f8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db86561d4234c7693168af097ae2f8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db86561d4234c7693168af097ae2f8f.jpg", "file_size": 7906, "is_delete": false, "file_type": 1, "original_file_name": "0001-39FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db86561d4234c7693168af097ae2f8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db86561d4234c7693168af097ae2f8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db86561d4234c7693168af097ae2f8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db86561d4234c7693168af097ae2f8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db86561d4234c7693168af097ae2f8f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMUg9RQ1bmxfeh0p3mJrJG0ukKk=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.925465+00 2025-12-09 10:14:41.925469+00 3715 HSH012#2019红 SPMX-20240815298844 \N \N \N 1 \N [{"file_id": "59cf1f2a-1f41-4160-861c-f2fa0ffb1fe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e9a6a4409e8401d936a59faa75a6589.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e9a6a4409e8401d936a59faa75a6589.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e9a6a4409e8401d936a59faa75a6589.jpg", "file_size": 20666, "is_delete": false, "file_type": 1, "original_file_name": "HSH012#2019红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9a6a4409e8401d936a59faa75a6589.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9a6a4409e8401d936a59faa75a6589.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9a6a4409e8401d936a59faa75a6589.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e9a6a4409e8401d936a59faa75a6589.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e9a6a4409e8401d936a59faa75a6589.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWX6czCJY0m5mm8pjBjCEvSdJKU=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.926516+00 2025-12-09 10:14:41.926519+00 3716 22C09-09-65#34码 SPMX-20240815298846 \N \N \N 1 \N [{"file_id": "ade30496-fe45-4907-b735-ce0bbf722c25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e294368d56a45e797d21a15d0dac6b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e294368d56a45e797d21a15d0dac6b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e294368d56a45e797d21a15d0dac6b1.jpg", "file_size": 21279, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-65#34码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e294368d56a45e797d21a15d0dac6b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e294368d56a45e797d21a15d0dac6b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e294368d56a45e797d21a15d0dac6b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e294368d56a45e797d21a15d0dac6b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e294368d56a45e797d21a15d0dac6b1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iScoQkiQ33Ic2pwsRUdzyuDXJl8=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.927593+00 2025-12-09 10:14:41.927597+00 3717 LZ1190#上身2号色 SPMX-20240815298840 \N \N \N 1 \N [{"file_id": "12c6831d-c79a-426e-a46c-6c693fdb4494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "793cdbd7947049dd905f450e4a5729c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "793cdbd7947049dd905f450e4a5729c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "793cdbd7947049dd905f450e4a5729c3.jpg", "file_size": 11653, "is_delete": false, "file_type": 1, "original_file_name": "LZ1190#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793cdbd7947049dd905f450e4a5729c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793cdbd7947049dd905f450e4a5729c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793cdbd7947049dd905f450e4a5729c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/793cdbd7947049dd905f450e4a5729c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/793cdbd7947049dd905f450e4a5729c3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wuH3sPW9-0ChOLMUbx2GPF1p284=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.928823+00 2025-12-09 10:14:41.928828+00 3718 DH0961-A9#LWQ15 SPMX-20240815298842 \N \N \N 1 \N [{"file_id": "a2a7f046-03f8-4338-88f3-6fa0ab23311b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7960b4f7f694c148a07529230a50c51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7960b4f7f694c148a07529230a50c51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7960b4f7f694c148a07529230a50c51.jpg", "file_size": 65307, "is_delete": false, "file_type": 1, "original_file_name": "DH0961-A9#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7960b4f7f694c148a07529230a50c51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7960b4f7f694c148a07529230a50c51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7960b4f7f694c148a07529230a50c51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7960b4f7f694c148a07529230a50c51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7960b4f7f694c148a07529230a50c51.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udcPvTiDk19-gygVDm0Ucds0yf4=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.929943+00 2025-12-09 10:14:41.929947+00 3719 C226#白黑字 SPMX-20240815298849 \N \N \N 1 \N [{"file_id": "8383c121-cf71-42ec-8898-c43a77f87aa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3504141d3db45cf9c8fe2f1fae0ed87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3504141d3db45cf9c8fe2f1fae0ed87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3504141d3db45cf9c8fe2f1fae0ed87.jpg", "file_size": 19736, "is_delete": false, "file_type": 1, "original_file_name": "C226#白黑字.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3504141d3db45cf9c8fe2f1fae0ed87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3504141d3db45cf9c8fe2f1fae0ed87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3504141d3db45cf9c8fe2f1fae0ed87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3504141d3db45cf9c8fe2f1fae0ed87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3504141d3db45cf9c8fe2f1fae0ed87.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZTUtRvQlaUDcPlSJP2R4mYGq0c=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.931014+00 2025-12-09 10:14:41.931018+00 3720 10414-2FWE#VS-D3 SPMX-20240815298845 \N \N \N 1 \N [{"file_id": "2c31761e-8d2c-4273-ba42-0d917d454657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cea65cf781524b3c82d4940ac5e7b911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cea65cf781524b3c82d4940ac5e7b911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cea65cf781524b3c82d4940ac5e7b911.jpg", "file_size": 16794, "is_delete": false, "file_type": 1, "original_file_name": "10414-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea65cf781524b3c82d4940ac5e7b911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea65cf781524b3c82d4940ac5e7b911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea65cf781524b3c82d4940ac5e7b911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cea65cf781524b3c82d4940ac5e7b911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cea65cf781524b3c82d4940ac5e7b911.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJ6hBtXMnbcejoYpi_-eSuqvakc=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.932197+00 2025-12-09 10:14:41.932202+00 3721 JS026FWE#蓝 VS-D3 SPMX-20240815298841 \N \N \N 1 \N [{"file_id": "d8d7a697-0d81-44ce-8845-5b9b176a9cf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ca01b1873bf46eb9fd6d02a048866ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ca01b1873bf46eb9fd6d02a048866ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ca01b1873bf46eb9fd6d02a048866ab.jpg", "file_size": 11078, "is_delete": false, "file_type": 1, "original_file_name": "JS026FWE#蓝 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca01b1873bf46eb9fd6d02a048866ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca01b1873bf46eb9fd6d02a048866ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca01b1873bf46eb9fd6d02a048866ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ca01b1873bf46eb9fd6d02a048866ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ca01b1873bf46eb9fd6d02a048866ab.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uty8XZJE946vp3Zdjy7L35gK3eM=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.933373+00 2025-12-09 10:14:41.933377+00 3722 LHJ8631#10#黑兰 SPMX-20240815298839 \N \N \N 1 \N [{"file_id": "31e50a67-0041-4514-b942-52c9822abc57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg", "file_size": 19423, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#10#黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2ea6aa0be65465b82ad9bfe1d13a8e2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n87ks3QqwZZKh5IsfOzesbec1c4=", "createTime": "2024-08-15 14:39:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.934473+00 2025-12-09 10:14:41.934478+00 3723 8004#宝蓝 SPMX-20240815298847 \N \N \N 1 \N [{"file_id": "cdca7c10-0d12-4d01-82a8-b0edf0342de3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c8ba530490453a96b968e919dba985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c8ba530490453a96b968e919dba985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c8ba530490453a96b968e919dba985.jpg", "file_size": 25828, "is_delete": false, "file_type": 1, "original_file_name": "8004#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c8ba530490453a96b968e919dba985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c8ba530490453a96b968e919dba985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c8ba530490453a96b968e919dba985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c8ba530490453a96b968e919dba985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c8ba530490453a96b968e919dba985.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WcUW7P6cmRM8hYQdE2bk3ZHDs28=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.935562+00 2025-12-09 10:14:41.935566+00 3724 FHPKDK2-003-1-坯布 SPMX-20240815298848 \N \N \N 1 \N [{"file_id": "a9cf2296-6811-4dae-b5ec-cb0b2b79b6b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg", "file_size": 30372, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-1-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa2c1ef66c4d43bc9dac9c1f5d26f026.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JpSODgDtXFx-1m8nolemakHDUu0=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.936628+00 2025-12-09 10:14:41.936632+00 3725 LHJ8631#10#黑蓝 SPMX-20240815298852 \N \N \N 1 \N [{"file_id": "3111a462-57f4-4a27-8d08-13869645a23e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a45cebfee1b94f54b4cac6ad74c3a5ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a45cebfee1b94f54b4cac6ad74c3a5ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a45cebfee1b94f54b4cac6ad74c3a5ea.jpg", "file_size": 19801, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#10#黑蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45cebfee1b94f54b4cac6ad74c3a5ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45cebfee1b94f54b4cac6ad74c3a5ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45cebfee1b94f54b4cac6ad74c3a5ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a45cebfee1b94f54b4cac6ad74c3a5ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a45cebfee1b94f54b4cac6ad74c3a5ea.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFMiE0A2VghXqfU55ulktS4yfS8=", "createTime": "2024-08-15 14:39:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.937727+00 2025-12-09 10:14:41.937731+00 3726 JS026FWE#黄 VS-D3 SPMX-20240815298851 \N \N \N 1 \N [{"file_id": "84ac8988-f2d1-4c5a-b1a3-8d05408f32b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c373748808d94fa4bae7adcf7b0c5d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c373748808d94fa4bae7adcf7b0c5d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c373748808d94fa4bae7adcf7b0c5d8f.jpg", "file_size": 10343, "is_delete": false, "file_type": 1, "original_file_name": "JS026FWE#黄 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c373748808d94fa4bae7adcf7b0c5d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c373748808d94fa4bae7adcf7b0c5d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c373748808d94fa4bae7adcf7b0c5d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c373748808d94fa4bae7adcf7b0c5d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c373748808d94fa4bae7adcf7b0c5d8f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6CQvFDrBLDquNQzVjYxeuJy714=", "createTime": "2024-08-15 14:39:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.938813+00 2025-12-09 10:14:41.938818+00 3727 LZ1190#上身3号色 SPMX-20240815298850 \N \N \N 1 \N [{"file_id": "bd47ea15-600a-4db4-bdba-aa860537444e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c22817296dd4b67bd22fb6225c12b24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c22817296dd4b67bd22fb6225c12b24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c22817296dd4b67bd22fb6225c12b24.jpg", "file_size": 12025, "is_delete": false, "file_type": 1, "original_file_name": "LZ1190#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c22817296dd4b67bd22fb6225c12b24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c22817296dd4b67bd22fb6225c12b24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c22817296dd4b67bd22fb6225c12b24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c22817296dd4b67bd22fb6225c12b24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c22817296dd4b67bd22fb6225c12b24.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aB-9-xI0VTKK5BNxqQfkURoi3nM=", "createTime": "2024-08-15 14:39:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.939892+00 2025-12-09 10:14:41.939896+00 3728 HSH012#E SPMX-20240815298855 \N \N \N 1 \N [{"file_id": "d1e390d4-986e-410c-84ec-05207bcde761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfb80ecc0154776abef13adf0d928bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfb80ecc0154776abef13adf0d928bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfb80ecc0154776abef13adf0d928bd.jpg", "file_size": 6840, "is_delete": false, "file_type": 1, "original_file_name": "HSH012#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfb80ecc0154776abef13adf0d928bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfb80ecc0154776abef13adf0d928bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfb80ecc0154776abef13adf0d928bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfb80ecc0154776abef13adf0d928bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfb80ecc0154776abef13adf0d928bd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOMuZQumAdYmalDPvdgVaNXdOyo=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.940959+00 2025-12-09 10:14:41.940963+00 3729 0001-39FWF#V5曲线 SPMX-20240815298856 \N \N \N 1 \N [{"file_id": "28105d2d-6f6a-4fa7-a96d-cf9b818563e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bd88d447a974bc98f32e1a22a365eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bd88d447a974bc98f32e1a22a365eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bd88d447a974bc98f32e1a22a365eca.jpg", "file_size": 16198, "is_delete": false, "file_type": 1, "original_file_name": "0001-39FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bd88d447a974bc98f32e1a22a365eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bd88d447a974bc98f32e1a22a365eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bd88d447a974bc98f32e1a22a365eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bd88d447a974bc98f32e1a22a365eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bd88d447a974bc98f32e1a22a365eca.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6rddfMKVBgFY4AMnJIwkZsI0Os=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.942044+00 2025-12-09 10:14:41.942048+00 3730 10414-3FWE#VS-D3 SPMX-20240815298853 \N \N \N 1 \N [{"file_id": "6e014440-f053-40dd-a080-5bb650446d72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c739f66cd2a94cf38d2efded584fc824.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c739f66cd2a94cf38d2efded584fc824.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c739f66cd2a94cf38d2efded584fc824.jpg", "file_size": 21326, "is_delete": false, "file_type": 1, "original_file_name": "10414-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c739f66cd2a94cf38d2efded584fc824.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c739f66cd2a94cf38d2efded584fc824.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c739f66cd2a94cf38d2efded584fc824.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c739f66cd2a94cf38d2efded584fc824.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c739f66cd2a94cf38d2efded584fc824.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7CmaPH4pV2XrhnsgafOiPRIP7Y=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.943124+00 2025-12-09 10:14:41.943128+00 3731 22C09-09-65#36码 SPMX-20240815298854 \N \N \N 1 \N [{"file_id": "af9dcdba-12bf-475b-8d00-bedacf49db27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c57f9b3571e4dbc9d0f07f9ea50e750.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c57f9b3571e4dbc9d0f07f9ea50e750.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c57f9b3571e4dbc9d0f07f9ea50e750.jpg", "file_size": 21533, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-65#36码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c57f9b3571e4dbc9d0f07f9ea50e750.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c57f9b3571e4dbc9d0f07f9ea50e750.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c57f9b3571e4dbc9d0f07f9ea50e750.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c57f9b3571e4dbc9d0f07f9ea50e750.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c57f9b3571e4dbc9d0f07f9ea50e750.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-tsQRXrBCkgSp4EYlRvIILucqg=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.944204+00 2025-12-09 10:14:41.944208+00 3732 LHJ8631#10#黑蓝色 SPMX-20240815298860 \N \N \N 1 \N [{"file_id": "e06df865-8a0f-4848-addb-0eaaa8c3c941", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a98b30d49b954899b5c4eda6c08d59bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a98b30d49b954899b5c4eda6c08d59bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a98b30d49b954899b5c4eda6c08d59bf.jpg", "file_size": 19801, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#10#黑蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98b30d49b954899b5c4eda6c08d59bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98b30d49b954899b5c4eda6c08d59bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98b30d49b954899b5c4eda6c08d59bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a98b30d49b954899b5c4eda6c08d59bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a98b30d49b954899b5c4eda6c08d59bf.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MwqolQ6qhrcuKTedcwpUeOYAO4=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.945256+00 2025-12-09 10:14:41.94526+00 3733 DH1074400FWE#VS-D3 SPMX-20240815298871 \N \N \N 1 \N [{"file_id": "f6f27d07-146c-4b3f-afbe-7d7e9925989c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b79db0290bc44d62b85faec8f17a1e2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b79db0290bc44d62b85faec8f17a1e2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b79db0290bc44d62b85faec8f17a1e2c.jpg", "file_size": 13308, "is_delete": false, "file_type": 1, "original_file_name": "DH1074400FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79db0290bc44d62b85faec8f17a1e2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79db0290bc44d62b85faec8f17a1e2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79db0290bc44d62b85faec8f17a1e2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b79db0290bc44d62b85faec8f17a1e2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b79db0290bc44d62b85faec8f17a1e2c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrKabSPaglH92r2h78IUJlvgei0=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.946345+00 2025-12-09 10:14:41.946349+00 3734 C226#黑色 SPMX-20240815298859 \N \N \N 1 \N [{"file_id": "7eb3a26b-0b14-4e66-9916-6b8b274ecd78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87b9c6ca43714eea87792393125cd1a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87b9c6ca43714eea87792393125cd1a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87b9c6ca43714eea87792393125cd1a9.jpg", "file_size": 19708, "is_delete": false, "file_type": 1, "original_file_name": "C226#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9c6ca43714eea87792393125cd1a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9c6ca43714eea87792393125cd1a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9c6ca43714eea87792393125cd1a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87b9c6ca43714eea87792393125cd1a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87b9c6ca43714eea87792393125cd1a9.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgM1C3eWN-GvmUn6_NG8WLBL7J8=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.947474+00 2025-12-09 10:14:41.947479+00 3735 DH09641-7#RC23 SPMX-20240815298861 \N \N \N 1 \N [{"file_id": "c8406f06-b10b-41c2-a8df-5467d1c00cb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d8835a46d0b4c639f55ccdcec36f6a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d8835a46d0b4c639f55ccdcec36f6a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d8835a46d0b4c639f55ccdcec36f6a6.jpg", "file_size": 73075, "is_delete": false, "file_type": 1, "original_file_name": "DH09641-7#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8835a46d0b4c639f55ccdcec36f6a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8835a46d0b4c639f55ccdcec36f6a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8835a46d0b4c639f55ccdcec36f6a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d8835a46d0b4c639f55ccdcec36f6a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d8835a46d0b4c639f55ccdcec36f6a6.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIJofsKbEdFnlx-i9fx43vRJV6w=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.948598+00 2025-12-09 10:14:41.948602+00 3736 C23#WJC22 SPMX-20240815298870 \N \N \N 1 \N [{"file_id": "f3e15e98-3f8b-4415-9e1f-2b2da56d523f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45a3aaf328f84068b6ab77e6ffb13100.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45a3aaf328f84068b6ab77e6ffb13100.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45a3aaf328f84068b6ab77e6ffb13100.jpg", "file_size": 20080, "is_delete": false, "file_type": 1, "original_file_name": "C23#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3aaf328f84068b6ab77e6ffb13100.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3aaf328f84068b6ab77e6ffb13100.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a3aaf328f84068b6ab77e6ffb13100.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45a3aaf328f84068b6ab77e6ffb13100.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45a3aaf328f84068b6ab77e6ffb13100.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wjf1sZu5_olCwopxdh_oohGvGNA=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.949676+00 2025-12-09 10:14:41.949681+00 3737 JS028FWE#LW浅15 SPMX-20240815298874 \N \N \N 1 \N [{"file_id": "98b154d6-7140-4fd3-b978-c4acd8cadc0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fca54d6777614b9c8865dde599b121e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fca54d6777614b9c8865dde599b121e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fca54d6777614b9c8865dde599b121e5.jpg", "file_size": 19927, "is_delete": false, "file_type": 1, "original_file_name": "JS028FWE#LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca54d6777614b9c8865dde599b121e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca54d6777614b9c8865dde599b121e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca54d6777614b9c8865dde599b121e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fca54d6777614b9c8865dde599b121e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fca54d6777614b9c8865dde599b121e5.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3wUdaDacng4XgBDCWARIcdMw0k=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.950762+00 2025-12-09 10:14:41.950766+00 3738 FHPKDK2-003-2-坯布 SPMX-20240815298868 \N \N \N 1 \N [{"file_id": "ddee44b3-d609-4916-a16f-f7e130c5c574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e1757acca6242efa66872f5db4dd362.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e1757acca6242efa66872f5db4dd362.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e1757acca6242efa66872f5db4dd362.jpg", "file_size": 28000, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-2-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1757acca6242efa66872f5db4dd362.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1757acca6242efa66872f5db4dd362.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1757acca6242efa66872f5db4dd362.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e1757acca6242efa66872f5db4dd362.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e1757acca6242efa66872f5db4dd362.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2h7eFk_2GB5EX3LlsFcUiwa-d4E=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.951862+00 2025-12-09 10:14:41.951866+00 3739 FHPKDK2-003-1 SPMX-20240815298858 \N \N \N 1 \N [{"file_id": "f547ff32-9573-41d8-afb8-96cf713e7e84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b072d145898042a19ecfa6400b8bc0ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b072d145898042a19ecfa6400b8bc0ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b072d145898042a19ecfa6400b8bc0ed.jpg", "file_size": 48682, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b072d145898042a19ecfa6400b8bc0ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b072d145898042a19ecfa6400b8bc0ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b072d145898042a19ecfa6400b8bc0ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b072d145898042a19ecfa6400b8bc0ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b072d145898042a19ecfa6400b8bc0ed.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INP2K_yeffgqb5iMjNVlMk67beE=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.95292+00 2025-12-09 10:14:41.952924+00 3740 0001-3FWE#VS-D3 SPMX-20240815298867 \N \N \N 1 \N [{"file_id": "7110f433-9ee5-4467-abf8-0711680fc71b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de46c2d3d53d461a9f99e77ebc6d7055.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de46c2d3d53d461a9f99e77ebc6d7055.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de46c2d3d53d461a9f99e77ebc6d7055.jpg", "file_size": 18647, "is_delete": false, "file_type": 1, "original_file_name": "0001-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de46c2d3d53d461a9f99e77ebc6d7055.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de46c2d3d53d461a9f99e77ebc6d7055.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de46c2d3d53d461a9f99e77ebc6d7055.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de46c2d3d53d461a9f99e77ebc6d7055.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de46c2d3d53d461a9f99e77ebc6d7055.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVtk-Sq01fFYOjOQkK-jWwKn6OM=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.953988+00 2025-12-09 10:14:41.953993+00 3741 JS027FWE#VS-D3 SPMX-20240815298863 \N \N \N 1 \N [{"file_id": "d344013d-121f-4e6b-bcc3-92a65675d5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6944698953a64dbf874cb3cedf9e2f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6944698953a64dbf874cb3cedf9e2f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6944698953a64dbf874cb3cedf9e2f1a.jpg", "file_size": 24736, "is_delete": false, "file_type": 1, "original_file_name": "JS027FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6944698953a64dbf874cb3cedf9e2f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6944698953a64dbf874cb3cedf9e2f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6944698953a64dbf874cb3cedf9e2f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6944698953a64dbf874cb3cedf9e2f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6944698953a64dbf874cb3cedf9e2f1a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5AotzRUZ1JpYNgbj1Za8XAJmpw=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.95506+00 2025-12-09 10:14:41.955064+00 3742 10414-4FWE#VS-D3 SPMX-20240815298864 \N \N \N 1 \N [{"file_id": "5080eaad-ebf3-42fd-a312-27d6c842a146", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2359ccf9d4ab47dda0b16b5eb3851c67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2359ccf9d4ab47dda0b16b5eb3851c67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2359ccf9d4ab47dda0b16b5eb3851c67.jpg", "file_size": 15674, "is_delete": false, "file_type": 1, "original_file_name": "10414-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2359ccf9d4ab47dda0b16b5eb3851c67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2359ccf9d4ab47dda0b16b5eb3851c67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2359ccf9d4ab47dda0b16b5eb3851c67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2359ccf9d4ab47dda0b16b5eb3851c67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2359ccf9d4ab47dda0b16b5eb3851c67.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:no0M7i988XdZRPSrBpbmiYzQlko=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.956127+00 2025-12-09 10:14:41.956131+00 3743 LHJ8631#61#橙色 SPMX-20240815298872 \N \N \N 1 \N [{"file_id": "d5705902-efca-4c44-a39c-e3f31e2a67b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a3fbcafc93042dbb8cb640b2de5c4f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a3fbcafc93042dbb8cb640b2de5c4f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a3fbcafc93042dbb8cb640b2de5c4f8.jpg", "file_size": 17484, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#61#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3fbcafc93042dbb8cb640b2de5c4f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3fbcafc93042dbb8cb640b2de5c4f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3fbcafc93042dbb8cb640b2de5c4f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a3fbcafc93042dbb8cb640b2de5c4f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a3fbcafc93042dbb8cb640b2de5c4f8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8HkBP7QvfwuWiVSXEu7xxTPc6I=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.957214+00 2025-12-09 10:14:41.957218+00 3744 8004#白底 SPMX-20240815298857 \N \N \N 1 \N [{"file_id": "6e2e6a34-928a-4f7f-8b32-9b7c5e365258", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b75c52ce25d4563863b936520550c16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b75c52ce25d4563863b936520550c16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b75c52ce25d4563863b936520550c16.jpg", "file_size": 27284, "is_delete": false, "file_type": 1, "original_file_name": "8004#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75c52ce25d4563863b936520550c16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75c52ce25d4563863b936520550c16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75c52ce25d4563863b936520550c16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b75c52ce25d4563863b936520550c16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b75c52ce25d4563863b936520550c16.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxPMSpiK2vcMvbmse11F3llmPHM=", "createTime": "2024-08-15 14:39:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.958424+00 2025-12-09 10:14:41.958429+00 3745 HSH012FW#VS-D3 SPMX-20240815298866 \N \N \N 1 \N [{"file_id": "908d3136-7f25-4eae-84b5-6aeca23fd3da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "792f7b46acd447a89b4a51bc6af53b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "792f7b46acd447a89b4a51bc6af53b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "792f7b46acd447a89b4a51bc6af53b9c.jpg", "file_size": 14357, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f7b46acd447a89b4a51bc6af53b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f7b46acd447a89b4a51bc6af53b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f7b46acd447a89b4a51bc6af53b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/792f7b46acd447a89b4a51bc6af53b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/792f7b46acd447a89b4a51bc6af53b9c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oV3c9c4R5YbXnicGL2Frs8T5KiM=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.959532+00 2025-12-09 10:14:41.959536+00 3746 8004#粉色 SPMX-20240815298869 \N \N \N 1 \N [{"file_id": "4e222ce8-c91d-42f2-9ef2-c8e009c6741b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "200e1fbc58e1465cb59bfba45d1c8842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "200e1fbc58e1465cb59bfba45d1c8842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "200e1fbc58e1465cb59bfba45d1c8842.jpg", "file_size": 25008, "is_delete": false, "file_type": 1, "original_file_name": "8004#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/200e1fbc58e1465cb59bfba45d1c8842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/200e1fbc58e1465cb59bfba45d1c8842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/200e1fbc58e1465cb59bfba45d1c8842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/200e1fbc58e1465cb59bfba45d1c8842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/200e1fbc58e1465cb59bfba45d1c8842.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLZyuYy1iAQVpe03uo2kcWJllKo=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.960645+00 2025-12-09 10:14:41.960649+00 3747 LZ1191#上身1号色 SPMX-20240815298873 \N \N \N 1 \N [{"file_id": "e68f2dc5-c950-4d8c-9d99-9c0437c5dfef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8863976d4a2049c6a72fb8e301b8a171.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8863976d4a2049c6a72fb8e301b8a171.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8863976d4a2049c6a72fb8e301b8a171.jpg", "file_size": 19889, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8863976d4a2049c6a72fb8e301b8a171.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8863976d4a2049c6a72fb8e301b8a171.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8863976d4a2049c6a72fb8e301b8a171.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8863976d4a2049c6a72fb8e301b8a171.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8863976d4a2049c6a72fb8e301b8a171.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9KhNBQ6X2h1x2YLdZBG11MuluPs=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.962198+00 2025-12-09 10:14:41.962202+00 3748 22C09-09-65#38码 SPMX-20240815298865 \N \N \N 1 \N [{"file_id": "fa7aa215-3831-4fa9-bbd8-62ba9898f404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd1af1fdbeac41d6ace1e882ed54d7bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd1af1fdbeac41d6ace1e882ed54d7bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd1af1fdbeac41d6ace1e882ed54d7bb.jpg", "file_size": 20856, "is_delete": false, "file_type": 1, "original_file_name": "22C09-09-65#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1af1fdbeac41d6ace1e882ed54d7bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1af1fdbeac41d6ace1e882ed54d7bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1af1fdbeac41d6ace1e882ed54d7bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd1af1fdbeac41d6ace1e882ed54d7bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd1af1fdbeac41d6ace1e882ed54d7bb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DicrtGADe-NCAEklhuF-392iyDE=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.963568+00 2025-12-09 10:14:41.963571+00 3749 LZ1190#上身4号色 SPMX-20240815298862 \N \N \N 1 \N [{"file_id": "bc2e5302-37dd-4492-834a-91c186c9666d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81cfef8bdb21486bbb59e6d24d282b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81cfef8bdb21486bbb59e6d24d282b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81cfef8bdb21486bbb59e6d24d282b04.jpg", "file_size": 11597, "is_delete": false, "file_type": 1, "original_file_name": "LZ1190#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cfef8bdb21486bbb59e6d24d282b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cfef8bdb21486bbb59e6d24d282b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cfef8bdb21486bbb59e6d24d282b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81cfef8bdb21486bbb59e6d24d282b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81cfef8bdb21486bbb59e6d24d282b04.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SL0x83bXmMrVfw_vByaeaXyovDo=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.964928+00 2025-12-09 10:14:41.964932+00 3750 0001-40FWE#VS-D3 SPMX-20240815298889 \N \N \N 1 \N [{"file_id": "551b67b8-f131-46c1-a3dd-72e3da1dfdbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be46f4cc0d594766ab4631d26c718a05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be46f4cc0d594766ab4631d26c718a05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be46f4cc0d594766ab4631d26c718a05.jpg", "file_size": 16689, "is_delete": false, "file_type": 1, "original_file_name": "0001-40FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be46f4cc0d594766ab4631d26c718a05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be46f4cc0d594766ab4631d26c718a05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be46f4cc0d594766ab4631d26c718a05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be46f4cc0d594766ab4631d26c718a05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be46f4cc0d594766ab4631d26c718a05.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3mq9xia9EQq-5OYJaXP3JntthcA=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.96629+00 2025-12-09 10:14:41.966294+00 3751 C23018#-L码-正身 SPMX-20240815298883 \N \N \N 1 \N [{"file_id": "5b72e1ac-c259-47aa-bb5d-799eb58b7e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f103e8c9a584b508d3369af04b026ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f103e8c9a584b508d3369af04b026ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f103e8c9a584b508d3369af04b026ed.jpg", "file_size": 16525, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-L码-正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f103e8c9a584b508d3369af04b026ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f103e8c9a584b508d3369af04b026ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f103e8c9a584b508d3369af04b026ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f103e8c9a584b508d3369af04b026ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f103e8c9a584b508d3369af04b026ed.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfhi_fezpW1kqRDHp3rMJKz4kgw=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.967641+00 2025-12-09 10:14:41.967645+00 3752 LHJ8631#67#咖啡 SPMX-20240815298882 \N \N \N 1 \N [{"file_id": "1c0cf834-9750-4652-8911-6ae2b1c1c9f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86375152bca54615af41d517c1dd4154.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86375152bca54615af41d517c1dd4154.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86375152bca54615af41d517c1dd4154.jpg", "file_size": 15779, "is_delete": false, "file_type": 1, "original_file_name": "LHJ8631#67#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86375152bca54615af41d517c1dd4154.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86375152bca54615af41d517c1dd4154.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86375152bca54615af41d517c1dd4154.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86375152bca54615af41d517c1dd4154.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86375152bca54615af41d517c1dd4154.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1OVW01hvgIszZOiEA6gCb97VIM=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.969002+00 2025-12-09 10:14:41.969007+00 3753 10414-6FWE#VS-D3 SPMX-20240815298887 \N \N \N 1 \N [{"file_id": "e75d05a5-ce6d-4315-94e8-8a22f457242e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f50c48ecf96848e6a6660021a44c8a38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f50c48ecf96848e6a6660021a44c8a38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f50c48ecf96848e6a6660021a44c8a38.jpg", "file_size": 20390, "is_delete": false, "file_type": 1, "original_file_name": "10414-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50c48ecf96848e6a6660021a44c8a38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50c48ecf96848e6a6660021a44c8a38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50c48ecf96848e6a6660021a44c8a38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f50c48ecf96848e6a6660021a44c8a38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f50c48ecf96848e6a6660021a44c8a38.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NF3P5c9KsiBKBsDN2xp6CFKTHWM=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.970356+00 2025-12-09 10:14:41.97036+00 3754 0001-3FWF#V5曲线 SPMX-20240815298878 \N \N \N 1 \N [{"file_id": "5fb503df-13a7-4e3c-849e-7b0c16dcb748", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aaa515bcfa542fd968f3713ad13c213.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aaa515bcfa542fd968f3713ad13c213.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aaa515bcfa542fd968f3713ad13c213.jpg", "file_size": 17572, "is_delete": false, "file_type": 1, "original_file_name": "0001-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaa515bcfa542fd968f3713ad13c213.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaa515bcfa542fd968f3713ad13c213.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaa515bcfa542fd968f3713ad13c213.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aaa515bcfa542fd968f3713ad13c213.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aaa515bcfa542fd968f3713ad13c213.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEeoAHWXI57yZdQf076l0q-4p6g=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.971735+00 2025-12-09 10:14:41.97174+00 3755 8004#长款上身土黄 SPMX-20240815298879 \N \N \N 1 \N [{"file_id": "fc026df8-ef97-4743-9f9f-f07b5ff1b7ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41403156eccb474fbc3192ca54c2c57f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41403156eccb474fbc3192ca54c2c57f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41403156eccb474fbc3192ca54c2c57f.jpg", "file_size": 16950, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41403156eccb474fbc3192ca54c2c57f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41403156eccb474fbc3192ca54c2c57f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41403156eccb474fbc3192ca54c2c57f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41403156eccb474fbc3192ca54c2c57f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41403156eccb474fbc3192ca54c2c57f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h6sk7bypaqM6Gjjrqhm6PovJ0qI=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.973101+00 2025-12-09 10:14:41.973105+00 3756 22DS168FWF#白底 SPMX-20240815298875 \N \N \N 1 \N [{"file_id": "9da4d17f-bdd9-470b-b8a8-71549bc6e1e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b46a4af091fc42c58c62dff1cb8b12c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b46a4af091fc42c58c62dff1cb8b12c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b46a4af091fc42c58c62dff1cb8b12c2.jpg", "file_size": 19569, "is_delete": false, "file_type": 1, "original_file_name": "22DS168FWF#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a4af091fc42c58c62dff1cb8b12c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a4af091fc42c58c62dff1cb8b12c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a4af091fc42c58c62dff1cb8b12c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b46a4af091fc42c58c62dff1cb8b12c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b46a4af091fc42c58c62dff1cb8b12c2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qqXSaKIbh5RxU_zX4nT-mPaPu0=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.974179+00 2025-12-09 10:14:41.974183+00 3757 DH1141827FWE#VS-D3 SPMX-20240815298880 \N \N \N 1 \N [{"file_id": "d332bf5f-eb4d-4b82-9a43-0f268ca1e618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07979a8a56a64b3f92668f62fd821dc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07979a8a56a64b3f92668f62fd821dc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07979a8a56a64b3f92668f62fd821dc8.jpg", "file_size": 20422, "is_delete": false, "file_type": 1, "original_file_name": "DH1141827FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07979a8a56a64b3f92668f62fd821dc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07979a8a56a64b3f92668f62fd821dc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07979a8a56a64b3f92668f62fd821dc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07979a8a56a64b3f92668f62fd821dc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07979a8a56a64b3f92668f62fd821dc8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUJ4oIFIUN83-1_PNG2M-QUcCXU=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.97525+00 2025-12-09 10:14:41.975255+00 3758 LZ1191#上身2号色 SPMX-20240815298885 \N \N \N 1 \N [{"file_id": "23cac372-0710-4766-ac6c-df4a422135ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9a59ebbbd5c4849ae3160213c091b57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9a59ebbbd5c4849ae3160213c091b57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9a59ebbbd5c4849ae3160213c091b57.jpg", "file_size": 17228, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a59ebbbd5c4849ae3160213c091b57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a59ebbbd5c4849ae3160213c091b57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a59ebbbd5c4849ae3160213c091b57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9a59ebbbd5c4849ae3160213c091b57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9a59ebbbd5c4849ae3160213c091b57.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NlFaUKo93b4efJtQSrM4yYn8l4=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.976318+00 2025-12-09 10:14:41.976322+00 3759 10414-5FWE#VS-D3 SPMX-20240815298876 \N \N \N 1 \N [{"file_id": "d83f1fa3-80e9-4cee-9119-8c31ea45a6cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f10bc44268a4d3dbb3b992d05238aa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f10bc44268a4d3dbb3b992d05238aa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f10bc44268a4d3dbb3b992d05238aa3.jpg", "file_size": 21919, "is_delete": false, "file_type": 1, "original_file_name": "10414-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f10bc44268a4d3dbb3b992d05238aa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f10bc44268a4d3dbb3b992d05238aa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f10bc44268a4d3dbb3b992d05238aa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f10bc44268a4d3dbb3b992d05238aa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f10bc44268a4d3dbb3b992d05238aa3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBLFtzjLrDCmVi3a5xkM7Bnz-wE=", "createTime": "2024-08-15 14:39:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.977398+00 2025-12-09 10:14:41.977403+00 3760 HSH012FWE#暗红底白花 SPMX-20240815298888 \N \N \N 1 \N [{"file_id": "28c97cff-d5b4-43b0-9a7e-679145df8645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d10166186fbd4091a434bdddc1bd4d97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d10166186fbd4091a434bdddc1bd4d97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d10166186fbd4091a434bdddc1bd4d97.jpg", "file_size": 18805, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FWE#暗红底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10166186fbd4091a434bdddc1bd4d97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10166186fbd4091a434bdddc1bd4d97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10166186fbd4091a434bdddc1bd4d97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d10166186fbd4091a434bdddc1bd4d97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d10166186fbd4091a434bdddc1bd4d97.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtE2yNH3a1x1WuH9qgC0pzECzj0=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.978462+00 2025-12-09 10:14:41.978466+00 3761 JS028FWE#杏色LW浅15 SPMX-20240815298884 \N \N \N 1 \N [{"file_id": "2d40ef10-2ac0-4ce7-a430-e25f7b0f5aee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "308f5a4b269e490bb2e97fc444446351.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "308f5a4b269e490bb2e97fc444446351.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "308f5a4b269e490bb2e97fc444446351.jpg", "file_size": 19739, "is_delete": false, "file_type": 1, "original_file_name": "JS028FWE#杏色LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308f5a4b269e490bb2e97fc444446351.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308f5a4b269e490bb2e97fc444446351.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308f5a4b269e490bb2e97fc444446351.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/308f5a4b269e490bb2e97fc444446351.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/308f5a4b269e490bb2e97fc444446351.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSwyXINeUfWBbg47R3ApGCLBgUw=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.979518+00 2025-12-09 10:14:41.979522+00 3762 22DS168FWF#蓝底 SPMX-20240815298886 \N \N \N 1 \N [{"file_id": "138ba22a-0c77-4d71-bad1-c2c559334cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba3e66b91579428b9e8396c693bfca8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba3e66b91579428b9e8396c693bfca8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba3e66b91579428b9e8396c693bfca8c.jpg", "file_size": 26984, "is_delete": false, "file_type": 1, "original_file_name": "22DS168FWF#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3e66b91579428b9e8396c693bfca8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3e66b91579428b9e8396c693bfca8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3e66b91579428b9e8396c693bfca8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba3e66b91579428b9e8396c693bfca8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba3e66b91579428b9e8396c693bfca8c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gsDPRI3ecR8sb9ST3zT6V9Id0xY=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.980609+00 2025-12-09 10:14:41.980613+00 3763 FHPKDK2-003-2 SPMX-20240815298881 \N \N \N 1 \N [{"file_id": "2c8a4a78-f07e-4d6a-85d4-3ca5b7f2a14f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5af12a8685b74df4a9a654902f41444a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5af12a8685b74df4a9a654902f41444a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5af12a8685b74df4a9a654902f41444a.jpg", "file_size": 48734, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af12a8685b74df4a9a654902f41444a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af12a8685b74df4a9a654902f41444a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af12a8685b74df4a9a654902f41444a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5af12a8685b74df4a9a654902f41444a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5af12a8685b74df4a9a654902f41444a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOv3KFE2oEXkZsww6yD06gNp2Hw=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.981687+00 2025-12-09 10:14:41.981692+00 3764 HSH012FW#黑VS-D3 SPMX-20240815298877 \N \N \N 1 \N [{"file_id": "c6d799fa-9b98-4b7c-851c-e288dd688729", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d255b1baf24e93aa3a2e58177977b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d255b1baf24e93aa3a2e58177977b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d255b1baf24e93aa3a2e58177977b6.jpg", "file_size": 15773, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d255b1baf24e93aa3a2e58177977b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d255b1baf24e93aa3a2e58177977b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d255b1baf24e93aa3a2e58177977b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d255b1baf24e93aa3a2e58177977b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d255b1baf24e93aa3a2e58177977b6.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KjLfwbcGLapi7SNKkHYPk8d8NjI=", "createTime": "2024-08-15 14:39:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.982766+00 2025-12-09 10:14:41.98277+00 3765 DH114182FWE#净色VS-D3 SPMX-20240815298890 \N \N \N 1 \N [{"file_id": "7d1cf8dd-eff1-499b-9d23-538f67222459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b04eef3b70840029894e670b5656f2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b04eef3b70840029894e670b5656f2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b04eef3b70840029894e670b5656f2c.jpg", "file_size": 6872, "is_delete": false, "file_type": 1, "original_file_name": "DH114182FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b04eef3b70840029894e670b5656f2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b04eef3b70840029894e670b5656f2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b04eef3b70840029894e670b5656f2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b04eef3b70840029894e670b5656f2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b04eef3b70840029894e670b5656f2c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LctKaEoNl-ibitEVrDMgY7qNFcQ=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.983856+00 2025-12-09 10:14:41.98386+00 3766 LHJ9151#1#黑 SPMX-20240815298893 \N \N \N 1 \N [{"file_id": "d30ba93d-48be-4bb3-8571-9f64a0bd0d7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5380bf7fd1184a008b8bff8eb6842e23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5380bf7fd1184a008b8bff8eb6842e23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5380bf7fd1184a008b8bff8eb6842e23.jpg", "file_size": 18228, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9151#1#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5380bf7fd1184a008b8bff8eb6842e23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5380bf7fd1184a008b8bff8eb6842e23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5380bf7fd1184a008b8bff8eb6842e23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5380bf7fd1184a008b8bff8eb6842e23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5380bf7fd1184a008b8bff8eb6842e23.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HWt1gxcmvtb0vxSGh-sUxInOQoc=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.984937+00 2025-12-09 10:14:41.984941+00 3767 JS028FWE#黑白 SPMX-20240815298897 \N \N \N 1 \N [{"file_id": "a0863f59-4de3-408b-a956-84b632011b4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a3e6a09a3be42f6a61a40a485905738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a3e6a09a3be42f6a61a40a485905738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a3e6a09a3be42f6a61a40a485905738.jpg", "file_size": 18607, "is_delete": false, "file_type": 1, "original_file_name": "JS028FWE#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3e6a09a3be42f6a61a40a485905738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3e6a09a3be42f6a61a40a485905738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3e6a09a3be42f6a61a40a485905738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a3e6a09a3be42f6a61a40a485905738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a3e6a09a3be42f6a61a40a485905738.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sAJLXJRfBuf4-7XTvYzOhtGR1wQ=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.986014+00 2025-12-09 10:14:41.986019+00 3768 0001-40FWF#V5曲线番禺调色 SPMX-20240815298898 \N \N \N 1 \N [{"file_id": "e22c21d4-5829-4f92-9571-d1f8b4f576e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "746110a322c64e03847a965102ea34de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "746110a322c64e03847a965102ea34de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "746110a322c64e03847a965102ea34de.jpg", "file_size": 26117, "is_delete": false, "file_type": 1, "original_file_name": "0001-40FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746110a322c64e03847a965102ea34de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746110a322c64e03847a965102ea34de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746110a322c64e03847a965102ea34de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/746110a322c64e03847a965102ea34de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/746110a322c64e03847a965102ea34de.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpmEqL3WfP2m3ntsuS1F3F3OKr4=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.987098+00 2025-12-09 10:14:41.987102+00 3769 10414-7FWE#VS-D3 SPMX-20240815298899 \N \N \N 1 \N [{"file_id": "ae6770db-4abd-4c13-99c7-953cf3578646", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e4b901b87554a1d8101eefc7efc19bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e4b901b87554a1d8101eefc7efc19bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e4b901b87554a1d8101eefc7efc19bc.jpg", "file_size": 26708, "is_delete": false, "file_type": 1, "original_file_name": "10414-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4b901b87554a1d8101eefc7efc19bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4b901b87554a1d8101eefc7efc19bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4b901b87554a1d8101eefc7efc19bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e4b901b87554a1d8101eefc7efc19bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e4b901b87554a1d8101eefc7efc19bc.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bpwavhqv6i9GBJYDFRLoUeELvns=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.988167+00 2025-12-09 10:14:41.988172+00 3770 DH1152401FWE#VS-D3 SPMX-20240815298900 \N \N \N 1 \N [{"file_id": "dfb259e2-a41c-4e83-ada0-fac6fc960f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eefc378a84d4a02938ccb8b12d8b8c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eefc378a84d4a02938ccb8b12d8b8c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eefc378a84d4a02938ccb8b12d8b8c3.jpg", "file_size": 19289, "is_delete": false, "file_type": 1, "original_file_name": "DH1152401FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eefc378a84d4a02938ccb8b12d8b8c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eefc378a84d4a02938ccb8b12d8b8c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eefc378a84d4a02938ccb8b12d8b8c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eefc378a84d4a02938ccb8b12d8b8c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eefc378a84d4a02938ccb8b12d8b8c3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYtx6fE9tegMZzmM_yhUBoMtJSE=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.989229+00 2025-12-09 10:14:41.989232+00 3771 8004#长款上身墨绿 SPMX-20240815298891 \N \N \N 1 \N [{"file_id": "f9d90979-04e6-426c-be03-29baf4e8f828", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "487794b799564a3a9ebe29183bee7297.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "487794b799564a3a9ebe29183bee7297.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "487794b799564a3a9ebe29183bee7297.jpg", "file_size": 18035, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487794b799564a3a9ebe29183bee7297.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487794b799564a3a9ebe29183bee7297.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487794b799564a3a9ebe29183bee7297.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/487794b799564a3a9ebe29183bee7297.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/487794b799564a3a9ebe29183bee7297.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fGy5uhTuLXCDrOlHGm60CrkrXU=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.99048+00 2025-12-09 10:14:41.990484+00 3772 HSH012FWE#白底红花 SPMX-20240815298901 \N \N \N 1 \N [{"file_id": "4d35ad22-94ea-4dcc-a005-f34962dd7907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb1db914bb064b18bf292f5215ab993b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb1db914bb064b18bf292f5215ab993b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb1db914bb064b18bf292f5215ab993b.jpg", "file_size": 23305, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FWE#白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1db914bb064b18bf292f5215ab993b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1db914bb064b18bf292f5215ab993b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1db914bb064b18bf292f5215ab993b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb1db914bb064b18bf292f5215ab993b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb1db914bb064b18bf292f5215ab993b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hhLG_DgWHO_AeH2_0YFzbnDDWuc=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.991574+00 2025-12-09 10:14:41.991578+00 3773 22DS168FWF#蓝底番禺调色 SPMX-20240815298896 \N \N \N 1 \N [{"file_id": "546a56c0-9d4a-415d-8b6f-698a448963eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463910fac8ee4d6fb771dc2e41326866.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463910fac8ee4d6fb771dc2e41326866.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463910fac8ee4d6fb771dc2e41326866.jpg", "file_size": 27714, "is_delete": false, "file_type": 1, "original_file_name": "22DS168FWF#蓝底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463910fac8ee4d6fb771dc2e41326866.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463910fac8ee4d6fb771dc2e41326866.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463910fac8ee4d6fb771dc2e41326866.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463910fac8ee4d6fb771dc2e41326866.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463910fac8ee4d6fb771dc2e41326866.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Wbg3N9bUONALVAkHEfZru6okOs=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.992661+00 2025-12-09 10:14:41.992665+00 3774 C23018#-L码-领子+袖口+门禁 SPMX-20240815298894 \N \N \N 1 \N [{"file_id": "b7bb48d7-2f5e-4979-899e-0913d2ead92d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecd90e292b5d4137a8ae5175e39c8580.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecd90e292b5d4137a8ae5175e39c8580.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecd90e292b5d4137a8ae5175e39c8580.jpg", "file_size": 24301, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-L码-领子+袖口+门禁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd90e292b5d4137a8ae5175e39c8580.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd90e292b5d4137a8ae5175e39c8580.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd90e292b5d4137a8ae5175e39c8580.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecd90e292b5d4137a8ae5175e39c8580.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecd90e292b5d4137a8ae5175e39c8580.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0rzobH1w9wHHtyo8sbLQ2fOP1g=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.993727+00 2025-12-09 10:14:41.993731+00 3775 LZ1191#上身3号色 SPMX-20240815298895 \N \N \N 1 \N [{"file_id": "4a76c70a-7ce9-45ef-96c7-ef22d85502fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4086db3db3a4efd9e4339ed8130d172.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4086db3db3a4efd9e4339ed8130d172.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4086db3db3a4efd9e4339ed8130d172.jpg", "file_size": 18542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4086db3db3a4efd9e4339ed8130d172.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4086db3db3a4efd9e4339ed8130d172.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4086db3db3a4efd9e4339ed8130d172.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4086db3db3a4efd9e4339ed8130d172.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4086db3db3a4efd9e4339ed8130d172.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWJ3d6eCVu4mb73ci1JRdGkvWiQ=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.994829+00 2025-12-09 10:14:41.994833+00 3776 FHPKDK2-003-3 SPMX-20240815298892 \N \N \N 1 \N [{"file_id": "8df2bcc7-d444-4c9c-9c8b-0037fa9a8a06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18e2484115454b84a337879543b01127.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18e2484115454b84a337879543b01127.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18e2484115454b84a337879543b01127.jpg", "file_size": 49648, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e2484115454b84a337879543b01127.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e2484115454b84a337879543b01127.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e2484115454b84a337879543b01127.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18e2484115454b84a337879543b01127.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18e2484115454b84a337879543b01127.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbIXbyV3stsfrEgLkAou6wwQh_k=", "createTime": "2024-08-15 14:39:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.99588+00 2025-12-09 10:14:41.995884+00 3777 FHPKDK2-003-4 SPMX-20240815298902 \N \N \N 1 \N [{"file_id": "c2cd4fde-fe9d-4c9b-854b-a6b99331bb86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d47ad8d488d499c8ca1eccaacd13dbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d47ad8d488d499c8ca1eccaacd13dbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d47ad8d488d499c8ca1eccaacd13dbb.jpg", "file_size": 50138, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK2-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d47ad8d488d499c8ca1eccaacd13dbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d47ad8d488d499c8ca1eccaacd13dbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d47ad8d488d499c8ca1eccaacd13dbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d47ad8d488d499c8ca1eccaacd13dbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d47ad8d488d499c8ca1eccaacd13dbb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYBqaU3rdlS79D7rp_VmgiA1-1A=", "createTime": "2024-08-15 14:39:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.99695+00 2025-12-09 10:14:41.996954+00 3778 DH1152401FWE#净色VS-D3 SPMX-20240815298907 \N \N \N 1 \N [{"file_id": "e19faa44-53a5-4fcd-86a2-8ad33bbde3f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d0d7b98745e4090b565af07ecfbe915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d0d7b98745e4090b565af07ecfbe915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d0d7b98745e4090b565af07ecfbe915.jpg", "file_size": 7079, "is_delete": false, "file_type": 1, "original_file_name": "DH1152401FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0d7b98745e4090b565af07ecfbe915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0d7b98745e4090b565af07ecfbe915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0d7b98745e4090b565af07ecfbe915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d0d7b98745e4090b565af07ecfbe915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d0d7b98745e4090b565af07ecfbe915.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEWkYE-kW-jOeZEoQNB9s-4aNxw=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.998065+00 2025-12-09 10:14:41.998069+00 3779 FHPKDK两口袋-001-1 SPMX-20240815298912 \N \N \N 1 \N [{"file_id": "e1307ad7-cf2b-4603-a967-6c4907def57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "092e97efadd4433193f845123d1d9fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "092e97efadd4433193f845123d1d9fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "092e97efadd4433193f845123d1d9fe1.jpg", "file_size": 63922, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/092e97efadd4433193f845123d1d9fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/092e97efadd4433193f845123d1d9fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/092e97efadd4433193f845123d1d9fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/092e97efadd4433193f845123d1d9fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/092e97efadd4433193f845123d1d9fe1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ln_MzvuNeANSG695zmf1W-zlcX0=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:41.999181+00 2025-12-09 10:14:41.999185+00 3780 LHJ9151#10#宝兰 SPMX-20240815298905 \N \N \N 1 \N [{"file_id": "677266ac-06e0-416c-bb7f-a42f0bc35610", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "097c20264b124c6b915567fcc50e115a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "097c20264b124c6b915567fcc50e115a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "097c20264b124c6b915567fcc50e115a.jpg", "file_size": 17167, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9151#10#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097c20264b124c6b915567fcc50e115a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097c20264b124c6b915567fcc50e115a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097c20264b124c6b915567fcc50e115a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/097c20264b124c6b915567fcc50e115a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/097c20264b124c6b915567fcc50e115a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzxLzWVsf5QxyRPWfNesFvO_yos=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.000352+00 2025-12-09 10:14:42.000356+00 3781 0001-41FWE#条纹 SPMX-20240815298906 \N \N \N 1 \N [{"file_id": "4dee248c-8c06-4796-b19f-baf6c6bf8695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8517b3339ba4affb6b9917fe3e871e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8517b3339ba4affb6b9917fe3e871e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8517b3339ba4affb6b9917fe3e871e2.jpg", "file_size": 9975, "is_delete": false, "file_type": 1, "original_file_name": "0001-41FWE#条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8517b3339ba4affb6b9917fe3e871e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8517b3339ba4affb6b9917fe3e871e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8517b3339ba4affb6b9917fe3e871e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8517b3339ba4affb6b9917fe3e871e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8517b3339ba4affb6b9917fe3e871e2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNNVbIXAOi4ARK19h7XTv21Cgmc=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.001542+00 2025-12-09 10:14:42.001546+00 3782 0001-41FWE#蜘蛛网 SPMX-20240815298911 \N \N \N 1 \N [{"file_id": "f5923c3d-54a5-4aef-a24d-17f1e6ac3c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b76d3204f84e5bbd872dd085297f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b76d3204f84e5bbd872dd085297f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b76d3204f84e5bbd872dd085297f7d.jpg", "file_size": 19816, "is_delete": false, "file_type": 1, "original_file_name": "0001-41FWE#蜘蛛网.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b76d3204f84e5bbd872dd085297f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b76d3204f84e5bbd872dd085297f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b76d3204f84e5bbd872dd085297f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b76d3204f84e5bbd872dd085297f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b76d3204f84e5bbd872dd085297f7d.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4v6AH96skRSoJ4VZnGLRLawU-FY=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.00294+00 2025-12-09 10:14:42.002944+00 3783 C23018#-M码-领子+袖口+门禁 SPMX-20240815298910 \N \N \N 1 \N [{"file_id": "8189ce51-f5e5-4cb7-a40a-8c034818beb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8370e178d3f4b0582e05ab26b93b031.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8370e178d3f4b0582e05ab26b93b031.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8370e178d3f4b0582e05ab26b93b031.jpg", "file_size": 23613, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-M码-领子+袖口+门禁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8370e178d3f4b0582e05ab26b93b031.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8370e178d3f4b0582e05ab26b93b031.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8370e178d3f4b0582e05ab26b93b031.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8370e178d3f4b0582e05ab26b93b031.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8370e178d3f4b0582e05ab26b93b031.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbymdFW5a-Ohq43UsjmceQlWN1Q=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.004067+00 2025-12-09 10:14:42.004071+00 3784 8004#长款上身彩蓝 SPMX-20240815298904 \N \N \N 1 \N [{"file_id": "604838b1-2ac0-401c-9438-2831fbe75485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f4d6c88e3584543a6de4e98f35bf09b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f4d6c88e3584543a6de4e98f35bf09b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f4d6c88e3584543a6de4e98f35bf09b.jpg", "file_size": 18572, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4d6c88e3584543a6de4e98f35bf09b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4d6c88e3584543a6de4e98f35bf09b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4d6c88e3584543a6de4e98f35bf09b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f4d6c88e3584543a6de4e98f35bf09b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f4d6c88e3584543a6de4e98f35bf09b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FNSyLHMDfKKcJeaNysISxLtrrI=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.005165+00 2025-12-09 10:14:42.005169+00 3785 LZ1191#上身4号色 SPMX-20240815298908 \N \N \N 1 \N [{"file_id": "5bb793d4-0ebe-459d-9d78-59575fe939c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "721f10e1e4d04288adac293658ed5b22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "721f10e1e4d04288adac293658ed5b22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "721f10e1e4d04288adac293658ed5b22.jpg", "file_size": 20481, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f10e1e4d04288adac293658ed5b22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f10e1e4d04288adac293658ed5b22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f10e1e4d04288adac293658ed5b22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/721f10e1e4d04288adac293658ed5b22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/721f10e1e4d04288adac293658ed5b22.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4e3Z1N87QpSlXB4r_t9VMdpUKY=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.006245+00 2025-12-09 10:14:42.006249+00 3786 HSH012FWE#蓝底黄花 SPMX-20240815298909 \N \N \N 1 \N [{"file_id": "d68ffeb7-24f5-4988-8d43-6c9d7e707543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d7be2890bf4c27b52b8d2f65eee54d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d7be2890bf4c27b52b8d2f65eee54d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d7be2890bf4c27b52b8d2f65eee54d.jpg", "file_size": 18312, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FWE#蓝底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d7be2890bf4c27b52b8d2f65eee54d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d7be2890bf4c27b52b8d2f65eee54d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d7be2890bf4c27b52b8d2f65eee54d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d7be2890bf4c27b52b8d2f65eee54d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d7be2890bf4c27b52b8d2f65eee54d.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBMXIfMJt8QSVGnK4YMBxhUx4Qk=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.007328+00 2025-12-09 10:14:42.007332+00 3787 C23018#-M码-正身 SPMX-20240815298903 \N \N \N 1 \N [{"file_id": "18d23d7a-5d27-4e9f-aafb-1cb2f1269e25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e11d89c329b4e769ba1a81c378856ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e11d89c329b4e769ba1a81c378856ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e11d89c329b4e769ba1a81c378856ad.jpg", "file_size": 17567, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-M码-正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e11d89c329b4e769ba1a81c378856ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e11d89c329b4e769ba1a81c378856ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e11d89c329b4e769ba1a81c378856ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e11d89c329b4e769ba1a81c378856ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e11d89c329b4e769ba1a81c378856ad.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QcVvxsHSXMD8WxGDhSGvZL6f1bo=", "createTime": "2024-08-15 14:39:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.008435+00 2025-12-09 10:14:42.008439+00 3788 C23018#-S码-正身 SPMX-20240815298919 \N \N \N 1 \N [{"file_id": "2e9a3f82-d64b-4830-ad76-aec53a5dfa46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf31b0d457442059f2e261261fb32f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf31b0d457442059f2e261261fb32f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf31b0d457442059f2e261261fb32f1.jpg", "file_size": 18277, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-S码-正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf31b0d457442059f2e261261fb32f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf31b0d457442059f2e261261fb32f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf31b0d457442059f2e261261fb32f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf31b0d457442059f2e261261fb32f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf31b0d457442059f2e261261fb32f1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rd6kKbuIIvGA2SJIOM-t7hhNqMQ=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.009505+00 2025-12-09 10:14:42.009509+00 3789 DH1152714FWE#VS-D3 SPMX-20240815298914 \N \N \N 1 \N [{"file_id": "059420d7-e2c3-4fa0-8eee-640749b8868c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a248099a53fb4b279cad644238c72d14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a248099a53fb4b279cad644238c72d14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a248099a53fb4b279cad644238c72d14.jpg", "file_size": 18245, "is_delete": false, "file_type": 1, "original_file_name": "DH1152714FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a248099a53fb4b279cad644238c72d14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a248099a53fb4b279cad644238c72d14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a248099a53fb4b279cad644238c72d14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a248099a53fb4b279cad644238c72d14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a248099a53fb4b279cad644238c72d14.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXYZwfl7qiAzwzi86_65AcQknO4=", "createTime": "2024-08-15 14:39:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.010573+00 2025-12-09 10:14:42.010577+00 3790 HSH013# SPMX-20240815298926 \N \N \N 1 \N [{"file_id": "04c15705-eb6f-44d7-bb74-8399dde767e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4c129d49eba4a22bf669f8e0d60ad03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4c129d49eba4a22bf669f8e0d60ad03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4c129d49eba4a22bf669f8e0d60ad03.jpg", "file_size": 12366, "is_delete": false, "file_type": 1, "original_file_name": "HSH013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c129d49eba4a22bf669f8e0d60ad03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c129d49eba4a22bf669f8e0d60ad03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c129d49eba4a22bf669f8e0d60ad03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4c129d49eba4a22bf669f8e0d60ad03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4c129d49eba4a22bf669f8e0d60ad03.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZK8nZcNSJv_7tnHN6WqjzaNyaHM=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.011651+00 2025-12-09 10:14:42.011655+00 3791 JS029FWE#蓝色VS-D2 SPMX-20240815298923 \N \N \N 1 \N [{"file_id": "ec517782-ccd3-48a5-a0d6-2d8ac8a56ef7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecb5244de3774270bea004820a710425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecb5244de3774270bea004820a710425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecb5244de3774270bea004820a710425.jpg", "file_size": 12203, "is_delete": false, "file_type": 1, "original_file_name": "JS029FWE#蓝色VS-D2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb5244de3774270bea004820a710425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb5244de3774270bea004820a710425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb5244de3774270bea004820a710425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecb5244de3774270bea004820a710425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecb5244de3774270bea004820a710425.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVq7gczpXPIMnz-qml9tYNbmGBI=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.012754+00 2025-12-09 10:14:42.012758+00 3792 HSH012FWE#黑底红花 SPMX-20240815298916 \N \N \N 1 \N [{"file_id": "1a6fb378-a509-4441-a008-18820cc29dce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg", "file_size": 23585, "is_delete": false, "file_type": 1, "original_file_name": "HSH012FWE#黑底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/284c8b59cbcc4c2ba5af3e0452ff4ebf.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6ssoiUN_BZCN1pyV4bMerMHLRM=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.013843+00 2025-12-09 10:14:42.013847+00 3793 8004#长款上身枣红 SPMX-20240815298920 \N \N \N 1 \N [{"file_id": "135fa8e6-c393-4acb-a9b8-17cdf3479cf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a836c9859ea425d94e20fa18b3ff21b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a836c9859ea425d94e20fa18b3ff21b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a836c9859ea425d94e20fa18b3ff21b.jpg", "file_size": 17877, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a836c9859ea425d94e20fa18b3ff21b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a836c9859ea425d94e20fa18b3ff21b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a836c9859ea425d94e20fa18b3ff21b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a836c9859ea425d94e20fa18b3ff21b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a836c9859ea425d94e20fa18b3ff21b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLgxmRcanPd9udv0vXUosUPsqFM=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.014909+00 2025-12-09 10:14:42.014913+00 3794 22DS168FWF#黑底 SPMX-20240815298918 \N \N \N 1 \N [{"file_id": "326cafa0-f45e-4878-9086-713ea8f9ff19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "993bd133230446c4ac594fbea53b30bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "993bd133230446c4ac594fbea53b30bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "993bd133230446c4ac594fbea53b30bd.jpg", "file_size": 26048, "is_delete": false, "file_type": 1, "original_file_name": "22DS168FWF#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993bd133230446c4ac594fbea53b30bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993bd133230446c4ac594fbea53b30bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993bd133230446c4ac594fbea53b30bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/993bd133230446c4ac594fbea53b30bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/993bd133230446c4ac594fbea53b30bd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSXo0lVvUzeGan9Rw9OcBWdXAZc=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.015992+00 2025-12-09 10:14:42.015996+00 3795 JS029FWE#橙色VS-D3 SPMX-20240815298913 \N \N \N 1 \N [{"file_id": "26aea946-8a73-45ef-90bb-16bd4b511b0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78e5e32d4e7a478f9081809de702fab1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78e5e32d4e7a478f9081809de702fab1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78e5e32d4e7a478f9081809de702fab1.jpg", "file_size": 13367, "is_delete": false, "file_type": 1, "original_file_name": "JS029FWE#橙色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e5e32d4e7a478f9081809de702fab1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e5e32d4e7a478f9081809de702fab1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e5e32d4e7a478f9081809de702fab1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78e5e32d4e7a478f9081809de702fab1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78e5e32d4e7a478f9081809de702fab1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUdkTgBak7jMEKbHiTXwb2O_EvA=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.017313+00 2025-12-09 10:14:42.017317+00 3796 LHJ9151#2#白 SPMX-20240815298915 \N \N \N 1 \N [{"file_id": "d440d17d-242d-4206-b04d-3db09dfbbfda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fa47315958c4ef78ef1589cb3f06389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fa47315958c4ef78ef1589cb3f06389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fa47315958c4ef78ef1589cb3f06389.jpg", "file_size": 12714, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9151#2#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fa47315958c4ef78ef1589cb3f06389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fa47315958c4ef78ef1589cb3f06389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fa47315958c4ef78ef1589cb3f06389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fa47315958c4ef78ef1589cb3f06389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fa47315958c4ef78ef1589cb3f06389.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W87_0DZqPfbeqkCkUT_7VapmX2E=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.018398+00 2025-12-09 10:14:42.018402+00 3797 10414-8FWE#VS-D3 SPMX-20240815298917 \N \N \N 1 \N [{"file_id": "eea00a9a-bf4a-4507-b0fb-cdb4361c8ff2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9a901543b8145639932d6c46d578565.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9a901543b8145639932d6c46d578565.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9a901543b8145639932d6c46d578565.jpg", "file_size": 26160, "is_delete": false, "file_type": 1, "original_file_name": "10414-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a901543b8145639932d6c46d578565.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a901543b8145639932d6c46d578565.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a901543b8145639932d6c46d578565.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9a901543b8145639932d6c46d578565.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9a901543b8145639932d6c46d578565.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_oPuvSCF-J6aO4tVnXoxRITAIU=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.019454+00 2025-12-09 10:14:42.019457+00 3798 DH1152757FWE#VS-D3 SPMX-20240815298924 \N \N \N 1 \N [{"file_id": "fd5f370b-1cab-4f5c-8156-7dcd5e426cdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4374beb9979749a0b7e917f828ea0048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4374beb9979749a0b7e917f828ea0048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4374beb9979749a0b7e917f828ea0048.jpg", "file_size": 13315, "is_delete": false, "file_type": 1, "original_file_name": "DH1152757FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4374beb9979749a0b7e917f828ea0048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4374beb9979749a0b7e917f828ea0048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4374beb9979749a0b7e917f828ea0048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4374beb9979749a0b7e917f828ea0048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4374beb9979749a0b7e917f828ea0048.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVeIGPVAeuO4eXeFVvvwFVavCbY=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.02052+00 2025-12-09 10:14:42.020524+00 3799 0001-41FWF#V5曲线 SPMX-20240815298922 \N \N \N 1 \N [{"file_id": "eb1c6925-69c6-4004-918a-5eae3ae9aca6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42d1c6223ab7414c9e804d93203b4f77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42d1c6223ab7414c9e804d93203b4f77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42d1c6223ab7414c9e804d93203b4f77.jpg", "file_size": 13081, "is_delete": false, "file_type": 1, "original_file_name": "0001-41FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d1c6223ab7414c9e804d93203b4f77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d1c6223ab7414c9e804d93203b4f77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d1c6223ab7414c9e804d93203b4f77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42d1c6223ab7414c9e804d93203b4f77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42d1c6223ab7414c9e804d93203b4f77.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xXU9TZyQVWlfKd6_nueQvja24-g=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.021619+00 2025-12-09 10:14:42.021623+00 3800 10414-9FWE#VS-D3 SPMX-20240815298925 \N \N \N 1 \N [{"file_id": "ab60b101-6a99-476a-b37f-1ae3d924420c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70d4b8acbe0043499e265804306b8a06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70d4b8acbe0043499e265804306b8a06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70d4b8acbe0043499e265804306b8a06.jpg", "file_size": 23956, "is_delete": false, "file_type": 1, "original_file_name": "10414-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d4b8acbe0043499e265804306b8a06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d4b8acbe0043499e265804306b8a06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d4b8acbe0043499e265804306b8a06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70d4b8acbe0043499e265804306b8a06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70d4b8acbe0043499e265804306b8a06.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XSjc_u08HuEoFHxpJE6MFgQiXqA=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.022701+00 2025-12-09 10:14:42.022708+00 3801 LZ1191#上身不下领1号色 SPMX-20240815298921 \N \N \N 1 \N [{"file_id": "876cb0d3-0083-4a18-bdac-a12b222ab2cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "565a5dc141324dbaa56a2665112265f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "565a5dc141324dbaa56a2665112265f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "565a5dc141324dbaa56a2665112265f0.jpg", "file_size": 20879, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身不下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565a5dc141324dbaa56a2665112265f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565a5dc141324dbaa56a2665112265f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565a5dc141324dbaa56a2665112265f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/565a5dc141324dbaa56a2665112265f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/565a5dc141324dbaa56a2665112265f0.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnAw6V3yZ2XY2ZiXgKFjcywlX74=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.023772+00 2025-12-09 10:14:42.023776+00 3802 0001-42FWE#VS-D3 SPMX-20240815298932 \N \N \N 1 \N [{"file_id": "5aa59125-1178-4d62-b898-95b323226e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed0752c46a05436c968127eb9c3b91a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed0752c46a05436c968127eb9c3b91a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed0752c46a05436c968127eb9c3b91a1.jpg", "file_size": 6978, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0752c46a05436c968127eb9c3b91a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0752c46a05436c968127eb9c3b91a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0752c46a05436c968127eb9c3b91a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed0752c46a05436c968127eb9c3b91a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed0752c46a05436c968127eb9c3b91a1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swbnrJEN-GZg0KJcSaBOa68c0GE=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.024847+00 2025-12-09 10:14:42.024851+00 3803 HSH013#VS-D3 SPMX-20240815298936 \N \N \N 1 \N [{"file_id": "2ada63f7-96b6-4b06-9f28-066501cc5bae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76c9654723204f13885e7a92ee490b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76c9654723204f13885e7a92ee490b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76c9654723204f13885e7a92ee490b5b.jpg", "file_size": 26993, "is_delete": false, "file_type": 1, "original_file_name": "HSH013#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c9654723204f13885e7a92ee490b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c9654723204f13885e7a92ee490b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c9654723204f13885e7a92ee490b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76c9654723204f13885e7a92ee490b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76c9654723204f13885e7a92ee490b5b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wShnu35csyZUOI8wzzVwHabuxB4=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.02594+00 2025-12-09 10:14:42.025944+00 3804 23-2101#A10前后片3XL SPMX-20240815298938 \N \N \N 1 \N [{"file_id": "ab22628e-c6f2-455a-989d-9827b074d96e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a94d70b6e8374ed6a6bdd1d3da216bf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a94d70b6e8374ed6a6bdd1d3da216bf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a94d70b6e8374ed6a6bdd1d3da216bf2.jpg", "file_size": 10378, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A10前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94d70b6e8374ed6a6bdd1d3da216bf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94d70b6e8374ed6a6bdd1d3da216bf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94d70b6e8374ed6a6bdd1d3da216bf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a94d70b6e8374ed6a6bdd1d3da216bf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a94d70b6e8374ed6a6bdd1d3da216bf2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAon5jBcx4gtxoxzOmhWo4AFmms=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.027037+00 2025-12-09 10:14:42.027042+00 3805 FHPKDK两口袋-001-2 SPMX-20240815298928 \N \N \N 1 \N [{"file_id": "4c8c03db-42ba-4a6d-a3b9-60ef541f264c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba82b486c88e46b6a14d3b3613abcb9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba82b486c88e46b6a14d3b3613abcb9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba82b486c88e46b6a14d3b3613abcb9a.jpg", "file_size": 59520, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba82b486c88e46b6a14d3b3613abcb9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba82b486c88e46b6a14d3b3613abcb9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba82b486c88e46b6a14d3b3613abcb9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba82b486c88e46b6a14d3b3613abcb9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba82b486c88e46b6a14d3b3613abcb9a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUcBJrJugKKdgk8FaLkkjCxBFZI=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.028123+00 2025-12-09 10:14:42.028127+00 3806 1041FWF#-1 SPMX-20240815298940 \N \N \N 1 \N [{"file_id": "8a3b2fa7-b3af-47fc-b61d-2f5da2be4d78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "779717c42a994e1c8b1d0b8269565476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "779717c42a994e1c8b1d0b8269565476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "779717c42a994e1c8b1d0b8269565476.jpg", "file_size": 19428, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779717c42a994e1c8b1d0b8269565476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779717c42a994e1c8b1d0b8269565476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779717c42a994e1c8b1d0b8269565476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/779717c42a994e1c8b1d0b8269565476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/779717c42a994e1c8b1d0b8269565476.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eN-mNmM3TG8kfXyVHEHcPTQ4JFo=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.029199+00 2025-12-09 10:14:42.029203+00 3807 22TS242FWF#V5曲线 SPMX-20240815298929 \N \N \N 1 \N [{"file_id": "65bdcfff-4957-4834-86c5-007fffcfd0c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "437fc688adc644b7bc3f9e72f111ba1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "437fc688adc644b7bc3f9e72f111ba1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "437fc688adc644b7bc3f9e72f111ba1c.jpg", "file_size": 18495, "is_delete": false, "file_type": 1, "original_file_name": "22TS242FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437fc688adc644b7bc3f9e72f111ba1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437fc688adc644b7bc3f9e72f111ba1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437fc688adc644b7bc3f9e72f111ba1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/437fc688adc644b7bc3f9e72f111ba1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/437fc688adc644b7bc3f9e72f111ba1c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ovo5VUzoZKvIO22jBQfgK55bBk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.030429+00 2025-12-09 10:14:42.030434+00 3808 LZ1191#上身不下领2号色 SPMX-20240815298931 \N \N \N 1 \N [{"file_id": "13e1741b-443c-48ce-8901-0c3dc87ab207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "870009fb1e094d5d8c303f587086ddf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "870009fb1e094d5d8c303f587086ddf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "870009fb1e094d5d8c303f587086ddf4.jpg", "file_size": 18215, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身不下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870009fb1e094d5d8c303f587086ddf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870009fb1e094d5d8c303f587086ddf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870009fb1e094d5d8c303f587086ddf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/870009fb1e094d5d8c303f587086ddf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/870009fb1e094d5d8c303f587086ddf4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2Nk8pTavzumYI_4ruhg9mkrEg4=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.03158+00 2025-12-09 10:14:42.031584+00 3809 0001-42FWE#VS-D3番禺调色 SPMX-20240815298943 \N \N \N 1 \N [{"file_id": "5c122f0e-2448-4d90-b65a-ba2847559276", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a43ee63986264a67814b6e3df0b4b708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a43ee63986264a67814b6e3df0b4b708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a43ee63986264a67814b6e3df0b4b708.jpg", "file_size": 7757, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43ee63986264a67814b6e3df0b4b708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43ee63986264a67814b6e3df0b4b708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43ee63986264a67814b6e3df0b4b708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a43ee63986264a67814b6e3df0b4b708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a43ee63986264a67814b6e3df0b4b708.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqVxSOMcRys5jh380WBR7u0V9yw=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.03269+00 2025-12-09 10:14:42.032694+00 3810 C23018#-S码-领子+袖口+门禁 SPMX-20240815298930 \N \N \N 1 \N [{"file_id": "bd503853-e0be-4ce4-b2ab-0c58fc47b0d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac0b51bc1ba04d7f837d71873008fb72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac0b51bc1ba04d7f837d71873008fb72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac0b51bc1ba04d7f837d71873008fb72.jpg", "file_size": 23251, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-S码-领子+袖口+门禁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0b51bc1ba04d7f837d71873008fb72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0b51bc1ba04d7f837d71873008fb72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0b51bc1ba04d7f837d71873008fb72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac0b51bc1ba04d7f837d71873008fb72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac0b51bc1ba04d7f837d71873008fb72.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnQDKYPXwpj6XztzKTYW5ItbsrI=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.033798+00 2025-12-09 10:14:42.033802+00 3811 FHPKDK两口袋-001-3 SPMX-20240815298939 \N \N \N 1 \N [{"file_id": "f14353b9-39e3-4bac-be62-2a925a5f8e8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43ad003cbefa4e289064c12f5f74ba02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43ad003cbefa4e289064c12f5f74ba02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43ad003cbefa4e289064c12f5f74ba02.jpg", "file_size": 62346, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ad003cbefa4e289064c12f5f74ba02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ad003cbefa4e289064c12f5f74ba02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ad003cbefa4e289064c12f5f74ba02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43ad003cbefa4e289064c12f5f74ba02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43ad003cbefa4e289064c12f5f74ba02.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asJkhbGryzreUJU88_LyE9VxDyA=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.034907+00 2025-12-09 10:14:42.034911+00 3812 C23018#-XL码-正身 SPMX-20240815298941 \N \N \N 1 \N [{"file_id": "a75e5a97-86a3-4eb9-afcc-ac1b1a3753e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4088dff4f964a96b891456680993abc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4088dff4f964a96b891456680993abc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4088dff4f964a96b891456680993abc.jpg", "file_size": 16298, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-XL码-正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4088dff4f964a96b891456680993abc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4088dff4f964a96b891456680993abc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4088dff4f964a96b891456680993abc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4088dff4f964a96b891456680993abc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4088dff4f964a96b891456680993abc.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IXKQ7L_h9l3K9NosZ72SFUoocQ=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.035973+00 2025-12-09 10:14:42.035977+00 3813 DH1152873FWE#VS-D3 SPMX-20240815298935 \N \N \N 1 \N [{"file_id": "0033e727-8b98-486b-889b-5b20f6eefe9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d66f46390d64e2a8bcfb79917b24f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d66f46390d64e2a8bcfb79917b24f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d66f46390d64e2a8bcfb79917b24f74.jpg", "file_size": 11907, "is_delete": false, "file_type": 1, "original_file_name": "DH1152873FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d66f46390d64e2a8bcfb79917b24f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d66f46390d64e2a8bcfb79917b24f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d66f46390d64e2a8bcfb79917b24f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d66f46390d64e2a8bcfb79917b24f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d66f46390d64e2a8bcfb79917b24f74.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xD4sI-yEtE87psz44NXgZGaT8ek=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.037065+00 2025-12-09 10:14:42.037069+00 3814 LZ1191#上身不下领3号色 SPMX-20240815298942 \N \N \N 1 \N [{"file_id": "dd0061db-6006-4a4c-a7e1-ef58759819e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "614056d5b2504f098266d3c93e84580c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "614056d5b2504f098266d3c93e84580c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "614056d5b2504f098266d3c93e84580c.jpg", "file_size": 19338, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身不下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614056d5b2504f098266d3c93e84580c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614056d5b2504f098266d3c93e84580c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614056d5b2504f098266d3c93e84580c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/614056d5b2504f098266d3c93e84580c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/614056d5b2504f098266d3c93e84580c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzJbWoOy-db7nEmIAM4DMezqtgU=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.038144+00 2025-12-09 10:14:42.038149+00 3815 LHJ9161#白底彩点改 SPMX-20240815298937 \N \N \N 1 \N [{"file_id": "90cb6682-f1b0-4d4e-9f13-dc7f6f7426f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c256c0de6174adf84c0fc197eeda97c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c256c0de6174adf84c0fc197eeda97c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c256c0de6174adf84c0fc197eeda97c.jpg", "file_size": 19693, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9161#白底彩点改.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c256c0de6174adf84c0fc197eeda97c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c256c0de6174adf84c0fc197eeda97c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c256c0de6174adf84c0fc197eeda97c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c256c0de6174adf84c0fc197eeda97c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c256c0de6174adf84c0fc197eeda97c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L7Ukz9qpqUi3g86s-SkUe6q6C64=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.03924+00 2025-12-09 10:14:42.039244+00 3816 LHJ9158#38#粉色 SPMX-20240815298927 \N \N \N 1 \N [{"file_id": "0bc6679c-fac0-48fa-8194-ac8dd5a419d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79fc4c95c97d4d54bb97e489ea069d9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79fc4c95c97d4d54bb97e489ea069d9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79fc4c95c97d4d54bb97e489ea069d9e.jpg", "file_size": 7553, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9158#38#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fc4c95c97d4d54bb97e489ea069d9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fc4c95c97d4d54bb97e489ea069d9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fc4c95c97d4d54bb97e489ea069d9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79fc4c95c97d4d54bb97e489ea069d9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79fc4c95c97d4d54bb97e489ea069d9e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRfdjQHmDa_lkCogzLg4Ey4fsyk=", "createTime": "2024-08-15 14:39:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.040324+00 2025-12-09 10:14:42.040327+00 3817 JS029FWE#蓝色VS-D3 SPMX-20240815298933 \N \N \N 1 \N [{"file_id": "2ee181fa-a4e1-4f50-9bc2-733594a6fd28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0fb67853c9f4727af3741e7226a004e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0fb67853c9f4727af3741e7226a004e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0fb67853c9f4727af3741e7226a004e.jpg", "file_size": 12203, "is_delete": false, "file_type": 1, "original_file_name": "JS029FWE#蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb67853c9f4727af3741e7226a004e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb67853c9f4727af3741e7226a004e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb67853c9f4727af3741e7226a004e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0fb67853c9f4727af3741e7226a004e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0fb67853c9f4727af3741e7226a004e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gh2NXwt5WQAs9mFrKwUPcQhXoCo=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.04139+00 2025-12-09 10:14:42.041394+00 3818 8004#长款上身紫色 SPMX-20240815298934 \N \N \N 1 \N [{"file_id": "174132e1-515f-481c-b791-786447acbae9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8dc1030549a45aa9c6677ae50a0a484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8dc1030549a45aa9c6677ae50a0a484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8dc1030549a45aa9c6677ae50a0a484.jpg", "file_size": 17460, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8dc1030549a45aa9c6677ae50a0a484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8dc1030549a45aa9c6677ae50a0a484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8dc1030549a45aa9c6677ae50a0a484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8dc1030549a45aa9c6677ae50a0a484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8dc1030549a45aa9c6677ae50a0a484.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y22LF_5SuhzdGGEiD3hPlDbh_bw=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.042466+00 2025-12-09 10:14:42.04247+00 3819 HSH013FW#VS-D3 SPMX-20240815298946 \N \N \N 1 \N [{"file_id": "10868f14-1140-436f-a9f6-f2a7c08ece7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95e144555c3040909fca40fa965974d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95e144555c3040909fca40fa965974d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95e144555c3040909fca40fa965974d9.jpg", "file_size": 14667, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e144555c3040909fca40fa965974d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e144555c3040909fca40fa965974d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e144555c3040909fca40fa965974d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95e144555c3040909fca40fa965974d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95e144555c3040909fca40fa965974d9.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u31H49X8lt1cB5--Z44F9Kgr5YI=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.04358+00 2025-12-09 10:14:42.043584+00 3820 8004#长款上身黄绿 SPMX-20240815298945 \N \N \N 1 \N [{"file_id": "0c17c712-74a2-4d23-a452-4923fc311490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "644d1ea84fc649068756beb37864de38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "644d1ea84fc649068756beb37864de38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "644d1ea84fc649068756beb37864de38.jpg", "file_size": 17004, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644d1ea84fc649068756beb37864de38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644d1ea84fc649068756beb37864de38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644d1ea84fc649068756beb37864de38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/644d1ea84fc649068756beb37864de38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/644d1ea84fc649068756beb37864de38.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxKGbTefA55SCNJSjzs0oJCe8ak=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.044661+00 2025-12-09 10:14:42.044665+00 3821 HSH013FWE#白底VS-D3 SPMX-20240815298956 \N \N \N 1 \N [{"file_id": "4bd3bc4c-ccef-45ca-9f56-820fb9e78626", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0442edc00014df2b3d85b2a0168858f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0442edc00014df2b3d85b2a0168858f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0442edc00014df2b3d85b2a0168858f.jpg", "file_size": 29832, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0442edc00014df2b3d85b2a0168858f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0442edc00014df2b3d85b2a0168858f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0442edc00014df2b3d85b2a0168858f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0442edc00014df2b3d85b2a0168858f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0442edc00014df2b3d85b2a0168858f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-zw16YEwk86gAp4BfHzQDyYiLIs=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.045827+00 2025-12-09 10:14:42.045831+00 3822 LHJ9168#1#黑白 SPMX-20240815298948 \N \N \N 1 \N [{"file_id": "a0a3ec75-7dc8-4180-b0d1-770b718fecf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d0ca7bccacb453e89960cd74ccc30c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d0ca7bccacb453e89960cd74ccc30c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d0ca7bccacb453e89960cd74ccc30c8.jpg", "file_size": 16706, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#1#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0ca7bccacb453e89960cd74ccc30c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0ca7bccacb453e89960cd74ccc30c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0ca7bccacb453e89960cd74ccc30c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d0ca7bccacb453e89960cd74ccc30c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d0ca7bccacb453e89960cd74ccc30c8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGsSKM-G8T316srOgDRb7qdCG_Q=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.046915+00 2025-12-09 10:14:42.046919+00 3823 LHJ9168#135#绿色前片 SPMX-20240815298957 \N \N \N 1 \N [{"file_id": "07248f54-4fad-441d-b08e-915b3a348da2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bcda985abe541eb8ecab52b565dc919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bcda985abe541eb8ecab52b565dc919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bcda985abe541eb8ecab52b565dc919.jpg", "file_size": 15469, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#135#绿色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcda985abe541eb8ecab52b565dc919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcda985abe541eb8ecab52b565dc919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcda985abe541eb8ecab52b565dc919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bcda985abe541eb8ecab52b565dc919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bcda985abe541eb8ecab52b565dc919.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cc3mws_lckKCQqiLeBLCHF4PpLc=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.048021+00 2025-12-09 10:14:42.048026+00 3824 LZ1191#上身不下领4号色 SPMX-20240815298952 \N \N \N 1 \N [{"file_id": "4f2c7b1a-0235-4722-bfa4-f9319d71147a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a3ab880514240638f19a3ebab782467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a3ab880514240638f19a3ebab782467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a3ab880514240638f19a3ebab782467.jpg", "file_size": 20526, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#上身不下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3ab880514240638f19a3ebab782467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3ab880514240638f19a3ebab782467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3ab880514240638f19a3ebab782467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a3ab880514240638f19a3ebab782467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a3ab880514240638f19a3ebab782467.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIICSpuPD5_YoPFYGIJrL68WqjE=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.049103+00 2025-12-09 10:14:42.049107+00 3825 JS030FWE#红VS-D3 SPMX-20240815298953 \N \N \N 1 \N [{"file_id": "cb6ca52a-619c-428a-93c4-8ab0609b04bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e499bf579bb48ec8bc84fa08ea3a9f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e499bf579bb48ec8bc84fa08ea3a9f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e499bf579bb48ec8bc84fa08ea3a9f3.jpg", "file_size": 19802, "is_delete": false, "file_type": 1, "original_file_name": "JS030FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e499bf579bb48ec8bc84fa08ea3a9f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e499bf579bb48ec8bc84fa08ea3a9f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e499bf579bb48ec8bc84fa08ea3a9f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e499bf579bb48ec8bc84fa08ea3a9f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e499bf579bb48ec8bc84fa08ea3a9f3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kj_eLF2-fGcwV48BIDqNTmfe_0=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.050189+00 2025-12-09 10:14:42.050193+00 3826 JS029FWE SPMX-20240815298944 \N \N \N 1 \N [{"file_id": "89965941-6c51-4e1c-a5bc-ce65ebc90d53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1542821c8a84952bae9ace46ca9886b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1542821c8a84952bae9ace46ca9886b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1542821c8a84952bae9ace46ca9886b.jpg", "file_size": 12203, "is_delete": false, "file_type": 1, "original_file_name": "JS029FWE.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1542821c8a84952bae9ace46ca9886b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1542821c8a84952bae9ace46ca9886b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1542821c8a84952bae9ace46ca9886b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1542821c8a84952bae9ace46ca9886b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1542821c8a84952bae9ace46ca9886b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYuNg0OF9Va48WNTh1Qs7nsQonk=", "createTime": "2024-08-15 14:39:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.051267+00 2025-12-09 10:14:42.051271+00 3827 FHPKDK两口袋-002-1 SPMX-20240815298954 \N \N \N 1 \N [{"file_id": "efeb8637-c8ac-41ac-95e2-8f06e0f7b754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba4dd28cee7444d5b39eb1f1976d53ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba4dd28cee7444d5b39eb1f1976d53ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba4dd28cee7444d5b39eb1f1976d53ae.jpg", "file_size": 62426, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4dd28cee7444d5b39eb1f1976d53ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4dd28cee7444d5b39eb1f1976d53ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4dd28cee7444d5b39eb1f1976d53ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba4dd28cee7444d5b39eb1f1976d53ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba4dd28cee7444d5b39eb1f1976d53ae.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7wZuKqxiOj2WBsHmqSe8sqTCjE=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.052372+00 2025-12-09 10:14:42.052376+00 3828 DH1152873FWE#净色VS-D3 SPMX-20240815298947 \N \N \N 1 \N [{"file_id": "8789cab3-c4d6-4246-9c27-3e280ef47641", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "189c965289c540138bdac194cd1f4bec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "189c965289c540138bdac194cd1f4bec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "189c965289c540138bdac194cd1f4bec.jpg", "file_size": 7027, "is_delete": false, "file_type": 1, "original_file_name": "DH1152873FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189c965289c540138bdac194cd1f4bec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189c965289c540138bdac194cd1f4bec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189c965289c540138bdac194cd1f4bec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/189c965289c540138bdac194cd1f4bec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/189c965289c540138bdac194cd1f4bec.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdKqlWwI2B4-ZaOtpHukDVQkTGM=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.053442+00 2025-12-09 10:14:42.053445+00 3829 1041FWF#-1净色 SPMX-20240815298950 \N \N \N 1 \N [{"file_id": "088f2607-50c5-4177-b7f7-8e5ba2d523b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96df5a22e1d04f86a301570ae3ddf3c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96df5a22e1d04f86a301570ae3ddf3c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96df5a22e1d04f86a301570ae3ddf3c8.jpg", "file_size": 5784, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-1净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96df5a22e1d04f86a301570ae3ddf3c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96df5a22e1d04f86a301570ae3ddf3c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96df5a22e1d04f86a301570ae3ddf3c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96df5a22e1d04f86a301570ae3ddf3c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96df5a22e1d04f86a301570ae3ddf3c8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXNBzeT5PJojMlvvt9mZ3f6qeT0=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.054539+00 2025-12-09 10:14:42.054543+00 3830 0001-42FWF#白底红花 SPMX-20240815298958 \N \N \N 1 \N [{"file_id": "a70b4362-6c8e-4540-9d96-56399e1a3bab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8c824b44fa49518a55ad21ab6bec39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8c824b44fa49518a55ad21ab6bec39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8c824b44fa49518a55ad21ab6bec39.jpg", "file_size": 21258, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWF#白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8c824b44fa49518a55ad21ab6bec39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8c824b44fa49518a55ad21ab6bec39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8c824b44fa49518a55ad21ab6bec39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8c824b44fa49518a55ad21ab6bec39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8c824b44fa49518a55ad21ab6bec39.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFjoNrjchC5znwdyJ4YlegkkzdM=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.055607+00 2025-12-09 10:14:42.055611+00 3831 23-2101#A10前后片4XL SPMX-20240815298949 \N \N \N 1 \N [{"file_id": "948a892d-fe10-4b8f-97c5-78f678cce6c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e9d288f4634aa8893037a987ce35b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e9d288f4634aa8893037a987ce35b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e9d288f4634aa8893037a987ce35b1.jpg", "file_size": 11502, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A10前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9d288f4634aa8893037a987ce35b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9d288f4634aa8893037a987ce35b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9d288f4634aa8893037a987ce35b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e9d288f4634aa8893037a987ce35b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e9d288f4634aa8893037a987ce35b1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jR413TZoc04sZS0ZHxi6PYU4Wg=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.056698+00 2025-12-09 10:14:42.056702+00 3832 C23018#-XL码-领子+袖口+门禁 SPMX-20240815298951 \N \N \N 1 \N [{"file_id": "0fe4d552-926d-4e32-ab08-a2c562d44696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d313d8d5e98542d491a7b4de2b9e0152.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d313d8d5e98542d491a7b4de2b9e0152.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d313d8d5e98542d491a7b4de2b9e0152.jpg", "file_size": 24108, "is_delete": false, "file_type": 1, "original_file_name": "C23018#-XL码-领子+袖口+门禁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313d8d5e98542d491a7b4de2b9e0152.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313d8d5e98542d491a7b4de2b9e0152.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313d8d5e98542d491a7b4de2b9e0152.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d313d8d5e98542d491a7b4de2b9e0152.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d313d8d5e98542d491a7b4de2b9e0152.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3VXkEXnI1diny8vb5xdkVua7sM=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.057868+00 2025-12-09 10:14:42.057873+00 3833 8004#长款上身黑色 SPMX-20240815298955 \N \N \N 1 \N [{"file_id": "e8123a90-840e-4947-bc0b-ebc29fdb5a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f49db984f755481f83babafeace1a6df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f49db984f755481f83babafeace1a6df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f49db984f755481f83babafeace1a6df.jpg", "file_size": 18451, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款上身黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49db984f755481f83babafeace1a6df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49db984f755481f83babafeace1a6df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49db984f755481f83babafeace1a6df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f49db984f755481f83babafeace1a6df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f49db984f755481f83babafeace1a6df.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yoaBSUV6YfFJ2Sg-x8dKab2OUmA=", "createTime": "2024-08-15 14:39:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.05901+00 2025-12-09 10:14:42.059014+00 3834 1041FWF#-2 SPMX-20240815298961 \N \N \N 1 \N [{"file_id": "f5b1fb3f-5ed4-4b28-a43f-a0e20e46d684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "763219a5e81d4961aa0f5bfe49d3f436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "763219a5e81d4961aa0f5bfe49d3f436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "763219a5e81d4961aa0f5bfe49d3f436.jpg", "file_size": 21169, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763219a5e81d4961aa0f5bfe49d3f436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763219a5e81d4961aa0f5bfe49d3f436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763219a5e81d4961aa0f5bfe49d3f436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/763219a5e81d4961aa0f5bfe49d3f436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/763219a5e81d4961aa0f5bfe49d3f436.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bX7-eaCQLcnU06Vqlg3V7-sr9Qk=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.060123+00 2025-12-09 10:14:42.060128+00 3835 LZ1191#下身1号色 SPMX-20240815298963 \N \N \N 1 \N [{"file_id": "77251719-c36a-41a4-855d-7cf7f6e9e146", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ad0dccd5862414f9b50c622b96fc4c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ad0dccd5862414f9b50c622b96fc4c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ad0dccd5862414f9b50c622b96fc4c1.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0dccd5862414f9b50c622b96fc4c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0dccd5862414f9b50c622b96fc4c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad0dccd5862414f9b50c622b96fc4c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ad0dccd5862414f9b50c622b96fc4c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ad0dccd5862414f9b50c622b96fc4c1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dwk9-Qv_yZkjZF0NZz0tAMSWNQg=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.061224+00 2025-12-09 10:14:42.061229+00 3836 JS030FWE#绿VS-D3 SPMX-20240815298964 \N \N \N 1 \N [{"file_id": "2f7e75a4-ec0b-4a75-8ec4-ffff3b8748e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30b492c64c3b4d4898d1b912b734e3b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30b492c64c3b4d4898d1b912b734e3b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30b492c64c3b4d4898d1b912b734e3b4.jpg", "file_size": 18913, "is_delete": false, "file_type": 1, "original_file_name": "JS030FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b492c64c3b4d4898d1b912b734e3b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b492c64c3b4d4898d1b912b734e3b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b492c64c3b4d4898d1b912b734e3b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30b492c64c3b4d4898d1b912b734e3b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30b492c64c3b4d4898d1b912b734e3b4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eo8Sbe9DP-qax1rzIeAFyoKLc5g=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.0626+00 2025-12-09 10:14:42.062604+00 3837 1041FWF#-3 SPMX-20240815298972 \N \N \N 1 \N [{"file_id": "9d2c48a1-af14-4581-b91e-b0b1863df334", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f167e5b9d064e3da1f358c028c9ef21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f167e5b9d064e3da1f358c028c9ef21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f167e5b9d064e3da1f358c028c9ef21.jpg", "file_size": 21779, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f167e5b9d064e3da1f358c028c9ef21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f167e5b9d064e3da1f358c028c9ef21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f167e5b9d064e3da1f358c028c9ef21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f167e5b9d064e3da1f358c028c9ef21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f167e5b9d064e3da1f358c028c9ef21.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ur2zmHXIKP3O5gPLp2XqksGpkP8=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.063678+00 2025-12-09 10:14:42.063682+00 3838 LHJ9168#135#绿色后片+裤 SPMX-20240815298966 \N \N \N 1 \N [{"file_id": "ef4c0e7f-a187-40d6-85e1-56487ea6a7aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66fa6c2d1bd045f29f78f4786582511e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66fa6c2d1bd045f29f78f4786582511e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66fa6c2d1bd045f29f78f4786582511e.jpg", "file_size": 15189, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#135#绿色后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fa6c2d1bd045f29f78f4786582511e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fa6c2d1bd045f29f78f4786582511e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fa6c2d1bd045f29f78f4786582511e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66fa6c2d1bd045f29f78f4786582511e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66fa6c2d1bd045f29f78f4786582511e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGGWWhqUCzp1uzFkUFl6_6b405c=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.064764+00 2025-12-09 10:14:42.064768+00 3839 23-2101#A10袖子4XL SPMX-20240815298970 \N \N \N 1 \N [{"file_id": "96595e90-89a6-4217-a3d4-a992c61a9ec7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "966c2e6b38ee492fb910993a829ac806.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "966c2e6b38ee492fb910993a829ac806.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "966c2e6b38ee492fb910993a829ac806.jpg", "file_size": 7533, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A10袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966c2e6b38ee492fb910993a829ac806.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966c2e6b38ee492fb910993a829ac806.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966c2e6b38ee492fb910993a829ac806.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/966c2e6b38ee492fb910993a829ac806.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/966c2e6b38ee492fb910993a829ac806.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cVXkPvlhbv3Fl1WFeryeEvH2Sg=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.065908+00 2025-12-09 10:14:42.065913+00 3840 FHPKDK两口袋-002-2 SPMX-20240815298967 \N \N \N 1 \N [{"file_id": "45afa73b-83b3-4417-a50d-7bdb36c00449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccf0c89e837c48dd9a225c241ba482df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccf0c89e837c48dd9a225c241ba482df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccf0c89e837c48dd9a225c241ba482df.jpg", "file_size": 60783, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf0c89e837c48dd9a225c241ba482df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf0c89e837c48dd9a225c241ba482df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf0c89e837c48dd9a225c241ba482df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccf0c89e837c48dd9a225c241ba482df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccf0c89e837c48dd9a225c241ba482df.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plmYRJyRuzatRSPoYv_gxP0on1I=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.067155+00 2025-12-09 10:14:42.06716+00 3841 8004#长款下身土黄 SPMX-20240815298965 \N \N \N 1 \N [{"file_id": "3dd2903f-8708-48ba-b6f9-dc26b54ae9c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d68dce64092e4f61a2e48f901e11cd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d68dce64092e4f61a2e48f901e11cd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d68dce64092e4f61a2e48f901e11cd38.jpg", "file_size": 18507, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68dce64092e4f61a2e48f901e11cd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68dce64092e4f61a2e48f901e11cd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68dce64092e4f61a2e48f901e11cd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d68dce64092e4f61a2e48f901e11cd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d68dce64092e4f61a2e48f901e11cd38.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSDWgOmxC1YQaZrdBZSJKLUjru0=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.068374+00 2025-12-09 10:14:42.068379+00 3842 0001-42FWF#红底白花 SPMX-20240815298969 \N \N \N 1 \N [{"file_id": "cfdbc538-4509-4803-8596-c3959cf40957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44090d8ea120409d869b284032cc3d6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44090d8ea120409d869b284032cc3d6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44090d8ea120409d869b284032cc3d6e.jpg", "file_size": 19444, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWF#红底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44090d8ea120409d869b284032cc3d6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44090d8ea120409d869b284032cc3d6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44090d8ea120409d869b284032cc3d6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44090d8ea120409d869b284032cc3d6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44090d8ea120409d869b284032cc3d6e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGnoHudCL5ony8B1hXsMPGRzwdI=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.069511+00 2025-12-09 10:14:42.069515+00 3843 HSH013FWE#粉色VS-D3 SPMX-20240815298968 \N \N \N 1 \N [{"file_id": "334f6c88-13fa-48de-bca9-4c8f5825e3fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "531a03edb6ed4817b9addab2c60094fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "531a03edb6ed4817b9addab2c60094fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "531a03edb6ed4817b9addab2c60094fc.jpg", "file_size": 17921, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a03edb6ed4817b9addab2c60094fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a03edb6ed4817b9addab2c60094fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a03edb6ed4817b9addab2c60094fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/531a03edb6ed4817b9addab2c60094fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/531a03edb6ed4817b9addab2c60094fc.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FTIl4sa9sVp3yw-IxCWZiQ7_6yU=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.070957+00 2025-12-09 10:14:42.070961+00 3844 DH1154017FWE#VS-D3 SPMX-20240815298960 \N \N \N 1 \N [{"file_id": "b2662ac3-49c0-4e8c-8967-50f52c8f2008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28ee4c3e8ebc4d98a365e65c20dad75e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28ee4c3e8ebc4d98a365e65c20dad75e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28ee4c3e8ebc4d98a365e65c20dad75e.jpg", "file_size": 24727, "is_delete": false, "file_type": 1, "original_file_name": "DH1154017FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28ee4c3e8ebc4d98a365e65c20dad75e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28ee4c3e8ebc4d98a365e65c20dad75e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28ee4c3e8ebc4d98a365e65c20dad75e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28ee4c3e8ebc4d98a365e65c20dad75e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28ee4c3e8ebc4d98a365e65c20dad75e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Xhzy3QXSIQ0fG6rB5JZ0d8-KJ8=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.072098+00 2025-12-09 10:14:42.072102+00 3845 C23023#前片补片L码 SPMX-20240815298962 \N \N \N 1 \N [{"file_id": "6d1b1e1f-faf9-4f12-86d0-bc0ad712f677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c250376e68648d4bb509b6265f96aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c250376e68648d4bb509b6265f96aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c250376e68648d4bb509b6265f96aa4.jpg", "file_size": 29862, "is_delete": false, "file_type": 1, "original_file_name": "C23023#前片补片L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c250376e68648d4bb509b6265f96aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c250376e68648d4bb509b6265f96aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c250376e68648d4bb509b6265f96aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c250376e68648d4bb509b6265f96aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c250376e68648d4bb509b6265f96aa4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDsbyUPVi_S-8M5r6CBc_EMl8Cg=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.073209+00 2025-12-09 10:14:42.073213+00 3846 DH1154017FWE#净色VS-D3 SPMX-20240815298971 \N \N \N 1 \N [{"file_id": "b02c4010-c48b-41c4-b3a7-67c846dc4af9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13737f97da86410a89d5b99e961e52b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13737f97da86410a89d5b99e961e52b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13737f97da86410a89d5b99e961e52b3.jpg", "file_size": 7397, "is_delete": false, "file_type": 1, "original_file_name": "DH1154017FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13737f97da86410a89d5b99e961e52b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13737f97da86410a89d5b99e961e52b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13737f97da86410a89d5b99e961e52b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13737f97da86410a89d5b99e961e52b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13737f97da86410a89d5b99e961e52b3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVzDuzecN7oyrvw1ejPQQ0da64U=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.074297+00 2025-12-09 10:14:42.074301+00 3847 23-2101#A10袖子3XL SPMX-20240815298959 \N \N \N 1 \N [{"file_id": "24a52fbd-e3b2-4aed-83a6-56b97d526f5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0a8643f74f849599fd4289738db8ac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0a8643f74f849599fd4289738db8ac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0a8643f74f849599fd4289738db8ac8.jpg", "file_size": 7683, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A10袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a8643f74f849599fd4289738db8ac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a8643f74f849599fd4289738db8ac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a8643f74f849599fd4289738db8ac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0a8643f74f849599fd4289738db8ac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0a8643f74f849599fd4289738db8ac8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUI0iTuXMZHZ6G7mOhxA0K4rEOM=", "createTime": "2024-08-15 14:39:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.075389+00 2025-12-09 10:14:42.075393+00 3848 DH1154239FWE#VS-D3 SPMX-20240815298978 \N \N \N 1 \N [{"file_id": "ac3b6edb-4499-44c0-83bd-80db87362fc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg", "file_size": 11199, "is_delete": false, "file_type": 1, "original_file_name": "DH1154239FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aa9e33c6fdf4e65b590b0ac855f1c0b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDQNH0ozIKFyh_eGjy4qwxoB0uc=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.07649+00 2025-12-09 10:14:42.076494+00 3849 C23023#粉色L码 SPMX-20240815298973 \N \N \N 1 \N [{"file_id": "a90ab315-2440-4338-94c8-0cd61b77c74a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa6a8b47c98441e4b1f75a8a9a5b1796.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa6a8b47c98441e4b1f75a8a9a5b1796.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa6a8b47c98441e4b1f75a8a9a5b1796.jpg", "file_size": 16850, "is_delete": false, "file_type": 1, "original_file_name": "C23023#粉色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6a8b47c98441e4b1f75a8a9a5b1796.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6a8b47c98441e4b1f75a8a9a5b1796.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6a8b47c98441e4b1f75a8a9a5b1796.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa6a8b47c98441e4b1f75a8a9a5b1796.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa6a8b47c98441e4b1f75a8a9a5b1796.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7KeBHgeNL3hDkLFEca1ePvdI8o=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.077558+00 2025-12-09 10:14:42.077562+00 3850 C23023#粉色M码 SPMX-20240815298984 \N \N \N 1 \N [{"file_id": "ef7fd3ee-3a56-4902-8174-f5a9cc4d74e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bfd18aad4ab4f02a8e1c781e693bc03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bfd18aad4ab4f02a8e1c781e693bc03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bfd18aad4ab4f02a8e1c781e693bc03.jpg", "file_size": 16792, "is_delete": false, "file_type": 1, "original_file_name": "C23023#粉色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd18aad4ab4f02a8e1c781e693bc03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd18aad4ab4f02a8e1c781e693bc03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd18aad4ab4f02a8e1c781e693bc03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bfd18aad4ab4f02a8e1c781e693bc03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bfd18aad4ab4f02a8e1c781e693bc03.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZEKEexv-Cd7lcQmmQMGPK-Mv8w=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.078653+00 2025-12-09 10:14:42.078657+00 3851 LHJ9168#32#墨绿 SPMX-20240815298975 \N \N \N 1 \N [{"file_id": "25394734-1197-4d46-a514-b51a45acf00b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c36bbc100354c3ea0fbcf5cbefaa584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c36bbc100354c3ea0fbcf5cbefaa584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c36bbc100354c3ea0fbcf5cbefaa584.jpg", "file_size": 17032, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c36bbc100354c3ea0fbcf5cbefaa584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c36bbc100354c3ea0fbcf5cbefaa584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c36bbc100354c3ea0fbcf5cbefaa584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c36bbc100354c3ea0fbcf5cbefaa584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c36bbc100354c3ea0fbcf5cbefaa584.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tE4eXk1mIwR5EAS1Kz3yzdgZjUM=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.079749+00 2025-12-09 10:14:42.079754+00 3852 8004#长款下身墨绿 SPMX-20240815298981 \N \N \N 1 \N [{"file_id": "0b3344fe-d9ad-4720-8396-046008d384c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b753504010f4490fb14ab21d8622e7b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b753504010f4490fb14ab21d8622e7b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b753504010f4490fb14ab21d8622e7b3.jpg", "file_size": 19527, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b753504010f4490fb14ab21d8622e7b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b753504010f4490fb14ab21d8622e7b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b753504010f4490fb14ab21d8622e7b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b753504010f4490fb14ab21d8622e7b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b753504010f4490fb14ab21d8622e7b3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOvU5NuDFptosc97gq8tUpQ7BCE=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.080851+00 2025-12-09 10:14:42.080855+00 3853 LZ1191#下身3号色 SPMX-20240815298983 \N \N \N 1 \N [{"file_id": "640a3aed-a320-4e63-95eb-57ead6de4ce1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg", "file_size": 18578, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb6dc70e1f344ac97eb9cc6b2c9dda7.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mZYhOzMLxp_pTvm5Eru4m4-bv6U=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.081937+00 2025-12-09 10:14:42.081941+00 3854 0001-42FWF#蓝底白花 SPMX-20240815298979 \N \N \N 1 \N [{"file_id": "ce0e5191-2d43-4b58-8e3c-4451eb94ad3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2c3aeb451cf479890317a783a4ce795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2c3aeb451cf479890317a783a4ce795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2c3aeb451cf479890317a783a4ce795.jpg", "file_size": 17609, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWF#蓝底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c3aeb451cf479890317a783a4ce795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c3aeb451cf479890317a783a4ce795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c3aeb451cf479890317a783a4ce795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2c3aeb451cf479890317a783a4ce795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2c3aeb451cf479890317a783a4ce795.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bs0dJxaEpfHyVLGQw4GqzkSifhE=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.083037+00 2025-12-09 10:14:42.083041+00 3855 1041FWF#-3净色 SPMX-20240815298986 \N \N \N 1 \N [{"file_id": "b9b6d86a-c7fc-422b-babd-86a6f5e9aa04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "307b29addd4b47bd89876b76cb7a4936.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "307b29addd4b47bd89876b76cb7a4936.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "307b29addd4b47bd89876b76cb7a4936.jpg", "file_size": 7879, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-3净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307b29addd4b47bd89876b76cb7a4936.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307b29addd4b47bd89876b76cb7a4936.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307b29addd4b47bd89876b76cb7a4936.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/307b29addd4b47bd89876b76cb7a4936.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/307b29addd4b47bd89876b76cb7a4936.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qxB997tG3puPMzD9EApG9nnVCg=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.084132+00 2025-12-09 10:14:42.084136+00 3856 FHPKDK两口袋-002-3 SPMX-20240815298977 \N \N \N 1 \N [{"file_id": "daae70ce-6545-4aee-952c-b57f7973d267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9a73f8b3904488bbf0e531b0b8a5ea1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9a73f8b3904488bbf0e531b0b8a5ea1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9a73f8b3904488bbf0e531b0b8a5ea1.jpg", "file_size": 63748, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a73f8b3904488bbf0e531b0b8a5ea1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a73f8b3904488bbf0e531b0b8a5ea1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a73f8b3904488bbf0e531b0b8a5ea1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9a73f8b3904488bbf0e531b0b8a5ea1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9a73f8b3904488bbf0e531b0b8a5ea1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BnUMQtahqK202fahJ70y2v_jpa0=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.085225+00 2025-12-09 10:14:42.085229+00 3857 JS031FWE#VS-D3 SPMX-20240815298980 \N \N \N 1 \N [{"file_id": "1dc86a9d-d88f-476f-9c60-5f57e810b232", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0092fdf28354d75b97e731bbbf278fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0092fdf28354d75b97e731bbbf278fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0092fdf28354d75b97e731bbbf278fb.jpg", "file_size": 18258, "is_delete": false, "file_type": 1, "original_file_name": "JS031FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0092fdf28354d75b97e731bbbf278fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0092fdf28354d75b97e731bbbf278fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0092fdf28354d75b97e731bbbf278fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0092fdf28354d75b97e731bbbf278fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0092fdf28354d75b97e731bbbf278fb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDs7vM31KoGeH_b7yTGG6HIKBlc=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.08629+00 2025-12-09 10:14:42.086294+00 3858 LZ1191#下身2号色 SPMX-20240815298974 \N \N \N 1 \N [{"file_id": "d13fb000-fa73-4d74-9832-df84503902bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a50220de774b1e8310847cb712ca2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a50220de774b1e8310847cb712ca2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a50220de774b1e8310847cb712ca2d.jpg", "file_size": 17143, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a50220de774b1e8310847cb712ca2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a50220de774b1e8310847cb712ca2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a50220de774b1e8310847cb712ca2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a50220de774b1e8310847cb712ca2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a50220de774b1e8310847cb712ca2d.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qx6tT1Xd5JwJVuZPyTpmYdcPM0=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.087434+00 2025-12-09 10:14:42.087438+00 3859 HSH013FWE#红底VS-D3 SPMX-20240815298976 \N \N \N 1 \N [{"file_id": "8b0b2966-4945-4a88-9c39-59d98de8a69d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28f1711a816f4a799dffac66159f2f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28f1711a816f4a799dffac66159f2f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28f1711a816f4a799dffac66159f2f8e.jpg", "file_size": 23785, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f1711a816f4a799dffac66159f2f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f1711a816f4a799dffac66159f2f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f1711a816f4a799dffac66159f2f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28f1711a816f4a799dffac66159f2f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28f1711a816f4a799dffac66159f2f8e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fgKpbGUlhZuG0YaDCHIlv6153w=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.08855+00 2025-12-09 10:14:42.088555+00 3860 23-2101#A10领子通用 SPMX-20240815298982 \N \N \N 1 \N [{"file_id": "346a1444-650d-4708-8915-d771b39a1362", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "224e127a55704d18a1b147efda8d0d8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "224e127a55704d18a1b147efda8d0d8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "224e127a55704d18a1b147efda8d0d8e.jpg", "file_size": 8326, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A10领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224e127a55704d18a1b147efda8d0d8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224e127a55704d18a1b147efda8d0d8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224e127a55704d18a1b147efda8d0d8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/224e127a55704d18a1b147efda8d0d8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/224e127a55704d18a1b147efda8d0d8e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8F6OXWStZCo5l0nVvZYJrdDPlM=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.089656+00 2025-12-09 10:14:42.08966+00 3861 LHJ9168#5#彩兰 SPMX-20240815298985 \N \N \N 1 \N [{"file_id": "d444553b-7016-4c66-a50b-b143aaa08f5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab1966064924ce3a360327f4286c526.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab1966064924ce3a360327f4286c526.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab1966064924ce3a360327f4286c526.jpg", "file_size": 16347, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1966064924ce3a360327f4286c526.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1966064924ce3a360327f4286c526.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1966064924ce3a360327f4286c526.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab1966064924ce3a360327f4286c526.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab1966064924ce3a360327f4286c526.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEQ5Rb7nxFl6LVgGY7mZAqKNhnE=", "createTime": "2024-08-15 14:39:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.090736+00 2025-12-09 10:14:42.09074+00 3862 FHPKDK两口袋-003-1 SPMX-20240815298988 \N \N \N 1 \N [{"file_id": "fad2b8db-4c7e-4b6b-86b0-7925cf4f6014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41b4a76ddeca4dfc9117363ea96867bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41b4a76ddeca4dfc9117363ea96867bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41b4a76ddeca4dfc9117363ea96867bc.jpg", "file_size": 58916, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b4a76ddeca4dfc9117363ea96867bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b4a76ddeca4dfc9117363ea96867bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b4a76ddeca4dfc9117363ea96867bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41b4a76ddeca4dfc9117363ea96867bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41b4a76ddeca4dfc9117363ea96867bc.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eMEbNir-0PtSAHh67z3jN7Yl3I=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.091857+00 2025-12-09 10:14:42.091861+00 3863 0001-42FWF#黄底白花 SPMX-20240815298990 \N \N \N 1 \N [{"file_id": "11e8b44e-bd6a-4d92-8a08-89949bb61879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd718871717846af9580e09fd1411687.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd718871717846af9580e09fd1411687.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd718871717846af9580e09fd1411687.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "0001-42FWF#黄底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd718871717846af9580e09fd1411687.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd718871717846af9580e09fd1411687.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd718871717846af9580e09fd1411687.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd718871717846af9580e09fd1411687.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd718871717846af9580e09fd1411687.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76vzFqadyL4Y2IfXzVI1AbN5xP8=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.093236+00 2025-12-09 10:14:42.093241+00 3864 HSH013FWE#绿色VS-D3 SPMX-20240815298987 \N \N \N 1 \N [{"file_id": "1616afb5-c83a-4508-bce1-e3620853edc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b533e305af744ce788f4efa4b8a16d53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b533e305af744ce788f4efa4b8a16d53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b533e305af744ce788f4efa4b8a16d53.jpg", "file_size": 13818, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b533e305af744ce788f4efa4b8a16d53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b533e305af744ce788f4efa4b8a16d53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b533e305af744ce788f4efa4b8a16d53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b533e305af744ce788f4efa4b8a16d53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b533e305af744ce788f4efa4b8a16d53.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4gsbPeHBh081UQhM_hvdB0xV8Q=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.094573+00 2025-12-09 10:14:42.094578+00 3865 DH1154239FWE#绿色VS-D3 SPMX-20240815298989 \N \N \N 1 \N [{"file_id": "8b9c5e15-5308-4830-b873-d1b928a717fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5aeb47f5ad141739210902c431e09a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5aeb47f5ad141739210902c431e09a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5aeb47f5ad141739210902c431e09a8.jpg", "file_size": 11775, "is_delete": false, "file_type": 1, "original_file_name": "DH1154239FWE#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5aeb47f5ad141739210902c431e09a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5aeb47f5ad141739210902c431e09a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5aeb47f5ad141739210902c431e09a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5aeb47f5ad141739210902c431e09a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5aeb47f5ad141739210902c431e09a8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z31TIErcIjSSfz41HLTmbcVH074=", "createTime": "2024-08-15 14:39:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.09571+00 2025-12-09 10:14:42.095714+00 3866 23-2101#A11前后片3XL SPMX-20240815298991 \N \N \N 1 \N [{"file_id": "ba674848-b176-418c-a53a-caa57f7663c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ced73a70dc934e85be6d281c0e5edbfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ced73a70dc934e85be6d281c0e5edbfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ced73a70dc934e85be6d281c0e5edbfa.jpg", "file_size": 10862, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A11前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced73a70dc934e85be6d281c0e5edbfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced73a70dc934e85be6d281c0e5edbfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced73a70dc934e85be6d281c0e5edbfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ced73a70dc934e85be6d281c0e5edbfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ced73a70dc934e85be6d281c0e5edbfa.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVxyLjzZgSvLi4FSFzKaaNScRSg=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.096842+00 2025-12-09 10:14:42.096847+00 3867 C23023#粉色S码 SPMX-20240815298992 \N \N \N 1 \N [{"file_id": "05e2550c-b0bc-4f25-98c8-d34c90962b0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d740add24ee408f982c321a8000d2e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d740add24ee408f982c321a8000d2e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d740add24ee408f982c321a8000d2e3.jpg", "file_size": 18034, "is_delete": false, "file_type": 1, "original_file_name": "C23023#粉色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d740add24ee408f982c321a8000d2e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d740add24ee408f982c321a8000d2e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d740add24ee408f982c321a8000d2e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d740add24ee408f982c321a8000d2e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d740add24ee408f982c321a8000d2e3.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5bAfsKtQD4YrW4-vPlqyBVXmTI=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.098314+00 2025-12-09 10:14:42.098318+00 3868 JS032FWE#粉色底 SPMX-20240815298993 \N \N \N 1 \N [{"file_id": "90eb4794-24d8-4158-b461-9f95b8d3f159", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63270fecde8d4fb29516621ecb6965fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63270fecde8d4fb29516621ecb6965fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63270fecde8d4fb29516621ecb6965fb.jpg", "file_size": 17037, "is_delete": false, "file_type": 1, "original_file_name": "JS032FWE#粉色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63270fecde8d4fb29516621ecb6965fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63270fecde8d4fb29516621ecb6965fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63270fecde8d4fb29516621ecb6965fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63270fecde8d4fb29516621ecb6965fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63270fecde8d4fb29516621ecb6965fb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQp8eOkipDJE5i5GGyPGeWHUcDg=", "createTime": "2024-08-15 14:39:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.099428+00 2025-12-09 10:14:42.099432+00 3869 FHPKDK两口袋-003-2 SPMX-20240815298998 \N \N \N 1 \N [{"file_id": "6d0004be-e6fb-4e28-a19c-216921295756", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d68331be5a0847cbb36f82cb1ba16c9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d68331be5a0847cbb36f82cb1ba16c9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d68331be5a0847cbb36f82cb1ba16c9f.jpg", "file_size": 60611, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68331be5a0847cbb36f82cb1ba16c9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68331be5a0847cbb36f82cb1ba16c9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68331be5a0847cbb36f82cb1ba16c9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d68331be5a0847cbb36f82cb1ba16c9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d68331be5a0847cbb36f82cb1ba16c9f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grHy660geVnyMPlHs4F3xJlfGKY=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.100518+00 2025-12-09 10:14:42.100522+00 3870 8004#长款下身彩蓝 SPMX-20240815298995 \N \N \N 1 \N [{"file_id": "96de787f-bdf4-46fc-b8a2-111231ac0558", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55ecd6e94b4248d3a8797ce285ca19f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55ecd6e94b4248d3a8797ce285ca19f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55ecd6e94b4248d3a8797ce285ca19f2.jpg", "file_size": 19286, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ecd6e94b4248d3a8797ce285ca19f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ecd6e94b4248d3a8797ce285ca19f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ecd6e94b4248d3a8797ce285ca19f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55ecd6e94b4248d3a8797ce285ca19f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55ecd6e94b4248d3a8797ce285ca19f2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5V2ezz1s7Q6faFb-AtwVccO1kqM=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.10162+00 2025-12-09 10:14:42.101625+00 3871 23-2101#A11前后片4XL SPMX-20240815299002 \N \N \N 1 \N [{"file_id": "faadfcd0-361f-49d6-8b6d-775d6c08cd8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50b5da98809249d497830e19b8d22c0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50b5da98809249d497830e19b8d22c0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50b5da98809249d497830e19b8d22c0e.jpg", "file_size": 10910, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A11前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5da98809249d497830e19b8d22c0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5da98809249d497830e19b8d22c0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5da98809249d497830e19b8d22c0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50b5da98809249d497830e19b8d22c0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50b5da98809249d497830e19b8d22c0e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znTq0Ziw0xSa4KHJh92SEfJRHL0=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.102744+00 2025-12-09 10:14:42.102748+00 3872 1041FWF#-4 SPMX-20240815298996 \N \N \N 1 \N [{"file_id": "f288d3bc-01b9-45e6-bfbf-87ce363ffbd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77090821c2b444328a23dbe7b83f5087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77090821c2b444328a23dbe7b83f5087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77090821c2b444328a23dbe7b83f5087.jpg", "file_size": 19252, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77090821c2b444328a23dbe7b83f5087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77090821c2b444328a23dbe7b83f5087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77090821c2b444328a23dbe7b83f5087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77090821c2b444328a23dbe7b83f5087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77090821c2b444328a23dbe7b83f5087.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BaZZN4KkL2VV6UzBl0EbBGm3f7o=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.103852+00 2025-12-09 10:14:42.103856+00 3873 LZ1191#下身4号色 SPMX-20240815298997 \N \N \N 1 \N [{"file_id": "fbbad4a8-692b-48a1-b668-a07877e469e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ff95c09ffa64aa5854b4ca44e444e16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ff95c09ffa64aa5854b4ca44e444e16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ff95c09ffa64aa5854b4ca44e444e16.jpg", "file_size": 19756, "is_delete": false, "file_type": 1, "original_file_name": "LZ1191#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff95c09ffa64aa5854b4ca44e444e16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff95c09ffa64aa5854b4ca44e444e16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff95c09ffa64aa5854b4ca44e444e16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ff95c09ffa64aa5854b4ca44e444e16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ff95c09ffa64aa5854b4ca44e444e16.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOLhs8qaZhVgNJz2vxySZyGPddY=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.104928+00 2025-12-09 10:14:42.104932+00 3874 0001-43#20X SPMX-20240815299000 \N \N \N 1 \N [{"file_id": "12573f1d-0f2b-4855-931e-aa6b1712bdf9", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "c5a95ff676c641648c3790e0ebd18968.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "c5a95ff676c641648c3790e0ebd18968.png?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "c5a95ff676c641648c3790e0ebd18968.png", "file_size": 86211, "is_delete": false, "file_type": 1, "original_file_name": "6x1I9M7v2x1fakebfq7c73cfbi5j1t981jcF92dR2z7r457qazbA7HdR4B6sdZ4Y.png", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/c5a95ff676c641648c3790e0ebd18968.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/c5a95ff676c641648c3790e0ebd18968.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/c5a95ff676c641648c3790e0ebd18968.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/c5a95ff676c641648c3790e0ebd18968.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/c5a95ff676c641648c3790e0ebd18968.png?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tf842ryO965P96nQW3isFIjozMk=", "createTime": "2024-11-21 13:37:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.106026+00 2025-12-09 10:14:42.10603+00 3875 DH1154294FWE#VS-D3 SPMX-20240815298999 \N \N \N 1 \N [{"file_id": "d645d67f-ba07-4d63-acd9-8916a7aab171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e505adfb7fc4b2ca4220f2137b8b892.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e505adfb7fc4b2ca4220f2137b8b892.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e505adfb7fc4b2ca4220f2137b8b892.jpg", "file_size": 31262, "is_delete": false, "file_type": 1, "original_file_name": "DH1154294FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e505adfb7fc4b2ca4220f2137b8b892.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e505adfb7fc4b2ca4220f2137b8b892.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e505adfb7fc4b2ca4220f2137b8b892.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e505adfb7fc4b2ca4220f2137b8b892.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e505adfb7fc4b2ca4220f2137b8b892.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7n3v-uZtlNPIDk3S4oZD3TMHex4=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.107129+00 2025-12-09 10:14:42.107134+00 3876 HSH013FWE#蓝底VS-D3 SPMX-20240815299001 \N \N \N 1 \N [{"file_id": "5ef4e72f-43fb-4f00-a0c2-cb421c8cf9b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "494c6cebd24b4adf9c9772ef494f1ef4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "494c6cebd24b4adf9c9772ef494f1ef4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "494c6cebd24b4adf9c9772ef494f1ef4.jpg", "file_size": 25879, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#蓝底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494c6cebd24b4adf9c9772ef494f1ef4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494c6cebd24b4adf9c9772ef494f1ef4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494c6cebd24b4adf9c9772ef494f1ef4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/494c6cebd24b4adf9c9772ef494f1ef4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/494c6cebd24b4adf9c9772ef494f1ef4.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APemPRGxgrB3xGiTr1IM7-1bRY8=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.108504+00 2025-12-09 10:14:42.108508+00 3877 LHJ9168#5#彩兰前片 SPMX-20240815298994 \N \N \N 1 \N [{"file_id": "f93145d3-0753-42cb-9da5-840ab62fcbed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e02873520d8b4e159a897dfebd532d02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e02873520d8b4e159a897dfebd532d02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e02873520d8b4e159a897dfebd532d02.jpg", "file_size": 17531, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#5#彩兰前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02873520d8b4e159a897dfebd532d02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02873520d8b4e159a897dfebd532d02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02873520d8b4e159a897dfebd532d02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e02873520d8b4e159a897dfebd532d02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e02873520d8b4e159a897dfebd532d02.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vkA_DWCvYNBcqhH_xh4luSRyYV8=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.109878+00 2025-12-09 10:14:42.109882+00 3878 DH1154918FWE#VS-D3 SPMX-20240815299007 \N \N \N 1 \N [{"file_id": "b7ab03f3-9019-4496-abff-b41da0eac1b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cfae36e29824aec9bc13df51f22035b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cfae36e29824aec9bc13df51f22035b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cfae36e29824aec9bc13df51f22035b.jpg", "file_size": 25707, "is_delete": false, "file_type": 1, "original_file_name": "DH1154918FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfae36e29824aec9bc13df51f22035b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfae36e29824aec9bc13df51f22035b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfae36e29824aec9bc13df51f22035b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cfae36e29824aec9bc13df51f22035b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cfae36e29824aec9bc13df51f22035b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGajQX9rP8DdkXtgXamGA94qYRw=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.111258+00 2025-12-09 10:14:42.111262+00 3879 JS033FWE#黑底 SPMX-20240815299005 \N \N \N 1 \N [{"file_id": "541954ee-7513-422e-bb06-8b83f1ceebb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a35b1650796747eb9a6f9cee25a558a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a35b1650796747eb9a6f9cee25a558a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a35b1650796747eb9a6f9cee25a558a1.jpg", "file_size": 20198, "is_delete": false, "file_type": 1, "original_file_name": "JS033FWE#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35b1650796747eb9a6f9cee25a558a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35b1650796747eb9a6f9cee25a558a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35b1650796747eb9a6f9cee25a558a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a35b1650796747eb9a6f9cee25a558a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a35b1650796747eb9a6f9cee25a558a1.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2f4pJ66J4hTpv10UcadOrDciG38=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.112652+00 2025-12-09 10:14:42.112657+00 3880 LZ1192#上身1号色 SPMX-20240815299008 \N \N \N 1 \N [{"file_id": "5b20ec87-6cf6-4b81-8e32-5d96e77a96c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "752e2d3bf61746f0954011fec3308899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "752e2d3bf61746f0954011fec3308899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "752e2d3bf61746f0954011fec3308899.jpg", "file_size": 19466, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/752e2d3bf61746f0954011fec3308899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/752e2d3bf61746f0954011fec3308899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/752e2d3bf61746f0954011fec3308899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/752e2d3bf61746f0954011fec3308899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/752e2d3bf61746f0954011fec3308899.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCkWUlOovKIO3mw3-m-Q_b7OyUA=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.114029+00 2025-12-09 10:14:42.114033+00 3881 8004#长款下身枣红 SPMX-20240815299009 \N \N \N 1 \N [{"file_id": "449a6ab3-0b76-4781-84db-88f73442895e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a0de07f273c45baa9027b7f83cda179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a0de07f273c45baa9027b7f83cda179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a0de07f273c45baa9027b7f83cda179.jpg", "file_size": 19327, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0de07f273c45baa9027b7f83cda179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0de07f273c45baa9027b7f83cda179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0de07f273c45baa9027b7f83cda179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a0de07f273c45baa9027b7f83cda179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a0de07f273c45baa9027b7f83cda179.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLRddItbGUx3WH96cNy6VdLfeGA=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.115418+00 2025-12-09 10:14:42.115423+00 3882 LHJ9168#5#彩兰后片+裤 SPMX-20240815299004 \N \N \N 1 \N [{"file_id": "f87c91c0-04e9-4185-a235-d869386506c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "718c7f4914674d55be65fa36e006e95a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "718c7f4914674d55be65fa36e006e95a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "718c7f4914674d55be65fa36e006e95a.jpg", "file_size": 16652, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#5#彩兰后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c7f4914674d55be65fa36e006e95a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c7f4914674d55be65fa36e006e95a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c7f4914674d55be65fa36e006e95a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/718c7f4914674d55be65fa36e006e95a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/718c7f4914674d55be65fa36e006e95a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPn7RgCflwtSnyrv3TCgdXthnS8=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.11679+00 2025-12-09 10:14:42.116794+00 3883 1041FWF#-4净色 SPMX-20240815299006 \N \N \N 1 \N [{"file_id": "1a9de3c8-5085-4211-8160-1ed66e3b26f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6e26bde33404d64ae84d49e736266d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6e26bde33404d64ae84d49e736266d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6e26bde33404d64ae84d49e736266d8.jpg", "file_size": 6513, "is_delete": false, "file_type": 1, "original_file_name": "1041FWF#-4净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e26bde33404d64ae84d49e736266d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e26bde33404d64ae84d49e736266d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e26bde33404d64ae84d49e736266d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6e26bde33404d64ae84d49e736266d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6e26bde33404d64ae84d49e736266d8.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMTacv8OfowyYej_CAUXFINRgGQ=", "createTime": "2024-08-15 14:39:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.118176+00 2025-12-09 10:14:42.118181+00 3884 C23023#粉色XL码 SPMX-20240815299003 \N \N \N 1 \N [{"file_id": "4173dfcf-cfb5-49e5-87e1-01184db716fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3a152a370c74f6091cb8fe7c33654dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3a152a370c74f6091cb8fe7c33654dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3a152a370c74f6091cb8fe7c33654dd.jpg", "file_size": 16368, "is_delete": false, "file_type": 1, "original_file_name": "C23023#粉色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a152a370c74f6091cb8fe7c33654dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a152a370c74f6091cb8fe7c33654dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a152a370c74f6091cb8fe7c33654dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3a152a370c74f6091cb8fe7c33654dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3a152a370c74f6091cb8fe7c33654dd.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Odxb56FGrvQmT9i8lLPquMQf4d0=", "createTime": "2024-08-15 14:39:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.119262+00 2025-12-09 10:14:42.119266+00 3885 23-2101#A11袖子3XL SPMX-20240815299010 \N \N \N 1 \N [{"file_id": "e7420eed-5178-4b42-9def-72c03f7ca574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a5e9b1581934e438368506ab466c802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a5e9b1581934e438368506ab466c802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a5e9b1581934e438368506ab466c802.jpg", "file_size": 8075, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A11袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5e9b1581934e438368506ab466c802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5e9b1581934e438368506ab466c802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5e9b1581934e438368506ab466c802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a5e9b1581934e438368506ab466c802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a5e9b1581934e438368506ab466c802.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R_8ILljK_Z2MBXHEDpUX5ZzpNc4=", "createTime": "2024-08-15 14:39:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.120353+00 2025-12-09 10:14:42.120358+00 3886 DH1155648FWE#VS-D3 SPMX-20240815299015 \N \N \N 1 \N [{"file_id": "80216c4d-7437-46d4-87b6-e74633e49fdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9b4c9aa40b4beca2e17251ea71d0b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9b4c9aa40b4beca2e17251ea71d0b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9b4c9aa40b4beca2e17251ea71d0b2.jpg", "file_size": 9823, "is_delete": false, "file_type": 1, "original_file_name": "DH1155648FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9b4c9aa40b4beca2e17251ea71d0b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9b4c9aa40b4beca2e17251ea71d0b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9b4c9aa40b4beca2e17251ea71d0b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9b4c9aa40b4beca2e17251ea71d0b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9b4c9aa40b4beca2e17251ea71d0b2.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYeYwzmmSj9HyoXMsZLFXB6zvTg=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.121418+00 2025-12-09 10:14:42.121422+00 3887 8004#长款下身紫色 SPMX-20240815299016 \N \N \N 1 \N [{"file_id": "29ad1851-4ab9-436c-9134-74f3f488cb1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08b58fb76dff435395a7acc4e2c06243.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08b58fb76dff435395a7acc4e2c06243.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08b58fb76dff435395a7acc4e2c06243.jpg", "file_size": 18535, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b58fb76dff435395a7acc4e2c06243.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b58fb76dff435395a7acc4e2c06243.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b58fb76dff435395a7acc4e2c06243.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08b58fb76dff435395a7acc4e2c06243.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08b58fb76dff435395a7acc4e2c06243.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NL1lOssUAtJ0W4t5nn7HgmVqF3E=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.122526+00 2025-12-09 10:14:42.12253+00 3888 JS0401浅蓝底小老虎#WJC22 SPMX-20240815299013 \N \N \N 1 \N [{"file_id": "086cab28-b1b8-4609-916b-75343daf576a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb1df065e3d24debaafd98c406e41943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb1df065e3d24debaafd98c406e41943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb1df065e3d24debaafd98c406e41943.jpg", "file_size": 20820, "is_delete": false, "file_type": 1, "original_file_name": "JS0401浅蓝底小老虎#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1df065e3d24debaafd98c406e41943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1df065e3d24debaafd98c406e41943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1df065e3d24debaafd98c406e41943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb1df065e3d24debaafd98c406e41943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb1df065e3d24debaafd98c406e41943.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HrdxRTvX7z94FFrF0GJnlZlTX1E=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.123622+00 2025-12-09 10:14:42.123627+00 3889 LHJ9168#前片咖啡 SPMX-20240815299012 \N \N \N 1 \N [{"file_id": "adb9837f-52b2-401e-8bce-ffc9ddfd1f93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "776e187b08b44d3897363bd0c36c300c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "776e187b08b44d3897363bd0c36c300c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "776e187b08b44d3897363bd0c36c300c.jpg", "file_size": 16436, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#前片咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776e187b08b44d3897363bd0c36c300c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776e187b08b44d3897363bd0c36c300c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776e187b08b44d3897363bd0c36c300c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/776e187b08b44d3897363bd0c36c300c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/776e187b08b44d3897363bd0c36c300c.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyijxyoWPE6vODYBXs7XWMcAI24=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.124726+00 2025-12-09 10:14:42.12473+00 3890 FHPKDK两口袋-003-3 SPMX-20240815299017 \N \N \N 1 \N [{"file_id": "27a37711-2d83-45df-a854-ebbba283deae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b83b68d255bd40aca271258bafe7d716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b83b68d255bd40aca271258bafe7d716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b83b68d255bd40aca271258bafe7d716.jpg", "file_size": 65531, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83b68d255bd40aca271258bafe7d716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83b68d255bd40aca271258bafe7d716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83b68d255bd40aca271258bafe7d716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b83b68d255bd40aca271258bafe7d716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b83b68d255bd40aca271258bafe7d716.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HtubUGfJn2zYKyzwq8ZvgoF_0U=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.125819+00 2025-12-09 10:14:42.125823+00 3891 0001-43#2XL SPMX-20240815299011 \N \N \N 1 \N [{"file_id": "738a2b04-cbc5-4d84-adc3-5cd417a63ba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39bfd63b05de47ea93e6b156a12d6143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39bfd63b05de47ea93e6b156a12d6143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39bfd63b05de47ea93e6b156a12d6143.jpg", "file_size": 19685, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bfd63b05de47ea93e6b156a12d6143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bfd63b05de47ea93e6b156a12d6143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bfd63b05de47ea93e6b156a12d6143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39bfd63b05de47ea93e6b156a12d6143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39bfd63b05de47ea93e6b156a12d6143.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:243OBMZb9actNKMMgBUNWonyJhQ=", "createTime": "2024-08-15 14:39:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.126906+00 2025-12-09 10:14:42.12691+00 3892 C23023#粉色耳仔 SPMX-20240815299014 \N \N \N 1 \N [{"file_id": "0376b0ca-605f-41e0-9d27-64026ba1f61b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98c618d355a44505a220302ba8c7fb5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98c618d355a44505a220302ba8c7fb5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98c618d355a44505a220302ba8c7fb5f.jpg", "file_size": 6921, "is_delete": false, "file_type": 1, "original_file_name": "C23023#粉色耳仔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c618d355a44505a220302ba8c7fb5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c618d355a44505a220302ba8c7fb5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c618d355a44505a220302ba8c7fb5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98c618d355a44505a220302ba8c7fb5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98c618d355a44505a220302ba8c7fb5f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asNRt1oNLiKJdmC24-CBhFpbS3U=", "createTime": "2024-08-15 14:39:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.128018+00 2025-12-09 10:14:42.128023+00 3893 23-2101#A11袖子4XL SPMX-20240815299018 \N \N \N 1 \N [{"file_id": "d9847818-9b85-4b2d-aad0-765710135cf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78576eb281eb4393a703c44377d6a569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78576eb281eb4393a703c44377d6a569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78576eb281eb4393a703c44377d6a569.jpg", "file_size": 8192, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A11袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78576eb281eb4393a703c44377d6a569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78576eb281eb4393a703c44377d6a569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78576eb281eb4393a703c44377d6a569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78576eb281eb4393a703c44377d6a569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78576eb281eb4393a703c44377d6a569.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pkc0C8JqzGK0MjOd1deNjGD2u9E=", "createTime": "2024-08-15 14:39:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.129102+00 2025-12-09 10:14:42.129106+00 3894 1042#土黄 SPMX-20240815299030 \N \N \N 1 \N [{"file_id": "b6f9c9b7-1e66-49e4-9f94-aae8069c8c9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c249210123a34e79a58b5b62923bdfda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c249210123a34e79a58b5b62923bdfda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c249210123a34e79a58b5b62923bdfda.jpg", "file_size": 21452, "is_delete": false, "file_type": 1, "original_file_name": "1042#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c249210123a34e79a58b5b62923bdfda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c249210123a34e79a58b5b62923bdfda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c249210123a34e79a58b5b62923bdfda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c249210123a34e79a58b5b62923bdfda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c249210123a34e79a58b5b62923bdfda.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_cYbv-u6hyAL8IW9cz-dbnbS-8=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.13021+00 2025-12-09 10:14:42.130215+00 3895 HSH014# SPMX-20240815299031 \N \N \N 1 \N [{"file_id": "a4acf5d7-7d05-4b06-a026-14862418065f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d4bc5880f4149678f177e8f9f9cf038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d4bc5880f4149678f177e8f9f9cf038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d4bc5880f4149678f177e8f9f9cf038.jpg", "file_size": 17085, "is_delete": false, "file_type": 1, "original_file_name": "HSH014#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4bc5880f4149678f177e8f9f9cf038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4bc5880f4149678f177e8f9f9cf038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4bc5880f4149678f177e8f9f9cf038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d4bc5880f4149678f177e8f9f9cf038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d4bc5880f4149678f177e8f9f9cf038.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aNWy4KLC4lEnBd8sF_aM1GpQ3QY=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.131292+00 2025-12-09 10:14:42.131296+00 3896 JS0974--A28#RC23 SPMX-20240815299023 \N \N \N 1 \N [{"file_id": "579aefe5-5fe5-408a-a9b4-39a1b95af3af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98079dcbd2404ce4b919692b837ee727.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98079dcbd2404ce4b919692b837ee727.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98079dcbd2404ce4b919692b837ee727.jpg", "file_size": 44114, "is_delete": false, "file_type": 1, "original_file_name": "JS0974--A28#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98079dcbd2404ce4b919692b837ee727.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98079dcbd2404ce4b919692b837ee727.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98079dcbd2404ce4b919692b837ee727.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98079dcbd2404ce4b919692b837ee727.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98079dcbd2404ce4b919692b837ee727.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hiOea3mWOAv1GQRG4sCxhIN_Lc=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.132393+00 2025-12-09 10:14:42.132397+00 3897 8004#长款下身黑色 SPMX-20240815299036 \N \N \N 1 \N [{"file_id": "0ba71606-d986-4ee1-9b4e-e58e6ff5df36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f79f0a619d8849a7a056e0b39e6ff222.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f79f0a619d8849a7a056e0b39e6ff222.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f79f0a619d8849a7a056e0b39e6ff222.jpg", "file_size": 20111, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79f0a619d8849a7a056e0b39e6ff222.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79f0a619d8849a7a056e0b39e6ff222.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79f0a619d8849a7a056e0b39e6ff222.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f79f0a619d8849a7a056e0b39e6ff222.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f79f0a619d8849a7a056e0b39e6ff222.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8r2QFxwYlcqjKhm2DaWRLBgBmU=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.133476+00 2025-12-09 10:14:42.13348+00 3898 LZ1192#上身2号色 SPMX-20240815299019 \N \N \N 1 \N [{"file_id": "5e952be1-35bf-49ba-a33a-7427d3fd1a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08a6ea333277411c83315f83c4f35253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08a6ea333277411c83315f83c4f35253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08a6ea333277411c83315f83c4f35253.jpg", "file_size": 16056, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6ea333277411c83315f83c4f35253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6ea333277411c83315f83c4f35253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6ea333277411c83315f83c4f35253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08a6ea333277411c83315f83c4f35253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08a6ea333277411c83315f83c4f35253.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FY-mKuZoWGOvb26UYFVolD5iB38=", "createTime": "2024-08-15 14:39:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.134591+00 2025-12-09 10:14:42.134595+00 3899 1042#原版色 SPMX-20240815299020 \N \N \N 1 \N [{"file_id": "8e668af9-747f-46c4-8a68-41c8fd725f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58b09cf0621440a193bd3b728bd50976.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58b09cf0621440a193bd3b728bd50976.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58b09cf0621440a193bd3b728bd50976.jpg", "file_size": 25728, "is_delete": false, "file_type": 1, "original_file_name": "1042#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b09cf0621440a193bd3b728bd50976.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b09cf0621440a193bd3b728bd50976.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b09cf0621440a193bd3b728bd50976.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58b09cf0621440a193bd3b728bd50976.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58b09cf0621440a193bd3b728bd50976.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6x0P-dBJY4ugVT65mV1Lok0_bD0=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.135676+00 2025-12-09 10:14:42.13568+00 3900 LHJ9168#后片加裤咖啡 SPMX-20240815299035 \N \N \N 1 \N [{"file_id": "f686d24c-3432-409b-bab9-afd05e952319", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a308cc44edb84a90b47fa6dd74b8ba7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a308cc44edb84a90b47fa6dd74b8ba7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a308cc44edb84a90b47fa6dd74b8ba7a.jpg", "file_size": 16154, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#后片加裤咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a308cc44edb84a90b47fa6dd74b8ba7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a308cc44edb84a90b47fa6dd74b8ba7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a308cc44edb84a90b47fa6dd74b8ba7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a308cc44edb84a90b47fa6dd74b8ba7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a308cc44edb84a90b47fa6dd74b8ba7a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JA_E_HjKXHzmtsW_02gLiwO3PVI=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.136798+00 2025-12-09 10:14:42.136802+00 3901 8004#长款下身黄绿 SPMX-20240815299025 \N \N \N 1 \N [{"file_id": "36a5c703-e8d7-437a-9ebb-69c446f3bc8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b13c973c116431fb8d8bdbb8ab32f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b13c973c116431fb8d8bdbb8ab32f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b13c973c116431fb8d8bdbb8ab32f1a.jpg", "file_size": 17913, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款下身黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b13c973c116431fb8d8bdbb8ab32f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b13c973c116431fb8d8bdbb8ab32f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b13c973c116431fb8d8bdbb8ab32f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b13c973c116431fb8d8bdbb8ab32f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b13c973c116431fb8d8bdbb8ab32f1a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQg_DDr9g35yPj6IdwyV4jMF-3k=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.137883+00 2025-12-09 10:14:42.137887+00 3902 C23023#绿色L码 SPMX-20240815299027 \N \N \N 1 \N [{"file_id": "1b722dc4-2b73-479f-8843-eaa9d45f1f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce99e41a7e5144b2b18047f18cccbc4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce99e41a7e5144b2b18047f18cccbc4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce99e41a7e5144b2b18047f18cccbc4b.jpg", "file_size": 20721, "is_delete": false, "file_type": 1, "original_file_name": "C23023#绿色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce99e41a7e5144b2b18047f18cccbc4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce99e41a7e5144b2b18047f18cccbc4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce99e41a7e5144b2b18047f18cccbc4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce99e41a7e5144b2b18047f18cccbc4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce99e41a7e5144b2b18047f18cccbc4b.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDq9tFlmIMTXpJEHDJKppW4UwF4=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.139007+00 2025-12-09 10:14:42.139012+00 3903 LZ1192#上身3号色 SPMX-20240815299032 \N \N \N 1 \N [{"file_id": "37ae2c9f-618d-43ea-b0ba-f260b9e42690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dc2366ce0694809be20569d50b8213f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dc2366ce0694809be20569d50b8213f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dc2366ce0694809be20569d50b8213f.jpg", "file_size": 17947, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2366ce0694809be20569d50b8213f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2366ce0694809be20569d50b8213f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2366ce0694809be20569d50b8213f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dc2366ce0694809be20569d50b8213f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dc2366ce0694809be20569d50b8213f.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Brn5cKa7EZJ4gkyo55h80iIiKtI=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.140089+00 2025-12-09 10:14:42.140093+00 3904 LHJ9168#前片黑白 SPMX-20240815299024 \N \N \N 1 \N [{"file_id": "709f959d-6a22-46d1-99e7-8c90cf285ab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07273ed3aced40f592271855dced3080.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07273ed3aced40f592271855dced3080.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07273ed3aced40f592271855dced3080.jpg", "file_size": 16665, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#前片黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07273ed3aced40f592271855dced3080.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07273ed3aced40f592271855dced3080.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07273ed3aced40f592271855dced3080.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07273ed3aced40f592271855dced3080.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07273ed3aced40f592271855dced3080.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJ2Y9CSl87Dp-XIf3spDXEV7MQE=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.141199+00 2025-12-09 10:14:42.141203+00 3905 0001-43#L SPMX-20240815299033 \N \N \N 1 \N [{"file_id": "9d3e3828-cfba-4ff9-ba2d-af1c8cb46302", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fc914d4db0940879befd9114c1c144d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fc914d4db0940879befd9114c1c144d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fc914d4db0940879befd9114c1c144d.jpg", "file_size": 19374, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc914d4db0940879befd9114c1c144d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc914d4db0940879befd9114c1c144d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc914d4db0940879befd9114c1c144d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fc914d4db0940879befd9114c1c144d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fc914d4db0940879befd9114c1c144d.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G7uXjSZIfKlCcgFrJryFWKjakb0=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.142279+00 2025-12-09 10:14:42.142282+00 3906 JS0974-1#RC23 SPMX-20240815299034 \N \N \N 1 \N [{"file_id": "668dc135-bf66-41c1-9500-d03e6ac4a97b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb38a313c85c421aa67b4bcf7d8d4359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb38a313c85c421aa67b4bcf7d8d4359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb38a313c85c421aa67b4bcf7d8d4359.jpg", "file_size": 19165, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb38a313c85c421aa67b4bcf7d8d4359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb38a313c85c421aa67b4bcf7d8d4359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb38a313c85c421aa67b4bcf7d8d4359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb38a313c85c421aa67b4bcf7d8d4359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb38a313c85c421aa67b4bcf7d8d4359.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVVzg6CuAxollx9qNPa7EJj4uIo=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.143355+00 2025-12-09 10:14:42.14336+00 3907 23-2101#A11领子通用 SPMX-20240815299028 \N \N \N 1 \N [{"file_id": "e03a879d-2dcf-4995-abbc-0db05b9e2b32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130f076bb9ed497f852d2693766475ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130f076bb9ed497f852d2693766475ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130f076bb9ed497f852d2693766475ef.jpg", "file_size": 8852, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A11领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130f076bb9ed497f852d2693766475ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130f076bb9ed497f852d2693766475ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130f076bb9ed497f852d2693766475ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130f076bb9ed497f852d2693766475ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130f076bb9ed497f852d2693766475ef.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CeJ0uIC6k5gbf4yQNloyknbpiQ=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.144434+00 2025-12-09 10:14:42.144438+00 3908 HSH013FWE#黑底VS-D3 SPMX-20240815299021 \N \N \N 1 \N [{"file_id": "c0c1fe55-9edf-4df1-b757-1567a5e86b85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "224dce4fb19041dd898e73e09a708e20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "224dce4fb19041dd898e73e09a708e20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "224dce4fb19041dd898e73e09a708e20.jpg", "file_size": 29361, "is_delete": false, "file_type": 1, "original_file_name": "HSH013FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224dce4fb19041dd898e73e09a708e20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224dce4fb19041dd898e73e09a708e20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224dce4fb19041dd898e73e09a708e20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/224dce4fb19041dd898e73e09a708e20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/224dce4fb19041dd898e73e09a708e20.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vG0-IGgcZ57eRVpFHAPGYDgC3_o=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.14555+00 2025-12-09 10:14:42.145554+00 3909 FHPKDK两口袋-004-1 SPMX-20240815299026 \N \N \N 1 \N [{"file_id": "0319b657-22b0-440e-a437-92e55245cf69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57a9d5a4809d4ebd94a9f835981721c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57a9d5a4809d4ebd94a9f835981721c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57a9d5a4809d4ebd94a9f835981721c6.jpg", "file_size": 62276, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9d5a4809d4ebd94a9f835981721c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9d5a4809d4ebd94a9f835981721c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9d5a4809d4ebd94a9f835981721c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57a9d5a4809d4ebd94a9f835981721c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57a9d5a4809d4ebd94a9f835981721c6.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1fz3HZ35qOFCK_SHk4vFp_xl3s=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.146637+00 2025-12-09 10:14:42.146641+00 3910 DH1156679FWE#VS-D3 SPMX-20240815299029 \N \N \N 1 \N [{"file_id": "be9860ff-9e79-4596-ba96-2a22452fa2eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "235d4ecb29364eb580fa507b82ae9d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "235d4ecb29364eb580fa507b82ae9d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "235d4ecb29364eb580fa507b82ae9d15.jpg", "file_size": 28032, "is_delete": false, "file_type": 1, "original_file_name": "DH1156679FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235d4ecb29364eb580fa507b82ae9d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235d4ecb29364eb580fa507b82ae9d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235d4ecb29364eb580fa507b82ae9d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/235d4ecb29364eb580fa507b82ae9d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/235d4ecb29364eb580fa507b82ae9d15.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NGDzrTmr5bMg8fL_V8s7vfvYC4=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.147717+00 2025-12-09 10:14:42.147722+00 3911 0001-43#3XL SPMX-20240815299022 \N \N \N 1 \N [{"file_id": "3b67e74e-22ce-48d9-94f0-7801e67fe2c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f48ca3eaa8f47c58667f9429d6417ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f48ca3eaa8f47c58667f9429d6417ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f48ca3eaa8f47c58667f9429d6417ad.jpg", "file_size": 18205, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f48ca3eaa8f47c58667f9429d6417ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f48ca3eaa8f47c58667f9429d6417ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f48ca3eaa8f47c58667f9429d6417ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f48ca3eaa8f47c58667f9429d6417ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f48ca3eaa8f47c58667f9429d6417ad.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1k9kiiLjSsHC5lqdIrLgNIpvgzA=", "createTime": "2024-08-15 14:39:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.148814+00 2025-12-09 10:14:42.148818+00 3912 23-2101#A12前后片4XL SPMX-20240815299042 \N \N \N 1 \N [{"file_id": "34e02d76-d38c-4280-850d-c892b9650779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c69def8d80554dd5a7771fb9f4d4f23e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c69def8d80554dd5a7771fb9f4d4f23e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c69def8d80554dd5a7771fb9f4d4f23e.jpg", "file_size": 11179, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A12前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69def8d80554dd5a7771fb9f4d4f23e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69def8d80554dd5a7771fb9f4d4f23e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69def8d80554dd5a7771fb9f4d4f23e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c69def8d80554dd5a7771fb9f4d4f23e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c69def8d80554dd5a7771fb9f4d4f23e.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:90daZh6s44x78k0QRXXMbgglx94=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.149923+00 2025-12-09 10:14:42.149927+00 3913 C23023#绿色M码 SPMX-20240815299039 \N \N \N 1 \N [{"file_id": "b76cf34e-b172-4d4b-adcf-a7f1a97249a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c897ac8392841939a91a723375a391a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c897ac8392841939a91a723375a391a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c897ac8392841939a91a723375a391a.jpg", "file_size": 20646, "is_delete": false, "file_type": 1, "original_file_name": "C23023#绿色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c897ac8392841939a91a723375a391a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c897ac8392841939a91a723375a391a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c897ac8392841939a91a723375a391a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c897ac8392841939a91a723375a391a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c897ac8392841939a91a723375a391a.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lF7dLVF3JWU0YjyZ-m3w7LKrkbI=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.15101+00 2025-12-09 10:14:42.151014+00 3914 DH1156875FWE#VS-D3 SPMX-20240815299041 \N \N \N 1 \N [{"file_id": "55c5ef71-e15a-4728-aec3-b5256c53ac60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c643ec08e5fc4e2b90615d3f46e6cccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c643ec08e5fc4e2b90615d3f46e6cccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c643ec08e5fc4e2b90615d3f46e6cccb.jpg", "file_size": 21735, "is_delete": false, "file_type": 1, "original_file_name": "DH1156875FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c643ec08e5fc4e2b90615d3f46e6cccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c643ec08e5fc4e2b90615d3f46e6cccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c643ec08e5fc4e2b90615d3f46e6cccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c643ec08e5fc4e2b90615d3f46e6cccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c643ec08e5fc4e2b90615d3f46e6cccb.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJC2BqylT6W6amrppbrWavDJiZQ=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.152094+00 2025-12-09 10:14:42.152098+00 3915 1042#彩蓝 SPMX-20240815299040 \N \N \N 1 \N [{"file_id": "372aaef0-d27e-42de-904f-3627d3cb724f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0478ebfd5be4b099c33aac6d324e642.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0478ebfd5be4b099c33aac6d324e642.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0478ebfd5be4b099c33aac6d324e642.jpg", "file_size": 26512, "is_delete": false, "file_type": 1, "original_file_name": "1042#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0478ebfd5be4b099c33aac6d324e642.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0478ebfd5be4b099c33aac6d324e642.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0478ebfd5be4b099c33aac6d324e642.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0478ebfd5be4b099c33aac6d324e642.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0478ebfd5be4b099c33aac6d324e642.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-J76hAhr4HdeRPcs1bhN3HMuk0=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.153177+00 2025-12-09 10:14:42.15318+00 3916 23-2101#A12前后片3XL SPMX-20240815299038 \N \N \N 1 \N [{"file_id": "bad9d802-9502-4e60-b12d-d535dd1cfd24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61d221770a95491fa2a9e3a1fe64c684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61d221770a95491fa2a9e3a1fe64c684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61d221770a95491fa2a9e3a1fe64c684.jpg", "file_size": 10501, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A12前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d221770a95491fa2a9e3a1fe64c684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d221770a95491fa2a9e3a1fe64c684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d221770a95491fa2a9e3a1fe64c684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61d221770a95491fa2a9e3a1fe64c684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61d221770a95491fa2a9e3a1fe64c684.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5l6o1pblZAqdaRuuMU9h313Ihk=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:42.154272+00 2025-12-09 10:14:42.154277+00 3917 FHPKDK两口袋-004-2 SPMX-20240815299037 \N \N \N 1 \N [{"file_id": "ef0d47e2-a7b7-4d3c-a47b-af8a0300763c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7805c80cdc054b2f903f3f06eb4459aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7805c80cdc054b2f903f3f06eb4459aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7805c80cdc054b2f903f3f06eb4459aa.jpg", "file_size": 58634, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-004-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7805c80cdc054b2f903f3f06eb4459aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7805c80cdc054b2f903f3f06eb4459aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7805c80cdc054b2f903f3f06eb4459aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7805c80cdc054b2f903f3f06eb4459aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7805c80cdc054b2f903f3f06eb4459aa.jpg?e=1765361681&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MtZZR5alf_TpuMKFdrzCjnKiz8=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.181421+00 2025-12-09 10:14:43.181432+00 3918 LZ1192#上身4号色 SPMX-20240815299043 \N \N \N 1 \N [{"file_id": "1b296c91-9d04-4d5a-9a52-d5198e8a3b08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9615bcb331144722b33ef7562cabd333.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9615bcb331144722b33ef7562cabd333.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9615bcb331144722b33ef7562cabd333.jpg", "file_size": 19377, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9615bcb331144722b33ef7562cabd333.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9615bcb331144722b33ef7562cabd333.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9615bcb331144722b33ef7562cabd333.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9615bcb331144722b33ef7562cabd333.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9615bcb331144722b33ef7562cabd333.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iDnb0H1CpoUIV8tWHe07YYUW9HI=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.183458+00 2025-12-09 10:14:43.183464+00 3919 0001-43#M SPMX-20240815299044 \N \N \N 1 \N [{"file_id": "c939b79c-3468-425f-94cf-5151cdd8c15f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9266ac908d84c06ab7d633261fdda01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9266ac908d84c06ab7d633261fdda01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9266ac908d84c06ab7d633261fdda01.jpg", "file_size": 16787, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9266ac908d84c06ab7d633261fdda01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9266ac908d84c06ab7d633261fdda01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9266ac908d84c06ab7d633261fdda01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9266ac908d84c06ab7d633261fdda01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9266ac908d84c06ab7d633261fdda01.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5Wjcouw7lVBtm85ZTk-e_9TuHY=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.184901+00 2025-12-09 10:14:43.184906+00 3920 JS0974-A1#LWQ15 SPMX-20240815299045 \N \N \N 1 \N [{"file_id": "37c70da5-6b06-4b87-a5f9-2930aa22107b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aff0bd11738548719f230110a872db75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aff0bd11738548719f230110a872db75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aff0bd11738548719f230110a872db75.jpg", "file_size": 12446, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff0bd11738548719f230110a872db75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff0bd11738548719f230110a872db75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff0bd11738548719f230110a872db75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aff0bd11738548719f230110a872db75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aff0bd11738548719f230110a872db75.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIL8o5ileZdNWj271f-TQkLAMLA=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.186329+00 2025-12-09 10:14:43.186334+00 3921 23-2101#A12袖子3XL SPMX-20240815299054 \N \N \N 1 \N [{"file_id": "3b2a8d12-edb1-4ef5-bf97-00e5cc94a59e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "419abe7b6363483fa47a22e1b58b1614.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "419abe7b6363483fa47a22e1b58b1614.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "419abe7b6363483fa47a22e1b58b1614.jpg", "file_size": 6325, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A12袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419abe7b6363483fa47a22e1b58b1614.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419abe7b6363483fa47a22e1b58b1614.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419abe7b6363483fa47a22e1b58b1614.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/419abe7b6363483fa47a22e1b58b1614.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/419abe7b6363483fa47a22e1b58b1614.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HkjDWQvyGDEUN9vnsmA7bJV3Zg=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.187673+00 2025-12-09 10:14:43.187678+00 3922 LHJ9168#咖啡后片+裤 SPMX-20240815299049 \N \N \N 1 \N [{"file_id": "c2429c53-e44d-479b-8fa2-b5a942b96422", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0181e9443b4f27873b46f09aa7a544.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0181e9443b4f27873b46f09aa7a544.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0181e9443b4f27873b46f09aa7a544.jpg", "file_size": 15743, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#咖啡后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0181e9443b4f27873b46f09aa7a544.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0181e9443b4f27873b46f09aa7a544.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0181e9443b4f27873b46f09aa7a544.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0181e9443b4f27873b46f09aa7a544.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0181e9443b4f27873b46f09aa7a544.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3c_mjctpX7wd1tTD4ZFtNclzuNU=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.188979+00 2025-12-09 10:14:43.188984+00 3923 LZ1192#上身不下领1号色 SPMX-20240815299052 \N \N \N 1 \N [{"file_id": "e1cbcaae-7fb2-41f6-b583-10ff2d743243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4730241b5271466598ec75b70453e820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4730241b5271466598ec75b70453e820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4730241b5271466598ec75b70453e820.jpg", "file_size": 20745, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身不下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4730241b5271466598ec75b70453e820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4730241b5271466598ec75b70453e820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4730241b5271466598ec75b70453e820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4730241b5271466598ec75b70453e820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4730241b5271466598ec75b70453e820.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEqNG50RUOqJRlxkpJ-Bl41loqg=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.190096+00 2025-12-09 10:14:43.1901+00 3924 0001-43#S SPMX-20240815299053 \N \N \N 1 \N [{"file_id": "86df1836-93f3-4a76-8c6f-ac0039cadc7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b51ba726eaf14015af065b46d92fccb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b51ba726eaf14015af065b46d92fccb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b51ba726eaf14015af065b46d92fccb7.jpg", "file_size": 17056, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51ba726eaf14015af065b46d92fccb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51ba726eaf14015af065b46d92fccb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51ba726eaf14015af065b46d92fccb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b51ba726eaf14015af065b46d92fccb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b51ba726eaf14015af065b46d92fccb7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zj31HlJG07VGBgPH1XxIkta8rLc=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.191239+00 2025-12-09 10:14:43.191243+00 3925 8004#长款袖子土黄 SPMX-20240815299046 \N \N \N 1 \N [{"file_id": "0a7d2a82-8b53-44d1-b170-2e6e3cef02d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c1defbf51a4f76aae2a002deb06074.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c1defbf51a4f76aae2a002deb06074.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c1defbf51a4f76aae2a002deb06074.jpg", "file_size": 13542, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1defbf51a4f76aae2a002deb06074.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1defbf51a4f76aae2a002deb06074.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1defbf51a4f76aae2a002deb06074.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c1defbf51a4f76aae2a002deb06074.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c1defbf51a4f76aae2a002deb06074.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DesX0o6Ty3iejT6yVxFyjxZ4NWA=", "createTime": "2024-08-15 14:39:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.19234+00 2025-12-09 10:14:43.192344+00 3926 JS0974-A1#RC23 SPMX-20240815299056 \N \N \N 1 \N [{"file_id": "64068108-9383-4010-87a3-ee16d9ac9361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "838c7f931cf04ba1a5977ddf3128f121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "838c7f931cf04ba1a5977ddf3128f121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "838c7f931cf04ba1a5977ddf3128f121.jpg", "file_size": 19880, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838c7f931cf04ba1a5977ddf3128f121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838c7f931cf04ba1a5977ddf3128f121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838c7f931cf04ba1a5977ddf3128f121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/838c7f931cf04ba1a5977ddf3128f121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/838c7f931cf04ba1a5977ddf3128f121.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Euu4EJ-bCIfYpTq-Tqb6baZH1qk=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.193436+00 2025-12-09 10:14:43.19344+00 3927 8004#长款袖子墨绿 SPMX-20240815299057 \N \N \N 1 \N [{"file_id": "33e39fd6-6e87-4ddf-aec1-10e596e1b6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "875d66989c3349f9ac112d22aafdb189.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "875d66989c3349f9ac112d22aafdb189.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "875d66989c3349f9ac112d22aafdb189.jpg", "file_size": 14094, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875d66989c3349f9ac112d22aafdb189.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875d66989c3349f9ac112d22aafdb189.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875d66989c3349f9ac112d22aafdb189.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/875d66989c3349f9ac112d22aafdb189.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/875d66989c3349f9ac112d22aafdb189.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSwfnZJ17V4yygzRWGmcbuZKsjw=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.194544+00 2025-12-09 10:14:43.194547+00 3928 1042-1#彩兰 SPMX-20240815299051 \N \N \N 1 \N [{"file_id": "32fb050e-87db-4c62-b4e8-40968e16f339", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "269289a63a14452e97ef98cab464d0cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "269289a63a14452e97ef98cab464d0cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "269289a63a14452e97ef98cab464d0cf.jpg", "file_size": 13604, "is_delete": false, "file_type": 1, "original_file_name": "1042-1#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269289a63a14452e97ef98cab464d0cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269289a63a14452e97ef98cab464d0cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269289a63a14452e97ef98cab464d0cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/269289a63a14452e97ef98cab464d0cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/269289a63a14452e97ef98cab464d0cf.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAb4nG6r8KxBDAXxGDGTun2oHbY=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.195663+00 2025-12-09 10:14:43.195667+00 3929 DH1156892FWE#VS-D3 SPMX-20240815299055 \N \N \N 1 \N [{"file_id": "5750a4d5-db40-4ef0-a5b0-6a8eaf33886c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09359cff1b9c4a0b92fc09ac99edf452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09359cff1b9c4a0b92fc09ac99edf452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09359cff1b9c4a0b92fc09ac99edf452.jpg", "file_size": 20338, "is_delete": false, "file_type": 1, "original_file_name": "DH1156892FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09359cff1b9c4a0b92fc09ac99edf452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09359cff1b9c4a0b92fc09ac99edf452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09359cff1b9c4a0b92fc09ac99edf452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09359cff1b9c4a0b92fc09ac99edf452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09359cff1b9c4a0b92fc09ac99edf452.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BH4zhoFKbCYSlyX6bsiIG7rRF8Q=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.196765+00 2025-12-09 10:14:43.196769+00 3930 HSH014FW#红VS-D3 SPMX-20240815299047 \N \N \N 1 \N [{"file_id": "fb0a02f8-fea1-499a-aae4-8d80028d8498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79d1a9dc45d9457ca84dc8860fb6189a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79d1a9dc45d9457ca84dc8860fb6189a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79d1a9dc45d9457ca84dc8860fb6189a.jpg", "file_size": 21365, "is_delete": false, "file_type": 1, "original_file_name": "HSH014FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d1a9dc45d9457ca84dc8860fb6189a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d1a9dc45d9457ca84dc8860fb6189a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d1a9dc45d9457ca84dc8860fb6189a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79d1a9dc45d9457ca84dc8860fb6189a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79d1a9dc45d9457ca84dc8860fb6189a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THi7TKWn3DdRwmtiRH8N2hqD0o0=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.197846+00 2025-12-09 10:14:43.19785+00 3931 C23023#绿色S码 SPMX-20240815299048 \N \N \N 1 \N [{"file_id": "e3d3f227-590e-41b8-b7d2-036d022b3171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab3226ac59e34542b689106ed525af7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab3226ac59e34542b689106ed525af7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab3226ac59e34542b689106ed525af7f.jpg", "file_size": 21129, "is_delete": false, "file_type": 1, "original_file_name": "C23023#绿色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab3226ac59e34542b689106ed525af7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab3226ac59e34542b689106ed525af7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab3226ac59e34542b689106ed525af7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab3226ac59e34542b689106ed525af7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab3226ac59e34542b689106ed525af7f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYv9sBsY8t01aq3COCW6J1wrR4M=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.198938+00 2025-12-09 10:14:43.198941+00 3932 FHPKDK两口袋-004-3 SPMX-20240815299050 \N \N \N 1 \N [{"file_id": "f928782d-2146-4f27-b80e-82ed8c604c4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5112a69e70fd44ee993c3ac26a83eda4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5112a69e70fd44ee993c3ac26a83eda4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5112a69e70fd44ee993c3ac26a83eda4.jpg", "file_size": 61210, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDK两口袋-004-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5112a69e70fd44ee993c3ac26a83eda4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5112a69e70fd44ee993c3ac26a83eda4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5112a69e70fd44ee993c3ac26a83eda4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5112a69e70fd44ee993c3ac26a83eda4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5112a69e70fd44ee993c3ac26a83eda4.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzigQLx42mgfFeDzqLKK7sNcZIo=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.200149+00 2025-12-09 10:14:43.200153+00 3933 C23023#绿色XL码 SPMX-20240815299058 \N \N \N 1 \N [{"file_id": "312114b8-076a-4dd1-9b32-c627b546a9fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bd2cee3ef5f43a98fafc9c043185ac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bd2cee3ef5f43a98fafc9c043185ac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bd2cee3ef5f43a98fafc9c043185ac8.jpg", "file_size": 19624, "is_delete": false, "file_type": 1, "original_file_name": "C23023#绿色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd2cee3ef5f43a98fafc9c043185ac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd2cee3ef5f43a98fafc9c043185ac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd2cee3ef5f43a98fafc9c043185ac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bd2cee3ef5f43a98fafc9c043185ac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bd2cee3ef5f43a98fafc9c043185ac8.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHDVqpEAl5dld5MtQlMPxSx2CII=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.201278+00 2025-12-09 10:14:43.201282+00 3934 HSH014FW#蓝VS-D3 SPMX-20240815299059 \N \N \N 1 \N [{"file_id": "246bf683-9516-48be-a2fe-d0db69cb28c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34ccf26dc3504ac096253489a89f137a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34ccf26dc3504ac096253489a89f137a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34ccf26dc3504ac096253489a89f137a.jpg", "file_size": 21655, "is_delete": false, "file_type": 1, "original_file_name": "HSH014FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ccf26dc3504ac096253489a89f137a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ccf26dc3504ac096253489a89f137a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ccf26dc3504ac096253489a89f137a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34ccf26dc3504ac096253489a89f137a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34ccf26dc3504ac096253489a89f137a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Ls45fcDE2NEH124-vBOEFhYZ34=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.202365+00 2025-12-09 10:14:43.202369+00 3935 1042-1#枣红 SPMX-20240815299062 \N \N \N 1 \N [{"file_id": "da0afcc3-9919-41b9-adab-a668420e133d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba520b77c554a7790bc56ff45b98155.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba520b77c554a7790bc56ff45b98155.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba520b77c554a7790bc56ff45b98155.jpg", "file_size": 13778, "is_delete": false, "file_type": 1, "original_file_name": "1042-1#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba520b77c554a7790bc56ff45b98155.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba520b77c554a7790bc56ff45b98155.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba520b77c554a7790bc56ff45b98155.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba520b77c554a7790bc56ff45b98155.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba520b77c554a7790bc56ff45b98155.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDUkSjs7-82H7hkzOnxsnw6S75c=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.20348+00 2025-12-09 10:14:43.203484+00 3936 0001-43#XL SPMX-20240815299065 \N \N \N 1 \N [{"file_id": "8b2c9b69-9aea-431e-b2ed-fbba5bdeaab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cf609e0386544798b21b4c2375986d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cf609e0386544798b21b4c2375986d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cf609e0386544798b21b4c2375986d7.jpg", "file_size": 19507, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf609e0386544798b21b4c2375986d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf609e0386544798b21b4c2375986d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf609e0386544798b21b4c2375986d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cf609e0386544798b21b4c2375986d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cf609e0386544798b21b4c2375986d7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LenRKZAl8P5BPvNdi5r2ZCiThp8=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.20457+00 2025-12-09 10:14:43.204573+00 3937 C23023#绿色耳仔 SPMX-20240815299069 \N \N \N 1 \N [{"file_id": "1c99d13c-f64d-40be-8626-30e2e74da899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f5e94faa1f4264a4e3767fbd0fce68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f5e94faa1f4264a4e3767fbd0fce68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f5e94faa1f4264a4e3767fbd0fce68.jpg", "file_size": 7841, "is_delete": false, "file_type": 1, "original_file_name": "C23023#绿色耳仔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f5e94faa1f4264a4e3767fbd0fce68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f5e94faa1f4264a4e3767fbd0fce68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f5e94faa1f4264a4e3767fbd0fce68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f5e94faa1f4264a4e3767fbd0fce68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f5e94faa1f4264a4e3767fbd0fce68.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvYn6oybBN6DBG2xCtHB79yX6S0=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.205686+00 2025-12-09 10:14:43.20569+00 3938 LZ1192#上身不下领2号色 SPMX-20240815299063 \N \N \N 1 \N [{"file_id": "0d408373-36d2-463c-8d49-daaefb73e787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38c200b876db498288100bed641cd204.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38c200b876db498288100bed641cd204.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38c200b876db498288100bed641cd204.jpg", "file_size": 16986, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身不下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c200b876db498288100bed641cd204.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c200b876db498288100bed641cd204.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c200b876db498288100bed641cd204.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38c200b876db498288100bed641cd204.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38c200b876db498288100bed641cd204.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NOBEChYORRfCDjkahjpmGtC6l4=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.206768+00 2025-12-09 10:14:43.206772+00 3939 DH1157234FWE#VS-D3 SPMX-20240815299064 \N \N \N 1 \N [{"file_id": "2a935529-ff39-4547-9a07-a117f1311d57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "152a03b3d3284de99ce992604307ce48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "152a03b3d3284de99ce992604307ce48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "152a03b3d3284de99ce992604307ce48.jpg", "file_size": 20949, "is_delete": false, "file_type": 1, "original_file_name": "DH1157234FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/152a03b3d3284de99ce992604307ce48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/152a03b3d3284de99ce992604307ce48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/152a03b3d3284de99ce992604307ce48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/152a03b3d3284de99ce992604307ce48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/152a03b3d3284de99ce992604307ce48.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SletwBc-0cCgdiy3CdgIBmOGqSk=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.207879+00 2025-12-09 10:14:43.207884+00 3940 1042-1#湖绿 SPMX-20240815299071 \N \N \N 1 \N [{"file_id": "d94d0a35-b1e3-40bc-9d1e-281c5084b3b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a15fd10b73c745feaec62872a6b403fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a15fd10b73c745feaec62872a6b403fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a15fd10b73c745feaec62872a6b403fa.jpg", "file_size": 12727, "is_delete": false, "file_type": 1, "original_file_name": "1042-1#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15fd10b73c745feaec62872a6b403fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15fd10b73c745feaec62872a6b403fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15fd10b73c745feaec62872a6b403fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a15fd10b73c745feaec62872a6b403fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a15fd10b73c745feaec62872a6b403fa.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTl-kQliATxkhVRIEcBOT6YQnYw=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.208968+00 2025-12-09 10:14:43.208972+00 3941 LHJ9168#黑咖 SPMX-20240815299060 \N \N \N 1 \N [{"file_id": "e48f8413-c4e3-4183-ae3e-ab1c4cb68c84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb7d9df01a34a8c859b29240f40b9a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb7d9df01a34a8c859b29240f40b9a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb7d9df01a34a8c859b29240f40b9a7.jpg", "file_size": 15645, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#黑咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb7d9df01a34a8c859b29240f40b9a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb7d9df01a34a8c859b29240f40b9a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb7d9df01a34a8c859b29240f40b9a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb7d9df01a34a8c859b29240f40b9a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb7d9df01a34a8c859b29240f40b9a7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjPjP5Aj3MvQz4Q2EaLlGdIGh-g=", "createTime": "2024-08-15 14:39:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.210101+00 2025-12-09 10:14:43.210104+00 3942 FHPKDX-001-2-批布 SPMX-20240815299072 \N \N \N 1 \N [{"file_id": "f34a0561-0e42-4351-a1bb-bef5633b83f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg", "file_size": 45369, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-001-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bca4dd9b8bb40f4b6ef0b0afb390e6f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUm1Tz3czrdt-eQhrEA7eCPkG0g=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.21118+00 2025-12-09 10:14:43.211183+00 3943 LHJ9168#黑白后片+裤 SPMX-20240815299068 \N \N \N 1 \N [{"file_id": "866e0be2-8c08-4ed6-9e86-8896793944a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf26acf7d9e446d8bf778b54b448ba10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf26acf7d9e446d8bf778b54b448ba10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf26acf7d9e446d8bf778b54b448ba10.jpg", "file_size": 16440, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9168#黑白后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf26acf7d9e446d8bf778b54b448ba10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf26acf7d9e446d8bf778b54b448ba10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf26acf7d9e446d8bf778b54b448ba10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf26acf7d9e446d8bf778b54b448ba10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf26acf7d9e446d8bf778b54b448ba10.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hgnm5aingKgZ6T8ioU2_IEYuMQ=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.212327+00 2025-12-09 10:14:43.21233+00 3944 FHPKDX-001-1-批布 SPMX-20240815299061 \N \N \N 1 \N [{"file_id": "5752a1b7-8774-4b16-b95a-f02f79f029b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3bc04eee4dc4276ae82040fbfd16415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3bc04eee4dc4276ae82040fbfd16415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3bc04eee4dc4276ae82040fbfd16415.jpg", "file_size": 38766, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-001-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bc04eee4dc4276ae82040fbfd16415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bc04eee4dc4276ae82040fbfd16415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bc04eee4dc4276ae82040fbfd16415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3bc04eee4dc4276ae82040fbfd16415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3bc04eee4dc4276ae82040fbfd16415.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0e25udbriP2h5OOa7y7-wUg77rw=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.213445+00 2025-12-09 10:14:43.213449+00 3945 8004#长款袖子彩蓝 SPMX-20240815299067 \N \N \N 1 \N [{"file_id": "54596f60-3bfb-49be-8b52-3f8fc5355f71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58e518b832c44702b340e9a5175409fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58e518b832c44702b340e9a5175409fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58e518b832c44702b340e9a5175409fe.jpg", "file_size": 14491, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e518b832c44702b340e9a5175409fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e518b832c44702b340e9a5175409fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e518b832c44702b340e9a5175409fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58e518b832c44702b340e9a5175409fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58e518b832c44702b340e9a5175409fe.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDIwrWkpPKCvnoOrt73Xk91AFcw=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.214573+00 2025-12-09 10:14:43.214577+00 3946 HSH014FWE#VS-D3 SPMX-20240815299070 \N \N \N 1 \N [{"file_id": "2612240f-ceed-418e-9f61-16c2b97ffb67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1982852addb44225b08fc6e3f8f1b2ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1982852addb44225b08fc6e3f8f1b2ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1982852addb44225b08fc6e3f8f1b2ce.jpg", "file_size": 11720, "is_delete": false, "file_type": 1, "original_file_name": "HSH014FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1982852addb44225b08fc6e3f8f1b2ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1982852addb44225b08fc6e3f8f1b2ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1982852addb44225b08fc6e3f8f1b2ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1982852addb44225b08fc6e3f8f1b2ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1982852addb44225b08fc6e3f8f1b2ce.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q91TBRumG7lNO_s1HTPK9HgOHNs=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.215713+00 2025-12-09 10:14:43.215716+00 3947 23-2101#A12袖子4XL` SPMX-20240815299066 \N \N \N 1 \N [{"file_id": "a6a00930-dc4a-4ace-bc0c-e6edd3f98af3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c60be078876f4de194196f03d5d239f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c60be078876f4de194196f03d5d239f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c60be078876f4de194196f03d5d239f7.jpg", "file_size": 7676, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A12袖子4XL`.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60be078876f4de194196f03d5d239f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60be078876f4de194196f03d5d239f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60be078876f4de194196f03d5d239f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c60be078876f4de194196f03d5d239f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c60be078876f4de194196f03d5d239f7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTMQjIuKN-157N0DQfjGQr0DpVU=", "createTime": "2024-08-15 14:39:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.217002+00 2025-12-09 10:14:43.217006+00 3948 FHPKDX-001-3-批布 SPMX-20240815299082 \N \N \N 1 \N [{"file_id": "419ad828-dc97-4d8f-9180-5328e1e78a6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63bc487d89a04f42841f6f80f2263975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63bc487d89a04f42841f6f80f2263975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63bc487d89a04f42841f6f80f2263975.jpg", "file_size": 46232, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-001-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bc487d89a04f42841f6f80f2263975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bc487d89a04f42841f6f80f2263975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bc487d89a04f42841f6f80f2263975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63bc487d89a04f42841f6f80f2263975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63bc487d89a04f42841f6f80f2263975.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83EnPp-YIKTFBhJECaG8pesYePg=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.218299+00 2025-12-09 10:14:43.218304+00 3949 DH1164600FWE#VS-D3 SPMX-20240815299075 \N \N \N 1 \N [{"file_id": "f3982d32-c7ae-41a4-ac9f-e6e3f9da80f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9554073880c494b9d583edcd44b2722.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9554073880c494b9d583edcd44b2722.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9554073880c494b9d583edcd44b2722.jpg", "file_size": 25859, "is_delete": false, "file_type": 1, "original_file_name": "DH1164600FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9554073880c494b9d583edcd44b2722.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9554073880c494b9d583edcd44b2722.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9554073880c494b9d583edcd44b2722.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9554073880c494b9d583edcd44b2722.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9554073880c494b9d583edcd44b2722.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2SXH92dg0tYciLIZSHJ4nk3-MQA=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.219612+00 2025-12-09 10:14:43.219617+00 3950 0001-43#条纹 SPMX-20240815299076 \N \N \N 1 \N [{"file_id": "bbcf86fd-58e1-4c43-a7e1-0abefbeb7417", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c11c5b9a7854a6ea93444e965e0b653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c11c5b9a7854a6ea93444e965e0b653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c11c5b9a7854a6ea93444e965e0b653.jpg", "file_size": 13202, "is_delete": false, "file_type": 1, "original_file_name": "0001-43#条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c11c5b9a7854a6ea93444e965e0b653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c11c5b9a7854a6ea93444e965e0b653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c11c5b9a7854a6ea93444e965e0b653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c11c5b9a7854a6ea93444e965e0b653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c11c5b9a7854a6ea93444e965e0b653.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsaQr-NT40uG3QMrlsRo29hB6po=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.220931+00 2025-12-09 10:14:43.220936+00 3951 LHJ9169#1#黑咖 SPMX-20240815299081 \N \N \N 1 \N [{"file_id": "0bac4b75-93db-40f8-ad3a-08d5a4b41483", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b58e87588b04aaf9611f545e3ba7527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b58e87588b04aaf9611f545e3ba7527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b58e87588b04aaf9611f545e3ba7527.jpg", "file_size": 14382, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#1#黑咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b58e87588b04aaf9611f545e3ba7527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b58e87588b04aaf9611f545e3ba7527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b58e87588b04aaf9611f545e3ba7527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b58e87588b04aaf9611f545e3ba7527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b58e87588b04aaf9611f545e3ba7527.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59v3Q5OH0AdOu45_lBNKtILtC-E=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.222222+00 2025-12-09 10:14:43.222227+00 3952 8004#长款袖子枣红 SPMX-20240815299077 \N \N \N 1 \N [{"file_id": "68cef458-e6a1-4b81-ba93-84d5f848341a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e43584ae7fe4eca8068e6373ed2a1b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e43584ae7fe4eca8068e6373ed2a1b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e43584ae7fe4eca8068e6373ed2a1b4.jpg", "file_size": 14058, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e43584ae7fe4eca8068e6373ed2a1b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e43584ae7fe4eca8068e6373ed2a1b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e43584ae7fe4eca8068e6373ed2a1b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e43584ae7fe4eca8068e6373ed2a1b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e43584ae7fe4eca8068e6373ed2a1b4.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wZjPIruJdSs8zHbmIA5TiVEn0Uw=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.223512+00 2025-12-09 10:14:43.223516+00 3953 LZ1192#上身不下领4号色 SPMX-20240815299084 \N \N \N 1 \N [{"file_id": "ac7da918-9721-460a-a437-1e33ee490422", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "008753d8e2fd43ceacfaa4a1d80dab89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "008753d8e2fd43ceacfaa4a1d80dab89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "008753d8e2fd43ceacfaa4a1d80dab89.jpg", "file_size": 20721, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身不下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/008753d8e2fd43ceacfaa4a1d80dab89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/008753d8e2fd43ceacfaa4a1d80dab89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/008753d8e2fd43ceacfaa4a1d80dab89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/008753d8e2fd43ceacfaa4a1d80dab89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/008753d8e2fd43ceacfaa4a1d80dab89.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24tO_T7jZnjG6xNQELFnunq98SU=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.224833+00 2025-12-09 10:14:43.224838+00 3954 0001-43FWE#上衣 SPMX-20240815299085 \N \N \N 1 \N [{"file_id": "39e57df0-adc9-4607-807d-f930e7ca28be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05fd1f878a7f4ffa8963ec085adf03b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05fd1f878a7f4ffa8963ec085adf03b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05fd1f878a7f4ffa8963ec085adf03b2.jpg", "file_size": 13904, "is_delete": false, "file_type": 1, "original_file_name": "0001-43FWE#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fd1f878a7f4ffa8963ec085adf03b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fd1f878a7f4ffa8963ec085adf03b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fd1f878a7f4ffa8963ec085adf03b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05fd1f878a7f4ffa8963ec085adf03b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05fd1f878a7f4ffa8963ec085adf03b2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IYtUbKOto_XoeXfr4MvsY2_olE=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.226129+00 2025-12-09 10:14:43.226134+00 3955 DH1164601FWE#VS-D3 SPMX-20240815299086 \N \N \N 1 \N [{"file_id": "b71bf925-4e7e-4973-b120-f63fa74183b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5544810a99154a9c8792572960808fa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5544810a99154a9c8792572960808fa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5544810a99154a9c8792572960808fa5.jpg", "file_size": 25837, "is_delete": false, "file_type": 1, "original_file_name": "DH1164601FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5544810a99154a9c8792572960808fa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5544810a99154a9c8792572960808fa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5544810a99154a9c8792572960808fa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5544810a99154a9c8792572960808fa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5544810a99154a9c8792572960808fa5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sl5zCbvrIEgW-uf4yn_hkBoLw5o=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.227417+00 2025-12-09 10:14:43.227422+00 3956 C23023#袖子补片L码 SPMX-20240815299078 \N \N \N 1 \N [{"file_id": "250a285c-e423-4a6a-bdec-e8decb20b3d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg", "file_size": 21357, "is_delete": false, "file_type": 1, "original_file_name": "C23023#袖子补片L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfa184fa7f6e4b7abfdbbecce40b8bbd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UMB59fvs1wUdffjQqWxSXZS0oY=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.228719+00 2025-12-09 10:14:43.228724+00 3957 LZ1192#上身不下领3号色 SPMX-20240815299074 \N \N \N 1 \N [{"file_id": "31524e26-2166-4e27-a256-134d987bc099", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd413643184c49fd8f2dd2fef9fc34cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd413643184c49fd8f2dd2fef9fc34cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd413643184c49fd8f2dd2fef9fc34cb.jpg", "file_size": 18780, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#上身不下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd413643184c49fd8f2dd2fef9fc34cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd413643184c49fd8f2dd2fef9fc34cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd413643184c49fd8f2dd2fef9fc34cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd413643184c49fd8f2dd2fef9fc34cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd413643184c49fd8f2dd2fef9fc34cb.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wnpScSB8e1K_jIjm_CphwfIV4Q8=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.230037+00 2025-12-09 10:14:43.230042+00 3958 HSH015#C SPMX-20240815299080 \N \N \N 1 \N [{"file_id": "4c867b01-f976-4c99-a55e-41d6eb8c5a29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4644812e3b664e75974b36968c3482e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4644812e3b664e75974b36968c3482e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4644812e3b664e75974b36968c3482e3.jpg", "file_size": 20511, "is_delete": false, "file_type": 1, "original_file_name": "HSH015#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4644812e3b664e75974b36968c3482e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4644812e3b664e75974b36968c3482e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4644812e3b664e75974b36968c3482e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4644812e3b664e75974b36968c3482e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4644812e3b664e75974b36968c3482e3.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKhpScVcL_t3fE8xzj-AqXn_7vo=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.231771+00 2025-12-09 10:14:43.231775+00 3959 1042-1#藏青 SPMX-20240815299083 \N \N \N 1 \N [{"file_id": "456bdf1f-e547-4b05-ad0c-8f27df2395c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c41ec3e31eb44a6ea53e9c75960da0fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c41ec3e31eb44a6ea53e9c75960da0fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c41ec3e31eb44a6ea53e9c75960da0fb.jpg", "file_size": 14237, "is_delete": false, "file_type": 1, "original_file_name": "1042-1#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41ec3e31eb44a6ea53e9c75960da0fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41ec3e31eb44a6ea53e9c75960da0fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41ec3e31eb44a6ea53e9c75960da0fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c41ec3e31eb44a6ea53e9c75960da0fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c41ec3e31eb44a6ea53e9c75960da0fb.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4h1msEjdgl9iGQbLDx6zeQuzFCM=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.233063+00 2025-12-09 10:14:43.233068+00 3960 23-2101#A12领子通用 SPMX-20240815299073 \N \N \N 1 \N [{"file_id": "20f3a625-ce35-41ce-9b38-a92dc4b8aa39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d314c4de5e324c288953d577f628b63c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d314c4de5e324c288953d577f628b63c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d314c4de5e324c288953d577f628b63c.jpg", "file_size": 10940, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A12领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314c4de5e324c288953d577f628b63c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314c4de5e324c288953d577f628b63c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314c4de5e324c288953d577f628b63c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d314c4de5e324c288953d577f628b63c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d314c4de5e324c288953d577f628b63c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbu6XmwbllQrd7Vrv7sTrY2eS9k=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.23435+00 2025-12-09 10:14:43.234355+00 3961 JS0974-A10#2XL SPMX-20240815299079 \N \N \N 1 \N [{"file_id": "77533d69-e151-4024-b9a2-be05ba0a2dd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e332e946e7a4884aeed8407936372b5.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e332e946e7a4884aeed8407936372b5.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e332e946e7a4884aeed8407936372b5.bmp", "file_size": 363054, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#2XL.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e332e946e7a4884aeed8407936372b5.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e332e946e7a4884aeed8407936372b5.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e332e946e7a4884aeed8407936372b5.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e332e946e7a4884aeed8407936372b5.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e332e946e7a4884aeed8407936372b5.bmp?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItLTfARv_x6-b0kIJVeYawNLfsI=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.235664+00 2025-12-09 10:14:43.235669+00 3962 23-2101#A13前后片3XL SPMX-20240815299090 \N \N \N 1 \N [{"file_id": "b2913f4a-75db-414e-9b31-da5c4208b536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c47d1c4cd2d74117a6feb26d0f9631ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c47d1c4cd2d74117a6feb26d0f9631ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c47d1c4cd2d74117a6feb26d0f9631ad.jpg", "file_size": 9905, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A13前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c47d1c4cd2d74117a6feb26d0f9631ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c47d1c4cd2d74117a6feb26d0f9631ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c47d1c4cd2d74117a6feb26d0f9631ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c47d1c4cd2d74117a6feb26d0f9631ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c47d1c4cd2d74117a6feb26d0f9631ad.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S77ZzXvUhmgtqSHRX_oUJ77LlSg=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.236957+00 2025-12-09 10:14:43.236962+00 3963 DH1164927FWE#VS-D3 SPMX-20240815299097 \N \N \N 1 \N [{"file_id": "20d2e6b2-52f6-480c-9288-19c62d0a947a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b89d8879f50642b091ce7a48d1cdab15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b89d8879f50642b091ce7a48d1cdab15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b89d8879f50642b091ce7a48d1cdab15.jpg", "file_size": 12363, "is_delete": false, "file_type": 1, "original_file_name": "DH1164927FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89d8879f50642b091ce7a48d1cdab15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89d8879f50642b091ce7a48d1cdab15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89d8879f50642b091ce7a48d1cdab15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b89d8879f50642b091ce7a48d1cdab15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b89d8879f50642b091ce7a48d1cdab15.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDGa1SdsNB1UuHYE0h-91ue4kmo=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.238241+00 2025-12-09 10:14:43.238246+00 3964 HSH015#杏底 SPMX-20240815299098 \N \N \N 1 \N [{"file_id": "2b781647-0f0a-42a8-b995-642f9b0abc92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "637b4572d39c47cdb5950308b6c7a27a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "637b4572d39c47cdb5950308b6c7a27a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "637b4572d39c47cdb5950308b6c7a27a.jpg", "file_size": 20648, "is_delete": false, "file_type": 1, "original_file_name": "HSH015#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b4572d39c47cdb5950308b6c7a27a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b4572d39c47cdb5950308b6c7a27a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b4572d39c47cdb5950308b6c7a27a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/637b4572d39c47cdb5950308b6c7a27a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/637b4572d39c47cdb5950308b6c7a27a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_IKnKyy_D-JZW-o7zezFAO5CpE=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.23953+00 2025-12-09 10:14:43.239535+00 3965 C23023#黑色L码 SPMX-20240815299088 \N \N \N 1 \N [{"file_id": "40413133-f002-4962-bd45-c747c694ba19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afbe19a0c7b841518847a9f536fd3531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afbe19a0c7b841518847a9f536fd3531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afbe19a0c7b841518847a9f536fd3531.jpg", "file_size": 21330, "is_delete": false, "file_type": 1, "original_file_name": "C23023#黑色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbe19a0c7b841518847a9f536fd3531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbe19a0c7b841518847a9f536fd3531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbe19a0c7b841518847a9f536fd3531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afbe19a0c7b841518847a9f536fd3531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afbe19a0c7b841518847a9f536fd3531.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJXtz0DOgIu4ZjiKIT8KV-MzCJc=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.240817+00 2025-12-09 10:14:43.240821+00 3966 HSH015#VS-D3 SPMX-20240815299089 \N \N \N 1 \N [{"file_id": "d4c75185-89fa-49ee-bd13-e019b4d65b67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd1f03c855ff41c2acbddd7c2a78ab57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd1f03c855ff41c2acbddd7c2a78ab57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd1f03c855ff41c2acbddd7c2a78ab57.jpg", "file_size": 23772, "is_delete": false, "file_type": 1, "original_file_name": "HSH015#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd1f03c855ff41c2acbddd7c2a78ab57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd1f03c855ff41c2acbddd7c2a78ab57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd1f03c855ff41c2acbddd7c2a78ab57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd1f03c855ff41c2acbddd7c2a78ab57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd1f03c855ff41c2acbddd7c2a78ab57.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSrQ8dHSKW7nDhLtjgp4uQCjV2A=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.24199+00 2025-12-09 10:14:43.241994+00 3967 LZ1192#下身1号色 SPMX-20240815299095 \N \N \N 1 \N [{"file_id": "fec32e3a-6fd4-456f-a3ad-44b8571e4168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c9fa0b523a546abb2dab509a5787566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c9fa0b523a546abb2dab509a5787566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c9fa0b523a546abb2dab509a5787566.jpg", "file_size": 18932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c9fa0b523a546abb2dab509a5787566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c9fa0b523a546abb2dab509a5787566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c9fa0b523a546abb2dab509a5787566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c9fa0b523a546abb2dab509a5787566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c9fa0b523a546abb2dab509a5787566.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXvq5GoVz-sMZkKLNM10UGVbRXs=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.24312+00 2025-12-09 10:14:43.243125+00 3968 FHPKDX-001-4-批布 SPMX-20240815299093 \N \N \N 1 \N [{"file_id": "140ccd66-a98b-4e61-a4bb-24e924cf95ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45476ad9def544f3aa440f99f1433ef2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45476ad9def544f3aa440f99f1433ef2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45476ad9def544f3aa440f99f1433ef2.jpg", "file_size": 37081, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-001-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45476ad9def544f3aa440f99f1433ef2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45476ad9def544f3aa440f99f1433ef2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45476ad9def544f3aa440f99f1433ef2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45476ad9def544f3aa440f99f1433ef2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45476ad9def544f3aa440f99f1433ef2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqniF7qRMlHhunaHo44TpJBp_KM=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.244229+00 2025-12-09 10:14:43.244233+00 3969 1042-1#黄色 SPMX-20240815299094 \N \N \N 1 \N [{"file_id": "0be0c96c-31bc-445d-b5f0-daa8a31a424a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff3e50416da4207b0560309c514695b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff3e50416da4207b0560309c514695b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff3e50416da4207b0560309c514695b.jpg", "file_size": 12394, "is_delete": false, "file_type": 1, "original_file_name": "1042-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff3e50416da4207b0560309c514695b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff3e50416da4207b0560309c514695b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff3e50416da4207b0560309c514695b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff3e50416da4207b0560309c514695b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff3e50416da4207b0560309c514695b.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-zMdvNRb-pD67T8LPbFUiun9hU=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.245339+00 2025-12-09 10:14:43.245343+00 3970 0001-43FWE#领子 SPMX-20240815299096 \N \N \N 1 \N [{"file_id": "bf14ba0c-965b-494b-b63c-ffc638a9562f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0d5502d7141485388dc8732c29b3d60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0d5502d7141485388dc8732c29b3d60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0d5502d7141485388dc8732c29b3d60.jpg", "file_size": 17011, "is_delete": false, "file_type": 1, "original_file_name": "0001-43FWE#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d5502d7141485388dc8732c29b3d60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d5502d7141485388dc8732c29b3d60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d5502d7141485388dc8732c29b3d60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0d5502d7141485388dc8732c29b3d60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0d5502d7141485388dc8732c29b3d60.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGbQzYnlIFW0iXqb8HugJqoBHMw=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.246439+00 2025-12-09 10:14:43.246443+00 3971 LHJ9169#1#黑白 SPMX-20240815299092 \N \N \N 1 \N [{"file_id": "e2a4f272-85a6-4ba1-8ade-3b5ec37ff8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2b75bc25d1c4f64b446978c60a2af7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2b75bc25d1c4f64b446978c60a2af7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2b75bc25d1c4f64b446978c60a2af7e.jpg", "file_size": 15245, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#1#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b75bc25d1c4f64b446978c60a2af7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b75bc25d1c4f64b446978c60a2af7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b75bc25d1c4f64b446978c60a2af7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2b75bc25d1c4f64b446978c60a2af7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2b75bc25d1c4f64b446978c60a2af7e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfUk5So-SJ_GNpTEXGvQibO9Yyg=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.247547+00 2025-12-09 10:14:43.247551+00 3972 8004#长款袖子紫色 SPMX-20240815299087 \N \N \N 1 \N [{"file_id": "776c47ee-d000-49d2-b3b3-504c75a894e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df62018b35c546f6b81eef72f1380bb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df62018b35c546f6b81eef72f1380bb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df62018b35c546f6b81eef72f1380bb9.jpg", "file_size": 13766, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df62018b35c546f6b81eef72f1380bb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df62018b35c546f6b81eef72f1380bb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df62018b35c546f6b81eef72f1380bb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df62018b35c546f6b81eef72f1380bb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df62018b35c546f6b81eef72f1380bb9.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnIdgD7MF7MindGnCM3l7zlC-j0=", "createTime": "2024-08-15 14:39:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.248657+00 2025-12-09 10:14:43.248661+00 3973 FHPKDX-002-1-批布 SPMX-20240815299099 \N \N \N 1 \N [{"file_id": "11666d17-3fed-4ea1-94cf-5e8e83554fd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "157fd417dd9d42b3a6b2b72b6d4e5f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "157fd417dd9d42b3a6b2b72b6d4e5f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "157fd417dd9d42b3a6b2b72b6d4e5f42.jpg", "file_size": 35416, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-002-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157fd417dd9d42b3a6b2b72b6d4e5f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157fd417dd9d42b3a6b2b72b6d4e5f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157fd417dd9d42b3a6b2b72b6d4e5f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/157fd417dd9d42b3a6b2b72b6d4e5f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/157fd417dd9d42b3a6b2b72b6d4e5f42.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l2z07AbQaZpteDT4wBKi9ViH5IQ=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.249796+00 2025-12-09 10:14:43.2498+00 3974 JS0974-A10#L SPMX-20240815299091 \N \N \N 1 \N [{"file_id": "66daa474-0597-47e7-a3f9-e9410d2737f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb427461852c416db7adf508c2daa09c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb427461852c416db7adf508c2daa09c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb427461852c416db7adf508c2daa09c.jpg", "file_size": 16607, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb427461852c416db7adf508c2daa09c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb427461852c416db7adf508c2daa09c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb427461852c416db7adf508c2daa09c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb427461852c416db7adf508c2daa09c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb427461852c416db7adf508c2daa09c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:09F_WARyVdGvWF-bXqdBulOIxGQ=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.250905+00 2025-12-09 10:14:43.250909+00 3975 FHPKDX-002-2-批布 SPMX-20240815299109 \N \N \N 1 \N [{"file_id": "d3d6c728-3074-4148-8d90-3d218b98d8f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bef6ac134d20407fa4a6f12bc934d2b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bef6ac134d20407fa4a6f12bc934d2b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bef6ac134d20407fa4a6f12bc934d2b2.jpg", "file_size": 43716, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-002-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef6ac134d20407fa4a6f12bc934d2b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef6ac134d20407fa4a6f12bc934d2b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bef6ac134d20407fa4a6f12bc934d2b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bef6ac134d20407fa4a6f12bc934d2b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bef6ac134d20407fa4a6f12bc934d2b2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZQA0cONJgp9ucOhV-mkL1ANgoY=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.252023+00 2025-12-09 10:14:43.252028+00 3976 8004#长款袖子黄绿 SPMX-20240815299102 \N \N \N 1 \N [{"file_id": "9df01f27-b8b8-4018-893d-5a05ef82578c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8774ae1040442d8290a9cb99ab79d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8774ae1040442d8290a9cb99ab79d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8774ae1040442d8290a9cb99ab79d0.jpg", "file_size": 13435, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8774ae1040442d8290a9cb99ab79d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8774ae1040442d8290a9cb99ab79d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8774ae1040442d8290a9cb99ab79d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8774ae1040442d8290a9cb99ab79d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8774ae1040442d8290a9cb99ab79d0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6twxSUjtYuSb7aw7wq1CucK_rDk=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.253127+00 2025-12-09 10:14:43.253131+00 3977 HSH015FW#VS-D3 SPMX-20240815299106 \N \N \N 1 \N [{"file_id": "508d16a1-0d9c-40f4-9dbc-4ac6504e7957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59815c19b57a451ab3c51f406ee3379b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59815c19b57a451ab3c51f406ee3379b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59815c19b57a451ab3c51f406ee3379b.jpg", "file_size": 12390, "is_delete": false, "file_type": 1, "original_file_name": "HSH015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59815c19b57a451ab3c51f406ee3379b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59815c19b57a451ab3c51f406ee3379b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59815c19b57a451ab3c51f406ee3379b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59815c19b57a451ab3c51f406ee3379b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59815c19b57a451ab3c51f406ee3379b.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TChQY1i2_Lt0DyRIro_kM_qazS8=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.25426+00 2025-12-09 10:14:43.254264+00 3978 LZ1192#下身2号色 SPMX-20240815299108 \N \N \N 1 \N [{"file_id": "5da2621a-118a-421f-9cf3-e5735bd1da8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f212388512442bae071d64c6d6bd41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f212388512442bae071d64c6d6bd41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f212388512442bae071d64c6d6bd41.jpg", "file_size": 16700, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f212388512442bae071d64c6d6bd41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f212388512442bae071d64c6d6bd41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f212388512442bae071d64c6d6bd41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f212388512442bae071d64c6d6bd41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f212388512442bae071d64c6d6bd41.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1SZGCLbUOlQheIuioOx-HNcpIxE=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.255352+00 2025-12-09 10:14:43.255356+00 3979 1042FWF#-1 SPMX-20240815299105 \N \N \N 1 \N [{"file_id": "efdfbafd-7593-4cdf-b6a7-d41ab38183ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7542aa20c7fc4a2cb7826f783c7f81f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7542aa20c7fc4a2cb7826f783c7f81f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7542aa20c7fc4a2cb7826f783c7f81f1.jpg", "file_size": 23532, "is_delete": false, "file_type": 1, "original_file_name": "1042FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7542aa20c7fc4a2cb7826f783c7f81f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7542aa20c7fc4a2cb7826f783c7f81f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7542aa20c7fc4a2cb7826f783c7f81f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7542aa20c7fc4a2cb7826f783c7f81f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7542aa20c7fc4a2cb7826f783c7f81f1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDmHwKw6g9ALT2zwf0veATNbOA8=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.256457+00 2025-12-09 10:14:43.256461+00 3980 23-2101#A13前后片4XL SPMX-20240815299103 \N \N \N 1 \N [{"file_id": "8e325170-e07e-426d-b8d3-6a0c90d18427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg", "file_size": 9569, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A13前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ac5efcf27874f64b1dd5c57b1c3c9b2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2ZVHpymJNe7iz8AxZcwTvYA4Gc=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.257565+00 2025-12-09 10:14:43.257569+00 3981 C23023#黑色M码 SPMX-20240815299101 \N \N \N 1 \N [{"file_id": "94ee30a1-95ca-4e9a-9304-d677f884d383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7c53349c1c5498c924d456da2585e0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7c53349c1c5498c924d456da2585e0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7c53349c1c5498c924d456da2585e0d.jpg", "file_size": 21692, "is_delete": false, "file_type": 1, "original_file_name": "C23023#黑色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c53349c1c5498c924d456da2585e0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c53349c1c5498c924d456da2585e0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c53349c1c5498c924d456da2585e0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7c53349c1c5498c924d456da2585e0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7c53349c1c5498c924d456da2585e0d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWt71XpM51B9mXlNeKYzJQgHmBo=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.258692+00 2025-12-09 10:14:43.258696+00 3982 JS0974-A10#M SPMX-20240815299110 \N \N \N 1 \N [{"file_id": "3c2d050b-dd38-45fe-8838-95e1bcc0e7ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e29e622151484bfca5b0c9b06a940063.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e29e622151484bfca5b0c9b06a940063.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e29e622151484bfca5b0c9b06a940063.jpg", "file_size": 16711, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29e622151484bfca5b0c9b06a940063.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29e622151484bfca5b0c9b06a940063.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29e622151484bfca5b0c9b06a940063.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e29e622151484bfca5b0c9b06a940063.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e29e622151484bfca5b0c9b06a940063.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ga48RZ25e97aD7HeWBfpZIEXx_k=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.260138+00 2025-12-09 10:14:43.260142+00 3983 0001-43FWF#V5曲线 SPMX-20240815299107 \N \N \N 1 \N [{"file_id": "1d24860d-8f3f-4f36-8b6c-5c8ed33c1311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6753772267134da6883056bb86a07f12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6753772267134da6883056bb86a07f12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6753772267134da6883056bb86a07f12.jpg", "file_size": 12902, "is_delete": false, "file_type": 1, "original_file_name": "0001-43FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6753772267134da6883056bb86a07f12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6753772267134da6883056bb86a07f12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6753772267134da6883056bb86a07f12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6753772267134da6883056bb86a07f12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6753772267134da6883056bb86a07f12.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92EpXRT_GVaI_MwNUEPwMEoDI60=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.261269+00 2025-12-09 10:14:43.261273+00 3984 JS0974-A10#LWQ15 SPMX-20240815299100 \N \N \N 1 \N [{"file_id": "4babdc17-11a4-4d1e-81d2-2b5e43855aa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7447be1938a438e9c7579619bcd1e67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7447be1938a438e9c7579619bcd1e67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7447be1938a438e9c7579619bcd1e67.jpg", "file_size": 16931, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7447be1938a438e9c7579619bcd1e67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7447be1938a438e9c7579619bcd1e67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7447be1938a438e9c7579619bcd1e67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7447be1938a438e9c7579619bcd1e67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7447be1938a438e9c7579619bcd1e67.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LUi7m5fwdh03itNiXmHVf_3cttw=", "createTime": "2024-08-15 14:39:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.262361+00 2025-12-09 10:14:43.262365+00 3985 DH19000522#2XL SPMX-20240815299111 \N \N \N 1 \N [{"file_id": "c750c9b8-6906-4bd6-95e1-81ffae1f42b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60a7446a18c94becabbecec97cdec5e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60a7446a18c94becabbecec97cdec5e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60a7446a18c94becabbecec97cdec5e2.jpg", "file_size": 16896, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a7446a18c94becabbecec97cdec5e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a7446a18c94becabbecec97cdec5e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a7446a18c94becabbecec97cdec5e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60a7446a18c94becabbecec97cdec5e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60a7446a18c94becabbecec97cdec5e2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NJkcpnOe13WcLYh0w6VEu_aWAA4=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.26348+00 2025-12-09 10:14:43.263484+00 3986 LHJ9169#135#绿色前片 SPMX-20240815299104 \N \N \N 1 \N [{"file_id": "fe4ff91c-85b9-4cfb-95aa-0c476d9c8c51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d34a08d7c84dca84983d6f931a0d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d34a08d7c84dca84983d6f931a0d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d34a08d7c84dca84983d6f931a0d28.jpg", "file_size": 14496, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#135#绿色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d34a08d7c84dca84983d6f931a0d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d34a08d7c84dca84983d6f931a0d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d34a08d7c84dca84983d6f931a0d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d34a08d7c84dca84983d6f931a0d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d34a08d7c84dca84983d6f931a0d28.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:diR9yPxJTCQkMxawZ6-r3FGArZQ=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.264588+00 2025-12-09 10:14:43.264591+00 3987 FHPKDX-002-3-批布 SPMX-20240815299121 \N \N \N 1 \N [{"file_id": "684aabf4-2d6b-4195-b2f0-87efb3374dad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d2e6df5e6c492184c05b482cba0e8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d2e6df5e6c492184c05b482cba0e8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d2e6df5e6c492184c05b482cba0e8f.jpg", "file_size": 42230, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-002-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d2e6df5e6c492184c05b482cba0e8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d2e6df5e6c492184c05b482cba0e8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d2e6df5e6c492184c05b482cba0e8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d2e6df5e6c492184c05b482cba0e8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d2e6df5e6c492184c05b482cba0e8f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KrXg8dIfjrPe5bF4mXn4qhPY34M=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.265715+00 2025-12-09 10:14:43.26572+00 3988 23-2101#A13袖子4XL SPMX-20240815299123 \N \N \N 1 \N [{"file_id": "8d6c84a1-10a5-4c3d-909e-186df3cb0cef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65212c5c9cfd417e9412f3f475617bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65212c5c9cfd417e9412f3f475617bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65212c5c9cfd417e9412f3f475617bff.jpg", "file_size": 8935, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A13袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65212c5c9cfd417e9412f3f475617bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65212c5c9cfd417e9412f3f475617bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65212c5c9cfd417e9412f3f475617bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65212c5c9cfd417e9412f3f475617bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65212c5c9cfd417e9412f3f475617bff.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q77wv1F5EjU-3nOT4E3miGSpi8o=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.26681+00 2025-12-09 10:14:43.266814+00 3989 LHJ9169#135#绿色后片+裤 SPMX-20240815299119 \N \N \N 1 \N [{"file_id": "54dc922b-4dde-40fd-a1f6-1447269218fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d000d8e4fd641738a467145049826cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d000d8e4fd641738a467145049826cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d000d8e4fd641738a467145049826cc.jpg", "file_size": 13982, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#135#绿色后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d000d8e4fd641738a467145049826cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d000d8e4fd641738a467145049826cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d000d8e4fd641738a467145049826cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d000d8e4fd641738a467145049826cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d000d8e4fd641738a467145049826cc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEUcjzSlk9BSgjZKiw9vMEe2t3Q=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.267943+00 2025-12-09 10:14:43.267947+00 3990 C23023#黑色XL码 SPMX-20240815299125 \N \N \N 1 \N [{"file_id": "4252ee37-20de-474b-8ec6-c190f2ea360a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9d00ea4ec5843aab07e242b756c7c38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9d00ea4ec5843aab07e242b756c7c38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9d00ea4ec5843aab07e242b756c7c38.jpg", "file_size": 20422, "is_delete": false, "file_type": 1, "original_file_name": "C23023#黑色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d00ea4ec5843aab07e242b756c7c38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d00ea4ec5843aab07e242b756c7c38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d00ea4ec5843aab07e242b756c7c38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9d00ea4ec5843aab07e242b756c7c38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9d00ea4ec5843aab07e242b756c7c38.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1TX-_dJe_az5tHkIw9MUmJP184=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.269042+00 2025-12-09 10:14:43.269046+00 3991 1042FWF#-3 SPMX-20240815299124 \N \N \N 1 \N [{"file_id": "9220c376-6a38-498e-909a-4aac6531db9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ede46e69cd2410fb1edef6f54bfe93c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ede46e69cd2410fb1edef6f54bfe93c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ede46e69cd2410fb1edef6f54bfe93c.jpg", "file_size": 20064, "is_delete": false, "file_type": 1, "original_file_name": "1042FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ede46e69cd2410fb1edef6f54bfe93c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ede46e69cd2410fb1edef6f54bfe93c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ede46e69cd2410fb1edef6f54bfe93c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ede46e69cd2410fb1edef6f54bfe93c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ede46e69cd2410fb1edef6f54bfe93c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GReZaPfBnS3v0Ep_Bk1WF4qnfiQ=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.270132+00 2025-12-09 10:14:43.270136+00 3992 HSH015FWE#VS-D3 SPMX-20240815299115 \N \N \N 1 \N [{"file_id": "515e7ba9-5b27-494f-b0fe-34265ea373db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0fd797cdd0e426c8052b685f85b015c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0fd797cdd0e426c8052b685f85b015c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0fd797cdd0e426c8052b685f85b015c.jpg", "file_size": 20254, "is_delete": false, "file_type": 1, "original_file_name": "HSH015FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fd797cdd0e426c8052b685f85b015c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fd797cdd0e426c8052b685f85b015c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fd797cdd0e426c8052b685f85b015c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0fd797cdd0e426c8052b685f85b015c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0fd797cdd0e426c8052b685f85b015c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v20-4lN8II-niAEtxhjHTHmb-2k=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.271212+00 2025-12-09 10:14:43.271217+00 3993 1042FWF#-2 SPMX-20240815299112 \N \N \N 1 \N [{"file_id": "2bec3708-aff7-4e2b-bdd9-ced6b109a81f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89fd236eef754675bdaadd2c0bfe5fa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89fd236eef754675bdaadd2c0bfe5fa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89fd236eef754675bdaadd2c0bfe5fa1.jpg", "file_size": 20068, "is_delete": false, "file_type": 1, "original_file_name": "1042FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd236eef754675bdaadd2c0bfe5fa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd236eef754675bdaadd2c0bfe5fa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd236eef754675bdaadd2c0bfe5fa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89fd236eef754675bdaadd2c0bfe5fa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89fd236eef754675bdaadd2c0bfe5fa1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GavUBeslFQuHa3xb4SyqoP-S75o=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.272337+00 2025-12-09 10:14:43.272341+00 3994 8004#长款袖子黑色 SPMX-20240815299116 \N \N \N 1 \N [{"file_id": "c547bb64-5639-43ae-81d1-16fa11032436", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79fb6e95ef1042f9857d6de66d391bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79fb6e95ef1042f9857d6de66d391bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79fb6e95ef1042f9857d6de66d391bc7.jpg", "file_size": 14738, "is_delete": false, "file_type": 1, "original_file_name": "8004#长款袖子黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fb6e95ef1042f9857d6de66d391bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fb6e95ef1042f9857d6de66d391bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fb6e95ef1042f9857d6de66d391bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79fb6e95ef1042f9857d6de66d391bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79fb6e95ef1042f9857d6de66d391bc7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0tmc-IneypN_5vi9oN5kohESs3U=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.273446+00 2025-12-09 10:14:43.273451+00 3995 JS0974-A10#RC23 SPMX-20240815299120 \N \N \N 1 \N [{"file_id": "db48dbbf-e32e-436b-86bf-b53209c289fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9285b4cbf528432bb488378d01998df1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9285b4cbf528432bb488378d01998df1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9285b4cbf528432bb488378d01998df1.jpg", "file_size": 69152, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9285b4cbf528432bb488378d01998df1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9285b4cbf528432bb488378d01998df1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9285b4cbf528432bb488378d01998df1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9285b4cbf528432bb488378d01998df1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9285b4cbf528432bb488378d01998df1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPMSsmItA05DKcfb-X3YvCTa7hw=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.27454+00 2025-12-09 10:14:43.274544+00 3996 LZ1192#下身3号色 SPMX-20240815299118 \N \N \N 1 \N [{"file_id": "5cfcf854-3d77-488b-b2da-e29b938b019a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec116860c5940eba2259f442b3efba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec116860c5940eba2259f442b3efba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec116860c5940eba2259f442b3efba5.jpg", "file_size": 17818, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec116860c5940eba2259f442b3efba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec116860c5940eba2259f442b3efba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec116860c5940eba2259f442b3efba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec116860c5940eba2259f442b3efba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec116860c5940eba2259f442b3efba5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7igAbxD22WuYDlnUIkE4TEneBbI=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.27565+00 2025-12-09 10:14:43.275654+00 3997 DH19000522#L SPMX-20240815299122 \N \N \N 1 \N [{"file_id": "31308902-d4ec-4c83-a6bd-ebd9518618e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e391da557f434213989da21814182c78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e391da557f434213989da21814182c78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e391da557f434213989da21814182c78.jpg", "file_size": 17995, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e391da557f434213989da21814182c78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e391da557f434213989da21814182c78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e391da557f434213989da21814182c78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e391da557f434213989da21814182c78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e391da557f434213989da21814182c78.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HCjOCiWAp75R3Ks7lBLFMKaDlQ=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.276779+00 2025-12-09 10:14:43.276783+00 3998 HSH016FW#橙VS-D3 SPMX-20240815299126 \N \N \N 1 \N [{"file_id": "d102396a-cff3-4579-a490-0cfb56d059fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "606034d29aa640e9a71a9518c33da9c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "606034d29aa640e9a71a9518c33da9c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "606034d29aa640e9a71a9518c33da9c9.jpg", "file_size": 5640, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#橙VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606034d29aa640e9a71a9518c33da9c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606034d29aa640e9a71a9518c33da9c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606034d29aa640e9a71a9518c33da9c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/606034d29aa640e9a71a9518c33da9c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/606034d29aa640e9a71a9518c33da9c9.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ev37JZlSmujoRAw5iZzmCztkBo=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.277874+00 2025-12-09 10:14:43.277878+00 3999 C23023#黑色S码 SPMX-20240815299114 \N \N \N 1 \N [{"file_id": "fc1b16b2-dc0b-4a88-855f-9f8e38446686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg", "file_size": 22501, "is_delete": false, "file_type": 1, "original_file_name": "C23023#黑色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f92c54d0a5a24d2ebfe8e26eca3f6be0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Nv_rAtrJRBxnnbhdjk_27FZwMw=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.27924+00 2025-12-09 10:14:43.279244+00 4000 23-2101#A13袖子3XL SPMX-20240815299113 \N \N \N 1 \N [{"file_id": "34ef24a0-4fda-4282-b54a-969b017a2814", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc51e0e01e24e0eaea999875a7d8467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc51e0e01e24e0eaea999875a7d8467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc51e0e01e24e0eaea999875a7d8467.jpg", "file_size": 10124, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A13袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc51e0e01e24e0eaea999875a7d8467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc51e0e01e24e0eaea999875a7d8467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc51e0e01e24e0eaea999875a7d8467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc51e0e01e24e0eaea999875a7d8467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc51e0e01e24e0eaea999875a7d8467.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1lU6BSUfRroKqKOsi3UkstfGbE=", "createTime": "2024-08-15 14:39:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.280615+00 2025-12-09 10:14:43.280619+00 4001 8004#青色 SPMX-20240815299127 \N \N \N 1 \N [{"file_id": "ed3cae8d-f7fb-46cb-822a-70ebebb4d92a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f74d403466c4185b1016fd6e221c8ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f74d403466c4185b1016fd6e221c8ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f74d403466c4185b1016fd6e221c8ee.jpg", "file_size": 25595, "is_delete": false, "file_type": 1, "original_file_name": "8004#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f74d403466c4185b1016fd6e221c8ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f74d403466c4185b1016fd6e221c8ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f74d403466c4185b1016fd6e221c8ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f74d403466c4185b1016fd6e221c8ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f74d403466c4185b1016fd6e221c8ee.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8xiqw7kXZ5htHRu33pXCkpgv1E=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.282028+00 2025-12-09 10:14:43.282033+00 4002 0001-44FWE#VS-D3 SPMX-20240815299117 \N \N \N 1 \N [{"file_id": "fd88b15f-1a3a-4cb8-81f4-8ca469ad7e6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6da6c4111c9143058e291be01976c1c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6da6c4111c9143058e291be01976c1c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6da6c4111c9143058e291be01976c1c0.jpg", "file_size": 14044, "is_delete": false, "file_type": 1, "original_file_name": "0001-44FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6c4111c9143058e291be01976c1c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6c4111c9143058e291be01976c1c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da6c4111c9143058e291be01976c1c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6da6c4111c9143058e291be01976c1c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6da6c4111c9143058e291be01976c1c0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqQXNpjWYvgKZdee48WrKCIZjmM=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.28339+00 2025-12-09 10:14:43.283394+00 4003 JS0974-A10#S SPMX-20240815299128 \N \N \N 1 \N [{"file_id": "fbb51099-7ed8-4f1b-aa22-0e4baceb490f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c185e4a72a7745fab924a7b00620dd42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c185e4a72a7745fab924a7b00620dd42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c185e4a72a7745fab924a7b00620dd42.jpg", "file_size": 17679, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c185e4a72a7745fab924a7b00620dd42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c185e4a72a7745fab924a7b00620dd42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c185e4a72a7745fab924a7b00620dd42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c185e4a72a7745fab924a7b00620dd42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c185e4a72a7745fab924a7b00620dd42.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Z2PRLUxVgexPprjgZpYYJKIPjU=", "createTime": "2024-08-15 14:39:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.284768+00 2025-12-09 10:14:43.284773+00 4004 FHPKDX-002-4-批布 SPMX-20240815299129 \N \N \N 1 \N [{"file_id": "edafe5b3-c643-4b7b-9274-56f9e263f76b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d6abed4713243c98887aef172711464.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d6abed4713243c98887aef172711464.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d6abed4713243c98887aef172711464.jpg", "file_size": 34300, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-002-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6abed4713243c98887aef172711464.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6abed4713243c98887aef172711464.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6abed4713243c98887aef172711464.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d6abed4713243c98887aef172711464.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d6abed4713243c98887aef172711464.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NG8z1I2Hld8XIm99fyNp4GHARXM=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.286142+00 2025-12-09 10:14:43.286146+00 4005 LHJ9169#32#墨绿 SPMX-20240815299133 \N \N \N 1 \N [{"file_id": "e1744064-1cd1-4606-8c99-1fd877385ddc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08eaca638bac45d3990570838dd6ba56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08eaca638bac45d3990570838dd6ba56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08eaca638bac45d3990570838dd6ba56.jpg", "file_size": 16051, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08eaca638bac45d3990570838dd6ba56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08eaca638bac45d3990570838dd6ba56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08eaca638bac45d3990570838dd6ba56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08eaca638bac45d3990570838dd6ba56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08eaca638bac45d3990570838dd6ba56.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mZVAcVwM0eJy7BUewZIir5fcLD8=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.287543+00 2025-12-09 10:14:43.287548+00 4006 0001-45FWE#VS-D3 SPMX-20240815299143 \N \N \N 1 \N [{"file_id": "0652eeb4-e9c3-46e8-b3e8-53d4bb050131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3fcafbab2764f2785cc1eb041680849.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3fcafbab2764f2785cc1eb041680849.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3fcafbab2764f2785cc1eb041680849.jpg", "file_size": 14194, "is_delete": false, "file_type": 1, "original_file_name": "0001-45FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3fcafbab2764f2785cc1eb041680849.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3fcafbab2764f2785cc1eb041680849.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3fcafbab2764f2785cc1eb041680849.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3fcafbab2764f2785cc1eb041680849.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3fcafbab2764f2785cc1eb041680849.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ie2mJ35b9gRdqvUN3AbZB9g2GBc=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.288951+00 2025-12-09 10:14:43.288955+00 4007 LZ1192#下身4号色 SPMX-20240815299130 \N \N \N 1 \N [{"file_id": "56cb96dc-c780-4a02-8b37-ca8436f337a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c199a914f734c6abb3a4a1b3ec80e0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c199a914f734c6abb3a4a1b3ec80e0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c199a914f734c6abb3a4a1b3ec80e0a.jpg", "file_size": 19678, "is_delete": false, "file_type": 1, "original_file_name": "LZ1192#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c199a914f734c6abb3a4a1b3ec80e0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c199a914f734c6abb3a4a1b3ec80e0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c199a914f734c6abb3a4a1b3ec80e0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c199a914f734c6abb3a4a1b3ec80e0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c199a914f734c6abb3a4a1b3ec80e0a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yoL3m8-dVbcq6KZVrLCpdb5BZRI=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.290074+00 2025-12-09 10:14:43.290078+00 4008 JS0974-A10#XL SPMX-20240815299139 \N \N \N 1 \N [{"file_id": "d37721d6-6769-4ccf-977a-7c13ff7bff5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "842377a10759446fbde2027ed70c795a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "842377a10759446fbde2027ed70c795a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "842377a10759446fbde2027ed70c795a.jpg", "file_size": 17054, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842377a10759446fbde2027ed70c795a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842377a10759446fbde2027ed70c795a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842377a10759446fbde2027ed70c795a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/842377a10759446fbde2027ed70c795a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/842377a10759446fbde2027ed70c795a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdymnrPZsPpHG2pYm0Oc0EMXpOw=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.291169+00 2025-12-09 10:14:43.291173+00 4009 DH19000522#M SPMX-20240815299131 \N \N \N 1 \N [{"file_id": "2e14f096-6b1e-4bff-b410-5cb79f3a509d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b07ad2c039b42c79258c782719342e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b07ad2c039b42c79258c782719342e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b07ad2c039b42c79258c782719342e7.jpg", "file_size": 22065, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b07ad2c039b42c79258c782719342e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b07ad2c039b42c79258c782719342e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b07ad2c039b42c79258c782719342e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b07ad2c039b42c79258c782719342e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b07ad2c039b42c79258c782719342e7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MLYbcCYcjydEb_HP_fX-53BTD0=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.292319+00 2025-12-09 10:14:43.292323+00 4010 1042FWF#-4 SPMX-20240815299136 \N \N \N 1 \N [{"file_id": "1ab2b804-491c-4d5e-a30a-bd3ecbeb2e3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6325b242f7894809996d2f7526c3c51f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6325b242f7894809996d2f7526c3c51f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6325b242f7894809996d2f7526c3c51f.jpg", "file_size": 26600, "is_delete": false, "file_type": 1, "original_file_name": "1042FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6325b242f7894809996d2f7526c3c51f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6325b242f7894809996d2f7526c3c51f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6325b242f7894809996d2f7526c3c51f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6325b242f7894809996d2f7526c3c51f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6325b242f7894809996d2f7526c3c51f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGRpiw667aLJimqy3-57TEaObsc=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.293438+00 2025-12-09 10:14:43.293442+00 4011 FHPKDX-003-1-批布 SPMX-20240815299140 \N \N \N 1 \N [{"file_id": "0b768e8b-8fca-44d3-a784-ec646685b1c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc3a94cf7f004e929ec4079215148250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc3a94cf7f004e929ec4079215148250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc3a94cf7f004e929ec4079215148250.jpg", "file_size": 32381, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-003-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3a94cf7f004e929ec4079215148250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3a94cf7f004e929ec4079215148250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3a94cf7f004e929ec4079215148250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc3a94cf7f004e929ec4079215148250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc3a94cf7f004e929ec4079215148250.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vkeXrKd6MVkxgt6hHQmLvPRDTM0=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.294562+00 2025-12-09 10:14:43.294567+00 4012 23-2101#A13领子通用 SPMX-20240815299135 \N \N \N 1 \N [{"file_id": "61b60e46-f49a-46b6-a55b-d7bebb3e0ab7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e7a9b39b3e2449a8e0e4826bbdabd12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e7a9b39b3e2449a8e0e4826bbdabd12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e7a9b39b3e2449a8e0e4826bbdabd12.jpg", "file_size": 8540, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A13领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7a9b39b3e2449a8e0e4826bbdabd12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7a9b39b3e2449a8e0e4826bbdabd12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7a9b39b3e2449a8e0e4826bbdabd12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e7a9b39b3e2449a8e0e4826bbdabd12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e7a9b39b3e2449a8e0e4826bbdabd12.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EW-eLs-tRRmtOKsMGFy-t7nbq3c=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.295656+00 2025-12-09 10:14:43.29566+00 4013 LHJ9169#5#彩兰 SPMX-20240815299142 \N \N \N 1 \N [{"file_id": "262fe00e-edd6-4f8d-834a-c2dd366f2f4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080d58839b53430e9bf246c21ef336d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080d58839b53430e9bf246c21ef336d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080d58839b53430e9bf246c21ef336d9.jpg", "file_size": 16301, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080d58839b53430e9bf246c21ef336d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080d58839b53430e9bf246c21ef336d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080d58839b53430e9bf246c21ef336d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080d58839b53430e9bf246c21ef336d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080d58839b53430e9bf246c21ef336d9.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EwjZaZBJFKopyLoDSCziSvW-_g=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.296783+00 2025-12-09 10:14:43.296788+00 4014 0001-44FWF#V5曲线 SPMX-20240815299132 \N \N \N 1 \N [{"file_id": "44d033f7-2392-4f89-8bf0-00878b1dfd7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82d8653a97e443f7a3dc3bc816429223.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82d8653a97e443f7a3dc3bc816429223.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82d8653a97e443f7a3dc3bc816429223.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "0001-44FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d8653a97e443f7a3dc3bc816429223.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d8653a97e443f7a3dc3bc816429223.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d8653a97e443f7a3dc3bc816429223.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82d8653a97e443f7a3dc3bc816429223.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82d8653a97e443f7a3dc3bc816429223.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYhg4jGeTfh1p937zOzg30C2uY8=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.297893+00 2025-12-09 10:14:43.297897+00 4015 HSH016FW#灰VS-D3 SPMX-20240815299137 \N \N \N 1 \N [{"file_id": "e2b41e5e-6224-4e78-887a-7f66e55ddf04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ca9d9349054e278a5e9941832d2c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ca9d9349054e278a5e9941832d2c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ca9d9349054e278a5e9941832d2c2a.jpg", "file_size": 7235, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ca9d9349054e278a5e9941832d2c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ca9d9349054e278a5e9941832d2c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ca9d9349054e278a5e9941832d2c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ca9d9349054e278a5e9941832d2c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ca9d9349054e278a5e9941832d2c2a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jd0Omj35IhmNPGEvN6itLlz48LE=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.29899+00 2025-12-09 10:14:43.298995+00 4016 LZ1193#WJC22 SPMX-20240815299141 \N \N \N 1 \N [{"file_id": "469c7306-f0f1-4540-8fa8-b1c95aeff5e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13239f39a9284205839cb6b6aa47461f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13239f39a9284205839cb6b6aa47461f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13239f39a9284205839cb6b6aa47461f.jpg", "file_size": 17946, "is_delete": false, "file_type": 1, "original_file_name": "LZ1193#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13239f39a9284205839cb6b6aa47461f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13239f39a9284205839cb6b6aa47461f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13239f39a9284205839cb6b6aa47461f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13239f39a9284205839cb6b6aa47461f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13239f39a9284205839cb6b6aa47461f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAzppi6QCmm2453A4aj80JumhzA=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.300083+00 2025-12-09 10:14:43.300087+00 4017 8005#咖色2XL SPMX-20240815299138 \N \N \N 1 \N [{"file_id": "697ee123-0bd1-4c15-b7e2-0144ee690839", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31e6f8a35c642ef84393f87eab932cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31e6f8a35c642ef84393f87eab932cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31e6f8a35c642ef84393f87eab932cc.jpg", "file_size": 70406, "is_delete": false, "file_type": 1, "original_file_name": "8005#咖色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31e6f8a35c642ef84393f87eab932cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31e6f8a35c642ef84393f87eab932cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31e6f8a35c642ef84393f87eab932cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31e6f8a35c642ef84393f87eab932cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31e6f8a35c642ef84393f87eab932cc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5ugVwSnmTGUaR_NhuuHxeHHrVA=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.301195+00 2025-12-09 10:14:43.301199+00 4018 C23023#黑色耳仔 SPMX-20240815299134 \N \N \N 1 \N [{"file_id": "02cc2b83-f7c2-40f1-9d95-9f62ba5605fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70f6cdab65444a59826db8fcfcf59108.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70f6cdab65444a59826db8fcfcf59108.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70f6cdab65444a59826db8fcfcf59108.jpg", "file_size": 7602, "is_delete": false, "file_type": 1, "original_file_name": "C23023#黑色耳仔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f6cdab65444a59826db8fcfcf59108.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f6cdab65444a59826db8fcfcf59108.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f6cdab65444a59826db8fcfcf59108.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70f6cdab65444a59826db8fcfcf59108.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70f6cdab65444a59826db8fcfcf59108.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2emGFn03A7lannpiUsshZtjL5I=", "createTime": "2024-08-15 14:39:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.302296+00 2025-12-09 10:14:43.302299+00 4019 DH19000522#S SPMX-20240815299144 \N \N \N 1 \N [{"file_id": "df195d82-d328-45c2-943d-31ecf01ca939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfc14fdba7c4433ab6c5140e14eeaed5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfc14fdba7c4433ab6c5140e14eeaed5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfc14fdba7c4433ab6c5140e14eeaed5.jpg", "file_size": 21317, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc14fdba7c4433ab6c5140e14eeaed5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc14fdba7c4433ab6c5140e14eeaed5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc14fdba7c4433ab6c5140e14eeaed5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfc14fdba7c4433ab6c5140e14eeaed5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfc14fdba7c4433ab6c5140e14eeaed5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0WKai6Sk5RLt44XPU4v2X9Zdlk8=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.303376+00 2025-12-09 10:14:43.303381+00 4020 JS0974-A10#图案捆条 SPMX-20240815299149 \N \N \N 1 \N [{"file_id": "5e547fb7-6e5c-424a-9508-b884f8cc4758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4bcffdd04cd41ef8d33da71949e007c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4bcffdd04cd41ef8d33da71949e007c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4bcffdd04cd41ef8d33da71949e007c.jpg", "file_size": 23348, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#图案捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4bcffdd04cd41ef8d33da71949e007c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4bcffdd04cd41ef8d33da71949e007c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4bcffdd04cd41ef8d33da71949e007c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4bcffdd04cd41ef8d33da71949e007c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4bcffdd04cd41ef8d33da71949e007c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVMvq47qlJpS2LTCG5EMwX_pyAI=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.304473+00 2025-12-09 10:14:43.304477+00 4021 HSH016FW#灰粉 SPMX-20240815299148 \N \N \N 1 \N [{"file_id": "645f18fe-b7a5-4375-a391-df54c5d8d54b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ab40381c07049099bd09bca0454d6a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ab40381c07049099bd09bca0454d6a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ab40381c07049099bd09bca0454d6a7.jpg", "file_size": 6927, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#灰粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab40381c07049099bd09bca0454d6a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab40381c07049099bd09bca0454d6a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab40381c07049099bd09bca0454d6a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ab40381c07049099bd09bca0454d6a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ab40381c07049099bd09bca0454d6a7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3bTVxMYOVumI5ubmRsgbh12uXs=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.305578+00 2025-12-09 10:14:43.305582+00 4022 FHPKDX-003-2-批布 SPMX-20240815299151 \N \N \N 1 \N [{"file_id": "004b5a70-9952-4d5d-af7d-662983e83660", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0437ee5368474a4aa5bef64161e7ec05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0437ee5368474a4aa5bef64161e7ec05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0437ee5368474a4aa5bef64161e7ec05.jpg", "file_size": 39821, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-003-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0437ee5368474a4aa5bef64161e7ec05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0437ee5368474a4aa5bef64161e7ec05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0437ee5368474a4aa5bef64161e7ec05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0437ee5368474a4aa5bef64161e7ec05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0437ee5368474a4aa5bef64161e7ec05.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBRpo6WsanfALxdbhmxg80IGLF4=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.306698+00 2025-12-09 10:14:43.306701+00 4023 C23023-L码 SPMX-20240815299145 \N \N \N 1 \N [{"file_id": "1ccbbdcc-bead-464b-8b69-ca88a757ac5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15b840ddf3004333a40c3e0544e8bef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15b840ddf3004333a40c3e0544e8bef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15b840ddf3004333a40c3e0544e8bef6.jpg", "file_size": 21563, "is_delete": false, "file_type": 1, "original_file_name": "C23023-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b840ddf3004333a40c3e0544e8bef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b840ddf3004333a40c3e0544e8bef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b840ddf3004333a40c3e0544e8bef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15b840ddf3004333a40c3e0544e8bef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15b840ddf3004333a40c3e0544e8bef6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvfuFjH404OSYucF0KG5Smr40MY=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.307795+00 2025-12-09 10:14:43.307799+00 4024 23-2101#A14前后片3XL SPMX-20240815299146 \N \N \N 1 \N [{"file_id": "db022f92-f4e2-462f-b47f-7dde4909a2dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a92788b73bc46edbbc9b17089b25f9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a92788b73bc46edbbc9b17089b25f9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a92788b73bc46edbbc9b17089b25f9c.jpg", "file_size": 13934, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A14前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a92788b73bc46edbbc9b17089b25f9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a92788b73bc46edbbc9b17089b25f9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a92788b73bc46edbbc9b17089b25f9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a92788b73bc46edbbc9b17089b25f9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a92788b73bc46edbbc9b17089b25f9c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_CLFsSJY062XH4NxVE-KUyi3wg=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.308902+00 2025-12-09 10:14:43.308906+00 4025 8005#咖色L SPMX-20240815299150 \N \N \N 1 \N [{"file_id": "fc7bb85a-c807-4ed8-ac10-bf9d10dde08c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120d1731ee8d4d76a8273399dfbb8599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120d1731ee8d4d76a8273399dfbb8599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120d1731ee8d4d76a8273399dfbb8599.jpg", "file_size": 76512, "is_delete": false, "file_type": 1, "original_file_name": "8005#咖色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120d1731ee8d4d76a8273399dfbb8599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120d1731ee8d4d76a8273399dfbb8599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120d1731ee8d4d76a8273399dfbb8599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120d1731ee8d4d76a8273399dfbb8599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120d1731ee8d4d76a8273399dfbb8599.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmdcLDh6U_CtJlzqQQDO62GU10g=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.310079+00 2025-12-09 10:14:43.310084+00 4026 1042FWF#-5 SPMX-20240815299147 \N \N \N 1 \N [{"file_id": "2a8ca9c4-c7d7-494d-a05a-de96de4289e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a261233a85b94734a29ed6bdc773b107.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a261233a85b94734a29ed6bdc773b107.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a261233a85b94734a29ed6bdc773b107.jpg", "file_size": 23916, "is_delete": false, "file_type": 1, "original_file_name": "1042FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a261233a85b94734a29ed6bdc773b107.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a261233a85b94734a29ed6bdc773b107.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a261233a85b94734a29ed6bdc773b107.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a261233a85b94734a29ed6bdc773b107.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a261233a85b94734a29ed6bdc773b107.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evCLW_JbPRpr1CRvvmKERrjARTo=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.311296+00 2025-12-09 10:14:43.3113+00 4027 LZ1194#WJC22 SPMX-20240815299152 \N \N \N 1 \N [{"file_id": "b711aaf4-14ae-43fa-b9a0-97473370e03a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15766dacb825416dab7a10f783d3f372.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15766dacb825416dab7a10f783d3f372.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15766dacb825416dab7a10f783d3f372.jpg", "file_size": 16232, "is_delete": false, "file_type": 1, "original_file_name": "LZ1194#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15766dacb825416dab7a10f783d3f372.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15766dacb825416dab7a10f783d3f372.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15766dacb825416dab7a10f783d3f372.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15766dacb825416dab7a10f783d3f372.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15766dacb825416dab7a10f783d3f372.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5jups6fyzmpnbRgXn5gj1do2L8=", "createTime": "2024-08-15 14:39:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.312425+00 2025-12-09 10:14:43.312429+00 4028 8005#咖色XL SPMX-20240815299163 \N \N \N 1 \N [{"file_id": "e6143bf1-4298-4dfe-9231-20ea6171329e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e9d5aaf8efc42caa3e68ae16ccd7439.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e9d5aaf8efc42caa3e68ae16ccd7439.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e9d5aaf8efc42caa3e68ae16ccd7439.jpg", "file_size": 75372, "is_delete": false, "file_type": 1, "original_file_name": "8005#咖色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9d5aaf8efc42caa3e68ae16ccd7439.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9d5aaf8efc42caa3e68ae16ccd7439.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9d5aaf8efc42caa3e68ae16ccd7439.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e9d5aaf8efc42caa3e68ae16ccd7439.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e9d5aaf8efc42caa3e68ae16ccd7439.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vA4dGL_mMbVr_w3H1Qqp3x7WgR0=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.313533+00 2025-12-09 10:14:43.313537+00 4029 FHPKDX-003-3-批布 SPMX-20240815299160 \N \N \N 1 \N [{"file_id": "2da6ef53-c0a5-41dd-8629-36395bf17b88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfb1a6033e62405e8352b208cbb1dfff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfb1a6033e62405e8352b208cbb1dfff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfb1a6033e62405e8352b208cbb1dfff.jpg", "file_size": 39171, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-003-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb1a6033e62405e8352b208cbb1dfff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb1a6033e62405e8352b208cbb1dfff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb1a6033e62405e8352b208cbb1dfff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfb1a6033e62405e8352b208cbb1dfff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfb1a6033e62405e8352b208cbb1dfff.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKLxhJJhPGJjfcCZABCWhHnAp2E=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.314664+00 2025-12-09 10:14:43.314668+00 4030 23-2101#A14袖子3XL SPMX-20240815299165 \N \N \N 1 \N [{"file_id": "f722447c-1d52-407d-9321-f76597c9041b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8334f3dcef734fb7a5ecff4bb298cf03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8334f3dcef734fb7a5ecff4bb298cf03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8334f3dcef734fb7a5ecff4bb298cf03.jpg", "file_size": 12163, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A14袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8334f3dcef734fb7a5ecff4bb298cf03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8334f3dcef734fb7a5ecff4bb298cf03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8334f3dcef734fb7a5ecff4bb298cf03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8334f3dcef734fb7a5ecff4bb298cf03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8334f3dcef734fb7a5ecff4bb298cf03.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4H4NpCxjvGvx652r63SOUvnShBI=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.315809+00 2025-12-09 10:14:43.315813+00 4031 C23023-M码 SPMX-20240815299153 \N \N \N 1 \N [{"file_id": "6bdf5e05-6234-4b4f-ba2c-a6958c0430ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63f1c8bdebf24f9e875191c0515b6158.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63f1c8bdebf24f9e875191c0515b6158.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63f1c8bdebf24f9e875191c0515b6158.jpg", "file_size": 21557, "is_delete": false, "file_type": 1, "original_file_name": "C23023-M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63f1c8bdebf24f9e875191c0515b6158.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63f1c8bdebf24f9e875191c0515b6158.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63f1c8bdebf24f9e875191c0515b6158.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63f1c8bdebf24f9e875191c0515b6158.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63f1c8bdebf24f9e875191c0515b6158.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v52wyS195hp0xBL0FdKi0-ioGb0=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.316919+00 2025-12-09 10:14:43.316923+00 4032 HSH016FW#粉VS-D3 SPMX-20240815299157 \N \N \N 1 \N [{"file_id": "805389e6-7031-4f76-b4d6-8729b8c187df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a234af363f94110b7a914b647610c3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a234af363f94110b7a914b647610c3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a234af363f94110b7a914b647610c3f.jpg", "file_size": 5279, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a234af363f94110b7a914b647610c3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a234af363f94110b7a914b647610c3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a234af363f94110b7a914b647610c3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a234af363f94110b7a914b647610c3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a234af363f94110b7a914b647610c3f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0_ztytggESWdY1v3VZxwGESRyM=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.318012+00 2025-12-09 10:14:43.318017+00 4033 1043#土黄 SPMX-20240815299162 \N \N \N 1 \N [{"file_id": "13be93b5-67b2-40ee-85e9-4fe38ecf9865", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f73dcecfcc76440c86a45fb45f4f225d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f73dcecfcc76440c86a45fb45f4f225d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f73dcecfcc76440c86a45fb45f4f225d.jpg", "file_size": 16904, "is_delete": false, "file_type": 1, "original_file_name": "1043#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73dcecfcc76440c86a45fb45f4f225d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73dcecfcc76440c86a45fb45f4f225d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73dcecfcc76440c86a45fb45f4f225d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f73dcecfcc76440c86a45fb45f4f225d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f73dcecfcc76440c86a45fb45f4f225d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V43AmPbc0fDWv6SThJUx2Db-XVc=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.319112+00 2025-12-09 10:14:43.319116+00 4034 LHJ9169#5#彩兰前片 SPMX-20240815299158 \N \N \N 1 \N [{"file_id": "063464ec-5c8c-4803-9b75-7484b3c6db80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf3b582352d94efca89c00bb025db207.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf3b582352d94efca89c00bb025db207.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf3b582352d94efca89c00bb025db207.jpg", "file_size": 16454, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#5#彩兰前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3b582352d94efca89c00bb025db207.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3b582352d94efca89c00bb025db207.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3b582352d94efca89c00bb025db207.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf3b582352d94efca89c00bb025db207.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf3b582352d94efca89c00bb025db207.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5jF0PRykY0KNxMIBf0GYCBqV5w=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.320225+00 2025-12-09 10:14:43.320229+00 4035 23-2101#A14前后片4XL SPMX-20240815299154 \N \N \N 1 \N [{"file_id": "09315180-457e-42e3-91c2-9bc9ab607375", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bcc090252b749d883929dfc1f6ca04c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bcc090252b749d883929dfc1f6ca04c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bcc090252b749d883929dfc1f6ca04c.jpg", "file_size": 14096, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A14前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc090252b749d883929dfc1f6ca04c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc090252b749d883929dfc1f6ca04c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc090252b749d883929dfc1f6ca04c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bcc090252b749d883929dfc1f6ca04c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bcc090252b749d883929dfc1f6ca04c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMD3U50BfdXrULSQseMRCozePK0=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.321321+00 2025-12-09 10:14:43.321325+00 4036 DH19000522#XL SPMX-20240815299155 \N \N \N 1 \N [{"file_id": "c8efceb1-74e8-41b2-a3b0-24c55e8e314c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae778df21c5542c4bd523e5f8a5b2600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae778df21c5542c4bd523e5f8a5b2600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae778df21c5542c4bd523e5f8a5b2600.jpg", "file_size": 18180, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae778df21c5542c4bd523e5f8a5b2600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae778df21c5542c4bd523e5f8a5b2600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae778df21c5542c4bd523e5f8a5b2600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae778df21c5542c4bd523e5f8a5b2600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae778df21c5542c4bd523e5f8a5b2600.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZAfmRuNtx95Sd2WqBtzHPqLZgg=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.322407+00 2025-12-09 10:14:43.322411+00 4037 JS0974-A10#枣红2XL SPMX-20240815299161 \N \N \N 1 \N [{"file_id": "b372ac4f-3d42-40f3-923d-c2e75846ca8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a8805bab9fd44e2adaa6cdad04a45b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a8805bab9fd44e2adaa6cdad04a45b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a8805bab9fd44e2adaa6cdad04a45b0.jpg", "file_size": 58743, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8805bab9fd44e2adaa6cdad04a45b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8805bab9fd44e2adaa6cdad04a45b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8805bab9fd44e2adaa6cdad04a45b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a8805bab9fd44e2adaa6cdad04a45b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a8805bab9fd44e2adaa6cdad04a45b0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGzflGnx3y6QC9BBDObTPQDRMZQ=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.323511+00 2025-12-09 10:14:43.323516+00 4038 C23023-S码 SPMX-20240815299164 \N \N \N 1 \N [{"file_id": "cb61eac9-bc00-4ecf-836b-979f94afb764", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56c88d817f6f4997b627d1ae5fce2fc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56c88d817f6f4997b627d1ae5fce2fc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56c88d817f6f4997b627d1ae5fce2fc7.jpg", "file_size": 22086, "is_delete": false, "file_type": 1, "original_file_name": "C23023-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c88d817f6f4997b627d1ae5fce2fc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c88d817f6f4997b627d1ae5fce2fc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c88d817f6f4997b627d1ae5fce2fc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56c88d817f6f4997b627d1ae5fce2fc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56c88d817f6f4997b627d1ae5fce2fc7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bst6Up5TOw6EhoMoNxBPe3KX0U=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.324623+00 2025-12-09 10:14:43.324627+00 4039 0001-45FWF#V5曲线 SPMX-20240815299156 \N \N \N 1 \N [{"file_id": "775e9776-51d2-4d83-a02a-b559b483149a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21af8093f62a4221a1d1c32f54c10a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21af8093f62a4221a1d1c32f54c10a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21af8093f62a4221a1d1c32f54c10a59.jpg", "file_size": 11736, "is_delete": false, "file_type": 1, "original_file_name": "0001-45FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21af8093f62a4221a1d1c32f54c10a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21af8093f62a4221a1d1c32f54c10a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21af8093f62a4221a1d1c32f54c10a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21af8093f62a4221a1d1c32f54c10a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21af8093f62a4221a1d1c32f54c10a59.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEf8-TRA4rAp4Eh6b54YyociJbc=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.325749+00 2025-12-09 10:14:43.325753+00 4040 LZ1195#1号色 SPMX-20240815299159 \N \N \N 1 \N [{"file_id": "8261eae7-6584-4314-92ba-b50a1567e2bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc0637937e8e4aae93f8666627c74e1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc0637937e8e4aae93f8666627c74e1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc0637937e8e4aae93f8666627c74e1f.jpg", "file_size": 9274, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0637937e8e4aae93f8666627c74e1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0637937e8e4aae93f8666627c74e1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0637937e8e4aae93f8666627c74e1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc0637937e8e4aae93f8666627c74e1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc0637937e8e4aae93f8666627c74e1f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5ZUuDKAFlp96Gc5LM4CJSM2x7Q=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.326838+00 2025-12-09 10:14:43.326842+00 4041 DH19000522TFW#2XL VS-D3 SPMX-20240815299166 \N \N \N 1 \N [{"file_id": "b275f171-acec-4a1e-8c87-93a32cf167c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d1b71a305846d792b3bcd7eda9f7db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d1b71a305846d792b3bcd7eda9f7db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d1b71a305846d792b3bcd7eda9f7db.jpg", "file_size": 18626, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522TFW#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d1b71a305846d792b3bcd7eda9f7db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d1b71a305846d792b3bcd7eda9f7db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d1b71a305846d792b3bcd7eda9f7db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d1b71a305846d792b3bcd7eda9f7db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d1b71a305846d792b3bcd7eda9f7db.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K801OY94txJPWNqCYhxxXSggQdc=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.327953+00 2025-12-09 10:14:43.327957+00 4042 0001-46FWE#VS-D3 SPMX-20240815299167 \N \N \N 1 \N [{"file_id": "cce87c9a-51fe-4e36-8267-e4f2c45d2b1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8689dc0fa4074a539e3678841ff94ea6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8689dc0fa4074a539e3678841ff94ea6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8689dc0fa4074a539e3678841ff94ea6.jpg", "file_size": 8978, "is_delete": false, "file_type": 1, "original_file_name": "0001-46FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8689dc0fa4074a539e3678841ff94ea6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8689dc0fa4074a539e3678841ff94ea6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8689dc0fa4074a539e3678841ff94ea6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8689dc0fa4074a539e3678841ff94ea6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8689dc0fa4074a539e3678841ff94ea6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fzPAamy9sarXC21JNDbVxPX-yc8=", "createTime": "2024-08-15 14:39:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.329088+00 2025-12-09 10:14:43.329092+00 4043 23-2101#A14袖子4XL SPMX-20240815299173 \N \N \N 1 \N [{"file_id": "9e8f3c34-17f7-4183-a5ae-307b5b001530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa4bddbf891c4902ac93f8d4baa4a8bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa4bddbf891c4902ac93f8d4baa4a8bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa4bddbf891c4902ac93f8d4baa4a8bc.jpg", "file_size": 10688, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A14袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4bddbf891c4902ac93f8d4baa4a8bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4bddbf891c4902ac93f8d4baa4a8bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4bddbf891c4902ac93f8d4baa4a8bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa4bddbf891c4902ac93f8d4baa4a8bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa4bddbf891c4902ac93f8d4baa4a8bc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fBCA_nIk8mJwuBBxbxMGuWWtlkw=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.33021+00 2025-12-09 10:14:43.330214+00 4044 JS0974-A10#枣红L SPMX-20240815299174 \N \N \N 1 \N [{"file_id": "8853b881-f625-47b1-80a0-cb60e5d673dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg", "file_size": 57019, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d4c5f5aa9f84cd1a7f1c59bf9996176.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IU5Xm5teB4F801ljH3x9SB9ozlA=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.331306+00 2025-12-09 10:14:43.33131+00 4045 0001-46FWF#V5曲线 SPMX-20240815299179 \N \N \N 1 \N [{"file_id": "9cf7d11a-c6bb-40a4-ad4f-d43bac523254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36421af0ee94447296a41bc692a7ae6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36421af0ee94447296a41bc692a7ae6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36421af0ee94447296a41bc692a7ae6b.jpg", "file_size": 23897, "is_delete": false, "file_type": 1, "original_file_name": "0001-46FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36421af0ee94447296a41bc692a7ae6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36421af0ee94447296a41bc692a7ae6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36421af0ee94447296a41bc692a7ae6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36421af0ee94447296a41bc692a7ae6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36421af0ee94447296a41bc692a7ae6b.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7y_JdbFRvvMioh3v8jF3bfhBjQc=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.332384+00 2025-12-09 10:14:43.332388+00 4046 HSH016FW#红VS-D3 SPMX-20240815299168 \N \N \N 1 \N [{"file_id": "ec4a49ca-53fa-4697-846b-fceff4943620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf18d289a9d42f2a4817e107a33c210.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf18d289a9d42f2a4817e107a33c210.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf18d289a9d42f2a4817e107a33c210.jpg", "file_size": 7537, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf18d289a9d42f2a4817e107a33c210.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf18d289a9d42f2a4817e107a33c210.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf18d289a9d42f2a4817e107a33c210.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf18d289a9d42f2a4817e107a33c210.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf18d289a9d42f2a4817e107a33c210.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCJ_3cE0tUm9_K9Sprt_7Z4dtys=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.333498+00 2025-12-09 10:14:43.333503+00 4047 C23023-XL码 SPMX-20240815299175 \N \N \N 1 \N [{"file_id": "3f16d849-b1ef-461e-a3ea-3ba730360881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c94939c601e412585faab9a87c21a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c94939c601e412585faab9a87c21a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c94939c601e412585faab9a87c21a0e.jpg", "file_size": 20220, "is_delete": false, "file_type": 1, "original_file_name": "C23023-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c94939c601e412585faab9a87c21a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c94939c601e412585faab9a87c21a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c94939c601e412585faab9a87c21a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c94939c601e412585faab9a87c21a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c94939c601e412585faab9a87c21a0e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_d0ptQiaBsrrY4btVps5vyLAwEw=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.334601+00 2025-12-09 10:14:43.334606+00 4048 LHJ9169#5#彩兰后片+裤 SPMX-20240815299169 \N \N \N 1 \N [{"file_id": "52439d8c-8128-4a2e-8783-d994d02cd668", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240524996fba44c2a696b9eb492bbc49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240524996fba44c2a696b9eb492bbc49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240524996fba44c2a696b9eb492bbc49.jpg", "file_size": 16628, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#5#彩兰后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240524996fba44c2a696b9eb492bbc49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240524996fba44c2a696b9eb492bbc49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240524996fba44c2a696b9eb492bbc49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240524996fba44c2a696b9eb492bbc49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240524996fba44c2a696b9eb492bbc49.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pEy_7OQDQyfZ0e9wNvCpuXX5A4=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.335702+00 2025-12-09 10:14:43.335709+00 4049 1043#彩蓝色 SPMX-20240815299177 \N \N \N 1 \N [{"file_id": "9e54596b-c7b3-46f8-ab5e-3895fa30cba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c84fda655e74270894221d221d1d36e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c84fda655e74270894221d221d1d36e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c84fda655e74270894221d221d1d36e.jpg", "file_size": 18621, "is_delete": false, "file_type": 1, "original_file_name": "1043#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c84fda655e74270894221d221d1d36e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c84fda655e74270894221d221d1d36e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c84fda655e74270894221d221d1d36e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c84fda655e74270894221d221d1d36e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c84fda655e74270894221d221d1d36e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfG4kz4oGRA02bpLD7z_TRXaeh8=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.336791+00 2025-12-09 10:14:43.336795+00 4050 DH19000522TFW#L VS-D3 SPMX-20240815299176 \N \N \N 1 \N [{"file_id": "814da441-5503-4693-9bc6-73dbf8f24d45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de87dc6bb8cf41339ba646c41e184084.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de87dc6bb8cf41339ba646c41e184084.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de87dc6bb8cf41339ba646c41e184084.jpg", "file_size": 20581, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522TFW#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de87dc6bb8cf41339ba646c41e184084.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de87dc6bb8cf41339ba646c41e184084.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de87dc6bb8cf41339ba646c41e184084.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de87dc6bb8cf41339ba646c41e184084.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de87dc6bb8cf41339ba646c41e184084.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZbkwSOO0yBEbvSnQAiWfcYL9eU=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.337922+00 2025-12-09 10:14:43.337926+00 4051 FHPKDX-003-4-批布 SPMX-20240815299171 \N \N \N 1 \N [{"file_id": "d6bb340d-2938-4fb5-9fec-0768e5aeec41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f3019715b1a4281aa0ca8fca3fda4dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f3019715b1a4281aa0ca8fca3fda4dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f3019715b1a4281aa0ca8fca3fda4dd.jpg", "file_size": 31792, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-003-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3019715b1a4281aa0ca8fca3fda4dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3019715b1a4281aa0ca8fca3fda4dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3019715b1a4281aa0ca8fca3fda4dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f3019715b1a4281aa0ca8fca3fda4dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f3019715b1a4281aa0ca8fca3fda4dd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeMcW5DwfNVxuiQQUeJUt3Zy5F8=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.339006+00 2025-12-09 10:14:43.33901+00 4052 LZ1195#2号色 SPMX-20240815299170 \N \N \N 1 \N [{"file_id": "8deb3135-4e6b-41e4-89fd-79e5e2048383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f87bde928c81497b86cf1fa1a6df4a7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f87bde928c81497b86cf1fa1a6df4a7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f87bde928c81497b86cf1fa1a6df4a7a.jpg", "file_size": 8860, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87bde928c81497b86cf1fa1a6df4a7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87bde928c81497b86cf1fa1a6df4a7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87bde928c81497b86cf1fa1a6df4a7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f87bde928c81497b86cf1fa1a6df4a7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f87bde928c81497b86cf1fa1a6df4a7a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFjKVbTck5N-kXfUIurDiDRyidY=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.341204+00 2025-12-09 10:14:43.341208+00 4054 HSH016FW#蓝VS-D3 SPMX-20240815299178 \N \N \N 1 \N [{"file_id": "35657fde-31ee-473d-8b6d-3cc89e67fd97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dc37ffb513b4a5eb8d79b8b43dfe799.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dc37ffb513b4a5eb8d79b8b43dfe799.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dc37ffb513b4a5eb8d79b8b43dfe799.jpg", "file_size": 5405, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc37ffb513b4a5eb8d79b8b43dfe799.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc37ffb513b4a5eb8d79b8b43dfe799.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc37ffb513b4a5eb8d79b8b43dfe799.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dc37ffb513b4a5eb8d79b8b43dfe799.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dc37ffb513b4a5eb8d79b8b43dfe799.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-yDYEHqDtOwNNsLe0hY1TQk0z98=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.340113+00 2025-12-09 10:14:43.340116+00 4053 LZ1195#3号色 SPMX-20240815299181 \N \N \N 1 \N [{"file_id": "ecf29ae5-0ab0-4809-ba91-5fb6c296139e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e33f595315ae497fa436d8ad77eb3e19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e33f595315ae497fa436d8ad77eb3e19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e33f595315ae497fa436d8ad77eb3e19.jpg", "file_size": 9423, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33f595315ae497fa436d8ad77eb3e19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33f595315ae497fa436d8ad77eb3e19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33f595315ae497fa436d8ad77eb3e19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e33f595315ae497fa436d8ad77eb3e19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e33f595315ae497fa436d8ad77eb3e19.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdB1OxcgO4srNTXoBMvkkE5FVhU=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.343711+00 2025-12-09 10:14:43.343715+00 4055 8005#咖色批布文件共用 SPMX-20240815299172 \N \N \N 1 \N [{"file_id": "57cf1600-c4da-4bf9-88f5-2737ce90930e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a460b097318141878a96b714ed952e00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a460b097318141878a96b714ed952e00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a460b097318141878a96b714ed952e00.jpg", "file_size": 39538, "is_delete": false, "file_type": 1, "original_file_name": "8005#咖色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a460b097318141878a96b714ed952e00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a460b097318141878a96b714ed952e00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a460b097318141878a96b714ed952e00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a460b097318141878a96b714ed952e00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a460b097318141878a96b714ed952e00.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Im0udrXf2GjTZRYFwmNtAd4vwlY=", "createTime": "2024-08-15 14:39:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.344842+00 2025-12-09 10:14:43.344846+00 4056 FHPKDX-004-1-批布 SPMX-20240815299182 \N \N \N 1 \N [{"file_id": "0a3603d3-01e5-4e16-83a8-e9076e0a5499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97a19988da5c475c82af41428a743641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97a19988da5c475c82af41428a743641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97a19988da5c475c82af41428a743641.jpg", "file_size": 39739, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-004-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a19988da5c475c82af41428a743641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a19988da5c475c82af41428a743641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a19988da5c475c82af41428a743641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97a19988da5c475c82af41428a743641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97a19988da5c475c82af41428a743641.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVAuMjv1dUrPvrd3m96osGVw82k=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.345963+00 2025-12-09 10:14:43.345967+00 4057 23-2101#A14领子通用 SPMX-20240815299183 \N \N \N 1 \N [{"file_id": "8ea34f31-aab9-44a7-9a7a-4951eef28e62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dfa06b209b44d26a22c5947b7cfd25f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dfa06b209b44d26a22c5947b7cfd25f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dfa06b209b44d26a22c5947b7cfd25f.jpg", "file_size": 11488, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A14领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa06b209b44d26a22c5947b7cfd25f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa06b209b44d26a22c5947b7cfd25f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa06b209b44d26a22c5947b7cfd25f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dfa06b209b44d26a22c5947b7cfd25f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dfa06b209b44d26a22c5947b7cfd25f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mdx4sCPKff6HHJ-nu2oyU1rsK8k=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.347094+00 2025-12-09 10:14:43.347097+00 4058 C23023-耳仔布匹印 SPMX-20240815299185 \N \N \N 1 \N [{"file_id": "70cde656-0981-4f71-bff3-0e900d0b9053", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be0ead9f98cb4c979139722c3047ac44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be0ead9f98cb4c979139722c3047ac44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be0ead9f98cb4c979139722c3047ac44.jpg", "file_size": 7549, "is_delete": false, "file_type": 1, "original_file_name": "C23023-耳仔布匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ead9f98cb4c979139722c3047ac44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ead9f98cb4c979139722c3047ac44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ead9f98cb4c979139722c3047ac44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be0ead9f98cb4c979139722c3047ac44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be0ead9f98cb4c979139722c3047ac44.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVCAma26p28HSWZUBU5neIPbHk4=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.348181+00 2025-12-09 10:14:43.348185+00 4059 DH19000522TFW#M VS-D3 SPMX-20240815299184 \N \N \N 1 \N [{"file_id": "430d4d8f-ddff-4dfa-9f5e-ca6cb677a575", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7feb51f4b81e49f19a97132274011079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7feb51f4b81e49f19a97132274011079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7feb51f4b81e49f19a97132274011079.jpg", "file_size": 23416, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522TFW#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feb51f4b81e49f19a97132274011079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feb51f4b81e49f19a97132274011079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feb51f4b81e49f19a97132274011079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7feb51f4b81e49f19a97132274011079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7feb51f4b81e49f19a97132274011079.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0-r361qK86LwNegZsjeGmFrKaQ=", "createTime": "2024-08-15 14:39:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.349286+00 2025-12-09 10:14:43.34929+00 4060 HSH016FW#黄VS-D3 SPMX-20240815299187 \N \N \N 1 \N [{"file_id": "64faa933-18f0-40e7-b985-03e9602895e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f438a358fd149cc8230ecda317ad68b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f438a358fd149cc8230ecda317ad68b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f438a358fd149cc8230ecda317ad68b.jpg", "file_size": 7164, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f438a358fd149cc8230ecda317ad68b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f438a358fd149cc8230ecda317ad68b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f438a358fd149cc8230ecda317ad68b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f438a358fd149cc8230ecda317ad68b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f438a358fd149cc8230ecda317ad68b.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ij0PfIHH-Pi-WYrl_Qxmjvyh13I=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.350368+00 2025-12-09 10:14:43.350372+00 4061 DH19000522TFW#S VS-D3 SPMX-20240815299193 \N \N \N 1 \N [{"file_id": "7234b75a-6326-4a29-9e4b-a176ce44f55b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "373db1638f89455a8aae01001456cace.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "373db1638f89455a8aae01001456cace.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "373db1638f89455a8aae01001456cace.jpg", "file_size": 22590, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522TFW#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373db1638f89455a8aae01001456cace.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373db1638f89455a8aae01001456cace.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373db1638f89455a8aae01001456cace.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/373db1638f89455a8aae01001456cace.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/373db1638f89455a8aae01001456cace.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTwBRsZHn5pW5R2WrZsNOVmzbkA=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.351483+00 2025-12-09 10:14:43.351486+00 4062 JS0974-A10#枣红M SPMX-20240815299189 \N \N \N 1 \N [{"file_id": "db422d75-722a-489a-914b-e6a9465d0a06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1194d10dc582486b919172fa1bcfa4c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1194d10dc582486b919172fa1bcfa4c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1194d10dc582486b919172fa1bcfa4c4.jpg", "file_size": 56878, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194d10dc582486b919172fa1bcfa4c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194d10dc582486b919172fa1bcfa4c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194d10dc582486b919172fa1bcfa4c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1194d10dc582486b919172fa1bcfa4c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1194d10dc582486b919172fa1bcfa4c4.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mt2W3EIiNWprt-jr-Nr3oabjwQ0=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.352576+00 2025-12-09 10:14:43.35258+00 4063 LZ1195#4号色 SPMX-20240815299194 \N \N \N 1 \N [{"file_id": "4e0a50c6-ae34-4efa-903d-0757a822a26f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg", "file_size": 8790, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1e7cdf1b0f84e2da20f4b4c13aa4bb5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4PBZ0Dfx8EoSm4DfasQnjwVKdo=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.353678+00 2025-12-09 10:14:43.353681+00 4064 0001-47FWE#VS-D3 SPMX-20240815299188 \N \N \N 1 \N [{"file_id": "887ae1ba-1812-4cd6-a607-d95caa57cd34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4ca3037184f4a9391eecc651b68264d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4ca3037184f4a9391eecc651b68264d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4ca3037184f4a9391eecc651b68264d.jpg", "file_size": 17162, "is_delete": false, "file_type": 1, "original_file_name": "0001-47FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ca3037184f4a9391eecc651b68264d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ca3037184f4a9391eecc651b68264d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ca3037184f4a9391eecc651b68264d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4ca3037184f4a9391eecc651b68264d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4ca3037184f4a9391eecc651b68264d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8r9hMRtXxa1VEZWzsPbGMLNRUGc=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.354762+00 2025-12-09 10:14:43.354766+00 4065 23-2101#A15前后片3XL SPMX-20240815299192 \N \N \N 1 \N [{"file_id": "2355df49-b17a-4311-991c-fbf39aee2afb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abf4077ac2b94f429a16c047b39638e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abf4077ac2b94f429a16c047b39638e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abf4077ac2b94f429a16c047b39638e7.jpg", "file_size": 11222, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A15前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf4077ac2b94f429a16c047b39638e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf4077ac2b94f429a16c047b39638e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf4077ac2b94f429a16c047b39638e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abf4077ac2b94f429a16c047b39638e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abf4077ac2b94f429a16c047b39638e7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXhX5bHfOL7MBrj3bR-7mhogr2Q=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.355887+00 2025-12-09 10:14:43.355891+00 4066 FHPKDX-004-2-批布 SPMX-20240815299191 \N \N \N 1 \N [{"file_id": "8b982398-c620-48d2-9dcf-442ec1bd9e11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28e38da7ca6e4e24bee4593e4f2c9427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28e38da7ca6e4e24bee4593e4f2c9427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28e38da7ca6e4e24bee4593e4f2c9427.jpg", "file_size": 47788, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-004-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e38da7ca6e4e24bee4593e4f2c9427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e38da7ca6e4e24bee4593e4f2c9427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e38da7ca6e4e24bee4593e4f2c9427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28e38da7ca6e4e24bee4593e4f2c9427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28e38da7ca6e4e24bee4593e4f2c9427.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6v60KrcDaq7w6vOY_MgLi4dXDi8=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.356992+00 2025-12-09 10:14:43.356996+00 4067 1043#绿色 SPMX-20240815299186 \N \N \N 1 \N [{"file_id": "cc1d8460-02ba-4a5d-847c-286ee61aa0b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae1f62cbce004db180970a6ef6f027dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae1f62cbce004db180970a6ef6f027dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae1f62cbce004db180970a6ef6f027dc.jpg", "file_size": 16615, "is_delete": false, "file_type": 1, "original_file_name": "1043#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1f62cbce004db180970a6ef6f027dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1f62cbce004db180970a6ef6f027dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1f62cbce004db180970a6ef6f027dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae1f62cbce004db180970a6ef6f027dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae1f62cbce004db180970a6ef6f027dc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TRo7CU6p2CJg8eqMsbdcHUR3SU=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.358082+00 2025-12-09 10:14:43.358086+00 4068 LHJ9169#咖啡后片+裤 SPMX-20240815299195 \N \N \N 1 \N [{"file_id": "2e460ae8-842d-4608-92ea-c59f5c20e708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f2533411fd140d2a646dcdcc334ded7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f2533411fd140d2a646dcdcc334ded7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f2533411fd140d2a646dcdcc334ded7.jpg", "file_size": 15504, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#咖啡后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2533411fd140d2a646dcdcc334ded7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2533411fd140d2a646dcdcc334ded7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2533411fd140d2a646dcdcc334ded7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f2533411fd140d2a646dcdcc334ded7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f2533411fd140d2a646dcdcc334ded7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOatmAwD25lPC9JoFunGmZ9raRo=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.359191+00 2025-12-09 10:14:43.359195+00 4069 8005#浅蓝色2XL SPMX-20240815299190 \N \N \N 1 \N [{"file_id": "df333925-c58e-42d5-8a23-62eba21005fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b4b8a04da204735bc5dc7a543eeea7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b4b8a04da204735bc5dc7a543eeea7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b4b8a04da204735bc5dc7a543eeea7d.jpg", "file_size": 75171, "is_delete": false, "file_type": 1, "original_file_name": "8005#浅蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4b8a04da204735bc5dc7a543eeea7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4b8a04da204735bc5dc7a543eeea7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4b8a04da204735bc5dc7a543eeea7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b4b8a04da204735bc5dc7a543eeea7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b4b8a04da204735bc5dc7a543eeea7d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jBH2cKGMvwYplgXan94KfeX_IE=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.360304+00 2025-12-09 10:14:43.360308+00 4070 0001-47FWF#V5曲线 SPMX-20240815299199 \N \N \N 1 \N [{"file_id": "dd4798cd-0d08-4c32-ab76-662a9e2e8113", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd521cfaa17e402aafa608044fbd834c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd521cfaa17e402aafa608044fbd834c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd521cfaa17e402aafa608044fbd834c.jpg", "file_size": 9280, "is_delete": false, "file_type": 1, "original_file_name": "0001-47FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd521cfaa17e402aafa608044fbd834c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd521cfaa17e402aafa608044fbd834c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd521cfaa17e402aafa608044fbd834c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd521cfaa17e402aafa608044fbd834c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd521cfaa17e402aafa608044fbd834c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5F_5jKIc0OD0zkLmEtvtYjXtvdI=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.361397+00 2025-12-09 10:14:43.361402+00 4071 8005#浅蓝色L SPMX-20240815299205 \N \N \N 1 \N [{"file_id": "12071a52-cebb-45c4-9037-afe4521dbb85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d4e80a4bee4518aea769d1ee03e487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d4e80a4bee4518aea769d1ee03e487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d4e80a4bee4518aea769d1ee03e487.jpg", "file_size": 78496, "is_delete": false, "file_type": 1, "original_file_name": "8005#浅蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d4e80a4bee4518aea769d1ee03e487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d4e80a4bee4518aea769d1ee03e487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d4e80a4bee4518aea769d1ee03e487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d4e80a4bee4518aea769d1ee03e487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d4e80a4bee4518aea769d1ee03e487.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dN80iY-0zCT71UoSb7ZmgHJcFmY=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.362567+00 2025-12-09 10:14:43.36257+00 4072 HSH017#2019 SPMX-20240815299208 \N \N \N 1 \N [{"file_id": "90613917-1bb2-464f-8811-380f014cc25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5a552b3d7de43b8bfd76c9e86ba6a39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5a552b3d7de43b8bfd76c9e86ba6a39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5a552b3d7de43b8bfd76c9e86ba6a39.jpg", "file_size": 22457, "is_delete": false, "file_type": 1, "original_file_name": "HSH017#2019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5a552b3d7de43b8bfd76c9e86ba6a39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5a552b3d7de43b8bfd76c9e86ba6a39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5a552b3d7de43b8bfd76c9e86ba6a39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5a552b3d7de43b8bfd76c9e86ba6a39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5a552b3d7de43b8bfd76c9e86ba6a39.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QaEU4d81aa98QdTjJL9ekkvCKbg=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.363666+00 2025-12-09 10:14:43.363671+00 4073 HSH016FWE#VS-D3 SPMX-20240815299197 \N \N \N 1 \N [{"file_id": "fef2e65c-070a-40d7-9e93-fc5bf179c3f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53b5903d07b14d9187533843b2b345cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53b5903d07b14d9187533843b2b345cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53b5903d07b14d9187533843b2b345cd.jpg", "file_size": 13112, "is_delete": false, "file_type": 1, "original_file_name": "HSH016FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b5903d07b14d9187533843b2b345cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b5903d07b14d9187533843b2b345cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b5903d07b14d9187533843b2b345cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53b5903d07b14d9187533843b2b345cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53b5903d07b14d9187533843b2b345cd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xb48JzshArO0f4SqfSYjyCvQi6E=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.364789+00 2025-12-09 10:14:43.364793+00 4074 JS0974-A10#枣红S SPMX-20240815299201 \N \N \N 1 \N [{"file_id": "fe0d70db-ab16-4bba-ab18-eb4ce6001afd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3de948b99524d8f9306c6cacb5644bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3de948b99524d8f9306c6cacb5644bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3de948b99524d8f9306c6cacb5644bf.jpg", "file_size": 59551, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de948b99524d8f9306c6cacb5644bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de948b99524d8f9306c6cacb5644bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de948b99524d8f9306c6cacb5644bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3de948b99524d8f9306c6cacb5644bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3de948b99524d8f9306c6cacb5644bf.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZG09bQozYfiIJzuPkqjcLZPf9I8=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.365894+00 2025-12-09 10:14:43.365898+00 4075 LZ1195FWE#1号色 SPMX-20240815299202 \N \N \N 1 \N [{"file_id": "5501758f-6608-4995-a589-cbc4d4d68d6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01818418f3f9444e8542a708ebabdc49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01818418f3f9444e8542a708ebabdc49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01818418f3f9444e8542a708ebabdc49.jpg", "file_size": 9059, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195FWE#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01818418f3f9444e8542a708ebabdc49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01818418f3f9444e8542a708ebabdc49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01818418f3f9444e8542a708ebabdc49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01818418f3f9444e8542a708ebabdc49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01818418f3f9444e8542a708ebabdc49.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2-JdM1D6NZKY6zdC552cj3xcaU=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.367015+00 2025-12-09 10:14:43.367019+00 4076 DH19000522TFW#XL VS-D3 SPMX-20240815299204 \N \N \N 1 \N [{"file_id": "e82f1178-ecc0-444b-b963-9355b3943d24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a5daa9de8cb4a7f9a66555a37d31af6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a5daa9de8cb4a7f9a66555a37d31af6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a5daa9de8cb4a7f9a66555a37d31af6.jpg", "file_size": 19166, "is_delete": false, "file_type": 1, "original_file_name": "DH19000522TFW#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5daa9de8cb4a7f9a66555a37d31af6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5daa9de8cb4a7f9a66555a37d31af6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5daa9de8cb4a7f9a66555a37d31af6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a5daa9de8cb4a7f9a66555a37d31af6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a5daa9de8cb4a7f9a66555a37d31af6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fX-5N1hsAxXOf61jBp-kxLKUw44=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.369627+00 2025-12-09 10:14:43.369632+00 4077 C23030#净色 SPMX-20240815299196 \N \N \N 1 \N [{"file_id": "2812e8ec-318b-418e-b818-aa97ec0622f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e0824ffe3434ec6add64a7a301ba4fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e0824ffe3434ec6add64a7a301ba4fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e0824ffe3434ec6add64a7a301ba4fd.jpg", "file_size": 7279, "is_delete": false, "file_type": 1, "original_file_name": "C23030#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0824ffe3434ec6add64a7a301ba4fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0824ffe3434ec6add64a7a301ba4fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0824ffe3434ec6add64a7a301ba4fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e0824ffe3434ec6add64a7a301ba4fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e0824ffe3434ec6add64a7a301ba4fd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ueb5DXuZqbbx1irjj8P4xKMRXjg=", "createTime": "2024-08-15 14:39:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.370768+00 2025-12-09 10:14:43.370772+00 4078 23-2101#A15前后片4XL SPMX-20240815299200 \N \N \N 1 \N [{"file_id": "eae97d74-c9c1-4ccc-9226-dc6f741dbbdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3823954da2f74c309379eded585cca85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3823954da2f74c309379eded585cca85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3823954da2f74c309379eded585cca85.jpg", "file_size": 11551, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A15前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3823954da2f74c309379eded585cca85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3823954da2f74c309379eded585cca85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3823954da2f74c309379eded585cca85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3823954da2f74c309379eded585cca85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3823954da2f74c309379eded585cca85.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Bzw79TnMN9YDstGPcx2AR-FqHY=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.37187+00 2025-12-09 10:14:43.371874+00 4079 C23030#衣服L SPMX-20240815299206 \N \N \N 1 \N [{"file_id": "3b5c4f39-0e73-4d08-9f86-aa58a3c19c18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "031e036f4413489cabd2b424dc8c6838.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "031e036f4413489cabd2b424dc8c6838.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "031e036f4413489cabd2b424dc8c6838.jpg", "file_size": 30347, "is_delete": false, "file_type": 1, "original_file_name": "C23030#衣服L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031e036f4413489cabd2b424dc8c6838.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031e036f4413489cabd2b424dc8c6838.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031e036f4413489cabd2b424dc8c6838.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/031e036f4413489cabd2b424dc8c6838.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/031e036f4413489cabd2b424dc8c6838.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY6G1uEmhlz5nM5leTqwOR5WqeU=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.372981+00 2025-12-09 10:14:43.372986+00 4080 1043FWF#-1 SPMX-20240815299198 \N \N \N 1 \N [{"file_id": "0d37a88f-57af-41e8-a129-29cd69c45a5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f9133e5026d42c8a3a4ece67e7e0b79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f9133e5026d42c8a3a4ece67e7e0b79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f9133e5026d42c8a3a4ece67e7e0b79.jpg", "file_size": 20431, "is_delete": false, "file_type": 1, "original_file_name": "1043FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9133e5026d42c8a3a4ece67e7e0b79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9133e5026d42c8a3a4ece67e7e0b79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9133e5026d42c8a3a4ece67e7e0b79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f9133e5026d42c8a3a4ece67e7e0b79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f9133e5026d42c8a3a4ece67e7e0b79.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2Vvvxr57CE9L1yhKj1oULzgPi0=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.374115+00 2025-12-09 10:14:43.374119+00 4081 LHJ9169#黑白前片 SPMX-20240815299207 \N \N \N 1 \N [{"file_id": "70407a52-91c0-4751-8881-305ef180136a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7298b9c60f564988a8f00a245db2d766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7298b9c60f564988a8f00a245db2d766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7298b9c60f564988a8f00a245db2d766.jpg", "file_size": 15383, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#黑白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7298b9c60f564988a8f00a245db2d766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7298b9c60f564988a8f00a245db2d766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7298b9c60f564988a8f00a245db2d766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7298b9c60f564988a8f00a245db2d766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7298b9c60f564988a8f00a245db2d766.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XU3SXfniVs4sj7tOGUqneuTNcPM=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.375238+00 2025-12-09 10:14:43.375242+00 4082 0001-48FWF#V5曲线 SPMX-20240815299210 \N \N \N 1 \N [{"file_id": "50247c15-89e3-46ec-b504-444aa52f0877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb4552622f894e539945fdb8c354501d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb4552622f894e539945fdb8c354501d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb4552622f894e539945fdb8c354501d.jpg", "file_size": 15668, "is_delete": false, "file_type": 1, "original_file_name": "0001-48FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4552622f894e539945fdb8c354501d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4552622f894e539945fdb8c354501d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4552622f894e539945fdb8c354501d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb4552622f894e539945fdb8c354501d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb4552622f894e539945fdb8c354501d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-2o3rqKVNyN9I0M0nFGRIAEUSs=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.376321+00 2025-12-09 10:14:43.376325+00 4083 1043FWF#-2 SPMX-20240815299209 \N \N \N 1 \N [{"file_id": "3eb8fbf5-1c8b-4676-8194-671ec5cb2487", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cff84c4195d14bddb57319223d2b3560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cff84c4195d14bddb57319223d2b3560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cff84c4195d14bddb57319223d2b3560.jpg", "file_size": 19167, "is_delete": false, "file_type": 1, "original_file_name": "1043FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff84c4195d14bddb57319223d2b3560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff84c4195d14bddb57319223d2b3560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff84c4195d14bddb57319223d2b3560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cff84c4195d14bddb57319223d2b3560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cff84c4195d14bddb57319223d2b3560.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okZbmJDbTePy_ESldKcHKgt5vQ0=", "createTime": "2024-08-15 14:40:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.386366+00 2025-12-09 10:14:43.38637+00 4092 LZ1195FWE#3号色 SPMX-20240815299221 \N \N \N 1 \N [{"file_id": "5d797fe9-f5dc-4de4-8d41-ef31ed55e417", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "666b51510fc348b68973444cc9e85a98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "666b51510fc348b68973444cc9e85a98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "666b51510fc348b68973444cc9e85a98.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195FWE#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666b51510fc348b68973444cc9e85a98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666b51510fc348b68973444cc9e85a98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666b51510fc348b68973444cc9e85a98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/666b51510fc348b68973444cc9e85a98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/666b51510fc348b68973444cc9e85a98.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJu4Gquux70V-lG0tsphA-lhNkg=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.377417+00 2025-12-09 10:14:43.377421+00 4084 DH19220248Y-1#灰VS-D3 SPMX-20240815299212 \N \N \N 1 \N [{"file_id": "201e04f4-8314-4635-b3db-cb00de11d705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e12aab437da14fa3a9e1cb0a32ee8ce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e12aab437da14fa3a9e1cb0a32ee8ce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e12aab437da14fa3a9e1cb0a32ee8ce2.jpg", "file_size": 8865, "is_delete": false, "file_type": 1, "original_file_name": "DH19220248Y-1#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aab437da14fa3a9e1cb0a32ee8ce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aab437da14fa3a9e1cb0a32ee8ce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aab437da14fa3a9e1cb0a32ee8ce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e12aab437da14fa3a9e1cb0a32ee8ce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e12aab437da14fa3a9e1cb0a32ee8ce2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6NWBU6aJmgTA6q50t8ZLRSZEmY=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.378512+00 2025-12-09 10:14:43.378516+00 4085 LZ1195FWE#2号色 SPMX-20240815299213 \N \N \N 1 \N [{"file_id": "8213166b-c204-46c9-989f-f21f1152752d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f844e4ccde6642ab95ac79162e9a2473.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f844e4ccde6642ab95ac79162e9a2473.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f844e4ccde6642ab95ac79162e9a2473.jpg", "file_size": 8345, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195FWE#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f844e4ccde6642ab95ac79162e9a2473.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f844e4ccde6642ab95ac79162e9a2473.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f844e4ccde6642ab95ac79162e9a2473.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f844e4ccde6642ab95ac79162e9a2473.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f844e4ccde6642ab95ac79162e9a2473.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGv_qG9zF-CrmDwvlCf0s40VeRA=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.379666+00 2025-12-09 10:14:43.379669+00 4086 23-2101#A15袖子3XL SPMX-20240815299211 \N \N \N 1 \N [{"file_id": "02bbd7ca-2f8b-4306-8319-b2bda79fbf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58faa19b561f479db720bbd86806d099.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58faa19b561f479db720bbd86806d099.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58faa19b561f479db720bbd86806d099.jpg", "file_size": 10586, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A15袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58faa19b561f479db720bbd86806d099.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58faa19b561f479db720bbd86806d099.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58faa19b561f479db720bbd86806d099.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58faa19b561f479db720bbd86806d099.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58faa19b561f479db720bbd86806d099.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73qX02rP4m-AehMStyYouhjGsOM=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.380788+00 2025-12-09 10:14:43.380792+00 4087 HSH017FW#VS-D3 SPMX-20240815299215 \N \N \N 1 \N [{"file_id": "31d68f39-2cb8-4476-84da-60fe4ee69350", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71995eb038a84920803a3ec578e104eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71995eb038a84920803a3ec578e104eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71995eb038a84920803a3ec578e104eb.jpg", "file_size": 19812, "is_delete": false, "file_type": 1, "original_file_name": "HSH017FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71995eb038a84920803a3ec578e104eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71995eb038a84920803a3ec578e104eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71995eb038a84920803a3ec578e104eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71995eb038a84920803a3ec578e104eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71995eb038a84920803a3ec578e104eb.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lks6vJGYyoI7TdhM6C87wpAQTz4=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.381896+00 2025-12-09 10:14:43.3819+00 4088 LHJ9169#黑白后片+裤 SPMX-20240815299216 \N \N \N 1 \N [{"file_id": "05c2ee8c-a90c-4d64-928f-737b659ff44d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7304afc0629c4997955d5b58760bf805.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7304afc0629c4997955d5b58760bf805.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7304afc0629c4997955d5b58760bf805.jpg", "file_size": 15255, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9169#黑白后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7304afc0629c4997955d5b58760bf805.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7304afc0629c4997955d5b58760bf805.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7304afc0629c4997955d5b58760bf805.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7304afc0629c4997955d5b58760bf805.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7304afc0629c4997955d5b58760bf805.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFWDMBLjYBTSLyQj5HzyujlUKXg=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.383034+00 2025-12-09 10:14:43.383038+00 4089 8005#浅蓝色XL SPMX-20240815299218 \N \N \N 1 \N [{"file_id": "a889702a-3e50-441f-8c9d-4c432bf57f7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0623ec68c19245f39ba365ee0d4e1b5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0623ec68c19245f39ba365ee0d4e1b5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0623ec68c19245f39ba365ee0d4e1b5c.jpg", "file_size": 79157, "is_delete": false, "file_type": 1, "original_file_name": "8005#浅蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0623ec68c19245f39ba365ee0d4e1b5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0623ec68c19245f39ba365ee0d4e1b5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0623ec68c19245f39ba365ee0d4e1b5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0623ec68c19245f39ba365ee0d4e1b5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0623ec68c19245f39ba365ee0d4e1b5c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY7ijzS0av26jsygF3JV8cJGFP8=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.384146+00 2025-12-09 10:14:43.384151+00 4090 23-2101#A15袖子4XL SPMX-20240815299217 \N \N \N 1 \N [{"file_id": "eb18aa62-23b3-4a59-b5d2-759c27701e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3575cbc6d30460fa7a73981729411c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3575cbc6d30460fa7a73981729411c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3575cbc6d30460fa7a73981729411c3.jpg", "file_size": 10390, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A15袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3575cbc6d30460fa7a73981729411c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3575cbc6d30460fa7a73981729411c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3575cbc6d30460fa7a73981729411c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3575cbc6d30460fa7a73981729411c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3575cbc6d30460fa7a73981729411c3.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kV6KuQzTqlIi_-g1_kL7gcxMN9M=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.385252+00 2025-12-09 10:14:43.385256+00 4091 C23030#衣服M SPMX-20240815299219 \N \N \N 1 \N [{"file_id": "69d476a3-1787-4ac5-9b4d-f9dd71f2d6f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f31f47db3b08478c9581317ebb13cea7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f31f47db3b08478c9581317ebb13cea7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f31f47db3b08478c9581317ebb13cea7.jpg", "file_size": 30279, "is_delete": false, "file_type": 1, "original_file_name": "C23030#衣服M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31f47db3b08478c9581317ebb13cea7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31f47db3b08478c9581317ebb13cea7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31f47db3b08478c9581317ebb13cea7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f31f47db3b08478c9581317ebb13cea7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f31f47db3b08478c9581317ebb13cea7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOQ3gFeCB60KU2UPn9bz-mCZWRg=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.387476+00 2025-12-09 10:14:43.387481+00 4093 JS0974-A10#枣红XL SPMX-20240815299214 \N \N \N 1 \N [{"file_id": "40ddb822-0742-494c-8af2-aafe9acf965d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7dcddaf196a48dd91637a3b0ba70289.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7dcddaf196a48dd91637a3b0ba70289.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7dcddaf196a48dd91637a3b0ba70289.jpg", "file_size": 57198, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dcddaf196a48dd91637a3b0ba70289.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dcddaf196a48dd91637a3b0ba70289.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dcddaf196a48dd91637a3b0ba70289.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7dcddaf196a48dd91637a3b0ba70289.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7dcddaf196a48dd91637a3b0ba70289.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdWPQlAHYGY8nlXR9QIOnYO0SSw=", "createTime": "2024-08-15 14:40:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.388596+00 2025-12-09 10:14:43.3886+00 4094 FHPKDX-004-4-批布 SPMX-20240815299220 \N \N \N 1 \N [{"file_id": "c1503eb2-ceb3-40f1-9358-711922a5d986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09338e49dbb049ce84bc7dc066ace98c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09338e49dbb049ce84bc7dc066ace98c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09338e49dbb049ce84bc7dc066ace98c.jpg", "file_size": 36911, "is_delete": false, "file_type": 1, "original_file_name": "FHPKDX-004-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09338e49dbb049ce84bc7dc066ace98c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09338e49dbb049ce84bc7dc066ace98c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09338e49dbb049ce84bc7dc066ace98c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09338e49dbb049ce84bc7dc066ace98c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09338e49dbb049ce84bc7dc066ace98c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfnwVwRdCwAkF2s08l9XPS4phTk=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.389702+00 2025-12-09 10:14:43.38971+00 4095 0001-49FWF#V5曲线 SPMX-20240815299224 \N \N \N 1 \N [{"file_id": "2fba50d3-0812-4f04-a4e4-3a9109724c5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a85e1e65be0445f0ad830690b10edb0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a85e1e65be0445f0ad830690b10edb0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a85e1e65be0445f0ad830690b10edb0e.jpg", "file_size": 21652, "is_delete": false, "file_type": 1, "original_file_name": "0001-49FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85e1e65be0445f0ad830690b10edb0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85e1e65be0445f0ad830690b10edb0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85e1e65be0445f0ad830690b10edb0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a85e1e65be0445f0ad830690b10edb0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a85e1e65be0445f0ad830690b10edb0e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rR4RQX2vHruB8Cw6eOFDrhHyRTA=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.390797+00 2025-12-09 10:14:43.390801+00 4096 DH19220248Y-1#黑VS-D3 SPMX-20240815299222 \N \N \N 1 \N [{"file_id": "2f747dd0-4c95-420c-a449-aa78bfff1299", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bdefdbe305449a99af52e26168af72e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bdefdbe305449a99af52e26168af72e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bdefdbe305449a99af52e26168af72e.jpg", "file_size": 12758, "is_delete": false, "file_type": 1, "original_file_name": "DH19220248Y-1#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdefdbe305449a99af52e26168af72e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdefdbe305449a99af52e26168af72e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdefdbe305449a99af52e26168af72e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bdefdbe305449a99af52e26168af72e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bdefdbe305449a99af52e26168af72e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_jXfYmzPHb3FNXVLdEQQJfLp_g=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.391897+00 2025-12-09 10:14:43.391901+00 4097 1043FWF#-3 SPMX-20240815299223 \N \N \N 1 \N [{"file_id": "94454654-1738-4ecc-8b76-8b23d51936d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e16714d759d2407cbb3cebfd866b104d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e16714d759d2407cbb3cebfd866b104d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e16714d759d2407cbb3cebfd866b104d.jpg", "file_size": 19452, "is_delete": false, "file_type": 1, "original_file_name": "1043FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16714d759d2407cbb3cebfd866b104d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16714d759d2407cbb3cebfd866b104d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16714d759d2407cbb3cebfd866b104d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e16714d759d2407cbb3cebfd866b104d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e16714d759d2407cbb3cebfd866b104d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcLUtve8AKmCVD0amBA8zkRHiac=", "createTime": "2024-08-15 14:40:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.393016+00 2025-12-09 10:14:43.39302+00 4098 8005#浅蓝色批布文件共用 SPMX-20240815299226 \N \N \N 1 \N [{"file_id": "23fa4a96-e4b2-42c6-aff8-d4c92d8ae769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32a6e3b926ab411790b45f5d6e341312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32a6e3b926ab411790b45f5d6e341312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32a6e3b926ab411790b45f5d6e341312.jpg", "file_size": 41515, "is_delete": false, "file_type": 1, "original_file_name": "8005#浅蓝色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a6e3b926ab411790b45f5d6e341312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a6e3b926ab411790b45f5d6e341312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a6e3b926ab411790b45f5d6e341312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32a6e3b926ab411790b45f5d6e341312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32a6e3b926ab411790b45f5d6e341312.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbmlJ2HVJU4xPWmk9kwA7JLCCpU=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.394115+00 2025-12-09 10:14:43.39412+00 4099 0001-4FWE#VS-D3 SPMX-20240815299230 \N \N \N 1 \N [{"file_id": "207bb078-6b3e-4cf1-b154-4bfac3ec2f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79d797e473514229b4276512faf3d1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79d797e473514229b4276512faf3d1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79d797e473514229b4276512faf3d1dd.jpg", "file_size": 32417, "is_delete": false, "file_type": 1, "original_file_name": "0001-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d797e473514229b4276512faf3d1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d797e473514229b4276512faf3d1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79d797e473514229b4276512faf3d1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79d797e473514229b4276512faf3d1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79d797e473514229b4276512faf3d1dd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQKL-Bv2j3TIE4aUPF30SwX6v88=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.39521+00 2025-12-09 10:14:43.395214+00 4100 C23030#衣服S SPMX-20240815299235 \N \N \N 1 \N [{"file_id": "ee1a5054-5c87-45dd-a040-6ecfa4dd7ab1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55689acc2f8346ac892744b5ec692aba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55689acc2f8346ac892744b5ec692aba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55689acc2f8346ac892744b5ec692aba.jpg", "file_size": 29427, "is_delete": false, "file_type": 1, "original_file_name": "C23030#衣服S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55689acc2f8346ac892744b5ec692aba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55689acc2f8346ac892744b5ec692aba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55689acc2f8346ac892744b5ec692aba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55689acc2f8346ac892744b5ec692aba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55689acc2f8346ac892744b5ec692aba.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4yxKnYXyXbSU_PGG8PBlVHDsG4=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.396551+00 2025-12-09 10:14:43.396556+00 4101 LHJ9170#135#绿色前片 SPMX-20240815299227 \N \N \N 1 \N [{"file_id": "8b1aecff-2723-4068-b74b-767fff69bb01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "511baa3697f941509dd8ce9563803a17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "511baa3697f941509dd8ce9563803a17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "511baa3697f941509dd8ce9563803a17.jpg", "file_size": 10541, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#135#绿色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511baa3697f941509dd8ce9563803a17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511baa3697f941509dd8ce9563803a17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511baa3697f941509dd8ce9563803a17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/511baa3697f941509dd8ce9563803a17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/511baa3697f941509dd8ce9563803a17.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2j8xzF931N_zOMG-w6Ozm31gWxg=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.397663+00 2025-12-09 10:14:43.397667+00 4102 1043FWF#-4 SPMX-20240815299229 \N \N \N 1 \N [{"file_id": "0a53b5a0-981c-43f4-bed1-ba900056416c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8072b284f9493f8fefc1446ebd14d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8072b284f9493f8fefc1446ebd14d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8072b284f9493f8fefc1446ebd14d6.jpg", "file_size": 19367, "is_delete": false, "file_type": 1, "original_file_name": "1043FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8072b284f9493f8fefc1446ebd14d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8072b284f9493f8fefc1446ebd14d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8072b284f9493f8fefc1446ebd14d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8072b284f9493f8fefc1446ebd14d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8072b284f9493f8fefc1446ebd14d6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LLyBffbOEMdHC0--AdHnVADUME=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.398785+00 2025-12-09 10:14:43.398789+00 4103 FHPKTZ-001-1-批布 SPMX-20240815299233 \N \N \N 1 \N [{"file_id": "b0a4b870-3a4f-4084-9fbb-7ab41b634fd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cc4bd70399a4b49b325ec1fbacddccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cc4bd70399a4b49b325ec1fbacddccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cc4bd70399a4b49b325ec1fbacddccf.jpg", "file_size": 31205, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-001-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cc4bd70399a4b49b325ec1fbacddccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cc4bd70399a4b49b325ec1fbacddccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cc4bd70399a4b49b325ec1fbacddccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cc4bd70399a4b49b325ec1fbacddccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cc4bd70399a4b49b325ec1fbacddccf.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bK4AqXQXlvhuH8IlynUNRF489Wo=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.399889+00 2025-12-09 10:14:43.399894+00 4104 JS0974-A10#枣红净色 SPMX-20240815299231 \N \N \N 1 \N [{"file_id": "ee61e7d0-4440-4429-8e25-17c0f26c00d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70768b8228284a5aa87371ed6307e833.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70768b8228284a5aa87371ed6307e833.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70768b8228284a5aa87371ed6307e833.jpg", "file_size": 19858, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70768b8228284a5aa87371ed6307e833.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70768b8228284a5aa87371ed6307e833.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70768b8228284a5aa87371ed6307e833.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70768b8228284a5aa87371ed6307e833.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70768b8228284a5aa87371ed6307e833.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iNV-iEyxXWVnchpDgGMPbaG5CWM=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.400987+00 2025-12-09 10:14:43.400991+00 4105 HSH017FWE#橘色VS-D3 SPMX-20240815299232 \N \N \N 1 \N [{"file_id": "ee6b0881-d843-4a3a-b59a-49859fb781cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cedefdc66194e2e86f66b39a19835d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cedefdc66194e2e86f66b39a19835d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cedefdc66194e2e86f66b39a19835d3.jpg", "file_size": 16073, "is_delete": false, "file_type": 1, "original_file_name": "HSH017FWE#橘色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cedefdc66194e2e86f66b39a19835d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cedefdc66194e2e86f66b39a19835d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cedefdc66194e2e86f66b39a19835d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cedefdc66194e2e86f66b39a19835d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cedefdc66194e2e86f66b39a19835d3.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yz79uovrug_AsR6oGy9A0q-SPck=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.402102+00 2025-12-09 10:14:43.402106+00 4106 LZ1195FWE#4号色 SPMX-20240815299228 \N \N \N 1 \N [{"file_id": "8a36cc63-3f48-4eef-815d-020d3ba0fd25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6782806c0b814f9b99f9a2975663c6f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6782806c0b814f9b99f9a2975663c6f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6782806c0b814f9b99f9a2975663c6f0.jpg", "file_size": 8714, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195FWE#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6782806c0b814f9b99f9a2975663c6f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6782806c0b814f9b99f9a2975663c6f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6782806c0b814f9b99f9a2975663c6f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6782806c0b814f9b99f9a2975663c6f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6782806c0b814f9b99f9a2975663c6f0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tWVmS0whHxq-M5fNQF09PtdvSRw=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.403209+00 2025-12-09 10:14:43.403213+00 4107 23-2101#A16前后片3XL SPMX-20240815299236 \N \N \N 1 \N [{"file_id": "896b68bf-d655-41b6-9276-8b7ba7252957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78e645b2fdff4d9e9f7d408b08f4015d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78e645b2fdff4d9e9f7d408b08f4015d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78e645b2fdff4d9e9f7d408b08f4015d.jpg", "file_size": 8026, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e645b2fdff4d9e9f7d408b08f4015d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e645b2fdff4d9e9f7d408b08f4015d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e645b2fdff4d9e9f7d408b08f4015d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78e645b2fdff4d9e9f7d408b08f4015d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78e645b2fdff4d9e9f7d408b08f4015d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1eLXB0Om_B2UQGdvjqE_2xLXp0=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.404301+00 2025-12-09 10:14:43.404305+00 4108 23-2101#A15领子通用 SPMX-20240815299225 \N \N \N 1 \N [{"file_id": "07a4a078-8a04-4738-9def-a22a72da856e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4214ad079fe4f4eb2f9034bc11aa17a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4214ad079fe4f4eb2f9034bc11aa17a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4214ad079fe4f4eb2f9034bc11aa17a.jpg", "file_size": 9838, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A15领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4214ad079fe4f4eb2f9034bc11aa17a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4214ad079fe4f4eb2f9034bc11aa17a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4214ad079fe4f4eb2f9034bc11aa17a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4214ad079fe4f4eb2f9034bc11aa17a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4214ad079fe4f4eb2f9034bc11aa17a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkZlJxGBV3JQIXIL1j3zcV-eeos=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.405398+00 2025-12-09 10:14:43.405401+00 4109 DH201101331Y#白灰迷彩VS-D3 SPMX-20240815299234 \N \N \N 1 \N [{"file_id": "14fd34ca-bb35-4e52-a18f-ec1713cbae0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a29291671c5d4086881e5a460986964a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a29291671c5d4086881e5a460986964a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a29291671c5d4086881e5a460986964a.jpg", "file_size": 18054, "is_delete": false, "file_type": 1, "original_file_name": "DH201101331Y#白灰迷彩VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29291671c5d4086881e5a460986964a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29291671c5d4086881e5a460986964a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29291671c5d4086881e5a460986964a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a29291671c5d4086881e5a460986964a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a29291671c5d4086881e5a460986964a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5Haq_Jlw4Zs_ZxYy77XqNPlB0A=", "createTime": "2024-08-15 14:40:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.406493+00 2025-12-09 10:14:43.406496+00 4110 LHJ9170#135#绿色后片+裤 SPMX-20240815299237 \N \N \N 1 \N [{"file_id": "c76306d1-5c4e-4068-9d98-733b9d4aba20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg", "file_size": 11049, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#135#绿色后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aabf3b61a6f401fa0b6f4b6e370ec6e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGQ8xMRShH0loG1s6cOPCoRdhps=", "createTime": "2024-08-15 14:40:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.407642+00 2025-12-09 10:14:43.407646+00 4111 1043FWF#-5 SPMX-20240815299243 \N \N \N 1 \N [{"file_id": "1f4a3354-084f-42af-b04c-6a46c68ad97b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c48becf6be0c449fbc8785df8dc23c54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c48becf6be0c449fbc8785df8dc23c54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c48becf6be0c449fbc8785df8dc23c54.jpg", "file_size": 20089, "is_delete": false, "file_type": 1, "original_file_name": "1043FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48becf6be0c449fbc8785df8dc23c54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48becf6be0c449fbc8785df8dc23c54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48becf6be0c449fbc8785df8dc23c54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c48becf6be0c449fbc8785df8dc23c54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c48becf6be0c449fbc8785df8dc23c54.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REpdNQ5br8E8YvKqTRQXPnC1bS0=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.408777+00 2025-12-09 10:14:43.408781+00 4112 C23030#衣服XL SPMX-20240815299244 \N \N \N 1 \N [{"file_id": "bef46b46-81c6-4286-a5a1-f8b6034507cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6904014e3bb49ed8e21f69161ac19a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6904014e3bb49ed8e21f69161ac19a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6904014e3bb49ed8e21f69161ac19a9.jpg", "file_size": 29191, "is_delete": false, "file_type": 1, "original_file_name": "C23030#衣服XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6904014e3bb49ed8e21f69161ac19a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6904014e3bb49ed8e21f69161ac19a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6904014e3bb49ed8e21f69161ac19a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6904014e3bb49ed8e21f69161ac19a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6904014e3bb49ed8e21f69161ac19a9.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swNmaColt6SrUapY4Pdtx0kCmv8=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.410021+00 2025-12-09 10:14:43.410026+00 4113 LZ1195FWE#罗马匹布 SPMX-20240815299239 \N \N \N 1 \N [{"file_id": "23682f6a-b3c6-44ba-ac9c-6b4653f38621", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "491c5161cca94168ab192864559f8add.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "491c5161cca94168ab192864559f8add.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "491c5161cca94168ab192864559f8add.jpg", "file_size": 8345, "is_delete": false, "file_type": 1, "original_file_name": "LZ1195FWE#罗马匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491c5161cca94168ab192864559f8add.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491c5161cca94168ab192864559f8add.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491c5161cca94168ab192864559f8add.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/491c5161cca94168ab192864559f8add.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/491c5161cca94168ab192864559f8add.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KWjtVD6VHvWNPoJypqiFbISXGFM=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.411379+00 2025-12-09 10:14:43.411383+00 4114 8005#灰色 SPMX-20240815299238 \N \N \N 1 \N [{"file_id": "bc1ba31f-9987-4f79-8969-90e6c35fe90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93205817d92a4aa5a903f3b5b835d69d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93205817d92a4aa5a903f3b5b835d69d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93205817d92a4aa5a903f3b5b835d69d.jpg", "file_size": 22826, "is_delete": false, "file_type": 1, "original_file_name": "8005#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93205817d92a4aa5a903f3b5b835d69d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93205817d92a4aa5a903f3b5b835d69d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93205817d92a4aa5a903f3b5b835d69d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93205817d92a4aa5a903f3b5b835d69d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93205817d92a4aa5a903f3b5b835d69d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xg_00-RjEcT0aMVM_KVfEg2qBqI=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.412702+00 2025-12-09 10:14:43.412709+00 4115 DH201101331Y#黑绿迷彩VS-D3 SPMX-20240815299240 \N \N \N 1 \N [{"file_id": "25a0427c-6d50-4eef-8d7f-881be72a715e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3c2b22e61434d26a6c0f91ae234fc73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3c2b22e61434d26a6c0f91ae234fc73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3c2b22e61434d26a6c0f91ae234fc73.jpg", "file_size": 12277, "is_delete": false, "file_type": 1, "original_file_name": "DH201101331Y#黑绿迷彩VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c2b22e61434d26a6c0f91ae234fc73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c2b22e61434d26a6c0f91ae234fc73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c2b22e61434d26a6c0f91ae234fc73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3c2b22e61434d26a6c0f91ae234fc73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3c2b22e61434d26a6c0f91ae234fc73.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYzRdeGNyVqCnKjeVs78XZD04Io=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.413941+00 2025-12-09 10:14:43.413945+00 4116 23-2101#A16前片3XL SPMX-20240815299242 \N \N \N 1 \N [{"file_id": "831179a7-ed3d-4467-b2cd-13f5a11d6c28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f36f1778bdf4ff184fd40ad24a7536e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f36f1778bdf4ff184fd40ad24a7536e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f36f1778bdf4ff184fd40ad24a7536e.jpg", "file_size": 9384, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16前片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f36f1778bdf4ff184fd40ad24a7536e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f36f1778bdf4ff184fd40ad24a7536e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f36f1778bdf4ff184fd40ad24a7536e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f36f1778bdf4ff184fd40ad24a7536e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f36f1778bdf4ff184fd40ad24a7536e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c49j0g2fg5QbjJ25_1bAiAPPNlY=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.415162+00 2025-12-09 10:14:43.415167+00 4117 0001-4FWF#粉色V5曲线 SPMX-20240815299241 \N \N \N 1 \N [{"file_id": "3a256b1f-d875-4caa-9122-2ba14bb65a37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94b83276a618430c902130ba7e711630.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94b83276a618430c902130ba7e711630.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94b83276a618430c902130ba7e711630.jpg", "file_size": 15503, "is_delete": false, "file_type": 1, "original_file_name": "0001-4FWF#粉色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b83276a618430c902130ba7e711630.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b83276a618430c902130ba7e711630.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b83276a618430c902130ba7e711630.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94b83276a618430c902130ba7e711630.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94b83276a618430c902130ba7e711630.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4ZU_aQOc8-6cymFUgUj6p2hQiA=", "createTime": "2024-08-15 14:40:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.416341+00 2025-12-09 10:14:43.416345+00 4118 23-2101#A16前片4XL SPMX-20240815299254 \N \N \N 1 \N [{"file_id": "35c51898-b97f-4a20-820b-865fd364d3c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de6b0f57605c483f950efe62458478a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de6b0f57605c483f950efe62458478a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de6b0f57605c483f950efe62458478a9.jpg", "file_size": 9100, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16前片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6b0f57605c483f950efe62458478a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6b0f57605c483f950efe62458478a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6b0f57605c483f950efe62458478a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de6b0f57605c483f950efe62458478a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de6b0f57605c483f950efe62458478a9.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vV3Y6IlW1hAGR6oPRTlS043fI4o=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.417495+00 2025-12-09 10:14:43.417499+00 4119 JS0974-A10#枣红图案 SPMX-20240815299247 \N \N \N 1 \N [{"file_id": "238a57bb-4e2b-474a-8e18-57370381a0d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcc9d88f5bcd418b981400153e30c011.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcc9d88f5bcd418b981400153e30c011.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcc9d88f5bcd418b981400153e30c011.jpg", "file_size": 75728, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#枣红图案.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc9d88f5bcd418b981400153e30c011.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc9d88f5bcd418b981400153e30c011.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcc9d88f5bcd418b981400153e30c011.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcc9d88f5bcd418b981400153e30c011.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcc9d88f5bcd418b981400153e30c011.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnUzB2qqB5tvPzwRuMVNjn0EMSA=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.418602+00 2025-12-09 10:14:43.418606+00 4120 0001-4FWF#黄色V5曲线 SPMX-20240815299250 \N \N \N 1 \N [{"file_id": "d393dd49-1d07-4a7f-828f-f92f784e33c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb5a211d9c554cc8be40d3927c1567b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb5a211d9c554cc8be40d3927c1567b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb5a211d9c554cc8be40d3927c1567b2.jpg", "file_size": 19581, "is_delete": false, "file_type": 1, "original_file_name": "0001-4FWF#黄色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5a211d9c554cc8be40d3927c1567b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5a211d9c554cc8be40d3927c1567b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5a211d9c554cc8be40d3927c1567b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb5a211d9c554cc8be40d3927c1567b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb5a211d9c554cc8be40d3927c1567b2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqkPR6DfHjovzcaW2WjLGh46oFg=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.419727+00 2025-12-09 10:14:43.419732+00 4121 HSH017FWE#蓝色VS-D3 SPMX-20240815299245 \N \N \N 1 \N [{"file_id": "46021363-1b6a-42dd-9870-b33e3b3a9759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2542a9099f264945bab3874396794b07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2542a9099f264945bab3874396794b07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2542a9099f264945bab3874396794b07.jpg", "file_size": 15566, "is_delete": false, "file_type": 1, "original_file_name": "HSH017FWE#蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2542a9099f264945bab3874396794b07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2542a9099f264945bab3874396794b07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2542a9099f264945bab3874396794b07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2542a9099f264945bab3874396794b07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2542a9099f264945bab3874396794b07.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jD3POKclQQmHGAUwgKZAi37_jC4=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.420885+00 2025-12-09 10:14:43.42089+00 4122 LZ1196#1号色 SPMX-20240815299251 \N \N \N 1 \N [{"file_id": "90124717-f5b1-41d8-ab84-adf8f52be632", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e97a2ef19b934e6a9e23751da3fdc101.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e97a2ef19b934e6a9e23751da3fdc101.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e97a2ef19b934e6a9e23751da3fdc101.jpg", "file_size": 9013, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97a2ef19b934e6a9e23751da3fdc101.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97a2ef19b934e6a9e23751da3fdc101.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97a2ef19b934e6a9e23751da3fdc101.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e97a2ef19b934e6a9e23751da3fdc101.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e97a2ef19b934e6a9e23751da3fdc101.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJadKf15Tkn3WL47RPixkzFTZ9w=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.422053+00 2025-12-09 10:14:43.422057+00 4123 C23030#袖子L SPMX-20240815299255 \N \N \N 1 \N [{"file_id": "61c6c66e-d93e-4b56-a182-69283c7f3cb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1020312582dc44cfb6eb2561c46fe78d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1020312582dc44cfb6eb2561c46fe78d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1020312582dc44cfb6eb2561c46fe78d.jpg", "file_size": 16417, "is_delete": false, "file_type": 1, "original_file_name": "C23030#袖子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1020312582dc44cfb6eb2561c46fe78d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1020312582dc44cfb6eb2561c46fe78d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1020312582dc44cfb6eb2561c46fe78d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1020312582dc44cfb6eb2561c46fe78d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1020312582dc44cfb6eb2561c46fe78d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKUXTO0imJnN2WLVPimtrGlijIk=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.423218+00 2025-12-09 10:14:43.423223+00 4124 10449FWF#红 SPMX-20240815299252 \N \N \N 1 \N [{"file_id": "cde5740e-0bbf-46c1-b5db-d78554e5944d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13486476bd404fd0abc23e3a92ac4c34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13486476bd404fd0abc23e3a92ac4c34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13486476bd404fd0abc23e3a92ac4c34.jpg", "file_size": 5802, "is_delete": false, "file_type": 1, "original_file_name": "10449FWF#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13486476bd404fd0abc23e3a92ac4c34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13486476bd404fd0abc23e3a92ac4c34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13486476bd404fd0abc23e3a92ac4c34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13486476bd404fd0abc23e3a92ac4c34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13486476bd404fd0abc23e3a92ac4c34.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YzVj_EodBI_0wJYBpFB1AjHmXk=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.447323+00 2025-12-09 10:14:43.447328+00 4141 10449FWF#肤色 SPMX-20240815299277 \N \N \N 1 \N [{"file_id": "a3588539-f93a-45e0-89e4-e1ddc39b3cd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db9f1949070c42e4b764f38378decb39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db9f1949070c42e4b764f38378decb39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db9f1949070c42e4b764f38378decb39.jpg", "file_size": 5018, "is_delete": false, "file_type": 1, "original_file_name": "10449FWF#肤色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9f1949070c42e4b764f38378decb39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9f1949070c42e4b764f38378decb39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9f1949070c42e4b764f38378decb39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db9f1949070c42e4b764f38378decb39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db9f1949070c42e4b764f38378decb39.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NBow6JHMyky_DW9dbYdOJVCau80=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.424815+00 2025-12-09 10:14:43.424819+00 4125 DH202201076T#5-05女装M SPMX-20240815299248 \N \N \N 1 \N [{"file_id": "46a56b84-7bc2-4f34-bc98-ecd89fa877ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bf3bb67767448ca9f706efdd2997836.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bf3bb67767448ca9f706efdd2997836.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bf3bb67767448ca9f706efdd2997836.jpg", "file_size": 7253, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-05女装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf3bb67767448ca9f706efdd2997836.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf3bb67767448ca9f706efdd2997836.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf3bb67767448ca9f706efdd2997836.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bf3bb67767448ca9f706efdd2997836.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bf3bb67767448ca9f706efdd2997836.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsc25z7gqzTbS7Nb2ohPXkJgW-g=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.426387+00 2025-12-09 10:14:43.426392+00 4126 LHJ9170#5#彩兰前片 SPMX-20240815299246 \N \N \N 1 \N [{"file_id": "8ee56a98-0139-482c-902b-186f13a97637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1ed27f3ebcd43978ccf023809b919cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1ed27f3ebcd43978ccf023809b919cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1ed27f3ebcd43978ccf023809b919cd.jpg", "file_size": 13606, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#5#彩兰前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ed27f3ebcd43978ccf023809b919cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ed27f3ebcd43978ccf023809b919cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ed27f3ebcd43978ccf023809b919cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1ed27f3ebcd43978ccf023809b919cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1ed27f3ebcd43978ccf023809b919cd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3xgSFgGfyil4a9Elk2_Em12W0o=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.428528+00 2025-12-09 10:14:43.428532+00 4127 FHPKTZ-001-2-批布 SPMX-20240815299253 \N \N \N 1 \N [{"file_id": "d4bfb2a3-9154-4227-9d22-5cd6453dff7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "509bfbd091494428bd7496bfa8634b9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "509bfbd091494428bd7496bfa8634b9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "509bfbd091494428bd7496bfa8634b9d.jpg", "file_size": 39121, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-001-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509bfbd091494428bd7496bfa8634b9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509bfbd091494428bd7496bfa8634b9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509bfbd091494428bd7496bfa8634b9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/509bfbd091494428bd7496bfa8634b9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/509bfbd091494428bd7496bfa8634b9d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSSqtEMPPgEsqUSoHTJfRsjnSto=", "createTime": "2024-08-15 14:40:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.430536+00 2025-12-09 10:14:43.430541+00 4128 8005#白色 SPMX-20240815299256 \N \N \N 1 \N [{"file_id": "d6f9983c-7ea2-45ac-9966-08699d929844", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf1017cfe3514d709f744b8e8f6aa0ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf1017cfe3514d709f744b8e8f6aa0ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf1017cfe3514d709f744b8e8f6aa0ba.jpg", "file_size": 22962, "is_delete": false, "file_type": 1, "original_file_name": "8005#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf1017cfe3514d709f744b8e8f6aa0ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf1017cfe3514d709f744b8e8f6aa0ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf1017cfe3514d709f744b8e8f6aa0ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf1017cfe3514d709f744b8e8f6aa0ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf1017cfe3514d709f744b8e8f6aa0ba.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Zmu4mj_zIhb30VOUyj5fHHOJ1k=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.432097+00 2025-12-09 10:14:43.432101+00 4129 LHJ9170#5#彩兰后片+裤 SPMX-20240815299259 \N \N \N 1 \N [{"file_id": "1b05f770-e15b-4b69-a65e-8c7d12b2ae05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e88a9dce8744b45b16a2959a31d0b60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e88a9dce8744b45b16a2959a31d0b60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e88a9dce8744b45b16a2959a31d0b60.jpg", "file_size": 13006, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#5#彩兰后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e88a9dce8744b45b16a2959a31d0b60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e88a9dce8744b45b16a2959a31d0b60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e88a9dce8744b45b16a2959a31d0b60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e88a9dce8744b45b16a2959a31d0b60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e88a9dce8744b45b16a2959a31d0b60.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BYfGVd8pLuIhVxlDByhak0ymHr0=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.433578+00 2025-12-09 10:14:43.433582+00 4130 DH202201076T#5-05女装S SPMX-20240815299260 \N \N \N 1 \N [{"file_id": "0dbf0dc7-1b88-4530-acde-55fd551f57cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e8a0b4312c4d419b5ab99726a1fac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e8a0b4312c4d419b5ab99726a1fac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e8a0b4312c4d419b5ab99726a1fac8.jpg", "file_size": 6808, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-05女装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e8a0b4312c4d419b5ab99726a1fac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e8a0b4312c4d419b5ab99726a1fac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e8a0b4312c4d419b5ab99726a1fac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e8a0b4312c4d419b5ab99726a1fac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e8a0b4312c4d419b5ab99726a1fac8.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsbfnre-7qonSvZ2nk18555PeY8=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.435001+00 2025-12-09 10:14:43.435005+00 4131 0001-50FWF#V5曲线 SPMX-20240815299261 \N \N \N 1 \N [{"file_id": "58ff21e4-4166-4816-91eb-8c2f57223614", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e03f2acf33e348d69c1e8ef98410c08d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e03f2acf33e348d69c1e8ef98410c08d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e03f2acf33e348d69c1e8ef98410c08d.jpg", "file_size": 16730, "is_delete": false, "file_type": 1, "original_file_name": "0001-50FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f2acf33e348d69c1e8ef98410c08d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f2acf33e348d69c1e8ef98410c08d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f2acf33e348d69c1e8ef98410c08d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e03f2acf33e348d69c1e8ef98410c08d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e03f2acf33e348d69c1e8ef98410c08d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5xXWqSx31e8oxiby3qL26s-JEg=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.436438+00 2025-12-09 10:14:43.436442+00 4132 LZ1196#2号色 SPMX-20240815299262 \N \N \N 1 \N [{"file_id": "1520d883-01c1-4ba2-a57e-3b8c0c61de9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98d19555f6cd4bbeb2766e22b3b30396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98d19555f6cd4bbeb2766e22b3b30396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98d19555f6cd4bbeb2766e22b3b30396.jpg", "file_size": 8862, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d19555f6cd4bbeb2766e22b3b30396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d19555f6cd4bbeb2766e22b3b30396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d19555f6cd4bbeb2766e22b3b30396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98d19555f6cd4bbeb2766e22b3b30396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98d19555f6cd4bbeb2766e22b3b30396.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ph_vdiYhyqVlXhezraLURNJ0UIw=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.437922+00 2025-12-09 10:14:43.437926+00 4133 JS0974-A10#红色净色RC23 SPMX-20240815299258 \N \N \N 1 \N [{"file_id": "e84cfdc8-220e-49e7-a9f6-7cfbc46b1914", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa816e3e347d4a4d8894172e45a4b2f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa816e3e347d4a4d8894172e45a4b2f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa816e3e347d4a4d8894172e45a4b2f1.jpg", "file_size": 12959, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#红色净色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa816e3e347d4a4d8894172e45a4b2f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa816e3e347d4a4d8894172e45a4b2f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa816e3e347d4a4d8894172e45a4b2f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa816e3e347d4a4d8894172e45a4b2f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa816e3e347d4a4d8894172e45a4b2f1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXnqldg6mAszRH4w88lXze0bVzM=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.43907+00 2025-12-09 10:14:43.439073+00 4134 FHPKTZ-001-3-批布 SPMX-20240815299264 \N \N \N 1 \N [{"file_id": "ce04905c-46c5-4c41-a04e-642e1bc788b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196844a6becf416a843f37d6ee341c85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196844a6becf416a843f37d6ee341c85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196844a6becf416a843f37d6ee341c85.jpg", "file_size": 39402, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-001-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196844a6becf416a843f37d6ee341c85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196844a6becf416a843f37d6ee341c85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196844a6becf416a843f37d6ee341c85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196844a6becf416a843f37d6ee341c85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196844a6becf416a843f37d6ee341c85.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y09O-M3_lGiRAHSuZtN1C8ApOZM=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.440607+00 2025-12-09 10:14:43.440611+00 4135 10449FWF#绿 SPMX-20240815299265 \N \N \N 1 \N [{"file_id": "ff5ad279-ec1b-438e-91ff-253ea1069331", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aedb754dd064a2d809ad83e22741629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aedb754dd064a2d809ad83e22741629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aedb754dd064a2d809ad83e22741629.jpg", "file_size": 5304, "is_delete": false, "file_type": 1, "original_file_name": "10449FWF#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aedb754dd064a2d809ad83e22741629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aedb754dd064a2d809ad83e22741629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aedb754dd064a2d809ad83e22741629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aedb754dd064a2d809ad83e22741629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aedb754dd064a2d809ad83e22741629.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tYocGXSMo3Fawypd-Zomid1xb_I=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.44172+00 2025-12-09 10:14:43.441724+00 4136 HSH018FW#VS-D3 SPMX-20240815299257 \N \N \N 1 \N [{"file_id": "4c452d23-b9df-4e96-aea2-adeaddb14911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a5f9c52df6471386ebb59101b35233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a5f9c52df6471386ebb59101b35233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a5f9c52df6471386ebb59101b35233.jpg", "file_size": 14848, "is_delete": false, "file_type": 1, "original_file_name": "HSH018FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a5f9c52df6471386ebb59101b35233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a5f9c52df6471386ebb59101b35233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a5f9c52df6471386ebb59101b35233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a5f9c52df6471386ebb59101b35233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a5f9c52df6471386ebb59101b35233.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3d7_WcE_FCQmCqYzvVf04eohKg=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.442833+00 2025-12-09 10:14:43.442837+00 4137 23-2101#A16后片3XL SPMX-20240815299263 \N \N \N 1 \N [{"file_id": "3d1fc3b1-c97b-4c2c-b867-10774c755f68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f704f897980466bb26fa9e5eabdf75e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f704f897980466bb26fa9e5eabdf75e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f704f897980466bb26fa9e5eabdf75e.jpg", "file_size": 7839, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f704f897980466bb26fa9e5eabdf75e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f704f897980466bb26fa9e5eabdf75e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f704f897980466bb26fa9e5eabdf75e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f704f897980466bb26fa9e5eabdf75e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f704f897980466bb26fa9e5eabdf75e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHd7wFgJ72VJMIWavXJw7ysUPus=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.443966+00 2025-12-09 10:14:43.443971+00 4138 0001-51FWF#V5曲线 SPMX-20240815299271 \N \N \N 1 \N [{"file_id": "d5d71cf8-1e5c-4517-a4f1-7ccbfcc2968c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3960db580224446890055d5ab0b5c957.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3960db580224446890055d5ab0b5c957.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3960db580224446890055d5ab0b5c957.jpg", "file_size": 11858, "is_delete": false, "file_type": 1, "original_file_name": "0001-51FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3960db580224446890055d5ab0b5c957.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3960db580224446890055d5ab0b5c957.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3960db580224446890055d5ab0b5c957.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3960db580224446890055d5ab0b5c957.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3960db580224446890055d5ab0b5c957.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMTWAEcYuVvHquhjLt4bEC0mvk8=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.445099+00 2025-12-09 10:14:43.445104+00 4139 JS0974-A10#黑色捆条 SPMX-20240815299269 \N \N \N 1 \N [{"file_id": "70be346b-4bdb-47ae-bd9b-035cc6edcb1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "887c5c77b98f484c964a72ea15394925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "887c5c77b98f484c964a72ea15394925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "887c5c77b98f484c964a72ea15394925.jpg", "file_size": 7848, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A10#黑色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c5c77b98f484c964a72ea15394925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c5c77b98f484c964a72ea15394925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c5c77b98f484c964a72ea15394925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/887c5c77b98f484c964a72ea15394925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/887c5c77b98f484c964a72ea15394925.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEtZUJ6rgGAOzE5CSujwnek-Jbk=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.446206+00 2025-12-09 10:14:43.44621+00 4140 DH202201076T#5-06女装M SPMX-20240815299270 \N \N \N 1 \N [{"file_id": "468c170a-8043-4298-8638-d33bdcf4df96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg", "file_size": 7276, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-06女装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3f5b5a0cbbb4b8dadc17ab7943c8e11.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sq_EpbDGyVp2z1tPIdjoolWl4g4=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.448452+00 2025-12-09 10:14:43.448456+00 4142 FHPKTZ-001-4-批布 SPMX-20240815299275 \N \N \N 1 \N [{"file_id": "5953ac05-d488-4df8-92ee-652377fa0108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea8b4b1660864a5094a7f9df9ab95296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea8b4b1660864a5094a7f9df9ab95296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea8b4b1660864a5094a7f9df9ab95296.jpg", "file_size": 31815, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-001-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8b4b1660864a5094a7f9df9ab95296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8b4b1660864a5094a7f9df9ab95296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8b4b1660864a5094a7f9df9ab95296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea8b4b1660864a5094a7f9df9ab95296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea8b4b1660864a5094a7f9df9ab95296.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uc3lpaJxpbXgDUr-mKdxlBLlldk=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.449789+00 2025-12-09 10:14:43.449793+00 4143 LHJ9170#咖啡前片 SPMX-20240815299273 \N \N \N 1 \N [{"file_id": "a88d66fb-f406-473a-a148-5ab065d2a5ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08e73cd3fb33460cbeacb3f6eaf9d577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08e73cd3fb33460cbeacb3f6eaf9d577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08e73cd3fb33460cbeacb3f6eaf9d577.jpg", "file_size": 13672, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#咖啡前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e73cd3fb33460cbeacb3f6eaf9d577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e73cd3fb33460cbeacb3f6eaf9d577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e73cd3fb33460cbeacb3f6eaf9d577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08e73cd3fb33460cbeacb3f6eaf9d577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08e73cd3fb33460cbeacb3f6eaf9d577.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHXSoeTlvmpkscaX1RB2aD2Uyxk=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.451121+00 2025-12-09 10:14:43.451125+00 4144 HSH018FWE#黄色VS-D3 SPMX-20240815299276 \N \N \N 1 \N [{"file_id": "7263e2ba-45ae-4111-b8f5-9de03fcefe12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120ead81e73347a9b67068d9333cd584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120ead81e73347a9b67068d9333cd584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120ead81e73347a9b67068d9333cd584.jpg", "file_size": 10976, "is_delete": false, "file_type": 1, "original_file_name": "HSH018FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120ead81e73347a9b67068d9333cd584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120ead81e73347a9b67068d9333cd584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120ead81e73347a9b67068d9333cd584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120ead81e73347a9b67068d9333cd584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120ead81e73347a9b67068d9333cd584.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuEsqvqbCQvCL3LryHi4kDHEnfk=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.452441+00 2025-12-09 10:14:43.452445+00 4145 C23030#袖子M SPMX-20240815299268 \N \N \N 1 \N [{"file_id": "efe01be2-e694-4347-a378-16c1a682e47c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90698d0d78c44f4daa6387e7c762009c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90698d0d78c44f4daa6387e7c762009c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90698d0d78c44f4daa6387e7c762009c.jpg", "file_size": 17296, "is_delete": false, "file_type": 1, "original_file_name": "C23030#袖子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90698d0d78c44f4daa6387e7c762009c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90698d0d78c44f4daa6387e7c762009c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90698d0d78c44f4daa6387e7c762009c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90698d0d78c44f4daa6387e7c762009c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90698d0d78c44f4daa6387e7c762009c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4dzgY-hv6iUn3BGAG9xiuIbFccg=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.453744+00 2025-12-09 10:14:43.453748+00 4146 HSH018FWE#彩兰VS-D3 SPMX-20240815299266 \N \N \N 1 \N [{"file_id": "617be2e9-a065-42e1-87d8-21628c484014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df85ebde336a4e6090825d75635cc405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df85ebde336a4e6090825d75635cc405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df85ebde336a4e6090825d75635cc405.jpg", "file_size": 10620, "is_delete": false, "file_type": 1, "original_file_name": "HSH018FWE#彩兰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df85ebde336a4e6090825d75635cc405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df85ebde336a4e6090825d75635cc405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df85ebde336a4e6090825d75635cc405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df85ebde336a4e6090825d75635cc405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df85ebde336a4e6090825d75635cc405.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgCMncOPTlCyR4mhYsT_bFUng3w=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.455079+00 2025-12-09 10:14:43.455083+00 4147 23-2101#A16后片4XL SPMX-20240815299274 \N \N \N 1 \N [{"file_id": "747fca2b-edba-4592-803b-2402b4273c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e89afa4af6114e8884f9584b3fd8f3ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e89afa4af6114e8884f9584b3fd8f3ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e89afa4af6114e8884f9584b3fd8f3ad.jpg", "file_size": 8021, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89afa4af6114e8884f9584b3fd8f3ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89afa4af6114e8884f9584b3fd8f3ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89afa4af6114e8884f9584b3fd8f3ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e89afa4af6114e8884f9584b3fd8f3ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e89afa4af6114e8884f9584b3fd8f3ad.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeXQVUEwxw-8HOGrMD-sH58yJys=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.456379+00 2025-12-09 10:14:43.456383+00 4148 8005#短袖上衣 SPMX-20240815299267 \N \N \N 1 \N [{"file_id": "0729d573-6765-4011-a58b-6d32e39d2d03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a203dfc1bcc24d19977220b7fa210da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a203dfc1bcc24d19977220b7fa210da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a203dfc1bcc24d19977220b7fa210da1.jpg", "file_size": 23582, "is_delete": false, "file_type": 1, "original_file_name": "8005#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a203dfc1bcc24d19977220b7fa210da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a203dfc1bcc24d19977220b7fa210da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a203dfc1bcc24d19977220b7fa210da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a203dfc1bcc24d19977220b7fa210da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a203dfc1bcc24d19977220b7fa210da1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CIB4OkNhQKBq-mxir-YaNAdgqk=", "createTime": "2024-08-15 14:40:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.457833+00 2025-12-09 10:14:43.457837+00 4149 LZ1196#3号色 SPMX-20240815299272 \N \N \N 1 \N [{"file_id": "3553083f-e550-42cc-bee5-bb713a2728ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c071b26a3dcb488c9d6d922bc562fa43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c071b26a3dcb488c9d6d922bc562fa43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c071b26a3dcb488c9d6d922bc562fa43.jpg", "file_size": 8686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071b26a3dcb488c9d6d922bc562fa43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071b26a3dcb488c9d6d922bc562fa43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c071b26a3dcb488c9d6d922bc562fa43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c071b26a3dcb488c9d6d922bc562fa43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c071b26a3dcb488c9d6d922bc562fa43.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJ2JE2sX0DLx6YxSSIArx1FGnHc=", "createTime": "2024-08-15 14:40:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.459228+00 2025-12-09 10:14:43.459234+00 4150 FHPKTZ-002-1-批布 SPMX-20240815299282 \N \N \N 1 \N [{"file_id": "3bc705d5-1137-4946-9c23-e233279c177a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df874dc587fb4132ac606cbc175c282d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df874dc587fb4132ac606cbc175c282d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df874dc587fb4132ac606cbc175c282d.jpg", "file_size": 40675, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-002-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df874dc587fb4132ac606cbc175c282d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df874dc587fb4132ac606cbc175c282d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df874dc587fb4132ac606cbc175c282d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df874dc587fb4132ac606cbc175c282d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df874dc587fb4132ac606cbc175c282d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAhNKMiMHxKvmzUPP_pEN09WS_E=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.460545+00 2025-12-09 10:14:43.460549+00 4151 10449FWF#黑 SPMX-20240815299285 \N \N \N 1 \N [{"file_id": "1472aa2e-58f2-4c61-a3d2-303e6a746892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "160f2c6797e542a893d4474823d1d3c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "160f2c6797e542a893d4474823d1d3c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "160f2c6797e542a893d4474823d1d3c2.jpg", "file_size": 5234, "is_delete": false, "file_type": 1, "original_file_name": "10449FWF#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160f2c6797e542a893d4474823d1d3c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160f2c6797e542a893d4474823d1d3c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160f2c6797e542a893d4474823d1d3c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/160f2c6797e542a893d4474823d1d3c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/160f2c6797e542a893d4474823d1d3c2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iefrtI7yX0GEXSByFPVukyIcL6I=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.461946+00 2025-12-09 10:14:43.461951+00 4152 8005#短袖匹布后幅 SPMX-20240815299279 \N \N \N 1 \N [{"file_id": "a777601d-c51b-4e7a-9d52-d2540f395bf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef839d807d834748b8581411da39d878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef839d807d834748b8581411da39d878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef839d807d834748b8581411da39d878.jpg", "file_size": 20263, "is_delete": false, "file_type": 1, "original_file_name": "8005#短袖匹布后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef839d807d834748b8581411da39d878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef839d807d834748b8581411da39d878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef839d807d834748b8581411da39d878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef839d807d834748b8581411da39d878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef839d807d834748b8581411da39d878.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TR1zTCWrmDRLsIo3Wbl09seiveo=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.46336+00 2025-12-09 10:14:43.463365+00 4153 0001-52FWF#V5曲线 SPMX-20240815299283 \N \N \N 1 \N [{"file_id": "e8c96b25-fc29-4ca1-8e16-5eb09289c9cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c4552ea39ad41c48b514ed161e783ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c4552ea39ad41c48b514ed161e783ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c4552ea39ad41c48b514ed161e783ea.jpg", "file_size": 15414, "is_delete": false, "file_type": 1, "original_file_name": "0001-52FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4552ea39ad41c48b514ed161e783ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4552ea39ad41c48b514ed161e783ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4552ea39ad41c48b514ed161e783ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c4552ea39ad41c48b514ed161e783ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c4552ea39ad41c48b514ed161e783ea.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hx3lu6sfwAGOfwj2W8ajWxlF3So=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.464527+00 2025-12-09 10:14:43.464531+00 4154 23-2101#A16袖子3XL SPMX-20240815299284 \N \N \N 1 \N [{"file_id": "37fab2b6-beb7-42e0-a2c6-71d3657b8c1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "836514850f4a40f9918df120c156915c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "836514850f4a40f9918df120c156915c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "836514850f4a40f9918df120c156915c.jpg", "file_size": 7651, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836514850f4a40f9918df120c156915c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836514850f4a40f9918df120c156915c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836514850f4a40f9918df120c156915c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/836514850f4a40f9918df120c156915c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/836514850f4a40f9918df120c156915c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzOI2LD45TqrnRS66MMboZuZZtc=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.465712+00 2025-12-09 10:14:43.465717+00 4155 LHJ9170#咖啡后片+裤 SPMX-20240815299288 \N \N \N 1 \N [{"file_id": "179cedee-13f9-47e1-b9fd-fe92e15d7110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e773d09ed445188b11ff81bf6e04fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e773d09ed445188b11ff81bf6e04fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e773d09ed445188b11ff81bf6e04fc.jpg", "file_size": 13232, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#咖啡后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e773d09ed445188b11ff81bf6e04fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e773d09ed445188b11ff81bf6e04fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e773d09ed445188b11ff81bf6e04fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e773d09ed445188b11ff81bf6e04fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e773d09ed445188b11ff81bf6e04fc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LsmhGk3-mlI9dJCzo2JG7i5igo=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.466868+00 2025-12-09 10:14:43.466872+00 4156 C23030#袖子S SPMX-20240815299278 \N \N \N 1 \N [{"file_id": "bb7d6ac2-9054-40c6-aa12-22d77055effd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1d3a47414b847c2bcbcdaa08b456100.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1d3a47414b847c2bcbcdaa08b456100.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1d3a47414b847c2bcbcdaa08b456100.jpg", "file_size": 17842, "is_delete": false, "file_type": 1, "original_file_name": "C23030#袖子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d3a47414b847c2bcbcdaa08b456100.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d3a47414b847c2bcbcdaa08b456100.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d3a47414b847c2bcbcdaa08b456100.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1d3a47414b847c2bcbcdaa08b456100.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1d3a47414b847c2bcbcdaa08b456100.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olS4BPCY2-Uo1Wy-l6Ew3UypVJ4=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.468005+00 2025-12-09 10:14:43.468009+00 4157 JS0974-A11#RC23 SPMX-20240815299280 \N \N \N 1 \N [{"file_id": "8f048fb7-99cc-436f-b088-c86f3766f51f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ece5e1c4c29943b6b13d9b7fabd7c908.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ece5e1c4c29943b6b13d9b7fabd7c908.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ece5e1c4c29943b6b13d9b7fabd7c908.jpg", "file_size": 49951, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A11#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece5e1c4c29943b6b13d9b7fabd7c908.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece5e1c4c29943b6b13d9b7fabd7c908.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece5e1c4c29943b6b13d9b7fabd7c908.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ece5e1c4c29943b6b13d9b7fabd7c908.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ece5e1c4c29943b6b13d9b7fabd7c908.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uChxpM2mk79JPa1I-MGBl47rrA4=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.469108+00 2025-12-09 10:14:43.469112+00 4158 DH202201076T#5-06女装S SPMX-20240815299287 \N \N \N 1 \N [{"file_id": "bfb2798f-d839-4dd0-b23f-6573b5247ac4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b73a66586d384297a5964b8ca2ce273c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b73a66586d384297a5964b8ca2ce273c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b73a66586d384297a5964b8ca2ce273c.jpg", "file_size": 6856, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-06女装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b73a66586d384297a5964b8ca2ce273c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b73a66586d384297a5964b8ca2ce273c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b73a66586d384297a5964b8ca2ce273c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b73a66586d384297a5964b8ca2ce273c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b73a66586d384297a5964b8ca2ce273c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZqb9K_A4Nre7Pt9KWWIOz-jz-c=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.470261+00 2025-12-09 10:14:43.470265+00 4159 HSH019# SPMX-20240815299286 \N \N \N 1 \N [{"file_id": "476a587d-04f9-4e0e-b236-23217cbcd3dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "974f36589ccc4844848441c9d4d6c254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "974f36589ccc4844848441c9d4d6c254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "974f36589ccc4844848441c9d4d6c254.jpg", "file_size": 87231, "is_delete": false, "file_type": 1, "original_file_name": "HSH019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974f36589ccc4844848441c9d4d6c254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974f36589ccc4844848441c9d4d6c254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974f36589ccc4844848441c9d4d6c254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/974f36589ccc4844848441c9d4d6c254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/974f36589ccc4844848441c9d4d6c254.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJtzEUKfbz__R-D-Up2imbAFWGQ=", "createTime": "2024-08-15 14:40:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.471387+00 2025-12-09 10:14:43.471391+00 4160 LZ1196#4号色 SPMX-20240815299289 \N \N \N 1 \N [{"file_id": "95498f0e-1431-4acf-adbe-c61b23041ac3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "160fee04c17a47ddbe1043ea5b245803.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "160fee04c17a47ddbe1043ea5b245803.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "160fee04c17a47ddbe1043ea5b245803.jpg", "file_size": 8811, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160fee04c17a47ddbe1043ea5b245803.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160fee04c17a47ddbe1043ea5b245803.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/160fee04c17a47ddbe1043ea5b245803.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/160fee04c17a47ddbe1043ea5b245803.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/160fee04c17a47ddbe1043ea5b245803.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bnYekQZEj7qkoKr8v7UHjRdlvM=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.472498+00 2025-12-09 10:14:43.472502+00 4161 8005#短袖匹布袖子 SPMX-20240815299290 \N \N \N 1 \N [{"file_id": "c50136dc-f4b8-4d29-9c75-d0f23e803dd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a45e195e99814291986545260ebf1d75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a45e195e99814291986545260ebf1d75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a45e195e99814291986545260ebf1d75.jpg", "file_size": 9546, "is_delete": false, "file_type": 1, "original_file_name": "8005#短袖匹布袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e195e99814291986545260ebf1d75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e195e99814291986545260ebf1d75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e195e99814291986545260ebf1d75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a45e195e99814291986545260ebf1d75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a45e195e99814291986545260ebf1d75.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nL7vukJrCyp_rGYlmCZoaKC3TA=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.473612+00 2025-12-09 10:14:43.473616+00 4162 C23030#袖子XL SPMX-20240815299291 \N \N \N 1 \N [{"file_id": "c5ad9617-23be-492b-8fa4-231ff40f90de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28cfc0afb6c24bb78a1b329f1eeef33d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28cfc0afb6c24bb78a1b329f1eeef33d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28cfc0afb6c24bb78a1b329f1eeef33d.jpg", "file_size": 16214, "is_delete": false, "file_type": 1, "original_file_name": "C23030#袖子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28cfc0afb6c24bb78a1b329f1eeef33d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28cfc0afb6c24bb78a1b329f1eeef33d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28cfc0afb6c24bb78a1b329f1eeef33d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28cfc0afb6c24bb78a1b329f1eeef33d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28cfc0afb6c24bb78a1b329f1eeef33d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWSy983ZQS35nt3iXv02yLydy-w=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.47475+00 2025-12-09 10:14:43.474754+00 4163 DH202201076T#5-07女装M SPMX-20240815299295 \N \N \N 1 \N [{"file_id": "72df7444-d847-492d-a714-040203a129ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "677f7e378b45480a920ebb382fca3b97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "677f7e378b45480a920ebb382fca3b97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "677f7e378b45480a920ebb382fca3b97.jpg", "file_size": 7022, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-07女装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677f7e378b45480a920ebb382fca3b97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677f7e378b45480a920ebb382fca3b97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677f7e378b45480a920ebb382fca3b97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/677f7e378b45480a920ebb382fca3b97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/677f7e378b45480a920ebb382fca3b97.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2snefby69PN7G5U2Anb0p2izHG8=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.475881+00 2025-12-09 10:14:43.475884+00 4164 FHPKTZ-002-2-批布 SPMX-20240815299296 \N \N \N 1 \N [{"file_id": "b8caa29d-2f26-414f-9a07-796749a4105e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e9e1419d194875aa9dedff53604d84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e9e1419d194875aa9dedff53604d84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e9e1419d194875aa9dedff53604d84.jpg", "file_size": 49495, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-002-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e9e1419d194875aa9dedff53604d84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e9e1419d194875aa9dedff53604d84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e9e1419d194875aa9dedff53604d84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e9e1419d194875aa9dedff53604d84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e9e1419d194875aa9dedff53604d84.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yX-Yx4rQrUTocz3sSrGxVP-GOo=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.477042+00 2025-12-09 10:14:43.477047+00 4165 JS0974-A11#上节 SPMX-20240815299292 \N \N \N 1 \N [{"file_id": "fe4b9922-96eb-4806-a176-1f6f5f9c8f99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7321de8381b740f79d55ea5482022988.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7321de8381b740f79d55ea5482022988.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7321de8381b740f79d55ea5482022988.jpg", "file_size": 7867, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A11#上节.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321de8381b740f79d55ea5482022988.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321de8381b740f79d55ea5482022988.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321de8381b740f79d55ea5482022988.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7321de8381b740f79d55ea5482022988.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7321de8381b740f79d55ea5482022988.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pot_41a-h7WhOYq-vfkJFrWalWU=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.478264+00 2025-12-09 10:14:43.478268+00 4166 HSH019FW#浅紫VS-D3 SPMX-20240815299294 \N \N \N 1 \N [{"file_id": "06474de1-aa9d-4017-81b6-d986072c4d0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba29eaf1d6f846a3bfedbe6eb57b7315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba29eaf1d6f846a3bfedbe6eb57b7315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba29eaf1d6f846a3bfedbe6eb57b7315.jpg", "file_size": 14443, "is_delete": false, "file_type": 1, "original_file_name": "HSH019FW#浅紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba29eaf1d6f846a3bfedbe6eb57b7315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba29eaf1d6f846a3bfedbe6eb57b7315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba29eaf1d6f846a3bfedbe6eb57b7315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba29eaf1d6f846a3bfedbe6eb57b7315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba29eaf1d6f846a3bfedbe6eb57b7315.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXPXp6PijjhxJ4i0iM6EyGtPKzc=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.479416+00 2025-12-09 10:14:43.47942+00 4167 23-2101#A16袖子4XL SPMX-20240815299293 \N \N \N 1 \N [{"file_id": "e9797432-6d3a-41e5-8600-b051f4001008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a0d1c0f986d406f93101dd7602fe7e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a0d1c0f986d406f93101dd7602fe7e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a0d1c0f986d406f93101dd7602fe7e5.jpg", "file_size": 7375, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A16袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0d1c0f986d406f93101dd7602fe7e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0d1c0f986d406f93101dd7602fe7e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0d1c0f986d406f93101dd7602fe7e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a0d1c0f986d406f93101dd7602fe7e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a0d1c0f986d406f93101dd7602fe7e5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73L8wD7ceLI9y5mcgQam5tT-MJg=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.48054+00 2025-12-09 10:14:43.480544+00 4168 LHJ9170#黑白前片 SPMX-20240815299298 \N \N \N 1 \N [{"file_id": "028f5a1a-cc61-4417-aaa7-7ba31a4704a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "779fabd2223047998e2ad3f8c58ffd49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "779fabd2223047998e2ad3f8c58ffd49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "779fabd2223047998e2ad3f8c58ffd49.jpg", "file_size": 14570, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#黑白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779fabd2223047998e2ad3f8c58ffd49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779fabd2223047998e2ad3f8c58ffd49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779fabd2223047998e2ad3f8c58ffd49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/779fabd2223047998e2ad3f8c58ffd49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/779fabd2223047998e2ad3f8c58ffd49.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMQ9Gq1nNBvWNg3GEoM6mtobDH8=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.481661+00 2025-12-09 10:14:43.481665+00 4169 1044FWF#-1 SPMX-20240815299297 \N \N \N 1 \N [{"file_id": "43605649-adac-4f96-8278-163ff7816630", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ead5a3f5a60a4de89e99962de23f6a47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ead5a3f5a60a4de89e99962de23f6a47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ead5a3f5a60a4de89e99962de23f6a47.jpg", "file_size": 20249, "is_delete": false, "file_type": 1, "original_file_name": "1044FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead5a3f5a60a4de89e99962de23f6a47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead5a3f5a60a4de89e99962de23f6a47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead5a3f5a60a4de89e99962de23f6a47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ead5a3f5a60a4de89e99962de23f6a47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ead5a3f5a60a4de89e99962de23f6a47.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQ2kib2CkwU0nSKZiUxchWVry0g=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.48281+00 2025-12-09 10:14:43.482814+00 4170 0001-52FWF#V5曲线番禺调色 SPMX-20240815299299 \N \N \N 1 \N [{"file_id": "3ce4ceef-fbf5-4a5b-9e98-9c59a5709b12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc232a16c599478780726e6fa5863440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc232a16c599478780726e6fa5863440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc232a16c599478780726e6fa5863440.jpg", "file_size": 16446, "is_delete": false, "file_type": 1, "original_file_name": "0001-52FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc232a16c599478780726e6fa5863440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc232a16c599478780726e6fa5863440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc232a16c599478780726e6fa5863440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc232a16c599478780726e6fa5863440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc232a16c599478780726e6fa5863440.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bdySRVYivjfdeIjzIQvRrYBetY=", "createTime": "2024-08-15 14:40:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.483991+00 2025-12-09 10:14:43.483995+00 4171 0001-53FWF#V5曲线 SPMX-20240815299310 \N \N \N 1 \N [{"file_id": "3bbafa3e-c77a-4a6a-b218-04d54071a218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c98e001fd59e4a159647fd40093a73f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c98e001fd59e4a159647fd40093a73f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c98e001fd59e4a159647fd40093a73f5.jpg", "file_size": 12342, "is_delete": false, "file_type": 1, "original_file_name": "0001-53FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e001fd59e4a159647fd40093a73f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e001fd59e4a159647fd40093a73f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e001fd59e4a159647fd40093a73f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c98e001fd59e4a159647fd40093a73f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c98e001fd59e4a159647fd40093a73f5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gcm_ITWfivFjQjWeXIWciOESFIo=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.48516+00 2025-12-09 10:14:43.485165+00 4172 LZ1196FWE#1号色 SPMX-20240815299312 \N \N \N 1 \N [{"file_id": "21b3c155-8133-494b-b03f-66312d4ea2b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c01dec68a249446dab858f8081b64aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c01dec68a249446dab858f8081b64aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c01dec68a249446dab858f8081b64aa4.jpg", "file_size": 8966, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196FWE#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dec68a249446dab858f8081b64aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dec68a249446dab858f8081b64aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dec68a249446dab858f8081b64aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c01dec68a249446dab858f8081b64aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c01dec68a249446dab858f8081b64aa4.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYUZvaFYK5CvXD-w6uz48ZU5Pfo=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.486434+00 2025-12-09 10:14:43.486439+00 4173 DH202201076T#5-07女装S SPMX-20240815299303 \N \N \N 1 \N [{"file_id": "2799f1a7-5ca8-4d33-8905-dc40f6a22c90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7365de5db534a4187d45ffc45dd9de7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7365de5db534a4187d45ffc45dd9de7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7365de5db534a4187d45ffc45dd9de7.jpg", "file_size": 6539, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-07女装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7365de5db534a4187d45ffc45dd9de7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7365de5db534a4187d45ffc45dd9de7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7365de5db534a4187d45ffc45dd9de7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7365de5db534a4187d45ffc45dd9de7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7365de5db534a4187d45ffc45dd9de7.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:62nCJJCmRUwsT5iL6774N3gmLw4=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.487542+00 2025-12-09 10:14:43.487546+00 4174 1044FWF#-2 SPMX-20240815299309 \N \N \N 1 \N [{"file_id": "8966e8ce-bef3-4356-93dc-b3c926fe6ca1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65943a0d790e452ea7541fbcbdde2afc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65943a0d790e452ea7541fbcbdde2afc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65943a0d790e452ea7541fbcbdde2afc.jpg", "file_size": 15233, "is_delete": false, "file_type": 1, "original_file_name": "1044FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65943a0d790e452ea7541fbcbdde2afc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65943a0d790e452ea7541fbcbdde2afc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65943a0d790e452ea7541fbcbdde2afc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65943a0d790e452ea7541fbcbdde2afc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65943a0d790e452ea7541fbcbdde2afc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxaKfkKwBgJH79MGRGvQV-xY9g8=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.489824+00 2025-12-09 10:14:43.489829+00 4176 C23037#M SPMX-20240815299313 \N \N \N 1 \N [{"file_id": "5b29f427-216e-401c-bc1f-d8a80edfb003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dde651375bb4b728863f7e1da9cef4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dde651375bb4b728863f7e1da9cef4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dde651375bb4b728863f7e1da9cef4e.jpg", "file_size": 18841, "is_delete": false, "file_type": 1, "original_file_name": "C23037#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde651375bb4b728863f7e1da9cef4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde651375bb4b728863f7e1da9cef4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde651375bb4b728863f7e1da9cef4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dde651375bb4b728863f7e1da9cef4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dde651375bb4b728863f7e1da9cef4e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:694bbKas7g643A_KFteKrJAjlR8=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.490964+00 2025-12-09 10:14:43.490969+00 4177 HSH019FW#粉VS-D3 SPMX-20240815299306 \N \N \N 1 \N [{"file_id": "b99a875f-c953-4ecf-a5f9-78ffd90702eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80e4c388a1094b15afeede1ae2cff9c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80e4c388a1094b15afeede1ae2cff9c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80e4c388a1094b15afeede1ae2cff9c2.jpg", "file_size": 13631, "is_delete": false, "file_type": 1, "original_file_name": "HSH019FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e4c388a1094b15afeede1ae2cff9c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e4c388a1094b15afeede1ae2cff9c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e4c388a1094b15afeede1ae2cff9c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80e4c388a1094b15afeede1ae2cff9c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80e4c388a1094b15afeede1ae2cff9c2.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfoUs_7u4BGRWOllWvNr6NWTOrA=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.488695+00 2025-12-09 10:14:43.4887+00 4175 C23037#L SPMX-20240815299304 \N \N \N 1 \N [{"file_id": "498b3256-0316-48ad-a040-1d83a0e416c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6559a30f72c4037acce70de940ad723.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6559a30f72c4037acce70de940ad723.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6559a30f72c4037acce70de940ad723.jpg", "file_size": 18771, "is_delete": false, "file_type": 1, "original_file_name": "C23037#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6559a30f72c4037acce70de940ad723.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6559a30f72c4037acce70de940ad723.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6559a30f72c4037acce70de940ad723.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6559a30f72c4037acce70de940ad723.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6559a30f72c4037acce70de940ad723.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VW0tICFDHt9s6eRSFt5nXob4fc=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.502489+00 2025-12-09 10:14:43.502493+00 4186 8005#青色 SPMX-20240815299322 \N \N \N 1 \N [{"file_id": "d8df95de-8555-4946-9a07-6f30382f9b1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895416317b9b449c88f4ca159db51827.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895416317b9b449c88f4ca159db51827.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895416317b9b449c88f4ca159db51827.jpg", "file_size": 22842, "is_delete": false, "file_type": 1, "original_file_name": "8005#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895416317b9b449c88f4ca159db51827.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895416317b9b449c88f4ca159db51827.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895416317b9b449c88f4ca159db51827.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895416317b9b449c88f4ca159db51827.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895416317b9b449c88f4ca159db51827.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18bTyNBPvuBIxFjn4N5bc6z7588=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.492085+00 2025-12-09 10:14:43.492089+00 4178 FHPKTZ-002-3-批布 SPMX-20240815299305 \N \N \N 1 \N [{"file_id": "47d9c3ee-a03d-4aef-b0c4-69e5c2620742", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab792b24fa545e696cceb107a83331f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab792b24fa545e696cceb107a83331f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab792b24fa545e696cceb107a83331f.jpg", "file_size": 51223, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-002-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab792b24fa545e696cceb107a83331f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab792b24fa545e696cceb107a83331f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab792b24fa545e696cceb107a83331f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab792b24fa545e696cceb107a83331f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab792b24fa545e696cceb107a83331f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uh0nln7w0GKt1VORq33gqv1t2rk=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.494558+00 2025-12-09 10:14:43.494563+00 4179 JS0974-A11#下节 SPMX-20240815299307 \N \N \N 1 \N [{"file_id": "9bf7b420-3db3-41e5-bd19-6ff2aa0f75e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0caa1d38bad04f09b01f28fb3adefa61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0caa1d38bad04f09b01f28fb3adefa61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0caa1d38bad04f09b01f28fb3adefa61.jpg", "file_size": 8854, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A11#下节.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caa1d38bad04f09b01f28fb3adefa61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caa1d38bad04f09b01f28fb3adefa61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caa1d38bad04f09b01f28fb3adefa61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0caa1d38bad04f09b01f28fb3adefa61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0caa1d38bad04f09b01f28fb3adefa61.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eaFqXMlBRO-RhibTlZXyAIpzLq4=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.495684+00 2025-12-09 10:14:43.495688+00 4180 8005#短袖裤子 SPMX-20240815299301 \N \N \N 1 \N [{"file_id": "3a9bd879-0451-47ce-bfc9-84d9c556fff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1797f86bdefc4ff09ccc857aef48b56c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1797f86bdefc4ff09ccc857aef48b56c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1797f86bdefc4ff09ccc857aef48b56c.jpg", "file_size": 23711, "is_delete": false, "file_type": 1, "original_file_name": "8005#短袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1797f86bdefc4ff09ccc857aef48b56c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1797f86bdefc4ff09ccc857aef48b56c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1797f86bdefc4ff09ccc857aef48b56c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1797f86bdefc4ff09ccc857aef48b56c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1797f86bdefc4ff09ccc857aef48b56c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7UWH-AvZbU4Feh0Js2LEABg8Hw=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.496824+00 2025-12-09 10:14:43.496828+00 4181 LZ1196#5号色 SPMX-20240815299300 \N \N \N 1 \N [{"file_id": "4550be9b-5c01-46ec-bf5f-8af4d8b11c24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64004331d8d143c3be07cc1a5839dc95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64004331d8d143c3be07cc1a5839dc95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64004331d8d143c3be07cc1a5839dc95.jpg", "file_size": 8034, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64004331d8d143c3be07cc1a5839dc95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64004331d8d143c3be07cc1a5839dc95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64004331d8d143c3be07cc1a5839dc95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64004331d8d143c3be07cc1a5839dc95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64004331d8d143c3be07cc1a5839dc95.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhkFC4dccaY7TrFliS0r1pkKLLs=", "createTime": "2024-08-15 14:40:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.497973+00 2025-12-09 10:14:43.497978+00 4182 LHJ9170#黑白后片+裤 SPMX-20240815299308 \N \N \N 1 \N [{"file_id": "6aa7fff9-18d8-40b1-8822-aeaf3ed4a5a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f78a957a29343658d1b4d25f4a78e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f78a957a29343658d1b4d25f4a78e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f78a957a29343658d1b4d25f4a78e2a.jpg", "file_size": 13853, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9170#黑白后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f78a957a29343658d1b4d25f4a78e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f78a957a29343658d1b4d25f4a78e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f78a957a29343658d1b4d25f4a78e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f78a957a29343658d1b4d25f4a78e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f78a957a29343658d1b4d25f4a78e2a.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ru3tMW0WktMQw03PlEVWg7q-RXE=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.499132+00 2025-12-09 10:14:43.499137+00 4183 8005#粉色 SPMX-20240815299311 \N \N \N 1 \N [{"file_id": "53ad36fa-2d4a-427e-bdd9-621f29a9cc44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aaaa68869d34868916b020c65943a65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aaaa68869d34868916b020c65943a65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aaaa68869d34868916b020c65943a65.jpg", "file_size": 22656, "is_delete": false, "file_type": 1, "original_file_name": "8005#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aaaa68869d34868916b020c65943a65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aaaa68869d34868916b020c65943a65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aaaa68869d34868916b020c65943a65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aaaa68869d34868916b020c65943a65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aaaa68869d34868916b020c65943a65.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KZvmna-MaRgfFUyiIb8BEqSC9E=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.500254+00 2025-12-09 10:14:43.500258+00 4184 FHPKTZ-002-4-批布 SPMX-20240815299314 \N \N \N 1 \N [{"file_id": "1761a7ec-5094-4d20-8ae3-df8ca1e754da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89084cd070514c10b226c36977f4413c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89084cd070514c10b226c36977f4413c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89084cd070514c10b226c36977f4413c.jpg", "file_size": 39669, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-002-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89084cd070514c10b226c36977f4413c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89084cd070514c10b226c36977f4413c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89084cd070514c10b226c36977f4413c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89084cd070514c10b226c36977f4413c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89084cd070514c10b226c36977f4413c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBUkvIUy3u7BQHlFFB5eWqQgbu4=", "createTime": "2024-08-15 14:40:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.501379+00 2025-12-09 10:14:43.501384+00 4185 DH202201076T#5-24Y女装S SPMX-20240815299328 \N \N \N 1 \N [{"file_id": "70506825-893a-4b57-ae61-4421c6864fcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc3056078c3b4fff9d208955e5138edc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc3056078c3b4fff9d208955e5138edc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc3056078c3b4fff9d208955e5138edc.jpg", "file_size": 7993, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-24Y女装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3056078c3b4fff9d208955e5138edc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3056078c3b4fff9d208955e5138edc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3056078c3b4fff9d208955e5138edc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc3056078c3b4fff9d208955e5138edc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc3056078c3b4fff9d208955e5138edc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4CvDYbYGoC8GHRj9T0JzPNKPr3E=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.503628+00 2025-12-09 10:14:43.503633+00 4187 JS0974-A12#RC23 SPMX-20240815299315 \N \N \N 1 \N [{"file_id": "2695b5c6-121c-4809-88ae-52d3de5a4d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b4e6c3d8cbd4489b56a343f72887904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b4e6c3d8cbd4489b56a343f72887904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b4e6c3d8cbd4489b56a343f72887904.jpg", "file_size": 62179, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A12#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4e6c3d8cbd4489b56a343f72887904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4e6c3d8cbd4489b56a343f72887904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4e6c3d8cbd4489b56a343f72887904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b4e6c3d8cbd4489b56a343f72887904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b4e6c3d8cbd4489b56a343f72887904.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWww9cfPD2oaiUeIb9gfqO0wkEk=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.504756+00 2025-12-09 10:14:43.50476+00 4188 C23037#S SPMX-20240815299323 \N \N \N 1 \N [{"file_id": "1c842512-0902-429f-a0fe-127aaea9c645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48e8df8cffcd48b7b1c6c4af882e16ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48e8df8cffcd48b7b1c6c4af882e16ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48e8df8cffcd48b7b1c6c4af882e16ed.jpg", "file_size": 19133, "is_delete": false, "file_type": 1, "original_file_name": "C23037#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e8df8cffcd48b7b1c6c4af882e16ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e8df8cffcd48b7b1c6c4af882e16ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e8df8cffcd48b7b1c6c4af882e16ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48e8df8cffcd48b7b1c6c4af882e16ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48e8df8cffcd48b7b1c6c4af882e16ed.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gK36iML3DznkfuIJXdUhfrm9kDw=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.505882+00 2025-12-09 10:14:43.505887+00 4189 23-2101#A17前后片4XL SPMX-20240815299327 \N \N \N 1 \N [{"file_id": "57098ca9-09d8-42da-8827-f474d3e53403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59a23dfebc6a4662a88c52da2f2ab585.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59a23dfebc6a4662a88c52da2f2ab585.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59a23dfebc6a4662a88c52da2f2ab585.jpg", "file_size": 11024, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A17前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a23dfebc6a4662a88c52da2f2ab585.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a23dfebc6a4662a88c52da2f2ab585.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a23dfebc6a4662a88c52da2f2ab585.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59a23dfebc6a4662a88c52da2f2ab585.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59a23dfebc6a4662a88c52da2f2ab585.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5sYHkvvHplQXf5SOBakW1Uw2yc=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.506994+00 2025-12-09 10:14:43.506998+00 4190 23-2101#A17前后片3XL SPMX-20240815299316 \N \N \N 1 \N [{"file_id": "afe79524-3400-4b75-bd68-cafc265a23fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d0eb8542716447f90dcee0182024dcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d0eb8542716447f90dcee0182024dcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d0eb8542716447f90dcee0182024dcc.jpg", "file_size": 10871, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A17前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0eb8542716447f90dcee0182024dcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0eb8542716447f90dcee0182024dcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0eb8542716447f90dcee0182024dcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d0eb8542716447f90dcee0182024dcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d0eb8542716447f90dcee0182024dcc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9x6FRuEdv_MDx41RrD-fhFdImkY=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.509237+00 2025-12-09 10:14:43.509241+00 4192 JS0974-A12#上节军绿 SPMX-20240815299325 \N \N \N 1 \N [{"file_id": "81568d2e-1d7c-4569-9bb0-bd17f7e3d133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eb76018e2ed4f229598f2b7ae814ba8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eb76018e2ed4f229598f2b7ae814ba8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eb76018e2ed4f229598f2b7ae814ba8.jpg", "file_size": 9498, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A12#上节军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb76018e2ed4f229598f2b7ae814ba8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb76018e2ed4f229598f2b7ae814ba8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb76018e2ed4f229598f2b7ae814ba8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eb76018e2ed4f229598f2b7ae814ba8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eb76018e2ed4f229598f2b7ae814ba8.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0KEFVwsC_Y7E9qI_Uj-PpLMBMY=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.510343+00 2025-12-09 10:14:43.510347+00 4193 FHPKTZ-003-1-批布 SPMX-20240815299326 \N \N \N 1 \N [{"file_id": "4f8e3da4-531b-4d99-adba-2892c6ea2241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff7ae98aeac0462390cf583a03e2178d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff7ae98aeac0462390cf583a03e2178d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff7ae98aeac0462390cf583a03e2178d.jpg", "file_size": 52874, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-003-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7ae98aeac0462390cf583a03e2178d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7ae98aeac0462390cf583a03e2178d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7ae98aeac0462390cf583a03e2178d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff7ae98aeac0462390cf583a03e2178d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff7ae98aeac0462390cf583a03e2178d.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woZ9VkUncNNDMrKA8SpMWDaqG6c=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.508106+00 2025-12-09 10:14:43.508111+00 4191 0001-54FWF#V5曲线 SPMX-20240815299321 \N \N \N 1 \N [{"file_id": "5b85817e-c1d3-4a64-a6f2-2aabae37d1ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64b7cfae1de049ef8b47ae98f9c1993c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64b7cfae1de049ef8b47ae98f9c1993c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64b7cfae1de049ef8b47ae98f9c1993c.jpg", "file_size": 9988, "is_delete": false, "file_type": 1, "original_file_name": "0001-54FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b7cfae1de049ef8b47ae98f9c1993c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b7cfae1de049ef8b47ae98f9c1993c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b7cfae1de049ef8b47ae98f9c1993c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64b7cfae1de049ef8b47ae98f9c1993c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64b7cfae1de049ef8b47ae98f9c1993c.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x38mVLRlVl4Vc_djY78z5Au5pHI=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.460498+00 2025-12-09 10:15:37.460504+00 16787 85034#10码+12码 SPMX-20240815312002 \N \N \N 1 \N [{"file_id": "8cd9b700-0f46-478d-8dac-b16a052cf97f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb102358514947218e8d9782c17744a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb102358514947218e8d9782c17744a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb102358514947218e8d9782c17744a7.jpg", "file_size": 19450, "is_delete": false, "file_type": 1, "original_file_name": "85034#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb102358514947218e8d9782c17744a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb102358514947218e8d9782c17744a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb102358514947218e8d9782c17744a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb102358514947218e8d9782c17744a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb102358514947218e8d9782c17744a7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:687pgaDa-6fg0f5jtw533Qg-7DY=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.512761+00 2025-12-09 10:14:43.512765+00 4194 LZ1196FWE#2号色 SPMX-20240815299324 \N \N \N 1 \N [{"file_id": "91e4e578-1604-44af-99f7-b6b87bf01fa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a375aa1003754dcda6a087e8882d01d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a375aa1003754dcda6a087e8882d01d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a375aa1003754dcda6a087e8882d01d6.jpg", "file_size": 9239, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196FWE#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a375aa1003754dcda6a087e8882d01d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a375aa1003754dcda6a087e8882d01d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a375aa1003754dcda6a087e8882d01d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a375aa1003754dcda6a087e8882d01d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a375aa1003754dcda6a087e8882d01d6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Nrmw6Vxb3cRrmE_HIFilzvavi8=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.514287+00 2025-12-09 10:14:43.514292+00 4195 LHJ9171#135#绿色前片 SPMX-20240815299320 \N \N \N 1 \N [{"file_id": "49bb95ee-ac88-40fe-9568-a29133e6a358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3f23ec79eed4251a778e999e9f0347b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3f23ec79eed4251a778e999e9f0347b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3f23ec79eed4251a778e999e9f0347b.jpg", "file_size": 15351, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#135#绿色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f23ec79eed4251a778e999e9f0347b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f23ec79eed4251a778e999e9f0347b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f23ec79eed4251a778e999e9f0347b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3f23ec79eed4251a778e999e9f0347b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3f23ec79eed4251a778e999e9f0347b.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CV_aY6RfWbutmC5q9lxvJQgncJk=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.515457+00 2025-12-09 10:14:43.515461+00 4196 HSH019FWE#军绿VS-D3 SPMX-20240815299318 \N \N \N 1 \N [{"file_id": "bb4f8632-ddc2-40ee-ac1b-196e7b15c78d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1503827b19aa422ca298e35ddde4b9cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1503827b19aa422ca298e35ddde4b9cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1503827b19aa422ca298e35ddde4b9cc.jpg", "file_size": 20065, "is_delete": false, "file_type": 1, "original_file_name": "HSH019FWE#军绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1503827b19aa422ca298e35ddde4b9cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1503827b19aa422ca298e35ddde4b9cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1503827b19aa422ca298e35ddde4b9cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1503827b19aa422ca298e35ddde4b9cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1503827b19aa422ca298e35ddde4b9cc.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hk6uNXyuk4dp0V9eg5sFnL-sJg0=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.516585+00 2025-12-09 10:14:43.516589+00 4197 DH202201076T#5-24Y女装M SPMX-20240815299317 \N \N \N 1 \N [{"file_id": "fa51cb99-8c77-4b0c-a814-1f36430c7475", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed2edb2b689b4b039acc7f3192446e52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed2edb2b689b4b039acc7f3192446e52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed2edb2b689b4b039acc7f3192446e52.jpg", "file_size": 8443, "is_delete": false, "file_type": 1, "original_file_name": "DH202201076T#5-24Y女装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2edb2b689b4b039acc7f3192446e52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2edb2b689b4b039acc7f3192446e52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2edb2b689b4b039acc7f3192446e52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed2edb2b689b4b039acc7f3192446e52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed2edb2b689b4b039acc7f3192446e52.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiGuuyOPWNpTIXc-kd0RmzxYNhI=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.517726+00 2025-12-09 10:14:43.51773+00 4198 FHPKTZ-003-2-批布 SPMX-20240815299337 \N \N \N 1 \N [{"file_id": "b1d8e35b-fc5b-40e3-b7f3-0a9ce2f390ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f33903899614a3a8dc06921e05a2977.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f33903899614a3a8dc06921e05a2977.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f33903899614a3a8dc06921e05a2977.jpg", "file_size": 65355, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-003-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33903899614a3a8dc06921e05a2977.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33903899614a3a8dc06921e05a2977.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33903899614a3a8dc06921e05a2977.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f33903899614a3a8dc06921e05a2977.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f33903899614a3a8dc06921e05a2977.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GyfH95XwFOdalHb9qdQPQAaR0Lg=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.518891+00 2025-12-09 10:14:43.518896+00 4199 0001-57FWF#V5曲线 SPMX-20240815299343 \N \N \N 1 \N [{"file_id": "9e58c455-d1b6-4173-aece-fed6f40ab6be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b04c32f59a4a4694a19c10bb6b06322e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b04c32f59a4a4694a19c10bb6b06322e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b04c32f59a4a4694a19c10bb6b06322e.jpg", "file_size": 22895, "is_delete": false, "file_type": 1, "original_file_name": "0001-57FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04c32f59a4a4694a19c10bb6b06322e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04c32f59a4a4694a19c10bb6b06322e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04c32f59a4a4694a19c10bb6b06322e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b04c32f59a4a4694a19c10bb6b06322e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b04c32f59a4a4694a19c10bb6b06322e.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rO5Erpzrtv7CRKmCj4xAjNkb7Q=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.520114+00 2025-12-09 10:14:43.520118+00 4200 LHJ9171#5#彩兰前片 SPMX-20240815299341 \N \N \N 1 \N [{"file_id": "ea62a69a-e699-436d-a2cc-262ed92ab225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3caf15f0853e4e7ab1c89442cf3117f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3caf15f0853e4e7ab1c89442cf3117f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3caf15f0853e4e7ab1c89442cf3117f5.jpg", "file_size": 17040, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#5#彩兰前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caf15f0853e4e7ab1c89442cf3117f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caf15f0853e4e7ab1c89442cf3117f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caf15f0853e4e7ab1c89442cf3117f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3caf15f0853e4e7ab1c89442cf3117f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3caf15f0853e4e7ab1c89442cf3117f5.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WR-O8CqetBL87mVZSGzv75U77Cs=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.521254+00 2025-12-09 10:14:43.521258+00 4201 LZ1196FWE#3号色 SPMX-20240815299333 \N \N \N 1 \N [{"file_id": "7e2770a7-322a-47cc-a4bd-a686283ee7cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4e2b1099dca4ab492fcc78ecadbd5a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4e2b1099dca4ab492fcc78ecadbd5a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4e2b1099dca4ab492fcc78ecadbd5a6.jpg", "file_size": 8411, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196FWE#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e2b1099dca4ab492fcc78ecadbd5a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e2b1099dca4ab492fcc78ecadbd5a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e2b1099dca4ab492fcc78ecadbd5a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4e2b1099dca4ab492fcc78ecadbd5a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4e2b1099dca4ab492fcc78ecadbd5a6.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xiDTCbF8WZm-dUYeYLqMZJ_4ZH0=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.522395+00 2025-12-09 10:14:43.522399+00 4202 JS0974-A12#上节酒红 SPMX-20240815299335 \N \N \N 1 \N [{"file_id": "476a1f96-b59f-4d78-a94b-3d24e00f036e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02e0d85a38c48e5be56a128060d0835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02e0d85a38c48e5be56a128060d0835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02e0d85a38c48e5be56a128060d0835.jpg", "file_size": 9288, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A12#上节酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e0d85a38c48e5be56a128060d0835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e0d85a38c48e5be56a128060d0835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e0d85a38c48e5be56a128060d0835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02e0d85a38c48e5be56a128060d0835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02e0d85a38c48e5be56a128060d0835.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hugTZSiMkQrFwfa-PrJn1syFSm8=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.523525+00 2025-12-09 10:14:43.523529+00 4203 1044FWF#-5 SPMX-20240815299342 \N \N \N 1 \N [{"file_id": "3134fb93-7a52-44fd-b0c0-850b57687c6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40d8719aedfb4249b935569689081b32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40d8719aedfb4249b935569689081b32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40d8719aedfb4249b935569689081b32.jpg", "file_size": 16494, "is_delete": false, "file_type": 1, "original_file_name": "1044FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d8719aedfb4249b935569689081b32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d8719aedfb4249b935569689081b32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d8719aedfb4249b935569689081b32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40d8719aedfb4249b935569689081b32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40d8719aedfb4249b935569689081b32.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbtznzZqtskzsEZaYlxey-XmMrM=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.524653+00 2025-12-09 10:14:43.524657+00 4204 1044FWF#-4 SPMX-20240815299332 \N \N \N 1 \N [{"file_id": "1b73674c-8723-4ca0-9ee5-5f14a984cdf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d3b037856df4ec789156000294b51c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d3b037856df4ec789156000294b51c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d3b037856df4ec789156000294b51c0.jpg", "file_size": 21836, "is_delete": false, "file_type": 1, "original_file_name": "1044FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3b037856df4ec789156000294b51c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3b037856df4ec789156000294b51c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3b037856df4ec789156000294b51c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d3b037856df4ec789156000294b51c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d3b037856df4ec789156000294b51c0.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4dDI0dXXkEle-Np4dlCjo_4oUlM=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.525785+00 2025-12-09 10:14:43.525789+00 4205 DH202201077T#5-16男装M SPMX-20240815299338 \N \N \N 1 \N [{"file_id": "d5e9c81e-2b0b-4ef3-9ba5-cb2917f13d9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ccb14744e1a4285b39c8ec8a593b6f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ccb14744e1a4285b39c8ec8a593b6f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ccb14744e1a4285b39c8ec8a593b6f4.jpg", "file_size": 11517, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-16男装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccb14744e1a4285b39c8ec8a593b6f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccb14744e1a4285b39c8ec8a593b6f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ccb14744e1a4285b39c8ec8a593b6f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ccb14744e1a4285b39c8ec8a593b6f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ccb14744e1a4285b39c8ec8a593b6f4.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2n1huWmynz_NfHEXgEvgVIGrNI=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.526896+00 2025-12-09 10:14:43.5269+00 4206 23-2101#A17袖子3XL SPMX-20240815299339 \N \N \N 1 \N [{"file_id": "fbb22d6d-643e-4861-bc28-ddd7e88fa526", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ec4e171880147b5ac27a8679380f90f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ec4e171880147b5ac27a8679380f90f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ec4e171880147b5ac27a8679380f90f.jpg", "file_size": 12511, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A17袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec4e171880147b5ac27a8679380f90f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec4e171880147b5ac27a8679380f90f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec4e171880147b5ac27a8679380f90f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ec4e171880147b5ac27a8679380f90f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ec4e171880147b5ac27a8679380f90f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgsQFAcGvfrLrz_YkRUvCjYw8hc=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.528038+00 2025-12-09 10:14:43.528042+00 4207 HSH020FW#VS-D3 SPMX-20240815299340 \N \N \N 1 \N [{"file_id": "bb8b8962-37fc-4c0a-9f54-c0b659cda801", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c1d11f9eb61493983bd9146be7d3d93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c1d11f9eb61493983bd9146be7d3d93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c1d11f9eb61493983bd9146be7d3d93.jpg", "file_size": 12888, "is_delete": false, "file_type": 1, "original_file_name": "HSH020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d11f9eb61493983bd9146be7d3d93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d11f9eb61493983bd9146be7d3d93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d11f9eb61493983bd9146be7d3d93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c1d11f9eb61493983bd9146be7d3d93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c1d11f9eb61493983bd9146be7d3d93.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UxBVvxBxJdFc2tqDhCFGV6hfow=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.529166+00 2025-12-09 10:14:43.52917+00 4208 LHJ9171#135#绿色后片+裤 SPMX-20240815299331 \N \N \N 1 \N [{"file_id": "02b583a7-087d-45f6-83c1-4a2faa48eca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c00bd5057394fceb273c5307b594248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c00bd5057394fceb273c5307b594248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c00bd5057394fceb273c5307b594248.jpg", "file_size": 14100, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#135#绿色后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c00bd5057394fceb273c5307b594248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c00bd5057394fceb273c5307b594248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c00bd5057394fceb273c5307b594248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c00bd5057394fceb273c5307b594248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c00bd5057394fceb273c5307b594248.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkfMJPjMxZrWvqVaawGHRnssob4=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.530346+00 2025-12-09 10:14:43.53035+00 4209 0001-56FWF#V5曲线 SPMX-20240815299330 \N \N \N 1 \N [{"file_id": "19ee4197-cbc9-46a3-a45c-bbbd2ee0d42a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b9ac2fb93cb4daeb57229e4879905a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b9ac2fb93cb4daeb57229e4879905a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b9ac2fb93cb4daeb57229e4879905a1.jpg", "file_size": 24933, "is_delete": false, "file_type": 1, "original_file_name": "0001-56FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9ac2fb93cb4daeb57229e4879905a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9ac2fb93cb4daeb57229e4879905a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9ac2fb93cb4daeb57229e4879905a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b9ac2fb93cb4daeb57229e4879905a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b9ac2fb93cb4daeb57229e4879905a1.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1E0SaAkZ6-7f-dybd_FIL1w7sHE=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.531521+00 2025-12-09 10:14:43.531525+00 4210 C23037#XL SPMX-20240815299334 \N \N \N 1 \N [{"file_id": "16766d56-90ec-47a4-858c-9998a18266da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c1aa8eaadfa413586346c2f0fa447cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c1aa8eaadfa413586346c2f0fa447cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c1aa8eaadfa413586346c2f0fa447cd.jpg", "file_size": 18912, "is_delete": false, "file_type": 1, "original_file_name": "C23037#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1aa8eaadfa413586346c2f0fa447cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1aa8eaadfa413586346c2f0fa447cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1aa8eaadfa413586346c2f0fa447cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c1aa8eaadfa413586346c2f0fa447cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c1aa8eaadfa413586346c2f0fa447cd.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eKFYTDrb5WRPXh38939VDXMqdVQ=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.53267+00 2025-12-09 10:14:43.532674+00 4211 8005#黑色2XL SPMX-20240815299336 \N \N \N 1 \N [{"file_id": "62077a2b-f26a-4a36-b36f-955f2478f566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92e4a20ad59d4bfcb5b6843e827e1faf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92e4a20ad59d4bfcb5b6843e827e1faf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92e4a20ad59d4bfcb5b6843e827e1faf.jpg", "file_size": 75750, "is_delete": false, "file_type": 1, "original_file_name": "8005#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92e4a20ad59d4bfcb5b6843e827e1faf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92e4a20ad59d4bfcb5b6843e827e1faf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92e4a20ad59d4bfcb5b6843e827e1faf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92e4a20ad59d4bfcb5b6843e827e1faf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92e4a20ad59d4bfcb5b6843e827e1faf.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7Xd3u9HddO1dFYbUHNjL33hUvY=", "createTime": "2024-08-15 14:40:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.533798+00 2025-12-09 10:14:43.533802+00 4212 HSH019FWE#紫色VS-D3 SPMX-20240815299329 \N \N \N 1 \N [{"file_id": "f371626d-89f0-4929-87c6-c01ee966197d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eb3aa3c43904a37b76a3cef0341bc7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eb3aa3c43904a37b76a3cef0341bc7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eb3aa3c43904a37b76a3cef0341bc7f.jpg", "file_size": 20043, "is_delete": false, "file_type": 1, "original_file_name": "HSH019FWE#紫色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb3aa3c43904a37b76a3cef0341bc7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb3aa3c43904a37b76a3cef0341bc7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb3aa3c43904a37b76a3cef0341bc7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eb3aa3c43904a37b76a3cef0341bc7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eb3aa3c43904a37b76a3cef0341bc7f.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTHvapE9arTzv1CXhlvidD3vyvw=", "createTime": "2024-08-15 14:40:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:43.53495+00 2025-12-09 10:14:43.534954+00 4213 HSH020FWE#VS-D3 SPMX-20240815299351 \N \N \N 1 \N [{"file_id": "ed782fa1-b4ab-43e0-8eed-b76448448133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d08c379646d432492f855dd644716bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d08c379646d432492f855dd644716bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d08c379646d432492f855dd644716bb.jpg", "file_size": 13263, "is_delete": false, "file_type": 1, "original_file_name": "HSH020FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d08c379646d432492f855dd644716bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d08c379646d432492f855dd644716bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d08c379646d432492f855dd644716bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d08c379646d432492f855dd644716bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d08c379646d432492f855dd644716bb.jpg?e=1765361682&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_O09PStgTxfF2WFAKBNKzyUgaA=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.168387+00 2025-12-09 10:14:44.168391+00 4218 LZ1196FWE#4号色 SPMX-20240815299344 \N \N \N 1 \N [{"file_id": "2edfc012-87bb-49e7-8251-f730f030ecc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf1b800aadcf462688fe29b569382535.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf1b800aadcf462688fe29b569382535.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf1b800aadcf462688fe29b569382535.jpg", "file_size": 8041, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196FWE#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1b800aadcf462688fe29b569382535.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1b800aadcf462688fe29b569382535.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1b800aadcf462688fe29b569382535.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf1b800aadcf462688fe29b569382535.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf1b800aadcf462688fe29b569382535.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcdV-NIIYhZWZWmVMA4Pm3shKRI=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.16293+00 2025-12-09 10:14:44.162939+00 4214 1045-1FWF#上身2XL-番禺调色 SPMX-20240815299355 \N \N \N 1 \N [{"file_id": "a99537e3-0ae5-49cc-bd70-736b90bce84d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334c26fad19e4671bcfaa741b04bb2ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334c26fad19e4671bcfaa741b04bb2ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334c26fad19e4671bcfaa741b04bb2ef.jpg", "file_size": 23676, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334c26fad19e4671bcfaa741b04bb2ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334c26fad19e4671bcfaa741b04bb2ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334c26fad19e4671bcfaa741b04bb2ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334c26fad19e4671bcfaa741b04bb2ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334c26fad19e4671bcfaa741b04bb2ef.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q50T0OPgFZrXqX1ZbJY-0WMIuTk=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.164773+00 2025-12-09 10:14:44.164778+00 4215 C23093#WJC22 SPMX-20240815299345 \N \N \N 1 \N [{"file_id": "d1d87a52-973c-4838-800c-3cc54e7bffff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c706ab0306438caf2c3ed367de309f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c706ab0306438caf2c3ed367de309f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c706ab0306438caf2c3ed367de309f.jpg", "file_size": 14230, "is_delete": false, "file_type": 1, "original_file_name": "C23093#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c706ab0306438caf2c3ed367de309f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c706ab0306438caf2c3ed367de309f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c706ab0306438caf2c3ed367de309f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c706ab0306438caf2c3ed367de309f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c706ab0306438caf2c3ed367de309f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-cQ1YLd2ZcojBbHJxx5qmA9Um0=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.16606+00 2025-12-09 10:14:44.166065+00 4216 8005#黑色L SPMX-20240815299346 \N \N \N 1 \N [{"file_id": "62716cae-360a-4f2b-9594-9d83593b66aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abc4b75b7da04602aa7f9f9e4d4284ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abc4b75b7da04602aa7f9f9e4d4284ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abc4b75b7da04602aa7f9f9e4d4284ec.jpg", "file_size": 79007, "is_delete": false, "file_type": 1, "original_file_name": "8005#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc4b75b7da04602aa7f9f9e4d4284ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc4b75b7da04602aa7f9f9e4d4284ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc4b75b7da04602aa7f9f9e4d4284ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abc4b75b7da04602aa7f9f9e4d4284ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abc4b75b7da04602aa7f9f9e4d4284ec.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMsSU_SuOiPlJkGnCIXoQY_VBE8=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.167224+00 2025-12-09 10:14:44.167228+00 4217 LZ1196FWE#5号色 SPMX-20240815299354 \N \N \N 1 \N [{"file_id": "8f0c8039-d0ce-4daa-ac1d-6939886c3237", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f17b1b4f8824f868ea41a267ed1c49e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f17b1b4f8824f868ea41a267ed1c49e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f17b1b4f8824f868ea41a267ed1c49e.jpg", "file_size": 7977, "is_delete": false, "file_type": 1, "original_file_name": "LZ1196FWE#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f17b1b4f8824f868ea41a267ed1c49e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f17b1b4f8824f868ea41a267ed1c49e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f17b1b4f8824f868ea41a267ed1c49e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f17b1b4f8824f868ea41a267ed1c49e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f17b1b4f8824f868ea41a267ed1c49e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iLi4fPHOPx83IVxUX57ujwdsO5k=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.169598+00 2025-12-09 10:14:44.169602+00 4219 FHPKTZ-003-3-批布 SPMX-20240815299347 \N \N \N 1 \N [{"file_id": "8f4f1661-a8ec-4b52-af97-9d02d80b54ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be8066db3ed4e4c8e40b5839602c94e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be8066db3ed4e4c8e40b5839602c94e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be8066db3ed4e4c8e40b5839602c94e.jpg", "file_size": 64928, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-003-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be8066db3ed4e4c8e40b5839602c94e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be8066db3ed4e4c8e40b5839602c94e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be8066db3ed4e4c8e40b5839602c94e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be8066db3ed4e4c8e40b5839602c94e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be8066db3ed4e4c8e40b5839602c94e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aWPYcExGKyQH7aidlk-JgeRo2Hs=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.170746+00 2025-12-09 10:14:44.17075+00 4220 LHJ9171#5#彩兰后片+裤 SPMX-20240815299352 \N \N \N 1 \N [{"file_id": "1cd34b06-b74a-47ae-a3ba-6f2b9784ad7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d761847f570d43b09ddae79abf0c2218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d761847f570d43b09ddae79abf0c2218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d761847f570d43b09ddae79abf0c2218.jpg", "file_size": 15801, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#5#彩兰后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d761847f570d43b09ddae79abf0c2218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d761847f570d43b09ddae79abf0c2218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d761847f570d43b09ddae79abf0c2218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d761847f570d43b09ddae79abf0c2218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d761847f570d43b09ddae79abf0c2218.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2akWtrGuU4ES2DFzQZrpbrXGSd0=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.17189+00 2025-12-09 10:14:44.171895+00 4221 JS0974-A12#下节军绿 SPMX-20240815299348 \N \N \N 1 \N [{"file_id": "6eba31ee-b25f-4181-8591-820b021da743", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b61d29578f494e21a698087aaa5258e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b61d29578f494e21a698087aaa5258e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b61d29578f494e21a698087aaa5258e7.jpg", "file_size": 9777, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A12#下节军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61d29578f494e21a698087aaa5258e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61d29578f494e21a698087aaa5258e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61d29578f494e21a698087aaa5258e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b61d29578f494e21a698087aaa5258e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b61d29578f494e21a698087aaa5258e7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4mpX4BWfoesM-XVLlDCZgOX0-M=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.173003+00 2025-12-09 10:14:44.173007+00 4222 DH202201077T#5-16男装S SPMX-20240815299349 \N \N \N 1 \N [{"file_id": "8add6aea-4d26-4c82-9dee-771d6cf9af60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76b0320330294f3bb833643a92d71172.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76b0320330294f3bb833643a92d71172.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76b0320330294f3bb833643a92d71172.jpg", "file_size": 11120, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-16男装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b0320330294f3bb833643a92d71172.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b0320330294f3bb833643a92d71172.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b0320330294f3bb833643a92d71172.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76b0320330294f3bb833643a92d71172.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76b0320330294f3bb833643a92d71172.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fspJMqoGngpYc6P0S_7zJHoZEgo=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.174189+00 2025-12-09 10:14:44.174193+00 4223 0001-58FWF#V5曲线 SPMX-20240815299353 \N \N \N 1 \N [{"file_id": "603de096-9893-452b-aa85-e91c360b1b87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db81329ef6044f90be7c4e5fd580b314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db81329ef6044f90be7c4e5fd580b314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db81329ef6044f90be7c4e5fd580b314.jpg", "file_size": 21743, "is_delete": false, "file_type": 1, "original_file_name": "0001-58FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db81329ef6044f90be7c4e5fd580b314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db81329ef6044f90be7c4e5fd580b314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db81329ef6044f90be7c4e5fd580b314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db81329ef6044f90be7c4e5fd580b314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db81329ef6044f90be7c4e5fd580b314.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmGgQUOFqDjjCYNDTia8HwreYMM=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.17532+00 2025-12-09 10:14:44.175324+00 4224 23-2101#A17袖子4XL SPMX-20240815299350 \N \N \N 1 \N [{"file_id": "7ad1e6e3-9f19-473e-af30-9ffc020f0b76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f3fef14953b4756838f1615bddf4a96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f3fef14953b4756838f1615bddf4a96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f3fef14953b4756838f1615bddf4a96.jpg", "file_size": 10532, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A17袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f3fef14953b4756838f1615bddf4a96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f3fef14953b4756838f1615bddf4a96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f3fef14953b4756838f1615bddf4a96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f3fef14953b4756838f1615bddf4a96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f3fef14953b4756838f1615bddf4a96.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W23gbkRqb0YJR_6CTm60ubPdgWQ=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.176441+00 2025-12-09 10:14:44.176445+00 4225 8005#黑色XL SPMX-20240815299356 \N \N \N 1 \N [{"file_id": "5e2959e6-e00e-4852-a2aa-52f00de2379e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e3571bf0fd0417ba05d0ff7012205bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e3571bf0fd0417ba05d0ff7012205bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e3571bf0fd0417ba05d0ff7012205bd.jpg", "file_size": 79981, "is_delete": false, "file_type": 1, "original_file_name": "8005#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3571bf0fd0417ba05d0ff7012205bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3571bf0fd0417ba05d0ff7012205bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3571bf0fd0417ba05d0ff7012205bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e3571bf0fd0417ba05d0ff7012205bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e3571bf0fd0417ba05d0ff7012205bd.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBwU0pt0OBzqCoPaH21OwkdGxEk=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.177574+00 2025-12-09 10:14:44.177578+00 4226 JS0974-A12#下节酒红 SPMX-20240815299359 \N \N \N 1 \N [{"file_id": "50f027ef-6816-4592-8ead-0ef64dbc23ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d763cb9579240849096f62277f48daa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d763cb9579240849096f62277f48daa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d763cb9579240849096f62277f48daa.jpg", "file_size": 9679, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A12#下节酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d763cb9579240849096f62277f48daa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d763cb9579240849096f62277f48daa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d763cb9579240849096f62277f48daa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d763cb9579240849096f62277f48daa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d763cb9579240849096f62277f48daa.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ae1XtKE8OjnbddgBCsvztFSoZiM=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.178702+00 2025-12-09 10:14:44.178709+00 4227 C231#原版色 SPMX-20240815299358 \N \N \N 1 \N [{"file_id": "67ba32d8-8c37-455b-926a-c91a913bf799", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e555620590ec427397ae42f841dbb050.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e555620590ec427397ae42f841dbb050.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e555620590ec427397ae42f841dbb050.jpg", "file_size": 18469, "is_delete": false, "file_type": 1, "original_file_name": "C231#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e555620590ec427397ae42f841dbb050.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e555620590ec427397ae42f841dbb050.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e555620590ec427397ae42f841dbb050.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e555620590ec427397ae42f841dbb050.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e555620590ec427397ae42f841dbb050.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3AD9Ap291FRjQ0UqfbwdkfMr_4=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.179824+00 2025-12-09 10:14:44.179828+00 4228 DH202201077T#5-22男装M SPMX-20240815299360 \N \N \N 1 \N [{"file_id": "e3f59306-f236-4a5a-a7a1-341fc7cc8fcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55f5e94c365d4e04873d5611909fc908.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55f5e94c365d4e04873d5611909fc908.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55f5e94c365d4e04873d5611909fc908.jpg", "file_size": 11846, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-22男装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5e94c365d4e04873d5611909fc908.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5e94c365d4e04873d5611909fc908.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5e94c365d4e04873d5611909fc908.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55f5e94c365d4e04873d5611909fc908.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55f5e94c365d4e04873d5611909fc908.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxQya82oGWu02CIdFRf6O7xwiFA=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.181002+00 2025-12-09 10:14:44.181007+00 4229 1045-1FWF#上身彩兰2XL-番禺调色 SPMX-20240815299365 \N \N \N 1 \N [{"file_id": "5b4e8d03-3671-401e-b8fa-1a00c010b588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49964c3522cb48a0bc9c5442555ecafb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49964c3522cb48a0bc9c5442555ecafb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49964c3522cb48a0bc9c5442555ecafb.jpg", "file_size": 22796, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身彩兰2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49964c3522cb48a0bc9c5442555ecafb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49964c3522cb48a0bc9c5442555ecafb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49964c3522cb48a0bc9c5442555ecafb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49964c3522cb48a0bc9c5442555ecafb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49964c3522cb48a0bc9c5442555ecafb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFhscBzenkr8Y32f1lWxSjMKVds=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.182322+00 2025-12-09 10:14:44.182327+00 4230 LZ1197#桔红 SPMX-20240815299364 \N \N \N 1 \N [{"file_id": "aa37654a-d6b4-4245-8357-56ab2500493d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7938a47fafa142c09e4fe668913511d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7938a47fafa142c09e4fe668913511d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7938a47fafa142c09e4fe668913511d4.jpg", "file_size": 7812, "is_delete": false, "file_type": 1, "original_file_name": "LZ1197#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7938a47fafa142c09e4fe668913511d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7938a47fafa142c09e4fe668913511d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7938a47fafa142c09e4fe668913511d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7938a47fafa142c09e4fe668913511d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7938a47fafa142c09e4fe668913511d4.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Be4UBTbm_KczT98Qdy--IcncfMc=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.183503+00 2025-12-09 10:14:44.183507+00 4231 FHPKTZ-004-1-批布 SPMX-20240815299367 \N \N \N 1 \N [{"file_id": "48861437-2b9d-46f9-88e3-5ab20ff2353f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "839be3556ed7444f9a76765570a7be4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "839be3556ed7444f9a76765570a7be4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "839be3556ed7444f9a76765570a7be4c.jpg", "file_size": 46708, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-004-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839be3556ed7444f9a76765570a7be4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839be3556ed7444f9a76765570a7be4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839be3556ed7444f9a76765570a7be4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/839be3556ed7444f9a76765570a7be4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/839be3556ed7444f9a76765570a7be4c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sYaTyuumAE3xbZpY5KDiOxZ0Xo=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.184745+00 2025-12-09 10:14:44.18475+00 4232 DH202201077T#5-22男装S SPMX-20240815299371 \N \N \N 1 \N [{"file_id": "61c38715-847e-410f-aa9f-5b8ab9fe021c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d74338e8b304005b48cc4a933d38fd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d74338e8b304005b48cc4a933d38fd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d74338e8b304005b48cc4a933d38fd7.jpg", "file_size": 11332, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-22男装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d74338e8b304005b48cc4a933d38fd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d74338e8b304005b48cc4a933d38fd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d74338e8b304005b48cc4a933d38fd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d74338e8b304005b48cc4a933d38fd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d74338e8b304005b48cc4a933d38fd7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dL9YEXqvArff1KSH2FohH-4JeRk=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.185891+00 2025-12-09 10:14:44.185895+00 4233 FHPKTZ-003-4-批布 SPMX-20240815299357 \N \N \N 1 \N [{"file_id": "8605b808-7ce5-4474-be45-e5dfb8bfabd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a24140c824495292cc12229e0c4c71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a24140c824495292cc12229e0c4c71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a24140c824495292cc12229e0c4c71.jpg", "file_size": 51169, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-003-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a24140c824495292cc12229e0c4c71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a24140c824495292cc12229e0c4c71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a24140c824495292cc12229e0c4c71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a24140c824495292cc12229e0c4c71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a24140c824495292cc12229e0c4c71.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PA05ZlTxqPS8YWi5V7V2gPjALHg=", "createTime": "2024-08-15 14:40:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.187042+00 2025-12-09 10:14:44.187046+00 4234 8005#黑色批布文件共用 SPMX-20240815299366 \N \N \N 1 \N [{"file_id": "384ec206-2ccf-457e-b35d-d5487c6f50a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e31b3ddf7ea24991801bc56bcaabea21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e31b3ddf7ea24991801bc56bcaabea21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e31b3ddf7ea24991801bc56bcaabea21.jpg", "file_size": 39853, "is_delete": false, "file_type": 1, "original_file_name": "8005#黑色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31b3ddf7ea24991801bc56bcaabea21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31b3ddf7ea24991801bc56bcaabea21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31b3ddf7ea24991801bc56bcaabea21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e31b3ddf7ea24991801bc56bcaabea21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e31b3ddf7ea24991801bc56bcaabea21.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wr5jYnaqaxr9l3qKXtL-re9UAtE=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.188169+00 2025-12-09 10:14:44.188174+00 4235 0001-59FWF#V5曲线 SPMX-20240815299369 \N \N \N 1 \N [{"file_id": "300e6879-dc2f-49dd-96a5-5d2ad92333a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "718467a009594774a955209f9680ca74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "718467a009594774a955209f9680ca74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "718467a009594774a955209f9680ca74.jpg", "file_size": 28442, "is_delete": false, "file_type": 1, "original_file_name": "0001-59FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718467a009594774a955209f9680ca74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718467a009594774a955209f9680ca74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718467a009594774a955209f9680ca74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/718467a009594774a955209f9680ca74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/718467a009594774a955209f9680ca74.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AveHjqdDkeWshlUvNgJQBDjtYIQ=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.189312+00 2025-12-09 10:14:44.189316+00 4236 C231#枣红 SPMX-20240815299368 \N \N \N 1 \N [{"file_id": "58a78d0b-52ef-4ec4-bf13-e24dffb9b137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d782d8856554349b3ca64db1d6696aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d782d8856554349b3ca64db1d6696aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d782d8856554349b3ca64db1d6696aa.jpg", "file_size": 16109, "is_delete": false, "file_type": 1, "original_file_name": "C231#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d782d8856554349b3ca64db1d6696aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d782d8856554349b3ca64db1d6696aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d782d8856554349b3ca64db1d6696aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d782d8856554349b3ca64db1d6696aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d782d8856554349b3ca64db1d6696aa.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUfQVeZqZmcvaWTiGY_d-nQ5kBc=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.190411+00 2025-12-09 10:14:44.190415+00 4237 23-2101#A17领子通用 SPMX-20240815299361 \N \N \N 1 \N [{"file_id": "f46e36e4-811c-4f17-af9b-31fed74c6a08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ed708aef3834d0cae3993b20ea96a31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ed708aef3834d0cae3993b20ea96a31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ed708aef3834d0cae3993b20ea96a31.jpg", "file_size": 8525, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A17领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed708aef3834d0cae3993b20ea96a31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed708aef3834d0cae3993b20ea96a31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed708aef3834d0cae3993b20ea96a31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ed708aef3834d0cae3993b20ea96a31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ed708aef3834d0cae3993b20ea96a31.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jd36DHOKPu1HfeCZNrOWOafondQ=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.191546+00 2025-12-09 10:14:44.19155+00 4238 23-2101#A18前后片3XL SPMX-20240815299373 \N \N \N 1 \N [{"file_id": "750f2f3e-28ff-4c80-805a-49c2b09b787a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61e60a4361bb4d7f935e7882305603ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61e60a4361bb4d7f935e7882305603ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61e60a4361bb4d7f935e7882305603ad.jpg", "file_size": 9413, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A18前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e60a4361bb4d7f935e7882305603ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e60a4361bb4d7f935e7882305603ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e60a4361bb4d7f935e7882305603ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61e60a4361bb4d7f935e7882305603ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61e60a4361bb4d7f935e7882305603ad.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlbtqI3PAQDkwJ5zTNpl2ZkcpCQ=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.192685+00 2025-12-09 10:14:44.192689+00 4239 HSH021FW#VS-D3 SPMX-20240815299362 \N \N \N 1 \N [{"file_id": "45d434bf-3bb1-43fb-9c23-e48eb3aa3a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b34a25d4744cc49e754351a92f5cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b34a25d4744cc49e754351a92f5cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b34a25d4744cc49e754351a92f5cea.jpg", "file_size": 24693, "is_delete": false, "file_type": 1, "original_file_name": "HSH021FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b34a25d4744cc49e754351a92f5cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b34a25d4744cc49e754351a92f5cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b34a25d4744cc49e754351a92f5cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b34a25d4744cc49e754351a92f5cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b34a25d4744cc49e754351a92f5cea.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACmS943Ptm7ewhpE3cA1_vQGHlc=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.193836+00 2025-12-09 10:14:44.19384+00 4240 JS0974-A13#LWQ15 SPMX-20240815299372 \N \N \N 1 \N [{"file_id": "9be70d4e-10ac-4c35-b532-41a59031d64b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f1b237bae204900b1895456f54d1466.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f1b237bae204900b1895456f54d1466.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f1b237bae204900b1895456f54d1466.jpg", "file_size": 17902, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A13#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f1b237bae204900b1895456f54d1466.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f1b237bae204900b1895456f54d1466.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f1b237bae204900b1895456f54d1466.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f1b237bae204900b1895456f54d1466.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f1b237bae204900b1895456f54d1466.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:53z4KctTRSiYLmMwULc2NYE7SdE=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.194967+00 2025-12-09 10:14:44.194971+00 4241 LHJ9171#前片 SPMX-20240815299363 \N \N \N 1 \N [{"file_id": "cc63834c-c4e9-4ef8-9517-2cfc2b17b57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1922c4833394d81b58c5630e19678de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1922c4833394d81b58c5630e19678de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1922c4833394d81b58c5630e19678de.jpg", "file_size": 16805, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1922c4833394d81b58c5630e19678de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1922c4833394d81b58c5630e19678de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1922c4833394d81b58c5630e19678de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1922c4833394d81b58c5630e19678de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1922c4833394d81b58c5630e19678de.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Svi0g8kiwPY5GTKfGW1VX6Vxw7Y=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.196094+00 2025-12-09 10:14:44.196098+00 4242 HSH021FWE#VS-D3 SPMX-20240815299370 \N \N \N 1 \N [{"file_id": "15a9b6be-f8ad-4807-9c27-dcb271a1b9cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20aaa7f6a85b4d33bc62339fa443c9e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20aaa7f6a85b4d33bc62339fa443c9e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20aaa7f6a85b4d33bc62339fa443c9e1.jpg", "file_size": 8579, "is_delete": false, "file_type": 1, "original_file_name": "HSH021FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aaa7f6a85b4d33bc62339fa443c9e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aaa7f6a85b4d33bc62339fa443c9e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aaa7f6a85b4d33bc62339fa443c9e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20aaa7f6a85b4d33bc62339fa443c9e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20aaa7f6a85b4d33bc62339fa443c9e1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OvCyiNr3KTDrommQS2oi_NLG84=", "createTime": "2024-08-15 14:40:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.197218+00 2025-12-09 10:14:44.197223+00 4243 C231#紫色 SPMX-20240815299378 \N \N \N 1 \N [{"file_id": "cc37b567-7ed6-486f-97d3-8b60888eebce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69162e28fe1e46a0adf5983ad4da9a25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69162e28fe1e46a0adf5983ad4da9a25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69162e28fe1e46a0adf5983ad4da9a25.jpg", "file_size": 17466, "is_delete": false, "file_type": 1, "original_file_name": "C231#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69162e28fe1e46a0adf5983ad4da9a25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69162e28fe1e46a0adf5983ad4da9a25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69162e28fe1e46a0adf5983ad4da9a25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69162e28fe1e46a0adf5983ad4da9a25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69162e28fe1e46a0adf5983ad4da9a25.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAkzP_D1JIj1sfORrc8W4A3N9wc=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.198341+00 2025-12-09 10:14:44.198345+00 4244 23-2101#A18前后片4XL SPMX-20240815299382 \N \N \N 1 \N [{"file_id": "c6369095-1bd4-46d1-8aa7-e83af77dd5ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6780a7a7e0c43dda6b02a204a97c6a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6780a7a7e0c43dda6b02a204a97c6a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6780a7a7e0c43dda6b02a204a97c6a7.jpg", "file_size": 9759, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A18前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6780a7a7e0c43dda6b02a204a97c6a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6780a7a7e0c43dda6b02a204a97c6a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6780a7a7e0c43dda6b02a204a97c6a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6780a7a7e0c43dda6b02a204a97c6a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6780a7a7e0c43dda6b02a204a97c6a7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkPugJBN_W0oVY8NNZtT3wXQdII=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.199477+00 2025-12-09 10:14:44.199481+00 4245 FHPKTZ-004-2-批布 SPMX-20240815299379 \N \N \N 1 \N [{"file_id": "942d2d60-8e9d-46df-8381-853fba24ec2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ee350d195ae4b9991ef8f7f5c12713d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ee350d195ae4b9991ef8f7f5c12713d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ee350d195ae4b9991ef8f7f5c12713d.jpg", "file_size": 58357, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-004-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee350d195ae4b9991ef8f7f5c12713d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee350d195ae4b9991ef8f7f5c12713d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee350d195ae4b9991ef8f7f5c12713d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ee350d195ae4b9991ef8f7f5c12713d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ee350d195ae4b9991ef8f7f5c12713d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNnnDE-902yxFn-gh_8_SjUN_6Q=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.200764+00 2025-12-09 10:14:44.200769+00 4246 80050#短袖匹布 SPMX-20240815299377 \N \N \N 1 \N [{"file_id": "be258084-7034-4a2a-bdbd-e04b3a6dfa53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aa5872f8b274f78b9ea87b429c541ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aa5872f8b274f78b9ea87b429c541ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aa5872f8b274f78b9ea87b429c541ca.jpg", "file_size": 20001, "is_delete": false, "file_type": 1, "original_file_name": "80050#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa5872f8b274f78b9ea87b429c541ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa5872f8b274f78b9ea87b429c541ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa5872f8b274f78b9ea87b429c541ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aa5872f8b274f78b9ea87b429c541ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aa5872f8b274f78b9ea87b429c541ca.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pbCA1yrTMT5h2ivOWUzKoMQyZc=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.202105+00 2025-12-09 10:14:44.20211+00 4247 DH202201077T#5-27男装M SPMX-20240815299383 \N \N \N 1 \N [{"file_id": "a04c35a9-1de3-4dc3-af69-eb2284cabf8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad05eeda0b804820ad700b2b48c10bf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad05eeda0b804820ad700b2b48c10bf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad05eeda0b804820ad700b2b48c10bf3.jpg", "file_size": 12037, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-27男装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05eeda0b804820ad700b2b48c10bf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05eeda0b804820ad700b2b48c10bf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05eeda0b804820ad700b2b48c10bf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad05eeda0b804820ad700b2b48c10bf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad05eeda0b804820ad700b2b48c10bf3.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4xEQu7rhVjvqfR59tTxX6JBuXg=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.203412+00 2025-12-09 10:14:44.203417+00 4248 HSH022FW#VS-D3 SPMX-20240815299381 \N \N \N 1 \N [{"file_id": "4cbcf0b2-40e0-4d39-99b0-f9342fdbc963", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8412b277334dc780aec7d148a134e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8412b277334dc780aec7d148a134e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8412b277334dc780aec7d148a134e2.jpg", "file_size": 16320, "is_delete": false, "file_type": 1, "original_file_name": "HSH022FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8412b277334dc780aec7d148a134e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8412b277334dc780aec7d148a134e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8412b277334dc780aec7d148a134e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8412b277334dc780aec7d148a134e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8412b277334dc780aec7d148a134e2.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMxgqR4OImGXoWqnlsEoKOOXNjo=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.204752+00 2025-12-09 10:14:44.204757+00 4249 JS0974-A13#灰色RC23 SPMX-20240815299384 \N \N \N 1 \N [{"file_id": "d7245562-adcf-4308-a157-9ec63956166c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bea7c7256d514c82869a10938da89ef1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bea7c7256d514c82869a10938da89ef1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bea7c7256d514c82869a10938da89ef1.jpg", "file_size": 24687, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A13#灰色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea7c7256d514c82869a10938da89ef1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea7c7256d514c82869a10938da89ef1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea7c7256d514c82869a10938da89ef1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bea7c7256d514c82869a10938da89ef1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bea7c7256d514c82869a10938da89ef1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GoQZq2glvBzQx5Rm88OElF9dYwA=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.206076+00 2025-12-09 10:14:44.206081+00 4250 LZ1197#红色 SPMX-20240815299374 \N \N \N 1 \N [{"file_id": "64a4d3e0-0542-4434-95ae-537c1678808a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53b9028aec8e4eeabc16c3dca31c5527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53b9028aec8e4eeabc16c3dca31c5527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53b9028aec8e4eeabc16c3dca31c5527.jpg", "file_size": 7384, "is_delete": false, "file_type": 1, "original_file_name": "LZ1197#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b9028aec8e4eeabc16c3dca31c5527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b9028aec8e4eeabc16c3dca31c5527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b9028aec8e4eeabc16c3dca31c5527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53b9028aec8e4eeabc16c3dca31c5527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53b9028aec8e4eeabc16c3dca31c5527.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxYeSJ21DlMcXhqAnQD0LoPAaqU=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.207402+00 2025-12-09 10:14:44.207407+00 4251 LHJ9171#咖啡前片 SPMX-20240815299375 \N \N \N 1 \N [{"file_id": "de7a63bf-ca73-420d-b722-92b7d16e4515", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a698fb82f3425c9db928be3d3a86f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a698fb82f3425c9db928be3d3a86f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a698fb82f3425c9db928be3d3a86f8.jpg", "file_size": 16360, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#咖啡前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a698fb82f3425c9db928be3d3a86f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a698fb82f3425c9db928be3d3a86f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a698fb82f3425c9db928be3d3a86f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a698fb82f3425c9db928be3d3a86f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a698fb82f3425c9db928be3d3a86f8.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Q5bFMKI79u_M3F1ExvY7s40sZY=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.208999+00 2025-12-09 10:14:44.209004+00 4252 1045-1FWF#上身彩兰L-番禺调色 SPMX-20240815299376 \N \N \N 1 \N [{"file_id": "83d4e0ae-b774-45b3-8246-46d60458849a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0857ecd8ca564d42873d26ff29c944a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0857ecd8ca564d42873d26ff29c944a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0857ecd8ca564d42873d26ff29c944a9.jpg", "file_size": 22145, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身彩兰L-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0857ecd8ca564d42873d26ff29c944a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0857ecd8ca564d42873d26ff29c944a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0857ecd8ca564d42873d26ff29c944a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0857ecd8ca564d42873d26ff29c944a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0857ecd8ca564d42873d26ff29c944a9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ESK6XYon4zECPcb2nef6w8koU78=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.210609+00 2025-12-09 10:14:44.210614+00 4253 0001-5FWE#VS-D3 SPMX-20240815299380 \N \N \N 1 \N [{"file_id": "a6743ec9-db56-44e7-ac1f-75126fe49110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2cf003afdd421e85c08fec46bed203.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2cf003afdd421e85c08fec46bed203.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2cf003afdd421e85c08fec46bed203.jpg", "file_size": 22006, "is_delete": false, "file_type": 1, "original_file_name": "0001-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2cf003afdd421e85c08fec46bed203.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2cf003afdd421e85c08fec46bed203.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2cf003afdd421e85c08fec46bed203.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2cf003afdd421e85c08fec46bed203.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2cf003afdd421e85c08fec46bed203.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ee0rE-X9AE-3NU-AH5V_zt4VyOg=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.212212+00 2025-12-09 10:14:44.212217+00 4254 LHJ9171#咖啡后片+裤 SPMX-20240815299386 \N \N \N 1 \N [{"file_id": "22ad5f65-2392-463e-8321-fb7fdc5d132d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbc7da42449b4ece922d506053c946fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbc7da42449b4ece922d506053c946fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbc7da42449b4ece922d506053c946fa.jpg", "file_size": 15231, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#咖啡后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc7da42449b4ece922d506053c946fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc7da42449b4ece922d506053c946fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc7da42449b4ece922d506053c946fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbc7da42449b4ece922d506053c946fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbc7da42449b4ece922d506053c946fa.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68qXlLL5A2sBHdEOkPKO0pDSWyk=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.213823+00 2025-12-09 10:14:44.213827+00 4255 1045-1FWF#上身彩兰XL-番禺调色 SPMX-20240815299385 \N \N \N 1 \N [{"file_id": "bafb3b7f-0fb3-4cac-bda4-de8a7ceef293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21eba73a88d44bdfa624129418dfee1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21eba73a88d44bdfa624129418dfee1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21eba73a88d44bdfa624129418dfee1a.jpg", "file_size": 22534, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身彩兰XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21eba73a88d44bdfa624129418dfee1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21eba73a88d44bdfa624129418dfee1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21eba73a88d44bdfa624129418dfee1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21eba73a88d44bdfa624129418dfee1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21eba73a88d44bdfa624129418dfee1a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tD5XcOHSnp-9-XzTXfhAo5KDV4=", "createTime": "2024-08-15 14:40:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.21541+00 2025-12-09 10:14:44.215415+00 4256 0001-5FWF#V5曲线 SPMX-20240815299391 \N \N \N 1 \N [{"file_id": "a83dda1c-508a-4869-8dfb-e0bb7bef7fad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "922f0dde6c124e04aded49e797aff3f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "922f0dde6c124e04aded49e797aff3f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "922f0dde6c124e04aded49e797aff3f5.jpg", "file_size": 12565, "is_delete": false, "file_type": 1, "original_file_name": "0001-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922f0dde6c124e04aded49e797aff3f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922f0dde6c124e04aded49e797aff3f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922f0dde6c124e04aded49e797aff3f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/922f0dde6c124e04aded49e797aff3f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/922f0dde6c124e04aded49e797aff3f5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KeZ9Itwr43TFq129ABOYzO1tCQU=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.217028+00 2025-12-09 10:14:44.217032+00 4257 80051#短袖上衣 SPMX-20240815299388 \N \N \N 1 \N [{"file_id": "8e803954-b259-4314-8eaf-1a8ceff2c01b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cdc1e439a734f5ea26c9cb5c20a0766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cdc1e439a734f5ea26c9cb5c20a0766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cdc1e439a734f5ea26c9cb5c20a0766.jpg", "file_size": 25463, "is_delete": false, "file_type": 1, "original_file_name": "80051#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdc1e439a734f5ea26c9cb5c20a0766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdc1e439a734f5ea26c9cb5c20a0766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdc1e439a734f5ea26c9cb5c20a0766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cdc1e439a734f5ea26c9cb5c20a0766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cdc1e439a734f5ea26c9cb5c20a0766.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tr2mteUDZHHP7vudOp20ERz2z9w=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.218635+00 2025-12-09 10:14:44.21864+00 4258 JS0974-A13#红色RC23 SPMX-20240815299389 \N \N \N 1 \N [{"file_id": "1cbdbc59-c2a0-4574-a027-3f66e05ec678", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f01a09dc7f034923940ec80956b99de7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f01a09dc7f034923940ec80956b99de7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f01a09dc7f034923940ec80956b99de7.jpg", "file_size": 26570, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A13#红色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01a09dc7f034923940ec80956b99de7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01a09dc7f034923940ec80956b99de7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01a09dc7f034923940ec80956b99de7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f01a09dc7f034923940ec80956b99de7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f01a09dc7f034923940ec80956b99de7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJWjhUcOuAiTKB5duvMBI4U4QaI=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.22025+00 2025-12-09 10:14:44.220255+00 4259 LZ1197#蓝色 SPMX-20240815299387 \N \N \N 1 \N [{"file_id": "547db927-5105-412d-87ef-284ddd8133ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c717dd3c9cef4336b4fab8e7e1815dac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c717dd3c9cef4336b4fab8e7e1815dac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c717dd3c9cef4336b4fab8e7e1815dac.jpg", "file_size": 7776, "is_delete": false, "file_type": 1, "original_file_name": "LZ1197#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c717dd3c9cef4336b4fab8e7e1815dac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c717dd3c9cef4336b4fab8e7e1815dac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c717dd3c9cef4336b4fab8e7e1815dac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c717dd3c9cef4336b4fab8e7e1815dac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c717dd3c9cef4336b4fab8e7e1815dac.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ib_tDqI_d13MS5DJSumot5-q3EE=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.221559+00 2025-12-09 10:14:44.221564+00 4260 C231#蓝绿 SPMX-20240815299390 \N \N \N 1 \N [{"file_id": "836c750f-8d18-4caa-9392-80bcbf069b38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3185a56a7214ab78255ff4923d0e732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3185a56a7214ab78255ff4923d0e732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3185a56a7214ab78255ff4923d0e732.jpg", "file_size": 17545, "is_delete": false, "file_type": 1, "original_file_name": "C231#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3185a56a7214ab78255ff4923d0e732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3185a56a7214ab78255ff4923d0e732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3185a56a7214ab78255ff4923d0e732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3185a56a7214ab78255ff4923d0e732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3185a56a7214ab78255ff4923d0e732.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aHSr7PbT7NO-z53uob7PfoZIqvg=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.22291+00 2025-12-09 10:14:44.222915+00 4261 LZ1197#黄色 SPMX-20240815299398 \N \N \N 1 \N [{"file_id": "2be8756e-b763-449e-a7d6-c3b339575488", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9812fe4577842e6b5eaf365e3b4a419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9812fe4577842e6b5eaf365e3b4a419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9812fe4577842e6b5eaf365e3b4a419.jpg", "file_size": 7453, "is_delete": false, "file_type": 1, "original_file_name": "LZ1197#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9812fe4577842e6b5eaf365e3b4a419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9812fe4577842e6b5eaf365e3b4a419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9812fe4577842e6b5eaf365e3b4a419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9812fe4577842e6b5eaf365e3b4a419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9812fe4577842e6b5eaf365e3b4a419.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBmDz_z13-cfJmEHHmO0K4kQHgE=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.224233+00 2025-12-09 10:14:44.224237+00 4262 DH202201077T#5-27男装S SPMX-20240815299393 \N \N \N 1 \N [{"file_id": "88483ee3-c920-4b64-83f5-555d757bcec3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg", "file_size": 10581, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-27男装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee8f4762a13a4dd3bcce7b2b4a144d7d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_I5L2BFaQulVwE2SEuG9CHfPAy0=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.225546+00 2025-12-09 10:14:44.225551+00 4263 1045-1FWF#上身玫红2XL-番禺调色 SPMX-20240815299394 \N \N \N 1 \N [{"file_id": "99696e0b-6300-4890-943c-b77f45fb0d39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ce1ae7ff2c49f6b726813169ea9b30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ce1ae7ff2c49f6b726813169ea9b30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ce1ae7ff2c49f6b726813169ea9b30.jpg", "file_size": 23833, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身玫红2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ce1ae7ff2c49f6b726813169ea9b30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ce1ae7ff2c49f6b726813169ea9b30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ce1ae7ff2c49f6b726813169ea9b30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ce1ae7ff2c49f6b726813169ea9b30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ce1ae7ff2c49f6b726813169ea9b30.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMrcSS-iu7-7nODWsibgI5tzQZ4=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.226879+00 2025-12-09 10:14:44.226884+00 4264 80051#短袖子 SPMX-20240815299399 \N \N \N 1 \N [{"file_id": "34a212ae-9ef3-4766-b64f-cedc7a5ef715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90ec2472eadf4528b0654e10394e3dd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90ec2472eadf4528b0654e10394e3dd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90ec2472eadf4528b0654e10394e3dd7.jpg", "file_size": 23926, "is_delete": false, "file_type": 1, "original_file_name": "80051#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ec2472eadf4528b0654e10394e3dd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ec2472eadf4528b0654e10394e3dd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ec2472eadf4528b0654e10394e3dd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90ec2472eadf4528b0654e10394e3dd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90ec2472eadf4528b0654e10394e3dd7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDwfIzPG6hNLp13449DWDeuEdro=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.228225+00 2025-12-09 10:14:44.22823+00 4265 0001-60FWF#V5曲线 SPMX-20240815299400 \N \N \N 1 \N [{"file_id": "16423bc6-fdf3-4c99-81df-7409203a45df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3debbf18b1548ef85b59c6680e8f020.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3debbf18b1548ef85b59c6680e8f020.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3debbf18b1548ef85b59c6680e8f020.jpg", "file_size": 24966, "is_delete": false, "file_type": 1, "original_file_name": "0001-60FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3debbf18b1548ef85b59c6680e8f020.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3debbf18b1548ef85b59c6680e8f020.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3debbf18b1548ef85b59c6680e8f020.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3debbf18b1548ef85b59c6680e8f020.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3debbf18b1548ef85b59c6680e8f020.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKh8Vhln2RUHbaosToUL5s-TcV0=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.229542+00 2025-12-09 10:14:44.229546+00 4266 C23109#L SPMX-20240815299402 \N \N \N 1 \N [{"file_id": "161ec58e-7352-4404-956d-72827ae7ca74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2465bdd7cf2d45ba86d32b72c6c22d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2465bdd7cf2d45ba86d32b72c6c22d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2465bdd7cf2d45ba86d32b72c6c22d8f.jpg", "file_size": 15990, "is_delete": false, "file_type": 1, "original_file_name": "C23109#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465bdd7cf2d45ba86d32b72c6c22d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465bdd7cf2d45ba86d32b72c6c22d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465bdd7cf2d45ba86d32b72c6c22d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2465bdd7cf2d45ba86d32b72c6c22d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2465bdd7cf2d45ba86d32b72c6c22d8f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWsrEt0hPUtRO2rubKspx4fjl98=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.23086+00 2025-12-09 10:14:44.230864+00 4267 HSH023FW#VS-D3 SPMX-20240815299392 \N \N \N 1 \N [{"file_id": "dcf79cde-8201-451b-9448-0b68efadbcc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "144d739cadca4fc49435b1fbf1869c03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "144d739cadca4fc49435b1fbf1869c03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "144d739cadca4fc49435b1fbf1869c03.jpg", "file_size": 9519, "is_delete": false, "file_type": 1, "original_file_name": "HSH023FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144d739cadca4fc49435b1fbf1869c03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144d739cadca4fc49435b1fbf1869c03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144d739cadca4fc49435b1fbf1869c03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/144d739cadca4fc49435b1fbf1869c03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/144d739cadca4fc49435b1fbf1869c03.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BP_cFmhmlCdkwN6IOLG0FlbFlyA=", "createTime": "2024-08-15 14:40:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.232166+00 2025-12-09 10:14:44.232171+00 4268 JS0974-A14#LWQ15 SPMX-20240815299401 \N \N \N 1 \N [{"file_id": "d4e45151-e27c-4f7c-9434-d39c5472df7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c64b77111da4a3abc609858e2997c68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c64b77111da4a3abc609858e2997c68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c64b77111da4a3abc609858e2997c68.jpg", "file_size": 81349, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A14#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c64b77111da4a3abc609858e2997c68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c64b77111da4a3abc609858e2997c68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c64b77111da4a3abc609858e2997c68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c64b77111da4a3abc609858e2997c68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c64b77111da4a3abc609858e2997c68.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rmjAWDEexR2NJu_kjy15-25Ln4=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.233471+00 2025-12-09 10:14:44.233475+00 4269 HSH024FW#VS-D3 SPMX-20240815299403 \N \N \N 1 \N [{"file_id": "d4103a29-a51e-4d39-a8b5-2117ae3b3675", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be4c045e13d4223b690ef1f5fe7bbdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be4c045e13d4223b690ef1f5fe7bbdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be4c045e13d4223b690ef1f5fe7bbdb.jpg", "file_size": 7745, "is_delete": false, "file_type": 1, "original_file_name": "HSH024FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be4c045e13d4223b690ef1f5fe7bbdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be4c045e13d4223b690ef1f5fe7bbdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be4c045e13d4223b690ef1f5fe7bbdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be4c045e13d4223b690ef1f5fe7bbdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be4c045e13d4223b690ef1f5fe7bbdb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1e1iHHrM-7Tgv8yCwV8vFl8QVe4=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.234807+00 2025-12-09 10:14:44.234811+00 4270 DH202201077T#5-3男装M SPMX-20240815299404 \N \N \N 1 \N [{"file_id": "2e49b54b-0c42-459d-b68c-d2e8dc1ce36f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e146294b5634dd9be5999e32d8e99dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e146294b5634dd9be5999e32d8e99dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e146294b5634dd9be5999e32d8e99dc.jpg", "file_size": 12064, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-3男装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e146294b5634dd9be5999e32d8e99dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e146294b5634dd9be5999e32d8e99dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e146294b5634dd9be5999e32d8e99dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e146294b5634dd9be5999e32d8e99dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e146294b5634dd9be5999e32d8e99dc.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEgv-_G80AsfqWYU49Y1kme89-E=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.236136+00 2025-12-09 10:14:44.23614+00 4271 23-2101#A18袖子3XL SPMX-20240815299396 \N \N \N 1 \N [{"file_id": "13a8ec2a-e893-45f1-be21-76501e8569b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d64f20f7863a47d7b02544aac4d16090.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d64f20f7863a47d7b02544aac4d16090.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d64f20f7863a47d7b02544aac4d16090.jpg", "file_size": 7869, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A18袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64f20f7863a47d7b02544aac4d16090.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64f20f7863a47d7b02544aac4d16090.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64f20f7863a47d7b02544aac4d16090.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d64f20f7863a47d7b02544aac4d16090.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d64f20f7863a47d7b02544aac4d16090.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGOlXLLGCl3jz38uRM5G7oO0gFE=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.23745+00 2025-12-09 10:14:44.237455+00 4272 LHJ9171#黑白前片 SPMX-20240815299395 \N \N \N 1 \N [{"file_id": "54c251d1-b9da-4c6c-8b20-961c1e8a5e0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8201b8f2ffd443559c82500b1c250ee6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8201b8f2ffd443559c82500b1c250ee6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8201b8f2ffd443559c82500b1c250ee6.jpg", "file_size": 16771, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#黑白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201b8f2ffd443559c82500b1c250ee6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201b8f2ffd443559c82500b1c250ee6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201b8f2ffd443559c82500b1c250ee6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8201b8f2ffd443559c82500b1c250ee6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8201b8f2ffd443559c82500b1c250ee6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nb7S_b9SItxMt2RHi2TQksEmZZ0=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.238784+00 2025-12-09 10:14:44.238789+00 4273 FHPKTZ-004-3-批布 SPMX-20240815299397 \N \N \N 1 \N [{"file_id": "4783d206-377c-4937-ac1f-bcaf63d7bf7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa4e6c7b2361444f8669725fc1fc2df9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa4e6c7b2361444f8669725fc1fc2df9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa4e6c7b2361444f8669725fc1fc2df9.jpg", "file_size": 58055, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-004-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4e6c7b2361444f8669725fc1fc2df9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4e6c7b2361444f8669725fc1fc2df9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4e6c7b2361444f8669725fc1fc2df9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa4e6c7b2361444f8669725fc1fc2df9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa4e6c7b2361444f8669725fc1fc2df9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxgCNe-PneNcoGmCD0aotnmrSUw=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.240135+00 2025-12-09 10:14:44.24014+00 4274 C23109#M SPMX-20240815299415 \N \N \N 1 \N [{"file_id": "088abadb-9b0b-4eac-a38c-6eb91e513460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5797e9bcdefa43dea302e32727de5443.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5797e9bcdefa43dea302e32727de5443.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5797e9bcdefa43dea302e32727de5443.jpg", "file_size": 17116, "is_delete": false, "file_type": 1, "original_file_name": "C23109#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5797e9bcdefa43dea302e32727de5443.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5797e9bcdefa43dea302e32727de5443.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5797e9bcdefa43dea302e32727de5443.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5797e9bcdefa43dea302e32727de5443.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5797e9bcdefa43dea302e32727de5443.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjgGKLEBpIOgU3q8hfixM8jn-HI=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.241617+00 2025-12-09 10:14:44.241623+00 4275 1045-1FWF#上身玫红XL-番禺调色 SPMX-20240815299419 \N \N \N 1 \N [{"file_id": "d89ec806-9751-4c82-bd62-f9bbeeaf8e6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bf188039ca54a46867a09f58f72583b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bf188039ca54a46867a09f58f72583b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bf188039ca54a46867a09f58f72583b.jpg", "file_size": 23460, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身玫红XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf188039ca54a46867a09f58f72583b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf188039ca54a46867a09f58f72583b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf188039ca54a46867a09f58f72583b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bf188039ca54a46867a09f58f72583b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bf188039ca54a46867a09f58f72583b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PhUMq3hXbCKP9ktl7NTrsQ1BB4=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.242992+00 2025-12-09 10:14:44.242997+00 4276 23-2101#A18袖子4XL SPMX-20240815299405 \N \N \N 1 \N [{"file_id": "3e63cdb2-cabe-49dc-bf43-055f30d7f73b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e4e02573fc41f9af9efd17de7f5e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e4e02573fc41f9af9efd17de7f5e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e4e02573fc41f9af9efd17de7f5e7a.jpg", "file_size": 7510, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A18袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e4e02573fc41f9af9efd17de7f5e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e4e02573fc41f9af9efd17de7f5e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e4e02573fc41f9af9efd17de7f5e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e4e02573fc41f9af9efd17de7f5e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e4e02573fc41f9af9efd17de7f5e7a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kIprlVGIItJ7K0EK35g4q6R1jeE=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.244298+00 2025-12-09 10:14:44.244302+00 4277 LZ1198#2号色 SPMX-20240815299414 \N \N \N 1 \N [{"file_id": "d6a73f86-3961-4b57-b0c8-ad80790dc8a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e9e73f733f4437cb9ac84f9eacaeffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e9e73f733f4437cb9ac84f9eacaeffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e9e73f733f4437cb9ac84f9eacaeffd.jpg", "file_size": 8094, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9e73f733f4437cb9ac84f9eacaeffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9e73f733f4437cb9ac84f9eacaeffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9e73f733f4437cb9ac84f9eacaeffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e9e73f733f4437cb9ac84f9eacaeffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e9e73f733f4437cb9ac84f9eacaeffd.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YRTQ0Bd0Tce3ciaaphbCz_Fp6I=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.245618+00 2025-12-09 10:14:44.245623+00 4278 LZ1198#1号色 SPMX-20240815299407 \N \N \N 1 \N [{"file_id": "9953fb95-4c56-4c81-bfd7-eb57f43ae6ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82d4971727984f428ac1b1b896e19297.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82d4971727984f428ac1b1b896e19297.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82d4971727984f428ac1b1b896e19297.jpg", "file_size": 7512, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d4971727984f428ac1b1b896e19297.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d4971727984f428ac1b1b896e19297.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d4971727984f428ac1b1b896e19297.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82d4971727984f428ac1b1b896e19297.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82d4971727984f428ac1b1b896e19297.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDmAv2IrGPBzyYeMJPwuPke5AqI=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.247159+00 2025-12-09 10:14:44.247164+00 4279 FHPKTZ-004-4-批布 SPMX-20240815299410 \N \N \N 1 \N [{"file_id": "f592fd56-3d73-4519-ab17-715ebd4e2352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "107123e9340f491d93782f2ab2c441ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "107123e9340f491d93782f2ab2c441ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "107123e9340f491d93782f2ab2c441ae.jpg", "file_size": 45689, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-004-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107123e9340f491d93782f2ab2c441ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107123e9340f491d93782f2ab2c441ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107123e9340f491d93782f2ab2c441ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/107123e9340f491d93782f2ab2c441ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/107123e9340f491d93782f2ab2c441ae.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dt2iJkqU5rOwd_CW_zTUfCKn8SA=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.248634+00 2025-12-09 10:14:44.24864+00 4280 LHJ9177# SPMX-20240815299420 \N \N \N 1 \N [{"file_id": "f4857e49-5dfa-418d-9064-3d95799602d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d46751a9d8b4843a450cbb3d4e2ec2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d46751a9d8b4843a450cbb3d4e2ec2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d46751a9d8b4843a450cbb3d4e2ec2a.jpg", "file_size": 15201, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9177#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d46751a9d8b4843a450cbb3d4e2ec2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d46751a9d8b4843a450cbb3d4e2ec2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d46751a9d8b4843a450cbb3d4e2ec2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d46751a9d8b4843a450cbb3d4e2ec2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d46751a9d8b4843a450cbb3d4e2ec2a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05kaL-dOZ7SbHPRRnvRlW2hISOE=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.25011+00 2025-12-09 10:14:44.250114+00 4281 80052#短袖上衣 SPMX-20240815299408 \N \N \N 1 \N [{"file_id": "a0ec511b-6a6a-4b5f-b63e-96ce2e8c9c2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1f28dc3afc4f6b8a075361657ac4f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1f28dc3afc4f6b8a075361657ac4f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1f28dc3afc4f6b8a075361657ac4f7.jpg", "file_size": 25340, "is_delete": false, "file_type": 1, "original_file_name": "80052#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1f28dc3afc4f6b8a075361657ac4f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1f28dc3afc4f6b8a075361657ac4f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1f28dc3afc4f6b8a075361657ac4f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1f28dc3afc4f6b8a075361657ac4f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1f28dc3afc4f6b8a075361657ac4f7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rN1dmrt5DAuHQaw2T_GFKbdC6TM=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.251465+00 2025-12-09 10:14:44.25147+00 4282 HSH025FW#VS-D3 SPMX-20240815299416 \N \N \N 1 \N [{"file_id": "7f9276f3-a9c5-45ac-b2ad-ada7c6eac719", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92bfd5bd3a1243428eb09425e6abdb82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92bfd5bd3a1243428eb09425e6abdb82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92bfd5bd3a1243428eb09425e6abdb82.jpg", "file_size": 19885, "is_delete": false, "file_type": 1, "original_file_name": "HSH025FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bfd5bd3a1243428eb09425e6abdb82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bfd5bd3a1243428eb09425e6abdb82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bfd5bd3a1243428eb09425e6abdb82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92bfd5bd3a1243428eb09425e6abdb82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92bfd5bd3a1243428eb09425e6abdb82.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqS4674SwoMH3tA---p49ngeio8=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.252807+00 2025-12-09 10:14:44.252811+00 4283 23-2101#A18领子通用 SPMX-20240815299417 \N \N \N 1 \N [{"file_id": "f9b7d435-2b32-4227-9b77-e43b86d1343b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b43d934e9840c48da1228ae455ab11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b43d934e9840c48da1228ae455ab11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b43d934e9840c48da1228ae455ab11.jpg", "file_size": 7991, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A18领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b43d934e9840c48da1228ae455ab11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b43d934e9840c48da1228ae455ab11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b43d934e9840c48da1228ae455ab11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b43d934e9840c48da1228ae455ab11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b43d934e9840c48da1228ae455ab11.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BE5yHqS4z2OmAFodEf84XMym7R0=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.25399+00 2025-12-09 10:14:44.253994+00 4284 1045-1FWF#上身玫红L-番禺调色 SPMX-20240815299406 \N \N \N 1 \N [{"file_id": "79d8d088-490e-45fe-864e-b8cea5a89373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2792494854b94f6982e4ecddec944af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2792494854b94f6982e4ecddec944af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2792494854b94f6982e4ecddec944af2.jpg", "file_size": 22706, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身玫红L-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2792494854b94f6982e4ecddec944af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2792494854b94f6982e4ecddec944af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2792494854b94f6982e4ecddec944af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2792494854b94f6982e4ecddec944af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2792494854b94f6982e4ecddec944af2.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUXWwi7FTrQlDC7KiP-BTUxsODU=", "createTime": "2024-08-15 14:40:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.255159+00 2025-12-09 10:14:44.255163+00 4285 JS0974-A14#RC23 SPMX-20240815299412 \N \N \N 1 \N [{"file_id": "afbf442f-55ba-4925-9b59-9045e56cad1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c906c5acdfd54471a0ea0460610c2aa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c906c5acdfd54471a0ea0460610c2aa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c906c5acdfd54471a0ea0460610c2aa2.jpg", "file_size": 65453, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A14#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c906c5acdfd54471a0ea0460610c2aa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c906c5acdfd54471a0ea0460610c2aa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c906c5acdfd54471a0ea0460610c2aa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c906c5acdfd54471a0ea0460610c2aa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c906c5acdfd54471a0ea0460610c2aa2.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpRnbPAdMar9XzHA9fyFPSsmCdE=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.256316+00 2025-12-09 10:14:44.25632+00 4286 LHJ9171#黑白后片+裤 SPMX-20240815299409 \N \N \N 1 \N [{"file_id": "b757a491-06b0-4bf9-aacf-2dd51cb2fa9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "714fc040961e445484a0c1d406a3cd37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "714fc040961e445484a0c1d406a3cd37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "714fc040961e445484a0c1d406a3cd37.jpg", "file_size": 15745, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9171#黑白后片+裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/714fc040961e445484a0c1d406a3cd37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/714fc040961e445484a0c1d406a3cd37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/714fc040961e445484a0c1d406a3cd37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/714fc040961e445484a0c1d406a3cd37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/714fc040961e445484a0c1d406a3cd37.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FG1X7rfovWxDpdulkNNbXs-fdoc=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.25749+00 2025-12-09 10:14:44.257494+00 4287 0001-61FWF#V5曲线 SPMX-20240815299411 \N \N \N 1 \N [{"file_id": "5c1e2a78-12d4-434b-af0e-dbfe2f7b750b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce6ab593a329492094ca3629c7e0fe88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce6ab593a329492094ca3629c7e0fe88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce6ab593a329492094ca3629c7e0fe88.jpg", "file_size": 18868, "is_delete": false, "file_type": 1, "original_file_name": "0001-61FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6ab593a329492094ca3629c7e0fe88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6ab593a329492094ca3629c7e0fe88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6ab593a329492094ca3629c7e0fe88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce6ab593a329492094ca3629c7e0fe88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce6ab593a329492094ca3629c7e0fe88.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHHsboT5ofQS7t1npICFwXbaARg=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.258673+00 2025-12-09 10:14:44.258677+00 4288 DH202201077T#5-3男装S SPMX-20240815299413 \N \N \N 1 \N [{"file_id": "f21e31d8-2323-45b7-b3f8-5053780d7510", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f802fe8af484116ba6ce749ec0ca016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f802fe8af484116ba6ce749ec0ca016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f802fe8af484116ba6ce749ec0ca016.jpg", "file_size": 11306, "is_delete": false, "file_type": 1, "original_file_name": "DH202201077T#5-3男装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f802fe8af484116ba6ce749ec0ca016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f802fe8af484116ba6ce749ec0ca016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f802fe8af484116ba6ce749ec0ca016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f802fe8af484116ba6ce749ec0ca016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f802fe8af484116ba6ce749ec0ca016.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZoJ9FqD2PolniAj1QMdQnsAUXzU=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.25981+00 2025-12-09 10:14:44.259814+00 4289 80052#短袖匹布 SPMX-20240815299418 \N \N \N 1 \N [{"file_id": "a0360d3c-df73-4692-9c06-4f05ec06520c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a80ae7803a448adb3200c738be798c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a80ae7803a448adb3200c738be798c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a80ae7803a448adb3200c738be798c0.jpg", "file_size": 22923, "is_delete": false, "file_type": 1, "original_file_name": "80052#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a80ae7803a448adb3200c738be798c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a80ae7803a448adb3200c738be798c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a80ae7803a448adb3200c738be798c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a80ae7803a448adb3200c738be798c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a80ae7803a448adb3200c738be798c0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esQOT4FBNxNL8miLyCt0-wRO2IA=", "createTime": "2024-08-15 14:40:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.260951+00 2025-12-09 10:14:44.260955+00 4290 LZ1198#3号色 SPMX-20240815299424 \N \N \N 1 \N [{"file_id": "211c2ca5-5944-4aa5-a294-0a3b4ba05c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5988def269284338ba553592aa12cb19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5988def269284338ba553592aa12cb19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5988def269284338ba553592aa12cb19.jpg", "file_size": 7214, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5988def269284338ba553592aa12cb19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5988def269284338ba553592aa12cb19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5988def269284338ba553592aa12cb19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5988def269284338ba553592aa12cb19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5988def269284338ba553592aa12cb19.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:biWhoYTohrimK9xYsWvMwHoujMk=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.262112+00 2025-12-09 10:14:44.262116+00 4291 DH202201078T#男装M SPMX-20240815299425 \N \N \N 1 \N [{"file_id": "7ab72613-3e96-42dc-9953-c346256a1add", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02e37544ccf4b018205b2a9f7f528ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02e37544ccf4b018205b2a9f7f528ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02e37544ccf4b018205b2a9f7f528ae.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "DH202201078T#男装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e37544ccf4b018205b2a9f7f528ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e37544ccf4b018205b2a9f7f528ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02e37544ccf4b018205b2a9f7f528ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02e37544ccf4b018205b2a9f7f528ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02e37544ccf4b018205b2a9f7f528ae.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84IMhQjaywIQZvtadG6KI7xJawg=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.263219+00 2025-12-09 10:14:44.263223+00 4292 DH202201078T#男装S SPMX-20240815299434 \N \N \N 1 \N [{"file_id": "5a7309a4-4367-4ab1-982d-5eb66806c303", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26872d14f37e47b49a0baa2d53342d8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26872d14f37e47b49a0baa2d53342d8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26872d14f37e47b49a0baa2d53342d8c.jpg", "file_size": 10343, "is_delete": false, "file_type": 1, "original_file_name": "DH202201078T#男装S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26872d14f37e47b49a0baa2d53342d8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26872d14f37e47b49a0baa2d53342d8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26872d14f37e47b49a0baa2d53342d8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26872d14f37e47b49a0baa2d53342d8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26872d14f37e47b49a0baa2d53342d8c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJoYFOpVeo2Y-HEhOj7KTpd7JkM=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.264366+00 2025-12-09 10:14:44.264371+00 4293 C23109#S SPMX-20240815299428 \N \N \N 1 \N [{"file_id": "58a27c47-30aa-4d1c-91a2-81f221d0df79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "096ea41ccbfb4bf09cff4d749c3e5eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "096ea41ccbfb4bf09cff4d749c3e5eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "096ea41ccbfb4bf09cff4d749c3e5eca.jpg", "file_size": 17189, "is_delete": false, "file_type": 1, "original_file_name": "C23109#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096ea41ccbfb4bf09cff4d749c3e5eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096ea41ccbfb4bf09cff4d749c3e5eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096ea41ccbfb4bf09cff4d749c3e5eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/096ea41ccbfb4bf09cff4d749c3e5eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/096ea41ccbfb4bf09cff4d749c3e5eca.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0bsz_XtNvq98aEkCXbOLoRuRgc=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.26549+00 2025-12-09 10:14:44.265494+00 4294 FHPKTZ-批布-1 SPMX-20240815299423 \N \N \N 1 \N [{"file_id": "e77922b8-fafd-46a7-94a3-8fb27319cb23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbfe20e402cc44aba8e5ea2a1ac74573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbfe20e402cc44aba8e5ea2a1ac74573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbfe20e402cc44aba8e5ea2a1ac74573.jpg", "file_size": 41794, "is_delete": false, "file_type": 1, "original_file_name": "FHPKTZ-批布-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbfe20e402cc44aba8e5ea2a1ac74573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbfe20e402cc44aba8e5ea2a1ac74573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbfe20e402cc44aba8e5ea2a1ac74573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbfe20e402cc44aba8e5ea2a1ac74573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbfe20e402cc44aba8e5ea2a1ac74573.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9juMRAzAd_qSWKZg33GxUS6p0gY=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.266652+00 2025-12-09 10:14:44.266657+00 4295 1045-1FWF#上身黄色2XL-番禺调色 SPMX-20240815299429 \N \N \N 1 \N [{"file_id": "c9b274b9-5e5c-4662-82f0-3b2cd777b772", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a616aaefe1644763a2516340cf0e9983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a616aaefe1644763a2516340cf0e9983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a616aaefe1644763a2516340cf0e9983.jpg", "file_size": 23342, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身黄色2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a616aaefe1644763a2516340cf0e9983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a616aaefe1644763a2516340cf0e9983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a616aaefe1644763a2516340cf0e9983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a616aaefe1644763a2516340cf0e9983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a616aaefe1644763a2516340cf0e9983.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A53feBT6u3qkIE6grICxLtZfTNE=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.267773+00 2025-12-09 10:14:44.267777+00 4296 JS0974-A15#LWQ15 SPMX-20240815299422 \N \N \N 1 \N [{"file_id": "a8e1bfae-714b-4eb0-b218-b6a1e7c56e11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcf029f3c9db4018874b6baadc425bbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcf029f3c9db4018874b6baadc425bbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcf029f3c9db4018874b6baadc425bbf.jpg", "file_size": 58072, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A15#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf029f3c9db4018874b6baadc425bbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf029f3c9db4018874b6baadc425bbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf029f3c9db4018874b6baadc425bbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcf029f3c9db4018874b6baadc425bbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcf029f3c9db4018874b6baadc425bbf.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XV-aSN7jxBsu8ccfrTdcElUA4Z8=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.268902+00 2025-12-09 10:14:44.268907+00 4297 80052#短袖子 SPMX-20240815299430 \N \N \N 1 \N [{"file_id": "638b13c9-a1d1-41aa-a6b6-326903682ba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1284354c54eb4eba91ca7e34a73857d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1284354c54eb4eba91ca7e34a73857d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1284354c54eb4eba91ca7e34a73857d5.jpg", "file_size": 24410, "is_delete": false, "file_type": 1, "original_file_name": "80052#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1284354c54eb4eba91ca7e34a73857d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1284354c54eb4eba91ca7e34a73857d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1284354c54eb4eba91ca7e34a73857d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1284354c54eb4eba91ca7e34a73857d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1284354c54eb4eba91ca7e34a73857d5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Knr-FX8fAR8bI2hrcFgQ_BJ0XuQ=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.270055+00 2025-12-09 10:14:44.270059+00 4298 LHJ9177#1#黑 SPMX-20240815299431 \N \N \N 1 \N [{"file_id": "fa0a0595-eeac-4acd-b805-87e505d13f79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "214a8bd7463f4cc89b6bf59203dd9b75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "214a8bd7463f4cc89b6bf59203dd9b75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "214a8bd7463f4cc89b6bf59203dd9b75.jpg", "file_size": 16104, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9177#1#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214a8bd7463f4cc89b6bf59203dd9b75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214a8bd7463f4cc89b6bf59203dd9b75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214a8bd7463f4cc89b6bf59203dd9b75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/214a8bd7463f4cc89b6bf59203dd9b75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/214a8bd7463f4cc89b6bf59203dd9b75.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4QQpl3koWdQS0WkD4F3_F38LUk=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.271376+00 2025-12-09 10:14:44.271381+00 4299 23-2101#A19前后片3XL SPMX-20240815299427 \N \N \N 1 \N [{"file_id": "56faa155-0417-4683-afb5-a9bda9d30560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a288c216bfe4f82a5de99608985928b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a288c216bfe4f82a5de99608985928b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a288c216bfe4f82a5de99608985928b.jpg", "file_size": 9562, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A19前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a288c216bfe4f82a5de99608985928b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a288c216bfe4f82a5de99608985928b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a288c216bfe4f82a5de99608985928b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a288c216bfe4f82a5de99608985928b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a288c216bfe4f82a5de99608985928b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxhBgur5WQOe0LQkSF5QOiIr01U=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.272663+00 2025-12-09 10:14:44.272667+00 4300 0001-62FWF#V5曲线番禺调色 SPMX-20240815299432 \N \N \N 1 \N [{"file_id": "6670b6ec-6940-42e1-b104-dc32e1228a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9fc7aab29f04f918251ad8fe9a6db9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9fc7aab29f04f918251ad8fe9a6db9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9fc7aab29f04f918251ad8fe9a6db9e.jpg", "file_size": 10643, "is_delete": false, "file_type": 1, "original_file_name": "0001-62FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9fc7aab29f04f918251ad8fe9a6db9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9fc7aab29f04f918251ad8fe9a6db9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9fc7aab29f04f918251ad8fe9a6db9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9fc7aab29f04f918251ad8fe9a6db9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9fc7aab29f04f918251ad8fe9a6db9e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGSLo1AyDfy0pHeDkVygPMSojeg=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.27387+00 2025-12-09 10:14:44.273874+00 4301 HSH026FW#VS-D3 SPMX-20240815299426 \N \N \N 1 \N [{"file_id": "b5ce6aad-9f9c-41aa-8344-d3aa405b677d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97262c37f8f94bf4811d35fe49739135.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97262c37f8f94bf4811d35fe49739135.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97262c37f8f94bf4811d35fe49739135.jpg", "file_size": 17477, "is_delete": false, "file_type": 1, "original_file_name": "HSH026FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97262c37f8f94bf4811d35fe49739135.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97262c37f8f94bf4811d35fe49739135.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97262c37f8f94bf4811d35fe49739135.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97262c37f8f94bf4811d35fe49739135.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97262c37f8f94bf4811d35fe49739135.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4FcgBKVbn5C8KIV5fMgPvYOq1s=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.27506+00 2025-12-09 10:14:44.275064+00 4302 LZ1198#4号色 SPMX-20240815299433 \N \N \N 1 \N [{"file_id": "28b96098-1c04-4ae9-a085-5a2ee2d6a1c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad66827139ca4309b58421aa6ddc761c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad66827139ca4309b58421aa6ddc761c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad66827139ca4309b58421aa6ddc761c.jpg", "file_size": 7404, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad66827139ca4309b58421aa6ddc761c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad66827139ca4309b58421aa6ddc761c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad66827139ca4309b58421aa6ddc761c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad66827139ca4309b58421aa6ddc761c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad66827139ca4309b58421aa6ddc761c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FOH0vmYcZjaYw4DfJSGlPKRvIB0=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.276241+00 2025-12-09 10:14:44.276245+00 4303 0001-62FWF#V5曲线 SPMX-20240815299421 \N \N \N 1 \N [{"file_id": "44e60bf5-fae9-4dca-9cc1-4bb4578a4cea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b5820fbd0a749368aa8e8d324db2e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b5820fbd0a749368aa8e8d324db2e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b5820fbd0a749368aa8e8d324db2e21.jpg", "file_size": 10265, "is_delete": false, "file_type": 1, "original_file_name": "0001-62FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5820fbd0a749368aa8e8d324db2e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5820fbd0a749368aa8e8d324db2e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5820fbd0a749368aa8e8d324db2e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b5820fbd0a749368aa8e8d324db2e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b5820fbd0a749368aa8e8d324db2e21.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DdLvU336Ftu2lHMV1LY6afU_TbQ=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.277413+00 2025-12-09 10:14:44.277417+00 4304 LHJ9177#E SPMX-20240815299441 \N \N \N 1 \N [{"file_id": "1bc1aa8b-8610-4506-b5d3-c47530ea6de2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d04b248cf8a4ea5bbfa66242f628c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d04b248cf8a4ea5bbfa66242f628c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d04b248cf8a4ea5bbfa66242f628c8e.jpg", "file_size": 16297, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9177#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d04b248cf8a4ea5bbfa66242f628c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d04b248cf8a4ea5bbfa66242f628c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d04b248cf8a4ea5bbfa66242f628c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d04b248cf8a4ea5bbfa66242f628c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d04b248cf8a4ea5bbfa66242f628c8e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6KKyhtyfizYwBgtRcOraPMcKtQ=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.278591+00 2025-12-09 10:14:44.278595+00 4305 DH202201079T#5-10女童M SPMX-20240815299445 \N \N \N 1 \N [{"file_id": "3f113b11-a150-471c-8314-303cd128f3a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b5e1847e2a64c9a8c2a304c5311d373.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b5e1847e2a64c9a8c2a304c5311d373.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b5e1847e2a64c9a8c2a304c5311d373.jpg", "file_size": 9664, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-10女童M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5e1847e2a64c9a8c2a304c5311d373.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5e1847e2a64c9a8c2a304c5311d373.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5e1847e2a64c9a8c2a304c5311d373.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b5e1847e2a64c9a8c2a304c5311d373.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b5e1847e2a64c9a8c2a304c5311d373.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXdJWZRxdGCuEWdj3HMd4_aKruU=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.279757+00 2025-12-09 10:14:44.279761+00 4306 JS0974-A15#蓝色 SPMX-20240815299447 \N \N \N 1 \N [{"file_id": "3da728ba-74a0-415d-8f3f-2afa14b12871", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c30db53c5f124c74ae8aedcfe4d9a182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c30db53c5f124c74ae8aedcfe4d9a182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c30db53c5f124c74ae8aedcfe4d9a182.jpg", "file_size": 64771, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A15#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30db53c5f124c74ae8aedcfe4d9a182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30db53c5f124c74ae8aedcfe4d9a182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30db53c5f124c74ae8aedcfe4d9a182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c30db53c5f124c74ae8aedcfe4d9a182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c30db53c5f124c74ae8aedcfe4d9a182.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:261mxZZCg0xArEPpiU48RcBDw7U=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.280932+00 2025-12-09 10:14:44.280937+00 4307 80055#土黄色 SPMX-20240815299451 \N \N \N 1 \N [{"file_id": "0a66a996-ed2a-412f-8570-b80b248f6300", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d64e981f4d7545e7b59bca3206695d56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d64e981f4d7545e7b59bca3206695d56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d64e981f4d7545e7b59bca3206695d56.jpg", "file_size": 24347, "is_delete": false, "file_type": 1, "original_file_name": "80055#土黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64e981f4d7545e7b59bca3206695d56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64e981f4d7545e7b59bca3206695d56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d64e981f4d7545e7b59bca3206695d56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d64e981f4d7545e7b59bca3206695d56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d64e981f4d7545e7b59bca3206695d56.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_AZJ4HN35edlyQXJdmHurfMj0w=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.282085+00 2025-12-09 10:14:44.282089+00 4308 0001-63FWF#V5曲线 SPMX-20240815299443 \N \N \N 1 \N [{"file_id": "b487fc0a-9da2-48b8-9f59-4f043c74c445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc953b9c4e664d2896bedb598ce95f7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc953b9c4e664d2896bedb598ce95f7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc953b9c4e664d2896bedb598ce95f7c.jpg", "file_size": 7081, "is_delete": false, "file_type": 1, "original_file_name": "0001-63FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc953b9c4e664d2896bedb598ce95f7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc953b9c4e664d2896bedb598ce95f7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc953b9c4e664d2896bedb598ce95f7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc953b9c4e664d2896bedb598ce95f7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc953b9c4e664d2896bedb598ce95f7c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8nZuJUf3SlNdkIyfE8UoRmkMvk=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.283242+00 2025-12-09 10:14:44.283246+00 4309 23-2101#A19袖子3XL SPMX-20240815299448 \N \N \N 1 \N [{"file_id": "f2363630-5a80-428f-8c88-223e8cbb9649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg", "file_size": 11108, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A19袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5ba82d9e4ab4996aaa5fa9a065e51fb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfxh3Z39V-G_g385KlpG9Uo64F0=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.284378+00 2025-12-09 10:14:44.284382+00 4310 HSH027FW#VS-D3 SPMX-20240815299439 \N \N \N 1 \N [{"file_id": "5f2c436f-0257-4d7e-bdd1-54afe7f239da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32dfe0977fba4a2293b85455aab95a13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32dfe0977fba4a2293b85455aab95a13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32dfe0977fba4a2293b85455aab95a13.jpg", "file_size": 18278, "is_delete": false, "file_type": 1, "original_file_name": "HSH027FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32dfe0977fba4a2293b85455aab95a13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32dfe0977fba4a2293b85455aab95a13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32dfe0977fba4a2293b85455aab95a13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32dfe0977fba4a2293b85455aab95a13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32dfe0977fba4a2293b85455aab95a13.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTKeDx3kAVxvTmBfL6AyQb6tFoI=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.285553+00 2025-12-09 10:14:44.285558+00 4311 C23109#紫色L SPMX-20240815299449 \N \N \N 1 \N [{"file_id": "3f2383b8-e435-406a-94dc-305e947da430", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71897d5d884f43daad92c22ab1e32c98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71897d5d884f43daad92c22ab1e32c98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71897d5d884f43daad92c22ab1e32c98.jpg", "file_size": 16973, "is_delete": false, "file_type": 1, "original_file_name": "C23109#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71897d5d884f43daad92c22ab1e32c98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71897d5d884f43daad92c22ab1e32c98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71897d5d884f43daad92c22ab1e32c98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71897d5d884f43daad92c22ab1e32c98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71897d5d884f43daad92c22ab1e32c98.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAeIYGCpsoZF4jXhZzssZsAqLt4=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.286708+00 2025-12-09 10:14:44.286712+00 4312 FHTZ-001-1-批布 SPMX-20240815299435 \N \N \N 1 \N [{"file_id": "770f0c7c-3f9f-4838-937e-ea113e98a4c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb847bcdf29d43fc8e33186363960ebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb847bcdf29d43fc8e33186363960ebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb847bcdf29d43fc8e33186363960ebc.jpg", "file_size": 23614, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb847bcdf29d43fc8e33186363960ebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb847bcdf29d43fc8e33186363960ebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb847bcdf29d43fc8e33186363960ebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb847bcdf29d43fc8e33186363960ebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb847bcdf29d43fc8e33186363960ebc.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etZoey-jGJ2STy5EI4LdchS9ZGs=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.287868+00 2025-12-09 10:14:44.287871+00 4313 FHTZ-001-1 SPMX-20240815299446 \N \N \N 1 \N [{"file_id": "3ee7f77a-269b-415d-b2b2-aa289cd696c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "174a33d58c7041bfaf8a9a8e00910252.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "174a33d58c7041bfaf8a9a8e00910252.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "174a33d58c7041bfaf8a9a8e00910252.jpg", "file_size": 21443, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174a33d58c7041bfaf8a9a8e00910252.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174a33d58c7041bfaf8a9a8e00910252.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174a33d58c7041bfaf8a9a8e00910252.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/174a33d58c7041bfaf8a9a8e00910252.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/174a33d58c7041bfaf8a9a8e00910252.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFQvnOgbgOyjYV9YpZWzb-XmAYI=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.289021+00 2025-12-09 10:14:44.289025+00 4314 80053#短袖匹布 SPMX-20240815299440 \N \N \N 1 \N [{"file_id": "cea6bbe6-02a4-4cf8-b033-6dd440f66235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c98c5515ed540a0a2dc403f1f7ed063.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c98c5515ed540a0a2dc403f1f7ed063.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c98c5515ed540a0a2dc403f1f7ed063.jpg", "file_size": 23802, "is_delete": false, "file_type": 1, "original_file_name": "80053#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c98c5515ed540a0a2dc403f1f7ed063.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c98c5515ed540a0a2dc403f1f7ed063.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c98c5515ed540a0a2dc403f1f7ed063.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c98c5515ed540a0a2dc403f1f7ed063.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c98c5515ed540a0a2dc403f1f7ed063.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzZjfAJQz1nepdrPl1zeZvRSLoU=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.29017+00 2025-12-09 10:14:44.290174+00 4315 C23109#XL SPMX-20240815299438 \N \N \N 1 \N [{"file_id": "184ec8b7-e1d8-4d81-841e-4696178d68d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "204d71e588264eca8164675450b719c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "204d71e588264eca8164675450b719c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "204d71e588264eca8164675450b719c1.jpg", "file_size": 15248, "is_delete": false, "file_type": 1, "original_file_name": "C23109#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/204d71e588264eca8164675450b719c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/204d71e588264eca8164675450b719c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/204d71e588264eca8164675450b719c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/204d71e588264eca8164675450b719c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/204d71e588264eca8164675450b719c1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lPU24hL3Q7q1XmU4QTVKmh8dRp0=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.291333+00 2025-12-09 10:14:44.291337+00 4316 LZ1198#5号色 SPMX-20240815299444 \N \N \N 1 \N [{"file_id": "a1f43b1b-b387-4864-98a6-f0a30b3e3647", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bdd47231b9049a9941bf0d3831bf268.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bdd47231b9049a9941bf0d3831bf268.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bdd47231b9049a9941bf0d3831bf268.jpg", "file_size": 7236, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdd47231b9049a9941bf0d3831bf268.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdd47231b9049a9941bf0d3831bf268.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bdd47231b9049a9941bf0d3831bf268.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bdd47231b9049a9941bf0d3831bf268.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bdd47231b9049a9941bf0d3831bf268.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:412ZRgpbgBwn0Yz6aY7FTz5XS2U=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.292508+00 2025-12-09 10:14:44.292512+00 4317 1045-1FWF#上身黄色L-番禺调色 SPMX-20240815299442 \N \N \N 1 \N [{"file_id": "30e0b3ff-b953-4457-b38a-2af5785cbb2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6085ff54d3f04038abdc4bd9c1f299de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6085ff54d3f04038abdc4bd9c1f299de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6085ff54d3f04038abdc4bd9c1f299de.jpg", "file_size": 22059, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身黄色L-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085ff54d3f04038abdc4bd9c1f299de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085ff54d3f04038abdc4bd9c1f299de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6085ff54d3f04038abdc4bd9c1f299de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6085ff54d3f04038abdc4bd9c1f299de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6085ff54d3f04038abdc4bd9c1f299de.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2IGqsuxPelkMvvUO9f30w-CGdM=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.29387+00 2025-12-09 10:14:44.293876+00 4318 HSH028FW#VS-D3 SPMX-20240815299450 \N \N \N 1 \N [{"file_id": "a7b50e20-c413-4fad-80b7-2709b7ab0ea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2999e5a31a9745a0949beb475909706e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2999e5a31a9745a0949beb475909706e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2999e5a31a9745a0949beb475909706e.jpg", "file_size": 16229, "is_delete": false, "file_type": 1, "original_file_name": "HSH028FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2999e5a31a9745a0949beb475909706e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2999e5a31a9745a0949beb475909706e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2999e5a31a9745a0949beb475909706e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2999e5a31a9745a0949beb475909706e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2999e5a31a9745a0949beb475909706e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-HiiPm1MFORd8V7WkVlD52dxKg=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.295177+00 2025-12-09 10:14:44.295182+00 4319 1045-1FWF#上身黄色XL-番禺调色 SPMX-20240815299452 \N \N \N 1 \N [{"file_id": "9f902636-c901-4bfd-8b30-3089e7d5ae8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a17d01822b6f4e0ca46073fdcaa2541f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a17d01822b6f4e0ca46073fdcaa2541f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a17d01822b6f4e0ca46073fdcaa2541f.jpg", "file_size": 22640, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#上身黄色XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17d01822b6f4e0ca46073fdcaa2541f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17d01822b6f4e0ca46073fdcaa2541f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17d01822b6f4e0ca46073fdcaa2541f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a17d01822b6f4e0ca46073fdcaa2541f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a17d01822b6f4e0ca46073fdcaa2541f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Q8Kk9bNfVKpGEA3a4QlH6hT3CQ=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.296395+00 2025-12-09 10:14:44.2964+00 4320 JS0974-A15#红色 SPMX-20240815299436 \N \N \N 1 \N [{"file_id": "224eae8c-44dc-41f3-9796-3e43a8326754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1c25bb0bb374a67bf8e567716c3983f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1c25bb0bb374a67bf8e567716c3983f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1c25bb0bb374a67bf8e567716c3983f.jpg", "file_size": 72564, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A15#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c25bb0bb374a67bf8e567716c3983f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c25bb0bb374a67bf8e567716c3983f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c25bb0bb374a67bf8e567716c3983f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1c25bb0bb374a67bf8e567716c3983f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1c25bb0bb374a67bf8e567716c3983f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jm_gso1kLba3u9qpEMqBm1ooF2w=", "createTime": "2024-08-15 14:40:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.2976+00 2025-12-09 10:14:44.297604+00 4321 23-2101#A19前后片4XL SPMX-20240815299437 \N \N \N 1 \N [{"file_id": "73b8976c-1995-4aa2-b169-a377ac28dc54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "062592a30eba431994c84c4cc0aeb5ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "062592a30eba431994c84c4cc0aeb5ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "062592a30eba431994c84c4cc0aeb5ea.jpg", "file_size": 10485, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A19前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062592a30eba431994c84c4cc0aeb5ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062592a30eba431994c84c4cc0aeb5ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062592a30eba431994c84c4cc0aeb5ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/062592a30eba431994c84c4cc0aeb5ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/062592a30eba431994c84c4cc0aeb5ea.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRSlEWQKezNsquwU2U3wpVBmW2M=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.298782+00 2025-12-09 10:14:44.298787+00 4322 DH202201079T#5-10女童S SPMX-20240815299456 \N \N \N 1 \N [{"file_id": "4b24df4b-63d3-40c0-99d0-4648e4a1ccf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4030683da27643e385e41d4d251eae63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4030683da27643e385e41d4d251eae63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4030683da27643e385e41d4d251eae63.jpg", "file_size": 10830, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-10女童S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4030683da27643e385e41d4d251eae63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4030683da27643e385e41d4d251eae63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4030683da27643e385e41d4d251eae63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4030683da27643e385e41d4d251eae63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4030683da27643e385e41d4d251eae63.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_u0EppltakrUf1k2Ya8hpYZMpg=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.29992+00 2025-12-09 10:14:44.299924+00 4323 1045-1FWF#下摆彩兰4XL-番禺调色 SPMX-20240815299463 \N \N \N 1 \N [{"file_id": "9e054dd8-57e9-4d15-9238-607f79a45c21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "507a5ca8737044059fafddb8b843789d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "507a5ca8737044059fafddb8b843789d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "507a5ca8737044059fafddb8b843789d.jpg", "file_size": 16058, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#下摆彩兰4XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507a5ca8737044059fafddb8b843789d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507a5ca8737044059fafddb8b843789d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507a5ca8737044059fafddb8b843789d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/507a5ca8737044059fafddb8b843789d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/507a5ca8737044059fafddb8b843789d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_4WjdGKOM4Vz-bYBkh-02d0iFM=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.301093+00 2025-12-09 10:14:44.301098+00 4324 23-2101#A19袖子4XL SPMX-20240815299458 \N \N \N 1 \N [{"file_id": "627d02ed-c666-4caf-959b-16263264092e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28f617229e5b4ad38c7622b6320f4fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28f617229e5b4ad38c7622b6320f4fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28f617229e5b4ad38c7622b6320f4fad.jpg", "file_size": 9591, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A19袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f617229e5b4ad38c7622b6320f4fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f617229e5b4ad38c7622b6320f4fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28f617229e5b4ad38c7622b6320f4fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28f617229e5b4ad38c7622b6320f4fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28f617229e5b4ad38c7622b6320f4fad.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJQoE1H_epgSKpdRHqIezV-FZ0c=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.302228+00 2025-12-09 10:14:44.302232+00 4325 JS0974-A15#黄色 SPMX-20240815299459 \N \N \N 1 \N [{"file_id": "11b24f21-3907-44fa-8c29-26fc15357f96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1be5e5839a44e3491ced9c5e2f61c11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1be5e5839a44e3491ced9c5e2f61c11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1be5e5839a44e3491ced9c5e2f61c11.jpg", "file_size": 76607, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A15#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1be5e5839a44e3491ced9c5e2f61c11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1be5e5839a44e3491ced9c5e2f61c11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1be5e5839a44e3491ced9c5e2f61c11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1be5e5839a44e3491ced9c5e2f61c11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1be5e5839a44e3491ced9c5e2f61c11.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3tpGdRCc8aXaqCh5HUBvoXuWCw=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.303352+00 2025-12-09 10:14:44.303356+00 4326 HSH029FW#VS-D3 SPMX-20240815299460 \N \N \N 1 \N [{"file_id": "e4a9a328-8ce7-4f7d-bbb5-d1eeab8322e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c984219bdea74692908630c0b83792b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c984219bdea74692908630c0b83792b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c984219bdea74692908630c0b83792b9.jpg", "file_size": 21902, "is_delete": false, "file_type": 1, "original_file_name": "HSH029FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984219bdea74692908630c0b83792b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984219bdea74692908630c0b83792b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984219bdea74692908630c0b83792b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c984219bdea74692908630c0b83792b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c984219bdea74692908630c0b83792b9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_jTJQlFi8r3Q-DhPKQVCHu7Rw4=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.304467+00 2025-12-09 10:14:44.304471+00 4327 C23109#紫色M SPMX-20240815299461 \N \N \N 1 \N [{"file_id": "dd79071f-e027-43de-b42d-9dbf72a2b261", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89202cda0f5b436f81ab6967da038713.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89202cda0f5b436f81ab6967da038713.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89202cda0f5b436f81ab6967da038713.jpg", "file_size": 18092, "is_delete": false, "file_type": 1, "original_file_name": "C23109#紫色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89202cda0f5b436f81ab6967da038713.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89202cda0f5b436f81ab6967da038713.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89202cda0f5b436f81ab6967da038713.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89202cda0f5b436f81ab6967da038713.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89202cda0f5b436f81ab6967da038713.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JoY7t-xmEldi1lCOr9tp_RvhZ9k=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.305622+00 2025-12-09 10:14:44.305626+00 4328 LHJ9178#黄底彩蓝条 SPMX-20240815299453 \N \N \N 1 \N [{"file_id": "1c69f089-af0a-4200-b20b-0c92999fc0b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3c6a165521e4aa68ac24c86bc5a4b5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3c6a165521e4aa68ac24c86bc5a4b5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3c6a165521e4aa68ac24c86bc5a4b5c.jpg", "file_size": 13783, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9178#黄底彩蓝条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c6a165521e4aa68ac24c86bc5a4b5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c6a165521e4aa68ac24c86bc5a4b5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c6a165521e4aa68ac24c86bc5a4b5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3c6a165521e4aa68ac24c86bc5a4b5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3c6a165521e4aa68ac24c86bc5a4b5c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Un0vrSUZezX6TqaLTq_iHYvRV48=", "createTime": "2024-08-15 14:40:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.306759+00 2025-12-09 10:14:44.306763+00 4329 LZ1198#6号色 SPMX-20240815299455 \N \N \N 1 \N [{"file_id": "09fb0e03-5ef9-41c7-a8e9-c0816822584d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "675550e3ba9d4797ad3ecfb64ede3684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "675550e3ba9d4797ad3ecfb64ede3684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "675550e3ba9d4797ad3ecfb64ede3684.jpg", "file_size": 7452, "is_delete": false, "file_type": 1, "original_file_name": "LZ1198#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675550e3ba9d4797ad3ecfb64ede3684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675550e3ba9d4797ad3ecfb64ede3684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675550e3ba9d4797ad3ecfb64ede3684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/675550e3ba9d4797ad3ecfb64ede3684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/675550e3ba9d4797ad3ecfb64ede3684.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Tny0TJ1_P4VmMgyEuweOF-pAR0=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.307901+00 2025-12-09 10:14:44.307905+00 4330 0001-64FWF#V5曲线 SPMX-20240815299454 \N \N \N 1 \N [{"file_id": "cd624a46-b9d8-432d-8121-7c68de48d46b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f3a6b12fd21429fa843bea8c7993337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f3a6b12fd21429fa843bea8c7993337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f3a6b12fd21429fa843bea8c7993337.jpg", "file_size": 9846, "is_delete": false, "file_type": 1, "original_file_name": "0001-64FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a6b12fd21429fa843bea8c7993337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a6b12fd21429fa843bea8c7993337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a6b12fd21429fa843bea8c7993337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f3a6b12fd21429fa843bea8c7993337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f3a6b12fd21429fa843bea8c7993337.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYbUPuOXeRWxM0fhRDiyM60P-2I=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.309014+00 2025-12-09 10:14:44.309018+00 4331 FHTZ-001-2-批布 SPMX-20240815299457 \N \N \N 1 \N [{"file_id": "7233bede-c8a0-4fe8-b0e7-66ff97ef9aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b02b89d5c81a46eab94b1cab224d9bc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b02b89d5c81a46eab94b1cab224d9bc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b02b89d5c81a46eab94b1cab224d9bc0.jpg", "file_size": 28391, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02b89d5c81a46eab94b1cab224d9bc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02b89d5c81a46eab94b1cab224d9bc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02b89d5c81a46eab94b1cab224d9bc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b02b89d5c81a46eab94b1cab224d9bc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b02b89d5c81a46eab94b1cab224d9bc0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-6Hs9AN6GTdiXpsGXrHVQwQG-Q=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.310163+00 2025-12-09 10:14:44.310167+00 4332 80055#彩蓝色 SPMX-20240815299462 \N \N \N 1 \N [{"file_id": "3bc9ef01-2386-415c-ac3a-c8235f086d9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d0945741dfe4ef088eabbde0c6b06e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d0945741dfe4ef088eabbde0c6b06e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d0945741dfe4ef088eabbde0c6b06e6.jpg", "file_size": 22596, "is_delete": false, "file_type": 1, "original_file_name": "80055#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0945741dfe4ef088eabbde0c6b06e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0945741dfe4ef088eabbde0c6b06e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0945741dfe4ef088eabbde0c6b06e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d0945741dfe4ef088eabbde0c6b06e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d0945741dfe4ef088eabbde0c6b06e6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzKf9R6Io59Ep9bcjHZkVUt-eAk=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.311284+00 2025-12-09 10:14:44.311288+00 4333 LZ1199#上身1号色 SPMX-20240815299466 \N \N \N 1 \N [{"file_id": "b56eaf90-a9c4-40ce-b215-fccd9cba0cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6965dfedba404ed797be7163bcaf646a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6965dfedba404ed797be7163bcaf646a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6965dfedba404ed797be7163bcaf646a.jpg", "file_size": 15278, "is_delete": false, "file_type": 1, "original_file_name": "LZ1199#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6965dfedba404ed797be7163bcaf646a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6965dfedba404ed797be7163bcaf646a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6965dfedba404ed797be7163bcaf646a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6965dfedba404ed797be7163bcaf646a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6965dfedba404ed797be7163bcaf646a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rp7H4iq77qhO3siVD3GfUO1ZYjE=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.312401+00 2025-12-09 10:14:44.312405+00 4334 23-2101#A19领子通用 SPMX-20240815299469 \N \N \N 1 \N [{"file_id": "c34b2043-482b-48bf-85de-796c9f820424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ab453db81774a26813d8f2ec78a6a04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ab453db81774a26813d8f2ec78a6a04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ab453db81774a26813d8f2ec78a6a04.jpg", "file_size": 8399, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A19领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab453db81774a26813d8f2ec78a6a04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab453db81774a26813d8f2ec78a6a04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab453db81774a26813d8f2ec78a6a04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ab453db81774a26813d8f2ec78a6a04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ab453db81774a26813d8f2ec78a6a04.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q20E-cMQbGvgD8J5zP9nc2euXG8=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.313525+00 2025-12-09 10:14:44.313529+00 4335 JS0974-A16#LWQ15 SPMX-20240815299470 \N \N \N 1 \N [{"file_id": "f040535d-bd00-4dcd-b7fc-1a53f7bbf850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41caac722484463a8b64ca1b899ddcf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41caac722484463a8b64ca1b899ddcf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41caac722484463a8b64ca1b899ddcf9.jpg", "file_size": 73996, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41caac722484463a8b64ca1b899ddcf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41caac722484463a8b64ca1b899ddcf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41caac722484463a8b64ca1b899ddcf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41caac722484463a8b64ca1b899ddcf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41caac722484463a8b64ca1b899ddcf9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERin44OM2egaTjdQMs93DjvJaaM=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.314653+00 2025-12-09 10:14:44.314657+00 4336 80055#枣红色 SPMX-20240815299474 \N \N \N 1 \N [{"file_id": "3830c056-3044-44c5-b834-c59d26ea9142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77d71389f7ea476394dcf81bb718e4c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77d71389f7ea476394dcf81bb718e4c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77d71389f7ea476394dcf81bb718e4c9.jpg", "file_size": 22308, "is_delete": false, "file_type": 1, "original_file_name": "80055#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d71389f7ea476394dcf81bb718e4c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d71389f7ea476394dcf81bb718e4c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d71389f7ea476394dcf81bb718e4c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77d71389f7ea476394dcf81bb718e4c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77d71389f7ea476394dcf81bb718e4c9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzvHV3vnMzhwRbdMPsfrMx7gC8E=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.315771+00 2025-12-09 10:14:44.315775+00 4337 DH202201079T#5-13女童M SPMX-20240815299467 \N \N \N 1 \N [{"file_id": "cfdab5cf-bb17-4d33-a504-6a4c71f3bf9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f55b3d04c4314c6eb7ea8478e01e5bdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f55b3d04c4314c6eb7ea8478e01e5bdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f55b3d04c4314c6eb7ea8478e01e5bdb.jpg", "file_size": 9816, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-13女童M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55b3d04c4314c6eb7ea8478e01e5bdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55b3d04c4314c6eb7ea8478e01e5bdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55b3d04c4314c6eb7ea8478e01e5bdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f55b3d04c4314c6eb7ea8478e01e5bdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f55b3d04c4314c6eb7ea8478e01e5bdb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kI-Ti2K17ei4AUowYXPN46-PUk=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.316901+00 2025-12-09 10:14:44.316905+00 4338 FHTZ-001-2 SPMX-20240815299468 \N \N \N 1 \N [{"file_id": "6b76fcf8-8f72-4d06-b977-a8923f5a0a22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc8e178b6eb6487798e0c3b2c16f0c4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc8e178b6eb6487798e0c3b2c16f0c4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc8e178b6eb6487798e0c3b2c16f0c4d.jpg", "file_size": 21334, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc8e178b6eb6487798e0c3b2c16f0c4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc8e178b6eb6487798e0c3b2c16f0c4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc8e178b6eb6487798e0c3b2c16f0c4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc8e178b6eb6487798e0c3b2c16f0c4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc8e178b6eb6487798e0c3b2c16f0c4d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RzpAvdtaMyOGejxOr4I1l3HxcX4=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.318015+00 2025-12-09 10:14:44.318019+00 4339 0001-64FWF#V5曲线番禺调色 SPMX-20240815299465 \N \N \N 1 \N [{"file_id": "4368bba1-5dd9-441e-9919-ff856f9ecc13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac3c315943434d0cbe9232ed453d782a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac3c315943434d0cbe9232ed453d782a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac3c315943434d0cbe9232ed453d782a.jpg", "file_size": 11074, "is_delete": false, "file_type": 1, "original_file_name": "0001-64FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c315943434d0cbe9232ed453d782a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c315943434d0cbe9232ed453d782a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c315943434d0cbe9232ed453d782a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac3c315943434d0cbe9232ed453d782a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac3c315943434d0cbe9232ed453d782a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAvNW1LReWycNRgX-WPj-g5K3tc=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.320283+00 2025-12-09 10:14:44.320287+00 4341 LHJ9183#25#土黄 SPMX-20240815299464 \N \N \N 1 \N [{"file_id": "dca15b8a-86a3-4691-ac3f-a9a2ac29539b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfbf51d23d46440a84e19f5bfdc6ed43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfbf51d23d46440a84e19f5bfdc6ed43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfbf51d23d46440a84e19f5bfdc6ed43.jpg", "file_size": 8860, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9183#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbf51d23d46440a84e19f5bfdc6ed43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbf51d23d46440a84e19f5bfdc6ed43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbf51d23d46440a84e19f5bfdc6ed43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfbf51d23d46440a84e19f5bfdc6ed43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfbf51d23d46440a84e19f5bfdc6ed43.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wt-F5t-3yKDj7vMVCR94JySV-zU=", "createTime": "2024-08-15 14:40:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.32141+00 2025-12-09 10:14:44.321413+00 4342 C23109#紫色S SPMX-20240815299471 \N \N \N 1 \N [{"file_id": "4ac89593-2f6f-4853-bafc-bb77f63cc7f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f80be69b59d4302bd9b724ef3bc9475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f80be69b59d4302bd9b724ef3bc9475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f80be69b59d4302bd9b724ef3bc9475.jpg", "file_size": 18201, "is_delete": false, "file_type": 1, "original_file_name": "C23109#紫色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f80be69b59d4302bd9b724ef3bc9475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f80be69b59d4302bd9b724ef3bc9475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f80be69b59d4302bd9b724ef3bc9475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f80be69b59d4302bd9b724ef3bc9475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f80be69b59d4302bd9b724ef3bc9475.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sQYWZqvX1XNyrX950mLR7wIfWs=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.319154+00 2025-12-09 10:14:44.319158+00 4340 1045-1FWF#下摆玫红4XL-番禺调色 SPMX-20240815299473 \N \N \N 1 \N [{"file_id": "64703db8-d0b0-48d2-9ef0-a1016c923916", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "018dffc3ab814d55bcea6b56dadfde9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "018dffc3ab814d55bcea6b56dadfde9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "018dffc3ab814d55bcea6b56dadfde9b.jpg", "file_size": 15907, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#下摆玫红4XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018dffc3ab814d55bcea6b56dadfde9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018dffc3ab814d55bcea6b56dadfde9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018dffc3ab814d55bcea6b56dadfde9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/018dffc3ab814d55bcea6b56dadfde9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/018dffc3ab814d55bcea6b56dadfde9b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TA_dCDBv8vBew4BqdT9uCI45Oiw=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.323873+00 2025-12-09 10:14:44.323877+00 4343 LHJ9191#10#宝兰 SPMX-20240815299475 \N \N \N 1 \N [{"file_id": "4dfc255b-3afe-4b30-9230-5ae10994df63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "448f5c1db7034e62a1e897b192c23079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "448f5c1db7034e62a1e897b192c23079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "448f5c1db7034e62a1e897b192c23079.jpg", "file_size": 13361, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#10#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448f5c1db7034e62a1e897b192c23079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448f5c1db7034e62a1e897b192c23079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448f5c1db7034e62a1e897b192c23079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/448f5c1db7034e62a1e897b192c23079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/448f5c1db7034e62a1e897b192c23079.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bd1fBhKxu7K3hgumZP29_FQqDo4=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.325024+00 2025-12-09 10:14:44.325028+00 4344 LHJ9191#14#粉 SPMX-20240815299485 \N \N \N 1 \N [{"file_id": "eb0f1725-002d-4dba-91a7-c73b36f922f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9680c8649d5d4c1cbc1f022977ee9be5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9680c8649d5d4c1cbc1f022977ee9be5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9680c8649d5d4c1cbc1f022977ee9be5.jpg", "file_size": 14169, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#14#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9680c8649d5d4c1cbc1f022977ee9be5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9680c8649d5d4c1cbc1f022977ee9be5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9680c8649d5d4c1cbc1f022977ee9be5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9680c8649d5d4c1cbc1f022977ee9be5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9680c8649d5d4c1cbc1f022977ee9be5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GixA9XBEPCHrn14onKk9jDkjwTQ=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.326162+00 2025-12-09 10:14:44.326166+00 4345 0001-65FWF#V5曲线 SPMX-20240815299476 \N \N \N 1 \N [{"file_id": "52c8f074-df87-461d-8637-3b6faa105883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d8fe0729e6148699537ae085fab0a31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d8fe0729e6148699537ae085fab0a31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d8fe0729e6148699537ae085fab0a31.jpg", "file_size": 15683, "is_delete": false, "file_type": 1, "original_file_name": "0001-65FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8fe0729e6148699537ae085fab0a31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8fe0729e6148699537ae085fab0a31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8fe0729e6148699537ae085fab0a31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d8fe0729e6148699537ae085fab0a31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d8fe0729e6148699537ae085fab0a31.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_I2AYJVgw4gKkQ3NlDFeMV251wA=", "createTime": "2024-08-15 14:40:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.327268+00 2025-12-09 10:14:44.327272+00 4346 DH202201079T#5-13女童S SPMX-20240815299477 \N \N \N 1 \N [{"file_id": "bfb83112-cc82-446d-a6c0-d6b81fc51711", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5061a92922fa4a5ebeb5e851da938748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5061a92922fa4a5ebeb5e851da938748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5061a92922fa4a5ebeb5e851da938748.jpg", "file_size": 10938, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-13女童S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061a92922fa4a5ebeb5e851da938748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061a92922fa4a5ebeb5e851da938748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061a92922fa4a5ebeb5e851da938748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5061a92922fa4a5ebeb5e851da938748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5061a92922fa4a5ebeb5e851da938748.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWjznbGK2J3SZpAj38USnTXNljQ=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.329559+00 2025-12-09 10:14:44.329562+00 4348 LZ1199#上身3号色 SPMX-20240815299488 \N \N \N 1 \N [{"file_id": "242a013f-f561-40d5-8379-52e892b551c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51c7ec85d5c7440ca42da6fd2adeb99f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51c7ec85d5c7440ca42da6fd2adeb99f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51c7ec85d5c7440ca42da6fd2adeb99f.jpg", "file_size": 14862, "is_delete": false, "file_type": 1, "original_file_name": "LZ1199#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c7ec85d5c7440ca42da6fd2adeb99f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c7ec85d5c7440ca42da6fd2adeb99f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c7ec85d5c7440ca42da6fd2adeb99f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51c7ec85d5c7440ca42da6fd2adeb99f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51c7ec85d5c7440ca42da6fd2adeb99f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rRo_yCmiRCHZV3YUw1DuzK5a9iw=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.330679+00 2025-12-09 10:14:44.330683+00 4349 JS0974-A16#RC23 SPMX-20240815299482 \N \N \N 1 \N [{"file_id": "6884467a-e4fd-4329-ba4b-4b47b1a0092b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89a1d9e35cb148e6b9b1c9c5d91339b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89a1d9e35cb148e6b9b1c9c5d91339b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89a1d9e35cb148e6b9b1c9c5d91339b5.jpg", "file_size": 57390, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a1d9e35cb148e6b9b1c9c5d91339b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a1d9e35cb148e6b9b1c9c5d91339b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a1d9e35cb148e6b9b1c9c5d91339b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89a1d9e35cb148e6b9b1c9c5d91339b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89a1d9e35cb148e6b9b1c9c5d91339b5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYAXQCq4TDXkgpD7Q7g7gPCA_pA=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.331833+00 2025-12-09 10:14:44.331837+00 4350 LZ1199#上身2号色 SPMX-20240815299478 \N \N \N 1 \N [{"file_id": "5b47a4e4-cffa-47c4-a04b-d19b70883da9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89f86de7aa0e4c44b92317a7d183c211.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89f86de7aa0e4c44b92317a7d183c211.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89f86de7aa0e4c44b92317a7d183c211.jpg", "file_size": 16238, "is_delete": false, "file_type": 1, "original_file_name": "LZ1199#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f86de7aa0e4c44b92317a7d183c211.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f86de7aa0e4c44b92317a7d183c211.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f86de7aa0e4c44b92317a7d183c211.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89f86de7aa0e4c44b92317a7d183c211.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89f86de7aa0e4c44b92317a7d183c211.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xq9pqFisnKYiJKDqIUezgb8Bz1I=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.332988+00 2025-12-09 10:14:44.332992+00 4351 FHTZ-001-3-批布 SPMX-20240815299479 \N \N \N 1 \N [{"file_id": "16430ae8-44e7-4d32-9691-7573f07f2f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ac8783f7fbf4228949c574db9a75c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ac8783f7fbf4228949c574db9a75c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ac8783f7fbf4228949c574db9a75c04.jpg", "file_size": 27889, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac8783f7fbf4228949c574db9a75c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac8783f7fbf4228949c574db9a75c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac8783f7fbf4228949c574db9a75c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ac8783f7fbf4228949c574db9a75c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ac8783f7fbf4228949c574db9a75c04.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CaANCnTGnWdiN72m5Xde_fSVHs=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.334128+00 2025-12-09 10:14:44.334132+00 4352 C23109#紫色XL SPMX-20240815299481 \N \N \N 1 \N [{"file_id": "3664ad82-21d4-46a6-bb7d-2a99637dcc50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9be47d66107445bc953c55a5d12e1cee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9be47d66107445bc953c55a5d12e1cee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9be47d66107445bc953c55a5d12e1cee.jpg", "file_size": 16352, "is_delete": false, "file_type": 1, "original_file_name": "C23109#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be47d66107445bc953c55a5d12e1cee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be47d66107445bc953c55a5d12e1cee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be47d66107445bc953c55a5d12e1cee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9be47d66107445bc953c55a5d12e1cee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9be47d66107445bc953c55a5d12e1cee.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELf3Zs6xH-wbsNRIH-nj0FQSTZs=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.335256+00 2025-12-09 10:14:44.335261+00 4353 23-2101#A1前后片3XL SPMX-20240815299480 \N \N \N 1 \N [{"file_id": "a3d4b12a-7564-44dc-aae3-bec98f316dbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5335588569b941e6a71e2102f4932166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5335588569b941e6a71e2102f4932166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5335588569b941e6a71e2102f4932166.jpg", "file_size": 9729, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5335588569b941e6a71e2102f4932166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5335588569b941e6a71e2102f4932166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5335588569b941e6a71e2102f4932166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5335588569b941e6a71e2102f4932166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5335588569b941e6a71e2102f4932166.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvgggPqsPQGiaBlz6GOYUN6o-S0=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.336385+00 2025-12-09 10:14:44.336389+00 4354 1045-1FWF#下摆黄色4XL-番禺调色 SPMX-20240815299484 \N \N \N 1 \N [{"file_id": "b2725c24-35bf-4e3f-b912-b372bf625050", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5eec6f34862d4eea9f27f1e119d86680.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5eec6f34862d4eea9f27f1e119d86680.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5eec6f34862d4eea9f27f1e119d86680.jpg", "file_size": 15689, "is_delete": false, "file_type": 1, "original_file_name": "1045-1FWF#下摆黄色4XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eec6f34862d4eea9f27f1e119d86680.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eec6f34862d4eea9f27f1e119d86680.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eec6f34862d4eea9f27f1e119d86680.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5eec6f34862d4eea9f27f1e119d86680.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5eec6f34862d4eea9f27f1e119d86680.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22HarD_AAHeefJNSAtCrdhbS538=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.33755+00 2025-12-09 10:14:44.337554+00 4355 HSH031FW#VS-D3 SPMX-20240815299483 \N \N \N 1 \N [{"file_id": "6dcd0518-b69f-49a5-ab12-63ff2297106f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43891fd28b64468b97f3f6af775c59d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43891fd28b64468b97f3f6af775c59d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43891fd28b64468b97f3f6af775c59d0.jpg", "file_size": 17103, "is_delete": false, "file_type": 1, "original_file_name": "HSH031FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43891fd28b64468b97f3f6af775c59d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43891fd28b64468b97f3f6af775c59d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43891fd28b64468b97f3f6af775c59d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43891fd28b64468b97f3f6af775c59d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43891fd28b64468b97f3f6af775c59d0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njEW0kvamCYjwTESFmdUo5tEY8Y=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.328418+00 2025-12-09 10:14:44.328422+00 4347 80055#桔红色 SPMX-20240815299487 \N \N \N 1 \N [{"file_id": "9d60650d-6816-4152-a091-722ef77eb97d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74efe6b33de64c91b0645af60ed9f22f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74efe6b33de64c91b0645af60ed9f22f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74efe6b33de64c91b0645af60ed9f22f.jpg", "file_size": 22909, "is_delete": false, "file_type": 1, "original_file_name": "80055#桔红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74efe6b33de64c91b0645af60ed9f22f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74efe6b33de64c91b0645af60ed9f22f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74efe6b33de64c91b0645af60ed9f22f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74efe6b33de64c91b0645af60ed9f22f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74efe6b33de64c91b0645af60ed9f22f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dDmmybW6RffuKH8p-aJ9nM3ljgo=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.339978+00 2025-12-09 10:14:44.339983+00 4356 DH202201079T#5-9女童M SPMX-20240815299489 \N \N \N 1 \N [{"file_id": "83aeb829-3a1a-47c9-b2c3-f85cf1bb7619", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ab4f0b9716d47d089dec9e54e196eac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ab4f0b9716d47d089dec9e54e196eac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ab4f0b9716d47d089dec9e54e196eac.jpg", "file_size": 9786, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-9女童M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab4f0b9716d47d089dec9e54e196eac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab4f0b9716d47d089dec9e54e196eac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab4f0b9716d47d089dec9e54e196eac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ab4f0b9716d47d089dec9e54e196eac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ab4f0b9716d47d089dec9e54e196eac.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ih03Adt7XnwLWAOxcddNmohb9Lk=", "createTime": "2024-08-15 14:40:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.341136+00 2025-12-09 10:14:44.34114+00 4357 DH202201079T#5-9女童S SPMX-20240815299500 \N \N \N 1 \N [{"file_id": "b933f7f0-c41d-4ed5-b3d0-1946d345c991", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2678dfd717d4c019c54f053e8c7d623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2678dfd717d4c019c54f053e8c7d623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2678dfd717d4c019c54f053e8c7d623.jpg", "file_size": 10974, "is_delete": false, "file_type": 1, "original_file_name": "DH202201079T#5-9女童S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2678dfd717d4c019c54f053e8c7d623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2678dfd717d4c019c54f053e8c7d623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2678dfd717d4c019c54f053e8c7d623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2678dfd717d4c019c54f053e8c7d623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2678dfd717d4c019c54f053e8c7d623.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvrsfr_3n4x3HsND_hVuAaiwhBQ=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.34227+00 2025-12-09 10:14:44.342274+00 4358 FHTZ-001-3 SPMX-20240815299490 \N \N \N 1 \N [{"file_id": "d5f9321d-db5e-4dfa-9361-b6f1acc2bdae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef8cecffa7d543bc81176f1b625dbe5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef8cecffa7d543bc81176f1b625dbe5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef8cecffa7d543bc81176f1b625dbe5c.jpg", "file_size": 21341, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8cecffa7d543bc81176f1b625dbe5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8cecffa7d543bc81176f1b625dbe5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8cecffa7d543bc81176f1b625dbe5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef8cecffa7d543bc81176f1b625dbe5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef8cecffa7d543bc81176f1b625dbe5c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqJAYDDnslkQYS4lx_nG7PSFQI0=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.343408+00 2025-12-09 10:14:44.343413+00 4359 JS0974-A16#净色 SPMX-20240815299493 \N \N \N 1 \N [{"file_id": "a44f1c63-2cd9-4eaf-92d9-fa2dc5716ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b291ad289daf4d9b8e6da72227b7b70f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b291ad289daf4d9b8e6da72227b7b70f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b291ad289daf4d9b8e6da72227b7b70f.jpg", "file_size": 13397, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b291ad289daf4d9b8e6da72227b7b70f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b291ad289daf4d9b8e6da72227b7b70f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b291ad289daf4d9b8e6da72227b7b70f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b291ad289daf4d9b8e6da72227b7b70f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b291ad289daf4d9b8e6da72227b7b70f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1uIKkDxRNYfh_vnquJTcTXkjRW8=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.344519+00 2025-12-09 10:14:44.344522+00 4360 HSH032FW#VS-D3 SPMX-20240815299494 \N \N \N 1 \N [{"file_id": "e97a4234-bc65-4ae5-966d-f9a5284add90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2124bbf6f3a44ce5b13ed241bf4af7e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2124bbf6f3a44ce5b13ed241bf4af7e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2124bbf6f3a44ce5b13ed241bf4af7e2.jpg", "file_size": 17288, "is_delete": false, "file_type": 1, "original_file_name": "HSH032FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2124bbf6f3a44ce5b13ed241bf4af7e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2124bbf6f3a44ce5b13ed241bf4af7e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2124bbf6f3a44ce5b13ed241bf4af7e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2124bbf6f3a44ce5b13ed241bf4af7e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2124bbf6f3a44ce5b13ed241bf4af7e2.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fanWy4OTM8gGuWaEhj7M27WKMHo=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.34564+00 2025-12-09 10:14:44.345645+00 4361 LZ1199#上身4号色 SPMX-20240815299497 \N \N \N 1 \N [{"file_id": "ccf695a4-c6f4-4e11-aad5-b562fae3cd32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dbcad7309ff4884a017bdbfd357fa16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dbcad7309ff4884a017bdbfd357fa16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dbcad7309ff4884a017bdbfd357fa16.jpg", "file_size": 14726, "is_delete": false, "file_type": 1, "original_file_name": "LZ1199#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dbcad7309ff4884a017bdbfd357fa16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dbcad7309ff4884a017bdbfd357fa16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dbcad7309ff4884a017bdbfd357fa16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dbcad7309ff4884a017bdbfd357fa16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dbcad7309ff4884a017bdbfd357fa16.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eJbU50LtStaEr94WROMLuc7dJQ=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.346774+00 2025-12-09 10:14:44.346778+00 4362 23-2101#A1前后片4XL SPMX-20240815299491 \N \N \N 1 \N [{"file_id": "eb8b7076-4c7e-4792-8997-a25f51c9d07e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87024af60c534875aa2b1795974a81fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87024af60c534875aa2b1795974a81fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87024af60c534875aa2b1795974a81fe.jpg", "file_size": 9899, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87024af60c534875aa2b1795974a81fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87024af60c534875aa2b1795974a81fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87024af60c534875aa2b1795974a81fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87024af60c534875aa2b1795974a81fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87024af60c534875aa2b1795974a81fe.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHttwGEUArOZmgDBrOKj4VbbAQA=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.347882+00 2025-12-09 10:14:44.347887+00 4363 C23109#绿色M SPMX-20240815299501 \N \N \N 1 \N [{"file_id": "455d33db-4235-40b3-aa40-300987cf0206", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5df81feddc947b1836ec744f64ba402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5df81feddc947b1836ec744f64ba402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5df81feddc947b1836ec744f64ba402.jpg", "file_size": 19060, "is_delete": false, "file_type": 1, "original_file_name": "C23109#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df81feddc947b1836ec744f64ba402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df81feddc947b1836ec744f64ba402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df81feddc947b1836ec744f64ba402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5df81feddc947b1836ec744f64ba402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5df81feddc947b1836ec744f64ba402.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvvP3G-mH5eU9U1KpnApte1IhFE=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.349008+00 2025-12-09 10:14:44.349012+00 4364 1045FWF#-1 SPMX-20240815299495 \N \N \N 1 \N [{"file_id": "f22bcc36-11b4-4125-85c8-5744a619db18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df4b8a5a54a745189ce58bb526e64e73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df4b8a5a54a745189ce58bb526e64e73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df4b8a5a54a745189ce58bb526e64e73.jpg", "file_size": 16718, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b8a5a54a745189ce58bb526e64e73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b8a5a54a745189ce58bb526e64e73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b8a5a54a745189ce58bb526e64e73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df4b8a5a54a745189ce58bb526e64e73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df4b8a5a54a745189ce58bb526e64e73.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmSq3vbSI8cNp8m_3vyVv98XBLk=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.350127+00 2025-12-09 10:14:44.350131+00 4365 0001-67FWF#V5曲线 SPMX-20240815299498 \N \N \N 1 \N [{"file_id": "44719bec-aa97-4504-b695-4f1daf070faa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cefe2a0563545f49d9923fbb2500cfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cefe2a0563545f49d9923fbb2500cfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cefe2a0563545f49d9923fbb2500cfb.jpg", "file_size": 15974, "is_delete": false, "file_type": 1, "original_file_name": "0001-67FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cefe2a0563545f49d9923fbb2500cfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cefe2a0563545f49d9923fbb2500cfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cefe2a0563545f49d9923fbb2500cfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cefe2a0563545f49d9923fbb2500cfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cefe2a0563545f49d9923fbb2500cfb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VST0xf9Ljz5ad_UHozh13ZqXL-I=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.351267+00 2025-12-09 10:14:44.351271+00 4366 C23109#绿色L SPMX-20240815299492 \N \N \N 1 \N [{"file_id": "7da677d1-b589-4e0a-a92c-3f1ea8ac7907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc22d49d9554b8286cc7e1a05994627.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc22d49d9554b8286cc7e1a05994627.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc22d49d9554b8286cc7e1a05994627.jpg", "file_size": 18398, "is_delete": false, "file_type": 1, "original_file_name": "C23109#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc22d49d9554b8286cc7e1a05994627.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc22d49d9554b8286cc7e1a05994627.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc22d49d9554b8286cc7e1a05994627.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc22d49d9554b8286cc7e1a05994627.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc22d49d9554b8286cc7e1a05994627.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjHvn_I37NhHwrycpVThe9Etp4U=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.352395+00 2025-12-09 10:14:44.3524+00 4367 LHJ9191#20#枣红 SPMX-20240815299496 \N \N \N 1 \N [{"file_id": "5807b1a4-d457-4c61-8f97-4dda5176cdff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c229b5d36684e91ba61c5519b08d6fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c229b5d36684e91ba61c5519b08d6fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c229b5d36684e91ba61c5519b08d6fd.jpg", "file_size": 13792, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c229b5d36684e91ba61c5519b08d6fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c229b5d36684e91ba61c5519b08d6fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c229b5d36684e91ba61c5519b08d6fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c229b5d36684e91ba61c5519b08d6fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c229b5d36684e91ba61c5519b08d6fd.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vig78WgbGiGqUoRS9Q7y98rMBrk=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.35352+00 2025-12-09 10:14:44.353524+00 4368 80055#短袖匹布 SPMX-20240815299499 \N \N \N 1 \N [{"file_id": "964b23f4-bd90-4a76-94bb-c072016aaea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4df0ac092adf4fdc8a0900c769e83863.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4df0ac092adf4fdc8a0900c769e83863.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4df0ac092adf4fdc8a0900c769e83863.jpg", "file_size": 23197, "is_delete": false, "file_type": 1, "original_file_name": "80055#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df0ac092adf4fdc8a0900c769e83863.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df0ac092adf4fdc8a0900c769e83863.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df0ac092adf4fdc8a0900c769e83863.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4df0ac092adf4fdc8a0900c769e83863.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4df0ac092adf4fdc8a0900c769e83863.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ClnxJqf-l55Ge_CtrbP4yayDDZQ=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.354648+00 2025-12-09 10:14:44.354653+00 4369 23-2101#A1袖子3XL SPMX-20240815299502 \N \N \N 1 \N [{"file_id": "7c3d74d2-1678-469b-9f95-a186864d7525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d31434a80cf437bb5b687ad76a075eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d31434a80cf437bb5b687ad76a075eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d31434a80cf437bb5b687ad76a075eb.jpg", "file_size": 9837, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A1袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d31434a80cf437bb5b687ad76a075eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d31434a80cf437bb5b687ad76a075eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d31434a80cf437bb5b687ad76a075eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d31434a80cf437bb5b687ad76a075eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d31434a80cf437bb5b687ad76a075eb.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ojZxE87gG-VNv5Zy0JJLo6ifo8A=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.355795+00 2025-12-09 10:14:44.355799+00 4370 FHTZ-001-4-批布 SPMX-20240815299503 \N \N \N 1 \N [{"file_id": "e8c05a77-b11c-48a8-b99e-0a9086649deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d14ed29cd0f841be86b7c61c7f671402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d14ed29cd0f841be86b7c61c7f671402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d14ed29cd0f841be86b7c61c7f671402.jpg", "file_size": 23849, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14ed29cd0f841be86b7c61c7f671402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14ed29cd0f841be86b7c61c7f671402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14ed29cd0f841be86b7c61c7f671402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d14ed29cd0f841be86b7c61c7f671402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d14ed29cd0f841be86b7c61c7f671402.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIgGv8zuEqHCSgiuXpWRRyMgUGE=", "createTime": "2024-08-15 14:40:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.356929+00 2025-12-09 10:14:44.356933+00 4371 JS0974-A16#正身 SPMX-20240815299515 \N \N \N 1 \N [{"file_id": "dd5e9eb7-1f66-4d6c-89db-534973948f4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg", "file_size": 51429, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d73d98d7bb345dd93f4bd8dad0aa7ee.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WsdxF4iFPgdhBUk8AOuiqfnxDY=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.358056+00 2025-12-09 10:14:44.35806+00 4372 LZ1199#上身5号色 SPMX-20240815299509 \N \N \N 1 \N [{"file_id": "a4bfb421-0f2d-4c21-ab23-793dd1321061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6192e37c93b74ea2a65d03e25464e42f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6192e37c93b74ea2a65d03e25464e42f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6192e37c93b74ea2a65d03e25464e42f.jpg", "file_size": 16465, "is_delete": false, "file_type": 1, "original_file_name": "LZ1199#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6192e37c93b74ea2a65d03e25464e42f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6192e37c93b74ea2a65d03e25464e42f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6192e37c93b74ea2a65d03e25464e42f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6192e37c93b74ea2a65d03e25464e42f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6192e37c93b74ea2a65d03e25464e42f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJFqyuA76eia2GzIICqoCE-NxcA=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.359178+00 2025-12-09 10:14:44.359182+00 4373 JS0974-A16#天蓝 SPMX-20240815299505 \N \N \N 1 \N [{"file_id": "dc1e0694-25e1-4082-a33d-7e85eb242ad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cdebf492e2d445a8f819d304beaca03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cdebf492e2d445a8f819d304beaca03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cdebf492e2d445a8f819d304beaca03.jpg", "file_size": 71273, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdebf492e2d445a8f819d304beaca03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdebf492e2d445a8f819d304beaca03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdebf492e2d445a8f819d304beaca03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cdebf492e2d445a8f819d304beaca03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cdebf492e2d445a8f819d304beaca03.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXqAdzapzKiMHvSn1g8SL8LkxaI=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.360302+00 2025-12-09 10:14:44.360306+00 4374 C23109#绿色S SPMX-20240815299514 \N \N \N 1 \N [{"file_id": "cb6768ca-fbb0-4e46-a190-93c95a5cbbfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f32d599e5cd4343b30ccd66f4d9a8c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f32d599e5cd4343b30ccd66f4d9a8c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f32d599e5cd4343b30ccd66f4d9a8c7.jpg", "file_size": 19510, "is_delete": false, "file_type": 1, "original_file_name": "C23109#绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f32d599e5cd4343b30ccd66f4d9a8c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f32d599e5cd4343b30ccd66f4d9a8c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f32d599e5cd4343b30ccd66f4d9a8c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f32d599e5cd4343b30ccd66f4d9a8c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f32d599e5cd4343b30ccd66f4d9a8c7.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OQVFq4GkBgP6NmdMik-Ka5HDFc=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.361434+00 2025-12-09 10:14:44.361438+00 4375 HSH034FW#VS-D3 SPMX-20240815299516 \N \N \N 1 \N [{"file_id": "fb355808-8848-43e7-991b-12be2c8b88bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b47de4a01f8948709075f07c480d2b83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b47de4a01f8948709075f07c480d2b83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b47de4a01f8948709075f07c480d2b83.jpg", "file_size": 12354, "is_delete": false, "file_type": 1, "original_file_name": "HSH034FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47de4a01f8948709075f07c480d2b83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47de4a01f8948709075f07c480d2b83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47de4a01f8948709075f07c480d2b83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b47de4a01f8948709075f07c480d2b83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b47de4a01f8948709075f07c480d2b83.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FhrMB6aU9-E3TTA67k5ndfQYijQ=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.362553+00 2025-12-09 10:14:44.362557+00 4376 HSH033FW#VS-D3 SPMX-20240815299504 \N \N \N 1 \N [{"file_id": "b4070207-b427-47e0-87e9-cef09ac72a28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85d4da01fb76465392027f0ebb79eb1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85d4da01fb76465392027f0ebb79eb1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85d4da01fb76465392027f0ebb79eb1e.jpg", "file_size": 12980, "is_delete": false, "file_type": 1, "original_file_name": "HSH033FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d4da01fb76465392027f0ebb79eb1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d4da01fb76465392027f0ebb79eb1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d4da01fb76465392027f0ebb79eb1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85d4da01fb76465392027f0ebb79eb1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85d4da01fb76465392027f0ebb79eb1e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6VSW9SFeAHxxTMUa1Avvl4M8VQ=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.363679+00 2025-12-09 10:14:44.363684+00 4377 1045FWF#-1匹布 SPMX-20240815299506 \N \N \N 1 \N [{"file_id": "d837741d-0835-4087-a794-6ab49ad330be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f42a0bbad154687a05f49bf64c9690c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f42a0bbad154687a05f49bf64c9690c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f42a0bbad154687a05f49bf64c9690c.jpg", "file_size": 15168, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-1匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42a0bbad154687a05f49bf64c9690c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42a0bbad154687a05f49bf64c9690c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42a0bbad154687a05f49bf64c9690c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f42a0bbad154687a05f49bf64c9690c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f42a0bbad154687a05f49bf64c9690c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qecTc4-JvhHsDEFv8z_jZ7yZIE=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.365097+00 2025-12-09 10:14:44.3651+00 4378 0001-68FWF#V5曲线 SPMX-20240815299507 \N \N \N 1 \N [{"file_id": "abe8e09f-4dd8-4d02-932f-9dadcfa189c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bde6a49f73d04a8ead1599816d0d6ca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bde6a49f73d04a8ead1599816d0d6ca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bde6a49f73d04a8ead1599816d0d6ca4.jpg", "file_size": 10666, "is_delete": false, "file_type": 1, "original_file_name": "0001-68FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde6a49f73d04a8ead1599816d0d6ca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde6a49f73d04a8ead1599816d0d6ca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde6a49f73d04a8ead1599816d0d6ca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bde6a49f73d04a8ead1599816d0d6ca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bde6a49f73d04a8ead1599816d0d6ca4.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_VUmjORQueCgguz7nDMYIWyfpM=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.36654+00 2025-12-09 10:14:44.366545+00 4379 23-2101#A1袖子4XL SPMX-20240815299512 \N \N \N 1 \N [{"file_id": "dc3de3ca-4513-4f29-b722-eaf6b0c47a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f80f83579b87426bb95bb023c1c8e2f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f80f83579b87426bb95bb023c1c8e2f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f80f83579b87426bb95bb023c1c8e2f4.jpg", "file_size": 9602, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A1袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80f83579b87426bb95bb023c1c8e2f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80f83579b87426bb95bb023c1c8e2f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80f83579b87426bb95bb023c1c8e2f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f80f83579b87426bb95bb023c1c8e2f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f80f83579b87426bb95bb023c1c8e2f4.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfcMBMME7XYrug0gjd43LQEaoQQ=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.367956+00 2025-12-09 10:14:44.36796+00 4380 LHJ9191#22#玫红 SPMX-20240815299508 \N \N \N 1 \N [{"file_id": "b069c1e7-0522-4e50-b4d7-d4fb2f9c647e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3879cd2f6deb497fa3a5e15e48ff99df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3879cd2f6deb497fa3a5e15e48ff99df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3879cd2f6deb497fa3a5e15e48ff99df.jpg", "file_size": 13874, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#22#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3879cd2f6deb497fa3a5e15e48ff99df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3879cd2f6deb497fa3a5e15e48ff99df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3879cd2f6deb497fa3a5e15e48ff99df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3879cd2f6deb497fa3a5e15e48ff99df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3879cd2f6deb497fa3a5e15e48ff99df.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ovjQGVh7CuNHVMFI0qfQlAWdEAg=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.369363+00 2025-12-09 10:14:44.369367+00 4381 80056#短袖上衣 SPMX-20240815299511 \N \N \N 1 \N [{"file_id": "42b914bb-30c2-4475-be98-c40580040e67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c724602324e4e05bbc26d625dfa6b37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c724602324e4e05bbc26d625dfa6b37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c724602324e4e05bbc26d625dfa6b37.jpg", "file_size": 21959, "is_delete": false, "file_type": 1, "original_file_name": "80056#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c724602324e4e05bbc26d625dfa6b37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c724602324e4e05bbc26d625dfa6b37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c724602324e4e05bbc26d625dfa6b37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c724602324e4e05bbc26d625dfa6b37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c724602324e4e05bbc26d625dfa6b37.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xo6s4kHoBSXOcw8X_eJz1aL_Xf0=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.370763+00 2025-12-09 10:14:44.370766+00 4382 FHTZ-001 SPMX-20240815299513 \N \N \N 1 \N [{"file_id": "16298045-6d0a-4813-a50f-42cddb394442", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "386199516a054098853117e0c4d1fee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "386199516a054098853117e0c4d1fee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "386199516a054098853117e0c4d1fee9.jpg", "file_size": 20330, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-001.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386199516a054098853117e0c4d1fee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386199516a054098853117e0c4d1fee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386199516a054098853117e0c4d1fee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/386199516a054098853117e0c4d1fee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/386199516a054098853117e0c4d1fee9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEOJhWIkYkSO-hZB8N64TAl8zfU=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.372185+00 2025-12-09 10:14:44.372189+00 4383 DH20220437Y-J#VS-D3 SPMX-20240815299510 \N \N \N 1 \N [{"file_id": "d4ba42c9-2e56-4de8-a0e2-9f760326a7bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "385aa6a64e124a46bc6cb81bc92fbbed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "385aa6a64e124a46bc6cb81bc92fbbed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "385aa6a64e124a46bc6cb81bc92fbbed.jpg", "file_size": 8001, "is_delete": false, "file_type": 1, "original_file_name": "DH20220437Y-J#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385aa6a64e124a46bc6cb81bc92fbbed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385aa6a64e124a46bc6cb81bc92fbbed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385aa6a64e124a46bc6cb81bc92fbbed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/385aa6a64e124a46bc6cb81bc92fbbed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/385aa6a64e124a46bc6cb81bc92fbbed.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2T1qzZYoSFl7Kftz8bLxLGN9MOM=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.373597+00 2025-12-09 10:14:44.373601+00 4384 LHJ9191#25#土黄 SPMX-20240815299518 \N \N \N 1 \N [{"file_id": "55e188cc-5732-4142-83a1-a19fd1ecf05e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db7908941b14d0eb6d7d62ff955caca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db7908941b14d0eb6d7d62ff955caca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db7908941b14d0eb6d7d62ff955caca.jpg", "file_size": 14600, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db7908941b14d0eb6d7d62ff955caca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db7908941b14d0eb6d7d62ff955caca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db7908941b14d0eb6d7d62ff955caca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db7908941b14d0eb6d7d62ff955caca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db7908941b14d0eb6d7d62ff955caca.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXRFvTUXz3Vl39WVUDa-NulhhY4=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.375215+00 2025-12-09 10:14:44.37522+00 4385 0001-69FWF#V5曲线 SPMX-20240815299519 \N \N \N 1 \N [{"file_id": "630e6fdf-60de-4562-a99c-7fb7a54f7ef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "020f53223a454c4f86a5a9b6d9569982.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "020f53223a454c4f86a5a9b6d9569982.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "020f53223a454c4f86a5a9b6d9569982.jpg", "file_size": 24928, "is_delete": false, "file_type": 1, "original_file_name": "0001-69FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020f53223a454c4f86a5a9b6d9569982.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020f53223a454c4f86a5a9b6d9569982.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020f53223a454c4f86a5a9b6d9569982.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/020f53223a454c4f86a5a9b6d9569982.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/020f53223a454c4f86a5a9b6d9569982.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mBRpfv_v7jhWGdd_Q9QgW0XA7A=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.376552+00 2025-12-09 10:14:44.376556+00 4386 FHTZ-002-1 SPMX-20240815299521 \N \N \N 1 \N [{"file_id": "3dad76b7-2b50-418b-8736-aa192b949916", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f599a568a2b445cd8650eb3251a3a155.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f599a568a2b445cd8650eb3251a3a155.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f599a568a2b445cd8650eb3251a3a155.bmp", "file_size": 23044, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-002-1.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f599a568a2b445cd8650eb3251a3a155.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f599a568a2b445cd8650eb3251a3a155.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f599a568a2b445cd8650eb3251a3a155.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f599a568a2b445cd8650eb3251a3a155.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f599a568a2b445cd8650eb3251a3a155.bmp?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mH2r_kf1WSlN1v43vH-63fC2I8M=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.37789+00 2025-12-09 10:14:44.377894+00 4387 LZ119FWF#1号色短袖 SPMX-20240815299520 \N \N \N 1 \N [{"file_id": "84f75afd-7bc2-484c-aa5f-44fa1e513a54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fcf71f04c54466096cc10ebbc67966e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fcf71f04c54466096cc10ebbc67966e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fcf71f04c54466096cc10ebbc67966e.jpg", "file_size": 18169, "is_delete": false, "file_type": 1, "original_file_name": "LZ119FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcf71f04c54466096cc10ebbc67966e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcf71f04c54466096cc10ebbc67966e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcf71f04c54466096cc10ebbc67966e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fcf71f04c54466096cc10ebbc67966e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fcf71f04c54466096cc10ebbc67966e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rovGgXPVTTwbiWShfRNcqog1_LU=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.379235+00 2025-12-09 10:14:44.37924+00 4388 DH20220503T#粉VS-D3 SPMX-20240815299524 \N \N \N 1 \N [{"file_id": "810b2e1c-a4d7-4ed8-bbe3-425a39b7cfcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc664a1c43d944f1b87907768c2a1272.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc664a1c43d944f1b87907768c2a1272.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc664a1c43d944f1b87907768c2a1272.jpg", "file_size": 7010, "is_delete": false, "file_type": 1, "original_file_name": "DH20220503T#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc664a1c43d944f1b87907768c2a1272.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc664a1c43d944f1b87907768c2a1272.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc664a1c43d944f1b87907768c2a1272.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc664a1c43d944f1b87907768c2a1272.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc664a1c43d944f1b87907768c2a1272.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NmhLg_xm2YQ8Hi-4RRTp4mMMX8=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.380666+00 2025-12-09 10:14:44.38067+00 4389 23-2101#A1领子通码 SPMX-20240815299523 \N \N \N 1 \N [{"file_id": "269fcdea-01c1-48c8-a396-62fd51dfa583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17e620c526d64fa7ab2c303970f8d20f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17e620c526d64fa7ab2c303970f8d20f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17e620c526d64fa7ab2c303970f8d20f.jpg", "file_size": 9523, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A1领子通码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e620c526d64fa7ab2c303970f8d20f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e620c526d64fa7ab2c303970f8d20f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e620c526d64fa7ab2c303970f8d20f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17e620c526d64fa7ab2c303970f8d20f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17e620c526d64fa7ab2c303970f8d20f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1l-VK7VgQA_RrfUBP8njd7eqKQM=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.381866+00 2025-12-09 10:14:44.381871+00 4390 HSH035FW#VS-D3 SPMX-20240815299525 \N \N \N 1 \N [{"file_id": "96b7d02b-5438-4ccb-ae74-79590cb5973a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7ba4906cead45238c7dd76dd0d2c341.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7ba4906cead45238c7dd76dd0d2c341.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7ba4906cead45238c7dd76dd0d2c341.jpg", "file_size": 14468, "is_delete": false, "file_type": 1, "original_file_name": "HSH035FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ba4906cead45238c7dd76dd0d2c341.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ba4906cead45238c7dd76dd0d2c341.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ba4906cead45238c7dd76dd0d2c341.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7ba4906cead45238c7dd76dd0d2c341.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7ba4906cead45238c7dd76dd0d2c341.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TYxKnFZSCFZ3ZWBG8APNuIYsNM=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.383053+00 2025-12-09 10:14:44.383057+00 4391 80056#短袖子 SPMX-20240815299522 \N \N \N 1 \N [{"file_id": "e37474fe-2493-4860-873a-28858b2b5749", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0da65fe4777c4f2998ff9f5d632c8355.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0da65fe4777c4f2998ff9f5d632c8355.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0da65fe4777c4f2998ff9f5d632c8355.jpg", "file_size": 22704, "is_delete": false, "file_type": 1, "original_file_name": "80056#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0da65fe4777c4f2998ff9f5d632c8355.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0da65fe4777c4f2998ff9f5d632c8355.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0da65fe4777c4f2998ff9f5d632c8355.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0da65fe4777c4f2998ff9f5d632c8355.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0da65fe4777c4f2998ff9f5d632c8355.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8z3d_-RicTUkDSdXEiRpff3xYQ=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.384218+00 2025-12-09 10:14:44.384222+00 4392 C23109#绿色XL SPMX-20240815299526 \N \N \N 1 \N [{"file_id": "ac986599-2404-4f10-8c59-f5d239a06e08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d029715f0d348699b8b13166039fb50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d029715f0d348699b8b13166039fb50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d029715f0d348699b8b13166039fb50.jpg", "file_size": 17207, "is_delete": false, "file_type": 1, "original_file_name": "C23109#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d029715f0d348699b8b13166039fb50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d029715f0d348699b8b13166039fb50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d029715f0d348699b8b13166039fb50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d029715f0d348699b8b13166039fb50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d029715f0d348699b8b13166039fb50.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAfLTbRrP01PkF24LqwQCdX489I=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.385354+00 2025-12-09 10:14:44.385358+00 4393 1045FWF#-2 SPMX-20240815299517 \N \N \N 1 \N [{"file_id": "a26e5b7e-b1a9-428e-8954-a7145b30b3b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b7c46ee3214c88b23474ebb178956a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b7c46ee3214c88b23474ebb178956a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b7c46ee3214c88b23474ebb178956a.jpg", "file_size": 23134, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b7c46ee3214c88b23474ebb178956a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b7c46ee3214c88b23474ebb178956a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b7c46ee3214c88b23474ebb178956a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b7c46ee3214c88b23474ebb178956a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b7c46ee3214c88b23474ebb178956a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5ia3OrEa5nIWMBxEEpoT0hCjK4=", "createTime": "2024-08-15 14:40:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.386482+00 2025-12-09 10:14:44.386486+00 4394 JS0974-A16#紫 SPMX-20240815299527 \N \N \N 1 \N [{"file_id": "4b706b93-a3e0-41cf-aafb-78c152a85f03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "936a2e833ed2450c87d94a92b40f196f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "936a2e833ed2450c87d94a92b40f196f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "936a2e833ed2450c87d94a92b40f196f.jpg", "file_size": 67676, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936a2e833ed2450c87d94a92b40f196f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936a2e833ed2450c87d94a92b40f196f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936a2e833ed2450c87d94a92b40f196f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/936a2e833ed2450c87d94a92b40f196f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/936a2e833ed2450c87d94a92b40f196f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UuALX2wCBQKLNB3T8VDyM90ze2o=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.387612+00 2025-12-09 10:14:44.387616+00 4395 JS0974-A16#蓝色 SPMX-20240815299536 \N \N \N 1 \N [{"file_id": "1f01a4fc-d57f-4cf9-b1f6-9a42398f694d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f0c4a769a77435faac6bbba30ede8e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f0c4a769a77435faac6bbba30ede8e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f0c4a769a77435faac6bbba30ede8e1.jpg", "file_size": 75082, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A16#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0c4a769a77435faac6bbba30ede8e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0c4a769a77435faac6bbba30ede8e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0c4a769a77435faac6bbba30ede8e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f0c4a769a77435faac6bbba30ede8e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f0c4a769a77435faac6bbba30ede8e1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KS5Ja_jXAtfc62rHZ1pJ_wNbms=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.388756+00 2025-12-09 10:14:44.388761+00 4396 LZ119FWF#3号色短袖 SPMX-20240815299539 \N \N \N 1 \N [{"file_id": "ef58405f-12fe-43b6-8df1-09dd2869328f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf8277e587dc4b2f9f053df8a3c4f612.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf8277e587dc4b2f9f053df8a3c4f612.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf8277e587dc4b2f9f053df8a3c4f612.jpg", "file_size": 18437, "is_delete": false, "file_type": 1, "original_file_name": "LZ119FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8277e587dc4b2f9f053df8a3c4f612.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8277e587dc4b2f9f053df8a3c4f612.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8277e587dc4b2f9f053df8a3c4f612.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf8277e587dc4b2f9f053df8a3c4f612.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf8277e587dc4b2f9f053df8a3c4f612.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4nKG2uLcoNCdUp9ho_T-ZPgH34=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.389919+00 2025-12-09 10:14:44.389923+00 4397 0001-6FWF#V5曲线 SPMX-20240815299541 \N \N \N 1 \N [{"file_id": "edeb1b92-ed84-4d1c-b747-bb5a9e202ca7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080cefaacc7e4c2da10cce9456f8493f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080cefaacc7e4c2da10cce9456f8493f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080cefaacc7e4c2da10cce9456f8493f.jpg", "file_size": 18153, "is_delete": false, "file_type": 1, "original_file_name": "0001-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080cefaacc7e4c2da10cce9456f8493f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080cefaacc7e4c2da10cce9456f8493f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080cefaacc7e4c2da10cce9456f8493f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080cefaacc7e4c2da10cce9456f8493f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080cefaacc7e4c2da10cce9456f8493f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blFCiId2qkNNvzLcruepNxZ-6y8=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.391071+00 2025-12-09 10:14:44.391075+00 4398 0001-6FWE#VS-D3 SPMX-20240815299529 \N \N \N 1 \N [{"file_id": "b3a83f11-0ae7-4034-bc08-878ee2611336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a346880e0ce84bfc93fb3f332b0112c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a346880e0ce84bfc93fb3f332b0112c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a346880e0ce84bfc93fb3f332b0112c6.jpg", "file_size": 14705, "is_delete": false, "file_type": 1, "original_file_name": "0001-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a346880e0ce84bfc93fb3f332b0112c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a346880e0ce84bfc93fb3f332b0112c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a346880e0ce84bfc93fb3f332b0112c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a346880e0ce84bfc93fb3f332b0112c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a346880e0ce84bfc93fb3f332b0112c6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FZ8fEXgmm9__yOo67VAUcLoAxA=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.392201+00 2025-12-09 10:14:44.392205+00 4399 23-2101#A20前后片3XL SPMX-20240815299532 \N \N \N 1 \N [{"file_id": "4cc51715-aa46-4adc-98d1-68f3b4ff3ff5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdee9ce90d9d444f8be1f921e58c531b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdee9ce90d9d444f8be1f921e58c531b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdee9ce90d9d444f8be1f921e58c531b.jpg", "file_size": 9909, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A20前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdee9ce90d9d444f8be1f921e58c531b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdee9ce90d9d444f8be1f921e58c531b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdee9ce90d9d444f8be1f921e58c531b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdee9ce90d9d444f8be1f921e58c531b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdee9ce90d9d444f8be1f921e58c531b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zVxn4bW3YRucwV4Zo98-yDfRzw=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.393343+00 2025-12-09 10:14:44.393348+00 4400 LHJ9191#5#彩兰 SPMX-20240815299530 \N \N \N 1 \N [{"file_id": "9724e147-f116-4e34-adad-c733cf3ce53e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e6027412cf148708dbfb792f7f2f04d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e6027412cf148708dbfb792f7f2f04d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e6027412cf148708dbfb792f7f2f04d.jpg", "file_size": 13124, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6027412cf148708dbfb792f7f2f04d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6027412cf148708dbfb792f7f2f04d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6027412cf148708dbfb792f7f2f04d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e6027412cf148708dbfb792f7f2f04d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e6027412cf148708dbfb792f7f2f04d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y0EOxrIDqZnoFjifDUWRWGam0Go=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.394556+00 2025-12-09 10:14:44.39456+00 4401 HSH036FW#VS-D3 SPMX-20240815299535 \N \N \N 1 \N [{"file_id": "dad3392d-1d06-48a1-a9bc-913789dfcc4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2126f12601ca42c48b98158c3d596c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2126f12601ca42c48b98158c3d596c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2126f12601ca42c48b98158c3d596c5a.jpg", "file_size": 20090, "is_delete": false, "file_type": 1, "original_file_name": "HSH036FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126f12601ca42c48b98158c3d596c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126f12601ca42c48b98158c3d596c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126f12601ca42c48b98158c3d596c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2126f12601ca42c48b98158c3d596c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2126f12601ca42c48b98158c3d596c5a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpGneOSpO9oOTHTmU2PXJNF3m4E=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.395702+00 2025-12-09 10:14:44.395709+00 4402 1045FWF#-2匹布 SPMX-20240815299531 \N \N \N 1 \N [{"file_id": "aabca4a6-deb4-4765-b88c-9dd4e94b15e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "258baaf975404c1ebd473f50acd551af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "258baaf975404c1ebd473f50acd551af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "258baaf975404c1ebd473f50acd551af.jpg", "file_size": 20821, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-2匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258baaf975404c1ebd473f50acd551af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258baaf975404c1ebd473f50acd551af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258baaf975404c1ebd473f50acd551af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/258baaf975404c1ebd473f50acd551af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/258baaf975404c1ebd473f50acd551af.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbSYFb2eyn28D7mNyoFOtgNdek4=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.39683+00 2025-12-09 10:14:44.396834+00 4403 DH20220503T#绿VS-D3 SPMX-20240815299533 \N \N \N 1 \N [{"file_id": "30c08667-b095-44dd-b56a-31334d560e17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57454ff1a7da4fad86a679b0c5fdf1f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57454ff1a7da4fad86a679b0c5fdf1f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57454ff1a7da4fad86a679b0c5fdf1f9.jpg", "file_size": 6673, "is_delete": false, "file_type": 1, "original_file_name": "DH20220503T#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57454ff1a7da4fad86a679b0c5fdf1f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57454ff1a7da4fad86a679b0c5fdf1f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57454ff1a7da4fad86a679b0c5fdf1f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57454ff1a7da4fad86a679b0c5fdf1f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57454ff1a7da4fad86a679b0c5fdf1f9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myvGAnaG5Pyqgr6siNLFlNOzMKo=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.397969+00 2025-12-09 10:14:44.397974+00 4404 C23109#蓝色L SPMX-20240815299538 \N \N \N 1 \N [{"file_id": "ce0debda-8716-4b68-afe3-67af2738d4bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e339758d19144e1e8a84998c655f81bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e339758d19144e1e8a84998c655f81bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e339758d19144e1e8a84998c655f81bd.jpg", "file_size": 19507, "is_delete": false, "file_type": 1, "original_file_name": "C23109#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e339758d19144e1e8a84998c655f81bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e339758d19144e1e8a84998c655f81bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e339758d19144e1e8a84998c655f81bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e339758d19144e1e8a84998c655f81bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e339758d19144e1e8a84998c655f81bd.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6f-1LIlB8gAOz5KyNwrw3C9Qa0=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.399113+00 2025-12-09 10:14:44.399117+00 4405 1045FWF#-3 SPMX-20240815299540 \N \N \N 1 \N [{"file_id": "4caef91a-e5b1-436b-a570-23f6e4362936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa0f854aeaef41e1a92a0d211b64ef14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa0f854aeaef41e1a92a0d211b64ef14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa0f854aeaef41e1a92a0d211b64ef14.jpg", "file_size": 16540, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0f854aeaef41e1a92a0d211b64ef14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0f854aeaef41e1a92a0d211b64ef14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0f854aeaef41e1a92a0d211b64ef14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa0f854aeaef41e1a92a0d211b64ef14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa0f854aeaef41e1a92a0d211b64ef14.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcadxuK7CU7bkZz-2ax62urVPvo=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.400256+00 2025-12-09 10:14:44.40026+00 4406 80057#短袖上衣 SPMX-20240815299534 \N \N \N 1 \N [{"file_id": "633bcc0c-4dcd-4251-93cb-0c669eec3b56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510795f0c3484182a2748cdffc99b787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510795f0c3484182a2748cdffc99b787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510795f0c3484182a2748cdffc99b787.jpg", "file_size": 20925, "is_delete": false, "file_type": 1, "original_file_name": "80057#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510795f0c3484182a2748cdffc99b787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510795f0c3484182a2748cdffc99b787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510795f0c3484182a2748cdffc99b787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510795f0c3484182a2748cdffc99b787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510795f0c3484182a2748cdffc99b787.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZNF_Ts1-VSdrLgxIktLYdRVDcM=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.401372+00 2025-12-09 10:14:44.401376+00 4407 FHTZ-002-2 SPMX-20240815299537 \N \N \N 1 \N [{"file_id": "b95c326a-5552-4e2b-add4-0b20360befb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc6af9af00e94a839e6af66fdace156e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc6af9af00e94a839e6af66fdace156e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc6af9af00e94a839e6af66fdace156e.jpg", "file_size": 22609, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6af9af00e94a839e6af66fdace156e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6af9af00e94a839e6af66fdace156e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6af9af00e94a839e6af66fdace156e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc6af9af00e94a839e6af66fdace156e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc6af9af00e94a839e6af66fdace156e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iMeaO3Ea7tM-W0ws3PqZaIeyYU8=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.40251+00 2025-12-09 10:14:44.402513+00 4408 LZ119FWF#2号色短袖 SPMX-20240815299528 \N \N \N 1 \N [{"file_id": "11618a04-9121-47da-9e45-4c61420502b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17b02ce1a7ee496ab277f4a3840f8604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17b02ce1a7ee496ab277f4a3840f8604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17b02ce1a7ee496ab277f4a3840f8604.jpg", "file_size": 18519, "is_delete": false, "file_type": 1, "original_file_name": "LZ119FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b02ce1a7ee496ab277f4a3840f8604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b02ce1a7ee496ab277f4a3840f8604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b02ce1a7ee496ab277f4a3840f8604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17b02ce1a7ee496ab277f4a3840f8604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17b02ce1a7ee496ab277f4a3840f8604.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzcbxk-6_ak8gAEJrKdrnbtzxFE=", "createTime": "2024-08-15 14:40:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.403635+00 2025-12-09 10:14:44.40364+00 4409 23-2101#A20前后片4XL SPMX-20240815299545 \N \N \N 1 \N [{"file_id": "e41e171f-b5b2-4802-b0ad-331c12d7fe2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9078bd6079c4d52b027087ccf179133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9078bd6079c4d52b027087ccf179133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9078bd6079c4d52b027087ccf179133.jpg", "file_size": 10585, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A20前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9078bd6079c4d52b027087ccf179133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9078bd6079c4d52b027087ccf179133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9078bd6079c4d52b027087ccf179133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9078bd6079c4d52b027087ccf179133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9078bd6079c4d52b027087ccf179133.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zk37J5BDC_VITocXjExLZ9bzl84=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.404785+00 2025-12-09 10:14:44.404789+00 4410 FHTZ-002-3 SPMX-20240815299546 \N \N \N 1 \N [{"file_id": "7ec9c74b-268d-4c8e-b2e9-1b02825e5ca0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27757d57044b4e3580fc644430ec5d3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27757d57044b4e3580fc644430ec5d3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27757d57044b4e3580fc644430ec5d3b.jpg", "file_size": 22438, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27757d57044b4e3580fc644430ec5d3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27757d57044b4e3580fc644430ec5d3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27757d57044b4e3580fc644430ec5d3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27757d57044b4e3580fc644430ec5d3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27757d57044b4e3580fc644430ec5d3b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0R5mT2quFrmcwG11tUDGTgtVZk=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.405933+00 2025-12-09 10:14:44.405938+00 4411 LHJ9191#55#紫色 SPMX-20240815299542 \N \N \N 1 \N [{"file_id": "66299f17-4680-4a31-a77a-bacb8ae744cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e20b6e7ccad436a9e1504b5d84dd7da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e20b6e7ccad436a9e1504b5d84dd7da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e20b6e7ccad436a9e1504b5d84dd7da.jpg", "file_size": 15143, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#55#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e20b6e7ccad436a9e1504b5d84dd7da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e20b6e7ccad436a9e1504b5d84dd7da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e20b6e7ccad436a9e1504b5d84dd7da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e20b6e7ccad436a9e1504b5d84dd7da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e20b6e7ccad436a9e1504b5d84dd7da.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ag0CuMw2bYlBAyK_OeeggoKhMyo=", "createTime": "2024-08-15 14:40:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.407261+00 2025-12-09 10:14:44.407265+00 4412 DH20220506T#绿VS-D3 SPMX-20240815299543 \N \N \N 1 \N [{"file_id": "8a451918-2852-4767-a757-c4d5897c6b5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5b14c01df30472eacf2157655dd5dec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5b14c01df30472eacf2157655dd5dec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5b14c01df30472eacf2157655dd5dec.jpg", "file_size": 7930, "is_delete": false, "file_type": 1, "original_file_name": "DH20220506T#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5b14c01df30472eacf2157655dd5dec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5b14c01df30472eacf2157655dd5dec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5b14c01df30472eacf2157655dd5dec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5b14c01df30472eacf2157655dd5dec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5b14c01df30472eacf2157655dd5dec.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kXxgB7r8pUAl0IDMlzqq0ovs7k=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.408447+00 2025-12-09 10:14:44.408451+00 4413 80057#短袖子 SPMX-20240815299544 \N \N \N 1 \N [{"file_id": "a1fcea08-8b11-410c-a666-607db4774454", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84cf9895629943c9b027ea46c56b4270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84cf9895629943c9b027ea46c56b4270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84cf9895629943c9b027ea46c56b4270.jpg", "file_size": 18367, "is_delete": false, "file_type": 1, "original_file_name": "80057#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84cf9895629943c9b027ea46c56b4270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84cf9895629943c9b027ea46c56b4270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84cf9895629943c9b027ea46c56b4270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84cf9895629943c9b027ea46c56b4270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84cf9895629943c9b027ea46c56b4270.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMSeokD-he_xdE9FeT7-sPhmc5w=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.409625+00 2025-12-09 10:14:44.409629+00 4414 1045FWF#-3匹布 SPMX-20240815299550 \N \N \N 1 \N [{"file_id": "e89b805c-4598-4415-a6d4-02a0ad804582", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5239f38a29484599b26b7a4418730b01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5239f38a29484599b26b7a4418730b01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5239f38a29484599b26b7a4418730b01.jpg", "file_size": 15050, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-3匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5239f38a29484599b26b7a4418730b01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5239f38a29484599b26b7a4418730b01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5239f38a29484599b26b7a4418730b01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5239f38a29484599b26b7a4418730b01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5239f38a29484599b26b7a4418730b01.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLjcWVYhaP9AjkyOZs4JRKV2YCA=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.410782+00 2025-12-09 10:14:44.410786+00 4415 HSH037FW#VS-D3 SPMX-20240815299548 \N \N \N 1 \N [{"file_id": "6b402a7f-4214-4c7a-9154-ae5b331a5559", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b8b5b54d3324a53ba03765451c764fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b8b5b54d3324a53ba03765451c764fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b8b5b54d3324a53ba03765451c764fc.jpg", "file_size": 24698, "is_delete": false, "file_type": 1, "original_file_name": "HSH037FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8b5b54d3324a53ba03765451c764fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8b5b54d3324a53ba03765451c764fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8b5b54d3324a53ba03765451c764fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b8b5b54d3324a53ba03765451c764fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b8b5b54d3324a53ba03765451c764fc.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHPFiMw6wT4vz9J79zK0VMx0ovM=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.411899+00 2025-12-09 10:14:44.411903+00 4416 HSH038FW#VS-D3 SPMX-20240815299558 \N \N \N 1 \N [{"file_id": "7bf5a208-15a3-47cd-a3e1-6c51c233e565", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "133764b0267d4f139fbc959999ca413c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "133764b0267d4f139fbc959999ca413c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "133764b0267d4f139fbc959999ca413c.jpg", "file_size": 8952, "is_delete": false, "file_type": 1, "original_file_name": "HSH038FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133764b0267d4f139fbc959999ca413c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133764b0267d4f139fbc959999ca413c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133764b0267d4f139fbc959999ca413c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/133764b0267d4f139fbc959999ca413c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/133764b0267d4f139fbc959999ca413c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QIme1eph91t172__4EbrVvYjbVc=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.423494+00 2025-12-09 10:14:44.423498+00 4425 80058#短袖上衣 SPMX-20240815299556 \N \N \N 1 \N [{"file_id": "2e7e32e2-7321-4420-845e-c749fba6a8e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32ee894477184b35860691745ec43bb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32ee894477184b35860691745ec43bb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32ee894477184b35860691745ec43bb6.jpg", "file_size": 23792, "is_delete": false, "file_type": 1, "original_file_name": "80058#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ee894477184b35860691745ec43bb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ee894477184b35860691745ec43bb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ee894477184b35860691745ec43bb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32ee894477184b35860691745ec43bb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32ee894477184b35860691745ec43bb6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SLopJviQ_xMSeD1D7Eu-oYT2fE=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.413029+00 2025-12-09 10:14:44.413033+00 4417 0001-70FWF#定位花 SPMX-20240815299552 \N \N \N 1 \N [{"file_id": "4c460d8c-e129-46d2-be28-afa372e8aa8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be7ee45fde7a4d4380920ab98e0c672e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be7ee45fde7a4d4380920ab98e0c672e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be7ee45fde7a4d4380920ab98e0c672e.jpg", "file_size": 10751, "is_delete": false, "file_type": 1, "original_file_name": "0001-70FWF#定位花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7ee45fde7a4d4380920ab98e0c672e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7ee45fde7a4d4380920ab98e0c672e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7ee45fde7a4d4380920ab98e0c672e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be7ee45fde7a4d4380920ab98e0c672e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be7ee45fde7a4d4380920ab98e0c672e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ApYPlNz8VqyMpHa4hPBvTmYxIo=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.414182+00 2025-12-09 10:14:44.414187+00 4418 C23109#蓝色M SPMX-20240815299551 \N \N \N 1 \N [{"file_id": "c044e8c3-20ef-4554-a215-fff33cc4e3c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7795cfaf01364599ae7b2746364d8403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7795cfaf01364599ae7b2746364d8403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7795cfaf01364599ae7b2746364d8403.jpg", "file_size": 20739, "is_delete": false, "file_type": 1, "original_file_name": "C23109#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7795cfaf01364599ae7b2746364d8403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7795cfaf01364599ae7b2746364d8403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7795cfaf01364599ae7b2746364d8403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7795cfaf01364599ae7b2746364d8403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7795cfaf01364599ae7b2746364d8403.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5uEp9WOLDff6owrJOQuotLV9aI=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.415317+00 2025-12-09 10:14:44.415321+00 4419 FHTZ-002 SPMX-20240815299557 \N \N \N 1 \N [{"file_id": "8af2c2bf-a78c-4551-9203-84b86110244e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1d6455fced0470f875fe59acd15ddd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1d6455fced0470f875fe59acd15ddd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1d6455fced0470f875fe59acd15ddd0.jpg", "file_size": 22971, "is_delete": false, "file_type": 1, "original_file_name": "FHTZ-002.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d6455fced0470f875fe59acd15ddd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d6455fced0470f875fe59acd15ddd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d6455fced0470f875fe59acd15ddd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1d6455fced0470f875fe59acd15ddd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1d6455fced0470f875fe59acd15ddd0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_CUGGG_8rtLU4Z32mj3tSIBSh8=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.41644+00 2025-12-09 10:14:44.416445+00 4420 DH20220779FW#L短袖口橙 SPMX-20240815299553 \N \N \N 1 \N [{"file_id": "04540029-5a7f-41b9-a9fc-abde36904a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dc2722d0672422b881485c435262c26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dc2722d0672422b881485c435262c26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dc2722d0672422b881485c435262c26.jpg", "file_size": 14176, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2722d0672422b881485c435262c26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2722d0672422b881485c435262c26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc2722d0672422b881485c435262c26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dc2722d0672422b881485c435262c26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dc2722d0672422b881485c435262c26.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaAhb3l9C549mq6apX76YW1jchc=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.41756+00 2025-12-09 10:14:44.417564+00 4421 LZ119FWF#4号色短袖 SPMX-20240815299549 \N \N \N 1 \N [{"file_id": "f935b3d2-11b0-473b-91eb-fdbe8426b3d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60f911ab9d9b460984ca3a196ab28d92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60f911ab9d9b460984ca3a196ab28d92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60f911ab9d9b460984ca3a196ab28d92.jpg", "file_size": 18880, "is_delete": false, "file_type": 1, "original_file_name": "LZ119FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f911ab9d9b460984ca3a196ab28d92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f911ab9d9b460984ca3a196ab28d92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f911ab9d9b460984ca3a196ab28d92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60f911ab9d9b460984ca3a196ab28d92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60f911ab9d9b460984ca3a196ab28d92.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bRp6T-qM1FzMSM23F3ZiHxghl08=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.419155+00 2025-12-09 10:14:44.419159+00 4422 LHJ9191#土黄 SPMX-20240815299554 \N \N \N 1 \N [{"file_id": "1572ab66-f765-41c9-989d-8e776a3a1d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ec95b7b19140a085aa07aacfe6414f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ec95b7b19140a085aa07aacfe6414f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ec95b7b19140a085aa07aacfe6414f.jpg", "file_size": 14745, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ec95b7b19140a085aa07aacfe6414f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ec95b7b19140a085aa07aacfe6414f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ec95b7b19140a085aa07aacfe6414f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ec95b7b19140a085aa07aacfe6414f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ec95b7b19140a085aa07aacfe6414f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YeGwpG8M-vhZc56dy0BOUV9q36Y=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.420782+00 2025-12-09 10:14:44.420786+00 4423 23-2101#A20袖子3XL SPMX-20240815299555 \N \N \N 1 \N [{"file_id": "ea5d066a-42f4-430f-9dd1-86445e1ad568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c94b61c837fb4b75a0a6ada067fd3599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c94b61c837fb4b75a0a6ada067fd3599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c94b61c837fb4b75a0a6ada067fd3599.jpg", "file_size": 10795, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A20袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94b61c837fb4b75a0a6ada067fd3599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94b61c837fb4b75a0a6ada067fd3599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94b61c837fb4b75a0a6ada067fd3599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c94b61c837fb4b75a0a6ada067fd3599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c94b61c837fb4b75a0a6ada067fd3599.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RC3IOkZPq0AVMj18bwY1MDcyG8=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.422154+00 2025-12-09 10:14:44.422158+00 4424 JS0974-A17#LWQ15 SPMX-20240815299547 \N \N \N 1 \N [{"file_id": "ed0ab95f-23eb-47d6-bd3d-11d7937d5bbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c36b6f6efc0f40f4bc897aaefa317e87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c36b6f6efc0f40f4bc897aaefa317e87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c36b6f6efc0f40f4bc897aaefa317e87.jpg", "file_size": 59407, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A17#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b6f6efc0f40f4bc897aaefa317e87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b6f6efc0f40f4bc897aaefa317e87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b6f6efc0f40f4bc897aaefa317e87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c36b6f6efc0f40f4bc897aaefa317e87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c36b6f6efc0f40f4bc897aaefa317e87.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZr9Fr9qhpC4de3McCnVBBjqhfo=", "createTime": "2024-08-15 14:40:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.42488+00 2025-12-09 10:14:44.424884+00 4426 0001-70FWF#批布 SPMX-20240815299562 \N \N \N 1 \N [{"file_id": "b75cac45-fe57-429a-bf3c-59a31234f986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ae18138918e40aab945e04eb3130d2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ae18138918e40aab945e04eb3130d2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ae18138918e40aab945e04eb3130d2c.jpg", "file_size": 23031, "is_delete": false, "file_type": 1, "original_file_name": "0001-70FWF#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae18138918e40aab945e04eb3130d2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae18138918e40aab945e04eb3130d2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae18138918e40aab945e04eb3130d2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ae18138918e40aab945e04eb3130d2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ae18138918e40aab945e04eb3130d2c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nr8rTw3b-B4qerapaU5YNUK3whg=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.4262+00 2025-12-09 10:14:44.426205+00 4427 HSH039FW#VS-D3 SPMX-20240815299569 \N \N \N 1 \N [{"file_id": "70950d38-6f0a-4fbd-81fb-c0647dc9bd88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d6a3b7785464cc89153d90b1495ae89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d6a3b7785464cc89153d90b1495ae89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d6a3b7785464cc89153d90b1495ae89.jpg", "file_size": 21190, "is_delete": false, "file_type": 1, "original_file_name": "HSH039FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a3b7785464cc89153d90b1495ae89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a3b7785464cc89153d90b1495ae89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a3b7785464cc89153d90b1495ae89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d6a3b7785464cc89153d90b1495ae89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d6a3b7785464cc89153d90b1495ae89.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agb0p6dLOUhqkHxbY5ZvIljx-pg=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.427414+00 2025-12-09 10:14:44.427418+00 4428 80058#短袖子 SPMX-20240815299568 \N \N \N 1 \N [{"file_id": "29397580-3a59-4795-a16c-26814cf8039f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6896619f55a24e54ad87d7a7e2467a42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6896619f55a24e54ad87d7a7e2467a42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6896619f55a24e54ad87d7a7e2467a42.jpg", "file_size": 22939, "is_delete": false, "file_type": 1, "original_file_name": "80058#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896619f55a24e54ad87d7a7e2467a42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896619f55a24e54ad87d7a7e2467a42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896619f55a24e54ad87d7a7e2467a42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6896619f55a24e54ad87d7a7e2467a42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6896619f55a24e54ad87d7a7e2467a42.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqK6gz35ZQJUfhH37SjTuxpOiQ0=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.428563+00 2025-12-09 10:14:44.428567+00 4429 DH20220779FW#L短袖口灰 SPMX-20240815299574 \N \N \N 1 \N [{"file_id": "1708f9c5-9880-4313-b6ed-11c6fedabc2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c149b841d68475c9287da17a8479b77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c149b841d68475c9287da17a8479b77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c149b841d68475c9287da17a8479b77.jpg", "file_size": 11239, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c149b841d68475c9287da17a8479b77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c149b841d68475c9287da17a8479b77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c149b841d68475c9287da17a8479b77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c149b841d68475c9287da17a8479b77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c149b841d68475c9287da17a8479b77.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBliUpH4XLcugQWNNs0aE955Ctc=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.429712+00 2025-12-09 10:14:44.429716+00 4430 JS0974-A18#RC23 SPMX-20240815299571 \N \N \N 1 \N [{"file_id": "44294e77-9e66-4f09-82b4-af0c264f1270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9442be8c23374cc7b16107fe89c9d5c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9442be8c23374cc7b16107fe89c9d5c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9442be8c23374cc7b16107fe89c9d5c9.jpg", "file_size": 66211, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A18#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9442be8c23374cc7b16107fe89c9d5c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9442be8c23374cc7b16107fe89c9d5c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9442be8c23374cc7b16107fe89c9d5c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9442be8c23374cc7b16107fe89c9d5c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9442be8c23374cc7b16107fe89c9d5c9.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1tI2k3zM5nFSyNzehkWTLKS0eo=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.430859+00 2025-12-09 10:14:44.430863+00 4431 1045FWF#-4匹布 SPMX-20240815299572 \N \N \N 1 \N [{"file_id": "2be96e2d-15d3-408b-83c2-7d345455bc2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f291ece33cc4406192c1597c81f41d9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f291ece33cc4406192c1597c81f41d9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f291ece33cc4406192c1597c81f41d9d.jpg", "file_size": 22157, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-4匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f291ece33cc4406192c1597c81f41d9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f291ece33cc4406192c1597c81f41d9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f291ece33cc4406192c1597c81f41d9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f291ece33cc4406192c1597c81f41d9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f291ece33cc4406192c1597c81f41d9d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqGoZbkynQQYlQ7TP85fKgjZjq0=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.432421+00 2025-12-09 10:14:44.432425+00 4432 JS0974-A17#RC23 SPMX-20240815299559 \N \N \N 1 \N [{"file_id": "f3526454-7016-4490-9ca5-a602aa328fbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3563ae804fef4866b1a34599d6e7c93e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3563ae804fef4866b1a34599d6e7c93e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3563ae804fef4866b1a34599d6e7c93e.jpg", "file_size": 68333, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A17#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3563ae804fef4866b1a34599d6e7c93e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3563ae804fef4866b1a34599d6e7c93e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3563ae804fef4866b1a34599d6e7c93e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3563ae804fef4866b1a34599d6e7c93e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3563ae804fef4866b1a34599d6e7c93e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:352DzOrlqIzAnljGCS0ZLiOJqCI=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.433591+00 2025-12-09 10:14:44.433596+00 4433 C23109#蓝色XL SPMX-20240815299573 \N \N \N 1 \N [{"file_id": "fb05921b-5074-41ab-b1ba-56566adcc21f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg", "file_size": 18296, "is_delete": false, "file_type": 1, "original_file_name": "C23109#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf7b9bf2cd4b4eeb8868ca92dfa27723.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JanvkkbfviwwsPDkTQ_sc22_eTI=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.434736+00 2025-12-09 10:14:44.43474+00 4434 LZ119FWF#5号色短袖 SPMX-20240815299560 \N \N \N 1 \N [{"file_id": "4b7b7e79-57d5-4fee-807f-db8d225b9e40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c71b23f77a154fb0a663046196f11c23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c71b23f77a154fb0a663046196f11c23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c71b23f77a154fb0a663046196f11c23.jpg", "file_size": 19783, "is_delete": false, "file_type": 1, "original_file_name": "LZ119FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71b23f77a154fb0a663046196f11c23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71b23f77a154fb0a663046196f11c23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71b23f77a154fb0a663046196f11c23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c71b23f77a154fb0a663046196f11c23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c71b23f77a154fb0a663046196f11c23.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55CzytZMuuAm5ql30O1o_huH1-8=", "createTime": "2024-08-15 14:40:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.435902+00 2025-12-09 10:14:44.435907+00 4435 LHJ9191#枣红 SPMX-20240815299566 \N \N \N 1 \N [{"file_id": "42f9e94a-dbc0-4cb1-ad35-5178d1ec630c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8456db1e720f40239ca381b1f2a02d56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8456db1e720f40239ca381b1f2a02d56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8456db1e720f40239ca381b1f2a02d56.jpg", "file_size": 12918, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8456db1e720f40239ca381b1f2a02d56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8456db1e720f40239ca381b1f2a02d56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8456db1e720f40239ca381b1f2a02d56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8456db1e720f40239ca381b1f2a02d56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8456db1e720f40239ca381b1f2a02d56.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sr26OFodK341VvurnGGv7ohM_qU=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.43704+00 2025-12-09 10:14:44.437044+00 4436 LZ120#童装T1号色 SPMX-20240815299570 \N \N \N 1 \N [{"file_id": "09ced0be-6469-4434-a8cf-d1da31117b4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d9b16d147004c79bd7eb44e13d111c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d9b16d147004c79bd7eb44e13d111c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d9b16d147004c79bd7eb44e13d111c0.jpg", "file_size": 18459, "is_delete": false, "file_type": 1, "original_file_name": "LZ120#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9b16d147004c79bd7eb44e13d111c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9b16d147004c79bd7eb44e13d111c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9b16d147004c79bd7eb44e13d111c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d9b16d147004c79bd7eb44e13d111c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d9b16d147004c79bd7eb44e13d111c0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnIykd4NOF49ow-QjrPD4FxEdfs=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.438206+00 2025-12-09 10:14:44.43821+00 4437 C23109#蓝色S SPMX-20240815299564 \N \N \N 1 \N [{"file_id": "a3400b78-acaa-41b8-b883-d6c84d47f81a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa7943479e4e41a48c4a5a5908ffc2de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa7943479e4e41a48c4a5a5908ffc2de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa7943479e4e41a48c4a5a5908ffc2de.jpg", "file_size": 21185, "is_delete": false, "file_type": 1, "original_file_name": "C23109#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7943479e4e41a48c4a5a5908ffc2de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7943479e4e41a48c4a5a5908ffc2de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7943479e4e41a48c4a5a5908ffc2de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa7943479e4e41a48c4a5a5908ffc2de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa7943479e4e41a48c4a5a5908ffc2de.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZTBz0D3D3cM29sL9sKg9QmnSK8=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.439338+00 2025-12-09 10:14:44.439342+00 4438 1045FWF#-4 SPMX-20240815299561 \N \N \N 1 \N [{"file_id": "bb362054-6989-41aa-a72b-2d829f33d4d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e79916c348c4a06a63849755bb222ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e79916c348c4a06a63849755bb222ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e79916c348c4a06a63849755bb222ae.jpg", "file_size": 23958, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e79916c348c4a06a63849755bb222ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e79916c348c4a06a63849755bb222ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e79916c348c4a06a63849755bb222ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e79916c348c4a06a63849755bb222ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e79916c348c4a06a63849755bb222ae.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WjZ5bZAMhOGn0vzNHocrrJNhwI=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.440479+00 2025-12-09 10:14:44.440483+00 4439 DH20220779FW#L短袖口浅蓝 SPMX-20240815299563 \N \N \N 1 \N [{"file_id": "64185af3-8f01-4b0c-b736-ea821fd15667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f60703fd73dd4d5cb154590e5cc01a82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f60703fd73dd4d5cb154590e5cc01a82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f60703fd73dd4d5cb154590e5cc01a82.jpg", "file_size": 13040, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60703fd73dd4d5cb154590e5cc01a82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60703fd73dd4d5cb154590e5cc01a82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60703fd73dd4d5cb154590e5cc01a82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f60703fd73dd4d5cb154590e5cc01a82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f60703fd73dd4d5cb154590e5cc01a82.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wjd4cuAjOmnTC6eIfMVdvdYrMSM=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.441626+00 2025-12-09 10:14:44.44163+00 4440 23-2101#A20袖子4XL SPMX-20240815299565 \N \N \N 1 \N [{"file_id": "08d696a0-03d7-41e0-a600-f5e3c5930097", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb2d55546dd14782b8ddd3ea2497c7cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb2d55546dd14782b8ddd3ea2497c7cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb2d55546dd14782b8ddd3ea2497c7cd.jpg", "file_size": 8690, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A20袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb2d55546dd14782b8ddd3ea2497c7cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb2d55546dd14782b8ddd3ea2497c7cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb2d55546dd14782b8ddd3ea2497c7cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb2d55546dd14782b8ddd3ea2497c7cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb2d55546dd14782b8ddd3ea2497c7cd.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neRIoAizpMEzsSWbYa-_5-qc5xk=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.442791+00 2025-12-09 10:14:44.442795+00 4441 FHXGPK-001-1 SPMX-20240815299567 \N \N \N 1 \N [{"file_id": "92842b68-9616-4d49-95d7-2e2b11efcb9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf8997bfd50a42d39c83a64067b6a07f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf8997bfd50a42d39c83a64067b6a07f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf8997bfd50a42d39c83a64067b6a07f.jpg", "file_size": 36504, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8997bfd50a42d39c83a64067b6a07f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8997bfd50a42d39c83a64067b6a07f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8997bfd50a42d39c83a64067b6a07f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf8997bfd50a42d39c83a64067b6a07f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf8997bfd50a42d39c83a64067b6a07f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VnqVdLtN-asdXGfr6xKH1YGjoE=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.44399+00 2025-12-09 10:14:44.443995+00 4442 C23130#L SPMX-20240815299584 \N \N \N 1 \N [{"file_id": "a7265927-3985-43d1-96fa-586b0162f9f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de1cab83fcef45cc9f4818b5eb60b474.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de1cab83fcef45cc9f4818b5eb60b474.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de1cab83fcef45cc9f4818b5eb60b474.jpg", "file_size": 22555, "is_delete": false, "file_type": 1, "original_file_name": "C23130#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de1cab83fcef45cc9f4818b5eb60b474.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de1cab83fcef45cc9f4818b5eb60b474.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de1cab83fcef45cc9f4818b5eb60b474.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de1cab83fcef45cc9f4818b5eb60b474.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de1cab83fcef45cc9f4818b5eb60b474.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXPE_XS7sBF2TtR2xtSNYB_DhQU=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.445224+00 2025-12-09 10:14:44.445228+00 4443 LHJ9192#122#绿 SPMX-20240815299587 \N \N \N 1 \N [{"file_id": "3616a6f6-f93a-46f5-bf8b-da6f7f5a72f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f9ca5abb5844a3682f68f34342d90fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f9ca5abb5844a3682f68f34342d90fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f9ca5abb5844a3682f68f34342d90fa.jpg", "file_size": 10716, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9192#122#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f9ca5abb5844a3682f68f34342d90fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f9ca5abb5844a3682f68f34342d90fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f9ca5abb5844a3682f68f34342d90fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f9ca5abb5844a3682f68f34342d90fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f9ca5abb5844a3682f68f34342d90fa.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMYaYeH07BWb64PnOAJyUsmaf_0=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.446391+00 2025-12-09 10:14:44.446395+00 4444 0001-71FWF#V5曲线 SPMX-20240815299576 \N \N \N 1 \N [{"file_id": "ff64dd89-06bd-4bbb-8d87-c6e438bc9e25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87216129c37b46d5bd008eef1e7a242e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87216129c37b46d5bd008eef1e7a242e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87216129c37b46d5bd008eef1e7a242e.jpg", "file_size": 17600, "is_delete": false, "file_type": 1, "original_file_name": "0001-71FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87216129c37b46d5bd008eef1e7a242e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87216129c37b46d5bd008eef1e7a242e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87216129c37b46d5bd008eef1e7a242e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87216129c37b46d5bd008eef1e7a242e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87216129c37b46d5bd008eef1e7a242e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFMOUw-PB6FYuSuiTDd0Ir5eZrA=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.447514+00 2025-12-09 10:14:44.447518+00 4445 23-2101#A20领子通用 SPMX-20240815299577 \N \N \N 1 \N [{"file_id": "e5d6b325-2a89-43d7-a729-f3e15d01843f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "827fc699e4f04ad5ad5f098c90b62538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "827fc699e4f04ad5ad5f098c90b62538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "827fc699e4f04ad5ad5f098c90b62538.jpg", "file_size": 9040, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A20领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827fc699e4f04ad5ad5f098c90b62538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827fc699e4f04ad5ad5f098c90b62538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827fc699e4f04ad5ad5f098c90b62538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/827fc699e4f04ad5ad5f098c90b62538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/827fc699e4f04ad5ad5f098c90b62538.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYQ1MS1y4lPdGwIOCYZa3KXyVCo=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.44874+00 2025-12-09 10:14:44.448745+00 4446 LHJ9191#绿 SPMX-20240815299575 \N \N \N 1 \N [{"file_id": "68a71a8f-20b0-4ef3-bb0e-114b1e5b4578", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4da1707de3e4567a4ad5eef3b4b4c22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4da1707de3e4567a4ad5eef3b4b4c22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4da1707de3e4567a4ad5eef3b4b4c22.jpg", "file_size": 13423, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9191#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4da1707de3e4567a4ad5eef3b4b4c22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4da1707de3e4567a4ad5eef3b4b4c22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4da1707de3e4567a4ad5eef3b4b4c22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4da1707de3e4567a4ad5eef3b4b4c22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4da1707de3e4567a4ad5eef3b4b4c22.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gyo2GONXrBU29OJ3hl62iBbkQuw=", "createTime": "2024-08-15 14:40:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.449892+00 2025-12-09 10:14:44.449897+00 4447 0001-72FWF#V5曲线 SPMX-20240815299585 \N \N \N 1 \N [{"file_id": "5b1b802f-b6b3-4a41-9fb7-fd7f0709ca8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751bd877e5184cddaf742abe2b54414e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751bd877e5184cddaf742abe2b54414e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751bd877e5184cddaf742abe2b54414e.jpg", "file_size": 15999, "is_delete": false, "file_type": 1, "original_file_name": "0001-72FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751bd877e5184cddaf742abe2b54414e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751bd877e5184cddaf742abe2b54414e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751bd877e5184cddaf742abe2b54414e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751bd877e5184cddaf742abe2b54414e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751bd877e5184cddaf742abe2b54414e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WamPPmRfmPXgHbGWb3fIVp3lxg=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.45107+00 2025-12-09 10:14:44.451074+00 4448 80059#短袖子 SPMX-20240815299590 \N \N \N 1 \N [{"file_id": "c7eccd2a-484e-4161-b8f4-ecd0dcd7636d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc1c9dc6407d4a01b269b719d6f1e6ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc1c9dc6407d4a01b269b719d6f1e6ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc1c9dc6407d4a01b269b719d6f1e6ef.jpg", "file_size": 17920, "is_delete": false, "file_type": 1, "original_file_name": "80059#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1c9dc6407d4a01b269b719d6f1e6ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1c9dc6407d4a01b269b719d6f1e6ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1c9dc6407d4a01b269b719d6f1e6ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc1c9dc6407d4a01b269b719d6f1e6ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc1c9dc6407d4a01b269b719d6f1e6ef.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7Mf0x3V3_tjRg62btOIsOG7z_o=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.452197+00 2025-12-09 10:14:44.452201+00 4449 HSH040FW#宝蓝VS-D3 SPMX-20240815299580 \N \N \N 1 \N [{"file_id": "e109d6d2-d5da-45e0-ab54-1b0570b5fab3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16aae5ac4dee4f1ba8195130356d65f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16aae5ac4dee4f1ba8195130356d65f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16aae5ac4dee4f1ba8195130356d65f2.jpg", "file_size": 15097, "is_delete": false, "file_type": 1, "original_file_name": "HSH040FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16aae5ac4dee4f1ba8195130356d65f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16aae5ac4dee4f1ba8195130356d65f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16aae5ac4dee4f1ba8195130356d65f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16aae5ac4dee4f1ba8195130356d65f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16aae5ac4dee4f1ba8195130356d65f2.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxbJ97PcTVnA3G26XL0mur5Pal4=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.453334+00 2025-12-09 10:14:44.453338+00 4450 1045FWF#-5 SPMX-20240815299582 \N \N \N 1 \N [{"file_id": "a91f989c-5ee3-4193-bb5b-1be9ce7b2070", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a214fe8816d45098185b5728bf58e9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a214fe8816d45098185b5728bf58e9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a214fe8816d45098185b5728bf58e9a.jpg", "file_size": 17240, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a214fe8816d45098185b5728bf58e9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a214fe8816d45098185b5728bf58e9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a214fe8816d45098185b5728bf58e9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a214fe8816d45098185b5728bf58e9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a214fe8816d45098185b5728bf58e9a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7vnPJ4H1BwLNqmZLxJ7Po0ONmrU=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.454451+00 2025-12-09 10:14:44.454456+00 4451 FHXGPK-001-2 SPMX-20240815299579 \N \N \N 1 \N [{"file_id": "66d68e72-5e95-4f6a-a5d2-f4007c899089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b08884ca17dd4ceebd842fbf141a21c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b08884ca17dd4ceebd842fbf141a21c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b08884ca17dd4ceebd842fbf141a21c5.jpg", "file_size": 35324, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08884ca17dd4ceebd842fbf141a21c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08884ca17dd4ceebd842fbf141a21c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08884ca17dd4ceebd842fbf141a21c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b08884ca17dd4ceebd842fbf141a21c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b08884ca17dd4ceebd842fbf141a21c5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMufFkWrZGyTooyFP1aLmtUUrn8=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.455621+00 2025-12-09 10:14:44.455625+00 4452 HSH041FW#宝蓝VS-D3 SPMX-20240815299588 \N \N \N 1 \N [{"file_id": "3d2ab620-15b9-495b-a5fa-56c693f62b20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05803c0cf65746119e0691ccc9f549c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05803c0cf65746119e0691ccc9f549c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05803c0cf65746119e0691ccc9f549c0.jpg", "file_size": 26824, "is_delete": false, "file_type": 1, "original_file_name": "HSH041FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05803c0cf65746119e0691ccc9f549c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05803c0cf65746119e0691ccc9f549c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05803c0cf65746119e0691ccc9f549c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05803c0cf65746119e0691ccc9f549c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05803c0cf65746119e0691ccc9f549c0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hqVqb9iMLdnSJqAh4i9i-1cU68=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.45677+00 2025-12-09 10:14:44.456774+00 4453 80059#短袖上衣 SPMX-20240815299578 \N \N \N 1 \N [{"file_id": "9cb68cd3-9a4e-4c5a-ab03-cd66a7cc626a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd66b3df736472988ecb67199bfefc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd66b3df736472988ecb67199bfefc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd66b3df736472988ecb67199bfefc8.jpg", "file_size": 19230, "is_delete": false, "file_type": 1, "original_file_name": "80059#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd66b3df736472988ecb67199bfefc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd66b3df736472988ecb67199bfefc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd66b3df736472988ecb67199bfefc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd66b3df736472988ecb67199bfefc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd66b3df736472988ecb67199bfefc8.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_XwMJI7pCE9hf274E8-czQIOcA=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.457912+00 2025-12-09 10:14:44.457916+00 4454 LZ120#童装T2号色 SPMX-20240815299581 \N \N \N 1 \N [{"file_id": "29bfd253-3bac-4c42-91ad-a1859861ee5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1c04a55e8824cefbf9476a5710fd146.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1c04a55e8824cefbf9476a5710fd146.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1c04a55e8824cefbf9476a5710fd146.jpg", "file_size": 15702, "is_delete": false, "file_type": 1, "original_file_name": "LZ120#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1c04a55e8824cefbf9476a5710fd146.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1c04a55e8824cefbf9476a5710fd146.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1c04a55e8824cefbf9476a5710fd146.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1c04a55e8824cefbf9476a5710fd146.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1c04a55e8824cefbf9476a5710fd146.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AWz1SDsf8gc1VnMJpI4fO6JJaZk=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.459041+00 2025-12-09 10:14:44.459045+00 4455 JS0974-A19#RC23 SPMX-20240815299583 \N \N \N 1 \N [{"file_id": "2f10f76c-aae7-4459-96b8-80b1312b4cf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a76fe19bf0412ebd1e94907f8aa5c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a76fe19bf0412ebd1e94907f8aa5c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a76fe19bf0412ebd1e94907f8aa5c3.jpg", "file_size": 51225, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A19#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a76fe19bf0412ebd1e94907f8aa5c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a76fe19bf0412ebd1e94907f8aa5c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a76fe19bf0412ebd1e94907f8aa5c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a76fe19bf0412ebd1e94907f8aa5c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a76fe19bf0412ebd1e94907f8aa5c3.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rihPygOfxTlZQprJjZZ2Wyw9mMM=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.460204+00 2025-12-09 10:14:44.460208+00 4456 DH20220779FW#L短袖口白 SPMX-20240815299586 \N \N \N 1 \N [{"file_id": "3cd68e9d-c136-4bb6-ab93-f4bf2433da50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6c88951466a473085953ba184b9b16f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6c88951466a473085953ba184b9b16f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6c88951466a473085953ba184b9b16f.jpg", "file_size": 11735, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c88951466a473085953ba184b9b16f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c88951466a473085953ba184b9b16f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c88951466a473085953ba184b9b16f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6c88951466a473085953ba184b9b16f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6c88951466a473085953ba184b9b16f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QmJQz95cfF6oyc1Z6k4fJkyeZ8=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.461324+00 2025-12-09 10:14:44.461328+00 4457 FHXGPK-001-3 SPMX-20240815299591 \N \N \N 1 \N [{"file_id": "b0099309-62d8-4281-9250-1150c8c0db37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05dbc9668a6d49c1b5e6fd8e1098834a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05dbc9668a6d49c1b5e6fd8e1098834a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05dbc9668a6d49c1b5e6fd8e1098834a.jpg", "file_size": 35784, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05dbc9668a6d49c1b5e6fd8e1098834a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05dbc9668a6d49c1b5e6fd8e1098834a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05dbc9668a6d49c1b5e6fd8e1098834a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05dbc9668a6d49c1b5e6fd8e1098834a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05dbc9668a6d49c1b5e6fd8e1098834a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TQQSkFXcbyAqwe64zcV8A-4TY8=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.462465+00 2025-12-09 10:14:44.462469+00 4458 23-2101#A21前后片3XL SPMX-20240815299589 \N \N \N 1 \N [{"file_id": "29fba2ba-bfce-4aac-a1cd-a82810e9ba25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68317a576d494765bed2b144e7283504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68317a576d494765bed2b144e7283504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68317a576d494765bed2b144e7283504.jpg", "file_size": 8591, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A21前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68317a576d494765bed2b144e7283504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68317a576d494765bed2b144e7283504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68317a576d494765bed2b144e7283504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68317a576d494765bed2b144e7283504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68317a576d494765bed2b144e7283504.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8M11bcWFtdX9SCifmTLcpjXIubc=", "createTime": "2024-08-15 14:40:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.46372+00 2025-12-09 10:14:44.463725+00 4459 LZ120#童装T3号色 SPMX-20240815299592 \N \N \N 1 \N [{"file_id": "8b777e1c-4a6a-453d-a34f-dfbda74b9dd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32c585ae948e44b4873df134ab7e0f17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32c585ae948e44b4873df134ab7e0f17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32c585ae948e44b4873df134ab7e0f17.jpg", "file_size": 16386, "is_delete": false, "file_type": 1, "original_file_name": "LZ120#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c585ae948e44b4873df134ab7e0f17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c585ae948e44b4873df134ab7e0f17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c585ae948e44b4873df134ab7e0f17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32c585ae948e44b4873df134ab7e0f17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32c585ae948e44b4873df134ab7e0f17.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7WM5jTlUvJ-47BKateVzBFz5PE=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.465153+00 2025-12-09 10:14:44.465158+00 4460 HSH042FW#VS-D3 SPMX-20240815299602 \N \N \N 1 \N [{"file_id": "dc31d059-a66a-42cc-9f56-72f3983ff0c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "883707fc20c74c928a8d1686a065410b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "883707fc20c74c928a8d1686a065410b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "883707fc20c74c928a8d1686a065410b.jpg", "file_size": 22119, "is_delete": false, "file_type": 1, "original_file_name": "HSH042FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883707fc20c74c928a8d1686a065410b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883707fc20c74c928a8d1686a065410b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883707fc20c74c928a8d1686a065410b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/883707fc20c74c928a8d1686a065410b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/883707fc20c74c928a8d1686a065410b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-G_Zj_B4IIAQQIsi2RMm-VWipIc=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.466356+00 2025-12-09 10:14:44.46636+00 4461 1045FWF#-5匹布 SPMX-20240815299593 \N \N \N 1 \N [{"file_id": "6b4aa7de-7a95-4695-acab-eca22b707343", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caeee1496968410bba9ac75bd425f4b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caeee1496968410bba9ac75bd425f4b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caeee1496968410bba9ac75bd425f4b6.jpg", "file_size": 15472, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#-5匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caeee1496968410bba9ac75bd425f4b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caeee1496968410bba9ac75bd425f4b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caeee1496968410bba9ac75bd425f4b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caeee1496968410bba9ac75bd425f4b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caeee1496968410bba9ac75bd425f4b6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7w45Yts0Cmz7x46R-yShcG9kxg=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.467542+00 2025-12-09 10:14:44.467547+00 4462 LHJ9192#20#枣红 SPMX-20240815299597 \N \N \N 1 \N [{"file_id": "9ce76423-625e-446c-9ad9-ee9ee9591263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f130d74b6dc44a628d622253bdf38ca1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f130d74b6dc44a628d622253bdf38ca1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f130d74b6dc44a628d622253bdf38ca1.jpg", "file_size": 11252, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9192#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f130d74b6dc44a628d622253bdf38ca1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f130d74b6dc44a628d622253bdf38ca1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f130d74b6dc44a628d622253bdf38ca1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f130d74b6dc44a628d622253bdf38ca1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f130d74b6dc44a628d622253bdf38ca1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0fpISrEg8D2-hNXbksjVgYdBb0=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.468768+00 2025-12-09 10:14:44.468773+00 4463 FHXGPK-001-4 SPMX-20240815299600 \N \N \N 1 \N [{"file_id": "9f78f2f6-d5f9-4092-9197-85bec8e8ceb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d65816b06044fc4825e34d89441a6b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d65816b06044fc4825e34d89441a6b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d65816b06044fc4825e34d89441a6b5.jpg", "file_size": 36479, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d65816b06044fc4825e34d89441a6b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d65816b06044fc4825e34d89441a6b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d65816b06044fc4825e34d89441a6b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d65816b06044fc4825e34d89441a6b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d65816b06044fc4825e34d89441a6b5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lY8o2XneuJrNkPrGXHDfG10fwvI=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.470057+00 2025-12-09 10:14:44.470062+00 4464 8006#咖色2XL SPMX-20240815299601 \N \N \N 1 \N [{"file_id": "df657860-2aee-42f5-b2ce-aa239bc51b5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f20259d95ecc40c19bde4ec291143a6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f20259d95ecc40c19bde4ec291143a6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f20259d95ecc40c19bde4ec291143a6e.jpg", "file_size": 71308, "is_delete": false, "file_type": 1, "original_file_name": "8006#咖色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20259d95ecc40c19bde4ec291143a6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20259d95ecc40c19bde4ec291143a6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20259d95ecc40c19bde4ec291143a6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f20259d95ecc40c19bde4ec291143a6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f20259d95ecc40c19bde4ec291143a6e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SF7AlKLf0Kyy5DmaQFapG4BFUes=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.471242+00 2025-12-09 10:14:44.471247+00 4465 0001-73FWF# SPMX-20240815299598 \N \N \N 1 \N [{"file_id": "af149920-9db7-4749-8b80-211044d8dc98", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "43d8477d206046ef922f32f3e56b4d1b.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "43d8477d206046ef922f32f3e56b4d1b.png?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "43d8477d206046ef922f32f3e56b4d1b.png", "file_size": 124986, "is_delete": false, "file_type": 1, "original_file_name": "0S1Sel12aNbP619V6scK7f9gbe5C5I3D8raN6Yaiey90dQ7h7n156j349d1b20bL.png", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/43d8477d206046ef922f32f3e56b4d1b.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/43d8477d206046ef922f32f3e56b4d1b.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/43d8477d206046ef922f32f3e56b4d1b.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/43d8477d206046ef922f32f3e56b4d1b.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/43d8477d206046ef922f32f3e56b4d1b.png?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPxh6ykcOYKcbEy_409dmeoNNiA=", "createTime": "2024-11-21 13:37:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.472409+00 2025-12-09 10:14:44.472414+00 4466 DH20220779FW#L短袖口粉 SPMX-20240815299596 \N \N \N 1 \N [{"file_id": "0dda52cd-c2e8-4047-83a6-ca396ead17b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d88ea2f377fb41df9127dd49b43a7c68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d88ea2f377fb41df9127dd49b43a7c68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d88ea2f377fb41df9127dd49b43a7c68.jpg", "file_size": 14603, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88ea2f377fb41df9127dd49b43a7c68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88ea2f377fb41df9127dd49b43a7c68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88ea2f377fb41df9127dd49b43a7c68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d88ea2f377fb41df9127dd49b43a7c68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d88ea2f377fb41df9127dd49b43a7c68.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Va3l8DcSwkzq2piteGTyNZ_3MpQ=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.473572+00 2025-12-09 10:14:44.473577+00 4467 C23130#M SPMX-20240815299594 \N \N \N 1 \N [{"file_id": "c32bba89-49e1-43e6-9fb0-61540723bbfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55416123617f42349fa82f9a0707474b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55416123617f42349fa82f9a0707474b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55416123617f42349fa82f9a0707474b.jpg", "file_size": 22930, "is_delete": false, "file_type": 1, "original_file_name": "C23130#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55416123617f42349fa82f9a0707474b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55416123617f42349fa82f9a0707474b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55416123617f42349fa82f9a0707474b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55416123617f42349fa82f9a0707474b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55416123617f42349fa82f9a0707474b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A-esdQRQjIJRkJ76T5I4a0-SsoM=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.474762+00 2025-12-09 10:14:44.474767+00 4468 1045FWF#上身彩兰2XL SPMX-20240815299604 \N \N \N 1 \N [{"file_id": "050d902e-d509-4529-bd48-801375c154d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e60dd382404bd885e267e27af98b97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e60dd382404bd885e267e27af98b97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e60dd382404bd885e267e27af98b97.jpg", "file_size": 23947, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e60dd382404bd885e267e27af98b97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e60dd382404bd885e267e27af98b97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e60dd382404bd885e267e27af98b97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e60dd382404bd885e267e27af98b97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e60dd382404bd885e267e27af98b97.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEDZRArax4a78QxHA3eg1nGdQ0w=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.475927+00 2025-12-09 10:14:44.475932+00 4469 JS0974-A2#LWQ15 SPMX-20240815299595 \N \N \N 1 \N [{"file_id": "b388ad3d-c1b6-49b3-addf-687ecb7d0a2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "344315878ca141f8920f504e1364d3e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "344315878ca141f8920f504e1364d3e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "344315878ca141f8920f504e1364d3e5.jpg", "file_size": 22442, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344315878ca141f8920f504e1364d3e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344315878ca141f8920f504e1364d3e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344315878ca141f8920f504e1364d3e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/344315878ca141f8920f504e1364d3e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/344315878ca141f8920f504e1364d3e5.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8XLDAPybuUJnxNbGZ2VR82XZfX8=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.477073+00 2025-12-09 10:14:44.477077+00 4470 23-2101#A21前后片4XL SPMX-20240815299599 \N \N \N 1 \N [{"file_id": "91bdba5c-4c47-45a4-88bc-59b83db63dfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8d46fba2a64788bbc8cc29b12dea71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8d46fba2a64788bbc8cc29b12dea71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8d46fba2a64788bbc8cc29b12dea71.jpg", "file_size": 9316, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A21前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8d46fba2a64788bbc8cc29b12dea71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8d46fba2a64788bbc8cc29b12dea71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8d46fba2a64788bbc8cc29b12dea71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8d46fba2a64788bbc8cc29b12dea71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8d46fba2a64788bbc8cc29b12dea71.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQ8qN0nUhCbq6O_i9Lqg2jQ1bLQ=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.478253+00 2025-12-09 10:14:44.478257+00 4471 LZ120#童装T4号色 SPMX-20240815299603 \N \N \N 1 \N [{"file_id": "6555d044-9ad7-44f5-b808-72474d439697", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6fe2fb8847646ed8cf4718f3bf73e4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6fe2fb8847646ed8cf4718f3bf73e4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6fe2fb8847646ed8cf4718f3bf73e4b.jpg", "file_size": 16469, "is_delete": false, "file_type": 1, "original_file_name": "LZ120#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fe2fb8847646ed8cf4718f3bf73e4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fe2fb8847646ed8cf4718f3bf73e4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fe2fb8847646ed8cf4718f3bf73e4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6fe2fb8847646ed8cf4718f3bf73e4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6fe2fb8847646ed8cf4718f3bf73e4b.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uP7vbZv5h-9_6LgLXWOISbUUU5c=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.479421+00 2025-12-09 10:14:44.479426+00 4472 DH20220779FW#L短袖口绿 SPMX-20240815299605 \N \N \N 1 \N [{"file_id": "5cbe8e85-22c6-4f94-9ce9-e32f21bbfccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cef9736f75dd4484ba7c99cbb7c4e3ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cef9736f75dd4484ba7c99cbb7c4e3ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cef9736f75dd4484ba7c99cbb7c4e3ab.jpg", "file_size": 13462, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef9736f75dd4484ba7c99cbb7c4e3ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef9736f75dd4484ba7c99cbb7c4e3ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef9736f75dd4484ba7c99cbb7c4e3ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cef9736f75dd4484ba7c99cbb7c4e3ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cef9736f75dd4484ba7c99cbb7c4e3ab.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peyY37dj_PX8YD43oIyAk6uPYac=", "createTime": "2024-08-15 14:40:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.480583+00 2025-12-09 10:14:44.480587+00 4473 LHJ9192#25#土黄 SPMX-20240815299606 \N \N \N 1 \N [{"file_id": "79655988-80be-4ab9-94eb-29f418a871ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b813398978e4c2ebbec38459b31343d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b813398978e4c2ebbec38459b31343d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b813398978e4c2ebbec38459b31343d.jpg", "file_size": 11137, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9192#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b813398978e4c2ebbec38459b31343d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b813398978e4c2ebbec38459b31343d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b813398978e4c2ebbec38459b31343d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b813398978e4c2ebbec38459b31343d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b813398978e4c2ebbec38459b31343d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSnPXFrm9oPOW9N3NNutsGKHw_s=", "createTime": "2024-08-15 14:40:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.481764+00 2025-12-09 10:14:44.481768+00 4474 23-2101#A21袖子3XL SPMX-20240815299607 \N \N \N 1 \N [{"file_id": "38629aaf-990a-4714-a6b0-62ae90d3e5af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5410cb7ff7b148c69ade14e1a3c72991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5410cb7ff7b148c69ade14e1a3c72991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5410cb7ff7b148c69ade14e1a3c72991.jpg", "file_size": 6269, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A21袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cb7ff7b148c69ade14e1a3c72991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cb7ff7b148c69ade14e1a3c72991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cb7ff7b148c69ade14e1a3c72991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5410cb7ff7b148c69ade14e1a3c72991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5410cb7ff7b148c69ade14e1a3c72991.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLcR4j082uLFMW0usTtZcGIiwks=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.482902+00 2025-12-09 10:14:44.482906+00 4475 JS0974-A2#RC23 SPMX-20240815299608 \N \N \N 1 \N [{"file_id": "4d956dc0-1976-4954-bd98-da7379f9c62c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92cfd194e603463aa3465e91e42def67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92cfd194e603463aa3465e91e42def67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92cfd194e603463aa3465e91e42def67.jpg", "file_size": 15553, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92cfd194e603463aa3465e91e42def67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92cfd194e603463aa3465e91e42def67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92cfd194e603463aa3465e91e42def67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92cfd194e603463aa3465e91e42def67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92cfd194e603463aa3465e91e42def67.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dAVZ3LXWlxOI-ncGIfz8JUVcKQ=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.484058+00 2025-12-09 10:14:44.484062+00 4476 C23130#S SPMX-20240815299609 \N \N \N 1 \N [{"file_id": "82070bae-118f-4097-adb0-7dd90f24f24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f94e9f920d554db9875ecd2b7ce0e1fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f94e9f920d554db9875ecd2b7ce0e1fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f94e9f920d554db9875ecd2b7ce0e1fe.jpg", "file_size": 23829, "is_delete": false, "file_type": 1, "original_file_name": "C23130#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94e9f920d554db9875ecd2b7ce0e1fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94e9f920d554db9875ecd2b7ce0e1fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94e9f920d554db9875ecd2b7ce0e1fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f94e9f920d554db9875ecd2b7ce0e1fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f94e9f920d554db9875ecd2b7ce0e1fe.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TuVL16himwD8XK0X1Hz1oS7YD-8=", "createTime": "2024-08-15 14:40:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.485211+00 2025-12-09 10:14:44.485215+00 4477 1045FWF#上身彩兰XL SPMX-20240815299623 \N \N \N 1 \N [{"file_id": "2394eb92-2ea8-46fa-a365-7e9ac5bf910a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a9468443878405098e8f618a155a98e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a9468443878405098e8f618a155a98e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a9468443878405098e8f618a155a98e.jpg", "file_size": 23190, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9468443878405098e8f618a155a98e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9468443878405098e8f618a155a98e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9468443878405098e8f618a155a98e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a9468443878405098e8f618a155a98e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a9468443878405098e8f618a155a98e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jHFxod617C0kjPze9uztJW44dw=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.486345+00 2025-12-09 10:14:44.48635+00 4478 8006#咖色XL SPMX-20240815299625 \N \N \N 1 \N [{"file_id": "15801f1c-ebb6-437f-bcc7-e29926e2e5f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d543218f51e24769b78835155735cf9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d543218f51e24769b78835155735cf9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d543218f51e24769b78835155735cf9e.jpg", "file_size": 73179, "is_delete": false, "file_type": 1, "original_file_name": "8006#咖色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d543218f51e24769b78835155735cf9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d543218f51e24769b78835155735cf9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d543218f51e24769b78835155735cf9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d543218f51e24769b78835155735cf9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d543218f51e24769b78835155735cf9e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ri08YSGK9_6tV79jxM_WTJkeMFs=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.487469+00 2025-12-09 10:14:44.487473+00 4479 0001-73FWF#V5曲线 SPMX-20240815299610 \N \N \N 1 \N [{"file_id": "6922d338-31b2-4b7d-8fd6-bdfe448fe641", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "193e29335a6b4b2bb2f1c0a60e3bca01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "193e29335a6b4b2bb2f1c0a60e3bca01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "193e29335a6b4b2bb2f1c0a60e3bca01.jpg", "file_size": 18216, "is_delete": false, "file_type": 1, "original_file_name": "0001-73FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193e29335a6b4b2bb2f1c0a60e3bca01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193e29335a6b4b2bb2f1c0a60e3bca01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193e29335a6b4b2bb2f1c0a60e3bca01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/193e29335a6b4b2bb2f1c0a60e3bca01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/193e29335a6b4b2bb2f1c0a60e3bca01.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:to2I7rNeoAYdIgAzWupfiRi2Iug=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.488607+00 2025-12-09 10:14:44.488611+00 4480 HSH043FW#VS-D3 SPMX-20240815299613 \N \N \N 1 \N [{"file_id": "6e8276c6-5709-45f8-b0c3-49a77c3bf53a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62047b65a604405bbb2682866360998c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62047b65a604405bbb2682866360998c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62047b65a604405bbb2682866360998c.jpg", "file_size": 24610, "is_delete": false, "file_type": 1, "original_file_name": "HSH043FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62047b65a604405bbb2682866360998c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62047b65a604405bbb2682866360998c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62047b65a604405bbb2682866360998c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62047b65a604405bbb2682866360998c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62047b65a604405bbb2682866360998c.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LjbHtXIVTmeU74UnZDzVWU9j3Q=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.489949+00 2025-12-09 10:14:44.489954+00 4481 JS0974-A20#RC23 SPMX-20240815299619 \N \N \N 1 \N [{"file_id": "57eb534a-9ae5-4352-8e68-974d32e48174", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9194eb46ce6f467c8f3e052a8540e8de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9194eb46ce6f467c8f3e052a8540e8de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9194eb46ce6f467c8f3e052a8540e8de.jpg", "file_size": 43521, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A20#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9194eb46ce6f467c8f3e052a8540e8de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9194eb46ce6f467c8f3e052a8540e8de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9194eb46ce6f467c8f3e052a8540e8de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9194eb46ce6f467c8f3e052a8540e8de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9194eb46ce6f467c8f3e052a8540e8de.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_WhUszYEayr-V8_oA60zYFiRI8=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.491144+00 2025-12-09 10:14:44.491149+00 4482 LZ1200#上身1号色 SPMX-20240815299621 \N \N \N 1 \N [{"file_id": "c9adcfea-24c3-4a5f-9cb6-874f9fb33a46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d190f6207d0c4038b60a569ffb2c7870.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d190f6207d0c4038b60a569ffb2c7870.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d190f6207d0c4038b60a569ffb2c7870.jpg", "file_size": 18555, "is_delete": false, "file_type": 1, "original_file_name": "LZ1200#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d190f6207d0c4038b60a569ffb2c7870.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d190f6207d0c4038b60a569ffb2c7870.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d190f6207d0c4038b60a569ffb2c7870.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d190f6207d0c4038b60a569ffb2c7870.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d190f6207d0c4038b60a569ffb2c7870.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VtQ9GtUZQxC-ctcodhx4hTdYnE=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.492337+00 2025-12-09 10:14:44.492341+00 4483 8006#咖色L SPMX-20240815299614 \N \N \N 1 \N [{"file_id": "34ca4bfb-85a6-429c-bfea-5402ef75565e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5cbeba5cd174487a369949adb6614cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5cbeba5cd174487a369949adb6614cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5cbeba5cd174487a369949adb6614cf.jpg", "file_size": 76225, "is_delete": false, "file_type": 1, "original_file_name": "8006#咖色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cbeba5cd174487a369949adb6614cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cbeba5cd174487a369949adb6614cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cbeba5cd174487a369949adb6614cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5cbeba5cd174487a369949adb6614cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5cbeba5cd174487a369949adb6614cf.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhwDjsoh27dM53SyWSsPrNhZigs=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.49365+00 2025-12-09 10:14:44.493656+00 4484 0001-74FWF#V5曲线 SPMX-20240815299620 \N \N \N 1 \N [{"file_id": "549f1920-5710-4be9-ad87-86b4eba8c240", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02b3312421c64bd7b3ca932e9a428925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02b3312421c64bd7b3ca932e9a428925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02b3312421c64bd7b3ca932e9a428925.jpg", "file_size": 21764, "is_delete": false, "file_type": 1, "original_file_name": "0001-74FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3312421c64bd7b3ca932e9a428925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3312421c64bd7b3ca932e9a428925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3312421c64bd7b3ca932e9a428925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02b3312421c64bd7b3ca932e9a428925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02b3312421c64bd7b3ca932e9a428925.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3AE2shwhUfnsSNlO-4H_wtOk5pM=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.494904+00 2025-12-09 10:14:44.494908+00 4485 DH20220779FW#L短袖口蓝 SPMX-20240815299616 \N \N \N 1 \N [{"file_id": "46ec26d3-3993-4230-89f6-ed0eba092c33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84db3831060344bbb89f08193da1a68d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84db3831060344bbb89f08193da1a68d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84db3831060344bbb89f08193da1a68d.jpg", "file_size": 14602, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖口蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84db3831060344bbb89f08193da1a68d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84db3831060344bbb89f08193da1a68d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84db3831060344bbb89f08193da1a68d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84db3831060344bbb89f08193da1a68d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84db3831060344bbb89f08193da1a68d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGjvKnUToUdVx6aw5Qw15bOzFbI=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.496057+00 2025-12-09 10:14:44.496061+00 4486 23-2101#A21袖子4XL SPMX-20240815299618 \N \N \N 1 \N [{"file_id": "4e24decb-729e-4c29-9826-8de3e325d573", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9339cb3b0eb147d2a11610a0c6ea232e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9339cb3b0eb147d2a11610a0c6ea232e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9339cb3b0eb147d2a11610a0c6ea232e.jpg", "file_size": 7202, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A21袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339cb3b0eb147d2a11610a0c6ea232e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339cb3b0eb147d2a11610a0c6ea232e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339cb3b0eb147d2a11610a0c6ea232e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9339cb3b0eb147d2a11610a0c6ea232e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9339cb3b0eb147d2a11610a0c6ea232e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIFnYQnKSGQxGijlW3_N188midA=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.497241+00 2025-12-09 10:14:44.497246+00 4487 HSH044FW#彩蓝VS-D3 SPMX-20240815299624 \N \N \N 1 \N [{"file_id": "635a98f5-892b-4233-94a0-ae166cfbfe24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49c9f8d456024e1f93e8bb396298a54d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49c9f8d456024e1f93e8bb396298a54d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49c9f8d456024e1f93e8bb396298a54d.jpg", "file_size": 19465, "is_delete": false, "file_type": 1, "original_file_name": "HSH044FW#彩蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c9f8d456024e1f93e8bb396298a54d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c9f8d456024e1f93e8bb396298a54d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c9f8d456024e1f93e8bb396298a54d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49c9f8d456024e1f93e8bb396298a54d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49c9f8d456024e1f93e8bb396298a54d.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZiQeUOkQrkdmuUitQR6t2JDXJg=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.498442+00 2025-12-09 10:14:44.498447+00 4488 1045FWF#上身彩兰L SPMX-20240815299612 \N \N \N 1 \N [{"file_id": "03207f18-cb21-4e0a-90ee-aa02eef4f0bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510eb6b5204e4e98b5943d123a7c99f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510eb6b5204e4e98b5943d123a7c99f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510eb6b5204e4e98b5943d123a7c99f8.jpg", "file_size": 23252, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510eb6b5204e4e98b5943d123a7c99f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510eb6b5204e4e98b5943d123a7c99f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510eb6b5204e4e98b5943d123a7c99f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510eb6b5204e4e98b5943d123a7c99f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510eb6b5204e4e98b5943d123a7c99f8.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GU-ZC_IJRvpbfO6-nbvEISUMgEQ=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.499645+00 2025-12-09 10:14:44.499649+00 4489 C23130#XL SPMX-20240815299622 \N \N \N 1 \N [{"file_id": "523c7cab-3dff-49f6-a983-716112fcdf00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ec1d45b9a44450185fd4e083931426a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ec1d45b9a44450185fd4e083931426a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ec1d45b9a44450185fd4e083931426a.jpg", "file_size": 23498, "is_delete": false, "file_type": 1, "original_file_name": "C23130#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec1d45b9a44450185fd4e083931426a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec1d45b9a44450185fd4e083931426a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec1d45b9a44450185fd4e083931426a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ec1d45b9a44450185fd4e083931426a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ec1d45b9a44450185fd4e083931426a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USszpmlIJErCCAaXCkt6d0hbIEE=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.500797+00 2025-12-09 10:14:44.500801+00 4490 LZ120#童装T5号色 SPMX-20240815299611 \N \N \N 1 \N [{"file_id": "7efa0e49-804f-4e48-b941-c645ce65ce44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa00025440dd48129464a463882f0f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa00025440dd48129464a463882f0f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa00025440dd48129464a463882f0f8e.jpg", "file_size": 17168, "is_delete": false, "file_type": 1, "original_file_name": "LZ120#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa00025440dd48129464a463882f0f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa00025440dd48129464a463882f0f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa00025440dd48129464a463882f0f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa00025440dd48129464a463882f0f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa00025440dd48129464a463882f0f8e.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbDsBD2er0h6nZrmlfiyZOVkRkk=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.501968+00 2025-12-09 10:14:44.501973+00 4491 FHXGPK-001-5 SPMX-20240815299615 \N \N \N 1 \N [{"file_id": "2f8cd1f7-3cca-49c6-872c-c09de5b71463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2fe24f87a88448d9a023a02dde8d9d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2fe24f87a88448d9a023a02dde8d9d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2fe24f87a88448d9a023a02dde8d9d1.jpg", "file_size": 33448, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-001-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fe24f87a88448d9a023a02dde8d9d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fe24f87a88448d9a023a02dde8d9d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fe24f87a88448d9a023a02dde8d9d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2fe24f87a88448d9a023a02dde8d9d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2fe24f87a88448d9a023a02dde8d9d1.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jrVjpucOKnHn7YLrKSqeoqvDyI=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.503148+00 2025-12-09 10:14:44.503153+00 4492 LHJ9192#5#彩兰 SPMX-20240815299617 \N \N \N 1 \N [{"file_id": "eb159dcf-e072-46cf-bb4d-daa54c6931ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1126414860fc4636bcce9ce39d740543.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1126414860fc4636bcce9ce39d740543.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1126414860fc4636bcce9ce39d740543.jpg", "file_size": 11169, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9192#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1126414860fc4636bcce9ce39d740543.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1126414860fc4636bcce9ce39d740543.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1126414860fc4636bcce9ce39d740543.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1126414860fc4636bcce9ce39d740543.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1126414860fc4636bcce9ce39d740543.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5oUCOP9AiO6INaBf3PrBg6RkMX0=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.504318+00 2025-12-09 10:14:44.504322+00 4493 0001-75FWF#V5曲线 SPMX-20240815299630 \N \N \N 1 \N [{"file_id": "2e357fcc-8bb0-48d4-b163-f11679afac8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b653cdacdb4af8b7c86403715ff96f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b653cdacdb4af8b7c86403715ff96f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b653cdacdb4af8b7c86403715ff96f.jpg", "file_size": 12219, "is_delete": false, "file_type": 1, "original_file_name": "0001-75FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b653cdacdb4af8b7c86403715ff96f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b653cdacdb4af8b7c86403715ff96f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b653cdacdb4af8b7c86403715ff96f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b653cdacdb4af8b7c86403715ff96f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b653cdacdb4af8b7c86403715ff96f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18803pCDGXeivHMkxhBTGUnl6dI=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.505446+00 2025-12-09 10:14:44.50545+00 4494 C23131#L SPMX-20240815299635 \N \N \N 1 \N [{"file_id": "c620da62-c87a-4ee5-bd7b-64ac631edb56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffaba16ca02c4358b41b30636e44bd17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffaba16ca02c4358b41b30636e44bd17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffaba16ca02c4358b41b30636e44bd17.jpg", "file_size": 18871, "is_delete": false, "file_type": 1, "original_file_name": "C23131#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaba16ca02c4358b41b30636e44bd17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaba16ca02c4358b41b30636e44bd17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaba16ca02c4358b41b30636e44bd17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffaba16ca02c4358b41b30636e44bd17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffaba16ca02c4358b41b30636e44bd17.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B98aES6Aw_BZDwPYFVnzGvuUcBs=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.506606+00 2025-12-09 10:14:44.50661+00 4495 23-2101#A21领子通用 SPMX-20240815299629 \N \N \N 1 \N [{"file_id": "b60a7355-6c9e-437a-9edb-d21cfe249565", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21c07e2822874fc0a3842f972db99bf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21c07e2822874fc0a3842f972db99bf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21c07e2822874fc0a3842f972db99bf6.jpg", "file_size": 8332, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A21领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c07e2822874fc0a3842f972db99bf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c07e2822874fc0a3842f972db99bf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c07e2822874fc0a3842f972db99bf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21c07e2822874fc0a3842f972db99bf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21c07e2822874fc0a3842f972db99bf6.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7dQXjAcGEaOynu8AMSoELHWOHQ=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.507751+00 2025-12-09 10:14:44.507756+00 4496 HSH044FW#白VS-D3 SPMX-20240815299636 \N \N \N 1 \N [{"file_id": "c3fdfe81-9312-4264-8a65-8f4cd8688749", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac680b92888242ca9b2d42338c267b3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac680b92888242ca9b2d42338c267b3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac680b92888242ca9b2d42338c267b3a.jpg", "file_size": 15286, "is_delete": false, "file_type": 1, "original_file_name": "HSH044FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac680b92888242ca9b2d42338c267b3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac680b92888242ca9b2d42338c267b3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac680b92888242ca9b2d42338c267b3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac680b92888242ca9b2d42338c267b3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac680b92888242ca9b2d42338c267b3a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fU7WWmibN2ODG2DN05qeshJok1M=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.509205+00 2025-12-09 10:14:44.50921+00 4497 LHJ9193#122#绿 SPMX-20240815299628 \N \N \N 1 \N [{"file_id": "18df58ff-bcf2-43d3-871c-b9e2b75009a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "640f9a42b6ef4431bbe6aea08d231273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "640f9a42b6ef4431bbe6aea08d231273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "640f9a42b6ef4431bbe6aea08d231273.jpg", "file_size": 8725, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#122#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640f9a42b6ef4431bbe6aea08d231273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640f9a42b6ef4431bbe6aea08d231273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640f9a42b6ef4431bbe6aea08d231273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/640f9a42b6ef4431bbe6aea08d231273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/640f9a42b6ef4431bbe6aea08d231273.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fA0Qvv5cLocGk8LGrEesL42Hogc=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.510553+00 2025-12-09 10:14:44.510558+00 4498 1045FWF#上身玫红2XL SPMX-20240815299633 \N \N \N 1 \N [{"file_id": "94f34fc0-cd7e-4e1b-82fe-f1d811d55ddb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d269d8c77fd45e4bdf485544d10a0a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d269d8c77fd45e4bdf485544d10a0a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d269d8c77fd45e4bdf485544d10a0a8.jpg", "file_size": 24496, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身玫红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d269d8c77fd45e4bdf485544d10a0a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d269d8c77fd45e4bdf485544d10a0a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d269d8c77fd45e4bdf485544d10a0a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d269d8c77fd45e4bdf485544d10a0a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d269d8c77fd45e4bdf485544d10a0a8.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hWlZb1NUj0oQ-JxDPLsGmbe988=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.511911+00 2025-12-09 10:14:44.511916+00 4499 23-2101#A22前后片3XL SPMX-20240815299637 \N \N \N 1 \N [{"file_id": "63a1f53e-a1fd-4b88-a068-01c028a077dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcd6da88d96b4e30b81dfb9b07fcec5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcd6da88d96b4e30b81dfb9b07fcec5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcd6da88d96b4e30b81dfb9b07fcec5f.jpg", "file_size": 9115, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A22前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcd6da88d96b4e30b81dfb9b07fcec5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcd6da88d96b4e30b81dfb9b07fcec5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcd6da88d96b4e30b81dfb9b07fcec5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcd6da88d96b4e30b81dfb9b07fcec5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcd6da88d96b4e30b81dfb9b07fcec5f.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3FW8spNNCwl_48nruwBaKpvQWE=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.513247+00 2025-12-09 10:14:44.513253+00 4500 FHXGPK-002-2 SPMX-20240815299638 \N \N \N 1 \N [{"file_id": "2251a4c7-14f9-4c06-82e3-dbcc1ca1e92a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ce9d9f5bcd469abac0add6f8c767f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ce9d9f5bcd469abac0add6f8c767f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ce9d9f5bcd469abac0add6f8c767f3.jpg", "file_size": 30473, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ce9d9f5bcd469abac0add6f8c767f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ce9d9f5bcd469abac0add6f8c767f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ce9d9f5bcd469abac0add6f8c767f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ce9d9f5bcd469abac0add6f8c767f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ce9d9f5bcd469abac0add6f8c767f3.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HagN4873FX4zgi-dgO4lGkxJYes=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.514608+00 2025-12-09 10:14:44.514613+00 4501 JS0974-A20#净色RC23 SPMX-20240815299631 \N \N \N 1 \N [{"file_id": "9666ade6-4eeb-4913-bd14-7e6a803cb144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cf7ee74e073405aae0032bc112b1730.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cf7ee74e073405aae0032bc112b1730.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cf7ee74e073405aae0032bc112b1730.jpg", "file_size": 72591, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A20#净色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf7ee74e073405aae0032bc112b1730.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf7ee74e073405aae0032bc112b1730.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf7ee74e073405aae0032bc112b1730.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cf7ee74e073405aae0032bc112b1730.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cf7ee74e073405aae0032bc112b1730.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frpYtJTDZnEwsR0GBZQyvbauh-I=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.515953+00 2025-12-09 10:14:44.515957+00 4502 DH20220779FW#L短袖浅蓝 SPMX-20240815299640 \N \N \N 1 \N [{"file_id": "47baa619-f949-40b5-8107-c0baa99db7ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57e9c5a383e14fd4b14d7ddb2aa68148.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57e9c5a383e14fd4b14d7ddb2aa68148.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57e9c5a383e14fd4b14d7ddb2aa68148.jpg", "file_size": 15982, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e9c5a383e14fd4b14d7ddb2aa68148.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e9c5a383e14fd4b14d7ddb2aa68148.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e9c5a383e14fd4b14d7ddb2aa68148.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57e9c5a383e14fd4b14d7ddb2aa68148.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57e9c5a383e14fd4b14d7ddb2aa68148.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PpkYDp6d__nULAQklkk70JFgUuA=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.517292+00 2025-12-09 10:14:44.517297+00 4503 FHXGPK-002-1 SPMX-20240815299627 \N \N \N 1 \N [{"file_id": "148ddc4f-c426-4f93-8724-645b2b319ac7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d34c7cd41320422ca8a1dfe5c67f2709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d34c7cd41320422ca8a1dfe5c67f2709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d34c7cd41320422ca8a1dfe5c67f2709.jpg", "file_size": 35344, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34c7cd41320422ca8a1dfe5c67f2709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34c7cd41320422ca8a1dfe5c67f2709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34c7cd41320422ca8a1dfe5c67f2709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d34c7cd41320422ca8a1dfe5c67f2709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d34c7cd41320422ca8a1dfe5c67f2709.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYXdo6RZI4YhLDChdLa_XmjMfGc=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.518636+00 2025-12-09 10:14:44.518641+00 4504 8006#咖色批布文件共用 SPMX-20240815299634 \N \N \N 1 \N [{"file_id": "fbe110f6-11fd-43ee-8f79-281a0140de3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "716dd232bfd8405985339c01dfdcbb34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "716dd232bfd8405985339c01dfdcbb34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "716dd232bfd8405985339c01dfdcbb34.jpg", "file_size": 38265, "is_delete": false, "file_type": 1, "original_file_name": "8006#咖色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/716dd232bfd8405985339c01dfdcbb34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/716dd232bfd8405985339c01dfdcbb34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/716dd232bfd8405985339c01dfdcbb34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/716dd232bfd8405985339c01dfdcbb34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/716dd232bfd8405985339c01dfdcbb34.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iSPUxDu_zTORbAZ6t_0isIq-cRs=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.52001+00 2025-12-09 10:14:44.520015+00 4505 DH20220779FW#L短袖橙 SPMX-20240815299626 \N \N \N 1 \N [{"file_id": "d8e12e48-2948-49ed-8af1-f05f978f3a7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74e439bc15574cc08bc6c120effd6ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74e439bc15574cc08bc6c120effd6ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74e439bc15574cc08bc6c120effd6ce3.jpg", "file_size": 17084, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e439bc15574cc08bc6c120effd6ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e439bc15574cc08bc6c120effd6ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e439bc15574cc08bc6c120effd6ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74e439bc15574cc08bc6c120effd6ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74e439bc15574cc08bc6c120effd6ce3.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LD33ISHf0056vI6n5MI5YHj3GaY=", "createTime": "2024-08-15 14:40:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.521633+00 2025-12-09 10:14:44.521638+00 4506 LZ1200#上身2号色 SPMX-20240815299632 \N \N \N 1 \N [{"file_id": "e0fc8c5f-c547-4cd7-b5c9-d64b868653aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e66bec4811a34b9a9f0666b8a1a80109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e66bec4811a34b9a9f0666b8a1a80109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e66bec4811a34b9a9f0666b8a1a80109.jpg", "file_size": 18345, "is_delete": false, "file_type": 1, "original_file_name": "LZ1200#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66bec4811a34b9a9f0666b8a1a80109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66bec4811a34b9a9f0666b8a1a80109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66bec4811a34b9a9f0666b8a1a80109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e66bec4811a34b9a9f0666b8a1a80109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e66bec4811a34b9a9f0666b8a1a80109.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CH4my9gohUFJ4FAPZVyVCgpHqyI=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.523266+00 2025-12-09 10:14:44.523271+00 4507 LHJ9193#14#粉 SPMX-20240815299639 \N \N \N 1 \N [{"file_id": "0b5487e1-26de-409b-9a1b-380d1900bb97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f5cdf30a3184e30b0bb129935a28f93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f5cdf30a3184e30b0bb129935a28f93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f5cdf30a3184e30b0bb129935a28f93.jpg", "file_size": 8486, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#14#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5cdf30a3184e30b0bb129935a28f93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5cdf30a3184e30b0bb129935a28f93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5cdf30a3184e30b0bb129935a28f93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f5cdf30a3184e30b0bb129935a28f93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f5cdf30a3184e30b0bb129935a28f93.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaAmT-lCBF08JrYT3TwdbQ3_36I=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.52489+00 2025-12-09 10:14:44.524894+00 4508 0001-76FWF#V5曲线 SPMX-20240815299643 \N \N \N 1 \N [{"file_id": "d8ffc37e-44ac-4753-84d9-c153fdc231ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48b8df871d634093af27fe91301896e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48b8df871d634093af27fe91301896e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48b8df871d634093af27fe91301896e0.jpg", "file_size": 11057, "is_delete": false, "file_type": 1, "original_file_name": "0001-76FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b8df871d634093af27fe91301896e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b8df871d634093af27fe91301896e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b8df871d634093af27fe91301896e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48b8df871d634093af27fe91301896e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48b8df871d634093af27fe91301896e0.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QMZJxAbmZQV0yyjAxrDtIBpygg=", "createTime": "2024-08-15 14:40:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.526526+00 2025-12-09 10:14:44.526531+00 4509 0001-77FWF#V5曲线 SPMX-20240815299654 \N \N \N 1 \N [{"file_id": "b43ad017-262f-44aa-844a-726c5ef8123a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96678573bb404791a2addc622da6088a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96678573bb404791a2addc622da6088a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96678573bb404791a2addc622da6088a.jpg", "file_size": 12096, "is_delete": false, "file_type": 1, "original_file_name": "0001-77FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96678573bb404791a2addc622da6088a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96678573bb404791a2addc622da6088a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96678573bb404791a2addc622da6088a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96678573bb404791a2addc622da6088a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96678573bb404791a2addc622da6088a.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVAc1FoC_fWfmOu6axbBo6qTp68=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.528148+00 2025-12-09 10:14:44.528153+00 4510 C23131#M SPMX-20240815299647 \N \N \N 1 \N [{"file_id": "ab9d616c-7ff9-4d23-b01f-4e6c2ecb23d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5acc66dbea246da9004a5575125e292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5acc66dbea246da9004a5575125e292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5acc66dbea246da9004a5575125e292.jpg", "file_size": 18854, "is_delete": false, "file_type": 1, "original_file_name": "C23131#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5acc66dbea246da9004a5575125e292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5acc66dbea246da9004a5575125e292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5acc66dbea246da9004a5575125e292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5acc66dbea246da9004a5575125e292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5acc66dbea246da9004a5575125e292.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsNHGw-q12nci2PpYm1dZfMMOA4=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:44.529764+00 2025-12-09 10:14:44.529768+00 4511 FHXGPK-002-3 SPMX-20240815299650 \N \N \N 1 \N [{"file_id": "efea3c37-95da-43c7-8817-5535914298e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cd4f76021234e869ac9b274342ebb64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cd4f76021234e869ac9b274342ebb64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cd4f76021234e869ac9b274342ebb64.jpg", "file_size": 36041, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd4f76021234e869ac9b274342ebb64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd4f76021234e869ac9b274342ebb64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd4f76021234e869ac9b274342ebb64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cd4f76021234e869ac9b274342ebb64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cd4f76021234e869ac9b274342ebb64.jpg?e=1765361683&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jx--ErdbDJIYokZXl7hC-DuwMr8=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.17597+00 2025-12-09 10:14:45.17598+00 4512 LHJ9193#20#枣红 SPMX-20240815299651 \N \N \N 1 \N [{"file_id": "323d9a01-7c48-43d0-a93f-1fce5795a44f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcda9994028e4a588296cb14007d8b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcda9994028e4a588296cb14007d8b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcda9994028e4a588296cb14007d8b84.jpg", "file_size": 9104, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcda9994028e4a588296cb14007d8b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcda9994028e4a588296cb14007d8b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcda9994028e4a588296cb14007d8b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcda9994028e4a588296cb14007d8b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcda9994028e4a588296cb14007d8b84.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoZ1kpEzR_2HE8nKZNpXBU6BMa8=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.178544+00 2025-12-09 10:14:45.17855+00 4513 DH20220779FW#L短袖灰 SPMX-20240815299652 \N \N \N 1 \N [{"file_id": "0ff65d14-be27-4709-bf24-7fc0916536b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e8e79afb3c84747bb8782ec1c1c5e01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e8e79afb3c84747bb8782ec1c1c5e01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e8e79afb3c84747bb8782ec1c1c5e01.jpg", "file_size": 15773, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e79afb3c84747bb8782ec1c1c5e01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e79afb3c84747bb8782ec1c1c5e01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e79afb3c84747bb8782ec1c1c5e01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e8e79afb3c84747bb8782ec1c1c5e01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e8e79afb3c84747bb8782ec1c1c5e01.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpHnSrzF_3Y2XxFIYZDWJ7YtfP8=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.18028+00 2025-12-09 10:14:45.180286+00 4514 23-2101#A22前后片4XL SPMX-20240815299646 \N \N \N 1 \N [{"file_id": "64409dc1-6b87-47f8-8331-fb43bb7314e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b15f3872f84930ac35dcfb0c75d4b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b15f3872f84930ac35dcfb0c75d4b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b15f3872f84930ac35dcfb0c75d4b9.jpg", "file_size": 8846, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A22前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b15f3872f84930ac35dcfb0c75d4b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b15f3872f84930ac35dcfb0c75d4b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b15f3872f84930ac35dcfb0c75d4b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b15f3872f84930ac35dcfb0c75d4b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b15f3872f84930ac35dcfb0c75d4b9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIBfWym9jHX_VSY4_QRDFdgky94=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.18183+00 2025-12-09 10:14:45.181837+00 4515 JS0974-A21#RC23 SPMX-20240815299653 \N \N \N 1 \N [{"file_id": "bf149382-2169-4c3b-bf62-d99406573fe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa18f010f21c44d295af7c43b72914ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa18f010f21c44d295af7c43b72914ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa18f010f21c44d295af7c43b72914ad.jpg", "file_size": 49884, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A21#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa18f010f21c44d295af7c43b72914ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa18f010f21c44d295af7c43b72914ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa18f010f21c44d295af7c43b72914ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa18f010f21c44d295af7c43b72914ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa18f010f21c44d295af7c43b72914ad.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxPPcR2yA8JCZxOVUuVp88l2R2w=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.183563+00 2025-12-09 10:14:45.183569+00 4516 JS0974-A20#正身RC23 SPMX-20240815299641 \N \N \N 1 \N [{"file_id": "7481688f-4751-47ea-b937-f35fff17897c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7352e654ba154a34905d00e0798bad45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7352e654ba154a34905d00e0798bad45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7352e654ba154a34905d00e0798bad45.jpg", "file_size": 78283, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A20#正身RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7352e654ba154a34905d00e0798bad45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7352e654ba154a34905d00e0798bad45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7352e654ba154a34905d00e0798bad45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7352e654ba154a34905d00e0798bad45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7352e654ba154a34905d00e0798bad45.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GItoaWXAUzGsampm2kXZ2b5SEY4=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.185555+00 2025-12-09 10:14:45.18556+00 4517 1045FWF#上身玫红L SPMX-20240815299644 \N \N \N 1 \N [{"file_id": "fa1a041c-5542-47d7-a44c-ba30864364b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55fb5fa478a3433a8c12c9c4f1426187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55fb5fa478a3433a8c12c9c4f1426187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55fb5fa478a3433a8c12c9c4f1426187.jpg", "file_size": 23497, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身玫红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fb5fa478a3433a8c12c9c4f1426187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fb5fa478a3433a8c12c9c4f1426187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fb5fa478a3433a8c12c9c4f1426187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55fb5fa478a3433a8c12c9c4f1426187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55fb5fa478a3433a8c12c9c4f1426187.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ad67YvSC-MTidfzxt7mWT4Ykb9I=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.186992+00 2025-12-09 10:14:45.186996+00 4518 LZ1200#上身3号色 SPMX-20240815299645 \N \N \N 1 \N [{"file_id": "4e8c5b6a-e502-4b3b-ad6c-c1f21d94412e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ff7df3b87574209b38c2883b49f00d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ff7df3b87574209b38c2883b49f00d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ff7df3b87574209b38c2883b49f00d4.jpg", "file_size": 17716, "is_delete": false, "file_type": 1, "original_file_name": "LZ1200#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7df3b87574209b38c2883b49f00d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7df3b87574209b38c2883b49f00d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7df3b87574209b38c2883b49f00d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ff7df3b87574209b38c2883b49f00d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ff7df3b87574209b38c2883b49f00d4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM49mucBPEPP8rO3w9Q1sCtsRks=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.188424+00 2025-12-09 10:14:45.188429+00 4519 8006#浅蓝色2XL SPMX-20240815299648 \N \N \N 1 \N [{"file_id": "4a05bed2-4a66-450d-aad2-b4e35e7d77ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96ae04a027c94727b66ed05fc7a238ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96ae04a027c94727b66ed05fc7a238ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96ae04a027c94727b66ed05fc7a238ef.jpg", "file_size": 76397, "is_delete": false, "file_type": 1, "original_file_name": "8006#浅蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ae04a027c94727b66ed05fc7a238ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ae04a027c94727b66ed05fc7a238ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ae04a027c94727b66ed05fc7a238ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96ae04a027c94727b66ed05fc7a238ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96ae04a027c94727b66ed05fc7a238ef.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEjyhoszfs_zNW9U1nZyupncUCo=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.190174+00 2025-12-09 10:14:45.190178+00 4520 1045FWF#上身玫红XL SPMX-20240815299655 \N \N \N 1 \N [{"file_id": "3691dd19-baf5-40c3-af6e-0896d783107c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b48f249b57c5461eb98484e1709b7eb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b48f249b57c5461eb98484e1709b7eb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b48f249b57c5461eb98484e1709b7eb1.jpg", "file_size": 23729, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身玫红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48f249b57c5461eb98484e1709b7eb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48f249b57c5461eb98484e1709b7eb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48f249b57c5461eb98484e1709b7eb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b48f249b57c5461eb98484e1709b7eb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b48f249b57c5461eb98484e1709b7eb1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8SgDLX5oQ88EtQI1mxMY9vLK1w=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.191678+00 2025-12-09 10:14:45.191682+00 4521 HSH044FW#粉VS-D3 SPMX-20240815299649 \N \N \N 1 \N [{"file_id": "112b96a7-fb77-461e-8efd-af0dc73890be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f56fcd1ab7034ff5a5899f0a85e86bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f56fcd1ab7034ff5a5899f0a85e86bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f56fcd1ab7034ff5a5899f0a85e86bc6.jpg", "file_size": 15413, "is_delete": false, "file_type": 1, "original_file_name": "HSH044FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56fcd1ab7034ff5a5899f0a85e86bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56fcd1ab7034ff5a5899f0a85e86bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56fcd1ab7034ff5a5899f0a85e86bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f56fcd1ab7034ff5a5899f0a85e86bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f56fcd1ab7034ff5a5899f0a85e86bc6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yixNBOOo6X0hNuIfCGkCEpqS24=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.193138+00 2025-12-09 10:14:45.193142+00 4522 C23131#XL SPMX-20240815299666 \N \N \N 1 \N [{"file_id": "191b511f-e43d-4a15-b042-d3221477bafc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8380ae871a548eb8f2f4790c59b92a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8380ae871a548eb8f2f4790c59b92a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8380ae871a548eb8f2f4790c59b92a3.jpg", "file_size": 18151, "is_delete": false, "file_type": 1, "original_file_name": "C23131#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8380ae871a548eb8f2f4790c59b92a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8380ae871a548eb8f2f4790c59b92a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8380ae871a548eb8f2f4790c59b92a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8380ae871a548eb8f2f4790c59b92a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8380ae871a548eb8f2f4790c59b92a3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFAsPP6e9WsF5fqKf7rPnl5PFFU=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.195097+00 2025-12-09 10:14:45.195106+00 4523 8006#浅蓝色L SPMX-20240815299660 \N \N \N 1 \N [{"file_id": "036248cc-d3a5-4ec2-b277-c5c5755c606e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ca9d6ae22d1491180895bc779ed0ac6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ca9d6ae22d1491180895bc779ed0ac6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ca9d6ae22d1491180895bc779ed0ac6.jpg", "file_size": 79327, "is_delete": false, "file_type": 1, "original_file_name": "8006#浅蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca9d6ae22d1491180895bc779ed0ac6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca9d6ae22d1491180895bc779ed0ac6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca9d6ae22d1491180895bc779ed0ac6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ca9d6ae22d1491180895bc779ed0ac6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ca9d6ae22d1491180895bc779ed0ac6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiuZEJhAChd3K7rfmZRIs73WcYw=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.197369+00 2025-12-09 10:14:45.197377+00 4524 JS0974-A22#RC23 SPMX-20240815299664 \N \N \N 1 \N [{"file_id": "ce30d9a0-5459-4677-a922-d0e7b50384b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e924b4b042814e6d9da8a33a6dde017b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e924b4b042814e6d9da8a33a6dde017b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e924b4b042814e6d9da8a33a6dde017b.jpg", "file_size": 62525, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A22#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e924b4b042814e6d9da8a33a6dde017b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e924b4b042814e6d9da8a33a6dde017b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e924b4b042814e6d9da8a33a6dde017b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e924b4b042814e6d9da8a33a6dde017b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e924b4b042814e6d9da8a33a6dde017b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPiyELOkzHoVfTvLiGk9KPqNmNs=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.199983+00 2025-12-09 10:14:45.19999+00 4525 DH20220779FW#L短袖白 SPMX-20240815299661 \N \N \N 1 \N [{"file_id": "26d92a36-1c54-4f33-98af-de3ef8503670", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1046f6df8e4c428f8cce2e42fb27fb25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1046f6df8e4c428f8cce2e42fb27fb25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1046f6df8e4c428f8cce2e42fb27fb25.jpg", "file_size": 17409, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1046f6df8e4c428f8cce2e42fb27fb25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1046f6df8e4c428f8cce2e42fb27fb25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1046f6df8e4c428f8cce2e42fb27fb25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1046f6df8e4c428f8cce2e42fb27fb25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1046f6df8e4c428f8cce2e42fb27fb25.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMKuNQ-MYLXzQbTBbiCTZeDLZtc=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.20205+00 2025-12-09 10:14:45.202056+00 4526 23-2101#A22袖子4XL SPMX-20240815299668 \N \N \N 1 \N [{"file_id": "52773f93-bd01-4325-a7fe-1a4c9435a481", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43137ce6fb854e33a39bd16bb1ca01f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43137ce6fb854e33a39bd16bb1ca01f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43137ce6fb854e33a39bd16bb1ca01f9.jpg", "file_size": 9369, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A22袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43137ce6fb854e33a39bd16bb1ca01f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43137ce6fb854e33a39bd16bb1ca01f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43137ce6fb854e33a39bd16bb1ca01f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43137ce6fb854e33a39bd16bb1ca01f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43137ce6fb854e33a39bd16bb1ca01f9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtBoqWcoL9Z5A4ysdpPt7tqXnTA=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.203735+00 2025-12-09 10:14:45.20374+00 4527 23-2101#A22袖子3XL SPMX-20240815299657 \N \N \N 1 \N [{"file_id": "e3288863-11a2-4e99-b8c3-71022bcfe185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c87d62d34fae4e2f8891a7347ca5ec31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c87d62d34fae4e2f8891a7347ca5ec31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c87d62d34fae4e2f8891a7347ca5ec31.jpg", "file_size": 10481, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A22袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c87d62d34fae4e2f8891a7347ca5ec31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c87d62d34fae4e2f8891a7347ca5ec31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c87d62d34fae4e2f8891a7347ca5ec31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c87d62d34fae4e2f8891a7347ca5ec31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c87d62d34fae4e2f8891a7347ca5ec31.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIjWeXQSS9ynAF1mQKsXI3-3bu0=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.205619+00 2025-12-09 10:14:45.205624+00 4528 HSH044FW#红VS-D3 SPMX-20240815299659 \N \N \N 1 \N [{"file_id": "6679cdc6-90d1-4cf7-9a0d-082bc21bfd13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5771b1ddfe934f638386ba03b138370f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5771b1ddfe934f638386ba03b138370f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5771b1ddfe934f638386ba03b138370f.jpg", "file_size": 18805, "is_delete": false, "file_type": 1, "original_file_name": "HSH044FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5771b1ddfe934f638386ba03b138370f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5771b1ddfe934f638386ba03b138370f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5771b1ddfe934f638386ba03b138370f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5771b1ddfe934f638386ba03b138370f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5771b1ddfe934f638386ba03b138370f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHTJrbe5HTy61ob9ExuCW8o_ZsQ=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.207526+00 2025-12-09 10:14:45.207532+00 4529 0001-78FWF#V5曲线 SPMX-20240815299667 \N \N \N 1 \N [{"file_id": "145dcca0-d1d1-4e7a-ac41-edad6188f903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7f0e320e52e4fc4a9ea491bff059898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7f0e320e52e4fc4a9ea491bff059898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7f0e320e52e4fc4a9ea491bff059898.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "0001-78FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f0e320e52e4fc4a9ea491bff059898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f0e320e52e4fc4a9ea491bff059898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7f0e320e52e4fc4a9ea491bff059898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7f0e320e52e4fc4a9ea491bff059898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7f0e320e52e4fc4a9ea491bff059898.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tUaRBCwZ6DgwrR96CU8fhdlM1bo=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.209428+00 2025-12-09 10:14:45.209435+00 4530 LZ1200#上身5号色 SPMX-20240815299669 \N \N \N 1 \N [{"file_id": "483f7211-a623-4373-9a79-2ce14908ec1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aace124dbed4869873a1e1edde0fe55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aace124dbed4869873a1e1edde0fe55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aace124dbed4869873a1e1edde0fe55.jpg", "file_size": 19210, "is_delete": false, "file_type": 1, "original_file_name": "LZ1200#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aace124dbed4869873a1e1edde0fe55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aace124dbed4869873a1e1edde0fe55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aace124dbed4869873a1e1edde0fe55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aace124dbed4869873a1e1edde0fe55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aace124dbed4869873a1e1edde0fe55.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1331kbadZ2aJerVQ7S7ME6SqVnc=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.211065+00 2025-12-09 10:14:45.21107+00 4531 HSH045FW#VS-D3 SPMX-20240815299670 \N \N \N 1 \N [{"file_id": "1ac8cf67-29b8-4af1-8c44-b229d6e1eb51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab19047cdeef4f368ac6f115482f8b4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab19047cdeef4f368ac6f115482f8b4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab19047cdeef4f368ac6f115482f8b4e.jpg", "file_size": 8182, "is_delete": false, "file_type": 1, "original_file_name": "HSH045FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab19047cdeef4f368ac6f115482f8b4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab19047cdeef4f368ac6f115482f8b4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab19047cdeef4f368ac6f115482f8b4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab19047cdeef4f368ac6f115482f8b4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab19047cdeef4f368ac6f115482f8b4e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zw02EOskXiYnyYiYLmOPH01iPYI=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.212713+00 2025-12-09 10:14:45.212718+00 4532 LHJ9193#22#玫红 SPMX-20240815299663 \N \N \N 1 \N [{"file_id": "c4de2373-2e5c-46f1-8378-e3b815d174bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "788743777c10426fa67af97896659d91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "788743777c10426fa67af97896659d91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "788743777c10426fa67af97896659d91.jpg", "file_size": 9296, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#22#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788743777c10426fa67af97896659d91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788743777c10426fa67af97896659d91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788743777c10426fa67af97896659d91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/788743777c10426fa67af97896659d91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/788743777c10426fa67af97896659d91.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dLOH4mJKoXwrV_TZhc2ONwJ5ldo=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.214606+00 2025-12-09 10:14:45.214612+00 4533 FHXGPK-002-4 SPMX-20240815299662 \N \N \N 1 \N [{"file_id": "921144c4-3afe-46ff-be0c-2739feb34ddf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0c1d1d547e644eea93d8840fca28a57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0c1d1d547e644eea93d8840fca28a57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0c1d1d547e644eea93d8840fca28a57.jpg", "file_size": 38944, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c1d1d547e644eea93d8840fca28a57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c1d1d547e644eea93d8840fca28a57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c1d1d547e644eea93d8840fca28a57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0c1d1d547e644eea93d8840fca28a57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0c1d1d547e644eea93d8840fca28a57.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_sCaKiTADhkQtpT9UH91rDZBtuY=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.216441+00 2025-12-09 10:14:45.216445+00 4534 C23131#S SPMX-20240815299656 \N \N \N 1 \N [{"file_id": "21bf83a7-4a61-48c4-87dd-3ee60154c5ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eafa8e37d2904b8a8370636bcb631686.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eafa8e37d2904b8a8370636bcb631686.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eafa8e37d2904b8a8370636bcb631686.jpg", "file_size": 18549, "is_delete": false, "file_type": 1, "original_file_name": "C23131#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eafa8e37d2904b8a8370636bcb631686.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eafa8e37d2904b8a8370636bcb631686.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eafa8e37d2904b8a8370636bcb631686.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eafa8e37d2904b8a8370636bcb631686.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eafa8e37d2904b8a8370636bcb631686.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YL-D3sYrTFpDiYEi9Awr0mq8aeI=", "createTime": "2024-08-15 14:40:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.217957+00 2025-12-09 10:14:45.217962+00 4535 LZ1200#上身4号色 SPMX-20240815299658 \N \N \N 1 \N [{"file_id": "1dc4d150-2fe4-43f3-a262-cfd640d0b90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "145a094e12b84b9b9d451d7aa7e074a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "145a094e12b84b9b9d451d7aa7e074a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "145a094e12b84b9b9d451d7aa7e074a0.jpg", "file_size": 17999, "is_delete": false, "file_type": 1, "original_file_name": "LZ1200#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145a094e12b84b9b9d451d7aa7e074a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145a094e12b84b9b9d451d7aa7e074a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145a094e12b84b9b9d451d7aa7e074a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/145a094e12b84b9b9d451d7aa7e074a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/145a094e12b84b9b9d451d7aa7e074a0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ouQv8MhtTRe7_zn8RpFQXtupEwU=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.226819+00 2025-12-09 10:14:45.226824+00 4540 LHJ9193#25#土黄 SPMX-20240815299671 \N \N \N 1 \N [{"file_id": "6371d0ff-7a50-43dc-ab59-1835ae6961af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f2bcc1cbff5480894602fdabbcdd060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f2bcc1cbff5480894602fdabbcdd060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f2bcc1cbff5480894602fdabbcdd060.jpg", "file_size": 9144, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2bcc1cbff5480894602fdabbcdd060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2bcc1cbff5480894602fdabbcdd060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2bcc1cbff5480894602fdabbcdd060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f2bcc1cbff5480894602fdabbcdd060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f2bcc1cbff5480894602fdabbcdd060.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hxK_b_rwAaOndoJZ8qwyFqmuSY=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.219289+00 2025-12-09 10:14:45.219294+00 4536 1045FWF#上身黄色2XL SPMX-20240815299665 \N \N \N 1 \N [{"file_id": "05641f4d-aa57-4dd1-bc3f-1694d07bb7fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6065198efb284f0180d5b1efcb9c21b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6065198efb284f0180d5b1efcb9c21b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6065198efb284f0180d5b1efcb9c21b4.jpg", "file_size": 23899, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6065198efb284f0180d5b1efcb9c21b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6065198efb284f0180d5b1efcb9c21b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6065198efb284f0180d5b1efcb9c21b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6065198efb284f0180d5b1efcb9c21b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6065198efb284f0180d5b1efcb9c21b4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4cIMB4EB5edA7wSefcjko_seDuQ=", "createTime": "2024-08-15 14:40:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.221057+00 2025-12-09 10:14:45.221062+00 4537 FHXGPK-002-5 SPMX-20240815299673 \N \N \N 1 \N [{"file_id": "984d404c-db95-4c8c-9c31-50530295490d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82234d0c34094f49b5e82c5f1fccf586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82234d0c34094f49b5e82c5f1fccf586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82234d0c34094f49b5e82c5f1fccf586.jpg", "file_size": 34497, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82234d0c34094f49b5e82c5f1fccf586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82234d0c34094f49b5e82c5f1fccf586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82234d0c34094f49b5e82c5f1fccf586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82234d0c34094f49b5e82c5f1fccf586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82234d0c34094f49b5e82c5f1fccf586.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScrO-HQMGjjt7SNMFfCNoqJpqdw=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.222719+00 2025-12-09 10:14:45.222724+00 4538 LHJ9193#5#彩兰 SPMX-20240815299682 \N \N \N 1 \N [{"file_id": "8a762323-2857-4a14-83db-a8c2c549f967", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "913ee97474f848e68d87fb5a0d6ea386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "913ee97474f848e68d87fb5a0d6ea386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "913ee97474f848e68d87fb5a0d6ea386.jpg", "file_size": 9304, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913ee97474f848e68d87fb5a0d6ea386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913ee97474f848e68d87fb5a0d6ea386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913ee97474f848e68d87fb5a0d6ea386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/913ee97474f848e68d87fb5a0d6ea386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/913ee97474f848e68d87fb5a0d6ea386.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KttfiRWB7Xj_S23jYyanoLMKvLY=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.224671+00 2025-12-09 10:14:45.224676+00 4539 LZ1201#上身1号色 SPMX-20240815299681 \N \N \N 1 \N [{"file_id": "817b8d2f-0385-4713-904b-4f9e3a5c86f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bf995fa797c439485f7f6053f063d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bf995fa797c439485f7f6053f063d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bf995fa797c439485f7f6053f063d44.jpg", "file_size": 19042, "is_delete": false, "file_type": 1, "original_file_name": "LZ1201#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf995fa797c439485f7f6053f063d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf995fa797c439485f7f6053f063d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf995fa797c439485f7f6053f063d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bf995fa797c439485f7f6053f063d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bf995fa797c439485f7f6053f063d44.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7rXHqGTqoxCbMAAV7zvX1DP0H8=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.228618+00 2025-12-09 10:14:45.228622+00 4541 JS0974-A23#RC23 SPMX-20240815299675 \N \N \N 1 \N [{"file_id": "68094855-d468-463b-ba36-ceadfab55777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27c73e5374e64660a453d8d07f88dbb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27c73e5374e64660a453d8d07f88dbb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27c73e5374e64660a453d8d07f88dbb6.jpg", "file_size": 49970, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A23#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c73e5374e64660a453d8d07f88dbb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c73e5374e64660a453d8d07f88dbb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c73e5374e64660a453d8d07f88dbb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27c73e5374e64660a453d8d07f88dbb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27c73e5374e64660a453d8d07f88dbb6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5BEtzYgKulqfRGLNkwW1IaRgVE=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.230242+00 2025-12-09 10:14:45.230246+00 4542 1045FWF#上身黄色L SPMX-20240815299680 \N \N \N 1 \N [{"file_id": "6223bed8-795b-4aa4-89b9-03798b1e1d3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba7b938e79974315814e8cf6a6a024a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba7b938e79974315814e8cf6a6a024a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba7b938e79974315814e8cf6a6a024a9.jpg", "file_size": 22813, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba7b938e79974315814e8cf6a6a024a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba7b938e79974315814e8cf6a6a024a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba7b938e79974315814e8cf6a6a024a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba7b938e79974315814e8cf6a6a024a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba7b938e79974315814e8cf6a6a024a9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQmr4y7AdvXKeZgTkVmDINyjeV8=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.231829+00 2025-12-09 10:14:45.231833+00 4543 23-2101#A22领子通用 SPMX-20240815299678 \N \N \N 1 \N [{"file_id": "3d099779-5c20-49ec-84da-8f6d7a388259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a116714e326e4b2782363149ec628aa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a116714e326e4b2782363149ec628aa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a116714e326e4b2782363149ec628aa8.jpg", "file_size": 9644, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A22领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a116714e326e4b2782363149ec628aa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a116714e326e4b2782363149ec628aa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a116714e326e4b2782363149ec628aa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a116714e326e4b2782363149ec628aa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a116714e326e4b2782363149ec628aa8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGvOc-5_uOkudvVN6pE_PQuMgAE=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.233617+00 2025-12-09 10:14:45.233621+00 4544 HSH046FW#黑绿VS-D3 SPMX-20240815299679 \N \N \N 1 \N [{"file_id": "6a7da28e-e7a2-4396-b36b-e971363f24cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0246778d7cc64194960c0af5009973ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0246778d7cc64194960c0af5009973ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0246778d7cc64194960c0af5009973ac.jpg", "file_size": 4780, "is_delete": false, "file_type": 1, "original_file_name": "HSH046FW#黑绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0246778d7cc64194960c0af5009973ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0246778d7cc64194960c0af5009973ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0246778d7cc64194960c0af5009973ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0246778d7cc64194960c0af5009973ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0246778d7cc64194960c0af5009973ac.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wp0TYxcsGmS94UGB8C6AnjT4J50=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.235189+00 2025-12-09 10:14:45.235193+00 4545 DH20220779FW#L短袖粉 SPMX-20240815299674 \N \N \N 1 \N [{"file_id": "fdfc712b-96ac-4e70-970e-aa65bb495353", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0500689a306c40fba6d401bbd4ac1115.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0500689a306c40fba6d401bbd4ac1115.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0500689a306c40fba6d401bbd4ac1115.jpg", "file_size": 15118, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0500689a306c40fba6d401bbd4ac1115.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0500689a306c40fba6d401bbd4ac1115.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0500689a306c40fba6d401bbd4ac1115.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0500689a306c40fba6d401bbd4ac1115.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0500689a306c40fba6d401bbd4ac1115.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxKblUCsiXupTNHb602lQNZ-QIQ=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.236743+00 2025-12-09 10:14:45.236748+00 4546 0001-79FWF#V5曲线 SPMX-20240815299676 \N \N \N 1 \N [{"file_id": "971ede3d-e511-41ca-ad52-cef73e769fb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41173f524a8f4ebf861fd8e9eb927dbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41173f524a8f4ebf861fd8e9eb927dbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41173f524a8f4ebf861fd8e9eb927dbf.jpg", "file_size": 10272, "is_delete": false, "file_type": 1, "original_file_name": "0001-79FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41173f524a8f4ebf861fd8e9eb927dbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41173f524a8f4ebf861fd8e9eb927dbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41173f524a8f4ebf861fd8e9eb927dbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41173f524a8f4ebf861fd8e9eb927dbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41173f524a8f4ebf861fd8e9eb927dbf.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdkrIg8SV6rUh4u1xXAZwy0hUJ8=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.238184+00 2025-12-09 10:14:45.238188+00 4547 C23131#净色 SPMX-20240815299677 \N \N \N 1 \N [{"file_id": "09d0a4ea-6a4a-49ff-9985-fc184048846d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48d0aa3d65d641c98a5571ae2add63a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48d0aa3d65d641c98a5571ae2add63a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48d0aa3d65d641c98a5571ae2add63a4.jpg", "file_size": 6897, "is_delete": false, "file_type": 1, "original_file_name": "C23131#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d0aa3d65d641c98a5571ae2add63a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d0aa3d65d641c98a5571ae2add63a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d0aa3d65d641c98a5571ae2add63a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48d0aa3d65d641c98a5571ae2add63a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48d0aa3d65d641c98a5571ae2add63a4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwLPmFZN_o07_Y0TUqnrkjwu5Yc=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.23961+00 2025-12-09 10:14:45.239615+00 4548 8006#浅蓝色XL SPMX-20240815299672 \N \N \N 1 \N [{"file_id": "8451d736-78ba-4184-a097-ecf19b7c68e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c2a1ef6d1e848869b7a7c9ed0380577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c2a1ef6d1e848869b7a7c9ed0380577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c2a1ef6d1e848869b7a7c9ed0380577.jpg", "file_size": 77733, "is_delete": false, "file_type": 1, "original_file_name": "8006#浅蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2a1ef6d1e848869b7a7c9ed0380577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2a1ef6d1e848869b7a7c9ed0380577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2a1ef6d1e848869b7a7c9ed0380577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c2a1ef6d1e848869b7a7c9ed0380577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c2a1ef6d1e848869b7a7c9ed0380577.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ppYTN1j7Ok6o9Gi2TDCTa4rgpI=", "createTime": "2024-08-15 14:40:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.241033+00 2025-12-09 10:14:45.241037+00 4549 C23131#白底蓝花L码 SPMX-20240815299684 \N \N \N 1 \N [{"file_id": "e42976a3-98ed-4db2-a7ca-bf4fb18dd981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95dd6e62e2c04db2b3e77555d37f0596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95dd6e62e2c04db2b3e77555d37f0596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95dd6e62e2c04db2b3e77555d37f0596.jpg", "file_size": 17348, "is_delete": false, "file_type": 1, "original_file_name": "C23131#白底蓝花L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dd6e62e2c04db2b3e77555d37f0596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dd6e62e2c04db2b3e77555d37f0596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dd6e62e2c04db2b3e77555d37f0596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95dd6e62e2c04db2b3e77555d37f0596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95dd6e62e2c04db2b3e77555d37f0596.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAvnm7Kv-2aaBZPW_Gu3hG0ZW1U=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.242318+00 2025-12-09 10:14:45.242322+00 4550 JS0974-A24#RC23 SPMX-20240815299687 \N \N \N 1 \N [{"file_id": "ec0fcbbe-f27d-446f-a6ee-e47b22a6690a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc92e51b7e0a4f66b142c60d00e2edbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc92e51b7e0a4f66b142c60d00e2edbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc92e51b7e0a4f66b142c60d00e2edbf.jpg", "file_size": 43450, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A24#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc92e51b7e0a4f66b142c60d00e2edbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc92e51b7e0a4f66b142c60d00e2edbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc92e51b7e0a4f66b142c60d00e2edbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc92e51b7e0a4f66b142c60d00e2edbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc92e51b7e0a4f66b142c60d00e2edbf.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_tZnszed3kHHWvxBDiJIThqHHY=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.243498+00 2025-12-09 10:14:45.243502+00 4551 1045FWF#上身黄色XL SPMX-20240815299693 \N \N \N 1 \N [{"file_id": "5e79294b-7e4b-421c-9f84-bf5f3ba4a0f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ab535968c9648c8817f45b33ea7dd3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ab535968c9648c8817f45b33ea7dd3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ab535968c9648c8817f45b33ea7dd3e.jpg", "file_size": 23317, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#上身黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab535968c9648c8817f45b33ea7dd3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab535968c9648c8817f45b33ea7dd3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab535968c9648c8817f45b33ea7dd3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ab535968c9648c8817f45b33ea7dd3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ab535968c9648c8817f45b33ea7dd3e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGq4OYgHLeIq10CIVBkou7oGTgk=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.244685+00 2025-12-09 10:14:45.244689+00 4552 DH20220779FW#L短袖绿 SPMX-20240815299686 \N \N \N 1 \N [{"file_id": "9b7abbdc-891a-4d5a-a2cc-1ca731be880b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f68d30c1b2a4e31939c185ff7d470d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f68d30c1b2a4e31939c185ff7d470d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f68d30c1b2a4e31939c185ff7d470d3.jpg", "file_size": 14069, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f68d30c1b2a4e31939c185ff7d470d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f68d30c1b2a4e31939c185ff7d470d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f68d30c1b2a4e31939c185ff7d470d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f68d30c1b2a4e31939c185ff7d470d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f68d30c1b2a4e31939c185ff7d470d3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etfcE25Tl_ckf6fNAefaSy-VQRI=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.245857+00 2025-12-09 10:14:45.245861+00 4553 0001-7FWE#VS-D3 SPMX-20240815299685 \N \N \N 1 \N [{"file_id": "f770da35-ae3b-4453-8f33-fa9d41b1ac86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c52b7585191b4955a8a4e9f841b959bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c52b7585191b4955a8a4e9f841b959bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c52b7585191b4955a8a4e9f841b959bd.jpg", "file_size": 8456, "is_delete": false, "file_type": 1, "original_file_name": "0001-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52b7585191b4955a8a4e9f841b959bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52b7585191b4955a8a4e9f841b959bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52b7585191b4955a8a4e9f841b959bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c52b7585191b4955a8a4e9f841b959bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c52b7585191b4955a8a4e9f841b959bd.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mewJQNJz-ZimomuxQ-c_qrvkgTs=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.247047+00 2025-12-09 10:14:45.247052+00 4554 8006#浅蓝色批布文件共用 SPMX-20240815299689 \N \N \N 1 \N [{"file_id": "e10a303a-4e72-4c9c-a70b-9cb6d2ed1a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ba40e5ba0f146359c64798a1b014853.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ba40e5ba0f146359c64798a1b014853.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ba40e5ba0f146359c64798a1b014853.jpg", "file_size": 42064, "is_delete": false, "file_type": 1, "original_file_name": "8006#浅蓝色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba40e5ba0f146359c64798a1b014853.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba40e5ba0f146359c64798a1b014853.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba40e5ba0f146359c64798a1b014853.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ba40e5ba0f146359c64798a1b014853.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ba40e5ba0f146359c64798a1b014853.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oI5mkJ36Bgomevt6Z5z2hHLm43E=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.248228+00 2025-12-09 10:14:45.248232+00 4555 LHJ9193#55#紫色 SPMX-20240815299690 \N \N \N 1 \N [{"file_id": "8802f5b2-7f43-4e99-bd53-e9cc536d11ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c21035bcb824b93b3af31a5e4241463.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c21035bcb824b93b3af31a5e4241463.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c21035bcb824b93b3af31a5e4241463.jpg", "file_size": 10267, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9193#55#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c21035bcb824b93b3af31a5e4241463.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c21035bcb824b93b3af31a5e4241463.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c21035bcb824b93b3af31a5e4241463.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c21035bcb824b93b3af31a5e4241463.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c21035bcb824b93b3af31a5e4241463.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCnCTc0ozt6vgOqHhDjwLle_mG4=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.249407+00 2025-12-09 10:14:45.249411+00 4556 FHXGPK-003-1 SPMX-20240815299694 \N \N \N 1 \N [{"file_id": "37e22219-f3f1-433c-8560-5f26fb0e3424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea3e56a48678475693cb0bd600dc0698.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea3e56a48678475693cb0bd600dc0698.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea3e56a48678475693cb0bd600dc0698.jpg", "file_size": 33578, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3e56a48678475693cb0bd600dc0698.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3e56a48678475693cb0bd600dc0698.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3e56a48678475693cb0bd600dc0698.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea3e56a48678475693cb0bd600dc0698.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea3e56a48678475693cb0bd600dc0698.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9uEXjlQtSvWA4kHJkPw955UBgg=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.250664+00 2025-12-09 10:14:45.250669+00 4557 0001-7FWF#V5曲线 SPMX-20240815299695 \N \N \N 1 \N [{"file_id": "bfd1b9b6-70b7-457d-b197-7a195c718f58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c281300daef548f0899469fd167bd542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c281300daef548f0899469fd167bd542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c281300daef548f0899469fd167bd542.jpg", "file_size": 16036, "is_delete": false, "file_type": 1, "original_file_name": "0001-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c281300daef548f0899469fd167bd542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c281300daef548f0899469fd167bd542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c281300daef548f0899469fd167bd542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c281300daef548f0899469fd167bd542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c281300daef548f0899469fd167bd542.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSmPgMPAcB-EGyFf86osOpxUJyI=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.251887+00 2025-12-09 10:14:45.251892+00 4558 23-2101#A23前后片3XL SPMX-20240815299691 \N \N \N 1 \N [{"file_id": "e698d25a-b07a-4f79-b279-b2cd09d4e05c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc9dcdeae5624fd480f8ca40eaaf7ded.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc9dcdeae5624fd480f8ca40eaaf7ded.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc9dcdeae5624fd480f8ca40eaaf7ded.jpg", "file_size": 13243, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A23前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc9dcdeae5624fd480f8ca40eaaf7ded.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc9dcdeae5624fd480f8ca40eaaf7ded.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc9dcdeae5624fd480f8ca40eaaf7ded.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc9dcdeae5624fd480f8ca40eaaf7ded.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc9dcdeae5624fd480f8ca40eaaf7ded.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94iSwKdLO0E7GmfjAUqO4dLFHs0=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.253094+00 2025-12-09 10:14:45.253099+00 4559 LZ1201#上身2号色 SPMX-20240815299692 \N \N \N 1 \N [{"file_id": "2e4d22e3-98cc-4064-9628-7aaa4afb8953", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2eec302f2b44af9820bc999bec3bca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2eec302f2b44af9820bc999bec3bca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2eec302f2b44af9820bc999bec3bca3.jpg", "file_size": 17786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1201#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2eec302f2b44af9820bc999bec3bca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2eec302f2b44af9820bc999bec3bca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2eec302f2b44af9820bc999bec3bca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2eec302f2b44af9820bc999bec3bca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2eec302f2b44af9820bc999bec3bca3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oL_to9g0Nf2CCeTep_4bhZKxbTg=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.254359+00 2025-12-09 10:14:45.254364+00 4560 FHXGPK-002-6 SPMX-20240815299683 \N \N \N 1 \N [{"file_id": "c10e7835-4e73-4d02-a4b7-99800d64e42b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81b4cc17312a4fe683f070dbf5ce30eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81b4cc17312a4fe683f070dbf5ce30eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81b4cc17312a4fe683f070dbf5ce30eb.jpg", "file_size": 36436, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-002-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b4cc17312a4fe683f070dbf5ce30eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b4cc17312a4fe683f070dbf5ce30eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b4cc17312a4fe683f070dbf5ce30eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81b4cc17312a4fe683f070dbf5ce30eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81b4cc17312a4fe683f070dbf5ce30eb.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZZoDIKiOYUeh9gdHd_gBqA3Vgo=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.255544+00 2025-12-09 10:14:45.255548+00 4561 C23131#白底蓝花M码 SPMX-20240815299696 \N \N \N 1 \N [{"file_id": "d2d84ef7-bc44-44bd-b8fc-cd2855eef588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01aabfdb6d044500aa68580212c0a1f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01aabfdb6d044500aa68580212c0a1f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01aabfdb6d044500aa68580212c0a1f9.jpg", "file_size": 17099, "is_delete": false, "file_type": 1, "original_file_name": "C23131#白底蓝花M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aabfdb6d044500aa68580212c0a1f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aabfdb6d044500aa68580212c0a1f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aabfdb6d044500aa68580212c0a1f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01aabfdb6d044500aa68580212c0a1f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01aabfdb6d044500aa68580212c0a1f9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFYmHcqt8vRz5l2ntGc8djJem1c=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.256741+00 2025-12-09 10:14:45.256744+00 4562 HSH047FW#VS-D3 SPMX-20240815299688 \N \N \N 1 \N [{"file_id": "58d7fbc7-2c2c-40ce-ba84-cba28dbb8d17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9b5a0e90a9a4eb6a11781d49c7c4733.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9b5a0e90a9a4eb6a11781d49c7c4733.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9b5a0e90a9a4eb6a11781d49c7c4733.jpg", "file_size": 11217, "is_delete": false, "file_type": 1, "original_file_name": "HSH047FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9b5a0e90a9a4eb6a11781d49c7c4733.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9b5a0e90a9a4eb6a11781d49c7c4733.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9b5a0e90a9a4eb6a11781d49c7c4733.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9b5a0e90a9a4eb6a11781d49c7c4733.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9b5a0e90a9a4eb6a11781d49c7c4733.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxZ1j9Tc247kkg2F0Aicb6FYmG4=", "createTime": "2024-08-15 14:40:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.257892+00 2025-12-09 10:14:45.257896+00 4563 0001-80FWF#V5曲线 SPMX-20240815299706 \N \N \N 1 \N [{"file_id": "cfe7a0ab-fc58-467b-bc73-07c5eef5d987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d224b20b0b74136a52252807e9cb238.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d224b20b0b74136a52252807e9cb238.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d224b20b0b74136a52252807e9cb238.jpg", "file_size": 17699, "is_delete": false, "file_type": 1, "original_file_name": "0001-80FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d224b20b0b74136a52252807e9cb238.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d224b20b0b74136a52252807e9cb238.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d224b20b0b74136a52252807e9cb238.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d224b20b0b74136a52252807e9cb238.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d224b20b0b74136a52252807e9cb238.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfgi2mri8tWvi4FEJFcyPwBJqsc=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.259043+00 2025-12-09 10:14:45.259048+00 4564 JS0974-A25#RC23 SPMX-20240815299700 \N \N \N 1 \N [{"file_id": "76d2e251-ce59-4f8a-91ca-192aaf519b4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b60e73386654b11bda29614462f8aef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b60e73386654b11bda29614462f8aef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b60e73386654b11bda29614462f8aef.jpg", "file_size": 72749, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A25#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b60e73386654b11bda29614462f8aef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b60e73386654b11bda29614462f8aef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b60e73386654b11bda29614462f8aef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b60e73386654b11bda29614462f8aef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b60e73386654b11bda29614462f8aef.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xmvFALUgwjC9JXQtpeLbmIh86Y=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.26018+00 2025-12-09 10:14:45.260184+00 4565 DH20220779FW#L短袖蓝 SPMX-20240815299697 \N \N \N 1 \N [{"file_id": "d65c14e0-c773-449a-90b8-12ef3db3a437", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff123f44c9d8411283942ac9bdd5c037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff123f44c9d8411283942ac9bdd5c037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff123f44c9d8411283942ac9bdd5c037.jpg", "file_size": 15728, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#L短袖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff123f44c9d8411283942ac9bdd5c037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff123f44c9d8411283942ac9bdd5c037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff123f44c9d8411283942ac9bdd5c037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff123f44c9d8411283942ac9bdd5c037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff123f44c9d8411283942ac9bdd5c037.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hFk15OPJGL5vMxSHP0q_mx5bVvM=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.261354+00 2025-12-09 10:14:45.261359+00 4566 LHJ9194#10#宝兰 SPMX-20240815299701 \N \N \N 1 \N [{"file_id": "7701c14f-29a6-4ed3-8168-6d6e2cb40825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5fef8d82fc545a8a21c9f7e7f416e63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5fef8d82fc545a8a21c9f7e7f416e63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5fef8d82fc545a8a21c9f7e7f416e63.jpg", "file_size": 20317, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#10#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fef8d82fc545a8a21c9f7e7f416e63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fef8d82fc545a8a21c9f7e7f416e63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fef8d82fc545a8a21c9f7e7f416e63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5fef8d82fc545a8a21c9f7e7f416e63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5fef8d82fc545a8a21c9f7e7f416e63.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5jKUKeDRU2pBlZ1Tezm2KQJPVY=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.262508+00 2025-12-09 10:14:45.262513+00 4567 LZ1201#上身3号色 SPMX-20240815299703 \N \N \N 1 \N [{"file_id": "870b6901-78fb-46bf-a51e-d488cd9e3aa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a95a45594b694c36ba37b16845a42ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a95a45594b694c36ba37b16845a42ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a95a45594b694c36ba37b16845a42ee5.jpg", "file_size": 18279, "is_delete": false, "file_type": 1, "original_file_name": "LZ1201#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95a45594b694c36ba37b16845a42ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95a45594b694c36ba37b16845a42ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95a45594b694c36ba37b16845a42ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a95a45594b694c36ba37b16845a42ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a95a45594b694c36ba37b16845a42ee5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ogdkze0BEO1IXmNVf58ftQUDzQ=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.263683+00 2025-12-09 10:14:45.263687+00 4568 C23131#白底蓝花S码 SPMX-20240815299705 \N \N \N 1 \N [{"file_id": "1502a210-5883-4c62-9ae5-20dd96241f54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cef21c1d2dd4602b9cd7a2224694afe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cef21c1d2dd4602b9cd7a2224694afe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cef21c1d2dd4602b9cd7a2224694afe.jpg", "file_size": 16943, "is_delete": false, "file_type": 1, "original_file_name": "C23131#白底蓝花S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cef21c1d2dd4602b9cd7a2224694afe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cef21c1d2dd4602b9cd7a2224694afe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cef21c1d2dd4602b9cd7a2224694afe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cef21c1d2dd4602b9cd7a2224694afe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cef21c1d2dd4602b9cd7a2224694afe.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Msb_o2e3hyoZZCvHvK_C-ErUKrk=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.264825+00 2025-12-09 10:14:45.264829+00 4569 HSH048FW#宝蓝VS-D3 SPMX-20240815299698 \N \N \N 1 \N [{"file_id": "0bbf5134-8591-4f9a-8ad4-ba6b17e02a67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ad09019b9ab45cb88acf50355911741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ad09019b9ab45cb88acf50355911741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ad09019b9ab45cb88acf50355911741.jpg", "file_size": 11819, "is_delete": false, "file_type": 1, "original_file_name": "HSH048FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad09019b9ab45cb88acf50355911741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad09019b9ab45cb88acf50355911741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad09019b9ab45cb88acf50355911741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ad09019b9ab45cb88acf50355911741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ad09019b9ab45cb88acf50355911741.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hpZPKqt6B214oCVxEZ27GMYdxfA=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.266003+00 2025-12-09 10:14:45.266007+00 4570 FHXGPK-003-2 SPMX-20240815299707 \N \N \N 1 \N [{"file_id": "5d335357-ab25-4e98-95ef-dac4d56daa09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9873c391e22144f5b7b09f93eb0bbd1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9873c391e22144f5b7b09f93eb0bbd1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9873c391e22144f5b7b09f93eb0bbd1d.jpg", "file_size": 31438, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9873c391e22144f5b7b09f93eb0bbd1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9873c391e22144f5b7b09f93eb0bbd1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9873c391e22144f5b7b09f93eb0bbd1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9873c391e22144f5b7b09f93eb0bbd1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9873c391e22144f5b7b09f93eb0bbd1d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6X9gOddyRJeRqKE9OqA_mmNZ-o=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.26714+00 2025-12-09 10:14:45.267143+00 4571 1045FWF#下摆彩兰4XL SPMX-20240815299704 \N \N \N 1 \N [{"file_id": "20106993-b8b4-498c-91dc-0b9c5fbe4358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1f14c96174c42759a884e3753c445ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1f14c96174c42759a884e3753c445ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1f14c96174c42759a884e3753c445ff.jpg", "file_size": 17412, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#下摆彩兰4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f14c96174c42759a884e3753c445ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f14c96174c42759a884e3753c445ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f14c96174c42759a884e3753c445ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1f14c96174c42759a884e3753c445ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1f14c96174c42759a884e3753c445ff.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6KKrCJY0XeuFVNIo5rPMoh511c=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.268355+00 2025-12-09 10:14:45.268361+00 4572 8006#黑色2XL SPMX-20240815299699 \N \N \N 1 \N [{"file_id": "09f24f9f-cf18-4949-94a5-a3181cc0266f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a83bd6781c3f42478816e80dc642ab55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a83bd6781c3f42478816e80dc642ab55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a83bd6781c3f42478816e80dc642ab55.jpg", "file_size": 75174, "is_delete": false, "file_type": 1, "original_file_name": "8006#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83bd6781c3f42478816e80dc642ab55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83bd6781c3f42478816e80dc642ab55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83bd6781c3f42478816e80dc642ab55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a83bd6781c3f42478816e80dc642ab55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a83bd6781c3f42478816e80dc642ab55.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywF_e0cnOuIYpCPgN3apg0wkkJM=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.269565+00 2025-12-09 10:14:45.269569+00 4573 23-2101#A23前后片4XL SPMX-20240815299702 \N \N \N 1 \N [{"file_id": "fe12a174-9359-4620-89a2-daefa1529749", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55a8f2fe039942b88b9937d049a727a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55a8f2fe039942b88b9937d049a727a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55a8f2fe039942b88b9937d049a727a2.jpg", "file_size": 13719, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A23前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a8f2fe039942b88b9937d049a727a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a8f2fe039942b88b9937d049a727a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a8f2fe039942b88b9937d049a727a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55a8f2fe039942b88b9937d049a727a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55a8f2fe039942b88b9937d049a727a2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37XQ9NwTxwUy2zyW_rAVhEVXZDo=", "createTime": "2024-08-15 14:40:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.270732+00 2025-12-09 10:14:45.270736+00 4574 JS0974-A25#蓝色 SPMX-20240815299720 \N \N \N 1 \N [{"file_id": "45d5f26f-cd85-4522-847f-6b34289227fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59bec40f0ba542e6a49bd17007140b24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59bec40f0ba542e6a49bd17007140b24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59bec40f0ba542e6a49bd17007140b24.jpg", "file_size": 25497, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A25#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59bec40f0ba542e6a49bd17007140b24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59bec40f0ba542e6a49bd17007140b24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59bec40f0ba542e6a49bd17007140b24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59bec40f0ba542e6a49bd17007140b24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59bec40f0ba542e6a49bd17007140b24.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ygFUzhWcu-UsRilFO5G8jaFf6k=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.271907+00 2025-12-09 10:14:45.271911+00 4575 JS0974-A25#绿色 SPMX-20240815299710 \N \N \N 1 \N [{"file_id": "33bd2f70-877b-41c2-b77e-b9894f8eaf13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e85bb8723bca44f6af428ad483f33989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e85bb8723bca44f6af428ad483f33989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e85bb8723bca44f6af428ad483f33989.jpg", "file_size": 27212, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A25#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e85bb8723bca44f6af428ad483f33989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e85bb8723bca44f6af428ad483f33989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e85bb8723bca44f6af428ad483f33989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e85bb8723bca44f6af428ad483f33989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e85bb8723bca44f6af428ad483f33989.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45cCwuRa9PcppWfPgXQR6idy9Po=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.273045+00 2025-12-09 10:14:45.273048+00 4576 DH20220779FW#M短袖口橙 SPMX-20240815299709 \N \N \N 1 \N [{"file_id": "79e741a9-7aae-442c-ade7-51757b9250dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa76d6e7317f49fcb24b96d4c45af38f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa76d6e7317f49fcb24b96d4c45af38f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa76d6e7317f49fcb24b96d4c45af38f.jpg", "file_size": 14029, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa76d6e7317f49fcb24b96d4c45af38f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa76d6e7317f49fcb24b96d4c45af38f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa76d6e7317f49fcb24b96d4c45af38f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa76d6e7317f49fcb24b96d4c45af38f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa76d6e7317f49fcb24b96d4c45af38f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FuGiiw57BQcFaBGTV9p_V8OGr-4=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.274199+00 2025-12-09 10:14:45.274204+00 4577 1045FWF#下摆玫红4XL SPMX-20240815299716 \N \N \N 1 \N [{"file_id": "c5851a7e-3570-43df-be8a-6c2f5a46f2f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d6975babfd84ca7ae2ae0c6692b7e39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d6975babfd84ca7ae2ae0c6692b7e39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d6975babfd84ca7ae2ae0c6692b7e39.jpg", "file_size": 17362, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#下摆玫红4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6975babfd84ca7ae2ae0c6692b7e39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6975babfd84ca7ae2ae0c6692b7e39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6975babfd84ca7ae2ae0c6692b7e39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d6975babfd84ca7ae2ae0c6692b7e39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d6975babfd84ca7ae2ae0c6692b7e39.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4mehWvJrqAFCxBzGrvpQ-Z2vGE=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.275362+00 2025-12-09 10:14:45.275366+00 4578 C23131#白底蓝花XL码 SPMX-20240815299715 \N \N \N 1 \N [{"file_id": "4fbde408-89e2-4d20-a6bd-74de5c208267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b94b9f9d224be39e80cac6e48f4c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b94b9f9d224be39e80cac6e48f4c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b94b9f9d224be39e80cac6e48f4c2a.jpg", "file_size": 17353, "is_delete": false, "file_type": 1, "original_file_name": "C23131#白底蓝花XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b94b9f9d224be39e80cac6e48f4c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b94b9f9d224be39e80cac6e48f4c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b94b9f9d224be39e80cac6e48f4c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b94b9f9d224be39e80cac6e48f4c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b94b9f9d224be39e80cac6e48f4c2a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRJjUVarof41a-Uk50mQ7mY7XYI=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.276517+00 2025-12-09 10:14:45.276522+00 4579 LHJ9194#122#绿 SPMX-20240815299712 \N \N \N 1 \N [{"file_id": "b94bd07d-5c46-4613-8dae-42acacc5154a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aaa2961e0344300a0851fb929592b78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aaa2961e0344300a0851fb929592b78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aaa2961e0344300a0851fb929592b78.jpg", "file_size": 19473, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#122#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa2961e0344300a0851fb929592b78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa2961e0344300a0851fb929592b78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa2961e0344300a0851fb929592b78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aaa2961e0344300a0851fb929592b78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aaa2961e0344300a0851fb929592b78.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aF1xBx5xK2zpoC4trimcYTa0MJ8=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.277715+00 2025-12-09 10:14:45.277719+00 4580 23-2101#A23袖子3XL SPMX-20240815299714 \N \N \N 1 \N [{"file_id": "a6a1d634-8af2-473c-9ea2-bf92316e5d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df64d5b675a249d78dd7dc0c58599091.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df64d5b675a249d78dd7dc0c58599091.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df64d5b675a249d78dd7dc0c58599091.jpg", "file_size": 16635, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A23袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df64d5b675a249d78dd7dc0c58599091.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df64d5b675a249d78dd7dc0c58599091.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df64d5b675a249d78dd7dc0c58599091.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df64d5b675a249d78dd7dc0c58599091.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df64d5b675a249d78dd7dc0c58599091.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LvuRVG4y62nyh3z3aAfsh-JCIEA=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.278897+00 2025-12-09 10:14:45.278901+00 4581 FHXGPK-003-3 SPMX-20240815299717 \N \N \N 1 \N [{"file_id": "9f77c8ff-8f49-43d2-8ae0-f330629b1f7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3a2d2c616ed427aaf6e41eb1f45b657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3a2d2c616ed427aaf6e41eb1f45b657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3a2d2c616ed427aaf6e41eb1f45b657.jpg", "file_size": 28846, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a2d2c616ed427aaf6e41eb1f45b657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a2d2c616ed427aaf6e41eb1f45b657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a2d2c616ed427aaf6e41eb1f45b657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3a2d2c616ed427aaf6e41eb1f45b657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3a2d2c616ed427aaf6e41eb1f45b657.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZOyuHqm-dpxY2RuO1mm1HIA6So=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.280075+00 2025-12-09 10:14:45.280079+00 4582 HSH049FW#白VS-D3 SPMX-20240815299719 \N \N \N 1 \N [{"file_id": "e4573135-589c-4e9f-b0ad-016679139ffc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b210edb1c6904e2a9c5cde842d888485.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b210edb1c6904e2a9c5cde842d888485.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b210edb1c6904e2a9c5cde842d888485.jpg", "file_size": 20518, "is_delete": false, "file_type": 1, "original_file_name": "HSH049FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210edb1c6904e2a9c5cde842d888485.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210edb1c6904e2a9c5cde842d888485.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210edb1c6904e2a9c5cde842d888485.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b210edb1c6904e2a9c5cde842d888485.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b210edb1c6904e2a9c5cde842d888485.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oPOuFjxcDQguzYXAxoq7jX0mxpQ=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.28123+00 2025-12-09 10:14:45.281234+00 4583 0001-81FWF#V5 SPMX-20240815299718 \N \N \N 1 \N [{"file_id": "30923bac-9b0c-4012-a66f-94894bf91637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a388faffdc94bdab69a9ae7542a1d38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a388faffdc94bdab69a9ae7542a1d38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a388faffdc94bdab69a9ae7542a1d38.jpg", "file_size": 14033, "is_delete": false, "file_type": 1, "original_file_name": "0001-81FWF#V5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a388faffdc94bdab69a9ae7542a1d38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a388faffdc94bdab69a9ae7542a1d38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a388faffdc94bdab69a9ae7542a1d38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a388faffdc94bdab69a9ae7542a1d38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a388faffdc94bdab69a9ae7542a1d38.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qnXXiMzTYv1k18PmpVlNwHTBco=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.282373+00 2025-12-09 10:14:45.282377+00 4584 HSH049FW#彩蓝VS-D3 SPMX-20240815299708 \N \N \N 1 \N [{"file_id": "9f632d5a-e351-4844-a1e0-021998aecc8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c951480c08c464c98f959fffa74e995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c951480c08c464c98f959fffa74e995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c951480c08c464c98f959fffa74e995.jpg", "file_size": 19973, "is_delete": false, "file_type": 1, "original_file_name": "HSH049FW#彩蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c951480c08c464c98f959fffa74e995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c951480c08c464c98f959fffa74e995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c951480c08c464c98f959fffa74e995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c951480c08c464c98f959fffa74e995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c951480c08c464c98f959fffa74e995.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaKaeEPJg7RL4Cc00o8_ZaE0Adc=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.283526+00 2025-12-09 10:14:45.28353+00 4585 8006#黑色L SPMX-20240815299711 \N \N \N 1 \N [{"file_id": "87ea9fb9-6001-4677-85f0-bff708b6b9f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38d1597f69864acfbf76648555935ab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38d1597f69864acfbf76648555935ab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38d1597f69864acfbf76648555935ab6.jpg", "file_size": 81768, "is_delete": false, "file_type": 1, "original_file_name": "8006#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1597f69864acfbf76648555935ab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1597f69864acfbf76648555935ab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1597f69864acfbf76648555935ab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38d1597f69864acfbf76648555935ab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38d1597f69864acfbf76648555935ab6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POH0c2v32R94G4eR-allt_prV_s=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.284684+00 2025-12-09 10:14:45.284689+00 4586 LZ1201#上身4号色 SPMX-20240815299713 \N \N \N 1 \N [{"file_id": "9141bedd-0759-447e-a756-df43f450e90f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16c4a354637c42c288e3fac2f5ffab39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16c4a354637c42c288e3fac2f5ffab39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16c4a354637c42c288e3fac2f5ffab39.jpg", "file_size": 17996, "is_delete": false, "file_type": 1, "original_file_name": "LZ1201#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c4a354637c42c288e3fac2f5ffab39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c4a354637c42c288e3fac2f5ffab39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c4a354637c42c288e3fac2f5ffab39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16c4a354637c42c288e3fac2f5ffab39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16c4a354637c42c288e3fac2f5ffab39.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XkrILncXkA8QgX7uOr8aJ_5GXn8=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.285891+00 2025-12-09 10:14:45.285895+00 4587 LZ1201#上身5号色 SPMX-20240815299722 \N \N \N 1 \N [{"file_id": "0bce1035-567e-4fd4-add6-48d654c1d735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ad73ce269034ab9a6284d3869650158.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ad73ce269034ab9a6284d3869650158.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ad73ce269034ab9a6284d3869650158.jpg", "file_size": 18932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1201#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad73ce269034ab9a6284d3869650158.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad73ce269034ab9a6284d3869650158.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad73ce269034ab9a6284d3869650158.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ad73ce269034ab9a6284d3869650158.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ad73ce269034ab9a6284d3869650158.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfpJOUmsOoJlYsowlEzhM6z0okE=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.287055+00 2025-12-09 10:14:45.287059+00 4588 23-2101#A23袖子4XL SPMX-20240815299723 \N \N \N 1 \N [{"file_id": "f2488e65-9ffd-43ad-92bb-5a366f3fd05e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91530fb04e294c9c949d741494932ac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91530fb04e294c9c949d741494932ac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91530fb04e294c9c949d741494932ac1.jpg", "file_size": 14401, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A23袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91530fb04e294c9c949d741494932ac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91530fb04e294c9c949d741494932ac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91530fb04e294c9c949d741494932ac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91530fb04e294c9c949d741494932ac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91530fb04e294c9c949d741494932ac1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2R57wVpXNAE0IShOJgcELgcK88w=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.288213+00 2025-12-09 10:14:45.288217+00 4589 1045FWF#下摆黄色4XL SPMX-20240815299726 \N \N \N 1 \N [{"file_id": "0344be4b-74ed-47aa-8b61-4d0e5d34965e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e318af84605491698b75e697edfbe88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e318af84605491698b75e697edfbe88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e318af84605491698b75e697edfbe88.jpg", "file_size": 17096, "is_delete": false, "file_type": 1, "original_file_name": "1045FWF#下摆黄色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e318af84605491698b75e697edfbe88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e318af84605491698b75e697edfbe88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e318af84605491698b75e697edfbe88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e318af84605491698b75e697edfbe88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e318af84605491698b75e697edfbe88.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0YZw-TXKSYSYkX0_MeyvIbvo4k=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.289374+00 2025-12-09 10:14:45.289379+00 4590 DH20220779FW#M短袖口浅蓝 SPMX-20240815299721 \N \N \N 1 \N [{"file_id": "e1e0cc58-e0c9-48fb-bca3-efaa2a5c9f3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be485c6364040afa0b0f9e5dcc00ebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be485c6364040afa0b0f9e5dcc00ebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be485c6364040afa0b0f9e5dcc00ebd.jpg", "file_size": 12720, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be485c6364040afa0b0f9e5dcc00ebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be485c6364040afa0b0f9e5dcc00ebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be485c6364040afa0b0f9e5dcc00ebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be485c6364040afa0b0f9e5dcc00ebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be485c6364040afa0b0f9e5dcc00ebd.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxtnHpsc19iwy6L8sxEydd9mFvk=", "createTime": "2024-08-15 14:40:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.290554+00 2025-12-09 10:14:45.290557+00 4591 8006#黑色XL SPMX-20240815299724 \N \N \N 1 \N [{"file_id": "0528fddb-26d6-4204-90af-236bfe341251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9cb1127c55e4146b21bca6d3a8fb52a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9cb1127c55e4146b21bca6d3a8fb52a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9cb1127c55e4146b21bca6d3a8fb52a.jpg", "file_size": 78644, "is_delete": false, "file_type": 1, "original_file_name": "8006#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cb1127c55e4146b21bca6d3a8fb52a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cb1127c55e4146b21bca6d3a8fb52a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cb1127c55e4146b21bca6d3a8fb52a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9cb1127c55e4146b21bca6d3a8fb52a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9cb1127c55e4146b21bca6d3a8fb52a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ob-gBkYEe8n8Ftr4Y8CjSR3716A=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.29173+00 2025-12-09 10:14:45.291735+00 4592 C23131#紫底蓝L码 SPMX-20240815299725 \N \N \N 1 \N [{"file_id": "9e11c9b3-bd69-47ba-b547-9aae0147e288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d2d452b7a084c8d8a63200e13da9bda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d2d452b7a084c8d8a63200e13da9bda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d2d452b7a084c8d8a63200e13da9bda.jpg", "file_size": 16098, "is_delete": false, "file_type": 1, "original_file_name": "C23131#紫底蓝L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2d452b7a084c8d8a63200e13da9bda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2d452b7a084c8d8a63200e13da9bda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2d452b7a084c8d8a63200e13da9bda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d2d452b7a084c8d8a63200e13da9bda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d2d452b7a084c8d8a63200e13da9bda.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVwo2ngCyKHWyZK24k3Y7dj1u4Q=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.292869+00 2025-12-09 10:14:45.292874+00 4593 C23131#紫底蓝M码 SPMX-20240815299735 \N \N \N 1 \N [{"file_id": "0ffde6ab-c578-4bbe-a129-515518ef07d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cddd97d56d9d458287df9cd6506ae9b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cddd97d56d9d458287df9cd6506ae9b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cddd97d56d9d458287df9cd6506ae9b2.jpg", "file_size": 15813, "is_delete": false, "file_type": 1, "original_file_name": "C23131#紫底蓝M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddd97d56d9d458287df9cd6506ae9b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddd97d56d9d458287df9cd6506ae9b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddd97d56d9d458287df9cd6506ae9b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cddd97d56d9d458287df9cd6506ae9b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cddd97d56d9d458287df9cd6506ae9b2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ps993IZwU-P-0YmvXRSchGYpjAI=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.294053+00 2025-12-09 10:14:45.294057+00 4594 8006#黑色批布文件共用 SPMX-20240815299740 \N \N \N 1 \N [{"file_id": "94cb3cb7-346d-4432-a377-92d5d3bec84c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba0535905789450487c2ac254c3ce2ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba0535905789450487c2ac254c3ce2ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba0535905789450487c2ac254c3ce2ff.jpg", "file_size": 39182, "is_delete": false, "file_type": 1, "original_file_name": "8006#黑色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0535905789450487c2ac254c3ce2ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0535905789450487c2ac254c3ce2ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0535905789450487c2ac254c3ce2ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba0535905789450487c2ac254c3ce2ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba0535905789450487c2ac254c3ce2ff.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6MOOAp5-dPILy1MwPf14ARU_GM=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.29522+00 2025-12-09 10:14:45.295224+00 4595 1046#浅卡 SPMX-20240815299739 \N \N \N 1 \N [{"file_id": "c217039b-4eab-4935-874a-533596e99d65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fd3dd559cb54e8aba56f0a4382121e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fd3dd559cb54e8aba56f0a4382121e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fd3dd559cb54e8aba56f0a4382121e1.jpg", "file_size": 14769, "is_delete": false, "file_type": 1, "original_file_name": "1046#浅卡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd3dd559cb54e8aba56f0a4382121e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd3dd559cb54e8aba56f0a4382121e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd3dd559cb54e8aba56f0a4382121e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fd3dd559cb54e8aba56f0a4382121e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fd3dd559cb54e8aba56f0a4382121e1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NNxJqc_MkQK-rNxG7NhLJvXTMY=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.296391+00 2025-12-09 10:14:45.296394+00 4596 LHJ9194#20#枣红 SPMX-20240815299737 \N \N \N 1 \N [{"file_id": "cae888b8-9de9-4ae2-8e2b-0b11b4f692b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e450981de96f463199eca9410f08a244.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e450981de96f463199eca9410f08a244.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e450981de96f463199eca9410f08a244.jpg", "file_size": 19797, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e450981de96f463199eca9410f08a244.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e450981de96f463199eca9410f08a244.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e450981de96f463199eca9410f08a244.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e450981de96f463199eca9410f08a244.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e450981de96f463199eca9410f08a244.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKnovhrMgVstyQS3H5CnUKeMACk=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.297525+00 2025-12-09 10:14:45.297529+00 4597 LZ1202#上身2号色 SPMX-20240815299742 \N \N \N 1 \N [{"file_id": "4cb4fead-2b66-414e-99eb-c95e9fc0afb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03944f779e02437fbb6cc6bf636847b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03944f779e02437fbb6cc6bf636847b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03944f779e02437fbb6cc6bf636847b2.jpg", "file_size": 16289, "is_delete": false, "file_type": 1, "original_file_name": "LZ1202#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03944f779e02437fbb6cc6bf636847b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03944f779e02437fbb6cc6bf636847b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03944f779e02437fbb6cc6bf636847b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03944f779e02437fbb6cc6bf636847b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03944f779e02437fbb6cc6bf636847b2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1kXpKBNikmWj8jGgWINqMDnjYM=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.298692+00 2025-12-09 10:14:45.298696+00 4598 DH20220779FW#M短袖口灰 SPMX-20240815299729 \N \N \N 1 \N [{"file_id": "3d924b3b-f249-4295-b66b-bcc7d94ef73c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8994352c2de46458962500b21da54ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8994352c2de46458962500b21da54ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8994352c2de46458962500b21da54ae.jpg", "file_size": 11558, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8994352c2de46458962500b21da54ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8994352c2de46458962500b21da54ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8994352c2de46458962500b21da54ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8994352c2de46458962500b21da54ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8994352c2de46458962500b21da54ae.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tCBO0vgIVeaJK935B3lwnUMC9g=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.299853+00 2025-12-09 10:14:45.299857+00 4599 23-2101#A23领子通用 SPMX-20240815299734 \N \N \N 1 \N [{"file_id": "754268e9-28cc-4a44-9d7a-b33cd5f9b424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b8aa4e03e1a4a328f5338db56cec1ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b8aa4e03e1a4a328f5338db56cec1ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b8aa4e03e1a4a328f5338db56cec1ab.jpg", "file_size": 9198, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A23领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b8aa4e03e1a4a328f5338db56cec1ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b8aa4e03e1a4a328f5338db56cec1ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b8aa4e03e1a4a328f5338db56cec1ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b8aa4e03e1a4a328f5338db56cec1ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b8aa4e03e1a4a328f5338db56cec1ab.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-OyQ1gEM6CrCDdqC16W5tyMWIok=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.301019+00 2025-12-09 10:14:45.301024+00 4600 0001-82FWF#白色 SPMX-20240815299736 \N \N \N 1 \N [{"file_id": "ab39fba3-d7dc-4074-a72b-55d0fed2ac45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34e41bdbfcf34a4986bab7c33ba552a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34e41bdbfcf34a4986bab7c33ba552a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34e41bdbfcf34a4986bab7c33ba552a7.jpg", "file_size": 7974, "is_delete": false, "file_type": 1, "original_file_name": "0001-82FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e41bdbfcf34a4986bab7c33ba552a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e41bdbfcf34a4986bab7c33ba552a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e41bdbfcf34a4986bab7c33ba552a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34e41bdbfcf34a4986bab7c33ba552a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34e41bdbfcf34a4986bab7c33ba552a7.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkWAVyp1br8WzdAbW3xeftxEVt0=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.302164+00 2025-12-09 10:14:45.302168+00 4601 LZ1202#上身1号色 SPMX-20240815299732 \N \N \N 1 \N [{"file_id": "0639ff11-c3d2-440d-a312-3b58fd89cbde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0abea319567a45af8e8de41e1163c6e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0abea319567a45af8e8de41e1163c6e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0abea319567a45af8e8de41e1163c6e8.jpg", "file_size": 16496, "is_delete": false, "file_type": 1, "original_file_name": "LZ1202#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0abea319567a45af8e8de41e1163c6e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0abea319567a45af8e8de41e1163c6e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0abea319567a45af8e8de41e1163c6e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0abea319567a45af8e8de41e1163c6e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0abea319567a45af8e8de41e1163c6e8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-0Qg-8hqfvhDeWIeBpclXWLlxc=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.303331+00 2025-12-09 10:14:45.303336+00 4602 HSH050#黄 SPMX-20240815299743 \N \N \N 1 \N [{"file_id": "b4adf8b2-4b63-4a6d-82ad-c34ddf5a5366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3ce0fcfb26542e08c7c970bc90eb6cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3ce0fcfb26542e08c7c970bc90eb6cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3ce0fcfb26542e08c7c970bc90eb6cf.jpg", "file_size": 11739, "is_delete": false, "file_type": 1, "original_file_name": "HSH050#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3ce0fcfb26542e08c7c970bc90eb6cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3ce0fcfb26542e08c7c970bc90eb6cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3ce0fcfb26542e08c7c970bc90eb6cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3ce0fcfb26542e08c7c970bc90eb6cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3ce0fcfb26542e08c7c970bc90eb6cf.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSGa66Fzi3hbhkAsuAmrqD7rC48=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.304492+00 2025-12-09 10:14:45.304496+00 4603 0001-82#FWF SPMX-20240815299727 \N \N \N 1 \N [{"file_id": "513ee763-20f4-47d4-b58a-d63e8f5c4e09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a2a8af925f0498cb86f198df71ec882.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a2a8af925f0498cb86f198df71ec882.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a2a8af925f0498cb86f198df71ec882.jpg", "file_size": 19383, "is_delete": false, "file_type": 1, "original_file_name": "0001-82#FWF.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a8af925f0498cb86f198df71ec882.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a8af925f0498cb86f198df71ec882.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a8af925f0498cb86f198df71ec882.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a2a8af925f0498cb86f198df71ec882.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a2a8af925f0498cb86f198df71ec882.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Khhio8tM98BHm4X82da4aU0ZaCA=", "createTime": "2024-08-15 14:40:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.305634+00 2025-12-09 10:14:45.305638+00 4604 FHXGPK-003-5 SPMX-20240815299741 \N \N \N 1 \N [{"file_id": "61a4a8ee-be75-4d77-8788-2d5b55abfda8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea6a0ec60eab4f0d96a39f2234cb4996.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea6a0ec60eab4f0d96a39f2234cb4996.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea6a0ec60eab4f0d96a39f2234cb4996.jpg", "file_size": 32541, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-003-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6a0ec60eab4f0d96a39f2234cb4996.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6a0ec60eab4f0d96a39f2234cb4996.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6a0ec60eab4f0d96a39f2234cb4996.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea6a0ec60eab4f0d96a39f2234cb4996.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea6a0ec60eab4f0d96a39f2234cb4996.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hF539KqsVJUriOwCwS0YLJYrvE=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.306752+00 2025-12-09 10:14:45.306756+00 4605 FHXGPK-003-4 SPMX-20240815299730 \N \N \N 1 \N [{"file_id": "0c7a2fb1-af45-441b-b677-4720838a8658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "558ab3b8cb2b4eb0aa930df9a5de5727.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "558ab3b8cb2b4eb0aa930df9a5de5727.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "558ab3b8cb2b4eb0aa930df9a5de5727.jpg", "file_size": 31121, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558ab3b8cb2b4eb0aa930df9a5de5727.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558ab3b8cb2b4eb0aa930df9a5de5727.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558ab3b8cb2b4eb0aa930df9a5de5727.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/558ab3b8cb2b4eb0aa930df9a5de5727.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/558ab3b8cb2b4eb0aa930df9a5de5727.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3HaOSMRXDdFeHUq24Txzju8Pk8=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.307959+00 2025-12-09 10:14:45.307964+00 4606 HSH050#宝蓝 SPMX-20240815299731 \N \N \N 1 \N [{"file_id": "01c0e573-f620-4c0f-9f86-37ce465c4d5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd1e8340f89e45df851d72c8984bd01a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd1e8340f89e45df851d72c8984bd01a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd1e8340f89e45df851d72c8984bd01a.jpg", "file_size": 11672, "is_delete": false, "file_type": 1, "original_file_name": "HSH050#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1e8340f89e45df851d72c8984bd01a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1e8340f89e45df851d72c8984bd01a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1e8340f89e45df851d72c8984bd01a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd1e8340f89e45df851d72c8984bd01a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd1e8340f89e45df851d72c8984bd01a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHSVS_ki7vIdZh4se1tuRmRmFpU=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.309352+00 2025-12-09 10:14:45.309356+00 4607 LHJ9194#14#粉 SPMX-20240815299728 \N \N \N 1 \N [{"file_id": "0f19773c-87a0-4b25-b4ba-d6a4dc0e2834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "744af0556e1f43279c782378df13661b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "744af0556e1f43279c782378df13661b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "744af0556e1f43279c782378df13661b.jpg", "file_size": 20000, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#14#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744af0556e1f43279c782378df13661b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744af0556e1f43279c782378df13661b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744af0556e1f43279c782378df13661b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/744af0556e1f43279c782378df13661b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/744af0556e1f43279c782378df13661b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVyy9iXgRCD-8NyuFN0bX5Oqi50=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.310581+00 2025-12-09 10:14:45.310585+00 4608 JS0974-A26#RC23 SPMX-20240815299733 \N \N \N 1 \N [{"file_id": "802139c3-99a2-4b01-a33c-fd198bdbb998", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b585d8540bc41dd88bd827ad203683e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b585d8540bc41dd88bd827ad203683e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b585d8540bc41dd88bd827ad203683e.jpg", "file_size": 74713, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A26#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b585d8540bc41dd88bd827ad203683e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b585d8540bc41dd88bd827ad203683e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b585d8540bc41dd88bd827ad203683e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b585d8540bc41dd88bd827ad203683e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b585d8540bc41dd88bd827ad203683e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uWPC7sP5-WtdGt5WQ4EmueRddU=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.311742+00 2025-12-09 10:14:45.311746+00 4609 DH20220779FW#M短袖口白 SPMX-20240815299738 \N \N \N 1 \N [{"file_id": "fce1014d-5925-43bc-8095-c3cf441aa2bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15735a0abf44ac8a3743e76f38fa59b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15735a0abf44ac8a3743e76f38fa59b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15735a0abf44ac8a3743e76f38fa59b.jpg", "file_size": 10655, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15735a0abf44ac8a3743e76f38fa59b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15735a0abf44ac8a3743e76f38fa59b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15735a0abf44ac8a3743e76f38fa59b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15735a0abf44ac8a3743e76f38fa59b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15735a0abf44ac8a3743e76f38fa59b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zke3xHyeclaD2wXOQ1C-VcwQ410=", "createTime": "2024-08-15 14:40:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.312908+00 2025-12-09 10:14:45.312912+00 4610 0001-82FWF#粉色 SPMX-20240815299747 \N \N \N 1 \N [{"file_id": "8e37759f-9d64-47fe-9ebe-4088516d79d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5934c942eda74aefb706db71d13a82ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5934c942eda74aefb706db71d13a82ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5934c942eda74aefb706db71d13a82ab.jpg", "file_size": 7881, "is_delete": false, "file_type": 1, "original_file_name": "0001-82FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5934c942eda74aefb706db71d13a82ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5934c942eda74aefb706db71d13a82ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5934c942eda74aefb706db71d13a82ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5934c942eda74aefb706db71d13a82ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5934c942eda74aefb706db71d13a82ab.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUeY4L6OSInNBIHHEKYfaAEXS6s=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.314054+00 2025-12-09 10:14:45.314058+00 4611 LHJ9194#22#玫红 SPMX-20240815299749 \N \N \N 1 \N [{"file_id": "7e3d4be9-a348-495f-9d4d-b5dcfe5b741a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f768e9e46eb40418c0b33e480c7f06d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f768e9e46eb40418c0b33e480c7f06d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f768e9e46eb40418c0b33e480c7f06d.jpg", "file_size": 19610, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#22#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f768e9e46eb40418c0b33e480c7f06d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f768e9e46eb40418c0b33e480c7f06d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f768e9e46eb40418c0b33e480c7f06d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f768e9e46eb40418c0b33e480c7f06d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f768e9e46eb40418c0b33e480c7f06d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1myf9Pb5atYvEieMmwR-BdGJ8k=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.315218+00 2025-12-09 10:14:45.315222+00 4612 HSH050FW#VS-D3 SPMX-20240815299755 \N \N \N 1 \N [{"file_id": "99f8b108-21ff-4e93-bc52-d8d13bd1f242", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "600f7aace9fb4a47b9bb142f3143cd16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "600f7aace9fb4a47b9bb142f3143cd16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "600f7aace9fb4a47b9bb142f3143cd16.jpg", "file_size": 24849, "is_delete": false, "file_type": 1, "original_file_name": "HSH050FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600f7aace9fb4a47b9bb142f3143cd16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600f7aace9fb4a47b9bb142f3143cd16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600f7aace9fb4a47b9bb142f3143cd16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/600f7aace9fb4a47b9bb142f3143cd16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/600f7aace9fb4a47b9bb142f3143cd16.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vx5FLjBHGmNct7CseVSda0do8c=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.316354+00 2025-12-09 10:14:45.316358+00 4613 JS0974-A28#RC23 SPMX-20240815299744 \N \N \N 1 \N [{"file_id": "b51adc71-e2df-458e-b6e6-8eb24459316c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg", "file_size": 43840, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A28#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/797ffa4f3b8d4a76a5d3c5c2f3b35b59.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHyu2i7dJ6Ul1irHkrzmIXU4bDg=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.317478+00 2025-12-09 10:14:45.317483+00 4614 80060#短袖上衣 SPMX-20240815299751 \N \N \N 1 \N [{"file_id": "92426925-9c8b-4ccd-a49d-95067be6db94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ecd8b0a7f2642759cdec7aaa3a520db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ecd8b0a7f2642759cdec7aaa3a520db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ecd8b0a7f2642759cdec7aaa3a520db.jpg", "file_size": 25459, "is_delete": false, "file_type": 1, "original_file_name": "80060#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecd8b0a7f2642759cdec7aaa3a520db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecd8b0a7f2642759cdec7aaa3a520db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecd8b0a7f2642759cdec7aaa3a520db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ecd8b0a7f2642759cdec7aaa3a520db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ecd8b0a7f2642759cdec7aaa3a520db.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63ZOvCkKqoqOG828HFl_8pS_3uw=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.318637+00 2025-12-09 10:14:45.318641+00 4615 C23131#紫底蓝S码 SPMX-20240815299746 \N \N \N 1 \N [{"file_id": "a477f580-68ad-48e6-a563-5d45c6e0a3a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed9a540fec4f402e97af11160051efb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed9a540fec4f402e97af11160051efb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed9a540fec4f402e97af11160051efb0.jpg", "file_size": 15705, "is_delete": false, "file_type": 1, "original_file_name": "C23131#紫底蓝S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a540fec4f402e97af11160051efb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a540fec4f402e97af11160051efb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a540fec4f402e97af11160051efb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed9a540fec4f402e97af11160051efb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed9a540fec4f402e97af11160051efb0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAdRotksnDAex_wXdFaFlqVzRdE=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.319811+00 2025-12-09 10:14:45.319816+00 4616 23-2101#A25前后片3XL SPMX-20240815299745 \N \N \N 1 \N [{"file_id": "9376d15c-5c77-4aa4-9ed1-5de7e9ed3562", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c8d0f9a55b94665a97774a34e7a817a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c8d0f9a55b94665a97774a34e7a817a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c8d0f9a55b94665a97774a34e7a817a.jpg", "file_size": 18243, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A25前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8d0f9a55b94665a97774a34e7a817a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8d0f9a55b94665a97774a34e7a817a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8d0f9a55b94665a97774a34e7a817a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c8d0f9a55b94665a97774a34e7a817a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c8d0f9a55b94665a97774a34e7a817a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bNTHL8SiqAcwL8XcKHL5VPflCh8=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.320945+00 2025-12-09 10:14:45.320949+00 4617 DH20220779FW#M短袖口粉 SPMX-20240815299748 \N \N \N 1 \N [{"file_id": "4b7121ee-9796-4305-91b2-596adf69187c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52f98b997abf4f038d1ce6954467572a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52f98b997abf4f038d1ce6954467572a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52f98b997abf4f038d1ce6954467572a.jpg", "file_size": 14321, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52f98b997abf4f038d1ce6954467572a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52f98b997abf4f038d1ce6954467572a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52f98b997abf4f038d1ce6954467572a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52f98b997abf4f038d1ce6954467572a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52f98b997abf4f038d1ce6954467572a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEotuNE8Qy-7MvWV9SomLTe2Xy4=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.322078+00 2025-12-09 10:14:45.322083+00 4618 JS0974-A29#RC23 SPMX-20240815299754 \N \N \N 1 \N [{"file_id": "ea401671-beb3-4a27-97f3-4ede2f8ba673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76f7b439cd0b47c99c81e0ab0e96f477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76f7b439cd0b47c99c81e0ab0e96f477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76f7b439cd0b47c99c81e0ab0e96f477.jpg", "file_size": 33116, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A29#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f7b439cd0b47c99c81e0ab0e96f477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f7b439cd0b47c99c81e0ab0e96f477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f7b439cd0b47c99c81e0ab0e96f477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76f7b439cd0b47c99c81e0ab0e96f477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76f7b439cd0b47c99c81e0ab0e96f477.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgpgoZ31dcNBEX0om_DL-beSyMs=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.323211+00 2025-12-09 10:14:45.323215+00 4619 1046#深卡 SPMX-20240815299750 \N \N \N 1 \N [{"file_id": "152af090-82d4-47b8-aa8e-99ee728430bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7058d008ea3f40a69511cf11f4b97491.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7058d008ea3f40a69511cf11f4b97491.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7058d008ea3f40a69511cf11f4b97491.jpg", "file_size": 14130, "is_delete": false, "file_type": 1, "original_file_name": "1046#深卡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7058d008ea3f40a69511cf11f4b97491.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7058d008ea3f40a69511cf11f4b97491.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7058d008ea3f40a69511cf11f4b97491.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7058d008ea3f40a69511cf11f4b97491.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7058d008ea3f40a69511cf11f4b97491.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jdopc8j8cg2b-BquO0dP6zAn18=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.324366+00 2025-12-09 10:14:45.32437+00 4620 FHXGPK-004-1 SPMX-20240815299753 \N \N \N 1 \N [{"file_id": "ae226250-25be-422f-bbcc-bae053fde896", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dfbf365286d465098e02b8826014dc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dfbf365286d465098e02b8826014dc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dfbf365286d465098e02b8826014dc9.jpg", "file_size": 31910, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfbf365286d465098e02b8826014dc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfbf365286d465098e02b8826014dc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfbf365286d465098e02b8826014dc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dfbf365286d465098e02b8826014dc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dfbf365286d465098e02b8826014dc9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Qn3kmROiQUa2b_WyXkbBWRimRw=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.325493+00 2025-12-09 10:14:45.325497+00 4621 23-2101#A25前后片4XL SPMX-20240815299756 \N \N \N 1 \N [{"file_id": "9eae42dd-8059-4b61-ad08-9e777cb40790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3356b4297534113b055147a8e0fddb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3356b4297534113b055147a8e0fddb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3356b4297534113b055147a8e0fddb1.jpg", "file_size": 19321, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A25前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3356b4297534113b055147a8e0fddb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3356b4297534113b055147a8e0fddb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3356b4297534113b055147a8e0fddb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3356b4297534113b055147a8e0fddb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3356b4297534113b055147a8e0fddb1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsdumsfR007O3Syt_RvqhaUY9rA=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.326643+00 2025-12-09 10:14:45.326646+00 4622 LZ1202#上身3号色 SPMX-20240815299752 \N \N \N 1 \N [{"file_id": "2277515f-7650-49ef-a852-fb9366619581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b62def02d514b73b62a315ad97d0b45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b62def02d514b73b62a315ad97d0b45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b62def02d514b73b62a315ad97d0b45.jpg", "file_size": 15801, "is_delete": false, "file_type": 1, "original_file_name": "LZ1202#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b62def02d514b73b62a315ad97d0b45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b62def02d514b73b62a315ad97d0b45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b62def02d514b73b62a315ad97d0b45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b62def02d514b73b62a315ad97d0b45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b62def02d514b73b62a315ad97d0b45.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMBk_R_5HZgVDGnXvZe2EwBKSO8=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.327912+00 2025-12-09 10:14:45.327917+00 4623 JS0974-A3#RC23 SPMX-20240815299764 \N \N \N 1 \N [{"file_id": "e9587ea5-1f82-4680-8737-a1848a6967e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eb00669161f46f099a92b5cdf532472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eb00669161f46f099a92b5cdf532472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eb00669161f46f099a92b5cdf532472.jpg", "file_size": 26160, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb00669161f46f099a92b5cdf532472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb00669161f46f099a92b5cdf532472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb00669161f46f099a92b5cdf532472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eb00669161f46f099a92b5cdf532472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eb00669161f46f099a92b5cdf532472.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eg0I6BWC9V22Ip0p8KgO8z0S4g8=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.329087+00 2025-12-09 10:14:45.329091+00 4624 HSH051FW#咖VS-D3 SPMX-20240815299765 \N \N \N 1 \N [{"file_id": "d881c439-2f8f-4dae-9e3e-7423626f11fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6361ce3af2674267a5e73229df9c577e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6361ce3af2674267a5e73229df9c577e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6361ce3af2674267a5e73229df9c577e.jpg", "file_size": 11179, "is_delete": false, "file_type": 1, "original_file_name": "HSH051FW#咖VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6361ce3af2674267a5e73229df9c577e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6361ce3af2674267a5e73229df9c577e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6361ce3af2674267a5e73229df9c577e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6361ce3af2674267a5e73229df9c577e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6361ce3af2674267a5e73229df9c577e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BzegElzLZhx37NGNwK5iCVGIR8=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.330234+00 2025-12-09 10:14:45.330238+00 4625 LZ1202#上身4号色 SPMX-20240815299763 \N \N \N 1 \N [{"file_id": "97e9d93b-fb24-433f-a00c-ecc1602470a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2a50d074d594531be358da273678a19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2a50d074d594531be358da273678a19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2a50d074d594531be358da273678a19.jpg", "file_size": 15853, "is_delete": false, "file_type": 1, "original_file_name": "LZ1202#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a50d074d594531be358da273678a19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a50d074d594531be358da273678a19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a50d074d594531be358da273678a19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2a50d074d594531be358da273678a19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2a50d074d594531be358da273678a19.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MFsqy7Q1NUq9140X6I--wq1dy0=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.331376+00 2025-12-09 10:14:45.33138+00 4626 0001-8FWE#VS-D3 SPMX-20240815299769 \N \N \N 1 \N [{"file_id": "79e4fe59-7ad3-4166-9e76-0b9db11f6358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a821266e7fe34aada19d85eabd06a61a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a821266e7fe34aada19d85eabd06a61a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a821266e7fe34aada19d85eabd06a61a.jpg", "file_size": 19383, "is_delete": false, "file_type": 1, "original_file_name": "0001-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a821266e7fe34aada19d85eabd06a61a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a821266e7fe34aada19d85eabd06a61a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a821266e7fe34aada19d85eabd06a61a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a821266e7fe34aada19d85eabd06a61a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a821266e7fe34aada19d85eabd06a61a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGsDF4Ds_3gsLUyXG-x2he2kgUU=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.332524+00 2025-12-09 10:14:45.332529+00 4627 DH20220779FW#M短袖口绿 SPMX-20240815299761 \N \N \N 1 \N [{"file_id": "65394ece-917d-428d-baef-90225344dda7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b12ad89eeb41d79ff2e7b958661394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b12ad89eeb41d79ff2e7b958661394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b12ad89eeb41d79ff2e7b958661394.jpg", "file_size": 13225, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b12ad89eeb41d79ff2e7b958661394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b12ad89eeb41d79ff2e7b958661394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b12ad89eeb41d79ff2e7b958661394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b12ad89eeb41d79ff2e7b958661394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b12ad89eeb41d79ff2e7b958661394.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dyWC1r0fjWTXlRWlMYoh6IF0w0=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.333673+00 2025-12-09 10:14:45.333676+00 4628 LHJ9194#5#彩兰 SPMX-20240815299770 \N \N \N 1 \N [{"file_id": "faa934b5-2795-4383-b09b-31ffcbbf4185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1157b217fc0848998ddaf662a4fb9191.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1157b217fc0848998ddaf662a4fb9191.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1157b217fc0848998ddaf662a4fb9191.jpg", "file_size": 20313, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157b217fc0848998ddaf662a4fb9191.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157b217fc0848998ddaf662a4fb9191.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157b217fc0848998ddaf662a4fb9191.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1157b217fc0848998ddaf662a4fb9191.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1157b217fc0848998ddaf662a4fb9191.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxI88q4C4Tb6iDIVFyC2mvvboyA=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.334966+00 2025-12-09 10:14:45.334971+00 4629 C23131#紫底蓝净色 SPMX-20240815299767 \N \N \N 1 \N [{"file_id": "c0e60776-4182-43a5-8bf1-50c5dea8996c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6c8419879b942e881f306a6f954cce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6c8419879b942e881f306a6f954cce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6c8419879b942e881f306a6f954cce0.jpg", "file_size": 6590, "is_delete": false, "file_type": 1, "original_file_name": "C23131#紫底蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c8419879b942e881f306a6f954cce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c8419879b942e881f306a6f954cce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c8419879b942e881f306a6f954cce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6c8419879b942e881f306a6f954cce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6c8419879b942e881f306a6f954cce0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzcTgS1kMVG-D3eeBDhYZ_YlTIU=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.336157+00 2025-12-09 10:14:45.336161+00 4630 80060#短袖子 SPMX-20240815299762 \N \N \N 1 \N [{"file_id": "ab132658-fbf0-411b-a8ae-dea341d91b84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2ca956e5e07452ca9d56b304a9b9cce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2ca956e5e07452ca9d56b304a9b9cce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2ca956e5e07452ca9d56b304a9b9cce.jpg", "file_size": 25247, "is_delete": false, "file_type": 1, "original_file_name": "80060#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca956e5e07452ca9d56b304a9b9cce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca956e5e07452ca9d56b304a9b9cce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca956e5e07452ca9d56b304a9b9cce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2ca956e5e07452ca9d56b304a9b9cce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2ca956e5e07452ca9d56b304a9b9cce.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOBTHipMxVHhCSdLbrXaWuXinWM=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.337312+00 2025-12-09 10:14:45.337316+00 4631 23-2101#A25袖子3XL SPMX-20240815299766 \N \N \N 1 \N [{"file_id": "6495a268-2f7c-4698-a322-4b9448da5c97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "070489dcfd1d43fe9f8a7b55769737aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "070489dcfd1d43fe9f8a7b55769737aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "070489dcfd1d43fe9f8a7b55769737aa.jpg", "file_size": 15025, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A25袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/070489dcfd1d43fe9f8a7b55769737aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/070489dcfd1d43fe9f8a7b55769737aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/070489dcfd1d43fe9f8a7b55769737aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/070489dcfd1d43fe9f8a7b55769737aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/070489dcfd1d43fe9f8a7b55769737aa.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yh8tWxbtQv8jecU4ySQmxn7h1rQ=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.338459+00 2025-12-09 10:14:45.338464+00 4632 DH20220779FW#M短袖口蓝 SPMX-20240815299771 \N \N \N 1 \N [{"file_id": "9a87e13e-bd6f-4613-ad27-5089d6033478", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "852ace2fabe1409faaf014e0f5c9e6df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "852ace2fabe1409faaf014e0f5c9e6df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "852ace2fabe1409faaf014e0f5c9e6df.jpg", "file_size": 13971, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖口蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852ace2fabe1409faaf014e0f5c9e6df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852ace2fabe1409faaf014e0f5c9e6df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852ace2fabe1409faaf014e0f5c9e6df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/852ace2fabe1409faaf014e0f5c9e6df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/852ace2fabe1409faaf014e0f5c9e6df.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qprSVwIlp40S-My7ROCWHKC25U=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.339601+00 2025-12-09 10:14:45.339604+00 4633 FHXGPK-004-2 SPMX-20240815299768 \N \N \N 1 \N [{"file_id": "8efa19f6-497c-4e57-9878-73ab50cf5534", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b4efd5f74cd4c1fb4321ed072fe4842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b4efd5f74cd4c1fb4321ed072fe4842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b4efd5f74cd4c1fb4321ed072fe4842.jpg", "file_size": 35448, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-004-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4efd5f74cd4c1fb4321ed072fe4842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4efd5f74cd4c1fb4321ed072fe4842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4efd5f74cd4c1fb4321ed072fe4842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b4efd5f74cd4c1fb4321ed072fe4842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b4efd5f74cd4c1fb4321ed072fe4842.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tx-3z9ztRbEovEfW2UDWaX0b36g=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.341032+00 2025-12-09 10:14:45.341036+00 4634 1046FWF#-2 SPMX-20240815299772 \N \N \N 1 \N [{"file_id": "228acc64-78f1-43b2-9528-96c2cce53f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bdddc0ae1f740b88059168119444b7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bdddc0ae1f740b88059168119444b7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bdddc0ae1f740b88059168119444b7c.jpg", "file_size": 18556, "is_delete": false, "file_type": 1, "original_file_name": "1046FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdddc0ae1f740b88059168119444b7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdddc0ae1f740b88059168119444b7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdddc0ae1f740b88059168119444b7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bdddc0ae1f740b88059168119444b7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bdddc0ae1f740b88059168119444b7c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLUW18fCwkGaZQBNatVTLigKOu0=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.342445+00 2025-12-09 10:14:45.342448+00 4635 1046FWF#-1 SPMX-20240815299760 \N \N \N 1 \N [{"file_id": "a0e3979a-179b-4bcc-be62-e28ca45c1b47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a1d647fe4246ae89694791b05b2798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a1d647fe4246ae89694791b05b2798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a1d647fe4246ae89694791b05b2798.jpg", "file_size": 16054, "is_delete": false, "file_type": 1, "original_file_name": "1046FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1d647fe4246ae89694791b05b2798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1d647fe4246ae89694791b05b2798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1d647fe4246ae89694791b05b2798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a1d647fe4246ae89694791b05b2798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a1d647fe4246ae89694791b05b2798.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9Ukg06VZuTJH9Nk3ifoZkWmRrU=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.34384+00 2025-12-09 10:14:45.343844+00 4636 C23131#紫底蓝XL码 SPMX-20240815299758 \N \N \N 1 \N [{"file_id": "b51482ea-412f-4c77-acad-5df2ea5a331f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d2ee4283a304b68aa1d04b68a10d96d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d2ee4283a304b68aa1d04b68a10d96d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d2ee4283a304b68aa1d04b68a10d96d.jpg", "file_size": 15504, "is_delete": false, "file_type": 1, "original_file_name": "C23131#紫底蓝XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2ee4283a304b68aa1d04b68a10d96d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2ee4283a304b68aa1d04b68a10d96d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2ee4283a304b68aa1d04b68a10d96d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d2ee4283a304b68aa1d04b68a10d96d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d2ee4283a304b68aa1d04b68a10d96d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ifRyMxsISTTyoAA3Eu8_78vQrY=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.345291+00 2025-12-09 10:14:45.345295+00 4637 LHJ9194#25#土黄 SPMX-20240815299759 \N \N \N 1 \N [{"file_id": "a0a4430b-2248-4ed1-a1ce-0923141780f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cc416bfdf1d425eb9d298f783a9509c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cc416bfdf1d425eb9d298f783a9509c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cc416bfdf1d425eb9d298f783a9509c.jpg", "file_size": 20481, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc416bfdf1d425eb9d298f783a9509c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc416bfdf1d425eb9d298f783a9509c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc416bfdf1d425eb9d298f783a9509c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cc416bfdf1d425eb9d298f783a9509c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cc416bfdf1d425eb9d298f783a9509c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyqEClTG0e1DX2I7_9hHhxRXeXQ=", "createTime": "2024-08-15 14:40:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.346696+00 2025-12-09 10:14:45.3467+00 4638 0001-83#WJC22 SPMX-20240815299757 \N \N \N 1 \N [{"file_id": "316761d8-5e78-4ec8-9aed-1b7399e07722", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2314e6d2bb774ecca550d51ec30a5312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2314e6d2bb774ecca550d51ec30a5312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2314e6d2bb774ecca550d51ec30a5312.jpg", "file_size": 20658, "is_delete": false, "file_type": 1, "original_file_name": "0001-83#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2314e6d2bb774ecca550d51ec30a5312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2314e6d2bb774ecca550d51ec30a5312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2314e6d2bb774ecca550d51ec30a5312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2314e6d2bb774ecca550d51ec30a5312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2314e6d2bb774ecca550d51ec30a5312.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVjOfBU2iI-i2E585xnI39tIyIg=", "createTime": "2024-08-15 14:40:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.348118+00 2025-12-09 10:14:45.348121+00 4639 80061#短款上身彩蓝 SPMX-20240815299786 \N \N \N 1 \N [{"file_id": "dfb0e443-17c3-4bd1-8f23-7891b6cc5414", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b486be89908c4250a5aff4afc1838e62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b486be89908c4250a5aff4afc1838e62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b486be89908c4250a5aff4afc1838e62.jpg", "file_size": 24901, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款上身彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b486be89908c4250a5aff4afc1838e62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b486be89908c4250a5aff4afc1838e62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b486be89908c4250a5aff4afc1838e62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b486be89908c4250a5aff4afc1838e62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b486be89908c4250a5aff4afc1838e62.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4o-G_RpHHaxoSjVcAzxaSwUa66M=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.34953+00 2025-12-09 10:14:45.349534+00 4640 80061#短款上身墨绿 SPMX-20240815299773 \N \N \N 1 \N [{"file_id": "ff61e670-4ac7-450d-ae5f-718c20e333f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg", "file_size": 25459, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac1bb6dcdceb4ab4b084518e8f46d7ea.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emim2_QsaVhJLIr8tkd5s3P8xm8=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.350961+00 2025-12-09 10:14:45.350964+00 4641 23-2101#A25袖子4XL SPMX-20240815299777 \N \N \N 1 \N [{"file_id": "102b7f8f-bbe7-49dd-b0b0-eea399965e7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "359a5aaccc604de0912f4bcd1efa471a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "359a5aaccc604de0912f4bcd1efa471a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "359a5aaccc604de0912f4bcd1efa471a.jpg", "file_size": 13346, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A25袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359a5aaccc604de0912f4bcd1efa471a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359a5aaccc604de0912f4bcd1efa471a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359a5aaccc604de0912f4bcd1efa471a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/359a5aaccc604de0912f4bcd1efa471a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/359a5aaccc604de0912f4bcd1efa471a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irUsyeaOMyeMPYC-WWWPgIA1GKU=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.352112+00 2025-12-09 10:14:45.352116+00 4642 HSH051FW#紫红VS-D3 SPMX-20240815299785 \N \N \N 1 \N [{"file_id": "304f7e3f-186a-4136-b10e-25695df3fe61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a09cf2b196404292b41719e5725941e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a09cf2b196404292b41719e5725941e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a09cf2b196404292b41719e5725941e5.jpg", "file_size": 11210, "is_delete": false, "file_type": 1, "original_file_name": "HSH051FW#紫红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09cf2b196404292b41719e5725941e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09cf2b196404292b41719e5725941e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09cf2b196404292b41719e5725941e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a09cf2b196404292b41719e5725941e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a09cf2b196404292b41719e5725941e5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsA6PDc5ijdanEyq4nZ9ANc6hJo=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.353254+00 2025-12-09 10:14:45.353258+00 4643 HSH051FW#白VS-D3 SPMX-20240815299774 \N \N \N 1 \N [{"file_id": "ce31193b-acec-4dab-a94c-b6885f487696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9222eb6c7cf84dee8ec1c05bfd64dec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9222eb6c7cf84dee8ec1c05bfd64dec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9222eb6c7cf84dee8ec1c05bfd64dec2.jpg", "file_size": 12974, "is_delete": false, "file_type": 1, "original_file_name": "HSH051FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222eb6c7cf84dee8ec1c05bfd64dec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222eb6c7cf84dee8ec1c05bfd64dec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222eb6c7cf84dee8ec1c05bfd64dec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9222eb6c7cf84dee8ec1c05bfd64dec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9222eb6c7cf84dee8ec1c05bfd64dec2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Q69zQgkbXIZdQ_q_oLYDM2TW5s=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.354394+00 2025-12-09 10:14:45.354399+00 4644 DH20220779FW#M短袖橙 SPMX-20240815299784 \N \N \N 1 \N [{"file_id": "a631eeb1-2570-4fa6-a14d-d9e5e0b8a724", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10ec39cf0444421facd8f980f80a198a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10ec39cf0444421facd8f980f80a198a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10ec39cf0444421facd8f980f80a198a.jpg", "file_size": 16851, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ec39cf0444421facd8f980f80a198a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ec39cf0444421facd8f980f80a198a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ec39cf0444421facd8f980f80a198a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10ec39cf0444421facd8f980f80a198a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10ec39cf0444421facd8f980f80a198a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWn83Vp8RcH9E1WEJ0BgYVRepvU=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.355555+00 2025-12-09 10:14:45.355559+00 4645 23-2101#A25领子通用 SPMX-20240815299789 \N \N \N 1 \N [{"file_id": "ff488475-1426-4fc5-aff8-0735ffe90301", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3ba5289408c40fbad52413b9a36b926.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3ba5289408c40fbad52413b9a36b926.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3ba5289408c40fbad52413b9a36b926.jpg", "file_size": 13349, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A25领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ba5289408c40fbad52413b9a36b926.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ba5289408c40fbad52413b9a36b926.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ba5289408c40fbad52413b9a36b926.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3ba5289408c40fbad52413b9a36b926.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3ba5289408c40fbad52413b9a36b926.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9BJ9x8omDuI3SUxHY2JoRP2wdk=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.356701+00 2025-12-09 10:14:45.356708+00 4646 0001-8FWF#V5曲线 SPMX-20240815299778 \N \N \N 1 \N [{"file_id": "eb5ba473-540f-4b68-a2af-f0129b7d54fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b12809117db4a978819506603668f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b12809117db4a978819506603668f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b12809117db4a978819506603668f95.jpg", "file_size": 16482, "is_delete": false, "file_type": 1, "original_file_name": "0001-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b12809117db4a978819506603668f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b12809117db4a978819506603668f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b12809117db4a978819506603668f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b12809117db4a978819506603668f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b12809117db4a978819506603668f95.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9YRux32Xhh2_DeqtU4GNdBguP3E=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.357858+00 2025-12-09 10:14:45.357862+00 4647 C23135#橙色L码 SPMX-20240815299780 \N \N \N 1 \N [{"file_id": "b8287f06-f0a3-4051-bf0c-20a3f473d6f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "903cb2bbb5fa48d88112f4d0d3879487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "903cb2bbb5fa48d88112f4d0d3879487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "903cb2bbb5fa48d88112f4d0d3879487.jpg", "file_size": 16833, "is_delete": false, "file_type": 1, "original_file_name": "C23135#橙色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903cb2bbb5fa48d88112f4d0d3879487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903cb2bbb5fa48d88112f4d0d3879487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903cb2bbb5fa48d88112f4d0d3879487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/903cb2bbb5fa48d88112f4d0d3879487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/903cb2bbb5fa48d88112f4d0d3879487.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ro_MTis2yrhlnkPbO3OPyKpaho=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.359004+00 2025-12-09 10:14:45.359008+00 4648 JS0974-A3#上衣棕色 SPMX-20240815299787 \N \N \N 1 \N [{"file_id": "746cbb87-fc4b-4259-a49d-7edf97c1d6e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg", "file_size": 8444, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#上衣棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dfdd3d04e1a4e24b8829d49ef8b18b3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usUpjHocrICFKluyZnlqinfPz1g=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.360139+00 2025-12-09 10:14:45.360143+00 4649 LHJ9194#55#紫色 SPMX-20240815299782 \N \N \N 1 \N [{"file_id": "98c36970-80aa-4c39-951c-7a4c06f0c330", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg", "file_size": 20675, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9194#55#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0cbcd88bbb84bbdbfeb7d6966c372ba.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yYEqZCn5XLvd9UsWVKk83smWw4=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.361267+00 2025-12-09 10:14:45.361271+00 4650 1046FWF#-3 SPMX-20240815299783 \N \N \N 1 \N [{"file_id": "1cdef27b-a984-4980-88b7-6cec30c2a781", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05ba4866036647ffb1844bb16e121b03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05ba4866036647ffb1844bb16e121b03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05ba4866036647ffb1844bb16e121b03.jpg", "file_size": 12834, "is_delete": false, "file_type": 1, "original_file_name": "1046FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ba4866036647ffb1844bb16e121b03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ba4866036647ffb1844bb16e121b03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ba4866036647ffb1844bb16e121b03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05ba4866036647ffb1844bb16e121b03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05ba4866036647ffb1844bb16e121b03.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZhiTZSXn_ANLSTtMDMw8vmq8Izw=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.362394+00 2025-12-09 10:14:45.362398+00 4651 FHXGPK-004-3 SPMX-20240815299781 \N \N \N 1 \N [{"file_id": "20d02817-c793-46a3-869c-f3fe299e6230", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85322f670df542a5bd98da01d46c7486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85322f670df542a5bd98da01d46c7486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85322f670df542a5bd98da01d46c7486.jpg", "file_size": 30809, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-004-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85322f670df542a5bd98da01d46c7486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85322f670df542a5bd98da01d46c7486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85322f670df542a5bd98da01d46c7486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85322f670df542a5bd98da01d46c7486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85322f670df542a5bd98da01d46c7486.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6puJ1DZw98Rn4Yhb4MDPLAMqhjs=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.363537+00 2025-12-09 10:14:45.36354+00 4652 JS0974-A3#上衣 SPMX-20240815299775 \N \N \N 1 \N [{"file_id": "216697a8-e2cf-43f0-9eb2-bb6f55de44b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg", "file_size": 7881, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1c0cf96c8da47ebbf59a70c7dbbc76a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMFLR8ap_5Wyv66VAcYCQm7P158=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.364659+00 2025-12-09 10:14:45.364663+00 4653 LZ1202#上身5号色 SPMX-20240815299776 \N \N \N 1 \N [{"file_id": "b4317638-ca6f-4fba-831e-9f0a530187c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47f447ed3d6f4581ae9cafc3a8cd5113.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47f447ed3d6f4581ae9cafc3a8cd5113.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47f447ed3d6f4581ae9cafc3a8cd5113.jpg", "file_size": 15212, "is_delete": false, "file_type": 1, "original_file_name": "LZ1202#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f447ed3d6f4581ae9cafc3a8cd5113.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f447ed3d6f4581ae9cafc3a8cd5113.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f447ed3d6f4581ae9cafc3a8cd5113.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47f447ed3d6f4581ae9cafc3a8cd5113.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47f447ed3d6f4581ae9cafc3a8cd5113.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_SuHOGcCjy0PkJVrKQd5fqj0A4=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.365813+00 2025-12-09 10:14:45.365816+00 4654 LZ1203#上身1号色 SPMX-20240815299788 \N \N \N 1 \N [{"file_id": "8ddb9425-e5dd-4533-a82c-572527a16f4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bb9ad66414e4dd3b20d17e79c614548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bb9ad66414e4dd3b20d17e79c614548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bb9ad66414e4dd3b20d17e79c614548.jpg", "file_size": 19097, "is_delete": false, "file_type": 1, "original_file_name": "LZ1203#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb9ad66414e4dd3b20d17e79c614548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb9ad66414e4dd3b20d17e79c614548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb9ad66414e4dd3b20d17e79c614548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bb9ad66414e4dd3b20d17e79c614548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bb9ad66414e4dd3b20d17e79c614548.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcpgX9agMPKYBvaf4aRT7VwCorY=", "createTime": "2024-08-15 14:40:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.366967+00 2025-12-09 10:14:45.366971+00 4655 HSH051FW#黄VS-D3 SPMX-20240815299796 \N \N \N 1 \N [{"file_id": "7a35f26c-ae90-49aa-8264-c5e7b00c8db9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47cc8e052c7f4054b3d4aab9a26d8ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47cc8e052c7f4054b3d4aab9a26d8ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47cc8e052c7f4054b3d4aab9a26d8ae0.jpg", "file_size": 12086, "is_delete": false, "file_type": 1, "original_file_name": "HSH051FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc8e052c7f4054b3d4aab9a26d8ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc8e052c7f4054b3d4aab9a26d8ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc8e052c7f4054b3d4aab9a26d8ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47cc8e052c7f4054b3d4aab9a26d8ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47cc8e052c7f4054b3d4aab9a26d8ae0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOG7uUX0SCrV66BRE9c_40nUMc0=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.368112+00 2025-12-09 10:14:45.368116+00 4656 80061#短款上身枣红 SPMX-20240815299797 \N \N \N 1 \N [{"file_id": "651e7ea6-a85b-481e-ab91-185750726bd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13f0365d49e04db9bdcab50e06373327.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13f0365d49e04db9bdcab50e06373327.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13f0365d49e04db9bdcab50e06373327.jpg", "file_size": 24963, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款上身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13f0365d49e04db9bdcab50e06373327.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13f0365d49e04db9bdcab50e06373327.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13f0365d49e04db9bdcab50e06373327.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13f0365d49e04db9bdcab50e06373327.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13f0365d49e04db9bdcab50e06373327.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLyHBa139tkTm-ugrZGtr2hCf8s=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.369269+00 2025-12-09 10:14:45.369273+00 4657 23-2101#A26前后片3XL SPMX-20240815299801 \N \N \N 1 \N [{"file_id": "434d3f3f-7eee-4b92-8c6f-f046a3061d5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c3a28d215b94b07bbdaa0af75334c87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c3a28d215b94b07bbdaa0af75334c87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c3a28d215b94b07bbdaa0af75334c87.jpg", "file_size": 10907, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A26前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3a28d215b94b07bbdaa0af75334c87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3a28d215b94b07bbdaa0af75334c87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3a28d215b94b07bbdaa0af75334c87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c3a28d215b94b07bbdaa0af75334c87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c3a28d215b94b07bbdaa0af75334c87.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6N31O28Sdnrc9vqKwcTLaco6bPE=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.370414+00 2025-12-09 10:14:45.370418+00 4658 LHJ9195#1#黑 SPMX-20240815299791 \N \N \N 1 \N [{"file_id": "be46632c-57c7-44da-8bf2-e1e1f004a460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac8f5ad85e3a4f8599e632d58956bca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac8f5ad85e3a4f8599e632d58956bca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac8f5ad85e3a4f8599e632d58956bca6.jpg", "file_size": 17720, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9195#1#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8f5ad85e3a4f8599e632d58956bca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8f5ad85e3a4f8599e632d58956bca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8f5ad85e3a4f8599e632d58956bca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac8f5ad85e3a4f8599e632d58956bca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac8f5ad85e3a4f8599e632d58956bca6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k8sqAqfn4HdkYwUW9REnUG5ICes=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.371556+00 2025-12-09 10:14:45.37156+00 4659 1046FWF#-4 SPMX-20240815299795 \N \N \N 1 \N [{"file_id": "82efcfd9-8fb5-4728-a2f8-60f696422d78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acf60311cab0493696582fddc1aeacc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acf60311cab0493696582fddc1aeacc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acf60311cab0493696582fddc1aeacc8.jpg", "file_size": 13944, "is_delete": false, "file_type": 1, "original_file_name": "1046FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf60311cab0493696582fddc1aeacc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf60311cab0493696582fddc1aeacc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf60311cab0493696582fddc1aeacc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acf60311cab0493696582fddc1aeacc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acf60311cab0493696582fddc1aeacc8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FbXvSKgezBE3p69NvI72r0PtfA=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.37267+00 2025-12-09 10:14:45.372674+00 4660 FHXGPK-004-5 SPMX-20240815299803 \N \N \N 1 \N [{"file_id": "5793178a-4fbd-409c-a517-844ac074a134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b87bf17e03124316b1d4bd12e05cb3c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b87bf17e03124316b1d4bd12e05cb3c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b87bf17e03124316b1d4bd12e05cb3c7.jpg", "file_size": 34753, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-004-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87bf17e03124316b1d4bd12e05cb3c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87bf17e03124316b1d4bd12e05cb3c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87bf17e03124316b1d4bd12e05cb3c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b87bf17e03124316b1d4bd12e05cb3c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b87bf17e03124316b1d4bd12e05cb3c7.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6hTHBXLVSGV1SQovxLkeHd78KRk=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.392632+00 2025-12-09 10:14:45.392636+00 4677 LHJ9195#2#白 SPMX-20240815299815 \N \N \N 1 \N [{"file_id": "fb3cc35d-4df2-420c-9b55-8cb232228535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bab7f88ce4104bf8b1bb2c169d18c5a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bab7f88ce4104bf8b1bb2c169d18c5a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bab7f88ce4104bf8b1bb2c169d18c5a5.jpg", "file_size": 12771, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9195#2#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab7f88ce4104bf8b1bb2c169d18c5a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab7f88ce4104bf8b1bb2c169d18c5a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab7f88ce4104bf8b1bb2c169d18c5a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bab7f88ce4104bf8b1bb2c169d18c5a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bab7f88ce4104bf8b1bb2c169d18c5a5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRM0_pUG0EuCCHZJIisvEj2FKU8=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.373788+00 2025-12-09 10:14:45.373792+00 4661 JS0974-A3#上衣黑色 SPMX-20240815299799 \N \N \N 1 \N [{"file_id": "356090c1-ea23-4885-9aae-440233c74f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca26b7c6537c4427a6d5be03c2a201d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca26b7c6537c4427a6d5be03c2a201d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca26b7c6537c4427a6d5be03c2a201d8.jpg", "file_size": 7984, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#上衣黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca26b7c6537c4427a6d5be03c2a201d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca26b7c6537c4427a6d5be03c2a201d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca26b7c6537c4427a6d5be03c2a201d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca26b7c6537c4427a6d5be03c2a201d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca26b7c6537c4427a6d5be03c2a201d8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWmRG5FNzriAwlFRjabAlh-MyNA=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.374944+00 2025-12-09 10:14:45.374948+00 4662 LHJ9195#10#宝兰 SPMX-20240815299802 \N \N \N 1 \N [{"file_id": "d40dd17c-cdfb-4773-9373-5b15c9dd8a45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94fbbabbc71f4c719e9009a8295efa2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94fbbabbc71f4c719e9009a8295efa2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94fbbabbc71f4c719e9009a8295efa2c.jpg", "file_size": 17252, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9195#10#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fbbabbc71f4c719e9009a8295efa2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fbbabbc71f4c719e9009a8295efa2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fbbabbc71f4c719e9009a8295efa2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94fbbabbc71f4c719e9009a8295efa2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94fbbabbc71f4c719e9009a8295efa2c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lA4zVP73t_5TPigE6i7wU-3FuQg=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.376092+00 2025-12-09 10:14:45.376096+00 4663 0001-9FWE#VS-D3 SPMX-20240815299790 \N \N \N 1 \N [{"file_id": "8ebf46ed-abe2-4c83-954c-aa2a605f5b8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5087ea1b6c3b4eaab7021a09a9e17b2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5087ea1b6c3b4eaab7021a09a9e17b2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5087ea1b6c3b4eaab7021a09a9e17b2d.jpg", "file_size": 20146, "is_delete": false, "file_type": 1, "original_file_name": "0001-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5087ea1b6c3b4eaab7021a09a9e17b2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5087ea1b6c3b4eaab7021a09a9e17b2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5087ea1b6c3b4eaab7021a09a9e17b2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5087ea1b6c3b4eaab7021a09a9e17b2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5087ea1b6c3b4eaab7021a09a9e17b2d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:777jFQPW-an0O6V6lA9QrxkN_vk=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.377233+00 2025-12-09 10:14:45.377237+00 4664 FHXGPK-004-4 SPMX-20240815299792 \N \N \N 1 \N [{"file_id": "d6b690f6-511d-461e-92e4-19186fa44236", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a40ead18468346128a1f19e1a35df3a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a40ead18468346128a1f19e1a35df3a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a40ead18468346128a1f19e1a35df3a0.jpg", "file_size": 35186, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-004-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ead18468346128a1f19e1a35df3a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ead18468346128a1f19e1a35df3a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ead18468346128a1f19e1a35df3a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a40ead18468346128a1f19e1a35df3a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a40ead18468346128a1f19e1a35df3a0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYMb5pk5UagXYmR9Ny8HFo2rXPk=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.37836+00 2025-12-09 10:14:45.378364+00 4665 DH20220779FW#M短袖浅蓝 SPMX-20240815299793 \N \N \N 1 \N [{"file_id": "1f11c285-c5b8-480a-b31b-50993d1a0931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fc2849c88b14d2c849b3f9bee80a347.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fc2849c88b14d2c849b3f9bee80a347.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fc2849c88b14d2c849b3f9bee80a347.jpg", "file_size": 15851, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2849c88b14d2c849b3f9bee80a347.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2849c88b14d2c849b3f9bee80a347.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2849c88b14d2c849b3f9bee80a347.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fc2849c88b14d2c849b3f9bee80a347.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fc2849c88b14d2c849b3f9bee80a347.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sm6esfrfGFaW3eez2g6FO3_tF4w=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.379545+00 2025-12-09 10:14:45.379549+00 4666 0001-9FWF#V5曲线 SPMX-20240815299800 \N \N \N 1 \N [{"file_id": "45076cfe-9f03-4ded-8ed9-9cb802a32605", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "428eb03b21a547b39d79be3a2e5bae4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "428eb03b21a547b39d79be3a2e5bae4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "428eb03b21a547b39d79be3a2e5bae4c.jpg", "file_size": 24403, "is_delete": false, "file_type": 1, "original_file_name": "0001-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428eb03b21a547b39d79be3a2e5bae4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428eb03b21a547b39d79be3a2e5bae4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428eb03b21a547b39d79be3a2e5bae4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/428eb03b21a547b39d79be3a2e5bae4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/428eb03b21a547b39d79be3a2e5bae4c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltg7EAnztS1NBeNjPATPXywOwyE=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.38081+00 2025-12-09 10:14:45.380816+00 4667 LZ1203#上身2号色 SPMX-20240815299798 \N \N \N 1 \N [{"file_id": "44309114-5437-4563-bdfc-98ea1d3ee59e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b105578bcd944fae91e670fa773ae68f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b105578bcd944fae91e670fa773ae68f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b105578bcd944fae91e670fa773ae68f.jpg", "file_size": 20003, "is_delete": false, "file_type": 1, "original_file_name": "LZ1203#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b105578bcd944fae91e670fa773ae68f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b105578bcd944fae91e670fa773ae68f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b105578bcd944fae91e670fa773ae68f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b105578bcd944fae91e670fa773ae68f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b105578bcd944fae91e670fa773ae68f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MRNm2KRvZ0ObwjldblfY9Wtgu3Y=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.38207+00 2025-12-09 10:14:45.382075+00 4668 C23135#橙色M码 SPMX-20240815299794 \N \N \N 1 \N [{"file_id": "3df98b82-c544-4c6c-9c20-9e39b08a4a94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e09ea72d35c4c72a71451905b35da53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e09ea72d35c4c72a71451905b35da53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e09ea72d35c4c72a71451905b35da53.jpg", "file_size": 17255, "is_delete": false, "file_type": 1, "original_file_name": "C23135#橙色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e09ea72d35c4c72a71451905b35da53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e09ea72d35c4c72a71451905b35da53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e09ea72d35c4c72a71451905b35da53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e09ea72d35c4c72a71451905b35da53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e09ea72d35c4c72a71451905b35da53.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEOaswW3lxosygYvvnHzkOikYfU=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.383292+00 2025-12-09 10:14:45.383297+00 4669 DH20220779FW#M短袖灰 SPMX-20240815299806 \N \N \N 1 \N [{"file_id": "f0d756b4-89c0-4560-bcbf-95fc2bc6eb78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0afd9cd74ed546f1ad9e21e78fcf576e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0afd9cd74ed546f1ad9e21e78fcf576e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0afd9cd74ed546f1ad9e21e78fcf576e.jpg", "file_size": 14603, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9cd74ed546f1ad9e21e78fcf576e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9cd74ed546f1ad9e21e78fcf576e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9cd74ed546f1ad9e21e78fcf576e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0afd9cd74ed546f1ad9e21e78fcf576e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0afd9cd74ed546f1ad9e21e78fcf576e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qhoCi33W3zM4iur_TAFnyN0K_Dc=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.384481+00 2025-12-09 10:14:45.384486+00 4670 FHXGPK-005-1 SPMX-20240815299814 \N \N \N 1 \N [{"file_id": "d5107e55-9254-45e3-bd59-fd3526cef3f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8639a99f24b94f0b9ad52e63f19deaad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8639a99f24b94f0b9ad52e63f19deaad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8639a99f24b94f0b9ad52e63f19deaad.jpg", "file_size": 32512, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8639a99f24b94f0b9ad52e63f19deaad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8639a99f24b94f0b9ad52e63f19deaad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8639a99f24b94f0b9ad52e63f19deaad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8639a99f24b94f0b9ad52e63f19deaad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8639a99f24b94f0b9ad52e63f19deaad.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rk-tRgWb0kApa5VPoHyTIb2u4yc=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.385663+00 2025-12-09 10:14:45.385667+00 4671 JS0974-A3#下裙 SPMX-20240815299810 \N \N \N 1 \N [{"file_id": "6abab2b6-4944-4941-8fab-64926ce12fb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "132d4f1bb4634f678f47f0a5f8aaef52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "132d4f1bb4634f678f47f0a5f8aaef52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "132d4f1bb4634f678f47f0a5f8aaef52.jpg", "file_size": 8688, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#下裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132d4f1bb4634f678f47f0a5f8aaef52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132d4f1bb4634f678f47f0a5f8aaef52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132d4f1bb4634f678f47f0a5f8aaef52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/132d4f1bb4634f678f47f0a5f8aaef52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/132d4f1bb4634f678f47f0a5f8aaef52.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NwKV2rMQVZlrS-x48VW7EX9LhxM=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.386853+00 2025-12-09 10:14:45.386857+00 4672 DH20220779FW#M短袖白 SPMX-20240815299817 \N \N \N 1 \N [{"file_id": "3d18956a-effc-4025-b7ec-9b7c4d26d15a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68cb5d8b60b04bd286e0b08778c9645e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68cb5d8b60b04bd286e0b08778c9645e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68cb5d8b60b04bd286e0b08778c9645e.jpg", "file_size": 14952, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb5d8b60b04bd286e0b08778c9645e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb5d8b60b04bd286e0b08778c9645e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb5d8b60b04bd286e0b08778c9645e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68cb5d8b60b04bd286e0b08778c9645e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68cb5d8b60b04bd286e0b08778c9645e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxijUUNOkRXMpysVhin4F1xm3Wk=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.388016+00 2025-12-09 10:14:45.38802+00 4673 23-2101#A26袖子3XL SPMX-20240815299821 \N \N \N 1 \N [{"file_id": "4e575f0e-2db1-4586-9215-940c51b6931a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2975281243c14934acbc0680d9fcfcd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2975281243c14934acbc0680d9fcfcd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2975281243c14934acbc0680d9fcfcd8.jpg", "file_size": 10100, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A26袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2975281243c14934acbc0680d9fcfcd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2975281243c14934acbc0680d9fcfcd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2975281243c14934acbc0680d9fcfcd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2975281243c14934acbc0680d9fcfcd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2975281243c14934acbc0680d9fcfcd8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X1s25g_T8AKBkHuzSwZ5R5NdXyM=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.389179+00 2025-12-09 10:14:45.389183+00 4674 LZ1203#上身4号色 SPMX-20240815299822 \N \N \N 1 \N [{"file_id": "f428ebb4-3be7-4add-a2ee-a2e34389d82c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08bcdeb23ee2401b9c4b749f8116b25a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08bcdeb23ee2401b9c4b749f8116b25a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08bcdeb23ee2401b9c4b749f8116b25a.jpg", "file_size": 17881, "is_delete": false, "file_type": 1, "original_file_name": "LZ1203#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bcdeb23ee2401b9c4b749f8116b25a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bcdeb23ee2401b9c4b749f8116b25a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bcdeb23ee2401b9c4b749f8116b25a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08bcdeb23ee2401b9c4b749f8116b25a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08bcdeb23ee2401b9c4b749f8116b25a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vBbOkqkYcr2b3gkaBVt9FtAsKRk=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.390331+00 2025-12-09 10:14:45.390335+00 4675 C23135#橙色XL码 SPMX-20240815299816 \N \N \N 1 \N [{"file_id": "7daa0f3c-3b5b-49b0-9c73-475c257f62d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "270400c28aa14f4a837dbc016202cea4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "270400c28aa14f4a837dbc016202cea4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "270400c28aa14f4a837dbc016202cea4.jpg", "file_size": 16538, "is_delete": false, "file_type": 1, "original_file_name": "C23135#橙色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270400c28aa14f4a837dbc016202cea4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270400c28aa14f4a837dbc016202cea4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270400c28aa14f4a837dbc016202cea4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/270400c28aa14f4a837dbc016202cea4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/270400c28aa14f4a837dbc016202cea4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_L1UB7IluDCCUkzsvEIXvfasBRs=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.391475+00 2025-12-09 10:14:45.391479+00 4676 80061#短款上身藏青 SPMX-20240815299823 \N \N \N 1 \N [{"file_id": "8a0dbd27-1ebc-48ef-8068-9daaf699ee7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26aa09529c414a239dd085e72bb35509.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26aa09529c414a239dd085e72bb35509.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26aa09529c414a239dd085e72bb35509.jpg", "file_size": 25318, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款上身藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26aa09529c414a239dd085e72bb35509.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26aa09529c414a239dd085e72bb35509.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26aa09529c414a239dd085e72bb35509.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26aa09529c414a239dd085e72bb35509.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26aa09529c414a239dd085e72bb35509.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cv5-ULQvJWrYfxYDBJT9taD1kXk=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.393785+00 2025-12-09 10:14:45.39379+00 4678 1046FWF#-5 SPMX-20240815299807 \N \N \N 1 \N [{"file_id": "addca9c3-5b5d-40f8-ab56-60c9973279a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b386f36bec7a4e5380b0d64376ca80a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b386f36bec7a4e5380b0d64376ca80a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b386f36bec7a4e5380b0d64376ca80a1.jpg", "file_size": 12875, "is_delete": false, "file_type": 1, "original_file_name": "1046FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b386f36bec7a4e5380b0d64376ca80a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b386f36bec7a4e5380b0d64376ca80a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b386f36bec7a4e5380b0d64376ca80a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b386f36bec7a4e5380b0d64376ca80a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b386f36bec7a4e5380b0d64376ca80a1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2_1Cae0ThGeWlaq4wTYdBkDY_c=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.394939+00 2025-12-09 10:14:45.394943+00 4679 JS0974-A3#下裙棕色 SPMX-20240815299820 \N \N \N 1 \N [{"file_id": "5677afe8-7359-49a6-baef-18557ad4dbe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e531ad0f76c483d8b11ff09330e1763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e531ad0f76c483d8b11ff09330e1763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e531ad0f76c483d8b11ff09330e1763.jpg", "file_size": 8380, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#下裙棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e531ad0f76c483d8b11ff09330e1763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e531ad0f76c483d8b11ff09330e1763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e531ad0f76c483d8b11ff09330e1763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e531ad0f76c483d8b11ff09330e1763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e531ad0f76c483d8b11ff09330e1763.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tep3zrHjEWogYQO-__Ld_T0McKc=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.396124+00 2025-12-09 10:14:45.396128+00 4680 C23135#橙色S码 SPMX-20240815299804 \N \N \N 1 \N [{"file_id": "be49e95d-b528-41a5-a8e5-575bcf87c5fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2be3a5e81124fcb9a2fd279b52fb49b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2be3a5e81124fcb9a2fd279b52fb49b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2be3a5e81124fcb9a2fd279b52fb49b.jpg", "file_size": 17340, "is_delete": false, "file_type": 1, "original_file_name": "C23135#橙色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2be3a5e81124fcb9a2fd279b52fb49b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2be3a5e81124fcb9a2fd279b52fb49b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2be3a5e81124fcb9a2fd279b52fb49b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2be3a5e81124fcb9a2fd279b52fb49b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2be3a5e81124fcb9a2fd279b52fb49b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktAyXT3sDRKYosSP-zHsTJbc4Po=", "createTime": "2024-08-15 14:40:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.397277+00 2025-12-09 10:14:45.397281+00 4681 80061#短款上身粉色 SPMX-20240815299811 \N \N \N 1 \N [{"file_id": "cae374ac-7759-447f-826a-bd2d90a44227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "741c582804c14a818c0cd8bf94984f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "741c582804c14a818c0cd8bf94984f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "741c582804c14a818c0cd8bf94984f07.jpg", "file_size": 26390, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款上身粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/741c582804c14a818c0cd8bf94984f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/741c582804c14a818c0cd8bf94984f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/741c582804c14a818c0cd8bf94984f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/741c582804c14a818c0cd8bf94984f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/741c582804c14a818c0cd8bf94984f07.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M-af6ey-vpT4Wo1jab69dXkGe9s=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.398422+00 2025-12-09 10:14:45.398427+00 4682 HSH072FW#黑门襟布 SPMX-20240815299819 \N \N \N 1 \N [{"file_id": "9942bfd9-4665-43a5-afb4-f97ef6414805", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5050959c32d54bb0805d4ff4b9b7b8d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5050959c32d54bb0805d4ff4b9b7b8d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5050959c32d54bb0805d4ff4b9b7b8d5.jpg", "file_size": 19316, "is_delete": false, "file_type": 1, "original_file_name": "HSH072FW#黑门襟布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5050959c32d54bb0805d4ff4b9b7b8d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5050959c32d54bb0805d4ff4b9b7b8d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5050959c32d54bb0805d4ff4b9b7b8d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5050959c32d54bb0805d4ff4b9b7b8d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5050959c32d54bb0805d4ff4b9b7b8d5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QMWUqa-nU4unp7g6n6G6BddLJU=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.399572+00 2025-12-09 10:14:45.399576+00 4683 0001-A5#LWQ15 SPMX-20240815299812 \N \N \N 1 \N [{"file_id": "2f35ebd3-0774-46ca-b7b3-643f8a687485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaa8da392b714eeda3fa525d91291de0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaa8da392b714eeda3fa525d91291de0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaa8da392b714eeda3fa525d91291de0.jpg", "file_size": 28505, "is_delete": false, "file_type": 1, "original_file_name": "0001-A5#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa8da392b714eeda3fa525d91291de0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa8da392b714eeda3fa525d91291de0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa8da392b714eeda3fa525d91291de0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaa8da392b714eeda3fa525d91291de0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaa8da392b714eeda3fa525d91291de0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jx7DDhcr_PiYAlazWkpRkXnsmM=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.400748+00 2025-12-09 10:14:45.400753+00 4684 23-2101#A26前后片4XL SPMX-20240815299813 \N \N \N 1 \N [{"file_id": "ca211117-8b0b-42ad-ab1b-f5db556eb8ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b61ff62cbd764f6bb14262f67d3bbd13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b61ff62cbd764f6bb14262f67d3bbd13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b61ff62cbd764f6bb14262f67d3bbd13.jpg", "file_size": 11342, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A26前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ff62cbd764f6bb14262f67d3bbd13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ff62cbd764f6bb14262f67d3bbd13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ff62cbd764f6bb14262f67d3bbd13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b61ff62cbd764f6bb14262f67d3bbd13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b61ff62cbd764f6bb14262f67d3bbd13.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cdC_NAhZg6IU6eTeSqeoRNTJ3Cw=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.40189+00 2025-12-09 10:14:45.401894+00 4685 1047#土黄色 SPMX-20240815299818 \N \N \N 1 \N [{"file_id": "961badc7-a0b6-4d9c-8c59-ebba4d7e5a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8614430cabb4961a2a95cd13f88b192.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8614430cabb4961a2a95cd13f88b192.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8614430cabb4961a2a95cd13f88b192.jpg", "file_size": 23010, "is_delete": false, "file_type": 1, "original_file_name": "1047#土黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8614430cabb4961a2a95cd13f88b192.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8614430cabb4961a2a95cd13f88b192.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8614430cabb4961a2a95cd13f88b192.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8614430cabb4961a2a95cd13f88b192.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8614430cabb4961a2a95cd13f88b192.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jcbHmFKWznIE2F-8gFPUROGkuuo=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.403022+00 2025-12-09 10:14:45.403026+00 4686 LZ1203#上身3号色 SPMX-20240815299809 \N \N \N 1 \N [{"file_id": "f495f77b-0a61-4a20-8258-8ad510ae1df9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg", "file_size": 17484, "is_delete": false, "file_type": 1, "original_file_name": "LZ1203#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92bab9f4b7ec4b6d88ce3e9f9c69d2c9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLTC11WOEgIILU4eKvXzyegRMSk=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.404199+00 2025-12-09 10:14:45.404203+00 4687 HSH072FW#黑 SPMX-20240815299808 \N \N \N 1 \N [{"file_id": "aa644d4c-43d3-4a00-9c68-f1f7dd21d0c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d9751d903ec4aed9d16f5d410da4ae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d9751d903ec4aed9d16f5d410da4ae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d9751d903ec4aed9d16f5d410da4ae3.jpg", "file_size": 9544, "is_delete": false, "file_type": 1, "original_file_name": "HSH072FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9751d903ec4aed9d16f5d410da4ae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9751d903ec4aed9d16f5d410da4ae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9751d903ec4aed9d16f5d410da4ae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d9751d903ec4aed9d16f5d410da4ae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d9751d903ec4aed9d16f5d410da4ae3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RceqCcVjIv84r878RiOimxZJLSM=", "createTime": "2024-08-15 14:40:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.405368+00 2025-12-09 10:14:45.405373+00 4688 JS0974-A3#下裙黑色 SPMX-20240815299830 \N \N \N 1 \N [{"file_id": "96e6658b-feda-456f-9f4e-05d2568a1866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b88879747b47d5a86c9f1b08190bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b88879747b47d5a86c9f1b08190bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b88879747b47d5a86c9f1b08190bd8.jpg", "file_size": 8628, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A3#下裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b88879747b47d5a86c9f1b08190bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b88879747b47d5a86c9f1b08190bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b88879747b47d5a86c9f1b08190bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b88879747b47d5a86c9f1b08190bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b88879747b47d5a86c9f1b08190bd8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMbUOAWFJPYXOasIAY1dwxaaoJw=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.4065+00 2025-12-09 10:14:45.406505+00 4689 DH20220779FW#M短袖粉 SPMX-20240815299828 \N \N \N 1 \N [{"file_id": "0eb0403d-95e1-4106-bc02-a67f6e6cb646", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f65a35a93f8044b690d6422c74cb05ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f65a35a93f8044b690d6422c74cb05ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f65a35a93f8044b690d6422c74cb05ff.jpg", "file_size": 14091, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65a35a93f8044b690d6422c74cb05ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65a35a93f8044b690d6422c74cb05ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65a35a93f8044b690d6422c74cb05ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f65a35a93f8044b690d6422c74cb05ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f65a35a93f8044b690d6422c74cb05ff.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmQRmauyhsNmSqbu4ZvJ_Me1XrY=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.407636+00 2025-12-09 10:14:45.40764+00 4690 1047#彩蓝色 SPMX-20240815299829 \N \N \N 1 \N [{"file_id": "fc5f8901-8b56-4b02-9da8-5f80ab54ef56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b82d7f0e9d964895a5bb070811a0c9d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b82d7f0e9d964895a5bb070811a0c9d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b82d7f0e9d964895a5bb070811a0c9d6.jpg", "file_size": 27333, "is_delete": false, "file_type": 1, "original_file_name": "1047#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82d7f0e9d964895a5bb070811a0c9d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82d7f0e9d964895a5bb070811a0c9d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82d7f0e9d964895a5bb070811a0c9d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b82d7f0e9d964895a5bb070811a0c9d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b82d7f0e9d964895a5bb070811a0c9d6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86_UuU5glCoA7VJC46H6K3czuGg=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.408806+00 2025-12-09 10:14:45.40881+00 4691 0001-白色#WJC22 SPMX-20240815299824 \N \N \N 1 \N [{"file_id": "66d66fd0-008d-4626-b766-cfd4934c96a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54caa4474da84315b0de6a240c10312e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54caa4474da84315b0de6a240c10312e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54caa4474da84315b0de6a240c10312e.jpg", "file_size": 7500, "is_delete": false, "file_type": 1, "original_file_name": "0001-白色#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54caa4474da84315b0de6a240c10312e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54caa4474da84315b0de6a240c10312e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54caa4474da84315b0de6a240c10312e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54caa4474da84315b0de6a240c10312e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54caa4474da84315b0de6a240c10312e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ud9StnTaBeDo9sIQb5-BB4-WJS0=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.409967+00 2025-12-09 10:14:45.409971+00 4692 FHXGPK-005-2 SPMX-20240815299825 \N \N \N 1 \N [{"file_id": "8804337f-4ae7-4bcc-9233-1a7e80668bc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbfb2a8293b84cfe84f7183fb71899f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbfb2a8293b84cfe84f7183fb71899f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbfb2a8293b84cfe84f7183fb71899f2.jpg", "file_size": 31266, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfb2a8293b84cfe84f7183fb71899f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfb2a8293b84cfe84f7183fb71899f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfb2a8293b84cfe84f7183fb71899f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbfb2a8293b84cfe84f7183fb71899f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbfb2a8293b84cfe84f7183fb71899f2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGhFQBfyI124MMGBWZyt2g1-cDc=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.411114+00 2025-12-09 10:14:45.411118+00 4693 LHJ9195#5#彩兰 SPMX-20240815299827 \N \N \N 1 \N [{"file_id": "d81d73e5-3ade-4ff1-ace2-c15e7b409888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "034c7109cfbb420587959cf3ef762dd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "034c7109cfbb420587959cf3ef762dd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "034c7109cfbb420587959cf3ef762dd3.jpg", "file_size": 16976, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9195#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034c7109cfbb420587959cf3ef762dd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034c7109cfbb420587959cf3ef762dd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034c7109cfbb420587959cf3ef762dd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/034c7109cfbb420587959cf3ef762dd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/034c7109cfbb420587959cf3ef762dd3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:15m3iqvrm6BW2fr7i8tzFOA6pmY=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.412267+00 2025-12-09 10:14:45.412271+00 4694 C23135#玫红L码 SPMX-20240815299826 \N \N \N 1 \N [{"file_id": "f3e92388-621d-4ef2-8fd8-ba50d087f4c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "671e8e19d6544506b60009332adec5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "671e8e19d6544506b60009332adec5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "671e8e19d6544506b60009332adec5e0.jpg", "file_size": 15578, "is_delete": false, "file_type": 1, "original_file_name": "C23135#玫红L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671e8e19d6544506b60009332adec5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671e8e19d6544506b60009332adec5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671e8e19d6544506b60009332adec5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/671e8e19d6544506b60009332adec5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/671e8e19d6544506b60009332adec5e0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmXRq8YG9gvVXuxRIr08YrmvVv0=", "createTime": "2024-08-15 14:40:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.41341+00 2025-12-09 10:14:45.413414+00 4695 FHXGPK-005-3 SPMX-20240815299841 \N \N \N 1 \N [{"file_id": "197662c9-c550-43e0-bf9f-e7fb125812c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae8dfb5a8d174763a884a0e166f192dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae8dfb5a8d174763a884a0e166f192dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae8dfb5a8d174763a884a0e166f192dc.jpg", "file_size": 33847, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8dfb5a8d174763a884a0e166f192dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8dfb5a8d174763a884a0e166f192dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8dfb5a8d174763a884a0e166f192dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae8dfb5a8d174763a884a0e166f192dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae8dfb5a8d174763a884a0e166f192dc.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3i1fczx-kO2Cq1zX8tJpMoa2fX8=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.414573+00 2025-12-09 10:14:45.414578+00 4696 DH20220779FW#M短袖绿 SPMX-20240815299839 \N \N \N 1 \N [{"file_id": "249f19e3-fc12-4cec-9c2c-663339127d13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fd0952d5b494035ae26a973e764fd75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fd0952d5b494035ae26a973e764fd75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fd0952d5b494035ae26a973e764fd75.jpg", "file_size": 14361, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd0952d5b494035ae26a973e764fd75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd0952d5b494035ae26a973e764fd75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd0952d5b494035ae26a973e764fd75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fd0952d5b494035ae26a973e764fd75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fd0952d5b494035ae26a973e764fd75.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:006HaP9zJnOH82WvjWgYCVODG1I=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.415724+00 2025-12-09 10:14:45.415728+00 4697 0001-红色#WJC22 SPMX-20240815299833 \N \N \N 1 \N [{"file_id": "e3543b20-bcda-4db0-9358-d8ba40eb517d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebb9de93feb646ccb95a4b0cce4c05dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebb9de93feb646ccb95a4b0cce4c05dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebb9de93feb646ccb95a4b0cce4c05dd.jpg", "file_size": 7914, "is_delete": false, "file_type": 1, "original_file_name": "0001-红色#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb9de93feb646ccb95a4b0cce4c05dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb9de93feb646ccb95a4b0cce4c05dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb9de93feb646ccb95a4b0cce4c05dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebb9de93feb646ccb95a4b0cce4c05dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebb9de93feb646ccb95a4b0cce4c05dd.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:il_HuncCGd_wvgsZQ66Cm8gPeg0=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.416862+00 2025-12-09 10:14:45.416866+00 4698 C23135#玫红M码 SPMX-20240815299835 \N \N \N 1 \N [{"file_id": "0456f0ca-52da-4dec-8e41-98fc8b0323ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cad339c95fa048a5a5c2ea46f6ec63f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cad339c95fa048a5a5c2ea46f6ec63f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cad339c95fa048a5a5c2ea46f6ec63f1.jpg", "file_size": 16279, "is_delete": false, "file_type": 1, "original_file_name": "C23135#玫红M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad339c95fa048a5a5c2ea46f6ec63f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad339c95fa048a5a5c2ea46f6ec63f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad339c95fa048a5a5c2ea46f6ec63f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cad339c95fa048a5a5c2ea46f6ec63f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cad339c95fa048a5a5c2ea46f6ec63f1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymXQ4KyOOQ8EN5tArooCd5Bhv5I=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.418016+00 2025-12-09 10:14:45.418021+00 4699 LZ1203#上身5号色 SPMX-20240815299834 \N \N \N 1 \N [{"file_id": "67aa71c1-2b15-4306-8033-7b92a1db6445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1412f280e1141d6887a40bb629d365f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1412f280e1141d6887a40bb629d365f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1412f280e1141d6887a40bb629d365f.jpg", "file_size": 18150, "is_delete": false, "file_type": 1, "original_file_name": "LZ1203#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1412f280e1141d6887a40bb629d365f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1412f280e1141d6887a40bb629d365f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1412f280e1141d6887a40bb629d365f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1412f280e1141d6887a40bb629d365f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1412f280e1141d6887a40bb629d365f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTL_290Gz6C8hEdzvAzozDNlrI0=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.419189+00 2025-12-09 10:14:45.419193+00 4700 LHJ9195#6#枣红 SPMX-20240815299837 \N \N \N 1 \N [{"file_id": "72a93148-2650-4380-94bf-39ee503fccaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4365d1b442b0407cae88a5b04b10c906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4365d1b442b0407cae88a5b04b10c906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4365d1b442b0407cae88a5b04b10c906.jpg", "file_size": 16215, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9195#6#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4365d1b442b0407cae88a5b04b10c906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4365d1b442b0407cae88a5b04b10c906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4365d1b442b0407cae88a5b04b10c906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4365d1b442b0407cae88a5b04b10c906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4365d1b442b0407cae88a5b04b10c906.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlLcsfjTUd1igFGeBDGIrE5cCyA=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.420342+00 2025-12-09 10:14:45.420346+00 4701 1047#枣红色 SPMX-20240815299840 \N \N \N 1 \N [{"file_id": "52ecc7e1-98a4-4c1f-b20b-1924c6314e0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3d2ef1de564c9a9d0276dacf163d01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3d2ef1de564c9a9d0276dacf163d01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3d2ef1de564c9a9d0276dacf163d01.jpg", "file_size": 27414, "is_delete": false, "file_type": 1, "original_file_name": "1047#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d2ef1de564c9a9d0276dacf163d01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d2ef1de564c9a9d0276dacf163d01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d2ef1de564c9a9d0276dacf163d01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3d2ef1de564c9a9d0276dacf163d01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3d2ef1de564c9a9d0276dacf163d01.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fej_eHSzD-ImmBj6ydr3gW-mstg=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.421481+00 2025-12-09 10:14:45.421485+00 4702 JS0974-A30#RC23 SPMX-20240815299836 \N \N \N 1 \N [{"file_id": "b301c11e-4e59-46bb-bcd9-62f18c21935f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ed9ed78acb648f194b7e4c2e541f98a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ed9ed78acb648f194b7e4c2e541f98a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ed9ed78acb648f194b7e4c2e541f98a.jpg", "file_size": 46397, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A30#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed9ed78acb648f194b7e4c2e541f98a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed9ed78acb648f194b7e4c2e541f98a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed9ed78acb648f194b7e4c2e541f98a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ed9ed78acb648f194b7e4c2e541f98a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ed9ed78acb648f194b7e4c2e541f98a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_N9dL51CWQWMKk_W-G3X3jrXWHM=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.422648+00 2025-12-09 10:14:45.422652+00 4703 80061#短款下身墨绿 SPMX-20240815299838 \N \N \N 1 \N [{"file_id": "95dfb76a-ac2e-4e07-aaa4-20d9bceeffe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "724cdbf435f44f4db8aeac2dcb14ef76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "724cdbf435f44f4db8aeac2dcb14ef76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "724cdbf435f44f4db8aeac2dcb14ef76.jpg", "file_size": 23985, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款下身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724cdbf435f44f4db8aeac2dcb14ef76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724cdbf435f44f4db8aeac2dcb14ef76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724cdbf435f44f4db8aeac2dcb14ef76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/724cdbf435f44f4db8aeac2dcb14ef76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/724cdbf435f44f4db8aeac2dcb14ef76.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pThQnNBS15ayq54iIie--gECFGs=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.423859+00 2025-12-09 10:14:45.423863+00 4704 23-2101#A26袖子4XL SPMX-20240815299831 \N \N \N 1 \N [{"file_id": "8fea2b2f-3556-4fcc-a45f-cbddb075851e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "597bed2791e74e50b0b3350240279d87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "597bed2791e74e50b0b3350240279d87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "597bed2791e74e50b0b3350240279d87.jpg", "file_size": 9723, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A26袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597bed2791e74e50b0b3350240279d87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597bed2791e74e50b0b3350240279d87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597bed2791e74e50b0b3350240279d87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/597bed2791e74e50b0b3350240279d87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/597bed2791e74e50b0b3350240279d87.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBqFAS69Sta0g7NTIfSAYXBJCwc=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.425018+00 2025-12-09 10:14:45.425022+00 4705 HSH1 SPMX-20240815299832 \N \N \N 1 \N [{"file_id": "579caabd-05a9-4c6d-9c04-35a2607e9fe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b9ab430a5b941c58a024d8c195d6849.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b9ab430a5b941c58a024d8c195d6849.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b9ab430a5b941c58a024d8c195d6849.jpg", "file_size": 20648, "is_delete": false, "file_type": 1, "original_file_name": "HSH1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9ab430a5b941c58a024d8c195d6849.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9ab430a5b941c58a024d8c195d6849.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9ab430a5b941c58a024d8c195d6849.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b9ab430a5b941c58a024d8c195d6849.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b9ab430a5b941c58a024d8c195d6849.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRwpvS8neivv6umRF6ST-tLZp3w=", "createTime": "2024-08-15 14:40:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.426163+00 2025-12-09 10:14:45.426167+00 4706 23-2101#A26领子通用 SPMX-20240815299843 \N \N \N 1 \N [{"file_id": "b19270ac-a673-4539-8731-e978b6e7ffc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec33ce86c3c648ed9dea987a71064f3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec33ce86c3c648ed9dea987a71064f3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec33ce86c3c648ed9dea987a71064f3e.jpg", "file_size": 10499, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A26领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec33ce86c3c648ed9dea987a71064f3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec33ce86c3c648ed9dea987a71064f3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec33ce86c3c648ed9dea987a71064f3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec33ce86c3c648ed9dea987a71064f3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec33ce86c3c648ed9dea987a71064f3e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2MQmOU_anbn4xoq7Fqy844jYyE=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.427311+00 2025-12-09 10:14:45.427315+00 4707 LZ1204#上身1号色 SPMX-20240815299845 \N \N \N 1 \N [{"file_id": "13444af7-667c-4e2a-a57c-857c38363faf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320d96a3735f4d4fa545979a24a981aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320d96a3735f4d4fa545979a24a981aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320d96a3735f4d4fa545979a24a981aa.jpg", "file_size": 19214, "is_delete": false, "file_type": 1, "original_file_name": "LZ1204#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320d96a3735f4d4fa545979a24a981aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320d96a3735f4d4fa545979a24a981aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320d96a3735f4d4fa545979a24a981aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320d96a3735f4d4fa545979a24a981aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320d96a3735f4d4fa545979a24a981aa.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrjM8jY9Vb_nWZjgAjUdyE23gBI=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.428474+00 2025-12-09 10:14:45.428479+00 4708 HSH102# SPMX-20240815299844 \N \N \N 1 \N [{"file_id": "60b56162-4964-498e-9a3e-43e8682ff332", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10146831866d4325a5f86151a631ddf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10146831866d4325a5f86151a631ddf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10146831866d4325a5f86151a631ddf8.jpg", "file_size": 5179, "is_delete": false, "file_type": 1, "original_file_name": "HSH102#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10146831866d4325a5f86151a631ddf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10146831866d4325a5f86151a631ddf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10146831866d4325a5f86151a631ddf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10146831866d4325a5f86151a631ddf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10146831866d4325a5f86151a631ddf8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVuoD4VvggUg8H7GOtEsw3zs2gU=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.42973+00 2025-12-09 10:14:45.429734+00 4709 LHJ9196#1#黑色 SPMX-20240815299846 \N \N \N 1 \N [{"file_id": "6219f3a4-d9f5-4c9f-90ec-0386bca5f3e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daabe66a542b47928fac181c915bcca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daabe66a542b47928fac181c915bcca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daabe66a542b47928fac181c915bcca3.jpg", "file_size": 15103, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9196#1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daabe66a542b47928fac181c915bcca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daabe66a542b47928fac181c915bcca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daabe66a542b47928fac181c915bcca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daabe66a542b47928fac181c915bcca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daabe66a542b47928fac181c915bcca3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StJh2Jy-h6yq3qjIXJNMfLowjVk=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.430912+00 2025-12-09 10:14:45.430917+00 4710 0001-绿色#WJC22 SPMX-20240815299842 \N \N \N 1 \N [{"file_id": "fb46614a-88fb-4400-ab1d-db1b130aeeb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e466a4335317448993130c1cb25e249b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e466a4335317448993130c1cb25e249b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e466a4335317448993130c1cb25e249b.jpg", "file_size": 7873, "is_delete": false, "file_type": 1, "original_file_name": "0001-绿色#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e466a4335317448993130c1cb25e249b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e466a4335317448993130c1cb25e249b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e466a4335317448993130c1cb25e249b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e466a4335317448993130c1cb25e249b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e466a4335317448993130c1cb25e249b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIGtgsqZsCVIr-aOb1pMn1diMJo=", "createTime": "2024-08-15 14:40:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.432079+00 2025-12-09 10:14:45.432083+00 4711 80061#短款下身彩兰 SPMX-20240815299847 \N \N \N 1 \N [{"file_id": "9cf31e30-532d-4bdd-bcad-0037b68a0edc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147bf3c2fef14ff0a2fa84bb80b92cc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147bf3c2fef14ff0a2fa84bb80b92cc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147bf3c2fef14ff0a2fa84bb80b92cc1.jpg", "file_size": 23687, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款下身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147bf3c2fef14ff0a2fa84bb80b92cc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147bf3c2fef14ff0a2fa84bb80b92cc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147bf3c2fef14ff0a2fa84bb80b92cc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147bf3c2fef14ff0a2fa84bb80b92cc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147bf3c2fef14ff0a2fa84bb80b92cc1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NF1c7Y0mvE7i3epJNFtZgG-Um0=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.433274+00 2025-12-09 10:14:45.433279+00 4712 0001-黑色#WJC22 SPMX-20240815299851 \N \N \N 1 \N [{"file_id": "d6a1028b-1505-4f76-a3b7-d37674c09509", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4f7cc47cd7e442e8df6418395c99318.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4f7cc47cd7e442e8df6418395c99318.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4f7cc47cd7e442e8df6418395c99318.jpg", "file_size": 6620, "is_delete": false, "file_type": 1, "original_file_name": "0001-黑色#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f7cc47cd7e442e8df6418395c99318.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f7cc47cd7e442e8df6418395c99318.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f7cc47cd7e442e8df6418395c99318.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4f7cc47cd7e442e8df6418395c99318.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4f7cc47cd7e442e8df6418395c99318.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTm1UAIBAy-QBTN5uKrpD6cu0_8=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.434451+00 2025-12-09 10:14:45.434456+00 4713 HSH104# SPMX-20240815299855 \N \N \N 1 \N [{"file_id": "244b490f-e21b-4972-b30f-6481a69ebb22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de15928770964e3082be50a88b0d2940.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de15928770964e3082be50a88b0d2940.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de15928770964e3082be50a88b0d2940.jpg", "file_size": 17406, "is_delete": false, "file_type": 1, "original_file_name": "HSH104#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de15928770964e3082be50a88b0d2940.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de15928770964e3082be50a88b0d2940.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de15928770964e3082be50a88b0d2940.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de15928770964e3082be50a88b0d2940.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de15928770964e3082be50a88b0d2940.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDl-Z9RlH2JDBMNlk1y7eqXfvSk=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.435606+00 2025-12-09 10:14:45.43561+00 4714 FHXGPK-005-4 SPMX-20240815299857 \N \N \N 1 \N [{"file_id": "86d938d6-3aea-4d3f-9239-c4e2d4060e4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg", "file_size": 34600, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bcaee9b9e8d4e4d8b8787e95a66b12a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LLRb7V3-_lHpaCiAiIx9aQ4FJi4=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.436799+00 2025-12-09 10:14:45.436802+00 4715 LHJ9196#10#宝蓝 SPMX-20240815299854 \N \N \N 1 \N [{"file_id": "2498262e-4761-46db-9018-e8258a83c688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0750113f7f854df486bfb0ef65e92b14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0750113f7f854df486bfb0ef65e92b14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0750113f7f854df486bfb0ef65e92b14.jpg", "file_size": 14558, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9196#10#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0750113f7f854df486bfb0ef65e92b14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0750113f7f854df486bfb0ef65e92b14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0750113f7f854df486bfb0ef65e92b14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0750113f7f854df486bfb0ef65e92b14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0750113f7f854df486bfb0ef65e92b14.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EO0NC0PwtdGoLT2ETad3lM2i-yA=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.437987+00 2025-12-09 10:14:45.437992+00 4716 23-2101#A28前后片3XL SPMX-20240815299856 \N \N \N 1 \N [{"file_id": "2caf308e-5947-467b-9ca4-3ba2b4266cae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c1dcc938c114a22ac6a79c257d0201f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c1dcc938c114a22ac6a79c257d0201f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c1dcc938c114a22ac6a79c257d0201f.jpg", "file_size": 9996, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A28前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1dcc938c114a22ac6a79c257d0201f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1dcc938c114a22ac6a79c257d0201f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1dcc938c114a22ac6a79c257d0201f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c1dcc938c114a22ac6a79c257d0201f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c1dcc938c114a22ac6a79c257d0201f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDvOLETt75PGLiR8B3MxSuPQMVs=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.439172+00 2025-12-09 10:14:45.439176+00 4717 LZ1204#上身2号色 SPMX-20240815299852 \N \N \N 1 \N [{"file_id": "32f57117-4c19-454c-841c-96661abcd45a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9accc82e89f3432c9870b6e767c99be1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9accc82e89f3432c9870b6e767c99be1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9accc82e89f3432c9870b6e767c99be1.jpg", "file_size": 18620, "is_delete": false, "file_type": 1, "original_file_name": "LZ1204#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9accc82e89f3432c9870b6e767c99be1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9accc82e89f3432c9870b6e767c99be1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9accc82e89f3432c9870b6e767c99be1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9accc82e89f3432c9870b6e767c99be1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9accc82e89f3432c9870b6e767c99be1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vogFStAh-P-8aK8xHpzBUtj-PmM=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.440334+00 2025-12-09 10:14:45.440338+00 4718 DH20220779FW#M短袖蓝 SPMX-20240815299850 \N \N \N 1 \N [{"file_id": "be217244-6934-460a-8f57-ff32da738284", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd77d57fc91c4d6484e8575368b42820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd77d57fc91c4d6484e8575368b42820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd77d57fc91c4d6484e8575368b42820.jpg", "file_size": 14986, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#M短袖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd77d57fc91c4d6484e8575368b42820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd77d57fc91c4d6484e8575368b42820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd77d57fc91c4d6484e8575368b42820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd77d57fc91c4d6484e8575368b42820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd77d57fc91c4d6484e8575368b42820.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPL_3beYgktbTH73M4yVKazR67E=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.44148+00 2025-12-09 10:14:45.441484+00 4719 C23135#玫红S码 SPMX-20240815299848 \N \N \N 1 \N [{"file_id": "6ee0d377-bd4c-412d-8fee-bf6d13e0a529", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5cfa2e475d7460da1a79ef97ec2d197.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5cfa2e475d7460da1a79ef97ec2d197.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5cfa2e475d7460da1a79ef97ec2d197.jpg", "file_size": 16196, "is_delete": false, "file_type": 1, "original_file_name": "C23135#玫红S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cfa2e475d7460da1a79ef97ec2d197.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cfa2e475d7460da1a79ef97ec2d197.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cfa2e475d7460da1a79ef97ec2d197.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5cfa2e475d7460da1a79ef97ec2d197.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5cfa2e475d7460da1a79ef97ec2d197.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1XxE1Npdfj-0QHX_OpU7rIXwzB0=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.442667+00 2025-12-09 10:14:45.442671+00 4720 JS0974-A31#RC23 SPMX-20240815299853 \N \N \N 1 \N [{"file_id": "35f804ea-516a-4199-95c8-f8007f094e83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9ae9c9214d2414bb8dc9c7f9370da5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9ae9c9214d2414bb8dc9c7f9370da5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9ae9c9214d2414bb8dc9c7f9370da5f.jpg", "file_size": 64112, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A31#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ae9c9214d2414bb8dc9c7f9370da5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ae9c9214d2414bb8dc9c7f9370da5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9ae9c9214d2414bb8dc9c7f9370da5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9ae9c9214d2414bb8dc9c7f9370da5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9ae9c9214d2414bb8dc9c7f9370da5f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVqx88DYHZhD_ZpuZjZKqXOe9C0=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.443814+00 2025-12-09 10:14:45.443819+00 4721 1047#湖绿色 SPMX-20240815299849 \N \N \N 1 \N [{"file_id": "f2a25c2e-797c-4189-96ac-48a9e53c30e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80406e781855472395e18ed09f9129e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80406e781855472395e18ed09f9129e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80406e781855472395e18ed09f9129e5.jpg", "file_size": 24522, "is_delete": false, "file_type": 1, "original_file_name": "1047#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80406e781855472395e18ed09f9129e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80406e781855472395e18ed09f9129e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80406e781855472395e18ed09f9129e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80406e781855472395e18ed09f9129e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80406e781855472395e18ed09f9129e5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NhjNiJL0jytK106UoBLp6cz67u4=", "createTime": "2024-08-15 14:41:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.444977+00 2025-12-09 10:14:45.444982+00 4722 C23135#玫红XL码 SPMX-20240815299861 \N \N \N 1 \N [{"file_id": "03a99194-d3d6-4eb5-8cfb-693da1c7dfb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "509ffa222be84560b8537eb07ae6bacb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "509ffa222be84560b8537eb07ae6bacb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "509ffa222be84560b8537eb07ae6bacb.jpg", "file_size": 15585, "is_delete": false, "file_type": 1, "original_file_name": "C23135#玫红XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509ffa222be84560b8537eb07ae6bacb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509ffa222be84560b8537eb07ae6bacb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509ffa222be84560b8537eb07ae6bacb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/509ffa222be84560b8537eb07ae6bacb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/509ffa222be84560b8537eb07ae6bacb.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_1auET5bRJnXRCWk2DRcPnB_4o=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.446138+00 2025-12-09 10:14:45.446142+00 4723 LZ1204#上身3号色 SPMX-20240815299862 \N \N \N 1 \N [{"file_id": "103cec21-9742-4b7b-8b8f-65bfecff6a07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1889143db8e64d11bc34d04c8166a86e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1889143db8e64d11bc34d04c8166a86e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1889143db8e64d11bc34d04c8166a86e.jpg", "file_size": 18303, "is_delete": false, "file_type": 1, "original_file_name": "LZ1204#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1889143db8e64d11bc34d04c8166a86e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1889143db8e64d11bc34d04c8166a86e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1889143db8e64d11bc34d04c8166a86e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1889143db8e64d11bc34d04c8166a86e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1889143db8e64d11bc34d04c8166a86e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YWPLQPwSjb0xtzy5MzWOlRH1oY=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.447293+00 2025-12-09 10:14:45.447296+00 4724 HSH104FW#VS-D3 SPMX-20240815299865 \N \N \N 1 \N [{"file_id": "f1133d7d-8b1d-4d40-8656-11a23ccfcc36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg", "file_size": 15275, "is_delete": false, "file_type": 1, "original_file_name": "HSH104FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6cc54c3bfd04a69a6ab61b273fdf3f0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6JJXU9VFaS3hB3icJ57NWHATQk=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.448432+00 2025-12-09 10:14:45.448437+00 4725 1047#豆沙色 SPMX-20240815299872 \N \N \N 1 \N [{"file_id": "300e6487-56d7-4451-a355-90ede03f3cc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814beddcf47f4a358b1b088b04e85410.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814beddcf47f4a358b1b088b04e85410.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814beddcf47f4a358b1b088b04e85410.jpg", "file_size": 24068, "is_delete": false, "file_type": 1, "original_file_name": "1047#豆沙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814beddcf47f4a358b1b088b04e85410.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814beddcf47f4a358b1b088b04e85410.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814beddcf47f4a358b1b088b04e85410.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814beddcf47f4a358b1b088b04e85410.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814beddcf47f4a358b1b088b04e85410.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFIVKYIMv9S5V76HVaSyGLQ6bRA=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.449627+00 2025-12-09 10:14:45.449631+00 4726 80061#短款下身粉色 SPMX-20240815299870 \N \N \N 1 \N [{"file_id": "5f61b742-98bd-4454-ad2b-f5946a695092", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab7cd03aae194d249babfcc902be983a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab7cd03aae194d249babfcc902be983a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab7cd03aae194d249babfcc902be983a.jpg", "file_size": 22383, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款下身粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7cd03aae194d249babfcc902be983a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7cd03aae194d249babfcc902be983a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7cd03aae194d249babfcc902be983a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab7cd03aae194d249babfcc902be983a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab7cd03aae194d249babfcc902be983a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T6v0jROonX9cGIFE-3_TTGCXwFE=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.45077+00 2025-12-09 10:14:45.450774+00 4727 LHJ9196#32#墨绿 SPMX-20240815299867 \N \N \N 1 \N [{"file_id": "b7ecc17c-f612-499d-96dd-0b812f3056b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bb2133a445445299f3202af4c5c2261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bb2133a445445299f3202af4c5c2261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bb2133a445445299f3202af4c5c2261.jpg", "file_size": 14070, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9196#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb2133a445445299f3202af4c5c2261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb2133a445445299f3202af4c5c2261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb2133a445445299f3202af4c5c2261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bb2133a445445299f3202af4c5c2261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bb2133a445445299f3202af4c5c2261.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQd_6chFlAYU67Q8rC4WkpvU7fI=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.452031+00 2025-12-09 10:14:45.452035+00 4728 1047#草绿色 SPMX-20240815299859 \N \N \N 1 \N [{"file_id": "dcdcb721-7e53-4008-b649-685df4f8e42d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a93d0a269284568b8629666893a03f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a93d0a269284568b8629666893a03f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a93d0a269284568b8629666893a03f9.jpg", "file_size": 24485, "is_delete": false, "file_type": 1, "original_file_name": "1047#草绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a93d0a269284568b8629666893a03f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a93d0a269284568b8629666893a03f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a93d0a269284568b8629666893a03f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a93d0a269284568b8629666893a03f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a93d0a269284568b8629666893a03f9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owQvYPZ3LiJiuYGWmX_lddIZ_cY=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.453274+00 2025-12-09 10:14:45.453278+00 4729 JS0974-A32#RC23 SPMX-20240815299864 \N \N \N 1 \N [{"file_id": "561f0a68-eb8e-4ee3-94b4-63268a7cbc9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3eb6e0f5dca454d9551fe78ce5b52e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3eb6e0f5dca454d9551fe78ce5b52e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3eb6e0f5dca454d9551fe78ce5b52e8.jpg", "file_size": 41493, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A32#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eb6e0f5dca454d9551fe78ce5b52e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eb6e0f5dca454d9551fe78ce5b52e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eb6e0f5dca454d9551fe78ce5b52e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3eb6e0f5dca454d9551fe78ce5b52e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3eb6e0f5dca454d9551fe78ce5b52e8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_hAnfJ1nDJReIsVNNNNxlhjZg8=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.455066+00 2025-12-09 10:14:45.45507+00 4730 DH20220779FW#S短袖口浅蓝 SPMX-20240815299869 \N \N \N 1 \N [{"file_id": "84eed52c-cf47-4d8e-bd16-6d9bb51e0f35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1635c1ab927f4800a77fac05083b505e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1635c1ab927f4800a77fac05083b505e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1635c1ab927f4800a77fac05083b505e.jpg", "file_size": 11818, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635c1ab927f4800a77fac05083b505e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635c1ab927f4800a77fac05083b505e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635c1ab927f4800a77fac05083b505e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1635c1ab927f4800a77fac05083b505e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1635c1ab927f4800a77fac05083b505e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFiFjUmqq5owbmq84fT5QZCV6Xg=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.456549+00 2025-12-09 10:14:45.456555+00 4731 80061#短款下身枣红 SPMX-20240815299860 \N \N \N 1 \N [{"file_id": "264e202e-5e98-4a07-a67b-7101917319e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b65cb7524d40d0b951fd77daa09067.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b65cb7524d40d0b951fd77daa09067.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b65cb7524d40d0b951fd77daa09067.jpg", "file_size": 23168, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b65cb7524d40d0b951fd77daa09067.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b65cb7524d40d0b951fd77daa09067.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b65cb7524d40d0b951fd77daa09067.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b65cb7524d40d0b951fd77daa09067.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b65cb7524d40d0b951fd77daa09067.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcg88TqB99Fb8Y2k2KjdmvApAaw=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.458413+00 2025-12-09 10:14:45.458419+00 4732 0002-10FWE#VS-D3 SPMX-20240815299863 \N \N \N 1 \N [{"file_id": "a32a4aa3-4909-49e8-8b01-b92c8c11580f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b2fb95c98f6456bbf06984c6ae72a76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b2fb95c98f6456bbf06984c6ae72a76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b2fb95c98f6456bbf06984c6ae72a76.jpg", "file_size": 16616, "is_delete": false, "file_type": 1, "original_file_name": "0002-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2fb95c98f6456bbf06984c6ae72a76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2fb95c98f6456bbf06984c6ae72a76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2fb95c98f6456bbf06984c6ae72a76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b2fb95c98f6456bbf06984c6ae72a76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b2fb95c98f6456bbf06984c6ae72a76.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7S5GQ-aVepNZ78W01IemBwO3wX0=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.459922+00 2025-12-09 10:14:45.459928+00 4733 FHXGPK-005-5 SPMX-20240815299868 \N \N \N 1 \N [{"file_id": "edb3641b-4bb0-4de1-9654-7896f84d2667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e778c496cbf47be995977c864ad92fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e778c496cbf47be995977c864ad92fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e778c496cbf47be995977c864ad92fc.jpg", "file_size": 33346, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e778c496cbf47be995977c864ad92fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e778c496cbf47be995977c864ad92fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e778c496cbf47be995977c864ad92fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e778c496cbf47be995977c864ad92fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e778c496cbf47be995977c864ad92fc.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LSfo6XlEqdL6zntLvWwm2j7hAtc=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.46132+00 2025-12-09 10:14:45.461326+00 4734 23-2101#A28前后片4XL SPMX-20240815299866 \N \N \N 1 \N [{"file_id": "fa7c4c02-8c78-4f84-8eab-dfe90624364d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83e58c29f8124152a8db5bcba4db48e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83e58c29f8124152a8db5bcba4db48e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83e58c29f8124152a8db5bcba4db48e7.jpg", "file_size": 10742, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A28前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e58c29f8124152a8db5bcba4db48e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e58c29f8124152a8db5bcba4db48e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e58c29f8124152a8db5bcba4db48e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83e58c29f8124152a8db5bcba4db48e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83e58c29f8124152a8db5bcba4db48e7.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVFpM9wPWffg6zyEMYRwQHF8j3U=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.46272+00 2025-12-09 10:14:45.462726+00 4735 C23135#紫色L SPMX-20240815299871 \N \N \N 1 \N [{"file_id": "882b5c00-800d-4d05-b242-3f91c0b2da7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9e23850a5d1447c8ae30e3d6b3a265b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9e23850a5d1447c8ae30e3d6b3a265b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9e23850a5d1447c8ae30e3d6b3a265b.jpg", "file_size": 16965, "is_delete": false, "file_type": 1, "original_file_name": "C23135#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e23850a5d1447c8ae30e3d6b3a265b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e23850a5d1447c8ae30e3d6b3a265b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9e23850a5d1447c8ae30e3d6b3a265b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9e23850a5d1447c8ae30e3d6b3a265b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9e23850a5d1447c8ae30e3d6b3a265b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqiEx4uyLnCz1IwU7pkk-geU7KY=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.464127+00 2025-12-09 10:14:45.464132+00 4736 DH20220779FW#S短袖口橙 SPMX-20240815299858 \N \N \N 1 \N [{"file_id": "54efc9c5-0d26-4a7f-8d40-07c7c51944f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5feaa9fd5be34b92821049d7c693841b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5feaa9fd5be34b92821049d7c693841b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5feaa9fd5be34b92821049d7c693841b.jpg", "file_size": 13370, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa9fd5be34b92821049d7c693841b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa9fd5be34b92821049d7c693841b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa9fd5be34b92821049d7c693841b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5feaa9fd5be34b92821049d7c693841b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5feaa9fd5be34b92821049d7c693841b.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IZr_cy1c7qgZd0B5WN_YARTLPc=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.465511+00 2025-12-09 10:14:45.465516+00 4737 0002-10FWF#V5曲线 SPMX-20240815299873 \N \N \N 1 \N [{"file_id": "ecba2ea1-4be3-4a73-8407-8077fa6be1bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57668bfd1efd493293b3935e3cc28040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57668bfd1efd493293b3935e3cc28040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57668bfd1efd493293b3935e3cc28040.jpg", "file_size": 18080, "is_delete": false, "file_type": 1, "original_file_name": "0002-10FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57668bfd1efd493293b3935e3cc28040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57668bfd1efd493293b3935e3cc28040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57668bfd1efd493293b3935e3cc28040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57668bfd1efd493293b3935e3cc28040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57668bfd1efd493293b3935e3cc28040.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVP9xczBDZUlIiV67SyeO5tctGg=", "createTime": "2024-08-15 14:41:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.466916+00 2025-12-09 10:14:45.466921+00 4738 23-2101#A28袖子3XL SPMX-20240815299877 \N \N \N 1 \N [{"file_id": "ba0f15f8-a46c-4ee1-bb9e-262cfbbd5281", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0e9d18c9a7149fb951ba4656e5dc404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0e9d18c9a7149fb951ba4656e5dc404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0e9d18c9a7149fb951ba4656e5dc404.jpg", "file_size": 11165, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A28袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e9d18c9a7149fb951ba4656e5dc404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e9d18c9a7149fb951ba4656e5dc404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e9d18c9a7149fb951ba4656e5dc404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0e9d18c9a7149fb951ba4656e5dc404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0e9d18c9a7149fb951ba4656e5dc404.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLLFi22DoH8QK2k7dMQRne1rDbw=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.468312+00 2025-12-09 10:14:45.468317+00 4739 LHJ9196#5#彩兰 SPMX-20240815299878 \N \N \N 1 \N [{"file_id": "3286a4b3-dc9d-42b9-961c-74cc55cce9a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785942a187de4e4999624efe707f680f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785942a187de4e4999624efe707f680f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785942a187de4e4999624efe707f680f.jpg", "file_size": 14994, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9196#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785942a187de4e4999624efe707f680f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785942a187de4e4999624efe707f680f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785942a187de4e4999624efe707f680f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785942a187de4e4999624efe707f680f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785942a187de4e4999624efe707f680f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vm-WrvpUKofLVAY8PbYS9K4g_7U=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.469727+00 2025-12-09 10:14:45.469733+00 4740 HSH105# SPMX-20240815299874 \N \N \N 1 \N [{"file_id": "58c5535d-a151-4272-ae14-4a9156c2c11d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dac188345c974a66ad65c4a4b8c7292e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dac188345c974a66ad65c4a4b8c7292e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dac188345c974a66ad65c4a4b8c7292e.jpg", "file_size": 23723, "is_delete": false, "file_type": 1, "original_file_name": "HSH105#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac188345c974a66ad65c4a4b8c7292e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac188345c974a66ad65c4a4b8c7292e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac188345c974a66ad65c4a4b8c7292e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dac188345c974a66ad65c4a4b8c7292e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dac188345c974a66ad65c4a4b8c7292e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6dIREu8T_7ISxtUJ6nyuvF5Iqs=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.470985+00 2025-12-09 10:14:45.47099+00 4741 JS0974-A33#RC23 SPMX-20240815299875 \N \N \N 1 \N [{"file_id": "27e3f4d4-1fbb-4d8e-998c-d832cf0129be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "632ac967b29946e8b5780b6700996acb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "632ac967b29946e8b5780b6700996acb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "632ac967b29946e8b5780b6700996acb.jpg", "file_size": 34181, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A33#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632ac967b29946e8b5780b6700996acb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632ac967b29946e8b5780b6700996acb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632ac967b29946e8b5780b6700996acb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/632ac967b29946e8b5780b6700996acb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/632ac967b29946e8b5780b6700996acb.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23Yg3mSDuQrARsxslXRxP28lQHI=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.472167+00 2025-12-09 10:14:45.472171+00 4742 LZ1204#上身4号色 SPMX-20240815299876 \N \N \N 1 \N [{"file_id": "d170ea5b-1743-4c3e-ac27-aa9929972740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a7c5dbda63e48f5ad22faed7103fdb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a7c5dbda63e48f5ad22faed7103fdb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a7c5dbda63e48f5ad22faed7103fdb9.jpg", "file_size": 18138, "is_delete": false, "file_type": 1, "original_file_name": "LZ1204#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7c5dbda63e48f5ad22faed7103fdb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7c5dbda63e48f5ad22faed7103fdb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7c5dbda63e48f5ad22faed7103fdb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a7c5dbda63e48f5ad22faed7103fdb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a7c5dbda63e48f5ad22faed7103fdb9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIdMf9rqKm5oLcN-BK1W5vGLNec=", "createTime": "2024-08-15 14:41:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.473334+00 2025-12-09 10:14:45.473338+00 4743 HSH105#CC SPMX-20240815299881 \N \N \N 1 \N [{"file_id": "316dbe01-f386-4476-a2a9-b1f90be48186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdf3ff9b8a2a4967af44709100246608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdf3ff9b8a2a4967af44709100246608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdf3ff9b8a2a4967af44709100246608.jpg", "file_size": 27770, "is_delete": false, "file_type": 1, "original_file_name": "HSH105#CC.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf3ff9b8a2a4967af44709100246608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf3ff9b8a2a4967af44709100246608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf3ff9b8a2a4967af44709100246608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdf3ff9b8a2a4967af44709100246608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdf3ff9b8a2a4967af44709100246608.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvHHI62NGv5J-TCgYk7tjUjvsxI=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.474492+00 2025-12-09 10:14:45.474496+00 4744 C23135#紫色M SPMX-20240815299883 \N \N \N 1 \N [{"file_id": "5b8c8cc8-6390-4d2f-a520-66e8e24ee212", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b07796e14acd4c81bbff2356ed995a55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b07796e14acd4c81bbff2356ed995a55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b07796e14acd4c81bbff2356ed995a55.jpg", "file_size": 17249, "is_delete": false, "file_type": 1, "original_file_name": "C23135#紫色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b07796e14acd4c81bbff2356ed995a55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b07796e14acd4c81bbff2356ed995a55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b07796e14acd4c81bbff2356ed995a55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b07796e14acd4c81bbff2356ed995a55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b07796e14acd4c81bbff2356ed995a55.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUN03jfWnA_Zw21x2Ym2B7P6Fhw=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.47569+00 2025-12-09 10:14:45.475695+00 4745 FHXGPK-005-6 SPMX-20240815299879 \N \N \N 1 \N [{"file_id": "1a91820a-d688-49a0-9f83-6501051dfae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1984dd11308149a3b3f7627808b1a3f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1984dd11308149a3b3f7627808b1a3f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1984dd11308149a3b3f7627808b1a3f3.jpg", "file_size": 31810, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-005-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1984dd11308149a3b3f7627808b1a3f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1984dd11308149a3b3f7627808b1a3f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1984dd11308149a3b3f7627808b1a3f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1984dd11308149a3b3f7627808b1a3f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1984dd11308149a3b3f7627808b1a3f3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFXcDJSG5EnK6u8Zqb5GhjPiuC4=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.476868+00 2025-12-09 10:14:45.476872+00 4746 0002-10FWF#V5曲线番禺调色 SPMX-20240815299888 \N \N \N 1 \N [{"file_id": "d553e3db-b712-4b04-8c8d-a9f14fe5b324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79ba1126cc334a96bb7d6372d4637b3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79ba1126cc334a96bb7d6372d4637b3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79ba1126cc334a96bb7d6372d4637b3d.jpg", "file_size": 19794, "is_delete": false, "file_type": 1, "original_file_name": "0002-10FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba1126cc334a96bb7d6372d4637b3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba1126cc334a96bb7d6372d4637b3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba1126cc334a96bb7d6372d4637b3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79ba1126cc334a96bb7d6372d4637b3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79ba1126cc334a96bb7d6372d4637b3d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkVVwU1JTtQ6bWHXuCZIG_jrMcc=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.478095+00 2025-12-09 10:14:45.478099+00 4747 80061#短款下身藏青 SPMX-20240815299887 \N \N \N 1 \N [{"file_id": "a43a768c-d5cb-4371-b2ea-4ea136b9f5d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1064f1eac02d4371978cfba639bb076c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1064f1eac02d4371978cfba639bb076c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1064f1eac02d4371978cfba639bb076c.jpg", "file_size": 24188, "is_delete": false, "file_type": 1, "original_file_name": "80061#短款下身藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1064f1eac02d4371978cfba639bb076c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1064f1eac02d4371978cfba639bb076c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1064f1eac02d4371978cfba639bb076c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1064f1eac02d4371978cfba639bb076c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1064f1eac02d4371978cfba639bb076c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkunc6vDyGbW5N1vxSkZgVTGMas=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.479269+00 2025-12-09 10:14:45.479273+00 4748 1047FWF#-1 SPMX-20240815299884 \N \N \N 1 \N [{"file_id": "ef11e7fc-958a-4417-9c46-f04f11f801cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a2fe529f1574c7a907ea4f59ea5f36f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a2fe529f1574c7a907ea4f59ea5f36f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a2fe529f1574c7a907ea4f59ea5f36f.jpg", "file_size": 17533, "is_delete": false, "file_type": 1, "original_file_name": "1047FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2fe529f1574c7a907ea4f59ea5f36f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2fe529f1574c7a907ea4f59ea5f36f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2fe529f1574c7a907ea4f59ea5f36f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a2fe529f1574c7a907ea4f59ea5f36f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a2fe529f1574c7a907ea4f59ea5f36f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Fu1KfoOaGlH4UOBsCYvCoTWahg=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.480467+00 2025-12-09 10:14:45.480471+00 4749 DH20220779FW#S短袖口灰 SPMX-20240815299885 \N \N \N 1 \N [{"file_id": "6650366c-0014-499f-ae52-96c9733dd15e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9200b886f4d4f7da15073ce80a15060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9200b886f4d4f7da15073ce80a15060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9200b886f4d4f7da15073ce80a15060.jpg", "file_size": 11036, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9200b886f4d4f7da15073ce80a15060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9200b886f4d4f7da15073ce80a15060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9200b886f4d4f7da15073ce80a15060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9200b886f4d4f7da15073ce80a15060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9200b886f4d4f7da15073ce80a15060.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RhAo0lCK2RZzqjXu_CfWXJsRprw=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.481638+00 2025-12-09 10:14:45.481642+00 4750 LZ1204#上身5号色 SPMX-20240815299886 \N \N \N 1 \N [{"file_id": "b4c07e52-ca7e-4d2e-84aa-989a8a493dcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "250f20f872b04c31a02205b817265224.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "250f20f872b04c31a02205b817265224.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "250f20f872b04c31a02205b817265224.jpg", "file_size": 18216, "is_delete": false, "file_type": 1, "original_file_name": "LZ1204#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250f20f872b04c31a02205b817265224.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250f20f872b04c31a02205b817265224.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250f20f872b04c31a02205b817265224.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/250f20f872b04c31a02205b817265224.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/250f20f872b04c31a02205b817265224.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOWK3B9vSfyAPZ8fOhRjHGe-Mok=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.482805+00 2025-12-09 10:14:45.482809+00 4751 LHJ9211#122#绿 SPMX-20240815299889 \N \N \N 1 \N [{"file_id": "54e62c12-88ce-488d-a818-3782db7a22a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c1d2ca4d6934bad8181cc0abf899566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c1d2ca4d6934bad8181cc0abf899566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c1d2ca4d6934bad8181cc0abf899566.jpg", "file_size": 10870, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9211#122#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c1d2ca4d6934bad8181cc0abf899566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c1d2ca4d6934bad8181cc0abf899566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c1d2ca4d6934bad8181cc0abf899566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c1d2ca4d6934bad8181cc0abf899566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c1d2ca4d6934bad8181cc0abf899566.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Mk_V71rtHcAYVDzTMGGZNyf1tc=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.48397+00 2025-12-09 10:14:45.483974+00 4752 23-2101#A28袖子4XL SPMX-20240815299880 \N \N \N 1 \N [{"file_id": "c0196a68-5f8a-459f-ab95-62df4770d6c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "188e5fb5778c49af908bb33fbe0bae94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "188e5fb5778c49af908bb33fbe0bae94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "188e5fb5778c49af908bb33fbe0bae94.jpg", "file_size": 9810, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A28袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188e5fb5778c49af908bb33fbe0bae94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188e5fb5778c49af908bb33fbe0bae94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188e5fb5778c49af908bb33fbe0bae94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/188e5fb5778c49af908bb33fbe0bae94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/188e5fb5778c49af908bb33fbe0bae94.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yF6ETDLmY1AdbPoMw8znulxgutg=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.485157+00 2025-12-09 10:14:45.48516+00 4753 JS0974-A34#RC23 SPMX-20240815299882 \N \N \N 1 \N [{"file_id": "b6593725-8a84-4976-aee5-6e920274c5f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de8d5de5ac9742fab2eff81be7daca11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de8d5de5ac9742fab2eff81be7daca11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de8d5de5ac9742fab2eff81be7daca11.jpg", "file_size": 37193, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A34#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8d5de5ac9742fab2eff81be7daca11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8d5de5ac9742fab2eff81be7daca11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8d5de5ac9742fab2eff81be7daca11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de8d5de5ac9742fab2eff81be7daca11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de8d5de5ac9742fab2eff81be7daca11.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhD_sNL35eKMbcV0MHk71rpDVfM=", "createTime": "2024-08-15 14:41:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.486302+00 2025-12-09 10:14:45.486306+00 4754 FHXGPK-006-1 SPMX-20240815299890 \N \N \N 1 \N [{"file_id": "979282be-3d07-41a0-b54d-cc6b9ed2aa9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dde6eb108f140f6ae18a28dd6063262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dde6eb108f140f6ae18a28dd6063262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dde6eb108f140f6ae18a28dd6063262.jpg", "file_size": 38632, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dde6eb108f140f6ae18a28dd6063262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dde6eb108f140f6ae18a28dd6063262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dde6eb108f140f6ae18a28dd6063262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dde6eb108f140f6ae18a28dd6063262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dde6eb108f140f6ae18a28dd6063262.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1HPAdZcCJ399hPtH-tgh1RyzwU=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.487479+00 2025-12-09 10:14:45.487482+00 4755 0002-11FWE#VS-D3 SPMX-20240815299896 \N \N \N 1 \N [{"file_id": "b45b8ef9-06f1-4512-8d5f-d6a7c7d8160a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c90b34111dd4ead8163095570e27c5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c90b34111dd4ead8163095570e27c5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c90b34111dd4ead8163095570e27c5f.jpg", "file_size": 11513, "is_delete": false, "file_type": 1, "original_file_name": "0002-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c90b34111dd4ead8163095570e27c5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c90b34111dd4ead8163095570e27c5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c90b34111dd4ead8163095570e27c5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c90b34111dd4ead8163095570e27c5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c90b34111dd4ead8163095570e27c5f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcdGr5kPpQiYCaL73mK_Mi19ywc=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.488644+00 2025-12-09 10:14:45.488649+00 4756 LZ1205#上身1号色 SPMX-20240815299897 \N \N \N 1 \N [{"file_id": "b4d1a2e9-2e8c-4d4c-a2b5-c020f2afc4d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1613884d76314458aba1a23cd21eda9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1613884d76314458aba1a23cd21eda9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1613884d76314458aba1a23cd21eda9c.jpg", "file_size": 19428, "is_delete": false, "file_type": 1, "original_file_name": "LZ1205#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613884d76314458aba1a23cd21eda9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613884d76314458aba1a23cd21eda9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613884d76314458aba1a23cd21eda9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1613884d76314458aba1a23cd21eda9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1613884d76314458aba1a23cd21eda9c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQ8WEWXbhqP1v8P-wcrSNMtLKIo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.489827+00 2025-12-09 10:14:45.489831+00 4757 HSH105FW#VS-D3 SPMX-20240815299891 \N \N \N 1 \N [{"file_id": "12e3f8f1-1d1c-48db-9dd2-80524c118fc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f0ce90dd2ae42b88114171f106cb6e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f0ce90dd2ae42b88114171f106cb6e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f0ce90dd2ae42b88114171f106cb6e9.jpg", "file_size": 14827, "is_delete": false, "file_type": 1, "original_file_name": "HSH105FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ce90dd2ae42b88114171f106cb6e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ce90dd2ae42b88114171f106cb6e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ce90dd2ae42b88114171f106cb6e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f0ce90dd2ae42b88114171f106cb6e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f0ce90dd2ae42b88114171f106cb6e9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Joynud31SaEaC1xvK7K6OSsEAC8=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.490989+00 2025-12-09 10:14:45.490993+00 4758 JS0974-A35#RC23 SPMX-20240815299894 \N \N \N 1 \N [{"file_id": "b0b05df6-ed1a-47d4-a873-dfdfedfc4917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e8bbec7f3904dda849919ed9c6c17a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e8bbec7f3904dda849919ed9c6c17a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e8bbec7f3904dda849919ed9c6c17a4.jpg", "file_size": 31435, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A35#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8bbec7f3904dda849919ed9c6c17a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8bbec7f3904dda849919ed9c6c17a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8bbec7f3904dda849919ed9c6c17a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e8bbec7f3904dda849919ed9c6c17a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e8bbec7f3904dda849919ed9c6c17a4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ITEJpAeJHoJ8fnuwISujBb34Dnc=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.492168+00 2025-12-09 10:14:45.492172+00 4759 23-2101#A28领子通用 SPMX-20240815299892 \N \N \N 1 \N [{"file_id": "83ebf6ac-c929-42bc-8cda-386344cfd050", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27369fb829834b6594ecf1348778dda2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27369fb829834b6594ecf1348778dda2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27369fb829834b6594ecf1348778dda2.jpg", "file_size": 9044, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A28领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27369fb829834b6594ecf1348778dda2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27369fb829834b6594ecf1348778dda2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27369fb829834b6594ecf1348778dda2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27369fb829834b6594ecf1348778dda2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27369fb829834b6594ecf1348778dda2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtzuB2qoliom-9PbzPKxR5dTNDo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.493315+00 2025-12-09 10:14:45.493319+00 4760 HSH106FW#VS-D3 SPMX-20240815299901 \N \N \N 1 \N [{"file_id": "03723010-36e2-40ac-835a-cf2fe310c0ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2d686cbbeeb4cb590986a3b5570469c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2d686cbbeeb4cb590986a3b5570469c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2d686cbbeeb4cb590986a3b5570469c.jpg", "file_size": 13375, "is_delete": false, "file_type": 1, "original_file_name": "HSH106FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d686cbbeeb4cb590986a3b5570469c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d686cbbeeb4cb590986a3b5570469c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d686cbbeeb4cb590986a3b5570469c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2d686cbbeeb4cb590986a3b5570469c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2d686cbbeeb4cb590986a3b5570469c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eXp3PM3pekh3H9jpciXBdn2su4=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.494494+00 2025-12-09 10:14:45.494498+00 4761 FHXGPK-006-2 SPMX-20240815299902 \N \N \N 1 \N [{"file_id": "391f563e-3efe-473c-a323-82635986d730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efa7a7013e574addb2453f3e557ba78c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efa7a7013e574addb2453f3e557ba78c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efa7a7013e574addb2453f3e557ba78c.jpg", "file_size": 38578, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa7a7013e574addb2453f3e557ba78c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa7a7013e574addb2453f3e557ba78c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa7a7013e574addb2453f3e557ba78c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efa7a7013e574addb2453f3e557ba78c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efa7a7013e574addb2453f3e557ba78c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRFtOq96EFx-pYTP9HTlyjIRwfI=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.496014+00 2025-12-09 10:14:45.496019+00 4762 DH20220779FW#S短袖口白 SPMX-20240815299895 \N \N \N 1 \N [{"file_id": "9e8246bd-5d7c-4327-ba78-796915c77121", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cbae0b1d39a4369afc0fb7207740ede.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cbae0b1d39a4369afc0fb7207740ede.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cbae0b1d39a4369afc0fb7207740ede.jpg", "file_size": 10370, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbae0b1d39a4369afc0fb7207740ede.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbae0b1d39a4369afc0fb7207740ede.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbae0b1d39a4369afc0fb7207740ede.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cbae0b1d39a4369afc0fb7207740ede.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cbae0b1d39a4369afc0fb7207740ede.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQv51DG0kstZ5vMpQWGybOcYkDo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.497765+00 2025-12-09 10:14:45.49777+00 4763 LHJ9211#20#枣红 SPMX-20240815299899 \N \N \N 1 \N [{"file_id": "5781f399-982c-46f4-b256-0563b3b24d5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg", "file_size": 11342, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9211#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeb1a1e1d25d4de39ffbfe34a321a1a4.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aulNHG-oFvSA8rLhv4JyXjv1qLk=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.499359+00 2025-12-09 10:14:45.499364+00 4764 1047FWF#-2 SPMX-20240815299900 \N \N \N 1 \N [{"file_id": "7e31bf3c-c20f-4162-8698-34a0d553cfde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfa9441f6e14424e8b026cc57adf0f9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfa9441f6e14424e8b026cc57adf0f9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfa9441f6e14424e8b026cc57adf0f9d.jpg", "file_size": 13469, "is_delete": false, "file_type": 1, "original_file_name": "1047FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa9441f6e14424e8b026cc57adf0f9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa9441f6e14424e8b026cc57adf0f9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa9441f6e14424e8b026cc57adf0f9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfa9441f6e14424e8b026cc57adf0f9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfa9441f6e14424e8b026cc57adf0f9d.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJBYpduSSNWq_Z07Py9S_1I7Coo=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.50093+00 2025-12-09 10:14:45.500934+00 4765 C23135#紫色S SPMX-20240815299893 \N \N \N 1 \N [{"file_id": "d1b726ab-83b7-422f-b1c7-6388870dc369", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ef6563f459d49daa0c9f635dfb8b7d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ef6563f459d49daa0c9f635dfb8b7d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ef6563f459d49daa0c9f635dfb8b7d8.jpg", "file_size": 18015, "is_delete": false, "file_type": 1, "original_file_name": "C23135#紫色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef6563f459d49daa0c9f635dfb8b7d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef6563f459d49daa0c9f635dfb8b7d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef6563f459d49daa0c9f635dfb8b7d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ef6563f459d49daa0c9f635dfb8b7d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ef6563f459d49daa0c9f635dfb8b7d8.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mf7zlTnM0QCx_EdiiTXCjrfudLc=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.502428+00 2025-12-09 10:14:45.502433+00 4766 80061#短袖上衣 SPMX-20240815299898 \N \N \N 1 \N [{"file_id": "02abf24b-e250-46d6-a186-9265094013c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a55110ebfd0447784a2ddd86eaac862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a55110ebfd0447784a2ddd86eaac862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a55110ebfd0447784a2ddd86eaac862.jpg", "file_size": 21467, "is_delete": false, "file_type": 1, "original_file_name": "80061#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a55110ebfd0447784a2ddd86eaac862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a55110ebfd0447784a2ddd86eaac862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a55110ebfd0447784a2ddd86eaac862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a55110ebfd0447784a2ddd86eaac862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a55110ebfd0447784a2ddd86eaac862.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_2JVj_Eu9CLowRaB81wkYZou-S8=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.503911+00 2025-12-09 10:14:45.503915+00 4767 1047FWF#-3 SPMX-20240815299910 \N \N \N 1 \N [{"file_id": "e9df0a70-7064-45e8-beed-f8a9f2e641e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "235b526454c84f25897834ec178ba9d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "235b526454c84f25897834ec178ba9d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "235b526454c84f25897834ec178ba9d0.jpg", "file_size": 13333, "is_delete": false, "file_type": 1, "original_file_name": "1047FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235b526454c84f25897834ec178ba9d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235b526454c84f25897834ec178ba9d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235b526454c84f25897834ec178ba9d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/235b526454c84f25897834ec178ba9d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/235b526454c84f25897834ec178ba9d0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LvFbhuzJmE85vaWrAq7FpYd3G_M=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.505431+00 2025-12-09 10:14:45.505436+00 4768 23-2101#A29前后片4XL SPMX-20240815299913 \N \N \N 1 \N [{"file_id": "6557138f-6133-4e8e-ab81-4bf177a841d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fe5fcfc46374ff3a04dba53a8402539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fe5fcfc46374ff3a04dba53a8402539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fe5fcfc46374ff3a04dba53a8402539.jpg", "file_size": 22499, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A29前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe5fcfc46374ff3a04dba53a8402539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe5fcfc46374ff3a04dba53a8402539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe5fcfc46374ff3a04dba53a8402539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fe5fcfc46374ff3a04dba53a8402539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fe5fcfc46374ff3a04dba53a8402539.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BisbI3BUbV4jeCDTBcasq3lfAig=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.506992+00 2025-12-09 10:14:45.506996+00 4769 23-2101#A29前后片3XL SPMX-20240815299903 \N \N \N 1 \N [{"file_id": "4358715a-a3ee-4e4c-9ea3-7b88e2f8eb0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82ddd7ef82d645e6883d060147c715d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82ddd7ef82d645e6883d060147c715d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82ddd7ef82d645e6883d060147c715d5.jpg", "file_size": 21075, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A29前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ddd7ef82d645e6883d060147c715d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ddd7ef82d645e6883d060147c715d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ddd7ef82d645e6883d060147c715d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82ddd7ef82d645e6883d060147c715d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82ddd7ef82d645e6883d060147c715d5.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M088ZPOE4Xj8Ggw_xdW5pyAKUcc=", "createTime": "2024-08-15 14:41:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.508199+00 2025-12-09 10:14:45.508203+00 4770 0002-12FWE#VS-D3 SPMX-20240815299917 \N \N \N 1 \N [{"file_id": "54f00c24-9d62-472e-ac07-6ab5ef72ee3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85ea1ccfbafe467da923a51b4fcc4451.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85ea1ccfbafe467da923a51b4fcc4451.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85ea1ccfbafe467da923a51b4fcc4451.jpg", "file_size": 8239, "is_delete": false, "file_type": 1, "original_file_name": "0002-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ea1ccfbafe467da923a51b4fcc4451.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ea1ccfbafe467da923a51b4fcc4451.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ea1ccfbafe467da923a51b4fcc4451.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85ea1ccfbafe467da923a51b4fcc4451.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85ea1ccfbafe467da923a51b4fcc4451.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrrFvvgCSXzzjPh0xMnDNL8smAU=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.50936+00 2025-12-09 10:14:45.509364+00 4771 LHJ9211#25#土黄 SPMX-20240815299911 \N \N \N 1 \N [{"file_id": "ed36b97a-6402-4d3f-97e1-3f1e2bd012c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c44fff5d4d8143889e091728a3ca0d11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c44fff5d4d8143889e091728a3ca0d11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c44fff5d4d8143889e091728a3ca0d11.jpg", "file_size": 11166, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9211#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fff5d4d8143889e091728a3ca0d11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fff5d4d8143889e091728a3ca0d11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44fff5d4d8143889e091728a3ca0d11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c44fff5d4d8143889e091728a3ca0d11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c44fff5d4d8143889e091728a3ca0d11.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iT-ME_1o5Jo9F164IbNKq5H9XRE=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.510533+00 2025-12-09 10:14:45.510537+00 4772 DH20220779FW#S短袖口绿 SPMX-20240815299915 \N \N \N 1 \N [{"file_id": "a45d5cf6-7a90-4f63-b42a-7ba810c228c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13ea7476317a4301be8d1935f50b6470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13ea7476317a4301be8d1935f50b6470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13ea7476317a4301be8d1935f50b6470.jpg", "file_size": 12583, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ea7476317a4301be8d1935f50b6470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ea7476317a4301be8d1935f50b6470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ea7476317a4301be8d1935f50b6470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13ea7476317a4301be8d1935f50b6470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13ea7476317a4301be8d1935f50b6470.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1NrlzRWGnZKipEwO-S8Tqe3m28=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.511711+00 2025-12-09 10:14:45.511715+00 4773 JS0974-A36#RC23 SPMX-20240815299904 \N \N \N 1 \N [{"file_id": "04c62183-f077-4b7c-9588-01e8a69c76ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8f312a695b84fdf9b307f599a410675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8f312a695b84fdf9b307f599a410675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8f312a695b84fdf9b307f599a410675.jpg", "file_size": 34434, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A36#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f312a695b84fdf9b307f599a410675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f312a695b84fdf9b307f599a410675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f312a695b84fdf9b307f599a410675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8f312a695b84fdf9b307f599a410675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8f312a695b84fdf9b307f599a410675.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5gm9lVUTui3lyQ4bifocM6_PDw=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.512909+00 2025-12-09 10:14:45.512913+00 4774 DH20220779FW#S短袖口粉 SPMX-20240815299905 \N \N \N 1 \N [{"file_id": "753ca8f1-7798-40c8-9d0e-4bb6dea350a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac705ffa9b0d4e89bef48d3e8a11e296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac705ffa9b0d4e89bef48d3e8a11e296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac705ffa9b0d4e89bef48d3e8a11e296.jpg", "file_size": 13454, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac705ffa9b0d4e89bef48d3e8a11e296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac705ffa9b0d4e89bef48d3e8a11e296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac705ffa9b0d4e89bef48d3e8a11e296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac705ffa9b0d4e89bef48d3e8a11e296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac705ffa9b0d4e89bef48d3e8a11e296.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQh6J9OVLhpkVYPfOFJnns4CADI=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.51409+00 2025-12-09 10:14:45.514095+00 4775 0002-11FWF#V5曲线 SPMX-20240815299906 \N \N \N 1 \N [{"file_id": "d875ca8a-e36a-4f79-bce3-ed01c61c14f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1652abcc2a294746b49c86c3a260a31f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1652abcc2a294746b49c86c3a260a31f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1652abcc2a294746b49c86c3a260a31f.jpg", "file_size": 19117, "is_delete": false, "file_type": 1, "original_file_name": "0002-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1652abcc2a294746b49c86c3a260a31f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1652abcc2a294746b49c86c3a260a31f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1652abcc2a294746b49c86c3a260a31f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1652abcc2a294746b49c86c3a260a31f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1652abcc2a294746b49c86c3a260a31f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uoqrhVBnoX1l0HEwi4ewEFmcAI=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.515267+00 2025-12-09 10:14:45.515271+00 4776 80061#短袖子 SPMX-20240815299909 \N \N \N 1 \N [{"file_id": "c778eb75-db2d-4fbb-a3ad-2c51f70fa77f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "435aa91456a3459dbbc27a74f74c387c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "435aa91456a3459dbbc27a74f74c387c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "435aa91456a3459dbbc27a74f74c387c.jpg", "file_size": 23304, "is_delete": false, "file_type": 1, "original_file_name": "80061#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435aa91456a3459dbbc27a74f74c387c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435aa91456a3459dbbc27a74f74c387c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435aa91456a3459dbbc27a74f74c387c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/435aa91456a3459dbbc27a74f74c387c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/435aa91456a3459dbbc27a74f74c387c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPe-yxoTO4QC67GjbrGPRBSR9Yo=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.516441+00 2025-12-09 10:14:45.516445+00 4777 JS0974-A37#RC23 SPMX-20240815299916 \N \N \N 1 \N [{"file_id": "cb13fca9-17ff-4f84-bd98-50963c9a33b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20e48a5e1d594fa18dbe2e80be7ee946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20e48a5e1d594fa18dbe2e80be7ee946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20e48a5e1d594fa18dbe2e80be7ee946.jpg", "file_size": 30911, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A37#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e48a5e1d594fa18dbe2e80be7ee946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e48a5e1d594fa18dbe2e80be7ee946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e48a5e1d594fa18dbe2e80be7ee946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20e48a5e1d594fa18dbe2e80be7ee946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20e48a5e1d594fa18dbe2e80be7ee946.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dm72YOPRdCM_qL85z75uIApK-QQ=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.517666+00 2025-12-09 10:14:45.51767+00 4778 LZ1205#上身2号色 SPMX-20240815299908 \N \N \N 1 \N [{"file_id": "915fa56b-3a20-40bb-95bb-6f29b451bb9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13d4af00814f4e648df60074240a9683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13d4af00814f4e648df60074240a9683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13d4af00814f4e648df60074240a9683.jpg", "file_size": 21692, "is_delete": false, "file_type": 1, "original_file_name": "LZ1205#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d4af00814f4e648df60074240a9683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d4af00814f4e648df60074240a9683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d4af00814f4e648df60074240a9683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13d4af00814f4e648df60074240a9683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13d4af00814f4e648df60074240a9683.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYuv64NdVRAt4AUihToLakld3TU=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.519093+00 2025-12-09 10:14:45.519097+00 4779 C23135#紫色净色 SPMX-20240815299918 \N \N \N 1 \N [{"file_id": "3ef39470-d2a0-4818-8940-c97e423e738c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7453804b5ebe414980cc387216cd1dbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7453804b5ebe414980cc387216cd1dbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7453804b5ebe414980cc387216cd1dbf.jpg", "file_size": 6581, "is_delete": false, "file_type": 1, "original_file_name": "C23135#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7453804b5ebe414980cc387216cd1dbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7453804b5ebe414980cc387216cd1dbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7453804b5ebe414980cc387216cd1dbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7453804b5ebe414980cc387216cd1dbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7453804b5ebe414980cc387216cd1dbf.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2W8ObFHg0qYKu91c3DdKri74Po=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.520504+00 2025-12-09 10:14:45.520508+00 4780 C23135#紫色XL SPMX-20240815299907 \N \N \N 1 \N [{"file_id": "572d55a9-a6ed-4e3c-96dc-713833556e07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d09a4aa98b274d94a74abae01b48c242.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d09a4aa98b274d94a74abae01b48c242.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d09a4aa98b274d94a74abae01b48c242.jpg", "file_size": 16172, "is_delete": false, "file_type": 1, "original_file_name": "C23135#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09a4aa98b274d94a74abae01b48c242.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09a4aa98b274d94a74abae01b48c242.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09a4aa98b274d94a74abae01b48c242.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d09a4aa98b274d94a74abae01b48c242.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d09a4aa98b274d94a74abae01b48c242.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIavyN0fkEdvJnTxfNWWL-l32SQ=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.521801+00 2025-12-09 10:14:45.521806+00 4781 FHXGPK-006-3 SPMX-20240815299914 \N \N \N 1 \N [{"file_id": "b2de8679-b8d0-4de7-a09d-6088b2ab3a31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0e2b5ec53e34e8bb43e875789d31e67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0e2b5ec53e34e8bb43e875789d31e67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0e2b5ec53e34e8bb43e875789d31e67.jpg", "file_size": 32315, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e2b5ec53e34e8bb43e875789d31e67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e2b5ec53e34e8bb43e875789d31e67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e2b5ec53e34e8bb43e875789d31e67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0e2b5ec53e34e8bb43e875789d31e67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0e2b5ec53e34e8bb43e875789d31e67.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLSqWEi9MHLm4rUX6jxUu5o3PiA=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.523044+00 2025-12-09 10:14:45.523049+00 4782 HSH107#红 SPMX-20240815299912 \N \N \N 1 \N [{"file_id": "2690ff28-9993-4820-9736-c52f7f00a16f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg", "file_size": 10669, "is_delete": false, "file_type": 1, "original_file_name": "HSH107#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbf4fc8eb6724dbabe5dd2c6ee6fba42.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-4qQZg3Nh0uBuySEJdWmhvUCc4=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.524266+00 2025-12-09 10:14:45.52427+00 4783 DH20220779FW#S短袖口蓝 SPMX-20240815299926 \N \N \N 1 \N [{"file_id": "5c850802-7148-4384-ba8f-9176fc8075a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cd1ccaeaa02436bba15553da628c752.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cd1ccaeaa02436bba15553da628c752.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cd1ccaeaa02436bba15553da628c752.jpg", "file_size": 12799, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖口蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd1ccaeaa02436bba15553da628c752.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd1ccaeaa02436bba15553da628c752.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd1ccaeaa02436bba15553da628c752.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cd1ccaeaa02436bba15553da628c752.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cd1ccaeaa02436bba15553da628c752.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6zh1Lgg8J_NXbDu4JK2GcZJ0tY4=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.525443+00 2025-12-09 10:14:45.525447+00 4784 C23163#L SPMX-20240815299931 \N \N \N 1 \N [{"file_id": "8447918f-634a-44dc-9115-4d51169c5b44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14df7e5edc12451aa77eba7bbd90cbf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14df7e5edc12451aa77eba7bbd90cbf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14df7e5edc12451aa77eba7bbd90cbf6.jpg", "file_size": 14249, "is_delete": false, "file_type": 1, "original_file_name": "C23163#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14df7e5edc12451aa77eba7bbd90cbf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14df7e5edc12451aa77eba7bbd90cbf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14df7e5edc12451aa77eba7bbd90cbf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14df7e5edc12451aa77eba7bbd90cbf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14df7e5edc12451aa77eba7bbd90cbf6.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5k0n-HRRAhy9SnxNtyoY-tU_bEM=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.5266+00 2025-12-09 10:14:45.526604+00 4785 HSH108# SPMX-20240815299932 \N \N \N 1 \N [{"file_id": "ff2579e4-bb02-4a91-a51e-773dfdebab4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16b291a60c754ae7b3035fd44bd24044.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16b291a60c754ae7b3035fd44bd24044.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16b291a60c754ae7b3035fd44bd24044.jpg", "file_size": 15425, "is_delete": false, "file_type": 1, "original_file_name": "HSH108#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b291a60c754ae7b3035fd44bd24044.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b291a60c754ae7b3035fd44bd24044.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b291a60c754ae7b3035fd44bd24044.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16b291a60c754ae7b3035fd44bd24044.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16b291a60c754ae7b3035fd44bd24044.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cC1ShK_CyxScoz0Ha7H2KaHW4c0=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.527864+00 2025-12-09 10:14:45.527869+00 4786 LHJ9211#5#彩兰 SPMX-20240815299923 \N \N \N 1 \N [{"file_id": "3b0280b2-ef0f-4cf3-9fe0-acca2f74984c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7bf4dc104dc4f09b18023bdb4cb261a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7bf4dc104dc4f09b18023bdb4cb261a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7bf4dc104dc4f09b18023bdb4cb261a.jpg", "file_size": 10960, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9211#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bf4dc104dc4f09b18023bdb4cb261a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bf4dc104dc4f09b18023bdb4cb261a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bf4dc104dc4f09b18023bdb4cb261a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7bf4dc104dc4f09b18023bdb4cb261a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7bf4dc104dc4f09b18023bdb4cb261a.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qYJx0Wc_ymr2E5GoNLriHEY2_24=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.529131+00 2025-12-09 10:14:45.529135+00 4787 1047FWF#-4 SPMX-20240815299920 \N \N \N 1 \N [{"file_id": "6b170b65-477b-4a97-b7cd-f3ad298d99b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b13dc991f44664a6607a95523cf5b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b13dc991f44664a6607a95523cf5b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b13dc991f44664a6607a95523cf5b3.jpg", "file_size": 14302, "is_delete": false, "file_type": 1, "original_file_name": "1047FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b13dc991f44664a6607a95523cf5b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b13dc991f44664a6607a95523cf5b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b13dc991f44664a6607a95523cf5b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b13dc991f44664a6607a95523cf5b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b13dc991f44664a6607a95523cf5b3.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBN9fDyRVLH5B6utd2R6hlNg2A0=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.530495+00 2025-12-09 10:14:45.530501+00 4788 JS0974-A38#RC23 SPMX-20240815299924 \N \N \N 1 \N [{"file_id": "755befa5-cbfc-4bde-87a9-bc6114d9f876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec897ec76f1b46bbad299cc6316fb394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec897ec76f1b46bbad299cc6316fb394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec897ec76f1b46bbad299cc6316fb394.jpg", "file_size": 71835, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A38#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec897ec76f1b46bbad299cc6316fb394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec897ec76f1b46bbad299cc6316fb394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec897ec76f1b46bbad299cc6316fb394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec897ec76f1b46bbad299cc6316fb394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec897ec76f1b46bbad299cc6316fb394.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWXhlgJv6ZziYGReO96HFzJir9o=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.531742+00 2025-12-09 10:14:45.531746+00 4789 23-2101#A29袖子3XL SPMX-20240815299927 \N \N \N 1 \N [{"file_id": "b5289aa8-9cb8-412a-bbbe-fcc84b2c5b23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f07a1c12ed4a430f8a6ab5e020b5228c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f07a1c12ed4a430f8a6ab5e020b5228c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f07a1c12ed4a430f8a6ab5e020b5228c.jpg", "file_size": 17967, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A29袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07a1c12ed4a430f8a6ab5e020b5228c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07a1c12ed4a430f8a6ab5e020b5228c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07a1c12ed4a430f8a6ab5e020b5228c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f07a1c12ed4a430f8a6ab5e020b5228c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f07a1c12ed4a430f8a6ab5e020b5228c.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrQ30qQn9aaCU0ldaR43bdDZkAQ=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.532936+00 2025-12-09 10:14:45.53294+00 4790 0002-12FWF#V5曲线 SPMX-20240815299928 \N \N \N 1 \N [{"file_id": "c970bc30-e48a-4cc0-82f1-d4b3d863dd0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26465306cc9349618bc4c53999b93e38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26465306cc9349618bc4c53999b93e38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26465306cc9349618bc4c53999b93e38.jpg", "file_size": 24020, "is_delete": false, "file_type": 1, "original_file_name": "0002-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26465306cc9349618bc4c53999b93e38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26465306cc9349618bc4c53999b93e38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26465306cc9349618bc4c53999b93e38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26465306cc9349618bc4c53999b93e38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26465306cc9349618bc4c53999b93e38.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qap0jbJCjI3Ipn4l-8O_qTU_e0I=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.534191+00 2025-12-09 10:14:45.534196+00 4791 1047FWF#-5 SPMX-20240815299930 \N \N \N 1 \N [{"file_id": "8156711f-95aa-4b37-a1f8-b62bdcb0a74e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "556bbe259e5a452fa94cd55a083c7f7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "556bbe259e5a452fa94cd55a083c7f7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "556bbe259e5a452fa94cd55a083c7f7f.jpg", "file_size": 21207, "is_delete": false, "file_type": 1, "original_file_name": "1047FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556bbe259e5a452fa94cd55a083c7f7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556bbe259e5a452fa94cd55a083c7f7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556bbe259e5a452fa94cd55a083c7f7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/556bbe259e5a452fa94cd55a083c7f7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/556bbe259e5a452fa94cd55a083c7f7f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nr-MhrdY7sctJN2u3gvvIOrLNuI=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.535392+00 2025-12-09 10:14:45.535396+00 4792 80062#上身墨绿 SPMX-20240815299919 \N \N \N 1 \N [{"file_id": "f4e8cf72-69e8-4108-be18-fc4a85f5690a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f1f70e40f054874908c7c0a0f9cd901.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f1f70e40f054874908c7c0a0f9cd901.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f1f70e40f054874908c7c0a0f9cd901.jpg", "file_size": 26554, "is_delete": false, "file_type": 1, "original_file_name": "80062#上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1f70e40f054874908c7c0a0f9cd901.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1f70e40f054874908c7c0a0f9cd901.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1f70e40f054874908c7c0a0f9cd901.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f1f70e40f054874908c7c0a0f9cd901.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f1f70e40f054874908c7c0a0f9cd901.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PU4UbqUM-9JjJNDJoPGYNw8uXNs=", "createTime": "2024-08-15 14:41:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.536579+00 2025-12-09 10:14:45.536584+00 4793 FHXGPK-006-4 SPMX-20240815299925 \N \N \N 1 \N [{"file_id": "5d9b9b5a-aba8-4dd0-b9dd-c43d4c26a7cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35cfa8c52da44694946a5e8a55693bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35cfa8c52da44694946a5e8a55693bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35cfa8c52da44694946a5e8a55693bab.jpg", "file_size": 33562, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cfa8c52da44694946a5e8a55693bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cfa8c52da44694946a5e8a55693bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cfa8c52da44694946a5e8a55693bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35cfa8c52da44694946a5e8a55693bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35cfa8c52da44694946a5e8a55693bab.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YfJ2OWidG_HnHsW6d0tVRHn883A=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.537745+00 2025-12-09 10:14:45.537749+00 4794 HSH107FW#VS-D3 SPMX-20240815299922 \N \N \N 1 \N [{"file_id": "68c2719d-c2eb-479d-8fcf-f260643d2030", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg", "file_size": 14280, "is_delete": false, "file_type": 1, "original_file_name": "HSH107FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dbedc3c6e0b4d3a9b5b31ee4d7b4b62.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qFpf7fSVdb_jLvc7SIdG5DO1i0=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.538947+00 2025-12-09 10:14:45.538951+00 4795 LZ1205#上身3号色 SPMX-20240815299921 \N \N \N 1 \N [{"file_id": "f27cffcf-dcc1-4a33-ba81-c1fc00b55feb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8eeb355ac4524059bc17b7c3cd54d6a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8eeb355ac4524059bc17b7c3cd54d6a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8eeb355ac4524059bc17b7c3cd54d6a9.jpg", "file_size": 20000, "is_delete": false, "file_type": 1, "original_file_name": "LZ1205#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eeb355ac4524059bc17b7c3cd54d6a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eeb355ac4524059bc17b7c3cd54d6a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eeb355ac4524059bc17b7c3cd54d6a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8eeb355ac4524059bc17b7c3cd54d6a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8eeb355ac4524059bc17b7c3cd54d6a9.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DVZcwZh6Trx1oZLFflT1SAlSyg=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.540127+00 2025-12-09 10:14:45.540131+00 4796 80062#上身彩蓝 SPMX-20240815299929 \N \N \N 1 \N [{"file_id": "f41ea752-9276-4c94-9bf0-506f55e97c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a84f01f384b4c8e80506bdf1b17ee55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a84f01f384b4c8e80506bdf1b17ee55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a84f01f384b4c8e80506bdf1b17ee55.jpg", "file_size": 25652, "is_delete": false, "file_type": 1, "original_file_name": "80062#上身彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a84f01f384b4c8e80506bdf1b17ee55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a84f01f384b4c8e80506bdf1b17ee55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a84f01f384b4c8e80506bdf1b17ee55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a84f01f384b4c8e80506bdf1b17ee55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a84f01f384b4c8e80506bdf1b17ee55.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pflkS7f2mlm-XxFFV8Dr2M-XtXI=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.541328+00 2025-12-09 10:14:45.541331+00 4797 80062#上身枣红 SPMX-20240815299939 \N \N \N 1 \N [{"file_id": "034f9793-b5a8-46bb-be31-8b117df89131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c1faa94384f472f85615e251510cd2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c1faa94384f472f85615e251510cd2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c1faa94384f472f85615e251510cd2e.jpg", "file_size": 26048, "is_delete": false, "file_type": 1, "original_file_name": "80062#上身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1faa94384f472f85615e251510cd2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1faa94384f472f85615e251510cd2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1faa94384f472f85615e251510cd2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c1faa94384f472f85615e251510cd2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c1faa94384f472f85615e251510cd2e.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYOEdiwpZtmbSoNkcRWCoiQvnA4=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.542492+00 2025-12-09 10:14:45.542496+00 4798 C23163#M SPMX-20240815299940 \N \N \N 1 \N [{"file_id": "9d87fb1d-9893-49f1-9126-8c7adfab311e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7512fa756d664588aafaaf93d00dec95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7512fa756d664588aafaaf93d00dec95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7512fa756d664588aafaaf93d00dec95.jpg", "file_size": 14815, "is_delete": false, "file_type": 1, "original_file_name": "C23163#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7512fa756d664588aafaaf93d00dec95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7512fa756d664588aafaaf93d00dec95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7512fa756d664588aafaaf93d00dec95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7512fa756d664588aafaaf93d00dec95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7512fa756d664588aafaaf93d00dec95.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUkkzNgPCTcGWGGtuEeWPfDqf7I=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.543672+00 2025-12-09 10:14:45.543677+00 4799 JS0974-A4#1号色 SPMX-20240815299937 \N \N \N 1 \N [{"file_id": "d57f0b5d-5589-44df-a3f5-0e0a33073b84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg", "file_size": 9210, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A4#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee2d8d31c1be4829b0a1c3fb0f4f7cdf.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qveYhc8NaVjFjuqaeEVanskJbIw=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.54492+00 2025-12-09 10:14:45.544925+00 4800 LZ1205#上身5号色 SPMX-20240815299944 \N \N \N 1 \N [{"file_id": "260f7bc2-95ba-4c53-906f-3bebec08b058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e19e50a7ed4641ffa2b4918177880120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e19e50a7ed4641ffa2b4918177880120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e19e50a7ed4641ffa2b4918177880120.jpg", "file_size": 20274, "is_delete": false, "file_type": 1, "original_file_name": "LZ1205#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19e50a7ed4641ffa2b4918177880120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19e50a7ed4641ffa2b4918177880120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19e50a7ed4641ffa2b4918177880120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e19e50a7ed4641ffa2b4918177880120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e19e50a7ed4641ffa2b4918177880120.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_ym6ddGHDLiC64BcyyNn3SccIc=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.546164+00 2025-12-09 10:14:45.546168+00 4801 0002-12FWF#V5曲线番禺调色 SPMX-20240815299938 \N \N \N 1 \N [{"file_id": "33cff516-8bcc-46ab-8038-cda9434a1121", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6babd7ceb33f4aa0a75f6fda09805a33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6babd7ceb33f4aa0a75f6fda09805a33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6babd7ceb33f4aa0a75f6fda09805a33.jpg", "file_size": 24656, "is_delete": false, "file_type": 1, "original_file_name": "0002-12FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6babd7ceb33f4aa0a75f6fda09805a33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6babd7ceb33f4aa0a75f6fda09805a33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6babd7ceb33f4aa0a75f6fda09805a33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6babd7ceb33f4aa0a75f6fda09805a33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6babd7ceb33f4aa0a75f6fda09805a33.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKQrmnkpVgIkn0RLzlIQHBs4rnw=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.547649+00 2025-12-09 10:14:45.547654+00 4802 FHXGPK-006-5 SPMX-20240815299936 \N \N \N 1 \N [{"file_id": "5e98d81d-46fb-49a8-9424-3db0ef79c9c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "172be60225e14676b1be255de65c67f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "172be60225e14676b1be255de65c67f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "172be60225e14676b1be255de65c67f1.jpg", "file_size": 34163, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/172be60225e14676b1be255de65c67f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/172be60225e14676b1be255de65c67f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/172be60225e14676b1be255de65c67f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/172be60225e14676b1be255de65c67f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/172be60225e14676b1be255de65c67f1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgtF2mE_0GrnYt6w6gcTNp7p8z0=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.548838+00 2025-12-09 10:14:45.548842+00 4803 HSH108#E SPMX-20240815299943 \N \N \N 1 \N [{"file_id": "a67f6896-db35-4870-8d99-7aba83017439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1ad086e2fa1436684fbb9ded927b0e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1ad086e2fa1436684fbb9ded927b0e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1ad086e2fa1436684fbb9ded927b0e0.jpg", "file_size": 25673, "is_delete": false, "file_type": 1, "original_file_name": "HSH108#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ad086e2fa1436684fbb9ded927b0e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ad086e2fa1436684fbb9ded927b0e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ad086e2fa1436684fbb9ded927b0e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1ad086e2fa1436684fbb9ded927b0e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1ad086e2fa1436684fbb9ded927b0e0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nboxYJt4sScmxU-imtRukIUPQo=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.55004+00 2025-12-09 10:14:45.550045+00 4804 LHJ9217#1#黑色 SPMX-20240815299934 \N \N \N 1 \N [{"file_id": "13f5d175-01b0-4b7a-acd3-31852c909048", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe97020293b84d02a402bbf42ef9c6e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe97020293b84d02a402bbf42ef9c6e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe97020293b84d02a402bbf42ef9c6e2.jpg", "file_size": 15477, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe97020293b84d02a402bbf42ef9c6e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe97020293b84d02a402bbf42ef9c6e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe97020293b84d02a402bbf42ef9c6e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe97020293b84d02a402bbf42ef9c6e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe97020293b84d02a402bbf42ef9c6e2.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVw2w0txom84_iNfIiXyvKU5IWs=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.551214+00 2025-12-09 10:14:45.551218+00 4805 DH20220779FW#S短袖橙 SPMX-20240815299941 \N \N \N 1 \N [{"file_id": "377775f2-41c8-4924-9946-3b5b5027b32b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45d119383c564077adbc702cefc8821f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45d119383c564077adbc702cefc8821f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45d119383c564077adbc702cefc8821f.jpg", "file_size": 10198, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d119383c564077adbc702cefc8821f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d119383c564077adbc702cefc8821f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d119383c564077adbc702cefc8821f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45d119383c564077adbc702cefc8821f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45d119383c564077adbc702cefc8821f.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sl2j7NN4IOFQHHt7kSPoYbtWXN8=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.552399+00 2025-12-09 10:14:45.552404+00 4806 LZ1205#上身4号色 SPMX-20240815299933 \N \N \N 1 \N [{"file_id": "844f3fc5-6eda-4bd3-9045-e2155f6aaa40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a466da1d05c147348a1ed4a2d2931f27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a466da1d05c147348a1ed4a2d2931f27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a466da1d05c147348a1ed4a2d2931f27.jpg", "file_size": 21337, "is_delete": false, "file_type": 1, "original_file_name": "LZ1205#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a466da1d05c147348a1ed4a2d2931f27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a466da1d05c147348a1ed4a2d2931f27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a466da1d05c147348a1ed4a2d2931f27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a466da1d05c147348a1ed4a2d2931f27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a466da1d05c147348a1ed4a2d2931f27.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_M5zv8P8daBYwMxt-x16vrixU3E=", "createTime": "2024-08-15 14:41:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.553563+00 2025-12-09 10:14:45.553567+00 4807 1048#亮黄色 SPMX-20240815299942 \N \N \N 1 \N [{"file_id": "f19090f5-3cf8-4956-8d25-3d197f4b78c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae385429f4484d48a81e0f211574abde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae385429f4484d48a81e0f211574abde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae385429f4484d48a81e0f211574abde.jpg", "file_size": 19131, "is_delete": false, "file_type": 1, "original_file_name": "1048#亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae385429f4484d48a81e0f211574abde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae385429f4484d48a81e0f211574abde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae385429f4484d48a81e0f211574abde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae385429f4484d48a81e0f211574abde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae385429f4484d48a81e0f211574abde.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YA5qds_QlOS-vkFK73zwh9YmEo=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.554783+00 2025-12-09 10:14:45.554787+00 4808 23-2101#A29袖子4XL SPMX-20240815299935 \N \N \N 1 \N [{"file_id": "a9de4793-c765-4e1a-a85a-e00e95d707ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da102c5203b0413fa8054e399e7935d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da102c5203b0413fa8054e399e7935d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da102c5203b0413fa8054e399e7935d1.jpg", "file_size": 16662, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A29袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da102c5203b0413fa8054e399e7935d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da102c5203b0413fa8054e399e7935d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da102c5203b0413fa8054e399e7935d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da102c5203b0413fa8054e399e7935d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da102c5203b0413fa8054e399e7935d1.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8em8nwVzyfJiEjxhTt1goL3i0I=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.555974+00 2025-12-09 10:14:45.555979+00 4809 23-2101#A29领子通用 SPMX-20240815299946 \N \N \N 1 \N [{"file_id": "b54d7715-7b7c-4697-99a2-8c0028f134ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a688c63ef7e5440bb1305f5238fffbfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a688c63ef7e5440bb1305f5238fffbfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a688c63ef7e5440bb1305f5238fffbfe.jpg", "file_size": 15209, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A29领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a688c63ef7e5440bb1305f5238fffbfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a688c63ef7e5440bb1305f5238fffbfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a688c63ef7e5440bb1305f5238fffbfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a688c63ef7e5440bb1305f5238fffbfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a688c63ef7e5440bb1305f5238fffbfe.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyN8gocFXx8PdBw9xY7ihDVs33o=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.557167+00 2025-12-09 10:14:45.557171+00 4810 23-2101#A2前后片3XL SPMX-20240815299956 \N \N \N 1 \N [{"file_id": "cd076874-b3cf-4775-b050-47c0d4a29ce1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546ad8185e4d409589413c1db175dcc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546ad8185e4d409589413c1db175dcc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546ad8185e4d409589413c1db175dcc0.jpg", "file_size": 11430, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A2前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ad8185e4d409589413c1db175dcc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ad8185e4d409589413c1db175dcc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ad8185e4d409589413c1db175dcc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546ad8185e4d409589413c1db175dcc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546ad8185e4d409589413c1db175dcc0.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_AjkfWwa0r3wl5yqOIR00fD81h0=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:45.558318+00 2025-12-09 10:14:45.558321+00 4811 FHXGPK-006-7 SPMX-20240815299959 \N \N \N 1 \N [{"file_id": "fc7a091c-20df-40e2-8758-50d1e4330a1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de450dd6a114de2816d24646c410955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de450dd6a114de2816d24646c410955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de450dd6a114de2816d24646c410955.jpg", "file_size": 37071, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de450dd6a114de2816d24646c410955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de450dd6a114de2816d24646c410955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de450dd6a114de2816d24646c410955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de450dd6a114de2816d24646c410955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de450dd6a114de2816d24646c410955.jpg?e=1765361684&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXi2KUiOnfvcqZ_YQ7Jf35UY0AQ=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.245103+00 2025-12-09 10:14:46.245115+00 4812 JS0974-A4#3号色 SPMX-20240815299957 \N \N \N 1 \N [{"file_id": "d4513232-33c1-4c7d-ac19-10293af69d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d936ff7ed4a4e9387011c3e93fa3d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d936ff7ed4a4e9387011c3e93fa3d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d936ff7ed4a4e9387011c3e93fa3d16.jpg", "file_size": 9456, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A4#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d936ff7ed4a4e9387011c3e93fa3d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d936ff7ed4a4e9387011c3e93fa3d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d936ff7ed4a4e9387011c3e93fa3d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d936ff7ed4a4e9387011c3e93fa3d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d936ff7ed4a4e9387011c3e93fa3d16.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a27qxESy8IPq5szsQv-bjQLxLIo=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.247514+00 2025-12-09 10:14:46.247524+00 4813 LHJ9217#20#枣红 SPMX-20240815299958 \N \N \N 1 \N [{"file_id": "7085d54d-73bd-4916-b983-735e9650c5ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cc72491e78b4c7fab23d8dd7fbe2098.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cc72491e78b4c7fab23d8dd7fbe2098.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cc72491e78b4c7fab23d8dd7fbe2098.jpg", "file_size": 15213, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc72491e78b4c7fab23d8dd7fbe2098.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc72491e78b4c7fab23d8dd7fbe2098.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc72491e78b4c7fab23d8dd7fbe2098.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cc72491e78b4c7fab23d8dd7fbe2098.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cc72491e78b4c7fab23d8dd7fbe2098.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOxBt3yOg2_3UCFfocukpBXhopI=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.249457+00 2025-12-09 10:14:46.249463+00 4814 LHJ9217#118#蓝色 SPMX-20240815299945 \N \N \N 1 \N [{"file_id": "7bf972b4-4a32-47e5-ac6f-88ed8e0fd901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85c1356d2972447faa3ec63680de22a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85c1356d2972447faa3ec63680de22a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85c1356d2972447faa3ec63680de22a1.jpg", "file_size": 13356, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c1356d2972447faa3ec63680de22a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c1356d2972447faa3ec63680de22a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c1356d2972447faa3ec63680de22a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85c1356d2972447faa3ec63680de22a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85c1356d2972447faa3ec63680de22a1.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rU22NSiFsOwLY_XMpZiK2zNWnI=", "createTime": "2024-08-15 14:41:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.251113+00 2025-12-09 10:14:46.251119+00 4815 80062#上身粉色 SPMX-20240815299950 \N \N \N 1 \N [{"file_id": "3afcba1d-0778-4436-9dee-7394495a8b5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36fc65ffd08349e79c6add0d4e614195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36fc65ffd08349e79c6add0d4e614195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36fc65ffd08349e79c6add0d4e614195.jpg", "file_size": 25827, "is_delete": false, "file_type": 1, "original_file_name": "80062#上身粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36fc65ffd08349e79c6add0d4e614195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36fc65ffd08349e79c6add0d4e614195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36fc65ffd08349e79c6add0d4e614195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36fc65ffd08349e79c6add0d4e614195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36fc65ffd08349e79c6add0d4e614195.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOGcUEoa6W7rRaG-DGu-_C1_mrw=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.252561+00 2025-12-09 10:14:46.252567+00 4816 1048#彩兰色 SPMX-20240815299954 \N \N \N 1 \N [{"file_id": "2ba9dde1-9997-4cf9-b386-a80ab7d68310", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26839dbb74d9404b85fd847318ce8efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26839dbb74d9404b85fd847318ce8efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26839dbb74d9404b85fd847318ce8efb.jpg", "file_size": 18353, "is_delete": false, "file_type": 1, "original_file_name": "1048#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26839dbb74d9404b85fd847318ce8efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26839dbb74d9404b85fd847318ce8efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26839dbb74d9404b85fd847318ce8efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26839dbb74d9404b85fd847318ce8efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26839dbb74d9404b85fd847318ce8efb.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dW5Ss18FEOx12s1o5ZTQbEw8498=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.253949+00 2025-12-09 10:14:46.253955+00 4817 0002-13FWF#V5曲线 SPMX-20240815299949 \N \N \N 1 \N [{"file_id": "b6bd43af-d66d-4d92-86a3-696ce14ee845", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5514729e53c543c4b6bb61bac13aa7eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5514729e53c543c4b6bb61bac13aa7eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5514729e53c543c4b6bb61bac13aa7eb.jpg", "file_size": 14602, "is_delete": false, "file_type": 1, "original_file_name": "0002-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5514729e53c543c4b6bb61bac13aa7eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5514729e53c543c4b6bb61bac13aa7eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5514729e53c543c4b6bb61bac13aa7eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5514729e53c543c4b6bb61bac13aa7eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5514729e53c543c4b6bb61bac13aa7eb.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJohtuxjybN2Fbj3sQJ-TvZ5DB8=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.255153+00 2025-12-09 10:14:46.255157+00 4818 C23163#S SPMX-20240815299952 \N \N \N 1 \N [{"file_id": "0f4b3f21-a35c-48ea-a405-96d028ab161f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg", "file_size": 14400, "is_delete": false, "file_type": 1, "original_file_name": "C23163#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d411d3b2e7aa4bc5b6af97f8ace99bc7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBxxNhfuCemXGbpDNoLWPoJbyyE=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.261068+00 2025-12-09 10:14:46.261072+00 4823 HSH108FW#墨绿 SPMX-20240815299953 \N \N \N 1 \N [{"file_id": "0b69d12c-f90f-408f-8a47-e8372720c862", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38f6f1f671384fe6a4bf64a532d798ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38f6f1f671384fe6a4bf64a532d798ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38f6f1f671384fe6a4bf64a532d798ff.jpg", "file_size": 13333, "is_delete": false, "file_type": 1, "original_file_name": "HSH108FW#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f6f1f671384fe6a4bf64a532d798ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f6f1f671384fe6a4bf64a532d798ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f6f1f671384fe6a4bf64a532d798ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38f6f1f671384fe6a4bf64a532d798ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38f6f1f671384fe6a4bf64a532d798ff.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyBqy5-pn9-IRkUIR9NjTNqYIYA=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.256351+00 2025-12-09 10:14:46.256355+00 4819 LZ1206#上身1号色 SPMX-20240815299955 \N \N \N 1 \N [{"file_id": "a9d5975e-d0f5-4d92-a7c8-19a9baa1ac41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "993208ca54b34875abe0865cb934c1f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "993208ca54b34875abe0865cb934c1f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "993208ca54b34875abe0865cb934c1f7.jpg", "file_size": 17204, "is_delete": false, "file_type": 1, "original_file_name": "LZ1206#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993208ca54b34875abe0865cb934c1f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993208ca54b34875abe0865cb934c1f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/993208ca54b34875abe0865cb934c1f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/993208ca54b34875abe0865cb934c1f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/993208ca54b34875abe0865cb934c1f7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9agXgtxwzDEZGTNB0jV-Wt05Ug=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.257533+00 2025-12-09 10:14:46.257537+00 4820 JS0974-A4#2号色 SPMX-20240815299948 \N \N \N 1 \N [{"file_id": "102d3d90-0989-4615-a1bc-0c7d5194d7c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17cb21302b4742618a139ad236609875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17cb21302b4742618a139ad236609875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17cb21302b4742618a139ad236609875.jpg", "file_size": 9264, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A4#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17cb21302b4742618a139ad236609875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17cb21302b4742618a139ad236609875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17cb21302b4742618a139ad236609875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17cb21302b4742618a139ad236609875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17cb21302b4742618a139ad236609875.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VbjGR6wJX44K5CiOItO6BWcDM-E=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.258706+00 2025-12-09 10:14:46.25871+00 4821 FHXGPK-006-6 SPMX-20240815299947 \N \N \N 1 \N [{"file_id": "5d4e747e-b7cc-472f-945d-bfe64258464c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf8eb26fc5164259ba1ad9e366de647e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf8eb26fc5164259ba1ad9e366de647e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf8eb26fc5164259ba1ad9e366de647e.jpg", "file_size": 39115, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-006-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8eb26fc5164259ba1ad9e366de647e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8eb26fc5164259ba1ad9e366de647e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8eb26fc5164259ba1ad9e366de647e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf8eb26fc5164259ba1ad9e366de647e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf8eb26fc5164259ba1ad9e366de647e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ueqTUwWJab3y_VnxgeF7kDrAHgk=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.259877+00 2025-12-09 10:14:46.259881+00 4822 DH20220779FW#S短袖浅蓝 SPMX-20240815299951 \N \N \N 1 \N [{"file_id": "f8f67626-17a0-4758-97a6-8768333d2b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6633d54deb3143b0bf4803800a34b452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6633d54deb3143b0bf4803800a34b452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6633d54deb3143b0bf4803800a34b452.jpg", "file_size": 9302, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6633d54deb3143b0bf4803800a34b452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6633d54deb3143b0bf4803800a34b452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6633d54deb3143b0bf4803800a34b452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6633d54deb3143b0bf4803800a34b452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6633d54deb3143b0bf4803800a34b452.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2WymsFhSm_M2MfAMp0x1sWAE44=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.26224+00 2025-12-09 10:14:46.262244+00 4824 0002-14FWF#V5曲线 SPMX-20240815299960 \N \N \N 1 \N [{"file_id": "2def4275-fe0e-4fef-b8ab-4757233b31bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd3e5a03c5e74d18a0c4924a82792318.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd3e5a03c5e74d18a0c4924a82792318.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd3e5a03c5e74d18a0c4924a82792318.jpg", "file_size": 28904, "is_delete": false, "file_type": 1, "original_file_name": "0002-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3e5a03c5e74d18a0c4924a82792318.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3e5a03c5e74d18a0c4924a82792318.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3e5a03c5e74d18a0c4924a82792318.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd3e5a03c5e74d18a0c4924a82792318.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd3e5a03c5e74d18a0c4924a82792318.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYS7gnHiNS9lSlhdYX8hwOBwVTQ=", "createTime": "2024-08-15 14:41:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.26341+00 2025-12-09 10:14:46.263414+00 4825 C23163#XL SPMX-20240815299961 \N \N \N 1 \N [{"file_id": "745d2410-4f27-4e57-a4bd-0804800d2f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg", "file_size": 13707, "is_delete": false, "file_type": 1, "original_file_name": "C23163#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fd4dfb1462c46b8b0c5a4ca8e010e1e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiiGk_Tz0F2kqytPLZKrxaVvyZ4=", "createTime": "2024-08-15 14:41:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.264589+00 2025-12-09 10:14:46.264594+00 4826 JS0974-A4#4号色 SPMX-20240815299971 \N \N \N 1 \N [{"file_id": "2e5a0c1c-fdf4-4a31-ba70-d133317e9854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e1b4ae0ae2a43859b8b456ead6cde66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e1b4ae0ae2a43859b8b456ead6cde66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e1b4ae0ae2a43859b8b456ead6cde66.jpg", "file_size": 9830, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A4#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1b4ae0ae2a43859b8b456ead6cde66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1b4ae0ae2a43859b8b456ead6cde66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1b4ae0ae2a43859b8b456ead6cde66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e1b4ae0ae2a43859b8b456ead6cde66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e1b4ae0ae2a43859b8b456ead6cde66.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pc2rcemO1O7CeqgJZKA6mVTeDw4=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.265803+00 2025-12-09 10:14:46.265808+00 4827 23-2101#A2前后片4XL SPMX-20240815299969 \N \N \N 1 \N [{"file_id": "c4e018be-7cdb-4d5d-8f21-61c35649a736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "874d98d6261341e28fa7ec88c017d198.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "874d98d6261341e28fa7ec88c017d198.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "874d98d6261341e28fa7ec88c017d198.jpg", "file_size": 11286, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874d98d6261341e28fa7ec88c017d198.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874d98d6261341e28fa7ec88c017d198.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874d98d6261341e28fa7ec88c017d198.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/874d98d6261341e28fa7ec88c017d198.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/874d98d6261341e28fa7ec88c017d198.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSbp12pScSg-YbXy0Zb48mYHS-4=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.266971+00 2025-12-09 10:14:46.266975+00 4828 HSH108FW#枣红 SPMX-20240815299964 \N \N \N 1 \N [{"file_id": "bcf0e22a-50c7-4bd5-9224-5d878e48ae40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7abc2a1804143a2b5801380bfc5bcb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7abc2a1804143a2b5801380bfc5bcb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7abc2a1804143a2b5801380bfc5bcb9.jpg", "file_size": 13464, "is_delete": false, "file_type": 1, "original_file_name": "HSH108FW#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7abc2a1804143a2b5801380bfc5bcb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7abc2a1804143a2b5801380bfc5bcb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7abc2a1804143a2b5801380bfc5bcb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7abc2a1804143a2b5801380bfc5bcb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7abc2a1804143a2b5801380bfc5bcb9.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bP4oNcUErp9CcY5xkfTvw9ZvOMk=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.268146+00 2025-12-09 10:14:46.26815+00 4829 FHXGPK-007-1 SPMX-20240815299968 \N \N \N 1 \N [{"file_id": "a0dc95de-4287-4c6c-ab7a-560e8c220b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c0fc2d735946c9a84b92d2cdf6dca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c0fc2d735946c9a84b92d2cdf6dca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c0fc2d735946c9a84b92d2cdf6dca0.jpg", "file_size": 36963, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-007-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c0fc2d735946c9a84b92d2cdf6dca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c0fc2d735946c9a84b92d2cdf6dca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c0fc2d735946c9a84b92d2cdf6dca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c0fc2d735946c9a84b92d2cdf6dca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c0fc2d735946c9a84b92d2cdf6dca0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNwjHvJq8FeFqCQSp_0LHb5DaUo=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.269328+00 2025-12-09 10:14:46.269332+00 4830 1048#粉色 SPMX-20240815299963 \N \N \N 1 \N [{"file_id": "ead378ae-97b3-421c-b20d-67b1daeb67f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07029a4614ce423a9f16824c3ed2324d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07029a4614ce423a9f16824c3ed2324d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07029a4614ce423a9f16824c3ed2324d.jpg", "file_size": 17881, "is_delete": false, "file_type": 1, "original_file_name": "1048#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07029a4614ce423a9f16824c3ed2324d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07029a4614ce423a9f16824c3ed2324d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07029a4614ce423a9f16824c3ed2324d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07029a4614ce423a9f16824c3ed2324d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07029a4614ce423a9f16824c3ed2324d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EW1wVCeyTn4Q24Ble9VHsPdDiHo=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.270525+00 2025-12-09 10:14:46.270529+00 4831 DH20220779FW#S短袖灰 SPMX-20240815299965 \N \N \N 1 \N [{"file_id": "a62963f6-a320-4ed9-b4e0-82aebc30a622", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41c91eaadbd1498096d4832e431ed727.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41c91eaadbd1498096d4832e431ed727.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41c91eaadbd1498096d4832e431ed727.jpg", "file_size": 9011, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c91eaadbd1498096d4832e431ed727.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c91eaadbd1498096d4832e431ed727.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c91eaadbd1498096d4832e431ed727.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41c91eaadbd1498096d4832e431ed727.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41c91eaadbd1498096d4832e431ed727.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMH-ZgZBqpFEF7rblM8evh_OZpE=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.271695+00 2025-12-09 10:14:46.271699+00 4832 LHJ9217#25#土黄 SPMX-20240815299970 \N \N \N 1 \N [{"file_id": "8e42f11f-9cee-4ab3-9761-9f3d4a907402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d220f6a7f2e149709c68b979e2dda31b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d220f6a7f2e149709c68b979e2dda31b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d220f6a7f2e149709c68b979e2dda31b.jpg", "file_size": 14763, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d220f6a7f2e149709c68b979e2dda31b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d220f6a7f2e149709c68b979e2dda31b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d220f6a7f2e149709c68b979e2dda31b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d220f6a7f2e149709c68b979e2dda31b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d220f6a7f2e149709c68b979e2dda31b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJKS692ZQP8gVRk6Ji0ldZagurg=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.272901+00 2025-12-09 10:14:46.272905+00 4833 80062#上身藏青 SPMX-20240815299962 \N \N \N 1 \N [{"file_id": "06189995-87bb-4293-82d0-759cfa4b29ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0009a4d89dc44fc82ab891d36084a99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0009a4d89dc44fc82ab891d36084a99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0009a4d89dc44fc82ab891d36084a99.jpg", "file_size": 25792, "is_delete": false, "file_type": 1, "original_file_name": "80062#上身藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0009a4d89dc44fc82ab891d36084a99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0009a4d89dc44fc82ab891d36084a99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0009a4d89dc44fc82ab891d36084a99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0009a4d89dc44fc82ab891d36084a99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0009a4d89dc44fc82ab891d36084a99.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QT9sMRnYEurMzsrNtN_-i9yhis=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.27408+00 2025-12-09 10:14:46.274084+00 4834 LZ1206#上身2号色 SPMX-20240815299966 \N \N \N 1 \N [{"file_id": "55d0329f-8fc7-4b44-9fa6-89a7fbe6728b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1470646834d34af78eb2b4ccaec4a652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1470646834d34af78eb2b4ccaec4a652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1470646834d34af78eb2b4ccaec4a652.jpg", "file_size": 18880, "is_delete": false, "file_type": 1, "original_file_name": "LZ1206#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1470646834d34af78eb2b4ccaec4a652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1470646834d34af78eb2b4ccaec4a652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1470646834d34af78eb2b4ccaec4a652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1470646834d34af78eb2b4ccaec4a652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1470646834d34af78eb2b4ccaec4a652.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsIRNLwh8l4RahnPrUP1G5gFcSY=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.275264+00 2025-12-09 10:14:46.275268+00 4835 0002-16FWF#V5曲线 SPMX-20240815299967 \N \N \N 1 \N [{"file_id": "d0390fa5-9110-47d4-a07d-fc57cf3673cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdcfb2d47f8f45f1aa26375b9b9511de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdcfb2d47f8f45f1aa26375b9b9511de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdcfb2d47f8f45f1aa26375b9b9511de.jpg", "file_size": 18410, "is_delete": false, "file_type": 1, "original_file_name": "0002-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcfb2d47f8f45f1aa26375b9b9511de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcfb2d47f8f45f1aa26375b9b9511de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcfb2d47f8f45f1aa26375b9b9511de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdcfb2d47f8f45f1aa26375b9b9511de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdcfb2d47f8f45f1aa26375b9b9511de.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_hCC90BsexyHVWI_1HLB4Gopdc=", "createTime": "2024-08-15 14:41:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.276423+00 2025-12-09 10:14:46.276427+00 4836 FHXGPK-007-2 SPMX-20240815299976 \N \N \N 1 \N [{"file_id": "1da91e67-0bd6-49ad-a0a9-a44d4ab05757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a31c76d39e5143e2aaa5d62649133791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a31c76d39e5143e2aaa5d62649133791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a31c76d39e5143e2aaa5d62649133791.jpg", "file_size": 36949, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-007-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c76d39e5143e2aaa5d62649133791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c76d39e5143e2aaa5d62649133791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c76d39e5143e2aaa5d62649133791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a31c76d39e5143e2aaa5d62649133791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a31c76d39e5143e2aaa5d62649133791.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMoGyUVHiyCeDXMLi7GqNjQ2GCE=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.277619+00 2025-12-09 10:14:46.277623+00 4837 LZ1206#上身3号色 SPMX-20240815299980 \N \N \N 1 \N [{"file_id": "0011f6d0-6d3f-45fa-9323-55805ecf0fc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0deb366a36804cc496d12c8ee1feb0ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0deb366a36804cc496d12c8ee1feb0ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0deb366a36804cc496d12c8ee1feb0ff.jpg", "file_size": 17553, "is_delete": false, "file_type": 1, "original_file_name": "LZ1206#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deb366a36804cc496d12c8ee1feb0ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deb366a36804cc496d12c8ee1feb0ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deb366a36804cc496d12c8ee1feb0ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0deb366a36804cc496d12c8ee1feb0ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0deb366a36804cc496d12c8ee1feb0ff.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpSNGJcbVo02WMxz7ALi3jKNmFs=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.278794+00 2025-12-09 10:14:46.278798+00 4838 80062#下摆墨绿 SPMX-20240815299974 \N \N \N 1 \N [{"file_id": "6ccc4c7e-87fd-4ec3-ab26-d008409804de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5a7d17b3e9c43eda5b5d065eee5f15e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5a7d17b3e9c43eda5b5d065eee5f15e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5a7d17b3e9c43eda5b5d065eee5f15e.jpg", "file_size": 20042, "is_delete": false, "file_type": 1, "original_file_name": "80062#下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a7d17b3e9c43eda5b5d065eee5f15e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a7d17b3e9c43eda5b5d065eee5f15e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a7d17b3e9c43eda5b5d065eee5f15e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5a7d17b3e9c43eda5b5d065eee5f15e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5a7d17b3e9c43eda5b5d065eee5f15e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sONnNqKjh2MKH3suoYLmsm6FuhE=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.280045+00 2025-12-09 10:14:46.28005+00 4839 0002-17FWF#V5曲线 SPMX-20240815299978 \N \N \N 1 \N [{"file_id": "16631d7b-29da-4988-aa19-12612672dc80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82ca1443ef8d46029c30133b561dab91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82ca1443ef8d46029c30133b561dab91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82ca1443ef8d46029c30133b561dab91.jpg", "file_size": 14129, "is_delete": false, "file_type": 1, "original_file_name": "0002-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ca1443ef8d46029c30133b561dab91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ca1443ef8d46029c30133b561dab91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ca1443ef8d46029c30133b561dab91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82ca1443ef8d46029c30133b561dab91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82ca1443ef8d46029c30133b561dab91.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EERYwNn5uMzN0547HN0W7tHJHV8=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.28125+00 2025-12-09 10:14:46.281254+00 4840 DH20220779FW#S短袖白 SPMX-20240815299975 \N \N \N 1 \N [{"file_id": "d5ca81c3-b0ae-4a9f-ac70-84d2f5cdaf08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "691327f3e6ca4050b755c072b91124f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "691327f3e6ca4050b755c072b91124f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "691327f3e6ca4050b755c072b91124f5.jpg", "file_size": 9042, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691327f3e6ca4050b755c072b91124f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691327f3e6ca4050b755c072b91124f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691327f3e6ca4050b755c072b91124f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/691327f3e6ca4050b755c072b91124f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/691327f3e6ca4050b755c072b91124f5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abAHn1fYPPlFOGxabdSUZZnUOE0=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.28245+00 2025-12-09 10:14:46.282455+00 4841 HSH108FW#白 SPMX-20240815299973 \N \N \N 1 \N [{"file_id": "ecac24d7-3505-4db0-8fca-9c324594e760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e09ebd07ff643bc8a147d1f09dde67d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e09ebd07ff643bc8a147d1f09dde67d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e09ebd07ff643bc8a147d1f09dde67d.jpg", "file_size": 13819, "is_delete": false, "file_type": 1, "original_file_name": "HSH108FW#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e09ebd07ff643bc8a147d1f09dde67d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e09ebd07ff643bc8a147d1f09dde67d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e09ebd07ff643bc8a147d1f09dde67d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e09ebd07ff643bc8a147d1f09dde67d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e09ebd07ff643bc8a147d1f09dde67d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sAMko0vQVPNUVlOprI0BQmlBSPE=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.283631+00 2025-12-09 10:14:46.283635+00 4842 23-2101#A2袖子3XL SPMX-20240815299979 \N \N \N 1 \N [{"file_id": "874da39a-7441-4991-bfd8-8f09f32ec09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e61f280bb35e494c898ca3d96642e198.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e61f280bb35e494c898ca3d96642e198.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e61f280bb35e494c898ca3d96642e198.jpg", "file_size": 11243, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A2袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61f280bb35e494c898ca3d96642e198.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61f280bb35e494c898ca3d96642e198.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61f280bb35e494c898ca3d96642e198.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e61f280bb35e494c898ca3d96642e198.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e61f280bb35e494c898ca3d96642e198.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hYmLq6YxX3R4_vmDjRNGkuLyDo=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.284839+00 2025-12-09 10:14:46.284844+00 4843 LHJ9217#32#墨绿 SPMX-20240815299977 \N \N \N 1 \N [{"file_id": "cbeeceef-ce66-4e2a-b8b6-dacff249dc22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5047f8a820be488cb80d92776cd2118e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5047f8a820be488cb80d92776cd2118e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5047f8a820be488cb80d92776cd2118e.jpg", "file_size": 14495, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5047f8a820be488cb80d92776cd2118e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5047f8a820be488cb80d92776cd2118e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5047f8a820be488cb80d92776cd2118e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5047f8a820be488cb80d92776cd2118e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5047f8a820be488cb80d92776cd2118e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mr1Uj3jtrBDP1l6WotT11WQY3VM=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.286009+00 2025-12-09 10:14:46.286013+00 4844 C23170#净色 SPMX-20240815299972 \N \N \N 1 \N [{"file_id": "a55cdfcc-04ee-40b2-847a-8c525625f274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a06f45aee72145b5aeacac114a1495c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a06f45aee72145b5aeacac114a1495c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a06f45aee72145b5aeacac114a1495c1.jpg", "file_size": 6886, "is_delete": false, "file_type": 1, "original_file_name": "C23170#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f45aee72145b5aeacac114a1495c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f45aee72145b5aeacac114a1495c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f45aee72145b5aeacac114a1495c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a06f45aee72145b5aeacac114a1495c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a06f45aee72145b5aeacac114a1495c1.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-Jy2Qzk_gdFXvXDfcGJ8xyH0Lk=", "createTime": "2024-08-15 14:41:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.287208+00 2025-12-09 10:14:46.287211+00 4845 LHJ9217#37#梅红 SPMX-20240815299987 \N \N \N 1 \N [{"file_id": "149203bf-068f-42fd-9baa-69bbda117fda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51cc242c18f7432381efdfdb59382084.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51cc242c18f7432381efdfdb59382084.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51cc242c18f7432381efdfdb59382084.jpg", "file_size": 9970, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51cc242c18f7432381efdfdb59382084.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51cc242c18f7432381efdfdb59382084.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51cc242c18f7432381efdfdb59382084.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51cc242c18f7432381efdfdb59382084.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51cc242c18f7432381efdfdb59382084.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQlLFEHXFZxEnRehedjWg2HJo6Y=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.28836+00 2025-12-09 10:14:46.288364+00 4846 JS0974-A4#RC23 SPMX-20240815299982 \N \N \N 1 \N [{"file_id": "32d57059-3eee-40b0-b5ac-65394c4a8d10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc4a0f96628c46d490c024212fbd3fb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc4a0f96628c46d490c024212fbd3fb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc4a0f96628c46d490c024212fbd3fb3.jpg", "file_size": 17529, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A4#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4a0f96628c46d490c024212fbd3fb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4a0f96628c46d490c024212fbd3fb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4a0f96628c46d490c024212fbd3fb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc4a0f96628c46d490c024212fbd3fb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc4a0f96628c46d490c024212fbd3fb3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqpoldLpIimEFilQkLiZucDPKTY=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.289539+00 2025-12-09 10:14:46.289543+00 4847 80062#下摆彩蓝 SPMX-20240815299984 \N \N \N 1 \N [{"file_id": "038f7af1-d08a-447e-bd83-a160e6ec8ad6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4855b872ef14fcaa1da614a74e1fc55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4855b872ef14fcaa1da614a74e1fc55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4855b872ef14fcaa1da614a74e1fc55.jpg", "file_size": 19440, "is_delete": false, "file_type": 1, "original_file_name": "80062#下摆彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4855b872ef14fcaa1da614a74e1fc55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4855b872ef14fcaa1da614a74e1fc55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4855b872ef14fcaa1da614a74e1fc55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4855b872ef14fcaa1da614a74e1fc55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4855b872ef14fcaa1da614a74e1fc55.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OINUVqVkk8Vswx1sSnKqLDb7wx0=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.290707+00 2025-12-09 10:14:46.290711+00 4848 FHXGPK-007-3 SPMX-20240815299989 \N \N \N 1 \N [{"file_id": "a2e6f8b9-5b90-4fb5-814a-cf26f38b713a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ae4d901b48a49d7b062979d3e5c149e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ae4d901b48a49d7b062979d3e5c149e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ae4d901b48a49d7b062979d3e5c149e.jpg", "file_size": 30354, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-007-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae4d901b48a49d7b062979d3e5c149e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae4d901b48a49d7b062979d3e5c149e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae4d901b48a49d7b062979d3e5c149e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ae4d901b48a49d7b062979d3e5c149e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ae4d901b48a49d7b062979d3e5c149e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxeocIEvMZMEAOIt7C-2mShX1hk=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.291884+00 2025-12-09 10:14:46.291888+00 4849 1048#黑色 SPMX-20240815299981 \N \N \N 1 \N [{"file_id": "72a996c9-6ddb-4ef0-be85-3bd96ae7c00f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1522ce3541514765934fb6858fc6bb2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1522ce3541514765934fb6858fc6bb2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1522ce3541514765934fb6858fc6bb2e.jpg", "file_size": 19911, "is_delete": false, "file_type": 1, "original_file_name": "1048#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1522ce3541514765934fb6858fc6bb2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1522ce3541514765934fb6858fc6bb2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1522ce3541514765934fb6858fc6bb2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1522ce3541514765934fb6858fc6bb2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1522ce3541514765934fb6858fc6bb2e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3f66KEqVEcFyNlL5qs4iMTytrM=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.293056+00 2025-12-09 10:14:46.29306+00 4850 DH20220779FW#S短袖粉 SPMX-20240815299986 \N \N \N 1 \N [{"file_id": "99e80f37-4557-4a0d-b965-64f21cff7c25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33660f94d31f4e759f46a3a9ed5535e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33660f94d31f4e759f46a3a9ed5535e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33660f94d31f4e759f46a3a9ed5535e5.jpg", "file_size": 8748, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33660f94d31f4e759f46a3a9ed5535e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33660f94d31f4e759f46a3a9ed5535e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33660f94d31f4e759f46a3a9ed5535e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33660f94d31f4e759f46a3a9ed5535e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33660f94d31f4e759f46a3a9ed5535e5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wiOi0PuSp9Pm90TwrGFifn-yw00=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.294237+00 2025-12-09 10:14:46.294241+00 4851 1048FWF#-1 SPMX-20240815299992 \N \N \N 1 \N [{"file_id": "d389548f-4948-4550-99b8-e1938d98c1ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e61086485a44e6ca2b42cc41c184f61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e61086485a44e6ca2b42cc41c184f61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e61086485a44e6ca2b42cc41c184f61.jpg", "file_size": 16866, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e61086485a44e6ca2b42cc41c184f61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e61086485a44e6ca2b42cc41c184f61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e61086485a44e6ca2b42cc41c184f61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e61086485a44e6ca2b42cc41c184f61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e61086485a44e6ca2b42cc41c184f61.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8iQyLrmt5nl4oWXdcQaiRBBmn4=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.295385+00 2025-12-09 10:14:46.295389+00 4852 23-2101#A2袖子4XL SPMX-20240815299990 \N \N \N 1 \N [{"file_id": "5c3a400d-e38c-47e8-a49f-97e825341043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4664eb1bf2d94e908b44038324f0fe25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4664eb1bf2d94e908b44038324f0fe25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4664eb1bf2d94e908b44038324f0fe25.jpg", "file_size": 10531, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A2袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4664eb1bf2d94e908b44038324f0fe25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4664eb1bf2d94e908b44038324f0fe25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4664eb1bf2d94e908b44038324f0fe25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4664eb1bf2d94e908b44038324f0fe25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4664eb1bf2d94e908b44038324f0fe25.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QH2-dLP0Eh9Ek1_faDOFnepi5YU=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.296554+00 2025-12-09 10:14:46.296559+00 4853 C23170#均码 SPMX-20240815299985 \N \N \N 1 \N [{"file_id": "d84ca759-788d-43ea-8134-a3bdbea282a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42fc5053da7648e08a7e14866732f2b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42fc5053da7648e08a7e14866732f2b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42fc5053da7648e08a7e14866732f2b8.jpg", "file_size": 13650, "is_delete": false, "file_type": 1, "original_file_name": "C23170#均码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42fc5053da7648e08a7e14866732f2b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42fc5053da7648e08a7e14866732f2b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42fc5053da7648e08a7e14866732f2b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42fc5053da7648e08a7e14866732f2b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42fc5053da7648e08a7e14866732f2b8.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qb3QKirMyKX_ilJ6DdU7g5rx62c=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.297744+00 2025-12-09 10:14:46.297747+00 4854 0002-17FWF#WJC22 SPMX-20240815299988 \N \N \N 1 \N [{"file_id": "06f37f9b-069d-4995-8773-33c3e0c04c35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee49af930ba941be85f9d1ed6fc53d10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee49af930ba941be85f9d1ed6fc53d10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee49af930ba941be85f9d1ed6fc53d10.jpg", "file_size": 16174, "is_delete": false, "file_type": 1, "original_file_name": "0002-17FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee49af930ba941be85f9d1ed6fc53d10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee49af930ba941be85f9d1ed6fc53d10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee49af930ba941be85f9d1ed6fc53d10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee49af930ba941be85f9d1ed6fc53d10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee49af930ba941be85f9d1ed6fc53d10.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_2vGCmV5YUm5BA0PAD_NDRn07Q=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.298926+00 2025-12-09 10:14:46.29893+00 4855 HSH108FW#黑 SPMX-20240815299983 \N \N \N 1 \N [{"file_id": "f388d242-f371-4201-a4d8-88a44baeea28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a39d8b40ba94da4a92bf154ae0c5ab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a39d8b40ba94da4a92bf154ae0c5ab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a39d8b40ba94da4a92bf154ae0c5ab0.jpg", "file_size": 13617, "is_delete": false, "file_type": 1, "original_file_name": "HSH108FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a39d8b40ba94da4a92bf154ae0c5ab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a39d8b40ba94da4a92bf154ae0c5ab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a39d8b40ba94da4a92bf154ae0c5ab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a39d8b40ba94da4a92bf154ae0c5ab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a39d8b40ba94da4a92bf154ae0c5ab0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDNq0EUQiMJqNtcjohUn_H1MdM4=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.300095+00 2025-12-09 10:14:46.300099+00 4856 LZ1206#上身4号色 SPMX-20240815299991 \N \N \N 1 \N [{"file_id": "35d56a48-87c3-4d20-938a-816cf2ceb61d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40d014767aca42399c5cb296608e6286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40d014767aca42399c5cb296608e6286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40d014767aca42399c5cb296608e6286.jpg", "file_size": 18166, "is_delete": false, "file_type": 1, "original_file_name": "LZ1206#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d014767aca42399c5cb296608e6286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d014767aca42399c5cb296608e6286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d014767aca42399c5cb296608e6286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40d014767aca42399c5cb296608e6286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40d014767aca42399c5cb296608e6286.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZYkuL5PvAorJUtLzMBhbNM97tw4=", "createTime": "2024-08-15 14:41:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.301278+00 2025-12-09 10:14:46.301282+00 4857 DH20220779FW#S短袖绿 SPMX-20240815299997 \N \N \N 1 \N [{"file_id": "3405bb45-7565-4b1b-8718-149b79597652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "610a8b9d79a0404b85488591e08f3361.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "610a8b9d79a0404b85488591e08f3361.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "610a8b9d79a0404b85488591e08f3361.jpg", "file_size": 9085, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610a8b9d79a0404b85488591e08f3361.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610a8b9d79a0404b85488591e08f3361.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610a8b9d79a0404b85488591e08f3361.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/610a8b9d79a0404b85488591e08f3361.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/610a8b9d79a0404b85488591e08f3361.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0ZCO8Xno63sGW6wpQ-0_DmW7Ys=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.302448+00 2025-12-09 10:14:46.302452+00 4858 FHXGPK-007-4 SPMX-20240815300000 \N \N \N 1 \N [{"file_id": "6c75ca38-e3a3-4915-9830-a6755bbffe88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b54b8c9eb36f4929a09276b1ea82a599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b54b8c9eb36f4929a09276b1ea82a599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b54b8c9eb36f4929a09276b1ea82a599.jpg", "file_size": 34457, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-007-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b54b8c9eb36f4929a09276b1ea82a599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b54b8c9eb36f4929a09276b1ea82a599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b54b8c9eb36f4929a09276b1ea82a599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b54b8c9eb36f4929a09276b1ea82a599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b54b8c9eb36f4929a09276b1ea82a599.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuRKHGNGp4-zh-2o5g_6m6XuxXg=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.303614+00 2025-12-09 10:14:46.303618+00 4859 LZ1206#上身5号色 SPMX-20240815299999 \N \N \N 1 \N [{"file_id": "7943a220-96bd-48a9-9716-ee1153d30c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1de4510aceb4430f8b545e378ae6013e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1de4510aceb4430f8b545e378ae6013e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1de4510aceb4430f8b545e378ae6013e.jpg", "file_size": 18560, "is_delete": false, "file_type": 1, "original_file_name": "LZ1206#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de4510aceb4430f8b545e378ae6013e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de4510aceb4430f8b545e378ae6013e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de4510aceb4430f8b545e378ae6013e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1de4510aceb4430f8b545e378ae6013e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1de4510aceb4430f8b545e378ae6013e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJrYAivpNqUUk2Btn-6lHzREDjg=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.304792+00 2025-12-09 10:14:46.304796+00 4860 23-2101#A2领子通用 SPMX-20240815300002 \N \N \N 1 \N [{"file_id": "006e6d6c-a612-4c41-abaa-48dce42b297e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "001a5652cd1c4f96b5686e4ea69f24b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "001a5652cd1c4f96b5686e4ea69f24b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "001a5652cd1c4f96b5686e4ea69f24b7.jpg", "file_size": 10346, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/001a5652cd1c4f96b5686e4ea69f24b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/001a5652cd1c4f96b5686e4ea69f24b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/001a5652cd1c4f96b5686e4ea69f24b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/001a5652cd1c4f96b5686e4ea69f24b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/001a5652cd1c4f96b5686e4ea69f24b7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irFcxzfk_esoDaUucWxIOXS5YlU=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.305976+00 2025-12-09 10:14:46.30598+00 4861 LHJ9217#37#玫红 SPMX-20240815300001 \N \N \N 1 \N [{"file_id": "b745501c-4d82-49ef-a8e8-e99a6af02cac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg", "file_size": 9445, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77fbc2a07c7e4cd48ad32e8d7dde8bff.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMin3_Y25Jg9H5lvMZOM2VFVdZg=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.307154+00 2025-12-09 10:14:46.307158+00 4862 HSH109FW#VS-D3黄红啡 SPMX-20240815299993 \N \N \N 1 \N [{"file_id": "315f178a-0624-4ac2-930d-1977afdaad7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d0bbf7abf80466d9b0bf3706e59ac43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d0bbf7abf80466d9b0bf3706e59ac43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d0bbf7abf80466d9b0bf3706e59ac43.jpg", "file_size": 8163, "is_delete": false, "file_type": 1, "original_file_name": "HSH109FW#VS-D3黄红啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0bbf7abf80466d9b0bf3706e59ac43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0bbf7abf80466d9b0bf3706e59ac43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d0bbf7abf80466d9b0bf3706e59ac43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d0bbf7abf80466d9b0bf3706e59ac43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d0bbf7abf80466d9b0bf3706e59ac43.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDx5xEYCOBPeU0EwcHFhQvM6x0w=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.308343+00 2025-12-09 10:14:46.308347+00 4863 80062#下摆枣红 SPMX-20240815299995 \N \N \N 1 \N [{"file_id": "89ff9499-4835-4e5e-87e7-eb0b9b591692", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3663ddaed8e4437ae5a4014a0083292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3663ddaed8e4437ae5a4014a0083292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3663ddaed8e4437ae5a4014a0083292.jpg", "file_size": 19120, "is_delete": false, "file_type": 1, "original_file_name": "80062#下摆枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3663ddaed8e4437ae5a4014a0083292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3663ddaed8e4437ae5a4014a0083292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3663ddaed8e4437ae5a4014a0083292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3663ddaed8e4437ae5a4014a0083292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3663ddaed8e4437ae5a4014a0083292.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zPGtzIATawXimTooiD7Zc0-DhI=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.309489+00 2025-12-09 10:14:46.309493+00 4864 JS0974-A5#LWQ15 SPMX-20240815299994 \N \N \N 1 \N [{"file_id": "99a5e3eb-7347-43f9-9829-15fc2bc228c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd2b42559a724e75ae7d6fec350bc74e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd2b42559a724e75ae7d6fec350bc74e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd2b42559a724e75ae7d6fec350bc74e.jpg", "file_size": 18744, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A5#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2b42559a724e75ae7d6fec350bc74e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2b42559a724e75ae7d6fec350bc74e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2b42559a724e75ae7d6fec350bc74e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd2b42559a724e75ae7d6fec350bc74e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd2b42559a724e75ae7d6fec350bc74e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FxPogsNLSBlbjw6e0bGXUNkSrV8=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.310642+00 2025-12-09 10:14:46.310646+00 4865 0002-18FWF#卡其 SPMX-20240815299998 \N \N \N 1 \N [{"file_id": "ab1df2f1-0c46-4233-a38c-eb68fc65fa92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f23e512597e04630afc80998bc8184fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f23e512597e04630afc80998bc8184fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f23e512597e04630afc80998bc8184fe.jpg", "file_size": 17412, "is_delete": false, "file_type": 1, "original_file_name": "0002-18FWF#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23e512597e04630afc80998bc8184fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23e512597e04630afc80998bc8184fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23e512597e04630afc80998bc8184fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f23e512597e04630afc80998bc8184fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f23e512597e04630afc80998bc8184fe.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swn_37HdrM5hyyreQHaiTkZdI3c=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.31182+00 2025-12-09 10:14:46.311824+00 4866 HSH110FW#VS-D3紫黄橙 SPMX-20240815300004 \N \N \N 1 \N [{"file_id": "d49518e8-0cd9-4e94-87d6-d656681ab2f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e62adc6065914a38a58f6973226f1bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e62adc6065914a38a58f6973226f1bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e62adc6065914a38a58f6973226f1bc6.jpg", "file_size": 7836, "is_delete": false, "file_type": 1, "original_file_name": "HSH110FW#VS-D3紫黄橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62adc6065914a38a58f6973226f1bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62adc6065914a38a58f6973226f1bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62adc6065914a38a58f6973226f1bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e62adc6065914a38a58f6973226f1bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e62adc6065914a38a58f6973226f1bc6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5uMmFWT2OjFAl1xbjCnyGu9XZo=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.31306+00 2025-12-09 10:14:46.313064+00 4867 C233#221#绿色白点 SPMX-20240815299996 \N \N \N 1 \N [{"file_id": "625633ff-c81f-4e00-8885-51e37b408f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f26346b64454192a4d54f0348bab6b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f26346b64454192a4d54f0348bab6b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f26346b64454192a4d54f0348bab6b7.jpg", "file_size": 10668, "is_delete": false, "file_type": 1, "original_file_name": "C233#221#绿色白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f26346b64454192a4d54f0348bab6b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f26346b64454192a4d54f0348bab6b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f26346b64454192a4d54f0348bab6b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f26346b64454192a4d54f0348bab6b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f26346b64454192a4d54f0348bab6b7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gP8BaSHfKlb4GVpAfy9HALbnRQQ=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.314363+00 2025-12-09 10:14:46.314367+00 4868 1048FWF#-1匹布 SPMX-20240815300003 \N \N \N 1 \N [{"file_id": "b4e9d7fc-71c6-4b76-90bd-150c4eca05da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c17c3b9119141cbb28a5f811a71947f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c17c3b9119141cbb28a5f811a71947f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c17c3b9119141cbb28a5f811a71947f.jpg", "file_size": 10697, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-1匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c17c3b9119141cbb28a5f811a71947f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c17c3b9119141cbb28a5f811a71947f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c17c3b9119141cbb28a5f811a71947f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c17c3b9119141cbb28a5f811a71947f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c17c3b9119141cbb28a5f811a71947f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8dU7RemnQFKYFANexxhJh4gDFY=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.315597+00 2025-12-09 10:14:46.315601+00 4869 23-2101#A30前后片3XL SPMX-20240815300012 \N \N \N 1 \N [{"file_id": "7ae6e021-00b0-47f8-8eed-7bd694d7448a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b1eec4cda0469687f149cc5813b77d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b1eec4cda0469687f149cc5813b77d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b1eec4cda0469687f149cc5813b77d.jpg", "file_size": 8983, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b1eec4cda0469687f149cc5813b77d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b1eec4cda0469687f149cc5813b77d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b1eec4cda0469687f149cc5813b77d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b1eec4cda0469687f149cc5813b77d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b1eec4cda0469687f149cc5813b77d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZgGIsDS5FaGDMbP08aBDzCyGMI=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.316827+00 2025-12-09 10:14:46.316831+00 4870 DH20220779FW#S短袖蓝 SPMX-20240815300006 \N \N \N 1 \N [{"file_id": "8325f655-63c2-44b3-b032-1b02d8f577ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg", "file_size": 8895, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#S短袖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f6f3c0c5b7f43fc85e4ea375a2e0c2a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:923Nme5T1xs5JyEKfQqzb9EVM7Q=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.318044+00 2025-12-09 10:14:46.318049+00 4871 JS0974-A5#RC23 SPMX-20240815300007 \N \N \N 1 \N [{"file_id": "248d62b1-ccb6-410a-9df3-73ce5e4e6e38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc2446e457bd4f84859d2111c0435083.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc2446e457bd4f84859d2111c0435083.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc2446e457bd4f84859d2111c0435083.jpg", "file_size": 19783, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc2446e457bd4f84859d2111c0435083.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc2446e457bd4f84859d2111c0435083.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc2446e457bd4f84859d2111c0435083.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc2446e457bd4f84859d2111c0435083.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc2446e457bd4f84859d2111c0435083.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDZUag94rlW-PqMiNee6ZV0LSWE=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.319252+00 2025-12-09 10:14:46.319256+00 4872 FHXGPK-007-5 SPMX-20240815300011 \N \N \N 1 \N [{"file_id": "f1df0cb5-34fd-42d2-9cf0-bbe76278190e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "642a2308f7b44a06adb84adf39dce564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "642a2308f7b44a06adb84adf39dce564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "642a2308f7b44a06adb84adf39dce564.jpg", "file_size": 33110, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-007-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642a2308f7b44a06adb84adf39dce564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642a2308f7b44a06adb84adf39dce564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642a2308f7b44a06adb84adf39dce564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/642a2308f7b44a06adb84adf39dce564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/642a2308f7b44a06adb84adf39dce564.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ruwm6qLAA7cB6clepBfumaJH68=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.320431+00 2025-12-09 10:14:46.320436+00 4873 LZ1207#上身1号色 SPMX-20240815300010 \N \N \N 1 \N [{"file_id": "d05c5bb1-03df-4c34-a6ad-ead65d45aa2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f752418a6f247838365e53796f69446.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f752418a6f247838365e53796f69446.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f752418a6f247838365e53796f69446.jpg", "file_size": 18984, "is_delete": false, "file_type": 1, "original_file_name": "LZ1207#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f752418a6f247838365e53796f69446.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f752418a6f247838365e53796f69446.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f752418a6f247838365e53796f69446.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f752418a6f247838365e53796f69446.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f752418a6f247838365e53796f69446.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAUM6YfjWe3S05lnYRRhq0iZ34w=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.321638+00 2025-12-09 10:14:46.321642+00 4874 C233#白底黑点 SPMX-20240815300005 \N \N \N 1 \N [{"file_id": "e799103f-7499-4e00-82d8-39d6e5908552", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8031617ca7f046a69c17c7e03984c35b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8031617ca7f046a69c17c7e03984c35b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8031617ca7f046a69c17c7e03984c35b.jpg", "file_size": 8782, "is_delete": false, "file_type": 1, "original_file_name": "C233#白底黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8031617ca7f046a69c17c7e03984c35b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8031617ca7f046a69c17c7e03984c35b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8031617ca7f046a69c17c7e03984c35b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8031617ca7f046a69c17c7e03984c35b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8031617ca7f046a69c17c7e03984c35b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blreL3Yzyy3N8cC5pf4LNkhsZ1w=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.322848+00 2025-12-09 10:14:46.322852+00 4875 C233#黑底白点 SPMX-20240815300015 \N \N \N 1 \N [{"file_id": "ead23a41-c077-4981-ad48-1b78a59b81b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "025bec3eb47d47dd8e4c90228d01709d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "025bec3eb47d47dd8e4c90228d01709d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "025bec3eb47d47dd8e4c90228d01709d.jpg", "file_size": 10160, "is_delete": false, "file_type": 1, "original_file_name": "C233#黑底白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bec3eb47d47dd8e4c90228d01709d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bec3eb47d47dd8e4c90228d01709d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025bec3eb47d47dd8e4c90228d01709d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/025bec3eb47d47dd8e4c90228d01709d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/025bec3eb47d47dd8e4c90228d01709d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aupRNpTQ_ShRpCaFqGSC2PZhrVc=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.324048+00 2025-12-09 10:14:46.324052+00 4876 0002-18FWF#蓝色 SPMX-20240815300009 \N \N \N 1 \N [{"file_id": "6f6bcc54-aff7-492f-8648-01948aa3b38f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "750cadb4b8fc4406b9b7a321dcfdd3d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "750cadb4b8fc4406b9b7a321dcfdd3d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "750cadb4b8fc4406b9b7a321dcfdd3d4.jpg", "file_size": 18314, "is_delete": false, "file_type": 1, "original_file_name": "0002-18FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cadb4b8fc4406b9b7a321dcfdd3d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cadb4b8fc4406b9b7a321dcfdd3d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cadb4b8fc4406b9b7a321dcfdd3d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/750cadb4b8fc4406b9b7a321dcfdd3d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/750cadb4b8fc4406b9b7a321dcfdd3d4.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eoZB6rK9T34TIXvarvgls8sAWuo=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.325238+00 2025-12-09 10:14:46.325242+00 4877 LHJ9217#49#粉 SPMX-20240815300014 \N \N \N 1 \N [{"file_id": "4b43b440-e966-489e-a4bb-85e676fe5449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e81e7c23526e41b0a8bd9599606d783c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e81e7c23526e41b0a8bd9599606d783c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e81e7c23526e41b0a8bd9599606d783c.jpg", "file_size": 13675, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#49#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81e7c23526e41b0a8bd9599606d783c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81e7c23526e41b0a8bd9599606d783c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81e7c23526e41b0a8bd9599606d783c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e81e7c23526e41b0a8bd9599606d783c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e81e7c23526e41b0a8bd9599606d783c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ke4TJxF0EEMQBY7LLAozPTDsZo4=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.326446+00 2025-12-09 10:14:46.32645+00 4878 HSH111FW#VS-D3蓝粉黄 SPMX-20240815300013 \N \N \N 1 \N [{"file_id": "45bd24e1-c2a1-4882-9ee6-c6242b847281", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b89bf7fa9394ae9ae6061e0e9721df5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b89bf7fa9394ae9ae6061e0e9721df5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b89bf7fa9394ae9ae6061e0e9721df5.jpg", "file_size": 7956, "is_delete": false, "file_type": 1, "original_file_name": "HSH111FW#VS-D3蓝粉黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b89bf7fa9394ae9ae6061e0e9721df5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b89bf7fa9394ae9ae6061e0e9721df5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b89bf7fa9394ae9ae6061e0e9721df5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b89bf7fa9394ae9ae6061e0e9721df5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b89bf7fa9394ae9ae6061e0e9721df5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9DyqxavZXIIje36RngOH8PhFlO0=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.327658+00 2025-12-09 10:14:46.327662+00 4879 80062#下摆粉色 SPMX-20240815300008 \N \N \N 1 \N [{"file_id": "9f1ac583-af5e-4beb-8695-db7af3dbf03d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e96cce20854498fa471feb1bed1345f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e96cce20854498fa471feb1bed1345f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e96cce20854498fa471feb1bed1345f.jpg", "file_size": 18870, "is_delete": false, "file_type": 1, "original_file_name": "80062#下摆粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e96cce20854498fa471feb1bed1345f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e96cce20854498fa471feb1bed1345f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e96cce20854498fa471feb1bed1345f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e96cce20854498fa471feb1bed1345f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e96cce20854498fa471feb1bed1345f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnqMRIPj7H3uoZM8k97v0mcfZcc=", "createTime": "2024-08-15 14:41:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.328845+00 2025-12-09 10:14:46.328849+00 4880 1048FWF#-2 SPMX-20240815300016 \N \N \N 1 \N [{"file_id": "b87aeaa2-58b9-4c82-8010-b9471f3e9a9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "861b8e09eb434726afd28f13d14c924a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "861b8e09eb434726afd28f13d14c924a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "861b8e09eb434726afd28f13d14c924a.jpg", "file_size": 20027, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861b8e09eb434726afd28f13d14c924a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861b8e09eb434726afd28f13d14c924a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861b8e09eb434726afd28f13d14c924a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/861b8e09eb434726afd28f13d14c924a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/861b8e09eb434726afd28f13d14c924a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqNLeUeU9vGxW7t1-faKgeXSBUI=", "createTime": "2024-08-15 14:41:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.330039+00 2025-12-09 10:14:46.330043+00 4881 JS0974-A6#RC23 SPMX-20240815300017 \N \N \N 1 \N [{"file_id": "d09d4a93-1d3f-43d8-b919-0657040451ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg", "file_size": 15134, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa7f22f0a8de4028a1d2c55b87ae4f1c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZebVodIdyg5nkDop0oqZF0Q40Uc=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.331268+00 2025-12-09 10:14:46.331272+00 4882 FHXGPK-008-1 SPMX-20240815300023 \N \N \N 1 \N [{"file_id": "44158f08-1673-4147-9491-ddf7e59d49b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48969e3fd04748e9bb3c85d0067e01dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48969e3fd04748e9bb3c85d0067e01dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48969e3fd04748e9bb3c85d0067e01dc.jpg", "file_size": 35166, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-008-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48969e3fd04748e9bb3c85d0067e01dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48969e3fd04748e9bb3c85d0067e01dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48969e3fd04748e9bb3c85d0067e01dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48969e3fd04748e9bb3c85d0067e01dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48969e3fd04748e9bb3c85d0067e01dc.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M1M-m-pKbeApHBborIPD28cU2dY=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.3325+00 2025-12-09 10:14:46.332504+00 4883 LZ1207#上身2号色 SPMX-20240815300020 \N \N \N 1 \N [{"file_id": "7aa5b239-bb31-4617-84cb-9b8156e5c41a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cafaba70ddba4dbd9e8b5b75027aa258.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cafaba70ddba4dbd9e8b5b75027aa258.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cafaba70ddba4dbd9e8b5b75027aa258.jpg", "file_size": 16627, "is_delete": false, "file_type": 1, "original_file_name": "LZ1207#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cafaba70ddba4dbd9e8b5b75027aa258.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cafaba70ddba4dbd9e8b5b75027aa258.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cafaba70ddba4dbd9e8b5b75027aa258.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cafaba70ddba4dbd9e8b5b75027aa258.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cafaba70ddba4dbd9e8b5b75027aa258.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgCgpEkOcPxl7I_kQJSWKJZ53jk=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.333699+00 2025-12-09 10:14:46.333706+00 4884 1048FWF#-2匹布 SPMX-20240815300026 \N \N \N 1 \N [{"file_id": "f2fff8ed-02d8-4415-b1f7-a56e8396bbfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e09f4c95a94426d923ff90992cf755f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e09f4c95a94426d923ff90992cf755f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e09f4c95a94426d923ff90992cf755f.jpg", "file_size": 13274, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-2匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09f4c95a94426d923ff90992cf755f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09f4c95a94426d923ff90992cf755f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09f4c95a94426d923ff90992cf755f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e09f4c95a94426d923ff90992cf755f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e09f4c95a94426d923ff90992cf755f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JsxCvVChYHzP89xx8Fd2LpH00tI=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.334915+00 2025-12-09 10:14:46.334919+00 4885 LHJ9217#5#彩兰 SPMX-20240815300022 \N \N \N 1 \N [{"file_id": "eb9140e2-31e5-477c-8634-57ae4c350b47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b788e5b33cfc4b508c9415b75ae14330.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b788e5b33cfc4b508c9415b75ae14330.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b788e5b33cfc4b508c9415b75ae14330.jpg", "file_size": 14726, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9217#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b788e5b33cfc4b508c9415b75ae14330.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b788e5b33cfc4b508c9415b75ae14330.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b788e5b33cfc4b508c9415b75ae14330.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b788e5b33cfc4b508c9415b75ae14330.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b788e5b33cfc4b508c9415b75ae14330.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-4aR4wGqlNyxagmQx5eoiC1cTs=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.336116+00 2025-12-09 10:14:46.33612+00 4886 HSH112FW#VS-D3 SPMX-20240815300024 \N \N \N 1 \N [{"file_id": "b313eb5e-79ab-4268-a949-52c004a6f7c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "877207be115e4deeaf5a0af440ddb583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "877207be115e4deeaf5a0af440ddb583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "877207be115e4deeaf5a0af440ddb583.jpg", "file_size": 7326, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877207be115e4deeaf5a0af440ddb583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877207be115e4deeaf5a0af440ddb583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877207be115e4deeaf5a0af440ddb583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/877207be115e4deeaf5a0af440ddb583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/877207be115e4deeaf5a0af440ddb583.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZH_5rShqGnFDpzLlx_1lJCi6XA=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.337337+00 2025-12-09 10:14:46.337341+00 4887 80062#下摆藏青 SPMX-20240815300021 \N \N \N 1 \N [{"file_id": "df4dbe42-fe8c-4d49-8bb9-fad8fa825c9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d82e2736fc418d84019ca41c4dcbe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d82e2736fc418d84019ca41c4dcbe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d82e2736fc418d84019ca41c4dcbe2.jpg", "file_size": 19818, "is_delete": false, "file_type": 1, "original_file_name": "80062#下摆藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d82e2736fc418d84019ca41c4dcbe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d82e2736fc418d84019ca41c4dcbe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d82e2736fc418d84019ca41c4dcbe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d82e2736fc418d84019ca41c4dcbe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d82e2736fc418d84019ca41c4dcbe2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQgrcWkdSsxAj_vEZO6A6ks3CSA=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.339087+00 2025-12-09 10:14:46.339091+00 4888 23-2101#A30前后片4XL SPMX-20240815300025 \N \N \N 1 \N [{"file_id": "68e054d0-70ba-42ed-af4a-a49ee61740e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b88cb689398b4a7d96df0e18507150ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b88cb689398b4a7d96df0e18507150ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b88cb689398b4a7d96df0e18507150ac.jpg", "file_size": 9503, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88cb689398b4a7d96df0e18507150ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88cb689398b4a7d96df0e18507150ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88cb689398b4a7d96df0e18507150ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b88cb689398b4a7d96df0e18507150ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b88cb689398b4a7d96df0e18507150ac.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLRvVCljB_Mcn5Uit0N-5GZ5UUU=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.3403+00 2025-12-09 10:14:46.340304+00 4889 0002-18FWF#西红 SPMX-20240815300018 \N \N \N 1 \N [{"file_id": "06d02adb-716d-44a0-8ede-3f141bc2485a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d92f8fc6ab97432588d2b523f5b4bdca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d92f8fc6ab97432588d2b523f5b4bdca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d92f8fc6ab97432588d2b523f5b4bdca.jpg", "file_size": 18249, "is_delete": false, "file_type": 1, "original_file_name": "0002-18FWF#西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92f8fc6ab97432588d2b523f5b4bdca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92f8fc6ab97432588d2b523f5b4bdca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92f8fc6ab97432588d2b523f5b4bdca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d92f8fc6ab97432588d2b523f5b4bdca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d92f8fc6ab97432588d2b523f5b4bdca.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tToEFqTMh8KG6C7EA5YJAKOsQf4=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.34149+00 2025-12-09 10:14:46.341494+00 4890 DH20220779FW#XL短袖口橙 SPMX-20240815300019 \N \N \N 1 \N [{"file_id": "9d69dfb8-b721-492e-9d7f-de4dd53865ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9c9b9df03154bbbae51fdfb42a94354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9c9b9df03154bbbae51fdfb42a94354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9c9b9df03154bbbae51fdfb42a94354.jpg", "file_size": 14267, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c9b9df03154bbbae51fdfb42a94354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c9b9df03154bbbae51fdfb42a94354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c9b9df03154bbbae51fdfb42a94354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9c9b9df03154bbbae51fdfb42a94354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9c9b9df03154bbbae51fdfb42a94354.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0TQL15rxzRSHW3HNX2csYHiyPs=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.342687+00 2025-12-09 10:14:46.342691+00 4891 C24#WJC22 SPMX-20240815300027 \N \N \N 1 \N [{"file_id": "f4645d68-012f-4375-8f19-290d16b8326d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d962be8b8c904d18a6b3a23c1a9ec8ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d962be8b8c904d18a6b3a23c1a9ec8ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d962be8b8c904d18a6b3a23c1a9ec8ff.jpg", "file_size": 22425, "is_delete": false, "file_type": 1, "original_file_name": "C24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962be8b8c904d18a6b3a23c1a9ec8ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962be8b8c904d18a6b3a23c1a9ec8ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962be8b8c904d18a6b3a23c1a9ec8ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d962be8b8c904d18a6b3a23c1a9ec8ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d962be8b8c904d18a6b3a23c1a9ec8ff.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jdx0QrC1xOyPmkr5qB9a16xICU=", "createTime": "2024-08-15 14:41:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.343923+00 2025-12-09 10:14:46.343927+00 4892 FHXGPK-008-2 SPMX-20240815300032 \N \N \N 1 \N [{"file_id": "c3afe4e2-8247-4388-aed5-0a5340eb7f34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee0611ee6684e108554d3a82d51a2e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee0611ee6684e108554d3a82d51a2e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee0611ee6684e108554d3a82d51a2e7.jpg", "file_size": 32775, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-008-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee0611ee6684e108554d3a82d51a2e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee0611ee6684e108554d3a82d51a2e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee0611ee6684e108554d3a82d51a2e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee0611ee6684e108554d3a82d51a2e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee0611ee6684e108554d3a82d51a2e7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyJXuPW3t2O0Lkk3JvpNNOihhQg=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.345137+00 2025-12-09 10:14:46.345142+00 4893 1048FWF#-3 SPMX-20240815300036 \N \N \N 1 \N [{"file_id": "4b6ba0ae-8b52-4b20-8895-9a11715941b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cecb77fa13e3421f8c1284ad06af475f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cecb77fa13e3421f8c1284ad06af475f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cecb77fa13e3421f8c1284ad06af475f.jpg", "file_size": 16417, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecb77fa13e3421f8c1284ad06af475f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecb77fa13e3421f8c1284ad06af475f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecb77fa13e3421f8c1284ad06af475f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cecb77fa13e3421f8c1284ad06af475f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cecb77fa13e3421f8c1284ad06af475f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59nyn53Y5WrrRwDD1RsjNHP3cOE=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.346319+00 2025-12-09 10:14:46.346323+00 4894 80062#短袖上衣 SPMX-20240815300038 \N \N \N 1 \N [{"file_id": "2aea8e72-9436-4461-a290-77a497eb883f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1936be262de4a0ab4e2ecbd7d5d3142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1936be262de4a0ab4e2ecbd7d5d3142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1936be262de4a0ab4e2ecbd7d5d3142.jpg", "file_size": 19898, "is_delete": false, "file_type": 1, "original_file_name": "80062#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1936be262de4a0ab4e2ecbd7d5d3142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1936be262de4a0ab4e2ecbd7d5d3142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1936be262de4a0ab4e2ecbd7d5d3142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1936be262de4a0ab4e2ecbd7d5d3142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1936be262de4a0ab4e2ecbd7d5d3142.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OTUo4euHOpD1zDiZvVLWsiy-RE=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.347514+00 2025-12-09 10:14:46.347518+00 4895 C245#墨绿 SPMX-20240815300037 \N \N \N 1 \N [{"file_id": "84a95eb7-1b7f-4464-b8e2-fd08084c2113", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2965262325124ab297471f543a58926a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2965262325124ab297471f543a58926a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2965262325124ab297471f543a58926a.jpg", "file_size": 11579, "is_delete": false, "file_type": 1, "original_file_name": "C245#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2965262325124ab297471f543a58926a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2965262325124ab297471f543a58926a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2965262325124ab297471f543a58926a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2965262325124ab297471f543a58926a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2965262325124ab297471f543a58926a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwJL5IEimZ1IRTdkWEAE8pgvUE8=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.348731+00 2025-12-09 10:14:46.348735+00 4896 0002-19#橘色花 SPMX-20240815300030 \N \N \N 1 \N [{"file_id": "5f64b9b5-0706-48f4-82d4-c5b91de61414", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0156193809c542a5b0cf7a67cd35ea4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0156193809c542a5b0cf7a67cd35ea4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0156193809c542a5b0cf7a67cd35ea4e.jpg", "file_size": 19988, "is_delete": false, "file_type": 1, "original_file_name": "0002-19#橘色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0156193809c542a5b0cf7a67cd35ea4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0156193809c542a5b0cf7a67cd35ea4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0156193809c542a5b0cf7a67cd35ea4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0156193809c542a5b0cf7a67cd35ea4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0156193809c542a5b0cf7a67cd35ea4e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mPN4JzxM9lbiaVFavLDtvzF0dI=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.349926+00 2025-12-09 10:14:46.34993+00 4897 LHJ9224#10#黑兰 SPMX-20240815300035 \N \N \N 1 \N [{"file_id": "933d2a87-5193-48a8-8924-78296df00f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a61420573d404d7a95d17ae9d084a08a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a61420573d404d7a95d17ae9d084a08a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a61420573d404d7a95d17ae9d084a08a.jpg", "file_size": 12213, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#10#黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a61420573d404d7a95d17ae9d084a08a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a61420573d404d7a95d17ae9d084a08a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a61420573d404d7a95d17ae9d084a08a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a61420573d404d7a95d17ae9d084a08a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a61420573d404d7a95d17ae9d084a08a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BICOLmxejYlK90eYz16WkX-wJwo=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.351118+00 2025-12-09 10:14:46.351122+00 4898 HSH112FW#VS-D3橙色 SPMX-20240815300031 \N \N \N 1 \N [{"file_id": "c47d37dd-e2de-49d2-96ac-85e6e56902b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81d3e4f853f04f87883d0b5cd6110c4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81d3e4f853f04f87883d0b5cd6110c4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81d3e4f853f04f87883d0b5cd6110c4a.jpg", "file_size": 21488, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d3e4f853f04f87883d0b5cd6110c4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d3e4f853f04f87883d0b5cd6110c4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d3e4f853f04f87883d0b5cd6110c4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81d3e4f853f04f87883d0b5cd6110c4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81d3e4f853f04f87883d0b5cd6110c4a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgE1FLIDZEqWwEUO9MWHZIk6--c=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.352299+00 2025-12-09 10:14:46.352303+00 4899 LZ1207#上身3号色 SPMX-20240815300034 \N \N \N 1 \N [{"file_id": "e2ddd018-4b87-4f2d-bd78-01b9a311ef31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32f7429eb1c745b48de2ed45fc16703b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32f7429eb1c745b48de2ed45fc16703b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32f7429eb1c745b48de2ed45fc16703b.jpg", "file_size": 19142, "is_delete": false, "file_type": 1, "original_file_name": "LZ1207#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f7429eb1c745b48de2ed45fc16703b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f7429eb1c745b48de2ed45fc16703b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f7429eb1c745b48de2ed45fc16703b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32f7429eb1c745b48de2ed45fc16703b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32f7429eb1c745b48de2ed45fc16703b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_sB7NV8zta9lfmyEJtIeLzN-zew=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.353521+00 2025-12-09 10:14:46.353525+00 4900 DH20220779FW#XL短袖口浅蓝 SPMX-20240815300029 \N \N \N 1 \N [{"file_id": "7d975081-88d4-4ebe-af01-2ab1f5250326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9218779502fb4e6781350e02dd74e484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9218779502fb4e6781350e02dd74e484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9218779502fb4e6781350e02dd74e484.jpg", "file_size": 13156, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9218779502fb4e6781350e02dd74e484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9218779502fb4e6781350e02dd74e484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9218779502fb4e6781350e02dd74e484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9218779502fb4e6781350e02dd74e484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9218779502fb4e6781350e02dd74e484.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJLvWNfuqrJe9fhGuttTVyZUbK0=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.354707+00 2025-12-09 10:14:46.354711+00 4901 JS0974-A6#紫色 SPMX-20240815300028 \N \N \N 1 \N [{"file_id": "383d2e3f-d40b-4ff1-8921-e72b91ef6c91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "627e17ec4a1f4e3c9b86ccb921662e70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "627e17ec4a1f4e3c9b86ccb921662e70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "627e17ec4a1f4e3c9b86ccb921662e70.jpg", "file_size": 56872, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627e17ec4a1f4e3c9b86ccb921662e70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627e17ec4a1f4e3c9b86ccb921662e70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627e17ec4a1f4e3c9b86ccb921662e70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/627e17ec4a1f4e3c9b86ccb921662e70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/627e17ec4a1f4e3c9b86ccb921662e70.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMk6dtPoOQPhP5eTwm_zr4lPcBA=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.355909+00 2025-12-09 10:14:46.355913+00 4902 23-2101#A30前后片4·XL SPMX-20240815300033 \N \N \N 1 \N [{"file_id": "ec85e78f-ec67-44bc-a454-89c05b865ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e63fcc42ea9442e0b5b102c158de102d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e63fcc42ea9442e0b5b102c158de102d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e63fcc42ea9442e0b5b102c158de102d.jpg", "file_size": 9230, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30前后片4·XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63fcc42ea9442e0b5b102c158de102d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63fcc42ea9442e0b5b102c158de102d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63fcc42ea9442e0b5b102c158de102d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e63fcc42ea9442e0b5b102c158de102d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e63fcc42ea9442e0b5b102c158de102d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RrM50KxB9s95BtLQK0Eb8jxy-Y=", "createTime": "2024-08-15 14:41:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.357117+00 2025-12-09 10:14:46.357121+00 4903 HSH112FW#VS-D3浅紫 SPMX-20240815300051 \N \N \N 1 \N [{"file_id": "bf37a5a4-177e-4ea0-a1b3-62f4dd43bc14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6000569d08d4771876bf939ed881f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6000569d08d4771876bf939ed881f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6000569d08d4771876bf939ed881f15.jpg", "file_size": 20949, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3浅紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6000569d08d4771876bf939ed881f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6000569d08d4771876bf939ed881f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6000569d08d4771876bf939ed881f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6000569d08d4771876bf939ed881f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6000569d08d4771876bf939ed881f15.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wx8JzDzJqfhkkBR1gR6CZ_jZvYM=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.358342+00 2025-12-09 10:14:46.358346+00 4904 JS0974-A6#红色 SPMX-20240815300041 \N \N \N 1 \N [{"file_id": "87f07ef4-f173-479c-9363-b571fb88e5cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6da5645d47461d83f1d59b71cfafbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6da5645d47461d83f1d59b71cfafbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6da5645d47461d83f1d59b71cfafbf.jpg", "file_size": 59468, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da5645d47461d83f1d59b71cfafbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da5645d47461d83f1d59b71cfafbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da5645d47461d83f1d59b71cfafbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6da5645d47461d83f1d59b71cfafbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6da5645d47461d83f1d59b71cfafbf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUpoq2JJp4R8wPUxoEX3Kc-eYZ8=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.359521+00 2025-12-09 10:14:46.359525+00 4905 FHXGPK-008-3 SPMX-20240815300043 \N \N \N 1 \N [{"file_id": "9fc4c470-7a32-4217-94b8-98c61c4b730f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ae0f202168049049ae98d5c4bfeaccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ae0f202168049049ae98d5c4bfeaccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ae0f202168049049ae98d5c4bfeaccf.jpg", "file_size": 30270, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-008-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae0f202168049049ae98d5c4bfeaccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae0f202168049049ae98d5c4bfeaccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ae0f202168049049ae98d5c4bfeaccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ae0f202168049049ae98d5c4bfeaccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ae0f202168049049ae98d5c4bfeaccf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HvkzjLPbckgAJ7Gc96y-dgLRBCI=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.360712+00 2025-12-09 10:14:46.360716+00 4906 HSH112FW#VS-D3浅粉 SPMX-20240815300039 \N \N \N 1 \N [{"file_id": "84490219-7ec5-4536-aa71-c59c9b69b701", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35709902906541299cdd58284f0d9bb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35709902906541299cdd58284f0d9bb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35709902906541299cdd58284f0d9bb3.jpg", "file_size": 21422, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35709902906541299cdd58284f0d9bb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35709902906541299cdd58284f0d9bb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35709902906541299cdd58284f0d9bb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35709902906541299cdd58284f0d9bb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35709902906541299cdd58284f0d9bb3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxhMnGn6WvUzlFLWml0zShcRUCc=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.361898+00 2025-12-09 10:14:46.361902+00 4907 0002-1FWE#VS-D3 SPMX-20240815300040 \N \N \N 1 \N [{"file_id": "b87dc098-e5f0-4208-94f8-dd89ce32f239", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f620af88b6564551830a7aa164ee47c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f620af88b6564551830a7aa164ee47c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f620af88b6564551830a7aa164ee47c5.jpg", "file_size": 15320, "is_delete": false, "file_type": 1, "original_file_name": "0002-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f620af88b6564551830a7aa164ee47c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f620af88b6564551830a7aa164ee47c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f620af88b6564551830a7aa164ee47c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f620af88b6564551830a7aa164ee47c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f620af88b6564551830a7aa164ee47c5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIBkVGakXMw5_D4CY0yBxsTiWo0=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.36312+00 2025-12-09 10:14:46.363123+00 4908 23-2101#A30袖子3XL SPMX-20240815300042 \N \N \N 1 \N [{"file_id": "ab3c0ced-84e8-4722-9b87-2f26547b56fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d79ae422c29d405f85c878a9777400c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d79ae422c29d405f85c878a9777400c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d79ae422c29d405f85c878a9777400c4.jpg", "file_size": 9119, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79ae422c29d405f85c878a9777400c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79ae422c29d405f85c878a9777400c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79ae422c29d405f85c878a9777400c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d79ae422c29d405f85c878a9777400c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d79ae422c29d405f85c878a9777400c4.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2NvwVoaxiQwhSfU89FvxcHQYrk8=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.364331+00 2025-12-09 10:14:46.364335+00 4909 1048FWF#-3匹布 SPMX-20240815300044 \N \N \N 1 \N [{"file_id": "4a145080-33c9-4b50-8e63-08ae3d361f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0d0a7b42a954bd8b9ea499f49d885c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0d0a7b42a954bd8b9ea499f49d885c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0d0a7b42a954bd8b9ea499f49d885c5.jpg", "file_size": 10366, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-3匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d0a7b42a954bd8b9ea499f49d885c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d0a7b42a954bd8b9ea499f49d885c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d0a7b42a954bd8b9ea499f49d885c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0d0a7b42a954bd8b9ea499f49d885c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0d0a7b42a954bd8b9ea499f49d885c5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qaoY9R7gfJGNJ9ewXKpZEYtNEGk=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.365518+00 2025-12-09 10:14:46.365522+00 4910 JS0974-A6#绿色净色 SPMX-20240815300050 \N \N \N 1 \N [{"file_id": "90194e78-b588-4653-8ff3-812b0e268f8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "031a131ddce849caab28bb19f096765b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "031a131ddce849caab28bb19f096765b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "031a131ddce849caab28bb19f096765b.jpg", "file_size": 7514, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031a131ddce849caab28bb19f096765b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031a131ddce849caab28bb19f096765b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031a131ddce849caab28bb19f096765b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/031a131ddce849caab28bb19f096765b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/031a131ddce849caab28bb19f096765b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5eMz8PPFgZYvQflzzcI0fjI7S0=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.366758+00 2025-12-09 10:14:46.366762+00 4911 LHJ9224#20#枣红 SPMX-20240815300047 \N \N \N 1 \N [{"file_id": "b045e001-6966-4792-819b-f297760360b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5327affd45546d0af92eee4f9192a55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5327affd45546d0af92eee4f9192a55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5327affd45546d0af92eee4f9192a55.jpg", "file_size": 12816, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5327affd45546d0af92eee4f9192a55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5327affd45546d0af92eee4f9192a55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5327affd45546d0af92eee4f9192a55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5327affd45546d0af92eee4f9192a55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5327affd45546d0af92eee4f9192a55.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UD5WJxsY9b5wC3kvQJXUS6oUys=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.367973+00 2025-12-09 10:14:46.367977+00 4912 DH20220779FW#XL短袖口灰 SPMX-20240815300045 \N \N \N 1 \N [{"file_id": "977cebfe-2d3d-4d4e-a031-42200e92c790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da27c88e0d99458ab6250d6cdada23a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da27c88e0d99458ab6250d6cdada23a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da27c88e0d99458ab6250d6cdada23a7.jpg", "file_size": 10898, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da27c88e0d99458ab6250d6cdada23a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da27c88e0d99458ab6250d6cdada23a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da27c88e0d99458ab6250d6cdada23a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da27c88e0d99458ab6250d6cdada23a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da27c88e0d99458ab6250d6cdada23a7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqBz0sWxrbzE8XPS9jrmspHHHgw=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.369177+00 2025-12-09 10:14:46.369181+00 4913 80062#短袖子 SPMX-20240815300049 \N \N \N 1 \N [{"file_id": "d80975a1-6aaa-41c2-9441-21c13a67b038", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fee362b6dded4a5cbe8e689b1666166b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fee362b6dded4a5cbe8e689b1666166b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fee362b6dded4a5cbe8e689b1666166b.jpg", "file_size": 17564, "is_delete": false, "file_type": 1, "original_file_name": "80062#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee362b6dded4a5cbe8e689b1666166b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee362b6dded4a5cbe8e689b1666166b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee362b6dded4a5cbe8e689b1666166b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fee362b6dded4a5cbe8e689b1666166b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fee362b6dded4a5cbe8e689b1666166b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GWWCfcw2b-v1EAVMCVLHQJmzWY=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.370358+00 2025-12-09 10:14:46.370362+00 4914 LZ1207#上身4号色 SPMX-20240815300046 \N \N \N 1 \N [{"file_id": "bf2fb60d-8adf-4743-8552-3f82d33453ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg", "file_size": 18359, "is_delete": false, "file_type": 1, "original_file_name": "LZ1207#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11565be3ac9b48ffbd9bc40f0e6eb5d2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AUOOFotK3GwuGJWehEuMNuhG4i0=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.371572+00 2025-12-09 10:14:46.371575+00 4915 C245#大白 SPMX-20240815300048 \N \N \N 1 \N [{"file_id": "9fd0f14c-7827-40a8-b87e-7cc3a79bb54f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg", "file_size": 11017, "is_delete": false, "file_type": 1, "original_file_name": "C245#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f7ff6a7cf564c3b89f65d88e3cf4e62.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wg3aiaJLxUnE0VurPGmNlg19scc=", "createTime": "2024-08-15 14:41:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.37281+00 2025-12-09 10:14:46.372814+00 4916 DH20220779FW#XL短袖口白 SPMX-20240815300052 \N \N \N 1 \N [{"file_id": "f64751f9-7db7-46a6-832c-5271a054ab7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c787da215d446db7759950a8c41682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c787da215d446db7759950a8c41682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c787da215d446db7759950a8c41682.jpg", "file_size": 10964, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c787da215d446db7759950a8c41682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c787da215d446db7759950a8c41682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c787da215d446db7759950a8c41682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c787da215d446db7759950a8c41682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c787da215d446db7759950a8c41682.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsYgEGjn6MLrOezoUmqQpT9Srjc=", "createTime": "2024-08-15 14:41:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.374022+00 2025-12-09 10:14:46.374025+00 4917 LZ1207#上身5号色 SPMX-20240815300053 \N \N \N 1 \N [{"file_id": "301b1eab-98e4-40fb-86d5-b77f8fb6c4d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3813c7fd4724325b3ab91a44969ef8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3813c7fd4724325b3ab91a44969ef8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3813c7fd4724325b3ab91a44969ef8a.jpg", "file_size": 17982, "is_delete": false, "file_type": 1, "original_file_name": "LZ1207#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3813c7fd4724325b3ab91a44969ef8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3813c7fd4724325b3ab91a44969ef8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3813c7fd4724325b3ab91a44969ef8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3813c7fd4724325b3ab91a44969ef8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3813c7fd4724325b3ab91a44969ef8a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4dtG_LDFfqSwjVpY5D7eYv6ncNE=", "createTime": "2024-08-15 14:41:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.375229+00 2025-12-09 10:14:46.375234+00 4918 FHXGPK-008-4 SPMX-20240815300058 \N \N \N 1 \N [{"file_id": "053e8e0e-7af3-42f0-b2e5-6f1c0ea1e6e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8466e0615c174c50b61507ab6320a264.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8466e0615c174c50b61507ab6320a264.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8466e0615c174c50b61507ab6320a264.jpg", "file_size": 34709, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-008-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8466e0615c174c50b61507ab6320a264.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8466e0615c174c50b61507ab6320a264.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8466e0615c174c50b61507ab6320a264.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8466e0615c174c50b61507ab6320a264.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8466e0615c174c50b61507ab6320a264.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zSwPXNAJx2gVMq8tgE55GEt4S5U=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.376421+00 2025-12-09 10:14:46.376425+00 4919 HSH112FW#VS-D3紫粉绿 SPMX-20240815300069 \N \N \N 1 \N [{"file_id": "02db86b1-aa20-4ef5-8673-70de2fff79ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0581f4da175411a8b5e940ab311f00a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0581f4da175411a8b5e940ab311f00a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0581f4da175411a8b5e940ab311f00a.jpg", "file_size": 7326, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3紫粉绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0581f4da175411a8b5e940ab311f00a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0581f4da175411a8b5e940ab311f00a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0581f4da175411a8b5e940ab311f00a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0581f4da175411a8b5e940ab311f00a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0581f4da175411a8b5e940ab311f00a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCfVvlXr4aPByjbngegz30LZAFQ=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.377634+00 2025-12-09 10:14:46.377638+00 4920 LHJ9224#37#梅红 SPMX-20240815300067 \N \N \N 1 \N [{"file_id": "782907f2-27e8-425f-a767-b1785511bd3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9366db3df90b4c3cb3da5593b7bfe304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9366db3df90b4c3cb3da5593b7bfe304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9366db3df90b4c3cb3da5593b7bfe304.jpg", "file_size": 11395, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9366db3df90b4c3cb3da5593b7bfe304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9366db3df90b4c3cb3da5593b7bfe304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9366db3df90b4c3cb3da5593b7bfe304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9366db3df90b4c3cb3da5593b7bfe304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9366db3df90b4c3cb3da5593b7bfe304.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXdVfzuEvlEeTUA7usu93bF8cVs=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.378836+00 2025-12-09 10:14:46.37884+00 4921 0002-20FWF#原版红色 SPMX-20240815300066 \N \N \N 1 \N [{"file_id": "5c70d160-fc0c-4bf6-8543-0088389e4e51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb8bcc43e8384eedba0f8ca137405516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb8bcc43e8384eedba0f8ca137405516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb8bcc43e8384eedba0f8ca137405516.jpg", "file_size": 18105, "is_delete": false, "file_type": 1, "original_file_name": "0002-20FWF#原版红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8bcc43e8384eedba0f8ca137405516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8bcc43e8384eedba0f8ca137405516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8bcc43e8384eedba0f8ca137405516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb8bcc43e8384eedba0f8ca137405516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb8bcc43e8384eedba0f8ca137405516.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-yLL6zUJztagMKjNmf45O6XZh8=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.380053+00 2025-12-09 10:14:46.380058+00 4922 23-2101#A30领子通用 SPMX-20240815300068 \N \N \N 1 \N [{"file_id": "4577a1be-2f03-4c56-9775-fe9193fa88a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b852d637063a4cae9ea1686168fcebf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b852d637063a4cae9ea1686168fcebf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b852d637063a4cae9ea1686168fcebf3.jpg", "file_size": 9177, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b852d637063a4cae9ea1686168fcebf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b852d637063a4cae9ea1686168fcebf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b852d637063a4cae9ea1686168fcebf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b852d637063a4cae9ea1686168fcebf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b852d637063a4cae9ea1686168fcebf3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EESkMxUxo_0IeoyVjajArk32Wao=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.381619+00 2025-12-09 10:14:46.381624+00 4923 80063#上身匹布墨绿 SPMX-20240815300060 \N \N \N 1 \N [{"file_id": "e8ad4859-e230-433b-8f4b-f818d6e04445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02a7083958694b4283b54b6b3d8d3499.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02a7083958694b4283b54b6b3d8d3499.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02a7083958694b4283b54b6b3d8d3499.jpg", "file_size": 10934, "is_delete": false, "file_type": 1, "original_file_name": "80063#上身匹布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a7083958694b4283b54b6b3d8d3499.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a7083958694b4283b54b6b3d8d3499.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02a7083958694b4283b54b6b3d8d3499.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02a7083958694b4283b54b6b3d8d3499.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02a7083958694b4283b54b6b3d8d3499.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyYC41WHKYqhZi3jTY14NxPPHCs=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.3832+00 2025-12-09 10:14:46.383204+00 4924 LZ1208#上身1号色 SPMX-20240815300062 \N \N \N 1 \N [{"file_id": "69395a26-ba4d-45ea-88b4-79fdd7a0b8ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80763c086eb74db99ceda94369caa58f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80763c086eb74db99ceda94369caa58f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80763c086eb74db99ceda94369caa58f.jpg", "file_size": 17654, "is_delete": false, "file_type": 1, "original_file_name": "LZ1208#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80763c086eb74db99ceda94369caa58f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80763c086eb74db99ceda94369caa58f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80763c086eb74db99ceda94369caa58f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80763c086eb74db99ceda94369caa58f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80763c086eb74db99ceda94369caa58f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7FmhTolDxlSNZd1r7wq89Mb7os0=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.384384+00 2025-12-09 10:14:46.384388+00 4925 0002-1FWF#V5曲线 SPMX-20240815300057 \N \N \N 1 \N [{"file_id": "ff2fd708-05b8-48c9-824e-1a082195c735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52364ebb7c6c4769bb7df750dcfba97f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52364ebb7c6c4769bb7df750dcfba97f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52364ebb7c6c4769bb7df750dcfba97f.jpg", "file_size": 14346, "is_delete": false, "file_type": 1, "original_file_name": "0002-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52364ebb7c6c4769bb7df750dcfba97f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52364ebb7c6c4769bb7df750dcfba97f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52364ebb7c6c4769bb7df750dcfba97f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52364ebb7c6c4769bb7df750dcfba97f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52364ebb7c6c4769bb7df750dcfba97f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_Hi4li2YVw1e6TdVF2KwF9Fjpk=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.385578+00 2025-12-09 10:14:46.385582+00 4926 DH20220779FW#XL短袖口粉 SPMX-20240815300063 \N \N \N 1 \N [{"file_id": "fac39b75-9b13-4337-821f-d79911979c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2039b3bf56d7449398f14627f17a2d2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2039b3bf56d7449398f14627f17a2d2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2039b3bf56d7449398f14627f17a2d2c.jpg", "file_size": 14041, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2039b3bf56d7449398f14627f17a2d2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2039b3bf56d7449398f14627f17a2d2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2039b3bf56d7449398f14627f17a2d2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2039b3bf56d7449398f14627f17a2d2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2039b3bf56d7449398f14627f17a2d2c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MauhLUnz1SYlR1zRGgsOzm2eb-A=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.386764+00 2025-12-09 10:14:46.386768+00 4927 JS0974-A6#蓝色 SPMX-20240815300061 \N \N \N 1 \N [{"file_id": "85e6760c-ff99-43e2-9342-0d9cbde20bf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccd379ec7e5244058f971b97f17edf8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccd379ec7e5244058f971b97f17edf8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccd379ec7e5244058f971b97f17edf8a.jpg", "file_size": 59825, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd379ec7e5244058f971b97f17edf8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd379ec7e5244058f971b97f17edf8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd379ec7e5244058f971b97f17edf8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccd379ec7e5244058f971b97f17edf8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccd379ec7e5244058f971b97f17edf8a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjCj-n0M09e5F16DqTzMLq9Lky8=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.388143+00 2025-12-09 10:14:46.388147+00 4928 LHJ9224#32#墨绿 SPMX-20240815300056 \N \N \N 1 \N [{"file_id": "240f16b5-b1ae-45c0-9db0-8c0034c3baf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4630b2184719448ba729dbfeb1a58b06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4630b2184719448ba729dbfeb1a58b06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4630b2184719448ba729dbfeb1a58b06.jpg", "file_size": 12807, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4630b2184719448ba729dbfeb1a58b06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4630b2184719448ba729dbfeb1a58b06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4630b2184719448ba729dbfeb1a58b06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4630b2184719448ba729dbfeb1a58b06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4630b2184719448ba729dbfeb1a58b06.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:legEgpSJt6mH5k77T5gzoOPQvIQ=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.389328+00 2025-12-09 10:14:46.389332+00 4929 C245#黑色 SPMX-20240815300064 \N \N \N 1 \N [{"file_id": "b9eef84d-2ee0-4214-96d7-92cbd2e3df18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ad74231f8294954ac788f3f2db34fa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ad74231f8294954ac788f3f2db34fa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ad74231f8294954ac788f3f2db34fa4.jpg", "file_size": 11461, "is_delete": false, "file_type": 1, "original_file_name": "C245#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad74231f8294954ac788f3f2db34fa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad74231f8294954ac788f3f2db34fa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ad74231f8294954ac788f3f2db34fa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ad74231f8294954ac788f3f2db34fa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ad74231f8294954ac788f3f2db34fa4.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScXCo5zYp5y6RkD3MGQiA1HA_iY=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.390495+00 2025-12-09 10:14:46.390499+00 4930 1048FWF#-4匹布 SPMX-20240815300065 \N \N \N 1 \N [{"file_id": "9d32b520-dd51-40e2-8bff-036849f87697", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b46a25e246534874959720842fd83f40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b46a25e246534874959720842fd83f40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b46a25e246534874959720842fd83f40.jpg", "file_size": 12687, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-4匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a25e246534874959720842fd83f40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a25e246534874959720842fd83f40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b46a25e246534874959720842fd83f40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b46a25e246534874959720842fd83f40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b46a25e246534874959720842fd83f40.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r1HOO0CrJnNfVs4FP9o80qpSwp0=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.391663+00 2025-12-09 10:14:46.391667+00 4931 1048FWF#-4 SPMX-20240815300054 \N \N \N 1 \N [{"file_id": "ad4a9f3f-0089-4652-822a-026f8be23138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efa25a3e94544cb5ae7f498162d9bb65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efa25a3e94544cb5ae7f498162d9bb65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efa25a3e94544cb5ae7f498162d9bb65.jpg", "file_size": 19427, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa25a3e94544cb5ae7f498162d9bb65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa25a3e94544cb5ae7f498162d9bb65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa25a3e94544cb5ae7f498162d9bb65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efa25a3e94544cb5ae7f498162d9bb65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efa25a3e94544cb5ae7f498162d9bb65.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eQghhbTgKREh0obotCF_86xC9w=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.39287+00 2025-12-09 10:14:46.392874+00 4932 HSH112FW#VS-D3浅蓝 SPMX-20240815300059 \N \N \N 1 \N [{"file_id": "8991d142-04c9-49d1-9289-81bcb5e5b478", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37d9920383bb4000a83b958773e6603b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37d9920383bb4000a83b958773e6603b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37d9920383bb4000a83b958773e6603b.jpg", "file_size": 21381, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d9920383bb4000a83b958773e6603b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d9920383bb4000a83b958773e6603b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d9920383bb4000a83b958773e6603b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37d9920383bb4000a83b958773e6603b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37d9920383bb4000a83b958773e6603b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCPgHbUxQd_WAlx5hq0DwKrvOdQ=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.394055+00 2025-12-09 10:14:46.394059+00 4933 23-2101#A30袖子4XL SPMX-20240815300055 \N \N \N 1 \N [{"file_id": "8d160172-6dfd-4504-9462-76cfd4483ef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d749c4929f84ab69d4e354a69bc13da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d749c4929f84ab69d4e354a69bc13da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d749c4929f84ab69d4e354a69bc13da.jpg", "file_size": 9420, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A30袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d749c4929f84ab69d4e354a69bc13da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d749c4929f84ab69d4e354a69bc13da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d749c4929f84ab69d4e354a69bc13da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d749c4929f84ab69d4e354a69bc13da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d749c4929f84ab69d4e354a69bc13da.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJh5KCsXSaE-mgfkg3YFRalmXQk=", "createTime": "2024-08-15 14:41:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.395247+00 2025-12-09 10:14:46.395251+00 4934 FHXGPK-008-5 SPMX-20240815300070 \N \N \N 1 \N [{"file_id": "0d7b8371-f4a5-4177-b9d1-4e6d5c32d250", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dde559bf8d140f89ae86bc3cf30bfe0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dde559bf8d140f89ae86bc3cf30bfe0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dde559bf8d140f89ae86bc3cf30bfe0.jpg", "file_size": 34192, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-008-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dde559bf8d140f89ae86bc3cf30bfe0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dde559bf8d140f89ae86bc3cf30bfe0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dde559bf8d140f89ae86bc3cf30bfe0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dde559bf8d140f89ae86bc3cf30bfe0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dde559bf8d140f89ae86bc3cf30bfe0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-eWVnuR-w0CwwLnp8mocJudJfMM=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.39642+00 2025-12-09 10:14:46.396425+00 4935 0002-20FWF#绿色 SPMX-20240815300076 \N \N \N 1 \N [{"file_id": "25d69560-99da-4b1f-bdf5-0ea91b1c02b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84abc1e5a1f642e183f152a6ec6433a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84abc1e5a1f642e183f152a6ec6433a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84abc1e5a1f642e183f152a6ec6433a7.jpg", "file_size": 16957, "is_delete": false, "file_type": 1, "original_file_name": "0002-20FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84abc1e5a1f642e183f152a6ec6433a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84abc1e5a1f642e183f152a6ec6433a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84abc1e5a1f642e183f152a6ec6433a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84abc1e5a1f642e183f152a6ec6433a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84abc1e5a1f642e183f152a6ec6433a7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:60bDHRzN8go4DpfFIsCz14Gz-sQ=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.397611+00 2025-12-09 10:14:46.397615+00 4936 C249#221绿色 SPMX-20240815300075 \N \N \N 1 \N [{"file_id": "20db243e-8908-4333-89d1-6e5005a795f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fc9a295a3214359bc15250764e22178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fc9a295a3214359bc15250764e22178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fc9a295a3214359bc15250764e22178.jpg", "file_size": 8475, "is_delete": false, "file_type": 1, "original_file_name": "C249#221绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9a295a3214359bc15250764e22178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9a295a3214359bc15250764e22178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9a295a3214359bc15250764e22178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fc9a295a3214359bc15250764e22178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fc9a295a3214359bc15250764e22178.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K968OcLMnPQY1sDV6snfcRAhqZI=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.398804+00 2025-12-09 10:14:46.398808+00 4937 DH20220779FW#XL短袖口绿 SPMX-20240815300073 \N \N \N 1 \N [{"file_id": "fa3694a3-f80e-4518-b992-1356e45b3a18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5e9e3a5370647b2b3d24318db2e78d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5e9e3a5370647b2b3d24318db2e78d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5e9e3a5370647b2b3d24318db2e78d1.jpg", "file_size": 12672, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e9e3a5370647b2b3d24318db2e78d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e9e3a5370647b2b3d24318db2e78d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e9e3a5370647b2b3d24318db2e78d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5e9e3a5370647b2b3d24318db2e78d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5e9e3a5370647b2b3d24318db2e78d1.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEgHdmohkH1HrrJraQik-Zdz_Bc=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.400005+00 2025-12-09 10:14:46.400008+00 4938 HSH112FW#VS-D3黄底 SPMX-20240815300078 \N \N \N 1 \N [{"file_id": "47803593-7517-4022-9a05-5a9aa2d53315", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6500f0c1903d47f0846c24cd6704bf52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6500f0c1903d47f0846c24cd6704bf52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6500f0c1903d47f0846c24cd6704bf52.jpg", "file_size": 22552, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6500f0c1903d47f0846c24cd6704bf52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6500f0c1903d47f0846c24cd6704bf52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6500f0c1903d47f0846c24cd6704bf52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6500f0c1903d47f0846c24cd6704bf52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6500f0c1903d47f0846c24cd6704bf52.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9I0nWeUnor8by8tY8t71xK6Wa5o=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.401164+00 2025-12-09 10:14:46.401168+00 4939 LHJ9224#5#彩兰 SPMX-20240815300077 \N \N \N 1 \N [{"file_id": "df1676b5-984e-4059-b5a6-4aaf6a069e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddc6844dd2e94f24ae370d19f5cc030f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddc6844dd2e94f24ae370d19f5cc030f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddc6844dd2e94f24ae370d19f5cc030f.jpg", "file_size": 13026, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc6844dd2e94f24ae370d19f5cc030f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc6844dd2e94f24ae370d19f5cc030f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc6844dd2e94f24ae370d19f5cc030f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddc6844dd2e94f24ae370d19f5cc030f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddc6844dd2e94f24ae370d19f5cc030f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhRecW6RlCC8kjpguh9DXvHPv1U=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.402344+00 2025-12-09 10:14:46.402348+00 4940 JS0974-A7#LWQ15 SPMX-20240815300082 \N \N \N 1 \N [{"file_id": "e3761678-3069-419e-96e3-de54ac3b017c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d19af6668714a67ae14610a6ffa6625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d19af6668714a67ae14610a6ffa6625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d19af6668714a67ae14610a6ffa6625.jpg", "file_size": 15200, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A7#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d19af6668714a67ae14610a6ffa6625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d19af6668714a67ae14610a6ffa6625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d19af6668714a67ae14610a6ffa6625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d19af6668714a67ae14610a6ffa6625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d19af6668714a67ae14610a6ffa6625.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1phvTAyL2uVNrjN2tWkgxypcsqA=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.403538+00 2025-12-09 10:14:46.403542+00 4941 23-2101#A31前后片3XL SPMX-20240815300079 \N \N \N 1 \N [{"file_id": "ba1f3ea6-28a7-43d0-a55d-972348d78c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62fb06c986004f0b839cc7f43223c539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62fb06c986004f0b839cc7f43223c539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62fb06c986004f0b839cc7f43223c539.jpg", "file_size": 10122, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A31前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb06c986004f0b839cc7f43223c539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb06c986004f0b839cc7f43223c539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb06c986004f0b839cc7f43223c539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62fb06c986004f0b839cc7f43223c539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62fb06c986004f0b839cc7f43223c539.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKjws2NywgJaXPMroHlc0GsOzJw=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.404711+00 2025-12-09 10:14:46.404715+00 4942 1048FWF#-5 SPMX-20240815300081 \N \N \N 1 \N [{"file_id": "46ad8d7b-2afc-4a64-b7ec-d3db64474101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10d6bd631b314fd580aeb1dbfdd09a00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10d6bd631b314fd580aeb1dbfdd09a00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10d6bd631b314fd580aeb1dbfdd09a00.jpg", "file_size": 17726, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6bd631b314fd580aeb1dbfdd09a00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6bd631b314fd580aeb1dbfdd09a00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6bd631b314fd580aeb1dbfdd09a00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10d6bd631b314fd580aeb1dbfdd09a00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10d6bd631b314fd580aeb1dbfdd09a00.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7X3bHeI2Isl8f2Hh74A_N1qt_I=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.405884+00 2025-12-09 10:14:46.405888+00 4943 80063#上身匹布枣红 SPMX-20240815300083 \N \N \N 1 \N [{"file_id": "ed2020a5-d86c-428b-b4a8-00641886c0f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecb0271805454123a0165fb4e1ab1500.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecb0271805454123a0165fb4e1ab1500.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecb0271805454123a0165fb4e1ab1500.jpg", "file_size": 11198, "is_delete": false, "file_type": 1, "original_file_name": "80063#上身匹布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb0271805454123a0165fb4e1ab1500.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb0271805454123a0165fb4e1ab1500.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb0271805454123a0165fb4e1ab1500.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecb0271805454123a0165fb4e1ab1500.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecb0271805454123a0165fb4e1ab1500.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5M5DRNuZqdyHFSRnrx07x2WqTYk=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.407068+00 2025-12-09 10:14:46.407072+00 4944 JS0974-A6#裙子花布 SPMX-20240815300071 \N \N \N 1 \N [{"file_id": "b6351f07-0ea8-4989-a27b-14f11edb8fec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "671b6b3d054a461593f41c65226f1a24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "671b6b3d054a461593f41c65226f1a24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "671b6b3d054a461593f41c65226f1a24.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A6#裙子花布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671b6b3d054a461593f41c65226f1a24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671b6b3d054a461593f41c65226f1a24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671b6b3d054a461593f41c65226f1a24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/671b6b3d054a461593f41c65226f1a24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/671b6b3d054a461593f41c65226f1a24.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONsMIutcdG6NGZUs5NrxxJchgms=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.408268+00 2025-12-09 10:14:46.408273+00 4945 80063#上身匹布彩兰 SPMX-20240815300072 \N \N \N 1 \N [{"file_id": "fd17d301-beb1-491f-89b6-6a4a5d4d9208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6869edc6bae4aa4aabf09433750b98c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6869edc6bae4aa4aabf09433750b98c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6869edc6bae4aa4aabf09433750b98c.jpg", "file_size": 11335, "is_delete": false, "file_type": 1, "original_file_name": "80063#上身匹布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6869edc6bae4aa4aabf09433750b98c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6869edc6bae4aa4aabf09433750b98c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6869edc6bae4aa4aabf09433750b98c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6869edc6bae4aa4aabf09433750b98c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6869edc6bae4aa4aabf09433750b98c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iNtnJGLoZyNjjkZdysvg9xji5GI=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.409444+00 2025-12-09 10:14:46.409448+00 4946 LZ1208#上身2号色 SPMX-20240815300074 \N \N \N 1 \N [{"file_id": "1dd00a99-6d76-41e0-a156-9bb74997c313", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d68b84a20e4142e1aa3b2f1c0d189096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d68b84a20e4142e1aa3b2f1c0d189096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d68b84a20e4142e1aa3b2f1c0d189096.jpg", "file_size": 18993, "is_delete": false, "file_type": 1, "original_file_name": "LZ1208#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68b84a20e4142e1aa3b2f1c0d189096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68b84a20e4142e1aa3b2f1c0d189096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d68b84a20e4142e1aa3b2f1c0d189096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d68b84a20e4142e1aa3b2f1c0d189096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d68b84a20e4142e1aa3b2f1c0d189096.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FbolxBDOl1QgSjfapI71mW-ngvc=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.410587+00 2025-12-09 10:14:46.410591+00 4947 FHXGPK-009-1 SPMX-20240815300080 \N \N \N 1 \N [{"file_id": "0a013af4-c6b1-4d38-a955-d9878f2517e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70782861680e44139790c76dcba30c82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70782861680e44139790c76dcba30c82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70782861680e44139790c76dcba30c82.jpg", "file_size": 30590, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-009-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70782861680e44139790c76dcba30c82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70782861680e44139790c76dcba30c82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70782861680e44139790c76dcba30c82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70782861680e44139790c76dcba30c82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70782861680e44139790c76dcba30c82.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iw4ddX23mTb03h_79zaJzzxblh8=", "createTime": "2024-08-15 14:41:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.41178+00 2025-12-09 10:14:46.411783+00 4948 LZ1208#上身3号色 SPMX-20240815300086 \N \N \N 1 \N [{"file_id": "b531acce-b2a5-47a3-8675-4251b5ce9762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4711c9d72ce4df699ae4dd8da2477e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4711c9d72ce4df699ae4dd8da2477e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4711c9d72ce4df699ae4dd8da2477e6.jpg", "file_size": 15765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1208#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4711c9d72ce4df699ae4dd8da2477e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4711c9d72ce4df699ae4dd8da2477e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4711c9d72ce4df699ae4dd8da2477e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4711c9d72ce4df699ae4dd8da2477e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4711c9d72ce4df699ae4dd8da2477e6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4PCu_Zvw1HE9gG-MLcSpCqx0f0=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.412948+00 2025-12-09 10:14:46.412952+00 4949 C249#223玫红 SPMX-20240815300084 \N \N \N 1 \N [{"file_id": "c0ac62eb-6c91-4e35-a689-6c0c8001638d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a8e687d5833443a823c7b4603ad73d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a8e687d5833443a823c7b4603ad73d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a8e687d5833443a823c7b4603ad73d9.jpg", "file_size": 8145, "is_delete": false, "file_type": 1, "original_file_name": "C249#223玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e687d5833443a823c7b4603ad73d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e687d5833443a823c7b4603ad73d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e687d5833443a823c7b4603ad73d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a8e687d5833443a823c7b4603ad73d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a8e687d5833443a823c7b4603ad73d9.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDEGALx0FQ2htmdtHil-YKk9B9w=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.414123+00 2025-12-09 10:14:46.414127+00 4950 0002-22FWF#V5曲线 SPMX-20240815300087 \N \N \N 1 \N [{"file_id": "a0f6c32f-bcdb-49bb-807e-e0f0c887be37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "558b8989089e4464b29cdc9363e1cc9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "558b8989089e4464b29cdc9363e1cc9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "558b8989089e4464b29cdc9363e1cc9b.jpg", "file_size": 8396, "is_delete": false, "file_type": 1, "original_file_name": "0002-22FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558b8989089e4464b29cdc9363e1cc9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558b8989089e4464b29cdc9363e1cc9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558b8989089e4464b29cdc9363e1cc9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/558b8989089e4464b29cdc9363e1cc9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/558b8989089e4464b29cdc9363e1cc9b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPHXOL5JSs8yHlPFJR6YYTuynmM=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.415286+00 2025-12-09 10:14:46.41529+00 4951 LHJ9224#61#橙色 SPMX-20240815300088 \N \N \N 1 \N [{"file_id": "9ba77f86-e0b9-4374-b3c8-6c87826d8e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e08d98ff75bb4c1d9b889fe703ed49fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e08d98ff75bb4c1d9b889fe703ed49fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e08d98ff75bb4c1d9b889fe703ed49fa.jpg", "file_size": 12013, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9224#61#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08d98ff75bb4c1d9b889fe703ed49fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08d98ff75bb4c1d9b889fe703ed49fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08d98ff75bb4c1d9b889fe703ed49fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e08d98ff75bb4c1d9b889fe703ed49fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e08d98ff75bb4c1d9b889fe703ed49fa.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32bnwoLERLF2NT3G3Sxr0Nu3gdw=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.416471+00 2025-12-09 10:14:46.416475+00 4952 DH20220779FW#XL短袖口蓝 SPMX-20240815300085 \N \N \N 1 \N [{"file_id": "be7a4387-34bd-41e8-9def-8a4f0cdecc72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391480c1dd704282851caebc15cc61a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391480c1dd704282851caebc15cc61a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391480c1dd704282851caebc15cc61a8.jpg", "file_size": 14103, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖口蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391480c1dd704282851caebc15cc61a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391480c1dd704282851caebc15cc61a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391480c1dd704282851caebc15cc61a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391480c1dd704282851caebc15cc61a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391480c1dd704282851caebc15cc61a8.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bdTH2BYSvDEkL4P6chhStneHJo=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.417694+00 2025-12-09 10:14:46.417698+00 4953 1048FWF#-5匹布 SPMX-20240815300092 \N \N \N 1 \N [{"file_id": "660217cf-bdda-4865-ab8c-dea14574ae48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e41983469a5644b6a4edb625d9833edd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e41983469a5644b6a4edb625d9833edd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e41983469a5644b6a4edb625d9833edd.jpg", "file_size": 11223, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-5匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41983469a5644b6a4edb625d9833edd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41983469a5644b6a4edb625d9833edd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41983469a5644b6a4edb625d9833edd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e41983469a5644b6a4edb625d9833edd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e41983469a5644b6a4edb625d9833edd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lgktq8Nd6Wsqn8JX0AnzYQh6gCE=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.4189+00 2025-12-09 10:14:46.418905+00 4954 JS0974-A7#RC23 SPMX-20240815300093 \N \N \N 1 \N [{"file_id": "27325f3c-3a26-4f2f-ad34-eafc2bfad3a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9656ed0f39144015b73389c118d639d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9656ed0f39144015b73389c118d639d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9656ed0f39144015b73389c118d639d8.jpg", "file_size": 22432, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A7#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9656ed0f39144015b73389c118d639d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9656ed0f39144015b73389c118d639d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9656ed0f39144015b73389c118d639d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9656ed0f39144015b73389c118d639d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9656ed0f39144015b73389c118d639d8.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_smBBQv9_yWspyCHx28zL5KL6w=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.420075+00 2025-12-09 10:14:46.420079+00 4955 HSH112FW#VS-D3黑色 SPMX-20240815300089 \N \N \N 1 \N [{"file_id": "89f4877d-3719-4e94-91b4-ef3091ca4252", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f170e76cc79545d5963141f522bc24df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f170e76cc79545d5963141f522bc24df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f170e76cc79545d5963141f522bc24df.jpg", "file_size": 22074, "is_delete": false, "file_type": 1, "original_file_name": "HSH112FW#VS-D3黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f170e76cc79545d5963141f522bc24df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f170e76cc79545d5963141f522bc24df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f170e76cc79545d5963141f522bc24df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f170e76cc79545d5963141f522bc24df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f170e76cc79545d5963141f522bc24df.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIMjVZoz5IkF1dM-xjaVjyJ2fWI=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.421249+00 2025-12-09 10:14:46.421254+00 4956 FHXGPK-009-2 SPMX-20240815300091 \N \N \N 1 \N [{"file_id": "347fdfbc-1c3e-4f8c-841d-bb9b85af78a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6eb778d07934865881bd2adc4ae8d20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6eb778d07934865881bd2adc4ae8d20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6eb778d07934865881bd2adc4ae8d20.jpg", "file_size": 31037, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-009-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb778d07934865881bd2adc4ae8d20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb778d07934865881bd2adc4ae8d20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb778d07934865881bd2adc4ae8d20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6eb778d07934865881bd2adc4ae8d20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6eb778d07934865881bd2adc4ae8d20.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5D9rO-NcNxBp56funh1x8B1FdKg=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.422424+00 2025-12-09 10:14:46.422428+00 4957 23-2101#A31前后片4XL SPMX-20240815300090 \N \N \N 1 \N [{"file_id": "5c756943-daac-4937-9fec-db2a8830fdfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aea9baabd3542eca002c8cc721003b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aea9baabd3542eca002c8cc721003b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aea9baabd3542eca002c8cc721003b3.jpg", "file_size": 10445, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A31前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aea9baabd3542eca002c8cc721003b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aea9baabd3542eca002c8cc721003b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aea9baabd3542eca002c8cc721003b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aea9baabd3542eca002c8cc721003b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aea9baabd3542eca002c8cc721003b3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5WeKxApmYr4c-X1zSNetCwojrE=", "createTime": "2024-08-15 14:41:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.423822+00 2025-12-09 10:14:46.423828+00 4958 LZ1208#上身4号色 SPMX-20240815300094 \N \N \N 1 \N [{"file_id": "501c9146-7869-429d-8f1c-4505921c6a51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a55c4bacf637465ea08bb513980e246f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a55c4bacf637465ea08bb513980e246f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a55c4bacf637465ea08bb513980e246f.jpg", "file_size": 18424, "is_delete": false, "file_type": 1, "original_file_name": "LZ1208#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55c4bacf637465ea08bb513980e246f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55c4bacf637465ea08bb513980e246f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a55c4bacf637465ea08bb513980e246f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a55c4bacf637465ea08bb513980e246f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a55c4bacf637465ea08bb513980e246f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQMA8NbQcCQKjo0e7p-Ex1Q0tKQ=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.425075+00 2025-12-09 10:14:46.42508+00 4959 1048FWF#-6 SPMX-20240815300102 \N \N \N 1 \N [{"file_id": "b17eae38-7d06-495f-93cd-e7bba65cc8d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41b27407d8c64df99caba544d53432f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41b27407d8c64df99caba544d53432f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41b27407d8c64df99caba544d53432f0.jpg", "file_size": 22268, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b27407d8c64df99caba544d53432f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b27407d8c64df99caba544d53432f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b27407d8c64df99caba544d53432f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41b27407d8c64df99caba544d53432f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41b27407d8c64df99caba544d53432f0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuyiSfxexhl5Qu-rMkDPUcI0Qac=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.426262+00 2025-12-09 10:14:46.426266+00 4960 0002-23FWF#V5曲线 SPMX-20240815300099 \N \N \N 1 \N [{"file_id": "7a0352fe-18b3-464b-99fb-50ce85dc86e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62a1101c74e74c29ac0e0e770748149d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62a1101c74e74c29ac0e0e770748149d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62a1101c74e74c29ac0e0e770748149d.jpg", "file_size": 19843, "is_delete": false, "file_type": 1, "original_file_name": "0002-23FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a1101c74e74c29ac0e0e770748149d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a1101c74e74c29ac0e0e770748149d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a1101c74e74c29ac0e0e770748149d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62a1101c74e74c29ac0e0e770748149d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62a1101c74e74c29ac0e0e770748149d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M2LZEZsdaUN6qcbtJ648_zTQPkQ=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.427492+00 2025-12-09 10:14:46.427496+00 4961 23-2101#A31袖子3XL SPMX-20240815300100 \N \N \N 1 \N [{"file_id": "e42d79e4-33ba-4304-96ad-f1986e24050d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98b1d6af973f4f1ab3f379361db0d5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98b1d6af973f4f1ab3f379361db0d5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98b1d6af973f4f1ab3f379361db0d5e0.jpg", "file_size": 9537, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A31袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b1d6af973f4f1ab3f379361db0d5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b1d6af973f4f1ab3f379361db0d5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b1d6af973f4f1ab3f379361db0d5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98b1d6af973f4f1ab3f379361db0d5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98b1d6af973f4f1ab3f379361db0d5e0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weWx6JlR9ENsPNn97w7tf9j7Yxc=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.428684+00 2025-12-09 10:14:46.428688+00 4962 80063#上身匹布皮红 SPMX-20240815300097 \N \N \N 1 \N [{"file_id": "5fa44f8e-c710-4434-80af-9f2e584bb145", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6acf40288c9483c9b34de6d6e6796b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6acf40288c9483c9b34de6d6e6796b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6acf40288c9483c9b34de6d6e6796b2.jpg", "file_size": 9720, "is_delete": false, "file_type": 1, "original_file_name": "80063#上身匹布皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6acf40288c9483c9b34de6d6e6796b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6acf40288c9483c9b34de6d6e6796b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6acf40288c9483c9b34de6d6e6796b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6acf40288c9483c9b34de6d6e6796b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6acf40288c9483c9b34de6d6e6796b2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRiipfwyq2UACk58vTy9w0z-VLA=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.429873+00 2025-12-09 10:14:46.429877+00 4963 DH20220779FW#XL短袖橙 SPMX-20240815300098 \N \N \N 1 \N [{"file_id": "7c88e9df-3eda-45c5-b62d-7cec75b0d227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f32f3202988b4bb48260565492d1c1ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f32f3202988b4bb48260565492d1c1ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f32f3202988b4bb48260565492d1c1ad.jpg", "file_size": 16592, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32f3202988b4bb48260565492d1c1ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32f3202988b4bb48260565492d1c1ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32f3202988b4bb48260565492d1c1ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f32f3202988b4bb48260565492d1c1ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f32f3202988b4bb48260565492d1c1ad.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyK6kR28mD6aofYSUrDnGj0a3aI=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.43108+00 2025-12-09 10:14:46.431084+00 4964 C249#墨绿 SPMX-20240815300106 \N \N \N 1 \N [{"file_id": "dd46d34a-671a-43e5-a771-92cc7e8a8d35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d631ee4952454cb97621e62c23b67d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d631ee4952454cb97621e62c23b67d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d631ee4952454cb97621e62c23b67d.jpg", "file_size": 10934, "is_delete": false, "file_type": 1, "original_file_name": "C249#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d631ee4952454cb97621e62c23b67d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d631ee4952454cb97621e62c23b67d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d631ee4952454cb97621e62c23b67d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d631ee4952454cb97621e62c23b67d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d631ee4952454cb97621e62c23b67d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi9uzrEEwM6PK5ptZfp5fHDfIuw=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.432284+00 2025-12-09 10:14:46.432288+00 4965 23-2101#A31袖子4XL SPMX-20240815300109 \N \N \N 1 \N [{"file_id": "70ed527c-aa01-4dd2-840f-a73d6a02da4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "586f120408ae44a7bd4f91612d71de0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "586f120408ae44a7bd4f91612d71de0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "586f120408ae44a7bd4f91612d71de0b.jpg", "file_size": 9152, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A31袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586f120408ae44a7bd4f91612d71de0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586f120408ae44a7bd4f91612d71de0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586f120408ae44a7bd4f91612d71de0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/586f120408ae44a7bd4f91612d71de0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/586f120408ae44a7bd4f91612d71de0b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-JSXOZc19F3vHEseHTOxN14kP8=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.433466+00 2025-12-09 10:14:46.43347+00 4966 0002-25FWF#V5曲线 SPMX-20240815300111 \N \N \N 1 \N [{"file_id": "8668496c-12d8-4ab9-b2f4-a25d30f32821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec11b2f38a21492f844191ac36e0718f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec11b2f38a21492f844191ac36e0718f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec11b2f38a21492f844191ac36e0718f.jpg", "file_size": 22686, "is_delete": false, "file_type": 1, "original_file_name": "0002-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec11b2f38a21492f844191ac36e0718f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec11b2f38a21492f844191ac36e0718f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec11b2f38a21492f844191ac36e0718f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec11b2f38a21492f844191ac36e0718f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec11b2f38a21492f844191ac36e0718f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cq_f4mKlEXpyTUBMikMlzlXL6pI=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.434659+00 2025-12-09 10:14:46.434664+00 4967 LHJ9229#20#枣红 SPMX-20240815300105 \N \N \N 1 \N [{"file_id": "cdea05c6-c08d-42d0-aca1-45dcebe054f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf2a9793d074c2aa576434716688e13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf2a9793d074c2aa576434716688e13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf2a9793d074c2aa576434716688e13.jpg", "file_size": 12566, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2a9793d074c2aa576434716688e13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2a9793d074c2aa576434716688e13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2a9793d074c2aa576434716688e13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf2a9793d074c2aa576434716688e13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf2a9793d074c2aa576434716688e13.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnTkMxC1gW_jnHdosWKx1HvxOIM=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.436186+00 2025-12-09 10:14:46.436192+00 4968 DH20220779FW#XL短袖浅蓝 SPMX-20240815300110 \N \N \N 1 \N [{"file_id": "d61eb4b4-cee8-4f9b-b0b7-8c9da5eb6602", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afe94fae05344743a726cb8823a452e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afe94fae05344743a726cb8823a452e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afe94fae05344743a726cb8823a452e2.jpg", "file_size": 16563, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe94fae05344743a726cb8823a452e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe94fae05344743a726cb8823a452e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe94fae05344743a726cb8823a452e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afe94fae05344743a726cb8823a452e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afe94fae05344743a726cb8823a452e2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ze0BfhERuKR74wSw1VDRBzfHky8=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.437629+00 2025-12-09 10:14:46.437634+00 4969 HSH113FW#VS-D3 SPMX-20240815300101 \N \N \N 1 \N [{"file_id": "631b223b-7975-4a47-847f-58952c8a7e3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "484b726acdc74113bac8866d38072342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "484b726acdc74113bac8866d38072342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "484b726acdc74113bac8866d38072342.jpg", "file_size": 19488, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484b726acdc74113bac8866d38072342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484b726acdc74113bac8866d38072342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484b726acdc74113bac8866d38072342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/484b726acdc74113bac8866d38072342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/484b726acdc74113bac8866d38072342.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHQw5eKqswel8223Hh4M4ahqQk0=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.439035+00 2025-12-09 10:14:46.439041+00 4970 LZ1208#上身5号色 SPMX-20240815300108 \N \N \N 1 \N [{"file_id": "563a4cbf-254b-4d22-b8ec-0d7a027a9588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9bb83cb7904d14abe970959cf29b57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9bb83cb7904d14abe970959cf29b57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9bb83cb7904d14abe970959cf29b57.jpg", "file_size": 17659, "is_delete": false, "file_type": 1, "original_file_name": "LZ1208#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9bb83cb7904d14abe970959cf29b57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9bb83cb7904d14abe970959cf29b57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9bb83cb7904d14abe970959cf29b57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9bb83cb7904d14abe970959cf29b57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9bb83cb7904d14abe970959cf29b57.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GShFhQNRHDzp5LsbmyYnqs_6-P8=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.440434+00 2025-12-09 10:14:46.440439+00 4971 LHJ9229#10#黑兰 SPMX-20240815300095 \N \N \N 1 \N [{"file_id": "efb63bae-f092-4072-a944-cdb528f84860", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "713e75d8722546a1b00610427f174882.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "713e75d8722546a1b00610427f174882.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "713e75d8722546a1b00610427f174882.jpg", "file_size": 12368, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#10#黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713e75d8722546a1b00610427f174882.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713e75d8722546a1b00610427f174882.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713e75d8722546a1b00610427f174882.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/713e75d8722546a1b00610427f174882.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/713e75d8722546a1b00610427f174882.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lB1Al2s-VnMKHu9bS-_zbW0VFHs=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.44183+00 2025-12-09 10:14:46.441835+00 4972 80063#短款下身墨绿 SPMX-20240815300107 \N \N \N 1 \N [{"file_id": "3a18ce7b-f6a3-4a5b-9e19-ba9ce4960f05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7f373c4d6a64106b855a68df51f3650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7f373c4d6a64106b855a68df51f3650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7f373c4d6a64106b855a68df51f3650.jpg", "file_size": 17805, "is_delete": false, "file_type": 1, "original_file_name": "80063#短款下身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f373c4d6a64106b855a68df51f3650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f373c4d6a64106b855a68df51f3650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f373c4d6a64106b855a68df51f3650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7f373c4d6a64106b855a68df51f3650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7f373c4d6a64106b855a68df51f3650.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJ-hDeZAUVK20Gq7oAvjUmK43XI=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.443233+00 2025-12-09 10:14:46.443238+00 4973 C249#57橙红 SPMX-20240815300096 \N \N \N 1 \N [{"file_id": "5743694e-c538-4a4f-96ac-561f2707c319", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "254061d5a9d34e96a48262a75a58a4a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "254061d5a9d34e96a48262a75a58a4a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "254061d5a9d34e96a48262a75a58a4a6.jpg", "file_size": 8757, "is_delete": false, "file_type": 1, "original_file_name": "C249#57橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254061d5a9d34e96a48262a75a58a4a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254061d5a9d34e96a48262a75a58a4a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254061d5a9d34e96a48262a75a58a4a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/254061d5a9d34e96a48262a75a58a4a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/254061d5a9d34e96a48262a75a58a4a6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFmu_llgns6r1hi_UvsrzouQZYA=", "createTime": "2024-08-15 14:41:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.44462+00 2025-12-09 10:14:46.444624+00 4974 FHXGPK-009-3 SPMX-20240815300103 \N \N \N 1 \N [{"file_id": "6fbc20eb-7f81-4f61-be80-d09daa84107c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg", "file_size": 29853, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-009-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d56ef2b3e74cd78a3d994fc5db6bcd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kpw_wArFGzlHp4lqAiBQTNyzoDc=", "createTime": "2024-08-15 14:41:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.446054+00 2025-12-09 10:14:46.446059+00 4975 LHJ9229#32#黑绿 SPMX-20240815300117 \N \N \N 1 \N [{"file_id": "687ef625-12d3-4130-b27c-b0e317a34a1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b72fc55e1b8460ab5328f5f13e82f2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b72fc55e1b8460ab5328f5f13e82f2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b72fc55e1b8460ab5328f5f13e82f2e.jpg", "file_size": 14204, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#32#黑绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b72fc55e1b8460ab5328f5f13e82f2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b72fc55e1b8460ab5328f5f13e82f2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b72fc55e1b8460ab5328f5f13e82f2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b72fc55e1b8460ab5328f5f13e82f2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b72fc55e1b8460ab5328f5f13e82f2e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLOt82zym9Fx0HamBUpy2Xbf0LY=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.447467+00 2025-12-09 10:14:46.447472+00 4976 0002-26FWF#蓝色 SPMX-20240815300122 \N \N \N 1 \N [{"file_id": "7542ea87-e534-4308-bb54-3362e30bfde5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8720f6383e8e4d9eb9d44d8923c126fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8720f6383e8e4d9eb9d44d8923c126fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8720f6383e8e4d9eb9d44d8923c126fd.jpg", "file_size": 14457, "is_delete": false, "file_type": 1, "original_file_name": "0002-26FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8720f6383e8e4d9eb9d44d8923c126fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8720f6383e8e4d9eb9d44d8923c126fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8720f6383e8e4d9eb9d44d8923c126fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8720f6383e8e4d9eb9d44d8923c126fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8720f6383e8e4d9eb9d44d8923c126fd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WcZ84EYcBWuuyIXHmQdsswqY0gM=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.44889+00 2025-12-09 10:14:46.448895+00 4977 C249#大白 SPMX-20240815300116 \N \N \N 1 \N [{"file_id": "8af56f0d-9e91-4dd2-8390-c18ade5bf0da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a064195c2e7446abadb61d0dcdf3406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a064195c2e7446abadb61d0dcdf3406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a064195c2e7446abadb61d0dcdf3406.jpg", "file_size": 7439, "is_delete": false, "file_type": 1, "original_file_name": "C249#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a064195c2e7446abadb61d0dcdf3406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a064195c2e7446abadb61d0dcdf3406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a064195c2e7446abadb61d0dcdf3406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a064195c2e7446abadb61d0dcdf3406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a064195c2e7446abadb61d0dcdf3406.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OuRIpaWxBQoMoJbAgopcul4YhBc=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.450276+00 2025-12-09 10:14:46.450281+00 4978 LZ1209#上身1号色 SPMX-20240815300119 \N \N \N 1 \N [{"file_id": "c4ff89ff-6952-4c8c-bb46-612905a1ed5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a28fb58519734f959b1fee6b20756c93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a28fb58519734f959b1fee6b20756c93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a28fb58519734f959b1fee6b20756c93.jpg", "file_size": 16631, "is_delete": false, "file_type": 1, "original_file_name": "LZ1209#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28fb58519734f959b1fee6b20756c93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28fb58519734f959b1fee6b20756c93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28fb58519734f959b1fee6b20756c93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a28fb58519734f959b1fee6b20756c93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a28fb58519734f959b1fee6b20756c93.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bcn4LcqeBuYxyWSM6a7p2I_d3W8=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.451654+00 2025-12-09 10:14:46.451659+00 4979 23-2101#A31领子通用 SPMX-20240815300118 \N \N \N 1 \N [{"file_id": "8a0bd633-3aaa-4985-b14f-d3c186d8a003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1ee3fe10e1d49dc9c604cb867e1481d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1ee3fe10e1d49dc9c604cb867e1481d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1ee3fe10e1d49dc9c604cb867e1481d.jpg", "file_size": 8466, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A31领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ee3fe10e1d49dc9c604cb867e1481d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ee3fe10e1d49dc9c604cb867e1481d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ee3fe10e1d49dc9c604cb867e1481d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1ee3fe10e1d49dc9c604cb867e1481d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1ee3fe10e1d49dc9c604cb867e1481d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zulzQsPj1qRiTkwoMxcyl4LKg-o=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.452985+00 2025-12-09 10:14:46.452989+00 4980 FHXGPK-009-4 SPMX-20240815300113 \N \N \N 1 \N [{"file_id": "b1401aa4-e977-46b4-814a-19ff265d7352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e691a6574daa43e199183521cde371f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e691a6574daa43e199183521cde371f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e691a6574daa43e199183521cde371f6.jpg", "file_size": 29894, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-009-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e691a6574daa43e199183521cde371f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e691a6574daa43e199183521cde371f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e691a6574daa43e199183521cde371f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e691a6574daa43e199183521cde371f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e691a6574daa43e199183521cde371f6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4w82xxfxIup-iDlw4_YtkpTqjg=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.454238+00 2025-12-09 10:14:46.454243+00 4981 DH20220779FW#XL短袖灰 SPMX-20240815300123 \N \N \N 1 \N [{"file_id": "cd54454d-2f7a-47be-93e5-a3c37bb908e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg", "file_size": 15929, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2b2fd4f1b114d8ab6c1438f4d0f5ce3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uWHw6F89pO-1MbbRyX1M7S4Ff4=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.455443+00 2025-12-09 10:14:46.455447+00 4982 1048FWF#-6匹布 SPMX-20240815300114 \N \N \N 1 \N [{"file_id": "b491919b-58a1-46df-a8c7-9efb350d5d18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a57f4bf8b57406b9f4c0074fcc56854.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a57f4bf8b57406b9f4c0074fcc56854.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a57f4bf8b57406b9f4c0074fcc56854.jpg", "file_size": 13706, "is_delete": false, "file_type": 1, "original_file_name": "1048FWF#-6匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a57f4bf8b57406b9f4c0074fcc56854.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a57f4bf8b57406b9f4c0074fcc56854.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a57f4bf8b57406b9f4c0074fcc56854.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a57f4bf8b57406b9f4c0074fcc56854.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a57f4bf8b57406b9f4c0074fcc56854.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:57rcBZoesj6_My9oLEgj45xl93Q=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.456661+00 2025-12-09 10:14:46.456666+00 4983 HSH113FW#VS-D3彩兰 SPMX-20240815300112 \N \N \N 1 \N [{"file_id": "a09af66c-463d-467c-9b32-0d46bf0763bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffeed714b52a42b0b42c8c801575ea76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffeed714b52a42b0b42c8c801575ea76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffeed714b52a42b0b42c8c801575ea76.jpg", "file_size": 20298, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeed714b52a42b0b42c8c801575ea76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeed714b52a42b0b42c8c801575ea76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeed714b52a42b0b42c8c801575ea76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffeed714b52a42b0b42c8c801575ea76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffeed714b52a42b0b42c8c801575ea76.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPauIIWlpcFHYQxQ06eeZmkKbR4=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.457867+00 2025-12-09 10:14:46.457871+00 4984 HSH113FW#VS-D3浅紫 SPMX-20240815300120 \N \N \N 1 \N [{"file_id": "9dfe321e-e819-4f48-a5f1-f5ac0bf618f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e068275b56bb4f12920df32b04683d29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e068275b56bb4f12920df32b04683d29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e068275b56bb4f12920df32b04683d29.jpg", "file_size": 17588, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3浅紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e068275b56bb4f12920df32b04683d29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e068275b56bb4f12920df32b04683d29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e068275b56bb4f12920df32b04683d29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e068275b56bb4f12920df32b04683d29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e068275b56bb4f12920df32b04683d29.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJ6kJY_oxge2Jj5F4DGsFJ_LuV0=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.459079+00 2025-12-09 10:14:46.459083+00 4985 105#-杏色 SPMX-20240815300125 \N \N \N 1 \N [{"file_id": "77ed3706-6ba0-4b90-83ce-5f4da27a8d1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "488108511ad048a6b8bfd3f8a7fe7835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "488108511ad048a6b8bfd3f8a7fe7835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "488108511ad048a6b8bfd3f8a7fe7835.jpg", "file_size": 59865, "is_delete": false, "file_type": 1, "original_file_name": "105#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488108511ad048a6b8bfd3f8a7fe7835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488108511ad048a6b8bfd3f8a7fe7835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488108511ad048a6b8bfd3f8a7fe7835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/488108511ad048a6b8bfd3f8a7fe7835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/488108511ad048a6b8bfd3f8a7fe7835.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-YM0aMh5LilMLmw4tRifxcjveg=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.460266+00 2025-12-09 10:14:46.46027+00 4986 80063#短款下身彩兰 SPMX-20240815300115 \N \N \N 1 \N [{"file_id": "642c2a39-3ded-439d-9a7a-30a8cab2e85e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ea3823ed1a44c74bfb57121fe24e778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ea3823ed1a44c74bfb57121fe24e778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ea3823ed1a44c74bfb57121fe24e778.jpg", "file_size": 17305, "is_delete": false, "file_type": 1, "original_file_name": "80063#短款下身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea3823ed1a44c74bfb57121fe24e778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea3823ed1a44c74bfb57121fe24e778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea3823ed1a44c74bfb57121fe24e778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ea3823ed1a44c74bfb57121fe24e778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ea3823ed1a44c74bfb57121fe24e778.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKuK7PnuvG84nHb0pqP9iK1jzhA=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.461445+00 2025-12-09 10:14:46.46145+00 4987 JS0974-A8#RC23 SPMX-20240815300121 \N \N \N 1 \N [{"file_id": "ee56bf5b-3de0-4314-b3c4-74c99c077e1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "238b5c219e244d0da5247909bf59d439.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "238b5c219e244d0da5247909bf59d439.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "238b5c219e244d0da5247909bf59d439.jpg", "file_size": 51770, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A8#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238b5c219e244d0da5247909bf59d439.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238b5c219e244d0da5247909bf59d439.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238b5c219e244d0da5247909bf59d439.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/238b5c219e244d0da5247909bf59d439.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/238b5c219e244d0da5247909bf59d439.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxNhXWrjh5T0yHepaJuFknfUlp0=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.462624+00 2025-12-09 10:14:46.462627+00 4988 FHXGPK-009-5 SPMX-20240815300124 \N \N \N 1 \N [{"file_id": "42856671-ce64-4045-aff0-84d5140c3352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698977edef54429782c0cf2a9ce25de9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698977edef54429782c0cf2a9ce25de9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698977edef54429782c0cf2a9ce25de9.jpg", "file_size": 33726, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-009-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698977edef54429782c0cf2a9ce25de9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698977edef54429782c0cf2a9ce25de9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698977edef54429782c0cf2a9ce25de9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698977edef54429782c0cf2a9ce25de9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698977edef54429782c0cf2a9ce25de9.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iwP7vPmzG6uq9ImPQmvAIWHVdE=", "createTime": "2024-08-15 14:41:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.463842+00 2025-12-09 10:14:46.463847+00 4989 0002-27FWF#粉色 SPMX-20240815300132 \N \N \N 1 \N [{"file_id": "df6ae5db-52eb-4226-b6ec-9062fce428d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3804b8c2528b423785493a8c058a1d9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3804b8c2528b423785493a8c058a1d9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3804b8c2528b423785493a8c058a1d9f.jpg", "file_size": 22412, "is_delete": false, "file_type": 1, "original_file_name": "0002-27FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3804b8c2528b423785493a8c058a1d9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3804b8c2528b423785493a8c058a1d9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3804b8c2528b423785493a8c058a1d9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3804b8c2528b423785493a8c058a1d9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3804b8c2528b423785493a8c058a1d9f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yY1rUzMbWz0CiNb1DmzF1mnefHs=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.465023+00 2025-12-09 10:14:46.465027+00 4990 LHJ9229#37#梅红 SPMX-20240815300127 \N \N \N 1 \N [{"file_id": "ce84be19-58d8-4a96-95b4-8dc7b5624a63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0507a4f4c3f482788812b1bf3b8c67e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0507a4f4c3f482788812b1bf3b8c67e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0507a4f4c3f482788812b1bf3b8c67e.jpg", "file_size": 11152, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0507a4f4c3f482788812b1bf3b8c67e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0507a4f4c3f482788812b1bf3b8c67e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0507a4f4c3f482788812b1bf3b8c67e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0507a4f4c3f482788812b1bf3b8c67e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0507a4f4c3f482788812b1bf3b8c67e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MK8xQi4umfosaRs0bGkgRMdNG0=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.466226+00 2025-12-09 10:14:46.46623+00 4991 23-2101#A32前后片3XL SPMX-20240815300133 \N \N \N 1 \N [{"file_id": "459e67ca-e97a-45dd-83fb-487c40a3038a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a7c1e3917794069a6c47eb5d09c18fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a7c1e3917794069a6c47eb5d09c18fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a7c1e3917794069a6c47eb5d09c18fd.jpg", "file_size": 19049, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A32前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7c1e3917794069a6c47eb5d09c18fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7c1e3917794069a6c47eb5d09c18fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7c1e3917794069a6c47eb5d09c18fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a7c1e3917794069a6c47eb5d09c18fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a7c1e3917794069a6c47eb5d09c18fd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7w2dr3tqqmP-vNP38zlViX9Y7vg=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.467411+00 2025-12-09 10:14:46.467415+00 4992 C249#枣红 SPMX-20240815300126 \N \N \N 1 \N [{"file_id": "09b4f083-892c-4ceb-8ab7-0cca21287b4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec621c9649f34dd088ed042fb072f824.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec621c9649f34dd088ed042fb072f824.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec621c9649f34dd088ed042fb072f824.jpg", "file_size": 11314, "is_delete": false, "file_type": 1, "original_file_name": "C249#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec621c9649f34dd088ed042fb072f824.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec621c9649f34dd088ed042fb072f824.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec621c9649f34dd088ed042fb072f824.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec621c9649f34dd088ed042fb072f824.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec621c9649f34dd088ed042fb072f824.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJHEVbhQbhpAQAdiAY5WU52diHM=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.468618+00 2025-12-09 10:14:46.468622+00 4993 DH20220779FW#XL短袖白 SPMX-20240815300130 \N \N \N 1 \N [{"file_id": "89c21c73-cc81-4ff2-a5b5-78ab0497aad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8101ad84256425bb78d0e6e5fa053bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8101ad84256425bb78d0e6e5fa053bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8101ad84256425bb78d0e6e5fa053bb.jpg", "file_size": 16378, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8101ad84256425bb78d0e6e5fa053bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8101ad84256425bb78d0e6e5fa053bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8101ad84256425bb78d0e6e5fa053bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8101ad84256425bb78d0e6e5fa053bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8101ad84256425bb78d0e6e5fa053bb.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArcJswLYw0rzMRrDDNKo3ZuZZ80=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.469805+00 2025-12-09 10:14:46.469809+00 4994 HSH113FW#VS-D3浅蓝 SPMX-20240815300131 \N \N \N 1 \N [{"file_id": "39843e04-34d1-4695-91b4-08641adb18ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "520cae8d90114938bb1dd569963d4ea6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "520cae8d90114938bb1dd569963d4ea6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "520cae8d90114938bb1dd569963d4ea6.jpg", "file_size": 18413, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520cae8d90114938bb1dd569963d4ea6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520cae8d90114938bb1dd569963d4ea6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520cae8d90114938bb1dd569963d4ea6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/520cae8d90114938bb1dd569963d4ea6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/520cae8d90114938bb1dd569963d4ea6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfNOgoxtjRtAcEObev9q5fKF0lQ=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.470982+00 2025-12-09 10:14:46.470986+00 4995 JS0974-A8#上衣净色 SPMX-20240815300134 \N \N \N 1 \N [{"file_id": "0bd908cc-5555-42f1-bfa7-a6904db25969", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ac0d1c0728142c1b33f2ccfea089df1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ac0d1c0728142c1b33f2ccfea089df1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ac0d1c0728142c1b33f2ccfea089df1.jpg", "file_size": 12423, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A8#上衣净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac0d1c0728142c1b33f2ccfea089df1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac0d1c0728142c1b33f2ccfea089df1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac0d1c0728142c1b33f2ccfea089df1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ac0d1c0728142c1b33f2ccfea089df1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ac0d1c0728142c1b33f2ccfea089df1.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCvtV2B7e-0L9AMp2_t8uZ0RvbM=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.472199+00 2025-12-09 10:14:46.472204+00 4996 80063#短款下身枣红 SPMX-20240815300128 \N \N \N 1 \N [{"file_id": "cccbce28-e62a-4466-bd0a-444b6b534597", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db208f057bfb4a5a9ed90cdd17d15251.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db208f057bfb4a5a9ed90cdd17d15251.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db208f057bfb4a5a9ed90cdd17d15251.jpg", "file_size": 17890, "is_delete": false, "file_type": 1, "original_file_name": "80063#短款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db208f057bfb4a5a9ed90cdd17d15251.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db208f057bfb4a5a9ed90cdd17d15251.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db208f057bfb4a5a9ed90cdd17d15251.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db208f057bfb4a5a9ed90cdd17d15251.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db208f057bfb4a5a9ed90cdd17d15251.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NO7XEKb2WAQl9xbsTUPfCAyTaSc=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.473424+00 2025-12-09 10:14:46.473428+00 4997 105#-浅杏色 SPMX-20240815300136 \N \N \N 1 \N [{"file_id": "fe41300a-71bd-42bb-922f-a68cef2719a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2245cfef615d4f2ab196346d64701b91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2245cfef615d4f2ab196346d64701b91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2245cfef615d4f2ab196346d64701b91.jpg", "file_size": 56973, "is_delete": false, "file_type": 1, "original_file_name": "105#-浅杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2245cfef615d4f2ab196346d64701b91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2245cfef615d4f2ab196346d64701b91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2245cfef615d4f2ab196346d64701b91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2245cfef615d4f2ab196346d64701b91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2245cfef615d4f2ab196346d64701b91.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzrhkJR_aJSRXvwLWKM7-FqXdg4=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.474608+00 2025-12-09 10:14:46.474612+00 4998 FHXGPK-010-1 SPMX-20240815300129 \N \N \N 1 \N [{"file_id": "7b0656c7-53b1-4ae7-8c62-7eaad4d7d299", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d5e72b128f74007bd5877c20d66b028.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d5e72b128f74007bd5877c20d66b028.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d5e72b128f74007bd5877c20d66b028.jpg", "file_size": 32844, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-010-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5e72b128f74007bd5877c20d66b028.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5e72b128f74007bd5877c20d66b028.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5e72b128f74007bd5877c20d66b028.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d5e72b128f74007bd5877c20d66b028.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d5e72b128f74007bd5877c20d66b028.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AWF9BXPpm3nAxJ6bKoqTsQpcE-I=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.475797+00 2025-12-09 10:14:46.475801+00 4999 LZ1209#上身2号色 SPMX-20240815300135 \N \N \N 1 \N [{"file_id": "43d87c31-7c2f-4af4-95ef-e6ef7e611010", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef16f9ef0b204fdca3941e61cbafdffe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef16f9ef0b204fdca3941e61cbafdffe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef16f9ef0b204fdca3941e61cbafdffe.jpg", "file_size": 16150, "is_delete": false, "file_type": 1, "original_file_name": "LZ1209#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef16f9ef0b204fdca3941e61cbafdffe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef16f9ef0b204fdca3941e61cbafdffe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef16f9ef0b204fdca3941e61cbafdffe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef16f9ef0b204fdca3941e61cbafdffe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef16f9ef0b204fdca3941e61cbafdffe.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:orrmETSufndZYLfTGIZFSWep-K8=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.476981+00 2025-12-09 10:14:46.476985+00 5000 105#-灰色 SPMX-20240815300147 \N \N \N 1 \N [{"file_id": "e96987af-7817-41d8-9b75-012cba680efb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a031a4f98bd94e14a8c18caf2266358d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a031a4f98bd94e14a8c18caf2266358d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a031a4f98bd94e14a8c18caf2266358d.jpg", "file_size": 64892, "is_delete": false, "file_type": 1, "original_file_name": "105#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a031a4f98bd94e14a8c18caf2266358d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a031a4f98bd94e14a8c18caf2266358d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a031a4f98bd94e14a8c18caf2266358d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a031a4f98bd94e14a8c18caf2266358d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a031a4f98bd94e14a8c18caf2266358d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rl1Z11ZdtlqBhRfB4AxIXT_ESVA=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.478188+00 2025-12-09 10:14:46.478193+00 5001 LHJ9229#5#彩兰 SPMX-20240815300137 \N \N \N 1 \N [{"file_id": "276c7f43-d9b0-4bfd-8df3-e51dde5d6596", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "388322f1a2ba4111b0016738e850f7af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "388322f1a2ba4111b0016738e850f7af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "388322f1a2ba4111b0016738e850f7af.jpg", "file_size": 12762, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388322f1a2ba4111b0016738e850f7af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388322f1a2ba4111b0016738e850f7af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388322f1a2ba4111b0016738e850f7af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/388322f1a2ba4111b0016738e850f7af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/388322f1a2ba4111b0016738e850f7af.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uM7uFih4BgEeTDnvtrIZCzU_ESw=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.479375+00 2025-12-09 10:14:46.479379+00 5002 HSH113FW#VS-D3白底 SPMX-20240815300142 \N \N \N 1 \N [{"file_id": "36d1b66e-d82f-4662-8f5b-913d1fba2225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c829d2328e040ac9799afd96e562b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c829d2328e040ac9799afd96e562b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c829d2328e040ac9799afd96e562b7d.jpg", "file_size": 19105, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c829d2328e040ac9799afd96e562b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c829d2328e040ac9799afd96e562b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c829d2328e040ac9799afd96e562b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c829d2328e040ac9799afd96e562b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c829d2328e040ac9799afd96e562b7d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0otu4dRx5B7UYjlXd89oUqLfJk=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.480566+00 2025-12-09 10:14:46.48057+00 5003 23-2101#A32前后片4XL SPMX-20240815300144 \N \N \N 1 \N [{"file_id": "5940d93c-601a-4e48-a508-46f9e8b96fa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e52a0eec742437b8f9758d196898991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e52a0eec742437b8f9758d196898991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e52a0eec742437b8f9758d196898991.jpg", "file_size": 19304, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A32前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52a0eec742437b8f9758d196898991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52a0eec742437b8f9758d196898991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52a0eec742437b8f9758d196898991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e52a0eec742437b8f9758d196898991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e52a0eec742437b8f9758d196898991.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LREwmhbdift4zXbKx6sXKD_uz68=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.481743+00 2025-12-09 10:14:46.481748+00 5004 JS0974-A9#LWQ15 SPMX-20240815300145 \N \N \N 1 \N [{"file_id": "60c569b1-5479-49f6-acf1-a2d780b7832c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f6cfc659b8e4d81a3a537f599e1a839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f6cfc659b8e4d81a3a537f599e1a839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f6cfc659b8e4d81a3a537f599e1a839.jpg", "file_size": 18252, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A9#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6cfc659b8e4d81a3a537f599e1a839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6cfc659b8e4d81a3a537f599e1a839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6cfc659b8e4d81a3a537f599e1a839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f6cfc659b8e4d81a3a537f599e1a839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f6cfc659b8e4d81a3a537f599e1a839.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S16v_0ei8ad1Fq9RRmDyTsPND5Q=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.482941+00 2025-12-09 10:14:46.482945+00 5005 DH20220779FW#XL短袖粉 SPMX-20240815300140 \N \N \N 1 \N [{"file_id": "e6935e6c-07c7-4702-ada9-e71565d35b7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26cd2bf275464bec9c2c535d40d5d930.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26cd2bf275464bec9c2c535d40d5d930.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26cd2bf275464bec9c2c535d40d5d930.jpg", "file_size": 16231, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cd2bf275464bec9c2c535d40d5d930.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cd2bf275464bec9c2c535d40d5d930.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cd2bf275464bec9c2c535d40d5d930.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26cd2bf275464bec9c2c535d40d5d930.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26cd2bf275464bec9c2c535d40d5d930.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sH7_ZybOxTUE_Iytb7v1BDl59xI=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.484151+00 2025-12-09 10:14:46.484155+00 5006 80063#短款下身皮红 SPMX-20240815300139 \N \N \N 1 \N [{"file_id": "ce8e1351-8ef5-4c34-b83e-46e50e0633f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c31a2e458744d5a29fec072295dfdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c31a2e458744d5a29fec072295dfdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c31a2e458744d5a29fec072295dfdc.jpg", "file_size": 16988, "is_delete": false, "file_type": 1, "original_file_name": "80063#短款下身皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c31a2e458744d5a29fec072295dfdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c31a2e458744d5a29fec072295dfdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c31a2e458744d5a29fec072295dfdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c31a2e458744d5a29fec072295dfdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c31a2e458744d5a29fec072295dfdc.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F0hHhYrZIQ1EwluyodR0BNdjf3w=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.485328+00 2025-12-09 10:14:46.485332+00 5007 0002-28FWF#V5曲线 SPMX-20240815300143 \N \N \N 1 \N [{"file_id": "ea07171e-6603-4357-b204-135d9231aaf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b98b36ca774f71bab14dfed2cf80fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b98b36ca774f71bab14dfed2cf80fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b98b36ca774f71bab14dfed2cf80fd.jpg", "file_size": 16175, "is_delete": false, "file_type": 1, "original_file_name": "0002-28FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b98b36ca774f71bab14dfed2cf80fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b98b36ca774f71bab14dfed2cf80fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b98b36ca774f71bab14dfed2cf80fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b98b36ca774f71bab14dfed2cf80fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b98b36ca774f71bab14dfed2cf80fd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bl_TmZNDGB2FIjGYGnwkVzeYy0M=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.486509+00 2025-12-09 10:14:46.486512+00 5008 80063#短袖上衣 SPMX-20240815300150 \N \N \N 1 \N [{"file_id": "4e110790-92e7-427d-b75e-22201af40f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "123d29892d354115803104b0f5dc2eb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "123d29892d354115803104b0f5dc2eb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "123d29892d354115803104b0f5dc2eb2.jpg", "file_size": 21137, "is_delete": false, "file_type": 1, "original_file_name": "80063#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123d29892d354115803104b0f5dc2eb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123d29892d354115803104b0f5dc2eb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123d29892d354115803104b0f5dc2eb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/123d29892d354115803104b0f5dc2eb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/123d29892d354115803104b0f5dc2eb2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tGt_JNHwRaiRAOJWutv6-g1xjE=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.487988+00 2025-12-09 10:14:46.487992+00 5009 C249#黑色 SPMX-20240815300138 \N \N \N 1 \N [{"file_id": "febb4362-9af4-44d6-a44b-6f91f056a6f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da35551623b941fe9c6a63575082094d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da35551623b941fe9c6a63575082094d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da35551623b941fe9c6a63575082094d.jpg", "file_size": 7801, "is_delete": false, "file_type": 1, "original_file_name": "C249#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da35551623b941fe9c6a63575082094d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da35551623b941fe9c6a63575082094d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da35551623b941fe9c6a63575082094d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da35551623b941fe9c6a63575082094d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da35551623b941fe9c6a63575082094d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NAaC7xYxrb8QLOjer_ngeotIRGo=", "createTime": "2024-08-15 14:41:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.489476+00 2025-12-09 10:14:46.48948+00 5010 C25#WJC22 SPMX-20240815300149 \N \N \N 1 \N [{"file_id": "2553877a-4017-4bc7-b122-ef5322cca52e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b842106fe7947e69d56379518c68d9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b842106fe7947e69d56379518c68d9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b842106fe7947e69d56379518c68d9b.jpg", "file_size": 20607, "is_delete": false, "file_type": 1, "original_file_name": "C25#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b842106fe7947e69d56379518c68d9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b842106fe7947e69d56379518c68d9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b842106fe7947e69d56379518c68d9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b842106fe7947e69d56379518c68d9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b842106fe7947e69d56379518c68d9b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JMPyXcwPJ5aJXtUDK8jb-HOWwM=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.490924+00 2025-12-09 10:14:46.490928+00 5011 FHXGPK-010-3 SPMX-20240815300151 \N \N \N 1 \N [{"file_id": "0f51b4e3-ce17-4882-9d42-bca68519471b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1abc405d6f04723882f4ac7ce61cf99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1abc405d6f04723882f4ac7ce61cf99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1abc405d6f04723882f4ac7ce61cf99.jpg", "file_size": 31576, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-010-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1abc405d6f04723882f4ac7ce61cf99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1abc405d6f04723882f4ac7ce61cf99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1abc405d6f04723882f4ac7ce61cf99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1abc405d6f04723882f4ac7ce61cf99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1abc405d6f04723882f4ac7ce61cf99.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fQWGG1E0aqxJyEqfQWRla5nvko=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.492383+00 2025-12-09 10:14:46.492388+00 5012 FHXGPK-010-2 SPMX-20240815300141 \N \N \N 1 \N [{"file_id": "13825a99-603a-4aa9-ab71-1bb34dafe3cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c388544a8ea44bda64127c6072cc2a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c388544a8ea44bda64127c6072cc2a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c388544a8ea44bda64127c6072cc2a5.jpg", "file_size": 35542, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-010-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c388544a8ea44bda64127c6072cc2a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c388544a8ea44bda64127c6072cc2a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c388544a8ea44bda64127c6072cc2a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c388544a8ea44bda64127c6072cc2a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c388544a8ea44bda64127c6072cc2a5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGB3ZVRkCGBPnFDyzNEjxSaKTsI=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.493867+00 2025-12-09 10:14:46.493871+00 5013 LHJ9229#61#橙色 SPMX-20240815300148 \N \N \N 1 \N [{"file_id": "8349ae28-d0aa-465a-b9e3-e960e9b760e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfe0b65c9328457fa311334d021899bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfe0b65c9328457fa311334d021899bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfe0b65c9328457fa311334d021899bf.jpg", "file_size": 11858, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9229#61#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b65c9328457fa311334d021899bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b65c9328457fa311334d021899bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b65c9328457fa311334d021899bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b65c9328457fa311334d021899bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b65c9328457fa311334d021899bf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRRcdn5mE1iwFQDsaQ1voODa928=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.495367+00 2025-12-09 10:14:46.495372+00 5014 LZ1209#上身3号色 SPMX-20240815300146 \N \N \N 1 \N [{"file_id": "65de6d11-c3d8-4997-a9f6-e45ba70b4ef8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95c04a5e80804f60a767e23762ed1e5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95c04a5e80804f60a767e23762ed1e5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95c04a5e80804f60a767e23762ed1e5f.jpg", "file_size": 16772, "is_delete": false, "file_type": 1, "original_file_name": "LZ1209#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c04a5e80804f60a767e23762ed1e5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c04a5e80804f60a767e23762ed1e5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c04a5e80804f60a767e23762ed1e5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95c04a5e80804f60a767e23762ed1e5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95c04a5e80804f60a767e23762ed1e5f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXWor_UhgWCPTsx9H6y1zCpfqQg=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.496865+00 2025-12-09 10:14:46.49687+00 5015 LHJ9230#10#黑兰 SPMX-20240815300157 \N \N \N 1 \N [{"file_id": "6a476ebc-7d87-48e1-993b-9994c6d873b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80f2f89f62424c9595af382c00e6e262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80f2f89f62424c9595af382c00e6e262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80f2f89f62424c9595af382c00e6e262.jpg", "file_size": 11987, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#10#黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f2f89f62424c9595af382c00e6e262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f2f89f62424c9595af382c00e6e262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f2f89f62424c9595af382c00e6e262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80f2f89f62424c9595af382c00e6e262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80f2f89f62424c9595af382c00e6e262.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zH04s-453r4xPtknn0QxOgnX5Pg=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.49842+00 2025-12-09 10:14:46.498424+00 5016 80063#短袖子 SPMX-20240815300161 \N \N \N 1 \N [{"file_id": "45ed6fc8-22fb-4b42-bdf2-83f32a9c827e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c1713cb5294ce499a4ea743c8de57f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c1713cb5294ce499a4ea743c8de57f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c1713cb5294ce499a4ea743c8de57f.jpg", "file_size": 22524, "is_delete": false, "file_type": 1, "original_file_name": "80063#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c1713cb5294ce499a4ea743c8de57f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c1713cb5294ce499a4ea743c8de57f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c1713cb5294ce499a4ea743c8de57f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c1713cb5294ce499a4ea743c8de57f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c1713cb5294ce499a4ea743c8de57f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQKEh9Ll7VFia_qaKcRhAskRTXI=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.499614+00 2025-12-09 10:14:46.499618+00 5017 105#-白色 SPMX-20240815300158 \N \N \N 1 \N [{"file_id": "3405a1b3-07c5-4913-9fb7-ce503fbc4d81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd179d4810b24d348fcf1d1f05cc63a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd179d4810b24d348fcf1d1f05cc63a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd179d4810b24d348fcf1d1f05cc63a5.jpg", "file_size": 55022, "is_delete": false, "file_type": 1, "original_file_name": "105#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd179d4810b24d348fcf1d1f05cc63a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd179d4810b24d348fcf1d1f05cc63a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd179d4810b24d348fcf1d1f05cc63a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd179d4810b24d348fcf1d1f05cc63a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd179d4810b24d348fcf1d1f05cc63a5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t0RJ4zHf-k3BTHTUMV7bhNX7ZyY=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.500819+00 2025-12-09 10:14:46.500823+00 5018 DH20220779FW#XL短袖蓝 SPMX-20240815300163 \N \N \N 1 \N [{"file_id": "d03e1e0c-2f88-4c65-ac2e-02225a21270a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d26e27437d9946b18ec23f3680cf6b52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d26e27437d9946b18ec23f3680cf6b52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d26e27437d9946b18ec23f3680cf6b52.jpg", "file_size": 17084, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26e27437d9946b18ec23f3680cf6b52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26e27437d9946b18ec23f3680cf6b52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26e27437d9946b18ec23f3680cf6b52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d26e27437d9946b18ec23f3680cf6b52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d26e27437d9946b18ec23f3680cf6b52.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNpWbolRsu2cgm53H1nliEVghSs=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.502018+00 2025-12-09 10:14:46.502022+00 5019 FHXGPK-010-4 SPMX-20240815300162 \N \N \N 1 \N [{"file_id": "eb19bdc5-8b96-4333-a160-31ca8de619ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ea50eadcf444b9a9d2ecc56c693f009.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ea50eadcf444b9a9d2ecc56c693f009.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ea50eadcf444b9a9d2ecc56c693f009.jpg", "file_size": 29186, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-010-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea50eadcf444b9a9d2ecc56c693f009.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea50eadcf444b9a9d2ecc56c693f009.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea50eadcf444b9a9d2ecc56c693f009.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ea50eadcf444b9a9d2ecc56c693f009.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ea50eadcf444b9a9d2ecc56c693f009.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGu2qRNuQkSGmEyZ8PlaBd4w9gA=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.503199+00 2025-12-09 10:14:46.503203+00 5020 HSH113FW#VS-D3西红 SPMX-20240815300153 \N \N \N 1 \N [{"file_id": "2a10248e-0be2-4d60-a53b-a1a18640db8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7896e59e6d944c95b8c4e3e43a128bcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7896e59e6d944c95b8c4e3e43a128bcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7896e59e6d944c95b8c4e3e43a128bcf.jpg", "file_size": 18394, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7896e59e6d944c95b8c4e3e43a128bcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7896e59e6d944c95b8c4e3e43a128bcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7896e59e6d944c95b8c4e3e43a128bcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7896e59e6d944c95b8c4e3e43a128bcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7896e59e6d944c95b8c4e3e43a128bcf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUbHz6VtmPTarFvXkmSn-auq7jM=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.50439+00 2025-12-09 10:14:46.504394+00 5021 JS0974-A9#RC23 SPMX-20240815300160 \N \N \N 1 \N [{"file_id": "4645e8e0-4949-4976-9dc2-7a96059bf53d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "478fc446af83406b8009e68ddcd1aaa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "478fc446af83406b8009e68ddcd1aaa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "478fc446af83406b8009e68ddcd1aaa5.jpg", "file_size": 72519, "is_delete": false, "file_type": 1, "original_file_name": "JS0974-A9#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/478fc446af83406b8009e68ddcd1aaa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/478fc446af83406b8009e68ddcd1aaa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/478fc446af83406b8009e68ddcd1aaa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/478fc446af83406b8009e68ddcd1aaa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/478fc446af83406b8009e68ddcd1aaa5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVMyqBc7Fs2XqhO860uloKKqrUw=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.505592+00 2025-12-09 10:14:46.505596+00 5022 23-2101#A32袖子4XL SPMX-20240815300165 \N \N \N 1 \N [{"file_id": "f1f92b8d-e10f-482a-beed-2b799c31b9e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9e51cf4eb15422da895170249a80fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9e51cf4eb15422da895170249a80fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9e51cf4eb15422da895170249a80fb8.jpg", "file_size": 16348, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A32袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e51cf4eb15422da895170249a80fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e51cf4eb15422da895170249a80fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e51cf4eb15422da895170249a80fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9e51cf4eb15422da895170249a80fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9e51cf4eb15422da895170249a80fb8.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hH2dsKfloDsK1cFg7tEmiZAbW3Q=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.506781+00 2025-12-09 10:14:46.506785+00 5023 DH20220779FW#XL短袖绿 SPMX-20240815300152 \N \N \N 1 \N [{"file_id": "cfed6943-ad0a-43bf-968e-cdacc29db95d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2e34c35681f45268fedcfe15dfc877c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2e34c35681f45268fedcfe15dfc877c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2e34c35681f45268fedcfe15dfc877c.jpg", "file_size": 14976, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XL短袖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e34c35681f45268fedcfe15dfc877c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e34c35681f45268fedcfe15dfc877c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e34c35681f45268fedcfe15dfc877c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2e34c35681f45268fedcfe15dfc877c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2e34c35681f45268fedcfe15dfc877c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sp0dqA-wIoFVE0rWu_dhHJsQnSc=", "createTime": "2024-08-15 14:41:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.508019+00 2025-12-09 10:14:46.508024+00 5024 23-2101#A32袖子3XL SPMX-20240815300154 \N \N \N 1 \N [{"file_id": "31ce1bda-bdba-449a-993b-12b50a248c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22ae49145b3d4adeb6d04214caa7dccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22ae49145b3d4adeb6d04214caa7dccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22ae49145b3d4adeb6d04214caa7dccb.jpg", "file_size": 19125, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A32袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ae49145b3d4adeb6d04214caa7dccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ae49145b3d4adeb6d04214caa7dccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ae49145b3d4adeb6d04214caa7dccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22ae49145b3d4adeb6d04214caa7dccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22ae49145b3d4adeb6d04214caa7dccb.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9z6YBxiksaRWZi-zugRA-Y09RE=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.50929+00 2025-12-09 10:14:46.509294+00 5025 LZ1209#上身4号色 SPMX-20240815300156 \N \N \N 1 \N [{"file_id": "f6d8a0bd-a59a-43ad-adc9-d5a3b78e2b9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52a4c8b1e035499db15c1a0561ca1ff4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52a4c8b1e035499db15c1a0561ca1ff4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52a4c8b1e035499db15c1a0561ca1ff4.jpg", "file_size": 17735, "is_delete": false, "file_type": 1, "original_file_name": "LZ1209#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a4c8b1e035499db15c1a0561ca1ff4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a4c8b1e035499db15c1a0561ca1ff4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a4c8b1e035499db15c1a0561ca1ff4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52a4c8b1e035499db15c1a0561ca1ff4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52a4c8b1e035499db15c1a0561ca1ff4.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7ActUtoUQ34_N2O8ay1ehYqHo0=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.510549+00 2025-12-09 10:14:46.510553+00 5026 C250#大白红花 SPMX-20240815300159 \N \N \N 1 \N [{"file_id": "9bfaee74-995c-4244-8893-8c11ddd838df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "966e745c81054cefac0df8bc299ff2f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "966e745c81054cefac0df8bc299ff2f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "966e745c81054cefac0df8bc299ff2f2.jpg", "file_size": 23058, "is_delete": false, "file_type": 1, "original_file_name": "C250#大白红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966e745c81054cefac0df8bc299ff2f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966e745c81054cefac0df8bc299ff2f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966e745c81054cefac0df8bc299ff2f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/966e745c81054cefac0df8bc299ff2f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/966e745c81054cefac0df8bc299ff2f2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pR9OhW_nR3_dMpJA9BnnpM0E6XM=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.511747+00 2025-12-09 10:14:46.511751+00 5027 HSH113FW#VS-D3黑底 SPMX-20240815300164 \N \N \N 1 \N [{"file_id": "6e7ef540-a558-446f-863c-09a22234747e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf3f64f946ad407698892c04bfbbefbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf3f64f946ad407698892c04bfbbefbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf3f64f946ad407698892c04bfbbefbd.jpg", "file_size": 21735, "is_delete": false, "file_type": 1, "original_file_name": "HSH113FW#VS-D3黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3f64f946ad407698892c04bfbbefbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3f64f946ad407698892c04bfbbefbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3f64f946ad407698892c04bfbbefbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf3f64f946ad407698892c04bfbbefbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf3f64f946ad407698892c04bfbbefbd.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZYRbnXYydHWGjTkVXXBrxxRp6w=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.512955+00 2025-12-09 10:14:46.512959+00 5028 0002-2FWE#VS-D3 SPMX-20240815300155 \N \N \N 1 \N [{"file_id": "2518d8c2-eb0b-4f3e-8939-5a7f207b5385", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f0bcaff4ab742008624a368f170ad3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f0bcaff4ab742008624a368f170ad3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f0bcaff4ab742008624a368f170ad3e.jpg", "file_size": 24221, "is_delete": false, "file_type": 1, "original_file_name": "0002-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0bcaff4ab742008624a368f170ad3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0bcaff4ab742008624a368f170ad3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0bcaff4ab742008624a368f170ad3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f0bcaff4ab742008624a368f170ad3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f0bcaff4ab742008624a368f170ad3e.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXRjK5Sff5CnMOYBMPo30vlhawc=", "createTime": "2024-08-15 14:41:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.514194+00 2025-12-09 10:14:46.514198+00 5029 LHJ9230#20#枣红 SPMX-20240815300168 \N \N \N 1 \N [{"file_id": "07b20b94-75ca-425e-bbbd-913ad875429a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7f4ff281e2f4351b7204b6edfcf2acf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7f4ff281e2f4351b7204b6edfcf2acf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7f4ff281e2f4351b7204b6edfcf2acf.jpg", "file_size": 12445, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f4ff281e2f4351b7204b6edfcf2acf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f4ff281e2f4351b7204b6edfcf2acf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f4ff281e2f4351b7204b6edfcf2acf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7f4ff281e2f4351b7204b6edfcf2acf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7f4ff281e2f4351b7204b6edfcf2acf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaRqtY3bt5LqpmvsZMdxj3uq-BQ=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.515522+00 2025-12-09 10:14:46.515526+00 5030 80064#上身批布墨绿 SPMX-20240815300172 \N \N \N 1 \N [{"file_id": "1a9c8d58-d1cb-4fdf-bb7b-533eea51e83c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "949c89f16fe342dbb23807a9eb470174.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "949c89f16fe342dbb23807a9eb470174.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "949c89f16fe342dbb23807a9eb470174.jpg", "file_size": 11303, "is_delete": false, "file_type": 1, "original_file_name": "80064#上身批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949c89f16fe342dbb23807a9eb470174.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949c89f16fe342dbb23807a9eb470174.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949c89f16fe342dbb23807a9eb470174.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/949c89f16fe342dbb23807a9eb470174.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/949c89f16fe342dbb23807a9eb470174.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvdaMPPNcxs2B388cZR99ATF0M4=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.516752+00 2025-12-09 10:14:46.516757+00 5031 HSH114FW#VS-D3 SPMX-20240815300175 \N \N \N 1 \N [{"file_id": "f4ebd49d-fcb2-4686-9ad5-d0fe627d73bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dccf6d6bfb9c48029d52b64d44e953da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dccf6d6bfb9c48029d52b64d44e953da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dccf6d6bfb9c48029d52b64d44e953da.jpg", "file_size": 15776, "is_delete": false, "file_type": 1, "original_file_name": "HSH114FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccf6d6bfb9c48029d52b64d44e953da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccf6d6bfb9c48029d52b64d44e953da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccf6d6bfb9c48029d52b64d44e953da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dccf6d6bfb9c48029d52b64d44e953da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dccf6d6bfb9c48029d52b64d44e953da.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AwchdaA4HIn63klUO3RQpNE-Oxk=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.51796+00 2025-12-09 10:14:46.517964+00 5032 C250#大白黑花 SPMX-20240815300167 \N \N \N 1 \N [{"file_id": "2e13e3da-d2e4-4a6d-ba36-ed80610c86b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db33379bf21a4bac9dcadad3cfc8839b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db33379bf21a4bac9dcadad3cfc8839b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db33379bf21a4bac9dcadad3cfc8839b.jpg", "file_size": 20010, "is_delete": false, "file_type": 1, "original_file_name": "C250#大白黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33379bf21a4bac9dcadad3cfc8839b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33379bf21a4bac9dcadad3cfc8839b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33379bf21a4bac9dcadad3cfc8839b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db33379bf21a4bac9dcadad3cfc8839b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db33379bf21a4bac9dcadad3cfc8839b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u86BR5s1nGOibjz6v7WUGmkARJo=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.519172+00 2025-12-09 10:14:46.519176+00 5033 23-2101#A32领子通用 SPMX-20240815300176 \N \N \N 1 \N [{"file_id": "2d26f416-85c9-4414-937d-b41556e0981d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c19d11c6f00846198fe7d4429e9ae47b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c19d11c6f00846198fe7d4429e9ae47b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c19d11c6f00846198fe7d4429e9ae47b.jpg", "file_size": 12398, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A32领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19d11c6f00846198fe7d4429e9ae47b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19d11c6f00846198fe7d4429e9ae47b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19d11c6f00846198fe7d4429e9ae47b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c19d11c6f00846198fe7d4429e9ae47b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c19d11c6f00846198fe7d4429e9ae47b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hhtNvSwcp0kmpsR-5W6G3JA9YOc=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.520383+00 2025-12-09 10:14:46.520387+00 5034 0002-2FWF#V5曲线 SPMX-20240815300169 \N \N \N 1 \N [{"file_id": "778e6d4b-74be-421c-8800-7133c5d7d4ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1b1e7f26c654bb5a9e62c988c62cbf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1b1e7f26c654bb5a9e62c988c62cbf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1b1e7f26c654bb5a9e62c988c62cbf3.jpg", "file_size": 14393, "is_delete": false, "file_type": 1, "original_file_name": "0002-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1e7f26c654bb5a9e62c988c62cbf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1e7f26c654bb5a9e62c988c62cbf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1e7f26c654bb5a9e62c988c62cbf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1b1e7f26c654bb5a9e62c988c62cbf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1b1e7f26c654bb5a9e62c988c62cbf3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4gQmxhSCYjPKL149mf0xqGKNe4=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.521575+00 2025-12-09 10:14:46.52158+00 5035 DH20220779FW#XS浅蓝短袖 SPMX-20240815300174 \N \N \N 1 \N [{"file_id": "ccb278fd-eebd-4bfe-b383-fa00af5820e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "934d58cdd2e9449da3d59bd663784b8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "934d58cdd2e9449da3d59bd663784b8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "934d58cdd2e9449da3d59bd663784b8d.jpg", "file_size": 9174, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS浅蓝短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934d58cdd2e9449da3d59bd663784b8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934d58cdd2e9449da3d59bd663784b8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934d58cdd2e9449da3d59bd663784b8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/934d58cdd2e9449da3d59bd663784b8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/934d58cdd2e9449da3d59bd663784b8d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpjRg04Wzdhqm-8EomhsMxWLTa4=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.522779+00 2025-12-09 10:14:46.522783+00 5036 JS1013#2XL SPMX-20240815300170 \N \N \N 1 \N [{"file_id": "85a3dcca-dcbb-4671-97b0-fa4e40516092", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c6634821b5453f9aa567fbcb67bc1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c6634821b5453f9aa567fbcb67bc1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c6634821b5453f9aa567fbcb67bc1b.jpg", "file_size": 13471, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c6634821b5453f9aa567fbcb67bc1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c6634821b5453f9aa567fbcb67bc1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c6634821b5453f9aa567fbcb67bc1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c6634821b5453f9aa567fbcb67bc1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c6634821b5453f9aa567fbcb67bc1b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nc2E4tRCpt3uKRefY_lKDdPqFQo=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.52398+00 2025-12-09 10:14:46.523984+00 5037 FHXGPK-010-5 SPMX-20240815300173 \N \N \N 1 \N [{"file_id": "671d7cc7-32e6-4377-882b-b2da3794cc86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48a214a3932146c3a6422ffcab6bdc60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48a214a3932146c3a6422ffcab6bdc60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48a214a3932146c3a6422ffcab6bdc60.jpg", "file_size": 34751, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-010-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48a214a3932146c3a6422ffcab6bdc60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48a214a3932146c3a6422ffcab6bdc60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48a214a3932146c3a6422ffcab6bdc60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48a214a3932146c3a6422ffcab6bdc60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48a214a3932146c3a6422ffcab6bdc60.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2YiIUXUQbOjolbJCOgkocowoI0=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.525187+00 2025-12-09 10:14:46.525192+00 5038 105#-黑色 SPMX-20240815300171 \N \N \N 1 \N [{"file_id": "f717a567-caf4-4264-8186-16c62fd97c74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75d4ae184bd34a9e838b8945437ac72c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75d4ae184bd34a9e838b8945437ac72c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75d4ae184bd34a9e838b8945437ac72c.jpg", "file_size": 57743, "is_delete": false, "file_type": 1, "original_file_name": "105#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d4ae184bd34a9e838b8945437ac72c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d4ae184bd34a9e838b8945437ac72c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d4ae184bd34a9e838b8945437ac72c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75d4ae184bd34a9e838b8945437ac72c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75d4ae184bd34a9e838b8945437ac72c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G540ZLFXwfJRXIq3Hpl6XHPo3Bc=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.526372+00 2025-12-09 10:14:46.526376+00 5039 LZ1209#上身5号色 SPMX-20240815300166 \N \N \N 1 \N [{"file_id": "c758fba8-9a71-4ee7-b809-446481c892d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd4af084399e4edd945940346c0df5a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd4af084399e4edd945940346c0df5a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd4af084399e4edd945940346c0df5a6.jpg", "file_size": 16881, "is_delete": false, "file_type": 1, "original_file_name": "LZ1209#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4af084399e4edd945940346c0df5a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4af084399e4edd945940346c0df5a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4af084399e4edd945940346c0df5a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd4af084399e4edd945940346c0df5a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd4af084399e4edd945940346c0df5a6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEqwPanC_6NuK5ah0lyU-ReJQiE=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.52754+00 2025-12-09 10:14:46.527545+00 5040 LZ120FWF#1号色短袖 SPMX-20240815300177 \N \N \N 1 \N [{"file_id": "3b532fc0-0ca3-4ede-bb2c-f1f64e4a78d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21308455ed324481b8d3421050eb83d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21308455ed324481b8d3421050eb83d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21308455ed324481b8d3421050eb83d0.jpg", "file_size": 20308, "is_delete": false, "file_type": 1, "original_file_name": "LZ120FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21308455ed324481b8d3421050eb83d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21308455ed324481b8d3421050eb83d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21308455ed324481b8d3421050eb83d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21308455ed324481b8d3421050eb83d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21308455ed324481b8d3421050eb83d0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYaCZOUvTmcdvedRU5_54IJCV6Y=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.528744+00 2025-12-09 10:14:46.528747+00 5041 C250#黑底白花 SPMX-20240815300189 \N \N \N 1 \N [{"file_id": "2c6e7519-7164-477d-b99a-c28c83a5d877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f03ebb872324a56816019a12f19aa4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f03ebb872324a56816019a12f19aa4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f03ebb872324a56816019a12f19aa4a.jpg", "file_size": 20825, "is_delete": false, "file_type": 1, "original_file_name": "C250#黑底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f03ebb872324a56816019a12f19aa4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f03ebb872324a56816019a12f19aa4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f03ebb872324a56816019a12f19aa4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f03ebb872324a56816019a12f19aa4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f03ebb872324a56816019a12f19aa4a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8yQ6Hg81V8nSw8Si4uo20WcpvE=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.529945+00 2025-12-09 10:14:46.529949+00 5042 105#WJC22 SPMX-20240815300181 \N \N \N 1 \N [{"file_id": "448b3fa4-69ea-48fa-bec2-14869972e0aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg", "file_size": 24059, "is_delete": false, "file_type": 1, "original_file_name": "105#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e5e7bebdc7e4874a2f162ce8deb9dc7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qt0PZliY2ehuTiDrhenXcoA6HeU=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.531136+00 2025-12-09 10:14:46.53114+00 5043 DH20220779FW#XS短袖口橙 SPMX-20240815300184 \N \N \N 1 \N [{"file_id": "98c78a03-fc61-4819-85ac-e46801f75540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc5beb017a514959b5a234fdacaff3bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc5beb017a514959b5a234fdacaff3bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc5beb017a514959b5a234fdacaff3bf.jpg", "file_size": 12923, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5beb017a514959b5a234fdacaff3bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5beb017a514959b5a234fdacaff3bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5beb017a514959b5a234fdacaff3bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc5beb017a514959b5a234fdacaff3bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc5beb017a514959b5a234fdacaff3bf.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyJ--zp75XtDTL76d3plujKyX8Y=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.532466+00 2025-12-09 10:14:46.532471+00 5044 C250#绿底白花 SPMX-20240815300178 \N \N \N 1 \N [{"file_id": "6de941e8-0f31-4d68-be53-ebf6801be257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "debcdffd4e21435faf733755d6c61679.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "debcdffd4e21435faf733755d6c61679.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "debcdffd4e21435faf733755d6c61679.jpg", "file_size": 21120, "is_delete": false, "file_type": 1, "original_file_name": "C250#绿底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/debcdffd4e21435faf733755d6c61679.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/debcdffd4e21435faf733755d6c61679.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/debcdffd4e21435faf733755d6c61679.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/debcdffd4e21435faf733755d6c61679.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/debcdffd4e21435faf733755d6c61679.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoNfWYqZ-8m8rMNlESMrZqkjnK4=", "createTime": "2024-08-15 14:41:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.533928+00 2025-12-09 10:14:46.533933+00 5045 LHJ9230#32#黑绿 SPMX-20240815300179 \N \N \N 1 \N [{"file_id": "d3cfc952-b859-45a7-bfff-9d298cb83f84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8eea2efd194ebc8e9fdc359ce93c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8eea2efd194ebc8e9fdc359ce93c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8eea2efd194ebc8e9fdc359ce93c2a.jpg", "file_size": 12675, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#32#黑绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8eea2efd194ebc8e9fdc359ce93c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8eea2efd194ebc8e9fdc359ce93c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8eea2efd194ebc8e9fdc359ce93c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8eea2efd194ebc8e9fdc359ce93c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8eea2efd194ebc8e9fdc359ce93c2a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcsKsfmLTecJGMPs52IsNAmZBto=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.535219+00 2025-12-09 10:14:46.535224+00 5046 JS1013#L SPMX-20240815300180 \N \N \N 1 \N [{"file_id": "47d8ca8f-10fd-4cfe-9129-c2d562d5486a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0143365a16954f3b8e69d27ba5a1eeaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0143365a16954f3b8e69d27ba5a1eeaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0143365a16954f3b8e69d27ba5a1eeaa.jpg", "file_size": 14228, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0143365a16954f3b8e69d27ba5a1eeaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0143365a16954f3b8e69d27ba5a1eeaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0143365a16954f3b8e69d27ba5a1eeaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0143365a16954f3b8e69d27ba5a1eeaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0143365a16954f3b8e69d27ba5a1eeaa.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pbG1mKcBrw3JyLAAMie4zKo--s=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.536534+00 2025-12-09 10:14:46.536538+00 5047 FHXGPK-011-1 SPMX-20240815300186 \N \N \N 1 \N [{"file_id": "30b64499-60b1-4e8d-9378-0f1dd29cda9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f42ffe65d9741d08aaea4d1c2f2ee29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f42ffe65d9741d08aaea4d1c2f2ee29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f42ffe65d9741d08aaea4d1c2f2ee29.jpg", "file_size": 34902, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-011-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f42ffe65d9741d08aaea4d1c2f2ee29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f42ffe65d9741d08aaea4d1c2f2ee29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f42ffe65d9741d08aaea4d1c2f2ee29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f42ffe65d9741d08aaea4d1c2f2ee29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f42ffe65d9741d08aaea4d1c2f2ee29.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L77BJt0toIjutxVo0t8KkscGAXE=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.537865+00 2025-12-09 10:14:46.53787+00 5048 23-2101#A33前后片3XL SPMX-20240815300185 \N \N \N 1 \N [{"file_id": "d1aa0a2f-480a-403f-a973-82aabda08b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "036709a3280341a1aa41bb36b192d211.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "036709a3280341a1aa41bb36b192d211.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "036709a3280341a1aa41bb36b192d211.jpg", "file_size": 9403, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A33前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036709a3280341a1aa41bb36b192d211.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036709a3280341a1aa41bb36b192d211.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036709a3280341a1aa41bb36b192d211.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/036709a3280341a1aa41bb36b192d211.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/036709a3280341a1aa41bb36b192d211.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGQjUpWM-7867GhN_hgrm5p9O6A=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.539104+00 2025-12-09 10:14:46.539112+00 5049 0002-30FWF#V5曲线 SPMX-20240815300182 \N \N \N 1 \N [{"file_id": "ca027062-83d5-48b5-a421-da23e42a6a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7695f1c760fa48e4a718ed51e17faa2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7695f1c760fa48e4a718ed51e17faa2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7695f1c760fa48e4a718ed51e17faa2f.jpg", "file_size": 24176, "is_delete": false, "file_type": 1, "original_file_name": "0002-30FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7695f1c760fa48e4a718ed51e17faa2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7695f1c760fa48e4a718ed51e17faa2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7695f1c760fa48e4a718ed51e17faa2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7695f1c760fa48e4a718ed51e17faa2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7695f1c760fa48e4a718ed51e17faa2f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pnn7Yl16d6NucFpBC1LpVnEc6I=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.540341+00 2025-12-09 10:14:46.540345+00 5050 HSH115FW#VS-D3 SPMX-20240815300187 \N \N \N 1 \N [{"file_id": "45e59e52-9ecb-49ef-b944-a9145412d74d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58c58f3916174266a02dc7208d91a869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58c58f3916174266a02dc7208d91a869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58c58f3916174266a02dc7208d91a869.jpg", "file_size": 19819, "is_delete": false, "file_type": 1, "original_file_name": "HSH115FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c58f3916174266a02dc7208d91a869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c58f3916174266a02dc7208d91a869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c58f3916174266a02dc7208d91a869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58c58f3916174266a02dc7208d91a869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58c58f3916174266a02dc7208d91a869.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXhWDmeHJDA93PryelPWPqKBzCk=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.541576+00 2025-12-09 10:14:46.54158+00 5051 LZ120FWF#2号色短袖 SPMX-20240815300188 \N \N \N 1 \N [{"file_id": "31502c53-7431-42a5-a301-703ba0ec5844", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07ef723b258a4662b2c43295a5dc6553.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07ef723b258a4662b2c43295a5dc6553.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07ef723b258a4662b2c43295a5dc6553.jpg", "file_size": 19401, "is_delete": false, "file_type": 1, "original_file_name": "LZ120FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ef723b258a4662b2c43295a5dc6553.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ef723b258a4662b2c43295a5dc6553.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ef723b258a4662b2c43295a5dc6553.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07ef723b258a4662b2c43295a5dc6553.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07ef723b258a4662b2c43295a5dc6553.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIn2-KOvs1xGiiR5gyhBHX_--rU=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.542786+00 2025-12-09 10:14:46.54279+00 5052 80064#上身批布彩兰 SPMX-20240815300183 \N \N \N 1 \N [{"file_id": "d4c5bf32-db97-4441-8f4b-b9a14326d425", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "032e7125d8a24fc383aa9fee7033eb7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "032e7125d8a24fc383aa9fee7033eb7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "032e7125d8a24fc383aa9fee7033eb7d.jpg", "file_size": 11047, "is_delete": false, "file_type": 1, "original_file_name": "80064#上身批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032e7125d8a24fc383aa9fee7033eb7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032e7125d8a24fc383aa9fee7033eb7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032e7125d8a24fc383aa9fee7033eb7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/032e7125d8a24fc383aa9fee7033eb7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/032e7125d8a24fc383aa9fee7033eb7d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5HApS7PL7LQhnRmNZr-rVmyvhI=", "createTime": "2024-08-15 14:41:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.543995+00 2025-12-09 10:14:46.543999+00 5053 LHJ9230#37#梅红 SPMX-20240815300193 \N \N \N 1 \N [{"file_id": "c77b4d54-e617-4889-b5b6-5553d4bf99d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "878e84d31f6b4bdda4e4c4d66dd08d8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "878e84d31f6b4bdda4e4c4d66dd08d8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "878e84d31f6b4bdda4e4c4d66dd08d8d.jpg", "file_size": 10984, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/878e84d31f6b4bdda4e4c4d66dd08d8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/878e84d31f6b4bdda4e4c4d66dd08d8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/878e84d31f6b4bdda4e4c4d66dd08d8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/878e84d31f6b4bdda4e4c4d66dd08d8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/878e84d31f6b4bdda4e4c4d66dd08d8d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-aAZ37DtrUnhCPROU-_wl3VcvM=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.54522+00 2025-12-09 10:14:46.545224+00 5054 FHXGPK-011-2 SPMX-20240815300195 \N \N \N 1 \N [{"file_id": "c30dbf9b-4dab-444a-a477-09a23d32c785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3342bdb062b14a009ea40f402ec67335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3342bdb062b14a009ea40f402ec67335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3342bdb062b14a009ea40f402ec67335.jpg", "file_size": 37135, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-011-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342bdb062b14a009ea40f402ec67335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342bdb062b14a009ea40f402ec67335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342bdb062b14a009ea40f402ec67335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3342bdb062b14a009ea40f402ec67335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3342bdb062b14a009ea40f402ec67335.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mmd-JNyeWgjoVMeU8cSE9NG4Dw=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.546411+00 2025-12-09 10:14:46.546415+00 5055 LZ120FWF#3号色短袖 SPMX-20240815300197 \N \N \N 1 \N [{"file_id": "4ce95f76-9d9f-4899-9444-37fee6474d75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f52b838930364f24a141d7ed91ed108d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f52b838930364f24a141d7ed91ed108d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f52b838930364f24a141d7ed91ed108d.jpg", "file_size": 18857, "is_delete": false, "file_type": 1, "original_file_name": "LZ120FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b838930364f24a141d7ed91ed108d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b838930364f24a141d7ed91ed108d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b838930364f24a141d7ed91ed108d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f52b838930364f24a141d7ed91ed108d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f52b838930364f24a141d7ed91ed108d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikNyUVrqmaoqtB-GoOX7pJAAs1k=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.547592+00 2025-12-09 10:14:46.547596+00 5056 HSH116FW#VS-D3 SPMX-20240815300199 \N \N \N 1 \N [{"file_id": "f4ad19c7-8cfc-447d-9df7-633c1c254321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c9e2c12f274d87a01b7b6e438f158d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c9e2c12f274d87a01b7b6e438f158d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c9e2c12f274d87a01b7b6e438f158d.jpg", "file_size": 23066, "is_delete": false, "file_type": 1, "original_file_name": "HSH116FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c9e2c12f274d87a01b7b6e438f158d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c9e2c12f274d87a01b7b6e438f158d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c9e2c12f274d87a01b7b6e438f158d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c9e2c12f274d87a01b7b6e438f158d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c9e2c12f274d87a01b7b6e438f158d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUgx-obCksOZwsA3wL8tN9l1xF0=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.548827+00 2025-12-09 10:14:46.548831+00 5057 105#黄色 SPMX-20240815300190 \N \N \N 1 \N [{"file_id": "a96f6d64-f368-4442-8b06-2474b2acf38d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe8575b393a44ac3bfae5d71d468d7d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe8575b393a44ac3bfae5d71d468d7d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe8575b393a44ac3bfae5d71d468d7d3.jpg", "file_size": 13863, "is_delete": false, "file_type": 1, "original_file_name": "105#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8575b393a44ac3bfae5d71d468d7d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8575b393a44ac3bfae5d71d468d7d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8575b393a44ac3bfae5d71d468d7d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe8575b393a44ac3bfae5d71d468d7d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe8575b393a44ac3bfae5d71d468d7d3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJ6_07n0oiZOyb9HH9SMvi1cMT8=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.55003+00 2025-12-09 10:14:46.550034+00 5058 23-2101#A33前后片4XL SPMX-20240815300191 \N \N \N 1 \N [{"file_id": "8904bb15-f7d2-40ec-8422-fcc86fd6608c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "392b7b09c9b74747bdc96599fa233469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "392b7b09c9b74747bdc96599fa233469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "392b7b09c9b74747bdc96599fa233469.jpg", "file_size": 9450, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A33前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392b7b09c9b74747bdc96599fa233469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392b7b09c9b74747bdc96599fa233469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392b7b09c9b74747bdc96599fa233469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/392b7b09c9b74747bdc96599fa233469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/392b7b09c9b74747bdc96599fa233469.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DPL76YCQAaap-sKw25n-mrw6rjo=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.551253+00 2025-12-09 10:14:46.551257+00 5059 80064#上身批布枣红 SPMX-20240815300194 \N \N \N 1 \N [{"file_id": "fdb0679f-cfec-4df0-a2b1-9cf71b0cb652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d8d53276ffd49698c27b6eb424db91b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d8d53276ffd49698c27b6eb424db91b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d8d53276ffd49698c27b6eb424db91b.jpg", "file_size": 10972, "is_delete": false, "file_type": 1, "original_file_name": "80064#上身批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8d53276ffd49698c27b6eb424db91b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8d53276ffd49698c27b6eb424db91b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8d53276ffd49698c27b6eb424db91b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d8d53276ffd49698c27b6eb424db91b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d8d53276ffd49698c27b6eb424db91b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kwW0vdIYj0EktmDcTcijCL1B-_c=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.552457+00 2025-12-09 10:14:46.552461+00 5060 C250-1#大白红花 SPMX-20240815300196 \N \N \N 1 \N [{"file_id": "561fc2c3-fef8-4851-81f3-1e332b164da9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6704480b6e044f41891152125839c041.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6704480b6e044f41891152125839c041.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6704480b6e044f41891152125839c041.jpg", "file_size": 22121, "is_delete": false, "file_type": 1, "original_file_name": "C250-1#大白红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6704480b6e044f41891152125839c041.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6704480b6e044f41891152125839c041.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6704480b6e044f41891152125839c041.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6704480b6e044f41891152125839c041.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6704480b6e044f41891152125839c041.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dD-dB_0f9IAY5TXPDVXQP62FmAo=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.553741+00 2025-12-09 10:14:46.553747+00 5061 DH20220779FW#XS短袖口浅蓝 SPMX-20240815300198 \N \N \N 1 \N [{"file_id": "c4ba1f49-4488-46d6-94cb-71da9171faf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8e1f1b9b274e6c98fd385299eee26c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8e1f1b9b274e6c98fd385299eee26c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8e1f1b9b274e6c98fd385299eee26c.jpg", "file_size": 10925, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8e1f1b9b274e6c98fd385299eee26c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8e1f1b9b274e6c98fd385299eee26c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8e1f1b9b274e6c98fd385299eee26c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8e1f1b9b274e6c98fd385299eee26c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8e1f1b9b274e6c98fd385299eee26c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ee_XY3YHOCexZ-4N5ehxflZQb30=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.554981+00 2025-12-09 10:14:46.554985+00 5062 JS1013#M SPMX-20240815300192 \N \N \N 1 \N [{"file_id": "7ec4d22f-cad1-43b4-a4ea-a4356ada8c19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c208a098b02448ab0351329624b59ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c208a098b02448ab0351329624b59ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c208a098b02448ab0351329624b59ec.jpg", "file_size": 14931, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c208a098b02448ab0351329624b59ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c208a098b02448ab0351329624b59ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c208a098b02448ab0351329624b59ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c208a098b02448ab0351329624b59ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c208a098b02448ab0351329624b59ec.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEm2LbzbHJBx20u0TYGfHtttWP0=", "createTime": "2024-08-15 14:41:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.556205+00 2025-12-09 10:14:46.556209+00 5063 0002-32FWF#粉色 SPMX-20240815300200 \N \N \N 1 \N [{"file_id": "7bc2a4d3-7040-4faf-944a-87791446d591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "960414680a30444ea052103c6cb02221.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "960414680a30444ea052103c6cb02221.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "960414680a30444ea052103c6cb02221.jpg", "file_size": 16445, "is_delete": false, "file_type": 1, "original_file_name": "0002-32FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960414680a30444ea052103c6cb02221.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960414680a30444ea052103c6cb02221.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960414680a30444ea052103c6cb02221.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/960414680a30444ea052103c6cb02221.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/960414680a30444ea052103c6cb02221.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mG5Uhx5en_eQkCr5vKYQ1Cpbyj4=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.557392+00 2025-12-09 10:14:46.557396+00 5064 C250-1#大白黑花 SPMX-20240815300211 \N \N \N 1 \N [{"file_id": "507d91b9-71d6-4197-860c-3c17c9ca989e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "572e6fafddc342a8b6fa9908b5167021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "572e6fafddc342a8b6fa9908b5167021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "572e6fafddc342a8b6fa9908b5167021.jpg", "file_size": 19851, "is_delete": false, "file_type": 1, "original_file_name": "C250-1#大白黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6fafddc342a8b6fa9908b5167021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6fafddc342a8b6fa9908b5167021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6fafddc342a8b6fa9908b5167021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/572e6fafddc342a8b6fa9908b5167021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/572e6fafddc342a8b6fa9908b5167021.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NwZNfujU8-YBDktSzot8XfCzKuY=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.558583+00 2025-12-09 10:14:46.558588+00 5065 1050#宝蓝 SPMX-20240815300202 \N \N \N 1 \N [{"file_id": "bfbac410-d864-4d08-8177-b624c86c7ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6064ce2cbbf4dbfb6752f52262b1dc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6064ce2cbbf4dbfb6752f52262b1dc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6064ce2cbbf4dbfb6752f52262b1dc2.jpg", "file_size": 22013, "is_delete": false, "file_type": 1, "original_file_name": "1050#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6064ce2cbbf4dbfb6752f52262b1dc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6064ce2cbbf4dbfb6752f52262b1dc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6064ce2cbbf4dbfb6752f52262b1dc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6064ce2cbbf4dbfb6752f52262b1dc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6064ce2cbbf4dbfb6752f52262b1dc2.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTQ81oBqykLiIZRVlg4tJWXKJz4=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.578563+00 2025-12-09 10:14:46.578568+00 5079 FHXGPK-011-4 SPMX-20240815300216 \N \N \N 1 \N [{"file_id": "97bd0ee3-b395-43cb-821f-1c1d708f170b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e3327054aa94fda81b14af1f0d1ad2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e3327054aa94fda81b14af1f0d1ad2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e3327054aa94fda81b14af1f0d1ad2a.jpg", "file_size": 31741, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-011-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3327054aa94fda81b14af1f0d1ad2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3327054aa94fda81b14af1f0d1ad2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3327054aa94fda81b14af1f0d1ad2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e3327054aa94fda81b14af1f0d1ad2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e3327054aa94fda81b14af1f0d1ad2a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgJMWL_uQYH1eGFjA3BGiZNA_EY=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.559783+00 2025-12-09 10:14:46.559787+00 5066 23-2101#A33袖子4XL SPMX-20240815300212 \N \N \N 1 \N [{"file_id": "22e7309a-86ad-4f3d-b9a4-cf71488487b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df8dc4fc7924467c9cd21e5be1b07d96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df8dc4fc7924467c9cd21e5be1b07d96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df8dc4fc7924467c9cd21e5be1b07d96.jpg", "file_size": 8862, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A33袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8dc4fc7924467c9cd21e5be1b07d96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8dc4fc7924467c9cd21e5be1b07d96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8dc4fc7924467c9cd21e5be1b07d96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df8dc4fc7924467c9cd21e5be1b07d96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df8dc4fc7924467c9cd21e5be1b07d96.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3U9u12jes6EZRRw1H6b72WBfvE=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.560983+00 2025-12-09 10:14:46.560987+00 5067 0002-32FWF#绿色 SPMX-20240815300209 \N \N \N 1 \N [{"file_id": "2480ede6-350b-4d8a-8d56-521add076baf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "459d6f18799f4fe49140c0b2d0d2f24f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "459d6f18799f4fe49140c0b2d0d2f24f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "459d6f18799f4fe49140c0b2d0d2f24f.jpg", "file_size": 15529, "is_delete": false, "file_type": 1, "original_file_name": "0002-32FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459d6f18799f4fe49140c0b2d0d2f24f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459d6f18799f4fe49140c0b2d0d2f24f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459d6f18799f4fe49140c0b2d0d2f24f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/459d6f18799f4fe49140c0b2d0d2f24f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/459d6f18799f4fe49140c0b2d0d2f24f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aN_SRKZpZJGUqOdDO2fMb8TbIz8=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.562176+00 2025-12-09 10:14:46.56218+00 5068 JS1013#S SPMX-20240815300203 \N \N \N 1 \N [{"file_id": "a63c53a7-fe3c-4013-a9b5-5944dbcdd6e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "218bcaecb5084da6b642add8e6085ac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "218bcaecb5084da6b642add8e6085ac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "218bcaecb5084da6b642add8e6085ac7.jpg", "file_size": 15375, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218bcaecb5084da6b642add8e6085ac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218bcaecb5084da6b642add8e6085ac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218bcaecb5084da6b642add8e6085ac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/218bcaecb5084da6b642add8e6085ac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/218bcaecb5084da6b642add8e6085ac7.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHwhDvyKQc8UYCNstWFKt3zL-FI=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.563586+00 2025-12-09 10:14:46.563591+00 5069 80064#上身批布皮红 SPMX-20240815300206 \N \N \N 1 \N [{"file_id": "3d86b2e2-4123-472a-9aae-cf35d3595eea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea90266e8d1f41a4a3f8bb69d1b0d873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea90266e8d1f41a4a3f8bb69d1b0d873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea90266e8d1f41a4a3f8bb69d1b0d873.jpg", "file_size": 9893, "is_delete": false, "file_type": 1, "original_file_name": "80064#上身批布皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea90266e8d1f41a4a3f8bb69d1b0d873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea90266e8d1f41a4a3f8bb69d1b0d873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea90266e8d1f41a4a3f8bb69d1b0d873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea90266e8d1f41a4a3f8bb69d1b0d873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea90266e8d1f41a4a3f8bb69d1b0d873.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IguKxcYZMVQ4QgwDwsfTTY18tos=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.565067+00 2025-12-09 10:14:46.565073+00 5070 DH20220779FW#XS短袖口灰 SPMX-20240815300210 \N \N \N 1 \N [{"file_id": "a0178b3a-1a4a-4058-82c4-3bf347e04d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea872bcaa5ac4a9b9a38124392f70045.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea872bcaa5ac4a9b9a38124392f70045.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea872bcaa5ac4a9b9a38124392f70045.jpg", "file_size": 10144, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea872bcaa5ac4a9b9a38124392f70045.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea872bcaa5ac4a9b9a38124392f70045.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea872bcaa5ac4a9b9a38124392f70045.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea872bcaa5ac4a9b9a38124392f70045.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea872bcaa5ac4a9b9a38124392f70045.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjya1rUAc_UslFrU3r7lF6CiPdk=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.566583+00 2025-12-09 10:14:46.566587+00 5071 LZ120FWF#4号色短袖 SPMX-20240815300207 \N \N \N 1 \N [{"file_id": "6e39a75f-2515-4060-b7ae-4c4f193c5f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f6e0c75094543df84620466f648758a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f6e0c75094543df84620466f648758a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f6e0c75094543df84620466f648758a.jpg", "file_size": 20263, "is_delete": false, "file_type": 1, "original_file_name": "LZ120FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e0c75094543df84620466f648758a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e0c75094543df84620466f648758a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e0c75094543df84620466f648758a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f6e0c75094543df84620466f648758a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f6e0c75094543df84620466f648758a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uuc1a-IEcYcfG_pGn5ebooOKOiQ=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.568+00 2025-12-09 10:14:46.568005+00 5072 HSH117FW#VS-D3 SPMX-20240815300208 \N \N \N 1 \N [{"file_id": "fcea3f54-6e6c-4599-a446-9d7e6d0abd0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a180def0d024717aa0eb71f7c5d1464.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a180def0d024717aa0eb71f7c5d1464.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a180def0d024717aa0eb71f7c5d1464.jpg", "file_size": 18791, "is_delete": false, "file_type": 1, "original_file_name": "HSH117FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a180def0d024717aa0eb71f7c5d1464.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a180def0d024717aa0eb71f7c5d1464.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a180def0d024717aa0eb71f7c5d1464.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a180def0d024717aa0eb71f7c5d1464.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a180def0d024717aa0eb71f7c5d1464.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uKhypguiDAw-uAvIiDkPbuzOu0=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.569416+00 2025-12-09 10:14:46.569421+00 5073 LHJ9230#5#彩兰 SPMX-20240815300204 \N \N \N 1 \N [{"file_id": "34cbd9df-abc8-4418-b959-44f1edf8768d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e31060e30e0d412f833584279ac18f5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e31060e30e0d412f833584279ac18f5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e31060e30e0d412f833584279ac18f5b.jpg", "file_size": 13878, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31060e30e0d412f833584279ac18f5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31060e30e0d412f833584279ac18f5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31060e30e0d412f833584279ac18f5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e31060e30e0d412f833584279ac18f5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e31060e30e0d412f833584279ac18f5b.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVngiirmoDJWwfHoVsdY2W7TyoI=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.570821+00 2025-12-09 10:14:46.570826+00 5074 23-2101#A33袖子3XL SPMX-20240815300201 \N \N \N 1 \N [{"file_id": "15076779-d08d-443b-8ea5-4f99d8f7bb2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af129ac4028f4ffb95f07097f8a9f144.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af129ac4028f4ffb95f07097f8a9f144.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af129ac4028f4ffb95f07097f8a9f144.jpg", "file_size": 9295, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A33袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af129ac4028f4ffb95f07097f8a9f144.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af129ac4028f4ffb95f07097f8a9f144.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af129ac4028f4ffb95f07097f8a9f144.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af129ac4028f4ffb95f07097f8a9f144.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af129ac4028f4ffb95f07097f8a9f144.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUPp6mrV85nOvZLMmRg3SE0PP1s=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.572513+00 2025-12-09 10:14:46.572517+00 5075 1050#宝蓝匹布 SPMX-20240815300213 \N \N \N 1 \N [{"file_id": "630f3fb7-c000-4e07-8e36-c4522efc2a47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fd7b402ea97488491a0f0c66cc331c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fd7b402ea97488491a0f0c66cc331c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fd7b402ea97488491a0f0c66cc331c0.jpg", "file_size": 15489, "is_delete": false, "file_type": 1, "original_file_name": "1050#宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd7b402ea97488491a0f0c66cc331c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd7b402ea97488491a0f0c66cc331c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fd7b402ea97488491a0f0c66cc331c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fd7b402ea97488491a0f0c66cc331c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fd7b402ea97488491a0f0c66cc331c0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFXcmYUKiXNqfIFaSDNAq8Eosmo=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.573918+00 2025-12-09 10:14:46.573922+00 5076 FHXGPK-011-3 SPMX-20240815300205 \N \N \N 1 \N [{"file_id": "8e34bf38-c7ef-4540-9560-1d27e2a9d578", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09c6dc8697334c7d9ddfbd5ccb0597b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09c6dc8697334c7d9ddfbd5ccb0597b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09c6dc8697334c7d9ddfbd5ccb0597b0.jpg", "file_size": 36006, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-011-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c6dc8697334c7d9ddfbd5ccb0597b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c6dc8697334c7d9ddfbd5ccb0597b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09c6dc8697334c7d9ddfbd5ccb0597b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09c6dc8697334c7d9ddfbd5ccb0597b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09c6dc8697334c7d9ddfbd5ccb0597b0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwDUNZd6tZ8GNasEuxhM-qJl3Z4=", "createTime": "2024-08-15 14:41:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.575303+00 2025-12-09 10:14:46.575308+00 5077 LHJ9230#61#橙色 SPMX-20240815300215 \N \N \N 1 \N [{"file_id": "f411b688-aedb-4236-b906-93c3f10a685c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b504cd4934e54d599619e46755df93d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b504cd4934e54d599619e46755df93d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b504cd4934e54d599619e46755df93d0.jpg", "file_size": 11946, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9230#61#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b504cd4934e54d599619e46755df93d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b504cd4934e54d599619e46755df93d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b504cd4934e54d599619e46755df93d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b504cd4934e54d599619e46755df93d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b504cd4934e54d599619e46755df93d0.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5H5iaWWt6sMaLnSYgimkHuu-uQ=", "createTime": "2024-08-15 14:41:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.577183+00 2025-12-09 10:14:46.577187+00 5078 JS1013#XL SPMX-20240815300214 \N \N \N 1 \N [{"file_id": "a32a011b-ba8f-49c5-9326-d107ffcc022e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08dfecf2f0404245811ca65fe9fff904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08dfecf2f0404245811ca65fe9fff904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08dfecf2f0404245811ca65fe9fff904.jpg", "file_size": 14208, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dfecf2f0404245811ca65fe9fff904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dfecf2f0404245811ca65fe9fff904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dfecf2f0404245811ca65fe9fff904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08dfecf2f0404245811ca65fe9fff904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08dfecf2f0404245811ca65fe9fff904.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymnSNECpVusxBx952sfGm470Srg=", "createTime": "2024-08-15 14:41:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.579952+00 2025-12-09 10:14:46.579957+00 5080 80064#长款下身墨绿 SPMX-20240815300217 \N \N \N 1 \N [{"file_id": "407ae2e3-292b-4f9a-b18d-91f08d487b4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bec857a403bb424bb5f26fa3948b432c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bec857a403bb424bb5f26fa3948b432c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bec857a403bb424bb5f26fa3948b432c.jpg", "file_size": 15231, "is_delete": false, "file_type": 1, "original_file_name": "80064#长款下身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec857a403bb424bb5f26fa3948b432c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec857a403bb424bb5f26fa3948b432c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec857a403bb424bb5f26fa3948b432c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bec857a403bb424bb5f26fa3948b432c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bec857a403bb424bb5f26fa3948b432c.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-R5KkGuVsorO_fBDyUC8YcztHWM=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.581366+00 2025-12-09 10:14:46.581371+00 5081 23-2101#A33领子通用 SPMX-20240815300221 \N \N \N 1 \N [{"file_id": "dad29e59-9df8-4f16-8349-76ae8e6c8fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c6bf91d91b044fb80d54e8f48ca08e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c6bf91d91b044fb80d54e8f48ca08e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c6bf91d91b044fb80d54e8f48ca08e5.jpg", "file_size": 8913, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A33领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6bf91d91b044fb80d54e8f48ca08e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6bf91d91b044fb80d54e8f48ca08e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6bf91d91b044fb80d54e8f48ca08e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c6bf91d91b044fb80d54e8f48ca08e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c6bf91d91b044fb80d54e8f48ca08e5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yuTJTx6CLoCOSR9Eto0_VQrDOOA=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.582772+00 2025-12-09 10:14:46.582777+00 5082 1050#灰色 SPMX-20240815300223 \N \N \N 1 \N [{"file_id": "5ea97808-27ec-49d5-8bc6-adf58f390217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "105e9b96a90346ccb5f6da10f56c6730.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "105e9b96a90346ccb5f6da10f56c6730.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "105e9b96a90346ccb5f6da10f56c6730.jpg", "file_size": 19952, "is_delete": false, "file_type": 1, "original_file_name": "1050#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105e9b96a90346ccb5f6da10f56c6730.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105e9b96a90346ccb5f6da10f56c6730.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105e9b96a90346ccb5f6da10f56c6730.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/105e9b96a90346ccb5f6da10f56c6730.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/105e9b96a90346ccb5f6da10f56c6730.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PanEbVRudw__-E52aP0jn38Od7Q=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.584172+00 2025-12-09 10:14:46.584177+00 5083 C250-1#绿底白花 SPMX-20240815300220 \N \N \N 1 \N [{"file_id": "064f2e45-2958-46a2-8711-fbe8271b31fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a74b31ebfc4b6c8604e9843356dd64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a74b31ebfc4b6c8604e9843356dd64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a74b31ebfc4b6c8604e9843356dd64.jpg", "file_size": 21401, "is_delete": false, "file_type": 1, "original_file_name": "C250-1#绿底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a74b31ebfc4b6c8604e9843356dd64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a74b31ebfc4b6c8604e9843356dd64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a74b31ebfc4b6c8604e9843356dd64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a74b31ebfc4b6c8604e9843356dd64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a74b31ebfc4b6c8604e9843356dd64.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOPvO1AyEN01D2h3OIBvd1ezZfs=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.585443+00 2025-12-09 10:14:46.585447+00 5084 LZ120FWF#5号色短袖 SPMX-20240815300218 \N \N \N 1 \N [{"file_id": "e5698c54-de3c-4a14-b512-421e827b5a8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae386b64bcd748799584ee6780c6b5b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae386b64bcd748799584ee6780c6b5b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae386b64bcd748799584ee6780c6b5b3.jpg", "file_size": 20004, "is_delete": false, "file_type": 1, "original_file_name": "LZ120FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae386b64bcd748799584ee6780c6b5b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae386b64bcd748799584ee6780c6b5b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae386b64bcd748799584ee6780c6b5b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae386b64bcd748799584ee6780c6b5b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae386b64bcd748799584ee6780c6b5b3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rxrPYh7xNjKK7koDiuOWuUNMtQ=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.586696+00 2025-12-09 10:14:46.5867+00 5085 80064#长款下身彩兰 SPMX-20240815300228 \N \N \N 1 \N [{"file_id": "a2187de7-a212-4240-be4d-253a10858742", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "737d1dec616245cd887a2e08ddd72650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "737d1dec616245cd887a2e08ddd72650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "737d1dec616245cd887a2e08ddd72650.jpg", "file_size": 15411, "is_delete": false, "file_type": 1, "original_file_name": "80064#长款下身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737d1dec616245cd887a2e08ddd72650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737d1dec616245cd887a2e08ddd72650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737d1dec616245cd887a2e08ddd72650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/737d1dec616245cd887a2e08ddd72650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/737d1dec616245cd887a2e08ddd72650.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghOY_0gQQGl6q4ajCqcbe8GSuV0=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.587912+00 2025-12-09 10:14:46.587916+00 5086 JS1013#净色批布 SPMX-20240815300222 \N \N \N 1 \N [{"file_id": "b4ca4c85-03cf-495b-8d8c-c162b689ae07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "179f4c685546441994c091af49a84cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "179f4c685546441994c091af49a84cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "179f4c685546441994c091af49a84cde.jpg", "file_size": 7119, "is_delete": false, "file_type": 1, "original_file_name": "JS1013#净色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179f4c685546441994c091af49a84cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179f4c685546441994c091af49a84cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179f4c685546441994c091af49a84cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/179f4c685546441994c091af49a84cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/179f4c685546441994c091af49a84cde.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPn3Es88y0wMgdznPgilSeOkQzY=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.589124+00 2025-12-09 10:14:46.589128+00 5087 LHJ9245#118#蓝色 SPMX-20240815300225 \N \N \N 1 \N [{"file_id": "f4882dda-396b-44b6-99b4-aed976844b3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "981d478da8ef4255b5163d2f6d19fd21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "981d478da8ef4255b5163d2f6d19fd21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "981d478da8ef4255b5163d2f6d19fd21.jpg", "file_size": 13019, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981d478da8ef4255b5163d2f6d19fd21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981d478da8ef4255b5163d2f6d19fd21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981d478da8ef4255b5163d2f6d19fd21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/981d478da8ef4255b5163d2f6d19fd21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/981d478da8ef4255b5163d2f6d19fd21.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDhHzVuHY3nDzqfV_rBNxqvEU2k=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.590306+00 2025-12-09 10:14:46.590311+00 5088 DH20220779FW#XS短袖口白 SPMX-20240815300226 \N \N \N 1 \N [{"file_id": "3e868eea-cd62-431d-8c98-fad6331d654b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbbc77583f154584b553241ceecc2f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbbc77583f154584b553241ceecc2f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbbc77583f154584b553241ceecc2f33.jpg", "file_size": 10080, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbbc77583f154584b553241ceecc2f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbbc77583f154584b553241ceecc2f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbbc77583f154584b553241ceecc2f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbbc77583f154584b553241ceecc2f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbbc77583f154584b553241ceecc2f33.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tXP2VprxMeLbpfG8kSxcDHYx-j0=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.591515+00 2025-12-09 10:14:46.591519+00 5089 0002-32FWF#黄色-番禺调色 SPMX-20240815300224 \N \N \N 1 \N [{"file_id": "29177115-0738-4d65-b12e-cfc447c2f92b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b3065ab552b4fa9b1ace58d0b00914a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b3065ab552b4fa9b1ace58d0b00914a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b3065ab552b4fa9b1ace58d0b00914a.jpg", "file_size": 18404, "is_delete": false, "file_type": 1, "original_file_name": "0002-32FWF#黄色-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3065ab552b4fa9b1ace58d0b00914a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3065ab552b4fa9b1ace58d0b00914a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3065ab552b4fa9b1ace58d0b00914a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b3065ab552b4fa9b1ace58d0b00914a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b3065ab552b4fa9b1ace58d0b00914a.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nPbzPyxTvUDwgZ4rKHmGQqfwdo=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.592689+00 2025-12-09 10:14:46.592693+00 5090 HSH118FW#VS-D3 SPMX-20240815300219 \N \N \N 1 \N [{"file_id": "776d1bc0-5e32-458e-971e-043dfac3582f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28e28ea11ac849c1b5c4ab66b7e0efb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28e28ea11ac849c1b5c4ab66b7e0efb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28e28ea11ac849c1b5c4ab66b7e0efb5.jpg", "file_size": 14927, "is_delete": false, "file_type": 1, "original_file_name": "HSH118FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e28ea11ac849c1b5c4ab66b7e0efb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e28ea11ac849c1b5c4ab66b7e0efb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e28ea11ac849c1b5c4ab66b7e0efb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28e28ea11ac849c1b5c4ab66b7e0efb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28e28ea11ac849c1b5c4ab66b7e0efb5.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kiByLQS0t-ER8tekgLRcl8yylHM=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.593886+00 2025-12-09 10:14:46.593889+00 5091 FHXGPK-011-5 SPMX-20240815300227 \N \N \N 1 \N [{"file_id": "64c700b6-c981-48b4-8cc9-56061679ed42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05f931625a8640b1aad7f130134b4c48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05f931625a8640b1aad7f130134b4c48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05f931625a8640b1aad7f130134b4c48.jpg", "file_size": 33494, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-011-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f931625a8640b1aad7f130134b4c48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f931625a8640b1aad7f130134b4c48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f931625a8640b1aad7f130134b4c48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05f931625a8640b1aad7f130134b4c48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05f931625a8640b1aad7f130134b4c48.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99Mw1vO6iPKpP4gI4fup6W8MCCw=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.595068+00 2025-12-09 10:14:46.595072+00 5092 0002-32FWF#黄色 SPMX-20240815300235 \N \N \N 1 \N [{"file_id": "d3313d3f-7782-4b59-b947-90ab2eb3d347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "405e27cd0da0477895a46b35585d13a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "405e27cd0da0477895a46b35585d13a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "405e27cd0da0477895a46b35585d13a3.jpg", "file_size": 17156, "is_delete": false, "file_type": 1, "original_file_name": "0002-32FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405e27cd0da0477895a46b35585d13a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405e27cd0da0477895a46b35585d13a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405e27cd0da0477895a46b35585d13a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/405e27cd0da0477895a46b35585d13a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/405e27cd0da0477895a46b35585d13a3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PwMCGBxA8kk87uA23-1EdO1TzE=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.596278+00 2025-12-09 10:14:46.596282+00 5093 FHXGPK-012-1 SPMX-20240815300238 \N \N \N 1 \N [{"file_id": "37f6c7a2-2039-4e59-bad5-5e777dcc00bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb1435826a4c4071b801d00d588881c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb1435826a4c4071b801d00d588881c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb1435826a4c4071b801d00d588881c9.jpg", "file_size": 32380, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-012-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1435826a4c4071b801d00d588881c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1435826a4c4071b801d00d588881c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1435826a4c4071b801d00d588881c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb1435826a4c4071b801d00d588881c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb1435826a4c4071b801d00d588881c9.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7-rx5SMHTy1W_Cek3HmeJMOo6Y=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.597465+00 2025-12-09 10:14:46.597469+00 5094 1050#灰色匹布 SPMX-20240815300234 \N \N \N 1 \N [{"file_id": "ee934703-2296-4abb-b26a-a995b1cf48b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8646a68b609f49af9def8dadb7781847.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8646a68b609f49af9def8dadb7781847.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8646a68b609f49af9def8dadb7781847.jpg", "file_size": 14211, "is_delete": false, "file_type": 1, "original_file_name": "1050#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646a68b609f49af9def8dadb7781847.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646a68b609f49af9def8dadb7781847.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646a68b609f49af9def8dadb7781847.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8646a68b609f49af9def8dadb7781847.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8646a68b609f49af9def8dadb7781847.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bh6dpVA_F-zPtdrM7PTVTJdXE7w=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.598661+00 2025-12-09 10:14:46.598665+00 5095 HSH119FW#VS-D3 SPMX-20240815300229 \N \N \N 1 \N [{"file_id": "95648501-9637-4d32-989d-84dd28f51453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31372c0701a448e180884e089614d5bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31372c0701a448e180884e089614d5bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31372c0701a448e180884e089614d5bb.jpg", "file_size": 25145, "is_delete": false, "file_type": 1, "original_file_name": "HSH119FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31372c0701a448e180884e089614d5bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31372c0701a448e180884e089614d5bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31372c0701a448e180884e089614d5bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31372c0701a448e180884e089614d5bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31372c0701a448e180884e089614d5bb.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YwuJyPdcNvUxjgQLJ0xBARENDc=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.609547+00 2025-12-09 10:14:46.609552+00 5104 0002-32FWF#黑色 SPMX-20240815300246 \N \N \N 1 \N [{"file_id": "22824f05-232b-41c1-b867-058889ec8aeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94ab383ef794459caf57b03307097402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94ab383ef794459caf57b03307097402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94ab383ef794459caf57b03307097402.jpg", "file_size": 17329, "is_delete": false, "file_type": 1, "original_file_name": "0002-32FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ab383ef794459caf57b03307097402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ab383ef794459caf57b03307097402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ab383ef794459caf57b03307097402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94ab383ef794459caf57b03307097402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94ab383ef794459caf57b03307097402.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHSLL_2vAabEH6EdPui7noRL_-8=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.599852+00 2025-12-09 10:14:46.599857+00 5096 23-2101#A34前后片3XL SPMX-20240815300231 \N \N \N 1 \N [{"file_id": "87ad1201-34ed-46bd-9c7c-9380c8ccbeb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddc871e0df854153ace8f31347f4dc59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddc871e0df854153ace8f31347f4dc59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddc871e0df854153ace8f31347f4dc59.jpg", "file_size": 14548, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A34前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc871e0df854153ace8f31347f4dc59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc871e0df854153ace8f31347f4dc59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc871e0df854153ace8f31347f4dc59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddc871e0df854153ace8f31347f4dc59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddc871e0df854153ace8f31347f4dc59.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0k41o7AYQWXiUao9AcTj0k8DeIc=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.601054+00 2025-12-09 10:14:46.601058+00 5097 C250-1#黑底白花 SPMX-20240815300230 \N \N \N 1 \N [{"file_id": "10f267e0-c215-406a-865f-32e4ad503f49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b336afa7dc9f4cee971b992dc09a12b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b336afa7dc9f4cee971b992dc09a12b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b336afa7dc9f4cee971b992dc09a12b3.jpg", "file_size": 21927, "is_delete": false, "file_type": 1, "original_file_name": "C250-1#黑底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336afa7dc9f4cee971b992dc09a12b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336afa7dc9f4cee971b992dc09a12b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336afa7dc9f4cee971b992dc09a12b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b336afa7dc9f4cee971b992dc09a12b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b336afa7dc9f4cee971b992dc09a12b3.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Foh3_2FSfdEd_8xfR7mWjIAkdE=", "createTime": "2024-08-15 14:41:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.602224+00 2025-12-09 10:14:46.602228+00 5098 DH20220779FW#XS短袖口粉 SPMX-20240815300237 \N \N \N 1 \N [{"file_id": "b5f3db4d-7ca4-468e-8e24-9e470df82528", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff08c9a2969e4ab2a1e40bd463a93c1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff08c9a2969e4ab2a1e40bd463a93c1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff08c9a2969e4ab2a1e40bd463a93c1d.jpg", "file_size": 12996, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff08c9a2969e4ab2a1e40bd463a93c1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff08c9a2969e4ab2a1e40bd463a93c1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff08c9a2969e4ab2a1e40bd463a93c1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff08c9a2969e4ab2a1e40bd463a93c1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff08c9a2969e4ab2a1e40bd463a93c1d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slIJ5JmCDV3zzp2fPtrS-LmPwxY=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.603427+00 2025-12-09 10:14:46.603431+00 5099 LHJ9245#14#粉色 SPMX-20240815300236 \N \N \N 1 \N [{"file_id": "e88a43e8-3ea0-4f26-b8a7-95f478fc40cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad8b395d2205430bacc43106d216a354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad8b395d2205430bacc43106d216a354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad8b395d2205430bacc43106d216a354.jpg", "file_size": 11584, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#14#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8b395d2205430bacc43106d216a354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8b395d2205430bacc43106d216a354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8b395d2205430bacc43106d216a354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad8b395d2205430bacc43106d216a354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad8b395d2205430bacc43106d216a354.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxEv5uUX52bbqXzGYyngxThAeJ8=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.604605+00 2025-12-09 10:14:46.604609+00 5100 LZ1210#上身1号色 SPMX-20240815300233 \N \N \N 1 \N [{"file_id": "b8134a4e-e07f-4b90-a5c6-a63477cad92e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59b6dbadc5ae427897f8470d69fb0b96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59b6dbadc5ae427897f8470d69fb0b96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59b6dbadc5ae427897f8470d69fb0b96.jpg", "file_size": 18908, "is_delete": false, "file_type": 1, "original_file_name": "LZ1210#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b6dbadc5ae427897f8470d69fb0b96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b6dbadc5ae427897f8470d69fb0b96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b6dbadc5ae427897f8470d69fb0b96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59b6dbadc5ae427897f8470d69fb0b96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59b6dbadc5ae427897f8470d69fb0b96.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8FZR6GuFCqkofmI3AN8XLjOHa0s=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.605823+00 2025-12-09 10:14:46.605827+00 5101 HSH120FW#VS-D3 SPMX-20240815300240 \N \N \N 1 \N [{"file_id": "b1555155-e1f2-45a0-9126-c1602fd17c34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ca3bc3a4efb45c996e60b0f12dc2586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ca3bc3a4efb45c996e60b0f12dc2586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ca3bc3a4efb45c996e60b0f12dc2586.jpg", "file_size": 23573, "is_delete": false, "file_type": 1, "original_file_name": "HSH120FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca3bc3a4efb45c996e60b0f12dc2586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca3bc3a4efb45c996e60b0f12dc2586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca3bc3a4efb45c996e60b0f12dc2586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ca3bc3a4efb45c996e60b0f12dc2586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ca3bc3a4efb45c996e60b0f12dc2586.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYwfG0EkxboSSbtCQWo78uTT5mw=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.607088+00 2025-12-09 10:14:46.607093+00 5102 JS1038#红色 SPMX-20240815300232 \N \N \N 1 \N [{"file_id": "6cefa1c9-d342-4143-899a-d8676bc487de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aff38e65be654498adbe082522076e5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aff38e65be654498adbe082522076e5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aff38e65be654498adbe082522076e5f.jpg", "file_size": 61136, "is_delete": false, "file_type": 1, "original_file_name": "JS1038#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff38e65be654498adbe082522076e5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff38e65be654498adbe082522076e5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff38e65be654498adbe082522076e5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aff38e65be654498adbe082522076e5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aff38e65be654498adbe082522076e5f.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvEwWrn0jdxrmBx4Xq1A19M3Lts=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.608354+00 2025-12-09 10:14:46.608358+00 5103 80064#长款下身枣红 SPMX-20240815300239 \N \N \N 1 \N [{"file_id": "7cdad3e1-ee00-4c2d-874a-84d5e89294e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1ea701fcc4b41b8bd462a2428463593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1ea701fcc4b41b8bd462a2428463593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1ea701fcc4b41b8bd462a2428463593.jpg", "file_size": 15206, "is_delete": false, "file_type": 1, "original_file_name": "80064#长款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ea701fcc4b41b8bd462a2428463593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ea701fcc4b41b8bd462a2428463593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ea701fcc4b41b8bd462a2428463593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1ea701fcc4b41b8bd462a2428463593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1ea701fcc4b41b8bd462a2428463593.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEGmPMwaB9KlHRByaoCwtlId4Qw=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.61234+00 2025-12-09 10:14:46.612344+00 5106 23-2101#A34袖子3XL SPMX-20240815300252 \N \N \N 1 \N [{"file_id": "330e6c44-a238-492e-ab00-3348e283962d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "492d829733e64eba9c648c72ae849ab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "492d829733e64eba9c648c72ae849ab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "492d829733e64eba9c648c72ae849ab6.jpg", "file_size": 12912, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A34袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492d829733e64eba9c648c72ae849ab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492d829733e64eba9c648c72ae849ab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492d829733e64eba9c648c72ae849ab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/492d829733e64eba9c648c72ae849ab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/492d829733e64eba9c648c72ae849ab6.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGjZgNsy0AcbryWD0FI3djpbDCM=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.613744+00 2025-12-09 10:14:46.613749+00 5107 C252#墨绿底 SPMX-20240815300242 \N \N \N 1 \N [{"file_id": "c1268ccd-1c0c-4f53-a7f3-0262b9bcf026", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2d43239d6864d8d9b523ca1bdeb9c6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2d43239d6864d8d9b523ca1bdeb9c6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2d43239d6864d8d9b523ca1bdeb9c6d.jpg", "file_size": 14500, "is_delete": false, "file_type": 1, "original_file_name": "C252#墨绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43239d6864d8d9b523ca1bdeb9c6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43239d6864d8d9b523ca1bdeb9c6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43239d6864d8d9b523ca1bdeb9c6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2d43239d6864d8d9b523ca1bdeb9c6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2d43239d6864d8d9b523ca1bdeb9c6d.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jd2vc9t_7a0ZzJEF281tu8AdEg=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.615144+00 2025-12-09 10:14:46.615149+00 5108 1050#白色匹布 SPMX-20240815300254 \N \N \N 1 \N [{"file_id": "d55e3b5c-a1e4-4d24-906d-545f5c31e854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0e3e059fff94183a49f57b4531e20a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0e3e059fff94183a49f57b4531e20a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0e3e059fff94183a49f57b4531e20a8.jpg", "file_size": 16536, "is_delete": false, "file_type": 1, "original_file_name": "1050#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e3e059fff94183a49f57b4531e20a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e3e059fff94183a49f57b4531e20a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e3e059fff94183a49f57b4531e20a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0e3e059fff94183a49f57b4531e20a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0e3e059fff94183a49f57b4531e20a8.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S2y_ngYzC06M5ABBdbxzQ_AqzCg=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.616528+00 2025-12-09 10:14:46.616533+00 5109 JS1183#RC23 SPMX-20240815300253 \N \N \N 1 \N [{"file_id": "2baccd9d-66b2-4041-9886-74f375cac287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef204e7312a14ee6bb98926779e51163.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef204e7312a14ee6bb98926779e51163.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef204e7312a14ee6bb98926779e51163.jpg", "file_size": 9376, "is_delete": false, "file_type": 1, "original_file_name": "JS1183#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef204e7312a14ee6bb98926779e51163.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef204e7312a14ee6bb98926779e51163.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef204e7312a14ee6bb98926779e51163.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef204e7312a14ee6bb98926779e51163.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef204e7312a14ee6bb98926779e51163.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BY8e0AffwmGEnJA5g9cKIlrM5wY=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.610925+00 2025-12-09 10:14:46.610929+00 5105 LHJ9245#20#枣红 SPMX-20240815300248 \N \N \N 1 \N [{"file_id": "1bb3b3e6-8eb1-4161-bf7e-eeb3ead2c9cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00e3a6e0d16f4c48aff512b201d939ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00e3a6e0d16f4c48aff512b201d939ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00e3a6e0d16f4c48aff512b201d939ae.jpg", "file_size": 14132, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e3a6e0d16f4c48aff512b201d939ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e3a6e0d16f4c48aff512b201d939ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e3a6e0d16f4c48aff512b201d939ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00e3a6e0d16f4c48aff512b201d939ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00e3a6e0d16f4c48aff512b201d939ae.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwoFilFb6RGc4F0W_vh7_T8DrDQ=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:46.619562+00 2025-12-09 10:14:46.619567+00 5110 DH20220779FW#XS短袖口绿 SPMX-20240815300250 \N \N \N 1 \N [{"file_id": "f5d396a5-d5fc-4c99-9a9f-4a7bfc74e7c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1065d76041b45aba44d1c753629fd63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1065d76041b45aba44d1c753629fd63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1065d76041b45aba44d1c753629fd63.jpg", "file_size": 11665, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065d76041b45aba44d1c753629fd63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065d76041b45aba44d1c753629fd63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065d76041b45aba44d1c753629fd63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1065d76041b45aba44d1c753629fd63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1065d76041b45aba44d1c753629fd63.jpg?e=1765361685&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QC4WIh3Wd-6wDDuo08JVunExfuc=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.419997+00 2025-12-09 10:14:47.420007+00 5111 JS1038#黄色 SPMX-20240815300244 \N \N \N 1 \N [{"file_id": "308ba0c3-a321-4b2d-bff2-7b641b7cf5bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "259b9b19f4334951990abe7b260919b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "259b9b19f4334951990abe7b260919b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "259b9b19f4334951990abe7b260919b6.jpg", "file_size": 55111, "is_delete": false, "file_type": 1, "original_file_name": "JS1038#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259b9b19f4334951990abe7b260919b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259b9b19f4334951990abe7b260919b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259b9b19f4334951990abe7b260919b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/259b9b19f4334951990abe7b260919b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/259b9b19f4334951990abe7b260919b6.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fTjTQOyfFCAPeXdKvM0FDdmzPc=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.422153+00 2025-12-09 10:14:47.422157+00 5112 1050#白色 SPMX-20240815300245 \N \N \N 1 \N [{"file_id": "0fb237e9-e7ff-481e-b094-2ef6a78917ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aa5297bf3744fbcb00702e6d2429c1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aa5297bf3744fbcb00702e6d2429c1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aa5297bf3744fbcb00702e6d2429c1a.jpg", "file_size": 22702, "is_delete": false, "file_type": 1, "original_file_name": "1050#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa5297bf3744fbcb00702e6d2429c1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa5297bf3744fbcb00702e6d2429c1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa5297bf3744fbcb00702e6d2429c1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aa5297bf3744fbcb00702e6d2429c1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aa5297bf3744fbcb00702e6d2429c1a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhtD3xJu2uK0IUd4oGL2zCmAL0I=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.423614+00 2025-12-09 10:14:47.423619+00 5113 80064#长款下身皮红 SPMX-20240815300249 \N \N \N 1 \N [{"file_id": "bcad395f-3371-494e-b50d-f505eafefe85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "514a9d32b93f4473b7da22457db848d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "514a9d32b93f4473b7da22457db848d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "514a9d32b93f4473b7da22457db848d1.jpg", "file_size": 14369, "is_delete": false, "file_type": 1, "original_file_name": "80064#长款下身皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/514a9d32b93f4473b7da22457db848d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/514a9d32b93f4473b7da22457db848d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/514a9d32b93f4473b7da22457db848d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/514a9d32b93f4473b7da22457db848d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/514a9d32b93f4473b7da22457db848d1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MI1Oi4VTSsV76kFth89S6iW9NKE=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.424919+00 2025-12-09 10:14:47.424923+00 5114 HSH121FW#VS-D3 SPMX-20240815300251 \N \N \N 1 \N [{"file_id": "d1699a21-0efe-4962-a7bd-92f7ee024be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3feafdfe9202426b8d379636664bf57f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3feafdfe9202426b8d379636664bf57f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3feafdfe9202426b8d379636664bf57f.jpg", "file_size": 23938, "is_delete": false, "file_type": 1, "original_file_name": "HSH121FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feafdfe9202426b8d379636664bf57f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feafdfe9202426b8d379636664bf57f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feafdfe9202426b8d379636664bf57f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3feafdfe9202426b8d379636664bf57f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3feafdfe9202426b8d379636664bf57f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIvlcW6Fltr6GT8ltEe_dk9RQRs=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.426125+00 2025-12-09 10:14:47.426128+00 5115 0002-33FWF#V5曲线 SPMX-20240815300255 \N \N \N 1 \N [{"file_id": "3f8c6559-d06d-42c8-ae79-f54ef8935991", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ee11f923354ce189c03468f2f39045.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ee11f923354ce189c03468f2f39045.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ee11f923354ce189c03468f2f39045.jpg", "file_size": 10314, "is_delete": false, "file_type": 1, "original_file_name": "0002-33FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ee11f923354ce189c03468f2f39045.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ee11f923354ce189c03468f2f39045.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ee11f923354ce189c03468f2f39045.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ee11f923354ce189c03468f2f39045.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ee11f923354ce189c03468f2f39045.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n2d9ORDfUlp0mY6DDnoQK_3oYug=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.427323+00 2025-12-09 10:14:47.427327+00 5116 23-2101#A34前后片4XL SPMX-20240815300241 \N \N \N 1 \N [{"file_id": "dc658737-514d-4193-aec5-2feb37d0c3f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70a4ca8dcb80484384693dc015d6e142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70a4ca8dcb80484384693dc015d6e142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70a4ca8dcb80484384693dc015d6e142.jpg", "file_size": 15562, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A34前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a4ca8dcb80484384693dc015d6e142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a4ca8dcb80484384693dc015d6e142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70a4ca8dcb80484384693dc015d6e142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70a4ca8dcb80484384693dc015d6e142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70a4ca8dcb80484384693dc015d6e142.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBxW2OprLjoZANN5wmm7gAk2ZBk=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.428524+00 2025-12-09 10:14:47.428528+00 5117 LZ1210#上身2号色 SPMX-20240815300243 \N \N \N 1 \N [{"file_id": "181ff306-f178-4ff4-a4e4-987818ba8a81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b67ef2248af4454bd0e0df7fe2a6067.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b67ef2248af4454bd0e0df7fe2a6067.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b67ef2248af4454bd0e0df7fe2a6067.jpg", "file_size": 19565, "is_delete": false, "file_type": 1, "original_file_name": "LZ1210#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b67ef2248af4454bd0e0df7fe2a6067.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b67ef2248af4454bd0e0df7fe2a6067.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b67ef2248af4454bd0e0df7fe2a6067.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b67ef2248af4454bd0e0df7fe2a6067.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b67ef2248af4454bd0e0df7fe2a6067.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMipDM9JCoF5tRiGNNwueDnlPK4=", "createTime": "2024-08-15 14:41:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.42975+00 2025-12-09 10:14:47.429755+00 5118 LHJ9245#25#土黄 SPMX-20240815300257 \N \N \N 1 \N [{"file_id": "a65492b5-efbc-4431-91be-fe2faac217b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e694b6fdc9b4d0db9872ebdc3c2f233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e694b6fdc9b4d0db9872ebdc3c2f233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e694b6fdc9b4d0db9872ebdc3c2f233.jpg", "file_size": 10532, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e694b6fdc9b4d0db9872ebdc3c2f233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e694b6fdc9b4d0db9872ebdc3c2f233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e694b6fdc9b4d0db9872ebdc3c2f233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e694b6fdc9b4d0db9872ebdc3c2f233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e694b6fdc9b4d0db9872ebdc3c2f233.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z76EdYzuvX76lYp4ogIvJZs7fRc=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.430946+00 2025-12-09 10:14:47.43095+00 5119 JS1188#RC23 SPMX-20240815300263 \N \N \N 1 \N [{"file_id": "d5c56771-25f4-46f7-b667-3b3db2f50702", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2af846beb99e4a57ab66d17c47283d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2af846beb99e4a57ab66d17c47283d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2af846beb99e4a57ab66d17c47283d86.jpg", "file_size": 21229, "is_delete": false, "file_type": 1, "original_file_name": "JS1188#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af846beb99e4a57ab66d17c47283d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af846beb99e4a57ab66d17c47283d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af846beb99e4a57ab66d17c47283d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2af846beb99e4a57ab66d17c47283d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2af846beb99e4a57ab66d17c47283d86.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XaR_Iu2p4K1NBZBKce1XHSqZKf8=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.432138+00 2025-12-09 10:14:47.432142+00 5120 C252#米底 SPMX-20240815300265 \N \N \N 1 \N [{"file_id": "0e8be448-723c-4a58-be6c-d938bbd55edd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed5fe23fef0e495ba70918f8ba59edfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed5fe23fef0e495ba70918f8ba59edfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed5fe23fef0e495ba70918f8ba59edfd.jpg", "file_size": 13943, "is_delete": false, "file_type": 1, "original_file_name": "C252#米底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5fe23fef0e495ba70918f8ba59edfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5fe23fef0e495ba70918f8ba59edfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5fe23fef0e495ba70918f8ba59edfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed5fe23fef0e495ba70918f8ba59edfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed5fe23fef0e495ba70918f8ba59edfd.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFdvKuj-igcc7kIb0Un-01KT9yE=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.433332+00 2025-12-09 10:14:47.433336+00 5121 FHXGPK-012-3 SPMX-20240815300258 \N \N \N 1 \N [{"file_id": "124b44f5-8b3f-4f0d-814e-ee02c861b9e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0379a0a2fed843149eea2ed900b75ad0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0379a0a2fed843149eea2ed900b75ad0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0379a0a2fed843149eea2ed900b75ad0.jpg", "file_size": 33475, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-012-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0379a0a2fed843149eea2ed900b75ad0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0379a0a2fed843149eea2ed900b75ad0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0379a0a2fed843149eea2ed900b75ad0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0379a0a2fed843149eea2ed900b75ad0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0379a0a2fed843149eea2ed900b75ad0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J4AZh8k4G-1lOYlwqDHNUSA_xo8=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.434547+00 2025-12-09 10:14:47.434551+00 5122 DH20220779FW#XS短袖口蓝 SPMX-20240815300261 \N \N \N 1 \N [{"file_id": "81feb96b-b070-4a04-b7a4-80ec51ce98bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d414ac039ec74679860d46e81cda1166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d414ac039ec74679860d46e81cda1166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d414ac039ec74679860d46e81cda1166.jpg", "file_size": 13091, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖口蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d414ac039ec74679860d46e81cda1166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d414ac039ec74679860d46e81cda1166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d414ac039ec74679860d46e81cda1166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d414ac039ec74679860d46e81cda1166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d414ac039ec74679860d46e81cda1166.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:witbmmqpAJJyv1izikgWISnBebg=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.435757+00 2025-12-09 10:14:47.435761+00 5123 1050#粉色 SPMX-20240815300266 \N \N \N 1 \N [{"file_id": "70622d12-e5a0-4296-b98a-1a9c472cf8f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f91cbed250944519955f7c9d0aa1829d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f91cbed250944519955f7c9d0aa1829d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f91cbed250944519955f7c9d0aa1829d.jpg", "file_size": 19488, "is_delete": false, "file_type": 1, "original_file_name": "1050#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91cbed250944519955f7c9d0aa1829d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91cbed250944519955f7c9d0aa1829d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91cbed250944519955f7c9d0aa1829d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f91cbed250944519955f7c9d0aa1829d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f91cbed250944519955f7c9d0aa1829d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ul24sfon5MZizALq6zipkZKd7-c=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.436954+00 2025-12-09 10:14:47.436957+00 5124 LZ1210#上身3号色 SPMX-20240815300259 \N \N \N 1 \N [{"file_id": "cbec8b53-95a7-45ab-b696-f250a5a058cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcedffbfd62a4af798bdb3230c286a28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcedffbfd62a4af798bdb3230c286a28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcedffbfd62a4af798bdb3230c286a28.jpg", "file_size": 20121, "is_delete": false, "file_type": 1, "original_file_name": "LZ1210#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedffbfd62a4af798bdb3230c286a28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedffbfd62a4af798bdb3230c286a28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedffbfd62a4af798bdb3230c286a28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcedffbfd62a4af798bdb3230c286a28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcedffbfd62a4af798bdb3230c286a28.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xL4v_nB9VK0uSPhwVHZ149aWy10=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.438168+00 2025-12-09 10:14:47.438173+00 5125 0002-3FWE#VS-D3 SPMX-20240815300267 \N \N \N 1 \N [{"file_id": "47539fe3-f5e3-462c-98bf-37939a5ecb83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "912373feab3e4949b22231f4cbfaa3ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "912373feab3e4949b22231f4cbfaa3ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "912373feab3e4949b22231f4cbfaa3ad.jpg", "file_size": 15942, "is_delete": false, "file_type": 1, "original_file_name": "0002-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912373feab3e4949b22231f4cbfaa3ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912373feab3e4949b22231f4cbfaa3ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912373feab3e4949b22231f4cbfaa3ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/912373feab3e4949b22231f4cbfaa3ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/912373feab3e4949b22231f4cbfaa3ad.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8ynRcPw4E_vS6gSI2DBdu9c_AM=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.439402+00 2025-12-09 10:14:47.439406+00 5126 C252#白底 SPMX-20240815300256 \N \N \N 1 \N [{"file_id": "19cc458a-de2e-47cb-8878-ff1f233ebe92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6db1779c2a7842d587164fdc187d4e3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6db1779c2a7842d587164fdc187d4e3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6db1779c2a7842d587164fdc187d4e3d.jpg", "file_size": 13917, "is_delete": false, "file_type": 1, "original_file_name": "C252#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db1779c2a7842d587164fdc187d4e3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db1779c2a7842d587164fdc187d4e3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db1779c2a7842d587164fdc187d4e3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6db1779c2a7842d587164fdc187d4e3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6db1779c2a7842d587164fdc187d4e3d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYybO7TuCgIXmeVuYVzf5FAD5rU=", "createTime": "2024-08-15 14:41:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.440607+00 2025-12-09 10:14:47.440611+00 5127 HSH122FW#VS-D3 SPMX-20240815300262 \N \N \N 1 \N [{"file_id": "26ebed2c-8272-48f3-a195-0ecc8dab631b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e22d0babd4c47838a8adc7563bd33ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e22d0babd4c47838a8adc7563bd33ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e22d0babd4c47838a8adc7563bd33ca.jpg", "file_size": 23493, "is_delete": false, "file_type": 1, "original_file_name": "HSH122FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e22d0babd4c47838a8adc7563bd33ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e22d0babd4c47838a8adc7563bd33ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e22d0babd4c47838a8adc7563bd33ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e22d0babd4c47838a8adc7563bd33ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e22d0babd4c47838a8adc7563bd33ca.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVoWfF3krXcd_IaO6ZPIbGZlHsA=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.441801+00 2025-12-09 10:14:47.441804+00 5128 23-2101#A34袖子4XL SPMX-20240815300264 \N \N \N 1 \N [{"file_id": "2413768a-1ddb-4553-b4ed-9aa2325d9db0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4336669b818b4a50b256b2d65f3a9616.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4336669b818b4a50b256b2d65f3a9616.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4336669b818b4a50b256b2d65f3a9616.jpg", "file_size": 11644, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A34袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4336669b818b4a50b256b2d65f3a9616.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4336669b818b4a50b256b2d65f3a9616.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4336669b818b4a50b256b2d65f3a9616.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4336669b818b4a50b256b2d65f3a9616.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4336669b818b4a50b256b2d65f3a9616.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NlLi1pj_TBSg7wGL8nPTYSGCpEg=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.442977+00 2025-12-09 10:14:47.442981+00 5129 80065#短袖上衣 SPMX-20240815300260 \N \N \N 1 \N [{"file_id": "69d8895f-7a88-4d89-9e7c-09ca1b1e5662", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fbe5d82a1854f5cad0d1bef0cae851c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fbe5d82a1854f5cad0d1bef0cae851c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fbe5d82a1854f5cad0d1bef0cae851c.jpg", "file_size": 20717, "is_delete": false, "file_type": 1, "original_file_name": "80065#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fbe5d82a1854f5cad0d1bef0cae851c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fbe5d82a1854f5cad0d1bef0cae851c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fbe5d82a1854f5cad0d1bef0cae851c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fbe5d82a1854f5cad0d1bef0cae851c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fbe5d82a1854f5cad0d1bef0cae851c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8tLIDBQ4kDjkCnObGWqH3juQCU=", "createTime": "2024-08-15 14:41:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.444177+00 2025-12-09 10:14:47.444181+00 5130 1050#粉色匹布 SPMX-20240815300276 \N \N \N 1 \N [{"file_id": "ae035c80-20bd-4242-a596-6561b4dcd9d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db46eeadcfd64348a56905f9cf6b56ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db46eeadcfd64348a56905f9cf6b56ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db46eeadcfd64348a56905f9cf6b56ba.jpg", "file_size": 13659, "is_delete": false, "file_type": 1, "original_file_name": "1050#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db46eeadcfd64348a56905f9cf6b56ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db46eeadcfd64348a56905f9cf6b56ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db46eeadcfd64348a56905f9cf6b56ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db46eeadcfd64348a56905f9cf6b56ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db46eeadcfd64348a56905f9cf6b56ba.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BaXsX6H2uKGx_6QAa4AXKhNx_1Q=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.445366+00 2025-12-09 10:14:47.44537+00 5131 JS130158#WJC22 SPMX-20240815300273 \N \N \N 1 \N [{"file_id": "e4ea4fdc-75a8-4dd7-9155-d2d37fad6a87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e58ee0468c2404e95ae70f5875b37f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e58ee0468c2404e95ae70f5875b37f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e58ee0468c2404e95ae70f5875b37f4.jpg", "file_size": 18844, "is_delete": false, "file_type": 1, "original_file_name": "JS130158#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e58ee0468c2404e95ae70f5875b37f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e58ee0468c2404e95ae70f5875b37f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e58ee0468c2404e95ae70f5875b37f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e58ee0468c2404e95ae70f5875b37f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e58ee0468c2404e95ae70f5875b37f4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJrNs_qzRF5b1ECQ8G6L7DIQv9E=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.44657+00 2025-12-09 10:14:47.446574+00 5132 C252#黑底 SPMX-20240815300277 \N \N \N 1 \N [{"file_id": "51ca0c14-90fd-47dd-8831-69768963630d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11ef13bb6bd04fbf99a558f39884835f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11ef13bb6bd04fbf99a558f39884835f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11ef13bb6bd04fbf99a558f39884835f.jpg", "file_size": 12924, "is_delete": false, "file_type": 1, "original_file_name": "C252#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef13bb6bd04fbf99a558f39884835f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef13bb6bd04fbf99a558f39884835f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11ef13bb6bd04fbf99a558f39884835f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11ef13bb6bd04fbf99a558f39884835f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11ef13bb6bd04fbf99a558f39884835f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goUGJYnWAOJvfnsI-XtoQ1dqe_I=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.447754+00 2025-12-09 10:14:47.447757+00 5133 80065#短袖子 SPMX-20240815300269 \N \N \N 1 \N [{"file_id": "84cf2d5a-0ef6-49ca-8fc0-5846b36d3553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99d32be7d5db44ad8c59fc9d189c30f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99d32be7d5db44ad8c59fc9d189c30f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99d32be7d5db44ad8c59fc9d189c30f8.jpg", "file_size": 21855, "is_delete": false, "file_type": 1, "original_file_name": "80065#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d32be7d5db44ad8c59fc9d189c30f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d32be7d5db44ad8c59fc9d189c30f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d32be7d5db44ad8c59fc9d189c30f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99d32be7d5db44ad8c59fc9d189c30f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99d32be7d5db44ad8c59fc9d189c30f8.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHbI_EZEqvsl1K8jbkznwwEU6Nc=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.448966+00 2025-12-09 10:14:47.44897+00 5134 HSH123FW#VS-D3 SPMX-20240815300274 \N \N \N 1 \N [{"file_id": "5e8b9c6d-b1c5-4d83-aaca-251559e4af24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93c209c5ab04448b98c4b24aa38446b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93c209c5ab04448b98c4b24aa38446b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93c209c5ab04448b98c4b24aa38446b7.jpg", "file_size": 16297, "is_delete": false, "file_type": 1, "original_file_name": "HSH123FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c209c5ab04448b98c4b24aa38446b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c209c5ab04448b98c4b24aa38446b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c209c5ab04448b98c4b24aa38446b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93c209c5ab04448b98c4b24aa38446b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93c209c5ab04448b98c4b24aa38446b7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1y1pUNGE1OvTkKMJ4NyTvetUiKA=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.450139+00 2025-12-09 10:14:47.450143+00 5135 FHXGPK-012-4 SPMX-20240815300268 \N \N \N 1 \N [{"file_id": "2b22dd0b-a332-49c9-b0c7-10a682c0c0ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b872019c13e409080bbf8ea163daa72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b872019c13e409080bbf8ea163daa72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b872019c13e409080bbf8ea163daa72.jpg", "file_size": 34407, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-012-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b872019c13e409080bbf8ea163daa72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b872019c13e409080bbf8ea163daa72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b872019c13e409080bbf8ea163daa72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b872019c13e409080bbf8ea163daa72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b872019c13e409080bbf8ea163daa72.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4_yb_ROzv6kE7SYM8rhIfSKNII=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.451632+00 2025-12-09 10:14:47.451636+00 5136 LZ1210#上身4号色 SPMX-20240815300271 \N \N \N 1 \N [{"file_id": "dab56058-e4ae-48ae-943a-da857ebc873f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d7d2646c38b4615afb47fdd7c9a9975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d7d2646c38b4615afb47fdd7c9a9975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d7d2646c38b4615afb47fdd7c9a9975.jpg", "file_size": 20232, "is_delete": false, "file_type": 1, "original_file_name": "LZ1210#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7d2646c38b4615afb47fdd7c9a9975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7d2646c38b4615afb47fdd7c9a9975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7d2646c38b4615afb47fdd7c9a9975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d7d2646c38b4615afb47fdd7c9a9975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d7d2646c38b4615afb47fdd7c9a9975.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9G1kgasrJwJPHO_1oBIs93bGjU=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.453122+00 2025-12-09 10:14:47.453127+00 5137 LHJ9245#32#墨绿 SPMX-20240815300270 \N \N \N 1 \N [{"file_id": "eb5b3b14-2a55-4587-9e01-f116cb4e2b0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a7c019f2e30462091fd5ace37b5d14a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a7c019f2e30462091fd5ace37b5d14a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a7c019f2e30462091fd5ace37b5d14a.jpg", "file_size": 13927, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a7c019f2e30462091fd5ace37b5d14a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a7c019f2e30462091fd5ace37b5d14a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a7c019f2e30462091fd5ace37b5d14a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a7c019f2e30462091fd5ace37b5d14a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a7c019f2e30462091fd5ace37b5d14a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iFFLr2j1l0G9dHYFavXdxcVF-Hs=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.454749+00 2025-12-09 10:14:47.454753+00 5138 DH20220779FW#XS短袖橙 SPMX-20240815300272 \N \N \N 1 \N [{"file_id": "1b586cee-19aa-41e3-88ff-23821d6cde7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c7f41d7505e4c608b73377912fc37d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c7f41d7505e4c608b73377912fc37d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c7f41d7505e4c608b73377912fc37d0.jpg", "file_size": 9554, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7f41d7505e4c608b73377912fc37d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7f41d7505e4c608b73377912fc37d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7f41d7505e4c608b73377912fc37d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c7f41d7505e4c608b73377912fc37d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c7f41d7505e4c608b73377912fc37d0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:foYaVsL7ngIYdmMo06ZiRFa5fuE=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.456269+00 2025-12-09 10:14:47.456273+00 5139 23-2101#A34领子通用 SPMX-20240815300275 \N \N \N 1 \N [{"file_id": "f280076a-2bb2-426f-b203-fcda096e5ede", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "444261a8b46e49968e92e7d70745dc13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "444261a8b46e49968e92e7d70745dc13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "444261a8b46e49968e92e7d70745dc13.jpg", "file_size": 8864, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A34领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444261a8b46e49968e92e7d70745dc13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444261a8b46e49968e92e7d70745dc13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444261a8b46e49968e92e7d70745dc13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/444261a8b46e49968e92e7d70745dc13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/444261a8b46e49968e92e7d70745dc13.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHl6XrhQbMGHYaD8C08D6I0fQbA=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.457815+00 2025-12-09 10:14:47.457819+00 5140 0002-3FWF#V5曲线 SPMX-20240815300278 \N \N \N 1 \N [{"file_id": "e8a6f155-50ad-43bd-95e3-8236aa2ea91d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7ddf05c847d4fd49ddb9b75e211b924.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7ddf05c847d4fd49ddb9b75e211b924.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7ddf05c847d4fd49ddb9b75e211b924.jpg", "file_size": 16054, "is_delete": false, "file_type": 1, "original_file_name": "0002-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddf05c847d4fd49ddb9b75e211b924.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddf05c847d4fd49ddb9b75e211b924.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7ddf05c847d4fd49ddb9b75e211b924.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7ddf05c847d4fd49ddb9b75e211b924.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7ddf05c847d4fd49ddb9b75e211b924.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzFt8xLJ0MzdWn9Z7o4hAc3sp14=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.459314+00 2025-12-09 10:14:47.459319+00 5141 FHXGPK-012-5 SPMX-20240815300279 \N \N \N 1 \N [{"file_id": "83a083a9-93c0-45ae-b982-1000969efbc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20d81a8f7af3480cbd602bdfcc4117d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20d81a8f7af3480cbd602bdfcc4117d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20d81a8f7af3480cbd602bdfcc4117d0.jpg", "file_size": 31055, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-012-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d81a8f7af3480cbd602bdfcc4117d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d81a8f7af3480cbd602bdfcc4117d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d81a8f7af3480cbd602bdfcc4117d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20d81a8f7af3480cbd602bdfcc4117d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20d81a8f7af3480cbd602bdfcc4117d0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bd-0tkclharm4mDqeQ2yqfNtUXM=", "createTime": "2024-08-15 14:41:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.460808+00 2025-12-09 10:14:47.460813+00 5142 JS176D版本#L SPMX-20240815300284 \N \N \N 1 \N [{"file_id": "e85bae3c-fa08-41c0-ab64-6a043b3584ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45dec56da21a45d785b628f8dfd5857f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45dec56da21a45d785b628f8dfd5857f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45dec56da21a45d785b628f8dfd5857f.jpg", "file_size": 20458, "is_delete": false, "file_type": 1, "original_file_name": "JS176D版本#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45dec56da21a45d785b628f8dfd5857f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45dec56da21a45d785b628f8dfd5857f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45dec56da21a45d785b628f8dfd5857f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45dec56da21a45d785b628f8dfd5857f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45dec56da21a45d785b628f8dfd5857f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mcCkj8KtQsfIWNUfWN17h62uFs=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.462389+00 2025-12-09 10:14:47.462394+00 5143 LHJ9245#37#梅红 SPMX-20240815300280 \N \N \N 1 \N [{"file_id": "0e51452d-4439-49be-9415-3b462196ef30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80eea852a7994ea78cd9e9093437d418.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80eea852a7994ea78cd9e9093437d418.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80eea852a7994ea78cd9e9093437d418.jpg", "file_size": 10845, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80eea852a7994ea78cd9e9093437d418.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80eea852a7994ea78cd9e9093437d418.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80eea852a7994ea78cd9e9093437d418.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80eea852a7994ea78cd9e9093437d418.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80eea852a7994ea78cd9e9093437d418.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:idIz0-JuE_PlvJ4sUJ04iBucL-s=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.463591+00 2025-12-09 10:14:47.463595+00 5144 1050#青色 SPMX-20240815300282 \N \N \N 1 \N [{"file_id": "9d70abc0-3c3b-436d-af97-44ec2cb4448f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4c5085379524ee48e3cf7069e24f1e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4c5085379524ee48e3cf7069e24f1e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4c5085379524ee48e3cf7069e24f1e5.jpg", "file_size": 21090, "is_delete": false, "file_type": 1, "original_file_name": "1050#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c5085379524ee48e3cf7069e24f1e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c5085379524ee48e3cf7069e24f1e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c5085379524ee48e3cf7069e24f1e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4c5085379524ee48e3cf7069e24f1e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4c5085379524ee48e3cf7069e24f1e5.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EqvZItF1yzMefhwoGXPbrIiyMo4=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.464797+00 2025-12-09 10:14:47.464801+00 5145 C253#卡其 SPMX-20240815300283 \N \N \N 1 \N [{"file_id": "b18a2c99-8fc5-4302-929a-b92ef258dfe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd3185b93214c7bb32c99ad9496a738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd3185b93214c7bb32c99ad9496a738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd3185b93214c7bb32c99ad9496a738.jpg", "file_size": 17798, "is_delete": false, "file_type": 1, "original_file_name": "C253#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd3185b93214c7bb32c99ad9496a738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd3185b93214c7bb32c99ad9496a738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd3185b93214c7bb32c99ad9496a738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd3185b93214c7bb32c99ad9496a738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd3185b93214c7bb32c99ad9496a738.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akPN1z_B6ev_lMBfcJoUWPnt7Tw=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.465991+00 2025-12-09 10:14:47.465995+00 5146 80066#短袖上衣 SPMX-20240815300281 \N \N \N 1 \N [{"file_id": "21592ef0-142f-4df7-b9bd-d05171e42d00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da1aa8d34649490aa689975655d43e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da1aa8d34649490aa689975655d43e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da1aa8d34649490aa689975655d43e11.jpg", "file_size": 20017, "is_delete": false, "file_type": 1, "original_file_name": "80066#短袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1aa8d34649490aa689975655d43e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1aa8d34649490aa689975655d43e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1aa8d34649490aa689975655d43e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da1aa8d34649490aa689975655d43e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da1aa8d34649490aa689975655d43e11.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_6gPnv1qirFqJnW1r7_5vLR0Uk=", "createTime": "2024-08-15 14:41:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.471982+00 2025-12-09 10:14:47.471985+00 5151 C253#墨绿 SPMX-20240815300290 \N \N \N 1 \N [{"file_id": "e0fb5c13-37af-4ce0-be55-4d834e801743", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c150c754c9984be5bb625ebb064befa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c150c754c9984be5bb625ebb064befa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c150c754c9984be5bb625ebb064befa2.jpg", "file_size": 22203, "is_delete": false, "file_type": 1, "original_file_name": "C253#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c150c754c9984be5bb625ebb064befa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c150c754c9984be5bb625ebb064befa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c150c754c9984be5bb625ebb064befa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c150c754c9984be5bb625ebb064befa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c150c754c9984be5bb625ebb064befa2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-7Ogjcwjv3oYi_Yx6oUqc7ttG4=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.4672+00 2025-12-09 10:14:47.467203+00 5147 LZ1210#上身5号色 SPMX-20240815300288 \N \N \N 1 \N [{"file_id": "32de285f-ac71-446a-8b57-69b0e9738ffa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c84d1a2222c4c1d9156c91c4743cc4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c84d1a2222c4c1d9156c91c4743cc4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c84d1a2222c4c1d9156c91c4743cc4e.jpg", "file_size": 19184, "is_delete": false, "file_type": 1, "original_file_name": "LZ1210#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c84d1a2222c4c1d9156c91c4743cc4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c84d1a2222c4c1d9156c91c4743cc4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c84d1a2222c4c1d9156c91c4743cc4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c84d1a2222c4c1d9156c91c4743cc4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c84d1a2222c4c1d9156c91c4743cc4e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQ23ujY97rlhrJGH8MQFggFapv0=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.4684+00 2025-12-09 10:14:47.468404+00 5148 80066#短袖子 SPMX-20240815300294 \N \N \N 1 \N [{"file_id": "aa80b5d5-b1b3-4c73-b129-589b30ea71ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab888220a0b4bb285b84d49bf49fa0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab888220a0b4bb285b84d49bf49fa0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab888220a0b4bb285b84d49bf49fa0f.jpg", "file_size": 16720, "is_delete": false, "file_type": 1, "original_file_name": "80066#短袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab888220a0b4bb285b84d49bf49fa0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab888220a0b4bb285b84d49bf49fa0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab888220a0b4bb285b84d49bf49fa0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab888220a0b4bb285b84d49bf49fa0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab888220a0b4bb285b84d49bf49fa0f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hv6qPiVKv3okJQImS_vRPcZ8cEE=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.469604+00 2025-12-09 10:14:47.469608+00 5149 FHXGPK-013-1 SPMX-20240815300291 \N \N \N 1 \N [{"file_id": "e32d504a-03f2-462e-97ec-93386219f46c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f08287e25244be79262ca1239568f53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f08287e25244be79262ca1239568f53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f08287e25244be79262ca1239568f53.jpg", "file_size": 34809, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-013-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f08287e25244be79262ca1239568f53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f08287e25244be79262ca1239568f53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f08287e25244be79262ca1239568f53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f08287e25244be79262ca1239568f53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f08287e25244be79262ca1239568f53.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iShbSsQb_C1-eQlRmUAEhngysjI=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.470783+00 2025-12-09 10:14:47.470787+00 5150 DH20220779FW#XS短袖浅蓝 SPMX-20240815300286 \N \N \N 1 \N [{"file_id": "e04b9152-abd0-4c18-8a36-653593d639d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7c080f8e78f47b2ac33272e9f98951c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7c080f8e78f47b2ac33272e9f98951c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7c080f8e78f47b2ac33272e9f98951c.jpg", "file_size": 9623, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c080f8e78f47b2ac33272e9f98951c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c080f8e78f47b2ac33272e9f98951c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c080f8e78f47b2ac33272e9f98951c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7c080f8e78f47b2ac33272e9f98951c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7c080f8e78f47b2ac33272e9f98951c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xPv7xEsYTxqaCsDjYy-BANEDnU=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.473278+00 2025-12-09 10:14:47.473283+00 5152 0002-4FWE#VS-D3 SPMX-20240815300289 \N \N \N 1 \N [{"file_id": "884dc97b-1df1-4bb9-a50b-cbdba63dfcff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7183213ecb0e4db1a1e4f37d03aeb858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7183213ecb0e4db1a1e4f37d03aeb858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7183213ecb0e4db1a1e4f37d03aeb858.jpg", "file_size": 18730, "is_delete": false, "file_type": 1, "original_file_name": "0002-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7183213ecb0e4db1a1e4f37d03aeb858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7183213ecb0e4db1a1e4f37d03aeb858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7183213ecb0e4db1a1e4f37d03aeb858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7183213ecb0e4db1a1e4f37d03aeb858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7183213ecb0e4db1a1e4f37d03aeb858.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFGdjmP17cpInYBRGGWrVAUBJBM=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.474526+00 2025-12-09 10:14:47.47453+00 5153 23-2101#A35前后片3XL SPMX-20240815300285 \N \N \N 1 \N [{"file_id": "be3f3985-504e-4408-a00e-e2e400408cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bf2ac3d7863418a92d1c551f78a3635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bf2ac3d7863418a92d1c551f78a3635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bf2ac3d7863418a92d1c551f78a3635.jpg", "file_size": 11088, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A35前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf2ac3d7863418a92d1c551f78a3635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf2ac3d7863418a92d1c551f78a3635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf2ac3d7863418a92d1c551f78a3635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bf2ac3d7863418a92d1c551f78a3635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bf2ac3d7863418a92d1c551f78a3635.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGh7viADRP6IBLy9P42_IinGMfY=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.475729+00 2025-12-09 10:14:47.475733+00 5154 HSH124FW#VS-D3 SPMX-20240815300287 \N \N \N 1 \N [{"file_id": "b49140a7-7e4b-44a8-a9cc-30054c30b135", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "660228c10b2045b689c0fde02b37f7eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "660228c10b2045b689c0fde02b37f7eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "660228c10b2045b689c0fde02b37f7eb.jpg", "file_size": 25045, "is_delete": false, "file_type": 1, "original_file_name": "HSH124FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660228c10b2045b689c0fde02b37f7eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660228c10b2045b689c0fde02b37f7eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660228c10b2045b689c0fde02b37f7eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/660228c10b2045b689c0fde02b37f7eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/660228c10b2045b689c0fde02b37f7eb.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cZtnRZPO9vOw4BsSnpgLg4gvQJQ=", "createTime": "2024-08-15 14:41:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.476949+00 2025-12-09 10:14:47.476953+00 5155 1050#青色匹布 SPMX-20240815300292 \N \N \N 1 \N [{"file_id": "feec56c4-b8c5-4e97-be43-8d791b0553d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f9918cf6f6463495d9dffc14da92d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f9918cf6f6463495d9dffc14da92d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f9918cf6f6463495d9dffc14da92d7.jpg", "file_size": 15023, "is_delete": false, "file_type": 1, "original_file_name": "1050#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9918cf6f6463495d9dffc14da92d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9918cf6f6463495d9dffc14da92d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9918cf6f6463495d9dffc14da92d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f9918cf6f6463495d9dffc14da92d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f9918cf6f6463495d9dffc14da92d7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8a-p4cBi7SK2vQ9mltd_r3bX-zI=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.478139+00 2025-12-09 10:14:47.478143+00 5156 LHJ9245#5#彩兰 SPMX-20240815300293 \N \N \N 1 \N [{"file_id": "3a5434c1-9f59-4cd9-809a-4be5ceae2837", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46a0443ff7a44babb3712fbf002be983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46a0443ff7a44babb3712fbf002be983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46a0443ff7a44babb3712fbf002be983.jpg", "file_size": 13339, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a0443ff7a44babb3712fbf002be983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a0443ff7a44babb3712fbf002be983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a0443ff7a44babb3712fbf002be983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46a0443ff7a44babb3712fbf002be983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46a0443ff7a44babb3712fbf002be983.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxKHgYAFbScWGx3T6XMD7Mvk9P8=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.479343+00 2025-12-09 10:14:47.479347+00 5157 JS176D版本#XL SPMX-20240815300295 \N \N \N 1 \N [{"file_id": "07b5ee74-baff-40bb-b720-bea1cfa2ff8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac3c92fb3d84002a7bbf7e15dbb820e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac3c92fb3d84002a7bbf7e15dbb820e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac3c92fb3d84002a7bbf7e15dbb820e.jpg", "file_size": 20444, "is_delete": false, "file_type": 1, "original_file_name": "JS176D版本#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac3c92fb3d84002a7bbf7e15dbb820e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac3c92fb3d84002a7bbf7e15dbb820e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac3c92fb3d84002a7bbf7e15dbb820e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac3c92fb3d84002a7bbf7e15dbb820e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac3c92fb3d84002a7bbf7e15dbb820e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JB90423yoj6KHsH9FtyZpuQQDEk=", "createTime": "2024-08-15 14:41:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.480546+00 2025-12-09 10:14:47.48055+00 5158 C253#枣红 SPMX-20240815300297 \N \N \N 1 \N [{"file_id": "f14cac80-a1ad-4798-b564-1f76686c2851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae152fc2adce40b28d3061246210c0da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae152fc2adce40b28d3061246210c0da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae152fc2adce40b28d3061246210c0da.jpg", "file_size": 22323, "is_delete": false, "file_type": 1, "original_file_name": "C253#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae152fc2adce40b28d3061246210c0da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae152fc2adce40b28d3061246210c0da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae152fc2adce40b28d3061246210c0da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae152fc2adce40b28d3061246210c0da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae152fc2adce40b28d3061246210c0da.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fm6ptwW15i_kZCRCh9QezBht8o4=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.481758+00 2025-12-09 10:14:47.481763+00 5159 HSH125FW#VS-D3 SPMX-20240815300299 \N \N \N 1 \N [{"file_id": "ac4da2d3-5b22-40e6-b018-2d63f543a112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af59af35ba00457fa9c171eaaeb77985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af59af35ba00457fa9c171eaaeb77985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af59af35ba00457fa9c171eaaeb77985.jpg", "file_size": 21463, "is_delete": false, "file_type": 1, "original_file_name": "HSH125FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af59af35ba00457fa9c171eaaeb77985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af59af35ba00457fa9c171eaaeb77985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af59af35ba00457fa9c171eaaeb77985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af59af35ba00457fa9c171eaaeb77985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af59af35ba00457fa9c171eaaeb77985.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoDblorBl9aeH5czZL0OlAfcK-c=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.482955+00 2025-12-09 10:14:47.482959+00 5160 LHJ9245#64#橙粉 SPMX-20240815300300 \N \N \N 1 \N [{"file_id": "aaed129b-88f7-484f-baf2-163063fad8ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b94c8948b864af2a7a235ad3b54f872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b94c8948b864af2a7a235ad3b54f872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b94c8948b864af2a7a235ad3b54f872.jpg", "file_size": 10850, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#64#橙粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b94c8948b864af2a7a235ad3b54f872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b94c8948b864af2a7a235ad3b54f872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b94c8948b864af2a7a235ad3b54f872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b94c8948b864af2a7a235ad3b54f872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b94c8948b864af2a7a235ad3b54f872.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hdUz1_zTq3x8n5vu_rcNdhM89ik=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.484164+00 2025-12-09 10:14:47.484169+00 5161 0002-4FWF#V5曲线 SPMX-20240815300304 \N \N \N 1 \N [{"file_id": "278173f6-9eff-421c-bed0-d44ef8cdd83f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e52d483be9fd49b89ea51d681792ea66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e52d483be9fd49b89ea51d681792ea66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e52d483be9fd49b89ea51d681792ea66.jpg", "file_size": 20215, "is_delete": false, "file_type": 1, "original_file_name": "0002-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52d483be9fd49b89ea51d681792ea66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52d483be9fd49b89ea51d681792ea66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52d483be9fd49b89ea51d681792ea66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e52d483be9fd49b89ea51d681792ea66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e52d483be9fd49b89ea51d681792ea66.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pz3ohkzIr0y6co6S3ep8-wrM3rM=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.48537+00 2025-12-09 10:14:47.485374+00 5162 JS176D版本#匹布 SPMX-20240815300298 \N \N \N 1 \N [{"file_id": "008f112c-99f8-4858-832e-174fdc011317", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99938c1468ef4474aadc887038e31f8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99938c1468ef4474aadc887038e31f8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99938c1468ef4474aadc887038e31f8b.jpg", "file_size": 16407, "is_delete": false, "file_type": 1, "original_file_name": "JS176D版本#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99938c1468ef4474aadc887038e31f8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99938c1468ef4474aadc887038e31f8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99938c1468ef4474aadc887038e31f8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99938c1468ef4474aadc887038e31f8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99938c1468ef4474aadc887038e31f8b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xQ2hXizmtRyDcICvsgAwIy--Pg=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.486585+00 2025-12-09 10:14:47.486589+00 5163 DH20220779FW#XS短袖灰 SPMX-20240815300302 \N \N \N 1 \N [{"file_id": "7283923d-8458-4e91-95fe-389e5d09841c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg", "file_size": 9324, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fdbe9b1d70a4c95b87dc1a9e40838d0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETXfuo6LZz9baytjxTVfm6F1N0c=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.487776+00 2025-12-09 10:14:47.48778+00 5164 LZ1211#上身1号色 SPMX-20240815300303 \N \N \N 1 \N [{"file_id": "e907fcf0-f2c7-493d-9534-93ace1e99ae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b38135b064ae4288b2aef6839360a3a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b38135b064ae4288b2aef6839360a3a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b38135b064ae4288b2aef6839360a3a7.jpg", "file_size": 18728, "is_delete": false, "file_type": 1, "original_file_name": "LZ1211#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38135b064ae4288b2aef6839360a3a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38135b064ae4288b2aef6839360a3a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38135b064ae4288b2aef6839360a3a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b38135b064ae4288b2aef6839360a3a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b38135b064ae4288b2aef6839360a3a7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:foOHldk9P-vm8b-OSWSKHuCLx4g=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.48898+00 2025-12-09 10:14:47.488984+00 5165 1051#宝蓝色 SPMX-20240815300305 \N \N \N 1 \N [{"file_id": "94c4622f-ba71-4df5-8ba4-1c9207421b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f97eab31cff9494cbeff9db98c2db50e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f97eab31cff9494cbeff9db98c2db50e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f97eab31cff9494cbeff9db98c2db50e.jpg", "file_size": 21494, "is_delete": false, "file_type": 1, "original_file_name": "1051#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97eab31cff9494cbeff9db98c2db50e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97eab31cff9494cbeff9db98c2db50e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97eab31cff9494cbeff9db98c2db50e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f97eab31cff9494cbeff9db98c2db50e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f97eab31cff9494cbeff9db98c2db50e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jS4_tgsRMSLK_v21pKn4nnINFOY=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.490191+00 2025-12-09 10:14:47.490195+00 5166 23-2101#A35前后片4XL SPMX-20240815300296 \N \N \N 1 \N [{"file_id": "089acfed-d5fb-4f3f-98e5-cdac814d258d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd3160ebb9454fc3a87849765405918a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd3160ebb9454fc3a87849765405918a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd3160ebb9454fc3a87849765405918a.jpg", "file_size": 11474, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A35前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd3160ebb9454fc3a87849765405918a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd3160ebb9454fc3a87849765405918a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd3160ebb9454fc3a87849765405918a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd3160ebb9454fc3a87849765405918a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd3160ebb9454fc3a87849765405918a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-XnDDPIkJhJJHvkdyxn3F8qJJQ8=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.491399+00 2025-12-09 10:14:47.491403+00 5167 8006FWF#V5曲线 SPMX-20240815300301 \N \N \N 1 \N [{"file_id": "e4d154d3-37a3-43db-9874-61a6c97655e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef9e335f229c4b36a2a25281f423aa40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef9e335f229c4b36a2a25281f423aa40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef9e335f229c4b36a2a25281f423aa40.jpg", "file_size": 25274, "is_delete": false, "file_type": 1, "original_file_name": "8006FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9e335f229c4b36a2a25281f423aa40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9e335f229c4b36a2a25281f423aa40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9e335f229c4b36a2a25281f423aa40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef9e335f229c4b36a2a25281f423aa40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef9e335f229c4b36a2a25281f423aa40.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ikk6yJ6201ewEyNtYOfjwqTwkCM=", "createTime": "2024-08-15 14:41:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.492589+00 2025-12-09 10:14:47.492593+00 5168 LHJ9245#7#天蓝 SPMX-20240815300307 \N \N \N 1 \N [{"file_id": "d182685b-4afb-4ce0-b200-654f80ed3cd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67609a11d6dd4d889387cabaf4c2d611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67609a11d6dd4d889387cabaf4c2d611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67609a11d6dd4d889387cabaf4c2d611.jpg", "file_size": 11240, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9245#7#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67609a11d6dd4d889387cabaf4c2d611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67609a11d6dd4d889387cabaf4c2d611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67609a11d6dd4d889387cabaf4c2d611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67609a11d6dd4d889387cabaf4c2d611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67609a11d6dd4d889387cabaf4c2d611.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71BXVIK20HMNDqolhxl5VDwyJm0=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.4938+00 2025-12-09 10:14:47.493804+00 5169 23-2101#A35袖子3XL SPMX-20240815300311 \N \N \N 1 \N [{"file_id": "e8575613-11be-4980-9605-04ddcf9744e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e1777431df24d7594315277aff6049f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e1777431df24d7594315277aff6049f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e1777431df24d7594315277aff6049f.jpg", "file_size": 8257, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A35袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1777431df24d7594315277aff6049f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1777431df24d7594315277aff6049f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1777431df24d7594315277aff6049f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e1777431df24d7594315277aff6049f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e1777431df24d7594315277aff6049f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ob7F6_trUmFTBzuNPxBO01cNUeY=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.495056+00 2025-12-09 10:14:47.49506+00 5170 FHXGPK-013-2 SPMX-20240815300306 \N \N \N 1 \N [{"file_id": "c89b56f4-c22a-4f38-99bf-f3bcf9400714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37c21c164c704ac999d9588cb0152076.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37c21c164c704ac999d9588cb0152076.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37c21c164c704ac999d9588cb0152076.jpg", "file_size": 33788, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-013-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c21c164c704ac999d9588cb0152076.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c21c164c704ac999d9588cb0152076.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c21c164c704ac999d9588cb0152076.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37c21c164c704ac999d9588cb0152076.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37c21c164c704ac999d9588cb0152076.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMbTAr9EyxvnBINsjWOEJtNPxWE=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.496288+00 2025-12-09 10:14:47.496292+00 5171 DH20220779FW#XS短袖白 SPMX-20240815300309 \N \N \N 1 \N [{"file_id": "f4f7e147-840c-45fb-92a9-369a7ef87b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f061882116c4305b228b4f1163c0899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f061882116c4305b228b4f1163c0899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f061882116c4305b228b4f1163c0899.jpg", "file_size": 9559, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f061882116c4305b228b4f1163c0899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f061882116c4305b228b4f1163c0899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f061882116c4305b228b4f1163c0899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f061882116c4305b228b4f1163c0899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f061882116c4305b228b4f1163c0899.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzu7jDuqt2hRYw3QfLZTx3-lPpc=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.497498+00 2025-12-09 10:14:47.497502+00 5172 HSH126FW#VS-D3 SPMX-20240815300310 \N \N \N 1 \N [{"file_id": "f755fa1a-c92e-47e8-8ffc-7cdd08f0457f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg", "file_size": 6120, "is_delete": false, "file_type": 1, "original_file_name": "HSH126FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8bcf6f9d43f468c8b1a7fdd98c6d382.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbMEeD6xwdnIUcucW-1ajh6zYhQ=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.498702+00 2025-12-09 10:14:47.498708+00 5173 C253#白色 SPMX-20240815300308 \N \N \N 1 \N [{"file_id": "59ab7957-1883-4483-8c29-08f37f715bb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39adae0ffb7b41d2b3912dd479c869cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39adae0ffb7b41d2b3912dd479c869cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39adae0ffb7b41d2b3912dd479c869cd.jpg", "file_size": 21560, "is_delete": false, "file_type": 1, "original_file_name": "C253#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39adae0ffb7b41d2b3912dd479c869cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39adae0ffb7b41d2b3912dd479c869cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39adae0ffb7b41d2b3912dd479c869cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39adae0ffb7b41d2b3912dd479c869cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39adae0ffb7b41d2b3912dd479c869cd.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMyeZDLyDTO8P4D2Ag9iDhgPFVc=", "createTime": "2024-08-15 14:41:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.499936+00 2025-12-09 10:14:47.499941+00 5174 1051#宝蓝色匹布 SPMX-20240815300315 \N \N \N 1 \N [{"file_id": "805e8281-6e9c-4a67-808c-e2b226fbbf6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "800f4dd1cc2d4ed6833a351a4503abd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "800f4dd1cc2d4ed6833a351a4503abd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "800f4dd1cc2d4ed6833a351a4503abd2.jpg", "file_size": 10737, "is_delete": false, "file_type": 1, "original_file_name": "1051#宝蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/800f4dd1cc2d4ed6833a351a4503abd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/800f4dd1cc2d4ed6833a351a4503abd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/800f4dd1cc2d4ed6833a351a4503abd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/800f4dd1cc2d4ed6833a351a4503abd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/800f4dd1cc2d4ed6833a351a4503abd2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5krtSv8im3z1g5DKGNOUW8pnIk=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.501147+00 2025-12-09 10:14:47.501152+00 5175 LHJ9246#20#枣红 SPMX-20240815300321 \N \N \N 1 \N [{"file_id": "03fd9841-2412-4609-bb66-9e0c5a0520a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e44d38d0eec432fa015570f17b111d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e44d38d0eec432fa015570f17b111d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e44d38d0eec432fa015570f17b111d2.jpg", "file_size": 12781, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9246#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e44d38d0eec432fa015570f17b111d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e44d38d0eec432fa015570f17b111d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e44d38d0eec432fa015570f17b111d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e44d38d0eec432fa015570f17b111d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e44d38d0eec432fa015570f17b111d2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4tE8JdnL_w7hqucWLxdyiDH7_Ek=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.502355+00 2025-12-09 10:14:47.502359+00 5176 23-2101#A35袖子4XL SPMX-20240815300322 \N \N \N 1 \N [{"file_id": "a07c3f14-9877-461c-bfe5-0e97e296cbb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9f3f3e3ed394f0aaddf11b0f5fade88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9f3f3e3ed394f0aaddf11b0f5fade88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9f3f3e3ed394f0aaddf11b0f5fade88.jpg", "file_size": 8311, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A35袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f3f3e3ed394f0aaddf11b0f5fade88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f3f3e3ed394f0aaddf11b0f5fade88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f3f3e3ed394f0aaddf11b0f5fade88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9f3f3e3ed394f0aaddf11b0f5fade88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9f3f3e3ed394f0aaddf11b0f5fade88.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aC6L3ABgpoYC1RDRbAoBx-Or1LM=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.50355+00 2025-12-09 10:14:47.503554+00 5177 HSH127FW#VS-D3 SPMX-20240815300319 \N \N \N 1 \N [{"file_id": "811a5d7a-959e-46f7-b1a4-627e288e783f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b98016dc8b64974971a5896fd593e01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b98016dc8b64974971a5896fd593e01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b98016dc8b64974971a5896fd593e01.jpg", "file_size": 6773, "is_delete": false, "file_type": 1, "original_file_name": "HSH127FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98016dc8b64974971a5896fd593e01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98016dc8b64974971a5896fd593e01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98016dc8b64974971a5896fd593e01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b98016dc8b64974971a5896fd593e01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b98016dc8b64974971a5896fd593e01.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17QMIO3H2b7so7dulBVuOeJDxfA=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.504757+00 2025-12-09 10:14:47.504761+00 5178 C253#黑色 SPMX-20240815300320 \N \N \N 1 \N [{"file_id": "25a2269c-905e-48ac-910d-f695c81424ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "269b22313a76403286a0c0dae4afd807.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "269b22313a76403286a0c0dae4afd807.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "269b22313a76403286a0c0dae4afd807.jpg", "file_size": 22174, "is_delete": false, "file_type": 1, "original_file_name": "C253#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b22313a76403286a0c0dae4afd807.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b22313a76403286a0c0dae4afd807.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b22313a76403286a0c0dae4afd807.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/269b22313a76403286a0c0dae4afd807.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/269b22313a76403286a0c0dae4afd807.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rL7pgw85KLgYJf7nr2ZUiWQ-jY=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.505982+00 2025-12-09 10:14:47.505986+00 5179 LZ1211#上身3号色 SPMX-20240815300324 \N \N \N 1 \N [{"file_id": "c2d90812-efd5-49d4-b408-b6d023d1c736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23ac2770804c4bfe85b98da318130684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23ac2770804c4bfe85b98da318130684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23ac2770804c4bfe85b98da318130684.jpg", "file_size": 16936, "is_delete": false, "file_type": 1, "original_file_name": "LZ1211#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ac2770804c4bfe85b98da318130684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ac2770804c4bfe85b98da318130684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ac2770804c4bfe85b98da318130684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23ac2770804c4bfe85b98da318130684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23ac2770804c4bfe85b98da318130684.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMKtLdUzhoHfYGF0HiwSTd0uL40=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.507188+00 2025-12-09 10:14:47.507192+00 5180 DH20220779FW#XS短袖粉 SPMX-20240815300318 \N \N \N 1 \N [{"file_id": "fedfcc57-c73e-47dd-8d5c-480045b30181", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee6de63504b24c36b804d5aef7675a02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee6de63504b24c36b804d5aef7675a02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee6de63504b24c36b804d5aef7675a02.jpg", "file_size": 8338, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6de63504b24c36b804d5aef7675a02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6de63504b24c36b804d5aef7675a02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6de63504b24c36b804d5aef7675a02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee6de63504b24c36b804d5aef7675a02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee6de63504b24c36b804d5aef7675a02.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHuNoPe_sMtdUxM80Wi_I7roEGc=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.508382+00 2025-12-09 10:14:47.508385+00 5181 JS20721#L SPMX-20240815300312 \N \N \N 1 \N [{"file_id": "7812a394-7086-46a9-a974-f3ffc8a17ca7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15c05453e6564dfc8e582ffb7bff78c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15c05453e6564dfc8e582ffb7bff78c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15c05453e6564dfc8e582ffb7bff78c5.jpg", "file_size": 67308, "is_delete": false, "file_type": 1, "original_file_name": "JS20721#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15c05453e6564dfc8e582ffb7bff78c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15c05453e6564dfc8e582ffb7bff78c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15c05453e6564dfc8e582ffb7bff78c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15c05453e6564dfc8e582ffb7bff78c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15c05453e6564dfc8e582ffb7bff78c5.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ec16mAY_UCyjHb0rMDCK4oh-MwI=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.509575+00 2025-12-09 10:14:47.50958+00 5182 JS20721#M SPMX-20240815300323 \N \N \N 1 \N [{"file_id": "c6969e96-dfd4-49c8-9c16-e542e0846761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4183acf940da4314bdf684b0eb59df79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4183acf940da4314bdf684b0eb59df79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4183acf940da4314bdf684b0eb59df79.jpg", "file_size": 65883, "is_delete": false, "file_type": 1, "original_file_name": "JS20721#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4183acf940da4314bdf684b0eb59df79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4183acf940da4314bdf684b0eb59df79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4183acf940da4314bdf684b0eb59df79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4183acf940da4314bdf684b0eb59df79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4183acf940da4314bdf684b0eb59df79.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1omhTm_mYyclLXpydUGdnGKuAw=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.510771+00 2025-12-09 10:14:47.510775+00 5183 8007#WJC22 SPMX-20240815300314 \N \N \N 1 \N [{"file_id": "041cc730-2990-44e3-80ea-dc082b2f23a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba361e76c7584cfaae04f8d83b1c2f57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba361e76c7584cfaae04f8d83b1c2f57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba361e76c7584cfaae04f8d83b1c2f57.jpg", "file_size": 23530, "is_delete": false, "file_type": 1, "original_file_name": "8007#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba361e76c7584cfaae04f8d83b1c2f57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba361e76c7584cfaae04f8d83b1c2f57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba361e76c7584cfaae04f8d83b1c2f57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba361e76c7584cfaae04f8d83b1c2f57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba361e76c7584cfaae04f8d83b1c2f57.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bOqJ39TqLRcVdHXUw93-79Ub354=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.511985+00 2025-12-09 10:14:47.511989+00 5184 LZ1211#上身2号色 SPMX-20240815300313 \N \N \N 1 \N [{"file_id": "1268ea7a-48c9-4efc-9a8f-54d8aede132d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80c03924241a40cf92d57d553d1faadc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80c03924241a40cf92d57d553d1faadc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80c03924241a40cf92d57d553d1faadc.jpg", "file_size": 16561, "is_delete": false, "file_type": 1, "original_file_name": "LZ1211#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03924241a40cf92d57d553d1faadc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03924241a40cf92d57d553d1faadc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03924241a40cf92d57d553d1faadc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80c03924241a40cf92d57d553d1faadc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80c03924241a40cf92d57d553d1faadc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GD4bZ65rPqwzICGtx6LiLRFqUfQ=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.513182+00 2025-12-09 10:14:47.513186+00 5185 FHXGPK-013-3 SPMX-20240815300316 \N \N \N 1 \N [{"file_id": "0b54545d-cca4-4d01-a982-5df62d9a68f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6b226189a742cf8ec1dab1062d9284.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6b226189a742cf8ec1dab1062d9284.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6b226189a742cf8ec1dab1062d9284.jpg", "file_size": 36640, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-013-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6b226189a742cf8ec1dab1062d9284.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6b226189a742cf8ec1dab1062d9284.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6b226189a742cf8ec1dab1062d9284.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6b226189a742cf8ec1dab1062d9284.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6b226189a742cf8ec1dab1062d9284.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2Kz21iQZTkLOdFlQ5PXtHl1_gQ=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.514387+00 2025-12-09 10:14:47.514391+00 5186 0002-6FWE#VS-D3 SPMX-20240815300317 \N \N \N 1 \N [{"file_id": "44106cb8-854b-4f78-8e8c-ff20d24bbd70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb1a48e952ad426c995a735d6e16c9c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb1a48e952ad426c995a735d6e16c9c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb1a48e952ad426c995a735d6e16c9c7.jpg", "file_size": 16636, "is_delete": false, "file_type": 1, "original_file_name": "0002-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1a48e952ad426c995a735d6e16c9c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1a48e952ad426c995a735d6e16c9c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1a48e952ad426c995a735d6e16c9c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb1a48e952ad426c995a735d6e16c9c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb1a48e952ad426c995a735d6e16c9c7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7n6ees4zw2FUb8Ia9R7ZtrSZhI=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.515611+00 2025-12-09 10:14:47.515615+00 5187 FHXGPK-013-4 SPMX-20240815300326 \N \N \N 1 \N [{"file_id": "c5de19b8-d03a-4a23-983b-fa5cd6508d59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be215745b5e24f1b91bb2618aed6956a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be215745b5e24f1b91bb2618aed6956a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be215745b5e24f1b91bb2618aed6956a.jpg", "file_size": 31727, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-013-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be215745b5e24f1b91bb2618aed6956a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be215745b5e24f1b91bb2618aed6956a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be215745b5e24f1b91bb2618aed6956a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be215745b5e24f1b91bb2618aed6956a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be215745b5e24f1b91bb2618aed6956a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19FrgAtPksl9J2aEOL4H9qWhMRs=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.516805+00 2025-12-09 10:14:47.516809+00 5188 C257#墨绿底 SPMX-20240815300330 \N \N \N 1 \N [{"file_id": "49b36fe1-f8ba-41a6-8c4c-e3752f066f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg", "file_size": 20937, "is_delete": false, "file_type": 1, "original_file_name": "C257#墨绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8aa6dbeb334cf9b3dfc5c1c959e982.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3nYwIJ6DjV_7efSO3sjyK-gi-M=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.518+00 2025-12-09 10:14:47.518004+00 5189 LZ1211#上身4号色 SPMX-20240815300334 \N \N \N 1 \N [{"file_id": "8f4518c5-b30c-480a-9fc4-103cd7f76efc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35843dff6ce44b76a13cf2979469d594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35843dff6ce44b76a13cf2979469d594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35843dff6ce44b76a13cf2979469d594.jpg", "file_size": 17634, "is_delete": false, "file_type": 1, "original_file_name": "LZ1211#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35843dff6ce44b76a13cf2979469d594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35843dff6ce44b76a13cf2979469d594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35843dff6ce44b76a13cf2979469d594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35843dff6ce44b76a13cf2979469d594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35843dff6ce44b76a13cf2979469d594.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtTOVeVbr9E2-sO_UvqSRM3TM2Y=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.519207+00 2025-12-09 10:14:47.519211+00 5190 DH20220779FW#XS短袖蓝 SPMX-20240815300338 \N \N \N 1 \N [{"file_id": "0b1c7ea7-7605-4589-ab38-814f46e2edc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "603eccc7e05b456b894bf59de03654c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "603eccc7e05b456b894bf59de03654c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "603eccc7e05b456b894bf59de03654c3.jpg", "file_size": 10050, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603eccc7e05b456b894bf59de03654c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603eccc7e05b456b894bf59de03654c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603eccc7e05b456b894bf59de03654c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/603eccc7e05b456b894bf59de03654c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/603eccc7e05b456b894bf59de03654c3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4KQ7RJrNmQhpsRRsnXVgdInxD0=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.520419+00 2025-12-09 10:14:47.520423+00 5191 HSH129FW#VS-D3 SPMX-20240815300340 \N \N \N 1 \N [{"file_id": "bfd4abb4-d5cf-4636-b633-a88a16bb2423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0af9b2aaf7f4671ba75a31af14a1b63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0af9b2aaf7f4671ba75a31af14a1b63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0af9b2aaf7f4671ba75a31af14a1b63.jpg", "file_size": 6887, "is_delete": false, "file_type": 1, "original_file_name": "HSH129FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0af9b2aaf7f4671ba75a31af14a1b63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0af9b2aaf7f4671ba75a31af14a1b63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0af9b2aaf7f4671ba75a31af14a1b63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0af9b2aaf7f4671ba75a31af14a1b63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0af9b2aaf7f4671ba75a31af14a1b63.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMxMFTjaAZMTh1JDXM1IwrN87Ew=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.521627+00 2025-12-09 10:14:47.521631+00 5192 1051#灰色匹布 SPMX-20240815300336 \N \N \N 1 \N [{"file_id": "c25e037e-2392-4c2a-831e-0172c8e2774f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6138518f169946888966ad488dc68cf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6138518f169946888966ad488dc68cf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6138518f169946888966ad488dc68cf5.jpg", "file_size": 9129, "is_delete": false, "file_type": 1, "original_file_name": "1051#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6138518f169946888966ad488dc68cf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6138518f169946888966ad488dc68cf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6138518f169946888966ad488dc68cf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6138518f169946888966ad488dc68cf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6138518f169946888966ad488dc68cf5.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AntCREgyOLK2Rb3S0-ePPMLpQS8=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.522825+00 2025-12-09 10:14:47.522829+00 5193 FHXGPK-013-5 SPMX-20240815300337 \N \N \N 1 \N [{"file_id": "be385745-ec80-4b0c-b21e-21cf66b8b0bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bddd1d307384b6bb6b3843aec83238f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bddd1d307384b6bb6b3843aec83238f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bddd1d307384b6bb6b3843aec83238f.jpg", "file_size": 31058, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-013-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bddd1d307384b6bb6b3843aec83238f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bddd1d307384b6bb6b3843aec83238f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bddd1d307384b6bb6b3843aec83238f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bddd1d307384b6bb6b3843aec83238f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bddd1d307384b6bb6b3843aec83238f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgsmqgTGo0P855uNISZE4VIv-94=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.524015+00 2025-12-09 10:14:47.524019+00 5194 HSH128FW#VS-D3 SPMX-20240815300331 \N \N \N 1 \N [{"file_id": "387789ac-665a-4633-8777-83b0c52a7221", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f46936ad1374ddb9afa3e30b6d20648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f46936ad1374ddb9afa3e30b6d20648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f46936ad1374ddb9afa3e30b6d20648.jpg", "file_size": 6406, "is_delete": false, "file_type": 1, "original_file_name": "HSH128FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f46936ad1374ddb9afa3e30b6d20648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f46936ad1374ddb9afa3e30b6d20648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f46936ad1374ddb9afa3e30b6d20648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f46936ad1374ddb9afa3e30b6d20648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f46936ad1374ddb9afa3e30b6d20648.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4O7iwUPlwb1qePiEvzB_Vz1h2JE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.525228+00 2025-12-09 10:14:47.525232+00 5195 0002-6FWF#V5曲线 SPMX-20240815300329 \N \N \N 1 \N [{"file_id": "e0889088-be8a-48b4-93af-d838669882ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a20862dc6114a6f8d1d05bb6a94d00b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a20862dc6114a6f8d1d05bb6a94d00b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a20862dc6114a6f8d1d05bb6a94d00b.jpg", "file_size": 16112, "is_delete": false, "file_type": 1, "original_file_name": "0002-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a20862dc6114a6f8d1d05bb6a94d00b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a20862dc6114a6f8d1d05bb6a94d00b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a20862dc6114a6f8d1d05bb6a94d00b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a20862dc6114a6f8d1d05bb6a94d00b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a20862dc6114a6f8d1d05bb6a94d00b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pWXgmQBkJs9nKK7qtnYu7Uf0bU=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.526426+00 2025-12-09 10:14:47.52643+00 5196 0002-7FWE#VS-D3 SPMX-20240815300339 \N \N \N 1 \N [{"file_id": "99931ef5-a08b-4e09-8e9d-4d2914159eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "421860de9a154470a88f57f695acbe0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "421860de9a154470a88f57f695acbe0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "421860de9a154470a88f57f695acbe0f.jpg", "file_size": 20193, "is_delete": false, "file_type": 1, "original_file_name": "0002-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421860de9a154470a88f57f695acbe0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421860de9a154470a88f57f695acbe0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421860de9a154470a88f57f695acbe0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/421860de9a154470a88f57f695acbe0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/421860de9a154470a88f57f695acbe0f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OUb7GUEoEpb129haN_acfYrabE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.527615+00 2025-12-09 10:14:47.527619+00 5197 8007#咖色L SPMX-20240815300341 \N \N \N 1 \N [{"file_id": "7d91df68-b72f-4a1d-a466-e139c868268a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fb01bce035a4d24861fbd07087bc089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fb01bce035a4d24861fbd07087bc089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fb01bce035a4d24861fbd07087bc089.jpg", "file_size": 72604, "is_delete": false, "file_type": 1, "original_file_name": "8007#咖色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb01bce035a4d24861fbd07087bc089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb01bce035a4d24861fbd07087bc089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb01bce035a4d24861fbd07087bc089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fb01bce035a4d24861fbd07087bc089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fb01bce035a4d24861fbd07087bc089.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjFKxEiwhiIUmxaNrVHGs8FS6Vk=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.528847+00 2025-12-09 10:14:47.528852+00 5198 8007#咖色2XL SPMX-20240815300327 \N \N \N 1 \N [{"file_id": "5e5f9ffb-bec6-40fe-87cc-8fccbd224438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8173124f3e84ad2a432e65d349372d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8173124f3e84ad2a432e65d349372d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8173124f3e84ad2a432e65d349372d9.jpg", "file_size": 72002, "is_delete": false, "file_type": 1, "original_file_name": "8007#咖色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8173124f3e84ad2a432e65d349372d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8173124f3e84ad2a432e65d349372d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8173124f3e84ad2a432e65d349372d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8173124f3e84ad2a432e65d349372d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8173124f3e84ad2a432e65d349372d9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYq-XK_GskTY0M8TONw3xrUpzdQ=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.530045+00 2025-12-09 10:14:47.530049+00 5199 DH20220779FW#XS短袖绿 SPMX-20240815300328 \N \N \N 1 \N [{"file_id": "28e8f56b-c37e-4327-9bf6-d5034eb58530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33f4ad5d0bba4fefaee737843c8a027e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33f4ad5d0bba4fefaee737843c8a027e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33f4ad5d0bba4fefaee737843c8a027e.jpg", "file_size": 8782, "is_delete": false, "file_type": 1, "original_file_name": "DH20220779FW#XS短袖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f4ad5d0bba4fefaee737843c8a027e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f4ad5d0bba4fefaee737843c8a027e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f4ad5d0bba4fefaee737843c8a027e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33f4ad5d0bba4fefaee737843c8a027e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33f4ad5d0bba4fefaee737843c8a027e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HX5KvK39ZQbb6R08EDh4EkEVPuc=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.531259+00 2025-12-09 10:14:47.531263+00 5200 23-2101#A35领子通用 SPMX-20240815300333 \N \N \N 1 \N [{"file_id": "d7725734-969b-4d52-b271-43a4becdba9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1df8e10646b4dc2a8a1a73931e6c2d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1df8e10646b4dc2a8a1a73931e6c2d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1df8e10646b4dc2a8a1a73931e6c2d2.jpg", "file_size": 11168, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A35领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1df8e10646b4dc2a8a1a73931e6c2d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1df8e10646b4dc2a8a1a73931e6c2d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1df8e10646b4dc2a8a1a73931e6c2d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1df8e10646b4dc2a8a1a73931e6c2d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1df8e10646b4dc2a8a1a73931e6c2d2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2or1wYE9zFFeLhgokVPo5_pl4rE=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.532441+00 2025-12-09 10:14:47.532445+00 5201 JS238#L SPMX-20240815300335 \N \N \N 1 \N [{"file_id": "78a83e77-f5ee-4aba-a20b-b265010966dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bac778600164e3fbdc15cc0b746d12a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bac778600164e3fbdc15cc0b746d12a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bac778600164e3fbdc15cc0b746d12a.jpg", "file_size": 22137, "is_delete": false, "file_type": 1, "original_file_name": "JS238#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bac778600164e3fbdc15cc0b746d12a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bac778600164e3fbdc15cc0b746d12a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bac778600164e3fbdc15cc0b746d12a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bac778600164e3fbdc15cc0b746d12a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bac778600164e3fbdc15cc0b746d12a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8jIhXN8Uvrgxl9pCAOCtLP5u7g=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.533647+00 2025-12-09 10:14:47.533651+00 5202 1051#灰色 SPMX-20240815300325 \N \N \N 1 \N [{"file_id": "af7c495d-cd69-45de-b4f8-971540543513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8c0f38b8c54160a188fc57819d4ac9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8c0f38b8c54160a188fc57819d4ac9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8c0f38b8c54160a188fc57819d4ac9.jpg", "file_size": 18985, "is_delete": false, "file_type": 1, "original_file_name": "1051#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8c0f38b8c54160a188fc57819d4ac9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8c0f38b8c54160a188fc57819d4ac9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8c0f38b8c54160a188fc57819d4ac9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8c0f38b8c54160a188fc57819d4ac9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8c0f38b8c54160a188fc57819d4ac9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFASJ4ybwsp0cKmiIoN-ShyKkRM=", "createTime": "2024-08-15 14:41:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.534839+00 2025-12-09 10:14:47.534843+00 5203 LHJ9246#25#土黄 SPMX-20240815300332 \N \N \N 1 \N [{"file_id": "e4d117ff-05a1-4418-a7d0-9cedb0d4ce99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddcd7fd8ba2c40669057a88fa7052c4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddcd7fd8ba2c40669057a88fa7052c4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddcd7fd8ba2c40669057a88fa7052c4f.jpg", "file_size": 9743, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9246#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd7fd8ba2c40669057a88fa7052c4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd7fd8ba2c40669057a88fa7052c4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd7fd8ba2c40669057a88fa7052c4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddcd7fd8ba2c40669057a88fa7052c4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddcd7fd8ba2c40669057a88fa7052c4f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9c49TyEpMomhIetIQZHViM6iFY=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.53608+00 2025-12-09 10:14:47.536084+00 5204 LHJ9246#37#梅红 SPMX-20240815300343 \N \N \N 1 \N [{"file_id": "1bd4cbcd-6646-4a93-8b18-3b794aaa26b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c35be89c96147408b60974c5855c1c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c35be89c96147408b60974c5855c1c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c35be89c96147408b60974c5855c1c1.jpg", "file_size": 10361, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9246#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c35be89c96147408b60974c5855c1c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c35be89c96147408b60974c5855c1c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c35be89c96147408b60974c5855c1c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c35be89c96147408b60974c5855c1c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c35be89c96147408b60974c5855c1c1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyait3fAqhGLf7GWmYMq0TWGpCQ=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.537279+00 2025-12-09 10:14:47.537283+00 5205 LHJ9246#37#玫红 SPMX-20240815300353 \N \N \N 1 \N [{"file_id": "0f54db4f-0f3f-4098-a4ec-bd88484da357", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aafc53cf4cf04a1494ccbb8a9d7f9018.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aafc53cf4cf04a1494ccbb8a9d7f9018.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aafc53cf4cf04a1494ccbb8a9d7f9018.jpg", "file_size": 9527, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9246#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aafc53cf4cf04a1494ccbb8a9d7f9018.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aafc53cf4cf04a1494ccbb8a9d7f9018.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aafc53cf4cf04a1494ccbb8a9d7f9018.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aafc53cf4cf04a1494ccbb8a9d7f9018.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aafc53cf4cf04a1494ccbb8a9d7f9018.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mLV9jstySTRxEiSwDEYwCMo1F_0=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.538495+00 2025-12-09 10:14:47.538498+00 5206 JS238#匹布 SPMX-20240815300357 \N \N \N 1 \N [{"file_id": "d59abc2a-3354-4f98-a492-4ba9d555ba7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7132e4ef20154319a77064e4305568b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7132e4ef20154319a77064e4305568b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7132e4ef20154319a77064e4305568b9.jpg", "file_size": 14637, "is_delete": false, "file_type": 1, "original_file_name": "JS238#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7132e4ef20154319a77064e4305568b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7132e4ef20154319a77064e4305568b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7132e4ef20154319a77064e4305568b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7132e4ef20154319a77064e4305568b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7132e4ef20154319a77064e4305568b9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pC72jY8y7dBXvFvK57fsopetPWI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.539679+00 2025-12-09 10:14:47.539683+00 5207 C257#白底 SPMX-20240815300342 \N \N \N 1 \N [{"file_id": "cd4598fd-8721-4b92-a2f0-edc7cd2d2af0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0103a8a1c6df4a5baad5829a985acb3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0103a8a1c6df4a5baad5829a985acb3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0103a8a1c6df4a5baad5829a985acb3d.jpg", "file_size": 24142, "is_delete": false, "file_type": 1, "original_file_name": "C257#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0103a8a1c6df4a5baad5829a985acb3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0103a8a1c6df4a5baad5829a985acb3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0103a8a1c6df4a5baad5829a985acb3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0103a8a1c6df4a5baad5829a985acb3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0103a8a1c6df4a5baad5829a985acb3d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TC26ezMd3Jpetcv03bv4Dt7W0a0=", "createTime": "2024-08-15 14:41:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.540907+00 2025-12-09 10:14:47.540911+00 5208 LZ1212#上身1号色 SPMX-20240815300356 \N \N \N 1 \N [{"file_id": "d4057cf2-e25e-4983-b14a-cf607199f2dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c12f6adcac244e29b33f3b4c2deb976.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c12f6adcac244e29b33f3b4c2deb976.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c12f6adcac244e29b33f3b4c2deb976.jpg", "file_size": 20574, "is_delete": false, "file_type": 1, "original_file_name": "LZ1212#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c12f6adcac244e29b33f3b4c2deb976.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c12f6adcac244e29b33f3b4c2deb976.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c12f6adcac244e29b33f3b4c2deb976.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c12f6adcac244e29b33f3b4c2deb976.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c12f6adcac244e29b33f3b4c2deb976.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bp8UtEEulQYzlLiG7yRRSpwsQ8o=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.542116+00 2025-12-09 10:14:47.54212+00 5209 LZ1211#上身5号色 SPMX-20240815300345 \N \N \N 1 \N [{"file_id": "17bf3b80-1fd2-44d3-a5f7-fb8f55f226a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43541e86e96744e99a55b0d9e6d304d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43541e86e96744e99a55b0d9e6d304d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43541e86e96744e99a55b0d9e6d304d0.jpg", "file_size": 17142, "is_delete": false, "file_type": 1, "original_file_name": "LZ1211#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43541e86e96744e99a55b0d9e6d304d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43541e86e96744e99a55b0d9e6d304d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43541e86e96744e99a55b0d9e6d304d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43541e86e96744e99a55b0d9e6d304d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43541e86e96744e99a55b0d9e6d304d0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SlkJl6Te0Mj_RsUTYomNl-FmLoc=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.543313+00 2025-12-09 10:14:47.543317+00 5210 8007#咖色XL SPMX-20240815300355 \N \N \N 1 \N [{"file_id": "22973483-de09-43f0-a731-09893c373552", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b98343b3f3b471e81b4a678642f31c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b98343b3f3b471e81b4a678642f31c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b98343b3f3b471e81b4a678642f31c1.jpg", "file_size": 76066, "is_delete": false, "file_type": 1, "original_file_name": "8007#咖色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98343b3f3b471e81b4a678642f31c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98343b3f3b471e81b4a678642f31c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98343b3f3b471e81b4a678642f31c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b98343b3f3b471e81b4a678642f31c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b98343b3f3b471e81b4a678642f31c1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0pWO-wQnctzYs_ByDEMxs46hhc=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.54451+00 2025-12-09 10:14:47.544514+00 5211 DH20220780T#5-24Y女童YL SPMX-20240815300349 \N \N \N 1 \N [{"file_id": "a3a166d6-40e9-4b71-baf6-3fd55c50ac51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b75a9e3a674f4066b8c0181b77e67d2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b75a9e3a674f4066b8c0181b77e67d2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b75a9e3a674f4066b8c0181b77e67d2d.jpg", "file_size": 11948, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#5-24Y女童YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75a9e3a674f4066b8c0181b77e67d2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75a9e3a674f4066b8c0181b77e67d2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75a9e3a674f4066b8c0181b77e67d2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b75a9e3a674f4066b8c0181b77e67d2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b75a9e3a674f4066b8c0181b77e67d2d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIMNfS84lEFRmleG7Fsd_O6FPTg=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.545719+00 2025-12-09 10:14:47.545722+00 5212 23-2101#A36前后片4XL SPMX-20240815300354 \N \N \N 1 \N [{"file_id": "f12efc03-777c-4921-8bfc-7a214a2e7a47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccd73b69cf63421b975f74b683a57da9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccd73b69cf63421b975f74b683a57da9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccd73b69cf63421b975f74b683a57da9.jpg", "file_size": 11339, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A36前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd73b69cf63421b975f74b683a57da9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd73b69cf63421b975f74b683a57da9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd73b69cf63421b975f74b683a57da9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccd73b69cf63421b975f74b683a57da9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccd73b69cf63421b975f74b683a57da9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mwRDZ21AFBIuyAXvz6s7E_o3OA=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.546939+00 2025-12-09 10:14:47.546943+00 5213 1051#白色匹布 SPMX-20240815300358 \N \N \N 1 \N [{"file_id": "6b811459-88d2-4d28-b5b2-a8d27280a6c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b27582470bc41f48905fe86cf3488d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b27582470bc41f48905fe86cf3488d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b27582470bc41f48905fe86cf3488d2.jpg", "file_size": 10957, "is_delete": false, "file_type": 1, "original_file_name": "1051#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b27582470bc41f48905fe86cf3488d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b27582470bc41f48905fe86cf3488d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b27582470bc41f48905fe86cf3488d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b27582470bc41f48905fe86cf3488d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b27582470bc41f48905fe86cf3488d2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfXDE1PSS3M6LAddBi14eo0q_Ck=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.548127+00 2025-12-09 10:14:47.548131+00 5214 JS238#XL SPMX-20240815300346 \N \N \N 1 \N [{"file_id": "82d0eadb-6055-4ba7-99df-be43f019fb61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bccb1d71af0940a6b02c602f92205d8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bccb1d71af0940a6b02c602f92205d8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bccb1d71af0940a6b02c602f92205d8a.jpg", "file_size": 22391, "is_delete": false, "file_type": 1, "original_file_name": "JS238#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccb1d71af0940a6b02c602f92205d8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccb1d71af0940a6b02c602f92205d8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccb1d71af0940a6b02c602f92205d8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bccb1d71af0940a6b02c602f92205d8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bccb1d71af0940a6b02c602f92205d8a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IAeNrgh6q-Sae8DxthgPb-TcKhI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.549339+00 2025-12-09 10:14:47.549344+00 5215 1051#白色 SPMX-20240815300347 \N \N \N 1 \N [{"file_id": "cdd59597-8a53-4de6-a08b-8b184db2e33c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7067df6cbaa43a190499f628ad977e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7067df6cbaa43a190499f628ad977e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7067df6cbaa43a190499f628ad977e7.jpg", "file_size": 21308, "is_delete": false, "file_type": 1, "original_file_name": "1051#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7067df6cbaa43a190499f628ad977e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7067df6cbaa43a190499f628ad977e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7067df6cbaa43a190499f628ad977e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7067df6cbaa43a190499f628ad977e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7067df6cbaa43a190499f628ad977e7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyVwCC4JoyOrwhIiS9UdKpH03hI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.550534+00 2025-12-09 10:14:47.550538+00 5216 0002-7FWF#V5曲线 SPMX-20240815300350 \N \N \N 1 \N [{"file_id": "cb1dc290-18c5-4b9a-b7b3-4ec6ce09e44c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc36271f0eca44cebb5493650e43d7ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc36271f0eca44cebb5493650e43d7ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc36271f0eca44cebb5493650e43d7ba.jpg", "file_size": 16422, "is_delete": false, "file_type": 1, "original_file_name": "0002-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc36271f0eca44cebb5493650e43d7ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc36271f0eca44cebb5493650e43d7ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc36271f0eca44cebb5493650e43d7ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc36271f0eca44cebb5493650e43d7ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc36271f0eca44cebb5493650e43d7ba.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmmDwPZvRoYEMj-2ZYS-MdnXrrQ=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.551765+00 2025-12-09 10:14:47.551769+00 5217 HSH130FW#VS-D3 SPMX-20240815300351 \N \N \N 1 \N [{"file_id": "4deb23aa-7039-4220-afaa-eee4694ae4d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8a2702c37ae4112a79a1157edcda09d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8a2702c37ae4112a79a1157edcda09d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8a2702c37ae4112a79a1157edcda09d.jpg", "file_size": 6806, "is_delete": false, "file_type": 1, "original_file_name": "HSH130FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a2702c37ae4112a79a1157edcda09d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a2702c37ae4112a79a1157edcda09d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a2702c37ae4112a79a1157edcda09d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8a2702c37ae4112a79a1157edcda09d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8a2702c37ae4112a79a1157edcda09d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6faewYmLc1d8gY6tKGZQ_O5HdI=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.552955+00 2025-12-09 10:14:47.552959+00 5218 C257#黑底 SPMX-20240815300352 \N \N \N 1 \N [{"file_id": "c1824f6b-87ee-4e4a-8da1-3fcb2ebac2c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2947e00e26ce4773b93cd12739614126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2947e00e26ce4773b93cd12739614126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2947e00e26ce4773b93cd12739614126.jpg", "file_size": 23402, "is_delete": false, "file_type": 1, "original_file_name": "C257#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2947e00e26ce4773b93cd12739614126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2947e00e26ce4773b93cd12739614126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2947e00e26ce4773b93cd12739614126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2947e00e26ce4773b93cd12739614126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2947e00e26ce4773b93cd12739614126.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3Tnf4gQj-gwI2GliQIg5J5Iowo=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.554171+00 2025-12-09 10:14:47.554175+00 5219 FHXGPK-014-1 SPMX-20240815300348 \N \N \N 1 \N [{"file_id": "43645f26-60e3-4b6c-91c1-80a5f227bb35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b516c9126ad492fa852b8b49e582f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b516c9126ad492fa852b8b49e582f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b516c9126ad492fa852b8b49e582f06.jpg", "file_size": 34693, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b516c9126ad492fa852b8b49e582f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b516c9126ad492fa852b8b49e582f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b516c9126ad492fa852b8b49e582f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b516c9126ad492fa852b8b49e582f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b516c9126ad492fa852b8b49e582f06.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVZEdt8-FUuSL1OoFPI3NCFHDr4=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.565137+00 2025-12-09 10:14:47.565141+00 5228 1051#粉色 SPMX-20240815300368 \N \N \N 1 \N [{"file_id": "28c8b7dd-55f0-430a-8811-414761240c1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecfe54c73fee4d0ca56efb9a66d54da2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecfe54c73fee4d0ca56efb9a66d54da2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecfe54c73fee4d0ca56efb9a66d54da2.jpg", "file_size": 18730, "is_delete": false, "file_type": 1, "original_file_name": "1051#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecfe54c73fee4d0ca56efb9a66d54da2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecfe54c73fee4d0ca56efb9a66d54da2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecfe54c73fee4d0ca56efb9a66d54da2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecfe54c73fee4d0ca56efb9a66d54da2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecfe54c73fee4d0ca56efb9a66d54da2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxTNkQs1jxSdaPF21dtNmTpN1iE=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.555377+00 2025-12-09 10:14:47.555382+00 5220 23-2101#A36前后片3XL SPMX-20240815300344 \N \N \N 1 \N [{"file_id": "50409a81-1fa6-4538-a2bd-71a1377b5c49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ee0253f422a4b33b308d8c8464cf2be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ee0253f422a4b33b308d8c8464cf2be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ee0253f422a4b33b308d8c8464cf2be.jpg", "file_size": 11231, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A36前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee0253f422a4b33b308d8c8464cf2be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee0253f422a4b33b308d8c8464cf2be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee0253f422a4b33b308d8c8464cf2be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ee0253f422a4b33b308d8c8464cf2be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ee0253f422a4b33b308d8c8464cf2be.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vWVGkTOarxyCD98zMxrpJ3WS8p0=", "createTime": "2024-08-15 14:41:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.556588+00 2025-12-09 10:14:47.556592+00 5221 DH20220780T#5-24Y女童YS SPMX-20240815300370 \N \N \N 1 \N [{"file_id": "623f4bb4-ed8c-4e3d-acac-f5d5a9396a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbbc6a09734f4de489963d2b5174bfd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbbc6a09734f4de489963d2b5174bfd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbbc6a09734f4de489963d2b5174bfd1.jpg", "file_size": 8863, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#5-24Y女童YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbc6a09734f4de489963d2b5174bfd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbc6a09734f4de489963d2b5174bfd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbc6a09734f4de489963d2b5174bfd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbbc6a09734f4de489963d2b5174bfd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbbc6a09734f4de489963d2b5174bfd1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06IZwMtgEW_h_-z0SyEa2v2Co-Y=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.557782+00 2025-12-09 10:14:47.557786+00 5222 LHJ9249#118#蓝色 SPMX-20240815300374 \N \N \N 1 \N [{"file_id": "b0590491-f523-4320-b96a-d0f8d65569b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e018510cdc45d88d209d8b2b479607.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e018510cdc45d88d209d8b2b479607.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e018510cdc45d88d209d8b2b479607.jpg", "file_size": 16237, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e018510cdc45d88d209d8b2b479607.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e018510cdc45d88d209d8b2b479607.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e018510cdc45d88d209d8b2b479607.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e018510cdc45d88d209d8b2b479607.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e018510cdc45d88d209d8b2b479607.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf_dbVgpNT4GTjU1_bI9ETvqxJI=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.558983+00 2025-12-09 10:14:47.558987+00 5223 JS253#红色L SPMX-20240815300369 \N \N \N 1 \N [{"file_id": "d8f58633-487d-45d5-85b8-67b2b59c961d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90a5c967db684647915e7bb45f9bc2aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90a5c967db684647915e7bb45f9bc2aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90a5c967db684647915e7bb45f9bc2aa.jpg", "file_size": 21258, "is_delete": false, "file_type": 1, "original_file_name": "JS253#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5c967db684647915e7bb45f9bc2aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5c967db684647915e7bb45f9bc2aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90a5c967db684647915e7bb45f9bc2aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90a5c967db684647915e7bb45f9bc2aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90a5c967db684647915e7bb45f9bc2aa.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vIiwFWfCW4F28k05wn9mIIwfT7Y=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.560181+00 2025-12-09 10:14:47.560186+00 5224 8007#咖色批布文件共用 SPMX-20240815300367 \N \N \N 1 \N [{"file_id": "aa44cd2d-c450-404c-af70-7a68c650bdab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e0f16d2243c47c3881e289f4a8f850f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e0f16d2243c47c3881e289f4a8f850f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e0f16d2243c47c3881e289f4a8f850f.jpg", "file_size": 37706, "is_delete": false, "file_type": 1, "original_file_name": "8007#咖色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f16d2243c47c3881e289f4a8f850f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f16d2243c47c3881e289f4a8f850f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f16d2243c47c3881e289f4a8f850f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e0f16d2243c47c3881e289f4a8f850f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e0f16d2243c47c3881e289f4a8f850f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TyR9QkV7Udm3kSc2i1RXuaFJ6cQ=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.561397+00 2025-12-09 10:14:47.561401+00 5225 DH20220780T#5-24Y女童YM SPMX-20240815300359 \N \N \N 1 \N [{"file_id": "3f270e6a-f04f-454c-a5d0-cdfc3d3e65a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f14dc8554e8840789cff5b2e77a79108.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f14dc8554e8840789cff5b2e77a79108.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f14dc8554e8840789cff5b2e77a79108.jpg", "file_size": 9582, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#5-24Y女童YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14dc8554e8840789cff5b2e77a79108.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14dc8554e8840789cff5b2e77a79108.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14dc8554e8840789cff5b2e77a79108.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f14dc8554e8840789cff5b2e77a79108.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f14dc8554e8840789cff5b2e77a79108.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u9iengr8BA3Cap6THj__whotZM0=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.562582+00 2025-12-09 10:14:47.562586+00 5226 HSH131FW#VS-D3 SPMX-20240815300361 \N \N \N 1 \N [{"file_id": "eca5f1c6-e1fd-48e0-bc6c-42089ad37ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f4e88aabe5c4b1ea893c36e70ae907e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f4e88aabe5c4b1ea893c36e70ae907e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f4e88aabe5c4b1ea893c36e70ae907e.jpg", "file_size": 23006, "is_delete": false, "file_type": 1, "original_file_name": "HSH131FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4e88aabe5c4b1ea893c36e70ae907e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4e88aabe5c4b1ea893c36e70ae907e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4e88aabe5c4b1ea893c36e70ae907e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f4e88aabe5c4b1ea893c36e70ae907e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f4e88aabe5c4b1ea893c36e70ae907e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqlKSKWt6KjDcVrp_P26vnL5QiI=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.563892+00 2025-12-09 10:14:47.563896+00 5227 23-2101#A36袖子3XL SPMX-20240815300365 \N \N \N 1 \N [{"file_id": "96744118-2a7f-47b4-81a8-41559c58ec14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b65098318e4b4084b1d021bb5503db3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b65098318e4b4084b1d021bb5503db3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b65098318e4b4084b1d021bb5503db3b.jpg", "file_size": 11333, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A36袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65098318e4b4084b1d021bb5503db3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65098318e4b4084b1d021bb5503db3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65098318e4b4084b1d021bb5503db3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b65098318e4b4084b1d021bb5503db3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b65098318e4b4084b1d021bb5503db3b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enBP2tnvVufO_0gdW9Bx8-AUsz8=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.566446+00 2025-12-09 10:14:47.566451+00 5229 0002-8FWF#V5曲线 SPMX-20240815300371 \N \N \N 1 \N [{"file_id": "df4a6bed-d73c-4b46-8841-b046d63b54c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7a367441cc46c4aa96839c71f497da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7a367441cc46c4aa96839c71f497da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7a367441cc46c4aa96839c71f497da.jpg", "file_size": 27630, "is_delete": false, "file_type": 1, "original_file_name": "0002-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a367441cc46c4aa96839c71f497da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a367441cc46c4aa96839c71f497da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a367441cc46c4aa96839c71f497da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7a367441cc46c4aa96839c71f497da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7a367441cc46c4aa96839c71f497da.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_evbmXrjEJtuhU3j_9WHEKM4Cvo=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.568456+00 2025-12-09 10:14:47.568461+00 5230 LHJ9246#5#彩兰 SPMX-20240815300363 \N \N \N 1 \N [{"file_id": "70dbd5fe-4ca7-49b5-93cb-f91f74ac7a94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be5badf8d5a43c99731bdf8724907f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be5badf8d5a43c99731bdf8724907f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be5badf8d5a43c99731bdf8724907f8.jpg", "file_size": 12882, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9246#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5badf8d5a43c99731bdf8724907f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5badf8d5a43c99731bdf8724907f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5badf8d5a43c99731bdf8724907f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be5badf8d5a43c99731bdf8724907f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be5badf8d5a43c99731bdf8724907f8.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bOXeVMymSRcmHNSZw2rT65Zk2ts=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.570362+00 2025-12-09 10:14:47.570367+00 5231 HSH132FW#VS-D3 SPMX-20240815300372 \N \N \N 1 \N [{"file_id": "cd5ee73f-d65d-414a-972f-3ee26139ef4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2180f47406314ef8bca97e7cc5bfb69f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2180f47406314ef8bca97e7cc5bfb69f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2180f47406314ef8bca97e7cc5bfb69f.jpg", "file_size": 18503, "is_delete": false, "file_type": 1, "original_file_name": "HSH132FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2180f47406314ef8bca97e7cc5bfb69f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2180f47406314ef8bca97e7cc5bfb69f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2180f47406314ef8bca97e7cc5bfb69f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2180f47406314ef8bca97e7cc5bfb69f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2180f47406314ef8bca97e7cc5bfb69f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKOrPySm8hMLqGDLbROeyjD79eg=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.571821+00 2025-12-09 10:14:47.571826+00 5232 FHXGPK-014-3 SPMX-20240815300373 \N \N \N 1 \N [{"file_id": "4cbee472-f9c1-43ef-b4dc-d866f8f9596e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d60f4edecda41c897e6f50f1739d0c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d60f4edecda41c897e6f50f1739d0c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d60f4edecda41c897e6f50f1739d0c1.jpg", "file_size": 33707, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60f4edecda41c897e6f50f1739d0c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60f4edecda41c897e6f50f1739d0c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60f4edecda41c897e6f50f1739d0c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d60f4edecda41c897e6f50f1739d0c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d60f4edecda41c897e6f50f1739d0c1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSdu2ldK0UOlQGHkwvuT2-3OWRQ=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.573226+00 2025-12-09 10:14:47.573231+00 5233 0002-8FWE#VS-D3 SPMX-20240815300360 \N \N \N 1 \N [{"file_id": "7d6bb2db-1b38-4f20-89c0-3aab0e0410a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7842a21897a545bd9074a38e36690a83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7842a21897a545bd9074a38e36690a83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7842a21897a545bd9074a38e36690a83.jpg", "file_size": 15687, "is_delete": false, "file_type": 1, "original_file_name": "0002-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7842a21897a545bd9074a38e36690a83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7842a21897a545bd9074a38e36690a83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7842a21897a545bd9074a38e36690a83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7842a21897a545bd9074a38e36690a83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7842a21897a545bd9074a38e36690a83.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0d7Oq9JiYJroJ9y7enOQ8pk4a0s=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.574638+00 2025-12-09 10:14:47.574642+00 5234 FHXGPK-014-2 SPMX-20240815300362 \N \N \N 1 \N [{"file_id": "27b5aa39-789b-4155-93da-5fb5b19e3ba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db1827bcb83d481ea10079abc2d7e810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db1827bcb83d481ea10079abc2d7e810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db1827bcb83d481ea10079abc2d7e810.jpg", "file_size": 32318, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1827bcb83d481ea10079abc2d7e810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1827bcb83d481ea10079abc2d7e810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1827bcb83d481ea10079abc2d7e810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db1827bcb83d481ea10079abc2d7e810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db1827bcb83d481ea10079abc2d7e810.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qTDMabzpgHcYmGIB_cwRgql8hPw=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.576085+00 2025-12-09 10:14:47.57609+00 5235 C258#166#绿色 SPMX-20240815300364 \N \N \N 1 \N [{"file_id": "5697499e-5a3a-474e-93ea-6b9c0cd7ecd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7f2e30ce43a41b499f0aa71690fa42c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7f2e30ce43a41b499f0aa71690fa42c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7f2e30ce43a41b499f0aa71690fa42c.jpg", "file_size": 11605, "is_delete": false, "file_type": 1, "original_file_name": "C258#166#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f2e30ce43a41b499f0aa71690fa42c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f2e30ce43a41b499f0aa71690fa42c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f2e30ce43a41b499f0aa71690fa42c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7f2e30ce43a41b499f0aa71690fa42c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7f2e30ce43a41b499f0aa71690fa42c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dee5ym3A27seDQzDx7z-yJ9pUtw=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.577503+00 2025-12-09 10:14:47.577508+00 5236 LZ1212#上身2号色 SPMX-20240815300366 \N \N \N 1 \N [{"file_id": "80016536-9718-48fb-8705-0db8f961a9e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c9e0fa7533647a880c4b3efcf167a9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c9e0fa7533647a880c4b3efcf167a9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c9e0fa7533647a880c4b3efcf167a9e.jpg", "file_size": 20828, "is_delete": false, "file_type": 1, "original_file_name": "LZ1212#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e0fa7533647a880c4b3efcf167a9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e0fa7533647a880c4b3efcf167a9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e0fa7533647a880c4b3efcf167a9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c9e0fa7533647a880c4b3efcf167a9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c9e0fa7533647a880c4b3efcf167a9e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQFGzsEpV2lApUvvz_o78QN3VS8=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.578917+00 2025-12-09 10:14:47.578922+00 5237 23-2101#A36袖子4XL SPMX-20240815300375 \N \N \N 1 \N [{"file_id": "d2f0dfa9-5302-4c87-a796-d60037cd2085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfaee6f75f5479ba702722e48006e26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfaee6f75f5479ba702722e48006e26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfaee6f75f5479ba702722e48006e26.jpg", "file_size": 10542, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A36袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfaee6f75f5479ba702722e48006e26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfaee6f75f5479ba702722e48006e26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfaee6f75f5479ba702722e48006e26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfaee6f75f5479ba702722e48006e26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfaee6f75f5479ba702722e48006e26.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9it8FH-cQRhwIpQCCWj0Xw2Nps=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.58034+00 2025-12-09 10:14:47.580345+00 5238 1051#粉色匹布 SPMX-20240815300380 \N \N \N 1 \N [{"file_id": "cc33e983-2ed5-48c4-bf6f-f9bacf70b3d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50bcd5bcd057409e848723e209ce8b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50bcd5bcd057409e848723e209ce8b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50bcd5bcd057409e848723e209ce8b0c.jpg", "file_size": 8502, "is_delete": false, "file_type": 1, "original_file_name": "1051#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50bcd5bcd057409e848723e209ce8b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50bcd5bcd057409e848723e209ce8b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50bcd5bcd057409e848723e209ce8b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50bcd5bcd057409e848723e209ce8b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50bcd5bcd057409e848723e209ce8b0c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUy29qeZsbByvXrJb8MvdZzOA3w=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.581776+00 2025-12-09 10:14:47.581781+00 5239 LZ1212#上身3号色 SPMX-20240815300377 \N \N \N 1 \N [{"file_id": "3a2e44ae-6501-4506-82b0-cac5c321c909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8302699c9726466db61a1d163dd22373.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8302699c9726466db61a1d163dd22373.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8302699c9726466db61a1d163dd22373.jpg", "file_size": 20818, "is_delete": false, "file_type": 1, "original_file_name": "LZ1212#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8302699c9726466db61a1d163dd22373.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8302699c9726466db61a1d163dd22373.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8302699c9726466db61a1d163dd22373.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8302699c9726466db61a1d163dd22373.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8302699c9726466db61a1d163dd22373.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRiozhZ_voFKOIlQ9iYCbi3T_x8=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.583193+00 2025-12-09 10:14:47.583198+00 5240 LHJ9249#14#粉色 SPMX-20240815300383 \N \N \N 1 \N [{"file_id": "ea89db56-6a98-4812-81c5-46ab32249ff4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee6f6f9f332848519c599e8364b13e1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee6f6f9f332848519c599e8364b13e1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee6f6f9f332848519c599e8364b13e1c.jpg", "file_size": 12119, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#14#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6f6f9f332848519c599e8364b13e1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6f6f9f332848519c599e8364b13e1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6f6f9f332848519c599e8364b13e1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee6f6f9f332848519c599e8364b13e1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee6f6f9f332848519c599e8364b13e1c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyQ5mugQ75w3pnPbskrQliHE7-I=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.584591+00 2025-12-09 10:14:47.584596+00 5241 JS253#红色M SPMX-20240815300378 \N \N \N 1 \N [{"file_id": "89c87c5c-9856-4652-9c63-1a9623008a89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd45947ca7be48728518627463d4746f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd45947ca7be48728518627463d4746f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd45947ca7be48728518627463d4746f.jpg", "file_size": 21473, "is_delete": false, "file_type": 1, "original_file_name": "JS253#红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd45947ca7be48728518627463d4746f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd45947ca7be48728518627463d4746f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd45947ca7be48728518627463d4746f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd45947ca7be48728518627463d4746f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd45947ca7be48728518627463d4746f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZM5drFu4vkf3zjce0aS0kOXFpk=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.586+00 2025-12-09 10:14:47.586005+00 5242 C258#57#橙红 SPMX-20240815300376 \N \N \N 1 \N [{"file_id": "ac45ca3b-e696-46af-a03f-aac73e7a051f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecef75f1145140ee8f70a66c96fc8f66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecef75f1145140ee8f70a66c96fc8f66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecef75f1145140ee8f70a66c96fc8f66.jpg", "file_size": 12216, "is_delete": false, "file_type": 1, "original_file_name": "C258#57#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecef75f1145140ee8f70a66c96fc8f66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecef75f1145140ee8f70a66c96fc8f66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecef75f1145140ee8f70a66c96fc8f66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecef75f1145140ee8f70a66c96fc8f66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecef75f1145140ee8f70a66c96fc8f66.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XeRUSN3IGmjoU4mxkeDdnMJ5kjA=", "createTime": "2024-08-15 14:41:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.58742+00 2025-12-09 10:14:47.587425+00 5243 8007#浅蓝色2XL SPMX-20240815300382 \N \N \N 1 \N [{"file_id": "65584399-cbc0-483c-9a7f-0e1510201e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3bd4d3d88a941938277a3232c7fefed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3bd4d3d88a941938277a3232c7fefed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3bd4d3d88a941938277a3232c7fefed.jpg", "file_size": 76323, "is_delete": false, "file_type": 1, "original_file_name": "8007#浅蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd4d3d88a941938277a3232c7fefed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd4d3d88a941938277a3232c7fefed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd4d3d88a941938277a3232c7fefed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3bd4d3d88a941938277a3232c7fefed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3bd4d3d88a941938277a3232c7fefed.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wF5kqjXorqUuVM6Pu24Vd8YYGtM=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.588869+00 2025-12-09 10:14:47.588874+00 5244 DH20220780T#5-24Y女童YXL SPMX-20240815300379 \N \N \N 1 \N [{"file_id": "0c86860f-a258-4426-93b0-ae7567fad641", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ace41764b46f431b97e9762b46cf2e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ace41764b46f431b97e9762b46cf2e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ace41764b46f431b97e9762b46cf2e11.jpg", "file_size": 10554, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#5-24Y女童YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace41764b46f431b97e9762b46cf2e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace41764b46f431b97e9762b46cf2e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace41764b46f431b97e9762b46cf2e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ace41764b46f431b97e9762b46cf2e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ace41764b46f431b97e9762b46cf2e11.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YY7_eH-vY_JrklQfL9ywkyI7Sn4=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.590273+00 2025-12-09 10:14:47.590278+00 5245 HSH133FW#VS-D3 SPMX-20240815300384 \N \N \N 1 \N [{"file_id": "f00294f7-7744-47b5-af52-30937cef903b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d8200a599e14a049847ae980cbf424a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d8200a599e14a049847ae980cbf424a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d8200a599e14a049847ae980cbf424a.jpg", "file_size": 19985, "is_delete": false, "file_type": 1, "original_file_name": "HSH133FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8200a599e14a049847ae980cbf424a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8200a599e14a049847ae980cbf424a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d8200a599e14a049847ae980cbf424a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d8200a599e14a049847ae980cbf424a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d8200a599e14a049847ae980cbf424a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRFtRel34pwLAiolVVeZwWmx1-U=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.591679+00 2025-12-09 10:14:47.591684+00 5246 0002-9FWF#V5曲线 SPMX-20240815300381 \N \N \N 1 \N [{"file_id": "d7d76c4d-1ee5-4b41-b896-7144d94e5344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2870ad51e3440a899a67625dee0a72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2870ad51e3440a899a67625dee0a72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2870ad51e3440a899a67625dee0a72.jpg", "file_size": 17304, "is_delete": false, "file_type": 1, "original_file_name": "0002-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2870ad51e3440a899a67625dee0a72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2870ad51e3440a899a67625dee0a72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2870ad51e3440a899a67625dee0a72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2870ad51e3440a899a67625dee0a72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2870ad51e3440a899a67625dee0a72.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGljAjTr3l8EUu2Xc3D7Q0Ih2TM=", "createTime": "2024-08-15 14:41:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.59363+00 2025-12-09 10:14:47.593637+00 5247 HSH134FW#VS-D3 SPMX-20240815300389 \N \N \N 1 \N [{"file_id": "18a487d7-55ea-4f19-b530-e7fd880f7343", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d1dd052d1a942d281ece1a73104f66d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d1dd052d1a942d281ece1a73104f66d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d1dd052d1a942d281ece1a73104f66d.jpg", "file_size": 21896, "is_delete": false, "file_type": 1, "original_file_name": "HSH134FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1dd052d1a942d281ece1a73104f66d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1dd052d1a942d281ece1a73104f66d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1dd052d1a942d281ece1a73104f66d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d1dd052d1a942d281ece1a73104f66d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d1dd052d1a942d281ece1a73104f66d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8xlVkvSSORsRknrkq7myMSoknM=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.59518+00 2025-12-09 10:14:47.595186+00 5248 C258#大白 SPMX-20240815300388 \N \N \N 1 \N [{"file_id": "94c71b41-b1af-45f8-af76-0ed93d871b60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e481c0cd0534ccaa450845a43138f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e481c0cd0534ccaa450845a43138f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e481c0cd0534ccaa450845a43138f95.jpg", "file_size": 9698, "is_delete": false, "file_type": 1, "original_file_name": "C258#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e481c0cd0534ccaa450845a43138f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e481c0cd0534ccaa450845a43138f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e481c0cd0534ccaa450845a43138f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e481c0cd0534ccaa450845a43138f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e481c0cd0534ccaa450845a43138f95.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TArsUxZw_vyQqKPcl4MB9wxxlEg=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.596691+00 2025-12-09 10:14:47.596697+00 5249 23-2101#A36领子通用 SPMX-20240815300385 \N \N \N 1 \N [{"file_id": "224a8c6d-4113-4d70-bcfd-df45799aa0f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c548892fc6b41d2ac6809ca1188a9d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c548892fc6b41d2ac6809ca1188a9d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c548892fc6b41d2ac6809ca1188a9d3.jpg", "file_size": 10830, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A36领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c548892fc6b41d2ac6809ca1188a9d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c548892fc6b41d2ac6809ca1188a9d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c548892fc6b41d2ac6809ca1188a9d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c548892fc6b41d2ac6809ca1188a9d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c548892fc6b41d2ac6809ca1188a9d3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcN7YqVji2kait3SzFpuAHMpzq8=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.598454+00 2025-12-09 10:14:47.598459+00 5250 0002-A1#LWQ15 SPMX-20240815300390 \N \N \N 1 \N [{"file_id": "ca07be8c-d46e-446c-a00b-3fa3a0f71b3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f07897d037f94398be199020c59750d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f07897d037f94398be199020c59750d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f07897d037f94398be199020c59750d9.jpg", "file_size": 25418, "is_delete": false, "file_type": 1, "original_file_name": "0002-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07897d037f94398be199020c59750d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07897d037f94398be199020c59750d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07897d037f94398be199020c59750d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f07897d037f94398be199020c59750d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f07897d037f94398be199020c59750d9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzIqAdHI4yF9iQYA8oNweD7nncc=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.599921+00 2025-12-09 10:14:47.599926+00 5251 FHXGPK-014-4 SPMX-20240815300386 \N \N \N 1 \N [{"file_id": "fc3f4cb9-3cfe-4f4b-885d-43014b72ebd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e50ac02cd17c4e788188f2c62457e3f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e50ac02cd17c4e788188f2c62457e3f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e50ac02cd17c4e788188f2c62457e3f3.jpg", "file_size": 35042, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac02cd17c4e788188f2c62457e3f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac02cd17c4e788188f2c62457e3f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac02cd17c4e788188f2c62457e3f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e50ac02cd17c4e788188f2c62457e3f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e50ac02cd17c4e788188f2c62457e3f3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ll91payvswSZuYCmKzfblQGRw7E=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.60139+00 2025-12-09 10:14:47.601397+00 5252 LZ1212#上身4号色 SPMX-20240815300387 \N \N \N 1 \N [{"file_id": "fb3c546e-01ec-47c6-9912-942c0624e7ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbd089e4fa2a4eada8840b851e102b4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbd089e4fa2a4eada8840b851e102b4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbd089e4fa2a4eada8840b851e102b4e.jpg", "file_size": 20588, "is_delete": false, "file_type": 1, "original_file_name": "LZ1212#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd089e4fa2a4eada8840b851e102b4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd089e4fa2a4eada8840b851e102b4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd089e4fa2a4eada8840b851e102b4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbd089e4fa2a4eada8840b851e102b4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbd089e4fa2a4eada8840b851e102b4e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Owrad1Zy4knT_GvWGGsttVtjJeY=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.603056+00 2025-12-09 10:14:47.603062+00 5253 8007#浅蓝色L SPMX-20240815300393 \N \N \N 1 \N [{"file_id": "8c70f86b-898c-4d19-bd81-be16bb9ee3ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01b5fd4b409549d298099bc5cbf941fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01b5fd4b409549d298099bc5cbf941fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01b5fd4b409549d298099bc5cbf941fb.jpg", "file_size": 76019, "is_delete": false, "file_type": 1, "original_file_name": "8007#浅蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b5fd4b409549d298099bc5cbf941fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b5fd4b409549d298099bc5cbf941fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b5fd4b409549d298099bc5cbf941fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01b5fd4b409549d298099bc5cbf941fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01b5fd4b409549d298099bc5cbf941fb.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mPGBJJMYN41JTMANRcB-LlKlFvw=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.604635+00 2025-12-09 10:14:47.604641+00 5254 FHXGPK-014-5 SPMX-20240815300397 \N \N \N 1 \N [{"file_id": "56f70036-8c18-42a9-8ace-8edcf38a9733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f409c61c8c247188134b7fd91b14fbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f409c61c8c247188134b7fd91b14fbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f409c61c8c247188134b7fd91b14fbc.jpg", "file_size": 30239, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f409c61c8c247188134b7fd91b14fbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f409c61c8c247188134b7fd91b14fbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f409c61c8c247188134b7fd91b14fbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f409c61c8c247188134b7fd91b14fbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f409c61c8c247188134b7fd91b14fbc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YoC203joYNAt8LMkckDo4scp4Q=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.605937+00 2025-12-09 10:14:47.605941+00 5255 0002-A2#LWQ15 SPMX-20240815300401 \N \N \N 1 \N [{"file_id": "81d4b730-7580-4bec-ac84-fc9eddcbf608", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba62979f91304b94b95bab87279050b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba62979f91304b94b95bab87279050b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba62979f91304b94b95bab87279050b2.jpg", "file_size": 16351, "is_delete": false, "file_type": 1, "original_file_name": "0002-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba62979f91304b94b95bab87279050b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba62979f91304b94b95bab87279050b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba62979f91304b94b95bab87279050b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba62979f91304b94b95bab87279050b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba62979f91304b94b95bab87279050b2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DarGCZifM-4mj6FfqG5fXVG97QI=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.607189+00 2025-12-09 10:14:47.607194+00 5256 LHJ9249#25#土黄 SPMX-20240815300405 \N \N \N 1 \N [{"file_id": "088b1732-51b5-4724-99c0-2b47821029e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c6e213dd1b147ad87930feb80952a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c6e213dd1b147ad87930feb80952a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c6e213dd1b147ad87930feb80952a85.jpg", "file_size": 10568, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6e213dd1b147ad87930feb80952a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6e213dd1b147ad87930feb80952a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6e213dd1b147ad87930feb80952a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c6e213dd1b147ad87930feb80952a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c6e213dd1b147ad87930feb80952a85.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZMOxpVpVQWRxEW7owFpBTIcorE=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.608424+00 2025-12-09 10:14:47.608429+00 5257 DH20220780T#5-24Y女童YXS SPMX-20240815300392 \N \N \N 1 \N [{"file_id": "0ea5cfaf-b39e-4e31-9cd5-5ee41d79768d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e90a4245533e4abbb0b68d945aa63c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e90a4245533e4abbb0b68d945aa63c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e90a4245533e4abbb0b68d945aa63c56.jpg", "file_size": 14889, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#5-24Y女童YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90a4245533e4abbb0b68d945aa63c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90a4245533e4abbb0b68d945aa63c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e90a4245533e4abbb0b68d945aa63c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e90a4245533e4abbb0b68d945aa63c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e90a4245533e4abbb0b68d945aa63c56.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oOYHXRSBkZmx2A5L21tandj8Oxc=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.609659+00 2025-12-09 10:14:47.609663+00 5258 LHJ9249#20#枣红 SPMX-20240815300395 \N \N \N 1 \N [{"file_id": "4b1e96eb-b59b-4877-af38-5916781442b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcab23346cf24179a958650a1d85a280.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcab23346cf24179a958650a1d85a280.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcab23346cf24179a958650a1d85a280.jpg", "file_size": 16431, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcab23346cf24179a958650a1d85a280.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcab23346cf24179a958650a1d85a280.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcab23346cf24179a958650a1d85a280.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcab23346cf24179a958650a1d85a280.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcab23346cf24179a958650a1d85a280.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5HPtvQVIKIhdqm2Lpe6CuNeBu5A=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.610924+00 2025-12-09 10:14:47.610928+00 5259 JS253#红色匹布 SPMX-20240815300394 \N \N \N 1 \N [{"file_id": "8246fcee-f749-4404-8247-e18deb8ba65a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a80c9613d184692b70e79696713f8f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a80c9613d184692b70e79696713f8f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a80c9613d184692b70e79696713f8f9.jpg", "file_size": 15689, "is_delete": false, "file_type": 1, "original_file_name": "JS253#红色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a80c9613d184692b70e79696713f8f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a80c9613d184692b70e79696713f8f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a80c9613d184692b70e79696713f8f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a80c9613d184692b70e79696713f8f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a80c9613d184692b70e79696713f8f9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTbr6a7Icmu5xG5YpPL3Lp0parc=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.612197+00 2025-12-09 10:14:47.612202+00 5260 23-2101#A37前后片3XL SPMX-20240815300396 \N \N \N 1 \N [{"file_id": "02ad6f54-89ad-4ee8-bfb3-dbc7d0a021a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79eb1eddf37c49b4955bdfb970bcc4a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79eb1eddf37c49b4955bdfb970bcc4a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79eb1eddf37c49b4955bdfb970bcc4a9.jpg", "file_size": 13592, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A37前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79eb1eddf37c49b4955bdfb970bcc4a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79eb1eddf37c49b4955bdfb970bcc4a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79eb1eddf37c49b4955bdfb970bcc4a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79eb1eddf37c49b4955bdfb970bcc4a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79eb1eddf37c49b4955bdfb970bcc4a9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rw1vpdgihd3kwfbXPYHbdAkwfmE=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.613426+00 2025-12-09 10:14:47.613429+00 5261 1051#青色 SPMX-20240815300391 \N \N \N 1 \N [{"file_id": "6d155331-3fb2-41ab-8a4f-c66bed2f3d87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a8d63951d9c493689f5e4ba4babd005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a8d63951d9c493689f5e4ba4babd005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a8d63951d9c493689f5e4ba4babd005.jpg", "file_size": 19154, "is_delete": false, "file_type": 1, "original_file_name": "1051#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d63951d9c493689f5e4ba4babd005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d63951d9c493689f5e4ba4babd005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d63951d9c493689f5e4ba4babd005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a8d63951d9c493689f5e4ba4babd005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a8d63951d9c493689f5e4ba4babd005.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cliFqJbNoWIO4vekgrJdDhyhLIA=", "createTime": "2024-08-15 14:41:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.614665+00 2025-12-09 10:14:47.614669+00 5262 DH20220780T#女童5-05YL SPMX-20240815300403 \N \N \N 1 \N [{"file_id": "bed77a6f-d379-402e-9903-965874f4be73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58008503a87347eab4c664cdfe3becfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58008503a87347eab4c664cdfe3becfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58008503a87347eab4c664cdfe3becfb.jpg", "file_size": 10676, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-05YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58008503a87347eab4c664cdfe3becfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58008503a87347eab4c664cdfe3becfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58008503a87347eab4c664cdfe3becfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58008503a87347eab4c664cdfe3becfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58008503a87347eab4c664cdfe3becfb.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCRrYSuUaQdQSyuFBuzQVbVVw5M=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.615946+00 2025-12-09 10:14:47.61595+00 5263 8007#浅蓝色XL SPMX-20240815300404 \N \N \N 1 \N [{"file_id": "1b085c04-5126-406e-a493-c41db05a9ec3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71e91c850ddd478e997e4a961d9d1d07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71e91c850ddd478e997e4a961d9d1d07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71e91c850ddd478e997e4a961d9d1d07.jpg", "file_size": 77754, "is_delete": false, "file_type": 1, "original_file_name": "8007#浅蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e91c850ddd478e997e4a961d9d1d07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e91c850ddd478e997e4a961d9d1d07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e91c850ddd478e997e4a961d9d1d07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71e91c850ddd478e997e4a961d9d1d07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71e91c850ddd478e997e4a961d9d1d07.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2jxuijW4nTCcgRV72tOwZ0PICk=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.617526+00 2025-12-09 10:14:47.617531+00 5264 C258#橙红 SPMX-20240815300399 \N \N \N 1 \N [{"file_id": "1bbdeb85-b984-4903-ab11-c9a7a2e68592", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e984cb97bdc04bda8f665348ce3cfa08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e984cb97bdc04bda8f665348ce3cfa08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e984cb97bdc04bda8f665348ce3cfa08.jpg", "file_size": 11687, "is_delete": false, "file_type": 1, "original_file_name": "C258#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e984cb97bdc04bda8f665348ce3cfa08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e984cb97bdc04bda8f665348ce3cfa08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e984cb97bdc04bda8f665348ce3cfa08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e984cb97bdc04bda8f665348ce3cfa08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e984cb97bdc04bda8f665348ce3cfa08.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FBjQcP49bNohtALrAJWB7tB5yo=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.61905+00 2025-12-09 10:14:47.619054+00 5265 1051#青色匹布 SPMX-20240815300400 \N \N \N 1 \N [{"file_id": "d8dccec9-f83a-4975-9b33-fe4fe3c0a699", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbb713b4f7bb4dbd800bef803b19b598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbb713b4f7bb4dbd800bef803b19b598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbb713b4f7bb4dbd800bef803b19b598.jpg", "file_size": 9633, "is_delete": false, "file_type": 1, "original_file_name": "1051#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb713b4f7bb4dbd800bef803b19b598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb713b4f7bb4dbd800bef803b19b598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb713b4f7bb4dbd800bef803b19b598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbb713b4f7bb4dbd800bef803b19b598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbb713b4f7bb4dbd800bef803b19b598.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4vMGdr3W0zjh-av6lJdWsCijS0=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.620552+00 2025-12-09 10:14:47.620557+00 5266 LZ1212#上身5号色 SPMX-20240815300398 \N \N \N 1 \N [{"file_id": "4abdb87d-4099-4602-919e-2ad1bb45f439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7af2003ddd6f47f0837ce04c10d5573f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7af2003ddd6f47f0837ce04c10d5573f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7af2003ddd6f47f0837ce04c10d5573f.jpg", "file_size": 20410, "is_delete": false, "file_type": 1, "original_file_name": "LZ1212#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af2003ddd6f47f0837ce04c10d5573f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af2003ddd6f47f0837ce04c10d5573f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af2003ddd6f47f0837ce04c10d5573f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7af2003ddd6f47f0837ce04c10d5573f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7af2003ddd6f47f0837ce04c10d5573f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWwWIoIfBTqLUiDlNmRnNONDp1c=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.622045+00 2025-12-09 10:14:47.622049+00 5267 HSH135FW#VS-D3 SPMX-20240815300402 \N \N \N 1 \N [{"file_id": "2a0fa7da-b2b1-4944-a610-11b204e82c69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ec674791fcb401b8f250ad5ecafbf7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ec674791fcb401b8f250ad5ecafbf7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ec674791fcb401b8f250ad5ecafbf7a.jpg", "file_size": 20945, "is_delete": false, "file_type": 1, "original_file_name": "HSH135FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec674791fcb401b8f250ad5ecafbf7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec674791fcb401b8f250ad5ecafbf7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec674791fcb401b8f250ad5ecafbf7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ec674791fcb401b8f250ad5ecafbf7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ec674791fcb401b8f250ad5ecafbf7a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iNN-bDKuhsDti6xXjD54YsdB4EI=", "createTime": "2024-08-15 14:41:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.623566+00 2025-12-09 10:14:47.62357+00 5268 8007#浅蓝色批布文件共用 SPMX-20240815300415 \N \N \N 1 \N [{"file_id": "5e97eef9-0f98-4c84-8d6c-d5c91ad7167c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dfee625e30342649098b8b94d3c2800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dfee625e30342649098b8b94d3c2800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dfee625e30342649098b8b94d3c2800.jpg", "file_size": 41737, "is_delete": false, "file_type": 1, "original_file_name": "8007#浅蓝色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfee625e30342649098b8b94d3c2800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfee625e30342649098b8b94d3c2800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfee625e30342649098b8b94d3c2800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dfee625e30342649098b8b94d3c2800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dfee625e30342649098b8b94d3c2800.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0s9InQl4prMb5s3c9iYKjJ_Vnc=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.625095+00 2025-12-09 10:14:47.625099+00 5269 1052#宝蓝色 SPMX-20240815300411 \N \N \N 1 \N [{"file_id": "35b10b1b-8543-4fba-a5bb-425871b6fe37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed2efb3aecf74500b82db23c136815ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed2efb3aecf74500b82db23c136815ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed2efb3aecf74500b82db23c136815ae.jpg", "file_size": 20356, "is_delete": false, "file_type": 1, "original_file_name": "1052#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2efb3aecf74500b82db23c136815ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2efb3aecf74500b82db23c136815ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed2efb3aecf74500b82db23c136815ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed2efb3aecf74500b82db23c136815ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed2efb3aecf74500b82db23c136815ae.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OH7Cm294BoeNy-3-OFvp7kedgKU=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.626603+00 2025-12-09 10:14:47.626607+00 5270 JS257#D版本-上衣补片L SPMX-20240815300407 \N \N \N 1 \N [{"file_id": "7f6ee553-0435-4f44-bd8c-67eba2cfb7cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8b6a663e45a4ff7a0a0b037c358b91d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8b6a663e45a4ff7a0a0b037c358b91d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8b6a663e45a4ff7a0a0b037c358b91d.jpg", "file_size": 20944, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本-上衣补片L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b6a663e45a4ff7a0a0b037c358b91d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b6a663e45a4ff7a0a0b037c358b91d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b6a663e45a4ff7a0a0b037c358b91d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8b6a663e45a4ff7a0a0b037c358b91d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8b6a663e45a4ff7a0a0b037c358b91d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pc6NkUxQfLJ5MPqJrh7Gd3qcPQo=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.628092+00 2025-12-09 10:14:47.628096+00 5271 0002-A3#咖啡色 SPMX-20240815300412 \N \N \N 1 \N [{"file_id": "5df150e0-e880-41f9-8a71-c9cf70cbf310", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4689e221ebef47ea83f5d51e510dee62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4689e221ebef47ea83f5d51e510dee62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4689e221ebef47ea83f5d51e510dee62.jpg", "file_size": 6383, "is_delete": false, "file_type": 1, "original_file_name": "0002-A3#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4689e221ebef47ea83f5d51e510dee62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4689e221ebef47ea83f5d51e510dee62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4689e221ebef47ea83f5d51e510dee62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4689e221ebef47ea83f5d51e510dee62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4689e221ebef47ea83f5d51e510dee62.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MGor6uE6M0WjMOrUG4O7VO6ZiA8=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.629322+00 2025-12-09 10:14:47.629326+00 5272 FHXGPK-014-6 SPMX-20240815300408 \N \N \N 1 \N [{"file_id": "88e0d404-3dfe-455c-b315-8dc09ce2165f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8445913b17e472a93de86513c7b1e4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8445913b17e472a93de86513c7b1e4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8445913b17e472a93de86513c7b1e4a.jpg", "file_size": 35751, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8445913b17e472a93de86513c7b1e4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8445913b17e472a93de86513c7b1e4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8445913b17e472a93de86513c7b1e4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8445913b17e472a93de86513c7b1e4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8445913b17e472a93de86513c7b1e4a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_Q4xnmcdiMPJOD0PuyVvVYrSZg=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.630533+00 2025-12-09 10:14:47.630537+00 5273 LHJ9249#32#墨绿 SPMX-20240815300416 \N \N \N 1 \N [{"file_id": "c0140ac0-f5ad-497f-aed1-b947f9ec5829", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4acd63a965154e98848418d28c763311.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4acd63a965154e98848418d28c763311.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4acd63a965154e98848418d28c763311.jpg", "file_size": 16840, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4acd63a965154e98848418d28c763311.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4acd63a965154e98848418d28c763311.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4acd63a965154e98848418d28c763311.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4acd63a965154e98848418d28c763311.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4acd63a965154e98848418d28c763311.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vou4SBG5Gp54hkokI8JnoysTWy4=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.631749+00 2025-12-09 10:14:47.631753+00 5274 23-2101#A37袖子3XL SPMX-20240815300417 \N \N \N 1 \N [{"file_id": "01fd457e-990d-42b8-bd33-ea6f8fb65e0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0fc593ccbf54710a30fd9bf4bae2132.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0fc593ccbf54710a30fd9bf4bae2132.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0fc593ccbf54710a30fd9bf4bae2132.jpg", "file_size": 13644, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A37袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fc593ccbf54710a30fd9bf4bae2132.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fc593ccbf54710a30fd9bf4bae2132.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fc593ccbf54710a30fd9bf4bae2132.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0fc593ccbf54710a30fd9bf4bae2132.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0fc593ccbf54710a30fd9bf4bae2132.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qAmnd4uzGKqIRh6xpbIwvnVKXBg=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.632934+00 2025-12-09 10:14:47.632938+00 5275 FHXGPK-014-7 SPMX-20240815300418 \N \N \N 1 \N [{"file_id": "dfd9fb98-0ab3-4993-a7e7-c3fd0619e958", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg", "file_size": 36302, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6ee3197c0e4e7f9d3b2be3c7dd2c94.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVe0zvdtYQWU399aCx-sNjOSuug=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.634155+00 2025-12-09 10:14:47.634159+00 5276 HSH141FW#VS-D3 SPMX-20240815300413 \N \N \N 1 \N [{"file_id": "d6d4a0b2-d008-40d2-addf-159f5c070eee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3924be04c0354f4cbfd4eb0a65e3ec32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3924be04c0354f4cbfd4eb0a65e3ec32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3924be04c0354f4cbfd4eb0a65e3ec32.jpg", "file_size": 21575, "is_delete": false, "file_type": 1, "original_file_name": "HSH141FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3924be04c0354f4cbfd4eb0a65e3ec32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3924be04c0354f4cbfd4eb0a65e3ec32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3924be04c0354f4cbfd4eb0a65e3ec32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3924be04c0354f4cbfd4eb0a65e3ec32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3924be04c0354f4cbfd4eb0a65e3ec32.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlfMhxplTcsqvMFG5IUzGP8RcSY=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.635348+00 2025-12-09 10:14:47.635351+00 5277 C258#黑色 SPMX-20240815300409 \N \N \N 1 \N [{"file_id": "00fdc4f7-e817-41d5-9774-21d47c1da9d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6650b5e6a139427ab4107fadfd2bfe23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6650b5e6a139427ab4107fadfd2bfe23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6650b5e6a139427ab4107fadfd2bfe23.jpg", "file_size": 10511, "is_delete": false, "file_type": 1, "original_file_name": "C258#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6650b5e6a139427ab4107fadfd2bfe23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6650b5e6a139427ab4107fadfd2bfe23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6650b5e6a139427ab4107fadfd2bfe23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6650b5e6a139427ab4107fadfd2bfe23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6650b5e6a139427ab4107fadfd2bfe23.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgq5jb8OV930KHBwxpjITv3BSWE=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.636548+00 2025-12-09 10:14:47.636553+00 5278 LZ1213#1号色 SPMX-20240815300410 \N \N \N 1 \N [{"file_id": "5c9be391-85d9-442d-950d-3fe8ac7e9111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a96f6d44a244f1f87434a45e108b955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a96f6d44a244f1f87434a45e108b955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a96f6d44a244f1f87434a45e108b955.jpg", "file_size": 18042, "is_delete": false, "file_type": 1, "original_file_name": "LZ1213#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a96f6d44a244f1f87434a45e108b955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a96f6d44a244f1f87434a45e108b955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a96f6d44a244f1f87434a45e108b955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a96f6d44a244f1f87434a45e108b955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a96f6d44a244f1f87434a45e108b955.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dy132DCumnEdeW67l8Q9JHaNcwA=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.642583+00 2025-12-09 10:14:47.642587+00 5283 LHJ9249#37#梅红 SPMX-20240815300425 \N \N \N 1 \N [{"file_id": "9e6a6c71-9fa0-4c86-90af-5d1055760db1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc83b733fb2f4e08bfeb83490df48a3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc83b733fb2f4e08bfeb83490df48a3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc83b733fb2f4e08bfeb83490df48a3b.jpg", "file_size": 11658, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc83b733fb2f4e08bfeb83490df48a3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc83b733fb2f4e08bfeb83490df48a3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc83b733fb2f4e08bfeb83490df48a3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc83b733fb2f4e08bfeb83490df48a3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc83b733fb2f4e08bfeb83490df48a3b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9t0RKyLT0hiLMsl9JJvzgTVf0Wk=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.637732+00 2025-12-09 10:14:47.637736+00 5279 JS257#D版本-上衣补片M SPMX-20240815300419 \N \N \N 1 \N [{"file_id": "458e2aa6-f030-433e-afbb-bb9c425f9b24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bb77e577fca4e3c8b2f673f1215a3b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bb77e577fca4e3c8b2f673f1215a3b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bb77e577fca4e3c8b2f673f1215a3b1.jpg", "file_size": 21157, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本-上衣补片M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bb77e577fca4e3c8b2f673f1215a3b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bb77e577fca4e3c8b2f673f1215a3b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bb77e577fca4e3c8b2f673f1215a3b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bb77e577fca4e3c8b2f673f1215a3b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bb77e577fca4e3c8b2f673f1215a3b1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_BkLYKy-kupSBTaPicsKsbH0Gg=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.638967+00 2025-12-09 10:14:47.638971+00 5280 23-2101#A37前后片4XL SPMX-20240815300406 \N \N \N 1 \N [{"file_id": "f43bcab9-9609-4696-8258-197565362654", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd5ff41ea79c40dc969b461983a3072f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd5ff41ea79c40dc969b461983a3072f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd5ff41ea79c40dc969b461983a3072f.jpg", "file_size": 13420, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A37前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd5ff41ea79c40dc969b461983a3072f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd5ff41ea79c40dc969b461983a3072f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd5ff41ea79c40dc969b461983a3072f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd5ff41ea79c40dc969b461983a3072f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd5ff41ea79c40dc969b461983a3072f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BeI_U1IVlL5rgIXUJbeWLs3skpM=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.640167+00 2025-12-09 10:14:47.640171+00 5281 DH20220780T#女童5-05YM SPMX-20240815300414 \N \N \N 1 \N [{"file_id": "6cb6f16f-8c55-4421-8966-29ee709725ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad5d8e1c2e4d4baebe51bc1257129496.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad5d8e1c2e4d4baebe51bc1257129496.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad5d8e1c2e4d4baebe51bc1257129496.jpg", "file_size": 8925, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-05YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5d8e1c2e4d4baebe51bc1257129496.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5d8e1c2e4d4baebe51bc1257129496.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5d8e1c2e4d4baebe51bc1257129496.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad5d8e1c2e4d4baebe51bc1257129496.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad5d8e1c2e4d4baebe51bc1257129496.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECOAICuYGlLE79BkETYektsSJzU=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.641383+00 2025-12-09 10:14:47.641387+00 5282 0002-A3#红色 SPMX-20240815300424 \N \N \N 1 \N [{"file_id": "61a245f3-6c3f-4356-8a89-9d5ca56da501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f054c924d6a94ea7aa35f854af612ecf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f054c924d6a94ea7aa35f854af612ecf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f054c924d6a94ea7aa35f854af612ecf.jpg", "file_size": 6555, "is_delete": false, "file_type": 1, "original_file_name": "0002-A3#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f054c924d6a94ea7aa35f854af612ecf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f054c924d6a94ea7aa35f854af612ecf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f054c924d6a94ea7aa35f854af612ecf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f054c924d6a94ea7aa35f854af612ecf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f054c924d6a94ea7aa35f854af612ecf.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PC6jhwhC7jjNgYilNR4qW7CpbjM=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.643792+00 2025-12-09 10:14:47.643796+00 5284 HSH142FW#VS-D3 SPMX-20240815300423 \N \N \N 1 \N [{"file_id": "f66e1255-2e81-4bcb-a1f6-a89db55e9854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f26e78c00ece4d6ba8c2fe2d0da4a561.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f26e78c00ece4d6ba8c2fe2d0da4a561.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f26e78c00ece4d6ba8c2fe2d0da4a561.jpg", "file_size": 7458, "is_delete": false, "file_type": 1, "original_file_name": "HSH142FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26e78c00ece4d6ba8c2fe2d0da4a561.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26e78c00ece4d6ba8c2fe2d0da4a561.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26e78c00ece4d6ba8c2fe2d0da4a561.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f26e78c00ece4d6ba8c2fe2d0da4a561.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f26e78c00ece4d6ba8c2fe2d0da4a561.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w8VQcxOH1NWt-YmwRtFU2yfM2C8=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.644996+00 2025-12-09 10:14:47.645+00 5285 C259#墨绿白线条 SPMX-20240815300420 \N \N \N 1 \N [{"file_id": "83509e66-e4cb-4636-84e5-29e0233b9647", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dbf7f716a8948a8a1c1e830188ce0cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dbf7f716a8948a8a1c1e830188ce0cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dbf7f716a8948a8a1c1e830188ce0cd.jpg", "file_size": 22715, "is_delete": false, "file_type": 1, "original_file_name": "C259#墨绿白线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dbf7f716a8948a8a1c1e830188ce0cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dbf7f716a8948a8a1c1e830188ce0cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dbf7f716a8948a8a1c1e830188ce0cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dbf7f716a8948a8a1c1e830188ce0cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dbf7f716a8948a8a1c1e830188ce0cd.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5I62_fQNYDf5_G0qkNs78a2RjU=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.646218+00 2025-12-09 10:14:47.646222+00 5286 DH20220780T#女童5-05YS SPMX-20240815300426 \N \N \N 1 \N [{"file_id": "604edbd5-0243-4909-88c4-305502a8b09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f31e6b4f09f54658bc2f316898b3feaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f31e6b4f09f54658bc2f316898b3feaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f31e6b4f09f54658bc2f316898b3feaa.jpg", "file_size": 7721, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-05YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31e6b4f09f54658bc2f316898b3feaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31e6b4f09f54658bc2f316898b3feaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31e6b4f09f54658bc2f316898b3feaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f31e6b4f09f54658bc2f316898b3feaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f31e6b4f09f54658bc2f316898b3feaa.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WX56qdjjeV6TjAg6jh54ADssO0k=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.647405+00 2025-12-09 10:14:47.647409+00 5287 LZ1213#2号色 SPMX-20240815300422 \N \N \N 1 \N [{"file_id": "780598d2-e160-48b3-ac6d-f4cf227cadef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45bbf416e2fb41d5aa48dae6ff5e50f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45bbf416e2fb41d5aa48dae6ff5e50f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45bbf416e2fb41d5aa48dae6ff5e50f8.jpg", "file_size": 17122, "is_delete": false, "file_type": 1, "original_file_name": "LZ1213#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45bbf416e2fb41d5aa48dae6ff5e50f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45bbf416e2fb41d5aa48dae6ff5e50f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45bbf416e2fb41d5aa48dae6ff5e50f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45bbf416e2fb41d5aa48dae6ff5e50f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45bbf416e2fb41d5aa48dae6ff5e50f8.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvUeAveYUPr2T_f9QVPzdW4nf14=", "createTime": "2024-08-15 14:41:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.648603+00 2025-12-09 10:14:47.648607+00 5288 1052#宝蓝色匹布 SPMX-20240815300421 \N \N \N 1 \N [{"file_id": "1ce55658-8ca0-4e5e-9283-6a08304855e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0579a2b648fe492eb1b3bdf3b7298594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0579a2b648fe492eb1b3bdf3b7298594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0579a2b648fe492eb1b3bdf3b7298594.jpg", "file_size": 9298, "is_delete": false, "file_type": 1, "original_file_name": "1052#宝蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0579a2b648fe492eb1b3bdf3b7298594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0579a2b648fe492eb1b3bdf3b7298594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0579a2b648fe492eb1b3bdf3b7298594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0579a2b648fe492eb1b3bdf3b7298594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0579a2b648fe492eb1b3bdf3b7298594.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwGu_1kgp1JW7fBhmcVljGSUi2Y=", "createTime": "2024-08-15 14:41:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.649911+00 2025-12-09 10:14:47.649916+00 5289 1052#灰色 SPMX-20240815300433 \N \N \N 1 \N [{"file_id": "c5501304-cc17-410e-9c96-20b1c68b80c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10de19c131fb40e5a641395968f45991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10de19c131fb40e5a641395968f45991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10de19c131fb40e5a641395968f45991.jpg", "file_size": 19085, "is_delete": false, "file_type": 1, "original_file_name": "1052#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10de19c131fb40e5a641395968f45991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10de19c131fb40e5a641395968f45991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10de19c131fb40e5a641395968f45991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10de19c131fb40e5a641395968f45991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10de19c131fb40e5a641395968f45991.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s2IJjKU0orPnqJ2Lfyqco5QROv4=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.651173+00 2025-12-09 10:14:47.651177+00 5290 FHXGPK-014-8 SPMX-20240815300428 \N \N \N 1 \N [{"file_id": "53e2e917-2edf-454e-9e00-8c4c4cb04840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d15a121bbde458f8efee877d6fbe78b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d15a121bbde458f8efee877d6fbe78b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d15a121bbde458f8efee877d6fbe78b.jpg", "file_size": 33625, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-014-8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d15a121bbde458f8efee877d6fbe78b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d15a121bbde458f8efee877d6fbe78b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d15a121bbde458f8efee877d6fbe78b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d15a121bbde458f8efee877d6fbe78b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d15a121bbde458f8efee877d6fbe78b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-i63Bhpj2pX1KfPaNoPI-fttkM=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.652406+00 2025-12-09 10:14:47.65241+00 5291 C259#大白绿浅条 SPMX-20240815300434 \N \N \N 1 \N [{"file_id": "14dabd79-1b50-4ae5-a024-d20a40031ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be4f93c4ecb24d70a637769fe110b9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be4f93c4ecb24d70a637769fe110b9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be4f93c4ecb24d70a637769fe110b9a4.jpg", "file_size": 21823, "is_delete": false, "file_type": 1, "original_file_name": "C259#大白绿浅条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4f93c4ecb24d70a637769fe110b9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4f93c4ecb24d70a637769fe110b9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4f93c4ecb24d70a637769fe110b9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be4f93c4ecb24d70a637769fe110b9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be4f93c4ecb24d70a637769fe110b9a4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szYxT1WnfjGJxsoxi8cScyw1F_o=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.653621+00 2025-12-09 10:14:47.653624+00 5292 LZ1213#3号色 SPMX-20240815300436 \N \N \N 1 \N [{"file_id": "5ad0665a-0e46-437f-864c-e5de8933728c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d9d24ec2d204a53ab41feae0e053437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d9d24ec2d204a53ab41feae0e053437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d9d24ec2d204a53ab41feae0e053437.jpg", "file_size": 18046, "is_delete": false, "file_type": 1, "original_file_name": "LZ1213#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9d24ec2d204a53ab41feae0e053437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9d24ec2d204a53ab41feae0e053437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9d24ec2d204a53ab41feae0e053437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d9d24ec2d204a53ab41feae0e053437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d9d24ec2d204a53ab41feae0e053437.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ieGB8jLTaYsHWrmgXOhjM4i_X8=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.65489+00 2025-12-09 10:14:47.654894+00 5293 LHJ9249#5#彩兰 SPMX-20240815300432 \N \N \N 1 \N [{"file_id": "9aa11b46-954c-4d08-a4ad-22918370e8ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg", "file_size": 16922, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2fa3f36ffb409a8a7cdd65d7a5bdb3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDc6ArTOtmO5WyDL4vl3wpZzQyg=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.656112+00 2025-12-09 10:14:47.656116+00 5294 23-2101#A37袖子4XL SPMX-20240815300427 \N \N \N 1 \N [{"file_id": "2def25a4-18a1-4c4a-83cb-8c1e6194f669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0c7a03bd7a7492aaeb5fffce29802c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0c7a03bd7a7492aaeb5fffce29802c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0c7a03bd7a7492aaeb5fffce29802c3.jpg", "file_size": 11802, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A37袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c7a03bd7a7492aaeb5fffce29802c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c7a03bd7a7492aaeb5fffce29802c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c7a03bd7a7492aaeb5fffce29802c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0c7a03bd7a7492aaeb5fffce29802c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0c7a03bd7a7492aaeb5fffce29802c3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHqO3KfjcGR5MMso0e3xyyUo5Es=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.657325+00 2025-12-09 10:14:47.657329+00 5295 8007#黑色2XL SPMX-20240815300429 \N \N \N 1 \N [{"file_id": "966ff876-25f9-439e-a112-8db85e1cf794", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80ed07aafb954dbd9e114f0d0aa6772f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80ed07aafb954dbd9e114f0d0aa6772f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80ed07aafb954dbd9e114f0d0aa6772f.jpg", "file_size": 75977, "is_delete": false, "file_type": 1, "original_file_name": "8007#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ed07aafb954dbd9e114f0d0aa6772f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ed07aafb954dbd9e114f0d0aa6772f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ed07aafb954dbd9e114f0d0aa6772f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80ed07aafb954dbd9e114f0d0aa6772f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80ed07aafb954dbd9e114f0d0aa6772f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmLp4GF7qRroHFjVPUYJRP_GDBY=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.658549+00 2025-12-09 10:14:47.658553+00 5296 HSH143FW#VS-D3 SPMX-20240815300430 \N \N \N 1 \N [{"file_id": "28e41590-79db-4901-8075-23d4f7fc5eb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5c4a8d4ab7e4c469423a757c822e50a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5c4a8d4ab7e4c469423a757c822e50a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5c4a8d4ab7e4c469423a757c822e50a.jpg", "file_size": 9563, "is_delete": false, "file_type": 1, "original_file_name": "HSH143FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c4a8d4ab7e4c469423a757c822e50a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c4a8d4ab7e4c469423a757c822e50a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c4a8d4ab7e4c469423a757c822e50a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5c4a8d4ab7e4c469423a757c822e50a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5c4a8d4ab7e4c469423a757c822e50a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXRa1iCQCrBS-ihKPsiWYop5guI=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.659769+00 2025-12-09 10:14:47.659773+00 5297 DH20220780T#女童5-05YXL SPMX-20240815300431 \N \N \N 1 \N [{"file_id": "a7dcd537-2c76-49f8-aad8-d502b2b9917c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9880e03f920544509ad797a7122986d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9880e03f920544509ad797a7122986d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9880e03f920544509ad797a7122986d7.jpg", "file_size": 9397, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-05YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9880e03f920544509ad797a7122986d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9880e03f920544509ad797a7122986d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9880e03f920544509ad797a7122986d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9880e03f920544509ad797a7122986d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9880e03f920544509ad797a7122986d7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i19yahoobk_ZGjrvUmdpgdVSIr8=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.661008+00 2025-12-09 10:14:47.661012+00 5298 0002-A3#绿色 SPMX-20240815300435 \N \N \N 1 \N [{"file_id": "621172d9-db0b-4497-9743-0726952a93c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e37a06dea06848eaa375a673a62c61aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e37a06dea06848eaa375a673a62c61aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e37a06dea06848eaa375a673a62c61aa.jpg", "file_size": 5747, "is_delete": false, "file_type": 1, "original_file_name": "0002-A3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37a06dea06848eaa375a673a62c61aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37a06dea06848eaa375a673a62c61aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37a06dea06848eaa375a673a62c61aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e37a06dea06848eaa375a673a62c61aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e37a06dea06848eaa375a673a62c61aa.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbvmnvTeifr_Glc1DmU0n2Oj7aA=", "createTime": "2024-08-15 14:41:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.662226+00 2025-12-09 10:14:47.662231+00 5299 DH20220780T#女童5-05YXS SPMX-20240815300440 \N \N \N 1 \N [{"file_id": "39575f8b-50f0-4735-ad6a-3d19cf2a30cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fb399c43b74fa28fd5b89bbaa69ea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fb399c43b74fa28fd5b89bbaa69ea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fb399c43b74fa28fd5b89bbaa69ea8.jpg", "file_size": 12751, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-05YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fb399c43b74fa28fd5b89bbaa69ea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fb399c43b74fa28fd5b89bbaa69ea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fb399c43b74fa28fd5b89bbaa69ea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fb399c43b74fa28fd5b89bbaa69ea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fb399c43b74fa28fd5b89bbaa69ea8.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-t_ZT_HU-4PsjdzCMVk9NuMiyg=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.663445+00 2025-12-09 10:14:47.663449+00 5300 8007#黑色L SPMX-20240815300439 \N \N \N 1 \N [{"file_id": "6c07bdf1-18a4-4b27-82ce-426b9433f5cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "397a0762e6ca4e33bc7306b2b33b3017.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "397a0762e6ca4e33bc7306b2b33b3017.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "397a0762e6ca4e33bc7306b2b33b3017.jpg", "file_size": 79674, "is_delete": false, "file_type": 1, "original_file_name": "8007#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/397a0762e6ca4e33bc7306b2b33b3017.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/397a0762e6ca4e33bc7306b2b33b3017.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/397a0762e6ca4e33bc7306b2b33b3017.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/397a0762e6ca4e33bc7306b2b33b3017.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/397a0762e6ca4e33bc7306b2b33b3017.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CuQMW8aUrf27saGXO_ftabLCaVk=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.664655+00 2025-12-09 10:14:47.664659+00 5301 JS257#D版本-上衣补片S SPMX-20240815300437 \N \N \N 1 \N [{"file_id": "c05d967a-2de5-4282-9ff2-2c1d7a1025cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fa8576146f74a20b150998228c5a2ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fa8576146f74a20b150998228c5a2ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fa8576146f74a20b150998228c5a2ed.jpg", "file_size": 18238, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本-上衣补片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa8576146f74a20b150998228c5a2ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa8576146f74a20b150998228c5a2ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa8576146f74a20b150998228c5a2ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fa8576146f74a20b150998228c5a2ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fa8576146f74a20b150998228c5a2ed.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAMNtlC6crC353nSCLXRCdj0RJI=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.665901+00 2025-12-09 10:14:47.665905+00 5302 HSH144FW#VS-D3 SPMX-20240815300438 \N \N \N 1 \N [{"file_id": "d69290f7-3d79-4e30-8381-0a001ab8446a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1d479ff64a842e5996033dac9ccb4f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1d479ff64a842e5996033dac9ccb4f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1d479ff64a842e5996033dac9ccb4f6.jpg", "file_size": 12328, "is_delete": false, "file_type": 1, "original_file_name": "HSH144FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d479ff64a842e5996033dac9ccb4f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d479ff64a842e5996033dac9ccb4f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d479ff64a842e5996033dac9ccb4f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1d479ff64a842e5996033dac9ccb4f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1d479ff64a842e5996033dac9ccb4f6.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANFe1kVJVKQtE4hwm-aTxKq946U=", "createTime": "2024-08-15 14:41:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.667142+00 2025-12-09 10:14:47.667146+00 5303 FHXGPK-015-1 SPMX-20240815300446 \N \N \N 1 \N [{"file_id": "0a2c2e5f-71ed-452e-bb95-f2e3d109b161", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7b0065ca0f4843ab5b38e2c487dfbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7b0065ca0f4843ab5b38e2c487dfbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7b0065ca0f4843ab5b38e2c487dfbd.jpg", "file_size": 33837, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-015-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7b0065ca0f4843ab5b38e2c487dfbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7b0065ca0f4843ab5b38e2c487dfbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7b0065ca0f4843ab5b38e2c487dfbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7b0065ca0f4843ab5b38e2c487dfbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7b0065ca0f4843ab5b38e2c487dfbd.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9-rMUB_3B3VJpfsSaN8HHR4hRg=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.668368+00 2025-12-09 10:14:47.668371+00 5304 1052#灰色匹布 SPMX-20240815300442 \N \N \N 1 \N [{"file_id": "b5375545-977a-4b02-8766-5463a5be42f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87ba3ac9b10d4d818ec8e694415ce7cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87ba3ac9b10d4d818ec8e694415ce7cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87ba3ac9b10d4d818ec8e694415ce7cc.jpg", "file_size": 8963, "is_delete": false, "file_type": 1, "original_file_name": "1052#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba3ac9b10d4d818ec8e694415ce7cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba3ac9b10d4d818ec8e694415ce7cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba3ac9b10d4d818ec8e694415ce7cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87ba3ac9b10d4d818ec8e694415ce7cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87ba3ac9b10d4d818ec8e694415ce7cc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbK73A43pbixsBJ19w1S4FjvPiM=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.669595+00 2025-12-09 10:14:47.669599+00 5305 LZ1213#4号色 SPMX-20240815300445 \N \N \N 1 \N [{"file_id": "c76340da-6d68-402c-83ce-a65e0bf8fc40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67bf413b0d9f420690ed74136d7a1a3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67bf413b0d9f420690ed74136d7a1a3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67bf413b0d9f420690ed74136d7a1a3e.jpg", "file_size": 16841, "is_delete": false, "file_type": 1, "original_file_name": "LZ1213#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bf413b0d9f420690ed74136d7a1a3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bf413b0d9f420690ed74136d7a1a3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bf413b0d9f420690ed74136d7a1a3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67bf413b0d9f420690ed74136d7a1a3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67bf413b0d9f420690ed74136d7a1a3e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHzKaBiy4xPw0qvGqYvUSZfG39o=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.670818+00 2025-12-09 10:14:47.670822+00 5306 0002-A4#LWQ15 SPMX-20240815300447 \N \N \N 1 \N [{"file_id": "c6a0d0c3-cb6b-4366-95fa-0eae1b79a55a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg", "file_size": 28898, "is_delete": false, "file_type": 1, "original_file_name": "0002-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff8fa3d3d7e0418e8d49c81c488d3ef6.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_PqhD_stxV7nrkdx2HodILDfTI=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.672036+00 2025-12-09 10:14:47.672041+00 5307 DH20220780T#女童5-06YL SPMX-20240815300448 \N \N \N 1 \N [{"file_id": "ed27a625-b560-49e7-94a9-dfd01cde389b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09b5d160b454d3c96a2641491e97f56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09b5d160b454d3c96a2641491e97f56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09b5d160b454d3c96a2641491e97f56.jpg", "file_size": 11770, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-06YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09b5d160b454d3c96a2641491e97f56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09b5d160b454d3c96a2641491e97f56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09b5d160b454d3c96a2641491e97f56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09b5d160b454d3c96a2641491e97f56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09b5d160b454d3c96a2641491e97f56.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MW4jvV8p4mnfDCdFqsJCmINp1tk=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.673238+00 2025-12-09 10:14:47.673243+00 5308 C259#白色黑线条 SPMX-20240815300444 \N \N \N 1 \N [{"file_id": "2baa2136-36c3-4818-a2e8-88a78e8bed69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b0d82c038734f29ba7cd53b723f4929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b0d82c038734f29ba7cd53b723f4929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b0d82c038734f29ba7cd53b723f4929.jpg", "file_size": 22784, "is_delete": false, "file_type": 1, "original_file_name": "C259#白色黑线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0d82c038734f29ba7cd53b723f4929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0d82c038734f29ba7cd53b723f4929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0d82c038734f29ba7cd53b723f4929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b0d82c038734f29ba7cd53b723f4929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b0d82c038734f29ba7cd53b723f4929.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dx0ivosCv0avIsnTsTdCn1ye8M=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.674458+00 2025-12-09 10:14:47.674462+00 5309 LHJ9249#64#粉色 SPMX-20240815300441 \N \N \N 1 \N [{"file_id": "2c0289b5-3d36-4684-8873-d81d485bb2e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a946217ca2a462c93b97160ba66088e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a946217ca2a462c93b97160ba66088e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a946217ca2a462c93b97160ba66088e.jpg", "file_size": 9876, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#64#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a946217ca2a462c93b97160ba66088e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a946217ca2a462c93b97160ba66088e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a946217ca2a462c93b97160ba66088e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a946217ca2a462c93b97160ba66088e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a946217ca2a462c93b97160ba66088e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDitqoVqIBYIxI4MyxBswb0-rGM=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.675711+00 2025-12-09 10:14:47.675715+00 5310 23-2101#A37领子通用 SPMX-20240815300443 \N \N \N 1 \N [{"file_id": "d46e6c1c-893e-43b2-bd56-1eb0cb1c26a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "545815726ceb466c8a3fdc52ed12f427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "545815726ceb466c8a3fdc52ed12f427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "545815726ceb466c8a3fdc52ed12f427.jpg", "file_size": 8657, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A37领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545815726ceb466c8a3fdc52ed12f427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545815726ceb466c8a3fdc52ed12f427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545815726ceb466c8a3fdc52ed12f427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/545815726ceb466c8a3fdc52ed12f427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/545815726ceb466c8a3fdc52ed12f427.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AuFbp6RE3Kg8qDXOGN6S7qq0Sc=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.676939+00 2025-12-09 10:14:47.676943+00 5311 0003#435 WJC22 SPMX-20240815300457 \N \N \N 1 \N [{"file_id": "30ddab48-5b03-4ecf-b285-ee9c8ea72df8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c098a55333246198411e9fc6cd18fe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c098a55333246198411e9fc6cd18fe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c098a55333246198411e9fc6cd18fe2.jpg", "file_size": 19548, "is_delete": false, "file_type": 1, "original_file_name": "0003#435 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c098a55333246198411e9fc6cd18fe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c098a55333246198411e9fc6cd18fe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c098a55333246198411e9fc6cd18fe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c098a55333246198411e9fc6cd18fe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c098a55333246198411e9fc6cd18fe2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TPwtsGwfa5bDlMkb8Pw8_qhu3Q=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.678136+00 2025-12-09 10:14:47.67814+00 5312 DH20220780T#女童5-06YM SPMX-20240815300460 \N \N \N 1 \N [{"file_id": "a8765690-d65c-4f67-bc10-164a37d71d73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c21800e3b965430ba3192dfd6b3276c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c21800e3b965430ba3192dfd6b3276c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c21800e3b965430ba3192dfd6b3276c2.jpg", "file_size": 8997, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-06YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21800e3b965430ba3192dfd6b3276c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21800e3b965430ba3192dfd6b3276c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21800e3b965430ba3192dfd6b3276c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c21800e3b965430ba3192dfd6b3276c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c21800e3b965430ba3192dfd6b3276c2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ysv6WXANLevcUgOuO4kZEna1Pm4=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.679354+00 2025-12-09 10:14:47.679358+00 5313 JS257#D版本L SPMX-20240815300451 \N \N \N 1 \N [{"file_id": "5b0f5e6f-75dd-4233-810d-e46474e1222e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79400b5ed6c74adb8f88a8cfed0d2019.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79400b5ed6c74adb8f88a8cfed0d2019.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79400b5ed6c74adb8f88a8cfed0d2019.jpg", "file_size": 16975, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79400b5ed6c74adb8f88a8cfed0d2019.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79400b5ed6c74adb8f88a8cfed0d2019.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79400b5ed6c74adb8f88a8cfed0d2019.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79400b5ed6c74adb8f88a8cfed0d2019.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79400b5ed6c74adb8f88a8cfed0d2019.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzC7-iMU_pQ1voXFriP-0rBMr98=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.680569+00 2025-12-09 10:14:47.680573+00 5314 23-2101#A3前后片3XL SPMX-20240815300453 \N \N \N 1 \N [{"file_id": "82271bab-7ff7-457e-ba9e-7af261724057", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee21bcfff8094cbdbca478e06ecbce1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee21bcfff8094cbdbca478e06ecbce1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee21bcfff8094cbdbca478e06ecbce1d.jpg", "file_size": 8962, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A3前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee21bcfff8094cbdbca478e06ecbce1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee21bcfff8094cbdbca478e06ecbce1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee21bcfff8094cbdbca478e06ecbce1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee21bcfff8094cbdbca478e06ecbce1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee21bcfff8094cbdbca478e06ecbce1d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFLwBgEGXxmID35dJw07OaOCN6A=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.681784+00 2025-12-09 10:14:47.681788+00 5315 LHJ9249#7#天蓝 SPMX-20240815300454 \N \N \N 1 \N [{"file_id": "467793c3-ed40-440d-9105-15c7fe70ffb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d00efeabde64b2e80e7435c59497f6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d00efeabde64b2e80e7435c59497f6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d00efeabde64b2e80e7435c59497f6a.jpg", "file_size": 10772, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249#7#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d00efeabde64b2e80e7435c59497f6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d00efeabde64b2e80e7435c59497f6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d00efeabde64b2e80e7435c59497f6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d00efeabde64b2e80e7435c59497f6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d00efeabde64b2e80e7435c59497f6a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiajDUvbgIv8IfajvWdUPNVcoMg=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.682981+00 2025-12-09 10:14:47.682984+00 5316 FHXGPK-015-2 SPMX-20240815300459 \N \N \N 1 \N [{"file_id": "b6e67263-56e7-4bcc-ac9e-8ed026758f87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg", "file_size": 30775, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-015-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ccb1db5e30841a8a5c00b0de2e9a7e9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8HrRl4u0ed-hh9tRH1kWhxUM_s=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.684203+00 2025-12-09 10:14:47.684208+00 5317 C259#黑色白线条 SPMX-20240815300455 \N \N \N 1 \N [{"file_id": "d16fee10-38f6-4f8e-bb8d-97cf6a7a0292", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4052961690b46a382f5f30afad97189.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4052961690b46a382f5f30afad97189.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4052961690b46a382f5f30afad97189.jpg", "file_size": 23526, "is_delete": false, "file_type": 1, "original_file_name": "C259#黑色白线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4052961690b46a382f5f30afad97189.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4052961690b46a382f5f30afad97189.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4052961690b46a382f5f30afad97189.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4052961690b46a382f5f30afad97189.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4052961690b46a382f5f30afad97189.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9QL_jAMIxF4tUDZqjPMxp2l9xU=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.685467+00 2025-12-09 10:14:47.685471+00 5318 JS257#D版本M SPMX-20240815300461 \N \N \N 1 \N [{"file_id": "e6440e20-1769-4faf-b09f-8b955308fa98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af2ebbb2e524489cb135a4e3055d509e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af2ebbb2e524489cb135a4e3055d509e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af2ebbb2e524489cb135a4e3055d509e.jpg", "file_size": 17449, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ebbb2e524489cb135a4e3055d509e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ebbb2e524489cb135a4e3055d509e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ebbb2e524489cb135a4e3055d509e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af2ebbb2e524489cb135a4e3055d509e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af2ebbb2e524489cb135a4e3055d509e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7f7FjJc5LYuVeETj14ByT0TYimU=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.686662+00 2025-12-09 10:14:47.686666+00 5319 8007#黑色XL SPMX-20240815300449 \N \N \N 1 \N [{"file_id": "321a279a-c743-479d-a687-3d742b073506", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d48c37850f2642769e61cd4fb9c5cd2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d48c37850f2642769e61cd4fb9c5cd2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d48c37850f2642769e61cd4fb9c5cd2a.jpg", "file_size": 81732, "is_delete": false, "file_type": 1, "original_file_name": "8007#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48c37850f2642769e61cd4fb9c5cd2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48c37850f2642769e61cd4fb9c5cd2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48c37850f2642769e61cd4fb9c5cd2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d48c37850f2642769e61cd4fb9c5cd2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d48c37850f2642769e61cd4fb9c5cd2a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rf5RGsLxeqnprjfic_NA2a9MP5U=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.687867+00 2025-12-09 10:14:47.687871+00 5320 HSH145FW#VS-D3大红 SPMX-20240815300450 \N \N \N 1 \N [{"file_id": "1890eea9-130d-41a6-b9da-c1d70fee4178", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3949d548aa9d4e04b8cfcce84bad44e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3949d548aa9d4e04b8cfcce84bad44e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3949d548aa9d4e04b8cfcce84bad44e0.jpg", "file_size": 16922, "is_delete": false, "file_type": 1, "original_file_name": "HSH145FW#VS-D3大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3949d548aa9d4e04b8cfcce84bad44e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3949d548aa9d4e04b8cfcce84bad44e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3949d548aa9d4e04b8cfcce84bad44e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3949d548aa9d4e04b8cfcce84bad44e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3949d548aa9d4e04b8cfcce84bad44e0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sG1vjuCL6Ugz2zt7deUUptJ5_sw=", "createTime": "2024-08-15 14:41:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.689089+00 2025-12-09 10:14:47.689093+00 5321 LZ1213#5号色 SPMX-20240815300456 \N \N \N 1 \N [{"file_id": "81c22686-815a-4cd7-b5ac-f0ea838726d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76d10be464e74f8ead57abb8fbd0aae4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76d10be464e74f8ead57abb8fbd0aae4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76d10be464e74f8ead57abb8fbd0aae4.jpg", "file_size": 17398, "is_delete": false, "file_type": 1, "original_file_name": "LZ1213#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d10be464e74f8ead57abb8fbd0aae4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d10be464e74f8ead57abb8fbd0aae4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d10be464e74f8ead57abb8fbd0aae4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76d10be464e74f8ead57abb8fbd0aae4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76d10be464e74f8ead57abb8fbd0aae4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULZIXVHcotKBoynUzMts4BDysVo=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.690411+00 2025-12-09 10:14:47.690416+00 5322 HSH145FW#VS-D3宝蓝 SPMX-20240815300458 \N \N \N 1 \N [{"file_id": "82205058-d8fa-4c07-aebd-0d3d6dbb281b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "882396d94aff4cfea58c848b813aac45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "882396d94aff4cfea58c848b813aac45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "882396d94aff4cfea58c848b813aac45.jpg", "file_size": 16313, "is_delete": false, "file_type": 1, "original_file_name": "HSH145FW#VS-D3宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882396d94aff4cfea58c848b813aac45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882396d94aff4cfea58c848b813aac45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882396d94aff4cfea58c848b813aac45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/882396d94aff4cfea58c848b813aac45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/882396d94aff4cfea58c848b813aac45.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7klhzUsxq3KgkwyhM6MPSqU48jU=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.691671+00 2025-12-09 10:14:47.691675+00 5323 1052#白色 SPMX-20240815300452 \N \N \N 1 \N [{"file_id": "83a41eaf-bd26-42e5-9c00-9c29f9095042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deaaf85c77c345f188b69b959ae44e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deaaf85c77c345f188b69b959ae44e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deaaf85c77c345f188b69b959ae44e7a.jpg", "file_size": 21366, "is_delete": false, "file_type": 1, "original_file_name": "1052#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaaf85c77c345f188b69b959ae44e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaaf85c77c345f188b69b959ae44e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaaf85c77c345f188b69b959ae44e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deaaf85c77c345f188b69b959ae44e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deaaf85c77c345f188b69b959ae44e7a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUwGAa3MZxQOadt0yusSI3JX9CI=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.692911+00 2025-12-09 10:14:47.692916+00 5324 8007#黑色批布文件共用 SPMX-20240815300464 \N \N \N 1 \N [{"file_id": "bfd2833d-31f8-4d8b-9e99-1207d0b2a26b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07de90113a1a487c9ac1d8bdcc9e9d23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07de90113a1a487c9ac1d8bdcc9e9d23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07de90113a1a487c9ac1d8bdcc9e9d23.jpg", "file_size": 39949, "is_delete": false, "file_type": 1, "original_file_name": "8007#黑色批布文件共用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07de90113a1a487c9ac1d8bdcc9e9d23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07de90113a1a487c9ac1d8bdcc9e9d23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07de90113a1a487c9ac1d8bdcc9e9d23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07de90113a1a487c9ac1d8bdcc9e9d23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07de90113a1a487c9ac1d8bdcc9e9d23.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YAZWQYroXjIjg0iTZ53BjkN3zXA=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.694161+00 2025-12-09 10:14:47.694165+00 5325 FHXGPK-015-3 SPMX-20240815300470 \N \N \N 1 \N [{"file_id": "c3c7c0e0-e8c3-4f7c-8206-9d2086636a73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf045d1e27fd42368deb50821d1a90cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf045d1e27fd42368deb50821d1a90cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf045d1e27fd42368deb50821d1a90cd.jpg", "file_size": 32773, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-015-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf045d1e27fd42368deb50821d1a90cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf045d1e27fd42368deb50821d1a90cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf045d1e27fd42368deb50821d1a90cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf045d1e27fd42368deb50821d1a90cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf045d1e27fd42368deb50821d1a90cd.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgfHZSrjaOVqhk34kBhR_FEXfUI=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.695408+00 2025-12-09 10:14:47.695412+00 5326 LZ1214#上身2号色 SPMX-20240815300478 \N \N \N 1 \N [{"file_id": "0b56415d-3913-41d7-bcb8-b2214f316aaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d14c5c82694412dadfec1187957e975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d14c5c82694412dadfec1187957e975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d14c5c82694412dadfec1187957e975.jpg", "file_size": 17698, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d14c5c82694412dadfec1187957e975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d14c5c82694412dadfec1187957e975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d14c5c82694412dadfec1187957e975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d14c5c82694412dadfec1187957e975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d14c5c82694412dadfec1187957e975.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaSKmpP4jWzYehv7-9tOC9StEK8=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.696616+00 2025-12-09 10:14:47.69662+00 5327 80075#前后幅 SPMX-20240815300474 \N \N \N 1 \N [{"file_id": "8640bb1d-7388-440e-9ac5-9810bd1f46ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c52457cbe6ff44baaa260ba42048a2df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c52457cbe6ff44baaa260ba42048a2df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c52457cbe6ff44baaa260ba42048a2df.jpg", "file_size": 20775, "is_delete": false, "file_type": 1, "original_file_name": "80075#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52457cbe6ff44baaa260ba42048a2df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52457cbe6ff44baaa260ba42048a2df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52457cbe6ff44baaa260ba42048a2df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c52457cbe6ff44baaa260ba42048a2df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c52457cbe6ff44baaa260ba42048a2df.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B739RIudD4Ryh8ky76rBuVSfN5E=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.697842+00 2025-12-09 10:14:47.697845+00 5328 C260#墨绿 SPMX-20240815300477 \N \N \N 1 \N [{"file_id": "67956e0f-c2f2-4c0a-9c59-170c3bc47237", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ded2f61c720436ebf9e41f1e3f28639.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ded2f61c720436ebf9e41f1e3f28639.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ded2f61c720436ebf9e41f1e3f28639.jpg", "file_size": 10153, "is_delete": false, "file_type": 1, "original_file_name": "C260#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ded2f61c720436ebf9e41f1e3f28639.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ded2f61c720436ebf9e41f1e3f28639.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ded2f61c720436ebf9e41f1e3f28639.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ded2f61c720436ebf9e41f1e3f28639.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ded2f61c720436ebf9e41f1e3f28639.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQbgHPFg_Zkt4TCr4xLjLoN06B4=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.699057+00 2025-12-09 10:14:47.69906+00 5329 HSH145FW#VS-D3黄色 SPMX-20240815300472 \N \N \N 1 \N [{"file_id": "983c6c9c-3f90-4d06-ac9e-a81a1fdf591b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg", "file_size": 16696, "is_delete": false, "file_type": 1, "original_file_name": "HSH145FW#VS-D3黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca48c8483b2a418ba6fcd2d8af2d9c9f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhHa5XsimkXKDzozezb_KA_3Fio=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.700341+00 2025-12-09 10:14:47.700345+00 5330 LHJ9249-1#20#枣红 SPMX-20240815300473 \N \N \N 1 \N [{"file_id": "c8f4d62c-c372-4aa9-ba60-40aea52389d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3275b5680725465abcafddae6b8c0454.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3275b5680725465abcafddae6b8c0454.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3275b5680725465abcafddae6b8c0454.jpg", "file_size": 13317, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3275b5680725465abcafddae6b8c0454.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3275b5680725465abcafddae6b8c0454.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3275b5680725465abcafddae6b8c0454.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3275b5680725465abcafddae6b8c0454.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3275b5680725465abcafddae6b8c0454.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTYZrTN9LUZyjszDEL9ZfFHMavw=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.701547+00 2025-12-09 10:14:47.701552+00 5331 0003#435WJC22 SPMX-20240815300468 \N \N \N 1 \N [{"file_id": "a95bd119-7949-43d0-b8cf-0ac52b7b1bde", "thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "thumbnail_name": "a788bb01a91a4b87a397ab01e9c1ec9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241121/", "large_thumbnail_name": "a788bb01a91a4b87a397ab01e9c1ec9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241121/", "file_name": "a788bb01a91a4b87a397ab01e9c1ec9f.jpg", "file_size": 19580, "is_delete": false, "file_type": 1, "original_file_name": "4W3C1CdJf79s5M3Y3J2U7y3D4MaG7sdc8W9p6lcCaC36eC6X5Sexcj1NfIaCfkfh.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/a788bb01a91a4b87a397ab01e9c1ec9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241121/a788bb01a91a4b87a397ab01e9c1ec9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241121/a788bb01a91a4b87a397ab01e9c1ec9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241121/a788bb01a91a4b87a397ab01e9c1ec9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241121/a788bb01a91a4b87a397ab01e9c1ec9f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6-o7L-XBLj8qmvsaJvxX8JXr7g=", "createTime": "2024-11-21 13:37:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.702764+00 2025-12-09 10:14:47.702768+00 5332 DH20220780T#女童5-06YS SPMX-20240815300469 \N \N \N 1 \N [{"file_id": "6e26f478-99ec-431f-962d-42ef5d537464", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cba7ab454704759820c998c990372c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cba7ab454704759820c998c990372c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cba7ab454704759820c998c990372c1.jpg", "file_size": 7924, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-06YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba7ab454704759820c998c990372c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba7ab454704759820c998c990372c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba7ab454704759820c998c990372c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cba7ab454704759820c998c990372c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cba7ab454704759820c998c990372c1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdzFlNYyV1j8TwIWCQpi6ACF9Ak=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.704005+00 2025-12-09 10:14:47.704009+00 5333 LHJ9249-1#118#蓝色 SPMX-20240815300462 \N \N \N 1 \N [{"file_id": "0a33dd31-ab75-4b94-b57d-6b802c33afb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50e151f54b5d4433926ad2b5782fce74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50e151f54b5d4433926ad2b5782fce74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50e151f54b5d4433926ad2b5782fce74.jpg", "file_size": 12645, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e151f54b5d4433926ad2b5782fce74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e151f54b5d4433926ad2b5782fce74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e151f54b5d4433926ad2b5782fce74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50e151f54b5d4433926ad2b5782fce74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50e151f54b5d4433926ad2b5782fce74.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RABOc9COhQZkwDPvXN_wy0Ej1JI=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.705252+00 2025-12-09 10:14:47.705257+00 5334 JS257#D版本S SPMX-20240815300471 \N \N \N 1 \N [{"file_id": "329e5aa9-d096-4aa8-bf74-3818f7b7ad9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abcb14b6d36541cda2e1f7fc9b4458b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abcb14b6d36541cda2e1f7fc9b4458b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abcb14b6d36541cda2e1f7fc9b4458b1.jpg", "file_size": 17630, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcb14b6d36541cda2e1f7fc9b4458b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcb14b6d36541cda2e1f7fc9b4458b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcb14b6d36541cda2e1f7fc9b4458b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abcb14b6d36541cda2e1f7fc9b4458b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abcb14b6d36541cda2e1f7fc9b4458b1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZBIHZRGLqHkzBW9OCi15-_z_YTk=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.70647+00 2025-12-09 10:14:47.706474+00 5335 1052#白色匹布 SPMX-20240815300463 \N \N \N 1 \N [{"file_id": "6f7bea0c-ea2e-4559-b61b-216bd14c9ff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb8013fa8a1340da80a1d470563c07c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb8013fa8a1340da80a1d470563c07c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb8013fa8a1340da80a1d470563c07c2.jpg", "file_size": 10651, "is_delete": false, "file_type": 1, "original_file_name": "1052#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8013fa8a1340da80a1d470563c07c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8013fa8a1340da80a1d470563c07c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8013fa8a1340da80a1d470563c07c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb8013fa8a1340da80a1d470563c07c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb8013fa8a1340da80a1d470563c07c2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_H_X1VZ570hEbbinR3kyUyiU9kQ=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.707677+00 2025-12-09 10:14:47.707681+00 5336 C26#WJC22 SPMX-20240815300466 \N \N \N 1 \N [{"file_id": "4d2b31e4-4c3a-4dfd-befa-b3ab9f1081f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3aabfd81e2e04aeb84452a183e618e43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3aabfd81e2e04aeb84452a183e618e43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3aabfd81e2e04aeb84452a183e618e43.jpg", "file_size": 20898, "is_delete": false, "file_type": 1, "original_file_name": "C26#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aabfd81e2e04aeb84452a183e618e43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aabfd81e2e04aeb84452a183e618e43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aabfd81e2e04aeb84452a183e618e43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3aabfd81e2e04aeb84452a183e618e43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3aabfd81e2e04aeb84452a183e618e43.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMVPx7v1v_K7e88aXBITYHBwUHM=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.7089+00 2025-12-09 10:14:47.708903+00 5337 1052#粉色 SPMX-20240815300475 \N \N \N 1 \N [{"file_id": "b94d5d5a-f6ac-4ca9-9a4a-ad4d3686ba05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "178f820ee61c493ba38567d82356e8f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "178f820ee61c493ba38567d82356e8f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "178f820ee61c493ba38567d82356e8f9.jpg", "file_size": 18339, "is_delete": false, "file_type": 1, "original_file_name": "1052#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178f820ee61c493ba38567d82356e8f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178f820ee61c493ba38567d82356e8f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178f820ee61c493ba38567d82356e8f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/178f820ee61c493ba38567d82356e8f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/178f820ee61c493ba38567d82356e8f9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7mzhJFKzEVr3qoNwuYrwNgKxGBg=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.710101+00 2025-12-09 10:14:47.710106+00 5338 23-2101#A3袖子3XL SPMX-20240815300476 \N \N \N 1 \N [{"file_id": "4fb6739f-0900-4b21-9e48-048794489bd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2921bd5f313c47c6a59edf257318bc32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2921bd5f313c47c6a59edf257318bc32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2921bd5f313c47c6a59edf257318bc32.jpg", "file_size": 10209, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A3袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2921bd5f313c47c6a59edf257318bc32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2921bd5f313c47c6a59edf257318bc32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2921bd5f313c47c6a59edf257318bc32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2921bd5f313c47c6a59edf257318bc32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2921bd5f313c47c6a59edf257318bc32.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvF9Dw2Ya3ibcG906IBySX0NXkA=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.711342+00 2025-12-09 10:14:47.711346+00 5339 LZ1214#上身1号色 SPMX-20240815300467 \N \N \N 1 \N [{"file_id": "673c8e2e-69d9-45f9-b92c-8a2846ec79d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4d158c4a2034ba4b500112afc53a6cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4d158c4a2034ba4b500112afc53a6cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4d158c4a2034ba4b500112afc53a6cf.jpg", "file_size": 17169, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d158c4a2034ba4b500112afc53a6cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d158c4a2034ba4b500112afc53a6cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d158c4a2034ba4b500112afc53a6cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4d158c4a2034ba4b500112afc53a6cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4d158c4a2034ba4b500112afc53a6cf.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJu2tWUjwJiqt3BGYfbDyulymzg=", "createTime": "2024-08-15 14:41:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.712562+00 2025-12-09 10:14:47.712567+00 5340 23-2101#A3前后片4XL SPMX-20240815300465 \N \N \N 1 \N [{"file_id": "a100a1cf-c56c-49ae-958c-302f9f4dff1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba000205c67740678fbe7f834288f265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba000205c67740678fbe7f834288f265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba000205c67740678fbe7f834288f265.jpg", "file_size": 9367, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A3前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba000205c67740678fbe7f834288f265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba000205c67740678fbe7f834288f265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba000205c67740678fbe7f834288f265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba000205c67740678fbe7f834288f265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba000205c67740678fbe7f834288f265.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KsVo7cpAebEwKSewG_q_KaFvhbA=", "createTime": "2024-08-15 14:41:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.713808+00 2025-12-09 10:14:47.713812+00 5341 LZ1214#上身3号色 SPMX-20240815300487 \N \N \N 1 \N [{"file_id": "95fbd0b1-3381-4af4-9438-adeee95cc9bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffe33ea8852348b5ae63501085e21662.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffe33ea8852348b5ae63501085e21662.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffe33ea8852348b5ae63501085e21662.jpg", "file_size": 16812, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe33ea8852348b5ae63501085e21662.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe33ea8852348b5ae63501085e21662.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe33ea8852348b5ae63501085e21662.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffe33ea8852348b5ae63501085e21662.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffe33ea8852348b5ae63501085e21662.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MZlAQ4EhNNjGJer_aF_fNZft7WY=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.71502+00 2025-12-09 10:14:47.715025+00 5342 0003#437 WJC22 SPMX-20240815300489 \N \N \N 1 \N [{"file_id": "12f8833a-8724-46d6-928c-908b673af7e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6a6013fb1014d4e9eabacc025b7e9af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6a6013fb1014d4e9eabacc025b7e9af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6a6013fb1014d4e9eabacc025b7e9af.jpg", "file_size": 21891, "is_delete": false, "file_type": 1, "original_file_name": "0003#437 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a6013fb1014d4e9eabacc025b7e9af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a6013fb1014d4e9eabacc025b7e9af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a6013fb1014d4e9eabacc025b7e9af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6a6013fb1014d4e9eabacc025b7e9af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6a6013fb1014d4e9eabacc025b7e9af.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cr2_OxOQNfHemas65sk_Jxits5Y=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.716268+00 2025-12-09 10:14:47.716272+00 5343 1052#粉色匹布 SPMX-20240815300485 \N \N \N 1 \N [{"file_id": "543869ac-96dc-445a-a62f-07136912dcad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b72c9b9e5bb41d580e02cb62aa08866.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b72c9b9e5bb41d580e02cb62aa08866.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b72c9b9e5bb41d580e02cb62aa08866.jpg", "file_size": 8524, "is_delete": false, "file_type": 1, "original_file_name": "1052#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b72c9b9e5bb41d580e02cb62aa08866.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b72c9b9e5bb41d580e02cb62aa08866.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b72c9b9e5bb41d580e02cb62aa08866.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b72c9b9e5bb41d580e02cb62aa08866.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b72c9b9e5bb41d580e02cb62aa08866.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VV8M7g2HDILbtQ-xQNTTCQiydaY=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.717493+00 2025-12-09 10:14:47.717498+00 5344 HSH146FW#VS-D3 SPMX-20240815300484 \N \N \N 1 \N [{"file_id": "c0e69062-918c-4333-8f44-9af57017f913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9178186f5d1a42f4ae0916b146252e08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9178186f5d1a42f4ae0916b146252e08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9178186f5d1a42f4ae0916b146252e08.jpg", "file_size": 25176, "is_delete": false, "file_type": 1, "original_file_name": "HSH146FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9178186f5d1a42f4ae0916b146252e08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9178186f5d1a42f4ae0916b146252e08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9178186f5d1a42f4ae0916b146252e08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9178186f5d1a42f4ae0916b146252e08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9178186f5d1a42f4ae0916b146252e08.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4chyYF883xLWxSVj7ZmMapVgyBg=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.718716+00 2025-12-09 10:14:47.71872+00 5345 23-2101#A3袖子4XL SPMX-20240815300486 \N \N \N 1 \N [{"file_id": "7fd93701-36f1-4959-97ed-6dbaa1cd9839", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "922103061f984928a48aac2a24a3cce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "922103061f984928a48aac2a24a3cce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "922103061f984928a48aac2a24a3cce5.jpg", "file_size": 9969, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A3袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922103061f984928a48aac2a24a3cce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922103061f984928a48aac2a24a3cce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922103061f984928a48aac2a24a3cce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/922103061f984928a48aac2a24a3cce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/922103061f984928a48aac2a24a3cce5.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyVA70vJbW49FrHkQoDaDbrhE5c=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.719943+00 2025-12-09 10:14:47.719947+00 5346 0003#436 WJC22 SPMX-20240815300479 \N \N \N 1 \N [{"file_id": "c455185c-aa2d-4657-a48e-14c451ba4257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73dae21f2597434ab1fef11cce7cacc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73dae21f2597434ab1fef11cce7cacc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73dae21f2597434ab1fef11cce7cacc3.jpg", "file_size": 15743, "is_delete": false, "file_type": 1, "original_file_name": "0003#436 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dae21f2597434ab1fef11cce7cacc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dae21f2597434ab1fef11cce7cacc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dae21f2597434ab1fef11cce7cacc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73dae21f2597434ab1fef11cce7cacc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73dae21f2597434ab1fef11cce7cacc3.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nXpm4VQdwZPmV1MRU263S8SP4Q8=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.721157+00 2025-12-09 10:14:47.721161+00 5347 LHJ9249-1#25#土黄 SPMX-20240815300483 \N \N \N 1 \N [{"file_id": "10718edf-a633-4892-af48-d4ee4fca2d82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41b6868022be41b8aceb57c71b7fc2b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41b6868022be41b8aceb57c71b7fc2b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41b6868022be41b8aceb57c71b7fc2b2.jpg", "file_size": 12623, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b6868022be41b8aceb57c71b7fc2b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b6868022be41b8aceb57c71b7fc2b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b6868022be41b8aceb57c71b7fc2b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41b6868022be41b8aceb57c71b7fc2b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41b6868022be41b8aceb57c71b7fc2b2.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2n3EOJTplfk09VH4YPUJi26_dI=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.722387+00 2025-12-09 10:14:47.722391+00 5348 80075#白色上衣 SPMX-20240815300488 \N \N \N 1 \N [{"file_id": "b4f55b29-8531-4264-a01d-e1247220b6e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f78bffc1143543f98bc632672ac4ba04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f78bffc1143543f98bc632672ac4ba04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f78bffc1143543f98bc632672ac4ba04.jpg", "file_size": 13363, "is_delete": false, "file_type": 1, "original_file_name": "80075#白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78bffc1143543f98bc632672ac4ba04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78bffc1143543f98bc632672ac4ba04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78bffc1143543f98bc632672ac4ba04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f78bffc1143543f98bc632672ac4ba04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f78bffc1143543f98bc632672ac4ba04.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5EaEOZ91v_9UAcAOzscPFWWpJw=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.72361+00 2025-12-09 10:14:47.723614+00 5349 FHXGPK-015-4 SPMX-20240815300481 \N \N \N 1 \N [{"file_id": "59b0fff7-7d52-47d6-ac24-5942caca2be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80f5054971084f66bd0e6eaf5e3f215b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80f5054971084f66bd0e6eaf5e3f215b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80f5054971084f66bd0e6eaf5e3f215b.jpg", "file_size": 35017, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-015-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5054971084f66bd0e6eaf5e3f215b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5054971084f66bd0e6eaf5e3f215b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5054971084f66bd0e6eaf5e3f215b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80f5054971084f66bd0e6eaf5e3f215b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80f5054971084f66bd0e6eaf5e3f215b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XbFHkMJLoYPsbvCbAqtWG1PhLA=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.724828+00 2025-12-09 10:14:47.724833+00 5350 DH20220780T#女童5-06YXL SPMX-20240815300480 \N \N \N 1 \N [{"file_id": "95b48be1-61d9-440f-ab59-70b9d50b6739", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "057322ed62a2436eb24d17761716430c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "057322ed62a2436eb24d17761716430c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "057322ed62a2436eb24d17761716430c.jpg", "file_size": 10577, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-06YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057322ed62a2436eb24d17761716430c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057322ed62a2436eb24d17761716430c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057322ed62a2436eb24d17761716430c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/057322ed62a2436eb24d17761716430c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/057322ed62a2436eb24d17761716430c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zk6BfQ4YxcdoVIC0Tgtt_Tt_tYc=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.726046+00 2025-12-09 10:14:47.72605+00 5351 JS257#D版本XL SPMX-20240815300482 \N \N \N 1 \N [{"file_id": "312c8280-2a46-4e96-9e00-6f0448ad9a53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea6218476ae48f5a61056289799ce4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea6218476ae48f5a61056289799ce4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea6218476ae48f5a61056289799ce4a.jpg", "file_size": 16804, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea6218476ae48f5a61056289799ce4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea6218476ae48f5a61056289799ce4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea6218476ae48f5a61056289799ce4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea6218476ae48f5a61056289799ce4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea6218476ae48f5a61056289799ce4a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CtGt3_7L-sBIz8lIUQ1AgbCQew=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.727273+00 2025-12-09 10:14:47.727277+00 5352 23-2101#A3领子通用 SPMX-20240815300495 \N \N \N 1 \N [{"file_id": "127aaf3c-e776-4e8a-89f5-3a773ca56207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c136e4c4ee784598a9c016467998847c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c136e4c4ee784598a9c016467998847c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c136e4c4ee784598a9c016467998847c.jpg", "file_size": 7786, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c136e4c4ee784598a9c016467998847c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c136e4c4ee784598a9c016467998847c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c136e4c4ee784598a9c016467998847c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c136e4c4ee784598a9c016467998847c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c136e4c4ee784598a9c016467998847c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:33EG1egWwKGfDLu567k0rtBI4Qo=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.728504+00 2025-12-09 10:14:47.728508+00 5353 LHJ9249-1#33#西瓜红 SPMX-20240815300492 \N \N \N 1 \N [{"file_id": "a9ddfcd0-20fc-4c21-b921-a433e193bdb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0faef41a54d34f30bfe8b8fcdaf8d469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0faef41a54d34f30bfe8b8fcdaf8d469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0faef41a54d34f30bfe8b8fcdaf8d469.jpg", "file_size": 10313, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#33#西瓜红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0faef41a54d34f30bfe8b8fcdaf8d469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0faef41a54d34f30bfe8b8fcdaf8d469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0faef41a54d34f30bfe8b8fcdaf8d469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0faef41a54d34f30bfe8b8fcdaf8d469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0faef41a54d34f30bfe8b8fcdaf8d469.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QYbp4PHNSeVBOzbOKYs410Uawws=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.729715+00 2025-12-09 10:14:47.729719+00 5354 HSH147FW#VS-D3 SPMX-20240815300493 \N \N \N 1 \N [{"file_id": "40636b52-7c88-4f3e-88db-eb1e0e62157c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01c0aedb7bad458889ba436b2a4798b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01c0aedb7bad458889ba436b2a4798b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01c0aedb7bad458889ba436b2a4798b5.jpg", "file_size": 14797, "is_delete": false, "file_type": 1, "original_file_name": "HSH147FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01c0aedb7bad458889ba436b2a4798b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01c0aedb7bad458889ba436b2a4798b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01c0aedb7bad458889ba436b2a4798b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01c0aedb7bad458889ba436b2a4798b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01c0aedb7bad458889ba436b2a4798b5.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZemcpDm73CJn0KDpEkmRB7avpM=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.730935+00 2025-12-09 10:14:47.730939+00 5355 C260#大白 SPMX-20240815300491 \N \N \N 1 \N [{"file_id": "655221ca-d839-45c1-869e-f18eefd91b66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb8202dda1124cc296e01cbde36a06c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb8202dda1124cc296e01cbde36a06c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb8202dda1124cc296e01cbde36a06c9.jpg", "file_size": 9101, "is_delete": false, "file_type": 1, "original_file_name": "C260#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8202dda1124cc296e01cbde36a06c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8202dda1124cc296e01cbde36a06c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8202dda1124cc296e01cbde36a06c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb8202dda1124cc296e01cbde36a06c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb8202dda1124cc296e01cbde36a06c9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XT27-5BNNHezVV9rN-7BoCHMi_A=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.73216+00 2025-12-09 10:14:47.732164+00 5356 DH20220780T#女童5-06YXS SPMX-20240815300490 \N \N \N 1 \N [{"file_id": "a7738437-40e6-4c46-ba8f-3ef0049c8307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54532467ad3743c7ae67b730d9048010.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54532467ad3743c7ae67b730d9048010.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54532467ad3743c7ae67b730d9048010.jpg", "file_size": 13680, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-06YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54532467ad3743c7ae67b730d9048010.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54532467ad3743c7ae67b730d9048010.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54532467ad3743c7ae67b730d9048010.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54532467ad3743c7ae67b730d9048010.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54532467ad3743c7ae67b730d9048010.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMZUlG8lyTRiKORHfzAV89lxJoM=", "createTime": "2024-08-15 14:42:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.733397+00 2025-12-09 10:14:47.733401+00 5357 JS257#D版本XXL SPMX-20240815300494 \N \N \N 1 \N [{"file_id": "127701fb-348d-4a88-a5b7-f60cd31046ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "093f235af22d484d9b9204590ce4625d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "093f235af22d484d9b9204590ce4625d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "093f235af22d484d9b9204590ce4625d.jpg", "file_size": 17306, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本XXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093f235af22d484d9b9204590ce4625d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093f235af22d484d9b9204590ce4625d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093f235af22d484d9b9204590ce4625d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/093f235af22d484d9b9204590ce4625d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/093f235af22d484d9b9204590ce4625d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Zp2ktmbK0I3cJV4Fuw8PAzcgIg=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.734602+00 2025-12-09 10:14:47.734605+00 5358 LZ1214#上身4号色 SPMX-20240815300500 \N \N \N 1 \N [{"file_id": "b3a7c75a-909e-48ca-a10b-488dd9e5fa2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d944978872b40a2a18e56af13a1e4cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d944978872b40a2a18e56af13a1e4cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d944978872b40a2a18e56af13a1e4cc.jpg", "file_size": 17623, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d944978872b40a2a18e56af13a1e4cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d944978872b40a2a18e56af13a1e4cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d944978872b40a2a18e56af13a1e4cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d944978872b40a2a18e56af13a1e4cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d944978872b40a2a18e56af13a1e4cc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tteyxLIfBz7olasquX6RJatwl8=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.735836+00 2025-12-09 10:14:47.73584+00 5359 1052#青色匹布 SPMX-20240815300507 \N \N \N 1 \N [{"file_id": "3694482b-188b-4946-a3d2-32a796bcca54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "548c74b307b64eb5b1c2d47b7fe09b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "548c74b307b64eb5b1c2d47b7fe09b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "548c74b307b64eb5b1c2d47b7fe09b04.jpg", "file_size": 9605, "is_delete": false, "file_type": 1, "original_file_name": "1052#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/548c74b307b64eb5b1c2d47b7fe09b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/548c74b307b64eb5b1c2d47b7fe09b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/548c74b307b64eb5b1c2d47b7fe09b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/548c74b307b64eb5b1c2d47b7fe09b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/548c74b307b64eb5b1c2d47b7fe09b04.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4qRjIebaGGwINyFO4uxbPfe7pw=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.737059+00 2025-12-09 10:14:47.737063+00 5360 C260#橙色 SPMX-20240815300502 \N \N \N 1 \N [{"file_id": "51f77f19-3611-4051-817d-ece7a5fd9d70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fde07200db914c35b53991be5d877368.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fde07200db914c35b53991be5d877368.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fde07200db914c35b53991be5d877368.jpg", "file_size": 9648, "is_delete": false, "file_type": 1, "original_file_name": "C260#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fde07200db914c35b53991be5d877368.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fde07200db914c35b53991be5d877368.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fde07200db914c35b53991be5d877368.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fde07200db914c35b53991be5d877368.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fde07200db914c35b53991be5d877368.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrzjoZTDoSqTHL7Ye7hB5-FEID8=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.738283+00 2025-12-09 10:14:47.738287+00 5361 FHXGPK-015-5 SPMX-20240815300497 \N \N \N 1 \N [{"file_id": "e29d89b9-f246-458c-8886-f169bead9843", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "333df832444b427fbdf22ce5d038f8cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "333df832444b427fbdf22ce5d038f8cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "333df832444b427fbdf22ce5d038f8cf.jpg", "file_size": 35562, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-015-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333df832444b427fbdf22ce5d038f8cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333df832444b427fbdf22ce5d038f8cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333df832444b427fbdf22ce5d038f8cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/333df832444b427fbdf22ce5d038f8cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/333df832444b427fbdf22ce5d038f8cf.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xq6I9R1WWB7IljNZt7oxEHBghw4=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.739507+00 2025-12-09 10:14:47.739511+00 5362 0003#438 WJC22 SPMX-20240815300499 \N \N \N 1 \N [{"file_id": "dd4b762b-1487-4f3f-91e0-2732fa4dd4db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add9505975f646ba811fd04f148f16ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add9505975f646ba811fd04f148f16ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add9505975f646ba811fd04f148f16ca.jpg", "file_size": 10450, "is_delete": false, "file_type": 1, "original_file_name": "0003#438 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9505975f646ba811fd04f148f16ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9505975f646ba811fd04f148f16ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add9505975f646ba811fd04f148f16ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add9505975f646ba811fd04f148f16ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add9505975f646ba811fd04f148f16ca.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRVwGdJKUU3pF2I1rGPXih7MElw=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.740739+00 2025-12-09 10:14:47.740743+00 5363 JS257#D版本匹布 SPMX-20240815300501 \N \N \N 1 \N [{"file_id": "eb7f39dd-b217-47ce-8767-972401445368", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b764dcfca94f421faabbb1de2902728e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b764dcfca94f421faabbb1de2902728e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b764dcfca94f421faabbb1de2902728e.jpg", "file_size": 19538, "is_delete": false, "file_type": 1, "original_file_name": "JS257#D版本匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b764dcfca94f421faabbb1de2902728e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b764dcfca94f421faabbb1de2902728e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b764dcfca94f421faabbb1de2902728e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b764dcfca94f421faabbb1de2902728e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b764dcfca94f421faabbb1de2902728e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0wrhiktjMP3QaOiWd-vKWSeccY=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.741948+00 2025-12-09 10:14:47.741952+00 5364 0003#439 WJC22 SPMX-20240815300510 \N \N \N 1 \N [{"file_id": "d6edece6-d41d-41c7-b6d8-4e966c78d3c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d92cff642da41bba52e5884efc8f51c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d92cff642da41bba52e5884efc8f51c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d92cff642da41bba52e5884efc8f51c.jpg", "file_size": 18205, "is_delete": false, "file_type": 1, "original_file_name": "0003#439 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d92cff642da41bba52e5884efc8f51c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d92cff642da41bba52e5884efc8f51c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d92cff642da41bba52e5884efc8f51c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d92cff642da41bba52e5884efc8f51c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d92cff642da41bba52e5884efc8f51c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OSBrabxA50dnMWHbCbBffFMuVs=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.7432+00 2025-12-09 10:14:47.743204+00 5365 LHJ9249-1#37#梅红 SPMX-20240815300498 \N \N \N 1 \N [{"file_id": "f0db7d66-d707-4c80-862e-9d0e5c5e23e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fb75ae507e0478a9232ca8f4d2e15de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fb75ae507e0478a9232ca8f4d2e15de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fb75ae507e0478a9232ca8f4d2e15de.jpg", "file_size": 9988, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb75ae507e0478a9232ca8f4d2e15de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb75ae507e0478a9232ca8f4d2e15de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb75ae507e0478a9232ca8f4d2e15de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fb75ae507e0478a9232ca8f4d2e15de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fb75ae507e0478a9232ca8f4d2e15de.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PowfhzNfTSeuLmF5wmPuu4_9_zs=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.744429+00 2025-12-09 10:14:47.744433+00 5366 LHJ9249-1#49#粉 SPMX-20240815300509 \N \N \N 1 \N [{"file_id": "eac3d218-5027-478e-8efd-cdf5db670c1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf4e088efda24308acf02c1f0abe6a4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf4e088efda24308acf02c1f0abe6a4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf4e088efda24308acf02c1f0abe6a4e.jpg", "file_size": 8850, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#49#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e088efda24308acf02c1f0abe6a4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e088efda24308acf02c1f0abe6a4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e088efda24308acf02c1f0abe6a4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf4e088efda24308acf02c1f0abe6a4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf4e088efda24308acf02c1f0abe6a4e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZQ0BnsSmHa3XrESxqrHRVsPDQc=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.745651+00 2025-12-09 10:14:47.745655+00 5367 1052#青色 SPMX-20240815300496 \N \N \N 1 \N [{"file_id": "546f2cc3-dba2-4093-8045-b0270d36d855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37b056a216ee4ee381d9bddb8580190e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37b056a216ee4ee381d9bddb8580190e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37b056a216ee4ee381d9bddb8580190e.jpg", "file_size": 19503, "is_delete": false, "file_type": 1, "original_file_name": "1052#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37b056a216ee4ee381d9bddb8580190e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37b056a216ee4ee381d9bddb8580190e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37b056a216ee4ee381d9bddb8580190e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37b056a216ee4ee381d9bddb8580190e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37b056a216ee4ee381d9bddb8580190e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UlsiI5GB4NMQ0C6aEd--E45x7o=", "createTime": "2024-08-15 14:42:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.746869+00 2025-12-09 10:14:47.746873+00 5368 DH20220780T#女童5-07YL SPMX-20240815300504 \N \N \N 1 \N [{"file_id": "5e42ec4e-8e0c-438f-8211-b7d29628e548", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6322b588b0cb4b8cae155fe094f5bf5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6322b588b0cb4b8cae155fe094f5bf5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6322b588b0cb4b8cae155fe094f5bf5e.jpg", "file_size": 12064, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-07YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6322b588b0cb4b8cae155fe094f5bf5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6322b588b0cb4b8cae155fe094f5bf5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6322b588b0cb4b8cae155fe094f5bf5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6322b588b0cb4b8cae155fe094f5bf5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6322b588b0cb4b8cae155fe094f5bf5e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qc8gXJyVGFsqam7K6wyvhsmBnAc=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.748146+00 2025-12-09 10:14:47.74815+00 5369 FHXGPK-016-1 SPMX-20240815300508 \N \N \N 1 \N [{"file_id": "516f41d5-e736-4c35-aa69-6c3e2d62afc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f3b732a7ca4b0592f090b8beab6978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f3b732a7ca4b0592f090b8beab6978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f3b732a7ca4b0592f090b8beab6978.jpg", "file_size": 37052, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f3b732a7ca4b0592f090b8beab6978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f3b732a7ca4b0592f090b8beab6978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f3b732a7ca4b0592f090b8beab6978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f3b732a7ca4b0592f090b8beab6978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f3b732a7ca4b0592f090b8beab6978.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZnhjocsSmYOJM7X_CmcOn9P_VM=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.749373+00 2025-12-09 10:14:47.749378+00 5370 23-2101#A4前后片3XL SPMX-20240815300505 \N \N \N 1 \N [{"file_id": "8291bc95-5eac-4d2a-8cd9-8d8afe995445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "034eefda715444908d9bcdf551b1001b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "034eefda715444908d9bcdf551b1001b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "034eefda715444908d9bcdf551b1001b.jpg", "file_size": 9611, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A4前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034eefda715444908d9bcdf551b1001b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034eefda715444908d9bcdf551b1001b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034eefda715444908d9bcdf551b1001b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/034eefda715444908d9bcdf551b1001b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/034eefda715444908d9bcdf551b1001b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KM9MnNpK9gFxgdCsA9ozBGHS0Zg=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.750582+00 2025-12-09 10:14:47.750586+00 5371 HSH148FW#VS-D3 SPMX-20240815300506 \N \N \N 1 \N [{"file_id": "b40b2a68-8c2b-4426-ba74-188d075dd309", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa3d5fb550024143a0428114542e9bc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa3d5fb550024143a0428114542e9bc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa3d5fb550024143a0428114542e9bc4.jpg", "file_size": 18416, "is_delete": false, "file_type": 1, "original_file_name": "HSH148FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3d5fb550024143a0428114542e9bc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3d5fb550024143a0428114542e9bc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3d5fb550024143a0428114542e9bc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa3d5fb550024143a0428114542e9bc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa3d5fb550024143a0428114542e9bc4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Br0BchNoxvEZ8V6kHZXIOewWICI=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.751798+00 2025-12-09 10:14:47.751802+00 5372 80075#白色裤子 SPMX-20240815300503 \N \N \N 1 \N [{"file_id": "cd7f4e50-22e5-404e-9aa3-9388b14dcd28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b74f006fce0643509dcb6a79b42496bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b74f006fce0643509dcb6a79b42496bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b74f006fce0643509dcb6a79b42496bc.jpg", "file_size": 14296, "is_delete": false, "file_type": 1, "original_file_name": "80075#白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74f006fce0643509dcb6a79b42496bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74f006fce0643509dcb6a79b42496bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74f006fce0643509dcb6a79b42496bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b74f006fce0643509dcb6a79b42496bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b74f006fce0643509dcb6a79b42496bc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDj1FY1NSQ8FaLWqa-aKWhANpaI=", "createTime": "2024-08-15 14:42:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.753036+00 2025-12-09 10:14:47.75304+00 5373 23-2101#A4袖子3XL SPMX-20240815300526 \N \N \N 1 \N [{"file_id": "964c63f0-9085-4a4c-bd4f-caa74e6c24d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "789f2e8e481a41ddbe770046cc394032.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "789f2e8e481a41ddbe770046cc394032.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "789f2e8e481a41ddbe770046cc394032.jpg", "file_size": 6681, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A4袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789f2e8e481a41ddbe770046cc394032.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789f2e8e481a41ddbe770046cc394032.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789f2e8e481a41ddbe770046cc394032.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/789f2e8e481a41ddbe770046cc394032.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/789f2e8e481a41ddbe770046cc394032.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YI1chsW1ebW-4px746y_5tRrUJw=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.75425+00 2025-12-09 10:14:47.754254+00 5374 C260#黑色 SPMX-20240815300513 \N \N \N 1 \N [{"file_id": "5ec4cbda-9ea1-4373-963f-55a7b3522123", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4338ed89f5864818a8438359e123f746.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4338ed89f5864818a8438359e123f746.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4338ed89f5864818a8438359e123f746.jpg", "file_size": 9686, "is_delete": false, "file_type": 1, "original_file_name": "C260#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4338ed89f5864818a8438359e123f746.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4338ed89f5864818a8438359e123f746.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4338ed89f5864818a8438359e123f746.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4338ed89f5864818a8438359e123f746.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4338ed89f5864818a8438359e123f746.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cn0qzyw-OJCGjb9g02dskehTBj8=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.755468+00 2025-12-09 10:14:47.755471+00 5375 DH20220780T#女童5-07YM SPMX-20240815300515 \N \N \N 1 \N [{"file_id": "64da0ebc-0851-4736-9085-c8c5598841ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fc8a371d0f341fe8844f04268b878d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fc8a371d0f341fe8844f04268b878d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fc8a371d0f341fe8844f04268b878d1.jpg", "file_size": 13219, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-07YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc8a371d0f341fe8844f04268b878d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc8a371d0f341fe8844f04268b878d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc8a371d0f341fe8844f04268b878d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fc8a371d0f341fe8844f04268b878d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fc8a371d0f341fe8844f04268b878d1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXLEW3-JR-vQjLXhtGOwdYop0YU=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.756677+00 2025-12-09 10:14:47.756682+00 5376 LZ1214#下身1号色 SPMX-20240815300511 \N \N \N 1 \N [{"file_id": "2497d66e-1762-420f-a315-843fe1f35266", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f5f3a96ce524ebe934df7f668c7b652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f5f3a96ce524ebe934df7f668c7b652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f5f3a96ce524ebe934df7f668c7b652.jpg", "file_size": 17677, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5f3a96ce524ebe934df7f668c7b652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5f3a96ce524ebe934df7f668c7b652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5f3a96ce524ebe934df7f668c7b652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f5f3a96ce524ebe934df7f668c7b652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f5f3a96ce524ebe934df7f668c7b652.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vrmIQHsmQ6ZPpiD-FOfGpf6KJXM=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.757928+00 2025-12-09 10:14:47.757933+00 5377 FHXGPK-016-2 SPMX-20240815300517 \N \N \N 1 \N [{"file_id": "970df7f9-adae-4124-a8e0-e97a6362b011", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e18877c8783349e4b13b88bcda2598c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e18877c8783349e4b13b88bcda2598c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e18877c8783349e4b13b88bcda2598c1.jpg", "file_size": 32350, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18877c8783349e4b13b88bcda2598c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18877c8783349e4b13b88bcda2598c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18877c8783349e4b13b88bcda2598c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e18877c8783349e4b13b88bcda2598c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e18877c8783349e4b13b88bcda2598c1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKMX6FsLUDv6wZ4_YZeoVDQD0Sw=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.759144+00 2025-12-09 10:14:47.759147+00 5378 LZ1214#下身2号色 SPMX-20240815300522 \N \N \N 1 \N [{"file_id": "37d7c477-b422-447d-96c0-c7680d979ca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32f73d0def4e47a1b6afd6be95e12efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32f73d0def4e47a1b6afd6be95e12efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32f73d0def4e47a1b6afd6be95e12efc.jpg", "file_size": 18908, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f73d0def4e47a1b6afd6be95e12efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f73d0def4e47a1b6afd6be95e12efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32f73d0def4e47a1b6afd6be95e12efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32f73d0def4e47a1b6afd6be95e12efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32f73d0def4e47a1b6afd6be95e12efc.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7HWFCjuDT_nYFDdWQ27d6LPsM8=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.760373+00 2025-12-09 10:14:47.760377+00 5379 LHJ9249-1#5#彩兰 SPMX-20240815300520 \N \N \N 1 \N [{"file_id": "c4b35718-b256-420c-b892-e0e1a8ca8870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a6c35a48b684fbfac6cf4e9a74dacd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a6c35a48b684fbfac6cf4e9a74dacd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a6c35a48b684fbfac6cf4e9a74dacd4.jpg", "file_size": 13836, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6c35a48b684fbfac6cf4e9a74dacd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6c35a48b684fbfac6cf4e9a74dacd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6c35a48b684fbfac6cf4e9a74dacd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a6c35a48b684fbfac6cf4e9a74dacd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a6c35a48b684fbfac6cf4e9a74dacd4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hcgNPepy0SCGvhifz_n0k6odICY=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.761579+00 2025-12-09 10:14:47.761583+00 5380 JS293#D版本M SPMX-20240815300523 \N \N \N 1 \N [{"file_id": "20dc9d0d-8463-42ea-b4a7-f2bfbe230a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53fd974f2020430fab2529e90131fba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53fd974f2020430fab2529e90131fba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53fd974f2020430fab2529e90131fba4.jpg", "file_size": 20866, "is_delete": false, "file_type": 1, "original_file_name": "JS293#D版本M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fd974f2020430fab2529e90131fba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fd974f2020430fab2529e90131fba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fd974f2020430fab2529e90131fba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53fd974f2020430fab2529e90131fba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53fd974f2020430fab2529e90131fba4.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZTHhCz8fquTTaeTLgpiFDAnlzM=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.762825+00 2025-12-09 10:14:47.76283+00 5381 80075#黑色上衣 SPMX-20240815300525 \N \N \N 1 \N [{"file_id": "46f94805-79e4-4f6a-8dbc-9a22b4ef34dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c83c09294d1c4682b049c9a2b68dae66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c83c09294d1c4682b049c9a2b68dae66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c83c09294d1c4682b049c9a2b68dae66.jpg", "file_size": 13949, "is_delete": false, "file_type": 1, "original_file_name": "80075#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c09294d1c4682b049c9a2b68dae66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c09294d1c4682b049c9a2b68dae66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c09294d1c4682b049c9a2b68dae66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c83c09294d1c4682b049c9a2b68dae66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c83c09294d1c4682b049c9a2b68dae66.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4LH8cvNm67O7iUCe3D_WHV8v1U0=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.764058+00 2025-12-09 10:14:47.764062+00 5382 HSH149FW#VS-D3 SPMX-20240815300519 \N \N \N 1 \N [{"file_id": "d633faed-fb6d-4d2a-8476-baee57c1ae02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dc17f0dc19f468a883ad9c36d897f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dc17f0dc19f468a883ad9c36d897f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dc17f0dc19f468a883ad9c36d897f33.jpg", "file_size": 15689, "is_delete": false, "file_type": 1, "original_file_name": "HSH149FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc17f0dc19f468a883ad9c36d897f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc17f0dc19f468a883ad9c36d897f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc17f0dc19f468a883ad9c36d897f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dc17f0dc19f468a883ad9c36d897f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dc17f0dc19f468a883ad9c36d897f33.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FCp3ydKXuAAx2sgiegkIpCugLQ=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.765275+00 2025-12-09 10:14:47.76528+00 5383 C261FWE#L VS-D3 SPMX-20240815300524 \N \N \N 1 \N [{"file_id": "5f40e690-c087-4f52-a360-09164d901316", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bf5ca646a5948f9900dd9a1a4891bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bf5ca646a5948f9900dd9a1a4891bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bf5ca646a5948f9900dd9a1a4891bab.jpg", "file_size": 15225, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf5ca646a5948f9900dd9a1a4891bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf5ca646a5948f9900dd9a1a4891bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf5ca646a5948f9900dd9a1a4891bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bf5ca646a5948f9900dd9a1a4891bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bf5ca646a5948f9900dd9a1a4891bab.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRyGCXZ_rbGO9yyTqNopItIf2jU=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.766475+00 2025-12-09 10:14:47.76648+00 5384 1053#宝蓝底粉 SPMX-20240815300518 \N \N \N 1 \N [{"file_id": "d2b8c8ed-43ee-4a15-b122-404d8d6c49a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49c1d4df896a46edaec7c1e7b48829d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49c1d4df896a46edaec7c1e7b48829d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49c1d4df896a46edaec7c1e7b48829d7.jpg", "file_size": 23073, "is_delete": false, "file_type": 1, "original_file_name": "1053#宝蓝底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c1d4df896a46edaec7c1e7b48829d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c1d4df896a46edaec7c1e7b48829d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c1d4df896a46edaec7c1e7b48829d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49c1d4df896a46edaec7c1e7b48829d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49c1d4df896a46edaec7c1e7b48829d7.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YuXAk68PIOeBMpYqr6aoXu12wqY=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.767713+00 2025-12-09 10:14:47.767717+00 5385 JS293#D版本L SPMX-20240815300512 \N \N \N 1 \N [{"file_id": "ef62e3ad-f7ed-470b-9321-4ee1f19e1b61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74dd1fd5b7cf439badde3bd2a9840477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74dd1fd5b7cf439badde3bd2a9840477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74dd1fd5b7cf439badde3bd2a9840477.jpg", "file_size": 20342, "is_delete": false, "file_type": 1, "original_file_name": "JS293#D版本L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dd1fd5b7cf439badde3bd2a9840477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dd1fd5b7cf439badde3bd2a9840477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dd1fd5b7cf439badde3bd2a9840477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74dd1fd5b7cf439badde3bd2a9840477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74dd1fd5b7cf439badde3bd2a9840477.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffAn_VZHeGimZYdJMUmv43syil8=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.768951+00 2025-12-09 10:14:47.768955+00 5386 23-2101#A4前后片4XL SPMX-20240815300516 \N \N \N 1 \N [{"file_id": "7d037efc-ed47-4171-91f1-c9b1dcf1668c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8135c862f26e479d9b74474e90bb8440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8135c862f26e479d9b74474e90bb8440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8135c862f26e479d9b74474e90bb8440.jpg", "file_size": 9889, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A4前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135c862f26e479d9b74474e90bb8440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135c862f26e479d9b74474e90bb8440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8135c862f26e479d9b74474e90bb8440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8135c862f26e479d9b74474e90bb8440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8135c862f26e479d9b74474e90bb8440.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tYFv6_u-S5yXGd83MzFG-z3GUc=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.770195+00 2025-12-09 10:14:47.770199+00 5387 80075#袖子匹布 SPMX-20240815300514 \N \N \N 1 \N [{"file_id": "4c38bca8-c047-4d3e-9cc2-0869e4bdbbfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac426ab5e46643c99b02238c92282691.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac426ab5e46643c99b02238c92282691.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac426ab5e46643c99b02238c92282691.jpg", "file_size": 13794, "is_delete": false, "file_type": 1, "original_file_name": "80075#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac426ab5e46643c99b02238c92282691.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac426ab5e46643c99b02238c92282691.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac426ab5e46643c99b02238c92282691.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac426ab5e46643c99b02238c92282691.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac426ab5e46643c99b02238c92282691.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2t1ndV5UyvvwuOSujaEVf6kj8w=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.771405+00 2025-12-09 10:14:47.771409+00 5388 1053#宝蓝底粉匹布 SPMX-20240815300529 \N \N \N 1 \N [{"file_id": "e6bbf8b2-e2d9-4204-b52b-93c2f1936ddf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fd2ae2e4ad445d68f65377112d5785f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fd2ae2e4ad445d68f65377112d5785f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fd2ae2e4ad445d68f65377112d5785f.jpg", "file_size": 10608, "is_delete": false, "file_type": 1, "original_file_name": "1053#宝蓝底粉匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd2ae2e4ad445d68f65377112d5785f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd2ae2e4ad445d68f65377112d5785f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd2ae2e4ad445d68f65377112d5785f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fd2ae2e4ad445d68f65377112d5785f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fd2ae2e4ad445d68f65377112d5785f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmWcJjbFOOhgnT4i0ZD659lCsmc=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.772625+00 2025-12-09 10:14:47.77263+00 5389 LHJ9260#20枣红下摆 SPMX-20240815300541 \N \N \N 1 \N [{"file_id": "8122ab46-8914-472d-b1db-ddce749ed46f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea3deab7673a4930b7d869de5b541b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea3deab7673a4930b7d869de5b541b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea3deab7673a4930b7d869de5b541b1f.jpg", "file_size": 12625, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#20枣红下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3deab7673a4930b7d869de5b541b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3deab7673a4930b7d869de5b541b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea3deab7673a4930b7d869de5b541b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea3deab7673a4930b7d869de5b541b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea3deab7673a4930b7d869de5b541b1f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2AqnJPU5xFf8g7Y9AuRnwBnxiU=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.773867+00 2025-12-09 10:14:47.773871+00 5390 HSH150FW#VS-D3 SPMX-20240815300530 \N \N \N 1 \N [{"file_id": "38bb3a26-3ee4-4843-b1d4-61902ef3b492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98d4d0d96d0d4c79864d145243f3279a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98d4d0d96d0d4c79864d145243f3279a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98d4d0d96d0d4c79864d145243f3279a.jpg", "file_size": 27530, "is_delete": false, "file_type": 1, "original_file_name": "HSH150FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d4d0d96d0d4c79864d145243f3279a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d4d0d96d0d4c79864d145243f3279a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d4d0d96d0d4c79864d145243f3279a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98d4d0d96d0d4c79864d145243f3279a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98d4d0d96d0d4c79864d145243f3279a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZiAjvAz2tG3_CQMyB34cQc_Avk=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.775213+00 2025-12-09 10:14:47.775216+00 5391 DH20220780T#女童5-07YS SPMX-20240815300527 \N \N \N 1 \N [{"file_id": "3bf1caba-2383-468f-94f7-0a5bea7aa807", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48c02459cef646e1b802890e2ff35f0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48c02459cef646e1b802890e2ff35f0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48c02459cef646e1b802890e2ff35f0b.jpg", "file_size": 14844, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-07YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c02459cef646e1b802890e2ff35f0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c02459cef646e1b802890e2ff35f0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c02459cef646e1b802890e2ff35f0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48c02459cef646e1b802890e2ff35f0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48c02459cef646e1b802890e2ff35f0b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8ax6SjVQGorjRAcZS0GDIO7amA=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.776788+00 2025-12-09 10:14:47.776793+00 5392 LZ1214#下身3号色 SPMX-20240815300532 \N \N \N 1 \N [{"file_id": "4687ca98-305d-478f-9a0e-06b125b0f2df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bd6be319bce4be1a3c08fdfbc5d183d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bd6be319bce4be1a3c08fdfbc5d183d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bd6be319bce4be1a3c08fdfbc5d183d.jpg", "file_size": 17230, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd6be319bce4be1a3c08fdfbc5d183d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd6be319bce4be1a3c08fdfbc5d183d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd6be319bce4be1a3c08fdfbc5d183d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bd6be319bce4be1a3c08fdfbc5d183d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bd6be319bce4be1a3c08fdfbc5d183d.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eo-iR2yqHoKuDDOQK9QvlXui_dA=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.778365+00 2025-12-09 10:14:47.778369+00 5393 FHXGPK-016-3 SPMX-20240815300528 \N \N \N 1 \N [{"file_id": "99a22835-9dc4-439b-af8f-f5dd076fda79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ae61990be14b5b9316f3f3a179b521.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ae61990be14b5b9316f3f3a179b521.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ae61990be14b5b9316f3f3a179b521.jpg", "file_size": 36034, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ae61990be14b5b9316f3f3a179b521.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ae61990be14b5b9316f3f3a179b521.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ae61990be14b5b9316f3f3a179b521.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ae61990be14b5b9316f3f3a179b521.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ae61990be14b5b9316f3f3a179b521.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVdHWx3iN42E3w9OXSnTH6i4UZs=", "createTime": "2024-08-15 14:42:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.779911+00 2025-12-09 10:14:47.779915+00 5394 80075#黑色裤子 SPMX-20240815300534 \N \N \N 1 \N [{"file_id": "087befcf-0763-4d21-9f8e-37d3f8b41f65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "890bb918d86b4f438e2fe22d3bf11079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "890bb918d86b4f438e2fe22d3bf11079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "890bb918d86b4f438e2fe22d3bf11079.jpg", "file_size": 15193, "is_delete": false, "file_type": 1, "original_file_name": "80075#黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/890bb918d86b4f438e2fe22d3bf11079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/890bb918d86b4f438e2fe22d3bf11079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/890bb918d86b4f438e2fe22d3bf11079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/890bb918d86b4f438e2fe22d3bf11079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/890bb918d86b4f438e2fe22d3bf11079.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJIHXMbT3D-gKCdjkyJgTY8iTck=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.781416+00 2025-12-09 10:14:47.78142+00 5395 HSH151FW#VS-D3 SPMX-20240815300540 \N \N \N 1 \N [{"file_id": "41f5b9ca-54f2-44c2-b12d-73f8b4664f9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30efe277348b4c9b81079ebbb3282c1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30efe277348b4c9b81079ebbb3282c1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30efe277348b4c9b81079ebbb3282c1a.jpg", "file_size": 17304, "is_delete": false, "file_type": 1, "original_file_name": "HSH151FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30efe277348b4c9b81079ebbb3282c1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30efe277348b4c9b81079ebbb3282c1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30efe277348b4c9b81079ebbb3282c1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30efe277348b4c9b81079ebbb3282c1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30efe277348b4c9b81079ebbb3282c1a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3G9wpSjkIZPiSiM3kfQNw16W3FQ=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.782902+00 2025-12-09 10:14:47.782907+00 5396 JS293#D版本S SPMX-20240815300536 \N \N \N 1 \N [{"file_id": "bb667c42-6464-4de8-aa09-06a74de8bc5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aabc93e2150437fb3318ee1b77befa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aabc93e2150437fb3318ee1b77befa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aabc93e2150437fb3318ee1b77befa9.jpg", "file_size": 21147, "is_delete": false, "file_type": 1, "original_file_name": "JS293#D版本S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aabc93e2150437fb3318ee1b77befa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aabc93e2150437fb3318ee1b77befa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aabc93e2150437fb3318ee1b77befa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aabc93e2150437fb3318ee1b77befa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aabc93e2150437fb3318ee1b77befa9.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xM613EoxUxcQYmwaQaCAtt66ypM=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.78442+00 2025-12-09 10:14:47.784424+00 5397 LHJ9249-1#64#粉色 SPMX-20240815300531 \N \N \N 1 \N [{"file_id": "a644581a-6bf7-4b52-841e-0ff0d5988887", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "434a2d063c904035ad64b3765d46ecce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "434a2d063c904035ad64b3765d46ecce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "434a2d063c904035ad64b3765d46ecce.jpg", "file_size": 8850, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9249-1#64#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/434a2d063c904035ad64b3765d46ecce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/434a2d063c904035ad64b3765d46ecce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/434a2d063c904035ad64b3765d46ecce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/434a2d063c904035ad64b3765d46ecce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/434a2d063c904035ad64b3765d46ecce.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xd1RICqeYOyM4-Dj7zqRiSJjmq4=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.785932+00 2025-12-09 10:14:47.785936+00 5398 1053#白底宝蓝 SPMX-20240815300539 \N \N \N 1 \N [{"file_id": "4c7fe762-3a20-4fab-a38e-8e82b677ab71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "386593327e4e4f2186767e55d5930d7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "386593327e4e4f2186767e55d5930d7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "386593327e4e4f2186767e55d5930d7e.jpg", "file_size": 24828, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386593327e4e4f2186767e55d5930d7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386593327e4e4f2186767e55d5930d7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386593327e4e4f2186767e55d5930d7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/386593327e4e4f2186767e55d5930d7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/386593327e4e4f2186767e55d5930d7e.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvODOEsi2w0sP3pmyADmksCaR2s=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.787456+00 2025-12-09 10:14:47.78746+00 5399 DH20220780T#女童5-07YXL SPMX-20240815300542 \N \N \N 1 \N [{"file_id": "9cdf06cc-385e-4044-950e-5fb11bbe95c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg", "file_size": 10425, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-07YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f2a0db4a4be4d88b0b92cbf4bdb931c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpJASyFnE2kHLRMzCrhIYgI5xJ8=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.788776+00 2025-12-09 10:14:47.78878+00 5400 C261FWE#L补片 SPMX-20240815300535 \N \N \N 1 \N [{"file_id": "12430e07-e317-4912-85dc-dfd2df16b420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41778a97a78b41f2a3c47669cae26aa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41778a97a78b41f2a3c47669cae26aa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41778a97a78b41f2a3c47669cae26aa0.jpg", "file_size": 17959, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#L补片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41778a97a78b41f2a3c47669cae26aa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41778a97a78b41f2a3c47669cae26aa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41778a97a78b41f2a3c47669cae26aa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41778a97a78b41f2a3c47669cae26aa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41778a97a78b41f2a3c47669cae26aa0.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avCWj590EL-xHT7L6ou8bub2W1k=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.790056+00 2025-12-09 10:14:47.79006+00 5401 FHXGPK-016-4 SPMX-20240815300538 \N \N \N 1 \N [{"file_id": "bece273a-02b1-470c-9cdf-959e87d5d164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8ca2a5761d94c548fe26c63120fa070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8ca2a5761d94c548fe26c63120fa070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8ca2a5761d94c548fe26c63120fa070.jpg", "file_size": 37326, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ca2a5761d94c548fe26c63120fa070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ca2a5761d94c548fe26c63120fa070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ca2a5761d94c548fe26c63120fa070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8ca2a5761d94c548fe26c63120fa070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8ca2a5761d94c548fe26c63120fa070.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6LcxcDh-WeooNKsaFHpdPw_MUw=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.791323+00 2025-12-09 10:14:47.791327+00 5402 23-2101#A4袖子4XL SPMX-20240815300537 \N \N \N 1 \N [{"file_id": "426f2915-a417-4232-ba49-938e47904c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1186c430dd63430ba526696c91afda5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1186c430dd63430ba526696c91afda5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1186c430dd63430ba526696c91afda5a.jpg", "file_size": 7389, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A4袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1186c430dd63430ba526696c91afda5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1186c430dd63430ba526696c91afda5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1186c430dd63430ba526696c91afda5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1186c430dd63430ba526696c91afda5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1186c430dd63430ba526696c91afda5a.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNnIrz3cuCsaROYd1hLCU4oy8yc=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.792596+00 2025-12-09 10:14:47.7926+00 5403 80076#前后幅 SPMX-20240815300545 \N \N \N 1 \N [{"file_id": "7099f0e6-3ff1-4d9c-ae97-0d64e64f5c34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cc44c81396844e4ae7a4923d4c05ba8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cc44c81396844e4ae7a4923d4c05ba8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cc44c81396844e4ae7a4923d4c05ba8.jpg", "file_size": 18684, "is_delete": false, "file_type": 1, "original_file_name": "80076#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc44c81396844e4ae7a4923d4c05ba8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc44c81396844e4ae7a4923d4c05ba8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc44c81396844e4ae7a4923d4c05ba8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cc44c81396844e4ae7a4923d4c05ba8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cc44c81396844e4ae7a4923d4c05ba8.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsDgL635Nz6JTMIzMcvFGBVsHNY=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.793867+00 2025-12-09 10:14:47.793872+00 5404 23-2101#A4领子通用 SPMX-20240815300546 \N \N \N 1 \N [{"file_id": "081a16de-3ca7-4a93-a29e-c20a30d9dabc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6198820d625c4646a1e9695acdf1d95b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6198820d625c4646a1e9695acdf1d95b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6198820d625c4646a1e9695acdf1d95b.jpg", "file_size": 8172, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A4领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6198820d625c4646a1e9695acdf1d95b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6198820d625c4646a1e9695acdf1d95b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6198820d625c4646a1e9695acdf1d95b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6198820d625c4646a1e9695acdf1d95b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6198820d625c4646a1e9695acdf1d95b.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csyU0vxdTgjrt3v6zYNhDnzhnxc=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.795117+00 2025-12-09 10:14:47.795121+00 5405 80076#白色上衣 SPMX-20240815300549 \N \N \N 1 \N [{"file_id": "bb71e0c5-25df-4104-bef7-38e5770f1959", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72f40ef75aa64631b77c75916dfd9438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72f40ef75aa64631b77c75916dfd9438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72f40ef75aa64631b77c75916dfd9438.jpg", "file_size": 18126, "is_delete": false, "file_type": 1, "original_file_name": "80076#白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72f40ef75aa64631b77c75916dfd9438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72f40ef75aa64631b77c75916dfd9438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72f40ef75aa64631b77c75916dfd9438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72f40ef75aa64631b77c75916dfd9438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72f40ef75aa64631b77c75916dfd9438.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oldQonHTbRK-hcb8gkQFnooACLs=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.796384+00 2025-12-09 10:14:47.796388+00 5406 JS293#D版本XL SPMX-20240815300548 \N \N \N 1 \N [{"file_id": "2b85d996-80de-4292-a3ad-027fd86db857", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8089794faca54db8b3eb9c2156ccae6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8089794faca54db8b3eb9c2156ccae6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8089794faca54db8b3eb9c2156ccae6c.jpg", "file_size": 20443, "is_delete": false, "file_type": 1, "original_file_name": "JS293#D版本XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8089794faca54db8b3eb9c2156ccae6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8089794faca54db8b3eb9c2156ccae6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8089794faca54db8b3eb9c2156ccae6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8089794faca54db8b3eb9c2156ccae6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8089794faca54db8b3eb9c2156ccae6c.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCg1RGtQmJMfXyXXROMiNtLsNRY=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.797789+00 2025-12-09 10:14:47.797793+00 5407 C261FWE#M VS-D3 SPMX-20240815300547 \N \N \N 1 \N [{"file_id": "af47db27-8b03-469a-a3c1-6a9421b58388", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f178caf46c4e40399ce8d87216a3f8f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f178caf46c4e40399ce8d87216a3f8f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f178caf46c4e40399ce8d87216a3f8f1.jpg", "file_size": 17274, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f178caf46c4e40399ce8d87216a3f8f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f178caf46c4e40399ce8d87216a3f8f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f178caf46c4e40399ce8d87216a3f8f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f178caf46c4e40399ce8d87216a3f8f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f178caf46c4e40399ce8d87216a3f8f1.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2uSnU5TUJfVOKcWpc42PBWz2Rc=", "createTime": "2024-08-15 14:42:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.799033+00 2025-12-09 10:14:47.799037+00 5408 LZ1214#下身4号色 SPMX-20240815300544 \N \N \N 1 \N [{"file_id": "e8c5e760-3b7c-4fc9-ae7a-424ede07aedf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dda1a6aa79a041c1b45051f9c29c5f6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dda1a6aa79a041c1b45051f9c29c5f6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dda1a6aa79a041c1b45051f9c29c5f6f.jpg", "file_size": 18169, "is_delete": false, "file_type": 1, "original_file_name": "LZ1214#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda1a6aa79a041c1b45051f9c29c5f6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda1a6aa79a041c1b45051f9c29c5f6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda1a6aa79a041c1b45051f9c29c5f6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dda1a6aa79a041c1b45051f9c29c5f6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dda1a6aa79a041c1b45051f9c29c5f6f.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0i82qLoWgfthbUyLoDKCpdJV18Y=", "createTime": "2024-08-15 14:42:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.800289+00 2025-12-09 10:14:47.800294+00 5409 DH20220780T#女童5-07YXS SPMX-20240815300550 \N \N \N 1 \N [{"file_id": "b5e70b51-6868-40eb-8865-b29103afdc60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3c60ba4be19435c8cf621d938a95660.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3c60ba4be19435c8cf621d938a95660.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3c60ba4be19435c8cf621d938a95660.jpg", "file_size": 13299, "is_delete": false, "file_type": 1, "original_file_name": "DH20220780T#女童5-07YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c60ba4be19435c8cf621d938a95660.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c60ba4be19435c8cf621d938a95660.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c60ba4be19435c8cf621d938a95660.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3c60ba4be19435c8cf621d938a95660.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3c60ba4be19435c8cf621d938a95660.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQaT5eB357moTg1fgMjNzNKAo50=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:47.801539+00 2025-12-09 10:14:47.801543+00 5410 HSH152FW#浅绿 SPMX-20240815300551 \N \N \N 1 \N [{"file_id": "4065ca22-8f4b-4927-8db8-163b1bcb156b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26020b365c3e460ab5e1e741c6cc81ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26020b365c3e460ab5e1e741c6cc81ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26020b365c3e460ab5e1e741c6cc81ca.jpg", "file_size": 15324, "is_delete": false, "file_type": 1, "original_file_name": "HSH152FW#浅绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26020b365c3e460ab5e1e741c6cc81ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26020b365c3e460ab5e1e741c6cc81ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26020b365c3e460ab5e1e741c6cc81ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26020b365c3e460ab5e1e741c6cc81ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26020b365c3e460ab5e1e741c6cc81ca.jpg?e=1765361687&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8n49_bUTPz7KYdxtPPbvmq698w=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.492219+00 2025-12-09 10:14:48.49223+00 5411 LHJ9260#20枣红袖子 SPMX-20240815300552 \N \N \N 1 \N [{"file_id": "d0040b05-f236-408f-a83d-2bb90e796635", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa012bd6ddd44863977445af897766b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa012bd6ddd44863977445af897766b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa012bd6ddd44863977445af897766b8.jpg", "file_size": 11863, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#20枣红袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa012bd6ddd44863977445af897766b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa012bd6ddd44863977445af897766b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa012bd6ddd44863977445af897766b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa012bd6ddd44863977445af897766b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa012bd6ddd44863977445af897766b8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ticd1Sg-FBEV7L_PyxY8S8uUYY=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.494294+00 2025-12-09 10:14:48.494299+00 5412 LZ1215#上身1号色 SPMX-20240815300554 \N \N \N 1 \N [{"file_id": "df7b385e-8b8d-4ae6-94f0-4387e1ebbdae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51b3565bc55a4c97be1d3b5f51acad09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51b3565bc55a4c97be1d3b5f51acad09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51b3565bc55a4c97be1d3b5f51acad09.jpg", "file_size": 17080, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b3565bc55a4c97be1d3b5f51acad09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b3565bc55a4c97be1d3b5f51acad09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b3565bc55a4c97be1d3b5f51acad09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51b3565bc55a4c97be1d3b5f51acad09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51b3565bc55a4c97be1d3b5f51acad09.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IM81djIHVsw6_6w2yP8IPxRus4A=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.496013+00 2025-12-09 10:14:48.496019+00 5413 FHXGPK-016-5 SPMX-20240815300555 \N \N \N 1 \N [{"file_id": "27dcadff-9c95-492a-8145-3ec6f9e8d9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e556f6ae990f45c7b64c3ef4b7b72c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e556f6ae990f45c7b64c3ef4b7b72c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e556f6ae990f45c7b64c3ef4b7b72c04.jpg", "file_size": 35289, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e556f6ae990f45c7b64c3ef4b7b72c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e556f6ae990f45c7b64c3ef4b7b72c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e556f6ae990f45c7b64c3ef4b7b72c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e556f6ae990f45c7b64c3ef4b7b72c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e556f6ae990f45c7b64c3ef4b7b72c04.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6a3cH5T77YWwYuBePhh6dB6BUU=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.49731+00 2025-12-09 10:14:48.497314+00 5414 0003-1#LWQ15 SPMX-20240815300556 \N \N \N 1 \N [{"file_id": "cedb5a3a-7c29-400e-9c9b-fd416ee865fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db2c8c73bd07496ba053cf6d0e056628.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db2c8c73bd07496ba053cf6d0e056628.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db2c8c73bd07496ba053cf6d0e056628.jpg", "file_size": 19272, "is_delete": false, "file_type": 1, "original_file_name": "0003-1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db2c8c73bd07496ba053cf6d0e056628.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db2c8c73bd07496ba053cf6d0e056628.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db2c8c73bd07496ba053cf6d0e056628.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db2c8c73bd07496ba053cf6d0e056628.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db2c8c73bd07496ba053cf6d0e056628.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCfjcekoaL_px06u3IIlUrvnViM=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.498615+00 2025-12-09 10:14:48.49862+00 5415 1053#白底宝蓝匹布 SPMX-20240815300553 \N \N \N 1 \N [{"file_id": "76a508a8-c06e-4ceb-9e63-ee72e60a1a23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e178d5f38d1a40378d2453c7cff70780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e178d5f38d1a40378d2453c7cff70780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e178d5f38d1a40378d2453c7cff70780.jpg", "file_size": 11864, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e178d5f38d1a40378d2453c7cff70780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e178d5f38d1a40378d2453c7cff70780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e178d5f38d1a40378d2453c7cff70780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e178d5f38d1a40378d2453c7cff70780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e178d5f38d1a40378d2453c7cff70780.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1es8MLRICUiKvNaa-r7FnuYxQ0g=", "createTime": "2024-08-15 14:42:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.499893+00 2025-12-09 10:14:48.499898+00 5416 C261FWE#S VS-D3 SPMX-20240815300565 \N \N \N 1 \N [{"file_id": "c4b5cb6f-3d4a-42d5-b037-97862a547e77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "323648244c9540ccab9d8487a1bb17b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "323648244c9540ccab9d8487a1bb17b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "323648244c9540ccab9d8487a1bb17b1.jpg", "file_size": 18023, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323648244c9540ccab9d8487a1bb17b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323648244c9540ccab9d8487a1bb17b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323648244c9540ccab9d8487a1bb17b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/323648244c9540ccab9d8487a1bb17b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/323648244c9540ccab9d8487a1bb17b1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39Pwxgc7g69TnnU95hQw-9YatVQ=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.501151+00 2025-12-09 10:14:48.501156+00 5417 FHXGPK-016-7 SPMX-20240815300569 \N \N \N 1 \N [{"file_id": "30622434-b507-4239-92e8-6e81774d7d74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68c2d43e3828474aa605ccbfd3d3155f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68c2d43e3828474aa605ccbfd3d3155f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68c2d43e3828474aa605ccbfd3d3155f.jpg", "file_size": 36263, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c2d43e3828474aa605ccbfd3d3155f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c2d43e3828474aa605ccbfd3d3155f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c2d43e3828474aa605ccbfd3d3155f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68c2d43e3828474aa605ccbfd3d3155f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68c2d43e3828474aa605ccbfd3d3155f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w28-AHVOJHajW5ip3YnLqf3b5KM=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.502405+00 2025-12-09 10:14:48.502409+00 5418 1053#白底灰匹布 SPMX-20240815300570 \N \N \N 1 \N [{"file_id": "c4fa0b76-346f-49e3-a349-418ca691b758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05fa535d6f2a4c9b96d09a7696fa14fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05fa535d6f2a4c9b96d09a7696fa14fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05fa535d6f2a4c9b96d09a7696fa14fb.jpg", "file_size": 7224, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底灰匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fa535d6f2a4c9b96d09a7696fa14fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fa535d6f2a4c9b96d09a7696fa14fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fa535d6f2a4c9b96d09a7696fa14fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05fa535d6f2a4c9b96d09a7696fa14fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05fa535d6f2a4c9b96d09a7696fa14fb.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0H9olOzAfokicdRotOmVbR-Ejho=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.503696+00 2025-12-09 10:14:48.5037+00 5419 80076#袖子匹布 SPMX-20240815300572 \N \N \N 1 \N [{"file_id": "976917b2-954a-4add-b5ee-ac89449c39e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe686cccb4fe4726ab07b8e7d917d3e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe686cccb4fe4726ab07b8e7d917d3e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe686cccb4fe4726ab07b8e7d917d3e9.jpg", "file_size": 12248, "is_delete": false, "file_type": 1, "original_file_name": "80076#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe686cccb4fe4726ab07b8e7d917d3e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe686cccb4fe4726ab07b8e7d917d3e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe686cccb4fe4726ab07b8e7d917d3e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe686cccb4fe4726ab07b8e7d917d3e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe686cccb4fe4726ab07b8e7d917d3e9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G6QpHr2kSdjhyAsqo_tZJqX4Lt8=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.504976+00 2025-12-09 10:14:48.50498+00 5420 0003-100FWF#V5曲线 SPMX-20240815300567 \N \N \N 1 \N [{"file_id": "7810ed4a-92fb-452d-8ecb-6b8f2278736f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d9514e5a67d49869360a0c849cfa83f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d9514e5a67d49869360a0c849cfa83f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d9514e5a67d49869360a0c849cfa83f.jpg", "file_size": 17581, "is_delete": false, "file_type": 1, "original_file_name": "0003-100FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d9514e5a67d49869360a0c849cfa83f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d9514e5a67d49869360a0c849cfa83f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d9514e5a67d49869360a0c849cfa83f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d9514e5a67d49869360a0c849cfa83f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d9514e5a67d49869360a0c849cfa83f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GVBW8URErmmJkoXBUolaPJTsK5I=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.506234+00 2025-12-09 10:14:48.506239+00 5421 LZ1215#上身2号色 SPMX-20240815300563 \N \N \N 1 \N [{"file_id": "c6ecd13c-88f7-49e0-b418-7f8c3f46e77a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf5cc5d4cc1b4c31bade2380208ed023.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf5cc5d4cc1b4c31bade2380208ed023.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf5cc5d4cc1b4c31bade2380208ed023.jpg", "file_size": 17847, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5cc5d4cc1b4c31bade2380208ed023.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5cc5d4cc1b4c31bade2380208ed023.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5cc5d4cc1b4c31bade2380208ed023.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf5cc5d4cc1b4c31bade2380208ed023.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf5cc5d4cc1b4c31bade2380208ed023.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLMLC3KWBwWli0nDF29vRCTydFs=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.507496+00 2025-12-09 10:14:48.5075+00 5422 JS293#D版本匹布 SPMX-20240815300564 \N \N \N 1 \N [{"file_id": "1e11c2a2-689c-4c48-9dbe-be2bac94e3fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a58e6656e4f43f597689cd513cb9170.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a58e6656e4f43f597689cd513cb9170.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a58e6656e4f43f597689cd513cb9170.jpg", "file_size": 18045, "is_delete": false, "file_type": 1, "original_file_name": "JS293#D版本匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a58e6656e4f43f597689cd513cb9170.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a58e6656e4f43f597689cd513cb9170.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a58e6656e4f43f597689cd513cb9170.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a58e6656e4f43f597689cd513cb9170.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a58e6656e4f43f597689cd513cb9170.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4uukoT9SDt0uyE3NFqittUy0haE=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.508794+00 2025-12-09 10:14:48.508798+00 5423 HSH152FW#粉 SPMX-20240815300557 \N \N \N 1 \N [{"file_id": "1e15ea73-8134-45e4-957d-9c965ff49bd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e73f0ccae99444ba374fc335dce815e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e73f0ccae99444ba374fc335dce815e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e73f0ccae99444ba374fc335dce815e.jpg", "file_size": 14479, "is_delete": false, "file_type": 1, "original_file_name": "HSH152FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e73f0ccae99444ba374fc335dce815e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e73f0ccae99444ba374fc335dce815e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e73f0ccae99444ba374fc335dce815e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e73f0ccae99444ba374fc335dce815e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e73f0ccae99444ba374fc335dce815e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J08KZoTaBk_IVvD3uOyHoTlNr7Q=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.510041+00 2025-12-09 10:14:48.510045+00 5424 80076#白色裤子 SPMX-20240815300559 \N \N \N 1 \N [{"file_id": "f94107a8-759c-406d-b5b6-b556b59884fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b764ad3a9944f388ed8eb9abf97d79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b764ad3a9944f388ed8eb9abf97d79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b764ad3a9944f388ed8eb9abf97d79.jpg", "file_size": 16488, "is_delete": false, "file_type": 1, "original_file_name": "80076#白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b764ad3a9944f388ed8eb9abf97d79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b764ad3a9944f388ed8eb9abf97d79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b764ad3a9944f388ed8eb9abf97d79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b764ad3a9944f388ed8eb9abf97d79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b764ad3a9944f388ed8eb9abf97d79.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgq5qqQEMhr7IgOa_iZQWaitvr8=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.511306+00 2025-12-09 10:14:48.51131+00 5425 HSH153FW#白底 SPMX-20240815300568 \N \N \N 1 \N [{"file_id": "49b17dcd-b6d8-41d6-826e-f4aa93503c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg", "file_size": 16424, "is_delete": false, "file_type": 1, "original_file_name": "HSH153FW#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f02c8d115b7e4a0ca4efbdd3e7ef84ef.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zN5mRvxJK210sevVrecteRQ74g=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.512557+00 2025-12-09 10:14:48.512561+00 5426 23-2101#A5前后片3XL SPMX-20240815300561 \N \N \N 1 \N [{"file_id": "31828191-e514-42a6-a3c8-cf83d5969380", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af1bda2d4b4045128457fb783c3a6fa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af1bda2d4b4045128457fb783c3a6fa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af1bda2d4b4045128457fb783c3a6fa5.jpg", "file_size": 8215, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A5前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1bda2d4b4045128457fb783c3a6fa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1bda2d4b4045128457fb783c3a6fa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1bda2d4b4045128457fb783c3a6fa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af1bda2d4b4045128457fb783c3a6fa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af1bda2d4b4045128457fb783c3a6fa5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3yzLw3e37F6AljuyI3vgzbeGyQ=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.513859+00 2025-12-09 10:14:48.513864+00 5427 LHJ9260#25土黄下摆 SPMX-20240815300566 \N \N \N 1 \N [{"file_id": "bb18259f-9d6b-44b2-9076-b98ff369965c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad82c3f464aa4110b3f01f4c1a5fce38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad82c3f464aa4110b3f01f4c1a5fce38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad82c3f464aa4110b3f01f4c1a5fce38.jpg", "file_size": 11001, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#25土黄下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82c3f464aa4110b3f01f4c1a5fce38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82c3f464aa4110b3f01f4c1a5fce38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82c3f464aa4110b3f01f4c1a5fce38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad82c3f464aa4110b3f01f4c1a5fce38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad82c3f464aa4110b3f01f4c1a5fce38.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73X9IW7d_Eh73VhWsjwaxLrJdvI=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.515149+00 2025-12-09 10:14:48.515153+00 5428 FHXGPK-016-6 SPMX-20240815300558 \N \N \N 1 \N [{"file_id": "73271db6-b7e4-4e31-a2e0-76cd52b53eaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "564fac5ab6ed4d83b3ede0f28f24771a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "564fac5ab6ed4d83b3ede0f28f24771a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "564fac5ab6ed4d83b3ede0f28f24771a.jpg", "file_size": 36283, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-016-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564fac5ab6ed4d83b3ede0f28f24771a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564fac5ab6ed4d83b3ede0f28f24771a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564fac5ab6ed4d83b3ede0f28f24771a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/564fac5ab6ed4d83b3ede0f28f24771a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/564fac5ab6ed4d83b3ede0f28f24771a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GC3YfEFwlotql_Ud_s15SHJAF0M=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.516386+00 2025-12-09 10:14:48.51639+00 5429 DH20220781#L SPMX-20240815300562 \N \N \N 1 \N [{"file_id": "69c93b83-7b88-47d2-9b9f-db054450cafa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b7942d3fb044d068da2311f3d8974dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b7942d3fb044d068da2311f3d8974dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b7942d3fb044d068da2311f3d8974dd.jpg", "file_size": 11994, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7942d3fb044d068da2311f3d8974dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7942d3fb044d068da2311f3d8974dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7942d3fb044d068da2311f3d8974dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b7942d3fb044d068da2311f3d8974dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b7942d3fb044d068da2311f3d8974dd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JdA6w-TH-y7qK7HR_H1FEHEvAo4=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.517642+00 2025-12-09 10:14:48.517645+00 5430 1053#白底灰 SPMX-20240815300560 \N \N \N 1 \N [{"file_id": "fec8c8a7-fb7d-43f9-be03-89667d5e3732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef6573e003240df9806e22f1287ebfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef6573e003240df9806e22f1287ebfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef6573e003240df9806e22f1287ebfd.jpg", "file_size": 17641, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef6573e003240df9806e22f1287ebfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef6573e003240df9806e22f1287ebfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef6573e003240df9806e22f1287ebfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef6573e003240df9806e22f1287ebfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef6573e003240df9806e22f1287ebfd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sc0ez8NPK86nUdQFTg06_2xRYc4=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.518921+00 2025-12-09 10:14:48.518925+00 5431 23-2101#A5前后片4XL SPMX-20240815300571 \N \N \N 1 \N [{"file_id": "3065766f-e4e9-46f7-99fe-8e82182abdf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85949096fec444449861362eb05baa98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85949096fec444449861362eb05baa98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85949096fec444449861362eb05baa98.jpg", "file_size": 8948, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A5前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85949096fec444449861362eb05baa98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85949096fec444449861362eb05baa98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85949096fec444449861362eb05baa98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85949096fec444449861362eb05baa98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85949096fec444449861362eb05baa98.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uymFR8cpjD2PeDoJ0LRpemBiZao=", "createTime": "2024-08-15 14:42:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.520185+00 2025-12-09 10:14:48.520189+00 5432 LZ1215#上身4号色 SPMX-20240815300584 \N \N \N 1 \N [{"file_id": "8b400002-3c35-4e6e-859f-1cd822e2a404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd54cc5ed8c4f0885503a2084c321bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd54cc5ed8c4f0885503a2084c321bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd54cc5ed8c4f0885503a2084c321bd.jpg", "file_size": 17171, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd54cc5ed8c4f0885503a2084c321bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd54cc5ed8c4f0885503a2084c321bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd54cc5ed8c4f0885503a2084c321bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd54cc5ed8c4f0885503a2084c321bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd54cc5ed8c4f0885503a2084c321bd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-udDkCuXlCeSIDpJ9XFPvbyJFIw=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.521426+00 2025-12-09 10:14:48.52143+00 5433 DH20220781#L橙 SPMX-20240815300574 \N \N \N 1 \N [{"file_id": "276c68a7-b05a-489b-9824-a9b5caeb348d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be5fb9f7ca0b4879b766449520eaf12b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be5fb9f7ca0b4879b766449520eaf12b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be5fb9f7ca0b4879b766449520eaf12b.jpg", "file_size": 11683, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#L橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5fb9f7ca0b4879b766449520eaf12b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5fb9f7ca0b4879b766449520eaf12b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be5fb9f7ca0b4879b766449520eaf12b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be5fb9f7ca0b4879b766449520eaf12b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be5fb9f7ca0b4879b766449520eaf12b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hGC1YbAad7PBJRUgLPntXNdAy4I=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.522684+00 2025-12-09 10:14:48.522688+00 5434 1053#白底粉 SPMX-20240815300581 \N \N \N 1 \N [{"file_id": "0e138a58-22cd-4765-a3f2-2bf991a7a1fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0cacabb04174533a51575789aa868ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0cacabb04174533a51575789aa868ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0cacabb04174533a51575789aa868ad.jpg", "file_size": 18619, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0cacabb04174533a51575789aa868ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0cacabb04174533a51575789aa868ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0cacabb04174533a51575789aa868ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0cacabb04174533a51575789aa868ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0cacabb04174533a51575789aa868ad.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LjI8wQCA4CiBsQEjcB9qBENHF48=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.523988+00 2025-12-09 10:14:48.523992+00 5435 LZ1215#上身3号色 SPMX-20240815300573 \N \N \N 1 \N [{"file_id": "1c9a4ab7-77c2-46df-8223-799a50318cac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "715412c435044b87917ff06c28485980.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "715412c435044b87917ff06c28485980.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "715412c435044b87917ff06c28485980.jpg", "file_size": 16701, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715412c435044b87917ff06c28485980.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715412c435044b87917ff06c28485980.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715412c435044b87917ff06c28485980.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/715412c435044b87917ff06c28485980.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/715412c435044b87917ff06c28485980.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKVh5va1qrKYztK2IBMrl_1Pw9k=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.525255+00 2025-12-09 10:14:48.52526+00 5436 C261FWE#腰带 VS-D3 SPMX-20240815300586 \N \N \N 1 \N [{"file_id": "168a046d-0ce5-4e15-bbf9-206d126c9e19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b1a117a359445f89a7d52985946035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b1a117a359445f89a7d52985946035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b1a117a359445f89a7d52985946035.jpg", "file_size": 15316, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#腰带 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b1a117a359445f89a7d52985946035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b1a117a359445f89a7d52985946035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b1a117a359445f89a7d52985946035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b1a117a359445f89a7d52985946035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b1a117a359445f89a7d52985946035.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5TZ2d0wMpvy274Rv89aPYkVIHI=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.526514+00 2025-12-09 10:14:48.526518+00 5437 LHJ9260#25土黄袖子 SPMX-20240815300580 \N \N \N 1 \N [{"file_id": "45a5c54e-bb4d-49e1-b094-4f4f606f2c6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f142d41d690466785ce837c1d77557b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f142d41d690466785ce837c1d77557b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f142d41d690466785ce837c1d77557b.jpg", "file_size": 9998, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#25土黄袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f142d41d690466785ce837c1d77557b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f142d41d690466785ce837c1d77557b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f142d41d690466785ce837c1d77557b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f142d41d690466785ce837c1d77557b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f142d41d690466785ce837c1d77557b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4pIsfU0JJH_vAqLxoXyP9KBHkbk=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.527774+00 2025-12-09 10:14:48.527778+00 5438 JS323258#WJC22 SPMX-20240815300579 \N \N \N 1 \N [{"file_id": "ad1443c6-ec42-4fe2-9464-b2991d6d630a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg", "file_size": 12979, "is_delete": false, "file_type": 1, "original_file_name": "JS323258#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dac2b1ab8e64c0b87185f6e1ec2a3a9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w0dQNw9H-eaTq9dd1aO0AYkXIC8=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.529044+00 2025-12-09 10:14:48.529049+00 5439 23-2101#A5袖子3XL SPMX-20240815300582 \N \N \N 1 \N [{"file_id": "ec089f8e-1018-40ec-9e9a-d93eb8665435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72b594ca72245dd839a6661b45c7551.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72b594ca72245dd839a6661b45c7551.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72b594ca72245dd839a6661b45c7551.jpg", "file_size": 8072, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A5袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72b594ca72245dd839a6661b45c7551.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72b594ca72245dd839a6661b45c7551.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72b594ca72245dd839a6661b45c7551.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72b594ca72245dd839a6661b45c7551.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72b594ca72245dd839a6661b45c7551.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwQqrJ0d6Ev9jcmITETt7C71Q5M=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.530286+00 2025-12-09 10:14:48.53029+00 5440 C261FWE#XL VS-D3 SPMX-20240815300575 \N \N \N 1 \N [{"file_id": "fac857bc-623b-4024-8afb-fe07901307db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f15b08e4d94e5cbb08d80bcf32972d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f15b08e4d94e5cbb08d80bcf32972d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f15b08e4d94e5cbb08d80bcf32972d.jpg", "file_size": 14852, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f15b08e4d94e5cbb08d80bcf32972d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f15b08e4d94e5cbb08d80bcf32972d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f15b08e4d94e5cbb08d80bcf32972d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f15b08e4d94e5cbb08d80bcf32972d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f15b08e4d94e5cbb08d80bcf32972d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPIX_z7ccbDInhSBRb8OZhg4Lcw=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.531557+00 2025-12-09 10:14:48.531561+00 5441 HSH153FW#粉底 SPMX-20240815300576 \N \N \N 1 \N [{"file_id": "b35a7220-e13d-472d-846a-3a1cb0382bac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2305252244442d3bca1dfd2b27e3536.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2305252244442d3bca1dfd2b27e3536.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2305252244442d3bca1dfd2b27e3536.jpg", "file_size": 15040, "is_delete": false, "file_type": 1, "original_file_name": "HSH153FW#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2305252244442d3bca1dfd2b27e3536.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2305252244442d3bca1dfd2b27e3536.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2305252244442d3bca1dfd2b27e3536.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2305252244442d3bca1dfd2b27e3536.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2305252244442d3bca1dfd2b27e3536.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7SsbXcuhOcjf3O2vQODqS2s63Tw=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.532815+00 2025-12-09 10:14:48.532819+00 5442 FHXGPK-017-1 SPMX-20240815300578 \N \N \N 1 \N [{"file_id": "d8ee7fa7-1dba-4aba-a217-58b487f2f94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb7ddc2ca9954e9eba02accc269dfc03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb7ddc2ca9954e9eba02accc269dfc03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb7ddc2ca9954e9eba02accc269dfc03.jpg", "file_size": 33318, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-017-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7ddc2ca9954e9eba02accc269dfc03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7ddc2ca9954e9eba02accc269dfc03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7ddc2ca9954e9eba02accc269dfc03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb7ddc2ca9954e9eba02accc269dfc03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb7ddc2ca9954e9eba02accc269dfc03.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxfGCYJPW6ObtQB60N8htdA22nE=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.534113+00 2025-12-09 10:14:48.534118+00 5443 DH20220781#L白 SPMX-20240815300585 \N \N \N 1 \N [{"file_id": "2f2df438-f4f6-45f2-b7cf-32c2c65793ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0022218dfa2a494aba21ec39de971087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0022218dfa2a494aba21ec39de971087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0022218dfa2a494aba21ec39de971087.jpg", "file_size": 11149, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#L白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0022218dfa2a494aba21ec39de971087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0022218dfa2a494aba21ec39de971087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0022218dfa2a494aba21ec39de971087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0022218dfa2a494aba21ec39de971087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0022218dfa2a494aba21ec39de971087.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvqdWKomRWd9vMz2VbwocbOE4vI=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.535393+00 2025-12-09 10:14:48.535397+00 5444 0003-101FWF#V5曲线 SPMX-20240815300577 \N \N \N 1 \N [{"file_id": "b912dd44-32d6-40a3-99fb-1246573adc1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5971a801e32416c9dd5cc1643be2967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5971a801e32416c9dd5cc1643be2967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5971a801e32416c9dd5cc1643be2967.jpg", "file_size": 20528, "is_delete": false, "file_type": 1, "original_file_name": "0003-101FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5971a801e32416c9dd5cc1643be2967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5971a801e32416c9dd5cc1643be2967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5971a801e32416c9dd5cc1643be2967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5971a801e32416c9dd5cc1643be2967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5971a801e32416c9dd5cc1643be2967.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-RuQicIUM03PQKRt5NDLOwz2-4=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.536654+00 2025-12-09 10:14:48.536658+00 5445 80076#黑色上衣 SPMX-20240815300583 \N \N \N 1 \N [{"file_id": "df021fcc-2cd6-4eca-8120-bc4d71893f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1a0b823bf1946699bf046b180bf61ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1a0b823bf1946699bf046b180bf61ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1a0b823bf1946699bf046b180bf61ca.jpg", "file_size": 18418, "is_delete": false, "file_type": 1, "original_file_name": "80076#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1a0b823bf1946699bf046b180bf61ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1a0b823bf1946699bf046b180bf61ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1a0b823bf1946699bf046b180bf61ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1a0b823bf1946699bf046b180bf61ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1a0b823bf1946699bf046b180bf61ca.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFGQUy5CS05QSf59ylPaAtE9cbA=", "createTime": "2024-08-15 14:42:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.537987+00 2025-12-09 10:14:48.537991+00 5446 23-2101#A5袖子4XL SPMX-20240815300593 \N \N \N 1 \N [{"file_id": "c821cd5a-4f7a-4c76-b89f-ca424e59e0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b1e038297aa4eb88298964b84a62745.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b1e038297aa4eb88298964b84a62745.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b1e038297aa4eb88298964b84a62745.jpg", "file_size": 7410, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A5袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1e038297aa4eb88298964b84a62745.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1e038297aa4eb88298964b84a62745.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1e038297aa4eb88298964b84a62745.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b1e038297aa4eb88298964b84a62745.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b1e038297aa4eb88298964b84a62745.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ij0kiU6-2qcii6iQ5fi1o66P61I=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.539316+00 2025-12-09 10:14:48.539321+00 5447 DH20220781#L红 SPMX-20240815300596 \N \N \N 1 \N [{"file_id": "26f284b2-4f13-4121-b474-37cd94600398", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b456789923247b3ba6d2e4f22a6aa99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b456789923247b3ba6d2e4f22a6aa99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b456789923247b3ba6d2e4f22a6aa99.jpg", "file_size": 11143, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#L红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b456789923247b3ba6d2e4f22a6aa99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b456789923247b3ba6d2e4f22a6aa99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b456789923247b3ba6d2e4f22a6aa99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b456789923247b3ba6d2e4f22a6aa99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b456789923247b3ba6d2e4f22a6aa99.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9rzLUDiLvJu7J4ad_5GXX4afxI=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.540596+00 2025-12-09 10:14:48.5406+00 5448 80076#黑色裤子 SPMX-20240815300595 \N \N \N 1 \N [{"file_id": "e96cbe47-11f6-4b5e-a4d8-3302582aa988", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00e4eaaeb75e44458d2db19d50734d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00e4eaaeb75e44458d2db19d50734d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00e4eaaeb75e44458d2db19d50734d3a.jpg", "file_size": 17888, "is_delete": false, "file_type": 1, "original_file_name": "80076#黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e4eaaeb75e44458d2db19d50734d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e4eaaeb75e44458d2db19d50734d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e4eaaeb75e44458d2db19d50734d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00e4eaaeb75e44458d2db19d50734d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00e4eaaeb75e44458d2db19d50734d3a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCv9dsBZnv4N0s3rH-TsghXhjMA=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.541902+00 2025-12-09 10:14:48.541906+00 5449 C261FWE#裤腰门筒 VS-D3 SPMX-20240815300598 \N \N \N 1 \N [{"file_id": "2e1e7879-f2ab-4669-9a4a-d05b31af5059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdd80c8373534f30adf585a58091201a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdd80c8373534f30adf585a58091201a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdd80c8373534f30adf585a58091201a.jpg", "file_size": 13292, "is_delete": false, "file_type": 1, "original_file_name": "C261FWE#裤腰门筒 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd80c8373534f30adf585a58091201a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd80c8373534f30adf585a58091201a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd80c8373534f30adf585a58091201a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdd80c8373534f30adf585a58091201a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdd80c8373534f30adf585a58091201a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfWD4dLErK2LpRYer5LZ1ATZN5k=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.543241+00 2025-12-09 10:14:48.543247+00 5450 1053#白底粉匹布 SPMX-20240815300591 \N \N \N 1 \N [{"file_id": "55e638ae-b038-414f-ab9b-0c7a4b0eac53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e45e2124294bd0befdb95e804c70cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e45e2124294bd0befdb95e804c70cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e45e2124294bd0befdb95e804c70cd.jpg", "file_size": 8081, "is_delete": false, "file_type": 1, "original_file_name": "1053#白底粉匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e45e2124294bd0befdb95e804c70cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e45e2124294bd0befdb95e804c70cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e45e2124294bd0befdb95e804c70cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e45e2124294bd0befdb95e804c70cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e45e2124294bd0befdb95e804c70cd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CaxMvj2VKY5LuDY1X5vyVQRLdcU=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.544747+00 2025-12-09 10:14:48.544752+00 5451 LHJ9260#37梅红下摆 SPMX-20240815300592 \N \N \N 1 \N [{"file_id": "0a95e8ba-d43f-40d5-9934-66ed0bc8cfbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74b1ac73bfc9450986734e16ad7ba8ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74b1ac73bfc9450986734e16ad7ba8ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74b1ac73bfc9450986734e16ad7ba8ee.jpg", "file_size": 10723, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#37梅红下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b1ac73bfc9450986734e16ad7ba8ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b1ac73bfc9450986734e16ad7ba8ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b1ac73bfc9450986734e16ad7ba8ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74b1ac73bfc9450986734e16ad7ba8ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74b1ac73bfc9450986734e16ad7ba8ee.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKWYougpPCJUeCdBEhIEZi2NHqM=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.546213+00 2025-12-09 10:14:48.546217+00 5452 JS563#粉色L SPMX-20240815300590 \N \N \N 1 \N [{"file_id": "4349bf96-ca0c-4ed4-85c5-181e628f583c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "440e3b2f017c41b98686b8b06a88446a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "440e3b2f017c41b98686b8b06a88446a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "440e3b2f017c41b98686b8b06a88446a.jpg", "file_size": 17769, "is_delete": false, "file_type": 1, "original_file_name": "JS563#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e3b2f017c41b98686b8b06a88446a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e3b2f017c41b98686b8b06a88446a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e3b2f017c41b98686b8b06a88446a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/440e3b2f017c41b98686b8b06a88446a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/440e3b2f017c41b98686b8b06a88446a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2_i_m7O_3IljE6i04u-jg1RAp8=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.547672+00 2025-12-09 10:14:48.547676+00 5453 0003-103FWF#匹布 SPMX-20240815300597 \N \N \N 1 \N [{"file_id": "bd75cfde-007e-4b15-a122-6284ef224f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e16658461d4443ca9e4efafa4bc73b01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e16658461d4443ca9e4efafa4bc73b01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e16658461d4443ca9e4efafa4bc73b01.jpg", "file_size": 9584, "is_delete": false, "file_type": 1, "original_file_name": "0003-103FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16658461d4443ca9e4efafa4bc73b01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16658461d4443ca9e4efafa4bc73b01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16658461d4443ca9e4efafa4bc73b01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e16658461d4443ca9e4efafa4bc73b01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e16658461d4443ca9e4efafa4bc73b01.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOsTrnNOAqPxj-Bc0dtvMjf7YlU=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.549436+00 2025-12-09 10:14:48.549441+00 5454 FHXGPK-017-3 SPMX-20240815300600 \N \N \N 1 \N [{"file_id": "01b22c81-e3a4-4233-9879-953e2d25973d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7405b8228425462d87046d4cce42edee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7405b8228425462d87046d4cce42edee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7405b8228425462d87046d4cce42edee.jpg", "file_size": 31905, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-017-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7405b8228425462d87046d4cce42edee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7405b8228425462d87046d4cce42edee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7405b8228425462d87046d4cce42edee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7405b8228425462d87046d4cce42edee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7405b8228425462d87046d4cce42edee.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjGWkJUj3NITQ7sR_LSfEcEgBl0=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.550939+00 2025-12-09 10:14:48.550943+00 5455 1053#粉底宝蓝 SPMX-20240815300602 \N \N \N 1 \N [{"file_id": "c31047e4-3432-41e7-b525-a6f34e3befd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cc314044aa74d8ca46c5fb663517b4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cc314044aa74d8ca46c5fb663517b4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cc314044aa74d8ca46c5fb663517b4c.jpg", "file_size": 22249, "is_delete": false, "file_type": 1, "original_file_name": "1053#粉底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc314044aa74d8ca46c5fb663517b4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc314044aa74d8ca46c5fb663517b4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc314044aa74d8ca46c5fb663517b4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cc314044aa74d8ca46c5fb663517b4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cc314044aa74d8ca46c5fb663517b4c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ROUu_PwSf_6CNxAsWymbdaITYg=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.552388+00 2025-12-09 10:14:48.552393+00 5456 FHXGPK-017-2 SPMX-20240815300589 \N \N \N 1 \N [{"file_id": "d3a094c5-c39c-4d93-8b0f-4777ec8595d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880f1615231f494f943a861617cefa0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880f1615231f494f943a861617cefa0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880f1615231f494f943a861617cefa0f.jpg", "file_size": 27409, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-017-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880f1615231f494f943a861617cefa0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880f1615231f494f943a861617cefa0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880f1615231f494f943a861617cefa0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880f1615231f494f943a861617cefa0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880f1615231f494f943a861617cefa0f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gT9xuDAquj22rHamo2eOm-jBHfY=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.553847+00 2025-12-09 10:14:48.553852+00 5457 HSH153FW#黑底 SPMX-20240815300599 \N \N \N 1 \N [{"file_id": "64b1ab32-0b58-4bd9-8a33-0afec7e4e8a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da062c395fd84cf9b5df7ab91b12c1d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da062c395fd84cf9b5df7ab91b12c1d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da062c395fd84cf9b5df7ab91b12c1d1.jpg", "file_size": 22511, "is_delete": false, "file_type": 1, "original_file_name": "HSH153FW#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da062c395fd84cf9b5df7ab91b12c1d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da062c395fd84cf9b5df7ab91b12c1d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da062c395fd84cf9b5df7ab91b12c1d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da062c395fd84cf9b5df7ab91b12c1d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da062c395fd84cf9b5df7ab91b12c1d1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:suVevw0afrlyHMqYjx0KCxkUsP4=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.561445+00 2025-12-09 10:14:48.56145+00 5462 HSH153FW#蓝底 SPMX-20240815300588 \N \N \N 1 \N [{"file_id": "578eb6fa-f03c-4726-a2b0-5182f4fbbe5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "143342aa578a43bca4f42ad862c98031.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "143342aa578a43bca4f42ad862c98031.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "143342aa578a43bca4f42ad862c98031.jpg", "file_size": 14584, "is_delete": false, "file_type": 1, "original_file_name": "HSH153FW#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143342aa578a43bca4f42ad862c98031.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143342aa578a43bca4f42ad862c98031.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143342aa578a43bca4f42ad862c98031.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/143342aa578a43bca4f42ad862c98031.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/143342aa578a43bca4f42ad862c98031.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yc66Q7ajVMvGCbJ-0l_nH7H35l8=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.55531+00 2025-12-09 10:14:48.555315+00 5458 LZ1215#下身1号色 SPMX-20240815300594 \N \N \N 1 \N [{"file_id": "4fc33a18-0f9c-469b-b890-3e849c20b9e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7e07545b43e462599a4ffb8017ab3a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7e07545b43e462599a4ffb8017ab3a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7e07545b43e462599a4ffb8017ab3a8.jpg", "file_size": 18135, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7e07545b43e462599a4ffb8017ab3a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7e07545b43e462599a4ffb8017ab3a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7e07545b43e462599a4ffb8017ab3a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7e07545b43e462599a4ffb8017ab3a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7e07545b43e462599a4ffb8017ab3a8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dEuLsXQMiwHZ8xG2jjYAjo_6fxM=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.556793+00 2025-12-09 10:14:48.556798+00 5459 JS563#粉色M SPMX-20240815300601 \N \N \N 1 \N [{"file_id": "63d52a4d-1dfe-4694-ad73-c02f3c922535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4ee4344afc043afad89142d3f81478d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4ee4344afc043afad89142d3f81478d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4ee4344afc043afad89142d3f81478d.jpg", "file_size": 18798, "is_delete": false, "file_type": 1, "original_file_name": "JS563#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ee4344afc043afad89142d3f81478d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ee4344afc043afad89142d3f81478d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ee4344afc043afad89142d3f81478d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4ee4344afc043afad89142d3f81478d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4ee4344afc043afad89142d3f81478d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQIeAuGrxK5zYugeX5bFRck0rvk=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.558504+00 2025-12-09 10:14:48.558509+00 5460 23-2101#A5领子通用 SPMX-20240815300603 \N \N \N 1 \N [{"file_id": "d842ffd3-d699-4103-a5cd-f587080a143b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9946c05f10e2436bb5646f17776fcd12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9946c05f10e2436bb5646f17776fcd12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9946c05f10e2436bb5646f17776fcd12.jpg", "file_size": 7805, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A5领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946c05f10e2436bb5646f17776fcd12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946c05f10e2436bb5646f17776fcd12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946c05f10e2436bb5646f17776fcd12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9946c05f10e2436bb5646f17776fcd12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9946c05f10e2436bb5646f17776fcd12.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIkwHA6kOO6SHDLkUAU_duN_YW8=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.559974+00 2025-12-09 10:14:48.559979+00 5461 0003-102FWF#V5曲线 SPMX-20240815300587 \N \N \N 1 \N [{"file_id": "dceeb0f5-1f71-4b0b-8d42-f741ba62edd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "479dfa06e5fe4f1e85ffe26f65d343f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "479dfa06e5fe4f1e85ffe26f65d343f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "479dfa06e5fe4f1e85ffe26f65d343f5.jpg", "file_size": 14954, "is_delete": false, "file_type": 1, "original_file_name": "0003-102FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479dfa06e5fe4f1e85ffe26f65d343f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479dfa06e5fe4f1e85ffe26f65d343f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479dfa06e5fe4f1e85ffe26f65d343f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/479dfa06e5fe4f1e85ffe26f65d343f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/479dfa06e5fe4f1e85ffe26f65d343f5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYVASCHOBBI2pw11ojynNzxfjrU=", "createTime": "2024-08-15 14:42:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.562914+00 2025-12-09 10:14:48.562918+00 5463 0003-103FWF#爱心 SPMX-20240815300608 \N \N \N 1 \N [{"file_id": "46ed2fa3-0313-477e-83e0-9b92f1f39cd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "239f908457044f5abcb280eb6ec9247d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "239f908457044f5abcb280eb6ec9247d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "239f908457044f5abcb280eb6ec9247d.jpg", "file_size": 14086, "is_delete": false, "file_type": 1, "original_file_name": "0003-103FWF#爱心.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239f908457044f5abcb280eb6ec9247d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239f908457044f5abcb280eb6ec9247d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239f908457044f5abcb280eb6ec9247d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/239f908457044f5abcb280eb6ec9247d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/239f908457044f5abcb280eb6ec9247d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WZZN0_w5yqodbiBEzCjJBCa7-h0=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.56439+00 2025-12-09 10:14:48.564395+00 5464 1053#粉底宝蓝匹布 SPMX-20240815300613 \N \N \N 1 \N [{"file_id": "85cce047-26e7-47f6-adf4-47c98c4acfff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71505ed077a445d3b26c4a9d83bee593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71505ed077a445d3b26c4a9d83bee593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71505ed077a445d3b26c4a9d83bee593.jpg", "file_size": 10568, "is_delete": false, "file_type": 1, "original_file_name": "1053#粉底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71505ed077a445d3b26c4a9d83bee593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71505ed077a445d3b26c4a9d83bee593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71505ed077a445d3b26c4a9d83bee593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71505ed077a445d3b26c4a9d83bee593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71505ed077a445d3b26c4a9d83bee593.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-xCEkx3O8_t81H2aslAPFsdzqM=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.56587+00 2025-12-09 10:14:48.565875+00 5465 80077#前后幅 SPMX-20240815300606 \N \N \N 1 \N [{"file_id": "d8b9a1ad-3777-4ca9-bba5-f98c03f9ee38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7024e8d24e254dedb384b96e5feec053.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7024e8d24e254dedb384b96e5feec053.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7024e8d24e254dedb384b96e5feec053.jpg", "file_size": 17632, "is_delete": false, "file_type": 1, "original_file_name": "80077#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7024e8d24e254dedb384b96e5feec053.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7024e8d24e254dedb384b96e5feec053.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7024e8d24e254dedb384b96e5feec053.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7024e8d24e254dedb384b96e5feec053.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7024e8d24e254dedb384b96e5feec053.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlDTN8u41zDkSaxKzosdSk5kwtw=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.567559+00 2025-12-09 10:14:48.567565+00 5466 DH20220781#M SPMX-20240815300605 \N \N \N 1 \N [{"file_id": "51082c8c-0283-469a-9841-9fb2150b0d5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af1e016e9119451084aebc3043458edd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af1e016e9119451084aebc3043458edd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af1e016e9119451084aebc3043458edd.jpg", "file_size": 12029, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1e016e9119451084aebc3043458edd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1e016e9119451084aebc3043458edd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1e016e9119451084aebc3043458edd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af1e016e9119451084aebc3043458edd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af1e016e9119451084aebc3043458edd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OB1w1im9wRrJMjTiHv-VZPuTbwY=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.569014+00 2025-12-09 10:14:48.569019+00 5467 JS563#粉色S SPMX-20240815300610 \N \N \N 1 \N [{"file_id": "e29cbab7-5d15-4c79-b815-c3df499e373d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a9bca8e09ff434ba51b6fdddd88a346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a9bca8e09ff434ba51b6fdddd88a346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a9bca8e09ff434ba51b6fdddd88a346.jpg", "file_size": 18447, "is_delete": false, "file_type": 1, "original_file_name": "JS563#粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9bca8e09ff434ba51b6fdddd88a346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9bca8e09ff434ba51b6fdddd88a346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9bca8e09ff434ba51b6fdddd88a346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a9bca8e09ff434ba51b6fdddd88a346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a9bca8e09ff434ba51b6fdddd88a346.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3AGI9L1Y7G1LufxQo9Edw1Wdn4w=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.570491+00 2025-12-09 10:14:48.570496+00 5468 C262#橙色 SPMX-20240815300611 \N \N \N 1 \N [{"file_id": "45221a05-f931-49b2-a44b-611f352a9ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20407c40edfa49ce80f5a19e16aa4f8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20407c40edfa49ce80f5a19e16aa4f8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20407c40edfa49ce80f5a19e16aa4f8f.jpg", "file_size": 64159, "is_delete": false, "file_type": 1, "original_file_name": "C262#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20407c40edfa49ce80f5a19e16aa4f8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20407c40edfa49ce80f5a19e16aa4f8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20407c40edfa49ce80f5a19e16aa4f8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20407c40edfa49ce80f5a19e16aa4f8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20407c40edfa49ce80f5a19e16aa4f8f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsqS-LV5r74nw1cVJnK4oc9-soI=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.571952+00 2025-12-09 10:14:48.571957+00 5469 HSH154FW#墨绿 SPMX-20240815300609 \N \N \N 1 \N [{"file_id": "9935e7eb-0752-4aba-8a07-43db1debcc59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4a037e3cabb4cd987e5ff7067aaf94d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4a037e3cabb4cd987e5ff7067aaf94d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4a037e3cabb4cd987e5ff7067aaf94d.jpg", "file_size": 22523, "is_delete": false, "file_type": 1, "original_file_name": "HSH154FW#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a037e3cabb4cd987e5ff7067aaf94d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a037e3cabb4cd987e5ff7067aaf94d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a037e3cabb4cd987e5ff7067aaf94d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4a037e3cabb4cd987e5ff7067aaf94d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4a037e3cabb4cd987e5ff7067aaf94d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDqcOgoerTl4r4ksOkWWfcHSMeI=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.573404+00 2025-12-09 10:14:48.573409+00 5470 LHJ9260#37梅红袖子 SPMX-20240815300604 \N \N \N 1 \N [{"file_id": "9e722668-8e33-4ee6-b34d-e8278126ef2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192d2baed9d9429f84b7d9429ef000e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192d2baed9d9429f84b7d9429ef000e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192d2baed9d9429f84b7d9429ef000e9.jpg", "file_size": 9941, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#37梅红袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d2baed9d9429f84b7d9429ef000e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d2baed9d9429f84b7d9429ef000e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d2baed9d9429f84b7d9429ef000e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192d2baed9d9429f84b7d9429ef000e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192d2baed9d9429f84b7d9429ef000e9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZUcrzvIXmxTPrPj_0Tw0-V9OyY=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.574727+00 2025-12-09 10:14:48.574731+00 5471 FHXGPK-017-4 SPMX-20240815300612 \N \N \N 1 \N [{"file_id": "2fd1749f-171e-44cf-8f1b-1d2d1e5f4340", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg", "file_size": 31580, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-017-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9edcc4c2e15f41a58a0a6fe8e2a8aa6d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXtEix-ZyhbVeR1Ynuy2Oa8RKDI=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.576002+00 2025-12-09 10:14:48.576006+00 5472 LHJ9260#5彩兰下摆 SPMX-20240815300615 \N \N \N 1 \N [{"file_id": "99fa7313-479f-4561-8148-b1f7865c3810", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "853fd6239d9147ed9ad9233ea6ea9402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "853fd6239d9147ed9ad9233ea6ea9402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "853fd6239d9147ed9ad9233ea6ea9402.jpg", "file_size": 15674, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#5彩兰下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853fd6239d9147ed9ad9233ea6ea9402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853fd6239d9147ed9ad9233ea6ea9402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853fd6239d9147ed9ad9233ea6ea9402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/853fd6239d9147ed9ad9233ea6ea9402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/853fd6239d9147ed9ad9233ea6ea9402.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9prKE4zrCCwBPycgtqyv5tPkkpQ=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.577297+00 2025-12-09 10:14:48.577301+00 5473 80077#袖子匹布 SPMX-20240815300617 \N \N \N 1 \N [{"file_id": "b10ad5ef-0f0b-4bd8-8e51-b002703fd7aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ab60b2254bd4704b5c87e80d90b53e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ab60b2254bd4704b5c87e80d90b53e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ab60b2254bd4704b5c87e80d90b53e8.jpg", "file_size": 9752, "is_delete": false, "file_type": 1, "original_file_name": "80077#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab60b2254bd4704b5c87e80d90b53e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab60b2254bd4704b5c87e80d90b53e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab60b2254bd4704b5c87e80d90b53e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ab60b2254bd4704b5c87e80d90b53e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ab60b2254bd4704b5c87e80d90b53e8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4znygW0tDBC8sEsoamZXXtlTsis=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.578563+00 2025-12-09 10:14:48.578567+00 5474 DH20220781#M橙 SPMX-20240815300616 \N \N \N 1 \N [{"file_id": "5a426abf-b79c-40cb-bee3-2405aa600bca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f25cc8cc8faa4e6b9a2397f3d625e98b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f25cc8cc8faa4e6b9a2397f3d625e98b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f25cc8cc8faa4e6b9a2397f3d625e98b.jpg", "file_size": 11967, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#M橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25cc8cc8faa4e6b9a2397f3d625e98b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25cc8cc8faa4e6b9a2397f3d625e98b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25cc8cc8faa4e6b9a2397f3d625e98b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f25cc8cc8faa4e6b9a2397f3d625e98b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f25cc8cc8faa4e6b9a2397f3d625e98b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OYlkUmqUrT4Np-T--Cfjz6QHH4=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.579856+00 2025-12-09 10:14:48.57986+00 5475 LZ1215#下身2号色 SPMX-20240815300607 \N \N \N 1 \N [{"file_id": "99706212-318e-40a3-ba63-3b3457cc3118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg", "file_size": 19291, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ef8bc4f02ad41719e6b0c7e9b4fd531.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fR5GqSMNXkrNTPIj0RkwrgbNs4=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.581128+00 2025-12-09 10:14:48.581132+00 5476 23-2101#A6前后片3XL SPMX-20240815300614 \N \N \N 1 \N [{"file_id": "627e0a7a-f50b-4b9f-93c9-93c8477df539", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87f44882afe84c1e83119df5387df11c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87f44882afe84c1e83119df5387df11c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87f44882afe84c1e83119df5387df11c.jpg", "file_size": 11478, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A6前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f44882afe84c1e83119df5387df11c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f44882afe84c1e83119df5387df11c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f44882afe84c1e83119df5387df11c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87f44882afe84c1e83119df5387df11c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87f44882afe84c1e83119df5387df11c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcK8O5mcNJgjxxhJ_NadY7Exnqw=", "createTime": "2024-08-15 14:42:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.58257+00 2025-12-09 10:14:48.582575+00 5477 C262#玫红底白色 SPMX-20240815300622 \N \N \N 1 \N [{"file_id": "685863e3-d138-4ca7-b3be-b453f31e0c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faa335694a0c4d00bcc61f2d5d985dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faa335694a0c4d00bcc61f2d5d985dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faa335694a0c4d00bcc61f2d5d985dd9.jpg", "file_size": 60852, "is_delete": false, "file_type": 1, "original_file_name": "C262#玫红底白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa335694a0c4d00bcc61f2d5d985dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa335694a0c4d00bcc61f2d5d985dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa335694a0c4d00bcc61f2d5d985dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faa335694a0c4d00bcc61f2d5d985dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faa335694a0c4d00bcc61f2d5d985dd9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4iCCxdFRpz3yetoWMC2Ul_dcxMo=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.584024+00 2025-12-09 10:14:48.584028+00 5478 80078#前后幅 SPMX-20240815300627 \N \N \N 1 \N [{"file_id": "fa7c6df9-661b-4b17-98f3-dbc84164adf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24263d1d3182461289f774bb14a20fc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24263d1d3182461289f774bb14a20fc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24263d1d3182461289f774bb14a20fc5.jpg", "file_size": 20507, "is_delete": false, "file_type": 1, "original_file_name": "80078#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24263d1d3182461289f774bb14a20fc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24263d1d3182461289f774bb14a20fc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24263d1d3182461289f774bb14a20fc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24263d1d3182461289f774bb14a20fc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24263d1d3182461289f774bb14a20fc5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wU9mdcCIxXDorBKJJqxSU_Vz_F0=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.585296+00 2025-12-09 10:14:48.5853+00 5479 HSH154FW#粉色 SPMX-20240815300630 \N \N \N 1 \N [{"file_id": "29a726e7-7671-4ca5-9428-5a777911f12a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg", "file_size": 12662, "is_delete": false, "file_type": 1, "original_file_name": "HSH154FW#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf3e6ff3cb2e478a9ce8b0897bc59c2a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enK1TX2GqiLzjtLpcVeJaStwTI4=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.586565+00 2025-12-09 10:14:48.58657+00 5480 0003-104FWF#红色 SPMX-20240815300631 \N \N \N 1 \N [{"file_id": "3de391c9-9008-4a09-ad16-0d7188304f94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0ac10227a0f4071bc3b315ea2ecb7f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0ac10227a0f4071bc3b315ea2ecb7f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0ac10227a0f4071bc3b315ea2ecb7f8.jpg", "file_size": 22317, "is_delete": false, "file_type": 1, "original_file_name": "0003-104FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ac10227a0f4071bc3b315ea2ecb7f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ac10227a0f4071bc3b315ea2ecb7f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ac10227a0f4071bc3b315ea2ecb7f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0ac10227a0f4071bc3b315ea2ecb7f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0ac10227a0f4071bc3b315ea2ecb7f8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRP72byp0JaQSs624n04UFF_2N4=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.587946+00 2025-12-09 10:14:48.587951+00 5481 0003-104# SPMX-20240815300620 \N \N \N 1 \N [{"file_id": "d83050b7-b943-455d-ac3e-e6b828030fc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50dc6f6fdf2e4ed0a1e89a252f89a025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50dc6f6fdf2e4ed0a1e89a252f89a025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50dc6f6fdf2e4ed0a1e89a252f89a025.jpg", "file_size": 18342, "is_delete": false, "file_type": 1, "original_file_name": "0003-104#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dc6f6fdf2e4ed0a1e89a252f89a025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dc6f6fdf2e4ed0a1e89a252f89a025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dc6f6fdf2e4ed0a1e89a252f89a025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50dc6f6fdf2e4ed0a1e89a252f89a025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50dc6f6fdf2e4ed0a1e89a252f89a025.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:963V4nOGIImk7ALXNoi-wI7cWzA=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.589225+00 2025-12-09 10:14:48.589229+00 5482 HSH154FW#宝蓝色 SPMX-20240815300619 \N \N \N 1 \N [{"file_id": "ba875a4c-f882-4bc2-816e-6fbf244593f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f440e5198a34f6a8d8ae9e12291c314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f440e5198a34f6a8d8ae9e12291c314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f440e5198a34f6a8d8ae9e12291c314.jpg", "file_size": 26957, "is_delete": false, "file_type": 1, "original_file_name": "HSH154FW#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f440e5198a34f6a8d8ae9e12291c314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f440e5198a34f6a8d8ae9e12291c314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f440e5198a34f6a8d8ae9e12291c314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f440e5198a34f6a8d8ae9e12291c314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f440e5198a34f6a8d8ae9e12291c314.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKCygZRJgyzuebRpO0f-03PO768=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.590479+00 2025-12-09 10:14:48.590483+00 5483 LZ1215#下身4号色 SPMX-20240815300629 \N \N \N 1 \N [{"file_id": "bd359799-c2c7-4891-9b7e-456c5092c3f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53f4f1abbf874d40a1089a24ec721dd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53f4f1abbf874d40a1089a24ec721dd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53f4f1abbf874d40a1089a24ec721dd1.jpg", "file_size": 18524, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f4f1abbf874d40a1089a24ec721dd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f4f1abbf874d40a1089a24ec721dd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f4f1abbf874d40a1089a24ec721dd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53f4f1abbf874d40a1089a24ec721dd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53f4f1abbf874d40a1089a24ec721dd1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4zXg5x0fD4ukTxqi726JG-pq9A=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.59174+00 2025-12-09 10:14:48.591744+00 5484 LZ1215#下身3号色 SPMX-20240815300618 \N \N \N 1 \N [{"file_id": "c1eec547-6645-4041-9f5e-ba90cd05a8cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f3c909609ca4edabd3e9efbab188dc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f3c909609ca4edabd3e9efbab188dc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f3c909609ca4edabd3e9efbab188dc0.jpg", "file_size": 17791, "is_delete": false, "file_type": 1, "original_file_name": "LZ1215#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3c909609ca4edabd3e9efbab188dc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3c909609ca4edabd3e9efbab188dc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3c909609ca4edabd3e9efbab188dc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f3c909609ca4edabd3e9efbab188dc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f3c909609ca4edabd3e9efbab188dc0.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:De7JDhbH3mOFKcOmaPffem0Mlns=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.593019+00 2025-12-09 10:14:48.593023+00 5485 23-2101#A6前后片4XL SPMX-20240815300624 \N \N \N 1 \N [{"file_id": "6f6190de-1664-4340-8039-16be79a1433b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93f4609c72ec4945bd0df21f2751a0fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93f4609c72ec4945bd0df21f2751a0fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93f4609c72ec4945bd0df21f2751a0fc.jpg", "file_size": 12069, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A6前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f4609c72ec4945bd0df21f2751a0fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f4609c72ec4945bd0df21f2751a0fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f4609c72ec4945bd0df21f2751a0fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93f4609c72ec4945bd0df21f2751a0fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93f4609c72ec4945bd0df21f2751a0fc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keQI1e7r3bDQzYtxVGcgJW2C_aY=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.594249+00 2025-12-09 10:14:48.594252+00 5486 JS563#粉色XL SPMX-20240815300621 \N \N \N 1 \N [{"file_id": "ed284e64-ffa9-41a7-bb24-4e1767585b01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10ade67af2074e24963d2ad15ce2673c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10ade67af2074e24963d2ad15ce2673c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10ade67af2074e24963d2ad15ce2673c.jpg", "file_size": 17327, "is_delete": false, "file_type": 1, "original_file_name": "JS563#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ade67af2074e24963d2ad15ce2673c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ade67af2074e24963d2ad15ce2673c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ade67af2074e24963d2ad15ce2673c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10ade67af2074e24963d2ad15ce2673c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10ade67af2074e24963d2ad15ce2673c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_M7KZpp5xVh78D5mO2RXjH5csIA=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.595477+00 2025-12-09 10:14:48.595481+00 5487 FHXGPK-017-5 SPMX-20240815300623 \N \N \N 1 \N [{"file_id": "f454a862-cdc0-4d65-9dee-09aa15ba1222", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7d180967a2742b383495918934129d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7d180967a2742b383495918934129d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7d180967a2742b383495918934129d5.jpg", "file_size": 34358, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-017-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d180967a2742b383495918934129d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d180967a2742b383495918934129d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d180967a2742b383495918934129d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7d180967a2742b383495918934129d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7d180967a2742b383495918934129d5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXVXksWm1A6WKxo_E3v8k3jOoHk=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.596728+00 2025-12-09 10:14:48.596733+00 5488 LHJ9260#5彩兰袖子 SPMX-20240815300626 \N \N \N 1 \N [{"file_id": "0bf3a0dc-d866-4680-9f23-e0baa767bddd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0476dc81f20f4c8e9099f2a089b595a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0476dc81f20f4c8e9099f2a089b595a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0476dc81f20f4c8e9099f2a089b595a3.jpg", "file_size": 10979, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9260#5彩兰袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0476dc81f20f4c8e9099f2a089b595a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0476dc81f20f4c8e9099f2a089b595a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0476dc81f20f4c8e9099f2a089b595a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0476dc81f20f4c8e9099f2a089b595a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0476dc81f20f4c8e9099f2a089b595a3.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMadWFGO_bzZQsARJNt1IE-IYIo=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.598+00 2025-12-09 10:14:48.598004+00 5489 1053#粉底杏 SPMX-20240815300625 \N \N \N 1 \N [{"file_id": "ea79afc7-c972-41f5-ab64-3e6b3a2a8d1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3924aafbafb4e3dbb6e1d1a697f1b95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3924aafbafb4e3dbb6e1d1a697f1b95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3924aafbafb4e3dbb6e1d1a697f1b95.jpg", "file_size": 17762, "is_delete": false, "file_type": 1, "original_file_name": "1053#粉底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3924aafbafb4e3dbb6e1d1a697f1b95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3924aafbafb4e3dbb6e1d1a697f1b95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3924aafbafb4e3dbb6e1d1a697f1b95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3924aafbafb4e3dbb6e1d1a697f1b95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3924aafbafb4e3dbb6e1d1a697f1b95.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ui4EVwty45zpxhvkSFTVOJIXS8A=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.599227+00 2025-12-09 10:14:48.599232+00 5490 DH20220781#M白 SPMX-20240815300628 \N \N \N 1 \N [{"file_id": "69b82626-d65f-4bf4-b277-ed938c16cfd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dabf9a92af0541d8837c1d9f95bccead.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dabf9a92af0541d8837c1d9f95bccead.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dabf9a92af0541d8837c1d9f95bccead.jpg", "file_size": 10496, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#M白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabf9a92af0541d8837c1d9f95bccead.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabf9a92af0541d8837c1d9f95bccead.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabf9a92af0541d8837c1d9f95bccead.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dabf9a92af0541d8837c1d9f95bccead.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dabf9a92af0541d8837c1d9f95bccead.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2j-kJYhPC9tX2FBtoejuwnJmKU=", "createTime": "2024-08-15 14:42:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.600463+00 2025-12-09 10:14:48.600466+00 5491 23-2101#A6袖子3XL SPMX-20240815300636 \N \N \N 1 \N [{"file_id": "68ece570-92cc-440c-b71f-35df125e5954", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f4110500814720821ccec2c920e518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f4110500814720821ccec2c920e518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f4110500814720821ccec2c920e518.jpg", "file_size": 10355, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A6袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f4110500814720821ccec2c920e518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f4110500814720821ccec2c920e518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f4110500814720821ccec2c920e518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f4110500814720821ccec2c920e518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f4110500814720821ccec2c920e518.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-QA7nB5V3-O3kQZUJJHnCrmmoUE=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.601698+00 2025-12-09 10:14:48.601702+00 5492 1053#粉底杏匹布 SPMX-20240815300634 \N \N \N 1 \N [{"file_id": "d78daf0d-8d25-4aee-b1dd-da0f86a2048d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d706373aba9248f3b99d50bea9f8c4d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d706373aba9248f3b99d50bea9f8c4d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d706373aba9248f3b99d50bea9f8c4d5.jpg", "file_size": 7286, "is_delete": false, "file_type": 1, "original_file_name": "1053#粉底杏匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d706373aba9248f3b99d50bea9f8c4d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d706373aba9248f3b99d50bea9f8c4d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d706373aba9248f3b99d50bea9f8c4d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d706373aba9248f3b99d50bea9f8c4d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d706373aba9248f3b99d50bea9f8c4d5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0r_7WP9yJ8osOo1g5aAESotjMpo=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.603039+00 2025-12-09 10:14:48.603044+00 5493 LHJ9261#20#枣红 SPMX-20240815300637 \N \N \N 1 \N [{"file_id": "29e8f5e2-1ae7-4a0d-b949-8b5009410e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6163d78736a9487f85714277f9284954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6163d78736a9487f85714277f9284954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6163d78736a9487f85714277f9284954.jpg", "file_size": 10864, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6163d78736a9487f85714277f9284954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6163d78736a9487f85714277f9284954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6163d78736a9487f85714277f9284954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6163d78736a9487f85714277f9284954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6163d78736a9487f85714277f9284954.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VQ5uHL2ae1ULTr7ziid9GskRuw=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.604434+00 2025-12-09 10:14:48.604438+00 5494 0003-104FWF#蓝色-番禺调色 SPMX-20240815300642 \N \N \N 1 \N [{"file_id": "495c09d8-ab4e-4c66-aa54-2b104442d9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab2f7aff92ef41bd9a8dcbdda7893761.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab2f7aff92ef41bd9a8dcbdda7893761.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab2f7aff92ef41bd9a8dcbdda7893761.jpg", "file_size": 25188, "is_delete": false, "file_type": 1, "original_file_name": "0003-104FWF#蓝色-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2f7aff92ef41bd9a8dcbdda7893761.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2f7aff92ef41bd9a8dcbdda7893761.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2f7aff92ef41bd9a8dcbdda7893761.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab2f7aff92ef41bd9a8dcbdda7893761.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab2f7aff92ef41bd9a8dcbdda7893761.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2HGcCE79xxRzlDy3u0YqrT868E=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.605709+00 2025-12-09 10:14:48.605713+00 5495 DH20220781#M红 SPMX-20240815300640 \N \N \N 1 \N [{"file_id": "b9d3f2be-f0ec-40e4-bad1-020b8bbdea3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eb3c2f0ae4145f89be55120d45637b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eb3c2f0ae4145f89be55120d45637b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eb3c2f0ae4145f89be55120d45637b4.jpg", "file_size": 11437, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#M红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb3c2f0ae4145f89be55120d45637b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb3c2f0ae4145f89be55120d45637b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb3c2f0ae4145f89be55120d45637b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eb3c2f0ae4145f89be55120d45637b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eb3c2f0ae4145f89be55120d45637b4.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fOSQPY8T9boC21khiWI-jm_SizE=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.60713+00 2025-12-09 10:14:48.607136+00 5496 FHXGPK-018-1 SPMX-20240815300635 \N \N \N 1 \N [{"file_id": "6c2492fd-56d4-48f1-9b65-0d8d44d35394", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be1de354366443cbbf9fbebdbfb27a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be1de354366443cbbf9fbebdbfb27a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be1de354366443cbbf9fbebdbfb27a3.jpg", "file_size": 34782, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-018-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be1de354366443cbbf9fbebdbfb27a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be1de354366443cbbf9fbebdbfb27a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be1de354366443cbbf9fbebdbfb27a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be1de354366443cbbf9fbebdbfb27a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be1de354366443cbbf9fbebdbfb27a3.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXl2Zp076VFDAldrZBCd1hjwCRA=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.608555+00 2025-12-09 10:14:48.60856+00 5497 LZ1216#上身1号色 SPMX-20240815300638 \N \N \N 1 \N [{"file_id": "9d23593f-f9c6-4f2d-95c7-c21a40d7b5bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "485062965058438599a465ee559a4e07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "485062965058438599a465ee559a4e07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "485062965058438599a465ee559a4e07.jpg", "file_size": 17486, "is_delete": false, "file_type": 1, "original_file_name": "LZ1216#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485062965058438599a465ee559a4e07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485062965058438599a465ee559a4e07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485062965058438599a465ee559a4e07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/485062965058438599a465ee559a4e07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/485062965058438599a465ee559a4e07.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gi0qNoDHdJvguK15NgVc2a-GFqc=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.609891+00 2025-12-09 10:14:48.609895+00 5498 HSH154FW#黑色 SPMX-20240815300641 \N \N \N 1 \N [{"file_id": "d8ce22f1-bec5-489d-9f7d-0b77a4cf2b92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be6fbb2193240638895b4037d388734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be6fbb2193240638895b4037d388734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be6fbb2193240638895b4037d388734.jpg", "file_size": 27189, "is_delete": false, "file_type": 1, "original_file_name": "HSH154FW#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6fbb2193240638895b4037d388734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6fbb2193240638895b4037d388734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6fbb2193240638895b4037d388734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be6fbb2193240638895b4037d388734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be6fbb2193240638895b4037d388734.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-ZghMnG0lznTOYDbJZWoQZfaPo=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.611255+00 2025-12-09 10:14:48.611259+00 5499 JS5747FWE#粉VS-D3 SPMX-20240815300644 \N \N \N 1 \N [{"file_id": "386591c9-733b-4a28-a174-3178245c29bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01bd0894437a43639b992e3952050d32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01bd0894437a43639b992e3952050d32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01bd0894437a43639b992e3952050d32.jpg", "file_size": 11250, "is_delete": false, "file_type": 1, "original_file_name": "JS5747FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01bd0894437a43639b992e3952050d32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01bd0894437a43639b992e3952050d32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01bd0894437a43639b992e3952050d32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01bd0894437a43639b992e3952050d32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01bd0894437a43639b992e3952050d32.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37fWIPDbm4d1Lhg9FWm1PyFPmjQ=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.61258+00 2025-12-09 10:14:48.612584+00 5500 1053#黑色定位版本 SPMX-20240815300645 \N \N \N 1 \N [{"file_id": "0f07fcd3-afa6-4acd-b225-043f71d4f6ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d54fbedcd3414d8685247630a2f8ebd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d54fbedcd3414d8685247630a2f8ebd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d54fbedcd3414d8685247630a2f8ebd4.jpg", "file_size": 48616, "is_delete": false, "file_type": 1, "original_file_name": "1053#黑色定位版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54fbedcd3414d8685247630a2f8ebd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54fbedcd3414d8685247630a2f8ebd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54fbedcd3414d8685247630a2f8ebd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d54fbedcd3414d8685247630a2f8ebd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d54fbedcd3414d8685247630a2f8ebd4.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSHK9ea9vqw78z3HN0V6XfZqTNo=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.613885+00 2025-12-09 10:14:48.61389+00 5501 C262#白底枣红花-放大0.3版本 SPMX-20240815300632 \N \N \N 1 \N [{"file_id": "1433ff4b-82c1-4aab-a028-0dd54b810d25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1670d5c9ee984d55afb4cabb68570a7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1670d5c9ee984d55afb4cabb68570a7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1670d5c9ee984d55afb4cabb68570a7e.jpg", "file_size": 24940, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底枣红花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670d5c9ee984d55afb4cabb68570a7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670d5c9ee984d55afb4cabb68570a7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670d5c9ee984d55afb4cabb68570a7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1670d5c9ee984d55afb4cabb68570a7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1670d5c9ee984d55afb4cabb68570a7e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zSl_SoHGP3UNy4ZWu1nZaQ6-oMM=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.615227+00 2025-12-09 10:14:48.615232+00 5502 80078#白色上衣 SPMX-20240815300639 \N \N \N 1 \N [{"file_id": "6f08fdf2-2bef-40bf-ae33-5d97c8eb4fe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f357fddcc6d4f5484caf55f4808e88f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f357fddcc6d4f5484caf55f4808e88f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f357fddcc6d4f5484caf55f4808e88f.jpg", "file_size": 12488, "is_delete": false, "file_type": 1, "original_file_name": "80078#白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f357fddcc6d4f5484caf55f4808e88f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f357fddcc6d4f5484caf55f4808e88f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f357fddcc6d4f5484caf55f4808e88f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f357fddcc6d4f5484caf55f4808e88f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f357fddcc6d4f5484caf55f4808e88f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BenRdimkz3UQA4SmyudSzJgdJzI=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.616531+00 2025-12-09 10:14:48.616536+00 5503 JS563#粉色匹布 SPMX-20240815300633 \N \N \N 1 \N [{"file_id": "549ccff6-b86a-4cdf-bd0b-5327d81bf620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8adfd190a3ba4002a185c86b1efee7c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8adfd190a3ba4002a185c86b1efee7c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8adfd190a3ba4002a185c86b1efee7c9.jpg", "file_size": 11871, "is_delete": false, "file_type": 1, "original_file_name": "JS563#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8adfd190a3ba4002a185c86b1efee7c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8adfd190a3ba4002a185c86b1efee7c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8adfd190a3ba4002a185c86b1efee7c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8adfd190a3ba4002a185c86b1efee7c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8adfd190a3ba4002a185c86b1efee7c9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IqfFIGgZ_NIhMQYwEQyCZ-zH-Ps=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.617812+00 2025-12-09 10:14:48.617816+00 5504 C262#白底枣红花 SPMX-20240815300643 \N \N \N 1 \N [{"file_id": "579ef549-1757-4589-93be-e87c70b6e794", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e44b120500a343a5beef616ee8648f83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e44b120500a343a5beef616ee8648f83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e44b120500a343a5beef616ee8648f83.jpg", "file_size": 24422, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底枣红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b120500a343a5beef616ee8648f83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b120500a343a5beef616ee8648f83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b120500a343a5beef616ee8648f83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e44b120500a343a5beef616ee8648f83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e44b120500a343a5beef616ee8648f83.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QE3SkTKE0kPTXYIsbuAt7etMY1o=", "createTime": "2024-08-15 14:42:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.619113+00 2025-12-09 10:14:48.619118+00 5505 23-2101#A6袖子4XL SPMX-20240815300646 \N \N \N 1 \N [{"file_id": "138c1c7c-6855-423a-8fd1-8ccc4789d3be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29ba773176944757929150fedbd6278b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29ba773176944757929150fedbd6278b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29ba773176944757929150fedbd6278b.jpg", "file_size": 9085, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A6袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29ba773176944757929150fedbd6278b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29ba773176944757929150fedbd6278b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29ba773176944757929150fedbd6278b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29ba773176944757929150fedbd6278b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29ba773176944757929150fedbd6278b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHHsS7tgi8sMW7wdd9G3NEYHqPU=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.620395+00 2025-12-09 10:14:48.6204+00 5506 LZ1216#上身2号色 SPMX-20240815300648 \N \N \N 1 \N [{"file_id": "43c37028-03d4-4cd9-8e7c-93d2ef1e405d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0dea4c4139a4f699c7aeed660313f7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0dea4c4139a4f699c7aeed660313f7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0dea4c4139a4f699c7aeed660313f7b.jpg", "file_size": 17888, "is_delete": false, "file_type": 1, "original_file_name": "LZ1216#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dea4c4139a4f699c7aeed660313f7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dea4c4139a4f699c7aeed660313f7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dea4c4139a4f699c7aeed660313f7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0dea4c4139a4f699c7aeed660313f7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0dea4c4139a4f699c7aeed660313f7b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:US9zM4DGgil04cuFmccm8VHogg0=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.621661+00 2025-12-09 10:14:48.621665+00 5507 FHXGPK-018-3 SPMX-20240815300658 \N \N \N 1 \N [{"file_id": "c1ff17e7-4fad-4c68-b97d-3b7a7e15ac39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "142f4f99c75144a4bbb8e39ad159374e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "142f4f99c75144a4bbb8e39ad159374e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "142f4f99c75144a4bbb8e39ad159374e.jpg", "file_size": 36881, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-018-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142f4f99c75144a4bbb8e39ad159374e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142f4f99c75144a4bbb8e39ad159374e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142f4f99c75144a4bbb8e39ad159374e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/142f4f99c75144a4bbb8e39ad159374e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/142f4f99c75144a4bbb8e39ad159374e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-POf-v_dazzh-GiUKLASLrvzeQ=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.622954+00 2025-12-09 10:14:48.622958+00 5508 0003-104FWF#蓝色 SPMX-20240815300654 \N \N \N 1 \N [{"file_id": "b257fb20-230d-43f8-abe3-315b6c0ac62a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e76b0f19ef4f470b9bdeade7b7a1546b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e76b0f19ef4f470b9bdeade7b7a1546b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e76b0f19ef4f470b9bdeade7b7a1546b.jpg", "file_size": 24118, "is_delete": false, "file_type": 1, "original_file_name": "0003-104FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76b0f19ef4f470b9bdeade7b7a1546b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76b0f19ef4f470b9bdeade7b7a1546b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76b0f19ef4f470b9bdeade7b7a1546b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e76b0f19ef4f470b9bdeade7b7a1546b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e76b0f19ef4f470b9bdeade7b7a1546b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7rMrT-QgXY2cgnYlKQPMlYvdcw=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.624243+00 2025-12-09 10:14:48.624248+00 5509 LHJ9261#37#玫红 SPMX-20240815300659 \N \N \N 1 \N [{"file_id": "2b32f399-2b19-445d-984d-58495c78cd9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9045f49a19343bca6fc7e0f573cd0e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9045f49a19343bca6fc7e0f573cd0e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9045f49a19343bca6fc7e0f573cd0e0.jpg", "file_size": 10487, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9045f49a19343bca6fc7e0f573cd0e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9045f49a19343bca6fc7e0f573cd0e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9045f49a19343bca6fc7e0f573cd0e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9045f49a19343bca6fc7e0f573cd0e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9045f49a19343bca6fc7e0f573cd0e0.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJiChnFyV3e-PfdfIwOvRdlFikA=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.625596+00 2025-12-09 10:14:48.625601+00 5510 DH20220781#S橙 SPMX-20240815300660 \N \N \N 1 \N [{"file_id": "245e8215-eba2-4cf6-bfd9-7a8ae1aaebad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f1c7360141f45348160bca2357f5663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f1c7360141f45348160bca2357f5663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f1c7360141f45348160bca2357f5663.jpg", "file_size": 12101, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#S橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1c7360141f45348160bca2357f5663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1c7360141f45348160bca2357f5663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1c7360141f45348160bca2357f5663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f1c7360141f45348160bca2357f5663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f1c7360141f45348160bca2357f5663.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6BDjrUBkkHR6KxGafh-ytoMOFCs=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.626927+00 2025-12-09 10:14:48.626931+00 5511 DH20220781#S SPMX-20240815300650 \N \N \N 1 \N [{"file_id": "625f1f01-36bb-4aac-97e1-6b31e947ab69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a92155cd23154aefadca8e891e8d1cab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a92155cd23154aefadca8e891e8d1cab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a92155cd23154aefadca8e891e8d1cab.jpg", "file_size": 11724, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92155cd23154aefadca8e891e8d1cab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92155cd23154aefadca8e891e8d1cab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92155cd23154aefadca8e891e8d1cab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a92155cd23154aefadca8e891e8d1cab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a92155cd23154aefadca8e891e8d1cab.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7WDUKpk54JCWXhMkNtJSpiZDow=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.628241+00 2025-12-09 10:14:48.628246+00 5512 23-2101#A6领子通码 SPMX-20240815300657 \N \N \N 1 \N [{"file_id": "a82ba744-0a82-4ea0-8356-1b2720b42684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c49d6862af94e8687c14bbebbdab0b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c49d6862af94e8687c14bbebbdab0b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c49d6862af94e8687c14bbebbdab0b4.jpg", "file_size": 8913, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A6领子通码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c49d6862af94e8687c14bbebbdab0b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c49d6862af94e8687c14bbebbdab0b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c49d6862af94e8687c14bbebbdab0b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c49d6862af94e8687c14bbebbdab0b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c49d6862af94e8687c14bbebbdab0b4.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fMsoISSLxrjNUtJj6_NOBuHnByA=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.629571+00 2025-12-09 10:14:48.629575+00 5513 LHJ9261#25#土黄 SPMX-20240815300651 \N \N \N 1 \N [{"file_id": "59fc23df-b28a-4fed-ac0a-753cfaaa8fd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b8c363f2e5f4d93b5222441a64c5629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b8c363f2e5f4d93b5222441a64c5629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b8c363f2e5f4d93b5222441a64c5629.jpg", "file_size": 10695, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8c363f2e5f4d93b5222441a64c5629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8c363f2e5f4d93b5222441a64c5629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8c363f2e5f4d93b5222441a64c5629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b8c363f2e5f4d93b5222441a64c5629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b8c363f2e5f4d93b5222441a64c5629.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NglfI1L52GfCQ8e37NRUzRcSVqo=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.630865+00 2025-12-09 10:14:48.630869+00 5514 HSH155FW#杏底 SPMX-20240815300656 \N \N \N 1 \N [{"file_id": "5c80a5fa-c3e3-4b0e-a24f-1bfe50a1c5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c2357a388994df98701079aca4848a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c2357a388994df98701079aca4848a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c2357a388994df98701079aca4848a9.jpg", "file_size": 12909, "is_delete": false, "file_type": 1, "original_file_name": "HSH155FW#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c2357a388994df98701079aca4848a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c2357a388994df98701079aca4848a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c2357a388994df98701079aca4848a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c2357a388994df98701079aca4848a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c2357a388994df98701079aca4848a9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4k1VhWCO4SJW-0QA6FW6ZwePvo=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.63215+00 2025-12-09 10:14:48.632155+00 5515 JS5747FWE#蓝VS-D3 SPMX-20240815300655 \N \N \N 1 \N [{"file_id": "621d7428-dbf0-4054-a1c8-b197d9345bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a00605afcb934021ad857d600495fd39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a00605afcb934021ad857d600495fd39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a00605afcb934021ad857d600495fd39.jpg", "file_size": 11309, "is_delete": false, "file_type": 1, "original_file_name": "JS5747FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00605afcb934021ad857d600495fd39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00605afcb934021ad857d600495fd39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00605afcb934021ad857d600495fd39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a00605afcb934021ad857d600495fd39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a00605afcb934021ad857d600495fd39.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NKgqHh1Yy3OkI-RoiWNBHwH0KE=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.633438+00 2025-12-09 10:14:48.633442+00 5516 FHXGPK-018-2 SPMX-20240815300647 \N \N \N 1 \N [{"file_id": "75340e7d-2af0-42d5-82f1-5fd8d706f257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4399141222d14dfc9c2c5e0de2efe8c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4399141222d14dfc9c2c5e0de2efe8c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4399141222d14dfc9c2c5e0de2efe8c0.jpg", "file_size": 31708, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-018-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4399141222d14dfc9c2c5e0de2efe8c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4399141222d14dfc9c2c5e0de2efe8c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4399141222d14dfc9c2c5e0de2efe8c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4399141222d14dfc9c2c5e0de2efe8c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4399141222d14dfc9c2c5e0de2efe8c0.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FX1TDn2JLuYj2y3j7-dlsgsp1_Y=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.634744+00 2025-12-09 10:14:48.634749+00 5517 80078#白色裤子 SPMX-20240815300649 \N \N \N 1 \N [{"file_id": "fd34d504-06a8-43d7-bbe2-2c8b9388943c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3955ab5ced024caba741ae311e08785f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3955ab5ced024caba741ae311e08785f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3955ab5ced024caba741ae311e08785f.jpg", "file_size": 13874, "is_delete": false, "file_type": 1, "original_file_name": "80078#白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3955ab5ced024caba741ae311e08785f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3955ab5ced024caba741ae311e08785f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3955ab5ced024caba741ae311e08785f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3955ab5ced024caba741ae311e08785f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3955ab5ced024caba741ae311e08785f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGq-bJTo2uimzjDVWbbW0Z9dWNY=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.636517+00 2025-12-09 10:14:48.636522+00 5518 1054#宝蓝色 SPMX-20240815300653 \N \N \N 1 \N [{"file_id": "502885b3-3c51-48dc-8f47-3b68e3947130", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ff8771362eb41718dd1299cc93d3e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ff8771362eb41718dd1299cc93d3e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ff8771362eb41718dd1299cc93d3e06.jpg", "file_size": 22963, "is_delete": false, "file_type": 1, "original_file_name": "1054#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff8771362eb41718dd1299cc93d3e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff8771362eb41718dd1299cc93d3e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff8771362eb41718dd1299cc93d3e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ff8771362eb41718dd1299cc93d3e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ff8771362eb41718dd1299cc93d3e06.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ddvs1LOAKdI-vHaeZu6SYLF0P8k=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.638257+00 2025-12-09 10:14:48.638262+00 5519 C262#白底浅绿花-放大0.3版本 SPMX-20240815300652 \N \N \N 1 \N [{"file_id": "d73e2400-36a0-46db-8174-eb85727db1dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb719ea352414c8db131c25c0358de06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb719ea352414c8db131c25c0358de06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb719ea352414c8db131c25c0358de06.jpg", "file_size": 20218, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底浅绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb719ea352414c8db131c25c0358de06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb719ea352414c8db131c25c0358de06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb719ea352414c8db131c25c0358de06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb719ea352414c8db131c25c0358de06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb719ea352414c8db131c25c0358de06.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBDEvXCmp-7dOnL3iz3m0MMBOIE=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.639917+00 2025-12-09 10:14:48.639921+00 5520 FHXGPK-018-4 SPMX-20240815300669 \N \N \N 1 \N [{"file_id": "0d15cd4e-b6c6-4e97-8bf0-7205bb4f7e92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a958343f756d4d8ca3c5955c6f939c24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a958343f756d4d8ca3c5955c6f939c24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a958343f756d4d8ca3c5955c6f939c24.jpg", "file_size": 33393, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-018-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a958343f756d4d8ca3c5955c6f939c24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a958343f756d4d8ca3c5955c6f939c24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a958343f756d4d8ca3c5955c6f939c24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a958343f756d4d8ca3c5955c6f939c24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a958343f756d4d8ca3c5955c6f939c24.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Xku5VqvRn4Ij61SIvD6-vH2ZWY=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.641543+00 2025-12-09 10:14:48.641548+00 5521 80078#黑色上衣 SPMX-20240815300672 \N \N \N 1 \N [{"file_id": "673b3db9-d9b7-44de-8fe0-e369c6298732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13d3f1b616b94425937b5ac63713208d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13d3f1b616b94425937b5ac63713208d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13d3f1b616b94425937b5ac63713208d.jpg", "file_size": 13313, "is_delete": false, "file_type": 1, "original_file_name": "80078#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d3f1b616b94425937b5ac63713208d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d3f1b616b94425937b5ac63713208d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d3f1b616b94425937b5ac63713208d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13d3f1b616b94425937b5ac63713208d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13d3f1b616b94425937b5ac63713208d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ynle0f6m9iJ-PXtMpDiaybYdiU=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.643187+00 2025-12-09 10:14:48.643191+00 5522 LZ1216#上身4号色 SPMX-20240815300674 \N \N \N 1 \N [{"file_id": "1a16e908-dff3-4324-bf41-5e2b29c5c009", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feb04565af78484ea15e53adb3465c71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feb04565af78484ea15e53adb3465c71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feb04565af78484ea15e53adb3465c71.jpg", "file_size": 17832, "is_delete": false, "file_type": 1, "original_file_name": "LZ1216#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb04565af78484ea15e53adb3465c71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb04565af78484ea15e53adb3465c71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb04565af78484ea15e53adb3465c71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feb04565af78484ea15e53adb3465c71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feb04565af78484ea15e53adb3465c71.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJMRi_eKfVoGhdjl8WmOERHPnWY=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.644795+00 2025-12-09 10:14:48.6448+00 5523 0003-105FWF#V5曲线 SPMX-20240815300663 \N \N \N 1 \N [{"file_id": "36de688b-7307-4ad4-ac81-bf8ac3a6a725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeb1e1ae8a204d8ba18493a5e705e24f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeb1e1ae8a204d8ba18493a5e705e24f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeb1e1ae8a204d8ba18493a5e705e24f.jpg", "file_size": 8899, "is_delete": false, "file_type": 1, "original_file_name": "0003-105FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1e1ae8a204d8ba18493a5e705e24f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1e1ae8a204d8ba18493a5e705e24f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb1e1ae8a204d8ba18493a5e705e24f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeb1e1ae8a204d8ba18493a5e705e24f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeb1e1ae8a204d8ba18493a5e705e24f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1l5nhGU2Z-Otl1yWn1JUEqijmoU=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.646402+00 2025-12-09 10:14:48.646406+00 5524 1054#宝蓝色匹布 SPMX-20240815300665 \N \N \N 1 \N [{"file_id": "7e1246f8-f852-402e-abeb-652a64c8472e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ced860b4a34819bc1c662150c257b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ced860b4a34819bc1c662150c257b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ced860b4a34819bc1c662150c257b4.jpg", "file_size": 6079, "is_delete": false, "file_type": 1, "original_file_name": "1054#宝蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ced860b4a34819bc1c662150c257b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ced860b4a34819bc1c662150c257b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ced860b4a34819bc1c662150c257b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ced860b4a34819bc1c662150c257b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ced860b4a34819bc1c662150c257b4.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbhlaCbAeDBfa23J5pG29zX8XFM=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.647998+00 2025-12-09 10:14:48.648003+00 5525 LZ1216#上身3号色 SPMX-20240815300661 \N \N \N 1 \N [{"file_id": "d896bd7e-75e8-4664-9f69-ac760f571266", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c8ffd58ef2c497cb15646f02f4f844e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c8ffd58ef2c497cb15646f02f4f844e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c8ffd58ef2c497cb15646f02f4f844e.jpg", "file_size": 16974, "is_delete": false, "file_type": 1, "original_file_name": "LZ1216#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8ffd58ef2c497cb15646f02f4f844e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8ffd58ef2c497cb15646f02f4f844e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8ffd58ef2c497cb15646f02f4f844e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c8ffd58ef2c497cb15646f02f4f844e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c8ffd58ef2c497cb15646f02f4f844e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVt-_1AsCUaiXMnDImSyTg8_AXU=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.649297+00 2025-12-09 10:14:48.649301+00 5526 C262#白底玫红色 SPMX-20240815300664 \N \N \N 1 \N [{"file_id": "7e7226d9-1e0c-4294-9ab3-e21b4caeb345", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8c2785b7a14497a95b60d48c005b0d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8c2785b7a14497a95b60d48c005b0d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8c2785b7a14497a95b60d48c005b0d3.jpg", "file_size": 62482, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c2785b7a14497a95b60d48c005b0d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c2785b7a14497a95b60d48c005b0d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c2785b7a14497a95b60d48c005b0d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8c2785b7a14497a95b60d48c005b0d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8c2785b7a14497a95b60d48c005b0d3.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ql7ikHjByOoppUlEBy518HPfKE8=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.65057+00 2025-12-09 10:14:48.650574+00 5527 JS8583#WJC22 SPMX-20240815300666 \N \N \N 1 \N [{"file_id": "5909be53-0a31-4aa1-af22-86e687677eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e3be0c3b2c45c5907525a0b8ed8bcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e3be0c3b2c45c5907525a0b8ed8bcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e3be0c3b2c45c5907525a0b8ed8bcc.jpg", "file_size": 14996, "is_delete": false, "file_type": 1, "original_file_name": "JS8583#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e3be0c3b2c45c5907525a0b8ed8bcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e3be0c3b2c45c5907525a0b8ed8bcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e3be0c3b2c45c5907525a0b8ed8bcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e3be0c3b2c45c5907525a0b8ed8bcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e3be0c3b2c45c5907525a0b8ed8bcc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eQdPtsZCR6hCDzqC1ISHMzD4C7g=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.651859+00 2025-12-09 10:14:48.651863+00 5528 23-2101#A7前后片3XL SPMX-20240815300667 \N \N \N 1 \N [{"file_id": "f8974c4b-3e83-454d-a05a-6b917d711013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "017a155fd4e84c579aca0d7d646f35ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "017a155fd4e84c579aca0d7d646f35ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "017a155fd4e84c579aca0d7d646f35ea.jpg", "file_size": 11178, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A7前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017a155fd4e84c579aca0d7d646f35ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017a155fd4e84c579aca0d7d646f35ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017a155fd4e84c579aca0d7d646f35ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/017a155fd4e84c579aca0d7d646f35ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/017a155fd4e84c579aca0d7d646f35ea.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lt8Wj993xNfLnrfeDbzXFkJpPzs=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.653159+00 2025-12-09 10:14:48.653164+00 5529 80078#袖子匹布 SPMX-20240815300662 \N \N \N 1 \N [{"file_id": "177d3ddb-6035-459a-9c6f-47e53b63ea73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e341a9b0dfe049dbbf76067c26d92287.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e341a9b0dfe049dbbf76067c26d92287.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e341a9b0dfe049dbbf76067c26d92287.jpg", "file_size": 16547, "is_delete": false, "file_type": 1, "original_file_name": "80078#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e341a9b0dfe049dbbf76067c26d92287.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e341a9b0dfe049dbbf76067c26d92287.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e341a9b0dfe049dbbf76067c26d92287.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e341a9b0dfe049dbbf76067c26d92287.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e341a9b0dfe049dbbf76067c26d92287.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YCd22PLjh-lEuwCLIAv_LQODVTE=", "createTime": "2024-08-15 14:42:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.654423+00 2025-12-09 10:14:48.654427+00 5530 HSH155FW#绿底 SPMX-20240815300668 \N \N \N 1 \N [{"file_id": "8d1ce3eb-b7aa-4b92-8e7f-9368a88737fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea7c2ca614c4422d9cce604fab9a9707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea7c2ca614c4422d9cce604fab9a9707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea7c2ca614c4422d9cce604fab9a9707.jpg", "file_size": 11050, "is_delete": false, "file_type": 1, "original_file_name": "HSH155FW#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7c2ca614c4422d9cce604fab9a9707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7c2ca614c4422d9cce604fab9a9707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7c2ca614c4422d9cce604fab9a9707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea7c2ca614c4422d9cce604fab9a9707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea7c2ca614c4422d9cce604fab9a9707.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xe0SkCS3O9ILBqsJvnTcNmisVi0=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.6557+00 2025-12-09 10:14:48.65571+00 5531 DH20220781#S白 SPMX-20240815300671 \N \N \N 1 \N [{"file_id": "cda6eb42-b92a-46e1-b3e3-1aab6ded946d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "046d00f6be014e95a56d841c3161fdec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "046d00f6be014e95a56d841c3161fdec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "046d00f6be014e95a56d841c3161fdec.jpg", "file_size": 10897, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#S白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046d00f6be014e95a56d841c3161fdec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046d00f6be014e95a56d841c3161fdec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046d00f6be014e95a56d841c3161fdec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/046d00f6be014e95a56d841c3161fdec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/046d00f6be014e95a56d841c3161fdec.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e07v3sZ1DQu7CRc7wlH2AaXHgQ0=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.656993+00 2025-12-09 10:14:48.656997+00 5532 0003-106FWF#V5曲线 SPMX-20240815300673 \N \N \N 1 \N [{"file_id": "3ffb114d-8aff-4457-a8ac-3a31aa2b50e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f1f7d950eb949a69230cc61869d324d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f1f7d950eb949a69230cc61869d324d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f1f7d950eb949a69230cc61869d324d.jpg", "file_size": 19409, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1f7d950eb949a69230cc61869d324d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1f7d950eb949a69230cc61869d324d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1f7d950eb949a69230cc61869d324d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f1f7d950eb949a69230cc61869d324d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f1f7d950eb949a69230cc61869d324d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Su1gZLx0Sb8kLPhq8AxmuH2to8=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.658289+00 2025-12-09 10:14:48.658293+00 5533 LHJ9261#5#彩兰 SPMX-20240815300670 \N \N \N 1 \N [{"file_id": "68bf7030-f49f-4635-99b5-084b76c99fbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a9ec6924384ece8ff4d00d789439d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a9ec6924384ece8ff4d00d789439d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a9ec6924384ece8ff4d00d789439d3.jpg", "file_size": 11077, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a9ec6924384ece8ff4d00d789439d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a9ec6924384ece8ff4d00d789439d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a9ec6924384ece8ff4d00d789439d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a9ec6924384ece8ff4d00d789439d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a9ec6924384ece8ff4d00d789439d3.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pz15XRa987kX4aDeFccDAq9SgC8=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.659564+00 2025-12-09 10:14:48.659568+00 5534 1054#灰色 SPMX-20240815300677 \N \N \N 1 \N [{"file_id": "6bc36c4a-f766-47ab-8645-5ac924301156", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "911ede821ad441b1963bf313c050631c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "911ede821ad441b1963bf313c050631c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "911ede821ad441b1963bf313c050631c.jpg", "file_size": 18521, "is_delete": false, "file_type": 1, "original_file_name": "1054#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911ede821ad441b1963bf313c050631c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911ede821ad441b1963bf313c050631c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911ede821ad441b1963bf313c050631c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/911ede821ad441b1963bf313c050631c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/911ede821ad441b1963bf313c050631c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TA0lEad_MKcWpIYTc9fXCyoDIQY=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.660824+00 2025-12-09 10:14:48.660828+00 5535 C262#白底绿色 SPMX-20240815300675 \N \N \N 1 \N [{"file_id": "27936d95-6af1-41c1-9cad-bdb9a9754fd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg", "file_size": 61690, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dd0f0e0a5e94c3d8f2a59734fc6210b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3umfutFVnvY4qEAgbUA_0Mwc3k=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.662098+00 2025-12-09 10:14:48.662102+00 5536 JS88#D-补片1 SPMX-20240815300676 \N \N \N 1 \N [{"file_id": "18e5e49f-3955-400f-a4ef-11c113b2f8be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e71393de9541c3840643dfe32dad95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e71393de9541c3840643dfe32dad95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e71393de9541c3840643dfe32dad95.jpg", "file_size": 13209, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D-补片1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e71393de9541c3840643dfe32dad95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e71393de9541c3840643dfe32dad95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e71393de9541c3840643dfe32dad95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e71393de9541c3840643dfe32dad95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e71393de9541c3840643dfe32dad95.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tcX5PxwnxQsHaebUiXsNYZjaz1o=", "createTime": "2024-08-15 14:42:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.663395+00 2025-12-09 10:14:48.663399+00 5537 LHJ9261#61#橙 SPMX-20240815300680 \N \N \N 1 \N [{"file_id": "1a7baab9-7c55-4b82-ada5-ae74865afc92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec1621901da74c43a284d91fb453f717.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec1621901da74c43a284d91fb453f717.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec1621901da74c43a284d91fb453f717.jpg", "file_size": 10117, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#61#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec1621901da74c43a284d91fb453f717.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec1621901da74c43a284d91fb453f717.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec1621901da74c43a284d91fb453f717.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec1621901da74c43a284d91fb453f717.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec1621901da74c43a284d91fb453f717.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P97h-2yzHKanAQmJ-LgxPFBVG88=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.664649+00 2025-12-09 10:14:48.664654+00 5538 80078#黑色裤子 SPMX-20240815300682 \N \N \N 1 \N [{"file_id": "7ed8c7ce-efe6-4792-b0f1-7f8a2fbc8db9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4a66d35c75c42cca6241808d60224bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4a66d35c75c42cca6241808d60224bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4a66d35c75c42cca6241808d60224bc.jpg", "file_size": 14860, "is_delete": false, "file_type": 1, "original_file_name": "80078#黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a66d35c75c42cca6241808d60224bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a66d35c75c42cca6241808d60224bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a66d35c75c42cca6241808d60224bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4a66d35c75c42cca6241808d60224bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4a66d35c75c42cca6241808d60224bc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKbD13LgyYnFvKeJ2SC_i5CPcQo=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.665944+00 2025-12-09 10:14:48.665949+00 5539 HSH156FW#原色 SPMX-20240815300678 \N \N \N 1 \N [{"file_id": "32b64581-4c6d-471c-8eda-89c3e92e4012", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "209e776b788540df93d40f245faea86f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "209e776b788540df93d40f245faea86f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "209e776b788540df93d40f245faea86f.jpg", "file_size": 26701, "is_delete": false, "file_type": 1, "original_file_name": "HSH156FW#原色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209e776b788540df93d40f245faea86f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209e776b788540df93d40f245faea86f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209e776b788540df93d40f245faea86f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/209e776b788540df93d40f245faea86f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/209e776b788540df93d40f245faea86f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRRkPF7_qWpKJIO6KKebyNcdBmU=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.677451+00 2025-12-09 10:14:48.677455+00 5548 C262#白底绿花 SPMX-20240815300697 \N \N \N 1 \N [{"file_id": "4b8b73ca-0b85-4960-b83c-93532bab40c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "331660775b924d18bac8c3e14b896e27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "331660775b924d18bac8c3e14b896e27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "331660775b924d18bac8c3e14b896e27.jpg", "file_size": 23857, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/331660775b924d18bac8c3e14b896e27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/331660775b924d18bac8c3e14b896e27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/331660775b924d18bac8c3e14b896e27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/331660775b924d18bac8c3e14b896e27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/331660775b924d18bac8c3e14b896e27.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdwKgJ9IM3gsdkr-ZrIrh-h_EqE=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.667224+00 2025-12-09 10:14:48.667228+00 5540 0003-106FWF#吊带款2XL SPMX-20240815300681 \N \N \N 1 \N [{"file_id": "86f7610b-7289-44dd-87e2-186b3f23148f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e720ede9b8c49659ad18c6625d7cde6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e720ede9b8c49659ad18c6625d7cde6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e720ede9b8c49659ad18c6625d7cde6.jpg", "file_size": 9238, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#吊带款2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e720ede9b8c49659ad18c6625d7cde6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e720ede9b8c49659ad18c6625d7cde6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e720ede9b8c49659ad18c6625d7cde6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e720ede9b8c49659ad18c6625d7cde6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e720ede9b8c49659ad18c6625d7cde6.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAiAaE_2Z4lBas7NP_xDwgns09U=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.668512+00 2025-12-09 10:14:48.668516+00 5541 DH20220781#S红 SPMX-20240815300683 \N \N \N 1 \N [{"file_id": "1f47b9ce-e026-4658-852d-3081c2c1bbac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436d69addda740709f1fae93b95325ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436d69addda740709f1fae93b95325ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436d69addda740709f1fae93b95325ad.jpg", "file_size": 11615, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#S红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436d69addda740709f1fae93b95325ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436d69addda740709f1fae93b95325ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436d69addda740709f1fae93b95325ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436d69addda740709f1fae93b95325ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436d69addda740709f1fae93b95325ad.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9QaMPHXpxFH6H4bgl5xzpZektQ=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.669804+00 2025-12-09 10:14:48.669808+00 5542 LZ1217#上身1号色 SPMX-20240815300686 \N \N \N 1 \N [{"file_id": "f1027799-23b8-4ac9-b824-2382ec77e109", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "308a52a8974945a9a9c06eabc4e1002a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "308a52a8974945a9a9c06eabc4e1002a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "308a52a8974945a9a9c06eabc4e1002a.jpg", "file_size": 17078, "is_delete": false, "file_type": 1, "original_file_name": "LZ1217#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308a52a8974945a9a9c06eabc4e1002a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308a52a8974945a9a9c06eabc4e1002a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308a52a8974945a9a9c06eabc4e1002a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/308a52a8974945a9a9c06eabc4e1002a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/308a52a8974945a9a9c06eabc4e1002a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TkOR8-Ov7Aj6Z8bc-MRHfohqcQA=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.671074+00 2025-12-09 10:14:48.671078+00 5543 FHXGPK-018-5 SPMX-20240815300684 \N \N \N 1 \N [{"file_id": "5cdc7a7f-3bb5-4021-a07a-98e646024f54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0676ef19164547a3ab6037ac15c187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0676ef19164547a3ab6037ac15c187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0676ef19164547a3ab6037ac15c187.jpg", "file_size": 34990, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-018-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0676ef19164547a3ab6037ac15c187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0676ef19164547a3ab6037ac15c187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0676ef19164547a3ab6037ac15c187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0676ef19164547a3ab6037ac15c187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0676ef19164547a3ab6037ac15c187.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bam6JGopRu7eQxvWguXIXRsgDGM=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.672344+00 2025-12-09 10:14:48.672348+00 5544 C262#白底绿花-放大0.3版本 SPMX-20240815300687 \N \N \N 1 \N [{"file_id": "410cdd8e-ce51-4ea3-8abc-05302ca8051a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8490ebddbc84926906228c92f831998.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8490ebddbc84926906228c92f831998.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8490ebddbc84926906228c92f831998.jpg", "file_size": 24365, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8490ebddbc84926906228c92f831998.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8490ebddbc84926906228c92f831998.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8490ebddbc84926906228c92f831998.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8490ebddbc84926906228c92f831998.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8490ebddbc84926906228c92f831998.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUMsKzn3pADUUUQh3k05LtNt-3c=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.67363+00 2025-12-09 10:14:48.673635+00 5545 JS88#D-补片2 SPMX-20240815300685 \N \N \N 1 \N [{"file_id": "4e98c29c-8ee9-42d7-9aa2-b7ded004f449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8acaa466bed423c9e3c7366f3d0d845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8acaa466bed423c9e3c7366f3d0d845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8acaa466bed423c9e3c7366f3d0d845.jpg", "file_size": 19579, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D-补片2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8acaa466bed423c9e3c7366f3d0d845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8acaa466bed423c9e3c7366f3d0d845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8acaa466bed423c9e3c7366f3d0d845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8acaa466bed423c9e3c7366f3d0d845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8acaa466bed423c9e3c7366f3d0d845.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEt-bZZ4o3lFdmhOfpV2e7g4ih4=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.674899+00 2025-12-09 10:14:48.674903+00 5546 23-2101#A7前后片4XL SPMX-20240815300679 \N \N \N 1 \N [{"file_id": "aec960ce-fc54-433a-ae56-9fdeb3750fe8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afbefec040ce438caea008f4b2005f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afbefec040ce438caea008f4b2005f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afbefec040ce438caea008f4b2005f06.jpg", "file_size": 11081, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A7前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbefec040ce438caea008f4b2005f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbefec040ce438caea008f4b2005f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afbefec040ce438caea008f4b2005f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afbefec040ce438caea008f4b2005f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afbefec040ce438caea008f4b2005f06.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pYltagLKotc8TIZd5vVnTw6JGt4=", "createTime": "2024-08-15 14:42:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.676183+00 2025-12-09 10:14:48.676187+00 5547 JS88#D-补片3 SPMX-20240815300693 \N \N \N 1 \N [{"file_id": "7c7fa2d0-2251-44d1-8e80-b28221f5e219", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa99161aaa834a8baf9ee920c2fefa5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa99161aaa834a8baf9ee920c2fefa5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa99161aaa834a8baf9ee920c2fefa5d.jpg", "file_size": 12484, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D-补片3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa99161aaa834a8baf9ee920c2fefa5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa99161aaa834a8baf9ee920c2fefa5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa99161aaa834a8baf9ee920c2fefa5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa99161aaa834a8baf9ee920c2fefa5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa99161aaa834a8baf9ee920c2fefa5d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEkByVhm9Ys7-5-xoiQekuivvOo=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.678727+00 2025-12-09 10:14:48.678732+00 5549 23-2101#A7袖子3XL SPMX-20240815300689 \N \N \N 1 \N [{"file_id": "5d971d75-0a33-4fe8-9048-458fe7287fe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5215554529e140e38ebea60b094de2df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5215554529e140e38ebea60b094de2df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5215554529e140e38ebea60b094de2df.jpg", "file_size": 10555, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A7袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215554529e140e38ebea60b094de2df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215554529e140e38ebea60b094de2df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215554529e140e38ebea60b094de2df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5215554529e140e38ebea60b094de2df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5215554529e140e38ebea60b094de2df.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOxQHsELW3PJ2QbObro4LaxcvMA=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.680023+00 2025-12-09 10:14:48.680028+00 5550 FHXGPK-019-1 SPMX-20240815300696 \N \N \N 1 \N [{"file_id": "9dfc7a98-1a74-4fcd-990a-16fa66aafef2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c1f81310c3a4bc7ac4590cda577a1f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c1f81310c3a4bc7ac4590cda577a1f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c1f81310c3a4bc7ac4590cda577a1f7.jpg", "file_size": 36754, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-019-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1f81310c3a4bc7ac4590cda577a1f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1f81310c3a4bc7ac4590cda577a1f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1f81310c3a4bc7ac4590cda577a1f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c1f81310c3a4bc7ac4590cda577a1f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c1f81310c3a4bc7ac4590cda577a1f7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTqGhcuXx9wyf0Ac6onGCz3My7g=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.68131+00 2025-12-09 10:14:48.681314+00 5551 HSH156FW#蓝色 SPMX-20240815300690 \N \N \N 1 \N [{"file_id": "f3732657-dc44-4342-b162-230317610847", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa139cd9eaa34c969cf41dce8ec12e12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa139cd9eaa34c969cf41dce8ec12e12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa139cd9eaa34c969cf41dce8ec12e12.jpg", "file_size": 25880, "is_delete": false, "file_type": 1, "original_file_name": "HSH156FW#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa139cd9eaa34c969cf41dce8ec12e12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa139cd9eaa34c969cf41dce8ec12e12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa139cd9eaa34c969cf41dce8ec12e12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa139cd9eaa34c969cf41dce8ec12e12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa139cd9eaa34c969cf41dce8ec12e12.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnQtd74YPDxcskyDeOHlRZaP7kU=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.682574+00 2025-12-09 10:14:48.682578+00 5552 DH20220781#XL SPMX-20240815300698 \N \N \N 1 \N [{"file_id": "c4a6c121-3c65-4389-9b5d-6a90282e11e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg", "file_size": 115117, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0fe903c2ddb43d1ade6db3dadd7bb8e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J55G9E6ZydYP8v8nBbknvWAhiMw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.683837+00 2025-12-09 10:14:48.683842+00 5553 0003-106FWF#吊带款L SPMX-20240815300691 \N \N \N 1 \N [{"file_id": "e86b6cd5-4101-40a2-a82d-33d4b2992d2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e34254dc551949f4976805dab0976279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e34254dc551949f4976805dab0976279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e34254dc551949f4976805dab0976279.jpg", "file_size": 9088, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#吊带款L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34254dc551949f4976805dab0976279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34254dc551949f4976805dab0976279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34254dc551949f4976805dab0976279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e34254dc551949f4976805dab0976279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e34254dc551949f4976805dab0976279.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsYhOxzu3hcBn1wbqQmIC6FrZAA=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.685139+00 2025-12-09 10:14:48.685143+00 5554 23-2101#A7袖子4XL SPMX-20240815300700 \N \N \N 1 \N [{"file_id": "7d01ecba-a3da-46ec-9bf3-e0b1be1b7b73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11deed4a1bec41b3b6356fc15e5e0743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11deed4a1bec41b3b6356fc15e5e0743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11deed4a1bec41b3b6356fc15e5e0743.jpg", "file_size": 9700, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A7袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11deed4a1bec41b3b6356fc15e5e0743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11deed4a1bec41b3b6356fc15e5e0743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11deed4a1bec41b3b6356fc15e5e0743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11deed4a1bec41b3b6356fc15e5e0743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11deed4a1bec41b3b6356fc15e5e0743.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqKzy3AC_t2kM2nyg5wllvfQFWM=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.686417+00 2025-12-09 10:14:48.686422+00 5555 HSH156FW#黄色 SPMX-20240815300701 \N \N \N 1 \N [{"file_id": "f91ec6e1-5063-4b0f-a4ef-64b66bccada5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15601ca901994f41b8690f4e55e7b483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15601ca901994f41b8690f4e55e7b483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15601ca901994f41b8690f4e55e7b483.jpg", "file_size": 24870, "is_delete": false, "file_type": 1, "original_file_name": "HSH156FW#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15601ca901994f41b8690f4e55e7b483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15601ca901994f41b8690f4e55e7b483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15601ca901994f41b8690f4e55e7b483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15601ca901994f41b8690f4e55e7b483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15601ca901994f41b8690f4e55e7b483.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nxnGCpHIKN3NN_533MDwziz8XI=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.687679+00 2025-12-09 10:14:48.687683+00 5556 LZ1217#上身2号色 SPMX-20240815300695 \N \N \N 1 \N [{"file_id": "8ca3cec5-b84d-4ec1-a30b-2ae926155080", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baff22e2d180412eb7682881cfe2df20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baff22e2d180412eb7682881cfe2df20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baff22e2d180412eb7682881cfe2df20.jpg", "file_size": 17605, "is_delete": false, "file_type": 1, "original_file_name": "LZ1217#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baff22e2d180412eb7682881cfe2df20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baff22e2d180412eb7682881cfe2df20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baff22e2d180412eb7682881cfe2df20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baff22e2d180412eb7682881cfe2df20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baff22e2d180412eb7682881cfe2df20.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6gEbULdQkQgduLJHveR_zshpFsY=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.689042+00 2025-12-09 10:14:48.689046+00 5557 LHJ9261#7#天蓝 SPMX-20240815300692 \N \N \N 1 \N [{"file_id": "b34ee455-9d95-483d-be30-084a188b4c82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg", "file_size": 10033, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9261#7#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbaba87ccbdd4d5e9c4dfbc8c7ff3532.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZTCSo464hU4LeYZW2_D_cHk4o0=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.690544+00 2025-12-09 10:14:48.690549+00 5558 80079#前后幅 SPMX-20240815300694 \N \N \N 1 \N [{"file_id": "7c41e88f-d236-4a6b-917e-49284fe413ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f52e3072d134332baa4b65f5f1fecda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f52e3072d134332baa4b65f5f1fecda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f52e3072d134332baa4b65f5f1fecda.jpg", "file_size": 20377, "is_delete": false, "file_type": 1, "original_file_name": "80079#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f52e3072d134332baa4b65f5f1fecda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f52e3072d134332baa4b65f5f1fecda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f52e3072d134332baa4b65f5f1fecda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f52e3072d134332baa4b65f5f1fecda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f52e3072d134332baa4b65f5f1fecda.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMo51M-9LpTt9otAgmSqdTmIdDw=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.692023+00 2025-12-09 10:14:48.692028+00 5559 1054#白色 SPMX-20240815300699 \N \N \N 1 \N [{"file_id": "db28f6c6-3ffe-4d35-8b1f-596240b31e72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3f95c69c04e4e94824e4c831f4130ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3f95c69c04e4e94824e4c831f4130ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3f95c69c04e4e94824e4c831f4130ca.jpg", "file_size": 20747, "is_delete": false, "file_type": 1, "original_file_name": "1054#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f95c69c04e4e94824e4c831f4130ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f95c69c04e4e94824e4c831f4130ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f95c69c04e4e94824e4c831f4130ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3f95c69c04e4e94824e4c831f4130ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3f95c69c04e4e94824e4c831f4130ca.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPdMVlrhwUaIQf0M34iwqW6K8G8=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.693472+00 2025-12-09 10:14:48.693476+00 5560 1054#灰色匹布 SPMX-20240815300688 \N \N \N 1 \N [{"file_id": "019eea6b-094c-4df7-8409-4222eaa1598f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e4f855cf805454f96fca78243bc4220.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e4f855cf805454f96fca78243bc4220.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e4f855cf805454f96fca78243bc4220.jpg", "file_size": 5190, "is_delete": false, "file_type": 1, "original_file_name": "1054#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4f855cf805454f96fca78243bc4220.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4f855cf805454f96fca78243bc4220.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4f855cf805454f96fca78243bc4220.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e4f855cf805454f96fca78243bc4220.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e4f855cf805454f96fca78243bc4220.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkpEZG1CDrbCbwPuC_fM26qpQoM=", "createTime": "2024-08-15 14:42:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.694793+00 2025-12-09 10:14:48.694797+00 5561 LZ1217#上身3号色 SPMX-20240815300705 \N \N \N 1 \N [{"file_id": "6378fb68-4dfc-4b93-94d9-5ead294a8e24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "979d2f0fde0e43e2b9e4d7dace6c7f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "979d2f0fde0e43e2b9e4d7dace6c7f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "979d2f0fde0e43e2b9e4d7dace6c7f95.jpg", "file_size": 16614, "is_delete": false, "file_type": 1, "original_file_name": "LZ1217#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979d2f0fde0e43e2b9e4d7dace6c7f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979d2f0fde0e43e2b9e4d7dace6c7f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979d2f0fde0e43e2b9e4d7dace6c7f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/979d2f0fde0e43e2b9e4d7dace6c7f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/979d2f0fde0e43e2b9e4d7dace6c7f95.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QeblxQRU3uqdMEbrqbov1L5eDwo=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.696061+00 2025-12-09 10:14:48.696066+00 5562 80079#白色上衣 SPMX-20240815300703 \N \N \N 1 \N [{"file_id": "84c59117-44d8-45d7-a58d-5324fffc9d55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97035114e182449494acac836cef915e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97035114e182449494acac836cef915e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97035114e182449494acac836cef915e.jpg", "file_size": 13534, "is_delete": false, "file_type": 1, "original_file_name": "80079#白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97035114e182449494acac836cef915e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97035114e182449494acac836cef915e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97035114e182449494acac836cef915e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97035114e182449494acac836cef915e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97035114e182449494acac836cef915e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:porGDRLIasycfFYlzr6hRf91evs=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.697317+00 2025-12-09 10:14:48.697321+00 5563 FHXGPK-019-2 SPMX-20240815300706 \N \N \N 1 \N [{"file_id": "63f00c3a-1928-42e6-920d-fc2e842e22f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce77918889b94a69810fe42ec70bc4c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce77918889b94a69810fe42ec70bc4c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce77918889b94a69810fe42ec70bc4c5.jpg", "file_size": 35670, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-019-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce77918889b94a69810fe42ec70bc4c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce77918889b94a69810fe42ec70bc4c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce77918889b94a69810fe42ec70bc4c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce77918889b94a69810fe42ec70bc4c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce77918889b94a69810fe42ec70bc4c5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqb-4O6tLebjLiwnJbiY7U45UXY=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.698553+00 2025-12-09 10:14:48.698558+00 5564 JS88#D-补片4 SPMX-20240815300707 \N \N \N 1 \N [{"file_id": "1701571b-eb58-4c5e-806f-561529a6c4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "279ebdfcc643484ea171c1c6544558c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "279ebdfcc643484ea171c1c6544558c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "279ebdfcc643484ea171c1c6544558c8.jpg", "file_size": 9223, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D-补片4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279ebdfcc643484ea171c1c6544558c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279ebdfcc643484ea171c1c6544558c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279ebdfcc643484ea171c1c6544558c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/279ebdfcc643484ea171c1c6544558c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/279ebdfcc643484ea171c1c6544558c8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9925Yq1pdi5YDkWk_DSxYojeKw=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.699826+00 2025-12-09 10:14:48.69983+00 5565 0003-106FWF#吊带款M SPMX-20240815300702 \N \N \N 1 \N [{"file_id": "3064c1d5-6d04-4255-a397-6f7d4611aa64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeaaae54ed564a87845ecc7f6fba0c7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeaaae54ed564a87845ecc7f6fba0c7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeaaae54ed564a87845ecc7f6fba0c7b.jpg", "file_size": 9196, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#吊带款M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeaaae54ed564a87845ecc7f6fba0c7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeaaae54ed564a87845ecc7f6fba0c7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeaaae54ed564a87845ecc7f6fba0c7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeaaae54ed564a87845ecc7f6fba0c7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeaaae54ed564a87845ecc7f6fba0c7b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfAEeIE1wedp6BVKvGbM5FTbqJI=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.70106+00 2025-12-09 10:14:48.701065+00 5566 LHJ9262#20枣红 SPMX-20240815300704 \N \N \N 1 \N [{"file_id": "aaf224d6-ca58-4a0e-b90c-c162d81b0e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e0d986b67dc4423b3ec57b793bf160e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e0d986b67dc4423b3ec57b793bf160e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e0d986b67dc4423b3ec57b793bf160e.jpg", "file_size": 27405, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9262#20枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0d986b67dc4423b3ec57b793bf160e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0d986b67dc4423b3ec57b793bf160e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0d986b67dc4423b3ec57b793bf160e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e0d986b67dc4423b3ec57b793bf160e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e0d986b67dc4423b3ec57b793bf160e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:onhKlMJcR_zulXSkQX5pe63slPE=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.702315+00 2025-12-09 10:14:48.702319+00 5567 FHXGPK-019-3 SPMX-20240815300716 \N \N \N 1 \N [{"file_id": "e8a319b0-7b7b-45e1-8c34-63efe632e324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79338d3255644e559e04ff96919ce9df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79338d3255644e559e04ff96919ce9df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79338d3255644e559e04ff96919ce9df.jpg", "file_size": 35833, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-019-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79338d3255644e559e04ff96919ce9df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79338d3255644e559e04ff96919ce9df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79338d3255644e559e04ff96919ce9df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79338d3255644e559e04ff96919ce9df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79338d3255644e559e04ff96919ce9df.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMLpzlK23WpvLreVGMmq4IjqPlo=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.703542+00 2025-12-09 10:14:48.703546+00 5568 JS88#D版本2XL SPMX-20240815300718 \N \N \N 1 \N [{"file_id": "c20fe17a-333a-4842-bc20-7c2ae1a880e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfb7bbb5bb024d0aae19eb1f07672086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfb7bbb5bb024d0aae19eb1f07672086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfb7bbb5bb024d0aae19eb1f07672086.jpg", "file_size": 22526, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb7bbb5bb024d0aae19eb1f07672086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb7bbb5bb024d0aae19eb1f07672086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb7bbb5bb024d0aae19eb1f07672086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfb7bbb5bb024d0aae19eb1f07672086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfb7bbb5bb024d0aae19eb1f07672086.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VxU_ZTfOVFx56P2UXSFxo2p0le8=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.704798+00 2025-12-09 10:14:48.704801+00 5569 80079#白色裤子 SPMX-20240815300713 \N \N \N 1 \N [{"file_id": "1b1d0929-dc52-47fc-a184-2075c8135dc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2bad314d0de48fabaa1804442628286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2bad314d0de48fabaa1804442628286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2bad314d0de48fabaa1804442628286.jpg", "file_size": 13394, "is_delete": false, "file_type": 1, "original_file_name": "80079#白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bad314d0de48fabaa1804442628286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bad314d0de48fabaa1804442628286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bad314d0de48fabaa1804442628286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2bad314d0de48fabaa1804442628286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2bad314d0de48fabaa1804442628286.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XFMKnsLjSc5-1l-SKy1SkD9WBg=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.706052+00 2025-12-09 10:14:48.706055+00 5570 LHJ9262#25土黄 SPMX-20240815300715 \N \N \N 1 \N [{"file_id": "e5f36eae-b23e-4300-96fc-5e73936c1051", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8279b816f4734b59899aa8b0ba75931e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8279b816f4734b59899aa8b0ba75931e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8279b816f4734b59899aa8b0ba75931e.jpg", "file_size": 25499, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9262#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8279b816f4734b59899aa8b0ba75931e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8279b816f4734b59899aa8b0ba75931e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8279b816f4734b59899aa8b0ba75931e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8279b816f4734b59899aa8b0ba75931e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8279b816f4734b59899aa8b0ba75931e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQLaECHAWxWJ2IJesKpGdBYIh5s=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.707298+00 2025-12-09 10:14:48.707303+00 5571 LZ1217#上身4号色 SPMX-20240815300717 \N \N \N 1 \N [{"file_id": "bfb06d8d-4b5c-43c3-9bc1-0c34f6efb746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3309c9f3bb7149bb8bbf082585124f2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3309c9f3bb7149bb8bbf082585124f2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3309c9f3bb7149bb8bbf082585124f2c.jpg", "file_size": 17232, "is_delete": false, "file_type": 1, "original_file_name": "LZ1217#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3309c9f3bb7149bb8bbf082585124f2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3309c9f3bb7149bb8bbf082585124f2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3309c9f3bb7149bb8bbf082585124f2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3309c9f3bb7149bb8bbf082585124f2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3309c9f3bb7149bb8bbf082585124f2c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWDlTzUglToqmGuB3gezBjRC7DU=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.70852+00 2025-12-09 10:14:48.708524+00 5572 C262#白底黄花 SPMX-20240815300721 \N \N \N 1 \N [{"file_id": "d884577d-d9a1-42a5-9215-00e316178ff0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ebc906ea4d4db08c826614fd760a34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ebc906ea4d4db08c826614fd760a34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ebc906ea4d4db08c826614fd760a34.jpg", "file_size": 19643, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ebc906ea4d4db08c826614fd760a34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ebc906ea4d4db08c826614fd760a34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ebc906ea4d4db08c826614fd760a34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ebc906ea4d4db08c826614fd760a34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ebc906ea4d4db08c826614fd760a34.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CxCVHGqT1gsMVC7FpSYe4VN7no=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.709771+00 2025-12-09 10:14:48.709775+00 5573 1054#粉色匹布 SPMX-20240815300720 \N \N \N 1 \N [{"file_id": "f05efeaa-955c-4acd-adf9-fd3605a043d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47a39574c57546f28d32ffe6470860a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47a39574c57546f28d32ffe6470860a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47a39574c57546f28d32ffe6470860a9.jpg", "file_size": 5200, "is_delete": false, "file_type": 1, "original_file_name": "1054#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a39574c57546f28d32ffe6470860a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a39574c57546f28d32ffe6470860a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a39574c57546f28d32ffe6470860a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47a39574c57546f28d32ffe6470860a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47a39574c57546f28d32ffe6470860a9.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rdcYyhXwxk3-RMzdplGPqSs1So=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.711036+00 2025-12-09 10:14:48.71104+00 5574 23-2101#A7领子通用 SPMX-20240815300710 \N \N \N 1 \N [{"file_id": "f7fd49a2-140a-45c5-ba0e-3c60d760da37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa9ebd44fc604b9fa2e35b58d906f698.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa9ebd44fc604b9fa2e35b58d906f698.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa9ebd44fc604b9fa2e35b58d906f698.jpg", "file_size": 8363, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A7领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9ebd44fc604b9fa2e35b58d906f698.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9ebd44fc604b9fa2e35b58d906f698.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9ebd44fc604b9fa2e35b58d906f698.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa9ebd44fc604b9fa2e35b58d906f698.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa9ebd44fc604b9fa2e35b58d906f698.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNRuoGBg4ZuDRQ4Lacc1Vct-li8=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.712277+00 2025-12-09 10:14:48.712281+00 5575 DH20220781#XL橙 SPMX-20240815300714 \N \N \N 1 \N [{"file_id": "c09449c9-0e5a-4062-8b39-7f60d4312665", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a5f871a703444f9f577aff77bfc0b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a5f871a703444f9f577aff77bfc0b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a5f871a703444f9f577aff77bfc0b7.jpg", "file_size": 123165, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XL橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a5f871a703444f9f577aff77bfc0b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a5f871a703444f9f577aff77bfc0b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a5f871a703444f9f577aff77bfc0b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a5f871a703444f9f577aff77bfc0b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a5f871a703444f9f577aff77bfc0b7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUuywL91fwd4qh7eV46KRsEigKQ=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.713509+00 2025-12-09 10:14:48.713514+00 5576 0003-106FWF#吊带款S SPMX-20240815300709 \N \N \N 1 \N [{"file_id": "d599c648-7225-46af-9d16-8cd242e360c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e647eb7b7be943a9b97ac4c03521b480.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e647eb7b7be943a9b97ac4c03521b480.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e647eb7b7be943a9b97ac4c03521b480.jpg", "file_size": 8944, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#吊带款S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e647eb7b7be943a9b97ac4c03521b480.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e647eb7b7be943a9b97ac4c03521b480.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e647eb7b7be943a9b97ac4c03521b480.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e647eb7b7be943a9b97ac4c03521b480.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e647eb7b7be943a9b97ac4c03521b480.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fbus2GneaF13eKQEZFCW5czLu0c=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.714755+00 2025-12-09 10:14:48.714759+00 5577 23-2101#A8前后片3XL SPMX-20240815300722 \N \N \N 1 \N [{"file_id": "6223f62c-1c11-454e-83db-e484f550185e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "214c480d7389470db9c76b99286a6d0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "214c480d7389470db9c76b99286a6d0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "214c480d7389470db9c76b99286a6d0f.jpg", "file_size": 10256, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A8前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214c480d7389470db9c76b99286a6d0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214c480d7389470db9c76b99286a6d0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/214c480d7389470db9c76b99286a6d0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/214c480d7389470db9c76b99286a6d0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/214c480d7389470db9c76b99286a6d0f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0U1WQBYHrnCwLDYFxeoxJijebHU=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.716023+00 2025-12-09 10:14:48.716027+00 5578 HSH157FW#原色几何 SPMX-20240815300712 \N \N \N 1 \N [{"file_id": "32908e8a-5137-4d01-9aa9-ea0f3a7c0b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c1c0fa2e709474a9087b1db57620e71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c1c0fa2e709474a9087b1db57620e71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c1c0fa2e709474a9087b1db57620e71.jpg", "file_size": 26373, "is_delete": false, "file_type": 1, "original_file_name": "HSH157FW#原色几何.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1c0fa2e709474a9087b1db57620e71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1c0fa2e709474a9087b1db57620e71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1c0fa2e709474a9087b1db57620e71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c1c0fa2e709474a9087b1db57620e71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c1c0fa2e709474a9087b1db57620e71.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YR9CfVSW5H-mmoZE4UH891X0ZDI=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.717269+00 2025-12-09 10:14:48.717273+00 5579 0003-106FWF#番禺调色 SPMX-20240815300719 \N \N \N 1 \N [{"file_id": "4122ab5f-d52c-452a-a4ad-0c1c4afed499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg", "file_size": 20750, "is_delete": false, "file_type": 1, "original_file_name": "0003-106FWF#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34ab16e8d14f46fb8a8e1d06b3ffed2b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4S15nTUHZeLZKpD_z3tzBgqm-I=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.718487+00 2025-12-09 10:14:48.718491+00 5580 C262#白底黄花-放大0.3版本 SPMX-20240815300708 \N \N \N 1 \N [{"file_id": "3e943ea4-7e5f-47c0-8442-5dd2ba17504f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe80644e9bd649e69f80b52e03ba314d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe80644e9bd649e69f80b52e03ba314d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe80644e9bd649e69f80b52e03ba314d.jpg", "file_size": 19954, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底黄花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe80644e9bd649e69f80b52e03ba314d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe80644e9bd649e69f80b52e03ba314d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe80644e9bd649e69f80b52e03ba314d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe80644e9bd649e69f80b52e03ba314d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe80644e9bd649e69f80b52e03ba314d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kl0dYYuXkKjiCpFhczlnZxttd0I=", "createTime": "2024-08-15 14:42:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.71975+00 2025-12-09 10:14:48.719755+00 5581 1054#粉色 SPMX-20240815300711 \N \N \N 1 \N [{"file_id": "e149fb1f-41ac-416f-b649-0d4dd165ea23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4b38630f69d480b8337a9f6ff617cc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4b38630f69d480b8337a9f6ff617cc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4b38630f69d480b8337a9f6ff617cc3.jpg", "file_size": 18234, "is_delete": false, "file_type": 1, "original_file_name": "1054#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b38630f69d480b8337a9f6ff617cc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b38630f69d480b8337a9f6ff617cc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4b38630f69d480b8337a9f6ff617cc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4b38630f69d480b8337a9f6ff617cc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4b38630f69d480b8337a9f6ff617cc3.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xf1gjHP7cWOf7HI5Tv2Gzs49fT0=", "createTime": "2024-08-15 14:42:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.721008+00 2025-12-09 10:14:48.721012+00 5582 LZ1218#1号色 SPMX-20240815300725 \N \N \N 1 \N [{"file_id": "75ac8791-a765-4ecd-ab15-5a464a7ac020", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b26530e4c3bf4d12bc32c71d3657e6ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b26530e4c3bf4d12bc32c71d3657e6ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b26530e4c3bf4d12bc32c71d3657e6ad.jpg", "file_size": 20146, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26530e4c3bf4d12bc32c71d3657e6ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26530e4c3bf4d12bc32c71d3657e6ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b26530e4c3bf4d12bc32c71d3657e6ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b26530e4c3bf4d12bc32c71d3657e6ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b26530e4c3bf4d12bc32c71d3657e6ad.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eicgOCVsVJfcp81ir8dwAG-_xls=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.722241+00 2025-12-09 10:14:48.722245+00 5583 80079#袖子匹布 SPMX-20240815300723 \N \N \N 1 \N [{"file_id": "0c8c6c70-4751-4946-8f3a-10f1ed204e30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69ed6e5988f143d8b9bd019e97383270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69ed6e5988f143d8b9bd019e97383270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69ed6e5988f143d8b9bd019e97383270.jpg", "file_size": 12036, "is_delete": false, "file_type": 1, "original_file_name": "80079#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ed6e5988f143d8b9bd019e97383270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ed6e5988f143d8b9bd019e97383270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ed6e5988f143d8b9bd019e97383270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69ed6e5988f143d8b9bd019e97383270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69ed6e5988f143d8b9bd019e97383270.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKzvnab2NMPpU-FkjqMOOkb3XRk=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.72347+00 2025-12-09 10:14:48.723475+00 5584 HSH157FW#紫色几何 SPMX-20240815300724 \N \N \N 1 \N [{"file_id": "45956c37-57a1-403f-acd7-eb1da92e04f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9139a738211046388c26837d487c0a45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9139a738211046388c26837d487c0a45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9139a738211046388c26837d487c0a45.jpg", "file_size": 22001, "is_delete": false, "file_type": 1, "original_file_name": "HSH157FW#紫色几何.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9139a738211046388c26837d487c0a45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9139a738211046388c26837d487c0a45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9139a738211046388c26837d487c0a45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9139a738211046388c26837d487c0a45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9139a738211046388c26837d487c0a45.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASEtBNWXZO-a22uhKQ1M4AbbNWA=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.724702+00 2025-12-09 10:14:48.72471+00 5585 DH20220781#XL白 SPMX-20240815300728 \N \N \N 1 \N [{"file_id": "0151466a-73e7-429c-b1af-58d72e4b65cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "113d2d96deb54199a1b4d7175f891764.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "113d2d96deb54199a1b4d7175f891764.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "113d2d96deb54199a1b4d7175f891764.jpg", "file_size": 135011, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113d2d96deb54199a1b4d7175f891764.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113d2d96deb54199a1b4d7175f891764.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113d2d96deb54199a1b4d7175f891764.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/113d2d96deb54199a1b4d7175f891764.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/113d2d96deb54199a1b4d7175f891764.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5f5Uo8XTN7Q26cmlOW8UvldPPQ=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.725976+00 2025-12-09 10:14:48.725981+00 5586 LHJ9262#37梅红 SPMX-20240815300726 \N \N \N 1 \N [{"file_id": "b9d1737c-fb7d-4c1a-a334-425ca67e6a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7856e03dfc70496f861210b568b16473.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7856e03dfc70496f861210b568b16473.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7856e03dfc70496f861210b568b16473.jpg", "file_size": 25310, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9262#37梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7856e03dfc70496f861210b568b16473.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7856e03dfc70496f861210b568b16473.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7856e03dfc70496f861210b568b16473.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7856e03dfc70496f861210b568b16473.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7856e03dfc70496f861210b568b16473.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxM-xD9c6TDZu4jkZfRHUOFFbNM=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.72721+00 2025-12-09 10:14:48.727214+00 5587 FHXGPK-019-4 SPMX-20240815300727 \N \N \N 1 \N [{"file_id": "9426a7e5-a582-41a1-ad7e-27f02671f2c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c804383bcc64a09a5c0a0e47dca7fcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c804383bcc64a09a5c0a0e47dca7fcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c804383bcc64a09a5c0a0e47dca7fcc.jpg", "file_size": 34519, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-019-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c804383bcc64a09a5c0a0e47dca7fcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c804383bcc64a09a5c0a0e47dca7fcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c804383bcc64a09a5c0a0e47dca7fcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c804383bcc64a09a5c0a0e47dca7fcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c804383bcc64a09a5c0a0e47dca7fcc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxM9t-Udw4tcxhYmbO9SDoqdOlI=", "createTime": "2024-08-15 14:42:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.728469+00 2025-12-09 10:14:48.728473+00 5588 JS88#D版本L SPMX-20240815300732 \N \N \N 1 \N [{"file_id": "003a51bd-e10e-4516-9224-07a08646367e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3af393d3062492e887a5a71671836bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3af393d3062492e887a5a71671836bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3af393d3062492e887a5a71671836bf.jpg", "file_size": 23049, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3af393d3062492e887a5a71671836bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3af393d3062492e887a5a71671836bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3af393d3062492e887a5a71671836bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3af393d3062492e887a5a71671836bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3af393d3062492e887a5a71671836bf.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3lVy4JiSq0cEso02rlv8u4ewMk=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.729688+00 2025-12-09 10:14:48.729692+00 5589 1055#大人土黄 SPMX-20240815300730 \N \N \N 1 \N [{"file_id": "3e37e47d-34df-4c7c-a7c8-86e4937501f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adad2d2ed206450897c5631dc3985de6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adad2d2ed206450897c5631dc3985de6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adad2d2ed206450897c5631dc3985de6.jpg", "file_size": 11015, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adad2d2ed206450897c5631dc3985de6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adad2d2ed206450897c5631dc3985de6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adad2d2ed206450897c5631dc3985de6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adad2d2ed206450897c5631dc3985de6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adad2d2ed206450897c5631dc3985de6.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1UrKMMIzfeUBHA0oEtc3ASTYSc=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.730948+00 2025-12-09 10:14:48.730952+00 5590 0003-107FWF#V5曲线 SPMX-20240815300731 \N \N \N 1 \N [{"file_id": "994ea2be-3f68-4964-a85d-5432459696be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f72b8347ba04dea802f644889c3acaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f72b8347ba04dea802f644889c3acaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f72b8347ba04dea802f644889c3acaf.jpg", "file_size": 17234, "is_delete": false, "file_type": 1, "original_file_name": "0003-107FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f72b8347ba04dea802f644889c3acaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f72b8347ba04dea802f644889c3acaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f72b8347ba04dea802f644889c3acaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f72b8347ba04dea802f644889c3acaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f72b8347ba04dea802f644889c3acaf.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6g5ubucKMideTI1fFTQ4bYASaDU=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.732206+00 2025-12-09 10:14:48.73221+00 5591 23-2101#A8前后片4XL SPMX-20240815300729 \N \N \N 1 \N [{"file_id": "7671d6b2-b5a2-4df3-82da-8f004327c89d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "390064a6e66a4a1aa2e41b49acbc9e3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "390064a6e66a4a1aa2e41b49acbc9e3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "390064a6e66a4a1aa2e41b49acbc9e3c.jpg", "file_size": 10549, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A8前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390064a6e66a4a1aa2e41b49acbc9e3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390064a6e66a4a1aa2e41b49acbc9e3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390064a6e66a4a1aa2e41b49acbc9e3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/390064a6e66a4a1aa2e41b49acbc9e3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/390064a6e66a4a1aa2e41b49acbc9e3c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:br-JWlfqkR9gjn9IlIKUKnip1IM=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.733432+00 2025-12-09 10:14:48.733437+00 5592 HSH157FW#蓝底几何 SPMX-20240815300735 \N \N \N 1 \N [{"file_id": "5a3b3ced-628e-4105-8031-d3fd0c69ed1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f417606771b4406a59e369837080c4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f417606771b4406a59e369837080c4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f417606771b4406a59e369837080c4b.jpg", "file_size": 24558, "is_delete": false, "file_type": 1, "original_file_name": "HSH157FW#蓝底几何.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f417606771b4406a59e369837080c4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f417606771b4406a59e369837080c4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f417606771b4406a59e369837080c4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f417606771b4406a59e369837080c4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f417606771b4406a59e369837080c4b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1rHl6pjgGSROatKbtd17x76rj4=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.734689+00 2025-12-09 10:14:48.734694+00 5593 80079#黑色上衣 SPMX-20240815300738 \N \N \N 1 \N [{"file_id": "c2454697-e92e-490f-9728-4b7fa07289d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d229078ace3840958038b6e1d015a742.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d229078ace3840958038b6e1d015a742.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d229078ace3840958038b6e1d015a742.jpg", "file_size": 13837, "is_delete": false, "file_type": 1, "original_file_name": "80079#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d229078ace3840958038b6e1d015a742.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d229078ace3840958038b6e1d015a742.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d229078ace3840958038b6e1d015a742.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d229078ace3840958038b6e1d015a742.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d229078ace3840958038b6e1d015a742.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShRk2ZRz4bRIrjsLokdNGH9Xiis=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.73599+00 2025-12-09 10:14:48.735995+00 5594 80079#黑色裤子 SPMX-20240815300748 \N \N \N 1 \N [{"file_id": "382028b7-fa71-4582-85b2-29b3985e5d28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08a2f636d0024e2886f68d9742d26ff0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08a2f636d0024e2886f68d9742d26ff0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08a2f636d0024e2886f68d9742d26ff0.jpg", "file_size": 14025, "is_delete": false, "file_type": 1, "original_file_name": "80079#黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a2f636d0024e2886f68d9742d26ff0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a2f636d0024e2886f68d9742d26ff0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a2f636d0024e2886f68d9742d26ff0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08a2f636d0024e2886f68d9742d26ff0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08a2f636d0024e2886f68d9742d26ff0.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLHNMit2oYHaAhHGkXoJ04fU_8k=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.737255+00 2025-12-09 10:14:48.737259+00 5595 FHXGPK-019-5 SPMX-20240815300737 \N \N \N 1 \N [{"file_id": "8d14ade2-bc60-4dd4-96e9-d21277a74e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e288f59665a843fbb69a7420dc1aa905.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e288f59665a843fbb69a7420dc1aa905.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e288f59665a843fbb69a7420dc1aa905.jpg", "file_size": 34636, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-019-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e288f59665a843fbb69a7420dc1aa905.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e288f59665a843fbb69a7420dc1aa905.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e288f59665a843fbb69a7420dc1aa905.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e288f59665a843fbb69a7420dc1aa905.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e288f59665a843fbb69a7420dc1aa905.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFLDu3xx6VGPd8JJvr-WEFg8UKA=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.738497+00 2025-12-09 10:14:48.738502+00 5596 HSH158FW#粉 SPMX-20240815300745 \N \N \N 1 \N [{"file_id": "3893ced0-1b4d-4aed-950c-07c8dd3a3f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e9259153e5b4f7ca345f1daf7f5722d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e9259153e5b4f7ca345f1daf7f5722d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e9259153e5b4f7ca345f1daf7f5722d.jpg", "file_size": 15815, "is_delete": false, "file_type": 1, "original_file_name": "HSH158FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e9259153e5b4f7ca345f1daf7f5722d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e9259153e5b4f7ca345f1daf7f5722d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e9259153e5b4f7ca345f1daf7f5722d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e9259153e5b4f7ca345f1daf7f5722d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e9259153e5b4f7ca345f1daf7f5722d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rnvqKT7l2554ps72fbF789bm58=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.739795+00 2025-12-09 10:14:48.7398+00 5597 LHJ9264#118#深蓝 SPMX-20240815300747 \N \N \N 1 \N [{"file_id": "cfbf0aca-80f8-424a-b6af-c5c3388dc9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd5b8b16f5f74922af5d21b1e7128034.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd5b8b16f5f74922af5d21b1e7128034.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd5b8b16f5f74922af5d21b1e7128034.jpg", "file_size": 22720, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9264#118#深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5b8b16f5f74922af5d21b1e7128034.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5b8b16f5f74922af5d21b1e7128034.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5b8b16f5f74922af5d21b1e7128034.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd5b8b16f5f74922af5d21b1e7128034.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd5b8b16f5f74922af5d21b1e7128034.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StH9yrWhbyFcqxSRWGpnaakCrVk=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.741121+00 2025-12-09 10:14:48.741125+00 5598 DH20220781#XL红 SPMX-20240815300734 \N \N \N 1 \N [{"file_id": "140395e4-0ff5-4e2b-8a5c-3b06659bd869", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c058a08502fa4c318428a8a79b2d3d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c058a08502fa4c318428a8a79b2d3d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c058a08502fa4c318428a8a79b2d3d28.jpg", "file_size": 115243, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XL红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c058a08502fa4c318428a8a79b2d3d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c058a08502fa4c318428a8a79b2d3d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c058a08502fa4c318428a8a79b2d3d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c058a08502fa4c318428a8a79b2d3d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c058a08502fa4c318428a8a79b2d3d28.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cfBkN2SvLckO73kHxlJpysL5ak=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.742401+00 2025-12-09 10:14:48.742405+00 5599 LHJ9262#5彩兰 SPMX-20240815300736 \N \N \N 1 \N [{"file_id": "c81eb9c4-a46f-4829-be32-dfc3f01bce59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f72a8bb5d1c74b3fa3fd77da026638b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f72a8bb5d1c74b3fa3fd77da026638b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f72a8bb5d1c74b3fa3fd77da026638b2.jpg", "file_size": 28522, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9262#5彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72a8bb5d1c74b3fa3fd77da026638b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72a8bb5d1c74b3fa3fd77da026638b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72a8bb5d1c74b3fa3fd77da026638b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f72a8bb5d1c74b3fa3fd77da026638b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f72a8bb5d1c74b3fa3fd77da026638b2.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yt01w1iS7sPHVDH0vuF6OqhAhEg=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.743682+00 2025-12-09 10:14:48.743687+00 5600 JS88#D版本M SPMX-20240815300743 \N \N \N 1 \N [{"file_id": "cbdd5f30-409f-44a6-9666-bfd9787b0ce5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "941b015ea1df4c4dbeddda98edf6ab6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "941b015ea1df4c4dbeddda98edf6ab6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "941b015ea1df4c4dbeddda98edf6ab6f.jpg", "file_size": 20900, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b015ea1df4c4dbeddda98edf6ab6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b015ea1df4c4dbeddda98edf6ab6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b015ea1df4c4dbeddda98edf6ab6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/941b015ea1df4c4dbeddda98edf6ab6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/941b015ea1df4c4dbeddda98edf6ab6f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0sTMEUmTiPUhK0UJXZzNnddK9PI=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.744977+00 2025-12-09 10:14:48.744981+00 5601 0003-108FWF#蓝格子 SPMX-20240815300742 \N \N \N 1 \N [{"file_id": "0a1461a9-52f2-4a90-b14e-5a0384f8739e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db4f3c85b3541178f6ef8280620c31f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db4f3c85b3541178f6ef8280620c31f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db4f3c85b3541178f6ef8280620c31f.jpg", "file_size": 13238, "is_delete": false, "file_type": 1, "original_file_name": "0003-108FWF#蓝格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4f3c85b3541178f6ef8280620c31f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4f3c85b3541178f6ef8280620c31f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4f3c85b3541178f6ef8280620c31f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db4f3c85b3541178f6ef8280620c31f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db4f3c85b3541178f6ef8280620c31f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_4fXQRQOcqDYLQGimUlEtbpgzQ=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.746264+00 2025-12-09 10:14:48.746269+00 5602 LZ1218#2号色 SPMX-20240815300740 \N \N \N 1 \N [{"file_id": "9cf4c559-5508-480b-a5b4-e9e559c5afd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b800f9f135d4437b8d565fa71ebcc583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b800f9f135d4437b8d565fa71ebcc583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b800f9f135d4437b8d565fa71ebcc583.jpg", "file_size": 14741, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b800f9f135d4437b8d565fa71ebcc583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b800f9f135d4437b8d565fa71ebcc583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b800f9f135d4437b8d565fa71ebcc583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b800f9f135d4437b8d565fa71ebcc583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b800f9f135d4437b8d565fa71ebcc583.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rV7cxhKE1O81GuqEH8vVfUc1MYo=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.747535+00 2025-12-09 10:14:48.74754+00 5603 DH20220781#XS SPMX-20240815300746 \N \N \N 1 \N [{"file_id": "838a18e5-403c-4908-ab39-9380bf07c68f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "089396b8e53b472ba7baab23e2e34ea1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "089396b8e53b472ba7baab23e2e34ea1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "089396b8e53b472ba7baab23e2e34ea1.jpg", "file_size": 11357, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089396b8e53b472ba7baab23e2e34ea1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089396b8e53b472ba7baab23e2e34ea1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089396b8e53b472ba7baab23e2e34ea1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/089396b8e53b472ba7baab23e2e34ea1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/089396b8e53b472ba7baab23e2e34ea1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MO1Ij8mlLWxofiUbqpbW68YNZsw=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.748822+00 2025-12-09 10:14:48.748826+00 5604 C262#白底黑色 SPMX-20240815300733 \N \N \N 1 \N [{"file_id": "7bdfb405-e47d-4e26-9655-f8be3b8b97ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e61d1f8945f743d3b8a376ad5e385ae2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e61d1f8945f743d3b8a376ad5e385ae2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e61d1f8945f743d3b8a376ad5e385ae2.jpg", "file_size": 59711, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d1f8945f743d3b8a376ad5e385ae2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d1f8945f743d3b8a376ad5e385ae2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d1f8945f743d3b8a376ad5e385ae2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e61d1f8945f743d3b8a376ad5e385ae2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e61d1f8945f743d3b8a376ad5e385ae2.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSI3Mg6FgomgIdFulXfDXlIE83o=", "createTime": "2024-08-15 14:42:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.750114+00 2025-12-09 10:14:48.750119+00 5605 FHXGPK-020-1 SPMX-20240815300749 \N \N \N 1 \N [{"file_id": "2d457d95-4c97-490c-9451-653f17fdbb19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db174cad50e5496e850ebc77c36bd293.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db174cad50e5496e850ebc77c36bd293.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db174cad50e5496e850ebc77c36bd293.jpg", "file_size": 34320, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-020-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db174cad50e5496e850ebc77c36bd293.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db174cad50e5496e850ebc77c36bd293.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db174cad50e5496e850ebc77c36bd293.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db174cad50e5496e850ebc77c36bd293.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db174cad50e5496e850ebc77c36bd293.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9FWehFk4TserRbrnk-k-6S1IcA=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.751386+00 2025-12-09 10:14:48.751391+00 5606 C262#白底黑花-放大0.3版本 SPMX-20240815300744 \N \N \N 1 \N [{"file_id": "ac8a514e-c927-4736-a890-2db00573817d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fc07c84af2f4a12b4f1c8dd80682a15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fc07c84af2f4a12b4f1c8dd80682a15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fc07c84af2f4a12b4f1c8dd80682a15.jpg", "file_size": 24026, "is_delete": false, "file_type": 1, "original_file_name": "C262#白底黑花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fc07c84af2f4a12b4f1c8dd80682a15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fc07c84af2f4a12b4f1c8dd80682a15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fc07c84af2f4a12b4f1c8dd80682a15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fc07c84af2f4a12b4f1c8dd80682a15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fc07c84af2f4a12b4f1c8dd80682a15.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qM41wLy7HYqqg2pGrUw2PJoAcU8=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.75266+00 2025-12-09 10:14:48.752664+00 5607 23-2101#A8袖子3XL SPMX-20240815300739 \N \N \N 1 \N [{"file_id": "f78a9f04-fc84-4087-b928-c028f51944e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2fa46a37f5e4113af8597d2f45fd653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2fa46a37f5e4113af8597d2f45fd653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2fa46a37f5e4113af8597d2f45fd653.jpg", "file_size": 9984, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A8袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fa46a37f5e4113af8597d2f45fd653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fa46a37f5e4113af8597d2f45fd653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fa46a37f5e4113af8597d2f45fd653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2fa46a37f5e4113af8597d2f45fd653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2fa46a37f5e4113af8597d2f45fd653.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAHMW0G1vP7H-OcyaReY9qCZKSs=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.753938+00 2025-12-09 10:14:48.753943+00 5608 1055#大人枣红 SPMX-20240815300741 \N \N \N 1 \N [{"file_id": "0491a9a9-1261-4c18-83a9-8d19ff6c3a05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8990c081d24247f9be8d56b06b4e7fae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8990c081d24247f9be8d56b06b4e7fae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8990c081d24247f9be8d56b06b4e7fae.jpg", "file_size": 11456, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8990c081d24247f9be8d56b06b4e7fae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8990c081d24247f9be8d56b06b4e7fae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8990c081d24247f9be8d56b06b4e7fae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8990c081d24247f9be8d56b06b4e7fae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8990c081d24247f9be8d56b06b4e7fae.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzqvO-lj-5CRexUMeFYHz_PGizA=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.755221+00 2025-12-09 10:14:48.755225+00 5609 23-2101#A8袖子4XL SPMX-20240815300751 \N \N \N 1 \N [{"file_id": "65da8141-cb60-4d08-a7fb-7fb770b86170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fe028ec94ca42d3a6e7cdca8ee67539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fe028ec94ca42d3a6e7cdca8ee67539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fe028ec94ca42d3a6e7cdca8ee67539.jpg", "file_size": 11018, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A8袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe028ec94ca42d3a6e7cdca8ee67539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe028ec94ca42d3a6e7cdca8ee67539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe028ec94ca42d3a6e7cdca8ee67539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fe028ec94ca42d3a6e7cdca8ee67539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fe028ec94ca42d3a6e7cdca8ee67539.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_kNeZFNylu2kCS13--nfHgu0L8=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.756503+00 2025-12-09 10:14:48.756507+00 5610 0003-108FWF#黄格子 SPMX-20240815300753 \N \N \N 1 \N [{"file_id": "13af1b48-08d3-4765-a9af-9239010fa415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc2c5ffc7d74473c8d2b305e1de81e97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc2c5ffc7d74473c8d2b305e1de81e97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc2c5ffc7d74473c8d2b305e1de81e97.jpg", "file_size": 12362, "is_delete": false, "file_type": 1, "original_file_name": "0003-108FWF#黄格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c5ffc7d74473c8d2b305e1de81e97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c5ffc7d74473c8d2b305e1de81e97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c5ffc7d74473c8d2b305e1de81e97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc2c5ffc7d74473c8d2b305e1de81e97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc2c5ffc7d74473c8d2b305e1de81e97.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFKw5RNlxw6HOCIBjkdUIxP256g=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.757774+00 2025-12-09 10:14:48.757778+00 5611 LZ1218#3号色 SPMX-20240815300752 \N \N \N 1 \N [{"file_id": "9c7f9298-f051-4a25-99d0-7e769607f200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18488cf0d519403db7c46569ab5a26fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18488cf0d519403db7c46569ab5a26fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18488cf0d519403db7c46569ab5a26fc.jpg", "file_size": 20476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18488cf0d519403db7c46569ab5a26fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18488cf0d519403db7c46569ab5a26fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18488cf0d519403db7c46569ab5a26fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18488cf0d519403db7c46569ab5a26fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18488cf0d519403db7c46569ab5a26fc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IauCQFnNd5iPf5Nmf3-LBtY36Cw=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.759048+00 2025-12-09 10:14:48.759052+00 5612 1055#大人绿色 SPMX-20240815300761 \N \N \N 1 \N [{"file_id": "4497af5a-597e-41a2-aa17-76e940021724", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "842b621db2d04044b842416d531d1ccc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "842b621db2d04044b842416d531d1ccc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "842b621db2d04044b842416d531d1ccc.jpg", "file_size": 11211, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842b621db2d04044b842416d531d1ccc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842b621db2d04044b842416d531d1ccc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/842b621db2d04044b842416d531d1ccc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/842b621db2d04044b842416d531d1ccc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/842b621db2d04044b842416d531d1ccc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3dJO3VW5vVYf5OAqv_fZPrDGdoI=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.760345+00 2025-12-09 10:14:48.760349+00 5613 LHJ9264#20#枣红 SPMX-20240815300758 \N \N \N 1 \N [{"file_id": "9e972340-c401-4c4d-b5d5-feeb02834998", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "755a6e5e8b29459293ce8d0ae4f35dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "755a6e5e8b29459293ce8d0ae4f35dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "755a6e5e8b29459293ce8d0ae4f35dcd.jpg", "file_size": 23194, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9264#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755a6e5e8b29459293ce8d0ae4f35dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755a6e5e8b29459293ce8d0ae4f35dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755a6e5e8b29459293ce8d0ae4f35dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/755a6e5e8b29459293ce8d0ae4f35dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/755a6e5e8b29459293ce8d0ae4f35dcd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKaorr0MsKtml7zkmV02s2kDiwA=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.761612+00 2025-12-09 10:14:48.761616+00 5614 C262#绿底白色 SPMX-20240815300755 \N \N \N 1 \N [{"file_id": "d92d8bda-fd09-475d-88ad-7c3c39d0703b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2932f9e2210546ae83f513a3534f827a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2932f9e2210546ae83f513a3534f827a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2932f9e2210546ae83f513a3534f827a.jpg", "file_size": 60220, "is_delete": false, "file_type": 1, "original_file_name": "C262#绿底白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2932f9e2210546ae83f513a3534f827a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2932f9e2210546ae83f513a3534f827a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2932f9e2210546ae83f513a3534f827a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2932f9e2210546ae83f513a3534f827a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2932f9e2210546ae83f513a3534f827a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PzlxjOvEjol120SgECEoyAWTy4=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.762908+00 2025-12-09 10:14:48.762912+00 5615 FHXGPK-020-2 SPMX-20240815300759 \N \N \N 1 \N [{"file_id": "6b5e3a76-85ce-4d54-a651-2b38cfea9d00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67b08a53afe34c5bbd0ff36b25179dff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67b08a53afe34c5bbd0ff36b25179dff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67b08a53afe34c5bbd0ff36b25179dff.jpg", "file_size": 35687, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-020-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b08a53afe34c5bbd0ff36b25179dff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b08a53afe34c5bbd0ff36b25179dff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b08a53afe34c5bbd0ff36b25179dff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67b08a53afe34c5bbd0ff36b25179dff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67b08a53afe34c5bbd0ff36b25179dff.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDgEi_zoRfwNyuh8FOD6CEdTUBs=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.764175+00 2025-12-09 10:14:48.764179+00 5616 23-2101#A8领子通用 SPMX-20240815300762 \N \N \N 1 \N [{"file_id": "ddd3e794-a2b0-4c14-b050-5001094664b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9624657056b4065a4ef0038ec5f214d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9624657056b4065a4ef0038ec5f214d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9624657056b4065a4ef0038ec5f214d.jpg", "file_size": 8294, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A8领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9624657056b4065a4ef0038ec5f214d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9624657056b4065a4ef0038ec5f214d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9624657056b4065a4ef0038ec5f214d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9624657056b4065a4ef0038ec5f214d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9624657056b4065a4ef0038ec5f214d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLiK1YV8S2yPrBziyelf1qWqaCw=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.765451+00 2025-12-09 10:14:48.765455+00 5617 HSH158FW#紫 SPMX-20240815300756 \N \N \N 1 \N [{"file_id": "7fd70862-49b3-4c8c-95e0-b97dd4022f90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ab88e0947d24704a6d2253a64a0d54e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ab88e0947d24704a6d2253a64a0d54e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ab88e0947d24704a6d2253a64a0d54e.jpg", "file_size": 16339, "is_delete": false, "file_type": 1, "original_file_name": "HSH158FW#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ab88e0947d24704a6d2253a64a0d54e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ab88e0947d24704a6d2253a64a0d54e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ab88e0947d24704a6d2253a64a0d54e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ab88e0947d24704a6d2253a64a0d54e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ab88e0947d24704a6d2253a64a0d54e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lcuh-XE93u_P7VCVCT3aACRLmLk=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.766737+00 2025-12-09 10:14:48.766741+00 5618 DH20220781#XS橙 SPMX-20240815300757 \N \N \N 1 \N [{"file_id": "3e6c1ad6-5848-427b-bcf4-15c29ccc3158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7e5fe84494d4cb3ab1ada4594525d1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7e5fe84494d4cb3ab1ada4594525d1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7e5fe84494d4cb3ab1ada4594525d1c.jpg", "file_size": 10969, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XS橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e5fe84494d4cb3ab1ada4594525d1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e5fe84494d4cb3ab1ada4594525d1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e5fe84494d4cb3ab1ada4594525d1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7e5fe84494d4cb3ab1ada4594525d1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7e5fe84494d4cb3ab1ada4594525d1c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LEZAZD0S2MnwhQgmmkgtqAGNdi0=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.76801+00 2025-12-09 10:14:48.768014+00 5619 80080#前后幅 SPMX-20240815300760 \N \N \N 1 \N [{"file_id": "58df500b-4e4e-4e84-8781-ed0d2768d151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85060eb5ac1043a09ba95a4646543ba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85060eb5ac1043a09ba95a4646543ba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85060eb5ac1043a09ba95a4646543ba7.jpg", "file_size": 17731, "is_delete": false, "file_type": 1, "original_file_name": "80080#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85060eb5ac1043a09ba95a4646543ba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85060eb5ac1043a09ba95a4646543ba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85060eb5ac1043a09ba95a4646543ba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85060eb5ac1043a09ba95a4646543ba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85060eb5ac1043a09ba95a4646543ba7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnJDZ2DAwU16VMJ_6f6w0dCWdsA=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.769295+00 2025-12-09 10:14:48.7693+00 5620 1055#大人红色 SPMX-20240815300750 \N \N \N 1 \N [{"file_id": "259d94f5-a3ed-43b0-a93a-aedc95bac100", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaabdf729db442ee944d4e8211f340e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaabdf729db442ee944d4e8211f340e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaabdf729db442ee944d4e8211f340e7.jpg", "file_size": 11989, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdf729db442ee944d4e8211f340e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdf729db442ee944d4e8211f340e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdf729db442ee944d4e8211f340e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaabdf729db442ee944d4e8211f340e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaabdf729db442ee944d4e8211f340e7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcrYjzjNB4CCt2Lb10ol2YNjzC8=", "createTime": "2024-08-15 14:42:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.770585+00 2025-12-09 10:14:48.770589+00 5621 JS88#D版本S SPMX-20240815300754 \N \N \N 1 \N [{"file_id": "59863f54-6858-4cdb-866e-741a6d34d2f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "975d9f7b504b4e11a95941a975d99cdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "975d9f7b504b4e11a95941a975d99cdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "975d9f7b504b4e11a95941a975d99cdd.jpg", "file_size": 19453, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975d9f7b504b4e11a95941a975d99cdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975d9f7b504b4e11a95941a975d99cdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975d9f7b504b4e11a95941a975d99cdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/975d9f7b504b4e11a95941a975d99cdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/975d9f7b504b4e11a95941a975d99cdd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whZAC4lb96G7RNAxHS0ezHb3Weg=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.77186+00 2025-12-09 10:14:48.771864+00 5622 80080#白色上衣 SPMX-20240815300773 \N \N \N 1 \N [{"file_id": "a4100095-a6cc-483c-b6da-e80807ca8c8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32698da8bf2f43859301ec21c0f952cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32698da8bf2f43859301ec21c0f952cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32698da8bf2f43859301ec21c0f952cb.jpg", "file_size": 13744, "is_delete": false, "file_type": 1, "original_file_name": "80080#白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32698da8bf2f43859301ec21c0f952cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32698da8bf2f43859301ec21c0f952cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32698da8bf2f43859301ec21c0f952cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32698da8bf2f43859301ec21c0f952cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32698da8bf2f43859301ec21c0f952cb.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wbCBR_zzfli_yDkCMca14e_poxc=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.773132+00 2025-12-09 10:14:48.773136+00 5623 LHJ9264#22#深玫红 SPMX-20240815300769 \N \N \N 1 \N [{"file_id": "acf228b6-ba29-4d62-95d7-c55111219142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5607338b45fc4319876f080b6add46dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5607338b45fc4319876f080b6add46dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5607338b45fc4319876f080b6add46dc.jpg", "file_size": 23761, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9264#22#深玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5607338b45fc4319876f080b6add46dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5607338b45fc4319876f080b6add46dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5607338b45fc4319876f080b6add46dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5607338b45fc4319876f080b6add46dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5607338b45fc4319876f080b6add46dc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjRl2HZsEE97svNuKGdUg0uZ7sI=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.774404+00 2025-12-09 10:14:48.774409+00 5624 HSH158FW#蓝 SPMX-20240815300766 \N \N \N 1 \N [{"file_id": "4a219b97-0f1e-463b-a075-69319bf47fc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebbed6dbc8fb441a9231b76e530b9e2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebbed6dbc8fb441a9231b76e530b9e2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebbed6dbc8fb441a9231b76e530b9e2f.jpg", "file_size": 14977, "is_delete": false, "file_type": 1, "original_file_name": "HSH158FW#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbed6dbc8fb441a9231b76e530b9e2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbed6dbc8fb441a9231b76e530b9e2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbed6dbc8fb441a9231b76e530b9e2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebbed6dbc8fb441a9231b76e530b9e2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebbed6dbc8fb441a9231b76e530b9e2f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-zicdoYgfd2DBAfRhPYMC7yUOA=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.775715+00 2025-12-09 10:14:48.775719+00 5625 C262#绿底白花-放大0.3版本 SPMX-20240815300765 \N \N \N 1 \N [{"file_id": "6b677ee5-c639-478e-902b-16746e5625bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7179e28aef854a53adaddb60e6f503a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7179e28aef854a53adaddb60e6f503a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7179e28aef854a53adaddb60e6f503a8.jpg", "file_size": 24772, "is_delete": false, "file_type": 1, "original_file_name": "C262#绿底白花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7179e28aef854a53adaddb60e6f503a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7179e28aef854a53adaddb60e6f503a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7179e28aef854a53adaddb60e6f503a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7179e28aef854a53adaddb60e6f503a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7179e28aef854a53adaddb60e6f503a8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpZLnH06V7kcKr1eApem9Hmfd7k=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.777035+00 2025-12-09 10:14:48.77704+00 5626 JS88#D版本XL SPMX-20240815300767 \N \N \N 1 \N [{"file_id": "f65bc73f-2e36-4a3f-abdb-c896c8f96228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg", "file_size": 23376, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fdb9ab4d0c1499aa8a6cc84825e1a81.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvPUe5845TllKv2kFrIIra1CBfU=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.778325+00 2025-12-09 10:14:48.778329+00 5627 0003-10FWE#VS-D3 SPMX-20240815300775 \N \N \N 1 \N [{"file_id": "4cfff1a4-3130-4f80-83d4-67995c8ec886", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc4e8623b09347ce91c4b4fa4bf21c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc4e8623b09347ce91c4b4fa4bf21c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc4e8623b09347ce91c4b4fa4bf21c3e.jpg", "file_size": 18040, "is_delete": false, "file_type": 1, "original_file_name": "0003-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4e8623b09347ce91c4b4fa4bf21c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4e8623b09347ce91c4b4fa4bf21c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4e8623b09347ce91c4b4fa4bf21c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc4e8623b09347ce91c4b4fa4bf21c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc4e8623b09347ce91c4b4fa4bf21c3e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eB3zd-fGgS1Fk55JAEsupjynzC4=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.779593+00 2025-12-09 10:14:48.779597+00 5628 FHXGPK-020-3 SPMX-20240815300772 \N \N \N 1 \N [{"file_id": "5380a7b5-4db1-4794-956f-d6b0e748b905", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f5a6827c452459fa454ff82028e2359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f5a6827c452459fa454ff82028e2359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f5a6827c452459fa454ff82028e2359.jpg", "file_size": 33782, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-020-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5a6827c452459fa454ff82028e2359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5a6827c452459fa454ff82028e2359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5a6827c452459fa454ff82028e2359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f5a6827c452459fa454ff82028e2359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f5a6827c452459fa454ff82028e2359.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:11q0WW5LcqiPeigb2htEhXrjjE8=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.780917+00 2025-12-09 10:14:48.780922+00 5629 1055#大人蓝色 SPMX-20240815300771 \N \N \N 1 \N [{"file_id": "b216ba8c-2688-4161-ba6f-24272db3212d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7743d18a4af431aa92bc37a584272ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7743d18a4af431aa92bc37a584272ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7743d18a4af431aa92bc37a584272ed.jpg", "file_size": 11459, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7743d18a4af431aa92bc37a584272ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7743d18a4af431aa92bc37a584272ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7743d18a4af431aa92bc37a584272ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7743d18a4af431aa92bc37a584272ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7743d18a4af431aa92bc37a584272ed.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKRmiSUuSsuwTEc_9u2vZDJ-lZc=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.782224+00 2025-12-09 10:14:48.782228+00 5630 0003-109FWF#V5曲线 SPMX-20240815300764 \N \N \N 1 \N [{"file_id": "32f00df5-ac49-41fe-8016-1e79fc8251be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b877a777cba4c6eb40e0cf1b4aeb942.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b877a777cba4c6eb40e0cf1b4aeb942.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b877a777cba4c6eb40e0cf1b4aeb942.jpg", "file_size": 14786, "is_delete": false, "file_type": 1, "original_file_name": "0003-109FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b877a777cba4c6eb40e0cf1b4aeb942.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b877a777cba4c6eb40e0cf1b4aeb942.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b877a777cba4c6eb40e0cf1b4aeb942.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b877a777cba4c6eb40e0cf1b4aeb942.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b877a777cba4c6eb40e0cf1b4aeb942.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkYIsRqCcDYlVkQpX8_NxmC-RTY=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.783498+00 2025-12-09 10:14:48.783502+00 5631 LZ1218#4号色 SPMX-20240815300763 \N \N \N 1 \N [{"file_id": "ee9a43b7-b14b-4967-9b3d-db53b46c3c79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa641c5732874403b3bf33acf3bf541b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa641c5732874403b3bf33acf3bf541b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa641c5732874403b3bf33acf3bf541b.jpg", "file_size": 20879, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa641c5732874403b3bf33acf3bf541b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa641c5732874403b3bf33acf3bf541b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa641c5732874403b3bf33acf3bf541b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa641c5732874403b3bf33acf3bf541b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa641c5732874403b3bf33acf3bf541b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXIVsgnHcaS_3GHpR0BLwp8Kc_I=", "createTime": "2024-08-15 14:42:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.784784+00 2025-12-09 10:14:48.784788+00 5632 LZ1218#5号色 SPMX-20240815300774 \N \N \N 1 \N [{"file_id": "f40215fc-1a35-4a55-a26e-ddfc141b3f25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14ab7068f6424c3b8be71db88d297787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14ab7068f6424c3b8be71db88d297787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14ab7068f6424c3b8be71db88d297787.jpg", "file_size": 20906, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ab7068f6424c3b8be71db88d297787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ab7068f6424c3b8be71db88d297787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ab7068f6424c3b8be71db88d297787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14ab7068f6424c3b8be71db88d297787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14ab7068f6424c3b8be71db88d297787.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26a21bW3NgK5iuEpnFk1hB7l_hk=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.786062+00 2025-12-09 10:14:48.786066+00 5633 23-2101#A9#领子通用 SPMX-20240815300770 \N \N \N 1 \N [{"file_id": "4fa75787-d714-464e-b9b9-eb1e0e696b19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2cd3b17aeca406b8dd8713b3de8df8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2cd3b17aeca406b8dd8713b3de8df8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2cd3b17aeca406b8dd8713b3de8df8e.jpg", "file_size": 8328, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A9#领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2cd3b17aeca406b8dd8713b3de8df8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2cd3b17aeca406b8dd8713b3de8df8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2cd3b17aeca406b8dd8713b3de8df8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2cd3b17aeca406b8dd8713b3de8df8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2cd3b17aeca406b8dd8713b3de8df8e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zh3uqzG2OZ41HteiSelBeoT4UzE=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.787364+00 2025-12-09 10:14:48.787368+00 5634 DH20220781#XS白 SPMX-20240815300768 \N \N \N 1 \N [{"file_id": "f86d0543-4344-430f-8d6e-6cd9bde96b1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1ff8fa432741318c0c06c6f532e095.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1ff8fa432741318c0c06c6f532e095.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1ff8fa432741318c0c06c6f532e095.jpg", "file_size": 9976, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XS白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1ff8fa432741318c0c06c6f532e095.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1ff8fa432741318c0c06c6f532e095.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1ff8fa432741318c0c06c6f532e095.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1ff8fa432741318c0c06c6f532e095.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1ff8fa432741318c0c06c6f532e095.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24enB9NYpSjG9WFHAf0jD7jv0JI=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.788649+00 2025-12-09 10:14:48.788653+00 5635 C262#绿底白花 SPMX-20240815300777 \N \N \N 1 \N [{"file_id": "825cd4c5-e8b1-4423-9df4-6c25bbc1511c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bf05604014a430c96adb6514d00f9da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bf05604014a430c96adb6514d00f9da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bf05604014a430c96adb6514d00f9da.jpg", "file_size": 24021, "is_delete": false, "file_type": 1, "original_file_name": "C262#绿底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf05604014a430c96adb6514d00f9da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf05604014a430c96adb6514d00f9da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf05604014a430c96adb6514d00f9da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bf05604014a430c96adb6514d00f9da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bf05604014a430c96adb6514d00f9da.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x38pqLmxCZ3aIZFCuWd0lUZvNpo=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.789952+00 2025-12-09 10:14:48.789956+00 5636 HSH158FW#黑 SPMX-20240815300776 \N \N \N 1 \N [{"file_id": "ca61f33e-d5b7-4a67-99ba-12a2ed6f04a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a10c89103bd4d3eac117310c6d91741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a10c89103bd4d3eac117310c6d91741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a10c89103bd4d3eac117310c6d91741.jpg", "file_size": 19638, "is_delete": false, "file_type": 1, "original_file_name": "HSH158FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10c89103bd4d3eac117310c6d91741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10c89103bd4d3eac117310c6d91741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10c89103bd4d3eac117310c6d91741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a10c89103bd4d3eac117310c6d91741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a10c89103bd4d3eac117310c6d91741.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43Pgwr7u0OCChmc0vpuH0YcOCDw=", "createTime": "2024-08-15 14:42:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.791215+00 2025-12-09 10:14:48.791219+00 5637 DH20220781#XS红 SPMX-20240815300778 \N \N \N 1 \N [{"file_id": "fe0ca960-7f13-4d93-88de-f06b8f63fea8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a6e85401040412f8d4c913b34753791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a6e85401040412f8d4c913b34753791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a6e85401040412f8d4c913b34753791.jpg", "file_size": 11487, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#XS红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6e85401040412f8d4c913b34753791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6e85401040412f8d4c913b34753791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6e85401040412f8d4c913b34753791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a6e85401040412f8d4c913b34753791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a6e85401040412f8d4c913b34753791.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7q6l_TrHqEXGtx7sZ8amkMSPnc=", "createTime": "2024-08-15 14:42:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.792511+00 2025-12-09 10:14:48.792515+00 5638 FHXGPK-020-4 SPMX-20240815300786 \N \N \N 1 \N [{"file_id": "41acfd2b-1882-49d7-bbb1-69cfc9cd9790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81577c252e9a4ff18e937d3d71d334e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81577c252e9a4ff18e937d3d71d334e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81577c252e9a4ff18e937d3d71d334e1.jpg", "file_size": 34428, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-020-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81577c252e9a4ff18e937d3d71d334e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81577c252e9a4ff18e937d3d71d334e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81577c252e9a4ff18e937d3d71d334e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81577c252e9a4ff18e937d3d71d334e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81577c252e9a4ff18e937d3d71d334e1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dd5VthKqZhcN3MiQ9nAc8MKjVKA=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.793799+00 2025-12-09 10:14:48.793804+00 5639 LZ1218#6号色 SPMX-20240815300788 \N \N \N 1 \N [{"file_id": "2d6b083b-8196-4ac7-a093-f0e81ad5bd23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fef1f2b331c489f9bb9941a594047e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fef1f2b331c489f9bb9941a594047e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fef1f2b331c489f9bb9941a594047e8.jpg", "file_size": 20295, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fef1f2b331c489f9bb9941a594047e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fef1f2b331c489f9bb9941a594047e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fef1f2b331c489f9bb9941a594047e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fef1f2b331c489f9bb9941a594047e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fef1f2b331c489f9bb9941a594047e8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qf55zoaYGA0C8YrZ6oBHi1BGN3s=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.795082+00 2025-12-09 10:14:48.795086+00 5640 LHJ9264#25土黄 SPMX-20240815300784 \N \N \N 1 \N [{"file_id": "7fc3e855-5a7e-40a2-ba3a-76b3fbec8689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "105913a6295d4f59b7fdccd71dec7899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "105913a6295d4f59b7fdccd71dec7899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "105913a6295d4f59b7fdccd71dec7899.jpg", "file_size": 22015, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9264#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105913a6295d4f59b7fdccd71dec7899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105913a6295d4f59b7fdccd71dec7899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/105913a6295d4f59b7fdccd71dec7899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/105913a6295d4f59b7fdccd71dec7899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/105913a6295d4f59b7fdccd71dec7899.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bGNPvx6csFr-KKpdFhj4jq-qgQ=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.796357+00 2025-12-09 10:14:48.796362+00 5641 HSH159FW#VS-D3 SPMX-20240815300781 \N \N \N 1 \N [{"file_id": "6e09dfaa-14f9-4c22-a32b-f7914afe1a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e942e45140a84162a572d3db6d1f71c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e942e45140a84162a572d3db6d1f71c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e942e45140a84162a572d3db6d1f71c7.jpg", "file_size": 18459, "is_delete": false, "file_type": 1, "original_file_name": "HSH159FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e942e45140a84162a572d3db6d1f71c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e942e45140a84162a572d3db6d1f71c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e942e45140a84162a572d3db6d1f71c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e942e45140a84162a572d3db6d1f71c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e942e45140a84162a572d3db6d1f71c7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gPMUziAz8IIcLpzHw-7utDtynt4=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.797621+00 2025-12-09 10:14:48.797625+00 5642 1055#大人黑色 SPMX-20240815300785 \N \N \N 1 \N [{"file_id": "ce94b19e-ff01-473b-9051-99717226d057", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b651e2e96e242bca56a6238e15d9421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b651e2e96e242bca56a6238e15d9421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b651e2e96e242bca56a6238e15d9421.jpg", "file_size": 11158, "is_delete": false, "file_type": 1, "original_file_name": "1055#大人黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b651e2e96e242bca56a6238e15d9421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b651e2e96e242bca56a6238e15d9421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b651e2e96e242bca56a6238e15d9421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b651e2e96e242bca56a6238e15d9421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b651e2e96e242bca56a6238e15d9421.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHIcutA0Rz9QgaKhICepZUlkWjA=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.798925+00 2025-12-09 10:14:48.798929+00 5643 JS88#D版本匹布 SPMX-20240815300780 \N \N \N 1 \N [{"file_id": "5563157d-8920-406c-a630-394f5b712661", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6f5d72711034bf9ace5db7c4563ec4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6f5d72711034bf9ace5db7c4563ec4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6f5d72711034bf9ace5db7c4563ec4d.jpg", "file_size": 11815, "is_delete": false, "file_type": 1, "original_file_name": "JS88#D版本匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5d72711034bf9ace5db7c4563ec4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5d72711034bf9ace5db7c4563ec4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5d72711034bf9ace5db7c4563ec4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6f5d72711034bf9ace5db7c4563ec4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6f5d72711034bf9ace5db7c4563ec4d.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WlO5-xyZZUDsor-BF1WSsBrZnT4=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.800217+00 2025-12-09 10:14:48.800222+00 5644 23-2101#A9前后片4XL SPMX-20240815300790 \N \N \N 1 \N [{"file_id": "b07d3e52-d66d-4b5e-b626-c4a5c8417cb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15090933102c4f39bca7c37c8e608a1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15090933102c4f39bca7c37c8e608a1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15090933102c4f39bca7c37c8e608a1f.jpg", "file_size": 9927, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A9前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15090933102c4f39bca7c37c8e608a1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15090933102c4f39bca7c37c8e608a1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15090933102c4f39bca7c37c8e608a1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15090933102c4f39bca7c37c8e608a1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15090933102c4f39bca7c37c8e608a1f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxSX-NAsINunQ-7ovaEbRco4VZE=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.801501+00 2025-12-09 10:14:48.801505+00 5645 23-2101#A9前后片3XL SPMX-20240815300779 \N \N \N 1 \N [{"file_id": "15465353-1c6c-4077-8075-1c63c7a13f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67484db9ca0d4d8788e24fcd2538844f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67484db9ca0d4d8788e24fcd2538844f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67484db9ca0d4d8788e24fcd2538844f.jpg", "file_size": 9872, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A9前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67484db9ca0d4d8788e24fcd2538844f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67484db9ca0d4d8788e24fcd2538844f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67484db9ca0d4d8788e24fcd2538844f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67484db9ca0d4d8788e24fcd2538844f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67484db9ca0d4d8788e24fcd2538844f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9dBZkAVeyS8YluoCTlsxj7q_VKo=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.80308+00 2025-12-09 10:14:48.803085+00 5646 DH20220781#白批布 SPMX-20240815300787 \N \N \N 1 \N [{"file_id": "29c0765b-f14b-4f67-a26f-b21061b21c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d247c921a28f462eb14a8a2d21713f18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d247c921a28f462eb14a8a2d21713f18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d247c921a28f462eb14a8a2d21713f18.jpg", "file_size": 15353, "is_delete": false, "file_type": 1, "original_file_name": "DH20220781#白批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d247c921a28f462eb14a8a2d21713f18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d247c921a28f462eb14a8a2d21713f18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d247c921a28f462eb14a8a2d21713f18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d247c921a28f462eb14a8a2d21713f18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d247c921a28f462eb14a8a2d21713f18.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAyBy5UucBeFYL2brzNfyy9E1e0=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.804677+00 2025-12-09 10:14:48.804682+00 5647 80080#白色裤子 SPMX-20240815300782 \N \N \N 1 \N [{"file_id": "0b58c541-f6f5-4c47-a649-f889e1382bbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b4dc120153449feaeade0cd5411f634.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b4dc120153449feaeade0cd5411f634.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b4dc120153449feaeade0cd5411f634.jpg", "file_size": 13927, "is_delete": false, "file_type": 1, "original_file_name": "80080#白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4dc120153449feaeade0cd5411f634.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4dc120153449feaeade0cd5411f634.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4dc120153449feaeade0cd5411f634.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b4dc120153449feaeade0cd5411f634.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b4dc120153449feaeade0cd5411f634.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvxZymz-fwcd0N9ABu5Rgr-vHyw=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.806243+00 2025-12-09 10:14:48.806247+00 5648 0003-10FWF#天蓝色 SPMX-20240815300783 \N \N \N 1 \N [{"file_id": "d6d6f857-be33-45aa-9ec0-646aead51609", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b4aa98cf3514e6283ab0186dad52c79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b4aa98cf3514e6283ab0186dad52c79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b4aa98cf3514e6283ab0186dad52c79.jpg", "file_size": 17659, "is_delete": false, "file_type": 1, "original_file_name": "0003-10FWF#天蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4aa98cf3514e6283ab0186dad52c79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4aa98cf3514e6283ab0186dad52c79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4aa98cf3514e6283ab0186dad52c79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b4aa98cf3514e6283ab0186dad52c79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b4aa98cf3514e6283ab0186dad52c79.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfEdT6BCM8dHihzhtfi5OO_jViQ=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.807808+00 2025-12-09 10:14:48.807812+00 5649 C262#黑底白色 SPMX-20240815300789 \N \N \N 1 \N [{"file_id": "948f475c-a9db-4f09-81bd-da5b4a6b9ce1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cccab0c461ac4f5d9c12486b461c9033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cccab0c461ac4f5d9c12486b461c9033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cccab0c461ac4f5d9c12486b461c9033.jpg", "file_size": 57890, "is_delete": false, "file_type": 1, "original_file_name": "C262#黑底白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccab0c461ac4f5d9c12486b461c9033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccab0c461ac4f5d9c12486b461c9033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccab0c461ac4f5d9c12486b461c9033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cccab0c461ac4f5d9c12486b461c9033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cccab0c461ac4f5d9c12486b461c9033.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_DRhphq2VdFgd_gMxWtxRKQ8n8=", "createTime": "2024-08-15 14:42:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.809363+00 2025-12-09 10:14:48.809368+00 5650 80080#袖子匹布 SPMX-20240815300794 \N \N \N 1 \N [{"file_id": "5000139c-7935-4c45-94e5-706c672c1d6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a45fdcb998704e2dbdcd198810935a3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a45fdcb998704e2dbdcd198810935a3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a45fdcb998704e2dbdcd198810935a3a.jpg", "file_size": 12486, "is_delete": false, "file_type": 1, "original_file_name": "80080#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45fdcb998704e2dbdcd198810935a3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45fdcb998704e2dbdcd198810935a3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45fdcb998704e2dbdcd198810935a3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a45fdcb998704e2dbdcd198810935a3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a45fdcb998704e2dbdcd198810935a3a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgCevJViGEMPKFj4zJUVy6bezJU=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.81096+00 2025-12-09 10:14:48.810964+00 5651 JS88#匹布 SPMX-20240815300791 \N \N \N 1 \N [{"file_id": "04038891-81af-4f50-bb5f-71fd7eb5d013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4277b5c69e73431ba77881a5d34f23bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4277b5c69e73431ba77881a5d34f23bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4277b5c69e73431ba77881a5d34f23bb.jpg", "file_size": 11269, "is_delete": false, "file_type": 1, "original_file_name": "JS88#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4277b5c69e73431ba77881a5d34f23bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4277b5c69e73431ba77881a5d34f23bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4277b5c69e73431ba77881a5d34f23bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4277b5c69e73431ba77881a5d34f23bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4277b5c69e73431ba77881a5d34f23bb.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvdkJUHfMqgJ0DIhvJ9eYsxDZsg=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.812539+00 2025-12-09 10:14:48.812544+00 5652 HSH160FW#VS-D3 SPMX-20240815300792 \N \N \N 1 \N [{"file_id": "91295afd-583a-4f50-b705-f33e5d4cd4c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83b6f9ae69964889baa85cbf71c2bb4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83b6f9ae69964889baa85cbf71c2bb4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83b6f9ae69964889baa85cbf71c2bb4f.jpg", "file_size": 13423, "is_delete": false, "file_type": 1, "original_file_name": "HSH160FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b6f9ae69964889baa85cbf71c2bb4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b6f9ae69964889baa85cbf71c2bb4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b6f9ae69964889baa85cbf71c2bb4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83b6f9ae69964889baa85cbf71c2bb4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83b6f9ae69964889baa85cbf71c2bb4f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fffnhUa6orsXOyJcERMskgeojEc=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.814085+00 2025-12-09 10:14:48.81409+00 5653 0003-10FWF#宝蓝色 SPMX-20240815300793 \N \N \N 1 \N [{"file_id": "e5ccb51d-fba1-411f-8e6d-e950bceeb454", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "618a742298104cf0baa8c97def661985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "618a742298104cf0baa8c97def661985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "618a742298104cf0baa8c97def661985.jpg", "file_size": 19055, "is_delete": false, "file_type": 1, "original_file_name": "0003-10FWF#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618a742298104cf0baa8c97def661985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618a742298104cf0baa8c97def661985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618a742298104cf0baa8c97def661985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/618a742298104cf0baa8c97def661985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/618a742298104cf0baa8c97def661985.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XwamnNNJY-j8pD0g0Fig2dDA3IQ=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.815368+00 2025-12-09 10:14:48.815372+00 5654 1055#宝蓝底杏匹布 SPMX-20240815300808 \N \N \N 1 \N [{"file_id": "bb9733f4-c92c-4c2d-a929-33af6ff63618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a0ae0db753143169d46931516e764cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a0ae0db753143169d46931516e764cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a0ae0db753143169d46931516e764cc.jpg", "file_size": 9767, "is_delete": false, "file_type": 1, "original_file_name": "1055#宝蓝底杏匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0ae0db753143169d46931516e764cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0ae0db753143169d46931516e764cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0ae0db753143169d46931516e764cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a0ae0db753143169d46931516e764cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a0ae0db753143169d46931516e764cc.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OjdJudY3jLbd26MRhEYLmrmYuc=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.816669+00 2025-12-09 10:14:48.816673+00 5655 80080#黑色上衣 SPMX-20240815300805 \N \N \N 1 \N [{"file_id": "92551466-742f-4434-bf34-76b5c5a1b65e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bcd005ee2ec4c2ab87102ee597233d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bcd005ee2ec4c2ab87102ee597233d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bcd005ee2ec4c2ab87102ee597233d5.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "80080#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcd005ee2ec4c2ab87102ee597233d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcd005ee2ec4c2ab87102ee597233d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcd005ee2ec4c2ab87102ee597233d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bcd005ee2ec4c2ab87102ee597233d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bcd005ee2ec4c2ab87102ee597233d5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxwaN0FE2JrwdGAB5TEluS9P4M0=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.817933+00 2025-12-09 10:14:48.817938+00 5656 LHJ9264#5#彩兰 SPMX-20240815300795 \N \N \N 1 \N [{"file_id": "cf25b71d-a87c-4f5e-869c-7fff74b49d6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbd9227ac95048029c451fa6733ad721.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbd9227ac95048029c451fa6733ad721.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbd9227ac95048029c451fa6733ad721.jpg", "file_size": 22770, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9264#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd9227ac95048029c451fa6733ad721.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd9227ac95048029c451fa6733ad721.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd9227ac95048029c451fa6733ad721.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbd9227ac95048029c451fa6733ad721.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbd9227ac95048029c451fa6733ad721.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lop0ej94zSeN6FWRX7teFa_DJhQ=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.819207+00 2025-12-09 10:14:48.819211+00 5657 C262#黑底白花-放大0.3版本 SPMX-20240815300800 \N \N \N 1 \N [{"file_id": "364ab131-a1a5-42f0-b8a1-ac8853fcc041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db9d43fd267b40749765016dbbef31b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db9d43fd267b40749765016dbbef31b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db9d43fd267b40749765016dbbef31b0.jpg", "file_size": 24031, "is_delete": false, "file_type": 1, "original_file_name": "C262#黑底白花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9d43fd267b40749765016dbbef31b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9d43fd267b40749765016dbbef31b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db9d43fd267b40749765016dbbef31b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db9d43fd267b40749765016dbbef31b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db9d43fd267b40749765016dbbef31b0.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crIgYddmVkTVUqiEoV2PKthPHw4=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.820479+00 2025-12-09 10:14:48.820482+00 5658 LHJ9265#VS-D3 SPMX-20240815300806 \N \N \N 1 \N [{"file_id": "e8f4501e-fe7c-4275-844f-8db0c827da80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e117dcaa0f3426bbd48b5866a3a7c48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e117dcaa0f3426bbd48b5866a3a7c48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e117dcaa0f3426bbd48b5866a3a7c48.jpg", "file_size": 18847, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9265#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e117dcaa0f3426bbd48b5866a3a7c48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e117dcaa0f3426bbd48b5866a3a7c48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e117dcaa0f3426bbd48b5866a3a7c48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e117dcaa0f3426bbd48b5866a3a7c48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e117dcaa0f3426bbd48b5866a3a7c48.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3ADLX0yy-KjKWCw2L6cZIZj5rw=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.82177+00 2025-12-09 10:14:48.821775+00 5659 23-2101#A9袖子3XL SPMX-20240815300798 \N \N \N 1 \N [{"file_id": "b4fed3d9-0918-416e-a8a2-752991c8309c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba8b847ab1534778a45940909934a313.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba8b847ab1534778a45940909934a313.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba8b847ab1534778a45940909934a313.jpg", "file_size": 9996, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A9袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8b847ab1534778a45940909934a313.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8b847ab1534778a45940909934a313.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8b847ab1534778a45940909934a313.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba8b847ab1534778a45940909934a313.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba8b847ab1534778a45940909934a313.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJaVM0FHvTIIWRdosfDmyI4Kmbg=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.823041+00 2025-12-09 10:14:48.823045+00 5660 HSH161FW#VS-D3 SPMX-20240815300803 \N \N \N 1 \N [{"file_id": "4ff1612c-b245-49be-a169-0ccbc5dff323", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cedf922ff1b4d63993bb94585f250e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cedf922ff1b4d63993bb94585f250e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cedf922ff1b4d63993bb94585f250e4.jpg", "file_size": 15400, "is_delete": false, "file_type": 1, "original_file_name": "HSH161FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cedf922ff1b4d63993bb94585f250e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cedf922ff1b4d63993bb94585f250e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cedf922ff1b4d63993bb94585f250e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cedf922ff1b4d63993bb94585f250e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cedf922ff1b4d63993bb94585f250e4.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcLKnIRxU3hUg9uZDymcQDoBD3Q=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.824317+00 2025-12-09 10:14:48.824321+00 5661 0003-10FWF#粉色V5曲线 SPMX-20240815300804 \N \N \N 1 \N [{"file_id": "7f714481-7818-460a-9253-362edbf8854d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a2496ebd2314342af4bf08e896e0039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a2496ebd2314342af4bf08e896e0039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a2496ebd2314342af4bf08e896e0039.jpg", "file_size": 14522, "is_delete": false, "file_type": 1, "original_file_name": "0003-10FWF#粉色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2496ebd2314342af4bf08e896e0039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2496ebd2314342af4bf08e896e0039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2496ebd2314342af4bf08e896e0039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a2496ebd2314342af4bf08e896e0039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a2496ebd2314342af4bf08e896e0039.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgG-47aZXpzemnQzB0F-PHAzudo=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.825571+00 2025-12-09 10:14:48.825575+00 5662 LZ1218#8号色 SPMX-20240815300807 \N \N \N 1 \N [{"file_id": "de9b85d9-5441-4d6a-a30c-bda26131b654", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a7e70d525a3465ba4687582cf99d551.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a7e70d525a3465ba4687582cf99d551.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a7e70d525a3465ba4687582cf99d551.jpg", "file_size": 19140, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e70d525a3465ba4687582cf99d551.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e70d525a3465ba4687582cf99d551.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e70d525a3465ba4687582cf99d551.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a7e70d525a3465ba4687582cf99d551.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a7e70d525a3465ba4687582cf99d551.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qaXsvxDlwKdxJXXjYh9U1GaR_U=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.826887+00 2025-12-09 10:14:48.826891+00 5663 1055#宝蓝底杏 SPMX-20240815300797 \N \N \N 1 \N [{"file_id": "3532ba46-487e-4879-9ec3-6b7d6faaf0a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg", "file_size": 22049, "is_delete": false, "file_type": 1, "original_file_name": "1055#宝蓝底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b70ad0bf8e644a6498d3d0b77fcf8d6c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nOPyvEkyGudYlJg66kDApkOVlE=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.828164+00 2025-12-09 10:14:48.828169+00 5664 DH20220782T#男童YL SPMX-20240815300801 \N \N \N 1 \N [{"file_id": "4e51725d-2ed8-4d67-b8e6-3436dd677e98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ef4eadab730495f83f5948db78e6126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ef4eadab730495f83f5948db78e6126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ef4eadab730495f83f5948db78e6126.jpg", "file_size": 9658, "is_delete": false, "file_type": 1, "original_file_name": "DH20220782T#男童YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4eadab730495f83f5948db78e6126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4eadab730495f83f5948db78e6126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4eadab730495f83f5948db78e6126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ef4eadab730495f83f5948db78e6126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ef4eadab730495f83f5948db78e6126.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tfH1pP9I02hInBKaXBbtbg_iRTE=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.829439+00 2025-12-09 10:14:48.829443+00 5665 LZ1218#7号色 SPMX-20240815300796 \N \N \N 1 \N [{"file_id": "99177a41-633f-4e13-8232-1e1547c25bbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88f653f0d2e845829ed361cfc240ce22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88f653f0d2e845829ed361cfc240ce22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88f653f0d2e845829ed361cfc240ce22.jpg", "file_size": 20846, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f653f0d2e845829ed361cfc240ce22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f653f0d2e845829ed361cfc240ce22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f653f0d2e845829ed361cfc240ce22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88f653f0d2e845829ed361cfc240ce22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88f653f0d2e845829ed361cfc240ce22.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zJEY-xLdGANTz2EiUxGtCXP5Sw=", "createTime": "2024-08-15 14:42:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.830725+00 2025-12-09 10:14:48.830729+00 5666 JS959#绿底 SPMX-20240815300802 \N \N \N 1 \N [{"file_id": "f027d4b5-6d92-457d-8999-40e632ff7532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e9e5e08020a48f1838041b376a23f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e9e5e08020a48f1838041b376a23f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e9e5e08020a48f1838041b376a23f2f.jpg", "file_size": 17492, "is_delete": false, "file_type": 1, "original_file_name": "JS959#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9e5e08020a48f1838041b376a23f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9e5e08020a48f1838041b376a23f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9e5e08020a48f1838041b376a23f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e9e5e08020a48f1838041b376a23f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e9e5e08020a48f1838041b376a23f2f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rlTvkjYK2RA9Z0lLJ_u6WF67KY0=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.832005+00 2025-12-09 10:14:48.832009+00 5667 FHXGPK-020-5 SPMX-20240815300799 \N \N \N 1 \N [{"file_id": "34d8a0d7-ab58-405c-851d-9d6f077bf03a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b3e7ecae3e42c2a669b38755614822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b3e7ecae3e42c2a669b38755614822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b3e7ecae3e42c2a669b38755614822.jpg", "file_size": 33868, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-020-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b3e7ecae3e42c2a669b38755614822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b3e7ecae3e42c2a669b38755614822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b3e7ecae3e42c2a669b38755614822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b3e7ecae3e42c2a669b38755614822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b3e7ecae3e42c2a669b38755614822.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nW1fGW6kLMjjV6YS527Z6j0SEos=", "createTime": "2024-08-15 14:42:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.83329+00 2025-12-09 10:14:48.833294+00 5668 C262#黑底白花 SPMX-20240815300811 \N \N \N 1 \N [{"file_id": "ce4cd9ba-6922-45af-8f24-6fd2530d4341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12c0b13edd5f4076b742c188eb9fbd52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12c0b13edd5f4076b742c188eb9fbd52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12c0b13edd5f4076b742c188eb9fbd52.jpg", "file_size": 23458, "is_delete": false, "file_type": 1, "original_file_name": "C262#黑底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c0b13edd5f4076b742c188eb9fbd52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c0b13edd5f4076b742c188eb9fbd52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c0b13edd5f4076b742c188eb9fbd52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12c0b13edd5f4076b742c188eb9fbd52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12c0b13edd5f4076b742c188eb9fbd52.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YqGYAzjbPFb6rPkNW3oIQB81fQ=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.834571+00 2025-12-09 10:14:48.834574+00 5669 23-2101#A9袖子4XL SPMX-20240815300810 \N \N \N 1 \N [{"file_id": "a2b68e07-85c8-4915-ab16-fe05b992a600", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1a9d353967a40f5aa563c19b6708c21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1a9d353967a40f5aa563c19b6708c21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1a9d353967a40f5aa563c19b6708c21.jpg", "file_size": 9385, "is_delete": false, "file_type": 1, "original_file_name": "23-2101#A9袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a9d353967a40f5aa563c19b6708c21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a9d353967a40f5aa563c19b6708c21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a9d353967a40f5aa563c19b6708c21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1a9d353967a40f5aa563c19b6708c21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1a9d353967a40f5aa563c19b6708c21.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-TaoQugk7hK0cOTpe_stGUee-EA=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.835837+00 2025-12-09 10:14:48.835842+00 5670 DH20220782T#男童YM SPMX-20240815300809 \N \N \N 1 \N [{"file_id": "a7dcdd73-637c-4c44-bdf9-7e6321f95f08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e21a757d5a472790b8fd4d47ad597b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e21a757d5a472790b8fd4d47ad597b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e21a757d5a472790b8fd4d47ad597b.jpg", "file_size": 10131, "is_delete": false, "file_type": 1, "original_file_name": "DH20220782T#男童YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e21a757d5a472790b8fd4d47ad597b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e21a757d5a472790b8fd4d47ad597b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e21a757d5a472790b8fd4d47ad597b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e21a757d5a472790b8fd4d47ad597b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e21a757d5a472790b8fd4d47ad597b.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eQl_mvPDCGoZee8Hh5yvKm3G7Ks=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.837104+00 2025-12-09 10:14:48.837108+00 5671 FHXGPK-021-1 SPMX-20240815300812 \N \N \N 1 \N [{"file_id": "f8c221fb-a76d-4d7c-becc-8d6d80713e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "519a915bba214acba8695f714424af5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "519a915bba214acba8695f714424af5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "519a915bba214acba8695f714424af5f.jpg", "file_size": 35496, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-021-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519a915bba214acba8695f714424af5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519a915bba214acba8695f714424af5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519a915bba214acba8695f714424af5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/519a915bba214acba8695f714424af5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/519a915bba214acba8695f714424af5f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULEzo5NxSizyTvOYTJYge7nFmAM=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.838401+00 2025-12-09 10:14:48.838406+00 5672 LZ1218#9号色 SPMX-20240815300818 \N \N \N 1 \N [{"file_id": "7f6444f5-f865-4ddb-b18d-da05f133896d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a80eb71c1a481f8e5d97f554204716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a80eb71c1a481f8e5d97f554204716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a80eb71c1a481f8e5d97f554204716.jpg", "file_size": 16940, "is_delete": false, "file_type": 1, "original_file_name": "LZ1218#9号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a80eb71c1a481f8e5d97f554204716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a80eb71c1a481f8e5d97f554204716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a80eb71c1a481f8e5d97f554204716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a80eb71c1a481f8e5d97f554204716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a80eb71c1a481f8e5d97f554204716.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJT6OtkMNt3VpRCFR_UMcpcbjuY=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.83966+00 2025-12-09 10:14:48.839664+00 5673 FHXGPK-021-2 SPMX-20240815300819 \N \N \N 1 \N [{"file_id": "3a2e5c61-bccb-40f9-a6ad-20365b75523a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1933de31cb0645f989272b35a4f89bfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1933de31cb0645f989272b35a4f89bfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1933de31cb0645f989272b35a4f89bfd.jpg", "file_size": 32978, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-021-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1933de31cb0645f989272b35a4f89bfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1933de31cb0645f989272b35a4f89bfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1933de31cb0645f989272b35a4f89bfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1933de31cb0645f989272b35a4f89bfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1933de31cb0645f989272b35a4f89bfd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32hSxn375k3www8LHI2H8-UQXkk=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.840943+00 2025-12-09 10:14:48.840947+00 5674 LHJ9268#1#黑色底11#红色花 SPMX-20240815300814 \N \N \N 1 \N [{"file_id": "e678c50a-8bbc-4282-8860-210ac32f27c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5f317a611c84061b079f73b2e5bb2ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5f317a611c84061b079f73b2e5bb2ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5f317a611c84061b079f73b2e5bb2ef.jpg", "file_size": 16735, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268#1#黑色底11#红色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f317a611c84061b079f73b2e5bb2ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f317a611c84061b079f73b2e5bb2ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f317a611c84061b079f73b2e5bb2ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5f317a611c84061b079f73b2e5bb2ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5f317a611c84061b079f73b2e5bb2ef.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0d2uaFMNNgD0fEb1Rb2tDYcofI=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.842238+00 2025-12-09 10:14:48.842243+00 5675 23-2102#A1前后片 SPMX-20240815300821 \N \N \N 1 \N [{"file_id": "df8df2be-fc4d-42b2-a8b5-1a74e5924c94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d82ba47f6c5f4d40ac9640fe7aa0f497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d82ba47f6c5f4d40ac9640fe7aa0f497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d82ba47f6c5f4d40ac9640fe7aa0f497.jpg", "file_size": 12965, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1前后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82ba47f6c5f4d40ac9640fe7aa0f497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82ba47f6c5f4d40ac9640fe7aa0f497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82ba47f6c5f4d40ac9640fe7aa0f497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d82ba47f6c5f4d40ac9640fe7aa0f497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d82ba47f6c5f4d40ac9640fe7aa0f497.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRoNHx-OV6VHIZfT3hZhBV-fwfI=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.843526+00 2025-12-09 10:14:48.84353+00 5676 1055#杏底宝蓝 SPMX-20240815300822 \N \N \N 1 \N [{"file_id": "77029ef0-8215-48b4-b6bb-d0a843bdec4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67bab9c384c84eeb836393c3ed95d5f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67bab9c384c84eeb836393c3ed95d5f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67bab9c384c84eeb836393c3ed95d5f5.jpg", "file_size": 20948, "is_delete": false, "file_type": 1, "original_file_name": "1055#杏底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bab9c384c84eeb836393c3ed95d5f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bab9c384c84eeb836393c3ed95d5f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bab9c384c84eeb836393c3ed95d5f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67bab9c384c84eeb836393c3ed95d5f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67bab9c384c84eeb836393c3ed95d5f5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGKXAS0jzFCsE-IDrcFSo9g7zbs=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.844803+00 2025-12-09 10:14:48.844808+00 5677 0003-10FWF#黄色V5曲线 SPMX-20240815300813 \N \N \N 1 \N [{"file_id": "aaa10f4a-8f9f-4889-beb3-ac04376b008f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0226c3424e7b453787f6faba438af0ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0226c3424e7b453787f6faba438af0ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0226c3424e7b453787f6faba438af0ac.jpg", "file_size": 16748, "is_delete": false, "file_type": 1, "original_file_name": "0003-10FWF#黄色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0226c3424e7b453787f6faba438af0ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0226c3424e7b453787f6faba438af0ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0226c3424e7b453787f6faba438af0ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0226c3424e7b453787f6faba438af0ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0226c3424e7b453787f6faba438af0ac.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0RNKSex_Esmkh-1H5ZpiY6oJPS4=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.846068+00 2025-12-09 10:14:48.846073+00 5678 DH20220782T#男童YS SPMX-20240815300820 \N \N \N 1 \N [{"file_id": "649a046d-f0b0-42f3-a261-518c695c5507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddb4ca9e5d234759b14242f3d9bbff61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddb4ca9e5d234759b14242f3d9bbff61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddb4ca9e5d234759b14242f3d9bbff61.jpg", "file_size": 10673, "is_delete": false, "file_type": 1, "original_file_name": "DH20220782T#男童YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb4ca9e5d234759b14242f3d9bbff61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb4ca9e5d234759b14242f3d9bbff61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb4ca9e5d234759b14242f3d9bbff61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddb4ca9e5d234759b14242f3d9bbff61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddb4ca9e5d234759b14242f3d9bbff61.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Obw_cugh4oFZ2iXDCJN_aWmEhMU=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.84735+00 2025-12-09 10:14:48.847354+00 5679 HSH163FW#VS-D3 SPMX-20240815300825 \N \N \N 1 \N [{"file_id": "59b7ed6a-b573-4c3e-95cf-ffcfdf82cb76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b442eb66ef54ae1a0f7e609ee9a37ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b442eb66ef54ae1a0f7e609ee9a37ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b442eb66ef54ae1a0f7e609ee9a37ea.jpg", "file_size": 23365, "is_delete": false, "file_type": 1, "original_file_name": "HSH163FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b442eb66ef54ae1a0f7e609ee9a37ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b442eb66ef54ae1a0f7e609ee9a37ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b442eb66ef54ae1a0f7e609ee9a37ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b442eb66ef54ae1a0f7e609ee9a37ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b442eb66ef54ae1a0f7e609ee9a37ea.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HsWUHsbxs_VfoHJKUva1G6wOHmM=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.848634+00 2025-12-09 10:14:48.848639+00 5680 C263#白底枣红花 SPMX-20240815300823 \N \N \N 1 \N [{"file_id": "6fc54978-b48b-46fe-b7a1-d6fa8753a7a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "617e328764b14369836e981e18406012.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "617e328764b14369836e981e18406012.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "617e328764b14369836e981e18406012.jpg", "file_size": 25140, "is_delete": false, "file_type": 1, "original_file_name": "C263#白底枣红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/617e328764b14369836e981e18406012.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/617e328764b14369836e981e18406012.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/617e328764b14369836e981e18406012.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/617e328764b14369836e981e18406012.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/617e328764b14369836e981e18406012.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2YSetccJJWQwdIwwObJEKYuJ5g=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.84992+00 2025-12-09 10:14:48.849924+00 5681 80080#黑色裤子 SPMX-20240815300815 \N \N \N 1 \N [{"file_id": "22a6b311-9a76-4d53-81a1-937591a84a18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef3396ac0934ab48b321e7b329fe613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef3396ac0934ab48b321e7b329fe613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef3396ac0934ab48b321e7b329fe613.jpg", "file_size": 15230, "is_delete": false, "file_type": 1, "original_file_name": "80080#黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef3396ac0934ab48b321e7b329fe613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef3396ac0934ab48b321e7b329fe613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef3396ac0934ab48b321e7b329fe613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef3396ac0934ab48b321e7b329fe613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef3396ac0934ab48b321e7b329fe613.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x82PBejxOYQiEzH98XEl0eXOPXU=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.851216+00 2025-12-09 10:14:48.85122+00 5682 LHJ9268#20#枣红底61#橙色花 SPMX-20240815300824 \N \N \N 1 \N [{"file_id": "598d2356-2cba-4bfe-94b9-f9fc8982187c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85ddaed3fb594244bbef6fae07a8a274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85ddaed3fb594244bbef6fae07a8a274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85ddaed3fb594244bbef6fae07a8a274.jpg", "file_size": 19256, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268#20#枣红底61#橙色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ddaed3fb594244bbef6fae07a8a274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ddaed3fb594244bbef6fae07a8a274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85ddaed3fb594244bbef6fae07a8a274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85ddaed3fb594244bbef6fae07a8a274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85ddaed3fb594244bbef6fae07a8a274.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqi4c_vkW0G3dkJLLtx9rEcBz2M=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.8525+00 2025-12-09 10:14:48.852505+00 5683 JS959#蓝底 SPMX-20240815300816 \N \N \N 1 \N [{"file_id": "4fd0536a-37c0-4a03-9e88-7843d809f04e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b105efec02b46e1984c40d457e7cb9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b105efec02b46e1984c40d457e7cb9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b105efec02b46e1984c40d457e7cb9f.jpg", "file_size": 19850, "is_delete": false, "file_type": 1, "original_file_name": "JS959#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b105efec02b46e1984c40d457e7cb9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b105efec02b46e1984c40d457e7cb9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b105efec02b46e1984c40d457e7cb9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b105efec02b46e1984c40d457e7cb9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b105efec02b46e1984c40d457e7cb9f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KOGANr9mEzfi_Z4l3_Fj-8W24pk=", "createTime": "2024-08-15 14:42:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.853825+00 2025-12-09 10:14:48.85383+00 5684 HSH162FW#VS-D3 SPMX-20240815300817 \N \N \N 1 \N [{"file_id": "23e93ba9-2478-4cc4-9655-dad95e3b6c86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a84e03c30d294b3988b6b980f018a5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a84e03c30d294b3988b6b980f018a5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a84e03c30d294b3988b6b980f018a5cb.jpg", "file_size": 21936, "is_delete": false, "file_type": 1, "original_file_name": "HSH162FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a84e03c30d294b3988b6b980f018a5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a84e03c30d294b3988b6b980f018a5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a84e03c30d294b3988b6b980f018a5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a84e03c30d294b3988b6b980f018a5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a84e03c30d294b3988b6b980f018a5cb.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vWusfQ3QciL7ArRENQ8BBAkI0yg=", "createTime": "2024-08-15 14:42:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.855117+00 2025-12-09 10:14:48.855122+00 5685 JS9962#WJC22 SPMX-20240815300839 \N \N \N 1 \N [{"file_id": "9b39f015-cc3e-42f6-8ae5-c2759ba54465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "315e777256574f418145a76ceb6b789a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "315e777256574f418145a76ceb6b789a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "315e777256574f418145a76ceb6b789a.jpg", "file_size": 12280, "is_delete": false, "file_type": 1, "original_file_name": "JS9962#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315e777256574f418145a76ceb6b789a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315e777256574f418145a76ceb6b789a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315e777256574f418145a76ceb6b789a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/315e777256574f418145a76ceb6b789a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/315e777256574f418145a76ceb6b789a.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PezW8c6uFO1u84abBOKgg6XKm94=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.856397+00 2025-12-09 10:14:48.856402+00 5686 LHJ9268#32#墨绿底37#梅红花 SPMX-20240815300836 \N \N \N 1 \N [{"file_id": "1a15f4fb-97bc-4079-9722-80d26d45a939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f16501f1ed274bb28652f954a2c706fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f16501f1ed274bb28652f954a2c706fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f16501f1ed274bb28652f954a2c706fd.jpg", "file_size": 19482, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268#32#墨绿底37#梅红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16501f1ed274bb28652f954a2c706fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16501f1ed274bb28652f954a2c706fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16501f1ed274bb28652f954a2c706fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f16501f1ed274bb28652f954a2c706fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f16501f1ed274bb28652f954a2c706fd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhXBJzqF7PUuooILYhgcBbDTbYI=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.857676+00 2025-12-09 10:14:48.85768+00 5687 1055#灰底宝蓝 SPMX-20240815300843 \N \N \N 1 \N [{"file_id": "5eb67d3a-191c-49c1-9b5f-3e860d72cd58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5754b351cfb84fb6884d422f0cdeff88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5754b351cfb84fb6884d422f0cdeff88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5754b351cfb84fb6884d422f0cdeff88.jpg", "file_size": 19704, "is_delete": false, "file_type": 1, "original_file_name": "1055#灰底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5754b351cfb84fb6884d422f0cdeff88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5754b351cfb84fb6884d422f0cdeff88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5754b351cfb84fb6884d422f0cdeff88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5754b351cfb84fb6884d422f0cdeff88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5754b351cfb84fb6884d422f0cdeff88.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VwDF5W3My8Hv6Ee2sEFzTZ7qAN4=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.858997+00 2025-12-09 10:14:48.859002+00 5688 80081#前后幅 SPMX-20240815300826 \N \N \N 1 \N [{"file_id": "022c8a93-d2ae-4b36-855e-a2ade2b12525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff12dd1556c14bea92ee837a0e8bb8d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff12dd1556c14bea92ee837a0e8bb8d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff12dd1556c14bea92ee837a0e8bb8d7.jpg", "file_size": 18592, "is_delete": false, "file_type": 1, "original_file_name": "80081#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff12dd1556c14bea92ee837a0e8bb8d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff12dd1556c14bea92ee837a0e8bb8d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff12dd1556c14bea92ee837a0e8bb8d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff12dd1556c14bea92ee837a0e8bb8d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff12dd1556c14bea92ee837a0e8bb8d7.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKThxdqAriLDcFs62uwj6RZQt6o=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.860274+00 2025-12-09 10:14:48.860278+00 5689 0003-110FWF#V5曲线 SPMX-20240815300828 \N \N \N 1 \N [{"file_id": "84033b48-0eb5-4d3b-bc09-4337638fbec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29557391a7154ec79866ac6418ff4a96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29557391a7154ec79866ac6418ff4a96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29557391a7154ec79866ac6418ff4a96.jpg", "file_size": 15901, "is_delete": false, "file_type": 1, "original_file_name": "0003-110FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29557391a7154ec79866ac6418ff4a96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29557391a7154ec79866ac6418ff4a96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29557391a7154ec79866ac6418ff4a96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29557391a7154ec79866ac6418ff4a96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29557391a7154ec79866ac6418ff4a96.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mAy09ptWw6Pvk4zuiAYcJIHYvI=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.861537+00 2025-12-09 10:14:48.861541+00 5690 HSH164FW#VS-D3 SPMX-20240815300837 \N \N \N 1 \N [{"file_id": "682bccc9-5716-4b62-9c42-cb50cd1d2cbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f725fcedd6a484c8aab26858ff3f851.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f725fcedd6a484c8aab26858ff3f851.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f725fcedd6a484c8aab26858ff3f851.jpg", "file_size": 18286, "is_delete": false, "file_type": 1, "original_file_name": "HSH164FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f725fcedd6a484c8aab26858ff3f851.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f725fcedd6a484c8aab26858ff3f851.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f725fcedd6a484c8aab26858ff3f851.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f725fcedd6a484c8aab26858ff3f851.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f725fcedd6a484c8aab26858ff3f851.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sE8evc1rc0V9XLOzUK2A8l-FLSU=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.862838+00 2025-12-09 10:14:48.862843+00 5691 80081#袖子匹布 SPMX-20240815300838 \N \N \N 1 \N [{"file_id": "3373ef33-6ea2-4cc0-b909-2875341d7064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "762081d45c4e42bab2b93b93cfa44e54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "762081d45c4e42bab2b93b93cfa44e54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "762081d45c4e42bab2b93b93cfa44e54.jpg", "file_size": 13726, "is_delete": false, "file_type": 1, "original_file_name": "80081#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762081d45c4e42bab2b93b93cfa44e54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762081d45c4e42bab2b93b93cfa44e54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762081d45c4e42bab2b93b93cfa44e54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/762081d45c4e42bab2b93b93cfa44e54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/762081d45c4e42bab2b93b93cfa44e54.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6S_8t4GaVZK7t6VwtxsrnShtE0M=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.86413+00 2025-12-09 10:14:48.864134+00 5692 FHXGPK-021-4 SPMX-20240815300840 \N \N \N 1 \N [{"file_id": "ab3da5ca-eb0a-4460-be6b-54738708f56c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg", "file_size": 33413, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-021-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff2bdec0ccc1403ba8abbab2fa2d6eb5.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MGvK87M6Pd-HPOskIwY_QzdJsvw=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.865412+00 2025-12-09 10:14:48.865416+00 5693 23-2102#A1前后片4XL SPMX-20240815300842 \N \N \N 1 \N [{"file_id": "0a82d426-e0b8-4589-9184-4981fd5b53ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb9e50de1cda4a5e9d9d556636d81164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb9e50de1cda4a5e9d9d556636d81164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb9e50de1cda4a5e9d9d556636d81164.jpg", "file_size": 12913, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9e50de1cda4a5e9d9d556636d81164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9e50de1cda4a5e9d9d556636d81164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9e50de1cda4a5e9d9d556636d81164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb9e50de1cda4a5e9d9d556636d81164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb9e50de1cda4a5e9d9d556636d81164.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJFAntFlKnmwMTGAAgDwx3rTBZw=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.866671+00 2025-12-09 10:14:48.866675+00 5694 23-2102#A1前后片3XL SPMX-20240815300833 \N \N \N 1 \N [{"file_id": "de21329c-e2ca-4943-ae0f-bb79481d8637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "618c949aede944a0b65bbe8c87f481ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "618c949aede944a0b65bbe8c87f481ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "618c949aede944a0b65bbe8c87f481ab.jpg", "file_size": 13187, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618c949aede944a0b65bbe8c87f481ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618c949aede944a0b65bbe8c87f481ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618c949aede944a0b65bbe8c87f481ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/618c949aede944a0b65bbe8c87f481ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/618c949aede944a0b65bbe8c87f481ab.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssmIrq9Z-XfNuJJsckV2I-4-YQM=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.867944+00 2025-12-09 10:14:48.867948+00 5695 DH20220782T#男童YXL SPMX-20240815300834 \N \N \N 1 \N [{"file_id": "406757d5-4f17-45ff-b57d-f5ad3acc6b69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d203399fd976468482447bc4acb14aff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d203399fd976468482447bc4acb14aff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d203399fd976468482447bc4acb14aff.jpg", "file_size": 10302, "is_delete": false, "file_type": 1, "original_file_name": "DH20220782T#男童YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d203399fd976468482447bc4acb14aff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d203399fd976468482447bc4acb14aff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d203399fd976468482447bc4acb14aff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d203399fd976468482447bc4acb14aff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d203399fd976468482447bc4acb14aff.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T9Gxd50E3S_gpbX5wx8LMcg5WvU=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.869236+00 2025-12-09 10:14:48.869241+00 5696 JS975#WJC22 SPMX-20240815300827 \N \N \N 1 \N [{"file_id": "256c150c-9e75-4b7f-b083-bc5c444ff0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b90b5104cce4d2e830f2ebf8bbaf711.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b90b5104cce4d2e830f2ebf8bbaf711.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b90b5104cce4d2e830f2ebf8bbaf711.jpg", "file_size": 14130, "is_delete": false, "file_type": 1, "original_file_name": "JS975#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b90b5104cce4d2e830f2ebf8bbaf711.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b90b5104cce4d2e830f2ebf8bbaf711.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b90b5104cce4d2e830f2ebf8bbaf711.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b90b5104cce4d2e830f2ebf8bbaf711.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b90b5104cce4d2e830f2ebf8bbaf711.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJWVYcAaXU5KSXDj3-IJ7S8q15w=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.87051+00 2025-12-09 10:14:48.870515+00 5697 C263#白底绿花 SPMX-20240815300835 \N \N \N 1 \N [{"file_id": "89b88093-35cb-421a-a7e9-0dcb089b0aaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d31691c558a448fb1488821fcba743f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d31691c558a448fb1488821fcba743f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d31691c558a448fb1488821fcba743f.jpg", "file_size": 24660, "is_delete": false, "file_type": 1, "original_file_name": "C263#白底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d31691c558a448fb1488821fcba743f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d31691c558a448fb1488821fcba743f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d31691c558a448fb1488821fcba743f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d31691c558a448fb1488821fcba743f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d31691c558a448fb1488821fcba743f.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:baPwGVhU-pRASvAXjOUa0NhL71w=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.871794+00 2025-12-09 10:14:48.871798+00 5698 FHXGPK-021-3 SPMX-20240815300829 \N \N \N 1 \N [{"file_id": "e107574b-1589-4f18-a4cf-faab351ddfbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955f5aa049bd4c1ea6922065d04dcfd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955f5aa049bd4c1ea6922065d04dcfd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955f5aa049bd4c1ea6922065d04dcfd1.jpg", "file_size": 34660, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-021-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955f5aa049bd4c1ea6922065d04dcfd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955f5aa049bd4c1ea6922065d04dcfd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955f5aa049bd4c1ea6922065d04dcfd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955f5aa049bd4c1ea6922065d04dcfd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955f5aa049bd4c1ea6922065d04dcfd1.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4dlW5Yr5UPjvFcYA70GXhSlZyCk=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.873078+00 2025-12-09 10:14:48.873083+00 5699 LZ1219#童装T1号色 SPMX-20240815300831 \N \N \N 1 \N [{"file_id": "1076c0cd-a2d2-4d6f-8d38-f0f4c56aa5b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b409692a960b4adb92c2913067be2b17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b409692a960b4adb92c2913067be2b17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b409692a960b4adb92c2913067be2b17.jpg", "file_size": 15094, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b409692a960b4adb92c2913067be2b17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b409692a960b4adb92c2913067be2b17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b409692a960b4adb92c2913067be2b17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b409692a960b4adb92c2913067be2b17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b409692a960b4adb92c2913067be2b17.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8Ba83Q-_1K5nKVqsi0n71z-6Rw=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.874382+00 2025-12-09 10:14:48.874386+00 5700 1055#杏底宝蓝匹布 SPMX-20240815300832 \N \N \N 1 \N [{"file_id": "6a3307b0-e72a-4cc4-b3c7-2494005db589", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e8c8907a47646b0b94c12f64aaf4709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e8c8907a47646b0b94c12f64aaf4709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e8c8907a47646b0b94c12f64aaf4709.jpg", "file_size": 9922, "is_delete": false, "file_type": 1, "original_file_name": "1055#杏底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e8c8907a47646b0b94c12f64aaf4709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e8c8907a47646b0b94c12f64aaf4709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e8c8907a47646b0b94c12f64aaf4709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e8c8907a47646b0b94c12f64aaf4709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e8c8907a47646b0b94c12f64aaf4709.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngOAzqYTWefVv69uvvSSoXj16Ac=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.875672+00 2025-12-09 10:14:48.875676+00 5701 0003-111FWF#V5曲线 SPMX-20240815300841 \N \N \N 1 \N [{"file_id": "8661d556-1ecd-48ff-b6f2-b1ad5a52d689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "333b9d2f2b1444e5a3a4ba8ba93655fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "333b9d2f2b1444e5a3a4ba8ba93655fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "333b9d2f2b1444e5a3a4ba8ba93655fd.jpg", "file_size": 20785, "is_delete": false, "file_type": 1, "original_file_name": "0003-111FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333b9d2f2b1444e5a3a4ba8ba93655fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333b9d2f2b1444e5a3a4ba8ba93655fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333b9d2f2b1444e5a3a4ba8ba93655fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/333b9d2f2b1444e5a3a4ba8ba93655fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/333b9d2f2b1444e5a3a4ba8ba93655fd.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAxjWmvmOzrdsVNeb0GN1QSfdwc=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.876946+00 2025-12-09 10:14:48.87695+00 5702 1055#灰底宝蓝匹布 SPMX-20240815300855 \N \N \N 1 \N [{"file_id": "f9a52730-c51d-41b0-bb34-7af923c34525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21f3bcaee28d42b78bcf338674612205.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21f3bcaee28d42b78bcf338674612205.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21f3bcaee28d42b78bcf338674612205.jpg", "file_size": 9125, "is_delete": false, "file_type": 1, "original_file_name": "1055#灰底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f3bcaee28d42b78bcf338674612205.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f3bcaee28d42b78bcf338674612205.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f3bcaee28d42b78bcf338674612205.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21f3bcaee28d42b78bcf338674612205.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21f3bcaee28d42b78bcf338674612205.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lanEkumgQE6ujyD-du-uyov7L8=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.878213+00 2025-12-09 10:14:48.878217+00 5703 HSH166FW#VS-D3 SPMX-20240815300857 \N \N \N 1 \N [{"file_id": "18e8d53c-d371-493f-b288-428ecb6fd57f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b367fc07b3914959aaa512c84a8182c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b367fc07b3914959aaa512c84a8182c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b367fc07b3914959aaa512c84a8182c8.jpg", "file_size": 23503, "is_delete": false, "file_type": 1, "original_file_name": "HSH166FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b367fc07b3914959aaa512c84a8182c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b367fc07b3914959aaa512c84a8182c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b367fc07b3914959aaa512c84a8182c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b367fc07b3914959aaa512c84a8182c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b367fc07b3914959aaa512c84a8182c8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wg7TzK0OQvz1hApD-u00Lr9hWKg=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.879503+00 2025-12-09 10:14:48.879507+00 5704 LHJ9268-1#1号黑底11号红色花 SPMX-20240815300858 \N \N \N 1 \N [{"file_id": "e3adaebb-8171-4685-bbe7-0184ff3b7fa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efe55f86b7e44a30b147c82e3fcaad1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efe55f86b7e44a30b147c82e3fcaad1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efe55f86b7e44a30b147c82e3fcaad1e.jpg", "file_size": 14474, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268-1#1号黑底11号红色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe55f86b7e44a30b147c82e3fcaad1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe55f86b7e44a30b147c82e3fcaad1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe55f86b7e44a30b147c82e3fcaad1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efe55f86b7e44a30b147c82e3fcaad1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efe55f86b7e44a30b147c82e3fcaad1e.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XimofDQqRK_hi8NiVaK7oPldc-Q=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.880801+00 2025-12-09 10:14:48.880806+00 5705 LZ1219#童装T3号色 SPMX-20240815300854 \N \N \N 1 \N [{"file_id": "48beab0e-a9a2-4836-a181-8489f362448a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36e20572845d4fc2a1d5fd6b35ecabab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36e20572845d4fc2a1d5fd6b35ecabab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36e20572845d4fc2a1d5fd6b35ecabab.jpg", "file_size": 15028, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e20572845d4fc2a1d5fd6b35ecabab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e20572845d4fc2a1d5fd6b35ecabab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e20572845d4fc2a1d5fd6b35ecabab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36e20572845d4fc2a1d5fd6b35ecabab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36e20572845d4fc2a1d5fd6b35ecabab.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frOMI3WmM26imPE0ulKKh1clkwU=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.882113+00 2025-12-09 10:14:48.882116+00 5706 C263#绿底 白花 SPMX-20240815300847 \N \N \N 1 \N [{"file_id": "fb6afa82-88eb-43d3-8725-577457424a0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "282c58209a9743d7bc9e1401a5092372.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "282c58209a9743d7bc9e1401a5092372.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "282c58209a9743d7bc9e1401a5092372.png", "file_size": 102831, "is_delete": false, "file_type": 1, "original_file_name": "C263#绿底 白花.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282c58209a9743d7bc9e1401a5092372.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282c58209a9743d7bc9e1401a5092372.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282c58209a9743d7bc9e1401a5092372.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/282c58209a9743d7bc9e1401a5092372.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/282c58209a9743d7bc9e1401a5092372.png?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6HGhx30-VjHIdjuEnMsI6cI4eA=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.883406+00 2025-12-09 10:14:48.88341+00 5707 DH20220993T#5-10女童YL SPMX-20240815300856 \N \N \N 1 \N [{"file_id": "293242e7-66b1-423e-ab33-2fcc2a5ee00c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c0bbe24b573420f9d4b2cb349c3f662.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c0bbe24b573420f9d4b2cb349c3f662.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c0bbe24b573420f9d4b2cb349c3f662.jpg", "file_size": 69782, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-10女童YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0bbe24b573420f9d4b2cb349c3f662.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0bbe24b573420f9d4b2cb349c3f662.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0bbe24b573420f9d4b2cb349c3f662.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c0bbe24b573420f9d4b2cb349c3f662.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c0bbe24b573420f9d4b2cb349c3f662.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TezVgFSSwYMGEw2nNkvg5Z3jPXA=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.884707+00 2025-12-09 10:14:48.884711+00 5708 80082#前后幅 SPMX-20240815300849 \N \N \N 1 \N [{"file_id": "a1a99078-5abe-458e-a4a8-280f18dcf5a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a7aa15840034d2e8c3b5b7c1046a703.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a7aa15840034d2e8c3b5b7c1046a703.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a7aa15840034d2e8c3b5b7c1046a703.jpg", "file_size": 17861, "is_delete": false, "file_type": 1, "original_file_name": "80082#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7aa15840034d2e8c3b5b7c1046a703.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7aa15840034d2e8c3b5b7c1046a703.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7aa15840034d2e8c3b5b7c1046a703.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a7aa15840034d2e8c3b5b7c1046a703.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a7aa15840034d2e8c3b5b7c1046a703.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7PVLjOhp6Nf3DNbmQ5prpebrW8=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.885997+00 2025-12-09 10:14:48.886001+00 5709 23-2102#A1短袖子3XL码 SPMX-20240815300852 \N \N \N 1 \N [{"file_id": "8e898351-69ee-48c4-8770-c0b0bbc3a514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b721f38925de4500bd601d9e8e8e4ba8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b721f38925de4500bd601d9e8e8e4ba8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b721f38925de4500bd601d9e8e8e4ba8.jpg", "file_size": 14346, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1短袖子3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b721f38925de4500bd601d9e8e8e4ba8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b721f38925de4500bd601d9e8e8e4ba8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b721f38925de4500bd601d9e8e8e4ba8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b721f38925de4500bd601d9e8e8e4ba8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b721f38925de4500bd601d9e8e8e4ba8.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDGiDETbh_n0vEXAJxDIbiac52Y=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:48.887284+00 2025-12-09 10:14:48.887288+00 5710 JSD0201#-L码 SPMX-20240815300850 \N \N \N 1 \N [{"file_id": "6ee8c485-ff90-4408-add2-8aca6731e0d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71620850f7594db38cc32110a3acf75c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71620850f7594db38cc32110a3acf75c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71620850f7594db38cc32110a3acf75c.jpg", "file_size": 94043, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71620850f7594db38cc32110a3acf75c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71620850f7594db38cc32110a3acf75c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71620850f7594db38cc32110a3acf75c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71620850f7594db38cc32110a3acf75c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71620850f7594db38cc32110a3acf75c.jpg?e=1765361688&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A-h94AftbkMYqQ3r4yYY26PGdF4=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.585945+00 2025-12-09 10:14:49.585954+00 5711 LHJ9268#5#彩兰底25#土黄花 SPMX-20240815300846 \N \N \N 1 \N [{"file_id": "0d0dfc3e-e050-4ea7-ae9e-170ab3712586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "089c0322344948ef883f780d2b271b4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "089c0322344948ef883f780d2b271b4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "089c0322344948ef883f780d2b271b4b.jpg", "file_size": 21403, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268#5#彩兰底25#土黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089c0322344948ef883f780d2b271b4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089c0322344948ef883f780d2b271b4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089c0322344948ef883f780d2b271b4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/089c0322344948ef883f780d2b271b4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/089c0322344948ef883f780d2b271b4b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HV1Rv-2TzSdke8VBhoY_8WJU6xQ=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.587945+00 2025-12-09 10:14:49.58795+00 5712 HSH165FW#VS-D3 SPMX-20240815300848 \N \N \N 1 \N [{"file_id": "862b4b3e-28d5-45f2-ac8d-eea35d503d02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6b440252f39447a84665ecd4f86d921.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6b440252f39447a84665ecd4f86d921.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6b440252f39447a84665ecd4f86d921.jpg", "file_size": 23103, "is_delete": false, "file_type": 1, "original_file_name": "HSH165FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b440252f39447a84665ecd4f86d921.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b440252f39447a84665ecd4f86d921.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b440252f39447a84665ecd4f86d921.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6b440252f39447a84665ecd4f86d921.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6b440252f39447a84665ecd4f86d921.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EteElwrE0bEAnwl4dRbo_oXeY0=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.589327+00 2025-12-09 10:14:49.589332+00 5713 0003-112FWF#V5曲线 SPMX-20240815300853 \N \N \N 1 \N [{"file_id": "53efe338-3555-4e85-9869-7766c959331b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97aed63fa6ec44b08658ddb7040e03bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97aed63fa6ec44b08658ddb7040e03bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97aed63fa6ec44b08658ddb7040e03bb.jpg", "file_size": 17095, "is_delete": false, "file_type": 1, "original_file_name": "0003-112FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97aed63fa6ec44b08658ddb7040e03bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97aed63fa6ec44b08658ddb7040e03bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97aed63fa6ec44b08658ddb7040e03bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97aed63fa6ec44b08658ddb7040e03bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97aed63fa6ec44b08658ddb7040e03bb.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JACkKeQDDdOgvR-BmTI77c9eBys=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.590766+00 2025-12-09 10:14:49.590772+00 5714 DH20220782T#男童YXS SPMX-20240815300845 \N \N \N 1 \N [{"file_id": "1d5b7f0a-b27b-4e30-894b-da8d49f4c43b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d72300e41a64453b0c11a8776756180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d72300e41a64453b0c11a8776756180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d72300e41a64453b0c11a8776756180.jpg", "file_size": 5765, "is_delete": false, "file_type": 1, "original_file_name": "DH20220782T#男童YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d72300e41a64453b0c11a8776756180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d72300e41a64453b0c11a8776756180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d72300e41a64453b0c11a8776756180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d72300e41a64453b0c11a8776756180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d72300e41a64453b0c11a8776756180.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peNcM4FlJjMRUz6BVEJWI6FZCHc=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.592254+00 2025-12-09 10:14:49.592258+00 5715 LZ1219#童装T2号色 SPMX-20240815300844 \N \N \N 1 \N [{"file_id": "9f624d10-0481-4e3b-b486-357a25ce337d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f8eff958c1e425088d62959542f13e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f8eff958c1e425088d62959542f13e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f8eff958c1e425088d62959542f13e4.jpg", "file_size": 14092, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8eff958c1e425088d62959542f13e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8eff958c1e425088d62959542f13e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8eff958c1e425088d62959542f13e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f8eff958c1e425088d62959542f13e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f8eff958c1e425088d62959542f13e4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJvy5yz_YjiiiWImfJc2x9SleEo=", "createTime": "2024-08-15 14:42:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.593584+00 2025-12-09 10:14:49.593588+00 5716 FHXGPK-021-5 SPMX-20240815300851 \N \N \N 1 \N [{"file_id": "2b5e6fbd-4790-41a6-9562-2f61f42266ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a596b52df6014e20ac132b1eb8337347.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a596b52df6014e20ac132b1eb8337347.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a596b52df6014e20ac132b1eb8337347.jpg", "file_size": 32583, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-021-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a596b52df6014e20ac132b1eb8337347.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a596b52df6014e20ac132b1eb8337347.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a596b52df6014e20ac132b1eb8337347.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a596b52df6014e20ac132b1eb8337347.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a596b52df6014e20ac132b1eb8337347.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2e5Dy_9Rdqktwbobq83ot3Sdyo=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.594897+00 2025-12-09 10:14:49.594901+00 5717 1055#白底宝蓝 SPMX-20240815300866 \N \N \N 1 \N [{"file_id": "56f9d479-4506-4257-b6ac-686be99f61f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg", "file_size": 21424, "is_delete": false, "file_type": 1, "original_file_name": "1055#白底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4d5ee13f6bf45dfa5f6cdc5bb48fd57.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2tSd7WYxnlz3_nkqI6z1a6BsBY=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.596193+00 2025-12-09 10:14:49.596197+00 5718 23-2102#A1短袖子4XL码 SPMX-20240815300865 \N \N \N 1 \N [{"file_id": "55ee851b-497f-41cd-ad22-e7cc9f8c0e85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e613adf2a05d4589a29d7197de3e0770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e613adf2a05d4589a29d7197de3e0770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e613adf2a05d4589a29d7197de3e0770.jpg", "file_size": 12871, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1短袖子4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e613adf2a05d4589a29d7197de3e0770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e613adf2a05d4589a29d7197de3e0770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e613adf2a05d4589a29d7197de3e0770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e613adf2a05d4589a29d7197de3e0770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e613adf2a05d4589a29d7197de3e0770.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulH-eFyR4i1pqAPNEm8-PlzsyYw=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.597495+00 2025-12-09 10:14:49.597499+00 5719 DH20220993T#5-10女童YM SPMX-20240815300867 \N \N \N 1 \N [{"file_id": "7acb71fa-f6ea-436a-9864-69126c836d5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4411df695b943bdbd53cb5cd7f5a48c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4411df695b943bdbd53cb5cd7f5a48c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4411df695b943bdbd53cb5cd7f5a48c.jpg", "file_size": 57550, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-10女童YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4411df695b943bdbd53cb5cd7f5a48c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4411df695b943bdbd53cb5cd7f5a48c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4411df695b943bdbd53cb5cd7f5a48c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4411df695b943bdbd53cb5cd7f5a48c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4411df695b943bdbd53cb5cd7f5a48c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ddIQ3By1b4RgZ6hUYTr2PtYj0sk=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.598818+00 2025-12-09 10:14:49.598822+00 5720 C263#绿底白花 SPMX-20240815300859 \N \N \N 1 \N [{"file_id": "395e1e2d-7f77-4153-971f-95b5d233df19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e7dc107b6d9412fb99f4b27dbddc040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e7dc107b6d9412fb99f4b27dbddc040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e7dc107b6d9412fb99f4b27dbddc040.jpg", "file_size": 25136, "is_delete": false, "file_type": 1, "original_file_name": "C263#绿底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7dc107b6d9412fb99f4b27dbddc040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7dc107b6d9412fb99f4b27dbddc040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7dc107b6d9412fb99f4b27dbddc040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e7dc107b6d9412fb99f4b27dbddc040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e7dc107b6d9412fb99f4b27dbddc040.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnJs3N2Xdlnhm8jGpxPhdAAGNuU=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.600121+00 2025-12-09 10:14:49.600125+00 5721 80082#袖子匹布 SPMX-20240815300860 \N \N \N 1 \N [{"file_id": "a1983520-5a19-4f26-a0f5-b1db01ef0119", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "819c8ef9d89742aba29c78f532821d7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "819c8ef9d89742aba29c78f532821d7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "819c8ef9d89742aba29c78f532821d7f.jpg", "file_size": 11157, "is_delete": false, "file_type": 1, "original_file_name": "80082#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819c8ef9d89742aba29c78f532821d7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819c8ef9d89742aba29c78f532821d7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819c8ef9d89742aba29c78f532821d7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/819c8ef9d89742aba29c78f532821d7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/819c8ef9d89742aba29c78f532821d7f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t43SR_cvj1KkAaWBVVatDEphLyY=", "createTime": "2024-08-15 14:42:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.601406+00 2025-12-09 10:14:49.60141+00 5722 0003-113FWF#净色 SPMX-20240815300862 \N \N \N 1 \N [{"file_id": "1b7e1c04-467b-4d00-b327-bc6ccc75c202", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6de8da9ef2954270a553f9af240be1c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6de8da9ef2954270a553f9af240be1c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6de8da9ef2954270a553f9af240be1c9.jpg", "file_size": 6825, "is_delete": false, "file_type": 1, "original_file_name": "0003-113FWF#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de8da9ef2954270a553f9af240be1c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de8da9ef2954270a553f9af240be1c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de8da9ef2954270a553f9af240be1c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6de8da9ef2954270a553f9af240be1c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6de8da9ef2954270a553f9af240be1c9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5I8u-zxk5RZT2yhJvWLjZl5Vig=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.602682+00 2025-12-09 10:14:49.602686+00 5723 JSD0201#-M码 SPMX-20240815300861 \N \N \N 1 \N [{"file_id": "9c67d5c5-4e4f-4b31-9bac-cdf658a53b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a961b210c844039f5eef14c4d2ee7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a961b210c844039f5eef14c4d2ee7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a961b210c844039f5eef14c4d2ee7f.jpg", "file_size": 95547, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a961b210c844039f5eef14c4d2ee7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a961b210c844039f5eef14c4d2ee7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a961b210c844039f5eef14c4d2ee7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a961b210c844039f5eef14c4d2ee7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a961b210c844039f5eef14c4d2ee7f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBaqCLbPGlINrtX1Or_8n9QhGdc=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.604011+00 2025-12-09 10:14:49.604016+00 5724 FHXGPK-022-1 SPMX-20240815300863 \N \N \N 1 \N [{"file_id": "685a7aef-18d4-4b09-8365-fbef61b9e49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3394131d8714438b7b7e61be666518f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3394131d8714438b7b7e61be666518f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3394131d8714438b7b7e61be666518f.jpg", "file_size": 34130, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-022-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3394131d8714438b7b7e61be666518f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3394131d8714438b7b7e61be666518f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3394131d8714438b7b7e61be666518f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3394131d8714438b7b7e61be666518f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3394131d8714438b7b7e61be666518f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgM76yrTAKeM_thzKXfVF_EkpQQ=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.605289+00 2025-12-09 10:14:49.605293+00 5725 LZ1219#童装T4号色 SPMX-20240815300864 \N \N \N 1 \N [{"file_id": "c6e38102-2fc0-454d-87f4-22fb0904c8d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6615298839249a1bb2e269f56d2b727.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6615298839249a1bb2e269f56d2b727.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6615298839249a1bb2e269f56d2b727.jpg", "file_size": 14888, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6615298839249a1bb2e269f56d2b727.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6615298839249a1bb2e269f56d2b727.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6615298839249a1bb2e269f56d2b727.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6615298839249a1bb2e269f56d2b727.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6615298839249a1bb2e269f56d2b727.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoJkqJ66Dc0sppFFM24is2_KoME=", "createTime": "2024-08-15 14:42:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.606567+00 2025-12-09 10:14:49.606572+00 5726 1055#白底宝蓝匹布 SPMX-20240815300878 \N \N \N 1 \N [{"file_id": "a8e3b43b-d585-4c3a-8c8d-05d16859691e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87e37601bdd847998d7ba211ac8538b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87e37601bdd847998d7ba211ac8538b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87e37601bdd847998d7ba211ac8538b0.jpg", "file_size": 9380, "is_delete": false, "file_type": 1, "original_file_name": "1055#白底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e37601bdd847998d7ba211ac8538b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e37601bdd847998d7ba211ac8538b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e37601bdd847998d7ba211ac8538b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87e37601bdd847998d7ba211ac8538b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87e37601bdd847998d7ba211ac8538b0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xx5joWyyNfwvfCZL3X5kS7Ju1dY=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.607848+00 2025-12-09 10:14:49.607852+00 5727 80083#前后幅 SPMX-20240815300870 \N \N \N 1 \N [{"file_id": "c94105f9-08a4-4106-93bc-89f5c2590d11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98d25df3c3bd46788c7f0e9fc6b2ca19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98d25df3c3bd46788c7f0e9fc6b2ca19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98d25df3c3bd46788c7f0e9fc6b2ca19.jpg", "file_size": 21463, "is_delete": false, "file_type": 1, "original_file_name": "80083#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d25df3c3bd46788c7f0e9fc6b2ca19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d25df3c3bd46788c7f0e9fc6b2ca19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d25df3c3bd46788c7f0e9fc6b2ca19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98d25df3c3bd46788c7f0e9fc6b2ca19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98d25df3c3bd46788c7f0e9fc6b2ca19.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1A8iXySoz9g0Q5NzIzGAiOeKe8k=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.609156+00 2025-12-09 10:14:49.60916+00 5728 LZ1219#童装T5号色 SPMX-20240815300874 \N \N \N 1 \N [{"file_id": "91e4c4dc-b9b2-490b-a71c-b3e111a58f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52c14d1bcd714954ad2ad20c5ab42b9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52c14d1bcd714954ad2ad20c5ab42b9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52c14d1bcd714954ad2ad20c5ab42b9d.jpg", "file_size": 13896, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c14d1bcd714954ad2ad20c5ab42b9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c14d1bcd714954ad2ad20c5ab42b9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c14d1bcd714954ad2ad20c5ab42b9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52c14d1bcd714954ad2ad20c5ab42b9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52c14d1bcd714954ad2ad20c5ab42b9d.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIpuS9GzYsTbXYB489E-TKlV1hM=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.610418+00 2025-12-09 10:14:49.610422+00 5729 0003-113FWF#小碎花 SPMX-20240815300877 \N \N \N 1 \N [{"file_id": "9fdd7bcc-50e6-4bd9-a0d6-cabf7d6d040e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1194c079c66f4920a19b5d5b5befe600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1194c079c66f4920a19b5d5b5befe600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1194c079c66f4920a19b5d5b5befe600.jpg", "file_size": 12419, "is_delete": false, "file_type": 1, "original_file_name": "0003-113FWF#小碎花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194c079c66f4920a19b5d5b5befe600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194c079c66f4920a19b5d5b5befe600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1194c079c66f4920a19b5d5b5befe600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1194c079c66f4920a19b5d5b5befe600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1194c079c66f4920a19b5d5b5befe600.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3_D7UymRyF16HTgh_sbpIKaveM=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.6117+00 2025-12-09 10:14:49.611707+00 5730 HSH167FW#VS-D3 SPMX-20240815300868 \N \N \N 1 \N [{"file_id": "e0a26875-4d2d-4bd8-bbb5-ac13ed2bdb19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb89abb969249b3a04208b6c11dedb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb89abb969249b3a04208b6c11dedb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb89abb969249b3a04208b6c11dedb6.jpg", "file_size": 24509, "is_delete": false, "file_type": 1, "original_file_name": "HSH167FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb89abb969249b3a04208b6c11dedb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb89abb969249b3a04208b6c11dedb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb89abb969249b3a04208b6c11dedb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb89abb969249b3a04208b6c11dedb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb89abb969249b3a04208b6c11dedb6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UILyPnLnyN9QwGx-d0104n2AlA4=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.612995+00 2025-12-09 10:14:49.612999+00 5731 DH20220993T#5-10女童YS SPMX-20240815300873 \N \N \N 1 \N [{"file_id": "766192a2-cf07-4f8c-a202-39c292d3aa1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdb262a3bd454284938abdd390a9975e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdb262a3bd454284938abdd390a9975e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdb262a3bd454284938abdd390a9975e.jpg", "file_size": 5592, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-10女童YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb262a3bd454284938abdd390a9975e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb262a3bd454284938abdd390a9975e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb262a3bd454284938abdd390a9975e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdb262a3bd454284938abdd390a9975e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdb262a3bd454284938abdd390a9975e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27KmsCWytZQRjaBDwVqwYRQ4tTY=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.614302+00 2025-12-09 10:14:49.614306+00 5732 23-2102#A1袖口 SPMX-20240815300872 \N \N \N 1 \N [{"file_id": "e67056b4-5be2-445f-976f-859087df5b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abe69de361934c0896af04808f22d07f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abe69de361934c0896af04808f22d07f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abe69de361934c0896af04808f22d07f.jpg", "file_size": 17012, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe69de361934c0896af04808f22d07f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe69de361934c0896af04808f22d07f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe69de361934c0896af04808f22d07f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abe69de361934c0896af04808f22d07f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abe69de361934c0896af04808f22d07f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5LQXDkdeWkcrlvcwOWUKPvUGLk=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.61558+00 2025-12-09 10:14:49.615585+00 5733 JSD0201#-S码 SPMX-20240815300876 \N \N \N 1 \N [{"file_id": "37f9e811-a7f2-49a1-aa42-3e7bd1d1df7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e491770e158a473cb2eafcf4bdb827a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e491770e158a473cb2eafcf4bdb827a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e491770e158a473cb2eafcf4bdb827a5.jpg", "file_size": 91086, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e491770e158a473cb2eafcf4bdb827a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e491770e158a473cb2eafcf4bdb827a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e491770e158a473cb2eafcf4bdb827a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e491770e158a473cb2eafcf4bdb827a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e491770e158a473cb2eafcf4bdb827a5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THfJjvWeyQAOngu2pCyguwyUrHo=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.61687+00 2025-12-09 10:14:49.616874+00 5734 C263#黑底白花 SPMX-20240815300869 \N \N \N 1 \N [{"file_id": "bf0cea93-59bd-41e5-99f6-fc1aa19e60b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e77a94d06f440479640bc0a641d252e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e77a94d06f440479640bc0a641d252e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e77a94d06f440479640bc0a641d252e.jpg", "file_size": 22953, "is_delete": false, "file_type": 1, "original_file_name": "C263#黑底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e77a94d06f440479640bc0a641d252e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e77a94d06f440479640bc0a641d252e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e77a94d06f440479640bc0a641d252e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e77a94d06f440479640bc0a641d252e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e77a94d06f440479640bc0a641d252e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-ve5N4nC-NnNJW_RituyABLTXo=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.618151+00 2025-12-09 10:14:49.618155+00 5735 LHJ9268-1#20号枣红61号橙色花 SPMX-20240815300871 \N \N \N 1 \N [{"file_id": "52af8cf6-cb62-4d22-982d-5099f87e72d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd2594cf545d46569d19471a43507d00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd2594cf545d46569d19471a43507d00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd2594cf545d46569d19471a43507d00.jpg", "file_size": 16204, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268-1#20号枣红61号橙色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2594cf545d46569d19471a43507d00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2594cf545d46569d19471a43507d00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2594cf545d46569d19471a43507d00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd2594cf545d46569d19471a43507d00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd2594cf545d46569d19471a43507d00.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YxZan9zC13ZYVYvronjePJfZg70=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.619427+00 2025-12-09 10:14:49.619431+00 5736 FHXGPK-022-2 SPMX-20240815300875 \N \N \N 1 \N [{"file_id": "b56daa38-e59e-4df8-8199-2106a10025a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0291a9b28c954fe5a5d633af0f599bcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0291a9b28c954fe5a5d633af0f599bcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0291a9b28c954fe5a5d633af0f599bcf.jpg", "file_size": 33372, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-022-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0291a9b28c954fe5a5d633af0f599bcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0291a9b28c954fe5a5d633af0f599bcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0291a9b28c954fe5a5d633af0f599bcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0291a9b28c954fe5a5d633af0f599bcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0291a9b28c954fe5a5d633af0f599bcf.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oD362SC7wuRzD9PtsDRonuxT_0U=", "createTime": "2024-08-15 14:42:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.62071+00 2025-12-09 10:14:49.620715+00 5737 LZ1219#童装T6号色 SPMX-20240815300886 \N \N \N 1 \N [{"file_id": "33306cbf-a17b-4567-aced-12b8c507849e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06606f188cad49418d08395bd43cef2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06606f188cad49418d08395bd43cef2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06606f188cad49418d08395bd43cef2a.jpg", "file_size": 16023, "is_delete": false, "file_type": 1, "original_file_name": "LZ1219#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06606f188cad49418d08395bd43cef2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06606f188cad49418d08395bd43cef2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06606f188cad49418d08395bd43cef2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06606f188cad49418d08395bd43cef2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06606f188cad49418d08395bd43cef2a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uz36iY6pfKauz6wvu7mlI_DBZvk=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.621995+00 2025-12-09 10:14:49.621999+00 5738 HSH168FW#VS-D3 SPMX-20240815300879 \N \N \N 1 \N [{"file_id": "4821f9a7-e1d2-41c6-930a-a1cf03d3e37b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c6ae9162c86422ead4d5657d5f24efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c6ae9162c86422ead4d5657d5f24efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c6ae9162c86422ead4d5657d5f24efc.jpg", "file_size": 23748, "is_delete": false, "file_type": 1, "original_file_name": "HSH168FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c6ae9162c86422ead4d5657d5f24efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c6ae9162c86422ead4d5657d5f24efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c6ae9162c86422ead4d5657d5f24efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c6ae9162c86422ead4d5657d5f24efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c6ae9162c86422ead4d5657d5f24efc.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJiXjhVfyQyecHPa6jVBbWOKtus=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.623341+00 2025-12-09 10:14:49.623346+00 5739 DH20220993T#5-10女童YXL SPMX-20240815300883 \N \N \N 1 \N [{"file_id": "66df38ce-a379-4375-9844-b28b7438efbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f4ddea5d2e84767a380ca4dcc421282.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f4ddea5d2e84767a380ca4dcc421282.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f4ddea5d2e84767a380ca4dcc421282.jpg", "file_size": 10781, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-10女童YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4ddea5d2e84767a380ca4dcc421282.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4ddea5d2e84767a380ca4dcc421282.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4ddea5d2e84767a380ca4dcc421282.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f4ddea5d2e84767a380ca4dcc421282.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f4ddea5d2e84767a380ca4dcc421282.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkg1pe__snfzOMHUpjT11pab5Wc=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.624689+00 2025-12-09 10:14:49.624693+00 5740 23-2102#A1袖口3XL SPMX-20240815300884 \N \N \N 1 \N [{"file_id": "8d00cccd-9fbf-413d-b5ea-d51d890cbc66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4a19d31a34246cdbdc8a582fc09cd0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4a19d31a34246cdbdc8a582fc09cd0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4a19d31a34246cdbdc8a582fc09cd0c.jpg", "file_size": 11835, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19d31a34246cdbdc8a582fc09cd0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19d31a34246cdbdc8a582fc09cd0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19d31a34246cdbdc8a582fc09cd0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4a19d31a34246cdbdc8a582fc09cd0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4a19d31a34246cdbdc8a582fc09cd0c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zp4t-WSxqVo0LX9uBn2UNHtATq0=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.625995+00 2025-12-09 10:14:49.625999+00 5741 HSH169FW#VS-D3 SPMX-20240815300890 \N \N \N 1 \N [{"file_id": "a632edfd-b67b-4557-a236-f6d1400a2e0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fecd914448349df80fbdca81b0cc889.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fecd914448349df80fbdca81b0cc889.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fecd914448349df80fbdca81b0cc889.jpg", "file_size": 24151, "is_delete": false, "file_type": 1, "original_file_name": "HSH169FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fecd914448349df80fbdca81b0cc889.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fecd914448349df80fbdca81b0cc889.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fecd914448349df80fbdca81b0cc889.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fecd914448349df80fbdca81b0cc889.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fecd914448349df80fbdca81b0cc889.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOQcqWFYSgZ441eM1BrevRUQ_rE=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.627257+00 2025-12-09 10:14:49.627261+00 5742 80083#袖子匹布 SPMX-20240815300882 \N \N \N 1 \N [{"file_id": "140ebe0c-85d8-4121-ad75-6c86d82fb777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e3bb5d864e64b2f988021507198f33e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e3bb5d864e64b2f988021507198f33e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e3bb5d864e64b2f988021507198f33e.jpg", "file_size": 19653, "is_delete": false, "file_type": 1, "original_file_name": "80083#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3bb5d864e64b2f988021507198f33e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3bb5d864e64b2f988021507198f33e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3bb5d864e64b2f988021507198f33e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e3bb5d864e64b2f988021507198f33e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e3bb5d864e64b2f988021507198f33e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nk-D_oowsOz2OIVQYrJV0WhM4SE=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.628539+00 2025-12-09 10:14:49.628544+00 5743 FHXGPK-022-3 SPMX-20240815300885 \N \N \N 1 \N [{"file_id": "93998dac-94bb-429e-bb42-9979a13a2801", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f3a055700a74ed6b37f86ad92dc94ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f3a055700a74ed6b37f86ad92dc94ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f3a055700a74ed6b37f86ad92dc94ea.jpg", "file_size": 29708, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-022-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a055700a74ed6b37f86ad92dc94ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a055700a74ed6b37f86ad92dc94ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a055700a74ed6b37f86ad92dc94ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f3a055700a74ed6b37f86ad92dc94ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f3a055700a74ed6b37f86ad92dc94ea.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pa_Wxk9-atuy0-J9xi1hSby53Nk=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.629849+00 2025-12-09 10:14:49.629853+00 5744 LHJ9268-1#32号墨绿37号玫红花 SPMX-20240815300880 \N \N \N 1 \N [{"file_id": "3568df56-3efb-4609-919b-842bcfca798b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9510bb1f3b3245e78bd729b7f029637b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9510bb1f3b3245e78bd729b7f029637b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9510bb1f3b3245e78bd729b7f029637b.jpg", "file_size": 15745, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268-1#32号墨绿37号玫红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9510bb1f3b3245e78bd729b7f029637b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9510bb1f3b3245e78bd729b7f029637b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9510bb1f3b3245e78bd729b7f029637b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9510bb1f3b3245e78bd729b7f029637b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9510bb1f3b3245e78bd729b7f029637b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGdriTTGyuaoJc_Xeyx4lREMkEM=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.631142+00 2025-12-09 10:14:49.631146+00 5745 C266#墨绿白浅条 SPMX-20240815300881 \N \N \N 1 \N [{"file_id": "a393f8fc-1f34-4fc0-baad-5b92272a7d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dfb8a1929934ff2844de831fbf2d4b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dfb8a1929934ff2844de831fbf2d4b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dfb8a1929934ff2844de831fbf2d4b8.jpg", "file_size": 22842, "is_delete": false, "file_type": 1, "original_file_name": "C266#墨绿白浅条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dfb8a1929934ff2844de831fbf2d4b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dfb8a1929934ff2844de831fbf2d4b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dfb8a1929934ff2844de831fbf2d4b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dfb8a1929934ff2844de831fbf2d4b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dfb8a1929934ff2844de831fbf2d4b8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X2FqvEdJRWxNoBf_2FQ7liYKtIE=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.632413+00 2025-12-09 10:14:49.632417+00 5746 JSD0201#-XL码 SPMX-20240815300887 \N \N \N 1 \N [{"file_id": "637642bf-6d8f-46f5-a22e-58c4eaa54ff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92c51afbe25746659a3f0033be6f8c41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92c51afbe25746659a3f0033be6f8c41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92c51afbe25746659a3f0033be6f8c41.jpg", "file_size": 87580, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92c51afbe25746659a3f0033be6f8c41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92c51afbe25746659a3f0033be6f8c41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92c51afbe25746659a3f0033be6f8c41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92c51afbe25746659a3f0033be6f8c41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92c51afbe25746659a3f0033be6f8c41.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAaKxWDIS0WvPEYgdYp6pzkh4o0=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.633714+00 2025-12-09 10:14:49.633718+00 5747 0003-114FWF#V5曲线 SPMX-20240815300888 \N \N \N 1 \N [{"file_id": "1503b992-8d2d-4bcc-96f3-daa7b686f271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1516d0fa760149609b3f86de9cce756f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1516d0fa760149609b3f86de9cce756f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1516d0fa760149609b3f86de9cce756f.jpg", "file_size": 22522, "is_delete": false, "file_type": 1, "original_file_name": "0003-114FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516d0fa760149609b3f86de9cce756f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516d0fa760149609b3f86de9cce756f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516d0fa760149609b3f86de9cce756f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1516d0fa760149609b3f86de9cce756f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1516d0fa760149609b3f86de9cce756f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1TFMjYD5KdTH3O6AMxqeEIjOM0=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.635013+00 2025-12-09 10:14:49.635017+00 5748 1055#白底粉 SPMX-20240815300889 \N \N \N 1 \N [{"file_id": "128ee83f-1b5b-41aa-838b-9e938a8f953b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfbc0b867ba64db6978c5d440cec6f61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfbc0b867ba64db6978c5d440cec6f61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfbc0b867ba64db6978c5d440cec6f61.jpg", "file_size": 16832, "is_delete": false, "file_type": 1, "original_file_name": "1055#白底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbc0b867ba64db6978c5d440cec6f61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbc0b867ba64db6978c5d440cec6f61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfbc0b867ba64db6978c5d440cec6f61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfbc0b867ba64db6978c5d440cec6f61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfbc0b867ba64db6978c5d440cec6f61.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQ84S5LH8Txd9wpcE_MXpO7ITwU=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.636302+00 2025-12-09 10:14:49.636306+00 5749 23-2102#A1袖口包条 SPMX-20240815300894 \N \N \N 1 \N [{"file_id": "f13b23ce-0afc-450d-8719-4b8825911f2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d29a34ab8d544bb9bce03a78aa682f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d29a34ab8d544bb9bce03a78aa682f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d29a34ab8d544bb9bce03a78aa682f7.jpg", "file_size": 7008, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1袖口包条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d29a34ab8d544bb9bce03a78aa682f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d29a34ab8d544bb9bce03a78aa682f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d29a34ab8d544bb9bce03a78aa682f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d29a34ab8d544bb9bce03a78aa682f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d29a34ab8d544bb9bce03a78aa682f7.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qs6oh3Y-BOgyYQ5vDQo-WnaUrA=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.637577+00 2025-12-09 10:14:49.637582+00 5750 C266#墨绿白线条 SPMX-20240815300892 \N \N \N 1 \N [{"file_id": "17a77873-bec1-4207-8d0d-44f32b0256b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef218759d7b94307ba11b39c91ffd2bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef218759d7b94307ba11b39c91ffd2bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef218759d7b94307ba11b39c91ffd2bd.jpg", "file_size": 22768, "is_delete": false, "file_type": 1, "original_file_name": "C266#墨绿白线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef218759d7b94307ba11b39c91ffd2bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef218759d7b94307ba11b39c91ffd2bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef218759d7b94307ba11b39c91ffd2bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef218759d7b94307ba11b39c91ffd2bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef218759d7b94307ba11b39c91ffd2bd.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0uFRQpl1FOuUEd4PJW7vUC4xw8=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.63891+00 2025-12-09 10:14:49.638915+00 5751 LHJ9268-1#5号彩兰25号土黄花 SPMX-20240815300891 \N \N \N 1 \N [{"file_id": "9c4feafd-422b-4267-a45e-653107e72741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d47b5be68f2e42919a5760e4e13ea315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d47b5be68f2e42919a5760e4e13ea315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d47b5be68f2e42919a5760e4e13ea315.jpg", "file_size": 17031, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268-1#5号彩兰25号土黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47b5be68f2e42919a5760e4e13ea315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47b5be68f2e42919a5760e4e13ea315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47b5be68f2e42919a5760e4e13ea315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d47b5be68f2e42919a5760e4e13ea315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d47b5be68f2e42919a5760e4e13ea315.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EiRYlAoaH-Q21Nvp-IT4l4tpdXw=", "createTime": "2024-08-15 14:42:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.640383+00 2025-12-09 10:14:49.640388+00 5752 DH20220993T#5-10女童YXS SPMX-20240815300893 \N \N \N 1 \N [{"file_id": "d7e03ef5-9aff-4889-a800-d6c8fb83bf65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "766cdf8bd22444ceab56e756dd5c8f02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "766cdf8bd22444ceab56e756dd5c8f02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "766cdf8bd22444ceab56e756dd5c8f02.jpg", "file_size": 5413, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-10女童YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766cdf8bd22444ceab56e756dd5c8f02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766cdf8bd22444ceab56e756dd5c8f02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766cdf8bd22444ceab56e756dd5c8f02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/766cdf8bd22444ceab56e756dd5c8f02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/766cdf8bd22444ceab56e756dd5c8f02.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MI00vF_PycqqobCh6qyIdg4I6w=", "createTime": "2024-08-15 14:42:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.641799+00 2025-12-09 10:14:49.641804+00 5753 80085#前后幅 SPMX-20240815300896 \N \N \N 1 \N [{"file_id": "713f916d-6b56-4d6a-abd9-59634c1cff0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "411d21bab30e4f24ac7e3e0a1e9a3b45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "411d21bab30e4f24ac7e3e0a1e9a3b45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "411d21bab30e4f24ac7e3e0a1e9a3b45.jpg", "file_size": 20183, "is_delete": false, "file_type": 1, "original_file_name": "80085#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411d21bab30e4f24ac7e3e0a1e9a3b45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411d21bab30e4f24ac7e3e0a1e9a3b45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411d21bab30e4f24ac7e3e0a1e9a3b45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/411d21bab30e4f24ac7e3e0a1e9a3b45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/411d21bab30e4f24ac7e3e0a1e9a3b45.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cPcNtL0ze3FsDt_35bqMnN2ybQ=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.643162+00 2025-12-09 10:14:49.643166+00 5754 LHJ9268-1#6号枣红61号橙色花 SPMX-20240815300903 \N \N \N 1 \N [{"file_id": "caaf870e-da2d-4618-a835-3a864bf4f15c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24555a0292b4451ba9f6088893550201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24555a0292b4451ba9f6088893550201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24555a0292b4451ba9f6088893550201.jpg", "file_size": 15334, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9268-1#6号枣红61号橙色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24555a0292b4451ba9f6088893550201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24555a0292b4451ba9f6088893550201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24555a0292b4451ba9f6088893550201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24555a0292b4451ba9f6088893550201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24555a0292b4451ba9f6088893550201.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqwgSa3lVC9hvFJVKVNFGIDPFfQ=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.644503+00 2025-12-09 10:14:49.644508+00 5755 0003-115FWF#红色 SPMX-20240815300897 \N \N \N 1 \N [{"file_id": "093ba59f-df94-43e0-b1e4-957c156ce12f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d686d5733874c9fabb34054693a1489.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d686d5733874c9fabb34054693a1489.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d686d5733874c9fabb34054693a1489.jpg", "file_size": 16104, "is_delete": false, "file_type": 1, "original_file_name": "0003-115FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d686d5733874c9fabb34054693a1489.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d686d5733874c9fabb34054693a1489.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d686d5733874c9fabb34054693a1489.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d686d5733874c9fabb34054693a1489.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d686d5733874c9fabb34054693a1489.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eh2lr6Ff9ufXJ5zQukm8oGAaxYI=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.645824+00 2025-12-09 10:14:49.645829+00 5756 1055#白底粉匹布 SPMX-20240815300898 \N \N \N 1 \N [{"file_id": "f197de80-76ed-49ac-ab88-a93e238c4a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f2c7f58c2854c9fb87ff71700c156dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f2c7f58c2854c9fb87ff71700c156dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f2c7f58c2854c9fb87ff71700c156dd.jpg", "file_size": 6685, "is_delete": false, "file_type": 1, "original_file_name": "1055#白底粉匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2c7f58c2854c9fb87ff71700c156dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2c7f58c2854c9fb87ff71700c156dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2c7f58c2854c9fb87ff71700c156dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f2c7f58c2854c9fb87ff71700c156dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f2c7f58c2854c9fb87ff71700c156dd.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7I0dnYZk2AUq1Zy8JEARiRCtwU=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.647107+00 2025-12-09 10:14:49.647112+00 5757 FHXGPK-022-4 SPMX-20240815300895 \N \N \N 1 \N [{"file_id": "08473b19-b67b-45f9-9306-0f7c31ddc973", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a839b6ef9bc4456aaa39ac89af262b6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a839b6ef9bc4456aaa39ac89af262b6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a839b6ef9bc4456aaa39ac89af262b6f.jpg", "file_size": 30962, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-022-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a839b6ef9bc4456aaa39ac89af262b6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a839b6ef9bc4456aaa39ac89af262b6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a839b6ef9bc4456aaa39ac89af262b6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a839b6ef9bc4456aaa39ac89af262b6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a839b6ef9bc4456aaa39ac89af262b6f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma2JvSd9Ggx8LERTU-CL7XqHxuY=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.648433+00 2025-12-09 10:14:49.648438+00 5758 23-2102#A1袖口包条3XL SPMX-20240815300900 \N \N \N 1 \N [{"file_id": "8a082ec3-1143-4a6a-a95b-35890a57bb83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a954b1a40a30470fa9a629efac80a256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a954b1a40a30470fa9a629efac80a256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a954b1a40a30470fa9a629efac80a256.jpg", "file_size": 7048, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a954b1a40a30470fa9a629efac80a256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a954b1a40a30470fa9a629efac80a256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a954b1a40a30470fa9a629efac80a256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a954b1a40a30470fa9a629efac80a256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a954b1a40a30470fa9a629efac80a256.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qlo6yNCxuVjEk8a1hFFTZ1GnIvc=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.649728+00 2025-12-09 10:14:49.649732+00 5759 HSH170FW#VS-D3 SPMX-20240815300902 \N \N \N 1 \N [{"file_id": "5a1bee95-ad9e-4096-a16a-9c948b7f0621", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7feceb12f00a423987feeaac45e9b67f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7feceb12f00a423987feeaac45e9b67f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7feceb12f00a423987feeaac45e9b67f.jpg", "file_size": 20866, "is_delete": false, "file_type": 1, "original_file_name": "HSH170FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feceb12f00a423987feeaac45e9b67f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feceb12f00a423987feeaac45e9b67f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7feceb12f00a423987feeaac45e9b67f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7feceb12f00a423987feeaac45e9b67f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7feceb12f00a423987feeaac45e9b67f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WR97GxJVp-6tQ_mOWw87UqpJUX0=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.651035+00 2025-12-09 10:14:49.651039+00 5760 LZ121FWF#1号色短袖 SPMX-20240815300899 \N \N \N 1 \N [{"file_id": "2c9951ca-0168-463c-a9ec-7e18d90628e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28c807bd3012498b934752a126a39038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28c807bd3012498b934752a126a39038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28c807bd3012498b934752a126a39038.jpg", "file_size": 21210, "is_delete": false, "file_type": 1, "original_file_name": "LZ121FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c807bd3012498b934752a126a39038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c807bd3012498b934752a126a39038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c807bd3012498b934752a126a39038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28c807bd3012498b934752a126a39038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28c807bd3012498b934752a126a39038.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOnW6we-aQsvgmkbXo1QEbc2R3I=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.652331+00 2025-12-09 10:14:49.652336+00 5761 JSD0201#-橙色-L码 SPMX-20240815300901 \N \N \N 1 \N [{"file_id": "2bcb6511-684f-4a14-950d-d20bc81219d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "390da9afec0f47a89d0412c3ec000563.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "390da9afec0f47a89d0412c3ec000563.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "390da9afec0f47a89d0412c3ec000563.jpg", "file_size": 97089, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-橙色-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da9afec0f47a89d0412c3ec000563.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da9afec0f47a89d0412c3ec000563.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da9afec0f47a89d0412c3ec000563.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/390da9afec0f47a89d0412c3ec000563.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/390da9afec0f47a89d0412c3ec000563.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6K5zXW7os7t_qT2TKFkpxgUAqmQ=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.653731+00 2025-12-09 10:14:49.653736+00 5762 0003-115FWF#绿色 SPMX-20240815300906 \N \N \N 1 \N [{"file_id": "9984070c-1d37-47d7-abf7-1fc1909dad49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be24b7dbff5458bbec4dea338904e2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be24b7dbff5458bbec4dea338904e2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be24b7dbff5458bbec4dea338904e2f.jpg", "file_size": 16155, "is_delete": false, "file_type": 1, "original_file_name": "0003-115FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be24b7dbff5458bbec4dea338904e2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be24b7dbff5458bbec4dea338904e2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be24b7dbff5458bbec4dea338904e2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be24b7dbff5458bbec4dea338904e2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be24b7dbff5458bbec4dea338904e2f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0k201PDSlyzRqH6y0N5c9xIapvY=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.655028+00 2025-12-09 10:14:49.655032+00 5763 80085#袖子匹布 SPMX-20240815300907 \N \N \N 1 \N [{"file_id": "4a9738b3-488e-4783-91b5-ddca6780b8ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1201a926ee5408fafbc750f4092063e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1201a926ee5408fafbc750f4092063e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1201a926ee5408fafbc750f4092063e.jpg", "file_size": 9929, "is_delete": false, "file_type": 1, "original_file_name": "80085#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1201a926ee5408fafbc750f4092063e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1201a926ee5408fafbc750f4092063e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1201a926ee5408fafbc750f4092063e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1201a926ee5408fafbc750f4092063e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1201a926ee5408fafbc750f4092063e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXxfeF8n9ecCoh7N_hfe3BcCtmM=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.656342+00 2025-12-09 10:14:49.656346+00 5764 1055#童装土黄 SPMX-20240815300908 \N \N \N 1 \N [{"file_id": "d2f2dc36-8f7f-464f-8204-5b0485dc0449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7e10788921411cbfe0df56821ec6c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7e10788921411cbfe0df56821ec6c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7e10788921411cbfe0df56821ec6c9.jpg", "file_size": 11902, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7e10788921411cbfe0df56821ec6c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7e10788921411cbfe0df56821ec6c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7e10788921411cbfe0df56821ec6c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7e10788921411cbfe0df56821ec6c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7e10788921411cbfe0df56821ec6c9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6c8V-fGz5WrBuBPesRQdON71Eg4=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.6576+00 2025-12-09 10:14:49.657604+00 5765 23-2102#A1长袖子3XL SPMX-20240815300911 \N \N \N 1 \N [{"file_id": "93e32044-4d5d-41d2-847d-6302e03fdaca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c16362b2db9345fe81daa712108bfeb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c16362b2db9345fe81daa712108bfeb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c16362b2db9345fe81daa712108bfeb9.jpg", "file_size": 19960, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16362b2db9345fe81daa712108bfeb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16362b2db9345fe81daa712108bfeb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16362b2db9345fe81daa712108bfeb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c16362b2db9345fe81daa712108bfeb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c16362b2db9345fe81daa712108bfeb9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rlo9ZlZBzJKcDiUpQKTfMXbJW-c=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.658861+00 2025-12-09 10:14:49.658865+00 5766 JSD0201#-橙色-M码 SPMX-20240815300915 \N \N \N 1 \N [{"file_id": "fbeee70c-0752-4bdf-8171-e35f0c4cbc90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c40092ae745344c0ab3b5ec2d32b13e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c40092ae745344c0ab3b5ec2d32b13e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c40092ae745344c0ab3b5ec2d32b13e4.jpg", "file_size": 93230, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-橙色-M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40092ae745344c0ab3b5ec2d32b13e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40092ae745344c0ab3b5ec2d32b13e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c40092ae745344c0ab3b5ec2d32b13e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c40092ae745344c0ab3b5ec2d32b13e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c40092ae745344c0ab3b5ec2d32b13e4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BAhiafsyRH31kYSNdea3zrvOyzU=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.660122+00 2025-12-09 10:14:49.660127+00 5767 DH20220993T#5-13女童YL SPMX-20240815300910 \N \N \N 1 \N [{"file_id": "3e3ec488-5264-47d2-b01e-c3baf353b1bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75a1b3b0bc224e748586a7ca64091f78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75a1b3b0bc224e748586a7ca64091f78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75a1b3b0bc224e748586a7ca64091f78.jpg", "file_size": 86493, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-13女童YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a1b3b0bc224e748586a7ca64091f78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a1b3b0bc224e748586a7ca64091f78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a1b3b0bc224e748586a7ca64091f78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75a1b3b0bc224e748586a7ca64091f78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75a1b3b0bc224e748586a7ca64091f78.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Ov64fuq9MwNesY-cd8eIuRNADU=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.661535+00 2025-12-09 10:14:49.66154+00 5768 FHXGPK-023-- SPMX-20240815300916 \N \N \N 1 \N [{"file_id": "e9aee1a1-c5c5-4a1e-aa54-eb5a1d58a461", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d3f6bd6a50f436889c43559180edd35.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d3f6bd6a50f436889c43559180edd35.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d3f6bd6a50f436889c43559180edd35.png", "file_size": 33316, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023--.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3f6bd6a50f436889c43559180edd35.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3f6bd6a50f436889c43559180edd35.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3f6bd6a50f436889c43559180edd35.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d3f6bd6a50f436889c43559180edd35.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d3f6bd6a50f436889c43559180edd35.png?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvW-R_UJ0zCau-uc8_S65UgLcYQ=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.66301+00 2025-12-09 10:14:49.663015+00 5769 LHJ9270#1#黑色 SPMX-20240815300917 \N \N \N 1 \N [{"file_id": "0440f593-e49b-4a56-aa1d-a6ddf16c32a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ea2208803d94c68a4220aa55c549cfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ea2208803d94c68a4220aa55c549cfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ea2208803d94c68a4220aa55c549cfc.jpg", "file_size": 13734, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9270#1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea2208803d94c68a4220aa55c549cfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea2208803d94c68a4220aa55c549cfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea2208803d94c68a4220aa55c549cfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ea2208803d94c68a4220aa55c549cfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ea2208803d94c68a4220aa55c549cfc.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZhNzcDYXeHy25s9E9O4BC2_blw=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.664509+00 2025-12-09 10:14:49.664514+00 5770 FHXGPK-022-5 SPMX-20240815300905 \N \N \N 1 \N [{"file_id": "0853c141-f712-40e1-96e3-0cf457d0c9d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0741e92f7d5f4237b6fc58f27d0c67e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0741e92f7d5f4237b6fc58f27d0c67e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0741e92f7d5f4237b6fc58f27d0c67e5.jpg", "file_size": 32388, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-022-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741e92f7d5f4237b6fc58f27d0c67e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741e92f7d5f4237b6fc58f27d0c67e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741e92f7d5f4237b6fc58f27d0c67e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0741e92f7d5f4237b6fc58f27d0c67e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0741e92f7d5f4237b6fc58f27d0c67e5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uex_82Qe7pLUSOPWYbnRKrKaW8c=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.665912+00 2025-12-09 10:14:49.665916+00 5771 LZ121FWF#2号色短袖 SPMX-20240815300909 \N \N \N 1 \N [{"file_id": "c6cef6f2-cfb7-403e-b843-84356332c1fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37622a0a781d47f8bc05f120be0d47d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37622a0a781d47f8bc05f120be0d47d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37622a0a781d47f8bc05f120be0d47d6.jpg", "file_size": 20818, "is_delete": false, "file_type": 1, "original_file_name": "LZ121FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37622a0a781d47f8bc05f120be0d47d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37622a0a781d47f8bc05f120be0d47d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37622a0a781d47f8bc05f120be0d47d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37622a0a781d47f8bc05f120be0d47d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37622a0a781d47f8bc05f120be0d47d6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pYRg-_qvNABO2uD-AeAtvyeV5Ag=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.667257+00 2025-12-09 10:14:49.667262+00 5772 80086#前后幅 SPMX-20240815300918 \N \N \N 1 \N [{"file_id": "d9181366-b22e-4d52-8ec2-02111a0d5399", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "242a8870138448038af39274f8a78b27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "242a8870138448038af39274f8a78b27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "242a8870138448038af39274f8a78b27.jpg", "file_size": 17532, "is_delete": false, "file_type": 1, "original_file_name": "80086#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242a8870138448038af39274f8a78b27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242a8870138448038af39274f8a78b27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242a8870138448038af39274f8a78b27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/242a8870138448038af39274f8a78b27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/242a8870138448038af39274f8a78b27.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTldSqY7ZBt2RfqVw3cOo3KmHmU=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.668556+00 2025-12-09 10:14:49.668561+00 5773 C266#大白绿浅条 SPMX-20240815300904 \N \N \N 1 \N [{"file_id": "0341b9c8-1e89-4e47-bf25-bf5dd4572423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc96b1e81b38483dbc33661075e5def2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc96b1e81b38483dbc33661075e5def2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc96b1e81b38483dbc33661075e5def2.jpg", "file_size": 21774, "is_delete": false, "file_type": 1, "original_file_name": "C266#大白绿浅条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc96b1e81b38483dbc33661075e5def2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc96b1e81b38483dbc33661075e5def2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc96b1e81b38483dbc33661075e5def2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc96b1e81b38483dbc33661075e5def2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc96b1e81b38483dbc33661075e5def2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6koIhCQwU5gK9dwQQpASKU6P5Q8=", "createTime": "2024-08-15 14:42:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.67017+00 2025-12-09 10:14:49.670174+00 5774 HSH171FW#VS-D3 SPMX-20240815300912 \N \N \N 1 \N [{"file_id": "b97b286d-8aed-4d9f-b97c-fafe2cba293b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8238577960640eda4f5e7920b54e5b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8238577960640eda4f5e7920b54e5b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8238577960640eda4f5e7920b54e5b4.jpg", "file_size": 22870, "is_delete": false, "file_type": 1, "original_file_name": "HSH171FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8238577960640eda4f5e7920b54e5b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8238577960640eda4f5e7920b54e5b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8238577960640eda4f5e7920b54e5b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8238577960640eda4f5e7920b54e5b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8238577960640eda4f5e7920b54e5b4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-Px10Sf9g319ozbLE5rNFrKZPQ=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.671735+00 2025-12-09 10:14:49.671739+00 5775 C266#大白绿线条 SPMX-20240815300914 \N \N \N 1 \N [{"file_id": "c18a7d2e-bbb9-4675-8524-c414c97c2652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a14edf22cba54a50b6a5d8acf40c1d7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a14edf22cba54a50b6a5d8acf40c1d7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a14edf22cba54a50b6a5d8acf40c1d7f.jpg", "file_size": 21404, "is_delete": false, "file_type": 1, "original_file_name": "C266#大白绿线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14edf22cba54a50b6a5d8acf40c1d7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14edf22cba54a50b6a5d8acf40c1d7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14edf22cba54a50b6a5d8acf40c1d7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a14edf22cba54a50b6a5d8acf40c1d7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a14edf22cba54a50b6a5d8acf40c1d7f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01C4RlKbYmSLM8GVbVNQIbj0bgM=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.673309+00 2025-12-09 10:14:49.673313+00 5776 LZ121FWF#3号色短袖 SPMX-20240815300921 \N \N \N 1 \N [{"file_id": "b35af970-69ba-4063-bc4d-e01a307e8f6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72601d0331654cc9bb9fc70e66c4263a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72601d0331654cc9bb9fc70e66c4263a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72601d0331654cc9bb9fc70e66c4263a.jpg", "file_size": 20662, "is_delete": false, "file_type": 1, "original_file_name": "LZ121FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72601d0331654cc9bb9fc70e66c4263a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72601d0331654cc9bb9fc70e66c4263a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72601d0331654cc9bb9fc70e66c4263a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72601d0331654cc9bb9fc70e66c4263a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72601d0331654cc9bb9fc70e66c4263a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPWB5oQsTEz54VERFlMntYwjbak=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.674881+00 2025-12-09 10:14:49.674886+00 5777 FHXGPK-023-1 SPMX-20240815300926 \N \N \N 1 \N [{"file_id": "23e52ef5-e3db-4cdc-994d-ff25e7d1fd4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3539a7e35de247929ce72b7f12960686.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3539a7e35de247929ce72b7f12960686.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3539a7e35de247929ce72b7f12960686.jpg", "file_size": 37415, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3539a7e35de247929ce72b7f12960686.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3539a7e35de247929ce72b7f12960686.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3539a7e35de247929ce72b7f12960686.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3539a7e35de247929ce72b7f12960686.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3539a7e35de247929ce72b7f12960686.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8rF3Y6jgZt857T-Wikc6HOlZEM=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.676431+00 2025-12-09 10:14:49.676435+00 5778 LZ121FWF#4号色短袖 SPMX-20240815300933 \N \N \N 1 \N [{"file_id": "19c3d2b0-c8bd-4f97-b0c6-0660a65beea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76092af26b33419385fe2dc35b69e2c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76092af26b33419385fe2dc35b69e2c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76092af26b33419385fe2dc35b69e2c9.jpg", "file_size": 20328, "is_delete": false, "file_type": 1, "original_file_name": "LZ121FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76092af26b33419385fe2dc35b69e2c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76092af26b33419385fe2dc35b69e2c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76092af26b33419385fe2dc35b69e2c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76092af26b33419385fe2dc35b69e2c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76092af26b33419385fe2dc35b69e2c9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMFyQF7x7_0MlFouTBIFSsUo-gA=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.678016+00 2025-12-09 10:14:49.678021+00 5779 C266#白色黑线条 SPMX-20240815300923 \N \N \N 1 \N [{"file_id": "cbca807c-bd89-44fa-91d8-fe586b01a1a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "602905ff6d16489690b0d2debe20b95f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "602905ff6d16489690b0d2debe20b95f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "602905ff6d16489690b0d2debe20b95f.jpg", "file_size": 22403, "is_delete": false, "file_type": 1, "original_file_name": "C266#白色黑线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602905ff6d16489690b0d2debe20b95f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602905ff6d16489690b0d2debe20b95f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602905ff6d16489690b0d2debe20b95f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/602905ff6d16489690b0d2debe20b95f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/602905ff6d16489690b0d2debe20b95f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xRJUG1lfXrSHaZufXs0Ak_5e4Q=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.679603+00 2025-12-09 10:14:49.679607+00 5780 23-2102#A1长袖子4XL SPMX-20240815300924 \N \N \N 1 \N [{"file_id": "b67e1c15-004a-41e8-aeac-6172f6aa11d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1d0631ce7764296bac3a2e7f3720e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1d0631ce7764296bac3a2e7f3720e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1d0631ce7764296bac3a2e7f3720e46.jpg", "file_size": 20706, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d0631ce7764296bac3a2e7f3720e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d0631ce7764296bac3a2e7f3720e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d0631ce7764296bac3a2e7f3720e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1d0631ce7764296bac3a2e7f3720e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1d0631ce7764296bac3a2e7f3720e46.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ft921EEeh55IXemX7MoqQeYxav4=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.681181+00 2025-12-09 10:14:49.681186+00 5781 0003-116FWF#橙色 SPMX-20240815300931 \N \N \N 1 \N [{"file_id": "795ef1a8-1fc0-4747-bf64-50ac574f9a3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0696a7ab467745cc9c104d77298ecb1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0696a7ab467745cc9c104d77298ecb1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0696a7ab467745cc9c104d77298ecb1a.jpg", "file_size": 17016, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0696a7ab467745cc9c104d77298ecb1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0696a7ab467745cc9c104d77298ecb1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0696a7ab467745cc9c104d77298ecb1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0696a7ab467745cc9c104d77298ecb1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0696a7ab467745cc9c104d77298ecb1a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egH0oUWveCPvaH9O8g91jmfyabw=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.68244+00 2025-12-09 10:14:49.682444+00 5782 1055#童装红色 SPMX-20240815300930 \N \N \N 1 \N [{"file_id": "086cc872-c1db-45b4-b6e2-c0948f685ab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76e419315bec42a68d1c3d0a1ded53af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76e419315bec42a68d1c3d0a1ded53af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76e419315bec42a68d1c3d0a1ded53af.jpg", "file_size": 12184, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e419315bec42a68d1c3d0a1ded53af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e419315bec42a68d1c3d0a1ded53af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e419315bec42a68d1c3d0a1ded53af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76e419315bec42a68d1c3d0a1ded53af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76e419315bec42a68d1c3d0a1ded53af.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpQxhEO0TlTdGYbzV4iSkBsPSCY=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.683732+00 2025-12-09 10:14:49.683737+00 5783 0003-116FWF#V5曲线 SPMX-20240815300919 \N \N \N 1 \N [{"file_id": "6d8f5ab0-c46a-4ff9-a5f9-48901767124d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dd74bb210944a20b345e6b15e0030c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dd74bb210944a20b345e6b15e0030c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dd74bb210944a20b345e6b15e0030c4.jpg", "file_size": 18966, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd74bb210944a20b345e6b15e0030c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd74bb210944a20b345e6b15e0030c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd74bb210944a20b345e6b15e0030c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dd74bb210944a20b345e6b15e0030c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dd74bb210944a20b345e6b15e0030c4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2ZYk1wEKyDx9Y374uZSi2bXKEA=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.68502+00 2025-12-09 10:14:49.685024+00 5784 DH20220993T#5-13女童YS SPMX-20240815300932 \N \N \N 1 \N [{"file_id": "4f23ce41-4697-4536-b37f-a2e8eb46a12f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa381d338abe4b4cb2e7934053b1f72f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa381d338abe4b4cb2e7934053b1f72f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa381d338abe4b4cb2e7934053b1f72f.jpg", "file_size": 5947, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-13女童YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa381d338abe4b4cb2e7934053b1f72f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa381d338abe4b4cb2e7934053b1f72f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa381d338abe4b4cb2e7934053b1f72f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa381d338abe4b4cb2e7934053b1f72f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa381d338abe4b4cb2e7934053b1f72f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fIH1ZIVT2O418PjtRAvRlO22MoQ=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.686301+00 2025-12-09 10:14:49.686306+00 5785 DH20220993T#5-13女童YM SPMX-20240815300922 \N \N \N 1 \N [{"file_id": "499b03fa-b19f-4ff8-9ffe-029cac73bba8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "206feb7d67e0406581a4c83531e0b7e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "206feb7d67e0406581a4c83531e0b7e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "206feb7d67e0406581a4c83531e0b7e6.jpg", "file_size": 71547, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-13女童YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206feb7d67e0406581a4c83531e0b7e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206feb7d67e0406581a4c83531e0b7e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206feb7d67e0406581a4c83531e0b7e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/206feb7d67e0406581a4c83531e0b7e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/206feb7d67e0406581a4c83531e0b7e6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sxusmql1F8B_eyry2Lmc92x_y4s=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.687538+00 2025-12-09 10:14:49.687542+00 5786 1055#童装枣红 SPMX-20240815300920 \N \N \N 1 \N [{"file_id": "cfea4fd4-d111-4174-90cf-17d16f786f76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11219ec502464343a2cbf018d92be83b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11219ec502464343a2cbf018d92be83b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11219ec502464343a2cbf018d92be83b.jpg", "file_size": 11456, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11219ec502464343a2cbf018d92be83b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11219ec502464343a2cbf018d92be83b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11219ec502464343a2cbf018d92be83b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11219ec502464343a2cbf018d92be83b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11219ec502464343a2cbf018d92be83b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n2_ZKhEpLwigMDLC4YnpImBLc3k=", "createTime": "2024-08-15 14:42:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.688897+00 2025-12-09 10:14:49.688901+00 5787 HSH172FW#VS-D3 SPMX-20240815300925 \N \N \N 1 \N [{"file_id": "60ac417a-b639-4a4f-8260-3a6344545461", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cb5036f95c24b539bbc246d644d9b38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cb5036f95c24b539bbc246d644d9b38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cb5036f95c24b539bbc246d644d9b38.jpg", "file_size": 21187, "is_delete": false, "file_type": 1, "original_file_name": "HSH172FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb5036f95c24b539bbc246d644d9b38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb5036f95c24b539bbc246d644d9b38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb5036f95c24b539bbc246d644d9b38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cb5036f95c24b539bbc246d644d9b38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cb5036f95c24b539bbc246d644d9b38.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hGJsHxxbC0e05xgUKVbKVNJV7w=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.6902+00 2025-12-09 10:14:49.690203+00 5788 JSD0201#-橙色-S码 SPMX-20240815300929 \N \N \N 1 \N [{"file_id": "a74b1128-ca11-4f74-a987-ea71d289de1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d985772775b4ae7b5a31dc7009bfb00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d985772775b4ae7b5a31dc7009bfb00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d985772775b4ae7b5a31dc7009bfb00.jpg", "file_size": 93789, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-橙色-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d985772775b4ae7b5a31dc7009bfb00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d985772775b4ae7b5a31dc7009bfb00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d985772775b4ae7b5a31dc7009bfb00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d985772775b4ae7b5a31dc7009bfb00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d985772775b4ae7b5a31dc7009bfb00.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ulTamEk3xqQx_cuHpRL6vmv0VM=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.691486+00 2025-12-09 10:14:49.691491+00 5789 LHJ9272#118#蓝色 SPMX-20240815300927 \N \N \N 1 \N [{"file_id": "eeeab016-f07e-4d4d-b8df-e3f8e29914cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a32a8da208b445b2802715d7cee79242.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a32a8da208b445b2802715d7cee79242.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a32a8da208b445b2802715d7cee79242.jpg", "file_size": 11555, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32a8da208b445b2802715d7cee79242.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32a8da208b445b2802715d7cee79242.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32a8da208b445b2802715d7cee79242.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a32a8da208b445b2802715d7cee79242.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a32a8da208b445b2802715d7cee79242.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:su6_tDGzE8UlyfXPZ4NWs7j7fWA=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.692774+00 2025-12-09 10:14:49.692778+00 5790 80086#袖子匹布 SPMX-20240815300928 \N \N \N 1 \N [{"file_id": "23e776fd-52cb-4e36-ba48-c99eb67b7639", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22b1fad2cd964e63b968aa9373eefdbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22b1fad2cd964e63b968aa9373eefdbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22b1fad2cd964e63b968aa9373eefdbc.jpg", "file_size": 12612, "is_delete": false, "file_type": 1, "original_file_name": "80086#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b1fad2cd964e63b968aa9373eefdbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b1fad2cd964e63b968aa9373eefdbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b1fad2cd964e63b968aa9373eefdbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22b1fad2cd964e63b968aa9373eefdbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22b1fad2cd964e63b968aa9373eefdbc.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3vJ2xW9MDs-2hHj8QlXB5cDexg=", "createTime": "2024-08-15 14:42:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.694029+00 2025-12-09 10:14:49.694033+00 5791 DH20220993T#5-13女童YXL SPMX-20240815300936 \N \N \N 1 \N [{"file_id": "fc08baac-4d06-4934-aed6-7a0a6bd5c1cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfd9fca77fa46ff9dccdb63204c3c6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfd9fca77fa46ff9dccdb63204c3c6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfd9fca77fa46ff9dccdb63204c3c6e.jpg", "file_size": 11148, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-13女童YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9fca77fa46ff9dccdb63204c3c6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9fca77fa46ff9dccdb63204c3c6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9fca77fa46ff9dccdb63204c3c6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9fca77fa46ff9dccdb63204c3c6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9fca77fa46ff9dccdb63204c3c6e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZl-NfTw3kG4EPEIrgsx0i4KZx0=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.695312+00 2025-12-09 10:14:49.695316+00 5792 1055#童装绿色 SPMX-20240815300940 \N \N \N 1 \N [{"file_id": "9c19779e-be11-489f-ba40-7477e91e1a45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed9a22cec3704903964260e2a347a104.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed9a22cec3704903964260e2a347a104.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed9a22cec3704903964260e2a347a104.jpg", "file_size": 11352, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a22cec3704903964260e2a347a104.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a22cec3704903964260e2a347a104.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed9a22cec3704903964260e2a347a104.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed9a22cec3704903964260e2a347a104.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed9a22cec3704903964260e2a347a104.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRVp6DZwXFtKJTsX04AajTjVqE8=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.696584+00 2025-12-09 10:14:49.696588+00 5793 23-2102#A1领口 SPMX-20240815300935 \N \N \N 1 \N [{"file_id": "14226904-b850-4151-97f9-9555235688fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b4a8c6e07c84848afa2eb7d3c121b20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b4a8c6e07c84848afa2eb7d3c121b20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b4a8c6e07c84848afa2eb7d3c121b20.jpg", "file_size": 6917, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4a8c6e07c84848afa2eb7d3c121b20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4a8c6e07c84848afa2eb7d3c121b20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4a8c6e07c84848afa2eb7d3c121b20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b4a8c6e07c84848afa2eb7d3c121b20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b4a8c6e07c84848afa2eb7d3c121b20.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNYo8oPZaw6ZsjTFvTfGUG7ydbU=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.697845+00 2025-12-09 10:14:49.69785+00 5794 FHXGPK-023-2 SPMX-20240815300937 \N \N \N 1 \N [{"file_id": "24558ad1-d375-4990-8b1a-459ae7cb8d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af645b20d2a8435fbb6072ebe30c4377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af645b20d2a8435fbb6072ebe30c4377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af645b20d2a8435fbb6072ebe30c4377.jpg", "file_size": 35395, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af645b20d2a8435fbb6072ebe30c4377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af645b20d2a8435fbb6072ebe30c4377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af645b20d2a8435fbb6072ebe30c4377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af645b20d2a8435fbb6072ebe30c4377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af645b20d2a8435fbb6072ebe30c4377.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0GDqocKCYfbJEi4HvG9M30i5CE=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.699086+00 2025-12-09 10:14:49.69909+00 5795 0003-116FWF#粉色 SPMX-20240815300939 \N \N \N 1 \N [{"file_id": "d0cd09e6-5221-47b4-a6b3-5f2fca592dd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3041c7ec34c34b0785ee4fab11280e3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3041c7ec34c34b0785ee4fab11280e3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3041c7ec34c34b0785ee4fab11280e3f.jpg", "file_size": 16657, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3041c7ec34c34b0785ee4fab11280e3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3041c7ec34c34b0785ee4fab11280e3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3041c7ec34c34b0785ee4fab11280e3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3041c7ec34c34b0785ee4fab11280e3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3041c7ec34c34b0785ee4fab11280e3f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfJpcJWjUH3oU_vNpaowiywaNik=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.700378+00 2025-12-09 10:14:49.700381+00 5796 LZ121FWF#5号色短袖 SPMX-20240815300941 \N \N \N 1 \N [{"file_id": "bcfc06c7-54c8-494d-9c2a-91b03ba70841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a572d0e49a34a88a27ad25bdaefe556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a572d0e49a34a88a27ad25bdaefe556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a572d0e49a34a88a27ad25bdaefe556.jpg", "file_size": 20947, "is_delete": false, "file_type": 1, "original_file_name": "LZ121FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a572d0e49a34a88a27ad25bdaefe556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a572d0e49a34a88a27ad25bdaefe556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a572d0e49a34a88a27ad25bdaefe556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a572d0e49a34a88a27ad25bdaefe556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a572d0e49a34a88a27ad25bdaefe556.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3jNu01hFdhpwsu6B_EcoBz03FA=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.701635+00 2025-12-09 10:14:49.70164+00 5797 C266#黑色白线条 SPMX-20240815300934 \N \N \N 1 \N [{"file_id": "548bc0af-0d6d-4c3b-a98d-084f98c3cdcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "634ae7301a3741cab290dd5069b444cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "634ae7301a3741cab290dd5069b444cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "634ae7301a3741cab290dd5069b444cb.jpg", "file_size": 23183, "is_delete": false, "file_type": 1, "original_file_name": "C266#黑色白线条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634ae7301a3741cab290dd5069b444cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634ae7301a3741cab290dd5069b444cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634ae7301a3741cab290dd5069b444cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/634ae7301a3741cab290dd5069b444cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/634ae7301a3741cab290dd5069b444cb.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5a9twMv4P2bEybnqn_hUVORiLrQ=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.702901+00 2025-12-09 10:14:49.702905+00 5798 80087#上身前幅土黄 SPMX-20240815300938 \N \N \N 1 \N [{"file_id": "da3922a3-0cb5-4be5-9067-55405e32a597", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1626b54cb1348a88f52018a7f2cec35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1626b54cb1348a88f52018a7f2cec35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1626b54cb1348a88f52018a7f2cec35.jpg", "file_size": 25736, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b54cb1348a88f52018a7f2cec35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b54cb1348a88f52018a7f2cec35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b54cb1348a88f52018a7f2cec35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1626b54cb1348a88f52018a7f2cec35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1626b54cb1348a88f52018a7f2cec35.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4Y2EyGj_g-aYchch4J5bZpqxHI=", "createTime": "2024-08-15 14:42:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.704136+00 2025-12-09 10:14:49.70414+00 5799 LHJ9272#20#枣红 SPMX-20240815300942 \N \N \N 1 \N [{"file_id": "92169527-bb2a-4d20-96a6-12061c09f756", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8e25f0060df4f489d3dc45a939c0653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8e25f0060df4f489d3dc45a939c0653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8e25f0060df4f489d3dc45a939c0653.jpg", "file_size": 12470, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8e25f0060df4f489d3dc45a939c0653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8e25f0060df4f489d3dc45a939c0653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8e25f0060df4f489d3dc45a939c0653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8e25f0060df4f489d3dc45a939c0653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8e25f0060df4f489d3dc45a939c0653.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWErD7NPSN1C9NFP-roYb2Xa9gI=", "createTime": "2024-08-15 14:42:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.705411+00 2025-12-09 10:14:49.705415+00 5800 0003-116FWF#紫色 SPMX-20240815300948 \N \N \N 1 \N [{"file_id": "36f0f339-47d8-4eda-8322-4831740235ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ddb86b0ab60471684bb460c087e0184.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ddb86b0ab60471684bb460c087e0184.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ddb86b0ab60471684bb460c087e0184.jpg", "file_size": 15021, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddb86b0ab60471684bb460c087e0184.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddb86b0ab60471684bb460c087e0184.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddb86b0ab60471684bb460c087e0184.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ddb86b0ab60471684bb460c087e0184.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ddb86b0ab60471684bb460c087e0184.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h846TOSw0tYrExypHQb-iee5_9g=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.706665+00 2025-12-09 10:14:49.706669+00 5801 LZ1220#童装T1号色 SPMX-20240815300950 \N \N \N 1 \N [{"file_id": "3407da33-5406-496f-adc3-f2f550795c2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c0172ae94b34f67896a4540922448e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c0172ae94b34f67896a4540922448e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c0172ae94b34f67896a4540922448e4.jpg", "file_size": 17474, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0172ae94b34f67896a4540922448e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0172ae94b34f67896a4540922448e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0172ae94b34f67896a4540922448e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c0172ae94b34f67896a4540922448e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c0172ae94b34f67896a4540922448e4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5HkTV41CRngNg06NCpjOgAN7hMw=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.707942+00 2025-12-09 10:14:49.707946+00 5802 80087#上身前幅大红 SPMX-20240815300947 \N \N \N 1 \N [{"file_id": "94f2fe34-6785-4fc2-90ab-fdb6cb441395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68b50db34bb449108bf0a6c9b5abb411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68b50db34bb449108bf0a6c9b5abb411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68b50db34bb449108bf0a6c9b5abb411.jpg", "file_size": 24744, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b50db34bb449108bf0a6c9b5abb411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b50db34bb449108bf0a6c9b5abb411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b50db34bb449108bf0a6c9b5abb411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68b50db34bb449108bf0a6c9b5abb411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68b50db34bb449108bf0a6c9b5abb411.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G35eyq09oQShJjwyQkaZqdLPKiE=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.709174+00 2025-12-09 10:14:49.709178+00 5803 HSH174FW#VS-D3 SPMX-20240815300954 \N \N \N 1 \N [{"file_id": "bacf3efe-c2b4-443e-a3b2-21bde11727f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d1773c15ddd43a0b6999d0d21870f16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d1773c15ddd43a0b6999d0d21870f16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d1773c15ddd43a0b6999d0d21870f16.jpg", "file_size": 6451, "is_delete": false, "file_type": 1, "original_file_name": "HSH174FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d1773c15ddd43a0b6999d0d21870f16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d1773c15ddd43a0b6999d0d21870f16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d1773c15ddd43a0b6999d0d21870f16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d1773c15ddd43a0b6999d0d21870f16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d1773c15ddd43a0b6999d0d21870f16.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iA1JcCSehMmGX9oKfGwvD0yL9tg=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.710429+00 2025-12-09 10:14:49.710433+00 5804 HSH173FW#VS-D3 SPMX-20240815300944 \N \N \N 1 \N [{"file_id": "19b618e9-2bc0-46b9-96c5-38dc2fa048a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f21cacbcd7664de199119124cf9c7d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f21cacbcd7664de199119124cf9c7d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f21cacbcd7664de199119124cf9c7d74.jpg", "file_size": 6218, "is_delete": false, "file_type": 1, "original_file_name": "HSH173FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21cacbcd7664de199119124cf9c7d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21cacbcd7664de199119124cf9c7d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21cacbcd7664de199119124cf9c7d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f21cacbcd7664de199119124cf9c7d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f21cacbcd7664de199119124cf9c7d74.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2zgWYFp6WLWT5x9SCrhQpScPJY=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.711685+00 2025-12-09 10:14:49.711689+00 5805 1055#童装蓝色 SPMX-20240815300949 \N \N \N 1 \N [{"file_id": "35c7a7cd-701c-42c6-aec3-e7ed990eada8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abf30dfeff46413c9284dcbf0da1b22e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abf30dfeff46413c9284dcbf0da1b22e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abf30dfeff46413c9284dcbf0da1b22e.jpg", "file_size": 11609, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf30dfeff46413c9284dcbf0da1b22e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf30dfeff46413c9284dcbf0da1b22e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf30dfeff46413c9284dcbf0da1b22e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abf30dfeff46413c9284dcbf0da1b22e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abf30dfeff46413c9284dcbf0da1b22e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4wGjXn4cllvb84Sx2aHHXrATa8=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.712966+00 2025-12-09 10:14:49.71297+00 5806 C269#221#绿 SPMX-20240815300955 \N \N \N 1 \N [{"file_id": "ea8ae465-31ee-43bd-9863-f0a0000733bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c55034e43a2843f9929deca2610c1683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c55034e43a2843f9929deca2610c1683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c55034e43a2843f9929deca2610c1683.jpg", "file_size": 10580, "is_delete": false, "file_type": 1, "original_file_name": "C269#221#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55034e43a2843f9929deca2610c1683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55034e43a2843f9929deca2610c1683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55034e43a2843f9929deca2610c1683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c55034e43a2843f9929deca2610c1683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c55034e43a2843f9929deca2610c1683.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7jfl5zMYUBg8yA-t2r0puwSp9I=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.714198+00 2025-12-09 10:14:49.714202+00 5807 C269#166#墨绿 SPMX-20240815300943 \N \N \N 1 \N [{"file_id": "868c93b0-2884-46cd-91a0-837173d1a24f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c281003d62e45958ac6732d989039d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c281003d62e45958ac6732d989039d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c281003d62e45958ac6732d989039d2.jpg", "file_size": 9606, "is_delete": false, "file_type": 1, "original_file_name": "C269#166#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c281003d62e45958ac6732d989039d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c281003d62e45958ac6732d989039d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c281003d62e45958ac6732d989039d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c281003d62e45958ac6732d989039d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c281003d62e45958ac6732d989039d2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MUgRlNAYeQnq4YPb-vClfwtRNrs=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.715453+00 2025-12-09 10:14:49.715457+00 5808 JSD0201#-橙色-XL码 SPMX-20240815300946 \N \N \N 1 \N [{"file_id": "8e76c8b6-54de-4ff4-b75a-ca49d1e28d4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1841c903d0694c3bbd92c89947307f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1841c903d0694c3bbd92c89947307f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1841c903d0694c3bbd92c89947307f74.jpg", "file_size": 91340, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-橙色-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1841c903d0694c3bbd92c89947307f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1841c903d0694c3bbd92c89947307f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1841c903d0694c3bbd92c89947307f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1841c903d0694c3bbd92c89947307f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1841c903d0694c3bbd92c89947307f74.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iVqbAySrzSPrdG400RsnsukL-Y=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.716728+00 2025-12-09 10:14:49.716732+00 5809 LHJ9272#25#土黄 SPMX-20240815300953 \N \N \N 1 \N [{"file_id": "f600afac-6f0f-4c85-8aec-78d85df77f6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2da8ca271f74d69aed69a0293325a73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2da8ca271f74d69aed69a0293325a73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2da8ca271f74d69aed69a0293325a73.jpg", "file_size": 9918, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2da8ca271f74d69aed69a0293325a73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2da8ca271f74d69aed69a0293325a73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2da8ca271f74d69aed69a0293325a73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2da8ca271f74d69aed69a0293325a73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2da8ca271f74d69aed69a0293325a73.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ML222jSQB04bnwUFG3sODPUJOY=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.717988+00 2025-12-09 10:14:49.717992+00 5810 23-2102#A1领子通用 SPMX-20240815300951 \N \N \N 1 \N [{"file_id": "f5aebe3f-130a-426c-9b75-6c382cf67f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2024b1c324984f74b3e654cad956763c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2024b1c324984f74b3e654cad956763c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2024b1c324984f74b3e654cad956763c.jpg", "file_size": 10290, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2024b1c324984f74b3e654cad956763c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2024b1c324984f74b3e654cad956763c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2024b1c324984f74b3e654cad956763c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2024b1c324984f74b3e654cad956763c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2024b1c324984f74b3e654cad956763c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6UdsmYg9tUJ1Wpn24oQCosbt_I=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.719231+00 2025-12-09 10:14:49.719235+00 5811 FHXGPK-023-3 SPMX-20240815300952 \N \N \N 1 \N [{"file_id": "b7e99bde-d470-4a1d-9a52-31a895d33edd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16cecddf5f8249849960c188f8a9bb18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16cecddf5f8249849960c188f8a9bb18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16cecddf5f8249849960c188f8a9bb18.jpg", "file_size": 34468, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cecddf5f8249849960c188f8a9bb18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cecddf5f8249849960c188f8a9bb18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cecddf5f8249849960c188f8a9bb18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16cecddf5f8249849960c188f8a9bb18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16cecddf5f8249849960c188f8a9bb18.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvLAOG08S2X9pPooRqCo2eUcnjg=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.720499+00 2025-12-09 10:14:49.720504+00 5812 DH20220993T#5-13女童YXS SPMX-20240815300945 \N \N \N 1 \N [{"file_id": "81a6e568-47ab-4164-b927-bf22b1178886", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ef2f85974de4c15a58cc3c2f296927f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ef2f85974de4c15a58cc3c2f296927f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ef2f85974de4c15a58cc3c2f296927f.jpg", "file_size": 5623, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-13女童YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef2f85974de4c15a58cc3c2f296927f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef2f85974de4c15a58cc3c2f296927f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef2f85974de4c15a58cc3c2f296927f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ef2f85974de4c15a58cc3c2f296927f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ef2f85974de4c15a58cc3c2f296927f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SM6JOoiaHbMl4gGeo217--qIjMI=", "createTime": "2024-08-15 14:42:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.721764+00 2025-12-09 10:14:49.721768+00 5813 0003-116FWF#蓝色 SPMX-20240815300962 \N \N \N 1 \N [{"file_id": "16ad4280-a4aa-44a5-a655-636ef8f6d0b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81624381abc84e289ca3655a3fe365ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81624381abc84e289ca3655a3fe365ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81624381abc84e289ca3655a3fe365ea.jpg", "file_size": 16667, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81624381abc84e289ca3655a3fe365ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81624381abc84e289ca3655a3fe365ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81624381abc84e289ca3655a3fe365ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81624381abc84e289ca3655a3fe365ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81624381abc84e289ca3655a3fe365ea.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6Iqp88svEfa3dsO-OAQ1atJkIs=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.723064+00 2025-12-09 10:14:49.723069+00 5814 1055#童装黑色 SPMX-20240815300956 \N \N \N 1 \N [{"file_id": "37de6b3c-7dcc-4a02-a61a-ea3708d2d89e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2523d1a05164387aba253f7e125330d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2523d1a05164387aba253f7e125330d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2523d1a05164387aba253f7e125330d.jpg", "file_size": 10456, "is_delete": false, "file_type": 1, "original_file_name": "1055#童装黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2523d1a05164387aba253f7e125330d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2523d1a05164387aba253f7e125330d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2523d1a05164387aba253f7e125330d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2523d1a05164387aba253f7e125330d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2523d1a05164387aba253f7e125330d.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_hXaJbHqjFqOzrVmPKcvKJcOfI=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.724343+00 2025-12-09 10:14:49.724347+00 5815 23-2102#A2前后片3XL SPMX-20240815300966 \N \N \N 1 \N [{"file_id": "43e48219-06e3-44d7-be41-ee705a8300fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "190472fda71548dfab21dbb55495bcfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "190472fda71548dfab21dbb55495bcfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "190472fda71548dfab21dbb55495bcfe.jpg", "file_size": 14017, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190472fda71548dfab21dbb55495bcfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190472fda71548dfab21dbb55495bcfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190472fda71548dfab21dbb55495bcfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/190472fda71548dfab21dbb55495bcfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/190472fda71548dfab21dbb55495bcfe.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uB6bP7sAwN3eyuoCpAgIlZsyIS8=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.725607+00 2025-12-09 10:14:49.725611+00 5816 80087#上身前幅枣红 SPMX-20240815300968 \N \N \N 1 \N [{"file_id": "4ec929df-7e92-41c5-9bff-1cd2c6c7b26a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15177bf52b240d78a5002aeed9c86c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15177bf52b240d78a5002aeed9c86c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15177bf52b240d78a5002aeed9c86c5.jpg", "file_size": 25089, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15177bf52b240d78a5002aeed9c86c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15177bf52b240d78a5002aeed9c86c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15177bf52b240d78a5002aeed9c86c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15177bf52b240d78a5002aeed9c86c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15177bf52b240d78a5002aeed9c86c5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WW-dsN13_e7_MIedfpa4c2lf-Jw=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.726877+00 2025-12-09 10:14:49.726881+00 5817 80087#上身前幅彩蓝 SPMX-20240815300957 \N \N \N 1 \N [{"file_id": "26445d5b-aab7-4af0-bb50-73292db5c438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38fe2db512de44d087b05d654e86c212.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38fe2db512de44d087b05d654e86c212.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38fe2db512de44d087b05d654e86c212.jpg", "file_size": 24887, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe2db512de44d087b05d654e86c212.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe2db512de44d087b05d654e86c212.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe2db512de44d087b05d654e86c212.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38fe2db512de44d087b05d654e86c212.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38fe2db512de44d087b05d654e86c212.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0D8Ai4tTHPqbE-frA6fQdCfNJ4=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.728142+00 2025-12-09 10:14:49.728146+00 5818 LZ1220#童装T2号色 SPMX-20240815300961 \N \N \N 1 \N [{"file_id": "0175adb8-aa88-46af-9c6a-9d728eab4698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2327746241fd46278033f8f9fc7fccf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2327746241fd46278033f8f9fc7fccf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2327746241fd46278033f8f9fc7fccf7.jpg", "file_size": 15903, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2327746241fd46278033f8f9fc7fccf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2327746241fd46278033f8f9fc7fccf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2327746241fd46278033f8f9fc7fccf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2327746241fd46278033f8f9fc7fccf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2327746241fd46278033f8f9fc7fccf7.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_jaS1khY-qYldq0bAF7Oe5EpdYc=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.729412+00 2025-12-09 10:14:49.729417+00 5819 JSD0201#-橙色-满幅乱花 SPMX-20240815300959 \N \N \N 1 \N [{"file_id": "d641f441-f73d-494d-b660-153767a7c611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2974bd47c7304a978a6c09516b2a14ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2974bd47c7304a978a6c09516b2a14ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2974bd47c7304a978a6c09516b2a14ff.jpg", "file_size": 57544, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-橙色-满幅乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2974bd47c7304a978a6c09516b2a14ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2974bd47c7304a978a6c09516b2a14ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2974bd47c7304a978a6c09516b2a14ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2974bd47c7304a978a6c09516b2a14ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2974bd47c7304a978a6c09516b2a14ff.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_Q2tfv3kg1dPO-zgjbhtSeu5Vs=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.73066+00 2025-12-09 10:14:49.730664+00 5820 FHXGPK-023-4 SPMX-20240815300963 \N \N \N 1 \N [{"file_id": "262c8c0d-93b9-4ff9-833c-5aac948721b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41ce5ca88fe643d9bef0db6b7460fa1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41ce5ca88fe643d9bef0db6b7460fa1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41ce5ca88fe643d9bef0db6b7460fa1f.jpg", "file_size": 28349, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ce5ca88fe643d9bef0db6b7460fa1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ce5ca88fe643d9bef0db6b7460fa1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ce5ca88fe643d9bef0db6b7460fa1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41ce5ca88fe643d9bef0db6b7460fa1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41ce5ca88fe643d9bef0db6b7460fa1f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrkVQneQnr02Xot7SQpOIeSHqjw=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.731953+00 2025-12-09 10:14:49.731958+00 5821 C269#223#玫红 SPMX-20240815300965 \N \N \N 1 \N [{"file_id": "89c65e2c-8b42-43c2-a7b8-24fd45039ca5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd86d013d318411082cc093920eec542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd86d013d318411082cc093920eec542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd86d013d318411082cc093920eec542.jpg", "file_size": 10205, "is_delete": false, "file_type": 1, "original_file_name": "C269#223#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd86d013d318411082cc093920eec542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd86d013d318411082cc093920eec542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd86d013d318411082cc093920eec542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd86d013d318411082cc093920eec542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd86d013d318411082cc093920eec542.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LE3pogiD9BFN78d09n0bvT-OBIQ=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.73321+00 2025-12-09 10:14:49.733214+00 5822 DH20220993T#5-9女童YL SPMX-20240815300958 \N \N \N 1 \N [{"file_id": "88dad156-1e49-48df-9447-de0efe92cc02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "968318a48b4844959753f4e5f4ef3fde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "968318a48b4844959753f4e5f4ef3fde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "968318a48b4844959753f4e5f4ef3fde.jpg", "file_size": 49433, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-9女童YL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968318a48b4844959753f4e5f4ef3fde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968318a48b4844959753f4e5f4ef3fde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968318a48b4844959753f4e5f4ef3fde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/968318a48b4844959753f4e5f4ef3fde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/968318a48b4844959753f4e5f4ef3fde.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsnxuqAEyU8QGkCF2sJBLZUuiNo=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.734479+00 2025-12-09 10:14:49.734483+00 5823 LHJ9272#37#梅红 SPMX-20240815300960 \N \N \N 1 \N [{"file_id": "eab2c07c-5dff-4487-87e5-1f6298b31f68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b93d99106004b2190495f060a5ad584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b93d99106004b2190495f060a5ad584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b93d99106004b2190495f060a5ad584.jpg", "file_size": 10043, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b93d99106004b2190495f060a5ad584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b93d99106004b2190495f060a5ad584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b93d99106004b2190495f060a5ad584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b93d99106004b2190495f060a5ad584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b93d99106004b2190495f060a5ad584.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKwYVveqXaCj4qifEOHhQPQ3duw=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.735732+00 2025-12-09 10:14:49.735736+00 5824 HSH175FW#VS-D3 SPMX-20240815300964 \N \N \N 1 \N [{"file_id": "4d1d031d-4e09-4390-ad4f-f78eb53c300e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947135879a954531995ca738ccafb1d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947135879a954531995ca738ccafb1d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947135879a954531995ca738ccafb1d2.jpg", "file_size": 24023, "is_delete": false, "file_type": 1, "original_file_name": "HSH175FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947135879a954531995ca738ccafb1d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947135879a954531995ca738ccafb1d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947135879a954531995ca738ccafb1d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947135879a954531995ca738ccafb1d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947135879a954531995ca738ccafb1d2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqHAE_DUFJshf1xXAARLNSk3sP4=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.737026+00 2025-12-09 10:14:49.73703+00 5825 1055#粉底宝蓝 SPMX-20240815300967 \N \N \N 1 \N [{"file_id": "10456ec9-ee44-4a5a-babe-d6641cd9c6a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "851b4e9c2a5547c68cc7fd97c450b222.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "851b4e9c2a5547c68cc7fd97c450b222.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "851b4e9c2a5547c68cc7fd97c450b222.jpg", "file_size": 19686, "is_delete": false, "file_type": 1, "original_file_name": "1055#粉底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851b4e9c2a5547c68cc7fd97c450b222.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851b4e9c2a5547c68cc7fd97c450b222.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851b4e9c2a5547c68cc7fd97c450b222.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/851b4e9c2a5547c68cc7fd97c450b222.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/851b4e9c2a5547c68cc7fd97c450b222.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qh2cbsoHX1iyeG4O0BAduSqkJFE=", "createTime": "2024-08-15 14:42:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.738275+00 2025-12-09 10:14:49.738279+00 5826 FHXGPK-023-5 SPMX-20240815300976 \N \N \N 1 \N [{"file_id": "2c98240b-df75-4b93-ac7d-73abf0a9b173", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43538f9e2ac745e4be629db99803953e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43538f9e2ac745e4be629db99803953e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43538f9e2ac745e4be629db99803953e.jpg", "file_size": 33626, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-023-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43538f9e2ac745e4be629db99803953e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43538f9e2ac745e4be629db99803953e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43538f9e2ac745e4be629db99803953e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43538f9e2ac745e4be629db99803953e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43538f9e2ac745e4be629db99803953e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcrDL5oyr8cs5qDeDD2Les0XWBE=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.739543+00 2025-12-09 10:14:49.739548+00 5827 C269#57#橙红 SPMX-20240815300974 \N \N \N 1 \N [{"file_id": "955d7483-cd58-41e7-bb1f-675b46517ca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg", "file_size": 10068, "is_delete": false, "file_type": 1, "original_file_name": "C269#57#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eaa77f74d994a9c8b0d5e78ebf5fe6c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOc74QBxnU_nny1M8c9Hhg3tWAo=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.740823+00 2025-12-09 10:14:49.740827+00 5828 JSD0201#-黑色-L码 SPMX-20240815300972 \N \N \N 1 \N [{"file_id": "8b95713b-c663-481c-b3dc-cf5c3aff8f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "560e22b7ad8d43d18b3fe794be1fed23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "560e22b7ad8d43d18b3fe794be1fed23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "560e22b7ad8d43d18b3fe794be1fed23.jpg", "file_size": 90594, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-黑色-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e22b7ad8d43d18b3fe794be1fed23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e22b7ad8d43d18b3fe794be1fed23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e22b7ad8d43d18b3fe794be1fed23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/560e22b7ad8d43d18b3fe794be1fed23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/560e22b7ad8d43d18b3fe794be1fed23.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OamFfBsZ-XOIBiURU5oP7J9WlwQ=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.742091+00 2025-12-09 10:14:49.742096+00 5829 LHJ9272#64#粉色 SPMX-20240815300981 \N \N \N 1 \N [{"file_id": "6fd0ccfe-e962-45a6-9b25-6fd6788d066c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d402d22a4df422fbebb8d970e9fab2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d402d22a4df422fbebb8d970e9fab2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d402d22a4df422fbebb8d970e9fab2f.jpg", "file_size": 10028, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#64#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d402d22a4df422fbebb8d970e9fab2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d402d22a4df422fbebb8d970e9fab2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d402d22a4df422fbebb8d970e9fab2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d402d22a4df422fbebb8d970e9fab2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d402d22a4df422fbebb8d970e9fab2f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EfcP-fsqM0AN6-0im1rUfi0m3Q=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.743363+00 2025-12-09 10:14:49.743367+00 5830 0003-116FWF#黄色 SPMX-20240815300971 \N \N \N 1 \N [{"file_id": "4f9a27f0-8551-4071-b20a-9d0a50c459a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "176cb548d2a547f9a36e5fd34b27951c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "176cb548d2a547f9a36e5fd34b27951c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "176cb548d2a547f9a36e5fd34b27951c.jpg", "file_size": 18377, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176cb548d2a547f9a36e5fd34b27951c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176cb548d2a547f9a36e5fd34b27951c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176cb548d2a547f9a36e5fd34b27951c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/176cb548d2a547f9a36e5fd34b27951c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/176cb548d2a547f9a36e5fd34b27951c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOOiFyCIvROYJfgarNjX5smpa4I=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.744637+00 2025-12-09 10:14:49.744641+00 5831 DH20220993T#5-9女童YM SPMX-20240815300969 \N \N \N 1 \N [{"file_id": "e6ed603e-8046-4ac7-babb-5253e99fc5a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae333ce852c34277840c343180a887de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae333ce852c34277840c343180a887de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae333ce852c34277840c343180a887de.jpg", "file_size": 67783, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-9女童YM.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae333ce852c34277840c343180a887de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae333ce852c34277840c343180a887de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae333ce852c34277840c343180a887de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae333ce852c34277840c343180a887de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae333ce852c34277840c343180a887de.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpOBsHOA5WC1yjViTfmWCscifLo=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.745903+00 2025-12-09 10:14:49.745907+00 5832 LHJ9272#5#彩兰 SPMX-20240815300970 \N \N \N 1 \N [{"file_id": "1b287132-4b11-4e31-96c0-efdea6ff8f38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32a146625de348d89aee1b6f22d7a791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32a146625de348d89aee1b6f22d7a791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32a146625de348d89aee1b6f22d7a791.jpg", "file_size": 12833, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9272#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a146625de348d89aee1b6f22d7a791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a146625de348d89aee1b6f22d7a791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a146625de348d89aee1b6f22d7a791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32a146625de348d89aee1b6f22d7a791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32a146625de348d89aee1b6f22d7a791.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrlaUs98PK3802JX7LP37jD5sxY=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.747168+00 2025-12-09 10:14:49.747172+00 5833 LZ1220#童装T3号色 SPMX-20240815300973 \N \N \N 1 \N [{"file_id": "87ad3881-096f-4c1d-8038-98deca3a5829", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11b1079455f4a32bb50b7e8a9d0ae66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11b1079455f4a32bb50b7e8a9d0ae66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11b1079455f4a32bb50b7e8a9d0ae66.jpg", "file_size": 15799, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11b1079455f4a32bb50b7e8a9d0ae66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11b1079455f4a32bb50b7e8a9d0ae66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11b1079455f4a32bb50b7e8a9d0ae66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11b1079455f4a32bb50b7e8a9d0ae66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11b1079455f4a32bb50b7e8a9d0ae66.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTKxx-NCFQDNyLN9c4AtsqD_gr0=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.748426+00 2025-12-09 10:14:49.74843+00 5834 23-2102#A2前后片4XL SPMX-20240815300977 \N \N \N 1 \N [{"file_id": "2a6b588c-7e32-40c3-a358-a8504fcecde3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "492cc0eec4724622aa3650ccaab599f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "492cc0eec4724622aa3650ccaab599f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "492cc0eec4724622aa3650ccaab599f1.jpg", "file_size": 13677, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492cc0eec4724622aa3650ccaab599f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492cc0eec4724622aa3650ccaab599f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492cc0eec4724622aa3650ccaab599f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/492cc0eec4724622aa3650ccaab599f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/492cc0eec4724622aa3650ccaab599f1.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIwbVCkf39PJzQsXCZjfPdPJhhU=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.749708+00 2025-12-09 10:14:49.749712+00 5835 1055#粉底宝蓝匹布 SPMX-20240815300978 \N \N \N 1 \N [{"file_id": "ade5c976-bedc-4b84-9c82-30aba64a11e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a12d103061b4fdfa75331bbd2bbcaad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a12d103061b4fdfa75331bbd2bbcaad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a12d103061b4fdfa75331bbd2bbcaad.jpg", "file_size": 8599, "is_delete": false, "file_type": 1, "original_file_name": "1055#粉底宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a12d103061b4fdfa75331bbd2bbcaad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a12d103061b4fdfa75331bbd2bbcaad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a12d103061b4fdfa75331bbd2bbcaad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a12d103061b4fdfa75331bbd2bbcaad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a12d103061b4fdfa75331bbd2bbcaad.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nlXwV4PrKa3g8j9_h1nubCGRnak=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.750962+00 2025-12-09 10:14:49.750965+00 5836 80087#上身前幅湖绿 SPMX-20240815300979 \N \N \N 1 \N [{"file_id": "1b35a9d4-0953-4bef-8e21-d35f8e4fd99d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0ddf142b5644978842d2f54f3dbd3e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0ddf142b5644978842d2f54f3dbd3e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0ddf142b5644978842d2f54f3dbd3e5.jpg", "file_size": 25213, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ddf142b5644978842d2f54f3dbd3e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ddf142b5644978842d2f54f3dbd3e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ddf142b5644978842d2f54f3dbd3e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0ddf142b5644978842d2f54f3dbd3e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0ddf142b5644978842d2f54f3dbd3e5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FsgO5IO_QOoKGncMBpJlSWb-1aw=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.752225+00 2025-12-09 10:14:49.752229+00 5837 0003-116FWF#黑色 SPMX-20240815300982 \N \N \N 1 \N [{"file_id": "612169a4-6b79-4cf0-9d87-ea0a481d2f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e5807f3a9a489a96d5a1b309f4367f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e5807f3a9a489a96d5a1b309f4367f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e5807f3a9a489a96d5a1b309f4367f.jpg", "file_size": 16139, "is_delete": false, "file_type": 1, "original_file_name": "0003-116FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e5807f3a9a489a96d5a1b309f4367f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e5807f3a9a489a96d5a1b309f4367f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e5807f3a9a489a96d5a1b309f4367f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e5807f3a9a489a96d5a1b309f4367f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e5807f3a9a489a96d5a1b309f4367f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJ-8XOYXjk92iDwT7d-DoLidhN8=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.753488+00 2025-12-09 10:14:49.753492+00 5838 DH20220993T#5-9女童YS SPMX-20240815300980 \N \N \N 1 \N [{"file_id": "ab8b4108-9628-41ea-9297-ab97df477cbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae66f325e7dc44d3b2f0350c5a15d88a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae66f325e7dc44d3b2f0350c5a15d88a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae66f325e7dc44d3b2f0350c5a15d88a.jpg", "file_size": 5297, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-9女童YS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66f325e7dc44d3b2f0350c5a15d88a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66f325e7dc44d3b2f0350c5a15d88a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66f325e7dc44d3b2f0350c5a15d88a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae66f325e7dc44d3b2f0350c5a15d88a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae66f325e7dc44d3b2f0350c5a15d88a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOsplW8yLwiBTT6rwUyRXoeGhGs=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.754769+00 2025-12-09 10:14:49.754773+00 5839 LZ1220#童装T4号色 SPMX-20240815300983 \N \N \N 1 \N [{"file_id": "9c499417-c257-4f1a-8b17-f6bc404decc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f5dcceb083a4a37b1a288292993b7b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f5dcceb083a4a37b1a288292993b7b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f5dcceb083a4a37b1a288292993b7b3.jpg", "file_size": 16103, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5dcceb083a4a37b1a288292993b7b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5dcceb083a4a37b1a288292993b7b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f5dcceb083a4a37b1a288292993b7b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f5dcceb083a4a37b1a288292993b7b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f5dcceb083a4a37b1a288292993b7b3.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_627t7KULWJO-YmSO_6NZd3xsYQ=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.756006+00 2025-12-09 10:14:49.756011+00 5840 HSH176FW#VS-D3 SPMX-20240815300975 \N \N \N 1 \N [{"file_id": "74badbe3-875e-4fdd-8f28-336e1aa60dd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57fb1266e5a2450981e343728c585793.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57fb1266e5a2450981e343728c585793.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57fb1266e5a2450981e343728c585793.jpg", "file_size": 24203, "is_delete": false, "file_type": 1, "original_file_name": "HSH176FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fb1266e5a2450981e343728c585793.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fb1266e5a2450981e343728c585793.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fb1266e5a2450981e343728c585793.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57fb1266e5a2450981e343728c585793.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57fb1266e5a2450981e343728c585793.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QkDuX6nTUzrW-ZEeFt7K5-_Ug0=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.757269+00 2025-12-09 10:14:49.757273+00 5841 23-2102#A2短袖子3XL SPMX-20240815300986 \N \N \N 1 \N [{"file_id": "05cb8c01-5efe-42c5-b8d6-4234ca50dd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765fb17c4a84464899a4989871ad52d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765fb17c4a84464899a4989871ad52d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765fb17c4a84464899a4989871ad52d3.jpg", "file_size": 15216, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2短袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765fb17c4a84464899a4989871ad52d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765fb17c4a84464899a4989871ad52d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765fb17c4a84464899a4989871ad52d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765fb17c4a84464899a4989871ad52d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765fb17c4a84464899a4989871ad52d3.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OagQKgj0KSHq-50aKeaNBNbgsO8=", "createTime": "2024-08-15 14:42:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.758544+00 2025-12-09 10:14:49.758548+00 5842 HSH177FW#VS-D3 SPMX-20240815300985 \N \N \N 1 \N [{"file_id": "50134905-d940-4e86-8160-1887cd0470a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a62e4be8a07483881a4eea64b384683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a62e4be8a07483881a4eea64b384683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a62e4be8a07483881a4eea64b384683.jpg", "file_size": 26004, "is_delete": false, "file_type": 1, "original_file_name": "HSH177FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a62e4be8a07483881a4eea64b384683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a62e4be8a07483881a4eea64b384683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a62e4be8a07483881a4eea64b384683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a62e4be8a07483881a4eea64b384683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a62e4be8a07483881a4eea64b384683.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JN_cncTaDcTHXbldxFFt4nglxKw=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.759823+00 2025-12-09 10:14:49.759827+00 5843 C269#大白色 SPMX-20240815300984 \N \N \N 1 \N [{"file_id": "b89db2e0-f18a-431f-985d-21326ae4e666", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8ba7aecdd1e45529f0664c166fca332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8ba7aecdd1e45529f0664c166fca332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8ba7aecdd1e45529f0664c166fca332.jpg", "file_size": 8607, "is_delete": false, "file_type": 1, "original_file_name": "C269#大白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba7aecdd1e45529f0664c166fca332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba7aecdd1e45529f0664c166fca332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba7aecdd1e45529f0664c166fca332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8ba7aecdd1e45529f0664c166fca332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8ba7aecdd1e45529f0664c166fca332.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3VFlPQNb47J6SK0jh-KhKzVUw8=", "createTime": "2024-08-15 14:42:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.761093+00 2025-12-09 10:14:49.761097+00 5844 1056#宝蓝色 SPMX-20240815300987 \N \N \N 1 \N [{"file_id": "de77f433-4458-48ef-9906-6dd6021aa9cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44b60c4d59154700915e2f7aaea8f3b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44b60c4d59154700915e2f7aaea8f3b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44b60c4d59154700915e2f7aaea8f3b5.jpg", "file_size": 24473, "is_delete": false, "file_type": 1, "original_file_name": "1056#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b60c4d59154700915e2f7aaea8f3b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b60c4d59154700915e2f7aaea8f3b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b60c4d59154700915e2f7aaea8f3b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44b60c4d59154700915e2f7aaea8f3b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44b60c4d59154700915e2f7aaea8f3b5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJyPInkuU90Lg41FnNmw_fDCRoY=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.767431+00 2025-12-09 10:14:49.767436+00 5849 FHXGPK-024-1 SPMX-20240815300990 \N \N \N 1 \N [{"file_id": "12922a7e-1866-4fe8-a8a4-a69614358a72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bfb8589d42640a9a2a7895262bb7b9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bfb8589d42640a9a2a7895262bb7b9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bfb8589d42640a9a2a7895262bb7b9b.jpg", "file_size": 36839, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-024-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb8589d42640a9a2a7895262bb7b9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb8589d42640a9a2a7895262bb7b9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb8589d42640a9a2a7895262bb7b9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bfb8589d42640a9a2a7895262bb7b9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bfb8589d42640a9a2a7895262bb7b9b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iTAuUqZDcVY6y36PjveZMk6voDw=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.762358+00 2025-12-09 10:14:49.762362+00 5845 JSD0201#-黑色-M码 SPMX-20240815300989 \N \N \N 1 \N [{"file_id": "36794f60-808d-4dc8-bad1-3a939a1e57a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c26e56b1158647d9b62bcf61ff5b6438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c26e56b1158647d9b62bcf61ff5b6438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c26e56b1158647d9b62bcf61ff5b6438.jpg", "file_size": 90111, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-黑色-M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26e56b1158647d9b62bcf61ff5b6438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26e56b1158647d9b62bcf61ff5b6438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26e56b1158647d9b62bcf61ff5b6438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c26e56b1158647d9b62bcf61ff5b6438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c26e56b1158647d9b62bcf61ff5b6438.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s0YLlD-TLcHkWd8oAwDW-slVKu4=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.763647+00 2025-12-09 10:14:49.763651+00 5846 C269#白色 SPMX-20240815300993 \N \N \N 1 \N [{"file_id": "327b75b6-caa2-4dc9-9df6-abad941f2e8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db36e35aaccd4ff988b6b597945c8a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db36e35aaccd4ff988b6b597945c8a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db36e35aaccd4ff988b6b597945c8a43.jpg", "file_size": 8955, "is_delete": false, "file_type": 1, "original_file_name": "C269#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db36e35aaccd4ff988b6b597945c8a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db36e35aaccd4ff988b6b597945c8a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db36e35aaccd4ff988b6b597945c8a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db36e35aaccd4ff988b6b597945c8a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db36e35aaccd4ff988b6b597945c8a43.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9aIgdP4DLbrdltzzpTMGNgrh_XU=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.764919+00 2025-12-09 10:14:49.764923+00 5847 0003-117FWF#V5曲线 SPMX-20240815300996 \N \N \N 1 \N [{"file_id": "e05abfd6-0674-4af5-8aa0-974e203d71e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f9e5aa33b484917b5d6a41c5b2b3533.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f9e5aa33b484917b5d6a41c5b2b3533.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f9e5aa33b484917b5d6a41c5b2b3533.jpg", "file_size": 17267, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e5aa33b484917b5d6a41c5b2b3533.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e5aa33b484917b5d6a41c5b2b3533.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9e5aa33b484917b5d6a41c5b2b3533.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f9e5aa33b484917b5d6a41c5b2b3533.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f9e5aa33b484917b5d6a41c5b2b3533.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4HE9DW_Cidta8YeRDa0aMnRrVk=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.766173+00 2025-12-09 10:14:49.766177+00 5848 1056#宝蓝色匹布 SPMX-20240815300999 \N \N \N 1 \N [{"file_id": "420e7cec-8ce6-4a23-b558-2c75194426f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d06516546b69498788a8c8b5cd4070a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d06516546b69498788a8c8b5cd4070a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d06516546b69498788a8c8b5cd4070a3.jpg", "file_size": 22249, "is_delete": false, "file_type": 1, "original_file_name": "1056#宝蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d06516546b69498788a8c8b5cd4070a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d06516546b69498788a8c8b5cd4070a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d06516546b69498788a8c8b5cd4070a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d06516546b69498788a8c8b5cd4070a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d06516546b69498788a8c8b5cd4070a3.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nJ_C0iiVN9bmOQ2TT5Gg0a0HPk=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.768686+00 2025-12-09 10:14:49.76869+00 5850 HSH178FW#VS-D3 SPMX-20240815300994 \N \N \N 1 \N [{"file_id": "8ecaffb1-940e-4024-a3c0-3db16ec39997", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7665232463164f95a638ffd7396a993e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7665232463164f95a638ffd7396a993e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7665232463164f95a638ffd7396a993e.jpg", "file_size": 24244, "is_delete": false, "file_type": 1, "original_file_name": "HSH178FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7665232463164f95a638ffd7396a993e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7665232463164f95a638ffd7396a993e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7665232463164f95a638ffd7396a993e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7665232463164f95a638ffd7396a993e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7665232463164f95a638ffd7396a993e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgvRciZfRJOr6ilFmvL8LG5MZVk=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.770002+00 2025-12-09 10:14:49.770007+00 5851 80087#上身前幅玫红 SPMX-20240815300992 \N \N \N 1 \N [{"file_id": "6568b688-ee8a-4c44-bdff-35d3e043ae63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2bf9ff7510740b5894d99aaf7d51585.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2bf9ff7510740b5894d99aaf7d51585.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2bf9ff7510740b5894d99aaf7d51585.jpg", "file_size": 24664, "is_delete": false, "file_type": 1, "original_file_name": "80087#上身前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bf9ff7510740b5894d99aaf7d51585.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bf9ff7510740b5894d99aaf7d51585.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bf9ff7510740b5894d99aaf7d51585.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2bf9ff7510740b5894d99aaf7d51585.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2bf9ff7510740b5894d99aaf7d51585.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzZSFLrcj1EpD2HwBtNENpc6yLY=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.771287+00 2025-12-09 10:14:49.771291+00 5852 LHJ9273#118#蓝色 SPMX-20240815300998 \N \N \N 1 \N [{"file_id": "2c11bed3-0ad6-4198-826e-f96b62dcb4b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d684c3b795f4fac8e5669de28eb3531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d684c3b795f4fac8e5669de28eb3531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d684c3b795f4fac8e5669de28eb3531.jpg", "file_size": 14838, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#118#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d684c3b795f4fac8e5669de28eb3531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d684c3b795f4fac8e5669de28eb3531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d684c3b795f4fac8e5669de28eb3531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d684c3b795f4fac8e5669de28eb3531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d684c3b795f4fac8e5669de28eb3531.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7JMi6RdZvi7uxNENm-Zqfezo68=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.772528+00 2025-12-09 10:14:49.772533+00 5853 DH20220993T#5-9女童YXL SPMX-20240815300991 \N \N \N 1 \N [{"file_id": "3bfd6b94-60ee-47a8-b423-8918dddbc66e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg", "file_size": 10818, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-9女童YXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1fffd17fdd24d6b81c0f2f41bbb3c75.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y0CZgIxqnbymzyVzS_NLZjVkfIw=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.773786+00 2025-12-09 10:14:49.77379+00 5854 LHJ9273# SPMX-20240815300988 \N \N \N 1 \N [{"file_id": "dac5424b-e053-4f67-a987-fd04bc5f4785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5877c80f2f447438146ec1438634d59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5877c80f2f447438146ec1438634d59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5877c80f2f447438146ec1438634d59.jpg", "file_size": 14524, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5877c80f2f447438146ec1438634d59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5877c80f2f447438146ec1438634d59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5877c80f2f447438146ec1438634d59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5877c80f2f447438146ec1438634d59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5877c80f2f447438146ec1438634d59.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9JebUWiI2p6StJt557JMwIq9sA=", "createTime": "2024-08-15 14:42:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.775062+00 2025-12-09 10:14:49.775066+00 5855 LZ1220#童装T5号色 SPMX-20240815300995 \N \N \N 1 \N [{"file_id": "cd834e3d-c121-4033-9160-86fb4e0f5726", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a3b0ca58f584031859b66a912d1e6ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a3b0ca58f584031859b66a912d1e6ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a3b0ca58f584031859b66a912d1e6ce.jpg", "file_size": 17245, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3b0ca58f584031859b66a912d1e6ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3b0ca58f584031859b66a912d1e6ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3b0ca58f584031859b66a912d1e6ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a3b0ca58f584031859b66a912d1e6ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a3b0ca58f584031859b66a912d1e6ce.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xPAkhSnHVmrmsnKceb_iHoEvuE=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.776325+00 2025-12-09 10:14:49.776329+00 5856 23-2102#A2短袖子4XL SPMX-20240815300997 \N \N \N 1 \N [{"file_id": "f570341d-e814-4fe4-a536-15d9ee5b383c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a29143ed44b4c718b73a7ea808c2302.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a29143ed44b4c718b73a7ea808c2302.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a29143ed44b4c718b73a7ea808c2302.jpg", "file_size": 14433, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2短袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a29143ed44b4c718b73a7ea808c2302.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a29143ed44b4c718b73a7ea808c2302.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a29143ed44b4c718b73a7ea808c2302.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a29143ed44b4c718b73a7ea808c2302.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a29143ed44b4c718b73a7ea808c2302.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTVyaaTZ4sBShS3gn1Ii1aS2iHI=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.777567+00 2025-12-09 10:14:49.777571+00 5857 LHJ9273#20#枣红 SPMX-20240815301009 \N \N \N 1 \N [{"file_id": "e199f5a5-2199-468a-8c5c-b0b30cf3b5b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463461ce59604427bfd159403c7653d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463461ce59604427bfd159403c7653d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463461ce59604427bfd159403c7653d8.jpg", "file_size": 15185, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463461ce59604427bfd159403c7653d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463461ce59604427bfd159403c7653d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463461ce59604427bfd159403c7653d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463461ce59604427bfd159403c7653d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463461ce59604427bfd159403c7653d8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zn5QO2m_qymlM0taA19IOgglZcM=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.778849+00 2025-12-09 10:14:49.778853+00 5858 LZ1220#童装T6号色 SPMX-20240815301003 \N \N \N 1 \N [{"file_id": "55f657c5-4839-4269-be61-759981811c49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f9f2c56a1e9498e88146b0dff2dd497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f9f2c56a1e9498e88146b0dff2dd497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f9f2c56a1e9498e88146b0dff2dd497.jpg", "file_size": 16504, "is_delete": false, "file_type": 1, "original_file_name": "LZ1220#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f2c56a1e9498e88146b0dff2dd497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f2c56a1e9498e88146b0dff2dd497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f2c56a1e9498e88146b0dff2dd497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f9f2c56a1e9498e88146b0dff2dd497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f9f2c56a1e9498e88146b0dff2dd497.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWLFnFcAdzuYzdQxtIsscMAbX0k=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.78014+00 2025-12-09 10:14:49.780144+00 5859 0003-117FWF#玫红 SPMX-20240815301006 \N \N \N 1 \N [{"file_id": "b37c5d8f-1d83-46f6-bec3-7f0e8413170c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ccd3fadfa844908919f2d308c45e8d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ccd3fadfa844908919f2d308c45e8d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ccd3fadfa844908919f2d308c45e8d2.jpg", "file_size": 13014, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ccd3fadfa844908919f2d308c45e8d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ccd3fadfa844908919f2d308c45e8d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ccd3fadfa844908919f2d308c45e8d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ccd3fadfa844908919f2d308c45e8d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ccd3fadfa844908919f2d308c45e8d2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-e6WbYY3gvRrUKunW_hRr_71V5o=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.781412+00 2025-12-09 10:14:49.781417+00 5860 80087#前后幅 SPMX-20240815301002 \N \N \N 1 \N [{"file_id": "fb200fb2-25a5-412e-8494-417dacab1ce9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5241b50e120541538c04105e24629c1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5241b50e120541538c04105e24629c1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5241b50e120541538c04105e24629c1c.jpg", "file_size": 17512, "is_delete": false, "file_type": 1, "original_file_name": "80087#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5241b50e120541538c04105e24629c1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5241b50e120541538c04105e24629c1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5241b50e120541538c04105e24629c1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5241b50e120541538c04105e24629c1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5241b50e120541538c04105e24629c1c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAStEaYKrJaeuksDVei7YWZgixk=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.782677+00 2025-12-09 10:14:49.782681+00 5861 1056#杏色 SPMX-20240815301008 \N \N \N 1 \N [{"file_id": "8aa8e3a3-8a5a-4f43-b499-5abf9934cf02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee05184df6e948658896946fc3dea9cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee05184df6e948658896946fc3dea9cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee05184df6e948658896946fc3dea9cc.jpg", "file_size": 21227, "is_delete": false, "file_type": 1, "original_file_name": "1056#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee05184df6e948658896946fc3dea9cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee05184df6e948658896946fc3dea9cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee05184df6e948658896946fc3dea9cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee05184df6e948658896946fc3dea9cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee05184df6e948658896946fc3dea9cc.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbaEEfAKk8R7L__24vNY4b5lFk0=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.784123+00 2025-12-09 10:14:49.784128+00 5862 HSH179FW# SPMX-20240815301007 \N \N \N 1 \N [{"file_id": "460f5db2-c9bd-43e2-9e09-e3c0dae9332c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1350cf0b88064f08aa6e350962465d11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1350cf0b88064f08aa6e350962465d11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1350cf0b88064f08aa6e350962465d11.jpg", "file_size": 18891, "is_delete": false, "file_type": 1, "original_file_name": "HSH179FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1350cf0b88064f08aa6e350962465d11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1350cf0b88064f08aa6e350962465d11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1350cf0b88064f08aa6e350962465d11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1350cf0b88064f08aa6e350962465d11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1350cf0b88064f08aa6e350962465d11.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PIWG3o5TS9qD0PkiLc-jjEX8Gqg=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.78547+00 2025-12-09 10:14:49.785474+00 5863 JSD0201#-黑色-S码 SPMX-20240815301005 \N \N \N 1 \N [{"file_id": "495bcc33-2848-44f4-baaf-dbd6e4960a8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "898ba0e8857d4a0ab884dc20b48f77e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "898ba0e8857d4a0ab884dc20b48f77e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "898ba0e8857d4a0ab884dc20b48f77e3.jpg", "file_size": 88446, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-黑色-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ba0e8857d4a0ab884dc20b48f77e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ba0e8857d4a0ab884dc20b48f77e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ba0e8857d4a0ab884dc20b48f77e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/898ba0e8857d4a0ab884dc20b48f77e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/898ba0e8857d4a0ab884dc20b48f77e3.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9artnFktKRXkHpI5veDNiE5majc=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.786772+00 2025-12-09 10:14:49.786776+00 5864 FHXGPK-024-2 SPMX-20240815301001 \N \N \N 1 \N [{"file_id": "08561cf4-df3c-44e2-908f-9d9b18e99559", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "813ba3e352f04d5eb7e4e27637c35a91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "813ba3e352f04d5eb7e4e27637c35a91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "813ba3e352f04d5eb7e4e27637c35a91.jpg", "file_size": 38848, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-024-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813ba3e352f04d5eb7e4e27637c35a91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813ba3e352f04d5eb7e4e27637c35a91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813ba3e352f04d5eb7e4e27637c35a91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/813ba3e352f04d5eb7e4e27637c35a91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/813ba3e352f04d5eb7e4e27637c35a91.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXW2FvBBKHx-wNX_X9AWP39I42w=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.788059+00 2025-12-09 10:14:49.788063+00 5865 DH20220993T#5-9女童YXS SPMX-20240815301000 \N \N \N 1 \N [{"file_id": "fd747732-5553-447e-ac3c-7e18f053a1e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "052ac2afbf394d68af3f110ee207ca64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "052ac2afbf394d68af3f110ee207ca64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "052ac2afbf394d68af3f110ee207ca64.jpg", "file_size": 5566, "is_delete": false, "file_type": 1, "original_file_name": "DH20220993T#5-9女童YXS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052ac2afbf394d68af3f110ee207ca64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052ac2afbf394d68af3f110ee207ca64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052ac2afbf394d68af3f110ee207ca64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/052ac2afbf394d68af3f110ee207ca64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/052ac2afbf394d68af3f110ee207ca64.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJ5rWgICJmUe4iF-BuoGFmp008o=", "createTime": "2024-08-15 14:42:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.789348+00 2025-12-09 10:14:49.789353+00 5866 C269#黑色 SPMX-20240815301004 \N \N \N 1 \N [{"file_id": "abaebc89-2b2f-46e9-b9ae-3b16cbeaa35f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "379157794670464c920af13245562f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "379157794670464c920af13245562f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "379157794670464c920af13245562f87.jpg", "file_size": 10242, "is_delete": false, "file_type": 1, "original_file_name": "C269#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379157794670464c920af13245562f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379157794670464c920af13245562f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379157794670464c920af13245562f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/379157794670464c920af13245562f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/379157794670464c920af13245562f87.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XoUPDhdJudoUhmQPyDBZOXZUy34=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.790613+00 2025-12-09 10:14:49.790618+00 5867 FHXGPK-024-4 SPMX-20240815301023 \N \N \N 1 \N [{"file_id": "b04a9e67-c679-47ee-9534-49c703de23a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "085c41142ab14187a0296f03cb04a50e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "085c41142ab14187a0296f03cb04a50e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "085c41142ab14187a0296f03cb04a50e.jpg", "file_size": 32554, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-024-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/085c41142ab14187a0296f03cb04a50e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/085c41142ab14187a0296f03cb04a50e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/085c41142ab14187a0296f03cb04a50e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/085c41142ab14187a0296f03cb04a50e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/085c41142ab14187a0296f03cb04a50e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDae7nR-xFTPtiEMSVMHlLhEkpo=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.791926+00 2025-12-09 10:14:49.79193+00 5868 DH20220994T#5-14成人S SPMX-20240815301022 \N \N \N 1 \N [{"file_id": "172a3f2d-30f6-4646-be18-48c0769abf69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd0e3c15e45c487d9258bad7a30414c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd0e3c15e45c487d9258bad7a30414c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd0e3c15e45c487d9258bad7a30414c5.jpg", "file_size": 6945, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-14成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0e3c15e45c487d9258bad7a30414c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0e3c15e45c487d9258bad7a30414c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0e3c15e45c487d9258bad7a30414c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd0e3c15e45c487d9258bad7a30414c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd0e3c15e45c487d9258bad7a30414c5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igy4_GGF6vFeFIpAZyQ5JQvV_S0=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.79321+00 2025-12-09 10:14:49.793214+00 5869 23-2102#A2袖口包条3XL SPMX-20240815301020 \N \N \N 1 \N [{"file_id": "93aba062-0a35-4920-b9de-793a18bd408e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg", "file_size": 6918, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddf57c5d653b4e4a8c6219e3aa1f9d74.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dgq5nE7WGdce-WTobmCdbWwCWfQ=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.794492+00 2025-12-09 10:14:49.794496+00 5870 LZ1221#童装T2号色 SPMX-20240815301024 \N \N \N 1 \N [{"file_id": "547d7343-a75d-4694-bd10-669efa985f72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a64f334de09f43c29ee92ea7abec3531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a64f334de09f43c29ee92ea7abec3531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a64f334de09f43c29ee92ea7abec3531.jpg", "file_size": 15606, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a64f334de09f43c29ee92ea7abec3531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a64f334de09f43c29ee92ea7abec3531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a64f334de09f43c29ee92ea7abec3531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a64f334de09f43c29ee92ea7abec3531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a64f334de09f43c29ee92ea7abec3531.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oc55CUKfnhsNZ39kKUPfKEP9UT4=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.795759+00 2025-12-09 10:14:49.795763+00 5871 0003-117FWF#紫色 SPMX-20240815301016 \N \N \N 1 \N [{"file_id": "4938acc3-d874-4a8e-8066-5c2a5d40aa14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11a0624bceb04983bd85f97828010dd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11a0624bceb04983bd85f97828010dd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11a0624bceb04983bd85f97828010dd5.jpg", "file_size": 13784, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a0624bceb04983bd85f97828010dd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a0624bceb04983bd85f97828010dd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a0624bceb04983bd85f97828010dd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11a0624bceb04983bd85f97828010dd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11a0624bceb04983bd85f97828010dd5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgHbGqZZ6uV1csV5jNj3UPcwzzA=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.797055+00 2025-12-09 10:14:49.79706+00 5872 JSD0201#-黑色-XL码 SPMX-20240815301019 \N \N \N 1 \N [{"file_id": "9473f39b-1127-494b-8934-6fb8ef69092d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2547aece100490fbd5d5328e0be3539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2547aece100490fbd5d5328e0be3539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2547aece100490fbd5d5328e0be3539.jpg", "file_size": 86652, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#-黑色-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2547aece100490fbd5d5328e0be3539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2547aece100490fbd5d5328e0be3539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2547aece100490fbd5d5328e0be3539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2547aece100490fbd5d5328e0be3539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2547aece100490fbd5d5328e0be3539.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TCnK_HdSJLC74Zl-ccsPu0k-M4g=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.798312+00 2025-12-09 10:14:49.798316+00 5873 C27#WJC22 SPMX-20240815301013 \N \N \N 1 \N [{"file_id": "e2c21788-4dd0-4d9a-8a31-9b8b34b4055b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "756a57e48317492d9f01c3dcc49f1a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "756a57e48317492d9f01c3dcc49f1a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "756a57e48317492d9f01c3dcc49f1a0e.jpg", "file_size": 21207, "is_delete": false, "file_type": 1, "original_file_name": "C27#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756a57e48317492d9f01c3dcc49f1a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756a57e48317492d9f01c3dcc49f1a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756a57e48317492d9f01c3dcc49f1a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/756a57e48317492d9f01c3dcc49f1a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/756a57e48317492d9f01c3dcc49f1a0e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lUffo1UtHqmOm_AQjB5HFsIOzY=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.799583+00 2025-12-09 10:14:49.799587+00 5874 80087#袖子匹布 SPMX-20240815301015 \N \N \N 1 \N [{"file_id": "f706b3e3-67bc-4132-a933-607dcf093bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4c53e937b7e415880c058b600c83f6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4c53e937b7e415880c058b600c83f6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4c53e937b7e415880c058b600c83f6b.jpg", "file_size": 11446, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c53e937b7e415880c058b600c83f6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c53e937b7e415880c058b600c83f6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c53e937b7e415880c058b600c83f6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4c53e937b7e415880c058b600c83f6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4c53e937b7e415880c058b600c83f6b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taEwWqJ9TfoduLoOwIi3a3UL6lI=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.800864+00 2025-12-09 10:14:49.800868+00 5875 LZ1221#童装T1号色 SPMX-20240815301014 \N \N \N 1 \N [{"file_id": "464fe72f-7990-43eb-8d3b-ffc151edd12d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5312f001e2f748c2b892453dae514049.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5312f001e2f748c2b892453dae514049.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5312f001e2f748c2b892453dae514049.jpg", "file_size": 15318, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5312f001e2f748c2b892453dae514049.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5312f001e2f748c2b892453dae514049.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5312f001e2f748c2b892453dae514049.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5312f001e2f748c2b892453dae514049.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5312f001e2f748c2b892453dae514049.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6oeOTQlfbU9M-7OQuE4bfK_Bh0=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.802175+00 2025-12-09 10:14:49.802179+00 5876 LHJ9273#25#土黄 SPMX-20240815301021 \N \N \N 1 \N [{"file_id": "5c474d9f-2f32-4e96-888f-77ed62b8d22b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38aff90b553c43f5a9b4cc2eaa289015.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38aff90b553c43f5a9b4cc2eaa289015.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38aff90b553c43f5a9b4cc2eaa289015.jpg", "file_size": 15311, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aff90b553c43f5a9b4cc2eaa289015.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aff90b553c43f5a9b4cc2eaa289015.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38aff90b553c43f5a9b4cc2eaa289015.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38aff90b553c43f5a9b4cc2eaa289015.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38aff90b553c43f5a9b4cc2eaa289015.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06KiBZaBR4z6AwqctLoYjBfztoI=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.803426+00 2025-12-09 10:14:49.80343+00 5877 DH20220994T#5-14成人M SPMX-20240815301010 \N \N \N 1 \N [{"file_id": "c1d7b07f-3066-44dc-9c37-fed980feb1b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7794c18702b46b280e676d20d802e40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7794c18702b46b280e676d20d802e40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7794c18702b46b280e676d20d802e40.jpg", "file_size": 7125, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-14成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7794c18702b46b280e676d20d802e40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7794c18702b46b280e676d20d802e40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7794c18702b46b280e676d20d802e40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7794c18702b46b280e676d20d802e40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7794c18702b46b280e676d20d802e40.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKNdX3i0FTpbxSZk5f3wQu2sIHA=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.804698+00 2025-12-09 10:14:49.804701+00 5878 FHXGPK-024-3 SPMX-20240815301012 \N \N \N 1 \N [{"file_id": "83438028-0cf9-487a-8f7c-5f8fd8a868ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f5258e257e440f2940dbec60e41858f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f5258e257e440f2940dbec60e41858f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f5258e257e440f2940dbec60e41858f.jpg", "file_size": 36488, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-024-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5258e257e440f2940dbec60e41858f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5258e257e440f2940dbec60e41858f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5258e257e440f2940dbec60e41858f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f5258e257e440f2940dbec60e41858f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f5258e257e440f2940dbec60e41858f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHzLfnACm830yzS9sE0vnVeSCrw=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.805955+00 2025-12-09 10:14:49.80596+00 5879 23-2102#A2袖口3XL SPMX-20240815301011 \N \N \N 1 \N [{"file_id": "584e42ef-c34f-4edc-a36b-60d828d80777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "508fb3b6f1c44b6ba1565231b79bab69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "508fb3b6f1c44b6ba1565231b79bab69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "508fb3b6f1c44b6ba1565231b79bab69.jpg", "file_size": 15914, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508fb3b6f1c44b6ba1565231b79bab69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508fb3b6f1c44b6ba1565231b79bab69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508fb3b6f1c44b6ba1565231b79bab69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/508fb3b6f1c44b6ba1565231b79bab69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/508fb3b6f1c44b6ba1565231b79bab69.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gAsuy45kmbxLvwT3nyItQt3BjQ=", "createTime": "2024-08-15 14:42:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.807238+00 2025-12-09 10:14:49.807242+00 5880 1056#杏色匹布 SPMX-20240815301018 \N \N \N 1 \N [{"file_id": "6cbf7a34-0f3e-4fcf-b5cc-1749bec4617d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6640e73d7f4d548a8df68d084959ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6640e73d7f4d548a8df68d084959ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6640e73d7f4d548a8df68d084959ee.jpg", "file_size": 17212, "is_delete": false, "file_type": 1, "original_file_name": "1056#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6640e73d7f4d548a8df68d084959ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6640e73d7f4d548a8df68d084959ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6640e73d7f4d548a8df68d084959ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6640e73d7f4d548a8df68d084959ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6640e73d7f4d548a8df68d084959ee.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYeb5FechlaOm397gf_6f1xSGAI=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.808488+00 2025-12-09 10:14:49.808492+00 5881 HSH180FW# SPMX-20240815301017 \N \N \N 1 \N [{"file_id": "97a8cd36-00a6-4420-952d-351951f7f1f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "425072a1a923435c86c68ef7081a47b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "425072a1a923435c86c68ef7081a47b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "425072a1a923435c86c68ef7081a47b5.jpg", "file_size": 16314, "is_delete": false, "file_type": 1, "original_file_name": "HSH180FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425072a1a923435c86c68ef7081a47b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425072a1a923435c86c68ef7081a47b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425072a1a923435c86c68ef7081a47b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/425072a1a923435c86c68ef7081a47b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/425072a1a923435c86c68ef7081a47b5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QH7DzJzyTAwE5p3vTa6AWubjFQQ=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.811025+00 2025-12-09 10:14:49.811029+00 5883 DH20220994T#5-18成人M SPMX-20240815301035 \N \N \N 1 \N [{"file_id": "61975375-a9b4-457e-a14e-a6e5802409fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "730bd338b6474134af02512c1705ca77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "730bd338b6474134af02512c1705ca77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "730bd338b6474134af02512c1705ca77.jpg", "file_size": 6635, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-18成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730bd338b6474134af02512c1705ca77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730bd338b6474134af02512c1705ca77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730bd338b6474134af02512c1705ca77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/730bd338b6474134af02512c1705ca77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/730bd338b6474134af02512c1705ca77.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zb0pRzWSnPBoV_bNwbLnLtHxew=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.812317+00 2025-12-09 10:14:49.812321+00 5884 0003-117FWF#红色 SPMX-20240815301027 \N \N \N 1 \N [{"file_id": "bcb3201c-02c6-49af-93fb-9c9d7c8765b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bd7a74ac293410384d8508d86055470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bd7a74ac293410384d8508d86055470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bd7a74ac293410384d8508d86055470.jpg", "file_size": 13737, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd7a74ac293410384d8508d86055470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd7a74ac293410384d8508d86055470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd7a74ac293410384d8508d86055470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bd7a74ac293410384d8508d86055470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bd7a74ac293410384d8508d86055470.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t22PmdtQrFSqV-095CQ1FD5e8BI=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.814878+00 2025-12-09 10:14:49.814881+00 5886 LHJ9273#37#梅红 SPMX-20240815301032 \N \N \N 1 \N [{"file_id": "b8353bf9-b940-4a65-a869-12335d789db3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895cc41849434e5e9cf41b5d93a43dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895cc41849434e5e9cf41b5d93a43dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895cc41849434e5e9cf41b5d93a43dfb.jpg", "file_size": 13072, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895cc41849434e5e9cf41b5d93a43dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895cc41849434e5e9cf41b5d93a43dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895cc41849434e5e9cf41b5d93a43dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895cc41849434e5e9cf41b5d93a43dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895cc41849434e5e9cf41b5d93a43dfb.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoqrsZAu2DgzZRAOzEuonlUKA0M=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.81615+00 2025-12-09 10:14:49.816155+00 5887 HSH181FW# SPMX-20240815301028 \N \N \N 1 \N [{"file_id": "1077bebd-d27e-4909-be60-9cd27c32b1df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66a6458031f946e98f7396a13b092633.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66a6458031f946e98f7396a13b092633.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66a6458031f946e98f7396a13b092633.jpg", "file_size": 14985, "is_delete": false, "file_type": 1, "original_file_name": "HSH181FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66a6458031f946e98f7396a13b092633.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66a6458031f946e98f7396a13b092633.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66a6458031f946e98f7396a13b092633.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66a6458031f946e98f7396a13b092633.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66a6458031f946e98f7396a13b092633.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8XrFz7RTMNgiZOBFfEFeN8ZREYE=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.817412+00 2025-12-09 10:14:49.817416+00 5888 FHXGPK-024-5 SPMX-20240815301033 \N \N \N 1 \N [{"file_id": "8270e8ff-15eb-4d24-ab09-6cbe7e7d8fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc96bbd4d57d427e91537fe0bcb2d229.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc96bbd4d57d427e91537fe0bcb2d229.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc96bbd4d57d427e91537fe0bcb2d229.jpg", "file_size": 36291, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-024-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc96bbd4d57d427e91537fe0bcb2d229.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc96bbd4d57d427e91537fe0bcb2d229.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc96bbd4d57d427e91537fe0bcb2d229.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc96bbd4d57d427e91537fe0bcb2d229.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc96bbd4d57d427e91537fe0bcb2d229.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5Mb8-Io1tTjqCH0aAleGWTmwM8=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.809758+00 2025-12-09 10:14:49.809762+00 5882 80087#袖子土黄 SPMX-20240815301026 \N \N \N 1 \N [{"file_id": "97e663bd-5be0-4e9f-87f6-097441c28ea3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf45e4c27c38410c91fe90b7d22b926b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf45e4c27c38410c91fe90b7d22b926b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf45e4c27c38410c91fe90b7d22b926b.jpg", "file_size": 26679, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf45e4c27c38410c91fe90b7d22b926b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf45e4c27c38410c91fe90b7d22b926b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf45e4c27c38410c91fe90b7d22b926b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf45e4c27c38410c91fe90b7d22b926b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf45e4c27c38410c91fe90b7d22b926b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:980EL2PbtVmoVgP3fSBfrl-Vyq0=", "createTime": "2024-08-15 14:42:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.813592+00 2025-12-09 10:14:49.813596+00 5885 23-2102#A2长袖子3XL SPMX-20240815301031 \N \N \N 1 \N [{"file_id": "a4164312-6817-4475-97c4-8b6c5b07b5c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccfa88a1b3c449e3bd7fc11f16380465.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccfa88a1b3c449e3bd7fc11f16380465.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccfa88a1b3c449e3bd7fc11f16380465.jpg", "file_size": 23264, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfa88a1b3c449e3bd7fc11f16380465.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfa88a1b3c449e3bd7fc11f16380465.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfa88a1b3c449e3bd7fc11f16380465.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccfa88a1b3c449e3bd7fc11f16380465.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccfa88a1b3c449e3bd7fc11f16380465.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tHLTdX-LIEHHvp4jfydTCGQI6M=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.821553+00 2025-12-09 10:14:49.821558+00 5889 1056#白色 SPMX-20240815301029 \N \N \N 1 \N [{"file_id": "a1a8f730-68c3-400d-9346-7d73231c34f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f0beec984c7469b9d592d696448d4c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f0beec984c7469b9d592d696448d4c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f0beec984c7469b9d592d696448d4c9.jpg", "file_size": 21785, "is_delete": false, "file_type": 1, "original_file_name": "1056#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0beec984c7469b9d592d696448d4c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0beec984c7469b9d592d696448d4c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0beec984c7469b9d592d696448d4c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f0beec984c7469b9d592d696448d4c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f0beec984c7469b9d592d696448d4c9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6CeZV9CuYHY_hs-qi5UNpdEwOY=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.822843+00 2025-12-09 10:14:49.822847+00 5890 LZ1221#童装T3号色 SPMX-20240815301034 \N \N \N 1 \N [{"file_id": "8950b3fd-67b4-43f6-b145-62ec3e7c4539", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43e11a21b07a438aa4007d5d956e35f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43e11a21b07a438aa4007d5d956e35f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43e11a21b07a438aa4007d5d956e35f1.jpg", "file_size": 14298, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e11a21b07a438aa4007d5d956e35f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e11a21b07a438aa4007d5d956e35f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e11a21b07a438aa4007d5d956e35f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43e11a21b07a438aa4007d5d956e35f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43e11a21b07a438aa4007d5d956e35f1.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFEPfHT4U8Jo-2P76x_vnWnBhf4=", "createTime": "2024-08-15 14:42:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.824139+00 2025-12-09 10:14:49.824143+00 5891 C270#57#橙红 SPMX-20240815301037 \N \N \N 1 \N [{"file_id": "ed74bd17-63ac-477e-a996-b9a61971dc29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1afe2665d85343ddbef55443ab0a3486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1afe2665d85343ddbef55443ab0a3486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1afe2665d85343ddbef55443ab0a3486.jpg", "file_size": 10487, "is_delete": false, "file_type": 1, "original_file_name": "C270#57#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1afe2665d85343ddbef55443ab0a3486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1afe2665d85343ddbef55443ab0a3486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1afe2665d85343ddbef55443ab0a3486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1afe2665d85343ddbef55443ab0a3486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1afe2665d85343ddbef55443ab0a3486.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9H2Y0juvStVk_JsLuLymyWOkmOw=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.825441+00 2025-12-09 10:14:49.825446+00 5892 HSH182FW# SPMX-20240815301046 \N \N \N 1 \N [{"file_id": "f5962fb8-6226-49aa-aa8f-10536632e4ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a760a267e2e4a56b202af9c10e8fa8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a760a267e2e4a56b202af9c10e8fa8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a760a267e2e4a56b202af9c10e8fa8b.jpg", "file_size": 14896, "is_delete": false, "file_type": 1, "original_file_name": "HSH182FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a760a267e2e4a56b202af9c10e8fa8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a760a267e2e4a56b202af9c10e8fa8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a760a267e2e4a56b202af9c10e8fa8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a760a267e2e4a56b202af9c10e8fa8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a760a267e2e4a56b202af9c10e8fa8b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aonvqP3mYUur31QPuylcoJUjiM=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.826719+00 2025-12-09 10:14:49.826724+00 5893 0003-117FWF#黄色 SPMX-20240815301049 \N \N \N 1 \N [{"file_id": "4b70b474-49e3-4bc5-9dd4-7388d5e96ba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f2c7a6afe304c0385d8b5904efc8cee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f2c7a6afe304c0385d8b5904efc8cee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f2c7a6afe304c0385d8b5904efc8cee.jpg", "file_size": 9847, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7a6afe304c0385d8b5904efc8cee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7a6afe304c0385d8b5904efc8cee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7a6afe304c0385d8b5904efc8cee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7a6afe304c0385d8b5904efc8cee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7a6afe304c0385d8b5904efc8cee.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gIg-PiR8P0JqIObbO805IgdUQ0g=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.828002+00 2025-12-09 10:14:49.828005+00 5894 C270#橙红 SPMX-20240815301047 \N \N \N 1 \N [{"file_id": "4521fa4a-e1ba-4b0e-b543-99d919d30a56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5699fc72261f4112a0510cce5db72725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5699fc72261f4112a0510cce5db72725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5699fc72261f4112a0510cce5db72725.jpg", "file_size": 10159, "is_delete": false, "file_type": 1, "original_file_name": "C270#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5699fc72261f4112a0510cce5db72725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5699fc72261f4112a0510cce5db72725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5699fc72261f4112a0510cce5db72725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5699fc72261f4112a0510cce5db72725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5699fc72261f4112a0510cce5db72725.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3afYWfWjJHYVJ52sdYscReusLZ4=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.82928+00 2025-12-09 10:14:49.829284+00 5895 0003-117FWF#蓝色 SPMX-20240815301038 \N \N \N 1 \N [{"file_id": "e1bc4a8e-685d-46db-86f3-6be2a2be4f44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5fdab04a333425382eb24932d21ccd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5fdab04a333425382eb24932d21ccd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5fdab04a333425382eb24932d21ccd8.jpg", "file_size": 13891, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fdab04a333425382eb24932d21ccd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fdab04a333425382eb24932d21ccd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fdab04a333425382eb24932d21ccd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5fdab04a333425382eb24932d21ccd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5fdab04a333425382eb24932d21ccd8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDq3s5upsLRZLpHxhUEGMgUP6YM=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.830565+00 2025-12-09 10:14:49.830569+00 5896 DH20220994T#5-18成人S SPMX-20240815301042 \N \N \N 1 \N [{"file_id": "14229ecb-83db-4343-b7c6-bf0f3124447f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21dd0a39a0b2408388890d3f8604e064.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21dd0a39a0b2408388890d3f8604e064.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21dd0a39a0b2408388890d3f8604e064.jpg", "file_size": 6247, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-18成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dd0a39a0b2408388890d3f8604e064.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dd0a39a0b2408388890d3f8604e064.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dd0a39a0b2408388890d3f8604e064.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21dd0a39a0b2408388890d3f8604e064.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21dd0a39a0b2408388890d3f8604e064.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FpmdHOHClc25RMwtVdvEAnNpU8=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.831841+00 2025-12-09 10:14:49.831845+00 5897 JSD0201#下摆+领条补片XL码 SPMX-20240815301041 \N \N \N 1 \N [{"file_id": "4290e851-aef5-4576-a79b-fd580cabd622", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5e610067cd445bb8897eeafc889a4a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5e610067cd445bb8897eeafc889a4a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5e610067cd445bb8897eeafc889a4a6.jpg", "file_size": 67446, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#下摆+领条补片XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e610067cd445bb8897eeafc889a4a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e610067cd445bb8897eeafc889a4a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e610067cd445bb8897eeafc889a4a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5e610067cd445bb8897eeafc889a4a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5e610067cd445bb8897eeafc889a4a6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhkxcSgo5MMyhwFSw1ZL0q7bH6k=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.833126+00 2025-12-09 10:14:49.833129+00 5898 FHXGPK-025-1 SPMX-20240815301044 \N \N \N 1 \N [{"file_id": "5adae717-3211-4cf6-92f7-ea294c994ad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f227022c5dce4fc5ad09668fd771e18f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f227022c5dce4fc5ad09668fd771e18f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f227022c5dce4fc5ad09668fd771e18f.jpg", "file_size": 33225, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-025-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f227022c5dce4fc5ad09668fd771e18f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f227022c5dce4fc5ad09668fd771e18f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f227022c5dce4fc5ad09668fd771e18f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f227022c5dce4fc5ad09668fd771e18f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f227022c5dce4fc5ad09668fd771e18f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHMYk3n2-eiwvElhTnsS-wREKy4=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.834413+00 2025-12-09 10:14:49.834417+00 5899 80087#袖子彩蓝 SPMX-20240815301048 \N \N \N 1 \N [{"file_id": "9727f938-db3c-4404-bb3b-c18a262dcb87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b60be202c3b450e811d995f52ace3d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b60be202c3b450e811d995f52ace3d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b60be202c3b450e811d995f52ace3d0.jpg", "file_size": 27284, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b60be202c3b450e811d995f52ace3d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b60be202c3b450e811d995f52ace3d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b60be202c3b450e811d995f52ace3d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b60be202c3b450e811d995f52ace3d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b60be202c3b450e811d995f52ace3d0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iko5RhGvYNIYvqUy-c8m-TlP-5Q=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.835974+00 2025-12-09 10:14:49.835978+00 5900 80087#袖子大红 SPMX-20240815301036 \N \N \N 1 \N [{"file_id": "f72aebab-7fca-4d7a-9873-a5e272cbecd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "211192c1f0f04a79820591444dc62467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "211192c1f0f04a79820591444dc62467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "211192c1f0f04a79820591444dc62467.jpg", "file_size": 27044, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211192c1f0f04a79820591444dc62467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211192c1f0f04a79820591444dc62467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211192c1f0f04a79820591444dc62467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/211192c1f0f04a79820591444dc62467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/211192c1f0f04a79820591444dc62467.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7H8ZZt2Yv7gNdFOkuO7TJ2tVSY=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.837529+00 2025-12-09 10:14:49.837533+00 5901 LZ1221#童装T4号色 SPMX-20240815301045 \N \N \N 1 \N [{"file_id": "f04c4fca-b7d1-4b7d-ae26-3153b6f8234e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e96aece42784c0cb380f20f9a025072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e96aece42784c0cb380f20f9a025072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e96aece42784c0cb380f20f9a025072.jpg", "file_size": 15281, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e96aece42784c0cb380f20f9a025072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e96aece42784c0cb380f20f9a025072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e96aece42784c0cb380f20f9a025072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e96aece42784c0cb380f20f9a025072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e96aece42784c0cb380f20f9a025072.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkjUU7v3y9hWV3araCgYWlpoW98=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.839096+00 2025-12-09 10:14:49.8391+00 5902 23-2102#A2长袖子4XL SPMX-20240815301039 \N \N \N 1 \N [{"file_id": "b0482dc8-37df-4fb9-a810-70f2d4ea5d23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfa72b66475f4a1c97804bd035722c94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfa72b66475f4a1c97804bd035722c94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfa72b66475f4a1c97804bd035722c94.jpg", "file_size": 23752, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa72b66475f4a1c97804bd035722c94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa72b66475f4a1c97804bd035722c94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa72b66475f4a1c97804bd035722c94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfa72b66475f4a1c97804bd035722c94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfa72b66475f4a1c97804bd035722c94.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7FESOs0ziIwz0AbhBxrQRXeH9k=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.840641+00 2025-12-09 10:14:49.840645+00 5903 LHJ9273#5#彩兰 SPMX-20240815301040 \N \N \N 1 \N [{"file_id": "c0e5f37b-a939-4b31-8abd-bc3940e147c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4d27d302d8047f8b5993491044d921a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4d27d302d8047f8b5993491044d921a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4d27d302d8047f8b5993491044d921a.jpg", "file_size": 15660, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d27d302d8047f8b5993491044d921a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d27d302d8047f8b5993491044d921a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d27d302d8047f8b5993491044d921a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4d27d302d8047f8b5993491044d921a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4d27d302d8047f8b5993491044d921a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:haU8TFP5b22kfCLuhJDGIB4A1wM=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.842201+00 2025-12-09 10:14:49.842204+00 5904 1056#白色匹布 SPMX-20240815301043 \N \N \N 1 \N [{"file_id": "73710060-9430-47c2-8a84-01cde79ca978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeb876c8d9364e148c7208044e85c65c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeb876c8d9364e148c7208044e85c65c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeb876c8d9364e148c7208044e85c65c.jpg", "file_size": 18434, "is_delete": false, "file_type": 1, "original_file_name": "1056#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb876c8d9364e148c7208044e85c65c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb876c8d9364e148c7208044e85c65c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb876c8d9364e148c7208044e85c65c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeb876c8d9364e148c7208044e85c65c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeb876c8d9364e148c7208044e85c65c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ze4YA1hqNFUG4wyEZRjvCxVhbOk=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.843751+00 2025-12-09 10:14:49.843755+00 5905 23-2102#A2领口 SPMX-20240815301050 \N \N \N 1 \N [{"file_id": "b7ab6d55-e2da-44a7-b214-2887413ab66c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5cea8e124ad4279b72b6040b8a17296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5cea8e124ad4279b72b6040b8a17296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5cea8e124ad4279b72b6040b8a17296.jpg", "file_size": 6872, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cea8e124ad4279b72b6040b8a17296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cea8e124ad4279b72b6040b8a17296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cea8e124ad4279b72b6040b8a17296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5cea8e124ad4279b72b6040b8a17296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5cea8e124ad4279b72b6040b8a17296.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEJFQPmDvgFF9t3WuUVdfO1bLiM=", "createTime": "2024-08-15 14:42:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.845318+00 2025-12-09 10:14:49.845322+00 5906 0003-117FWF#黑色 SPMX-20240815301059 \N \N \N 1 \N [{"file_id": "363d0c79-0d86-48fa-8332-1a571c28b344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82c1c3f931ef4db196e8fefa158bf47c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82c1c3f931ef4db196e8fefa158bf47c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82c1c3f931ef4db196e8fefa158bf47c.jpg", "file_size": 14687, "is_delete": false, "file_type": 1, "original_file_name": "0003-117FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c1c3f931ef4db196e8fefa158bf47c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c1c3f931ef4db196e8fefa158bf47c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c1c3f931ef4db196e8fefa158bf47c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82c1c3f931ef4db196e8fefa158bf47c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82c1c3f931ef4db196e8fefa158bf47c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DO4wH6ArfJlJmH6wsLFnF2eGkzM=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.846851+00 2025-12-09 10:14:49.846856+00 5907 HSH183FW#VS-D3 SPMX-20240815301057 \N \N \N 1 \N [{"file_id": "23379b55-c8fa-4486-85d3-5bfa124d555e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceaa34171f8144a2b1f05b1f2b82caff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceaa34171f8144a2b1f05b1f2b82caff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceaa34171f8144a2b1f05b1f2b82caff.jpg", "file_size": 23415, "is_delete": false, "file_type": 1, "original_file_name": "HSH183FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaa34171f8144a2b1f05b1f2b82caff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaa34171f8144a2b1f05b1f2b82caff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaa34171f8144a2b1f05b1f2b82caff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceaa34171f8144a2b1f05b1f2b82caff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceaa34171f8144a2b1f05b1f2b82caff.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16FhSC7qhknEvkc4jPTABA8ICwo=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.848129+00 2025-12-09 10:14:49.848133+00 5908 LHJ9277#118#天蓝 SPMX-20240815301063 \N \N \N 1 \N [{"file_id": "d9b2f1c9-f298-4fd1-82bc-a51e291e2e1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c2bba0ac868404dbf530d5736e85efd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c2bba0ac868404dbf530d5736e85efd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c2bba0ac868404dbf530d5736e85efd.jpg", "file_size": 17238, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#118#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2bba0ac868404dbf530d5736e85efd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2bba0ac868404dbf530d5736e85efd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2bba0ac868404dbf530d5736e85efd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c2bba0ac868404dbf530d5736e85efd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c2bba0ac868404dbf530d5736e85efd.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXwnD_w09VBSA0v1AUNSsg-9FoI=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.849408+00 2025-12-09 10:14:49.849413+00 5909 FHXGPK-025-3 SPMX-20240815301065 \N \N \N 1 \N [{"file_id": "f3f7b33f-aaf9-4e57-8e54-568ad804c7f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1065547d42c4e0ea98e89253620f4fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1065547d42c4e0ea98e89253620f4fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1065547d42c4e0ea98e89253620f4fa.jpg", "file_size": 32243, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-025-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065547d42c4e0ea98e89253620f4fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065547d42c4e0ea98e89253620f4fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1065547d42c4e0ea98e89253620f4fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1065547d42c4e0ea98e89253620f4fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1065547d42c4e0ea98e89253620f4fa.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnW41WIg7eY50mFD62weDOgvOEQ=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.850676+00 2025-12-09 10:14:49.85068+00 5910 80087#袖子枣红 SPMX-20240815301060 \N \N \N 1 \N [{"file_id": "e7d25180-7d1e-4e98-bc53-94df6c218160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6fce23923e749f08999fdcb4e061ca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6fce23923e749f08999fdcb4e061ca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6fce23923e749f08999fdcb4e061ca8.jpg", "file_size": 27217, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fce23923e749f08999fdcb4e061ca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fce23923e749f08999fdcb4e061ca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fce23923e749f08999fdcb4e061ca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6fce23923e749f08999fdcb4e061ca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6fce23923e749f08999fdcb4e061ca8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q589Ct_TuG5qs0gp7cxbADiJAX8=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.862133+00 2025-12-09 10:14:49.862137+00 5919 1056#粉色匹布 SPMX-20240815301066 \N \N \N 1 \N [{"file_id": "f21fce2c-be92-4b04-9ed1-9c7c742cf678", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56fab413f5764f9499d02ea549c59c18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56fab413f5764f9499d02ea549c59c18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56fab413f5764f9499d02ea549c59c18.jpg", "file_size": 15849, "is_delete": false, "file_type": 1, "original_file_name": "1056#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56fab413f5764f9499d02ea549c59c18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56fab413f5764f9499d02ea549c59c18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56fab413f5764f9499d02ea549c59c18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56fab413f5764f9499d02ea549c59c18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56fab413f5764f9499d02ea549c59c18.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tin20sMLjNEeAy5W_np1O_NGdzY=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.851947+00 2025-12-09 10:14:49.851951+00 5911 DH20220994T#5-19成人S SPMX-20240815301064 \N \N \N 1 \N [{"file_id": "b3007b75-c404-4265-a259-1797e4294b2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a01c60d852d744118fbe424b8b31f70e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a01c60d852d744118fbe424b8b31f70e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a01c60d852d744118fbe424b8b31f70e.jpg", "file_size": 7196, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-19成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01c60d852d744118fbe424b8b31f70e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01c60d852d744118fbe424b8b31f70e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01c60d852d744118fbe424b8b31f70e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a01c60d852d744118fbe424b8b31f70e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a01c60d852d744118fbe424b8b31f70e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GjAmvQ997JE2OU8TowJS2EP3fRo=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.85323+00 2025-12-09 10:14:49.853235+00 5912 23-2102#A2领子通用 SPMX-20240815301061 \N \N \N 1 \N [{"file_id": "be587d23-778c-4a9c-9fff-d4e4e10df2dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "212307d573e6419f89e43cab1225d1f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "212307d573e6419f89e43cab1225d1f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "212307d573e6419f89e43cab1225d1f2.jpg", "file_size": 10472, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212307d573e6419f89e43cab1225d1f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212307d573e6419f89e43cab1225d1f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212307d573e6419f89e43cab1225d1f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/212307d573e6419f89e43cab1225d1f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/212307d573e6419f89e43cab1225d1f2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3w_yVhJSigBxih6PSktdkj2_GM=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.854508+00 2025-12-09 10:14:49.854512+00 5913 1056#粉色 SPMX-20240815301054 \N \N \N 1 \N [{"file_id": "a7be85e2-c6f9-4195-bbab-fdf56d2fc9ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "166f3ce03ef04354a5a1e942df29d791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "166f3ce03ef04354a5a1e942df29d791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "166f3ce03ef04354a5a1e942df29d791.jpg", "file_size": 20185, "is_delete": false, "file_type": 1, "original_file_name": "1056#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166f3ce03ef04354a5a1e942df29d791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166f3ce03ef04354a5a1e942df29d791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166f3ce03ef04354a5a1e942df29d791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/166f3ce03ef04354a5a1e942df29d791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/166f3ce03ef04354a5a1e942df29d791.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_yuWWNxWsOiybG7B8vWX5U544w=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.855771+00 2025-12-09 10:14:49.855775+00 5914 FHXGPK-025-2 SPMX-20240815301055 \N \N \N 1 \N [{"file_id": "4e02ffbb-da7d-49f8-aa27-782b1c228020", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2116408d983349a183c86b91c83c588a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2116408d983349a183c86b91c83c588a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2116408d983349a183c86b91c83c588a.jpg", "file_size": 28791, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-025-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2116408d983349a183c86b91c83c588a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2116408d983349a183c86b91c83c588a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2116408d983349a183c86b91c83c588a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2116408d983349a183c86b91c83c588a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2116408d983349a183c86b91c83c588a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgUZV7RH2hoIQYr5rYEnjwu0GkA=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.857046+00 2025-12-09 10:14:49.85705+00 5915 LZ1221#童装T5号色 SPMX-20240815301056 \N \N \N 1 \N [{"file_id": "ac45ce77-cb7c-46c5-8db1-2452212b1160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0881d7e05a3e48c083eaded202e51763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0881d7e05a3e48c083eaded202e51763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0881d7e05a3e48c083eaded202e51763.jpg", "file_size": 15585, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0881d7e05a3e48c083eaded202e51763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0881d7e05a3e48c083eaded202e51763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0881d7e05a3e48c083eaded202e51763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0881d7e05a3e48c083eaded202e51763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0881d7e05a3e48c083eaded202e51763.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdCFjEgUWDwmrowpDn2A0L6rJ9Q=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.858327+00 2025-12-09 10:14:49.858331+00 5916 LHJ9273#64#粉色 SPMX-20240815301052 \N \N \N 1 \N [{"file_id": "f94ab113-58b1-41da-abb9-799311bc450e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec543e5df6514c2687525ea1ae2141c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec543e5df6514c2687525ea1ae2141c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec543e5df6514c2687525ea1ae2141c0.jpg", "file_size": 12435, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9273#64#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec543e5df6514c2687525ea1ae2141c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec543e5df6514c2687525ea1ae2141c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec543e5df6514c2687525ea1ae2141c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec543e5df6514c2687525ea1ae2141c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec543e5df6514c2687525ea1ae2141c0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:glWlSvy4RwGagMXKPDXcz2AFLzw=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.859595+00 2025-12-09 10:14:49.859599+00 5917 JSD0201#橙色改后版本L码 SPMX-20240815301062 \N \N \N 1 \N [{"file_id": "0f18bbd2-940a-4d7b-b1a4-c09deb6a2096", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d0c7365daa402288d136850119f891.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d0c7365daa402288d136850119f891.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d0c7365daa402288d136850119f891.jpg", "file_size": 96074, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#橙色改后版本L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d0c7365daa402288d136850119f891.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d0c7365daa402288d136850119f891.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d0c7365daa402288d136850119f891.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d0c7365daa402288d136850119f891.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d0c7365daa402288d136850119f891.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlXRIzMw3nIadPXJX1N2m1DJ1z0=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.860866+00 2025-12-09 10:14:49.86087+00 5918 C270#白色 SPMX-20240815301058 \N \N \N 1 \N [{"file_id": "afc81413-35bf-4bb2-8792-c3b4dee7127a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21bfedfa608b4a36b5a5f31a1b04cde2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21bfedfa608b4a36b5a5f31a1b04cde2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21bfedfa608b4a36b5a5f31a1b04cde2.jpg", "file_size": 8797, "is_delete": false, "file_type": 1, "original_file_name": "C270#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bfedfa608b4a36b5a5f31a1b04cde2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bfedfa608b4a36b5a5f31a1b04cde2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bfedfa608b4a36b5a5f31a1b04cde2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21bfedfa608b4a36b5a5f31a1b04cde2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21bfedfa608b4a36b5a5f31a1b04cde2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZefEyMGuJZyMFgPw6QF9tpXwLc=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.863386+00 2025-12-09 10:14:49.86339+00 5920 JSD0201#定位坯布 SPMX-20240815301051 \N \N \N 1 \N [{"file_id": "b5d4dc3d-75a9-47dc-bce9-8358062ab085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b17f2eb21954206b8f04724f34e981d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b17f2eb21954206b8f04724f34e981d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b17f2eb21954206b8f04724f34e981d.jpg", "file_size": 78055, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#定位坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b17f2eb21954206b8f04724f34e981d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b17f2eb21954206b8f04724f34e981d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b17f2eb21954206b8f04724f34e981d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b17f2eb21954206b8f04724f34e981d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b17f2eb21954206b8f04724f34e981d.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVlADi4COGRnAXH8_NA7dcvsSro=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.864671+00 2025-12-09 10:14:49.864675+00 5921 DH20220994T#5-19成人M SPMX-20240815301053 \N \N \N 1 \N [{"file_id": "9e993b83-ea35-4784-9082-a95fe1408424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f3c681982c24fb18cde982ca7a11500.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f3c681982c24fb18cde982ca7a11500.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f3c681982c24fb18cde982ca7a11500.jpg", "file_size": 7297, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-19成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3c681982c24fb18cde982ca7a11500.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3c681982c24fb18cde982ca7a11500.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3c681982c24fb18cde982ca7a11500.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f3c681982c24fb18cde982ca7a11500.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f3c681982c24fb18cde982ca7a11500.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9wd6tKT3hGu67e42ru13keBOr1s=", "createTime": "2024-08-15 14:42:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.86593+00 2025-12-09 10:14:49.865934+00 5922 0003-118FWF#V5曲线 SPMX-20240815301070 \N \N \N 1 \N [{"file_id": "08140849-61cb-45e8-a1e1-1e28731f0f8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg", "file_size": 16433, "is_delete": false, "file_type": 1, "original_file_name": "0003-118FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f4cf6e2871e49feb1e0d207b0fc4ec8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTHRqVJYEc_mGALRsTMc4uwjC4I=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.867204+00 2025-12-09 10:14:49.867208+00 5923 80087#袖子湖绿 SPMX-20240815301071 \N \N \N 1 \N [{"file_id": "1e4bbde9-b795-4e21-b061-2c9483ad77cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33d39b2f74804e8c91812134f8e0e38f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33d39b2f74804e8c91812134f8e0e38f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33d39b2f74804e8c91812134f8e0e38f.jpg", "file_size": 26806, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d39b2f74804e8c91812134f8e0e38f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d39b2f74804e8c91812134f8e0e38f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d39b2f74804e8c91812134f8e0e38f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33d39b2f74804e8c91812134f8e0e38f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33d39b2f74804e8c91812134f8e0e38f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsV-QKSIF2YBe66rosnFhG9YWjs=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.868468+00 2025-12-09 10:14:49.868472+00 5924 1056#青色 SPMX-20240815301076 \N \N \N 1 \N [{"file_id": "17889637-84bf-4b10-9b6a-6688a1eb11f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "133850e1dc0a4d9db59da4d37c311e71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "133850e1dc0a4d9db59da4d37c311e71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "133850e1dc0a4d9db59da4d37c311e71.jpg", "file_size": 20423, "is_delete": false, "file_type": 1, "original_file_name": "1056#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133850e1dc0a4d9db59da4d37c311e71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133850e1dc0a4d9db59da4d37c311e71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133850e1dc0a4d9db59da4d37c311e71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/133850e1dc0a4d9db59da4d37c311e71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/133850e1dc0a4d9db59da4d37c311e71.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ItwnqXYsS0G7RLp70S2HwMtuYeQ=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.869762+00 2025-12-09 10:14:49.869767+00 5925 DH20220994T#5-1成人M SPMX-20240815301075 \N \N \N 1 \N [{"file_id": "ef448a86-db66-4600-8b73-f3c39be01d88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fa36e551a2248ed8bf0b8857931f5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fa36e551a2248ed8bf0b8857931f5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fa36e551a2248ed8bf0b8857931f5e0.jpg", "file_size": 6829, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-1成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa36e551a2248ed8bf0b8857931f5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa36e551a2248ed8bf0b8857931f5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa36e551a2248ed8bf0b8857931f5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fa36e551a2248ed8bf0b8857931f5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fa36e551a2248ed8bf0b8857931f5e0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVWqR-rKHkc-PYAjXgRiVBnURus=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.871022+00 2025-12-09 10:14:49.871026+00 5926 FHXGPK-025-4 SPMX-20240815301077 \N \N \N 1 \N [{"file_id": "d17193db-5962-4122-bdf0-3c931689fcfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83bd94f58daa46a699d2f2cee313db47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83bd94f58daa46a699d2f2cee313db47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83bd94f58daa46a699d2f2cee313db47.jpg", "file_size": 32893, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-025-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bd94f58daa46a699d2f2cee313db47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bd94f58daa46a699d2f2cee313db47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bd94f58daa46a699d2f2cee313db47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83bd94f58daa46a699d2f2cee313db47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83bd94f58daa46a699d2f2cee313db47.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMlfWQk8AmjfCSUxVbY8TUFS6sU=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.872303+00 2025-12-09 10:14:49.872308+00 5927 LZ1221#童装T6号色 SPMX-20240815301067 \N \N \N 1 \N [{"file_id": "e2538987-6f27-41b7-9062-547589ab80ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79c527ce314044639afea8d18cacbd10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79c527ce314044639afea8d18cacbd10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79c527ce314044639afea8d18cacbd10.jpg", "file_size": 15756, "is_delete": false, "file_type": 1, "original_file_name": "LZ1221#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c527ce314044639afea8d18cacbd10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c527ce314044639afea8d18cacbd10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c527ce314044639afea8d18cacbd10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79c527ce314044639afea8d18cacbd10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79c527ce314044639afea8d18cacbd10.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkgyIrOEn9ky8Jsq7EyM8T_5Z5I=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.873561+00 2025-12-09 10:14:49.873565+00 5928 C270#黑色 SPMX-20240815301068 \N \N \N 1 \N [{"file_id": "ecd0e12b-e5d7-451a-aba5-cda60c08a9f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b1c3e66443646d992d65f09aee4ce03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b1c3e66443646d992d65f09aee4ce03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b1c3e66443646d992d65f09aee4ce03.jpg", "file_size": 10224, "is_delete": false, "file_type": 1, "original_file_name": "C270#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1c3e66443646d992d65f09aee4ce03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1c3e66443646d992d65f09aee4ce03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1c3e66443646d992d65f09aee4ce03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b1c3e66443646d992d65f09aee4ce03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b1c3e66443646d992d65f09aee4ce03.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7Hnl74CJUOGxwHuDF0AA9QlRCo=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.874878+00 2025-12-09 10:14:49.874882+00 5929 23-2102#A3前后片3XL SPMX-20240815301072 \N \N \N 1 \N [{"file_id": "508b396f-93cd-4e9d-b57c-9e2853d3704a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8e8ef5e6050459d9699d233af756065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8e8ef5e6050459d9699d233af756065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8e8ef5e6050459d9699d233af756065.jpg", "file_size": 21585, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e8ef5e6050459d9699d233af756065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e8ef5e6050459d9699d233af756065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e8ef5e6050459d9699d233af756065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8e8ef5e6050459d9699d233af756065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8e8ef5e6050459d9699d233af756065.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8X8JRy-HqwMEgWlYC1dnpv7hKY=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.876134+00 2025-12-09 10:14:49.876138+00 5930 HSH184FW#VS-D3 SPMX-20240815301069 \N \N \N 1 \N [{"file_id": "1b6d1052-8c15-40b3-a670-b654b8b14e12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "150580b8cbdc4888b04a73b629c607b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "150580b8cbdc4888b04a73b629c607b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "150580b8cbdc4888b04a73b629c607b0.jpg", "file_size": 23243, "is_delete": false, "file_type": 1, "original_file_name": "HSH184FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/150580b8cbdc4888b04a73b629c607b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/150580b8cbdc4888b04a73b629c607b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/150580b8cbdc4888b04a73b629c607b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/150580b8cbdc4888b04a73b629c607b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/150580b8cbdc4888b04a73b629c607b0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUU3Wex82AddhKS7DCqpKMva4sQ=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.877396+00 2025-12-09 10:14:49.8774+00 5931 JSD0201#橙色改后版本M码 SPMX-20240815301073 \N \N \N 1 \N [{"file_id": "48f9b69c-5d93-430e-88d4-7d97c03c8f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e91118320ea473bbaea091f3bb2a7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e91118320ea473bbaea091f3bb2a7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e91118320ea473bbaea091f3bb2a7ff.jpg", "file_size": 93076, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#橙色改后版本M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e91118320ea473bbaea091f3bb2a7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e91118320ea473bbaea091f3bb2a7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e91118320ea473bbaea091f3bb2a7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e91118320ea473bbaea091f3bb2a7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e91118320ea473bbaea091f3bb2a7ff.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBultverNBBZR-jWIpsbGnFgnM0=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.878638+00 2025-12-09 10:14:49.878642+00 5932 LHJ9277#20#枣红 SPMX-20240815301074 \N \N \N 1 \N [{"file_id": "86926427-a6f5-4126-a8ce-1f100ee7ebca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fcb87b47f8f4a67bd77cde4eced1652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fcb87b47f8f4a67bd77cde4eced1652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fcb87b47f8f4a67bd77cde4eced1652.jpg", "file_size": 18522, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcb87b47f8f4a67bd77cde4eced1652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcb87b47f8f4a67bd77cde4eced1652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcb87b47f8f4a67bd77cde4eced1652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fcb87b47f8f4a67bd77cde4eced1652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fcb87b47f8f4a67bd77cde4eced1652.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsX8z7TKiFXFODO9O0yKnbyu9QY=", "createTime": "2024-08-15 14:42:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.879959+00 2025-12-09 10:14:49.879963+00 5933 80087#袖子玫红 SPMX-20240815301081 \N \N \N 1 \N [{"file_id": "a8967f3f-ae34-4e5f-95e7-34e944dc4fa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fdd116f12ac4564845a0ac26382eb85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fdd116f12ac4564845a0ac26382eb85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fdd116f12ac4564845a0ac26382eb85.jpg", "file_size": 26906, "is_delete": false, "file_type": 1, "original_file_name": "80087#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd116f12ac4564845a0ac26382eb85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd116f12ac4564845a0ac26382eb85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd116f12ac4564845a0ac26382eb85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fdd116f12ac4564845a0ac26382eb85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fdd116f12ac4564845a0ac26382eb85.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkfwYGWcugIb6Ezj1ti3myfvh6k=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.881225+00 2025-12-09 10:14:49.88123+00 5934 HSH185FW# SPMX-20240815301089 \N \N \N 1 \N [{"file_id": "b4269394-09ae-45b1-95fe-3924c8a5ec7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e462cb5322c34cde84c7a8133a0d5019.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e462cb5322c34cde84c7a8133a0d5019.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e462cb5322c34cde84c7a8133a0d5019.jpg", "file_size": 11698, "is_delete": false, "file_type": 1, "original_file_name": "HSH185FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e462cb5322c34cde84c7a8133a0d5019.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e462cb5322c34cde84c7a8133a0d5019.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e462cb5322c34cde84c7a8133a0d5019.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e462cb5322c34cde84c7a8133a0d5019.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e462cb5322c34cde84c7a8133a0d5019.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qhVtKU2VNvmzQVmUGBkXTidQnsM=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.882487+00 2025-12-09 10:14:49.882491+00 5935 23-2102#A3前后片4XL SPMX-20240815301087 \N \N \N 1 \N [{"file_id": "c541f21e-86db-4e5b-bb8a-56fc70491d43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6a72356d26e4773aae14de8d4f822bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6a72356d26e4773aae14de8d4f822bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6a72356d26e4773aae14de8d4f822bd.jpg", "file_size": 21959, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a72356d26e4773aae14de8d4f822bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a72356d26e4773aae14de8d4f822bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a72356d26e4773aae14de8d4f822bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6a72356d26e4773aae14de8d4f822bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6a72356d26e4773aae14de8d4f822bd.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQHb6WLweJ7gzZy3Ma84lPNImgM=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.883757+00 2025-12-09 10:14:49.883762+00 5936 DH20220994T#5-1成人S SPMX-20240815301085 \N \N \N 1 \N [{"file_id": "90363c8a-c4e2-4308-9268-064204bcca43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd13590dc0e7479b9e9ceb5dfc934aca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd13590dc0e7479b9e9ceb5dfc934aca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd13590dc0e7479b9e9ceb5dfc934aca.jpg", "file_size": 7101, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-1成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd13590dc0e7479b9e9ceb5dfc934aca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd13590dc0e7479b9e9ceb5dfc934aca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd13590dc0e7479b9e9ceb5dfc934aca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd13590dc0e7479b9e9ceb5dfc934aca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd13590dc0e7479b9e9ceb5dfc934aca.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftt21113F4mI4L6EykJnR5UaO2g=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.885096+00 2025-12-09 10:14:49.8851+00 5937 LZ1222#童装T2号色 SPMX-20240815301088 \N \N \N 1 \N [{"file_id": "2faeeb06-2e9f-4204-bed1-a871390a8eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e295c4347a824c5cbd28a529d29659c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e295c4347a824c5cbd28a529d29659c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e295c4347a824c5cbd28a529d29659c2.jpg", "file_size": 16962, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e295c4347a824c5cbd28a529d29659c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e295c4347a824c5cbd28a529d29659c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e295c4347a824c5cbd28a529d29659c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e295c4347a824c5cbd28a529d29659c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e295c4347a824c5cbd28a529d29659c2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMx084Vk_AMV1N1YKvzytgdfzG8=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.886377+00 2025-12-09 10:14:49.886381+00 5938 LZ1222#童装T1号色 SPMX-20240815301078 \N \N \N 1 \N [{"file_id": "4dad7258-5a65-439c-9e7d-07b8cba8d4d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba455b63430c4478a5a0f7b6d487fb3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba455b63430c4478a5a0f7b6d487fb3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba455b63430c4478a5a0f7b6d487fb3b.jpg", "file_size": 16429, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455b63430c4478a5a0f7b6d487fb3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455b63430c4478a5a0f7b6d487fb3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455b63430c4478a5a0f7b6d487fb3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba455b63430c4478a5a0f7b6d487fb3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba455b63430c4478a5a0f7b6d487fb3b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjA_Wz-iNGbAlF9PKLEK1ZIffGw=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.887637+00 2025-12-09 10:14:49.887641+00 5939 FHXGPK-025-5 SPMX-20240815301080 \N \N \N 1 \N [{"file_id": "cc9b6ac9-6120-4f9f-86c2-05132b2facc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da23749ce45f47f5a8d096a19a68ce45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da23749ce45f47f5a8d096a19a68ce45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da23749ce45f47f5a8d096a19a68ce45.jpg", "file_size": 33088, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-025-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da23749ce45f47f5a8d096a19a68ce45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da23749ce45f47f5a8d096a19a68ce45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da23749ce45f47f5a8d096a19a68ce45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da23749ce45f47f5a8d096a19a68ce45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da23749ce45f47f5a8d096a19a68ce45.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGASLENtkJPDOxTy946N0MjTroE=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.888919+00 2025-12-09 10:14:49.888924+00 5940 LHJ9277#33#西瓜红 SPMX-20240815301090 \N \N \N 1 \N [{"file_id": "0327bc94-d763-4c85-806c-e32cf356319b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "156cc89d31634a0d936c4a52c7d98603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "156cc89d31634a0d936c4a52c7d98603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "156cc89d31634a0d936c4a52c7d98603.jpg", "file_size": 17898, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#33#西瓜红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156cc89d31634a0d936c4a52c7d98603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156cc89d31634a0d936c4a52c7d98603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156cc89d31634a0d936c4a52c7d98603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/156cc89d31634a0d936c4a52c7d98603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/156cc89d31634a0d936c4a52c7d98603.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GUYQKwP1I08asgyfRJ_4cZtNLs=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.890205+00 2025-12-09 10:14:49.890209+00 5941 1056#青色匹布 SPMX-20240815301082 \N \N \N 1 \N [{"file_id": "9374777a-10d5-4d99-8a29-68491db3f367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ceaef0296b94a309708185593c373e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ceaef0296b94a309708185593c373e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ceaef0296b94a309708185593c373e6.jpg", "file_size": 16042, "is_delete": false, "file_type": 1, "original_file_name": "1056#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ceaef0296b94a309708185593c373e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ceaef0296b94a309708185593c373e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ceaef0296b94a309708185593c373e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ceaef0296b94a309708185593c373e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ceaef0296b94a309708185593c373e6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Md52ZH7rm_Gb1Z4flBWxveLW9iM=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.891453+00 2025-12-09 10:14:49.891457+00 5942 JSD0201#橙色改后版本S码 SPMX-20240815301086 \N \N \N 1 \N [{"file_id": "125495eb-4d51-408d-98a9-a194392d868f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d25e7ac7bfdf4ec192f54d38c8491f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d25e7ac7bfdf4ec192f54d38c8491f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d25e7ac7bfdf4ec192f54d38c8491f2f.jpg", "file_size": 91968, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#橙色改后版本S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25e7ac7bfdf4ec192f54d38c8491f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25e7ac7bfdf4ec192f54d38c8491f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25e7ac7bfdf4ec192f54d38c8491f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d25e7ac7bfdf4ec192f54d38c8491f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d25e7ac7bfdf4ec192f54d38c8491f2f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK7KbHFEmYe1rRHAVQHUsV3qZew=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.892723+00 2025-12-09 10:14:49.892726+00 5943 LHJ9277#25#土黄 SPMX-20240815301079 \N \N \N 1 \N [{"file_id": "a658b459-9575-4ed6-bf04-bcbd303a07da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7688f5f201da4a2da73d3cbeda9e170a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7688f5f201da4a2da73d3cbeda9e170a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7688f5f201da4a2da73d3cbeda9e170a.jpg", "file_size": 15547, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7688f5f201da4a2da73d3cbeda9e170a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7688f5f201da4a2da73d3cbeda9e170a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7688f5f201da4a2da73d3cbeda9e170a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7688f5f201da4a2da73d3cbeda9e170a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7688f5f201da4a2da73d3cbeda9e170a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-zciVk8CxRs_5XofuPEn_cGq160=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.893992+00 2025-12-09 10:14:49.893997+00 5944 C272#橙色 SPMX-20240815301083 \N \N \N 1 \N [{"file_id": "8b76507d-f871-43e0-a40e-2029dec7ef9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c219880c891444a9acaa22d5b12bf465.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c219880c891444a9acaa22d5b12bf465.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c219880c891444a9acaa22d5b12bf465.jpg", "file_size": 52816, "is_delete": false, "file_type": 1, "original_file_name": "C272#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c219880c891444a9acaa22d5b12bf465.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c219880c891444a9acaa22d5b12bf465.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c219880c891444a9acaa22d5b12bf465.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c219880c891444a9acaa22d5b12bf465.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c219880c891444a9acaa22d5b12bf465.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nnnLnmBqSeDKTpg2kHoso0n1cdY=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.89528+00 2025-12-09 10:14:49.895284+00 5945 0003-119FWF#WJC22番禺调色 SPMX-20240815301084 \N \N \N 1 \N [{"file_id": "cdd2c1d7-830f-4a77-ad88-0fd572117def", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6722011354e648adb787abd7a57a658b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6722011354e648adb787abd7a57a658b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6722011354e648adb787abd7a57a658b.jpg", "file_size": 24147, "is_delete": false, "file_type": 1, "original_file_name": "0003-119FWF#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6722011354e648adb787abd7a57a658b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6722011354e648adb787abd7a57a658b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6722011354e648adb787abd7a57a658b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6722011354e648adb787abd7a57a658b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6722011354e648adb787abd7a57a658b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W1uG033j-RGjvjqT8e1scQYi9GI=", "createTime": "2024-08-15 14:43:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.896541+00 2025-12-09 10:14:49.896545+00 5946 0003-11FWE#VS-D3 SPMX-20240815301094 \N \N \N 1 \N [{"file_id": "ee872d3d-3cc0-47d7-9023-4c99cdd5dc47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e0e9df934bf4e8f94470ea60ba3a280.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e0e9df934bf4e8f94470ea60ba3a280.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e0e9df934bf4e8f94470ea60ba3a280.jpg", "file_size": 21095, "is_delete": false, "file_type": 1, "original_file_name": "0003-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0e9df934bf4e8f94470ea60ba3a280.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0e9df934bf4e8f94470ea60ba3a280.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0e9df934bf4e8f94470ea60ba3a280.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e0e9df934bf4e8f94470ea60ba3a280.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e0e9df934bf4e8f94470ea60ba3a280.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NK0OVDQxXO6ANaRrHIpUXnOl6YU=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.897801+00 2025-12-09 10:14:49.897805+00 5947 80087#长款下身土黄 SPMX-20240815301091 \N \N \N 1 \N [{"file_id": "5670e938-a630-4568-8f4c-0895685e0090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e24d52101444b639accd831646474d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e24d52101444b639accd831646474d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e24d52101444b639accd831646474d2.jpg", "file_size": 22436, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24d52101444b639accd831646474d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24d52101444b639accd831646474d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24d52101444b639accd831646474d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e24d52101444b639accd831646474d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e24d52101444b639accd831646474d2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_5ooGtYG3hPqUSWJYtNxjBG6kk=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.899047+00 2025-12-09 10:14:49.899051+00 5948 C272#玫红 SPMX-20240815301096 \N \N \N 1 \N [{"file_id": "7a350b35-4be9-4f3f-9930-421641ded7bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9b112d4e5424a84b18d6ca838bec96c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9b112d4e5424a84b18d6ca838bec96c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9b112d4e5424a84b18d6ca838bec96c.jpg", "file_size": 50458, "is_delete": false, "file_type": 1, "original_file_name": "C272#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b112d4e5424a84b18d6ca838bec96c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b112d4e5424a84b18d6ca838bec96c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b112d4e5424a84b18d6ca838bec96c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9b112d4e5424a84b18d6ca838bec96c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9b112d4e5424a84b18d6ca838bec96c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqcNJL4qlGr9RYvwo8I7HE8H1QM=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.900332+00 2025-12-09 10:14:49.900335+00 5949 DH20220994T#5-24B成人M SPMX-20240815301095 \N \N \N 1 \N [{"file_id": "76836379-9104-47ef-8833-6a75abd8255d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "575c365db4294500b3f6842cbcf88b49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "575c365db4294500b3f6842cbcf88b49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "575c365db4294500b3f6842cbcf88b49.jpg", "file_size": 6966, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-24B成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575c365db4294500b3f6842cbcf88b49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575c365db4294500b3f6842cbcf88b49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575c365db4294500b3f6842cbcf88b49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/575c365db4294500b3f6842cbcf88b49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/575c365db4294500b3f6842cbcf88b49.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UgdrfIzWHE7mTuJmigEaVpyYDS4=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.90159+00 2025-12-09 10:14:49.901595+00 5950 1056FWE#2XL番禺调色 SPMX-20240815301093 \N \N \N 1 \N [{"file_id": "d2aeb64c-d5d9-4186-852c-1f83b3c88749", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7265ec08f544de97ffb04a75132421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7265ec08f544de97ffb04a75132421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7265ec08f544de97ffb04a75132421.jpg", "file_size": 11445, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#2XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7265ec08f544de97ffb04a75132421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7265ec08f544de97ffb04a75132421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7265ec08f544de97ffb04a75132421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7265ec08f544de97ffb04a75132421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7265ec08f544de97ffb04a75132421.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qEqmRm34LGch3wan8wARohhw_tY=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.902882+00 2025-12-09 10:14:49.902886+00 5951 FHXGPK-026-1 SPMX-20240815301092 \N \N \N 1 \N [{"file_id": "7de0b5d1-972e-4b9c-be2e-c9fe532eadfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88f5d0c13a5340fbb3ff72d815848825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88f5d0c13a5340fbb3ff72d815848825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88f5d0c13a5340fbb3ff72d815848825.jpg", "file_size": 26984, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-026-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f5d0c13a5340fbb3ff72d815848825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f5d0c13a5340fbb3ff72d815848825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f5d0c13a5340fbb3ff72d815848825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88f5d0c13a5340fbb3ff72d815848825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88f5d0c13a5340fbb3ff72d815848825.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkPXf-cSODhf79k3LOQmfGPyc_o=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.90415+00 2025-12-09 10:14:49.904154+00 5952 23-2102#A3短袖子3XL SPMX-20240815301097 \N \N \N 1 \N [{"file_id": "57dae4e4-2e03-463e-9b6a-acbb52bb0a89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e37655da1264d7fb24ba3b7d65e0791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e37655da1264d7fb24ba3b7d65e0791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e37655da1264d7fb24ba3b7d65e0791.jpg", "file_size": 19193, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3短袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e37655da1264d7fb24ba3b7d65e0791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e37655da1264d7fb24ba3b7d65e0791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e37655da1264d7fb24ba3b7d65e0791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e37655da1264d7fb24ba3b7d65e0791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e37655da1264d7fb24ba3b7d65e0791.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkL0PuIm6_-rB3KKNLPwoAHBZiA=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.905434+00 2025-12-09 10:14:49.905438+00 5953 1056FWE#2XL龙潭调色 SPMX-20240815301105 \N \N \N 1 \N [{"file_id": "d4f4f298-c10f-4fa2-bb7c-591562da9ed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af2e285704394c8391965095f85b2cdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af2e285704394c8391965095f85b2cdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af2e285704394c8391965095f85b2cdb.jpg", "file_size": 10548, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#2XL龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2e285704394c8391965095f85b2cdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2e285704394c8391965095f85b2cdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2e285704394c8391965095f85b2cdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af2e285704394c8391965095f85b2cdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af2e285704394c8391965095f85b2cdb.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wXfBPt-svYUMMRRX9Y8Qus25c84=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.906718+00 2025-12-09 10:14:49.906723+00 5954 LHJ9277#49#粉 SPMX-20240815301111 \N \N \N 1 \N [{"file_id": "9841ea43-0f7d-4945-98cb-0af7f0dbad3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd155ee184bd4d22800630bd8bb29f2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd155ee184bd4d22800630bd8bb29f2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd155ee184bd4d22800630bd8bb29f2c.jpg", "file_size": 15658, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#49#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd155ee184bd4d22800630bd8bb29f2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd155ee184bd4d22800630bd8bb29f2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd155ee184bd4d22800630bd8bb29f2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd155ee184bd4d22800630bd8bb29f2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd155ee184bd4d22800630bd8bb29f2c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vj_anP2c8vmM5QOHDdnOTl269w=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.907983+00 2025-12-09 10:14:49.907987+00 5955 LZ1222#童装T3号色 SPMX-20240815301098 \N \N \N 1 \N [{"file_id": "bae0a7ee-21b7-4dfb-912a-8d2b458cbed3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09dac2be5f3d41719ab31ac431ed8f4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09dac2be5f3d41719ab31ac431ed8f4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09dac2be5f3d41719ab31ac431ed8f4e.jpg", "file_size": 16929, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dac2be5f3d41719ab31ac431ed8f4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dac2be5f3d41719ab31ac431ed8f4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dac2be5f3d41719ab31ac431ed8f4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09dac2be5f3d41719ab31ac431ed8f4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09dac2be5f3d41719ab31ac431ed8f4e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87hU1jGucqT7xZ2NZowz7C4gBIg=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.909242+00 2025-12-09 10:14:49.909246+00 5956 C272#紫色 SPMX-20240815301107 \N \N \N 1 \N [{"file_id": "dcf1da2c-3f0c-4a5a-88da-475386e60fc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7bab09360d74e60b97fad64e541c35b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7bab09360d74e60b97fad64e541c35b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7bab09360d74e60b97fad64e541c35b.jpg", "file_size": 49518, "is_delete": false, "file_type": 1, "original_file_name": "C272#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bab09360d74e60b97fad64e541c35b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bab09360d74e60b97fad64e541c35b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bab09360d74e60b97fad64e541c35b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7bab09360d74e60b97fad64e541c35b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7bab09360d74e60b97fad64e541c35b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAORPSeAA-zybRZdqY_oIWDFahw=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.910527+00 2025-12-09 10:14:49.910531+00 5957 JSD0201#橙色改后版本XL码 SPMX-20240815301099 \N \N \N 1 \N [{"file_id": "7616572b-69d3-4ae6-8e1d-5b5d0dc56b6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb917fd27fd9442188465dfe68a33ff8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb917fd27fd9442188465dfe68a33ff8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb917fd27fd9442188465dfe68a33ff8.jpg", "file_size": 90951, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#橙色改后版本XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb917fd27fd9442188465dfe68a33ff8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb917fd27fd9442188465dfe68a33ff8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb917fd27fd9442188465dfe68a33ff8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb917fd27fd9442188465dfe68a33ff8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb917fd27fd9442188465dfe68a33ff8.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVKDJByrXb6fSK_YD6uqkr5gZKc=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.911794+00 2025-12-09 10:14:49.911798+00 5958 0003-11FWE#口袋VS-D3 SPMX-20240815301101 \N \N \N 1 \N [{"file_id": "ea2b8685-2422-4780-b3e9-c5bf39a8f51b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg", "file_size": 6925, "is_delete": false, "file_type": 1, "original_file_name": "0003-11FWE#口袋VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5b52eb4ae6c4b25b4386aa6b50d5e70.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyZRYGESLj4xUCYCwV_yzNM4HVM=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.913072+00 2025-12-09 10:14:49.913076+00 5959 HSH186FW#VS-D3 SPMX-20240815301100 \N \N \N 1 \N [{"file_id": "c786bf9c-8e3f-474d-9c7e-44e6d31b3b52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf9b010934743b595ca78611453c4ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf9b010934743b595ca78611453c4ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf9b010934743b595ca78611453c4ea.jpg", "file_size": 16952, "is_delete": false, "file_type": 1, "original_file_name": "HSH186FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf9b010934743b595ca78611453c4ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf9b010934743b595ca78611453c4ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf9b010934743b595ca78611453c4ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf9b010934743b595ca78611453c4ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf9b010934743b595ca78611453c4ea.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3DnPyWLxlM87i_MKkyUN_h44Ng=", "createTime": "2024-08-15 14:43:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.914342+00 2025-12-09 10:14:49.914347+00 5960 LHJ9277#37#梅红 SPMX-20240815301102 \N \N \N 1 \N [{"file_id": "323c8ca4-c309-4ae4-85e6-703f3fde7f97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acf29e2cebc840c7ac581fa1009d7709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acf29e2cebc840c7ac581fa1009d7709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acf29e2cebc840c7ac581fa1009d7709.jpg", "file_size": 17535, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#37#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf29e2cebc840c7ac581fa1009d7709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf29e2cebc840c7ac581fa1009d7709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acf29e2cebc840c7ac581fa1009d7709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acf29e2cebc840c7ac581fa1009d7709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acf29e2cebc840c7ac581fa1009d7709.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhdXKLupHPKoHQgMZd_r3PnQi10=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.915618+00 2025-12-09 10:14:49.915622+00 5961 LZ1222#童装T4号色 SPMX-20240815301108 \N \N \N 1 \N [{"file_id": "5c00a69d-815b-41de-917d-441b46df4b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51f25fd0fd004f88adf536f1cfba4bf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51f25fd0fd004f88adf536f1cfba4bf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51f25fd0fd004f88adf536f1cfba4bf1.jpg", "file_size": 17005, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f25fd0fd004f88adf536f1cfba4bf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f25fd0fd004f88adf536f1cfba4bf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f25fd0fd004f88adf536f1cfba4bf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51f25fd0fd004f88adf536f1cfba4bf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51f25fd0fd004f88adf536f1cfba4bf1.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMciNbJSC5TfE7uzNo84Z0Io-Bg=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.916924+00 2025-12-09 10:14:49.916928+00 5962 23-2102#A3短袖子4XL SPMX-20240815301109 \N \N \N 1 \N [{"file_id": "962121b7-87c7-4127-8e1d-074542d85b92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg", "file_size": 16593, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3短袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c4cf1efe7ad4bbaaee5e48a6e301a38.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxmfEvGtf6buO50qCXGCsGZsWKk=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.918204+00 2025-12-09 10:14:49.918207+00 5963 80087#长款下身枣红 SPMX-20240815301114 \N \N \N 1 \N [{"file_id": "998c7dfd-f101-4763-b3c4-606bffbf3ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg", "file_size": 21667, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe1ed22de0fe4634be6bf36f3fa0fd3e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:592esgazfq-z4OowCnyjtGuZzQk=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.919474+00 2025-12-09 10:14:49.919478+00 5964 FHXGPK-028-1 SPMX-20240815301115 \N \N \N 1 \N [{"file_id": "b34461a4-1536-4e82-aedf-37200e3a7d7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ffab81d394f4452880c0bcccc389c88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ffab81d394f4452880c0bcccc389c88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ffab81d394f4452880c0bcccc389c88.jpg", "file_size": 24065, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-028-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffab81d394f4452880c0bcccc389c88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffab81d394f4452880c0bcccc389c88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffab81d394f4452880c0bcccc389c88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ffab81d394f4452880c0bcccc389c88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ffab81d394f4452880c0bcccc389c88.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcckYUnckS20Chsjbi_QCVCLixk=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.920765+00 2025-12-09 10:14:49.920769+00 5965 JSD0201#橙色改后版本批布 SPMX-20240815301113 \N \N \N 1 \N [{"file_id": "6f37e30d-56a2-49f0-be62-5423a4d8278e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5c112225ea043d4ac6e45420a27caec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5c112225ea043d4ac6e45420a27caec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5c112225ea043d4ac6e45420a27caec.jpg", "file_size": 57652, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#橙色改后版本批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c112225ea043d4ac6e45420a27caec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c112225ea043d4ac6e45420a27caec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c112225ea043d4ac6e45420a27caec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5c112225ea043d4ac6e45420a27caec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5c112225ea043d4ac6e45420a27caec.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVAw_fdptLtUZA26W8H0cvKXzEM=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.922035+00 2025-12-09 10:14:49.92204+00 5966 DH20220994T#5-24B成人S SPMX-20240815301106 \N \N \N 1 \N [{"file_id": "a2bd10ac-cc5e-41f5-95c3-5750f56b2cef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b042e6cdef546c6bf504399d5d16070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b042e6cdef546c6bf504399d5d16070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b042e6cdef546c6bf504399d5d16070.jpg", "file_size": 7162, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-24B成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b042e6cdef546c6bf504399d5d16070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b042e6cdef546c6bf504399d5d16070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b042e6cdef546c6bf504399d5d16070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b042e6cdef546c6bf504399d5d16070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b042e6cdef546c6bf504399d5d16070.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oV8DoQ4Ac9xuSypJx7fh3zUGZHM=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.923305+00 2025-12-09 10:14:49.923309+00 5967 HSH187FW#VS-D3 SPMX-20240815301110 \N \N \N 1 \N [{"file_id": "97d1fed2-39ff-47f4-88a5-a45c40e6259f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f85c1402e5f444e9fba8b9909e70cac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f85c1402e5f444e9fba8b9909e70cac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f85c1402e5f444e9fba8b9909e70cac.jpg", "file_size": 10712, "is_delete": false, "file_type": 1, "original_file_name": "HSH187FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f85c1402e5f444e9fba8b9909e70cac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f85c1402e5f444e9fba8b9909e70cac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f85c1402e5f444e9fba8b9909e70cac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f85c1402e5f444e9fba8b9909e70cac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f85c1402e5f444e9fba8b9909e70cac.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KqAjHQa-qxUxR7OX1qG3mT7GVXo=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.924559+00 2025-12-09 10:14:49.924563+00 5968 0003-11FWF#V5曲线 SPMX-20240815301112 \N \N \N 1 \N [{"file_id": "eeef089c-da19-454b-a356-a07339d0e5f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7b6548bca3f414dbbcb80bb6042f1fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7b6548bca3f414dbbcb80bb6042f1fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7b6548bca3f414dbbcb80bb6042f1fa.jpg", "file_size": 13177, "is_delete": false, "file_type": 1, "original_file_name": "0003-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b6548bca3f414dbbcb80bb6042f1fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b6548bca3f414dbbcb80bb6042f1fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b6548bca3f414dbbcb80bb6042f1fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7b6548bca3f414dbbcb80bb6042f1fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7b6548bca3f414dbbcb80bb6042f1fa.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUWgRt_3m9Pr6PWMnvK-8V0d4vc=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.925867+00 2025-12-09 10:14:49.925871+00 5969 80087#长款下身彩蓝 SPMX-20240815301104 \N \N \N 1 \N [{"file_id": "f8885037-a608-4312-939a-308fd8675789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b25916cd8d4912be24e01136be0141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b25916cd8d4912be24e01136be0141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b25916cd8d4912be24e01136be0141.jpg", "file_size": 21411, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b25916cd8d4912be24e01136be0141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b25916cd8d4912be24e01136be0141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b25916cd8d4912be24e01136be0141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b25916cd8d4912be24e01136be0141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b25916cd8d4912be24e01136be0141.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ch9kqH6cNaTp6CSZsS4mU-lFvTE=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.927127+00 2025-12-09 10:14:49.927131+00 5970 FHXGPK-027-1 SPMX-20240815301103 \N \N \N 1 \N [{"file_id": "b95815a0-7dff-4734-b270-367579444da8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6e5bd57e87c44f89aecba86a11f6424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6e5bd57e87c44f89aecba86a11f6424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6e5bd57e87c44f89aecba86a11f6424.jpg", "file_size": 28952, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-027-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e5bd57e87c44f89aecba86a11f6424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e5bd57e87c44f89aecba86a11f6424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e5bd57e87c44f89aecba86a11f6424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6e5bd57e87c44f89aecba86a11f6424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6e5bd57e87c44f89aecba86a11f6424.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cADoj5NkZMrrfRwx16xhrcGZ0S0=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.928392+00 2025-12-09 10:14:49.928396+00 5971 1056FWE#3XL番禺调色 SPMX-20240815301116 \N \N \N 1 \N [{"file_id": "f85c3987-c1fd-41b3-b5e9-29bacc4486ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1009e7c7d33d429a8a2c636f4eff4c70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1009e7c7d33d429a8a2c636f4eff4c70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1009e7c7d33d429a8a2c636f4eff4c70.jpg", "file_size": 11212, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#3XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1009e7c7d33d429a8a2c636f4eff4c70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1009e7c7d33d429a8a2c636f4eff4c70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1009e7c7d33d429a8a2c636f4eff4c70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1009e7c7d33d429a8a2c636f4eff4c70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1009e7c7d33d429a8a2c636f4eff4c70.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZRjrMQWfsUF_7SEWdKJvC_exZA=", "createTime": "2024-08-15 14:43:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.929667+00 2025-12-09 10:14:49.929671+00 5972 23-2102#A3袖口3XL SPMX-20240815301118 \N \N \N 1 \N [{"file_id": "847ed27c-b0a9-422d-9106-b94159dfd8d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ef5e29cb0c6400994de1a947000cf43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ef5e29cb0c6400994de1a947000cf43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ef5e29cb0c6400994de1a947000cf43.jpg", "file_size": 15283, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef5e29cb0c6400994de1a947000cf43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef5e29cb0c6400994de1a947000cf43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef5e29cb0c6400994de1a947000cf43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ef5e29cb0c6400994de1a947000cf43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ef5e29cb0c6400994de1a947000cf43.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SI9NJjkS-f-K-26zGNMzREvsS4Q=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.930954+00 2025-12-09 10:14:49.930958+00 5973 HSH188FW#VS-D3 SPMX-20240815301121 \N \N \N 1 \N [{"file_id": "44194394-5ce0-4555-95b7-03470fab14df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8edbd3f38d34468da3147be8afd684a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8edbd3f38d34468da3147be8afd684a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8edbd3f38d34468da3147be8afd684a2.jpg", "file_size": 18655, "is_delete": false, "file_type": 1, "original_file_name": "HSH188FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edbd3f38d34468da3147be8afd684a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edbd3f38d34468da3147be8afd684a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edbd3f38d34468da3147be8afd684a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8edbd3f38d34468da3147be8afd684a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8edbd3f38d34468da3147be8afd684a2.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MlJJuErvHWD6OcHbsrMIIf0BgU=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.932243+00 2025-12-09 10:14:49.932247+00 5974 DH20220994T#5-25成人M SPMX-20240815301117 \N \N \N 1 \N [{"file_id": "c4d0591a-52ed-4d5b-a713-cd4d5e908d3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4690adb79a8a4e51a2827a50c2f9c181.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4690adb79a8a4e51a2827a50c2f9c181.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4690adb79a8a4e51a2827a50c2f9c181.jpg", "file_size": 6743, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-25成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4690adb79a8a4e51a2827a50c2f9c181.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4690adb79a8a4e51a2827a50c2f9c181.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4690adb79a8a4e51a2827a50c2f9c181.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4690adb79a8a4e51a2827a50c2f9c181.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4690adb79a8a4e51a2827a50c2f9c181.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHl9YpeDHOHajoEkYBqSYP1f3BU=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.933523+00 2025-12-09 10:14:49.933527+00 5975 0003-12FWE#VS-D3 SPMX-20240815301122 \N \N \N 1 \N [{"file_id": "c6fde825-d04f-470f-a43c-76ebcb6e4567", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cccc0ed262c648d48cbef8e4cbb4ed3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cccc0ed262c648d48cbef8e4cbb4ed3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cccc0ed262c648d48cbef8e4cbb4ed3a.jpg", "file_size": 16312, "is_delete": false, "file_type": 1, "original_file_name": "0003-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccc0ed262c648d48cbef8e4cbb4ed3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccc0ed262c648d48cbef8e4cbb4ed3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccc0ed262c648d48cbef8e4cbb4ed3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cccc0ed262c648d48cbef8e4cbb4ed3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cccc0ed262c648d48cbef8e4cbb4ed3a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQgMaJa_xXBPVMMxD-NUHxMm73g=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.934777+00 2025-12-09 10:14:49.934781+00 5976 C272#绿色 SPMX-20240815301119 \N \N \N 1 \N [{"file_id": "5ac5f713-82fc-49aa-8e44-231f9b7c66d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fed14238d3549b9bdb801cf1bbeb4ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fed14238d3549b9bdb801cf1bbeb4ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fed14238d3549b9bdb801cf1bbeb4ea.jpg", "file_size": 54976, "is_delete": false, "file_type": 1, "original_file_name": "C272#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fed14238d3549b9bdb801cf1bbeb4ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fed14238d3549b9bdb801cf1bbeb4ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fed14238d3549b9bdb801cf1bbeb4ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fed14238d3549b9bdb801cf1bbeb4ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fed14238d3549b9bdb801cf1bbeb4ea.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AUN5P9pHBS1_pcvMgrrU0euMpzQ=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.936145+00 2025-12-09 10:14:49.936149+00 5977 LZ1222#童装T5号色 SPMX-20240815301120 \N \N \N 1 \N [{"file_id": "c0915576-5e62-4b7b-ba2c-1373cd70a642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d332857c4c044aea935dba80ca850c7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d332857c4c044aea935dba80ca850c7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d332857c4c044aea935dba80ca850c7f.jpg", "file_size": 16617, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d332857c4c044aea935dba80ca850c7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d332857c4c044aea935dba80ca850c7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d332857c4c044aea935dba80ca850c7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d332857c4c044aea935dba80ca850c7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d332857c4c044aea935dba80ca850c7f.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C4P_z95FyrtfzI54u9t7hIVqr9M=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.937453+00 2025-12-09 10:14:49.937457+00 5978 C272#蓝色 SPMX-20240815301129 \N \N \N 1 \N [{"file_id": "f0a9aeaf-4902-436a-bc54-0367aafe2d70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3398403f1a26478fb7463ccb9642673c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3398403f1a26478fb7463ccb9642673c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3398403f1a26478fb7463ccb9642673c.jpg", "file_size": 53815, "is_delete": false, "file_type": 1, "original_file_name": "C272#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3398403f1a26478fb7463ccb9642673c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3398403f1a26478fb7463ccb9642673c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3398403f1a26478fb7463ccb9642673c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3398403f1a26478fb7463ccb9642673c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3398403f1a26478fb7463ccb9642673c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6EdIjKzBHGW7jXWFBgTc3kh5T4=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.938744+00 2025-12-09 10:14:49.938749+00 5979 80087#长款下身玫红 SPMX-20240815301133 \N \N \N 1 \N [{"file_id": "c0734421-6b3b-49ea-b1ef-a026f6e66b8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9df564cd7648139982f2e004bac287.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9df564cd7648139982f2e004bac287.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9df564cd7648139982f2e004bac287.jpg", "file_size": 21822, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9df564cd7648139982f2e004bac287.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9df564cd7648139982f2e004bac287.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9df564cd7648139982f2e004bac287.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9df564cd7648139982f2e004bac287.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9df564cd7648139982f2e004bac287.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YomsXt9R-k-xCsSglVBk_PtDSk=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.940034+00 2025-12-09 10:14:49.940038+00 5980 80087#长款下身湖绿 SPMX-20240815301124 \N \N \N 1 \N [{"file_id": "e46a2ba1-a39b-4898-b63d-84eb2639b396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b9ee178a235408fa7f53f0074d1d956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b9ee178a235408fa7f53f0074d1d956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b9ee178a235408fa7f53f0074d1d956.jpg", "file_size": 21604, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee178a235408fa7f53f0074d1d956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee178a235408fa7f53f0074d1d956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee178a235408fa7f53f0074d1d956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee178a235408fa7f53f0074d1d956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee178a235408fa7f53f0074d1d956.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5F_XAy-awJosUP_hMFOwY8MlTkc=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.941326+00 2025-12-09 10:14:49.94133+00 5981 JSD0201#满幅乱花 SPMX-20240815301128 \N \N \N 1 \N [{"file_id": "03fc91ce-1728-43ba-9953-929d9e6ab311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8947bfbced064e938c665d5b82ae2cb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8947bfbced064e938c665d5b82ae2cb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8947bfbced064e938c665d5b82ae2cb0.jpg", "file_size": 57517, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#满幅乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8947bfbced064e938c665d5b82ae2cb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8947bfbced064e938c665d5b82ae2cb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8947bfbced064e938c665d5b82ae2cb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8947bfbced064e938c665d5b82ae2cb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8947bfbced064e938c665d5b82ae2cb0.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpRZiI6-JPvrc-tDyUPbgrHspx4=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.942591+00 2025-12-09 10:14:49.942595+00 5982 FHXGPK-029-1 SPMX-20240815301125 \N \N \N 1 \N [{"file_id": "ce16a55f-0df4-4be9-895e-8dedb2f24f78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bf1e801800542b98da78cf878a0015a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bf1e801800542b98da78cf878a0015a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bf1e801800542b98da78cf878a0015a.jpg", "file_size": 26249, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-029-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf1e801800542b98da78cf878a0015a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf1e801800542b98da78cf878a0015a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf1e801800542b98da78cf878a0015a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bf1e801800542b98da78cf878a0015a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bf1e801800542b98da78cf878a0015a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Y9_MEOwyPOPhusWZL_aM6XPUHQ=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.943879+00 2025-12-09 10:14:49.943883+00 5983 HSH189FW#VS-D3 SPMX-20240815301131 \N \N \N 1 \N [{"file_id": "ed658927-4818-410e-b5ae-face6f10a24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeacf3b097a542dba2d23fc6a0517b17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeacf3b097a542dba2d23fc6a0517b17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeacf3b097a542dba2d23fc6a0517b17.jpg", "file_size": 14712, "is_delete": false, "file_type": 1, "original_file_name": "HSH189FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf3b097a542dba2d23fc6a0517b17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf3b097a542dba2d23fc6a0517b17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf3b097a542dba2d23fc6a0517b17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeacf3b097a542dba2d23fc6a0517b17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeacf3b097a542dba2d23fc6a0517b17.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DZqRYYCeHLsNVhyuoCibhqZawMQ=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.945168+00 2025-12-09 10:14:49.945172+00 5984 LHJ9277#5#彩兰 SPMX-20240815301123 \N \N \N 1 \N [{"file_id": "270b34d7-fb41-4354-988d-eedcfe60e6c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b91cdf0ba95c41e28401e2123a950599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b91cdf0ba95c41e28401e2123a950599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b91cdf0ba95c41e28401e2123a950599.jpg", "file_size": 18124, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9277#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91cdf0ba95c41e28401e2123a950599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91cdf0ba95c41e28401e2123a950599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91cdf0ba95c41e28401e2123a950599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b91cdf0ba95c41e28401e2123a950599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b91cdf0ba95c41e28401e2123a950599.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SAWHE8oXGcsoL2tUYnirZfkRBY=", "createTime": "2024-08-15 14:43:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.94665+00 2025-12-09 10:14:49.946655+00 5985 LHJ9285#20#枣红 SPMX-20240815301134 \N \N \N 1 \N [{"file_id": "c7d0ac86-9dc3-4541-86d0-3c0d67e66f3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d23d0a4c2444c66831a32e703c7b41c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d23d0a4c2444c66831a32e703c7b41c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d23d0a4c2444c66831a32e703c7b41c.jpg", "file_size": 19308, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9285#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d23d0a4c2444c66831a32e703c7b41c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d23d0a4c2444c66831a32e703c7b41c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d23d0a4c2444c66831a32e703c7b41c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d23d0a4c2444c66831a32e703c7b41c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d23d0a4c2444c66831a32e703c7b41c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggdLJ3lfP6tF-Jp2Z0NEXeNQzfI=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.948263+00 2025-12-09 10:14:49.948267+00 5986 23-2102#A3长袖子3XL SPMX-20240815301136 \N \N \N 1 \N [{"file_id": "4f605ed8-8f11-493f-b96c-58c2dff9ed33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c72b2accb4b4bbd8a19909fb4c9db32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c72b2accb4b4bbd8a19909fb4c9db32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c72b2accb4b4bbd8a19909fb4c9db32.jpg", "file_size": 30124, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c72b2accb4b4bbd8a19909fb4c9db32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c72b2accb4b4bbd8a19909fb4c9db32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c72b2accb4b4bbd8a19909fb4c9db32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c72b2accb4b4bbd8a19909fb4c9db32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c72b2accb4b4bbd8a19909fb4c9db32.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pn9Ero_BcEXXNlEJoTbKVwYQq0=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.949592+00 2025-12-09 10:14:49.949597+00 5987 DH20220994T#5-25成人S SPMX-20240815301126 \N \N \N 1 \N [{"file_id": "92444f4e-7d8e-4a2e-be8a-7af6a45aa7ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "711f1a76351c49e091363363d9c1fead.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "711f1a76351c49e091363363d9c1fead.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "711f1a76351c49e091363363d9c1fead.jpg", "file_size": 6429, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-25成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f1a76351c49e091363363d9c1fead.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f1a76351c49e091363363d9c1fead.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f1a76351c49e091363363d9c1fead.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/711f1a76351c49e091363363d9c1fead.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/711f1a76351c49e091363363d9c1fead.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGMZKy0rFVltuvhcaJRo-ugn3eI=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.950883+00 2025-12-09 10:14:49.950887+00 5988 23-2102#A3袖口包条3XL SPMX-20240815301127 \N \N \N 1 \N [{"file_id": "a17edb34-13fe-4ba1-8915-eed0c9446d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5c687eda9724d3e8ef7359d3b9873a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5c687eda9724d3e8ef7359d3b9873a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5c687eda9724d3e8ef7359d3b9873a9.jpg", "file_size": 14115, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c687eda9724d3e8ef7359d3b9873a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c687eda9724d3e8ef7359d3b9873a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c687eda9724d3e8ef7359d3b9873a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5c687eda9724d3e8ef7359d3b9873a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5c687eda9724d3e8ef7359d3b9873a9.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gOrIfDTVSftlFNjdydnj2_FK-8=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.952192+00 2025-12-09 10:14:49.952196+00 5989 0003-12FWF#V5曲线 SPMX-20240815301135 \N \N \N 1 \N [{"file_id": "ec375f2c-ee04-4429-b8cb-f6fc5f399ebf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08930291a2e64ee1aa5119107cff5a0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08930291a2e64ee1aa5119107cff5a0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08930291a2e64ee1aa5119107cff5a0a.jpg", "file_size": 12879, "is_delete": false, "file_type": 1, "original_file_name": "0003-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08930291a2e64ee1aa5119107cff5a0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08930291a2e64ee1aa5119107cff5a0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08930291a2e64ee1aa5119107cff5a0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08930291a2e64ee1aa5119107cff5a0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08930291a2e64ee1aa5119107cff5a0a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofzkzE0CdceHXhq4WPenkQvWqDg=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.953459+00 2025-12-09 10:14:49.953463+00 5990 LZ1222#童装T6号色 SPMX-20240815301132 \N \N \N 1 \N [{"file_id": "499e023c-4d90-4890-9484-5cde7cc828b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0129538650d347008a37304e64b82857.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0129538650d347008a37304e64b82857.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0129538650d347008a37304e64b82857.jpg", "file_size": 16464, "is_delete": false, "file_type": 1, "original_file_name": "LZ1222#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0129538650d347008a37304e64b82857.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0129538650d347008a37304e64b82857.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0129538650d347008a37304e64b82857.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0129538650d347008a37304e64b82857.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0129538650d347008a37304e64b82857.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGjTRyoaHVHI0BUK9JcmyP0aPIA=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.954747+00 2025-12-09 10:14:49.954751+00 5991 1056FWE#3XL龙潭调色 SPMX-20240815301130 \N \N \N 1 \N [{"file_id": "f02fb5e6-8de5-4f68-a5cc-8fa83f3cb56e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62ac4885336544a6b9ef85e4d64f4e76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62ac4885336544a6b9ef85e4d64f4e76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62ac4885336544a6b9ef85e4d64f4e76.jpg", "file_size": 10672, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#3XL龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac4885336544a6b9ef85e4d64f4e76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac4885336544a6b9ef85e4d64f4e76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac4885336544a6b9ef85e4d64f4e76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62ac4885336544a6b9ef85e4d64f4e76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62ac4885336544a6b9ef85e4d64f4e76.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_XgrczBsnKRHJKMDBzGGEVMIXc=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.956005+00 2025-12-09 10:14:49.95601+00 5992 LHJ9285#25#土黄 SPMX-20240815301144 \N \N \N 1 \N [{"file_id": "4cdd9f65-a981-403d-b623-4d5b944978af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1633f67f6cb54e46a5bb103751783da4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1633f67f6cb54e46a5bb103751783da4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1633f67f6cb54e46a5bb103751783da4.jpg", "file_size": 14074, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9285#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1633f67f6cb54e46a5bb103751783da4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1633f67f6cb54e46a5bb103751783da4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1633f67f6cb54e46a5bb103751783da4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1633f67f6cb54e46a5bb103751783da4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1633f67f6cb54e46a5bb103751783da4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Bgn7Td8dYtQ6Fl0Bkq0cc7k_ps=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.957307+00 2025-12-09 10:14:49.957311+00 5993 C272#黑色2XL SPMX-20240815301141 \N \N \N 1 \N [{"file_id": "bd7c7eb4-0aa5-447d-b570-f07173962f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb1119e042b5439bb78815317d53fd2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb1119e042b5439bb78815317d53fd2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb1119e042b5439bb78815317d53fd2e.jpg", "file_size": 52798, "is_delete": false, "file_type": 1, "original_file_name": "C272#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1119e042b5439bb78815317d53fd2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1119e042b5439bb78815317d53fd2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1119e042b5439bb78815317d53fd2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb1119e042b5439bb78815317d53fd2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb1119e042b5439bb78815317d53fd2e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eb7pFgNQgbLYAWTzb_ZrJsp5jjg=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.958589+00 2025-12-09 10:14:49.958593+00 5994 DH20220994T#5-26成人M SPMX-20240815301138 \N \N \N 1 \N [{"file_id": "9a52c799-bdb7-48ad-8873-05cc5884c880", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c560ce8e12284b48bec33488c9f1d0dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c560ce8e12284b48bec33488c9f1d0dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c560ce8e12284b48bec33488c9f1d0dc.jpg", "file_size": 6324, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-26成人M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c560ce8e12284b48bec33488c9f1d0dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c560ce8e12284b48bec33488c9f1d0dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c560ce8e12284b48bec33488c9f1d0dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c560ce8e12284b48bec33488c9f1d0dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c560ce8e12284b48bec33488c9f1d0dc.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnGAoTKGhujM5461HEAH78UHiU4=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.959864+00 2025-12-09 10:14:49.959868+00 5995 HSH19#2019 SPMX-20240815301143 \N \N \N 1 \N [{"file_id": "a5e3594a-ee8f-4fd2-8ab7-ae5d7300da83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bbc883b37a94960a00cdb043125def4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bbc883b37a94960a00cdb043125def4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bbc883b37a94960a00cdb043125def4.jpg", "file_size": 18128, "is_delete": false, "file_type": 1, "original_file_name": "HSH19#2019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbc883b37a94960a00cdb043125def4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbc883b37a94960a00cdb043125def4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbc883b37a94960a00cdb043125def4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bbc883b37a94960a00cdb043125def4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bbc883b37a94960a00cdb043125def4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMLLllzIq0Ccyj3MlytUNjugZDg=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.961132+00 2025-12-09 10:14:49.961136+00 5996 JSD0201#蓝色改后版本L码 SPMX-20240815301139 \N \N \N 1 \N [{"file_id": "05edca4f-6bc4-4d5d-95b8-fca7368f903a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f3a841ff73b467db81e77fce527152e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f3a841ff73b467db81e77fce527152e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f3a841ff73b467db81e77fce527152e.jpg", "file_size": 99929, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#蓝色改后版本L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a841ff73b467db81e77fce527152e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a841ff73b467db81e77fce527152e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f3a841ff73b467db81e77fce527152e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f3a841ff73b467db81e77fce527152e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f3a841ff73b467db81e77fce527152e.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Dm3QB46Tc-lznc0DmPmFFpzo7I=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.962432+00 2025-12-09 10:14:49.962436+00 5997 FHXGPK-030-1 SPMX-20240815301137 \N \N \N 1 \N [{"file_id": "a54da1f8-28a4-451a-8447-7d5e4f75c4a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03946588b9d24468a4431a138f24be21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03946588b9d24468a4431a138f24be21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03946588b9d24468a4431a138f24be21.jpg", "file_size": 22729, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-030-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03946588b9d24468a4431a138f24be21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03946588b9d24468a4431a138f24be21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03946588b9d24468a4431a138f24be21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03946588b9d24468a4431a138f24be21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03946588b9d24468a4431a138f24be21.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wnPSMNHeEFGQDpL-8GPk5PxoH3s=", "createTime": "2024-08-15 14:43:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.963717+00 2025-12-09 10:14:49.963722+00 5998 1056FWE#L番禺调色 SPMX-20240815301140 \N \N \N 1 \N [{"file_id": "2836873c-a743-4e6e-96ff-8b1370fc6f79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6f1709a012e4e089e92520d2fd533b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6f1709a012e4e089e92520d2fd533b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6f1709a012e4e089e92520d2fd533b4.jpg", "file_size": 11777, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#L番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f1709a012e4e089e92520d2fd533b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f1709a012e4e089e92520d2fd533b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f1709a012e4e089e92520d2fd533b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6f1709a012e4e089e92520d2fd533b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6f1709a012e4e089e92520d2fd533b4.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x9GlZWBz8Dka_l4bLWLZJQD97Jo=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.964989+00 2025-12-09 10:14:49.964993+00 5999 LZ1223#童装T13号色 SPMX-20240815301142 \N \N \N 1 \N [{"file_id": "9e06443a-fb4d-44d5-9128-c69680556f02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cb5aa4dfe5e42938f79185df249378b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cb5aa4dfe5e42938f79185df249378b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cb5aa4dfe5e42938f79185df249378b.jpg", "file_size": 13704, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T13号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb5aa4dfe5e42938f79185df249378b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb5aa4dfe5e42938f79185df249378b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb5aa4dfe5e42938f79185df249378b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cb5aa4dfe5e42938f79185df249378b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cb5aa4dfe5e42938f79185df249378b.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsXk1d0ZOKRdjXHUoO48lXNzXdQ=", "createTime": "2024-08-15 14:43:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.966272+00 2025-12-09 10:14:49.966276+00 6000 LHJ9285#32#墨绿 SPMX-20240815301154 \N \N \N 1 \N [{"file_id": "46c9bfab-6e3f-47be-b973-d5c406eb9929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "550305e15291429c9a85f9a44abd2419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "550305e15291429c9a85f9a44abd2419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "550305e15291429c9a85f9a44abd2419.jpg", "file_size": 19173, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9285#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550305e15291429c9a85f9a44abd2419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550305e15291429c9a85f9a44abd2419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550305e15291429c9a85f9a44abd2419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/550305e15291429c9a85f9a44abd2419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/550305e15291429c9a85f9a44abd2419.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxw30FzJVFGjSXrg8pEtxph12pQ=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.967592+00 2025-12-09 10:14:49.967596+00 6001 HSH190FW#VS-D3 SPMX-20240815301155 \N \N \N 1 \N [{"file_id": "6987fd40-95af-4c35-b9fc-0b0b64bfc5b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6533442feb694c96847cc9cf23078b5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6533442feb694c96847cc9cf23078b5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6533442feb694c96847cc9cf23078b5c.jpg", "file_size": 14142, "is_delete": false, "file_type": 1, "original_file_name": "HSH190FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6533442feb694c96847cc9cf23078b5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6533442feb694c96847cc9cf23078b5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6533442feb694c96847cc9cf23078b5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6533442feb694c96847cc9cf23078b5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6533442feb694c96847cc9cf23078b5c.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWaARECUCNUcdCIkCq3T0YepX_Q=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.968874+00 2025-12-09 10:14:49.968879+00 6002 1056FWE#L龙潭调色 SPMX-20240815301151 \N \N \N 1 \N [{"file_id": "15e05c60-78eb-413e-ad9b-3edf6bc09e47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b70b00262cbe47dfb3ff17644ddc6f82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b70b00262cbe47dfb3ff17644ddc6f82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b70b00262cbe47dfb3ff17644ddc6f82.jpg", "file_size": 11100, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#L龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70b00262cbe47dfb3ff17644ddc6f82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70b00262cbe47dfb3ff17644ddc6f82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b70b00262cbe47dfb3ff17644ddc6f82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b70b00262cbe47dfb3ff17644ddc6f82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b70b00262cbe47dfb3ff17644ddc6f82.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLxYev29Cuz4Ln8bBcV5h4JAOGU=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.970149+00 2025-12-09 10:14:49.970153+00 6003 LZ1223#童装T1号色 SPMX-20240815301152 \N \N \N 1 \N [{"file_id": "87147d51-31ff-45fd-81b7-d1373eb800cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb0af15f8ca94a10ab82efc47839adf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb0af15f8ca94a10ab82efc47839adf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb0af15f8ca94a10ab82efc47839adf6.jpg", "file_size": 14444, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0af15f8ca94a10ab82efc47839adf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0af15f8ca94a10ab82efc47839adf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0af15f8ca94a10ab82efc47839adf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb0af15f8ca94a10ab82efc47839adf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb0af15f8ca94a10ab82efc47839adf6.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K74iJXyc6-21B5f1NjtzP0Pk_FU=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.971411+00 2025-12-09 10:14:49.971415+00 6004 80087#长款下身红色 SPMX-20240815301145 \N \N \N 1 \N [{"file_id": "3d9198b9-d8f8-488d-9898-9fb74a788688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "905a817226b9437f8bf49cdb6c3f815d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "905a817226b9437f8bf49cdb6c3f815d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "905a817226b9437f8bf49cdb6c3f815d.jpg", "file_size": 22183, "is_delete": false, "file_type": 1, "original_file_name": "80087#长款下身红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905a817226b9437f8bf49cdb6c3f815d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905a817226b9437f8bf49cdb6c3f815d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905a817226b9437f8bf49cdb6c3f815d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/905a817226b9437f8bf49cdb6c3f815d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/905a817226b9437f8bf49cdb6c3f815d.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XQnlKgWGsDDhgbyalY5g9Js9l0=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.972706+00 2025-12-09 10:14:49.97271+00 6005 FHXGPK-031-1 SPMX-20240815301150 \N \N \N 1 \N [{"file_id": "63d502f2-eec5-443c-bb74-0fc47252ff7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "481375fa221b4991bb05b56d2c057f86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "481375fa221b4991bb05b56d2c057f86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "481375fa221b4991bb05b56d2c057f86.jpg", "file_size": 25151, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-031-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481375fa221b4991bb05b56d2c057f86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481375fa221b4991bb05b56d2c057f86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481375fa221b4991bb05b56d2c057f86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/481375fa221b4991bb05b56d2c057f86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/481375fa221b4991bb05b56d2c057f86.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PII5DrAdz0e88HCbZD9qL5QtEPg=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.973968+00 2025-12-09 10:14:49.973971+00 6006 23-2102#A3长袖子4XL SPMX-20240815301149 \N \N \N 1 \N [{"file_id": "215a906e-f5d2-439d-a445-dbf05faa979b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfe0caae1fce46dba58bc45c36edaaaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfe0caae1fce46dba58bc45c36edaaaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfe0caae1fce46dba58bc45c36edaaaf.jpg", "file_size": 30467, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0caae1fce46dba58bc45c36edaaaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0caae1fce46dba58bc45c36edaaaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0caae1fce46dba58bc45c36edaaaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfe0caae1fce46dba58bc45c36edaaaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfe0caae1fce46dba58bc45c36edaaaf.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_P6DxKA9DABa1V78_5Dm7gHL5EA=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.975231+00 2025-12-09 10:14:49.975236+00 6007 0003-13FWE#VS-D3 SPMX-20240815301148 \N \N \N 1 \N [{"file_id": "f9607a47-a452-45f2-9625-1246521aa379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86b208f01c584b83809ca4744d4d310a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86b208f01c584b83809ca4744d4d310a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86b208f01c584b83809ca4744d4d310a.jpg", "file_size": 10295, "is_delete": false, "file_type": 1, "original_file_name": "0003-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b208f01c584b83809ca4744d4d310a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b208f01c584b83809ca4744d4d310a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b208f01c584b83809ca4744d4d310a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86b208f01c584b83809ca4744d4d310a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86b208f01c584b83809ca4744d4d310a.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29a2M-b9tQ0ElWs3zDPKZo3ewD8=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:49.97649+00 2025-12-09 10:14:49.976494+00 6008 8008FWF#V5曲线 SPMX-20240815301157 \N \N \N 1 \N [{"file_id": "a52d5a79-9659-435f-8242-89ed1533464a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71ae8fc7274847ddb2681dca6630a2d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71ae8fc7274847ddb2681dca6630a2d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71ae8fc7274847ddb2681dca6630a2d5.jpg", "file_size": 14263, "is_delete": false, "file_type": 1, "original_file_name": "8008FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ae8fc7274847ddb2681dca6630a2d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ae8fc7274847ddb2681dca6630a2d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ae8fc7274847ddb2681dca6630a2d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71ae8fc7274847ddb2681dca6630a2d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71ae8fc7274847ddb2681dca6630a2d5.jpg?e=1765361689&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jS6nBsnWSDuWy_SlE4HC58U-Ir8=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.667342+00 2025-12-09 10:14:50.667351+00 6009 DH20220994T#5-26成人S SPMX-20240815301146 \N \N \N 1 \N [{"file_id": "11ca7805-5956-420c-a42e-cd3c6813192c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc734801122e434286ab78273f854c5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc734801122e434286ab78273f854c5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc734801122e434286ab78273f854c5f.jpg", "file_size": 6359, "is_delete": false, "file_type": 1, "original_file_name": "DH20220994T#5-26成人S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc734801122e434286ab78273f854c5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc734801122e434286ab78273f854c5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc734801122e434286ab78273f854c5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc734801122e434286ab78273f854c5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc734801122e434286ab78273f854c5f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-O_cha-I1LQCqxnHlq_awhkRkg=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.669945+00 2025-12-09 10:14:50.669952+00 6010 C272#黑色3XL SPMX-20240815301147 \N \N \N 1 \N [{"file_id": "d0fd4060-2d03-4b75-9c10-aab07f5b608c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fcd2ca737c24538b4bab62b7c39f141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fcd2ca737c24538b4bab62b7c39f141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fcd2ca737c24538b4bab62b7c39f141.jpg", "file_size": 50944, "is_delete": false, "file_type": 1, "original_file_name": "C272#黑色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcd2ca737c24538b4bab62b7c39f141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcd2ca737c24538b4bab62b7c39f141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcd2ca737c24538b4bab62b7c39f141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fcd2ca737c24538b4bab62b7c39f141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fcd2ca737c24538b4bab62b7c39f141.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0SGPxiL6vvF0Df8x7rQ2BCCzCw=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.67153+00 2025-12-09 10:14:50.671535+00 6011 JSD0201#蓝色改后版本M码 SPMX-20240815301153 \N \N \N 1 \N [{"file_id": "de243d40-30f4-4944-a304-07733c04eb49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "803093a6fdba4569a8d1d831eef321fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "803093a6fdba4569a8d1d831eef321fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "803093a6fdba4569a8d1d831eef321fb.jpg", "file_size": 95808, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#蓝色改后版本M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803093a6fdba4569a8d1d831eef321fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803093a6fdba4569a8d1d831eef321fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803093a6fdba4569a8d1d831eef321fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/803093a6fdba4569a8d1d831eef321fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/803093a6fdba4569a8d1d831eef321fb.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM5Be2eS4DZXqSNvbd3QvPfTYVE=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.672954+00 2025-12-09 10:14:50.672958+00 6012 DH202501152Y# SPMX-20240815301156 \N \N \N 1 \N [{"file_id": "ff0bcc63-1fc6-4a7b-95cf-8d0c804204a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb02543fadc24c4898938cd17fd747a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb02543fadc24c4898938cd17fd747a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb02543fadc24c4898938cd17fd747a5.jpg", "file_size": 18086, "is_delete": false, "file_type": 1, "original_file_name": "DH202501152Y#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb02543fadc24c4898938cd17fd747a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb02543fadc24c4898938cd17fd747a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb02543fadc24c4898938cd17fd747a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb02543fadc24c4898938cd17fd747a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb02543fadc24c4898938cd17fd747a5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjwQiQyjI3P0xylpdVP7eqgo3JU=", "createTime": "2024-08-15 14:43:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.674422+00 2025-12-09 10:14:50.674429+00 6013 C272#黑色L SPMX-20240815301160 \N \N \N 1 \N [{"file_id": "58eb07e9-cb3a-4902-9f09-01fc9d6e2ce9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c09e0f1ce468434b9c9a71b16db26fcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c09e0f1ce468434b9c9a71b16db26fcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c09e0f1ce468434b9c9a71b16db26fcc.jpg", "file_size": 53476, "is_delete": false, "file_type": 1, "original_file_name": "C272#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c09e0f1ce468434b9c9a71b16db26fcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c09e0f1ce468434b9c9a71b16db26fcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c09e0f1ce468434b9c9a71b16db26fcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c09e0f1ce468434b9c9a71b16db26fcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c09e0f1ce468434b9c9a71b16db26fcc.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3T6p3qVj5NnE0gbovuqIDpNEYSc=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.67583+00 2025-12-09 10:14:50.675835+00 6014 DH52042200#L粉 SPMX-20240815301164 \N \N \N 1 \N [{"file_id": "05adb57f-2549-4f67-931e-daca1ce261ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4ba8d70a7ea4a69a642b49680ce1326.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4ba8d70a7ea4a69a642b49680ce1326.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4ba8d70a7ea4a69a642b49680ce1326.jpg", "file_size": 6462, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#L粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ba8d70a7ea4a69a642b49680ce1326.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ba8d70a7ea4a69a642b49680ce1326.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ba8d70a7ea4a69a642b49680ce1326.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4ba8d70a7ea4a69a642b49680ce1326.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4ba8d70a7ea4a69a642b49680ce1326.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sEIadMcKxMaDQTqK2PwFNbP-4G8=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.677163+00 2025-12-09 10:14:50.677167+00 6015 LZ1223#童装T2号色 SPMX-20240815301165 \N \N \N 1 \N [{"file_id": "38fc98f9-85af-442d-930c-bf12f4863f72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f1427c85be54182ac71d5b9005c2570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f1427c85be54182ac71d5b9005c2570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f1427c85be54182ac71d5b9005c2570.jpg", "file_size": 14378, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1427c85be54182ac71d5b9005c2570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1427c85be54182ac71d5b9005c2570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1427c85be54182ac71d5b9005c2570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f1427c85be54182ac71d5b9005c2570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f1427c85be54182ac71d5b9005c2570.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kbrZHK6Qvo6vbj4X2_sduoq1EzE=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.678458+00 2025-12-09 10:14:50.678462+00 6016 LHJ9285#5#彩兰 SPMX-20240815301162 \N \N \N 1 \N [{"file_id": "f63a488f-fade-4404-aaca-16c96f21f411", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6644a3b3f3e54e5c8c30d096869abae9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6644a3b3f3e54e5c8c30d096869abae9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6644a3b3f3e54e5c8c30d096869abae9.jpg", "file_size": 19102, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9285#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6644a3b3f3e54e5c8c30d096869abae9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6644a3b3f3e54e5c8c30d096869abae9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6644a3b3f3e54e5c8c30d096869abae9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6644a3b3f3e54e5c8c30d096869abae9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6644a3b3f3e54e5c8c30d096869abae9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-QQjo_rSfe0YUAvYASVsozEiXA=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.679898+00 2025-12-09 10:14:50.679903+00 6017 JSD0201#蓝色改后版本S码 SPMX-20240815301167 \N \N \N 1 \N [{"file_id": "0c98660b-8937-45af-9c01-4a24687c47af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c05edbec68f44738fa397d88ab78b1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c05edbec68f44738fa397d88ab78b1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c05edbec68f44738fa397d88ab78b1e.jpg", "file_size": 94600, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#蓝色改后版本S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c05edbec68f44738fa397d88ab78b1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c05edbec68f44738fa397d88ab78b1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c05edbec68f44738fa397d88ab78b1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c05edbec68f44738fa397d88ab78b1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c05edbec68f44738fa397d88ab78b1e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vaHEvrc9i0o6oBi5U2kaL0pcgE=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.681244+00 2025-12-09 10:14:50.681249+00 6018 FHXGPK-032-1 SPMX-20240815301168 \N \N \N 1 \N [{"file_id": "4c931c7e-d3d8-473a-aefe-58dde22191fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c6f6d7462d7469b8a28a7fa07ede5a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c6f6d7462d7469b8a28a7fa07ede5a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c6f6d7462d7469b8a28a7fa07ede5a0.jpg", "file_size": 23840, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-032-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6f6d7462d7469b8a28a7fa07ede5a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6f6d7462d7469b8a28a7fa07ede5a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6f6d7462d7469b8a28a7fa07ede5a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c6f6d7462d7469b8a28a7fa07ede5a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c6f6d7462d7469b8a28a7fa07ede5a0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6wG6lUn6gMQ4IG75M44EYVa5jNQ=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.682539+00 2025-12-09 10:14:50.682542+00 6019 1056FWE#M番禺调色 SPMX-20240815301161 \N \N \N 1 \N [{"file_id": "20852860-f785-489d-aaac-7888109d8b06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9edac1cd621d4727a345074cc5ebbb7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9edac1cd621d4727a345074cc5ebbb7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9edac1cd621d4727a345074cc5ebbb7a.jpg", "file_size": 12196, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#M番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edac1cd621d4727a345074cc5ebbb7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edac1cd621d4727a345074cc5ebbb7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edac1cd621d4727a345074cc5ebbb7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9edac1cd621d4727a345074cc5ebbb7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9edac1cd621d4727a345074cc5ebbb7a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTsEoGKyYyec2MIsa_u_YikkW2w=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.683817+00 2025-12-09 10:14:50.683821+00 6020 23-2102#A3领口 SPMX-20240815301159 \N \N \N 1 \N [{"file_id": "7b779c92-ebab-4f85-b85d-605b381e9377", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3078ac60316a4dc69152fe9766e16819.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3078ac60316a4dc69152fe9766e16819.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3078ac60316a4dc69152fe9766e16819.jpg", "file_size": 16759, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3078ac60316a4dc69152fe9766e16819.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3078ac60316a4dc69152fe9766e16819.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3078ac60316a4dc69152fe9766e16819.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3078ac60316a4dc69152fe9766e16819.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3078ac60316a4dc69152fe9766e16819.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwZlXfGv6u9DO2SUWQz7XAThbO8=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.68512+00 2025-12-09 10:14:50.685124+00 6021 80090#前后幅 SPMX-20240815301163 \N \N \N 1 \N [{"file_id": "9461740e-9347-4e92-abae-4a45018e0609", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21380b42f0b5425da04237c45a7f4d3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21380b42f0b5425da04237c45a7f4d3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21380b42f0b5425da04237c45a7f4d3e.jpg", "file_size": 18945, "is_delete": false, "file_type": 1, "original_file_name": "80090#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21380b42f0b5425da04237c45a7f4d3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21380b42f0b5425da04237c45a7f4d3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21380b42f0b5425da04237c45a7f4d3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21380b42f0b5425da04237c45a7f4d3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21380b42f0b5425da04237c45a7f4d3e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8SRFMcLWDTffwO8KxyMC83NWjY=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.686485+00 2025-12-09 10:14:50.68649+00 6022 0003-13FWE#前后片 SPMX-20240815301158 \N \N \N 1 \N [{"file_id": "c8ed7058-0b27-4024-b66d-209da2d8457d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a74e92a4a3949e291ecf3a2b081eb6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a74e92a4a3949e291ecf3a2b081eb6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a74e92a4a3949e291ecf3a2b081eb6a.jpg", "file_size": 10332, "is_delete": false, "file_type": 1, "original_file_name": "0003-13FWE#前后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a74e92a4a3949e291ecf3a2b081eb6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a74e92a4a3949e291ecf3a2b081eb6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a74e92a4a3949e291ecf3a2b081eb6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a74e92a4a3949e291ecf3a2b081eb6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a74e92a4a3949e291ecf3a2b081eb6a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLMKb8vCquvqhV4ZAi9lxOw7S-0=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.687797+00 2025-12-09 10:14:50.687801+00 6023 HSH191FW#VS-D3 SPMX-20240815301166 \N \N \N 1 \N [{"file_id": "94671b04-cf2f-4dd6-b01a-0d891c8ab69c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e508350f4174bef9cd57e5e33ca73a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e508350f4174bef9cd57e5e33ca73a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e508350f4174bef9cd57e5e33ca73a1.jpg", "file_size": 23135, "is_delete": false, "file_type": 1, "original_file_name": "HSH191FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e508350f4174bef9cd57e5e33ca73a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e508350f4174bef9cd57e5e33ca73a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e508350f4174bef9cd57e5e33ca73a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e508350f4174bef9cd57e5e33ca73a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e508350f4174bef9cd57e5e33ca73a1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWHKayTvCzunNEkKzTUpPUFrWpQ=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.689169+00 2025-12-09 10:14:50.689174+00 6024 0003-13FWF#V5曲线 SPMX-20240815301169 \N \N \N 1 \N [{"file_id": "5d75b675-46c7-4a42-b049-0641a87f84a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d5308069bd429aa2134ae385209ca1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d5308069bd429aa2134ae385209ca1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d5308069bd429aa2134ae385209ca1.jpg", "file_size": 18041, "is_delete": false, "file_type": 1, "original_file_name": "0003-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d5308069bd429aa2134ae385209ca1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d5308069bd429aa2134ae385209ca1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d5308069bd429aa2134ae385209ca1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d5308069bd429aa2134ae385209ca1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d5308069bd429aa2134ae385209ca1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oevcVGulIvxtnvdqqAMWCXyGkQ=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.690533+00 2025-12-09 10:14:50.690538+00 6025 23-2102#A4前后片3XL SPMX-20240815301179 \N \N \N 1 \N [{"file_id": "561fd253-f87e-4364-a514-b4ba0d758ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba576f31df464a12b32e108c319eede9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba576f31df464a12b32e108c319eede9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba576f31df464a12b32e108c319eede9.jpg", "file_size": 21091, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba576f31df464a12b32e108c319eede9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba576f31df464a12b32e108c319eede9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba576f31df464a12b32e108c319eede9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba576f31df464a12b32e108c319eede9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba576f31df464a12b32e108c319eede9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9fEMtIRM1RcPSua_-PjnY2sw5o=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.692045+00 2025-12-09 10:14:50.692051+00 6026 23-2102#A3领子通用 SPMX-20240815301170 \N \N \N 1 \N [{"file_id": "ca7a06ba-9f05-418f-abc9-9eed8eea3472", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca86088177434689956c87a13e3c2ac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca86088177434689956c87a13e3c2ac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca86088177434689956c87a13e3c2ac1.jpg", "file_size": 16617, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca86088177434689956c87a13e3c2ac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca86088177434689956c87a13e3c2ac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca86088177434689956c87a13e3c2ac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca86088177434689956c87a13e3c2ac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca86088177434689956c87a13e3c2ac1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlXmCV-EitLknRCK5EviMFIqCnw=", "createTime": "2024-08-15 14:43:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.693464+00 2025-12-09 10:14:50.693468+00 6027 C272#黑色XL SPMX-20240815301172 \N \N \N 1 \N [{"file_id": "c72b0096-10b3-4490-9606-981e46f614f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "827018bede1f43789692db6bd73ac698.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "827018bede1f43789692db6bd73ac698.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "827018bede1f43789692db6bd73ac698.jpg", "file_size": 52692, "is_delete": false, "file_type": 1, "original_file_name": "C272#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827018bede1f43789692db6bd73ac698.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827018bede1f43789692db6bd73ac698.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827018bede1f43789692db6bd73ac698.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/827018bede1f43789692db6bd73ac698.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/827018bede1f43789692db6bd73ac698.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDoEghh_Qd1hvgWDaeL3HKe85U4=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.69509+00 2025-12-09 10:14:50.695095+00 6028 LHJ9288# SPMX-20240815301174 \N \N \N 1 \N [{"file_id": "7fdd20ee-b24b-42a5-ade1-ed98295fea28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48e470b3c1b34ce78d1b93ae10ca5ca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48e470b3c1b34ce78d1b93ae10ca5ca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48e470b3c1b34ce78d1b93ae10ca5ca8.jpg", "file_size": 18168, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9288#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e470b3c1b34ce78d1b93ae10ca5ca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e470b3c1b34ce78d1b93ae10ca5ca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e470b3c1b34ce78d1b93ae10ca5ca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48e470b3c1b34ce78d1b93ae10ca5ca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48e470b3c1b34ce78d1b93ae10ca5ca8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZk-NrOS4opIfbOpkKNLq3fLtos=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.696769+00 2025-12-09 10:14:50.696773+00 6029 DH52042200#L黑 SPMX-20240815301173 \N \N \N 1 \N [{"file_id": "623b967a-7201-4b3c-a21d-8966742243a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2a18b8d1ec4170891519b7d5426b1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2a18b8d1ec4170891519b7d5426b1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2a18b8d1ec4170891519b7d5426b1b.jpg", "file_size": 6603, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#L黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2a18b8d1ec4170891519b7d5426b1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2a18b8d1ec4170891519b7d5426b1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2a18b8d1ec4170891519b7d5426b1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2a18b8d1ec4170891519b7d5426b1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2a18b8d1ec4170891519b7d5426b1b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBdzmOFs3JaCMeqc6cPPen-mS2A=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.698387+00 2025-12-09 10:14:50.698392+00 6030 LZ1223#童装T3号色 SPMX-20240815301176 \N \N \N 1 \N [{"file_id": "e0aaab40-98ed-42fc-ba19-e09d20f78d5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3473969f2c34a3689eb2a15150dbf7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3473969f2c34a3689eb2a15150dbf7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3473969f2c34a3689eb2a15150dbf7b.jpg", "file_size": 13704, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3473969f2c34a3689eb2a15150dbf7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3473969f2c34a3689eb2a15150dbf7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3473969f2c34a3689eb2a15150dbf7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3473969f2c34a3689eb2a15150dbf7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3473969f2c34a3689eb2a15150dbf7b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yy0sPeyjt6PDlMth9YEm9fhZdO0=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.700009+00 2025-12-09 10:14:50.700013+00 6031 JSD0201#蓝色改后版本XL码 SPMX-20240815301180 \N \N \N 1 \N [{"file_id": "c1170c61-3d00-4fd9-bfa0-6793f8ed71bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84c6a5635c4e4f8bae32ad57b94189cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84c6a5635c4e4f8bae32ad57b94189cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84c6a5635c4e4f8bae32ad57b94189cf.jpg", "file_size": 91408, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#蓝色改后版本XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c6a5635c4e4f8bae32ad57b94189cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c6a5635c4e4f8bae32ad57b94189cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84c6a5635c4e4f8bae32ad57b94189cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84c6a5635c4e4f8bae32ad57b94189cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84c6a5635c4e4f8bae32ad57b94189cf.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiXMyscS3Nx6r-ABhI94GYAc8jE=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.701601+00 2025-12-09 10:14:50.701605+00 6032 DH52042200#M粉 SPMX-20240815301183 \N \N \N 1 \N [{"file_id": "66c4de08-e18d-433a-a453-9c91464f54ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "855a3c6776b643deab5211beca9144d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "855a3c6776b643deab5211beca9144d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "855a3c6776b643deab5211beca9144d4.jpg", "file_size": 6441, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#M粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855a3c6776b643deab5211beca9144d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855a3c6776b643deab5211beca9144d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855a3c6776b643deab5211beca9144d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/855a3c6776b643deab5211beca9144d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/855a3c6776b643deab5211beca9144d4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fUiDYjn0_608ENqa7Ghx3PLQ2YU=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.7032+00 2025-12-09 10:14:50.703204+00 6033 0003-14FWE#VS-D3 SPMX-20240815301181 \N \N \N 1 \N [{"file_id": "35c01329-b603-4fc7-b85e-b961800ee51c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23df457b3cfc4bd6915564663c7d071d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23df457b3cfc4bd6915564663c7d071d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23df457b3cfc4bd6915564663c7d071d.jpg", "file_size": 12269, "is_delete": false, "file_type": 1, "original_file_name": "0003-14FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23df457b3cfc4bd6915564663c7d071d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23df457b3cfc4bd6915564663c7d071d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23df457b3cfc4bd6915564663c7d071d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23df457b3cfc4bd6915564663c7d071d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23df457b3cfc4bd6915564663c7d071d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JSCduqPwq6woHhzwVhM5pn2agDE=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.704831+00 2025-12-09 10:14:50.704836+00 6034 1056FWE#M龙潭调色 SPMX-20240815301171 \N \N \N 1 \N [{"file_id": "4a31539e-d2b9-4912-bf6c-79892c2c96d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "952f2d110e774e77b74b8787ee4d4a77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "952f2d110e774e77b74b8787ee4d4a77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "952f2d110e774e77b74b8787ee4d4a77.jpg", "file_size": 11351, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#M龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952f2d110e774e77b74b8787ee4d4a77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952f2d110e774e77b74b8787ee4d4a77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952f2d110e774e77b74b8787ee4d4a77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/952f2d110e774e77b74b8787ee4d4a77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/952f2d110e774e77b74b8787ee4d4a77.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtaISDlS1C03xk0al4JdoGynt6M=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.706417+00 2025-12-09 10:14:50.706421+00 6035 HSH192FW#VS-D3 SPMX-20240815301177 \N \N \N 1 \N [{"file_id": "1af325d1-33be-42d8-bedb-bab4c2552ece", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5d41f02152041868b7c302a5ecade66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5d41f02152041868b7c302a5ecade66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5d41f02152041868b7c302a5ecade66.jpg", "file_size": 22056, "is_delete": false, "file_type": 1, "original_file_name": "HSH192FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d41f02152041868b7c302a5ecade66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d41f02152041868b7c302a5ecade66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d41f02152041868b7c302a5ecade66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5d41f02152041868b7c302a5ecade66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5d41f02152041868b7c302a5ecade66.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJPfEon2wJenUDl2437Fu-YgwAY=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.707741+00 2025-12-09 10:14:50.707746+00 6036 FHXGPK-033-1 SPMX-20240815301178 \N \N \N 1 \N [{"file_id": "af9ab7c4-052d-45e9-9478-cdbe3ffd6ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "298ee60c144d47928252b3a4e0f272fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "298ee60c144d47928252b3a4e0f272fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "298ee60c144d47928252b3a4e0f272fd.jpg", "file_size": 32961, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-033-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ee60c144d47928252b3a4e0f272fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ee60c144d47928252b3a4e0f272fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ee60c144d47928252b3a4e0f272fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/298ee60c144d47928252b3a4e0f272fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/298ee60c144d47928252b3a4e0f272fd.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDM-wCvWb-FURuiDimN6heZ7dRw=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.709067+00 2025-12-09 10:14:50.709071+00 6037 80090#袖子匹布 SPMX-20240815301175 \N \N \N 1 \N [{"file_id": "26bf05cc-93a6-4915-833d-141b1d725006", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a7c463929ec4a87b6d38d07bca70503.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a7c463929ec4a87b6d38d07bca70503.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a7c463929ec4a87b6d38d07bca70503.jpg", "file_size": 13761, "is_delete": false, "file_type": 1, "original_file_name": "80090#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c463929ec4a87b6d38d07bca70503.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c463929ec4a87b6d38d07bca70503.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c463929ec4a87b6d38d07bca70503.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a7c463929ec4a87b6d38d07bca70503.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a7c463929ec4a87b6d38d07bca70503.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FuubgPR261AeSOa7ZcLDnXGaE8c=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.710386+00 2025-12-09 10:14:50.710391+00 6038 1056FWE#XL番禺调色 SPMX-20240815301182 \N \N \N 1 \N [{"file_id": "27f06c73-b3dc-4a57-a6ad-23ff4cf5a4d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6738aa34522474f90dea085f87b7605.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6738aa34522474f90dea085f87b7605.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6738aa34522474f90dea085f87b7605.jpg", "file_size": 12071, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6738aa34522474f90dea085f87b7605.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6738aa34522474f90dea085f87b7605.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6738aa34522474f90dea085f87b7605.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6738aa34522474f90dea085f87b7605.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6738aa34522474f90dea085f87b7605.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i02ypzJXhX1nGjZGuCXq35JwrCY=", "createTime": "2024-08-15 14:43:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.711667+00 2025-12-09 10:14:50.711671+00 6039 JSD0201#蓝色改后版本乱花坯布 SPMX-20240815301194 \N \N \N 1 \N [{"file_id": "58c0ab4b-50ee-42d9-b81a-a23576874d2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37bf5728a9a2426a976ab4bcdffe490a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37bf5728a9a2426a976ab4bcdffe490a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37bf5728a9a2426a976ab4bcdffe490a.jpg", "file_size": 59236, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#蓝色改后版本乱花坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bf5728a9a2426a976ab4bcdffe490a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bf5728a9a2426a976ab4bcdffe490a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bf5728a9a2426a976ab4bcdffe490a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37bf5728a9a2426a976ab4bcdffe490a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37bf5728a9a2426a976ab4bcdffe490a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Be19XfsIIMjeS5XKEKaRo5tuH_E=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.712974+00 2025-12-09 10:14:50.712979+00 6040 C272-1#上衣批布1号色 SPMX-20240815301185 \N \N \N 1 \N [{"file_id": "d6c51a25-226b-4378-8130-c9d32023f3d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b086bff10d444e680a579eb72592f9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b086bff10d444e680a579eb72592f9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b086bff10d444e680a579eb72592f9a.jpg", "file_size": 74863, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#上衣批布1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b086bff10d444e680a579eb72592f9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b086bff10d444e680a579eb72592f9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b086bff10d444e680a579eb72592f9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b086bff10d444e680a579eb72592f9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b086bff10d444e680a579eb72592f9a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkTmDCibstHAzqln6NMwOV9scZg=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.714288+00 2025-12-09 10:14:50.714292+00 6041 23-2102#A4前后片4XL SPMX-20240815301190 \N \N \N 1 \N [{"file_id": "86632a05-8b5f-400c-8f86-25f7bf9ed331", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6e9f25f70454ec7b87880f9c7747bd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6e9f25f70454ec7b87880f9c7747bd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6e9f25f70454ec7b87880f9c7747bd1.jpg", "file_size": 20742, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e9f25f70454ec7b87880f9c7747bd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e9f25f70454ec7b87880f9c7747bd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e9f25f70454ec7b87880f9c7747bd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6e9f25f70454ec7b87880f9c7747bd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6e9f25f70454ec7b87880f9c7747bd1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtXNsX5-ehmwhMsk7U56ro4HLE0=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.715591+00 2025-12-09 10:14:50.715595+00 6042 DH52042200#M黑 SPMX-20240815301193 \N \N \N 1 \N [{"file_id": "2b39bf09-1bad-4d93-946c-6503090cb67b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39367ea69f3940919c730f2c9fc74368.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39367ea69f3940919c730f2c9fc74368.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39367ea69f3940919c730f2c9fc74368.jpg", "file_size": 6723, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#M黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39367ea69f3940919c730f2c9fc74368.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39367ea69f3940919c730f2c9fc74368.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39367ea69f3940919c730f2c9fc74368.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39367ea69f3940919c730f2c9fc74368.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39367ea69f3940919c730f2c9fc74368.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-Ibg3p1j6i_n6HdSkuJiib1ABo=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.716997+00 2025-12-09 10:14:50.717001+00 6043 FHXGPK-034-1 SPMX-20240815301188 \N \N \N 1 \N [{"file_id": "4ed3cdbf-e649-43cc-b5b2-47b00429b057", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f8e903b4e154f73ac1260911254738d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f8e903b4e154f73ac1260911254738d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f8e903b4e154f73ac1260911254738d.jpg", "file_size": 25104, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-034-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8e903b4e154f73ac1260911254738d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8e903b4e154f73ac1260911254738d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8e903b4e154f73ac1260911254738d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f8e903b4e154f73ac1260911254738d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f8e903b4e154f73ac1260911254738d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aRy9Er2QbGb8bzSAjcZjhC23Szs=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.718311+00 2025-12-09 10:14:50.718314+00 6044 0003-14FWF#V5曲线 SPMX-20240815301191 \N \N \N 1 \N [{"file_id": "06193ddd-06c3-4d39-a291-260ac3556ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21a3561ddd5a45ffbee598884789ee2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21a3561ddd5a45ffbee598884789ee2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21a3561ddd5a45ffbee598884789ee2c.jpg", "file_size": 19458, "is_delete": false, "file_type": 1, "original_file_name": "0003-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a3561ddd5a45ffbee598884789ee2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a3561ddd5a45ffbee598884789ee2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a3561ddd5a45ffbee598884789ee2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21a3561ddd5a45ffbee598884789ee2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21a3561ddd5a45ffbee598884789ee2c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILdPqawY2andpAJEcakrbzV45Ig=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.71962+00 2025-12-09 10:14:50.719625+00 6045 LZ1223#童装T4号色 SPMX-20240815301187 \N \N \N 1 \N [{"file_id": "47bdc98a-8e8f-4fa7-abe8-dfe17c51ff18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1684b04dcb484df585c722a6258ad165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1684b04dcb484df585c722a6258ad165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1684b04dcb484df585c722a6258ad165.jpg", "file_size": 13892, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1684b04dcb484df585c722a6258ad165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1684b04dcb484df585c722a6258ad165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1684b04dcb484df585c722a6258ad165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1684b04dcb484df585c722a6258ad165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1684b04dcb484df585c722a6258ad165.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7Q622v2rim6yVrky3-mBLSUQ-c=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.720919+00 2025-12-09 10:14:50.720923+00 6046 HSH193FW#VS-D3 SPMX-20240815301189 \N \N \N 1 \N [{"file_id": "1a0cedb3-aa03-449f-9658-5a8a5308af76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e84689994bb7421f89f7d0c507e28eef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e84689994bb7421f89f7d0c507e28eef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e84689994bb7421f89f7d0c507e28eef.jpg", "file_size": 19724, "is_delete": false, "file_type": 1, "original_file_name": "HSH193FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84689994bb7421f89f7d0c507e28eef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84689994bb7421f89f7d0c507e28eef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84689994bb7421f89f7d0c507e28eef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e84689994bb7421f89f7d0c507e28eef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e84689994bb7421f89f7d0c507e28eef.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTW9IdVRY86vMu8ImWbF0uTlEEA=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.722218+00 2025-12-09 10:14:50.722222+00 6047 80091#前后幅 SPMX-20240815301184 \N \N \N 1 \N [{"file_id": "bb12e788-63ee-4f5e-97fb-723b2008ea11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80c03866e12a4cbd89e07b67297e20ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80c03866e12a4cbd89e07b67297e20ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80c03866e12a4cbd89e07b67297e20ac.jpg", "file_size": 20922, "is_delete": false, "file_type": 1, "original_file_name": "80091#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03866e12a4cbd89e07b67297e20ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03866e12a4cbd89e07b67297e20ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c03866e12a4cbd89e07b67297e20ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80c03866e12a4cbd89e07b67297e20ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80c03866e12a4cbd89e07b67297e20ac.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eELeXhbwdYEUfJntOf90reK6agk=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.72356+00 2025-12-09 10:14:50.723563+00 6048 LZ1223#童装T5号色 SPMX-20240815301196 \N \N \N 1 \N [{"file_id": "7f28de4d-2686-48fb-a881-5ffdb5a8bd31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd093370fc94bae8a403f1cac6ac9fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd093370fc94bae8a403f1cac6ac9fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd093370fc94bae8a403f1cac6ac9fa.jpg", "file_size": 14331, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd093370fc94bae8a403f1cac6ac9fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd093370fc94bae8a403f1cac6ac9fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd093370fc94bae8a403f1cac6ac9fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd093370fc94bae8a403f1cac6ac9fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd093370fc94bae8a403f1cac6ac9fa.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1UIQFVaWB589lKKX2BCHztI5xz4=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.724855+00 2025-12-09 10:14:50.72486+00 6049 LHJ9290-1#10号黑蓝 SPMX-20240815301186 \N \N \N 1 \N [{"file_id": "62c32526-2aa3-488d-a3d6-5db1c018cf5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fec0d13c9414dc79233482d22538e42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fec0d13c9414dc79233482d22538e42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fec0d13c9414dc79233482d22538e42.jpg", "file_size": 22096, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9290-1#10号黑蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec0d13c9414dc79233482d22538e42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec0d13c9414dc79233482d22538e42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec0d13c9414dc79233482d22538e42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fec0d13c9414dc79233482d22538e42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fec0d13c9414dc79233482d22538e42.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9w4Sre0HaOEfqt_G34KPRVDibx8=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.726337+00 2025-12-09 10:14:50.726342+00 6050 80091#袖子匹布 SPMX-20240815301195 \N \N \N 1 \N [{"file_id": "b432494d-5ed5-4649-9582-4d1c2032088e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bad0c557d49446a180824003ed1a4c36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bad0c557d49446a180824003ed1a4c36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bad0c557d49446a180824003ed1a4c36.jpg", "file_size": 23195, "is_delete": false, "file_type": 1, "original_file_name": "80091#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad0c557d49446a180824003ed1a4c36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad0c557d49446a180824003ed1a4c36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad0c557d49446a180824003ed1a4c36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bad0c557d49446a180824003ed1a4c36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bad0c557d49446a180824003ed1a4c36.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjkkMXnhPJnEpv5MGZKUfSj53rU=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.727666+00 2025-12-09 10:14:50.727671+00 6051 1056FWE#XL龙潭调色 SPMX-20240815301192 \N \N \N 1 \N [{"file_id": "5ff98983-5ac8-48f2-8405-9823dac0c0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5ec6c14a024468f9efaefdc5d8e3127.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5ec6c14a024468f9efaefdc5d8e3127.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5ec6c14a024468f9efaefdc5d8e3127.jpg", "file_size": 10812, "is_delete": false, "file_type": 1, "original_file_name": "1056FWE#XL龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec6c14a024468f9efaefdc5d8e3127.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec6c14a024468f9efaefdc5d8e3127.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec6c14a024468f9efaefdc5d8e3127.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5ec6c14a024468f9efaefdc5d8e3127.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5ec6c14a024468f9efaefdc5d8e3127.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-MCeqs5z6dzz3uRRJqqMWA3Lf2I=", "createTime": "2024-08-15 14:43:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.728962+00 2025-12-09 10:14:50.728966+00 6052 FHXGPK-035-1 SPMX-20240815301199 \N \N \N 1 \N [{"file_id": "3d84e841-c595-4a82-8359-6831df2266a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e99089e3e7434441ae661a3e415acaf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e99089e3e7434441ae661a3e415acaf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e99089e3e7434441ae661a3e415acaf0.jpg", "file_size": 32454, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-035-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99089e3e7434441ae661a3e415acaf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99089e3e7434441ae661a3e415acaf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99089e3e7434441ae661a3e415acaf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e99089e3e7434441ae661a3e415acaf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e99089e3e7434441ae661a3e415acaf0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udznUWeWiCy-tzo1tIYoBJ7gGH8=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.730278+00 2025-12-09 10:14:50.730282+00 6053 23-2102#A4短袖子3XL SPMX-20240815301198 \N \N \N 1 \N [{"file_id": "a7518a3b-65d3-41ca-9a42-095e6a1e61f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbc1c80138d9450cb18a518e8882d6bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbc1c80138d9450cb18a518e8882d6bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbc1c80138d9450cb18a518e8882d6bb.jpg", "file_size": 17320, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4短袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc1c80138d9450cb18a518e8882d6bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc1c80138d9450cb18a518e8882d6bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc1c80138d9450cb18a518e8882d6bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbc1c80138d9450cb18a518e8882d6bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbc1c80138d9450cb18a518e8882d6bb.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKBRww7jqv2rMCgr_8418FpZYDY=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.731565+00 2025-12-09 10:14:50.731569+00 6054 LHJ9290-1#11号红色打版红 SPMX-20240815301197 \N \N \N 1 \N [{"file_id": "f5a1186c-252a-42cf-b340-de3882817d83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccf55e69ba4141f3a8c13cab86444a50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccf55e69ba4141f3a8c13cab86444a50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccf55e69ba4141f3a8c13cab86444a50.jpg", "file_size": 21177, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9290-1#11号红色打版红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf55e69ba4141f3a8c13cab86444a50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf55e69ba4141f3a8c13cab86444a50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf55e69ba4141f3a8c13cab86444a50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccf55e69ba4141f3a8c13cab86444a50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccf55e69ba4141f3a8c13cab86444a50.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2rrGuPWM2zpPLiFuJGQBBL6Zedo=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.732853+00 2025-12-09 10:14:50.732858+00 6055 C272-1#上衣批布2号色 SPMX-20240815301201 \N \N \N 1 \N [{"file_id": "46ad1b60-5c9a-40f5-9241-354916a1dd2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c40852721d547d081bd81cd0646c640.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c40852721d547d081bd81cd0646c640.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c40852721d547d081bd81cd0646c640.jpg", "file_size": 74670, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#上衣批布2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40852721d547d081bd81cd0646c640.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40852721d547d081bd81cd0646c640.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c40852721d547d081bd81cd0646c640.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c40852721d547d081bd81cd0646c640.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c40852721d547d081bd81cd0646c640.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7uFC_GgORqeVo-yp2QAE7YrZvdU=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.734151+00 2025-12-09 10:14:50.734155+00 6056 HSH194FW#VS-D3 SPMX-20240815301200 \N \N \N 1 \N [{"file_id": "21472307-ae22-4cdb-96e4-ae7523d02a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21a1a011292d407d80e5465565df155b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21a1a011292d407d80e5465565df155b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21a1a011292d407d80e5465565df155b.jpg", "file_size": 16482, "is_delete": false, "file_type": 1, "original_file_name": "HSH194FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a1a011292d407d80e5465565df155b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a1a011292d407d80e5465565df155b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a1a011292d407d80e5465565df155b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21a1a011292d407d80e5465565df155b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21a1a011292d407d80e5465565df155b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-L6wVCab5uch2iAjq99__2wIOmA=", "createTime": "2024-08-15 14:43:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.735447+00 2025-12-09 10:14:50.735451+00 6057 0003-15FWE#VS-D3 SPMX-20240815301202 \N \N \N 1 \N [{"file_id": "fa45afd3-5a5e-4f0c-a9de-88ef228f5bd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "568e14f996134bb4a9c6618b25ec2195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "568e14f996134bb4a9c6618b25ec2195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "568e14f996134bb4a9c6618b25ec2195.jpg", "file_size": 15204, "is_delete": false, "file_type": 1, "original_file_name": "0003-15FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e14f996134bb4a9c6618b25ec2195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e14f996134bb4a9c6618b25ec2195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e14f996134bb4a9c6618b25ec2195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/568e14f996134bb4a9c6618b25ec2195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/568e14f996134bb4a9c6618b25ec2195.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HN2MMKCRgZ5t6ZTNKXjOmFDkq1Y=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.736739+00 2025-12-09 10:14:50.736743+00 6058 FHXGPK-036-1 SPMX-20240815301212 \N \N \N 1 \N [{"file_id": "93818da6-3376-4335-a7ba-99b701f6d38f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ed7f6d11a714e128debbf415bafc886.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ed7f6d11a714e128debbf415bafc886.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ed7f6d11a714e128debbf415bafc886.jpg", "file_size": 32727, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-036-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed7f6d11a714e128debbf415bafc886.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed7f6d11a714e128debbf415bafc886.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed7f6d11a714e128debbf415bafc886.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ed7f6d11a714e128debbf415bafc886.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ed7f6d11a714e128debbf415bafc886.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKkMXzZ6vtH_B46Y0pzc3vqC1h8=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.73805+00 2025-12-09 10:14:50.738054+00 6059 LZ1223#童装T6号色 SPMX-20240815301204 \N \N \N 1 \N [{"file_id": "762b18a5-32d2-472e-9134-8f69658ff8f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdde03851d4d499c99082f76356fa85b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdde03851d4d499c99082f76356fa85b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdde03851d4d499c99082f76356fa85b.jpg", "file_size": 13542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1223#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdde03851d4d499c99082f76356fa85b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdde03851d4d499c99082f76356fa85b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdde03851d4d499c99082f76356fa85b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdde03851d4d499c99082f76356fa85b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdde03851d4d499c99082f76356fa85b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iG_CRcy2KdRic0fqcAOEZDjmgk=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.739338+00 2025-12-09 10:14:50.739342+00 6060 C272-1#上衣批布3号色 SPMX-20240815301211 \N \N \N 1 \N [{"file_id": "c41d9437-e4f2-4df1-8651-707b43576c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c71f4e734f444e46b9c0eaad24af1787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c71f4e734f444e46b9c0eaad24af1787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c71f4e734f444e46b9c0eaad24af1787.jpg", "file_size": 72994, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#上衣批布3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71f4e734f444e46b9c0eaad24af1787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71f4e734f444e46b9c0eaad24af1787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71f4e734f444e46b9c0eaad24af1787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c71f4e734f444e46b9c0eaad24af1787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c71f4e734f444e46b9c0eaad24af1787.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-jnzY7XLVFqNOf5e99CPut60H8=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.740644+00 2025-12-09 10:14:50.740649+00 6061 JSD0201#黑色-满幅乱花 SPMX-20240815301203 \N \N \N 1 \N [{"file_id": "b12ca229-bdde-408c-af80-2cbc04fc9f01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e0b02505ea24759a314f6a02e133217.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e0b02505ea24759a314f6a02e133217.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e0b02505ea24759a314f6a02e133217.jpg", "file_size": 51908, "is_delete": false, "file_type": 1, "original_file_name": "JSD0201#黑色-满幅乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0b02505ea24759a314f6a02e133217.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0b02505ea24759a314f6a02e133217.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0b02505ea24759a314f6a02e133217.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e0b02505ea24759a314f6a02e133217.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e0b02505ea24759a314f6a02e133217.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uknrJrHDtvRz2xrn6-9bL86YiHE=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.741927+00 2025-12-09 10:14:50.741933+00 6062 0003-15FWF#V5曲线 SPMX-20240815301213 \N \N \N 1 \N [{"file_id": "8227e7db-1871-425a-aa4d-d5a57ba922b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "793b87ced5d34a6ba02978cb26b9a4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "793b87ced5d34a6ba02978cb26b9a4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "793b87ced5d34a6ba02978cb26b9a4e6.jpg", "file_size": 15006, "is_delete": false, "file_type": 1, "original_file_name": "0003-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793b87ced5d34a6ba02978cb26b9a4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793b87ced5d34a6ba02978cb26b9a4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793b87ced5d34a6ba02978cb26b9a4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/793b87ced5d34a6ba02978cb26b9a4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/793b87ced5d34a6ba02978cb26b9a4e6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M15J6VznlbyyyVpq97vUC4T2QMM=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.743247+00 2025-12-09 10:14:50.743252+00 6063 LZ1224#童装T1号色 SPMX-20240815301216 \N \N \N 1 \N [{"file_id": "4abd33f6-d209-4488-92e9-8bde155bde35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d6cf2c85eea4fd480e75a7b80a2abb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d6cf2c85eea4fd480e75a7b80a2abb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d6cf2c85eea4fd480e75a7b80a2abb2.jpg", "file_size": 16995, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6cf2c85eea4fd480e75a7b80a2abb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6cf2c85eea4fd480e75a7b80a2abb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6cf2c85eea4fd480e75a7b80a2abb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d6cf2c85eea4fd480e75a7b80a2abb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d6cf2c85eea4fd480e75a7b80a2abb2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-qvFA4KCQkYLRSMXMkVi7x3TsY=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.744539+00 2025-12-09 10:14:50.744543+00 6064 80092#前后幅 SPMX-20240815301207 \N \N \N 1 \N [{"file_id": "065598bd-2ff4-4872-a5de-aef094f11d54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eefc192522240b48e1318fd53a39908.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eefc192522240b48e1318fd53a39908.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eefc192522240b48e1318fd53a39908.jpg", "file_size": 19793, "is_delete": false, "file_type": 1, "original_file_name": "80092#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eefc192522240b48e1318fd53a39908.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eefc192522240b48e1318fd53a39908.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eefc192522240b48e1318fd53a39908.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eefc192522240b48e1318fd53a39908.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eefc192522240b48e1318fd53a39908.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhl8t_TAAkoFJYwa6Yi8xvmsyrw=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.74586+00 2025-12-09 10:14:50.745864+00 6065 1056TZ#枣红色 SPMX-20240815301217 \N \N \N 1 \N [{"file_id": "45e79098-3446-4370-ae85-92cb1b71a724", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceaed002cc8a4a2db33fae8824caea66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceaed002cc8a4a2db33fae8824caea66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceaed002cc8a4a2db33fae8824caea66.jpg", "file_size": 17274, "is_delete": false, "file_type": 1, "original_file_name": "1056TZ#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaed002cc8a4a2db33fae8824caea66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaed002cc8a4a2db33fae8824caea66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceaed002cc8a4a2db33fae8824caea66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceaed002cc8a4a2db33fae8824caea66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceaed002cc8a4a2db33fae8824caea66.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1rBkxznHGaa9NsRi9tjFAUamJc=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.747145+00 2025-12-09 10:14:50.74715+00 6066 DH52042200#S粉 SPMX-20240815301205 \N \N \N 1 \N [{"file_id": "a9776db7-a73a-4de3-9f3b-ec657f077d97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bffea3bd50554f21978b13fc21fafb75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bffea3bd50554f21978b13fc21fafb75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bffea3bd50554f21978b13fc21fafb75.jpg", "file_size": 5896, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#S粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffea3bd50554f21978b13fc21fafb75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffea3bd50554f21978b13fc21fafb75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffea3bd50554f21978b13fc21fafb75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bffea3bd50554f21978b13fc21fafb75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bffea3bd50554f21978b13fc21fafb75.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uUu7k3TL-ANqFZ5-ELH9eqRh0ls=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.74844+00 2025-12-09 10:14:50.748443+00 6067 23-2102#A4短袖子4XL SPMX-20240815301210 \N \N \N 1 \N [{"file_id": "ca4f3028-da40-47b5-817d-a9cf1b05bb5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd343482cd2e4e629be2070623098bc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd343482cd2e4e629be2070623098bc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd343482cd2e4e629be2070623098bc3.jpg", "file_size": 16176, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4短袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd343482cd2e4e629be2070623098bc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd343482cd2e4e629be2070623098bc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd343482cd2e4e629be2070623098bc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd343482cd2e4e629be2070623098bc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd343482cd2e4e629be2070623098bc3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Ucd1vkeNXsDTaAMuCT6_FcL7WE=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.749697+00 2025-12-09 10:14:50.749701+00 6068 LHJ9290-1#11号红色打版过去的 SPMX-20240815301208 \N \N \N 1 \N [{"file_id": "24de7052-c992-4552-8bad-93299073db1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a143d40049a4e15a5b6498dac559d99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a143d40049a4e15a5b6498dac559d99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a143d40049a4e15a5b6498dac559d99.jpg", "file_size": 21995, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9290-1#11号红色打版过去的.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a143d40049a4e15a5b6498dac559d99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a143d40049a4e15a5b6498dac559d99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a143d40049a4e15a5b6498dac559d99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a143d40049a4e15a5b6498dac559d99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a143d40049a4e15a5b6498dac559d99.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dToldvOVxG3N-DIkFWfslyIa78U=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.75101+00 2025-12-09 10:14:50.751015+00 6069 1056TZ#亮黄色 SPMX-20240815301206 \N \N \N 1 \N [{"file_id": "30728a3b-6d54-4b7c-bafa-13010ed11381", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81661263390c4eecb6d4be9d4caf57a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81661263390c4eecb6d4be9d4caf57a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81661263390c4eecb6d4be9d4caf57a6.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "1056TZ#亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81661263390c4eecb6d4be9d4caf57a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81661263390c4eecb6d4be9d4caf57a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81661263390c4eecb6d4be9d4caf57a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81661263390c4eecb6d4be9d4caf57a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81661263390c4eecb6d4be9d4caf57a6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJ2qM8XQK0zBnxwMTc_Gzt2VALs=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.752295+00 2025-12-09 10:14:50.752299+00 6070 HSH195FW#VS-D3 SPMX-20240815301209 \N \N \N 1 \N [{"file_id": "da7a8820-9f68-4193-a933-48fb8fc3a0a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6408a342fbc14097acbbae78dc98f364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6408a342fbc14097acbbae78dc98f364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6408a342fbc14097acbbae78dc98f364.jpg", "file_size": 19099, "is_delete": false, "file_type": 1, "original_file_name": "HSH195FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6408a342fbc14097acbbae78dc98f364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6408a342fbc14097acbbae78dc98f364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6408a342fbc14097acbbae78dc98f364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6408a342fbc14097acbbae78dc98f364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6408a342fbc14097acbbae78dc98f364.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcIhqiIpQtrC4O7TyZt-p64BSE4=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.753591+00 2025-12-09 10:14:50.753595+00 6071 DH52042200#S黑 SPMX-20240815301214 \N \N \N 1 \N [{"file_id": "c4624e06-f504-4424-bbe1-7e19e9ce6e82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eaaf6b75fe643f99bf414a1fd788d02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eaaf6b75fe643f99bf414a1fd788d02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eaaf6b75fe643f99bf414a1fd788d02.jpg", "file_size": 6053, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#S黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaaf6b75fe643f99bf414a1fd788d02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaaf6b75fe643f99bf414a1fd788d02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eaaf6b75fe643f99bf414a1fd788d02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eaaf6b75fe643f99bf414a1fd788d02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eaaf6b75fe643f99bf414a1fd788d02.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:13kbpBEl6CVk8P-Dfi6Prw6sZQc=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.754895+00 2025-12-09 10:14:50.754899+00 6072 JSF1127#RC23 SPMX-20240815301215 \N \N \N 1 \N [{"file_id": "18a91065-f7fc-4627-b8d8-c43828be9d92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23b2cf726a074b838fcbd400ede9d8d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23b2cf726a074b838fcbd400ede9d8d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23b2cf726a074b838fcbd400ede9d8d6.jpg", "file_size": 34632, "is_delete": false, "file_type": 1, "original_file_name": "JSF1127#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b2cf726a074b838fcbd400ede9d8d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b2cf726a074b838fcbd400ede9d8d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b2cf726a074b838fcbd400ede9d8d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23b2cf726a074b838fcbd400ede9d8d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23b2cf726a074b838fcbd400ede9d8d6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utNAvFLrNmgz7nLpCq58Dgge9Dc=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.756201+00 2025-12-09 10:14:50.756205+00 6073 FHXGPK-036-2 SPMX-20240815301224 \N \N \N 1 \N [{"file_id": "c128d921-d0a5-4119-849a-7fc030c96813", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcab08dce947462f8f5e984589e360f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcab08dce947462f8f5e984589e360f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcab08dce947462f8f5e984589e360f0.jpg", "file_size": 29991, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-036-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcab08dce947462f8f5e984589e360f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcab08dce947462f8f5e984589e360f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcab08dce947462f8f5e984589e360f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcab08dce947462f8f5e984589e360f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcab08dce947462f8f5e984589e360f0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ogxk64C254SeJgzvUI528KSZUkA=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.757479+00 2025-12-09 10:14:50.757483+00 6074 1056TZ#橘红色 SPMX-20240815301228 \N \N \N 1 \N [{"file_id": "658d33b6-7aec-4187-a0c5-5b0331f862ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a0a66ceacb84be5a6f3a4909d342f2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a0a66ceacb84be5a6f3a4909d342f2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a0a66ceacb84be5a6f3a4909d342f2e.jpg", "file_size": 16789, "is_delete": false, "file_type": 1, "original_file_name": "1056TZ#橘红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0a66ceacb84be5a6f3a4909d342f2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0a66ceacb84be5a6f3a4909d342f2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0a66ceacb84be5a6f3a4909d342f2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a0a66ceacb84be5a6f3a4909d342f2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a0a66ceacb84be5a6f3a4909d342f2e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5cunuyT224a0TxFrwa9gW4nFb8=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.75877+00 2025-12-09 10:14:50.758774+00 6075 80092#袖子匹布 SPMX-20240815301218 \N \N \N 1 \N [{"file_id": "9274a674-22b9-4b21-a421-f4ba8fab20f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a02b0ec3261340b6badfe2fd79723f3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a02b0ec3261340b6badfe2fd79723f3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a02b0ec3261340b6badfe2fd79723f3a.jpg", "file_size": 14844, "is_delete": false, "file_type": 1, "original_file_name": "80092#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a02b0ec3261340b6badfe2fd79723f3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a02b0ec3261340b6badfe2fd79723f3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a02b0ec3261340b6badfe2fd79723f3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a02b0ec3261340b6badfe2fd79723f3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a02b0ec3261340b6badfe2fd79723f3a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yY1-MiZn_bV9X87VCsti_E_j-dM=", "createTime": "2024-08-15 14:43:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.760048+00 2025-12-09 10:14:50.760052+00 6076 HSH196FW#VS-D3 SPMX-20240815301220 \N \N \N 1 \N [{"file_id": "116e14c2-c086-4c5b-af46-64d189947e78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdce487bb9fb4b25823429a7ab4870d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdce487bb9fb4b25823429a7ab4870d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdce487bb9fb4b25823429a7ab4870d2.jpg", "file_size": 24272, "is_delete": false, "file_type": 1, "original_file_name": "HSH196FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce487bb9fb4b25823429a7ab4870d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce487bb9fb4b25823429a7ab4870d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce487bb9fb4b25823429a7ab4870d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdce487bb9fb4b25823429a7ab4870d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdce487bb9fb4b25823429a7ab4870d2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9nQzbYS6CqOvFNKKnG3WFV4KAk=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.76133+00 2025-12-09 10:14:50.761334+00 6077 0003-16FWE#杏底VS-D3 SPMX-20240815301223 \N \N \N 1 \N [{"file_id": "f04827d3-1a71-42c8-a2cd-6ac2180c4180", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d661592b407424cac28ca71820143ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d661592b407424cac28ca71820143ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d661592b407424cac28ca71820143ac.jpg", "file_size": 10880, "is_delete": false, "file_type": 1, "original_file_name": "0003-16FWE#杏底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d661592b407424cac28ca71820143ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d661592b407424cac28ca71820143ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d661592b407424cac28ca71820143ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d661592b407424cac28ca71820143ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d661592b407424cac28ca71820143ac.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SgmwTQE4eOezQZgaBrffv9hwTqA=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.762627+00 2025-12-09 10:14:50.762631+00 6078 23-2102#A4袖口包条3XL SPMX-20240815301232 \N \N \N 1 \N [{"file_id": "54f906b6-a015-407d-9010-9db41e42e86b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b0af32ef12e499e88952c3f6d5d0621.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b0af32ef12e499e88952c3f6d5d0621.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b0af32ef12e499e88952c3f6d5d0621.jpg", "file_size": 13433, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0af32ef12e499e88952c3f6d5d0621.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0af32ef12e499e88952c3f6d5d0621.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0af32ef12e499e88952c3f6d5d0621.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b0af32ef12e499e88952c3f6d5d0621.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b0af32ef12e499e88952c3f6d5d0621.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihuX6XVsASv9lZCcMYH7IGvRl78=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.76392+00 2025-12-09 10:14:50.763923+00 6079 DH52042200#XS粉 SPMX-20240815301225 \N \N \N 1 \N [{"file_id": "487c21bd-bde2-423d-ae70-bb0e47f0b946", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa6b4d2fd56e41e889f3e86cf5098c1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa6b4d2fd56e41e889f3e86cf5098c1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa6b4d2fd56e41e889f3e86cf5098c1c.jpg", "file_size": 6413, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#XS粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6b4d2fd56e41e889f3e86cf5098c1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6b4d2fd56e41e889f3e86cf5098c1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa6b4d2fd56e41e889f3e86cf5098c1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa6b4d2fd56e41e889f3e86cf5098c1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa6b4d2fd56e41e889f3e86cf5098c1c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JlhhEAnvz7jEJpjJj0iAvTsUEY=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.765221+00 2025-12-09 10:14:50.765225+00 6080 80093#前后幅 SPMX-20240815301229 \N \N \N 1 \N [{"file_id": "7061761e-b0b3-46fe-b5a0-c301489a319b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d114b9f797d4a0889dcf3cecb88a06b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d114b9f797d4a0889dcf3cecb88a06b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d114b9f797d4a0889dcf3cecb88a06b.jpg", "file_size": 19594, "is_delete": false, "file_type": 1, "original_file_name": "80093#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d114b9f797d4a0889dcf3cecb88a06b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d114b9f797d4a0889dcf3cecb88a06b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d114b9f797d4a0889dcf3cecb88a06b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d114b9f797d4a0889dcf3cecb88a06b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d114b9f797d4a0889dcf3cecb88a06b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q3cbzFWMrWpHTTjDuwJnnuT3MUc=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.766495+00 2025-12-09 10:14:50.766499+00 6081 LHJ9290-1#1号黑色 SPMX-20240815301219 \N \N \N 1 \N [{"file_id": "c0b5ac17-e11d-4cfe-b3ef-46a476732f18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d65f7e970f5c46bbb67853bb21ce0ed4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d65f7e970f5c46bbb67853bb21ce0ed4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d65f7e970f5c46bbb67853bb21ce0ed4.jpg", "file_size": 21716, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9290-1#1号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65f7e970f5c46bbb67853bb21ce0ed4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65f7e970f5c46bbb67853bb21ce0ed4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65f7e970f5c46bbb67853bb21ce0ed4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d65f7e970f5c46bbb67853bb21ce0ed4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d65f7e970f5c46bbb67853bb21ce0ed4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VYZy-HSzDeL_LuRpKHKn9wQSCwo=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.767834+00 2025-12-09 10:14:50.767838+00 6082 C272-1#上衣批布5号色 SPMX-20240815301233 \N \N \N 1 \N [{"file_id": "e9467dfe-c91f-4f36-aa4b-281f1fd7a1cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05d235fda5174df68d5167001628351f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05d235fda5174df68d5167001628351f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05d235fda5174df68d5167001628351f.jpg", "file_size": 64082, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#上衣批布5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d235fda5174df68d5167001628351f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d235fda5174df68d5167001628351f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d235fda5174df68d5167001628351f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05d235fda5174df68d5167001628351f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05d235fda5174df68d5167001628351f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wrh0dRAroAfsF2ytz5QnmmNzMKQ=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.769148+00 2025-12-09 10:14:50.769153+00 6083 C272-1#上衣批布4号色 SPMX-20240815301222 \N \N \N 1 \N [{"file_id": "d8078ab3-4581-4db9-8897-140e2caf68f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6283ad79a58b452f8fb54ae8cd02f138.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6283ad79a58b452f8fb54ae8cd02f138.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6283ad79a58b452f8fb54ae8cd02f138.jpg", "file_size": 67805, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#上衣批布4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6283ad79a58b452f8fb54ae8cd02f138.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6283ad79a58b452f8fb54ae8cd02f138.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6283ad79a58b452f8fb54ae8cd02f138.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6283ad79a58b452f8fb54ae8cd02f138.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6283ad79a58b452f8fb54ae8cd02f138.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mq73woRvPCdEm6uG2u64SsArBgA=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.77044+00 2025-12-09 10:14:50.770444+00 6084 JSFB2007#RC23 SPMX-20240815301227 \N \N \N 1 \N [{"file_id": "1265b9e7-89e7-4d1c-a9c7-77c12d347e07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2dc3e8e4b544768cf3e8f992ced6b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2dc3e8e4b544768cf3e8f992ced6b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2dc3e8e4b544768cf3e8f992ced6b9.jpg", "file_size": 50115, "is_delete": false, "file_type": 1, "original_file_name": "JSFB2007#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2dc3e8e4b544768cf3e8f992ced6b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2dc3e8e4b544768cf3e8f992ced6b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2dc3e8e4b544768cf3e8f992ced6b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2dc3e8e4b544768cf3e8f992ced6b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2dc3e8e4b544768cf3e8f992ced6b9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwUEAzEVCciIOTP8JxtD9sPANZQ=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.771711+00 2025-12-09 10:14:50.771715+00 6085 23-2102#A4袖口3XL SPMX-20240815301221 \N \N \N 1 \N [{"file_id": "1decd277-dcec-4b2a-90bb-a35f6cca601c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d3464e9daee471ab8c342856f0ea50e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d3464e9daee471ab8c342856f0ea50e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d3464e9daee471ab8c342856f0ea50e.jpg", "file_size": 16337, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3464e9daee471ab8c342856f0ea50e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3464e9daee471ab8c342856f0ea50e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3464e9daee471ab8c342856f0ea50e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d3464e9daee471ab8c342856f0ea50e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d3464e9daee471ab8c342856f0ea50e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KrPwHUe8KjEB0ewpj-xHSSuRJc=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.77302+00 2025-12-09 10:14:50.773024+00 6086 LHJ9291#25号土黄 SPMX-20240815301230 \N \N \N 1 \N [{"file_id": "21654a17-84b3-478b-a39f-6314453f6c89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1965b0a804c64a129ebaebd622d2a153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1965b0a804c64a129ebaebd622d2a153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1965b0a804c64a129ebaebd622d2a153.jpg", "file_size": 19297, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9291#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965b0a804c64a129ebaebd622d2a153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965b0a804c64a129ebaebd622d2a153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965b0a804c64a129ebaebd622d2a153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1965b0a804c64a129ebaebd622d2a153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1965b0a804c64a129ebaebd622d2a153.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8ifkOejemMaF2d3dfvFnzbhgFk=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.774303+00 2025-12-09 10:14:50.774307+00 6087 LZ1224#童装T2号色 SPMX-20240815301226 \N \N \N 1 \N [{"file_id": "06b43453-dc17-4f9e-b915-719f121f6ae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18a5598ba8214c3380f1c653cf575fa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18a5598ba8214c3380f1c653cf575fa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18a5598ba8214c3380f1c653cf575fa0.jpg", "file_size": 17729, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a5598ba8214c3380f1c653cf575fa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a5598ba8214c3380f1c653cf575fa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a5598ba8214c3380f1c653cf575fa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18a5598ba8214c3380f1c653cf575fa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18a5598ba8214c3380f1c653cf575fa0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxoLNLC5lA2-FItqFwuz4L6j0_o=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.775684+00 2025-12-09 10:14:50.775688+00 6088 HSH197FW#VS-D3 SPMX-20240815301231 \N \N \N 1 \N [{"file_id": "5eb071f0-0f07-4468-8091-d077d44fd7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg", "file_size": 13048, "is_delete": false, "file_type": 1, "original_file_name": "HSH197FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec27bd7bffdf4ee6bf83aaa80d97f0c9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48hGdzciV_SKD2Cv-SDuodmxlMU=", "createTime": "2024-08-15 14:43:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.776989+00 2025-12-09 10:14:50.776993+00 6089 LZ1224#童装T3号色 SPMX-20240815301237 \N \N \N 1 \N [{"file_id": "e54538df-deaa-4d6f-a6a9-c49d79fa9bef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0953c8ccb804a8da84cc59af869e771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0953c8ccb804a8da84cc59af869e771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0953c8ccb804a8da84cc59af869e771.jpg", "file_size": 16820, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0953c8ccb804a8da84cc59af869e771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0953c8ccb804a8da84cc59af869e771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0953c8ccb804a8da84cc59af869e771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0953c8ccb804a8da84cc59af869e771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0953c8ccb804a8da84cc59af869e771.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHt8T3mwuVgDaK5CMSQkU8dmmUE=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.778335+00 2025-12-09 10:14:50.778339+00 6090 0003-16FWF#V5曲线 SPMX-20240815301234 \N \N \N 1 \N [{"file_id": "cfab6861-a168-4b08-b4d8-dfbb0baae2d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9327da94629740d4833471071c0aad65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9327da94629740d4833471071c0aad65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9327da94629740d4833471071c0aad65.jpg", "file_size": 13765, "is_delete": false, "file_type": 1, "original_file_name": "0003-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9327da94629740d4833471071c0aad65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9327da94629740d4833471071c0aad65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9327da94629740d4833471071c0aad65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9327da94629740d4833471071c0aad65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9327da94629740d4833471071c0aad65.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oIRtVQj5QbOROFf78HwGeW7ywc=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.779621+00 2025-12-09 10:14:50.779624+00 6091 LHJ9291#7号红色 SPMX-20240815301239 \N \N \N 1 \N [{"file_id": "c2d32690-e8c4-425c-95b3-9ef2fda78aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b00c8c0b4b94367a1ef216606499dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b00c8c0b4b94367a1ef216606499dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b00c8c0b4b94367a1ef216606499dfb.jpg", "file_size": 21960, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9291#7号红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b00c8c0b4b94367a1ef216606499dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b00c8c0b4b94367a1ef216606499dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b00c8c0b4b94367a1ef216606499dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b00c8c0b4b94367a1ef216606499dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b00c8c0b4b94367a1ef216606499dfb.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvUsXxnWsBnqtZPvYb1cHPwPn0Q=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.780924+00 2025-12-09 10:14:50.780928+00 6092 FHXGPK-036-3 SPMX-20240815301236 \N \N \N 1 \N [{"file_id": "ef80f70f-18b9-4f25-a665-51aede8d59e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "063cd8e482da433db5006806e74185e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "063cd8e482da433db5006806e74185e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "063cd8e482da433db5006806e74185e0.jpg", "file_size": 32363, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-036-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063cd8e482da433db5006806e74185e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063cd8e482da433db5006806e74185e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063cd8e482da433db5006806e74185e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/063cd8e482da433db5006806e74185e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/063cd8e482da433db5006806e74185e0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_iV7lY-CQI2oJDrQj1_lmnFSNM=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.782203+00 2025-12-09 10:14:50.782208+00 6093 DH52042200#XS黑 SPMX-20240815301235 \N \N \N 1 \N [{"file_id": "171a1080-88eb-4c9f-8363-c7d6cb21d041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bc31020ee464f7d84e47607b6da0771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bc31020ee464f7d84e47607b6da0771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bc31020ee464f7d84e47607b6da0771.jpg", "file_size": 6052, "is_delete": false, "file_type": 1, "original_file_name": "DH52042200#XS黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc31020ee464f7d84e47607b6da0771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc31020ee464f7d84e47607b6da0771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc31020ee464f7d84e47607b6da0771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bc31020ee464f7d84e47607b6da0771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bc31020ee464f7d84e47607b6da0771.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h42Q8sVN0X7BYeG1JTyamUuMrLA=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.783488+00 2025-12-09 10:14:50.783493+00 6094 JT0001-1#WJC22 SPMX-20240815301238 \N \N \N 1 \N [{"file_id": "4774dae0-6d09-43fd-a1b0-867ce56c76c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "799822aeeb27415a82552b5ef5bf951d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "799822aeeb27415a82552b5ef5bf951d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "799822aeeb27415a82552b5ef5bf951d.jpg", "file_size": 20660, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/799822aeeb27415a82552b5ef5bf951d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/799822aeeb27415a82552b5ef5bf951d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/799822aeeb27415a82552b5ef5bf951d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/799822aeeb27415a82552b5ef5bf951d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/799822aeeb27415a82552b5ef5bf951d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXTcCFqdveSrrknnm0S5m9JWAU8=", "createTime": "2024-08-15 14:43:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.78478+00 2025-12-09 10:14:50.784785+00 6095 HSH198FW#VS-D3 SPMX-20240815301241 \N \N \N 1 \N [{"file_id": "ec7f3a00-d3d9-4c17-aec4-8af3243160d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e884d200faab40a592262f328c901ea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e884d200faab40a592262f328c901ea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e884d200faab40a592262f328c901ea8.jpg", "file_size": 17811, "is_delete": false, "file_type": 1, "original_file_name": "HSH198FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884d200faab40a592262f328c901ea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884d200faab40a592262f328c901ea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884d200faab40a592262f328c901ea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e884d200faab40a592262f328c901ea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e884d200faab40a592262f328c901ea8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QlhDlaVJY_HvG1AmdLH2yo8718=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.786065+00 2025-12-09 10:14:50.78607+00 6096 0003-17FWE#VS-D3 SPMX-20240815301247 \N \N \N 1 \N [{"file_id": "556fdbd9-53c9-4aec-b6b4-2084f49ec415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18e667c3b72748bda2f0853074bb6d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18e667c3b72748bda2f0853074bb6d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18e667c3b72748bda2f0853074bb6d42.jpg", "file_size": 16550, "is_delete": false, "file_type": 1, "original_file_name": "0003-17FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e667c3b72748bda2f0853074bb6d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e667c3b72748bda2f0853074bb6d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e667c3b72748bda2f0853074bb6d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18e667c3b72748bda2f0853074bb6d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18e667c3b72748bda2f0853074bb6d42.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DIt2bBKVMbyCcabyYh_zBpTtS4=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.78741+00 2025-12-09 10:14:50.787415+00 6097 1056TZ#黑色 SPMX-20240815301251 \N \N \N 1 \N [{"file_id": "09323213-f478-4a5d-8a11-757266493301", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee7436edf49141b98fac07514a6cb8ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee7436edf49141b98fac07514a6cb8ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee7436edf49141b98fac07514a6cb8ca.jpg", "file_size": 18725, "is_delete": false, "file_type": 1, "original_file_name": "1056TZ#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7436edf49141b98fac07514a6cb8ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7436edf49141b98fac07514a6cb8ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7436edf49141b98fac07514a6cb8ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee7436edf49141b98fac07514a6cb8ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee7436edf49141b98fac07514a6cb8ca.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pH7-8KLI5_JaG_VMGjwXc2PuNO0=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.788725+00 2025-12-09 10:14:50.78873+00 6098 JT0001-2#WJC22 SPMX-20240815301248 \N \N \N 1 \N [{"file_id": "44e0c598-0d26-4cf1-8ddf-4f7ed1cdfa22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e2589dfe8e94025bf08384941dcf81b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e2589dfe8e94025bf08384941dcf81b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e2589dfe8e94025bf08384941dcf81b.jpg", "file_size": 23607, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e2589dfe8e94025bf08384941dcf81b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e2589dfe8e94025bf08384941dcf81b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e2589dfe8e94025bf08384941dcf81b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e2589dfe8e94025bf08384941dcf81b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e2589dfe8e94025bf08384941dcf81b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5rdVDju1J5VIXb_-sUCAiymH9Ow=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.79001+00 2025-12-09 10:14:50.790014+00 6099 23-2102#A4长袖子3XL SPMX-20240815301245 \N \N \N 1 \N [{"file_id": "20ff78b9-45e7-400a-8359-2bbb47548e5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e80eae67c0704c01a088e64045ca4531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e80eae67c0704c01a088e64045ca4531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e80eae67c0704c01a088e64045ca4531.jpg", "file_size": 31761, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80eae67c0704c01a088e64045ca4531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80eae67c0704c01a088e64045ca4531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80eae67c0704c01a088e64045ca4531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e80eae67c0704c01a088e64045ca4531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e80eae67c0704c01a088e64045ca4531.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hie0hlerjPhXa1gNOwE1aauKc9A=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.791308+00 2025-12-09 10:14:50.791312+00 6100 DH52042338TFW#L SPMX-20240815301246 \N \N \N 1 \N [{"file_id": "f77d2636-024a-4532-b1da-1bbc64a6af4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "423c5d18a1c44298a869f00d8900424f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "423c5d18a1c44298a869f00d8900424f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "423c5d18a1c44298a869f00d8900424f.jpg", "file_size": 8714, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c5d18a1c44298a869f00d8900424f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c5d18a1c44298a869f00d8900424f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c5d18a1c44298a869f00d8900424f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/423c5d18a1c44298a869f00d8900424f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/423c5d18a1c44298a869f00d8900424f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQE7fYarSI0AKoeSRE_ovxUw9Kc=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.792575+00 2025-12-09 10:14:50.792579+00 6101 1056TZ#藏青色 SPMX-20240815301240 \N \N \N 1 \N [{"file_id": "46966777-dd12-4b47-8b6f-834ac9c22a55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e11e44f1779247cc85bf2bb094d975d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e11e44f1779247cc85bf2bb094d975d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e11e44f1779247cc85bf2bb094d975d1.jpg", "file_size": 18674, "is_delete": false, "file_type": 1, "original_file_name": "1056TZ#藏青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11e44f1779247cc85bf2bb094d975d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11e44f1779247cc85bf2bb094d975d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11e44f1779247cc85bf2bb094d975d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e11e44f1779247cc85bf2bb094d975d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e11e44f1779247cc85bf2bb094d975d1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_hnxxTJEGOA21hnoBQQiNKA-io=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.793869+00 2025-12-09 10:14:50.793873+00 6102 FHXGPK-037-1 SPMX-20240815301249 \N \N \N 1 \N [{"file_id": "fd8cc5b9-4de4-4dae-80f9-c6890c1f9cfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46fd588994ab4a8884f4eb620f6cb4d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46fd588994ab4a8884f4eb620f6cb4d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46fd588994ab4a8884f4eb620f6cb4d7.jpg", "file_size": 33950, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-037-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fd588994ab4a8884f4eb620f6cb4d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fd588994ab4a8884f4eb620f6cb4d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fd588994ab4a8884f4eb620f6cb4d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46fd588994ab4a8884f4eb620f6cb4d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46fd588994ab4a8884f4eb620f6cb4d7.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0DVXfDO7bAtgKIuya-6oMVmsRQ=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.795157+00 2025-12-09 10:14:50.795161+00 6103 C272-1#裙子单边定位1号色 SPMX-20240815301242 \N \N \N 1 \N [{"file_id": "f8a36838-8eb9-4bda-853d-8faa5ed86abc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9952b636264744c38ff20923cb612d19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9952b636264744c38ff20923cb612d19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9952b636264744c38ff20923cb612d19.jpg", "file_size": 32854, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#裙子单边定位1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9952b636264744c38ff20923cb612d19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9952b636264744c38ff20923cb612d19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9952b636264744c38ff20923cb612d19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9952b636264744c38ff20923cb612d19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9952b636264744c38ff20923cb612d19.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nauldrb2CC5cZTaoDPek4bpT9HM=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.796456+00 2025-12-09 10:14:50.79646+00 6104 LHJ9291#9号绿色 SPMX-20240815301250 \N \N \N 1 \N [{"file_id": "93d10fa7-588d-4806-8acc-97d78ce92548", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f696129d8564a08be3550d7ef0b4621.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f696129d8564a08be3550d7ef0b4621.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f696129d8564a08be3550d7ef0b4621.jpg", "file_size": 20336, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9291#9号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f696129d8564a08be3550d7ef0b4621.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f696129d8564a08be3550d7ef0b4621.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f696129d8564a08be3550d7ef0b4621.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f696129d8564a08be3550d7ef0b4621.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f696129d8564a08be3550d7ef0b4621.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:viSiRKh4dLiqVqnCd63xXlroRgo=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.797729+00 2025-12-09 10:14:50.797733+00 6105 LZ1224#童装T4号色 SPMX-20240815301243 \N \N \N 1 \N [{"file_id": "82c78aba-3148-4ccc-894a-1d0730cacab2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43a4180c5281420685a3b4e44751c992.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43a4180c5281420685a3b4e44751c992.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43a4180c5281420685a3b4e44751c992.jpg", "file_size": 15798, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4180c5281420685a3b4e44751c992.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4180c5281420685a3b4e44751c992.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4180c5281420685a3b4e44751c992.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43a4180c5281420685a3b4e44751c992.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43a4180c5281420685a3b4e44751c992.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:435pMFaAeippGQfYiq-Y11EUJ_Y=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.79902+00 2025-12-09 10:14:50.799025+00 6106 80093#袖子匹布 SPMX-20240815301244 \N \N \N 1 \N [{"file_id": "2a2274cb-bc8a-48ab-aaf6-74ec87bea2e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00b47ea1b98f4b56b4c053c0228dcd6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00b47ea1b98f4b56b4c053c0228dcd6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00b47ea1b98f4b56b4c053c0228dcd6c.jpg", "file_size": 16090, "is_delete": false, "file_type": 1, "original_file_name": "80093#袖子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00b47ea1b98f4b56b4c053c0228dcd6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00b47ea1b98f4b56b4c053c0228dcd6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00b47ea1b98f4b56b4c053c0228dcd6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00b47ea1b98f4b56b4c053c0228dcd6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00b47ea1b98f4b56b4c053c0228dcd6c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YBcJ3n49UX64MB-QaQvBzk921g=", "createTime": "2024-08-15 14:43:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.800308+00 2025-12-09 10:14:50.800312+00 6107 LZ1224#童装T5号色 SPMX-20240815301252 \N \N \N 1 \N [{"file_id": "a555fcda-dd8c-44b6-a17c-d0155c18b205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60514d19c6e04f158c7047a47fb9ce04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60514d19c6e04f158c7047a47fb9ce04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60514d19c6e04f158c7047a47fb9ce04.jpg", "file_size": 15884, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60514d19c6e04f158c7047a47fb9ce04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60514d19c6e04f158c7047a47fb9ce04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60514d19c6e04f158c7047a47fb9ce04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60514d19c6e04f158c7047a47fb9ce04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60514d19c6e04f158c7047a47fb9ce04.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_B5sRKFBqY2yRaRJ5HKazd3SaCk=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.801579+00 2025-12-09 10:14:50.801584+00 6108 0003-17FWF#V5曲线 SPMX-20240815301261 \N \N \N 1 \N [{"file_id": "a6e0a484-ccb0-4323-993f-a54db6c5356b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "867212e589ae41f0beae8fa5798acd0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "867212e589ae41f0beae8fa5798acd0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "867212e589ae41f0beae8fa5798acd0d.jpg", "file_size": 19420, "is_delete": false, "file_type": 1, "original_file_name": "0003-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867212e589ae41f0beae8fa5798acd0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867212e589ae41f0beae8fa5798acd0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867212e589ae41f0beae8fa5798acd0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/867212e589ae41f0beae8fa5798acd0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/867212e589ae41f0beae8fa5798acd0d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHE8QTbKiVr9-CnyZ-G_Bd-ec0w=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.802865+00 2025-12-09 10:14:50.802869+00 6109 LZ1224#童装T6号色 SPMX-20240815301263 \N \N \N 1 \N [{"file_id": "3657f98b-677f-4ead-a52d-ec6097c46a79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf7b5436cd5f4c3183d14707faab388d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf7b5436cd5f4c3183d14707faab388d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf7b5436cd5f4c3183d14707faab388d.jpg", "file_size": 16882, "is_delete": false, "file_type": 1, "original_file_name": "LZ1224#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7b5436cd5f4c3183d14707faab388d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7b5436cd5f4c3183d14707faab388d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7b5436cd5f4c3183d14707faab388d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf7b5436cd5f4c3183d14707faab388d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf7b5436cd5f4c3183d14707faab388d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EICNA6yGC-xY3zu7TPtxZ_l6-nE=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.804155+00 2025-12-09 10:14:50.80416+00 6110 JT0001-3#WJC22 SPMX-20240815301258 \N \N \N 1 \N [{"file_id": "5fb094c6-5005-4d7d-8fdf-9ecda6ef978b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a9f54b1cf5e4adcaa6ef07527247151.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a9f54b1cf5e4adcaa6ef07527247151.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a9f54b1cf5e4adcaa6ef07527247151.jpg", "file_size": 15749, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9f54b1cf5e4adcaa6ef07527247151.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9f54b1cf5e4adcaa6ef07527247151.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9f54b1cf5e4adcaa6ef07527247151.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a9f54b1cf5e4adcaa6ef07527247151.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a9f54b1cf5e4adcaa6ef07527247151.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eP_nwY_0T98QplL6QDOSttdYu8k=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.80545+00 2025-12-09 10:14:50.805454+00 6111 80097#彩蓝色 SPMX-20240815301256 \N \N \N 1 \N [{"file_id": "eadb1e89-996d-45c3-9707-0e1e95527df8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da8a8de2be8f4d2493ebeab8b9aac619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da8a8de2be8f4d2493ebeab8b9aac619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da8a8de2be8f4d2493ebeab8b9aac619.jpg", "file_size": 19736, "is_delete": false, "file_type": 1, "original_file_name": "80097#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8a8de2be8f4d2493ebeab8b9aac619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8a8de2be8f4d2493ebeab8b9aac619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8a8de2be8f4d2493ebeab8b9aac619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da8a8de2be8f4d2493ebeab8b9aac619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da8a8de2be8f4d2493ebeab8b9aac619.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlTXcNpbQQYhCjVUH7TyLfrtOjQ=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.806759+00 2025-12-09 10:14:50.806764+00 6112 FHXGPK-038-1 SPMX-20240815301259 \N \N \N 1 \N [{"file_id": "aefeb233-3706-412a-b442-4c2cc643b8c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d5e2e6948d841cabc5e70aa429e9f7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d5e2e6948d841cabc5e70aa429e9f7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d5e2e6948d841cabc5e70aa429e9f7b.jpg", "file_size": 37224, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-038-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d5e2e6948d841cabc5e70aa429e9f7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d5e2e6948d841cabc5e70aa429e9f7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d5e2e6948d841cabc5e70aa429e9f7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d5e2e6948d841cabc5e70aa429e9f7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d5e2e6948d841cabc5e70aa429e9f7b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ieg6RSigZ7zf0GzYthnHgUVHijs=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.808049+00 2025-12-09 10:14:50.808053+00 6113 LHJ9295-5-6#20枣红 SPMX-20240815301260 \N \N \N 1 \N [{"file_id": "62c6b1d0-3c13-49c1-a2b3-b27f762f10b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c63b9b276f9949e588fd3c75ef40b627.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c63b9b276f9949e588fd3c75ef40b627.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c63b9b276f9949e588fd3c75ef40b627.jpg", "file_size": 20643, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9295-5-6#20枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63b9b276f9949e588fd3c75ef40b627.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63b9b276f9949e588fd3c75ef40b627.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c63b9b276f9949e588fd3c75ef40b627.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c63b9b276f9949e588fd3c75ef40b627.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c63b9b276f9949e588fd3c75ef40b627.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3VXzNCi1HyIL3_A-GI_pAzNjD4=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.809349+00 2025-12-09 10:14:50.809353+00 6114 HSH199FW#VS-D3 SPMX-20240815301254 \N \N \N 1 \N [{"file_id": "82c9af35-9380-4f1c-8bba-2c484f914cb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c42e88f7136433f9f3b24e1220b643f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c42e88f7136433f9f3b24e1220b643f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c42e88f7136433f9f3b24e1220b643f.jpg", "file_size": 23366, "is_delete": false, "file_type": 1, "original_file_name": "HSH199FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c42e88f7136433f9f3b24e1220b643f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c42e88f7136433f9f3b24e1220b643f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c42e88f7136433f9f3b24e1220b643f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c42e88f7136433f9f3b24e1220b643f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c42e88f7136433f9f3b24e1220b643f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6hjDGDD4jKLK2lVtqobNd2nhk4=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.810622+00 2025-12-09 10:14:50.810626+00 6115 C272-1#裙子单边定位2号色 SPMX-20240815301253 \N \N \N 1 \N [{"file_id": "e9f575c8-99e7-4bd2-9d85-af285d23350b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b89a09953000427f90234145e438d665.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b89a09953000427f90234145e438d665.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b89a09953000427f90234145e438d665.jpg", "file_size": 32005, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#裙子单边定位2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89a09953000427f90234145e438d665.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89a09953000427f90234145e438d665.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b89a09953000427f90234145e438d665.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b89a09953000427f90234145e438d665.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b89a09953000427f90234145e438d665.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCuSHHWGcXVaSnI77B8vwA4YT9M=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.811961+00 2025-12-09 10:14:50.811965+00 6116 23-2102#A4长袖子4XL SPMX-20240815301257 \N \N \N 1 \N [{"file_id": "19316350-5cca-4608-ae14-730bfd1044d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e834be5d0f74d9c9d7048dfce854047.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e834be5d0f74d9c9d7048dfce854047.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e834be5d0f74d9c9d7048dfce854047.jpg", "file_size": 31957, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e834be5d0f74d9c9d7048dfce854047.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e834be5d0f74d9c9d7048dfce854047.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e834be5d0f74d9c9d7048dfce854047.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e834be5d0f74d9c9d7048dfce854047.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e834be5d0f74d9c9d7048dfce854047.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HlFeQdOmIeoFPseeG7vAQxD2jw=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.813248+00 2025-12-09 10:14:50.813252+00 6117 HSH20#2019 SPMX-20240815301264 \N \N \N 1 \N [{"file_id": "37de03f3-db75-4f6b-88f3-6b5a21967970", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg", "file_size": 23554, "is_delete": false, "file_type": 1, "original_file_name": "HSH20#2019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb4d8dc49ceb42a9a4a0b81e923ce6f4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cfq9ze0dVYhJDosTJWuysKwrQ9Q=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.814522+00 2025-12-09 10:14:50.814526+00 6118 1057#WJC22 SPMX-20240815301262 \N \N \N 1 \N [{"file_id": "5e8c9521-e788-4da6-a976-692aac199515", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29038f295d8942be8e145196522d37f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29038f295d8942be8e145196522d37f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29038f295d8942be8e145196522d37f5.jpg", "file_size": 11890, "is_delete": false, "file_type": 1, "original_file_name": "1057#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29038f295d8942be8e145196522d37f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29038f295d8942be8e145196522d37f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29038f295d8942be8e145196522d37f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29038f295d8942be8e145196522d37f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29038f295d8942be8e145196522d37f5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNWGHeJ_EjNcky8vJj9-6kVI8fc=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.815991+00 2025-12-09 10:14:50.815997+00 6119 DH52042338TFW#L粉 SPMX-20240815301255 \N \N \N 1 \N [{"file_id": "57a53867-2e03-408f-ae48-a7e334cfa1d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0b67c84e4314423a0f73b99eae9ee38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0b67c84e4314423a0f73b99eae9ee38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0b67c84e4314423a0f73b99eae9ee38.jpg", "file_size": 9008, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#L粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b67c84e4314423a0f73b99eae9ee38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b67c84e4314423a0f73b99eae9ee38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b67c84e4314423a0f73b99eae9ee38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0b67c84e4314423a0f73b99eae9ee38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0b67c84e4314423a0f73b99eae9ee38.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wegApS_Bx6OsS5fwMkPgHEcXK54=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.817337+00 2025-12-09 10:14:50.817341+00 6120 0003-17FWF#第一版本深色 SPMX-20240815301271 \N \N \N 1 \N [{"file_id": "5a6272be-279b-4dc8-8eef-f06d4bea8df3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c4b1a55577844e394e34df56c8de858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c4b1a55577844e394e34df56c8de858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c4b1a55577844e394e34df56c8de858.jpg", "file_size": 12473, "is_delete": false, "file_type": 1, "original_file_name": "0003-17FWF#第一版本深色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4b1a55577844e394e34df56c8de858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4b1a55577844e394e34df56c8de858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4b1a55577844e394e34df56c8de858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c4b1a55577844e394e34df56c8de858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c4b1a55577844e394e34df56c8de858.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-8FLlc8F-DxNwiSdCssb-03Wsk=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.818634+00 2025-12-09 10:14:50.818638+00 6121 80097#粉色 SPMX-20240815301280 \N \N \N 1 \N [{"file_id": "08e60398-8522-4c5e-baa7-a9c575da33c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf998eca95484f529c9427c6a65f87ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf998eca95484f529c9427c6a65f87ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf998eca95484f529c9427c6a65f87ed.jpg", "file_size": 19482, "is_delete": false, "file_type": 1, "original_file_name": "80097#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998eca95484f529c9427c6a65f87ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998eca95484f529c9427c6a65f87ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998eca95484f529c9427c6a65f87ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf998eca95484f529c9427c6a65f87ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf998eca95484f529c9427c6a65f87ed.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JTvA2B0043lQEJtF2NiAaIVnPQ=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.819941+00 2025-12-09 10:14:50.819945+00 6122 C272-1#裙子单边定位3号色 SPMX-20240815301266 \N \N \N 1 \N [{"file_id": "bbdc3842-ad90-43b1-bf3e-b8807c72172b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8b63a5c537749a58ee887cd7e074463.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8b63a5c537749a58ee887cd7e074463.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8b63a5c537749a58ee887cd7e074463.jpg", "file_size": 31968, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#裙子单边定位3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b63a5c537749a58ee887cd7e074463.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b63a5c537749a58ee887cd7e074463.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b63a5c537749a58ee887cd7e074463.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8b63a5c537749a58ee887cd7e074463.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8b63a5c537749a58ee887cd7e074463.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8W_ofC9r1hKHaXtCGqirq8CjQSY=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.821234+00 2025-12-09 10:14:50.821238+00 6123 80097#灰色 SPMX-20240815301267 \N \N \N 1 \N [{"file_id": "ab781142-da2c-43d1-aa13-8f28a1b6ed4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70cb5b549e354a1980dbd5a79fed9ab5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70cb5b549e354a1980dbd5a79fed9ab5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70cb5b549e354a1980dbd5a79fed9ab5.jpg", "file_size": 18602, "is_delete": false, "file_type": 1, "original_file_name": "80097#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cb5b549e354a1980dbd5a79fed9ab5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cb5b549e354a1980dbd5a79fed9ab5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cb5b549e354a1980dbd5a79fed9ab5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70cb5b549e354a1980dbd5a79fed9ab5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70cb5b549e354a1980dbd5a79fed9ab5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTF74Obkvuanw7ieDsE1-QYWbCM=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.822532+00 2025-12-09 10:14:50.822536+00 6124 JT0001-4#WJC22 SPMX-20240815301268 \N \N \N 1 \N [{"file_id": "8f2a98d5-60ef-48e8-88ae-42de87ceeb20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e36e0f528f3470492b79eb911050568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e36e0f528f3470492b79eb911050568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e36e0f528f3470492b79eb911050568.jpg", "file_size": 18009, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e36e0f528f3470492b79eb911050568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e36e0f528f3470492b79eb911050568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e36e0f528f3470492b79eb911050568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e36e0f528f3470492b79eb911050568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e36e0f528f3470492b79eb911050568.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIVNvBJOBRuW2t6RpUfnQZTVGJI=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.823819+00 2025-12-09 10:14:50.823823+00 6125 1057#杏色 SPMX-20240815301272 \N \N \N 1 \N [{"file_id": "7deb5ae3-675e-4aa5-8f25-7067aa518fac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52e03de2524f4841acd7218b54913164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52e03de2524f4841acd7218b54913164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52e03de2524f4841acd7218b54913164.jpg", "file_size": 15853, "is_delete": false, "file_type": 1, "original_file_name": "1057#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e03de2524f4841acd7218b54913164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e03de2524f4841acd7218b54913164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e03de2524f4841acd7218b54913164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52e03de2524f4841acd7218b54913164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52e03de2524f4841acd7218b54913164.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oB_OSBeZpVdv9utM06aKC6844-o=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.825101+00 2025-12-09 10:14:50.825105+00 6126 DH52042338TFW#L黑 SPMX-20240815301269 \N \N \N 1 \N [{"file_id": "31836443-5cbf-4ba2-ba50-841f5873940e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13bb59b1f2e74467ac24d607be74a873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13bb59b1f2e74467ac24d607be74a873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13bb59b1f2e74467ac24d607be74a873.jpg", "file_size": 8854, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#L黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bb59b1f2e74467ac24d607be74a873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bb59b1f2e74467ac24d607be74a873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bb59b1f2e74467ac24d607be74a873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13bb59b1f2e74467ac24d607be74a873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13bb59b1f2e74467ac24d607be74a873.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PW3spWvz3M-FraFg89GQogprPZ8=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.831546+00 2025-12-09 10:14:50.83155+00 6131 JT0001-7#彩色 SPMX-20240815301278 \N \N \N 1 \N [{"file_id": "0b157e81-da97-4b7f-be95-8de46fffb17d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cc6b1a065ee496db4980dd20ef4a2c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cc6b1a065ee496db4980dd20ef4a2c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cc6b1a065ee496db4980dd20ef4a2c8.jpg", "file_size": 20517, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-7#彩色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc6b1a065ee496db4980dd20ef4a2c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc6b1a065ee496db4980dd20ef4a2c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc6b1a065ee496db4980dd20ef4a2c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cc6b1a065ee496db4980dd20ef4a2c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cc6b1a065ee496db4980dd20ef4a2c8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7KbAEmdw_imHgapWQcRF3WXTwo=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.826387+00 2025-12-09 10:14:50.826391+00 6127 C272-1#裙子单边定位4号色 SPMX-20240815301277 \N \N \N 1 \N [{"file_id": "e8050567-fb53-4543-ad8f-54bdb9d60179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "038cf7608fa1403186d6acfdf5445771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "038cf7608fa1403186d6acfdf5445771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "038cf7608fa1403186d6acfdf5445771.jpg", "file_size": 29687, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#裙子单边定位4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/038cf7608fa1403186d6acfdf5445771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/038cf7608fa1403186d6acfdf5445771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/038cf7608fa1403186d6acfdf5445771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/038cf7608fa1403186d6acfdf5445771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/038cf7608fa1403186d6acfdf5445771.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwqTNlUC3hJZ2ZGW5M3OP6FTwUE=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.827687+00 2025-12-09 10:14:50.827691+00 6128 FHXGPK-039-1 SPMX-20240815301270 \N \N \N 1 \N [{"file_id": "548aa66a-68c0-47f5-9323-4ea7c68449d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0d33791a5b84fbe87d9f161b8093ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0d33791a5b84fbe87d9f161b8093ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0d33791a5b84fbe87d9f161b8093ae5.jpg", "file_size": 39704, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-039-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d33791a5b84fbe87d9f161b8093ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d33791a5b84fbe87d9f161b8093ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d33791a5b84fbe87d9f161b8093ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0d33791a5b84fbe87d9f161b8093ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0d33791a5b84fbe87d9f161b8093ae5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_eSCs_DRTgZZLEJoft5ZbI8ZKeY=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.828976+00 2025-12-09 10:14:50.82898+00 6129 DH52042338TFW#M粉 SPMX-20240815301279 \N \N \N 1 \N [{"file_id": "ae468efa-bb1d-4d15-9567-615cae99ca24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a60518ef49124f59a20e10358f567641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a60518ef49124f59a20e10358f567641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a60518ef49124f59a20e10358f567641.jpg", "file_size": 7014, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#M粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60518ef49124f59a20e10358f567641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60518ef49124f59a20e10358f567641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60518ef49124f59a20e10358f567641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a60518ef49124f59a20e10358f567641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a60518ef49124f59a20e10358f567641.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lAm8iOksQ-qBd28CERnfvUaGJhY=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.830255+00 2025-12-09 10:14:50.830259+00 6130 LHJ9295-5-6#37梅红 SPMX-20240815301284 \N \N \N 1 \N [{"file_id": "fe128bd9-3f89-4d3b-af50-54a380b6fbbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "279e6aa5988e41a48edcb662cc75c4be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "279e6aa5988e41a48edcb662cc75c4be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "279e6aa5988e41a48edcb662cc75c4be.jpg", "file_size": 18240, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9295-5-6#37梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279e6aa5988e41a48edcb662cc75c4be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279e6aa5988e41a48edcb662cc75c4be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/279e6aa5988e41a48edcb662cc75c4be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/279e6aa5988e41a48edcb662cc75c4be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/279e6aa5988e41a48edcb662cc75c4be.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0U52-6VjFhc7hIgMkYYeJAsI-s=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.832857+00 2025-12-09 10:14:50.832861+00 6132 LZ1225#童装T1号色 SPMX-20240815301274 \N \N \N 1 \N [{"file_id": "f3f54cec-412d-44a3-beaf-b48234e1ad7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f12655246e24cbdb7a1985c8128a904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f12655246e24cbdb7a1985c8128a904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f12655246e24cbdb7a1985c8128a904.jpg", "file_size": 16743, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f12655246e24cbdb7a1985c8128a904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f12655246e24cbdb7a1985c8128a904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f12655246e24cbdb7a1985c8128a904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f12655246e24cbdb7a1985c8128a904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f12655246e24cbdb7a1985c8128a904.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:32CnfGeO7cW5YNo2bcacqZ-mV-Q=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.834165+00 2025-12-09 10:14:50.834169+00 6133 23-2102#A4领子通用 SPMX-20240815301276 \N \N \N 1 \N [{"file_id": "b4a9b296-73b7-4d8d-9fd9-3eb888d02d91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e80ecdbbac0a4b57989ead4142657d6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e80ecdbbac0a4b57989ead4142657d6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e80ecdbbac0a4b57989ead4142657d6c.jpg", "file_size": 15756, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80ecdbbac0a4b57989ead4142657d6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80ecdbbac0a4b57989ead4142657d6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e80ecdbbac0a4b57989ead4142657d6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e80ecdbbac0a4b57989ead4142657d6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e80ecdbbac0a4b57989ead4142657d6c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVnoeO_Yj_h6rhDGtkFni9D3KEE=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.83544+00 2025-12-09 10:14:50.835445+00 6134 HSH200FW#VS-D3 SPMX-20240815301275 \N \N \N 1 \N [{"file_id": "d5fbb861-40c3-4d75-8bbe-c6f33a48c740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e52e661aebd0452c89200ded8419730e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e52e661aebd0452c89200ded8419730e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e52e661aebd0452c89200ded8419730e.jpg", "file_size": 10247, "is_delete": false, "file_type": 1, "original_file_name": "HSH200FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52e661aebd0452c89200ded8419730e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52e661aebd0452c89200ded8419730e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52e661aebd0452c89200ded8419730e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e52e661aebd0452c89200ded8419730e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e52e661aebd0452c89200ded8419730e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGnHDZ13oZNGAMANP8QZSOCVHjc=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.836716+00 2025-12-09 10:14:50.83672+00 6135 23-2102#A4领口 SPMX-20240815301265 \N \N \N 1 \N [{"file_id": "56931333-d621-4550-8c5f-8ed9e7269974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25542851dd224e8da07061d049138a16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25542851dd224e8da07061d049138a16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25542851dd224e8da07061d049138a16.jpg", "file_size": 16096, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A4领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25542851dd224e8da07061d049138a16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25542851dd224e8da07061d049138a16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25542851dd224e8da07061d049138a16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25542851dd224e8da07061d049138a16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25542851dd224e8da07061d049138a16.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOHGBuxTeGfdUwBiqD0VRNkJRrU=", "createTime": "2024-08-15 14:43:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.838012+00 2025-12-09 10:14:50.838016+00 6136 1057#杏色净色 SPMX-20240815301281 \N \N \N 1 \N [{"file_id": "9465ca08-b60e-4b34-933f-18e8615a7625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22b247d2bb3f42a1932e3b4c59a0144d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22b247d2bb3f42a1932e3b4c59a0144d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22b247d2bb3f42a1932e3b4c59a0144d.jpg", "file_size": 4118, "is_delete": false, "file_type": 1, "original_file_name": "1057#杏色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b247d2bb3f42a1932e3b4c59a0144d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b247d2bb3f42a1932e3b4c59a0144d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b247d2bb3f42a1932e3b4c59a0144d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22b247d2bb3f42a1932e3b4c59a0144d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22b247d2bb3f42a1932e3b4c59a0144d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_D22s9i-p7PIq0wZjFUS2Ipw7Bw=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.839322+00 2025-12-09 10:14:50.839326+00 6137 LHJ9295-5-6#25土黄 SPMX-20240815301273 \N \N \N 1 \N [{"file_id": "3ea0f1cd-bf8d-4e59-94c9-ddd064efecc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f0541eb402d42e78f36523d7e00f4b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f0541eb402d42e78f36523d7e00f4b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f0541eb402d42e78f36523d7e00f4b3.jpg", "file_size": 18602, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9295-5-6#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f0541eb402d42e78f36523d7e00f4b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f0541eb402d42e78f36523d7e00f4b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f0541eb402d42e78f36523d7e00f4b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f0541eb402d42e78f36523d7e00f4b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f0541eb402d42e78f36523d7e00f4b3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eV_4Wc7rwIa-jyVej5CyupKqQz0=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.840612+00 2025-12-09 10:14:50.840617+00 6138 0003-18FWE#VS-D3 SPMX-20240815301282 \N \N \N 1 \N [{"file_id": "a4a1a6f0-33d6-4203-aa6e-a92ec18d09ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "392f7c7177f74351b4638aca775a35e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "392f7c7177f74351b4638aca775a35e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "392f7c7177f74351b4638aca775a35e5.jpg", "file_size": 15299, "is_delete": false, "file_type": 1, "original_file_name": "0003-18FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392f7c7177f74351b4638aca775a35e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392f7c7177f74351b4638aca775a35e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392f7c7177f74351b4638aca775a35e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/392f7c7177f74351b4638aca775a35e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/392f7c7177f74351b4638aca775a35e5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pcn3QzE0v2Qm8O3aWEgbXEc5znY=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.841883+00 2025-12-09 10:14:50.841887+00 6139 FHXGPK-039-2 SPMX-20240815301283 \N \N \N 1 \N [{"file_id": "0b0141d8-4899-4ae9-8e6d-7529dc8d0435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50e2ca9eeee241309ed11122458f8970.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50e2ca9eeee241309ed11122458f8970.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50e2ca9eeee241309ed11122458f8970.jpg", "file_size": 36293, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-039-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e2ca9eeee241309ed11122458f8970.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e2ca9eeee241309ed11122458f8970.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e2ca9eeee241309ed11122458f8970.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50e2ca9eeee241309ed11122458f8970.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50e2ca9eeee241309ed11122458f8970.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oytEMKVXynxhLYK8oDEg4Ky9KVk=", "createTime": "2024-08-15 14:43:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.843182+00 2025-12-09 10:14:50.843187+00 6140 1057#灰色 SPMX-20240815301292 \N \N \N 1 \N [{"file_id": "560f09ae-8ed5-4b61-aa79-34cc9c1bdf4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e19d121a22ae47c68568f911b4f66979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e19d121a22ae47c68568f911b4f66979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e19d121a22ae47c68568f911b4f66979.jpg", "file_size": 16672, "is_delete": false, "file_type": 1, "original_file_name": "1057#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19d121a22ae47c68568f911b4f66979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19d121a22ae47c68568f911b4f66979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19d121a22ae47c68568f911b4f66979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e19d121a22ae47c68568f911b4f66979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e19d121a22ae47c68568f911b4f66979.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPBbjsJqdxjjZ62xjPBCLh7-k18=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.844471+00 2025-12-09 10:14:50.844475+00 6141 23-2102#A5前后片4XL SPMX-20240815301297 \N \N \N 1 \N [{"file_id": "9d266957-9241-43d6-9a48-36fcd55f8b71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff202d659f424c4684f892e2fa0ec425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff202d659f424c4684f892e2fa0ec425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff202d659f424c4684f892e2fa0ec425.jpg", "file_size": 18272, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff202d659f424c4684f892e2fa0ec425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff202d659f424c4684f892e2fa0ec425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff202d659f424c4684f892e2fa0ec425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff202d659f424c4684f892e2fa0ec425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff202d659f424c4684f892e2fa0ec425.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1l8mZ4OtnIZPxNRokbqWMGEq6jM=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.845763+00 2025-12-09 10:14:50.845768+00 6142 23-2102#A5前后片3XL SPMX-20240815301286 \N \N \N 1 \N [{"file_id": "af7eff4e-f4fb-4991-b4e8-dc9ddf6acbc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8f13797d9d439e9b10d9704e9a8690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8f13797d9d439e9b10d9704e9a8690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8f13797d9d439e9b10d9704e9a8690.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8f13797d9d439e9b10d9704e9a8690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8f13797d9d439e9b10d9704e9a8690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8f13797d9d439e9b10d9704e9a8690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8f13797d9d439e9b10d9704e9a8690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8f13797d9d439e9b10d9704e9a8690.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eYlyTkMuQHbyFTbD1fQ4yEibLSY=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.847036+00 2025-12-09 10:14:50.84704+00 6143 LZ1225#童装T21号色 SPMX-20240815301285 \N \N \N 1 \N [{"file_id": "eb20bb77-75de-4ebf-957e-3de0f573c36b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c00f7325a80d4d9da49eb3744aa7c1f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c00f7325a80d4d9da49eb3744aa7c1f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c00f7325a80d4d9da49eb3744aa7c1f7.jpg", "file_size": 16646, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T21号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c00f7325a80d4d9da49eb3744aa7c1f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c00f7325a80d4d9da49eb3744aa7c1f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c00f7325a80d4d9da49eb3744aa7c1f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c00f7325a80d4d9da49eb3744aa7c1f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c00f7325a80d4d9da49eb3744aa7c1f7.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QNoqWerVrwNrV9x3Om4zJKDbLi4=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.848335+00 2025-12-09 10:14:50.848339+00 6144 HSH打版#VS-D3 SPMX-20240815301298 \N \N \N 1 \N [{"file_id": "9931988a-c7ec-493c-b103-a27d6adbff45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb909011834242e1bd7e0d7efaea6afa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb909011834242e1bd7e0d7efaea6afa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb909011834242e1bd7e0d7efaea6afa.jpg", "file_size": 63699, "is_delete": false, "file_type": 1, "original_file_name": "HSH打版#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb909011834242e1bd7e0d7efaea6afa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb909011834242e1bd7e0d7efaea6afa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb909011834242e1bd7e0d7efaea6afa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb909011834242e1bd7e0d7efaea6afa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb909011834242e1bd7e0d7efaea6afa.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQiWZrNTwRzK71eNtqHIgFyYobo=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.849657+00 2025-12-09 10:14:50.849661+00 6145 LHJ9295-5-6#5彩兰 SPMX-20240815301294 \N \N \N 1 \N [{"file_id": "a705301b-ac65-490b-bdde-caa7b4a26ad2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3adc873ab0e46ca944f969c699a16a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3adc873ab0e46ca944f969c699a16a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3adc873ab0e46ca944f969c699a16a3.jpg", "file_size": 20239, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9295-5-6#5彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3adc873ab0e46ca944f969c699a16a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3adc873ab0e46ca944f969c699a16a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3adc873ab0e46ca944f969c699a16a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3adc873ab0e46ca944f969c699a16a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3adc873ab0e46ca944f969c699a16a3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDQYMIr6Owp_MyxXxSSX7C6P3JU=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.850956+00 2025-12-09 10:14:50.85096+00 6146 0003-18FWF#V5曲线 SPMX-20240815301295 \N \N \N 1 \N [{"file_id": "acf09f4c-d86c-4614-ae77-e0ea16b2d91c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63fe2b7bdc924cc5a189fb1603cf3497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63fe2b7bdc924cc5a189fb1603cf3497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63fe2b7bdc924cc5a189fb1603cf3497.jpg", "file_size": 13680, "is_delete": false, "file_type": 1, "original_file_name": "0003-18FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63fe2b7bdc924cc5a189fb1603cf3497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63fe2b7bdc924cc5a189fb1603cf3497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63fe2b7bdc924cc5a189fb1603cf3497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63fe2b7bdc924cc5a189fb1603cf3497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63fe2b7bdc924cc5a189fb1603cf3497.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiVd46yoroHZ2fRzRqzgRK3jf1Y=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.852219+00 2025-12-09 10:14:50.852223+00 6147 C272-1#裙子单边定位5号色 SPMX-20240815301287 \N \N \N 1 \N [{"file_id": "92b4cde3-dbe6-4e89-be30-129516f17ea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c059613f5242e1816d8f8e8fa16ab3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c059613f5242e1816d8f8e8fa16ab3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c059613f5242e1816d8f8e8fa16ab3.jpg", "file_size": 29943, "is_delete": false, "file_type": 1, "original_file_name": "C272-1#裙子单边定位5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c059613f5242e1816d8f8e8fa16ab3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c059613f5242e1816d8f8e8fa16ab3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c059613f5242e1816d8f8e8fa16ab3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c059613f5242e1816d8f8e8fa16ab3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c059613f5242e1816d8f8e8fa16ab3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmh3Cmw5nQpVXCzAed3X74TVtjE=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.853522+00 2025-12-09 10:14:50.853526+00 6148 DH52042338TFW#M黑 SPMX-20240815301290 \N \N \N 1 \N [{"file_id": "1ea62b1b-c501-4580-bd5c-da15e389aaac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "480d90237ddb4669898fe616a2eee542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "480d90237ddb4669898fe616a2eee542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "480d90237ddb4669898fe616a2eee542.jpg", "file_size": 6727, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#M黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480d90237ddb4669898fe616a2eee542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480d90237ddb4669898fe616a2eee542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480d90237ddb4669898fe616a2eee542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/480d90237ddb4669898fe616a2eee542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/480d90237ddb4669898fe616a2eee542.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imKWJQJj2Yn61wTHQYV7XVPz8rI=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.854812+00 2025-12-09 10:14:50.854816+00 6149 FHXGPK-039-3 SPMX-20240815301293 \N \N \N 1 \N [{"file_id": "7291debe-af39-4028-9cd3-6c3dcc4ec18f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21d2a93cd2f84ab099b2812133da9139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21d2a93cd2f84ab099b2812133da9139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21d2a93cd2f84ab099b2812133da9139.jpg", "file_size": 39794, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-039-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d2a93cd2f84ab099b2812133da9139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d2a93cd2f84ab099b2812133da9139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d2a93cd2f84ab099b2812133da9139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21d2a93cd2f84ab099b2812133da9139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21d2a93cd2f84ab099b2812133da9139.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MujeP_3Sot3n1rFX1zkTO3tkT50=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.856099+00 2025-12-09 10:14:50.856103+00 6150 HSHXD013#CCE SPMX-20240815301289 \N \N \N 1 \N [{"file_id": "e5de1952-e39c-445e-b413-36b818f68c18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32097671c19045d4a3bbd9929a9e9cf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32097671c19045d4a3bbd9929a9e9cf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32097671c19045d4a3bbd9929a9e9cf4.jpg", "file_size": 11551, "is_delete": false, "file_type": 1, "original_file_name": "HSHXD013#CCE.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32097671c19045d4a3bbd9929a9e9cf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32097671c19045d4a3bbd9929a9e9cf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32097671c19045d4a3bbd9929a9e9cf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32097671c19045d4a3bbd9929a9e9cf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32097671c19045d4a3bbd9929a9e9cf4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxoEEAHLSDIcJbukDzPl_ni9NoU=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.857378+00 2025-12-09 10:14:50.857382+00 6151 80097#红色 SPMX-20240815301291 \N \N \N 1 \N [{"file_id": "64d07a5e-48e4-456d-a336-47a6a6fc097d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5042550dd7de4a2a8ae7dfc9f75277ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5042550dd7de4a2a8ae7dfc9f75277ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5042550dd7de4a2a8ae7dfc9f75277ba.jpg", "file_size": 18866, "is_delete": false, "file_type": 1, "original_file_name": "80097#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5042550dd7de4a2a8ae7dfc9f75277ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5042550dd7de4a2a8ae7dfc9f75277ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5042550dd7de4a2a8ae7dfc9f75277ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5042550dd7de4a2a8ae7dfc9f75277ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5042550dd7de4a2a8ae7dfc9f75277ba.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6aIel8KphkkeKs6kxCUkXztcq3k=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.858651+00 2025-12-09 10:14:50.858655+00 6152 JT0001-7#粉净色 SPMX-20240815301288 \N \N \N 1 \N [{"file_id": "8955e4a0-3b71-4e38-ad61-ae15b76f7033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4ff4fa25be842cb83918500b86c7f57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4ff4fa25be842cb83918500b86c7f57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4ff4fa25be842cb83918500b86c7f57.jpg", "file_size": 7257, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-7#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ff4fa25be842cb83918500b86c7f57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ff4fa25be842cb83918500b86c7f57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ff4fa25be842cb83918500b86c7f57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4ff4fa25be842cb83918500b86c7f57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4ff4fa25be842cb83918500b86c7f57.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3SaJ_3pD5J3VVVIPp7qwGzEkts=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.859941+00 2025-12-09 10:14:50.859945+00 6153 LZ1225#童装T2号色 SPMX-20240815301296 \N \N \N 1 \N [{"file_id": "f398ced0-636d-49d5-ac3b-02393b50901a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91a524135e0d485b9914c5ac3add5b51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91a524135e0d485b9914c5ac3add5b51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91a524135e0d485b9914c5ac3add5b51.jpg", "file_size": 16646, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a524135e0d485b9914c5ac3add5b51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a524135e0d485b9914c5ac3add5b51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a524135e0d485b9914c5ac3add5b51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91a524135e0d485b9914c5ac3add5b51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91a524135e0d485b9914c5ac3add5b51.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAD2FOlGwnyP_T5_zR7_QJjLEdE=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.861244+00 2025-12-09 10:14:50.861248+00 6154 LZ1225#童装T3号色 SPMX-20240815301307 \N \N \N 1 \N [{"file_id": "864aa330-bebc-46bc-9203-bc856e8258f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "013d11751a5241de9ac2222fd6cd0d2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "013d11751a5241de9ac2222fd6cd0d2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "013d11751a5241de9ac2222fd6cd0d2b.jpg", "file_size": 16732, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013d11751a5241de9ac2222fd6cd0d2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013d11751a5241de9ac2222fd6cd0d2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013d11751a5241de9ac2222fd6cd0d2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/013d11751a5241de9ac2222fd6cd0d2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/013d11751a5241de9ac2222fd6cd0d2b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-IUTDvGQLS7YvAhBFKLzh1toFQ=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.862533+00 2025-12-09 10:14:50.862537+00 6155 23-2102#A5短袖子3XL SPMX-20240815301308 \N \N \N 1 \N [{"file_id": "62972555-2cba-4a81-a920-1c734828d2b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "270e353251764f2687062a35c4d4ff94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "270e353251764f2687062a35c4d4ff94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "270e353251764f2687062a35c4d4ff94.jpg", "file_size": 17111, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5短袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270e353251764f2687062a35c4d4ff94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270e353251764f2687062a35c4d4ff94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270e353251764f2687062a35c4d4ff94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/270e353251764f2687062a35c4d4ff94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/270e353251764f2687062a35c4d4ff94.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4Ab_YT_Px5b-kHk-Q7uDKZK5oU=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.864086+00 2025-12-09 10:14:50.86409+00 6156 JT0001-8#WJC22 SPMX-20240815301300 \N \N \N 1 \N [{"file_id": "4b2e7425-9710-4137-8e86-8a887775963a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e2b574ad880426891b3815ee54e00c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e2b574ad880426891b3815ee54e00c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e2b574ad880426891b3815ee54e00c5.jpg", "file_size": 18476, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-8#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2b574ad880426891b3815ee54e00c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2b574ad880426891b3815ee54e00c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2b574ad880426891b3815ee54e00c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e2b574ad880426891b3815ee54e00c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e2b574ad880426891b3815ee54e00c5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_5bh8bo9dVPeCb0U9VKKO_FBU8=", "createTime": "2024-08-15 14:43:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.865641+00 2025-12-09 10:14:50.865646+00 6157 1057#白色 SPMX-20240815301313 \N \N \N 1 \N [{"file_id": "e63cfafd-2514-447f-9098-435942fa2893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef91db34a4c4c9eb12ec5d37e804a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef91db34a4c4c9eb12ec5d37e804a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef91db34a4c4c9eb12ec5d37e804a85.jpg", "file_size": 16754, "is_delete": false, "file_type": 1, "original_file_name": "1057#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef91db34a4c4c9eb12ec5d37e804a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef91db34a4c4c9eb12ec5d37e804a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef91db34a4c4c9eb12ec5d37e804a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef91db34a4c4c9eb12ec5d37e804a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef91db34a4c4c9eb12ec5d37e804a85.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x79jh9RT6SUyJoiIl--VV9iNBuY=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.867229+00 2025-12-09 10:14:50.867233+00 6158 DH52042338TFW#S粉 SPMX-20240815301299 \N \N \N 1 \N [{"file_id": "fd8e6de9-ed10-460c-a9b8-8411693bcf14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65d628a4d6ac4890b39f8ca2af33a8a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65d628a4d6ac4890b39f8ca2af33a8a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65d628a4d6ac4890b39f8ca2af33a8a6.jpg", "file_size": 6509, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#S粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d628a4d6ac4890b39f8ca2af33a8a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d628a4d6ac4890b39f8ca2af33a8a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d628a4d6ac4890b39f8ca2af33a8a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65d628a4d6ac4890b39f8ca2af33a8a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65d628a4d6ac4890b39f8ca2af33a8a6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZD3hCxV3_NCkF7wQX9p9sho3fQ=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.868805+00 2025-12-09 10:14:50.86881+00 6159 1057#灰色净色 SPMX-20240815301302 \N \N \N 1 \N [{"file_id": "b14d58ed-ddda-444e-9275-2524d3da68ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dbf10aabf414c15be03773dd96fe94c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dbf10aabf414c15be03773dd96fe94c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dbf10aabf414c15be03773dd96fe94c.jpg", "file_size": 3984, "is_delete": false, "file_type": 1, "original_file_name": "1057#灰色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dbf10aabf414c15be03773dd96fe94c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dbf10aabf414c15be03773dd96fe94c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dbf10aabf414c15be03773dd96fe94c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dbf10aabf414c15be03773dd96fe94c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dbf10aabf414c15be03773dd96fe94c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MeP_DRq5talKuG1-f7-4klJXinc=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.870363+00 2025-12-09 10:14:50.870367+00 6160 8010#墨绿 SPMX-20240815301303 \N \N \N 1 \N [{"file_id": "a6cf2d76-2f80-4e6f-931e-bc3a75038940", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e98e6bfe1e9d417d8789e139d62b0956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e98e6bfe1e9d417d8789e139d62b0956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e98e6bfe1e9d417d8789e139d62b0956.jpg", "file_size": 25684, "is_delete": false, "file_type": 1, "original_file_name": "8010#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98e6bfe1e9d417d8789e139d62b0956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98e6bfe1e9d417d8789e139d62b0956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98e6bfe1e9d417d8789e139d62b0956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e98e6bfe1e9d417d8789e139d62b0956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e98e6bfe1e9d417d8789e139d62b0956.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwxA7S86__9u7M1HDLyeOE10RE4=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.871932+00 2025-12-09 10:14:50.871936+00 6161 FHXGPK-040-1 SPMX-20240815301315 \N \N \N 1 \N [{"file_id": "aec33adc-8688-4fbe-9e1d-7c1128aa16d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ca561b28f444124a5e0031aedef154f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ca561b28f444124a5e0031aedef154f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ca561b28f444124a5e0031aedef154f.jpg", "file_size": 30239, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-040-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca561b28f444124a5e0031aedef154f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca561b28f444124a5e0031aedef154f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca561b28f444124a5e0031aedef154f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ca561b28f444124a5e0031aedef154f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ca561b28f444124a5e0031aedef154f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfPEqoS2KwxLX7eKr5drUu4s4XE=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.873491+00 2025-12-09 10:14:50.873494+00 6162 JT0001-9#WJC22 SPMX-20240815301310 \N \N \N 1 \N [{"file_id": "7428474f-f0da-441c-80f7-6afbd5a10dd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6472239ed6604ddaad90a502f68ead7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6472239ed6604ddaad90a502f68ead7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6472239ed6604ddaad90a502f68ead7b.jpg", "file_size": 16147, "is_delete": false, "file_type": 1, "original_file_name": "JT0001-9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6472239ed6604ddaad90a502f68ead7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6472239ed6604ddaad90a502f68ead7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6472239ed6604ddaad90a502f68ead7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6472239ed6604ddaad90a502f68ead7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6472239ed6604ddaad90a502f68ead7b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9aBLCKmrj4U6Me1EQSn21oS_w5A=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.875076+00 2025-12-09 10:14:50.875081+00 6163 0003-19FWE#VS-D3番禺调色 SPMX-20240815301304 \N \N \N 1 \N [{"file_id": "6bd0b181-2696-4b74-b971-c59bb73368a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e65ee1932be44b58ab2148a76c7cb135.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e65ee1932be44b58ab2148a76c7cb135.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e65ee1932be44b58ab2148a76c7cb135.jpg", "file_size": 18454, "is_delete": false, "file_type": 1, "original_file_name": "0003-19FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65ee1932be44b58ab2148a76c7cb135.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65ee1932be44b58ab2148a76c7cb135.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65ee1932be44b58ab2148a76c7cb135.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e65ee1932be44b58ab2148a76c7cb135.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e65ee1932be44b58ab2148a76c7cb135.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qo1AyKshcSl0U7hprvKJPxCcZYw=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.876364+00 2025-12-09 10:14:50.876369+00 6164 DH52042338TFW#S黑 SPMX-20240815301309 \N \N \N 1 \N [{"file_id": "8f3b6b0f-7d77-4ad9-ba3d-6b39fd863b9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "448c3601704a43ebb0240d9ead9a6f67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "448c3601704a43ebb0240d9ead9a6f67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "448c3601704a43ebb0240d9ead9a6f67.jpg", "file_size": 6663, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#S黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448c3601704a43ebb0240d9ead9a6f67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448c3601704a43ebb0240d9ead9a6f67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448c3601704a43ebb0240d9ead9a6f67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/448c3601704a43ebb0240d9ead9a6f67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/448c3601704a43ebb0240d9ead9a6f67.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VG0_aeHsIUQzU-_xuDCbdwofoHk=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.877648+00 2025-12-09 10:14:50.877653+00 6165 C272-2#卡其色2XL SPMX-20240815301301 \N \N \N 1 \N [{"file_id": "4c7ab0c8-a058-4253-bf9c-0986ee711633", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b6a4aec76c048f597fd77aa881ef613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b6a4aec76c048f597fd77aa881ef613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b6a4aec76c048f597fd77aa881ef613.jpg", "file_size": 55055, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#卡其色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6a4aec76c048f597fd77aa881ef613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6a4aec76c048f597fd77aa881ef613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6a4aec76c048f597fd77aa881ef613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b6a4aec76c048f597fd77aa881ef613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b6a4aec76c048f597fd77aa881ef613.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2eKC_pxUoeBSWsUb40y7rkTeLg=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.878942+00 2025-12-09 10:14:50.878946+00 6166 FHXGPK-039-4 SPMX-20240815301305 \N \N \N 1 \N [{"file_id": "82073143-a640-4edb-a1d6-77d49b46afb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddad914f85d847c48d6c7d9aeba2b783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddad914f85d847c48d6c7d9aeba2b783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddad914f85d847c48d6c7d9aeba2b783.jpg", "file_size": 42502, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-039-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddad914f85d847c48d6c7d9aeba2b783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddad914f85d847c48d6c7d9aeba2b783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddad914f85d847c48d6c7d9aeba2b783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddad914f85d847c48d6c7d9aeba2b783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddad914f85d847c48d6c7d9aeba2b783.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_A3uHy3wVcklk7iXs4Fhg9piIE=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.880246+00 2025-12-09 10:14:50.88025+00 6167 LHJ9296-2#1黑色 SPMX-20240815301306 \N \N \N 1 \N [{"file_id": "5084f7a6-cd03-4338-916c-8c781a8a382c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caa0c210a4b04c649d472f028744bb5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caa0c210a4b04c649d472f028744bb5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caa0c210a4b04c649d472f028744bb5b.jpg", "file_size": 28366, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9296-2#1黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0c210a4b04c649d472f028744bb5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0c210a4b04c649d472f028744bb5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0c210a4b04c649d472f028744bb5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caa0c210a4b04c649d472f028744bb5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caa0c210a4b04c649d472f028744bb5b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KK5Ju6G_2LMUal6L9t6_cq2mZO4=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.881538+00 2025-12-09 10:14:50.881543+00 6168 HSH打版FWE#VS-D3 SPMX-20240815301311 \N \N \N 1 \N [{"file_id": "aa736571-cc8a-48f1-bda8-e01c012e7ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1341ab25d1b64696a33f95e5d4204340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1341ab25d1b64696a33f95e5d4204340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1341ab25d1b64696a33f95e5d4204340.jpg", "file_size": 234962, "is_delete": false, "file_type": 1, "original_file_name": "HSH打版FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1341ab25d1b64696a33f95e5d4204340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1341ab25d1b64696a33f95e5d4204340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1341ab25d1b64696a33f95e5d4204340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1341ab25d1b64696a33f95e5d4204340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1341ab25d1b64696a33f95e5d4204340.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcE3SIaX1wbOUgEDMcdgEAxUDvM=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.882856+00 2025-12-09 10:14:50.88286+00 6169 C272-2#卡其色3XL SPMX-20240815301312 \N \N \N 1 \N [{"file_id": "648325bc-aa04-46cb-8b83-0c53f49d257d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9604fb6587c94fb18965741373843f48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9604fb6587c94fb18965741373843f48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9604fb6587c94fb18965741373843f48.jpg", "file_size": 54089, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#卡其色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9604fb6587c94fb18965741373843f48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9604fb6587c94fb18965741373843f48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9604fb6587c94fb18965741373843f48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9604fb6587c94fb18965741373843f48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9604fb6587c94fb18965741373843f48.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAfZ5sscb0CwVB-JFzctbNu1Qaw=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.884139+00 2025-12-09 10:14:50.884143+00 6170 8010#果绿 SPMX-20240815301314 \N \N \N 1 \N [{"file_id": "ed19d160-1460-4549-8293-f8196a8722f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08dcfeff10774e10814a0a1abf8da83b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08dcfeff10774e10814a0a1abf8da83b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08dcfeff10774e10814a0a1abf8da83b.jpg", "file_size": 25242, "is_delete": false, "file_type": 1, "original_file_name": "8010#果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dcfeff10774e10814a0a1abf8da83b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dcfeff10774e10814a0a1abf8da83b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08dcfeff10774e10814a0a1abf8da83b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08dcfeff10774e10814a0a1abf8da83b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08dcfeff10774e10814a0a1abf8da83b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67Q0KA7EBQ3hlMdRhqLJo_tGtPM=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.885449+00 2025-12-09 10:14:50.885453+00 6171 DH52042338TFW#XS粉 SPMX-20240815301321 \N \N \N 1 \N [{"file_id": "4ce7fade-4654-485d-8777-1371caa174b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a005924474814671944757e97dc278c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a005924474814671944757e97dc278c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a005924474814671944757e97dc278c8.jpg", "file_size": 6670, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#XS粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a005924474814671944757e97dc278c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a005924474814671944757e97dc278c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a005924474814671944757e97dc278c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a005924474814671944757e97dc278c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a005924474814671944757e97dc278c8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5iWME0IFNgRUGLXjY-KJPccaprM=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.886747+00 2025-12-09 10:14:50.886751+00 6172 1057#粉色 SPMX-20240815301324 \N \N \N 1 \N [{"file_id": "cc10766a-1c42-4c05-8e3d-49a01e3849e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "509d2cc9f2bc4fffb925b47a969d9dab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "509d2cc9f2bc4fffb925b47a969d9dab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "509d2cc9f2bc4fffb925b47a969d9dab.jpg", "file_size": 17191, "is_delete": false, "file_type": 1, "original_file_name": "1057#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509d2cc9f2bc4fffb925b47a969d9dab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509d2cc9f2bc4fffb925b47a969d9dab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509d2cc9f2bc4fffb925b47a969d9dab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/509d2cc9f2bc4fffb925b47a969d9dab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/509d2cc9f2bc4fffb925b47a969d9dab.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibVF334Mg9bjyEF-Sl_QvOwySQw=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.888073+00 2025-12-09 10:14:50.888077+00 6173 8010#枣红 SPMX-20240815301326 \N \N \N 1 \N [{"file_id": "1a238995-fbed-4d63-82bf-513fa1ae5f73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f4b22c0552944ad81a395801780eac5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f4b22c0552944ad81a395801780eac5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f4b22c0552944ad81a395801780eac5.jpg", "file_size": 26535, "is_delete": false, "file_type": 1, "original_file_name": "8010#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4b22c0552944ad81a395801780eac5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4b22c0552944ad81a395801780eac5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4b22c0552944ad81a395801780eac5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f4b22c0552944ad81a395801780eac5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f4b22c0552944ad81a395801780eac5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9v_-rACXfz0M8nHGoU9Ed6F4u5A=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.889351+00 2025-12-09 10:14:50.889355+00 6174 C272-2#卡其色L SPMX-20240815301323 \N \N \N 1 \N [{"file_id": "bf3540dc-5dfa-4018-8530-ccd45bc16464", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0314a0d1f964b91ac289835b37d0797.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0314a0d1f964b91ac289835b37d0797.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0314a0d1f964b91ac289835b37d0797.jpg", "file_size": 54226, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#卡其色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0314a0d1f964b91ac289835b37d0797.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0314a0d1f964b91ac289835b37d0797.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0314a0d1f964b91ac289835b37d0797.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0314a0d1f964b91ac289835b37d0797.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0314a0d1f964b91ac289835b37d0797.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:md489ApM4xlswBInURrf8mBi7_8=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.890644+00 2025-12-09 10:14:50.890648+00 6175 23-2102#A5袖口3XL SPMX-20240815301328 \N \N \N 1 \N [{"file_id": "cad11a15-53ba-47fd-9e1a-fdc2741b9f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c424290b845b4edcb2cc79cd88151f68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c424290b845b4edcb2cc79cd88151f68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c424290b845b4edcb2cc79cd88151f68.jpg", "file_size": 15430, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c424290b845b4edcb2cc79cd88151f68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c424290b845b4edcb2cc79cd88151f68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c424290b845b4edcb2cc79cd88151f68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c424290b845b4edcb2cc79cd88151f68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c424290b845b4edcb2cc79cd88151f68.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQgaLZIwAj7nlTq92jz7X9o0vQU=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.891943+00 2025-12-09 10:14:50.891948+00 6176 LZ1225#童装T4号色 SPMX-20240815301317 \N \N \N 1 \N [{"file_id": "f3fcc24e-ce3e-428c-9156-6966376bae61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ce679fbd4b14ccfba87cf9fc34da434.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ce679fbd4b14ccfba87cf9fc34da434.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ce679fbd4b14ccfba87cf9fc34da434.jpg", "file_size": 16407, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ce679fbd4b14ccfba87cf9fc34da434.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ce679fbd4b14ccfba87cf9fc34da434.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ce679fbd4b14ccfba87cf9fc34da434.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ce679fbd4b14ccfba87cf9fc34da434.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ce679fbd4b14ccfba87cf9fc34da434.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ydkW5hL8rowYe65W2rc9C5SvQNA=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.893236+00 2025-12-09 10:14:50.89324+00 6177 LHJ9296-2#20枣红 SPMX-20240815301319 \N \N \N 1 \N [{"file_id": "7038e15e-a6e7-445b-ab33-8e89c1aa3d84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5da8764f2d354b93b148fa09ef9077bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5da8764f2d354b93b148fa09ef9077bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5da8764f2d354b93b148fa09ef9077bf.jpg", "file_size": 27910, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9296-2#20枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da8764f2d354b93b148fa09ef9077bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da8764f2d354b93b148fa09ef9077bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da8764f2d354b93b148fa09ef9077bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5da8764f2d354b93b148fa09ef9077bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5da8764f2d354b93b148fa09ef9077bf.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRhTfVEYNRFbgiepc6jTkJcrZwc=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.894526+00 2025-12-09 10:14:50.894531+00 6178 LZ1225#童装T5号色 SPMX-20240815301329 \N \N \N 1 \N [{"file_id": "cf4bd28f-69a7-4e3d-973e-8028a83aa967", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81fdd2c190864e88901f4015df5d05f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81fdd2c190864e88901f4015df5d05f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81fdd2c190864e88901f4015df5d05f2.jpg", "file_size": 16396, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81fdd2c190864e88901f4015df5d05f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81fdd2c190864e88901f4015df5d05f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81fdd2c190864e88901f4015df5d05f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81fdd2c190864e88901f4015df5d05f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81fdd2c190864e88901f4015df5d05f2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cpH6_FjUR8DZjhGSwfIhl1CmWs=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.895818+00 2025-12-09 10:14:50.895823+00 6179 HT-Y-A06#RC23 SPMX-20240815301322 \N \N \N 1 \N [{"file_id": "81ec8e31-b5a6-4e57-a38d-d5a7fa2d0e0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12192f0b4311419eb8dbae4c3818b74f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12192f0b4311419eb8dbae4c3818b74f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12192f0b4311419eb8dbae4c3818b74f.jpg", "file_size": 50243, "is_delete": false, "file_type": 1, "original_file_name": "HT-Y-A06#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12192f0b4311419eb8dbae4c3818b74f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12192f0b4311419eb8dbae4c3818b74f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12192f0b4311419eb8dbae4c3818b74f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12192f0b4311419eb8dbae4c3818b74f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12192f0b4311419eb8dbae4c3818b74f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7Zr8PxmqViVKv643eIuDw6VF54=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.897106+00 2025-12-09 10:14:50.89711+00 6180 DH52042338TFW#XS黑 SPMX-20240815301330 \N \N \N 1 \N [{"file_id": "a6ce4684-e271-4ceb-a54a-151d6e4db34c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ac90a7ef9f64d409eb84da381358a80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ac90a7ef9f64d409eb84da381358a80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ac90a7ef9f64d409eb84da381358a80.jpg", "file_size": 6557, "is_delete": false, "file_type": 1, "original_file_name": "DH52042338TFW#XS黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ac90a7ef9f64d409eb84da381358a80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ac90a7ef9f64d409eb84da381358a80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ac90a7ef9f64d409eb84da381358a80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ac90a7ef9f64d409eb84da381358a80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ac90a7ef9f64d409eb84da381358a80.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zzt4Hrin_a8r7SCrh24hnro5qtI=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.898425+00 2025-12-09 10:14:50.898429+00 6181 0003-19FWF#V5曲线 SPMX-20240815301325 \N \N \N 1 \N [{"file_id": "ef5ad0ff-4cbc-4fd4-8dd5-ddd02c08b2d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a7a5fe30d14e77ade42a1255070abd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a7a5fe30d14e77ade42a1255070abd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a7a5fe30d14e77ade42a1255070abd.jpg", "file_size": 29815, "is_delete": false, "file_type": 1, "original_file_name": "0003-19FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a7a5fe30d14e77ade42a1255070abd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a7a5fe30d14e77ade42a1255070abd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a7a5fe30d14e77ade42a1255070abd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a7a5fe30d14e77ade42a1255070abd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a7a5fe30d14e77ade42a1255070abd.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yna2y3dLvXFwKSjWXuVcRuULArI=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.899699+00 2025-12-09 10:14:50.899702+00 6182 0003-19FWE#VS-D3龙潭调色 SPMX-20240815301316 \N \N \N 1 \N [{"file_id": "56942cf2-33ca-4ccf-bdae-10e66b1108c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg", "file_size": 17698, "is_delete": false, "file_type": 1, "original_file_name": "0003-19FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8beb1bc8c2470d8ef4dfea9ea2406c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqilz7qydSvarKLX1S3mFgwgPD8=", "createTime": "2024-08-15 14:43:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.900993+00 2025-12-09 10:14:50.900997+00 6183 JT001# SPMX-20240815301320 \N \N \N 1 \N [{"file_id": "8827535a-ac9a-4610-9009-4b61621e3306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17b85530e8354a7a91685623142a3486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17b85530e8354a7a91685623142a3486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17b85530e8354a7a91685623142a3486.jpg", "file_size": 19396, "is_delete": false, "file_type": 1, "original_file_name": "JT001#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b85530e8354a7a91685623142a3486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b85530e8354a7a91685623142a3486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b85530e8354a7a91685623142a3486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17b85530e8354a7a91685623142a3486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17b85530e8354a7a91685623142a3486.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVXIMdYKGnZX_j5ZwQrOU_tmXko=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.902281+00 2025-12-09 10:14:50.902285+00 6184 23-2102#A5短袖子4XL SPMX-20240815301318 \N \N \N 1 \N [{"file_id": "305c26a6-8ac9-4317-8da8-8c653265f4c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a1d5fda40324bf784b37f9fafd3bce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a1d5fda40324bf784b37f9fafd3bce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a1d5fda40324bf784b37f9fafd3bce3.jpg", "file_size": 14926, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5短袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1d5fda40324bf784b37f9fafd3bce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1d5fda40324bf784b37f9fafd3bce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1d5fda40324bf784b37f9fafd3bce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a1d5fda40324bf784b37f9fafd3bce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a1d5fda40324bf784b37f9fafd3bce3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfOMYndSOAasWZRH_uN5vSfQ7Wc=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.903585+00 2025-12-09 10:14:50.903589+00 6185 FHXGPK-041-1 SPMX-20240815301327 \N \N \N 1 \N [{"file_id": "f7be5c2e-f636-4630-be68-36a166aceb62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg", "file_size": 39029, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-041-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bd4674beb4b4ac8b6fb6ef8024e3ce3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Whl3le9_OhqAgCgrwjQ3LG2NW8M=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.904876+00 2025-12-09 10:14:50.90488+00 6186 LZ1225#童装T6号色 SPMX-20240815301339 \N \N \N 1 \N [{"file_id": "4e2a2030-385d-4a91-aa38-baa889d719b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "602ed279eca24a63b75a6052c5f06348.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "602ed279eca24a63b75a6052c5f06348.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "602ed279eca24a63b75a6052c5f06348.jpg", "file_size": 18240, "is_delete": false, "file_type": 1, "original_file_name": "LZ1225#童装T6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602ed279eca24a63b75a6052c5f06348.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602ed279eca24a63b75a6052c5f06348.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602ed279eca24a63b75a6052c5f06348.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/602ed279eca24a63b75a6052c5f06348.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/602ed279eca24a63b75a6052c5f06348.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNfmHAbtmaVCzd9mtn_PSYPZV_w=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.90618+00 2025-12-09 10:14:50.906184+00 6187 LHJ9296-2#25土黄 SPMX-20240815301331 \N \N \N 1 \N [{"file_id": "259a9862-8423-42d8-90f1-f751747a6b7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b752feb2720c421eb6680cfc5a3172a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b752feb2720c421eb6680cfc5a3172a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b752feb2720c421eb6680cfc5a3172a4.jpg", "file_size": 25973, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9296-2#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b752feb2720c421eb6680cfc5a3172a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b752feb2720c421eb6680cfc5a3172a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b752feb2720c421eb6680cfc5a3172a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b752feb2720c421eb6680cfc5a3172a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b752feb2720c421eb6680cfc5a3172a4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-bmxxyGyKmCa5yoJ-v4mKZT9Tw=", "createTime": "2024-08-15 14:43:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.907481+00 2025-12-09 10:14:50.907485+00 6188 HT001#VSD3 SPMX-20240815301332 \N \N \N 1 \N [{"file_id": "ea711560-956a-42bc-8278-d4ddcb42a25b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66767482f0eb4fd7a93cacd04bafbc99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66767482f0eb4fd7a93cacd04bafbc99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66767482f0eb4fd7a93cacd04bafbc99.jpg", "file_size": 12922, "is_delete": false, "file_type": 1, "original_file_name": "HT001#VSD3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66767482f0eb4fd7a93cacd04bafbc99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66767482f0eb4fd7a93cacd04bafbc99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66767482f0eb4fd7a93cacd04bafbc99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66767482f0eb4fd7a93cacd04bafbc99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66767482f0eb4fd7a93cacd04bafbc99.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHvUKNAkXv-JYlSggOIaVzf-DZw=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.908796+00 2025-12-09 10:14:50.9088+00 6189 JT001#深蓝140克牛奶丝 SPMX-20240815301345 \N \N \N 1 \N [{"file_id": "0ad15bee-3fd7-4ad1-ade8-11dd42f20a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f424ad00e0f844019142fc2edcdef492.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f424ad00e0f844019142fc2edcdef492.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f424ad00e0f844019142fc2edcdef492.jpg", "file_size": 23278, "is_delete": false, "file_type": 1, "original_file_name": "JT001#深蓝140克牛奶丝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f424ad00e0f844019142fc2edcdef492.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f424ad00e0f844019142fc2edcdef492.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f424ad00e0f844019142fc2edcdef492.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f424ad00e0f844019142fc2edcdef492.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f424ad00e0f844019142fc2edcdef492.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUsWcjQK1dyW5H0C1njYYNbW8b8=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.910088+00 2025-12-09 10:14:50.910092+00 6190 8010#皮粉 SPMX-20240815301337 \N \N \N 1 \N [{"file_id": "24d9ba20-2583-4e25-9f2f-f8df1d834002", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5009a87b6174f20b373b8fed7f6687b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5009a87b6174f20b373b8fed7f6687b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5009a87b6174f20b373b8fed7f6687b.jpg", "file_size": 25546, "is_delete": false, "file_type": 1, "original_file_name": "8010#皮粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5009a87b6174f20b373b8fed7f6687b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5009a87b6174f20b373b8fed7f6687b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5009a87b6174f20b373b8fed7f6687b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5009a87b6174f20b373b8fed7f6687b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5009a87b6174f20b373b8fed7f6687b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ha1HkLcyvV2GVd1roKz-LBAbUF8=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.911366+00 2025-12-09 10:14:50.91137+00 6191 HT001#亮黄 SPMX-20240815301342 \N \N \N 1 \N [{"file_id": "6005a84f-0504-4ab1-97c3-6610d86a24c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1e57e17a5ff4871b5ebebaba1770f4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1e57e17a5ff4871b5ebebaba1770f4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1e57e17a5ff4871b5ebebaba1770f4f.jpg", "file_size": 6637, "is_delete": false, "file_type": 1, "original_file_name": "HT001#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e57e17a5ff4871b5ebebaba1770f4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e57e17a5ff4871b5ebebaba1770f4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e57e17a5ff4871b5ebebaba1770f4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1e57e17a5ff4871b5ebebaba1770f4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1e57e17a5ff4871b5ebebaba1770f4f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:le2MFXoLMmSiqRhWZ18rn7Wzqq4=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.912644+00 2025-12-09 10:14:50.912648+00 6192 0003-1FWE#VS-D3 SPMX-20240815301336 \N \N \N 1 \N [{"file_id": "1d91e8ef-a102-45ea-81a8-95c735de1518", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbdbbe87c109445d8b8659233313abf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbdbbe87c109445d8b8659233313abf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbdbbe87c109445d8b8659233313abf6.jpg", "file_size": 14530, "is_delete": false, "file_type": 1, "original_file_name": "0003-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbdbbe87c109445d8b8659233313abf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbdbbe87c109445d8b8659233313abf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbdbbe87c109445d8b8659233313abf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbdbbe87c109445d8b8659233313abf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbdbbe87c109445d8b8659233313abf6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khoZHr7M3T8pBJeKULTh-WVEEC0=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.913945+00 2025-12-09 10:14:50.913949+00 6193 FHXGPK-042-1 SPMX-20240815301340 \N \N \N 1 \N [{"file_id": "fa1b6cbc-7f2a-43dd-8400-0665918dbc87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6910b4517874928a18d9476f4e0f569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6910b4517874928a18d9476f4e0f569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6910b4517874928a18d9476f4e0f569.jpg", "file_size": 28404, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-042-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6910b4517874928a18d9476f4e0f569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6910b4517874928a18d9476f4e0f569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6910b4517874928a18d9476f4e0f569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6910b4517874928a18d9476f4e0f569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6910b4517874928a18d9476f4e0f569.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:58xAPMMSXTagN_kPDoTgQKgj4Ac=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.915232+00 2025-12-09 10:14:50.915236+00 6194 1057#青色 SPMX-20240815301344 \N \N \N 1 \N [{"file_id": "997becc6-7f78-4180-9bbd-092fb83955f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd18ef45016f46efb62411638da808f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd18ef45016f46efb62411638da808f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd18ef45016f46efb62411638da808f5.jpg", "file_size": 16529, "is_delete": false, "file_type": 1, "original_file_name": "1057#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18ef45016f46efb62411638da808f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18ef45016f46efb62411638da808f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18ef45016f46efb62411638da808f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd18ef45016f46efb62411638da808f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd18ef45016f46efb62411638da808f5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PYsFbwJtIA5ilHH1LYp7cC0YLE=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.916516+00 2025-12-09 10:14:50.916519+00 6195 C272-2#卡其色XL SPMX-20240815301335 \N \N \N 1 \N [{"file_id": "a26d85f7-b1f5-4c56-b166-afa7e199b188", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78f14e761c68462587ebdb81e3fa21c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78f14e761c68462587ebdb81e3fa21c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78f14e761c68462587ebdb81e3fa21c1.jpg", "file_size": 53609, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#卡其色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f14e761c68462587ebdb81e3fa21c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f14e761c68462587ebdb81e3fa21c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f14e761c68462587ebdb81e3fa21c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78f14e761c68462587ebdb81e3fa21c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78f14e761c68462587ebdb81e3fa21c1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZem5hegPKZhIACEWkgDPj2XBkA=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.917789+00 2025-12-09 10:14:50.917793+00 6196 JT001#E SPMX-20240815301334 \N \N \N 1 \N [{"file_id": "1ac74e99-497c-428a-9f8a-bddccec0a996", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab043407ceef43f195a981fdeb317f60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab043407ceef43f195a981fdeb317f60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab043407ceef43f195a981fdeb317f60.jpg", "file_size": 16718, "is_delete": false, "file_type": 1, "original_file_name": "JT001#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab043407ceef43f195a981fdeb317f60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab043407ceef43f195a981fdeb317f60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab043407ceef43f195a981fdeb317f60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab043407ceef43f195a981fdeb317f60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab043407ceef43f195a981fdeb317f60.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plcJUX-7Idnujmg0BvPX8ZOl-Z8=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.919108+00 2025-12-09 10:14:50.919112+00 6197 23-2102#A5袖口包条3XL SPMX-20240815301338 \N \N \N 1 \N [{"file_id": "894a411a-ea5f-4546-9545-d144f1bc5c47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80494e82d1be40819b5537fd1fb8fc1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80494e82d1be40819b5537fd1fb8fc1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80494e82d1be40819b5537fd1fb8fc1d.jpg", "file_size": 11635, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80494e82d1be40819b5537fd1fb8fc1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80494e82d1be40819b5537fd1fb8fc1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80494e82d1be40819b5537fd1fb8fc1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80494e82d1be40819b5537fd1fb8fc1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80494e82d1be40819b5537fd1fb8fc1d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xg7p3uKggxfHWJ_mNzzWeOvsk6c=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.920429+00 2025-12-09 10:14:50.920434+00 6198 LHJ9296-2#5彩兰 SPMX-20240815301341 \N \N \N 1 \N [{"file_id": "ea81aa08-3605-40e3-8794-f2673b1c070e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fe08811cb1f43fdbf2387fd6e712189.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fe08811cb1f43fdbf2387fd6e712189.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fe08811cb1f43fdbf2387fd6e712189.jpg", "file_size": 27079, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9296-2#5彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe08811cb1f43fdbf2387fd6e712189.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe08811cb1f43fdbf2387fd6e712189.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe08811cb1f43fdbf2387fd6e712189.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fe08811cb1f43fdbf2387fd6e712189.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fe08811cb1f43fdbf2387fd6e712189.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:57Biag7hVFk2G8iH0ksJjCF4Q3M=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.921715+00 2025-12-09 10:14:50.921719+00 6199 1057#粉色净色 SPMX-20240815301333 \N \N \N 1 \N [{"file_id": "d20ab230-dd9d-4852-bc14-c60bf85b8e7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b65eeae932e5482f8c367cfc982857c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b65eeae932e5482f8c367cfc982857c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b65eeae932e5482f8c367cfc982857c3.jpg", "file_size": 4296, "is_delete": false, "file_type": 1, "original_file_name": "1057#粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65eeae932e5482f8c367cfc982857c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65eeae932e5482f8c367cfc982857c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65eeae932e5482f8c367cfc982857c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b65eeae932e5482f8c367cfc982857c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b65eeae932e5482f8c367cfc982857c3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r27CITAZBeTojYXYP1ZDTS_ml_E=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.923024+00 2025-12-09 10:14:50.923029+00 6200 DH681#橙色2XL SPMX-20240815301343 \N \N \N 1 \N [{"file_id": "482aa8a9-56a7-4fd3-8260-76dc4d8b6b7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "776b1d8c5b6f4627b1b5d2d9110bcb21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "776b1d8c5b6f4627b1b5d2d9110bcb21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "776b1d8c5b6f4627b1b5d2d9110bcb21.jpg", "file_size": 66229, "is_delete": false, "file_type": 1, "original_file_name": "DH681#橙色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776b1d8c5b6f4627b1b5d2d9110bcb21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776b1d8c5b6f4627b1b5d2d9110bcb21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776b1d8c5b6f4627b1b5d2d9110bcb21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/776b1d8c5b6f4627b1b5d2d9110bcb21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/776b1d8c5b6f4627b1b5d2d9110bcb21.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHiw2aXYBMaIrnAeWXVIHqz3GeI=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.92432+00 2025-12-09 10:14:50.924324+00 6201 1057#青色净色 SPMX-20240815301355 \N \N \N 1 \N [{"file_id": "fa426fed-564b-42f4-9245-1a277f107233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac17a8d523e547099af09785662ad630.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac17a8d523e547099af09785662ad630.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac17a8d523e547099af09785662ad630.jpg", "file_size": 4263, "is_delete": false, "file_type": 1, "original_file_name": "1057#青色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac17a8d523e547099af09785662ad630.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac17a8d523e547099af09785662ad630.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac17a8d523e547099af09785662ad630.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac17a8d523e547099af09785662ad630.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac17a8d523e547099af09785662ad630.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FbARNDTKAdqCwgGGAmhHQyVMhM=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.925601+00 2025-12-09 10:14:50.925606+00 6202 DH681#橙色L SPMX-20240815301356 \N \N \N 1 \N [{"file_id": "c4332be6-023d-477c-9d20-a74b33939fe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0764c9285e7345368eb6f11f459edba6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0764c9285e7345368eb6f11f459edba6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0764c9285e7345368eb6f11f459edba6.jpg", "file_size": 70188, "is_delete": false, "file_type": 1, "original_file_name": "DH681#橙色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0764c9285e7345368eb6f11f459edba6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0764c9285e7345368eb6f11f459edba6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0764c9285e7345368eb6f11f459edba6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0764c9285e7345368eb6f11f459edba6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0764c9285e7345368eb6f11f459edba6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2vGGnnFVx0nAr5_dAynQcWLVsc=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.926886+00 2025-12-09 10:14:50.92689+00 6203 HT001#白底 SPMX-20240815301353 \N \N \N 1 \N [{"file_id": "d23ff60b-65ed-4162-a619-4ca0a661dfd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e16d4e559a1b4f71b22de2ffbc047f3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e16d4e559a1b4f71b22de2ffbc047f3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e16d4e559a1b4f71b22de2ffbc047f3d.jpg", "file_size": 18542, "is_delete": false, "file_type": 1, "original_file_name": "HT001#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16d4e559a1b4f71b22de2ffbc047f3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16d4e559a1b4f71b22de2ffbc047f3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16d4e559a1b4f71b22de2ffbc047f3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e16d4e559a1b4f71b22de2ffbc047f3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e16d4e559a1b4f71b22de2ffbc047f3d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RikZng85Dt7r0L6PACe_4S6CLc=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.928153+00 2025-12-09 10:14:50.928157+00 6204 C272-2#卡其色匹布 SPMX-20240815301346 \N \N \N 1 \N [{"file_id": "88dea9d7-10f5-4b47-b762-5504dc8e96ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05ae1ad8ed1f45e390bd3be489f370a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05ae1ad8ed1f45e390bd3be489f370a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05ae1ad8ed1f45e390bd3be489f370a1.jpg", "file_size": 59603, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#卡其色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ae1ad8ed1f45e390bd3be489f370a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ae1ad8ed1f45e390bd3be489f370a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ae1ad8ed1f45e390bd3be489f370a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05ae1ad8ed1f45e390bd3be489f370a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05ae1ad8ed1f45e390bd3be489f370a1.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yswsAWiS52Mw2ZGL0rmXqoQzR_k=", "createTime": "2024-08-15 14:43:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.929442+00 2025-12-09 10:14:50.929446+00 6205 JT001#深蓝玮弹 SPMX-20240815301354 \N \N \N 1 \N [{"file_id": "dcf1ab98-eceb-4d13-bf2b-9124380f07b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c59d575bbd7445888a75533975e56d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c59d575bbd7445888a75533975e56d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c59d575bbd7445888a75533975e56d2.jpg", "file_size": 23278, "is_delete": false, "file_type": 1, "original_file_name": "JT001#深蓝玮弹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59d575bbd7445888a75533975e56d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59d575bbd7445888a75533975e56d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59d575bbd7445888a75533975e56d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c59d575bbd7445888a75533975e56d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c59d575bbd7445888a75533975e56d2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KXqqNccwQMoPytMIhekWfay2_s=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.930726+00 2025-12-09 10:14:50.93073+00 6206 FHXGPK-043-1 SPMX-20240815301350 \N \N \N 1 \N [{"file_id": "5312a24b-0a59-450b-8577-7ef1c91a1502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c001c8a9a44a4754b76dae8cbd2f04a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c001c8a9a44a4754b76dae8cbd2f04a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c001c8a9a44a4754b76dae8cbd2f04a4.jpg", "file_size": 41078, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-043-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c001c8a9a44a4754b76dae8cbd2f04a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c001c8a9a44a4754b76dae8cbd2f04a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c001c8a9a44a4754b76dae8cbd2f04a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c001c8a9a44a4754b76dae8cbd2f04a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c001c8a9a44a4754b76dae8cbd2f04a4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrtL06i9yVz-Cprd4po7S9wosNc=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.932015+00 2025-12-09 10:14:50.932019+00 6207 LHJ9301#20枣红 SPMX-20240815301352 \N \N \N 1 \N [{"file_id": "3214c679-6ff4-44c7-834d-d7de1548f476", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "359d9d69fdde47dba51f16da2c2f868b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "359d9d69fdde47dba51f16da2c2f868b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "359d9d69fdde47dba51f16da2c2f868b.jpg", "file_size": 17222, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9301#20枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359d9d69fdde47dba51f16da2c2f868b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359d9d69fdde47dba51f16da2c2f868b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359d9d69fdde47dba51f16da2c2f868b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/359d9d69fdde47dba51f16da2c2f868b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/359d9d69fdde47dba51f16da2c2f868b.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7sU5Mdsb1fgQ2s4ru17kGAd5W0=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.933294+00 2025-12-09 10:14:50.933298+00 6208 0003-1FWF#V5曲线 SPMX-20240815301347 \N \N \N 1 \N [{"file_id": "5f55ce97-5203-4b3a-ac22-d19e2e1d807d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6452debe9484e39ad910da67bbdd53d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6452debe9484e39ad910da67bbdd53d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6452debe9484e39ad910da67bbdd53d.jpg", "file_size": 19766, "is_delete": false, "file_type": 1, "original_file_name": "0003-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6452debe9484e39ad910da67bbdd53d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6452debe9484e39ad910da67bbdd53d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6452debe9484e39ad910da67bbdd53d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6452debe9484e39ad910da67bbdd53d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6452debe9484e39ad910da67bbdd53d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcUs_B_4wxooMCsBPD8FZM48iEg=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.934574+00 2025-12-09 10:14:50.934578+00 6209 8010#黄色 SPMX-20240815301348 \N \N \N 1 \N [{"file_id": "76b10947-aa71-4c7a-908e-c398cd75b889", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f11dea44d8c4592a8dc29b44d0e7f09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f11dea44d8c4592a8dc29b44d0e7f09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f11dea44d8c4592a8dc29b44d0e7f09.jpg", "file_size": 26604, "is_delete": false, "file_type": 1, "original_file_name": "8010#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f11dea44d8c4592a8dc29b44d0e7f09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f11dea44d8c4592a8dc29b44d0e7f09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f11dea44d8c4592a8dc29b44d0e7f09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f11dea44d8c4592a8dc29b44d0e7f09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f11dea44d8c4592a8dc29b44d0e7f09.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOphgqZreveLhJSCzbV3zK226Nw=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.935922+00 2025-12-09 10:14:50.935927+00 6210 0003-2#LWQ15 SPMX-20240815301358 \N \N \N 1 \N [{"file_id": "f6c3a2be-2fd5-4b6a-9c5f-63a44c362e85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814d6bef9fbd484bb48b8b3eec558d4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814d6bef9fbd484bb48b8b3eec558d4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814d6bef9fbd484bb48b8b3eec558d4e.jpg", "file_size": 16912, "is_delete": false, "file_type": 1, "original_file_name": "0003-2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814d6bef9fbd484bb48b8b3eec558d4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814d6bef9fbd484bb48b8b3eec558d4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814d6bef9fbd484bb48b8b3eec558d4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814d6bef9fbd484bb48b8b3eec558d4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814d6bef9fbd484bb48b8b3eec558d4e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ZWNtM4qf3hh3GWDBpw-ha773Mw=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.937254+00 2025-12-09 10:14:50.937258+00 6211 FHXGPK-044-1 SPMX-20240815301361 \N \N \N 1 \N [{"file_id": "804ba29c-8860-4b7e-b7e3-ef450ebe2631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f81373cd01b24b30834d5fb8d3a00073.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f81373cd01b24b30834d5fb8d3a00073.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f81373cd01b24b30834d5fb8d3a00073.jpg", "file_size": 20050, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-044-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81373cd01b24b30834d5fb8d3a00073.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81373cd01b24b30834d5fb8d3a00073.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81373cd01b24b30834d5fb8d3a00073.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f81373cd01b24b30834d5fb8d3a00073.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f81373cd01b24b30834d5fb8d3a00073.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:prJll6DH7-ZEZL9lJxhrhd-RJUQ=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.938554+00 2025-12-09 10:14:50.938558+00 6212 23-2102#A5长袖子3XL SPMX-20240815301349 \N \N \N 1 \N [{"file_id": "55323d19-3313-4a3d-b953-6712268619c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95de0daa0fe64261a44225ab02ee0a3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95de0daa0fe64261a44225ab02ee0a3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95de0daa0fe64261a44225ab02ee0a3f.jpg", "file_size": 25548, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95de0daa0fe64261a44225ab02ee0a3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95de0daa0fe64261a44225ab02ee0a3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95de0daa0fe64261a44225ab02ee0a3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95de0daa0fe64261a44225ab02ee0a3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95de0daa0fe64261a44225ab02ee0a3f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhRNBIXzVJOJGBb3VRva65X34PI=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.939892+00 2025-12-09 10:14:50.939896+00 6213 8013#-女M+女L+男S SPMX-20240815301359 \N \N \N 1 \N [{"file_id": "beeda90f-e0d0-4089-82f2-da077e3a394f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71ab6764f245418c9d929b7de9da2531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71ab6764f245418c9d929b7de9da2531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71ab6764f245418c9d929b7de9da2531.jpg", "file_size": 60702, "is_delete": false, "file_type": 1, "original_file_name": "8013#-女M+女L+男S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ab6764f245418c9d929b7de9da2531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ab6764f245418c9d929b7de9da2531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ab6764f245418c9d929b7de9da2531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71ab6764f245418c9d929b7de9da2531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71ab6764f245418c9d929b7de9da2531.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZzW49bhKDE8SOKtRrApjy_932cQ=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.9412+00 2025-12-09 10:14:50.941204+00 6214 C272-2#绿色2XL SPMX-20240815301357 \N \N \N 1 \N [{"file_id": "d348223b-bdaa-4689-84ce-c714018f1404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e15c3d8e6f294534bc35b42d519caf93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e15c3d8e6f294534bc35b42d519caf93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e15c3d8e6f294534bc35b42d519caf93.jpg", "file_size": 51625, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15c3d8e6f294534bc35b42d519caf93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15c3d8e6f294534bc35b42d519caf93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e15c3d8e6f294534bc35b42d519caf93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e15c3d8e6f294534bc35b42d519caf93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e15c3d8e6f294534bc35b42d519caf93.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWCGBzFkDNnMCAyhY1PgCTlw9ns=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.942508+00 2025-12-09 10:14:50.942512+00 6215 23-2102#A5长袖子4XL SPMX-20240815301360 \N \N \N 1 \N [{"file_id": "8607f367-f909-402a-8252-c4b282d009a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "910edeede9764d50b5649ab06b3415cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "910edeede9764d50b5649ab06b3415cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "910edeede9764d50b5649ab06b3415cc.jpg", "file_size": 27002, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910edeede9764d50b5649ab06b3415cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910edeede9764d50b5649ab06b3415cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910edeede9764d50b5649ab06b3415cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/910edeede9764d50b5649ab06b3415cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/910edeede9764d50b5649ab06b3415cc.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRJj_GesLJJbipV2o0SRSHthako=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.943821+00 2025-12-09 10:14:50.943825+00 6216 LZ1226#上身1号色 SPMX-20240815301351 \N \N \N 1 \N [{"file_id": "06e99fcf-7c67-4e92-9d8d-427e01804a55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07303cf4d50146ffa7010eb3a3e01797.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07303cf4d50146ffa7010eb3a3e01797.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07303cf4d50146ffa7010eb3a3e01797.jpg", "file_size": 18396, "is_delete": false, "file_type": 1, "original_file_name": "LZ1226#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07303cf4d50146ffa7010eb3a3e01797.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07303cf4d50146ffa7010eb3a3e01797.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07303cf4d50146ffa7010eb3a3e01797.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07303cf4d50146ffa7010eb3a3e01797.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07303cf4d50146ffa7010eb3a3e01797.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQC0DWW9RX0PRq3GHIrw9GSkufI=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.945107+00 2025-12-09 10:14:50.945111+00 6217 LZ1226#上身3号色 SPMX-20240815301375 \N \N \N 1 \N [{"file_id": "32d93839-02e3-44c2-8f6e-2daa6ffc7428", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b1780c9829242f7ae012f10cc1ab592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b1780c9829242f7ae012f10cc1ab592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b1780c9829242f7ae012f10cc1ab592.jpg", "file_size": 18243, "is_delete": false, "file_type": 1, "original_file_name": "LZ1226#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1780c9829242f7ae012f10cc1ab592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1780c9829242f7ae012f10cc1ab592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1780c9829242f7ae012f10cc1ab592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b1780c9829242f7ae012f10cc1ab592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b1780c9829242f7ae012f10cc1ab592.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoFd9C-WLDlWKu8BUmHhRRaf24M=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.946414+00 2025-12-09 10:14:50.946418+00 6218 1058#杏色 SPMX-20240815301366 \N \N \N 1 \N [{"file_id": "7d089207-85f6-498e-8aee-62f33c4ff956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a72cee250a94a5e9bf58a84dc43e6b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a72cee250a94a5e9bf58a84dc43e6b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a72cee250a94a5e9bf58a84dc43e6b4.jpg", "file_size": 17920, "is_delete": false, "file_type": 1, "original_file_name": "1058#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a72cee250a94a5e9bf58a84dc43e6b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a72cee250a94a5e9bf58a84dc43e6b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a72cee250a94a5e9bf58a84dc43e6b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a72cee250a94a5e9bf58a84dc43e6b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a72cee250a94a5e9bf58a84dc43e6b4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kAozdQDVWL0KBBji_hWREud05V4=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.947698+00 2025-12-09 10:14:50.947702+00 6219 0003-200FWF#WJC22曲线 SPMX-20240815301368 \N \N \N 1 \N [{"file_id": "1487d656-10a0-4dfc-89f9-2484493a02bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24b82764384c495b9a2e45beedbe8d8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24b82764384c495b9a2e45beedbe8d8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24b82764384c495b9a2e45beedbe8d8d.jpg", "file_size": 27858, "is_delete": false, "file_type": 1, "original_file_name": "0003-200FWF#WJC22曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b82764384c495b9a2e45beedbe8d8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b82764384c495b9a2e45beedbe8d8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b82764384c495b9a2e45beedbe8d8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24b82764384c495b9a2e45beedbe8d8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24b82764384c495b9a2e45beedbe8d8d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EjNKv8sbpCRk9E1Jg2pVnL3yJiE=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.948999+00 2025-12-09 10:14:50.949004+00 6220 JT001FW#黄色 SPMX-20240815301377 \N \N \N 1 \N [{"file_id": "714d21fb-1f49-4276-ada7-0e6bf4b05027", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6164fdf60ae648e3af0d9de71834bef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6164fdf60ae648e3af0d9de71834bef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6164fdf60ae648e3af0d9de71834bef7.jpg", "file_size": 18820, "is_delete": false, "file_type": 1, "original_file_name": "JT001FW#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6164fdf60ae648e3af0d9de71834bef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6164fdf60ae648e3af0d9de71834bef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6164fdf60ae648e3af0d9de71834bef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6164fdf60ae648e3af0d9de71834bef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6164fdf60ae648e3af0d9de71834bef7.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ru5fQ4WcyhTLDiZSGTUjN2G3HGA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.950286+00 2025-12-09 10:14:50.95029+00 6221 LHJ9301#25土黄 SPMX-20240815301362 \N \N \N 1 \N [{"file_id": "b604ca8b-2661-42fd-a365-9b3aacbaab97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "210447d50561430d8a4f93474ae21e52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "210447d50561430d8a4f93474ae21e52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "210447d50561430d8a4f93474ae21e52.jpg", "file_size": 16364, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9301#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210447d50561430d8a4f93474ae21e52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210447d50561430d8a4f93474ae21e52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210447d50561430d8a4f93474ae21e52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/210447d50561430d8a4f93474ae21e52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/210447d50561430d8a4f93474ae21e52.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODQChn7m1rxS5NJPjru939O5m8M=", "createTime": "2024-08-15 14:43:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.951605+00 2025-12-09 10:14:50.95161+00 6222 HT001#黄色 SPMX-20240815301373 \N \N \N 1 \N [{"file_id": "6076128b-ba22-479c-9c77-cb9bdcee8e32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dca3b03f44cf4acf9965721d7ef15878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dca3b03f44cf4acf9965721d7ef15878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dca3b03f44cf4acf9965721d7ef15878.jpg", "file_size": 7040, "is_delete": false, "file_type": 1, "original_file_name": "HT001#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca3b03f44cf4acf9965721d7ef15878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca3b03f44cf4acf9965721d7ef15878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca3b03f44cf4acf9965721d7ef15878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dca3b03f44cf4acf9965721d7ef15878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dca3b03f44cf4acf9965721d7ef15878.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiHwqx6vx4SoBpnv3xKgeOd9DCs=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.952933+00 2025-12-09 10:14:50.952936+00 6223 LZ1226#上身2号色 SPMX-20240815301364 \N \N \N 1 \N [{"file_id": "4496f7ae-da99-4dab-806e-a6962b9c09c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c5b087c871344e4af7fb1ac3f3c1ad5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c5b087c871344e4af7fb1ac3f3c1ad5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c5b087c871344e4af7fb1ac3f3c1ad5.jpg", "file_size": 18223, "is_delete": false, "file_type": 1, "original_file_name": "LZ1226#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c5b087c871344e4af7fb1ac3f3c1ad5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c5b087c871344e4af7fb1ac3f3c1ad5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c5b087c871344e4af7fb1ac3f3c1ad5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c5b087c871344e4af7fb1ac3f3c1ad5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c5b087c871344e4af7fb1ac3f3c1ad5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgb7Z738VBiU_ZUepRMisfJU7UA=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.954227+00 2025-12-09 10:14:50.954231+00 6224 DH681#橙色M SPMX-20240815301367 \N \N \N 1 \N [{"file_id": "5c7098a7-1490-431c-97ad-6e9fc9aef7fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "720a950af7454ef284e950f400e11513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "720a950af7454ef284e950f400e11513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "720a950af7454ef284e950f400e11513.jpg", "file_size": 74589, "is_delete": false, "file_type": 1, "original_file_name": "DH681#橙色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720a950af7454ef284e950f400e11513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720a950af7454ef284e950f400e11513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720a950af7454ef284e950f400e11513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/720a950af7454ef284e950f400e11513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/720a950af7454ef284e950f400e11513.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTCdVTQ6P8ANYoPOizBB--EuJOI=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.955502+00 2025-12-09 10:14:50.955506+00 6225 JT001FW#蓝色 SPMX-20240815301365 \N \N \N 1 \N [{"file_id": "9932e34b-bfe4-481b-9f02-88e74c318577", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "844bd2bb7e894d03a1872aca3adb1602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "844bd2bb7e894d03a1872aca3adb1602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "844bd2bb7e894d03a1872aca3adb1602.jpg", "file_size": 19457, "is_delete": false, "file_type": 1, "original_file_name": "JT001FW#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844bd2bb7e894d03a1872aca3adb1602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844bd2bb7e894d03a1872aca3adb1602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844bd2bb7e894d03a1872aca3adb1602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/844bd2bb7e894d03a1872aca3adb1602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/844bd2bb7e894d03a1872aca3adb1602.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rO2F4mOwH4Ez910-G0ccZJKBch4=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.956805+00 2025-12-09 10:14:50.956809+00 6226 C272-2#绿色3XL SPMX-20240815301371 \N \N \N 1 \N [{"file_id": "93aaeaab-d38c-4141-a275-5a968c859c80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "864c2bf128964eb08d6d5e8addc6b542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "864c2bf128964eb08d6d5e8addc6b542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "864c2bf128964eb08d6d5e8addc6b542.jpg", "file_size": 51270, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#绿色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864c2bf128964eb08d6d5e8addc6b542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864c2bf128964eb08d6d5e8addc6b542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864c2bf128964eb08d6d5e8addc6b542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/864c2bf128964eb08d6d5e8addc6b542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/864c2bf128964eb08d6d5e8addc6b542.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLGP7ZU6hLhiIRyDNutyW6h1-DQ=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.95809+00 2025-12-09 10:14:50.958094+00 6227 8013#女M+女L+男S SPMX-20240815301370 \N \N \N 1 \N [{"file_id": "34a0f116-9307-48c1-ab0b-715e6b96e984", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196013c9798e471ab88b2664ed844115.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196013c9798e471ab88b2664ed844115.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196013c9798e471ab88b2664ed844115.jpg", "file_size": 61050, "is_delete": false, "file_type": 1, "original_file_name": "8013#女M+女L+男S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196013c9798e471ab88b2664ed844115.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196013c9798e471ab88b2664ed844115.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196013c9798e471ab88b2664ed844115.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196013c9798e471ab88b2664ed844115.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196013c9798e471ab88b2664ed844115.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-Q2xPnCa10_OB6qQgKUQWB_jXw=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.959407+00 2025-12-09 10:14:50.959411+00 6228 HT001#红色 SPMX-20240815301363 \N \N \N 1 \N [{"file_id": "dd759a8b-2c86-4742-84ab-f4abb20646ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de7d1ba5472a41eabe646bff3e73d3b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de7d1ba5472a41eabe646bff3e73d3b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de7d1ba5472a41eabe646bff3e73d3b7.jpg", "file_size": 6184, "is_delete": false, "file_type": 1, "original_file_name": "HT001#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7d1ba5472a41eabe646bff3e73d3b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7d1ba5472a41eabe646bff3e73d3b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7d1ba5472a41eabe646bff3e73d3b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de7d1ba5472a41eabe646bff3e73d3b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de7d1ba5472a41eabe646bff3e73d3b7.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KjO76jt5hq1KfjzhbQlqVanY_7o=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.960677+00 2025-12-09 10:14:50.960681+00 6229 FHXGPK-045-1 SPMX-20240815301372 \N \N \N 1 \N [{"file_id": "1ec68602-f107-4760-a5df-310ca9e15a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb0be8f56e7d494aa04a202ae52c89af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb0be8f56e7d494aa04a202ae52c89af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb0be8f56e7d494aa04a202ae52c89af.jpg", "file_size": 28135, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-045-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0be8f56e7d494aa04a202ae52c89af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0be8f56e7d494aa04a202ae52c89af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0be8f56e7d494aa04a202ae52c89af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb0be8f56e7d494aa04a202ae52c89af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb0be8f56e7d494aa04a202ae52c89af.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zE3SksWwPMInSOclNuCW-YSP3Eo=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.961996+00 2025-12-09 10:14:50.962+00 6230 1058#杏色匹布 SPMX-20240815301376 \N \N \N 1 \N [{"file_id": "829cfda1-e8c7-4fb6-b442-a5e500f4bd4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d53b5d71f3f42ccb573fb2f5c0c200e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d53b5d71f3f42ccb573fb2f5c0c200e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d53b5d71f3f42ccb573fb2f5c0c200e.jpg", "file_size": 15114, "is_delete": false, "file_type": 1, "original_file_name": "1058#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d53b5d71f3f42ccb573fb2f5c0c200e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d53b5d71f3f42ccb573fb2f5c0c200e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d53b5d71f3f42ccb573fb2f5c0c200e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d53b5d71f3f42ccb573fb2f5c0c200e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d53b5d71f3f42ccb573fb2f5c0c200e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dlVWrGgSPCLHuyUa58u93WEdQE=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.963273+00 2025-12-09 10:14:50.963278+00 6231 23-2102#A5领口 SPMX-20240815301369 \N \N \N 1 \N [{"file_id": "370d03ac-d3bb-45bf-89cb-8a5a027b2681", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf111f579d9438b9a6502b2bae58e63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf111f579d9438b9a6502b2bae58e63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf111f579d9438b9a6502b2bae58e63.jpg", "file_size": 12732, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf111f579d9438b9a6502b2bae58e63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf111f579d9438b9a6502b2bae58e63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf111f579d9438b9a6502b2bae58e63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf111f579d9438b9a6502b2bae58e63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf111f579d9438b9a6502b2bae58e63.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v40RB46PtyDxxteV4TmLGUdLas0=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.964578+00 2025-12-09 10:14:50.964582+00 6232 LHJ9301#37梅红 SPMX-20240815301374 \N \N \N 1 \N [{"file_id": "8568f467-a2b1-452f-81f1-22c055ceb768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ba2c12de2764173ab0c07aaf386ed02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ba2c12de2764173ab0c07aaf386ed02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ba2c12de2764173ab0c07aaf386ed02.jpg", "file_size": 16756, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9301#37梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba2c12de2764173ab0c07aaf386ed02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba2c12de2764173ab0c07aaf386ed02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba2c12de2764173ab0c07aaf386ed02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ba2c12de2764173ab0c07aaf386ed02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ba2c12de2764173ab0c07aaf386ed02.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iY6tygKdseWu8lP-X-I5w0VcwRk=", "createTime": "2024-08-15 14:43:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.965884+00 2025-12-09 10:14:50.965888+00 6233 8013#女M SPMX-20240815301382 \N \N \N 1 \N [{"file_id": "51e240bb-51f7-4e92-9657-f6bcde9ab766", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73947748742c4680bc9a41228b76a11f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73947748742c4680bc9a41228b76a11f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73947748742c4680bc9a41228b76a11f.jpg", "file_size": 55670, "is_delete": false, "file_type": 1, "original_file_name": "8013#女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73947748742c4680bc9a41228b76a11f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73947748742c4680bc9a41228b76a11f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73947748742c4680bc9a41228b76a11f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73947748742c4680bc9a41228b76a11f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73947748742c4680bc9a41228b76a11f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLgbg1-K8ofsQhRcGf4Z81Kl840=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.967183+00 2025-12-09 10:14:50.967187+00 6234 LHJ9301#5彩兰 SPMX-20240815301387 \N \N \N 1 \N [{"file_id": "fd4e91a8-9cb1-4af2-b5c2-a64c1a74b8d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436930032d4f453b86e10367b9c719bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436930032d4f453b86e10367b9c719bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436930032d4f453b86e10367b9c719bf.jpg", "file_size": 17000, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9301#5彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436930032d4f453b86e10367b9c719bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436930032d4f453b86e10367b9c719bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436930032d4f453b86e10367b9c719bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436930032d4f453b86e10367b9c719bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436930032d4f453b86e10367b9c719bf.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iaOAXoR0IuxdbYf7QKOxlxl9Pq8=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.968637+00 2025-12-09 10:14:50.968642+00 6235 FHXGPK-046-1 SPMX-20240815301383 \N \N \N 1 \N [{"file_id": "da02854c-c64c-443a-99f2-7510c86b6fb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1033a3ef31c94d3bbed079d67f1105fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1033a3ef31c94d3bbed079d67f1105fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1033a3ef31c94d3bbed079d67f1105fc.jpg", "file_size": 31435, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-046-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1033a3ef31c94d3bbed079d67f1105fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1033a3ef31c94d3bbed079d67f1105fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1033a3ef31c94d3bbed079d67f1105fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1033a3ef31c94d3bbed079d67f1105fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1033a3ef31c94d3bbed079d67f1105fc.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYfEcqUqMpM02O-rF98RRuxzIpc=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.970304+00 2025-12-09 10:14:50.970309+00 6236 LZ1226#上身4号色 SPMX-20240815301386 \N \N \N 1 \N [{"file_id": "07d91488-de50-435a-b777-7ed2917acbd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a19b2015c06e4495be13c548876a7086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a19b2015c06e4495be13c548876a7086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a19b2015c06e4495be13c548876a7086.jpg", "file_size": 18028, "is_delete": false, "file_type": 1, "original_file_name": "LZ1226#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19b2015c06e4495be13c548876a7086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19b2015c06e4495be13c548876a7086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19b2015c06e4495be13c548876a7086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a19b2015c06e4495be13c548876a7086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a19b2015c06e4495be13c548876a7086.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmBqE-CSWVJ6jBAehscGZUgTJQE=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.971815+00 2025-12-09 10:14:50.97182+00 6237 23-2102#A5领子通用 SPMX-20240815301380 \N \N \N 1 \N [{"file_id": "1016df6c-ff3c-4d58-924b-3b88efe265fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "577640f79cc04f50a4833e1949fe8f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "577640f79cc04f50a4833e1949fe8f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "577640f79cc04f50a4833e1949fe8f87.jpg", "file_size": 13447, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A5领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577640f79cc04f50a4833e1949fe8f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577640f79cc04f50a4833e1949fe8f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577640f79cc04f50a4833e1949fe8f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/577640f79cc04f50a4833e1949fe8f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/577640f79cc04f50a4833e1949fe8f87.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mPuykjXluFQ9b0QO6zyHsA402U=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.973311+00 2025-12-09 10:14:50.973316+00 6238 DH681#橙色S SPMX-20240815301379 \N \N \N 1 \N [{"file_id": "816c6bbb-f007-4fef-95a2-cf0565788b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3103a8fbc114d4fbcb24773ae1a7fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3103a8fbc114d4fbcb24773ae1a7fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3103a8fbc114d4fbcb24773ae1a7fa8.jpg", "file_size": 79318, "is_delete": false, "file_type": 1, "original_file_name": "DH681#橙色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3103a8fbc114d4fbcb24773ae1a7fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3103a8fbc114d4fbcb24773ae1a7fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3103a8fbc114d4fbcb24773ae1a7fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3103a8fbc114d4fbcb24773ae1a7fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3103a8fbc114d4fbcb24773ae1a7fa8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cEFZw4q80SttnRn1fFz7ty8Jl8=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.974808+00 2025-12-09 10:14:50.974813+00 6239 0003-201FWF#WJC22曲线 SPMX-20240815301378 \N \N \N 1 \N [{"file_id": "abfdb6a8-0b7b-444d-b114-82ba19bfcf9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80214435e07b410a8e91b4073aad68a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80214435e07b410a8e91b4073aad68a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80214435e07b410a8e91b4073aad68a8.jpg", "file_size": 20786, "is_delete": false, "file_type": 1, "original_file_name": "0003-201FWF#WJC22曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80214435e07b410a8e91b4073aad68a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80214435e07b410a8e91b4073aad68a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80214435e07b410a8e91b4073aad68a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80214435e07b410a8e91b4073aad68a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80214435e07b410a8e91b4073aad68a8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZICh18QHFeZxmnjEKBxe-X0nAk=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.976286+00 2025-12-09 10:14:50.976291+00 6240 HT001#黑底 SPMX-20240815301384 \N \N \N 1 \N [{"file_id": "209de9df-6815-41e4-a718-c74a67279dae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2644493a397450dab8e6ff7ca2a9fe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2644493a397450dab8e6ff7ca2a9fe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2644493a397450dab8e6ff7ca2a9fe8.jpg", "file_size": 17870, "is_delete": false, "file_type": 1, "original_file_name": "HT001#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2644493a397450dab8e6ff7ca2a9fe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2644493a397450dab8e6ff7ca2a9fe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2644493a397450dab8e6ff7ca2a9fe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2644493a397450dab8e6ff7ca2a9fe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2644493a397450dab8e6ff7ca2a9fe8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbw7PV5hbeu4gvuoE6jiCnj1v6o=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.977792+00 2025-12-09 10:14:50.977797+00 6241 1058#杏色袖子 SPMX-20240815301385 \N \N \N 1 \N [{"file_id": "d70420e3-8f8f-49e9-a832-c5028f442ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e23fbef133cd472ea4e487e006677c2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e23fbef133cd472ea4e487e006677c2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e23fbef133cd472ea4e487e006677c2c.jpg", "file_size": 10714, "is_delete": false, "file_type": 1, "original_file_name": "1058#杏色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23fbef133cd472ea4e487e006677c2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23fbef133cd472ea4e487e006677c2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23fbef133cd472ea4e487e006677c2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e23fbef133cd472ea4e487e006677c2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e23fbef133cd472ea4e487e006677c2c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXN_k64haW_4XRyDWqQ5e4XO2uE=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.979297+00 2025-12-09 10:14:50.979302+00 6242 C272-2#绿色L SPMX-20240815301381 \N \N \N 1 \N [{"file_id": "bf0d1cb9-5380-4bdd-8200-844d439c5ed3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95326937884a49d9a6e363c3b8d5aa2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95326937884a49d9a6e363c3b8d5aa2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95326937884a49d9a6e363c3b8d5aa2d.jpg", "file_size": 53698, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95326937884a49d9a6e363c3b8d5aa2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95326937884a49d9a6e363c3b8d5aa2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95326937884a49d9a6e363c3b8d5aa2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95326937884a49d9a6e363c3b8d5aa2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95326937884a49d9a6e363c3b8d5aa2d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rY-JXdPgN5gqZNQE7DjSZ5-Us8=", "createTime": "2024-08-15 14:43:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.980778+00 2025-12-09 10:14:50.980782+00 6243 DH681#橙色XL SPMX-20240815301391 \N \N \N 1 \N [{"file_id": "9aa66583-39ae-478b-bf06-36cd0383760e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a525332037dc4c419517ea3aecb7a644.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a525332037dc4c419517ea3aecb7a644.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a525332037dc4c419517ea3aecb7a644.jpg", "file_size": 69424, "is_delete": false, "file_type": 1, "original_file_name": "DH681#橙色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a525332037dc4c419517ea3aecb7a644.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a525332037dc4c419517ea3aecb7a644.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a525332037dc4c419517ea3aecb7a644.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a525332037dc4c419517ea3aecb7a644.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a525332037dc4c419517ea3aecb7a644.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTIjecLqbJYzFF7X50EwCzpv1TU=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.98226+00 2025-12-09 10:14:50.982265+00 6244 1058#灰色 SPMX-20240815301390 \N \N \N 1 \N [{"file_id": "3178b09d-7b98-4a9d-89df-9bd619999194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc34bcebec9e4664a3e92dfee349d0bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc34bcebec9e4664a3e92dfee349d0bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc34bcebec9e4664a3e92dfee349d0bb.jpg", "file_size": 17431, "is_delete": false, "file_type": 1, "original_file_name": "1058#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc34bcebec9e4664a3e92dfee349d0bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc34bcebec9e4664a3e92dfee349d0bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc34bcebec9e4664a3e92dfee349d0bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc34bcebec9e4664a3e92dfee349d0bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc34bcebec9e4664a3e92dfee349d0bb.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ob-t6kXa3Vrcy5oACqMsKB8t2P8=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.983747+00 2025-12-09 10:14:50.983752+00 6245 JT00275-B3#红色 SPMX-20240815301389 \N \N \N 1 \N [{"file_id": "045710aa-d856-429b-835b-69efee92613b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg", "file_size": 54365, "is_delete": false, "file_type": 1, "original_file_name": "JT00275-B3#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/671f0f2e25984ccf8c7ae2ea4d5ed2ed.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wh-ZOG5BzIyMciyTxS5U2QFWPog=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.985495+00 2025-12-09 10:14:50.9855+00 6246 23-2102#A6前后片3XL SPMX-20240815301392 \N \N \N 1 \N [{"file_id": "5fc944af-a939-4296-82b9-fc4a7ad4b605", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c7b23f61d2947c0a9b30d53816207e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c7b23f61d2947c0a9b30d53816207e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c7b23f61d2947c0a9b30d53816207e4.jpg", "file_size": 21033, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7b23f61d2947c0a9b30d53816207e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7b23f61d2947c0a9b30d53816207e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7b23f61d2947c0a9b30d53816207e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c7b23f61d2947c0a9b30d53816207e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c7b23f61d2947c0a9b30d53816207e4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzLEACeSvvFJjnAYaxJhU4JgF40=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.987005+00 2025-12-09 10:14:50.98701+00 6247 0003-202FWF#WJC22曲线 SPMX-20240815301388 \N \N \N 1 \N [{"file_id": "d6cc1d5c-99f9-4e7f-a594-bc1a78dbc9f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4f647eafc0d4d79a68affd0c77eee84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4f647eafc0d4d79a68affd0c77eee84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4f647eafc0d4d79a68affd0c77eee84.jpg", "file_size": 21295, "is_delete": false, "file_type": 1, "original_file_name": "0003-202FWF#WJC22曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f647eafc0d4d79a68affd0c77eee84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f647eafc0d4d79a68affd0c77eee84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f647eafc0d4d79a68affd0c77eee84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4f647eafc0d4d79a68affd0c77eee84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4f647eafc0d4d79a68affd0c77eee84.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hid4-gGqZJqekmrQDHFIrilFnd4=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.988497+00 2025-12-09 10:14:50.988502+00 6248 LHJ9306#20号枣红 SPMX-20240815301409 \N \N \N 1 \N [{"file_id": "cb6b3e13-5644-4ab2-a1d7-fcfa2acc155f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7e355485abc4940899d0ba298d471a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7e355485abc4940899d0ba298d471a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7e355485abc4940899d0ba298d471a0.jpg", "file_size": 17542, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#20号枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e355485abc4940899d0ba298d471a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e355485abc4940899d0ba298d471a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e355485abc4940899d0ba298d471a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7e355485abc4940899d0ba298d471a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7e355485abc4940899d0ba298d471a0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvgv_9KwgOcg7eUOUFBM9h6ptMw=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.989991+00 2025-12-09 10:14:50.989995+00 6249 JT00275-B3#黑色 SPMX-20240815301400 \N \N \N 1 \N [{"file_id": "5494340c-2930-4ac8-ae47-4f1c8921da17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b422ea7e7034dcb8e2bd85648ca004e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b422ea7e7034dcb8e2bd85648ca004e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b422ea7e7034dcb8e2bd85648ca004e.jpg", "file_size": 55077, "is_delete": false, "file_type": 1, "original_file_name": "JT00275-B3#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b422ea7e7034dcb8e2bd85648ca004e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b422ea7e7034dcb8e2bd85648ca004e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b422ea7e7034dcb8e2bd85648ca004e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b422ea7e7034dcb8e2bd85648ca004e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b422ea7e7034dcb8e2bd85648ca004e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxJ6hLib0D98f1YbgfXwGger1xw=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.991495+00 2025-12-09 10:14:50.991499+00 6250 LZ1227#上身1号色 SPMX-20240815301406 \N \N \N 1 \N [{"file_id": "bfbaf2e0-be46-4033-93ad-1676b6c35989", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c0bb2d0121f4dfaa207315e60cdebb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c0bb2d0121f4dfaa207315e60cdebb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c0bb2d0121f4dfaa207315e60cdebb2.jpg", "file_size": 20493, "is_delete": false, "file_type": 1, "original_file_name": "LZ1227#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0bb2d0121f4dfaa207315e60cdebb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0bb2d0121f4dfaa207315e60cdebb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0bb2d0121f4dfaa207315e60cdebb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c0bb2d0121f4dfaa207315e60cdebb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c0bb2d0121f4dfaa207315e60cdebb2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NuOeC2jQc7McFAtwE_jao8zzg-w=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.992992+00 2025-12-09 10:14:50.992997+00 6251 HT001FWE#VS-D3 SPMX-20240815301404 \N \N \N 1 \N [{"file_id": "a2f69511-587d-4a15-bff1-174f3686ed10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cddd6eeb6fe434bb95a9d72582dbe83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cddd6eeb6fe434bb95a9d72582dbe83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cddd6eeb6fe434bb95a9d72582dbe83.jpg", "file_size": 29557, "is_delete": false, "file_type": 1, "original_file_name": "HT001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cddd6eeb6fe434bb95a9d72582dbe83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cddd6eeb6fe434bb95a9d72582dbe83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cddd6eeb6fe434bb95a9d72582dbe83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cddd6eeb6fe434bb95a9d72582dbe83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cddd6eeb6fe434bb95a9d72582dbe83.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNf-dtEBmemONtyLgf2tv-oY_Tw=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.994481+00 2025-12-09 10:14:50.994486+00 6252 C272-2#绿色匹布 SPMX-20240815301405 \N \N \N 1 \N [{"file_id": "0d95c293-bb9d-439b-a312-28fb6e2a2cb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc846df60be24c35b38a95f071a0b71f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc846df60be24c35b38a95f071a0b71f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc846df60be24c35b38a95f071a0b71f.jpg", "file_size": 57401, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#绿色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc846df60be24c35b38a95f071a0b71f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc846df60be24c35b38a95f071a0b71f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc846df60be24c35b38a95f071a0b71f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc846df60be24c35b38a95f071a0b71f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc846df60be24c35b38a95f071a0b71f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9J2Y7UQMXnLveV4HRJVai56UU0=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.995987+00 2025-12-09 10:14:50.995992+00 6253 8013#男2XL+男3XL SPMX-20240815301407 \N \N \N 1 \N [{"file_id": "70893eea-106a-4818-9bc2-6392f8c4f1d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39e1a58223014c46856bcd7d2ca9cfc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39e1a58223014c46856bcd7d2ca9cfc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39e1a58223014c46856bcd7d2ca9cfc7.jpg", "file_size": 51809, "is_delete": false, "file_type": 1, "original_file_name": "8013#男2XL+男3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e1a58223014c46856bcd7d2ca9cfc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e1a58223014c46856bcd7d2ca9cfc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e1a58223014c46856bcd7d2ca9cfc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39e1a58223014c46856bcd7d2ca9cfc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39e1a58223014c46856bcd7d2ca9cfc7.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZD4wno540UW-0hQLmVsyVWFBT4M=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.997497+00 2025-12-09 10:14:50.997502+00 6254 HT001FW#VS-D3 SPMX-20240815301395 \N \N \N 1 \N [{"file_id": "e349092e-2e65-4103-aeec-cb4cdb990a02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f82a270b61544b639f6fe2d885f67b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f82a270b61544b639f6fe2d885f67b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f82a270b61544b639f6fe2d885f67b19.jpg", "file_size": 17977, "is_delete": false, "file_type": 1, "original_file_name": "HT001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a270b61544b639f6fe2d885f67b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a270b61544b639f6fe2d885f67b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a270b61544b639f6fe2d885f67b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f82a270b61544b639f6fe2d885f67b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f82a270b61544b639f6fe2d885f67b19.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZDUTR6G9HmowMlOu3vm9TOvc9I=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:50.998987+00 2025-12-09 10:14:50.998991+00 6255 1058#灰色匹布 SPMX-20240815301401 \N \N \N 1 \N [{"file_id": "d44a73ef-0d92-435d-90aa-ea5ef3a836b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2228aae26384ad3980f5b1610af258f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2228aae26384ad3980f5b1610af258f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2228aae26384ad3980f5b1610af258f.jpg", "file_size": 14750, "is_delete": false, "file_type": 1, "original_file_name": "1058#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2228aae26384ad3980f5b1610af258f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2228aae26384ad3980f5b1610af258f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2228aae26384ad3980f5b1610af258f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2228aae26384ad3980f5b1610af258f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2228aae26384ad3980f5b1610af258f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54PVq4m0O9bX19VKvvPbKs8G02w=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.00047+00 2025-12-09 10:14:51.000475+00 6256 FHXGPK-047-1 SPMX-20240815301397 \N \N \N 1 \N [{"file_id": "474f3e0d-312c-4aa7-8c42-c07b15cb0a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "820c8f6833e7492790b4270515627139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "820c8f6833e7492790b4270515627139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "820c8f6833e7492790b4270515627139.jpg", "file_size": 23984, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-047-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/820c8f6833e7492790b4270515627139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/820c8f6833e7492790b4270515627139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/820c8f6833e7492790b4270515627139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/820c8f6833e7492790b4270515627139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/820c8f6833e7492790b4270515627139.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQCoC3EKFxohj__DnfUrpOfvGdA=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.001947+00 2025-12-09 10:14:51.001952+00 6257 FHXGPK-048-1 SPMX-20240815301408 \N \N \N 1 \N [{"file_id": "2a6228d8-65cb-4aae-a693-d81899bbb01c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2574cfe9aa84cc48d53b035bd445248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2574cfe9aa84cc48d53b035bd445248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2574cfe9aa84cc48d53b035bd445248.jpg", "file_size": 28069, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-048-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2574cfe9aa84cc48d53b035bd445248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2574cfe9aa84cc48d53b035bd445248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2574cfe9aa84cc48d53b035bd445248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2574cfe9aa84cc48d53b035bd445248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2574cfe9aa84cc48d53b035bd445248.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0E_XFgjTiDgK3hKfpA-67hXDCA=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.003441+00 2025-12-09 10:14:51.003446+00 6258 LHJ9306#10号黑兰 SPMX-20240815301399 \N \N \N 1 \N [{"file_id": "457f7863-083e-4859-9036-576e3284c171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aef301885bd0471d9d447a908c6f78e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aef301885bd0471d9d447a908c6f78e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aef301885bd0471d9d447a908c6f78e5.jpg", "file_size": 18542, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#10号黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef301885bd0471d9d447a908c6f78e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef301885bd0471d9d447a908c6f78e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef301885bd0471d9d447a908c6f78e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aef301885bd0471d9d447a908c6f78e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aef301885bd0471d9d447a908c6f78e5.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GmsIQEJUCuTiqSzr0fmM6q3-2E=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.004949+00 2025-12-09 10:14:51.004954+00 6259 LZ1226#上身5号色 SPMX-20240815301396 \N \N \N 1 \N [{"file_id": "bb7d0eba-50a4-4041-8c19-02dad1e8e003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35b0b99544c34bf58c17d4f5bfb11129.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35b0b99544c34bf58c17d4f5bfb11129.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35b0b99544c34bf58c17d4f5bfb11129.jpg", "file_size": 17576, "is_delete": false, "file_type": 1, "original_file_name": "LZ1226#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b0b99544c34bf58c17d4f5bfb11129.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b0b99544c34bf58c17d4f5bfb11129.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b0b99544c34bf58c17d4f5bfb11129.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35b0b99544c34bf58c17d4f5bfb11129.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35b0b99544c34bf58c17d4f5bfb11129.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMqYTsitHMsY6PdKz7TTP_AFXgY=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.006599+00 2025-12-09 10:14:51.006604+00 6260 23-2102#A6前后片4XL SPMX-20240815301403 \N \N \N 1 \N [{"file_id": "baaa534f-6291-4eef-8348-6c180ac3aa57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e37aa2b4b2e48ec8a1b5a5663c43140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e37aa2b4b2e48ec8a1b5a5663c43140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e37aa2b4b2e48ec8a1b5a5663c43140.jpg", "file_size": 20964, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e37aa2b4b2e48ec8a1b5a5663c43140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e37aa2b4b2e48ec8a1b5a5663c43140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e37aa2b4b2e48ec8a1b5a5663c43140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e37aa2b4b2e48ec8a1b5a5663c43140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e37aa2b4b2e48ec8a1b5a5663c43140.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MUv-uhRrQCnMJhceSlR8x3LRH3c=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.008109+00 2025-12-09 10:14:51.008114+00 6261 8013#女S SPMX-20240815301393 \N \N \N 1 \N [{"file_id": "7731679a-50d2-4611-a79b-4b0eb53800d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23b5399e18d14a18b0a37ebdc7def4be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23b5399e18d14a18b0a37ebdc7def4be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23b5399e18d14a18b0a37ebdc7def4be.jpg", "file_size": 53081, "is_delete": false, "file_type": 1, "original_file_name": "8013#女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b5399e18d14a18b0a37ebdc7def4be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b5399e18d14a18b0a37ebdc7def4be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23b5399e18d14a18b0a37ebdc7def4be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23b5399e18d14a18b0a37ebdc7def4be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23b5399e18d14a18b0a37ebdc7def4be.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZD-rG5SP_WvfTs2DLbJcTqkLj5I=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.00959+00 2025-12-09 10:14:51.009595+00 6262 DH687#橙色2XL SPMX-20240815301402 \N \N \N 1 \N [{"file_id": "2746aa98-80f8-4f34-a124-c3cc43bf2500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1ae0e36720845f0a98f3e248828086a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1ae0e36720845f0a98f3e248828086a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1ae0e36720845f0a98f3e248828086a.jpg", "file_size": 64098, "is_delete": false, "file_type": 1, "original_file_name": "DH687#橙色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ae0e36720845f0a98f3e248828086a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ae0e36720845f0a98f3e248828086a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ae0e36720845f0a98f3e248828086a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1ae0e36720845f0a98f3e248828086a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1ae0e36720845f0a98f3e248828086a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Vw4GPE3PpX1fiDmZuERrek2wK4=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.0111+00 2025-12-09 10:14:51.011104+00 6263 0003-203#粉色 SPMX-20240815301398 \N \N \N 1 \N [{"file_id": "1695076e-ce11-4ec2-82b3-b5f3843dce58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc34638164334d8aa190380e157d788d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc34638164334d8aa190380e157d788d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc34638164334d8aa190380e157d788d.jpg", "file_size": 11384, "is_delete": false, "file_type": 1, "original_file_name": "0003-203#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc34638164334d8aa190380e157d788d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc34638164334d8aa190380e157d788d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc34638164334d8aa190380e157d788d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc34638164334d8aa190380e157d788d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc34638164334d8aa190380e157d788d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rdg5ebP4L1gx7xQTS9sT5oJtQIY=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.012579+00 2025-12-09 10:14:51.012583+00 6264 C272-2#绿色XL SPMX-20240815301394 \N \N \N 1 \N [{"file_id": "dbc495c4-7197-4ccf-8fd6-abc0faf58474", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d122824e142d4900859c2ac014a812ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d122824e142d4900859c2ac014a812ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d122824e142d4900859c2ac014a812ad.jpg", "file_size": 53001, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d122824e142d4900859c2ac014a812ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d122824e142d4900859c2ac014a812ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d122824e142d4900859c2ac014a812ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d122824e142d4900859c2ac014a812ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d122824e142d4900859c2ac014a812ad.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mbMCNHuSA6Ywx_3t7njHE5B80cE=", "createTime": "2024-08-15 14:43:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.014071+00 2025-12-09 10:14:51.014075+00 6265 FHXGPK-049-1 SPMX-20240815301420 \N \N \N 1 \N [{"file_id": "b48ee476-1d4a-4402-a360-62ab50a1d309", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfad467a9694652b277bdcd8c93093d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfad467a9694652b277bdcd8c93093d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfad467a9694652b277bdcd8c93093d.jpg", "file_size": 37171, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-049-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfad467a9694652b277bdcd8c93093d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfad467a9694652b277bdcd8c93093d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfad467a9694652b277bdcd8c93093d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfad467a9694652b277bdcd8c93093d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfad467a9694652b277bdcd8c93093d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02gPuqDEUjpDChwy2WRtg14boEw=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.015559+00 2025-12-09 10:14:51.015563+00 6266 23-2102#A6短袖子4XL SPMX-20240815301424 \N \N \N 1 \N [{"file_id": "69183b64-4b58-4648-9760-e812f4a0accb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b7b4b9f456843d69832033870295af3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b7b4b9f456843d69832033870295af3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b7b4b9f456843d69832033870295af3.jpg", "file_size": 15956, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6短袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7b4b9f456843d69832033870295af3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7b4b9f456843d69832033870295af3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7b4b9f456843d69832033870295af3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b7b4b9f456843d69832033870295af3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b7b4b9f456843d69832033870295af3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdoAG5A3xthroYuJ8cjFq6jh8AE=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.017091+00 2025-12-09 10:14:51.017096+00 6267 1058#白色 SPMX-20240815301422 \N \N \N 1 \N [{"file_id": "0aca8764-2651-4d86-a15c-5c11e67b3251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a97ec51db5364d6bad3e1b683aee203a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a97ec51db5364d6bad3e1b683aee203a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a97ec51db5364d6bad3e1b683aee203a.jpg", "file_size": 18859, "is_delete": false, "file_type": 1, "original_file_name": "1058#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97ec51db5364d6bad3e1b683aee203a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97ec51db5364d6bad3e1b683aee203a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97ec51db5364d6bad3e1b683aee203a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a97ec51db5364d6bad3e1b683aee203a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a97ec51db5364d6bad3e1b683aee203a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1WnyOCLKOVk6Uatr5Hzb16oZPc=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.018572+00 2025-12-09 10:14:51.018577+00 6268 C272-2#黑色2XL SPMX-20240815301416 \N \N \N 1 \N [{"file_id": "5d5952bb-430c-4cc7-87e9-102f4348839f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a7fa646f13e4629a840ed458358abb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a7fa646f13e4629a840ed458358abb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a7fa646f13e4629a840ed458358abb0.jpg", "file_size": 52752, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7fa646f13e4629a840ed458358abb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7fa646f13e4629a840ed458358abb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7fa646f13e4629a840ed458358abb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a7fa646f13e4629a840ed458358abb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a7fa646f13e4629a840ed458358abb0.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVEDjAYSYZsSzewtPm0HpC-hsvY=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.020103+00 2025-12-09 10:14:51.020107+00 6269 23-2102#A6短袖子3XL SPMX-20240815301412 \N \N \N 1 \N [{"file_id": "bd0db5f0-f1fd-4b43-8f18-65bcdc0693db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fca2ae84921499293ce60588fae2670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fca2ae84921499293ce60588fae2670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fca2ae84921499293ce60588fae2670.jpg", "file_size": 18853, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6短袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca2ae84921499293ce60588fae2670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca2ae84921499293ce60588fae2670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca2ae84921499293ce60588fae2670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fca2ae84921499293ce60588fae2670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fca2ae84921499293ce60588fae2670.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l49FLCNHkTwwlYnrzHiUdpAyONE=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.021811+00 2025-12-09 10:14:51.021816+00 6270 1058#灰色袖子 SPMX-20240815301411 \N \N \N 1 \N [{"file_id": "e7f4b001-87aa-4dd3-8bb5-03de48ed1abf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36d546d0f3a849adb8b9c42763d8718a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36d546d0f3a849adb8b9c42763d8718a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36d546d0f3a849adb8b9c42763d8718a.jpg", "file_size": 10466, "is_delete": false, "file_type": 1, "original_file_name": "1058#灰色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d546d0f3a849adb8b9c42763d8718a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d546d0f3a849adb8b9c42763d8718a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d546d0f3a849adb8b9c42763d8718a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36d546d0f3a849adb8b9c42763d8718a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36d546d0f3a849adb8b9c42763d8718a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdxigEOVPo4R46z-MPGnjJaQ5-s=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.023345+00 2025-12-09 10:14:51.02335+00 6271 HT001FWE#橙 SPMX-20240815301415 \N \N \N 1 \N [{"file_id": "67888172-7cf2-4827-987f-1e0c20c38d7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0fad309f6d84c20a7daf89e2caee35d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0fad309f6d84c20a7daf89e2caee35d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0fad309f6d84c20a7daf89e2caee35d.jpg", "file_size": 14304, "is_delete": false, "file_type": 1, "original_file_name": "HT001FWE#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fad309f6d84c20a7daf89e2caee35d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fad309f6d84c20a7daf89e2caee35d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fad309f6d84c20a7daf89e2caee35d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0fad309f6d84c20a7daf89e2caee35d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0fad309f6d84c20a7daf89e2caee35d.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRaC_gIp6Pn3JjXJiNs5NdDBS8w=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.024872+00 2025-12-09 10:14:51.024876+00 6272 LZ1227#上身2号色 SPMX-20240815301417 \N \N \N 1 \N [{"file_id": "813ba1e1-ec7e-4aa1-aa86-21affd8a8f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5d5e0be760147a18719e4c0f74493b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5d5e0be760147a18719e4c0f74493b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5d5e0be760147a18719e4c0f74493b8.jpg", "file_size": 20428, "is_delete": false, "file_type": 1, "original_file_name": "LZ1227#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d5e0be760147a18719e4c0f74493b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d5e0be760147a18719e4c0f74493b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d5e0be760147a18719e4c0f74493b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5d5e0be760147a18719e4c0f74493b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5d5e0be760147a18719e4c0f74493b8.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eD-aNEnsC4z9LNFinVD2vFv4TQ=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.026388+00 2025-12-09 10:14:51.026393+00 6273 80135#黄蓝色 SPMX-20240815301418 \N \N \N 1 \N [{"file_id": "ffdb9f91-2971-433e-ac1c-c8c9e9127804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6140c078ffc473f90580031d1b20a79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6140c078ffc473f90580031d1b20a79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6140c078ffc473f90580031d1b20a79.jpg", "file_size": 12762, "is_delete": false, "file_type": 1, "original_file_name": "80135#黄蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6140c078ffc473f90580031d1b20a79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6140c078ffc473f90580031d1b20a79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6140c078ffc473f90580031d1b20a79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6140c078ffc473f90580031d1b20a79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6140c078ffc473f90580031d1b20a79.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2-KtAWAqTPa5lZ6-ubF8yBAfYgo=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.027944+00 2025-12-09 10:14:51.027949+00 6274 HT001FWE#绿 SPMX-20240815301425 \N \N \N 1 \N [{"file_id": "9fdde485-118d-4b44-b01b-210dfa8c0758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c629d72617b0489f9344c78fd18b12c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c629d72617b0489f9344c78fd18b12c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c629d72617b0489f9344c78fd18b12c4.jpg", "file_size": 14520, "is_delete": false, "file_type": 1, "original_file_name": "HT001FWE#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c629d72617b0489f9344c78fd18b12c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c629d72617b0489f9344c78fd18b12c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c629d72617b0489f9344c78fd18b12c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c629d72617b0489f9344c78fd18b12c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c629d72617b0489f9344c78fd18b12c4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zs6ZwEtPkdi4MVKMGKzLCZJfv6w=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.029479+00 2025-12-09 10:14:51.029484+00 6275 DH687#橙色L SPMX-20240815301414 \N \N \N 1 \N [{"file_id": "c46f7a26-a237-4201-9ef7-d28cbc97797f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eed79b7e2b64f1f9782a16d330c9fa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eed79b7e2b64f1f9782a16d330c9fa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eed79b7e2b64f1f9782a16d330c9fa9.jpg", "file_size": 71243, "is_delete": false, "file_type": 1, "original_file_name": "DH687#橙色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eed79b7e2b64f1f9782a16d330c9fa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eed79b7e2b64f1f9782a16d330c9fa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eed79b7e2b64f1f9782a16d330c9fa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eed79b7e2b64f1f9782a16d330c9fa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eed79b7e2b64f1f9782a16d330c9fa9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_YhYH0sMlGetWgu5taazvlYsuE=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.030992+00 2025-12-09 10:14:51.030997+00 6276 0003-203#紫色 SPMX-20240815301410 \N \N \N 1 \N [{"file_id": "32a4b10b-af4c-4375-8da7-4889056a96e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b008d09e5a1649878f0cfbaa89128ef3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b008d09e5a1649878f0cfbaa89128ef3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b008d09e5a1649878f0cfbaa89128ef3.jpg", "file_size": 14718, "is_delete": false, "file_type": 1, "original_file_name": "0003-203#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b008d09e5a1649878f0cfbaa89128ef3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b008d09e5a1649878f0cfbaa89128ef3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b008d09e5a1649878f0cfbaa89128ef3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b008d09e5a1649878f0cfbaa89128ef3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b008d09e5a1649878f0cfbaa89128ef3.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_uGCS-4Cqlw5Ezz0sFySywkZXk=", "createTime": "2024-08-15 14:43:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.032477+00 2025-12-09 10:14:51.032481+00 6277 JT0165-1#WJC22 SPMX-20240815301423 \N \N \N 1 \N [{"file_id": "b8daba53-4f61-4a09-86df-63659095781b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22d86c5246924ca4985f8a3abf74a54f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22d86c5246924ca4985f8a3abf74a54f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22d86c5246924ca4985f8a3abf74a54f.jpg", "file_size": 12343, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d86c5246924ca4985f8a3abf74a54f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d86c5246924ca4985f8a3abf74a54f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d86c5246924ca4985f8a3abf74a54f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22d86c5246924ca4985f8a3abf74a54f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22d86c5246924ca4985f8a3abf74a54f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6m-Ldkg9xQMZEw9GXJlNTonHTxQ=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.033952+00 2025-12-09 10:14:51.033957+00 6278 LHJ9306#25号土黄 SPMX-20240815301419 \N \N \N 1 \N [{"file_id": "0278eb2e-7150-4739-bcfb-79bfc6fa7da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77540f2e66774bd4bf11c883e47e57ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77540f2e66774bd4bf11c883e47e57ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77540f2e66774bd4bf11c883e47e57ac.jpg", "file_size": 16343, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77540f2e66774bd4bf11c883e47e57ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77540f2e66774bd4bf11c883e47e57ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77540f2e66774bd4bf11c883e47e57ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77540f2e66774bd4bf11c883e47e57ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77540f2e66774bd4bf11c883e47e57ac.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNizHgA4rMx6uyZyuZUjwtDXV1g=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.035464+00 2025-12-09 10:14:51.035469+00 6279 0003-203#绿色 SPMX-20240815301421 \N \N \N 1 \N [{"file_id": "88018e11-6c3e-4441-ace8-98a48282b077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fedf62ff6c42469ca7ca14a5bcfb29b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fedf62ff6c42469ca7ca14a5bcfb29b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fedf62ff6c42469ca7ca14a5bcfb29b4.jpg", "file_size": 15871, "is_delete": false, "file_type": 1, "original_file_name": "0003-203#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fedf62ff6c42469ca7ca14a5bcfb29b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fedf62ff6c42469ca7ca14a5bcfb29b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fedf62ff6c42469ca7ca14a5bcfb29b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fedf62ff6c42469ca7ca14a5bcfb29b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fedf62ff6c42469ca7ca14a5bcfb29b4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDnlyYMYtYr2MzrmJkjXxTeSdiA=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.036966+00 2025-12-09 10:14:51.036971+00 6280 JT002FW#VS-D3 SPMX-20240815301413 \N \N \N 1 \N [{"file_id": "d800c98c-59b0-4a03-9124-a40548f7caca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d02996640658400cb79fc806594666e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d02996640658400cb79fc806594666e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d02996640658400cb79fc806594666e9.jpg", "file_size": 12126, "is_delete": false, "file_type": 1, "original_file_name": "JT002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02996640658400cb79fc806594666e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02996640658400cb79fc806594666e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02996640658400cb79fc806594666e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d02996640658400cb79fc806594666e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d02996640658400cb79fc806594666e9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnmZJ7FV7sEdK5Yik40ho4nLUKY=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.038449+00 2025-12-09 10:14:51.038454+00 6281 1058#白色匹布 SPMX-20240815301432 \N \N \N 1 \N [{"file_id": "aa887af3-d13c-46e5-b83c-492ad2f57312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c068fcef3c4f069dc574192fdf310c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c068fcef3c4f069dc574192fdf310c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c068fcef3c4f069dc574192fdf310c.jpg", "file_size": 16505, "is_delete": false, "file_type": 1, "original_file_name": "1058#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c068fcef3c4f069dc574192fdf310c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c068fcef3c4f069dc574192fdf310c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c068fcef3c4f069dc574192fdf310c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c068fcef3c4f069dc574192fdf310c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c068fcef3c4f069dc574192fdf310c.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNHxbcS4_eqqO-8mKfKbM44nEnQ=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.040029+00 2025-12-09 10:14:51.040034+00 6282 JT0165-10#LWQ15 SPMX-20240815301433 \N \N \N 1 \N [{"file_id": "2c1b2cc3-bb0c-44c5-805b-0e593a3a8e29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "823819792ba2451992757b9f5f2a3204.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "823819792ba2451992757b9f5f2a3204.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "823819792ba2451992757b9f5f2a3204.jpg", "file_size": 17730, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-10#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/823819792ba2451992757b9f5f2a3204.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/823819792ba2451992757b9f5f2a3204.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/823819792ba2451992757b9f5f2a3204.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/823819792ba2451992757b9f5f2a3204.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/823819792ba2451992757b9f5f2a3204.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zh3N8G9MdQJv2YE3RIu3A1HWYLQ=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.04154+00 2025-12-09 10:14:51.041545+00 6283 LZ1227#上身3号色 SPMX-20240815301427 \N \N \N 1 \N [{"file_id": "467e4e5b-ad6a-48bf-b6a3-335f1c6a9ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f19d45642924d3fae815ca06e2d844f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f19d45642924d3fae815ca06e2d844f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f19d45642924d3fae815ca06e2d844f.jpg", "file_size": 19953, "is_delete": false, "file_type": 1, "original_file_name": "LZ1227#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f19d45642924d3fae815ca06e2d844f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f19d45642924d3fae815ca06e2d844f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f19d45642924d3fae815ca06e2d844f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f19d45642924d3fae815ca06e2d844f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f19d45642924d3fae815ca06e2d844f.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYJaFFn_xljppdvwusPptnBx6_8=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.043391+00 2025-12-09 10:14:51.043395+00 6284 23-2102#A6袖口3XL SPMX-20240815301434 \N \N \N 1 \N [{"file_id": "64d2eedb-751a-4ffb-8b9f-c5a5a5802075", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fb80d64cd3349a6855435aaf8f222e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fb80d64cd3349a6855435aaf8f222e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fb80d64cd3349a6855435aaf8f222e9.jpg", "file_size": 10597, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6袖口3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb80d64cd3349a6855435aaf8f222e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb80d64cd3349a6855435aaf8f222e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb80d64cd3349a6855435aaf8f222e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fb80d64cd3349a6855435aaf8f222e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fb80d64cd3349a6855435aaf8f222e9.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5BbFw-pGD6y_wq-fwhBHc23X0A=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.045249+00 2025-12-09 10:14:51.045254+00 6285 0003-203#蓝色 SPMX-20240815301436 \N \N \N 1 \N [{"file_id": "d26cebe0-00c1-40b9-ae50-de73592011bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e12aedf211d0402bb2c89690cda64968.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e12aedf211d0402bb2c89690cda64968.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e12aedf211d0402bb2c89690cda64968.jpg", "file_size": 12834, "is_delete": false, "file_type": 1, "original_file_name": "0003-203#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aedf211d0402bb2c89690cda64968.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aedf211d0402bb2c89690cda64968.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e12aedf211d0402bb2c89690cda64968.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e12aedf211d0402bb2c89690cda64968.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e12aedf211d0402bb2c89690cda64968.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVHFjc2ND7Up7dVuRvZPRkLKlbQ=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.047216+00 2025-12-09 10:14:51.04722+00 6286 FHXGPK-049-2 SPMX-20240815301431 \N \N \N 1 \N [{"file_id": "2e731218-e93b-41bc-9ae8-dfb0af0bfe69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc938eae3fe451b9b63e57912292297.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc938eae3fe451b9b63e57912292297.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc938eae3fe451b9b63e57912292297.jpg", "file_size": 37802, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-049-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc938eae3fe451b9b63e57912292297.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc938eae3fe451b9b63e57912292297.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc938eae3fe451b9b63e57912292297.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc938eae3fe451b9b63e57912292297.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc938eae3fe451b9b63e57912292297.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_WVgCNYfSgoAiO-osLX9nOsjBw=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.049292+00 2025-12-09 10:14:51.049297+00 6287 LHJ9306#32号墨绿 SPMX-20240815301430 \N \N \N 1 \N [{"file_id": "3215a9c0-163d-4539-b575-03fdec04bd08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dcd7983c8a04e19b324c854806461d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dcd7983c8a04e19b324c854806461d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dcd7983c8a04e19b324c854806461d2.jpg", "file_size": 18103, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#32号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dcd7983c8a04e19b324c854806461d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dcd7983c8a04e19b324c854806461d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dcd7983c8a04e19b324c854806461d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dcd7983c8a04e19b324c854806461d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dcd7983c8a04e19b324c854806461d2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTlXwyPDD0ALIdB9fb-aFGzSE9o=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.051343+00 2025-12-09 10:14:51.051348+00 6288 80136#枣红 SPMX-20240815301428 \N \N \N 1 \N [{"file_id": "a8754ac2-d26c-4845-8e7c-429fb0d875c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d2bb4f56b144c0c877ec14412e70eb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d2bb4f56b144c0c877ec14412e70eb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d2bb4f56b144c0c877ec14412e70eb6.jpg", "file_size": 11432, "is_delete": false, "file_type": 1, "original_file_name": "80136#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2bb4f56b144c0c877ec14412e70eb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2bb4f56b144c0c877ec14412e70eb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2bb4f56b144c0c877ec14412e70eb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d2bb4f56b144c0c877ec14412e70eb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d2bb4f56b144c0c877ec14412e70eb6.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwmDKnFRus-zEH5TEInOYyhW5hE=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.053154+00 2025-12-09 10:14:51.053158+00 6289 C272-2#黑色3XL SPMX-20240815301429 \N \N \N 1 \N [{"file_id": "8a205142-d817-46dd-9274-c290bb39a642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "355255f6da8642a59cb0445a61105a64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "355255f6da8642a59cb0445a61105a64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "355255f6da8642a59cb0445a61105a64.jpg", "file_size": 52547, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#黑色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355255f6da8642a59cb0445a61105a64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355255f6da8642a59cb0445a61105a64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355255f6da8642a59cb0445a61105a64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/355255f6da8642a59cb0445a61105a64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/355255f6da8642a59cb0445a61105a64.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqTARMKOrO3prDAi7-Z6mf_RRCk=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.054973+00 2025-12-09 10:14:51.054978+00 6290 DH687#橙色M SPMX-20240815301426 \N \N \N 1 \N [{"file_id": "858b3a4a-b34b-4c81-98cd-a203c4e89f6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "018968a4413b4d63b2049ba2230f02d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "018968a4413b4d63b2049ba2230f02d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "018968a4413b4d63b2049ba2230f02d2.jpg", "file_size": 74852, "is_delete": false, "file_type": 1, "original_file_name": "DH687#橙色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018968a4413b4d63b2049ba2230f02d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018968a4413b4d63b2049ba2230f02d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018968a4413b4d63b2049ba2230f02d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/018968a4413b4d63b2049ba2230f02d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/018968a4413b4d63b2049ba2230f02d2.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9xPkehkh9SfxIyUkBQn0iweF6U=", "createTime": "2024-08-15 14:43:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.056811+00 2025-12-09 10:14:51.056816+00 6291 HT001FWE#蓝 SPMX-20240815301435 \N \N \N 1 \N [{"file_id": "c4e6770a-76e3-4a66-8ffa-c94045b80821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c9471fabfd14b49a3374477593d5728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c9471fabfd14b49a3374477593d5728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c9471fabfd14b49a3374477593d5728.jpg", "file_size": 13764, "is_delete": false, "file_type": 1, "original_file_name": "HT001FWE#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9471fabfd14b49a3374477593d5728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9471fabfd14b49a3374477593d5728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9471fabfd14b49a3374477593d5728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c9471fabfd14b49a3374477593d5728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c9471fabfd14b49a3374477593d5728.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHyckBSmG8mIv84w9Pxjw05lnY4=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.05832+00 2025-12-09 10:14:51.058325+00 6292 80137#红色 SPMX-20240815301437 \N \N \N 1 \N [{"file_id": "f3c75942-5ce5-4fcb-acc9-31c034358b1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a1e3c45650a496594e03760cd053929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a1e3c45650a496594e03760cd053929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a1e3c45650a496594e03760cd053929.jpg", "file_size": 10566, "is_delete": false, "file_type": 1, "original_file_name": "80137#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1e3c45650a496594e03760cd053929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1e3c45650a496594e03760cd053929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1e3c45650a496594e03760cd053929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a1e3c45650a496594e03760cd053929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a1e3c45650a496594e03760cd053929.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WfhaQTZKU2H2eEKg68HyCsmPYc=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.060067+00 2025-12-09 10:14:51.060072+00 6293 JT0165-10#WJC22 SPMX-20240815301444 \N \N \N 1 \N [{"file_id": "678767d5-f791-4ab2-9cb6-1844479941d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcc31d2bbfa24065a61965d23ae8b61a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcc31d2bbfa24065a61965d23ae8b61a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcc31d2bbfa24065a61965d23ae8b61a.jpg", "file_size": 11175, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc31d2bbfa24065a61965d23ae8b61a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc31d2bbfa24065a61965d23ae8b61a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc31d2bbfa24065a61965d23ae8b61a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcc31d2bbfa24065a61965d23ae8b61a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcc31d2bbfa24065a61965d23ae8b61a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6hpd9Ar9V3VJDRnUbFfIu4EnnaI=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.061553+00 2025-12-09 10:14:51.061558+00 6294 23-2102#A6袖口包条3XL SPMX-20240815301445 \N \N \N 1 \N [{"file_id": "475b972d-a4dd-47a1-ad89-65fd1ecd8485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30a40190a2e74fb39ba82b46942de10e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30a40190a2e74fb39ba82b46942de10e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30a40190a2e74fb39ba82b46942de10e.jpg", "file_size": 14072, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6袖口包条3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a40190a2e74fb39ba82b46942de10e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a40190a2e74fb39ba82b46942de10e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a40190a2e74fb39ba82b46942de10e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30a40190a2e74fb39ba82b46942de10e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30a40190a2e74fb39ba82b46942de10e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5o2oKxqud0D-w15lgF9PhiAfIBk=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.06308+00 2025-12-09 10:14:51.063085+00 6295 0003-203#黄色 SPMX-20240815301449 \N \N \N 1 \N [{"file_id": "f72728e6-d5e7-416a-bfdb-ad73bcab09c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42b413cd25c348349f799e42bc14fa69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42b413cd25c348349f799e42bc14fa69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42b413cd25c348349f799e42bc14fa69.jpg", "file_size": 12947, "is_delete": false, "file_type": 1, "original_file_name": "0003-203#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b413cd25c348349f799e42bc14fa69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b413cd25c348349f799e42bc14fa69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b413cd25c348349f799e42bc14fa69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42b413cd25c348349f799e42bc14fa69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42b413cd25c348349f799e42bc14fa69.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ApNRna_K_MDZqWLCfSxd699giqY=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.064599+00 2025-12-09 10:14:51.064604+00 6296 LZ1227#上身4号色 SPMX-20240815301442 \N \N \N 1 \N [{"file_id": "219b5842-64c7-4afc-912c-dccdfc70260d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab1c4960947e468cbd26e56ff1b2a216.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab1c4960947e468cbd26e56ff1b2a216.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab1c4960947e468cbd26e56ff1b2a216.jpg", "file_size": 20145, "is_delete": false, "file_type": 1, "original_file_name": "LZ1227#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1c4960947e468cbd26e56ff1b2a216.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1c4960947e468cbd26e56ff1b2a216.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1c4960947e468cbd26e56ff1b2a216.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab1c4960947e468cbd26e56ff1b2a216.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab1c4960947e468cbd26e56ff1b2a216.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZs-G7ttXpV8H8gCtgZOVQZspsQ=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.0663+00 2025-12-09 10:14:51.066305+00 6297 C272-2#黑色XL SPMX-20240815301450 \N \N \N 1 \N [{"file_id": "4eaaf0d8-225f-4ac5-8a89-8eed8adc905f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f77d932458414e17842bb6f4de7438d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f77d932458414e17842bb6f4de7438d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f77d932458414e17842bb6f4de7438d4.jpg", "file_size": 51387, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77d932458414e17842bb6f4de7438d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77d932458414e17842bb6f4de7438d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77d932458414e17842bb6f4de7438d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f77d932458414e17842bb6f4de7438d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f77d932458414e17842bb6f4de7438d4.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9ugDeaaRnxg1rGOJds5B9gv3PE=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.0682+00 2025-12-09 10:14:51.068205+00 6298 1058#粉色 SPMX-20240815301454 \N \N \N 1 \N [{"file_id": "2b2e5df5-f41f-4936-a555-cd232c8ae320", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "212f2f9dbac54cdeb9260db3202b4b96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "212f2f9dbac54cdeb9260db3202b4b96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "212f2f9dbac54cdeb9260db3202b4b96.jpg", "file_size": 17960, "is_delete": false, "file_type": 1, "original_file_name": "1058#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212f2f9dbac54cdeb9260db3202b4b96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212f2f9dbac54cdeb9260db3202b4b96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212f2f9dbac54cdeb9260db3202b4b96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/212f2f9dbac54cdeb9260db3202b4b96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/212f2f9dbac54cdeb9260db3202b4b96.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dujwk1CK-DscCPuh7Cy8UQZHsqM=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.069539+00 2025-12-09 10:14:51.069543+00 6299 LHJ9306#37号玫红 SPMX-20240815301440 \N \N \N 1 \N [{"file_id": "dd4e9d47-7695-4a93-8a9d-926be46acb0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a234b587c47455bbc2929c87977fb82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a234b587c47455bbc2929c87977fb82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a234b587c47455bbc2929c87977fb82.jpg", "file_size": 16537, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#37号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a234b587c47455bbc2929c87977fb82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a234b587c47455bbc2929c87977fb82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a234b587c47455bbc2929c87977fb82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a234b587c47455bbc2929c87977fb82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a234b587c47455bbc2929c87977fb82.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BDLrcSr87rqzHNX-kp3d22-K_ac=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.070849+00 2025-12-09 10:14:51.070853+00 6300 80138#绿色 SPMX-20240815301448 \N \N \N 1 \N [{"file_id": "53096160-87cc-4bf9-b507-b9cc64901318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51c00e38331e4e0da0462a1051647574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51c00e38331e4e0da0462a1051647574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51c00e38331e4e0da0462a1051647574.jpg", "file_size": 10051, "is_delete": false, "file_type": 1, "original_file_name": "80138#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c00e38331e4e0da0462a1051647574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c00e38331e4e0da0462a1051647574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c00e38331e4e0da0462a1051647574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51c00e38331e4e0da0462a1051647574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51c00e38331e4e0da0462a1051647574.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0b1E3jv1PjHf6bZquIAfwD_G5A=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.072189+00 2025-12-09 10:14:51.072193+00 6301 LHJ9306#5号彩兰 SPMX-20240815301453 \N \N \N 1 \N [{"file_id": "b5da67c3-f51c-48ea-916d-82bc88e05938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c9210a24ae54c5d8f0f9a61df3fb61e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c9210a24ae54c5d8f0f9a61df3fb61e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c9210a24ae54c5d8f0f9a61df3fb61e.jpg", "file_size": 17959, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9306#5号彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9210a24ae54c5d8f0f9a61df3fb61e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9210a24ae54c5d8f0f9a61df3fb61e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9210a24ae54c5d8f0f9a61df3fb61e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c9210a24ae54c5d8f0f9a61df3fb61e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c9210a24ae54c5d8f0f9a61df3fb61e.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpYu25STe2yWwncQkJWownzqVcw=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.073476+00 2025-12-09 10:14:51.07348+00 6302 DH687#橙色S SPMX-20240815301438 \N \N \N 1 \N [{"file_id": "1abc99de-ca45-48dc-a319-4ca6a01beccd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "454d5c6d620643b5830653846eec0607.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "454d5c6d620643b5830653846eec0607.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "454d5c6d620643b5830653846eec0607.jpg", "file_size": 78619, "is_delete": false, "file_type": 1, "original_file_name": "DH687#橙色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454d5c6d620643b5830653846eec0607.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454d5c6d620643b5830653846eec0607.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454d5c6d620643b5830653846eec0607.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/454d5c6d620643b5830653846eec0607.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/454d5c6d620643b5830653846eec0607.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dy7Jblxnwvn7R8byJruhc3Cb8ww=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.074808+00 2025-12-09 10:14:51.074812+00 6303 1058#白色袖子 SPMX-20240815301443 \N \N \N 1 \N [{"file_id": "9cf7faba-9bae-4431-af8f-21ec280aaa47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e284bf6ea98f40b2a07bb81db98ec143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e284bf6ea98f40b2a07bb81db98ec143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e284bf6ea98f40b2a07bb81db98ec143.jpg", "file_size": 10957, "is_delete": false, "file_type": 1, "original_file_name": "1058#白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e284bf6ea98f40b2a07bb81db98ec143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e284bf6ea98f40b2a07bb81db98ec143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e284bf6ea98f40b2a07bb81db98ec143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e284bf6ea98f40b2a07bb81db98ec143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e284bf6ea98f40b2a07bb81db98ec143.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tDXOIsG_voADQl_0wDXSxwhEMo=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.076092+00 2025-12-09 10:14:51.076097+00 6304 DH687#橙色XL SPMX-20240815301447 \N \N \N 1 \N [{"file_id": "2a2f5884-4cea-46f3-b461-7578aca49ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a92b0a22d5284782a125e11576c72513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a92b0a22d5284782a125e11576c72513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a92b0a22d5284782a125e11576c72513.jpg", "file_size": 68450, "is_delete": false, "file_type": 1, "original_file_name": "DH687#橙色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92b0a22d5284782a125e11576c72513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92b0a22d5284782a125e11576c72513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92b0a22d5284782a125e11576c72513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a92b0a22d5284782a125e11576c72513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a92b0a22d5284782a125e11576c72513.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTh61WFXc5lE51JkrtIzEXfRH-E=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.077397+00 2025-12-09 10:14:51.077401+00 6305 C272-2#黑色L SPMX-20240815301439 \N \N \N 1 \N [{"file_id": "caeab513-6463-4f62-b6ea-7e70c5dc5ecb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "812dc1974b0d4e60a01347c0046f6987.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "812dc1974b0d4e60a01347c0046f6987.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "812dc1974b0d4e60a01347c0046f6987.jpg", "file_size": 53268, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812dc1974b0d4e60a01347c0046f6987.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812dc1974b0d4e60a01347c0046f6987.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812dc1974b0d4e60a01347c0046f6987.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/812dc1974b0d4e60a01347c0046f6987.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/812dc1974b0d4e60a01347c0046f6987.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuQMHFD56mQUFwFuws7E1mpYe1w=", "createTime": "2024-08-15 14:43:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.078701+00 2025-12-09 10:14:51.078708+00 6306 FHXGPK-050-1 SPMX-20240815301441 \N \N \N 1 \N [{"file_id": "e917a6bd-1e5e-4105-8f27-98ef7fda5319", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0026ac6be6654a1582fbd7298bfa9f21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0026ac6be6654a1582fbd7298bfa9f21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0026ac6be6654a1582fbd7298bfa9f21.jpg", "file_size": 30243, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-050-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026ac6be6654a1582fbd7298bfa9f21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026ac6be6654a1582fbd7298bfa9f21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026ac6be6654a1582fbd7298bfa9f21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0026ac6be6654a1582fbd7298bfa9f21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0026ac6be6654a1582fbd7298bfa9f21.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u52-40RPBoQlnlgsO_fxxOT9Bco=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.08001+00 2025-12-09 10:14:51.080013+00 6307 LZ1227#上身5号色 SPMX-20240815301452 \N \N \N 1 \N [{"file_id": "ba1c44a8-7d5c-4361-b04a-6e182f908ab2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cbaf74aeea04a31a0c772344d06b352.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cbaf74aeea04a31a0c772344d06b352.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cbaf74aeea04a31a0c772344d06b352.jpg", "file_size": 20419, "is_delete": false, "file_type": 1, "original_file_name": "LZ1227#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbaf74aeea04a31a0c772344d06b352.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbaf74aeea04a31a0c772344d06b352.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbaf74aeea04a31a0c772344d06b352.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cbaf74aeea04a31a0c772344d06b352.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cbaf74aeea04a31a0c772344d06b352.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7K6b3XRLOAaz1kf_aozP5CubfZc=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.081306+00 2025-12-09 10:14:51.08131+00 6308 HT002#VSD3 SPMX-20240815301446 \N \N \N 1 \N [{"file_id": "71903ebe-e937-4f00-ba81-ce95cbc7611b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "115c8bafb9284ded8b4d92107000af6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "115c8bafb9284ded8b4d92107000af6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "115c8bafb9284ded8b4d92107000af6a.jpg", "file_size": 18858, "is_delete": false, "file_type": 1, "original_file_name": "HT002#VSD3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115c8bafb9284ded8b4d92107000af6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115c8bafb9284ded8b4d92107000af6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115c8bafb9284ded8b4d92107000af6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/115c8bafb9284ded8b4d92107000af6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/115c8bafb9284ded8b4d92107000af6a.jpg?e=1765361690&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rhbgyRKvnQGRgFsE48X7a_CEu8=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.780502+00 2025-12-09 10:14:51.780511+00 6309 FHXGPK-050-2 SPMX-20240815301451 \N \N \N 1 \N [{"file_id": "5f8fcb64-0caf-4086-85a2-043130b1293b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7481b02a1d9a4fbb90ab324e61d58ce4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7481b02a1d9a4fbb90ab324e61d58ce4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7481b02a1d9a4fbb90ab324e61d58ce4.jpg", "file_size": 33621, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-050-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481b02a1d9a4fbb90ab324e61d58ce4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481b02a1d9a4fbb90ab324e61d58ce4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481b02a1d9a4fbb90ab324e61d58ce4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7481b02a1d9a4fbb90ab324e61d58ce4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7481b02a1d9a4fbb90ab324e61d58ce4.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVhuIEXGmfRcyb9O68M5VnBjRjA=", "createTime": "2024-08-15 14:43:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.782867+00 2025-12-09 10:14:51.782873+00 6310 JT0165-11#WJC22 SPMX-20240815301455 \N \N \N 1 \N [{"file_id": "8b4ca1fb-1acc-4b17-92bf-c56115a89745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abbb6b388a66405e8d16f1a2acf61835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abbb6b388a66405e8d16f1a2acf61835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abbb6b388a66405e8d16f1a2acf61835.jpg", "file_size": 12178, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbb6b388a66405e8d16f1a2acf61835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbb6b388a66405e8d16f1a2acf61835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbb6b388a66405e8d16f1a2acf61835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abbb6b388a66405e8d16f1a2acf61835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abbb6b388a66405e8d16f1a2acf61835.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXeCFYYliw6mRILukPdATQFVFHE=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.784518+00 2025-12-09 10:14:51.784523+00 6311 LZ1228#童装T1号色 SPMX-20240815301461 \N \N \N 1 \N [{"file_id": "d1efb5a6-481e-4c3a-b4e7-16b6b52fd818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b742a231b08d4ca99c36a6dc6953f929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b742a231b08d4ca99c36a6dc6953f929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b742a231b08d4ca99c36a6dc6953f929.jpg", "file_size": 24192, "is_delete": false, "file_type": 1, "original_file_name": "LZ1228#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b742a231b08d4ca99c36a6dc6953f929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b742a231b08d4ca99c36a6dc6953f929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b742a231b08d4ca99c36a6dc6953f929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b742a231b08d4ca99c36a6dc6953f929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b742a231b08d4ca99c36a6dc6953f929.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_p6VdqDanjahxLLlIRU_2cw0TGg=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.786007+00 2025-12-09 10:14:51.786012+00 6312 C272-2#黑色匹布 SPMX-20240815301465 \N \N \N 1 \N [{"file_id": "6eb5ddd6-d42a-41fc-9ef8-f38063b448ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9680b6f11d74ff186299c3cc1f22320.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9680b6f11d74ff186299c3cc1f22320.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9680b6f11d74ff186299c3cc1f22320.jpg", "file_size": 60031, "is_delete": false, "file_type": 1, "original_file_name": "C272-2#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9680b6f11d74ff186299c3cc1f22320.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9680b6f11d74ff186299c3cc1f22320.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9680b6f11d74ff186299c3cc1f22320.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9680b6f11d74ff186299c3cc1f22320.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9680b6f11d74ff186299c3cc1f22320.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGaSy7qH7p9SZEr2fbqsOOkbtiM=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.787403+00 2025-12-09 10:14:51.787408+00 6313 23-2102#A6长袖子3XL SPMX-20240815301457 \N \N \N 1 \N [{"file_id": "3768a47f-8cd8-4eae-a87a-e8c8881619fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da41c46b92bc495ebb1b4fef55a9682d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da41c46b92bc495ebb1b4fef55a9682d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da41c46b92bc495ebb1b4fef55a9682d.jpg", "file_size": 36943, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6长袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da41c46b92bc495ebb1b4fef55a9682d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da41c46b92bc495ebb1b4fef55a9682d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da41c46b92bc495ebb1b4fef55a9682d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da41c46b92bc495ebb1b4fef55a9682d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da41c46b92bc495ebb1b4fef55a9682d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAYV2WrJqXLkXzzl76FQdm7XAwo=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.788732+00 2025-12-09 10:14:51.788737+00 6314 LHJ9307#20#z枣红 SPMX-20240815301463 \N \N \N 1 \N [{"file_id": "3a600e68-c0c1-471e-8976-530224919a5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e549c2fac6f845f3a3f9db4f557378be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e549c2fac6f845f3a3f9db4f557378be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e549c2fac6f845f3a3f9db4f557378be.jpg", "file_size": 22632, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#20#z枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e549c2fac6f845f3a3f9db4f557378be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e549c2fac6f845f3a3f9db4f557378be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e549c2fac6f845f3a3f9db4f557378be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e549c2fac6f845f3a3f9db4f557378be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e549c2fac6f845f3a3f9db4f557378be.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EfwdTDiE0ic-41H96Bxnyr34fNM=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.807105+00 2025-12-09 10:14:51.807109+00 6315 80139#橙色 SPMX-20240815301459 \N \N \N 1 \N [{"file_id": "3f97168b-17cb-4c86-b4a9-7690928a23c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aceef5b284d949c28079cfebff6a785c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aceef5b284d949c28079cfebff6a785c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aceef5b284d949c28079cfebff6a785c.jpg", "file_size": 10288, "is_delete": false, "file_type": 1, "original_file_name": "80139#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aceef5b284d949c28079cfebff6a785c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aceef5b284d949c28079cfebff6a785c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aceef5b284d949c28079cfebff6a785c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aceef5b284d949c28079cfebff6a785c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aceef5b284d949c28079cfebff6a785c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4P81Map05e4DLwmEroANC3J-9BY=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.808597+00 2025-12-09 10:14:51.808602+00 6316 JT0165-12#WJC22 SPMX-20240815301464 \N \N \N 1 \N [{"file_id": "e13fcf4a-9561-42f1-b29d-dfe87b9a217c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74d99ce723dc402f9a7441433aa70904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74d99ce723dc402f9a7441433aa70904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74d99ce723dc402f9a7441433aa70904.jpg", "file_size": 12325, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-12#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d99ce723dc402f9a7441433aa70904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d99ce723dc402f9a7441433aa70904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d99ce723dc402f9a7441433aa70904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74d99ce723dc402f9a7441433aa70904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74d99ce723dc402f9a7441433aa70904.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pv-NfXk_YHKXaok1r_9S1LZ0o4U=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.81011+00 2025-12-09 10:14:51.810115+00 6317 HT002#白 SPMX-20240815301456 \N \N \N 1 \N [{"file_id": "b949f6a7-37b5-4383-9bf8-dccf89a46b33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33e633d8aca94f81bd8349dfb19837ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33e633d8aca94f81bd8349dfb19837ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33e633d8aca94f81bd8349dfb19837ed.jpg", "file_size": 16715, "is_delete": false, "file_type": 1, "original_file_name": "HT002#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e633d8aca94f81bd8349dfb19837ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e633d8aca94f81bd8349dfb19837ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e633d8aca94f81bd8349dfb19837ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33e633d8aca94f81bd8349dfb19837ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33e633d8aca94f81bd8349dfb19837ed.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RnO1u-XDb2bMBrpQQ4kPknvSTls=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.811608+00 2025-12-09 10:14:51.811613+00 6318 DH687#深绿2XL SPMX-20240815301460 \N \N \N 1 \N [{"file_id": "a6f55ae5-7c13-4455-b056-efd033ec9e1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce18619d709404da4c5f381a66cd653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce18619d709404da4c5f381a66cd653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce18619d709404da4c5f381a66cd653.jpg", "file_size": 63949, "is_delete": false, "file_type": 1, "original_file_name": "DH687#深绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce18619d709404da4c5f381a66cd653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce18619d709404da4c5f381a66cd653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce18619d709404da4c5f381a66cd653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce18619d709404da4c5f381a66cd653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce18619d709404da4c5f381a66cd653.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7kMZL3wqQ2LCGSVlvIZurlTR4o=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.813108+00 2025-12-09 10:14:51.813113+00 6319 0003-204#WJC22 SPMX-20240815301458 \N \N \N 1 \N [{"file_id": "1f336b94-3ec1-4eea-9a4d-739f829a8fa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac74e42fdb40467392e851bdd1418749.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac74e42fdb40467392e851bdd1418749.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac74e42fdb40467392e851bdd1418749.jpg", "file_size": 20799, "is_delete": false, "file_type": 1, "original_file_name": "0003-204#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74e42fdb40467392e851bdd1418749.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74e42fdb40467392e851bdd1418749.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74e42fdb40467392e851bdd1418749.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac74e42fdb40467392e851bdd1418749.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac74e42fdb40467392e851bdd1418749.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vBAQ-9G6Nb-QSSuagQtu-MqRWXQ=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.81463+00 2025-12-09 10:14:51.814635+00 6320 23-2102#A6长袖子4XL SPMX-20240815301468 \N \N \N 1 \N [{"file_id": "7289fa1c-e831-4959-b165-af99a014d2ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa474933d51e4bd9ba76eaf58c7a68c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa474933d51e4bd9ba76eaf58c7a68c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa474933d51e4bd9ba76eaf58c7a68c8.jpg", "file_size": 36118, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6长袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa474933d51e4bd9ba76eaf58c7a68c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa474933d51e4bd9ba76eaf58c7a68c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa474933d51e4bd9ba76eaf58c7a68c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa474933d51e4bd9ba76eaf58c7a68c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa474933d51e4bd9ba76eaf58c7a68c8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YknrqmkuwlPA3ANcrIDbOzdSurc=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.816141+00 2025-12-09 10:14:51.816146+00 6321 0003-205#白色 SPMX-20240815301469 \N \N \N 1 \N [{"file_id": "06b2f2d7-8fb8-4cc5-b088-35222f8464ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de7f5ed735da41639c568aeb23ba64a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de7f5ed735da41639c568aeb23ba64a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de7f5ed735da41639c568aeb23ba64a0.jpg", "file_size": 12565, "is_delete": false, "file_type": 1, "original_file_name": "0003-205#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7f5ed735da41639c568aeb23ba64a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7f5ed735da41639c568aeb23ba64a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7f5ed735da41639c568aeb23ba64a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de7f5ed735da41639c568aeb23ba64a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de7f5ed735da41639c568aeb23ba64a0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7B6Oj5aDpFTc20kvVjYNvHop_gY=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.817638+00 2025-12-09 10:14:51.817643+00 6322 FHXGPK-050-3 SPMX-20240815301462 \N \N \N 1 \N [{"file_id": "5fb63727-c3be-43be-82ba-1787872e2cea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb40f0c687e94a598df8c0350f1b46b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb40f0c687e94a598df8c0350f1b46b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb40f0c687e94a598df8c0350f1b46b1.jpg", "file_size": 25157, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-050-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb40f0c687e94a598df8c0350f1b46b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb40f0c687e94a598df8c0350f1b46b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb40f0c687e94a598df8c0350f1b46b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb40f0c687e94a598df8c0350f1b46b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb40f0c687e94a598df8c0350f1b46b1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7lWgT-sINtDvlfbkkmyHnvr8Sk=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.819146+00 2025-12-09 10:14:51.819151+00 6323 1058#粉色匹布 SPMX-20240815301466 \N \N \N 1 \N [{"file_id": "f52c90f5-01d7-47fa-8380-b415e63c18d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd977072071e44df969407dddc578f3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd977072071e44df969407dddc578f3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd977072071e44df969407dddc578f3a.jpg", "file_size": 14458, "is_delete": false, "file_type": 1, "original_file_name": "1058#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd977072071e44df969407dddc578f3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd977072071e44df969407dddc578f3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd977072071e44df969407dddc578f3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd977072071e44df969407dddc578f3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd977072071e44df969407dddc578f3a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inZWuGWDrs3Gkd3gViTLBxV5-d8=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.820661+00 2025-12-09 10:14:51.820666+00 6324 HT002#黑 SPMX-20240815301467 \N \N \N 1 \N [{"file_id": "32efb4f2-7967-4789-9e38-c8505733042c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e653bd0864ec4706b3adc4d474a87eea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e653bd0864ec4706b3adc4d474a87eea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e653bd0864ec4706b3adc4d474a87eea.jpg", "file_size": 15980, "is_delete": false, "file_type": 1, "original_file_name": "HT002#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e653bd0864ec4706b3adc4d474a87eea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e653bd0864ec4706b3adc4d474a87eea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e653bd0864ec4706b3adc4d474a87eea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e653bd0864ec4706b3adc4d474a87eea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e653bd0864ec4706b3adc4d474a87eea.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmog-h_Q7pfM7Z7fqxzT5b1chms=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.82216+00 2025-12-09 10:14:51.822164+00 6325 8013FWF#女2XL+童5 SPMX-20240815301480 \N \N \N 1 \N [{"file_id": "dfe5e6ac-887e-46c4-9029-c062d2541a6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fe30e5cba1e49e3a2ae674c7a99abfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fe30e5cba1e49e3a2ae674c7a99abfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fe30e5cba1e49e3a2ae674c7a99abfc.jpg", "file_size": 14468, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女2XL+童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe30e5cba1e49e3a2ae674c7a99abfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe30e5cba1e49e3a2ae674c7a99abfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe30e5cba1e49e3a2ae674c7a99abfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fe30e5cba1e49e3a2ae674c7a99abfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fe30e5cba1e49e3a2ae674c7a99abfc.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KeR0leWRhgLkWBneFj7lrscNMyk=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.823665+00 2025-12-09 10:14:51.82367+00 6326 LZ1228#童装T2号色 SPMX-20240815301472 \N \N \N 1 \N [{"file_id": "f6654245-651e-4d58-a03a-2066f472d8a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16428d62c708410c826b5d49da8a3744.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16428d62c708410c826b5d49da8a3744.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16428d62c708410c826b5d49da8a3744.jpg", "file_size": 23495, "is_delete": false, "file_type": 1, "original_file_name": "LZ1228#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16428d62c708410c826b5d49da8a3744.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16428d62c708410c826b5d49da8a3744.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16428d62c708410c826b5d49da8a3744.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16428d62c708410c826b5d49da8a3744.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16428d62c708410c826b5d49da8a3744.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJDjbY7mb-QCaY8O4tSegAlYXhg=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.825183+00 2025-12-09 10:14:51.825187+00 6327 8013FWF#女2XL+童4 SPMX-20240815301470 \N \N \N 1 \N [{"file_id": "8919bf52-306a-435e-916e-033cefb29c9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44026cda964246ed934c8e10b010d4d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44026cda964246ed934c8e10b010d4d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44026cda964246ed934c8e10b010d4d3.jpg", "file_size": 14130, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女2XL+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44026cda964246ed934c8e10b010d4d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44026cda964246ed934c8e10b010d4d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44026cda964246ed934c8e10b010d4d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44026cda964246ed934c8e10b010d4d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44026cda964246ed934c8e10b010d4d3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YeEhZJupmyWztulfkindKTpyvc=", "createTime": "2024-08-15 14:43:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.826699+00 2025-12-09 10:14:51.82671+00 6328 C274#1号色 SPMX-20240815301477 \N \N \N 1 \N [{"file_id": "73179c07-bd63-4047-8f89-39f67b153e7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d26b86aae14ed9ac93822ce384f784.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d26b86aae14ed9ac93822ce384f784.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d26b86aae14ed9ac93822ce384f784.jpg", "file_size": 64145, "is_delete": false, "file_type": 1, "original_file_name": "C274#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d26b86aae14ed9ac93822ce384f784.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d26b86aae14ed9ac93822ce384f784.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d26b86aae14ed9ac93822ce384f784.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d26b86aae14ed9ac93822ce384f784.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d26b86aae14ed9ac93822ce384f784.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFIjcpxmOcDPjkwRFgJHCPq3nKA=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.828203+00 2025-12-09 10:14:51.828208+00 6329 HT002FW# SPMX-20240815301476 \N \N \N 1 \N [{"file_id": "45836807-8c7a-4391-84cb-55df8edf0d86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e11aa0688474dcbbcd8012c48a3c97e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e11aa0688474dcbbcd8012c48a3c97e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e11aa0688474dcbbcd8012c48a3c97e.jpg", "file_size": 19753, "is_delete": false, "file_type": 1, "original_file_name": "HT002FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e11aa0688474dcbbcd8012c48a3c97e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e11aa0688474dcbbcd8012c48a3c97e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e11aa0688474dcbbcd8012c48a3c97e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e11aa0688474dcbbcd8012c48a3c97e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e11aa0688474dcbbcd8012c48a3c97e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEECMaNx_qd4TdoJu7fEbhGz_Es=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.829717+00 2025-12-09 10:14:51.829721+00 6330 DH687#深绿L SPMX-20240815301471 \N \N \N 1 \N [{"file_id": "a548d8eb-b2f2-4ea5-995d-7d9f927ad322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9efd1b18bcc04786b452b6011825de25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9efd1b18bcc04786b452b6011825de25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9efd1b18bcc04786b452b6011825de25.jpg", "file_size": 69784, "is_delete": false, "file_type": 1, "original_file_name": "DH687#深绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9efd1b18bcc04786b452b6011825de25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9efd1b18bcc04786b452b6011825de25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9efd1b18bcc04786b452b6011825de25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9efd1b18bcc04786b452b6011825de25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9efd1b18bcc04786b452b6011825de25.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8l_e5Il5ZlkF1i5OwBRxVUbtBU=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.831221+00 2025-12-09 10:14:51.831225+00 6331 23-2102#A6领口 SPMX-20240815301478 \N \N \N 1 \N [{"file_id": "fd463b25-a8ae-4ce8-a67a-d16baaf79eab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b9fb5270e1845ba90d38155fc0e8846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b9fb5270e1845ba90d38155fc0e8846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b9fb5270e1845ba90d38155fc0e8846.jpg", "file_size": 17550, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9fb5270e1845ba90d38155fc0e8846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9fb5270e1845ba90d38155fc0e8846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9fb5270e1845ba90d38155fc0e8846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b9fb5270e1845ba90d38155fc0e8846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b9fb5270e1845ba90d38155fc0e8846.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Rba-9TdvulQ3jlF8-_Hn0RJ69Y=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.832721+00 2025-12-09 10:14:51.832726+00 6332 0003-205#粉色 SPMX-20240815301481 \N \N \N 1 \N [{"file_id": "35361bc7-819c-432c-996b-0d3154f18a53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c247126d8e2346e4b4710b7ab3b3e17f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c247126d8e2346e4b4710b7ab3b3e17f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c247126d8e2346e4b4710b7ab3b3e17f.jpg", "file_size": 14133, "is_delete": false, "file_type": 1, "original_file_name": "0003-205#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c247126d8e2346e4b4710b7ab3b3e17f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c247126d8e2346e4b4710b7ab3b3e17f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c247126d8e2346e4b4710b7ab3b3e17f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c247126d8e2346e4b4710b7ab3b3e17f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c247126d8e2346e4b4710b7ab3b3e17f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0tx2YBnbVFOVJOeUCM60euq9WE=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.834235+00 2025-12-09 10:14:51.83424+00 6333 LHJ9307#20#枣红 SPMX-20240815301474 \N \N \N 1 \N [{"file_id": "233c761b-ebcd-4865-9a88-5187a1e6236f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2ff622412c6453bbe64a0d948501344.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2ff622412c6453bbe64a0d948501344.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2ff622412c6453bbe64a0d948501344.jpg", "file_size": 22632, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2ff622412c6453bbe64a0d948501344.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2ff622412c6453bbe64a0d948501344.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2ff622412c6453bbe64a0d948501344.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2ff622412c6453bbe64a0d948501344.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2ff622412c6453bbe64a0d948501344.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIrpe4l4zcOfujTk_-7l0fA3ipE=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.83574+00 2025-12-09 10:14:51.835744+00 6334 FHXGPK-050-4 SPMX-20240815301473 \N \N \N 1 \N [{"file_id": "e3bafe16-3b90-44f0-9ebd-fdf028f12a36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a19bc06ba3584d76903306aa51cb2fd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a19bc06ba3584d76903306aa51cb2fd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a19bc06ba3584d76903306aa51cb2fd4.jpg", "file_size": 28927, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-050-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19bc06ba3584d76903306aa51cb2fd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19bc06ba3584d76903306aa51cb2fd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19bc06ba3584d76903306aa51cb2fd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a19bc06ba3584d76903306aa51cb2fd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a19bc06ba3584d76903306aa51cb2fd4.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zne1xPqVdSPzDoP-GmIkPSElZ3Q=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.837232+00 2025-12-09 10:14:51.837237+00 6335 JT0165-13#LWQ15 SPMX-20240815301475 \N \N \N 1 \N [{"file_id": "21589848-fc37-48d6-abe0-f40be4e1d3f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c95c816932b249318161e74a0e2572ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c95c816932b249318161e74a0e2572ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c95c816932b249318161e74a0e2572ee.jpg", "file_size": 14826, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-13#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c816932b249318161e74a0e2572ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c816932b249318161e74a0e2572ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c816932b249318161e74a0e2572ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c95c816932b249318161e74a0e2572ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c95c816932b249318161e74a0e2572ee.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zq9_uYAx0yrxayDM-0XJeU_Ke-0=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.838734+00 2025-12-09 10:14:51.838739+00 6336 1058#粉色袖子 SPMX-20240815301479 \N \N \N 1 \N [{"file_id": "3f55de81-ec09-4906-9206-ae71fe6a6322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "667bb56ac7f649a1927457e538f2cd00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "667bb56ac7f649a1927457e538f2cd00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "667bb56ac7f649a1927457e538f2cd00.jpg", "file_size": 11058, "is_delete": false, "file_type": 1, "original_file_name": "1058#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/667bb56ac7f649a1927457e538f2cd00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/667bb56ac7f649a1927457e538f2cd00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/667bb56ac7f649a1927457e538f2cd00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/667bb56ac7f649a1927457e538f2cd00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/667bb56ac7f649a1927457e538f2cd00.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8425bEyckSj6Mb6Duf3Srbx59ig=", "createTime": "2024-08-15 14:43:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.840251+00 2025-12-09 10:14:51.840255+00 6337 23-2102#A6领子通用 SPMX-20240815301486 \N \N \N 1 \N [{"file_id": "c4e6c9dc-392e-4338-89a3-bb2df79f3ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6115d9e463664e809cc0ab5ec359c59b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6115d9e463664e809cc0ab5ec359c59b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6115d9e463664e809cc0ab5ec359c59b.jpg", "file_size": 16664, "is_delete": false, "file_type": 1, "original_file_name": "23-2102#A6领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6115d9e463664e809cc0ab5ec359c59b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6115d9e463664e809cc0ab5ec359c59b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6115d9e463664e809cc0ab5ec359c59b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6115d9e463664e809cc0ab5ec359c59b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6115d9e463664e809cc0ab5ec359c59b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0OxwkLpKkqW-Jl1gccCUCngGBI=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.841764+00 2025-12-09 10:14:51.841769+00 6338 DH687#深绿M SPMX-20240815301482 \N \N \N 1 \N [{"file_id": "63d5c6d4-9dc9-4be8-9626-e25a24c3835a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b11fc92b8aa04eb091815597a84e54e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b11fc92b8aa04eb091815597a84e54e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b11fc92b8aa04eb091815597a84e54e7.jpg", "file_size": 74069, "is_delete": false, "file_type": 1, "original_file_name": "DH687#深绿M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fc92b8aa04eb091815597a84e54e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fc92b8aa04eb091815597a84e54e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fc92b8aa04eb091815597a84e54e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b11fc92b8aa04eb091815597a84e54e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b11fc92b8aa04eb091815597a84e54e7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9F-vRx_KatYs5GXaHggUAVwhjFE=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.84326+00 2025-12-09 10:14:51.843265+00 6339 8013FWF#女2XL+童8 SPMX-20240815301487 \N \N \N 1 \N [{"file_id": "1bf1f650-9753-4167-bb83-b4cce70a0c55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32d11a209ad144c9bf24b72df4ef5ff2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32d11a209ad144c9bf24b72df4ef5ff2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32d11a209ad144c9bf24b72df4ef5ff2.jpg", "file_size": 14244, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女2XL+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d11a209ad144c9bf24b72df4ef5ff2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d11a209ad144c9bf24b72df4ef5ff2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d11a209ad144c9bf24b72df4ef5ff2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32d11a209ad144c9bf24b72df4ef5ff2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32d11a209ad144c9bf24b72df4ef5ff2.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVVMoC8qmCw2nlSJFLIonOoVjNk=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.84476+00 2025-12-09 10:14:51.844765+00 6340 HT002FWE#VS-D3 SPMX-20240815301489 \N \N \N 1 \N [{"file_id": "bb9687e8-c828-4202-abea-9514e4cf01c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4eb3b5644bc44619670cb3a87cc8bec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4eb3b5644bc44619670cb3a87cc8bec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4eb3b5644bc44619670cb3a87cc8bec.jpg", "file_size": 21374, "is_delete": false, "file_type": 1, "original_file_name": "HT002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb3b5644bc44619670cb3a87cc8bec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb3b5644bc44619670cb3a87cc8bec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb3b5644bc44619670cb3a87cc8bec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4eb3b5644bc44619670cb3a87cc8bec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4eb3b5644bc44619670cb3a87cc8bec.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqFvSI9evTPDSGR5WBuIeZGuqQ0=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.846277+00 2025-12-09 10:14:51.846282+00 6341 FHXGPK-050-5 SPMX-20240815301485 \N \N \N 1 \N [{"file_id": "9f9ee9b6-afe2-4cb6-a565-68817e53e23f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc06399bfc154d61a3f9e18382481b1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc06399bfc154d61a3f9e18382481b1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc06399bfc154d61a3f9e18382481b1d.jpg", "file_size": 29815, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-050-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc06399bfc154d61a3f9e18382481b1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc06399bfc154d61a3f9e18382481b1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc06399bfc154d61a3f9e18382481b1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc06399bfc154d61a3f9e18382481b1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc06399bfc154d61a3f9e18382481b1d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DkXSEjObtMx4Gr840W2ZIJYxMI0=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.847775+00 2025-12-09 10:14:51.847779+00 6342 0003-205#黄色 SPMX-20240815301492 \N \N \N 1 \N [{"file_id": "f011fd5f-75b0-43d0-82e5-943a0ddcea89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c4f956c5668447090421434c67ae9c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c4f956c5668447090421434c67ae9c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c4f956c5668447090421434c67ae9c3.jpg", "file_size": 15561, "is_delete": false, "file_type": 1, "original_file_name": "0003-205#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4f956c5668447090421434c67ae9c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4f956c5668447090421434c67ae9c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4f956c5668447090421434c67ae9c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c4f956c5668447090421434c67ae9c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c4f956c5668447090421434c67ae9c3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfAVCXitVGHRvHa4Ivwt_l13BBA=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.849273+00 2025-12-09 10:14:51.849278+00 6343 LZ1228#童装T3号色 SPMX-20240815301484 \N \N \N 1 \N [{"file_id": "57a3b59a-a235-460d-9249-165c5fff2ab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d5df32f0534829b379cd500936752b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d5df32f0534829b379cd500936752b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d5df32f0534829b379cd500936752b.jpg", "file_size": 24219, "is_delete": false, "file_type": 1, "original_file_name": "LZ1228#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d5df32f0534829b379cd500936752b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d5df32f0534829b379cd500936752b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d5df32f0534829b379cd500936752b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d5df32f0534829b379cd500936752b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d5df32f0534829b379cd500936752b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQFMu5sJL_gtKuCqZ8aoIcPWAo8=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.850785+00 2025-12-09 10:14:51.85079+00 6344 1058#青色 SPMX-20240815301488 \N \N \N 1 \N [{"file_id": "ea037f84-fdb2-46fa-8a5e-89e69906bdb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a63845cd7e824c2ca9a6c6c53be06aca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a63845cd7e824c2ca9a6c6c53be06aca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a63845cd7e824c2ca9a6c6c53be06aca.jpg", "file_size": 17528, "is_delete": false, "file_type": 1, "original_file_name": "1058#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63845cd7e824c2ca9a6c6c53be06aca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63845cd7e824c2ca9a6c6c53be06aca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63845cd7e824c2ca9a6c6c53be06aca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a63845cd7e824c2ca9a6c6c53be06aca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a63845cd7e824c2ca9a6c6c53be06aca.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yP3BgZ9xN3J-MxV2lySFKTBaECM=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.85228+00 2025-12-09 10:14:51.852284+00 6345 JT0165-13#WJC22 SPMX-20240815301490 \N \N \N 1 \N [{"file_id": "abb93aee-01d3-4512-9c5f-daec599f370c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5426c389adda47e2bb77ad43c3834016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5426c389adda47e2bb77ad43c3834016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5426c389adda47e2bb77ad43c3834016.jpg", "file_size": 14779, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426c389adda47e2bb77ad43c3834016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426c389adda47e2bb77ad43c3834016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426c389adda47e2bb77ad43c3834016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5426c389adda47e2bb77ad43c3834016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5426c389adda47e2bb77ad43c3834016.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_BE9wXf6r4S3_mzeKQ2OuCndYo=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.853801+00 2025-12-09 10:14:51.853805+00 6346 C274#2号色 SPMX-20240815301491 \N \N \N 1 \N [{"file_id": "f0aecc45-4b15-4bee-9f3b-ea22e0a47777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ced4219855fe4cf7aa393afa143ce5a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ced4219855fe4cf7aa393afa143ce5a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ced4219855fe4cf7aa393afa143ce5a5.jpg", "file_size": 57666, "is_delete": false, "file_type": 1, "original_file_name": "C274#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced4219855fe4cf7aa393afa143ce5a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced4219855fe4cf7aa393afa143ce5a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced4219855fe4cf7aa393afa143ce5a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ced4219855fe4cf7aa393afa143ce5a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ced4219855fe4cf7aa393afa143ce5a5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9pDfPNV8axzSK2f9BO0Mlcts1g=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.855295+00 2025-12-09 10:14:51.855299+00 6347 LHJ9307#37#玫红 SPMX-20240815301483 \N \N \N 1 \N [{"file_id": "6de6a07c-2edb-4e25-a15f-782b80f976ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddd26c68a88a4f2aa6fabbc5ff335161.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddd26c68a88a4f2aa6fabbc5ff335161.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddd26c68a88a4f2aa6fabbc5ff335161.jpg", "file_size": 18571, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd26c68a88a4f2aa6fabbc5ff335161.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd26c68a88a4f2aa6fabbc5ff335161.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd26c68a88a4f2aa6fabbc5ff335161.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddd26c68a88a4f2aa6fabbc5ff335161.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddd26c68a88a4f2aa6fabbc5ff335161.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TlOisJjIkKWtapV3S-2XK2ZuqNk=", "createTime": "2024-08-15 14:43:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.856801+00 2025-12-09 10:14:51.856806+00 6348 1058#青色匹布 SPMX-20240815301500 \N \N \N 1 \N [{"file_id": "64fe81a6-376f-49ad-a2f8-1e623c691d2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df3932f016f24c8da19d4eab78547d11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df3932f016f24c8da19d4eab78547d11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df3932f016f24c8da19d4eab78547d11.jpg", "file_size": 15021, "is_delete": false, "file_type": 1, "original_file_name": "1058#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3932f016f24c8da19d4eab78547d11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3932f016f24c8da19d4eab78547d11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3932f016f24c8da19d4eab78547d11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df3932f016f24c8da19d4eab78547d11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df3932f016f24c8da19d4eab78547d11.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkgSB2XkUd9SXp9gJcqEdXItc-I=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.858313+00 2025-12-09 10:14:51.858318+00 6349 0003-206#飞版本 SPMX-20240815301502 \N \N \N 1 \N [{"file_id": "8505231c-bb6d-4c48-9310-eaaed68fe6d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96e3d3c494cf459ea704c7b123d5b157.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96e3d3c494cf459ea704c7b123d5b157.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96e3d3c494cf459ea704c7b123d5b157.jpg", "file_size": 22154, "is_delete": false, "file_type": 1, "original_file_name": "0003-206#飞版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e3d3c494cf459ea704c7b123d5b157.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e3d3c494cf459ea704c7b123d5b157.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e3d3c494cf459ea704c7b123d5b157.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96e3d3c494cf459ea704c7b123d5b157.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96e3d3c494cf459ea704c7b123d5b157.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ZpNKplqQMzHfWqrvPalnTJ3xpc=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.859833+00 2025-12-09 10:14:51.859838+00 6350 FHXGPK-051-1 SPMX-20240815301496 \N \N \N 1 \N [{"file_id": "0c65b0ce-4aa0-4ada-ba69-233741b51f7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adce12187df349e6960e926d63694c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adce12187df349e6960e926d63694c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adce12187df349e6960e926d63694c2a.jpg", "file_size": 24726, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-051-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adce12187df349e6960e926d63694c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adce12187df349e6960e926d63694c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adce12187df349e6960e926d63694c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adce12187df349e6960e926d63694c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adce12187df349e6960e926d63694c2a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkbV_dAHooO3PMzZQvwpucN3_wU=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.861336+00 2025-12-09 10:14:51.86134+00 6351 LZ1228#童装T4号色 SPMX-20240815301498 \N \N \N 1 \N [{"file_id": "e9814569-58a4-455e-9ac2-d5ee2e6b6102", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d1e517f14b6469b95c9a423fe39dc18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d1e517f14b6469b95c9a423fe39dc18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d1e517f14b6469b95c9a423fe39dc18.jpg", "file_size": 23898, "is_delete": false, "file_type": 1, "original_file_name": "LZ1228#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1e517f14b6469b95c9a423fe39dc18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1e517f14b6469b95c9a423fe39dc18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1e517f14b6469b95c9a423fe39dc18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d1e517f14b6469b95c9a423fe39dc18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d1e517f14b6469b95c9a423fe39dc18.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqhbtkLLdiAHpz_SqS5fEoqVWcg=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.862846+00 2025-12-09 10:14:51.86285+00 6352 HT003# SPMX-20240815301499 \N \N \N 1 \N [{"file_id": "76ec2d4b-6dd1-4440-a700-9eaffdd16df3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ffedadef68e404bab000151696bd93d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ffedadef68e404bab000151696bd93d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ffedadef68e404bab000151696bd93d.jpg", "file_size": 19752, "is_delete": false, "file_type": 1, "original_file_name": "HT003#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffedadef68e404bab000151696bd93d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffedadef68e404bab000151696bd93d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffedadef68e404bab000151696bd93d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ffedadef68e404bab000151696bd93d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ffedadef68e404bab000151696bd93d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbXypt_tbaMgR35_oFHuDDOjDmI=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.870394+00 2025-12-09 10:14:51.870399+00 6357 8013FWF#女L+童12 SPMX-20240815301497 \N \N \N 1 \N [{"file_id": "8087221c-2d58-4160-8664-97d8d6104363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f074297ee9b2419db7840bc4932c73b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f074297ee9b2419db7840bc4932c73b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f074297ee9b2419db7840bc4932c73b9.jpg", "file_size": 13892, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女L+童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f074297ee9b2419db7840bc4932c73b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f074297ee9b2419db7840bc4932c73b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f074297ee9b2419db7840bc4932c73b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f074297ee9b2419db7840bc4932c73b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f074297ee9b2419db7840bc4932c73b9.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__ni0M0lEfABVJt-BPZ5k5coAJs=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.864349+00 2025-12-09 10:14:51.864353+00 6353 23-2103#A10前后片3XL SPMX-20240815301494 \N \N \N 1 \N [{"file_id": "fede1760-5e3c-4635-a7c7-40babfcb0dc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efdc8e731ebf4f02bc9f194f9a8d9386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efdc8e731ebf4f02bc9f194f9a8d9386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efdc8e731ebf4f02bc9f194f9a8d9386.jpg", "file_size": 11605, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A10前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdc8e731ebf4f02bc9f194f9a8d9386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdc8e731ebf4f02bc9f194f9a8d9386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdc8e731ebf4f02bc9f194f9a8d9386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efdc8e731ebf4f02bc9f194f9a8d9386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efdc8e731ebf4f02bc9f194f9a8d9386.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GM78Goq5uHxaaY-rjKVpRuTKvLk=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.865871+00 2025-12-09 10:14:51.865876+00 6354 C274#3号色 SPMX-20240815301503 \N \N \N 1 \N [{"file_id": "600278b8-75b6-4220-9fbf-41b3772ed64b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0bb505452b24bc4a3f26c52700d7a7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0bb505452b24bc4a3f26c52700d7a7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0bb505452b24bc4a3f26c52700d7a7e.jpg", "file_size": 63336, "is_delete": false, "file_type": 1, "original_file_name": "C274#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bb505452b24bc4a3f26c52700d7a7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bb505452b24bc4a3f26c52700d7a7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bb505452b24bc4a3f26c52700d7a7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0bb505452b24bc4a3f26c52700d7a7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0bb505452b24bc4a3f26c52700d7a7e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQBlwOFKHILenJTu7jfjuxnpbow=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.867373+00 2025-12-09 10:14:51.867378+00 6355 DH687#深绿XL SPMX-20240815301504 \N \N \N 1 \N [{"file_id": "23358c62-228f-453d-8d1d-ca5fab539a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd950cee99494781873c4fcc35f5fe7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd950cee99494781873c4fcc35f5fe7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd950cee99494781873c4fcc35f5fe7d.jpg", "file_size": 66244, "is_delete": false, "file_type": 1, "original_file_name": "DH687#深绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd950cee99494781873c4fcc35f5fe7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd950cee99494781873c4fcc35f5fe7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd950cee99494781873c4fcc35f5fe7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd950cee99494781873c4fcc35f5fe7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd950cee99494781873c4fcc35f5fe7d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yihVwpgQbyiOVh9ps5mAGRpqxh4=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.868889+00 2025-12-09 10:14:51.868894+00 6356 LHJ9307#5#彩兰 SPMX-20240815301495 \N \N \N 1 \N [{"file_id": "3cc8b097-b627-4f88-8f4f-0169a0a77899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa8e7e00cfbd4f92ac946925c0ccc915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa8e7e00cfbd4f92ac946925c0ccc915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa8e7e00cfbd4f92ac946925c0ccc915.jpg", "file_size": 22043, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8e7e00cfbd4f92ac946925c0ccc915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8e7e00cfbd4f92ac946925c0ccc915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8e7e00cfbd4f92ac946925c0ccc915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa8e7e00cfbd4f92ac946925c0ccc915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa8e7e00cfbd4f92ac946925c0ccc915.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvpdG66iS47PcT5d3MeUrAUTZc8=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.871914+00 2025-12-09 10:14:51.871919+00 6358 DH687#深绿S SPMX-20240815301493 \N \N \N 1 \N [{"file_id": "4ec71621-8a39-4f49-befe-162189e21baf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9be3996b0a854c188354b9bae9bc4ea7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9be3996b0a854c188354b9bae9bc4ea7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9be3996b0a854c188354b9bae9bc4ea7.jpg", "file_size": 76733, "is_delete": false, "file_type": 1, "original_file_name": "DH687#深绿S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be3996b0a854c188354b9bae9bc4ea7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be3996b0a854c188354b9bae9bc4ea7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be3996b0a854c188354b9bae9bc4ea7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9be3996b0a854c188354b9bae9bc4ea7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9be3996b0a854c188354b9bae9bc4ea7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAQeAsBBoxB8OU2AhSswE949XRg=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.873432+00 2025-12-09 10:14:51.873437+00 6359 23-2103#A10前后片4XL SPMX-20240815301506 \N \N \N 1 \N [{"file_id": "f07efb1c-377e-4a58-91b0-fa45b1e2decb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f6e12b4a75d4724b3b47785e6c96ae4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f6e12b4a75d4724b3b47785e6c96ae4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f6e12b4a75d4724b3b47785e6c96ae4.jpg", "file_size": 11439, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A10前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6e12b4a75d4724b3b47785e6c96ae4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6e12b4a75d4724b3b47785e6c96ae4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6e12b4a75d4724b3b47785e6c96ae4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f6e12b4a75d4724b3b47785e6c96ae4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f6e12b4a75d4724b3b47785e6c96ae4.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VoWBaoczgb34d42CRRboLdOXOQ=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.874944+00 2025-12-09 10:14:51.874949+00 6360 JT0165-2#WJC22 SPMX-20240815301501 \N \N \N 1 \N [{"file_id": "dd85fbbc-0536-4bb2-9f69-c17cc16c3dbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9b385051a634027b6b5b37c735a7c11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9b385051a634027b6b5b37c735a7c11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9b385051a634027b6b5b37c735a7c11.jpg", "file_size": 13585, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b385051a634027b6b5b37c735a7c11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b385051a634027b6b5b37c735a7c11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b385051a634027b6b5b37c735a7c11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9b385051a634027b6b5b37c735a7c11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9b385051a634027b6b5b37c735a7c11.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mn_tI1IJ8PsEBdkIJ-Wf3L-K0PA=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.876437+00 2025-12-09 10:14:51.876442+00 6361 LHJ9307#6#咖啡 SPMX-20240815301505 \N \N \N 1 \N [{"file_id": "1c4eec54-7848-40a5-bf8c-3998e0303ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "370fdd2e93d24b5a9cff3a63895405e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "370fdd2e93d24b5a9cff3a63895405e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "370fdd2e93d24b5a9cff3a63895405e3.jpg", "file_size": 19499, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#6#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/370fdd2e93d24b5a9cff3a63895405e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/370fdd2e93d24b5a9cff3a63895405e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/370fdd2e93d24b5a9cff3a63895405e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/370fdd2e93d24b5a9cff3a63895405e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/370fdd2e93d24b5a9cff3a63895405e3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4qnN1yjk0n5MYGFD5vId6QD6MAo=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.877941+00 2025-12-09 10:14:51.877946+00 6362 FHXGPK-051-2 SPMX-20240815301509 \N \N \N 1 \N [{"file_id": "f18abcbd-b347-44ff-9791-d790caf748d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f475268c44724c2797d851dd3e9f0ab9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f475268c44724c2797d851dd3e9f0ab9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f475268c44724c2797d851dd3e9f0ab9.jpg", "file_size": 27460, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-051-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f475268c44724c2797d851dd3e9f0ab9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f475268c44724c2797d851dd3e9f0ab9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f475268c44724c2797d851dd3e9f0ab9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f475268c44724c2797d851dd3e9f0ab9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f475268c44724c2797d851dd3e9f0ab9.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6j82U4Hskd7Q-ze6VdxWBbXwJ0=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.879461+00 2025-12-09 10:14:51.879466+00 6363 LZ1229#大人T1号色 SPMX-20240815301508 \N \N \N 1 \N [{"file_id": "64a62ba8-daa3-4000-ac91-b11865dc3341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bef5d7b89cd4d68a8165d64cf24a26f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bef5d7b89cd4d68a8165d64cf24a26f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bef5d7b89cd4d68a8165d64cf24a26f.jpg", "file_size": 18476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bef5d7b89cd4d68a8165d64cf24a26f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bef5d7b89cd4d68a8165d64cf24a26f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bef5d7b89cd4d68a8165d64cf24a26f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bef5d7b89cd4d68a8165d64cf24a26f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bef5d7b89cd4d68a8165d64cf24a26f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7N6QRRXD9jdOTRlTXD4jVXZokI=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.880977+00 2025-12-09 10:14:51.880982+00 6364 8013FWF#女L+童3 SPMX-20240815301507 \N \N \N 1 \N [{"file_id": "46163c68-a645-430a-91d2-77e43997002b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c889c009bb48c4929e05d1da323941.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c889c009bb48c4929e05d1da323941.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c889c009bb48c4929e05d1da323941.jpg", "file_size": 14045, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女L+童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c889c009bb48c4929e05d1da323941.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c889c009bb48c4929e05d1da323941.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c889c009bb48c4929e05d1da323941.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c889c009bb48c4929e05d1da323941.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c889c009bb48c4929e05d1da323941.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DjJ32RKQXNm0_WOjjI6kG7VDits=", "createTime": "2024-08-15 14:43:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.882479+00 2025-12-09 10:14:51.882484+00 6365 JT0165-3#WJC22 SPMX-20240815301510 \N \N \N 1 \N [{"file_id": "3a9630d3-1af9-40aa-9cd3-cf2ceed7f4a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96a6eae43a1b4374a67f35948415160e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96a6eae43a1b4374a67f35948415160e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96a6eae43a1b4374a67f35948415160e.jpg", "file_size": 16789, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96a6eae43a1b4374a67f35948415160e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96a6eae43a1b4374a67f35948415160e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96a6eae43a1b4374a67f35948415160e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96a6eae43a1b4374a67f35948415160e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96a6eae43a1b4374a67f35948415160e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7ExZY3s6NBgaClyZnZoH-7LCgM=", "createTime": "2024-08-15 14:43:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.883991+00 2025-12-09 10:14:51.883996+00 6366 1058#青色袖子 SPMX-20240815301511 \N \N \N 1 \N [{"file_id": "019a2059-2dcf-4503-944c-18ebb41fd2fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8489462ccca41e48fadd7d8697ed514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8489462ccca41e48fadd7d8697ed514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8489462ccca41e48fadd7d8697ed514.jpg", "file_size": 10743, "is_delete": false, "file_type": 1, "original_file_name": "1058#青色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8489462ccca41e48fadd7d8697ed514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8489462ccca41e48fadd7d8697ed514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8489462ccca41e48fadd7d8697ed514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8489462ccca41e48fadd7d8697ed514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8489462ccca41e48fadd7d8697ed514.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KCrtavoAdI9hr_R2-OxvkYr8y8=", "createTime": "2024-08-15 14:43:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.885743+00 2025-12-09 10:14:51.885747+00 6367 DH687#紫红色2XL SPMX-20240815301517 \N \N \N 1 \N [{"file_id": "b8d2cbbf-738c-4f36-a171-c717bef65823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de5d84938874fb0965a98bc47fbc7a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de5d84938874fb0965a98bc47fbc7a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de5d84938874fb0965a98bc47fbc7a8.jpg", "file_size": 68337, "is_delete": false, "file_type": 1, "original_file_name": "DH687#紫红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de5d84938874fb0965a98bc47fbc7a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de5d84938874fb0965a98bc47fbc7a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de5d84938874fb0965a98bc47fbc7a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de5d84938874fb0965a98bc47fbc7a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de5d84938874fb0965a98bc47fbc7a8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9HN5E1kHDGj5FfoIUqf-jCzdUBc=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.887235+00 2025-12-09 10:14:51.88724+00 6368 0003-207#WJC22 SPMX-20240815301514 \N \N \N 1 \N [{"file_id": "219d552e-e1da-47b8-9b73-03e110a89300", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg", "file_size": 12962, "is_delete": false, "file_type": 1, "original_file_name": "0003-207#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ec1d0d3798c49fab8eb43c4b2cc75a5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCjFoX68r6DyyP8XfP1xk3ARWrc=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.888741+00 2025-12-09 10:14:51.888746+00 6369 1059#宝蓝 SPMX-20240815301522 \N \N \N 1 \N [{"file_id": "d9527888-7770-4649-8d5d-257f1a24ff72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7aa1e14bf4f49bd9a7175b035344b27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7aa1e14bf4f49bd9a7175b035344b27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7aa1e14bf4f49bd9a7175b035344b27.jpg", "file_size": 25091, "is_delete": false, "file_type": 1, "original_file_name": "1059#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7aa1e14bf4f49bd9a7175b035344b27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7aa1e14bf4f49bd9a7175b035344b27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7aa1e14bf4f49bd9a7175b035344b27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7aa1e14bf4f49bd9a7175b035344b27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7aa1e14bf4f49bd9a7175b035344b27.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2_sTrcOusE30XOZAl7U6ze6aIw=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.890256+00 2025-12-09 10:14:51.89026+00 6370 C275#-宝蓝 SPMX-20240815301523 \N \N \N 1 \N [{"file_id": "799a3bdd-dd19-4604-91b2-5520b05e57db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99ade3a790a9415b98d93de0637925fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99ade3a790a9415b98d93de0637925fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99ade3a790a9415b98d93de0637925fa.jpg", "file_size": 32166, "is_delete": false, "file_type": 1, "original_file_name": "C275#-宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ade3a790a9415b98d93de0637925fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ade3a790a9415b98d93de0637925fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ade3a790a9415b98d93de0637925fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99ade3a790a9415b98d93de0637925fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99ade3a790a9415b98d93de0637925fa.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zSlt8wEOGKy-bUITeH_iITWIWY=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.891757+00 2025-12-09 10:14:51.891762+00 6371 HT003FW# SPMX-20240815301524 \N \N \N 1 \N [{"file_id": "7dd21e64-27eb-48f3-a96e-56b3a974536b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da3b5483d0264f2e83148f5f96f89baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da3b5483d0264f2e83148f5f96f89baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da3b5483d0264f2e83148f5f96f89baa.jpg", "file_size": 16291, "is_delete": false, "file_type": 1, "original_file_name": "HT003FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b5483d0264f2e83148f5f96f89baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b5483d0264f2e83148f5f96f89baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b5483d0264f2e83148f5f96f89baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da3b5483d0264f2e83148f5f96f89baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da3b5483d0264f2e83148f5f96f89baa.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvl3Y-aM1MuHlO3yEtzddW8qUWo=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.893274+00 2025-12-09 10:14:51.893279+00 6372 LZ1229#大人T2号色 SPMX-20240815301520 \N \N \N 1 \N [{"file_id": "b0101861-ff1d-4e17-b6b3-b417c0cbf31f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f423675b9454d6d92f6772b1a79ce67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f423675b9454d6d92f6772b1a79ce67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f423675b9454d6d92f6772b1a79ce67.jpg", "file_size": 17702, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f423675b9454d6d92f6772b1a79ce67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f423675b9454d6d92f6772b1a79ce67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f423675b9454d6d92f6772b1a79ce67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f423675b9454d6d92f6772b1a79ce67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f423675b9454d6d92f6772b1a79ce67.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:98QaXrDQg3pX0U9J_tS9OuAWEFY=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.894789+00 2025-12-09 10:14:51.894794+00 6373 8013FWF#女L SPMX-20240815301518 \N \N \N 1 \N [{"file_id": "a5a7cb83-da7c-43f6-961c-1e44c6880d04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d266078991d407c814782e4f8b372af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d266078991d407c814782e4f8b372af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d266078991d407c814782e4f8b372af.jpg", "file_size": 8681, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d266078991d407c814782e4f8b372af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d266078991d407c814782e4f8b372af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d266078991d407c814782e4f8b372af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d266078991d407c814782e4f8b372af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d266078991d407c814782e4f8b372af.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5X42_WNjOiKnr_BEHJpaCh5rHdA=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.896303+00 2025-12-09 10:14:51.896308+00 6374 23-2103#A10袖子3XL SPMX-20240815301521 \N \N \N 1 \N [{"file_id": "a3139ebb-c2dd-4813-85ad-168a6ccbde88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "813adf11af024084b5025b68735ef0c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "813adf11af024084b5025b68735ef0c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "813adf11af024084b5025b68735ef0c6.jpg", "file_size": 10012, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A10袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813adf11af024084b5025b68735ef0c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813adf11af024084b5025b68735ef0c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/813adf11af024084b5025b68735ef0c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/813adf11af024084b5025b68735ef0c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/813adf11af024084b5025b68735ef0c6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woHyvHGCIYMIAJ0wRw2vFqbIGsY=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.897797+00 2025-12-09 10:14:51.897802+00 6375 FHXGPK-051-3 SPMX-20240815301516 \N \N \N 1 \N [{"file_id": "f9c7c4d4-915f-4b97-b455-20e05525c142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b507f0260f48494481f6ebf17c4a4153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b507f0260f48494481f6ebf17c4a4153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b507f0260f48494481f6ebf17c4a4153.jpg", "file_size": 25097, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-051-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b507f0260f48494481f6ebf17c4a4153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b507f0260f48494481f6ebf17c4a4153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b507f0260f48494481f6ebf17c4a4153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b507f0260f48494481f6ebf17c4a4153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b507f0260f48494481f6ebf17c4a4153.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VD6DumDPug-c30StKuSXTIJgGho=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.899294+00 2025-12-09 10:14:51.899299+00 6376 LHJ9307#67#咖啡 SPMX-20240815301519 \N \N \N 1 \N [{"file_id": "30039f4d-daae-4b57-b7c1-51c203197103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "badd3e2fe2db42398de2e5ef174ce260.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "badd3e2fe2db42398de2e5ef174ce260.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "badd3e2fe2db42398de2e5ef174ce260.jpg", "file_size": 19522, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307#67#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd3e2fe2db42398de2e5ef174ce260.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd3e2fe2db42398de2e5ef174ce260.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd3e2fe2db42398de2e5ef174ce260.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/badd3e2fe2db42398de2e5ef174ce260.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/badd3e2fe2db42398de2e5ef174ce260.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qWDvnLskvOH6PmKfuFH_Zz7kltw=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.900827+00 2025-12-09 10:14:51.900832+00 6377 JT0165-4# SPMX-20240815301515 \N \N \N 1 \N [{"file_id": "218ddf42-7380-41d9-acec-02d31bb9c1cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8284cfd84216443eaffefb4208b66845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8284cfd84216443eaffefb4208b66845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8284cfd84216443eaffefb4208b66845.jpg", "file_size": 14776, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-4#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8284cfd84216443eaffefb4208b66845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8284cfd84216443eaffefb4208b66845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8284cfd84216443eaffefb4208b66845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8284cfd84216443eaffefb4208b66845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8284cfd84216443eaffefb4208b66845.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fyog0Tl2q1yCXLWlokkvromIqqA=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.902328+00 2025-12-09 10:14:51.902332+00 6378 HT003#VS-D3 SPMX-20240815301512 \N \N \N 1 \N [{"file_id": "b55cba6f-64a0-4f38-b0b7-507b40fd72d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9190920d634f46e69c5327c569745d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9190920d634f46e69c5327c569745d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9190920d634f46e69c5327c569745d31.jpg", "file_size": 15997, "is_delete": false, "file_type": 1, "original_file_name": "HT003#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190920d634f46e69c5327c569745d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190920d634f46e69c5327c569745d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190920d634f46e69c5327c569745d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9190920d634f46e69c5327c569745d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9190920d634f46e69c5327c569745d31.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N5-pipFdGakXBkBvQcCHe3CV_lI=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.903854+00 2025-12-09 10:14:51.903859+00 6379 C275#-咖色 SPMX-20240815301513 \N \N \N 1 \N [{"file_id": "1bb7ad4d-a47c-4801-84f8-562c0164198e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0672971e06494f4abae11685c0774187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0672971e06494f4abae11685c0774187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0672971e06494f4abae11685c0774187.jpg", "file_size": 28481, "is_delete": false, "file_type": 1, "original_file_name": "C275#-咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0672971e06494f4abae11685c0774187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0672971e06494f4abae11685c0774187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0672971e06494f4abae11685c0774187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0672971e06494f4abae11685c0774187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0672971e06494f4abae11685c0774187.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-tARXwp2q1QQXbcR2q_OQBQ9bc=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.905356+00 2025-12-09 10:14:51.905361+00 6380 LZ1229#大人T3号色 SPMX-20240815301532 \N \N \N 1 \N [{"file_id": "0317e484-0c39-4e38-95f1-79f44f27b8ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc124689a5b4fc2a2c0fc3d85048017.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc124689a5b4fc2a2c0fc3d85048017.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc124689a5b4fc2a2c0fc3d85048017.jpg", "file_size": 17897, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc124689a5b4fc2a2c0fc3d85048017.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc124689a5b4fc2a2c0fc3d85048017.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc124689a5b4fc2a2c0fc3d85048017.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc124689a5b4fc2a2c0fc3d85048017.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc124689a5b4fc2a2c0fc3d85048017.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nryhmrAVCgQCSD1-5HKzboWT6xA=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.906893+00 2025-12-09 10:14:51.906898+00 6381 0003-209#WJC22 SPMX-20240815301535 \N \N \N 1 \N [{"file_id": "be3c7050-8b71-4814-9752-af61ddc84dcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3999e88b9bdb4a1ba7edd90931d08e4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3999e88b9bdb4a1ba7edd90931d08e4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3999e88b9bdb4a1ba7edd90931d08e4c.jpg", "file_size": 13426, "is_delete": false, "file_type": 1, "original_file_name": "0003-209#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3999e88b9bdb4a1ba7edd90931d08e4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3999e88b9bdb4a1ba7edd90931d08e4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3999e88b9bdb4a1ba7edd90931d08e4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3999e88b9bdb4a1ba7edd90931d08e4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3999e88b9bdb4a1ba7edd90931d08e4c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:av1pmYQIZT56G0f16HoN_i70DZA=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.908411+00 2025-12-09 10:14:51.908415+00 6382 1059#宝蓝匹布 SPMX-20240815301533 \N \N \N 1 \N [{"file_id": "f62fcbe3-7835-4c53-b6cd-c1c21108071b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13a4769dc4a341b6991096114d243ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13a4769dc4a341b6991096114d243ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13a4769dc4a341b6991096114d243ee5.jpg", "file_size": 26124, "is_delete": false, "file_type": 1, "original_file_name": "1059#宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a4769dc4a341b6991096114d243ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a4769dc4a341b6991096114d243ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a4769dc4a341b6991096114d243ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13a4769dc4a341b6991096114d243ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13a4769dc4a341b6991096114d243ee5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6SUse80f8m9P5Ubpz69r1SRHXg=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.909957+00 2025-12-09 10:14:51.909961+00 6383 LHJ9307-7#7号红色打版红 SPMX-20240815301540 \N \N \N 1 \N [{"file_id": "a21e4089-a689-4fc1-a2bd-89db52fe2270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dff7b23524e4d2cbc3678c46317c520.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dff7b23524e4d2cbc3678c46317c520.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dff7b23524e4d2cbc3678c46317c520.jpg", "file_size": 21891, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307-7#7号红色打版红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dff7b23524e4d2cbc3678c46317c520.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dff7b23524e4d2cbc3678c46317c520.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dff7b23524e4d2cbc3678c46317c520.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dff7b23524e4d2cbc3678c46317c520.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dff7b23524e4d2cbc3678c46317c520.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3PEEZl73EqxUegPY-WrfgocnI3I=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.911462+00 2025-12-09 10:14:51.911467+00 6384 FHXGPK-051-5 SPMX-20240815301539 \N \N \N 1 \N [{"file_id": "686e8087-8e8b-4281-afdb-b4b5eb9eefca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e724ba807c4d81b97d7158251af24d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e724ba807c4d81b97d7158251af24d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e724ba807c4d81b97d7158251af24d.jpg", "file_size": 23281, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-051-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e724ba807c4d81b97d7158251af24d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e724ba807c4d81b97d7158251af24d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e724ba807c4d81b97d7158251af24d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e724ba807c4d81b97d7158251af24d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e724ba807c4d81b97d7158251af24d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_lIIcPLI-xCoAN3BYOfXG0L9_I=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.912957+00 2025-12-09 10:14:51.912962+00 6385 HT003FWE#VS-D3 SPMX-20240815301534 \N \N \N 1 \N [{"file_id": "91a38464-6f3f-44e4-b478-11a8fd811d09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9677b56682e947d29857c0644e9d3bc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9677b56682e947d29857c0644e9d3bc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9677b56682e947d29857c0644e9d3bc5.jpg", "file_size": 16661, "is_delete": false, "file_type": 1, "original_file_name": "HT003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677b56682e947d29857c0644e9d3bc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677b56682e947d29857c0644e9d3bc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677b56682e947d29857c0644e9d3bc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9677b56682e947d29857c0644e9d3bc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9677b56682e947d29857c0644e9d3bc5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UMZFGGUgXZYM1v5A2GORdzVbRs=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.914514+00 2025-12-09 10:14:51.914519+00 6386 FHXGPK-051-4 SPMX-20240815301527 \N \N \N 1 \N [{"file_id": "990fc939-901a-4e3b-a860-7a0df8be31ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5373b505f14e4489ab8e16f55ea8e014.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5373b505f14e4489ab8e16f55ea8e014.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5373b505f14e4489ab8e16f55ea8e014.jpg", "file_size": 22188, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-051-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5373b505f14e4489ab8e16f55ea8e014.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5373b505f14e4489ab8e16f55ea8e014.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5373b505f14e4489ab8e16f55ea8e014.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5373b505f14e4489ab8e16f55ea8e014.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5373b505f14e4489ab8e16f55ea8e014.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvYARdp2QrFcIyRN5GqXTQYJh5k=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.916013+00 2025-12-09 10:14:51.916018+00 6387 23-2103#A10袖子4XL SPMX-20240815301531 \N \N \N 1 \N [{"file_id": "f7aafe16-995c-4fd1-b22f-8cf0e544f265", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7e2024995944245b61da9fc3f0e3457.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7e2024995944245b61da9fc3f0e3457.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7e2024995944245b61da9fc3f0e3457.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A10袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e2024995944245b61da9fc3f0e3457.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e2024995944245b61da9fc3f0e3457.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e2024995944245b61da9fc3f0e3457.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7e2024995944245b61da9fc3f0e3457.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7e2024995944245b61da9fc3f0e3457.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2hoE9z0xil00bCOPah-S-h3zpU=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.917505+00 2025-12-09 10:14:51.91751+00 6388 JT0165-4#WJC22 SPMX-20240815301536 \N \N \N 1 \N [{"file_id": "677642cb-98d0-4d62-82c1-2ed305b29bf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35715640bf5e4514b2c7b64c47456345.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35715640bf5e4514b2c7b64c47456345.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35715640bf5e4514b2c7b64c47456345.jpg", "file_size": 15527, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35715640bf5e4514b2c7b64c47456345.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35715640bf5e4514b2c7b64c47456345.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35715640bf5e4514b2c7b64c47456345.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35715640bf5e4514b2c7b64c47456345.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35715640bf5e4514b2c7b64c47456345.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gu2YNHGEByGRzjz9iHYmmfySBJY=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.91904+00 2025-12-09 10:14:51.919045+00 6389 DH687#紫红色L SPMX-20240815301529 \N \N \N 1 \N [{"file_id": "73d627c0-221f-4151-addb-9338b72338dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "640b87d272864fcbad1608944ee06a4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "640b87d272864fcbad1608944ee06a4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "640b87d272864fcbad1608944ee06a4d.jpg", "file_size": 73668, "is_delete": false, "file_type": 1, "original_file_name": "DH687#紫红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640b87d272864fcbad1608944ee06a4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640b87d272864fcbad1608944ee06a4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640b87d272864fcbad1608944ee06a4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/640b87d272864fcbad1608944ee06a4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/640b87d272864fcbad1608944ee06a4d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LHYia9W3QbEkp3y_YXxplLVTDFg=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.92056+00 2025-12-09 10:14:51.920564+00 6390 LHJ9307-7#25号土黄 SPMX-20240815301530 \N \N \N 1 \N [{"file_id": "5539f536-659e-4c6c-93f2-28bbc6de5b3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23c9f07d2d754854a0881189a66e1e76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23c9f07d2d754854a0881189a66e1e76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23c9f07d2d754854a0881189a66e1e76.jpg", "file_size": 19402, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307-7#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c9f07d2d754854a0881189a66e1e76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c9f07d2d754854a0881189a66e1e76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c9f07d2d754854a0881189a66e1e76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23c9f07d2d754854a0881189a66e1e76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23c9f07d2d754854a0881189a66e1e76.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggMDxphbeZMED5uitG7qxamzzWM=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.922099+00 2025-12-09 10:14:51.922104+00 6391 0003-208#WJC22 SPMX-20240815301525 \N \N \N 1 \N [{"file_id": "3c6874f6-972f-42dc-a7a5-59f2fd9f8df1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c504e348f941d4aad14712a10ff985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c504e348f941d4aad14712a10ff985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c504e348f941d4aad14712a10ff985.jpg", "file_size": 16931, "is_delete": false, "file_type": 1, "original_file_name": "0003-208#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c504e348f941d4aad14712a10ff985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c504e348f941d4aad14712a10ff985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c504e348f941d4aad14712a10ff985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c504e348f941d4aad14712a10ff985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c504e348f941d4aad14712a10ff985.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Wr1kljBymutmR6f-kpIiCcyvBQ=", "createTime": "2024-08-15 14:43:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.923592+00 2025-12-09 10:14:51.923597+00 6392 JT0165-4#WJC22. SPMX-20240815301526 \N \N \N 1 \N [{"file_id": "3cc6e2c4-15ed-4d91-87b6-8e5fc11bb32e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0cbb69d4e804ecba742ec3d70d3f857.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0cbb69d4e804ecba742ec3d70d3f857.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0cbb69d4e804ecba742ec3d70d3f857.jpg", "file_size": 11357, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-4#WJC22..jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0cbb69d4e804ecba742ec3d70d3f857.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0cbb69d4e804ecba742ec3d70d3f857.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0cbb69d4e804ecba742ec3d70d3f857.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0cbb69d4e804ecba742ec3d70d3f857.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0cbb69d4e804ecba742ec3d70d3f857.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMT5E3VSDg_qn-mz8tfneUPl8yk=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.925169+00 2025-12-09 10:14:51.925175+00 6393 8013FWF#女S SPMX-20240815301538 \N \N \N 1 \N [{"file_id": "19c1bcd1-b5bf-4240-a763-ea00daed033e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd4a24265df49909b704f30d05692d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd4a24265df49909b704f30d05692d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd4a24265df49909b704f30d05692d5.jpg", "file_size": 8833, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4a24265df49909b704f30d05692d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4a24265df49909b704f30d05692d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4a24265df49909b704f30d05692d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd4a24265df49909b704f30d05692d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd4a24265df49909b704f30d05692d5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Hqtc7N8FBgH0JW4KEIt37J0yOM=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.926663+00 2025-12-09 10:14:51.926668+00 6394 8013FWF#女M SPMX-20240815301528 \N \N \N 1 \N [{"file_id": "23400bb3-1fe7-4696-b9e4-d4169013a0bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad724591a4d84c9e9971b0cc17ec5ca5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad724591a4d84c9e9971b0cc17ec5ca5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad724591a4d84c9e9971b0cc17ec5ca5.jpg", "file_size": 9114, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad724591a4d84c9e9971b0cc17ec5ca5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad724591a4d84c9e9971b0cc17ec5ca5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad724591a4d84c9e9971b0cc17ec5ca5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad724591a4d84c9e9971b0cc17ec5ca5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad724591a4d84c9e9971b0cc17ec5ca5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wt85j-fuJgT9RJIQjHBBcCIBiRY=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.928233+00 2025-12-09 10:14:51.928237+00 6395 C275#-绿色 SPMX-20240815301537 \N \N \N 1 \N [{"file_id": "08af9636-09b5-493a-af76-07c218604db4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30a721d3d43b45b2b763dfce941fbb31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30a721d3d43b45b2b763dfce941fbb31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30a721d3d43b45b2b763dfce941fbb31.jpg", "file_size": 30880, "is_delete": false, "file_type": 1, "original_file_name": "C275#-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a721d3d43b45b2b763dfce941fbb31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a721d3d43b45b2b763dfce941fbb31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a721d3d43b45b2b763dfce941fbb31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30a721d3d43b45b2b763dfce941fbb31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30a721d3d43b45b2b763dfce941fbb31.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZylVISjVnlp3FhhmQg3-abR8VW4=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.930078+00 2025-12-09 10:14:51.930082+00 6396 1059#杏色 SPMX-20240815301543 \N \N \N 1 \N [{"file_id": "2f005796-c3f2-4d54-b6d8-e1cff786892b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95f4b26b303847d692f6af221f9dd4c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95f4b26b303847d692f6af221f9dd4c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95f4b26b303847d692f6af221f9dd4c9.jpg", "file_size": 18257, "is_delete": false, "file_type": 1, "original_file_name": "1059#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f4b26b303847d692f6af221f9dd4c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f4b26b303847d692f6af221f9dd4c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f4b26b303847d692f6af221f9dd4c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95f4b26b303847d692f6af221f9dd4c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95f4b26b303847d692f6af221f9dd4c9.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-v8S-OT1ssMxQnITv9hvgWdCeWc=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.93161+00 2025-12-09 10:14:51.931615+00 6397 FHXGPK-052-1 SPMX-20240815301551 \N \N \N 1 \N [{"file_id": "c75c74dc-cd43-4854-b780-663187994298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e52aec6f1b324b118232913bd1d273d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e52aec6f1b324b118232913bd1d273d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e52aec6f1b324b118232913bd1d273d7.jpg", "file_size": 34362, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-052-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52aec6f1b324b118232913bd1d273d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52aec6f1b324b118232913bd1d273d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52aec6f1b324b118232913bd1d273d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e52aec6f1b324b118232913bd1d273d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e52aec6f1b324b118232913bd1d273d7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ivlMFwwoz_1CozhMz58oL_yXJDw=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.93311+00 2025-12-09 10:14:51.933115+00 6398 0003-20FWE#VS-D3 SPMX-20240815301544 \N \N \N 1 \N [{"file_id": "c1ab6317-cf55-420c-9f12-fbf6a20efc0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43c5ed7272994c9e9f744b0ac549a0b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43c5ed7272994c9e9f744b0ac549a0b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43c5ed7272994c9e9f744b0ac549a0b6.jpg", "file_size": 13025, "is_delete": false, "file_type": 1, "original_file_name": "0003-20FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43c5ed7272994c9e9f744b0ac549a0b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43c5ed7272994c9e9f744b0ac549a0b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43c5ed7272994c9e9f744b0ac549a0b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43c5ed7272994c9e9f744b0ac549a0b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43c5ed7272994c9e9f744b0ac549a0b6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZJUUDRWjSCfWJCypXzMAspQY9Y=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.934608+00 2025-12-09 10:14:51.934612+00 6399 JT0165-5#蓝色 SPMX-20240815301545 \N \N \N 1 \N [{"file_id": "b1d49e6c-79b0-46fa-b915-29aa80917977", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ec9e4705924c94822cca7657d980be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ec9e4705924c94822cca7657d980be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ec9e4705924c94822cca7657d980be.jpg", "file_size": 11342, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-5#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec9e4705924c94822cca7657d980be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec9e4705924c94822cca7657d980be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec9e4705924c94822cca7657d980be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ec9e4705924c94822cca7657d980be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ec9e4705924c94822cca7657d980be.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_QczHXIgT9c6VwssaBWLKevHg88=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.936112+00 2025-12-09 10:14:51.936117+00 6400 DH687#紫红色S SPMX-20240815301552 \N \N \N 1 \N [{"file_id": "1ae0924e-f911-44c7-8edc-3554c9c438c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83b4c91596da47b6b02cc22208ab1e48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83b4c91596da47b6b02cc22208ab1e48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83b4c91596da47b6b02cc22208ab1e48.jpg", "file_size": 78232, "is_delete": false, "file_type": 1, "original_file_name": "DH687#紫红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b4c91596da47b6b02cc22208ab1e48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b4c91596da47b6b02cc22208ab1e48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b4c91596da47b6b02cc22208ab1e48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83b4c91596da47b6b02cc22208ab1e48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83b4c91596da47b6b02cc22208ab1e48.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq5jRToxSQDxvaETAUQuP51hKnc=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.937662+00 2025-12-09 10:14:51.937667+00 6401 C275#-黄色 SPMX-20240815301549 \N \N \N 1 \N [{"file_id": "417dda6f-f8b2-4aa7-95a5-828b9d1b829b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03278fdfefac44dcb6dbb0b79ff06140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03278fdfefac44dcb6dbb0b79ff06140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03278fdfefac44dcb6dbb0b79ff06140.jpg", "file_size": 32175, "is_delete": false, "file_type": 1, "original_file_name": "C275#-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03278fdfefac44dcb6dbb0b79ff06140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03278fdfefac44dcb6dbb0b79ff06140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03278fdfefac44dcb6dbb0b79ff06140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03278fdfefac44dcb6dbb0b79ff06140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03278fdfefac44dcb6dbb0b79ff06140.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z_vJDFTt21HZ2sWnS5htaNtGG_c=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.939031+00 2025-12-09 10:14:51.939035+00 6402 LHJ9307-7#9号绿色打版绿 SPMX-20240815301550 \N \N \N 1 \N [{"file_id": "e35fee1b-ca0c-4096-85de-b97847b03f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fd45aaee78f4e27acb305974e4eceeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fd45aaee78f4e27acb305974e4eceeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fd45aaee78f4e27acb305974e4eceeb.jpg", "file_size": 19460, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9307-7#9号绿色打版绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd45aaee78f4e27acb305974e4eceeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd45aaee78f4e27acb305974e4eceeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fd45aaee78f4e27acb305974e4eceeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fd45aaee78f4e27acb305974e4eceeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fd45aaee78f4e27acb305974e4eceeb.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZkJlZvBmVISuC-OfVM6ZiPGnEI=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.940341+00 2025-12-09 10:14:51.940345+00 6403 DH687#紫红色M SPMX-20240815301541 \N \N \N 1 \N [{"file_id": "a2ae1cad-d432-4547-9a16-58a416cbe6a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e114eadeab0c43bbab0c1aeb42fb9a7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e114eadeab0c43bbab0c1aeb42fb9a7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e114eadeab0c43bbab0c1aeb42fb9a7b.jpg", "file_size": 76337, "is_delete": false, "file_type": 1, "original_file_name": "DH687#紫红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e114eadeab0c43bbab0c1aeb42fb9a7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e114eadeab0c43bbab0c1aeb42fb9a7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e114eadeab0c43bbab0c1aeb42fb9a7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e114eadeab0c43bbab0c1aeb42fb9a7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e114eadeab0c43bbab0c1aeb42fb9a7b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVsiX2j-VeC0VEXSVEf_TXXDQgU=", "createTime": "2024-08-15 14:43:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.94168+00 2025-12-09 10:14:51.941684+00 6404 HT004#D SPMX-20240815301546 \N \N \N 1 \N [{"file_id": "6c5f974b-a336-4f1b-98cf-2a10578c4d60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f804aee8ea3a4f6eb42755e85bee5035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f804aee8ea3a4f6eb42755e85bee5035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f804aee8ea3a4f6eb42755e85bee5035.jpg", "file_size": 16155, "is_delete": false, "file_type": 1, "original_file_name": "HT004#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f804aee8ea3a4f6eb42755e85bee5035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f804aee8ea3a4f6eb42755e85bee5035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f804aee8ea3a4f6eb42755e85bee5035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f804aee8ea3a4f6eb42755e85bee5035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f804aee8ea3a4f6eb42755e85bee5035.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4eVEaK74Foek8_m_Vkh717lblYc=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.943021+00 2025-12-09 10:14:51.943025+00 6405 LZ1229#大人T4号色 SPMX-20240815301548 \N \N \N 1 \N [{"file_id": "2c068517-53ae-4577-921c-ba744a31e35a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b11f15ef67443a29bfe098a7775fa06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b11f15ef67443a29bfe098a7775fa06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b11f15ef67443a29bfe098a7775fa06.jpg", "file_size": 17173, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b11f15ef67443a29bfe098a7775fa06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b11f15ef67443a29bfe098a7775fa06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b11f15ef67443a29bfe098a7775fa06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b11f15ef67443a29bfe098a7775fa06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b11f15ef67443a29bfe098a7775fa06.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:46FgulKjRIRXwu6vOoiGPlCiHyE=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.944369+00 2025-12-09 10:14:51.944373+00 6406 23-2103#A10领子通用 SPMX-20240815301542 \N \N \N 1 \N [{"file_id": "44d2c14d-366e-4280-a4ef-1a227a0c4a8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "275fdf3a0eff4078bc2ba4c539f88702.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "275fdf3a0eff4078bc2ba4c539f88702.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "275fdf3a0eff4078bc2ba4c539f88702.jpg", "file_size": 8534, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A10领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fdf3a0eff4078bc2ba4c539f88702.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fdf3a0eff4078bc2ba4c539f88702.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fdf3a0eff4078bc2ba4c539f88702.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/275fdf3a0eff4078bc2ba4c539f88702.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/275fdf3a0eff4078bc2ba4c539f88702.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgLZpgy_36wjgFDEUFr_JIWFr4s=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.945697+00 2025-12-09 10:14:51.945701+00 6407 8013FWF#女XL+童4 SPMX-20240815301547 \N \N \N 1 \N [{"file_id": "9397e807-4d4e-4315-a260-bf1f41c74bcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0933913b58744cdb4b15d1528ec99c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0933913b58744cdb4b15d1528ec99c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0933913b58744cdb4b15d1528ec99c7.jpg", "file_size": 13576, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女XL+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0933913b58744cdb4b15d1528ec99c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0933913b58744cdb4b15d1528ec99c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0933913b58744cdb4b15d1528ec99c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0933913b58744cdb4b15d1528ec99c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0933913b58744cdb4b15d1528ec99c7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtQG6Bn_-qLbZKnr4WsR2TSqpkk=", "createTime": "2024-08-15 14:43:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.947046+00 2025-12-09 10:14:51.94705+00 6408 HT004#VS-D3 SPMX-20240815301554 \N \N \N 1 \N [{"file_id": "d476d391-0bbf-4f04-9669-e7358529b287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg", "file_size": 16560, "is_delete": false, "file_type": 1, "original_file_name": "HT004#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67aeb5ea48f9479a9d28ed6ff7d8fb58.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4LDw6BkhyfDV0UlXviOvQ6pCuQ=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.948395+00 2025-12-09 10:14:51.948399+00 6409 1059#杏色匹布 SPMX-20240815301558 \N \N \N 1 \N [{"file_id": "24004820-11a4-4fb5-bb6e-294729aeef9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9c39a782aca42679b581e3c3f9bbce6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9c39a782aca42679b581e3c3f9bbce6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9c39a782aca42679b581e3c3f9bbce6.jpg", "file_size": 16900, "is_delete": false, "file_type": 1, "original_file_name": "1059#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c39a782aca42679b581e3c3f9bbce6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c39a782aca42679b581e3c3f9bbce6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c39a782aca42679b581e3c3f9bbce6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9c39a782aca42679b581e3c3f9bbce6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9c39a782aca42679b581e3c3f9bbce6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgQU4rjLIwuaAWzB0mzF7hE7_SU=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.949735+00 2025-12-09 10:14:51.949739+00 6410 LZ1229#童装T上身1号色 SPMX-20240815301562 \N \N \N 1 \N [{"file_id": "761e8a59-b5e4-4307-89e6-321a16765b4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f07c90f22b64d2393d154d7547de5eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f07c90f22b64d2393d154d7547de5eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f07c90f22b64d2393d154d7547de5eb.jpg", "file_size": 22520, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f07c90f22b64d2393d154d7547de5eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f07c90f22b64d2393d154d7547de5eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f07c90f22b64d2393d154d7547de5eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f07c90f22b64d2393d154d7547de5eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f07c90f22b64d2393d154d7547de5eb.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPB7ar1cz55sVKXDVwFbJo9u8S0=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.951881+00 2025-12-09 10:14:51.951885+00 6411 23-2103#A11前后片3XL SPMX-20240815301553 \N \N \N 1 \N [{"file_id": "0fd567cb-cda4-4008-963f-acb0683ef824", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2a7b0ec7a174edc9ce5ff7f97069d49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2a7b0ec7a174edc9ce5ff7f97069d49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2a7b0ec7a174edc9ce5ff7f97069d49.jpg", "file_size": 9413, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A11前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a7b0ec7a174edc9ce5ff7f97069d49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a7b0ec7a174edc9ce5ff7f97069d49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a7b0ec7a174edc9ce5ff7f97069d49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2a7b0ec7a174edc9ce5ff7f97069d49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2a7b0ec7a174edc9ce5ff7f97069d49.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsIa3EMTPaj8g-Ukngsib7w8Dos=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.953466+00 2025-12-09 10:14:51.95347+00 6412 0003-20FWF#V5曲线 SPMX-20240815301557 \N \N \N 1 \N [{"file_id": "414a541f-b62d-4f89-9d29-e12eb905cbb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9f19ca25a8b47299c8dd84480851700.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9f19ca25a8b47299c8dd84480851700.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9f19ca25a8b47299c8dd84480851700.jpg", "file_size": 14113, "is_delete": false, "file_type": 1, "original_file_name": "0003-20FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f19ca25a8b47299c8dd84480851700.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f19ca25a8b47299c8dd84480851700.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f19ca25a8b47299c8dd84480851700.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9f19ca25a8b47299c8dd84480851700.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9f19ca25a8b47299c8dd84480851700.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5RnlsKbX8MBnkDFxmUMsRCRAcI=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.955066+00 2025-12-09 10:14:51.95507+00 6413 C275#咖啡杏 SPMX-20240815301561 \N \N \N 1 \N [{"file_id": "39e963eb-6361-414e-acc5-6dcde6c1f91d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7f0f29813144b11915c2b8d313f1f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7f0f29813144b11915c2b8d313f1f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7f0f29813144b11915c2b8d313f1f06.jpg", "file_size": 10579, "is_delete": false, "file_type": 1, "original_file_name": "C275#咖啡杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f0f29813144b11915c2b8d313f1f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f0f29813144b11915c2b8d313f1f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f0f29813144b11915c2b8d313f1f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7f0f29813144b11915c2b8d313f1f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7f0f29813144b11915c2b8d313f1f06.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_0f5H692h95iq-EDMHCOra0_yk=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.956696+00 2025-12-09 10:14:51.956699+00 6414 8013FWF#女XL+童5 SPMX-20240815301560 \N \N \N 1 \N [{"file_id": "447d48cc-dcdf-437d-8a37-af2124c9ea00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf2e264a8594a5faa0c041ecb9efd75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf2e264a8594a5faa0c041ecb9efd75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf2e264a8594a5faa0c041ecb9efd75.jpg", "file_size": 14235, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女XL+童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2e264a8594a5faa0c041ecb9efd75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2e264a8594a5faa0c041ecb9efd75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf2e264a8594a5faa0c041ecb9efd75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf2e264a8594a5faa0c041ecb9efd75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf2e264a8594a5faa0c041ecb9efd75.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qnz6Kj8v7p7CvGjN2ha2qmIqXHk=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.958295+00 2025-12-09 10:14:51.9583+00 6415 JT0165-5#黄色 SPMX-20240815301559 \N \N \N 1 \N [{"file_id": "dda303eb-73f4-473f-bcb3-a73a67b8c071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c931f34b15b4b6e81bf96d6530d0cca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c931f34b15b4b6e81bf96d6530d0cca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c931f34b15b4b6e81bf96d6530d0cca.jpg", "file_size": 13354, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-5#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c931f34b15b4b6e81bf96d6530d0cca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c931f34b15b4b6e81bf96d6530d0cca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c931f34b15b4b6e81bf96d6530d0cca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c931f34b15b4b6e81bf96d6530d0cca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c931f34b15b4b6e81bf96d6530d0cca.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uTczU71ix2_2G1a3p9mhrjMZVNU=", "createTime": "2024-08-15 14:43:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.959872+00 2025-12-09 10:14:51.959876+00 6416 23-2103#A11前后片4XL SPMX-20240815301567 \N \N \N 1 \N [{"file_id": "b3dd5eb5-fe5e-42ff-94dd-4fa21f39cfae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2fd3c6425a940ce992a226788497e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2fd3c6425a940ce992a226788497e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2fd3c6425a940ce992a226788497e0c.jpg", "file_size": 9505, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A11前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd3c6425a940ce992a226788497e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd3c6425a940ce992a226788497e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd3c6425a940ce992a226788497e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2fd3c6425a940ce992a226788497e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2fd3c6425a940ce992a226788497e0c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqOHTlxiZL_xosOICVuVeu1gg6o=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.961456+00 2025-12-09 10:14:51.961461+00 6417 0003-21FWE#VS-D3 SPMX-20240815301568 \N \N \N 1 \N [{"file_id": "fdca7fcf-bdce-422e-aca7-ea5b04c2624b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91d811d33e5a481699700c799a145235.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91d811d33e5a481699700c799a145235.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91d811d33e5a481699700c799a145235.jpg", "file_size": 12577, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d811d33e5a481699700c799a145235.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d811d33e5a481699700c799a145235.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d811d33e5a481699700c799a145235.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91d811d33e5a481699700c799a145235.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91d811d33e5a481699700c799a145235.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lu8IKz-Pyf0dyuWXkY3I94efo4U=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.963029+00 2025-12-09 10:14:51.963032+00 6418 8013FWF#女XL+童6 SPMX-20240815301569 \N \N \N 1 \N [{"file_id": "24cfdb72-6a00-4fba-a4a4-b677c47cbed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecf50c2c6a5f4e74964843939ff32441.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecf50c2c6a5f4e74964843939ff32441.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecf50c2c6a5f4e74964843939ff32441.jpg", "file_size": 13981, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#女XL+童6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf50c2c6a5f4e74964843939ff32441.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf50c2c6a5f4e74964843939ff32441.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf50c2c6a5f4e74964843939ff32441.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecf50c2c6a5f4e74964843939ff32441.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecf50c2c6a5f4e74964843939ff32441.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFzBlTnchDL5l4uMWY5UNXJj0N8=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.964337+00 2025-12-09 10:14:51.964342+00 6419 C275#宝蓝枣红 SPMX-20240815301571 \N \N \N 1 \N [{"file_id": "0eb8a85a-1738-4a5c-bbaa-5bfc4834b513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d094917671f44dabd813ca6f32b75f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d094917671f44dabd813ca6f32b75f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d094917671f44dabd813ca6f32b75f1.jpg", "file_size": 11886, "is_delete": false, "file_type": 1, "original_file_name": "C275#宝蓝枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d094917671f44dabd813ca6f32b75f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d094917671f44dabd813ca6f32b75f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d094917671f44dabd813ca6f32b75f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d094917671f44dabd813ca6f32b75f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d094917671f44dabd813ca6f32b75f1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqirCw7k7cREDfrl3hgRZqL752I=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.965628+00 2025-12-09 10:14:51.965632+00 6420 LZ1229#童装T上身2号色 SPMX-20240815301573 \N \N \N 1 \N [{"file_id": "706c55f1-e9bd-4145-a796-9736a717a1b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6af4e542bd5d4e8da0ca0d35763a2898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6af4e542bd5d4e8da0ca0d35763a2898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6af4e542bd5d4e8da0ca0d35763a2898.jpg", "file_size": 20947, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4e542bd5d4e8da0ca0d35763a2898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4e542bd5d4e8da0ca0d35763a2898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4e542bd5d4e8da0ca0d35763a2898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6af4e542bd5d4e8da0ca0d35763a2898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6af4e542bd5d4e8da0ca0d35763a2898.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faDeslmPYtcAOytmK51bI-S6d3U=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.966929+00 2025-12-09 10:14:51.966933+00 6421 JT0165-6#WJC22 SPMX-20240815301572 \N \N \N 1 \N [{"file_id": "0b2ef9e8-b818-4f4e-b3bf-ac8f5241a3f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "863a4ef6a3894751af475f9ab08ff6ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "863a4ef6a3894751af475f9ab08ff6ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "863a4ef6a3894751af475f9ab08ff6ea.jpg", "file_size": 9257, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863a4ef6a3894751af475f9ab08ff6ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863a4ef6a3894751af475f9ab08ff6ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863a4ef6a3894751af475f9ab08ff6ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/863a4ef6a3894751af475f9ab08ff6ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/863a4ef6a3894751af475f9ab08ff6ea.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8H5kkR1SgO2v6gidsG1R4BX_TBQ=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.968254+00 2025-12-09 10:14:51.968258+00 6422 LHJ9329#20枣红 SPMX-20240815301564 \N \N \N 1 \N [{"file_id": "d24e04dd-05ea-49d1-a2fc-adc650a97fbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58cca6ac029647db9fbc790456ffc1cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58cca6ac029647db9fbc790456ffc1cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58cca6ac029647db9fbc790456ffc1cc.jpg", "file_size": 16173, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9329#20枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58cca6ac029647db9fbc790456ffc1cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58cca6ac029647db9fbc790456ffc1cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58cca6ac029647db9fbc790456ffc1cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58cca6ac029647db9fbc790456ffc1cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58cca6ac029647db9fbc790456ffc1cc.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghgUQi4FAmXb0YkvDpwvXfChyW4=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.969569+00 2025-12-09 10:14:51.969573+00 6423 FHXGPK-052-2 SPMX-20240815301563 \N \N \N 1 \N [{"file_id": "4ef9ef5b-903f-42e3-8b34-d93eba335649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61460549604947b19cb4479d9e763743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61460549604947b19cb4479d9e763743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61460549604947b19cb4479d9e763743.jpg", "file_size": 35245, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-052-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61460549604947b19cb4479d9e763743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61460549604947b19cb4479d9e763743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61460549604947b19cb4479d9e763743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61460549604947b19cb4479d9e763743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61460549604947b19cb4479d9e763743.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDaeiXX_CadtoV1ZTXTGVRDtF7U=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.970884+00 2025-12-09 10:14:51.970888+00 6424 DH687#紫红色XL SPMX-20240815301565 \N \N \N 1 \N [{"file_id": "38208cb8-e9a8-4219-ac4a-7bf98545ab60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40479fa7ba2948fe82f4b66931e647bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40479fa7ba2948fe82f4b66931e647bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40479fa7ba2948fe82f4b66931e647bb.jpg", "file_size": 68303, "is_delete": false, "file_type": 1, "original_file_name": "DH687#紫红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40479fa7ba2948fe82f4b66931e647bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40479fa7ba2948fe82f4b66931e647bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40479fa7ba2948fe82f4b66931e647bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40479fa7ba2948fe82f4b66931e647bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40479fa7ba2948fe82f4b66931e647bb.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Bc1IdGZYZhZgMjkNe3b4zAz92U=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.972193+00 2025-12-09 10:14:51.972198+00 6425 HT004FW# SPMX-20240815301566 \N \N \N 1 \N [{"file_id": "4b1b0b27-8d95-47a4-a936-4e880991d7ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "949f5a130a81401686b66d5399b89b3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "949f5a130a81401686b66d5399b89b3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "949f5a130a81401686b66d5399b89b3e.jpg", "file_size": 11228, "is_delete": false, "file_type": 1, "original_file_name": "HT004FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949f5a130a81401686b66d5399b89b3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949f5a130a81401686b66d5399b89b3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949f5a130a81401686b66d5399b89b3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/949f5a130a81401686b66d5399b89b3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/949f5a130a81401686b66d5399b89b3e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1HnGyKtTnLTFyZFAdBvsm5Fegps=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.973482+00 2025-12-09 10:14:51.973486+00 6426 1059#白色 SPMX-20240815301570 \N \N \N 1 \N [{"file_id": "cdd1843f-425b-46e9-a5b0-c8a4e064302d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ad13acaaf1f4ce39be9a81691e69565.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ad13acaaf1f4ce39be9a81691e69565.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ad13acaaf1f4ce39be9a81691e69565.jpg", "file_size": 19184, "is_delete": false, "file_type": 1, "original_file_name": "1059#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad13acaaf1f4ce39be9a81691e69565.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad13acaaf1f4ce39be9a81691e69565.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad13acaaf1f4ce39be9a81691e69565.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ad13acaaf1f4ce39be9a81691e69565.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ad13acaaf1f4ce39be9a81691e69565.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cp4nQ92-AjPcobsAG_eicFVnv9E=", "createTime": "2024-08-15 14:43:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.974784+00 2025-12-09 10:14:51.974789+00 6427 LHJ9329#25土黄 SPMX-20240815301574 \N \N \N 1 \N [{"file_id": "17aad5f1-22c2-4f90-8049-2fb45f08bbcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38b996b57c9945bfbccc1c99714c2b7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38b996b57c9945bfbccc1c99714c2b7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38b996b57c9945bfbccc1c99714c2b7a.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9329#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b996b57c9945bfbccc1c99714c2b7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b996b57c9945bfbccc1c99714c2b7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b996b57c9945bfbccc1c99714c2b7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38b996b57c9945bfbccc1c99714c2b7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38b996b57c9945bfbccc1c99714c2b7a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCUt6_EHFD_dzghXA0g32U0X-po=", "createTime": "2024-08-15 14:43:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.976106+00 2025-12-09 10:14:51.97611+00 6428 FHXGPK-052-3 SPMX-20240815301575 \N \N \N 1 \N [{"file_id": "d5fa2adf-8d20-4f2d-87d2-b8493997839b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f79f0645b2847adb94a778f6d03ff26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f79f0645b2847adb94a778f6d03ff26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f79f0645b2847adb94a778f6d03ff26.jpg", "file_size": 28515, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-052-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79f0645b2847adb94a778f6d03ff26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79f0645b2847adb94a778f6d03ff26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79f0645b2847adb94a778f6d03ff26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f79f0645b2847adb94a778f6d03ff26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f79f0645b2847adb94a778f6d03ff26.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3IFkA9xyp8gdtPRzvYQdVl-U14o=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.97742+00 2025-12-09 10:14:51.977424+00 6429 C275#绿豆沙 SPMX-20240815301581 \N \N \N 1 \N [{"file_id": "a51929ec-7877-4a12-96fe-594f227a0cab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cd321bdc23242a4810eb29dfca298e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cd321bdc23242a4810eb29dfca298e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cd321bdc23242a4810eb29dfca298e7.jpg", "file_size": 10943, "is_delete": false, "file_type": 1, "original_file_name": "C275#绿豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd321bdc23242a4810eb29dfca298e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd321bdc23242a4810eb29dfca298e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd321bdc23242a4810eb29dfca298e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cd321bdc23242a4810eb29dfca298e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cd321bdc23242a4810eb29dfca298e7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ZUatPUDxTL_1kRISHuddvL4tbY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.978733+00 2025-12-09 10:14:51.978737+00 6430 HT004FWE#VS-D3 SPMX-20240815301584 \N \N \N 1 \N [{"file_id": "9697669e-51ab-4c3e-a427-8dcb8480b35a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fc895d8c2b246ebaa3eafdf50630ac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fc895d8c2b246ebaa3eafdf50630ac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fc895d8c2b246ebaa3eafdf50630ac8.jpg", "file_size": 10736, "is_delete": false, "file_type": 1, "original_file_name": "HT004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc895d8c2b246ebaa3eafdf50630ac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc895d8c2b246ebaa3eafdf50630ac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc895d8c2b246ebaa3eafdf50630ac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fc895d8c2b246ebaa3eafdf50630ac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fc895d8c2b246ebaa3eafdf50630ac8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tX6fYEImsNqeH_PQMw1UjJ7ZMuE=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.980041+00 2025-12-09 10:14:51.980045+00 6431 8013FWF#男L+童3 SPMX-20240815301586 \N \N \N 1 \N [{"file_id": "e5d49d09-90ed-43b1-987d-4f32d9611112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78c99168fa304fa0929a476c109f67df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78c99168fa304fa0929a476c109f67df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78c99168fa304fa0929a476c109f67df.jpg", "file_size": 14959, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男L+童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c99168fa304fa0929a476c109f67df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c99168fa304fa0929a476c109f67df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c99168fa304fa0929a476c109f67df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78c99168fa304fa0929a476c109f67df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78c99168fa304fa0929a476c109f67df.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxca6MGldEaTr2HkhgFtF_lUnQ8=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.981337+00 2025-12-09 10:14:51.981341+00 6432 FHXGPK-052-4 SPMX-20240815301587 \N \N \N 1 \N [{"file_id": "56130e5d-f501-4951-9db7-6a1406467c8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ae89d5a381446d383f3903a775424f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ae89d5a381446d383f3903a775424f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ae89d5a381446d383f3903a775424f2.jpg", "file_size": 33969, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-052-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae89d5a381446d383f3903a775424f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae89d5a381446d383f3903a775424f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae89d5a381446d383f3903a775424f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ae89d5a381446d383f3903a775424f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ae89d5a381446d383f3903a775424f2.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkU15YXJQREL83_5oNC1rxz6yM0=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.993204+00 2025-12-09 10:14:51.993207+00 6441 1059#粉色 SPMX-20240815301590 \N \N \N 1 \N [{"file_id": "73442e55-1b77-475f-833d-228680b4791a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329fa1570a414476bde9fbe00cf3b70e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329fa1570a414476bde9fbe00cf3b70e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329fa1570a414476bde9fbe00cf3b70e.jpg", "file_size": 16164, "is_delete": false, "file_type": 1, "original_file_name": "1059#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329fa1570a414476bde9fbe00cf3b70e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329fa1570a414476bde9fbe00cf3b70e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329fa1570a414476bde9fbe00cf3b70e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329fa1570a414476bde9fbe00cf3b70e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329fa1570a414476bde9fbe00cf3b70e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gk7UamVzTxbwMUxLmjl66GwdQH0=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.982644+00 2025-12-09 10:14:51.982648+00 6433 0003-21FWE#VS-D3番禺调色 SPMX-20240815301578 \N \N \N 1 \N [{"file_id": "2f61d54f-3f60-4ea0-8ccd-8b48e944c767", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ece277fafaf42a9868bb81ccebf947c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ece277fafaf42a9868bb81ccebf947c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ece277fafaf42a9868bb81ccebf947c.jpg", "file_size": 14003, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ece277fafaf42a9868bb81ccebf947c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ece277fafaf42a9868bb81ccebf947c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ece277fafaf42a9868bb81ccebf947c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ece277fafaf42a9868bb81ccebf947c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ece277fafaf42a9868bb81ccebf947c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_uRwhdi1nvxWvfC1ZWAcCeWGe4=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.983982+00 2025-12-09 10:14:51.983986+00 6434 DH687#绿色2XL SPMX-20240815301580 \N \N \N 1 \N [{"file_id": "2d32d20e-3c3d-4465-9679-e7abd146c22c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a82203b789c5429bac33771a717bb1e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a82203b789c5429bac33771a717bb1e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a82203b789c5429bac33771a717bb1e3.jpg", "file_size": 67571, "is_delete": false, "file_type": 1, "original_file_name": "DH687#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82203b789c5429bac33771a717bb1e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82203b789c5429bac33771a717bb1e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82203b789c5429bac33771a717bb1e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a82203b789c5429bac33771a717bb1e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a82203b789c5429bac33771a717bb1e3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MVZGtOj_v2piM__JUbLOp7fx5wY=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.985315+00 2025-12-09 10:14:51.985319+00 6435 LHJ9329#37号玫红 SPMX-20240815301582 \N \N \N 1 \N [{"file_id": "67d8781f-fb68-4821-826b-4432e3d17381", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fab60895d984edba7471db5f800fd39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fab60895d984edba7471db5f800fd39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fab60895d984edba7471db5f800fd39.jpg", "file_size": 15778, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9329#37号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fab60895d984edba7471db5f800fd39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fab60895d984edba7471db5f800fd39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fab60895d984edba7471db5f800fd39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fab60895d984edba7471db5f800fd39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fab60895d984edba7471db5f800fd39.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHeZiXm6vrrM2p0IqQnSk6xBgb4=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.986608+00 2025-12-09 10:14:51.986612+00 6436 23-2103#A11袖子3XL SPMX-20240815301579 \N \N \N 1 \N [{"file_id": "1831c3f8-8649-4821-9b0c-7d49ce7dc9de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d35d97afbd8941e2ba33a7e6409885d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d35d97afbd8941e2ba33a7e6409885d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d35d97afbd8941e2ba33a7e6409885d3.jpg", "file_size": 9403, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A11袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d35d97afbd8941e2ba33a7e6409885d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d35d97afbd8941e2ba33a7e6409885d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d35d97afbd8941e2ba33a7e6409885d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d35d97afbd8941e2ba33a7e6409885d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d35d97afbd8941e2ba33a7e6409885d3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCdx54iXvgebpYTO3w01I64UuzQ=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.987912+00 2025-12-09 10:14:51.987916+00 6437 LZ1229#童装T上身3号色 SPMX-20240815301577 \N \N \N 1 \N [{"file_id": "a704d8f9-e04c-4cea-9445-fb0c65b02b1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61e1c66933dd41dfa31a00cd729b3fbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61e1c66933dd41dfa31a00cd729b3fbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61e1c66933dd41dfa31a00cd729b3fbd.jpg", "file_size": 21638, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e1c66933dd41dfa31a00cd729b3fbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e1c66933dd41dfa31a00cd729b3fbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e1c66933dd41dfa31a00cd729b3fbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61e1c66933dd41dfa31a00cd729b3fbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61e1c66933dd41dfa31a00cd729b3fbd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-ydGPOnuu2erG7r-ZWlt52f2q0=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.989235+00 2025-12-09 10:14:51.989239+00 6438 1059#白色匹布 SPMX-20240815301576 \N \N \N 1 \N [{"file_id": "ef8a2611-1a90-46f4-92de-bc8930784277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5db055f5a39245f784ec148168e8ea10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5db055f5a39245f784ec148168e8ea10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5db055f5a39245f784ec148168e8ea10.jpg", "file_size": 18071, "is_delete": false, "file_type": 1, "original_file_name": "1059#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db055f5a39245f784ec148168e8ea10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db055f5a39245f784ec148168e8ea10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db055f5a39245f784ec148168e8ea10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5db055f5a39245f784ec148168e8ea10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5db055f5a39245f784ec148168e8ea10.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcsEW4aJmaiAImCYDQuLtNH64LQ=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.990553+00 2025-12-09 10:14:51.990557+00 6439 JT0165-7#LWQ15 SPMX-20240815301585 \N \N \N 1 \N [{"file_id": "5c8682f3-af74-4f0b-91fc-fae0c8f42666", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8af839efddfb4250b623db89b8525a6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8af839efddfb4250b623db89b8525a6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8af839efddfb4250b623db89b8525a6b.jpg", "file_size": 14911, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-7#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af839efddfb4250b623db89b8525a6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af839efddfb4250b623db89b8525a6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af839efddfb4250b623db89b8525a6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8af839efddfb4250b623db89b8525a6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8af839efddfb4250b623db89b8525a6b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THlY842QZ8krbPUS1wdCCPGylXI=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.991879+00 2025-12-09 10:14:51.991883+00 6440 DH687#绿色L SPMX-20240815301592 \N \N \N 1 \N [{"file_id": "895a3f6f-1333-4d50-98b8-5b3b76c48955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa509d8627be40378d5a8ef94f26be7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa509d8627be40378d5a8ef94f26be7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa509d8627be40378d5a8ef94f26be7d.jpg", "file_size": 72362, "is_delete": false, "file_type": 1, "original_file_name": "DH687#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa509d8627be40378d5a8ef94f26be7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa509d8627be40378d5a8ef94f26be7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa509d8627be40378d5a8ef94f26be7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa509d8627be40378d5a8ef94f26be7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa509d8627be40378d5a8ef94f26be7d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDUgpcFabscMQ7h063WGhfA2Gl0=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.994637+00 2025-12-09 10:14:51.994642+00 6442 JT0165-8#LWQ15 SPMX-20240815301595 \N \N \N 1 \N [{"file_id": "e9d21ff6-7b96-48c8-ac1c-47f5dd892bf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a51ec9b524e47afb2dc712e7af12589.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a51ec9b524e47afb2dc712e7af12589.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a51ec9b524e47afb2dc712e7af12589.jpg", "file_size": 14256, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-8#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a51ec9b524e47afb2dc712e7af12589.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a51ec9b524e47afb2dc712e7af12589.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a51ec9b524e47afb2dc712e7af12589.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a51ec9b524e47afb2dc712e7af12589.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a51ec9b524e47afb2dc712e7af12589.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5Iji1ljZXg3hPdYeOY0VHluTeo=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.996167+00 2025-12-09 10:14:51.996172+00 6443 LZ1229#童装T下身1号色 SPMX-20240815301599 \N \N \N 1 \N [{"file_id": "1e4be9df-2e78-4b10-9d10-2a745194627c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg", "file_size": 26719, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e0fba4db6b44ad8b5e7a3cab3709f7a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9TEnVvgDzBmFKC3GaGmXLaDfyA=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.997665+00 2025-12-09 10:14:51.99767+00 6444 0003-21FWF#上身乱花 SPMX-20240815301600 \N \N \N 1 \N [{"file_id": "42fe8dea-5b02-4751-a7b2-d9628c12d9ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4db9c7504515470683bbf8422987ec21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4db9c7504515470683bbf8422987ec21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4db9c7504515470683bbf8422987ec21.jpg", "file_size": 13355, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#上身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4db9c7504515470683bbf8422987ec21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4db9c7504515470683bbf8422987ec21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4db9c7504515470683bbf8422987ec21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4db9c7504515470683bbf8422987ec21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4db9c7504515470683bbf8422987ec21.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4wwT8b-imCx3ELejkfP6E25hWM=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:51.99917+00 2025-12-09 10:14:51.999174+00 6445 LHJ9329#图片蓝 SPMX-20240815301594 \N \N \N 1 \N [{"file_id": "c16a9fa1-c856-4abc-ba15-411206565af0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46ad9ba12a7040639490b69e4d0f15e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46ad9ba12a7040639490b69e4d0f15e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46ad9ba12a7040639490b69e4d0f15e6.jpg", "file_size": 16114, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9329#图片蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ad9ba12a7040639490b69e4d0f15e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ad9ba12a7040639490b69e4d0f15e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ad9ba12a7040639490b69e4d0f15e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46ad9ba12a7040639490b69e4d0f15e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46ad9ba12a7040639490b69e4d0f15e6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPdWJu3Ypdbv9nx77Y_MsiJJc90=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.000669+00 2025-12-09 10:14:52.000674+00 6446 HT005# SPMX-20240815301596 \N \N \N 1 \N [{"file_id": "93df37a2-3c55-42dc-a048-e9065901aeda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90cb42491cdc43d190acbaf1b54d45e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90cb42491cdc43d190acbaf1b54d45e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90cb42491cdc43d190acbaf1b54d45e0.jpg", "file_size": 17612, "is_delete": false, "file_type": 1, "original_file_name": "HT005#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90cb42491cdc43d190acbaf1b54d45e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90cb42491cdc43d190acbaf1b54d45e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90cb42491cdc43d190acbaf1b54d45e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90cb42491cdc43d190acbaf1b54d45e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90cb42491cdc43d190acbaf1b54d45e0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ZJWmBpVSfkN_1qcuCqk2Pzg8BY=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.002182+00 2025-12-09 10:14:52.002187+00 6447 23-2103#A11袖子4XL SPMX-20240815301591 \N \N \N 1 \N [{"file_id": "0d8878c5-285f-4a8f-8971-0897bdc6e2a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "267262500e614b95ae10ac547bd348f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "267262500e614b95ae10ac547bd348f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "267262500e614b95ae10ac547bd348f3.jpg", "file_size": 9860, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A11袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/267262500e614b95ae10ac547bd348f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/267262500e614b95ae10ac547bd348f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/267262500e614b95ae10ac547bd348f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/267262500e614b95ae10ac547bd348f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/267262500e614b95ae10ac547bd348f3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tx6cW58oIJkDp1WbMKa0cNCtCk0=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.003667+00 2025-12-09 10:14:52.003672+00 6448 LZ1229#童装T上身4号色 SPMX-20240815301589 \N \N \N 1 \N [{"file_id": "32217c27-36d9-445a-b1a5-be8f5c5e4e97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fac6610e6a4440baa5d724543a11b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fac6610e6a4440baa5d724543a11b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fac6610e6a4440baa5d724543a11b1f.jpg", "file_size": 20454, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fac6610e6a4440baa5d724543a11b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fac6610e6a4440baa5d724543a11b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fac6610e6a4440baa5d724543a11b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fac6610e6a4440baa5d724543a11b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fac6610e6a4440baa5d724543a11b1f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQTShwzWPIQJfGYd1okrYIz2-Zw=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.005175+00 2025-12-09 10:14:52.005179+00 6449 C275#黑豆沙 SPMX-20240815301593 \N \N \N 1 \N [{"file_id": "78a2bffe-2f17-4580-857a-13b4746412c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50dd14e063744c08ab19bf0242ab4696.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50dd14e063744c08ab19bf0242ab4696.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50dd14e063744c08ab19bf0242ab4696.jpg", "file_size": 11130, "is_delete": false, "file_type": 1, "original_file_name": "C275#黑豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dd14e063744c08ab19bf0242ab4696.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dd14e063744c08ab19bf0242ab4696.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50dd14e063744c08ab19bf0242ab4696.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50dd14e063744c08ab19bf0242ab4696.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50dd14e063744c08ab19bf0242ab4696.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oq_cgJA-LYxgg-CEhhya9sz71zQ=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.006683+00 2025-12-09 10:14:52.006687+00 6450 1059#粉色匹布 SPMX-20240815301601 \N \N \N 1 \N [{"file_id": "dcabe123-2553-45d0-8f43-b63f558b1892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e420c4825464d0182f0f23eb18db300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e420c4825464d0182f0f23eb18db300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e420c4825464d0182f0f23eb18db300.jpg", "file_size": 14385, "is_delete": false, "file_type": 1, "original_file_name": "1059#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e420c4825464d0182f0f23eb18db300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e420c4825464d0182f0f23eb18db300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e420c4825464d0182f0f23eb18db300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e420c4825464d0182f0f23eb18db300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e420c4825464d0182f0f23eb18db300.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:42oZ2c9jvYIsizYmzIESqevWV3k=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.008211+00 2025-12-09 10:14:52.008215+00 6451 8013FWF#男L+童4 SPMX-20240815301597 \N \N \N 1 \N [{"file_id": "e9e4d2dc-27f4-496d-8fd5-f59423f249b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43d7309168c94f51ac844bf702e0d5c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43d7309168c94f51ac844bf702e0d5c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43d7309168c94f51ac844bf702e0d5c7.jpg", "file_size": 15463, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男L+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d7309168c94f51ac844bf702e0d5c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d7309168c94f51ac844bf702e0d5c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d7309168c94f51ac844bf702e0d5c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43d7309168c94f51ac844bf702e0d5c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43d7309168c94f51ac844bf702e0d5c7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O86TmIGJCBxBcu9Vi5OaAdOKa7s=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.009714+00 2025-12-09 10:14:52.009719+00 6452 FHXGPK-052-5 SPMX-20240815301598 \N \N \N 1 \N [{"file_id": "ff70123b-8fcf-4121-b5ad-b41a36392b01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96bfe1c672bb46a29bff682f8252854f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96bfe1c672bb46a29bff682f8252854f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96bfe1c672bb46a29bff682f8252854f.jpg", "file_size": 32959, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-052-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bfe1c672bb46a29bff682f8252854f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bfe1c672bb46a29bff682f8252854f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bfe1c672bb46a29bff682f8252854f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96bfe1c672bb46a29bff682f8252854f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96bfe1c672bb46a29bff682f8252854f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:me-dyrr01HiVhoyguKiznIm_Sw0=", "createTime": "2024-08-15 14:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.011214+00 2025-12-09 10:14:52.011218+00 6453 0003-21FWF#V5曲线 SPMX-20240815301588 \N \N \N 1 \N [{"file_id": "35a1210b-f5da-480e-9698-d4c247d33433", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c55486d14dc4fa0b9af2062cd3bff31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c55486d14dc4fa0b9af2062cd3bff31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c55486d14dc4fa0b9af2062cd3bff31.jpg", "file_size": 9101, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55486d14dc4fa0b9af2062cd3bff31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55486d14dc4fa0b9af2062cd3bff31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55486d14dc4fa0b9af2062cd3bff31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c55486d14dc4fa0b9af2062cd3bff31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c55486d14dc4fa0b9af2062cd3bff31.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-MT68y1DlztOrq0tK44wkBQM7Vk=", "createTime": "2024-08-15 14:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.01272+00 2025-12-09 10:14:52.012725+00 6454 C278#彩兰 SPMX-20240815301604 \N \N \N 1 \N [{"file_id": "bb89d77c-3401-4404-b04d-c99c08634a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b17b2979f1b641c7949d8ef82a306119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b17b2979f1b641c7949d8ef82a306119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b17b2979f1b641c7949d8ef82a306119.jpg", "file_size": 30130, "is_delete": false, "file_type": 1, "original_file_name": "C278#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17b2979f1b641c7949d8ef82a306119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17b2979f1b641c7949d8ef82a306119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17b2979f1b641c7949d8ef82a306119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b17b2979f1b641c7949d8ef82a306119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b17b2979f1b641c7949d8ef82a306119.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qvhzQwPnO-1MvToWmPIpxPVeGA=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.014236+00 2025-12-09 10:14:52.014241+00 6455 JT0165-8#WJC22 SPMX-20240815301603 \N \N \N 1 \N [{"file_id": "b304898d-b8a2-4a1c-8d25-c978052a91cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "defd0019c0a645649f27e6d0379ce0bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "defd0019c0a645649f27e6d0379ce0bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "defd0019c0a645649f27e6d0379ce0bd.jpg", "file_size": 11712, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-8#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defd0019c0a645649f27e6d0379ce0bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defd0019c0a645649f27e6d0379ce0bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defd0019c0a645649f27e6d0379ce0bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/defd0019c0a645649f27e6d0379ce0bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/defd0019c0a645649f27e6d0379ce0bd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oh0YITxsPxb9L32CUVvJwcFNrBU=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.015731+00 2025-12-09 10:14:52.015735+00 6456 DH687#绿色M SPMX-20240815301608 \N \N \N 1 \N [{"file_id": "b3cfbd27-0b22-4f16-b8e7-72137cd8c570", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8abc07ed50174988845d0ed419a32d1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8abc07ed50174988845d0ed419a32d1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8abc07ed50174988845d0ed419a32d1c.jpg", "file_size": 75191, "is_delete": false, "file_type": 1, "original_file_name": "DH687#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abc07ed50174988845d0ed419a32d1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abc07ed50174988845d0ed419a32d1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abc07ed50174988845d0ed419a32d1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8abc07ed50174988845d0ed419a32d1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8abc07ed50174988845d0ed419a32d1c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZpQfkuchWgQPzjetLlNkMKsLN8=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.017239+00 2025-12-09 10:14:52.017244+00 6457 LHJ9331#20#枣红 SPMX-20240815301606 \N \N \N 1 \N [{"file_id": "7a31f77d-1f12-45b2-89eb-044a9e8b6e4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14e8f276e1894a0cbfdab8bff047c5cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14e8f276e1894a0cbfdab8bff047c5cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14e8f276e1894a0cbfdab8bff047c5cc.jpg", "file_size": 11262, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9331#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e8f276e1894a0cbfdab8bff047c5cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e8f276e1894a0cbfdab8bff047c5cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e8f276e1894a0cbfdab8bff047c5cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14e8f276e1894a0cbfdab8bff047c5cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14e8f276e1894a0cbfdab8bff047c5cc.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1e3aZnWRKiKJJEmVDBeXB6a55pg=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.024768+00 2025-12-09 10:14:52.024773+00 6462 LHJ9331#25#土黄 SPMX-20240815301617 \N \N \N 1 \N [{"file_id": "d6d348c8-cad3-4a56-9996-cc4eff9d46cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43dff74e86e64145807641ff8ffab6f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43dff74e86e64145807641ff8ffab6f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43dff74e86e64145807641ff8ffab6f4.jpg", "file_size": 10886, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9331#25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43dff74e86e64145807641ff8ffab6f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43dff74e86e64145807641ff8ffab6f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43dff74e86e64145807641ff8ffab6f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43dff74e86e64145807641ff8ffab6f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43dff74e86e64145807641ff8ffab6f4.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eY-f2_jp4kKlVOuNaZQShnW6CA=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.018738+00 2025-12-09 10:14:52.018743+00 6458 LZ1229#童装T下身2号色 SPMX-20240815301609 \N \N \N 1 \N [{"file_id": "19f16c7d-4172-434c-a6a2-65c9aceef433", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3bd08dac8274169b095b5f7557d0829.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3bd08dac8274169b095b5f7557d0829.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3bd08dac8274169b095b5f7557d0829.jpg", "file_size": 26877, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd08dac8274169b095b5f7557d0829.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd08dac8274169b095b5f7557d0829.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd08dac8274169b095b5f7557d0829.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3bd08dac8274169b095b5f7557d0829.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3bd08dac8274169b095b5f7557d0829.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMGcA8DGuCUQytGQ3pkUsmt2dgk=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.020257+00 2025-12-09 10:14:52.020262+00 6459 23-2103#A11领子通用 SPMX-20240815301602 \N \N \N 1 \N [{"file_id": "f011b6f4-da90-4f21-a8c6-fa4f2191475c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caca6d26fe2d4bd7b8935bfc03328b09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caca6d26fe2d4bd7b8935bfc03328b09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caca6d26fe2d4bd7b8935bfc03328b09.jpg", "file_size": 8468, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A11领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caca6d26fe2d4bd7b8935bfc03328b09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caca6d26fe2d4bd7b8935bfc03328b09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caca6d26fe2d4bd7b8935bfc03328b09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caca6d26fe2d4bd7b8935bfc03328b09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caca6d26fe2d4bd7b8935bfc03328b09.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hz7ARQIdnrAWU5t89qc8zJd2uoY=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.021752+00 2025-12-09 10:14:52.021756+00 6460 0003-21FWF#下摆 SPMX-20240815301607 \N \N \N 1 \N [{"file_id": "af6298fd-97c2-4d15-ad65-8b6b8e8840e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1df55f071af642d4a454f796829943d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1df55f071af642d4a454f796829943d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1df55f071af642d4a454f796829943d1.jpg", "file_size": 18581, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df55f071af642d4a454f796829943d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df55f071af642d4a454f796829943d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df55f071af642d4a454f796829943d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1df55f071af642d4a454f796829943d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1df55f071af642d4a454f796829943d1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFafMLqx8VNtWDkrp58xIDlj6b0=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.023249+00 2025-12-09 10:14:52.023254+00 6461 23-2103#A12前后片3XL SPMX-20240815301605 \N \N \N 1 \N [{"file_id": "000392a0-7f9f-4b1f-86cf-db332851f1a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8330e96752f493f87697901d70ca5bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8330e96752f493f87697901d70ca5bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8330e96752f493f87697901d70ca5bd.jpg", "file_size": 9930, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A12前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8330e96752f493f87697901d70ca5bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8330e96752f493f87697901d70ca5bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8330e96752f493f87697901d70ca5bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8330e96752f493f87697901d70ca5bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8330e96752f493f87697901d70ca5bd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQOafdDEpjqAk75-Hl0luvkuv0c=", "createTime": "2024-08-15 14:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.026262+00 2025-12-09 10:14:52.026267+00 6463 JT0165-9#WJC22 SPMX-20240815301614 \N \N \N 1 \N [{"file_id": "2c9eea72-f66a-4a69-962b-71cc5a422f62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7877c3695f04fe9996333ef838d55a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7877c3695f04fe9996333ef838d55a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7877c3695f04fe9996333ef838d55a1.jpg", "file_size": 16405, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7877c3695f04fe9996333ef838d55a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7877c3695f04fe9996333ef838d55a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7877c3695f04fe9996333ef838d55a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7877c3695f04fe9996333ef838d55a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7877c3695f04fe9996333ef838d55a1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7NHy8r_blTUEuBjk5TPJggpoBAs=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.027775+00 2025-12-09 10:14:52.02778+00 6464 23-2103#A12前后片4XL SPMX-20240815301616 \N \N \N 1 \N [{"file_id": "9e0a9535-188e-46d6-bc20-6ee824ae5c40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a20180eb16004d99aa07d61c6debfa8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a20180eb16004d99aa07d61c6debfa8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a20180eb16004d99aa07d61c6debfa8d.jpg", "file_size": 10203, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A12前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20180eb16004d99aa07d61c6debfa8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20180eb16004d99aa07d61c6debfa8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20180eb16004d99aa07d61c6debfa8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a20180eb16004d99aa07d61c6debfa8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a20180eb16004d99aa07d61c6debfa8d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYLLBlfaigf3gKZq9ijp0nxt5EI=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.029276+00 2025-12-09 10:14:52.029281+00 6465 8013FWF#男L+童5 SPMX-20240815301612 \N \N \N 1 \N [{"file_id": "73e0f03f-3bf2-41df-8db4-20be04b45b7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18dd631f5ff6443c8fd152015a0f3516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18dd631f5ff6443c8fd152015a0f3516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18dd631f5ff6443c8fd152015a0f3516.jpg", "file_size": 12991, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男L+童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd631f5ff6443c8fd152015a0f3516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd631f5ff6443c8fd152015a0f3516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd631f5ff6443c8fd152015a0f3516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18dd631f5ff6443c8fd152015a0f3516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18dd631f5ff6443c8fd152015a0f3516.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7Ed2Mltw03dVp_kRPv2Z2yPQCo=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.030797+00 2025-12-09 10:14:52.030802+00 6466 1059#青色匹布 SPMX-20240815301611 \N \N \N 1 \N [{"file_id": "119f81f3-6797-4adf-a0b1-1f4ca97e2a8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "339e31bab1b34ce5ae0d20745106354f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "339e31bab1b34ce5ae0d20745106354f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "339e31bab1b34ce5ae0d20745106354f.jpg", "file_size": 12312, "is_delete": false, "file_type": 1, "original_file_name": "1059#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e31bab1b34ce5ae0d20745106354f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e31bab1b34ce5ae0d20745106354f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e31bab1b34ce5ae0d20745106354f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/339e31bab1b34ce5ae0d20745106354f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/339e31bab1b34ce5ae0d20745106354f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqfdNe403HO5rx0doF5HWKMU6dQ=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.032303+00 2025-12-09 10:14:52.032308+00 6467 C278#红色 SPMX-20240815301615 \N \N \N 1 \N [{"file_id": "14719f2d-23c1-44b7-bef7-6f7ba23bf6fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "307e08845b704ab6b8f642e3c3c1ce66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "307e08845b704ab6b8f642e3c3c1ce66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "307e08845b704ab6b8f642e3c3c1ce66.jpg", "file_size": 29114, "is_delete": false, "file_type": 1, "original_file_name": "C278#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307e08845b704ab6b8f642e3c3c1ce66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307e08845b704ab6b8f642e3c3c1ce66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307e08845b704ab6b8f642e3c3c1ce66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/307e08845b704ab6b8f642e3c3c1ce66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/307e08845b704ab6b8f642e3c3c1ce66.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xw4ubKdpQB65UnyzAlILsmyMljA=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.033824+00 2025-12-09 10:14:52.033829+00 6468 DH687#绿色S SPMX-20240815301619 \N \N \N 1 \N [{"file_id": "f80a5a14-27cb-4350-9224-2cf65e62ca1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7271e167fd5c4b839682c6fa119ec37d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7271e167fd5c4b839682c6fa119ec37d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7271e167fd5c4b839682c6fa119ec37d.jpg", "file_size": 78286, "is_delete": false, "file_type": 1, "original_file_name": "DH687#绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7271e167fd5c4b839682c6fa119ec37d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7271e167fd5c4b839682c6fa119ec37d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7271e167fd5c4b839682c6fa119ec37d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7271e167fd5c4b839682c6fa119ec37d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7271e167fd5c4b839682c6fa119ec37d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9SbaXjiMQ7ZtWN9WXxHrZwOXBs=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.035316+00 2025-12-09 10:14:52.035321+00 6469 HT005#D SPMX-20240815301610 \N \N \N 1 \N [{"file_id": "5ad197ef-1537-4d4c-a86a-39f107a0b6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8507d272768a449da3c682483f7709e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8507d272768a449da3c682483f7709e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8507d272768a449da3c682483f7709e6.jpg", "file_size": 15370, "is_delete": false, "file_type": 1, "original_file_name": "HT005#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8507d272768a449da3c682483f7709e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8507d272768a449da3c682483f7709e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8507d272768a449da3c682483f7709e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8507d272768a449da3c682483f7709e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8507d272768a449da3c682483f7709e6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EA0e8O6BJONetYAxlw_gqtksKc=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.036812+00 2025-12-09 10:14:52.036817+00 6470 FHXGPK-053-1 SPMX-20240815301613 \N \N \N 1 \N [{"file_id": "32e9aec4-a693-4220-8004-854156e84934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62196db3f0c7465f83941398c2932cd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62196db3f0c7465f83941398c2932cd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62196db3f0c7465f83941398c2932cd3.jpg", "file_size": 29816, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-053-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62196db3f0c7465f83941398c2932cd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62196db3f0c7465f83941398c2932cd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62196db3f0c7465f83941398c2932cd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62196db3f0c7465f83941398c2932cd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62196db3f0c7465f83941398c2932cd3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIf_9j_qloUBGqNQmyaxXtZjDF4=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.044352+00 2025-12-09 10:14:52.044357+00 6475 105A橙色 SPMX-20240815301630 \N \N \N 1 \N [{"file_id": "39270efd-49d0-4e9b-b042-7bb5aea0acf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19e3196c0dec45f9837acfb33396cd0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19e3196c0dec45f9837acfb33396cd0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19e3196c0dec45f9837acfb33396cd0a.jpg", "file_size": 60815, "is_delete": false, "file_type": 1, "original_file_name": "105A橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e3196c0dec45f9837acfb33396cd0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e3196c0dec45f9837acfb33396cd0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e3196c0dec45f9837acfb33396cd0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19e3196c0dec45f9837acfb33396cd0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19e3196c0dec45f9837acfb33396cd0a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bb8DALtFk4FTVkbXPBCWxPUMN7A=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.038308+00 2025-12-09 10:14:52.038312+00 6471 0003-21FWF#下摆花-番禺调色 SPMX-20240815301618 \N \N \N 1 \N [{"file_id": "258eeaae-0a6f-4f70-a8ae-ad1cbfbe8785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdf72925c61841b7888af48bf9cf4d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdf72925c61841b7888af48bf9cf4d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdf72925c61841b7888af48bf9cf4d31.jpg", "file_size": 20277, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#下摆花-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf72925c61841b7888af48bf9cf4d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf72925c61841b7888af48bf9cf4d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf72925c61841b7888af48bf9cf4d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdf72925c61841b7888af48bf9cf4d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdf72925c61841b7888af48bf9cf4d31.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5nPk_utJw09yZKy9Ycbsq3Z5N0=", "createTime": "2024-08-15 14:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.03982+00 2025-12-09 10:14:52.039825+00 6472 FHXGPK-053-2 SPMX-20240815301621 \N \N \N 1 \N [{"file_id": "b6d1465a-b265-4dd1-bd82-c87db19fd298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "583966aa79ad475db5aee8b3405a24be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "583966aa79ad475db5aee8b3405a24be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "583966aa79ad475db5aee8b3405a24be.jpg", "file_size": 30970, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-053-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583966aa79ad475db5aee8b3405a24be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583966aa79ad475db5aee8b3405a24be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583966aa79ad475db5aee8b3405a24be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/583966aa79ad475db5aee8b3405a24be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/583966aa79ad475db5aee8b3405a24be.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNxzisv-G8jaBNTJqUeSS52jwWc=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.041332+00 2025-12-09 10:14:52.041337+00 6473 C278#绿色 SPMX-20240815301622 \N \N \N 1 \N [{"file_id": "7f54bb1e-3e50-4234-bcf8-30443ef46d4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abe43a6c703c4130a18cc6aee67c5343.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abe43a6c703c4130a18cc6aee67c5343.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abe43a6c703c4130a18cc6aee67c5343.jpg", "file_size": 28772, "is_delete": false, "file_type": 1, "original_file_name": "C278#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe43a6c703c4130a18cc6aee67c5343.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe43a6c703c4130a18cc6aee67c5343.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe43a6c703c4130a18cc6aee67c5343.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abe43a6c703c4130a18cc6aee67c5343.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abe43a6c703c4130a18cc6aee67c5343.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwQ7awsIPS2hWYbVPZ4-nZFan2w=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.042842+00 2025-12-09 10:14:52.042847+00 6474 LZ1229#童装T下身4号色 SPMX-20240815301620 \N \N \N 1 \N [{"file_id": "9adf3f0e-9b3f-4f5a-886a-4692392e95de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e86b7de5cd88429eb1958b77862da0d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e86b7de5cd88429eb1958b77862da0d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e86b7de5cd88429eb1958b77862da0d7.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86b7de5cd88429eb1958b77862da0d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86b7de5cd88429eb1958b77862da0d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86b7de5cd88429eb1958b77862da0d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e86b7de5cd88429eb1958b77862da0d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e86b7de5cd88429eb1958b77862da0d7.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ER3LCyviJiS-blL0-kng0secwXw=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.045876+00 2025-12-09 10:14:52.045881+00 6476 8013FWF#男M+童4 SPMX-20240815301635 \N \N \N 1 \N [{"file_id": "9730085b-b23d-46f1-8d6a-05389cc78d73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81b61abc246c48e6a07b4c4d51b811e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81b61abc246c48e6a07b4c4d51b811e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81b61abc246c48e6a07b4c4d51b811e0.jpg", "file_size": 15572, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男M+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b61abc246c48e6a07b4c4d51b811e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b61abc246c48e6a07b4c4d51b811e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81b61abc246c48e6a07b4c4d51b811e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81b61abc246c48e6a07b4c4d51b811e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81b61abc246c48e6a07b4c4d51b811e0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMpk8p8L_x0TXURcMUxpQC3g69A=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.047405+00 2025-12-09 10:14:52.04741+00 6477 0003-21FWF#领子花-番禺调色 SPMX-20240815301628 \N \N \N 1 \N [{"file_id": "efb9876e-52a9-41bb-a4df-12eb07044cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a179ba154af4637ae606880394be02f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a179ba154af4637ae606880394be02f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a179ba154af4637ae606880394be02f.jpg", "file_size": 15512, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#领子花-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a179ba154af4637ae606880394be02f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a179ba154af4637ae606880394be02f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a179ba154af4637ae606880394be02f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a179ba154af4637ae606880394be02f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a179ba154af4637ae606880394be02f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-kbjZ4JyYYmlBxDpXy-EZSQm_a4=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.048924+00 2025-12-09 10:14:52.048929+00 6478 JT0165-A1#LWQ15 SPMX-20240815301626 \N \N \N 1 \N [{"file_id": "10d8d306-d276-4e51-99ae-a756890d4104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6cd04e4df846f59a6e6be495c0c734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6cd04e4df846f59a6e6be495c0c734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6cd04e4df846f59a6e6be495c0c734.jpg", "file_size": 10499, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6cd04e4df846f59a6e6be495c0c734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6cd04e4df846f59a6e6be495c0c734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6cd04e4df846f59a6e6be495c0c734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6cd04e4df846f59a6e6be495c0c734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6cd04e4df846f59a6e6be495c0c734.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R61yB1j9X96zVMSwCXVpIw0CVo4=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.050417+00 2025-12-09 10:14:52.050421+00 6479 23-2103#A12袖子4XL SPMX-20240815301636 \N \N \N 1 \N [{"file_id": "5003ae8c-aca8-4328-8f2b-32935210301b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c88bbf17b664bfdadb992adcef89a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c88bbf17b664bfdadb992adcef89a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c88bbf17b664bfdadb992adcef89a43.jpg", "file_size": 9822, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A12袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c88bbf17b664bfdadb992adcef89a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c88bbf17b664bfdadb992adcef89a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c88bbf17b664bfdadb992adcef89a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c88bbf17b664bfdadb992adcef89a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c88bbf17b664bfdadb992adcef89a43.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6UT2p6oPO_ly_FyChhhFrUxrAs=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.051914+00 2025-12-09 10:14:52.051919+00 6480 8013FWF#男M+童3 SPMX-20240815301623 \N \N \N 1 \N [{"file_id": "bbabd56a-19cf-480b-8c54-7c19af78cba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38d5fe51bee24b98888d310085582d82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38d5fe51bee24b98888d310085582d82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38d5fe51bee24b98888d310085582d82.jpg", "file_size": 15202, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男M+童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d5fe51bee24b98888d310085582d82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d5fe51bee24b98888d310085582d82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d5fe51bee24b98888d310085582d82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38d5fe51bee24b98888d310085582d82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38d5fe51bee24b98888d310085582d82.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-SI6iUr61OqT8RwxMy2rknwFXs=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.05344+00 2025-12-09 10:14:52.053445+00 6481 C278#黄色 SPMX-20240815301632 \N \N \N 1 \N [{"file_id": "84e62d79-b9bd-42ab-a52c-769f63545d35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "580b06f22c66457db082aa62e096655e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "580b06f22c66457db082aa62e096655e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "580b06f22c66457db082aa62e096655e.jpg", "file_size": 24468, "is_delete": false, "file_type": 1, "original_file_name": "C278#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580b06f22c66457db082aa62e096655e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580b06f22c66457db082aa62e096655e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/580b06f22c66457db082aa62e096655e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/580b06f22c66457db082aa62e096655e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/580b06f22c66457db082aa62e096655e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:um5cdIMTNwpl2BmnZOmgmjH_zdE=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.054952+00 2025-12-09 10:14:52.054957+00 6482 HT005#白 SPMX-20240815301634 \N \N \N 1 \N [{"file_id": "49658376-2364-43d5-aefd-4dbe9f832f83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg", "file_size": 7705, "is_delete": false, "file_type": 1, "original_file_name": "HT005#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7f12cdbc2e4cd8a7782f0dcc46792f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sty1TtM1EYmRhzVaX6QHnGU6xoA=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.056453+00 2025-12-09 10:14:52.056458+00 6483 LHJ9331#37#玫红 SPMX-20240815301629 \N \N \N 1 \N [{"file_id": "5e29fbef-b682-42be-b35b-d085783b5ad2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d249642dd0624ea0acabcd82cff3dd2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d249642dd0624ea0acabcd82cff3dd2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d249642dd0624ea0acabcd82cff3dd2b.jpg", "file_size": 11143, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9331#37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d249642dd0624ea0acabcd82cff3dd2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d249642dd0624ea0acabcd82cff3dd2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d249642dd0624ea0acabcd82cff3dd2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d249642dd0624ea0acabcd82cff3dd2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d249642dd0624ea0acabcd82cff3dd2b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0NBOALKL4NSHaAmoFLnGjMSRLo0=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.057976+00 2025-12-09 10:14:52.057981+00 6484 HT005#VS-D3 SPMX-20240815301624 \N \N \N 1 \N [{"file_id": "a4f5fb81-912b-4846-9a61-e49f154bbc9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ff0f80fc3534565ba2245c5e90b3944.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ff0f80fc3534565ba2245c5e90b3944.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ff0f80fc3534565ba2245c5e90b3944.jpg", "file_size": 8366, "is_delete": false, "file_type": 1, "original_file_name": "HT005#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff0f80fc3534565ba2245c5e90b3944.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff0f80fc3534565ba2245c5e90b3944.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff0f80fc3534565ba2245c5e90b3944.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ff0f80fc3534565ba2245c5e90b3944.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ff0f80fc3534565ba2245c5e90b3944.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeZm5cNKjrd4Hxdi61AbhkseScA=", "createTime": "2024-08-15 14:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.059483+00 2025-12-09 10:14:52.059487+00 6485 23-2103#A12袖子3XL SPMX-20240815301625 \N \N \N 1 \N [{"file_id": "495eb4ec-3ebd-4ec1-a5f0-bbbc51b4ecde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7a6ef4553f1495981cd59edf21b0153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7a6ef4553f1495981cd59edf21b0153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7a6ef4553f1495981cd59edf21b0153.jpg", "file_size": 9989, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A12袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a6ef4553f1495981cd59edf21b0153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a6ef4553f1495981cd59edf21b0153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a6ef4553f1495981cd59edf21b0153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7a6ef4553f1495981cd59edf21b0153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7a6ef4553f1495981cd59edf21b0153.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akaYpPKGe_PeDF-KwyUD3WgSUfw=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.061016+00 2025-12-09 10:14:52.061021+00 6486 LZ1229#童装T下身6号色 SPMX-20240815301631 \N \N \N 1 \N [{"file_id": "f23ed037-c39d-4c08-9ba3-c21288778e9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240df5f93d194110b291db82e2ad4caf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240df5f93d194110b291db82e2ad4caf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240df5f93d194110b291db82e2ad4caf.jpg", "file_size": 26809, "is_delete": false, "file_type": 1, "original_file_name": "LZ1229#童装T下身6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240df5f93d194110b291db82e2ad4caf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240df5f93d194110b291db82e2ad4caf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240df5f93d194110b291db82e2ad4caf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240df5f93d194110b291db82e2ad4caf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240df5f93d194110b291db82e2ad4caf.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UKnOOZce0z0AqWSXlSn46QWlr1k=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.062515+00 2025-12-09 10:14:52.06252+00 6487 JT0165-A1#RC23 SPMX-20240815301637 \N \N \N 1 \N [{"file_id": "68aa2d99-5411-4b38-b4b4-f20de71738b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg", "file_size": 22481, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d7c66b5f6ff41b4b3aec23c79f8ab34.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Na6wTLZl4VV_DpDpQTTOzUmdiAY=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.064013+00 2025-12-09 10:14:52.064018+00 6488 FHXGPK-053-3 SPMX-20240815301633 \N \N \N 1 \N [{"file_id": "aae01fb4-d656-4341-bb13-b81903c24226", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c808e1dbf93e4916ab98ea9877592759.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c808e1dbf93e4916ab98ea9877592759.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c808e1dbf93e4916ab98ea9877592759.jpg", "file_size": 32904, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-053-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c808e1dbf93e4916ab98ea9877592759.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c808e1dbf93e4916ab98ea9877592759.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c808e1dbf93e4916ab98ea9877592759.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c808e1dbf93e4916ab98ea9877592759.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c808e1dbf93e4916ab98ea9877592759.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYwVpklIhyS5K2QejANk_IDrxdQ=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.065509+00 2025-12-09 10:14:52.065514+00 6489 DH687#绿色XL SPMX-20240815301627 \N \N \N 1 \N [{"file_id": "b7ba55cc-5d6f-49b7-b9e2-13d533a87122", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22f1d81fb1644313a482d10d1b290a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22f1d81fb1644313a482d10d1b290a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22f1d81fb1644313a482d10d1b290a0e.jpg", "file_size": 67214, "is_delete": false, "file_type": 1, "original_file_name": "DH687#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22f1d81fb1644313a482d10d1b290a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22f1d81fb1644313a482d10d1b290a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22f1d81fb1644313a482d10d1b290a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22f1d81fb1644313a482d10d1b290a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22f1d81fb1644313a482d10d1b290a0e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hYpL0IlAYu5CDNBYxi9RefzpJvk=", "createTime": "2024-08-15 14:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.067042+00 2025-12-09 10:14:52.067047+00 6490 LHJ9331#5#彩兰 SPMX-20240815301638 \N \N \N 1 \N [{"file_id": "24dae00d-70b9-4394-8e5f-440438fa6ecf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "805ff432b89a4f44a413df03cbc8007f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "805ff432b89a4f44a413df03cbc8007f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "805ff432b89a4f44a413df03cbc8007f.jpg", "file_size": 11260, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9331#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805ff432b89a4f44a413df03cbc8007f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805ff432b89a4f44a413df03cbc8007f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805ff432b89a4f44a413df03cbc8007f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/805ff432b89a4f44a413df03cbc8007f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/805ff432b89a4f44a413df03cbc8007f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWM8YaPCcrcQZed1iK1SOmt1hjw=", "createTime": "2024-08-15 14:43:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.068551+00 2025-12-09 10:14:52.068556+00 6491 DH687#蓝色2XL SPMX-20240815301639 \N \N \N 1 \N [{"file_id": "9a1ca938-10ba-4777-92b3-f242dd062443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5386d9791424f2285b1d9fa8585d949.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5386d9791424f2285b1d9fa8585d949.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5386d9791424f2285b1d9fa8585d949.jpg", "file_size": 68674, "is_delete": false, "file_type": 1, "original_file_name": "DH687#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5386d9791424f2285b1d9fa8585d949.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5386d9791424f2285b1d9fa8585d949.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5386d9791424f2285b1d9fa8585d949.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5386d9791424f2285b1d9fa8585d949.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5386d9791424f2285b1d9fa8585d949.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIRxmbzr36ulOFMu3-4NvEaW_KY=", "createTime": "2024-08-15 14:43:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.070059+00 2025-12-09 10:14:52.070064+00 6492 HT005#粉 SPMX-20240815301641 \N \N \N 1 \N [{"file_id": "5da1bb60-d1fa-4176-be76-12cabb204052", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "999270996653466d8e54e4b2cc2a5c66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "999270996653466d8e54e4b2cc2a5c66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "999270996653466d8e54e4b2cc2a5c66.jpg", "file_size": 6623, "is_delete": false, "file_type": 1, "original_file_name": "HT005#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999270996653466d8e54e4b2cc2a5c66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999270996653466d8e54e4b2cc2a5c66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999270996653466d8e54e4b2cc2a5c66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/999270996653466d8e54e4b2cc2a5c66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/999270996653466d8e54e4b2cc2a5c66.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMUPAG9vVCkulFhwn7DIjEiNOao=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.071572+00 2025-12-09 10:14:52.071576+00 6493 LZ122FWF#1号色短袖 SPMX-20240815301642 \N \N \N 1 \N [{"file_id": "95225744-c200-48d7-9930-74e421ed5f16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58e840c25a3140699b1d83544db04aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58e840c25a3140699b1d83544db04aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58e840c25a3140699b1d83544db04aaa.jpg", "file_size": 19304, "is_delete": false, "file_type": 1, "original_file_name": "LZ122FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e840c25a3140699b1d83544db04aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e840c25a3140699b1d83544db04aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e840c25a3140699b1d83544db04aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58e840c25a3140699b1d83544db04aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58e840c25a3140699b1d83544db04aaa.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LU-5cms_NUIW4jIZm5UQrybC1e0=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.073095+00 2025-12-09 10:14:52.0731+00 6494 105A玫工 SPMX-20240815301644 \N \N \N 1 \N [{"file_id": "167a4801-a7b8-4cbe-abd1-25558fd652a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b41de2cbcd94df393814b60e7fc71ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b41de2cbcd94df393814b60e7fc71ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b41de2cbcd94df393814b60e7fc71ee.jpg", "file_size": 59489, "is_delete": false, "file_type": 1, "original_file_name": "105A玫工.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41de2cbcd94df393814b60e7fc71ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41de2cbcd94df393814b60e7fc71ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41de2cbcd94df393814b60e7fc71ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b41de2cbcd94df393814b60e7fc71ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b41de2cbcd94df393814b60e7fc71ee.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFNHQ3I4SkfhqY4ji59B4DJXXjM=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.074617+00 2025-12-09 10:14:52.074622+00 6495 C278#黑色 SPMX-20240815301646 \N \N \N 1 \N [{"file_id": "431c9939-bf3f-4330-ad17-b385858a779a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67492e359f2241f3beddd1fc465e7e93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67492e359f2241f3beddd1fc465e7e93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67492e359f2241f3beddd1fc465e7e93.jpg", "file_size": 29570, "is_delete": false, "file_type": 1, "original_file_name": "C278#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67492e359f2241f3beddd1fc465e7e93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67492e359f2241f3beddd1fc465e7e93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67492e359f2241f3beddd1fc465e7e93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67492e359f2241f3beddd1fc465e7e93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67492e359f2241f3beddd1fc465e7e93.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oSF8PWr9lEEDq9t3wWnI2TrcKF0=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.07612+00 2025-12-09 10:14:52.076125+00 6496 DH687#蓝色L SPMX-20240815301650 \N \N \N 1 \N [{"file_id": "5be2f4f0-614f-4131-b924-df0fe8722c9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b5d09aba91347c0b33ecc72873898ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b5d09aba91347c0b33ecc72873898ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b5d09aba91347c0b33ecc72873898ea.jpg", "file_size": 75862, "is_delete": false, "file_type": 1, "original_file_name": "DH687#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5d09aba91347c0b33ecc72873898ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5d09aba91347c0b33ecc72873898ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5d09aba91347c0b33ecc72873898ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b5d09aba91347c0b33ecc72873898ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b5d09aba91347c0b33ecc72873898ea.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFOa8UOPAVfYF8bLEPHxLWsREno=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.077624+00 2025-12-09 10:14:52.077628+00 6497 8013FWF#男M+童5 SPMX-20240815301643 \N \N \N 1 \N [{"file_id": "f6924a2e-8c06-46e3-9fbc-7c2c164cbbd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e157e71d690a4fc9b28ec7b42d0bdd6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e157e71d690a4fc9b28ec7b42d0bdd6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e157e71d690a4fc9b28ec7b42d0bdd6e.jpg", "file_size": 14883, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男M+童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e157e71d690a4fc9b28ec7b42d0bdd6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e157e71d690a4fc9b28ec7b42d0bdd6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e157e71d690a4fc9b28ec7b42d0bdd6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e157e71d690a4fc9b28ec7b42d0bdd6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e157e71d690a4fc9b28ec7b42d0bdd6e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxRbAZ274S-hsJDBpAJ2fNFwirY=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.079135+00 2025-12-09 10:14:52.07914+00 6498 LHJ9332#20号枣红 SPMX-20240815301649 \N \N \N 1 \N [{"file_id": "96a0aa7b-59b6-4622-b90a-b0916cdecc43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1733dfd350364d7aa94a1ea97682fe9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1733dfd350364d7aa94a1ea97682fe9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1733dfd350364d7aa94a1ea97682fe9b.jpg", "file_size": 13902, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#20号枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1733dfd350364d7aa94a1ea97682fe9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1733dfd350364d7aa94a1ea97682fe9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1733dfd350364d7aa94a1ea97682fe9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1733dfd350364d7aa94a1ea97682fe9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1733dfd350364d7aa94a1ea97682fe9b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wcn44hXZPb90bcp-yq2N3KUD6U0=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.08063+00 2025-12-09 10:14:52.080634+00 6499 FHXGPK-053-4 SPMX-20240815301647 \N \N \N 1 \N [{"file_id": "ecdb353b-a722-48a2-b126-6ed2dec941b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b48abc74b7db4bcf989939546e345767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b48abc74b7db4bcf989939546e345767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b48abc74b7db4bcf989939546e345767.jpg", "file_size": 32073, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-053-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48abc74b7db4bcf989939546e345767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48abc74b7db4bcf989939546e345767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48abc74b7db4bcf989939546e345767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b48abc74b7db4bcf989939546e345767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b48abc74b7db4bcf989939546e345767.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVCsAHJuflV9qJ42_pXfXG9t_7E=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.082137+00 2025-12-09 10:14:52.082142+00 6500 JT0165-A2#LWQ15 SPMX-20240815301648 \N \N \N 1 \N [{"file_id": "c5fc106f-cdd6-4d77-8f83-16d4a6b20c81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bd21e24194b4dbab3fb940d05df8966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bd21e24194b4dbab3fb940d05df8966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bd21e24194b4dbab3fb940d05df8966.jpg", "file_size": 16592, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd21e24194b4dbab3fb940d05df8966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd21e24194b4dbab3fb940d05df8966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd21e24194b4dbab3fb940d05df8966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bd21e24194b4dbab3fb940d05df8966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bd21e24194b4dbab3fb940d05df8966.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vN9mDa95tpFB35WOOaqDFudU2O4=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.083631+00 2025-12-09 10:14:52.083636+00 6501 0003-21FWF#领子花 SPMX-20240815301640 \N \N \N 1 \N [{"file_id": "5641d625-d3b2-40f4-b9cc-d0eb4ef0b696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e259f8e6c0f34900a4a29ea3deed3103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e259f8e6c0f34900a4a29ea3deed3103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e259f8e6c0f34900a4a29ea3deed3103.jpg", "file_size": 14196, "is_delete": false, "file_type": 1, "original_file_name": "0003-21FWF#领子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e259f8e6c0f34900a4a29ea3deed3103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e259f8e6c0f34900a4a29ea3deed3103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e259f8e6c0f34900a4a29ea3deed3103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e259f8e6c0f34900a4a29ea3deed3103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e259f8e6c0f34900a4a29ea3deed3103.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkG-zZ1Vt-hUL6NeyX0EFNhONm8=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.085357+00 2025-12-09 10:14:52.085362+00 6502 23-2103#A12领子通用 SPMX-20240815301645 \N \N \N 1 \N [{"file_id": "b0b60a29-a40c-40fa-a15f-37dcdc506649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "572e6d5948034fae94a9b3f79f402e77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "572e6d5948034fae94a9b3f79f402e77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "572e6d5948034fae94a9b3f79f402e77.jpg", "file_size": 8390, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A12领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6d5948034fae94a9b3f79f402e77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6d5948034fae94a9b3f79f402e77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572e6d5948034fae94a9b3f79f402e77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/572e6d5948034fae94a9b3f79f402e77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/572e6d5948034fae94a9b3f79f402e77.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oS96gKEqJMCp5cu-c-HpOokRQg4=", "createTime": "2024-08-15 14:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.08689+00 2025-12-09 10:14:52.086895+00 6503 8013FWF#男XL SPMX-20240815301661 \N \N \N 1 \N [{"file_id": "b14d37f1-1243-4e99-80af-921e48a3364a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fe4ea360bc04ceab878bf164c014529.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fe4ea360bc04ceab878bf164c014529.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fe4ea360bc04ceab878bf164c014529.jpg", "file_size": 12914, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#男XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fe4ea360bc04ceab878bf164c014529.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fe4ea360bc04ceab878bf164c014529.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fe4ea360bc04ceab878bf164c014529.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fe4ea360bc04ceab878bf164c014529.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fe4ea360bc04ceab878bf164c014529.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hoe0BnKr00870CLVaWz-RmmGpEo=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.088409+00 2025-12-09 10:14:52.088414+00 6504 LZ122FWF#2号色短袖 SPMX-20240815301653 \N \N \N 1 \N [{"file_id": "a012c9c1-7711-4224-957d-954466b39149", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd56164fce504a62b0e92a6140deb21c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd56164fce504a62b0e92a6140deb21c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd56164fce504a62b0e92a6140deb21c.jpg", "file_size": 19985, "is_delete": false, "file_type": 1, "original_file_name": "LZ122FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd56164fce504a62b0e92a6140deb21c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd56164fce504a62b0e92a6140deb21c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd56164fce504a62b0e92a6140deb21c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd56164fce504a62b0e92a6140deb21c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd56164fce504a62b0e92a6140deb21c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQMBhsqaeRjooqOTgzYHOkAsxfE=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.089916+00 2025-12-09 10:14:52.089921+00 6505 105A玫红 SPMX-20240815301658 \N \N \N 1 \N [{"file_id": "e325b0ee-7159-4c47-a074-9ca33c1ecd69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d7f9151c31d4b09b1099b4a278fac82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d7f9151c31d4b09b1099b4a278fac82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d7f9151c31d4b09b1099b4a278fac82.jpg", "file_size": 59489, "is_delete": false, "file_type": 1, "original_file_name": "105A玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7f9151c31d4b09b1099b4a278fac82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7f9151c31d4b09b1099b4a278fac82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7f9151c31d4b09b1099b4a278fac82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d7f9151c31d4b09b1099b4a278fac82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d7f9151c31d4b09b1099b4a278fac82.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FrCXyMdEYyn6vrrHVo_NOeIMwM=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.091442+00 2025-12-09 10:14:52.091447+00 6506 HT005FW#宝蓝 SPMX-20240815301662 \N \N \N 1 \N [{"file_id": "aa67be6d-00b4-4596-a271-a8d8a7c70ce5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b61fa2e570344f6d81476cd909e09118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b61fa2e570344f6d81476cd909e09118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b61fa2e570344f6d81476cd909e09118.jpg", "file_size": 14593, "is_delete": false, "file_type": 1, "original_file_name": "HT005FW#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61fa2e570344f6d81476cd909e09118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61fa2e570344f6d81476cd909e09118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61fa2e570344f6d81476cd909e09118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b61fa2e570344f6d81476cd909e09118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b61fa2e570344f6d81476cd909e09118.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0X_ShNp2cCyvqAJw7e5gzAcnQQ=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.092829+00 2025-12-09 10:14:52.092833+00 6507 0003-22FWE#VS-D3 SPMX-20240815301652 \N \N \N 1 \N [{"file_id": "0ed597f8-34b0-4258-ab62-af1b4f6e9de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbf8f313d39a4081b47908876ad9cf38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbf8f313d39a4081b47908876ad9cf38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbf8f313d39a4081b47908876ad9cf38.jpg", "file_size": 15811, "is_delete": false, "file_type": 1, "original_file_name": "0003-22FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8f313d39a4081b47908876ad9cf38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8f313d39a4081b47908876ad9cf38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf8f313d39a4081b47908876ad9cf38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbf8f313d39a4081b47908876ad9cf38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbf8f313d39a4081b47908876ad9cf38.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtcxJdLyZEZUSzcdA2BvfDm-0Fk=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.094187+00 2025-12-09 10:14:52.094192+00 6508 C28#WJC22 SPMX-20240815301655 \N \N \N 1 \N [{"file_id": "591ecb7b-959f-48b5-8236-64e7b212a727", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "106902c3f37440eebbc8a2945dd08837.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "106902c3f37440eebbc8a2945dd08837.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "106902c3f37440eebbc8a2945dd08837.jpg", "file_size": 19034, "is_delete": false, "file_type": 1, "original_file_name": "C28#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106902c3f37440eebbc8a2945dd08837.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106902c3f37440eebbc8a2945dd08837.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106902c3f37440eebbc8a2945dd08837.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/106902c3f37440eebbc8a2945dd08837.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/106902c3f37440eebbc8a2945dd08837.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o7IYTJhB8SZjGl6PtCl2AeIABQY=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.095532+00 2025-12-09 10:14:52.095536+00 6509 DH687#蓝色M SPMX-20240815301659 \N \N \N 1 \N [{"file_id": "ca94f9d2-bd51-4eaa-96ee-b533d9e79457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74644cb2f3fd48bfb706327d56c0d5b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74644cb2f3fd48bfb706327d56c0d5b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74644cb2f3fd48bfb706327d56c0d5b3.jpg", "file_size": 79814, "is_delete": false, "file_type": 1, "original_file_name": "DH687#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74644cb2f3fd48bfb706327d56c0d5b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74644cb2f3fd48bfb706327d56c0d5b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74644cb2f3fd48bfb706327d56c0d5b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74644cb2f3fd48bfb706327d56c0d5b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74644cb2f3fd48bfb706327d56c0d5b3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X1WNhPHD50HpilRCNhX2-d6wZCU=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.096878+00 2025-12-09 10:14:52.096882+00 6510 JT0165-A2#RC23 SPMX-20240815301660 \N \N \N 1 \N [{"file_id": "ed6b95ac-d9db-4e41-a95d-4ca6f71bc2d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6ee1b16e25c443f9dc95a8aa105d1e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6ee1b16e25c443f9dc95a8aa105d1e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6ee1b16e25c443f9dc95a8aa105d1e6.jpg", "file_size": 15160, "is_delete": false, "file_type": 1, "original_file_name": "JT0165-A2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ee1b16e25c443f9dc95a8aa105d1e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ee1b16e25c443f9dc95a8aa105d1e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ee1b16e25c443f9dc95a8aa105d1e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6ee1b16e25c443f9dc95a8aa105d1e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6ee1b16e25c443f9dc95a8aa105d1e6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2dq-J5kJa7830abcOmorKCe3Zo=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.098215+00 2025-12-09 10:14:52.09822+00 6511 HT005FW#墨绿 SPMX-20240815301651 \N \N \N 1 \N [{"file_id": "85bd67b6-c53e-4c07-b3c6-0630d3206b08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6bc5878cfdb476198ab99f744566ec6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6bc5878cfdb476198ab99f744566ec6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6bc5878cfdb476198ab99f744566ec6.jpg", "file_size": 14839, "is_delete": false, "file_type": 1, "original_file_name": "HT005FW#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6bc5878cfdb476198ab99f744566ec6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6bc5878cfdb476198ab99f744566ec6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6bc5878cfdb476198ab99f744566ec6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6bc5878cfdb476198ab99f744566ec6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6bc5878cfdb476198ab99f744566ec6.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNlLaE8hgbLmlOAyHd5Salw4DEo=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.099535+00 2025-12-09 10:14:52.099539+00 6512 23-2103#A13前后片3XL SPMX-20240815301656 \N \N \N 1 \N [{"file_id": "3ec099f3-0f17-4645-bc95-81d429fff160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f9c5dc6b1e440aea0ae211433c4bcf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f9c5dc6b1e440aea0ae211433c4bcf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f9c5dc6b1e440aea0ae211433c4bcf3.jpg", "file_size": 11323, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A13前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c5dc6b1e440aea0ae211433c4bcf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c5dc6b1e440aea0ae211433c4bcf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c5dc6b1e440aea0ae211433c4bcf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f9c5dc6b1e440aea0ae211433c4bcf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f9c5dc6b1e440aea0ae211433c4bcf3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhJK1vwxPkpZx7PNnqMxxJDMNIY=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.100871+00 2025-12-09 10:14:52.100875+00 6513 LHJ9332#25号土黄 SPMX-20240815301654 \N \N \N 1 \N [{"file_id": "e9b5ac10-ebe0-4fe3-812d-6da9f6a164ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc1d6167810f463ca9f8b844b5a40301.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc1d6167810f463ca9f8b844b5a40301.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc1d6167810f463ca9f8b844b5a40301.jpg", "file_size": 15205, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1d6167810f463ca9f8b844b5a40301.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1d6167810f463ca9f8b844b5a40301.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1d6167810f463ca9f8b844b5a40301.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc1d6167810f463ca9f8b844b5a40301.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc1d6167810f463ca9f8b844b5a40301.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdPQQ8V5indAui2zD-XUN_XJzYg=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.10222+00 2025-12-09 10:14:52.102224+00 6514 LZ122FWF#3号色短袖 SPMX-20240815301663 \N \N \N 1 \N [{"file_id": "cfdc739f-6c49-45b2-8b2d-3bdecf9996c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5222ca3c504746748b1018325d2d1a4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5222ca3c504746748b1018325d2d1a4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5222ca3c504746748b1018325d2d1a4c.jpg", "file_size": 19188, "is_delete": false, "file_type": 1, "original_file_name": "LZ122FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5222ca3c504746748b1018325d2d1a4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5222ca3c504746748b1018325d2d1a4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5222ca3c504746748b1018325d2d1a4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5222ca3c504746748b1018325d2d1a4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5222ca3c504746748b1018325d2d1a4c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ssolR9dM4vXDecaiHtIscipib_o=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.103545+00 2025-12-09 10:14:52.10355+00 6515 FHXGPK-053-5 SPMX-20240815301657 \N \N \N 1 \N [{"file_id": "c0ff4252-0e82-43b4-9737-21bf3be31d17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93aa07e988b7474ab54e5115efdb8027.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93aa07e988b7474ab54e5115efdb8027.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93aa07e988b7474ab54e5115efdb8027.jpg", "file_size": 32792, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-053-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93aa07e988b7474ab54e5115efdb8027.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93aa07e988b7474ab54e5115efdb8027.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93aa07e988b7474ab54e5115efdb8027.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93aa07e988b7474ab54e5115efdb8027.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93aa07e988b7474ab54e5115efdb8027.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uc9KxB7BquMHZVUU4cHX1LI3ak=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.104865+00 2025-12-09 10:14:52.104869+00 6516 FHXGPK-054-1 SPMX-20240815301668 \N \N \N 1 \N [{"file_id": "8eb54551-1d36-4ba4-9e6c-a4c6e28e0799", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6a7bc5abbce47409d90dc9a4a0f3f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6a7bc5abbce47409d90dc9a4a0f3f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6a7bc5abbce47409d90dc9a4a0f3f87.jpg", "file_size": 26073, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-054-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7bc5abbce47409d90dc9a4a0f3f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7bc5abbce47409d90dc9a4a0f3f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7bc5abbce47409d90dc9a4a0f3f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6a7bc5abbce47409d90dc9a4a0f3f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6a7bc5abbce47409d90dc9a4a0f3f87.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OR8nW8PiboPDyOv31sX-rnxKNd8=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.106217+00 2025-12-09 10:14:52.106222+00 6517 LHJ9332#25土黄 SPMX-20240815301666 \N \N \N 1 \N [{"file_id": "9c96635b-8e16-4b6c-befb-8a53bf23972c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f643871b46614555b1289a69a11726a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f643871b46614555b1289a69a11726a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f643871b46614555b1289a69a11726a0.jpg", "file_size": 14986, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#25土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f643871b46614555b1289a69a11726a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f643871b46614555b1289a69a11726a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f643871b46614555b1289a69a11726a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f643871b46614555b1289a69a11726a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f643871b46614555b1289a69a11726a0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ioxXfiYZnJ3aWBSKQ0lQTC4I8xw=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.107566+00 2025-12-09 10:14:52.10757+00 6518 JT028# SPMX-20240815301669 \N \N \N 1 \N [{"file_id": "453b42b8-7e2e-4a5b-9f0c-14029ace1420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d07c65b4ea684a118f6f7d80f2a6cd3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d07c65b4ea684a118f6f7d80f2a6cd3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d07c65b4ea684a118f6f7d80f2a6cd3d.jpg", "file_size": 11519, "is_delete": false, "file_type": 1, "original_file_name": "JT028#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c65b4ea684a118f6f7d80f2a6cd3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c65b4ea684a118f6f7d80f2a6cd3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c65b4ea684a118f6f7d80f2a6cd3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d07c65b4ea684a118f6f7d80f2a6cd3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d07c65b4ea684a118f6f7d80f2a6cd3d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7c2ModyvfEasESgAAvZxWZrWtw=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.108917+00 2025-12-09 10:14:52.108921+00 6519 23-2103#A13前后片4XL SPMX-20240815301667 \N \N \N 1 \N [{"file_id": "9fc32827-c4a1-4a75-ae03-96500e64e320", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe9a98f9ffa940369385459aee49f359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe9a98f9ffa940369385459aee49f359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe9a98f9ffa940369385459aee49f359.jpg", "file_size": 11499, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A13前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9a98f9ffa940369385459aee49f359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9a98f9ffa940369385459aee49f359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9a98f9ffa940369385459aee49f359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe9a98f9ffa940369385459aee49f359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe9a98f9ffa940369385459aee49f359.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b6gHrtdcVp3uYuym4IFcOP79nzM=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.110228+00 2025-12-09 10:14:52.110232+00 6520 DH687#蓝色S SPMX-20240815301671 \N \N \N 1 \N [{"file_id": "1fc04454-5f44-42a6-bb67-4203bab1cd5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e09fd227cf484dbeec56de3d43d8d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e09fd227cf484dbeec56de3d43d8d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e09fd227cf484dbeec56de3d43d8d1.jpg", "file_size": 83077, "is_delete": false, "file_type": 1, "original_file_name": "DH687#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09fd227cf484dbeec56de3d43d8d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09fd227cf484dbeec56de3d43d8d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09fd227cf484dbeec56de3d43d8d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e09fd227cf484dbeec56de3d43d8d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e09fd227cf484dbeec56de3d43d8d1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eKhfv9QHf3bPD9igg1M5DeczEXM=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.123574+00 2025-12-09 10:14:52.123578+00 6530 DH687#蓝色XL SPMX-20240815301680 \N \N \N 1 \N [{"file_id": "659db47b-3601-41e6-9b43-af5cc22136dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0be430cfad814e6892399e69ac968e8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0be430cfad814e6892399e69ac968e8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0be430cfad814e6892399e69ac968e8c.jpg", "file_size": 70818, "is_delete": false, "file_type": 1, "original_file_name": "DH687#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0be430cfad814e6892399e69ac968e8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0be430cfad814e6892399e69ac968e8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0be430cfad814e6892399e69ac968e8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0be430cfad814e6892399e69ac968e8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0be430cfad814e6892399e69ac968e8c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMJCOhZACZRiyzfAUjyUZQzDbrY=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.111565+00 2025-12-09 10:14:52.111569+00 6521 0003-22FWF#上身乱花-番禺调色 SPMX-20240815301664 \N \N \N 1 \N [{"file_id": "db6156d5-75af-46bf-8429-66a49cf600ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10414b4bd54a4a2497770493df524041.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10414b4bd54a4a2497770493df524041.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10414b4bd54a4a2497770493df524041.jpg", "file_size": 20433, "is_delete": false, "file_type": 1, "original_file_name": "0003-22FWF#上身乱花-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10414b4bd54a4a2497770493df524041.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10414b4bd54a4a2497770493df524041.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10414b4bd54a4a2497770493df524041.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10414b4bd54a4a2497770493df524041.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10414b4bd54a4a2497770493df524041.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hwq7MkU-Pcx7IGfVUXcl1LekyNg=", "createTime": "2024-08-15 14:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.11289+00 2025-12-09 10:14:52.112894+00 6522 8013FWF#童10+童12+童8 SPMX-20240815301670 \N \N \N 1 \N [{"file_id": "f38fa975-b797-415f-9246-bc5b0e302397", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fecd351b8e44ee882b804e2a9c6e19d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fecd351b8e44ee882b804e2a9c6e19d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fecd351b8e44ee882b804e2a9c6e19d.jpg", "file_size": 10677, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童10+童12+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fecd351b8e44ee882b804e2a9c6e19d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fecd351b8e44ee882b804e2a9c6e19d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fecd351b8e44ee882b804e2a9c6e19d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fecd351b8e44ee882b804e2a9c6e19d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fecd351b8e44ee882b804e2a9c6e19d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Ka3HW0MOCRa1khFSmtdKR4taKc=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.114229+00 2025-12-09 10:14:52.114233+00 6523 C280#墨绿 SPMX-20240815301665 \N \N \N 1 \N [{"file_id": "4a83b75f-04d2-47de-829b-498fc10da0e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d272827d5449319efe8fb0b3945313.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d272827d5449319efe8fb0b3945313.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d272827d5449319efe8fb0b3945313.jpg", "file_size": 20098, "is_delete": false, "file_type": 1, "original_file_name": "C280#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d272827d5449319efe8fb0b3945313.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d272827d5449319efe8fb0b3945313.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d272827d5449319efe8fb0b3945313.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d272827d5449319efe8fb0b3945313.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d272827d5449319efe8fb0b3945313.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-TIRpXKzkAGL6N0w8gqr34v4e4E=", "createTime": "2024-08-15 14:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.115586+00 2025-12-09 10:14:52.115591+00 6524 LZ122FWF#4号色短袖 SPMX-20240815301674 \N \N \N 1 \N [{"file_id": "8f2308e0-867b-436f-a067-9454f6423b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33cc6477a66c49acaac14095472e2514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33cc6477a66c49acaac14095472e2514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33cc6477a66c49acaac14095472e2514.jpg", "file_size": 18834, "is_delete": false, "file_type": 1, "original_file_name": "LZ122FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cc6477a66c49acaac14095472e2514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cc6477a66c49acaac14095472e2514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cc6477a66c49acaac14095472e2514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33cc6477a66c49acaac14095472e2514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33cc6477a66c49acaac14095472e2514.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_bNbBpJzj2CGJeCM0DGJJ-yw5c=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.116913+00 2025-12-09 10:14:52.116917+00 6525 0003-22FWF#上身乱花 SPMX-20240815301673 \N \N \N 1 \N [{"file_id": "9cabe540-1576-4169-9b07-9df5643527f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7586778d787948c19f40ac296763957a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7586778d787948c19f40ac296763957a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7586778d787948c19f40ac296763957a.jpg", "file_size": 18615, "is_delete": false, "file_type": 1, "original_file_name": "0003-22FWF#上身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7586778d787948c19f40ac296763957a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7586778d787948c19f40ac296763957a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7586778d787948c19f40ac296763957a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7586778d787948c19f40ac296763957a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7586778d787948c19f40ac296763957a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_yRZjiEHrh8nPIhoXWnvj6KKGc=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.118262+00 2025-12-09 10:14:52.118266+00 6526 C280#杏色 SPMX-20240815301676 \N \N \N 1 \N [{"file_id": "32716050-8bb8-4485-a325-1ea607382ca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5702299962b74fdfb370c4ccc5467db2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5702299962b74fdfb370c4ccc5467db2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5702299962b74fdfb370c4ccc5467db2.jpg", "file_size": 42288, "is_delete": false, "file_type": 1, "original_file_name": "C280#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5702299962b74fdfb370c4ccc5467db2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5702299962b74fdfb370c4ccc5467db2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5702299962b74fdfb370c4ccc5467db2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5702299962b74fdfb370c4ccc5467db2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5702299962b74fdfb370c4ccc5467db2.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YI5FbdjnqD9qe1yD21Xbz4C9NY4=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.119589+00 2025-12-09 10:14:52.119593+00 6527 HT005FW#橙 SPMX-20240815301675 \N \N \N 1 \N [{"file_id": "ad34969f-470d-40a7-9501-e6c5cc04a1dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d065a6f396a4183aa02d260c6164cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d065a6f396a4183aa02d260c6164cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d065a6f396a4183aa02d260c6164cde.jpg", "file_size": 13795, "is_delete": false, "file_type": 1, "original_file_name": "HT005FW#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d065a6f396a4183aa02d260c6164cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d065a6f396a4183aa02d260c6164cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d065a6f396a4183aa02d260c6164cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d065a6f396a4183aa02d260c6164cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d065a6f396a4183aa02d260c6164cde.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOdOUWbPezDufN_iA6S7itvFanc=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.120922+00 2025-12-09 10:14:52.120926+00 6528 105A紫色 SPMX-20240815301672 \N \N \N 1 \N [{"file_id": "e31e5c32-436f-4e30-a942-a8318fb2fdf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05f90182c80c4a0ab8b2c69e34155f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05f90182c80c4a0ab8b2c69e34155f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05f90182c80c4a0ab8b2c69e34155f59.jpg", "file_size": 60707, "is_delete": false, "file_type": 1, "original_file_name": "105A紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f90182c80c4a0ab8b2c69e34155f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f90182c80c4a0ab8b2c69e34155f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05f90182c80c4a0ab8b2c69e34155f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05f90182c80c4a0ab8b2c69e34155f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05f90182c80c4a0ab8b2c69e34155f59.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0bE3W0seIYC0h1tcF_cLSLTzKU=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.122243+00 2025-12-09 10:14:52.122247+00 6529 105A绿色 SPMX-20240815301683 \N \N \N 1 \N [{"file_id": "92b3d3a6-5b04-42af-90fa-9c071f5b2f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196a1207135d4357826e15bfb1793f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196a1207135d4357826e15bfb1793f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196a1207135d4357826e15bfb1793f8e.jpg", "file_size": 59062, "is_delete": false, "file_type": 1, "original_file_name": "105A绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196a1207135d4357826e15bfb1793f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196a1207135d4357826e15bfb1793f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196a1207135d4357826e15bfb1793f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196a1207135d4357826e15bfb1793f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196a1207135d4357826e15bfb1793f8e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tncTBLhUYVyxrDH4fv8NImV1dk4=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.124904+00 2025-12-09 10:14:52.124909+00 6531 FHXGPK-054-2 SPMX-20240815301681 \N \N \N 1 \N [{"file_id": "9fd49ecd-ab3a-42eb-bc30-4a57affea2a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e936d9ef9664752821392b98c7de8d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e936d9ef9664752821392b98c7de8d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e936d9ef9664752821392b98c7de8d0.jpg", "file_size": 30825, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-054-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e936d9ef9664752821392b98c7de8d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e936d9ef9664752821392b98c7de8d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e936d9ef9664752821392b98c7de8d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e936d9ef9664752821392b98c7de8d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e936d9ef9664752821392b98c7de8d0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngqQO2xiMNeQntDNRAVWX0w2OwM=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.126247+00 2025-12-09 10:14:52.126251+00 6532 JT0606#LWQ15 SPMX-20240815301682 \N \N \N 1 \N [{"file_id": "ef318b86-f244-4f17-99e6-2ec024821987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45a249b5019a4136b0acc8af972f00ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45a249b5019a4136b0acc8af972f00ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45a249b5019a4136b0acc8af972f00ef.jpg", "file_size": 13579, "is_delete": false, "file_type": 1, "original_file_name": "JT0606#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a249b5019a4136b0acc8af972f00ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a249b5019a4136b0acc8af972f00ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a249b5019a4136b0acc8af972f00ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45a249b5019a4136b0acc8af972f00ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45a249b5019a4136b0acc8af972f00ef.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PL6wAYIGVZIivMI0DvZ6KhLndbI=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.127565+00 2025-12-09 10:14:52.127569+00 6533 0003-22FWF#下摆单边定位 SPMX-20240815301684 \N \N \N 1 \N [{"file_id": "a2166ef1-eea4-4e3b-abd9-c0de06838958", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40e2cec2e3bc4b5cb8999bfe1def9234.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40e2cec2e3bc4b5cb8999bfe1def9234.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40e2cec2e3bc4b5cb8999bfe1def9234.jpg", "file_size": 12522, "is_delete": false, "file_type": 1, "original_file_name": "0003-22FWF#下摆单边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e2cec2e3bc4b5cb8999bfe1def9234.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e2cec2e3bc4b5cb8999bfe1def9234.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e2cec2e3bc4b5cb8999bfe1def9234.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40e2cec2e3bc4b5cb8999bfe1def9234.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40e2cec2e3bc4b5cb8999bfe1def9234.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQCeYNg2NVVO-zp7R4CgIc8-Nfw=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.128886+00 2025-12-09 10:14:52.12889+00 6534 LZ122FWF#5号色短袖 SPMX-20240815301685 \N \N \N 1 \N [{"file_id": "1180f0b7-c4e9-43a1-b44a-5c1390b99c58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4c90b9731534658aec77411a969c647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4c90b9731534658aec77411a969c647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4c90b9731534658aec77411a969c647.jpg", "file_size": 19798, "is_delete": false, "file_type": 1, "original_file_name": "LZ122FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c90b9731534658aec77411a969c647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c90b9731534658aec77411a969c647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c90b9731534658aec77411a969c647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4c90b9731534658aec77411a969c647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4c90b9731534658aec77411a969c647.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuPZuLzvXYF486OBzRCsVfavaxw=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.130195+00 2025-12-09 10:14:52.1302+00 6535 23-2103#A13袖子3XL SPMX-20240815301678 \N \N \N 1 \N [{"file_id": "e8865cdf-ef8c-47b0-9ac1-81930c50c4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87542afcafef4077abcc4159a8a683a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87542afcafef4077abcc4159a8a683a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87542afcafef4077abcc4159a8a683a0.jpg", "file_size": 10648, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A13袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87542afcafef4077abcc4159a8a683a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87542afcafef4077abcc4159a8a683a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87542afcafef4077abcc4159a8a683a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87542afcafef4077abcc4159a8a683a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87542afcafef4077abcc4159a8a683a0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1rZhqjCPhiTTihI-e0WJACtr2M=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.131544+00 2025-12-09 10:14:52.131548+00 6536 8013FWF#童10+童3 SPMX-20240815301679 \N \N \N 1 \N [{"file_id": "c5bb6545-ee98-4137-9d46-fded75f330be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d295620cb03846bf814ad8b806ee8457.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d295620cb03846bf814ad8b806ee8457.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d295620cb03846bf814ad8b806ee8457.jpg", "file_size": 13592, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童10+童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d295620cb03846bf814ad8b806ee8457.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d295620cb03846bf814ad8b806ee8457.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d295620cb03846bf814ad8b806ee8457.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d295620cb03846bf814ad8b806ee8457.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d295620cb03846bf814ad8b806ee8457.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfYWB-xvn-BWwWo3x12gzIGqM8w=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.132866+00 2025-12-09 10:14:52.13287+00 6537 LHJ9332#37号玫红 SPMX-20240815301677 \N \N \N 1 \N [{"file_id": "dcb6a74d-daef-4cac-9a2e-e18bc7a0cef6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf436ba841d94a84a9298575d8e016f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf436ba841d94a84a9298575d8e016f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf436ba841d94a84a9298575d8e016f5.jpg", "file_size": 14397, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#37号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf436ba841d94a84a9298575d8e016f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf436ba841d94a84a9298575d8e016f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf436ba841d94a84a9298575d8e016f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf436ba841d94a84a9298575d8e016f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf436ba841d94a84a9298575d8e016f5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Up2Q22iHXz6CdSwH9L6Iz-qFaLY=", "createTime": "2024-08-15 14:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.134187+00 2025-12-09 10:14:52.134191+00 6538 JT9072-R#L SPMX-20240815301693 \N \N \N 1 \N [{"file_id": "ec972410-6006-47c7-b2cf-65e79d01f493", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b35e6a5479d4a3fab6dbaef12956505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b35e6a5479d4a3fab6dbaef12956505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b35e6a5479d4a3fab6dbaef12956505.jpg", "file_size": 15914, "is_delete": false, "file_type": 1, "original_file_name": "JT9072-R#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b35e6a5479d4a3fab6dbaef12956505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b35e6a5479d4a3fab6dbaef12956505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b35e6a5479d4a3fab6dbaef12956505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b35e6a5479d4a3fab6dbaef12956505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b35e6a5479d4a3fab6dbaef12956505.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2Fj6zbYnuy-B_h3CXjncoWpL3E=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.135741+00 2025-12-09 10:14:52.135746+00 6539 23-2103#A13袖子4XL SPMX-20240815301688 \N \N \N 1 \N [{"file_id": "b9740b47-484a-4f32-8f3d-bcb0afca3160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a96d361c3a482d9126b9073692d81c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a96d361c3a482d9126b9073692d81c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a96d361c3a482d9126b9073692d81c.jpg", "file_size": 9606, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A13袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a96d361c3a482d9126b9073692d81c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a96d361c3a482d9126b9073692d81c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a96d361c3a482d9126b9073692d81c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a96d361c3a482d9126b9073692d81c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a96d361c3a482d9126b9073692d81c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YLGOMhb-y2FSJvYyUR0hILP4xuQ=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.137298+00 2025-12-09 10:14:52.137302+00 6540 DH687#青色2XL SPMX-20240815301691 \N \N \N 1 \N [{"file_id": "7cea5465-4acc-4e8d-9a38-7e9cbd0d28ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52b4a39c7816439e9fc6e0cca356c2ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52b4a39c7816439e9fc6e0cca356c2ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52b4a39c7816439e9fc6e0cca356c2ed.jpg", "file_size": 66201, "is_delete": false, "file_type": 1, "original_file_name": "DH687#青色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b4a39c7816439e9fc6e0cca356c2ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b4a39c7816439e9fc6e0cca356c2ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b4a39c7816439e9fc6e0cca356c2ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52b4a39c7816439e9fc6e0cca356c2ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52b4a39c7816439e9fc6e0cca356c2ed.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlyBAASeY6MTDZPlsCUXbNSs69Y=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.138845+00 2025-12-09 10:14:52.13885+00 6541 C280#白底绿字 SPMX-20240815301697 \N \N \N 1 \N [{"file_id": "ebc25da4-d737-4e06-9a50-cc8840046fa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5324a86d397d4f4eb8b2e0d08170a2fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5324a86d397d4f4eb8b2e0d08170a2fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5324a86d397d4f4eb8b2e0d08170a2fc.jpg", "file_size": 19756, "is_delete": false, "file_type": 1, "original_file_name": "C280#白底绿字.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324a86d397d4f4eb8b2e0d08170a2fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324a86d397d4f4eb8b2e0d08170a2fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324a86d397d4f4eb8b2e0d08170a2fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5324a86d397d4f4eb8b2e0d08170a2fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5324a86d397d4f4eb8b2e0d08170a2fc.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qeT6xO7bU_NOFCKu5vWOZVIlbw=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.140382+00 2025-12-09 10:14:52.140386+00 6542 105A蓝色 SPMX-20240815301695 \N \N \N 1 \N [{"file_id": "4f167cc4-550e-4b28-a2bd-76995cb80e6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff880bfb15014755b07a68a461d25a62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff880bfb15014755b07a68a461d25a62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff880bfb15014755b07a68a461d25a62.jpg", "file_size": 60602, "is_delete": false, "file_type": 1, "original_file_name": "105A蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff880bfb15014755b07a68a461d25a62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff880bfb15014755b07a68a461d25a62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff880bfb15014755b07a68a461d25a62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff880bfb15014755b07a68a461d25a62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff880bfb15014755b07a68a461d25a62.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q6nF713zkJ6aYlOQWwnVADnfwis=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.14194+00 2025-12-09 10:14:52.141945+00 6543 C280#玫红 SPMX-20240815301687 \N \N \N 1 \N [{"file_id": "cecd32fb-dee6-4b3b-9f7e-fccf4192df0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bf63063caf64c89bc18d515078e3f46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bf63063caf64c89bc18d515078e3f46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bf63063caf64c89bc18d515078e3f46.jpg", "file_size": 16963, "is_delete": false, "file_type": 1, "original_file_name": "C280#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf63063caf64c89bc18d515078e3f46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf63063caf64c89bc18d515078e3f46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bf63063caf64c89bc18d515078e3f46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bf63063caf64c89bc18d515078e3f46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bf63063caf64c89bc18d515078e3f46.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NoozCOHxm5ORBOAKlanuVzU8yKM=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.143475+00 2025-12-09 10:14:52.143479+00 6544 0003-22FWF#领子花 SPMX-20240815301694 \N \N \N 1 \N [{"file_id": "c6f5e3b0-8d06-496f-bed4-4a93320393be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30879427d0ac449c8a09f0043c304fea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30879427d0ac449c8a09f0043c304fea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30879427d0ac449c8a09f0043c304fea.jpg", "file_size": 16170, "is_delete": false, "file_type": 1, "original_file_name": "0003-22FWF#领子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30879427d0ac449c8a09f0043c304fea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30879427d0ac449c8a09f0043c304fea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30879427d0ac449c8a09f0043c304fea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30879427d0ac449c8a09f0043c304fea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30879427d0ac449c8a09f0043c304fea.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zPokpI5nKngbauDiFcibLtdFJYU=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.145031+00 2025-12-09 10:14:52.145036+00 6545 HT005FW#白 SPMX-20240815301686 \N \N \N 1 \N [{"file_id": "92622a44-4ae7-4144-b23a-7096d8cc02c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28249e07938c4392b4a455e70c8064d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28249e07938c4392b4a455e70c8064d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28249e07938c4392b4a455e70c8064d8.jpg", "file_size": 9505, "is_delete": false, "file_type": 1, "original_file_name": "HT005FW#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28249e07938c4392b4a455e70c8064d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28249e07938c4392b4a455e70c8064d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28249e07938c4392b4a455e70c8064d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28249e07938c4392b4a455e70c8064d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28249e07938c4392b4a455e70c8064d8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLC1qF_KMBP3VYke59F2GKy3TkI=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.146551+00 2025-12-09 10:14:52.146555+00 6546 LHJ9332#37玫红 SPMX-20240815301689 \N \N \N 1 \N [{"file_id": "e4a0e5df-e973-4f94-8d10-a65fcc6effae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c5033263cf438caa0ce9265cba86fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c5033263cf438caa0ce9265cba86fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c5033263cf438caa0ce9265cba86fa.jpg", "file_size": 14467, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#37玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c5033263cf438caa0ce9265cba86fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c5033263cf438caa0ce9265cba86fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c5033263cf438caa0ce9265cba86fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c5033263cf438caa0ce9265cba86fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c5033263cf438caa0ce9265cba86fa.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wmszGaCFxZAk5Ow3ZWQdpoEaPE=", "createTime": "2024-08-15 14:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.148051+00 2025-12-09 10:14:52.148055+00 6547 FHXGPK-054-3 SPMX-20240815301692 \N \N \N 1 \N [{"file_id": "05a1ecb0-3e51-488f-a633-27297707be14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5847cd236d88411f83bff7e64e55a30d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5847cd236d88411f83bff7e64e55a30d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5847cd236d88411f83bff7e64e55a30d.jpg", "file_size": 27860, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-054-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5847cd236d88411f83bff7e64e55a30d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5847cd236d88411f83bff7e64e55a30d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5847cd236d88411f83bff7e64e55a30d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5847cd236d88411f83bff7e64e55a30d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5847cd236d88411f83bff7e64e55a30d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BerS9Uds3lYB4Wfxnqece94Mebg=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.149423+00 2025-12-09 10:14:52.149427+00 6548 8013FWF#童10+童5 SPMX-20240815301690 \N \N \N 1 \N [{"file_id": "0392fa65-5e9c-4569-83d6-e82464a3af2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6875ba4200aa4b7886fd4a9c56112b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6875ba4200aa4b7886fd4a9c56112b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6875ba4200aa4b7886fd4a9c56112b9e.jpg", "file_size": 13026, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童10+童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875ba4200aa4b7886fd4a9c56112b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875ba4200aa4b7886fd4a9c56112b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875ba4200aa4b7886fd4a9c56112b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6875ba4200aa4b7886fd4a9c56112b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6875ba4200aa4b7886fd4a9c56112b9e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xR6jF_JrfVaPxhQvyJApSwi85dY=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.150793+00 2025-12-09 10:14:52.150798+00 6549 HT005FWE#绿VS-D3 SPMX-20240815301696 \N \N \N 1 \N [{"file_id": "5811996f-7917-4c02-bbc8-c96a8642f2d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfef259e1bd747089b9bb0d4fc24d6e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfef259e1bd747089b9bb0d4fc24d6e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfef259e1bd747089b9bb0d4fc24d6e8.jpg", "file_size": 15021, "is_delete": false, "file_type": 1, "original_file_name": "HT005FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfef259e1bd747089b9bb0d4fc24d6e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfef259e1bd747089b9bb0d4fc24d6e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfef259e1bd747089b9bb0d4fc24d6e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfef259e1bd747089b9bb0d4fc24d6e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfef259e1bd747089b9bb0d4fc24d6e8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oa48p9FsBjVEC64bW4EQMEaMTro=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.152137+00 2025-12-09 10:14:52.152142+00 6550 8013FWF#童10 SPMX-20240815301700 \N \N \N 1 \N [{"file_id": "27d7db5f-add9-4d9d-bf32-9ea18cd4f841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a82fad1d6a84f469e477bd40e72c46f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a82fad1d6a84f469e477bd40e72c46f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a82fad1d6a84f469e477bd40e72c46f.jpg", "file_size": 13510, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82fad1d6a84f469e477bd40e72c46f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82fad1d6a84f469e477bd40e72c46f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82fad1d6a84f469e477bd40e72c46f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a82fad1d6a84f469e477bd40e72c46f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a82fad1d6a84f469e477bd40e72c46f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nlh6uRnChMo6jUYEYo8y3PHG14Q=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.153461+00 2025-12-09 10:14:52.153465+00 6551 DH687#青色L SPMX-20240815301701 \N \N \N 1 \N [{"file_id": "c8e0d386-fa16-41b2-a4d1-3dc9b4c6283b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e7a02a3a9c0483294aa51cde9156aab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e7a02a3a9c0483294aa51cde9156aab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e7a02a3a9c0483294aa51cde9156aab.jpg", "file_size": 70840, "is_delete": false, "file_type": 1, "original_file_name": "DH687#青色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7a02a3a9c0483294aa51cde9156aab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7a02a3a9c0483294aa51cde9156aab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7a02a3a9c0483294aa51cde9156aab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e7a02a3a9c0483294aa51cde9156aab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e7a02a3a9c0483294aa51cde9156aab.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jn437CHZWQHQ7nyNFhz9E_M8Y1s=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.16017+00 2025-12-09 10:14:52.160174+00 6556 JT9072-R#M SPMX-20240815301707 \N \N \N 1 \N [{"file_id": "dbdd3bb9-3121-4c3e-b35b-a4bb02d3185c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8457c63e6704acc864c5ea688b601f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8457c63e6704acc864c5ea688b601f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8457c63e6704acc864c5ea688b601f2.jpg", "file_size": 12233, "is_delete": false, "file_type": 1, "original_file_name": "JT9072-R#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8457c63e6704acc864c5ea688b601f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8457c63e6704acc864c5ea688b601f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8457c63e6704acc864c5ea688b601f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8457c63e6704acc864c5ea688b601f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8457c63e6704acc864c5ea688b601f2.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Evpwa39cnoiLd5-AKRcV0WnchUQ=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.15482+00 2025-12-09 10:14:52.154824+00 6552 LZ1230#童装T2号色 SPMX-20240815301699 \N \N \N 1 \N [{"file_id": "39705faf-a2e8-454a-9b39-9d84880f49b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a87bf40b02154041a322b8b5a3133435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a87bf40b02154041a322b8b5a3133435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a87bf40b02154041a322b8b5a3133435.jpg", "file_size": 18733, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87bf40b02154041a322b8b5a3133435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87bf40b02154041a322b8b5a3133435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87bf40b02154041a322b8b5a3133435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a87bf40b02154041a322b8b5a3133435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a87bf40b02154041a322b8b5a3133435.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOZesRY5IC1kQbzqBeOEmdOx-Kg=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.156157+00 2025-12-09 10:14:52.156161+00 6553 0003-23FWF#V5曲线 SPMX-20240815301714 \N \N \N 1 \N [{"file_id": "5e06c2a1-df39-406e-828d-f5de6a345805", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26e773e24a354340bea6f9505c3b364e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26e773e24a354340bea6f9505c3b364e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26e773e24a354340bea6f9505c3b364e.jpg", "file_size": 18221, "is_delete": false, "file_type": 1, "original_file_name": "0003-23FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e773e24a354340bea6f9505c3b364e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e773e24a354340bea6f9505c3b364e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e773e24a354340bea6f9505c3b364e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26e773e24a354340bea6f9505c3b364e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26e773e24a354340bea6f9505c3b364e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TkK0ruFpsrfgk3UNBmQYk4dXFNY=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.157506+00 2025-12-09 10:14:52.15751+00 6554 LHJ9332#5号彩兰 SPMX-20240815301698 \N \N \N 1 \N [{"file_id": "64509351-d500-441c-a951-a18222ba2658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fa528ec61694776942dbc01c51d6baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fa528ec61694776942dbc01c51d6baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fa528ec61694776942dbc01c51d6baa.jpg", "file_size": 14389, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#5号彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa528ec61694776942dbc01c51d6baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa528ec61694776942dbc01c51d6baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa528ec61694776942dbc01c51d6baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fa528ec61694776942dbc01c51d6baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fa528ec61694776942dbc01c51d6baa.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTqC4brGBVKLY6gtDooh5wnX3d8=", "createTime": "2024-08-15 14:43:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.158828+00 2025-12-09 10:14:52.158832+00 6555 HT006#咖啡VS-D3 SPMX-20240815301706 \N \N \N 1 \N [{"file_id": "729c20b0-9994-44c9-b6a0-cfca88813029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdf8f0486b7444c7a599c4f4c6d42226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdf8f0486b7444c7a599c4f4c6d42226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdf8f0486b7444c7a599c4f4c6d42226.jpg", "file_size": 15222, "is_delete": false, "file_type": 1, "original_file_name": "HT006#咖啡VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf8f0486b7444c7a599c4f4c6d42226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf8f0486b7444c7a599c4f4c6d42226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdf8f0486b7444c7a599c4f4c6d42226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdf8f0486b7444c7a599c4f4c6d42226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdf8f0486b7444c7a599c4f4c6d42226.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qfDiHBp-va_y6N6KAjverJdnpM=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.1615+00 2025-12-09 10:14:52.161505+00 6557 23-2103#A13领子通用 SPMX-20240815301702 \N \N \N 1 \N [{"file_id": "0fa27b8f-2f6a-4a36-8433-b945db40bf8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9399b877035b4a8b8283af39473bb709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9399b877035b4a8b8283af39473bb709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9399b877035b4a8b8283af39473bb709.jpg", "file_size": 10329, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A13领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9399b877035b4a8b8283af39473bb709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9399b877035b4a8b8283af39473bb709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9399b877035b4a8b8283af39473bb709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9399b877035b4a8b8283af39473bb709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9399b877035b4a8b8283af39473bb709.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6w6d9cWxs2r4T4q6kBzvCpyfzp4=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.162859+00 2025-12-09 10:14:52.162863+00 6558 LZ1230#童装T上身1号色 SPMX-20240815301712 \N \N \N 1 \N [{"file_id": "ebc6b218-ca4b-47e9-a6e7-5c484165abf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7213187d1dc4784a83191c42c0efb13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7213187d1dc4784a83191c42c0efb13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7213187d1dc4784a83191c42c0efb13.jpg", "file_size": 21121, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7213187d1dc4784a83191c42c0efb13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7213187d1dc4784a83191c42c0efb13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7213187d1dc4784a83191c42c0efb13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7213187d1dc4784a83191c42c0efb13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7213187d1dc4784a83191c42c0efb13.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C_WXmsv4Zqgbz8DrpxVwsD2DJag=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.164195+00 2025-12-09 10:14:52.164199+00 6559 FHXGPK-054-4 SPMX-20240815301704 \N \N \N 1 \N [{"file_id": "b301269c-b5ee-444e-8d9e-0ba9121c2ea3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e595ea319bac4342a6540df8f2f7d6a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e595ea319bac4342a6540df8f2f7d6a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e595ea319bac4342a6540df8f2f7d6a8.jpg", "file_size": 30642, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-054-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e595ea319bac4342a6540df8f2f7d6a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e595ea319bac4342a6540df8f2f7d6a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e595ea319bac4342a6540df8f2f7d6a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e595ea319bac4342a6540df8f2f7d6a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e595ea319bac4342a6540df8f2f7d6a8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FD8PVqX-NFcuv7RhGC8LgeBXuJo=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.165528+00 2025-12-09 10:14:52.165531+00 6560 105A黄色 SPMX-20240815301705 \N \N \N 1 \N [{"file_id": "d672d237-b291-4945-9163-5f2a4eb5f7dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9adf2e5e1db44c091128bff46f7c869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9adf2e5e1db44c091128bff46f7c869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9adf2e5e1db44c091128bff46f7c869.jpg", "file_size": 60733, "is_delete": false, "file_type": 1, "original_file_name": "105A黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf2e5e1db44c091128bff46f7c869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf2e5e1db44c091128bff46f7c869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf2e5e1db44c091128bff46f7c869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9adf2e5e1db44c091128bff46f7c869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9adf2e5e1db44c091128bff46f7c869.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppsIU9s7KoKZfHQnUQTats-jltA=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.166884+00 2025-12-09 10:14:52.166888+00 6561 LHJ9332#5彩兰 SPMX-20240815301710 \N \N \N 1 \N [{"file_id": "2e646ef5-4417-45d0-9af3-f49222d952fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc0cea05e9c045d2b56baab46438098c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc0cea05e9c045d2b56baab46438098c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc0cea05e9c045d2b56baab46438098c.jpg", "file_size": 14778, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#5彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0cea05e9c045d2b56baab46438098c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0cea05e9c045d2b56baab46438098c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0cea05e9c045d2b56baab46438098c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc0cea05e9c045d2b56baab46438098c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc0cea05e9c045d2b56baab46438098c.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZA_HgdpyU7wBugmOlmkOO58EQTU=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.16823+00 2025-12-09 10:14:52.168234+00 6562 C280#白底黑字 SPMX-20240815301708 \N \N \N 1 \N [{"file_id": "6af2211c-b98e-4702-99b4-55788e3e08bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dd2e7e743b64e00b478b9cce83ff880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dd2e7e743b64e00b478b9cce83ff880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dd2e7e743b64e00b478b9cce83ff880.jpg", "file_size": 19444, "is_delete": false, "file_type": 1, "original_file_name": "C280#白底黑字.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd2e7e743b64e00b478b9cce83ff880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd2e7e743b64e00b478b9cce83ff880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd2e7e743b64e00b478b9cce83ff880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dd2e7e743b64e00b478b9cce83ff880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dd2e7e743b64e00b478b9cce83ff880.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GsPnQ59d1tjWnEfEQuFX_UkRnGU=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.169568+00 2025-12-09 10:14:52.169572+00 6563 DH687#青色M SPMX-20240815301711 \N \N \N 1 \N [{"file_id": "b122ee14-0c8e-4401-b91e-33c941604792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba1ac572e37e429d85ac451b998aa84b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba1ac572e37e429d85ac451b998aa84b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba1ac572e37e429d85ac451b998aa84b.jpg", "file_size": 75595, "is_delete": false, "file_type": 1, "original_file_name": "DH687#青色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ac572e37e429d85ac451b998aa84b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ac572e37e429d85ac451b998aa84b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ac572e37e429d85ac451b998aa84b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba1ac572e37e429d85ac451b998aa84b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba1ac572e37e429d85ac451b998aa84b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGeqa7v7dkppS7ilO7XpumS_zcE=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.170906+00 2025-12-09 10:14:52.170911+00 6564 0003-23FWE#VS-D3 SPMX-20240815301703 \N \N \N 1 \N [{"file_id": "6219540d-5183-4d08-8e70-a468e7717310", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b41ea60f5f884453966bd7314360e0bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b41ea60f5f884453966bd7314360e0bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b41ea60f5f884453966bd7314360e0bc.jpg", "file_size": 18093, "is_delete": false, "file_type": 1, "original_file_name": "0003-23FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41ea60f5f884453966bd7314360e0bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41ea60f5f884453966bd7314360e0bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b41ea60f5f884453966bd7314360e0bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b41ea60f5f884453966bd7314360e0bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b41ea60f5f884453966bd7314360e0bc.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jMEayTwQ_D2Aztu2YflaTKvW69o=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.172215+00 2025-12-09 10:14:52.17222+00 6565 8013FWF#童10T+童3T SPMX-20240815301709 \N \N \N 1 \N [{"file_id": "2700c503-07e3-4025-a6ea-75c786ff270f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad610f72df814a08a5f4eaa402a0b284.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad610f72df814a08a5f4eaa402a0b284.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad610f72df814a08a5f4eaa402a0b284.jpg", "file_size": 13706, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童10T+童3T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad610f72df814a08a5f4eaa402a0b284.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad610f72df814a08a5f4eaa402a0b284.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad610f72df814a08a5f4eaa402a0b284.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad610f72df814a08a5f4eaa402a0b284.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad610f72df814a08a5f4eaa402a0b284.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkNZkoD9h13X4aBottxnDn3XLY8=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.17374+00 2025-12-09 10:14:52.173745+00 6566 23-2103#A1前后片3XL SPMX-20240815301713 \N \N \N 1 \N [{"file_id": "7a8f4c25-7375-48e8-a73e-e96ffb68dbc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc3ecea1a72147a0ad96ab456be7c3c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc3ecea1a72147a0ad96ab456be7c3c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc3ecea1a72147a0ad96ab456be7c3c3.jpg", "file_size": 10522, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3ecea1a72147a0ad96ab456be7c3c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3ecea1a72147a0ad96ab456be7c3c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3ecea1a72147a0ad96ab456be7c3c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc3ecea1a72147a0ad96ab456be7c3c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc3ecea1a72147a0ad96ab456be7c3c3.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLjy3QBnA2JMcwkXN53ds9VFB98=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.17527+00 2025-12-09 10:14:52.175275+00 6567 C280#红色 SPMX-20240815301719 \N \N \N 1 \N [{"file_id": "72232b26-417b-4a60-9f80-0c5900c40f35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad5fd28e266445188699b8828231c1bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad5fd28e266445188699b8828231c1bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad5fd28e266445188699b8828231c1bd.jpg", "file_size": 46721, "is_delete": false, "file_type": 1, "original_file_name": "C280#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fd28e266445188699b8828231c1bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fd28e266445188699b8828231c1bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fd28e266445188699b8828231c1bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad5fd28e266445188699b8828231c1bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad5fd28e266445188699b8828231c1bd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Al4Ut5BwNRfNI3Tz_Z3cfsf4KaM=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.176676+00 2025-12-09 10:14:52.17668+00 6568 106#+106-1#-003-6#橙色 SPMX-20240815301717 \N \N \N 1 \N [{"file_id": "c17f2a59-e0be-4295-86b8-b9b21272315a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f067cb5132c845ffaa48e08def8c8a7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f067cb5132c845ffaa48e08def8c8a7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f067cb5132c845ffaa48e08def8c8a7d.jpg", "file_size": 67467, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f067cb5132c845ffaa48e08def8c8a7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f067cb5132c845ffaa48e08def8c8a7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f067cb5132c845ffaa48e08def8c8a7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f067cb5132c845ffaa48e08def8c8a7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f067cb5132c845ffaa48e08def8c8a7d.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBaApD-RoF1UAYE5a_YWZtDfSBk=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.178118+00 2025-12-09 10:14:52.178123+00 6569 8013FWF#童12+童3 SPMX-20240815301720 \N \N \N 1 \N [{"file_id": "2d8fac75-965f-4608-bde0-c78c2c842657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93d5970a4bc64498b290e20172945a10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93d5970a4bc64498b290e20172945a10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93d5970a4bc64498b290e20172945a10.jpg", "file_size": 13655, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童12+童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93d5970a4bc64498b290e20172945a10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93d5970a4bc64498b290e20172945a10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93d5970a4bc64498b290e20172945a10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93d5970a4bc64498b290e20172945a10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93d5970a4bc64498b290e20172945a10.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJ1JMXfGSd2Hd5rxC3PAB6U1Peo=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.179522+00 2025-12-09 10:14:52.179526+00 6570 LHJ9332#64号粉色 SPMX-20240815301722 \N \N \N 1 \N [{"file_id": "0ce81693-a631-4d25-88b2-33b830119b05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7da1a58050a04162a105d8b2ba46d194.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7da1a58050a04162a105d8b2ba46d194.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7da1a58050a04162a105d8b2ba46d194.jpg", "file_size": 14660, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#64号粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da1a58050a04162a105d8b2ba46d194.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da1a58050a04162a105d8b2ba46d194.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da1a58050a04162a105d8b2ba46d194.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7da1a58050a04162a105d8b2ba46d194.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7da1a58050a04162a105d8b2ba46d194.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OHgTiOc6dZ9UTx-3QSopNbYkx8=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.180915+00 2025-12-09 10:14:52.18092+00 6571 DH687#青色S SPMX-20240815301725 \N \N \N 1 \N [{"file_id": "13157d9a-5b78-405e-925f-9acdd178369a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae83dd66a1324fd9a4dd19749c30e298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae83dd66a1324fd9a4dd19749c30e298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae83dd66a1324fd9a4dd19749c30e298.jpg", "file_size": 78976, "is_delete": false, "file_type": 1, "original_file_name": "DH687#青色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae83dd66a1324fd9a4dd19749c30e298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae83dd66a1324fd9a4dd19749c30e298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae83dd66a1324fd9a4dd19749c30e298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae83dd66a1324fd9a4dd19749c30e298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae83dd66a1324fd9a4dd19749c30e298.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIscMjNv-5w2GUMX6SNtbNoSevg=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.182273+00 2025-12-09 10:14:52.182277+00 6572 FHXGPK-055-1 SPMX-20240815301726 \N \N \N 1 \N [{"file_id": "797a1c3c-33d0-4c9f-8ac2-d600dedeba75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "863c76d56fe14a45a689b4d3385dd6ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "863c76d56fe14a45a689b4d3385dd6ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "863c76d56fe14a45a689b4d3385dd6ee.jpg", "file_size": 25954, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-055-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863c76d56fe14a45a689b4d3385dd6ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863c76d56fe14a45a689b4d3385dd6ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863c76d56fe14a45a689b4d3385dd6ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/863c76d56fe14a45a689b4d3385dd6ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/863c76d56fe14a45a689b4d3385dd6ee.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0F3pUWIIJs_cXOnzAhXqVntKRCE=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.183595+00 2025-12-09 10:14:52.183599+00 6573 FHXGPK-054-5 SPMX-20240815301715 \N \N \N 1 \N [{"file_id": "98b7d98d-1a61-48cc-abd8-1d617c2799ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8d154d6a7324e39b5e47396a5c60a03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8d154d6a7324e39b5e47396a5c60a03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8d154d6a7324e39b5e47396a5c60a03.jpg", "file_size": 28313, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-054-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d154d6a7324e39b5e47396a5c60a03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d154d6a7324e39b5e47396a5c60a03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d154d6a7324e39b5e47396a5c60a03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8d154d6a7324e39b5e47396a5c60a03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8d154d6a7324e39b5e47396a5c60a03.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zEGKAtqtDKXalgX6aFThErxJ-d4=", "createTime": "2024-08-15 14:43:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.18513+00 2025-12-09 10:14:52.185135+00 6574 0003-24FWE#VS-D3 SPMX-20240815301723 \N \N \N 1 \N [{"file_id": "ebf8a79b-004a-41c5-8816-90ec9ec8a4f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ccddee5e2e842f38c256d22f9ff148e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ccddee5e2e842f38c256d22f9ff148e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ccddee5e2e842f38c256d22f9ff148e.jpg", "file_size": 8248, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccddee5e2e842f38c256d22f9ff148e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccddee5e2e842f38c256d22f9ff148e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccddee5e2e842f38c256d22f9ff148e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ccddee5e2e842f38c256d22f9ff148e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ccddee5e2e842f38c256d22f9ff148e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:brAGnZhDo7kRb2gdVKxKkK_aanY=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.186655+00 2025-12-09 10:14:52.186659+00 6575 JT9072-R#S SPMX-20240815301718 \N \N \N 1 \N [{"file_id": "2a423896-18ba-46ae-ab1a-5a7226ca76ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4cc977fbbcf4d16b4fa943bac482ea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4cc977fbbcf4d16b4fa943bac482ea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4cc977fbbcf4d16b4fa943bac482ea0.jpg", "file_size": 12224, "is_delete": false, "file_type": 1, "original_file_name": "JT9072-R#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cc977fbbcf4d16b4fa943bac482ea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cc977fbbcf4d16b4fa943bac482ea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cc977fbbcf4d16b4fa943bac482ea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4cc977fbbcf4d16b4fa943bac482ea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4cc977fbbcf4d16b4fa943bac482ea0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4bG5ouaA80AUpmeSzDYLYCHC7U=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.188181+00 2025-12-09 10:14:52.188185+00 6576 23-2103#A1前后片4XL SPMX-20240815301724 \N \N \N 1 \N [{"file_id": "b74cfb22-0ea9-4058-8c1b-bd3844e00f6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8132701486fe4842840bc2afb095fc61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8132701486fe4842840bc2afb095fc61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8132701486fe4842840bc2afb095fc61.jpg", "file_size": 11210, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8132701486fe4842840bc2afb095fc61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8132701486fe4842840bc2afb095fc61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8132701486fe4842840bc2afb095fc61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8132701486fe4842840bc2afb095fc61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8132701486fe4842840bc2afb095fc61.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PX6mh-TCHo-6vtMGnSYwaWIY47Y=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.189695+00 2025-12-09 10:14:52.1897+00 6577 LZ1230#童装T上身2号色 SPMX-20240815301721 \N \N \N 1 \N [{"file_id": "1c386072-dc7f-4bf0-8610-312e00fea955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb1a035ace1e434f99724441ea45fd8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb1a035ace1e434f99724441ea45fd8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb1a035ace1e434f99724441ea45fd8b.jpg", "file_size": 19304, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1a035ace1e434f99724441ea45fd8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1a035ace1e434f99724441ea45fd8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1a035ace1e434f99724441ea45fd8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb1a035ace1e434f99724441ea45fd8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb1a035ace1e434f99724441ea45fd8b.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gX6cK8U6DDC7Cymi7C3Yuv1jl0s=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.19135+00 2025-12-09 10:14:52.191355+00 6578 HT006FW#原版色 SPMX-20240815301727 \N \N \N 1 \N [{"file_id": "91bdb52b-8cd8-4e2c-aa34-2ff21ab027bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ede1747339ac4fe7b413bc9c9ff8085f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ede1747339ac4fe7b413bc9c9ff8085f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ede1747339ac4fe7b413bc9c9ff8085f.jpg", "file_size": 13217, "is_delete": false, "file_type": 1, "original_file_name": "HT006FW#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede1747339ac4fe7b413bc9c9ff8085f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede1747339ac4fe7b413bc9c9ff8085f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede1747339ac4fe7b413bc9c9ff8085f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ede1747339ac4fe7b413bc9c9ff8085f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ede1747339ac4fe7b413bc9c9ff8085f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3BGH2rww7u7xC_LwDGOYw_HCag=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.192909+00 2025-12-09 10:14:52.192914+00 6579 HT006#杏VS-D3 SPMX-20240815301716 \N \N \N 1 \N [{"file_id": "5aecb978-3a12-40db-a9d3-87348df1656a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6611ada5eb464da9e3e221933165d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6611ada5eb464da9e3e221933165d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6611ada5eb464da9e3e221933165d9.jpg", "file_size": 17466, "is_delete": false, "file_type": 1, "original_file_name": "HT006#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6611ada5eb464da9e3e221933165d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6611ada5eb464da9e3e221933165d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6611ada5eb464da9e3e221933165d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6611ada5eb464da9e3e221933165d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6611ada5eb464da9e3e221933165d9.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDP9HxhVkEkG-Yd8y4OXuFvlRrc=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.194444+00 2025-12-09 10:14:52.194449+00 6580 C280#绿色 SPMX-20240815301731 \N \N \N 1 \N [{"file_id": "f9475e04-e26d-435e-a403-5c652f41ff0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60bc7a5a588f4fec85ba6c8db452ad23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60bc7a5a588f4fec85ba6c8db452ad23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60bc7a5a588f4fec85ba6c8db452ad23.jpg", "file_size": 42197, "is_delete": false, "file_type": 1, "original_file_name": "C280#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bc7a5a588f4fec85ba6c8db452ad23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bc7a5a588f4fec85ba6c8db452ad23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bc7a5a588f4fec85ba6c8db452ad23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60bc7a5a588f4fec85ba6c8db452ad23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60bc7a5a588f4fec85ba6c8db452ad23.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9EGS3DnvoLD0mWmf0dKHtKsBCFI=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.196267+00 2025-12-09 10:14:52.196271+00 6581 LHJ9332#7号天蓝 SPMX-20240815301735 \N \N \N 1 \N [{"file_id": "d2f29868-b2b4-4309-aedf-d493241c3fe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b83ffd5a26c9468795b28dc4ffb8153e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b83ffd5a26c9468795b28dc4ffb8153e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b83ffd5a26c9468795b28dc4ffb8153e.jpg", "file_size": 14303, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9332#7号天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83ffd5a26c9468795b28dc4ffb8153e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83ffd5a26c9468795b28dc4ffb8153e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83ffd5a26c9468795b28dc4ffb8153e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b83ffd5a26c9468795b28dc4ffb8153e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b83ffd5a26c9468795b28dc4ffb8153e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpHoDdAA2sFzRCPFKJP_RQaOLWo=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.203902+00 2025-12-09 10:14:52.203907+00 6586 HT006FW#宝蓝 SPMX-20240815301736 \N \N \N 1 \N [{"file_id": "efd70619-5ccb-47ff-bc7b-57bf899a891e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f5b8ee3f86c4a4dbf978169b695dd97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f5b8ee3f86c4a4dbf978169b695dd97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f5b8ee3f86c4a4dbf978169b695dd97.jpg", "file_size": 16268, "is_delete": false, "file_type": 1, "original_file_name": "HT006FW#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f5b8ee3f86c4a4dbf978169b695dd97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f5b8ee3f86c4a4dbf978169b695dd97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f5b8ee3f86c4a4dbf978169b695dd97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f5b8ee3f86c4a4dbf978169b695dd97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f5b8ee3f86c4a4dbf978169b695dd97.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KlXsby90b5L8tlBbDEMnxj4eX4=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.197798+00 2025-12-09 10:14:52.197803+00 6582 LZ1230#童装T上身4号色 SPMX-20240815301743 \N \N \N 1 \N [{"file_id": "4477ce8c-5f6d-4b1c-89c8-f76ec24aface", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56a12c78e88447f690811a536ee217d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56a12c78e88447f690811a536ee217d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56a12c78e88447f690811a536ee217d5.jpg", "file_size": 20570, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12c78e88447f690811a536ee217d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12c78e88447f690811a536ee217d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12c78e88447f690811a536ee217d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56a12c78e88447f690811a536ee217d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56a12c78e88447f690811a536ee217d5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_OJybetX8gyQvT1na_BYgO7Vuo=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.199333+00 2025-12-09 10:14:52.199337+00 6583 8013FWF#童12 SPMX-20240815301730 \N \N \N 1 \N [{"file_id": "5a8eef4e-c647-4a04-8fd9-910e80b3644e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87907400e7a743ac951bab09eb1d78af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87907400e7a743ac951bab09eb1d78af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87907400e7a743ac951bab09eb1d78af.jpg", "file_size": 13420, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87907400e7a743ac951bab09eb1d78af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87907400e7a743ac951bab09eb1d78af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87907400e7a743ac951bab09eb1d78af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87907400e7a743ac951bab09eb1d78af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87907400e7a743ac951bab09eb1d78af.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7msATp9KrowxsvspdxnhEjTZddA=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.200859+00 2025-12-09 10:14:52.200864+00 6584 C280#黑色 SPMX-20240815301742 \N \N \N 1 \N [{"file_id": "4045c2fd-f1d6-490f-9641-d7c5c5949f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd3cbfa7f18a43b7be55c26899e40403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd3cbfa7f18a43b7be55c26899e40403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd3cbfa7f18a43b7be55c26899e40403.jpg", "file_size": 19291, "is_delete": false, "file_type": 1, "original_file_name": "C280#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3cbfa7f18a43b7be55c26899e40403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3cbfa7f18a43b7be55c26899e40403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3cbfa7f18a43b7be55c26899e40403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd3cbfa7f18a43b7be55c26899e40403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd3cbfa7f18a43b7be55c26899e40403.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qcCkP7h45ZolDINkEPR1Qr271I=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.202378+00 2025-12-09 10:14:52.202382+00 6585 LZ1230#童装T上身3号色 SPMX-20240815301732 \N \N \N 1 \N [{"file_id": "e701bfe8-44a9-41ad-aafb-984aab8268a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76fd0eaf3fe84540b8a0206c73f4592a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76fd0eaf3fe84540b8a0206c73f4592a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76fd0eaf3fe84540b8a0206c73f4592a.jpg", "file_size": 18842, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fd0eaf3fe84540b8a0206c73f4592a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fd0eaf3fe84540b8a0206c73f4592a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fd0eaf3fe84540b8a0206c73f4592a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76fd0eaf3fe84540b8a0206c73f4592a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76fd0eaf3fe84540b8a0206c73f4592a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSVZsJoZF1rbp_huQtRPufSgJ04=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.205415+00 2025-12-09 10:14:52.20542+00 6587 DH687#青色XL SPMX-20240815301739 \N \N \N 1 \N [{"file_id": "8aa652a4-af05-415d-b5c7-0aaaaefda470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c93a168c7f3949b1986ec7bca7ed00b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c93a168c7f3949b1986ec7bca7ed00b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c93a168c7f3949b1986ec7bca7ed00b9.jpg", "file_size": 65565, "is_delete": false, "file_type": 1, "original_file_name": "DH687#青色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93a168c7f3949b1986ec7bca7ed00b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93a168c7f3949b1986ec7bca7ed00b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93a168c7f3949b1986ec7bca7ed00b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c93a168c7f3949b1986ec7bca7ed00b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c93a168c7f3949b1986ec7bca7ed00b9.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xQj4wtElF3TajTVkpwb_ADI4VQ=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.206981+00 2025-12-09 10:14:52.206986+00 6588 JT9088-1#双层四面弹版本 SPMX-20240815301741 \N \N \N 1 \N [{"file_id": "d1f25154-6175-4fb7-bd72-49e75dc325c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1973619907c4883953d90d7d5dff8ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1973619907c4883953d90d7d5dff8ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1973619907c4883953d90d7d5dff8ef.jpg", "file_size": 18850, "is_delete": false, "file_type": 1, "original_file_name": "JT9088-1#双层四面弹版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1973619907c4883953d90d7d5dff8ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1973619907c4883953d90d7d5dff8ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1973619907c4883953d90d7d5dff8ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1973619907c4883953d90d7d5dff8ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1973619907c4883953d90d7d5dff8ef.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-wxqzCkhKngoMqes5-Jk-DBa7M=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.2085+00 2025-12-09 10:14:52.208505+00 6589 23-2103#A1袖子3XL SPMX-20240815301734 \N \N \N 1 \N [{"file_id": "6ae510b5-4ed5-468d-a585-6ee3f9ac308e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5874b926ea6c4d559147c8f8adbdafcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5874b926ea6c4d559147c8f8adbdafcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5874b926ea6c4d559147c8f8adbdafcf.jpg", "file_size": 9928, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A1袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5874b926ea6c4d559147c8f8adbdafcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5874b926ea6c4d559147c8f8adbdafcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5874b926ea6c4d559147c8f8adbdafcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5874b926ea6c4d559147c8f8adbdafcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5874b926ea6c4d559147c8f8adbdafcf.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkxvsayZiflOilZ7v4qyvI3HDu4=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.210027+00 2025-12-09 10:14:52.210032+00 6590 JT9088#酷丝棉版本 SPMX-20240815301729 \N \N \N 1 \N [{"file_id": "fe32160d-5e6a-48a3-9698-5947d780b324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61c2fd82f5c44ad5afa7984c6d113404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61c2fd82f5c44ad5afa7984c6d113404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61c2fd82f5c44ad5afa7984c6d113404.jpg", "file_size": 18339, "is_delete": false, "file_type": 1, "original_file_name": "JT9088#酷丝棉版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c2fd82f5c44ad5afa7984c6d113404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c2fd82f5c44ad5afa7984c6d113404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c2fd82f5c44ad5afa7984c6d113404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61c2fd82f5c44ad5afa7984c6d113404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61c2fd82f5c44ad5afa7984c6d113404.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBOMUeQhnEa2fRhpwLORaf1EYA4=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.211538+00 2025-12-09 10:14:52.211543+00 6591 FHXGPK-055-2 SPMX-20240815301737 \N \N \N 1 \N [{"file_id": "07ae9e44-b0a9-4f33-b402-296659c8fad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17bc686ac5d84bcdb996caa56d6c4862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17bc686ac5d84bcdb996caa56d6c4862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17bc686ac5d84bcdb996caa56d6c4862.jpg", "file_size": 26942, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-055-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17bc686ac5d84bcdb996caa56d6c4862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17bc686ac5d84bcdb996caa56d6c4862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17bc686ac5d84bcdb996caa56d6c4862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17bc686ac5d84bcdb996caa56d6c4862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17bc686ac5d84bcdb996caa56d6c4862.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJzQSU0EJQ7j8ixeF7QWwijidMM=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.213358+00 2025-12-09 10:14:52.213363+00 6592 106#+106-1#-003-6#玫红色 SPMX-20240815301728 \N \N \N 1 \N [{"file_id": "35558796-c39c-483f-ac67-0834b64fe89b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8d01890258b4c52ac812e6252e6fbcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8d01890258b4c52ac812e6252e6fbcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8d01890258b4c52ac812e6252e6fbcd.jpg", "file_size": 63855, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d01890258b4c52ac812e6252e6fbcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d01890258b4c52ac812e6252e6fbcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d01890258b4c52ac812e6252e6fbcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8d01890258b4c52ac812e6252e6fbcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8d01890258b4c52ac812e6252e6fbcd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnYyW4G0QyNUgTeUmwCxQY3nSEI=", "createTime": "2024-08-15 14:43:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.214892+00 2025-12-09 10:14:52.214897+00 6593 0003-24FWE#VS-D3番禺调色 SPMX-20240815301733 \N \N \N 1 \N [{"file_id": "5b916be1-d06e-43a6-bbe7-cfc2c8cf8182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ac0db85c78e457da666b6949f17559a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ac0db85c78e457da666b6949f17559a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ac0db85c78e457da666b6949f17559a.jpg", "file_size": 9361, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac0db85c78e457da666b6949f17559a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac0db85c78e457da666b6949f17559a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac0db85c78e457da666b6949f17559a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ac0db85c78e457da666b6949f17559a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ac0db85c78e457da666b6949f17559a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0pOfCmMggmvHfGqmx7gDTWbCx_Q=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.216412+00 2025-12-09 10:14:52.216417+00 6594 106#+106-1#-003-6#紫色 SPMX-20240815301738 \N \N \N 1 \N [{"file_id": "b4d90606-bd0c-4c54-bd87-4f28b2ac1610", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "231ab28559e940fd917e2cd6c2b0993f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "231ab28559e940fd917e2cd6c2b0993f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "231ab28559e940fd917e2cd6c2b0993f.jpg", "file_size": 66435, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231ab28559e940fd917e2cd6c2b0993f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231ab28559e940fd917e2cd6c2b0993f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231ab28559e940fd917e2cd6c2b0993f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/231ab28559e940fd917e2cd6c2b0993f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/231ab28559e940fd917e2cd6c2b0993f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lu00SyfCtQWXH2gB2Ts4jc2jd70=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.217936+00 2025-12-09 10:14:52.217941+00 6595 8013FWF#童12T+童3T SPMX-20240815301740 \N \N \N 1 \N [{"file_id": "7133d697-13a1-43c7-910c-a90658e6466a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccb2cfa3416745b9ac6c795a8d7e5259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccb2cfa3416745b9ac6c795a8d7e5259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccb2cfa3416745b9ac6c795a8d7e5259.jpg", "file_size": 13785, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童12T+童3T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb2cfa3416745b9ac6c795a8d7e5259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb2cfa3416745b9ac6c795a8d7e5259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb2cfa3416745b9ac6c795a8d7e5259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccb2cfa3416745b9ac6c795a8d7e5259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccb2cfa3416745b9ac6c795a8d7e5259.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ci6N8YrQ81KULJKUN-VcKAd21ZU=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.219475+00 2025-12-09 10:14:52.219479+00 6596 LHJ9334#118号蓝 SPMX-20240815301746 \N \N \N 1 \N [{"file_id": "ac99d1d8-1686-4931-a762-7316f3c40490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adea46076ca14b64967c825ba9105bac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adea46076ca14b64967c825ba9105bac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adea46076ca14b64967c825ba9105bac.jpg", "file_size": 17870, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#118号蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adea46076ca14b64967c825ba9105bac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adea46076ca14b64967c825ba9105bac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adea46076ca14b64967c825ba9105bac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adea46076ca14b64967c825ba9105bac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adea46076ca14b64967c825ba9105bac.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztWR6nA2M4qLcHYv_Igq0RRwfok=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.221011+00 2025-12-09 10:14:52.221016+00 6597 0003-24FWE#原版色白底黑 SPMX-20240815301744 \N \N \N 1 \N [{"file_id": "bd43c90a-f118-4bec-ae74-0c6001a6ce74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0689a0db9d8a491dacfb2925ea3d24fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0689a0db9d8a491dacfb2925ea3d24fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0689a0db9d8a491dacfb2925ea3d24fd.jpg", "file_size": 14876, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#原版色白底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0689a0db9d8a491dacfb2925ea3d24fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0689a0db9d8a491dacfb2925ea3d24fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0689a0db9d8a491dacfb2925ea3d24fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0689a0db9d8a491dacfb2925ea3d24fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0689a0db9d8a491dacfb2925ea3d24fd.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9C9alq7Wrvk7VGf7_qrNw6QeQQ=", "createTime": "2024-08-15 14:43:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.222535+00 2025-12-09 10:14:52.22254+00 6598 23-2103#A1袖子4XL SPMX-20240815301745 \N \N \N 1 \N [{"file_id": "585c1a41-4916-43a1-8ee5-4a40cce8d44d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3801e07e55a474b93ec08fea9b4970e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3801e07e55a474b93ec08fea9b4970e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3801e07e55a474b93ec08fea9b4970e.jpg", "file_size": 10135, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A1袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3801e07e55a474b93ec08fea9b4970e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3801e07e55a474b93ec08fea9b4970e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3801e07e55a474b93ec08fea9b4970e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3801e07e55a474b93ec08fea9b4970e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3801e07e55a474b93ec08fea9b4970e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00AB2SlKHvfK3GddboQhNfYNOf8=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.224062+00 2025-12-09 10:14:52.224067+00 6599 JT9089#L SPMX-20240815301751 \N \N \N 1 \N [{"file_id": "1da576b5-b37c-46b3-b704-39aa56565d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1651f87571934e949ac188ec7737a5d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1651f87571934e949ac188ec7737a5d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1651f87571934e949ac188ec7737a5d8.jpg", "file_size": 13471, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1651f87571934e949ac188ec7737a5d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1651f87571934e949ac188ec7737a5d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1651f87571934e949ac188ec7737a5d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1651f87571934e949ac188ec7737a5d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1651f87571934e949ac188ec7737a5d8.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuZO2QSWR9MePzsxTbD5Fp2ygQg=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.225596+00 2025-12-09 10:14:52.225601+00 6600 LHJ9334#20号枣红 SPMX-20240815301756 \N \N \N 1 \N [{"file_id": "20173810-000f-44d9-bba8-10004009f0df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "054de1cbf2a7445dbac116e2fd4c8f82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "054de1cbf2a7445dbac116e2fd4c8f82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "054de1cbf2a7445dbac116e2fd4c8f82.jpg", "file_size": 20118, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#20号枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054de1cbf2a7445dbac116e2fd4c8f82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054de1cbf2a7445dbac116e2fd4c8f82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054de1cbf2a7445dbac116e2fd4c8f82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/054de1cbf2a7445dbac116e2fd4c8f82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/054de1cbf2a7445dbac116e2fd4c8f82.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vhry2jli68NPpGaJbMtuSDiZDnM=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.22712+00 2025-12-09 10:14:52.227124+00 6601 106#+106-1#-003-6#红色 SPMX-20240815301747 \N \N \N 1 \N [{"file_id": "b07ed246-a5db-46d1-803f-dc347e290a44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d4e2ace586415ca3cc2a92bf96cb5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d4e2ace586415ca3cc2a92bf96cb5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d4e2ace586415ca3cc2a92bf96cb5a.jpg", "file_size": 64892, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d4e2ace586415ca3cc2a92bf96cb5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d4e2ace586415ca3cc2a92bf96cb5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d4e2ace586415ca3cc2a92bf96cb5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d4e2ace586415ca3cc2a92bf96cb5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d4e2ace586415ca3cc2a92bf96cb5a.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiYYS5XL8jNPZkZijxAE8iKMOEg=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.228629+00 2025-12-09 10:14:52.228633+00 6602 0003-24FWE#白底宝蓝 SPMX-20240815301753 \N \N \N 1 \N [{"file_id": "16a24e6d-511b-4b27-85c6-478781a4fed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25c81b29910f479c8a788baa7d55a65e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25c81b29910f479c8a788baa7d55a65e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25c81b29910f479c8a788baa7d55a65e.jpg", "file_size": 14451, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#白底宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c81b29910f479c8a788baa7d55a65e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c81b29910f479c8a788baa7d55a65e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c81b29910f479c8a788baa7d55a65e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25c81b29910f479c8a788baa7d55a65e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25c81b29910f479c8a788baa7d55a65e.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbkSuVm6TpQIx2Qx0D3lUeXTUyU=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.230139+00 2025-12-09 10:14:52.230143+00 6603 DH9-9#1X SPMX-20240815301749 \N \N \N 1 \N [{"file_id": "3470ed9b-1b03-4ef3-ac07-7cfe60e7e092", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cdd7138261843878800b630919b0ca5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cdd7138261843878800b630919b0ca5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cdd7138261843878800b630919b0ca5.jpg", "file_size": 50571, "is_delete": false, "file_type": 1, "original_file_name": "DH9-9#1X.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdd7138261843878800b630919b0ca5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdd7138261843878800b630919b0ca5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdd7138261843878800b630919b0ca5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cdd7138261843878800b630919b0ca5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cdd7138261843878800b630919b0ca5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnIyAESk_EeL6wYe11n2emLE0KA=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.231663+00 2025-12-09 10:14:52.231667+00 6604 HT006FW#橙 SPMX-20240815301748 \N \N \N 1 \N [{"file_id": "74a634a9-03df-41f5-a240-5355fe9b3b40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49f30e052ba040639c863e3702fd1bc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49f30e052ba040639c863e3702fd1bc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49f30e052ba040639c863e3702fd1bc0.jpg", "file_size": 15279, "is_delete": false, "file_type": 1, "original_file_name": "HT006FW#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f30e052ba040639c863e3702fd1bc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f30e052ba040639c863e3702fd1bc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f30e052ba040639c863e3702fd1bc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49f30e052ba040639c863e3702fd1bc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49f30e052ba040639c863e3702fd1bc0.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFujRRu0dBLqZ1d8vpzEy7vZGGo=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.233174+00 2025-12-09 10:14:52.233179+00 6605 LZ1230#童装T上身5号色 SPMX-20240815301755 \N \N \N 1 \N [{"file_id": "76a6d9da-1c39-4248-915e-2d3b455fcf2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2392b3f4f7734ffc80cd1bcc85c3c63f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2392b3f4f7734ffc80cd1bcc85c3c63f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2392b3f4f7734ffc80cd1bcc85c3c63f.jpg", "file_size": 20454, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2392b3f4f7734ffc80cd1bcc85c3c63f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2392b3f4f7734ffc80cd1bcc85c3c63f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2392b3f4f7734ffc80cd1bcc85c3c63f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2392b3f4f7734ffc80cd1bcc85c3c63f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2392b3f4f7734ffc80cd1bcc85c3c63f.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:atkkfbZdzzsG0Kj8lOHHJa2ySTo=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.234745+00 2025-12-09 10:14:52.234749+00 6606 23-2103#A1领子通用 SPMX-20240815301757 \N \N \N 1 \N [{"file_id": "e451fa06-dce7-4dae-95d8-e97ccbed17eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a5046ec8dfb447f9e49e405271718df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a5046ec8dfb447f9e49e405271718df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a5046ec8dfb447f9e49e405271718df.jpg", "file_size": 9749, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5046ec8dfb447f9e49e405271718df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5046ec8dfb447f9e49e405271718df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5046ec8dfb447f9e49e405271718df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a5046ec8dfb447f9e49e405271718df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a5046ec8dfb447f9e49e405271718df.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikw5RLxHtWZKLwDQWUBkgfnqnOI=", "createTime": "2024-08-15 14:44:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.236276+00 2025-12-09 10:14:52.236281+00 6607 8013FWF#童14 SPMX-20240815301754 \N \N \N 1 \N [{"file_id": "82da6205-326f-4367-a8d0-e1cd70dc4f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21a168ab7d1f403580e183e9009445c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21a168ab7d1f403580e183e9009445c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21a168ab7d1f403580e183e9009445c1.jpg", "file_size": 11577, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a168ab7d1f403580e183e9009445c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a168ab7d1f403580e183e9009445c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a168ab7d1f403580e183e9009445c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21a168ab7d1f403580e183e9009445c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21a168ab7d1f403580e183e9009445c1.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1irE0Ydfu5lFNgPMhqd9Z6fYU0=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.237817+00 2025-12-09 10:14:52.237822+00 6608 C281#原版色 SPMX-20240815301752 \N \N \N 1 \N [{"file_id": "73434f37-a5b9-4f81-a74a-f336a3e624ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8ec639ad784cba906d995155632da5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8ec639ad784cba906d995155632da5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8ec639ad784cba906d995155632da5.jpg", "file_size": 21524, "is_delete": false, "file_type": 1, "original_file_name": "C281#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ec639ad784cba906d995155632da5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ec639ad784cba906d995155632da5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ec639ad784cba906d995155632da5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8ec639ad784cba906d995155632da5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8ec639ad784cba906d995155632da5.jpg?e=1765361691&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fh59pcRdOy5-phQmennviFnExok=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.90237+00 2025-12-09 10:14:52.90238+00 6609 FHXGPK-055-3 SPMX-20240815301750 \N \N \N 1 \N [{"file_id": "471dfc7b-7df6-4596-a8d1-0fd3520acb30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eabc91f8e2d4cf98fa44fac6247ac83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eabc91f8e2d4cf98fa44fac6247ac83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eabc91f8e2d4cf98fa44fac6247ac83.jpg", "file_size": 23323, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-055-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eabc91f8e2d4cf98fa44fac6247ac83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eabc91f8e2d4cf98fa44fac6247ac83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eabc91f8e2d4cf98fa44fac6247ac83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eabc91f8e2d4cf98fa44fac6247ac83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eabc91f8e2d4cf98fa44fac6247ac83.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4wGStHtPFPcPSNIoASwLCiXtPM=", "createTime": "2024-08-15 14:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.904636+00 2025-12-09 10:14:52.904641+00 6610 106#+106-1#-003-6#绿色 SPMX-20240815301758 \N \N \N 1 \N [{"file_id": "51f2b7e0-1eef-4a37-8469-66173f373c2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0f85e32c3824a4fb489c076091accd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0f85e32c3824a4fb489c076091accd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0f85e32c3824a4fb489c076091accd6.jpg", "file_size": 62869, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f85e32c3824a4fb489c076091accd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f85e32c3824a4fb489c076091accd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f85e32c3824a4fb489c076091accd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0f85e32c3824a4fb489c076091accd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0f85e32c3824a4fb489c076091accd6.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKuAPpWEGL4c2pZCo--YQbT5hFw=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.906201+00 2025-12-09 10:14:52.906207+00 6611 LZ1230#童装T下身1号色 SPMX-20240815301764 \N \N \N 1 \N [{"file_id": "16b3a6f5-82c1-4757-b14b-119b0ae82391", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46a3e5d227b44592ac417d0f6f89f08c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46a3e5d227b44592ac417d0f6f89f08c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46a3e5d227b44592ac417d0f6f89f08c.jpg", "file_size": 26467, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a3e5d227b44592ac417d0f6f89f08c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a3e5d227b44592ac417d0f6f89f08c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46a3e5d227b44592ac417d0f6f89f08c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46a3e5d227b44592ac417d0f6f89f08c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46a3e5d227b44592ac417d0f6f89f08c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cc-o9AmLI2hVdXF57O9QfXcCbIw=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.907715+00 2025-12-09 10:14:52.90772+00 6612 JT9089#M SPMX-20240815301762 \N \N \N 1 \N [{"file_id": "e0d7b280-e706-4194-9a46-4ca0e041feea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ba5b721f880435eaeeb23a7a9d4b367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ba5b721f880435eaeeb23a7a9d4b367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ba5b721f880435eaeeb23a7a9d4b367.jpg", "file_size": 13208, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba5b721f880435eaeeb23a7a9d4b367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba5b721f880435eaeeb23a7a9d4b367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba5b721f880435eaeeb23a7a9d4b367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ba5b721f880435eaeeb23a7a9d4b367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ba5b721f880435eaeeb23a7a9d4b367.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEdEXnSjmiJwy_hRtq9RwokRByA=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.909073+00 2025-12-09 10:14:52.909077+00 6613 0003-24FWE#紫色 SPMX-20240815301763 \N \N \N 1 \N [{"file_id": "0bc0617c-b0c7-4067-8538-ae78ef3ab0a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90b9a2d3fd524afcb46644eb9b05e9db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90b9a2d3fd524afcb46644eb9b05e9db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90b9a2d3fd524afcb46644eb9b05e9db.jpg", "file_size": 12486, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b9a2d3fd524afcb46644eb9b05e9db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b9a2d3fd524afcb46644eb9b05e9db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b9a2d3fd524afcb46644eb9b05e9db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90b9a2d3fd524afcb46644eb9b05e9db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90b9a2d3fd524afcb46644eb9b05e9db.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILafHU6kEsxVXHHIa8IkD9NZz1A=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.910407+00 2025-12-09 10:14:52.910411+00 6614 FHXGPK-055-4 SPMX-20240815301760 \N \N \N 1 \N [{"file_id": "1bb1347c-a7c4-4495-84a3-f06e5fb25479", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d734f942a52242d48bc4b24f4ad7bc5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d734f942a52242d48bc4b24f4ad7bc5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d734f942a52242d48bc4b24f4ad7bc5f.jpg", "file_size": 24556, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-055-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d734f942a52242d48bc4b24f4ad7bc5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d734f942a52242d48bc4b24f4ad7bc5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d734f942a52242d48bc4b24f4ad7bc5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d734f942a52242d48bc4b24f4ad7bc5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d734f942a52242d48bc4b24f4ad7bc5f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTHH2BQR6gQn7BO7hDSrz2HlU-s=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.911723+00 2025-12-09 10:14:52.911727+00 6615 DH9-9#2X SPMX-20240815301761 \N \N \N 1 \N [{"file_id": "2ba2ca6f-743f-4bcb-a6d8-a2d2ba814082", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d5b8d68f2f040fd96c7590a76c13da5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d5b8d68f2f040fd96c7590a76c13da5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d5b8d68f2f040fd96c7590a76c13da5.jpg", "file_size": 48281, "is_delete": false, "file_type": 1, "original_file_name": "DH9-9#2X.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5b8d68f2f040fd96c7590a76c13da5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5b8d68f2f040fd96c7590a76c13da5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5b8d68f2f040fd96c7590a76c13da5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d5b8d68f2f040fd96c7590a76c13da5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d5b8d68f2f040fd96c7590a76c13da5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLV61_Viodi6_8ZCKC7GpCT5AFY=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.913049+00 2025-12-09 10:14:52.913054+00 6616 HT006FW#绿 SPMX-20240815301759 \N \N \N 1 \N [{"file_id": "eb22d9c2-a9bb-4d42-8724-4df107cf6ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dfb0767330f40d2b94eb0356c1642f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dfb0767330f40d2b94eb0356c1642f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dfb0767330f40d2b94eb0356c1642f3.jpg", "file_size": 15808, "is_delete": false, "file_type": 1, "original_file_name": "HT006FW#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfb0767330f40d2b94eb0356c1642f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfb0767330f40d2b94eb0356c1642f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfb0767330f40d2b94eb0356c1642f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dfb0767330f40d2b94eb0356c1642f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dfb0767330f40d2b94eb0356c1642f3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgAZiePyGUo_xPoXveFx2xlLzoE=", "createTime": "2024-08-15 14:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.9144+00 2025-12-09 10:14:52.914404+00 6617 8013FWF#童14T SPMX-20240815301768 \N \N \N 1 \N [{"file_id": "af8012f6-f545-4ae1-a4fd-af195d024bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d5891a686454ed793333164fef0fa62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d5891a686454ed793333164fef0fa62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d5891a686454ed793333164fef0fa62.jpg", "file_size": 10911, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童14T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5891a686454ed793333164fef0fa62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5891a686454ed793333164fef0fa62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5891a686454ed793333164fef0fa62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d5891a686454ed793333164fef0fa62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d5891a686454ed793333164fef0fa62.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hPYud9GPCNsB3Bl-8hLZ-6IGjz4=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.917028+00 2025-12-09 10:14:52.917032+00 6619 JT9089#S SPMX-20240815301771 \N \N \N 1 \N [{"file_id": "31cacd06-a61b-4ce5-8b26-aea0f7175f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a8e2d4105f041aab4c19aa7463fbfdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a8e2d4105f041aab4c19aa7463fbfdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a8e2d4105f041aab4c19aa7463fbfdd.jpg", "file_size": 12499, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2d4105f041aab4c19aa7463fbfdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2d4105f041aab4c19aa7463fbfdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2d4105f041aab4c19aa7463fbfdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2d4105f041aab4c19aa7463fbfdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a8e2d4105f041aab4c19aa7463fbfdd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qv_dhiH8JYd7mNUSfY7o2a8J9wA=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.923687+00 2025-12-09 10:14:52.923692+00 6624 0003-24FWE#黄色 SPMX-20240815301775 \N \N \N 1 \N [{"file_id": "5c1fd0f1-9461-4474-9500-a5db7e4f06ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6977e4842a12468d93d1eab75b3661df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6977e4842a12468d93d1eab75b3661df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6977e4842a12468d93d1eab75b3661df.jpg", "file_size": 8746, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977e4842a12468d93d1eab75b3661df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977e4842a12468d93d1eab75b3661df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977e4842a12468d93d1eab75b3661df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6977e4842a12468d93d1eab75b3661df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6977e4842a12468d93d1eab75b3661df.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZXTvngEWUQO9UTq_02afm9-D1E=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.918351+00 2025-12-09 10:14:52.918355+00 6620 106#+106-1#-003-6#蓝色 SPMX-20240815301773 \N \N \N 1 \N [{"file_id": "172f5d4e-cea4-45eb-b9ca-a92f9a08e6f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d32c693e472a497e9605a42a3c19fe00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d32c693e472a497e9605a42a3c19fe00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d32c693e472a497e9605a42a3c19fe00.jpg", "file_size": 66952, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-003-6#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32c693e472a497e9605a42a3c19fe00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32c693e472a497e9605a42a3c19fe00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32c693e472a497e9605a42a3c19fe00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d32c693e472a497e9605a42a3c19fe00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d32c693e472a497e9605a42a3c19fe00.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MAzn2GnlYSm3HflPE8MHY6RwnTM=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.919685+00 2025-12-09 10:14:52.919689+00 6621 DH9-9#3X SPMX-20240815301770 \N \N \N 1 \N [{"file_id": "3db459da-9681-40b9-bfb4-6ad18b1943bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8071436cdf704c85bb028137713e3038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8071436cdf704c85bb028137713e3038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8071436cdf704c85bb028137713e3038.jpg", "file_size": 46473, "is_delete": false, "file_type": 1, "original_file_name": "DH9-9#3X.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8071436cdf704c85bb028137713e3038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8071436cdf704c85bb028137713e3038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8071436cdf704c85bb028137713e3038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8071436cdf704c85bb028137713e3038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8071436cdf704c85bb028137713e3038.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PI1wjSVacXzT8-vbVquSrEA5Lg=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.921014+00 2025-12-09 10:14:52.921018+00 6622 LZ1230#童装T下身2号色 SPMX-20240815301774 \N \N \N 1 \N [{"file_id": "d889eae3-85ae-4000-a073-c186a54dc00d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13de54a34e3d43959531e9949fc5af3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13de54a34e3d43959531e9949fc5af3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13de54a34e3d43959531e9949fc5af3d.jpg", "file_size": 24253, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13de54a34e3d43959531e9949fc5af3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13de54a34e3d43959531e9949fc5af3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13de54a34e3d43959531e9949fc5af3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13de54a34e3d43959531e9949fc5af3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13de54a34e3d43959531e9949fc5af3d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqFv0vlLSFAuM_3Ei6lh1eDPdEs=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.922344+00 2025-12-09 10:14:52.922348+00 6623 C281#大红 SPMX-20240815301765 \N \N \N 1 \N [{"file_id": "4d850d87-286a-4bbe-b0a8-8b0cbc4858b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "307646b73ba3478fad4e6cc09cf7e221.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "307646b73ba3478fad4e6cc09cf7e221.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "307646b73ba3478fad4e6cc09cf7e221.jpg", "file_size": 23455, "is_delete": false, "file_type": 1, "original_file_name": "C281#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307646b73ba3478fad4e6cc09cf7e221.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307646b73ba3478fad4e6cc09cf7e221.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307646b73ba3478fad4e6cc09cf7e221.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/307646b73ba3478fad4e6cc09cf7e221.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/307646b73ba3478fad4e6cc09cf7e221.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kY576hJnlpNRmWDoY-B4BtKjTkI=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.915715+00 2025-12-09 10:14:52.91572+00 6618 LHJ9334#25号土黄 SPMX-20240815301767 \N \N \N 1 \N [{"file_id": "fceacada-e33d-4e53-9abb-64e20f88380e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e97c383328a14b039f4aad1ee5ffe5ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e97c383328a14b039f4aad1ee5ffe5ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e97c383328a14b039f4aad1ee5ffe5ef.jpg", "file_size": 19269, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97c383328a14b039f4aad1ee5ffe5ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97c383328a14b039f4aad1ee5ffe5ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e97c383328a14b039f4aad1ee5ffe5ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e97c383328a14b039f4aad1ee5ffe5ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e97c383328a14b039f4aad1ee5ffe5ef.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQwk9gie7_7dSfFlHw4pfGC27Mw=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.926557+00 2025-12-09 10:14:52.926561+00 6625 FHXGPK-055-5 SPMX-20240815301769 \N \N \N 1 \N [{"file_id": "aea1e8ae-6b0e-46dc-9469-48fcca75db58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c11a1c51814686a0d89429534cedd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c11a1c51814686a0d89429534cedd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c11a1c51814686a0d89429534cedd0.jpg", "file_size": 27427, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-055-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c11a1c51814686a0d89429534cedd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c11a1c51814686a0d89429534cedd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c11a1c51814686a0d89429534cedd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c11a1c51814686a0d89429534cedd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c11a1c51814686a0d89429534cedd0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8i1Q2dGrFhONi6UaPT3U50G4H4c=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.927901+00 2025-12-09 10:14:52.927905+00 6626 HT006FWE#VS-D3 SPMX-20240815301772 \N \N \N 1 \N [{"file_id": "38c3bcf9-257b-411e-9f9f-295bd5e83acc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67781d2afc6c44c0805625df20c41904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67781d2afc6c44c0805625df20c41904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67781d2afc6c44c0805625df20c41904.jpg", "file_size": 11670, "is_delete": false, "file_type": 1, "original_file_name": "HT006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67781d2afc6c44c0805625df20c41904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67781d2afc6c44c0805625df20c41904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67781d2afc6c44c0805625df20c41904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67781d2afc6c44c0805625df20c41904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67781d2afc6c44c0805625df20c41904.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dEzukhFTUz9ykyZbm6GFMDQHuas=", "createTime": "2024-08-15 14:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.929232+00 2025-12-09 10:14:52.929235+00 6627 8013FWF#童3T SPMX-20240815301779 \N \N \N 1 \N [{"file_id": "0e80474d-f23d-4679-b793-b671d450b11e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66152c8302234ea9b840078b40743ea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66152c8302234ea9b840078b40743ea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66152c8302234ea9b840078b40743ea8.jpg", "file_size": 8500, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童3T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66152c8302234ea9b840078b40743ea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66152c8302234ea9b840078b40743ea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66152c8302234ea9b840078b40743ea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66152c8302234ea9b840078b40743ea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66152c8302234ea9b840078b40743ea8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEZvlPgyTZ-GdgIa9w978vejaks=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.930545+00 2025-12-09 10:14:52.93055+00 6628 C281#彩兰 SPMX-20240815301778 \N \N \N 1 \N [{"file_id": "32048230-54d3-41ac-9a84-196c3568e91e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26356f3d14af4e3eb894b01dd84db3a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26356f3d14af4e3eb894b01dd84db3a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26356f3d14af4e3eb894b01dd84db3a4.jpg", "file_size": 23133, "is_delete": false, "file_type": 1, "original_file_name": "C281#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26356f3d14af4e3eb894b01dd84db3a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26356f3d14af4e3eb894b01dd84db3a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26356f3d14af4e3eb894b01dd84db3a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26356f3d14af4e3eb894b01dd84db3a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26356f3d14af4e3eb894b01dd84db3a4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SzvJIhHkziVxViB8xkhdXsYQxw=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.931874+00 2025-12-09 10:14:52.931878+00 6629 23-2103#A2前后片4XL SPMX-20240815301777 \N \N \N 1 \N [{"file_id": "125aae99-6cf3-4c4e-bfba-50c4aa3ac01d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9299e637b62494daeb797651f364f2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9299e637b62494daeb797651f364f2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9299e637b62494daeb797651f364f2b.jpg", "file_size": 10611, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9299e637b62494daeb797651f364f2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9299e637b62494daeb797651f364f2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9299e637b62494daeb797651f364f2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9299e637b62494daeb797651f364f2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9299e637b62494daeb797651f364f2b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-RqHAUEU6Tbw6aY6tP-GH8oJlY=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.933204+00 2025-12-09 10:14:52.933209+00 6630 LHJ9334#38号粉 SPMX-20240815301776 \N \N \N 1 \N [{"file_id": "493428b4-d0ea-4770-920e-6180ee507a3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e4619c53f646fe8d920e80b35ce095.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e4619c53f646fe8d920e80b35ce095.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e4619c53f646fe8d920e80b35ce095.jpg", "file_size": 13542, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#38号粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e4619c53f646fe8d920e80b35ce095.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e4619c53f646fe8d920e80b35ce095.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e4619c53f646fe8d920e80b35ce095.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e4619c53f646fe8d920e80b35ce095.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e4619c53f646fe8d920e80b35ce095.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9e4Yc_tKmE6RugeMqg0SF01mIiM=", "createTime": "2024-08-15 14:44:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.934523+00 2025-12-09 10:14:52.934526+00 6631 HT007#VS-D3 SPMX-20240815301781 \N \N \N 1 \N [{"file_id": "bab60aef-5d69-48fa-b805-a59e4c07a807", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e5b1be75af749e2b2bf79a9c330a31b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e5b1be75af749e2b2bf79a9c330a31b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e5b1be75af749e2b2bf79a9c330a31b.jpg", "file_size": 8534, "is_delete": false, "file_type": 1, "original_file_name": "HT007#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5b1be75af749e2b2bf79a9c330a31b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5b1be75af749e2b2bf79a9c330a31b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5b1be75af749e2b2bf79a9c330a31b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e5b1be75af749e2b2bf79a9c330a31b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e5b1be75af749e2b2bf79a9c330a31b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:840EIA0uF4yQhTAC0QJGTGM20yg=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.935937+00 2025-12-09 10:14:52.935941+00 6632 FHXGPK-056-1 SPMX-20240815301782 \N \N \N 1 \N [{"file_id": "d26524c1-d61e-418e-b804-29e2572ffc44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1edbaa95374043f58a7d9ee42696b833.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1edbaa95374043f58a7d9ee42696b833.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1edbaa95374043f58a7d9ee42696b833.jpg", "file_size": 35001, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-056-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edbaa95374043f58a7d9ee42696b833.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edbaa95374043f58a7d9ee42696b833.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edbaa95374043f58a7d9ee42696b833.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1edbaa95374043f58a7d9ee42696b833.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1edbaa95374043f58a7d9ee42696b833.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXLLoYlJB_mBO1L1cVQAplcCN20=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.937289+00 2025-12-09 10:14:52.937293+00 6633 DJ10378#腰头口袋3XL码 SPMX-20240815301783 \N \N \N 1 \N [{"file_id": "4294d7f0-467b-40f0-9e42-72b42a8429e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d314cacb698a43629f68d593b1f5f025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d314cacb698a43629f68d593b1f5f025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d314cacb698a43629f68d593b1f5f025.jpg", "file_size": 34419, "is_delete": false, "file_type": 1, "original_file_name": "DJ10378#腰头口袋3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314cacb698a43629f68d593b1f5f025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314cacb698a43629f68d593b1f5f025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d314cacb698a43629f68d593b1f5f025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d314cacb698a43629f68d593b1f5f025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d314cacb698a43629f68d593b1f5f025.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fid1-gjn8aDKGEyVnbpAqNzW4zI=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.938674+00 2025-12-09 10:14:52.938679+00 6634 JT9089#后片净色 SPMX-20240815301780 \N \N \N 1 \N [{"file_id": "7d9da634-f04c-4d30-9174-07f58a8eb127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0151830ab9e441d88ac39392ab97170c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0151830ab9e441d88ac39392ab97170c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0151830ab9e441d88ac39392ab97170c.jpg", "file_size": 7015, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#后片净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0151830ab9e441d88ac39392ab97170c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0151830ab9e441d88ac39392ab97170c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0151830ab9e441d88ac39392ab97170c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0151830ab9e441d88ac39392ab97170c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0151830ab9e441d88ac39392ab97170c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORy90PUnRNA_1JnP7SeKmEjvkrA=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.94005+00 2025-12-09 10:14:52.940054+00 6635 8013FWF#童5 SPMX-20240815301798 \N \N \N 1 \N [{"file_id": "118ff684-b029-486c-8491-9098ce9d3337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0918d5b541584ce1b5cab981626cacf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0918d5b541584ce1b5cab981626cacf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0918d5b541584ce1b5cab981626cacf3.jpg", "file_size": 7884, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0918d5b541584ce1b5cab981626cacf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0918d5b541584ce1b5cab981626cacf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0918d5b541584ce1b5cab981626cacf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0918d5b541584ce1b5cab981626cacf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0918d5b541584ce1b5cab981626cacf3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:api02mT3X-RQqLe5hTWkHRlzTcQ=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.941392+00 2025-12-09 10:14:52.941397+00 6636 C281#黑色 SPMX-20240815301799 \N \N \N 1 \N [{"file_id": "f0a717a6-0c14-47b3-b60e-498e66f31061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dda78d7b0ba0473b849dc73a7710375a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dda78d7b0ba0473b849dc73a7710375a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dda78d7b0ba0473b849dc73a7710375a.jpg", "file_size": 23335, "is_delete": false, "file_type": 1, "original_file_name": "C281#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda78d7b0ba0473b849dc73a7710375a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda78d7b0ba0473b849dc73a7710375a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda78d7b0ba0473b849dc73a7710375a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dda78d7b0ba0473b849dc73a7710375a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dda78d7b0ba0473b849dc73a7710375a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fa_ZC0hopSTnFDDLuXsqTs7mFcU=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.942709+00 2025-12-09 10:14:52.942713+00 6637 LHJ9334#5号彩兰 SPMX-20240815301790 \N \N \N 1 \N [{"file_id": "47a4d5ad-97c8-4e87-8d82-a890e8afce9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a26e711f958348298979fe165b9ba64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a26e711f958348298979fe165b9ba64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a26e711f958348298979fe165b9ba64b.jpg", "file_size": 18680, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#5号彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e711f958348298979fe165b9ba64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e711f958348298979fe165b9ba64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e711f958348298979fe165b9ba64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a26e711f958348298979fe165b9ba64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a26e711f958348298979fe165b9ba64b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRyxUvEl18fX7dzqyKMGGZHCU-o=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.944068+00 2025-12-09 10:14:52.944073+00 6638 LZ1230#童装T下身3号色 SPMX-20240815301784 \N \N \N 1 \N [{"file_id": "874e3b6d-aa4e-4c31-abdc-dc6eb3e05412", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4230205dd0ec4d2dba2af39d65652f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4230205dd0ec4d2dba2af39d65652f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4230205dd0ec4d2dba2af39d65652f89.jpg", "file_size": 23715, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4230205dd0ec4d2dba2af39d65652f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4230205dd0ec4d2dba2af39d65652f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4230205dd0ec4d2dba2af39d65652f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4230205dd0ec4d2dba2af39d65652f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4230205dd0ec4d2dba2af39d65652f89.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hg670JB_yKNwBHxCeBy88ayy8xI=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.94539+00 2025-12-09 10:14:52.945394+00 6639 23-2103#A2袖子4XL SPMX-20240815301796 \N \N \N 1 \N [{"file_id": "6e44bc17-09fd-47fd-bf4d-d5aaf1dba33d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fe33020a6934c8ebb6a53ef59988022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fe33020a6934c8ebb6a53ef59988022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fe33020a6934c8ebb6a53ef59988022.jpg", "file_size": 10132, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A2袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe33020a6934c8ebb6a53ef59988022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe33020a6934c8ebb6a53ef59988022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe33020a6934c8ebb6a53ef59988022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fe33020a6934c8ebb6a53ef59988022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fe33020a6934c8ebb6a53ef59988022.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Shi-71FJjftdOT9mpGeTejb9n-M=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.946727+00 2025-12-09 10:14:52.946731+00 6640 0003-24FWE#黑底白 SPMX-20240815301786 \N \N \N 1 \N [{"file_id": "43ff4f1e-f725-4e55-babe-8cb891d95466", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c0fdc804ce245118ba1d62fb04ceb82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c0fdc804ce245118ba1d62fb04ceb82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c0fdc804ce245118ba1d62fb04ceb82.jpg", "file_size": 14834, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWE#黑底白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0fdc804ce245118ba1d62fb04ceb82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0fdc804ce245118ba1d62fb04ceb82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0fdc804ce245118ba1d62fb04ceb82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c0fdc804ce245118ba1d62fb04ceb82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c0fdc804ce245118ba1d62fb04ceb82.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOd16Dwhe_crAxuEXbgQeCIYoxY=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.948056+00 2025-12-09 10:14:52.94806+00 6641 106#+106-1#-125A橙色 SPMX-20240815301789 \N \N \N 1 \N [{"file_id": "ffe5b274-e5f7-455a-89cf-1174cb88e49c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "718c8f8949de4d6882b7e0b7796098dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "718c8f8949de4d6882b7e0b7796098dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "718c8f8949de4d6882b7e0b7796098dc.jpg", "file_size": 67055, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c8f8949de4d6882b7e0b7796098dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c8f8949de4d6882b7e0b7796098dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718c8f8949de4d6882b7e0b7796098dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/718c8f8949de4d6882b7e0b7796098dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/718c8f8949de4d6882b7e0b7796098dc.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EkKKC3UXL--lMIhMfOJWzbi3hw=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.949416+00 2025-12-09 10:14:52.94942+00 6642 DJ15619#2XL SPMX-20240815301795 \N \N \N 1 \N [{"file_id": "06898bcd-d29e-46f1-a671-b3b46ff2dd1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f34ffd8fd6a140e1b599a7397622949f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f34ffd8fd6a140e1b599a7397622949f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f34ffd8fd6a140e1b599a7397622949f.jpg", "file_size": 55786, "is_delete": false, "file_type": 1, "original_file_name": "DJ15619#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ffd8fd6a140e1b599a7397622949f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ffd8fd6a140e1b599a7397622949f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ffd8fd6a140e1b599a7397622949f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f34ffd8fd6a140e1b599a7397622949f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f34ffd8fd6a140e1b599a7397622949f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUUGS1eASUb_LghIsajMtfcGMhc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.950754+00 2025-12-09 10:14:52.950758+00 6643 23-2103#A2袖子3XL SPMX-20240815301785 \N \N \N 1 \N [{"file_id": "b9a76aa9-cfa9-4746-b984-4514cfb04a9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3681120d8544274b3c7695904777eb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3681120d8544274b3c7695904777eb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3681120d8544274b3c7695904777eb4.jpg", "file_size": 10425, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A2袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3681120d8544274b3c7695904777eb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3681120d8544274b3c7695904777eb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3681120d8544274b3c7695904777eb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3681120d8544274b3c7695904777eb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3681120d8544274b3c7695904777eb4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrFptQmuuA7qL3UxfZ0GL2d1rc0=", "createTime": "2024-08-15 14:44:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.952089+00 2025-12-09 10:14:52.952093+00 6644 FHXGPK-056-2 SPMX-20240815301792 \N \N \N 1 \N [{"file_id": "95ffd8cb-34c0-4242-817c-6d442ea25b9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fcade5cfae64a5794f1ba5d87a284ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fcade5cfae64a5794f1ba5d87a284ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fcade5cfae64a5794f1ba5d87a284ca.jpg", "file_size": 39458, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-056-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fcade5cfae64a5794f1ba5d87a284ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fcade5cfae64a5794f1ba5d87a284ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fcade5cfae64a5794f1ba5d87a284ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fcade5cfae64a5794f1ba5d87a284ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fcade5cfae64a5794f1ba5d87a284ca.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_SR6gjJSOZjVTnEQoOOprqwtr4=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.953407+00 2025-12-09 10:14:52.953411+00 6645 8013FWF#童4T SPMX-20240815301787 \N \N \N 1 \N [{"file_id": "7e3c16f5-c029-4cae-8c9b-84f6914afbbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2e229fb539a4aedaf54dfe758919efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2e229fb539a4aedaf54dfe758919efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2e229fb539a4aedaf54dfe758919efb.jpg", "file_size": 8180, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童4T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e229fb539a4aedaf54dfe758919efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e229fb539a4aedaf54dfe758919efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e229fb539a4aedaf54dfe758919efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2e229fb539a4aedaf54dfe758919efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2e229fb539a4aedaf54dfe758919efb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_muKMrnZOjE7J66RRDG7AhG1aQ=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.954762+00 2025-12-09 10:14:52.954766+00 6646 JT9089#紫色袖子 SPMX-20240815301791 \N \N \N 1 \N [{"file_id": "5d74f95f-2249-4263-85a7-82b4eadd151d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9b2dc9385fe419e9a66851e050e28a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9b2dc9385fe419e9a66851e050e28a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9b2dc9385fe419e9a66851e050e28a6.jpg", "file_size": 6900, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#紫色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b2dc9385fe419e9a66851e050e28a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b2dc9385fe419e9a66851e050e28a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b2dc9385fe419e9a66851e050e28a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9b2dc9385fe419e9a66851e050e28a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9b2dc9385fe419e9a66851e050e28a6.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_HGu3I2ltL5Sl2U9UTiRHnuerNg=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.956086+00 2025-12-09 10:14:52.95609+00 6647 LZ1230#童装T下身4号色 SPMX-20240815301794 \N \N \N 1 \N [{"file_id": "ab8d6d34-c430-421d-a868-733e2bdc3022", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffc580e45d8d46c3a117219a40ece8bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffc580e45d8d46c3a117219a40ece8bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffc580e45d8d46c3a117219a40ece8bc.jpg", "file_size": 26557, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc580e45d8d46c3a117219a40ece8bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc580e45d8d46c3a117219a40ece8bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc580e45d8d46c3a117219a40ece8bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffc580e45d8d46c3a117219a40ece8bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffc580e45d8d46c3a117219a40ece8bc.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tv1d_e7BWdZ4_ji2h6gMO0b9uCo=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.957427+00 2025-12-09 10:14:52.957431+00 6648 HT007FW# SPMX-20240815301793 \N \N \N 1 \N [{"file_id": "c0854b21-378a-442d-bdb4-de24b3f8e585", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21df1e03ec9e476a9f3ea53c1fa148c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21df1e03ec9e476a9f3ea53c1fa148c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21df1e03ec9e476a9f3ea53c1fa148c8.jpg", "file_size": 14906, "is_delete": false, "file_type": 1, "original_file_name": "HT007FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21df1e03ec9e476a9f3ea53c1fa148c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21df1e03ec9e476a9f3ea53c1fa148c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21df1e03ec9e476a9f3ea53c1fa148c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21df1e03ec9e476a9f3ea53c1fa148c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21df1e03ec9e476a9f3ea53c1fa148c8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0o-cXZpcayUyilPWlFSYcBTqwY4=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.958735+00 2025-12-09 10:14:52.958738+00 6649 C281#橙色 SPMX-20240815301788 \N \N \N 1 \N [{"file_id": "89691f8a-1344-49e4-97f7-9fa000be8793", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2236c7c96d945b6b0cc579aaf5896a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2236c7c96d945b6b0cc579aaf5896a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2236c7c96d945b6b0cc579aaf5896a7.jpg", "file_size": 21080, "is_delete": false, "file_type": 1, "original_file_name": "C281#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2236c7c96d945b6b0cc579aaf5896a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2236c7c96d945b6b0cc579aaf5896a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2236c7c96d945b6b0cc579aaf5896a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2236c7c96d945b6b0cc579aaf5896a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2236c7c96d945b6b0cc579aaf5896a7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UNazBXqu2kU1YMSZ_a0evogAKc=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.960105+00 2025-12-09 10:14:52.960109+00 6650 0003-24FWF#V5曲线 SPMX-20240815301797 \N \N \N 1 \N [{"file_id": "feb8d74b-4f92-4e27-9a0f-6588de06f018", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0f37836591d42349b9c9815116f2e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0f37836591d42349b9c9815116f2e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0f37836591d42349b9c9815116f2e2a.jpg", "file_size": 10869, "is_delete": false, "file_type": 1, "original_file_name": "0003-24FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f37836591d42349b9c9815116f2e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f37836591d42349b9c9815116f2e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f37836591d42349b9c9815116f2e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0f37836591d42349b9c9815116f2e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0f37836591d42349b9c9815116f2e2a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQrNtjxajtBHldbLsCZmMt0tync=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.961411+00 2025-12-09 10:14:52.961415+00 6651 LHJ9334#61号橙色 SPMX-20240815301800 \N \N \N 1 \N [{"file_id": "8812e261-8709-4288-b34b-0b8363a20ad1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaefada73910438db7cca7842ff88d7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaefada73910438db7cca7842ff88d7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaefada73910438db7cca7842ff88d7c.jpg", "file_size": 16654, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9334#61号橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaefada73910438db7cca7842ff88d7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaefada73910438db7cca7842ff88d7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaefada73910438db7cca7842ff88d7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaefada73910438db7cca7842ff88d7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaefada73910438db7cca7842ff88d7c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSnHK3inV58EN7pfk2Zl-HG4dwM=", "createTime": "2024-08-15 14:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.96274+00 2025-12-09 10:14:52.962745+00 6652 LZ1230#童装T下身5号色 SPMX-20240815301804 \N \N \N 1 \N [{"file_id": "aff141d2-9e1a-4b99-a565-7700887ef38b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "769e9eedc0a14d9394161fa2073daba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "769e9eedc0a14d9394161fa2073daba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "769e9eedc0a14d9394161fa2073daba4.jpg", "file_size": 26306, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装T下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e9eedc0a14d9394161fa2073daba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e9eedc0a14d9394161fa2073daba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e9eedc0a14d9394161fa2073daba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/769e9eedc0a14d9394161fa2073daba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/769e9eedc0a14d9394161fa2073daba4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SR67JDVGb6oQcG7RHsco9ila8ko=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.964068+00 2025-12-09 10:14:52.964072+00 6653 JT9089#蓝色袖子 SPMX-20240815301803 \N \N \N 1 \N [{"file_id": "b2786778-9ba2-456d-97ed-06b1f397abaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c1b90a806e843d8956b6d7b716272e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c1b90a806e843d8956b6d7b716272e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c1b90a806e843d8956b6d7b716272e0.jpg", "file_size": 6243, "is_delete": false, "file_type": 1, "original_file_name": "JT9089#蓝色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b90a806e843d8956b6d7b716272e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b90a806e843d8956b6d7b716272e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b90a806e843d8956b6d7b716272e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c1b90a806e843d8956b6d7b716272e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c1b90a806e843d8956b6d7b716272e0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Lp6W-h6EtbdSYqanoYSaNEVE_Y=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.965418+00 2025-12-09 10:14:52.965422+00 6654 8013FWF#童5T SPMX-20240815301809 \N \N \N 1 \N [{"file_id": "2bc7788c-4d3a-424b-84d7-2d51e9a0c56c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c9991e15cb842fab9f93a711eeab424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c9991e15cb842fab9f93a711eeab424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c9991e15cb842fab9f93a711eeab424.jpg", "file_size": 8188, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童5T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9991e15cb842fab9f93a711eeab424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9991e15cb842fab9f93a711eeab424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9991e15cb842fab9f93a711eeab424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c9991e15cb842fab9f93a711eeab424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c9991e15cb842fab9f93a711eeab424.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnrWlt_euD9SgsK3gUhWxmaArHk=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.966725+00 2025-12-09 10:14:52.966729+00 6655 FHXGPK-056-4 SPMX-20240815301813 \N \N \N 1 \N [{"file_id": "fe7579e3-3ba9-4d85-a664-c2f1471a49e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1abdc46f84df4806835dee654ad14055.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1abdc46f84df4806835dee654ad14055.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1abdc46f84df4806835dee654ad14055.jpg", "file_size": 35275, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-056-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abdc46f84df4806835dee654ad14055.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abdc46f84df4806835dee654ad14055.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abdc46f84df4806835dee654ad14055.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1abdc46f84df4806835dee654ad14055.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1abdc46f84df4806835dee654ad14055.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hj8dQoVyUpDVl1bCEjLBcHF0iX8=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.968069+00 2025-12-09 10:14:52.968074+00 6656 106#+106-1#-125A玫红色 SPMX-20240815301801 \N \N \N 1 \N [{"file_id": "8a900b05-c4ad-4737-8370-05df8dd959de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5ee8afcffd3435293b5958ff6084da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5ee8afcffd3435293b5958ff6084da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5ee8afcffd3435293b5958ff6084da1.jpg", "file_size": 66171, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ee8afcffd3435293b5958ff6084da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ee8afcffd3435293b5958ff6084da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ee8afcffd3435293b5958ff6084da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5ee8afcffd3435293b5958ff6084da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5ee8afcffd3435293b5958ff6084da1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VY66ApmeJzbQowYOjng6iGV0Y60=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.969377+00 2025-12-09 10:14:52.969381+00 6657 106#+106-1#-125A紫色 SPMX-20240815301814 \N \N \N 1 \N [{"file_id": "40ac75d5-23d0-487b-815e-dc68e7c8e48b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "017cc24b8add41b187b29f857cfda798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "017cc24b8add41b187b29f857cfda798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "017cc24b8add41b187b29f857cfda798.jpg", "file_size": 64895, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017cc24b8add41b187b29f857cfda798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017cc24b8add41b187b29f857cfda798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017cc24b8add41b187b29f857cfda798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/017cc24b8add41b187b29f857cfda798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/017cc24b8add41b187b29f857cfda798.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgoVDIbmepOnqX7MbHssvk3tqHM=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.970742+00 2025-12-09 10:14:52.970745+00 6658 LHJ9449#118号天蓝 SPMX-20240815301810 \N \N \N 1 \N [{"file_id": "115baa1c-c32d-4759-8f5f-662564a9530a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28c4ca633335411aa7c6bb9710d7d76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28c4ca633335411aa7c6bb9710d7d76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28c4ca633335411aa7c6bb9710d7d76d.jpg", "file_size": 14096, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#118号天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c4ca633335411aa7c6bb9710d7d76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c4ca633335411aa7c6bb9710d7d76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c4ca633335411aa7c6bb9710d7d76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28c4ca633335411aa7c6bb9710d7d76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28c4ca633335411aa7c6bb9710d7d76d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQ8v1BwmEGsuzoDxQZUAIAiOH0Y=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.972066+00 2025-12-09 10:14:52.972069+00 6659 FHXGPK-056-3 SPMX-20240815301802 \N \N \N 1 \N [{"file_id": "178b9d53-439c-4296-b052-ea88f3100d0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab0ccc2d6a641e1ab572231e9c16367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab0ccc2d6a641e1ab572231e9c16367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab0ccc2d6a641e1ab572231e9c16367.jpg", "file_size": 40076, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-056-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab0ccc2d6a641e1ab572231e9c16367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab0ccc2d6a641e1ab572231e9c16367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab0ccc2d6a641e1ab572231e9c16367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab0ccc2d6a641e1ab572231e9c16367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab0ccc2d6a641e1ab572231e9c16367.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zat9lPn9CRVCjcZaF_fYwUEIN1U=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.97474+00 2025-12-09 10:14:52.974745+00 6661 0003-25FWE#VS-D3 SPMX-20240815301808 \N \N \N 1 \N [{"file_id": "4ef76cb7-7baf-40b8-83f3-83cb6e4414b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9c5aa0af3fe432fade6a10e920a4de2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9c5aa0af3fe432fade6a10e920a4de2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9c5aa0af3fe432fade6a10e920a4de2.jpg", "file_size": 14250, "is_delete": false, "file_type": 1, "original_file_name": "0003-25FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c5aa0af3fe432fade6a10e920a4de2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c5aa0af3fe432fade6a10e920a4de2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c5aa0af3fe432fade6a10e920a4de2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9c5aa0af3fe432fade6a10e920a4de2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9c5aa0af3fe432fade6a10e920a4de2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDnoYgv9MWNymYATMGP6_K2vjUU=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.976083+00 2025-12-09 10:14:52.976087+00 6662 C281-1#原版色 SPMX-20240815301811 \N \N \N 1 \N [{"file_id": "9698e24e-9049-4836-bb64-fe112a7018ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a7de577e15340acbec71bdeb7f1b3f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a7de577e15340acbec71bdeb7f1b3f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a7de577e15340acbec71bdeb7f1b3f8.jpg", "file_size": 22010, "is_delete": false, "file_type": 1, "original_file_name": "C281-1#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7de577e15340acbec71bdeb7f1b3f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7de577e15340acbec71bdeb7f1b3f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7de577e15340acbec71bdeb7f1b3f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a7de577e15340acbec71bdeb7f1b3f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a7de577e15340acbec71bdeb7f1b3f8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVZe67SaitofjGhd1KOPeiaajxw=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.977409+00 2025-12-09 10:14:52.977413+00 6663 HT007FWE#湖绿VS-D3 SPMX-20240815301805 \N \N \N 1 \N [{"file_id": "bd939c5d-8835-4af9-8d55-9f9c8efa1921", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "341ac5c1343449b0925faa5b91017c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "341ac5c1343449b0925faa5b91017c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "341ac5c1343449b0925faa5b91017c72.jpg", "file_size": 17594, "is_delete": false, "file_type": 1, "original_file_name": "HT007FWE#湖绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341ac5c1343449b0925faa5b91017c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341ac5c1343449b0925faa5b91017c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341ac5c1343449b0925faa5b91017c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/341ac5c1343449b0925faa5b91017c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/341ac5c1343449b0925faa5b91017c72.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtqx3mPPeH7MaeSMg2VIptbIXcM=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.973407+00 2025-12-09 10:14:52.973412+00 6660 23-2103#A2领子通用 SPMX-20240815301807 \N \N \N 1 \N [{"file_id": "e930d994-c103-4635-a883-5c5b5fc41ffa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926431b44fbc40d3b10464ad4042b577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926431b44fbc40d3b10464ad4042b577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926431b44fbc40d3b10464ad4042b577.jpg", "file_size": 10115, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926431b44fbc40d3b10464ad4042b577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926431b44fbc40d3b10464ad4042b577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926431b44fbc40d3b10464ad4042b577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926431b44fbc40d3b10464ad4042b577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926431b44fbc40d3b10464ad4042b577.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SF_sRNUBq6LnvUUYtHMgf-GlUtY=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.980266+00 2025-12-09 10:14:52.980271+00 6664 8013FWF#童6 SPMX-20240815301817 \N \N \N 1 \N [{"file_id": "9c9a6279-e61f-40fd-b23f-b369e84a55f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8edf3ac9d9a14db0a806de27b2712ccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8edf3ac9d9a14db0a806de27b2712ccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8edf3ac9d9a14db0a806de27b2712ccd.jpg", "file_size": 8324, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edf3ac9d9a14db0a806de27b2712ccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edf3ac9d9a14db0a806de27b2712ccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edf3ac9d9a14db0a806de27b2712ccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8edf3ac9d9a14db0a806de27b2712ccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8edf3ac9d9a14db0a806de27b2712ccd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nF2b9dcD-J6322OaWHGS60jftEw=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.981832+00 2025-12-09 10:14:52.981836+00 6665 23-2103#A3前片3XL SPMX-20240815301819 \N \N \N 1 \N [{"file_id": "e170dddb-62de-44b2-8640-76efd6255809", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b075243688e4fc4b6f0657d730207f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b075243688e4fc4b6f0657d730207f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b075243688e4fc4b6f0657d730207f0.jpg", "file_size": 10316, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3前片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b075243688e4fc4b6f0657d730207f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b075243688e4fc4b6f0657d730207f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b075243688e4fc4b6f0657d730207f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b075243688e4fc4b6f0657d730207f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b075243688e4fc4b6f0657d730207f0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7VJ1_Ulw96aJhAjy61MPYnR6o0=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.983384+00 2025-12-09 10:14:52.983389+00 6666 JT9091#M SPMX-20240815301823 \N \N \N 1 \N [{"file_id": "79920f7a-3055-4a7f-a59e-2fbfe6e953f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e5b67dcbb4c4449a1b135cf4df1f483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e5b67dcbb4c4449a1b135cf4df1f483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e5b67dcbb4c4449a1b135cf4df1f483.jpg", "file_size": 10190, "is_delete": false, "file_type": 1, "original_file_name": "JT9091#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5b67dcbb4c4449a1b135cf4df1f483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5b67dcbb4c4449a1b135cf4df1f483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5b67dcbb4c4449a1b135cf4df1f483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e5b67dcbb4c4449a1b135cf4df1f483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e5b67dcbb4c4449a1b135cf4df1f483.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSUy3ETCE3JPPVIGQozLDg_yRgk=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.984918+00 2025-12-09 10:14:52.984922+00 6667 LZ1230#童装上身2号色 SPMX-20240815301827 \N \N \N 1 \N [{"file_id": "e6fcd2f3-f9a3-4c15-9af0-a7d08d6fb389", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deb09e387eba476ba0c3c04ac8998703.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deb09e387eba476ba0c3c04ac8998703.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deb09e387eba476ba0c3c04ac8998703.jpg", "file_size": 18398, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb09e387eba476ba0c3c04ac8998703.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb09e387eba476ba0c3c04ac8998703.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb09e387eba476ba0c3c04ac8998703.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deb09e387eba476ba0c3c04ac8998703.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deb09e387eba476ba0c3c04ac8998703.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JS2P_y26nBBiMhLd4dobrMMKyLs=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.986458+00 2025-12-09 10:14:52.986462+00 6668 LZ1230#童装上身1号色 SPMX-20240815301816 \N \N \N 1 \N [{"file_id": "08c15287-c020-444b-8af7-9eeefbb6b0fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f401c85987ae484da04749fff35468d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f401c85987ae484da04749fff35468d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f401c85987ae484da04749fff35468d5.jpg", "file_size": 20735, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401c85987ae484da04749fff35468d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401c85987ae484da04749fff35468d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401c85987ae484da04749fff35468d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f401c85987ae484da04749fff35468d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f401c85987ae484da04749fff35468d5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaxNldkg27nXQpYjujwfg8pJv3Y=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.988003+00 2025-12-09 10:14:52.988008+00 6669 LHJ9449#20号枣红 SPMX-20240815301822 \N \N \N 1 \N [{"file_id": "ca4675a9-29cd-4b6c-b535-1c6a816fa910", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b10f9284b0f24af4ae6b28e801beba3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b10f9284b0f24af4ae6b28e801beba3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b10f9284b0f24af4ae6b28e801beba3b.jpg", "file_size": 16437, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#20号枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b10f9284b0f24af4ae6b28e801beba3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b10f9284b0f24af4ae6b28e801beba3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b10f9284b0f24af4ae6b28e801beba3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b10f9284b0f24af4ae6b28e801beba3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b10f9284b0f24af4ae6b28e801beba3b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmzqYIX8Y_neyDZM0_pcg_L6AQw=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.989533+00 2025-12-09 10:14:52.989537+00 6670 JT9091#L SPMX-20240815301815 \N \N \N 1 \N [{"file_id": "2185fe73-9199-4119-ae96-bb3cac766118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646aff5fb64842b7807976542cc2eeec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646aff5fb64842b7807976542cc2eeec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646aff5fb64842b7807976542cc2eeec.jpg", "file_size": 10211, "is_delete": false, "file_type": 1, "original_file_name": "JT9091#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646aff5fb64842b7807976542cc2eeec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646aff5fb64842b7807976542cc2eeec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646aff5fb64842b7807976542cc2eeec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646aff5fb64842b7807976542cc2eeec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646aff5fb64842b7807976542cc2eeec.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGsxpIUJVSocaTn00r8vG2eUNNM=", "createTime": "2024-08-15 14:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.99107+00 2025-12-09 10:14:52.991074+00 6671 0003-25FWE#VS-D3番禺调色 SPMX-20240815301821 \N \N \N 1 \N [{"file_id": "31ee8bed-aa5e-4133-aa25-6ef9d04c0130", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147dbb89fb9a490393d49d22df3ee70d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147dbb89fb9a490393d49d22df3ee70d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147dbb89fb9a490393d49d22df3ee70d.jpg", "file_size": 14433, "is_delete": false, "file_type": 1, "original_file_name": "0003-25FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dbb89fb9a490393d49d22df3ee70d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dbb89fb9a490393d49d22df3ee70d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dbb89fb9a490393d49d22df3ee70d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147dbb89fb9a490393d49d22df3ee70d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147dbb89fb9a490393d49d22df3ee70d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wabAL8H3xj_8eYHn22qLwTFKpt4=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.992599+00 2025-12-09 10:14:52.992603+00 6672 106#+106-1#-125A红色 SPMX-20240815301825 \N \N \N 1 \N [{"file_id": "9a460788-e144-4b3a-892f-9936d5bbe56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eead89e6dc347a68a9c163e86443bbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eead89e6dc347a68a9c163e86443bbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eead89e6dc347a68a9c163e86443bbb.jpg", "file_size": 68635, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eead89e6dc347a68a9c163e86443bbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eead89e6dc347a68a9c163e86443bbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eead89e6dc347a68a9c163e86443bbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eead89e6dc347a68a9c163e86443bbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eead89e6dc347a68a9c163e86443bbb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:toMDhSsM1NJD88Tf4vnmrWGJ1YY=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.994085+00 2025-12-09 10:14:52.994089+00 6673 DJ18040#2XL SPMX-20240815301820 \N \N \N 1 \N [{"file_id": "6f898333-40a1-45dd-bdd4-e0cc9f852812", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93e733d78490449f8de1a26e9e170b56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93e733d78490449f8de1a26e9e170b56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93e733d78490449f8de1a26e9e170b56.jpg", "file_size": 44007, "is_delete": false, "file_type": 1, "original_file_name": "DJ18040#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e733d78490449f8de1a26e9e170b56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e733d78490449f8de1a26e9e170b56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e733d78490449f8de1a26e9e170b56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93e733d78490449f8de1a26e9e170b56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93e733d78490449f8de1a26e9e170b56.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81IGkgh5_-OhuRiyKUMsuXT27xQ=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.995455+00 2025-12-09 10:14:52.995459+00 6674 8013FWF#童6T SPMX-20240815301828 \N \N \N 1 \N [{"file_id": "03ff11a1-5160-4419-84b1-3dd34365d59d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b414c6ee16b54030b8636b801ebdd226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b414c6ee16b54030b8636b801ebdd226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b414c6ee16b54030b8636b801ebdd226.jpg", "file_size": 7961, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童6T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b414c6ee16b54030b8636b801ebdd226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b414c6ee16b54030b8636b801ebdd226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b414c6ee16b54030b8636b801ebdd226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b414c6ee16b54030b8636b801ebdd226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b414c6ee16b54030b8636b801ebdd226.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5UEUjxCQJCEo8HoBnEfOuiiqcnI=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.996805+00 2025-12-09 10:14:52.996809+00 6675 HT008#暗红VS-D3 SPMX-20240815301818 \N \N \N 1 \N [{"file_id": "38209800-fb4f-4a6e-98fb-b88d5a77a9fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed0070c079a04b04b4f280c1ac954b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed0070c079a04b04b4f280c1ac954b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed0070c079a04b04b4f280c1ac954b8b.jpg", "file_size": 15122, "is_delete": false, "file_type": 1, "original_file_name": "HT008#暗红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0070c079a04b04b4f280c1ac954b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0070c079a04b04b4f280c1ac954b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0070c079a04b04b4f280c1ac954b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed0070c079a04b04b4f280c1ac954b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed0070c079a04b04b4f280c1ac954b8b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxFZQWoec1o7Vt7u63RGwMePeDk=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.998133+00 2025-12-09 10:14:52.998137+00 6676 FHXGPK-056-5 SPMX-20240815301824 \N \N \N 1 \N [{"file_id": "d9afff83-8a4f-45b5-b664-1259b41e4132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0fb1905db034fad917c82e06a2fa919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0fb1905db034fad917c82e06a2fa919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0fb1905db034fad917c82e06a2fa919.jpg", "file_size": 34598, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-056-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb1905db034fad917c82e06a2fa919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb1905db034fad917c82e06a2fa919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fb1905db034fad917c82e06a2fa919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0fb1905db034fad917c82e06a2fa919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0fb1905db034fad917c82e06a2fa919.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5ymtkfWLqG2lTXO3LloKeOMrk8=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:52.999455+00 2025-12-09 10:14:52.999459+00 6677 C281-1#大红 SPMX-20240815301826 \N \N \N 1 \N [{"file_id": "873ab24d-c367-4e05-ae1e-c44ab9f70d02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc81329057c84a5d814712c2d7f17e1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc81329057c84a5d814712c2d7f17e1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc81329057c84a5d814712c2d7f17e1b.jpg", "file_size": 23430, "is_delete": false, "file_type": 1, "original_file_name": "C281-1#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81329057c84a5d814712c2d7f17e1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81329057c84a5d814712c2d7f17e1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81329057c84a5d814712c2d7f17e1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc81329057c84a5d814712c2d7f17e1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc81329057c84a5d814712c2d7f17e1b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YiPU85VSPxpucGEBpXTvlvovfL4=", "createTime": "2024-08-15 14:44:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.000797+00 2025-12-09 10:14:53.000801+00 6678 HT008#米色VS-D3 SPMX-20240815301829 \N \N \N 1 \N [{"file_id": "ac590e8b-a576-45f1-a5a5-ac80f98bf0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eec1f37162b14f1c90f91ad5c6bd7f05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eec1f37162b14f1c90f91ad5c6bd7f05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eec1f37162b14f1c90f91ad5c6bd7f05.jpg", "file_size": 16131, "is_delete": false, "file_type": 1, "original_file_name": "HT008#米色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec1f37162b14f1c90f91ad5c6bd7f05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec1f37162b14f1c90f91ad5c6bd7f05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec1f37162b14f1c90f91ad5c6bd7f05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eec1f37162b14f1c90f91ad5c6bd7f05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eec1f37162b14f1c90f91ad5c6bd7f05.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rnbv1yye4I2Iq8X5IQPR1BaPWLo=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.002132+00 2025-12-09 10:14:53.002136+00 6679 JT9091#S SPMX-20240815301831 \N \N \N 1 \N [{"file_id": "70ee37af-6240-44d4-bac1-86f9ba8d10a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d011de50cbe84933a30c0494f0b0f0fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d011de50cbe84933a30c0494f0b0f0fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d011de50cbe84933a30c0494f0b0f0fb.jpg", "file_size": 9791, "is_delete": false, "file_type": 1, "original_file_name": "JT9091#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d011de50cbe84933a30c0494f0b0f0fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d011de50cbe84933a30c0494f0b0f0fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d011de50cbe84933a30c0494f0b0f0fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d011de50cbe84933a30c0494f0b0f0fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d011de50cbe84933a30c0494f0b0f0fb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkFgy5_W4cv1v1I43vNOhyRrfZI=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.003468+00 2025-12-09 10:14:53.003472+00 6680 23-2103#A3前片4XL SPMX-20240815301830 \N \N \N 1 \N [{"file_id": "7d0d67f4-2c33-4ec7-92ec-15562ebef4c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg", "file_size": 11389, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3前片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab32e16b3bb4f99a49dfe21c0a9ea8e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AbB0JXMSRkogy80pNOijWA5PIko=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.004784+00 2025-12-09 10:14:53.004789+00 6681 C281-1#彩兰 SPMX-20240815301833 \N \N \N 1 \N [{"file_id": "c2e522f2-a352-4e3f-b5c6-b5b16de1a59a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57bc93490e29475bad710532faab38bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57bc93490e29475bad710532faab38bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57bc93490e29475bad710532faab38bf.jpg", "file_size": 23083, "is_delete": false, "file_type": 1, "original_file_name": "C281-1#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bc93490e29475bad710532faab38bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bc93490e29475bad710532faab38bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bc93490e29475bad710532faab38bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57bc93490e29475bad710532faab38bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57bc93490e29475bad710532faab38bf.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pgo_gl2ZZfVXCIvwY4wcMpCXGVA=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.006103+00 2025-12-09 10:14:53.006107+00 6682 LZ1230#童装上身3号色 SPMX-20240815301837 \N \N \N 1 \N [{"file_id": "fd155c92-9f11-4e99-af96-4bf2781fb162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf3ff72e6284139968ba1ac23cb2ba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf3ff72e6284139968ba1ac23cb2ba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf3ff72e6284139968ba1ac23cb2ba7.jpg", "file_size": 20827, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf3ff72e6284139968ba1ac23cb2ba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf3ff72e6284139968ba1ac23cb2ba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf3ff72e6284139968ba1ac23cb2ba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf3ff72e6284139968ba1ac23cb2ba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf3ff72e6284139968ba1ac23cb2ba7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3d9FDyD0e6zU4RHiNWDNBCb5rU=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.007442+00 2025-12-09 10:14:53.007446+00 6683 8013FWF#童8 SPMX-20240815301835 \N \N \N 1 \N [{"file_id": "cce20870-55da-416f-ba8d-443f13b76d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec19d775319a4f2b85f04a3837737ac9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec19d775319a4f2b85f04a3837737ac9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec19d775319a4f2b85f04a3837737ac9.jpg", "file_size": 8659, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec19d775319a4f2b85f04a3837737ac9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec19d775319a4f2b85f04a3837737ac9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec19d775319a4f2b85f04a3837737ac9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec19d775319a4f2b85f04a3837737ac9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec19d775319a4f2b85f04a3837737ac9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sl29hB4r7grvYhLXH7vdqgkJdL0=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.008797+00 2025-12-09 10:14:53.008801+00 6684 0003-25FWF#V5曲线 SPMX-20240815301832 \N \N \N 1 \N [{"file_id": "e8fa46d6-d066-482e-9228-cf5d46a6bea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f376087a3db4c14851abcfa14ee3b60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f376087a3db4c14851abcfa14ee3b60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f376087a3db4c14851abcfa14ee3b60.jpg", "file_size": 11563, "is_delete": false, "file_type": 1, "original_file_name": "0003-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f376087a3db4c14851abcfa14ee3b60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f376087a3db4c14851abcfa14ee3b60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f376087a3db4c14851abcfa14ee3b60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f376087a3db4c14851abcfa14ee3b60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f376087a3db4c14851abcfa14ee3b60.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rYreAsqU8Nxx1NIuVPWNShOoDs=", "createTime": "2024-08-15 14:44:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.010131+00 2025-12-09 10:14:53.010135+00 6685 DJ18128#2XL SPMX-20240815301834 \N \N \N 1 \N [{"file_id": "29a3adf1-fd4e-48fa-9553-253518ceb3e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04179cbaa24e411b8bfd7e014d0591d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04179cbaa24e411b8bfd7e014d0591d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04179cbaa24e411b8bfd7e014d0591d1.jpg", "file_size": 58237, "is_delete": false, "file_type": 1, "original_file_name": "DJ18128#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04179cbaa24e411b8bfd7e014d0591d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04179cbaa24e411b8bfd7e014d0591d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04179cbaa24e411b8bfd7e014d0591d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04179cbaa24e411b8bfd7e014d0591d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04179cbaa24e411b8bfd7e014d0591d1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebTcRgJHULTAap_ClP9xotlymC8=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.011461+00 2025-12-09 10:14:53.011465+00 6686 LHJ9449#25号土黄 SPMX-20240815301836 \N \N \N 1 \N [{"file_id": "f32447bb-606e-4947-8cef-5311df06eae4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87da4f50e753455e9843a835ebd93417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87da4f50e753455e9843a835ebd93417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87da4f50e753455e9843a835ebd93417.jpg", "file_size": 14231, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#25号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87da4f50e753455e9843a835ebd93417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87da4f50e753455e9843a835ebd93417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87da4f50e753455e9843a835ebd93417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87da4f50e753455e9843a835ebd93417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87da4f50e753455e9843a835ebd93417.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fDMyZ4ibCTQJttZt4ihiilXFc-M=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.012803+00 2025-12-09 10:14:53.012807+00 6687 106#+106-1#-125A绿色 SPMX-20240815301839 \N \N \N 1 \N [{"file_id": "51378d01-3c8c-48ca-aa9d-3d61bbbd3345", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0edd05ea184655bf0e2142b57e675d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0edd05ea184655bf0e2142b57e675d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0edd05ea184655bf0e2142b57e675d.jpg", "file_size": 68060, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0edd05ea184655bf0e2142b57e675d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0edd05ea184655bf0e2142b57e675d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0edd05ea184655bf0e2142b57e675d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0edd05ea184655bf0e2142b57e675d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0edd05ea184655bf0e2142b57e675d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCVxUScxWeLRey297GaNuzxnJ7c=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.014124+00 2025-12-09 10:14:53.014127+00 6688 FHXGPK-057-1 SPMX-20240815301838 \N \N \N 1 \N [{"file_id": "5ea45dd2-b3a2-45a2-8253-b59ee9013d72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfcbee2014f844b0a809fbeb316c7768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfcbee2014f844b0a809fbeb316c7768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfcbee2014f844b0a809fbeb316c7768.jpg", "file_size": 30304, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-057-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcbee2014f844b0a809fbeb316c7768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcbee2014f844b0a809fbeb316c7768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcbee2014f844b0a809fbeb316c7768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfcbee2014f844b0a809fbeb316c7768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfcbee2014f844b0a809fbeb316c7768.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrjcwldgdQgX5FA0Y_W2qbEf5EI=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.015456+00 2025-12-09 10:14:53.01546+00 6689 23-2103#A3前片补4XL SPMX-20240815301840 \N \N \N 1 \N [{"file_id": "12f93508-6d63-4d27-9f4f-fcea11be1de8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74679413ee064b8c8dc336017ec91267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74679413ee064b8c8dc336017ec91267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74679413ee064b8c8dc336017ec91267.jpg", "file_size": 12064, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3前片补4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74679413ee064b8c8dc336017ec91267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74679413ee064b8c8dc336017ec91267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74679413ee064b8c8dc336017ec91267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74679413ee064b8c8dc336017ec91267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74679413ee064b8c8dc336017ec91267.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0w9h_7WZhqDeAcLxJzkIzCynj6g=", "createTime": "2024-08-15 14:44:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.016785+00 2025-12-09 10:14:53.016789+00 6690 0003-26FWF#上身乱花 SPMX-20240815301852 \N \N \N 1 \N [{"file_id": "4e7943bf-9787-4386-9128-e47135b58288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f35de04dd8664452a25a0a26142e79a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f35de04dd8664452a25a0a26142e79a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f35de04dd8664452a25a0a26142e79a4.jpg", "file_size": 20613, "is_delete": false, "file_type": 1, "original_file_name": "0003-26FWF#上身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35de04dd8664452a25a0a26142e79a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35de04dd8664452a25a0a26142e79a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35de04dd8664452a25a0a26142e79a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f35de04dd8664452a25a0a26142e79a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f35de04dd8664452a25a0a26142e79a4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3Riq2YhYPCV3b2Z-0LhUu2hAB8=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.018141+00 2025-12-09 10:14:53.018145+00 6691 LZ1230#童装上身4号色 SPMX-20240815301850 \N \N \N 1 \N [{"file_id": "88ff972d-0818-4bf4-9385-6056afb1fff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88ab785649b14bfea49a451e75002652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88ab785649b14bfea49a451e75002652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88ab785649b14bfea49a451e75002652.jpg", "file_size": 19941, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ab785649b14bfea49a451e75002652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ab785649b14bfea49a451e75002652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ab785649b14bfea49a451e75002652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88ab785649b14bfea49a451e75002652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88ab785649b14bfea49a451e75002652.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KP0wYKp0eVxNVUWNYdQvVqdw5eM=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.019478+00 2025-12-09 10:14:53.019482+00 6692 JT9091#半裙 SPMX-20240815301842 \N \N \N 1 \N [{"file_id": "f2f05b0d-ab00-4ca8-9ee8-4a9cce3494dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2739b852b1444528f46ff5e1eeafad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2739b852b1444528f46ff5e1eeafad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2739b852b1444528f46ff5e1eeafad8.jpg", "file_size": 16966, "is_delete": false, "file_type": 1, "original_file_name": "JT9091#半裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739b852b1444528f46ff5e1eeafad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739b852b1444528f46ff5e1eeafad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739b852b1444528f46ff5e1eeafad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2739b852b1444528f46ff5e1eeafad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2739b852b1444528f46ff5e1eeafad8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2vcmiKmsUw0RtEGs0XhtfDS0mA=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.02082+00 2025-12-09 10:14:53.020824+00 6693 LHJ9449#33号西瓜红 SPMX-20240815301848 \N \N \N 1 \N [{"file_id": "2dde10d3-cb88-4faa-9364-98763147ddcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90b1094abfd7437ab0cd72a7b3f6081a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90b1094abfd7437ab0cd72a7b3f6081a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90b1094abfd7437ab0cd72a7b3f6081a.jpg", "file_size": 12110, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#33号西瓜红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b1094abfd7437ab0cd72a7b3f6081a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b1094abfd7437ab0cd72a7b3f6081a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b1094abfd7437ab0cd72a7b3f6081a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90b1094abfd7437ab0cd72a7b3f6081a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90b1094abfd7437ab0cd72a7b3f6081a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLiVg1BSr50Qw-ut-ZYv_OI6-3I=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.022144+00 2025-12-09 10:14:53.022148+00 6694 DJ21814#上衣M SPMX-20240815301849 \N \N \N 1 \N [{"file_id": "87038c90-6795-48c2-b84e-693d20aa0bf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d81df2eab234e3cbad305e0b32f34f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d81df2eab234e3cbad305e0b32f34f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d81df2eab234e3cbad305e0b32f34f7.jpg", "file_size": 46115, "is_delete": false, "file_type": 1, "original_file_name": "DJ21814#上衣M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d81df2eab234e3cbad305e0b32f34f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d81df2eab234e3cbad305e0b32f34f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d81df2eab234e3cbad305e0b32f34f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d81df2eab234e3cbad305e0b32f34f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d81df2eab234e3cbad305e0b32f34f7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UkpH-DJQ1VPuFYBkwJsalDDq0_Q=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.023513+00 2025-12-09 10:14:53.023516+00 6695 FHXGPK-057-2 SPMX-20240815301851 \N \N \N 1 \N [{"file_id": "b8b805a6-fa71-48c8-8069-8b9aff1f2ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54a0b6ce8b82456eaff4295b65895aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54a0b6ce8b82456eaff4295b65895aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54a0b6ce8b82456eaff4295b65895aaa.jpg", "file_size": 31120, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-057-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a0b6ce8b82456eaff4295b65895aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a0b6ce8b82456eaff4295b65895aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a0b6ce8b82456eaff4295b65895aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54a0b6ce8b82456eaff4295b65895aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54a0b6ce8b82456eaff4295b65895aaa.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-W9rmih2UAoWwYkuZV9B6CkHJyk=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.024834+00 2025-12-09 10:14:53.024837+00 6696 0003-26FWE#VS-D3 SPMX-20240815301841 \N \N \N 1 \N [{"file_id": "40e9aa74-f93e-4268-97d0-f1793c3a34f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "393ad11cc73449ed807f8e02032bf23b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "393ad11cc73449ed807f8e02032bf23b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "393ad11cc73449ed807f8e02032bf23b.jpg", "file_size": 12023, "is_delete": false, "file_type": 1, "original_file_name": "0003-26FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393ad11cc73449ed807f8e02032bf23b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393ad11cc73449ed807f8e02032bf23b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393ad11cc73449ed807f8e02032bf23b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/393ad11cc73449ed807f8e02032bf23b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/393ad11cc73449ed807f8e02032bf23b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Une3aD0_elyFMUOkLN_QRM-cXOY=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.026157+00 2025-12-09 10:14:53.026161+00 6697 23-2103#A3后片3XL SPMX-20240815301843 \N \N \N 1 \N [{"file_id": "1d003140-a1fb-4c5c-9a1d-4b48af8be88f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89b1103f8d3446e7ba47ae600bb58d23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89b1103f8d3446e7ba47ae600bb58d23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89b1103f8d3446e7ba47ae600bb58d23.jpg", "file_size": 8270, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b1103f8d3446e7ba47ae600bb58d23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b1103f8d3446e7ba47ae600bb58d23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b1103f8d3446e7ba47ae600bb58d23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89b1103f8d3446e7ba47ae600bb58d23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89b1103f8d3446e7ba47ae600bb58d23.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7buC9iftbMSmQ16C_kAF5ouK6k=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.027482+00 2025-12-09 10:14:53.027486+00 6698 106#+106-1#-125A蓝色 SPMX-20240815301847 \N \N \N 1 \N [{"file_id": "bde4d8cc-c048-4c79-bcf9-0838582f0e9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c59190c729fa43f1aec733c942c1f363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c59190c729fa43f1aec733c942c1f363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c59190c729fa43f1aec733c942c1f363.jpg", "file_size": 68086, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#-125A蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c59190c729fa43f1aec733c942c1f363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c59190c729fa43f1aec733c942c1f363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c59190c729fa43f1aec733c942c1f363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c59190c729fa43f1aec733c942c1f363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c59190c729fa43f1aec733c942c1f363.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5O_Sg1usj9ZIYdCd6P4mE0XNeM=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.028834+00 2025-12-09 10:14:53.028838+00 6699 C281-1#橙色 SPMX-20240815301844 \N \N \N 1 \N [{"file_id": "0100293a-1874-425c-98d3-f770f914377f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef6b4a6e93d54554b7b721ded62ba6b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef6b4a6e93d54554b7b721ded62ba6b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef6b4a6e93d54554b7b721ded62ba6b2.jpg", "file_size": 20820, "is_delete": false, "file_type": 1, "original_file_name": "C281-1#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6b4a6e93d54554b7b721ded62ba6b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6b4a6e93d54554b7b721ded62ba6b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6b4a6e93d54554b7b721ded62ba6b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef6b4a6e93d54554b7b721ded62ba6b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef6b4a6e93d54554b7b721ded62ba6b2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hoP_pNkKsAwsjEPsKqMBKWODqIE=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.030167+00 2025-12-09 10:14:53.030171+00 6700 8013FWF#童8T SPMX-20240815301845 \N \N \N 1 \N [{"file_id": "8dfdc8bc-f7bd-4803-a323-0193ec331fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90dec474736f4b3eb702c704f9f69c96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90dec474736f4b3eb702c704f9f69c96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90dec474736f4b3eb702c704f9f69c96.jpg", "file_size": 8852, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#童8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90dec474736f4b3eb702c704f9f69c96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90dec474736f4b3eb702c704f9f69c96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90dec474736f4b3eb702c704f9f69c96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90dec474736f4b3eb702c704f9f69c96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90dec474736f4b3eb702c704f9f69c96.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzuHSJjA3Ji2foRK681QpZXJcA8=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.031668+00 2025-12-09 10:14:53.031673+00 6701 HT008#黑VS-D3 SPMX-20240815301846 \N \N \N 1 \N [{"file_id": "664a7680-e01c-4582-8f2d-685e4fe70a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3d511c54ec64b47b647a53c3d5e650a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3d511c54ec64b47b647a53c3d5e650a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3d511c54ec64b47b647a53c3d5e650a.jpg", "file_size": 17708, "is_delete": false, "file_type": 1, "original_file_name": "HT008#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d511c54ec64b47b647a53c3d5e650a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d511c54ec64b47b647a53c3d5e650a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d511c54ec64b47b647a53c3d5e650a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3d511c54ec64b47b647a53c3d5e650a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3d511c54ec64b47b647a53c3d5e650a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgPGqHvJUm8GXoelmvk4ImUr7jk=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.038578+00 2025-12-09 10:14:53.038582+00 6706 JT9098#L SPMX-20240815301865 \N \N \N 1 \N [{"file_id": "9c75a892-c661-40ac-acbf-b5ad7ddc9336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c37c81c267b46dbbd740c816e721441.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c37c81c267b46dbbd740c816e721441.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c37c81c267b46dbbd740c816e721441.jpg", "file_size": 15333, "is_delete": false, "file_type": 1, "original_file_name": "JT9098#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c37c81c267b46dbbd740c816e721441.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c37c81c267b46dbbd740c816e721441.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c37c81c267b46dbbd740c816e721441.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c37c81c267b46dbbd740c816e721441.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c37c81c267b46dbbd740c816e721441.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vS5bIjZ4l1CgwInP9FvbAIM7Cg0=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.033081+00 2025-12-09 10:14:53.033084+00 6702 LZ1230#童装上身5号色 SPMX-20240815301860 \N \N \N 1 \N [{"file_id": "24466221-2d02-4848-b3f0-c44b789e8ba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b58136d7f046438199713630f91c9fe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b58136d7f046438199713630f91c9fe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b58136d7f046438199713630f91c9fe3.jpg", "file_size": 19981, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b58136d7f046438199713630f91c9fe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b58136d7f046438199713630f91c9fe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b58136d7f046438199713630f91c9fe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b58136d7f046438199713630f91c9fe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b58136d7f046438199713630f91c9fe3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VR165qIUDPshURD7mBvY4DV_8aU=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.034476+00 2025-12-09 10:14:53.034481+00 6703 DJ5055#L码 SPMX-20240815301861 \N \N \N 1 \N [{"file_id": "8ab32114-d7c2-4bf7-aa0d-0531d16ff281", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1ff403fb1ea4d38be53711bb9cbb8bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1ff403fb1ea4d38be53711bb9cbb8bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1ff403fb1ea4d38be53711bb9cbb8bb.jpg", "file_size": 22389, "is_delete": false, "file_type": 1, "original_file_name": "DJ5055#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ff403fb1ea4d38be53711bb9cbb8bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ff403fb1ea4d38be53711bb9cbb8bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ff403fb1ea4d38be53711bb9cbb8bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1ff403fb1ea4d38be53711bb9cbb8bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1ff403fb1ea4d38be53711bb9cbb8bb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gh40WpwLnUL12UTYDI-Y1WwjNKY=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.035852+00 2025-12-09 10:14:53.035856+00 6704 106#+106-1#橙色 SPMX-20240815301859 \N \N \N 1 \N [{"file_id": "fc4da2b8-1b3e-4ec7-bffa-4a8dc222aa64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2f1e8942d894f6da4fcf8b24250f215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2f1e8942d894f6da4fcf8b24250f215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2f1e8942d894f6da4fcf8b24250f215.jpg", "file_size": 54922, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f1e8942d894f6da4fcf8b24250f215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f1e8942d894f6da4fcf8b24250f215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f1e8942d894f6da4fcf8b24250f215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2f1e8942d894f6da4fcf8b24250f215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2f1e8942d894f6da4fcf8b24250f215.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsMESybAv-Wd5M1krB7b21033GA=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.037231+00 2025-12-09 10:14:53.037235+00 6705 0003-26FWF#中间乱花 SPMX-20240815301862 \N \N \N 1 \N [{"file_id": "1730e05b-e091-4be7-8f6e-379604ee9e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e55d0fdca95491097245e939d5914fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e55d0fdca95491097245e939d5914fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e55d0fdca95491097245e939d5914fa.jpg", "file_size": 11357, "is_delete": false, "file_type": 1, "original_file_name": "0003-26FWF#中间乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e55d0fdca95491097245e939d5914fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e55d0fdca95491097245e939d5914fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e55d0fdca95491097245e939d5914fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e55d0fdca95491097245e939d5914fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e55d0fdca95491097245e939d5914fa.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pg9h9Xb78ySz2tb2AhLmJc2hiac=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.039958+00 2025-12-09 10:14:53.039962+00 6707 JT9091#后幅净色 SPMX-20240815301853 \N \N \N 1 \N [{"file_id": "04513d5c-7ec4-493d-8178-eaad50104d19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f3471db57f44b99068e3dd18f966cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f3471db57f44b99068e3dd18f966cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f3471db57f44b99068e3dd18f966cb.jpg", "file_size": 8523, "is_delete": false, "file_type": 1, "original_file_name": "JT9091#后幅净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f3471db57f44b99068e3dd18f966cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f3471db57f44b99068e3dd18f966cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f3471db57f44b99068e3dd18f966cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f3471db57f44b99068e3dd18f966cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f3471db57f44b99068e3dd18f966cb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lu7huQu7M1HAs5xNcbwLPQ8IMA=", "createTime": "2024-08-15 14:44:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.041388+00 2025-12-09 10:14:53.041392+00 6708 23-2103#A3后片4XL SPMX-20240815301854 \N \N \N 1 \N [{"file_id": "bae8d651-7d39-4020-a89c-9334f4dcfa53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc641dfe88be4f5890f12ce3bec3b4f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc641dfe88be4f5890f12ce3bec3b4f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc641dfe88be4f5890f12ce3bec3b4f8.jpg", "file_size": 8433, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc641dfe88be4f5890f12ce3bec3b4f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc641dfe88be4f5890f12ce3bec3b4f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc641dfe88be4f5890f12ce3bec3b4f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc641dfe88be4f5890f12ce3bec3b4f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc641dfe88be4f5890f12ce3bec3b4f8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHQA4bUcWGtHXbdQZ29UXoUueBw=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.042764+00 2025-12-09 10:14:53.042769+00 6709 LHJ9449#49号粉 SPMX-20240815301857 \N \N \N 1 \N [{"file_id": "4bfb688f-035b-4b0e-9aaa-01500ccce415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bccefde54664f63aed797faf598b33f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bccefde54664f63aed797faf598b33f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bccefde54664f63aed797faf598b33f.jpg", "file_size": 9709, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#49号粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bccefde54664f63aed797faf598b33f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bccefde54664f63aed797faf598b33f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bccefde54664f63aed797faf598b33f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bccefde54664f63aed797faf598b33f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bccefde54664f63aed797faf598b33f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tt6jZl5OZtnyKpR9MpjWY_2W67Y=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.044138+00 2025-12-09 10:14:53.044142+00 6710 C281-1#黑色 SPMX-20240815301855 \N \N \N 1 \N [{"file_id": "b96d519d-c769-4242-8424-7530b239193d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56a12cb59fca406290143ceb4f4d608d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56a12cb59fca406290143ceb4f4d608d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56a12cb59fca406290143ceb4f4d608d.jpg", "file_size": 24231, "is_delete": false, "file_type": 1, "original_file_name": "C281-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12cb59fca406290143ceb4f4d608d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12cb59fca406290143ceb4f4d608d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a12cb59fca406290143ceb4f4d608d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56a12cb59fca406290143ceb4f4d608d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56a12cb59fca406290143ceb4f4d608d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHeqERo-AIfh9mm0sHhEdEaPxxA=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.04551+00 2025-12-09 10:14:53.045514+00 6711 23-2103#A3袖子3XL SPMX-20240815301864 \N \N \N 1 \N [{"file_id": "4df42308-717a-40a6-adc3-a6de8050c0ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f733354bba4d4bf0a97498fd8757d6b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f733354bba4d4bf0a97498fd8757d6b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f733354bba4d4bf0a97498fd8757d6b3.jpg", "file_size": 8461, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f733354bba4d4bf0a97498fd8757d6b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f733354bba4d4bf0a97498fd8757d6b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f733354bba4d4bf0a97498fd8757d6b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f733354bba4d4bf0a97498fd8757d6b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f733354bba4d4bf0a97498fd8757d6b3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xW-hVXqj8F6EhVeCjp9EHMOtiwo=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.046889+00 2025-12-09 10:14:53.046893+00 6712 FHXGPK-057-3 SPMX-20240815301863 \N \N \N 1 \N [{"file_id": "7eb8ba21-3ac4-4b38-b18c-a2bc48ea2205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c99ccd0f7a641a09d689168a1ee7344.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c99ccd0f7a641a09d689168a1ee7344.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c99ccd0f7a641a09d689168a1ee7344.jpg", "file_size": 33525, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-057-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c99ccd0f7a641a09d689168a1ee7344.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c99ccd0f7a641a09d689168a1ee7344.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c99ccd0f7a641a09d689168a1ee7344.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c99ccd0f7a641a09d689168a1ee7344.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c99ccd0f7a641a09d689168a1ee7344.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVWNRntyYp3K-AMtA4tWMbuK1vQ=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.048258+00 2025-12-09 10:14:53.048262+00 6713 80145#上衣前幅 SPMX-20240815301868 \N \N \N 1 \N [{"file_id": "b228b9ac-b7b3-4037-9fc7-989d8ea25730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45f022760c9b4edcaf22b8a33bdbccc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45f022760c9b4edcaf22b8a33bdbccc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45f022760c9b4edcaf22b8a33bdbccc3.jpg", "file_size": 19201, "is_delete": false, "file_type": 1, "original_file_name": "80145#上衣前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f022760c9b4edcaf22b8a33bdbccc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f022760c9b4edcaf22b8a33bdbccc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f022760c9b4edcaf22b8a33bdbccc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45f022760c9b4edcaf22b8a33bdbccc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45f022760c9b4edcaf22b8a33bdbccc3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dr68Wp66mllBPBnL7mNyBtwlSBE=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.049626+00 2025-12-09 10:14:53.049631+00 6714 8013FWF#裤子匹布 SPMX-20240815301858 \N \N \N 1 \N [{"file_id": "9ab361bd-2382-41ba-9f1d-3837597dfc70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "523f50488f4d4a439779f0135608d3e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "523f50488f4d4a439779f0135608d3e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "523f50488f4d4a439779f0135608d3e1.jpg", "file_size": 66795, "is_delete": false, "file_type": 1, "original_file_name": "8013FWF#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523f50488f4d4a439779f0135608d3e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523f50488f4d4a439779f0135608d3e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523f50488f4d4a439779f0135608d3e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/523f50488f4d4a439779f0135608d3e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/523f50488f4d4a439779f0135608d3e1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKFeOWWbmwCpnZIvA8ROIA3fhQc=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.050995+00 2025-12-09 10:14:53.051+00 6715 C282#原版色 SPMX-20240815301867 \N \N \N 1 \N [{"file_id": "cc015b4d-8ce5-4945-a1f1-83d3562eee99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5288a5024d5448f3b37b8d7ce0e4a9fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5288a5024d5448f3b37b8d7ce0e4a9fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5288a5024d5448f3b37b8d7ce0e4a9fa.jpg", "file_size": 18354, "is_delete": false, "file_type": 1, "original_file_name": "C282#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5288a5024d5448f3b37b8d7ce0e4a9fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5288a5024d5448f3b37b8d7ce0e4a9fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5288a5024d5448f3b37b8d7ce0e4a9fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5288a5024d5448f3b37b8d7ce0e4a9fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5288a5024d5448f3b37b8d7ce0e4a9fa.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mk7xuONx9RRVgBlcyurPvA4cTBg=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.052378+00 2025-12-09 10:14:53.052382+00 6716 HT008FW#VS-D3粉 SPMX-20240815301856 \N \N \N 1 \N [{"file_id": "0d19cc44-3cce-41d7-b313-1f31e311a02f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a863bba833444f2bf31b7d190939b17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a863bba833444f2bf31b7d190939b17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a863bba833444f2bf31b7d190939b17.jpg", "file_size": 15353, "is_delete": false, "file_type": 1, "original_file_name": "HT008FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863bba833444f2bf31b7d190939b17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863bba833444f2bf31b7d190939b17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863bba833444f2bf31b7d190939b17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a863bba833444f2bf31b7d190939b17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a863bba833444f2bf31b7d190939b17.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5Yzkdf65dCvtWk1perlru15XaI=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.053753+00 2025-12-09 10:14:53.053757+00 6717 HT008FWE#红VS-D3 SPMX-20240815301866 \N \N \N 1 \N [{"file_id": "90446bcb-5c04-41be-9134-ec7d3a21b712", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3967d7de9081410a87e509c560736d58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3967d7de9081410a87e509c560736d58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3967d7de9081410a87e509c560736d58.jpg", "file_size": 16498, "is_delete": false, "file_type": 1, "original_file_name": "HT008FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3967d7de9081410a87e509c560736d58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3967d7de9081410a87e509c560736d58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3967d7de9081410a87e509c560736d58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3967d7de9081410a87e509c560736d58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3967d7de9081410a87e509c560736d58.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1Z9wbp6XX9xUN6sYy1vF0atjkc=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.055102+00 2025-12-09 10:14:53.055106+00 6718 LZ1230#童装上身6号色 SPMX-20240815301871 \N \N \N 1 \N [{"file_id": "03c6ad8a-40dc-41df-abe7-9f129491e0e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a13b4771e464f94805f67fc3695d124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a13b4771e464f94805f67fc3695d124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a13b4771e464f94805f67fc3695d124.jpg", "file_size": 19514, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装上身6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a13b4771e464f94805f67fc3695d124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a13b4771e464f94805f67fc3695d124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a13b4771e464f94805f67fc3695d124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a13b4771e464f94805f67fc3695d124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a13b4771e464f94805f67fc3695d124.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8f8OBstxMgWuZf4n9YedKXRpkGs=", "createTime": "2024-08-15 14:44:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.056474+00 2025-12-09 10:14:53.056479+00 6719 106#+106-1#玫红 SPMX-20240815301870 \N \N \N 1 \N [{"file_id": "5bb492ef-5d33-41e1-b0aa-1e02faa70304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "826e0c48548044228ec4611f09a943e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "826e0c48548044228ec4611f09a943e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "826e0c48548044228ec4611f09a943e0.jpg", "file_size": 52251, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826e0c48548044228ec4611f09a943e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826e0c48548044228ec4611f09a943e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826e0c48548044228ec4611f09a943e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/826e0c48548044228ec4611f09a943e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/826e0c48548044228ec4611f09a943e0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h70J9d9sSeexgTr8hH-OxaEjlKo=", "createTime": "2024-08-15 14:44:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.057888+00 2025-12-09 10:14:53.057892+00 6720 LHJ9449#5号彩兰 SPMX-20240815301869 \N \N \N 1 \N [{"file_id": "9b12c657-ddea-4162-bd87-d70049902076", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "250083987162430f84302e7343138627.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "250083987162430f84302e7343138627.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "250083987162430f84302e7343138627.jpg", "file_size": 15745, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9449#5号彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250083987162430f84302e7343138627.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250083987162430f84302e7343138627.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250083987162430f84302e7343138627.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/250083987162430f84302e7343138627.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/250083987162430f84302e7343138627.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxF8giH8njp01Ou6T0JgqNQ308o=", "createTime": "2024-08-15 14:44:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.059311+00 2025-12-09 10:14:53.059316+00 6721 HT009# SPMX-20240815301878 \N \N \N 1 \N [{"file_id": "ca48c825-51dc-4f5c-b601-c4fc1d51db29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cba5c0193b34e998db81d546ebc69e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cba5c0193b34e998db81d546ebc69e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cba5c0193b34e998db81d546ebc69e2.jpg", "file_size": 13813, "is_delete": false, "file_type": 1, "original_file_name": "HT009#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cba5c0193b34e998db81d546ebc69e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cba5c0193b34e998db81d546ebc69e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cba5c0193b34e998db81d546ebc69e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cba5c0193b34e998db81d546ebc69e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cba5c0193b34e998db81d546ebc69e2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ki_oJ5l6-PpaFlq8qU1lEVzvcnQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.060688+00 2025-12-09 10:14:53.060692+00 6722 23-2103#A3领子通用 SPMX-20240815301883 \N \N \N 1 \N [{"file_id": "6d7a985f-c2d7-4d62-8d0f-7dfc9b2faf29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg", "file_size": 10693, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b72e0bfd8e8f400aaea0e8ac7b2a4b86.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8ZR8TueKwRC8qJz3AcKHuI27Rk=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.062068+00 2025-12-09 10:14:53.062072+00 6723 FHXGPK-057-4 SPMX-20240815301877 \N \N \N 1 \N [{"file_id": "0572a51b-183c-4d1c-9375-3d168bc5fec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3054b14e4d442fcbc1447d3362ce4a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3054b14e4d442fcbc1447d3362ce4a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3054b14e4d442fcbc1447d3362ce4a8.jpg", "file_size": 31855, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-057-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3054b14e4d442fcbc1447d3362ce4a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3054b14e4d442fcbc1447d3362ce4a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3054b14e4d442fcbc1447d3362ce4a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3054b14e4d442fcbc1447d3362ce4a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3054b14e4d442fcbc1447d3362ce4a8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJYnFw4pjE3sfh4DnmSqvM4JkdQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.063434+00 2025-12-09 10:14:53.063438+00 6724 80145#乱花批布 SPMX-20240815301882 \N \N \N 1 \N [{"file_id": "c944c7b3-dd35-4875-a343-8d8eb6fab77c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbe4ea09ea76418eb3c4c4c00af022d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbe4ea09ea76418eb3c4c4c00af022d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbe4ea09ea76418eb3c4c4c00af022d0.jpg", "file_size": 22049, "is_delete": false, "file_type": 1, "original_file_name": "80145#乱花批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe4ea09ea76418eb3c4c4c00af022d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe4ea09ea76418eb3c4c4c00af022d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe4ea09ea76418eb3c4c4c00af022d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbe4ea09ea76418eb3c4c4c00af022d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbe4ea09ea76418eb3c4c4c00af022d0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKIqY6TWaanW08UihVGVFBhUqbQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.064813+00 2025-12-09 10:14:53.064818+00 6725 DK-001-1-2件 SPMX-20240815301872 \N \N \N 1 \N [{"file_id": "46104483-49bc-4849-9e36-7aea68ab8b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb286e84585641799a5cc60efff2c75f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb286e84585641799a5cc60efff2c75f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb286e84585641799a5cc60efff2c75f.jpg", "file_size": 22829, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-1-2件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb286e84585641799a5cc60efff2c75f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb286e84585641799a5cc60efff2c75f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb286e84585641799a5cc60efff2c75f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb286e84585641799a5cc60efff2c75f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb286e84585641799a5cc60efff2c75f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0Mi8TFFCgfxbl7OgU39c-e4IIU=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.066203+00 2025-12-09 10:14:53.066208+00 6726 LHJ9450-1FW#童装118号蓝色VS-D3 SPMX-20240815301880 \N \N \N 1 \N [{"file_id": "d6f9d6dd-dafc-4e34-86f5-ac0a7a9398f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1700051cdb04e0d9f7054f57f81ed3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1700051cdb04e0d9f7054f57f81ed3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1700051cdb04e0d9f7054f57f81ed3d.jpg", "file_size": 17879, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装118号蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1700051cdb04e0d9f7054f57f81ed3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1700051cdb04e0d9f7054f57f81ed3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1700051cdb04e0d9f7054f57f81ed3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1700051cdb04e0d9f7054f57f81ed3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1700051cdb04e0d9f7054f57f81ed3d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qDmIIR1r4_9IhwW9tWnotai3OxQ=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.067562+00 2025-12-09 10:14:53.067566+00 6727 106#+106-1#玫红色 SPMX-20240815301881 \N \N \N 1 \N [{"file_id": "344f9361-69c9-4396-a384-fb75051b02ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2096c51842fd450cadaa1653091c9b44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2096c51842fd450cadaa1653091c9b44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2096c51842fd450cadaa1653091c9b44.jpg", "file_size": 64011, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2096c51842fd450cadaa1653091c9b44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2096c51842fd450cadaa1653091c9b44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2096c51842fd450cadaa1653091c9b44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2096c51842fd450cadaa1653091c9b44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2096c51842fd450cadaa1653091c9b44.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UfaVnxGxO6B-c8g4WFspkpClhw0=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.068958+00 2025-12-09 10:14:53.068962+00 6728 LZ1230#童装下身1号色 SPMX-20240815301879 \N \N \N 1 \N [{"file_id": "66d4db1b-ffd2-4073-99fa-e2eb6c348a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb241ca151d14c65b77b30ab4f8a5fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb241ca151d14c65b77b30ab4f8a5fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb241ca151d14c65b77b30ab4f8a5fe1.jpg", "file_size": 24855, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb241ca151d14c65b77b30ab4f8a5fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb241ca151d14c65b77b30ab4f8a5fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb241ca151d14c65b77b30ab4f8a5fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb241ca151d14c65b77b30ab4f8a5fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb241ca151d14c65b77b30ab4f8a5fe1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTmzf8GZ-MibosFanrFouo-aU2s=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.070335+00 2025-12-09 10:14:53.070338+00 6729 0003-27FWE#VS-D3 SPMX-20240815301873 \N \N \N 1 \N [{"file_id": "9ab53692-8ac6-43ff-9b71-8605b05c8b72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14e62d1e67364a30a560bc77a0c13273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14e62d1e67364a30a560bc77a0c13273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14e62d1e67364a30a560bc77a0c13273.jpg", "file_size": 13994, "is_delete": false, "file_type": 1, "original_file_name": "0003-27FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e62d1e67364a30a560bc77a0c13273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e62d1e67364a30a560bc77a0c13273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e62d1e67364a30a560bc77a0c13273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14e62d1e67364a30a560bc77a0c13273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14e62d1e67364a30a560bc77a0c13273.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGwQZysQ9b2IsyDn6Ln0mxdLKes=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.071701+00 2025-12-09 10:14:53.071709+00 6730 C282#大白底黑花 SPMX-20240815301875 \N \N \N 1 \N [{"file_id": "c797c8be-e28a-4d67-909b-b248f23c133f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b2f3be4452a452c819e3f94a6ae306b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b2f3be4452a452c819e3f94a6ae306b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b2f3be4452a452c819e3f94a6ae306b.jpg", "file_size": 25948, "is_delete": false, "file_type": 1, "original_file_name": "C282#大白底黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b2f3be4452a452c819e3f94a6ae306b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b2f3be4452a452c819e3f94a6ae306b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b2f3be4452a452c819e3f94a6ae306b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b2f3be4452a452c819e3f94a6ae306b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b2f3be4452a452c819e3f94a6ae306b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRcyGsvlA6avXNG_Fc6ZiA7u9pI=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.073065+00 2025-12-09 10:14:53.073069+00 6731 JT9098#M SPMX-20240815301876 \N \N \N 1 \N [{"file_id": "0b3dca5c-6753-4b68-a912-19b94f303ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "006f154e9cf7440b89904c0c297d51d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "006f154e9cf7440b89904c0c297d51d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "006f154e9cf7440b89904c0c297d51d4.jpg", "file_size": 15225, "is_delete": false, "file_type": 1, "original_file_name": "JT9098#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/006f154e9cf7440b89904c0c297d51d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/006f154e9cf7440b89904c0c297d51d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/006f154e9cf7440b89904c0c297d51d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/006f154e9cf7440b89904c0c297d51d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/006f154e9cf7440b89904c0c297d51d4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KZ904CKAgp007ZoDnVAyHtPab4=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.074416+00 2025-12-09 10:14:53.074421+00 6732 23-2103#A3袖子4XL SPMX-20240815301874 \N \N \N 1 \N [{"file_id": "efab4b26-1064-4305-9804-1bc7f9f2c608", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95fa281984bd4810b9b8b8c9345f8632.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95fa281984bd4810b9b8b8c9345f8632.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95fa281984bd4810b9b8b8c9345f8632.jpg", "file_size": 7821, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A3袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fa281984bd4810b9b8b8c9345f8632.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fa281984bd4810b9b8b8c9345f8632.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fa281984bd4810b9b8b8c9345f8632.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95fa281984bd4810b9b8b8c9345f8632.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95fa281984bd4810b9b8b8c9345f8632.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFhvvZrX-Zs8Og5uueKYUr_m4rw=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.075803+00 2025-12-09 10:14:53.075808+00 6733 C282#橙色 SPMX-20240815301886 \N \N \N 1 \N [{"file_id": "e6e4f178-a778-4153-82fb-1d841b79c522", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ce6af4f257e435ab380edbfb3ff4b82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ce6af4f257e435ab380edbfb3ff4b82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ce6af4f257e435ab380edbfb3ff4b82.jpg", "file_size": 22667, "is_delete": false, "file_type": 1, "original_file_name": "C282#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce6af4f257e435ab380edbfb3ff4b82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce6af4f257e435ab380edbfb3ff4b82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce6af4f257e435ab380edbfb3ff4b82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ce6af4f257e435ab380edbfb3ff4b82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ce6af4f257e435ab380edbfb3ff4b82.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHk6_OFiGIz_Y1vyZbPGedXL1cE=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.077166+00 2025-12-09 10:14:53.077171+00 6734 HT009FW#VS-D3浅青 SPMX-20240815301900 \N \N \N 1 \N [{"file_id": "5682eb86-bae4-4135-8bef-e5922646bab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "401ff7d8974c46238720deb508edb36b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "401ff7d8974c46238720deb508edb36b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "401ff7d8974c46238720deb508edb36b.jpg", "file_size": 15577, "is_delete": false, "file_type": 1, "original_file_name": "HT009FW#VS-D3浅青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401ff7d8974c46238720deb508edb36b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401ff7d8974c46238720deb508edb36b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401ff7d8974c46238720deb508edb36b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/401ff7d8974c46238720deb508edb36b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/401ff7d8974c46238720deb508edb36b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:En4zIf7g0uVGzkuXlzkpEg9YAf0=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.078521+00 2025-12-09 10:14:53.078524+00 6735 FHXGPK-057-5 SPMX-20240815301888 \N \N \N 1 \N [{"file_id": "e7044ec5-e7d2-4f29-aa72-c7e60297d146", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dddfbee1b404ccdac80798dce03c613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dddfbee1b404ccdac80798dce03c613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dddfbee1b404ccdac80798dce03c613.jpg", "file_size": 31746, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-057-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dddfbee1b404ccdac80798dce03c613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dddfbee1b404ccdac80798dce03c613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dddfbee1b404ccdac80798dce03c613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dddfbee1b404ccdac80798dce03c613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dddfbee1b404ccdac80798dce03c613.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWEWV186i4Ph3JSTkGzMch1x04w=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.07987+00 2025-12-09 10:14:53.079873+00 6736 JT9098#匹布 SPMX-20240815301899 \N \N \N 1 \N [{"file_id": "37fa7c2f-987f-4aad-81e5-f46b1abd40f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba8c2b21bb814195bb92c55976272c5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba8c2b21bb814195bb92c55976272c5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba8c2b21bb814195bb92c55976272c5f.jpg", "file_size": 13314, "is_delete": false, "file_type": 1, "original_file_name": "JT9098#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8c2b21bb814195bb92c55976272c5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8c2b21bb814195bb92c55976272c5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba8c2b21bb814195bb92c55976272c5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba8c2b21bb814195bb92c55976272c5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba8c2b21bb814195bb92c55976272c5f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzbHIm71Ulz2uPH6eTCHy0Ch2xM=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.081259+00 2025-12-09 10:14:53.081264+00 6737 0003-27FWF#V5曲线 SPMX-20240815301884 \N \N \N 1 \N [{"file_id": "82767038-caf5-4e56-bffc-62f365579cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75dd2aa394494427b9c971b120c749aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75dd2aa394494427b9c971b120c749aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75dd2aa394494427b9c971b120c749aa.jpg", "file_size": 19951, "is_delete": false, "file_type": 1, "original_file_name": "0003-27FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd2aa394494427b9c971b120c749aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd2aa394494427b9c971b120c749aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd2aa394494427b9c971b120c749aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75dd2aa394494427b9c971b120c749aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75dd2aa394494427b9c971b120c749aa.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dLL4wLw5EkrmSBWEAgZ2ROb-jBs=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.082621+00 2025-12-09 10:14:53.082625+00 6738 0003-28FWE#VS-D3 SPMX-20240815301894 \N \N \N 1 \N [{"file_id": "6e155d4c-4e43-4856-a7ca-3248a0206131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f074924b07448b0bcd20699c29fd2a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f074924b07448b0bcd20699c29fd2a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f074924b07448b0bcd20699c29fd2a5.jpg", "file_size": 15792, "is_delete": false, "file_type": 1, "original_file_name": "0003-28FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f074924b07448b0bcd20699c29fd2a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f074924b07448b0bcd20699c29fd2a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f074924b07448b0bcd20699c29fd2a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f074924b07448b0bcd20699c29fd2a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f074924b07448b0bcd20699c29fd2a5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fPuc1Jx-tNOlpCtv1J73FDkI1g=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.083998+00 2025-12-09 10:14:53.084002+00 6739 C282#白底红花 SPMX-20240815301896 \N \N \N 1 \N [{"file_id": "18a374ef-2191-4947-ad84-8e0214951769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62c5a7d92d444ee88efc703d159ed738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62c5a7d92d444ee88efc703d159ed738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62c5a7d92d444ee88efc703d159ed738.jpg", "file_size": 23886, "is_delete": false, "file_type": 1, "original_file_name": "C282#白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c5a7d92d444ee88efc703d159ed738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c5a7d92d444ee88efc703d159ed738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c5a7d92d444ee88efc703d159ed738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62c5a7d92d444ee88efc703d159ed738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62c5a7d92d444ee88efc703d159ed738.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmggYKXs8c937X9Rx0cYmM8ogrM=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.085343+00 2025-12-09 10:14:53.085348+00 6740 DK-001-1-批布 SPMX-20240815301885 \N \N \N 1 \N [{"file_id": "693cff35-e5a9-4beb-918a-29fe673a2344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56298d543ca44f159111af27604428e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56298d543ca44f159111af27604428e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56298d543ca44f159111af27604428e4.jpg", "file_size": 22661, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56298d543ca44f159111af27604428e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56298d543ca44f159111af27604428e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56298d543ca44f159111af27604428e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56298d543ca44f159111af27604428e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56298d543ca44f159111af27604428e4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxLgSOjgVCCvLruCOePRBvk1wmY=", "createTime": "2024-08-15 14:44:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.086717+00 2025-12-09 10:14:53.086721+00 6741 LZ1230#童装下身3号色 SPMX-20240815301901 \N \N \N 1 \N [{"file_id": "878a7207-9ae5-43de-bb3b-5d617183a524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b550e9448b64abbb0d4a4e1ef393fde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b550e9448b64abbb0d4a4e1ef393fde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b550e9448b64abbb0d4a4e1ef393fde.jpg", "file_size": 24882, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550e9448b64abbb0d4a4e1ef393fde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550e9448b64abbb0d4a4e1ef393fde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550e9448b64abbb0d4a4e1ef393fde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b550e9448b64abbb0d4a4e1ef393fde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b550e9448b64abbb0d4a4e1ef393fde.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_3lkm-nMShSoGd55zxBLYj1Lu0=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.088069+00 2025-12-09 10:14:53.088073+00 6742 JT9098#S SPMX-20240815301887 \N \N \N 1 \N [{"file_id": "bf4eb4d6-1a31-44fe-8620-88edb52097e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06ec0ed15ce14507841cc15bb23f0548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06ec0ed15ce14507841cc15bb23f0548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06ec0ed15ce14507841cc15bb23f0548.jpg", "file_size": 14640, "is_delete": false, "file_type": 1, "original_file_name": "JT9098#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ec0ed15ce14507841cc15bb23f0548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ec0ed15ce14507841cc15bb23f0548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ec0ed15ce14507841cc15bb23f0548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06ec0ed15ce14507841cc15bb23f0548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06ec0ed15ce14507841cc15bb23f0548.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:scauBkdForklDlZKe-3zZZfCNUQ=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.089434+00 2025-12-09 10:14:53.089437+00 6743 LHJ9450-1FW#童装20号枣红VS-D3 SPMX-20240815301891 \N \N \N 1 \N [{"file_id": "fccfa4e7-8bbc-4dc3-8eb6-f08ea3a03dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3e316e347d0474a82f2eaebfe2faee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3e316e347d0474a82f2eaebfe2faee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3e316e347d0474a82f2eaebfe2faee7.jpg", "file_size": 19912, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装20号枣红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e316e347d0474a82f2eaebfe2faee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e316e347d0474a82f2eaebfe2faee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e316e347d0474a82f2eaebfe2faee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3e316e347d0474a82f2eaebfe2faee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3e316e347d0474a82f2eaebfe2faee7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXsay-5SUxvFDJvkMMzysNR3CbY=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.090802+00 2025-12-09 10:14:53.090806+00 6744 FHXGPK-058-1 SPMX-20240815301898 \N \N \N 1 \N [{"file_id": "248402d5-20ca-4a93-89be-f6c2da630b9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62a9e2406c334a8698937aacee7fb1b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62a9e2406c334a8698937aacee7fb1b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62a9e2406c334a8698937aacee7fb1b0.jpg", "file_size": 26381, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-058-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a9e2406c334a8698937aacee7fb1b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a9e2406c334a8698937aacee7fb1b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a9e2406c334a8698937aacee7fb1b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62a9e2406c334a8698937aacee7fb1b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62a9e2406c334a8698937aacee7fb1b0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7J33RhgA1DvA_d69Rpw7BNdLa-w=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.092173+00 2025-12-09 10:14:53.092177+00 6745 80145#裤子前幅 SPMX-20240815301892 \N \N \N 1 \N [{"file_id": "3a5a3cc0-4760-4a49-8bec-0a1e2f54be55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71a527f7d21f44ae804508ccd4b2abda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71a527f7d21f44ae804508ccd4b2abda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71a527f7d21f44ae804508ccd4b2abda.jpg", "file_size": 24146, "is_delete": false, "file_type": 1, "original_file_name": "80145#裤子前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a527f7d21f44ae804508ccd4b2abda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a527f7d21f44ae804508ccd4b2abda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a527f7d21f44ae804508ccd4b2abda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71a527f7d21f44ae804508ccd4b2abda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71a527f7d21f44ae804508ccd4b2abda.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYUuOLXsmUdni4jrLOuibSwTAog=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.093549+00 2025-12-09 10:14:53.093553+00 6746 106#+106-1#紫色 SPMX-20240815301893 \N \N \N 1 \N [{"file_id": "36fac84d-7176-492e-bbd5-a0b588a46f82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4574258d0033424b845607cc90c73322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4574258d0033424b845607cc90c73322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4574258d0033424b845607cc90c73322.jpg", "file_size": 54787, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4574258d0033424b845607cc90c73322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4574258d0033424b845607cc90c73322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4574258d0033424b845607cc90c73322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4574258d0033424b845607cc90c73322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4574258d0033424b845607cc90c73322.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPLE7lIFHgSPk5R-mq1Owu3lWJ0=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.095052+00 2025-12-09 10:14:53.095057+00 6747 HT009#VS-D3 SPMX-20240815301889 \N \N \N 1 \N [{"file_id": "d5635004-b304-4f91-a3d8-33f1c203ff78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "953f28e10f454030a7cf4a4b0649f80e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "953f28e10f454030a7cf4a4b0649f80e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "953f28e10f454030a7cf4a4b0649f80e.jpg", "file_size": 11275, "is_delete": false, "file_type": 1, "original_file_name": "HT009#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953f28e10f454030a7cf4a4b0649f80e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953f28e10f454030a7cf4a4b0649f80e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953f28e10f454030a7cf4a4b0649f80e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/953f28e10f454030a7cf4a4b0649f80e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/953f28e10f454030a7cf4a4b0649f80e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3P3nDcshw_qoPneanOPlxxOfrK4=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.101974+00 2025-12-09 10:14:53.101979+00 6752 HT009FWE#橙VS-D3 SPMX-20240815301911 \N \N \N 1 \N [{"file_id": "4fef48db-c721-4eeb-b0c6-36dd89fbad01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f096ffd75734ef9a93880339c4e9974.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f096ffd75734ef9a93880339c4e9974.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f096ffd75734ef9a93880339c4e9974.jpg", "file_size": 16001, "is_delete": false, "file_type": 1, "original_file_name": "HT009FWE#橙VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f096ffd75734ef9a93880339c4e9974.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f096ffd75734ef9a93880339c4e9974.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f096ffd75734ef9a93880339c4e9974.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f096ffd75734ef9a93880339c4e9974.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f096ffd75734ef9a93880339c4e9974.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiQKWgIpIIg9XisWZrpaVVRB5W4=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.096471+00 2025-12-09 10:14:53.096475+00 6748 LZ1230#童装下身2号色 SPMX-20240815301890 \N \N \N 1 \N [{"file_id": "1e5d8cc9-3709-49ba-abdf-4a81b5971620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c9532a6db894858bb76d6111a177707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c9532a6db894858bb76d6111a177707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c9532a6db894858bb76d6111a177707.jpg", "file_size": 20444, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9532a6db894858bb76d6111a177707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9532a6db894858bb76d6111a177707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9532a6db894858bb76d6111a177707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c9532a6db894858bb76d6111a177707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c9532a6db894858bb76d6111a177707.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYTkw0da1q1N4O1epolyGeJ7saw=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.097875+00 2025-12-09 10:14:53.097879+00 6749 23-2103#A4前后片3XL SPMX-20240815301895 \N \N \N 1 \N [{"file_id": "06eaf98d-0b36-4e61-ae93-35c6f88c9a57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c12d8a9acbd7416b80be03d9fd9d2a18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c12d8a9acbd7416b80be03d9fd9d2a18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c12d8a9acbd7416b80be03d9fd9d2a18.jpg", "file_size": 9983, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A4前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d8a9acbd7416b80be03d9fd9d2a18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d8a9acbd7416b80be03d9fd9d2a18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d8a9acbd7416b80be03d9fd9d2a18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c12d8a9acbd7416b80be03d9fd9d2a18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c12d8a9acbd7416b80be03d9fd9d2a18.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWnD8yfOUVo_agwr5fHV-1vgMS8=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.099233+00 2025-12-09 10:14:53.099238+00 6750 DK-001-1 SPMX-20240815301897 \N \N \N 1 \N [{"file_id": "80111f24-c294-4b24-ab3a-54750b81a9e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adbde3bbef374d44a9e365ab483f54b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adbde3bbef374d44a9e365ab483f54b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adbde3bbef374d44a9e365ab483f54b9.jpg", "file_size": 17169, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adbde3bbef374d44a9e365ab483f54b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adbde3bbef374d44a9e365ab483f54b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adbde3bbef374d44a9e365ab483f54b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adbde3bbef374d44a9e365ab483f54b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adbde3bbef374d44a9e365ab483f54b9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KuMEnGXkHzP4JsPAOuPfnsP134I=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.100602+00 2025-12-09 10:14:53.100607+00 6751 80146#上衣前幅 SPMX-20240815301902 \N \N \N 1 \N [{"file_id": "be305379-9216-4a6d-b095-773502de9cd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b522070454dc4a9f8e2116d0e71b4eb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b522070454dc4a9f8e2116d0e71b4eb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b522070454dc4a9f8e2116d0e71b4eb9.jpg", "file_size": 18537, "is_delete": false, "file_type": 1, "original_file_name": "80146#上衣前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b522070454dc4a9f8e2116d0e71b4eb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b522070454dc4a9f8e2116d0e71b4eb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b522070454dc4a9f8e2116d0e71b4eb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b522070454dc4a9f8e2116d0e71b4eb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b522070454dc4a9f8e2116d0e71b4eb9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4_560tpxpq63wgX4Mw463_F7TQ=", "createTime": "2024-08-15 14:44:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.103335+00 2025-12-09 10:14:53.10334+00 6753 106#+106-1#红色 SPMX-20240815301905 \N \N \N 1 \N [{"file_id": "926d3251-19ca-44e7-83ac-18b575c043a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86df15c2dea64666af40ef246bf9411c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86df15c2dea64666af40ef246bf9411c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86df15c2dea64666af40ef246bf9411c.jpg", "file_size": 53808, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86df15c2dea64666af40ef246bf9411c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86df15c2dea64666af40ef246bf9411c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86df15c2dea64666af40ef246bf9411c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86df15c2dea64666af40ef246bf9411c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86df15c2dea64666af40ef246bf9411c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZVmNkQMjDKnLt-Thc2C0e6IcVQ=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.104689+00 2025-12-09 10:14:53.104694+00 6754 JT9113#L SPMX-20240815301909 \N \N \N 1 \N [{"file_id": "1f42c3e1-e496-4e56-8480-ea017a2db47b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f40285d9cd8c4b288626f38779e9fe2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f40285d9cd8c4b288626f38779e9fe2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f40285d9cd8c4b288626f38779e9fe2a.jpg", "file_size": 16079, "is_delete": false, "file_type": 1, "original_file_name": "JT9113#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40285d9cd8c4b288626f38779e9fe2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40285d9cd8c4b288626f38779e9fe2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40285d9cd8c4b288626f38779e9fe2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f40285d9cd8c4b288626f38779e9fe2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f40285d9cd8c4b288626f38779e9fe2a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHfNIi05KszlIk3PjfJ8jfmF_3s=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.106064+00 2025-12-09 10:14:53.106068+00 6755 80146#乱花批布 SPMX-20240815301914 \N \N \N 1 \N [{"file_id": "653cf1ca-92cc-4f52-a79e-ad2099d98132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f98895f9f3394323815260a8cfaeff66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f98895f9f3394323815260a8cfaeff66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f98895f9f3394323815260a8cfaeff66.jpg", "file_size": 23547, "is_delete": false, "file_type": 1, "original_file_name": "80146#乱花批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f98895f9f3394323815260a8cfaeff66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f98895f9f3394323815260a8cfaeff66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f98895f9f3394323815260a8cfaeff66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f98895f9f3394323815260a8cfaeff66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f98895f9f3394323815260a8cfaeff66.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvJCmdQ39OnZMMXFp94v8V5dtfg=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.107426+00 2025-12-09 10:14:53.10743+00 6756 DK-001-2-批布 SPMX-20240815301910 \N \N \N 1 \N [{"file_id": "4e9a4c54-adf5-4da6-bcb1-f638d58a242c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "774047c8618748ca8b4731ed98ac18d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "774047c8618748ca8b4731ed98ac18d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "774047c8618748ca8b4731ed98ac18d2.jpg", "file_size": 27330, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774047c8618748ca8b4731ed98ac18d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774047c8618748ca8b4731ed98ac18d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774047c8618748ca8b4731ed98ac18d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/774047c8618748ca8b4731ed98ac18d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/774047c8618748ca8b4731ed98ac18d2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxXMQdyiDnO2qpJpevkrG5Qxobc=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.11426+00 2025-12-09 10:14:53.114265+00 6761 FHXGPK-058-2 SPMX-20240815301908 \N \N \N 1 \N [{"file_id": "9c8acbe6-f051-4ffb-9b7f-787776deb7fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e0f91ce66e4199869918531e5532e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e0f91ce66e4199869918531e5532e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e0f91ce66e4199869918531e5532e3.jpg", "file_size": 26795, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-058-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e0f91ce66e4199869918531e5532e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e0f91ce66e4199869918531e5532e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e0f91ce66e4199869918531e5532e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e0f91ce66e4199869918531e5532e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e0f91ce66e4199869918531e5532e3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jw81NmSV5rnTx_Bntheb4n7H9Fo=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.108774+00 2025-12-09 10:14:53.108778+00 6757 LHJ9450-1FW#童装38号粉色VS-D3 SPMX-20240815301913 \N \N \N 1 \N [{"file_id": "25a2d3f7-ad00-4a3d-a4cd-8d244656fd85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fdf6e2270444e4f9926a509fb9eb33a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fdf6e2270444e4f9926a509fb9eb33a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fdf6e2270444e4f9926a509fb9eb33a.jpg", "file_size": 12943, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装38号粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fdf6e2270444e4f9926a509fb9eb33a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fdf6e2270444e4f9926a509fb9eb33a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fdf6e2270444e4f9926a509fb9eb33a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fdf6e2270444e4f9926a509fb9eb33a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fdf6e2270444e4f9926a509fb9eb33a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPQ9w3Ll9lREjCth90BJhhYSnGQ=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.110167+00 2025-12-09 10:14:53.110171+00 6758 23-2103#A4前后片4XL SPMX-20240815301906 \N \N \N 1 \N [{"file_id": "b4f11e72-e190-4033-beb2-5c656a4af9ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0911a82ed8104a69b18da41316b60eb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0911a82ed8104a69b18da41316b60eb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0911a82ed8104a69b18da41316b60eb9.jpg", "file_size": 10464, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A4前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0911a82ed8104a69b18da41316b60eb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0911a82ed8104a69b18da41316b60eb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0911a82ed8104a69b18da41316b60eb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0911a82ed8104a69b18da41316b60eb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0911a82ed8104a69b18da41316b60eb9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhJpiNm_pb5v8WcXbA4F9yAKSD0=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.11152+00 2025-12-09 10:14:53.111524+00 6759 C282#白底绿花 SPMX-20240815301907 \N \N \N 1 \N [{"file_id": "d92f2e58-016c-4467-8829-656d192eac77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e13d3de646e44dde80902416cd43ade9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e13d3de646e44dde80902416cd43ade9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e13d3de646e44dde80902416cd43ade9.jpg", "file_size": 22811, "is_delete": false, "file_type": 1, "original_file_name": "C282#白底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e13d3de646e44dde80902416cd43ade9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e13d3de646e44dde80902416cd43ade9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e13d3de646e44dde80902416cd43ade9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e13d3de646e44dde80902416cd43ade9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e13d3de646e44dde80902416cd43ade9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NN6ApMvEzNPxtGQhEoaXzyp2d_E=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.112891+00 2025-12-09 10:14:53.112896+00 6760 LZ1230#童装下身4号色 SPMX-20240815301912 \N \N \N 1 \N [{"file_id": "517fb0dd-3f9f-4e4d-a8fa-b43a9e6cd639", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a41aca25876497ca2698692bea29aa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a41aca25876497ca2698692bea29aa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a41aca25876497ca2698692bea29aa7.jpg", "file_size": 26023, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41aca25876497ca2698692bea29aa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41aca25876497ca2698692bea29aa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41aca25876497ca2698692bea29aa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a41aca25876497ca2698692bea29aa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a41aca25876497ca2698692bea29aa7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3KO9BtgasUW1pjJl7rXBCVRTS4=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.115614+00 2025-12-09 10:14:53.115619+00 6762 LHJ9450-1FW#童装25号土黄VS-D3 SPMX-20240815301903 \N \N \N 1 \N [{"file_id": "c88d5540-feb2-4b44-9857-0946db553ccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ace66623d1f64b5088fec6e5bbcd0453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ace66623d1f64b5088fec6e5bbcd0453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ace66623d1f64b5088fec6e5bbcd0453.jpg", "file_size": 18177, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装25号土黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace66623d1f64b5088fec6e5bbcd0453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace66623d1f64b5088fec6e5bbcd0453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace66623d1f64b5088fec6e5bbcd0453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ace66623d1f64b5088fec6e5bbcd0453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ace66623d1f64b5088fec6e5bbcd0453.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TK3iJ_L95dyG4jfPeltmBuKb2ZA=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.117014+00 2025-12-09 10:14:53.117019+00 6763 0003-28FWF#橙色 SPMX-20240815301904 \N \N \N 1 \N [{"file_id": "27bf7277-e04a-42de-933e-a4b659a1a63e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5e305a91f644e0bb0fe9ad29cc53fbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5e305a91f644e0bb0fe9ad29cc53fbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5e305a91f644e0bb0fe9ad29cc53fbd.jpg", "file_size": 16155, "is_delete": false, "file_type": 1, "original_file_name": "0003-28FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e305a91f644e0bb0fe9ad29cc53fbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e305a91f644e0bb0fe9ad29cc53fbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e305a91f644e0bb0fe9ad29cc53fbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5e305a91f644e0bb0fe9ad29cc53fbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5e305a91f644e0bb0fe9ad29cc53fbd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Z3HLfB0TWnaiQA5CCr0VRZgOQE=", "createTime": "2024-08-15 14:44:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.118356+00 2025-12-09 10:14:53.11836+00 6764 JT9113#M SPMX-20240815301919 \N \N \N 1 \N [{"file_id": "ac0b33a6-a479-4b41-885f-c829b9c821d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73dd07570754470783414dd4714e40ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73dd07570754470783414dd4714e40ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73dd07570754470783414dd4714e40ac.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "JT9113#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dd07570754470783414dd4714e40ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dd07570754470783414dd4714e40ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73dd07570754470783414dd4714e40ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73dd07570754470783414dd4714e40ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73dd07570754470783414dd4714e40ac.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6zmhlrm7jsBtwpSBAYzhSdAmQRw=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.119725+00 2025-12-09 10:14:53.119729+00 6765 LHJ9450-1FW#童装5号彩兰VS-D3 SPMX-20240815301923 \N \N \N 1 \N [{"file_id": "df7bab44-801f-41de-a175-ccee5a9f7a7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be32cc90b9f4cea9cd526e7c0835140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be32cc90b9f4cea9cd526e7c0835140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be32cc90b9f4cea9cd526e7c0835140.jpg", "file_size": 20374, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装5号彩兰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be32cc90b9f4cea9cd526e7c0835140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be32cc90b9f4cea9cd526e7c0835140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be32cc90b9f4cea9cd526e7c0835140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be32cc90b9f4cea9cd526e7c0835140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be32cc90b9f4cea9cd526e7c0835140.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_iVkSndGot2xGH3lpS0fkiO7XOc=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.121085+00 2025-12-09 10:14:53.121089+00 6766 23-2103#A4袖子4XL SPMX-20240815301926 \N \N \N 1 \N [{"file_id": "b9260cea-5873-498e-93e4-39cb62c2e793", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "facd557470564860a0bb713463dba6bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "facd557470564860a0bb713463dba6bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "facd557470564860a0bb713463dba6bb.jpg", "file_size": 9056, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A4袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facd557470564860a0bb713463dba6bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facd557470564860a0bb713463dba6bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facd557470564860a0bb713463dba6bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/facd557470564860a0bb713463dba6bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/facd557470564860a0bb713463dba6bb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ivLuGuiaj-ALhUc69ZKPZng9DOA=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.122674+00 2025-12-09 10:14:53.122679+00 6767 C282#黑色 SPMX-20240815301916 \N \N \N 1 \N [{"file_id": "eb47dbbd-99f2-4c87-9efa-4d6381f60bd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d25f3c76af8b47c9be1ca25137958a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d25f3c76af8b47c9be1ca25137958a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d25f3c76af8b47c9be1ca25137958a9b.jpg", "file_size": 25931, "is_delete": false, "file_type": 1, "original_file_name": "C282#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25f3c76af8b47c9be1ca25137958a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25f3c76af8b47c9be1ca25137958a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25f3c76af8b47c9be1ca25137958a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d25f3c76af8b47c9be1ca25137958a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d25f3c76af8b47c9be1ca25137958a9b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAyickHiSVFbFHyCSbd0GLMuuF8=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.12454+00 2025-12-09 10:14:53.124545+00 6768 23-2103#A4袖子3XL SPMX-20240815301917 \N \N \N 1 \N [{"file_id": "d36d4753-0e89-4960-a763-8896e2b468ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f936fba4e3d64f87a25cef7d9016624c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f936fba4e3d64f87a25cef7d9016624c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f936fba4e3d64f87a25cef7d9016624c.jpg", "file_size": 9316, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A4袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f936fba4e3d64f87a25cef7d9016624c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f936fba4e3d64f87a25cef7d9016624c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f936fba4e3d64f87a25cef7d9016624c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f936fba4e3d64f87a25cef7d9016624c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f936fba4e3d64f87a25cef7d9016624c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RdftDQSKq0fpfm_Dz7MuIc-1u20=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.125969+00 2025-12-09 10:14:53.125973+00 6769 HT010#VS-D3 SPMX-20240815301924 \N \N \N 1 \N [{"file_id": "38df7654-9e07-433a-8bb6-5ce91af67738", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eaa3add3d96482abc5c85096b85b089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eaa3add3d96482abc5c85096b85b089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eaa3add3d96482abc5c85096b85b089.jpg", "file_size": 17361, "is_delete": false, "file_type": 1, "original_file_name": "HT010#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eaa3add3d96482abc5c85096b85b089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eaa3add3d96482abc5c85096b85b089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eaa3add3d96482abc5c85096b85b089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eaa3add3d96482abc5c85096b85b089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eaa3add3d96482abc5c85096b85b089.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i8hkZPKpSaI84qo7j-0_BMkXOxg=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.127318+00 2025-12-09 10:14:53.127323+00 6770 106#+106-1#蓝色 SPMX-20240815301929 \N \N \N 1 \N [{"file_id": "c7c0cbe6-fd24-4ef1-ab17-1af995ad7363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d9ab946b7ef47b78769813a4a8bb77c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d9ab946b7ef47b78769813a4a8bb77c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d9ab946b7ef47b78769813a4a8bb77c.jpg", "file_size": 53317, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9ab946b7ef47b78769813a4a8bb77c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9ab946b7ef47b78769813a4a8bb77c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9ab946b7ef47b78769813a4a8bb77c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d9ab946b7ef47b78769813a4a8bb77c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d9ab946b7ef47b78769813a4a8bb77c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6siladpzVg1VxUYiGIeqiQKKZ7s=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.130505+00 2025-12-09 10:14:53.13051+00 6771 FHXGPK-058-3 SPMX-20240815301921 \N \N \N 1 \N [{"file_id": "1f768b8c-81ec-4d81-9e73-d56e544f4255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ee43ddab9464f19a85d0cfd2d481218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ee43ddab9464f19a85d0cfd2d481218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ee43ddab9464f19a85d0cfd2d481218.jpg", "file_size": 28624, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-058-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee43ddab9464f19a85d0cfd2d481218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee43ddab9464f19a85d0cfd2d481218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee43ddab9464f19a85d0cfd2d481218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ee43ddab9464f19a85d0cfd2d481218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ee43ddab9464f19a85d0cfd2d481218.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqXXvLliHgpRlkcYxOW2ER6JyJk=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.131873+00 2025-12-09 10:14:53.131877+00 6772 LZ1230#童装下身5号色 SPMX-20240815301922 \N \N \N 1 \N [{"file_id": "ab0b5cd4-eb67-43ee-bd52-db0e5da80802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14ecdfba20544bde8df483f9273bb4d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14ecdfba20544bde8df483f9273bb4d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14ecdfba20544bde8df483f9273bb4d5.jpg", "file_size": 24699, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ecdfba20544bde8df483f9273bb4d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ecdfba20544bde8df483f9273bb4d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ecdfba20544bde8df483f9273bb4d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14ecdfba20544bde8df483f9273bb4d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14ecdfba20544bde8df483f9273bb4d5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VM5GQhnqqkSAGA05LSAPV0vNtyc=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.133231+00 2025-12-09 10:14:53.133235+00 6773 C283#-白底蓝色 SPMX-20240815301927 \N \N \N 1 \N [{"file_id": "33a6eb0c-c7b3-485c-9ffb-d93f1ee69bc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb0cbd96b0454b548bc4e7569b505b3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb0cbd96b0454b548bc4e7569b505b3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb0cbd96b0454b548bc4e7569b505b3e.jpg", "file_size": 21014, "is_delete": false, "file_type": 1, "original_file_name": "C283#-白底蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0cbd96b0454b548bc4e7569b505b3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0cbd96b0454b548bc4e7569b505b3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb0cbd96b0454b548bc4e7569b505b3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb0cbd96b0454b548bc4e7569b505b3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb0cbd96b0454b548bc4e7569b505b3e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:is4huKzq5Sd_jpY6F7pZK17Y4vI=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.134543+00 2025-12-09 10:14:53.134547+00 6774 80146#裤子前幅 SPMX-20240815301925 \N \N \N 1 \N [{"file_id": "224ba433-ac12-426a-89e7-4f6bffd6b808", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e07a95419ef4c68a711ac53877c0096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e07a95419ef4c68a711ac53877c0096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e07a95419ef4c68a711ac53877c0096.jpg", "file_size": 23180, "is_delete": false, "file_type": 1, "original_file_name": "80146#裤子前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e07a95419ef4c68a711ac53877c0096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e07a95419ef4c68a711ac53877c0096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e07a95419ef4c68a711ac53877c0096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e07a95419ef4c68a711ac53877c0096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e07a95419ef4c68a711ac53877c0096.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLwyzYRWoY-FXpxCnB8g7SMeKcg=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.135898+00 2025-12-09 10:14:53.135902+00 6775 DK-001-2 SPMX-20240815301920 \N \N \N 1 \N [{"file_id": "c7440f8b-c302-43fc-83ec-26bb4ac84137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf5de56cc8ee46cf99688c53a48dea07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf5de56cc8ee46cf99688c53a48dea07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf5de56cc8ee46cf99688c53a48dea07.jpg", "file_size": 20236, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5de56cc8ee46cf99688c53a48dea07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5de56cc8ee46cf99688c53a48dea07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5de56cc8ee46cf99688c53a48dea07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf5de56cc8ee46cf99688c53a48dea07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf5de56cc8ee46cf99688c53a48dea07.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aa83Fd2ebUvtDvD7JNqSY1Haons=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.137238+00 2025-12-09 10:14:53.137241+00 6776 106#+106-1#绿色 SPMX-20240815301915 \N \N \N 1 \N [{"file_id": "780e651f-9cf1-455c-8a60-e95b4d7856d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e3538a2045f4722a0af47ff363bf67d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e3538a2045f4722a0af47ff363bf67d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e3538a2045f4722a0af47ff363bf67d.jpg", "file_size": 54356, "is_delete": false, "file_type": 1, "original_file_name": "106#+106-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3538a2045f4722a0af47ff363bf67d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3538a2045f4722a0af47ff363bf67d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3538a2045f4722a0af47ff363bf67d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e3538a2045f4722a0af47ff363bf67d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e3538a2045f4722a0af47ff363bf67d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVe8Hh5iFoURRGs1ZgXhgEYYQGA=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.138623+00 2025-12-09 10:14:53.138628+00 6777 0003-28FWF#绿色 SPMX-20240815301918 \N \N \N 1 \N [{"file_id": "74af4912-c419-45c6-859b-77e5875d0628", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9caeda3c6e7049009268eb5b137f99be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9caeda3c6e7049009268eb5b137f99be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9caeda3c6e7049009268eb5b137f99be.jpg", "file_size": 18335, "is_delete": false, "file_type": 1, "original_file_name": "0003-28FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9caeda3c6e7049009268eb5b137f99be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9caeda3c6e7049009268eb5b137f99be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9caeda3c6e7049009268eb5b137f99be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9caeda3c6e7049009268eb5b137f99be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9caeda3c6e7049009268eb5b137f99be.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wX-KR4CToaGJGtBZeNxTNS3lxPU=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.145352+00 2025-12-09 10:14:53.145355+00 6782 C283#大白黑花 SPMX-20240815301937 \N \N \N 1 \N [{"file_id": "eea65100-b2e9-459a-b07e-265ec7937b0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bfd529fc98649e0915b57452d01693d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bfd529fc98649e0915b57452d01693d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bfd529fc98649e0915b57452d01693d.jpg", "file_size": 28863, "is_delete": false, "file_type": 1, "original_file_name": "C283#大白黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd529fc98649e0915b57452d01693d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd529fc98649e0915b57452d01693d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfd529fc98649e0915b57452d01693d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bfd529fc98649e0915b57452d01693d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bfd529fc98649e0915b57452d01693d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rgsPh0bqXiqH4PqBKbOllAnAgXc=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.139956+00 2025-12-09 10:14:53.13996+00 6778 LZ1230#童装下身6号色 SPMX-20240815301933 \N \N \N 1 \N [{"file_id": "3c9c2f99-66a1-4b2b-9adb-ec5b885de969", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "764ae47831a642b093ae8dbc13c72ae1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "764ae47831a642b093ae8dbc13c72ae1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "764ae47831a642b093ae8dbc13c72ae1.jpg", "file_size": 23289, "is_delete": false, "file_type": 1, "original_file_name": "LZ1230#童装下身6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764ae47831a642b093ae8dbc13c72ae1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764ae47831a642b093ae8dbc13c72ae1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764ae47831a642b093ae8dbc13c72ae1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/764ae47831a642b093ae8dbc13c72ae1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/764ae47831a642b093ae8dbc13c72ae1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PK64lTX4pbSEP1ywk_YPcNVjjo8=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.141331+00 2025-12-09 10:14:53.141335+00 6779 LHJ9450-1FW#童装61号橙色VS-D3 SPMX-20240815301934 \N \N \N 1 \N [{"file_id": "c7d338d0-1f5c-4eb1-92c4-d40c4e7e3ddd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9da9dddc1391469e9aaacece12c37881.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9da9dddc1391469e9aaacece12c37881.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9da9dddc1391469e9aaacece12c37881.jpg", "file_size": 16558, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450-1FW#童装61号橙色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9dddc1391469e9aaacece12c37881.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9dddc1391469e9aaacece12c37881.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9dddc1391469e9aaacece12c37881.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9da9dddc1391469e9aaacece12c37881.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9da9dddc1391469e9aaacece12c37881.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTcIXawpusZjvKiydOVff9hs2V4=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.142679+00 2025-12-09 10:14:53.142682+00 6780 80147#上衣前幅 SPMX-20240815301935 \N \N \N 1 \N [{"file_id": "cab0c662-d2ee-4336-b783-752b0a00b4b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "592c1ef5eede44d0b25e8dc75829f50c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "592c1ef5eede44d0b25e8dc75829f50c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "592c1ef5eede44d0b25e8dc75829f50c.jpg", "file_size": 15970, "is_delete": false, "file_type": 1, "original_file_name": "80147#上衣前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592c1ef5eede44d0b25e8dc75829f50c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592c1ef5eede44d0b25e8dc75829f50c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592c1ef5eede44d0b25e8dc75829f50c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/592c1ef5eede44d0b25e8dc75829f50c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/592c1ef5eede44d0b25e8dc75829f50c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHj4GzjN46kdIp7UFpbwrF_mxF0=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.144027+00 2025-12-09 10:14:53.144031+00 6781 0003-29FWF#V5曲线 SPMX-20240815301942 \N \N \N 1 \N [{"file_id": "111d9845-6e0b-45f5-9d1f-99f8fd58032b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "533652e263354551b9b0c561a4ec8040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "533652e263354551b9b0c561a4ec8040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "533652e263354551b9b0c561a4ec8040.jpg", "file_size": 17820, "is_delete": false, "file_type": 1, "original_file_name": "0003-29FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/533652e263354551b9b0c561a4ec8040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/533652e263354551b9b0c561a4ec8040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/533652e263354551b9b0c561a4ec8040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/533652e263354551b9b0c561a4ec8040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/533652e263354551b9b0c561a4ec8040.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYREEmfsYbw-xlAU_JIM7jNRaYA=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.1467+00 2025-12-09 10:14:53.146708+00 6783 0003-29FWE#VS-D3 SPMX-20240815301930 \N \N \N 1 \N [{"file_id": "ea7bb016-fefb-4aa6-b3c6-5b484a26be54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ba97ccfd58b42faa212f5f26a1311ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ba97ccfd58b42faa212f5f26a1311ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ba97ccfd58b42faa212f5f26a1311ab.jpg", "file_size": 26987, "is_delete": false, "file_type": 1, "original_file_name": "0003-29FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba97ccfd58b42faa212f5f26a1311ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba97ccfd58b42faa212f5f26a1311ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba97ccfd58b42faa212f5f26a1311ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ba97ccfd58b42faa212f5f26a1311ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ba97ccfd58b42faa212f5f26a1311ab.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h8R7Jj7Gb8Q_KhOn-_RoA8aE5Aw=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.148052+00 2025-12-09 10:14:53.148056+00 6784 JT9219R#WJC22 SPMX-20240815301938 \N \N \N 1 \N [{"file_id": "52c38554-8913-4a9f-8f9e-324f0afe1626", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f55656dfb6b45a59096e163d9088a0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f55656dfb6b45a59096e163d9088a0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f55656dfb6b45a59096e163d9088a0c.jpg", "file_size": 8047, "is_delete": false, "file_type": 1, "original_file_name": "JT9219R#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f55656dfb6b45a59096e163d9088a0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f55656dfb6b45a59096e163d9088a0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f55656dfb6b45a59096e163d9088a0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f55656dfb6b45a59096e163d9088a0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f55656dfb6b45a59096e163d9088a0c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Z4ve1BLo4p4vOho0R0rPEXax88=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.149388+00 2025-12-09 10:14:53.149392+00 6785 DK-001-3 SPMX-20240815301941 \N \N \N 1 \N [{"file_id": "b669724c-3c7d-410f-819b-6de753a98512", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be423fe2f7b4465ea994dabe1be8f248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be423fe2f7b4465ea994dabe1be8f248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be423fe2f7b4465ea994dabe1be8f248.jpg", "file_size": 16878, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be423fe2f7b4465ea994dabe1be8f248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be423fe2f7b4465ea994dabe1be8f248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be423fe2f7b4465ea994dabe1be8f248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be423fe2f7b4465ea994dabe1be8f248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be423fe2f7b4465ea994dabe1be8f248.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w45DWOXOpfWDBGv1YuEOvoX2xsM=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.150745+00 2025-12-09 10:14:53.150749+00 6786 FHXGPK-058-4 SPMX-20240815301932 \N \N \N 1 \N [{"file_id": "9078440b-8042-4af7-8012-52dbe57150ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c54e129e350843dbb00cbda157b23555.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c54e129e350843dbb00cbda157b23555.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c54e129e350843dbb00cbda157b23555.jpg", "file_size": 28623, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-058-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54e129e350843dbb00cbda157b23555.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54e129e350843dbb00cbda157b23555.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54e129e350843dbb00cbda157b23555.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c54e129e350843dbb00cbda157b23555.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c54e129e350843dbb00cbda157b23555.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6DwuxLajTipzaCOQQgMbBk4mhI=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.152093+00 2025-12-09 10:14:53.152097+00 6787 106#-杏色 SPMX-20240815301940 \N \N \N 1 \N [{"file_id": "c3820ec5-60c4-4dd9-8600-720e81b111c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg", "file_size": 56182, "is_delete": false, "file_type": 1, "original_file_name": "106#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f0cabb4148c4ee7ab2e8ded9f9c3bac.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtG4lUUXihNAID-zyntF2ZUQ0Jg=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.153448+00 2025-12-09 10:14:53.153451+00 6788 DK-001-3-批布 SPMX-20240815301931 \N \N \N 1 \N [{"file_id": "30ed952f-dfe8-44a3-adab-55e25f4a0c1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4e4823720a0472a998e83699e208d5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4e4823720a0472a998e83699e208d5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4e4823720a0472a998e83699e208d5c.jpg", "file_size": 24943, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e4823720a0472a998e83699e208d5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e4823720a0472a998e83699e208d5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e4823720a0472a998e83699e208d5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4e4823720a0472a998e83699e208d5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4e4823720a0472a998e83699e208d5c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyDU67NIlHFcCkLKdh_nmXwPNBs=", "createTime": "2024-08-15 14:44:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.154832+00 2025-12-09 10:14:53.154837+00 6789 HT0101#玫红 SPMX-20240815301936 \N \N \N 1 \N [{"file_id": "69351dc5-8cfb-40b8-b529-387b3420a04a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d49bf221b3fe4eb5998352ffd1dbfcff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d49bf221b3fe4eb5998352ffd1dbfcff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d49bf221b3fe4eb5998352ffd1dbfcff.jpg", "file_size": 12681, "is_delete": false, "file_type": 1, "original_file_name": "HT0101#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d49bf221b3fe4eb5998352ffd1dbfcff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d49bf221b3fe4eb5998352ffd1dbfcff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d49bf221b3fe4eb5998352ffd1dbfcff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d49bf221b3fe4eb5998352ffd1dbfcff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d49bf221b3fe4eb5998352ffd1dbfcff.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ViPHKoKP1lOZw_Qh3Wy-_dV8iVQ=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.156184+00 2025-12-09 10:14:53.156188+00 6790 23-2103#A4领子通用 SPMX-20240815301939 \N \N \N 1 \N [{"file_id": "56a76435-d7a1-45ea-a41f-39b4fde7efe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e23fb3331eb4196a46fb7d73ace9882.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e23fb3331eb4196a46fb7d73ace9882.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e23fb3331eb4196a46fb7d73ace9882.jpg", "file_size": 8412, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A4领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e23fb3331eb4196a46fb7d73ace9882.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e23fb3331eb4196a46fb7d73ace9882.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e23fb3331eb4196a46fb7d73ace9882.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e23fb3331eb4196a46fb7d73ace9882.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e23fb3331eb4196a46fb7d73ace9882.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqrspqHasHRNVe737mmpDz8EDyc=", "createTime": "2024-08-15 14:44:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.15753+00 2025-12-09 10:14:53.157534+00 6791 LHJ9450FW#童装1#黑底黄色花 SPMX-20240815301945 \N \N \N 1 \N [{"file_id": "dcb5de25-a2ab-42c0-a43a-fc5192f11b3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba97203387ac404885861b71692f54b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba97203387ac404885861b71692f54b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba97203387ac404885861b71692f54b5.jpg", "file_size": 21751, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450FW#童装1#黑底黄色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba97203387ac404885861b71692f54b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba97203387ac404885861b71692f54b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba97203387ac404885861b71692f54b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba97203387ac404885861b71692f54b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba97203387ac404885861b71692f54b5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DUjHJKl4cqVJpsve4oyea_JTax8=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.159053+00 2025-12-09 10:14:53.159057+00 6792 80147#乱花批布 SPMX-20240815301944 \N \N \N 1 \N [{"file_id": "24bc572a-4fb0-45fc-b9a8-986aefa22683", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4db88bf1704ef1a5dc09476eef1348.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4db88bf1704ef1a5dc09476eef1348.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4db88bf1704ef1a5dc09476eef1348.jpg", "file_size": 19875, "is_delete": false, "file_type": 1, "original_file_name": "80147#乱花批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4db88bf1704ef1a5dc09476eef1348.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4db88bf1704ef1a5dc09476eef1348.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4db88bf1704ef1a5dc09476eef1348.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4db88bf1704ef1a5dc09476eef1348.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4db88bf1704ef1a5dc09476eef1348.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8V7teAUFJ6iepTfisqFd5ktxsVM=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.160614+00 2025-12-09 10:14:53.160617+00 6793 FHXGPK-058-5 SPMX-20240815301943 \N \N \N 1 \N [{"file_id": "6959fc13-6863-48e1-9984-d40ca4bb7a5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8475fa0bdbf4af0a055f95b27dc77b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8475fa0bdbf4af0a055f95b27dc77b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8475fa0bdbf4af0a055f95b27dc77b7.jpg", "file_size": 26728, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-058-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8475fa0bdbf4af0a055f95b27dc77b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8475fa0bdbf4af0a055f95b27dc77b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8475fa0bdbf4af0a055f95b27dc77b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8475fa0bdbf4af0a055f95b27dc77b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8475fa0bdbf4af0a055f95b27dc77b7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKniriAMSwdG1rOdHNgficv48ys=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.162342+00 2025-12-09 10:14:53.162347+00 6794 LZ1231#上身1号色 SPMX-20240815301947 \N \N \N 1 \N [{"file_id": "00b6fcf1-1c9a-43cd-b380-122cff641588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe8b43aa67c9439092567a494289269f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe8b43aa67c9439092567a494289269f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe8b43aa67c9439092567a494289269f.jpg", "file_size": 15932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8b43aa67c9439092567a494289269f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8b43aa67c9439092567a494289269f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8b43aa67c9439092567a494289269f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe8b43aa67c9439092567a494289269f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe8b43aa67c9439092567a494289269f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmu2_MOzLEqBYoEsuF9nBw3Iya0=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.164236+00 2025-12-09 10:14:53.16424+00 6795 C283#白底兰花 SPMX-20240815301946 \N \N \N 1 \N [{"file_id": "d88c928c-0952-4695-bbcc-da5df482f725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3f3864eb75b46c6bb275994746c4456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3f3864eb75b46c6bb275994746c4456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3f3864eb75b46c6bb275994746c4456.jpg", "file_size": 20983, "is_delete": false, "file_type": 1, "original_file_name": "C283#白底兰花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f3864eb75b46c6bb275994746c4456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f3864eb75b46c6bb275994746c4456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f3864eb75b46c6bb275994746c4456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3f3864eb75b46c6bb275994746c4456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3f3864eb75b46c6bb275994746c4456.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsJ_pnAwxIqXhjNqUfK9SmjgUuo=", "createTime": "2024-08-15 14:44:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.166159+00 2025-12-09 10:14:53.166164+00 6796 JTN0804-1#WJC22 SPMX-20240815301949 \N \N \N 1 \N [{"file_id": "a4d4c2d2-c777-4229-836d-f4882a064507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e755ab8a3b94a83be0da30790a68155.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e755ab8a3b94a83be0da30790a68155.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e755ab8a3b94a83be0da30790a68155.jpg", "file_size": 19155, "is_delete": false, "file_type": 1, "original_file_name": "JTN0804-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e755ab8a3b94a83be0da30790a68155.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e755ab8a3b94a83be0da30790a68155.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e755ab8a3b94a83be0da30790a68155.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e755ab8a3b94a83be0da30790a68155.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e755ab8a3b94a83be0da30790a68155.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTSVj55l_piUjW7IZ0ExxblU25I=", "createTime": "2024-08-15 14:44:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.168087+00 2025-12-09 10:14:53.168091+00 6797 0003-2FWE#VS-D3 SPMX-20240815301948 \N \N \N 1 \N [{"file_id": "271992d0-9d8d-4c81-8379-b9083b978af3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1359a49cf9f14e98a1065b2fc1fe6b8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1359a49cf9f14e98a1065b2fc1fe6b8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1359a49cf9f14e98a1065b2fc1fe6b8d.jpg", "file_size": 27140, "is_delete": false, "file_type": 1, "original_file_name": "0003-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1359a49cf9f14e98a1065b2fc1fe6b8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1359a49cf9f14e98a1065b2fc1fe6b8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1359a49cf9f14e98a1065b2fc1fe6b8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1359a49cf9f14e98a1065b2fc1fe6b8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1359a49cf9f14e98a1065b2fc1fe6b8d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bisHq7j7xxTEu0mCKHMumpMF0wQ=", "createTime": "2024-08-15 14:44:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.169683+00 2025-12-09 10:14:53.169688+00 6798 LHJ9450FW#童装20#枣红 SPMX-20240815301955 \N \N \N 1 \N [{"file_id": "191b33f4-6542-46fb-81b4-c87f03d33646", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4a86efc878e4e12a28f44a2d48a2058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4a86efc878e4e12a28f44a2d48a2058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4a86efc878e4e12a28f44a2d48a2058.jpg", "file_size": 19963, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450FW#童装20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a86efc878e4e12a28f44a2d48a2058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a86efc878e4e12a28f44a2d48a2058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a86efc878e4e12a28f44a2d48a2058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4a86efc878e4e12a28f44a2d48a2058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4a86efc878e4e12a28f44a2d48a2058.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EnpJLq1r7fWc3LiDKXvIVwhCzw=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.171267+00 2025-12-09 10:14:53.171271+00 6799 HT0101#粉色 SPMX-20240815301950 \N \N \N 1 \N [{"file_id": "2e8bc9a9-0391-4951-99b5-bdda0b7539ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c7bfd249104e389d4231958946ee26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c7bfd249104e389d4231958946ee26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c7bfd249104e389d4231958946ee26.jpg", "file_size": 9546, "is_delete": false, "file_type": 1, "original_file_name": "HT0101#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7bfd249104e389d4231958946ee26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7bfd249104e389d4231958946ee26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7bfd249104e389d4231958946ee26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c7bfd249104e389d4231958946ee26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c7bfd249104e389d4231958946ee26.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DvOrM_GSmk4OZsiggXETMSLkuuw=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.172641+00 2025-12-09 10:14:53.172645+00 6800 106#-浅杏色 SPMX-20240815301953 \N \N \N 1 \N [{"file_id": "642bf293-0dd5-4ce4-bd04-759e1e3d63a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f7ab3af71544b3aa338d0fb6ff58065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f7ab3af71544b3aa338d0fb6ff58065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f7ab3af71544b3aa338d0fb6ff58065.jpg", "file_size": 56004, "is_delete": false, "file_type": 1, "original_file_name": "106#-浅杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7ab3af71544b3aa338d0fb6ff58065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7ab3af71544b3aa338d0fb6ff58065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7ab3af71544b3aa338d0fb6ff58065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f7ab3af71544b3aa338d0fb6ff58065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f7ab3af71544b3aa338d0fb6ff58065.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DTtgpv-L3QhgXTafr_ktG2QEc_8=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.174047+00 2025-12-09 10:14:53.174051+00 6801 80147#裤子前幅 SPMX-20240815301961 \N \N \N 1 \N [{"file_id": "c75ef0ab-0b7b-487b-811e-3ee94c935b6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49881baa518749f0b6f8b37e86f25ab1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49881baa518749f0b6f8b37e86f25ab1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49881baa518749f0b6f8b37e86f25ab1.jpg", "file_size": 20320, "is_delete": false, "file_type": 1, "original_file_name": "80147#裤子前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49881baa518749f0b6f8b37e86f25ab1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49881baa518749f0b6f8b37e86f25ab1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49881baa518749f0b6f8b37e86f25ab1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49881baa518749f0b6f8b37e86f25ab1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49881baa518749f0b6f8b37e86f25ab1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgUfoYGS9DoEy9guSLyhF6uQgps=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.175428+00 2025-12-09 10:14:53.175432+00 6802 LZ1231#上身2号色 SPMX-20240815301958 \N \N \N 1 \N [{"file_id": "80187725-f82a-4a82-8e2e-35cc037c7456", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e737d69b820417fab20f3a669e9be7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e737d69b820417fab20f3a669e9be7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e737d69b820417fab20f3a669e9be7f.jpg", "file_size": 17102, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e737d69b820417fab20f3a669e9be7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e737d69b820417fab20f3a669e9be7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e737d69b820417fab20f3a669e9be7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e737d69b820417fab20f3a669e9be7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e737d69b820417fab20f3a669e9be7f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3cuIdnxGlBccoICPoHiynBPwIA=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.176824+00 2025-12-09 10:14:53.176829+00 6803 C283#白底玫红 SPMX-20240815301959 \N \N \N 1 \N [{"file_id": "69cc8f57-3f53-4361-a7b5-1cb9702a6a49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg", "file_size": 24948, "is_delete": false, "file_type": 1, "original_file_name": "C283#白底玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7d9679cbaa45c0be1ba9b1e1dfd44c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEqEF6fpThqYGdvxmkdx-sUdLkc=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.178213+00 2025-12-09 10:14:53.178217+00 6804 HT0101#红色 SPMX-20240815301960 \N \N \N 1 \N [{"file_id": "097298d6-bc45-4069-972f-b1fd8e115d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3583b8d26b44daea0cf02dc811ff487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3583b8d26b44daea0cf02dc811ff487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3583b8d26b44daea0cf02dc811ff487.jpg", "file_size": 12531, "is_delete": false, "file_type": 1, "original_file_name": "HT0101#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3583b8d26b44daea0cf02dc811ff487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3583b8d26b44daea0cf02dc811ff487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3583b8d26b44daea0cf02dc811ff487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3583b8d26b44daea0cf02dc811ff487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3583b8d26b44daea0cf02dc811ff487.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DNIDxoREobNxXRy1n-uzrbTn9k=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.179609+00 2025-12-09 10:14:53.179613+00 6805 FHXGPK-059-1 SPMX-20240815301956 \N \N \N 1 \N [{"file_id": "689c39e1-8f6f-481b-a595-02326cf868da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d557686bd7a948f48bac2e480378ed3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d557686bd7a948f48bac2e480378ed3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d557686bd7a948f48bac2e480378ed3a.jpg", "file_size": 26789, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-059-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d557686bd7a948f48bac2e480378ed3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d557686bd7a948f48bac2e480378ed3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d557686bd7a948f48bac2e480378ed3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d557686bd7a948f48bac2e480378ed3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d557686bd7a948f48bac2e480378ed3a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVJkrgZDUJ_8gPpcIUV0_iZWDsw=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.180977+00 2025-12-09 10:14:53.180982+00 6806 JTSS001#VS-D3 SPMX-20240815301957 \N \N \N 1 \N [{"file_id": "4ce2aa50-670f-44b3-890c-6e170357565f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f72064beb6dc4389aafc2531ba5733f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f72064beb6dc4389aafc2531ba5733f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f72064beb6dc4389aafc2531ba5733f8.jpg", "file_size": 25591, "is_delete": false, "file_type": 1, "original_file_name": "JTSS001#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72064beb6dc4389aafc2531ba5733f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72064beb6dc4389aafc2531ba5733f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72064beb6dc4389aafc2531ba5733f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f72064beb6dc4389aafc2531ba5733f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f72064beb6dc4389aafc2531ba5733f8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y99_ezYozMR-JFEbIrWOrXUSVg4=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.182344+00 2025-12-09 10:14:53.182347+00 6807 23-2103#A5前后片3XL SPMX-20240815301951 \N \N \N 1 \N [{"file_id": "67770136-f0ae-44e4-bc2f-b968570f647d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fec66dc9eb845fd80c89ce477316cf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fec66dc9eb845fd80c89ce477316cf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fec66dc9eb845fd80c89ce477316cf8.jpg", "file_size": 10937, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A5前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec66dc9eb845fd80c89ce477316cf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec66dc9eb845fd80c89ce477316cf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fec66dc9eb845fd80c89ce477316cf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fec66dc9eb845fd80c89ce477316cf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fec66dc9eb845fd80c89ce477316cf8.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWpqqQ1jP4QJgjZPPit7QuA8mY8=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.183732+00 2025-12-09 10:14:53.183737+00 6808 0003-2FWF#V5曲线 SPMX-20240815301954 \N \N \N 1 \N [{"file_id": "63afb88e-7407-4474-8a06-3204fc5ef903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e21c8b2a41184dbda930c1f046f82d0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e21c8b2a41184dbda930c1f046f82d0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e21c8b2a41184dbda930c1f046f82d0b.jpg", "file_size": 12243, "is_delete": false, "file_type": 1, "original_file_name": "0003-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21c8b2a41184dbda930c1f046f82d0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21c8b2a41184dbda930c1f046f82d0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21c8b2a41184dbda930c1f046f82d0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e21c8b2a41184dbda930c1f046f82d0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e21c8b2a41184dbda930c1f046f82d0b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUJ4l1tZOn1EygkRWMXkGepFQBs=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.185124+00 2025-12-09 10:14:53.185128+00 6809 DK-001-4-批布 SPMX-20240815301952 \N \N \N 1 \N [{"file_id": "4513f153-9022-4e90-9af8-9899720a3994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc6afcf679248cc88d73cf521507bd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc6afcf679248cc88d73cf521507bd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc6afcf679248cc88d73cf521507bd1.jpg", "file_size": 25260, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc6afcf679248cc88d73cf521507bd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc6afcf679248cc88d73cf521507bd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc6afcf679248cc88d73cf521507bd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc6afcf679248cc88d73cf521507bd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc6afcf679248cc88d73cf521507bd1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5znhqm-PEvDO74Sk4G59zZD7BXU=", "createTime": "2024-08-15 14:44:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.186512+00 2025-12-09 10:14:53.186516+00 6810 DK-001-4 SPMX-20240815301962 \N \N \N 1 \N [{"file_id": "aa87d241-36c2-4531-8c6b-2b93fd170501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137eedebce284fcbb489045022a732e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137eedebce284fcbb489045022a732e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137eedebce284fcbb489045022a732e1.jpg", "file_size": 23140, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137eedebce284fcbb489045022a732e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137eedebce284fcbb489045022a732e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137eedebce284fcbb489045022a732e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137eedebce284fcbb489045022a732e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137eedebce284fcbb489045022a732e1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9n9iqNEei6HHHJveThBjzdmDME=", "createTime": "2024-08-15 14:44:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.187904+00 2025-12-09 10:14:53.187908+00 6811 23-2103#A5前后片4XL SPMX-20240815301963 \N \N \N 1 \N [{"file_id": "3a1eb54f-c651-441d-9bd1-532fe5bd9dba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c69b66edb06d4e8b8886986149c36e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c69b66edb06d4e8b8886986149c36e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c69b66edb06d4e8b8886986149c36e46.jpg", "file_size": 11242, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A5前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69b66edb06d4e8b8886986149c36e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69b66edb06d4e8b8886986149c36e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c69b66edb06d4e8b8886986149c36e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c69b66edb06d4e8b8886986149c36e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c69b66edb06d4e8b8886986149c36e46.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5YfvKVhe9fXMg1OTXzVLS91J6U=", "createTime": "2024-08-15 14:44:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.189295+00 2025-12-09 10:14:53.1893+00 6812 LHJ9450FW#童装25#土黄 SPMX-20240815301964 \N \N \N 1 \N [{"file_id": "fb046c8b-cad4-45b0-9576-9995b5fb2de3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1402f700d39347be861e691b82f448f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1402f700d39347be861e691b82f448f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1402f700d39347be861e691b82f448f5.jpg", "file_size": 18285, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450FW#童装25#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1402f700d39347be861e691b82f448f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1402f700d39347be861e691b82f448f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1402f700d39347be861e691b82f448f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1402f700d39347be861e691b82f448f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1402f700d39347be861e691b82f448f5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpIjNY_aX4XSnvPN3uZKbD97TAQ=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.19067+00 2025-12-09 10:14:53.190674+00 6813 106#-灰色 SPMX-20240815301967 \N \N \N 1 \N [{"file_id": "ad218a1d-f40c-4108-9a01-bf8c9c39cef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11512bc7f22b421db310a72685f106f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11512bc7f22b421db310a72685f106f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11512bc7f22b421db310a72685f106f3.jpg", "file_size": 62308, "is_delete": false, "file_type": 1, "original_file_name": "106#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11512bc7f22b421db310a72685f106f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11512bc7f22b421db310a72685f106f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11512bc7f22b421db310a72685f106f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11512bc7f22b421db310a72685f106f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11512bc7f22b421db310a72685f106f3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mu_fvvr9izH08Binmh9UASYKQRM=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.192109+00 2025-12-09 10:14:53.192114+00 6814 LZ1231#上身3号色 SPMX-20240815301965 \N \N \N 1 \N [{"file_id": "30f754f5-24b9-484a-b060-f697b32e805e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb7a36c875a34a4cae71cfa8c009910c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb7a36c875a34a4cae71cfa8c009910c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb7a36c875a34a4cae71cfa8c009910c.jpg", "file_size": 15929, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7a36c875a34a4cae71cfa8c009910c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7a36c875a34a4cae71cfa8c009910c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7a36c875a34a4cae71cfa8c009910c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb7a36c875a34a4cae71cfa8c009910c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb7a36c875a34a4cae71cfa8c009910c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQsOFGb7lrMBnA5hNG4UUbM5Py0=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.193483+00 2025-12-09 10:14:53.193487+00 6815 JTSS001FW#VS-D3 SPMX-20240815301966 \N \N \N 1 \N [{"file_id": "c8587b86-d4d6-4185-9d6e-0dbe025a01cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c27379542dd44cc18e3038bd0e00691b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c27379542dd44cc18e3038bd0e00691b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c27379542dd44cc18e3038bd0e00691b.jpg", "file_size": 11683, "is_delete": false, "file_type": 1, "original_file_name": "JTSS001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27379542dd44cc18e3038bd0e00691b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27379542dd44cc18e3038bd0e00691b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27379542dd44cc18e3038bd0e00691b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c27379542dd44cc18e3038bd0e00691b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c27379542dd44cc18e3038bd0e00691b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwkwGlXwGGJTIN8DUZeq1G4aXoU=", "createTime": "2024-08-15 14:44:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.194955+00 2025-12-09 10:14:53.19496+00 6816 23-2103#A5袖子3XL SPMX-20240815301969 \N \N \N 1 \N [{"file_id": "33a02cc2-0db3-4fec-9afa-c3087538ac42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2635a3620374416af5f2380caed7a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2635a3620374416af5f2380caed7a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2635a3620374416af5f2380caed7a85.jpg", "file_size": 10647, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A5袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2635a3620374416af5f2380caed7a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2635a3620374416af5f2380caed7a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2635a3620374416af5f2380caed7a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2635a3620374416af5f2380caed7a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2635a3620374416af5f2380caed7a85.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VxNmWUZGhnC4fWw-sOFuOoOlXGQ=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.196335+00 2025-12-09 10:14:53.196339+00 6817 HT0101#绿色 SPMX-20240815301970 \N \N \N 1 \N [{"file_id": "9aea4c92-4461-4729-9f6f-28765660fd93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b49dc2be1fdd4a78bc370ae137aec90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b49dc2be1fdd4a78bc370ae137aec90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b49dc2be1fdd4a78bc370ae137aec90e.jpg", "file_size": 11402, "is_delete": false, "file_type": 1, "original_file_name": "HT0101#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49dc2be1fdd4a78bc370ae137aec90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49dc2be1fdd4a78bc370ae137aec90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49dc2be1fdd4a78bc370ae137aec90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b49dc2be1fdd4a78bc370ae137aec90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b49dc2be1fdd4a78bc370ae137aec90e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XwVEbBzE9bZSg2X3zuf6gJ4wquc=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.198013+00 2025-12-09 10:14:53.198017+00 6818 0003-3#LWQ15 SPMX-20240815301974 \N \N \N 1 \N [{"file_id": "d356aa71-3a1f-4a90-a926-7f777287aff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebbbdebccd134b28a9501ec40c750d1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebbbdebccd134b28a9501ec40c750d1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebbbdebccd134b28a9501ec40c750d1b.jpg", "file_size": 20151, "is_delete": false, "file_type": 1, "original_file_name": "0003-3#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbbdebccd134b28a9501ec40c750d1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbbdebccd134b28a9501ec40c750d1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbbdebccd134b28a9501ec40c750d1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebbbdebccd134b28a9501ec40c750d1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebbbdebccd134b28a9501ec40c750d1b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7MObFSj6KUHMX2B6dg0l88kJ80=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.199378+00 2025-12-09 10:14:53.199383+00 6819 DK-001-批布 SPMX-20240815301971 \N \N \N 1 \N [{"file_id": "459b472b-dc1f-42be-9a77-9bb7b41ea740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg", "file_size": 21668, "is_delete": false, "file_type": 1, "original_file_name": "DK-001-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f5846dfb70a4a2e8bfb01ea25dc8b1e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxfZ09281Ux67DCn7oMx-YR_4cU=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.200733+00 2025-12-09 10:14:53.200737+00 6820 FHXGPK-059-2 SPMX-20240815301968 \N \N \N 1 \N [{"file_id": "bea3e5ef-213e-4bca-885d-8cf38992bb5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f2c8311d06e4760a35e24d18f8ce519.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f2c8311d06e4760a35e24d18f8ce519.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f2c8311d06e4760a35e24d18f8ce519.jpg", "file_size": 24687, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-059-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c8311d06e4760a35e24d18f8ce519.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c8311d06e4760a35e24d18f8ce519.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c8311d06e4760a35e24d18f8ce519.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f2c8311d06e4760a35e24d18f8ce519.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f2c8311d06e4760a35e24d18f8ce519.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlQrrSj7gC0_2lmAeig4pulArE8=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.202091+00 2025-12-09 10:14:53.202096+00 6821 80148#上衣前幅 SPMX-20240815301972 \N \N \N 1 \N [{"file_id": "b4596f4f-1d4e-4529-bb89-642e087f8a83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5021328ef6de43b085d26f7b890bd649.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5021328ef6de43b085d26f7b890bd649.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5021328ef6de43b085d26f7b890bd649.jpg", "file_size": 19207, "is_delete": false, "file_type": 1, "original_file_name": "80148#上衣前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5021328ef6de43b085d26f7b890bd649.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5021328ef6de43b085d26f7b890bd649.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5021328ef6de43b085d26f7b890bd649.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5021328ef6de43b085d26f7b890bd649.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5021328ef6de43b085d26f7b890bd649.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LK4PiW0gAXnoogNriz3lIGTjMBQ=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.203453+00 2025-12-09 10:14:53.203457+00 6822 C283#白底黑色 SPMX-20240815301973 \N \N \N 1 \N [{"file_id": "0a59450b-730d-4e42-af40-99cd9198133b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6048b3068e5741559b13316dc6341357.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6048b3068e5741559b13316dc6341357.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6048b3068e5741559b13316dc6341357.jpg", "file_size": 28609, "is_delete": false, "file_type": 1, "original_file_name": "C283#白底黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6048b3068e5741559b13316dc6341357.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6048b3068e5741559b13316dc6341357.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6048b3068e5741559b13316dc6341357.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6048b3068e5741559b13316dc6341357.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6048b3068e5741559b13316dc6341357.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6E5sNNNBvrkpgaj4fHTzewkJbk4=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.204831+00 2025-12-09 10:14:53.204835+00 6823 LHJ9450FW#童装37#玫红 SPMX-20240815301975 \N \N \N 1 \N [{"file_id": "d9a9abab-23c5-4de7-9284-299ea09b2537", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "684c865993ef4e05a5475687b295ff48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "684c865993ef4e05a5475687b295ff48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "684c865993ef4e05a5475687b295ff48.jpg", "file_size": 14436, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450FW#童装37#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684c865993ef4e05a5475687b295ff48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684c865993ef4e05a5475687b295ff48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684c865993ef4e05a5475687b295ff48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/684c865993ef4e05a5475687b295ff48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/684c865993ef4e05a5475687b295ff48.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkPrp6aAdh55NBZdnLyRxSdYTFE=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.206186+00 2025-12-09 10:14:53.20619+00 6824 JTSS002#VS-D3 SPMX-20240815301976 \N \N \N 1 \N [{"file_id": "daf14e8f-9bee-4118-8bcb-9cfc9d7628bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e9468577d146b3b5e68d0b5a084e64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e9468577d146b3b5e68d0b5a084e64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e9468577d146b3b5e68d0b5a084e64.jpg", "file_size": 21397, "is_delete": false, "file_type": 1, "original_file_name": "JTSS002#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9468577d146b3b5e68d0b5a084e64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9468577d146b3b5e68d0b5a084e64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e9468577d146b3b5e68d0b5a084e64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e9468577d146b3b5e68d0b5a084e64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e9468577d146b3b5e68d0b5a084e64.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBQWqqfuj-mzPXgmaIVXJsOgbGY=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.207548+00 2025-12-09 10:14:53.207553+00 6825 LZ1231#上身4号色 SPMX-20240815301977 \N \N \N 1 \N [{"file_id": "cd812990-2301-4e0e-89cd-05ab1868b6f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f289451e78d048b88548af0c7f2fd01d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f289451e78d048b88548af0c7f2fd01d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f289451e78d048b88548af0c7f2fd01d.jpg", "file_size": 15410, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f289451e78d048b88548af0c7f2fd01d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f289451e78d048b88548af0c7f2fd01d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f289451e78d048b88548af0c7f2fd01d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f289451e78d048b88548af0c7f2fd01d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f289451e78d048b88548af0c7f2fd01d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9w2A12ovXiljhHLd6LMtYrm_J0=", "createTime": "2024-08-15 14:44:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.208932+00 2025-12-09 10:14:53.208935+00 6826 106#-黑色 SPMX-20240815301989 \N \N \N 1 \N [{"file_id": "7cb49895-f281-444c-8f60-f84dcfd69667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "519989bb19b844d69435b0c65ad0624e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "519989bb19b844d69435b0c65ad0624e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "519989bb19b844d69435b0c65ad0624e.jpg", "file_size": 54929, "is_delete": false, "file_type": 1, "original_file_name": "106#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519989bb19b844d69435b0c65ad0624e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519989bb19b844d69435b0c65ad0624e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519989bb19b844d69435b0c65ad0624e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/519989bb19b844d69435b0c65ad0624e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/519989bb19b844d69435b0c65ad0624e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMXLaVCqmvYJL3kwuu8daMvuxTg=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.210313+00 2025-12-09 10:14:53.210318+00 6827 HT0101-1#WJC22 SPMX-20240815301991 \N \N \N 1 \N [{"file_id": "5e6e2319-57db-4673-a3cf-58220d76e7a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d296ebe524f24ddeb97d305286b5cb95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d296ebe524f24ddeb97d305286b5cb95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d296ebe524f24ddeb97d305286b5cb95.jpg", "file_size": 15978, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d296ebe524f24ddeb97d305286b5cb95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d296ebe524f24ddeb97d305286b5cb95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d296ebe524f24ddeb97d305286b5cb95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d296ebe524f24ddeb97d305286b5cb95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d296ebe524f24ddeb97d305286b5cb95.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSgeeLzoaveHNuDWiEBncCNqqxs=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.211673+00 2025-12-09 10:14:53.211677+00 6828 80148#乱花批布 SPMX-20240815301984 \N \N \N 1 \N [{"file_id": "d53d1990-578d-4269-a96d-1d731b2ee5a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a8b7b907ae94c0ba6b88b2386d81c34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a8b7b907ae94c0ba6b88b2386d81c34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a8b7b907ae94c0ba6b88b2386d81c34.jpg", "file_size": 22942, "is_delete": false, "file_type": 1, "original_file_name": "80148#乱花批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8b7b907ae94c0ba6b88b2386d81c34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8b7b907ae94c0ba6b88b2386d81c34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8b7b907ae94c0ba6b88b2386d81c34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a8b7b907ae94c0ba6b88b2386d81c34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a8b7b907ae94c0ba6b88b2386d81c34.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeSS9gdDbUvQ5z28VLyAxwL65Y0=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.213046+00 2025-12-09 10:14:53.213051+00 6829 LZ1231#下身1号色 SPMX-20240815301987 \N \N \N 1 \N [{"file_id": "300fa82e-7b73-481e-b8a3-d96822afdc1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1942d3c18cd64ff9bd82dfab119d28df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1942d3c18cd64ff9bd82dfab119d28df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1942d3c18cd64ff9bd82dfab119d28df.jpg", "file_size": 16764, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1942d3c18cd64ff9bd82dfab119d28df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1942d3c18cd64ff9bd82dfab119d28df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1942d3c18cd64ff9bd82dfab119d28df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1942d3c18cd64ff9bd82dfab119d28df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1942d3c18cd64ff9bd82dfab119d28df.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U98onUnSFwhyz9S4I7VFJy5nAzo=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.214385+00 2025-12-09 10:14:53.214389+00 6830 LHJ9450FW#童装5#彩兰 SPMX-20240815301985 \N \N \N 1 \N [{"file_id": "463323e4-8cc6-417a-ba8f-f80795c3ebfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6ef10a677d042fc9137f9c64e8d6d13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6ef10a677d042fc9137f9c64e8d6d13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6ef10a677d042fc9137f9c64e8d6d13.jpg", "file_size": 20532, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9450FW#童装5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ef10a677d042fc9137f9c64e8d6d13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ef10a677d042fc9137f9c64e8d6d13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ef10a677d042fc9137f9c64e8d6d13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6ef10a677d042fc9137f9c64e8d6d13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6ef10a677d042fc9137f9c64e8d6d13.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Q8G_vdlC13G4mkMkPc6-ieDTMw=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.215771+00 2025-12-09 10:14:53.215775+00 6831 23-2103#A5领子通用 SPMX-20240815301990 \N \N \N 1 \N [{"file_id": "34560766-51c2-4311-941b-1d54c5554bb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6831e6e6aa84253b11c30919a3af4ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6831e6e6aa84253b11c30919a3af4ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6831e6e6aa84253b11c30919a3af4ad.jpg", "file_size": 10494, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A5领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6831e6e6aa84253b11c30919a3af4ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6831e6e6aa84253b11c30919a3af4ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6831e6e6aa84253b11c30919a3af4ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6831e6e6aa84253b11c30919a3af4ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6831e6e6aa84253b11c30919a3af4ad.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bS_1A5JIBXEBGFgFPeRXeG1RPZo=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.217124+00 2025-12-09 10:14:53.217129+00 6832 23-2103#A5袖子4XL SPMX-20240815301979 \N \N \N 1 \N [{"file_id": "35dfc1ca-5697-435c-aac2-3396a24857f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "616872ebac374e4aaad73b11778e80f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "616872ebac374e4aaad73b11778e80f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "616872ebac374e4aaad73b11778e80f2.jpg", "file_size": 9777, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A5袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616872ebac374e4aaad73b11778e80f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616872ebac374e4aaad73b11778e80f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616872ebac374e4aaad73b11778e80f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/616872ebac374e4aaad73b11778e80f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/616872ebac374e4aaad73b11778e80f2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ayfuujdVIR96ErLNlJhic-T4No=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.218476+00 2025-12-09 10:14:53.218481+00 6833 0003-300#WJC22 SPMX-20240815301988 \N \N \N 1 \N [{"file_id": "da9ee96d-4a00-4b83-b259-b1d0cdd4e85d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f776f7e0939f4a2ba518c8476ad1e36f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f776f7e0939f4a2ba518c8476ad1e36f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f776f7e0939f4a2ba518c8476ad1e36f.jpg", "file_size": 24483, "is_delete": false, "file_type": 1, "original_file_name": "0003-300#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776f7e0939f4a2ba518c8476ad1e36f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776f7e0939f4a2ba518c8476ad1e36f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776f7e0939f4a2ba518c8476ad1e36f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f776f7e0939f4a2ba518c8476ad1e36f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f776f7e0939f4a2ba518c8476ad1e36f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUnpM2y37MosVubdAqDzXnwXhmU=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.219833+00 2025-12-09 10:14:53.219837+00 6834 HT0101#蓝色 SPMX-20240815301980 \N \N \N 1 \N [{"file_id": "fc3384ea-9733-4d4b-b4bf-7bbb0197f490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93664b93862a4f00bafb68b5b071c625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93664b93862a4f00bafb68b5b071c625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93664b93862a4f00bafb68b5b071c625.jpg", "file_size": 12750, "is_delete": false, "file_type": 1, "original_file_name": "HT0101#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93664b93862a4f00bafb68b5b071c625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93664b93862a4f00bafb68b5b071c625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93664b93862a4f00bafb68b5b071c625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93664b93862a4f00bafb68b5b071c625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93664b93862a4f00bafb68b5b071c625.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsN_gMcv9eIh3_W7MTtRiU9SS7Y=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.221199+00 2025-12-09 10:14:53.221203+00 6835 FHXGPK-059-3 SPMX-20240815301982 \N \N \N 1 \N [{"file_id": "24d7ba1e-f742-4103-94f5-7e87545bf0f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb105db4723c46288226e9d162a29e67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb105db4723c46288226e9d162a29e67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb105db4723c46288226e9d162a29e67.jpg", "file_size": 26849, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-059-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb105db4723c46288226e9d162a29e67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb105db4723c46288226e9d162a29e67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb105db4723c46288226e9d162a29e67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb105db4723c46288226e9d162a29e67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb105db4723c46288226e9d162a29e67.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0Ya59xmdFL-pS69NUK0UDOLGXo=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.222551+00 2025-12-09 10:14:53.222555+00 6836 C283#绿色 SPMX-20240815301983 \N \N \N 1 \N [{"file_id": "9053331c-dd60-45d4-9433-b3159d09ba14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d074d07563af417485e4765acafe6a3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d074d07563af417485e4765acafe6a3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d074d07563af417485e4765acafe6a3c.jpg", "file_size": 19504, "is_delete": false, "file_type": 1, "original_file_name": "C283#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074d07563af417485e4765acafe6a3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074d07563af417485e4765acafe6a3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d074d07563af417485e4765acafe6a3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d074d07563af417485e4765acafe6a3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d074d07563af417485e4765acafe6a3c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7tWV-7OtTkRaG7N2B4MvSlY-Fw=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.22394+00 2025-12-09 10:14:53.223944+00 6837 106#-白色 SPMX-20240815301978 \N \N \N 1 \N [{"file_id": "14758e9a-def3-42dc-9ae4-939b0cf8912d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4fa485863bd49c488cc2cc69c877686.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4fa485863bd49c488cc2cc69c877686.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4fa485863bd49c488cc2cc69c877686.jpg", "file_size": 53603, "is_delete": false, "file_type": 1, "original_file_name": "106#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fa485863bd49c488cc2cc69c877686.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fa485863bd49c488cc2cc69c877686.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fa485863bd49c488cc2cc69c877686.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4fa485863bd49c488cc2cc69c877686.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4fa485863bd49c488cc2cc69c877686.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e71FBbqi7cK8KN24kxZ6KSk97Vs=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.225302+00 2025-12-09 10:14:53.225307+00 6838 DK-001 SPMX-20240815301981 \N \N \N 1 \N [{"file_id": "9952e6e3-1165-473a-a0e7-a57216173c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb634798c2c14821b8971f57a6cf3c85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb634798c2c14821b8971f57a6cf3c85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb634798c2c14821b8971f57a6cf3c85.jpg", "file_size": 19060, "is_delete": false, "file_type": 1, "original_file_name": "DK-001.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb634798c2c14821b8971f57a6cf3c85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb634798c2c14821b8971f57a6cf3c85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb634798c2c14821b8971f57a6cf3c85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb634798c2c14821b8971f57a6cf3c85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb634798c2c14821b8971f57a6cf3c85.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZ-RM_ZIh59aAok-Ut9HW9NlR0Q=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.226628+00 2025-12-09 10:14:53.226633+00 6839 JTSS002FW#VS-D3 SPMX-20240815301986 \N \N \N 1 \N [{"file_id": "78c0ebba-85a2-4402-8ed8-4d3e1321203f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13a43d065cc149b3982e8c73928523c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13a43d065cc149b3982e8c73928523c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13a43d065cc149b3982e8c73928523c3.jpg", "file_size": 13541, "is_delete": false, "file_type": 1, "original_file_name": "JTSS002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a43d065cc149b3982e8c73928523c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a43d065cc149b3982e8c73928523c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a43d065cc149b3982e8c73928523c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13a43d065cc149b3982e8c73928523c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13a43d065cc149b3982e8c73928523c3.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvhuZzw-4u14ITGTIabN78W_ocI=", "createTime": "2024-08-15 14:44:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.227993+00 2025-12-09 10:14:53.227997+00 6840 0003-301#WJC22 SPMX-20240815301999 \N \N \N 1 \N [{"file_id": "65d6fb3f-e396-4cb9-98ca-c6168c10cea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a48114fefe24b2d92e432a8b94b9078.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a48114fefe24b2d92e432a8b94b9078.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a48114fefe24b2d92e432a8b94b9078.jpg", "file_size": 23987, "is_delete": false, "file_type": 1, "original_file_name": "0003-301#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a48114fefe24b2d92e432a8b94b9078.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a48114fefe24b2d92e432a8b94b9078.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a48114fefe24b2d92e432a8b94b9078.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a48114fefe24b2d92e432a8b94b9078.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a48114fefe24b2d92e432a8b94b9078.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukNSoe-g71qiRuxfRABCUDVVHlc=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.22934+00 2025-12-09 10:14:53.229345+00 6841 106#WJC22 SPMX-20240815302000 \N \N \N 1 \N [{"file_id": "1656a20c-8ea4-4395-920f-6fb98665f7a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "177c8b48727242c1965750bcb1375133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "177c8b48727242c1965750bcb1375133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "177c8b48727242c1965750bcb1375133.jpg", "file_size": 18467, "is_delete": false, "file_type": 1, "original_file_name": "106#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c8b48727242c1965750bcb1375133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c8b48727242c1965750bcb1375133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/177c8b48727242c1965750bcb1375133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/177c8b48727242c1965750bcb1375133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/177c8b48727242c1965750bcb1375133.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1b2cYFWoVVZQblgO4y3fTEJWQw=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.230673+00 2025-12-09 10:14:53.230677+00 6842 HT0101-10#WJC22 SPMX-20240815302001 \N \N \N 1 \N [{"file_id": "dfa074db-f3ca-4ac0-945c-c8934b86ceb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11a8d6fa85d43368312e5f0aea21d52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11a8d6fa85d43368312e5f0aea21d52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11a8d6fa85d43368312e5f0aea21d52.jpg", "file_size": 23342, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11a8d6fa85d43368312e5f0aea21d52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11a8d6fa85d43368312e5f0aea21d52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11a8d6fa85d43368312e5f0aea21d52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11a8d6fa85d43368312e5f0aea21d52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11a8d6fa85d43368312e5f0aea21d52.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQjCsZKcmLK6o0rC8kr8JYo8lY8=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.232047+00 2025-12-09 10:14:53.232052+00 6843 23-2103#A6前后片3XL SPMX-20240815302002 \N \N \N 1 \N [{"file_id": "17c24875-302d-4065-957c-1569b73ba575", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18b213f2d90e411b808aaa6d0097b1a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18b213f2d90e411b808aaa6d0097b1a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18b213f2d90e411b808aaa6d0097b1a1.jpg", "file_size": 12948, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A6前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b213f2d90e411b808aaa6d0097b1a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b213f2d90e411b808aaa6d0097b1a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b213f2d90e411b808aaa6d0097b1a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18b213f2d90e411b808aaa6d0097b1a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18b213f2d90e411b808aaa6d0097b1a1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyvYgvXQNhsnCB4IpHNbJ6O9Rww=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.233536+00 2025-12-09 10:14:53.233541+00 6844 JTSS002FW#VS-D3杏 SPMX-20240815301998 \N \N \N 1 \N [{"file_id": "3ea24b20-aa19-4a46-8db1-67da5f4f1ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfc85416ad114be6a54a5f36705b5c15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfc85416ad114be6a54a5f36705b5c15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfc85416ad114be6a54a5f36705b5c15.jpg", "file_size": 12534, "is_delete": false, "file_type": 1, "original_file_name": "JTSS002FW#VS-D3杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc85416ad114be6a54a5f36705b5c15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc85416ad114be6a54a5f36705b5c15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc85416ad114be6a54a5f36705b5c15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfc85416ad114be6a54a5f36705b5c15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfc85416ad114be6a54a5f36705b5c15.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZDtEjEoO3bnnQjD9seaiIA3LEc=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.235111+00 2025-12-09 10:14:53.235115+00 6845 LHJ9550#1#黑色 SPMX-20240815301994 \N \N \N 1 \N [{"file_id": "38779128-1d66-4caa-bb48-b70546e26a9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c618a57d7494f099a63e3ee215ae396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c618a57d7494f099a63e3ee215ae396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c618a57d7494f099a63e3ee215ae396.jpg", "file_size": 19589, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9550#1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c618a57d7494f099a63e3ee215ae396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c618a57d7494f099a63e3ee215ae396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c618a57d7494f099a63e3ee215ae396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c618a57d7494f099a63e3ee215ae396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c618a57d7494f099a63e3ee215ae396.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7dDdvMfd4VJd_EJxjcRehCTNpE=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.236642+00 2025-12-09 10:14:53.236647+00 6846 DK-002-1-批布 SPMX-20240815301996 \N \N \N 1 \N [{"file_id": "189c5d4e-ac32-4862-951d-d44376f7fad1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9a7eac5f1604f9490df24feb445cd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9a7eac5f1604f9490df24feb445cd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9a7eac5f1604f9490df24feb445cd2f.jpg", "file_size": 63114, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a7eac5f1604f9490df24feb445cd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a7eac5f1604f9490df24feb445cd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a7eac5f1604f9490df24feb445cd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9a7eac5f1604f9490df24feb445cd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9a7eac5f1604f9490df24feb445cd2f.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3kpnTS1UlbuFkzyavZa5iqknEk=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.238417+00 2025-12-09 10:14:53.238422+00 6847 C283#黑色 SPMX-20240815302004 \N \N \N 1 \N [{"file_id": "fa4ab5f0-3c08-4220-9378-1f7de417722d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b93dcf7869b74eb6a0ea999e1feda937.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b93dcf7869b74eb6a0ea999e1feda937.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b93dcf7869b74eb6a0ea999e1feda937.jpg", "file_size": 29319, "is_delete": false, "file_type": 1, "original_file_name": "C283#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93dcf7869b74eb6a0ea999e1feda937.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93dcf7869b74eb6a0ea999e1feda937.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93dcf7869b74eb6a0ea999e1feda937.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b93dcf7869b74eb6a0ea999e1feda937.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b93dcf7869b74eb6a0ea999e1feda937.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CmLCVVea_4WpWPPj21X_BRiC0sk=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.239983+00 2025-12-09 10:14:53.239988+00 6848 FHXGPK-059-5 SPMX-20240815302003 \N \N \N 1 \N [{"file_id": "4522cc42-2b62-4fed-a085-ac01d45c6064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd2238ca94f942ddba7187260b23d7c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd2238ca94f942ddba7187260b23d7c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd2238ca94f942ddba7187260b23d7c1.jpg", "file_size": 28581, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-059-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2238ca94f942ddba7187260b23d7c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2238ca94f942ddba7187260b23d7c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2238ca94f942ddba7187260b23d7c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd2238ca94f942ddba7187260b23d7c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd2238ca94f942ddba7187260b23d7c1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QFe0h6kzrblc0XxeNyfF_Eg5sKY=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.241524+00 2025-12-09 10:14:53.241529+00 6849 C283#黄色 SPMX-20240815301993 \N \N \N 1 \N [{"file_id": "5602abb6-48b4-4188-900f-96c75928abf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "996573c8610b47bb81bc5afb75216d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "996573c8610b47bb81bc5afb75216d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "996573c8610b47bb81bc5afb75216d16.jpg", "file_size": 19586, "is_delete": false, "file_type": 1, "original_file_name": "C283#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996573c8610b47bb81bc5afb75216d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996573c8610b47bb81bc5afb75216d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996573c8610b47bb81bc5afb75216d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/996573c8610b47bb81bc5afb75216d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/996573c8610b47bb81bc5afb75216d16.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WAg05EdoH7SL1sB3dVPoATVDBug=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.243102+00 2025-12-09 10:14:53.243107+00 6850 LZ1231#下身2号色 SPMX-20240815301997 \N \N \N 1 \N [{"file_id": "e145ef08-e631-47f2-a159-1fc5b401ca94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "498ab0f67ef94c119659b6a6e599e511.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "498ab0f67ef94c119659b6a6e599e511.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "498ab0f67ef94c119659b6a6e599e511.jpg", "file_size": 17780, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498ab0f67ef94c119659b6a6e599e511.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498ab0f67ef94c119659b6a6e599e511.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498ab0f67ef94c119659b6a6e599e511.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/498ab0f67ef94c119659b6a6e599e511.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/498ab0f67ef94c119659b6a6e599e511.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dr2DdIudaqeBzwvXaJ3_tPFGZ0=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.244631+00 2025-12-09 10:14:53.244636+00 6851 FHXGPK-059-4 SPMX-20240815301992 \N \N \N 1 \N [{"file_id": "a8feec37-a0a4-4280-8430-e85155715270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec6332b142f548e0a7baeb530fec70b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec6332b142f548e0a7baeb530fec70b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec6332b142f548e0a7baeb530fec70b4.jpg", "file_size": 24910, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-059-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec6332b142f548e0a7baeb530fec70b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec6332b142f548e0a7baeb530fec70b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec6332b142f548e0a7baeb530fec70b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec6332b142f548e0a7baeb530fec70b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec6332b142f548e0a7baeb530fec70b4.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_Cqw6oVde-ei0ynwzu2CuGBThM=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.246163+00 2025-12-09 10:14:53.246168+00 6852 80148#裤子前幅 SPMX-20240815301995 \N \N \N 1 \N [{"file_id": "15a8bace-99a9-450a-9a4c-26ee9024dea5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg", "file_size": 24770, "is_delete": false, "file_type": 1, "original_file_name": "80148#裤子前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccfda32f3aeb4c48b6d9ccbc1153aee0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuKRSJmSlYDrRw3WaAHPduZFetA=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.247701+00 2025-12-09 10:14:53.247712+00 6853 LHJ9550#20#枣红 SPMX-20240815302005 \N \N \N 1 \N [{"file_id": "17ffbdbe-32fa-4225-8ee0-e38b52cdb6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9702108b45f24bbab7d2b9b6f3bfb6d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9702108b45f24bbab7d2b9b6f3bfb6d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9702108b45f24bbab7d2b9b6f3bfb6d7.jpg", "file_size": 18585, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9550#20#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9702108b45f24bbab7d2b9b6f3bfb6d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9702108b45f24bbab7d2b9b6f3bfb6d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9702108b45f24bbab7d2b9b6f3bfb6d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9702108b45f24bbab7d2b9b6f3bfb6d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9702108b45f24bbab7d2b9b6f3bfb6d7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkBZxxRdloZ7tB9_0n337JuVKOs=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.249537+00 2025-12-09 10:14:53.249542+00 6854 LHJ9550#32#墨绿 SPMX-20240815302016 \N \N \N 1 \N [{"file_id": "9a1a5bdf-6a7a-490d-b7ca-555faf4cc5eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b5e5f296264ee3b00e1435b38aefc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b5e5f296264ee3b00e1435b38aefc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b5e5f296264ee3b00e1435b38aefc6.jpg", "file_size": 18639, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9550#32#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b5e5f296264ee3b00e1435b38aefc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b5e5f296264ee3b00e1435b38aefc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b5e5f296264ee3b00e1435b38aefc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b5e5f296264ee3b00e1435b38aefc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b5e5f296264ee3b00e1435b38aefc6.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bPFoSTm4JD8MJqQNzO_W19xiBk4=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.251073+00 2025-12-09 10:14:53.251078+00 6855 HT0101-100#WJC22 SPMX-20240815302013 \N \N \N 1 \N [{"file_id": "8bd52804-3870-4be9-b271-8bcca4c5bdb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab2b889ee0224c25a7fb5d53ec9327e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab2b889ee0224c25a7fb5d53ec9327e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab2b889ee0224c25a7fb5d53ec9327e9.jpg", "file_size": 19122, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-100#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2b889ee0224c25a7fb5d53ec9327e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2b889ee0224c25a7fb5d53ec9327e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab2b889ee0224c25a7fb5d53ec9327e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab2b889ee0224c25a7fb5d53ec9327e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab2b889ee0224c25a7fb5d53ec9327e9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNaK2gHzG15vpZntDVoKL7qfyhc=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.252602+00 2025-12-09 10:14:53.252607+00 6856 LZ1231#下身3号色 SPMX-20240815302007 \N \N \N 1 \N [{"file_id": "cc6c6085-c392-4603-b5d6-be774f400189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "256d0a1bfd97438cbc88aa12b65ca8d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "256d0a1bfd97438cbc88aa12b65ca8d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "256d0a1bfd97438cbc88aa12b65ca8d9.jpg", "file_size": 17251, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256d0a1bfd97438cbc88aa12b65ca8d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256d0a1bfd97438cbc88aa12b65ca8d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256d0a1bfd97438cbc88aa12b65ca8d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/256d0a1bfd97438cbc88aa12b65ca8d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/256d0a1bfd97438cbc88aa12b65ca8d9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Unrc4CTbH_G7dkvZEVp4DYtkXEQ=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.254155+00 2025-12-09 10:14:53.25416+00 6857 80152#玫红 SPMX-20240815302015 \N \N \N 1 \N [{"file_id": "931ede6c-d5c5-4147-a1bd-4762ec7d7204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4b9e858b3b14e2983f0124741efc67b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4b9e858b3b14e2983f0124741efc67b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4b9e858b3b14e2983f0124741efc67b.jpg", "file_size": 12331, "is_delete": false, "file_type": 1, "original_file_name": "80152#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b9e858b3b14e2983f0124741efc67b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b9e858b3b14e2983f0124741efc67b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b9e858b3b14e2983f0124741efc67b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4b9e858b3b14e2983f0124741efc67b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4b9e858b3b14e2983f0124741efc67b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7aUzz8XoWySJSeZ9u8Ggcqd03pc=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.255702+00 2025-12-09 10:14:53.255712+00 6858 0003-302#WJC22 SPMX-20240815302014 \N \N \N 1 \N [{"file_id": "9a4ab6e5-f531-4bde-8ee9-71be1c265259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00711280493f4bedb7fba3b96a020bef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00711280493f4bedb7fba3b96a020bef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00711280493f4bedb7fba3b96a020bef.jpg", "file_size": 17813, "is_delete": false, "file_type": 1, "original_file_name": "0003-302#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00711280493f4bedb7fba3b96a020bef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00711280493f4bedb7fba3b96a020bef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00711280493f4bedb7fba3b96a020bef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00711280493f4bedb7fba3b96a020bef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00711280493f4bedb7fba3b96a020bef.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEqvdBg-24aIcgjsoOgrP24tuWI=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.257258+00 2025-12-09 10:14:53.257263+00 6859 106#橙色 SPMX-20240815302009 \N \N \N 1 \N [{"file_id": "066b6f1b-f3a2-42f5-8c35-1680beb9b5a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92fae70570c242cd963cf089f9fc32cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92fae70570c242cd963cf089f9fc32cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92fae70570c242cd963cf089f9fc32cd.jpg", "file_size": 61766, "is_delete": false, "file_type": 1, "original_file_name": "106#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fae70570c242cd963cf089f9fc32cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fae70570c242cd963cf089f9fc32cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92fae70570c242cd963cf089f9fc32cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92fae70570c242cd963cf089f9fc32cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92fae70570c242cd963cf089f9fc32cd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Iidpr-KtAYiBjW76Ju_bXYoF6k=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.258802+00 2025-12-09 10:14:53.258807+00 6860 FHXGPK-060-1 SPMX-20240815302012 \N \N \N 1 \N [{"file_id": "ac9185bf-412b-42f1-adb4-b1b1393f44ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a43c08429af24090ae318d1792179b44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a43c08429af24090ae318d1792179b44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a43c08429af24090ae318d1792179b44.jpg", "file_size": 33485, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-060-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43c08429af24090ae318d1792179b44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43c08429af24090ae318d1792179b44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43c08429af24090ae318d1792179b44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a43c08429af24090ae318d1792179b44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a43c08429af24090ae318d1792179b44.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFk7a-sb6cmGYhPkNjpwkqM5buk=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.260606+00 2025-12-09 10:14:53.260611+00 6861 C288#墨绿 SPMX-20240815302019 \N \N \N 1 \N [{"file_id": "e0081d1d-bdc6-43d7-8a76-f2960a8d8311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1d78de21557473a9c4045f197276538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1d78de21557473a9c4045f197276538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1d78de21557473a9c4045f197276538.jpg", "file_size": 45827, "is_delete": false, "file_type": 1, "original_file_name": "C288#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d78de21557473a9c4045f197276538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d78de21557473a9c4045f197276538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d78de21557473a9c4045f197276538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1d78de21557473a9c4045f197276538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1d78de21557473a9c4045f197276538.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrebKUBuJPzleVq9-HcdKVQTAKs=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.262153+00 2025-12-09 10:14:53.262158+00 6862 LZ1231#下身4号色 SPMX-20240815302017 \N \N \N 1 \N [{"file_id": "53accf41-08a9-4736-93eb-24d4f48ddc3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aefec10ca0749df974166b9e843ca5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aefec10ca0749df974166b9e843ca5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aefec10ca0749df974166b9e843ca5a.jpg", "file_size": 16488, "is_delete": false, "file_type": 1, "original_file_name": "LZ1231#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aefec10ca0749df974166b9e843ca5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aefec10ca0749df974166b9e843ca5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aefec10ca0749df974166b9e843ca5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aefec10ca0749df974166b9e843ca5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aefec10ca0749df974166b9e843ca5a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTh-c1bW7k5kG-Tt01WgbjkLKtY=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.263713+00 2025-12-09 10:14:53.263718+00 6863 JTSS003#黑VS-D3 SPMX-20240815302018 \N \N \N 1 \N [{"file_id": "3d77a0bf-3363-4f9a-97f0-819fb5aa27b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67168c5fc19e4000acde51ab9280309c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67168c5fc19e4000acde51ab9280309c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67168c5fc19e4000acde51ab9280309c.jpg", "file_size": 15532, "is_delete": false, "file_type": 1, "original_file_name": "JTSS003#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67168c5fc19e4000acde51ab9280309c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67168c5fc19e4000acde51ab9280309c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67168c5fc19e4000acde51ab9280309c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67168c5fc19e4000acde51ab9280309c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67168c5fc19e4000acde51ab9280309c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZC2p6Rennuthqv3nspSkny8VlZI=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.265256+00 2025-12-09 10:14:53.265261+00 6864 80152#宝蓝 SPMX-20240815302006 \N \N \N 1 \N [{"file_id": "a277ccb2-20e3-455a-b015-c964974af69c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5f11e44944745408d882194b06d7398.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5f11e44944745408d882194b06d7398.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5f11e44944745408d882194b06d7398.jpg", "file_size": 12581, "is_delete": false, "file_type": 1, "original_file_name": "80152#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f11e44944745408d882194b06d7398.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f11e44944745408d882194b06d7398.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f11e44944745408d882194b06d7398.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5f11e44944745408d882194b06d7398.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5f11e44944745408d882194b06d7398.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:haO2DfxWX6byA9NSSR_qCcZIY_c=", "createTime": "2024-08-15 14:44:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.266799+00 2025-12-09 10:14:53.266804+00 6865 DK-002-1 SPMX-20240815302010 \N \N \N 1 \N [{"file_id": "24e1108f-6bc6-428c-bdad-2c3e9b89a495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf841c5bd4e0429183c132b26095d507.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf841c5bd4e0429183c132b26095d507.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf841c5bd4e0429183c132b26095d507.jpg", "file_size": 62340, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf841c5bd4e0429183c132b26095d507.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf841c5bd4e0429183c132b26095d507.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf841c5bd4e0429183c132b26095d507.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf841c5bd4e0429183c132b26095d507.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf841c5bd4e0429183c132b26095d507.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTfsgmDJGUIEre2yJkjyrSIw0Gg=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.28094+00 2025-12-09 10:14:53.280945+00 6874 HT0101-101#WJC22 SPMX-20240815302020 \N \N \N 1 \N [{"file_id": "47923e1a-ffe1-4947-aa75-277f0d6b690b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45ac51135cdf42139b5412c6c9b6c45e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45ac51135cdf42139b5412c6c9b6c45e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45ac51135cdf42139b5412c6c9b6c45e.jpg", "file_size": 8195, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-101#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ac51135cdf42139b5412c6c9b6c45e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ac51135cdf42139b5412c6c9b6c45e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ac51135cdf42139b5412c6c9b6c45e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45ac51135cdf42139b5412c6c9b6c45e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45ac51135cdf42139b5412c6c9b6c45e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oR45l1AGbYQt6y9EMrDKFAEMA7Y=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.268346+00 2025-12-09 10:14:53.268351+00 6866 23-2103#A6前后片4XL SPMX-20240815302011 \N \N \N 1 \N [{"file_id": "89274186-a707-4d01-a674-200ca1475244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a3cdeae4aef4a4592b6ecbdd023dabc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a3cdeae4aef4a4592b6ecbdd023dabc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a3cdeae4aef4a4592b6ecbdd023dabc.jpg", "file_size": 13647, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A6前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3cdeae4aef4a4592b6ecbdd023dabc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3cdeae4aef4a4592b6ecbdd023dabc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3cdeae4aef4a4592b6ecbdd023dabc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a3cdeae4aef4a4592b6ecbdd023dabc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a3cdeae4aef4a4592b6ecbdd023dabc.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8QaB9cPcJ8_rIf47LZdtMzzETs=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.269915+00 2025-12-09 10:14:53.26992+00 6867 JTSS003#蓝VS-D3 SPMX-20240815302008 \N \N \N 1 \N [{"file_id": "d0d319e1-4e32-4507-bbbe-38c6ea8a388d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c025439068934ad1a6224176cc28bb47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c025439068934ad1a6224176cc28bb47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c025439068934ad1a6224176cc28bb47.jpg", "file_size": 15763, "is_delete": false, "file_type": 1, "original_file_name": "JTSS003#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c025439068934ad1a6224176cc28bb47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c025439068934ad1a6224176cc28bb47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c025439068934ad1a6224176cc28bb47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c025439068934ad1a6224176cc28bb47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c025439068934ad1a6224176cc28bb47.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YcEO1qcErqnvb0YIhybt_qR8UUs=", "createTime": "2024-08-15 14:44:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.271668+00 2025-12-09 10:14:53.271673+00 6868 HT0101-102#WJC22 SPMX-20240815302032 \N \N \N 1 \N [{"file_id": "996fea29-19bc-4a7d-8bbe-110b92b4be76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5909980673314ab39fc4d6176604c9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5909980673314ab39fc4d6176604c9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5909980673314ab39fc4d6176604c9e0.jpg", "file_size": 23140, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-102#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5909980673314ab39fc4d6176604c9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5909980673314ab39fc4d6176604c9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5909980673314ab39fc4d6176604c9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5909980673314ab39fc4d6176604c9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5909980673314ab39fc4d6176604c9e0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BiDWCSoPqJMrds92gmFXaVMiRRE=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.273213+00 2025-12-09 10:14:53.273219+00 6869 C288#版本 SPMX-20240815302024 \N \N \N 1 \N [{"file_id": "6048fe58-a526-4d04-8cea-332c1a9926b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "188059d3e7ed4f62ae3173e6ae4f775d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "188059d3e7ed4f62ae3173e6ae4f775d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "188059d3e7ed4f62ae3173e6ae4f775d.jpg", "file_size": 46812, "is_delete": false, "file_type": 1, "original_file_name": "C288#版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188059d3e7ed4f62ae3173e6ae4f775d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188059d3e7ed4f62ae3173e6ae4f775d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/188059d3e7ed4f62ae3173e6ae4f775d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/188059d3e7ed4f62ae3173e6ae4f775d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/188059d3e7ed4f62ae3173e6ae4f775d.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrP5YJ62speLYC_YBQoe9ajPy8A=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.274764+00 2025-12-09 10:14:53.274769+00 6870 LZ1232#上身1号色 SPMX-20240815302030 \N \N \N 1 \N [{"file_id": "2fbe6a30-1d7d-4226-8c0e-feadded65c7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "672c5f70ccfc4ad58412ca9b103c56bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "672c5f70ccfc4ad58412ca9b103c56bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "672c5f70ccfc4ad58412ca9b103c56bd.jpg", "file_size": 17643, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c5f70ccfc4ad58412ca9b103c56bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c5f70ccfc4ad58412ca9b103c56bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c5f70ccfc4ad58412ca9b103c56bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/672c5f70ccfc4ad58412ca9b103c56bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/672c5f70ccfc4ad58412ca9b103c56bd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zslfBB_R8VKTfuybti5xbAtce00=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.27632+00 2025-12-09 10:14:53.276324+00 6871 FHXGPK-060-2 SPMX-20240815302022 \N \N \N 1 \N [{"file_id": "d4299273-2d7b-41fc-9375-48a4b6cacfcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "626392dadcdc4309bd6cd51e6ed6c5bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "626392dadcdc4309bd6cd51e6ed6c5bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "626392dadcdc4309bd6cd51e6ed6c5bb.jpg", "file_size": 36912, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-060-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/626392dadcdc4309bd6cd51e6ed6c5bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/626392dadcdc4309bd6cd51e6ed6c5bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/626392dadcdc4309bd6cd51e6ed6c5bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/626392dadcdc4309bd6cd51e6ed6c5bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/626392dadcdc4309bd6cd51e6ed6c5bb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cqzc7tFeXogY46x_fWSCPAas8s=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.27785+00 2025-12-09 10:14:53.277855+00 6872 JTSS003FW#VS-D3 SPMX-20240815302026 \N \N \N 1 \N [{"file_id": "c5f01d49-7c88-4ddb-9a63-9f9b99e2bd43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4fd71e3f8924d24819f23c9cd7a95fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4fd71e3f8924d24819f23c9cd7a95fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4fd71e3f8924d24819f23c9cd7a95fb.jpg", "file_size": 17581, "is_delete": false, "file_type": 1, "original_file_name": "JTSS003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fd71e3f8924d24819f23c9cd7a95fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fd71e3f8924d24819f23c9cd7a95fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fd71e3f8924d24819f23c9cd7a95fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4fd71e3f8924d24819f23c9cd7a95fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4fd71e3f8924d24819f23c9cd7a95fb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYt2IMW6730U4zQv0IW8-spDb7Y=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.279394+00 2025-12-09 10:14:53.279399+00 6873 LHJ9550#5#彩兰 SPMX-20240815302029 \N \N \N 1 \N [{"file_id": "23687216-cc7b-4a9a-8d11-bcc66512f066", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bef707d885c44349004569673b69a4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bef707d885c44349004569673b69a4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bef707d885c44349004569673b69a4b.jpg", "file_size": 19192, "is_delete": false, "file_type": 1, "original_file_name": "LHJ9550#5#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bef707d885c44349004569673b69a4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bef707d885c44349004569673b69a4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bef707d885c44349004569673b69a4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bef707d885c44349004569673b69a4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bef707d885c44349004569673b69a4b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9B-bI7h5NG5VflqDyAspNCzbAk=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.282771+00 2025-12-09 10:14:53.282776+00 6875 DK-002-2-批布 SPMX-20240815302025 \N \N \N 1 \N [{"file_id": "d7ea0c50-6c7f-4370-ad40-d427da406b1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fef5ed858f84867990d0d6b9760f095.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fef5ed858f84867990d0d6b9760f095.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fef5ed858f84867990d0d6b9760f095.jpg", "file_size": 64066, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fef5ed858f84867990d0d6b9760f095.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fef5ed858f84867990d0d6b9760f095.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fef5ed858f84867990d0d6b9760f095.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fef5ed858f84867990d0d6b9760f095.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fef5ed858f84867990d0d6b9760f095.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WxPga-4HRJcGEnAU1_6pMtkDFc=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.284344+00 2025-12-09 10:14:53.284349+00 6876 0003-303#WJC22 SPMX-20240815302027 \N \N \N 1 \N [{"file_id": "2fe41bc1-eb59-469b-ac0a-d088fea3871c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7de9cf5512904a849ef413e27c4d0405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7de9cf5512904a849ef413e27c4d0405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7de9cf5512904a849ef413e27c4d0405.jpg", "file_size": 17781, "is_delete": false, "file_type": 1, "original_file_name": "0003-303#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de9cf5512904a849ef413e27c4d0405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de9cf5512904a849ef413e27c4d0405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de9cf5512904a849ef413e27c4d0405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7de9cf5512904a849ef413e27c4d0405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7de9cf5512904a849ef413e27c4d0405.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCa5VlngvxHMca6qSqVewOWbc9M=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.285918+00 2025-12-09 10:14:53.285923+00 6877 23-2103#A6袖子4XL SPMX-20240815302031 \N \N \N 1 \N [{"file_id": "d1a7039f-cbc5-48a1-a34b-bd6d0ade1570", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caa97f174a0643d7ad280c2b3ce0603c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caa97f174a0643d7ad280c2b3ce0603c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caa97f174a0643d7ad280c2b3ce0603c.jpg", "file_size": 11282, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A6袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa97f174a0643d7ad280c2b3ce0603c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa97f174a0643d7ad280c2b3ce0603c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa97f174a0643d7ad280c2b3ce0603c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caa97f174a0643d7ad280c2b3ce0603c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caa97f174a0643d7ad280c2b3ce0603c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5LcUYUP7dnE67JpJbWOBkg4lsM=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.28737+00 2025-12-09 10:14:53.287375+00 6878 23-2103#A6袖子3XL SPMX-20240815302021 \N \N \N 1 \N [{"file_id": "0d12daa4-87e1-43ec-8068-d84a23c09838", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d53b7fdd2d46498faa97b67b92b2b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d53b7fdd2d46498faa97b67b92b2b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d53b7fdd2d46498faa97b67b92b2b9.jpg", "file_size": 13089, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A6袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d53b7fdd2d46498faa97b67b92b2b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d53b7fdd2d46498faa97b67b92b2b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d53b7fdd2d46498faa97b67b92b2b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d53b7fdd2d46498faa97b67b92b2b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d53b7fdd2d46498faa97b67b92b2b9.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZ-14cNwSHMSaNxPNTbQKcc70cQ=", "createTime": "2024-08-15 14:44:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.288754+00 2025-12-09 10:14:53.288758+00 6879 106#玫红 SPMX-20240815302023 \N \N \N 1 \N [{"file_id": "02fc810b-a0af-441e-8c83-4d15e6594bf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f99d857030134425bb3ad0e74a627088.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f99d857030134425bb3ad0e74a627088.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f99d857030134425bb3ad0e74a627088.jpg", "file_size": 62285, "is_delete": false, "file_type": 1, "original_file_name": "106#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99d857030134425bb3ad0e74a627088.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99d857030134425bb3ad0e74a627088.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99d857030134425bb3ad0e74a627088.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f99d857030134425bb3ad0e74a627088.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f99d857030134425bb3ad0e74a627088.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBW0bQpf1HPJvy2LwlVaMzAImuc=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.290147+00 2025-12-09 10:14:53.290151+00 6880 80152#紫色 SPMX-20240815302028 \N \N \N 1 \N [{"file_id": "2a7002d4-18b7-4360-84f2-966c6456af77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29539b570c0e42bbb2fb5e8418ac443a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29539b570c0e42bbb2fb5e8418ac443a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29539b570c0e42bbb2fb5e8418ac443a.jpg", "file_size": 12336, "is_delete": false, "file_type": 1, "original_file_name": "80152#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29539b570c0e42bbb2fb5e8418ac443a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29539b570c0e42bbb2fb5e8418ac443a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29539b570c0e42bbb2fb5e8418ac443a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29539b570c0e42bbb2fb5e8418ac443a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29539b570c0e42bbb2fb5e8418ac443a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0-LB1s7xEYtCBYKxeE2QCcmns8=", "createTime": "2024-08-15 14:44:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.291516+00 2025-12-09 10:14:53.29152+00 6881 106#紫色 SPMX-20240815302034 \N \N \N 1 \N [{"file_id": "7820af9f-b028-44cc-9b35-d009c9459ab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c912703a6ac3405bbee5d44d71a8ce0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c912703a6ac3405bbee5d44d71a8ce0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c912703a6ac3405bbee5d44d71a8ce0b.jpg", "file_size": 64560, "is_delete": false, "file_type": 1, "original_file_name": "106#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c912703a6ac3405bbee5d44d71a8ce0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c912703a6ac3405bbee5d44d71a8ce0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c912703a6ac3405bbee5d44d71a8ce0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c912703a6ac3405bbee5d44d71a8ce0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c912703a6ac3405bbee5d44d71a8ce0b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKEkep3rvd2UF_HFDIW3kyIvKzo=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.292908+00 2025-12-09 10:14:53.292913+00 6882 0003-305#WJC22 SPMX-20240815302044 \N \N \N 1 \N [{"file_id": "4878d2cb-9792-4b04-8229-72d782f986b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af2416a5e2ac40f08c1438da6d7ae403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af2416a5e2ac40f08c1438da6d7ae403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af2416a5e2ac40f08c1438da6d7ae403.jpg", "file_size": 16097, "is_delete": false, "file_type": 1, "original_file_name": "0003-305#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2416a5e2ac40f08c1438da6d7ae403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2416a5e2ac40f08c1438da6d7ae403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2416a5e2ac40f08c1438da6d7ae403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af2416a5e2ac40f08c1438da6d7ae403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af2416a5e2ac40f08c1438da6d7ae403.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JCxinsio3Fd2jfruE7VPkSivToI=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.294267+00 2025-12-09 10:14:53.294272+00 6883 JTSS004#紫色 SPMX-20240815302037 \N \N \N 1 \N [{"file_id": "18a58c89-60c4-4d86-8dce-343aae2c276c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d37f5f51c30c4666ade8fa0ae6aceec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d37f5f51c30c4666ade8fa0ae6aceec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d37f5f51c30c4666ade8fa0ae6aceec2.jpg", "file_size": 25428, "is_delete": false, "file_type": 1, "original_file_name": "JTSS004#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f5f51c30c4666ade8fa0ae6aceec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f5f51c30c4666ade8fa0ae6aceec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f5f51c30c4666ade8fa0ae6aceec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d37f5f51c30c4666ade8fa0ae6aceec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d37f5f51c30c4666ade8fa0ae6aceec2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5uRv9Ettp-u8TR3Av4n9iFxStFA=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.29578+00 2025-12-09 10:14:53.295785+00 6884 LHJ982-5#土黄 SPMX-20240815302039 \N \N \N 1 \N [{"file_id": "cd622c0c-ac37-422e-a18a-8ac797acac6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e74b66d89b004b7389fcb5c7c229ecf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e74b66d89b004b7389fcb5c7c229ecf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e74b66d89b004b7389fcb5c7c229ecf2.jpg", "file_size": 14227, "is_delete": false, "file_type": 1, "original_file_name": "LHJ982-5#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b66d89b004b7389fcb5c7c229ecf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b66d89b004b7389fcb5c7c229ecf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b66d89b004b7389fcb5c7c229ecf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e74b66d89b004b7389fcb5c7c229ecf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e74b66d89b004b7389fcb5c7c229ecf2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uW0pH521I91a-1Y6sSPyQyU1Kvg=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.297239+00 2025-12-09 10:14:53.297243+00 6885 23-2103#A6领子通用 SPMX-20240815302041 \N \N \N 1 \N [{"file_id": "2682a9c8-0f69-4390-8811-76c6f7b71f2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf1a80ea9f184b7cbdb04867ac67b208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf1a80ea9f184b7cbdb04867ac67b208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf1a80ea9f184b7cbdb04867ac67b208.jpg", "file_size": 9007, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A6领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a80ea9f184b7cbdb04867ac67b208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a80ea9f184b7cbdb04867ac67b208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a80ea9f184b7cbdb04867ac67b208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf1a80ea9f184b7cbdb04867ac67b208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf1a80ea9f184b7cbdb04867ac67b208.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EybRv1QR7Ai6Iw-ekFbrWbsswBQ=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.298656+00 2025-12-09 10:14:53.29866+00 6886 80152#蓝色 SPMX-20240815302046 \N \N \N 1 \N [{"file_id": "d91805cd-4b0f-40aa-83ce-7931336a39fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3231e14437554d8f8ade1901c1b237a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3231e14437554d8f8ade1901c1b237a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3231e14437554d8f8ade1901c1b237a0.jpg", "file_size": 11384, "is_delete": false, "file_type": 1, "original_file_name": "80152#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3231e14437554d8f8ade1901c1b237a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3231e14437554d8f8ade1901c1b237a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3231e14437554d8f8ade1901c1b237a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3231e14437554d8f8ade1901c1b237a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3231e14437554d8f8ade1901c1b237a0.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RTsN56l0ISSymfgyNGVoDtvfcA=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.300039+00 2025-12-09 10:14:53.300044+00 6887 80152#红色 SPMX-20240815302033 \N \N \N 1 \N [{"file_id": "2c79b8fa-7945-4a04-a1be-6475197f21f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af8c9d8383734c1e9fc92028970fd24c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af8c9d8383734c1e9fc92028970fd24c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af8c9d8383734c1e9fc92028970fd24c.jpg", "file_size": 11579, "is_delete": false, "file_type": 1, "original_file_name": "80152#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8c9d8383734c1e9fc92028970fd24c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8c9d8383734c1e9fc92028970fd24c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8c9d8383734c1e9fc92028970fd24c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af8c9d8383734c1e9fc92028970fd24c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af8c9d8383734c1e9fc92028970fd24c.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z655qs7S1wueVgQ0R2jgVdyySKM=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.301419+00 2025-12-09 10:14:53.301423+00 6888 FHXGPK-060-3 SPMX-20240815302035 \N \N \N 1 \N [{"file_id": "e82a6436-7409-4f98-960c-92f01e545065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ca837d44fe74f07a978598e1402e541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ca837d44fe74f07a978598e1402e541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ca837d44fe74f07a978598e1402e541.jpg", "file_size": 37501, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-060-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca837d44fe74f07a978598e1402e541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca837d44fe74f07a978598e1402e541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca837d44fe74f07a978598e1402e541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ca837d44fe74f07a978598e1402e541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ca837d44fe74f07a978598e1402e541.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FapH0hsXeXAEwv5pZb2HGlL6PbM=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.302764+00 2025-12-09 10:14:53.302768+00 6889 0003-304#WJC22 SPMX-20240815302036 \N \N \N 1 \N [{"file_id": "c19d60a9-608d-46ef-8f8f-5ebb4ec2d98a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e598b14a2324979b64e5c99aa8a79be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e598b14a2324979b64e5c99aa8a79be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e598b14a2324979b64e5c99aa8a79be.jpg", "file_size": 19754, "is_delete": false, "file_type": 1, "original_file_name": "0003-304#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e598b14a2324979b64e5c99aa8a79be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e598b14a2324979b64e5c99aa8a79be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e598b14a2324979b64e5c99aa8a79be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e598b14a2324979b64e5c99aa8a79be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e598b14a2324979b64e5c99aa8a79be.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDjRHeyNKerT3-6yxtia8NGwTUo=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.304162+00 2025-12-09 10:14:53.304165+00 6890 106#红色 SPMX-20240815302045 \N \N \N 1 \N [{"file_id": "f2a2aaf3-17d7-4c05-a921-6823e62af150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "104470ca97f34154b3c251799431bcdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "104470ca97f34154b3c251799431bcdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "104470ca97f34154b3c251799431bcdd.jpg", "file_size": 63372, "is_delete": false, "file_type": 1, "original_file_name": "106#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104470ca97f34154b3c251799431bcdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104470ca97f34154b3c251799431bcdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104470ca97f34154b3c251799431bcdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/104470ca97f34154b3c251799431bcdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/104470ca97f34154b3c251799431bcdd.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R6cDcvb_v4zSSdi9o_8lck82b0Q=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.305529+00 2025-12-09 10:14:53.305534+00 6891 DK-002-2 SPMX-20240815302042 \N \N \N 1 \N [{"file_id": "671d9782-0659-488f-bf5f-f096665c4698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "931e59173cbc42caab2d66760b70e7e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "931e59173cbc42caab2d66760b70e7e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "931e59173cbc42caab2d66760b70e7e1.jpg", "file_size": 77043, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931e59173cbc42caab2d66760b70e7e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931e59173cbc42caab2d66760b70e7e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931e59173cbc42caab2d66760b70e7e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/931e59173cbc42caab2d66760b70e7e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/931e59173cbc42caab2d66760b70e7e1.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0LUJ3spAusjldx45ozU7k9kL6HM=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.306924+00 2025-12-09 10:14:53.306928+00 6892 JTSS004#蓝色 SPMX-20240815302047 \N \N \N 1 \N [{"file_id": "7e073898-bbf2-4e58-ad45-0ebc0362a081", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dd1f40ae4e74ba6ae120ce4d68d0974.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dd1f40ae4e74ba6ae120ce4d68d0974.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dd1f40ae4e74ba6ae120ce4d68d0974.jpg", "file_size": 26149, "is_delete": false, "file_type": 1, "original_file_name": "JTSS004#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd1f40ae4e74ba6ae120ce4d68d0974.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd1f40ae4e74ba6ae120ce4d68d0974.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dd1f40ae4e74ba6ae120ce4d68d0974.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dd1f40ae4e74ba6ae120ce4d68d0974.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dd1f40ae4e74ba6ae120ce4d68d0974.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcQadB_pnBOaQv0Z1mdYE1nWL2g=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.308418+00 2025-12-09 10:14:53.308423+00 6893 LZ1232#上身2号色 SPMX-20240815302040 \N \N \N 1 \N [{"file_id": "0607a927-5a72-42cb-a8ac-efacdf406c82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3782167bac8a49b2990019bd528aa5cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3782167bac8a49b2990019bd528aa5cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3782167bac8a49b2990019bd528aa5cf.jpg", "file_size": 17821, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3782167bac8a49b2990019bd528aa5cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3782167bac8a49b2990019bd528aa5cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3782167bac8a49b2990019bd528aa5cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3782167bac8a49b2990019bd528aa5cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3782167bac8a49b2990019bd528aa5cf.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dqAnEf-Reu9VxJ5IrSToDu2f0M=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.30989+00 2025-12-09 10:14:53.309894+00 6894 C288#版色 SPMX-20240815302038 \N \N \N 1 \N [{"file_id": "552f8d88-39fe-4ea4-acc2-91c8a7841642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "324e87f81f7d443380875df353cdb72b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "324e87f81f7d443380875df353cdb72b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "324e87f81f7d443380875df353cdb72b.jpg", "file_size": 46812, "is_delete": false, "file_type": 1, "original_file_name": "C288#版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324e87f81f7d443380875df353cdb72b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324e87f81f7d443380875df353cdb72b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324e87f81f7d443380875df353cdb72b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/324e87f81f7d443380875df353cdb72b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/324e87f81f7d443380875df353cdb72b.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ivrx1O1PuSo_H4EsZgvzXqK1ung=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.31128+00 2025-12-09 10:14:53.311284+00 6895 HT0101-103#WJC22 SPMX-20240815302043 \N \N \N 1 \N [{"file_id": "da1bfb0b-d756-41f5-a7b3-4bfd4d752cc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75c8dfa0197449d49d84314c068e7bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75c8dfa0197449d49d84314c068e7bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75c8dfa0197449d49d84314c068e7bfb.jpg", "file_size": 14355, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-103#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c8dfa0197449d49d84314c068e7bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c8dfa0197449d49d84314c068e7bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c8dfa0197449d49d84314c068e7bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75c8dfa0197449d49d84314c068e7bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75c8dfa0197449d49d84314c068e7bfb.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxNbuBXdDewdr4nuNEI4oMn37nQ=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.312646+00 2025-12-09 10:14:53.31265+00 6896 FHXGPK-060-4 SPMX-20240815302048 \N \N \N 1 \N [{"file_id": "7771d9d6-a17d-4c39-bae9-cfd6ed2d9ecf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ceae2336e1241e59796edf923b70b0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ceae2336e1241e59796edf923b70b0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ceae2336e1241e59796edf923b70b0e.jpg", "file_size": 31446, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-060-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceae2336e1241e59796edf923b70b0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceae2336e1241e59796edf923b70b0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceae2336e1241e59796edf923b70b0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ceae2336e1241e59796edf923b70b0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ceae2336e1241e59796edf923b70b0e.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QK9HNqa4Ys2ehsmJ0OYb0NsHbaw=", "createTime": "2024-08-15 14:44:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.31402+00 2025-12-09 10:14:53.314024+00 6897 C288#玫红 SPMX-20240815302049 \N \N \N 1 \N [{"file_id": "52d9ae6b-cdf1-43d1-9abe-d58c97793c3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b803b674dc9449a9ddfbf365e9be3d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b803b674dc9449a9ddfbf365e9be3d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b803b674dc9449a9ddfbf365e9be3d7.jpg", "file_size": 44321, "is_delete": false, "file_type": 1, "original_file_name": "C288#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b803b674dc9449a9ddfbf365e9be3d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b803b674dc9449a9ddfbf365e9be3d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b803b674dc9449a9ddfbf365e9be3d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b803b674dc9449a9ddfbf365e9be3d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b803b674dc9449a9ddfbf365e9be3d7.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77iMR90sTOstQMocB4dEyrbnTIM=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.315398+00 2025-12-09 10:14:53.315402+00 6898 HT0101-105#WJC22 SPMX-20240815302064 \N \N \N 1 \N [{"file_id": "a731d89f-18b8-484e-9978-c390fc8f34de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa73e9b5db34434c8c5a02dff976f3b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa73e9b5db34434c8c5a02dff976f3b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa73e9b5db34434c8c5a02dff976f3b2.jpg", "file_size": 25887, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-105#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa73e9b5db34434c8c5a02dff976f3b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa73e9b5db34434c8c5a02dff976f3b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa73e9b5db34434c8c5a02dff976f3b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa73e9b5db34434c8c5a02dff976f3b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa73e9b5db34434c8c5a02dff976f3b2.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4QodrHOd4kM5-sMgwnBrZfRuUI=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.316761+00 2025-12-09 10:14:53.316765+00 6899 80152#领子1 SPMX-20240815302058 \N \N \N 1 \N [{"file_id": "d3d945a5-085f-436e-a2cc-554442085d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c890ffbbc2fc4bfaa9ace284a47a563a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c890ffbbc2fc4bfaa9ace284a47a563a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c890ffbbc2fc4bfaa9ace284a47a563a.jpg", "file_size": 7647, "is_delete": false, "file_type": 1, "original_file_name": "80152#领子1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c890ffbbc2fc4bfaa9ace284a47a563a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c890ffbbc2fc4bfaa9ace284a47a563a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c890ffbbc2fc4bfaa9ace284a47a563a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c890ffbbc2fc4bfaa9ace284a47a563a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c890ffbbc2fc4bfaa9ace284a47a563a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7cyUPD9lDqHtxe9j-WPFGBPssM=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.318153+00 2025-12-09 10:14:53.318157+00 6900 23-2103#A7前后片4XL SPMX-20240815302063 \N \N \N 1 \N [{"file_id": "33acefd2-1c30-4670-9092-d58b481a6220", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d43d7bfc09147b3b7e979dc3a12c11a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d43d7bfc09147b3b7e979dc3a12c11a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d43d7bfc09147b3b7e979dc3a12c11a.jpg", "file_size": 10049, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A7前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d43d7bfc09147b3b7e979dc3a12c11a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d43d7bfc09147b3b7e979dc3a12c11a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d43d7bfc09147b3b7e979dc3a12c11a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d43d7bfc09147b3b7e979dc3a12c11a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d43d7bfc09147b3b7e979dc3a12c11a.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkcbsCE0xJkrMYdSdVyXFirN5no=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.319519+00 2025-12-09 10:14:53.319523+00 6901 0003-306#WJC22 SPMX-20240815302055 \N \N \N 1 \N [{"file_id": "99647844-2fd5-4aaf-896d-6956dddccb0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg", "file_size": 21520, "is_delete": false, "file_type": 1, "original_file_name": "0003-306#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1ae4ebcaa564fcbbac6fc79c71c50b5.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiQbXa39TD19dFHG-ZsSHB7jr7c=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.320908+00 2025-12-09 10:14:53.320912+00 6902 LZ1232#上身4号色 SPMX-20240815302061 \N \N \N 1 \N [{"file_id": "16c70bf7-afb2-4592-935c-7ed04fc425f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3276120d3f0a47e1b4fb1ef5480bdb14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3276120d3f0a47e1b4fb1ef5480bdb14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3276120d3f0a47e1b4fb1ef5480bdb14.jpg", "file_size": 17344, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3276120d3f0a47e1b4fb1ef5480bdb14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3276120d3f0a47e1b4fb1ef5480bdb14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3276120d3f0a47e1b4fb1ef5480bdb14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3276120d3f0a47e1b4fb1ef5480bdb14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3276120d3f0a47e1b4fb1ef5480bdb14.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fx01O5f41ArntFUZ4Pwd2SzLXRk=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.322285+00 2025-12-09 10:14:53.322289+00 6903 LHJ982-5#枣红 SPMX-20240815302062 \N \N \N 1 \N [{"file_id": "0ee56c0f-d5a1-4508-bcab-006872c1612e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a43277c66a44f2784b5f2d0e2b1dc47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a43277c66a44f2784b5f2d0e2b1dc47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a43277c66a44f2784b5f2d0e2b1dc47.jpg", "file_size": 16900, "is_delete": false, "file_type": 1, "original_file_name": "LHJ982-5#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a43277c66a44f2784b5f2d0e2b1dc47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a43277c66a44f2784b5f2d0e2b1dc47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a43277c66a44f2784b5f2d0e2b1dc47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a43277c66a44f2784b5f2d0e2b1dc47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a43277c66a44f2784b5f2d0e2b1dc47.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-e-ADSiPhe07TgUdRxeEvahslzc=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.323635+00 2025-12-09 10:14:53.323639+00 6904 FHXGPK-060-5 SPMX-20240815302059 \N \N \N 1 \N [{"file_id": "5e51da78-c2b7-4fee-a41c-c83f1c43a5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg", "file_size": 33574, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-060-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd8a4d3572ee4d4ca1c03438fc4e5d12.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lXHOW2UQt24q1Z9xJrChZlm2qgc=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.325+00 2025-12-09 10:14:53.325005+00 6905 23-2103#A7前后片3XL SPMX-20240815302052 \N \N \N 1 \N [{"file_id": "b63d418e-2fef-4c48-b34e-a420fcb6b4b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bde1aa970cf4bca80379277247f2e70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bde1aa970cf4bca80379277247f2e70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bde1aa970cf4bca80379277247f2e70.jpg", "file_size": 8674, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A7前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde1aa970cf4bca80379277247f2e70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde1aa970cf4bca80379277247f2e70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde1aa970cf4bca80379277247f2e70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bde1aa970cf4bca80379277247f2e70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bde1aa970cf4bca80379277247f2e70.jpg?e=1765361692&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:086IJT7WuXywvKJQT1CBVZEFAEg=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.967496+00 2025-12-09 10:14:53.967505+00 6906 HT0101-104#WJC22 SPMX-20240815302053 \N \N \N 1 \N [{"file_id": "f4cf6f28-d083-4276-996c-4742e0e14682", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f531f94966ed46568ceaf39562625479.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f531f94966ed46568ceaf39562625479.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f531f94966ed46568ceaf39562625479.jpg", "file_size": 12955, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-104#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f531f94966ed46568ceaf39562625479.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f531f94966ed46568ceaf39562625479.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f531f94966ed46568ceaf39562625479.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f531f94966ed46568ceaf39562625479.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f531f94966ed46568ceaf39562625479.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vETcFwqkt6yzm-nhPjYjlinF5k=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.969777+00 2025-12-09 10:14:53.969783+00 6907 C288#白色 SPMX-20240815302060 \N \N \N 1 \N [{"file_id": "f9abcd14-c14a-44a8-8494-562067823aed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ca40192931649a69f57c0c94c43b2c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ca40192931649a69f57c0c94c43b2c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ca40192931649a69f57c0c94c43b2c9.jpg", "file_size": 41203, "is_delete": false, "file_type": 1, "original_file_name": "C288#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca40192931649a69f57c0c94c43b2c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca40192931649a69f57c0c94c43b2c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca40192931649a69f57c0c94c43b2c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ca40192931649a69f57c0c94c43b2c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ca40192931649a69f57c0c94c43b2c9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-xay5qQXYFytn1ZV61nx5bovy8=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.971635+00 2025-12-09 10:14:53.971643+00 6908 LZ1232#上身3号色 SPMX-20240815302050 \N \N \N 1 \N [{"file_id": "6bc0d874-4e1a-4112-8cc3-664674c79513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a3a55651ba4c4eba32cd7c2a6dba96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a3a55651ba4c4eba32cd7c2a6dba96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a3a55651ba4c4eba32cd7c2a6dba96.jpg", "file_size": 17235, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3a55651ba4c4eba32cd7c2a6dba96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3a55651ba4c4eba32cd7c2a6dba96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3a55651ba4c4eba32cd7c2a6dba96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a3a55651ba4c4eba32cd7c2a6dba96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a3a55651ba4c4eba32cd7c2a6dba96.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o68Id4l8gNDLtYb7Ed7M12Zd4V8=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.973306+00 2025-12-09 10:14:53.973312+00 6909 106#绿色 SPMX-20240815302056 \N \N \N 1 \N [{"file_id": "86ca4001-4bff-4a0b-ab10-e046fb00308a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fbf2299c42141b19688783086f1e231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fbf2299c42141b19688783086f1e231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fbf2299c42141b19688783086f1e231.jpg", "file_size": 64813, "is_delete": false, "file_type": 1, "original_file_name": "106#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbf2299c42141b19688783086f1e231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbf2299c42141b19688783086f1e231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbf2299c42141b19688783086f1e231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fbf2299c42141b19688783086f1e231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fbf2299c42141b19688783086f1e231.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPa1WXPE62m1xRR4DtJg6OCyIkI=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.974801+00 2025-12-09 10:14:53.974805+00 6910 LHJ982-5#彩蓝 SPMX-20240815302051 \N \N \N 1 \N [{"file_id": "1059fc77-ac99-4e47-8060-aed3504b19b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fb191a026784ac79452382030a443f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fb191a026784ac79452382030a443f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fb191a026784ac79452382030a443f4.jpg", "file_size": 17834, "is_delete": false, "file_type": 1, "original_file_name": "LHJ982-5#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb191a026784ac79452382030a443f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb191a026784ac79452382030a443f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fb191a026784ac79452382030a443f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fb191a026784ac79452382030a443f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fb191a026784ac79452382030a443f4.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L18oyrxnfLap9lIyDMdqZGS2txk=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.976243+00 2025-12-09 10:14:53.976247+00 6911 DK-002-3-批布 SPMX-20240815302054 \N \N \N 1 \N [{"file_id": "a43b5023-2465-486b-8335-b687fa867c59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "498b3d1f718a4720a11642a68f717c20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "498b3d1f718a4720a11642a68f717c20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "498b3d1f718a4720a11642a68f717c20.jpg", "file_size": 59368, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b3d1f718a4720a11642a68f717c20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b3d1f718a4720a11642a68f717c20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b3d1f718a4720a11642a68f717c20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/498b3d1f718a4720a11642a68f717c20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/498b3d1f718a4720a11642a68f717c20.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03vnJFkr5BuDwrjc6f4UL1QHJM8=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.977625+00 2025-12-09 10:14:53.977629+00 6912 JTSS004FW#VS-D3 SPMX-20240815302057 \N \N \N 1 \N [{"file_id": "9f231df1-11c4-44dd-89b0-ec3a5b64dd69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "654c0185f4c142e7a99e914fb99029ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "654c0185f4c142e7a99e914fb99029ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "654c0185f4c142e7a99e914fb99029ec.jpg", "file_size": 14703, "is_delete": false, "file_type": 1, "original_file_name": "JTSS004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654c0185f4c142e7a99e914fb99029ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654c0185f4c142e7a99e914fb99029ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654c0185f4c142e7a99e914fb99029ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/654c0185f4c142e7a99e914fb99029ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/654c0185f4c142e7a99e914fb99029ec.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7vp6u3nFlsXDZSCd9qj6Qu-ZgU=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.979071+00 2025-12-09 10:14:53.979075+00 6913 DK-002-3 SPMX-20240815302065 \N \N \N 1 \N [{"file_id": "8d257498-0e1d-4fd0-8a4c-83089fb452c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71f142d4eaac4255b311a90b5f2913db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71f142d4eaac4255b311a90b5f2913db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71f142d4eaac4255b311a90b5f2913db.jpg", "file_size": 52718, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f142d4eaac4255b311a90b5f2913db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f142d4eaac4255b311a90b5f2913db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f142d4eaac4255b311a90b5f2913db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71f142d4eaac4255b311a90b5f2913db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71f142d4eaac4255b311a90b5f2913db.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmDcy_sjgdo0oPSonMW1aHSeFAY=", "createTime": "2024-08-15 14:44:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.98047+00 2025-12-09 10:14:53.980474+00 6914 JTSS005#VS-D3 SPMX-20240815302071 \N \N \N 1 \N [{"file_id": "42f8ec2d-fd9f-4197-9b73-5ca66299db4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f650f731b0c14359a0ad9b5aa694230a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f650f731b0c14359a0ad9b5aa694230a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f650f731b0c14359a0ad9b5aa694230a.jpg", "file_size": 13108, "is_delete": false, "file_type": 1, "original_file_name": "JTSS005#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f650f731b0c14359a0ad9b5aa694230a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f650f731b0c14359a0ad9b5aa694230a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f650f731b0c14359a0ad9b5aa694230a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f650f731b0c14359a0ad9b5aa694230a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f650f731b0c14359a0ad9b5aa694230a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVHpE285BKLG3kG0j7oTYueGzqo=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.981841+00 2025-12-09 10:14:53.981845+00 6915 C288#红色 SPMX-20240815302069 \N \N \N 1 \N [{"file_id": "285eed9c-c8fc-4176-bad9-5b3e10ea6d49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e040d2e17c1349418312a6ca4346abe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e040d2e17c1349418312a6ca4346abe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e040d2e17c1349418312a6ca4346abe8.jpg", "file_size": 13003, "is_delete": false, "file_type": 1, "original_file_name": "C288#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e040d2e17c1349418312a6ca4346abe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e040d2e17c1349418312a6ca4346abe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e040d2e17c1349418312a6ca4346abe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e040d2e17c1349418312a6ca4346abe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e040d2e17c1349418312a6ca4346abe8.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fue2M146-Jod9mN4Fna-2M0a-I0=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.983275+00 2025-12-09 10:14:53.98328+00 6916 0003-307#WJC22 SPMX-20240815302066 \N \N \N 1 \N [{"file_id": "85461321-fa50-40cd-8b7a-dbb0d6bbaac7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dd93fd817cd4310a0ab079f83af81fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dd93fd817cd4310a0ab079f83af81fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dd93fd817cd4310a0ab079f83af81fa.jpg", "file_size": 17131, "is_delete": false, "file_type": 1, "original_file_name": "0003-307#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd93fd817cd4310a0ab079f83af81fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd93fd817cd4310a0ab079f83af81fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd93fd817cd4310a0ab079f83af81fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dd93fd817cd4310a0ab079f83af81fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dd93fd817cd4310a0ab079f83af81fa.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ap99JJD9Fg6lZASeAJXfYOyAQS4=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.984659+00 2025-12-09 10:14:53.984663+00 6917 80152#领子3 SPMX-20240815302079 \N \N \N 1 \N [{"file_id": "c8bd8692-5706-40e8-be5e-b6f12e0d1760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3b47c4128c1496faef9802fa451e070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3b47c4128c1496faef9802fa451e070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3b47c4128c1496faef9802fa451e070.jpg", "file_size": 7770, "is_delete": false, "file_type": 1, "original_file_name": "80152#领子3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b47c4128c1496faef9802fa451e070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b47c4128c1496faef9802fa451e070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b47c4128c1496faef9802fa451e070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3b47c4128c1496faef9802fa451e070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3b47c4128c1496faef9802fa451e070.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EgdFiYO2rSxjGGd76R5MuhV8OE=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.986316+00 2025-12-09 10:14:53.98632+00 6918 DK-002-4-批布 SPMX-20240815302076 \N \N \N 1 \N [{"file_id": "bdab3f6b-2558-409d-86e4-e702a2c485eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19938c754230441aa250118988e31011.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19938c754230441aa250118988e31011.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19938c754230441aa250118988e31011.jpg", "file_size": 62614, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19938c754230441aa250118988e31011.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19938c754230441aa250118988e31011.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19938c754230441aa250118988e31011.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19938c754230441aa250118988e31011.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19938c754230441aa250118988e31011.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A80rsA1_WbWdXHNcry7S8SUNQAU=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.987972+00 2025-12-09 10:14:53.987978+00 6919 FHXGPK-061-1 SPMX-20240815302070 \N \N \N 1 \N [{"file_id": "dea9f1c3-fa7f-4639-ada1-e78423a710e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95e40aa7d9ff4ab49f3487069b74c278.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95e40aa7d9ff4ab49f3487069b74c278.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95e40aa7d9ff4ab49f3487069b74c278.jpg", "file_size": 28517, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-061-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e40aa7d9ff4ab49f3487069b74c278.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e40aa7d9ff4ab49f3487069b74c278.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e40aa7d9ff4ab49f3487069b74c278.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95e40aa7d9ff4ab49f3487069b74c278.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95e40aa7d9ff4ab49f3487069b74c278.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYEpP6yjgFAvHNUSAli4sOxT6js=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.989807+00 2025-12-09 10:14:53.989812+00 6920 80152#领子2 SPMX-20240815302068 \N \N \N 1 \N [{"file_id": "ea18c2f7-cf77-471d-884b-d6ed91028283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0bc042949d3405ba9bbd56e6fe78740.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0bc042949d3405ba9bbd56e6fe78740.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0bc042949d3405ba9bbd56e6fe78740.jpg", "file_size": 8070, "is_delete": false, "file_type": 1, "original_file_name": "80152#领子2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bc042949d3405ba9bbd56e6fe78740.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bc042949d3405ba9bbd56e6fe78740.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bc042949d3405ba9bbd56e6fe78740.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0bc042949d3405ba9bbd56e6fe78740.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0bc042949d3405ba9bbd56e6fe78740.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGM2nBx3BwOXoH14BZFO5ugfjdY=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.99147+00 2025-12-09 10:14:53.991484+00 6921 0003-308#WJC22 SPMX-20240815302077 \N \N \N 1 \N [{"file_id": "4e5f1003-e8bf-4770-a0b9-4100839aa01b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc7f860ea011448fbcb14beeda832101.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc7f860ea011448fbcb14beeda832101.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc7f860ea011448fbcb14beeda832101.jpg", "file_size": 21343, "is_delete": false, "file_type": 1, "original_file_name": "0003-308#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f860ea011448fbcb14beeda832101.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f860ea011448fbcb14beeda832101.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f860ea011448fbcb14beeda832101.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc7f860ea011448fbcb14beeda832101.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc7f860ea011448fbcb14beeda832101.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kH2rYHPNQMBoA3YroyxvrsT9vN8=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.993434+00 2025-12-09 10:14:53.993438+00 6922 LHJ982-5#绿色 SPMX-20240815302072 \N \N \N 1 \N [{"file_id": "a72089a5-3e72-4faa-bc97-8713a7ef2bb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192119ac88bf4c788381d11d231cba63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192119ac88bf4c788381d11d231cba63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192119ac88bf4c788381d11d231cba63.jpg", "file_size": 15552, "is_delete": false, "file_type": 1, "original_file_name": "LHJ982-5#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192119ac88bf4c788381d11d231cba63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192119ac88bf4c788381d11d231cba63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192119ac88bf4c788381d11d231cba63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192119ac88bf4c788381d11d231cba63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192119ac88bf4c788381d11d231cba63.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oh_OonrbD-dP2OJle2E9MWgrBgw=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.995163+00 2025-12-09 10:14:53.995168+00 6923 1060#杏色 SPMX-20240815302078 \N \N \N 1 \N [{"file_id": "88f11424-ef8b-4c50-955d-30754ca510b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a476ee2311f4f6a863eecae49a166d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a476ee2311f4f6a863eecae49a166d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a476ee2311f4f6a863eecae49a166d0.jpg", "file_size": 21505, "is_delete": false, "file_type": 1, "original_file_name": "1060#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a476ee2311f4f6a863eecae49a166d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a476ee2311f4f6a863eecae49a166d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a476ee2311f4f6a863eecae49a166d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a476ee2311f4f6a863eecae49a166d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a476ee2311f4f6a863eecae49a166d0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQSszWJenScM97FNBfhb4BW2-Uc=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.996798+00 2025-12-09 10:14:53.996802+00 6924 LZ1232#上身5号色 SPMX-20240815302073 \N \N \N 1 \N [{"file_id": "24364e95-cf4b-422f-98a2-b07ad6b9e1f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc2d7bf7280f4e759c277ef53ac6a95a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc2d7bf7280f4e759c277ef53ac6a95a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc2d7bf7280f4e759c277ef53ac6a95a.jpg", "file_size": 17979, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2d7bf7280f4e759c277ef53ac6a95a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2d7bf7280f4e759c277ef53ac6a95a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2d7bf7280f4e759c277ef53ac6a95a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc2d7bf7280f4e759c277ef53ac6a95a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc2d7bf7280f4e759c277ef53ac6a95a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nca4v7gPtMi1mPws9yWSXP6nOfA=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.998525+00 2025-12-09 10:14:53.99853+00 6925 23-2103#A7袖子3XL SPMX-20240815302074 \N \N \N 1 \N [{"file_id": "b15f2938-e31e-40d5-a226-1820dc593e80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d85fd0894ef4abead190838f93ece7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d85fd0894ef4abead190838f93ece7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d85fd0894ef4abead190838f93ece7d.jpg", "file_size": 7629, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A7袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d85fd0894ef4abead190838f93ece7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d85fd0894ef4abead190838f93ece7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d85fd0894ef4abead190838f93ece7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d85fd0894ef4abead190838f93ece7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d85fd0894ef4abead190838f93ece7d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LDjRjbwMsTs81U4Kx3nT-JhdPhA=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:53.999915+00 2025-12-09 10:14:53.99992+00 6926 106#蓝色 SPMX-20240815302067 \N \N \N 1 \N [{"file_id": "de95ad33-a93d-409a-86cc-13bdd3e7b6b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e34709b880ef4dc981287faaa4e7c1ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e34709b880ef4dc981287faaa4e7c1ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e34709b880ef4dc981287faaa4e7c1ef.jpg", "file_size": 63782, "is_delete": false, "file_type": 1, "original_file_name": "106#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34709b880ef4dc981287faaa4e7c1ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34709b880ef4dc981287faaa4e7c1ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34709b880ef4dc981287faaa4e7c1ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e34709b880ef4dc981287faaa4e7c1ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e34709b880ef4dc981287faaa4e7c1ef.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTiuLef_XFKBBE-05CGU8UUlrxo=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.001325+00 2025-12-09 10:14:54.00133+00 6927 HT0101-106#WJC22 SPMX-20240815302075 \N \N \N 1 \N [{"file_id": "96df6cf7-7028-4515-8c8f-c25b0dc1bc58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2a7d75f97b4536a96da265fe74319c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2a7d75f97b4536a96da265fe74319c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2a7d75f97b4536a96da265fe74319c.jpg", "file_size": 17965, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-106#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a7d75f97b4536a96da265fe74319c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a7d75f97b4536a96da265fe74319c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a7d75f97b4536a96da265fe74319c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2a7d75f97b4536a96da265fe74319c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2a7d75f97b4536a96da265fe74319c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c3Pvg5qJW2AkqgPhrd51Jb9TQuQ=", "createTime": "2024-08-15 14:44:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.002701+00 2025-12-09 10:14:54.002709+00 6928 C288#黑色 SPMX-20240815302083 \N \N \N 1 \N [{"file_id": "dbd8448c-63e1-46e9-bcd9-8b862c18a97d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4466aa23f784d2fae984c11ea65b51d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4466aa23f784d2fae984c11ea65b51d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4466aa23f784d2fae984c11ea65b51d.jpg", "file_size": 42695, "is_delete": false, "file_type": 1, "original_file_name": "C288#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4466aa23f784d2fae984c11ea65b51d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4466aa23f784d2fae984c11ea65b51d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4466aa23f784d2fae984c11ea65b51d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4466aa23f784d2fae984c11ea65b51d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4466aa23f784d2fae984c11ea65b51d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0LqYeO6ccf_qf_fIEXID_9so2s0=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.004077+00 2025-12-09 10:14:54.004081+00 6929 0003-309#WJC22 SPMX-20240815302088 \N \N \N 1 \N [{"file_id": "bd500435-7de8-48db-9329-1f4bd549b847", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5552e3eac0c44860aa6aa2f40448217a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5552e3eac0c44860aa6aa2f40448217a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5552e3eac0c44860aa6aa2f40448217a.jpg", "file_size": 22268, "is_delete": false, "file_type": 1, "original_file_name": "0003-309#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5552e3eac0c44860aa6aa2f40448217a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5552e3eac0c44860aa6aa2f40448217a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5552e3eac0c44860aa6aa2f40448217a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5552e3eac0c44860aa6aa2f40448217a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5552e3eac0c44860aa6aa2f40448217a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_O7C0qbMnPICR5VwJq49sD-jruU=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.005461+00 2025-12-09 10:14:54.005466+00 6930 FHXGPK-061-2 SPMX-20240815302080 \N \N \N 1 \N [{"file_id": "2238518d-f243-4063-bb4e-8a8a599e4920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f560e2a86484492bcbe58cefef57729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f560e2a86484492bcbe58cefef57729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f560e2a86484492bcbe58cefef57729.jpg", "file_size": 28322, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-061-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f560e2a86484492bcbe58cefef57729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f560e2a86484492bcbe58cefef57729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f560e2a86484492bcbe58cefef57729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f560e2a86484492bcbe58cefef57729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f560e2a86484492bcbe58cefef57729.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nZ5E1Ld_egbw7kbWV_3x6f_rMY=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.006969+00 2025-12-09 10:14:54.006973+00 6931 23-2103#A7袖子4XL SPMX-20240815302084 \N \N \N 1 \N [{"file_id": "59922a2e-d15e-4584-bf84-c6574c538bed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg", "file_size": 7572, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A7袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5d24fac4c4e4f12b48e33f6e29e8ac7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0WzbFl7nQ3HR75SEwOVs7uYYHsg=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.008657+00 2025-12-09 10:14:54.008662+00 6932 HT0101-107#WJC22 SPMX-20240815302085 \N \N \N 1 \N [{"file_id": "da627f01-dfb9-481c-b124-613b0affd570", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b87637e109004d94b41c46a8404b56b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b87637e109004d94b41c46a8404b56b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b87637e109004d94b41c46a8404b56b5.jpg", "file_size": 30362, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-107#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87637e109004d94b41c46a8404b56b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87637e109004d94b41c46a8404b56b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87637e109004d94b41c46a8404b56b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b87637e109004d94b41c46a8404b56b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b87637e109004d94b41c46a8404b56b5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCIpZaN9OXRZJ8ZdXLP92gKMdcA=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.010484+00 2025-12-09 10:14:54.01049+00 6933 1060#杏色匹布 SPMX-20240815302089 \N \N \N 1 \N [{"file_id": "1faa8df7-18c1-48ea-961b-c7e5bcf5bbc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69cb3dd8c3944256af5f1fdfc79324c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69cb3dd8c3944256af5f1fdfc79324c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69cb3dd8c3944256af5f1fdfc79324c1.jpg", "file_size": 22223, "is_delete": false, "file_type": 1, "original_file_name": "1060#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb3dd8c3944256af5f1fdfc79324c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb3dd8c3944256af5f1fdfc79324c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb3dd8c3944256af5f1fdfc79324c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69cb3dd8c3944256af5f1fdfc79324c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69cb3dd8c3944256af5f1fdfc79324c1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jj11lyi_n-NDK6l5HccLR5VAQ7Y=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.012049+00 2025-12-09 10:14:54.012054+00 6934 LZ1232#下身1号色 SPMX-20240815302086 \N \N \N 1 \N [{"file_id": "69b0eb5c-5464-4ea9-b174-b4767dec2a50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9133f9a5e3284784aee5e349ff5fff0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9133f9a5e3284784aee5e349ff5fff0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9133f9a5e3284784aee5e349ff5fff0b.jpg", "file_size": 16950, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9133f9a5e3284784aee5e349ff5fff0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9133f9a5e3284784aee5e349ff5fff0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9133f9a5e3284784aee5e349ff5fff0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9133f9a5e3284784aee5e349ff5fff0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9133f9a5e3284784aee5e349ff5fff0b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBwxBSjVZEj6FazGz4pW64x3mU4=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.0135+00 2025-12-09 10:14:54.013505+00 6935 JTSS005FW#白VS-D3 SPMX-20240815302081 \N \N \N 1 \N [{"file_id": "c8eb00a7-66a8-4bcc-9367-0ed15bdb42c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9c4430746fe41228cfeab765574ad33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9c4430746fe41228cfeab765574ad33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9c4430746fe41228cfeab765574ad33.jpg", "file_size": 11287, "is_delete": false, "file_type": 1, "original_file_name": "JTSS005FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c4430746fe41228cfeab765574ad33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c4430746fe41228cfeab765574ad33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c4430746fe41228cfeab765574ad33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9c4430746fe41228cfeab765574ad33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9c4430746fe41228cfeab765574ad33.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJjfCc83gzq7AuJYXbI8wd7lh9U=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.014909+00 2025-12-09 10:14:54.014914+00 6936 LHS0943-1#橘色RC23 SPMX-20240815302082 \N \N \N 1 \N [{"file_id": "a427ef01-e93b-4ca6-a3b1-9adc1bce10c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d2cd02be808493b91503445b0201770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d2cd02be808493b91503445b0201770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d2cd02be808493b91503445b0201770.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-1#橘色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2cd02be808493b91503445b0201770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2cd02be808493b91503445b0201770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2cd02be808493b91503445b0201770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d2cd02be808493b91503445b0201770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d2cd02be808493b91503445b0201770.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXTeW5ygWzfvsdPeZ58QnoRsi8o=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.016295+00 2025-12-09 10:14:54.0163+00 6937 DK-002-4 SPMX-20240815302087 \N \N \N 1 \N [{"file_id": "fcd4d930-8baa-4dda-8699-e9a7fed8422a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "702ec7469197476b80c1c8a702f8ba44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "702ec7469197476b80c1c8a702f8ba44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "702ec7469197476b80c1c8a702f8ba44.jpg", "file_size": 62125, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702ec7469197476b80c1c8a702f8ba44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702ec7469197476b80c1c8a702f8ba44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702ec7469197476b80c1c8a702f8ba44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/702ec7469197476b80c1c8a702f8ba44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/702ec7469197476b80c1c8a702f8ba44.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6KYNCrCtGhJd431imgoSG0Clc4=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.017691+00 2025-12-09 10:14:54.017695+00 6938 80152#领子4 SPMX-20240815302090 \N \N \N 1 \N [{"file_id": "d203968f-1c1b-49ec-896c-18009dee607b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3a8f638719f49298ff89e0a00c92310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3a8f638719f49298ff89e0a00c92310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3a8f638719f49298ff89e0a00c92310.jpg", "file_size": 8311, "is_delete": false, "file_type": 1, "original_file_name": "80152#领子4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a8f638719f49298ff89e0a00c92310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a8f638719f49298ff89e0a00c92310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a8f638719f49298ff89e0a00c92310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3a8f638719f49298ff89e0a00c92310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3a8f638719f49298ff89e0a00c92310.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnyBpJ8qUzbD2Ipn0UvUsmwMXi0=", "createTime": "2024-08-15 14:44:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.019367+00 2025-12-09 10:14:54.019371+00 6939 FHXGPK-061-3 SPMX-20240815302093 \N \N \N 1 \N [{"file_id": "244bf7eb-f63d-4c7e-b0e5-96d5f6846e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cce3e028643a46269d14fb57e6e55133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cce3e028643a46269d14fb57e6e55133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cce3e028643a46269d14fb57e6e55133.jpg", "file_size": 32407, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-061-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce3e028643a46269d14fb57e6e55133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce3e028643a46269d14fb57e6e55133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce3e028643a46269d14fb57e6e55133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cce3e028643a46269d14fb57e6e55133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cce3e028643a46269d14fb57e6e55133.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YWCxYLmCcoTC4Ndg-EaOvg0Lxs=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.020734+00 2025-12-09 10:14:54.020738+00 6940 LHS0943-2#白色 SPMX-20240815302102 \N \N \N 1 \N [{"file_id": "7d6e8c34-8a03-45f3-9bbc-bdca9a61956e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "306210ee49fe40cea00f943a80b9d0cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "306210ee49fe40cea00f943a80b9d0cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "306210ee49fe40cea00f943a80b9d0cf.jpg", "file_size": 46875, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306210ee49fe40cea00f943a80b9d0cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306210ee49fe40cea00f943a80b9d0cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306210ee49fe40cea00f943a80b9d0cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/306210ee49fe40cea00f943a80b9d0cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/306210ee49fe40cea00f943a80b9d0cf.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Y5Lm0rPPFQDkGvVpvos7gdl6eI=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.022118+00 2025-12-09 10:14:54.022122+00 6941 C289#灰色 SPMX-20240815302104 \N \N \N 1 \N [{"file_id": "9f272b7c-b442-4ea7-bf9a-8f576cec0cba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "615004f381b94736b9aa529d3fa20377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "615004f381b94736b9aa529d3fa20377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "615004f381b94736b9aa529d3fa20377.jpg", "file_size": 24699, "is_delete": false, "file_type": 1, "original_file_name": "C289#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615004f381b94736b9aa529d3fa20377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615004f381b94736b9aa529d3fa20377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615004f381b94736b9aa529d3fa20377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/615004f381b94736b9aa529d3fa20377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/615004f381b94736b9aa529d3fa20377.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bs3qQ5Ywrf_o_Bc8_GE9UvuVslE=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.02366+00 2025-12-09 10:14:54.023666+00 6942 JTSS005FW#粉VS-D3 SPMX-20240815302092 \N \N \N 1 \N [{"file_id": "9fb2e07d-52b6-4a69-bfa1-acce4015d72c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22b747fb9a2f45ee85bce911cb6cff41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22b747fb9a2f45ee85bce911cb6cff41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22b747fb9a2f45ee85bce911cb6cff41.jpg", "file_size": 10947, "is_delete": false, "file_type": 1, "original_file_name": "JTSS005FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b747fb9a2f45ee85bce911cb6cff41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b747fb9a2f45ee85bce911cb6cff41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b747fb9a2f45ee85bce911cb6cff41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22b747fb9a2f45ee85bce911cb6cff41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22b747fb9a2f45ee85bce911cb6cff41.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQcZyg1TlDpEJKrm2mYH5lFFLkU=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.025174+00 2025-12-09 10:14:54.025179+00 6943 DK-002-批布 SPMX-20240815302097 \N \N \N 1 \N [{"file_id": "d10758c4-77cd-48ea-98c0-e4e97a114e8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "718a3b0f9a6e4a0c891fab8d1086be12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "718a3b0f9a6e4a0c891fab8d1086be12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "718a3b0f9a6e4a0c891fab8d1086be12.jpg", "file_size": 57549, "is_delete": false, "file_type": 1, "original_file_name": "DK-002-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718a3b0f9a6e4a0c891fab8d1086be12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718a3b0f9a6e4a0c891fab8d1086be12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/718a3b0f9a6e4a0c891fab8d1086be12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/718a3b0f9a6e4a0c891fab8d1086be12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/718a3b0f9a6e4a0c891fab8d1086be12.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGujrA2YOtSySzhh_Xwt5sYgHWU=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.026584+00 2025-12-09 10:14:54.026588+00 6944 80152#领子5 SPMX-20240815302098 \N \N \N 1 \N [{"file_id": "65611841-f215-4033-941e-723ef4d67d38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40276f795734c49a58681843063eaa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40276f795734c49a58681843063eaa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40276f795734c49a58681843063eaa5.jpg", "file_size": 8072, "is_delete": false, "file_type": 1, "original_file_name": "80152#领子5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40276f795734c49a58681843063eaa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40276f795734c49a58681843063eaa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40276f795734c49a58681843063eaa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40276f795734c49a58681843063eaa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40276f795734c49a58681843063eaa5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XSDz1R_dvJGVVgMoBVkmrAT3npo=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.027961+00 2025-12-09 10:14:54.027964+00 6945 FHXGPK-061-4 SPMX-20240815302103 \N \N \N 1 \N [{"file_id": "a2190d3c-5d39-4af4-936e-7212a1d33cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e74b829765974a2ea1cb37a42b06682f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e74b829765974a2ea1cb37a42b06682f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e74b829765974a2ea1cb37a42b06682f.jpg", "file_size": 29981, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-061-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b829765974a2ea1cb37a42b06682f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b829765974a2ea1cb37a42b06682f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74b829765974a2ea1cb37a42b06682f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e74b829765974a2ea1cb37a42b06682f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e74b829765974a2ea1cb37a42b06682f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2SWDAP_PR0hvAAgfQkXzKtjbJG4=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.029356+00 2025-12-09 10:14:54.02936+00 6946 1060#杏色袖子 SPMX-20240815302095 \N \N \N 1 \N [{"file_id": "3a7a4408-79dc-49e9-9cfc-b54d71345a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130d6187c09949788ad33c18989e6e79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130d6187c09949788ad33c18989e6e79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130d6187c09949788ad33c18989e6e79.jpg", "file_size": 12533, "is_delete": false, "file_type": 1, "original_file_name": "1060#杏色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130d6187c09949788ad33c18989e6e79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130d6187c09949788ad33c18989e6e79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130d6187c09949788ad33c18989e6e79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130d6187c09949788ad33c18989e6e79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130d6187c09949788ad33c18989e6e79.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhcpFGwBvUlLEyV5d_ySa1-ALFM=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.030719+00 2025-12-09 10:14:54.030723+00 6947 LHS0943-1#绿色RC23 SPMX-20240815302091 \N \N \N 1 \N [{"file_id": "38c506df-ff3f-44f4-8cf9-bd9cee4d9447", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9796b1479b34b77a45ecd8b7b998d5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9796b1479b34b77a45ecd8b7b998d5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9796b1479b34b77a45ecd8b7b998d5e.jpg", "file_size": 17565, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-1#绿色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9796b1479b34b77a45ecd8b7b998d5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9796b1479b34b77a45ecd8b7b998d5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9796b1479b34b77a45ecd8b7b998d5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9796b1479b34b77a45ecd8b7b998d5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9796b1479b34b77a45ecd8b7b998d5e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXYL5Pmy8A1X72ra0Rpt4oH8CEg=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.032114+00 2025-12-09 10:14:54.032117+00 6948 0003-30FWE#VS-D3 SPMX-20240815302099 \N \N \N 1 \N [{"file_id": "027f1066-8e8e-42c9-8047-6a9b6b1c7bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d9bcb016ae94cae83f8ee57896158e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d9bcb016ae94cae83f8ee57896158e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d9bcb016ae94cae83f8ee57896158e5.jpg", "file_size": 17005, "is_delete": false, "file_type": 1, "original_file_name": "0003-30FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d9bcb016ae94cae83f8ee57896158e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d9bcb016ae94cae83f8ee57896158e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d9bcb016ae94cae83f8ee57896158e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d9bcb016ae94cae83f8ee57896158e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d9bcb016ae94cae83f8ee57896158e5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYeTVVfelsrq6_yAHl9y0XTqENs=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.033484+00 2025-12-09 10:14:54.033488+00 6949 23-2103#A7领子通用 SPMX-20240815302096 \N \N \N 1 \N [{"file_id": "cc6c9200-dd1e-4722-a238-9984f8bfd7e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5028ef664b94334856f2e4928f71350.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5028ef664b94334856f2e4928f71350.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5028ef664b94334856f2e4928f71350.jpg", "file_size": 8243, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A7领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5028ef664b94334856f2e4928f71350.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5028ef664b94334856f2e4928f71350.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5028ef664b94334856f2e4928f71350.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5028ef664b94334856f2e4928f71350.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5028ef664b94334856f2e4928f71350.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMKR9cmrfxCXnJu93TW_WakBFI4=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.03486+00 2025-12-09 10:14:54.034864+00 6950 HT0101-108#WJC22 SPMX-20240815302100 \N \N \N 1 \N [{"file_id": "5bc40091-89c1-4106-b559-4139541dc306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e08565ee97443bb9db728f485dcd15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e08565ee97443bb9db728f485dcd15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e08565ee97443bb9db728f485dcd15.jpg", "file_size": 24801, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-108#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e08565ee97443bb9db728f485dcd15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e08565ee97443bb9db728f485dcd15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e08565ee97443bb9db728f485dcd15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e08565ee97443bb9db728f485dcd15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e08565ee97443bb9db728f485dcd15.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbhthW-VC2XVie_ilJCTmSySQXQ=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.036232+00 2025-12-09 10:14:54.036237+00 6951 LZ1232#下身2号色 SPMX-20240815302101 \N \N \N 1 \N [{"file_id": "db3939ce-ab99-4773-be50-49037f0dfefa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f317f0ee9ce3474b817f51b7eb47883d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f317f0ee9ce3474b817f51b7eb47883d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f317f0ee9ce3474b817f51b7eb47883d.jpg", "file_size": 16799, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f317f0ee9ce3474b817f51b7eb47883d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f317f0ee9ce3474b817f51b7eb47883d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f317f0ee9ce3474b817f51b7eb47883d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f317f0ee9ce3474b817f51b7eb47883d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f317f0ee9ce3474b817f51b7eb47883d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykCCx_K-vx-qDCuD9FXjorH66TQ=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.037597+00 2025-12-09 10:14:54.037601+00 6952 C289#大白 SPMX-20240815302094 \N \N \N 1 \N [{"file_id": "bfce8f8d-7f8e-4702-893f-af0323021f97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5528f0e3ec6447aa2cdc824a47642dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5528f0e3ec6447aa2cdc824a47642dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5528f0e3ec6447aa2cdc824a47642dd.jpg", "file_size": 25309, "is_delete": false, "file_type": 1, "original_file_name": "C289#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5528f0e3ec6447aa2cdc824a47642dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5528f0e3ec6447aa2cdc824a47642dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5528f0e3ec6447aa2cdc824a47642dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5528f0e3ec6447aa2cdc824a47642dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5528f0e3ec6447aa2cdc824a47642dd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XPS--PbkkjrNODsKRtsHsykH1yk=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.038992+00 2025-12-09 10:14:54.038996+00 6953 JTSS006#绿VS-D3 SPMX-20240815302117 \N \N \N 1 \N [{"file_id": "a2bfa9c8-43c7-4d45-85a3-c708fcc3f86a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c671dd0437647c5a423367be90b000b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c671dd0437647c5a423367be90b000b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c671dd0437647c5a423367be90b000b.jpg", "file_size": 11669, "is_delete": false, "file_type": 1, "original_file_name": "JTSS006#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c671dd0437647c5a423367be90b000b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c671dd0437647c5a423367be90b000b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c671dd0437647c5a423367be90b000b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c671dd0437647c5a423367be90b000b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c671dd0437647c5a423367be90b000b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhOeRX-9L0Qud62ywpxSDO2LPWg=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.040369+00 2025-12-09 10:14:54.040373+00 6954 0003-30FWF#下摆 SPMX-20240815302120 \N \N \N 1 \N [{"file_id": "a0c7901b-5e67-44ab-8618-e354f68fd47e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "193425202ab74421b8a467d011e975f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "193425202ab74421b8a467d011e975f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "193425202ab74421b8a467d011e975f1.jpg", "file_size": 10861, "is_delete": false, "file_type": 1, "original_file_name": "0003-30FWF#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193425202ab74421b8a467d011e975f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193425202ab74421b8a467d011e975f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193425202ab74421b8a467d011e975f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/193425202ab74421b8a467d011e975f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/193425202ab74421b8a467d011e975f1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZbAqoeRWubuNeCvtj5VNCqJSrI=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.041747+00 2025-12-09 10:14:54.041752+00 6955 23-2103#A8前片3XL SPMX-20240815302107 \N \N \N 1 \N [{"file_id": "44a770ac-fa71-4132-ad51-78503570ccbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86a13947c43d4495b3e66ed72ba0be93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86a13947c43d4495b3e66ed72ba0be93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86a13947c43d4495b3e66ed72ba0be93.jpg", "file_size": 8957, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8前片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a13947c43d4495b3e66ed72ba0be93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a13947c43d4495b3e66ed72ba0be93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a13947c43d4495b3e66ed72ba0be93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86a13947c43d4495b3e66ed72ba0be93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86a13947c43d4495b3e66ed72ba0be93.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BgpEyaCh5_JIpzcuACEenVbWEeU=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.043145+00 2025-12-09 10:14:54.043149+00 6956 1060#灰色 SPMX-20240815302105 \N \N \N 1 \N [{"file_id": "8f2626f4-dad9-43bc-b2e8-5725bc3e0f68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2b7ad26d3e9491ea90eec550489600f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2b7ad26d3e9491ea90eec550489600f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2b7ad26d3e9491ea90eec550489600f.jpg", "file_size": 19969, "is_delete": false, "file_type": 1, "original_file_name": "1060#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b7ad26d3e9491ea90eec550489600f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b7ad26d3e9491ea90eec550489600f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b7ad26d3e9491ea90eec550489600f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2b7ad26d3e9491ea90eec550489600f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2b7ad26d3e9491ea90eec550489600f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6M0qfwLZ9L7e6auX3tGPzzplBwM=", "createTime": "2024-08-15 14:44:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.044521+00 2025-12-09 10:14:54.044525+00 6957 LZ1232#下身3号色 SPMX-20240815302110 \N \N \N 1 \N [{"file_id": "e51baa23-ea2a-4d95-bf3b-388c374e370c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f27a7c5ba984ab3b554ca3196ee1aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f27a7c5ba984ab3b554ca3196ee1aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f27a7c5ba984ab3b554ca3196ee1aaa.jpg", "file_size": 17152, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f27a7c5ba984ab3b554ca3196ee1aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f27a7c5ba984ab3b554ca3196ee1aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f27a7c5ba984ab3b554ca3196ee1aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f27a7c5ba984ab3b554ca3196ee1aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f27a7c5ba984ab3b554ca3196ee1aaa.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mh27hy-0Ok2ztJDHTNvW6HWhBjk=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.045933+00 2025-12-09 10:14:54.045938+00 6958 LHS0943-2#绿色 SPMX-20240815302113 \N \N \N 1 \N [{"file_id": "dadcd379-ca2f-4415-a39a-6cbe119f22b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a07ab190a2e3451bb3832bd90e530523.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a07ab190a2e3451bb3832bd90e530523.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a07ab190a2e3451bb3832bd90e530523.jpg", "file_size": 44711, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab190a2e3451bb3832bd90e530523.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab190a2e3451bb3832bd90e530523.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab190a2e3451bb3832bd90e530523.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a07ab190a2e3451bb3832bd90e530523.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a07ab190a2e3451bb3832bd90e530523.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8aymJtNv-h9bGBLkFKCgDK64d74=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.047321+00 2025-12-09 10:14:54.047325+00 6959 LZ1232#下身4号色 SPMX-20240815302121 \N \N \N 1 \N [{"file_id": "efe0159f-b8d6-49f8-8bec-5413bc80e0d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f0397bd39ff4cccae80987179738852.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f0397bd39ff4cccae80987179738852.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f0397bd39ff4cccae80987179738852.jpg", "file_size": 17179, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f0397bd39ff4cccae80987179738852.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f0397bd39ff4cccae80987179738852.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f0397bd39ff4cccae80987179738852.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f0397bd39ff4cccae80987179738852.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f0397bd39ff4cccae80987179738852.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vw1vKBNfk6snfU6pTAv8I_o-Urk=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.048678+00 2025-12-09 10:14:54.048682+00 6960 0003-30FWF#上身乱花 SPMX-20240815302109 \N \N \N 1 \N [{"file_id": "ff64f63c-6fc0-48f1-afb1-1ddce8ed7553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "468d0d55b6b24292be3b7f46b0072fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "468d0d55b6b24292be3b7f46b0072fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "468d0d55b6b24292be3b7f46b0072fb8.jpg", "file_size": 12724, "is_delete": false, "file_type": 1, "original_file_name": "0003-30FWF#上身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468d0d55b6b24292be3b7f46b0072fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468d0d55b6b24292be3b7f46b0072fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/468d0d55b6b24292be3b7f46b0072fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/468d0d55b6b24292be3b7f46b0072fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/468d0d55b6b24292be3b7f46b0072fb8.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6JIOdcLbk4V9bZ67_SkSwVWApaE=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.050049+00 2025-12-09 10:14:54.050053+00 6961 DK-002 SPMX-20240815302112 \N \N \N 1 \N [{"file_id": "fb3aa95d-178b-4f43-8d4f-449ddc8aede1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bd1e3c903e04057842969165f709347.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bd1e3c903e04057842969165f709347.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bd1e3c903e04057842969165f709347.jpg", "file_size": 66419, "is_delete": false, "file_type": 1, "original_file_name": "DK-002.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd1e3c903e04057842969165f709347.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd1e3c903e04057842969165f709347.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd1e3c903e04057842969165f709347.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bd1e3c903e04057842969165f709347.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bd1e3c903e04057842969165f709347.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Vs3DOpiNuWAvsIobsDKaO7Vk3U=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.051482+00 2025-12-09 10:14:54.051487+00 6962 C289#绿色 SPMX-20240815302115 \N \N \N 1 \N [{"file_id": "c47a6ec5-0cec-40ae-8a9c-c86f703f19e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0ca4e6240654b5194794b4d47c6c4dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0ca4e6240654b5194794b4d47c6c4dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0ca4e6240654b5194794b4d47c6c4dd.jpg", "file_size": 26792, "is_delete": false, "file_type": 1, "original_file_name": "C289#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ca4e6240654b5194794b4d47c6c4dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ca4e6240654b5194794b4d47c6c4dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ca4e6240654b5194794b4d47c6c4dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0ca4e6240654b5194794b4d47c6c4dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0ca4e6240654b5194794b4d47c6c4dd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5g3iGozFwTlVzwZIVBAeGx_cmQ=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.052862+00 2025-12-09 10:14:54.052866+00 6963 1060#灰色匹布 SPMX-20240815302116 \N \N \N 1 \N [{"file_id": "b984a931-e673-4c02-b1d8-741e31ba5185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a95ace09a44266ba4889b98faaf624.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a95ace09a44266ba4889b98faaf624.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a95ace09a44266ba4889b98faaf624.jpg", "file_size": 19236, "is_delete": false, "file_type": 1, "original_file_name": "1060#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a95ace09a44266ba4889b98faaf624.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a95ace09a44266ba4889b98faaf624.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a95ace09a44266ba4889b98faaf624.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a95ace09a44266ba4889b98faaf624.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a95ace09a44266ba4889b98faaf624.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vns36i1rHHuOXCtqeRjRneObCGA=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.054247+00 2025-12-09 10:14:54.054251+00 6964 JTSS006#灰VS-D3 SPMX-20240815302106 \N \N \N 1 \N [{"file_id": "9a9b49f4-14be-49a3-a556-f284f4b180e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab08e6e2b0e94e55bb39e58e60610f5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab08e6e2b0e94e55bb39e58e60610f5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab08e6e2b0e94e55bb39e58e60610f5b.jpg", "file_size": 9547, "is_delete": false, "file_type": 1, "original_file_name": "JTSS006#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab08e6e2b0e94e55bb39e58e60610f5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab08e6e2b0e94e55bb39e58e60610f5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab08e6e2b0e94e55bb39e58e60610f5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab08e6e2b0e94e55bb39e58e60610f5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab08e6e2b0e94e55bb39e58e60610f5b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fmO65yx5BzWulBKoO4nbfeah9I=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.055803+00 2025-12-09 10:14:54.055808+00 6965 80153#红色 SPMX-20240815302119 \N \N \N 1 \N [{"file_id": "a2a1bac4-3da2-4f18-83e5-6a4eb03cf4ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa75f7d84dd54dd6aae680e1f510d4f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa75f7d84dd54dd6aae680e1f510d4f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa75f7d84dd54dd6aae680e1f510d4f1.jpg", "file_size": 9257, "is_delete": false, "file_type": 1, "original_file_name": "80153#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa75f7d84dd54dd6aae680e1f510d4f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa75f7d84dd54dd6aae680e1f510d4f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa75f7d84dd54dd6aae680e1f510d4f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa75f7d84dd54dd6aae680e1f510d4f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa75f7d84dd54dd6aae680e1f510d4f1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YL-M3itRbWcz6UA6BO7rbC3Bx1w=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.05724+00 2025-12-09 10:14:54.057244+00 6966 80153#湖蓝 SPMX-20240815302108 \N \N \N 1 \N [{"file_id": "5bc117a0-4dc0-4bb7-b47c-e7c8564d8a32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4f6c1a212bd45a5849d90eaa07bb52b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4f6c1a212bd45a5849d90eaa07bb52b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4f6c1a212bd45a5849d90eaa07bb52b.jpg", "file_size": 9326, "is_delete": false, "file_type": 1, "original_file_name": "80153#湖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f6c1a212bd45a5849d90eaa07bb52b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f6c1a212bd45a5849d90eaa07bb52b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4f6c1a212bd45a5849d90eaa07bb52b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4f6c1a212bd45a5849d90eaa07bb52b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4f6c1a212bd45a5849d90eaa07bb52b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LH_hDimFKmpgmycbHPEfdu9XdQ=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.058659+00 2025-12-09 10:14:54.058664+00 6967 HT0101-109#WJC22 SPMX-20240815302111 \N \N \N 1 \N [{"file_id": "01ca3273-66e7-4bca-b003-6350e36864e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21c6c536ed064e51a8d2a182b9be1bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21c6c536ed064e51a8d2a182b9be1bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21c6c536ed064e51a8d2a182b9be1bbe.jpg", "file_size": 21496, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-109#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c6c536ed064e51a8d2a182b9be1bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c6c536ed064e51a8d2a182b9be1bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c6c536ed064e51a8d2a182b9be1bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21c6c536ed064e51a8d2a182b9be1bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21c6c536ed064e51a8d2a182b9be1bbe.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRdzreQcn8kvcmK6u7IiQGviAGQ=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.0601+00 2025-12-09 10:14:54.060104+00 6968 FHXGPK-061-5 SPMX-20240815302114 \N \N \N 1 \N [{"file_id": "fa53886e-51d6-425d-a0c3-e0b94b34d112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2df22d1cd046d292d6f14def1b7567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2df22d1cd046d292d6f14def1b7567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2df22d1cd046d292d6f14def1b7567.jpg", "file_size": 29938, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-061-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2df22d1cd046d292d6f14def1b7567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2df22d1cd046d292d6f14def1b7567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2df22d1cd046d292d6f14def1b7567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2df22d1cd046d292d6f14def1b7567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2df22d1cd046d292d6f14def1b7567.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukG-3TLae5lGOKmD4PucCv9xeyk=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.061502+00 2025-12-09 10:14:54.061506+00 6969 23-2103#A8前片4XL SPMX-20240815302118 \N \N \N 1 \N [{"file_id": "63bdaffe-3d57-4e6c-951c-65533b70fbae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9ba62210a0c49bfb53d785dd4807455.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9ba62210a0c49bfb53d785dd4807455.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9ba62210a0c49bfb53d785dd4807455.jpg", "file_size": 9491, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8前片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ba62210a0c49bfb53d785dd4807455.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ba62210a0c49bfb53d785dd4807455.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ba62210a0c49bfb53d785dd4807455.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9ba62210a0c49bfb53d785dd4807455.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9ba62210a0c49bfb53d785dd4807455.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_pP3KeYC72aoNIgbT_HGlxsgtM=", "createTime": "2024-08-15 14:44:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.062867+00 2025-12-09 10:14:54.062871+00 6970 FHXGPK-062-1 SPMX-20240815302124 \N \N \N 1 \N [{"file_id": "bc1fd9fb-38fd-42c1-8736-a18eb8952fff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c124a68ee2f24bc1b507748229e87ded.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c124a68ee2f24bc1b507748229e87ded.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c124a68ee2f24bc1b507748229e87ded.jpg", "file_size": 33825, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-062-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c124a68ee2f24bc1b507748229e87ded.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c124a68ee2f24bc1b507748229e87ded.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c124a68ee2f24bc1b507748229e87ded.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c124a68ee2f24bc1b507748229e87ded.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c124a68ee2f24bc1b507748229e87ded.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KINTYkOfbumHtCoEGMhnF-0IbQ0=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.064231+00 2025-12-09 10:14:54.064235+00 6971 0003-310#WJC22 SPMX-20240815302130 \N \N \N 1 \N [{"file_id": "8dee4f86-4440-43fe-9662-0c41e99cf31d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e44d237c8a14dad8e792009e5c4dffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e44d237c8a14dad8e792009e5c4dffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e44d237c8a14dad8e792009e5c4dffb.jpg", "file_size": 23962, "is_delete": false, "file_type": 1, "original_file_name": "0003-310#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44d237c8a14dad8e792009e5c4dffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44d237c8a14dad8e792009e5c4dffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44d237c8a14dad8e792009e5c4dffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e44d237c8a14dad8e792009e5c4dffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e44d237c8a14dad8e792009e5c4dffb.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:koKP7n_Mga1mhdJ87GuB4inK-Es=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.065608+00 2025-12-09 10:14:54.065612+00 6972 HT0101-110#WJC22 SPMX-20240815302133 \N \N \N 1 \N [{"file_id": "fd1e4112-e627-47f2-8859-97587ce0d060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e56019affb1b49f6a6dc8fa2b6fd2e04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e56019affb1b49f6a6dc8fa2b6fd2e04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e56019affb1b49f6a6dc8fa2b6fd2e04.jpg", "file_size": 21665, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-110#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56019affb1b49f6a6dc8fa2b6fd2e04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56019affb1b49f6a6dc8fa2b6fd2e04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56019affb1b49f6a6dc8fa2b6fd2e04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e56019affb1b49f6a6dc8fa2b6fd2e04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e56019affb1b49f6a6dc8fa2b6fd2e04.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_KgqpV_CmdPiVmuOW5yqQuh1hg=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.067045+00 2025-12-09 10:14:54.06705+00 6973 FHXGPK-062-2 SPMX-20240815302134 \N \N \N 1 \N [{"file_id": "87f12c6a-b0e8-4fe4-aeb6-9278d38babd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e2844b31f3f42e3b2cedf82ea5f137b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e2844b31f3f42e3b2cedf82ea5f137b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e2844b31f3f42e3b2cedf82ea5f137b.jpg", "file_size": 35317, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-062-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2844b31f3f42e3b2cedf82ea5f137b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2844b31f3f42e3b2cedf82ea5f137b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e2844b31f3f42e3b2cedf82ea5f137b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e2844b31f3f42e3b2cedf82ea5f137b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e2844b31f3f42e3b2cedf82ea5f137b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLzao7Lnjh__ZrDVQXi3fcG-ZBY=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.068465+00 2025-12-09 10:14:54.06847+00 6974 1060#灰色袖子 SPMX-20240815302126 \N \N \N 1 \N [{"file_id": "8b126479-639f-4fd5-941a-d4154b704732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195c8f69914a411d8fa715f865e71a14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195c8f69914a411d8fa715f865e71a14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195c8f69914a411d8fa715f865e71a14.jpg", "file_size": 11730, "is_delete": false, "file_type": 1, "original_file_name": "1060#灰色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c8f69914a411d8fa715f865e71a14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c8f69914a411d8fa715f865e71a14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c8f69914a411d8fa715f865e71a14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195c8f69914a411d8fa715f865e71a14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195c8f69914a411d8fa715f865e71a14.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mS0wQEcCsjuJOkWiwet4BBNcVOU=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.069866+00 2025-12-09 10:14:54.069871+00 6975 DK-003-1-批布 SPMX-20240815302125 \N \N \N 1 \N [{"file_id": "10a9732a-3b0a-45ad-8ebc-9a9b9859edee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64a0dd744c93453ea3a2ce3e2a86afb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64a0dd744c93453ea3a2ce3e2a86afb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64a0dd744c93453ea3a2ce3e2a86afb1.jpg", "file_size": 69461, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a0dd744c93453ea3a2ce3e2a86afb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a0dd744c93453ea3a2ce3e2a86afb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a0dd744c93453ea3a2ce3e2a86afb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64a0dd744c93453ea3a2ce3e2a86afb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64a0dd744c93453ea3a2ce3e2a86afb1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4GAjFazMkFehrV2UUkL06empB4=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.071279+00 2025-12-09 10:14:54.071284+00 6976 C289#黄色 SPMX-20240815302128 \N \N \N 1 \N [{"file_id": "e740b980-69e9-4178-a85c-ea43905a80c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5569a687b8a4702803535f98062475b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5569a687b8a4702803535f98062475b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5569a687b8a4702803535f98062475b.jpg", "file_size": 25294, "is_delete": false, "file_type": 1, "original_file_name": "C289#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5569a687b8a4702803535f98062475b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5569a687b8a4702803535f98062475b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5569a687b8a4702803535f98062475b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5569a687b8a4702803535f98062475b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5569a687b8a4702803535f98062475b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiaaAarQ78a_Wvhh6hm-mlVBmb4=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.072682+00 2025-12-09 10:14:54.072686+00 6977 LZ1232#下身5号色 SPMX-20240815302132 \N \N \N 1 \N [{"file_id": "8c742ba7-402e-4883-b7c0-27f2f7bd2477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9272f54b246445d69d1f728d1e36528a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9272f54b246445d69d1f728d1e36528a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9272f54b246445d69d1f728d1e36528a.jpg", "file_size": 17405, "is_delete": false, "file_type": 1, "original_file_name": "LZ1232#下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9272f54b246445d69d1f728d1e36528a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9272f54b246445d69d1f728d1e36528a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9272f54b246445d69d1f728d1e36528a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9272f54b246445d69d1f728d1e36528a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9272f54b246445d69d1f728d1e36528a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJ-LlDUw4s4xkEl60WitEUq1fwU=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.07406+00 2025-12-09 10:14:54.074064+00 6978 HT0101-11#WJC22 SPMX-20240815302122 \N \N \N 1 \N [{"file_id": "447b8da5-1490-47bc-a420-803d5d2bf0c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c344aa64a834860ae8398f0a792632a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c344aa64a834860ae8398f0a792632a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c344aa64a834860ae8398f0a792632a.jpg", "file_size": 19172, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c344aa64a834860ae8398f0a792632a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c344aa64a834860ae8398f0a792632a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c344aa64a834860ae8398f0a792632a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c344aa64a834860ae8398f0a792632a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c344aa64a834860ae8398f0a792632a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cp1Quz3PCLimv1AiZb1xnZF2VQQ=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.075415+00 2025-12-09 10:14:54.075419+00 6979 LHS0943-2#黑色 SPMX-20240815302123 \N \N \N 1 \N [{"file_id": "c92b5a75-e5e5-4a52-a02c-4e0ac525340d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce2ee93283f3477791b4cf522ee317a9.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce2ee93283f3477791b4cf522ee317a9.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce2ee93283f3477791b4cf522ee317a9.bmp", "file_size": 47453, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-2#黑色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2ee93283f3477791b4cf522ee317a9.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2ee93283f3477791b4cf522ee317a9.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2ee93283f3477791b4cf522ee317a9.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce2ee93283f3477791b4cf522ee317a9.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce2ee93283f3477791b4cf522ee317a9.bmp?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVwGbbvwEQ6JND0BZ3-fqMUcM_s=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.076803+00 2025-12-09 10:14:54.076807+00 6980 80153#绿色 SPMX-20240815302129 \N \N \N 1 \N [{"file_id": "b33b9ee2-2593-4ffb-af1b-12d83a4b90bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed3ff5661694912b740c9aa83bfffc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed3ff5661694912b740c9aa83bfffc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed3ff5661694912b740c9aa83bfffc0.jpg", "file_size": 9225, "is_delete": false, "file_type": 1, "original_file_name": "80153#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3ff5661694912b740c9aa83bfffc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3ff5661694912b740c9aa83bfffc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3ff5661694912b740c9aa83bfffc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed3ff5661694912b740c9aa83bfffc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed3ff5661694912b740c9aa83bfffc0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJz2Kw3jBPSOOR1G-dGr0BKrpr0=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.078183+00 2025-12-09 10:14:54.078187+00 6981 JTSS006FW#VS-D3 SPMX-20240815302127 \N \N \N 1 \N [{"file_id": "a4f22a02-4622-4352-a402-3933ea0f39d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc4ac84d20ef47eab87c48ff3d8984e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc4ac84d20ef47eab87c48ff3d8984e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc4ac84d20ef47eab87c48ff3d8984e7.jpg", "file_size": 13420, "is_delete": false, "file_type": 1, "original_file_name": "JTSS006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4ac84d20ef47eab87c48ff3d8984e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4ac84d20ef47eab87c48ff3d8984e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4ac84d20ef47eab87c48ff3d8984e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc4ac84d20ef47eab87c48ff3d8984e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc4ac84d20ef47eab87c48ff3d8984e7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zd2kLm21fIw4X_zj1cvfQIsbO8=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.079555+00 2025-12-09 10:14:54.079559+00 6982 23-2103#A8后片3XL SPMX-20240815302131 \N \N \N 1 \N [{"file_id": "267dd3b8-1947-4ebf-b1c5-61292d159dd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f1b5a5517884cd99a004b9cb55f3e57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f1b5a5517884cd99a004b9cb55f3e57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f1b5a5517884cd99a004b9cb55f3e57.jpg", "file_size": 7321, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1b5a5517884cd99a004b9cb55f3e57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1b5a5517884cd99a004b9cb55f3e57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1b5a5517884cd99a004b9cb55f3e57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f1b5a5517884cd99a004b9cb55f3e57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f1b5a5517884cd99a004b9cb55f3e57.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M52ytd8Mu_4O5VtVh3X0UXYK4sI=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.080922+00 2025-12-09 10:14:54.080926+00 6983 1060#白色匹布 SPMX-20240815302148 \N \N \N 1 \N [{"file_id": "08cfcef3-4a2d-4231-9b6c-6750d9a022c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5d4bd0e3383435fa66a96d93f01c97c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5d4bd0e3383435fa66a96d93f01c97c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5d4bd0e3383435fa66a96d93f01c97c.jpg", "file_size": 22039, "is_delete": false, "file_type": 1, "original_file_name": "1060#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d4bd0e3383435fa66a96d93f01c97c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d4bd0e3383435fa66a96d93f01c97c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d4bd0e3383435fa66a96d93f01c97c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5d4bd0e3383435fa66a96d93f01c97c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5d4bd0e3383435fa66a96d93f01c97c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWxXal42-648zIgDzvvo7levsBw=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.082308+00 2025-12-09 10:14:54.082312+00 6984 0003-311#下摆 SPMX-20240815302141 \N \N \N 1 \N [{"file_id": "8445a69a-a167-4efc-bed2-59dcb3862fd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg", "file_size": 17984, "is_delete": false, "file_type": 1, "original_file_name": "0003-311#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5293963ecd1e4c2b8b0a9bdbb2c76b72.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HIhNJCNjAriZCt2FgUJ3qb3Ai8=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.083689+00 2025-12-09 10:14:54.083694+00 6985 DK-003-1 SPMX-20240815302135 \N \N \N 1 \N [{"file_id": "b72e5cf3-86ef-42ba-93d3-12dd2d97a4cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46364f83839f4c21b9121ce5f80df23c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46364f83839f4c21b9121ce5f80df23c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46364f83839f4c21b9121ce5f80df23c.jpg", "file_size": 57852, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46364f83839f4c21b9121ce5f80df23c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46364f83839f4c21b9121ce5f80df23c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46364f83839f4c21b9121ce5f80df23c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46364f83839f4c21b9121ce5f80df23c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46364f83839f4c21b9121ce5f80df23c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T2uGGj_FNC_7Ntmv9mDOGoc8Zqc=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.085215+00 2025-12-09 10:14:54.085219+00 6986 80153#蓝色 SPMX-20240815302139 \N \N \N 1 \N [{"file_id": "67fa420f-b40c-43f7-a759-09aef82c029b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "487258c2e4974b6986cab98819cf7509.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "487258c2e4974b6986cab98819cf7509.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "487258c2e4974b6986cab98819cf7509.jpg", "file_size": 9342, "is_delete": false, "file_type": 1, "original_file_name": "80153#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487258c2e4974b6986cab98819cf7509.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487258c2e4974b6986cab98819cf7509.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/487258c2e4974b6986cab98819cf7509.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/487258c2e4974b6986cab98819cf7509.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/487258c2e4974b6986cab98819cf7509.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-99Sx6JZhgs0toKgTJukSIrCbc=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.08664+00 2025-12-09 10:14:54.086644+00 6987 LHS0943-3#RC23 SPMX-20240815302142 \N \N \N 1 \N [{"file_id": "73afb382-603a-4216-9e25-75f1a270f8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b6af1ae95ec4aa3a482266b963913ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b6af1ae95ec4aa3a482266b963913ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b6af1ae95ec4aa3a482266b963913ed.jpg", "file_size": 54210, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6af1ae95ec4aa3a482266b963913ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6af1ae95ec4aa3a482266b963913ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6af1ae95ec4aa3a482266b963913ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b6af1ae95ec4aa3a482266b963913ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b6af1ae95ec4aa3a482266b963913ed.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_row4DMV0SIhH9jRhcX8RoIEJc=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.088015+00 2025-12-09 10:14:54.088019+00 6988 HT0101-111#WJC22 SPMX-20240815302143 \N \N \N 1 \N [{"file_id": "71549e0e-695b-477d-8e42-6cb9032b6d77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f225f1fa7864b34a59e915b7d2fc29f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f225f1fa7864b34a59e915b7d2fc29f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f225f1fa7864b34a59e915b7d2fc29f.jpg", "file_size": 17247, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-111#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f225f1fa7864b34a59e915b7d2fc29f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f225f1fa7864b34a59e915b7d2fc29f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f225f1fa7864b34a59e915b7d2fc29f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f225f1fa7864b34a59e915b7d2fc29f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f225f1fa7864b34a59e915b7d2fc29f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKWG69uD29B4U3uIEYZUZVmO-F0=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.089548+00 2025-12-09 10:14:54.089553+00 6989 80153#领子1 SPMX-20240815302147 \N \N \N 1 \N [{"file_id": "28b083b4-7334-4cbf-88f0-cc6160e015e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cb21295925e406fb7ad9b071512d1d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cb21295925e406fb7ad9b071512d1d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cb21295925e406fb7ad9b071512d1d4.jpg", "file_size": 7149, "is_delete": false, "file_type": 1, "original_file_name": "80153#领子1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb21295925e406fb7ad9b071512d1d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb21295925e406fb7ad9b071512d1d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb21295925e406fb7ad9b071512d1d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cb21295925e406fb7ad9b071512d1d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cb21295925e406fb7ad9b071512d1d4.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JeLunJWmU1jW41uXTOJQaAStyU0=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.091127+00 2025-12-09 10:14:54.091132+00 6990 23-2103#A8后片4XL SPMX-20240815302140 \N \N \N 1 \N [{"file_id": "6bc12f6f-3087-4025-90e2-6e6ecd4a6513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b03276fd3bac4844ace352f982691f31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b03276fd3bac4844ace352f982691f31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b03276fd3bac4844ace352f982691f31.jpg", "file_size": 7900, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b03276fd3bac4844ace352f982691f31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b03276fd3bac4844ace352f982691f31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b03276fd3bac4844ace352f982691f31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b03276fd3bac4844ace352f982691f31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b03276fd3bac4844ace352f982691f31.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGs7D6WhanNqltuuQNHtN3TjX7Q=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.092532+00 2025-12-09 10:14:54.092536+00 6991 1060#白色 SPMX-20240815302137 \N \N \N 1 \N [{"file_id": "4e8d4d51-05b5-4ff2-8873-fc6480fde0ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c646d34df2c847279fd4f9ee94bcf74e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c646d34df2c847279fd4f9ee94bcf74e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c646d34df2c847279fd4f9ee94bcf74e.jpg", "file_size": 21674, "is_delete": false, "file_type": 1, "original_file_name": "1060#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c646d34df2c847279fd4f9ee94bcf74e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c646d34df2c847279fd4f9ee94bcf74e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c646d34df2c847279fd4f9ee94bcf74e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c646d34df2c847279fd4f9ee94bcf74e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c646d34df2c847279fd4f9ee94bcf74e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Zi0WP8F9nCKWlJYzG01Qk3uR0s=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.09393+00 2025-12-09 10:14:54.093934+00 6992 LZ1233#上身1号色 SPMX-20240815302144 \N \N \N 1 \N [{"file_id": "ddf7b7d9-d228-44da-a6f7-0786c658c72b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d1fa8c5c9c14ce992464a81ea98351e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d1fa8c5c9c14ce992464a81ea98351e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d1fa8c5c9c14ce992464a81ea98351e.jpg", "file_size": 16714, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1fa8c5c9c14ce992464a81ea98351e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1fa8c5c9c14ce992464a81ea98351e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1fa8c5c9c14ce992464a81ea98351e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d1fa8c5c9c14ce992464a81ea98351e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d1fa8c5c9c14ce992464a81ea98351e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtZbY70pvD3pFE_CL216jaltzRQ=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.095355+00 2025-12-09 10:14:54.095359+00 6993 JTSS007#VS-D3 SPMX-20240815302138 \N \N \N 1 \N [{"file_id": "581815f2-04dd-4daa-b12f-382dd4fa0302", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5845e0be3e9c4520adce5a2350da8458.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5845e0be3e9c4520adce5a2350da8458.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5845e0be3e9c4520adce5a2350da8458.jpg", "file_size": 15434, "is_delete": false, "file_type": 1, "original_file_name": "JTSS007#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845e0be3e9c4520adce5a2350da8458.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845e0be3e9c4520adce5a2350da8458.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845e0be3e9c4520adce5a2350da8458.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5845e0be3e9c4520adce5a2350da8458.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5845e0be3e9c4520adce5a2350da8458.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFTBAj05GY8HHqoZtL-AmBMCGYA=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.096732+00 2025-12-09 10:14:54.096736+00 6994 FHXGPK-062-3 SPMX-20240815302146 \N \N \N 1 \N [{"file_id": "d71be61a-0c8b-4476-a393-af1edaa36191", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66c0f6184d3d4f118513d6a0a6a3529f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66c0f6184d3d4f118513d6a0a6a3529f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66c0f6184d3d4f118513d6a0a6a3529f.jpg", "file_size": 28685, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-062-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c0f6184d3d4f118513d6a0a6a3529f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c0f6184d3d4f118513d6a0a6a3529f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c0f6184d3d4f118513d6a0a6a3529f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66c0f6184d3d4f118513d6a0a6a3529f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66c0f6184d3d4f118513d6a0a6a3529f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsV9FhiAwxebv64beHN_BP4Bv3Y=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.098145+00 2025-12-09 10:14:54.09815+00 6995 23-2103#A8袖子3XL SPMX-20240815302151 \N \N \N 1 \N [{"file_id": "5bf76b46-d7df-4656-9fee-07eced6bfc54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334edebcebf0471182c03b3a2e74b8ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334edebcebf0471182c03b3a2e74b8ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334edebcebf0471182c03b3a2e74b8ad.jpg", "file_size": 7259, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334edebcebf0471182c03b3a2e74b8ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334edebcebf0471182c03b3a2e74b8ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334edebcebf0471182c03b3a2e74b8ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334edebcebf0471182c03b3a2e74b8ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334edebcebf0471182c03b3a2e74b8ad.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCUVWiOzulrKOS3VbwQKF9ixe8Q=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.099539+00 2025-12-09 10:14:54.099543+00 6996 C289#黑色 SPMX-20240815302136 \N \N \N 1 \N [{"file_id": "a6911ddf-9e00-404e-904b-7c44b68eb7a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3517265430d84639a5c784a276d0a29a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3517265430d84639a5c784a276d0a29a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3517265430d84639a5c784a276d0a29a.jpg", "file_size": 25759, "is_delete": false, "file_type": 1, "original_file_name": "C289#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3517265430d84639a5c784a276d0a29a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3517265430d84639a5c784a276d0a29a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3517265430d84639a5c784a276d0a29a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3517265430d84639a5c784a276d0a29a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3517265430d84639a5c784a276d0a29a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ys5KJrSkEZrVndRDZ30SP9LeVzE=", "createTime": "2024-08-15 14:44:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.100905+00 2025-12-09 10:14:54.100909+00 6997 C29#WJC22 SPMX-20240815302145 \N \N \N 1 \N [{"file_id": "80665158-9f26-41f1-b375-242852b29b53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae4943263b144da08aa4181845d8093d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae4943263b144da08aa4181845d8093d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae4943263b144da08aa4181845d8093d.jpg", "file_size": 22615, "is_delete": false, "file_type": 1, "original_file_name": "C29#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4943263b144da08aa4181845d8093d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4943263b144da08aa4181845d8093d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4943263b144da08aa4181845d8093d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae4943263b144da08aa4181845d8093d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae4943263b144da08aa4181845d8093d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqt0f4lVZAkCOf7yPbqG5-WpqR4=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.102247+00 2025-12-09 10:14:54.102251+00 6998 JTSS007FW#VS-D3 SPMX-20240815302149 \N \N \N 1 \N [{"file_id": "a9d554f5-f124-477f-9d7d-1c82264829fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18b9ceff7ad6483f86e2e32940644367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18b9ceff7ad6483f86e2e32940644367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18b9ceff7ad6483f86e2e32940644367.jpg", "file_size": 8378, "is_delete": false, "file_type": 1, "original_file_name": "JTSS007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b9ceff7ad6483f86e2e32940644367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b9ceff7ad6483f86e2e32940644367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18b9ceff7ad6483f86e2e32940644367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18b9ceff7ad6483f86e2e32940644367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18b9ceff7ad6483f86e2e32940644367.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vGXK90KyI1Kgd2V6YQxrlc7jEqQ=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.103647+00 2025-12-09 10:14:54.103651+00 6999 0003-311#前片 SPMX-20240815302152 \N \N \N 1 \N [{"file_id": "3a635964-1d11-4a03-82c7-fc92c4151fff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41b19e999b0d4d33b77edfc5aa348203.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41b19e999b0d4d33b77edfc5aa348203.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41b19e999b0d4d33b77edfc5aa348203.jpg", "file_size": 12007, "is_delete": false, "file_type": 1, "original_file_name": "0003-311#前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b19e999b0d4d33b77edfc5aa348203.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b19e999b0d4d33b77edfc5aa348203.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b19e999b0d4d33b77edfc5aa348203.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41b19e999b0d4d33b77edfc5aa348203.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41b19e999b0d4d33b77edfc5aa348203.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAZQHHrH8z_AAuEV61HOoiuO_WQ=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.105004+00 2025-12-09 10:14:54.105008+00 7000 HT0101-112#WJC22 SPMX-20240815302153 \N \N \N 1 \N [{"file_id": "a3daa9f3-b1a7-4d81-a46f-ed214825fe8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14c22f140e2a4160862ae54de5094136.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14c22f140e2a4160862ae54de5094136.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14c22f140e2a4160862ae54de5094136.jpg", "file_size": 30244, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-112#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14c22f140e2a4160862ae54de5094136.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14c22f140e2a4160862ae54de5094136.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14c22f140e2a4160862ae54de5094136.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14c22f140e2a4160862ae54de5094136.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14c22f140e2a4160862ae54de5094136.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3CsLVA-oSBne5-vH0zaj2O5WUI=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.106377+00 2025-12-09 10:14:54.106381+00 7001 DK-003-2-批布 SPMX-20240815302150 \N \N \N 1 \N [{"file_id": "de2ef5c3-86c8-4ecf-9547-6f56bdc7cd05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f2563cc118c48b5b29a62bc25cacf5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f2563cc118c48b5b29a62bc25cacf5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f2563cc118c48b5b29a62bc25cacf5d.jpg", "file_size": 54086, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2563cc118c48b5b29a62bc25cacf5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2563cc118c48b5b29a62bc25cacf5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2563cc118c48b5b29a62bc25cacf5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f2563cc118c48b5b29a62bc25cacf5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f2563cc118c48b5b29a62bc25cacf5d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25RIBqOUl3HgCQWQNAN8IOZp78U=", "createTime": "2024-08-15 14:44:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.107737+00 2025-12-09 10:14:54.107742+00 7002 LHS0943-4#1号色 SPMX-20240815302154 \N \N \N 1 \N [{"file_id": "b5e6fab0-f1ab-42bf-b0c0-aed9699650de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69af1ab8895e4baea92e0e3fbd24f2a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69af1ab8895e4baea92e0e3fbd24f2a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69af1ab8895e4baea92e0e3fbd24f2a5.jpg", "file_size": 63978, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-4#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69af1ab8895e4baea92e0e3fbd24f2a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69af1ab8895e4baea92e0e3fbd24f2a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69af1ab8895e4baea92e0e3fbd24f2a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69af1ab8895e4baea92e0e3fbd24f2a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69af1ab8895e4baea92e0e3fbd24f2a5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBKLbGY5_3RqiK564hj4o_liuYs=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.109136+00 2025-12-09 10:14:54.10914+00 7003 C292#大白 SPMX-20240815302155 \N \N \N 1 \N [{"file_id": "1fe1b150-146c-4018-88d9-39cd6fe87a92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d09042656c14e92bb8882df332a6882.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d09042656c14e92bb8882df332a6882.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d09042656c14e92bb8882df332a6882.jpg", "file_size": 17704, "is_delete": false, "file_type": 1, "original_file_name": "C292#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d09042656c14e92bb8882df332a6882.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d09042656c14e92bb8882df332a6882.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d09042656c14e92bb8882df332a6882.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d09042656c14e92bb8882df332a6882.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d09042656c14e92bb8882df332a6882.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUxgeE15BoxWa_VtxUqxsWokci4=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.11051+00 2025-12-09 10:14:54.110515+00 7004 LHS0943-4#2号色 SPMX-20240815302165 \N \N \N 1 \N [{"file_id": "1cd17210-cb2a-4a76-a1ac-062a6345ce61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd4b58009a614757ab9cb1a596009674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd4b58009a614757ab9cb1a596009674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd4b58009a614757ab9cb1a596009674.jpg", "file_size": 59094, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-4#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd4b58009a614757ab9cb1a596009674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd4b58009a614757ab9cb1a596009674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd4b58009a614757ab9cb1a596009674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd4b58009a614757ab9cb1a596009674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd4b58009a614757ab9cb1a596009674.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qaV9hFgcvQKUUucFlSGxjzYVN3E=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.111865+00 2025-12-09 10:14:54.111869+00 7005 80153#领子2 SPMX-20240815302157 \N \N \N 1 \N [{"file_id": "e96e5ee2-e225-4fd4-877e-845bec2a0dd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edae12b6487c4f08b4b3e5c5bfeb32cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edae12b6487c4f08b4b3e5c5bfeb32cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edae12b6487c4f08b4b3e5c5bfeb32cb.jpg", "file_size": 7061, "is_delete": false, "file_type": 1, "original_file_name": "80153#领子2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae12b6487c4f08b4b3e5c5bfeb32cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae12b6487c4f08b4b3e5c5bfeb32cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae12b6487c4f08b4b3e5c5bfeb32cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edae12b6487c4f08b4b3e5c5bfeb32cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edae12b6487c4f08b4b3e5c5bfeb32cb.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ebc2XfVRzSuoifZCVmU265uYiec=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.11324+00 2025-12-09 10:14:54.113244+00 7006 1060#白色袖子 SPMX-20240815302159 \N \N \N 1 \N [{"file_id": "87910b01-a987-48f5-b6e8-f870c6551182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57420528e4ff4530a99c29e854435809.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57420528e4ff4530a99c29e854435809.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57420528e4ff4530a99c29e854435809.jpg", "file_size": 12372, "is_delete": false, "file_type": 1, "original_file_name": "1060#白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57420528e4ff4530a99c29e854435809.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57420528e4ff4530a99c29e854435809.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57420528e4ff4530a99c29e854435809.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57420528e4ff4530a99c29e854435809.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57420528e4ff4530a99c29e854435809.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPzG9QvBszGtObqblXIL6pnJ9_s=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.1146+00 2025-12-09 10:14:54.114604+00 7007 DK-003-2 SPMX-20240815302161 \N \N \N 1 \N [{"file_id": "09517c9e-cccc-4a8e-9e7c-8ba86c601a4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ed1e2fa35104a62ae2be9b1c9c4b696.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ed1e2fa35104a62ae2be9b1c9c4b696.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ed1e2fa35104a62ae2be9b1c9c4b696.jpg", "file_size": 67657, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed1e2fa35104a62ae2be9b1c9c4b696.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed1e2fa35104a62ae2be9b1c9c4b696.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed1e2fa35104a62ae2be9b1c9c4b696.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ed1e2fa35104a62ae2be9b1c9c4b696.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ed1e2fa35104a62ae2be9b1c9c4b696.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pi6Q__aah1jU0qvEPIyKXrAQcxM=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.115975+00 2025-12-09 10:14:54.115979+00 7008 LZ1233#上身2号色 SPMX-20240815302156 \N \N \N 1 \N [{"file_id": "1e005df2-8bad-4205-82c5-e755acf73b98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e96b7c1d2ab343f09f2cb4e28389bed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e96b7c1d2ab343f09f2cb4e28389bed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e96b7c1d2ab343f09f2cb4e28389bed3.jpg", "file_size": 15368, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e96b7c1d2ab343f09f2cb4e28389bed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e96b7c1d2ab343f09f2cb4e28389bed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e96b7c1d2ab343f09f2cb4e28389bed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e96b7c1d2ab343f09f2cb4e28389bed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e96b7c1d2ab343f09f2cb4e28389bed3.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKNLocuDlQs4_oCQTlJgLZbAz80=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.117343+00 2025-12-09 10:14:54.117347+00 7009 FHXGPK-062-4 SPMX-20240815302158 \N \N \N 1 \N [{"file_id": "3c867ce5-6473-4bb1-925e-04b80ca10f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64baa1f5020742e4b2b81006c0acf05b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64baa1f5020742e4b2b81006c0acf05b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64baa1f5020742e4b2b81006c0acf05b.jpg", "file_size": 31041, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-062-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64baa1f5020742e4b2b81006c0acf05b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64baa1f5020742e4b2b81006c0acf05b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64baa1f5020742e4b2b81006c0acf05b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64baa1f5020742e4b2b81006c0acf05b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64baa1f5020742e4b2b81006c0acf05b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFmnd68pcKZvXBQMX8WmHmkoHIs=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.118721+00 2025-12-09 10:14:54.118726+00 7010 0003-311#匹布 SPMX-20240815302164 \N \N \N 1 \N [{"file_id": "9d284c0c-ca7e-46cf-935a-760ecf6adbb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b18f48b15467462bb3ac144483af8af9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b18f48b15467462bb3ac144483af8af9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b18f48b15467462bb3ac144483af8af9.jpg", "file_size": 12816, "is_delete": false, "file_type": 1, "original_file_name": "0003-311#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b18f48b15467462bb3ac144483af8af9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b18f48b15467462bb3ac144483af8af9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b18f48b15467462bb3ac144483af8af9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b18f48b15467462bb3ac144483af8af9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b18f48b15467462bb3ac144483af8af9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JV8ntTci071Fnnp4c841nizQjk=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.120086+00 2025-12-09 10:14:54.120091+00 7011 JTSS008#VS-D3 SPMX-20240815302160 \N \N \N 1 \N [{"file_id": "9559d7dd-7218-47a6-ac55-93e0e86f5d60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30d8a90759e24beab7e8c0405b771d71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30d8a90759e24beab7e8c0405b771d71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30d8a90759e24beab7e8c0405b771d71.jpg", "file_size": 11823, "is_delete": false, "file_type": 1, "original_file_name": "JTSS008#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30d8a90759e24beab7e8c0405b771d71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30d8a90759e24beab7e8c0405b771d71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30d8a90759e24beab7e8c0405b771d71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30d8a90759e24beab7e8c0405b771d71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30d8a90759e24beab7e8c0405b771d71.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEGweK2rGF_RRrhxF9Y2s5Gx8ms=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.121438+00 2025-12-09 10:14:54.121442+00 7012 HT0101-113#WJC22 SPMX-20240815302162 \N \N \N 1 \N [{"file_id": "011573c0-e301-452d-909a-8fcdc8338c06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f72a23094f4042914b903dd6aa244d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f72a23094f4042914b903dd6aa244d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f72a23094f4042914b903dd6aa244d.jpg", "file_size": 11092, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-113#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f72a23094f4042914b903dd6aa244d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f72a23094f4042914b903dd6aa244d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f72a23094f4042914b903dd6aa244d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f72a23094f4042914b903dd6aa244d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f72a23094f4042914b903dd6aa244d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8-QI6RKGKTvsuvyKzfGtMVHttI=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.122832+00 2025-12-09 10:14:54.122836+00 7013 23-2103#A8袖子4XL SPMX-20240815302163 \N \N \N 1 \N [{"file_id": "ec65ccbb-14c9-4314-8785-79d4a3ec7058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8a9f41aff4b4fd1955bdb7211913ba6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8a9f41aff4b4fd1955bdb7211913ba6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8a9f41aff4b4fd1955bdb7211913ba6.jpg", "file_size": 6931, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a9f41aff4b4fd1955bdb7211913ba6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a9f41aff4b4fd1955bdb7211913ba6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a9f41aff4b4fd1955bdb7211913ba6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8a9f41aff4b4fd1955bdb7211913ba6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8a9f41aff4b4fd1955bdb7211913ba6.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SpNqpMOPvdrfzaIRt491AUqVtIw=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.124195+00 2025-12-09 10:14:54.1242+00 7014 HT0101-114# SPMX-20240815302172 \N \N \N 1 \N [{"file_id": "3d0911e2-5ecc-4025-bc24-529b8d8de86a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2f549d947004b24887bcf9d02426c95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2f549d947004b24887bcf9d02426c95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2f549d947004b24887bcf9d02426c95.jpg", "file_size": 24861, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-114#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f549d947004b24887bcf9d02426c95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f549d947004b24887bcf9d02426c95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f549d947004b24887bcf9d02426c95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2f549d947004b24887bcf9d02426c95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2f549d947004b24887bcf9d02426c95.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgNzyj8YXlFUzIWyLoqrgFqlzEs=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.12555+00 2025-12-09 10:14:54.125554+00 7015 LZ1233#上身4号色 SPMX-20240815302178 \N \N \N 1 \N [{"file_id": "cd0d1a56-5738-4d8f-93e8-f32adf750dad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e88368a8830944cab25c26efbc8d7c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e88368a8830944cab25c26efbc8d7c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e88368a8830944cab25c26efbc8d7c56.jpg", "file_size": 15542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88368a8830944cab25c26efbc8d7c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88368a8830944cab25c26efbc8d7c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88368a8830944cab25c26efbc8d7c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e88368a8830944cab25c26efbc8d7c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e88368a8830944cab25c26efbc8d7c56.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TefW_y4eF70pi0Uqi0YqsEs9e0A=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.126937+00 2025-12-09 10:14:54.126941+00 7016 C292#玫红 SPMX-20240815302179 \N \N \N 1 \N [{"file_id": "2ef8604b-3051-4c98-8c02-682dd901ac8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79e95c51315145a6bc3fbb636adb2b58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79e95c51315145a6bc3fbb636adb2b58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79e95c51315145a6bc3fbb636adb2b58.jpg", "file_size": 13657, "is_delete": false, "file_type": 1, "original_file_name": "C292#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79e95c51315145a6bc3fbb636adb2b58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79e95c51315145a6bc3fbb636adb2b58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79e95c51315145a6bc3fbb636adb2b58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79e95c51315145a6bc3fbb636adb2b58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79e95c51315145a6bc3fbb636adb2b58.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5XaX0O6w1W6q3CHxryWZjFX2sw=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.128333+00 2025-12-09 10:14:54.128338+00 7017 FHXGPK-062-5 SPMX-20240815302171 \N \N \N 1 \N [{"file_id": "a3696e14-62d4-4595-91fc-e85f8912ec23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b98c807074649d6b66889c739dee0ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b98c807074649d6b66889c739dee0ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b98c807074649d6b66889c739dee0ce.jpg", "file_size": 33161, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-062-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98c807074649d6b66889c739dee0ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98c807074649d6b66889c739dee0ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b98c807074649d6b66889c739dee0ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b98c807074649d6b66889c739dee0ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b98c807074649d6b66889c739dee0ce.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1pID7s0mLrSugvUzWjSwhzghcq4=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.129692+00 2025-12-09 10:14:54.129696+00 7018 80153#领子3 SPMX-20240815302166 \N \N \N 1 \N [{"file_id": "2dce5d8c-0d96-475a-96af-6e085df60b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4a7ec7e9953438a85ebd219b8cf113e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4a7ec7e9953438a85ebd219b8cf113e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4a7ec7e9953438a85ebd219b8cf113e.jpg", "file_size": 7632, "is_delete": false, "file_type": 1, "original_file_name": "80153#领子3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a7ec7e9953438a85ebd219b8cf113e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a7ec7e9953438a85ebd219b8cf113e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a7ec7e9953438a85ebd219b8cf113e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4a7ec7e9953438a85ebd219b8cf113e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4a7ec7e9953438a85ebd219b8cf113e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6TRbgzBSk7xbpzjGZPPuALCUno=", "createTime": "2024-08-15 14:44:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.131061+00 2025-12-09 10:14:54.131065+00 7019 C292#大红 SPMX-20240815302168 \N \N \N 1 \N [{"file_id": "80c9e007-6dec-48c1-b87e-f036f3f76767", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "268045a84a5b4bbd8bfd197c1643261d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "268045a84a5b4bbd8bfd197c1643261d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "268045a84a5b4bbd8bfd197c1643261d.jpg", "file_size": 13092, "is_delete": false, "file_type": 1, "original_file_name": "C292#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268045a84a5b4bbd8bfd197c1643261d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268045a84a5b4bbd8bfd197c1643261d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268045a84a5b4bbd8bfd197c1643261d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/268045a84a5b4bbd8bfd197c1643261d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/268045a84a5b4bbd8bfd197c1643261d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWP8J_z9DKv6SLSJk9hhOV764Ik=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.132427+00 2025-12-09 10:14:54.132431+00 7020 1060#粉色 SPMX-20240815302170 \N \N \N 1 \N [{"file_id": "fffd9552-cfd8-4b27-824a-4fdece47c19d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3af15eb1ec1b4eeabf54dc5e30f62f98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3af15eb1ec1b4eeabf54dc5e30f62f98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3af15eb1ec1b4eeabf54dc5e30f62f98.jpg", "file_size": 20319, "is_delete": false, "file_type": 1, "original_file_name": "1060#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af15eb1ec1b4eeabf54dc5e30f62f98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af15eb1ec1b4eeabf54dc5e30f62f98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af15eb1ec1b4eeabf54dc5e30f62f98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3af15eb1ec1b4eeabf54dc5e30f62f98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3af15eb1ec1b4eeabf54dc5e30f62f98.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NPx1K1YN8UJbihoqUmXjt1qRiS8=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.133805+00 2025-12-09 10:14:54.13381+00 7021 23-2103#A8领子通用 SPMX-20240815302176 \N \N \N 1 \N [{"file_id": "93a8de10-d192-4706-aa1b-2d8747e12a90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9fdfae158034eb18010664a3d79bbec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9fdfae158034eb18010664a3d79bbec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9fdfae158034eb18010664a3d79bbec.jpg", "file_size": 8269, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A8领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fdfae158034eb18010664a3d79bbec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fdfae158034eb18010664a3d79bbec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fdfae158034eb18010664a3d79bbec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9fdfae158034eb18010664a3d79bbec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9fdfae158034eb18010664a3d79bbec.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KknRnVlrlwDMvUSfw4CnOtzxm20=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.135183+00 2025-12-09 10:14:54.135187+00 7022 80153#领子4 SPMX-20240815302177 \N \N \N 1 \N [{"file_id": "44666100-8cc0-4363-a342-0adae11f8c02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e81dd39d9f64e30afea7a75d9e0f4a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e81dd39d9f64e30afea7a75d9e0f4a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e81dd39d9f64e30afea7a75d9e0f4a9.jpg", "file_size": 7356, "is_delete": false, "file_type": 1, "original_file_name": "80153#领子4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e81dd39d9f64e30afea7a75d9e0f4a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e81dd39d9f64e30afea7a75d9e0f4a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e81dd39d9f64e30afea7a75d9e0f4a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e81dd39d9f64e30afea7a75d9e0f4a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e81dd39d9f64e30afea7a75d9e0f4a9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkediT3HBsiRzJbGDjbjxyG9ReA=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.136562+00 2025-12-09 10:14:54.136566+00 7023 0003-312#WJC22 SPMX-20240815302174 \N \N \N 1 \N [{"file_id": "7f351846-1aa2-4e4c-a343-4890450fa723", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "026e31b9b33344188ca34135030c6668.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "026e31b9b33344188ca34135030c6668.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "026e31b9b33344188ca34135030c6668.jpg", "file_size": 17624, "is_delete": false, "file_type": 1, "original_file_name": "0003-312#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026e31b9b33344188ca34135030c6668.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026e31b9b33344188ca34135030c6668.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026e31b9b33344188ca34135030c6668.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/026e31b9b33344188ca34135030c6668.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/026e31b9b33344188ca34135030c6668.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCOapzA06otmUQ1R1QU6UdxHP-4=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.137947+00 2025-12-09 10:14:54.137952+00 7024 LZ1233#上身3号色 SPMX-20240815302167 \N \N \N 1 \N [{"file_id": "7320454f-8dde-4095-ab66-9dd7b34334d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd5a96a1a179450fa3423f403d9afd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd5a96a1a179450fa3423f403d9afd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd5a96a1a179450fa3423f403d9afd2f.jpg", "file_size": 16542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd5a96a1a179450fa3423f403d9afd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd5a96a1a179450fa3423f403d9afd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd5a96a1a179450fa3423f403d9afd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd5a96a1a179450fa3423f403d9afd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd5a96a1a179450fa3423f403d9afd2f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pn1Vn8itRCUt2q3HI74I6uEfsIc=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.139324+00 2025-12-09 10:14:54.139328+00 7025 JTSS008FW#VS-D3 SPMX-20240815302169 \N \N \N 1 \N [{"file_id": "104e3046-7341-463a-a41e-c22917d21deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8401e1f8c9d94a5f927466040e4235a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8401e1f8c9d94a5f927466040e4235a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8401e1f8c9d94a5f927466040e4235a9.jpg", "file_size": 10770, "is_delete": false, "file_type": 1, "original_file_name": "JTSS008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8401e1f8c9d94a5f927466040e4235a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8401e1f8c9d94a5f927466040e4235a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8401e1f8c9d94a5f927466040e4235a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8401e1f8c9d94a5f927466040e4235a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8401e1f8c9d94a5f927466040e4235a9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6Z4F1CN4fMCjJX1aMnkeIpwVTE=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.140703+00 2025-12-09 10:14:54.14071+00 7026 DK-003-3-批布 SPMX-20240815302173 \N \N \N 1 \N [{"file_id": "a8beecb3-fbc9-4885-b3c8-ace46764216d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bba17c973bb94934ba19d53ce6631d4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bba17c973bb94934ba19d53ce6631d4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bba17c973bb94934ba19d53ce6631d4b.jpg", "file_size": 63214, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba17c973bb94934ba19d53ce6631d4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba17c973bb94934ba19d53ce6631d4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba17c973bb94934ba19d53ce6631d4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bba17c973bb94934ba19d53ce6631d4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bba17c973bb94934ba19d53ce6631d4b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1Heme90aDojKBCjUGEJaSWGHjg=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.142087+00 2025-12-09 10:14:54.142091+00 7027 LHS0943-4#3号色 SPMX-20240815302175 \N \N \N 1 \N [{"file_id": "b0a42a18-d46d-4e9d-a00a-7329e35775de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e009e1707b3d44b5a391fd74e438a2ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e009e1707b3d44b5a391fd74e438a2ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e009e1707b3d44b5a391fd74e438a2ed.jpg", "file_size": 56924, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-4#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e009e1707b3d44b5a391fd74e438a2ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e009e1707b3d44b5a391fd74e438a2ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e009e1707b3d44b5a391fd74e438a2ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e009e1707b3d44b5a391fd74e438a2ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e009e1707b3d44b5a391fd74e438a2ed.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nG8WgObbMqwyZCdLgcZRkfrJXhY=", "createTime": "2024-08-15 14:44:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.143454+00 2025-12-09 10:14:54.143458+00 7028 HT0101-114#粉色 SPMX-20240815302180 \N \N \N 1 \N [{"file_id": "4641b1fd-b4c8-46c0-a6bd-767c53ebddff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ba125ecfb554b52ba14dda2c33eddd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ba125ecfb554b52ba14dda2c33eddd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ba125ecfb554b52ba14dda2c33eddd7.jpg", "file_size": 21976, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-114#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba125ecfb554b52ba14dda2c33eddd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba125ecfb554b52ba14dda2c33eddd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba125ecfb554b52ba14dda2c33eddd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ba125ecfb554b52ba14dda2c33eddd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ba125ecfb554b52ba14dda2c33eddd7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2zwjp7AGMGQKmFtZEXUaxgPzXs=", "createTime": "2024-08-15 14:44:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.144824+00 2025-12-09 10:14:54.144828+00 7029 FHXGPK-063-1 SPMX-20240815302182 \N \N \N 1 \N [{"file_id": "37104a67-2ec2-4c0d-96d5-8f5e7f73037f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fe31ca15b92499895b132405ac25d69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fe31ca15b92499895b132405ac25d69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fe31ca15b92499895b132405ac25d69.jpg", "file_size": 27936, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-063-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe31ca15b92499895b132405ac25d69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe31ca15b92499895b132405ac25d69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe31ca15b92499895b132405ac25d69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fe31ca15b92499895b132405ac25d69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fe31ca15b92499895b132405ac25d69.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7plCoKP-gg4ep-kLZiUsZvppSY=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.146209+00 2025-12-09 10:14:54.146213+00 7030 0003-313#WJC22 SPMX-20240815302189 \N \N \N 1 \N [{"file_id": "acea8c48-427b-463e-aad3-7cad27db9eb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb7422c26f864bdfa8821cb7df32eefc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb7422c26f864bdfa8821cb7df32eefc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb7422c26f864bdfa8821cb7df32eefc.jpg", "file_size": 17160, "is_delete": false, "file_type": 1, "original_file_name": "0003-313#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7422c26f864bdfa8821cb7df32eefc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7422c26f864bdfa8821cb7df32eefc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7422c26f864bdfa8821cb7df32eefc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb7422c26f864bdfa8821cb7df32eefc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb7422c26f864bdfa8821cb7df32eefc.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DgGhiSDnVSpwlhkOu7uh2zhtcFI=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.147557+00 2025-12-09 10:14:54.147561+00 7031 DK-003-3 SPMX-20240815302183 \N \N \N 1 \N [{"file_id": "72c8eaca-3653-465a-8c8e-c7721b1a3a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02983a93054b4f559c1e434c9a91cce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02983a93054b4f559c1e434c9a91cce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02983a93054b4f559c1e434c9a91cce5.jpg", "file_size": 54299, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02983a93054b4f559c1e434c9a91cce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02983a93054b4f559c1e434c9a91cce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02983a93054b4f559c1e434c9a91cce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02983a93054b4f559c1e434c9a91cce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02983a93054b4f559c1e434c9a91cce5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NS5jsE6Y7blWYzoFGtUmFul2IUE=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.148936+00 2025-12-09 10:14:54.14894+00 7032 23-2103#A9前后片3XL SPMX-20240815302184 \N \N \N 1 \N [{"file_id": "a97db83f-8070-4b12-911c-41e28e6af2e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "064c762afde944e0907ccd735d5bfaf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "064c762afde944e0907ccd735d5bfaf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "064c762afde944e0907ccd735d5bfaf0.jpg", "file_size": 9458, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A9前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064c762afde944e0907ccd735d5bfaf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064c762afde944e0907ccd735d5bfaf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064c762afde944e0907ccd735d5bfaf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/064c762afde944e0907ccd735d5bfaf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/064c762afde944e0907ccd735d5bfaf0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usPVEifMudtW8b_LVEpTn27ESNo=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.150291+00 2025-12-09 10:14:54.150295+00 7033 JTSS009#VS-D3 SPMX-20240815302186 \N \N \N 1 \N [{"file_id": "d8d9c21c-0acc-4158-9885-3fcec9f83064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8faadefe2d649f29cee1cdc15b8e1e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8faadefe2d649f29cee1cdc15b8e1e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8faadefe2d649f29cee1cdc15b8e1e5.jpg", "file_size": 16285, "is_delete": false, "file_type": 1, "original_file_name": "JTSS009#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8faadefe2d649f29cee1cdc15b8e1e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8faadefe2d649f29cee1cdc15b8e1e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8faadefe2d649f29cee1cdc15b8e1e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8faadefe2d649f29cee1cdc15b8e1e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8faadefe2d649f29cee1cdc15b8e1e5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcMC9SHx0FI9wA5uzGKAWQJQSQ0=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.151654+00 2025-12-09 10:14:54.151658+00 7034 80153#领子5 SPMX-20240815302187 \N \N \N 1 \N [{"file_id": "e91a8f77-73a3-4fb6-a1b2-be751ea73bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6b425a599f4664be9a76b1bcf89868.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6b425a599f4664be9a76b1bcf89868.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6b425a599f4664be9a76b1bcf89868.jpg", "file_size": 7319, "is_delete": false, "file_type": 1, "original_file_name": "80153#领子5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b425a599f4664be9a76b1bcf89868.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b425a599f4664be9a76b1bcf89868.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b425a599f4664be9a76b1bcf89868.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6b425a599f4664be9a76b1bcf89868.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6b425a599f4664be9a76b1bcf89868.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvhJ_ODE5ogH72WN456HBA6DJko=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.153059+00 2025-12-09 10:14:54.153063+00 7035 1060#粉色匹布 SPMX-20240815302181 \N \N \N 1 \N [{"file_id": "d2111ac2-ce5b-4b84-ad3f-2e72d943946f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3846722c43b49b6ac2c6a5ea2e3ec65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3846722c43b49b6ac2c6a5ea2e3ec65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3846722c43b49b6ac2c6a5ea2e3ec65.jpg", "file_size": 18746, "is_delete": false, "file_type": 1, "original_file_name": "1060#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3846722c43b49b6ac2c6a5ea2e3ec65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3846722c43b49b6ac2c6a5ea2e3ec65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3846722c43b49b6ac2c6a5ea2e3ec65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3846722c43b49b6ac2c6a5ea2e3ec65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3846722c43b49b6ac2c6a5ea2e3ec65.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NoF83PnxuvXVLm50JaYxGCyHUSg=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.154408+00 2025-12-09 10:14:54.154412+00 7036 C292#绿色 SPMX-20240815302185 \N \N \N 1 \N [{"file_id": "03482a17-5d5e-406a-ba3d-1335e87e9dff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25da1deb555b4c04bdd903b5327f6a22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25da1deb555b4c04bdd903b5327f6a22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25da1deb555b4c04bdd903b5327f6a22.jpg", "file_size": 12616, "is_delete": false, "file_type": 1, "original_file_name": "C292#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25da1deb555b4c04bdd903b5327f6a22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25da1deb555b4c04bdd903b5327f6a22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25da1deb555b4c04bdd903b5327f6a22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25da1deb555b4c04bdd903b5327f6a22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25da1deb555b4c04bdd903b5327f6a22.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTZWYzQnpu46CyX8P_aU9QNTdSs=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.155943+00 2025-12-09 10:14:54.155948+00 7037 LHS0943-4#4号色 SPMX-20240815302188 \N \N \N 1 \N [{"file_id": "ec4cb63d-f47f-414e-9be4-a9bc4c941a48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9def512a2b464cf8b9eb1db44ce1717e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9def512a2b464cf8b9eb1db44ce1717e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9def512a2b464cf8b9eb1db44ce1717e.jpg", "file_size": 56663, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-4#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9def512a2b464cf8b9eb1db44ce1717e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9def512a2b464cf8b9eb1db44ce1717e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9def512a2b464cf8b9eb1db44ce1717e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9def512a2b464cf8b9eb1db44ce1717e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9def512a2b464cf8b9eb1db44ce1717e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZh5kS3eLn2Q5AQA5MaiXR6MgyI=", "createTime": "2024-08-15 14:44:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.157351+00 2025-12-09 10:14:54.157355+00 7038 DK-003-4 SPMX-20240815302204 \N \N \N 1 \N [{"file_id": "5b66f171-b2a8-4390-ba39-06231612ffc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff2eeb64d86346b6839d10638a946446.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff2eeb64d86346b6839d10638a946446.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff2eeb64d86346b6839d10638a946446.jpg", "file_size": 56625, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2eeb64d86346b6839d10638a946446.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2eeb64d86346b6839d10638a946446.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2eeb64d86346b6839d10638a946446.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff2eeb64d86346b6839d10638a946446.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff2eeb64d86346b6839d10638a946446.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uURz73u_7N95b526HdySbJShw9s=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.158723+00 2025-12-09 10:14:54.158727+00 7039 LZ1233#下身2号色 SPMX-20240815302205 \N \N \N 1 \N [{"file_id": "e7fd1b2a-d381-46ee-872a-5277f8bcb797", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dcd01241cad401bb605f153e84c8a7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dcd01241cad401bb605f153e84c8a7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dcd01241cad401bb605f153e84c8a7b.jpg", "file_size": 15758, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcd01241cad401bb605f153e84c8a7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcd01241cad401bb605f153e84c8a7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcd01241cad401bb605f153e84c8a7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dcd01241cad401bb605f153e84c8a7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dcd01241cad401bb605f153e84c8a7b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFvqutSySlcAobht1RJ-rBvshC4=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.160109+00 2025-12-09 10:14:54.160113+00 7040 1060#粉色袖子 SPMX-20240815302193 \N \N \N 1 \N [{"file_id": "d85da50e-989e-4107-803a-9a0ab705fa87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6b6bcda3a62468d863b8f4fea7ff124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6b6bcda3a62468d863b8f4fea7ff124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6b6bcda3a62468d863b8f4fea7ff124.jpg", "file_size": 11228, "is_delete": false, "file_type": 1, "original_file_name": "1060#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6bcda3a62468d863b8f4fea7ff124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6bcda3a62468d863b8f4fea7ff124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6bcda3a62468d863b8f4fea7ff124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6b6bcda3a62468d863b8f4fea7ff124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6b6bcda3a62468d863b8f4fea7ff124.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQ5EqI899T5CItzGQsOToSk7Dqw=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.161514+00 2025-12-09 10:14:54.161519+00 7041 DK-003-4-批布 SPMX-20240815302194 \N \N \N 1 \N [{"file_id": "4634daaf-682f-4943-ae17-a18e834ddd54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8149200914c44df1a85975dc3c1d77ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8149200914c44df1a85975dc3c1d77ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8149200914c44df1a85975dc3c1d77ad.jpg", "file_size": 52811, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8149200914c44df1a85975dc3c1d77ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8149200914c44df1a85975dc3c1d77ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8149200914c44df1a85975dc3c1d77ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8149200914c44df1a85975dc3c1d77ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8149200914c44df1a85975dc3c1d77ad.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p2JTORwYj3i_tPzhhE9vMCT6F1w=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.162882+00 2025-12-09 10:14:54.162886+00 7042 C292#黄色 SPMX-20240815302198 \N \N \N 1 \N [{"file_id": "d783ac5c-61e4-48a9-b58a-254f33956131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0158355359342c4a0087503cbfa944f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0158355359342c4a0087503cbfa944f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0158355359342c4a0087503cbfa944f.jpg", "file_size": 16235, "is_delete": false, "file_type": 1, "original_file_name": "C292#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0158355359342c4a0087503cbfa944f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0158355359342c4a0087503cbfa944f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0158355359342c4a0087503cbfa944f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0158355359342c4a0087503cbfa944f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0158355359342c4a0087503cbfa944f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQ47mJqVufw8v5ykrZKJ_LQaBlQ=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.164243+00 2025-12-09 10:14:54.164248+00 7043 LHS0943-4#5号色 SPMX-20240815302191 \N \N \N 1 \N [{"file_id": "befde617-d960-4ddc-b157-692907e47792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dcc2cd1abd74cad9b9d66fa48fec032.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dcc2cd1abd74cad9b9d66fa48fec032.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dcc2cd1abd74cad9b9d66fa48fec032.jpg", "file_size": 64166, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-4#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcc2cd1abd74cad9b9d66fa48fec032.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcc2cd1abd74cad9b9d66fa48fec032.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcc2cd1abd74cad9b9d66fa48fec032.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dcc2cd1abd74cad9b9d66fa48fec032.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dcc2cd1abd74cad9b9d66fa48fec032.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQZ1mysgcm_ZavMTyG1hhRVVBIk=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.165622+00 2025-12-09 10:14:54.165626+00 7044 80154#枣红 SPMX-20240815302201 \N \N \N 1 \N [{"file_id": "7f68b4e9-b6e1-46b9-991c-e009c9fe1677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b372ba2e3626453090b9e1b56e375b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b372ba2e3626453090b9e1b56e375b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b372ba2e3626453090b9e1b56e375b3b.jpg", "file_size": 11208, "is_delete": false, "file_type": 1, "original_file_name": "80154#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372ba2e3626453090b9e1b56e375b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372ba2e3626453090b9e1b56e375b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372ba2e3626453090b9e1b56e375b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b372ba2e3626453090b9e1b56e375b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b372ba2e3626453090b9e1b56e375b3b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l5L_j2dWzGxcMewsG-pHgi_v2SM=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.166991+00 2025-12-09 10:14:54.166995+00 7045 FHXGPK-063-2 SPMX-20240815302199 \N \N \N 1 \N [{"file_id": "7a2a138a-ee14-4925-955a-1c0244bd1a21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3698befdf40f44a0a7f8916d993bcb10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3698befdf40f44a0a7f8916d993bcb10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3698befdf40f44a0a7f8916d993bcb10.jpg", "file_size": 30545, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-063-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698befdf40f44a0a7f8916d993bcb10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698befdf40f44a0a7f8916d993bcb10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698befdf40f44a0a7f8916d993bcb10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3698befdf40f44a0a7f8916d993bcb10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3698befdf40f44a0a7f8916d993bcb10.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFffGYU2afensyRA9cqZVOJbhrs=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.168559+00 2025-12-09 10:14:54.168563+00 7046 LZ1233#下身1号色 SPMX-20240815302192 \N \N \N 1 \N [{"file_id": "fade91f9-c93d-4c6e-9477-ea4177e28222", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cdf620fb3da4215a14299182113dfb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cdf620fb3da4215a14299182113dfb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cdf620fb3da4215a14299182113dfb0.jpg", "file_size": 16542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdf620fb3da4215a14299182113dfb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdf620fb3da4215a14299182113dfb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdf620fb3da4215a14299182113dfb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cdf620fb3da4215a14299182113dfb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cdf620fb3da4215a14299182113dfb0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1z54zAOiev8mU8yATqbGnRw1LYw=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.170144+00 2025-12-09 10:14:54.170148+00 7047 23-2103#A9前后片4XL SPMX-20240815302195 \N \N \N 1 \N [{"file_id": "353ad291-92e4-43a2-83d9-3da6ff16820d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1ab07ab1cd54150ac1f9aada9a172c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1ab07ab1cd54150ac1f9aada9a172c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1ab07ab1cd54150ac1f9aada9a172c4.jpg", "file_size": 10006, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A9前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ab07ab1cd54150ac1f9aada9a172c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ab07ab1cd54150ac1f9aada9a172c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ab07ab1cd54150ac1f9aada9a172c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1ab07ab1cd54150ac1f9aada9a172c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1ab07ab1cd54150ac1f9aada9a172c4.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mtfyyxwvmKOQSAhJxNFVtzP9eQ4=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.171747+00 2025-12-09 10:14:54.171751+00 7048 80153#黄色 SPMX-20240815302190 \N \N \N 1 \N [{"file_id": "b7f61c2d-522e-4b30-96e9-ead4d2e26adb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4345d76e683b44648d5d13c45d8aa864.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4345d76e683b44648d5d13c45d8aa864.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4345d76e683b44648d5d13c45d8aa864.jpg", "file_size": 9579, "is_delete": false, "file_type": 1, "original_file_name": "80153#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4345d76e683b44648d5d13c45d8aa864.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4345d76e683b44648d5d13c45d8aa864.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4345d76e683b44648d5d13c45d8aa864.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4345d76e683b44648d5d13c45d8aa864.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4345d76e683b44648d5d13c45d8aa864.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjpKb5Exohk0Xp60hfP7Y_fp3k0=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.173329+00 2025-12-09 10:14:54.173334+00 7049 23-2103#A9袖子3XL SPMX-20240815302203 \N \N \N 1 \N [{"file_id": "c0b9a76f-c959-4a1f-87e6-42cf6c1d043d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ad700dba335406494f5c43368331bb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ad700dba335406494f5c43368331bb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ad700dba335406494f5c43368331bb1.jpg", "file_size": 6164, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A9袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad700dba335406494f5c43368331bb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad700dba335406494f5c43368331bb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad700dba335406494f5c43368331bb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ad700dba335406494f5c43368331bb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ad700dba335406494f5c43368331bb1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZIOQFFvC0VA7tcd-J7IClS1UpRM=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.175013+00 2025-12-09 10:14:54.175017+00 7050 JTSS009FW#粉VS-D3 SPMX-20240815302196 \N \N \N 1 \N [{"file_id": "5bb45012-04b4-499f-b1f2-ee52439c8497", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2961ed0af84dcc8214a94b1bc6010b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2961ed0af84dcc8214a94b1bc6010b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2961ed0af84dcc8214a94b1bc6010b.jpg", "file_size": 6846, "is_delete": false, "file_type": 1, "original_file_name": "JTSS009FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2961ed0af84dcc8214a94b1bc6010b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2961ed0af84dcc8214a94b1bc6010b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2961ed0af84dcc8214a94b1bc6010b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2961ed0af84dcc8214a94b1bc6010b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2961ed0af84dcc8214a94b1bc6010b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXyyewlhTWcVuaG21pdS0_pAcYc=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.176657+00 2025-12-09 10:14:54.17666+00 7051 LHS0943-5#彩蓝 SPMX-20240815302202 \N \N \N 1 \N [{"file_id": "1eba59c0-c79e-4fb1-8975-0d306b23e0f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd576a85226a41acb5c4b73e0876fccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd576a85226a41acb5c4b73e0876fccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd576a85226a41acb5c4b73e0876fccd.jpg", "file_size": 19801, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd576a85226a41acb5c4b73e0876fccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd576a85226a41acb5c4b73e0876fccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd576a85226a41acb5c4b73e0876fccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd576a85226a41acb5c4b73e0876fccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd576a85226a41acb5c4b73e0876fccd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgfzIBaWmOSHQAyvJYXIwfeamMs=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.178278+00 2025-12-09 10:14:54.178282+00 7052 HT0101-114#红色 SPMX-20240815302197 \N \N \N 1 \N [{"file_id": "39aa7c27-abc8-4fe2-bd39-08a07d01ddec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg", "file_size": 23688, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-114#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7cf3b4f5eeb46b1972bb6a17520e4bc.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g47vtvhQ7N5dcNIMQDIBz5kVmes=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.179835+00 2025-12-09 10:14:54.179839+00 7053 0003-314#WJC22 SPMX-20240815302200 \N \N \N 1 \N [{"file_id": "79bb33da-18a7-4ef2-be4f-8bad8f913e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e333b95006e2421a9f355ffadb3b8581.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e333b95006e2421a9f355ffadb3b8581.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e333b95006e2421a9f355ffadb3b8581.jpg", "file_size": 20830, "is_delete": false, "file_type": 1, "original_file_name": "0003-314#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e333b95006e2421a9f355ffadb3b8581.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e333b95006e2421a9f355ffadb3b8581.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e333b95006e2421a9f355ffadb3b8581.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e333b95006e2421a9f355ffadb3b8581.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e333b95006e2421a9f355ffadb3b8581.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fIa4FRPLl8515tzAI45gf419lw4=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.181211+00 2025-12-09 10:14:54.181215+00 7054 0003-315#WJC22 SPMX-20240815302209 \N \N \N 1 \N [{"file_id": "9b5af99e-b093-42b8-848b-66e17021bce4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "517fe2d6167a473e94a804d9cf448605.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "517fe2d6167a473e94a804d9cf448605.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "517fe2d6167a473e94a804d9cf448605.jpg", "file_size": 15477, "is_delete": false, "file_type": 1, "original_file_name": "0003-315#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517fe2d6167a473e94a804d9cf448605.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517fe2d6167a473e94a804d9cf448605.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517fe2d6167a473e94a804d9cf448605.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/517fe2d6167a473e94a804d9cf448605.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/517fe2d6167a473e94a804d9cf448605.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dD4QEkBwiPqRoVo9DAruS7Nhy00=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.182581+00 2025-12-09 10:14:54.182586+00 7055 C295#原版色 SPMX-20240815302210 \N \N \N 1 \N [{"file_id": "1e2c921b-eac6-4062-ab02-daaf582eb654", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9d3fc8cd73840b6945f476f9d92046e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9d3fc8cd73840b6945f476f9d92046e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9d3fc8cd73840b6945f476f9d92046e.jpg", "file_size": 29449, "is_delete": false, "file_type": 1, "original_file_name": "C295#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d3fc8cd73840b6945f476f9d92046e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d3fc8cd73840b6945f476f9d92046e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d3fc8cd73840b6945f476f9d92046e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9d3fc8cd73840b6945f476f9d92046e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9d3fc8cd73840b6945f476f9d92046e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F8KOgqFb_Ty-Z6oWTGC_FiEeP1o=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.183979+00 2025-12-09 10:14:54.183983+00 7056 FHXGPK-063-3 SPMX-20240815302211 \N \N \N 1 \N [{"file_id": "097cc6dd-6e12-424e-ab07-bb8791bc44c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcd735f9c01b4d0a97e8a30d64f6da89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcd735f9c01b4d0a97e8a30d64f6da89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcd735f9c01b4d0a97e8a30d64f6da89.jpg", "file_size": 29713, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-063-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd735f9c01b4d0a97e8a30d64f6da89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd735f9c01b4d0a97e8a30d64f6da89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd735f9c01b4d0a97e8a30d64f6da89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcd735f9c01b4d0a97e8a30d64f6da89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcd735f9c01b4d0a97e8a30d64f6da89.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOV-h4c_61HiitY4GFao7GNOmdA=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.185383+00 2025-12-09 10:14:54.185387+00 7057 HT0101-114#蓝色 SPMX-20240815302208 \N \N \N 1 \N [{"file_id": "f6ae53cf-9d90-4b5d-b7b0-7e3771d6b12f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbd203c1d0224f179358e44c9e89db4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbd203c1d0224f179358e44c9e89db4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbd203c1d0224f179358e44c9e89db4a.jpg", "file_size": 23425, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-114#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd203c1d0224f179358e44c9e89db4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd203c1d0224f179358e44c9e89db4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd203c1d0224f179358e44c9e89db4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbd203c1d0224f179358e44c9e89db4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbd203c1d0224f179358e44c9e89db4a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gq6oe_UONJ3jTrkf8YXOSnhTMvc=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.186758+00 2025-12-09 10:14:54.186762+00 7058 JTSS009FW#蓝VS-D3 SPMX-20240815302206 \N \N \N 1 \N [{"file_id": "233cdb23-6cd4-4a47-b14b-e40940d1bc2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a110ffdd6174768a4612cfbfecd5fe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a110ffdd6174768a4612cfbfecd5fe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a110ffdd6174768a4612cfbfecd5fe2.jpg", "file_size": 6824, "is_delete": false, "file_type": 1, "original_file_name": "JTSS009FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a110ffdd6174768a4612cfbfecd5fe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a110ffdd6174768a4612cfbfecd5fe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a110ffdd6174768a4612cfbfecd5fe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a110ffdd6174768a4612cfbfecd5fe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a110ffdd6174768a4612cfbfecd5fe2.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GsUWzKlvbGrkBaUL0Hlbc3O1AM=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.188122+00 2025-12-09 10:14:54.188126+00 7059 1060#青色 SPMX-20240815302207 \N \N \N 1 \N [{"file_id": "9e493284-69bb-4628-850c-554b1b92d5e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e507e87d568b416fb784123a79677b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e507e87d568b416fb784123a79677b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e507e87d568b416fb784123a79677b0c.jpg", "file_size": 20616, "is_delete": false, "file_type": 1, "original_file_name": "1060#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e507e87d568b416fb784123a79677b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e507e87d568b416fb784123a79677b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e507e87d568b416fb784123a79677b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e507e87d568b416fb784123a79677b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e507e87d568b416fb784123a79677b0c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxRzjoZVq8EdWkESipG91jHoNf0=", "createTime": "2024-08-15 14:44:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.189485+00 2025-12-09 10:14:54.18949+00 7060 DK-003-批布 SPMX-20240815302214 \N \N \N 1 \N [{"file_id": "6d3eaf81-17d6-43a0-bdae-42739c35d213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2a442304cb426aa78edc8017e15c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2a442304cb426aa78edc8017e15c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2a442304cb426aa78edc8017e15c13.jpg", "file_size": 59819, "is_delete": false, "file_type": 1, "original_file_name": "DK-003-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2a442304cb426aa78edc8017e15c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2a442304cb426aa78edc8017e15c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2a442304cb426aa78edc8017e15c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2a442304cb426aa78edc8017e15c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2a442304cb426aa78edc8017e15c13.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S30wjJfJNjHlyU3as_2Ewhw_k1A=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.190848+00 2025-12-09 10:14:54.190852+00 7061 LHS0943-5#深绿 SPMX-20240815302224 \N \N \N 1 \N [{"file_id": "1ad28dab-7945-4b61-9013-d61f09b7f59c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a79e0fdbae5b4887b9f68db926487938.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a79e0fdbae5b4887b9f68db926487938.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a79e0fdbae5b4887b9f68db926487938.jpg", "file_size": 19622, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#深绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79e0fdbae5b4887b9f68db926487938.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79e0fdbae5b4887b9f68db926487938.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79e0fdbae5b4887b9f68db926487938.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a79e0fdbae5b4887b9f68db926487938.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a79e0fdbae5b4887b9f68db926487938.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9hPapLrRTjqVuBmbRht3CAc8gzI=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.192238+00 2025-12-09 10:14:54.192242+00 7062 80154#蓝色 SPMX-20240815302223 \N \N \N 1 \N [{"file_id": "b1bc54d3-49df-4b27-841a-7cef4f3cb475", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2208202d2831474591a62a5da2551573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2208202d2831474591a62a5da2551573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2208202d2831474591a62a5da2551573.jpg", "file_size": 10956, "is_delete": false, "file_type": 1, "original_file_name": "80154#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208202d2831474591a62a5da2551573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208202d2831474591a62a5da2551573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208202d2831474591a62a5da2551573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2208202d2831474591a62a5da2551573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2208202d2831474591a62a5da2551573.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJ97nlFexaAVgp3EKIqMKprNNIo=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.193596+00 2025-12-09 10:14:54.1936+00 7063 0003-316#12公分版本 SPMX-20240815302221 \N \N \N 1 \N [{"file_id": "581e3dce-37b6-45a2-9105-ecf785f63152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95d31b7d9fcd461ea3a35dc5a890e463.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95d31b7d9fcd461ea3a35dc5a890e463.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95d31b7d9fcd461ea3a35dc5a890e463.jpg", "file_size": 14492, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#12公分版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d31b7d9fcd461ea3a35dc5a890e463.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d31b7d9fcd461ea3a35dc5a890e463.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d31b7d9fcd461ea3a35dc5a890e463.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95d31b7d9fcd461ea3a35dc5a890e463.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95d31b7d9fcd461ea3a35dc5a890e463.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HuFcAfYTkDaAasrZZeBAqtUHDEY=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.194979+00 2025-12-09 10:14:54.194983+00 7064 FHXGPK-063-4 SPMX-20240815302222 \N \N \N 1 \N [{"file_id": "6c913e49-c318-477e-a08d-1b9548f54a7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6d789fcfde04fda9176d990da895f0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6d789fcfde04fda9176d990da895f0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6d789fcfde04fda9176d990da895f0b.jpg", "file_size": 30912, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-063-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d789fcfde04fda9176d990da895f0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d789fcfde04fda9176d990da895f0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d789fcfde04fda9176d990da895f0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6d789fcfde04fda9176d990da895f0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6d789fcfde04fda9176d990da895f0b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DC9Ps6LieyUH1LOPYVXL62OKw8c=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.196342+00 2025-12-09 10:14:54.196346+00 7065 80154#橙色 SPMX-20240815302212 \N \N \N 1 \N [{"file_id": "a850151d-2f04-4a1f-ae27-ea9236ba5ce6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e69b19a6e418483aa84d2fe09d890661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e69b19a6e418483aa84d2fe09d890661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e69b19a6e418483aa84d2fe09d890661.jpg", "file_size": 11245, "is_delete": false, "file_type": 1, "original_file_name": "80154#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e69b19a6e418483aa84d2fe09d890661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e69b19a6e418483aa84d2fe09d890661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e69b19a6e418483aa84d2fe09d890661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e69b19a6e418483aa84d2fe09d890661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e69b19a6e418483aa84d2fe09d890661.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXRQNOCczPtuOKdFsAqV0ktsl4Y=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.19776+00 2025-12-09 10:14:54.197764+00 7066 HT0101-115#A1 SPMX-20240815302218 \N \N \N 1 \N [{"file_id": "ee5b82f1-78c5-4ac9-8382-c15822d07a76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b40c60cbee054c719e5f7480d20886cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b40c60cbee054c719e5f7480d20886cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b40c60cbee054c719e5f7480d20886cb.jpg", "file_size": 22547, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40c60cbee054c719e5f7480d20886cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40c60cbee054c719e5f7480d20886cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40c60cbee054c719e5f7480d20886cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b40c60cbee054c719e5f7480d20886cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b40c60cbee054c719e5f7480d20886cb.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xO3aW4VCO4yqFGxjaamakfivmc8=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.19918+00 2025-12-09 10:14:54.199185+00 7067 JTSS010#VS-D3 SPMX-20240815302216 \N \N \N 1 \N [{"file_id": "3cfccb4c-ee22-41ad-987b-f749c6f4d238", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391380655f7443d3822f8512505b193d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391380655f7443d3822f8512505b193d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391380655f7443d3822f8512505b193d.jpg", "file_size": 12446, "is_delete": false, "file_type": 1, "original_file_name": "JTSS010#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391380655f7443d3822f8512505b193d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391380655f7443d3822f8512505b193d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391380655f7443d3822f8512505b193d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391380655f7443d3822f8512505b193d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391380655f7443d3822f8512505b193d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lgOL5kHxueVKNnwfaAbfPS_7EyQ=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.200561+00 2025-12-09 10:14:54.200565+00 7068 1060#青色匹布 SPMX-20240815302217 \N \N \N 1 \N [{"file_id": "23b9164d-2e19-4663-a4ee-ed8d059379a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa6222602a114d18935d55c0efb335f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa6222602a114d18935d55c0efb335f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa6222602a114d18935d55c0efb335f5.jpg", "file_size": 19769, "is_delete": false, "file_type": 1, "original_file_name": "1060#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6222602a114d18935d55c0efb335f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6222602a114d18935d55c0efb335f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa6222602a114d18935d55c0efb335f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa6222602a114d18935d55c0efb335f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa6222602a114d18935d55c0efb335f5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKyNV39swJmhv0Pn5blcTf2XMPA=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.201941+00 2025-12-09 10:14:54.201945+00 7069 LZ1233#下身3号色 SPMX-20240815302219 \N \N \N 1 \N [{"file_id": "f051eda9-d9c9-48b4-86f4-2cab139d7952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "930832d7bd7a43eb9494dc05a635bd2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "930832d7bd7a43eb9494dc05a635bd2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "930832d7bd7a43eb9494dc05a635bd2a.jpg", "file_size": 16859, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930832d7bd7a43eb9494dc05a635bd2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930832d7bd7a43eb9494dc05a635bd2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930832d7bd7a43eb9494dc05a635bd2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/930832d7bd7a43eb9494dc05a635bd2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/930832d7bd7a43eb9494dc05a635bd2a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ziNm0wbYQXznRMME04_nUK4QQY=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.203293+00 2025-12-09 10:14:54.203297+00 7070 LHS0943-5#暗紫 SPMX-20240815302213 \N \N \N 1 \N [{"file_id": "c4ae4eb9-0535-42be-a0b5-361dc02e4819", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eddaf679f364f5396ae2b614d16c028.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eddaf679f364f5396ae2b614d16c028.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eddaf679f364f5396ae2b614d16c028.jpg", "file_size": 18891, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#暗紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eddaf679f364f5396ae2b614d16c028.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eddaf679f364f5396ae2b614d16c028.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eddaf679f364f5396ae2b614d16c028.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eddaf679f364f5396ae2b614d16c028.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eddaf679f364f5396ae2b614d16c028.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iURouJP_H2DeALjk7uLO--zz4jw=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.204687+00 2025-12-09 10:14:54.204691+00 7071 23-2103#A9袖子4XL SPMX-20240815302215 \N \N \N 1 \N [{"file_id": "b05dc94b-b1b7-484e-b941-b59f64f577a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a35e9f18c7304baea379aa673092b8a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a35e9f18c7304baea379aa673092b8a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a35e9f18c7304baea379aa673092b8a7.jpg", "file_size": 7395, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A9袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35e9f18c7304baea379aa673092b8a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35e9f18c7304baea379aa673092b8a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35e9f18c7304baea379aa673092b8a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a35e9f18c7304baea379aa673092b8a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a35e9f18c7304baea379aa673092b8a7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_z_aUWslH7emffy34xopgTHoOM=", "createTime": "2024-08-15 14:44:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.206057+00 2025-12-09 10:14:54.206061+00 7072 C295#彩兰 SPMX-20240815302220 \N \N \N 1 \N [{"file_id": "6d4ea63f-c0c9-48d8-9d03-ffe8d83b926a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee701f679724583b1934821c63cbbc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee701f679724583b1934821c63cbbc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee701f679724583b1934821c63cbbc9.jpg", "file_size": 31508, "is_delete": false, "file_type": 1, "original_file_name": "C295#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee701f679724583b1934821c63cbbc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee701f679724583b1934821c63cbbc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee701f679724583b1934821c63cbbc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee701f679724583b1934821c63cbbc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee701f679724583b1934821c63cbbc9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XaFk3JrgfqyD9ucd5zKGP-rvoZU=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.207435+00 2025-12-09 10:14:54.207439+00 7073 LZ1233#下身4号色 SPMX-20240815302227 \N \N \N 1 \N [{"file_id": "27958c1a-dbed-40eb-a601-9373c55a4fd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fc3d758007844ada001df1dc5bed0b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fc3d758007844ada001df1dc5bed0b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fc3d758007844ada001df1dc5bed0b7.jpg", "file_size": 16102, "is_delete": false, "file_type": 1, "original_file_name": "LZ1233#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc3d758007844ada001df1dc5bed0b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc3d758007844ada001df1dc5bed0b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc3d758007844ada001df1dc5bed0b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fc3d758007844ada001df1dc5bed0b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fc3d758007844ada001df1dc5bed0b7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcVD6vyov3RVLWoNmoTBiPmDgOY=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.208794+00 2025-12-09 10:14:54.208798+00 7074 C295#橙色 SPMX-20240815302234 \N \N \N 1 \N [{"file_id": "8e4483e5-c892-4ad9-a23b-5b89492bb384", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fa6276a656741caa20a884eb2f9c5fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fa6276a656741caa20a884eb2f9c5fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fa6276a656741caa20a884eb2f9c5fa.jpg", "file_size": 27746, "is_delete": false, "file_type": 1, "original_file_name": "C295#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa6276a656741caa20a884eb2f9c5fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa6276a656741caa20a884eb2f9c5fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa6276a656741caa20a884eb2f9c5fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fa6276a656741caa20a884eb2f9c5fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fa6276a656741caa20a884eb2f9c5fa.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTKrVkPBPhuTc20SAede-7BKj-0=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.210183+00 2025-12-09 10:14:54.210187+00 7075 HT0101-115#A2 SPMX-20240815302226 \N \N \N 1 \N [{"file_id": "6c10a582-fd1e-4bbd-b7ee-2112c2d7de93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceb55195a56640fa82e2ec511d47eeed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceb55195a56640fa82e2ec511d47eeed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceb55195a56640fa82e2ec511d47eeed.jpg", "file_size": 21446, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb55195a56640fa82e2ec511d47eeed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb55195a56640fa82e2ec511d47eeed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb55195a56640fa82e2ec511d47eeed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceb55195a56640fa82e2ec511d47eeed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceb55195a56640fa82e2ec511d47eeed.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtRoAq7divgmJdn2Lb66X7XlBaU=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.211557+00 2025-12-09 10:14:54.211562+00 7076 LHS0943-5#灰色 SPMX-20240815302236 \N \N \N 1 \N [{"file_id": "361b4d56-6d98-438b-9519-1434c90395e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87cab55c499a41939490a6686f93ef1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87cab55c499a41939490a6686f93ef1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87cab55c499a41939490a6686f93ef1d.jpg", "file_size": 17877, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87cab55c499a41939490a6686f93ef1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87cab55c499a41939490a6686f93ef1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87cab55c499a41939490a6686f93ef1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87cab55c499a41939490a6686f93ef1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87cab55c499a41939490a6686f93ef1d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-enoPe4MdJroZlJliaE_34ZwYWs=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.212922+00 2025-12-09 10:14:54.212926+00 7077 LZ1234#1号色 SPMX-20240815302237 \N \N \N 1 \N [{"file_id": "8253ee44-d85c-4c2c-93da-3fa6520fffe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb4710f3a81e4a7f992a8bf32dfff120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb4710f3a81e4a7f992a8bf32dfff120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb4710f3a81e4a7f992a8bf32dfff120.jpg", "file_size": 11865, "is_delete": false, "file_type": 1, "original_file_name": "LZ1234#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4710f3a81e4a7f992a8bf32dfff120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4710f3a81e4a7f992a8bf32dfff120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4710f3a81e4a7f992a8bf32dfff120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb4710f3a81e4a7f992a8bf32dfff120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb4710f3a81e4a7f992a8bf32dfff120.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEspB6Azrhmz0YsGCD-yTkNKBtM=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.214309+00 2025-12-09 10:14:54.214314+00 7078 23-2103#A9领子通用 SPMX-20240815302225 \N \N \N 1 \N [{"file_id": "04a903e1-ec30-4b03-9c14-6a4ca1a2f786", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00c1176ae8aa48d6b23e8784961bbab3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00c1176ae8aa48d6b23e8784961bbab3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00c1176ae8aa48d6b23e8784961bbab3.jpg", "file_size": 8273, "is_delete": false, "file_type": 1, "original_file_name": "23-2103#A9领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1176ae8aa48d6b23e8784961bbab3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1176ae8aa48d6b23e8784961bbab3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1176ae8aa48d6b23e8784961bbab3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00c1176ae8aa48d6b23e8784961bbab3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00c1176ae8aa48d6b23e8784961bbab3.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f8jQnYpzEdKfObzBAYRfC6ABT2Q=", "createTime": "2024-08-15 14:44:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.215663+00 2025-12-09 10:14:54.215667+00 7079 JTSS010FW#VS-D3 SPMX-20240815302230 \N \N \N 1 \N [{"file_id": "7b679fb8-cc79-41e5-b910-f52f8f2fa49b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d625de126bb8469c893d005e0c624026.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d625de126bb8469c893d005e0c624026.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d625de126bb8469c893d005e0c624026.jpg", "file_size": 6526, "is_delete": false, "file_type": 1, "original_file_name": "JTSS010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d625de126bb8469c893d005e0c624026.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d625de126bb8469c893d005e0c624026.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d625de126bb8469c893d005e0c624026.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d625de126bb8469c893d005e0c624026.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d625de126bb8469c893d005e0c624026.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRYKFuXpTcf-CoOKUiwPF-W7m7M=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.217047+00 2025-12-09 10:14:54.217052+00 7080 HT0101-115#A3 SPMX-20240815302238 \N \N \N 1 \N [{"file_id": "89830b79-a23b-4b3d-96fd-ec1579bc2f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d27e710e17e0433a81b4c693f57d16a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d27e710e17e0433a81b4c693f57d16a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d27e710e17e0433a81b4c693f57d16a3.jpg", "file_size": 25241, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27e710e17e0433a81b4c693f57d16a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27e710e17e0433a81b4c693f57d16a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27e710e17e0433a81b4c693f57d16a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d27e710e17e0433a81b4c693f57d16a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d27e710e17e0433a81b4c693f57d16a3.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfyFB4vTM6NUFFLhyW6Hrz4crsA=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.218418+00 2025-12-09 10:14:54.218423+00 7081 DK-003 SPMX-20240815302228 \N \N \N 1 \N [{"file_id": "26875f09-c710-40db-b244-2272a64abec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1972a2b38d0d4177b420ed335f4e4305.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1972a2b38d0d4177b420ed335f4e4305.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1972a2b38d0d4177b420ed335f4e4305.jpg", "file_size": 62515, "is_delete": false, "file_type": 1, "original_file_name": "DK-003.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972a2b38d0d4177b420ed335f4e4305.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972a2b38d0d4177b420ed335f4e4305.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972a2b38d0d4177b420ed335f4e4305.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1972a2b38d0d4177b420ed335f4e4305.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1972a2b38d0d4177b420ed335f4e4305.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mf2NJk-HxLZs1cIwiU7Z4BhAhX0=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.219801+00 2025-12-09 10:14:54.219806+00 7082 0003-316#18公分版本 SPMX-20240815302231 \N \N \N 1 \N [{"file_id": "8695dc86-fad3-43ca-b400-9d65e092176f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8875c60a48eb4d1fa6cd624b99b94f01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8875c60a48eb4d1fa6cd624b99b94f01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8875c60a48eb4d1fa6cd624b99b94f01.jpg", "file_size": 13819, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#18公分版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8875c60a48eb4d1fa6cd624b99b94f01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8875c60a48eb4d1fa6cd624b99b94f01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8875c60a48eb4d1fa6cd624b99b94f01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8875c60a48eb4d1fa6cd624b99b94f01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8875c60a48eb4d1fa6cd624b99b94f01.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2bWBGRmaaADeYWZVo75mpGtEd4M=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.221163+00 2025-12-09 10:14:54.221167+00 7083 1061# SPMX-20240815302239 \N \N \N 1 \N [{"file_id": "3f923a9d-1bf0-46d7-96d8-988497e8099b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5adc094df14843d7a7c2a072499e3842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5adc094df14843d7a7c2a072499e3842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5adc094df14843d7a7c2a072499e3842.jpg", "file_size": 8047, "is_delete": false, "file_type": 1, "original_file_name": "1061#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adc094df14843d7a7c2a072499e3842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adc094df14843d7a7c2a072499e3842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adc094df14843d7a7c2a072499e3842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5adc094df14843d7a7c2a072499e3842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5adc094df14843d7a7c2a072499e3842.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqUC0ruep1KVvoP6ND4QsP9t0Z0=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.222533+00 2025-12-09 10:14:54.222537+00 7084 FHXGPK-063-5 SPMX-20240815302233 \N \N \N 1 \N [{"file_id": "8bb6ae21-a104-43f1-825e-972ac6099e51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c04634da365f45a88bc06ab099cbb263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c04634da365f45a88bc06ab099cbb263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c04634da365f45a88bc06ab099cbb263.jpg", "file_size": 30138, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-063-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04634da365f45a88bc06ab099cbb263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04634da365f45a88bc06ab099cbb263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04634da365f45a88bc06ab099cbb263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c04634da365f45a88bc06ab099cbb263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c04634da365f45a88bc06ab099cbb263.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YxuZLwJ09ZKHgxEFZxCJAjnHc3k=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.223939+00 2025-12-09 10:14:54.223944+00 7085 23-2103伊#A7前后片3XL SPMX-20240815302235 \N \N \N 1 \N [{"file_id": "63bbfd8a-989b-4616-bec7-e06335aec9b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b56cd150fc2c49d4818982433d131105.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b56cd150fc2c49d4818982433d131105.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b56cd150fc2c49d4818982433d131105.jpg", "file_size": 9359, "is_delete": false, "file_type": 1, "original_file_name": "23-2103伊#A7前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cd150fc2c49d4818982433d131105.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cd150fc2c49d4818982433d131105.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cd150fc2c49d4818982433d131105.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b56cd150fc2c49d4818982433d131105.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b56cd150fc2c49d4818982433d131105.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zg5al8kaVWjqC_PkMX62QePbByI=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.225322+00 2025-12-09 10:14:54.225326+00 7086 1060#青色袖子 SPMX-20240815302229 \N \N \N 1 \N [{"file_id": "8b4e6e29-ae2c-4613-852e-9f6662f7e2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "145adb06032f43b292daecb4ef0d4437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "145adb06032f43b292daecb4ef0d4437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "145adb06032f43b292daecb4ef0d4437.jpg", "file_size": 11595, "is_delete": false, "file_type": 1, "original_file_name": "1060#青色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145adb06032f43b292daecb4ef0d4437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145adb06032f43b292daecb4ef0d4437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145adb06032f43b292daecb4ef0d4437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/145adb06032f43b292daecb4ef0d4437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/145adb06032f43b292daecb4ef0d4437.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48Yu89EYKYycR9z7oEB-P2x0ZDw=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.226691+00 2025-12-09 10:14:54.226695+00 7087 80154#领子1 SPMX-20240815302232 \N \N \N 1 \N [{"file_id": "08653130-8e0a-4e52-9517-bf4a0599feb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "181dab8553684072b70dae00e013bd3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "181dab8553684072b70dae00e013bd3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "181dab8553684072b70dae00e013bd3e.jpg", "file_size": 6876, "is_delete": false, "file_type": 1, "original_file_name": "80154#领子1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181dab8553684072b70dae00e013bd3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181dab8553684072b70dae00e013bd3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181dab8553684072b70dae00e013bd3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/181dab8553684072b70dae00e013bd3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/181dab8553684072b70dae00e013bd3e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhJkAVI01MqHsR3loExYQc2Uu4o=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.228062+00 2025-12-09 10:14:54.228066+00 7088 LZ1234#2号色 SPMX-20240815302245 \N \N \N 1 \N [{"file_id": "63be6091-63ee-4698-844e-94ac75b9905e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc60a9ebd13846ea822ed14eeeaed5da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc60a9ebd13846ea822ed14eeeaed5da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc60a9ebd13846ea822ed14eeeaed5da.jpg", "file_size": 11459, "is_delete": false, "file_type": 1, "original_file_name": "LZ1234#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc60a9ebd13846ea822ed14eeeaed5da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc60a9ebd13846ea822ed14eeeaed5da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc60a9ebd13846ea822ed14eeeaed5da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc60a9ebd13846ea822ed14eeeaed5da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc60a9ebd13846ea822ed14eeeaed5da.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-kbQ4PFyp3OqEOMvaYZs_8iZlo=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.229471+00 2025-12-09 10:14:54.229475+00 7089 80154#领子2 SPMX-20240815302242 \N \N \N 1 \N [{"file_id": "40efdff6-5220-4e4c-aec8-bd0d389baad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc33585ac12d4b669176c8d784ce28e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc33585ac12d4b669176c8d784ce28e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc33585ac12d4b669176c8d784ce28e9.jpg", "file_size": 7207, "is_delete": false, "file_type": 1, "original_file_name": "80154#领子2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc33585ac12d4b669176c8d784ce28e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc33585ac12d4b669176c8d784ce28e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc33585ac12d4b669176c8d784ce28e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc33585ac12d4b669176c8d784ce28e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc33585ac12d4b669176c8d784ce28e9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MydpJ0UVNZpVAzMlcxIQtYZoL4=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.23086+00 2025-12-09 10:14:54.230864+00 7090 JTSS011#VS-D3 SPMX-20240815302241 \N \N \N 1 \N [{"file_id": "14870f21-900b-404f-a1f1-934bfcced2a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7e6e23b384d44c2bc341530d08c9c00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7e6e23b384d44c2bc341530d08c9c00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7e6e23b384d44c2bc341530d08c9c00.jpg", "file_size": 17402, "is_delete": false, "file_type": 1, "original_file_name": "JTSS011#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e6e23b384d44c2bc341530d08c9c00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e6e23b384d44c2bc341530d08c9c00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e6e23b384d44c2bc341530d08c9c00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7e6e23b384d44c2bc341530d08c9c00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7e6e23b384d44c2bc341530d08c9c00.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gt2woJEViKn-icoPBQGygPID96c=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.232219+00 2025-12-09 10:14:54.232223+00 7091 FHXGPK-064-1 SPMX-20240815302246 \N \N \N 1 \N [{"file_id": "c5adb66c-8b1d-4673-9818-00672067d853", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b04981469e28401e952eb943a68e39f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b04981469e28401e952eb943a68e39f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b04981469e28401e952eb943a68e39f1.jpg", "file_size": 37867, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-064-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04981469e28401e952eb943a68e39f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04981469e28401e952eb943a68e39f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04981469e28401e952eb943a68e39f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b04981469e28401e952eb943a68e39f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b04981469e28401e952eb943a68e39f1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W5OvPkVbz4t87rtbtk_2DMhWvls=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.233563+00 2025-12-09 10:14:54.233567+00 7092 DK-004-1 SPMX-20240815302240 \N \N \N 1 \N [{"file_id": "1e626829-4956-4110-8bb7-a26d3d6f9cf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59a6cbcde48f47a6b4a0d68a62e65391.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59a6cbcde48f47a6b4a0d68a62e65391.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59a6cbcde48f47a6b4a0d68a62e65391.jpg", "file_size": 60553, "is_delete": false, "file_type": 1, "original_file_name": "DK-004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a6cbcde48f47a6b4a0d68a62e65391.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a6cbcde48f47a6b4a0d68a62e65391.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a6cbcde48f47a6b4a0d68a62e65391.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59a6cbcde48f47a6b4a0d68a62e65391.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59a6cbcde48f47a6b4a0d68a62e65391.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HNu_fTW2bzLDzERbgTMXWUdRhdY=", "createTime": "2024-08-15 14:44:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.234943+00 2025-12-09 10:14:54.234947+00 7093 C295#红色 SPMX-20240815302243 \N \N \N 1 \N [{"file_id": "0bc6f478-e1d1-430c-960f-bd548f6d55e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c069517dfe47519840bb6dc533099d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c069517dfe47519840bb6dc533099d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c069517dfe47519840bb6dc533099d.jpg", "file_size": 29877, "is_delete": false, "file_type": 1, "original_file_name": "C295#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c069517dfe47519840bb6dc533099d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c069517dfe47519840bb6dc533099d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c069517dfe47519840bb6dc533099d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c069517dfe47519840bb6dc533099d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c069517dfe47519840bb6dc533099d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwL1dJlc2PUyKIlVThUyY6sGFi8=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.236341+00 2025-12-09 10:14:54.236345+00 7094 0003-316#宝蓝 SPMX-20240815302244 \N \N \N 1 \N [{"file_id": "eb5f91ba-eefc-4907-abe3-b5cd8144942c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e9efa6b6adf4cfaa75ce475165eda77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e9efa6b6adf4cfaa75ce475165eda77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e9efa6b6adf4cfaa75ce475165eda77.jpg", "file_size": 20220, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9efa6b6adf4cfaa75ce475165eda77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9efa6b6adf4cfaa75ce475165eda77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9efa6b6adf4cfaa75ce475165eda77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e9efa6b6adf4cfaa75ce475165eda77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e9efa6b6adf4cfaa75ce475165eda77.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OpSr3ngqLy1KVDuV7UWms95WeU=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.23771+00 2025-12-09 10:14:54.237714+00 7095 FHXGPK-064-2 SPMX-20240815302257 \N \N \N 1 \N [{"file_id": "e214d751-a17c-45ad-9af5-7debcd4cbe31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fed5dc6ef9e54442a4dce4b96922de3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fed5dc6ef9e54442a4dce4b96922de3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fed5dc6ef9e54442a4dce4b96922de3b.jpg", "file_size": 41449, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-064-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed5dc6ef9e54442a4dce4b96922de3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed5dc6ef9e54442a4dce4b96922de3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed5dc6ef9e54442a4dce4b96922de3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fed5dc6ef9e54442a4dce4b96922de3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fed5dc6ef9e54442a4dce4b96922de3b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7vZ66E2EVnkFc-mY4ROv_KJWFE=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.239248+00 2025-12-09 10:14:54.239252+00 7096 80154#领子4 SPMX-20240815302263 \N \N \N 1 \N [{"file_id": "4ae50423-aaa4-4fd9-b555-78f3e1737147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09399af0f5940d08d3e00c25d95325b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09399af0f5940d08d3e00c25d95325b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09399af0f5940d08d3e00c25d95325b.jpg", "file_size": 6733, "is_delete": false, "file_type": 1, "original_file_name": "80154#领子4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09399af0f5940d08d3e00c25d95325b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09399af0f5940d08d3e00c25d95325b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09399af0f5940d08d3e00c25d95325b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09399af0f5940d08d3e00c25d95325b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09399af0f5940d08d3e00c25d95325b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gH8r-5CUVd7T7mi1_e-cEXUZjmE=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.242045+00 2025-12-09 10:14:54.242049+00 7098 80154#领子3 SPMX-20240815302253 \N \N \N 1 \N [{"file_id": "e02099de-9c77-4837-b594-2eadc78b3b9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9187e5e1283f471c9c7fb8ccbaf53690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9187e5e1283f471c9c7fb8ccbaf53690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9187e5e1283f471c9c7fb8ccbaf53690.jpg", "file_size": 6514, "is_delete": false, "file_type": 1, "original_file_name": "80154#领子3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9187e5e1283f471c9c7fb8ccbaf53690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9187e5e1283f471c9c7fb8ccbaf53690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9187e5e1283f471c9c7fb8ccbaf53690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9187e5e1283f471c9c7fb8ccbaf53690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9187e5e1283f471c9c7fb8ccbaf53690.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9qGp1PnFCpepeR566gKZoYlImk=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.24346+00 2025-12-09 10:14:54.243465+00 7099 HT0101-115#A4 SPMX-20240815302247 \N \N \N 1 \N [{"file_id": "28fd120e-57b4-4dfd-b766-5976f5a5665d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1620512fca93478e90823ef53194dc68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1620512fca93478e90823ef53194dc68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1620512fca93478e90823ef53194dc68.jpg", "file_size": 21430, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620512fca93478e90823ef53194dc68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620512fca93478e90823ef53194dc68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620512fca93478e90823ef53194dc68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1620512fca93478e90823ef53194dc68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1620512fca93478e90823ef53194dc68.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LY33TfjBnMDFYa2vFD599mXbZBw=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.245155+00 2025-12-09 10:14:54.24516+00 7100 LHS0943-5#玫红 SPMX-20240815302252 \N \N \N 1 \N [{"file_id": "011bf871-30fc-46e0-ad98-74fc95b0cbc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7455a892e505493d8660e4b1b87d860b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7455a892e505493d8660e4b1b87d860b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7455a892e505493d8660e4b1b87d860b.jpg", "file_size": 20141, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7455a892e505493d8660e4b1b87d860b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7455a892e505493d8660e4b1b87d860b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7455a892e505493d8660e4b1b87d860b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7455a892e505493d8660e4b1b87d860b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7455a892e505493d8660e4b1b87d860b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ui7eUX1tPKhxsHBEbYlanUfi5dg=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.246524+00 2025-12-09 10:14:54.246528+00 7101 DK-004-3 SPMX-20240815302261 \N \N \N 1 \N [{"file_id": "581ce209-9f84-4ad1-9a79-fc4dc1048f23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a0403347694279b6ffd3908c9d9c1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a0403347694279b6ffd3908c9d9c1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a0403347694279b6ffd3908c9d9c1a.jpg", "file_size": 66266, "is_delete": false, "file_type": 1, "original_file_name": "DK-004-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a0403347694279b6ffd3908c9d9c1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a0403347694279b6ffd3908c9d9c1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a0403347694279b6ffd3908c9d9c1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a0403347694279b6ffd3908c9d9c1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a0403347694279b6ffd3908c9d9c1a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-JCjqzyzle6RfmQWxhsmuHfUiDM=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.24791+00 2025-12-09 10:14:54.247914+00 7102 C295#绿色 SPMX-20240815302255 \N \N \N 1 \N [{"file_id": "7b3db14d-a600-425b-bd76-8aed2350a732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7d3de91a3a84393a14fe5c3f70a6a76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7d3de91a3a84393a14fe5c3f70a6a76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7d3de91a3a84393a14fe5c3f70a6a76.jpg", "file_size": 30660, "is_delete": false, "file_type": 1, "original_file_name": "C295#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3de91a3a84393a14fe5c3f70a6a76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3de91a3a84393a14fe5c3f70a6a76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3de91a3a84393a14fe5c3f70a6a76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7d3de91a3a84393a14fe5c3f70a6a76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7d3de91a3a84393a14fe5c3f70a6a76.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bY7l_-oetO_5OV9Tz2B6GHTCTTU=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.249289+00 2025-12-09 10:14:54.249293+00 7103 JTSS012#VS-D3 SPMX-20240815302259 \N \N \N 1 \N [{"file_id": "3d5f99c3-3cc7-440d-a02b-c543a69e27b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33c737b0e11e459ba1038d96f4456562.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33c737b0e11e459ba1038d96f4456562.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33c737b0e11e459ba1038d96f4456562.jpg", "file_size": 9734, "is_delete": false, "file_type": 1, "original_file_name": "JTSS012#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c737b0e11e459ba1038d96f4456562.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c737b0e11e459ba1038d96f4456562.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c737b0e11e459ba1038d96f4456562.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33c737b0e11e459ba1038d96f4456562.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33c737b0e11e459ba1038d96f4456562.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNj7tQUduitrV3EIofTGJZlMsoM=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.240664+00 2025-12-09 10:14:54.240668+00 7097 1061#WJC22 SPMX-20240815302250 \N \N \N 1 \N [{"file_id": "c0c24789-0227-48d8-9586-685dd5dd1231", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a59db2a9a99f43d4b989c0190dba4390.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a59db2a9a99f43d4b989c0190dba4390.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a59db2a9a99f43d4b989c0190dba4390.jpg", "file_size": 11766, "is_delete": false, "file_type": 1, "original_file_name": "1061#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59db2a9a99f43d4b989c0190dba4390.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59db2a9a99f43d4b989c0190dba4390.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59db2a9a99f43d4b989c0190dba4390.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a59db2a9a99f43d4b989c0190dba4390.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a59db2a9a99f43d4b989c0190dba4390.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7lEzEH9bo8GUVNjzSw8SOIuehw=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.252262+00 2025-12-09 10:14:54.252267+00 7104 LHS0943-5#黑色 SPMX-20240815302264 \N \N \N 1 \N [{"file_id": "74f41c75-a620-44dd-b550-3b523b69ac8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "187a63301dd8431aa91398f97970ac19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "187a63301dd8431aa91398f97970ac19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "187a63301dd8431aa91398f97970ac19.jpg", "file_size": 19099, "is_delete": false, "file_type": 1, "original_file_name": "LHS0943-5#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187a63301dd8431aa91398f97970ac19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187a63301dd8431aa91398f97970ac19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187a63301dd8431aa91398f97970ac19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/187a63301dd8431aa91398f97970ac19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/187a63301dd8431aa91398f97970ac19.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9HwGhorBvU3zB3o0b36QJYaw2M=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.253671+00 2025-12-09 10:14:54.253675+00 7105 LZ1234#3号色 SPMX-20240815302256 \N \N \N 1 \N [{"file_id": "9f5a2066-2bb8-4260-85cc-dd515375c91b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a8010e1e3cd4527bce213be0c941dc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a8010e1e3cd4527bce213be0c941dc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a8010e1e3cd4527bce213be0c941dc7.jpg", "file_size": 12479, "is_delete": false, "file_type": 1, "original_file_name": "LZ1234#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8010e1e3cd4527bce213be0c941dc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8010e1e3cd4527bce213be0c941dc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8010e1e3cd4527bce213be0c941dc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a8010e1e3cd4527bce213be0c941dc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a8010e1e3cd4527bce213be0c941dc7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkWuEancyrcXVqNKqc1ukIDVCHE=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.255164+00 2025-12-09 10:14:54.255169+00 7106 23-2103伊#A7前后片4XL SPMX-20240815302251 \N \N \N 1 \N [{"file_id": "506d65bf-e177-4444-9e36-f295610cb978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86945a9c536349cf93531f8e13033416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86945a9c536349cf93531f8e13033416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86945a9c536349cf93531f8e13033416.jpg", "file_size": 9325, "is_delete": false, "file_type": 1, "original_file_name": "23-2103伊#A7前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86945a9c536349cf93531f8e13033416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86945a9c536349cf93531f8e13033416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86945a9c536349cf93531f8e13033416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86945a9c536349cf93531f8e13033416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86945a9c536349cf93531f8e13033416.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IqSCMrha75TBor_5Zl7elV979g=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.25662+00 2025-12-09 10:14:54.256624+00 7107 0003-316#宝蓝匹布 SPMX-20240815302254 \N \N \N 1 \N [{"file_id": "c04fdbb5-6fb8-4036-b108-8c3572ff1d19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785b2c4688ba4f64a9c3e9ec2952d3fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785b2c4688ba4f64a9c3e9ec2952d3fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785b2c4688ba4f64a9c3e9ec2952d3fe.jpg", "file_size": 22932, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785b2c4688ba4f64a9c3e9ec2952d3fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785b2c4688ba4f64a9c3e9ec2952d3fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785b2c4688ba4f64a9c3e9ec2952d3fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785b2c4688ba4f64a9c3e9ec2952d3fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785b2c4688ba4f64a9c3e9ec2952d3fe.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8GS78hOLqQqk6oxmWfkjkXEmBks=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.258247+00 2025-12-09 10:14:54.258251+00 7108 HT0101-115#A5 SPMX-20240815302258 \N \N \N 1 \N [{"file_id": "0d4d38b8-03bc-4c15-9996-87aed95bf0a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb546cca60484256a0b0b00dfa6ae21c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb546cca60484256a0b0b00dfa6ae21c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb546cca60484256a0b0b00dfa6ae21c.jpg", "file_size": 25687, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb546cca60484256a0b0b00dfa6ae21c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb546cca60484256a0b0b00dfa6ae21c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb546cca60484256a0b0b00dfa6ae21c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb546cca60484256a0b0b00dfa6ae21c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb546cca60484256a0b0b00dfa6ae21c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQtt6qq3uG8xQO-_G6Y979NGPhE=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.259688+00 2025-12-09 10:14:54.259693+00 7109 1061#上节CIA SPMX-20240815302262 \N \N \N 1 \N [{"file_id": "7c0b7c85-923c-4f7c-a505-0a86254dd8ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fe7c5d822e843969fd1fe875cbd6e09.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fe7c5d822e843969fd1fe875cbd6e09.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fe7c5d822e843969fd1fe875cbd6e09.png", "file_size": 73607, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节CIA.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe7c5d822e843969fd1fe875cbd6e09.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe7c5d822e843969fd1fe875cbd6e09.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fe7c5d822e843969fd1fe875cbd6e09.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fe7c5d822e843969fd1fe875cbd6e09.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fe7c5d822e843969fd1fe875cbd6e09.png?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-qR82W4I2yQM22MaFeg3yziEJw=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.261144+00 2025-12-09 10:14:54.261149+00 7110 JTSS011FW#VS-D3 SPMX-20240815302248 \N \N \N 1 \N [{"file_id": "a91cf878-7a09-41c0-bb30-7e7862afa8af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "502d06aa76c44ab2b8780ae9d838d077.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "502d06aa76c44ab2b8780ae9d838d077.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "502d06aa76c44ab2b8780ae9d838d077.jpg", "file_size": 15498, "is_delete": false, "file_type": 1, "original_file_name": "JTSS011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502d06aa76c44ab2b8780ae9d838d077.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502d06aa76c44ab2b8780ae9d838d077.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502d06aa76c44ab2b8780ae9d838d077.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/502d06aa76c44ab2b8780ae9d838d077.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/502d06aa76c44ab2b8780ae9d838d077.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cd70u1uWsMWooepnTweu6a6VsGU=", "createTime": "2024-08-15 14:44:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.262551+00 2025-12-09 10:14:54.262555+00 7111 23-2103伊#A7袖子3XL SPMX-20240815302260 \N \N \N 1 \N [{"file_id": "6bde76e8-e169-4913-89ca-36abbd0256f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93203673fba24f74bd698006f575db33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93203673fba24f74bd698006f575db33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93203673fba24f74bd698006f575db33.jpg", "file_size": 7904, "is_delete": false, "file_type": 1, "original_file_name": "23-2103伊#A7袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93203673fba24f74bd698006f575db33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93203673fba24f74bd698006f575db33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93203673fba24f74bd698006f575db33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93203673fba24f74bd698006f575db33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93203673fba24f74bd698006f575db33.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywwIkuj91zcRRozjl0_OdGp00us=", "createTime": "2024-08-15 14:44:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.263951+00 2025-12-09 10:14:54.263955+00 7112 LZ1234#4号色 SPMX-20240815302265 \N \N \N 1 \N [{"file_id": "8200723c-c3c5-4af4-be1f-73f267312905", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb88d1edeec41fbb2fbd42aec81f5e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb88d1edeec41fbb2fbd42aec81f5e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb88d1edeec41fbb2fbd42aec81f5e9.jpg", "file_size": 10060, "is_delete": false, "file_type": 1, "original_file_name": "LZ1234#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb88d1edeec41fbb2fbd42aec81f5e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb88d1edeec41fbb2fbd42aec81f5e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb88d1edeec41fbb2fbd42aec81f5e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb88d1edeec41fbb2fbd42aec81f5e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb88d1edeec41fbb2fbd42aec81f5e9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7JmK3FLybOtv4ddP8ustOVoiqk=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.265353+00 2025-12-09 10:14:54.265358+00 7113 23-2103伊#A7袖子4XL SPMX-20240815302270 \N \N \N 1 \N [{"file_id": "fbe49873-b24a-4d2c-be3c-f542c37ca39a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a272bcd5b754dcaaab09c0048120ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a272bcd5b754dcaaab09c0048120ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a272bcd5b754dcaaab09c0048120ed9.jpg", "file_size": 7684, "is_delete": false, "file_type": 1, "original_file_name": "23-2103伊#A7袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a272bcd5b754dcaaab09c0048120ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a272bcd5b754dcaaab09c0048120ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a272bcd5b754dcaaab09c0048120ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a272bcd5b754dcaaab09c0048120ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a272bcd5b754dcaaab09c0048120ed9.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LsJgUBUMJJjGRxXLD9DCv45GSuA=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.266734+00 2025-12-09 10:14:54.266738+00 7114 HT0101-115#A6 SPMX-20240815302269 \N \N \N 1 \N [{"file_id": "4a282e1e-e388-40ab-967b-8465b1a86bd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44fbaba15f4e4309be3afd932b8bf1c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44fbaba15f4e4309be3afd932b8bf1c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44fbaba15f4e4309be3afd932b8bf1c8.jpg", "file_size": 23120, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fbaba15f4e4309be3afd932b8bf1c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fbaba15f4e4309be3afd932b8bf1c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fbaba15f4e4309be3afd932b8bf1c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44fbaba15f4e4309be3afd932b8bf1c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44fbaba15f4e4309be3afd932b8bf1c8.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwHgA40gKjzQdpo7mEqheqmg9uQ=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.268144+00 2025-12-09 10:14:54.268149+00 7115 C295#黑色 SPMX-20240815302266 \N \N \N 1 \N [{"file_id": "8647129a-2fcd-4f83-a301-34d97bc8dd87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d44fa2f5e129460b94ea7e474328c117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d44fa2f5e129460b94ea7e474328c117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d44fa2f5e129460b94ea7e474328c117.jpg", "file_size": 31702, "is_delete": false, "file_type": 1, "original_file_name": "C295#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44fa2f5e129460b94ea7e474328c117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44fa2f5e129460b94ea7e474328c117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44fa2f5e129460b94ea7e474328c117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d44fa2f5e129460b94ea7e474328c117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d44fa2f5e129460b94ea7e474328c117.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGD0q5WMgXmgao8XznFU7tX86Bo=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.269503+00 2025-12-09 10:14:54.269507+00 7116 JTSS012FW#VS-D3 SPMX-20240815302271 \N \N \N 1 \N [{"file_id": "8260fae0-8ea0-4e19-b4de-6d2011d35133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98bf75ec1e9b4338acee04b2da44a605.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98bf75ec1e9b4338acee04b2da44a605.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98bf75ec1e9b4338acee04b2da44a605.jpg", "file_size": 20819, "is_delete": false, "file_type": 1, "original_file_name": "JTSS012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bf75ec1e9b4338acee04b2da44a605.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bf75ec1e9b4338acee04b2da44a605.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bf75ec1e9b4338acee04b2da44a605.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98bf75ec1e9b4338acee04b2da44a605.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98bf75ec1e9b4338acee04b2da44a605.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2MiQLHulMk9SR1BWCOKo-Z5vj6M=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.27088+00 2025-12-09 10:14:54.270883+00 7117 0003-316#杏色 SPMX-20240815302267 \N \N \N 1 \N [{"file_id": "92f102ad-7192-443b-8fd1-71ea225f5fc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65dcd1150ba44932b7c3439cf70d732f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65dcd1150ba44932b7c3439cf70d732f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65dcd1150ba44932b7c3439cf70d732f.jpg", "file_size": 20023, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65dcd1150ba44932b7c3439cf70d732f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65dcd1150ba44932b7c3439cf70d732f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65dcd1150ba44932b7c3439cf70d732f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65dcd1150ba44932b7c3439cf70d732f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65dcd1150ba44932b7c3439cf70d732f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rk3k50J6MxAW4vG2eYG2CWMoqok=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.272254+00 2025-12-09 10:14:54.272258+00 7118 FHXGPK-064-3 SPMX-20240815302268 \N \N \N 1 \N [{"file_id": "474dad8e-8431-42fd-a67b-94f561e31d83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "154688a776dc4fd2be177c3c05020816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "154688a776dc4fd2be177c3c05020816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "154688a776dc4fd2be177c3c05020816.jpg", "file_size": 40704, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-064-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/154688a776dc4fd2be177c3c05020816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/154688a776dc4fd2be177c3c05020816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/154688a776dc4fd2be177c3c05020816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/154688a776dc4fd2be177c3c05020816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/154688a776dc4fd2be177c3c05020816.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gultc_b3-SMdAAg4OEpmdiAyhL4=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.273621+00 2025-12-09 10:14:54.273625+00 7119 DK-004-4 SPMX-20240815302273 \N \N \N 1 \N [{"file_id": "185b0c4b-edea-4500-8b4d-652dbacaa6d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bb5dbaddf45453fb903892205c116c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bb5dbaddf45453fb903892205c116c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bb5dbaddf45453fb903892205c116c1.jpg", "file_size": 70136, "is_delete": false, "file_type": 1, "original_file_name": "DK-004-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb5dbaddf45453fb903892205c116c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb5dbaddf45453fb903892205c116c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb5dbaddf45453fb903892205c116c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bb5dbaddf45453fb903892205c116c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bb5dbaddf45453fb903892205c116c1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQ1EVwX5IF_5T0q8FhxxieAU83E=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.275042+00 2025-12-09 10:14:54.275047+00 7120 HT0101-115#A7 SPMX-20240815302280 \N \N \N 1 \N [{"file_id": "fead3e89-b405-401b-adb6-847845f9e687", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d9267148ed442a7814567d51ca72875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d9267148ed442a7814567d51ca72875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d9267148ed442a7814567d51ca72875.jpg", "file_size": 18350, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9267148ed442a7814567d51ca72875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9267148ed442a7814567d51ca72875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9267148ed442a7814567d51ca72875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d9267148ed442a7814567d51ca72875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d9267148ed442a7814567d51ca72875.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0VtkjlTs_gDQbAdKBlmKtnYFBzY=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.276463+00 2025-12-09 10:14:54.276467+00 7121 80154#黄色 SPMX-20240815302275 \N \N \N 1 \N [{"file_id": "da356115-55a5-4f78-8fc5-0e31cfd95ff3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cff13a0357e54dfe8a4efaeadcc8c13c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cff13a0357e54dfe8a4efaeadcc8c13c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cff13a0357e54dfe8a4efaeadcc8c13c.jpg", "file_size": 10550, "is_delete": false, "file_type": 1, "original_file_name": "80154#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff13a0357e54dfe8a4efaeadcc8c13c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff13a0357e54dfe8a4efaeadcc8c13c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff13a0357e54dfe8a4efaeadcc8c13c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cff13a0357e54dfe8a4efaeadcc8c13c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cff13a0357e54dfe8a4efaeadcc8c13c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WS-ha_aaG95JEgDF--23aFKq2NA=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.277863+00 2025-12-09 10:14:54.277868+00 7122 JTSS013# SPMX-20240815302282 \N \N \N 1 \N [{"file_id": "5f858530-ef86-43dc-ab61-dacb4e183c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c01dd25f1d13421c845ac1801ac92603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c01dd25f1d13421c845ac1801ac92603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c01dd25f1d13421c845ac1801ac92603.jpg", "file_size": 9546, "is_delete": false, "file_type": 1, "original_file_name": "JTSS013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dd25f1d13421c845ac1801ac92603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dd25f1d13421c845ac1801ac92603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01dd25f1d13421c845ac1801ac92603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c01dd25f1d13421c845ac1801ac92603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c01dd25f1d13421c845ac1801ac92603.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cwS_q782SmyIL2C8hbHEH8wKj6Y=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.279268+00 2025-12-09 10:14:54.279272+00 7123 FHXGPK-064-4 SPMX-20240815302276 \N \N \N 1 \N [{"file_id": "b6528ffa-cf69-47ba-9164-3d884e3568b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72df9042d7c4472a18205ef4252b980.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72df9042d7c4472a18205ef4252b980.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72df9042d7c4472a18205ef4252b980.jpg", "file_size": 37582, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-064-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72df9042d7c4472a18205ef4252b980.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72df9042d7c4472a18205ef4252b980.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72df9042d7c4472a18205ef4252b980.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72df9042d7c4472a18205ef4252b980.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72df9042d7c4472a18205ef4252b980.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bsua_8sAjJFPfjhRkFkVIPJLL60=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.280621+00 2025-12-09 10:14:54.280625+00 7124 C297#白色 SPMX-20240815302284 \N \N \N 1 \N [{"file_id": "efdfefad-d360-4944-915c-94c85d1c6eff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22af86f585424de3aeca4a0e01481a35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22af86f585424de3aeca4a0e01481a35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22af86f585424de3aeca4a0e01481a35.jpg", "file_size": 13610, "is_delete": false, "file_type": 1, "original_file_name": "C297#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22af86f585424de3aeca4a0e01481a35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22af86f585424de3aeca4a0e01481a35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22af86f585424de3aeca4a0e01481a35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22af86f585424de3aeca4a0e01481a35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22af86f585424de3aeca4a0e01481a35.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kj47UpdW11Pp1dWdqJLFoc1ccyM=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.282001+00 2025-12-09 10:14:54.282005+00 7125 8016FWF#L SPMX-20240815302285 \N \N \N 1 \N [{"file_id": "86361136-0ec3-4cc4-9b65-6e1b93532581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "851161efbfed459eb5a307312bd580b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "851161efbfed459eb5a307312bd580b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "851161efbfed459eb5a307312bd580b3.jpg", "file_size": 21597, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851161efbfed459eb5a307312bd580b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851161efbfed459eb5a307312bd580b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851161efbfed459eb5a307312bd580b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/851161efbfed459eb5a307312bd580b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/851161efbfed459eb5a307312bd580b3.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvygwI_6volu2iL3XlQzyVgPaKU=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.283401+00 2025-12-09 10:14:54.283405+00 7126 Lilyrose2396#白色ML码 SPMX-20240815302277 \N \N \N 1 \N [{"file_id": "971316f7-2a13-4cc6-9a6c-85a3bd041cd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d7a09eee0944a55b635bcc4868ff30a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d7a09eee0944a55b635bcc4868ff30a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d7a09eee0944a55b635bcc4868ff30a.jpg", "file_size": 59615, "is_delete": false, "file_type": 1, "original_file_name": "Lilyrose2396#白色ML码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7a09eee0944a55b635bcc4868ff30a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7a09eee0944a55b635bcc4868ff30a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7a09eee0944a55b635bcc4868ff30a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d7a09eee0944a55b635bcc4868ff30a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d7a09eee0944a55b635bcc4868ff30a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i45eBE2d-O1mCqAoIRv4X_qVlSo=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.284777+00 2025-12-09 10:14:54.284782+00 7127 LZ1235#1号色 SPMX-20240815302278 \N \N \N 1 \N [{"file_id": "b6c5602f-73ee-4f66-b8f9-1f3913172d96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2e05afe0f6498ba01f01d3990bfeb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2e05afe0f6498ba01f01d3990bfeb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2e05afe0f6498ba01f01d3990bfeb0.jpg", "file_size": 19272, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2e05afe0f6498ba01f01d3990bfeb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2e05afe0f6498ba01f01d3990bfeb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2e05afe0f6498ba01f01d3990bfeb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2e05afe0f6498ba01f01d3990bfeb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2e05afe0f6498ba01f01d3990bfeb0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nz07eLlzEZleYnpNFCumDaoN8kc=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.28614+00 2025-12-09 10:14:54.286144+00 7128 1061#上节土黄 SPMX-20240815302272 \N \N \N 1 \N [{"file_id": "afa29063-9231-441b-8af3-153559d130dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4092e178ea3f41248d5c6cec3d1261ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4092e178ea3f41248d5c6cec3d1261ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4092e178ea3f41248d5c6cec3d1261ae.jpg", "file_size": 15304, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4092e178ea3f41248d5c6cec3d1261ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4092e178ea3f41248d5c6cec3d1261ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4092e178ea3f41248d5c6cec3d1261ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4092e178ea3f41248d5c6cec3d1261ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4092e178ea3f41248d5c6cec3d1261ae.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-bPYcI9YswQSaZhQEb07h2izs0=", "createTime": "2024-08-15 14:44:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.287589+00 2025-12-09 10:14:54.287593+00 7129 C297#墨绿 SPMX-20240815302274 \N \N \N 1 \N [{"file_id": "d93f9f56-f3c3-47c9-a53b-308f8b7188e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "692c03ccc9eb4731803fe4c4cb8a1167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "692c03ccc9eb4731803fe4c4cb8a1167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "692c03ccc9eb4731803fe4c4cb8a1167.jpg", "file_size": 13692, "is_delete": false, "file_type": 1, "original_file_name": "C297#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692c03ccc9eb4731803fe4c4cb8a1167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692c03ccc9eb4731803fe4c4cb8a1167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692c03ccc9eb4731803fe4c4cb8a1167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/692c03ccc9eb4731803fe4c4cb8a1167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/692c03ccc9eb4731803fe4c4cb8a1167.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oiSrAsb8yCfjUmIS_thNraEN4-Q=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.28904+00 2025-12-09 10:14:54.289044+00 7130 0003-316#杏色匹布 SPMX-20240815302279 \N \N \N 1 \N [{"file_id": "a432ea15-c258-49ce-8387-ae210faa2ba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7e92136af7c4b18958551d06e9deabd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7e92136af7c4b18958551d06e9deabd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7e92136af7c4b18958551d06e9deabd.jpg", "file_size": 23813, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e92136af7c4b18958551d06e9deabd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e92136af7c4b18958551d06e9deabd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e92136af7c4b18958551d06e9deabd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7e92136af7c4b18958551d06e9deabd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7e92136af7c4b18958551d06e9deabd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ax4VHQ4WyIlZQLl26GGAkImwPqA=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.290466+00 2025-12-09 10:14:54.29047+00 7131 23-2103伊#A7领子通用 SPMX-20240815302281 \N \N \N 1 \N [{"file_id": "b9d74c56-6351-4ffb-b233-bf67d7501606", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb5c4cf73de643a7ad119c472fd0bcd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb5c4cf73de643a7ad119c472fd0bcd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb5c4cf73de643a7ad119c472fd0bcd5.jpg", "file_size": 8623, "is_delete": false, "file_type": 1, "original_file_name": "23-2103伊#A7领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5c4cf73de643a7ad119c472fd0bcd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5c4cf73de643a7ad119c472fd0bcd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5c4cf73de643a7ad119c472fd0bcd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb5c4cf73de643a7ad119c472fd0bcd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb5c4cf73de643a7ad119c472fd0bcd5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KY7u1Ulx28qAls9lvouAiUkQMG4=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.291845+00 2025-12-09 10:14:54.291849+00 7132 1061#上节彩兰 SPMX-20240815302283 \N \N \N 1 \N [{"file_id": "1d00eaec-39c5-4245-9ad3-af927f9816e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a7b61e818dc492399e4238f694078a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a7b61e818dc492399e4238f694078a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a7b61e818dc492399e4238f694078a5.jpg", "file_size": 14734, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7b61e818dc492399e4238f694078a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7b61e818dc492399e4238f694078a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7b61e818dc492399e4238f694078a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a7b61e818dc492399e4238f694078a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a7b61e818dc492399e4238f694078a5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UZvg-l8g_iD-mwuBnoXT1SdocM=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.293256+00 2025-12-09 10:14:54.29326+00 7133 JTSS014# SPMX-20240815302303 \N \N \N 1 \N [{"file_id": "399fd9cb-ce52-42af-a8fb-372ed30a8a83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e97e30436dd490aa2ca9bf907aa7369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e97e30436dd490aa2ca9bf907aa7369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e97e30436dd490aa2ca9bf907aa7369.jpg", "file_size": 9627, "is_delete": false, "file_type": 1, "original_file_name": "JTSS014#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e97e30436dd490aa2ca9bf907aa7369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e97e30436dd490aa2ca9bf907aa7369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e97e30436dd490aa2ca9bf907aa7369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e97e30436dd490aa2ca9bf907aa7369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e97e30436dd490aa2ca9bf907aa7369.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOTjUIbCnwjefUQU-oPmvGaIWyM=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.294717+00 2025-12-09 10:14:54.294722+00 7134 DK-004 SPMX-20240815302286 \N \N \N 1 \N [{"file_id": "7a0bbfc8-a064-4255-b904-ceb7ac7cd203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05bba1c73373405b891e78b53b0aeebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05bba1c73373405b891e78b53b0aeebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05bba1c73373405b891e78b53b0aeebc.jpg", "file_size": 61327, "is_delete": false, "file_type": 1, "original_file_name": "DK-004.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05bba1c73373405b891e78b53b0aeebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05bba1c73373405b891e78b53b0aeebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05bba1c73373405b891e78b53b0aeebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05bba1c73373405b891e78b53b0aeebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05bba1c73373405b891e78b53b0aeebc.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tdkJdSRO8wkzCgIGe7JoP5Uft0Q=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.296138+00 2025-12-09 10:14:54.296142+00 7135 0003-316#玫红色匹布 SPMX-20240815302300 \N \N \N 1 \N [{"file_id": "3fb859b4-26cd-48dc-9ef2-3a673b13e02a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "528991b737a142a6b6c05367f0f79a7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "528991b737a142a6b6c05367f0f79a7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "528991b737a142a6b6c05367f0f79a7b.jpg", "file_size": 20575, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#玫红色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528991b737a142a6b6c05367f0f79a7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528991b737a142a6b6c05367f0f79a7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528991b737a142a6b6c05367f0f79a7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/528991b737a142a6b6c05367f0f79a7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/528991b737a142a6b6c05367f0f79a7b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gh546weKKZSPRhYiqumUkEH-E9Y=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.29769+00 2025-12-09 10:14:54.297695+00 7136 23-2106#A1-2XL SPMX-20240815302292 \N \N \N 1 \N [{"file_id": "ee382010-9581-4fac-b83c-c36fbda32bb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c024875a42347e7870835f93e8023ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c024875a42347e7870835f93e8023ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c024875a42347e7870835f93e8023ad.jpg", "file_size": 23188, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1-2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c024875a42347e7870835f93e8023ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c024875a42347e7870835f93e8023ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c024875a42347e7870835f93e8023ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c024875a42347e7870835f93e8023ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c024875a42347e7870835f93e8023ad.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luIMgiG0U6Y_3aGbKjzZGOphyY4=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.299152+00 2025-12-09 10:14:54.299156+00 7137 JTSS013FW#VS-D3 SPMX-20240815302293 \N \N \N 1 \N [{"file_id": "07347a0f-2ba5-4dcc-87d8-e41c477b988f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4935777c11544283a95a5ff22264e9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4935777c11544283a95a5ff22264e9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4935777c11544283a95a5ff22264e9e0.jpg", "file_size": 15722, "is_delete": false, "file_type": 1, "original_file_name": "JTSS013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4935777c11544283a95a5ff22264e9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4935777c11544283a95a5ff22264e9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4935777c11544283a95a5ff22264e9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4935777c11544283a95a5ff22264e9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4935777c11544283a95a5ff22264e9e0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c50MNlvt-2mKdWI6Pfd80yCVwHA=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.300609+00 2025-12-09 10:14:54.300613+00 7138 Lilyrose2396#白色MS码 SPMX-20240815302290 \N \N \N 1 \N [{"file_id": "eb4d0b62-7593-4c7e-bc0f-7e401fa4927b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg", "file_size": 59240, "is_delete": false, "file_type": 1, "original_file_name": "Lilyrose2396#白色MS码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e4c446bfd7f4f34a1c8cd49a21e40e5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdQHdy-4PEHtRUvv-TVr6tIf_Bg=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.302016+00 2025-12-09 10:14:54.30202+00 7139 LZ1235#3号色 SPMX-20240815302299 \N \N \N 1 \N [{"file_id": "0ead215d-f6f6-414a-93f7-81059855d203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2286cad0414813aa8db35af9df29d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2286cad0414813aa8db35af9df29d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2286cad0414813aa8db35af9df29d6.jpg", "file_size": 16461, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2286cad0414813aa8db35af9df29d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2286cad0414813aa8db35af9df29d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2286cad0414813aa8db35af9df29d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2286cad0414813aa8db35af9df29d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2286cad0414813aa8db35af9df29d6.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lgC2qz7o-UqbTeVXDTCA_AXKNg=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.303425+00 2025-12-09 10:14:54.303429+00 7140 0003-316#玫红 SPMX-20240815302288 \N \N \N 1 \N [{"file_id": "786c3636-3cb6-422a-a166-f01c2077f413", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4731e53198ec49f2b04dd43d07dda215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4731e53198ec49f2b04dd43d07dda215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4731e53198ec49f2b04dd43d07dda215.jpg", "file_size": 18017, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731e53198ec49f2b04dd43d07dda215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731e53198ec49f2b04dd43d07dda215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731e53198ec49f2b04dd43d07dda215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4731e53198ec49f2b04dd43d07dda215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4731e53198ec49f2b04dd43d07dda215.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xmvjHLfZsbyCBCgLpztioEQhPs=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.304822+00 2025-12-09 10:14:54.304827+00 7141 DK-005-1 SPMX-20240815302297 \N \N \N 1 \N [{"file_id": "f25c535d-fe74-4f37-ae57-7f6413228cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b8c2a7aea5a454c92f1dac79725a3bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b8c2a7aea5a454c92f1dac79725a3bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b8c2a7aea5a454c92f1dac79725a3bb.jpg", "file_size": 30420, "is_delete": false, "file_type": 1, "original_file_name": "DK-005-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c2a7aea5a454c92f1dac79725a3bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c2a7aea5a454c92f1dac79725a3bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c2a7aea5a454c92f1dac79725a3bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b8c2a7aea5a454c92f1dac79725a3bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b8c2a7aea5a454c92f1dac79725a3bb.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhSq4VlvZRPuogAXTEWNt_mwu0U=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.306259+00 2025-12-09 10:14:54.306263+00 7142 FHXGPK-064-5 SPMX-20240815302287 \N \N \N 1 \N [{"file_id": "b062208d-8288-43ae-abe6-9665f2c689a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e25be3f9cd194b50b85e137ec0a85afd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e25be3f9cd194b50b85e137ec0a85afd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e25be3f9cd194b50b85e137ec0a85afd.jpg", "file_size": 38641, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-064-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25be3f9cd194b50b85e137ec0a85afd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25be3f9cd194b50b85e137ec0a85afd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25be3f9cd194b50b85e137ec0a85afd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e25be3f9cd194b50b85e137ec0a85afd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e25be3f9cd194b50b85e137ec0a85afd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Srl6Dd7gTifjCvS18yfKRHMfIdU=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.30787+00 2025-12-09 10:14:54.307874+00 7143 HT0101-115#A8 SPMX-20240815302291 \N \N \N 1 \N [{"file_id": "e76a499a-97a7-4812-83c5-5c3484b7ffbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97e1b39a0fcd48969eaccad9f3b101b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97e1b39a0fcd48969eaccad9f3b101b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97e1b39a0fcd48969eaccad9f3b101b2.jpg", "file_size": 17464, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-115#A8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e1b39a0fcd48969eaccad9f3b101b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e1b39a0fcd48969eaccad9f3b101b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e1b39a0fcd48969eaccad9f3b101b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97e1b39a0fcd48969eaccad9f3b101b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97e1b39a0fcd48969eaccad9f3b101b2.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQBufb1yQDGTNMGFRcOb_TsBicE=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.309376+00 2025-12-09 10:14:54.30938+00 7144 C297#酒红 SPMX-20240815302295 \N \N \N 1 \N [{"file_id": "a4ea456f-979e-45b3-ad8e-b4cc4bdaa287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19f674739938448197bcd321a63bdcbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19f674739938448197bcd321a63bdcbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19f674739938448197bcd321a63bdcbd.jpg", "file_size": 15349, "is_delete": false, "file_type": 1, "original_file_name": "C297#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f674739938448197bcd321a63bdcbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f674739938448197bcd321a63bdcbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f674739938448197bcd321a63bdcbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19f674739938448197bcd321a63bdcbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19f674739938448197bcd321a63bdcbd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7d2OanLMMaub3S_YDiIkYskAfc=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.310835+00 2025-12-09 10:14:54.31084+00 7145 HT0101-116# SPMX-20240815302302 \N \N \N 1 \N [{"file_id": "c078d07e-ecf2-404e-801b-d0f5b38e34a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9782859356142dea0900f5532a6d7b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9782859356142dea0900f5532a6d7b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9782859356142dea0900f5532a6d7b5.jpg", "file_size": 10289, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-116#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9782859356142dea0900f5532a6d7b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9782859356142dea0900f5532a6d7b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9782859356142dea0900f5532a6d7b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9782859356142dea0900f5532a6d7b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9782859356142dea0900f5532a6d7b5.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzqGZd8uckA23BXgUFspE858ysw=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.312247+00 2025-12-09 10:14:54.312251+00 7146 LJ0001G# SPMX-20240815302298 \N \N \N 1 \N [{"file_id": "e1cb235c-6433-4bdd-9682-b256c1871b6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94dccd5d7c824168b1b98af3635e4b8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94dccd5d7c824168b1b98af3635e4b8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94dccd5d7c824168b1b98af3635e4b8a.jpg", "file_size": 5121, "is_delete": false, "file_type": 1, "original_file_name": "LJ0001G#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dccd5d7c824168b1b98af3635e4b8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dccd5d7c824168b1b98af3635e4b8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dccd5d7c824168b1b98af3635e4b8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94dccd5d7c824168b1b98af3635e4b8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94dccd5d7c824168b1b98af3635e4b8a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFbc_R6Gf5WY1F48kdp8_enfrlc=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.313724+00 2025-12-09 10:14:54.313729+00 7147 8016FWF#M SPMX-20240815302296 \N \N \N 1 \N [{"file_id": "9c8c7286-940d-48b6-81e2-21e165cc847b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59acb32392354e5c96572cb02d8b88db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59acb32392354e5c96572cb02d8b88db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59acb32392354e5c96572cb02d8b88db.jpg", "file_size": 9376, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59acb32392354e5c96572cb02d8b88db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59acb32392354e5c96572cb02d8b88db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59acb32392354e5c96572cb02d8b88db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59acb32392354e5c96572cb02d8b88db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59acb32392354e5c96572cb02d8b88db.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoScvX0mMDAu5r6RVKd56oiDSw4=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.315272+00 2025-12-09 10:14:54.315276+00 7148 FHXGPK-065-1 SPMX-20240815302301 \N \N \N 1 \N [{"file_id": "6677f458-e2a5-4cc4-b6b8-a721f8dff77c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52cc05fd39634d75aad363f0df5a066e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52cc05fd39634d75aad363f0df5a066e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52cc05fd39634d75aad363f0df5a066e.jpg", "file_size": 28058, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-065-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52cc05fd39634d75aad363f0df5a066e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52cc05fd39634d75aad363f0df5a066e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52cc05fd39634d75aad363f0df5a066e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52cc05fd39634d75aad363f0df5a066e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52cc05fd39634d75aad363f0df5a066e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:td9ByVcXIhwi1JgNlePSh5lSOFg=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.316749+00 2025-12-09 10:14:54.316753+00 7149 LZ1235#2号色 SPMX-20240815302289 \N \N \N 1 \N [{"file_id": "df2c32a9-b439-476f-9e1d-e5d90a4c1365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f89e75baaedc4ba0a71db79265853e26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f89e75baaedc4ba0a71db79265853e26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f89e75baaedc4ba0a71db79265853e26.jpg", "file_size": 16257, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89e75baaedc4ba0a71db79265853e26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89e75baaedc4ba0a71db79265853e26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89e75baaedc4ba0a71db79265853e26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f89e75baaedc4ba0a71db79265853e26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f89e75baaedc4ba0a71db79265853e26.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8B3SBRNZ_noOVy6VmQA9pX81ws=", "createTime": "2024-08-15 14:44:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.31821+00 2025-12-09 10:14:54.318214+00 7150 1061#上节浅蓝 SPMX-20240815302294 \N \N \N 1 \N [{"file_id": "5d2a7e29-a719-4611-974e-f4d065b4e929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d83b0db5a7234ffc80fa74cf3fdb536b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d83b0db5a7234ffc80fa74cf3fdb536b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d83b0db5a7234ffc80fa74cf3fdb536b.jpg", "file_size": 15203, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d83b0db5a7234ffc80fa74cf3fdb536b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d83b0db5a7234ffc80fa74cf3fdb536b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d83b0db5a7234ffc80fa74cf3fdb536b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d83b0db5a7234ffc80fa74cf3fdb536b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d83b0db5a7234ffc80fa74cf3fdb536b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-oOZPbXtRncckmeoz0MCV2kY38=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.319806+00 2025-12-09 10:14:54.31981+00 7151 0003-316#白色 SPMX-20240815302311 \N \N \N 1 \N [{"file_id": "d8bb6db6-9385-4afa-93d0-63ce7d98f554", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1095400999d24373baa88c8c08d9117c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1095400999d24373baa88c8c08d9117c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1095400999d24373baa88c8c08d9117c.jpg", "file_size": 20367, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1095400999d24373baa88c8c08d9117c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1095400999d24373baa88c8c08d9117c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1095400999d24373baa88c8c08d9117c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1095400999d24373baa88c8c08d9117c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1095400999d24373baa88c8c08d9117c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rlIofZJNLaZo0vMjy4_33VSfzHs=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.321283+00 2025-12-09 10:14:54.321287+00 7152 JTSS014FW#VS-D3 SPMX-20240815302312 \N \N \N 1 \N [{"file_id": "04ca5979-78cd-49c7-a823-3dd357df7206", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22a6f668899e4815878a902ded172356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22a6f668899e4815878a902ded172356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22a6f668899e4815878a902ded172356.jpg", "file_size": 11535, "is_delete": false, "file_type": 1, "original_file_name": "JTSS014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a6f668899e4815878a902ded172356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a6f668899e4815878a902ded172356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a6f668899e4815878a902ded172356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22a6f668899e4815878a902ded172356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22a6f668899e4815878a902ded172356.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8I_3siiRsOZM1i7ci_mckQQyWM=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.322702+00 2025-12-09 10:14:54.322711+00 7153 DK-005-2 SPMX-20240815302309 \N \N \N 1 \N [{"file_id": "943d415e-64e8-4bce-92cc-0dd4b0ea64e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8359f38074734c97af75f15deb58e0fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8359f38074734c97af75f15deb58e0fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8359f38074734c97af75f15deb58e0fa.jpg", "file_size": 36369, "is_delete": false, "file_type": 1, "original_file_name": "DK-005-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8359f38074734c97af75f15deb58e0fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8359f38074734c97af75f15deb58e0fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8359f38074734c97af75f15deb58e0fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8359f38074734c97af75f15deb58e0fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8359f38074734c97af75f15deb58e0fa.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-56T7fE12sVmarA_vaaousOKrSg=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.324133+00 2025-12-09 10:14:54.324138+00 7154 8016FWF#S SPMX-20240815302307 \N \N \N 1 \N [{"file_id": "317f453a-78d1-4f40-8830-d0f1fd38c2d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66bf36d305a14fa3be516bd899b71d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66bf36d305a14fa3be516bd899b71d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66bf36d305a14fa3be516bd899b71d50.jpg", "file_size": 9547, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf36d305a14fa3be516bd899b71d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf36d305a14fa3be516bd899b71d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf36d305a14fa3be516bd899b71d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66bf36d305a14fa3be516bd899b71d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66bf36d305a14fa3be516bd899b71d50.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFtiYsqJPI-r58boG0twys19TxM=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.325577+00 2025-12-09 10:14:54.325582+00 7155 HT0101-117#WJC22 SPMX-20240815302313 \N \N \N 1 \N [{"file_id": "ecb2aa9f-4b04-424d-8bb9-96c4cc906663", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4be2f48d134584a586fd589f6ae83d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4be2f48d134584a586fd589f6ae83d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4be2f48d134584a586fd589f6ae83d.jpg", "file_size": 18110, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-117#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4be2f48d134584a586fd589f6ae83d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4be2f48d134584a586fd589f6ae83d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4be2f48d134584a586fd589f6ae83d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4be2f48d134584a586fd589f6ae83d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4be2f48d134584a586fd589f6ae83d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-nw1A109dLDMz47ieA9ugIetmE=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.327133+00 2025-12-09 10:14:54.327138+00 7156 FHXGPK-065-2 SPMX-20240815302314 \N \N \N 1 \N [{"file_id": "905d2a7f-cf5f-428f-841c-e0de2a702125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "221b6d2b07e34255b6e1d6bbe1f52741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "221b6d2b07e34255b6e1d6bbe1f52741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "221b6d2b07e34255b6e1d6bbe1f52741.jpg", "file_size": 29884, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-065-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221b6d2b07e34255b6e1d6bbe1f52741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221b6d2b07e34255b6e1d6bbe1f52741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221b6d2b07e34255b6e1d6bbe1f52741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/221b6d2b07e34255b6e1d6bbe1f52741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/221b6d2b07e34255b6e1d6bbe1f52741.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nXxT7xmOPI1ijnPPHhy5NngXyUI=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.32898+00 2025-12-09 10:14:54.328985+00 7157 23-2106#A1-L SPMX-20240815302304 \N \N \N 1 \N [{"file_id": "7ee3a921-4894-4bb5-b728-bdb8da216554", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d41ef578c264cc5a6cccc6ce843254b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d41ef578c264cc5a6cccc6ce843254b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d41ef578c264cc5a6cccc6ce843254b.jpg", "file_size": 22719, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1-L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d41ef578c264cc5a6cccc6ce843254b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d41ef578c264cc5a6cccc6ce843254b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d41ef578c264cc5a6cccc6ce843254b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d41ef578c264cc5a6cccc6ce843254b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d41ef578c264cc5a6cccc6ce843254b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7wlXIeZKlhjVXeDeQ4lLN_BVjo=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.330481+00 2025-12-09 10:14:54.330486+00 7158 1061#上节白色 SPMX-20240815302305 \N \N \N 1 \N [{"file_id": "e3cbfc92-b1af-41f1-8943-aa93457837f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a0eec5c2e5a4d43a223194490e7abf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a0eec5c2e5a4d43a223194490e7abf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a0eec5c2e5a4d43a223194490e7abf7.jpg", "file_size": 15329, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0eec5c2e5a4d43a223194490e7abf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0eec5c2e5a4d43a223194490e7abf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0eec5c2e5a4d43a223194490e7abf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a0eec5c2e5a4d43a223194490e7abf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a0eec5c2e5a4d43a223194490e7abf7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTVLDfMqwDMZiQGhAtzpceJ7a9s=", "createTime": "2024-08-15 14:44:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.331917+00 2025-12-09 10:14:54.331922+00 7159 1061#上节粉色 SPMX-20240815302316 \N \N \N 1 \N [{"file_id": "54a87dc2-1de7-41df-9bbf-fcdff9b3f322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b614486c329d4d39bd0e0c7bd81a47bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b614486c329d4d39bd0e0c7bd81a47bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b614486c329d4d39bd0e0c7bd81a47bf.jpg", "file_size": 14874, "is_delete": false, "file_type": 1, "original_file_name": "1061#上节粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614486c329d4d39bd0e0c7bd81a47bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614486c329d4d39bd0e0c7bd81a47bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614486c329d4d39bd0e0c7bd81a47bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b614486c329d4d39bd0e0c7bd81a47bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b614486c329d4d39bd0e0c7bd81a47bf.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvURO-N6nQCfhXN4Ye9uvsokjsA=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.333345+00 2025-12-09 10:14:54.333349+00 7160 C298#大白 SPMX-20240815302317 \N \N \N 1 \N [{"file_id": "5d2b1712-ff99-4d11-a82a-b4bf29d05fa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae81cadf62954d1f911808c0959d6119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae81cadf62954d1f911808c0959d6119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae81cadf62954d1f911808c0959d6119.jpg", "file_size": 16603, "is_delete": false, "file_type": 1, "original_file_name": "C298#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae81cadf62954d1f911808c0959d6119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae81cadf62954d1f911808c0959d6119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae81cadf62954d1f911808c0959d6119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae81cadf62954d1f911808c0959d6119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae81cadf62954d1f911808c0959d6119.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rE4NmmedAMHX5a7KOxHtwaFzdKU=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.334761+00 2025-12-09 10:14:54.334765+00 7161 LJ001#S SPMX-20240815302308 \N \N \N 1 \N [{"file_id": "db5d5a31-9b4e-4fda-bc6c-912a510c36fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e955cee8322943cfba4f6700cf642cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e955cee8322943cfba4f6700cf642cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e955cee8322943cfba4f6700cf642cb6.jpg", "file_size": 9459, "is_delete": false, "file_type": 1, "original_file_name": "LJ001#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e955cee8322943cfba4f6700cf642cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e955cee8322943cfba4f6700cf642cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e955cee8322943cfba4f6700cf642cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e955cee8322943cfba4f6700cf642cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e955cee8322943cfba4f6700cf642cb6.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sHZrZ89gbhgFRz4lUGxd0qiQ6o=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.336179+00 2025-12-09 10:14:54.336183+00 7162 LZ1235#4号色 SPMX-20240815302310 \N \N \N 1 \N [{"file_id": "3d8cf4d2-7eac-4081-8899-fa742071045d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c3c44af4fe4aba8e948fd848be0306.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c3c44af4fe4aba8e948fd848be0306.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c3c44af4fe4aba8e948fd848be0306.jpg", "file_size": 19601, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c3c44af4fe4aba8e948fd848be0306.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c3c44af4fe4aba8e948fd848be0306.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c3c44af4fe4aba8e948fd848be0306.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c3c44af4fe4aba8e948fd848be0306.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c3c44af4fe4aba8e948fd848be0306.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXoPQxizAb3iKAqZh2khi22ShZg=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.337654+00 2025-12-09 10:14:54.33766+00 7163 C297#黑色 SPMX-20240815302306 \N \N \N 1 \N [{"file_id": "53c77743-04ba-4af8-bbfe-9e4ee8330e93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65a2e145199b417faa0508acb32b4940.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65a2e145199b417faa0508acb32b4940.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65a2e145199b417faa0508acb32b4940.jpg", "file_size": 13335, "is_delete": false, "file_type": 1, "original_file_name": "C297#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a2e145199b417faa0508acb32b4940.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a2e145199b417faa0508acb32b4940.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a2e145199b417faa0508acb32b4940.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65a2e145199b417faa0508acb32b4940.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65a2e145199b417faa0508acb32b4940.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqveEgatBJRw3RVZBWkHcVoO1oE=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.339303+00 2025-12-09 10:14:54.339307+00 7164 23-2106#A1-XL SPMX-20240815302315 \N \N \N 1 \N [{"file_id": "8d3b4469-fc9a-4057-aaf6-adfb0fb92d2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c05bf1d404f44cdb7c620ae932fccf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c05bf1d404f44cdb7c620ae932fccf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c05bf1d404f44cdb7c620ae932fccf2.jpg", "file_size": 22885, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1-XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c05bf1d404f44cdb7c620ae932fccf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c05bf1d404f44cdb7c620ae932fccf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c05bf1d404f44cdb7c620ae932fccf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c05bf1d404f44cdb7c620ae932fccf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c05bf1d404f44cdb7c620ae932fccf2.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9rG4HZIb8ImL6JDeDuBtVE4zws=", "createTime": "2024-08-15 14:44:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.34111+00 2025-12-09 10:14:54.341115+00 7165 JTSS015# SPMX-20240815302323 \N \N \N 1 \N [{"file_id": "22191739-cafb-4a73-ac5a-5e12ebcae147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d76da73a23f4d96999b2c14015bd372.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d76da73a23f4d96999b2c14015bd372.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d76da73a23f4d96999b2c14015bd372.jpg", "file_size": 9791, "is_delete": false, "file_type": 1, "original_file_name": "JTSS015#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d76da73a23f4d96999b2c14015bd372.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d76da73a23f4d96999b2c14015bd372.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d76da73a23f4d96999b2c14015bd372.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d76da73a23f4d96999b2c14015bd372.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d76da73a23f4d96999b2c14015bd372.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5qqVwwjEBZpVr0EnUL6wutfbXA=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.34256+00 2025-12-09 10:14:54.342564+00 7166 DK-005-3 SPMX-20240815302320 \N \N \N 1 \N [{"file_id": "614540ac-4605-45ed-851c-ca69bbfe9fde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57d2252d0aca4fa69a06bc466835e1e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57d2252d0aca4fa69a06bc466835e1e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57d2252d0aca4fa69a06bc466835e1e6.jpg", "file_size": 30942, "is_delete": false, "file_type": 1, "original_file_name": "DK-005-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2252d0aca4fa69a06bc466835e1e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2252d0aca4fa69a06bc466835e1e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2252d0aca4fa69a06bc466835e1e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57d2252d0aca4fa69a06bc466835e1e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57d2252d0aca4fa69a06bc466835e1e6.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sOb5xJr3qY_fEHiYmZitbvRWZI=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.344002+00 2025-12-09 10:14:54.344007+00 7167 LJ001FW#VS-D3 SPMX-20240815302319 \N \N \N 1 \N [{"file_id": "a1f47339-4c49-47b9-8e30-c54ff327c253", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "941b685240a74e14b299f1a7893f9b25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "941b685240a74e14b299f1a7893f9b25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "941b685240a74e14b299f1a7893f9b25.jpg", "file_size": 16800, "is_delete": false, "file_type": 1, "original_file_name": "LJ001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b685240a74e14b299f1a7893f9b25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b685240a74e14b299f1a7893f9b25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941b685240a74e14b299f1a7893f9b25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/941b685240a74e14b299f1a7893f9b25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/941b685240a74e14b299f1a7893f9b25.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZV5MtyHwiE2dF4O4YIh5CIQoDg=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.345444+00 2025-12-09 10:14:54.345448+00 7168 8016FWF#XL SPMX-20240815302318 \N \N \N 1 \N [{"file_id": "39514193-17b7-442f-a382-e03adcec4385", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcb3758e3eb54a81ab53a47b159b014d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcb3758e3eb54a81ab53a47b159b014d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcb3758e3eb54a81ab53a47b159b014d.jpg", "file_size": 24377, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3758e3eb54a81ab53a47b159b014d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3758e3eb54a81ab53a47b159b014d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3758e3eb54a81ab53a47b159b014d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcb3758e3eb54a81ab53a47b159b014d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcb3758e3eb54a81ab53a47b159b014d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdGblofhg3VVLP9H3aIKdUhlnwk=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.347139+00 2025-12-09 10:14:54.347144+00 7169 0003-316#白色匹布 SPMX-20240815302322 \N \N \N 1 \N [{"file_id": "4de1a879-f523-49c7-ae07-04d059aa0705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1653f1c5f14a48319a79919bdcab59cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1653f1c5f14a48319a79919bdcab59cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1653f1c5f14a48319a79919bdcab59cc.jpg", "file_size": 24794, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653f1c5f14a48319a79919bdcab59cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653f1c5f14a48319a79919bdcab59cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653f1c5f14a48319a79919bdcab59cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1653f1c5f14a48319a79919bdcab59cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1653f1c5f14a48319a79919bdcab59cc.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMYVAI2cVia4pIf27fKMWaJzfNE=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.348811+00 2025-12-09 10:14:54.348816+00 7170 23-2106#A1正身2XL SPMX-20240815302321 \N \N \N 1 \N [{"file_id": "a31ff9c3-233e-4392-bde9-6f9bd3e9bf81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "997a65c5332d42aeb9904d876b188b0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "997a65c5332d42aeb9904d876b188b0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "997a65c5332d42aeb9904d876b188b0e.jpg", "file_size": 22849, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1正身2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997a65c5332d42aeb9904d876b188b0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997a65c5332d42aeb9904d876b188b0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997a65c5332d42aeb9904d876b188b0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/997a65c5332d42aeb9904d876b188b0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/997a65c5332d42aeb9904d876b188b0e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5CySyn4hT9BFjYNFclDwSvOgSo=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.350409+00 2025-12-09 10:14:54.350414+00 7171 HT0101-118#绿 SPMX-20240815302324 \N \N \N 1 \N [{"file_id": "d8e4c8c3-e771-40fd-a412-123be81e03fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca20ebdc5ab945e98447d1f43db5bd1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca20ebdc5ab945e98447d1f43db5bd1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca20ebdc5ab945e98447d1f43db5bd1c.jpg", "file_size": 18112, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-118#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca20ebdc5ab945e98447d1f43db5bd1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca20ebdc5ab945e98447d1f43db5bd1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca20ebdc5ab945e98447d1f43db5bd1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca20ebdc5ab945e98447d1f43db5bd1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca20ebdc5ab945e98447d1f43db5bd1c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYzxgUApaeGYnnyeayk98hLI664=", "createTime": "2024-08-15 14:44:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.352004+00 2025-12-09 10:14:54.352009+00 7172 LZ1235#上身1号色 SPMX-20240815302325 \N \N \N 1 \N [{"file_id": "71ac0305-7dd8-494e-8ba8-7e17229aa918", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg", "file_size": 19137, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8237ede14d43d9ad91d0e2b8b2bb5c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOe6zzO2SVodRgHH3xeTrz1A_bU=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.35387+00 2025-12-09 10:14:54.353875+00 7173 C298#宝兰 SPMX-20240815302328 \N \N \N 1 \N [{"file_id": "397dc8a4-68dd-4052-8805-d3c185fe26b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "664f04ad32db4d14b30afff32e40ab3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "664f04ad32db4d14b30afff32e40ab3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "664f04ad32db4d14b30afff32e40ab3b.jpg", "file_size": 20365, "is_delete": false, "file_type": 1, "original_file_name": "C298#宝兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664f04ad32db4d14b30afff32e40ab3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664f04ad32db4d14b30afff32e40ab3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664f04ad32db4d14b30afff32e40ab3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/664f04ad32db4d14b30afff32e40ab3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/664f04ad32db4d14b30afff32e40ab3b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Wf1L03aTKhQ3Jj-cWAGJgUbXao=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.355764+00 2025-12-09 10:14:54.355768+00 7174 LZ1235#上身2号色 SPMX-20240815302331 \N \N \N 1 \N [{"file_id": "15df39f6-6319-473b-a58d-80a6f17e237c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6540b839fc6459f8c7221a95581ea92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6540b839fc6459f8c7221a95581ea92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6540b839fc6459f8c7221a95581ea92.jpg", "file_size": 16764, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6540b839fc6459f8c7221a95581ea92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6540b839fc6459f8c7221a95581ea92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6540b839fc6459f8c7221a95581ea92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6540b839fc6459f8c7221a95581ea92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6540b839fc6459f8c7221a95581ea92.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTfdqyv6ZSatTBUw_j4lj5Q0tFQ=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.357634+00 2025-12-09 10:14:54.357639+00 7175 FHXGPK-065-3 SPMX-20240815302327 \N \N \N 1 \N [{"file_id": "1f459e56-2b0d-4809-bdc7-cfce2cd851d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe91b88d64fa4e36bc6d27ae166723fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe91b88d64fa4e36bc6d27ae166723fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe91b88d64fa4e36bc6d27ae166723fe.jpg", "file_size": 30206, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-065-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe91b88d64fa4e36bc6d27ae166723fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe91b88d64fa4e36bc6d27ae166723fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe91b88d64fa4e36bc6d27ae166723fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe91b88d64fa4e36bc6d27ae166723fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe91b88d64fa4e36bc6d27ae166723fe.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K65j7Tl4SztrfyJernDwsb1ao2c=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.359507+00 2025-12-09 10:14:54.359511+00 7176 8016FWF#女2XL SPMX-20240815302329 \N \N \N 1 \N [{"file_id": "e7b90896-07d4-4e4d-b493-d8aa81c34513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "394a348979f2454797d64f663585457f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "394a348979f2454797d64f663585457f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "394a348979f2454797d64f663585457f.jpg", "file_size": 11805, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394a348979f2454797d64f663585457f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394a348979f2454797d64f663585457f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394a348979f2454797d64f663585457f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/394a348979f2454797d64f663585457f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/394a348979f2454797d64f663585457f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCdsPVHdSejB5BKVRPMMXs5EHl4=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.361378+00 2025-12-09 10:14:54.361383+00 7177 23-2106#A1正身L SPMX-20240815302336 \N \N \N 1 \N [{"file_id": "3af07e50-4712-4652-90d3-d403085625d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c78d9308ff54489932621a1f630691e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c78d9308ff54489932621a1f630691e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c78d9308ff54489932621a1f630691e.jpg", "file_size": 21704, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c78d9308ff54489932621a1f630691e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c78d9308ff54489932621a1f630691e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c78d9308ff54489932621a1f630691e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c78d9308ff54489932621a1f630691e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c78d9308ff54489932621a1f630691e.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RK9fD7qiaokrRR63io3iKttZt4U=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.363473+00 2025-12-09 10:14:54.363478+00 7178 1061#下节彩兰 SPMX-20240815302337 \N \N \N 1 \N [{"file_id": "ff18cdb2-7386-4cf9-ba10-f53a3c65a861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0174aad0f09439ea92dc12b46ea2971.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0174aad0f09439ea92dc12b46ea2971.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0174aad0f09439ea92dc12b46ea2971.jpg", "file_size": 21217, "is_delete": false, "file_type": 1, "original_file_name": "1061#下节彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0174aad0f09439ea92dc12b46ea2971.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0174aad0f09439ea92dc12b46ea2971.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0174aad0f09439ea92dc12b46ea2971.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0174aad0f09439ea92dc12b46ea2971.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0174aad0f09439ea92dc12b46ea2971.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cweAOr_q7mh7ozCOHimcMRImK6A=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.365546+00 2025-12-09 10:14:54.365551+00 7179 JTSS015FW#VS-D3 SPMX-20240815302335 \N \N \N 1 \N [{"file_id": "b58dc19e-f905-44d2-af6d-64fb943140c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2237266a7d644578b099dbfb3a51b913.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2237266a7d644578b099dbfb3a51b913.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2237266a7d644578b099dbfb3a51b913.jpg", "file_size": 10134, "is_delete": false, "file_type": 1, "original_file_name": "JTSS015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2237266a7d644578b099dbfb3a51b913.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2237266a7d644578b099dbfb3a51b913.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2237266a7d644578b099dbfb3a51b913.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2237266a7d644578b099dbfb3a51b913.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2237266a7d644578b099dbfb3a51b913.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kp4uuvkHsJfiIVpCfHRt_BvHKFY=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.367401+00 2025-12-09 10:14:54.367406+00 7180 1061#下节土黄 SPMX-20240815302326 \N \N \N 1 \N [{"file_id": "6a925b43-7a09-45c6-b8dc-90ac1a4d6e97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7746e71f022747efb8d8847c6a901648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7746e71f022747efb8d8847c6a901648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7746e71f022747efb8d8847c6a901648.jpg", "file_size": 22014, "is_delete": false, "file_type": 1, "original_file_name": "1061#下节土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7746e71f022747efb8d8847c6a901648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7746e71f022747efb8d8847c6a901648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7746e71f022747efb8d8847c6a901648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7746e71f022747efb8d8847c6a901648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7746e71f022747efb8d8847c6a901648.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOTx5vtjacWInFyjyP-C8DbJTiU=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.369237+00 2025-12-09 10:14:54.369242+00 7181 HT0101-118#蓝 SPMX-20240815302333 \N \N \N 1 \N [{"file_id": "f2fc65bc-157a-46cf-a2b6-b3f675df093b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f04356b96a40868e6486018ed31274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f04356b96a40868e6486018ed31274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f04356b96a40868e6486018ed31274.jpg", "file_size": 17954, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-118#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f04356b96a40868e6486018ed31274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f04356b96a40868e6486018ed31274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f04356b96a40868e6486018ed31274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f04356b96a40868e6486018ed31274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f04356b96a40868e6486018ed31274.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEjO5YUzQ-yko6tR7oPZGD1VGs4=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.370811+00 2025-12-09 10:14:54.370816+00 7182 LJ001FWE#VS-D3 SPMX-20240815302330 \N \N \N 1 \N [{"file_id": "de1bf47a-6583-4383-a9bf-4d271761c6ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811968934ee14b22bfccca327abf9d73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811968934ee14b22bfccca327abf9d73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811968934ee14b22bfccca327abf9d73.jpg", "file_size": 8657, "is_delete": false, "file_type": 1, "original_file_name": "LJ001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811968934ee14b22bfccca327abf9d73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811968934ee14b22bfccca327abf9d73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811968934ee14b22bfccca327abf9d73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811968934ee14b22bfccca327abf9d73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811968934ee14b22bfccca327abf9d73.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHCnjAx3uo5NzyDvzoV4FCIvOK4=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.372394+00 2025-12-09 10:14:54.372398+00 7183 DK-005-4 SPMX-20240815302334 \N \N \N 1 \N [{"file_id": "fa200cb8-ca79-4fd7-ab34-733d6b287c5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc615cd56d0440d19f84dca049a0b60d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc615cd56d0440d19f84dca049a0b60d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc615cd56d0440d19f84dca049a0b60d.jpg", "file_size": 36754, "is_delete": false, "file_type": 1, "original_file_name": "DK-005-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc615cd56d0440d19f84dca049a0b60d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc615cd56d0440d19f84dca049a0b60d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc615cd56d0440d19f84dca049a0b60d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc615cd56d0440d19f84dca049a0b60d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc615cd56d0440d19f84dca049a0b60d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxsUTqMH12Lw-s7vSUSO-hvtBnk=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.374274+00 2025-12-09 10:14:54.374279+00 7184 FHXGPK-065-4 SPMX-20240815302338 \N \N \N 1 \N [{"file_id": "b9d8ad67-5dce-403e-94d9-647d0f513ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "504d3270412a4029945cca80edeb73c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "504d3270412a4029945cca80edeb73c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "504d3270412a4029945cca80edeb73c7.jpg", "file_size": 26500, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-065-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504d3270412a4029945cca80edeb73c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504d3270412a4029945cca80edeb73c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504d3270412a4029945cca80edeb73c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/504d3270412a4029945cca80edeb73c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/504d3270412a4029945cca80edeb73c7.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MduNCEyISh-3iVL02x8oNTowgR0=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.375862+00 2025-12-09 10:14:54.375866+00 7185 LJ002FW#VS-D3 SPMX-20240815302342 \N \N \N 1 \N [{"file_id": "70eef685-3ff7-425f-998a-061ead9dbcbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb8f95d0d712460c8320a6d2a463b443.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb8f95d0d712460c8320a6d2a463b443.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb8f95d0d712460c8320a6d2a463b443.jpg", "file_size": 15105, "is_delete": false, "file_type": 1, "original_file_name": "LJ002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8f95d0d712460c8320a6d2a463b443.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8f95d0d712460c8320a6d2a463b443.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb8f95d0d712460c8320a6d2a463b443.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb8f95d0d712460c8320a6d2a463b443.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb8f95d0d712460c8320a6d2a463b443.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJ7GpSrafGuFNXLx7Zv515H4_a8=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.377439+00 2025-12-09 10:14:54.377443+00 7186 0003-316#粉色 SPMX-20240815302341 \N \N \N 1 \N [{"file_id": "cfb70c34-592c-43b3-bd8e-f7530794f987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f01f7c62d91349469b5dd7035d42589c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f01f7c62d91349469b5dd7035d42589c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f01f7c62d91349469b5dd7035d42589c.jpg", "file_size": 19608, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01f7c62d91349469b5dd7035d42589c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01f7c62d91349469b5dd7035d42589c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01f7c62d91349469b5dd7035d42589c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f01f7c62d91349469b5dd7035d42589c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f01f7c62d91349469b5dd7035d42589c.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5LTMixzPnI7RROo0zREZ609oN8=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.379296+00 2025-12-09 10:14:54.379301+00 7187 8016FWF#女3XL SPMX-20240815302340 \N \N \N 1 \N [{"file_id": "b5284099-3a71-4d92-ad22-d504c0c34683", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01dd63025d2647ce8e11f8cfc2e2cb50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01dd63025d2647ce8e11f8cfc2e2cb50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01dd63025d2647ce8e11f8cfc2e2cb50.jpg", "file_size": 12341, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd63025d2647ce8e11f8cfc2e2cb50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd63025d2647ce8e11f8cfc2e2cb50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd63025d2647ce8e11f8cfc2e2cb50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01dd63025d2647ce8e11f8cfc2e2cb50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01dd63025d2647ce8e11f8cfc2e2cb50.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-q3GXjeHicD_xfNRKM_ii-Fm2x0=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.38089+00 2025-12-09 10:14:54.380895+00 7188 LZ1235#上身3号色 SPMX-20240815302343 \N \N \N 1 \N [{"file_id": "af9612d9-ac99-48df-87ba-1ef129a80c2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b6ed22b6014c26901b0bc52182a2ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b6ed22b6014c26901b0bc52182a2ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b6ed22b6014c26901b0bc52182a2ab.jpg", "file_size": 16894, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b6ed22b6014c26901b0bc52182a2ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b6ed22b6014c26901b0bc52182a2ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b6ed22b6014c26901b0bc52182a2ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b6ed22b6014c26901b0bc52182a2ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b6ed22b6014c26901b0bc52182a2ab.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dTSBXeGfkizrr5HyTMuoAAoBz0=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.38249+00 2025-12-09 10:14:54.382495+00 7189 DK-005 SPMX-20240815302344 \N \N \N 1 \N [{"file_id": "f87d5f4c-20f1-4480-80a6-563b88bf8db3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "821bda8289634448b27ec32efebc8532.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "821bda8289634448b27ec32efebc8532.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "821bda8289634448b27ec32efebc8532.jpg", "file_size": 33855, "is_delete": false, "file_type": 1, "original_file_name": "DK-005.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821bda8289634448b27ec32efebc8532.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821bda8289634448b27ec32efebc8532.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821bda8289634448b27ec32efebc8532.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/821bda8289634448b27ec32efebc8532.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/821bda8289634448b27ec32efebc8532.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dm4k7XHCxflcaVgrjkDfTd01kt0=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.384331+00 2025-12-09 10:14:54.384336+00 7190 23-2106#A1正身XL SPMX-20240815302347 \N \N \N 1 \N [{"file_id": "f493da60-78a5-400f-a3e7-dc1f202259ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e29ee09f1fa748379d8b50a4dfa0bd5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e29ee09f1fa748379d8b50a4dfa0bd5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e29ee09f1fa748379d8b50a4dfa0bd5d.jpg", "file_size": 21772, "is_delete": false, "file_type": 1, "original_file_name": "23-2106#A1正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ee09f1fa748379d8b50a4dfa0bd5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ee09f1fa748379d8b50a4dfa0bd5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ee09f1fa748379d8b50a4dfa0bd5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e29ee09f1fa748379d8b50a4dfa0bd5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e29ee09f1fa748379d8b50a4dfa0bd5d.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kiNBCnXfJFsY3JyucYiXf8iYD0o=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.385934+00 2025-12-09 10:14:54.38594+00 7191 C298#杏色 SPMX-20240815302339 \N \N \N 1 \N [{"file_id": "202c0813-dddf-426d-a6c1-f7026c26721a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af601f8dd6a6402dafffb4ee48ccb75b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af601f8dd6a6402dafffb4ee48ccb75b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af601f8dd6a6402dafffb4ee48ccb75b.jpg", "file_size": 15097, "is_delete": false, "file_type": 1, "original_file_name": "C298#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af601f8dd6a6402dafffb4ee48ccb75b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af601f8dd6a6402dafffb4ee48ccb75b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af601f8dd6a6402dafffb4ee48ccb75b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af601f8dd6a6402dafffb4ee48ccb75b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af601f8dd6a6402dafffb4ee48ccb75b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5e-YCnoxIYwZTIROldsYsaX7EbM=", "createTime": "2024-08-15 14:44:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.38753+00 2025-12-09 10:14:54.387534+00 7192 HT0101-118#黄 SPMX-20240815302346 \N \N \N 1 \N [{"file_id": "e5baad82-3115-4f8b-ba9f-f751e224c265", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a59e14f095845cc983d1e33de19b5d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a59e14f095845cc983d1e33de19b5d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a59e14f095845cc983d1e33de19b5d4.jpg", "file_size": 17542, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-118#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a59e14f095845cc983d1e33de19b5d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a59e14f095845cc983d1e33de19b5d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a59e14f095845cc983d1e33de19b5d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a59e14f095845cc983d1e33de19b5d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a59e14f095845cc983d1e33de19b5d4.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Us-elefGwwg8kFpg1AQZK0CDDzQ=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.389429+00 2025-12-09 10:14:54.389435+00 7193 JTSS015FW-VS-D3 SPMX-20240815302345 \N \N \N 1 \N [{"file_id": "59d2a815-eb87-4881-b14c-bd7bae3ed3fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e32ecd2587945d0a6559a1b007c09dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e32ecd2587945d0a6559a1b007c09dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e32ecd2587945d0a6559a1b007c09dd.jpg", "file_size": 11591, "is_delete": false, "file_type": 1, "original_file_name": "JTSS015FW-VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e32ecd2587945d0a6559a1b007c09dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e32ecd2587945d0a6559a1b007c09dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e32ecd2587945d0a6559a1b007c09dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e32ecd2587945d0a6559a1b007c09dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e32ecd2587945d0a6559a1b007c09dd.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZffNFk89EqPJgMKZv7tBTSbmGUU=", "createTime": "2024-08-15 14:44:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.39107+00 2025-12-09 10:14:54.391075+00 7194 HT0101-118#黑 SPMX-20240815302351 \N \N \N 1 \N [{"file_id": "27d98854-8a3b-4745-8afe-9590285f0a4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62e4fad2daa548e481312c19e00ef679.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62e4fad2daa548e481312c19e00ef679.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62e4fad2daa548e481312c19e00ef679.jpg", "file_size": 18574, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-118#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4fad2daa548e481312c19e00ef679.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4fad2daa548e481312c19e00ef679.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4fad2daa548e481312c19e00ef679.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62e4fad2daa548e481312c19e00ef679.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62e4fad2daa548e481312c19e00ef679.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MddomT8fKtOKFw1rKLl3ueBWMfc=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.392718+00 2025-12-09 10:14:54.392723+00 7195 FHXGPK-065-5 SPMX-20240815302348 \N \N \N 1 \N [{"file_id": "85b5a8a2-a653-4db8-bfb3-92f88972ae1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40a67743e80a4e76b93adbd9d25b350f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40a67743e80a4e76b93adbd9d25b350f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40a67743e80a4e76b93adbd9d25b350f.jpg", "file_size": 27902, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-065-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a67743e80a4e76b93adbd9d25b350f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a67743e80a4e76b93adbd9d25b350f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a67743e80a4e76b93adbd9d25b350f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40a67743e80a4e76b93adbd9d25b350f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40a67743e80a4e76b93adbd9d25b350f.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9w_R0MC4LqgLp3eqbulWmxz4uU=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.394455+00 2025-12-09 10:14:54.39446+00 7196 23-2112#-A10#袖子3XL SPMX-20240815302352 \N \N \N 1 \N [{"file_id": "4a4a1faf-c56e-4518-abc3-24a40af541ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d002a98141245dc8c27b719d9cdfca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d002a98141245dc8c27b719d9cdfca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d002a98141245dc8c27b719d9cdfca8.jpg", "file_size": 9770, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10#袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d002a98141245dc8c27b719d9cdfca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d002a98141245dc8c27b719d9cdfca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d002a98141245dc8c27b719d9cdfca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d002a98141245dc8c27b719d9cdfca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d002a98141245dc8c27b719d9cdfca8.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUK_rV3dxzpUM-TR6FFnwJn_-80=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.396251+00 2025-12-09 10:14:54.396256+00 7197 LJ002FWE#VS-D3 SPMX-20240815302354 \N \N \N 1 \N [{"file_id": "fdfd028c-c145-4c58-8762-f41fc011d948", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "856df3b625cf45b9a7dc43467b04b406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "856df3b625cf45b9a7dc43467b04b406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "856df3b625cf45b9a7dc43467b04b406.jpg", "file_size": 18198, "is_delete": false, "file_type": 1, "original_file_name": "LJ002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856df3b625cf45b9a7dc43467b04b406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856df3b625cf45b9a7dc43467b04b406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856df3b625cf45b9a7dc43467b04b406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/856df3b625cf45b9a7dc43467b04b406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/856df3b625cf45b9a7dc43467b04b406.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-rBvn52yBHQslXzUSc8dQuSrZM=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.397885+00 2025-12-09 10:14:54.397889+00 7198 C298#枣红 SPMX-20240815302349 \N \N \N 1 \N [{"file_id": "c911d69c-8556-4a37-af84-a08746a5268d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "064aeeab81b94791b10a70d12e6d9505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "064aeeab81b94791b10a70d12e6d9505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "064aeeab81b94791b10a70d12e6d9505.jpg", "file_size": 18726, "is_delete": false, "file_type": 1, "original_file_name": "C298#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064aeeab81b94791b10a70d12e6d9505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064aeeab81b94791b10a70d12e6d9505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/064aeeab81b94791b10a70d12e6d9505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/064aeeab81b94791b10a70d12e6d9505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/064aeeab81b94791b10a70d12e6d9505.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peqnO6IgqK5CYFjbJhnvBRIPZs8=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.399384+00 2025-12-09 10:14:54.399388+00 7199 LZ1235#上身4号色 SPMX-20240815302350 \N \N \N 1 \N [{"file_id": "49fe15f7-06e5-4741-bf4f-2a1eb0095d96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44f75c26b0804b12bc4c0cb84681d89a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44f75c26b0804b12bc4c0cb84681d89a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44f75c26b0804b12bc4c0cb84681d89a.jpg", "file_size": 19546, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f75c26b0804b12bc4c0cb84681d89a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f75c26b0804b12bc4c0cb84681d89a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f75c26b0804b12bc4c0cb84681d89a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44f75c26b0804b12bc4c0cb84681d89a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44f75c26b0804b12bc4c0cb84681d89a.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QR-UBlezMX1lKUv575Xnn9lzhg=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.400805+00 2025-12-09 10:14:54.400809+00 7200 1061#下节浅蓝 SPMX-20240815302353 \N \N \N 1 \N [{"file_id": "070eb81d-7434-4b49-8118-83512fc88fff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78c180d9224144b9a8110022393204ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78c180d9224144b9a8110022393204ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78c180d9224144b9a8110022393204ea.jpg", "file_size": 21921, "is_delete": false, "file_type": 1, "original_file_name": "1061#下节浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c180d9224144b9a8110022393204ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c180d9224144b9a8110022393204ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c180d9224144b9a8110022393204ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78c180d9224144b9a8110022393204ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78c180d9224144b9a8110022393204ea.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s85kVUa-kry4azFPWWGBgt0LWb8=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.402204+00 2025-12-09 10:14:54.402208+00 7201 FHXGPK-066-1 SPMX-20240815302359 \N \N \N 1 \N [{"file_id": "f701075f-58bb-4c47-9097-d40a3f5255c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c60ebba589a4c268be024f389808fc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c60ebba589a4c268be024f389808fc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c60ebba589a4c268be024f389808fc1.jpg", "file_size": 31954, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-066-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c60ebba589a4c268be024f389808fc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c60ebba589a4c268be024f389808fc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c60ebba589a4c268be024f389808fc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c60ebba589a4c268be024f389808fc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c60ebba589a4c268be024f389808fc1.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLDx3TnnphasvAynvWldqkI1IOY=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.40359+00 2025-12-09 10:14:54.403595+00 7202 8016FWF#女L+童10 SPMX-20240815302358 \N \N \N 1 \N [{"file_id": "d73c8030-68cb-499d-917a-2daf70f42965", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "867bbae81b474365ba80f7b49b3613a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "867bbae81b474365ba80f7b49b3613a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "867bbae81b474365ba80f7b49b3613a0.jpg", "file_size": 9021, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女L+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867bbae81b474365ba80f7b49b3613a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867bbae81b474365ba80f7b49b3613a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867bbae81b474365ba80f7b49b3613a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/867bbae81b474365ba80f7b49b3613a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/867bbae81b474365ba80f7b49b3613a0.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oiFi4Ccx5bmj10R67P1Hqd3o_EM=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.405009+00 2025-12-09 10:14:54.405013+00 7203 LZ1235#上身不下领1号色 SPMX-20240815302362 \N \N \N 1 \N [{"file_id": "bd2fab2a-be08-47b1-9b38-ac8fdd54526c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c554db8322254bd3b3672a7a2c4fc761.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c554db8322254bd3b3672a7a2c4fc761.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c554db8322254bd3b3672a7a2c4fc761.jpg", "file_size": 19448, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身不下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c554db8322254bd3b3672a7a2c4fc761.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c554db8322254bd3b3672a7a2c4fc761.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c554db8322254bd3b3672a7a2c4fc761.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c554db8322254bd3b3672a7a2c4fc761.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c554db8322254bd3b3672a7a2c4fc761.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gwJePQgl41LTZg3vTg0jfiftbY=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:54.406408+00 2025-12-09 10:14:54.406413+00 7204 C298#黑色 SPMX-20240815302360 \N \N \N 1 \N [{"file_id": "96e0fb79-ab7f-4126-b0ef-1f1a807dda3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0716b040da4cee9f5e298b26e21c5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0716b040da4cee9f5e298b26e21c5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0716b040da4cee9f5e298b26e21c5b.jpg", "file_size": 19559, "is_delete": false, "file_type": 1, "original_file_name": "C298#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0716b040da4cee9f5e298b26e21c5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0716b040da4cee9f5e298b26e21c5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0716b040da4cee9f5e298b26e21c5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0716b040da4cee9f5e298b26e21c5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0716b040da4cee9f5e298b26e21c5b.jpg?e=1765361693&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hotzcdPzX8Yp-KASBWSCYYaHbcI=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.077584+00 2025-12-09 10:14:55.077596+00 7205 1061#下节白色 SPMX-20240815302361 \N \N \N 1 \N [{"file_id": "dd93d4fb-0b5b-4e82-a2dd-fca89771825c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24314f44de4a4ee6802d55b96967f76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24314f44de4a4ee6802d55b96967f76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24314f44de4a4ee6802d55b96967f76d.jpg", "file_size": 22082, "is_delete": false, "file_type": 1, "original_file_name": "1061#下节白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24314f44de4a4ee6802d55b96967f76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24314f44de4a4ee6802d55b96967f76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24314f44de4a4ee6802d55b96967f76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24314f44de4a4ee6802d55b96967f76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24314f44de4a4ee6802d55b96967f76d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuMayxa5epFTWcu8cUOoQRt4XNA=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.080313+00 2025-12-09 10:14:55.080325+00 7206 0003-316#粉色匹布 SPMX-20240815302355 \N \N \N 1 \N [{"file_id": "49c9f9a6-dc5e-404c-900f-3a86c2174f56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bec67c97f4f54f1d8d540cd3e68ac69a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bec67c97f4f54f1d8d540cd3e68ac69a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bec67c97f4f54f1d8d540cd3e68ac69a.jpg", "file_size": 23128, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec67c97f4f54f1d8d540cd3e68ac69a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec67c97f4f54f1d8d540cd3e68ac69a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec67c97f4f54f1d8d540cd3e68ac69a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bec67c97f4f54f1d8d540cd3e68ac69a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bec67c97f4f54f1d8d540cd3e68ac69a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVb6wDctxHRCKz8DcEHHp9qca2c=", "createTime": "2024-08-15 14:44:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.082618+00 2025-12-09 10:14:55.08263+00 7207 DK-008-3-批布 SPMX-20240815302357 \N \N \N 1 \N [{"file_id": "596994a9-9976-4371-80fb-f686e518487f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea1195fe61b9450c9df409daf9f5785c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea1195fe61b9450c9df409daf9f5785c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea1195fe61b9450c9df409daf9f5785c.jpg", "file_size": 32379, "is_delete": false, "file_type": 1, "original_file_name": "DK-008-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1195fe61b9450c9df409daf9f5785c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1195fe61b9450c9df409daf9f5785c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1195fe61b9450c9df409daf9f5785c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea1195fe61b9450c9df409daf9f5785c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea1195fe61b9450c9df409daf9f5785c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nacvs6oX7r4G33ICqs_2yrTeOXo=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.084608+00 2025-12-09 10:14:55.084614+00 7208 JTSS016#粉VS-D3 SPMX-20240815302356 \N \N \N 1 \N [{"file_id": "7c34edcc-cbbf-40f0-8319-56a33105bcdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b5bfb4318f240fca448ee7ed9639b12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b5bfb4318f240fca448ee7ed9639b12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b5bfb4318f240fca448ee7ed9639b12.jpg", "file_size": 12529, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5bfb4318f240fca448ee7ed9639b12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5bfb4318f240fca448ee7ed9639b12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5bfb4318f240fca448ee7ed9639b12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b5bfb4318f240fca448ee7ed9639b12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b5bfb4318f240fca448ee7ed9639b12.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XofWoxYZDOst6vrZmefy9Dc-KwM=", "createTime": "2024-08-15 14:45:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.086325+00 2025-12-09 10:14:55.086331+00 7209 DK1-001-1-批布 SPMX-20240815302365 \N \N \N 1 \N [{"file_id": "d0f08dc5-4a9e-4ddd-92f5-6494a42629b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "836b3ded796e44d195b00c116751a9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "836b3ded796e44d195b00c116751a9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "836b3ded796e44d195b00c116751a9a4.jpg", "file_size": 36504, "is_delete": false, "file_type": 1, "original_file_name": "DK1-001-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836b3ded796e44d195b00c116751a9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836b3ded796e44d195b00c116751a9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836b3ded796e44d195b00c116751a9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/836b3ded796e44d195b00c116751a9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/836b3ded796e44d195b00c116751a9a4.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOpfac50X9qM8i6KclV2c2i5FVI=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.087783+00 2025-12-09 10:14:55.087787+00 7210 8016FWF#女L+童12 SPMX-20240815302364 \N \N \N 1 \N [{"file_id": "750bed3d-2d00-46c5-a575-0e37c7130874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ed0fc39cdd2400386d4a9abc660db8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ed0fc39cdd2400386d4a9abc660db8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ed0fc39cdd2400386d4a9abc660db8e.jpg", "file_size": 9062, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女L+童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed0fc39cdd2400386d4a9abc660db8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed0fc39cdd2400386d4a9abc660db8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed0fc39cdd2400386d4a9abc660db8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ed0fc39cdd2400386d4a9abc660db8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ed0fc39cdd2400386d4a9abc660db8e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5_OVVmx6xQu37vpoVDMdrukxag=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.089232+00 2025-12-09 10:14:55.089236+00 7211 23-2112#-A10#袖子4XL SPMX-20240815302363 \N \N \N 1 \N [{"file_id": "3331cb2b-dea4-406c-88a8-be629fdfa50e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78d25667f6844ffcab18b1fe3a5b34f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78d25667f6844ffcab18b1fe3a5b34f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78d25667f6844ffcab18b1fe3a5b34f3.jpg", "file_size": 10300, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10#袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d25667f6844ffcab18b1fe3a5b34f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d25667f6844ffcab18b1fe3a5b34f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d25667f6844ffcab18b1fe3a5b34f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78d25667f6844ffcab18b1fe3a5b34f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78d25667f6844ffcab18b1fe3a5b34f3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vECqaEFB_7LfEB1iiyN6Pg1dAlE=", "createTime": "2024-08-15 14:45:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.090642+00 2025-12-09 10:14:55.090646+00 7212 HT0101-119#WJC22 SPMX-20240815302368 \N \N \N 1 \N [{"file_id": "00b054e9-ffb6-4f5f-b5db-69a3d2025cfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7fb353a45e645349e9e8a7f21ab119a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7fb353a45e645349e9e8a7f21ab119a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7fb353a45e645349e9e8a7f21ab119a.jpg", "file_size": 22594, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-119#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fb353a45e645349e9e8a7f21ab119a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fb353a45e645349e9e8a7f21ab119a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fb353a45e645349e9e8a7f21ab119a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7fb353a45e645349e9e8a7f21ab119a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7fb353a45e645349e9e8a7f21ab119a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_YscuAyN8ceAJTKqhAn7G8ZZ_Q=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.092045+00 2025-12-09 10:14:55.092049+00 7213 C3 SPMX-20240815302373 \N \N \N 1 \N [{"file_id": "a55e5eb8-9518-4dbf-878a-1647cd2b2ce0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "844b688010304a5aa81c8fb3a32b5ba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "844b688010304a5aa81c8fb3a32b5ba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "844b688010304a5aa81c8fb3a32b5ba3.jpg", "file_size": 55191, "is_delete": false, "file_type": 1, "original_file_name": "C3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844b688010304a5aa81c8fb3a32b5ba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844b688010304a5aa81c8fb3a32b5ba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/844b688010304a5aa81c8fb3a32b5ba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/844b688010304a5aa81c8fb3a32b5ba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/844b688010304a5aa81c8fb3a32b5ba3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:498-LoBH78nIrbHEvjp7tqrUteQ=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.093466+00 2025-12-09 10:14:55.093471+00 7214 1061#下节粉色 SPMX-20240815302372 \N \N \N 1 \N [{"file_id": "7677b303-72c3-4373-88f8-adf799faa20b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "305573ab35a249248c150ee8036bcc5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "305573ab35a249248c150ee8036bcc5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "305573ab35a249248c150ee8036bcc5b.jpg", "file_size": 22592, "is_delete": false, "file_type": 1, "original_file_name": "1061#下节粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305573ab35a249248c150ee8036bcc5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305573ab35a249248c150ee8036bcc5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305573ab35a249248c150ee8036bcc5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/305573ab35a249248c150ee8036bcc5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/305573ab35a249248c150ee8036bcc5b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEqNwxm83cPqb6S_gEW3A49akQ0=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.094881+00 2025-12-09 10:14:55.094886+00 7215 FHXGPK-066-2 SPMX-20240815302371 \N \N \N 1 \N [{"file_id": "4aa214ce-c294-4a9b-8b07-1a494c9bc61d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c33289134b14977824cb8e307167ab5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c33289134b14977824cb8e307167ab5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c33289134b14977824cb8e307167ab5.jpg", "file_size": 32351, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-066-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c33289134b14977824cb8e307167ab5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c33289134b14977824cb8e307167ab5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c33289134b14977824cb8e307167ab5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c33289134b14977824cb8e307167ab5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c33289134b14977824cb8e307167ab5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qi6e4JFndg_cRg88z5uPy2ZaLcg=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.096302+00 2025-12-09 10:14:55.096307+00 7216 JTSS016#粉叶子VS-D3 SPMX-20240815302369 \N \N \N 1 \N [{"file_id": "cf1ef5d5-d28b-4a88-acf8-aa56c6362fa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20a7472443b24703a1b6f5d8e6360202.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20a7472443b24703a1b6f5d8e6360202.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20a7472443b24703a1b6f5d8e6360202.jpg", "file_size": 9870, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016#粉叶子VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a7472443b24703a1b6f5d8e6360202.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a7472443b24703a1b6f5d8e6360202.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a7472443b24703a1b6f5d8e6360202.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20a7472443b24703a1b6f5d8e6360202.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20a7472443b24703a1b6f5d8e6360202.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHlRrq0GD7qICt2mRKrAWu8_wWM=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.097691+00 2025-12-09 10:14:55.097695+00 7217 0003-316#黄色 SPMX-20240815302367 \N \N \N 1 \N [{"file_id": "c7810881-7031-400b-95d0-619fc5dde9cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c9b2d9c9bc94135b4edd49877aebfe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c9b2d9c9bc94135b4edd49877aebfe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c9b2d9c9bc94135b4edd49877aebfe1.jpg", "file_size": 19272, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9b2d9c9bc94135b4edd49877aebfe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9b2d9c9bc94135b4edd49877aebfe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9b2d9c9bc94135b4edd49877aebfe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c9b2d9c9bc94135b4edd49877aebfe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c9b2d9c9bc94135b4edd49877aebfe1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0j1HY-itvqqjPUqczGe2wadva-o=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.099091+00 2025-12-09 10:14:55.099096+00 7218 LJ003FW#VS-D2 SPMX-20240815302366 \N \N \N 1 \N [{"file_id": "37d44383-3510-4bf8-a4a8-5bbe11c71259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86796a58c7a241eb867f705d75f4b4ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86796a58c7a241eb867f705d75f4b4ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86796a58c7a241eb867f705d75f4b4ef.jpg", "file_size": 14405, "is_delete": false, "file_type": 1, "original_file_name": "LJ003FW#VS-D2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86796a58c7a241eb867f705d75f4b4ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86796a58c7a241eb867f705d75f4b4ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86796a58c7a241eb867f705d75f4b4ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86796a58c7a241eb867f705d75f4b4ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86796a58c7a241eb867f705d75f4b4ef.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XEQMrJcgQ0AWj9ZsszWsWX3yWU=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.100486+00 2025-12-09 10:14:55.10049+00 7219 LZ1235#上身不下领2号色 SPMX-20240815302370 \N \N \N 1 \N [{"file_id": "4631b6bb-52a2-4047-a6a3-aec814b8e7eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdfaf95cd4194c59940cc9535519d3b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdfaf95cd4194c59940cc9535519d3b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdfaf95cd4194c59940cc9535519d3b5.jpg", "file_size": 16850, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身不下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfaf95cd4194c59940cc9535519d3b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfaf95cd4194c59940cc9535519d3b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfaf95cd4194c59940cc9535519d3b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdfaf95cd4194c59940cc9535519d3b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdfaf95cd4194c59940cc9535519d3b5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gg0ugLfnlCjwyX8kwa-6JsAW5W4=", "createTime": "2024-08-15 14:45:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.101927+00 2025-12-09 10:14:55.101931+00 7220 LZ1235#上身不下领3号色 SPMX-20240815302376 \N \N \N 1 \N [{"file_id": "38fa4417-0dc8-4804-88ab-ad4e4c49e07a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebbac94053594d7b86294a11fed785fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebbac94053594d7b86294a11fed785fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebbac94053594d7b86294a11fed785fd.jpg", "file_size": 17106, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身不下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbac94053594d7b86294a11fed785fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbac94053594d7b86294a11fed785fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbac94053594d7b86294a11fed785fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebbac94053594d7b86294a11fed785fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebbac94053594d7b86294a11fed785fd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9dJ9mTCUNHlxuCFgOUDMIKcvGM=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.103327+00 2025-12-09 10:14:55.103331+00 7221 0003-316#黄色匹布 SPMX-20240815302377 \N \N \N 1 \N [{"file_id": "19de5771-6e92-4867-bea7-af7bc3e1e420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1914c5b83d341beacd4a4a5876bdced.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1914c5b83d341beacd4a4a5876bdced.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1914c5b83d341beacd4a4a5876bdced.jpg", "file_size": 23088, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#黄色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1914c5b83d341beacd4a4a5876bdced.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1914c5b83d341beacd4a4a5876bdced.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1914c5b83d341beacd4a4a5876bdced.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1914c5b83d341beacd4a4a5876bdced.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1914c5b83d341beacd4a4a5876bdced.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bq8y0g9DmgF2jHR1WuETQl9x2eo=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.104708+00 2025-12-09 10:14:55.104713+00 7222 LJ003FW#VS-D3 SPMX-20240815302380 \N \N \N 1 \N [{"file_id": "1fb65116-0090-44e2-a122-ec5fb863d42e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080460eb700346529431b8907180ce01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080460eb700346529431b8907180ce01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080460eb700346529431b8907180ce01.jpg", "file_size": 14405, "is_delete": false, "file_type": 1, "original_file_name": "LJ003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080460eb700346529431b8907180ce01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080460eb700346529431b8907180ce01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080460eb700346529431b8907180ce01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080460eb700346529431b8907180ce01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080460eb700346529431b8907180ce01.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bda7crA8CnO5lam2zCZQ3jmRLlw=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.106131+00 2025-12-09 10:14:55.106135+00 7223 23-2112#-A10#领口通用 SPMX-20240815302375 \N \N \N 1 \N [{"file_id": "7fe42c30-c0d9-49cc-bd72-febc1e01510a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "996ac65907fc43abb0bf95e5545591d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "996ac65907fc43abb0bf95e5545591d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "996ac65907fc43abb0bf95e5545591d8.jpg", "file_size": 8119, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10#领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996ac65907fc43abb0bf95e5545591d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996ac65907fc43abb0bf95e5545591d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996ac65907fc43abb0bf95e5545591d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/996ac65907fc43abb0bf95e5545591d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/996ac65907fc43abb0bf95e5545591d8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pvi90mpy74LWVUmZlzLveof8ZL8=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.107819+00 2025-12-09 10:14:55.107824+00 7224 DK1-001-2-批布 SPMX-20240815302378 \N \N \N 1 \N [{"file_id": "9f115293-54db-4fa9-9d22-52d8ae7e21a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0489c736528141fc92784684c9fa20e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0489c736528141fc92784684c9fa20e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0489c736528141fc92784684c9fa20e9.jpg", "file_size": 32579, "is_delete": false, "file_type": 1, "original_file_name": "DK1-001-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0489c736528141fc92784684c9fa20e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0489c736528141fc92784684c9fa20e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0489c736528141fc92784684c9fa20e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0489c736528141fc92784684c9fa20e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0489c736528141fc92784684c9fa20e9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htp3ssXTrTg89TpFRbHmg4TSVpM=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.109201+00 2025-12-09 10:14:55.109205+00 7225 C30#WJC22 SPMX-20240815302384 \N \N \N 1 \N [{"file_id": "5d440201-63c5-451c-9255-6f6ce5c46842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cb2438076714fbe86926bfd7f325b00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cb2438076714fbe86926bfd7f325b00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cb2438076714fbe86926bfd7f325b00.jpg", "file_size": 19029, "is_delete": false, "file_type": 1, "original_file_name": "C30#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2438076714fbe86926bfd7f325b00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2438076714fbe86926bfd7f325b00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2438076714fbe86926bfd7f325b00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cb2438076714fbe86926bfd7f325b00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cb2438076714fbe86926bfd7f325b00.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMOKVDQJiSU8xWlghS5QVSycLIs=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.110607+00 2025-12-09 10:14:55.110611+00 7226 JTSS016#蓝VS-D3 SPMX-20240815302383 \N \N \N 1 \N [{"file_id": "c422413b-3473-4b83-a5e9-f15987a5c37a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56d0e6c30a4f440da3661ebee447d4b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56d0e6c30a4f440da3661ebee447d4b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56d0e6c30a4f440da3661ebee447d4b9.jpg", "file_size": 11870, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d0e6c30a4f440da3661ebee447d4b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d0e6c30a4f440da3661ebee447d4b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d0e6c30a4f440da3661ebee447d4b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56d0e6c30a4f440da3661ebee447d4b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56d0e6c30a4f440da3661ebee447d4b9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM6gEG612qGUv_KtmnqM3tACm-I=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.112009+00 2025-12-09 10:14:55.112013+00 7227 8016FWF#女M SPMX-20240815302386 \N \N \N 1 \N [{"file_id": "495aed70-9893-45b4-b38d-768b64f8883c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b8bf85f113d4d2985e1ed9c5728aacd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b8bf85f113d4d2985e1ed9c5728aacd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b8bf85f113d4d2985e1ed9c5728aacd.jpg", "file_size": 8435, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8bf85f113d4d2985e1ed9c5728aacd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8bf85f113d4d2985e1ed9c5728aacd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8bf85f113d4d2985e1ed9c5728aacd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b8bf85f113d4d2985e1ed9c5728aacd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b8bf85f113d4d2985e1ed9c5728aacd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGynemcBFNbKkrUnossWW7lu90Q=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.113442+00 2025-12-09 10:14:55.113447+00 7228 FHXGPK-066-3 SPMX-20240815302379 \N \N \N 1 \N [{"file_id": "c953503e-ac6f-482a-ad79-549321b44233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59250d9f65764ba1bb66edc58d6f5860.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59250d9f65764ba1bb66edc58d6f5860.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59250d9f65764ba1bb66edc58d6f5860.jpg", "file_size": 29020, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-066-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59250d9f65764ba1bb66edc58d6f5860.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59250d9f65764ba1bb66edc58d6f5860.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59250d9f65764ba1bb66edc58d6f5860.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59250d9f65764ba1bb66edc58d6f5860.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59250d9f65764ba1bb66edc58d6f5860.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGgwClKE4t7dm8ATPBQuk7eGrs8=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.114917+00 2025-12-09 10:14:55.114922+00 7229 1061#宝蓝底粉花 SPMX-20240815302381 \N \N \N 1 \N [{"file_id": "ec76f16d-6831-419d-8a49-9b2472f91c34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "559618d1009c457b99da09d72f65b999.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "559618d1009c457b99da09d72f65b999.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "559618d1009c457b99da09d72f65b999.jpg", "file_size": 17385, "is_delete": false, "file_type": 1, "original_file_name": "1061#宝蓝底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559618d1009c457b99da09d72f65b999.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559618d1009c457b99da09d72f65b999.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/559618d1009c457b99da09d72f65b999.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/559618d1009c457b99da09d72f65b999.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/559618d1009c457b99da09d72f65b999.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4zlQuZK24KsrXLf0gFfDCz09Sg=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.116338+00 2025-12-09 10:14:55.116342+00 7230 HT0101-12#橘色 SPMX-20240815302382 \N \N \N 1 \N [{"file_id": "3c9ed1fc-3984-4187-aa87-bfdde32c7d19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53b96f14f0274c25a14534960a83e12b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53b96f14f0274c25a14534960a83e12b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53b96f14f0274c25a14534960a83e12b.jpg", "file_size": 10571, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-12#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b96f14f0274c25a14534960a83e12b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b96f14f0274c25a14534960a83e12b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b96f14f0274c25a14534960a83e12b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53b96f14f0274c25a14534960a83e12b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53b96f14f0274c25a14534960a83e12b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Qkm-BXo2SivviDBCI5nzHFouf0=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.117775+00 2025-12-09 10:14:55.11778+00 7231 8016FWF#女M+童10 SPMX-20240815302374 \N \N \N 1 \N [{"file_id": "8fd037db-9682-4d40-8bdf-fcf0aa3916a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0fd0a0f0fb847fdbf2247e4f24464bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0fd0a0f0fb847fdbf2247e4f24464bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0fd0a0f0fb847fdbf2247e4f24464bc.jpg", "file_size": 8906, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女M+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd0a0f0fb847fdbf2247e4f24464bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd0a0f0fb847fdbf2247e4f24464bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd0a0f0fb847fdbf2247e4f24464bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0fd0a0f0fb847fdbf2247e4f24464bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0fd0a0f0fb847fdbf2247e4f24464bc.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BnS9qjLJgnE4qMkQOb3ZFPtQqLo=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.119385+00 2025-12-09 10:14:55.11939+00 7232 23-2112#-A10#领子通用 SPMX-20240815302385 \N \N \N 1 \N [{"file_id": "87d12bbd-a4c2-4a17-8b3d-ea43b9f639ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ac35eebd51c451a8cff3468ccaac994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ac35eebd51c451a8cff3468ccaac994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ac35eebd51c451a8cff3468ccaac994.jpg", "file_size": 10093, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10#领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac35eebd51c451a8cff3468ccaac994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac35eebd51c451a8cff3468ccaac994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac35eebd51c451a8cff3468ccaac994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ac35eebd51c451a8cff3468ccaac994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ac35eebd51c451a8cff3468ccaac994.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHPhFLD3c5m8sXB_eVSKH-hUDKU=", "createTime": "2024-08-15 14:45:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.120922+00 2025-12-09 10:14:55.120926+00 7233 DK1-001-3-批布 SPMX-20240815302389 \N \N \N 1 \N [{"file_id": "87e6163e-5e4b-440f-9842-cb2c957eb132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f495c4f4aa5b45b4aed56f05661a241f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f495c4f4aa5b45b4aed56f05661a241f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f495c4f4aa5b45b4aed56f05661a241f.jpg", "file_size": 32349, "is_delete": false, "file_type": 1, "original_file_name": "DK1-001-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f495c4f4aa5b45b4aed56f05661a241f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f495c4f4aa5b45b4aed56f05661a241f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f495c4f4aa5b45b4aed56f05661a241f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f495c4f4aa5b45b4aed56f05661a241f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f495c4f4aa5b45b4aed56f05661a241f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QECH07dG_p_OoV7FY2wmOQFXaBk=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.122346+00 2025-12-09 10:14:55.12235+00 7234 LZ1235#上身不下领4号色 SPMX-20240815302388 \N \N \N 1 \N [{"file_id": "33721827-7fad-4fe7-b613-fb82beefa3fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec22d4d1161348d3b0bef302ee36bb34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec22d4d1161348d3b0bef302ee36bb34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec22d4d1161348d3b0bef302ee36bb34.jpg", "file_size": 20190, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#上身不下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec22d4d1161348d3b0bef302ee36bb34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec22d4d1161348d3b0bef302ee36bb34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec22d4d1161348d3b0bef302ee36bb34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec22d4d1161348d3b0bef302ee36bb34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec22d4d1161348d3b0bef302ee36bb34.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qhv8yN03MkCiZO7LWO8FfL2Nj44=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.123763+00 2025-12-09 10:14:55.123767+00 7235 0003-316#黑色 SPMX-20240815302387 \N \N \N 1 \N [{"file_id": "d4be209e-d4a6-4a4e-a81c-572f7966d1d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f15879cce334b49bbb961ddc94fceed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f15879cce334b49bbb961ddc94fceed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f15879cce334b49bbb961ddc94fceed.jpg", "file_size": 20221, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f15879cce334b49bbb961ddc94fceed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f15879cce334b49bbb961ddc94fceed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f15879cce334b49bbb961ddc94fceed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f15879cce334b49bbb961ddc94fceed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f15879cce334b49bbb961ddc94fceed.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZnvVzvGkNXSNn7LbkIQGdIXdgnA=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.12518+00 2025-12-09 10:14:55.125185+00 7236 LJ003FW#VS-D3罗军 SPMX-20240815302391 \N \N \N 1 \N [{"file_id": "921cc2ab-7a05-44a4-bbaf-42a310d2e283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a654f8042a23402da9a334bc7e3674f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a654f8042a23402da9a334bc7e3674f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a654f8042a23402da9a334bc7e3674f2.jpg", "file_size": 8593, "is_delete": false, "file_type": 1, "original_file_name": "LJ003FW#VS-D3罗军.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a654f8042a23402da9a334bc7e3674f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a654f8042a23402da9a334bc7e3674f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a654f8042a23402da9a334bc7e3674f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a654f8042a23402da9a334bc7e3674f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a654f8042a23402da9a334bc7e3674f2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HA_F187dEYfrEFn9T7KCHaStVc0=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.126577+00 2025-12-09 10:14:55.126581+00 7237 LZ1235#下身1号色 SPMX-20240815302399 \N \N \N 1 \N [{"file_id": "a0a463ea-ac5c-4f92-a149-cb7bbedf2fcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba1b5e9460744481875fc0fb2b4fcecf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba1b5e9460744481875fc0fb2b4fcecf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba1b5e9460744481875fc0fb2b4fcecf.jpg", "file_size": 18067, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1b5e9460744481875fc0fb2b4fcecf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1b5e9460744481875fc0fb2b4fcecf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1b5e9460744481875fc0fb2b4fcecf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba1b5e9460744481875fc0fb2b4fcecf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba1b5e9460744481875fc0fb2b4fcecf.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxOdLz2L6EgfmpL0--tlzTDJW3E=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.127974+00 2025-12-09 10:14:55.127979+00 7238 8016FWF#女S+童14 SPMX-20240815302397 \N \N \N 1 \N [{"file_id": "6efec0e6-0ced-46ee-8446-e806b3e02146", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f43e2de53e7a48b281cc504023332e31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f43e2de53e7a48b281cc504023332e31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f43e2de53e7a48b281cc504023332e31.jpg", "file_size": 8712, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女S+童14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43e2de53e7a48b281cc504023332e31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43e2de53e7a48b281cc504023332e31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43e2de53e7a48b281cc504023332e31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f43e2de53e7a48b281cc504023332e31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f43e2de53e7a48b281cc504023332e31.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ICkuXDGynGcq3COY8REDWOtqqE=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.129379+00 2025-12-09 10:14:55.129383+00 7239 FHXGPK-066-4 SPMX-20240815302390 \N \N \N 1 \N [{"file_id": "bf6f1503-a4ea-4bd5-adbe-af693d9ea8c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98ed8b2c0be44b0897ebd9c7dabf4553.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98ed8b2c0be44b0897ebd9c7dabf4553.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98ed8b2c0be44b0897ebd9c7dabf4553.jpg", "file_size": 31111, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-066-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ed8b2c0be44b0897ebd9c7dabf4553.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ed8b2c0be44b0897ebd9c7dabf4553.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ed8b2c0be44b0897ebd9c7dabf4553.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98ed8b2c0be44b0897ebd9c7dabf4553.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98ed8b2c0be44b0897ebd9c7dabf4553.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Cbv5E1BKQ9a0lCwNHHnSCXKpuw=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.130821+00 2025-12-09 10:14:55.130826+00 7240 0003-316#黑色匹布 SPMX-20240815302398 \N \N \N 1 \N [{"file_id": "80bac0e4-f7df-4720-91b3-00ca94f5f5e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg", "file_size": 23288, "is_delete": false, "file_type": 1, "original_file_name": "0003-316#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2ebffbb39d4e3ab54053fc9c7c6fe3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-C1ZaavwUOLX06wL_XqRvbwM9Jk=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.132208+00 2025-12-09 10:14:55.132212+00 7241 HT0101-12#紫色 SPMX-20240815302395 \N \N \N 1 \N [{"file_id": "2cff5bc9-51a3-4f45-8c98-495a43a4df24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c98b223c39c544ef9e3915ca0929dd41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c98b223c39c544ef9e3915ca0929dd41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c98b223c39c544ef9e3915ca0929dd41.jpg", "file_size": 11109, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-12#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98b223c39c544ef9e3915ca0929dd41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98b223c39c544ef9e3915ca0929dd41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98b223c39c544ef9e3915ca0929dd41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c98b223c39c544ef9e3915ca0929dd41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c98b223c39c544ef9e3915ca0929dd41.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8W3-mFBRRGuqlv5Z6ljQ_a5irI=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.133597+00 2025-12-09 10:14:55.133602+00 7242 23-2112#-A10前后片3XL SPMX-20240815302393 \N \N \N 1 \N [{"file_id": "9e26b35d-bef7-403d-aebe-92e03804a86b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d54558d80b90433cb90d857e32c89878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d54558d80b90433cb90d857e32c89878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d54558d80b90433cb90d857e32c89878.jpg", "file_size": 10594, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54558d80b90433cb90d857e32c89878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54558d80b90433cb90d857e32c89878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54558d80b90433cb90d857e32c89878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d54558d80b90433cb90d857e32c89878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d54558d80b90433cb90d857e32c89878.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKXj2ynzsWJ87_3P0PPIYmGdjwc=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.135005+00 2025-12-09 10:14:55.135009+00 7243 C308#墨绿 SPMX-20240815302396 \N \N \N 1 \N [{"file_id": "ab172cd9-fe71-4dd5-8560-bf343ba81086", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef751b98cfec4322a1d90f7a9d8fb52f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef751b98cfec4322a1d90f7a9d8fb52f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef751b98cfec4322a1d90f7a9d8fb52f.jpg", "file_size": 46238, "is_delete": false, "file_type": 1, "original_file_name": "C308#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef751b98cfec4322a1d90f7a9d8fb52f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef751b98cfec4322a1d90f7a9d8fb52f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef751b98cfec4322a1d90f7a9d8fb52f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef751b98cfec4322a1d90f7a9d8fb52f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef751b98cfec4322a1d90f7a9d8fb52f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oA7MQ3DB9_5LCtjLDT_xK2fXdvc=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.136435+00 2025-12-09 10:14:55.136439+00 7244 1061#杏底紫花 SPMX-20240815302392 \N \N \N 1 \N [{"file_id": "1fd0af99-7619-4c70-b525-1e47ec4bdc28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74577aec14714cbfab2c05c5da814573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74577aec14714cbfab2c05c5da814573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74577aec14714cbfab2c05c5da814573.jpg", "file_size": 15273, "is_delete": false, "file_type": 1, "original_file_name": "1061#杏底紫花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74577aec14714cbfab2c05c5da814573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74577aec14714cbfab2c05c5da814573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74577aec14714cbfab2c05c5da814573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74577aec14714cbfab2c05c5da814573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74577aec14714cbfab2c05c5da814573.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5-J2e3k-4T_vF26_SRXIPNn6NMs=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.137833+00 2025-12-09 10:14:55.137837+00 7245 JTSS016FW#VS-D3杏 SPMX-20240815302394 \N \N \N 1 \N [{"file_id": "3603d10a-9dd9-4787-a2a6-deaf545e1eb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e02889ae30d04823867cc977745ba8bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e02889ae30d04823867cc977745ba8bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e02889ae30d04823867cc977745ba8bf.jpg", "file_size": 10963, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016FW#VS-D3杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02889ae30d04823867cc977745ba8bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02889ae30d04823867cc977745ba8bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02889ae30d04823867cc977745ba8bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e02889ae30d04823867cc977745ba8bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e02889ae30d04823867cc977745ba8bf.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pJWbGBMCgrXzlBa28Zohf7LPzcw=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.139216+00 2025-12-09 10:14:55.139221+00 7246 FHXGPK-066-5 SPMX-20240815302401 \N \N \N 1 \N [{"file_id": "3a5f172a-8c70-4d97-9279-6d661f24c6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33c931ac7938487ebe38ca9ecedbce11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33c931ac7938487ebe38ca9ecedbce11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33c931ac7938487ebe38ca9ecedbce11.jpg", "file_size": 33224, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-066-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c931ac7938487ebe38ca9ecedbce11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c931ac7938487ebe38ca9ecedbce11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c931ac7938487ebe38ca9ecedbce11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33c931ac7938487ebe38ca9ecedbce11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33c931ac7938487ebe38ca9ecedbce11.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTKFtaL33gBTuDuxD9uuNiGOo8w=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.140595+00 2025-12-09 10:14:55.140599+00 7247 LJ003FWE#VS-D3 SPMX-20240815302403 \N \N \N 1 \N [{"file_id": "d6955e33-f553-4af0-bc6a-fb4d798163ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "833c1b5dca334e32a3701fd9951f15bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "833c1b5dca334e32a3701fd9951f15bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "833c1b5dca334e32a3701fd9951f15bb.jpg", "file_size": 14740, "is_delete": false, "file_type": 1, "original_file_name": "LJ003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/833c1b5dca334e32a3701fd9951f15bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/833c1b5dca334e32a3701fd9951f15bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/833c1b5dca334e32a3701fd9951f15bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/833c1b5dca334e32a3701fd9951f15bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/833c1b5dca334e32a3701fd9951f15bb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpQm8orB6gZdrSKJica9tYpbap4=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.142005+00 2025-12-09 10:14:55.14201+00 7248 1061#灰底粉花 SPMX-20240815302402 \N \N \N 1 \N [{"file_id": "3f634764-d53a-4d3e-b848-ad8c56c075a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2d38962825e4577b396cee01c148ae4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2d38962825e4577b396cee01c148ae4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2d38962825e4577b396cee01c148ae4.jpg", "file_size": 15827, "is_delete": false, "file_type": 1, "original_file_name": "1061#灰底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d38962825e4577b396cee01c148ae4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d38962825e4577b396cee01c148ae4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d38962825e4577b396cee01c148ae4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2d38962825e4577b396cee01c148ae4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2d38962825e4577b396cee01c148ae4.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAhkxDxhDhfIbiH6FqGCdnO3vNU=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.143418+00 2025-12-09 10:14:55.143422+00 7249 LZ1235#下身2号色 SPMX-20240815302409 \N \N \N 1 \N [{"file_id": "7b454c72-0694-4518-868c-8a17eb3ef90f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb7eb0fa6385419fa9adf7134948c36e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb7eb0fa6385419fa9adf7134948c36e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb7eb0fa6385419fa9adf7134948c36e.jpg", "file_size": 15445, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7eb0fa6385419fa9adf7134948c36e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7eb0fa6385419fa9adf7134948c36e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7eb0fa6385419fa9adf7134948c36e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb7eb0fa6385419fa9adf7134948c36e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb7eb0fa6385419fa9adf7134948c36e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5fW6T_znHZeTVOkAfWSY3-UNkBQ=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.144985+00 2025-12-09 10:14:55.14499+00 7250 C308#白色 SPMX-20240815302410 \N \N \N 1 \N [{"file_id": "debde068-0f8e-42bf-b623-2ee3b4e703eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e440fba2d7aa416c94333ff6c9b60f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e440fba2d7aa416c94333ff6c9b60f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e440fba2d7aa416c94333ff6c9b60f33.jpg", "file_size": 41548, "is_delete": false, "file_type": 1, "original_file_name": "C308#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e440fba2d7aa416c94333ff6c9b60f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e440fba2d7aa416c94333ff6c9b60f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e440fba2d7aa416c94333ff6c9b60f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e440fba2d7aa416c94333ff6c9b60f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e440fba2d7aa416c94333ff6c9b60f33.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lnN4NTj-U56vyliMAlwVg6HTsoI=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.146516+00 2025-12-09 10:14:55.146521+00 7251 LJ004FW#VS-D3 SPMX-20240815302413 \N \N \N 1 \N [{"file_id": "d75aaf55-eeee-476d-b68e-b1e70cd2e277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6695b5fa03d94e708d3917caebe12597.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6695b5fa03d94e708d3917caebe12597.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6695b5fa03d94e708d3917caebe12597.jpg", "file_size": 10640, "is_delete": false, "file_type": 1, "original_file_name": "LJ004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6695b5fa03d94e708d3917caebe12597.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6695b5fa03d94e708d3917caebe12597.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6695b5fa03d94e708d3917caebe12597.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6695b5fa03d94e708d3917caebe12597.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6695b5fa03d94e708d3917caebe12597.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-kaulW6e2k-UKNIV9mLIERltY8A=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.147946+00 2025-12-09 10:14:55.14795+00 7252 DK1-002-1-批布 SPMX-20240815302400 \N \N \N 1 \N [{"file_id": "ea7578ad-3928-4b27-96c5-1b0a639eed9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a6b1fcfe0294f54bc02098625aecae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a6b1fcfe0294f54bc02098625aecae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a6b1fcfe0294f54bc02098625aecae0.jpg", "file_size": 40393, "is_delete": false, "file_type": 1, "original_file_name": "DK1-002-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6b1fcfe0294f54bc02098625aecae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6b1fcfe0294f54bc02098625aecae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6b1fcfe0294f54bc02098625aecae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a6b1fcfe0294f54bc02098625aecae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a6b1fcfe0294f54bc02098625aecae0.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARp6Slt1vFqvybcQfAUyjjieXJ4=", "createTime": "2024-08-15 14:45:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.149365+00 2025-12-09 10:14:55.14937+00 7253 JTSS016FW#VS-D3粉 SPMX-20240815302404 \N \N \N 1 \N [{"file_id": "b6ef5c93-ed56-4222-b18d-438c81915770", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd82cf477cf44d179efce864cc0b0947.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd82cf477cf44d179efce864cc0b0947.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd82cf477cf44d179efce864cc0b0947.jpg", "file_size": 11260, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd82cf477cf44d179efce864cc0b0947.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd82cf477cf44d179efce864cc0b0947.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd82cf477cf44d179efce864cc0b0947.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd82cf477cf44d179efce864cc0b0947.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd82cf477cf44d179efce864cc0b0947.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLU4WPPM7toPxMT1UFosya-20mA=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.150768+00 2025-12-09 10:14:55.150772+00 7254 DK1-002-2-批布 SPMX-20240815302411 \N \N \N 1 \N [{"file_id": "01a348dc-3f1d-41e1-b2b2-d61c1463ca32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57445859c33645a4a909f15052894ce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57445859c33645a4a909f15052894ce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57445859c33645a4a909f15052894ce5.jpg", "file_size": 39303, "is_delete": false, "file_type": 1, "original_file_name": "DK1-002-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57445859c33645a4a909f15052894ce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57445859c33645a4a909f15052894ce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57445859c33645a4a909f15052894ce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57445859c33645a4a909f15052894ce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57445859c33645a4a909f15052894ce5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJn1LaINf-JStvomZW2_5-fsKx0=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.152161+00 2025-12-09 10:14:55.152165+00 7255 0003-317#WJC22 SPMX-20240815302405 \N \N \N 1 \N [{"file_id": "ed5815d5-2f0d-4743-9ae1-35e820f52532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1468ee6b33cd424fb6087ccfab1bbcd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1468ee6b33cd424fb6087ccfab1bbcd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1468ee6b33cd424fb6087ccfab1bbcd5.jpg", "file_size": 19716, "is_delete": false, "file_type": 1, "original_file_name": "0003-317#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1468ee6b33cd424fb6087ccfab1bbcd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1468ee6b33cd424fb6087ccfab1bbcd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1468ee6b33cd424fb6087ccfab1bbcd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1468ee6b33cd424fb6087ccfab1bbcd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1468ee6b33cd424fb6087ccfab1bbcd5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Z4PHVjQ3Byl3ty6DxKZVHmYpxE=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.153596+00 2025-12-09 10:14:55.1536+00 7256 23-2112#-A10前后片4XL SPMX-20240815302407 \N \N \N 1 \N [{"file_id": "1af5814c-8d36-40d9-9dd7-6ab28ee0ff66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4be023d8a5d4e22a753a96d969d760f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4be023d8a5d4e22a753a96d969d760f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4be023d8a5d4e22a753a96d969d760f.jpg", "file_size": 11498, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4be023d8a5d4e22a753a96d969d760f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4be023d8a5d4e22a753a96d969d760f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4be023d8a5d4e22a753a96d969d760f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4be023d8a5d4e22a753a96d969d760f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4be023d8a5d4e22a753a96d969d760f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwfc5UTOxnweiW9J_iCfu4dDYtM=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.155038+00 2025-12-09 10:14:55.155043+00 7257 8016FWF#女S SPMX-20240815302408 \N \N \N 1 \N [{"file_id": "501dbefc-a7e0-4446-a064-c0568be5600a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "491debea81f34ff8b29dd1abed9e8f66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "491debea81f34ff8b29dd1abed9e8f66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "491debea81f34ff8b29dd1abed9e8f66.jpg", "file_size": 8559, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491debea81f34ff8b29dd1abed9e8f66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491debea81f34ff8b29dd1abed9e8f66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491debea81f34ff8b29dd1abed9e8f66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/491debea81f34ff8b29dd1abed9e8f66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/491debea81f34ff8b29dd1abed9e8f66.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MtiYe_-FmAgkiLFbGWQwn7MlYCw=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.156425+00 2025-12-09 10:14:55.156429+00 7258 HT0101-120#WJC22 SPMX-20240815302406 \N \N \N 1 \N [{"file_id": "7d77dc8f-ec90-4362-82e4-910304c0893a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62137eaafcd64e6e88ccc39715d6028c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62137eaafcd64e6e88ccc39715d6028c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62137eaafcd64e6e88ccc39715d6028c.jpg", "file_size": 25460, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-120#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62137eaafcd64e6e88ccc39715d6028c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62137eaafcd64e6e88ccc39715d6028c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62137eaafcd64e6e88ccc39715d6028c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62137eaafcd64e6e88ccc39715d6028c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62137eaafcd64e6e88ccc39715d6028c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ky8D3OeXXcdPi7YWA9n5JvL80_I=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.157797+00 2025-12-09 10:14:55.157801+00 7259 FHXGPK-067-1 SPMX-20240815302412 \N \N \N 1 \N [{"file_id": "e7ac6bbe-8d7c-4cf7-9ab0-395ea1cf964f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1384886f8a2d4d63bcae44cd13896836.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1384886f8a2d4d63bcae44cd13896836.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1384886f8a2d4d63bcae44cd13896836.jpg", "file_size": 32294, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-067-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1384886f8a2d4d63bcae44cd13896836.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1384886f8a2d4d63bcae44cd13896836.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1384886f8a2d4d63bcae44cd13896836.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1384886f8a2d4d63bcae44cd13896836.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1384886f8a2d4d63bcae44cd13896836.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWsO42uD2uH7Nl9gmlGdrJGT4WY=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.159198+00 2025-12-09 10:14:55.159202+00 7260 JTSS016FW#杏 SPMX-20240815302414 \N \N \N 1 \N [{"file_id": "e2fe193d-588f-4b82-9521-f12b1fe43c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71e4086b40ea4e8c9d5f9186205a470d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71e4086b40ea4e8c9d5f9186205a470d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71e4086b40ea4e8c9d5f9186205a470d.jpg", "file_size": 10068, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016FW#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e4086b40ea4e8c9d5f9186205a470d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e4086b40ea4e8c9d5f9186205a470d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71e4086b40ea4e8c9d5f9186205a470d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71e4086b40ea4e8c9d5f9186205a470d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71e4086b40ea4e8c9d5f9186205a470d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVBaSCd8kSwDzHaztJGP_tURSIk=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.160589+00 2025-12-09 10:14:55.160593+00 7261 23-2112#-A10袖子3XL SPMX-20240815302416 \N \N \N 1 \N [{"file_id": "f4cc2d1c-b328-43a1-a282-585c3ea90831", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e85f6df3c984f8499dc1e1dc963fcf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e85f6df3c984f8499dc1e1dc963fcf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e85f6df3c984f8499dc1e1dc963fcf8.jpg", "file_size": 10511, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e85f6df3c984f8499dc1e1dc963fcf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e85f6df3c984f8499dc1e1dc963fcf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e85f6df3c984f8499dc1e1dc963fcf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e85f6df3c984f8499dc1e1dc963fcf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e85f6df3c984f8499dc1e1dc963fcf8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyBALN1oLRX2gZphY07ijzwlhyw=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.162015+00 2025-12-09 10:14:55.162018+00 7262 DK1-002-3-批布 SPMX-20240815302423 \N \N \N 1 \N [{"file_id": "da6f311d-8fce-4b3f-9d02-6e8877a1b6b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36787d5c52484e3ba529b3a738a90a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36787d5c52484e3ba529b3a738a90a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36787d5c52484e3ba529b3a738a90a07.jpg", "file_size": 50051, "is_delete": false, "file_type": 1, "original_file_name": "DK1-002-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36787d5c52484e3ba529b3a738a90a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36787d5c52484e3ba529b3a738a90a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36787d5c52484e3ba529b3a738a90a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36787d5c52484e3ba529b3a738a90a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36787d5c52484e3ba529b3a738a90a07.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Ad3PNb8uOkhfQqkeYeHPBV1Nds=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.163397+00 2025-12-09 10:14:55.163402+00 7263 LJ004FW#VS-D3罗军 SPMX-20240815302426 \N \N \N 1 \N [{"file_id": "23a528e1-d933-42dd-81e1-81b0e282ff93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf331c63d8274f5780f54da3e56eea72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf331c63d8274f5780f54da3e56eea72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf331c63d8274f5780f54da3e56eea72.jpg", "file_size": 14338, "is_delete": false, "file_type": 1, "original_file_name": "LJ004FW#VS-D3罗军.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf331c63d8274f5780f54da3e56eea72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf331c63d8274f5780f54da3e56eea72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf331c63d8274f5780f54da3e56eea72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf331c63d8274f5780f54da3e56eea72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf331c63d8274f5780f54da3e56eea72.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCNoS-doCMiexWBCWxhy4ddFusA=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.164807+00 2025-12-09 10:14:55.164811+00 7264 8016FWF#女XL+童10 SPMX-20240815302418 \N \N \N 1 \N [{"file_id": "fe36e61c-e47c-40bb-8188-7ca4f4edf21d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a5ed7ae844f4f3498208c7b6dff1c0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a5ed7ae844f4f3498208c7b6dff1c0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a5ed7ae844f4f3498208c7b6dff1c0d.jpg", "file_size": 9393, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女XL+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a5ed7ae844f4f3498208c7b6dff1c0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a5ed7ae844f4f3498208c7b6dff1c0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a5ed7ae844f4f3498208c7b6dff1c0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a5ed7ae844f4f3498208c7b6dff1c0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a5ed7ae844f4f3498208c7b6dff1c0d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqQkoTb6kPLzMYVqeVazZUkCYGg=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.166204+00 2025-12-09 10:14:55.166209+00 7265 LZ1235#下身3号色 SPMX-20240815302419 \N \N \N 1 \N [{"file_id": "8e87cf0b-80c4-4c33-93f5-f081234b9326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a68403daf149468eb1b3e4d428d358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a68403daf149468eb1b3e4d428d358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a68403daf149468eb1b3e4d428d358.jpg", "file_size": 15771, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a68403daf149468eb1b3e4d428d358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a68403daf149468eb1b3e4d428d358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a68403daf149468eb1b3e4d428d358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a68403daf149468eb1b3e4d428d358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a68403daf149468eb1b3e4d428d358.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9Je2ryCXhcMrmGCB_wgBZc9dac=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.167591+00 2025-12-09 10:14:55.167596+00 7266 HT0101-121#WJC22 SPMX-20240815302420 \N \N \N 1 \N [{"file_id": "d95f7048-1303-4054-a5e8-af2119c6fb11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9faad7dc1d34d15bbf0c3a25cc742e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9faad7dc1d34d15bbf0c3a25cc742e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9faad7dc1d34d15bbf0c3a25cc742e1.jpg", "file_size": 16706, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-121#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9faad7dc1d34d15bbf0c3a25cc742e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9faad7dc1d34d15bbf0c3a25cc742e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9faad7dc1d34d15bbf0c3a25cc742e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9faad7dc1d34d15bbf0c3a25cc742e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9faad7dc1d34d15bbf0c3a25cc742e1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aF033w79eljydLOEPenSJP5fc80=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.168997+00 2025-12-09 10:14:55.169002+00 7267 1061#白底粉花 SPMX-20240815302415 \N \N \N 1 \N [{"file_id": "cab28401-d8b4-4248-84eb-8f0313c03380", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "891bc76e7eaf4e8bb01a447504691e15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "891bc76e7eaf4e8bb01a447504691e15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "891bc76e7eaf4e8bb01a447504691e15.jpg", "file_size": 16286, "is_delete": false, "file_type": 1, "original_file_name": "1061#白底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891bc76e7eaf4e8bb01a447504691e15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891bc76e7eaf4e8bb01a447504691e15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891bc76e7eaf4e8bb01a447504691e15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/891bc76e7eaf4e8bb01a447504691e15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/891bc76e7eaf4e8bb01a447504691e15.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2HHvqoropT9nQHuHCu6dz1mvE6s=", "createTime": "2024-08-15 14:45:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.170379+00 2025-12-09 10:14:55.170383+00 7268 JTSS016FW#粉 SPMX-20240815302427 \N \N \N 1 \N [{"file_id": "3061c537-5577-445a-9d77-956f10826d3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a176d1f27dcb4b91b9aa8af2d90344f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a176d1f27dcb4b91b9aa8af2d90344f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a176d1f27dcb4b91b9aa8af2d90344f2.jpg", "file_size": 10357, "is_delete": false, "file_type": 1, "original_file_name": "JTSS016FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a176d1f27dcb4b91b9aa8af2d90344f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a176d1f27dcb4b91b9aa8af2d90344f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a176d1f27dcb4b91b9aa8af2d90344f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a176d1f27dcb4b91b9aa8af2d90344f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a176d1f27dcb4b91b9aa8af2d90344f2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aX-cFFAr9o_bKw-H2eYDjTnkplk=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.171792+00 2025-12-09 10:14:55.171796+00 7269 0003-319#彩蓝色 SPMX-20240815302428 \N \N \N 1 \N [{"file_id": "dc34524b-cf01-496c-aba0-009ce6380538", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7a2b4b3ad5c488abbd0778ac11a6d93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7a2b4b3ad5c488abbd0778ac11a6d93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7a2b4b3ad5c488abbd0778ac11a6d93.jpg", "file_size": 14559, "is_delete": false, "file_type": 1, "original_file_name": "0003-319#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a2b4b3ad5c488abbd0778ac11a6d93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a2b4b3ad5c488abbd0778ac11a6d93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a2b4b3ad5c488abbd0778ac11a6d93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7a2b4b3ad5c488abbd0778ac11a6d93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7a2b4b3ad5c488abbd0778ac11a6d93.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5Rc2IRCpRN6MC34aIlVtdXGyn4=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.173183+00 2025-12-09 10:14:55.173187+00 7270 23-2112#-A10袖子4XL SPMX-20240815302425 \N \N \N 1 \N [{"file_id": "c7472e52-cd7c-4874-ae66-72a563e794dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f17fa1ddda940d3a12c9ec9c5926da0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f17fa1ddda940d3a12c9ec9c5926da0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f17fa1ddda940d3a12c9ec9c5926da0.jpg", "file_size": 10004, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17fa1ddda940d3a12c9ec9c5926da0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17fa1ddda940d3a12c9ec9c5926da0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f17fa1ddda940d3a12c9ec9c5926da0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f17fa1ddda940d3a12c9ec9c5926da0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f17fa1ddda940d3a12c9ec9c5926da0.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SA-ApCbmoHvLSFgu4-xgVFV4er8=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.174559+00 2025-12-09 10:14:55.174564+00 7271 0003-318#WJC22 SPMX-20240815302417 \N \N \N 1 \N [{"file_id": "6b37ae65-913a-480e-8026-09ee426ae986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b7a4bbf1e02461fab8aea5b0218e2f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b7a4bbf1e02461fab8aea5b0218e2f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b7a4bbf1e02461fab8aea5b0218e2f3.jpg", "file_size": 13595, "is_delete": false, "file_type": 1, "original_file_name": "0003-318#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7a4bbf1e02461fab8aea5b0218e2f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7a4bbf1e02461fab8aea5b0218e2f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7a4bbf1e02461fab8aea5b0218e2f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b7a4bbf1e02461fab8aea5b0218e2f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b7a4bbf1e02461fab8aea5b0218e2f3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KtCpstELSYr9f8rupDZ7Qw5a9Q=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.175953+00 2025-12-09 10:14:55.175957+00 7272 1061#白底紫花 SPMX-20240815302424 \N \N \N 1 \N [{"file_id": "eb30fec4-0f4a-4acf-b922-5b9ab62bbaef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8daf5eba4b284ef188211238f2ed7ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8daf5eba4b284ef188211238f2ed7ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8daf5eba4b284ef188211238f2ed7ef6.jpg", "file_size": 15820, "is_delete": false, "file_type": 1, "original_file_name": "1061#白底紫花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8daf5eba4b284ef188211238f2ed7ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8daf5eba4b284ef188211238f2ed7ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8daf5eba4b284ef188211238f2ed7ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8daf5eba4b284ef188211238f2ed7ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8daf5eba4b284ef188211238f2ed7ef6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtdqHSQHFlJK_Z9Eq6T9UyjDgoU=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.177367+00 2025-12-09 10:14:55.177371+00 7273 C308#绿色 SPMX-20240815302422 \N \N \N 1 \N [{"file_id": "85db4fb1-09e7-4a88-9bbc-63aca717e412", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ef4f0fe4f45497ab65ce55c6565a2a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ef4f0fe4f45497ab65ce55c6565a2a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ef4f0fe4f45497ab65ce55c6565a2a9.jpg", "file_size": 46224, "is_delete": false, "file_type": 1, "original_file_name": "C308#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef4f0fe4f45497ab65ce55c6565a2a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef4f0fe4f45497ab65ce55c6565a2a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef4f0fe4f45497ab65ce55c6565a2a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ef4f0fe4f45497ab65ce55c6565a2a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ef4f0fe4f45497ab65ce55c6565a2a9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOdTg87rUSmtNCukq5io0OwBCqc=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.178755+00 2025-12-09 10:14:55.178759+00 7274 8016FWF#女XL+童12 SPMX-20240815302429 \N \N \N 1 \N [{"file_id": "56298f31-9af2-4613-9ec2-bc06b3d36d62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8586b0b39f774afea09c3d0f976aae1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8586b0b39f774afea09c3d0f976aae1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8586b0b39f774afea09c3d0f976aae1d.jpg", "file_size": 9484, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#女XL+童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8586b0b39f774afea09c3d0f976aae1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8586b0b39f774afea09c3d0f976aae1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8586b0b39f774afea09c3d0f976aae1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8586b0b39f774afea09c3d0f976aae1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8586b0b39f774afea09c3d0f976aae1d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYZb9DxJnO4R-Vsw8_qnbDlae5o=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.180181+00 2025-12-09 10:14:55.180185+00 7275 FHXGPK-067-2 SPMX-20240815302421 \N \N \N 1 \N [{"file_id": "ee5d1964-8e0c-4894-8b0b-964c46d7b0ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fe55e4ce4624475839e6ea0d7a374b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fe55e4ce4624475839e6ea0d7a374b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fe55e4ce4624475839e6ea0d7a374b4.jpg", "file_size": 36348, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-067-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe55e4ce4624475839e6ea0d7a374b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe55e4ce4624475839e6ea0d7a374b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fe55e4ce4624475839e6ea0d7a374b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fe55e4ce4624475839e6ea0d7a374b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fe55e4ce4624475839e6ea0d7a374b4.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_GD8jNLY7sILePL0gDoG7Ya8bo=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.181664+00 2025-12-09 10:14:55.181669+00 7276 DK1-003-1-批布 SPMX-20240815302435 \N \N \N 1 \N [{"file_id": "71665702-0ef6-4ba4-8686-a8d6c8e373be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eff177f710c4dde82d01ab8a78d8ebe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eff177f710c4dde82d01ab8a78d8ebe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eff177f710c4dde82d01ab8a78d8ebe.jpg", "file_size": 27221, "is_delete": false, "file_type": 1, "original_file_name": "DK1-003-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff177f710c4dde82d01ab8a78d8ebe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff177f710c4dde82d01ab8a78d8ebe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff177f710c4dde82d01ab8a78d8ebe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eff177f710c4dde82d01ab8a78d8ebe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eff177f710c4dde82d01ab8a78d8ebe.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGYr3Y63Dppt_Om2798nb077Ib4=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.183512+00 2025-12-09 10:14:55.183517+00 7277 HT0101-122#咖啡 SPMX-20240815302442 \N \N \N 1 \N [{"file_id": "3a3f0dd4-6fdc-4c81-b2dd-3076cd40d022", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fafc7009c1c4e6db185cdff4fc5a953.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fafc7009c1c4e6db185cdff4fc5a953.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fafc7009c1c4e6db185cdff4fc5a953.jpg", "file_size": 25523, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fafc7009c1c4e6db185cdff4fc5a953.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fafc7009c1c4e6db185cdff4fc5a953.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fafc7009c1c4e6db185cdff4fc5a953.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fafc7009c1c4e6db185cdff4fc5a953.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fafc7009c1c4e6db185cdff4fc5a953.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NJP7qhAYmxaCzaLTQgXXfi1g74=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.185032+00 2025-12-09 10:14:55.185037+00 7278 FHXGPK-067-3 SPMX-20240815302432 \N \N \N 1 \N [{"file_id": "902a2892-0da2-4232-b4ab-bec45f3a99ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f13cf31a037d402e91d9841ff58c97b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f13cf31a037d402e91d9841ff58c97b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f13cf31a037d402e91d9841ff58c97b7.jpg", "file_size": 35124, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-067-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13cf31a037d402e91d9841ff58c97b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13cf31a037d402e91d9841ff58c97b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13cf31a037d402e91d9841ff58c97b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f13cf31a037d402e91d9841ff58c97b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f13cf31a037d402e91d9841ff58c97b7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNVOSqWeKWajQCHF9rgye63oCU0=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.186642+00 2025-12-09 10:14:55.186647+00 7279 8016FWF#男2XL SPMX-20240815302440 \N \N \N 1 \N [{"file_id": "b7411bfc-3543-4cb2-82db-7320bbe6687b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b85483a1c00e45fe8109dc1a65868ff5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b85483a1c00e45fe8109dc1a65868ff5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b85483a1c00e45fe8109dc1a65868ff5.jpg", "file_size": 11926, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85483a1c00e45fe8109dc1a65868ff5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85483a1c00e45fe8109dc1a65868ff5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85483a1c00e45fe8109dc1a65868ff5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b85483a1c00e45fe8109dc1a65868ff5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b85483a1c00e45fe8109dc1a65868ff5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lww7SEiz9aCiE-Z8NXjpHahYoBw=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.188472+00 2025-12-09 10:14:55.188476+00 7280 JTSS017#桔VS-D3 SPMX-20240815302438 \N \N \N 1 \N [{"file_id": "2e0328ab-df70-4720-ad47-612535974f52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa2454abd11449cc8d7bd8f0a3270694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa2454abd11449cc8d7bd8f0a3270694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa2454abd11449cc8d7bd8f0a3270694.jpg", "file_size": 12459, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017#桔VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2454abd11449cc8d7bd8f0a3270694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2454abd11449cc8d7bd8f0a3270694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2454abd11449cc8d7bd8f0a3270694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa2454abd11449cc8d7bd8f0a3270694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa2454abd11449cc8d7bd8f0a3270694.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c056ru9ZFiJYO0OHezOucfKUvxM=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.18992+00 2025-12-09 10:14:55.189924+00 7281 C308#黑色 SPMX-20240815302433 \N \N \N 1 \N [{"file_id": "d5f4e561-cd9a-446d-a97e-b1e61f8f7db3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32102591ab024f99aa55b731d33ebe89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32102591ab024f99aa55b731d33ebe89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32102591ab024f99aa55b731d33ebe89.jpg", "file_size": 41944, "is_delete": false, "file_type": 1, "original_file_name": "C308#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32102591ab024f99aa55b731d33ebe89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32102591ab024f99aa55b731d33ebe89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32102591ab024f99aa55b731d33ebe89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32102591ab024f99aa55b731d33ebe89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32102591ab024f99aa55b731d33ebe89.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrHlf1Wk0QlsyXq3w1381g3frwM=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.191335+00 2025-12-09 10:14:55.191339+00 7282 1061#粉底粉花 SPMX-20240815302434 \N \N \N 1 \N [{"file_id": "ea9ca9f9-e5d9-44fe-83b6-2799a5a8ba3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e97eb3daab143c8bcee466b1d41c4e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e97eb3daab143c8bcee466b1d41c4e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e97eb3daab143c8bcee466b1d41c4e5.jpg", "file_size": 15290, "is_delete": false, "file_type": 1, "original_file_name": "1061#粉底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97eb3daab143c8bcee466b1d41c4e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97eb3daab143c8bcee466b1d41c4e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97eb3daab143c8bcee466b1d41c4e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e97eb3daab143c8bcee466b1d41c4e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e97eb3daab143c8bcee466b1d41c4e5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:481UR-HjxjdmfHsn7A3soXxcozk=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.192736+00 2025-12-09 10:14:55.19274+00 7283 0003-319#杏色 SPMX-20240815302439 \N \N \N 1 \N [{"file_id": "436b3e4c-a29a-499e-9b78-f9150309866d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a1bc24cbae2441587b4ff059d102a93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a1bc24cbae2441587b4ff059d102a93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a1bc24cbae2441587b4ff059d102a93.jpg", "file_size": 17307, "is_delete": false, "file_type": 1, "original_file_name": "0003-319#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1bc24cbae2441587b4ff059d102a93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1bc24cbae2441587b4ff059d102a93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1bc24cbae2441587b4ff059d102a93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a1bc24cbae2441587b4ff059d102a93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a1bc24cbae2441587b4ff059d102a93.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9VoxBi4P0Eut4jvA3ovVeRLxh2c=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.194136+00 2025-12-09 10:14:55.194141+00 7284 HT0101-122#WJC22 SPMX-20240815302431 \N \N \N 1 \N [{"file_id": "1e9c4e64-1a4c-496d-88d7-95a30571babe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dd2326055bb4264aae8666aff076b77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dd2326055bb4264aae8666aff076b77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dd2326055bb4264aae8666aff076b77.jpg", "file_size": 14494, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd2326055bb4264aae8666aff076b77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd2326055bb4264aae8666aff076b77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd2326055bb4264aae8666aff076b77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dd2326055bb4264aae8666aff076b77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dd2326055bb4264aae8666aff076b77.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GALTC7sxfKIJZaI8nVCuVXFEfww=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.195545+00 2025-12-09 10:14:55.195549+00 7285 23-2112#-A10领口通用 SPMX-20240815302436 \N \N \N 1 \N [{"file_id": "4add0f0b-f85f-4444-b73d-171bbc2cbd53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "030122ae727d4afaa680ff0d360f73fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "030122ae727d4afaa680ff0d360f73fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "030122ae727d4afaa680ff0d360f73fe.jpg", "file_size": 7682, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030122ae727d4afaa680ff0d360f73fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030122ae727d4afaa680ff0d360f73fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030122ae727d4afaa680ff0d360f73fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/030122ae727d4afaa680ff0d360f73fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/030122ae727d4afaa680ff0d360f73fe.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFnJgIaHjPUZFzVXXfmNjlSI30E=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.196943+00 2025-12-09 10:14:55.196947+00 7286 LJ004FWE#VS-D3 SPMX-20240815302437 \N \N \N 1 \N [{"file_id": "c412fbda-d57b-40e8-9935-264166fc24d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9e362d9abef4a66a919d8857462e5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9e362d9abef4a66a919d8857462e5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9e362d9abef4a66a919d8857462e5cb.jpg", "file_size": 16270, "is_delete": false, "file_type": 1, "original_file_name": "LJ004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e362d9abef4a66a919d8857462e5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e362d9abef4a66a919d8857462e5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e362d9abef4a66a919d8857462e5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9e362d9abef4a66a919d8857462e5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9e362d9abef4a66a919d8857462e5cb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aa1RV7pkikSBRJpRdACv3vEeBjE=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.198331+00 2025-12-09 10:14:55.198335+00 7287 LZ1235#下身4号色 SPMX-20240815302430 \N \N \N 1 \N [{"file_id": "1ab77ab3-4f3a-4a4a-af42-23e122b91f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72364d8d191f41bd8c2340a7d9fca329.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72364d8d191f41bd8c2340a7d9fca329.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72364d8d191f41bd8c2340a7d9fca329.jpg", "file_size": 18259, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72364d8d191f41bd8c2340a7d9fca329.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72364d8d191f41bd8c2340a7d9fca329.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72364d8d191f41bd8c2340a7d9fca329.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72364d8d191f41bd8c2340a7d9fca329.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72364d8d191f41bd8c2340a7d9fca329.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnZ991Mmlu8Q3styywKYjCRwi8I=", "createTime": "2024-08-15 14:45:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.199726+00 2025-12-09 10:14:55.19973+00 7288 LZ1235#套装下领1号色 SPMX-20240815302441 \N \N \N 1 \N [{"file_id": "407aa835-a15e-4197-a0ec-9a2dd434d62d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31cb0c23d832429ba1bd3755f8d95bae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31cb0c23d832429ba1bd3755f8d95bae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31cb0c23d832429ba1bd3755f8d95bae.jpg", "file_size": 19319, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#套装下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cb0c23d832429ba1bd3755f8d95bae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cb0c23d832429ba1bd3755f8d95bae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31cb0c23d832429ba1bd3755f8d95bae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31cb0c23d832429ba1bd3755f8d95bae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31cb0c23d832429ba1bd3755f8d95bae.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rq3skxkOF0FteAQuHGbDcwKK0Iw=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.201142+00 2025-12-09 10:14:55.201146+00 7289 23-2112#-A10领子通用 SPMX-20240815302447 \N \N \N 1 \N [{"file_id": "bf980714-b450-488b-96d6-935e2386f34e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8971abb845d74138b3f2e004328bd36f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8971abb845d74138b3f2e004328bd36f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8971abb845d74138b3f2e004328bd36f.jpg", "file_size": 9655, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A10领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8971abb845d74138b3f2e004328bd36f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8971abb845d74138b3f2e004328bd36f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8971abb845d74138b3f2e004328bd36f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8971abb845d74138b3f2e004328bd36f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8971abb845d74138b3f2e004328bd36f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOc3cBxxiqSxwhUn-t5YjSH9GIw=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.20256+00 2025-12-09 10:14:55.202565+00 7290 JTSS017#紫VS-D3 SPMX-20240815302449 \N \N \N 1 \N [{"file_id": "8e609efd-9395-4015-a862-551bb9a7901b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae8e8c4957e340958d07f86a482ed10b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae8e8c4957e340958d07f86a482ed10b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae8e8c4957e340958d07f86a482ed10b.jpg", "file_size": 9544, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8e8c4957e340958d07f86a482ed10b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8e8c4957e340958d07f86a482ed10b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8e8c4957e340958d07f86a482ed10b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae8e8c4957e340958d07f86a482ed10b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae8e8c4957e340958d07f86a482ed10b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8Bl5NGz8tbw7YWSTAJ2RYfzXGI=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.203948+00 2025-12-09 10:14:55.203952+00 7291 FHXGPK-067-5 SPMX-20240815302455 \N \N \N 1 \N [{"file_id": "890098cc-e6a8-4937-a75e-7b1ec40866e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8f3a100f2694e49842928720be9b37c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8f3a100f2694e49842928720be9b37c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8f3a100f2694e49842928720be9b37c.jpg", "file_size": 31907, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-067-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8f3a100f2694e49842928720be9b37c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8f3a100f2694e49842928720be9b37c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8f3a100f2694e49842928720be9b37c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8f3a100f2694e49842928720be9b37c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8f3a100f2694e49842928720be9b37c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k__1XlS8bOsoqq5Wg9Z4UEUxHjQ=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.205353+00 2025-12-09 10:14:55.205357+00 7292 8016FWF#男3XL SPMX-20240815302450 \N \N \N 1 \N [{"file_id": "80e5fa49-17bb-4d33-8d41-4e538011b4c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f34842fb9854abda716ba5fd48e00fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f34842fb9854abda716ba5fd48e00fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f34842fb9854abda716ba5fd48e00fd.jpg", "file_size": 12636, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34842fb9854abda716ba5fd48e00fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34842fb9854abda716ba5fd48e00fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34842fb9854abda716ba5fd48e00fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f34842fb9854abda716ba5fd48e00fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f34842fb9854abda716ba5fd48e00fd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cO0IXbCoWpMieP7ghsJeFzGgFQo=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.206729+00 2025-12-09 10:14:55.206733+00 7293 FHXGPK-067-4 SPMX-20240815302444 \N \N \N 1 \N [{"file_id": "efebb55a-c32d-4792-a0b8-024e7e3a19d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "095f866ba6414e6cb0596b6efa20c4a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "095f866ba6414e6cb0596b6efa20c4a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "095f866ba6414e6cb0596b6efa20c4a6.jpg", "file_size": 34924, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-067-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f866ba6414e6cb0596b6efa20c4a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f866ba6414e6cb0596b6efa20c4a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f866ba6414e6cb0596b6efa20c4a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/095f866ba6414e6cb0596b6efa20c4a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/095f866ba6414e6cb0596b6efa20c4a6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6wjUK-ThYCG-EH6KbGB_uNJ-vs=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.208139+00 2025-12-09 10:14:55.208143+00 7294 HT0101-122#紫色 SPMX-20240815302453 \N \N \N 1 \N [{"file_id": "f921f7f8-9f55-4a08-9b38-4752fd789316", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg", "file_size": 24309, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c95fe8b1fcd43ef9908794d9aa4a1bd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5iIAqshCaiulQ1FEpMlSQC88A0=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.209517+00 2025-12-09 10:14:55.209522+00 7295 0003-319#玫红色 SPMX-20240815302448 \N \N \N 1 \N [{"file_id": "751b3fed-d77c-4513-bcec-b247c628965a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f28ee9fbe3e341dc87bc77751f68e00e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f28ee9fbe3e341dc87bc77751f68e00e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f28ee9fbe3e341dc87bc77751f68e00e.jpg", "file_size": 13811, "is_delete": false, "file_type": 1, "original_file_name": "0003-319#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28ee9fbe3e341dc87bc77751f68e00e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28ee9fbe3e341dc87bc77751f68e00e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28ee9fbe3e341dc87bc77751f68e00e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f28ee9fbe3e341dc87bc77751f68e00e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f28ee9fbe3e341dc87bc77751f68e00e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Sl49rzLB1rp7fqekz_7gfBiWvo=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.210907+00 2025-12-09 10:14:55.210911+00 7296 LZ1235#套装下领2号色 SPMX-20240815302452 \N \N \N 1 \N [{"file_id": "b327a041-42f0-455f-bc7c-3a42c83d4d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg", "file_size": 17047, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#套装下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b649c1c87cf43bfb0a3ab4bf0bcd83a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQmhnnshXW6ruqgzPxyxvD75hfw=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.212298+00 2025-12-09 10:14:55.212303+00 7297 1061#粉底紫花 SPMX-20240815302445 \N \N \N 1 \N [{"file_id": "2ad53362-ac92-49ca-ba59-b54a02e05941", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e8a6e3342bf40f889525af626deacf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e8a6e3342bf40f889525af626deacf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e8a6e3342bf40f889525af626deacf3.jpg", "file_size": 14375, "is_delete": false, "file_type": 1, "original_file_name": "1061#粉底紫花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8a6e3342bf40f889525af626deacf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8a6e3342bf40f889525af626deacf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8a6e3342bf40f889525af626deacf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e8a6e3342bf40f889525af626deacf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e8a6e3342bf40f889525af626deacf3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dnfz6f-EdKH7cXGeWsfdL4mDIqA=", "createTime": "2024-08-15 14:45:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.213711+00 2025-12-09 10:14:55.213715+00 7298 1061#粉色匹布 SPMX-20240815302454 \N \N \N 1 \N [{"file_id": "7399b2de-4a21-4392-b131-9f1d4ead5ae9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1291baba44cc49d2b666336490c154f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1291baba44cc49d2b666336490c154f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1291baba44cc49d2b666336490c154f5.jpg", "file_size": 5980, "is_delete": false, "file_type": 1, "original_file_name": "1061#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1291baba44cc49d2b666336490c154f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1291baba44cc49d2b666336490c154f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1291baba44cc49d2b666336490c154f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1291baba44cc49d2b666336490c154f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1291baba44cc49d2b666336490c154f5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7JAyGqG2eInhiso2iJP0K8hNXo=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.215107+00 2025-12-09 10:14:55.215111+00 7299 DK1-003-2-批布 SPMX-20240815302446 \N \N \N 1 \N [{"file_id": "cab0bfa4-d828-4b9a-b59b-70985a243407", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "715df6f26ce045589bd06362769bc643.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "715df6f26ce045589bd06362769bc643.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "715df6f26ce045589bd06362769bc643.jpg", "file_size": 24072, "is_delete": false, "file_type": 1, "original_file_name": "DK1-003-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715df6f26ce045589bd06362769bc643.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715df6f26ce045589bd06362769bc643.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715df6f26ce045589bd06362769bc643.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/715df6f26ce045589bd06362769bc643.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/715df6f26ce045589bd06362769bc643.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCRdbtxW9ejXHB9dP84zLmB2xM4=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.216485+00 2025-12-09 10:14:55.216489+00 7300 LJ005FW#VS-D3 SPMX-20240815302451 \N \N \N 1 \N [{"file_id": "8997d1c5-9c5e-4711-9c50-0d922333e20c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1c39b42d9c84af68993b7760678c382.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1c39b42d9c84af68993b7760678c382.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1c39b42d9c84af68993b7760678c382.jpg", "file_size": 20140, "is_delete": false, "file_type": 1, "original_file_name": "LJ005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c39b42d9c84af68993b7760678c382.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c39b42d9c84af68993b7760678c382.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c39b42d9c84af68993b7760678c382.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1c39b42d9c84af68993b7760678c382.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1c39b42d9c84af68993b7760678c382.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxlpj_m38Ckg7xBvhl7rC1m9UnI=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.218144+00 2025-12-09 10:14:55.218148+00 7301 C312#墨绿 SPMX-20240815302443 \N \N \N 1 \N [{"file_id": "6adf72f4-1135-4e0c-8122-beb3f455a2b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "700b36be6e704126888c56a32a209f4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "700b36be6e704126888c56a32a209f4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "700b36be6e704126888c56a32a209f4f.jpg", "file_size": 8566, "is_delete": false, "file_type": 1, "original_file_name": "C312#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b36be6e704126888c56a32a209f4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b36be6e704126888c56a32a209f4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b36be6e704126888c56a32a209f4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/700b36be6e704126888c56a32a209f4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/700b36be6e704126888c56a32a209f4f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyL0nfjht-Bp-KPQAqUH9rxH3IM=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.219822+00 2025-12-09 10:14:55.219827+00 7302 23-2112#-A11前后片3XL SPMX-20240815302460 \N \N \N 1 \N [{"file_id": "971f6dfd-498b-4c72-887a-91f522324992", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c63056a9474655870a335608870183.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c63056a9474655870a335608870183.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c63056a9474655870a335608870183.jpg", "file_size": 10120, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c63056a9474655870a335608870183.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c63056a9474655870a335608870183.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c63056a9474655870a335608870183.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c63056a9474655870a335608870183.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c63056a9474655870a335608870183.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQClFJdZFyvisZCg8QIJfuEyoQI=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.221653+00 2025-12-09 10:14:55.221659+00 7303 FHXGPK-068-1 SPMX-20240815302465 \N \N \N 1 \N [{"file_id": "cacbd839-3509-4a20-9c9d-25188c100b07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c28ed5d5965b4a54989072ba4448e57d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c28ed5d5965b4a54989072ba4448e57d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c28ed5d5965b4a54989072ba4448e57d.jpg", "file_size": 32420, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-068-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28ed5d5965b4a54989072ba4448e57d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28ed5d5965b4a54989072ba4448e57d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28ed5d5965b4a54989072ba4448e57d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c28ed5d5965b4a54989072ba4448e57d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c28ed5d5965b4a54989072ba4448e57d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4o9Ax5txMQiPtqmy9TDl2oucnQA=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.22338+00 2025-12-09 10:14:55.223385+00 7304 DK1-003-3-批布 SPMX-20240815302456 \N \N \N 1 \N [{"file_id": "a36325d8-1258-4923-9df0-27ad12f6b401", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cecbb479eb2c42ffaa242ad524555198.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cecbb479eb2c42ffaa242ad524555198.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cecbb479eb2c42ffaa242ad524555198.jpg", "file_size": 25115, "is_delete": false, "file_type": 1, "original_file_name": "DK1-003-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecbb479eb2c42ffaa242ad524555198.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecbb479eb2c42ffaa242ad524555198.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecbb479eb2c42ffaa242ad524555198.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cecbb479eb2c42ffaa242ad524555198.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cecbb479eb2c42ffaa242ad524555198.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h7LniwlBhqrhDxeR9TK8Ehw3Y04=", "createTime": "2024-08-15 14:45:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.225096+00 2025-12-09 10:14:55.2251+00 7305 1061#紫色匹布 SPMX-20240815302464 \N \N \N 1 \N [{"file_id": "38ed4e04-c60c-49c5-9183-2138fb8aeca2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8364d90f84d544eb83a34b882386de83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8364d90f84d544eb83a34b882386de83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8364d90f84d544eb83a34b882386de83.jpg", "file_size": 5845, "is_delete": false, "file_type": 1, "original_file_name": "1061#紫色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8364d90f84d544eb83a34b882386de83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8364d90f84d544eb83a34b882386de83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8364d90f84d544eb83a34b882386de83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8364d90f84d544eb83a34b882386de83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8364d90f84d544eb83a34b882386de83.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4BeLJPidYd09M6r5Vz0iOv2oN0c=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.226824+00 2025-12-09 10:14:55.226828+00 7306 LJ005FWE#VS-D3 SPMX-20240815302461 \N \N \N 1 \N [{"file_id": "d3d68caa-6b2c-4fdc-b108-b6e70efd54e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f611d3a6429f4f5ab53d71a1e3f56a48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f611d3a6429f4f5ab53d71a1e3f56a48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f611d3a6429f4f5ab53d71a1e3f56a48.jpg", "file_size": 19506, "is_delete": false, "file_type": 1, "original_file_name": "LJ005FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f611d3a6429f4f5ab53d71a1e3f56a48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f611d3a6429f4f5ab53d71a1e3f56a48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f611d3a6429f4f5ab53d71a1e3f56a48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f611d3a6429f4f5ab53d71a1e3f56a48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f611d3a6429f4f5ab53d71a1e3f56a48.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCzz-f0R61tttIIanCz9XUU6t_k=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.228534+00 2025-12-09 10:14:55.228538+00 7307 0003-319#绿色 SPMX-20240815302457 \N \N \N 1 \N [{"file_id": "de3767d6-ccc1-4e3c-9881-bded3bb6e498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8283e93fe4434a30b5d5df45a2199e5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8283e93fe4434a30b5d5df45a2199e5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8283e93fe4434a30b5d5df45a2199e5b.jpg", "file_size": 11982, "is_delete": false, "file_type": 1, "original_file_name": "0003-319#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8283e93fe4434a30b5d5df45a2199e5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8283e93fe4434a30b5d5df45a2199e5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8283e93fe4434a30b5d5df45a2199e5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8283e93fe4434a30b5d5df45a2199e5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8283e93fe4434a30b5d5df45a2199e5b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_FcqKCGd3p7ALn3TvbP4PLIjmw=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.230202+00 2025-12-09 10:14:55.230207+00 7308 LZ1235#套装下领3号色 SPMX-20240815302462 \N \N \N 1 \N [{"file_id": "90e55b65-989c-4b3e-84e3-50f01f33c8d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "340dbfe484c14062887f87fc9ade0b65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "340dbfe484c14062887f87fc9ade0b65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "340dbfe484c14062887f87fc9ade0b65.jpg", "file_size": 17558, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#套装下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340dbfe484c14062887f87fc9ade0b65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340dbfe484c14062887f87fc9ade0b65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340dbfe484c14062887f87fc9ade0b65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/340dbfe484c14062887f87fc9ade0b65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/340dbfe484c14062887f87fc9ade0b65.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50C_owWYu4lmmd_uhkuweGFI6lM=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.231597+00 2025-12-09 10:14:55.2316+00 7309 JTSS017#绿VS-D3 SPMX-20240815302458 \N \N \N 1 \N [{"file_id": "f6b849a2-5a3f-49a9-9a77-a6026aaefde8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ee54f1a093c47f8b926eb3aae992977.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ee54f1a093c47f8b926eb3aae992977.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ee54f1a093c47f8b926eb3aae992977.jpg", "file_size": 9902, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee54f1a093c47f8b926eb3aae992977.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee54f1a093c47f8b926eb3aae992977.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ee54f1a093c47f8b926eb3aae992977.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ee54f1a093c47f8b926eb3aae992977.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ee54f1a093c47f8b926eb3aae992977.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esCIpRzO0PwT07TmB1IGqsW8UEU=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.233084+00 2025-12-09 10:14:55.233089+00 7310 8016FWF#男L+童4 SPMX-20240815302459 \N \N \N 1 \N [{"file_id": "8c000996-6f4c-4962-ba9d-d0f6ac839612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4aeca6b0a1241be8d067be0b039411e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4aeca6b0a1241be8d067be0b039411e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4aeca6b0a1241be8d067be0b039411e.jpg", "file_size": 9017, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男L+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4aeca6b0a1241be8d067be0b039411e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4aeca6b0a1241be8d067be0b039411e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4aeca6b0a1241be8d067be0b039411e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4aeca6b0a1241be8d067be0b039411e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4aeca6b0a1241be8d067be0b039411e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h0RtIDHbHFwGY5R6C4Y-6hP8EPM=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.234893+00 2025-12-09 10:14:55.234897+00 7311 HT0101-122#蓝色 SPMX-20240815302463 \N \N \N 1 \N [{"file_id": "0865af19-e3ea-4c84-a1db-6f034d3894f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1bdd842a9be418ca8cdac7a599fa69f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1bdd842a9be418ca8cdac7a599fa69f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1bdd842a9be418ca8cdac7a599fa69f.jpg", "file_size": 25660, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bdd842a9be418ca8cdac7a599fa69f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bdd842a9be418ca8cdac7a599fa69f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bdd842a9be418ca8cdac7a599fa69f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1bdd842a9be418ca8cdac7a599fa69f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1bdd842a9be418ca8cdac7a599fa69f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Peuxq1TimPai4IZiIBynsHSkDk=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.236339+00 2025-12-09 10:14:55.236343+00 7312 8016FWF#男M+童10 SPMX-20240815302469 \N \N \N 1 \N [{"file_id": "1e38c1f8-a2ba-40f2-b7bc-1a06f3fdcd21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffc536ebe6de48a0853e894d04a080be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffc536ebe6de48a0853e894d04a080be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffc536ebe6de48a0853e894d04a080be.jpg", "file_size": 9098, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男M+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc536ebe6de48a0853e894d04a080be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc536ebe6de48a0853e894d04a080be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffc536ebe6de48a0853e894d04a080be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffc536ebe6de48a0853e894d04a080be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffc536ebe6de48a0853e894d04a080be.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJTSbJ9jBiEzctR04tCU21bbPX0=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.237738+00 2025-12-09 10:14:55.237743+00 7313 LJ006FW#VS-D3 SPMX-20240815302472 \N \N \N 1 \N [{"file_id": "0a7027f4-aac8-4fb3-85e5-380e7ab0ad58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63adc6e435984412a678fc259822b8ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63adc6e435984412a678fc259822b8ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63adc6e435984412a678fc259822b8ab.jpg", "file_size": 24585, "is_delete": false, "file_type": 1, "original_file_name": "LJ006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63adc6e435984412a678fc259822b8ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63adc6e435984412a678fc259822b8ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63adc6e435984412a678fc259822b8ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63adc6e435984412a678fc259822b8ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63adc6e435984412a678fc259822b8ab.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1LsnJyAQsQ3nd6abzKt-unj4Es=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.239144+00 2025-12-09 10:14:55.239148+00 7314 DK1-004-1-批布 SPMX-20240815302466 \N \N \N 1 \N [{"file_id": "660dccbe-02ef-47e3-9987-53aeaed57545", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fbb4b027f3422c9514de47f206763e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fbb4b027f3422c9514de47f206763e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fbb4b027f3422c9514de47f206763e.jpg", "file_size": 37341, "is_delete": false, "file_type": 1, "original_file_name": "DK1-004-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbb4b027f3422c9514de47f206763e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbb4b027f3422c9514de47f206763e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbb4b027f3422c9514de47f206763e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fbb4b027f3422c9514de47f206763e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fbb4b027f3422c9514de47f206763e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQ909vYGpjhuxSY2evrzQjdMfQc=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.24073+00 2025-12-09 10:14:55.240735+00 7315 C312#大白棕色 SPMX-20240815302468 \N \N \N 1 \N [{"file_id": "0855f69a-f130-45ca-9eee-1ac9008d3828", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c11d5e488e1444cbcc347d06b13fe46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c11d5e488e1444cbcc347d06b13fe46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c11d5e488e1444cbcc347d06b13fe46.jpg", "file_size": 7736, "is_delete": false, "file_type": 1, "original_file_name": "C312#大白棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c11d5e488e1444cbcc347d06b13fe46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c11d5e488e1444cbcc347d06b13fe46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c11d5e488e1444cbcc347d06b13fe46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c11d5e488e1444cbcc347d06b13fe46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c11d5e488e1444cbcc347d06b13fe46.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_uhTWhA_OR8G4NfpvtMt5jQOBts=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.242344+00 2025-12-09 10:14:55.24235+00 7316 0003-319#黄色 SPMX-20240815302467 \N \N \N 1 \N [{"file_id": "6a4447dc-bb0f-42c9-a30f-04d34bd3eed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dc84c448d004999ab03d505b4d917c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dc84c448d004999ab03d505b4d917c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dc84c448d004999ab03d505b4d917c7.jpg", "file_size": 16098, "is_delete": false, "file_type": 1, "original_file_name": "0003-319#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc84c448d004999ab03d505b4d917c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc84c448d004999ab03d505b4d917c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dc84c448d004999ab03d505b4d917c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dc84c448d004999ab03d505b4d917c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dc84c448d004999ab03d505b4d917c7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDT53xfp_E2zh2gWTvBnyRnHZe8=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.243808+00 2025-12-09 10:14:55.243813+00 7317 JTSS017FW#VS-D3杏 SPMX-20240815302471 \N \N \N 1 \N [{"file_id": "96f8a26c-71f8-4c74-88aa-6d4ee191fe54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6e0bb6edbe94b23b8a7029495e0ff5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6e0bb6edbe94b23b8a7029495e0ff5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6e0bb6edbe94b23b8a7029495e0ff5c.jpg", "file_size": 13593, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017FW#VS-D3杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e0bb6edbe94b23b8a7029495e0ff5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e0bb6edbe94b23b8a7029495e0ff5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e0bb6edbe94b23b8a7029495e0ff5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6e0bb6edbe94b23b8a7029495e0ff5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6e0bb6edbe94b23b8a7029495e0ff5c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:clBobqcGXrT-ly6rY0hxzVpd-m8=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.245288+00 2025-12-09 10:14:55.245293+00 7318 23-2112#-A11前后片4XL SPMX-20240815302470 \N \N \N 1 \N [{"file_id": "85445ec2-c873-49a5-8958-45d5d60a60de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c6ad6788a644e9c9dd7f3a2796b63f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c6ad6788a644e9c9dd7f3a2796b63f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c6ad6788a644e9c9dd7f3a2796b63f0.jpg", "file_size": 10207, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6ad6788a644e9c9dd7f3a2796b63f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6ad6788a644e9c9dd7f3a2796b63f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6ad6788a644e9c9dd7f3a2796b63f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c6ad6788a644e9c9dd7f3a2796b63f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c6ad6788a644e9c9dd7f3a2796b63f0.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OGnnFhNUjGxHHyC6NmzGZHy3FY=", "createTime": "2024-08-15 14:45:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.246721+00 2025-12-09 10:14:55.246725+00 7319 HT0101-122#黄色 SPMX-20240815302474 \N \N \N 1 \N [{"file_id": "ec9c4f7c-15cb-42d1-905e-dc9dbbdb135a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f0c59f030264da5b929f346c4d7699b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f0c59f030264da5b929f346c4d7699b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f0c59f030264da5b929f346c4d7699b.jpg", "file_size": 19818, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0c59f030264da5b929f346c4d7699b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0c59f030264da5b929f346c4d7699b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0c59f030264da5b929f346c4d7699b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f0c59f030264da5b929f346c4d7699b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f0c59f030264da5b929f346c4d7699b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si52lkceuIrGgP06CxaN5tUwFOI=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.248124+00 2025-12-09 10:14:55.248129+00 7320 FHXGPK-068-2 SPMX-20240815302475 \N \N \N 1 \N [{"file_id": "c1d17c7d-7df2-44f9-bf5e-d4b2b35d4fd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd0b4ee692f04ca09e7bb69781d28592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd0b4ee692f04ca09e7bb69781d28592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd0b4ee692f04ca09e7bb69781d28592.jpg", "file_size": 31160, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-068-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd0b4ee692f04ca09e7bb69781d28592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd0b4ee692f04ca09e7bb69781d28592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd0b4ee692f04ca09e7bb69781d28592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd0b4ee692f04ca09e7bb69781d28592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd0b4ee692f04ca09e7bb69781d28592.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l2UfHY0rtoOLNzk7KDsROZ2_gy4=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.249523+00 2025-12-09 10:14:55.249527+00 7321 1061#青底粉花 SPMX-20240815302476 \N \N \N 1 \N [{"file_id": "12720700-3071-4832-aa22-c7a478daca0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df5f83add9f34c33becb166156edfdcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df5f83add9f34c33becb166156edfdcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df5f83add9f34c33becb166156edfdcb.jpg", "file_size": 15312, "is_delete": false, "file_type": 1, "original_file_name": "1061#青底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5f83add9f34c33becb166156edfdcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5f83add9f34c33becb166156edfdcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5f83add9f34c33becb166156edfdcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df5f83add9f34c33becb166156edfdcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df5f83add9f34c33becb166156edfdcb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uov4MKCxHzSYBHoDC32jPDmn68Y=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.251039+00 2025-12-09 10:14:55.251043+00 7322 JTSS017FW#杏 SPMX-20240815302478 \N \N \N 1 \N [{"file_id": "64e44183-a464-4168-815d-cf2321f92780", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ab34615d2fc44a8a7ae3711bdce425e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ab34615d2fc44a8a7ae3711bdce425e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ab34615d2fc44a8a7ae3711bdce425e.jpg", "file_size": 13509, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017FW#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab34615d2fc44a8a7ae3711bdce425e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab34615d2fc44a8a7ae3711bdce425e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ab34615d2fc44a8a7ae3711bdce425e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ab34615d2fc44a8a7ae3711bdce425e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ab34615d2fc44a8a7ae3711bdce425e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVWC5QQ1PGLJPImDfxneQvIXfZE=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.252469+00 2025-12-09 10:14:55.252474+00 7323 DK1-004-2-批布 SPMX-20240815302477 \N \N \N 1 \N [{"file_id": "9b4cac89-3f6e-4a79-b734-c2d13dff99d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "628ea27fd402420f92a07ee8ea354451.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "628ea27fd402420f92a07ee8ea354451.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "628ea27fd402420f92a07ee8ea354451.jpg", "file_size": 45180, "is_delete": false, "file_type": 1, "original_file_name": "DK1-004-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628ea27fd402420f92a07ee8ea354451.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628ea27fd402420f92a07ee8ea354451.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628ea27fd402420f92a07ee8ea354451.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/628ea27fd402420f92a07ee8ea354451.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/628ea27fd402420f92a07ee8ea354451.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYs0SNghWlyAAyQ9g0j9AZeZmbM=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.253908+00 2025-12-09 10:14:55.253912+00 7324 23-2112#-A11袖子3XL SPMX-20240815302480 \N \N \N 1 \N [{"file_id": "253862b6-0dc9-46f4-a1be-29d6636ec25f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c71d160ec784716b15421b2df8edb58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c71d160ec784716b15421b2df8edb58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c71d160ec784716b15421b2df8edb58.jpg", "file_size": 7800, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c71d160ec784716b15421b2df8edb58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c71d160ec784716b15421b2df8edb58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c71d160ec784716b15421b2df8edb58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c71d160ec784716b15421b2df8edb58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c71d160ec784716b15421b2df8edb58.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FB5JDTJWHi0ddD-uf8_hMZn-x4U=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.255328+00 2025-12-09 10:14:55.255332+00 7325 C312#大白绿色 SPMX-20240815302479 \N \N \N 1 \N [{"file_id": "f78201c2-4ead-45ea-bdcd-ae0714589104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7530d44415bf44b5a6ec698544548493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7530d44415bf44b5a6ec698544548493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7530d44415bf44b5a6ec698544548493.jpg", "file_size": 8676, "is_delete": false, "file_type": 1, "original_file_name": "C312#大白绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7530d44415bf44b5a6ec698544548493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7530d44415bf44b5a6ec698544548493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7530d44415bf44b5a6ec698544548493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7530d44415bf44b5a6ec698544548493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7530d44415bf44b5a6ec698544548493.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tbRXDj1TvPExf9xwhLDtDLZgcGk=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.256727+00 2025-12-09 10:14:55.256732+00 7326 LZ1235#套装下领4号色 SPMX-20240815302473 \N \N \N 1 \N [{"file_id": "56f08752-9972-4dc7-b4f1-480b3dec1f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c14ff1ce99a4447bb3bcf4967c2febf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c14ff1ce99a4447bb3bcf4967c2febf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c14ff1ce99a4447bb3bcf4967c2febf8.jpg", "file_size": 20022, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#套装下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c14ff1ce99a4447bb3bcf4967c2febf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c14ff1ce99a4447bb3bcf4967c2febf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c14ff1ce99a4447bb3bcf4967c2febf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c14ff1ce99a4447bb3bcf4967c2febf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c14ff1ce99a4447bb3bcf4967c2febf8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQR-ejuqkV4gMuvsOHiETKgAgIM=", "createTime": "2024-08-15 14:45:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.258154+00 2025-12-09 10:14:55.258158+00 7327 8016FWF#男S+童14 SPMX-20240815302481 \N \N \N 1 \N [{"file_id": "0778d501-d340-4b38-927f-4104cf6d1c9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "891eb1176ecf4764a2ee329a1c36b5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "891eb1176ecf4764a2ee329a1c36b5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "891eb1176ecf4764a2ee329a1c36b5f7.jpg", "file_size": 9008, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男S+童14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891eb1176ecf4764a2ee329a1c36b5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891eb1176ecf4764a2ee329a1c36b5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891eb1176ecf4764a2ee329a1c36b5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/891eb1176ecf4764a2ee329a1c36b5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/891eb1176ecf4764a2ee329a1c36b5f7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0bwrLeS1prmhgH_Q2K1xs24BiI=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.259542+00 2025-12-09 10:14:55.259546+00 7328 LJ006FWE#VS-D3 SPMX-20240815302484 \N \N \N 1 \N [{"file_id": "76029bf5-dbc4-48b5-ae7d-8ee0a84df649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "127e4f6de86747a3b7b7f94cf49d8bfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "127e4f6de86747a3b7b7f94cf49d8bfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "127e4f6de86747a3b7b7f94cf49d8bfa.jpg", "file_size": 9610, "is_delete": false, "file_type": 1, "original_file_name": "LJ006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127e4f6de86747a3b7b7f94cf49d8bfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127e4f6de86747a3b7b7f94cf49d8bfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127e4f6de86747a3b7b7f94cf49d8bfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/127e4f6de86747a3b7b7f94cf49d8bfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/127e4f6de86747a3b7b7f94cf49d8bfa.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugLcxVOPTas16lsYu4YH38VV87g=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.261139+00 2025-12-09 10:14:55.261144+00 7329 1062#灰色 SPMX-20240815302486 \N \N \N 1 \N [{"file_id": "29edf209-f592-4fd5-b1c6-24cc644b5daa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49361de8c5374408842c9540d629162a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49361de8c5374408842c9540d629162a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49361de8c5374408842c9540d629162a.jpg", "file_size": 18813, "is_delete": false, "file_type": 1, "original_file_name": "1062#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49361de8c5374408842c9540d629162a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49361de8c5374408842c9540d629162a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49361de8c5374408842c9540d629162a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49361de8c5374408842c9540d629162a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49361de8c5374408842c9540d629162a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWmvzCs0QpoF2lsmZebnZf45cW8=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.262624+00 2025-12-09 10:14:55.262628+00 7330 8016FWF#男S SPMX-20240815302492 \N \N \N 1 \N [{"file_id": "359d5375-32fa-4b81-9db5-fc888a0bf69a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8993d347a1940b19486e192230c1f46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8993d347a1940b19486e192230c1f46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8993d347a1940b19486e192230c1f46.jpg", "file_size": 8659, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8993d347a1940b19486e192230c1f46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8993d347a1940b19486e192230c1f46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8993d347a1940b19486e192230c1f46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8993d347a1940b19486e192230c1f46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8993d347a1940b19486e192230c1f46.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRUK_yXVhZU9pPsKMo6aMAbsVEY=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.264078+00 2025-12-09 10:14:55.264082+00 7331 JTSS017FW#绿 SPMX-20240815302490 \N \N \N 1 \N [{"file_id": "6c7e4a19-26f2-44b4-8b47-e0d34fd7e6e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42a73affce754d85b12c7c3c74124f6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42a73affce754d85b12c7c3c74124f6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42a73affce754d85b12c7c3c74124f6b.jpg", "file_size": 13616, "is_delete": false, "file_type": 1, "original_file_name": "JTSS017FW#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a73affce754d85b12c7c3c74124f6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a73affce754d85b12c7c3c74124f6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a73affce754d85b12c7c3c74124f6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42a73affce754d85b12c7c3c74124f6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42a73affce754d85b12c7c3c74124f6b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DO6heEUlS6dKqAUmZrkLXkmfS7M=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.265529+00 2025-12-09 10:14:55.265533+00 7332 0003-31FWE#绿色 SPMX-20240815302482 \N \N \N 1 \N [{"file_id": "2243798f-e992-4e5b-938e-5187ecb8dd02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feb7672aa27b434483cd614d11ca3c3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feb7672aa27b434483cd614d11ca3c3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feb7672aa27b434483cd614d11ca3c3d.jpg", "file_size": 14765, "is_delete": false, "file_type": 1, "original_file_name": "0003-31FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7672aa27b434483cd614d11ca3c3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7672aa27b434483cd614d11ca3c3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7672aa27b434483cd614d11ca3c3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feb7672aa27b434483cd614d11ca3c3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feb7672aa27b434483cd614d11ca3c3d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7DH1OjLi1W8wBKqv-s4ASvIQ_A=", "createTime": "2024-08-15 14:45:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.266974+00 2025-12-09 10:14:55.266979+00 7333 HT0101-122#黑色 SPMX-20240815302485 \N \N \N 1 \N [{"file_id": "01b7ff0b-0261-477d-ad9d-339ca811b1f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bfb4dd4e34c4802a9c8962d42dd151b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bfb4dd4e34c4802a9c8962d42dd151b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bfb4dd4e34c4802a9c8962d42dd151b.jpg", "file_size": 25706, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-122#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb4dd4e34c4802a9c8962d42dd151b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb4dd4e34c4802a9c8962d42dd151b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfb4dd4e34c4802a9c8962d42dd151b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bfb4dd4e34c4802a9c8962d42dd151b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bfb4dd4e34c4802a9c8962d42dd151b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FAYXlppXkGBbbfF-qVpsvuX96U=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.268406+00 2025-12-09 10:14:55.26841+00 7334 DK1-004-3-批布 SPMX-20240815302489 \N \N \N 1 \N [{"file_id": "aa87eae5-b825-4d10-8257-e239186d9164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dea2833ac824577a4d1d43fd8593551.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dea2833ac824577a4d1d43fd8593551.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dea2833ac824577a4d1d43fd8593551.jpg", "file_size": 37302, "is_delete": false, "file_type": 1, "original_file_name": "DK1-004-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dea2833ac824577a4d1d43fd8593551.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dea2833ac824577a4d1d43fd8593551.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dea2833ac824577a4d1d43fd8593551.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dea2833ac824577a4d1d43fd8593551.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dea2833ac824577a4d1d43fd8593551.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y8q764gwW67PG8pNCyDrV27uqKA=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.269812+00 2025-12-09 10:14:55.269817+00 7335 FHXGPK-068-3 SPMX-20240815302487 \N \N \N 1 \N [{"file_id": "4f4c334f-bbea-42da-93d6-74534d521f66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7205d3329154fd9b2f2dcf4b43f1004.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7205d3329154fd9b2f2dcf4b43f1004.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7205d3329154fd9b2f2dcf4b43f1004.jpg", "file_size": 31776, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-068-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7205d3329154fd9b2f2dcf4b43f1004.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7205d3329154fd9b2f2dcf4b43f1004.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7205d3329154fd9b2f2dcf4b43f1004.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7205d3329154fd9b2f2dcf4b43f1004.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7205d3329154fd9b2f2dcf4b43f1004.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xu7UkHwv-toy0TIrCjJ8gfygy5Q=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.271226+00 2025-12-09 10:14:55.271231+00 7336 C312#黑色 SPMX-20240815302488 \N \N \N 1 \N [{"file_id": "8ec4881d-20f5-4f9f-a8c5-e3329d14f359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40d79aa75a2440349a14e1c716353a6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40d79aa75a2440349a14e1c716353a6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40d79aa75a2440349a14e1c716353a6f.jpg", "file_size": 8379, "is_delete": false, "file_type": 1, "original_file_name": "C312#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d79aa75a2440349a14e1c716353a6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d79aa75a2440349a14e1c716353a6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d79aa75a2440349a14e1c716353a6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40d79aa75a2440349a14e1c716353a6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40d79aa75a2440349a14e1c716353a6f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59Abq-Px_HKdpVKJ5CyUFLfReSI=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.272608+00 2025-12-09 10:14:55.272612+00 7337 23-2112#-A11袖子4XL SPMX-20240815302491 \N \N \N 1 \N [{"file_id": "730dbdf7-c79e-40a6-b649-97be58d706fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df8ff6da678044acac9a5ce97fdef6b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df8ff6da678044acac9a5ce97fdef6b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df8ff6da678044acac9a5ce97fdef6b7.jpg", "file_size": 7715, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8ff6da678044acac9a5ce97fdef6b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8ff6da678044acac9a5ce97fdef6b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8ff6da678044acac9a5ce97fdef6b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df8ff6da678044acac9a5ce97fdef6b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df8ff6da678044acac9a5ce97fdef6b7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6eekuZvixf68Uw4614pUG5cRWE=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.27407+00 2025-12-09 10:14:55.274074+00 7338 LJ007-1FWE#VS-D3 SPMX-20240815302494 \N \N \N 1 \N [{"file_id": "c43bdd97-3de4-4829-ac9e-a77192d93e33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96497ee0f685418393f7524507b19e3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96497ee0f685418393f7524507b19e3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96497ee0f685418393f7524507b19e3d.jpg", "file_size": 9009, "is_delete": false, "file_type": 1, "original_file_name": "LJ007-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96497ee0f685418393f7524507b19e3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96497ee0f685418393f7524507b19e3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96497ee0f685418393f7524507b19e3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96497ee0f685418393f7524507b19e3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96497ee0f685418393f7524507b19e3d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FiQpV50MYpwkSr5HTPh3QKBSq5g=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.275655+00 2025-12-09 10:14:55.27566+00 7339 0003-31FWE#蓝色 SPMX-20240815302493 \N \N \N 1 \N [{"file_id": "802e1b5c-89bd-4037-951b-2f5184449224", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d920b3995c54234af4b0e792ab36fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d920b3995c54234af4b0e792ab36fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d920b3995c54234af4b0e792ab36fe1.jpg", "file_size": 18079, "is_delete": false, "file_type": 1, "original_file_name": "0003-31FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d920b3995c54234af4b0e792ab36fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d920b3995c54234af4b0e792ab36fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d920b3995c54234af4b0e792ab36fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d920b3995c54234af4b0e792ab36fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d920b3995c54234af4b0e792ab36fe1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D_iGl5PmH2XTxtlW5BnATVJr-ys=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.277145+00 2025-12-09 10:14:55.27715+00 7340 LZ1235#套装下领5号色 SPMX-20240815302483 \N \N \N 1 \N [{"file_id": "bdd6045a-ff93-4abc-b81d-5200296a4b66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c83da223faf4cb1b7eac331fd288e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c83da223faf4cb1b7eac331fd288e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c83da223faf4cb1b7eac331fd288e46.jpg", "file_size": 52967, "is_delete": false, "file_type": 1, "original_file_name": "LZ1235#套装下领5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c83da223faf4cb1b7eac331fd288e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c83da223faf4cb1b7eac331fd288e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c83da223faf4cb1b7eac331fd288e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c83da223faf4cb1b7eac331fd288e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c83da223faf4cb1b7eac331fd288e46.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9b7WgOJxcmMBahC1whCK60C8akA=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.278579+00 2025-12-09 10:14:55.278584+00 7341 1062#灰色匹布 SPMX-20240815302498 \N \N \N 1 \N [{"file_id": "7c152c27-be63-46be-bef6-cbf3e6850b1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6c92fbeb32543bd88f8f0c2afefa7ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6c92fbeb32543bd88f8f0c2afefa7ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6c92fbeb32543bd88f8f0c2afefa7ee.jpg", "file_size": 10931, "is_delete": false, "file_type": 1, "original_file_name": "1062#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c92fbeb32543bd88f8f0c2afefa7ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c92fbeb32543bd88f8f0c2afefa7ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c92fbeb32543bd88f8f0c2afefa7ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6c92fbeb32543bd88f8f0c2afefa7ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6c92fbeb32543bd88f8f0c2afefa7ee.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQwhOQUaiPso7nsBvluRZV_8lpc=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.280007+00 2025-12-09 10:14:55.280011+00 7342 HT0101-123#WJC22 SPMX-20240815302499 \N \N \N 1 \N [{"file_id": "77ab4ed3-b2f8-4126-aae8-aa8f470305b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bde4edef187479da5a75db85c4ee611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bde4edef187479da5a75db85c4ee611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bde4edef187479da5a75db85c4ee611.jpg", "file_size": 9065, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-123#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde4edef187479da5a75db85c4ee611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde4edef187479da5a75db85c4ee611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde4edef187479da5a75db85c4ee611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bde4edef187479da5a75db85c4ee611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bde4edef187479da5a75db85c4ee611.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6ogI4WT7cF0I0EUpctota6dJ0s=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.281386+00 2025-12-09 10:14:55.281391+00 7343 FHXGPK-068-4 SPMX-20240815302497 \N \N \N 1 \N [{"file_id": "6b88b885-cf06-488f-bb94-4c6fdc4c82c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3aa69a980a614882a2a97cba73af56db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3aa69a980a614882a2a97cba73af56db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3aa69a980a614882a2a97cba73af56db.jpg", "file_size": 30441, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-068-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa69a980a614882a2a97cba73af56db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa69a980a614882a2a97cba73af56db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa69a980a614882a2a97cba73af56db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3aa69a980a614882a2a97cba73af56db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3aa69a980a614882a2a97cba73af56db.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5BasNy9B653czQKKB3OZN0A0QI=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.282797+00 2025-12-09 10:14:55.282801+00 7344 LZ1236#上身1号色 SPMX-20240815302495 \N \N \N 1 \N [{"file_id": "e9da87df-4015-45e3-9e3e-8d5779f7bd42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f644ec60e4484db5913e981e4ee595bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f644ec60e4484db5913e981e4ee595bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f644ec60e4484db5913e981e4ee595bf.jpg", "file_size": 19276, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f644ec60e4484db5913e981e4ee595bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f644ec60e4484db5913e981e4ee595bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f644ec60e4484db5913e981e4ee595bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f644ec60e4484db5913e981e4ee595bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f644ec60e4484db5913e981e4ee595bf.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORmgsRVwTa28ISPObR39MgWIoTM=", "createTime": "2024-08-15 14:45:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.284244+00 2025-12-09 10:14:55.284249+00 7345 DK1-005-1-批布 SPMX-20240815302500 \N \N \N 1 \N [{"file_id": "6e17db78-3e34-4088-96b5-6371d29bbb95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8595abd498144de392a954f98388263e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8595abd498144de392a954f98388263e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8595abd498144de392a954f98388263e.jpg", "file_size": 47102, "is_delete": false, "file_type": 1, "original_file_name": "DK1-005-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8595abd498144de392a954f98388263e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8595abd498144de392a954f98388263e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8595abd498144de392a954f98388263e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8595abd498144de392a954f98388263e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8595abd498144de392a954f98388263e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HpRe4q82TaDF27xtTTsXEn4X9Ro=", "createTime": "2024-08-15 14:45:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.285781+00 2025-12-09 10:14:55.285786+00 7346 C316#大白 SPMX-20240815302501 \N \N \N 1 \N [{"file_id": "97860055-6578-4cb7-866b-619c64088ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cbc18b7696540f4809945c519e7efee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cbc18b7696540f4809945c519e7efee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cbc18b7696540f4809945c519e7efee.jpg", "file_size": 17365, "is_delete": false, "file_type": 1, "original_file_name": "C316#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cbc18b7696540f4809945c519e7efee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cbc18b7696540f4809945c519e7efee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cbc18b7696540f4809945c519e7efee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cbc18b7696540f4809945c519e7efee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cbc18b7696540f4809945c519e7efee.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYDngv_8neQNkZ11kDv_gutK3tA=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.287201+00 2025-12-09 10:14:55.287204+00 7347 23-2112#-A11领口通用 SPMX-20240815302502 \N \N \N 1 \N [{"file_id": "12672f13-7762-40b3-a0fa-d0c540466fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232d3ed451fd48bfbde0a8dbe11abd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232d3ed451fd48bfbde0a8dbe11abd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232d3ed451fd48bfbde0a8dbe11abd2f.jpg", "file_size": 7336, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232d3ed451fd48bfbde0a8dbe11abd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232d3ed451fd48bfbde0a8dbe11abd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232d3ed451fd48bfbde0a8dbe11abd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232d3ed451fd48bfbde0a8dbe11abd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232d3ed451fd48bfbde0a8dbe11abd2f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyHBgCz5PUuMPj0F941g8JX9lpE=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.288606+00 2025-12-09 10:14:55.28861+00 7348 FHXGPK-068-5 SPMX-20240815302507 \N \N \N 1 \N [{"file_id": "a493031b-e5d3-4186-94b3-974a0baabf95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b96e6b6010c45be8d18b9c125ea9623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b96e6b6010c45be8d18b9c125ea9623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b96e6b6010c45be8d18b9c125ea9623.jpg", "file_size": 31599, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-068-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b96e6b6010c45be8d18b9c125ea9623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b96e6b6010c45be8d18b9c125ea9623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b96e6b6010c45be8d18b9c125ea9623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b96e6b6010c45be8d18b9c125ea9623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b96e6b6010c45be8d18b9c125ea9623.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8buxbzJl-zMCR4RT2-8WiLvTu0A=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.290015+00 2025-12-09 10:14:55.290019+00 7349 23-2112#-A11领子通用 SPMX-20240815302513 \N \N \N 1 \N [{"file_id": "8d98e321-0b98-4922-aad8-d4c4f893efed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aa18e56a3464cab82b99b32bf8fcdee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aa18e56a3464cab82b99b32bf8fcdee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aa18e56a3464cab82b99b32bf8fcdee.jpg", "file_size": 7809, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A11领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa18e56a3464cab82b99b32bf8fcdee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa18e56a3464cab82b99b32bf8fcdee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa18e56a3464cab82b99b32bf8fcdee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aa18e56a3464cab82b99b32bf8fcdee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aa18e56a3464cab82b99b32bf8fcdee.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDq7b3Jxtpk14o022lOVNCYlJSg=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.291428+00 2025-12-09 10:14:55.291432+00 7350 JTSS018FW# SPMX-20240815302514 \N \N \N 1 \N [{"file_id": "bead974d-b37e-4415-9034-b009a1c1b17a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "323330b87df048a79594db2c7767f9f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "323330b87df048a79594db2c7767f9f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "323330b87df048a79594db2c7767f9f8.jpg", "file_size": 10955, "is_delete": false, "file_type": 1, "original_file_name": "JTSS018FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323330b87df048a79594db2c7767f9f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323330b87df048a79594db2c7767f9f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323330b87df048a79594db2c7767f9f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/323330b87df048a79594db2c7767f9f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/323330b87df048a79594db2c7767f9f8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1RUs5iWHtWPhwEU_s4T2x0YQRes=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.292812+00 2025-12-09 10:14:55.292816+00 7351 LZ1236#上身2号色 SPMX-20240815302508 \N \N \N 1 \N [{"file_id": "abc7685d-f50c-47f7-815a-d50e27a540c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6763d77b0d64af8bfa441ea0739b829.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6763d77b0d64af8bfa441ea0739b829.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6763d77b0d64af8bfa441ea0739b829.jpg", "file_size": 17450, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6763d77b0d64af8bfa441ea0739b829.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6763d77b0d64af8bfa441ea0739b829.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6763d77b0d64af8bfa441ea0739b829.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6763d77b0d64af8bfa441ea0739b829.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6763d77b0d64af8bfa441ea0739b829.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpbdkGm6uyyZ0OXEKYvLIzy2qbY=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.29424+00 2025-12-09 10:14:55.294244+00 7352 LJ007-3FWE#VS-D3 SPMX-20240815302517 \N \N \N 1 \N [{"file_id": "7da3ba0c-5a7b-48c5-9b5f-90dfb06a5cf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4f70052514443b6ace49a750023e3d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4f70052514443b6ace49a750023e3d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4f70052514443b6ace49a750023e3d6.jpg", "file_size": 16437, "is_delete": false, "file_type": 1, "original_file_name": "LJ007-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f70052514443b6ace49a750023e3d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f70052514443b6ace49a750023e3d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4f70052514443b6ace49a750023e3d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4f70052514443b6ace49a750023e3d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4f70052514443b6ace49a750023e3d6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XB52w4J0_UuLdUzMGDeIz-nyt_g=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.295631+00 2025-12-09 10:14:55.295636+00 7353 JTSS018# SPMX-20240815302503 \N \N \N 1 \N [{"file_id": "5693dc50-0720-4acb-ba48-ee15df7072cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03459d8ea1d142ac9015c400a70a8f75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03459d8ea1d142ac9015c400a70a8f75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03459d8ea1d142ac9015c400a70a8f75.jpg", "file_size": 12070, "is_delete": false, "file_type": 1, "original_file_name": "JTSS018#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03459d8ea1d142ac9015c400a70a8f75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03459d8ea1d142ac9015c400a70a8f75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03459d8ea1d142ac9015c400a70a8f75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03459d8ea1d142ac9015c400a70a8f75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03459d8ea1d142ac9015c400a70a8f75.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YyDeHhz1NsCgAIID68io_HGWeU=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.297053+00 2025-12-09 10:14:55.297057+00 7354 FHXGPK-069-1 SPMX-20240815302516 \N \N \N 1 \N [{"file_id": "6acbfe4f-487a-4497-bbdf-4c6a4a8df21c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14f2fad13db740978458cc58124d18b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14f2fad13db740978458cc58124d18b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14f2fad13db740978458cc58124d18b5.jpg", "file_size": 25408, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-069-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f2fad13db740978458cc58124d18b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f2fad13db740978458cc58124d18b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f2fad13db740978458cc58124d18b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14f2fad13db740978458cc58124d18b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14f2fad13db740978458cc58124d18b5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:riG6QKbimyhIB8OYyga20MPt9w8=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.298433+00 2025-12-09 10:14:55.298437+00 7355 HT0101-123#粉色 SPMX-20240815302515 \N \N \N 1 \N [{"file_id": "02ef813c-47e5-4f24-b12e-554a754a7c4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7514c0b127434f8494600a23f7f2de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7514c0b127434f8494600a23f7f2de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7514c0b127434f8494600a23f7f2de.jpg", "file_size": 19611, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-123#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7514c0b127434f8494600a23f7f2de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7514c0b127434f8494600a23f7f2de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7514c0b127434f8494600a23f7f2de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7514c0b127434f8494600a23f7f2de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7514c0b127434f8494600a23f7f2de.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eISa9jtqmG52Va5JGabiDUVjE50=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.299828+00 2025-12-09 10:14:55.299833+00 7356 8016FWF#男XL+童4 SPMX-20240815302505 \N \N \N 1 \N [{"file_id": "4494296e-46b6-4e36-a185-40b6d5a9003e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0cd570e29004ceab8503f6f3317d419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0cd570e29004ceab8503f6f3317d419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0cd570e29004ceab8503f6f3317d419.jpg", "file_size": 9114, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#男XL+童4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cd570e29004ceab8503f6f3317d419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cd570e29004ceab8503f6f3317d419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0cd570e29004ceab8503f6f3317d419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0cd570e29004ceab8503f6f3317d419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0cd570e29004ceab8503f6f3317d419.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCtb3Z5Gh84pFbg_tDU3GbUOc4A=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.301297+00 2025-12-09 10:14:55.301301+00 7357 1062#灰色袖子 SPMX-20240815302509 \N \N \N 1 \N [{"file_id": "209465b8-486f-4ccb-91ad-e2d74e6bd6a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25424d9ff7b74520b63ec5eddd9f80dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25424d9ff7b74520b63ec5eddd9f80dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25424d9ff7b74520b63ec5eddd9f80dd.jpg", "file_size": 10785, "is_delete": false, "file_type": 1, "original_file_name": "1062#灰色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25424d9ff7b74520b63ec5eddd9f80dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25424d9ff7b74520b63ec5eddd9f80dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25424d9ff7b74520b63ec5eddd9f80dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25424d9ff7b74520b63ec5eddd9f80dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25424d9ff7b74520b63ec5eddd9f80dd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kr2tMU-GjYWY9NgVI26SIbSPPtg=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.302742+00 2025-12-09 10:14:55.302746+00 7358 C316#枣红 SPMX-20240815302512 \N \N \N 1 \N [{"file_id": "c04380d9-119b-4287-853b-15868df8dec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74735fcc9fd64c9889e66e8b39a12fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74735fcc9fd64c9889e66e8b39a12fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74735fcc9fd64c9889e66e8b39a12fd9.jpg", "file_size": 19196, "is_delete": false, "file_type": 1, "original_file_name": "C316#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74735fcc9fd64c9889e66e8b39a12fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74735fcc9fd64c9889e66e8b39a12fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74735fcc9fd64c9889e66e8b39a12fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74735fcc9fd64c9889e66e8b39a12fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74735fcc9fd64c9889e66e8b39a12fd9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgahYFPAQpjbLMn46V4nKOtxT74=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.304137+00 2025-12-09 10:14:55.304141+00 7359 0003-31FWE#黄色 SPMX-20240815302510 \N \N \N 1 \N [{"file_id": "0de04ff2-2356-4e8f-b890-ecc60b839f58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "109677a909b3488088b87c966c5a267a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "109677a909b3488088b87c966c5a267a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "109677a909b3488088b87c966c5a267a.jpg", "file_size": 17884, "is_delete": false, "file_type": 1, "original_file_name": "0003-31FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109677a909b3488088b87c966c5a267a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109677a909b3488088b87c966c5a267a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109677a909b3488088b87c966c5a267a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/109677a909b3488088b87c966c5a267a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/109677a909b3488088b87c966c5a267a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDnboju2FyL8Mov9wqExsSsB4co=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.305536+00 2025-12-09 10:14:55.30554+00 7360 LJ007-2FWE#VS-D3 SPMX-20240815302506 \N \N \N 1 \N [{"file_id": "99793828-e58c-4578-aa35-31a53b1b2d67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg", "file_size": 14577, "is_delete": false, "file_type": 1, "original_file_name": "LJ007-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6b4fe5e94374e4fa5ee7e6ca3872f98.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVIn6oIBedNGE8h_XSB431opmpI=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.307034+00 2025-12-09 10:14:55.307039+00 7361 0003-31FWF#V5曲线 SPMX-20240815302519 \N \N \N 1 \N [{"file_id": "2f224ec0-181c-411c-bd0f-66bb1dfe4457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "009665fb496941dd935449a754af4e7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "009665fb496941dd935449a754af4e7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "009665fb496941dd935449a754af4e7b.jpg", "file_size": 19675, "is_delete": false, "file_type": 1, "original_file_name": "0003-31FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009665fb496941dd935449a754af4e7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009665fb496941dd935449a754af4e7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009665fb496941dd935449a754af4e7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/009665fb496941dd935449a754af4e7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/009665fb496941dd935449a754af4e7b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SsgUNF1hsJOi8KvDvn_kMNabrw=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.308565+00 2025-12-09 10:14:55.30857+00 7362 DK1-005-2-批布 SPMX-20240815302511 \N \N \N 1 \N [{"file_id": "8d5c8d4c-282c-40f3-91ca-73a6b97e39e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "680b1fca7b1246a1bff0284af8436044.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "680b1fca7b1246a1bff0284af8436044.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "680b1fca7b1246a1bff0284af8436044.jpg", "file_size": 49781, "is_delete": false, "file_type": 1, "original_file_name": "DK1-005-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/680b1fca7b1246a1bff0284af8436044.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/680b1fca7b1246a1bff0284af8436044.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/680b1fca7b1246a1bff0284af8436044.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/680b1fca7b1246a1bff0284af8436044.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/680b1fca7b1246a1bff0284af8436044.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGkvRDm18rNvVz8wAQDLM1Ny9r8=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.309995+00 2025-12-09 10:14:55.309999+00 7363 LZ1236#上身3号色 SPMX-20240815302518 \N \N \N 1 \N [{"file_id": "8ef2f854-b3e6-4f18-91d4-6926959f16a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b255ad1008744895ab233d45bf2fa9b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b255ad1008744895ab233d45bf2fa9b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b255ad1008744895ab233d45bf2fa9b7.jpg", "file_size": 19184, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255ad1008744895ab233d45bf2fa9b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255ad1008744895ab233d45bf2fa9b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255ad1008744895ab233d45bf2fa9b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b255ad1008744895ab233d45bf2fa9b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b255ad1008744895ab233d45bf2fa9b7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOOuid9WnX8sksQnjhq_tVtHjL0=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.311456+00 2025-12-09 10:14:55.31146+00 7364 1062#白色 SPMX-20240815302520 \N \N \N 1 \N [{"file_id": "86abdbbf-513c-404d-ab9e-316a82995167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2f979fc8744a6aab1554f788f75342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2f979fc8744a6aab1554f788f75342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2f979fc8744a6aab1554f788f75342.jpg", "file_size": 20127, "is_delete": false, "file_type": 1, "original_file_name": "1062#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f979fc8744a6aab1554f788f75342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f979fc8744a6aab1554f788f75342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f979fc8744a6aab1554f788f75342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2f979fc8744a6aab1554f788f75342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2f979fc8744a6aab1554f788f75342.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MS3c2KN4bqa6Y00M27vUcvnFa4M=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.312896+00 2025-12-09 10:14:55.312901+00 7365 HT0101-123#橙色 SPMX-20240815302504 \N \N \N 1 \N [{"file_id": "adea7406-868c-4d48-b7e1-3357c40f2eef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "178a5bcf0c024cfaa142a06cf2ecb540.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "178a5bcf0c024cfaa142a06cf2ecb540.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "178a5bcf0c024cfaa142a06cf2ecb540.jpg", "file_size": 20474, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-123#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178a5bcf0c024cfaa142a06cf2ecb540.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178a5bcf0c024cfaa142a06cf2ecb540.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/178a5bcf0c024cfaa142a06cf2ecb540.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/178a5bcf0c024cfaa142a06cf2ecb540.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/178a5bcf0c024cfaa142a06cf2ecb540.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWSwSusz0jPelkijhxD6G7RZA_k=", "createTime": "2024-08-15 14:45:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.314311+00 2025-12-09 10:14:55.314315+00 7366 FHXGPK-069-2 SPMX-20240815302527 \N \N \N 1 \N [{"file_id": "86107ad3-6a05-42d2-9f49-a17b32c8695c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c007f48ca3a4cde81a274b82035dce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c007f48ca3a4cde81a274b82035dce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c007f48ca3a4cde81a274b82035dce8.jpg", "file_size": 27186, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-069-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c007f48ca3a4cde81a274b82035dce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c007f48ca3a4cde81a274b82035dce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c007f48ca3a4cde81a274b82035dce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c007f48ca3a4cde81a274b82035dce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c007f48ca3a4cde81a274b82035dce8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKTX4M6kBGDTYJoEBgZFxfDvxhc=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.31574+00 2025-12-09 10:14:55.315744+00 7367 23-2112#-A12前片4XL SPMX-20240815302534 \N \N \N 1 \N [{"file_id": "b80726a3-a1c1-4387-b25f-0bb8d7b3d111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ad1372debe24e4eb0ce7234dc70ae14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ad1372debe24e4eb0ce7234dc70ae14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ad1372debe24e4eb0ce7234dc70ae14.jpg", "file_size": 10477, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12前片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad1372debe24e4eb0ce7234dc70ae14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad1372debe24e4eb0ce7234dc70ae14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad1372debe24e4eb0ce7234dc70ae14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ad1372debe24e4eb0ce7234dc70ae14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ad1372debe24e4eb0ce7234dc70ae14.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4xeL813jFGUldWa7_v2xLCN07Y=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.317161+00 2025-12-09 10:14:55.317166+00 7368 DK1-005-3-批布 SPMX-20240815302524 \N \N \N 1 \N [{"file_id": "d39f68c9-1257-4300-b48a-2728e86ed6ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "295d5bdd9ce54f32a7f9446426a75388.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "295d5bdd9ce54f32a7f9446426a75388.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "295d5bdd9ce54f32a7f9446426a75388.jpg", "file_size": 41808, "is_delete": false, "file_type": 1, "original_file_name": "DK1-005-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295d5bdd9ce54f32a7f9446426a75388.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295d5bdd9ce54f32a7f9446426a75388.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295d5bdd9ce54f32a7f9446426a75388.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/295d5bdd9ce54f32a7f9446426a75388.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/295d5bdd9ce54f32a7f9446426a75388.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IbG4axX7_eNzqo_0NLEsVXooujc=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.31858+00 2025-12-09 10:14:55.318584+00 7369 8016FWF#童12 SPMX-20240815302521 \N \N \N 1 \N [{"file_id": "8610bb0f-11f9-4793-b608-088811acb089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "153872ad87384db4bd5167c765b6ee45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "153872ad87384db4bd5167c765b6ee45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "153872ad87384db4bd5167c765b6ee45.jpg", "file_size": 11156, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153872ad87384db4bd5167c765b6ee45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153872ad87384db4bd5167c765b6ee45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153872ad87384db4bd5167c765b6ee45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/153872ad87384db4bd5167c765b6ee45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/153872ad87384db4bd5167c765b6ee45.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLRhqXn15-mGioYeSnglv-rACQ4=", "createTime": "2024-08-15 14:45:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.320021+00 2025-12-09 10:14:55.320026+00 7370 C316#草绿 SPMX-20240815302522 \N \N \N 1 \N [{"file_id": "61c5b439-514b-499b-9375-0c801906428a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9a78856f3ea4b7c8712757b603ebabd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9a78856f3ea4b7c8712757b603ebabd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9a78856f3ea4b7c8712757b603ebabd.jpg", "file_size": 17576, "is_delete": false, "file_type": 1, "original_file_name": "C316#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a78856f3ea4b7c8712757b603ebabd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a78856f3ea4b7c8712757b603ebabd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9a78856f3ea4b7c8712757b603ebabd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9a78856f3ea4b7c8712757b603ebabd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9a78856f3ea4b7c8712757b603ebabd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TChuxpMjur35XPv-9CXGOo3Z7ug=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.32144+00 2025-12-09 10:14:55.321444+00 7371 0003-320#橙色 SPMX-20240815302531 \N \N \N 1 \N [{"file_id": "98c581db-d4de-4feb-96c4-c078afdfa930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1096c3fc16548a197bd1442a930e1af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1096c3fc16548a197bd1442a930e1af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1096c3fc16548a197bd1442a930e1af.jpg", "file_size": 24283, "is_delete": false, "file_type": 1, "original_file_name": "0003-320#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1096c3fc16548a197bd1442a930e1af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1096c3fc16548a197bd1442a930e1af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1096c3fc16548a197bd1442a930e1af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1096c3fc16548a197bd1442a930e1af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1096c3fc16548a197bd1442a930e1af.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzfANJbJDvSkQYdR5ufzMhAX2sQ=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.322849+00 2025-12-09 10:14:55.322854+00 7372 JTSS019# SPMX-20240815302536 \N \N \N 1 \N [{"file_id": "bf469534-797a-44a5-a522-f0cf4ab76cd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2054a300ecb74fcaad3c56583b3587b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2054a300ecb74fcaad3c56583b3587b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2054a300ecb74fcaad3c56583b3587b1.jpg", "file_size": 12420, "is_delete": false, "file_type": 1, "original_file_name": "JTSS019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054a300ecb74fcaad3c56583b3587b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054a300ecb74fcaad3c56583b3587b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054a300ecb74fcaad3c56583b3587b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2054a300ecb74fcaad3c56583b3587b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2054a300ecb74fcaad3c56583b3587b1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bySdVjFRdECnNN8rM8-DE6NhiPk=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.324249+00 2025-12-09 10:14:55.324254+00 7373 1062#白色匹布 SPMX-20240815302530 \N \N \N 1 \N [{"file_id": "187934a2-a8ac-4f56-955f-c1bf3cae3bbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "647a517d2e294e24bd113260636eb396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "647a517d2e294e24bd113260636eb396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "647a517d2e294e24bd113260636eb396.jpg", "file_size": 11614, "is_delete": false, "file_type": 1, "original_file_name": "1062#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647a517d2e294e24bd113260636eb396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647a517d2e294e24bd113260636eb396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647a517d2e294e24bd113260636eb396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/647a517d2e294e24bd113260636eb396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/647a517d2e294e24bd113260636eb396.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4PRwtvsxoC4GJ8SrJZTHUSqKps=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.325683+00 2025-12-09 10:14:55.325687+00 7374 LJ007-4FWE#VS-D3 SPMX-20240815302529 \N \N \N 1 \N [{"file_id": "b4c884d2-d5ca-4f0f-8dbb-6bfc4d63fe7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b135977c8764a91916400915677877b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b135977c8764a91916400915677877b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b135977c8764a91916400915677877b.jpg", "file_size": 18583, "is_delete": false, "file_type": 1, "original_file_name": "LJ007-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b135977c8764a91916400915677877b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b135977c8764a91916400915677877b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b135977c8764a91916400915677877b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b135977c8764a91916400915677877b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b135977c8764a91916400915677877b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUnZHEQAGkStu7AzxXGFmek5K7E=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.327098+00 2025-12-09 10:14:55.327102+00 7375 DK1-006-1-批布 SPMX-20240815302535 \N \N \N 1 \N [{"file_id": "e70a3503-eab6-4c5d-8aaa-7d4bd6d5394d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f993b16c7644f6ead15528499ffa6d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f993b16c7644f6ead15528499ffa6d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f993b16c7644f6ead15528499ffa6d9.jpg", "file_size": 27878, "is_delete": false, "file_type": 1, "original_file_name": "DK1-006-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f993b16c7644f6ead15528499ffa6d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f993b16c7644f6ead15528499ffa6d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f993b16c7644f6ead15528499ffa6d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f993b16c7644f6ead15528499ffa6d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f993b16c7644f6ead15528499ffa6d9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZpqiQJ_s5h7YAjZ9x48ROOvJ50=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.328506+00 2025-12-09 10:14:55.328511+00 7376 23-2112#-A12前片3XL SPMX-20240815302523 \N \N \N 1 \N [{"file_id": "6110fa65-c81b-477c-a51a-c2e2f08e35a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "512719a78625403ab8f8008e3dfad8e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "512719a78625403ab8f8008e3dfad8e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "512719a78625403ab8f8008e3dfad8e9.jpg", "file_size": 10383, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12前片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512719a78625403ab8f8008e3dfad8e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512719a78625403ab8f8008e3dfad8e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512719a78625403ab8f8008e3dfad8e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/512719a78625403ab8f8008e3dfad8e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/512719a78625403ab8f8008e3dfad8e9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQ0p9ILNOmjxsSZd96xvS778VXI=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.329924+00 2025-12-09 10:14:55.329928+00 7377 JTSS018FW#VS-D3 SPMX-20240815302526 \N \N \N 1 \N [{"file_id": "24edde82-e7f2-4bdd-b286-ca79e52a39d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea24d0000aa84b09a703cce4da907521.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea24d0000aa84b09a703cce4da907521.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea24d0000aa84b09a703cce4da907521.jpg", "file_size": 10980, "is_delete": false, "file_type": 1, "original_file_name": "JTSS018FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea24d0000aa84b09a703cce4da907521.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea24d0000aa84b09a703cce4da907521.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea24d0000aa84b09a703cce4da907521.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea24d0000aa84b09a703cce4da907521.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea24d0000aa84b09a703cce4da907521.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfSI3crHupyYWM3mO3jNIC4sCPE=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.331462+00 2025-12-09 10:14:55.331466+00 7378 8016FWF#童3 SPMX-20240815302533 \N \N \N 1 \N [{"file_id": "6e10b052-9fe7-47a3-99a1-ff1f74424a2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c86964bd3b0d4fa7926744c3931a8d68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c86964bd3b0d4fa7926744c3931a8d68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c86964bd3b0d4fa7926744c3931a8d68.jpg", "file_size": 7789, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86964bd3b0d4fa7926744c3931a8d68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86964bd3b0d4fa7926744c3931a8d68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86964bd3b0d4fa7926744c3931a8d68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c86964bd3b0d4fa7926744c3931a8d68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c86964bd3b0d4fa7926744c3931a8d68.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9m6u2_s5vfvDxE58ru2NSnZsHk=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.332953+00 2025-12-09 10:14:55.332957+00 7379 HT0101-123#绿色 SPMX-20240815302537 \N \N \N 1 \N [{"file_id": "26909ff1-29f6-4b39-8559-b443e3907752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "918a30aa0cd648fd968e3f37a259b5bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "918a30aa0cd648fd968e3f37a259b5bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "918a30aa0cd648fd968e3f37a259b5bd.jpg", "file_size": 19491, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-123#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918a30aa0cd648fd968e3f37a259b5bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918a30aa0cd648fd968e3f37a259b5bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918a30aa0cd648fd968e3f37a259b5bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/918a30aa0cd648fd968e3f37a259b5bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/918a30aa0cd648fd968e3f37a259b5bd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0I06GxO8OVDPZGTH2IQWDGlLyQk=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.334363+00 2025-12-09 10:14:55.334367+00 7380 HT0101-123#紫色 SPMX-20240815302525 \N \N \N 1 \N [{"file_id": "efafede5-25c6-4aaa-989d-83b5060526d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ceb179843f84f22b1e8e269938cf86e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ceb179843f84f22b1e8e269938cf86e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ceb179843f84f22b1e8e269938cf86e.jpg", "file_size": 20418, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-123#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ceb179843f84f22b1e8e269938cf86e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ceb179843f84f22b1e8e269938cf86e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ceb179843f84f22b1e8e269938cf86e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ceb179843f84f22b1e8e269938cf86e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ceb179843f84f22b1e8e269938cf86e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSQH9dvhF1pntvl73LoqkKcKdIA=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.335775+00 2025-12-09 10:14:55.335778+00 7381 LZ1236#上身4号色 SPMX-20240815302528 \N \N \N 1 \N [{"file_id": "e8f5fff6-8efa-4077-8f89-47c6545db3d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47a8612ffaa348669f3c60501f48c4d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47a8612ffaa348669f3c60501f48c4d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47a8612ffaa348669f3c60501f48c4d2.jpg", "file_size": 16606, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a8612ffaa348669f3c60501f48c4d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a8612ffaa348669f3c60501f48c4d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a8612ffaa348669f3c60501f48c4d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47a8612ffaa348669f3c60501f48c4d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47a8612ffaa348669f3c60501f48c4d2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVsU0CXWSP2IlVjAuJo8_1ZMtK0=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.337206+00 2025-12-09 10:14:55.33721+00 7382 C316#黑色 SPMX-20240815302532 \N \N \N 1 \N [{"file_id": "b206c29d-362c-4612-aae5-0086796f7bfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "766f883ee5bb4749a0049392046e87c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "766f883ee5bb4749a0049392046e87c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "766f883ee5bb4749a0049392046e87c5.jpg", "file_size": 17859, "is_delete": false, "file_type": 1, "original_file_name": "C316#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766f883ee5bb4749a0049392046e87c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766f883ee5bb4749a0049392046e87c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766f883ee5bb4749a0049392046e87c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/766f883ee5bb4749a0049392046e87c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/766f883ee5bb4749a0049392046e87c5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMLyJAC5CHCwjQKQHeUbVXrmICo=", "createTime": "2024-08-15 14:45:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.338602+00 2025-12-09 10:14:55.338606+00 7383 HT0101-124#WJC22 SPMX-20240815302538 \N \N \N 1 \N [{"file_id": "a0c1fe3e-52ca-4b88-9ddf-591e3c8dc546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a577559a6eb9464889553845f2633cd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a577559a6eb9464889553845f2633cd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a577559a6eb9464889553845f2633cd7.jpg", "file_size": 25293, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-124#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a577559a6eb9464889553845f2633cd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a577559a6eb9464889553845f2633cd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a577559a6eb9464889553845f2633cd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a577559a6eb9464889553845f2633cd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a577559a6eb9464889553845f2633cd7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MYBoA1sIQJlErEl7XghcjBpdXo=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.340027+00 2025-12-09 10:14:55.340031+00 7384 JTSS019FW#粉 SPMX-20240815302542 \N \N \N 1 \N [{"file_id": "e7df9cd0-9417-43d4-b990-64213b2fbdf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b237902ed0249c883a131994d8a0b06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b237902ed0249c883a131994d8a0b06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b237902ed0249c883a131994d8a0b06.jpg", "file_size": 11906, "is_delete": false, "file_type": 1, "original_file_name": "JTSS019FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b237902ed0249c883a131994d8a0b06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b237902ed0249c883a131994d8a0b06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b237902ed0249c883a131994d8a0b06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b237902ed0249c883a131994d8a0b06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b237902ed0249c883a131994d8a0b06.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrivCMHAKGsmkHpsMRcNnvtyZIE=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.341441+00 2025-12-09 10:14:55.341445+00 7385 8016FWF#童5 SPMX-20240815302545 \N \N \N 1 \N [{"file_id": "f10e95ee-c884-4c21-af29-0afef9749180", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01a9ad9ce6a44759a6f91ba4cdd47569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01a9ad9ce6a44759a6f91ba4cdd47569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01a9ad9ce6a44759a6f91ba4cdd47569.jpg", "file_size": 7895, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a9ad9ce6a44759a6f91ba4cdd47569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a9ad9ce6a44759a6f91ba4cdd47569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a9ad9ce6a44759a6f91ba4cdd47569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01a9ad9ce6a44759a6f91ba4cdd47569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01a9ad9ce6a44759a6f91ba4cdd47569.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktsZCIJRixLZ3YpJ1IfokMhNO3Q=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.342863+00 2025-12-09 10:14:55.342867+00 7386 23-2112#-A12后片3XL SPMX-20240815302548 \N \N \N 1 \N [{"file_id": "8349ab3a-49f1-498c-821f-cc2d760a79d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg", "file_size": 8282, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1a7e1b1de3f44bf8f7ce526a21ef8f1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cZyqnJOQAisM2hp1MNc4E6c8ig=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.34458+00 2025-12-09 10:14:55.344584+00 7387 LZ1236#下身1号色 SPMX-20240815302540 \N \N \N 1 \N [{"file_id": "f194247e-63b5-4c9a-9c2f-52c3144367ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137dc8add0b1406b8cdcf873d543b074.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137dc8add0b1406b8cdcf873d543b074.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137dc8add0b1406b8cdcf873d543b074.jpg", "file_size": 19362, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137dc8add0b1406b8cdcf873d543b074.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137dc8add0b1406b8cdcf873d543b074.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137dc8add0b1406b8cdcf873d543b074.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137dc8add0b1406b8cdcf873d543b074.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137dc8add0b1406b8cdcf873d543b074.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCfsvAxrlk59iVjQeEOqf4XLqno=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.346074+00 2025-12-09 10:14:55.346079+00 7388 1062#白色袖子 SPMX-20240815302544 \N \N \N 1 \N [{"file_id": "353f7c30-bf07-4c9a-adf7-be6a5741ee05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72828e8f29394c818080d3f1c4af3569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72828e8f29394c818080d3f1c4af3569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72828e8f29394c818080d3f1c4af3569.jpg", "file_size": 11077, "is_delete": false, "file_type": 1, "original_file_name": "1062#白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72828e8f29394c818080d3f1c4af3569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72828e8f29394c818080d3f1c4af3569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72828e8f29394c818080d3f1c4af3569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72828e8f29394c818080d3f1c4af3569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72828e8f29394c818080d3f1c4af3569.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c98ZP84Xn3S1WdeFzV2y3E4b7VI=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.347474+00 2025-12-09 10:14:55.347477+00 7389 FHXGPK-069-3 SPMX-20240815302539 \N \N \N 1 \N [{"file_id": "c8502874-237b-497c-8589-9506f7f8040f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3484ceeb45df4656984f6267f6af72f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3484ceeb45df4656984f6267f6af72f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3484ceeb45df4656984f6267f6af72f1.jpg", "file_size": 27419, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-069-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3484ceeb45df4656984f6267f6af72f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3484ceeb45df4656984f6267f6af72f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3484ceeb45df4656984f6267f6af72f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3484ceeb45df4656984f6267f6af72f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3484ceeb45df4656984f6267f6af72f1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0addhrqir82oHsZ_0NbZ7w7AQbI=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.348883+00 2025-12-09 10:14:55.348887+00 7390 LJ007-5FWE#VS-D3 SPMX-20240815302547 \N \N \N 1 \N [{"file_id": "f765da85-755f-4df9-a7f6-4441fcd2440a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e87532bd04874c288ef2db78daac24d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e87532bd04874c288ef2db78daac24d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e87532bd04874c288ef2db78daac24d9.jpg", "file_size": 9684, "is_delete": false, "file_type": 1, "original_file_name": "LJ007-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87532bd04874c288ef2db78daac24d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87532bd04874c288ef2db78daac24d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87532bd04874c288ef2db78daac24d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e87532bd04874c288ef2db78daac24d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e87532bd04874c288ef2db78daac24d9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adcGgg3y68K6ofvqP2bH7dhYHeU=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.350286+00 2025-12-09 10:14:55.35029+00 7391 C317#大白 SPMX-20240815302546 \N \N \N 1 \N [{"file_id": "2592927d-99f2-4aa5-b043-56a5dac7bd11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2a6e4473b9c4fadb17100148ca14baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2a6e4473b9c4fadb17100148ca14baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2a6e4473b9c4fadb17100148ca14baa.jpg", "file_size": 19875, "is_delete": false, "file_type": 1, "original_file_name": "C317#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a6e4473b9c4fadb17100148ca14baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a6e4473b9c4fadb17100148ca14baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a6e4473b9c4fadb17100148ca14baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2a6e4473b9c4fadb17100148ca14baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2a6e4473b9c4fadb17100148ca14baa.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PcBZrEdFOfIayjJrprWe1YCvlkQ=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.351698+00 2025-12-09 10:14:55.351706+00 7392 DK1-006-2-批布 SPMX-20240815302541 \N \N \N 1 \N [{"file_id": "17970748-f465-424d-b767-8b0ee91c5b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43aef852c94041d988d6a899441347af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43aef852c94041d988d6a899441347af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43aef852c94041d988d6a899441347af.jpg", "file_size": 29273, "is_delete": false, "file_type": 1, "original_file_name": "DK1-006-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43aef852c94041d988d6a899441347af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43aef852c94041d988d6a899441347af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43aef852c94041d988d6a899441347af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43aef852c94041d988d6a899441347af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43aef852c94041d988d6a899441347af.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_KWDTzzCGXM9yWQXrMgd5jabIE=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.353104+00 2025-12-09 10:14:55.353108+00 7393 0003-320#浅紫色 SPMX-20240815302543 \N \N \N 1 \N [{"file_id": "ce078161-5cc4-4b9e-b93d-2d4f36cbca91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0827aa062ef74d26a5b17ce9b773ef06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0827aa062ef74d26a5b17ce9b773ef06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0827aa062ef74d26a5b17ce9b773ef06.jpg", "file_size": 21516, "is_delete": false, "file_type": 1, "original_file_name": "0003-320#浅紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0827aa062ef74d26a5b17ce9b773ef06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0827aa062ef74d26a5b17ce9b773ef06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0827aa062ef74d26a5b17ce9b773ef06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0827aa062ef74d26a5b17ce9b773ef06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0827aa062ef74d26a5b17ce9b773ef06.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dejZtCnaI_j-9q50bOCCDjPTHPU=", "createTime": "2024-08-15 14:45:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.354509+00 2025-12-09 10:14:55.354514+00 7394 HT0101-125#WJC22 SPMX-20240815302549 \N \N \N 1 \N [{"file_id": "60a06232-dad3-4321-9be4-5d558e9966c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79fe9596fb8d49d8907bc9d3651c5100.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79fe9596fb8d49d8907bc9d3651c5100.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79fe9596fb8d49d8907bc9d3651c5100.jpg", "file_size": 19790, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-125#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fe9596fb8d49d8907bc9d3651c5100.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fe9596fb8d49d8907bc9d3651c5100.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79fe9596fb8d49d8907bc9d3651c5100.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79fe9596fb8d49d8907bc9d3651c5100.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79fe9596fb8d49d8907bc9d3651c5100.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l47BvO26JB4ats54dX18c4o0_kI=", "createTime": "2024-08-15 14:45:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.355966+00 2025-12-09 10:14:55.355971+00 7395 8016FWF#童6 SPMX-20240815302559 \N \N \N 1 \N [{"file_id": "ec40c3a4-5786-44ec-ae38-dcf585d8cabf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dba1b1b0643e4b139234842aa39a4005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dba1b1b0643e4b139234842aa39a4005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dba1b1b0643e4b139234842aa39a4005.jpg", "file_size": 8186, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba1b1b0643e4b139234842aa39a4005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba1b1b0643e4b139234842aa39a4005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba1b1b0643e4b139234842aa39a4005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dba1b1b0643e4b139234842aa39a4005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dba1b1b0643e4b139234842aa39a4005.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BI_tPYsMLaT1Cia_eWA9KFz-QMg=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.357664+00 2025-12-09 10:14:55.357668+00 7396 FHXGPK-069-4 SPMX-20240815302553 \N \N \N 1 \N [{"file_id": "d400a704-a76d-4198-b627-0b4a76540aa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c562c18fc08948499d31f1dd7c3a921e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c562c18fc08948499d31f1dd7c3a921e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c562c18fc08948499d31f1dd7c3a921e.jpg", "file_size": 24628, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-069-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c562c18fc08948499d31f1dd7c3a921e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c562c18fc08948499d31f1dd7c3a921e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c562c18fc08948499d31f1dd7c3a921e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c562c18fc08948499d31f1dd7c3a921e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c562c18fc08948499d31f1dd7c3a921e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1C36luhGN7fDFDBg4Q1XFW9WRU8=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.359045+00 2025-12-09 10:14:55.359049+00 7397 HT0101-126#WJC22 SPMX-20240815302555 \N \N \N 1 \N [{"file_id": "0bb977f3-5dcb-482c-a82d-558a6ed02a29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abb3c6a7581349b5a7dab6603b3afbe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abb3c6a7581349b5a7dab6603b3afbe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abb3c6a7581349b5a7dab6603b3afbe8.jpg", "file_size": 18399, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-126#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb3c6a7581349b5a7dab6603b3afbe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb3c6a7581349b5a7dab6603b3afbe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb3c6a7581349b5a7dab6603b3afbe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abb3c6a7581349b5a7dab6603b3afbe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abb3c6a7581349b5a7dab6603b3afbe8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RW0m_5CvRZKb93C98xu2Jb5x9w=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.360443+00 2025-12-09 10:14:55.360447+00 7398 1062#粉色 SPMX-20240815302556 \N \N \N 1 \N [{"file_id": "af292726-b025-4888-a362-3c94c49e466c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f78fbcdcf3b548e38f17bbd01def2b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f78fbcdcf3b548e38f17bbd01def2b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f78fbcdcf3b548e38f17bbd01def2b64.jpg", "file_size": 19267, "is_delete": false, "file_type": 1, "original_file_name": "1062#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78fbcdcf3b548e38f17bbd01def2b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78fbcdcf3b548e38f17bbd01def2b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78fbcdcf3b548e38f17bbd01def2b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f78fbcdcf3b548e38f17bbd01def2b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f78fbcdcf3b548e38f17bbd01def2b64.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ljZepcd-crVLU9SnQroVDOM2Aw=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.361871+00 2025-12-09 10:14:55.361875+00 7399 LZ1236#下身3号色 SPMX-20240815302561 \N \N \N 1 \N [{"file_id": "730fd4ce-3277-4a20-a915-89af2d7443c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0bbbb23787c443f948498d71b5b544b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0bbbb23787c443f948498d71b5b544b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0bbbb23787c443f948498d71b5b544b.jpg", "file_size": 20174, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bbbb23787c443f948498d71b5b544b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bbbb23787c443f948498d71b5b544b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0bbbb23787c443f948498d71b5b544b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0bbbb23787c443f948498d71b5b544b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0bbbb23787c443f948498d71b5b544b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0juyZ97KhAOJHO3IYq93iqKvvo=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.363313+00 2025-12-09 10:14:55.363317+00 7400 C317#彩兰 SPMX-20240815302560 \N \N \N 1 \N [{"file_id": "4606386b-a817-4e31-865c-c05c6bb2438c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a30a295452ad41429cb228da12fb08fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a30a295452ad41429cb228da12fb08fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a30a295452ad41429cb228da12fb08fc.jpg", "file_size": 19579, "is_delete": false, "file_type": 1, "original_file_name": "C317#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30a295452ad41429cb228da12fb08fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30a295452ad41429cb228da12fb08fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a30a295452ad41429cb228da12fb08fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a30a295452ad41429cb228da12fb08fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a30a295452ad41429cb228da12fb08fc.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZ_X61F9QqR7FEx4wmmEKn4vD-U=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.364714+00 2025-12-09 10:14:55.364719+00 7401 DK1-006-3-批布 SPMX-20240815302552 \N \N \N 1 \N [{"file_id": "9e2ac62c-260d-44c2-a543-4455f7efda92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f665a0e4710745f5b94c22135de44429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f665a0e4710745f5b94c22135de44429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f665a0e4710745f5b94c22135de44429.jpg", "file_size": 34639, "is_delete": false, "file_type": 1, "original_file_name": "DK1-006-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f665a0e4710745f5b94c22135de44429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f665a0e4710745f5b94c22135de44429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f665a0e4710745f5b94c22135de44429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f665a0e4710745f5b94c22135de44429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f665a0e4710745f5b94c22135de44429.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twoHDpRazxJxgymK2OvJL5oNt10=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.366114+00 2025-12-09 10:14:55.366118+00 7402 JTSS019FW#蓝 SPMX-20240815302554 \N \N \N 1 \N [{"file_id": "7181d2d4-3dd2-441b-ace3-2a5777e22ec5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6373356a68a4bec90f1b444c686e3a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6373356a68a4bec90f1b444c686e3a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6373356a68a4bec90f1b444c686e3a9.jpg", "file_size": 13125, "is_delete": false, "file_type": 1, "original_file_name": "JTSS019FW#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6373356a68a4bec90f1b444c686e3a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6373356a68a4bec90f1b444c686e3a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6373356a68a4bec90f1b444c686e3a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6373356a68a4bec90f1b444c686e3a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6373356a68a4bec90f1b444c686e3a9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hl-FJqJYdn8S-ZPRoTF8V6NXOw=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.367551+00 2025-12-09 10:14:55.367555+00 7403 23-2112#-A12后片4XL SPMX-20240815302557 \N \N \N 1 \N [{"file_id": "6e4f5194-6043-4b91-b2ff-0e093f5b33b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6031945487814d52b473a4b2a6c5ba75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6031945487814d52b473a4b2a6c5ba75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6031945487814d52b473a4b2a6c5ba75.jpg", "file_size": 7960, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6031945487814d52b473a4b2a6c5ba75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6031945487814d52b473a4b2a6c5ba75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6031945487814d52b473a4b2a6c5ba75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6031945487814d52b473a4b2a6c5ba75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6031945487814d52b473a4b2a6c5ba75.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-bUR3PTtPztvmyU1uNTjajiekU=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.368973+00 2025-12-09 10:14:55.368977+00 7404 LZ1236#下身2号色 SPMX-20240815302550 \N \N \N 1 \N [{"file_id": "582de840-3a39-44b5-ae6a-2790246d5c86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd34abe261784e588a29cfa4587faee6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd34abe261784e588a29cfa4587faee6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd34abe261784e588a29cfa4587faee6.jpg", "file_size": 18380, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd34abe261784e588a29cfa4587faee6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd34abe261784e588a29cfa4587faee6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd34abe261784e588a29cfa4587faee6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd34abe261784e588a29cfa4587faee6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd34abe261784e588a29cfa4587faee6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iy0lf9HeRLvZOb7C6rfBzjZabtc=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.370382+00 2025-12-09 10:14:55.370387+00 7405 LJ007FW#VS-D3 SPMX-20240815302558 \N \N \N 1 \N [{"file_id": "c57479ce-4fe8-4f53-9b4b-05f41f4e606a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "503d55327e25427083e7bd8e10767a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "503d55327e25427083e7bd8e10767a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "503d55327e25427083e7bd8e10767a5c.jpg", "file_size": 20085, "is_delete": false, "file_type": 1, "original_file_name": "LJ007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503d55327e25427083e7bd8e10767a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503d55327e25427083e7bd8e10767a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503d55327e25427083e7bd8e10767a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/503d55327e25427083e7bd8e10767a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/503d55327e25427083e7bd8e10767a5c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWtgk6ofGiun5t-L8FDW7hs5u-g=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.371773+00 2025-12-09 10:14:55.371777+00 7406 0003-320#绿色 SPMX-20240815302551 \N \N \N 1 \N [{"file_id": "94955c02-81cc-4027-b342-f5ca60a227a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42e2ea38ae844d39a1beb3c17ded0aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42e2ea38ae844d39a1beb3c17ded0aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42e2ea38ae844d39a1beb3c17ded0aa9.jpg", "file_size": 23379, "is_delete": false, "file_type": 1, "original_file_name": "0003-320#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e2ea38ae844d39a1beb3c17ded0aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e2ea38ae844d39a1beb3c17ded0aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e2ea38ae844d39a1beb3c17ded0aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42e2ea38ae844d39a1beb3c17ded0aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42e2ea38ae844d39a1beb3c17ded0aa9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0NORX8cEgjuUfyMSZYowVl1-uU=", "createTime": "2024-08-15 14:45:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.373238+00 2025-12-09 10:14:55.373243+00 7407 JTSS020# SPMX-20240815302565 \N \N \N 1 \N [{"file_id": "7e4da38f-5121-4972-b508-7de0bc52c39b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7096c3291f428e833a4703d538a425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7096c3291f428e833a4703d538a425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7096c3291f428e833a4703d538a425.jpg", "file_size": 24707, "is_delete": false, "file_type": 1, "original_file_name": "JTSS020#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7096c3291f428e833a4703d538a425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7096c3291f428e833a4703d538a425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7096c3291f428e833a4703d538a425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7096c3291f428e833a4703d538a425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7096c3291f428e833a4703d538a425.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tIVubrzje7l59_muiEyoV8P4KA=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.374814+00 2025-12-09 10:14:55.374819+00 7408 HT0101-127#WJC22 SPMX-20240815302567 \N \N \N 1 \N [{"file_id": "5b664878-beeb-46bb-883f-22156b584cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dae8df9c0ba4ff4954ed49bffb856f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dae8df9c0ba4ff4954ed49bffb856f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dae8df9c0ba4ff4954ed49bffb856f2.jpg", "file_size": 18279, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-127#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dae8df9c0ba4ff4954ed49bffb856f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dae8df9c0ba4ff4954ed49bffb856f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dae8df9c0ba4ff4954ed49bffb856f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dae8df9c0ba4ff4954ed49bffb856f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dae8df9c0ba4ff4954ed49bffb856f2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jd-pXisBPymGVIyzzJaQ60wJi4s=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.376242+00 2025-12-09 10:14:55.376247+00 7409 LZ1236#下身4号色 SPMX-20240815302571 \N \N \N 1 \N [{"file_id": "113feee1-bbaa-49fe-94dd-abd8c1706874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e026b83d0a4ebf89135c3b7ee1fa54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e026b83d0a4ebf89135c3b7ee1fa54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e026b83d0a4ebf89135c3b7ee1fa54.jpg", "file_size": 18705, "is_delete": false, "file_type": 1, "original_file_name": "LZ1236#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e026b83d0a4ebf89135c3b7ee1fa54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e026b83d0a4ebf89135c3b7ee1fa54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e026b83d0a4ebf89135c3b7ee1fa54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e026b83d0a4ebf89135c3b7ee1fa54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e026b83d0a4ebf89135c3b7ee1fa54.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:scaAxTeGVd9bBXFxYT2Zfn7-Z8s=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.377654+00 2025-12-09 10:14:55.377659+00 7410 LJ007FWE#灰VS-D3 SPMX-20240815302577 \N \N \N 1 \N [{"file_id": "ac922e41-8d86-404b-8e23-f3cac1bef7b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e12533a74d4f029060111b5704447c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e12533a74d4f029060111b5704447c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e12533a74d4f029060111b5704447c.jpg", "file_size": 12410, "is_delete": false, "file_type": 1, "original_file_name": "LJ007FWE#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e12533a74d4f029060111b5704447c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e12533a74d4f029060111b5704447c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e12533a74d4f029060111b5704447c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e12533a74d4f029060111b5704447c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e12533a74d4f029060111b5704447c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1tFaUcrGXauIr-mvUF_E50wqK4=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.379184+00 2025-12-09 10:14:55.379189+00 7411 0003-320#黄色 SPMX-20240815302563 \N \N \N 1 \N [{"file_id": "0ac1b294-8454-44d8-8997-c01e61566bd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c488d73fdf24c29a268716219e1c61c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c488d73fdf24c29a268716219e1c61c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c488d73fdf24c29a268716219e1c61c.jpg", "file_size": 21146, "is_delete": false, "file_type": 1, "original_file_name": "0003-320#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c488d73fdf24c29a268716219e1c61c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c488d73fdf24c29a268716219e1c61c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c488d73fdf24c29a268716219e1c61c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c488d73fdf24c29a268716219e1c61c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c488d73fdf24c29a268716219e1c61c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XxxbB6ygL8mjlcde84dwEySBMQw=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.381078+00 2025-12-09 10:14:55.381084+00 7412 23-2112#-A12袖子3XL SPMX-20240815302570 \N \N \N 1 \N [{"file_id": "b0ddb98e-9146-462d-9b77-bcbc78af32cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f622f04e8e984e99845770f7a0e763f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f622f04e8e984e99845770f7a0e763f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f622f04e8e984e99845770f7a0e763f2.jpg", "file_size": 7843, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f622f04e8e984e99845770f7a0e763f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f622f04e8e984e99845770f7a0e763f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f622f04e8e984e99845770f7a0e763f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f622f04e8e984e99845770f7a0e763f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f622f04e8e984e99845770f7a0e763f2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENElYTVHx18aohRtrfFP858AcxE=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.382643+00 2025-12-09 10:14:55.382648+00 7413 FHXGPK-070-1 SPMX-20240815302574 \N \N \N 1 \N [{"file_id": "18f29a01-e378-42d6-88fa-d2e593880f63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82020acf486b4a589ddcfcddc5489e6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82020acf486b4a589ddcfcddc5489e6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82020acf486b4a589ddcfcddc5489e6c.jpg", "file_size": 31324, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-070-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82020acf486b4a589ddcfcddc5489e6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82020acf486b4a589ddcfcddc5489e6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82020acf486b4a589ddcfcddc5489e6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82020acf486b4a589ddcfcddc5489e6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82020acf486b4a589ddcfcddc5489e6c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7MV2GlL3BNX2FtymkIdeTC66AI=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.384082+00 2025-12-09 10:14:55.384086+00 7414 FHXGPK-069-5 SPMX-20240815302564 \N \N \N 1 \N [{"file_id": "774556a1-dd79-494b-b86f-b11408778467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab16d4cc445446cc971c71d823db96c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab16d4cc445446cc971c71d823db96c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab16d4cc445446cc971c71d823db96c8.jpg", "file_size": 25798, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-069-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab16d4cc445446cc971c71d823db96c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab16d4cc445446cc971c71d823db96c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab16d4cc445446cc971c71d823db96c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab16d4cc445446cc971c71d823db96c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab16d4cc445446cc971c71d823db96c8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6I8EIehJCemUgQ_L-CqTN0IsYc8=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.385591+00 2025-12-09 10:14:55.385596+00 7415 8016FWF#童装10 SPMX-20240815302569 \N \N \N 1 \N [{"file_id": "2c298ca2-97bc-492a-8c92-4ceeffedffaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5dc7e0453bf4247a4b229e78784f5c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5dc7e0453bf4247a4b229e78784f5c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5dc7e0453bf4247a4b229e78784f5c9.jpg", "file_size": 8385, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童装10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dc7e0453bf4247a4b229e78784f5c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dc7e0453bf4247a4b229e78784f5c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dc7e0453bf4247a4b229e78784f5c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5dc7e0453bf4247a4b229e78784f5c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5dc7e0453bf4247a4b229e78784f5c9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqO9BSUyXiawPomP2iQY7uHqoos=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.387291+00 2025-12-09 10:14:55.387297+00 7416 HT0101-128#WJC22 SPMX-20240815302576 \N \N \N 1 \N [{"file_id": "8883e951-6a5b-4593-8fe8-aca35eeabec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a81f2cd166e49349864e47c452531aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a81f2cd166e49349864e47c452531aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a81f2cd166e49349864e47c452531aa.jpg", "file_size": 23299, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-128#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81f2cd166e49349864e47c452531aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81f2cd166e49349864e47c452531aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a81f2cd166e49349864e47c452531aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a81f2cd166e49349864e47c452531aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a81f2cd166e49349864e47c452531aa.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:46WkyoWsXjZCAwQWVyZ79CYhjSE=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.389108+00 2025-12-09 10:14:55.389113+00 7417 DK1-007-1-批布 SPMX-20240815302562 \N \N \N 1 \N [{"file_id": "80fd7029-d04b-438e-becf-0fcfdd34c976", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac6fe06df223484bbdc2b444c2d51844.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac6fe06df223484bbdc2b444c2d51844.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac6fe06df223484bbdc2b444c2d51844.bmp", "file_size": 35532, "is_delete": false, "file_type": 1, "original_file_name": "DK1-007-1-批布.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6fe06df223484bbdc2b444c2d51844.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6fe06df223484bbdc2b444c2d51844.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6fe06df223484bbdc2b444c2d51844.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac6fe06df223484bbdc2b444c2d51844.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac6fe06df223484bbdc2b444c2d51844.bmp?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EDYDeAOgJ6bD9UememDnz2-1Lt4=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.390551+00 2025-12-09 10:14:55.390555+00 7418 JTSS020FW# SPMX-20240815302575 \N \N \N 1 \N [{"file_id": "56e6f489-39c2-432f-94cb-06ceb7be2915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef3215501b1b4ab78a4ec5472c768fc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef3215501b1b4ab78a4ec5472c768fc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef3215501b1b4ab78a4ec5472c768fc7.jpg", "file_size": 9709, "is_delete": false, "file_type": 1, "original_file_name": "JTSS020FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef3215501b1b4ab78a4ec5472c768fc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef3215501b1b4ab78a4ec5472c768fc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef3215501b1b4ab78a4ec5472c768fc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef3215501b1b4ab78a4ec5472c768fc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef3215501b1b4ab78a4ec5472c768fc7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFCuCqGsJTNQ74SeqxytcU6nndM=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.39199+00 2025-12-09 10:14:55.391994+00 7419 1062#粉色匹布 SPMX-20240815302568 \N \N \N 1 \N [{"file_id": "ea14c6ca-2300-4388-946c-fe6af2abfb5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34d2de11d4d349ae988435be69fb73ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34d2de11d4d349ae988435be69fb73ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34d2de11d4d349ae988435be69fb73ef.jpg", "file_size": 11129, "is_delete": false, "file_type": 1, "original_file_name": "1062#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d2de11d4d349ae988435be69fb73ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d2de11d4d349ae988435be69fb73ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d2de11d4d349ae988435be69fb73ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34d2de11d4d349ae988435be69fb73ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34d2de11d4d349ae988435be69fb73ef.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q6NpkKpBjD7lZR5zPaao6A4e5ao=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.3934+00 2025-12-09 10:14:55.393405+00 7420 C317#红色 SPMX-20240815302572 \N \N \N 1 \N [{"file_id": "e72eaa73-c1db-4025-a7f1-26eb2e6fda0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49d4683885f0437eaaa2300f5e09db56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49d4683885f0437eaaa2300f5e09db56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49d4683885f0437eaaa2300f5e09db56.jpg", "file_size": 18817, "is_delete": false, "file_type": 1, "original_file_name": "C317#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d4683885f0437eaaa2300f5e09db56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d4683885f0437eaaa2300f5e09db56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d4683885f0437eaaa2300f5e09db56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49d4683885f0437eaaa2300f5e09db56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49d4683885f0437eaaa2300f5e09db56.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1o55jMroV77M4M3T0DFqdsR-vSQ=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.39483+00 2025-12-09 10:14:55.394834+00 7421 0003-321#WJC22 SPMX-20240815302573 \N \N \N 1 \N [{"file_id": "a1fb37f1-79a9-4053-ae94-5adae2fbb82b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b766e11ee1c1440ebef33115b1eb413c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b766e11ee1c1440ebef33115b1eb413c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b766e11ee1c1440ebef33115b1eb413c.jpg", "file_size": 27739, "is_delete": false, "file_type": 1, "original_file_name": "0003-321#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b766e11ee1c1440ebef33115b1eb413c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b766e11ee1c1440ebef33115b1eb413c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b766e11ee1c1440ebef33115b1eb413c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b766e11ee1c1440ebef33115b1eb413c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b766e11ee1c1440ebef33115b1eb413c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lYu8z7MHZGw_pGWFHzr-Vzwxls=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.396223+00 2025-12-09 10:14:55.396227+00 7422 LJ007FWE#杏VS-D3 SPMX-20240815302566 \N \N \N 1 \N [{"file_id": "c3ff76ca-08ba-42f4-8211-0880a991b01c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505b83a9550346a98fcb246abaab45f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505b83a9550346a98fcb246abaab45f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505b83a9550346a98fcb246abaab45f1.jpg", "file_size": 14236, "is_delete": false, "file_type": 1, "original_file_name": "LJ007FWE#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b83a9550346a98fcb246abaab45f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b83a9550346a98fcb246abaab45f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b83a9550346a98fcb246abaab45f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505b83a9550346a98fcb246abaab45f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505b83a9550346a98fcb246abaab45f1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pi6xT7xYeR5P4oyi4s6hdAk54oc=", "createTime": "2024-08-15 14:45:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.39764+00 2025-12-09 10:14:55.397644+00 7423 8016FWF#童装3 SPMX-20240815302578 \N \N \N 1 \N [{"file_id": "21e90790-be68-4ba6-9aeb-166d36d56e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f570a70fae0642b1841d67d8f283c01b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f570a70fae0642b1841d67d8f283c01b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f570a70fae0642b1841d67d8f283c01b.jpg", "file_size": 7825, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#童装3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f570a70fae0642b1841d67d8f283c01b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f570a70fae0642b1841d67d8f283c01b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f570a70fae0642b1841d67d8f283c01b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f570a70fae0642b1841d67d8f283c01b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f570a70fae0642b1841d67d8f283c01b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CgoxPjVgSgXKORORli8VMZcLzPQ=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.399075+00 2025-12-09 10:14:55.399079+00 7424 DK1-007-3-批布 SPMX-20240815302590 \N \N \N 1 \N [{"file_id": "076480ed-fece-431d-ae00-c497d3bd299c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f2cd419233f47fb97f28711aa0c9380.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f2cd419233f47fb97f28711aa0c9380.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f2cd419233f47fb97f28711aa0c9380.jpg", "file_size": 27824, "is_delete": false, "file_type": 1, "original_file_name": "DK1-007-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cd419233f47fb97f28711aa0c9380.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cd419233f47fb97f28711aa0c9380.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cd419233f47fb97f28711aa0c9380.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f2cd419233f47fb97f28711aa0c9380.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f2cd419233f47fb97f28711aa0c9380.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nG9cNeBFmvdGN_LxnOa1xHk9byU=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.400644+00 2025-12-09 10:14:55.400649+00 7425 LZ1237#3号色 SPMX-20240815302582 \N \N \N 1 \N [{"file_id": "a6409592-db2c-44f6-a3ab-962793a2ff3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651e751048cb4f7fb14fa5a2c99a7021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651e751048cb4f7fb14fa5a2c99a7021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651e751048cb4f7fb14fa5a2c99a7021.jpg", "file_size": 18140, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651e751048cb4f7fb14fa5a2c99a7021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651e751048cb4f7fb14fa5a2c99a7021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651e751048cb4f7fb14fa5a2c99a7021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651e751048cb4f7fb14fa5a2c99a7021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651e751048cb4f7fb14fa5a2c99a7021.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dC5KFgjExmkjkZWbPa43m6NDZfE=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.402107+00 2025-12-09 10:14:55.402112+00 7426 JTSS020FW#VS-D3 SPMX-20240815302585 \N \N \N 1 \N [{"file_id": "f1ca8ace-7867-4c5c-8b5a-510ea815980c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31444a409824c488c1fffa7987cff9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31444a409824c488c1fffa7987cff9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31444a409824c488c1fffa7987cff9c.jpg", "file_size": 10192, "is_delete": false, "file_type": 1, "original_file_name": "JTSS020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31444a409824c488c1fffa7987cff9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31444a409824c488c1fffa7987cff9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31444a409824c488c1fffa7987cff9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31444a409824c488c1fffa7987cff9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31444a409824c488c1fffa7987cff9c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLhXgeefvlbEnGn54zL--UAK7ec=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.403524+00 2025-12-09 10:14:55.403529+00 7427 HT0101-129#原版色 SPMX-20240815302586 \N \N \N 1 \N [{"file_id": "069e1799-2bb0-4155-b339-daf4ee668fed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a9b60c7e7ce47b6b46e3c701fd869cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a9b60c7e7ce47b6b46e3c701fd869cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a9b60c7e7ce47b6b46e3c701fd869cc.jpg", "file_size": 19303, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-129#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b60c7e7ce47b6b46e3c701fd869cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b60c7e7ce47b6b46e3c701fd869cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b60c7e7ce47b6b46e3c701fd869cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a9b60c7e7ce47b6b46e3c701fd869cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a9b60c7e7ce47b6b46e3c701fd869cc.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rthfJR5P7UsGwovOdVBP1_C2rUQ=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.404957+00 2025-12-09 10:14:55.404962+00 7428 23-2112#-A12袖子4XL SPMX-20240815302581 \N \N \N 1 \N [{"file_id": "2d93bdc9-d5c0-4bdf-af9a-fa5be49ac74f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "896b6038c6024377a15b4453ea55ca48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "896b6038c6024377a15b4453ea55ca48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "896b6038c6024377a15b4453ea55ca48.jpg", "file_size": 7908, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896b6038c6024377a15b4453ea55ca48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896b6038c6024377a15b4453ea55ca48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896b6038c6024377a15b4453ea55ca48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/896b6038c6024377a15b4453ea55ca48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/896b6038c6024377a15b4453ea55ca48.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ju4BjHvJ_B1KEBu9wX7oFMu3ewQ=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.406625+00 2025-12-09 10:14:55.406629+00 7429 23-2112#-A12领口通用 SPMX-20240815302593 \N \N \N 1 \N [{"file_id": "2ff2aa3d-9b36-4db3-98dd-f85bae0fe8b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01567b2c55aa4d1f92d7c0568380001d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01567b2c55aa4d1f92d7c0568380001d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01567b2c55aa4d1f92d7c0568380001d.jpg", "file_size": 7739, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01567b2c55aa4d1f92d7c0568380001d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01567b2c55aa4d1f92d7c0568380001d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01567b2c55aa4d1f92d7c0568380001d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01567b2c55aa4d1f92d7c0568380001d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01567b2c55aa4d1f92d7c0568380001d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UAX_0uhMdkT_GGhtsTbtvmOh3U=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.408341+00 2025-12-09 10:14:55.408345+00 7430 FHXGPK-070-2 SPMX-20240815302587 \N \N \N 1 \N [{"file_id": "2f4a2a69-b05d-4306-8007-bc66b322b199", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2347ecb43e44eff968b80b91fb9d1e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2347ecb43e44eff968b80b91fb9d1e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2347ecb43e44eff968b80b91fb9d1e7.jpg", "file_size": 32736, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-070-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2347ecb43e44eff968b80b91fb9d1e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2347ecb43e44eff968b80b91fb9d1e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2347ecb43e44eff968b80b91fb9d1e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2347ecb43e44eff968b80b91fb9d1e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2347ecb43e44eff968b80b91fb9d1e7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-IjHs_eqA76YaAWZ3n9_i5Rk1A=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.410026+00 2025-12-09 10:14:55.41003+00 7431 8016FWF#裤子匹布 SPMX-20240815302589 \N \N \N 1 \N [{"file_id": "b0d511e2-4774-4a4a-9493-4467f261a4db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ddb633d2b6744f19713ec671edf6576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ddb633d2b6744f19713ec671edf6576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ddb633d2b6744f19713ec671edf6576.jpg", "file_size": 23254, "is_delete": false, "file_type": 1, "original_file_name": "8016FWF#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ddb633d2b6744f19713ec671edf6576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ddb633d2b6744f19713ec671edf6576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ddb633d2b6744f19713ec671edf6576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ddb633d2b6744f19713ec671edf6576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ddb633d2b6744f19713ec671edf6576.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxyPaBM3qnXjoxksOLe0tAiCef4=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.411726+00 2025-12-09 10:14:55.41173+00 7432 DK1-007-2-批布 SPMX-20240815302579 \N \N \N 1 \N [{"file_id": "55d8b817-eecd-456d-af84-68e9b6cc1d41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg", "file_size": 29276, "is_delete": false, "file_type": 1, "original_file_name": "DK1-007-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc1303ce9c14ab48cfb13ddb6fd81e1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ybnDLj8vNjMDUuAZy22im4t0JWg=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.41341+00 2025-12-09 10:14:55.413415+00 7433 1062#粉色袖子 SPMX-20240815302580 \N \N \N 1 \N [{"file_id": "e1395314-07e7-4138-9403-cecdcc0871b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f069a54d70b455bb2d46716a89e5fc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f069a54d70b455bb2d46716a89e5fc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f069a54d70b455bb2d46716a89e5fc5.jpg", "file_size": 11167, "is_delete": false, "file_type": 1, "original_file_name": "1062#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f069a54d70b455bb2d46716a89e5fc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f069a54d70b455bb2d46716a89e5fc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f069a54d70b455bb2d46716a89e5fc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f069a54d70b455bb2d46716a89e5fc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f069a54d70b455bb2d46716a89e5fc5.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7q_JMiDv7sh1-WMP13GlMcxutbc=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.41515+00 2025-12-09 10:14:55.415154+00 7434 C317#绿色 SPMX-20240815302583 \N \N \N 1 \N [{"file_id": "673a1bc3-578f-47b6-b4c6-224b1e42b81c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "089f4eebe867486393623ada868055e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "089f4eebe867486393623ada868055e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "089f4eebe867486393623ada868055e8.jpg", "file_size": 18114, "is_delete": false, "file_type": 1, "original_file_name": "C317#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089f4eebe867486393623ada868055e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089f4eebe867486393623ada868055e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089f4eebe867486393623ada868055e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/089f4eebe867486393623ada868055e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/089f4eebe867486393623ada868055e8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jflX2kQwZnNsw6Z-4Uv2Ppfujd8=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.416834+00 2025-12-09 10:14:55.416838+00 7435 LZ1237#上身1号色 SPMX-20240815302592 \N \N \N 1 \N [{"file_id": "c76bbb2c-799b-4a05-8bb6-d59a2896b6fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dad1890fb0ea4798977a00a4e230bac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dad1890fb0ea4798977a00a4e230bac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dad1890fb0ea4798977a00a4e230bac1.jpg", "file_size": 19447, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad1890fb0ea4798977a00a4e230bac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad1890fb0ea4798977a00a4e230bac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad1890fb0ea4798977a00a4e230bac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dad1890fb0ea4798977a00a4e230bac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dad1890fb0ea4798977a00a4e230bac1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZlKcZnmI4q6PDWheAZHFMtcw94=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.418534+00 2025-12-09 10:14:55.418538+00 7436 0003-322#粉色 SPMX-20240815302584 \N \N \N 1 \N [{"file_id": "bcf62675-40a7-45b9-ae75-7ff691bee1a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e15339f5a604d53b8ca44452fa040cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e15339f5a604d53b8ca44452fa040cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e15339f5a604d53b8ca44452fa040cf.jpg", "file_size": 20863, "is_delete": false, "file_type": 1, "original_file_name": "0003-322#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e15339f5a604d53b8ca44452fa040cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e15339f5a604d53b8ca44452fa040cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e15339f5a604d53b8ca44452fa040cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e15339f5a604d53b8ca44452fa040cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e15339f5a604d53b8ca44452fa040cf.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AcjPieYMeVTUlEXWw_gdlNgfthQ=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.419952+00 2025-12-09 10:14:55.419957+00 7437 LJ007FWE#蓝VS-D3 SPMX-20240815302588 \N \N \N 1 \N [{"file_id": "c0eb7a99-b1ce-449c-9aa4-549e9b9b53c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e780cc5b3654f1aa3c4a74c1120ea61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e780cc5b3654f1aa3c4a74c1120ea61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e780cc5b3654f1aa3c4a74c1120ea61.jpg", "file_size": 13953, "is_delete": false, "file_type": 1, "original_file_name": "LJ007FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e780cc5b3654f1aa3c4a74c1120ea61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e780cc5b3654f1aa3c4a74c1120ea61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e780cc5b3654f1aa3c4a74c1120ea61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e780cc5b3654f1aa3c4a74c1120ea61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e780cc5b3654f1aa3c4a74c1120ea61.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0_WVMf1C09QeKRxRGJKLSJKbBU=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.421383+00 2025-12-09 10:14:55.421387+00 7438 1062#青色 SPMX-20240815302591 \N \N \N 1 \N [{"file_id": "1823f7de-0301-4dcc-8e93-42a1783423d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d303bb63e8b44bbabcd4e9bd3d722c76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d303bb63e8b44bbabcd4e9bd3d722c76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d303bb63e8b44bbabcd4e9bd3d722c76.jpg", "file_size": 18836, "is_delete": false, "file_type": 1, "original_file_name": "1062#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d303bb63e8b44bbabcd4e9bd3d722c76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d303bb63e8b44bbabcd4e9bd3d722c76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d303bb63e8b44bbabcd4e9bd3d722c76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d303bb63e8b44bbabcd4e9bd3d722c76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d303bb63e8b44bbabcd4e9bd3d722c76.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eRlQChS-fFKSBI2LQfk-Hm_5f4=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.422792+00 2025-12-09 10:14:55.422796+00 7439 23-2112#-A12领子通用 SPMX-20240815302604 \N \N \N 1 \N [{"file_id": "1c06e84a-d063-45de-9cd3-1b3d585d0d86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bfdb65768a7486a959f0489f8f3ecf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bfdb65768a7486a959f0489f8f3ecf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bfdb65768a7486a959f0489f8f3ecf3.jpg", "file_size": 10032, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A12领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfdb65768a7486a959f0489f8f3ecf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfdb65768a7486a959f0489f8f3ecf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bfdb65768a7486a959f0489f8f3ecf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bfdb65768a7486a959f0489f8f3ecf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bfdb65768a7486a959f0489f8f3ecf3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mctJV7rX99NfKXB9E0qbZN_PD10=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.424236+00 2025-12-09 10:14:55.42424+00 7440 C317#黄色 SPMX-20240815302594 \N \N \N 1 \N [{"file_id": "dc14fc51-e834-46e4-a86e-16578513237c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8dc610cb074246a97e7f31f177df21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8dc610cb074246a97e7f31f177df21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8dc610cb074246a97e7f31f177df21.jpg", "file_size": 17457, "is_delete": false, "file_type": 1, "original_file_name": "C317#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8dc610cb074246a97e7f31f177df21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8dc610cb074246a97e7f31f177df21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8dc610cb074246a97e7f31f177df21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8dc610cb074246a97e7f31f177df21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8dc610cb074246a97e7f31f177df21.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ahEUCuDAmTkRRlFnAwJGuFwq8o=", "createTime": "2024-08-15 14:45:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.425652+00 2025-12-09 10:14:55.425656+00 7441 0003-322#蓝色 SPMX-20240815302608 \N \N \N 1 \N [{"file_id": "b2e5c394-6e58-40fb-9b32-19b2aace8c1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcd109f0eb7947cf8f39d58430a2527b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcd109f0eb7947cf8f39d58430a2527b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcd109f0eb7947cf8f39d58430a2527b.jpg", "file_size": 26602, "is_delete": false, "file_type": 1, "original_file_name": "0003-322#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd109f0eb7947cf8f39d58430a2527b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd109f0eb7947cf8f39d58430a2527b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd109f0eb7947cf8f39d58430a2527b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcd109f0eb7947cf8f39d58430a2527b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcd109f0eb7947cf8f39d58430a2527b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4clrOMr9xIyNXaTbgCH2Mqf2S_A=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.427069+00 2025-12-09 10:14:55.427073+00 7442 FHXGPK-070-3 SPMX-20240815302598 \N \N \N 1 \N [{"file_id": "ac09bd4a-0b04-4db5-b7ef-8e3c9bae4594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b51e43c6c734b91ac737e7ca4fd502a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b51e43c6c734b91ac737e7ca4fd502a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b51e43c6c734b91ac737e7ca4fd502a.jpg", "file_size": 27576, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-070-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b51e43c6c734b91ac737e7ca4fd502a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b51e43c6c734b91ac737e7ca4fd502a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b51e43c6c734b91ac737e7ca4fd502a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b51e43c6c734b91ac737e7ca4fd502a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b51e43c6c734b91ac737e7ca4fd502a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMyukjW02FC4QTalZ6UL-5cnnQA=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.428484+00 2025-12-09 10:14:55.428488+00 7443 1062#青色匹布 SPMX-20240815302601 \N \N \N 1 \N [{"file_id": "86b57bed-055f-4152-8f5c-af6c30611fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "379332da14d84c6cb5ed727fc1e1f8c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "379332da14d84c6cb5ed727fc1e1f8c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "379332da14d84c6cb5ed727fc1e1f8c8.jpg", "file_size": 10869, "is_delete": false, "file_type": 1, "original_file_name": "1062#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379332da14d84c6cb5ed727fc1e1f8c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379332da14d84c6cb5ed727fc1e1f8c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379332da14d84c6cb5ed727fc1e1f8c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/379332da14d84c6cb5ed727fc1e1f8c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/379332da14d84c6cb5ed727fc1e1f8c8.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:beRcGZXxooexlzYOAfoRGmJMVZQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.429887+00 2025-12-09 10:14:55.429891+00 7444 JTSS021#黑底 SPMX-20240815302607 \N \N \N 1 \N [{"file_id": "03693547-f540-4757-a7fe-5f06ad08bed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19a6246518854e5d9ee14d233b5b612d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19a6246518854e5d9ee14d233b5b612d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19a6246518854e5d9ee14d233b5b612d.jpg", "file_size": 12697, "is_delete": false, "file_type": 1, "original_file_name": "JTSS021#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a6246518854e5d9ee14d233b5b612d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a6246518854e5d9ee14d233b5b612d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a6246518854e5d9ee14d233b5b612d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19a6246518854e5d9ee14d233b5b612d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19a6246518854e5d9ee14d233b5b612d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8P6s2NuJY1FhypQQM82XXUqaTgg=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.431301+00 2025-12-09 10:14:55.431306+00 7445 0003-322#紫色 SPMX-20240815302596 \N \N \N 1 \N [{"file_id": "5ec76214-e400-47f6-8c0b-faf81333d58e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg", "file_size": 25841, "is_delete": false, "file_type": 1, "original_file_name": "0003-322#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f959c8a48f4d4b7ab91ebaae3bcc5b82.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAyJcS33t0SPS1D7EOQ5hoTR_1Q=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.43271+00 2025-12-09 10:14:55.432715+00 7446 HT0101-129#绿 SPMX-20240815302595 \N \N \N 1 \N [{"file_id": "3839f91a-cf6a-4e11-927b-415196e9713f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69a26d75ce87427a92259a5162642e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69a26d75ce87427a92259a5162642e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69a26d75ce87427a92259a5162642e8e.jpg", "file_size": 18679, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-129#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a26d75ce87427a92259a5162642e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a26d75ce87427a92259a5162642e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a26d75ce87427a92259a5162642e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69a26d75ce87427a92259a5162642e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69a26d75ce87427a92259a5162642e8e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-x26UuA6925eOWzKV2-AHZ3TOCQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.434139+00 2025-12-09 10:14:55.434143+00 7447 C318#彩兰 SPMX-20240815302605 \N \N \N 1 \N [{"file_id": "42474627-1f4c-4d11-8185-ed0e029a5c51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4510ed11f62a4e5aa95a9d41a2207ab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4510ed11f62a4e5aa95a9d41a2207ab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4510ed11f62a4e5aa95a9d41a2207ab2.jpg", "file_size": 31393, "is_delete": false, "file_type": 1, "original_file_name": "C318#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4510ed11f62a4e5aa95a9d41a2207ab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4510ed11f62a4e5aa95a9d41a2207ab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4510ed11f62a4e5aa95a9d41a2207ab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4510ed11f62a4e5aa95a9d41a2207ab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4510ed11f62a4e5aa95a9d41a2207ab2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMKVM9aHXr1AdXaranZBQ_kEJpQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.435556+00 2025-12-09 10:14:55.43556+00 7448 8017FWF#V5曲线 SPMX-20240815302599 \N \N \N 1 \N [{"file_id": "1b2db779-dbf4-4a7a-91d4-5334f9cad1f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b9c6fe3967d4056b8d00daea8be0c34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b9c6fe3967d4056b8d00daea8be0c34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b9c6fe3967d4056b8d00daea8be0c34.jpg", "file_size": 22940, "is_delete": false, "file_type": 1, "original_file_name": "8017FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b9c6fe3967d4056b8d00daea8be0c34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b9c6fe3967d4056b8d00daea8be0c34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b9c6fe3967d4056b8d00daea8be0c34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b9c6fe3967d4056b8d00daea8be0c34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b9c6fe3967d4056b8d00daea8be0c34.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgHfoTvW6BQyw1CWg7Mj5YNPkGU=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.436971+00 2025-12-09 10:14:55.436975+00 7449 DK1-008-1-批布 SPMX-20240815302600 \N \N \N 1 \N [{"file_id": "e40c7b8d-751a-4665-a33e-87a49e1f551a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "049ca55837754113a13989f71325cd3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "049ca55837754113a13989f71325cd3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "049ca55837754113a13989f71325cd3f.jpg", "file_size": 36762, "is_delete": false, "file_type": 1, "original_file_name": "DK1-008-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ca55837754113a13989f71325cd3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ca55837754113a13989f71325cd3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ca55837754113a13989f71325cd3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/049ca55837754113a13989f71325cd3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/049ca55837754113a13989f71325cd3f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fK1ClifJAmxc_4TNa-lJm2CZzmQ=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.438373+00 2025-12-09 10:14:55.438377+00 7450 JTSS021#白底 SPMX-20240815302597 \N \N \N 1 \N [{"file_id": "5f3f416e-9356-47c5-a43a-561ce4e47998", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76d7fd194666436ba7e19a3d96ad07c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76d7fd194666436ba7e19a3d96ad07c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76d7fd194666436ba7e19a3d96ad07c3.jpg", "file_size": 11827, "is_delete": false, "file_type": 1, "original_file_name": "JTSS021#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d7fd194666436ba7e19a3d96ad07c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d7fd194666436ba7e19a3d96ad07c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d7fd194666436ba7e19a3d96ad07c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76d7fd194666436ba7e19a3d96ad07c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76d7fd194666436ba7e19a3d96ad07c3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bze8LSAiJHJwOezeaKmKz7iayPE=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.439785+00 2025-12-09 10:14:55.43979+00 7451 LJ008FW#VS-D3 SPMX-20240815302602 \N \N \N 1 \N [{"file_id": "4fa22971-09d6-4876-a126-23a12037b003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "229ed9453bd740499875b59aaa555e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "229ed9453bd740499875b59aaa555e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "229ed9453bd740499875b59aaa555e8a.jpg", "file_size": 13777, "is_delete": false, "file_type": 1, "original_file_name": "LJ008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229ed9453bd740499875b59aaa555e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229ed9453bd740499875b59aaa555e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229ed9453bd740499875b59aaa555e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/229ed9453bd740499875b59aaa555e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/229ed9453bd740499875b59aaa555e8a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8cBdi4UY8SinChs2Dl1AkpDRHM=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.441238+00 2025-12-09 10:14:55.441243+00 7452 LZ1237#上身2号色 SPMX-20240815302603 \N \N \N 1 \N [{"file_id": "d819ab57-ce9d-4374-974e-3e1a274f7851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "709934660aad47cca9259cd7e0a5318f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "709934660aad47cca9259cd7e0a5318f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "709934660aad47cca9259cd7e0a5318f.jpg", "file_size": 18378, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709934660aad47cca9259cd7e0a5318f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709934660aad47cca9259cd7e0a5318f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709934660aad47cca9259cd7e0a5318f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/709934660aad47cca9259cd7e0a5318f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/709934660aad47cca9259cd7e0a5318f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-UYXxnwxngf7g97Rf5pFI7u31U=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.442647+00 2025-12-09 10:14:55.442652+00 7453 HT0101-129#蓝 SPMX-20240815302606 \N \N \N 1 \N [{"file_id": "e6a3412e-911c-4438-b1e7-866f75b39b3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21f64e6e891940db8590271bb064e42d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21f64e6e891940db8590271bb064e42d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21f64e6e891940db8590271bb064e42d.jpg", "file_size": 20839, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-129#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f64e6e891940db8590271bb064e42d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f64e6e891940db8590271bb064e42d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f64e6e891940db8590271bb064e42d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21f64e6e891940db8590271bb064e42d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21f64e6e891940db8590271bb064e42d.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHiidnv43jlqvYplyLgNH8-p1Ig=", "createTime": "2024-08-15 14:45:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.444306+00 2025-12-09 10:14:55.44431+00 7454 DK1-008-2-批布 SPMX-20240815302611 \N \N \N 1 \N [{"file_id": "6b9f4ec7-691d-4f8e-8f36-d6f4399a9e7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55578e8194bd48e383776b657b8231d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55578e8194bd48e383776b657b8231d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55578e8194bd48e383776b657b8231d3.jpg", "file_size": 37321, "is_delete": false, "file_type": 1, "original_file_name": "DK1-008-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55578e8194bd48e383776b657b8231d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55578e8194bd48e383776b657b8231d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55578e8194bd48e383776b657b8231d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55578e8194bd48e383776b657b8231d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55578e8194bd48e383776b657b8231d3.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r30bS_5_1lAmyzJ7MOPwwszIJKs=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.445717+00 2025-12-09 10:14:55.445721+00 7455 HT0101-13#WJC22 SPMX-20240815302617 \N \N \N 1 \N [{"file_id": "e92ad484-e22a-419a-855d-2638d0661d26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fa3be09a3ab41d9bd531d8b9a161a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fa3be09a3ab41d9bd531d8b9a161a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fa3be09a3ab41d9bd531d8b9a161a0e.jpg", "file_size": 16379, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa3be09a3ab41d9bd531d8b9a161a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa3be09a3ab41d9bd531d8b9a161a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa3be09a3ab41d9bd531d8b9a161a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fa3be09a3ab41d9bd531d8b9a161a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fa3be09a3ab41d9bd531d8b9a161a0e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWTUWw0FQ8RK99PgoWu1Xc8faXw=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.447131+00 2025-12-09 10:14:55.447135+00 7456 FHXGPK-070-5 SPMX-20240815302620 \N \N \N 1 \N [{"file_id": "466c28e7-8f76-4af9-9124-ba1cdc2a05d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "676a4cf7b0854962a9d72f2e16540143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "676a4cf7b0854962a9d72f2e16540143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "676a4cf7b0854962a9d72f2e16540143.jpg", "file_size": 31471, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-070-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676a4cf7b0854962a9d72f2e16540143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676a4cf7b0854962a9d72f2e16540143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676a4cf7b0854962a9d72f2e16540143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/676a4cf7b0854962a9d72f2e16540143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/676a4cf7b0854962a9d72f2e16540143.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzeBy8DIyMkxC0XDU9yXVr3D-9U=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.448538+00 2025-12-09 10:14:55.448543+00 7457 LJ008FWE#蓝VS-D3 SPMX-20240815302612 \N \N \N 1 \N [{"file_id": "2a76368b-2a8d-41f4-abe2-36f39d9d6245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ab7748d6ffa472db03d04216a2f1188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ab7748d6ffa472db03d04216a2f1188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ab7748d6ffa472db03d04216a2f1188.jpg", "file_size": 8053, "is_delete": false, "file_type": 1, "original_file_name": "LJ008FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab7748d6ffa472db03d04216a2f1188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab7748d6ffa472db03d04216a2f1188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab7748d6ffa472db03d04216a2f1188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ab7748d6ffa472db03d04216a2f1188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ab7748d6ffa472db03d04216a2f1188.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSn08zSDOhxT8Xe4pYibFMt4FNU=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.449959+00 2025-12-09 10:14:55.449963+00 7458 JTSS021FW# SPMX-20240815302619 \N \N \N 1 \N [{"file_id": "1671cd5a-049a-4d6d-9b2a-e5e335b9d54d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0e0c829ea034234b56c2ec38767b45f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0e0c829ea034234b56c2ec38767b45f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0e0c829ea034234b56c2ec38767b45f.jpg", "file_size": 16089, "is_delete": false, "file_type": 1, "original_file_name": "JTSS021FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e0c829ea034234b56c2ec38767b45f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e0c829ea034234b56c2ec38767b45f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e0c829ea034234b56c2ec38767b45f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0e0c829ea034234b56c2ec38767b45f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0e0c829ea034234b56c2ec38767b45f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NPL5R2v1weYyPubY_1MxtG7d17o=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.451373+00 2025-12-09 10:14:55.451377+00 7459 1062#黑XL SPMX-20240815302621 \N \N \N 1 \N [{"file_id": "0c747ed6-3a7f-49fa-b584-1c26b2b6a4d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48acd4e3cb5042ca9d1a3b41ff45ea28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48acd4e3cb5042ca9d1a3b41ff45ea28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48acd4e3cb5042ca9d1a3b41ff45ea28.jpg", "file_size": 6513, "is_delete": false, "file_type": 1, "original_file_name": "1062#黑XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48acd4e3cb5042ca9d1a3b41ff45ea28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48acd4e3cb5042ca9d1a3b41ff45ea28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48acd4e3cb5042ca9d1a3b41ff45ea28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48acd4e3cb5042ca9d1a3b41ff45ea28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48acd4e3cb5042ca9d1a3b41ff45ea28.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOfpKm6FL-Vh9o7UcYYX-EjOT9s=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.452767+00 2025-12-09 10:14:55.452771+00 7460 1062#青色袖子 SPMX-20240815302610 \N \N \N 1 \N [{"file_id": "814818ee-fee9-4034-a7d1-617e173d71e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32aab0a2414f4e168c3781d0c8b802fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32aab0a2414f4e168c3781d0c8b802fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32aab0a2414f4e168c3781d0c8b802fd.jpg", "file_size": 11193, "is_delete": false, "file_type": 1, "original_file_name": "1062#青色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32aab0a2414f4e168c3781d0c8b802fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32aab0a2414f4e168c3781d0c8b802fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32aab0a2414f4e168c3781d0c8b802fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32aab0a2414f4e168c3781d0c8b802fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32aab0a2414f4e168c3781d0c8b802fd.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utaHpiMa3i7VQRbekdy-bValvOA=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.454292+00 2025-12-09 10:14:55.454297+00 7461 FHXGPK-070-4 SPMX-20240815302609 \N \N \N 1 \N [{"file_id": "5cdaa0bc-6a57-4ab6-9b31-8c7737966499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab75b56e35d54ad29cdc6b44c67325cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab75b56e35d54ad29cdc6b44c67325cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab75b56e35d54ad29cdc6b44c67325cb.jpg", "file_size": 31237, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-070-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab75b56e35d54ad29cdc6b44c67325cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab75b56e35d54ad29cdc6b44c67325cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab75b56e35d54ad29cdc6b44c67325cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab75b56e35d54ad29cdc6b44c67325cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab75b56e35d54ad29cdc6b44c67325cb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulzQ00jWxU7aWIylEHuj7oiMH3M=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.455714+00 2025-12-09 10:14:55.455718+00 7462 8019#WJC22 SPMX-20240815302613 \N \N \N 1 \N [{"file_id": "51b5339b-1cac-4541-a2cb-32bf6833fdcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8134ff9f51f0413cb3daa1104d82f1b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8134ff9f51f0413cb3daa1104d82f1b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8134ff9f51f0413cb3daa1104d82f1b7.jpg", "file_size": 9317, "is_delete": false, "file_type": 1, "original_file_name": "8019#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8134ff9f51f0413cb3daa1104d82f1b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8134ff9f51f0413cb3daa1104d82f1b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8134ff9f51f0413cb3daa1104d82f1b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8134ff9f51f0413cb3daa1104d82f1b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8134ff9f51f0413cb3daa1104d82f1b7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASIilXH6uk_qa_7Xnd4eIoTTAH4=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.457421+00 2025-12-09 10:14:55.457425+00 7463 0003-322#青色 SPMX-20240815302618 \N \N \N 1 \N [{"file_id": "956282f9-03cb-4197-a494-d96ff31a55cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c513831b27564e62b3f0e9b939c4d862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c513831b27564e62b3f0e9b939c4d862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c513831b27564e62b3f0e9b939c4d862.jpg", "file_size": 23334, "is_delete": false, "file_type": 1, "original_file_name": "0003-322#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c513831b27564e62b3f0e9b939c4d862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c513831b27564e62b3f0e9b939c4d862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c513831b27564e62b3f0e9b939c4d862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c513831b27564e62b3f0e9b939c4d862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c513831b27564e62b3f0e9b939c4d862.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8-LOfytXjTQY_XJEn27M0mZV-w=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.458815+00 2025-12-09 10:14:55.458818+00 7464 C318#橙色 SPMX-20240815302616 \N \N \N 1 \N [{"file_id": "38c1a457-4d35-408c-86ab-f690f34bb748", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "703ea483bac24c7da49837a2fd4ab6f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "703ea483bac24c7da49837a2fd4ab6f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "703ea483bac24c7da49837a2fd4ab6f7.jpg", "file_size": 27970, "is_delete": false, "file_type": 1, "original_file_name": "C318#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703ea483bac24c7da49837a2fd4ab6f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703ea483bac24c7da49837a2fd4ab6f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703ea483bac24c7da49837a2fd4ab6f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/703ea483bac24c7da49837a2fd4ab6f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/703ea483bac24c7da49837a2fd4ab6f7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRd3kvBhf-3b6eI0ipXPPDKOwUA=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.46024+00 2025-12-09 10:14:55.460244+00 7465 23-2112#-A13前后片3XL SPMX-20240815302614 \N \N \N 1 \N [{"file_id": "990e0fa4-e201-485f-97f1-099eb6c0b0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3585ae9a0513435388fdf427ad455335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3585ae9a0513435388fdf427ad455335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3585ae9a0513435388fdf427ad455335.jpg", "file_size": 8491, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3585ae9a0513435388fdf427ad455335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3585ae9a0513435388fdf427ad455335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3585ae9a0513435388fdf427ad455335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3585ae9a0513435388fdf427ad455335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3585ae9a0513435388fdf427ad455335.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPcboW_WFwMuhoeFJ3Cw5bIibgQ=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.461657+00 2025-12-09 10:14:55.461661+00 7466 LZ1237#上身3号色 SPMX-20240815302615 \N \N \N 1 \N [{"file_id": "8dea2f8f-14e3-4ce1-a258-f309634913df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd6bb826ed8c4f998cbf51f130be0435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd6bb826ed8c4f998cbf51f130be0435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd6bb826ed8c4f998cbf51f130be0435.jpg", "file_size": 18010, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6bb826ed8c4f998cbf51f130be0435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6bb826ed8c4f998cbf51f130be0435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6bb826ed8c4f998cbf51f130be0435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd6bb826ed8c4f998cbf51f130be0435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd6bb826ed8c4f998cbf51f130be0435.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YloAZDBBXKKc76fKFsyaMCEMR9A=", "createTime": "2024-08-15 14:45:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.463063+00 2025-12-09 10:14:55.463068+00 7467 DK1-008-3-批布 SPMX-20240815302622 \N \N \N 1 \N [{"file_id": "4f0c0afb-6b4c-47c7-8db6-96bb22a9a6ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e3ea9599e743a6855637a70362167c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e3ea9599e743a6855637a70362167c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e3ea9599e743a6855637a70362167c.jpg", "file_size": 42961, "is_delete": false, "file_type": 1, "original_file_name": "DK1-008-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e3ea9599e743a6855637a70362167c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e3ea9599e743a6855637a70362167c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e3ea9599e743a6855637a70362167c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e3ea9599e743a6855637a70362167c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e3ea9599e743a6855637a70362167c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ED9cGeJ1PHotNAzTGTpVHGwzO-g=", "createTime": "2024-08-15 14:45:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.464472+00 2025-12-09 10:14:55.464475+00 7468 LJ008FWE#黑VS-D3 SPMX-20240815302623 \N \N \N 1 \N [{"file_id": "2e8caa3d-7eb7-43c7-992e-e027a1eaa16b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f699db249d64d7bacbca0942af3c78f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f699db249d64d7bacbca0942af3c78f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f699db249d64d7bacbca0942af3c78f.jpg", "file_size": 8392, "is_delete": false, "file_type": 1, "original_file_name": "LJ008FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f699db249d64d7bacbca0942af3c78f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f699db249d64d7bacbca0942af3c78f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f699db249d64d7bacbca0942af3c78f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f699db249d64d7bacbca0942af3c78f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f699db249d64d7bacbca0942af3c78f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q2t5zolDuN5a82f0L6RNgebJzB4=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.465934+00 2025-12-09 10:14:55.465939+00 7469 JTSS021FW#VS-D3 SPMX-20240815302632 \N \N \N 1 \N [{"file_id": "336f31e6-b9cd-4e77-8080-b82ed3cc9848", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "342405988cb94064acda8f6af70f02d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "342405988cb94064acda8f6af70f02d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "342405988cb94064acda8f6af70f02d1.jpg", "file_size": 15816, "is_delete": false, "file_type": 1, "original_file_name": "JTSS021FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342405988cb94064acda8f6af70f02d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342405988cb94064acda8f6af70f02d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342405988cb94064acda8f6af70f02d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/342405988cb94064acda8f6af70f02d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/342405988cb94064acda8f6af70f02d1.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2pZhgyQA8BFWhEoZ4igBYr4OSBw=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.467568+00 2025-12-09 10:14:55.467572+00 7470 0003-322#黑色 SPMX-20240815302626 \N \N \N 1 \N [{"file_id": "868fcac7-c449-419b-ae25-69b6e3a39009", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33946f58ce0a4c698d49f6d1bd861cf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33946f58ce0a4c698d49f6d1bd861cf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33946f58ce0a4c698d49f6d1bd861cf6.jpg", "file_size": 27939, "is_delete": false, "file_type": 1, "original_file_name": "0003-322#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33946f58ce0a4c698d49f6d1bd861cf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33946f58ce0a4c698d49f6d1bd861cf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33946f58ce0a4c698d49f6d1bd861cf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33946f58ce0a4c698d49f6d1bd861cf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33946f58ce0a4c698d49f6d1bd861cf6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5vuKxWdxbI-lBFiZcHl8C_QBfw=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.469089+00 2025-12-09 10:14:55.469092+00 7471 23-2112#-A13前后片4XL SPMX-20240815302628 \N \N \N 1 \N [{"file_id": "cd097318-70ef-4ba7-bdc9-5a3e753fcbc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0960028ad56d44738661fbea6c86ffc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0960028ad56d44738661fbea6c86ffc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0960028ad56d44738661fbea6c86ffc6.jpg", "file_size": 8868, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0960028ad56d44738661fbea6c86ffc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0960028ad56d44738661fbea6c86ffc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0960028ad56d44738661fbea6c86ffc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0960028ad56d44738661fbea6c86ffc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0960028ad56d44738661fbea6c86ffc6.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swUC9q-zAv8N4twkAo55HnU272Q=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.470549+00 2025-12-09 10:14:55.470554+00 7472 1063# SPMX-20240815302625 \N \N \N 1 \N [{"file_id": "bce1d9f8-28a6-47db-8602-456d17941014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3eb546919c446cca9e3d7229b23308b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3eb546919c446cca9e3d7229b23308b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3eb546919c446cca9e3d7229b23308b.jpg", "file_size": 11480, "is_delete": false, "file_type": 1, "original_file_name": "1063#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb546919c446cca9e3d7229b23308b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb546919c446cca9e3d7229b23308b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb546919c446cca9e3d7229b23308b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3eb546919c446cca9e3d7229b23308b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3eb546919c446cca9e3d7229b23308b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uPpmBzZGW03-VMw28lAfnaD79g=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.472012+00 2025-12-09 10:14:55.472016+00 7473 LZ1237#上身4号色 SPMX-20240815302633 \N \N \N 1 \N [{"file_id": "6e9c333c-753d-459f-b97a-3eb9bc7be96f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1ef68bc3afb45a895cd08631bb53ab9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1ef68bc3afb45a895cd08631bb53ab9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1ef68bc3afb45a895cd08631bb53ab9.jpg", "file_size": 19904, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ef68bc3afb45a895cd08631bb53ab9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ef68bc3afb45a895cd08631bb53ab9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ef68bc3afb45a895cd08631bb53ab9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1ef68bc3afb45a895cd08631bb53ab9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1ef68bc3afb45a895cd08631bb53ab9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1R3GAtwtTKXf3b4gDp5QQZURBjo=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.473565+00 2025-12-09 10:14:55.47357+00 7474 DK1-009-1-批布 SPMX-20240815302631 \N \N \N 1 \N [{"file_id": "ba1cdf3c-6414-4623-82c7-7433e4faafdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "093e49e59f804408badcac4ddac39322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "093e49e59f804408badcac4ddac39322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "093e49e59f804408badcac4ddac39322.jpg", "file_size": 39457, "is_delete": false, "file_type": 1, "original_file_name": "DK1-009-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093e49e59f804408badcac4ddac39322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093e49e59f804408badcac4ddac39322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093e49e59f804408badcac4ddac39322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/093e49e59f804408badcac4ddac39322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/093e49e59f804408badcac4ddac39322.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bh0_6k3uBvdrxkeek7pvzoIl8Fk=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.475181+00 2025-12-09 10:14:55.475186+00 7475 C318#红色 SPMX-20240815302629 \N \N \N 1 \N [{"file_id": "5bebd4a9-d872-43e8-b287-7e018641d14a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "995531d207ce487b8c6a8600e7038b22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "995531d207ce487b8c6a8600e7038b22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "995531d207ce487b8c6a8600e7038b22.jpg", "file_size": 29723, "is_delete": false, "file_type": 1, "original_file_name": "C318#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995531d207ce487b8c6a8600e7038b22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995531d207ce487b8c6a8600e7038b22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995531d207ce487b8c6a8600e7038b22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/995531d207ce487b8c6a8600e7038b22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/995531d207ce487b8c6a8600e7038b22.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ux0o1fS0v1_-7ChbjmtRJHA4A0E=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.476655+00 2025-12-09 10:14:55.47666+00 7476 8020#WJC22 SPMX-20240815302624 \N \N \N 1 \N [{"file_id": "e9daaef4-3ff0-4535-b67e-5cbafcd58473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "428757c1f2e449f3b83da996135b93b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "428757c1f2e449f3b83da996135b93b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "428757c1f2e449f3b83da996135b93b2.jpg", "file_size": 68123, "is_delete": false, "file_type": 1, "original_file_name": "8020#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428757c1f2e449f3b83da996135b93b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428757c1f2e449f3b83da996135b93b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428757c1f2e449f3b83da996135b93b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/428757c1f2e449f3b83da996135b93b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/428757c1f2e449f3b83da996135b93b2.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZmA09cee4fpN8p8k7_a81CKVJ0U=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.478104+00 2025-12-09 10:14:55.478108+00 7477 HT0101-130#2号色 SPMX-20240815302627 \N \N \N 1 \N [{"file_id": "8820dd0f-ee64-41f3-b8bc-d4f4353e4220", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e3a45fb236f470998fee5e37d60ce22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e3a45fb236f470998fee5e37d60ce22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e3a45fb236f470998fee5e37d60ce22.jpg", "file_size": 13116, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-130#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3a45fb236f470998fee5e37d60ce22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3a45fb236f470998fee5e37d60ce22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3a45fb236f470998fee5e37d60ce22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e3a45fb236f470998fee5e37d60ce22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e3a45fb236f470998fee5e37d60ce22.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhtvLCL9_2dD-6SArHyrzmiLO5A=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.479569+00 2025-12-09 10:14:55.479574+00 7478 FHXGPK-071-1 SPMX-20240815302630 \N \N \N 1 \N [{"file_id": "ba201e60-2600-466e-8497-738966238707", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af397724033548238c9a09c3db0783ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af397724033548238c9a09c3db0783ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af397724033548238c9a09c3db0783ae.jpg", "file_size": 33176, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-071-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af397724033548238c9a09c3db0783ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af397724033548238c9a09c3db0783ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af397724033548238c9a09c3db0783ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af397724033548238c9a09c3db0783ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af397724033548238c9a09c3db0783ae.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Ks0qzqVJ-EhOAAjDpCc9skQips=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.481047+00 2025-12-09 10:14:55.481052+00 7479 23-2112#-A13袖子3XL SPMX-20240815302638 \N \N \N 1 \N [{"file_id": "69e2fb25-c922-4f46-b55a-bffbf8feb253", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "540554617e06445b8d02306a0420eadb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "540554617e06445b8d02306a0420eadb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "540554617e06445b8d02306a0420eadb.jpg", "file_size": 8891, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540554617e06445b8d02306a0420eadb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540554617e06445b8d02306a0420eadb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540554617e06445b8d02306a0420eadb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/540554617e06445b8d02306a0420eadb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/540554617e06445b8d02306a0420eadb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xq10NiGBPyp4VwkGv9la23P4Zxs=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.483002+00 2025-12-09 10:14:55.483006+00 7480 DK1-009-2-批布 SPMX-20240815302642 \N \N \N 1 \N [{"file_id": "5e49f8f0-02f1-4824-9e12-29ff0b1edf28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0236c9c872204f92b29341e624c74647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0236c9c872204f92b29341e624c74647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0236c9c872204f92b29341e624c74647.jpg", "file_size": 51075, "is_delete": false, "file_type": 1, "original_file_name": "DK1-009-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0236c9c872204f92b29341e624c74647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0236c9c872204f92b29341e624c74647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0236c9c872204f92b29341e624c74647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0236c9c872204f92b29341e624c74647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0236c9c872204f92b29341e624c74647.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M0G8V4ao8-0DvI5T69PXzp5qR9Q=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.485367+00 2025-12-09 10:14:55.485372+00 7481 1063#宝蓝 SPMX-20240815302636 \N \N \N 1 \N [{"file_id": "169e97d3-9724-4df7-a6ea-e4ead60e930f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2913c65eef4c44a0a64b4199a575fa2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2913c65eef4c44a0a64b4199a575fa2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2913c65eef4c44a0a64b4199a575fa2b.jpg", "file_size": 24042, "is_delete": false, "file_type": 1, "original_file_name": "1063#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2913c65eef4c44a0a64b4199a575fa2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2913c65eef4c44a0a64b4199a575fa2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2913c65eef4c44a0a64b4199a575fa2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2913c65eef4c44a0a64b4199a575fa2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2913c65eef4c44a0a64b4199a575fa2b.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tY3nb8FqJlkunWqfuma7JFu0mpM=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.487397+00 2025-12-09 10:14:55.487401+00 7482 LJ009FWE#VS-D3 SPMX-20240815302646 \N \N \N 1 \N [{"file_id": "af79a843-ed9f-4011-b215-1f39ccc84402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c80043a6864f9a85185b046ad931aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c80043a6864f9a85185b046ad931aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c80043a6864f9a85185b046ad931aa.jpg", "file_size": 12063, "is_delete": false, "file_type": 1, "original_file_name": "LJ009FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c80043a6864f9a85185b046ad931aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c80043a6864f9a85185b046ad931aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c80043a6864f9a85185b046ad931aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c80043a6864f9a85185b046ad931aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c80043a6864f9a85185b046ad931aa.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DclkfhukONF6UokckVwaRgKvoF0=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.4892+00 2025-12-09 10:14:55.489204+00 7483 HT0101-130#3号色 SPMX-20240815302639 \N \N \N 1 \N [{"file_id": "b28697a9-a474-4f31-9efb-f634fe87e814", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee89ce6a92bb4aaebcf5e82c2d70158c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee89ce6a92bb4aaebcf5e82c2d70158c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee89ce6a92bb4aaebcf5e82c2d70158c.jpg", "file_size": 12622, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-130#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee89ce6a92bb4aaebcf5e82c2d70158c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee89ce6a92bb4aaebcf5e82c2d70158c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee89ce6a92bb4aaebcf5e82c2d70158c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee89ce6a92bb4aaebcf5e82c2d70158c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee89ce6a92bb4aaebcf5e82c2d70158c.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5PCdBAl_SJ_LdrmqjhopoXVHjk=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.49114+00 2025-12-09 10:14:55.491144+00 7484 FHXGPK-071-2 SPMX-20240815302641 \N \N \N 1 \N [{"file_id": "937944ab-1d10-4b0c-912c-200eb2accbef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a215b27ceac43bba866067851879c99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a215b27ceac43bba866067851879c99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a215b27ceac43bba866067851879c99.jpg", "file_size": 31403, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-071-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a215b27ceac43bba866067851879c99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a215b27ceac43bba866067851879c99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a215b27ceac43bba866067851879c99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a215b27ceac43bba866067851879c99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a215b27ceac43bba866067851879c99.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5N3LaiEoVmmCzO5m8xEOledqf8=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.49317+00 2025-12-09 10:14:55.493175+00 7485 802232#短款下摆墨绿 SPMX-20240815302645 \N \N \N 1 \N [{"file_id": "d0e09619-d741-4621-990d-808a1b9fd5d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0d85101d677496187992921d919f0d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0d85101d677496187992921d919f0d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0d85101d677496187992921d919f0d9.jpg", "file_size": 23417, "is_delete": false, "file_type": 1, "original_file_name": "802232#短款下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d85101d677496187992921d919f0d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d85101d677496187992921d919f0d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d85101d677496187992921d919f0d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0d85101d677496187992921d919f0d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0d85101d677496187992921d919f0d9.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSVieX2MrhKSMZuQ4NDIRuIaFhI=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.495219+00 2025-12-09 10:14:55.495223+00 7486 JTSS022# SPMX-20240815302643 \N \N \N 1 \N [{"file_id": "a2e440ce-783c-473f-bcd6-be4b356c7627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "882e2722abbb4382ab657dd4cc0e0d69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "882e2722abbb4382ab657dd4cc0e0d69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "882e2722abbb4382ab657dd4cc0e0d69.jpg", "file_size": 11412, "is_delete": false, "file_type": 1, "original_file_name": "JTSS022#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882e2722abbb4382ab657dd4cc0e0d69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882e2722abbb4382ab657dd4cc0e0d69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882e2722abbb4382ab657dd4cc0e0d69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/882e2722abbb4382ab657dd4cc0e0d69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/882e2722abbb4382ab657dd4cc0e0d69.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rs_GyCnMEOd86YV8kE7r1i8FYIQ=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.497233+00 2025-12-09 10:14:55.497237+00 7487 LJ009FW#VS-D3 SPMX-20240815302634 \N \N \N 1 \N [{"file_id": "28a4cf50-1470-466e-b460-6b003f02695c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b697f0cacf941aa973e4984fa570a18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b697f0cacf941aa973e4984fa570a18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b697f0cacf941aa973e4984fa570a18.jpg", "file_size": 14266, "is_delete": false, "file_type": 1, "original_file_name": "LJ009FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b697f0cacf941aa973e4984fa570a18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b697f0cacf941aa973e4984fa570a18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b697f0cacf941aa973e4984fa570a18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b697f0cacf941aa973e4984fa570a18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b697f0cacf941aa973e4984fa570a18.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFqtBL42v0o4cvv3pMTLqpKa_SE=", "createTime": "2024-08-15 14:45:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.499217+00 2025-12-09 10:14:55.499221+00 7488 LZ1237#上身不下领子1号色 SPMX-20240815302644 \N \N \N 1 \N [{"file_id": "d52ac3ef-ca07-42f9-9073-afb3063c7ef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "446eac01947f4317b893e9473151b66a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "446eac01947f4317b893e9473151b66a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "446eac01947f4317b893e9473151b66a.jpg", "file_size": 20736, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身不下领子1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446eac01947f4317b893e9473151b66a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446eac01947f4317b893e9473151b66a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446eac01947f4317b893e9473151b66a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/446eac01947f4317b893e9473151b66a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/446eac01947f4317b893e9473151b66a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqq2LSR1nAQPcgrAQuGye2dO8Yk=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.501072+00 2025-12-09 10:14:55.501077+00 7489 802232#前中乱花 SPMX-20240815302635 \N \N \N 1 \N [{"file_id": "c2387efb-8b7d-42e8-ab69-fef415698c0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2bb14d7a9da41c68b1d9a4700885966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2bb14d7a9da41c68b1d9a4700885966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2bb14d7a9da41c68b1d9a4700885966.jpg", "file_size": 23718, "is_delete": false, "file_type": 1, "original_file_name": "802232#前中乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb14d7a9da41c68b1d9a4700885966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb14d7a9da41c68b1d9a4700885966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2bb14d7a9da41c68b1d9a4700885966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2bb14d7a9da41c68b1d9a4700885966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2bb14d7a9da41c68b1d9a4700885966.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02QOjg-D9dfu-4ubbDNzSjvEpII=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.502995+00 2025-12-09 10:14:55.503+00 7490 0003-323#绿色 SPMX-20240815302637 \N \N \N 1 \N [{"file_id": "f0c5a1e1-b5e9-49b6-adf2-4a3af36aa4d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d37b27c355984a1c82eacbb22f1bfa5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d37b27c355984a1c82eacbb22f1bfa5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d37b27c355984a1c82eacbb22f1bfa5f.jpg", "file_size": 12164, "is_delete": false, "file_type": 1, "original_file_name": "0003-323#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37b27c355984a1c82eacbb22f1bfa5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37b27c355984a1c82eacbb22f1bfa5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37b27c355984a1c82eacbb22f1bfa5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d37b27c355984a1c82eacbb22f1bfa5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d37b27c355984a1c82eacbb22f1bfa5f.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxssAu6Fe7HFMiKTRKnCjhzyzGc=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.504531+00 2025-12-09 10:14:55.504536+00 7491 C318#黑色 SPMX-20240815302640 \N \N \N 1 \N [{"file_id": "f653e272-6106-4158-aa95-f1e63becab09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "862844cb175e460cb6a908e4d9fb929e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "862844cb175e460cb6a908e4d9fb929e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "862844cb175e460cb6a908e4d9fb929e.jpg", "file_size": 31543, "is_delete": false, "file_type": 1, "original_file_name": "C318#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862844cb175e460cb6a908e4d9fb929e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862844cb175e460cb6a908e4d9fb929e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862844cb175e460cb6a908e4d9fb929e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/862844cb175e460cb6a908e4d9fb929e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/862844cb175e460cb6a908e4d9fb929e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G43my23J5A5QIUT1ZZr4GDr45Jo=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.505999+00 2025-12-09 10:14:55.506003+00 7492 1063#宝蓝匹布 SPMX-20240815302647 \N \N \N 1 \N [{"file_id": "c0c4b7ec-7b0b-4509-9bae-cbf908bce537", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17fd624c28db409baab557008cda7072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17fd624c28db409baab557008cda7072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17fd624c28db409baab557008cda7072.jpg", "file_size": 24950, "is_delete": false, "file_type": 1, "original_file_name": "1063#宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17fd624c28db409baab557008cda7072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17fd624c28db409baab557008cda7072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17fd624c28db409baab557008cda7072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17fd624c28db409baab557008cda7072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17fd624c28db409baab557008cda7072.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WFdusBBWI1Oz2ouwSb2WCIe1_Do=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.507466+00 2025-12-09 10:14:55.507471+00 7493 0003-323#黄色 SPMX-20240815302649 \N \N \N 1 \N [{"file_id": "e4688bb3-9561-4c46-9ce3-80301c39504d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e22ea51f45b743ae9d5ab1e42762311a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e22ea51f45b743ae9d5ab1e42762311a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e22ea51f45b743ae9d5ab1e42762311a.jpg", "file_size": 15410, "is_delete": false, "file_type": 1, "original_file_name": "0003-323#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e22ea51f45b743ae9d5ab1e42762311a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e22ea51f45b743ae9d5ab1e42762311a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e22ea51f45b743ae9d5ab1e42762311a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e22ea51f45b743ae9d5ab1e42762311a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e22ea51f45b743ae9d5ab1e42762311a.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUm6cTdyWdjKAkhstz2AdyrrtPc=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.508903+00 2025-12-09 10:14:55.508907+00 7494 JTSS022FW# SPMX-20240815302655 \N \N \N 1 \N [{"file_id": "a1a6422f-0a14-47a2-a578-864251024c90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bfe48071e1546aa8631b2977d5a4933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bfe48071e1546aa8631b2977d5a4933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bfe48071e1546aa8631b2977d5a4933.jpg", "file_size": 13203, "is_delete": false, "file_type": 1, "original_file_name": "JTSS022FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfe48071e1546aa8631b2977d5a4933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfe48071e1546aa8631b2977d5a4933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfe48071e1546aa8631b2977d5a4933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bfe48071e1546aa8631b2977d5a4933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bfe48071e1546aa8631b2977d5a4933.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKlqea97kkkJW7ebR8mLwsnldmQ=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.510329+00 2025-12-09 10:14:55.510335+00 7495 LZ1237#上身不下领子2号色 SPMX-20240815302652 \N \N \N 1 \N [{"file_id": "7262008c-73d4-4574-8255-450a40d745a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7867ade680194cb882d8784713408240.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7867ade680194cb882d8784713408240.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7867ade680194cb882d8784713408240.jpg", "file_size": 19776, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身不下领子2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7867ade680194cb882d8784713408240.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7867ade680194cb882d8784713408240.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7867ade680194cb882d8784713408240.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7867ade680194cb882d8784713408240.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7867ade680194cb882d8784713408240.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvsaM2lSI504OREVZeip728-4ks=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.511734+00 2025-12-09 10:14:55.511738+00 7496 FHXGPK-071-3 SPMX-20240815302654 \N \N \N 1 \N [{"file_id": "74098068-cb6b-4358-b7ed-668a952ddb78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ca52ca40d6044659a1c7f38c7e4b839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ca52ca40d6044659a1c7f38c7e4b839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ca52ca40d6044659a1c7f38c7e4b839.jpg", "file_size": 34317, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-071-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca52ca40d6044659a1c7f38c7e4b839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca52ca40d6044659a1c7f38c7e4b839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca52ca40d6044659a1c7f38c7e4b839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ca52ca40d6044659a1c7f38c7e4b839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ca52ca40d6044659a1c7f38c7e4b839.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gBfBZ8qAOj_bBPBQ6mZXWWZYtk=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.513175+00 2025-12-09 10:14:55.51318+00 7497 LJ010FW#VS-D3 SPMX-20240815302657 \N \N \N 1 \N [{"file_id": "4063b3d6-20af-4598-a742-ac98ada76405", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f58af125221f406f9f5ed57506e6c8ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f58af125221f406f9f5ed57506e6c8ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f58af125221f406f9f5ed57506e6c8ea.jpg", "file_size": 14188, "is_delete": false, "file_type": 1, "original_file_name": "LJ010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58af125221f406f9f5ed57506e6c8ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58af125221f406f9f5ed57506e6c8ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58af125221f406f9f5ed57506e6c8ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f58af125221f406f9f5ed57506e6c8ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f58af125221f406f9f5ed57506e6c8ea.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:psTcf71UaYPiPpG2EtM8ir-c4xA=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.514972+00 2025-12-09 10:14:55.514977+00 7498 1063#宝蓝袖子 SPMX-20240815302661 \N \N \N 1 \N [{"file_id": "8455dc8f-77d0-4ea8-b285-c1e534da50aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8afab8653aff4580a661ced362cfb6b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8afab8653aff4580a661ced362cfb6b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8afab8653aff4580a661ced362cfb6b0.jpg", "file_size": 13563, "is_delete": false, "file_type": 1, "original_file_name": "1063#宝蓝袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afab8653aff4580a661ced362cfb6b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afab8653aff4580a661ced362cfb6b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afab8653aff4580a661ced362cfb6b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8afab8653aff4580a661ced362cfb6b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8afab8653aff4580a661ced362cfb6b0.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6oVdCqfUnM4dGyozsds7E22TXg=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.516625+00 2025-12-09 10:14:55.516631+00 7499 23-2112#-A13袖子4XL SPMX-20240815302648 \N \N \N 1 \N [{"file_id": "d20bb578-d99b-4495-bd1f-215f0fcab80c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54cc73e56a4d48de9f153ffe75aa602e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54cc73e56a4d48de9f153ffe75aa602e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54cc73e56a4d48de9f153ffe75aa602e.jpg", "file_size": 8905, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54cc73e56a4d48de9f153ffe75aa602e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54cc73e56a4d48de9f153ffe75aa602e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54cc73e56a4d48de9f153ffe75aa602e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54cc73e56a4d48de9f153ffe75aa602e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54cc73e56a4d48de9f153ffe75aa602e.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0fl-8YIfM8GdYkv_aXetmwLExI=", "createTime": "2024-08-15 14:45:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.518203+00 2025-12-09 10:14:55.518208+00 7500 C319#绿色 SPMX-20240815302651 \N \N \N 1 \N [{"file_id": "5006e9c6-8c9d-49aa-a40c-5dd325e9004b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe062eab528e43f58e39685106a65f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe062eab528e43f58e39685106a65f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe062eab528e43f58e39685106a65f95.jpg", "file_size": 29940, "is_delete": false, "file_type": 1, "original_file_name": "C319#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe062eab528e43f58e39685106a65f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe062eab528e43f58e39685106a65f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe062eab528e43f58e39685106a65f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe062eab528e43f58e39685106a65f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe062eab528e43f58e39685106a65f95.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfR4i5COvmlix-bUI3QQoK9DMKc=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.520031+00 2025-12-09 10:14:55.520035+00 7501 802232#短款下摆彩蓝 SPMX-20240815302656 \N \N \N 1 \N [{"file_id": "c46b802a-f77b-4482-9751-7c249df46525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e20da568a29b47a1b55734e943c2c027.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e20da568a29b47a1b55734e943c2c027.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e20da568a29b47a1b55734e943c2c027.jpg", "file_size": 22813, "is_delete": false, "file_type": 1, "original_file_name": "802232#短款下摆彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20da568a29b47a1b55734e943c2c027.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20da568a29b47a1b55734e943c2c027.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20da568a29b47a1b55734e943c2c027.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e20da568a29b47a1b55734e943c2c027.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e20da568a29b47a1b55734e943c2c027.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_j2gtmesc5srs4WqErRdf1s5SAg=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.521576+00 2025-12-09 10:14:55.521582+00 7502 LZ1237#上身不下领子3号色 SPMX-20240815302663 \N \N \N 1 \N [{"file_id": "b5a66e83-a232-4235-aec3-9688fb16b973", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "628c561097f746d5952d5e50098256eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "628c561097f746d5952d5e50098256eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "628c561097f746d5952d5e50098256eb.jpg", "file_size": 18990, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身不下领子3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628c561097f746d5952d5e50098256eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628c561097f746d5952d5e50098256eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628c561097f746d5952d5e50098256eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/628c561097f746d5952d5e50098256eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/628c561097f746d5952d5e50098256eb.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WtcKPb9-6DIEI-nA8OZOSPHQ894=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.523201+00 2025-12-09 10:14:55.523206+00 7503 23-2112#-A13领口通用 SPMX-20240815302658 \N \N \N 1 \N [{"file_id": "cd1a1606-c2cb-4fc1-9353-11ef2c797c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17ec3dc63bb748bbaf6e9cd300005ea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17ec3dc63bb748bbaf6e9cd300005ea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17ec3dc63bb748bbaf6e9cd300005ea0.jpg", "file_size": 8453, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ec3dc63bb748bbaf6e9cd300005ea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ec3dc63bb748bbaf6e9cd300005ea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ec3dc63bb748bbaf6e9cd300005ea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17ec3dc63bb748bbaf6e9cd300005ea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17ec3dc63bb748bbaf6e9cd300005ea0.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAZrcjZfwwrkDaXC-INkJndTdZg=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:55.525065+00 2025-12-09 10:14:55.52507+00 7504 HT0101-130#4号色 SPMX-20240815302650 \N \N \N 1 \N [{"file_id": "a8eb146d-1b2a-450f-b48d-5bbf054240b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b358b247ffd240b992bd638712f9b3c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b358b247ffd240b992bd638712f9b3c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b358b247ffd240b992bd638712f9b3c7.jpg", "file_size": 12493, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-130#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b358b247ffd240b992bd638712f9b3c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b358b247ffd240b992bd638712f9b3c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b358b247ffd240b992bd638712f9b3c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b358b247ffd240b992bd638712f9b3c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b358b247ffd240b992bd638712f9b3c7.jpg?e=1765361694&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rKUfeYP2Tohym2Q3Ks2kXxkXJSA=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.167747+00 2025-12-09 10:14:56.167759+00 7505 0003-324#WJC22 SPMX-20240815302662 \N \N \N 1 \N [{"file_id": "6a0a6aed-e581-4758-aa69-e5d8dc99d99c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22515ef6e3e24e4886eea9773faf5354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22515ef6e3e24e4886eea9773faf5354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22515ef6e3e24e4886eea9773faf5354.jpg", "file_size": 19458, "is_delete": false, "file_type": 1, "original_file_name": "0003-324#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22515ef6e3e24e4886eea9773faf5354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22515ef6e3e24e4886eea9773faf5354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22515ef6e3e24e4886eea9773faf5354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22515ef6e3e24e4886eea9773faf5354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22515ef6e3e24e4886eea9773faf5354.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBvV0WCc5Ml1i8gbHqWa2EGLBeU=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.170148+00 2025-12-09 10:14:56.170154+00 7506 DK1-009-3-批布 SPMX-20240815302653 \N \N \N 1 \N [{"file_id": "3cc71dfd-d23e-4d64-a9a6-32dfa2940934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f374c778eb4ea0a8415c96813296e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f374c778eb4ea0a8415c96813296e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f374c778eb4ea0a8415c96813296e3.jpg", "file_size": 41376, "is_delete": false, "file_type": 1, "original_file_name": "DK1-009-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f374c778eb4ea0a8415c96813296e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f374c778eb4ea0a8415c96813296e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f374c778eb4ea0a8415c96813296e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f374c778eb4ea0a8415c96813296e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f374c778eb4ea0a8415c96813296e3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMCjbZV2Tge2YLCuBxX_W1Y3E7U=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.172188+00 2025-12-09 10:14:56.172194+00 7507 C320#原版色 SPMX-20240815302659 \N \N \N 1 \N [{"file_id": "53c1b38d-d8f5-42aa-b9d9-5168021f68eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e65a6799b3ae4685a603b2279dfacccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e65a6799b3ae4685a603b2279dfacccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e65a6799b3ae4685a603b2279dfacccf.jpg", "file_size": 17391, "is_delete": false, "file_type": 1, "original_file_name": "C320#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65a6799b3ae4685a603b2279dfacccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65a6799b3ae4685a603b2279dfacccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e65a6799b3ae4685a603b2279dfacccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e65a6799b3ae4685a603b2279dfacccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e65a6799b3ae4685a603b2279dfacccf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkW7loBjhK_6H33YvcwE6M63R2Y=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.174171+00 2025-12-09 10:14:56.174176+00 7508 DK1-010-1-批布 SPMX-20240815302664 \N \N \N 1 \N [{"file_id": "a62941b2-f1c8-406e-b594-989a08970fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21fabd7e235349b899f5159d1a6255ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21fabd7e235349b899f5159d1a6255ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21fabd7e235349b899f5159d1a6255ea.jpg", "file_size": 24339, "is_delete": false, "file_type": 1, "original_file_name": "DK1-010-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fabd7e235349b899f5159d1a6255ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fabd7e235349b899f5159d1a6255ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fabd7e235349b899f5159d1a6255ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21fabd7e235349b899f5159d1a6255ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21fabd7e235349b899f5159d1a6255ea.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZK6-McEqASgYMLm06gh02HzMco=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.175823+00 2025-12-09 10:14:56.175828+00 7509 HT0101-130#5号色 SPMX-20240815302660 \N \N \N 1 \N [{"file_id": "5e9c59c5-34e9-4770-b344-0df91446c297", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ec69c32ce3342be8c770103abafa208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ec69c32ce3342be8c770103abafa208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ec69c32ce3342be8c770103abafa208.jpg", "file_size": 12940, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-130#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec69c32ce3342be8c770103abafa208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec69c32ce3342be8c770103abafa208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec69c32ce3342be8c770103abafa208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ec69c32ce3342be8c770103abafa208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ec69c32ce3342be8c770103abafa208.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1j7Np2ZdcRCwtAQFiP8R-RQX6sU=", "createTime": "2024-08-15 14:45:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.177471+00 2025-12-09 10:14:56.177477+00 7510 802232#短款下摆枣红 SPMX-20240815302668 \N \N \N 1 \N [{"file_id": "38b8baeb-27ae-47b8-ae1c-9a7e06262418", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a34c344ea7441d8b32afe9ab7c7b1cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a34c344ea7441d8b32afe9ab7c7b1cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a34c344ea7441d8b32afe9ab7c7b1cc.jpg", "file_size": 22086, "is_delete": false, "file_type": 1, "original_file_name": "802232#短款下摆枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a34c344ea7441d8b32afe9ab7c7b1cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a34c344ea7441d8b32afe9ab7c7b1cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a34c344ea7441d8b32afe9ab7c7b1cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a34c344ea7441d8b32afe9ab7c7b1cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a34c344ea7441d8b32afe9ab7c7b1cc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvwONN7cjOhlSr_pcqujkcwNbYM=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.179353+00 2025-12-09 10:14:56.179358+00 7511 C320#墨绿 SPMX-20240815302670 \N \N \N 1 \N [{"file_id": "0ec370ed-60a2-4b10-8a1f-9387cc4fcba5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88d38d3055d049ef816f35b4be2955c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88d38d3055d049ef816f35b4be2955c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88d38d3055d049ef816f35b4be2955c1.jpg", "file_size": 15812, "is_delete": false, "file_type": 1, "original_file_name": "C320#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d38d3055d049ef816f35b4be2955c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d38d3055d049ef816f35b4be2955c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d38d3055d049ef816f35b4be2955c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88d38d3055d049ef816f35b4be2955c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88d38d3055d049ef816f35b4be2955c1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyiF-bH2NP8AfJVbUSjR8G3997w=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.18115+00 2025-12-09 10:14:56.181155+00 7512 JTSS023#VS-D3 SPMX-20240815302667 \N \N \N 1 \N [{"file_id": "e0201283-59fd-48b2-a8b9-32883cb269b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55902a678aa247cc8199a98d7f2848b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55902a678aa247cc8199a98d7f2848b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55902a678aa247cc8199a98d7f2848b8.jpg", "file_size": 7245, "is_delete": false, "file_type": 1, "original_file_name": "JTSS023#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55902a678aa247cc8199a98d7f2848b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55902a678aa247cc8199a98d7f2848b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55902a678aa247cc8199a98d7f2848b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55902a678aa247cc8199a98d7f2848b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55902a678aa247cc8199a98d7f2848b8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWg1x-TkkIwjyW840B87WcyChfg=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.182763+00 2025-12-09 10:14:56.182768+00 7513 FHXGPK-071-5 SPMX-20240815302675 \N \N \N 1 \N [{"file_id": "e091186f-52da-488e-9082-d8ab15cd24cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f184b2d17ed04b31959528d8dc6614ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f184b2d17ed04b31959528d8dc6614ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f184b2d17ed04b31959528d8dc6614ab.jpg", "file_size": 32042, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-071-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f184b2d17ed04b31959528d8dc6614ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f184b2d17ed04b31959528d8dc6614ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f184b2d17ed04b31959528d8dc6614ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f184b2d17ed04b31959528d8dc6614ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f184b2d17ed04b31959528d8dc6614ab.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNazFOm2rDlxy5s_8lBYOES0olQ=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.184397+00 2025-12-09 10:14:56.184401+00 7514 LZ1237#上身不下领子4号色 SPMX-20240815302676 \N \N \N 1 \N [{"file_id": "ae260d65-37f6-42fe-ae0d-3c1b16dc7b30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78994046c06147d18ce6b076124d0e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78994046c06147d18ce6b076124d0e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78994046c06147d18ce6b076124d0e06.jpg", "file_size": 21476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#上身不下领子4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78994046c06147d18ce6b076124d0e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78994046c06147d18ce6b076124d0e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78994046c06147d18ce6b076124d0e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78994046c06147d18ce6b076124d0e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78994046c06147d18ce6b076124d0e06.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8wpyNDVyRMP2d5lFbLB_kBGV4k=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.18626+00 2025-12-09 10:14:56.186265+00 7515 23-2112#-A13领子通用 SPMX-20240815302669 \N \N \N 1 \N [{"file_id": "c68694db-dba8-43e4-8510-f3c982c76008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bc9d4889a244a1db4b0e1e0c9c67309.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bc9d4889a244a1db4b0e1e0c9c67309.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bc9d4889a244a1db4b0e1e0c9c67309.jpg", "file_size": 8933, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A13领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc9d4889a244a1db4b0e1e0c9c67309.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc9d4889a244a1db4b0e1e0c9c67309.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc9d4889a244a1db4b0e1e0c9c67309.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bc9d4889a244a1db4b0e1e0c9c67309.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bc9d4889a244a1db4b0e1e0c9c67309.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5sbIDqkfbmv89iZoQ0KlJhKHck=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.187882+00 2025-12-09 10:14:56.187887+00 7516 0003-325#WJC22 SPMX-20240815302673 \N \N \N 1 \N [{"file_id": "4f473549-1f8a-4d12-b68e-35d2db53a127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4f41d3388044ec09733b31acf860c7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4f41d3388044ec09733b31acf860c7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4f41d3388044ec09733b31acf860c7a.jpg", "file_size": 17531, "is_delete": false, "file_type": 1, "original_file_name": "0003-325#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f41d3388044ec09733b31acf860c7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f41d3388044ec09733b31acf860c7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f41d3388044ec09733b31acf860c7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4f41d3388044ec09733b31acf860c7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4f41d3388044ec09733b31acf860c7a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gPWArbEgUNCu_ih8GlpOkWukfWI=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.189512+00 2025-12-09 10:14:56.189517+00 7517 FHXGPK-071-4 SPMX-20240815302665 \N \N \N 1 \N [{"file_id": "e6e7145a-dcc9-482e-a5a8-5cb98a9723fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c340ebff2c3342cca8e372c92ad8c925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c340ebff2c3342cca8e372c92ad8c925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c340ebff2c3342cca8e372c92ad8c925.jpg", "file_size": 31086, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-071-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c340ebff2c3342cca8e372c92ad8c925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c340ebff2c3342cca8e372c92ad8c925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c340ebff2c3342cca8e372c92ad8c925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c340ebff2c3342cca8e372c92ad8c925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c340ebff2c3342cca8e372c92ad8c925.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDbUyuDl3DS4UZBeh159EO6a61I=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.19138+00 2025-12-09 10:14:56.191385+00 7518 LJ010FW#墨绿VS-D3 SPMX-20240815302666 \N \N \N 1 \N [{"file_id": "ad790c92-9388-49af-99d6-4ce7766af0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92de0a952b5045659d593d37071ba256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92de0a952b5045659d593d37071ba256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92de0a952b5045659d593d37071ba256.jpg", "file_size": 15054, "is_delete": false, "file_type": 1, "original_file_name": "LJ010FW#墨绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de0a952b5045659d593d37071ba256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de0a952b5045659d593d37071ba256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de0a952b5045659d593d37071ba256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92de0a952b5045659d593d37071ba256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92de0a952b5045659d593d37071ba256.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wekq73kC6B18VIrzDutYjgjjkVM=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.19328+00 2025-12-09 10:14:56.193285+00 7519 HT0101-130#原版色 SPMX-20240815302672 \N \N \N 1 \N [{"file_id": "7ef8e9c3-bf8f-4bb3-9250-4d8f16085443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c181949458a417dbfbe14d0c18f7829.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c181949458a417dbfbe14d0c18f7829.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c181949458a417dbfbe14d0c18f7829.jpg", "file_size": 13210, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-130#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c181949458a417dbfbe14d0c18f7829.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c181949458a417dbfbe14d0c18f7829.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c181949458a417dbfbe14d0c18f7829.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c181949458a417dbfbe14d0c18f7829.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c181949458a417dbfbe14d0c18f7829.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5GEuXWLug6ISu4fFTzspEj8CkU=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.194927+00 2025-12-09 10:14:56.194932+00 7520 DK1-010-2-批布 SPMX-20240815302674 \N \N \N 1 \N [{"file_id": "958e5d91-00d7-4f09-a138-3f0e4f889b78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1672dc2a1154b2a83e5f9a956059f5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1672dc2a1154b2a83e5f9a956059f5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1672dc2a1154b2a83e5f9a956059f5f.jpg", "file_size": 29219, "is_delete": false, "file_type": 1, "original_file_name": "DK1-010-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1672dc2a1154b2a83e5f9a956059f5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1672dc2a1154b2a83e5f9a956059f5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1672dc2a1154b2a83e5f9a956059f5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1672dc2a1154b2a83e5f9a956059f5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1672dc2a1154b2a83e5f9a956059f5f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTOk8tiSpy5hECwfpdNCXNxFFxc=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.196556+00 2025-12-09 10:14:56.196561+00 7521 1063#灰色 SPMX-20240815302671 \N \N \N 1 \N [{"file_id": "0187741a-2f02-4d1d-bfb6-03e89f8663b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3ac1a9b414c490fa01fe3e68f34d027.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3ac1a9b414c490fa01fe3e68f34d027.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3ac1a9b414c490fa01fe3e68f34d027.jpg", "file_size": 19991, "is_delete": false, "file_type": 1, "original_file_name": "1063#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ac1a9b414c490fa01fe3e68f34d027.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ac1a9b414c490fa01fe3e68f34d027.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ac1a9b414c490fa01fe3e68f34d027.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3ac1a9b414c490fa01fe3e68f34d027.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3ac1a9b414c490fa01fe3e68f34d027.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3TLlW78jv987HtePlLpSLnwec-0=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.198402+00 2025-12-09 10:14:56.198407+00 7522 DK1-010-3-批布 SPMX-20240815302685 \N \N \N 1 \N [{"file_id": "b2c2d2b7-5037-4698-aff7-265b825f36a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77b0a4202eb1490b9043b5861e6828f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77b0a4202eb1490b9043b5861e6828f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77b0a4202eb1490b9043b5861e6828f8.jpg", "file_size": 24103, "is_delete": false, "file_type": 1, "original_file_name": "DK1-010-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b0a4202eb1490b9043b5861e6828f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b0a4202eb1490b9043b5861e6828f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b0a4202eb1490b9043b5861e6828f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77b0a4202eb1490b9043b5861e6828f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77b0a4202eb1490b9043b5861e6828f8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7hr9sAGSqsQyi6Df5OudYAvCVo=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.200349+00 2025-12-09 10:14:56.200354+00 7523 C320#玫红 SPMX-20240815302680 \N \N \N 1 \N [{"file_id": "f8393823-645a-405e-9d93-1aa760b566cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7f1a070ad4f466a97373cacab22a037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7f1a070ad4f466a97373cacab22a037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7f1a070ad4f466a97373cacab22a037.jpg", "file_size": 16382, "is_delete": false, "file_type": 1, "original_file_name": "C320#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f1a070ad4f466a97373cacab22a037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f1a070ad4f466a97373cacab22a037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f1a070ad4f466a97373cacab22a037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7f1a070ad4f466a97373cacab22a037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7f1a070ad4f466a97373cacab22a037.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QYW_uDyQY8obtJNR-2DidLbtytc=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.202106+00 2025-12-09 10:14:56.202112+00 7524 1063#灰色匹布 SPMX-20240815302683 \N \N \N 1 \N [{"file_id": "83eb81ab-950e-485b-a9f2-9c68187d1b9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2397f06fdac4c6c891283d4c0fd4559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2397f06fdac4c6c891283d4c0fd4559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2397f06fdac4c6c891283d4c0fd4559.jpg", "file_size": 19346, "is_delete": false, "file_type": 1, "original_file_name": "1063#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2397f06fdac4c6c891283d4c0fd4559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2397f06fdac4c6c891283d4c0fd4559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2397f06fdac4c6c891283d4c0fd4559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2397f06fdac4c6c891283d4c0fd4559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2397f06fdac4c6c891283d4c0fd4559.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWE43BV3-1--MQ-vHSHVdIu1KFE=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.203753+00 2025-12-09 10:14:56.203758+00 7525 HT0101-131#粉色 SPMX-20240815302681 \N \N \N 1 \N [{"file_id": "b17e1605-5336-485d-9ae3-4cbe119fe443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c4c6cc949b14948b2ee471dabcbc033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c4c6cc949b14948b2ee471dabcbc033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c4c6cc949b14948b2ee471dabcbc033.jpg", "file_size": 19239, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-131#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c4c6cc949b14948b2ee471dabcbc033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c4c6cc949b14948b2ee471dabcbc033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c4c6cc949b14948b2ee471dabcbc033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c4c6cc949b14948b2ee471dabcbc033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c4c6cc949b14948b2ee471dabcbc033.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_swFIoFtxohjVpZzG3cVa4bnqZY=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.20537+00 2025-12-09 10:14:56.205375+00 7526 FHXGPK-072-1 SPMX-20240815302687 \N \N \N 1 \N [{"file_id": "93d9c7cc-b480-438b-88fa-30884ae70d04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f6bd1ca033b4ab58af49c458606802f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f6bd1ca033b4ab58af49c458606802f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f6bd1ca033b4ab58af49c458606802f.jpg", "file_size": 33373, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-072-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6bd1ca033b4ab58af49c458606802f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6bd1ca033b4ab58af49c458606802f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6bd1ca033b4ab58af49c458606802f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f6bd1ca033b4ab58af49c458606802f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f6bd1ca033b4ab58af49c458606802f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xlcb3WEEt-7PyvWxrybQga4FKbs=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.206969+00 2025-12-09 10:14:56.206974+00 7527 23-2112#-A14前后片3XL SPMX-20240815302682 \N \N \N 1 \N [{"file_id": "8d60682d-49d1-42dc-8655-c2efd730a1c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82bf104c69c24055a00adde0b9fea97c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82bf104c69c24055a00adde0b9fea97c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82bf104c69c24055a00adde0b9fea97c.jpg", "file_size": 10316, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bf104c69c24055a00adde0b9fea97c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bf104c69c24055a00adde0b9fea97c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bf104c69c24055a00adde0b9fea97c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82bf104c69c24055a00adde0b9fea97c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82bf104c69c24055a00adde0b9fea97c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BTKSU1N5mUKIWLWp-RzK0elV34=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.208589+00 2025-12-09 10:14:56.208594+00 7528 JTSS023FW# SPMX-20240815302677 \N \N \N 1 \N [{"file_id": "7a99568f-bb99-465c-8d47-47b7fd48c9ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "900df075db7a4187a71cf19bd252ce16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "900df075db7a4187a71cf19bd252ce16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "900df075db7a4187a71cf19bd252ce16.jpg", "file_size": 9419, "is_delete": false, "file_type": 1, "original_file_name": "JTSS023FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900df075db7a4187a71cf19bd252ce16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900df075db7a4187a71cf19bd252ce16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900df075db7a4187a71cf19bd252ce16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/900df075db7a4187a71cf19bd252ce16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/900df075db7a4187a71cf19bd252ce16.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5Ec0Qtflb7XoOh-qbJwHmy_C7A=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.210426+00 2025-12-09 10:14:56.210431+00 7529 802232#短款下摆黄绿 SPMX-20240815302679 \N \N \N 1 \N [{"file_id": "13641ac5-29a2-44a3-af36-099341d238ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb94e3d7326b4780b84051cdd63be7b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb94e3d7326b4780b84051cdd63be7b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb94e3d7326b4780b84051cdd63be7b4.jpg", "file_size": 21102, "is_delete": false, "file_type": 1, "original_file_name": "802232#短款下摆黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb94e3d7326b4780b84051cdd63be7b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb94e3d7326b4780b84051cdd63be7b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb94e3d7326b4780b84051cdd63be7b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb94e3d7326b4780b84051cdd63be7b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb94e3d7326b4780b84051cdd63be7b4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M42IK_17ThX_MXvO-O3ESZW5Erk=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.212047+00 2025-12-09 10:14:56.212052+00 7530 0003-326#WJC22 SPMX-20240815302684 \N \N \N 1 \N [{"file_id": "6e039f92-5cc1-4c54-8c6c-8549fac34162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d604c451e30a4645a25487e6cf462101.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d604c451e30a4645a25487e6cf462101.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d604c451e30a4645a25487e6cf462101.jpg", "file_size": 16573, "is_delete": false, "file_type": 1, "original_file_name": "0003-326#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d604c451e30a4645a25487e6cf462101.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d604c451e30a4645a25487e6cf462101.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d604c451e30a4645a25487e6cf462101.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d604c451e30a4645a25487e6cf462101.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d604c451e30a4645a25487e6cf462101.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w82oC2fr1XzFG3JUe-OxefUG54E=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.21365+00 2025-12-09 10:14:56.213655+00 7531 LZ1237#下身1号色 SPMX-20240815302686 \N \N \N 1 \N [{"file_id": "0feee53f-3482-41eb-a0e4-887ccf261b4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69e3e20ae9bb40c7b43d792106687d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69e3e20ae9bb40c7b43d792106687d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69e3e20ae9bb40c7b43d792106687d28.jpg", "file_size": 19989, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e3e20ae9bb40c7b43d792106687d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e3e20ae9bb40c7b43d792106687d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e3e20ae9bb40c7b43d792106687d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69e3e20ae9bb40c7b43d792106687d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69e3e20ae9bb40c7b43d792106687d28.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCMQk_dWEzGstapOgMf1i0CLn6A=", "createTime": "2024-08-15 14:45:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.215492+00 2025-12-09 10:14:56.215497+00 7532 LJ010FW#泥红VS-D3 SPMX-20240815302678 \N \N \N 1 \N [{"file_id": "9e91ed27-a9eb-4c63-8c22-cf5585665322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d22abb4c87154d14a01e1dca28b08bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d22abb4c87154d14a01e1dca28b08bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d22abb4c87154d14a01e1dca28b08bd3.jpg", "file_size": 14527, "is_delete": false, "file_type": 1, "original_file_name": "LJ010FW#泥红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22abb4c87154d14a01e1dca28b08bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22abb4c87154d14a01e1dca28b08bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22abb4c87154d14a01e1dca28b08bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d22abb4c87154d14a01e1dca28b08bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d22abb4c87154d14a01e1dca28b08bd3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgF81fFFwQ_fjciTRSovT5DkWK4=", "createTime": "2024-08-15 14:45:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.217618+00 2025-12-09 10:14:56.217623+00 7533 C320#白色 SPMX-20240815302690 \N \N \N 1 \N [{"file_id": "39c71aed-3852-4523-b7a5-ced616fd3b40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "208e2d7a1bea4039a507eb0a907585be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "208e2d7a1bea4039a507eb0a907585be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "208e2d7a1bea4039a507eb0a907585be.jpg", "file_size": 15919, "is_delete": false, "file_type": 1, "original_file_name": "C320#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/208e2d7a1bea4039a507eb0a907585be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/208e2d7a1bea4039a507eb0a907585be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/208e2d7a1bea4039a507eb0a907585be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/208e2d7a1bea4039a507eb0a907585be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/208e2d7a1bea4039a507eb0a907585be.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_5zoufPwV62lcCfJAdqbVhpBjw=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.219401+00 2025-12-09 10:14:56.219405+00 7534 802233#长款下身墨绿 SPMX-20240815302691 \N \N \N 1 \N [{"file_id": "6c3cae47-cd79-47e0-a040-cb67afbd83f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "541e4eb6262343029bc1a808370aedac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "541e4eb6262343029bc1a808370aedac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "541e4eb6262343029bc1a808370aedac.jpg", "file_size": 19911, "is_delete": false, "file_type": 1, "original_file_name": "802233#长款下身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e4eb6262343029bc1a808370aedac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e4eb6262343029bc1a808370aedac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e4eb6262343029bc1a808370aedac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/541e4eb6262343029bc1a808370aedac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/541e4eb6262343029bc1a808370aedac.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IsRTtZFrAWAN9Rf_YtfKCJot7A=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.220873+00 2025-12-09 10:14:56.220877+00 7535 0003-327#WJC22 SPMX-20240815302695 \N \N \N 1 \N [{"file_id": "831dfd43-0912-4004-8912-b1e97285ab28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17df653e90774a9485d3c886984e0c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17df653e90774a9485d3c886984e0c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17df653e90774a9485d3c886984e0c32.jpg", "file_size": 27583, "is_delete": false, "file_type": 1, "original_file_name": "0003-327#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df653e90774a9485d3c886984e0c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df653e90774a9485d3c886984e0c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df653e90774a9485d3c886984e0c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17df653e90774a9485d3c886984e0c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17df653e90774a9485d3c886984e0c32.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8v60KJK1ijWyfD-dhj48NCY9Wo=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.222439+00 2025-12-09 10:14:56.222443+00 7536 JTSS023FW#粉 SPMX-20240815302688 \N \N \N 1 \N [{"file_id": "23ffcf8d-3866-4eb7-a800-245440dc7153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "883f5dbac74b42428aa161632c4b1346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "883f5dbac74b42428aa161632c4b1346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "883f5dbac74b42428aa161632c4b1346.jpg", "file_size": 9206, "is_delete": false, "file_type": 1, "original_file_name": "JTSS023FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883f5dbac74b42428aa161632c4b1346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883f5dbac74b42428aa161632c4b1346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883f5dbac74b42428aa161632c4b1346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/883f5dbac74b42428aa161632c4b1346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/883f5dbac74b42428aa161632c4b1346.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXGkdZZlDehAGwQH1lBKt6eNsCo=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.223925+00 2025-12-09 10:14:56.22393+00 7537 LJ010FWE#VS-D3 SPMX-20240815302689 \N \N \N 1 \N [{"file_id": "8cdc4c32-f862-4cd3-bb35-05d510322c7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07ad5d254b16438dad2b6943cbc790b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07ad5d254b16438dad2b6943cbc790b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07ad5d254b16438dad2b6943cbc790b8.jpg", "file_size": 18818, "is_delete": false, "file_type": 1, "original_file_name": "LJ010FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ad5d254b16438dad2b6943cbc790b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ad5d254b16438dad2b6943cbc790b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ad5d254b16438dad2b6943cbc790b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07ad5d254b16438dad2b6943cbc790b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07ad5d254b16438dad2b6943cbc790b8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_MS5pdQxQEqiFGop9k8cy2OO2s=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.2254+00 2025-12-09 10:14:56.225405+00 7538 1063#灰色袖子 SPMX-20240815302694 \N \N \N 1 \N [{"file_id": "2365b1a4-f125-448f-9b37-9e9a6dfbb5e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a299cc1da69e40a3854e7bf5cc6f1f2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a299cc1da69e40a3854e7bf5cc6f1f2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a299cc1da69e40a3854e7bf5cc6f1f2d.jpg", "file_size": 12087, "is_delete": false, "file_type": 1, "original_file_name": "1063#灰色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299cc1da69e40a3854e7bf5cc6f1f2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299cc1da69e40a3854e7bf5cc6f1f2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299cc1da69e40a3854e7bf5cc6f1f2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a299cc1da69e40a3854e7bf5cc6f1f2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a299cc1da69e40a3854e7bf5cc6f1f2d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwmftqNI2BIVWj6eiNgCUthhZn8=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.226869+00 2025-12-09 10:14:56.226873+00 7539 DK1-011--批布 SPMX-20240815302696 \N \N \N 1 \N [{"file_id": "bebe34f0-d4a8-4e58-a1a6-305275dd3de7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "029c76ed17da4ee397d0099b55061cc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "029c76ed17da4ee397d0099b55061cc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "029c76ed17da4ee397d0099b55061cc1.jpg", "file_size": 43787, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011--批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/029c76ed17da4ee397d0099b55061cc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/029c76ed17da4ee397d0099b55061cc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/029c76ed17da4ee397d0099b55061cc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/029c76ed17da4ee397d0099b55061cc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/029c76ed17da4ee397d0099b55061cc1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6YLSQx2JbonqHbUHVp9G3AlQGk=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.228312+00 2025-12-09 10:14:56.228316+00 7540 FHXGPK-072-2 SPMX-20240815302698 \N \N \N 1 \N [{"file_id": "7ff49549-afd9-44a7-b549-f5f0c6efc8eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c86fece444a34e79b1e908a246dcaa37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c86fece444a34e79b1e908a246dcaa37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c86fece444a34e79b1e908a246dcaa37.jpg", "file_size": 32809, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-072-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86fece444a34e79b1e908a246dcaa37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86fece444a34e79b1e908a246dcaa37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86fece444a34e79b1e908a246dcaa37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c86fece444a34e79b1e908a246dcaa37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c86fece444a34e79b1e908a246dcaa37.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_AjLluiPYKh5yHqKqmW49EEPaM=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.229772+00 2025-12-09 10:14:56.229777+00 7541 LZ1237#下身2号色 SPMX-20240815302697 \N \N \N 1 \N [{"file_id": "f5e6e1bf-e654-45e5-85c5-eb6b5813f56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b750ea7137f348878853f8e88e883470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b750ea7137f348878853f8e88e883470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b750ea7137f348878853f8e88e883470.jpg", "file_size": 18922, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b750ea7137f348878853f8e88e883470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b750ea7137f348878853f8e88e883470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b750ea7137f348878853f8e88e883470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b750ea7137f348878853f8e88e883470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b750ea7137f348878853f8e88e883470.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DjvFH2ziae3u3vB2RWG8xA2mNk=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.231246+00 2025-12-09 10:14:56.23125+00 7542 HT0101-131#蓝色 SPMX-20240815302692 \N \N \N 1 \N [{"file_id": "48ad6b5e-ff7d-4816-9a3e-eb670ac51a4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fb011c493e346b2958cb563d7dd4865.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fb011c493e346b2958cb563d7dd4865.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fb011c493e346b2958cb563d7dd4865.jpg", "file_size": 25807, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-131#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb011c493e346b2958cb563d7dd4865.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb011c493e346b2958cb563d7dd4865.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb011c493e346b2958cb563d7dd4865.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fb011c493e346b2958cb563d7dd4865.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fb011c493e346b2958cb563d7dd4865.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84rUixa3ba4DKpYKLJcsCAlkXmc=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.232699+00 2025-12-09 10:14:56.232707+00 7543 23-2112#-A14前后片4XL SPMX-20240815302693 \N \N \N 1 \N [{"file_id": "aa7ee6d7-3f1b-49c0-8b47-ea0c1f0e5851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "447c006fcd654b6e8e4bc4d1b62c0dca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "447c006fcd654b6e8e4bc4d1b62c0dca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "447c006fcd654b6e8e4bc4d1b62c0dca.jpg", "file_size": 10629, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447c006fcd654b6e8e4bc4d1b62c0dca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447c006fcd654b6e8e4bc4d1b62c0dca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447c006fcd654b6e8e4bc4d1b62c0dca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/447c006fcd654b6e8e4bc4d1b62c0dca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/447c006fcd654b6e8e4bc4d1b62c0dca.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpnjxxX0pe8Nbl9n8lo2fU_p4aY=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.234142+00 2025-12-09 10:14:56.234146+00 7544 C320#黑色 SPMX-20240815302701 \N \N \N 1 \N [{"file_id": "1e6c3cb7-a417-43f7-896e-8382a4dcf24b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a901056e14fa4efcbae29fcaa3879403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a901056e14fa4efcbae29fcaa3879403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a901056e14fa4efcbae29fcaa3879403.jpg", "file_size": 18099, "is_delete": false, "file_type": 1, "original_file_name": "C320#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a901056e14fa4efcbae29fcaa3879403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a901056e14fa4efcbae29fcaa3879403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a901056e14fa4efcbae29fcaa3879403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a901056e14fa4efcbae29fcaa3879403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a901056e14fa4efcbae29fcaa3879403.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edB-krRzUYusmZnJU0nuRHoaebk=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.235615+00 2025-12-09 10:14:56.235618+00 7545 802233#长款下身彩兰 SPMX-20240815302702 \N \N \N 1 \N [{"file_id": "e2eeba63-281b-4472-9813-e609acc0d8de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dd21bf9353f43dabb27d887894b69e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dd21bf9353f43dabb27d887894b69e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dd21bf9353f43dabb27d887894b69e3.jpg", "file_size": 19555, "is_delete": false, "file_type": 1, "original_file_name": "802233#长款下身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd21bf9353f43dabb27d887894b69e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd21bf9353f43dabb27d887894b69e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd21bf9353f43dabb27d887894b69e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dd21bf9353f43dabb27d887894b69e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dd21bf9353f43dabb27d887894b69e3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5LUqnMEWo16UJ2V6QBNHR7X7V8=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.237093+00 2025-12-09 10:14:56.237097+00 7546 1063#白2XL SPMX-20240815302704 \N \N \N 1 \N [{"file_id": "a9e8d256-4efa-4e64-bc7f-9a916cf8d0c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "956fe1e5f20148fcb7ef43af98fe4596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "956fe1e5f20148fcb7ef43af98fe4596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "956fe1e5f20148fcb7ef43af98fe4596.jpg", "file_size": 9585, "is_delete": false, "file_type": 1, "original_file_name": "1063#白2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956fe1e5f20148fcb7ef43af98fe4596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956fe1e5f20148fcb7ef43af98fe4596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956fe1e5f20148fcb7ef43af98fe4596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/956fe1e5f20148fcb7ef43af98fe4596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/956fe1e5f20148fcb7ef43af98fe4596.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EXlwhaZiyzCNRN6ONYjhlOnI9U=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.238552+00 2025-12-09 10:14:56.238556+00 7547 0003-328#WJC22 SPMX-20240815302705 \N \N \N 1 \N [{"file_id": "d9421dba-67e3-4778-8b09-ad70483aeb6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f393b4463f84c05a712fae14c52792f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f393b4463f84c05a712fae14c52792f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f393b4463f84c05a712fae14c52792f.jpg", "file_size": 17805, "is_delete": false, "file_type": 1, "original_file_name": "0003-328#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f393b4463f84c05a712fae14c52792f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f393b4463f84c05a712fae14c52792f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f393b4463f84c05a712fae14c52792f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f393b4463f84c05a712fae14c52792f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f393b4463f84c05a712fae14c52792f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHFmxqrxFJi_IwBJrK4eMsAQKDI=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.240005+00 2025-12-09 10:14:56.240009+00 7548 LZ1237#下身3号色 SPMX-20240815302707 \N \N \N 1 \N [{"file_id": "21925b7e-1f47-4bab-bac0-3f29de3bf590", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ec1e733f1b04c5ca0a29fc7c9884497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ec1e733f1b04c5ca0a29fc7c9884497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ec1e733f1b04c5ca0a29fc7c9884497.jpg", "file_size": 18379, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1e733f1b04c5ca0a29fc7c9884497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1e733f1b04c5ca0a29fc7c9884497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec1e733f1b04c5ca0a29fc7c9884497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ec1e733f1b04c5ca0a29fc7c9884497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ec1e733f1b04c5ca0a29fc7c9884497.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9CU2WWNp9dokXeVfBRYYo3kfPks=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.241491+00 2025-12-09 10:14:56.241496+00 7549 LJ011FW#VS-D3 SPMX-20240815302700 \N \N \N 1 \N [{"file_id": "c395f4d8-a1b8-4052-bf22-28c52384f9df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30ab6f0e4d3e4aaf951111c52e886bfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30ab6f0e4d3e4aaf951111c52e886bfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30ab6f0e4d3e4aaf951111c52e886bfd.jpg", "file_size": 12498, "is_delete": false, "file_type": 1, "original_file_name": "LJ011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ab6f0e4d3e4aaf951111c52e886bfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ab6f0e4d3e4aaf951111c52e886bfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ab6f0e4d3e4aaf951111c52e886bfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30ab6f0e4d3e4aaf951111c52e886bfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30ab6f0e4d3e4aaf951111c52e886bfd.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTydsFyluE0qGW5y15iqjOYXwds=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.242962+00 2025-12-09 10:14:56.242967+00 7550 23-2112#-A14袖子3XL SPMX-20240815302706 \N \N \N 1 \N [{"file_id": "347454fa-51f9-41b1-a28b-bff15be5f216", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "802b0d763d604a8ca337e809dda8e118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "802b0d763d604a8ca337e809dda8e118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "802b0d763d604a8ca337e809dda8e118.jpg", "file_size": 8831, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802b0d763d604a8ca337e809dda8e118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802b0d763d604a8ca337e809dda8e118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802b0d763d604a8ca337e809dda8e118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/802b0d763d604a8ca337e809dda8e118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/802b0d763d604a8ca337e809dda8e118.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sB_vsV1nBxYmnoVoLQkyeuPJQh4=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.244431+00 2025-12-09 10:14:56.244435+00 7551 C321#原版绿 SPMX-20240815302712 \N \N \N 1 \N [{"file_id": "bc900a79-eee2-428b-82d3-86e95b9005f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df0f2e7d793c481b8955ca0e60a5096e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df0f2e7d793c481b8955ca0e60a5096e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df0f2e7d793c481b8955ca0e60a5096e.jpg", "file_size": 26603, "is_delete": false, "file_type": 1, "original_file_name": "C321#原版绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df0f2e7d793c481b8955ca0e60a5096e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df0f2e7d793c481b8955ca0e60a5096e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df0f2e7d793c481b8955ca0e60a5096e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df0f2e7d793c481b8955ca0e60a5096e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df0f2e7d793c481b8955ca0e60a5096e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlMqRs3KpM8ygHtcNaApRUjSutE=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.245915+00 2025-12-09 10:14:56.24592+00 7552 LJ011FWE#VS-D3 SPMX-20240815302711 \N \N \N 1 \N [{"file_id": "b5e6fd0b-1f52-4488-a435-a2b99d1bf6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c694e422617b48ffb3d19447910083bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c694e422617b48ffb3d19447910083bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c694e422617b48ffb3d19447910083bc.jpg", "file_size": 17728, "is_delete": false, "file_type": 1, "original_file_name": "LJ011FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c694e422617b48ffb3d19447910083bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c694e422617b48ffb3d19447910083bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c694e422617b48ffb3d19447910083bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c694e422617b48ffb3d19447910083bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c694e422617b48ffb3d19447910083bc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBcmEeH8jx9mrqh2Jwp7K92m8-U=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.247573+00 2025-12-09 10:14:56.247577+00 7553 DK1-011-1-批布 SPMX-20240815302709 \N \N \N 1 \N [{"file_id": "98316265-9bc3-48d8-be8d-f37f7ce94828", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e58fbdc5a4394fdaa2e207f5e2230f61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e58fbdc5a4394fdaa2e207f5e2230f61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e58fbdc5a4394fdaa2e207f5e2230f61.jpg", "file_size": 36689, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58fbdc5a4394fdaa2e207f5e2230f61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58fbdc5a4394fdaa2e207f5e2230f61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58fbdc5a4394fdaa2e207f5e2230f61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e58fbdc5a4394fdaa2e207f5e2230f61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e58fbdc5a4394fdaa2e207f5e2230f61.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mb_GZ67YNPuQNCcnexiOhv-vLEQ=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.249049+00 2025-12-09 10:14:56.249053+00 7554 JTSS023FW#蓝 SPMX-20240815302699 \N \N \N 1 \N [{"file_id": "b37a3ae4-7026-4ae0-b17a-107711823913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4c545cf85ac4f6a825f54421ff9b4ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4c545cf85ac4f6a825f54421ff9b4ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4c545cf85ac4f6a825f54421ff9b4ac.jpg", "file_size": 8800, "is_delete": false, "file_type": 1, "original_file_name": "JTSS023FW#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c545cf85ac4f6a825f54421ff9b4ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c545cf85ac4f6a825f54421ff9b4ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c545cf85ac4f6a825f54421ff9b4ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4c545cf85ac4f6a825f54421ff9b4ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4c545cf85ac4f6a825f54421ff9b4ac.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjboQAyraCxSjjCo0xqzl-1WdE8=", "createTime": "2024-08-15 14:45:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.250489+00 2025-12-09 10:14:56.250493+00 7555 JTSS024# SPMX-20240815302710 \N \N \N 1 \N [{"file_id": "a4550fd0-78ae-496b-9fc8-6218605d4099", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04fe27d200c140b29a0ffc5285769a75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04fe27d200c140b29a0ffc5285769a75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04fe27d200c140b29a0ffc5285769a75.jpg", "file_size": 11900, "is_delete": false, "file_type": 1, "original_file_name": "JTSS024#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe27d200c140b29a0ffc5285769a75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe27d200c140b29a0ffc5285769a75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe27d200c140b29a0ffc5285769a75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04fe27d200c140b29a0ffc5285769a75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04fe27d200c140b29a0ffc5285769a75.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2GnuCb5KB_khlPd1lP5wn7ViGvU=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.251938+00 2025-12-09 10:14:56.251942+00 7556 HT0101-131#黄色 SPMX-20240815302703 \N \N \N 1 \N [{"file_id": "5c96aae5-d705-473f-8df1-2faae9104a8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6d3fe6852cc415daf3c93ce1141c186.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6d3fe6852cc415daf3c93ce1141c186.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6d3fe6852cc415daf3c93ce1141c186.jpg", "file_size": 22934, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-131#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d3fe6852cc415daf3c93ce1141c186.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d3fe6852cc415daf3c93ce1141c186.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d3fe6852cc415daf3c93ce1141c186.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6d3fe6852cc415daf3c93ce1141c186.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6d3fe6852cc415daf3c93ce1141c186.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BO78SFKQ9hbpJn1-JAh7RVi8yLI=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.253922+00 2025-12-09 10:14:56.253926+00 7557 FHXGPK-072-3 SPMX-20240815302708 \N \N \N 1 \N [{"file_id": "0198d5d2-c96f-4680-9536-e92dac903427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ec0d346e91c45248f2ab02a6ec1af26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ec0d346e91c45248f2ab02a6ec1af26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ec0d346e91c45248f2ab02a6ec1af26.jpg", "file_size": 37086, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-072-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0d346e91c45248f2ab02a6ec1af26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0d346e91c45248f2ab02a6ec1af26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0d346e91c45248f2ab02a6ec1af26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ec0d346e91c45248f2ab02a6ec1af26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ec0d346e91c45248f2ab02a6ec1af26.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrDfnOT_lOj5UI3OyCh91ryNkLg=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.25569+00 2025-12-09 10:14:56.255694+00 7558 802233#长款下身枣红 SPMX-20240815302713 \N \N \N 1 \N [{"file_id": "bb122a18-2099-4e2b-96ca-7c512a3ff5c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b71b142844e4cea9b3255ac818ba122.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b71b142844e4cea9b3255ac818ba122.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b71b142844e4cea9b3255ac818ba122.jpg", "file_size": 18931, "is_delete": false, "file_type": 1, "original_file_name": "802233#长款下身枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b71b142844e4cea9b3255ac818ba122.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b71b142844e4cea9b3255ac818ba122.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b71b142844e4cea9b3255ac818ba122.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b71b142844e4cea9b3255ac818ba122.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b71b142844e4cea9b3255ac818ba122.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-CvOTTfPzKALUnqY1h18bjgZATk=", "createTime": "2024-08-15 14:45:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.257448+00 2025-12-09 10:14:56.257452+00 7559 23-2112#-A14袖子4XL SPMX-20240815302716 \N \N \N 1 \N [{"file_id": "312f87ec-62e2-4cdc-bc1e-959148010acb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3701e5a7b9a64b59844a7f31317ef21a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3701e5a7b9a64b59844a7f31317ef21a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3701e5a7b9a64b59844a7f31317ef21a.jpg", "file_size": 8966, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3701e5a7b9a64b59844a7f31317ef21a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3701e5a7b9a64b59844a7f31317ef21a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3701e5a7b9a64b59844a7f31317ef21a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3701e5a7b9a64b59844a7f31317ef21a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3701e5a7b9a64b59844a7f31317ef21a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxAWoT1BKxBSh8wk_HpYeT99Azw=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.259181+00 2025-12-09 10:14:56.259185+00 7560 FHXGPK-072-4 SPMX-20240815302721 \N \N \N 1 \N [{"file_id": "3fa49d05-08fd-474a-9fba-d1e55e59dbe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a876c673ecbf40eb9b43723f5033cfff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a876c673ecbf40eb9b43723f5033cfff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a876c673ecbf40eb9b43723f5033cfff.jpg", "file_size": 36964, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-072-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a876c673ecbf40eb9b43723f5033cfff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a876c673ecbf40eb9b43723f5033cfff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a876c673ecbf40eb9b43723f5033cfff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a876c673ecbf40eb9b43723f5033cfff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a876c673ecbf40eb9b43723f5033cfff.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1a4FUB-YgQWsuSS_DGwH0xdz4bw=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.260924+00 2025-12-09 10:14:56.260929+00 7561 LZ1237#下身4号色 SPMX-20240815302717 \N \N \N 1 \N [{"file_id": "555e0c69-116a-49e7-a516-2527d1c0db11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "297263a4e9e44edea3ca1397ebca0701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "297263a4e9e44edea3ca1397ebca0701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "297263a4e9e44edea3ca1397ebca0701.jpg", "file_size": 20446, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297263a4e9e44edea3ca1397ebca0701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297263a4e9e44edea3ca1397ebca0701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297263a4e9e44edea3ca1397ebca0701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/297263a4e9e44edea3ca1397ebca0701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/297263a4e9e44edea3ca1397ebca0701.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShvEHciLOoFsiUUJq1_nEpBOGDg=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.2627+00 2025-12-09 10:14:56.262708+00 7562 LJ012FW#VS-D3 SPMX-20240815302722 \N \N \N 1 \N [{"file_id": "f14ebbd2-44a6-41d3-8499-c61175a14275", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a8538781b7c4481a01ed99fc4188adf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a8538781b7c4481a01ed99fc4188adf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a8538781b7c4481a01ed99fc4188adf.jpg", "file_size": 15601, "is_delete": false, "file_type": 1, "original_file_name": "LJ012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8538781b7c4481a01ed99fc4188adf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8538781b7c4481a01ed99fc4188adf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8538781b7c4481a01ed99fc4188adf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a8538781b7c4481a01ed99fc4188adf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a8538781b7c4481a01ed99fc4188adf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3Xb2eSA8uOQ6mhA_QAgMJ0tN0U=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.264464+00 2025-12-09 10:14:56.264468+00 7563 23-2112#-A14领口通用 SPMX-20240815302726 \N \N \N 1 \N [{"file_id": "d1ffbeb1-b5d2-445b-8226-26b8be27ae52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9649dd0b10664553856e2aef4d2ada41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9649dd0b10664553856e2aef4d2ada41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9649dd0b10664553856e2aef4d2ada41.jpg", "file_size": 8042, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649dd0b10664553856e2aef4d2ada41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649dd0b10664553856e2aef4d2ada41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649dd0b10664553856e2aef4d2ada41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9649dd0b10664553856e2aef4d2ada41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9649dd0b10664553856e2aef4d2ada41.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4v1O4CMZcqPr5LNSubNfNQJHl6c=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.266198+00 2025-12-09 10:14:56.266202+00 7564 802233#长款下身黄绿 SPMX-20240815302723 \N \N \N 1 \N [{"file_id": "c5cbab7c-68eb-4340-bf52-e379bc778275", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdacb0d4ace946fb9e9a86d7d6cd357c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdacb0d4ace946fb9e9a86d7d6cd357c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdacb0d4ace946fb9e9a86d7d6cd357c.jpg", "file_size": 18254, "is_delete": false, "file_type": 1, "original_file_name": "802233#长款下身黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdacb0d4ace946fb9e9a86d7d6cd357c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdacb0d4ace946fb9e9a86d7d6cd357c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdacb0d4ace946fb9e9a86d7d6cd357c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdacb0d4ace946fb9e9a86d7d6cd357c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdacb0d4ace946fb9e9a86d7d6cd357c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkfTgkLwKEfr5UPb5OReen4rNvU=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.267655+00 2025-12-09 10:14:56.26766+00 7565 1063#白S SPMX-20240815302715 \N \N \N 1 \N [{"file_id": "f0735367-58fc-4e69-9265-2b8633b67598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab316c409fda43e6816d3b3625a3d068.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab316c409fda43e6816d3b3625a3d068.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab316c409fda43e6816d3b3625a3d068.jpg", "file_size": 10619, "is_delete": false, "file_type": 1, "original_file_name": "1063#白S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab316c409fda43e6816d3b3625a3d068.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab316c409fda43e6816d3b3625a3d068.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab316c409fda43e6816d3b3625a3d068.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab316c409fda43e6816d3b3625a3d068.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab316c409fda43e6816d3b3625a3d068.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1WeiG2Q4WVv1orLeK7DxsS4vNQ=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.269164+00 2025-12-09 10:14:56.269168+00 7566 DK1-011-2-批布 SPMX-20240815302719 \N \N \N 1 \N [{"file_id": "86dfc263-e505-4b96-ab2b-561d4412e254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1bfe66241c540f9ab2653995640357a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1bfe66241c540f9ab2653995640357a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1bfe66241c540f9ab2653995640357a.jpg", "file_size": 36865, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1bfe66241c540f9ab2653995640357a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1bfe66241c540f9ab2653995640357a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1bfe66241c540f9ab2653995640357a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1bfe66241c540f9ab2653995640357a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1bfe66241c540f9ab2653995640357a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnCvJeyWtJzaR578EoMmZrpBAic=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.270611+00 2025-12-09 10:14:56.270615+00 7567 C321#墨绿 SPMX-20240815302724 \N \N \N 1 \N [{"file_id": "1d70a85c-a86b-4886-b05e-24c0270909e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fc8a01a5d9647bea17653eef610a6c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fc8a01a5d9647bea17653eef610a6c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fc8a01a5d9647bea17653eef610a6c8.jpg", "file_size": 27852, "is_delete": false, "file_type": 1, "original_file_name": "C321#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc8a01a5d9647bea17653eef610a6c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc8a01a5d9647bea17653eef610a6c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc8a01a5d9647bea17653eef610a6c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fc8a01a5d9647bea17653eef610a6c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fc8a01a5d9647bea17653eef610a6c8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qd_Ss3iPGJiCTSUCNg-mv26Il20=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.272067+00 2025-12-09 10:14:56.272071+00 7568 0003-32FWE#VS-D3 SPMX-20240815302725 \N \N \N 1 \N [{"file_id": "fbed5f5c-d025-4350-b8d7-1583114d4bca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db806c98ff240718ee46dcbb63b53cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db806c98ff240718ee46dcbb63b53cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db806c98ff240718ee46dcbb63b53cf.jpg", "file_size": 17285, "is_delete": false, "file_type": 1, "original_file_name": "0003-32FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db806c98ff240718ee46dcbb63b53cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db806c98ff240718ee46dcbb63b53cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db806c98ff240718ee46dcbb63b53cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db806c98ff240718ee46dcbb63b53cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db806c98ff240718ee46dcbb63b53cf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4h2kn5pG-_sZmvE7Oe1wA7LmVxM=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.273794+00 2025-12-09 10:14:56.273799+00 7569 0003-329#WJC22 SPMX-20240815302714 \N \N \N 1 \N [{"file_id": "0210f3f4-9f28-4d33-be05-94e2a1396edf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46d516e71aff465ba9c1c7adf8b0c7b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46d516e71aff465ba9c1c7adf8b0c7b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46d516e71aff465ba9c1c7adf8b0c7b4.jpg", "file_size": 21192, "is_delete": false, "file_type": 1, "original_file_name": "0003-329#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d516e71aff465ba9c1c7adf8b0c7b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d516e71aff465ba9c1c7adf8b0c7b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d516e71aff465ba9c1c7adf8b0c7b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46d516e71aff465ba9c1c7adf8b0c7b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46d516e71aff465ba9c1c7adf8b0c7b4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgmz5JKn6b5hq4-ZwnBCbiGuebc=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.275254+00 2025-12-09 10:14:56.275258+00 7570 HT0101-132#原版色 SPMX-20240815302718 \N \N \N 1 \N [{"file_id": "ff19eafa-dd80-4ba1-bfb1-d1836e2d2bb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d756ca1bfc844840af3001c6f2339ae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d756ca1bfc844840af3001c6f2339ae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d756ca1bfc844840af3001c6f2339ae3.jpg", "file_size": 18849, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-132#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d756ca1bfc844840af3001c6f2339ae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d756ca1bfc844840af3001c6f2339ae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d756ca1bfc844840af3001c6f2339ae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d756ca1bfc844840af3001c6f2339ae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d756ca1bfc844840af3001c6f2339ae3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVNaXd8wVsE3US87lBzRseDVEqk=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.276732+00 2025-12-09 10:14:56.276738+00 7571 JTSS024FW# SPMX-20240815302720 \N \N \N 1 \N [{"file_id": "3e4ec711-a030-4b96-b4d5-a729724f2265", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d962589de33848d390903d9ad0e9cf28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d962589de33848d390903d9ad0e9cf28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d962589de33848d390903d9ad0e9cf28.jpg", "file_size": 11326, "is_delete": false, "file_type": 1, "original_file_name": "JTSS024FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962589de33848d390903d9ad0e9cf28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962589de33848d390903d9ad0e9cf28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d962589de33848d390903d9ad0e9cf28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d962589de33848d390903d9ad0e9cf28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d962589de33848d390903d9ad0e9cf28.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FCdMmlaxQrUtCpeFyP_gn543ar0=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.278179+00 2025-12-09 10:14:56.278184+00 7572 HT0101-132#绿色 SPMX-20240815302729 \N \N \N 1 \N [{"file_id": "2457b89f-ed41-42b4-94b7-edce4f7f5f36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e5d118686c44f6dbc890e223db2ca44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e5d118686c44f6dbc890e223db2ca44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e5d118686c44f6dbc890e223db2ca44.jpg", "file_size": 18383, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-132#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5d118686c44f6dbc890e223db2ca44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5d118686c44f6dbc890e223db2ca44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5d118686c44f6dbc890e223db2ca44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e5d118686c44f6dbc890e223db2ca44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e5d118686c44f6dbc890e223db2ca44.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiDiiJhFAxH86O8cAsXkxbWemZo=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.279621+00 2025-12-09 10:14:56.279625+00 7573 LJ012FWE#VS-D3 SPMX-20240815302731 \N \N \N 1 \N [{"file_id": "2aa58c00-b717-4391-8324-aa9f9b5f19a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7b56e96e80749eda556368e290006b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7b56e96e80749eda556368e290006b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7b56e96e80749eda556368e290006b6.jpg", "file_size": 10586, "is_delete": false, "file_type": 1, "original_file_name": "LJ012FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7b56e96e80749eda556368e290006b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7b56e96e80749eda556368e290006b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7b56e96e80749eda556368e290006b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7b56e96e80749eda556368e290006b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7b56e96e80749eda556368e290006b6.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mVFq9m3HEFmRCZD-j0hzbwRjM1s=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.28724+00 2025-12-09 10:14:56.287244+00 7578 LJ013FW#VS-D3 SPMX-20240815302740 \N \N \N 1 \N [{"file_id": "e731fbe6-df14-4f10-8787-bfc4f212bd3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d96b46551f7a4006b1649d38646682b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d96b46551f7a4006b1649d38646682b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d96b46551f7a4006b1649d38646682b0.jpg", "file_size": 16417, "is_delete": false, "file_type": 1, "original_file_name": "LJ013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96b46551f7a4006b1649d38646682b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96b46551f7a4006b1649d38646682b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96b46551f7a4006b1649d38646682b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d96b46551f7a4006b1649d38646682b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d96b46551f7a4006b1649d38646682b0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7gtchFCMd9uf_W36rbS-9jw-8s=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.28111+00 2025-12-09 10:14:56.281115+00 7574 23-2112#-A14领子通用 SPMX-20240815302735 \N \N \N 1 \N [{"file_id": "e963acdf-5733-4151-8f4d-78463f16ccee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0b8dd1ee98e48778cf65337a56591fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0b8dd1ee98e48778cf65337a56591fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0b8dd1ee98e48778cf65337a56591fa.jpg", "file_size": 7746, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A14领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b8dd1ee98e48778cf65337a56591fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b8dd1ee98e48778cf65337a56591fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b8dd1ee98e48778cf65337a56591fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0b8dd1ee98e48778cf65337a56591fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0b8dd1ee98e48778cf65337a56591fa.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmpDmHQ5lZg-6WmPf4ai83Zu_3A=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.282867+00 2025-12-09 10:14:56.282872+00 7575 DK1-011-4-批布 SPMX-20240815302742 \N \N \N 1 \N [{"file_id": "4d856e5d-39d4-42a3-b573-4e5171bb5848", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58be57fd3c874dfba99923610e14c34c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58be57fd3c874dfba99923610e14c34c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58be57fd3c874dfba99923610e14c34c.jpg", "file_size": 43787, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58be57fd3c874dfba99923610e14c34c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58be57fd3c874dfba99923610e14c34c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58be57fd3c874dfba99923610e14c34c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58be57fd3c874dfba99923610e14c34c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58be57fd3c874dfba99923610e14c34c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1WtUZKRq6hTYPA1XKzbOoRZHIc0=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.284323+00 2025-12-09 10:14:56.284327+00 7576 1063#白色 SPMX-20240815302727 \N \N \N 1 \N [{"file_id": "3c682c9c-5a88-48ec-b28f-9ecb827bb8c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df4f2dbc5d924c5583fdc1caf44db150.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df4f2dbc5d924c5583fdc1caf44db150.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df4f2dbc5d924c5583fdc1caf44db150.jpg", "file_size": 21006, "is_delete": false, "file_type": 1, "original_file_name": "1063#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4f2dbc5d924c5583fdc1caf44db150.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4f2dbc5d924c5583fdc1caf44db150.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4f2dbc5d924c5583fdc1caf44db150.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df4f2dbc5d924c5583fdc1caf44db150.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df4f2dbc5d924c5583fdc1caf44db150.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyKD8KtlS_ArC3Jw7nnaAkT-nr4=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.285789+00 2025-12-09 10:14:56.285793+00 7577 0003-32FWE#白色 SPMX-20240815302736 \N \N \N 1 \N [{"file_id": "b6a8fdc0-3cc3-4d2b-a360-25c7766689c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b96d5cdbae4d441490c7c41214c9326c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b96d5cdbae4d441490c7c41214c9326c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b96d5cdbae4d441490c7c41214c9326c.jpg", "file_size": 11568, "is_delete": false, "file_type": 1, "original_file_name": "0003-32FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96d5cdbae4d441490c7c41214c9326c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96d5cdbae4d441490c7c41214c9326c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96d5cdbae4d441490c7c41214c9326c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b96d5cdbae4d441490c7c41214c9326c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b96d5cdbae4d441490c7c41214c9326c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s7RTQxyiEfcyRzihO_cW0GfpDW4=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.288663+00 2025-12-09 10:14:56.288668+00 7579 FHXGPK-072-5 SPMX-20240815302730 \N \N \N 1 \N [{"file_id": "df3d67d3-2ac1-4189-ada4-853d2f6f64c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7241d0002acf4110a8ac4bc9f241e435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7241d0002acf4110a8ac4bc9f241e435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7241d0002acf4110a8ac4bc9f241e435.jpg", "file_size": 34997, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-072-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7241d0002acf4110a8ac4bc9f241e435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7241d0002acf4110a8ac4bc9f241e435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7241d0002acf4110a8ac4bc9f241e435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7241d0002acf4110a8ac4bc9f241e435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7241d0002acf4110a8ac4bc9f241e435.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P0IIWWqa3dRnVj3Dbq3YZpwLxbU=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.290142+00 2025-12-09 10:14:56.290147+00 7580 LZ1237#下身号色 SPMX-20240815302728 \N \N \N 1 \N [{"file_id": "2238bcaa-71c2-4e16-94ec-8e53593cef41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b435949cdf34873a26a19267dc7a883.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b435949cdf34873a26a19267dc7a883.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b435949cdf34873a26a19267dc7a883.png", "file_size": 91432, "is_delete": false, "file_type": 1, "original_file_name": "LZ1237#下身号色.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b435949cdf34873a26a19267dc7a883.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b435949cdf34873a26a19267dc7a883.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b435949cdf34873a26a19267dc7a883.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b435949cdf34873a26a19267dc7a883.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b435949cdf34873a26a19267dc7a883.png?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-zpsipvbKMq3YQER6elPKwOzac=", "createTime": "2024-08-15 14:45:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.291598+00 2025-12-09 10:14:56.291602+00 7581 FHXGPK-073-1 SPMX-20240815302739 \N \N \N 1 \N [{"file_id": "42d14757-8cae-46cd-b364-169357dcb2f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "253578c1b0b24d889046dc7c88188b56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "253578c1b0b24d889046dc7c88188b56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "253578c1b0b24d889046dc7c88188b56.jpg", "file_size": 33726, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-073-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253578c1b0b24d889046dc7c88188b56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253578c1b0b24d889046dc7c88188b56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253578c1b0b24d889046dc7c88188b56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/253578c1b0b24d889046dc7c88188b56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/253578c1b0b24d889046dc7c88188b56.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:An1ZNAVmoeS_BKFM7m1gVuZBYVQ=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.293095+00 2025-12-09 10:14:56.2931+00 7582 LZ1238#上身1号色 SPMX-20240815302737 \N \N \N 1 \N [{"file_id": "117ab0c3-f5f0-4e2b-803f-adc52270e92a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "795c435618984fe6b7f69c95ab725a6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "795c435618984fe6b7f69c95ab725a6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "795c435618984fe6b7f69c95ab725a6a.jpg", "file_size": 19525, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795c435618984fe6b7f69c95ab725a6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795c435618984fe6b7f69c95ab725a6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795c435618984fe6b7f69c95ab725a6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/795c435618984fe6b7f69c95ab725a6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/795c435618984fe6b7f69c95ab725a6a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZG7dDfPPpx9Px-Srw4Wx1zWlyE=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.294567+00 2025-12-09 10:14:56.294572+00 7583 HT0101-132#蓝色 SPMX-20240815302738 \N \N \N 1 \N [{"file_id": "0b3a2f8a-bedc-4603-8fd4-fb60effb04f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ae3f9cf83034b7abee2506794b5ec30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ae3f9cf83034b7abee2506794b5ec30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ae3f9cf83034b7abee2506794b5ec30.jpg", "file_size": 19606, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-132#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae3f9cf83034b7abee2506794b5ec30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae3f9cf83034b7abee2506794b5ec30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae3f9cf83034b7abee2506794b5ec30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ae3f9cf83034b7abee2506794b5ec30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ae3f9cf83034b7abee2506794b5ec30.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:InA-1YuOXu58O7Wg6jxopxQCCHg=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.296072+00 2025-12-09 10:14:56.296076+00 7584 8024#杏色花 SPMX-20240815302734 \N \N \N 1 \N [{"file_id": "343fb303-9e1d-49a7-94b5-379caa268bbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "511029ba78fb4c038a11fa3ea4742edf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "511029ba78fb4c038a11fa3ea4742edf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "511029ba78fb4c038a11fa3ea4742edf.jpg", "file_size": 24347, "is_delete": false, "file_type": 1, "original_file_name": "8024#杏色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511029ba78fb4c038a11fa3ea4742edf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511029ba78fb4c038a11fa3ea4742edf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511029ba78fb4c038a11fa3ea4742edf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/511029ba78fb4c038a11fa3ea4742edf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/511029ba78fb4c038a11fa3ea4742edf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pP_9mxf7fcGj0csOM84TGb-Qb7Q=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.297535+00 2025-12-09 10:14:56.297539+00 7585 C321#大白 SPMX-20240815302733 \N \N \N 1 \N [{"file_id": "24573aea-8fa1-4b5c-b9ae-487fcf3887cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29b68ef6ad474d868d872874b5c4a8b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29b68ef6ad474d868d872874b5c4a8b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29b68ef6ad474d868d872874b5c4a8b7.jpg", "file_size": 28623, "is_delete": false, "file_type": 1, "original_file_name": "C321#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b68ef6ad474d868d872874b5c4a8b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b68ef6ad474d868d872874b5c4a8b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b68ef6ad474d868d872874b5c4a8b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29b68ef6ad474d868d872874b5c4a8b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29b68ef6ad474d868d872874b5c4a8b7.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vn3gZOyAB6_O7LymK36ZvZpR9uU=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.298998+00 2025-12-09 10:14:56.299003+00 7586 1063#白色匹布 SPMX-20240815302741 \N \N \N 1 \N [{"file_id": "15bf4fa1-50b3-44e0-9f5b-a543d5c8d4b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab68ddee01044c6af95adc2e6b2cf46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab68ddee01044c6af95adc2e6b2cf46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab68ddee01044c6af95adc2e6b2cf46.jpg", "file_size": 21860, "is_delete": false, "file_type": 1, "original_file_name": "1063#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab68ddee01044c6af95adc2e6b2cf46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab68ddee01044c6af95adc2e6b2cf46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab68ddee01044c6af95adc2e6b2cf46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab68ddee01044c6af95adc2e6b2cf46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab68ddee01044c6af95adc2e6b2cf46.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAW17Abto-RdZTetq8k8ywY8uqM=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.300454+00 2025-12-09 10:14:56.300458+00 7587 DK1-011-3-批布 SPMX-20240815302732 \N \N \N 1 \N [{"file_id": "b09146c4-875d-460d-81a6-4d1d78daeff8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5427d8756e674605a7524ba1de6bf052.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5427d8756e674605a7524ba1de6bf052.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5427d8756e674605a7524ba1de6bf052.jpg", "file_size": 42519, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5427d8756e674605a7524ba1de6bf052.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5427d8756e674605a7524ba1de6bf052.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5427d8756e674605a7524ba1de6bf052.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5427d8756e674605a7524ba1de6bf052.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5427d8756e674605a7524ba1de6bf052.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jklpa75O4sw2AuEPdoOXhE68GvQ=", "createTime": "2024-08-15 14:45:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.301944+00 2025-12-09 10:14:56.301948+00 7588 C321#大白棕色 SPMX-20240815302743 \N \N \N 1 \N [{"file_id": "fa7a6666-137c-4df1-a117-57422ae5d895", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d17afdda9784a5eb98e89a2c0aa86cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d17afdda9784a5eb98e89a2c0aa86cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d17afdda9784a5eb98e89a2c0aa86cf.jpg", "file_size": 7788, "is_delete": false, "file_type": 1, "original_file_name": "C321#大白棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d17afdda9784a5eb98e89a2c0aa86cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d17afdda9784a5eb98e89a2c0aa86cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d17afdda9784a5eb98e89a2c0aa86cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d17afdda9784a5eb98e89a2c0aa86cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d17afdda9784a5eb98e89a2c0aa86cf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MrZS0zvFePT7uQ20uDyTM2I2aTU=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.303406+00 2025-12-09 10:14:56.303411+00 7589 8025FWF#墨绿 SPMX-20240815302754 \N \N \N 1 \N [{"file_id": "6edd69b6-9e0a-41bb-95bf-6a49a0656337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c4dbd2b71ea43efb05bab78361a54eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c4dbd2b71ea43efb05bab78361a54eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c4dbd2b71ea43efb05bab78361a54eb.jpg", "file_size": 23342, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4dbd2b71ea43efb05bab78361a54eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4dbd2b71ea43efb05bab78361a54eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4dbd2b71ea43efb05bab78361a54eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c4dbd2b71ea43efb05bab78361a54eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c4dbd2b71ea43efb05bab78361a54eb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fC_TgT5Jg4D1gN_kWQp3UoTa1pA=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.305074+00 2025-12-09 10:14:56.305079+00 7590 0003-32FWF#V5曲线 SPMX-20240815302757 \N \N \N 1 \N [{"file_id": "9fc0674d-2806-4244-bef1-5e198ac25b53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42a1f44c5b4445aaa7502dded00e3762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42a1f44c5b4445aaa7502dded00e3762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42a1f44c5b4445aaa7502dded00e3762.jpg", "file_size": 15640, "is_delete": false, "file_type": 1, "original_file_name": "0003-32FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a1f44c5b4445aaa7502dded00e3762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a1f44c5b4445aaa7502dded00e3762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a1f44c5b4445aaa7502dded00e3762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42a1f44c5b4445aaa7502dded00e3762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42a1f44c5b4445aaa7502dded00e3762.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BayGWdms-hFJ-Tqf6j5NIUxAcsg=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.306845+00 2025-12-09 10:14:56.30685+00 7591 23-2112#-A15前后片3XL SPMX-20240815302745 \N \N \N 1 \N [{"file_id": "033c1712-ab6c-4739-b02c-f6f2d207ad8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f75468b208d473ebd24de9b42d2d912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f75468b208d473ebd24de9b42d2d912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f75468b208d473ebd24de9b42d2d912.jpg", "file_size": 11407, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f75468b208d473ebd24de9b42d2d912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f75468b208d473ebd24de9b42d2d912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f75468b208d473ebd24de9b42d2d912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f75468b208d473ebd24de9b42d2d912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f75468b208d473ebd24de9b42d2d912.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JD2BL-nU9CPkxppbsic2TGFLgfw=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.308386+00 2025-12-09 10:14:56.30839+00 7592 23-2112#-A15前后片4XL SPMX-20240815302756 \N \N \N 1 \N [{"file_id": "7567412b-e212-425c-95c3-158e4292000a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13ca7a5407034138adce4be4d2b73a74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13ca7a5407034138adce4be4d2b73a74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13ca7a5407034138adce4be4d2b73a74.jpg", "file_size": 11710, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ca7a5407034138adce4be4d2b73a74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ca7a5407034138adce4be4d2b73a74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ca7a5407034138adce4be4d2b73a74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13ca7a5407034138adce4be4d2b73a74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13ca7a5407034138adce4be4d2b73a74.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQgqH5N110BoopdCcHdK-NBQ0ZY=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.310094+00 2025-12-09 10:14:56.310098+00 7593 FHXGPK-073-2 SPMX-20240815302750 \N \N \N 1 \N [{"file_id": "58b5cb28-4487-4d47-bb98-03eebebe01ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eadb1c2822ac48afb30479b249d797a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eadb1c2822ac48afb30479b249d797a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eadb1c2822ac48afb30479b249d797a9.jpg", "file_size": 32389, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-073-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadb1c2822ac48afb30479b249d797a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadb1c2822ac48afb30479b249d797a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadb1c2822ac48afb30479b249d797a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eadb1c2822ac48afb30479b249d797a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eadb1c2822ac48afb30479b249d797a9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcnfvtUsjp_O8sSB_1bHJxWoah0=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.311516+00 2025-12-09 10:14:56.311521+00 7594 8025FWF#土黄 SPMX-20240815302744 \N \N \N 1 \N [{"file_id": "b0fa07c8-66e9-4ce6-9bb0-94ad75b81d73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c21ab42460142e7a6ffc662e8d418ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c21ab42460142e7a6ffc662e8d418ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c21ab42460142e7a6ffc662e8d418ef.jpg", "file_size": 21399, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c21ab42460142e7a6ffc662e8d418ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c21ab42460142e7a6ffc662e8d418ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c21ab42460142e7a6ffc662e8d418ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c21ab42460142e7a6ffc662e8d418ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c21ab42460142e7a6ffc662e8d418ef.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARy_IPvKE5PTaecA_swZ9SxnE_A=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.312953+00 2025-12-09 10:14:56.312957+00 7595 LZ1238#上身2号色 SPMX-20240815302747 \N \N \N 1 \N [{"file_id": "5b70cb9f-d8aa-4547-8356-afc86abc5f93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75f5dd256f8149848cc9d0caa1a5f0c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75f5dd256f8149848cc9d0caa1a5f0c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75f5dd256f8149848cc9d0caa1a5f0c1.jpg", "file_size": 18252, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f5dd256f8149848cc9d0caa1a5f0c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f5dd256f8149848cc9d0caa1a5f0c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f5dd256f8149848cc9d0caa1a5f0c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75f5dd256f8149848cc9d0caa1a5f0c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75f5dd256f8149848cc9d0caa1a5f0c1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4khgwFVYgdDwuTyNW-QAyyP9ig=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.314482+00 2025-12-09 10:14:56.314487+00 7596 HT0101-132#黄色 SPMX-20240815302748 \N \N \N 1 \N [{"file_id": "019f0620-7878-48d9-a042-ed7198fd9988", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96bcd2773be43dfaa6bd38095a36ab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96bcd2773be43dfaa6bd38095a36ab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96bcd2773be43dfaa6bd38095a36ab0.jpg", "file_size": 17371, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-132#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96bcd2773be43dfaa6bd38095a36ab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96bcd2773be43dfaa6bd38095a36ab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96bcd2773be43dfaa6bd38095a36ab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96bcd2773be43dfaa6bd38095a36ab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96bcd2773be43dfaa6bd38095a36ab0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbnPgIS9xkuhYFtouQeKF3LmI9Y=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.316344+00 2025-12-09 10:14:56.316349+00 7597 C321#大白绿色 SPMX-20240815302753 \N \N \N 1 \N [{"file_id": "f5c19cd7-067c-48f7-b784-122b0b1ad2b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3d0c345d5df4854a63f37e31b0c1d30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3d0c345d5df4854a63f37e31b0c1d30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3d0c345d5df4854a63f37e31b0c1d30.jpg", "file_size": 8625, "is_delete": false, "file_type": 1, "original_file_name": "C321#大白绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d0c345d5df4854a63f37e31b0c1d30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d0c345d5df4854a63f37e31b0c1d30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d0c345d5df4854a63f37e31b0c1d30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3d0c345d5df4854a63f37e31b0c1d30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3d0c345d5df4854a63f37e31b0c1d30.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOYmswAPdNdiJOhdbzQRLnw-Rl8=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.317815+00 2025-12-09 10:14:56.317819+00 7598 DK1-011-5-批布 SPMX-20240815302755 \N \N \N 1 \N [{"file_id": "02a39379-d445-47dd-9c5e-892e2f1a0528", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "473b8ab140c34085af00df57a06b3361.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "473b8ab140c34085af00df57a06b3361.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "473b8ab140c34085af00df57a06b3361.jpg", "file_size": 43787, "is_delete": false, "file_type": 1, "original_file_name": "DK1-011-5-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473b8ab140c34085af00df57a06b3361.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473b8ab140c34085af00df57a06b3361.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473b8ab140c34085af00df57a06b3361.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/473b8ab140c34085af00df57a06b3361.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/473b8ab140c34085af00df57a06b3361.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDWIuvVHmxxE4DwIjOFSTWCkwzE=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.319245+00 2025-12-09 10:14:56.31925+00 7599 0003-32FWE#黑色 SPMX-20240815302746 \N \N \N 1 \N [{"file_id": "c4fb8cf4-aa58-49ef-8d8c-af3245230bd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e946ef7f8224bf08113ddea5c131234.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e946ef7f8224bf08113ddea5c131234.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e946ef7f8224bf08113ddea5c131234.jpg", "file_size": 12930, "is_delete": false, "file_type": 1, "original_file_name": "0003-32FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e946ef7f8224bf08113ddea5c131234.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e946ef7f8224bf08113ddea5c131234.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e946ef7f8224bf08113ddea5c131234.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e946ef7f8224bf08113ddea5c131234.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e946ef7f8224bf08113ddea5c131234.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_5B1p9iAInx7om-7KMmLepAcsA=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.320662+00 2025-12-09 10:14:56.320666+00 7600 JTSS025# SPMX-20240815302749 \N \N \N 1 \N [{"file_id": "4a44f35a-1d6f-4a73-afc0-95c0d2b5cd7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d67d9e40bab6461b84afdc18980c1779.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d67d9e40bab6461b84afdc18980c1779.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d67d9e40bab6461b84afdc18980c1779.jpg", "file_size": 17637, "is_delete": false, "file_type": 1, "original_file_name": "JTSS025#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d9e40bab6461b84afdc18980c1779.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d9e40bab6461b84afdc18980c1779.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d9e40bab6461b84afdc18980c1779.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d67d9e40bab6461b84afdc18980c1779.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d67d9e40bab6461b84afdc18980c1779.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bale3zMgTa3hsHlnpqtF5p0t9AY=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.322076+00 2025-12-09 10:14:56.32208+00 7601 LJ013FWE#VS-D3 SPMX-20240815302751 \N \N \N 1 \N [{"file_id": "3386a743-2836-48c8-ac5f-cee91af7f2bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48381adbc9014e30b03a4a70ca4156a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48381adbc9014e30b03a4a70ca4156a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48381adbc9014e30b03a4a70ca4156a0.jpg", "file_size": 15708, "is_delete": false, "file_type": 1, "original_file_name": "LJ013FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48381adbc9014e30b03a4a70ca4156a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48381adbc9014e30b03a4a70ca4156a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48381adbc9014e30b03a4a70ca4156a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48381adbc9014e30b03a4a70ca4156a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48381adbc9014e30b03a4a70ca4156a0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gzMwj2nwforAHy8uhEu5xcAcQns=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.323512+00 2025-12-09 10:14:56.323516+00 7602 1063#白色袖子 SPMX-20240815302752 \N \N \N 1 \N [{"file_id": "e8e324bf-61f1-4371-ad6e-ca1b129ee311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcc9fe78caa04f7997ffb7920ce4058b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcc9fe78caa04f7997ffb7920ce4058b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcc9fe78caa04f7997ffb7920ce4058b.jpg", "file_size": 12204, "is_delete": false, "file_type": 1, "original_file_name": "1063#白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc9fe78caa04f7997ffb7920ce4058b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc9fe78caa04f7997ffb7920ce4058b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc9fe78caa04f7997ffb7920ce4058b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcc9fe78caa04f7997ffb7920ce4058b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcc9fe78caa04f7997ffb7920ce4058b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DF-jeO2zbO61NCK9EAbiBfTrtc=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.32494+00 2025-12-09 10:14:56.324944+00 7603 LJ013FWFW#白底 SPMX-20240815302761 \N \N \N 1 \N [{"file_id": "b5b51367-9ada-4c65-b9d2-3b05a012a043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ff625d569ac4b75a9f25d76257f33eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ff625d569ac4b75a9f25d76257f33eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ff625d569ac4b75a9f25d76257f33eb.jpg", "file_size": 16670, "is_delete": false, "file_type": 1, "original_file_name": "LJ013FWFW#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff625d569ac4b75a9f25d76257f33eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff625d569ac4b75a9f25d76257f33eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff625d569ac4b75a9f25d76257f33eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ff625d569ac4b75a9f25d76257f33eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ff625d569ac4b75a9f25d76257f33eb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPphASGookS2GyqFA7-VaSNTcBU=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.326336+00 2025-12-09 10:14:56.32634+00 7604 HT0101-133#粉色 SPMX-20240815302758 \N \N \N 1 \N [{"file_id": "bf700e94-a983-42a3-92df-484b24fa525d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a73c741075a64f73b1abe403d0717dd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a73c741075a64f73b1abe403d0717dd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a73c741075a64f73b1abe403d0717dd2.jpg", "file_size": 19568, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-133#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73c741075a64f73b1abe403d0717dd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73c741075a64f73b1abe403d0717dd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73c741075a64f73b1abe403d0717dd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a73c741075a64f73b1abe403d0717dd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a73c741075a64f73b1abe403d0717dd2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzdAsqgm8JBcs_8UYj7jpdJGK7M=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.327738+00 2025-12-09 10:14:56.327742+00 7605 8025FWF#宝蓝 SPMX-20240815302766 \N \N \N 1 \N [{"file_id": "6cddf334-5f8e-4137-bec5-881376df72bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192d0f6272d54901a88e5d5b650294be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192d0f6272d54901a88e5d5b650294be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192d0f6272d54901a88e5d5b650294be.jpg", "file_size": 24235, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d0f6272d54901a88e5d5b650294be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d0f6272d54901a88e5d5b650294be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192d0f6272d54901a88e5d5b650294be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192d0f6272d54901a88e5d5b650294be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192d0f6272d54901a88e5d5b650294be.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IX-2WRe0ZyKD8tcMuy5TXnTM12w=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.329154+00 2025-12-09 10:14:56.329158+00 7606 JTSS025FW#杏 SPMX-20240815302760 \N \N \N 1 \N [{"file_id": "b9777f4b-ed40-4f4c-a63e-1e6fae27e0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b1599e5a8eb49829ff3a0ec383efd41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b1599e5a8eb49829ff3a0ec383efd41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b1599e5a8eb49829ff3a0ec383efd41.jpg", "file_size": 10340, "is_delete": false, "file_type": 1, "original_file_name": "JTSS025FW#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1599e5a8eb49829ff3a0ec383efd41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1599e5a8eb49829ff3a0ec383efd41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1599e5a8eb49829ff3a0ec383efd41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b1599e5a8eb49829ff3a0ec383efd41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b1599e5a8eb49829ff3a0ec383efd41.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHGeQNLwc-S2ooJfSJ_aenXn4HY=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.330585+00 2025-12-09 10:14:56.330589+00 7607 23-2112#-A15袖子3XL SPMX-20240815302764 \N \N \N 1 \N [{"file_id": "62a64f10-23ff-4806-b25b-b274708f1ec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3649e1a7df54171beb34ffbb6ceb905.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3649e1a7df54171beb34ffbb6ceb905.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3649e1a7df54171beb34ffbb6ceb905.jpg", "file_size": 10121, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3649e1a7df54171beb34ffbb6ceb905.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3649e1a7df54171beb34ffbb6ceb905.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3649e1a7df54171beb34ffbb6ceb905.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3649e1a7df54171beb34ffbb6ceb905.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3649e1a7df54171beb34ffbb6ceb905.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tox-6oNX9Vv54Le2EDCcdVreyb8=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.33201+00 2025-12-09 10:14:56.332015+00 7608 LZ1238#上身3号色 SPMX-20240815302759 \N \N \N 1 \N [{"file_id": "81818a94-09c6-48a4-9019-b1b81b7da8de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31d1ea5ce74946cfabb77a11a66a482e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31d1ea5ce74946cfabb77a11a66a482e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31d1ea5ce74946cfabb77a11a66a482e.jpg", "file_size": 18061, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d1ea5ce74946cfabb77a11a66a482e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d1ea5ce74946cfabb77a11a66a482e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d1ea5ce74946cfabb77a11a66a482e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31d1ea5ce74946cfabb77a11a66a482e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31d1ea5ce74946cfabb77a11a66a482e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEhhEbayRyl6tygyXVTnETJe-NY=", "createTime": "2024-08-15 14:45:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.333416+00 2025-12-09 10:14:56.33342+00 7609 FHXGPK-073-3 SPMX-20240815302762 \N \N \N 1 \N [{"file_id": "ef24d97b-d4d3-4053-9007-0cf57d484871", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fa8055a4bd145d09cd1e39eada67225.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fa8055a4bd145d09cd1e39eada67225.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fa8055a4bd145d09cd1e39eada67225.jpg", "file_size": 36854, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-073-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa8055a4bd145d09cd1e39eada67225.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa8055a4bd145d09cd1e39eada67225.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa8055a4bd145d09cd1e39eada67225.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fa8055a4bd145d09cd1e39eada67225.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fa8055a4bd145d09cd1e39eada67225.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTe56GiZeWkjq8nGpO6WGrlWhAw=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.334829+00 2025-12-09 10:14:56.334833+00 7610 C321#黑色 SPMX-20240815302765 \N \N \N 1 \N [{"file_id": "82088985-6e3e-4eb9-a0ae-04e01333b9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg", "file_size": 27989, "is_delete": false, "file_type": 1, "original_file_name": "C321#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06d9c7dd0a9a4e91a1ac6d0c903b47a1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6eEQ2hWWINOZqIjCo84ykMC734=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.336255+00 2025-12-09 10:14:56.336259+00 7611 1063#粉色 SPMX-20240815302763 \N \N \N 1 \N [{"file_id": "d3163611-54f6-42a4-b262-d319081cb427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65de89221ada4d618da3a167ea87225e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65de89221ada4d618da3a167ea87225e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65de89221ada4d618da3a167ea87225e.jpg", "file_size": 20177, "is_delete": false, "file_type": 1, "original_file_name": "1063#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65de89221ada4d618da3a167ea87225e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65de89221ada4d618da3a167ea87225e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65de89221ada4d618da3a167ea87225e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65de89221ada4d618da3a167ea87225e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65de89221ada4d618da3a167ea87225e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BzTDMjRX6fpQIlwBPuL9KkgcpbI=", "createTime": "2024-08-15 14:45:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.337656+00 2025-12-09 10:14:56.337661+00 7612 1063#粉色匹布 SPMX-20240815302770 \N \N \N 1 \N [{"file_id": "3c7645f9-212d-4554-bd0e-ef1fbfe90820", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc3c87b155dd4777b972afde7ec4f710.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc3c87b155dd4777b972afde7ec4f710.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc3c87b155dd4777b972afde7ec4f710.jpg", "file_size": 18811, "is_delete": false, "file_type": 1, "original_file_name": "1063#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3c87b155dd4777b972afde7ec4f710.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3c87b155dd4777b972afde7ec4f710.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3c87b155dd4777b972afde7ec4f710.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc3c87b155dd4777b972afde7ec4f710.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc3c87b155dd4777b972afde7ec4f710.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdCgv1cHDNmPEU7l5L4XBVSj008=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.339085+00 2025-12-09 10:14:56.339089+00 7613 JTSS025FW#粉 SPMX-20240815302769 \N \N \N 1 \N [{"file_id": "305f521f-37c5-4afe-9ed2-c35062c64821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "499294cceb6040d592336537a4798cee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "499294cceb6040d592336537a4798cee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "499294cceb6040d592336537a4798cee.jpg", "file_size": 10424, "is_delete": false, "file_type": 1, "original_file_name": "JTSS025FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499294cceb6040d592336537a4798cee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499294cceb6040d592336537a4798cee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499294cceb6040d592336537a4798cee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/499294cceb6040d592336537a4798cee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/499294cceb6040d592336537a4798cee.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-yBPavDDUui5F-I0kqekMt3sjQ=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.340515+00 2025-12-09 10:14:56.34052+00 7614 DK1-012-1-批布 SPMX-20240815302767 \N \N \N 1 \N [{"file_id": "e4b8788d-9de2-407b-9177-49e54992fca1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cff6e4789ca842e199824963268bd977.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cff6e4789ca842e199824963268bd977.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cff6e4789ca842e199824963268bd977.jpg", "file_size": 30331, "is_delete": false, "file_type": 1, "original_file_name": "DK1-012-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff6e4789ca842e199824963268bd977.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff6e4789ca842e199824963268bd977.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff6e4789ca842e199824963268bd977.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cff6e4789ca842e199824963268bd977.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cff6e4789ca842e199824963268bd977.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-UcOF_PTyrdidVY89QCot8_V_gE=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.341914+00 2025-12-09 10:14:56.341918+00 7615 FHXGPK-073-4 SPMX-20240815302771 \N \N \N 1 \N [{"file_id": "037cea4f-1926-4067-9641-e4b494b3f022", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30faacaba3bf465fbe6f734ebe675c6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30faacaba3bf465fbe6f734ebe675c6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30faacaba3bf465fbe6f734ebe675c6b.jpg", "file_size": 33557, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-073-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30faacaba3bf465fbe6f734ebe675c6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30faacaba3bf465fbe6f734ebe675c6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30faacaba3bf465fbe6f734ebe675c6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30faacaba3bf465fbe6f734ebe675c6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30faacaba3bf465fbe6f734ebe675c6b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QAQkE92xPOpLfU6lFyhLElRjiuc=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.343342+00 2025-12-09 10:14:56.343346+00 7616 HT0101-133#红色 SPMX-20240815302772 \N \N \N 1 \N [{"file_id": "5bfe89d6-04d1-448b-99b7-ab64080cc5c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "136828fa1fdb4d318896ae172da04741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "136828fa1fdb4d318896ae172da04741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "136828fa1fdb4d318896ae172da04741.jpg", "file_size": 23152, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-133#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136828fa1fdb4d318896ae172da04741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136828fa1fdb4d318896ae172da04741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136828fa1fdb4d318896ae172da04741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/136828fa1fdb4d318896ae172da04741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/136828fa1fdb4d318896ae172da04741.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nB1scVtmBK2RHKN1FO86xW1EL8=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.344737+00 2025-12-09 10:14:56.344741+00 7617 0003-330#WJC22 SPMX-20240815302768 \N \N \N 1 \N [{"file_id": "447db296-aa04-4fa5-a35a-8c0f905bb5ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "062fc211b15f480aa1ac5ea0cf970983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "062fc211b15f480aa1ac5ea0cf970983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "062fc211b15f480aa1ac5ea0cf970983.jpg", "file_size": 28297, "is_delete": false, "file_type": 1, "original_file_name": "0003-330#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062fc211b15f480aa1ac5ea0cf970983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062fc211b15f480aa1ac5ea0cf970983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062fc211b15f480aa1ac5ea0cf970983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/062fc211b15f480aa1ac5ea0cf970983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/062fc211b15f480aa1ac5ea0cf970983.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8vWfl7jgSJsa1okAcYFi2mOR7w=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.346153+00 2025-12-09 10:14:56.346158+00 7618 23-2112#-A15袖子4XL SPMX-20240815302773 \N \N \N 1 \N [{"file_id": "6133bca0-964d-45e4-8f75-a7c48dc87dec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fda3c328a2b04490a5798e68db49aab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fda3c328a2b04490a5798e68db49aab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fda3c328a2b04490a5798e68db49aab6.jpg", "file_size": 9720, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fda3c328a2b04490a5798e68db49aab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fda3c328a2b04490a5798e68db49aab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fda3c328a2b04490a5798e68db49aab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fda3c328a2b04490a5798e68db49aab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fda3c328a2b04490a5798e68db49aab6.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4rnDA86CgowE6gHgVb0qJxQFqU=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.347559+00 2025-12-09 10:14:56.347563+00 7619 C322#231A-墨绿 SPMX-20240815302774 \N \N \N 1 \N [{"file_id": "b584d369-4263-4274-b92e-4d966a8a4320", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eacea9b827a450891ee292ddb96448c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eacea9b827a450891ee292ddb96448c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eacea9b827a450891ee292ddb96448c.jpg", "file_size": 9682, "is_delete": false, "file_type": 1, "original_file_name": "C322#231A-墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eacea9b827a450891ee292ddb96448c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eacea9b827a450891ee292ddb96448c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eacea9b827a450891ee292ddb96448c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eacea9b827a450891ee292ddb96448c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eacea9b827a450891ee292ddb96448c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ax5h_YS04brXrCjm5uJc4swkN4c=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.348999+00 2025-12-09 10:14:56.349003+00 7620 8025FWF#彩蓝 SPMX-20240815302775 \N \N \N 1 \N [{"file_id": "a0e6ccd2-ddbf-47a6-8a9c-30d1e32a427b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e18f31804f854a878ae188838dc6ff0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e18f31804f854a878ae188838dc6ff0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e18f31804f854a878ae188838dc6ff0f.jpg", "file_size": 22345, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18f31804f854a878ae188838dc6ff0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18f31804f854a878ae188838dc6ff0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e18f31804f854a878ae188838dc6ff0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e18f31804f854a878ae188838dc6ff0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e18f31804f854a878ae188838dc6ff0f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCU9_Ky964zlbbtVvj3mgF44ixY=", "createTime": "2024-08-15 14:45:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.350387+00 2025-12-09 10:14:56.350391+00 7621 LJ014FW#VS-D3 SPMX-20240815302777 \N \N \N 1 \N [{"file_id": "a7e9f282-3ec4-462c-8bc3-b7565d8d552f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cac81485286c4845a17414742258edd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cac81485286c4845a17414742258edd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cac81485286c4845a17414742258edd9.jpg", "file_size": 24250, "is_delete": false, "file_type": 1, "original_file_name": "LJ014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac81485286c4845a17414742258edd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac81485286c4845a17414742258edd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac81485286c4845a17414742258edd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cac81485286c4845a17414742258edd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cac81485286c4845a17414742258edd9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Tuk-7lxRQr1AwgJ5InA6MK5fsY=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.351796+00 2025-12-09 10:14:56.351801+00 7622 23-2112#-A15领口通用 SPMX-20240815302783 \N \N \N 1 \N [{"file_id": "bec6fe4e-f16a-46ac-b2e4-b4edc8f821ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f193ba6d062e4e7ca0f5aad670298a08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f193ba6d062e4e7ca0f5aad670298a08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f193ba6d062e4e7ca0f5aad670298a08.jpg", "file_size": 8645, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f193ba6d062e4e7ca0f5aad670298a08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f193ba6d062e4e7ca0f5aad670298a08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f193ba6d062e4e7ca0f5aad670298a08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f193ba6d062e4e7ca0f5aad670298a08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f193ba6d062e4e7ca0f5aad670298a08.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7n4nUs8qFBDaEJqArsP7NkXFgM0=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.353198+00 2025-12-09 10:14:56.353203+00 7623 HT0101-133#黄色 SPMX-20240815302784 \N \N \N 1 \N [{"file_id": "5b173d64-d2ed-4707-b64b-5bab039beebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5da42385d02478c81c79e5ba8436f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5da42385d02478c81c79e5ba8436f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5da42385d02478c81c79e5ba8436f89.jpg", "file_size": 17904, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-133#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5da42385d02478c81c79e5ba8436f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5da42385d02478c81c79e5ba8436f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5da42385d02478c81c79e5ba8436f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5da42385d02478c81c79e5ba8436f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5da42385d02478c81c79e5ba8436f89.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-H83eUwv34RtU2HhQQQOq5vNuY=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.354644+00 2025-12-09 10:14:56.354648+00 7624 C322#墨绿 SPMX-20240815302785 \N \N \N 1 \N [{"file_id": "053a5773-60e8-4da6-a8b3-51d3009a3b6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfc210f35614c5c86b9be40312a880b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfc210f35614c5c86b9be40312a880b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfc210f35614c5c86b9be40312a880b.jpg", "file_size": 11294, "is_delete": false, "file_type": 1, "original_file_name": "C322#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc210f35614c5c86b9be40312a880b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc210f35614c5c86b9be40312a880b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc210f35614c5c86b9be40312a880b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfc210f35614c5c86b9be40312a880b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfc210f35614c5c86b9be40312a880b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vW4hBj_Q_SmojoDAUC-K0sps6Kk=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.356057+00 2025-12-09 10:14:56.356062+00 7625 FHXGPK-073-5 SPMX-20240815302782 \N \N \N 1 \N [{"file_id": "c4f354af-50fe-491b-8126-1f1df9401cdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b113fc162644395bab196e9cdecaf9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b113fc162644395bab196e9cdecaf9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b113fc162644395bab196e9cdecaf9e.jpg", "file_size": 31950, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-073-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b113fc162644395bab196e9cdecaf9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b113fc162644395bab196e9cdecaf9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b113fc162644395bab196e9cdecaf9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b113fc162644395bab196e9cdecaf9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b113fc162644395bab196e9cdecaf9e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R7EHEZOC5qW9hfY2Hc6Y8W5_MJs=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.357458+00 2025-12-09 10:14:56.357462+00 7626 8025FWF#枣红 SPMX-20240815302786 \N \N \N 1 \N [{"file_id": "b47c01e3-f8e8-4306-bee3-e38eae2a86af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a8d47ce4f8943178bdf615c23a6c321.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a8d47ce4f8943178bdf615c23a6c321.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a8d47ce4f8943178bdf615c23a6c321.jpg", "file_size": 22945, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d47ce4f8943178bdf615c23a6c321.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d47ce4f8943178bdf615c23a6c321.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8d47ce4f8943178bdf615c23a6c321.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a8d47ce4f8943178bdf615c23a6c321.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a8d47ce4f8943178bdf615c23a6c321.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-aUGCcsUAID7bXlaV25xzbxJjg=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.358865+00 2025-12-09 10:14:56.358869+00 7627 LZ1238#上身4号色 SPMX-20240815302776 \N \N \N 1 \N [{"file_id": "48f68a9c-2b5f-428b-9d29-6a52445d3717", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a5c1fc745184c2097beee32d41bd978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a5c1fc745184c2097beee32d41bd978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a5c1fc745184c2097beee32d41bd978.jpg", "file_size": 20300, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c1fc745184c2097beee32d41bd978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c1fc745184c2097beee32d41bd978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c1fc745184c2097beee32d41bd978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a5c1fc745184c2097beee32d41bd978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a5c1fc745184c2097beee32d41bd978.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9G36alHQfwkbAMKWy2Vf227e-lc=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.360274+00 2025-12-09 10:14:56.360278+00 7628 0003-331#WJC22 SPMX-20240815302778 \N \N \N 1 \N [{"file_id": "5bf5bfbd-ff45-4804-acd5-787dad0b9d9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a44a9e900d94d4faf71d3fd26d85bd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a44a9e900d94d4faf71d3fd26d85bd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a44a9e900d94d4faf71d3fd26d85bd9.jpg", "file_size": 21609, "is_delete": false, "file_type": 1, "original_file_name": "0003-331#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a44a9e900d94d4faf71d3fd26d85bd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a44a9e900d94d4faf71d3fd26d85bd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a44a9e900d94d4faf71d3fd26d85bd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a44a9e900d94d4faf71d3fd26d85bd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a44a9e900d94d4faf71d3fd26d85bd9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uxt9vn73epDTOKPS3jrkVlbgoNQ=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.361673+00 2025-12-09 10:14:56.361677+00 7629 LZ1238#上身不下领1号色 SPMX-20240815302787 \N \N \N 1 \N [{"file_id": "034c7422-1df0-44a8-9924-8b9f470c1089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e1a08c71614e61893407225e076e43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e1a08c71614e61893407225e076e43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e1a08c71614e61893407225e076e43.jpg", "file_size": 19913, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身不下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e1a08c71614e61893407225e076e43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e1a08c71614e61893407225e076e43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e1a08c71614e61893407225e076e43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e1a08c71614e61893407225e076e43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e1a08c71614e61893407225e076e43.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RP1pY8XRg4va03jNo-ZOJRKmo4=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.363095+00 2025-12-09 10:14:56.363099+00 7630 DK1-012-2-批布 SPMX-20240815302779 \N \N \N 1 \N [{"file_id": "9be5a3df-3259-4011-bfd5-b1b9aa320e05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51505d27f06e44b5854bc8f831dc91ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51505d27f06e44b5854bc8f831dc91ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51505d27f06e44b5854bc8f831dc91ac.jpg", "file_size": 34319, "is_delete": false, "file_type": 1, "original_file_name": "DK1-012-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51505d27f06e44b5854bc8f831dc91ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51505d27f06e44b5854bc8f831dc91ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51505d27f06e44b5854bc8f831dc91ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51505d27f06e44b5854bc8f831dc91ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51505d27f06e44b5854bc8f831dc91ac.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7FZKC7pjLMAnn4-muFlOc2kRVk=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.364511+00 2025-12-09 10:14:56.364515+00 7631 1063#粉色袖子 SPMX-20240815302781 \N \N \N 1 \N [{"file_id": "f9a6a405-6c60-4584-b767-3c0f421891e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg", "file_size": 11841, "is_delete": false, "file_type": 1, "original_file_name": "1063#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6a8e519380b4d27bc4e50ffcc5f8cc6.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OK8mIsmBdIwbv85DOK0agzy3eWI=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.367536+00 2025-12-09 10:14:56.36754+00 7632 LJ014FWE#VS-D3 SPMX-20240815302788 \N \N \N 1 \N [{"file_id": "eae6b49f-e59e-49cc-be41-8cb920267395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "LJ014FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d8cd6e29a764fbbb7b41ff8a6329a6b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9nFe2JAPD24bzlRlER_vOyvTOQ=", "createTime": "2024-08-15 14:45:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.369061+00 2025-12-09 10:14:56.369065+00 7633 0003-332#WJC22 SPMX-20240815302789 \N \N \N 1 \N [{"file_id": "1df7cab1-791b-4645-98e5-7bbe1a51e03d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8ebddc6fca242238cb5e1bbec94cc32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8ebddc6fca242238cb5e1bbec94cc32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8ebddc6fca242238cb5e1bbec94cc32.jpg", "file_size": 18521, "is_delete": false, "file_type": 1, "original_file_name": "0003-332#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ebddc6fca242238cb5e1bbec94cc32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ebddc6fca242238cb5e1bbec94cc32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8ebddc6fca242238cb5e1bbec94cc32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8ebddc6fca242238cb5e1bbec94cc32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8ebddc6fca242238cb5e1bbec94cc32.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utrBYR2PRVu31BhCHQcizZJPWe0=", "createTime": "2024-08-15 14:45:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.370559+00 2025-12-09 10:14:56.370563+00 7634 1063#青色 SPMX-20240815302791 \N \N \N 1 \N [{"file_id": "1675e0ea-d935-446b-89a5-8aeb999f8c9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "922680c593d3419eb94ac124ea869559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "922680c593d3419eb94ac124ea869559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "922680c593d3419eb94ac124ea869559.jpg", "file_size": 20349, "is_delete": false, "file_type": 1, "original_file_name": "1063#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922680c593d3419eb94ac124ea869559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922680c593d3419eb94ac124ea869559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/922680c593d3419eb94ac124ea869559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/922680c593d3419eb94ac124ea869559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/922680c593d3419eb94ac124ea869559.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lE0rWz1cjcABIgMlrw3Wv0HFlSk=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.372024+00 2025-12-09 10:14:56.372028+00 7635 FHXGPK-074-1 SPMX-20240815302790 \N \N \N 1 \N [{"file_id": "c32c85c7-ac62-46fc-b20d-0b1dd77b53e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "644727f5cc904a83bcc530bd76ada74f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "644727f5cc904a83bcc530bd76ada74f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "644727f5cc904a83bcc530bd76ada74f.jpg", "file_size": 32330, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-074-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644727f5cc904a83bcc530bd76ada74f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644727f5cc904a83bcc530bd76ada74f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/644727f5cc904a83bcc530bd76ada74f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/644727f5cc904a83bcc530bd76ada74f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/644727f5cc904a83bcc530bd76ada74f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBUvH7pVqTRNvGtbYnBJagVi6T4=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.373491+00 2025-12-09 10:14:56.373495+00 7636 JTSS026FW#VS-D3 SPMX-20240815302792 \N \N \N 1 \N [{"file_id": "752a8289-01c2-47b2-ac70-fceededc327e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1ecb960038344919476d6eebd54a5bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1ecb960038344919476d6eebd54a5bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1ecb960038344919476d6eebd54a5bd.jpg", "file_size": 26483, "is_delete": false, "file_type": 1, "original_file_name": "JTSS026FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ecb960038344919476d6eebd54a5bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ecb960038344919476d6eebd54a5bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ecb960038344919476d6eebd54a5bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1ecb960038344919476d6eebd54a5bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1ecb960038344919476d6eebd54a5bd.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WHVS4zXS3Ggc2pfk2GyQzH-suOU=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.374947+00 2025-12-09 10:14:56.374951+00 7637 LJ015FW#VS-D3 SPMX-20240815302795 \N \N \N 1 \N [{"file_id": "3924553b-2af7-4e4f-a186-ce67fb8d310b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "442ce9c7d74a438581d10f4df502c4bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "442ce9c7d74a438581d10f4df502c4bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "442ce9c7d74a438581d10f4df502c4bc.jpg", "file_size": 22141, "is_delete": false, "file_type": 1, "original_file_name": "LJ015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442ce9c7d74a438581d10f4df502c4bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442ce9c7d74a438581d10f4df502c4bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442ce9c7d74a438581d10f4df502c4bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/442ce9c7d74a438581d10f4df502c4bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/442ce9c7d74a438581d10f4df502c4bc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsMQavFGQ69ybPoRfI_QqPW1RAY=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.376389+00 2025-12-09 10:14:56.376394+00 7638 23-2112#-A15领子通用 SPMX-20240815302798 \N \N \N 1 \N [{"file_id": "532b68c1-c7af-4988-aa22-bd465d3cb89e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edc7dfdbc1bd46cca3a073a1e4d69609.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edc7dfdbc1bd46cca3a073a1e4d69609.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edc7dfdbc1bd46cca3a073a1e4d69609.jpg", "file_size": 11202, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A15领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc7dfdbc1bd46cca3a073a1e4d69609.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc7dfdbc1bd46cca3a073a1e4d69609.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc7dfdbc1bd46cca3a073a1e4d69609.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edc7dfdbc1bd46cca3a073a1e4d69609.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edc7dfdbc1bd46cca3a073a1e4d69609.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcYB_BHJhHMVAZgkAfUwGl5iFRo=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.377854+00 2025-12-09 10:14:56.377859+00 7639 c322#黑色 SPMX-20240815302803 \N \N \N 1 \N [{"file_id": "12b46c17-2564-4abb-a0ed-f9e51909960f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efc77cb4098045e3b261f1f4f617f840.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efc77cb4098045e3b261f1f4f617f840.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efc77cb4098045e3b261f1f4f617f840.jpg", "file_size": 11281, "is_delete": false, "file_type": 1, "original_file_name": "c322#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc77cb4098045e3b261f1f4f617f840.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc77cb4098045e3b261f1f4f617f840.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc77cb4098045e3b261f1f4f617f840.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efc77cb4098045e3b261f1f4f617f840.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efc77cb4098045e3b261f1f4f617f840.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUAiLeYyEkqj8BU03nVhMKkn5HM=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.379304+00 2025-12-09 10:14:56.379308+00 7640 FHXGPK-074-2 SPMX-20240815302801 \N \N \N 1 \N [{"file_id": "93998107-0773-4823-9069-e54c07c20dff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c2389406e264655b2959c69351e4abf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c2389406e264655b2959c69351e4abf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c2389406e264655b2959c69351e4abf.jpg", "file_size": 35733, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-074-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2389406e264655b2959c69351e4abf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2389406e264655b2959c69351e4abf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2389406e264655b2959c69351e4abf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c2389406e264655b2959c69351e4abf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c2389406e264655b2959c69351e4abf.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ibhj8FMS-5BnAu09_YvFotuNI8E=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.380784+00 2025-12-09 10:14:56.380788+00 7641 C322#大白 SPMX-20240815302794 \N \N \N 1 \N [{"file_id": "0b8f756e-cd26-4107-a405-e5bfbe4e74f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad2a175164eb4e1f8a9146e69570f276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad2a175164eb4e1f8a9146e69570f276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad2a175164eb4e1f8a9146e69570f276.jpg", "file_size": 10326, "is_delete": false, "file_type": 1, "original_file_name": "C322#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2a175164eb4e1f8a9146e69570f276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2a175164eb4e1f8a9146e69570f276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2a175164eb4e1f8a9146e69570f276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad2a175164eb4e1f8a9146e69570f276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad2a175164eb4e1f8a9146e69570f276.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUkJ0lQcpQbSV0TbcQmiwWSEbBY=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.382238+00 2025-12-09 10:14:56.382242+00 7642 0003-333#白色 SPMX-20240815302796 \N \N \N 1 \N [{"file_id": "4c64f572-17be-4187-903f-144a16e97573", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68975842554f470fa50b4fd30aa6ffa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68975842554f470fa50b4fd30aa6ffa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68975842554f470fa50b4fd30aa6ffa1.jpg", "file_size": 12057, "is_delete": false, "file_type": 1, "original_file_name": "0003-333#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68975842554f470fa50b4fd30aa6ffa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68975842554f470fa50b4fd30aa6ffa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68975842554f470fa50b4fd30aa6ffa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68975842554f470fa50b4fd30aa6ffa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68975842554f470fa50b4fd30aa6ffa1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDWJjwHvGzNmxQHlDHSkDxfi_fg=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.38369+00 2025-12-09 10:14:56.383694+00 7643 LZ1238#上身不下领2号色 SPMX-20240815302799 \N \N \N 1 \N [{"file_id": "84b50aa5-e4eb-460b-bb29-760a2f8cea39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4a278703b02415ba74b6d48471de634.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4a278703b02415ba74b6d48471de634.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4a278703b02415ba74b6d48471de634.jpg", "file_size": 18760, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身不下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a278703b02415ba74b6d48471de634.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a278703b02415ba74b6d48471de634.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a278703b02415ba74b6d48471de634.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4a278703b02415ba74b6d48471de634.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4a278703b02415ba74b6d48471de634.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_sL9KRIBeNspaJubH_o4YMmuISw=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.385145+00 2025-12-09 10:14:56.385149+00 7644 23-2112#-A16杏色前后片3XL SPMX-20240815302808 \N \N \N 1 \N [{"file_id": "c826385d-5bc4-4802-b9a2-876e1063787c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09f559e9636d491f880c6fee80367f9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09f559e9636d491f880c6fee80367f9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09f559e9636d491f880c6fee80367f9f.jpg", "file_size": 10821, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f559e9636d491f880c6fee80367f9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f559e9636d491f880c6fee80367f9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f559e9636d491f880c6fee80367f9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09f559e9636d491f880c6fee80367f9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09f559e9636d491f880c6fee80367f9f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLpqQRPiD2zacaywo2Wv1F5Hon8=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.386626+00 2025-12-09 10:14:56.386631+00 7645 8025FWF#粉色 SPMX-20240815302800 \N \N \N 1 \N [{"file_id": "ccde8ba6-6c0a-43c9-9532-f41dc8285659", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c661f1a68343569fab012ce21f6ac9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c661f1a68343569fab012ce21f6ac9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c661f1a68343569fab012ce21f6ac9.jpg", "file_size": 20784, "is_delete": false, "file_type": 1, "original_file_name": "8025FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c661f1a68343569fab012ce21f6ac9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c661f1a68343569fab012ce21f6ac9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c661f1a68343569fab012ce21f6ac9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c661f1a68343569fab012ce21f6ac9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c661f1a68343569fab012ce21f6ac9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRbDjC1TXRrk4mEJTvZuRQio75o=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.388094+00 2025-12-09 10:14:56.388099+00 7646 1063#青色匹布 SPMX-20240815302802 \N \N \N 1 \N [{"file_id": "9245634d-4c10-47ff-adee-860282912f20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5fd1ec92f534e1abc1454741c2a1dc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5fd1ec92f534e1abc1454741c2a1dc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5fd1ec92f534e1abc1454741c2a1dc8.jpg", "file_size": 20111, "is_delete": false, "file_type": 1, "original_file_name": "1063#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fd1ec92f534e1abc1454741c2a1dc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fd1ec92f534e1abc1454741c2a1dc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fd1ec92f534e1abc1454741c2a1dc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5fd1ec92f534e1abc1454741c2a1dc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5fd1ec92f534e1abc1454741c2a1dc8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gICS8zx3_ES3FyRhaI3aTQn2cyQ=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.389552+00 2025-12-09 10:14:56.389556+00 7647 0003-333#蓝色 SPMX-20240815302805 \N \N \N 1 \N [{"file_id": "549abaa5-2cb2-4a86-8720-7efab4a7d10f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ab2471b15b44e77b628c8b2a3c39576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ab2471b15b44e77b628c8b2a3c39576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ab2471b15b44e77b628c8b2a3c39576.jpg", "file_size": 11927, "is_delete": false, "file_type": 1, "original_file_name": "0003-333#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab2471b15b44e77b628c8b2a3c39576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab2471b15b44e77b628c8b2a3c39576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab2471b15b44e77b628c8b2a3c39576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ab2471b15b44e77b628c8b2a3c39576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ab2471b15b44e77b628c8b2a3c39576.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgwR4VsbBTjp7PbMPr-5exBmDb0=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.390973+00 2025-12-09 10:14:56.390978+00 7648 HT0101-134#WJC22 SPMX-20240815302809 \N \N \N 1 \N [{"file_id": "b0fc38ab-efdd-4f4a-ad72-75b968493715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg", "file_size": 11795, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-134#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b40e7bc1b12b4afbaed6e7ac73e6fd45.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEve7rwOZz5rO_cQJck_b7Ha5x8=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.392448+00 2025-12-09 10:14:56.392452+00 7649 DK1-012-4-批布 SPMX-20240815302804 \N \N \N 1 \N [{"file_id": "62f4075e-ebe5-4006-8f87-e6ce8ad84292", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "643b4b1caf8640fe85f9f7ae926e4c6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "643b4b1caf8640fe85f9f7ae926e4c6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "643b4b1caf8640fe85f9f7ae926e4c6f.jpg", "file_size": 29878, "is_delete": false, "file_type": 1, "original_file_name": "DK1-012-4-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643b4b1caf8640fe85f9f7ae926e4c6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643b4b1caf8640fe85f9f7ae926e4c6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/643b4b1caf8640fe85f9f7ae926e4c6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/643b4b1caf8640fe85f9f7ae926e4c6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/643b4b1caf8640fe85f9f7ae926e4c6f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVqpHcgOD-ZcAVC6FXEGRew2vzU=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.393886+00 2025-12-09 10:14:56.39389+00 7650 JTSS027# SPMX-20240815302806 \N \N \N 1 \N [{"file_id": "d55d98c1-6061-4334-be41-8a93f213ce59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg", "file_size": 13123, "is_delete": false, "file_type": 1, "original_file_name": "JTSS027#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bdfb2eaf1b14ccfbfd40f06c1494c5a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q68rPyQ-zCqnUlCRKssTj0Gk7jE=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.395348+00 2025-12-09 10:14:56.395352+00 7651 HT0101-133#黑色 SPMX-20240815302797 \N \N \N 1 \N [{"file_id": "70c9484a-1662-43a2-9c87-c4b37402da40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23823469855a46e59e43b99e5dbf7fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23823469855a46e59e43b99e5dbf7fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23823469855a46e59e43b99e5dbf7fd8.jpg", "file_size": 24195, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-133#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23823469855a46e59e43b99e5dbf7fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23823469855a46e59e43b99e5dbf7fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23823469855a46e59e43b99e5dbf7fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23823469855a46e59e43b99e5dbf7fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23823469855a46e59e43b99e5dbf7fd8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nssB-7jSbfCE93Nu4ptS-Rzx9zY=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.396782+00 2025-12-09 10:14:56.396786+00 7652 LJ015FWE#灰VS-D3 SPMX-20240815302807 \N \N \N 1 \N [{"file_id": "aedf689d-fc5f-4fa5-b44b-de091769eb78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25cbfb93e35e473ca89c17d62041315f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25cbfb93e35e473ca89c17d62041315f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25cbfb93e35e473ca89c17d62041315f.jpg", "file_size": 15323, "is_delete": false, "file_type": 1, "original_file_name": "LJ015FWE#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cbfb93e35e473ca89c17d62041315f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cbfb93e35e473ca89c17d62041315f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cbfb93e35e473ca89c17d62041315f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25cbfb93e35e473ca89c17d62041315f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25cbfb93e35e473ca89c17d62041315f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jI9rTMMTC10W1LotWZ-4-8yQWxg=", "createTime": "2024-08-15 14:45:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.398215+00 2025-12-09 10:14:56.398219+00 7653 DK1-012-3-批布 SPMX-20240815302793 \N \N \N 1 \N [{"file_id": "9bec9fc4-f044-4b9e-9218-dfe2297dc057", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9be13956ad084dbe860a6ee7ee4b6bd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9be13956ad084dbe860a6ee7ee4b6bd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9be13956ad084dbe860a6ee7ee4b6bd4.jpg", "file_size": 32925, "is_delete": false, "file_type": 1, "original_file_name": "DK1-012-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be13956ad084dbe860a6ee7ee4b6bd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be13956ad084dbe860a6ee7ee4b6bd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be13956ad084dbe860a6ee7ee4b6bd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9be13956ad084dbe860a6ee7ee4b6bd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9be13956ad084dbe860a6ee7ee4b6bd4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TD2lYc8Sz6yWAEFCygqaunWwNAY=", "createTime": "2024-08-15 14:45:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.399683+00 2025-12-09 10:14:56.399687+00 7654 1063#青色袖子 SPMX-20240815302813 \N \N \N 1 \N [{"file_id": "a25d1b0d-2e1d-4443-a856-7955629e43ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "959537fd445c40909d0c181a3f385755.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "959537fd445c40909d0c181a3f385755.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "959537fd445c40909d0c181a3f385755.jpg", "file_size": 11885, "is_delete": false, "file_type": 1, "original_file_name": "1063#青色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959537fd445c40909d0c181a3f385755.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959537fd445c40909d0c181a3f385755.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959537fd445c40909d0c181a3f385755.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/959537fd445c40909d0c181a3f385755.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/959537fd445c40909d0c181a3f385755.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qRZDayLWHbtx0Fv9lu9DHzpe2I=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.401165+00 2025-12-09 10:14:56.401169+00 7655 LZ1238#上身不下领3号色 SPMX-20240815302812 \N \N \N 1 \N [{"file_id": "bb8ff14f-fbb3-4ab9-baba-d2ca6c416a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feb379a9b2494a3bb4fb860fb8a7eba9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feb379a9b2494a3bb4fb860fb8a7eba9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feb379a9b2494a3bb4fb860fb8a7eba9.jpg", "file_size": 18371, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身不下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb379a9b2494a3bb4fb860fb8a7eba9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb379a9b2494a3bb4fb860fb8a7eba9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb379a9b2494a3bb4fb860fb8a7eba9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feb379a9b2494a3bb4fb860fb8a7eba9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feb379a9b2494a3bb4fb860fb8a7eba9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tR1yco--y6GF_Gr9rY-_gLJrW1I=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.402839+00 2025-12-09 10:14:56.402842+00 7656 DK1-012-54-批布 SPMX-20240815302814 \N \N \N 1 \N [{"file_id": "ee4d9957-8845-41a5-9088-97d1733c211d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a1e8ea0c423417a86d0978f6056675f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a1e8ea0c423417a86d0978f6056675f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a1e8ea0c423417a86d0978f6056675f.jpg", "file_size": 29878, "is_delete": false, "file_type": 1, "original_file_name": "DK1-012-54-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1e8ea0c423417a86d0978f6056675f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1e8ea0c423417a86d0978f6056675f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a1e8ea0c423417a86d0978f6056675f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a1e8ea0c423417a86d0978f6056675f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a1e8ea0c423417a86d0978f6056675f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0IVCmWsasYSDlhbRDlrVOaiHVI0=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.404273+00 2025-12-09 10:14:56.404277+00 7657 FHXGPK-074-4 SPMX-20240815302823 \N \N \N 1 \N [{"file_id": "bf43b1b8-d460-45e7-8046-59bfff285162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "179cf56fa6cf417997d112fc83fd20ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "179cf56fa6cf417997d112fc83fd20ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "179cf56fa6cf417997d112fc83fd20ff.jpg", "file_size": 30622, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-074-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179cf56fa6cf417997d112fc83fd20ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179cf56fa6cf417997d112fc83fd20ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179cf56fa6cf417997d112fc83fd20ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/179cf56fa6cf417997d112fc83fd20ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/179cf56fa6cf417997d112fc83fd20ff.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSz9rCK59ix-B8lB0KngCC_hIPU=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.405925+00 2025-12-09 10:14:56.405931+00 7658 LZ1238#上身不下领4号色 SPMX-20240815302821 \N \N \N 1 \N [{"file_id": "186a1150-e9b8-42a2-bf1a-5b3980e6359a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba4aa5950f024a8295591a3e651aea7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba4aa5950f024a8295591a3e651aea7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba4aa5950f024a8295591a3e651aea7d.jpg", "file_size": 20334, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#上身不下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4aa5950f024a8295591a3e651aea7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4aa5950f024a8295591a3e651aea7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4aa5950f024a8295591a3e651aea7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba4aa5950f024a8295591a3e651aea7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba4aa5950f024a8295591a3e651aea7d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WW0uL5l8idB1yRl0uMNoiJehiFE=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.407408+00 2025-12-09 10:14:56.407412+00 7659 0003-333#黑色 SPMX-20240815302816 \N \N \N 1 \N [{"file_id": "090a545f-4c84-49e5-b925-2cfe4a4554bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1a3898ca050415ca92b417651c364c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1a3898ca050415ca92b417651c364c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1a3898ca050415ca92b417651c364c9.jpg", "file_size": 13345, "is_delete": false, "file_type": 1, "original_file_name": "0003-333#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a3898ca050415ca92b417651c364c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a3898ca050415ca92b417651c364c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a3898ca050415ca92b417651c364c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1a3898ca050415ca92b417651c364c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1a3898ca050415ca92b417651c364c9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FIG-LJ3-rq1D0RrBGLPpUO_WHj0=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.408889+00 2025-12-09 10:14:56.408893+00 7660 LJ016FW#VS-D3 SPMX-20240815302817 \N \N \N 1 \N [{"file_id": "21ee547f-9788-4a90-ba14-d891767aff5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91c5f284d92841868fd2c1a2daefc606.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91c5f284d92841868fd2c1a2daefc606.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91c5f284d92841868fd2c1a2daefc606.jpg", "file_size": 12059, "is_delete": false, "file_type": 1, "original_file_name": "LJ016FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c5f284d92841868fd2c1a2daefc606.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c5f284d92841868fd2c1a2daefc606.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c5f284d92841868fd2c1a2daefc606.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91c5f284d92841868fd2c1a2daefc606.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91c5f284d92841868fd2c1a2daefc606.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bL8OmUNs9GjwxLOBmLTOAtaGTyo=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.410334+00 2025-12-09 10:14:56.410338+00 7661 HT0101-135#WJC22 SPMX-20240815302820 \N \N \N 1 \N [{"file_id": "4b79bb77-bf6b-488f-b4df-69de445f07f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bafab17def9490f93d1603f34c9f290.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bafab17def9490f93d1603f34c9f290.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bafab17def9490f93d1603f34c9f290.jpg", "file_size": 22546, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-135#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bafab17def9490f93d1603f34c9f290.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bafab17def9490f93d1603f34c9f290.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bafab17def9490f93d1603f34c9f290.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bafab17def9490f93d1603f34c9f290.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bafab17def9490f93d1603f34c9f290.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RokeHmV6QSOwggYoct0AGJPdIbc=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.411802+00 2025-12-09 10:14:56.411806+00 7662 JTSS0275-A1#RC23 SPMX-20240815302819 \N \N \N 1 \N [{"file_id": "1db9a650-084f-4f3f-9e6d-a805620c5c01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ad20da1d4ac4d858132c52c7dc9374a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ad20da1d4ac4d858132c52c7dc9374a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ad20da1d4ac4d858132c52c7dc9374a.jpg", "file_size": 41487, "is_delete": false, "file_type": 1, "original_file_name": "JTSS0275-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad20da1d4ac4d858132c52c7dc9374a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad20da1d4ac4d858132c52c7dc9374a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad20da1d4ac4d858132c52c7dc9374a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ad20da1d4ac4d858132c52c7dc9374a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ad20da1d4ac4d858132c52c7dc9374a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uvjUyh8YL_Z5MRvI0J_TV2VldsE=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.413238+00 2025-12-09 10:14:56.413242+00 7663 FHXGPK-074-3 SPMX-20240815302811 \N \N \N 1 \N [{"file_id": "e1228b75-5524-4dde-8e07-e88a98b8676f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f395c0d49c154a4b92aaada468b4def4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f395c0d49c154a4b92aaada468b4def4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f395c0d49c154a4b92aaada468b4def4.jpg", "file_size": 32652, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-074-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f395c0d49c154a4b92aaada468b4def4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f395c0d49c154a4b92aaada468b4def4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f395c0d49c154a4b92aaada468b4def4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f395c0d49c154a4b92aaada468b4def4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f395c0d49c154a4b92aaada468b4def4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLZd_p6BLVvPz5SLBML8eNDIJ4k=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.414681+00 2025-12-09 10:14:56.414686+00 7664 23-2112#-A16杏色前后片4XL SPMX-20240815302818 \N \N \N 1 \N [{"file_id": "dd40782f-14eb-4ad4-8760-d7e5c953b5b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "415b58ccc54c4efd919d1934f9ebd90b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "415b58ccc54c4efd919d1934f9ebd90b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "415b58ccc54c4efd919d1934f9ebd90b.jpg", "file_size": 10903, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415b58ccc54c4efd919d1934f9ebd90b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415b58ccc54c4efd919d1934f9ebd90b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415b58ccc54c4efd919d1934f9ebd90b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/415b58ccc54c4efd919d1934f9ebd90b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/415b58ccc54c4efd919d1934f9ebd90b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIAJiy6h89Cs_b5n9MWsC1d7ax4=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.416134+00 2025-12-09 10:14:56.416138+00 7665 C322-1#231A-墨绿 SPMX-20240815302815 \N \N \N 1 \N [{"file_id": "26ad3591-a826-413b-81ef-cc0c09f19fd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bc4fcdfdd844fedac6b9d7016fd72e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bc4fcdfdd844fedac6b9d7016fd72e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bc4fcdfdd844fedac6b9d7016fd72e7.jpg", "file_size": 12268, "is_delete": false, "file_type": 1, "original_file_name": "C322-1#231A-墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc4fcdfdd844fedac6b9d7016fd72e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc4fcdfdd844fedac6b9d7016fd72e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc4fcdfdd844fedac6b9d7016fd72e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bc4fcdfdd844fedac6b9d7016fd72e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bc4fcdfdd844fedac6b9d7016fd72e7.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4EWqZ70NOflQgRjCl6eEI7foCA=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.417609+00 2025-12-09 10:14:56.417613+00 7666 8026FWF#枣红 SPMX-20240815302822 \N \N \N 1 \N [{"file_id": "6094b8d2-3bb1-45bc-8bf3-444aa83247fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe7286d1ce264b6295aa5c76022eb120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe7286d1ce264b6295aa5c76022eb120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe7286d1ce264b6295aa5c76022eb120.jpg", "file_size": 24792, "is_delete": false, "file_type": 1, "original_file_name": "8026FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7286d1ce264b6295aa5c76022eb120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7286d1ce264b6295aa5c76022eb120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7286d1ce264b6295aa5c76022eb120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe7286d1ce264b6295aa5c76022eb120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe7286d1ce264b6295aa5c76022eb120.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZPOjqATwc5Ja6NpiDbG2yqr_F4=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.419066+00 2025-12-09 10:14:56.41907+00 7667 8026FWF#彩蓝 SPMX-20240815302810 \N \N \N 1 \N [{"file_id": "b7ef71fe-28f1-47a5-bf58-4aab2b2b5387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f02e115578b6418794038e11db1e3079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f02e115578b6418794038e11db1e3079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f02e115578b6418794038e11db1e3079.jpg", "file_size": 23865, "is_delete": false, "file_type": 1, "original_file_name": "8026FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02e115578b6418794038e11db1e3079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02e115578b6418794038e11db1e3079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f02e115578b6418794038e11db1e3079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f02e115578b6418794038e11db1e3079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f02e115578b6418794038e11db1e3079.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHw1RuQz99G1kAgutOlqlv6tH1g=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.420523+00 2025-12-09 10:14:56.420527+00 7668 8026FWF#粉色 SPMX-20240815302833 \N \N \N 1 \N [{"file_id": "f88e9f5e-11db-4727-9b6c-c2d2bc4e4936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5cc2831971249309e472e89a6aa0def.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5cc2831971249309e472e89a6aa0def.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5cc2831971249309e472e89a6aa0def.jpg", "file_size": 23092, "is_delete": false, "file_type": 1, "original_file_name": "8026FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cc2831971249309e472e89a6aa0def.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cc2831971249309e472e89a6aa0def.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5cc2831971249309e472e89a6aa0def.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5cc2831971249309e472e89a6aa0def.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5cc2831971249309e472e89a6aa0def.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rB14lkGPzrGrUP1O-s4hAtwfG7k=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.421979+00 2025-12-09 10:14:56.421983+00 7669 C322-1#墨绿 SPMX-20240815302824 \N \N \N 1 \N [{"file_id": "fdda2bf2-dcaf-437f-912b-756495316a22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bb9197ed5034ddfbdced144d0aca84c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bb9197ed5034ddfbdced144d0aca84c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bb9197ed5034ddfbdced144d0aca84c.jpg", "file_size": 10881, "is_delete": false, "file_type": 1, "original_file_name": "C322-1#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb9197ed5034ddfbdced144d0aca84c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb9197ed5034ddfbdced144d0aca84c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb9197ed5034ddfbdced144d0aca84c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bb9197ed5034ddfbdced144d0aca84c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bb9197ed5034ddfbdced144d0aca84c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xT6n9kIHMNUiBIK2tQgVgcR1eNY=", "createTime": "2024-08-15 14:45:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.423413+00 2025-12-09 10:14:56.423418+00 7670 0003-334#橙色前片 SPMX-20240815302826 \N \N \N 1 \N [{"file_id": "d302bfea-c991-47f3-b197-deb922007b9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfd9b91c75a48efa83b3bd64e399973.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfd9b91c75a48efa83b3bd64e399973.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfd9b91c75a48efa83b3bd64e399973.jpg", "file_size": 18213, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#橙色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9b91c75a48efa83b3bd64e399973.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9b91c75a48efa83b3bd64e399973.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9b91c75a48efa83b3bd64e399973.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9b91c75a48efa83b3bd64e399973.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfd9b91c75a48efa83b3bd64e399973.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBNLJF1VniKw5YbiAMaxAMYluqQ=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.424885+00 2025-12-09 10:14:56.424889+00 7671 0003-334#橙色条纹 SPMX-20240815302837 \N \N \N 1 \N [{"file_id": "cbb5a4bc-3e9c-4a85-a7dc-acd08b6a59a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "997f9137403c45a8bc1f7cd587f20fca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "997f9137403c45a8bc1f7cd587f20fca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "997f9137403c45a8bc1f7cd587f20fca.jpg", "file_size": 16368, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#橙色条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997f9137403c45a8bc1f7cd587f20fca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997f9137403c45a8bc1f7cd587f20fca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997f9137403c45a8bc1f7cd587f20fca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/997f9137403c45a8bc1f7cd587f20fca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/997f9137403c45a8bc1f7cd587f20fca.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5AVFpW3a0J91kiQ_7oaQ8F3qRlU=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.42645+00 2025-12-09 10:14:56.426455+00 7672 HT0101-136#B SPMX-20240815302840 \N \N \N 1 \N [{"file_id": "ee517c5e-671f-4bf2-984e-32cba6884625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e42f49314663428b9403313fb8a27e40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e42f49314663428b9403313fb8a27e40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e42f49314663428b9403313fb8a27e40.jpg", "file_size": 14807, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-136#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e42f49314663428b9403313fb8a27e40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e42f49314663428b9403313fb8a27e40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e42f49314663428b9403313fb8a27e40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e42f49314663428b9403313fb8a27e40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e42f49314663428b9403313fb8a27e40.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvVf1QFwsI7_ELHO_zP7hEeHGzw=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.428167+00 2025-12-09 10:14:56.428172+00 7673 LJ016FWE#杏VS-D3 SPMX-20240815302828 \N \N \N 1 \N [{"file_id": "223c0f73-87aa-4896-81d1-a77d2ed3f178", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9effc96f60a46b29f466cf2db5018dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9effc96f60a46b29f466cf2db5018dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9effc96f60a46b29f466cf2db5018dc.jpg", "file_size": 16661, "is_delete": false, "file_type": 1, "original_file_name": "LJ016FWE#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9effc96f60a46b29f466cf2db5018dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9effc96f60a46b29f466cf2db5018dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9effc96f60a46b29f466cf2db5018dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9effc96f60a46b29f466cf2db5018dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9effc96f60a46b29f466cf2db5018dc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNrH2882_tmsf9_0BOqKBjxorZ8=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.429643+00 2025-12-09 10:14:56.429647+00 7674 DK151#LWQ15 SPMX-20240815302830 \N \N \N 1 \N [{"file_id": "042e412a-ca73-4903-ab99-ef1ff2f570e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d6192c42e6f48b1963fe887cce116e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d6192c42e6f48b1963fe887cce116e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d6192c42e6f48b1963fe887cce116e2.jpg", "file_size": 6846, "is_delete": false, "file_type": 1, "original_file_name": "DK151#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6192c42e6f48b1963fe887cce116e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6192c42e6f48b1963fe887cce116e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6192c42e6f48b1963fe887cce116e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d6192c42e6f48b1963fe887cce116e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d6192c42e6f48b1963fe887cce116e2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3Hgy9Ij-A1H8j7CWoSSrqyhF2E=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.431135+00 2025-12-09 10:14:56.431139+00 7675 23-2112#-A16杏色袖子3XL SPMX-20240815302825 \N \N \N 1 \N [{"file_id": "2c489266-6d69-436e-8c9c-dddb0eefe5f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21d4dd541e0842e284169c395904428b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21d4dd541e0842e284169c395904428b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21d4dd541e0842e284169c395904428b.jpg", "file_size": 8083, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d4dd541e0842e284169c395904428b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d4dd541e0842e284169c395904428b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21d4dd541e0842e284169c395904428b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21d4dd541e0842e284169c395904428b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21d4dd541e0842e284169c395904428b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFX_cxSB-EHEn_-jVmDXWKLw534=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.432601+00 2025-12-09 10:14:56.432605+00 7676 C322-1#大白 SPMX-20240815302834 \N \N \N 1 \N [{"file_id": "315a4a7a-62a0-408b-9ca4-27e25d155d37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e55c89fc78c94d38a75207f4f3b6f26d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e55c89fc78c94d38a75207f4f3b6f26d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e55c89fc78c94d38a75207f4f3b6f26d.jpg", "file_size": 10237, "is_delete": false, "file_type": 1, "original_file_name": "C322-1#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c89fc78c94d38a75207f4f3b6f26d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c89fc78c94d38a75207f4f3b6f26d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c89fc78c94d38a75207f4f3b6f26d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e55c89fc78c94d38a75207f4f3b6f26d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e55c89fc78c94d38a75207f4f3b6f26d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oH4ltseKBuxbwICdf2M-1n-Ad1I=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.434055+00 2025-12-09 10:14:56.434059+00 7677 FHXGPK-074-5 SPMX-20240815302835 \N \N \N 1 \N [{"file_id": "dd357def-72ee-4865-af69-e95d7987e263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "612055d056f344b98844500bffca1152.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "612055d056f344b98844500bffca1152.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "612055d056f344b98844500bffca1152.jpg", "file_size": 31201, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-074-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612055d056f344b98844500bffca1152.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612055d056f344b98844500bffca1152.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612055d056f344b98844500bffca1152.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/612055d056f344b98844500bffca1152.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/612055d056f344b98844500bffca1152.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Q3t6ToEb4_fVQpmZEYMcz45UeY=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.435497+00 2025-12-09 10:14:56.435501+00 7678 LZ1238#下身1号色 SPMX-20240815302832 \N \N \N 1 \N [{"file_id": "21134fdf-a124-48fb-ba11-fe3101ef0805", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5e1c10c08b1469cba35fd3438396bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5e1c10c08b1469cba35fd3438396bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5e1c10c08b1469cba35fd3438396bd8.jpg", "file_size": 19930, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e1c10c08b1469cba35fd3438396bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e1c10c08b1469cba35fd3438396bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e1c10c08b1469cba35fd3438396bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5e1c10c08b1469cba35fd3438396bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5e1c10c08b1469cba35fd3438396bd8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fsNLGG4nZZWbPfVtUXqh7_f6Pc8=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.436993+00 2025-12-09 10:14:56.436997+00 7679 23-2112#-A16杏色袖子4XL SPMX-20240815302836 \N \N \N 1 \N [{"file_id": "1398999a-95ae-4a6b-a3dd-179fd79ab7fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9e88aa6f3514a1183de7dfbd0b85dde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9e88aa6f3514a1183de7dfbd0b85dde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9e88aa6f3514a1183de7dfbd0b85dde.jpg", "file_size": 8078, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9e88aa6f3514a1183de7dfbd0b85dde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9e88aa6f3514a1183de7dfbd0b85dde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9e88aa6f3514a1183de7dfbd0b85dde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9e88aa6f3514a1183de7dfbd0b85dde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9e88aa6f3514a1183de7dfbd0b85dde.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzAdorkWaB1BgMKQHgO46TE2PFE=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.438443+00 2025-12-09 10:14:56.438447+00 7680 1063FWF#M SPMX-20240815302838 \N \N \N 1 \N [{"file_id": "86ef255c-a3e8-4cb2-93ac-b8ea82d6cfba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a0134084abc4d618b35bee276038434.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a0134084abc4d618b35bee276038434.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a0134084abc4d618b35bee276038434.jpg", "file_size": 14623, "is_delete": false, "file_type": 1, "original_file_name": "1063FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0134084abc4d618b35bee276038434.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0134084abc4d618b35bee276038434.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0134084abc4d618b35bee276038434.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a0134084abc4d618b35bee276038434.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a0134084abc4d618b35bee276038434.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMmCxR0k9x_ELvglLgfdclaFXeo=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.439924+00 2025-12-09 10:14:56.439929+00 7681 LJ017FW#VS-D3 SPMX-20240815302839 \N \N \N 1 \N [{"file_id": "e560de8a-abd6-4e2f-a70b-c9f3658a674a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b7de99c660c47bc86350c24794899eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b7de99c660c47bc86350c24794899eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b7de99c660c47bc86350c24794899eb.jpg", "file_size": 24799, "is_delete": false, "file_type": 1, "original_file_name": "LJ017FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7de99c660c47bc86350c24794899eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7de99c660c47bc86350c24794899eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7de99c660c47bc86350c24794899eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b7de99c660c47bc86350c24794899eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b7de99c660c47bc86350c24794899eb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvLXva3vSp3-UObr-C32FkioWwc=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.441363+00 2025-12-09 10:14:56.441368+00 7682 1063FWF#L SPMX-20240815302827 \N \N \N 1 \N [{"file_id": "2fe0a900-6f9a-458e-b45f-70b17851ebe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c93aa1d653d844e6bf2ae28dc4038fc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c93aa1d653d844e6bf2ae28dc4038fc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c93aa1d653d844e6bf2ae28dc4038fc1.jpg", "file_size": 14013, "is_delete": false, "file_type": 1, "original_file_name": "1063FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93aa1d653d844e6bf2ae28dc4038fc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93aa1d653d844e6bf2ae28dc4038fc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93aa1d653d844e6bf2ae28dc4038fc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c93aa1d653d844e6bf2ae28dc4038fc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c93aa1d653d844e6bf2ae28dc4038fc1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bFGJpv8rFSn-W1vqIyESCaNhVA=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.442841+00 2025-12-09 10:14:56.442844+00 7683 DKY611#WJC22 SPMX-20240815302841 \N \N \N 1 \N [{"file_id": "2efd4227-12b5-4ac0-8ff6-782273f8519d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f387eef0015f47319fa972652b2b22e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f387eef0015f47319fa972652b2b22e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f387eef0015f47319fa972652b2b22e9.jpg", "file_size": 13571, "is_delete": false, "file_type": 1, "original_file_name": "DKY611#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f387eef0015f47319fa972652b2b22e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f387eef0015f47319fa972652b2b22e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f387eef0015f47319fa972652b2b22e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f387eef0015f47319fa972652b2b22e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f387eef0015f47319fa972652b2b22e9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aoYek_eC2jBdllm3WtYYaG7Nxyo=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.444547+00 2025-12-09 10:14:56.444552+00 7684 JTSS0275-A2#RC23 SPMX-20240815302831 \N \N \N 1 \N [{"file_id": "25914f9b-4289-43f5-82b3-d36dbfbabf72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b30371158a94ec4917d1eaaf5be0f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b30371158a94ec4917d1eaaf5be0f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b30371158a94ec4917d1eaaf5be0f2f.jpg", "file_size": 46552, "is_delete": false, "file_type": 1, "original_file_name": "JTSS0275-A2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b30371158a94ec4917d1eaaf5be0f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b30371158a94ec4917d1eaaf5be0f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b30371158a94ec4917d1eaaf5be0f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b30371158a94ec4917d1eaaf5be0f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b30371158a94ec4917d1eaaf5be0f2f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__M9x_2GCE-nNLn1qRD_NTBRJFs=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.446315+00 2025-12-09 10:14:56.446319+00 7685 HT0101-136#A SPMX-20240815302829 \N \N \N 1 \N [{"file_id": "50ce684c-7cfa-4901-9707-2900907b5e2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e6ec53ffc144e22be2aeea22efed023.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e6ec53ffc144e22be2aeea22efed023.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e6ec53ffc144e22be2aeea22efed023.jpg", "file_size": 15351, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-136#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec53ffc144e22be2aeea22efed023.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec53ffc144e22be2aeea22efed023.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec53ffc144e22be2aeea22efed023.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec53ffc144e22be2aeea22efed023.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec53ffc144e22be2aeea22efed023.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2F0ncPJLCItOrqbH45X4jEL0XZU=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.448045+00 2025-12-09 10:14:56.448049+00 7686 1063FWF#S SPMX-20240815302849 \N \N \N 1 \N [{"file_id": "4267b82d-c993-41ce-b50e-0699a3684765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg", "file_size": 14686, "is_delete": false, "file_type": 1, "original_file_name": "1063FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf48e1a05d194eb5a0bfae4ff2fb03b1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_a_dsi6n-SVIMO4dhLM8ZyReAik=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.449786+00 2025-12-09 10:14:56.44979+00 7687 LZ1238#下身3号色 SPMX-20240815302854 \N \N \N 1 \N [{"file_id": "4b1bfd27-6ef6-4b18-907a-79429cd25f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53b35dd831f549a5add0edb93528a69d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53b35dd831f549a5add0edb93528a69d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53b35dd831f549a5add0edb93528a69d.jpg", "file_size": 19187, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b35dd831f549a5add0edb93528a69d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b35dd831f549a5add0edb93528a69d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53b35dd831f549a5add0edb93528a69d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53b35dd831f549a5add0edb93528a69d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53b35dd831f549a5add0edb93528a69d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6Pb5fIBk3IwGJMtX6rE0TR0wU8=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.451648+00 2025-12-09 10:14:56.451653+00 7688 8026FWF#藏青 SPMX-20240815302844 \N \N \N 1 \N [{"file_id": "a2716829-39ba-4f32-b831-95f805b96405", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b589aea1c99a47a1bc04e31174f59f56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b589aea1c99a47a1bc04e31174f59f56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b589aea1c99a47a1bc04e31174f59f56.jpg", "file_size": 24714, "is_delete": false, "file_type": 1, "original_file_name": "8026FWF#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b589aea1c99a47a1bc04e31174f59f56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b589aea1c99a47a1bc04e31174f59f56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b589aea1c99a47a1bc04e31174f59f56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b589aea1c99a47a1bc04e31174f59f56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b589aea1c99a47a1bc04e31174f59f56.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:12gyUpbNyz8xyjMO6csfp-siIHg=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.453402+00 2025-12-09 10:14:56.453406+00 7689 C322-1#黑色 SPMX-20240815302845 \N \N \N 1 \N [{"file_id": "073751a7-9914-432a-8b3b-fe2e226ddc60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c767d829f3074777a5f937b5bdb5e20b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c767d829f3074777a5f937b5bdb5e20b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c767d829f3074777a5f937b5bdb5e20b.jpg", "file_size": 11590, "is_delete": false, "file_type": 1, "original_file_name": "C322-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c767d829f3074777a5f937b5bdb5e20b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c767d829f3074777a5f937b5bdb5e20b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c767d829f3074777a5f937b5bdb5e20b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c767d829f3074777a5f937b5bdb5e20b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c767d829f3074777a5f937b5bdb5e20b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrQxEhzTFPa6HtRKLFeCVtWslDg=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.455308+00 2025-12-09 10:14:56.455313+00 7690 HT0101-137#浅黄 SPMX-20240815302851 \N \N \N 1 \N [{"file_id": "daa079cd-d710-4406-bcb6-54512c928fdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c598835e0a34836b5103259a26bd52d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c598835e0a34836b5103259a26bd52d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c598835e0a34836b5103259a26bd52d.jpg", "file_size": 13962, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-137#浅黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c598835e0a34836b5103259a26bd52d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c598835e0a34836b5103259a26bd52d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c598835e0a34836b5103259a26bd52d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c598835e0a34836b5103259a26bd52d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c598835e0a34836b5103259a26bd52d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFs8-UawENT9XXeRSqncV0cTVHE=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.457116+00 2025-12-09 10:14:56.45712+00 7691 0003-334#洋红前片 SPMX-20240815302848 \N \N \N 1 \N [{"file_id": "373bc650-b65b-47d6-a2de-bdf98aaf94e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f018139e98264daeaa4b7c2bd5d56fee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f018139e98264daeaa4b7c2bd5d56fee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f018139e98264daeaa4b7c2bd5d56fee.jpg", "file_size": 17598, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#洋红前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f018139e98264daeaa4b7c2bd5d56fee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f018139e98264daeaa4b7c2bd5d56fee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f018139e98264daeaa4b7c2bd5d56fee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f018139e98264daeaa4b7c2bd5d56fee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f018139e98264daeaa4b7c2bd5d56fee.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pH_hihKQMUNqCVPW8cXRX-HZzOI=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.458613+00 2025-12-09 10:14:56.458617+00 7692 23-2112#-A16杏色领口通用 SPMX-20240815302847 \N \N \N 1 \N [{"file_id": "7bab7b15-61f7-4f69-9c6f-7f3094f6b410", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63ed525b7add4f3b8901a6fa954478bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63ed525b7add4f3b8901a6fa954478bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63ed525b7add4f3b8901a6fa954478bc.jpg", "file_size": 8093, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ed525b7add4f3b8901a6fa954478bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ed525b7add4f3b8901a6fa954478bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ed525b7add4f3b8901a6fa954478bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63ed525b7add4f3b8901a6fa954478bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63ed525b7add4f3b8901a6fa954478bc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IK15nnXntjnfls2KGpEXVM-wAGg=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.460288+00 2025-12-09 10:14:56.460292+00 7693 JTSS028# SPMX-20240815302853 \N \N \N 1 \N [{"file_id": "6c06e945-3382-4c26-afc6-704d6cb5e7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0dd76e203ad4083b1edece0aa087999.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0dd76e203ad4083b1edece0aa087999.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0dd76e203ad4083b1edece0aa087999.jpg", "file_size": 11429, "is_delete": false, "file_type": 1, "original_file_name": "JTSS028#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0dd76e203ad4083b1edece0aa087999.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0dd76e203ad4083b1edece0aa087999.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0dd76e203ad4083b1edece0aa087999.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0dd76e203ad4083b1edece0aa087999.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0dd76e203ad4083b1edece0aa087999.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZW5VaJA7Wp9wAi1GoHuoyaOqBic=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.461755+00 2025-12-09 10:14:56.46176+00 7694 LZ1238#下身2号色 SPMX-20240815302843 \N \N \N 1 \N [{"file_id": "a32ca77d-91cd-4f41-8b22-4064e1dac1fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6615b7fa6f3e4ad3a444b8979eab1bee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6615b7fa6f3e4ad3a444b8979eab1bee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6615b7fa6f3e4ad3a444b8979eab1bee.jpg", "file_size": 18889, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615b7fa6f3e4ad3a444b8979eab1bee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615b7fa6f3e4ad3a444b8979eab1bee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615b7fa6f3e4ad3a444b8979eab1bee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6615b7fa6f3e4ad3a444b8979eab1bee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6615b7fa6f3e4ad3a444b8979eab1bee.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2QFEgJfa1RlVXOTN3mJIU2TwA8=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.463237+00 2025-12-09 10:14:56.463241+00 7695 8028#浅蓝色WJC22 SPMX-20240815302855 \N \N \N 1 \N [{"file_id": "d55e0fc1-a6d9-470f-b6b3-8f3a5773363c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83121df69990450dac7c73616e1895b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83121df69990450dac7c73616e1895b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83121df69990450dac7c73616e1895b7.jpg", "file_size": 11857, "is_delete": false, "file_type": 1, "original_file_name": "8028#浅蓝色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83121df69990450dac7c73616e1895b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83121df69990450dac7c73616e1895b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83121df69990450dac7c73616e1895b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83121df69990450dac7c73616e1895b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83121df69990450dac7c73616e1895b7.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bsG_UhD_GaKDVLrAsvPqTx63qA=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.464721+00 2025-12-09 10:14:56.464725+00 7696 DKY611#WJC22番禺调色 SPMX-20240815302852 \N \N \N 1 \N [{"file_id": "090a9612-e435-49c5-b644-e14baf9d87bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "912511edb2344fbc833e89b0e1fc1ee3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "912511edb2344fbc833e89b0e1fc1ee3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "912511edb2344fbc833e89b0e1fc1ee3.jpg", "file_size": 13571, "is_delete": false, "file_type": 1, "original_file_name": "DKY611#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912511edb2344fbc833e89b0e1fc1ee3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912511edb2344fbc833e89b0e1fc1ee3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912511edb2344fbc833e89b0e1fc1ee3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/912511edb2344fbc833e89b0e1fc1ee3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/912511edb2344fbc833e89b0e1fc1ee3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qXhxqnNCjCgZYoJEWLnriokipY=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.466167+00 2025-12-09 10:14:56.466171+00 7697 JTSS027FW#VS-D3 SPMX-20240815302842 \N \N \N 1 \N [{"file_id": "fe348122-9bbb-495f-8942-fa227beec2e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c7429d9a2204fe9b34ffe40b0602377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c7429d9a2204fe9b34ffe40b0602377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c7429d9a2204fe9b34ffe40b0602377.jpg", "file_size": 11381, "is_delete": false, "file_type": 1, "original_file_name": "JTSS027FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7429d9a2204fe9b34ffe40b0602377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7429d9a2204fe9b34ffe40b0602377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7429d9a2204fe9b34ffe40b0602377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c7429d9a2204fe9b34ffe40b0602377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c7429d9a2204fe9b34ffe40b0602377.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7QPE_HgIf1x6Squ0Ka8M4HDcX0=", "createTime": "2024-08-15 14:45:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.467633+00 2025-12-09 10:14:56.467637+00 7698 FHXGPK-075-1 SPMX-20240815302846 \N \N \N 1 \N [{"file_id": "f9ae1f25-b000-4ecd-8a66-af9b559d666e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03feca0e63ce43148a304fee3efad1e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03feca0e63ce43148a304fee3efad1e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03feca0e63ce43148a304fee3efad1e0.jpg", "file_size": 30311, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-075-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03feca0e63ce43148a304fee3efad1e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03feca0e63ce43148a304fee3efad1e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03feca0e63ce43148a304fee3efad1e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03feca0e63ce43148a304fee3efad1e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03feca0e63ce43148a304fee3efad1e0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ql3OIpNaJaudFSMZ2-XZtw3MVHA=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.469338+00 2025-12-09 10:14:56.469342+00 7699 LJ018FW#VS-D3 SPMX-20240815302850 \N \N \N 1 \N [{"file_id": "15a58a68-95c8-4ccb-a43a-cea6f2de5f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdaeae5be8ff4bba8a8e0491abeac7d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdaeae5be8ff4bba8a8e0491abeac7d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdaeae5be8ff4bba8a8e0491abeac7d2.jpg", "file_size": 24182, "is_delete": false, "file_type": 1, "original_file_name": "LJ018FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaeae5be8ff4bba8a8e0491abeac7d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaeae5be8ff4bba8a8e0491abeac7d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaeae5be8ff4bba8a8e0491abeac7d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdaeae5be8ff4bba8a8e0491abeac7d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdaeae5be8ff4bba8a8e0491abeac7d2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pBGr5izyGIFJTkWy6O6Qo3eG2gY=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.470801+00 2025-12-09 10:14:56.470806+00 7700 C325#墨绿 SPMX-20240815302856 \N \N \N 1 \N [{"file_id": "50a95352-bf87-4c39-8fa5-9ee00a830e9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d26ea26d3224c6796529b10d4a9292c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d26ea26d3224c6796529b10d4a9292c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d26ea26d3224c6796529b10d4a9292c.jpg", "file_size": 27839, "is_delete": false, "file_type": 1, "original_file_name": "C325#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d26ea26d3224c6796529b10d4a9292c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d26ea26d3224c6796529b10d4a9292c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d26ea26d3224c6796529b10d4a9292c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d26ea26d3224c6796529b10d4a9292c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d26ea26d3224c6796529b10d4a9292c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-0lLw3Ut2k6QhpP03KqJCa0WNc=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.47227+00 2025-12-09 10:14:56.472274+00 7701 LJ019FW#VS-D3 SPMX-20240815302862 \N \N \N 1 \N [{"file_id": "129cf95a-7db6-476f-8b8c-9ea9c89f4df9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "495d2daa16d349c5a0b067afea50d661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "495d2daa16d349c5a0b067afea50d661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "495d2daa16d349c5a0b067afea50d661.jpg", "file_size": 16229, "is_delete": false, "file_type": 1, "original_file_name": "LJ019FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/495d2daa16d349c5a0b067afea50d661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/495d2daa16d349c5a0b067afea50d661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/495d2daa16d349c5a0b067afea50d661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/495d2daa16d349c5a0b067afea50d661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/495d2daa16d349c5a0b067afea50d661.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ObBW2UYKR-bDR0Pyhr2meZC21M=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.473737+00 2025-12-09 10:14:56.473742+00 7702 1063FWF#XL SPMX-20240815302860 \N \N \N 1 \N [{"file_id": "7f922052-f4bc-449c-bbee-8ef07488e1a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d87b5e1f5fd4752a3ddaf71107c2220.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d87b5e1f5fd4752a3ddaf71107c2220.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d87b5e1f5fd4752a3ddaf71107c2220.jpg", "file_size": 13684, "is_delete": false, "file_type": 1, "original_file_name": "1063FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87b5e1f5fd4752a3ddaf71107c2220.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87b5e1f5fd4752a3ddaf71107c2220.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87b5e1f5fd4752a3ddaf71107c2220.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d87b5e1f5fd4752a3ddaf71107c2220.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d87b5e1f5fd4752a3ddaf71107c2220.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZQwLXs_fRXy-AYc8npR8OWmxjQ=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.475462+00 2025-12-09 10:14:56.475466+00 7703 HT0101-137#绿色 SPMX-20240815302861 \N \N \N 1 \N [{"file_id": "32f7fd4b-79d5-4171-8f81-3f833d85a6b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2359e14eb114bfb8438dc49f3791a7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2359e14eb114bfb8438dc49f3791a7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2359e14eb114bfb8438dc49f3791a7f.jpg", "file_size": 14167, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-137#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2359e14eb114bfb8438dc49f3791a7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2359e14eb114bfb8438dc49f3791a7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2359e14eb114bfb8438dc49f3791a7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2359e14eb114bfb8438dc49f3791a7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2359e14eb114bfb8438dc49f3791a7f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iL5AglaZE5Oa-IbaILBmZ-W3T8c=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.476933+00 2025-12-09 10:14:56.476937+00 7704 LZ1238#下身4号色 SPMX-20240815302865 \N \N \N 1 \N [{"file_id": "92fe6a93-cbb6-4adf-a6c0-f3536754521b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a071f8bf182423eb6b7c73893e81f5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a071f8bf182423eb6b7c73893e81f5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a071f8bf182423eb6b7c73893e81f5a.jpg", "file_size": 20794, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a071f8bf182423eb6b7c73893e81f5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a071f8bf182423eb6b7c73893e81f5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a071f8bf182423eb6b7c73893e81f5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a071f8bf182423eb6b7c73893e81f5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a071f8bf182423eb6b7c73893e81f5a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f5Dd0lS6BSYflrREvuP1I-_Z01c=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.478382+00 2025-12-09 10:14:56.478386+00 7705 FHXGPK-075-2 SPMX-20240815302857 \N \N \N 1 \N [{"file_id": "e016303b-bd78-43b7-bbbf-198f6d582a99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3b9ffb0d684b2a99b91729ddd0368b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3b9ffb0d684b2a99b91729ddd0368b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3b9ffb0d684b2a99b91729ddd0368b.jpg", "file_size": 32492, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-075-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3b9ffb0d684b2a99b91729ddd0368b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3b9ffb0d684b2a99b91729ddd0368b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3b9ffb0d684b2a99b91729ddd0368b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3b9ffb0d684b2a99b91729ddd0368b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3b9ffb0d684b2a99b91729ddd0368b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gD6harLjQ2087t6aB7mikg74UTM=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.479828+00 2025-12-09 10:14:56.479832+00 7706 JTSS028FE#VS-D3 SPMX-20240815302864 \N \N \N 1 \N [{"file_id": "08593981-2944-41a6-ad66-55d87672ba87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c34f968875c74358ba55a30e958ac489.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c34f968875c74358ba55a30e958ac489.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c34f968875c74358ba55a30e958ac489.jpg", "file_size": 10346, "is_delete": false, "file_type": 1, "original_file_name": "JTSS028FE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34f968875c74358ba55a30e958ac489.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34f968875c74358ba55a30e958ac489.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34f968875c74358ba55a30e958ac489.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c34f968875c74358ba55a30e958ac489.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c34f968875c74358ba55a30e958ac489.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kZZEMTLTbaxBXnN6dkpFTpzf4s=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.481378+00 2025-12-09 10:14:56.481383+00 7707 DKY616# SPMX-20240815302863 \N \N \N 1 \N [{"file_id": "db571226-63ef-4eb7-85ae-f0bea8ddb5d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3ace34a06fb4e18b3439e6f778b575e.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3ace34a06fb4e18b3439e6f778b575e.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3ace34a06fb4e18b3439e6f778b575e.png", "file_size": 12341, "is_delete": false, "file_type": 1, "original_file_name": "DKY616#.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ace34a06fb4e18b3439e6f778b575e.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ace34a06fb4e18b3439e6f778b575e.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3ace34a06fb4e18b3439e6f778b575e.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3ace34a06fb4e18b3439e6f778b575e.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3ace34a06fb4e18b3439e6f778b575e.png?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wOKAaf045myW7Hq-Gu8g_cWxXk=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.494729+00 2025-12-09 10:14:56.494734+00 7716 1064#宝蓝 SPMX-20240815302870 \N \N \N 1 \N [{"file_id": "d47920d6-bbe9-412a-a3a2-5ad967d367f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dc945ce35e94724b974d8f6fb56d7e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dc945ce35e94724b974d8f6fb56d7e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dc945ce35e94724b974d8f6fb56d7e1.jpg", "file_size": 24709, "is_delete": false, "file_type": 1, "original_file_name": "1064#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc945ce35e94724b974d8f6fb56d7e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc945ce35e94724b974d8f6fb56d7e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc945ce35e94724b974d8f6fb56d7e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dc945ce35e94724b974d8f6fb56d7e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dc945ce35e94724b974d8f6fb56d7e1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZNmhJWTxde2MD0sbJy07IwWUTAE=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.482951+00 2025-12-09 10:14:56.482956+00 7708 8028#深蓝色WJC22 SPMX-20240815302866 \N \N \N 1 \N [{"file_id": "ee7ae512-0fde-42b4-9b27-c4c8b16e9121", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "297431ef035049a68d34176876389f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "297431ef035049a68d34176876389f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "297431ef035049a68d34176876389f74.jpg", "file_size": 11672, "is_delete": false, "file_type": 1, "original_file_name": "8028#深蓝色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297431ef035049a68d34176876389f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297431ef035049a68d34176876389f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297431ef035049a68d34176876389f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/297431ef035049a68d34176876389f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/297431ef035049a68d34176876389f74.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5Uny92mXpOz_vwbc-hkRRJ1Jqo=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.484491+00 2025-12-09 10:14:56.484495+00 7709 23-2112#-A16杏色领子通用 SPMX-20240815302858 \N \N \N 1 \N [{"file_id": "248d9df5-86f7-4148-9bed-78cea69c5571", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5537fa7655740399d5d7b3348d33175.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5537fa7655740399d5d7b3348d33175.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5537fa7655740399d5d7b3348d33175.jpg", "file_size": 10219, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16杏色领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5537fa7655740399d5d7b3348d33175.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5537fa7655740399d5d7b3348d33175.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5537fa7655740399d5d7b3348d33175.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5537fa7655740399d5d7b3348d33175.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5537fa7655740399d5d7b3348d33175.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n85wfe3Qukft13A-io_PZaYDUS0=", "createTime": "2024-08-15 14:45:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.485964+00 2025-12-09 10:14:56.485969+00 7710 0003-334#洋红条纹 SPMX-20240815302859 \N \N \N 1 \N [{"file_id": "d16930e0-3ca4-4307-95f6-bd40c822fc60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50b21144ad51484184e7d62b409185a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50b21144ad51484184e7d62b409185a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50b21144ad51484184e7d62b409185a4.jpg", "file_size": 15363, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#洋红条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b21144ad51484184e7d62b409185a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b21144ad51484184e7d62b409185a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b21144ad51484184e7d62b409185a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50b21144ad51484184e7d62b409185a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50b21144ad51484184e7d62b409185a4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RH-ja4wSGCmp0LzfESwOHaNOzGg=", "createTime": "2024-08-15 14:45:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.48742+00 2025-12-09 10:14:56.487424+00 7711 FHXGPK-075-3 SPMX-20240815302867 \N \N \N 1 \N [{"file_id": "4cd4d3e0-4d8a-436f-80fb-6e230f3e4f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72ecfbad3c14ab99e065ac83619302f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72ecfbad3c14ab99e065ac83619302f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72ecfbad3c14ab99e065ac83619302f.jpg", "file_size": 35502, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-075-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ecfbad3c14ab99e065ac83619302f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ecfbad3c14ab99e065ac83619302f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ecfbad3c14ab99e065ac83619302f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72ecfbad3c14ab99e065ac83619302f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72ecfbad3c14ab99e065ac83619302f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8XVVnUWTrIHOGibEGwBQsF9MkQo=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.488887+00 2025-12-09 10:14:56.488892+00 7712 0003-334#蓝色前片 SPMX-20240815302868 \N \N \N 1 \N [{"file_id": "5dffeb55-cd55-4a41-a89e-87870e3627e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1fd677c839845c9a9a1a623118953cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1fd677c839845c9a9a1a623118953cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1fd677c839845c9a9a1a623118953cc.jpg", "file_size": 18150, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#蓝色前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fd677c839845c9a9a1a623118953cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fd677c839845c9a9a1a623118953cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fd677c839845c9a9a1a623118953cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1fd677c839845c9a9a1a623118953cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1fd677c839845c9a9a1a623118953cc.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Td4cIkuquj30gDGrut_tpnx7LG4=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.490352+00 2025-12-09 10:14:56.490356+00 7713 C325#白色 SPMX-20240815302869 \N \N \N 1 \N [{"file_id": "9e39a30f-86f7-42e6-9cf5-1181a5d32b3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e642c2642f2545eba19d295586d1a8f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e642c2642f2545eba19d295586d1a8f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e642c2642f2545eba19d295586d1a8f7.jpg", "file_size": 27777, "is_delete": false, "file_type": 1, "original_file_name": "C325#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e642c2642f2545eba19d295586d1a8f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e642c2642f2545eba19d295586d1a8f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e642c2642f2545eba19d295586d1a8f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e642c2642f2545eba19d295586d1a8f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e642c2642f2545eba19d295586d1a8f7.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E17UbnqNLScPkzWIARV-00wVovA=", "createTime": "2024-08-15 14:45:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.491816+00 2025-12-09 10:14:56.49182+00 7714 80301#中童 SPMX-20240815302877 \N \N \N 1 \N [{"file_id": "24fa94c8-18fe-4564-b0d5-054ad734a1d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d262d66eb98c4d5abde7032854fa5517.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d262d66eb98c4d5abde7032854fa5517.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d262d66eb98c4d5abde7032854fa5517.jpg", "file_size": 16767, "is_delete": false, "file_type": 1, "original_file_name": "80301#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262d66eb98c4d5abde7032854fa5517.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262d66eb98c4d5abde7032854fa5517.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262d66eb98c4d5abde7032854fa5517.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d262d66eb98c4d5abde7032854fa5517.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d262d66eb98c4d5abde7032854fa5517.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0w1ZPQSZ8hZZt1Lub5h4RGaJKs=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.493261+00 2025-12-09 10:14:56.493264+00 7715 23-2112#-A16白色前后片4XL SPMX-20240815302885 \N \N \N 1 \N [{"file_id": "d6fce21f-d8e6-422e-8f4d-360ad31cff50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "968526f915a649528b5f4081a9c0496e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "968526f915a649528b5f4081a9c0496e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "968526f915a649528b5f4081a9c0496e.jpg", "file_size": 11385, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968526f915a649528b5f4081a9c0496e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968526f915a649528b5f4081a9c0496e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/968526f915a649528b5f4081a9c0496e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/968526f915a649528b5f4081a9c0496e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/968526f915a649528b5f4081a9c0496e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0A1kPpkZLKblod0gEmRTQuvn36M=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.496192+00 2025-12-09 10:14:56.496196+00 7717 LZ1238#加大-A1 LWQ15 SPMX-20240815302875 \N \N \N 1 \N [{"file_id": "81276394-27c5-4ad8-b85e-ba051c2b872d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0146d2e93d1421c953ce004c73bab29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0146d2e93d1421c953ce004c73bab29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0146d2e93d1421c953ce004c73bab29.jpg", "file_size": 26392, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A1 LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0146d2e93d1421c953ce004c73bab29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0146d2e93d1421c953ce004c73bab29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0146d2e93d1421c953ce004c73bab29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0146d2e93d1421c953ce004c73bab29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0146d2e93d1421c953ce004c73bab29.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nEPpwdTA3goK5EGJNTA9tJeXq4=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.49767+00 2025-12-09 10:14:56.497674+00 7718 LJ020FW#VS-D3 SPMX-20240815302872 \N \N \N 1 \N [{"file_id": "aa6453f4-4337-4677-9f48-9eb8680c3f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "146b56b13fd44dafb8a93b52189bd1e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "146b56b13fd44dafb8a93b52189bd1e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "146b56b13fd44dafb8a93b52189bd1e7.jpg", "file_size": 16627, "is_delete": false, "file_type": 1, "original_file_name": "LJ020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146b56b13fd44dafb8a93b52189bd1e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146b56b13fd44dafb8a93b52189bd1e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146b56b13fd44dafb8a93b52189bd1e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/146b56b13fd44dafb8a93b52189bd1e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/146b56b13fd44dafb8a93b52189bd1e7.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8n-s-FpUYrKBDYTssrjMDnJIIw=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.499128+00 2025-12-09 10:14:56.499133+00 7719 DKY616#斜条纹番禺调色 SPMX-20240815302876 \N \N \N 1 \N [{"file_id": "7c2df7ef-47f3-4b3f-9a63-c777ba68e1c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8449009c3c1420999ff7695978182e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8449009c3c1420999ff7695978182e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8449009c3c1420999ff7695978182e2.jpg", "file_size": 12168, "is_delete": false, "file_type": 1, "original_file_name": "DKY616#斜条纹番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8449009c3c1420999ff7695978182e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8449009c3c1420999ff7695978182e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8449009c3c1420999ff7695978182e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8449009c3c1420999ff7695978182e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8449009c3c1420999ff7695978182e2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfPB3_KPx226UajShI8I3097O7k=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.500579+00 2025-12-09 10:14:56.500583+00 7720 FHXGPK-075-4 SPMX-20240815302878 \N \N \N 1 \N [{"file_id": "407e0862-54a7-49c1-be17-6a86bf86dcdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58a51f65899b4485a832bf644b7d56c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58a51f65899b4485a832bf644b7d56c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58a51f65899b4485a832bf644b7d56c6.jpg", "file_size": 33571, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-075-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a51f65899b4485a832bf644b7d56c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a51f65899b4485a832bf644b7d56c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a51f65899b4485a832bf644b7d56c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58a51f65899b4485a832bf644b7d56c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58a51f65899b4485a832bf644b7d56c6.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h89Hys8-fyotd1qGuvVyEUqZ2S8=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.502064+00 2025-12-09 10:14:56.502068+00 7721 HT0101-137#黑色 SPMX-20240815302871 \N \N \N 1 \N [{"file_id": "3aacd2ca-970b-4a90-bcf5-ce6c110b1648", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7e3f7dfa3114c2c85b45c57f2222fc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7e3f7dfa3114c2c85b45c57f2222fc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7e3f7dfa3114c2c85b45c57f2222fc8.jpg", "file_size": 16225, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-137#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e3f7dfa3114c2c85b45c57f2222fc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e3f7dfa3114c2c85b45c57f2222fc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e3f7dfa3114c2c85b45c57f2222fc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7e3f7dfa3114c2c85b45c57f2222fc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7e3f7dfa3114c2c85b45c57f2222fc8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEOlPPX7d_OAXS37_Jk9Q4qZazc=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.503542+00 2025-12-09 10:14:56.503546+00 7722 0003-334#蓝色条纹 SPMX-20240815302879 \N \N \N 1 \N [{"file_id": "41ab9ede-af0a-4c00-a69a-49c12124c3b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fba33ca7feb4a139b348be1d42fca02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fba33ca7feb4a139b348be1d42fca02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fba33ca7feb4a139b348be1d42fca02.jpg", "file_size": 16255, "is_delete": false, "file_type": 1, "original_file_name": "0003-334#蓝色条纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fba33ca7feb4a139b348be1d42fca02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fba33ca7feb4a139b348be1d42fca02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fba33ca7feb4a139b348be1d42fca02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fba33ca7feb4a139b348be1d42fca02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fba33ca7feb4a139b348be1d42fca02.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GcuLx4EqTqKglxX0yIFqRg21Lmc=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.505055+00 2025-12-09 10:14:56.50506+00 7723 C325#绿色 SPMX-20240815302880 \N \N \N 1 \N [{"file_id": "3b887bcb-cd88-4998-b026-bcaf94d46e6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b23fca1a56e948e284d39d4790d4a178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b23fca1a56e948e284d39d4790d4a178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b23fca1a56e948e284d39d4790d4a178.jpg", "file_size": 26130, "is_delete": false, "file_type": 1, "original_file_name": "C325#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23fca1a56e948e284d39d4790d4a178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23fca1a56e948e284d39d4790d4a178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23fca1a56e948e284d39d4790d4a178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b23fca1a56e948e284d39d4790d4a178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b23fca1a56e948e284d39d4790d4a178.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gDaRwKW1_ZJQC8kOcNf9QrGvgwQ=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.506575+00 2025-12-09 10:14:56.50658+00 7724 1064#宝蓝匹布 SPMX-20240815302882 \N \N \N 1 \N [{"file_id": "d6271222-6d4e-420c-9eed-0aa69897dfb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fb04b725ab6468d8b1338b955aca9ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fb04b725ab6468d8b1338b955aca9ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fb04b725ab6468d8b1338b955aca9ae.jpg", "file_size": 20662, "is_delete": false, "file_type": 1, "original_file_name": "1064#宝蓝匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb04b725ab6468d8b1338b955aca9ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb04b725ab6468d8b1338b955aca9ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb04b725ab6468d8b1338b955aca9ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fb04b725ab6468d8b1338b955aca9ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fb04b725ab6468d8b1338b955aca9ae.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrI0FicDBfw4GYr4TYN0MwalUFw=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.508051+00 2025-12-09 10:14:56.508055+00 7725 HT0101-138#WJC22 SPMX-20240815302881 \N \N \N 1 \N [{"file_id": "870e696a-2061-44cb-9e90-afb48bc1678a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67dfb905bd014c69a408c3776d4d2c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67dfb905bd014c69a408c3776d4d2c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67dfb905bd014c69a408c3776d4d2c8e.jpg", "file_size": 18110, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-138#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67dfb905bd014c69a408c3776d4d2c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67dfb905bd014c69a408c3776d4d2c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67dfb905bd014c69a408c3776d4d2c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67dfb905bd014c69a408c3776d4d2c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67dfb905bd014c69a408c3776d4d2c8e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWpwJvG5gliam6xuIX6oCFXBjV8=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.509621+00 2025-12-09 10:14:56.509626+00 7726 23-2112#-A16白色前后片3XL SPMX-20240815302874 \N \N \N 1 \N [{"file_id": "823603d7-7f12-43c2-8ec1-0c5af6ce4139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a997ff8c2cdc4a789476ca4178d78726.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a997ff8c2cdc4a789476ca4178d78726.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a997ff8c2cdc4a789476ca4178d78726.jpg", "file_size": 11056, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a997ff8c2cdc4a789476ca4178d78726.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a997ff8c2cdc4a789476ca4178d78726.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a997ff8c2cdc4a789476ca4178d78726.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a997ff8c2cdc4a789476ca4178d78726.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a997ff8c2cdc4a789476ca4178d78726.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOCMyWSZmN6qIN8I_aNt3QDv0h4=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.511266+00 2025-12-09 10:14:56.51127+00 7727 JTSS028FW#VS-D3 SPMX-20240815302884 \N \N \N 1 \N [{"file_id": "dbd66f61-07a6-4c5b-8212-5ec343035fa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aee57327434542dca2f3e8da48028af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aee57327434542dca2f3e8da48028af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aee57327434542dca2f3e8da48028af1.jpg", "file_size": 10497, "is_delete": false, "file_type": 1, "original_file_name": "JTSS028FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee57327434542dca2f3e8da48028af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee57327434542dca2f3e8da48028af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee57327434542dca2f3e8da48028af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aee57327434542dca2f3e8da48028af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aee57327434542dca2f3e8da48028af1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HehvcbJ1D2TpiHghFnEdPlQ59_s=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.512868+00 2025-12-09 10:14:56.512873+00 7728 JTSS028FW#VS-D2 SPMX-20240815302873 \N \N \N 1 \N [{"file_id": "a98d556f-25ba-4d84-8e0e-c653ef6c0f11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4cb18730e34441cbd0417c283de416c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4cb18730e34441cbd0417c283de416c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4cb18730e34441cbd0417c283de416c.jpg", "file_size": 10120, "is_delete": false, "file_type": 1, "original_file_name": "JTSS028FW#VS-D2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb18730e34441cbd0417c283de416c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb18730e34441cbd0417c283de416c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb18730e34441cbd0417c283de416c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4cb18730e34441cbd0417c283de416c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4cb18730e34441cbd0417c283de416c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjWwlPJXvjTZtZwwANPqBAV1u74=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.514501+00 2025-12-09 10:14:56.514506+00 7729 LJ021FWFW#红底白红花 SPMX-20240815302883 \N \N \N 1 \N [{"file_id": "18495f74-0a6d-426b-9c2d-3ecf076a1b0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb84419a84fc4c8eaad3181680804986.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb84419a84fc4c8eaad3181680804986.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb84419a84fc4c8eaad3181680804986.jpg", "file_size": 16703, "is_delete": false, "file_type": 1, "original_file_name": "LJ021FWFW#红底白红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb84419a84fc4c8eaad3181680804986.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb84419a84fc4c8eaad3181680804986.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb84419a84fc4c8eaad3181680804986.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb84419a84fc4c8eaad3181680804986.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb84419a84fc4c8eaad3181680804986.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGgcU6B70QAn_jyUmKVQ78VsNMw=", "createTime": "2024-08-15 14:45:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.516134+00 2025-12-09 10:14:56.516138+00 7730 DL SPMX-20240815302887 \N \N \N 1 \N [{"file_id": "be1a8f00-db2e-4c0f-8445-b68680b476b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82d673ff8fac45749f29fdf9f6582147.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82d673ff8fac45749f29fdf9f6582147.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82d673ff8fac45749f29fdf9f6582147.jpg", "file_size": 15597, "is_delete": false, "file_type": 1, "original_file_name": "DL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d673ff8fac45749f29fdf9f6582147.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d673ff8fac45749f29fdf9f6582147.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d673ff8fac45749f29fdf9f6582147.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82d673ff8fac45749f29fdf9f6582147.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82d673ff8fac45749f29fdf9f6582147.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvOJPtfM6qjROKX7RFbSYwLxPz4=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.517996+00 2025-12-09 10:14:56.518001+00 7731 23-2112#-A16白色袖子3XL SPMX-20240815302891 \N \N \N 1 \N [{"file_id": "23e96888-7a52-43e7-a9f4-94a0b83b94b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "269b355f9ca54c00a2b4d4481b376142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "269b355f9ca54c00a2b4d4481b376142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "269b355f9ca54c00a2b4d4481b376142.jpg", "file_size": 8212, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b355f9ca54c00a2b4d4481b376142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b355f9ca54c00a2b4d4481b376142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269b355f9ca54c00a2b4d4481b376142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/269b355f9ca54c00a2b4d4481b376142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/269b355f9ca54c00a2b4d4481b376142.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cF1hI5IV1R1XRchcR4kdziQKAfU=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.519779+00 2025-12-09 10:14:56.519784+00 7732 C325#黑色 SPMX-20240815302889 \N \N \N 1 \N [{"file_id": "4e8cd2b5-15d6-4bad-aaca-27a6cfa588d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58c397fcc9284fda99c1cbfaeaae620d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58c397fcc9284fda99c1cbfaeaae620d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58c397fcc9284fda99c1cbfaeaae620d.jpg", "file_size": 28300, "is_delete": false, "file_type": 1, "original_file_name": "C325#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c397fcc9284fda99c1cbfaeaae620d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c397fcc9284fda99c1cbfaeaae620d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58c397fcc9284fda99c1cbfaeaae620d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58c397fcc9284fda99c1cbfaeaae620d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58c397fcc9284fda99c1cbfaeaae620d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3ZMW1xd8UqvfDP0XP3tkxe7SZU=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.521393+00 2025-12-09 10:14:56.521398+00 7733 HT0101-139#WJC22 SPMX-20240815302890 \N \N \N 1 \N [{"file_id": "aedc3648-3180-4e0f-ae66-dadb9e4a5a22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bdd8a8d4500494989e94de9a8e26acb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bdd8a8d4500494989e94de9a8e26acb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bdd8a8d4500494989e94de9a8e26acb.jpg", "file_size": 26168, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-139#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdd8a8d4500494989e94de9a8e26acb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdd8a8d4500494989e94de9a8e26acb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bdd8a8d4500494989e94de9a8e26acb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bdd8a8d4500494989e94de9a8e26acb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bdd8a8d4500494989e94de9a8e26acb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnOq8mcaErS7JZ0z_AHd_8yCALs=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.523099+00 2025-12-09 10:14:56.523105+00 7734 LZ1238#加大-A2 LWQ15 SPMX-20240815302886 \N \N \N 1 \N [{"file_id": "39dd9832-8ba0-4458-bcce-fd8c9a7bb721", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f16f3ee77254815993f559778499e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f16f3ee77254815993f559778499e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f16f3ee77254815993f559778499e7a.jpg", "file_size": 26096, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A2 LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f16f3ee77254815993f559778499e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f16f3ee77254815993f559778499e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f16f3ee77254815993f559778499e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f16f3ee77254815993f559778499e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f16f3ee77254815993f559778499e7a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:riFsblrpRs7K5-n3AO-wWmhizPE=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.524948+00 2025-12-09 10:14:56.524953+00 7735 LJ022FWFW#黑底红花 SPMX-20240815302888 \N \N \N 1 \N [{"file_id": "96cf714b-8d07-4995-a2d0-97cd342ee3e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f5ae6d67ba440728294a87d544cb1ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f5ae6d67ba440728294a87d544cb1ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f5ae6d67ba440728294a87d544cb1ba.jpg", "file_size": 18514, "is_delete": false, "file_type": 1, "original_file_name": "LJ022FWFW#黑底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5ae6d67ba440728294a87d544cb1ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5ae6d67ba440728294a87d544cb1ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5ae6d67ba440728294a87d544cb1ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f5ae6d67ba440728294a87d544cb1ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f5ae6d67ba440728294a87d544cb1ba.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJFd_Mri7BPDdSj6ULXl6U1zohw=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.526579+00 2025-12-09 10:14:56.526584+00 7736 1064#宝蓝袖子 SPMX-20240815302895 \N \N \N 1 \N [{"file_id": "0cb8b57c-4aa2-4467-9267-85a316a8040e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecaf33e0a088491b9a8a9fb044cb721c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecaf33e0a088491b9a8a9fb044cb721c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecaf33e0a088491b9a8a9fb044cb721c.jpg", "file_size": 14269, "is_delete": false, "file_type": 1, "original_file_name": "1064#宝蓝袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf33e0a088491b9a8a9fb044cb721c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf33e0a088491b9a8a9fb044cb721c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf33e0a088491b9a8a9fb044cb721c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecaf33e0a088491b9a8a9fb044cb721c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecaf33e0a088491b9a8a9fb044cb721c.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4u-bWDnYWhi4o59KxtoMjO8iGOM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.528211+00 2025-12-09 10:14:56.528216+00 7737 0003-335#深蓝 SPMX-20240815302896 \N \N \N 1 \N [{"file_id": "5d1abccf-2625-49f0-97fd-fe722a5add1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49d0a45dcde047959dc4156ca6fc6324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49d0a45dcde047959dc4156ca6fc6324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49d0a45dcde047959dc4156ca6fc6324.jpg", "file_size": 14884, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d0a45dcde047959dc4156ca6fc6324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d0a45dcde047959dc4156ca6fc6324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d0a45dcde047959dc4156ca6fc6324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49d0a45dcde047959dc4156ca6fc6324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49d0a45dcde047959dc4156ca6fc6324.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVDlOvDga2-pEnqVRR5X6XevydQ=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.530076+00 2025-12-09 10:14:56.530081+00 7738 FHXGPK-076-1 SPMX-20240815302903 \N \N \N 1 \N [{"file_id": "d49e5328-c52f-47f4-9262-f19b7948a42c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "564f848c2725495c8874b960504dafc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "564f848c2725495c8874b960504dafc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "564f848c2725495c8874b960504dafc0.jpg", "file_size": 33073, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-076-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564f848c2725495c8874b960504dafc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564f848c2725495c8874b960504dafc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/564f848c2725495c8874b960504dafc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/564f848c2725495c8874b960504dafc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/564f848c2725495c8874b960504dafc0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDQBYojpq1hTTKJaWv1FU5qiIJo=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.53197+00 2025-12-09 10:14:56.531975+00 7739 JTSS029# SPMX-20240815302893 \N \N \N 1 \N [{"file_id": "80e67532-5f8a-472a-85f9-cc753f9482ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97a4a69f08de4a00976dfc9248aa9d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97a4a69f08de4a00976dfc9248aa9d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97a4a69f08de4a00976dfc9248aa9d15.jpg", "file_size": 16234, "is_delete": false, "file_type": 1, "original_file_name": "JTSS029#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a4a69f08de4a00976dfc9248aa9d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a4a69f08de4a00976dfc9248aa9d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a4a69f08de4a00976dfc9248aa9d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97a4a69f08de4a00976dfc9248aa9d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97a4a69f08de4a00976dfc9248aa9d15.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-VTzWtVWBBGN9O-U2IYuJzOmxk=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.533589+00 2025-12-09 10:14:56.533594+00 7740 80301#小童 SPMX-20240815302894 \N \N \N 1 \N [{"file_id": "9e399cbf-1fd9-4cb7-bcc5-980cc74b9e69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36a2429cdc7e4834a8fde5f78510f6ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36a2429cdc7e4834a8fde5f78510f6ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36a2429cdc7e4834a8fde5f78510f6ec.jpg", "file_size": 18173, "is_delete": false, "file_type": 1, "original_file_name": "80301#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36a2429cdc7e4834a8fde5f78510f6ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36a2429cdc7e4834a8fde5f78510f6ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36a2429cdc7e4834a8fde5f78510f6ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36a2429cdc7e4834a8fde5f78510f6ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36a2429cdc7e4834a8fde5f78510f6ec.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0AS_KXHSWJvxTLA2Id6VPecwcM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.535213+00 2025-12-09 10:14:56.535218+00 7741 LZ1238#加大-A3 LWQ15 SPMX-20240815302897 \N \N \N 1 \N [{"file_id": "77bb6bc4-dd01-421c-916c-60b3e72f66c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "744d3f0d299b4255911ff55d8741b87d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "744d3f0d299b4255911ff55d8741b87d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "744d3f0d299b4255911ff55d8741b87d.jpg", "file_size": 29809, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A3 LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744d3f0d299b4255911ff55d8741b87d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744d3f0d299b4255911ff55d8741b87d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744d3f0d299b4255911ff55d8741b87d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/744d3f0d299b4255911ff55d8741b87d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/744d3f0d299b4255911ff55d8741b87d.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RKeqEEmKgrQ4gyQjGOzz_FHqwM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.537015+00 2025-12-09 10:14:56.53702+00 7742 C326#原版绿 SPMX-20240815302899 \N \N \N 1 \N [{"file_id": "5cf5a46e-73c3-4c66-924b-291ce438d1bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6202cf8979144d88902ccc30631fda8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6202cf8979144d88902ccc30631fda8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6202cf8979144d88902ccc30631fda8.jpg", "file_size": 10481, "is_delete": false, "file_type": 1, "original_file_name": "C326#原版绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6202cf8979144d88902ccc30631fda8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6202cf8979144d88902ccc30631fda8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6202cf8979144d88902ccc30631fda8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6202cf8979144d88902ccc30631fda8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6202cf8979144d88902ccc30631fda8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjerLlkgF-iv90d2c2o0h_faJYM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.538656+00 2025-12-09 10:14:56.538661+00 7743 DL10#A2 SPMX-20240815302900 \N \N \N 1 \N [{"file_id": "09736a5d-a2a8-4579-a1ca-d6fff8da01bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a66d98873fa451792607af8b601f0bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a66d98873fa451792607af8b601f0bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a66d98873fa451792607af8b601f0bb.jpg", "file_size": 57171, "is_delete": false, "file_type": 1, "original_file_name": "DL10#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a66d98873fa451792607af8b601f0bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a66d98873fa451792607af8b601f0bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a66d98873fa451792607af8b601f0bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a66d98873fa451792607af8b601f0bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a66d98873fa451792607af8b601f0bb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXRy48w2Sn4HzGYuETBKjed0C3k=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.540592+00 2025-12-09 10:14:56.540598+00 7744 LJ023FWFW#宝蓝 SPMX-20240815302898 \N \N \N 1 \N [{"file_id": "f72590dc-83a6-4b77-a8e8-4bb8a6f03a74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62ee9a4d917a4619b11684584f052275.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62ee9a4d917a4619b11684584f052275.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62ee9a4d917a4619b11684584f052275.jpg", "file_size": 17215, "is_delete": false, "file_type": 1, "original_file_name": "LJ023FWFW#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ee9a4d917a4619b11684584f052275.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ee9a4d917a4619b11684584f052275.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ee9a4d917a4619b11684584f052275.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62ee9a4d917a4619b11684584f052275.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62ee9a4d917a4619b11684584f052275.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMWfe-dZbciD8EtkJGZAgE-CBhM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.542167+00 2025-12-09 10:14:56.542171+00 7745 HT0101-14#WJC22 SPMX-20240815302902 \N \N \N 1 \N [{"file_id": "ee2e929d-3bd0-4dab-9695-cb4d891c492a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56e83d5f5cc2484d80d0bf00cc27e967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56e83d5f5cc2484d80d0bf00cc27e967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56e83d5f5cc2484d80d0bf00cc27e967.jpg", "file_size": 26764, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-14#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e83d5f5cc2484d80d0bf00cc27e967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e83d5f5cc2484d80d0bf00cc27e967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e83d5f5cc2484d80d0bf00cc27e967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56e83d5f5cc2484d80d0bf00cc27e967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56e83d5f5cc2484d80d0bf00cc27e967.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:em79FHQK5dlzQeubG0BmNcEj88w=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.543638+00 2025-12-09 10:14:56.543642+00 7746 FHXGPK-075-5 SPMX-20240815302892 \N \N \N 1 \N [{"file_id": "29c22422-40a7-422e-b289-0bbd68e04e09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e37818cbebfe47e6890eb8f8be474c42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e37818cbebfe47e6890eb8f8be474c42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e37818cbebfe47e6890eb8f8be474c42.jpg", "file_size": 34505, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-075-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37818cbebfe47e6890eb8f8be474c42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37818cbebfe47e6890eb8f8be474c42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37818cbebfe47e6890eb8f8be474c42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e37818cbebfe47e6890eb8f8be474c42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e37818cbebfe47e6890eb8f8be474c42.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tmZs3kKVLi-OTYG7BJnYCPQ1PQU=", "createTime": "2024-08-15 14:45:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.545168+00 2025-12-09 10:14:56.545172+00 7747 23-2112#-A16白色袖子4XL SPMX-20240815302901 \N \N \N 1 \N [{"file_id": "688afde7-2272-47f2-ab8d-8b2052f0a680", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg", "file_size": 8212, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02b3bf440bde4efeabfc3d3bf1ec4dc3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sxqbZjgzDbH-a0lN1n8A94o9HiY=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.546653+00 2025-12-09 10:14:56.546657+00 7748 C326#墨绿 SPMX-20240815302913 \N \N \N 1 \N [{"file_id": "21a66428-e4b4-4865-a66c-6befa1deb634", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "056bc7be0a4d42e18d1db0406fe8cf0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "056bc7be0a4d42e18d1db0406fe8cf0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "056bc7be0a4d42e18d1db0406fe8cf0a.jpg", "file_size": 13216, "is_delete": false, "file_type": 1, "original_file_name": "C326#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056bc7be0a4d42e18d1db0406fe8cf0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056bc7be0a4d42e18d1db0406fe8cf0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056bc7be0a4d42e18d1db0406fe8cf0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/056bc7be0a4d42e18d1db0406fe8cf0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/056bc7be0a4d42e18d1db0406fe8cf0a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mshZmePRUfCGy4HmgFd7FYRBrCw=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.548147+00 2025-12-09 10:14:56.548151+00 7749 JTSS029FW#VS-D3 SPMX-20240815302904 \N \N \N 1 \N [{"file_id": "626e29d0-4b69-4e73-89f0-4badb2850ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44bfb1a76e77478c8e9b913ca07ad3fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44bfb1a76e77478c8e9b913ca07ad3fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44bfb1a76e77478c8e9b913ca07ad3fb.jpg", "file_size": 7157, "is_delete": false, "file_type": 1, "original_file_name": "JTSS029FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bfb1a76e77478c8e9b913ca07ad3fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bfb1a76e77478c8e9b913ca07ad3fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bfb1a76e77478c8e9b913ca07ad3fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44bfb1a76e77478c8e9b913ca07ad3fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44bfb1a76e77478c8e9b913ca07ad3fb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GfuGPcJOe_-0LIMCRYPdeUquGoM=", "createTime": "2024-08-15 14:45:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.549619+00 2025-12-09 10:14:56.549623+00 7750 80302#上衣 SPMX-20240815302905 \N \N \N 1 \N [{"file_id": "4e960ba0-1325-40d9-a767-1dc2ab6f35a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b994f72e4d964f818b27d96fdc2f7567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b994f72e4d964f818b27d96fdc2f7567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b994f72e4d964f818b27d96fdc2f7567.jpg", "file_size": 17928, "is_delete": false, "file_type": 1, "original_file_name": "80302#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b994f72e4d964f818b27d96fdc2f7567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b994f72e4d964f818b27d96fdc2f7567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b994f72e4d964f818b27d96fdc2f7567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b994f72e4d964f818b27d96fdc2f7567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b994f72e4d964f818b27d96fdc2f7567.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ALCxyEFruAmaVLCkHrUG_6ihcs=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.551103+00 2025-12-09 10:14:56.551107+00 7751 LZ1238#加大-A4 SPMX-20240815302911 \N \N \N 1 \N [{"file_id": "fc23ca4d-0807-4f12-b604-87dbd88c34c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94fa448c05a54d47af64ca3eec01213b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94fa448c05a54d47af64ca3eec01213b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94fa448c05a54d47af64ca3eec01213b.jpg", "file_size": 27662, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fa448c05a54d47af64ca3eec01213b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fa448c05a54d47af64ca3eec01213b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94fa448c05a54d47af64ca3eec01213b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94fa448c05a54d47af64ca3eec01213b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94fa448c05a54d47af64ca3eec01213b.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54koVuN9ZmnK1H6i3GWiU-5B8Wg=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.552607+00 2025-12-09 10:14:56.552611+00 7752 0003-335#粉色 SPMX-20240815302907 \N \N \N 1 \N [{"file_id": "8ed09991-4e81-4fca-b4cf-cb024dda1672", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a746ab4743f74038b11c8181acde6420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a746ab4743f74038b11c8181acde6420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a746ab4743f74038b11c8181acde6420.jpg", "file_size": 15060, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a746ab4743f74038b11c8181acde6420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a746ab4743f74038b11c8181acde6420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a746ab4743f74038b11c8181acde6420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a746ab4743f74038b11c8181acde6420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a746ab4743f74038b11c8181acde6420.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DK3AAsk4q55GUDdZxblZaOQrrhY=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.554084+00 2025-12-09 10:14:56.554088+00 7753 LJ024FW#黑 SPMX-20240815302908 \N \N \N 1 \N [{"file_id": "564ee072-7152-400c-91ea-8b3f0a7458cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a152ae13a80441898d1256b4f1ebabc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a152ae13a80441898d1256b4f1ebabc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a152ae13a80441898d1256b4f1ebabc5.jpg", "file_size": 15585, "is_delete": false, "file_type": 1, "original_file_name": "LJ024FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a152ae13a80441898d1256b4f1ebabc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a152ae13a80441898d1256b4f1ebabc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a152ae13a80441898d1256b4f1ebabc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a152ae13a80441898d1256b4f1ebabc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a152ae13a80441898d1256b4f1ebabc5.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5RoTaDsUxwq49oHwPTbk4Ogsvs=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.555549+00 2025-12-09 10:14:56.555554+00 7754 23-2112#-A16白色领口通用 SPMX-20240815302909 \N \N \N 1 \N [{"file_id": "593bd554-7767-405b-884b-1efea3f8b049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dc61b7c227c438baaeb045e6cd04136.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dc61b7c227c438baaeb045e6cd04136.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dc61b7c227c438baaeb045e6cd04136.jpg", "file_size": 8159, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc61b7c227c438baaeb045e6cd04136.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc61b7c227c438baaeb045e6cd04136.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc61b7c227c438baaeb045e6cd04136.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dc61b7c227c438baaeb045e6cd04136.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dc61b7c227c438baaeb045e6cd04136.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QE4Rfi_ONQEdS0Qx5PAvkOu-Kqk=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.557049+00 2025-12-09 10:14:56.557053+00 7755 1064#灰色 SPMX-20240815302906 \N \N \N 1 \N [{"file_id": "8933e4c6-f48f-4e18-a70b-62648e3f3945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e066256f80394ad08f8b924219c280f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e066256f80394ad08f8b924219c280f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e066256f80394ad08f8b924219c280f5.jpg", "file_size": 16178, "is_delete": false, "file_type": 1, "original_file_name": "1064#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e066256f80394ad08f8b924219c280f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e066256f80394ad08f8b924219c280f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e066256f80394ad08f8b924219c280f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e066256f80394ad08f8b924219c280f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e066256f80394ad08f8b924219c280f5.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9_bfegBq04_966RLApXw_02UQ0=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.55855+00 2025-12-09 10:14:56.558555+00 7756 HT0101-140#WJC22 SPMX-20240815302910 \N \N \N 1 \N [{"file_id": "2255f053-12b7-48be-a210-a0d2b2902dde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc2fe93834b744d28d83a2819d6a6880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc2fe93834b744d28d83a2819d6a6880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc2fe93834b744d28d83a2819d6a6880.jpg", "file_size": 12435, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-140#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2fe93834b744d28d83a2819d6a6880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2fe93834b744d28d83a2819d6a6880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2fe93834b744d28d83a2819d6a6880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc2fe93834b744d28d83a2819d6a6880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc2fe93834b744d28d83a2819d6a6880.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdqGe-l6SWwHvlcwqUY-ziK9lCE=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.560017+00 2025-12-09 10:14:56.560021+00 7757 DL1080#A1 SPMX-20240815302912 \N \N \N 1 \N [{"file_id": "c7a0b723-fccc-4547-884a-04fcb89caec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02402cf76264450fbdda70f97e08c80f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02402cf76264450fbdda70f97e08c80f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02402cf76264450fbdda70f97e08c80f.jpg", "file_size": 15065, "is_delete": false, "file_type": 1, "original_file_name": "DL1080#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02402cf76264450fbdda70f97e08c80f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02402cf76264450fbdda70f97e08c80f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02402cf76264450fbdda70f97e08c80f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02402cf76264450fbdda70f97e08c80f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02402cf76264450fbdda70f97e08c80f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-m-Ei3ysK3dJO6M8TFCvZnZcRHY=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.561487+00 2025-12-09 10:14:56.561492+00 7758 0003-335#紫色老鼠前片 SPMX-20240815302926 \N \N \N 1 \N [{"file_id": "ff093a73-a15f-4645-be56-bf8b6b8caf1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d9ddc13bed4460db36f766a8cef9b88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d9ddc13bed4460db36f766a8cef9b88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d9ddc13bed4460db36f766a8cef9b88.jpg", "file_size": 16701, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#紫色老鼠前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9ddc13bed4460db36f766a8cef9b88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9ddc13bed4460db36f766a8cef9b88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9ddc13bed4460db36f766a8cef9b88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d9ddc13bed4460db36f766a8cef9b88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d9ddc13bed4460db36f766a8cef9b88.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxkmFseSLH01NFe_JobHu7RDuyI=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.562972+00 2025-12-09 10:14:56.562976+00 7759 JTSS030#红 SPMX-20240815302915 \N \N \N 1 \N [{"file_id": "08383727-0713-4e7c-bebc-fa72f18d7a66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1c64198c0bc495ca481b3adf16fbdf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1c64198c0bc495ca481b3adf16fbdf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1c64198c0bc495ca481b3adf16fbdf8.jpg", "file_size": 25724, "is_delete": false, "file_type": 1, "original_file_name": "JTSS030#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c64198c0bc495ca481b3adf16fbdf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c64198c0bc495ca481b3adf16fbdf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c64198c0bc495ca481b3adf16fbdf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1c64198c0bc495ca481b3adf16fbdf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1c64198c0bc495ca481b3adf16fbdf8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMR15NAGoqS0_7tfeBeYfpk3L98=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.564468+00 2025-12-09 10:14:56.564472+00 7760 FHXGPK-076-2 SPMX-20240815302914 \N \N \N 1 \N [{"file_id": "cd99a511-1a19-4e96-966b-993f2e83f6f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f94095f6e774f02ad6a70c1754e36e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f94095f6e774f02ad6a70c1754e36e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f94095f6e774f02ad6a70c1754e36e8.jpg", "file_size": 35260, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-076-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f94095f6e774f02ad6a70c1754e36e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f94095f6e774f02ad6a70c1754e36e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f94095f6e774f02ad6a70c1754e36e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f94095f6e774f02ad6a70c1754e36e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f94095f6e774f02ad6a70c1754e36e8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftOJb94xGIL8GtdSAH4tl2afgQ8=", "createTime": "2024-08-15 14:45:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.566322+00 2025-12-09 10:14:56.566327+00 7761 0003-335#紫色 SPMX-20240815302916 \N \N \N 1 \N [{"file_id": "08b6a971-23e8-4e55-9240-5490e7e11dc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1856a1138b543f3b17595b3287143ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1856a1138b543f3b17595b3287143ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1856a1138b543f3b17595b3287143ab.jpg", "file_size": 12907, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1856a1138b543f3b17595b3287143ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1856a1138b543f3b17595b3287143ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1856a1138b543f3b17595b3287143ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1856a1138b543f3b17595b3287143ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1856a1138b543f3b17595b3287143ab.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8GIUjcmci4gEysji6-A_owaQ6R0=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.567939+00 2025-12-09 10:14:56.567945+00 7762 80302#中童 SPMX-20240815302918 \N \N \N 1 \N [{"file_id": "5f2e181e-ada6-4e28-9da4-69866661e2e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b21a8d7a84d46139275cc2f0b92ad0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b21a8d7a84d46139275cc2f0b92ad0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b21a8d7a84d46139275cc2f0b92ad0f.jpg", "file_size": 18256, "is_delete": false, "file_type": 1, "original_file_name": "80302#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b21a8d7a84d46139275cc2f0b92ad0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b21a8d7a84d46139275cc2f0b92ad0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b21a8d7a84d46139275cc2f0b92ad0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b21a8d7a84d46139275cc2f0b92ad0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b21a8d7a84d46139275cc2f0b92ad0f.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lpj33xpH2MTSHfrS67KI3KVYeA4=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.569579+00 2025-12-09 10:14:56.569583+00 7763 LZ1238#加大-A5 SPMX-20240815302922 \N \N \N 1 \N [{"file_id": "1cd01671-d1b7-4a07-802c-0e285cdc753c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "931693dff23a4e639096607758e34854.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "931693dff23a4e639096607758e34854.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "931693dff23a4e639096607758e34854.jpg", "file_size": 24222, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931693dff23a4e639096607758e34854.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931693dff23a4e639096607758e34854.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931693dff23a4e639096607758e34854.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/931693dff23a4e639096607758e34854.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/931693dff23a4e639096607758e34854.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:89ov6-Fa75NuKGoMxSFUr3EguZ8=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.571429+00 2025-12-09 10:14:56.571434+00 7764 C326#大白兰花 SPMX-20240815302924 \N \N \N 1 \N [{"file_id": "df6cd540-4f95-4781-b3a3-9335e152f65e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c93aecbb22043ba9681fdd2270e0af0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c93aecbb22043ba9681fdd2270e0af0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c93aecbb22043ba9681fdd2270e0af0.jpg", "file_size": 11714, "is_delete": false, "file_type": 1, "original_file_name": "C326#大白兰花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c93aecbb22043ba9681fdd2270e0af0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c93aecbb22043ba9681fdd2270e0af0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c93aecbb22043ba9681fdd2270e0af0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c93aecbb22043ba9681fdd2270e0af0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c93aecbb22043ba9681fdd2270e0af0.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KB8nDRql9P9IyFL2Sao1P6ryEUo=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.573247+00 2025-12-09 10:14:56.573252+00 7765 DL1080#A1净色 SPMX-20240815302923 \N \N \N 1 \N [{"file_id": "ac78699c-c214-4079-acda-90df56d9acf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c7a90c25a9416a8cf0f7a712f3af2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c7a90c25a9416a8cf0f7a712f3af2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c7a90c25a9416a8cf0f7a712f3af2e.jpg", "file_size": 15028, "is_delete": false, "file_type": 1, "original_file_name": "DL1080#A1净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7a90c25a9416a8cf0f7a712f3af2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7a90c25a9416a8cf0f7a712f3af2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c7a90c25a9416a8cf0f7a712f3af2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c7a90c25a9416a8cf0f7a712f3af2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c7a90c25a9416a8cf0f7a712f3af2e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJwo-gtaiW8Jpo9X4RnSFtjNAYQ=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.574915+00 2025-12-09 10:14:56.57492+00 7766 23-2112#-A16白色领子通用 SPMX-20240815302920 \N \N \N 1 \N [{"file_id": "509bf57d-0515-4f75-9b91-76ad15ae9a73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77f382fca41142f39e9800898940633a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77f382fca41142f39e9800898940633a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77f382fca41142f39e9800898940633a.jpg", "file_size": 10596, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16白色领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f382fca41142f39e9800898940633a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f382fca41142f39e9800898940633a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f382fca41142f39e9800898940633a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77f382fca41142f39e9800898940633a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77f382fca41142f39e9800898940633a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nSS4ynbiJQgHcIAVf8A8WdY4EHY=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.576536+00 2025-12-09 10:14:56.576541+00 7767 HT0101-141#红色 SPMX-20240815302921 \N \N \N 1 \N [{"file_id": "9260e39e-04ef-4cc8-9c5b-cb6de4fb6dbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1622bbc38b944f39a6b444c7b39babc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1622bbc38b944f39a6b444c7b39babc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1622bbc38b944f39a6b444c7b39babc2.jpg", "file_size": 20919, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-141#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1622bbc38b944f39a6b444c7b39babc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1622bbc38b944f39a6b444c7b39babc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1622bbc38b944f39a6b444c7b39babc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1622bbc38b944f39a6b444c7b39babc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1622bbc38b944f39a6b444c7b39babc2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwRPOEHWkF2PwwgK3Lerb6S-dB4=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.578429+00 2025-12-09 10:14:56.578434+00 7768 1064#灰色匹布 SPMX-20240815302917 \N \N \N 1 \N [{"file_id": "6be1a20c-25d6-41ae-9b2b-79f24833d1a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ed4aaba7a7b40f38256d99e4c96e276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ed4aaba7a7b40f38256d99e4c96e276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ed4aaba7a7b40f38256d99e4c96e276.jpg", "file_size": 12335, "is_delete": false, "file_type": 1, "original_file_name": "1064#灰色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ed4aaba7a7b40f38256d99e4c96e276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ed4aaba7a7b40f38256d99e4c96e276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ed4aaba7a7b40f38256d99e4c96e276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ed4aaba7a7b40f38256d99e4c96e276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ed4aaba7a7b40f38256d99e4c96e276.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACpDmc-OCWfbVurXwhKLuGmsrgU=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.580365+00 2025-12-09 10:14:56.58037+00 7769 LJ025FW#VS-D3 SPMX-20240815302919 \N \N \N 1 \N [{"file_id": "2848075b-ea52-4014-bdbf-16a21f206f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f685975dc3d442b296f139f80f834676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f685975dc3d442b296f139f80f834676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f685975dc3d442b296f139f80f834676.jpg", "file_size": 22950, "is_delete": false, "file_type": 1, "original_file_name": "LJ025FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f685975dc3d442b296f139f80f834676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f685975dc3d442b296f139f80f834676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f685975dc3d442b296f139f80f834676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f685975dc3d442b296f139f80f834676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f685975dc3d442b296f139f80f834676.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jG-HrKXzzMl6l85aO2lzKe8Vy8w=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.582003+00 2025-12-09 10:14:56.582008+00 7770 FHXGPK-076-3 SPMX-20240815302925 \N \N \N 1 \N [{"file_id": "10514ed9-9c1e-41ef-a806-eab72d88dae1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18dd132d3d7c4472987d6acf48c19ec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18dd132d3d7c4472987d6acf48c19ec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18dd132d3d7c4472987d6acf48c19ec9.jpg", "file_size": 33973, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-076-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd132d3d7c4472987d6acf48c19ec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd132d3d7c4472987d6acf48c19ec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18dd132d3d7c4472987d6acf48c19ec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18dd132d3d7c4472987d6acf48c19ec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18dd132d3d7c4472987d6acf48c19ec9.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhQUeYg0xXvBwSdn-OPcQ6q27pY=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.583654+00 2025-12-09 10:14:56.583659+00 7771 LZ1238#加大-A6 SPMX-20240815302932 \N \N \N 1 \N [{"file_id": "af87c98f-8ff7-4365-bbca-26e2770d7755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c582d2463164907906b7727940e7b25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c582d2463164907906b7727940e7b25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c582d2463164907906b7727940e7b25.jpg", "file_size": 23491, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c582d2463164907906b7727940e7b25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c582d2463164907906b7727940e7b25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c582d2463164907906b7727940e7b25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c582d2463164907906b7727940e7b25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c582d2463164907906b7727940e7b25.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DoKlnGV2s5UJ8g6-cVp_uUIA3-g=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.585526+00 2025-12-09 10:14:56.585531+00 7772 HT0101-142#WJC22 SPMX-20240815302934 \N \N \N 1 \N [{"file_id": "15d14d29-7a77-4fa3-ab5e-a1750e8529c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f5232bd97c54dd2a9506ead136063c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f5232bd97c54dd2a9506ead136063c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f5232bd97c54dd2a9506ead136063c1.jpg", "file_size": 20488, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-142#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5232bd97c54dd2a9506ead136063c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5232bd97c54dd2a9506ead136063c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5232bd97c54dd2a9506ead136063c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f5232bd97c54dd2a9506ead136063c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f5232bd97c54dd2a9506ead136063c1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d41-MQLL2UxZqNM_LACH2iTQ8MU=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.587406+00 2025-12-09 10:14:56.587411+00 7773 DL1080-1#枣红 SPMX-20240815302933 \N \N \N 1 \N [{"file_id": "57648db5-ba74-4c27-866f-85e30e9586bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcef79f818b34f7a9b6d7666e8ada0c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcef79f818b34f7a9b6d7666e8ada0c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcef79f818b34f7a9b6d7666e8ada0c4.jpg", "file_size": 57805, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-1#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcef79f818b34f7a9b6d7666e8ada0c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcef79f818b34f7a9b6d7666e8ada0c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcef79f818b34f7a9b6d7666e8ada0c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcef79f818b34f7a9b6d7666e8ada0c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcef79f818b34f7a9b6d7666e8ada0c4.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hW1Mq0R6CJTLVIUZPWlVKnGpGws=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.589046+00 2025-12-09 10:14:56.589051+00 7774 C326#大白黄花 SPMX-20240815302935 \N \N \N 1 \N [{"file_id": "4336b49a-fc32-4ffa-b5cc-c447380507e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add497ba6cab46f6a42f2a978cff8ba2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add497ba6cab46f6a42f2a978cff8ba2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add497ba6cab46f6a42f2a978cff8ba2.jpg", "file_size": 10897, "is_delete": false, "file_type": 1, "original_file_name": "C326#大白黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497ba6cab46f6a42f2a978cff8ba2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497ba6cab46f6a42f2a978cff8ba2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497ba6cab46f6a42f2a978cff8ba2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add497ba6cab46f6a42f2a978cff8ba2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add497ba6cab46f6a42f2a978cff8ba2.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7bDr9I6gUCChpc-a-prPk2xHgU=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.590665+00 2025-12-09 10:14:56.59067+00 7775 JTSS030#蓝 SPMX-20240815302927 \N \N \N 1 \N [{"file_id": "ec678206-8baa-45ae-bc60-f2081712e241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c20628b9cc74670b66dc9b55d2613a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c20628b9cc74670b66dc9b55d2613a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c20628b9cc74670b66dc9b55d2613a5.jpg", "file_size": 23598, "is_delete": false, "file_type": 1, "original_file_name": "JTSS030#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c20628b9cc74670b66dc9b55d2613a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c20628b9cc74670b66dc9b55d2613a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c20628b9cc74670b66dc9b55d2613a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c20628b9cc74670b66dc9b55d2613a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c20628b9cc74670b66dc9b55d2613a5.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aA1l7TgXriUZ3NGy6pqTgS8oajQ=", "createTime": "2024-08-15 14:45:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.592503+00 2025-12-09 10:14:56.592508+00 7776 1064#灰色袖子 SPMX-20240815302928 \N \N \N 1 \N [{"file_id": "e933efda-d60f-46ef-8a1f-09f7a1a2c0e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d43c9795d64c8fa2a0deb99a58e467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d43c9795d64c8fa2a0deb99a58e467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d43c9795d64c8fa2a0deb99a58e467.jpg", "file_size": 10160, "is_delete": false, "file_type": 1, "original_file_name": "1064#灰色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d43c9795d64c8fa2a0deb99a58e467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d43c9795d64c8fa2a0deb99a58e467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d43c9795d64c8fa2a0deb99a58e467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d43c9795d64c8fa2a0deb99a58e467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d43c9795d64c8fa2a0deb99a58e467.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7v76KUyIFMyYZwoRF02Pbf7Gj0=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.594125+00 2025-12-09 10:14:56.59413+00 7777 23-2112#-A16绿色前后片3XL SPMX-20240815302931 \N \N \N 1 \N [{"file_id": "8c1959bb-490e-418b-a42c-d9fe65d1a5fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2098d91abe054f818e8e34b1daac5d80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2098d91abe054f818e8e34b1daac5d80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2098d91abe054f818e8e34b1daac5d80.jpg", "file_size": 11322, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2098d91abe054f818e8e34b1daac5d80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2098d91abe054f818e8e34b1daac5d80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2098d91abe054f818e8e34b1daac5d80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2098d91abe054f818e8e34b1daac5d80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2098d91abe054f818e8e34b1daac5d80.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UdPX_t1IZ1NjsNHj2kIFyIQSBE=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.595768+00 2025-12-09 10:14:56.595773+00 7778 80302#乱花 SPMX-20240815302929 \N \N \N 1 \N [{"file_id": "e849b1bb-6f62-4214-ad06-3a38ab493821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08267cff92b24444b1235ed415214671.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08267cff92b24444b1235ed415214671.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08267cff92b24444b1235ed415214671.jpg", "file_size": 7036, "is_delete": false, "file_type": 1, "original_file_name": "80302#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08267cff92b24444b1235ed415214671.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08267cff92b24444b1235ed415214671.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08267cff92b24444b1235ed415214671.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08267cff92b24444b1235ed415214671.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08267cff92b24444b1235ed415214671.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:efDwoqSD6Cwd1Sf5GnQoyaSITHE=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.597593+00 2025-12-09 10:14:56.597598+00 7779 LJ026FW#VS-D3 SPMX-20240815302930 \N \N \N 1 \N [{"file_id": "8a19b51e-6404-4082-95af-e3f0a3675c78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d22dcd20a3c9480cb0452796b8859230.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d22dcd20a3c9480cb0452796b8859230.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d22dcd20a3c9480cb0452796b8859230.jpg", "file_size": 15825, "is_delete": false, "file_type": 1, "original_file_name": "LJ026FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22dcd20a3c9480cb0452796b8859230.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22dcd20a3c9480cb0452796b8859230.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d22dcd20a3c9480cb0452796b8859230.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d22dcd20a3c9480cb0452796b8859230.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d22dcd20a3c9480cb0452796b8859230.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1EmlkVZwpvHsFs9EqthhrNDjI_k=", "createTime": "2024-08-15 14:45:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.599207+00 2025-12-09 10:14:56.599212+00 7780 0003-335#紫色老鼠匹布 SPMX-20240815302937 \N \N \N 1 \N [{"file_id": "eb6f1c08-cf9c-4535-8522-85e1306096a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3908c69e26fc4e35bd1714dd49970f4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3908c69e26fc4e35bd1714dd49970f4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3908c69e26fc4e35bd1714dd49970f4a.jpg", "file_size": 18036, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#紫色老鼠匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3908c69e26fc4e35bd1714dd49970f4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3908c69e26fc4e35bd1714dd49970f4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3908c69e26fc4e35bd1714dd49970f4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3908c69e26fc4e35bd1714dd49970f4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3908c69e26fc4e35bd1714dd49970f4a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KV5btzo8-vWFbHaOgw_xBDf9SPE=", "createTime": "2024-08-15 14:45:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.600818+00 2025-12-09 10:14:56.600823+00 7781 JTSS030#黄 SPMX-20240815302936 \N \N \N 1 \N [{"file_id": "7d8d8c2e-ecdd-494e-9a0b-c8ffca3cf4ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33e88ab4c79a484ca9df4bd76566f919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33e88ab4c79a484ca9df4bd76566f919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33e88ab4c79a484ca9df4bd76566f919.jpg", "file_size": 26043, "is_delete": false, "file_type": 1, "original_file_name": "JTSS030#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e88ab4c79a484ca9df4bd76566f919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e88ab4c79a484ca9df4bd76566f919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e88ab4c79a484ca9df4bd76566f919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33e88ab4c79a484ca9df4bd76566f919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33e88ab4c79a484ca9df4bd76566f919.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uTCzNio0_kX8RiuVf6sFCQiCNs=", "createTime": "2024-08-15 14:45:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.602709+00 2025-12-09 10:14:56.602714+00 7782 LZ1238#加大-A7 SPMX-20240815302940 \N \N \N 1 \N [{"file_id": "f62a2af6-0a57-45f3-9808-e8c87777b54e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d408730864874fdea9ea73343ba81557.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d408730864874fdea9ea73343ba81557.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d408730864874fdea9ea73343ba81557.jpg", "file_size": 26798, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大-A7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408730864874fdea9ea73343ba81557.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408730864874fdea9ea73343ba81557.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408730864874fdea9ea73343ba81557.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d408730864874fdea9ea73343ba81557.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d408730864874fdea9ea73343ba81557.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ztLM-sY7kj-2qI6ne7BP86Qvyg=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.604475+00 2025-12-09 10:14:56.60448+00 7783 HT0101-143#WJC22 SPMX-20240815302939 \N \N \N 1 \N [{"file_id": "647c6f21-0c48-4a25-b4ef-15a378c0784b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9a3359d12eb4d0d809f1390789e6ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9a3359d12eb4d0d809f1390789e6ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9a3359d12eb4d0d809f1390789e6ae5.jpg", "file_size": 16343, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-143#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a3359d12eb4d0d809f1390789e6ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a3359d12eb4d0d809f1390789e6ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a3359d12eb4d0d809f1390789e6ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9a3359d12eb4d0d809f1390789e6ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9a3359d12eb4d0d809f1390789e6ae5.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXnPLtLZLsgA25Oj7s0p3pmovko=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.606143+00 2025-12-09 10:14:56.606148+00 7784 FHXGPK-076-4 SPMX-20240815302938 \N \N \N 1 \N [{"file_id": "8dceb812-e0c0-4f74-b008-e9cf62464df7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66fc69f774264336ad2507f0efc58201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66fc69f774264336ad2507f0efc58201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66fc69f774264336ad2507f0efc58201.jpg", "file_size": 34238, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-076-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fc69f774264336ad2507f0efc58201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fc69f774264336ad2507f0efc58201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66fc69f774264336ad2507f0efc58201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66fc69f774264336ad2507f0efc58201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66fc69f774264336ad2507f0efc58201.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrDXeMalswpr5y38z5XFKisZHSc=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.614685+00 2025-12-09 10:14:56.614691+00 7789 1064#白色 SPMX-20240815302942 \N \N \N 1 \N [{"file_id": "1eab3868-441a-4c64-85e8-ad51f3be36fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3bd910a3d574f3b8b754bfa4c746927.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3bd910a3d574f3b8b754bfa4c746927.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3bd910a3d574f3b8b754bfa4c746927.jpg", "file_size": 16378, "is_delete": false, "file_type": 1, "original_file_name": "1064#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bd910a3d574f3b8b754bfa4c746927.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bd910a3d574f3b8b754bfa4c746927.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bd910a3d574f3b8b754bfa4c746927.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3bd910a3d574f3b8b754bfa4c746927.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3bd910a3d574f3b8b754bfa4c746927.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7O4ErQ6yKWmsrCN2K6vRyyauYGk=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.607764+00 2025-12-09 10:14:56.607769+00 7785 23-2112#-A16绿色前后片4XL SPMX-20240815302945 \N \N \N 1 \N [{"file_id": "6b230877-5e89-49b3-a69a-54641fa7d4ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96b503effc5f4ccb82910f6c6e6e5f08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96b503effc5f4ccb82910f6c6e6e5f08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96b503effc5f4ccb82910f6c6e6e5f08.jpg", "file_size": 11527, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b503effc5f4ccb82910f6c6e6e5f08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b503effc5f4ccb82910f6c6e6e5f08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b503effc5f4ccb82910f6c6e6e5f08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96b503effc5f4ccb82910f6c6e6e5f08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96b503effc5f4ccb82910f6c6e6e5f08.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4fr2z4XsIuSpVTZ4KojxnnVqBo=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.609625+00 2025-12-09 10:14:56.60963+00 7786 LJ0302-1#绿色 SPMX-20240815302941 \N \N \N 1 \N [{"file_id": "f5788f9b-38d5-4f91-b47f-bc9b3883a552", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8800ae0044494ea2a5a478cba1ed2d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8800ae0044494ea2a5a478cba1ed2d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8800ae0044494ea2a5a478cba1ed2d40.jpg", "file_size": 27527, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800ae0044494ea2a5a478cba1ed2d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800ae0044494ea2a5a478cba1ed2d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800ae0044494ea2a5a478cba1ed2d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8800ae0044494ea2a5a478cba1ed2d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8800ae0044494ea2a5a478cba1ed2d40.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_C6tXfDYs6UFNcCPhQav712duPA=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.611241+00 2025-12-09 10:14:56.611245+00 7787 DL1080-1#绿色 SPMX-20240815302943 \N \N \N 1 \N [{"file_id": "00720971-1dee-4d79-be1d-18718e40e37b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b4bb13f72c140d3bf10c2d47bd625d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b4bb13f72c140d3bf10c2d47bd625d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b4bb13f72c140d3bf10c2d47bd625d5.jpg", "file_size": 58908, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4bb13f72c140d3bf10c2d47bd625d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4bb13f72c140d3bf10c2d47bd625d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b4bb13f72c140d3bf10c2d47bd625d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b4bb13f72c140d3bf10c2d47bd625d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b4bb13f72c140d3bf10c2d47bd625d5.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQ3BK-caRaSJgIUpZBVBUOOWn74=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.61284+00 2025-12-09 10:14:56.612845+00 7788 JTSS030FW#VS-D3 SPMX-20240815302946 \N \N \N 1 \N [{"file_id": "40445343-c400-4119-8a01-f5b7be6542f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9372f50f88f44ae196c905841c809a7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9372f50f88f44ae196c905841c809a7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9372f50f88f44ae196c905841c809a7e.jpg", "file_size": 23854, "is_delete": false, "file_type": 1, "original_file_name": "JTSS030FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9372f50f88f44ae196c905841c809a7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9372f50f88f44ae196c905841c809a7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9372f50f88f44ae196c905841c809a7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9372f50f88f44ae196c905841c809a7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9372f50f88f44ae196c905841c809a7e.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbO8xO-CHBamA7iuv-1XMifpscU=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.6163+00 2025-12-09 10:14:56.616305+00 7790 C326#黑色 SPMX-20240815302944 \N \N \N 1 \N [{"file_id": "02d19401-4882-4ff6-85c5-e96041f2a938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b2995f3e0b4ff290f6d9d0005a2315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b2995f3e0b4ff290f6d9d0005a2315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b2995f3e0b4ff290f6d9d0005a2315.jpg", "file_size": 13513, "is_delete": false, "file_type": 1, "original_file_name": "C326#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b2995f3e0b4ff290f6d9d0005a2315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b2995f3e0b4ff290f6d9d0005a2315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b2995f3e0b4ff290f6d9d0005a2315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b2995f3e0b4ff290f6d9d0005a2315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b2995f3e0b4ff290f6d9d0005a2315.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5CmrbS6PgRtPRG4h7BaHBrlraI=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.617952+00 2025-12-09 10:14:56.617957+00 7791 HT0101-143#宝蓝 SPMX-20240815302948 \N \N \N 1 \N [{"file_id": "e281f484-7d30-4ee1-bdf1-022837421428", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26e78a9ef90c47e781bd60d252dfc37a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26e78a9ef90c47e781bd60d252dfc37a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26e78a9ef90c47e781bd60d252dfc37a.jpg", "file_size": 24371, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-143#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e78a9ef90c47e781bd60d252dfc37a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e78a9ef90c47e781bd60d252dfc37a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e78a9ef90c47e781bd60d252dfc37a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26e78a9ef90c47e781bd60d252dfc37a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26e78a9ef90c47e781bd60d252dfc37a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dthrosh7XhXEJJH51pfGlozuxE=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.619816+00 2025-12-09 10:14:56.619821+00 7792 0003-335#绿色 SPMX-20240815302947 \N \N \N 1 \N [{"file_id": "1dd96c77-08ad-4172-8c30-ea7a12743197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fde5bfd686c4eb3b033b2f870a6ccf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fde5bfd686c4eb3b033b2f870a6ccf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fde5bfd686c4eb3b033b2f870a6ccf8.jpg", "file_size": 15729, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fde5bfd686c4eb3b033b2f870a6ccf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fde5bfd686c4eb3b033b2f870a6ccf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fde5bfd686c4eb3b033b2f870a6ccf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fde5bfd686c4eb3b033b2f870a6ccf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fde5bfd686c4eb3b033b2f870a6ccf8.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftnjEIdDe1hqOLqRJV_MhHtz_L4=", "createTime": "2024-08-15 14:45:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.621659+00 2025-12-09 10:14:56.621664+00 7793 1064#白色匹布 SPMX-20240815302951 \N \N \N 1 \N [{"file_id": "ed072d49-bba6-4f4e-a587-02b307ec0d52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d13b5ab1a42f4243b27f3b1c338d2d66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d13b5ab1a42f4243b27f3b1c338d2d66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d13b5ab1a42f4243b27f3b1c338d2d66.jpg", "file_size": 12361, "is_delete": false, "file_type": 1, "original_file_name": "1064#白色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d13b5ab1a42f4243b27f3b1c338d2d66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d13b5ab1a42f4243b27f3b1c338d2d66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d13b5ab1a42f4243b27f3b1c338d2d66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d13b5ab1a42f4243b27f3b1c338d2d66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d13b5ab1a42f4243b27f3b1c338d2d66.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cavM5DnfRr-wln1EHhYAlkbYAUE=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.623308+00 2025-12-09 10:14:56.623313+00 7794 JTSS030FW#VS-D3浅蓝底 SPMX-20240815302953 \N \N \N 1 \N [{"file_id": "faef999a-d043-4eb3-846e-d896b80c1eec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "850f23ec15094a46916358f02f4bc4c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "850f23ec15094a46916358f02f4bc4c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "850f23ec15094a46916358f02f4bc4c1.jpg", "file_size": 24268, "is_delete": false, "file_type": 1, "original_file_name": "JTSS030FW#VS-D3浅蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850f23ec15094a46916358f02f4bc4c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850f23ec15094a46916358f02f4bc4c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850f23ec15094a46916358f02f4bc4c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/850f23ec15094a46916358f02f4bc4c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/850f23ec15094a46916358f02f4bc4c1.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zX_7VPjZZ9Sx3gJOhAtQgOhChgI=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.624939+00 2025-12-09 10:14:56.624943+00 7795 80302#匹布 SPMX-20240815302950 \N \N \N 1 \N [{"file_id": "befb2dff-7f69-41a1-98f1-1114ba855d0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4071aabe4f684d7fb550760957840c88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4071aabe4f684d7fb550760957840c88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4071aabe4f684d7fb550760957840c88.jpg", "file_size": 7013, "is_delete": false, "file_type": 1, "original_file_name": "80302#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4071aabe4f684d7fb550760957840c88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4071aabe4f684d7fb550760957840c88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4071aabe4f684d7fb550760957840c88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4071aabe4f684d7fb550760957840c88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4071aabe4f684d7fb550760957840c88.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJjKceSJ7TUFcgep0Li6V0FZ7cw=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.626774+00 2025-12-09 10:14:56.626779+00 7796 LZ1238#加大A SPMX-20240815302949 \N \N \N 1 \N [{"file_id": "a0242e8b-e55c-42e8-a5b9-c17ce7813aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6356ed2154ce428cac9e8c6919c00b49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6356ed2154ce428cac9e8c6919c00b49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6356ed2154ce428cac9e8c6919c00b49.jpg", "file_size": 27893, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6356ed2154ce428cac9e8c6919c00b49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6356ed2154ce428cac9e8c6919c00b49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6356ed2154ce428cac9e8c6919c00b49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6356ed2154ce428cac9e8c6919c00b49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6356ed2154ce428cac9e8c6919c00b49.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKO4cRSsP-KDak2eU_7y_Jy44eU=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.628399+00 2025-12-09 10:14:56.628404+00 7797 C327#兰色 SPMX-20240815302955 \N \N \N 1 \N [{"file_id": "555917a5-b925-4952-8915-6ae20792b979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cb58db2b026482b904e6ee9c9d5a199.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cb58db2b026482b904e6ee9c9d5a199.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cb58db2b026482b904e6ee9c9d5a199.jpg", "file_size": 15846, "is_delete": false, "file_type": 1, "original_file_name": "C327#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb58db2b026482b904e6ee9c9d5a199.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb58db2b026482b904e6ee9c9d5a199.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb58db2b026482b904e6ee9c9d5a199.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cb58db2b026482b904e6ee9c9d5a199.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cb58db2b026482b904e6ee9c9d5a199.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52kf9Wi6l4Brx757qB6OkPuY07w=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.630024+00 2025-12-09 10:14:56.630028+00 7798 FHXGPK-076-5 SPMX-20240815302954 \N \N \N 1 \N [{"file_id": "62bcdfc6-2adb-4cf5-a50e-8ae0b9f5aacb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9565b7f9408b4c9d9a7ecf7f5693da82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9565b7f9408b4c9d9a7ecf7f5693da82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9565b7f9408b4c9d9a7ecf7f5693da82.jpg", "file_size": 36129, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-076-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9565b7f9408b4c9d9a7ecf7f5693da82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9565b7f9408b4c9d9a7ecf7f5693da82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9565b7f9408b4c9d9a7ecf7f5693da82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9565b7f9408b4c9d9a7ecf7f5693da82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9565b7f9408b4c9d9a7ecf7f5693da82.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7E9xeWt5Wt0rvamJVLOL4rIj2Ss=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.631855+00 2025-12-09 10:14:56.63186+00 7799 LJ0302-1#蓝色 SPMX-20240815302952 \N \N \N 1 \N [{"file_id": "a851e06c-c968-4065-841e-89036898e3da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a32751919da4826bdf1d1365b78fddb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a32751919da4826bdf1d1365b78fddb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a32751919da4826bdf1d1365b78fddb.jpg", "file_size": 27353, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a32751919da4826bdf1d1365b78fddb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a32751919da4826bdf1d1365b78fddb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a32751919da4826bdf1d1365b78fddb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a32751919da4826bdf1d1365b78fddb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a32751919da4826bdf1d1365b78fddb.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cYpITG68rYcdT5cgCLYXv3lHNQ=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.633575+00 2025-12-09 10:14:56.633581+00 7800 LZ1238#加大A17 SPMX-20240815302962 \N \N \N 1 \N [{"file_id": "f1597352-c3c9-4cc0-b315-41bb8f988109", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8fcb824a9546b0a2c775ba12d7e889.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8fcb824a9546b0a2c775ba12d7e889.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8fcb824a9546b0a2c775ba12d7e889.jpg", "file_size": 30110, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大A17.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8fcb824a9546b0a2c775ba12d7e889.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8fcb824a9546b0a2c775ba12d7e889.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8fcb824a9546b0a2c775ba12d7e889.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8fcb824a9546b0a2c775ba12d7e889.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8fcb824a9546b0a2c775ba12d7e889.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r332mZn1X3pEmIvVrt98In1jvf0=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.635281+00 2025-12-09 10:14:56.635286+00 7801 0003-335#绿色老鼠前片 SPMX-20240815302957 \N \N \N 1 \N [{"file_id": "1581bde2-5084-46f5-8901-2efe944fcb1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4775147ef2034065ae89f41f6035be8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4775147ef2034065ae89f41f6035be8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4775147ef2034065ae89f41f6035be8a.jpg", "file_size": 16739, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#绿色老鼠前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4775147ef2034065ae89f41f6035be8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4775147ef2034065ae89f41f6035be8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4775147ef2034065ae89f41f6035be8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4775147ef2034065ae89f41f6035be8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4775147ef2034065ae89f41f6035be8a.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3P9yybGMbL3rEY-eaGvm2PT-Os=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.636938+00 2025-12-09 10:14:56.636943+00 7802 HT0101-144#WJC22 SPMX-20240815302958 \N \N \N 1 \N [{"file_id": "5c91b4c3-02c5-4a2b-8b7d-fc41a98ac49a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f8e1504511040018fb23e11d79baf40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f8e1504511040018fb23e11d79baf40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f8e1504511040018fb23e11d79baf40.jpg", "file_size": 11794, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-144#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8e1504511040018fb23e11d79baf40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8e1504511040018fb23e11d79baf40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8e1504511040018fb23e11d79baf40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f8e1504511040018fb23e11d79baf40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f8e1504511040018fb23e11d79baf40.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDMqDYW4uqefTdy4TKR3MKZCTIc=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:56.638791+00 2025-12-09 10:14:56.638796+00 7803 JTSS031#粉 SPMX-20240815302963 \N \N \N 1 \N [{"file_id": "646b0575-57c2-4b97-bb86-09c6a34b6f31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67593c882ca44a9fbfc712e5c0f8a5d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67593c882ca44a9fbfc712e5c0f8a5d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67593c882ca44a9fbfc712e5c0f8a5d3.jpg", "file_size": 16980, "is_delete": false, "file_type": 1, "original_file_name": "JTSS031#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67593c882ca44a9fbfc712e5c0f8a5d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67593c882ca44a9fbfc712e5c0f8a5d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67593c882ca44a9fbfc712e5c0f8a5d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67593c882ca44a9fbfc712e5c0f8a5d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67593c882ca44a9fbfc712e5c0f8a5d3.jpg?e=1765361695&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QW3AcWCrgd1V0mgI_tzAoqx8t4k=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.293634+00 2025-12-09 10:14:57.293643+00 7804 0003-335#绿色老鼠匹布 SPMX-20240815302968 \N \N \N 1 \N [{"file_id": "53318804-4c30-440d-a07b-58b79ac4c473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63e337e1968d4ab190503947f7951c25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63e337e1968d4ab190503947f7951c25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63e337e1968d4ab190503947f7951c25.jpg", "file_size": 19438, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#绿色老鼠匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e337e1968d4ab190503947f7951c25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e337e1968d4ab190503947f7951c25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e337e1968d4ab190503947f7951c25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63e337e1968d4ab190503947f7951c25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63e337e1968d4ab190503947f7951c25.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gm7lul8_n-t321Bj5oj1N9fFIK4=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.3016+00 2025-12-09 10:14:57.301605+00 7805 23-2112#-A16绿色袖子3XL SPMX-20240815302956 \N \N \N 1 \N [{"file_id": "d07ae033-2e78-482a-97f7-f26e5c00fc34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c009cee7f12e425ea957d2f0f7991477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c009cee7f12e425ea957d2f0f7991477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c009cee7f12e425ea957d2f0f7991477.jpg", "file_size": 8035, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c009cee7f12e425ea957d2f0f7991477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c009cee7f12e425ea957d2f0f7991477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c009cee7f12e425ea957d2f0f7991477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c009cee7f12e425ea957d2f0f7991477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c009cee7f12e425ea957d2f0f7991477.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0tzlxIZAAmv3uyQg39AfbsEKK4=", "createTime": "2024-08-15 14:45:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.3037+00 2025-12-09 10:14:57.30371+00 7806 DL1080-1#黑色 SPMX-20240815302959 \N \N \N 1 \N [{"file_id": "1e4180a7-d1ce-451c-a412-aeb6bfda69dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e738370a931d421fb484e4aa8fd3686b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e738370a931d421fb484e4aa8fd3686b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e738370a931d421fb484e4aa8fd3686b.jpg", "file_size": 58576, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e738370a931d421fb484e4aa8fd3686b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e738370a931d421fb484e4aa8fd3686b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e738370a931d421fb484e4aa8fd3686b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e738370a931d421fb484e4aa8fd3686b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e738370a931d421fb484e4aa8fd3686b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qbbLAI33cjARF4JVYGkLfky-5Q=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.305618+00 2025-12-09 10:14:57.305623+00 7807 1064#白色袖子 SPMX-20240815302961 \N \N \N 1 \N [{"file_id": "c0dd4519-fdcf-43eb-a42a-aeb8a0ece7a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2543af09e99b44ccb651535f5651d9b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2543af09e99b44ccb651535f5651d9b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2543af09e99b44ccb651535f5651d9b9.jpg", "file_size": 10159, "is_delete": false, "file_type": 1, "original_file_name": "1064#白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2543af09e99b44ccb651535f5651d9b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2543af09e99b44ccb651535f5651d9b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2543af09e99b44ccb651535f5651d9b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2543af09e99b44ccb651535f5651d9b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2543af09e99b44ccb651535f5651d9b9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fR2VdkOtdEeBu2ULikz0G7Ic5N8=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.307328+00 2025-12-09 10:14:57.307332+00 7808 FHXGPK-077-1 SPMX-20240815302966 \N \N \N 1 \N [{"file_id": "5ace6612-2dae-4ad1-90e7-8bd9241753eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ecfad6eb28249068f030ede54a8673b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ecfad6eb28249068f030ede54a8673b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ecfad6eb28249068f030ede54a8673b.jpg", "file_size": 35250, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-077-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecfad6eb28249068f030ede54a8673b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecfad6eb28249068f030ede54a8673b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecfad6eb28249068f030ede54a8673b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ecfad6eb28249068f030ede54a8673b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ecfad6eb28249068f030ede54a8673b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ddnxaj1GgMXK9p2tH5juBz_Gt4Y=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.309027+00 2025-12-09 10:14:57.309032+00 7809 C327#原版色 SPMX-20240815302965 \N \N \N 1 \N [{"file_id": "82070923-0004-4d55-b581-ef58592571b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a545262c2ff5436cb7b4b6de8491b8ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a545262c2ff5436cb7b4b6de8491b8ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a545262c2ff5436cb7b4b6de8491b8ca.jpg", "file_size": 23958, "is_delete": false, "file_type": 1, "original_file_name": "C327#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a545262c2ff5436cb7b4b6de8491b8ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a545262c2ff5436cb7b4b6de8491b8ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a545262c2ff5436cb7b4b6de8491b8ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a545262c2ff5436cb7b4b6de8491b8ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a545262c2ff5436cb7b4b6de8491b8ca.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ei8T385JdbGLJWeYgcQXRFZTPw=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.310481+00 2025-12-09 10:14:57.310485+00 7810 HT0101-145#WJC22 SPMX-20240815302969 \N \N \N 1 \N [{"file_id": "0366e82d-44ce-4932-9240-c86c466f5111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18aa5d6536e44234a7bf4f0fcf1a9d88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18aa5d6536e44234a7bf4f0fcf1a9d88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18aa5d6536e44234a7bf4f0fcf1a9d88.jpg", "file_size": 21528, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-145#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa5d6536e44234a7bf4f0fcf1a9d88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa5d6536e44234a7bf4f0fcf1a9d88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa5d6536e44234a7bf4f0fcf1a9d88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18aa5d6536e44234a7bf4f0fcf1a9d88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18aa5d6536e44234a7bf4f0fcf1a9d88.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zix3eBzTpR5c_VoXOL-_EG4e6xA=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.312188+00 2025-12-09 10:14:57.312192+00 7811 80302#小童 SPMX-20240815302960 \N \N \N 1 \N [{"file_id": "fcda40df-64bf-470c-ab5c-728d5a1ce57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f49002546a5c4583aba8045adeaceee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f49002546a5c4583aba8045adeaceee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f49002546a5c4583aba8045adeaceee5.jpg", "file_size": 18864, "is_delete": false, "file_type": 1, "original_file_name": "80302#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49002546a5c4583aba8045adeaceee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49002546a5c4583aba8045adeaceee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49002546a5c4583aba8045adeaceee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f49002546a5c4583aba8045adeaceee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f49002546a5c4583aba8045adeaceee5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvU5q7tc_GTs4QRvndBP0-rSsWU=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.313927+00 2025-12-09 10:14:57.313931+00 7812 LJ0302-1#黑色 SPMX-20240815302964 \N \N \N 1 \N [{"file_id": "6aeb4ab0-f324-44fa-ad4d-922599ae6601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d21eb3896a4a4f8187c0e30a1051f5ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d21eb3896a4a4f8187c0e30a1051f5ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d21eb3896a4a4f8187c0e30a1051f5ae.jpg", "file_size": 30124, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d21eb3896a4a4f8187c0e30a1051f5ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d21eb3896a4a4f8187c0e30a1051f5ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d21eb3896a4a4f8187c0e30a1051f5ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d21eb3896a4a4f8187c0e30a1051f5ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d21eb3896a4a4f8187c0e30a1051f5ae.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BcMpmA7j7cRuNvHhlWIS51DqYAk=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.315649+00 2025-12-09 10:14:57.315653+00 7813 23-2112#-A16绿色袖子4XL SPMX-20240815302967 \N \N \N 1 \N [{"file_id": "d5260172-fe90-4014-8b4a-7b1e08b593aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bcc3ae4480b42e6a3c4e6706c953bd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bcc3ae4480b42e6a3c4e6706c953bd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bcc3ae4480b42e6a3c4e6706c953bd4.jpg", "file_size": 8656, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcc3ae4480b42e6a3c4e6706c953bd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcc3ae4480b42e6a3c4e6706c953bd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcc3ae4480b42e6a3c4e6706c953bd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bcc3ae4480b42e6a3c4e6706c953bd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bcc3ae4480b42e6a3c4e6706c953bd4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnGLelSrfcNzNXAY6m3oTb9bnQ4=", "createTime": "2024-08-15 14:45:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.317382+00 2025-12-09 10:14:57.317386+00 7814 1064#粉色 SPMX-20240815302971 \N \N \N 1 \N [{"file_id": "cf6196ee-ff2e-4679-9169-1350a53813ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "023166b190a84ad0ba7ed1969740b085.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "023166b190a84ad0ba7ed1969740b085.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "023166b190a84ad0ba7ed1969740b085.jpg", "file_size": 17831, "is_delete": false, "file_type": 1, "original_file_name": "1064#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023166b190a84ad0ba7ed1969740b085.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023166b190a84ad0ba7ed1969740b085.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023166b190a84ad0ba7ed1969740b085.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/023166b190a84ad0ba7ed1969740b085.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/023166b190a84ad0ba7ed1969740b085.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axAGiRE200zHZRnGiaFy9U7vhMY=", "createTime": "2024-08-15 14:45:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.319083+00 2025-12-09 10:14:57.319087+00 7815 80302#裤子 SPMX-20240815302970 \N \N \N 1 \N [{"file_id": "341205f4-d8c1-4d7a-b2d8-9e1f57233495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b284effe6d84627a08bab1a7985c24f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b284effe6d84627a08bab1a7985c24f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b284effe6d84627a08bab1a7985c24f.jpg", "file_size": 20315, "is_delete": false, "file_type": 1, "original_file_name": "80302#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b284effe6d84627a08bab1a7985c24f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b284effe6d84627a08bab1a7985c24f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b284effe6d84627a08bab1a7985c24f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b284effe6d84627a08bab1a7985c24f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b284effe6d84627a08bab1a7985c24f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkeW9LPFKUvb8pr6qqDI5UXbRSM=", "createTime": "2024-08-15 14:45:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.320793+00 2025-12-09 10:14:57.320796+00 7816 C327#大白 SPMX-20240815302978 \N \N \N 1 \N [{"file_id": "fb797508-09fb-494f-a4fe-c8ab11d48ba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e26052f91eb4b67a94c9f770a4ed853.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e26052f91eb4b67a94c9f770a4ed853.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e26052f91eb4b67a94c9f770a4ed853.jpg", "file_size": 29289, "is_delete": false, "file_type": 1, "original_file_name": "C327#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26052f91eb4b67a94c9f770a4ed853.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26052f91eb4b67a94c9f770a4ed853.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26052f91eb4b67a94c9f770a4ed853.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e26052f91eb4b67a94c9f770a4ed853.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e26052f91eb4b67a94c9f770a4ed853.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnnpOkTAbeTfVw21u9nOhHQARjY=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.322539+00 2025-12-09 10:14:57.322543+00 7817 0003-335#蓝色老鼠前片 SPMX-20240815302979 \N \N \N 1 \N [{"file_id": "37149fea-5072-4dea-9f44-a7d23b569dc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a094df8117f847bea63e2cba66bed501.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a094df8117f847bea63e2cba66bed501.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a094df8117f847bea63e2cba66bed501.jpg", "file_size": 16613, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#蓝色老鼠前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a094df8117f847bea63e2cba66bed501.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a094df8117f847bea63e2cba66bed501.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a094df8117f847bea63e2cba66bed501.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a094df8117f847bea63e2cba66bed501.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a094df8117f847bea63e2cba66bed501.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4xtlUMmK2R5u3oh45UXVwAcC5M=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.324264+00 2025-12-09 10:14:57.324268+00 7818 LJ0302-2#咖色番禺调色 SPMX-20240815302977 \N \N \N 1 \N [{"file_id": "c29ce03e-3ea3-4f71-ac6e-3c1432d548ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb61840bf5364744bf2aa7008d52bbae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb61840bf5364744bf2aa7008d52bbae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb61840bf5364744bf2aa7008d52bbae.jpg", "file_size": 27823, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-2#咖色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb61840bf5364744bf2aa7008d52bbae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb61840bf5364744bf2aa7008d52bbae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb61840bf5364744bf2aa7008d52bbae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb61840bf5364744bf2aa7008d52bbae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb61840bf5364744bf2aa7008d52bbae.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozOzcZEOjgklTuKSbEddpUfmP8I=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.325687+00 2025-12-09 10:14:57.325691+00 7819 80303#上衣 SPMX-20240815302982 \N \N \N 1 \N [{"file_id": "954e32ff-7e09-4446-baf0-aa2fcf1d9fd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "532274779b644f9283e2a2c599f1b8d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "532274779b644f9283e2a2c599f1b8d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "532274779b644f9283e2a2c599f1b8d9.jpg", "file_size": 14552, "is_delete": false, "file_type": 1, "original_file_name": "80303#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532274779b644f9283e2a2c599f1b8d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532274779b644f9283e2a2c599f1b8d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532274779b644f9283e2a2c599f1b8d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/532274779b644f9283e2a2c599f1b8d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/532274779b644f9283e2a2c599f1b8d9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CpRjX0_5yuMq3pCVk1nomk3Y6Ks=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.327136+00 2025-12-09 10:14:57.32714+00 7820 JTSS031#绿 SPMX-20240815302972 \N \N \N 1 \N [{"file_id": "5d299965-6a5d-452c-a583-bf319133ed72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8554fe3041824351a4762d9546a07b74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8554fe3041824351a4762d9546a07b74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8554fe3041824351a4762d9546a07b74.jpg", "file_size": 19754, "is_delete": false, "file_type": 1, "original_file_name": "JTSS031#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8554fe3041824351a4762d9546a07b74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8554fe3041824351a4762d9546a07b74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8554fe3041824351a4762d9546a07b74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8554fe3041824351a4762d9546a07b74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8554fe3041824351a4762d9546a07b74.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08ON8XvM1no2XXW3uV9waiZCUn4=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.328569+00 2025-12-09 10:14:57.328573+00 7821 HT0101-146#WJC22 SPMX-20240815302974 \N \N \N 1 \N [{"file_id": "9185413b-0dbb-4a31-bb20-876293939fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "755122dcc2e547a8a0817baf49e4a121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "755122dcc2e547a8a0817baf49e4a121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "755122dcc2e547a8a0817baf49e4a121.jpg", "file_size": 22929, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-146#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755122dcc2e547a8a0817baf49e4a121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755122dcc2e547a8a0817baf49e4a121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/755122dcc2e547a8a0817baf49e4a121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/755122dcc2e547a8a0817baf49e4a121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/755122dcc2e547a8a0817baf49e4a121.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKt4uIw41QepXb7aNZQaP-BW04Q=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.330215+00 2025-12-09 10:14:57.33022+00 7822 LZ1238#加大A9 SPMX-20240815302980 \N \N \N 1 \N [{"file_id": "4b67900e-e6f1-41ed-902e-4a786821a71f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb382b9044924a37b5e36e9092c34857.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb382b9044924a37b5e36e9092c34857.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb382b9044924a37b5e36e9092c34857.jpg", "file_size": 27414, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大A9.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb382b9044924a37b5e36e9092c34857.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb382b9044924a37b5e36e9092c34857.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb382b9044924a37b5e36e9092c34857.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb382b9044924a37b5e36e9092c34857.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb382b9044924a37b5e36e9092c34857.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9NC4Y0PCiS2RoCZDAIGFYEPfWc=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.331701+00 2025-12-09 10:14:57.331707+00 7823 1064#粉色匹布 SPMX-20240815302981 \N \N \N 1 \N [{"file_id": "fa156c52-dbe3-4894-897b-630e96c36f66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c76cb412d634c72975cf3c7b0c3b4b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c76cb412d634c72975cf3c7b0c3b4b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c76cb412d634c72975cf3c7b0c3b4b4.jpg", "file_size": 13740, "is_delete": false, "file_type": 1, "original_file_name": "1064#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c76cb412d634c72975cf3c7b0c3b4b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c76cb412d634c72975cf3c7b0c3b4b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c76cb412d634c72975cf3c7b0c3b4b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c76cb412d634c72975cf3c7b0c3b4b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c76cb412d634c72975cf3c7b0c3b4b4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FR2x2LXSpO8fWEe5oM4pwA1kIQY=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.333144+00 2025-12-09 10:14:57.333148+00 7824 23-2112#-A16绿色领子通用 SPMX-20240815302983 \N \N \N 1 \N [{"file_id": "4f7baf22-b343-4db6-9a44-0afced3c497f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b3ea7266806463c9bd4265330fb96bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b3ea7266806463c9bd4265330fb96bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b3ea7266806463c9bd4265330fb96bf.jpg", "file_size": 10280, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3ea7266806463c9bd4265330fb96bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3ea7266806463c9bd4265330fb96bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b3ea7266806463c9bd4265330fb96bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b3ea7266806463c9bd4265330fb96bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b3ea7266806463c9bd4265330fb96bf.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:viVyVCTUDOEQrzXldfXaBiZw6LA=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.334597+00 2025-12-09 10:14:57.334601+00 7825 FHXGPK-077-2 SPMX-20240815302976 \N \N \N 1 \N [{"file_id": "3d9dc3c5-b6fe-42af-9c1f-fc38e1e6330c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "286de08ef9684b8a9d23ddcc59413d10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "286de08ef9684b8a9d23ddcc59413d10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "286de08ef9684b8a9d23ddcc59413d10.jpg", "file_size": 36036, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-077-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286de08ef9684b8a9d23ddcc59413d10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286de08ef9684b8a9d23ddcc59413d10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286de08ef9684b8a9d23ddcc59413d10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/286de08ef9684b8a9d23ddcc59413d10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/286de08ef9684b8a9d23ddcc59413d10.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2z6YGID1-SfRDFQDdFAwphNlgHI=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.336015+00 2025-12-09 10:14:57.336019+00 7826 HT0101-147#WJC22 SPMX-20240815302984 \N \N \N 1 \N [{"file_id": "b4bd051c-7993-4d14-a9b0-4e7e41c45775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1899961c6ac746d68a28f219ad371231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1899961c6ac746d68a28f219ad371231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1899961c6ac746d68a28f219ad371231.jpg", "file_size": 23581, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-147#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1899961c6ac746d68a28f219ad371231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1899961c6ac746d68a28f219ad371231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1899961c6ac746d68a28f219ad371231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1899961c6ac746d68a28f219ad371231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1899961c6ac746d68a28f219ad371231.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Ls3xrnQXkPyKddOPSyE4XLGb14=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.337453+00 2025-12-09 10:14:57.337457+00 7827 JTSS031#黑 SPMX-20240815302985 \N \N \N 1 \N [{"file_id": "5753fd0f-1051-456f-b473-9acae3a79552", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bff804a5e42465990908911d1d9ace9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bff804a5e42465990908911d1d9ace9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bff804a5e42465990908911d1d9ace9.jpg", "file_size": 19588, "is_delete": false, "file_type": 1, "original_file_name": "JTSS031#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bff804a5e42465990908911d1d9ace9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bff804a5e42465990908911d1d9ace9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bff804a5e42465990908911d1d9ace9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bff804a5e42465990908911d1d9ace9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bff804a5e42465990908911d1d9ace9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04LdJmQ0sebaAxlU0lhsk2-UZ24=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.339155+00 2025-12-09 10:14:57.339159+00 7828 23-2112#-A16绿色领口通用 SPMX-20240815302973 \N \N \N 1 \N [{"file_id": "e72c0be1-9915-46aa-9706-ccc6d1a3bca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f54c64fb34544c37b94acd599d62408b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f54c64fb34544c37b94acd599d62408b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f54c64fb34544c37b94acd599d62408b.jpg", "file_size": 8719, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16绿色领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54c64fb34544c37b94acd599d62408b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54c64fb34544c37b94acd599d62408b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54c64fb34544c37b94acd599d62408b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f54c64fb34544c37b94acd599d62408b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f54c64fb34544c37b94acd599d62408b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CmnVNIGFwSA7jKXuAf9bXLeTG9U=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.340616+00 2025-12-09 10:14:57.34062+00 7829 DL1080-B1#RC23 SPMX-20240815302975 \N \N \N 1 \N [{"file_id": "0cd04b36-49af-4e67-b1a6-6f980460b1d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52529a01c9644a48b61afa3059abc0d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52529a01c9644a48b61afa3059abc0d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52529a01c9644a48b61afa3059abc0d8.jpg", "file_size": 41332, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52529a01c9644a48b61afa3059abc0d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52529a01c9644a48b61afa3059abc0d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52529a01c9644a48b61afa3059abc0d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52529a01c9644a48b61afa3059abc0d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52529a01c9644a48b61afa3059abc0d8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlbE_ADGTDe_MaIOsphA_BPhAk8=", "createTime": "2024-08-15 14:45:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.342051+00 2025-12-09 10:14:57.342056+00 7830 23-2112#-A16袖子4XL SPMX-20240815302993 \N \N \N 1 \N [{"file_id": "35bbca2a-90d9-4ac5-a754-37d5caf011db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7450d0d6a774163ab3be73e6ecb0956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7450d0d6a774163ab3be73e6ecb0956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7450d0d6a774163ab3be73e6ecb0956.jpg", "file_size": 8321, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7450d0d6a774163ab3be73e6ecb0956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7450d0d6a774163ab3be73e6ecb0956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7450d0d6a774163ab3be73e6ecb0956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7450d0d6a774163ab3be73e6ecb0956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7450d0d6a774163ab3be73e6ecb0956.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GyzGYQs0QawL6hDhnjFDumK5oxk=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.343505+00 2025-12-09 10:14:57.343509+00 7831 C327#橙色 SPMX-20240815302987 \N \N \N 1 \N [{"file_id": "d8861d7c-553f-450c-9c20-f44c3f3b94af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a48a0b9019064084a33a8ad81d8f5577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a48a0b9019064084a33a8ad81d8f5577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a48a0b9019064084a33a8ad81d8f5577.jpg", "file_size": 26280, "is_delete": false, "file_type": 1, "original_file_name": "C327#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48a0b9019064084a33a8ad81d8f5577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48a0b9019064084a33a8ad81d8f5577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48a0b9019064084a33a8ad81d8f5577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a48a0b9019064084a33a8ad81d8f5577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a48a0b9019064084a33a8ad81d8f5577.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbLpDotORE3ZcCC2oTTAgTtcSUI=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.345233+00 2025-12-09 10:14:57.345237+00 7832 LZ1238#加大B SPMX-20240815302989 \N \N \N 1 \N [{"file_id": "831ffea6-5ce5-4da7-b563-f405c5a459d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc77e370c650493594f3bd33a950cbac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc77e370c650493594f3bd33a950cbac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc77e370c650493594f3bd33a950cbac.jpg", "file_size": 26089, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77e370c650493594f3bd33a950cbac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77e370c650493594f3bd33a950cbac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77e370c650493594f3bd33a950cbac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc77e370c650493594f3bd33a950cbac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc77e370c650493594f3bd33a950cbac.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hBv5znnD-odOkOkdFntBf15CieM=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.346705+00 2025-12-09 10:14:57.34671+00 7833 0003-335#黄色 SPMX-20240815302998 \N \N \N 1 \N [{"file_id": "46f4f4cb-2b56-4edd-b7d2-c7da3bb211f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e52c4d4bfc2348249ee4b4c7b647d38b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e52c4d4bfc2348249ee4b4c7b647d38b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e52c4d4bfc2348249ee4b4c7b647d38b.jpg", "file_size": 16026, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52c4d4bfc2348249ee4b4c7b647d38b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52c4d4bfc2348249ee4b4c7b647d38b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e52c4d4bfc2348249ee4b4c7b647d38b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e52c4d4bfc2348249ee4b4c7b647d38b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e52c4d4bfc2348249ee4b4c7b647d38b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkw-Po9XC7IT2labpUEoYHhOxRo=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.348131+00 2025-12-09 10:14:57.348135+00 7834 0003-335#蓝色老鼠匹布 SPMX-20240815302990 \N \N \N 1 \N [{"file_id": "deedd37b-a2d9-405c-96b1-9f25efc5e40b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "292d1cf067cd4c039d279eee0ee14d00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "292d1cf067cd4c039d279eee0ee14d00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "292d1cf067cd4c039d279eee0ee14d00.jpg", "file_size": 18577, "is_delete": false, "file_type": 1, "original_file_name": "0003-335#蓝色老鼠匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/292d1cf067cd4c039d279eee0ee14d00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/292d1cf067cd4c039d279eee0ee14d00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/292d1cf067cd4c039d279eee0ee14d00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/292d1cf067cd4c039d279eee0ee14d00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/292d1cf067cd4c039d279eee0ee14d00.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0dbZCedH5D7S1xdRdTk_3ldX2g=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.349571+00 2025-12-09 10:14:57.349575+00 7835 LJ0302-2#粉色 SPMX-20240815302986 \N \N \N 1 \N [{"file_id": "38f39dce-d931-4de2-8fbc-89a02568e1e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f363ca1e46764a7a87de291d4d8ac43e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f363ca1e46764a7a87de291d4d8ac43e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f363ca1e46764a7a87de291d4d8ac43e.jpg", "file_size": 20694, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f363ca1e46764a7a87de291d4d8ac43e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f363ca1e46764a7a87de291d4d8ac43e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f363ca1e46764a7a87de291d4d8ac43e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f363ca1e46764a7a87de291d4d8ac43e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f363ca1e46764a7a87de291d4d8ac43e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUbI4c0GW6NHqzbagECkZT0pGNE=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.351266+00 2025-12-09 10:14:57.35127+00 7836 80303#中童 SPMX-20240815302994 \N \N \N 1 \N [{"file_id": "c02112eb-9a1a-4821-9781-ab3e24bed693", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7df08e9156ba448aa13e6219274a302d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7df08e9156ba448aa13e6219274a302d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7df08e9156ba448aa13e6219274a302d.jpg", "file_size": 19220, "is_delete": false, "file_type": 1, "original_file_name": "80303#中童 .jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df08e9156ba448aa13e6219274a302d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df08e9156ba448aa13e6219274a302d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df08e9156ba448aa13e6219274a302d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7df08e9156ba448aa13e6219274a302d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7df08e9156ba448aa13e6219274a302d.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2dZoUrKe4nQEBGTX7t4sb2RWU0=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.35272+00 2025-12-09 10:14:57.352724+00 7837 HT0101-148#WJC22 SPMX-20240815302995 \N \N \N 1 \N [{"file_id": "ea665008-0f79-46e6-937f-890fcd44eae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "400aa889076444d3b31eb42e33f401d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "400aa889076444d3b31eb42e33f401d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "400aa889076444d3b31eb42e33f401d0.jpg", "file_size": 23077, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-148#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400aa889076444d3b31eb42e33f401d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400aa889076444d3b31eb42e33f401d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400aa889076444d3b31eb42e33f401d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/400aa889076444d3b31eb42e33f401d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/400aa889076444d3b31eb42e33f401d0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJbQMeXtDItgbijl1UKNH2o4FFA=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.354165+00 2025-12-09 10:14:57.354169+00 7838 FHXGPK-077-3 SPMX-20240815302988 \N \N \N 1 \N [{"file_id": "f6bed952-9acf-42b3-a19b-9ac3245ac653", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7327b4343693450ca6058152513aad66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7327b4343693450ca6058152513aad66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7327b4343693450ca6058152513aad66.jpg", "file_size": 37561, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-077-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7327b4343693450ca6058152513aad66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7327b4343693450ca6058152513aad66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7327b4343693450ca6058152513aad66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7327b4343693450ca6058152513aad66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7327b4343693450ca6058152513aad66.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kdmb22nRhNXD9uQC3GPU_PMGOlI=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.355595+00 2025-12-09 10:14:57.355599+00 7839 DL1080-B10#黑白 SPMX-20240815302992 \N \N \N 1 \N [{"file_id": "ce620b94-10b6-4beb-9899-86ba676039bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a9fd09ce63b46739feff10bfc4c01de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a9fd09ce63b46739feff10bfc4c01de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a9fd09ce63b46739feff10bfc4c01de.jpg", "file_size": 62079, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B10#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fd09ce63b46739feff10bfc4c01de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fd09ce63b46739feff10bfc4c01de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fd09ce63b46739feff10bfc4c01de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a9fd09ce63b46739feff10bfc4c01de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a9fd09ce63b46739feff10bfc4c01de.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GeN1ezeHmTMgx8Vu6Yf00EYMsng=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.365029+00 2025-12-09 10:14:57.365034+00 7845 C328#墨绿-LWQ15 SPMX-20240815303013 \N \N \N 1 \N [{"file_id": "110688ff-292f-4f06-9bd5-8d8909596064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10f5daf60bd84e8f829197abb9e21313.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10f5daf60bd84e8f829197abb9e21313.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10f5daf60bd84e8f829197abb9e21313.jpg", "file_size": 28999, "is_delete": false, "file_type": 1, "original_file_name": "C328#墨绿-LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f5daf60bd84e8f829197abb9e21313.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f5daf60bd84e8f829197abb9e21313.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f5daf60bd84e8f829197abb9e21313.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10f5daf60bd84e8f829197abb9e21313.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10f5daf60bd84e8f829197abb9e21313.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3G5VEyRlJfR2DTqPZU82NyqYTcE=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.357348+00 2025-12-09 10:14:57.357352+00 7840 JTSS031FW#VS-D3杏底 SPMX-20240815302996 \N \N \N 1 \N [{"file_id": "a24a553d-2b20-4d34-a33d-d29f2687a533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b34581c2ebfa4927a80146f3411bb4a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b34581c2ebfa4927a80146f3411bb4a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b34581c2ebfa4927a80146f3411bb4a5.jpg", "file_size": 24433, "is_delete": false, "file_type": 1, "original_file_name": "JTSS031FW#VS-D3杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34581c2ebfa4927a80146f3411bb4a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34581c2ebfa4927a80146f3411bb4a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34581c2ebfa4927a80146f3411bb4a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b34581c2ebfa4927a80146f3411bb4a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b34581c2ebfa4927a80146f3411bb4a5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gdXWPAhOiiK7tdkukKYF8wFgz8=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.358821+00 2025-12-09 10:14:57.358826+00 7841 LZ1238#加大C SPMX-20240815302999 \N \N \N 1 \N [{"file_id": "af8be2a5-38ff-4633-a784-5ded6a46c551", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6137f0d6aafb47bab2c88aef4e053050.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6137f0d6aafb47bab2c88aef4e053050.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6137f0d6aafb47bab2c88aef4e053050.jpg", "file_size": 26604, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6137f0d6aafb47bab2c88aef4e053050.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6137f0d6aafb47bab2c88aef4e053050.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6137f0d6aafb47bab2c88aef4e053050.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6137f0d6aafb47bab2c88aef4e053050.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6137f0d6aafb47bab2c88aef4e053050.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6ROoGjNrfHHfNxfT68Ym6pRNHw=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.360254+00 2025-12-09 10:14:57.360258+00 7842 1064#粉色袖子 SPMX-20240815302991 \N \N \N 1 \N [{"file_id": "d48fc7e5-249b-46a6-98ba-eb2c3c26f108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52994348152643b193325aae68447c01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52994348152643b193325aae68447c01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52994348152643b193325aae68447c01.jpg", "file_size": 10601, "is_delete": false, "file_type": 1, "original_file_name": "1064#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52994348152643b193325aae68447c01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52994348152643b193325aae68447c01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52994348152643b193325aae68447c01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52994348152643b193325aae68447c01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52994348152643b193325aae68447c01.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBOMwUKWyVDERLWloMTak4Zimno=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.361682+00 2025-12-09 10:14:57.361687+00 7843 FHXGPK-077-4 SPMX-20240815302997 \N \N \N 1 \N [{"file_id": "43ede8c4-e4af-45cc-bf71-66ddc10d651f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f52fe95117de49ba95bbcb8c411c70e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f52fe95117de49ba95bbcb8c411c70e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f52fe95117de49ba95bbcb8c411c70e5.jpg", "file_size": 34003, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-077-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52fe95117de49ba95bbcb8c411c70e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52fe95117de49ba95bbcb8c411c70e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52fe95117de49ba95bbcb8c411c70e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f52fe95117de49ba95bbcb8c411c70e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f52fe95117de49ba95bbcb8c411c70e5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvV1h2h2wLlJKDJPYgMqS8kzMEc=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.363391+00 2025-12-09 10:14:57.363396+00 7844 1064#青色 SPMX-20240815303003 \N \N \N 1 \N [{"file_id": "291dd522-9393-40eb-ad8c-5673fc025e6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7866b19b56840b48109e0c96749a41f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7866b19b56840b48109e0c96749a41f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7866b19b56840b48109e0c96749a41f.jpg", "file_size": 15803, "is_delete": false, "file_type": 1, "original_file_name": "1064#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7866b19b56840b48109e0c96749a41f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7866b19b56840b48109e0c96749a41f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7866b19b56840b48109e0c96749a41f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7866b19b56840b48109e0c96749a41f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7866b19b56840b48109e0c96749a41f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yow6d5F3_60h4E3E_KV7-VvTiUk=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.366673+00 2025-12-09 10:14:57.366677+00 7846 1064#青色匹布 SPMX-20240815303014 \N \N \N 1 \N [{"file_id": "d7ad7eb7-822d-4619-b5de-ef756fdf534d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75d6eb23ef0a41d2b974e1cff96c118e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75d6eb23ef0a41d2b974e1cff96c118e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75d6eb23ef0a41d2b974e1cff96c118e.jpg", "file_size": 12245, "is_delete": false, "file_type": 1, "original_file_name": "1064#青色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d6eb23ef0a41d2b974e1cff96c118e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d6eb23ef0a41d2b974e1cff96c118e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75d6eb23ef0a41d2b974e1cff96c118e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75d6eb23ef0a41d2b974e1cff96c118e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75d6eb23ef0a41d2b974e1cff96c118e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3k4zX991Ko0WaSZhQoJK9tr9oHM=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.368461+00 2025-12-09 10:14:57.368466+00 7847 DL1080-B10#黑蓝 SPMX-20240815303005 \N \N \N 1 \N [{"file_id": "26fd3003-de63-4332-9dc6-0906b064e96c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "778014d1ec1c4671aa5448037d33bcc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "778014d1ec1c4671aa5448037d33bcc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "778014d1ec1c4671aa5448037d33bcc9.jpg", "file_size": 62625, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B10#黑蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778014d1ec1c4671aa5448037d33bcc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778014d1ec1c4671aa5448037d33bcc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778014d1ec1c4671aa5448037d33bcc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/778014d1ec1c4671aa5448037d33bcc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/778014d1ec1c4671aa5448037d33bcc9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DrsyN_vFMNCV0gQ0gJ2TSXYEk2Q=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.370095+00 2025-12-09 10:14:57.3701+00 7848 FHXGPK-077-5 SPMX-20240815303010 \N \N \N 1 \N [{"file_id": "bb73ac6f-e435-4a30-8318-2e8214ce5bbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f88c40859f314f049e3931538b631587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f88c40859f314f049e3931538b631587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f88c40859f314f049e3931538b631587.jpg", "file_size": 33663, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-077-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88c40859f314f049e3931538b631587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88c40859f314f049e3931538b631587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88c40859f314f049e3931538b631587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f88c40859f314f049e3931538b631587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f88c40859f314f049e3931538b631587.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BLj58NRNJwQYJgnXqWb7hiRTIY=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.371731+00 2025-12-09 10:14:57.371736+00 7849 80303#乱花 SPMX-20240815303006 \N \N \N 1 \N [{"file_id": "7ca6774f-fd80-4b3c-8b3b-66ef30a426b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e6e07b8834340d0a92df504a3939e32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e6e07b8834340d0a92df504a3939e32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e6e07b8834340d0a92df504a3939e32.jpg", "file_size": 7437, "is_delete": false, "file_type": 1, "original_file_name": "80303#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6e07b8834340d0a92df504a3939e32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6e07b8834340d0a92df504a3939e32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6e07b8834340d0a92df504a3939e32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e6e07b8834340d0a92df504a3939e32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e6e07b8834340d0a92df504a3939e32.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kcpnznywim_s2LV4PgdZZRElfxQ=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.373581+00 2025-12-09 10:14:57.373586+00 7850 JTSS032# SPMX-20240815303007 \N \N \N 1 \N [{"file_id": "14970709-22ca-4150-a092-54f7c11ffac0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34321c5d87aa4f52aeab1c889e0ec8d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34321c5d87aa4f52aeab1c889e0ec8d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34321c5d87aa4f52aeab1c889e0ec8d4.jpg", "file_size": 15638, "is_delete": false, "file_type": 1, "original_file_name": "JTSS032#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34321c5d87aa4f52aeab1c889e0ec8d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34321c5d87aa4f52aeab1c889e0ec8d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34321c5d87aa4f52aeab1c889e0ec8d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34321c5d87aa4f52aeab1c889e0ec8d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34321c5d87aa4f52aeab1c889e0ec8d4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxHl9KTLKiYu3FGWnhh5pqdbQek=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.375211+00 2025-12-09 10:14:57.375216+00 7851 23-2112#-A16黑色前后片4XL SPMX-20240815303012 \N \N \N 1 \N [{"file_id": "1eaacde9-a26c-4880-8092-6d1ab9df82a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7921a7289fa647499ce877aba46879a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7921a7289fa647499ce877aba46879a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7921a7289fa647499ce877aba46879a0.jpg", "file_size": 11307, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7921a7289fa647499ce877aba46879a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7921a7289fa647499ce877aba46879a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7921a7289fa647499ce877aba46879a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7921a7289fa647499ce877aba46879a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7921a7289fa647499ce877aba46879a0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOUm5QXIAvTuoAqCQVy8gFJRKSk=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.376853+00 2025-12-09 10:14:57.376858+00 7852 HT0101-149#WJC22 SPMX-20240815303004 \N \N \N 1 \N [{"file_id": "99dd752c-c4fd-4731-8b4d-709f34eb6613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd8ea4ae773c40b89b0028d257c0941e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd8ea4ae773c40b89b0028d257c0941e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd8ea4ae773c40b89b0028d257c0941e.jpg", "file_size": 13540, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-149#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8ea4ae773c40b89b0028d257c0941e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8ea4ae773c40b89b0028d257c0941e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8ea4ae773c40b89b0028d257c0941e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd8ea4ae773c40b89b0028d257c0941e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd8ea4ae773c40b89b0028d257c0941e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIlIu8v7GMzSXnVLPH0FpFEmAr8=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.378697+00 2025-12-09 10:14:57.378702+00 7853 23-2112#-A16黑色前后片3XL SPMX-20240815303002 \N \N \N 1 \N [{"file_id": "5400a33a-5b6d-4cbe-a64a-350c04f57e80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f1ff0458f3245c5a9420dd121a9f9e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f1ff0458f3245c5a9420dd121a9f9e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f1ff0458f3245c5a9420dd121a9f9e5.jpg", "file_size": 10710, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1ff0458f3245c5a9420dd121a9f9e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1ff0458f3245c5a9420dd121a9f9e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1ff0458f3245c5a9420dd121a9f9e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f1ff0458f3245c5a9420dd121a9f9e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f1ff0458f3245c5a9420dd121a9f9e5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkOm9C2untuu1fmMoG890iroOe8=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.380634+00 2025-12-09 10:14:57.38064+00 7854 LZ1238#加大D SPMX-20240815303008 \N \N \N 1 \N [{"file_id": "a296391c-529d-4ad7-8016-25434526cdc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "539575e8e0dc4198852b0b665c698c43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "539575e8e0dc4198852b0b665c698c43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "539575e8e0dc4198852b0b665c698c43.jpg", "file_size": 23136, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539575e8e0dc4198852b0b665c698c43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539575e8e0dc4198852b0b665c698c43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539575e8e0dc4198852b0b665c698c43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/539575e8e0dc4198852b0b665c698c43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/539575e8e0dc4198852b0b665c698c43.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfaQ9AVh-yXO81zLxX1Yl6tFpec=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.382264+00 2025-12-09 10:14:57.382269+00 7855 C327#黑色 SPMX-20240815303000 \N \N \N 1 \N [{"file_id": "9254cdde-92af-461c-9397-5151aedab5ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a241704438304ea8a118a72448376ef8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a241704438304ea8a118a72448376ef8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a241704438304ea8a118a72448376ef8.jpg", "file_size": 30138, "is_delete": false, "file_type": 1, "original_file_name": "C327#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a241704438304ea8a118a72448376ef8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a241704438304ea8a118a72448376ef8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a241704438304ea8a118a72448376ef8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a241704438304ea8a118a72448376ef8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a241704438304ea8a118a72448376ef8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DoMMm6UOnBZwrlPc_ynt3wI7hps=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.383929+00 2025-12-09 10:14:57.383933+00 7856 LJ0302-2#绿色 SPMX-20240815303001 \N \N \N 1 \N [{"file_id": "da11d582-d72b-4cc8-83c4-314f432d1c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947715cba6c44cde83c0e1b53dc7cece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947715cba6c44cde83c0e1b53dc7cece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947715cba6c44cde83c0e1b53dc7cece.jpg", "file_size": 21729, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947715cba6c44cde83c0e1b53dc7cece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947715cba6c44cde83c0e1b53dc7cece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947715cba6c44cde83c0e1b53dc7cece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947715cba6c44cde83c0e1b53dc7cece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947715cba6c44cde83c0e1b53dc7cece.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fkpp_hmI0H_xMOjyvrZGW5W6gKY=", "createTime": "2024-08-15 14:46:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.385785+00 2025-12-09 10:14:57.38579+00 7857 0003-336#WJC22 SPMX-20240815303009 \N \N \N 1 \N [{"file_id": "42bca34e-f6e6-4c0e-ac39-09354a739d66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb90a6564bdc4933a38c4c3b8617ecd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb90a6564bdc4933a38c4c3b8617ecd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb90a6564bdc4933a38c4c3b8617ecd6.jpg", "file_size": 13176, "is_delete": false, "file_type": 1, "original_file_name": "0003-336#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90a6564bdc4933a38c4c3b8617ecd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90a6564bdc4933a38c4c3b8617ecd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90a6564bdc4933a38c4c3b8617ecd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb90a6564bdc4933a38c4c3b8617ecd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb90a6564bdc4933a38c4c3b8617ecd6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2_yMA_t08Gt3IzQ50VGb8AqJVk=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.387678+00 2025-12-09 10:14:57.387683+00 7858 LJ0302-2#蓝色 SPMX-20240815303011 \N \N \N 1 \N [{"file_id": "9b3dbb7e-716a-4b59-a7ff-2a08298fa1fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcc21e281e53404f9b3ff0ea7999f0bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcc21e281e53404f9b3ff0ea7999f0bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcc21e281e53404f9b3ff0ea7999f0bd.jpg", "file_size": 27453, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc21e281e53404f9b3ff0ea7999f0bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc21e281e53404f9b3ff0ea7999f0bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcc21e281e53404f9b3ff0ea7999f0bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcc21e281e53404f9b3ff0ea7999f0bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcc21e281e53404f9b3ff0ea7999f0bd.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84V9dQS0QxpDX733pX9eJreOrU8=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.389327+00 2025-12-09 10:14:57.389331+00 7859 0003-338#WJC22 SPMX-20240815303028 \N \N \N 1 \N [{"file_id": "da5cd4fa-4f32-4a2c-8975-68d0fe5dbaa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bea1e9966d9c4207b12c8856800a6342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bea1e9966d9c4207b12c8856800a6342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bea1e9966d9c4207b12c8856800a6342.jpg", "file_size": 11633, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea1e9966d9c4207b12c8856800a6342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea1e9966d9c4207b12c8856800a6342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea1e9966d9c4207b12c8856800a6342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bea1e9966d9c4207b12c8856800a6342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bea1e9966d9c4207b12c8856800a6342.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHDVs1c5H060yvBupz3gxu0XYfk=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.390968+00 2025-12-09 10:14:57.390973+00 7860 LJ0302-2#黑色 SPMX-20240815303025 \N \N \N 1 \N [{"file_id": "cc40eb9d-5642-4587-924d-49bf3af75111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg", "file_size": 28195, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bdcb1b8a3dd473c9ab1d0107276ffc1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xSc3_odALIb5Gb6edoaegH9QQvU=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.392857+00 2025-12-09 10:14:57.392863+00 7861 HT0101-15#WJC22 SPMX-20240815303015 \N \N \N 1 \N [{"file_id": "0ebe66ef-1324-473f-a4df-2d25424e4c38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef567a58e0e46b7b19cf285e1a28b2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef567a58e0e46b7b19cf285e1a28b2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef567a58e0e46b7b19cf285e1a28b2a.jpg", "file_size": 24089, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-15#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef567a58e0e46b7b19cf285e1a28b2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef567a58e0e46b7b19cf285e1a28b2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef567a58e0e46b7b19cf285e1a28b2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef567a58e0e46b7b19cf285e1a28b2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef567a58e0e46b7b19cf285e1a28b2a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZU__LvnfvvGS7nTeKXIWeAcTzI=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.394733+00 2025-12-09 10:14:57.394738+00 7862 FHXGPK-078-1 SPMX-20240815303021 \N \N \N 1 \N [{"file_id": "71be1619-41cb-47fa-a2b3-1811bc8c29ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef23c2d3736046ad824fba744e090433.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef23c2d3736046ad824fba744e090433.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef23c2d3736046ad824fba744e090433.jpg", "file_size": 36771, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-078-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef23c2d3736046ad824fba744e090433.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef23c2d3736046ad824fba744e090433.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef23c2d3736046ad824fba744e090433.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef23c2d3736046ad824fba744e090433.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef23c2d3736046ad824fba744e090433.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuVhE_pxXAr0z6bug7R3R-wFw_Q=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.396354+00 2025-12-09 10:14:57.39636+00 7863 23-2112#-A16黑色袖子3XL SPMX-20240815303022 \N \N \N 1 \N [{"file_id": "be5bb6e1-fe7c-484a-8221-ca35ae08c0f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92db15c810544ce1866a5a82e022e1cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92db15c810544ce1866a5a82e022e1cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92db15c810544ce1866a5a82e022e1cb.jpg", "file_size": 7783, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92db15c810544ce1866a5a82e022e1cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92db15c810544ce1866a5a82e022e1cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92db15c810544ce1866a5a82e022e1cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92db15c810544ce1866a5a82e022e1cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92db15c810544ce1866a5a82e022e1cb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hgIlSoqs8lXTxvnYW9Oew67R8MM=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.397989+00 2025-12-09 10:14:57.397994+00 7864 80303#匹布 SPMX-20240815303016 \N \N \N 1 \N [{"file_id": "41ae0fa5-ae99-4ff9-9c55-fa583551e473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "797fe10854fe44d99ec6e8a7ce31b7fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "797fe10854fe44d99ec6e8a7ce31b7fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "797fe10854fe44d99ec6e8a7ce31b7fb.jpg", "file_size": 6905, "is_delete": false, "file_type": 1, "original_file_name": "80303#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797fe10854fe44d99ec6e8a7ce31b7fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797fe10854fe44d99ec6e8a7ce31b7fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797fe10854fe44d99ec6e8a7ce31b7fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/797fe10854fe44d99ec6e8a7ce31b7fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/797fe10854fe44d99ec6e8a7ce31b7fb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VlzKl4YjXEaDvYFwpHZ11E961iw=", "createTime": "2024-08-15 14:46:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.399866+00 2025-12-09 10:14:57.399871+00 7865 JTSS032FW#VS-D3 SPMX-20240815303019 \N \N \N 1 \N [{"file_id": "3f05f750-178e-46c8-923e-f851fe7cf261", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f1aced9d759437c9aedc5142b7882a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f1aced9d759437c9aedc5142b7882a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f1aced9d759437c9aedc5142b7882a0.jpg", "file_size": 12404, "is_delete": false, "file_type": 1, "original_file_name": "JTSS032FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f1aced9d759437c9aedc5142b7882a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f1aced9d759437c9aedc5142b7882a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f1aced9d759437c9aedc5142b7882a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f1aced9d759437c9aedc5142b7882a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f1aced9d759437c9aedc5142b7882a0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXIzChIdo3ZulhlgIdGYLFR46VU=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.401802+00 2025-12-09 10:14:57.401807+00 7866 1064#青色袖子 SPMX-20240815303024 \N \N \N 1 \N [{"file_id": "d7e94e94-9fc0-4883-8118-18263d928540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7d7d9e91a12422a9d99e537b9c687ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7d7d9e91a12422a9d99e537b9c687ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7d7d9e91a12422a9d99e537b9c687ca.jpg", "file_size": 9433, "is_delete": false, "file_type": 1, "original_file_name": "1064#青色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7d9e91a12422a9d99e537b9c687ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7d9e91a12422a9d99e537b9c687ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7d9e91a12422a9d99e537b9c687ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7d7d9e91a12422a9d99e537b9c687ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7d7d9e91a12422a9d99e537b9c687ca.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQ4YP8K3Tx0TtjdudeyZEqmI_bQ=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.403431+00 2025-12-09 10:14:57.403436+00 7867 80303#小童 SPMX-20240815303026 \N \N \N 1 \N [{"file_id": "bc8e0bb6-7441-4a3b-a504-6f102e648a7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c85a5624b6472885e037c26d526cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c85a5624b6472885e037c26d526cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c85a5624b6472885e037c26d526cc6.jpg", "file_size": 20262, "is_delete": false, "file_type": 1, "original_file_name": "80303#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c85a5624b6472885e037c26d526cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c85a5624b6472885e037c26d526cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c85a5624b6472885e037c26d526cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c85a5624b6472885e037c26d526cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c85a5624b6472885e037c26d526cc6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cLtdJv4WhsFkSs-wT70vTULrmDY=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.405078+00 2025-12-09 10:14:57.405083+00 7868 HT0101-150#WJC22 SPMX-20240815303027 \N \N \N 1 \N [{"file_id": "77000a64-d502-4f75-b6e5-4cc3e2fb24dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9e196994f348d58c6b50057e47dc76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9e196994f348d58c6b50057e47dc76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9e196994f348d58c6b50057e47dc76.jpg", "file_size": 21097, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-150#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9e196994f348d58c6b50057e47dc76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9e196994f348d58c6b50057e47dc76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9e196994f348d58c6b50057e47dc76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9e196994f348d58c6b50057e47dc76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9e196994f348d58c6b50057e47dc76.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Up8wzXJoL49HS4O6sVYDGJb-8pg=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.406936+00 2025-12-09 10:14:57.406941+00 7869 0003-337#WJC22 SPMX-20240815303018 \N \N \N 1 \N [{"file_id": "2a7f3f61-eab4-45a5-a8aa-505176c2dff7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c00175a6de40bb8aee27c04537a6e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c00175a6de40bb8aee27c04537a6e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c00175a6de40bb8aee27c04537a6e9.jpg", "file_size": 24905, "is_delete": false, "file_type": 1, "original_file_name": "0003-337#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c00175a6de40bb8aee27c04537a6e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c00175a6de40bb8aee27c04537a6e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c00175a6de40bb8aee27c04537a6e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c00175a6de40bb8aee27c04537a6e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c00175a6de40bb8aee27c04537a6e9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTO6tjo0kpNYtSOCGI8S0zUCUuE=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.408862+00 2025-12-09 10:14:57.408867+00 7870 DL1080-B12#RC23 SPMX-20240815303029 \N \N \N 1 \N [{"file_id": "07877ede-9d57-4ec7-b1b5-67bd5b1f3424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "474b3fd21a76446db4b1692e2afea1dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "474b3fd21a76446db4b1692e2afea1dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "474b3fd21a76446db4b1692e2afea1dc.jpg", "file_size": 55654, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B12#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474b3fd21a76446db4b1692e2afea1dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474b3fd21a76446db4b1692e2afea1dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474b3fd21a76446db4b1692e2afea1dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/474b3fd21a76446db4b1692e2afea1dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/474b3fd21a76446db4b1692e2afea1dc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hiPlF7JhZqsItXaw8oN9OAHU4E4=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.410501+00 2025-12-09 10:14:57.410506+00 7871 LZ1238#加大E SPMX-20240815303020 \N \N \N 1 \N [{"file_id": "fe6cd8d5-e1ae-4dda-a677-4e11b38af37c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ff0e293b0164153b66d2e9505e94aa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ff0e293b0164153b66d2e9505e94aa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ff0e293b0164153b66d2e9505e94aa5.jpg", "file_size": 28368, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff0e293b0164153b66d2e9505e94aa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff0e293b0164153b66d2e9505e94aa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff0e293b0164153b66d2e9505e94aa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ff0e293b0164153b66d2e9505e94aa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ff0e293b0164153b66d2e9505e94aa5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cMZu6Mz4sixEaTXVzxXOnAXadQ=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.412154+00 2025-12-09 10:14:57.412159+00 7872 C328#墨绿 SPMX-20240815303023 \N \N \N 1 \N [{"file_id": "e4a29538-25b2-4cd0-9bc9-e56bad03d306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436c6d0012f64f69b1b21b7cbf9e40f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436c6d0012f64f69b1b21b7cbf9e40f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436c6d0012f64f69b1b21b7cbf9e40f0.jpg", "file_size": 27749, "is_delete": false, "file_type": 1, "original_file_name": "C328#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436c6d0012f64f69b1b21b7cbf9e40f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436c6d0012f64f69b1b21b7cbf9e40f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436c6d0012f64f69b1b21b7cbf9e40f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436c6d0012f64f69b1b21b7cbf9e40f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436c6d0012f64f69b1b21b7cbf9e40f0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fpW6msmvCZFKkCxgVWl5L-hcWHI=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.414055+00 2025-12-09 10:14:57.41406+00 7873 DL1080-B11#RC23 SPMX-20240815303017 \N \N \N 1 \N [{"file_id": "d7409935-8864-491e-8f8d-ae76e6e0832e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed00860033f7497ba3115ce3e069cd4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed00860033f7497ba3115ce3e069cd4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed00860033f7497ba3115ce3e069cd4c.jpg", "file_size": 73051, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B11#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed00860033f7497ba3115ce3e069cd4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed00860033f7497ba3115ce3e069cd4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed00860033f7497ba3115ce3e069cd4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed00860033f7497ba3115ce3e069cd4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed00860033f7497ba3115ce3e069cd4c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmZI0xm53ICcDYR08tfbAOWsmcA=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.415841+00 2025-12-09 10:14:57.415846+00 7874 0003-338#墨绿 SPMX-20240815303038 \N \N \N 1 \N [{"file_id": "54d9ce1f-94ad-43e3-a286-61040ae148e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "055218934fd04df096a31c640c9e1170.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "055218934fd04df096a31c640c9e1170.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "055218934fd04df096a31c640c9e1170.jpg", "file_size": 21511, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055218934fd04df096a31c640c9e1170.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055218934fd04df096a31c640c9e1170.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055218934fd04df096a31c640c9e1170.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/055218934fd04df096a31c640c9e1170.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/055218934fd04df096a31c640c9e1170.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1j6xnNak9krNR_6JkMDisxUwQ0=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.417495+00 2025-12-09 10:14:57.4175+00 7875 1066#亮黄 SPMX-20240815303034 \N \N \N 1 \N [{"file_id": "edd8127b-a528-466d-b10e-f2ef9f711ab7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d8fce1d361f44a88e60a0aeb397968a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d8fce1d361f44a88e60a0aeb397968a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d8fce1d361f44a88e60a0aeb397968a.jpg", "file_size": 13607, "is_delete": false, "file_type": 1, "original_file_name": "1066#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8fce1d361f44a88e60a0aeb397968a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8fce1d361f44a88e60a0aeb397968a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8fce1d361f44a88e60a0aeb397968a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d8fce1d361f44a88e60a0aeb397968a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d8fce1d361f44a88e60a0aeb397968a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-HOimWVNHmD4lZ1SHDV9AExhW0=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.419118+00 2025-12-09 10:14:57.419123+00 7876 HT0101-151#WJC22 SPMX-20240815303037 \N \N \N 1 \N [{"file_id": "0288393e-ecc5-4b10-91d0-e2bfdb2a04c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86772d421c2143f7a4bd00b5accd91b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86772d421c2143f7a4bd00b5accd91b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86772d421c2143f7a4bd00b5accd91b4.jpg", "file_size": 17648, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-151#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86772d421c2143f7a4bd00b5accd91b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86772d421c2143f7a4bd00b5accd91b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86772d421c2143f7a4bd00b5accd91b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86772d421c2143f7a4bd00b5accd91b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86772d421c2143f7a4bd00b5accd91b4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7G5yrj3a_P4XcUuD-5_wRo6afAM=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.420975+00 2025-12-09 10:14:57.42098+00 7877 LJ0302-5#咖色 SPMX-20240815303036 \N \N \N 1 \N [{"file_id": "8b6eb9e7-ef3f-4b51-a405-c3051172e446", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d01849bc2dc54b17bb2cb7973785b419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d01849bc2dc54b17bb2cb7973785b419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d01849bc2dc54b17bb2cb7973785b419.jpg", "file_size": 19021, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01849bc2dc54b17bb2cb7973785b419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01849bc2dc54b17bb2cb7973785b419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01849bc2dc54b17bb2cb7973785b419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d01849bc2dc54b17bb2cb7973785b419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d01849bc2dc54b17bb2cb7973785b419.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cLiaRGm2KuHdYyGNx7O_hLi3Ugk=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.422619+00 2025-12-09 10:14:57.422624+00 7878 JTSS033#绿底 SPMX-20240815303030 \N \N \N 1 \N [{"file_id": "61dcfd22-43bb-419e-b95e-321d5cbbe7fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f19765c9b19411086ddfc287bf2cce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f19765c9b19411086ddfc287bf2cce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f19765c9b19411086ddfc287bf2cce5.jpg", "file_size": 17811, "is_delete": false, "file_type": 1, "original_file_name": "JTSS033#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f19765c9b19411086ddfc287bf2cce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f19765c9b19411086ddfc287bf2cce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f19765c9b19411086ddfc287bf2cce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f19765c9b19411086ddfc287bf2cce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f19765c9b19411086ddfc287bf2cce5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gv-wliUsI6vl1a_uBWEs38ruDFY=", "createTime": "2024-08-15 14:46:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.424302+00 2025-12-09 10:14:57.424307+00 7879 C328#绿色-LWQ15 SPMX-20240815303046 \N \N \N 1 \N [{"file_id": "06177be9-3320-479f-bac6-3e957eb711ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "585fcf3c55014dbabdb2c084f770056e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "585fcf3c55014dbabdb2c084f770056e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "585fcf3c55014dbabdb2c084f770056e.jpg", "file_size": 26002, "is_delete": false, "file_type": 1, "original_file_name": "C328#绿色-LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585fcf3c55014dbabdb2c084f770056e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585fcf3c55014dbabdb2c084f770056e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585fcf3c55014dbabdb2c084f770056e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/585fcf3c55014dbabdb2c084f770056e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/585fcf3c55014dbabdb2c084f770056e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lndZg3KdSYYHlLmQemaMab_jS5M=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.425959+00 2025-12-09 10:14:57.425964+00 7880 FHXGPK-078-2 SPMX-20240815303031 \N \N \N 1 \N [{"file_id": "a167931e-9552-4047-9192-72b6cf8bcf9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f1e67557a7e4a87b8c81abc539f771b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f1e67557a7e4a87b8c81abc539f771b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f1e67557a7e4a87b8c81abc539f771b.jpg", "file_size": 37716, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-078-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1e67557a7e4a87b8c81abc539f771b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1e67557a7e4a87b8c81abc539f771b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1e67557a7e4a87b8c81abc539f771b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f1e67557a7e4a87b8c81abc539f771b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f1e67557a7e4a87b8c81abc539f771b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVDntLyh3l2qz1_1yapbY6YqU8o=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.427587+00 2025-12-09 10:14:57.427592+00 7881 80303#裤子 SPMX-20240815303039 \N \N \N 1 \N [{"file_id": "4c7a30a4-1289-488a-8e5c-dc098d8dc21c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "363b30badef04729b21f6af3b8b01851.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "363b30badef04729b21f6af3b8b01851.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "363b30badef04729b21f6af3b8b01851.jpg", "file_size": 14781, "is_delete": false, "file_type": 1, "original_file_name": "80303#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363b30badef04729b21f6af3b8b01851.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363b30badef04729b21f6af3b8b01851.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363b30badef04729b21f6af3b8b01851.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/363b30badef04729b21f6af3b8b01851.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/363b30badef04729b21f6af3b8b01851.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmtBGHr76I4qPg0Ee2kOBYdzvtQ=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.42923+00 2025-12-09 10:14:57.429235+00 7882 23-2112#-A16黑色领口通用 SPMX-20240815303040 \N \N \N 1 \N [{"file_id": "63ef3bfc-a546-4c84-a52b-f19548fa2fc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54fc2b5e24be44a1b14699073b09c91b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54fc2b5e24be44a1b14699073b09c91b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54fc2b5e24be44a1b14699073b09c91b.jpg", "file_size": 8478, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc2b5e24be44a1b14699073b09c91b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc2b5e24be44a1b14699073b09c91b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc2b5e24be44a1b14699073b09c91b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54fc2b5e24be44a1b14699073b09c91b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54fc2b5e24be44a1b14699073b09c91b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGtlWStxxOSNd7MoKOl22jAqnH4=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.431075+00 2025-12-09 10:14:57.43108+00 7883 JTSS033#黑底 SPMX-20240815303041 \N \N \N 1 \N [{"file_id": "7a8517f1-f664-44f6-83a8-28373213afc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96538d0e1604af4943c796655be6946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96538d0e1604af4943c796655be6946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96538d0e1604af4943c796655be6946.jpg", "file_size": 18177, "is_delete": false, "file_type": 1, "original_file_name": "JTSS033#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96538d0e1604af4943c796655be6946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96538d0e1604af4943c796655be6946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96538d0e1604af4943c796655be6946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96538d0e1604af4943c796655be6946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96538d0e1604af4943c796655be6946.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjMh7dR-XH_X7oXdKOMW9RNkgXo=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.432721+00 2025-12-09 10:14:57.432726+00 7884 1066#彩蓝 SPMX-20240815303044 \N \N \N 1 \N [{"file_id": "1dcd40cd-3a96-4a8b-b265-0179ddd1ada5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "719dcfba209442abb68d04cac34286ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "719dcfba209442abb68d04cac34286ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "719dcfba209442abb68d04cac34286ef.jpg", "file_size": 12399, "is_delete": false, "file_type": 1, "original_file_name": "1066#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719dcfba209442abb68d04cac34286ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719dcfba209442abb68d04cac34286ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719dcfba209442abb68d04cac34286ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/719dcfba209442abb68d04cac34286ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/719dcfba209442abb68d04cac34286ef.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFu6sCbDfn5nShBBYZsY_ezWnNU=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.434357+00 2025-12-09 10:14:57.434362+00 7885 LZ1238#加大加长-A1 SPMX-20240815303033 \N \N \N 1 \N [{"file_id": "1f1b5771-c9c3-441e-83b8-2f6f8d3da775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d765e08522c4a90ac5fcdddc3582526.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d765e08522c4a90ac5fcdddc3582526.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d765e08522c4a90ac5fcdddc3582526.jpg", "file_size": 25375, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长-A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d765e08522c4a90ac5fcdddc3582526.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d765e08522c4a90ac5fcdddc3582526.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d765e08522c4a90ac5fcdddc3582526.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d765e08522c4a90ac5fcdddc3582526.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d765e08522c4a90ac5fcdddc3582526.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3wQbxxH8lAUDIipH1SlDZ_bwCU=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.436028+00 2025-12-09 10:14:57.436032+00 7886 DL1080-B13#RC23 SPMX-20240815303043 \N \N \N 1 \N [{"file_id": "322e83cb-e0fb-4854-bfdd-8b7cfaefbe84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbfa438408344785b7460d266e12067c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbfa438408344785b7460d266e12067c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbfa438408344785b7460d266e12067c.jpg", "file_size": 69113, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B13#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa438408344785b7460d266e12067c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa438408344785b7460d266e12067c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa438408344785b7460d266e12067c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbfa438408344785b7460d266e12067c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbfa438408344785b7460d266e12067c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXWq11Zs4D2_955JhDRKBYSPDXg=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.437658+00 2025-12-09 10:14:57.437663+00 7887 LZ1238#加大加长-A2 SPMX-20240815303045 \N \N \N 1 \N [{"file_id": "34b3a040-db46-4703-aaa5-dc4185d5b274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91b4ecadc216439abf320b57aabddf21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91b4ecadc216439abf320b57aabddf21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91b4ecadc216439abf320b57aabddf21.jpg", "file_size": 28105, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长-A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b4ecadc216439abf320b57aabddf21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b4ecadc216439abf320b57aabddf21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b4ecadc216439abf320b57aabddf21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91b4ecadc216439abf320b57aabddf21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91b4ecadc216439abf320b57aabddf21.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GEFFxlVIspan5KSBaAGkP0w-qcE=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.439323+00 2025-12-09 10:14:57.439328+00 7888 C328#白色 SPMX-20240815303035 \N \N \N 1 \N [{"file_id": "a234a721-3c36-4783-9842-8d6c2bfee2ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c567eb46091f45e7a139e41082450eec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c567eb46091f45e7a139e41082450eec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c567eb46091f45e7a139e41082450eec.jpg", "file_size": 27691, "is_delete": false, "file_type": 1, "original_file_name": "C328#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c567eb46091f45e7a139e41082450eec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c567eb46091f45e7a139e41082450eec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c567eb46091f45e7a139e41082450eec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c567eb46091f45e7a139e41082450eec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c567eb46091f45e7a139e41082450eec.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3r5mYGSek25SYNGPemsotXYG7Rs=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.441179+00 2025-12-09 10:14:57.441185+00 7889 23-2112#-A16黑色袖子4XL SPMX-20240815303032 \N \N \N 1 \N [{"file_id": "b2f5c944-4604-401a-8ef0-2316d88223da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f143170d8e20403eaf0653af3e7bb8d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f143170d8e20403eaf0653af3e7bb8d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f143170d8e20403eaf0653af3e7bb8d8.jpg", "file_size": 8522, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f143170d8e20403eaf0653af3e7bb8d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f143170d8e20403eaf0653af3e7bb8d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f143170d8e20403eaf0653af3e7bb8d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f143170d8e20403eaf0653af3e7bb8d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f143170d8e20403eaf0653af3e7bb8d8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R22YbQvPY6lTRcJKHEPc8PVI_HY=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.44306+00 2025-12-09 10:14:57.443065+00 7890 FHXGPK-078-3 SPMX-20240815303042 \N \N \N 1 \N [{"file_id": "4f0d6596-0f2c-4d9e-82c6-d1a7ce4d1af9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81eb7a4812904b84ab5b79553811b075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81eb7a4812904b84ab5b79553811b075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81eb7a4812904b84ab5b79553811b075.jpg", "file_size": 38885, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-078-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81eb7a4812904b84ab5b79553811b075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81eb7a4812904b84ab5b79553811b075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81eb7a4812904b84ab5b79553811b075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81eb7a4812904b84ab5b79553811b075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81eb7a4812904b84ab5b79553811b075.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibxjxa4_8v4MfsuYcv0ViLJkmXQ=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.444687+00 2025-12-09 10:14:57.444691+00 7891 LJ0302-5#杏色 SPMX-20240815303047 \N \N \N 1 \N [{"file_id": "00c464d8-fa06-4826-b7e0-aabfdc6b1d3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c473212459a46bc8bc7625f085633fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c473212459a46bc8bc7625f085633fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c473212459a46bc8bc7625f085633fc.jpg", "file_size": 31338, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c473212459a46bc8bc7625f085633fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c473212459a46bc8bc7625f085633fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c473212459a46bc8bc7625f085633fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c473212459a46bc8bc7625f085633fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c473212459a46bc8bc7625f085633fc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPItBiDo9AunGfP6fdx-ciqvibc=", "createTime": "2024-08-15 14:46:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.446345+00 2025-12-09 10:14:57.44635+00 7892 0003-338#天蓝 SPMX-20240815303050 \N \N \N 1 \N [{"file_id": "9ea09390-0397-424e-a8a3-c9fa0d2bb930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg", "file_size": 16108, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e8bfb3c97fc4f43bb11d6340f0a3fd8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpPz_FPvWx_mdMUdN9_14a61-BY=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.448196+00 2025-12-09 10:14:57.448201+00 7893 80304#上衣 SPMX-20240815303049 \N \N \N 1 \N [{"file_id": "55ca5d39-b242-4c80-a46e-1d80728ebec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91260bd5d2924465be33a17da0dc3c8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91260bd5d2924465be33a17da0dc3c8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91260bd5d2924465be33a17da0dc3c8d.jpg", "file_size": 13790, "is_delete": false, "file_type": 1, "original_file_name": "80304#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91260bd5d2924465be33a17da0dc3c8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91260bd5d2924465be33a17da0dc3c8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91260bd5d2924465be33a17da0dc3c8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91260bd5d2924465be33a17da0dc3c8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91260bd5d2924465be33a17da0dc3c8d.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fUxx8397do4bDB6efFsA2Rh79o=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.449828+00 2025-12-09 10:14:57.449833+00 7894 23-2112#-A16黑色领子通用 SPMX-20240815303051 \N \N \N 1 \N [{"file_id": "ea966474-07ba-468e-84e3-8d00378a4821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ef963f678f41219602273aef10de31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ef963f678f41219602273aef10de31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ef963f678f41219602273aef10de31.jpg", "file_size": 10327, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A16黑色领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ef963f678f41219602273aef10de31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ef963f678f41219602273aef10de31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ef963f678f41219602273aef10de31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ef963f678f41219602273aef10de31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ef963f678f41219602273aef10de31.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fe5d63ohGC89k2G_JRxgZ2qCn8A=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.451454+00 2025-12-09 10:14:57.451459+00 7895 HT0101-151#原版色 SPMX-20240815303048 \N \N \N 1 \N [{"file_id": "73623f65-ad1f-4525-b58f-2ecc5265faf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6949a036a54ac2bd46d93488b8d676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6949a036a54ac2bd46d93488b8d676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6949a036a54ac2bd46d93488b8d676.jpg", "file_size": 15959, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-151#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6949a036a54ac2bd46d93488b8d676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6949a036a54ac2bd46d93488b8d676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6949a036a54ac2bd46d93488b8d676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6949a036a54ac2bd46d93488b8d676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6949a036a54ac2bd46d93488b8d676.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dySmeTKzA-iDb6Q-lQAxbPBq-Tc=", "createTime": "2024-08-15 14:46:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.453317+00 2025-12-09 10:14:57.453322+00 7896 JTSS033FW#VS-D3 SPMX-20240815303052 \N \N \N 1 \N [{"file_id": "eb2d4cb9-17e6-4214-a4b5-ce1774548d87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed42ab2dd4444d195dda495b758fe80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed42ab2dd4444d195dda495b758fe80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed42ab2dd4444d195dda495b758fe80.jpg", "file_size": 14466, "is_delete": false, "file_type": 1, "original_file_name": "JTSS033FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed42ab2dd4444d195dda495b758fe80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed42ab2dd4444d195dda495b758fe80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed42ab2dd4444d195dda495b758fe80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed42ab2dd4444d195dda495b758fe80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed42ab2dd4444d195dda495b758fe80.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w36aZwg2b6h1A71WLR082tgIGWM=", "createTime": "2024-08-15 14:46:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.455181+00 2025-12-09 10:14:57.455186+00 7897 1066#浅蓝 SPMX-20240815303053 \N \N \N 1 \N [{"file_id": "1d751846-fc31-49a9-8c97-272bc3de88dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a66bbb27d10045b89a2eafd730d439fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a66bbb27d10045b89a2eafd730d439fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a66bbb27d10045b89a2eafd730d439fd.jpg", "file_size": 13435, "is_delete": false, "file_type": 1, "original_file_name": "1066#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66bbb27d10045b89a2eafd730d439fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66bbb27d10045b89a2eafd730d439fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66bbb27d10045b89a2eafd730d439fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a66bbb27d10045b89a2eafd730d439fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a66bbb27d10045b89a2eafd730d439fd.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuzvdxea7r4k6b_lyfhMgdo8HIU=", "createTime": "2024-08-15 14:46:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.456828+00 2025-12-09 10:14:57.456834+00 7898 FHXGPK-078-4 SPMX-20240815303055 \N \N \N 1 \N [{"file_id": "427bf13f-8eb1-4cad-9d04-61991acf133c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7abf7f327a3a489a91a47ac86d9bcdcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7abf7f327a3a489a91a47ac86d9bcdcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7abf7f327a3a489a91a47ac86d9bcdcb.jpg", "file_size": 35568, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-078-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf7f327a3a489a91a47ac86d9bcdcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf7f327a3a489a91a47ac86d9bcdcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf7f327a3a489a91a47ac86d9bcdcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7abf7f327a3a489a91a47ac86d9bcdcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7abf7f327a3a489a91a47ac86d9bcdcb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02ac3ne49iU_DEbPE3QAibfvpLQ=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.458485+00 2025-12-09 10:14:57.458489+00 7899 23-2112#-A1前后片3XL SPMX-20240815303054 \N \N \N 1 \N [{"file_id": "6b251717-a638-4520-b415-a9d2b91c3862", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e82677b2403f4097a0b7c30e6c644d7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e82677b2403f4097a0b7c30e6c644d7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e82677b2403f4097a0b7c30e6c644d7b.jpg", "file_size": 10237, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82677b2403f4097a0b7c30e6c644d7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82677b2403f4097a0b7c30e6c644d7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82677b2403f4097a0b7c30e6c644d7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e82677b2403f4097a0b7c30e6c644d7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e82677b2403f4097a0b7c30e6c644d7b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URyfGGnlxUIyJXiMb-Pc30EoCYM=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.460242+00 2025-12-09 10:14:57.460246+00 7900 HT0101-151#蓝色 SPMX-20240815303057 \N \N \N 1 \N [{"file_id": "fcdec2f5-ef87-406d-9846-934a7e3ee14e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d302c59d1c24582a6678adba6072e42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d302c59d1c24582a6678adba6072e42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d302c59d1c24582a6678adba6072e42.jpg", "file_size": 17434, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-151#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d302c59d1c24582a6678adba6072e42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d302c59d1c24582a6678adba6072e42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d302c59d1c24582a6678adba6072e42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d302c59d1c24582a6678adba6072e42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d302c59d1c24582a6678adba6072e42.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VthOQqWm-1PHjb9bFnkGEskAUIA=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.461719+00 2025-12-09 10:14:57.461724+00 7901 C328#绿色 SPMX-20240815303056 \N \N \N 1 \N [{"file_id": "a758bcb0-f661-40e1-9d37-bf57cf877a11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59ca1928bab94dda898cd819037a6220.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59ca1928bab94dda898cd819037a6220.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59ca1928bab94dda898cd819037a6220.jpg", "file_size": 25701, "is_delete": false, "file_type": 1, "original_file_name": "C328#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca1928bab94dda898cd819037a6220.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca1928bab94dda898cd819037a6220.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca1928bab94dda898cd819037a6220.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59ca1928bab94dda898cd819037a6220.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59ca1928bab94dda898cd819037a6220.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZ58zlNATKqHZLlkBU5PiqgaeZI=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.463207+00 2025-12-09 10:14:57.463211+00 7902 23-2112#-A1前后片4XL SPMX-20240815303065 \N \N \N 1 \N [{"file_id": "f77a1227-c389-41b2-a0c4-0f31881d3dbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cab203d0602146f3b07e2c5c9a9c18df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cab203d0602146f3b07e2c5c9a9c18df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cab203d0602146f3b07e2c5c9a9c18df.jpg", "file_size": 10276, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab203d0602146f3b07e2c5c9a9c18df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab203d0602146f3b07e2c5c9a9c18df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab203d0602146f3b07e2c5c9a9c18df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cab203d0602146f3b07e2c5c9a9c18df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cab203d0602146f3b07e2c5c9a9c18df.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-skXCPdSSFdllNw52s5ew6Xnu70=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.46468+00 2025-12-09 10:14:57.464684+00 7903 LZ1238#加大加长A1#正身RC23 SPMX-20240815303060 \N \N \N 1 \N [{"file_id": "77773182-e1d6-478d-8dc2-8ed679dfc527", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8b48ebf995e49bebd8263afd857ca48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8b48ebf995e49bebd8263afd857ca48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8b48ebf995e49bebd8263afd857ca48.jpg", "file_size": 24979, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A1#正身RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b48ebf995e49bebd8263afd857ca48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b48ebf995e49bebd8263afd857ca48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b48ebf995e49bebd8263afd857ca48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8b48ebf995e49bebd8263afd857ca48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8b48ebf995e49bebd8263afd857ca48.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppCsKjGzu8_E4JV7libf5I9G5_g=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.466156+00 2025-12-09 10:14:57.46616+00 7904 JTSS034#橙底 SPMX-20240815303061 \N \N \N 1 \N [{"file_id": "32a0df95-d118-4338-98b7-032b8d694855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a828bf7057ca4243b3a6d3c1ced91825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a828bf7057ca4243b3a6d3c1ced91825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a828bf7057ca4243b3a6d3c1ced91825.jpg", "file_size": 11348, "is_delete": false, "file_type": 1, "original_file_name": "JTSS034#橙底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a828bf7057ca4243b3a6d3c1ced91825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a828bf7057ca4243b3a6d3c1ced91825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a828bf7057ca4243b3a6d3c1ced91825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a828bf7057ca4243b3a6d3c1ced91825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a828bf7057ca4243b3a6d3c1ced91825.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rjh8p_kUmLlGUODvrZSfTRXDHzU=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.467627+00 2025-12-09 10:14:57.467631+00 7905 C328#黑色 SPMX-20240815303069 \N \N \N 1 \N [{"file_id": "f2262c4a-c0e2-43ac-87e7-34622eb25168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "381edc6d209d46069c0fe69fb0f4aa0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "381edc6d209d46069c0fe69fb0f4aa0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "381edc6d209d46069c0fe69fb0f4aa0f.jpg", "file_size": 28414, "is_delete": false, "file_type": 1, "original_file_name": "C328#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381edc6d209d46069c0fe69fb0f4aa0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381edc6d209d46069c0fe69fb0f4aa0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381edc6d209d46069c0fe69fb0f4aa0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/381edc6d209d46069c0fe69fb0f4aa0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/381edc6d209d46069c0fe69fb0f4aa0f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYQOjza2LOxkZ3j6FRy1F5N0dFE=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.469078+00 2025-12-09 10:14:57.469083+00 7906 DL1080-B2#RC23 SPMX-20240815303072 \N \N \N 1 \N [{"file_id": "25d3b33c-6d4f-4331-81dd-80c87f7fb24a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9aad929b5b2049fcb1e1658ea76fccd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9aad929b5b2049fcb1e1658ea76fccd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9aad929b5b2049fcb1e1658ea76fccd6.jpg", "file_size": 41945, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad929b5b2049fcb1e1658ea76fccd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad929b5b2049fcb1e1658ea76fccd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad929b5b2049fcb1e1658ea76fccd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9aad929b5b2049fcb1e1658ea76fccd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9aad929b5b2049fcb1e1658ea76fccd6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pb5yTDlRX7cF_duSx2plktD6EFM=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.470561+00 2025-12-09 10:14:57.470565+00 7907 1066#粉色 SPMX-20240815303075 \N \N \N 1 \N [{"file_id": "4c8f8674-3387-40f4-bec4-a2335a8bfd1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f3120368f14fa88bea5c508969a01f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f3120368f14fa88bea5c508969a01f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f3120368f14fa88bea5c508969a01f.jpg", "file_size": 13321, "is_delete": false, "file_type": 1, "original_file_name": "1066#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f3120368f14fa88bea5c508969a01f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f3120368f14fa88bea5c508969a01f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f3120368f14fa88bea5c508969a01f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f3120368f14fa88bea5c508969a01f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f3120368f14fa88bea5c508969a01f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:babfei4V5Ky-4HbK6xVyETUXBVs=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.472253+00 2025-12-09 10:14:57.472257+00 7908 LZ1238#加大加长A1#腰带RC23 SPMX-20240815303070 \N \N \N 1 \N [{"file_id": "9c951558-e0c4-41bc-af9d-7c299ee742c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc27dd3da6344892ae329a2db29a8a06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc27dd3da6344892ae329a2db29a8a06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc27dd3da6344892ae329a2db29a8a06.jpg", "file_size": 27706, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A1#腰带RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc27dd3da6344892ae329a2db29a8a06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc27dd3da6344892ae329a2db29a8a06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc27dd3da6344892ae329a2db29a8a06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc27dd3da6344892ae329a2db29a8a06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc27dd3da6344892ae329a2db29a8a06.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHrsAYOjFMLbJPNjAWJM7ZxjLJY=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.473715+00 2025-12-09 10:14:57.47372+00 7909 DL1080-B14#RC23 SPMX-20240815303059 \N \N \N 1 \N [{"file_id": "73b65156-4a30-4c06-934b-566e6803d63d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02af0e7310044c889afee54c52dac4c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02af0e7310044c889afee54c52dac4c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02af0e7310044c889afee54c52dac4c5.jpg", "file_size": 60854, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B14#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02af0e7310044c889afee54c52dac4c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02af0e7310044c889afee54c52dac4c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02af0e7310044c889afee54c52dac4c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02af0e7310044c889afee54c52dac4c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02af0e7310044c889afee54c52dac4c5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:15pla7XgmhTgZcqzIyVDQwu1UU0=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.475246+00 2025-12-09 10:14:57.475252+00 7910 LJ0302-5#深红色 SPMX-20240815303062 \N \N \N 1 \N [{"file_id": "27e6800c-f976-4125-b0bc-0dd376f23928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52ba2c4c30834a30ad20815aa839bf2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52ba2c4c30834a30ad20815aa839bf2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52ba2c4c30834a30ad20815aa839bf2b.jpg", "file_size": 27480, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#深红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ba2c4c30834a30ad20815aa839bf2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ba2c4c30834a30ad20815aa839bf2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ba2c4c30834a30ad20815aa839bf2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52ba2c4c30834a30ad20815aa839bf2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52ba2c4c30834a30ad20815aa839bf2b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmiAbchXnoAnoYf42lmdhLJDIxU=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.47677+00 2025-12-09 10:14:57.476774+00 7911 HT0101-151#黑色 SPMX-20240815303066 \N \N \N 1 \N [{"file_id": "6a384a8c-859a-4e7d-9833-a5e22bf56530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52caa54a45554b13865bc3c243ac2692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52caa54a45554b13865bc3c243ac2692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52caa54a45554b13865bc3c243ac2692.jpg", "file_size": 17237, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-151#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52caa54a45554b13865bc3c243ac2692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52caa54a45554b13865bc3c243ac2692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52caa54a45554b13865bc3c243ac2692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52caa54a45554b13865bc3c243ac2692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52caa54a45554b13865bc3c243ac2692.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wr-O_OT-kDs29Qu8uF7zCGnlNUY=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.478259+00 2025-12-09 10:14:57.478263+00 7912 80304#乱花 SPMX-20240815303067 \N \N \N 1 \N [{"file_id": "dd1cfa1b-09c5-4e20-886a-0ce81db95097", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18bd3dc3490e47169c0f194c3d82c669.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18bd3dc3490e47169c0f194c3d82c669.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18bd3dc3490e47169c0f194c3d82c669.jpg", "file_size": 7365, "is_delete": false, "file_type": 1, "original_file_name": "80304#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bd3dc3490e47169c0f194c3d82c669.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bd3dc3490e47169c0f194c3d82c669.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bd3dc3490e47169c0f194c3d82c669.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18bd3dc3490e47169c0f194c3d82c669.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18bd3dc3490e47169c0f194c3d82c669.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhrlPgAw-8bOM4snLwOTmbTWV4s=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.479702+00 2025-12-09 10:14:57.479709+00 7913 0003-338#宝蓝 SPMX-20240815303063 \N \N \N 1 \N [{"file_id": "8531d52f-a592-440c-8a8d-f35a7077fbcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17359b6a93ec4b82bb327cfbd44d3579.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17359b6a93ec4b82bb327cfbd44d3579.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17359b6a93ec4b82bb327cfbd44d3579.jpg", "file_size": 23841, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17359b6a93ec4b82bb327cfbd44d3579.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17359b6a93ec4b82bb327cfbd44d3579.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17359b6a93ec4b82bb327cfbd44d3579.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17359b6a93ec4b82bb327cfbd44d3579.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17359b6a93ec4b82bb327cfbd44d3579.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BY6KPhDPyEtkTfkDw1MaWzLxsC4=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.481175+00 2025-12-09 10:14:57.48118+00 7914 80304#中童 SPMX-20240815303058 \N \N \N 1 \N [{"file_id": "61cb360e-9806-4209-87ab-8859e16194f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c51e03d07be4650bf467343a6f61692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c51e03d07be4650bf467343a6f61692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c51e03d07be4650bf467343a6f61692.jpg", "file_size": 18759, "is_delete": false, "file_type": 1, "original_file_name": "80304#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c51e03d07be4650bf467343a6f61692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c51e03d07be4650bf467343a6f61692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c51e03d07be4650bf467343a6f61692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c51e03d07be4650bf467343a6f61692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c51e03d07be4650bf467343a6f61692.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkdKBHODCh9ROMzp8fM2sezDZKc=", "createTime": "2024-08-15 14:46:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.482611+00 2025-12-09 10:14:57.482615+00 7915 FHXGPK-078-5 SPMX-20240815303068 \N \N \N 1 \N [{"file_id": "1f133cad-bcca-40c3-8a10-e5a2ffac8dec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79b235ac0d2e46b29b654ffa16289d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79b235ac0d2e46b29b654ffa16289d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79b235ac0d2e46b29b654ffa16289d16.jpg", "file_size": 36258, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-078-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b235ac0d2e46b29b654ffa16289d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b235ac0d2e46b29b654ffa16289d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b235ac0d2e46b29b654ffa16289d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79b235ac0d2e46b29b654ffa16289d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79b235ac0d2e46b29b654ffa16289d16.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iMTmE6_Umduh2d49TAuC4n6LYQ=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.484345+00 2025-12-09 10:14:57.484349+00 7916 JTSS034#绿底 SPMX-20240815303074 \N \N \N 1 \N [{"file_id": "965be8f5-c94f-47ad-b225-d5fc35b5cd48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49634b26448e48e9a7c330ef89755e38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49634b26448e48e9a7c330ef89755e38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49634b26448e48e9a7c330ef89755e38.jpg", "file_size": 12942, "is_delete": false, "file_type": 1, "original_file_name": "JTSS034#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49634b26448e48e9a7c330ef89755e38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49634b26448e48e9a7c330ef89755e38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49634b26448e48e9a7c330ef89755e38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49634b26448e48e9a7c330ef89755e38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49634b26448e48e9a7c330ef89755e38.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpFxetM-tS5UbZmDg0rzsG239qU=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.485806+00 2025-12-09 10:14:57.48581+00 7917 1066#白色 SPMX-20240815303064 \N \N \N 1 \N [{"file_id": "57e3e606-cd82-48b5-815f-802278cc80b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "893b3267905e472f8bc43ee457356c63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "893b3267905e472f8bc43ee457356c63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "893b3267905e472f8bc43ee457356c63.jpg", "file_size": 15316, "is_delete": false, "file_type": 1, "original_file_name": "1066#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893b3267905e472f8bc43ee457356c63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893b3267905e472f8bc43ee457356c63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893b3267905e472f8bc43ee457356c63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/893b3267905e472f8bc43ee457356c63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/893b3267905e472f8bc43ee457356c63.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9O2tOZkhIpMwWpafGOYMz1jbqQ=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.487342+00 2025-12-09 10:14:57.487346+00 7918 LJ0302-5#绿色 SPMX-20240815303071 \N \N \N 1 \N [{"file_id": "2b0ccbe4-0016-4368-a7fd-92e87b41abc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e945281de8e4075b948035e432a68fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e945281de8e4075b948035e432a68fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e945281de8e4075b948035e432a68fe.jpg", "file_size": 25281, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e945281de8e4075b948035e432a68fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e945281de8e4075b948035e432a68fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e945281de8e4075b948035e432a68fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e945281de8e4075b948035e432a68fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e945281de8e4075b948035e432a68fe.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGse2yODP3RodUXZU6c42whYVng=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.488943+00 2025-12-09 10:14:57.488947+00 7919 0003-338#白色 SPMX-20240815303073 \N \N \N 1 \N [{"file_id": "6f2a3845-be94-464d-9740-344076f1fd23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a51447e7413e4a0688c649a6293e714a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a51447e7413e4a0688c649a6293e714a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a51447e7413e4a0688c649a6293e714a.jpg", "file_size": 20394, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51447e7413e4a0688c649a6293e714a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51447e7413e4a0688c649a6293e714a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51447e7413e4a0688c649a6293e714a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a51447e7413e4a0688c649a6293e714a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a51447e7413e4a0688c649a6293e714a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oq4U737m3KgDqHj9cZ7ioop8KRg=", "createTime": "2024-08-15 14:46:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.49046+00 2025-12-09 10:14:57.490464+00 7920 HT0101-152#WJC22 SPMX-20240815303077 \N \N \N 1 \N [{"file_id": "dfde75bc-50ba-4e85-9093-aac0a93180f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98019deb534a4a3a853f9e1e27e20141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98019deb534a4a3a853f9e1e27e20141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98019deb534a4a3a853f9e1e27e20141.jpg", "file_size": 7717, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-152#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98019deb534a4a3a853f9e1e27e20141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98019deb534a4a3a853f9e1e27e20141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98019deb534a4a3a853f9e1e27e20141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98019deb534a4a3a853f9e1e27e20141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98019deb534a4a3a853f9e1e27e20141.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Inzr8XHLd3jhkiZX72vxpN83krk=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.491965+00 2025-12-09 10:14:57.49197+00 7921 HT0101-153#WJC22 SPMX-20240815303088 \N \N \N 1 \N [{"file_id": "5f9f8ebb-27cb-4a9c-b237-64812e445283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c77ced79ef4345628dc60914061da1a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c77ced79ef4345628dc60914061da1a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c77ced79ef4345628dc60914061da1a8.jpg", "file_size": 20337, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-153#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77ced79ef4345628dc60914061da1a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77ced79ef4345628dc60914061da1a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77ced79ef4345628dc60914061da1a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c77ced79ef4345628dc60914061da1a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c77ced79ef4345628dc60914061da1a8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUAeJ4A3LjfRhRVYVLGHK26jseo=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.49347+00 2025-12-09 10:14:57.493474+00 7922 C330FWE#L SPMX-20240815303078 \N \N \N 1 \N [{"file_id": "a9132ada-8a0a-4498-aabf-8a88db1aff63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0e2950449c74dff97d17350f73f0bb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0e2950449c74dff97d17350f73f0bb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0e2950449c74dff97d17350f73f0bb4.jpg", "file_size": 16144, "is_delete": false, "file_type": 1, "original_file_name": "C330FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2950449c74dff97d17350f73f0bb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2950449c74dff97d17350f73f0bb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2950449c74dff97d17350f73f0bb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0e2950449c74dff97d17350f73f0bb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0e2950449c74dff97d17350f73f0bb4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUsYDag17IJRtkm5UAqkBdIUClc=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.494953+00 2025-12-09 10:14:57.494958+00 7923 80304#匹布 SPMX-20240815303079 \N \N \N 1 \N [{"file_id": "1ed99de3-c6ea-407a-ab92-b47749d25cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7968735b4c4fd5b87980b90dfa8276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7968735b4c4fd5b87980b90dfa8276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7968735b4c4fd5b87980b90dfa8276.jpg", "file_size": 7354, "is_delete": false, "file_type": 1, "original_file_name": "80304#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7968735b4c4fd5b87980b90dfa8276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7968735b4c4fd5b87980b90dfa8276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7968735b4c4fd5b87980b90dfa8276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7968735b4c4fd5b87980b90dfa8276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7968735b4c4fd5b87980b90dfa8276.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHq6dxROMALAvkfGt2A90iyvdm8=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.496464+00 2025-12-09 10:14:57.496468+00 7924 DL1080-B3#RC23 SPMX-20240815303084 \N \N \N 1 \N [{"file_id": "5a04c1d8-e7c0-4d1f-acf2-2dad597e130a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e1e6ff31b24b448f35019daa0a7db6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e1e6ff31b24b448f35019daa0a7db6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e1e6ff31b24b448f35019daa0a7db6.jpg", "file_size": 39831, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1e6ff31b24b448f35019daa0a7db6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1e6ff31b24b448f35019daa0a7db6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1e6ff31b24b448f35019daa0a7db6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e1e6ff31b24b448f35019daa0a7db6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e1e6ff31b24b448f35019daa0a7db6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crhfRuttM8cFbPeQCd4fyfUJKDs=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.497978+00 2025-12-09 10:14:57.497982+00 7925 0003-338#黑色 SPMX-20240815303085 \N \N \N 1 \N [{"file_id": "c8ab4540-27cb-42e1-b6f1-a0aeefa68a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a69d52b025145fc9eccc91141c32d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a69d52b025145fc9eccc91141c32d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a69d52b025145fc9eccc91141c32d28.jpg", "file_size": 23871, "is_delete": false, "file_type": 1, "original_file_name": "0003-338#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a69d52b025145fc9eccc91141c32d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a69d52b025145fc9eccc91141c32d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a69d52b025145fc9eccc91141c32d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a69d52b025145fc9eccc91141c32d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a69d52b025145fc9eccc91141c32d28.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3oMv6DpOnRnnkKY7E2epbURRJk=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.499531+00 2025-12-09 10:14:57.499537+00 7926 FHXGPK-079-1 SPMX-20240815303080 \N \N \N 1 \N [{"file_id": "cf496f5d-a978-45c8-8790-06429cc93607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddf6049513bd49b58c1ee7a29291262b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddf6049513bd49b58c1ee7a29291262b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddf6049513bd49b58c1ee7a29291262b.jpg", "file_size": 34730, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-079-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf6049513bd49b58c1ee7a29291262b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf6049513bd49b58c1ee7a29291262b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf6049513bd49b58c1ee7a29291262b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddf6049513bd49b58c1ee7a29291262b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddf6049513bd49b58c1ee7a29291262b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0dhrpGHx-K8ii4DUsLQ5cHkbVA=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.501244+00 2025-12-09 10:14:57.501249+00 7927 JTSS034FW#VS-D3 SPMX-20240815303083 \N \N \N 1 \N [{"file_id": "500004c2-1518-4e10-9787-3469c368a66f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ad8688f580f4fddbc685359cca32298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ad8688f580f4fddbc685359cca32298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ad8688f580f4fddbc685359cca32298.jpg", "file_size": 12306, "is_delete": false, "file_type": 1, "original_file_name": "JTSS034FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad8688f580f4fddbc685359cca32298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad8688f580f4fddbc685359cca32298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad8688f580f4fddbc685359cca32298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ad8688f580f4fddbc685359cca32298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ad8688f580f4fddbc685359cca32298.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qh8gH_Bp1rn5UDkq2ZIn2okxI3Q=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.502913+00 2025-12-09 10:14:57.502917+00 7928 23-2112#-A1袖子3XL SPMX-20240815303076 \N \N \N 1 \N [{"file_id": "f5c705e3-1cf7-40e2-a75f-d8dc299d8054", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0005ace7e02445a5afed147a793572c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0005ace7e02445a5afed147a793572c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0005ace7e02445a5afed147a793572c5.jpg", "file_size": 8823, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0005ace7e02445a5afed147a793572c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0005ace7e02445a5afed147a793572c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0005ace7e02445a5afed147a793572c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0005ace7e02445a5afed147a793572c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0005ace7e02445a5afed147a793572c5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlSMMxNQpPRyG4vM6F3kc7Y0hk4=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.504769+00 2025-12-09 10:14:57.504774+00 7929 106876FWF#2XL SPMX-20240815303086 \N \N \N 1 \N [{"file_id": "b359ce5f-e7b5-4c82-bd2c-2171e1cbda5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg", "file_size": 19522, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee7c91e4fd8b4ca798c0e5eaf6d4a54f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPCZrjY7nVIY2J1kKH2bc9iKTOc=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.506634+00 2025-12-09 10:14:57.506639+00 7930 LJ0302-5#黄色 SPMX-20240815303081 \N \N \N 1 \N [{"file_id": "80f6401f-17a3-4156-a837-448ca87ae8db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99457a11e0cf462396e9d4fd309b7951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99457a11e0cf462396e9d4fd309b7951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99457a11e0cf462396e9d4fd309b7951.jpg", "file_size": 30116, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99457a11e0cf462396e9d4fd309b7951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99457a11e0cf462396e9d4fd309b7951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99457a11e0cf462396e9d4fd309b7951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99457a11e0cf462396e9d4fd309b7951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99457a11e0cf462396e9d4fd309b7951.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyNEDd_6S4qmDt_jctWBn9Uo4fM=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.508427+00 2025-12-09 10:14:57.508431+00 7931 LZ1238#加大加长A2#正身RC23 SPMX-20240815303082 \N \N \N 1 \N [{"file_id": "d02e0199-c364-454e-bd39-a8bdfec8ddb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6db746a845e744a1b56686d07262d5a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6db746a845e744a1b56686d07262d5a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6db746a845e744a1b56686d07262d5a4.jpg", "file_size": 25465, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A2#正身RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db746a845e744a1b56686d07262d5a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db746a845e744a1b56686d07262d5a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db746a845e744a1b56686d07262d5a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6db746a845e744a1b56686d07262d5a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6db746a845e744a1b56686d07262d5a4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOnUzyNuS3okNn7XeKtL3bvCJPw=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.510079+00 2025-12-09 10:14:57.510084+00 7932 23-2112#-A1袖子4XL SPMX-20240815303087 \N \N \N 1 \N [{"file_id": "2f504d43-35dd-4063-be67-e0efc7ef0527", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59f302d46b0b484181b38cbbcde2322e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59f302d46b0b484181b38cbbcde2322e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59f302d46b0b484181b38cbbcde2322e.jpg", "file_size": 8562, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f302d46b0b484181b38cbbcde2322e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f302d46b0b484181b38cbbcde2322e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59f302d46b0b484181b38cbbcde2322e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59f302d46b0b484181b38cbbcde2322e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59f302d46b0b484181b38cbbcde2322e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-0ZfABqTssnFriqiurslfJ3Jqo=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.511701+00 2025-12-09 10:14:57.511712+00 7933 JTSS035# SPMX-20240815303093 \N \N \N 1 \N [{"file_id": "ef8311c0-06aa-40a0-ab40-cc079de81f47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41957170cc654a0fb46042dbc2884f7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41957170cc654a0fb46042dbc2884f7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41957170cc654a0fb46042dbc2884f7f.jpg", "file_size": 14232, "is_delete": false, "file_type": 1, "original_file_name": "JTSS035#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41957170cc654a0fb46042dbc2884f7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41957170cc654a0fb46042dbc2884f7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41957170cc654a0fb46042dbc2884f7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41957170cc654a0fb46042dbc2884f7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41957170cc654a0fb46042dbc2884f7f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AU0SF8HD2KLAVRX-dGxChcXSiG4=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.513331+00 2025-12-09 10:14:57.513336+00 7934 106876FWF#3XL SPMX-20240815303098 \N \N \N 1 \N [{"file_id": "bb618fcc-2915-475e-b16f-2a919903b714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99416d8c06474157b3429f40a9205f4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99416d8c06474157b3429f40a9205f4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99416d8c06474157b3429f40a9205f4a.jpg", "file_size": 18857, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99416d8c06474157b3429f40a9205f4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99416d8c06474157b3429f40a9205f4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99416d8c06474157b3429f40a9205f4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99416d8c06474157b3429f40a9205f4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99416d8c06474157b3429f40a9205f4a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKZqDBLaqZ9fUz8dd2gZyX7dWX0=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.514981+00 2025-12-09 10:14:57.514986+00 7935 HT0101-154#WJC22 SPMX-20240815303099 \N \N \N 1 \N [{"file_id": "90252eb9-01e5-41ee-a960-fa1e9bd6a342", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10945966586545ec9d39c7baaf479bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10945966586545ec9d39c7baaf479bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10945966586545ec9d39c7baaf479bfb.jpg", "file_size": 21593, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-154#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10945966586545ec9d39c7baaf479bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10945966586545ec9d39c7baaf479bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10945966586545ec9d39c7baaf479bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10945966586545ec9d39c7baaf479bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10945966586545ec9d39c7baaf479bfb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gECHMKpfT0_AkH_MMjZmLNwiWIY=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.517033+00 2025-12-09 10:14:57.517038+00 7936 LZ1238#加大加长A2#腰带RC23 SPMX-20240815303094 \N \N \N 1 \N [{"file_id": "92a98420-24d5-4054-985e-fa63de5c4ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8bebdbd74ed4d0daa57e2ed2e309fba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8bebdbd74ed4d0daa57e2ed2e309fba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8bebdbd74ed4d0daa57e2ed2e309fba.jpg", "file_size": 21127, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A2#腰带RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8bebdbd74ed4d0daa57e2ed2e309fba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8bebdbd74ed4d0daa57e2ed2e309fba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8bebdbd74ed4d0daa57e2ed2e309fba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8bebdbd74ed4d0daa57e2ed2e309fba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8bebdbd74ed4d0daa57e2ed2e309fba.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZoKOL3Go9AFeFd5VZwo31I3vDuI=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.518993+00 2025-12-09 10:14:57.518998+00 7937 FHXGPK-079-2 SPMX-20240815303091 \N \N \N 1 \N [{"file_id": "eedc64e3-5f2b-4f70-9a01-7e83aba7d927", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "499a6b04f7744fd68605d45e22460f2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "499a6b04f7744fd68605d45e22460f2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "499a6b04f7744fd68605d45e22460f2a.jpg", "file_size": 34161, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-079-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499a6b04f7744fd68605d45e22460f2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499a6b04f7744fd68605d45e22460f2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499a6b04f7744fd68605d45e22460f2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/499a6b04f7744fd68605d45e22460f2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/499a6b04f7744fd68605d45e22460f2a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGV8Qi8GrLnKa5C0AzmKufP0cYU=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.521569+00 2025-12-09 10:14:57.521575+00 7938 LZ1238#加大加长A3#正身RC23 SPMX-20240815303103 \N \N \N 1 \N [{"file_id": "0f95c98c-afdd-4c7f-b608-b4029f27b1d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "674dfef42e4f4d7796e02f526c54f61f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "674dfef42e4f4d7796e02f526c54f61f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "674dfef42e4f4d7796e02f526c54f61f.jpg", "file_size": 23661, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A3#正身RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674dfef42e4f4d7796e02f526c54f61f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674dfef42e4f4d7796e02f526c54f61f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674dfef42e4f4d7796e02f526c54f61f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/674dfef42e4f4d7796e02f526c54f61f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/674dfef42e4f4d7796e02f526c54f61f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APMb8CJ812wXB181CLkg1kwVrD8=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.523605+00 2025-12-09 10:14:57.52361+00 7939 0003-339#WJC22 SPMX-20240815303097 \N \N \N 1 \N [{"file_id": "5278b1e9-e4d1-4219-92c4-4c4370d6396e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "266f0052df694d4591faadc21148fb8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "266f0052df694d4591faadc21148fb8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "266f0052df694d4591faadc21148fb8e.jpg", "file_size": 17906, "is_delete": false, "file_type": 1, "original_file_name": "0003-339#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266f0052df694d4591faadc21148fb8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266f0052df694d4591faadc21148fb8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266f0052df694d4591faadc21148fb8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/266f0052df694d4591faadc21148fb8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/266f0052df694d4591faadc21148fb8e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aExYGSr56vFqLIu5FXyhfcyWE8U=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.525368+00 2025-12-09 10:14:57.525373+00 7940 80304#小童 SPMX-20240815303090 \N \N \N 1 \N [{"file_id": "68f0fa69-e6ba-49db-bf9e-ce205097a3c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74a9e67442d94b14b5381fbe340df7cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74a9e67442d94b14b5381fbe340df7cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74a9e67442d94b14b5381fbe340df7cc.jpg", "file_size": 19962, "is_delete": false, "file_type": 1, "original_file_name": "80304#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74a9e67442d94b14b5381fbe340df7cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74a9e67442d94b14b5381fbe340df7cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74a9e67442d94b14b5381fbe340df7cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74a9e67442d94b14b5381fbe340df7cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74a9e67442d94b14b5381fbe340df7cc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WomDFM0er_yN6hHJ6lxHKNXe2C0=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.527107+00 2025-12-09 10:14:57.527112+00 7941 DL1080-B4#粉色 SPMX-20240815303095 \N \N \N 1 \N [{"file_id": "3c4712be-a6bf-4de9-9b9c-8e04255690ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "843f42c8885c4580b6707f9f488458a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "843f42c8885c4580b6707f9f488458a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "843f42c8885c4580b6707f9f488458a1.jpg", "file_size": 28512, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B4#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843f42c8885c4580b6707f9f488458a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843f42c8885c4580b6707f9f488458a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843f42c8885c4580b6707f9f488458a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/843f42c8885c4580b6707f9f488458a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/843f42c8885c4580b6707f9f488458a1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPMVpNjsMzhzvzJsRUpQg7xg7vw=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.528879+00 2025-12-09 10:14:57.528883+00 7942 23-2112#-A1领口通用 SPMX-20240815303096 \N \N \N 1 \N [{"file_id": "7f0de6e9-0ab6-4426-8e85-ab81b84ce2b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de7614478a4b4290ac74c6bdfd8d1ad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de7614478a4b4290ac74c6bdfd8d1ad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de7614478a4b4290ac74c6bdfd8d1ad8.jpg", "file_size": 7597, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7614478a4b4290ac74c6bdfd8d1ad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7614478a4b4290ac74c6bdfd8d1ad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7614478a4b4290ac74c6bdfd8d1ad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de7614478a4b4290ac74c6bdfd8d1ad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de7614478a4b4290ac74c6bdfd8d1ad8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZf-K3ompZI9BOWymyY5TDlkoBI=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.530399+00 2025-12-09 10:14:57.530402+00 7943 C330FWE#M SPMX-20240815303089 \N \N \N 1 \N [{"file_id": "0324e40a-910a-4013-aaf0-4f5237602366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b16f7c98ae4423694e35a677c4b4e71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b16f7c98ae4423694e35a677c4b4e71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b16f7c98ae4423694e35a677c4b4e71.jpg", "file_size": 15979, "is_delete": false, "file_type": 1, "original_file_name": "C330FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16f7c98ae4423694e35a677c4b4e71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16f7c98ae4423694e35a677c4b4e71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16f7c98ae4423694e35a677c4b4e71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b16f7c98ae4423694e35a677c4b4e71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b16f7c98ae4423694e35a677c4b4e71.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zoKXkBptHKRxOd50VGDOTGfWnQM=", "createTime": "2024-08-15 14:46:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.531866+00 2025-12-09 10:14:57.531871+00 7944 80304#裤子 SPMX-20240815303101 \N \N \N 1 \N [{"file_id": "a27797ce-c6a9-4f4d-a1ad-a770714c5000", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ae01c8c89c4f47a4b82013ac471214.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ae01c8c89c4f47a4b82013ac471214.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ae01c8c89c4f47a4b82013ac471214.jpg", "file_size": 16145, "is_delete": false, "file_type": 1, "original_file_name": "80304#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae01c8c89c4f47a4b82013ac471214.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae01c8c89c4f47a4b82013ac471214.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae01c8c89c4f47a4b82013ac471214.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ae01c8c89c4f47a4b82013ac471214.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ae01c8c89c4f47a4b82013ac471214.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZMf7Game364K6IifKDiiFiNbro=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.533452+00 2025-12-09 10:14:57.533457+00 7945 FHXGPK-079-3 SPMX-20240815303102 \N \N \N 1 \N [{"file_id": "5c5f1f78-fba3-4ba2-9257-77c8e2e2c795", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a652969f3de4dc8a489ca3788e3a30b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a652969f3de4dc8a489ca3788e3a30b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a652969f3de4dc8a489ca3788e3a30b.jpg", "file_size": 33463, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-079-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a652969f3de4dc8a489ca3788e3a30b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a652969f3de4dc8a489ca3788e3a30b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a652969f3de4dc8a489ca3788e3a30b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a652969f3de4dc8a489ca3788e3a30b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a652969f3de4dc8a489ca3788e3a30b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ld8Ptt_qxhx7Z00I8G5pJG4QRxg=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.53504+00 2025-12-09 10:14:57.535047+00 7946 C330FWE#S SPMX-20240815303100 \N \N \N 1 \N [{"file_id": "f20e6607-4687-4032-b079-5eca7e4516f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c3c7d7b08148b9a93d8d89bb3bd41a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c3c7d7b08148b9a93d8d89bb3bd41a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c3c7d7b08148b9a93d8d89bb3bd41a.jpg", "file_size": 17602, "is_delete": false, "file_type": 1, "original_file_name": "C330FWE#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3c7d7b08148b9a93d8d89bb3bd41a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3c7d7b08148b9a93d8d89bb3bd41a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3c7d7b08148b9a93d8d89bb3bd41a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c3c7d7b08148b9a93d8d89bb3bd41a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c3c7d7b08148b9a93d8d89bb3bd41a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1W6jHUdlgC3Y3qx8_Z7nzv_-xG0=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.537033+00 2025-12-09 10:14:57.537039+00 7947 LJ0864-1#WJC22 SPMX-20240815303104 \N \N \N 1 \N [{"file_id": "6b63e56a-8f4c-4706-8c61-168ecf5d2919", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d792eda007c463e83b562f8e8111d87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d792eda007c463e83b562f8e8111d87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d792eda007c463e83b562f8e8111d87.jpg", "file_size": 17052, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d792eda007c463e83b562f8e8111d87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d792eda007c463e83b562f8e8111d87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d792eda007c463e83b562f8e8111d87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d792eda007c463e83b562f8e8111d87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d792eda007c463e83b562f8e8111d87.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woJ12cGRUPXPEiac7EEfyvCXvsc=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.539035+00 2025-12-09 10:14:57.539041+00 7948 LJ0302-5#黑色 SPMX-20240815303092 \N \N \N 1 \N [{"file_id": "0f6c945a-0aec-4cfe-a624-0debf9131e40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63bad14a67434ad7b34f7439c8ee77c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63bad14a67434ad7b34f7439c8ee77c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63bad14a67434ad7b34f7439c8ee77c7.jpg", "file_size": 31861, "is_delete": false, "file_type": 1, "original_file_name": "LJ0302-5#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bad14a67434ad7b34f7439c8ee77c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bad14a67434ad7b34f7439c8ee77c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bad14a67434ad7b34f7439c8ee77c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63bad14a67434ad7b34f7439c8ee77c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63bad14a67434ad7b34f7439c8ee77c7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvJd1bzrxVdHoPifv0nr2Iy5wEM=", "createTime": "2024-08-15 14:46:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.540999+00 2025-12-09 10:14:57.541005+00 7949 0003-33FWE#VS-D3 SPMX-20240815303108 \N \N \N 1 \N [{"file_id": "87b3c5da-56e5-454d-b813-c542ee46d28f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac61d7d5b3874f8280414ce393c3f9da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac61d7d5b3874f8280414ce393c3f9da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac61d7d5b3874f8280414ce393c3f9da.jpg", "file_size": 28012, "is_delete": false, "file_type": 1, "original_file_name": "0003-33FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac61d7d5b3874f8280414ce393c3f9da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac61d7d5b3874f8280414ce393c3f9da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac61d7d5b3874f8280414ce393c3f9da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac61d7d5b3874f8280414ce393c3f9da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac61d7d5b3874f8280414ce393c3f9da.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aR8euPPz27siAISG0k8YiMVVUww=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.542962+00 2025-12-09 10:14:57.542968+00 7950 LZ1238#加大加长A3#腰带RC23 SPMX-20240815303114 \N \N \N 1 \N [{"file_id": "0502ee11-9647-48bf-a7c3-34c23bdbcc9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddd1ccc9703046a39c826f5999343588.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddd1ccc9703046a39c826f5999343588.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddd1ccc9703046a39c826f5999343588.jpg", "file_size": 28832, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大加长A3#腰带RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd1ccc9703046a39c826f5999343588.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd1ccc9703046a39c826f5999343588.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd1ccc9703046a39c826f5999343588.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddd1ccc9703046a39c826f5999343588.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddd1ccc9703046a39c826f5999343588.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNzL5OcBY9DEMW3Szp6334YvJ6s=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.544582+00 2025-12-09 10:14:57.544587+00 7951 JTSS036#白 SPMX-20240815303117 \N \N \N 1 \N [{"file_id": "4e05165b-d86b-45b4-9ff1-d4070436ab47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d97e621348ac4cc587f2aba7585c9e6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d97e621348ac4cc587f2aba7585c9e6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d97e621348ac4cc587f2aba7585c9e6f.jpg", "file_size": 21861, "is_delete": false, "file_type": 1, "original_file_name": "JTSS036#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d97e621348ac4cc587f2aba7585c9e6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d97e621348ac4cc587f2aba7585c9e6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d97e621348ac4cc587f2aba7585c9e6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d97e621348ac4cc587f2aba7585c9e6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d97e621348ac4cc587f2aba7585c9e6f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIMDHXtGwFessZgOjaunqMrTc4g=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.546132+00 2025-12-09 10:14:57.546136+00 7952 0003-33FWF#V5曲线 SPMX-20240815303118 \N \N \N 1 \N [{"file_id": "bdbcaad2-cadf-4a01-87be-ab10dc5d8d14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c671ce60e74e4f01a60bc84f4358adfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c671ce60e74e4f01a60bc84f4358adfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c671ce60e74e4f01a60bc84f4358adfa.jpg", "file_size": 18360, "is_delete": false, "file_type": 1, "original_file_name": "0003-33FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c671ce60e74e4f01a60bc84f4358adfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c671ce60e74e4f01a60bc84f4358adfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c671ce60e74e4f01a60bc84f4358adfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c671ce60e74e4f01a60bc84f4358adfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c671ce60e74e4f01a60bc84f4358adfa.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfK-4RDmQ_FWGTypaW49U4HypHo=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.547851+00 2025-12-09 10:14:57.547856+00 7953 80305#上衣 SPMX-20240815303111 \N \N \N 1 \N [{"file_id": "fa32c26e-3f3e-4fc7-ba37-0029ca7f4008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "500d8cdb5a764b0ebac19c4b2da7f32d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "500d8cdb5a764b0ebac19c4b2da7f32d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "500d8cdb5a764b0ebac19c4b2da7f32d.jpg", "file_size": 13407, "is_delete": false, "file_type": 1, "original_file_name": "80305#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500d8cdb5a764b0ebac19c4b2da7f32d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500d8cdb5a764b0ebac19c4b2da7f32d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500d8cdb5a764b0ebac19c4b2da7f32d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/500d8cdb5a764b0ebac19c4b2da7f32d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/500d8cdb5a764b0ebac19c4b2da7f32d.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iU5IODag-j6ojCTNDjPmEkpuPMo=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.549343+00 2025-12-09 10:14:57.549348+00 7954 HT0101-156#WJC22 SPMX-20240815303119 \N \N \N 1 \N [{"file_id": "4dff2fdd-87c4-419c-8474-cd4004ba9955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ca09147c7db4fadae93d47a33501397.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ca09147c7db4fadae93d47a33501397.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ca09147c7db4fadae93d47a33501397.jpg", "file_size": 25060, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-156#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ca09147c7db4fadae93d47a33501397.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ca09147c7db4fadae93d47a33501397.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ca09147c7db4fadae93d47a33501397.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ca09147c7db4fadae93d47a33501397.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ca09147c7db4fadae93d47a33501397.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKKnpDhxLJPExu7NhOmm-g-Ki1M=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.550811+00 2025-12-09 10:14:57.550815+00 7955 HT0101-155#WJC22 SPMX-20240815303109 \N \N \N 1 \N [{"file_id": "7473a18a-bdea-42a0-a874-adf50fab6e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea49836a6d34d9191b6e93e5d9d19d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea49836a6d34d9191b6e93e5d9d19d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea49836a6d34d9191b6e93e5d9d19d0.jpg", "file_size": 12428, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-155#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea49836a6d34d9191b6e93e5d9d19d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea49836a6d34d9191b6e93e5d9d19d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea49836a6d34d9191b6e93e5d9d19d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea49836a6d34d9191b6e93e5d9d19d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea49836a6d34d9191b6e93e5d9d19d0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svd_9yU0VwzOkVBdMunMHx83uFE=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.552291+00 2025-12-09 10:14:57.552296+00 7956 JTSS035FW#VS-D3 SPMX-20240815303105 \N \N \N 1 \N [{"file_id": "2f84b9e2-4bd7-44de-85cd-5d1cc714809d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31a64dfbde4a442d9cea0cd6b68a45ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31a64dfbde4a442d9cea0cd6b68a45ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31a64dfbde4a442d9cea0cd6b68a45ac.jpg", "file_size": 14160, "is_delete": false, "file_type": 1, "original_file_name": "JTSS035FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a64dfbde4a442d9cea0cd6b68a45ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a64dfbde4a442d9cea0cd6b68a45ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a64dfbde4a442d9cea0cd6b68a45ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31a64dfbde4a442d9cea0cd6b68a45ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31a64dfbde4a442d9cea0cd6b68a45ac.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMr6RaGadEsACMACh01zhmTVIFY=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.553819+00 2025-12-09 10:14:57.553823+00 7957 106876FWF#L SPMX-20240815303110 \N \N \N 1 \N [{"file_id": "e0a3b548-aefc-44ea-822c-a55ea439ec74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd13c469d234071a19409ce4039774b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd13c469d234071a19409ce4039774b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd13c469d234071a19409ce4039774b.jpg", "file_size": 19461, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd13c469d234071a19409ce4039774b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd13c469d234071a19409ce4039774b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd13c469d234071a19409ce4039774b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd13c469d234071a19409ce4039774b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd13c469d234071a19409ce4039774b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0ZCiLiwgh_mgoT_SCGTQpFs5Tk=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.555393+00 2025-12-09 10:14:57.555398+00 7958 DL1080-B4#红色 SPMX-20240815303107 \N \N \N 1 \N [{"file_id": "633ff168-ca59-43f6-a863-34ff47cdab7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9222de7dc8194d86923d3ee0ca806089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9222de7dc8194d86923d3ee0ca806089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9222de7dc8194d86923d3ee0ca806089.jpg", "file_size": 28392, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B4#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222de7dc8194d86923d3ee0ca806089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222de7dc8194d86923d3ee0ca806089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9222de7dc8194d86923d3ee0ca806089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9222de7dc8194d86923d3ee0ca806089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9222de7dc8194d86923d3ee0ca806089.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8NXjGWwKZQtqfnJHLcrGW4eAUo=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.556942+00 2025-12-09 10:14:57.556947+00 7959 FHXGPK-079-4 SPMX-20240815303113 \N \N \N 1 \N [{"file_id": "ef3c6a2a-2cd8-4580-819e-e75d18a0df8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1967028b8544ebebb2cb47b394ca332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1967028b8544ebebb2cb47b394ca332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1967028b8544ebebb2cb47b394ca332.jpg", "file_size": 29455, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-079-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1967028b8544ebebb2cb47b394ca332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1967028b8544ebebb2cb47b394ca332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1967028b8544ebebb2cb47b394ca332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1967028b8544ebebb2cb47b394ca332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1967028b8544ebebb2cb47b394ca332.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWMw6fVJqg985NPG92IyeYMyS3o=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.558438+00 2025-12-09 10:14:57.558442+00 7960 DL1080-B5#RC23 SPMX-20240815303120 \N \N \N 1 \N [{"file_id": "d37f5b79-db98-48ec-b350-0c9e6af15c9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87bed177180c4a8da438417891dcfcfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87bed177180c4a8da438417891dcfcfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87bed177180c4a8da438417891dcfcfa.jpg", "file_size": 59746, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bed177180c4a8da438417891dcfcfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bed177180c4a8da438417891dcfcfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bed177180c4a8da438417891dcfcfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87bed177180c4a8da438417891dcfcfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87bed177180c4a8da438417891dcfcfa.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vr12DAlLL-ImWZEvW2FztsMiWCk=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.559916+00 2025-12-09 10:14:57.55992+00 7961 23-2112#-A1领子通用 SPMX-20240815303106 \N \N \N 1 \N [{"file_id": "3067c7ac-5e2a-4820-b6d3-d5e8350d8028", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52fd595ea0004de98a55da2aec2f63c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52fd595ea0004de98a55da2aec2f63c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52fd595ea0004de98a55da2aec2f63c1.jpg", "file_size": 9171, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd595ea0004de98a55da2aec2f63c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd595ea0004de98a55da2aec2f63c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd595ea0004de98a55da2aec2f63c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52fd595ea0004de98a55da2aec2f63c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52fd595ea0004de98a55da2aec2f63c1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0yVZYVxFnj126Ah045DgSHPsvg=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.561377+00 2025-12-09 10:14:57.561381+00 7962 LJ0864-2#WJC22 SPMX-20240815303115 \N \N \N 1 \N [{"file_id": "76ec8d4a-1470-434d-9b43-77cae0232f54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96ab04f54bac40e391f2aa1ee3366683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96ab04f54bac40e391f2aa1ee3366683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96ab04f54bac40e391f2aa1ee3366683.jpg", "file_size": 15297, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ab04f54bac40e391f2aa1ee3366683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ab04f54bac40e391f2aa1ee3366683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ab04f54bac40e391f2aa1ee3366683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96ab04f54bac40e391f2aa1ee3366683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96ab04f54bac40e391f2aa1ee3366683.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TIC6li86uIN8fP4cQkX4FJSouHk=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.562819+00 2025-12-09 10:14:57.562823+00 7963 C330FWE#XL SPMX-20240815303112 \N \N \N 1 \N [{"file_id": "ccc90281-e57d-496e-a93b-27bc8ba3d2c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58024cbd5ff64536a0ddd3ccbf1818f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58024cbd5ff64536a0ddd3ccbf1818f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58024cbd5ff64536a0ddd3ccbf1818f1.jpg", "file_size": 15512, "is_delete": false, "file_type": 1, "original_file_name": "C330FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58024cbd5ff64536a0ddd3ccbf1818f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58024cbd5ff64536a0ddd3ccbf1818f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58024cbd5ff64536a0ddd3ccbf1818f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58024cbd5ff64536a0ddd3ccbf1818f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58024cbd5ff64536a0ddd3ccbf1818f1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrZp9CE3syzQO1vGEQ95Inimd1w=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.579139+00 2025-12-09 10:14:57.579144+00 7973 0003-33FWF#深蓝 SPMX-20240815303127 \N \N \N 1 \N [{"file_id": "8aa28f00-f973-402a-b273-c408fde9ba0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b81b6cbe11ac44508cdf1913a5105336.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b81b6cbe11ac44508cdf1913a5105336.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b81b6cbe11ac44508cdf1913a5105336.jpg", "file_size": 16290, "is_delete": false, "file_type": 1, "original_file_name": "0003-33FWF#深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81b6cbe11ac44508cdf1913a5105336.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81b6cbe11ac44508cdf1913a5105336.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81b6cbe11ac44508cdf1913a5105336.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b81b6cbe11ac44508cdf1913a5105336.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b81b6cbe11ac44508cdf1913a5105336.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4vpm0zB6vIF-g0dLyXPZsybw7E=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.564272+00 2025-12-09 10:14:57.564276+00 7964 23-2112#-A2前后片3XL SPMX-20240815303116 \N \N \N 1 \N [{"file_id": "dbd6a700-3cf6-405d-b3ea-c54ca5352d60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60473c5972004ecdb134fb1ff8304040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60473c5972004ecdb134fb1ff8304040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60473c5972004ecdb134fb1ff8304040.jpg", "file_size": 9808, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60473c5972004ecdb134fb1ff8304040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60473c5972004ecdb134fb1ff8304040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60473c5972004ecdb134fb1ff8304040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60473c5972004ecdb134fb1ff8304040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60473c5972004ecdb134fb1ff8304040.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8udRQnWnzPauP0o6g3itIxWe7LM=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.565951+00 2025-12-09 10:14:57.565956+00 7965 C331#原版色 SPMX-20240815303133 \N \N \N 1 \N [{"file_id": "a681a703-b690-47bf-ac70-f982cfca4ae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e30caebdab84de18aa4d7f3674c9286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e30caebdab84de18aa4d7f3674c9286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e30caebdab84de18aa4d7f3674c9286.jpg", "file_size": 17780, "is_delete": false, "file_type": 1, "original_file_name": "C331#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e30caebdab84de18aa4d7f3674c9286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e30caebdab84de18aa4d7f3674c9286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e30caebdab84de18aa4d7f3674c9286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e30caebdab84de18aa4d7f3674c9286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e30caebdab84de18aa4d7f3674c9286.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9LilG_gwphBunLQCvfY2BY6aUsw=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.567826+00 2025-12-09 10:14:57.567831+00 7966 JTSS036#粉 SPMX-20240815303128 \N \N \N 1 \N [{"file_id": "3ae599e6-f311-4e8a-b6de-7df8361889e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe920afa994641a39f8b8d0d4dc54ad5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe920afa994641a39f8b8d0d4dc54ad5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe920afa994641a39f8b8d0d4dc54ad5.jpg", "file_size": 21733, "is_delete": false, "file_type": 1, "original_file_name": "JTSS036#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe920afa994641a39f8b8d0d4dc54ad5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe920afa994641a39f8b8d0d4dc54ad5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe920afa994641a39f8b8d0d4dc54ad5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe920afa994641a39f8b8d0d4dc54ad5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe920afa994641a39f8b8d0d4dc54ad5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qbAA6Cfax6U55T7WvwOhqvMR3U=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.569712+00 2025-12-09 10:14:57.569717+00 7967 LJ0864-3#WJC22 SPMX-20240815303125 \N \N \N 1 \N [{"file_id": "dc2c86bf-abca-4dcb-aeb2-4232caec4779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb4d144b866846d98bb40b61a0498771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb4d144b866846d98bb40b61a0498771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb4d144b866846d98bb40b61a0498771.jpg", "file_size": 34108, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d144b866846d98bb40b61a0498771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d144b866846d98bb40b61a0498771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d144b866846d98bb40b61a0498771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb4d144b866846d98bb40b61a0498771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb4d144b866846d98bb40b61a0498771.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9_b223qf5Wv2CIM7TTR2-5tJBg=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.571464+00 2025-12-09 10:14:57.57147+00 7968 LZ1238#加大大象款 SPMX-20240815303126 \N \N \N 1 \N [{"file_id": "4905be4d-50fb-462e-ad45-e407b8f891f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98c19051c0c149069b5dcaa50f98a8ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98c19051c0c149069b5dcaa50f98a8ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98c19051c0c149069b5dcaa50f98a8ba.jpg", "file_size": 29671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大大象款.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c19051c0c149069b5dcaa50f98a8ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c19051c0c149069b5dcaa50f98a8ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c19051c0c149069b5dcaa50f98a8ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98c19051c0c149069b5dcaa50f98a8ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98c19051c0c149069b5dcaa50f98a8ba.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trK78dnkBBOlI-Hwe5HlA4aNbSo=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.573267+00 2025-12-09 10:14:57.573271+00 7969 FHXGPK-079-5 SPMX-20240815303124 \N \N \N 1 \N [{"file_id": "073fcf8b-128f-410f-b9c7-d6d09f20dd22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1670062e90404791bb7e61dfce585c8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1670062e90404791bb7e61dfce585c8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1670062e90404791bb7e61dfce585c8d.jpg", "file_size": 32761, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-079-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670062e90404791bb7e61dfce585c8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670062e90404791bb7e61dfce585c8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1670062e90404791bb7e61dfce585c8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1670062e90404791bb7e61dfce585c8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1670062e90404791bb7e61dfce585c8d.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NYTwA0rmUe3QA1Tmz82I2KOSrpk=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.574721+00 2025-12-09 10:14:57.574726+00 7970 HT0101-157#WJC22 SPMX-20240815303130 \N \N \N 1 \N [{"file_id": "565c8c9d-6d10-4110-a529-4072e9c897bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8959b2aaa77444b99b8e7eb16e87c492.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8959b2aaa77444b99b8e7eb16e87c492.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8959b2aaa77444b99b8e7eb16e87c492.jpg", "file_size": 11304, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-157#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8959b2aaa77444b99b8e7eb16e87c492.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8959b2aaa77444b99b8e7eb16e87c492.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8959b2aaa77444b99b8e7eb16e87c492.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8959b2aaa77444b99b8e7eb16e87c492.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8959b2aaa77444b99b8e7eb16e87c492.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQKqOWZKfCvWNPGr9ktp6XEYcZM=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.576188+00 2025-12-09 10:14:57.576192+00 7971 DL1080-B6#RC23 SPMX-20240815303132 \N \N \N 1 \N [{"file_id": "189aadc8-e138-4c6f-8cab-5bd0b276019f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "272bd842fcc0466894632881a7016b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "272bd842fcc0466894632881a7016b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "272bd842fcc0466894632881a7016b3b.jpg", "file_size": 35072, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272bd842fcc0466894632881a7016b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272bd842fcc0466894632881a7016b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272bd842fcc0466894632881a7016b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/272bd842fcc0466894632881a7016b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/272bd842fcc0466894632881a7016b3b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UgIeyB2ZaNuTD11fEWqunm3sdnA=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.57765+00 2025-12-09 10:14:57.577654+00 7972 80305#中童 SPMX-20240815303122 \N \N \N 1 \N [{"file_id": "72fd1f03-7bac-42ab-880b-1b25d5cdd95c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84a20e9ec9cd472eb65857f2d1547ce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84a20e9ec9cd472eb65857f2d1547ce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84a20e9ec9cd472eb65857f2d1547ce1.jpg", "file_size": 24219, "is_delete": false, "file_type": 1, "original_file_name": "80305#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a20e9ec9cd472eb65857f2d1547ce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a20e9ec9cd472eb65857f2d1547ce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a20e9ec9cd472eb65857f2d1547ce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84a20e9ec9cd472eb65857f2d1547ce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84a20e9ec9cd472eb65857f2d1547ce1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zb-2iRTgcsqR9fZXz8Ol4Hf25wk=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.580593+00 2025-12-09 10:14:57.580598+00 7974 106876FWF#S SPMX-20240815303131 \N \N \N 1 \N [{"file_id": "6c7f8043-8c20-417e-af62-4ffb4e672741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daa0118a6ded4e42bb8ac882f5ccfb06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daa0118a6ded4e42bb8ac882f5ccfb06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daa0118a6ded4e42bb8ac882f5ccfb06.jpg", "file_size": 18988, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0118a6ded4e42bb8ac882f5ccfb06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0118a6ded4e42bb8ac882f5ccfb06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0118a6ded4e42bb8ac882f5ccfb06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daa0118a6ded4e42bb8ac882f5ccfb06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daa0118a6ded4e42bb8ac882f5ccfb06.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9hI9Jl8JX3QIe6cYY5n4GQYi_w=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.582077+00 2025-12-09 10:14:57.582081+00 7975 C330FWE#批布 SPMX-20240815303123 \N \N \N 1 \N [{"file_id": "2b3498c2-ffff-4086-bdae-a6cf9792ad66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "266c58af07694f999b4245a00d92435a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "266c58af07694f999b4245a00d92435a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "266c58af07694f999b4245a00d92435a.jpg", "file_size": 10222, "is_delete": false, "file_type": 1, "original_file_name": "C330FWE#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266c58af07694f999b4245a00d92435a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266c58af07694f999b4245a00d92435a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266c58af07694f999b4245a00d92435a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/266c58af07694f999b4245a00d92435a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/266c58af07694f999b4245a00d92435a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFiikSQxua08fSBF3Wq5lebtMz4=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.583625+00 2025-12-09 10:14:57.58363+00 7976 106876FWF#M SPMX-20240815303121 \N \N \N 1 \N [{"file_id": "7bf6e98f-de93-4bcc-b415-81f1bd094e5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "facc3d6e67ce4ada847396456c1019fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "facc3d6e67ce4ada847396456c1019fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "facc3d6e67ce4ada847396456c1019fc.jpg", "file_size": 19549, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facc3d6e67ce4ada847396456c1019fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facc3d6e67ce4ada847396456c1019fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facc3d6e67ce4ada847396456c1019fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/facc3d6e67ce4ada847396456c1019fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/facc3d6e67ce4ada847396456c1019fc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMZALHSiX_9Za2Ov83_rv98BdYw=", "createTime": "2024-08-15 14:46:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.585116+00 2025-12-09 10:14:57.585121+00 7977 23-2112#-A2前后片4XL SPMX-20240815303129 \N \N \N 1 \N [{"file_id": "d7a538d0-0bac-4821-b288-637f321cf8d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3c53851139b4d8e913eb1b21f6bf0b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3c53851139b4d8e913eb1b21f6bf0b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3c53851139b4d8e913eb1b21f6bf0b1.jpg", "file_size": 10008, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c53851139b4d8e913eb1b21f6bf0b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c53851139b4d8e913eb1b21f6bf0b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c53851139b4d8e913eb1b21f6bf0b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3c53851139b4d8e913eb1b21f6bf0b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3c53851139b4d8e913eb1b21f6bf0b1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ps6ugifMvdY-Lqp4uSusMz4zZ_Q=", "createTime": "2024-08-15 14:46:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.586568+00 2025-12-09 10:14:57.586571+00 7978 FHXGPK-080-2 SPMX-20240815303145 \N \N \N 1 \N [{"file_id": "89c45fe0-cd8d-4b2f-893c-06e398eb3ed4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fc371178e1b40989b8e5103112439c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fc371178e1b40989b8e5103112439c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fc371178e1b40989b8e5103112439c0.jpg", "file_size": 36613, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-080-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc371178e1b40989b8e5103112439c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc371178e1b40989b8e5103112439c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc371178e1b40989b8e5103112439c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fc371178e1b40989b8e5103112439c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fc371178e1b40989b8e5103112439c0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peShLQZ2lBvRW_jtlLiVr2O1pIs=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.588034+00 2025-12-09 10:14:57.588039+00 7979 HT0101-158#WJC22 SPMX-20240815303140 \N \N \N 1 \N [{"file_id": "ab96b1ad-253e-46bf-8ac4-3e0e0f589d99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a3d17e0aec043fd93709e40eb2d1521.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a3d17e0aec043fd93709e40eb2d1521.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a3d17e0aec043fd93709e40eb2d1521.jpg", "file_size": 10478, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-158#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a3d17e0aec043fd93709e40eb2d1521.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a3d17e0aec043fd93709e40eb2d1521.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a3d17e0aec043fd93709e40eb2d1521.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a3d17e0aec043fd93709e40eb2d1521.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a3d17e0aec043fd93709e40eb2d1521.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P14O0iMy7HA9Ld_IS4W7-1bmToY=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.589518+00 2025-12-09 10:14:57.589521+00 7980 JTSS036FW#VS-D3 SPMX-20240815303138 \N \N \N 1 \N [{"file_id": "4bc053cd-58ef-4473-8adc-be0dcb7ad46f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b32c13df66244c22ad4b316360454cd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b32c13df66244c22ad4b316360454cd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b32c13df66244c22ad4b316360454cd0.jpg", "file_size": 12532, "is_delete": false, "file_type": 1, "original_file_name": "JTSS036FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c13df66244c22ad4b316360454cd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c13df66244c22ad4b316360454cd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c13df66244c22ad4b316360454cd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b32c13df66244c22ad4b316360454cd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b32c13df66244c22ad4b316360454cd0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBV3rsh-pTGULLhF0ncWR5N8C4E=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.590977+00 2025-12-09 10:14:57.590981+00 7981 LZ1238#加大款A SPMX-20240815303142 \N \N \N 1 \N [{"file_id": "44d080b0-e5d4-486b-9916-0103c1aff9a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d141e58fc09645ac8991dc61d3c3511c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d141e58fc09645ac8991dc61d3c3511c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d141e58fc09645ac8991dc61d3c3511c.jpg", "file_size": 22851, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d141e58fc09645ac8991dc61d3c3511c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d141e58fc09645ac8991dc61d3c3511c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d141e58fc09645ac8991dc61d3c3511c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d141e58fc09645ac8991dc61d3c3511c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d141e58fc09645ac8991dc61d3c3511c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZdmtWpOiBv8xQcyBfoKl1HxI8w=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.59243+00 2025-12-09 10:14:57.592434+00 7982 LJ0864-4#WJC22 SPMX-20240815303135 \N \N \N 1 \N [{"file_id": "3bc371cb-4aa0-4a59-9a11-d2bafe9ea534", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b09780f957d40c9a0cadb6c4134ac6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b09780f957d40c9a0cadb6c4134ac6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b09780f957d40c9a0cadb6c4134ac6c.jpg", "file_size": 30509, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b09780f957d40c9a0cadb6c4134ac6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b09780f957d40c9a0cadb6c4134ac6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b09780f957d40c9a0cadb6c4134ac6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b09780f957d40c9a0cadb6c4134ac6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b09780f957d40c9a0cadb6c4134ac6c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UDUplXLKt3_mKM7mlV-YzBzfH8=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.593873+00 2025-12-09 10:14:57.593877+00 7983 80305#匹布 SPMX-20240815303136 \N \N \N 1 \N [{"file_id": "a271407b-372e-403b-9836-4b2d51b87f9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f038cd4bd1048898020e4db608bb18e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f038cd4bd1048898020e4db608bb18e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f038cd4bd1048898020e4db608bb18e.jpg", "file_size": 12543, "is_delete": false, "file_type": 1, "original_file_name": "80305#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f038cd4bd1048898020e4db608bb18e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f038cd4bd1048898020e4db608bb18e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f038cd4bd1048898020e4db608bb18e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f038cd4bd1048898020e4db608bb18e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f038cd4bd1048898020e4db608bb18e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDY-3G-RDTbXPIICQvXm72QnNGU=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.595325+00 2025-12-09 10:14:57.595329+00 7984 23-2112#-A2袖子3XL SPMX-20240815303139 \N \N \N 1 \N [{"file_id": "3314253a-4173-4d6f-a718-5b12838f0374", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e6ebdb76d0040d4911c1636aad3e69b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e6ebdb76d0040d4911c1636aad3e69b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e6ebdb76d0040d4911c1636aad3e69b.jpg", "file_size": 9210, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6ebdb76d0040d4911c1636aad3e69b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6ebdb76d0040d4911c1636aad3e69b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6ebdb76d0040d4911c1636aad3e69b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e6ebdb76d0040d4911c1636aad3e69b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e6ebdb76d0040d4911c1636aad3e69b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dtKKO6sPdEyg7ikoXk1UFyuLLI=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.596805+00 2025-12-09 10:14:57.596809+00 7985 C331#墨绿 SPMX-20240815303144 \N \N \N 1 \N [{"file_id": "19a1bebb-d882-43d7-98d0-a884395c8217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f29e4d1a6b41178e7f381007325fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f29e4d1a6b41178e7f381007325fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f29e4d1a6b41178e7f381007325fd9.jpg", "file_size": 17434, "is_delete": false, "file_type": 1, "original_file_name": "C331#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f29e4d1a6b41178e7f381007325fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f29e4d1a6b41178e7f381007325fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f29e4d1a6b41178e7f381007325fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f29e4d1a6b41178e7f381007325fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f29e4d1a6b41178e7f381007325fd9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOX0I8Dcpg6eTu37ZhqX-IIr6BI=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.59827+00 2025-12-09 10:14:57.598274+00 7986 106876FWF#XL SPMX-20240815303143 \N \N \N 1 \N [{"file_id": "e159bce7-8b51-4070-9546-140b1e1cc33f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg", "file_size": 20058, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d2ec9da0a7e4f9f9a34fa755524e8c1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4rOqhL3u6kDL5ZlnBFQWtlH7dw=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.59969+00 2025-12-09 10:14:57.599695+00 7987 FHXGPK-080-1 SPMX-20240815303134 \N \N \N 1 \N [{"file_id": "f08de106-23e9-441f-bcba-461fc3dbfa5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d94912d243454cc5a2a17044feb39820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d94912d243454cc5a2a17044feb39820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d94912d243454cc5a2a17044feb39820.jpg", "file_size": 34190, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-080-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94912d243454cc5a2a17044feb39820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94912d243454cc5a2a17044feb39820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94912d243454cc5a2a17044feb39820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d94912d243454cc5a2a17044feb39820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d94912d243454cc5a2a17044feb39820.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6g-SD4gc3ow1hQEe2eFBPg7Ank=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.601196+00 2025-12-09 10:14:57.6012+00 7988 0003-33FWF#紫色 SPMX-20240815303137 \N \N \N 1 \N [{"file_id": "8f1ee595-d2e1-45bd-a537-06bbd4c6eed2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fdbd4ccf9e54b8fb794950c3d8d3404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fdbd4ccf9e54b8fb794950c3d8d3404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fdbd4ccf9e54b8fb794950c3d8d3404.jpg", "file_size": 17573, "is_delete": false, "file_type": 1, "original_file_name": "0003-33FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdbd4ccf9e54b8fb794950c3d8d3404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdbd4ccf9e54b8fb794950c3d8d3404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fdbd4ccf9e54b8fb794950c3d8d3404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fdbd4ccf9e54b8fb794950c3d8d3404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fdbd4ccf9e54b8fb794950c3d8d3404.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:En3tfvS37NCEC_1eGGGUy2oB15s=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.60265+00 2025-12-09 10:14:57.602655+00 7989 DL1080-B7#RC23 SPMX-20240815303141 \N \N \N 1 \N [{"file_id": "543c43ce-a14f-4fcb-87f2-1282e8b56688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8183ebd9bc4be39c6e7ba32da70021.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8183ebd9bc4be39c6e7ba32da70021.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8183ebd9bc4be39c6e7ba32da70021.bmp", "file_size": 45436, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B7#RC23.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8183ebd9bc4be39c6e7ba32da70021.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8183ebd9bc4be39c6e7ba32da70021.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8183ebd9bc4be39c6e7ba32da70021.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8183ebd9bc4be39c6e7ba32da70021.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8183ebd9bc4be39c6e7ba32da70021.bmp?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OC1aaDDJAgVGBRLNMdwkGcnerg=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.604127+00 2025-12-09 10:14:57.604131+00 7990 HT0101-16#WJC22 SPMX-20240815303151 \N \N \N 1 \N [{"file_id": "ba5331c6-daf4-4bb7-a890-7c2819ff5abe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e59cc0622650440a817dac0c01f809f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e59cc0622650440a817dac0c01f809f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e59cc0622650440a817dac0c01f809f9.jpg", "file_size": 24371, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59cc0622650440a817dac0c01f809f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59cc0622650440a817dac0c01f809f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59cc0622650440a817dac0c01f809f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e59cc0622650440a817dac0c01f809f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e59cc0622650440a817dac0c01f809f9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29ZiQLctfM6--MSgOaXV6LoGIqQ=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.605574+00 2025-12-09 10:14:57.605579+00 7991 106876FWF#净色 SPMX-20240815303152 \N \N \N 1 \N [{"file_id": "bd49325f-9b41-4d28-88df-60a63e5da209", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "568b5c9bbc534928ba7d9a74e4b82faf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "568b5c9bbc534928ba7d9a74e4b82faf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "568b5c9bbc534928ba7d9a74e4b82faf.jpg", "file_size": 4739, "is_delete": false, "file_type": 1, "original_file_name": "106876FWF#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568b5c9bbc534928ba7d9a74e4b82faf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568b5c9bbc534928ba7d9a74e4b82faf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568b5c9bbc534928ba7d9a74e4b82faf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/568b5c9bbc534928ba7d9a74e4b82faf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/568b5c9bbc534928ba7d9a74e4b82faf.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gArzKdj5RhRz0X8PyKlbfaykNO0=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.607292+00 2025-12-09 10:14:57.607296+00 7992 JTSS037#黑底 SPMX-20240815303158 \N \N \N 1 \N [{"file_id": "2e2d82a3-d71b-4cd3-b3f4-8201dc807acb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17286cf1e1cf4e9d82b27e6bdaf352f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17286cf1e1cf4e9d82b27e6bdaf352f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17286cf1e1cf4e9d82b27e6bdaf352f0.jpg", "file_size": 14986, "is_delete": false, "file_type": 1, "original_file_name": "JTSS037#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17286cf1e1cf4e9d82b27e6bdaf352f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17286cf1e1cf4e9d82b27e6bdaf352f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17286cf1e1cf4e9d82b27e6bdaf352f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17286cf1e1cf4e9d82b27e6bdaf352f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17286cf1e1cf4e9d82b27e6bdaf352f0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ef6MDMc6rJw0SMqo8bGMAhozRzQ=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.608764+00 2025-12-09 10:14:57.608769+00 7993 LJ0864-A1#RC23 SPMX-20240815303159 \N \N \N 1 \N [{"file_id": "0e2ebc30-43f4-4175-9d73-2c95d704a597", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6c75db7c7048fb9ea40535c99edf8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6c75db7c7048fb9ea40535c99edf8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6c75db7c7048fb9ea40535c99edf8a.jpg", "file_size": 29116, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c75db7c7048fb9ea40535c99edf8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c75db7c7048fb9ea40535c99edf8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c75db7c7048fb9ea40535c99edf8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6c75db7c7048fb9ea40535c99edf8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6c75db7c7048fb9ea40535c99edf8a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ya88CK7FhuxFlSQFe3tKY461Us=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.610237+00 2025-12-09 10:14:57.610241+00 7994 0003-340#蓝底 SPMX-20240815303160 \N \N \N 1 \N [{"file_id": "0b9c4de0-af1b-457b-a1b1-c60b4416d0ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39602bd39a44be09ebf0e0ac30b8b8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39602bd39a44be09ebf0e0ac30b8b8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39602bd39a44be09ebf0e0ac30b8b8a.jpg", "file_size": 17731, "is_delete": false, "file_type": 1, "original_file_name": "0003-340#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39602bd39a44be09ebf0e0ac30b8b8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39602bd39a44be09ebf0e0ac30b8b8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39602bd39a44be09ebf0e0ac30b8b8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39602bd39a44be09ebf0e0ac30b8b8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39602bd39a44be09ebf0e0ac30b8b8a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jbaBZ_M1IzkFf5-_A4djtb7sHU=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.611708+00 2025-12-09 10:14:57.611713+00 7995 LJ0864-5#WJC22 SPMX-20240815303146 \N \N \N 1 \N [{"file_id": "fcabf666-9ac3-4942-945b-c56ed49b4775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a7bcb3fbdf841afae71890ca6d853d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a7bcb3fbdf841afae71890ca6d853d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a7bcb3fbdf841afae71890ca6d853d9.jpg", "file_size": 25093, "is_delete": false, "file_type": 1, "original_file_name": "LJ0864-5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7bcb3fbdf841afae71890ca6d853d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7bcb3fbdf841afae71890ca6d853d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7bcb3fbdf841afae71890ca6d853d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a7bcb3fbdf841afae71890ca6d853d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a7bcb3fbdf841afae71890ca6d853d9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6C6omItTl0Zz4_v7CCmjvZf2y8=", "createTime": "2024-08-15 14:46:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.613192+00 2025-12-09 10:14:57.613196+00 7996 C331#白色 SPMX-20240815303153 \N \N \N 1 \N [{"file_id": "7924de09-2dc5-4422-90f1-94a9f3e292f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deaec92736db4236b75841def5b13592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deaec92736db4236b75841def5b13592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deaec92736db4236b75841def5b13592.jpg", "file_size": 16847, "is_delete": false, "file_type": 1, "original_file_name": "C331#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaec92736db4236b75841def5b13592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaec92736db4236b75841def5b13592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deaec92736db4236b75841def5b13592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deaec92736db4236b75841def5b13592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deaec92736db4236b75841def5b13592.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WRsjWF6vSZhKeyyxAiES1uN3_dg=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.614643+00 2025-12-09 10:14:57.614648+00 7997 LZ1238#加大款A1 SPMX-20240815303154 \N \N \N 1 \N [{"file_id": "05c171e2-0058-4eda-9123-a21a74127926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f35aa0b571be4e358713c2f6e3ceaff8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f35aa0b571be4e358713c2f6e3ceaff8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f35aa0b571be4e358713c2f6e3ceaff8.jpg", "file_size": 27864, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35aa0b571be4e358713c2f6e3ceaff8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35aa0b571be4e358713c2f6e3ceaff8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35aa0b571be4e358713c2f6e3ceaff8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f35aa0b571be4e358713c2f6e3ceaff8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f35aa0b571be4e358713c2f6e3ceaff8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQJP9eiOt-Vi3qhy-TgpvcaNnu0=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.622162+00 2025-12-09 10:14:57.622166+00 8002 80305#裤子 SPMX-20240815303157 \N \N \N 1 \N [{"file_id": "42220a81-9f54-4e1b-b8d8-c1743b103090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "611a3af10f274caf8b895e64e879edd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "611a3af10f274caf8b895e64e879edd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "611a3af10f274caf8b895e64e879edd2.jpg", "file_size": 16358, "is_delete": false, "file_type": 1, "original_file_name": "80305#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611a3af10f274caf8b895e64e879edd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611a3af10f274caf8b895e64e879edd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611a3af10f274caf8b895e64e879edd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/611a3af10f274caf8b895e64e879edd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/611a3af10f274caf8b895e64e879edd2.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0DNoX2rs8AwCW7qR9xOmyOrVFs=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.616345+00 2025-12-09 10:14:57.616349+00 7998 23-2112#-A2领口通用 SPMX-20240815303161 \N \N \N 1 \N [{"file_id": "37504d9b-3a34-42c9-ba6b-ab63f53c1304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d56adcf23354d0f9e6e81bbcf1975bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d56adcf23354d0f9e6e81bbcf1975bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d56adcf23354d0f9e6e81bbcf1975bc.jpg", "file_size": 7666, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d56adcf23354d0f9e6e81bbcf1975bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d56adcf23354d0f9e6e81bbcf1975bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d56adcf23354d0f9e6e81bbcf1975bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d56adcf23354d0f9e6e81bbcf1975bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d56adcf23354d0f9e6e81bbcf1975bc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QhV8l9kMeqU7waxS6RFKVICkJIM=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.617814+00 2025-12-09 10:14:57.617818+00 7999 0003-33FWF#黄色 SPMX-20240815303149 \N \N \N 1 \N [{"file_id": "61619470-6f6e-4b1e-abb6-bca3b505656a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d9e549142f64ddd9e28cfc02db7a3a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d9e549142f64ddd9e28cfc02db7a3a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d9e549142f64ddd9e28cfc02db7a3a3.jpg", "file_size": 21667, "is_delete": false, "file_type": 1, "original_file_name": "0003-33FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9e549142f64ddd9e28cfc02db7a3a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9e549142f64ddd9e28cfc02db7a3a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9e549142f64ddd9e28cfc02db7a3a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d9e549142f64ddd9e28cfc02db7a3a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d9e549142f64ddd9e28cfc02db7a3a3.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-RDxlg6_3jDh_cE0g6mYWsMPYw=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.619276+00 2025-12-09 10:14:57.61928+00 8000 23-2112#-A2袖子4XL SPMX-20240815303150 \N \N \N 1 \N [{"file_id": "a2fca896-c629-4769-a249-25736a8aaca6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac3d8315392a4b19a3355cdf09bfe180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac3d8315392a4b19a3355cdf09bfe180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac3d8315392a4b19a3355cdf09bfe180.jpg", "file_size": 9383, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d8315392a4b19a3355cdf09bfe180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d8315392a4b19a3355cdf09bfe180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d8315392a4b19a3355cdf09bfe180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac3d8315392a4b19a3355cdf09bfe180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac3d8315392a4b19a3355cdf09bfe180.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtMgvE9egvx4K3R1_DD7MHsZEvk=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.620725+00 2025-12-09 10:14:57.62073+00 8001 DL1080-B8#RC23 SPMX-20240815303155 \N \N \N 1 \N [{"file_id": "583ff58d-3d36-4d85-a01d-e47627904ca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52bb3d7d930e4bf09f7d0aa9b2409d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52bb3d7d930e4bf09f7d0aa9b2409d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52bb3d7d930e4bf09f7d0aa9b2409d44.jpg", "file_size": 61489, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B8#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bb3d7d930e4bf09f7d0aa9b2409d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bb3d7d930e4bf09f7d0aa9b2409d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bb3d7d930e4bf09f7d0aa9b2409d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52bb3d7d930e4bf09f7d0aa9b2409d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52bb3d7d930e4bf09f7d0aa9b2409d44.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lk5VkiI_KAeEzdyzrA8NwTUMc90=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.623625+00 2025-12-09 10:14:57.623629+00 8003 JTSS037#绿底 SPMX-20240815303148 \N \N \N 1 \N [{"file_id": "219874ba-c3a5-4a95-812a-5b522b40979d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "148d735869e544fd8ae1d27e707f54a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "148d735869e544fd8ae1d27e707f54a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "148d735869e544fd8ae1d27e707f54a9.jpg", "file_size": 14711, "is_delete": false, "file_type": 1, "original_file_name": "JTSS037#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d735869e544fd8ae1d27e707f54a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d735869e544fd8ae1d27e707f54a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d735869e544fd8ae1d27e707f54a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/148d735869e544fd8ae1d27e707f54a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/148d735869e544fd8ae1d27e707f54a9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0bgoPyHsiIdlkNgomkBxLEE08w=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.625117+00 2025-12-09 10:14:57.625121+00 8004 FHXGPK-080-3 SPMX-20240815303156 \N \N \N 1 \N [{"file_id": "0e03c547-9632-497a-9970-fc21dd90787d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a47bbdfb300d41159f937fa2b97eea18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a47bbdfb300d41159f937fa2b97eea18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a47bbdfb300d41159f937fa2b97eea18.jpg", "file_size": 34250, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-080-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47bbdfb300d41159f937fa2b97eea18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47bbdfb300d41159f937fa2b97eea18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47bbdfb300d41159f937fa2b97eea18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a47bbdfb300d41159f937fa2b97eea18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a47bbdfb300d41159f937fa2b97eea18.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQjxg0iWxL4q1gAhzHabUBq-Mg0=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.62657+00 2025-12-09 10:14:57.626574+00 8005 80305#小童 SPMX-20240815303147 \N \N \N 1 \N [{"file_id": "7323e459-8867-4d6c-ad5d-3778a4b44c88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2593957ce6a4ede9c5d3a5f855fc5a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2593957ce6a4ede9c5d3a5f855fc5a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2593957ce6a4ede9c5d3a5f855fc5a4.jpg", "file_size": 25535, "is_delete": false, "file_type": 1, "original_file_name": "80305#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2593957ce6a4ede9c5d3a5f855fc5a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2593957ce6a4ede9c5d3a5f855fc5a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2593957ce6a4ede9c5d3a5f855fc5a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2593957ce6a4ede9c5d3a5f855fc5a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2593957ce6a4ede9c5d3a5f855fc5a4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUKU3_bi9FGSyTYoNa0AZx2Zhqg=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.628034+00 2025-12-09 10:14:57.628038+00 8006 LZ1238#加大款A10 SPMX-20240815303162 \N \N \N 1 \N [{"file_id": "0d714dcb-53b6-4f62-bf45-8625ee43ffe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f27b0b588094e6497c0169a14964e57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f27b0b588094e6497c0169a14964e57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f27b0b588094e6497c0169a14964e57.jpg", "file_size": 25148, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f27b0b588094e6497c0169a14964e57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f27b0b588094e6497c0169a14964e57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f27b0b588094e6497c0169a14964e57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f27b0b588094e6497c0169a14964e57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f27b0b588094e6497c0169a14964e57.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bR7qXWRFm2eBsA1AHE88rpnez0=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.62949+00 2025-12-09 10:14:57.629494+00 8007 C331#黑色 SPMX-20240815303165 \N \N \N 1 \N [{"file_id": "b64aec80-8ac1-4168-9f20-b2fce83f7987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3f6a010c47d428ea13d0d10fa2a3e41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3f6a010c47d428ea13d0d10fa2a3e41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3f6a010c47d428ea13d0d10fa2a3e41.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "C331#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6a010c47d428ea13d0d10fa2a3e41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6a010c47d428ea13d0d10fa2a3e41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6a010c47d428ea13d0d10fa2a3e41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3f6a010c47d428ea13d0d10fa2a3e41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3f6a010c47d428ea13d0d10fa2a3e41.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qswJ38JR71ArhvurR5Io4BS3wcE=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.630944+00 2025-12-09 10:14:57.630948+00 8008 LJ1023#WJC22 SPMX-20240815303170 \N \N \N 1 \N [{"file_id": "a5028126-ffa6-4cc6-a63d-7e066f811176", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "563015d92aeb4ee282e2d1b4ae0a86d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "563015d92aeb4ee282e2d1b4ae0a86d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "563015d92aeb4ee282e2d1b4ae0a86d7.jpg", "file_size": 15728, "is_delete": false, "file_type": 1, "original_file_name": "LJ1023#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563015d92aeb4ee282e2d1b4ae0a86d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563015d92aeb4ee282e2d1b4ae0a86d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563015d92aeb4ee282e2d1b4ae0a86d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/563015d92aeb4ee282e2d1b4ae0a86d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/563015d92aeb4ee282e2d1b4ae0a86d7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0hgRw06L1YWQsAOmeGSzF_y5gM=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.63242+00 2025-12-09 10:14:57.632425+00 8009 0003-340#黄底 SPMX-20240815303171 \N \N \N 1 \N [{"file_id": "3d8296da-07a5-45cb-baec-5585863644fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a019cba91c57420990cdad9a624723a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a019cba91c57420990cdad9a624723a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a019cba91c57420990cdad9a624723a2.jpg", "file_size": 12007, "is_delete": false, "file_type": 1, "original_file_name": "0003-340#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a019cba91c57420990cdad9a624723a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a019cba91c57420990cdad9a624723a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a019cba91c57420990cdad9a624723a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a019cba91c57420990cdad9a624723a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a019cba91c57420990cdad9a624723a2.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jX-m37cigG8gFE2buTadWZLZUvg=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.633889+00 2025-12-09 10:14:57.633893+00 8010 HT0101-17#WJC22 SPMX-20240815303164 \N \N \N 1 \N [{"file_id": "36eab344-43cc-47ea-9d07-917e050bbab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6aa3129b5849579a26293949d6712e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6aa3129b5849579a26293949d6712e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6aa3129b5849579a26293949d6712e.jpg", "file_size": 22572, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-17#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6aa3129b5849579a26293949d6712e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6aa3129b5849579a26293949d6712e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6aa3129b5849579a26293949d6712e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6aa3129b5849579a26293949d6712e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6aa3129b5849579a26293949d6712e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HtiWw85A4USGWuYYry2dOEz7No=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.635347+00 2025-12-09 10:14:57.635351+00 8011 JTSS037FW#VS-D3 SPMX-20240815303169 \N \N \N 1 \N [{"file_id": "8d2f406f-7999-49c4-b22b-dbf970b73481", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d495e19e443435b969d2c2d0e6af7be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d495e19e443435b969d2c2d0e6af7be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d495e19e443435b969d2c2d0e6af7be.jpg", "file_size": 8668, "is_delete": false, "file_type": 1, "original_file_name": "JTSS037FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d495e19e443435b969d2c2d0e6af7be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d495e19e443435b969d2c2d0e6af7be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d495e19e443435b969d2c2d0e6af7be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d495e19e443435b969d2c2d0e6af7be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d495e19e443435b969d2c2d0e6af7be.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YaHLxpSLVIPW2bTVxhaZ08-VXMM=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.636783+00 2025-12-09 10:14:57.636787+00 8012 DL1080-B9#RC23 SPMX-20240815303168 \N \N \N 1 \N [{"file_id": "5f6ba8a2-aaca-4b3f-8331-49b9ebed27fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aea1c01a7ae4ff6bf98578a411b53cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aea1c01a7ae4ff6bf98578a411b53cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aea1c01a7ae4ff6bf98578a411b53cf.jpg", "file_size": 78886, "is_delete": false, "file_type": 1, "original_file_name": "DL1080-B9#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aea1c01a7ae4ff6bf98578a411b53cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aea1c01a7ae4ff6bf98578a411b53cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aea1c01a7ae4ff6bf98578a411b53cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aea1c01a7ae4ff6bf98578a411b53cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aea1c01a7ae4ff6bf98578a411b53cf.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rwz89LVX81mbRkMCEnoOFt51S90=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.638511+00 2025-12-09 10:14:57.638516+00 8013 106A橙色 SPMX-20240815303163 \N \N \N 1 \N [{"file_id": "ff3fbcd8-8ea8-4bca-9e11-e983d33b5901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c23bf01f16e04a6e8e69a46a99372c26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c23bf01f16e04a6e8e69a46a99372c26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c23bf01f16e04a6e8e69a46a99372c26.jpg", "file_size": 56303, "is_delete": false, "file_type": 1, "original_file_name": "106A橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23bf01f16e04a6e8e69a46a99372c26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23bf01f16e04a6e8e69a46a99372c26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23bf01f16e04a6e8e69a46a99372c26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c23bf01f16e04a6e8e69a46a99372c26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c23bf01f16e04a6e8e69a46a99372c26.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jpCdceOqNtIivMgqPqbWt77zcMI=", "createTime": "2024-08-15 14:46:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.640002+00 2025-12-09 10:14:57.640006+00 8014 FHXGPK-080-4 SPMX-20240815303167 \N \N \N 1 \N [{"file_id": "ff603745-b6ad-46b6-a242-b27b9d867a69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42a75fdde26e4072be15831f50d8358a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42a75fdde26e4072be15831f50d8358a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42a75fdde26e4072be15831f50d8358a.jpg", "file_size": 34840, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-080-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a75fdde26e4072be15831f50d8358a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a75fdde26e4072be15831f50d8358a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a75fdde26e4072be15831f50d8358a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42a75fdde26e4072be15831f50d8358a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42a75fdde26e4072be15831f50d8358a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6Rb84QlZ1Qy0HM8HjHEObIpMzQ=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.641441+00 2025-12-09 10:14:57.641445+00 8015 80306#上衣 SPMX-20240815303166 \N \N \N 1 \N [{"file_id": "4d9a289b-24e9-4cfd-be37-257c80948226", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40df9fcd4ec646019ec414e6c3c4c987.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40df9fcd4ec646019ec414e6c3c4c987.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40df9fcd4ec646019ec414e6c3c4c987.jpg", "file_size": 15175, "is_delete": false, "file_type": 1, "original_file_name": "80306#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40df9fcd4ec646019ec414e6c3c4c987.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40df9fcd4ec646019ec414e6c3c4c987.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40df9fcd4ec646019ec414e6c3c4c987.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40df9fcd4ec646019ec414e6c3c4c987.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40df9fcd4ec646019ec414e6c3c4c987.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_EbwiUtLANPdZeCv-5uJv9GTZc=", "createTime": "2024-08-15 14:46:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.642895+00 2025-12-09 10:14:57.642899+00 8016 JTSS038FW#VS-D3 SPMX-20240815303176 \N \N \N 1 \N [{"file_id": "3743c78d-0269-4293-9655-3eba4c1bb3d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba239eddb2ea4215adca27acb31566bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba239eddb2ea4215adca27acb31566bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba239eddb2ea4215adca27acb31566bc.jpg", "file_size": 19938, "is_delete": false, "file_type": 1, "original_file_name": "JTSS038FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba239eddb2ea4215adca27acb31566bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba239eddb2ea4215adca27acb31566bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba239eddb2ea4215adca27acb31566bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba239eddb2ea4215adca27acb31566bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba239eddb2ea4215adca27acb31566bc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5YooMVzUCSeyPHPHERRCqzJ4Pw=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.644359+00 2025-12-09 10:14:57.644363+00 8017 C333#墨绿白点 SPMX-20240815303181 \N \N \N 1 \N [{"file_id": "bdd30f21-6952-471b-b46f-7a9c88681a0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f64f2cb144204a61950a99f1b087e1bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f64f2cb144204a61950a99f1b087e1bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f64f2cb144204a61950a99f1b087e1bd.jpg", "file_size": 14142, "is_delete": false, "file_type": 1, "original_file_name": "C333#墨绿白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64f2cb144204a61950a99f1b087e1bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64f2cb144204a61950a99f1b087e1bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64f2cb144204a61950a99f1b087e1bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f64f2cb144204a61950a99f1b087e1bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f64f2cb144204a61950a99f1b087e1bd.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9jgyttvJWvXP232Qu5NA7PtfWo=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.645816+00 2025-12-09 10:14:57.64582+00 8018 0003-341#WJC22 SPMX-20240815303182 \N \N \N 1 \N [{"file_id": "4125d5ac-4732-4129-960f-b0109ebf22ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg", "file_size": 22969, "is_delete": false, "file_type": 1, "original_file_name": "0003-341#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947bf9cdbe0f4f77a4cfd8183a9b9ccc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQCcX2MlmQpxClkxwHqFbLlZ6x4=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.647309+00 2025-12-09 10:14:57.647314+00 8019 DL128P#印花A VS-D3 SPMX-20240815303179 \N \N \N 1 \N [{"file_id": "9c172726-69b8-4ea7-afae-1d2c320a5e21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b6f1ed149a04c768a9a296e916a9438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b6f1ed149a04c768a9a296e916a9438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b6f1ed149a04c768a9a296e916a9438.jpg", "file_size": 29160, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花A VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6f1ed149a04c768a9a296e916a9438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6f1ed149a04c768a9a296e916a9438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6f1ed149a04c768a9a296e916a9438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b6f1ed149a04c768a9a296e916a9438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b6f1ed149a04c768a9a296e916a9438.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FgalpsDd5YlPdVQJe5AaRrRO9nU=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.648775+00 2025-12-09 10:14:57.648779+00 8020 LZ1238#加大款A11 SPMX-20240815303185 \N \N \N 1 \N [{"file_id": "cccc3a44-7754-4e47-b838-bb5d5077e1a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78cb78eb146c447186881dba31ed498c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78cb78eb146c447186881dba31ed498c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78cb78eb146c447186881dba31ed498c.jpg", "file_size": 20591, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A11.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cb78eb146c447186881dba31ed498c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cb78eb146c447186881dba31ed498c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cb78eb146c447186881dba31ed498c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78cb78eb146c447186881dba31ed498c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78cb78eb146c447186881dba31ed498c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sN38FY9Il4lYLgQ2iPZvNmQpPhQ=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.65026+00 2025-12-09 10:14:57.650263+00 8021 106A玫红 SPMX-20240815303177 \N \N \N 1 \N [{"file_id": "fa96f88c-d5a4-41b6-aadf-bf51612fa153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07fb4f2af11347fabea8281ccc791ee6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07fb4f2af11347fabea8281ccc791ee6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07fb4f2af11347fabea8281ccc791ee6.jpg", "file_size": 55050, "is_delete": false, "file_type": 1, "original_file_name": "106A玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4f2af11347fabea8281ccc791ee6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4f2af11347fabea8281ccc791ee6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4f2af11347fabea8281ccc791ee6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07fb4f2af11347fabea8281ccc791ee6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07fb4f2af11347fabea8281ccc791ee6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyOt0bAMRvEYj_sDIR1tgVJhTH8=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.651721+00 2025-12-09 10:14:57.651726+00 8022 LZ1238#加大款A10批布 SPMX-20240815303174 \N \N \N 1 \N [{"file_id": "85a09bff-cc43-4414-a567-d43262a2ab09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc3f2f06cc614cefb2975283cc2c9e61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc3f2f06cc614cefb2975283cc2c9e61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc3f2f06cc614cefb2975283cc2c9e61.jpg", "file_size": 9905, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A10批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3f2f06cc614cefb2975283cc2c9e61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3f2f06cc614cefb2975283cc2c9e61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3f2f06cc614cefb2975283cc2c9e61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc3f2f06cc614cefb2975283cc2c9e61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc3f2f06cc614cefb2975283cc2c9e61.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCOvRghVsjChH8vHt2PJR4C-4Mk=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.653208+00 2025-12-09 10:14:57.653211+00 8023 HT0101-18#WJC22 SPMX-20240815303183 \N \N \N 1 \N [{"file_id": "a5a334a8-e1ee-44a1-a429-d6cd196e93e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "965c0517e2024d0097041e0d78908202.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "965c0517e2024d0097041e0d78908202.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "965c0517e2024d0097041e0d78908202.jpg", "file_size": 19153, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-18#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965c0517e2024d0097041e0d78908202.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965c0517e2024d0097041e0d78908202.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965c0517e2024d0097041e0d78908202.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/965c0517e2024d0097041e0d78908202.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/965c0517e2024d0097041e0d78908202.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x3Nh75fNk1UFRsl18toGWCM9p_0=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.654676+00 2025-12-09 10:14:57.654681+00 8024 23-2112#-A2领子通用 SPMX-20240815303172 \N \N \N 1 \N [{"file_id": "5b08b464-2947-48dc-8994-27c5105d7414", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3886b88afc84a42a0970cc2e593aebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3886b88afc84a42a0970cc2e593aebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3886b88afc84a42a0970cc2e593aebd.jpg", "file_size": 7977, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3886b88afc84a42a0970cc2e593aebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3886b88afc84a42a0970cc2e593aebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3886b88afc84a42a0970cc2e593aebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3886b88afc84a42a0970cc2e593aebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3886b88afc84a42a0970cc2e593aebd.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDgH6t1e6EJjdJ9J8PNce8hHjiE=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.656195+00 2025-12-09 10:14:57.6562+00 8025 FHXGPK-080-5 SPMX-20240815303180 \N \N \N 1 \N [{"file_id": "f3e11660-2785-4996-b6e5-c0880c2c97ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg", "file_size": 34220, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-080-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e8cb4d3c17d43f9ab6fb56f8cb76646.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QbU5EiTcYld98FbIvrpPeXnn49A=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.65795+00 2025-12-09 10:14:57.657954+00 8026 HT0101-17#黑黄 SPMX-20240815303173 \N \N \N 1 \N [{"file_id": "a8f9b3bc-af7b-4377-aa1b-6a584f7af07b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ec0aec865384a5ba2dd93c4da7d2c9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ec0aec865384a5ba2dd93c4da7d2c9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ec0aec865384a5ba2dd93c4da7d2c9b.jpg", "file_size": 21756, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-17#黑黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0aec865384a5ba2dd93c4da7d2c9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0aec865384a5ba2dd93c4da7d2c9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ec0aec865384a5ba2dd93c4da7d2c9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ec0aec865384a5ba2dd93c4da7d2c9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ec0aec865384a5ba2dd93c4da7d2c9b.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:My0dj7K7qJM0S2WKk0b8ByUPmLg=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.659726+00 2025-12-09 10:14:57.659729+00 8027 LJ1035#WJC22 SPMX-20240815303175 \N \N \N 1 \N [{"file_id": "bf19063a-eb6b-4eda-b444-0772e2d5ab20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "236187ed47cc42769330c1dcc338cba2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "236187ed47cc42769330c1dcc338cba2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "236187ed47cc42769330c1dcc338cba2.jpg", "file_size": 24280, "is_delete": false, "file_type": 1, "original_file_name": "LJ1035#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236187ed47cc42769330c1dcc338cba2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236187ed47cc42769330c1dcc338cba2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236187ed47cc42769330c1dcc338cba2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/236187ed47cc42769330c1dcc338cba2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/236187ed47cc42769330c1dcc338cba2.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I74k-IuE8ihHbQtDMP-cA2ouriM=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.661204+00 2025-12-09 10:14:57.661208+00 8028 80306#乱花 SPMX-20240815303178 \N \N \N 1 \N [{"file_id": "652bcc67-1b84-4de7-8cab-f74abcf23b01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c953a2ac0074c299906c29ed1a3dd75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c953a2ac0074c299906c29ed1a3dd75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c953a2ac0074c299906c29ed1a3dd75.jpg", "file_size": 6802, "is_delete": false, "file_type": 1, "original_file_name": "80306#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c953a2ac0074c299906c29ed1a3dd75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c953a2ac0074c299906c29ed1a3dd75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c953a2ac0074c299906c29ed1a3dd75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c953a2ac0074c299906c29ed1a3dd75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c953a2ac0074c299906c29ed1a3dd75.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UW2ZlTk5N-bHOUJApR-bDA6jP7M=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.662677+00 2025-12-09 10:14:57.662681+00 8029 23-2112#-A3前后片3XL SPMX-20240815303184 \N \N \N 1 \N [{"file_id": "73a8e1be-a538-4ec6-a1fb-b588871b919a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9561317e980647d0af6f6a87a9b72fc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9561317e980647d0af6f6a87a9b72fc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9561317e980647d0af6f6a87a9b72fc6.jpg", "file_size": 10126, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9561317e980647d0af6f6a87a9b72fc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9561317e980647d0af6f6a87a9b72fc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9561317e980647d0af6f6a87a9b72fc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9561317e980647d0af6f6a87a9b72fc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9561317e980647d0af6f6a87a9b72fc6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9khLwxXH6GkszUzZJ1AFngYKU5M=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.664134+00 2025-12-09 10:14:57.664138+00 8030 C333#大白底绿点 SPMX-20240815303191 \N \N \N 1 \N [{"file_id": "fbb451c8-5532-4ce3-a5b6-7be680b44535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88e264e495d940df844cece196c7d1d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88e264e495d940df844cece196c7d1d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88e264e495d940df844cece196c7d1d2.jpg", "file_size": 13326, "is_delete": false, "file_type": 1, "original_file_name": "C333#大白底绿点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e264e495d940df844cece196c7d1d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e264e495d940df844cece196c7d1d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e264e495d940df844cece196c7d1d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88e264e495d940df844cece196c7d1d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88e264e495d940df844cece196c7d1d2.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6ne_cLfd-QJDyigcSrgl7Tg4qM=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.665626+00 2025-12-09 10:14:57.665631+00 8031 JTSS039FW#VS-D3 SPMX-20240815303199 \N \N \N 1 \N [{"file_id": "bc6723c4-02f0-4b02-9be8-618fdc903fe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3513b3a492ad4855b1e679c19ae828d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3513b3a492ad4855b1e679c19ae828d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3513b3a492ad4855b1e679c19ae828d7.jpg", "file_size": 8698, "is_delete": false, "file_type": 1, "original_file_name": "JTSS039FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3513b3a492ad4855b1e679c19ae828d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3513b3a492ad4855b1e679c19ae828d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3513b3a492ad4855b1e679c19ae828d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3513b3a492ad4855b1e679c19ae828d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3513b3a492ad4855b1e679c19ae828d7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GBDs3oLzQq_GQMxQYDMTfs9d7Y=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.667092+00 2025-12-09 10:14:57.667097+00 8032 LJ1039#WJC22 SPMX-20240815303186 \N \N \N 1 \N [{"file_id": "920a1064-cf1e-4a4d-80ba-4d091c16ef15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5387142cbba14cd8ad133beb394b8a68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5387142cbba14cd8ad133beb394b8a68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5387142cbba14cd8ad133beb394b8a68.jpg", "file_size": 19995, "is_delete": false, "file_type": 1, "original_file_name": "LJ1039#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5387142cbba14cd8ad133beb394b8a68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5387142cbba14cd8ad133beb394b8a68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5387142cbba14cd8ad133beb394b8a68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5387142cbba14cd8ad133beb394b8a68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5387142cbba14cd8ad133beb394b8a68.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UoGcl70OMVOy7bXJqjJUC8MUA8Y=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.668638+00 2025-12-09 10:14:57.668642+00 8033 23-2112#-A3前后片4XL SPMX-20240815303193 \N \N \N 1 \N [{"file_id": "b06b24b1-e968-47f4-ba17-62ecf484eaac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f73c80010105468993ea03c804d85212.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f73c80010105468993ea03c804d85212.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f73c80010105468993ea03c804d85212.jpg", "file_size": 10504, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73c80010105468993ea03c804d85212.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73c80010105468993ea03c804d85212.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f73c80010105468993ea03c804d85212.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f73c80010105468993ea03c804d85212.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f73c80010105468993ea03c804d85212.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EyoGKTpNhkACEr1EkJq7mkLmpUA=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.67021+00 2025-12-09 10:14:57.670214+00 8034 LJ1056#蓝色0XL SPMX-20240815303197 \N \N \N 1 \N [{"file_id": "5237d15d-6985-4708-ba7f-d2afe62e0de7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9051347ee3446568b7aa8a8a4377379.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9051347ee3446568b7aa8a8a4377379.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9051347ee3446568b7aa8a8a4377379.jpg", "file_size": 17072, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色0XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9051347ee3446568b7aa8a8a4377379.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9051347ee3446568b7aa8a8a4377379.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9051347ee3446568b7aa8a8a4377379.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9051347ee3446568b7aa8a8a4377379.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9051347ee3446568b7aa8a8a4377379.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kB9v4XXVP4q7rZxVVRrhi-CT9iw=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.671728+00 2025-12-09 10:14:57.671732+00 8035 FHXGPK-081-1 SPMX-20240815303194 \N \N \N 1 \N [{"file_id": "a07b9f44-3596-4aab-b04f-b3753096f765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e98b63caf004ee399b1a3dd0e273fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e98b63caf004ee399b1a3dd0e273fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e98b63caf004ee399b1a3dd0e273fe9.jpg", "file_size": 39016, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-081-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e98b63caf004ee399b1a3dd0e273fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e98b63caf004ee399b1a3dd0e273fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e98b63caf004ee399b1a3dd0e273fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e98b63caf004ee399b1a3dd0e273fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e98b63caf004ee399b1a3dd0e273fe9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OsRwsBuvKa57kmRuL6KeC02i7AA=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.673228+00 2025-12-09 10:14:57.673232+00 8036 106A红色 SPMX-20240815303201 \N \N \N 1 \N [{"file_id": "7c173d5c-9f0d-4d44-ad39-d773c1181c54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8544da939df64ef79819d7f7f0455427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8544da939df64ef79819d7f7f0455427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8544da939df64ef79819d7f7f0455427.jpg", "file_size": 55925, "is_delete": false, "file_type": 1, "original_file_name": "106A红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8544da939df64ef79819d7f7f0455427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8544da939df64ef79819d7f7f0455427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8544da939df64ef79819d7f7f0455427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8544da939df64ef79819d7f7f0455427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8544da939df64ef79819d7f7f0455427.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3lF7HFsObfetquYtu2_4_0ejmA=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.674713+00 2025-12-09 10:14:57.674718+00 8037 106A紫色 SPMX-20240815303190 \N \N \N 1 \N [{"file_id": "d34cd38b-df66-461a-a888-bb0ddc76d5f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0c37f4d091f445580e73a34c08f5748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0c37f4d091f445580e73a34c08f5748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0c37f4d091f445580e73a34c08f5748.jpg", "file_size": 56855, "is_delete": false, "file_type": 1, "original_file_name": "106A紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c37f4d091f445580e73a34c08f5748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c37f4d091f445580e73a34c08f5748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c37f4d091f445580e73a34c08f5748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0c37f4d091f445580e73a34c08f5748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0c37f4d091f445580e73a34c08f5748.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Jloo9H1YfpNN2oiGeu7KlL4MWo=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.676226+00 2025-12-09 10:14:57.67623+00 8038 LZ1238#加大款A11批布 SPMX-20240815303196 \N \N \N 1 \N [{"file_id": "eb8b17dc-8a73-464d-bd5a-52fcf11c8872", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7deaf45c6f9c4a11aa03e9212218ccd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7deaf45c6f9c4a11aa03e9212218ccd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7deaf45c6f9c4a11aa03e9212218ccd1.jpg", "file_size": 16423, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A11批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deaf45c6f9c4a11aa03e9212218ccd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deaf45c6f9c4a11aa03e9212218ccd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deaf45c6f9c4a11aa03e9212218ccd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7deaf45c6f9c4a11aa03e9212218ccd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7deaf45c6f9c4a11aa03e9212218ccd1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PUWCh5FQ5czBIbTulwBquX_gtyA=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.6777+00 2025-12-09 10:14:57.677707+00 8039 0003-343#WJC22 SPMX-20240815303203 \N \N \N 1 \N [{"file_id": "67dc188f-0264-48d5-9755-9232a4849490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5749bc32e7564539b9d6f1da76c12c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5749bc32e7564539b9d6f1da76c12c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5749bc32e7564539b9d6f1da76c12c14.jpg", "file_size": 23399, "is_delete": false, "file_type": 1, "original_file_name": "0003-343#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5749bc32e7564539b9d6f1da76c12c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5749bc32e7564539b9d6f1da76c12c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5749bc32e7564539b9d6f1da76c12c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5749bc32e7564539b9d6f1da76c12c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5749bc32e7564539b9d6f1da76c12c14.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZulbl9w9lIwRyMROITqvMpHmIs=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.67921+00 2025-12-09 10:14:57.679214+00 8040 80306#裤子 SPMX-20240815303188 \N \N \N 1 \N [{"file_id": "52afff24-0e46-424a-9739-da8cfb8810f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg", "file_size": 18397, "is_delete": false, "file_type": 1, "original_file_name": "80306#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60f99c9b40ba4fbf81c7a7bc9f54bce4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIAsnnEjbb8f9OQO-tdJ4lwE9lI=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.680702+00 2025-12-09 10:14:57.680709+00 8041 JTSS039# SPMX-20240815303187 \N \N \N 1 \N [{"file_id": "55fa4577-f664-415f-b138-79b3f7fd7270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "873d7aeba5164860a984bf64c8a8ff93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "873d7aeba5164860a984bf64c8a8ff93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "873d7aeba5164860a984bf64c8a8ff93.jpg", "file_size": 8917, "is_delete": false, "file_type": 1, "original_file_name": "JTSS039#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873d7aeba5164860a984bf64c8a8ff93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873d7aeba5164860a984bf64c8a8ff93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873d7aeba5164860a984bf64c8a8ff93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/873d7aeba5164860a984bf64c8a8ff93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/873d7aeba5164860a984bf64c8a8ff93.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKpmAnB8AFaCEXq425mh7KuD77g=", "createTime": "2024-08-15 14:46:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.682191+00 2025-12-09 10:14:57.682196+00 8042 DL128P#印花B VS-D3 SPMX-20240815303189 \N \N \N 1 \N [{"file_id": "15ae46d0-ffcb-4a63-89f5-d894414cc7e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cacbc91f0be94a728f3d7bea6269c1f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cacbc91f0be94a728f3d7bea6269c1f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cacbc91f0be94a728f3d7bea6269c1f8.jpg", "file_size": 22991, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花B VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cacbc91f0be94a728f3d7bea6269c1f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cacbc91f0be94a728f3d7bea6269c1f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cacbc91f0be94a728f3d7bea6269c1f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cacbc91f0be94a728f3d7bea6269c1f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cacbc91f0be94a728f3d7bea6269c1f8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHbakotcjAEdjBDqaILbEBNqeL4=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.68391+00 2025-12-09 10:14:57.683914+00 8043 0003-342#WJC22 SPMX-20240815303192 \N \N \N 1 \N [{"file_id": "c8ecad26-0262-47be-84ec-1349c082b373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6719a4ecced24b5894cc9b40c9404ff1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6719a4ecced24b5894cc9b40c9404ff1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6719a4ecced24b5894cc9b40c9404ff1.jpg", "file_size": 21677, "is_delete": false, "file_type": 1, "original_file_name": "0003-342#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6719a4ecced24b5894cc9b40c9404ff1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6719a4ecced24b5894cc9b40c9404ff1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6719a4ecced24b5894cc9b40c9404ff1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6719a4ecced24b5894cc9b40c9404ff1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6719a4ecced24b5894cc9b40c9404ff1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nKFfLptgwgHOEpD_Onx3eag73EY=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.685407+00 2025-12-09 10:14:57.685411+00 8044 DL128P#印花B-2 SPMX-20240815303200 \N \N \N 1 \N [{"file_id": "3225a936-ef19-40fa-8c94-cf7664390a6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6879d482e3c4c918b105f20cc6ba7c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6879d482e3c4c918b105f20cc6ba7c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6879d482e3c4c918b105f20cc6ba7c5.jpg", "file_size": 24152, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花B-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6879d482e3c4c918b105f20cc6ba7c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6879d482e3c4c918b105f20cc6ba7c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6879d482e3c4c918b105f20cc6ba7c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6879d482e3c4c918b105f20cc6ba7c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6879d482e3c4c918b105f20cc6ba7c5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVoZ0KcvlmwqcILmbxj8ynZdhj4=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.686924+00 2025-12-09 10:14:57.686928+00 8045 HT0101-19#蓝底 SPMX-20240815303195 \N \N \N 1 \N [{"file_id": "aba5f2c5-26e0-49a2-a89a-6b3a53864b1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92157bd18b2c46cc8932e0e60329765c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92157bd18b2c46cc8932e0e60329765c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92157bd18b2c46cc8932e0e60329765c.jpg", "file_size": 13151, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-19#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92157bd18b2c46cc8932e0e60329765c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92157bd18b2c46cc8932e0e60329765c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92157bd18b2c46cc8932e0e60329765c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92157bd18b2c46cc8932e0e60329765c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92157bd18b2c46cc8932e0e60329765c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kf_5kPeIfXKUwf1QPP5YZbtIWF4=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.688403+00 2025-12-09 10:14:57.688408+00 8046 80307#上衣 SPMX-20240815303198 \N \N \N 1 \N [{"file_id": "11ac77ca-02a8-4f45-a76a-f71a420ae06d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62ecaa0e157a4943ac45662eda206d5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62ecaa0e157a4943ac45662eda206d5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62ecaa0e157a4943ac45662eda206d5f.jpg", "file_size": 14211, "is_delete": false, "file_type": 1, "original_file_name": "80307#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ecaa0e157a4943ac45662eda206d5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ecaa0e157a4943ac45662eda206d5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ecaa0e157a4943ac45662eda206d5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62ecaa0e157a4943ac45662eda206d5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62ecaa0e157a4943ac45662eda206d5f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zr3R8ZnWejuHsJSzjo9RVzeci-o=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.689894+00 2025-12-09 10:14:57.689898+00 8047 C333#大白黑点 SPMX-20240815303202 \N \N \N 1 \N [{"file_id": "6c6cd3fe-8091-40bd-a6ce-429fe058de87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e87ad16ee5a5409d980e56e6b71e169d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e87ad16ee5a5409d980e56e6b71e169d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e87ad16ee5a5409d980e56e6b71e169d.jpg", "file_size": 13492, "is_delete": false, "file_type": 1, "original_file_name": "C333#大白黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87ad16ee5a5409d980e56e6b71e169d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87ad16ee5a5409d980e56e6b71e169d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87ad16ee5a5409d980e56e6b71e169d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e87ad16ee5a5409d980e56e6b71e169d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e87ad16ee5a5409d980e56e6b71e169d.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0u-x5IxqqCHfsFvYfBDdGE96p0=", "createTime": "2024-08-15 14:46:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.691386+00 2025-12-09 10:14:57.691391+00 8048 FHXGPK-081-2 SPMX-20240815303207 \N \N \N 1 \N [{"file_id": "66c95a10-4ed1-4968-837c-3059348f5e46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg", "file_size": 34904, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-081-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73cdd9fbb4fe4414a32bcfdf3f0b1fbb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ap-SGKz7ENGZckpLVILD-gsU3vY=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.692881+00 2025-12-09 10:14:57.692885+00 8049 23-2112#-A3袖子3XL SPMX-20240815303205 \N \N \N 1 \N [{"file_id": "cf9150f8-cfa3-481e-8328-ee5739d625cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ec69412ea964e05b262e167bb5442ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ec69412ea964e05b262e167bb5442ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ec69412ea964e05b262e167bb5442ee.jpg", "file_size": 9695, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec69412ea964e05b262e167bb5442ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec69412ea964e05b262e167bb5442ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec69412ea964e05b262e167bb5442ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ec69412ea964e05b262e167bb5442ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ec69412ea964e05b262e167bb5442ee.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmdABm5gk2XOT6IAvlMCeZxn5Ss=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.694386+00 2025-12-09 10:14:57.69439+00 8050 80307#中童 SPMX-20240815303209 \N \N \N 1 \N [{"file_id": "174bfbd8-12d5-4bbc-a0db-62fbd14f8593", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1543c16ac30d4584a8c0d6026bf8d389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1543c16ac30d4584a8c0d6026bf8d389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1543c16ac30d4584a8c0d6026bf8d389.jpg", "file_size": 27838, "is_delete": false, "file_type": 1, "original_file_name": "80307#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1543c16ac30d4584a8c0d6026bf8d389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1543c16ac30d4584a8c0d6026bf8d389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1543c16ac30d4584a8c0d6026bf8d389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1543c16ac30d4584a8c0d6026bf8d389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1543c16ac30d4584a8c0d6026bf8d389.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7vbinyB3rL2SedI6MC7D_RV89aU=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.695872+00 2025-12-09 10:14:57.695876+00 8051 23-2112#-A3袖子4XL SPMX-20240815303215 \N \N \N 1 \N [{"file_id": "29c1abcf-f476-4520-b54f-7b33df4f92b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "611b48eec48d4b3aacf2b28871b37fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "611b48eec48d4b3aacf2b28871b37fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "611b48eec48d4b3aacf2b28871b37fe9.jpg", "file_size": 9541, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611b48eec48d4b3aacf2b28871b37fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611b48eec48d4b3aacf2b28871b37fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611b48eec48d4b3aacf2b28871b37fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/611b48eec48d4b3aacf2b28871b37fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/611b48eec48d4b3aacf2b28871b37fe9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NhtXp5g_TTTDWOUOLHZdVAnwCqs=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.697339+00 2025-12-09 10:14:57.697344+00 8052 FHXGPK-081-3 SPMX-20240815303217 \N \N \N 1 \N [{"file_id": "93a49bf6-78bd-42d8-b453-44126a5b27ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c657cfea29b84f2eb4fc7d670615253c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c657cfea29b84f2eb4fc7d670615253c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c657cfea29b84f2eb4fc7d670615253c.jpg", "file_size": 34740, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-081-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c657cfea29b84f2eb4fc7d670615253c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c657cfea29b84f2eb4fc7d670615253c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c657cfea29b84f2eb4fc7d670615253c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c657cfea29b84f2eb4fc7d670615253c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c657cfea29b84f2eb4fc7d670615253c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tfmSvpboDsEQ8pxdgYfOh3o8AZY=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.698837+00 2025-12-09 10:14:57.698841+00 8053 LZ1238#加大款A12 SPMX-20240815303206 \N \N \N 1 \N [{"file_id": "4622fa91-9950-4907-85f8-4564437a960b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fc42fb95d89435d87e053df2d8bdee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fc42fb95d89435d87e053df2d8bdee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fc42fb95d89435d87e053df2d8bdee9.jpg", "file_size": 24256, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc42fb95d89435d87e053df2d8bdee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc42fb95d89435d87e053df2d8bdee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc42fb95d89435d87e053df2d8bdee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fc42fb95d89435d87e053df2d8bdee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fc42fb95d89435d87e053df2d8bdee9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eE1vEOyJ42Y57IFrTQPhPLwIyFg=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.700368+00 2025-12-09 10:14:57.700373+00 8054 106A绿色 SPMX-20240815303212 \N \N \N 1 \N [{"file_id": "5dd32d06-9b3d-4ac5-a6d2-38f7c06e171c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9c4a80ac3be4b56a99a84e80b8dd06f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9c4a80ac3be4b56a99a84e80b8dd06f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9c4a80ac3be4b56a99a84e80b8dd06f.jpg", "file_size": 55990, "is_delete": false, "file_type": 1, "original_file_name": "106A绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c4a80ac3be4b56a99a84e80b8dd06f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c4a80ac3be4b56a99a84e80b8dd06f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9c4a80ac3be4b56a99a84e80b8dd06f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9c4a80ac3be4b56a99a84e80b8dd06f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9c4a80ac3be4b56a99a84e80b8dd06f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1jfcf6g0RrHeKTw6jrE3aCeVVg=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.702084+00 2025-12-09 10:14:57.702088+00 8055 HT0101-2#WJC22 SPMX-20240815303216 \N \N \N 1 \N [{"file_id": "592f0630-bf2b-451a-9397-f17a42f460ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2d0aa746ca84a5faef3360e36e97cfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2d0aa746ca84a5faef3360e36e97cfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2d0aa746ca84a5faef3360e36e97cfe.jpg", "file_size": 15699, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d0aa746ca84a5faef3360e36e97cfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d0aa746ca84a5faef3360e36e97cfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d0aa746ca84a5faef3360e36e97cfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2d0aa746ca84a5faef3360e36e97cfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2d0aa746ca84a5faef3360e36e97cfe.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6dJudRU_2V1k-dm_3AdMPSNCEo=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.703578+00 2025-12-09 10:14:57.703583+00 8056 HT0101-19#黄底 SPMX-20240815303204 \N \N \N 1 \N [{"file_id": "675faaae-8e0a-468b-af86-497c4c31c0e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b797ab45de44e5abc7d825717403155.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b797ab45de44e5abc7d825717403155.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b797ab45de44e5abc7d825717403155.jpg", "file_size": 13952, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-19#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b797ab45de44e5abc7d825717403155.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b797ab45de44e5abc7d825717403155.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b797ab45de44e5abc7d825717403155.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b797ab45de44e5abc7d825717403155.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b797ab45de44e5abc7d825717403155.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ErZXyq8stli5WcSF3qauXDMQyYw=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.7051+00 2025-12-09 10:14:57.705104+00 8057 JTSS040#粉 SPMX-20240815303210 \N \N \N 1 \N [{"file_id": "fd7eb01d-b0a1-47ae-aa6e-b7c70afb5287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f16106050cd247cc9f01da3112161538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f16106050cd247cc9f01da3112161538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f16106050cd247cc9f01da3112161538.jpg", "file_size": 13987, "is_delete": false, "file_type": 1, "original_file_name": "JTSS040#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16106050cd247cc9f01da3112161538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16106050cd247cc9f01da3112161538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16106050cd247cc9f01da3112161538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f16106050cd247cc9f01da3112161538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f16106050cd247cc9f01da3112161538.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgQoWAZ4dd6tJubDeX7glRsMor4=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.706588+00 2025-12-09 10:14:57.706593+00 8058 C333#黑色圆点 SPMX-20240815303213 \N \N \N 1 \N [{"file_id": "8ded559e-c916-4de2-82e7-78b27d29c4d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1c0fb69963544d5b38fb0c7554121ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1c0fb69963544d5b38fb0c7554121ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1c0fb69963544d5b38fb0c7554121ae.jpg", "file_size": 13879, "is_delete": false, "file_type": 1, "original_file_name": "C333#黑色圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c0fb69963544d5b38fb0c7554121ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c0fb69963544d5b38fb0c7554121ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c0fb69963544d5b38fb0c7554121ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1c0fb69963544d5b38fb0c7554121ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1c0fb69963544d5b38fb0c7554121ae.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDTi_EqifJG56H4D05U-FhPs2EU=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.708384+00 2025-12-09 10:14:57.708388+00 8059 DL128P#印花C VS-D3 SPMX-20240815303214 \N \N \N 1 \N [{"file_id": "4643c66c-c0bc-458b-afb2-0ec08b9c9083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d966a9d6d334329984cbc8548b39c19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d966a9d6d334329984cbc8548b39c19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d966a9d6d334329984cbc8548b39c19.jpg", "file_size": 26300, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花C VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d966a9d6d334329984cbc8548b39c19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d966a9d6d334329984cbc8548b39c19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d966a9d6d334329984cbc8548b39c19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d966a9d6d334329984cbc8548b39c19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d966a9d6d334329984cbc8548b39c19.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56kBAu22fS69y6D-co0SfcZNQ8g=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.710534+00 2025-12-09 10:14:57.710539+00 8060 LJ1056#蓝色1XL SPMX-20240815303208 \N \N \N 1 \N [{"file_id": "ebb5a758-2288-4b7b-9085-d0a567c49b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8807539fee1445c3bdf62ae94ec2dec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8807539fee1445c3bdf62ae94ec2dec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8807539fee1445c3bdf62ae94ec2dec7.jpg", "file_size": 16878, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8807539fee1445c3bdf62ae94ec2dec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8807539fee1445c3bdf62ae94ec2dec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8807539fee1445c3bdf62ae94ec2dec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8807539fee1445c3bdf62ae94ec2dec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8807539fee1445c3bdf62ae94ec2dec7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXuLVSDFIsx2iH4LYhuLr45agHM=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.712598+00 2025-12-09 10:14:57.712603+00 8061 0003-344#WJC22 SPMX-20240815303211 \N \N \N 1 \N [{"file_id": "3ce32c49-01ea-4081-86ca-40adb6153fce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ff876b6f46c44ca80d21e5144b15cb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ff876b6f46c44ca80d21e5144b15cb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ff876b6f46c44ca80d21e5144b15cb1.jpg", "file_size": 21937, "is_delete": false, "file_type": 1, "original_file_name": "0003-344#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff876b6f46c44ca80d21e5144b15cb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff876b6f46c44ca80d21e5144b15cb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff876b6f46c44ca80d21e5144b15cb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ff876b6f46c44ca80d21e5144b15cb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ff876b6f46c44ca80d21e5144b15cb1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iX8K71ReCsU5T0k_P6mE2ZNI4Ko=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.714385+00 2025-12-09 10:14:57.714389+00 8062 LZ1238#加大款A12批布 SPMX-20240815303219 \N \N \N 1 \N [{"file_id": "10a4c803-1e09-4d75-bd35-1c4f0871b3cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f65f83a16f1a46c89069b47f9de4a715.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f65f83a16f1a46c89069b47f9de4a715.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f65f83a16f1a46c89069b47f9de4a715.jpg", "file_size": 24057, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A12批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65f83a16f1a46c89069b47f9de4a715.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65f83a16f1a46c89069b47f9de4a715.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65f83a16f1a46c89069b47f9de4a715.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f65f83a16f1a46c89069b47f9de4a715.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f65f83a16f1a46c89069b47f9de4a715.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wWYcdar7VSrCn6r3PJ8WY3UnAe8=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.716439+00 2025-12-09 10:14:57.716443+00 8063 LJ1056#蓝色2XL SPMX-20240815303218 \N \N \N 1 \N [{"file_id": "efb0c654-a88b-45ea-8140-6d1e181a9295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b75dcff0704ff687170d8ae88568c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b75dcff0704ff687170d8ae88568c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b75dcff0704ff687170d8ae88568c5.jpg", "file_size": 16575, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b75dcff0704ff687170d8ae88568c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b75dcff0704ff687170d8ae88568c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b75dcff0704ff687170d8ae88568c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b75dcff0704ff687170d8ae88568c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b75dcff0704ff687170d8ae88568c5.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zoAdSgODK1pzfHvUQiMYoGhdjw=", "createTime": "2024-08-15 14:46:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.718465+00 2025-12-09 10:14:57.71847+00 8064 C335#墨绿 SPMX-20240815303225 \N \N \N 1 \N [{"file_id": "e931a8bb-1829-40a7-bd91-07aa33cbf19a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3bf36cb313446bb4a6aac833bcf6a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3bf36cb313446bb4a6aac833bcf6a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3bf36cb313446bb4a6aac833bcf6a0.jpg", "file_size": 16324, "is_delete": false, "file_type": 1, "original_file_name": "C335#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3bf36cb313446bb4a6aac833bcf6a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3bf36cb313446bb4a6aac833bcf6a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3bf36cb313446bb4a6aac833bcf6a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3bf36cb313446bb4a6aac833bcf6a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3bf36cb313446bb4a6aac833bcf6a0.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDciBqTEXKvAkAByL3HT51OvhZc=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.720484+00 2025-12-09 10:14:57.720488+00 8065 HT0101-20#黑桔 SPMX-20240815303224 \N \N \N 1 \N [{"file_id": "6b9afa3b-2192-4548-89f3-a963d1c2c783", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a07e19a81c046e99bc96409edfbc61f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a07e19a81c046e99bc96409edfbc61f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a07e19a81c046e99bc96409edfbc61f.jpg", "file_size": 22681, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-20#黑桔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a07e19a81c046e99bc96409edfbc61f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a07e19a81c046e99bc96409edfbc61f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a07e19a81c046e99bc96409edfbc61f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a07e19a81c046e99bc96409edfbc61f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a07e19a81c046e99bc96409edfbc61f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zj6gTGApgBMfmoIqgJeTclZCemE=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.722407+00 2025-12-09 10:14:57.722412+00 8066 0003-346#白底 SPMX-20240815303232 \N \N \N 1 \N [{"file_id": "2fdcb22b-be25-4811-9e99-910c8c211c02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d009003147b14eaeab75db006d1a8e67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d009003147b14eaeab75db006d1a8e67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d009003147b14eaeab75db006d1a8e67.jpg", "file_size": 14804, "is_delete": false, "file_type": 1, "original_file_name": "0003-346#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d009003147b14eaeab75db006d1a8e67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d009003147b14eaeab75db006d1a8e67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d009003147b14eaeab75db006d1a8e67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d009003147b14eaeab75db006d1a8e67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d009003147b14eaeab75db006d1a8e67.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n57SgPQ2lCXyxJvnyS9zjiRD6zc=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.724236+00 2025-12-09 10:14:57.72424+00 8067 DL128P#印花D VS-D3 SPMX-20240815303227 \N \N \N 1 \N [{"file_id": "a7cde168-456d-4f3f-a9c8-6e63edc224a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d38b6478d3c64431bbfa9fcc64e6ca3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d38b6478d3c64431bbfa9fcc64e6ca3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d38b6478d3c64431bbfa9fcc64e6ca3e.jpg", "file_size": 14485, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花D VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b6478d3c64431bbfa9fcc64e6ca3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b6478d3c64431bbfa9fcc64e6ca3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38b6478d3c64431bbfa9fcc64e6ca3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d38b6478d3c64431bbfa9fcc64e6ca3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d38b6478d3c64431bbfa9fcc64e6ca3e.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N844AgXfuvCjG5jErjqe8f2W1bA=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.725735+00 2025-12-09 10:14:57.72574+00 8068 23-2112#-A3领口通用 SPMX-20240815303229 \N \N \N 1 \N [{"file_id": "5c9bd9be-8b0a-4b49-858e-27d3b9e07f4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "144c5d0e594e4d14b6cd8936cb22b5dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "144c5d0e594e4d14b6cd8936cb22b5dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "144c5d0e594e4d14b6cd8936cb22b5dc.jpg", "file_size": 7831, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144c5d0e594e4d14b6cd8936cb22b5dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144c5d0e594e4d14b6cd8936cb22b5dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144c5d0e594e4d14b6cd8936cb22b5dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/144c5d0e594e4d14b6cd8936cb22b5dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/144c5d0e594e4d14b6cd8936cb22b5dc.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFlfK42gLRElIPmstUKf8goOivM=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.727241+00 2025-12-09 10:14:57.727245+00 8069 0003-345#WJC22 SPMX-20240815303220 \N \N \N 1 \N [{"file_id": "a5e56fe1-208e-4ac9-a1ab-3774185079e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f5adfe030f94cccb45159d8b6623341.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f5adfe030f94cccb45159d8b6623341.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f5adfe030f94cccb45159d8b6623341.jpg", "file_size": 16439, "is_delete": false, "file_type": 1, "original_file_name": "0003-345#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5adfe030f94cccb45159d8b6623341.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5adfe030f94cccb45159d8b6623341.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5adfe030f94cccb45159d8b6623341.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f5adfe030f94cccb45159d8b6623341.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f5adfe030f94cccb45159d8b6623341.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZedjgynF8Wlsiz01BjQBr_EIFQ=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.728754+00 2025-12-09 10:14:57.728759+00 8070 LJ1056#蓝色3XL SPMX-20240815303230 \N \N \N 1 \N [{"file_id": "a879eff4-33e1-4cf0-a922-f425b410de9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b13c4a447f4f35b3bff0abcb06f614.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b13c4a447f4f35b3bff0abcb06f614.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b13c4a447f4f35b3bff0abcb06f614.jpg", "file_size": 16379, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b13c4a447f4f35b3bff0abcb06f614.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b13c4a447f4f35b3bff0abcb06f614.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b13c4a447f4f35b3bff0abcb06f614.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b13c4a447f4f35b3bff0abcb06f614.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b13c4a447f4f35b3bff0abcb06f614.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDJXgjQMz9Vtbj3IuYLz2G7AsFQ=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.730298+00 2025-12-09 10:14:57.730302+00 8071 LZ1238#加大款A13 SPMX-20240815303231 \N \N \N 1 \N [{"file_id": "c0909353-18de-4cce-81ee-fcd943593443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dfd1c35b557445e9abe8c5cccc3458f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dfd1c35b557445e9abe8c5cccc3458f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dfd1c35b557445e9abe8c5cccc3458f.jpg", "file_size": 25912, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A13.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfd1c35b557445e9abe8c5cccc3458f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfd1c35b557445e9abe8c5cccc3458f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfd1c35b557445e9abe8c5cccc3458f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dfd1c35b557445e9abe8c5cccc3458f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dfd1c35b557445e9abe8c5cccc3458f.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ddjo-CWO6lvLV8rhty1RRwEhIfE=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.731784+00 2025-12-09 10:14:57.731788+00 8072 106A蓝色 SPMX-20240815303223 \N \N \N 1 \N [{"file_id": "4cd2eccc-5fd6-4148-a9e5-ee87c5efff3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10d89ef24e454af18287927f95b8ebc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10d89ef24e454af18287927f95b8ebc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10d89ef24e454af18287927f95b8ebc7.jpg", "file_size": 57172, "is_delete": false, "file_type": 1, "original_file_name": "106A蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d89ef24e454af18287927f95b8ebc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d89ef24e454af18287927f95b8ebc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d89ef24e454af18287927f95b8ebc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10d89ef24e454af18287927f95b8ebc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10d89ef24e454af18287927f95b8ebc7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWKzdPSB2MPnxEFoluptlSIT6eI=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.733292+00 2025-12-09 10:14:57.733296+00 8073 FHXGPK-081-4 SPMX-20240815303228 \N \N \N 1 \N [{"file_id": "4acf1feb-2a67-446a-a456-a66bee86f026", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea14d6dbd6054a4fb6a54b0f15e9989c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea14d6dbd6054a4fb6a54b0f15e9989c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea14d6dbd6054a4fb6a54b0f15e9989c.jpg", "file_size": 37570, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-081-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea14d6dbd6054a4fb6a54b0f15e9989c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea14d6dbd6054a4fb6a54b0f15e9989c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea14d6dbd6054a4fb6a54b0f15e9989c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea14d6dbd6054a4fb6a54b0f15e9989c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea14d6dbd6054a4fb6a54b0f15e9989c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNdrTrqbGdrX3ovMeb7khfbLSRk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.734778+00 2025-12-09 10:14:57.734783+00 8074 JTSS040#蓝 SPMX-20240815303221 \N \N \N 1 \N [{"file_id": "f1398d6a-4d7a-4210-8822-8920fb12b07f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39be3f5656cf48bb918afc88484c163a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39be3f5656cf48bb918afc88484c163a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39be3f5656cf48bb918afc88484c163a.jpg", "file_size": 15976, "is_delete": false, "file_type": 1, "original_file_name": "JTSS040#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39be3f5656cf48bb918afc88484c163a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39be3f5656cf48bb918afc88484c163a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39be3f5656cf48bb918afc88484c163a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39be3f5656cf48bb918afc88484c163a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39be3f5656cf48bb918afc88484c163a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4N16CSZY3FkSAY9hhxFl7ZH1jdk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.736271+00 2025-12-09 10:14:57.736276+00 8075 80307#乱花 SPMX-20240815303226 \N \N \N 1 \N [{"file_id": "b119a86f-da41-4467-a0fb-90e9e725f199", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f08091069d64541842c5d7f595335f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f08091069d64541842c5d7f595335f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f08091069d64541842c5d7f595335f9.jpg", "file_size": 6761, "is_delete": false, "file_type": 1, "original_file_name": "80307#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f08091069d64541842c5d7f595335f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f08091069d64541842c5d7f595335f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f08091069d64541842c5d7f595335f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f08091069d64541842c5d7f595335f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f08091069d64541842c5d7f595335f9.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TMyi8D1uQkD9XWlwjyfj9cULUk=", "createTime": "2024-08-15 14:46:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.737767+00 2025-12-09 10:14:57.737772+00 8076 FHXGPK-081-5 SPMX-20240815303234 \N \N \N 1 \N [{"file_id": "fc2a0c88-57fb-4d1f-b221-9e8df45c0745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c5a20e81392403c8eeefdfaf7f32788.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c5a20e81392403c8eeefdfaf7f32788.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c5a20e81392403c8eeefdfaf7f32788.jpg", "file_size": 37387, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-081-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5a20e81392403c8eeefdfaf7f32788.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5a20e81392403c8eeefdfaf7f32788.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5a20e81392403c8eeefdfaf7f32788.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c5a20e81392403c8eeefdfaf7f32788.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c5a20e81392403c8eeefdfaf7f32788.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adsf2LDb9vsdSqWJzxLSaFbbDYM=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.739261+00 2025-12-09 10:14:57.739266+00 8077 107#-杏色 SPMX-20240815303237 \N \N \N 1 \N [{"file_id": "32b2fdd2-84ed-4fb4-9429-c419a8620331", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0e6bccfd75143aa8655f03413c5f0e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0e6bccfd75143aa8655f03413c5f0e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0e6bccfd75143aa8655f03413c5f0e7.jpg", "file_size": 57495, "is_delete": false, "file_type": 1, "original_file_name": "107#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e6bccfd75143aa8655f03413c5f0e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e6bccfd75143aa8655f03413c5f0e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e6bccfd75143aa8655f03413c5f0e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0e6bccfd75143aa8655f03413c5f0e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0e6bccfd75143aa8655f03413c5f0e7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyM8ZpGNnsTULpevhtsTYnwh1q4=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.740743+00 2025-12-09 10:14:57.740747+00 8078 80307#匹布 SPMX-20240815303238 \N \N \N 1 \N [{"file_id": "a7dc7f22-cacc-4139-a7ec-256d6c842531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a25b3e561194e9480246df97c80a93a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a25b3e561194e9480246df97c80a93a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a25b3e561194e9480246df97c80a93a.jpg", "file_size": 16907, "is_delete": false, "file_type": 1, "original_file_name": "80307#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a25b3e561194e9480246df97c80a93a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a25b3e561194e9480246df97c80a93a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a25b3e561194e9480246df97c80a93a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a25b3e561194e9480246df97c80a93a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a25b3e561194e9480246df97c80a93a.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1IZ8V-ktqkTa8d3Olmo4vVnu44=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.742253+00 2025-12-09 10:14:57.742257+00 8079 C335#大白 SPMX-20240815303235 \N \N \N 1 \N [{"file_id": "02aa5f29-d81c-43b6-af8d-e203b3b6d388", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9525b8d12d3f4696a87b7f60b41498ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9525b8d12d3f4696a87b7f60b41498ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9525b8d12d3f4696a87b7f60b41498ec.jpg", "file_size": 16573, "is_delete": false, "file_type": 1, "original_file_name": "C335#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9525b8d12d3f4696a87b7f60b41498ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9525b8d12d3f4696a87b7f60b41498ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9525b8d12d3f4696a87b7f60b41498ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9525b8d12d3f4696a87b7f60b41498ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9525b8d12d3f4696a87b7f60b41498ec.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZkksNCpU5eHjahGUBRxiBPP2ngQ=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.743737+00 2025-12-09 10:14:57.743742+00 8080 23-2112#-A3领子通用 SPMX-20240815303240 \N \N \N 1 \N [{"file_id": "eb3919ea-3b61-4712-8446-60704c9c7168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d012ad5dada34454a9f7760bc675b6a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d012ad5dada34454a9f7760bc675b6a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d012ad5dada34454a9f7760bc675b6a4.jpg", "file_size": 7600, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d012ad5dada34454a9f7760bc675b6a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d012ad5dada34454a9f7760bc675b6a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d012ad5dada34454a9f7760bc675b6a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d012ad5dada34454a9f7760bc675b6a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d012ad5dada34454a9f7760bc675b6a4.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZT7DCsJ9mUmczl6CTzmxDYZGMk=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.74526+00 2025-12-09 10:14:57.745264+00 8081 HT0101-20#黑绿 SPMX-20240815303236 \N \N \N 1 \N [{"file_id": "b161bd32-d6cf-4877-ae2a-281fa43401e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8fb4c745a43430dbb1f391e1fdffdd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8fb4c745a43430dbb1f391e1fdffdd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8fb4c745a43430dbb1f391e1fdffdd7.jpg", "file_size": 21208, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-20#黑绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fb4c745a43430dbb1f391e1fdffdd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fb4c745a43430dbb1f391e1fdffdd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fb4c745a43430dbb1f391e1fdffdd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8fb4c745a43430dbb1f391e1fdffdd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8fb4c745a43430dbb1f391e1fdffdd7.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9-Ge7oRRjchCQyRH33ec8Q9ES3k=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.746757+00 2025-12-09 10:14:57.746761+00 8082 JTSS040FW#VS-D3 SPMX-20240815303233 \N \N \N 1 \N [{"file_id": "f3da132b-7166-41cf-9ebb-e53c2f73f776", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d2e63bf01a5456a80c5c5cf265ae1bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d2e63bf01a5456a80c5c5cf265ae1bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d2e63bf01a5456a80c5c5cf265ae1bb.jpg", "file_size": 10204, "is_delete": false, "file_type": 1, "original_file_name": "JTSS040FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2e63bf01a5456a80c5c5cf265ae1bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2e63bf01a5456a80c5c5cf265ae1bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2e63bf01a5456a80c5c5cf265ae1bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d2e63bf01a5456a80c5c5cf265ae1bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d2e63bf01a5456a80c5c5cf265ae1bb.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxyoIb1WME2i0lqMrTdJX1rwjqs=", "createTime": "2024-08-15 14:46:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.74824+00 2025-12-09 10:14:57.748245+00 8083 DL128P#印花E VS-D3 SPMX-20240815303239 \N \N \N 1 \N [{"file_id": "b4f9857c-f6be-40f9-a3a0-b1182cf83348", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe4f1f9ddbd643988e9d18d803cc0688.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe4f1f9ddbd643988e9d18d803cc0688.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe4f1f9ddbd643988e9d18d803cc0688.jpg", "file_size": 24532, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花E VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4f1f9ddbd643988e9d18d803cc0688.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4f1f9ddbd643988e9d18d803cc0688.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4f1f9ddbd643988e9d18d803cc0688.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe4f1f9ddbd643988e9d18d803cc0688.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe4f1f9ddbd643988e9d18d803cc0688.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-MHF9_a9AAyuDLMfKDy6Mj-NbA=", "createTime": "2024-08-15 14:46:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.749725+00 2025-12-09 10:14:57.74973+00 8084 80307#小童 SPMX-20240815303243 \N \N \N 1 \N [{"file_id": "76145fb7-68b4-4fb6-b681-754841fdfe78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3e503c7679d4f558eed889827e67db3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3e503c7679d4f558eed889827e67db3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3e503c7679d4f558eed889827e67db3.jpg", "file_size": 29107, "is_delete": false, "file_type": 1, "original_file_name": "80307#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e503c7679d4f558eed889827e67db3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e503c7679d4f558eed889827e67db3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e503c7679d4f558eed889827e67db3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3e503c7679d4f558eed889827e67db3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3e503c7679d4f558eed889827e67db3.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EigSU4C6YRvujdiV4TUFVKGMDD8=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.751226+00 2025-12-09 10:14:57.75123+00 8085 LZ1238#加大款A13批布 SPMX-20240815303241 \N \N \N 1 \N [{"file_id": "99d0ea9a-103f-4a66-bf0b-7aa9f6379e5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc738cc76b174a4e988f30cebe7d9aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc738cc76b174a4e988f30cebe7d9aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc738cc76b174a4e988f30cebe7d9aaa.jpg", "file_size": 9502, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A13批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc738cc76b174a4e988f30cebe7d9aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc738cc76b174a4e988f30cebe7d9aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc738cc76b174a4e988f30cebe7d9aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc738cc76b174a4e988f30cebe7d9aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc738cc76b174a4e988f30cebe7d9aaa.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJR1jvX3qb1lvqJfTuudtolIpjU=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.752702+00 2025-12-09 10:14:57.752713+00 8086 LJ1056#蓝色4XL SPMX-20240815303242 \N \N \N 1 \N [{"file_id": "ad0a1784-9fb9-4a8f-b2a7-364e59d6e80d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dda518c40b324d6fa23392e0816673c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dda518c40b324d6fa23392e0816673c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dda518c40b324d6fa23392e0816673c8.jpg", "file_size": 16516, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda518c40b324d6fa23392e0816673c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda518c40b324d6fa23392e0816673c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda518c40b324d6fa23392e0816673c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dda518c40b324d6fa23392e0816673c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dda518c40b324d6fa23392e0816673c8.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5UFGBIkILk47OovI1G7uIoZrcHc=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.754443+00 2025-12-09 10:14:57.754448+00 8087 LZ1238#加大款A14 SPMX-20240815303252 \N \N \N 1 \N [{"file_id": "f248f2a3-c22b-42c3-8e38-09a845c6c0f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afa98cdc0df94d719fadf31ae23f3a1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afa98cdc0df94d719fadf31ae23f3a1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afa98cdc0df94d719fadf31ae23f3a1c.jpg", "file_size": 23828, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa98cdc0df94d719fadf31ae23f3a1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa98cdc0df94d719fadf31ae23f3a1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa98cdc0df94d719fadf31ae23f3a1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afa98cdc0df94d719fadf31ae23f3a1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afa98cdc0df94d719fadf31ae23f3a1c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZXD5T-URQbLgpykvS46aGIki2Q=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.755968+00 2025-12-09 10:14:57.755973+00 8088 23-2112#-A4前后片3XL SPMX-20240815303248 \N \N \N 1 \N [{"file_id": "aa6a9342-eb19-4151-8b96-e32ba6d48caf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ab946230fd4014aaf835880769a968.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ab946230fd4014aaf835880769a968.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ab946230fd4014aaf835880769a968.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ab946230fd4014aaf835880769a968.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ab946230fd4014aaf835880769a968.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ab946230fd4014aaf835880769a968.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ab946230fd4014aaf835880769a968.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ab946230fd4014aaf835880769a968.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrnL5Xq3TcxYXnFmRXRu-dWqUkc=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.757496+00 2025-12-09 10:14:57.7575+00 8089 FHXGPK-082-1 SPMX-20240815303247 \N \N \N 1 \N [{"file_id": "dea56f44-49f5-4586-ae4d-b4a43ccd8500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba867bf6c2a549a3a55eb0c904bcec20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba867bf6c2a549a3a55eb0c904bcec20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba867bf6c2a549a3a55eb0c904bcec20.jpg", "file_size": 38040, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-082-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba867bf6c2a549a3a55eb0c904bcec20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba867bf6c2a549a3a55eb0c904bcec20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba867bf6c2a549a3a55eb0c904bcec20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba867bf6c2a549a3a55eb0c904bcec20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba867bf6c2a549a3a55eb0c904bcec20.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pY8i4oh1yTkqsMOv4Hj7xtKXjvQ=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.759014+00 2025-12-09 10:14:57.759019+00 8090 DL128P#印花F VS-D3 SPMX-20240815303246 \N \N \N 1 \N [{"file_id": "d7cea844-c8db-40c4-933d-a14ec025710b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5540b59b30ce4e53ae1f56851a052f86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5540b59b30ce4e53ae1f56851a052f86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5540b59b30ce4e53ae1f56851a052f86.jpg", "file_size": 27738, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花F VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5540b59b30ce4e53ae1f56851a052f86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5540b59b30ce4e53ae1f56851a052f86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5540b59b30ce4e53ae1f56851a052f86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5540b59b30ce4e53ae1f56851a052f86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5540b59b30ce4e53ae1f56851a052f86.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcHb1Ja_TRNEycjgxQanJxquMpM=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.760503+00 2025-12-09 10:14:57.760507+00 8091 0003-346#绿底 SPMX-20240815303250 \N \N \N 1 \N [{"file_id": "5470f3ff-f5de-4894-b6f5-ebbbe4b3d049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3995817733847c683aa36c6ed08f3b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3995817733847c683aa36c6ed08f3b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3995817733847c683aa36c6ed08f3b6.jpg", "file_size": 46108, "is_delete": false, "file_type": 1, "original_file_name": "0003-346#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3995817733847c683aa36c6ed08f3b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3995817733847c683aa36c6ed08f3b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3995817733847c683aa36c6ed08f3b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3995817733847c683aa36c6ed08f3b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3995817733847c683aa36c6ed08f3b6.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83rWYqMBnyIwQmuxBICCIVi9M_E=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.762021+00 2025-12-09 10:14:57.762025+00 8092 LJ1056#蓝色捆条 SPMX-20240815303253 \N \N \N 1 \N [{"file_id": "3145253e-ad5b-4ffe-9bab-bb1b89d7a471", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b1d4a0d7cd4954ad0fc8b47a30379c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b1d4a0d7cd4954ad0fc8b47a30379c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b1d4a0d7cd4954ad0fc8b47a30379c.jpg", "file_size": 22872, "is_delete": false, "file_type": 1, "original_file_name": "LJ1056#蓝色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b1d4a0d7cd4954ad0fc8b47a30379c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b1d4a0d7cd4954ad0fc8b47a30379c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b1d4a0d7cd4954ad0fc8b47a30379c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b1d4a0d7cd4954ad0fc8b47a30379c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b1d4a0d7cd4954ad0fc8b47a30379c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1It2tLAE64lPNCIOssMKlex5vk=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.763525+00 2025-12-09 10:14:57.763529+00 8093 HT0101-20#黑黄 SPMX-20240815303244 \N \N \N 1 \N [{"file_id": "b65e03a4-4871-4937-8827-292eaa6f60b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "513da7a554614d9aa35500d0c1d2dd48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "513da7a554614d9aa35500d0c1d2dd48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "513da7a554614d9aa35500d0c1d2dd48.jpg", "file_size": 22159, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-20#黑黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513da7a554614d9aa35500d0c1d2dd48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513da7a554614d9aa35500d0c1d2dd48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513da7a554614d9aa35500d0c1d2dd48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/513da7a554614d9aa35500d0c1d2dd48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/513da7a554614d9aa35500d0c1d2dd48.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWQpT_2dDTpafXMbCgcfSep7SLE=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.765043+00 2025-12-09 10:14:57.765048+00 8094 C335#大红 SPMX-20240815303245 \N \N \N 1 \N [{"file_id": "1f3de380-ae88-4316-8e45-95ddedcc09e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adecda65d6554998ba772a4a82c6ae60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adecda65d6554998ba772a4a82c6ae60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adecda65d6554998ba772a4a82c6ae60.jpg", "file_size": 16797, "is_delete": false, "file_type": 1, "original_file_name": "C335#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adecda65d6554998ba772a4a82c6ae60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adecda65d6554998ba772a4a82c6ae60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adecda65d6554998ba772a4a82c6ae60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adecda65d6554998ba772a4a82c6ae60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adecda65d6554998ba772a4a82c6ae60.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KK8A_y_utOfH_PlPsGu92Fzjjyw=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.766542+00 2025-12-09 10:14:57.766546+00 8095 107#-浅杏色 SPMX-20240815303251 \N \N \N 1 \N [{"file_id": "a8b06b06-7743-46d2-a1b1-fb967224bdd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beb3985cd12f44de823fa40ea9c9983c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beb3985cd12f44de823fa40ea9c9983c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beb3985cd12f44de823fa40ea9c9983c.jpg", "file_size": 57753, "is_delete": false, "file_type": 1, "original_file_name": "107#-浅杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb3985cd12f44de823fa40ea9c9983c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb3985cd12f44de823fa40ea9c9983c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb3985cd12f44de823fa40ea9c9983c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beb3985cd12f44de823fa40ea9c9983c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beb3985cd12f44de823fa40ea9c9983c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UtwEc_gQNmLlV-1JX6RWvTUi8S0=", "createTime": "2024-08-15 14:46:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.768046+00 2025-12-09 10:14:57.76805+00 8096 JTSS041#粉 SPMX-20240815303249 \N \N \N 1 \N [{"file_id": "634def3c-bc48-4129-b4f5-126ae7dfb752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "622630dd73f64fc1abb5f72b12540bc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "622630dd73f64fc1abb5f72b12540bc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "622630dd73f64fc1abb5f72b12540bc1.jpg", "file_size": 11372, "is_delete": false, "file_type": 1, "original_file_name": "JTSS041#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622630dd73f64fc1abb5f72b12540bc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622630dd73f64fc1abb5f72b12540bc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622630dd73f64fc1abb5f72b12540bc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/622630dd73f64fc1abb5f72b12540bc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/622630dd73f64fc1abb5f72b12540bc1.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xrp_SQ0_4MVhDewkd82MKCYdT1g=", "createTime": "2024-08-15 14:46:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.769538+00 2025-12-09 10:14:57.769543+00 8097 DL128P#印花G VS-D3 SPMX-20240815303256 \N \N \N 1 \N [{"file_id": "84c47440-e3db-4e8f-9155-08a532f2d111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ac86ea2934c4a90ab120e41fc610aef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ac86ea2934c4a90ab120e41fc610aef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ac86ea2934c4a90ab120e41fc610aef.jpg", "file_size": 26715, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花G VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac86ea2934c4a90ab120e41fc610aef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac86ea2934c4a90ab120e41fc610aef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac86ea2934c4a90ab120e41fc610aef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ac86ea2934c4a90ab120e41fc610aef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ac86ea2934c4a90ab120e41fc610aef.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNW4N9Nonr_Tvr3T0VJcF4eZYWU=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.771089+00 2025-12-09 10:14:57.771093+00 8098 80307#裤子 SPMX-20240815303254 \N \N \N 1 \N [{"file_id": "2c60adb9-499a-46d7-b324-3ecad8c787cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e951a44ce8847329b88c98112d818ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e951a44ce8847329b88c98112d818ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e951a44ce8847329b88c98112d818ff.jpg", "file_size": 17431, "is_delete": false, "file_type": 1, "original_file_name": "80307#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e951a44ce8847329b88c98112d818ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e951a44ce8847329b88c98112d818ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e951a44ce8847329b88c98112d818ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e951a44ce8847329b88c98112d818ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e951a44ce8847329b88c98112d818ff.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RNBiW4wthi5Cy_5-cwO6OZcIuk=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.772583+00 2025-12-09 10:14:57.772588+00 8099 HT0101-21#WJC22番禺调色 SPMX-20240815303255 \N \N \N 1 \N [{"file_id": "1a59bd77-f491-459d-b2ea-1390fe7bbd0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc8651f6e84447f485fab243efdb3c26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc8651f6e84447f485fab243efdb3c26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc8651f6e84447f485fab243efdb3c26.jpg", "file_size": 17955, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-21#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8651f6e84447f485fab243efdb3c26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8651f6e84447f485fab243efdb3c26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8651f6e84447f485fab243efdb3c26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc8651f6e84447f485fab243efdb3c26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc8651f6e84447f485fab243efdb3c26.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eD-eDMgK-zRAh_n6QaIxN5wNl4o=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.774072+00 2025-12-09 10:14:57.774076+00 8100 FHXGPK-082-2 SPMX-20240815303257 \N \N \N 1 \N [{"file_id": "97ee2546-802b-481c-9dec-24c9e2db742e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9b8aa88dbbd421ca82d492b0f986a92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9b8aa88dbbd421ca82d492b0f986a92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9b8aa88dbbd421ca82d492b0f986a92.jpg", "file_size": 36510, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-082-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b8aa88dbbd421ca82d492b0f986a92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b8aa88dbbd421ca82d492b0f986a92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b8aa88dbbd421ca82d492b0f986a92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9b8aa88dbbd421ca82d492b0f986a92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9b8aa88dbbd421ca82d492b0f986a92.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgQ2SMdah-NE35UMmACVPNPmuVU=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.775552+00 2025-12-09 10:14:57.775557+00 8101 23-2112#-A4前后片4XL SPMX-20240815303258 \N \N \N 1 \N [{"file_id": "57c23eea-683e-4a9f-8b38-622753f0d7b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a09ca080a1184f23a13a0682c5523c4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a09ca080a1184f23a13a0682c5523c4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a09ca080a1184f23a13a0682c5523c4c.jpg", "file_size": 9539, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09ca080a1184f23a13a0682c5523c4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09ca080a1184f23a13a0682c5523c4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09ca080a1184f23a13a0682c5523c4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a09ca080a1184f23a13a0682c5523c4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a09ca080a1184f23a13a0682c5523c4c.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYmE3DTP7pVpsFCOwXQGzZulJSo=", "createTime": "2024-08-15 14:46:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.777079+00 2025-12-09 10:14:57.777083+00 8102 C335#黑色 SPMX-20240815303260 \N \N \N 1 \N [{"file_id": "ecf333ae-4e2d-4111-b6e2-ebedc080c114", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3ccd742d804da999049d0cec63f090.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3ccd742d804da999049d0cec63f090.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3ccd742d804da999049d0cec63f090.jpg", "file_size": 16733, "is_delete": false, "file_type": 1, "original_file_name": "C335#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3ccd742d804da999049d0cec63f090.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3ccd742d804da999049d0cec63f090.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3ccd742d804da999049d0cec63f090.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3ccd742d804da999049d0cec63f090.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3ccd742d804da999049d0cec63f090.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-xmHxlD2_kZM_sWWVIfXXVevSA=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:57.778545+00 2025-12-09 10:14:57.77855+00 8103 80308#上衣 SPMX-20240815303264 \N \N \N 1 \N [{"file_id": "9f8f4ca1-14db-4e4f-868a-2ef225532db3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6736276cdf104ee595008140883d8322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6736276cdf104ee595008140883d8322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6736276cdf104ee595008140883d8322.jpg", "file_size": 14599, "is_delete": false, "file_type": 1, "original_file_name": "80308#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736276cdf104ee595008140883d8322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736276cdf104ee595008140883d8322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736276cdf104ee595008140883d8322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6736276cdf104ee595008140883d8322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6736276cdf104ee595008140883d8322.jpg?e=1765361696&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ROOD703dTcYAUK5LZV23qTAViFI=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.509051+00 2025-12-09 10:14:58.509064+00 8104 HT0101-22#WJC22 SPMX-20240815303266 \N \N \N 1 \N [{"file_id": "05048b66-cd73-43e6-bf82-8eeb66cbaf92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c9a466c707a4bd18c968542a945d69f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c9a466c707a4bd18c968542a945d69f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c9a466c707a4bd18c968542a945d69f.jpg", "file_size": 20399, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-22#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9a466c707a4bd18c968542a945d69f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9a466c707a4bd18c968542a945d69f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9a466c707a4bd18c968542a945d69f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c9a466c707a4bd18c968542a945d69f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c9a466c707a4bd18c968542a945d69f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgUvVDciUq1LmQWB4Eh4QZtTYdw=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.512022+00 2025-12-09 10:14:58.512032+00 8105 DL128P#印花H VS-D3 SPMX-20240815303269 \N \N \N 1 \N [{"file_id": "e425cc54-c8c7-49b9-8277-2d1eadd048c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e1f8e9e040454781fa49a79e04907f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e1f8e9e040454781fa49a79e04907f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e1f8e9e040454781fa49a79e04907f.jpg", "file_size": 20789, "is_delete": false, "file_type": 1, "original_file_name": "DL128P#印花H VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e1f8e9e040454781fa49a79e04907f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e1f8e9e040454781fa49a79e04907f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e1f8e9e040454781fa49a79e04907f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e1f8e9e040454781fa49a79e04907f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e1f8e9e040454781fa49a79e04907f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bIDGiaZ9qkQyuJaIYYcctPfQog=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.514482+00 2025-12-09 10:14:58.514488+00 8106 C336#42#大红 SPMX-20240815303270 \N \N \N 1 \N [{"file_id": "937ac580-f6c0-4961-9bda-479993b17d57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e79d657163c4e7fa990939a6b8a8673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e79d657163c4e7fa990939a6b8a8673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e79d657163c4e7fa990939a6b8a8673.jpg", "file_size": 16802, "is_delete": false, "file_type": 1, "original_file_name": "C336#42#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79d657163c4e7fa990939a6b8a8673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79d657163c4e7fa990939a6b8a8673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79d657163c4e7fa990939a6b8a8673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e79d657163c4e7fa990939a6b8a8673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e79d657163c4e7fa990939a6b8a8673.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWCCbOr8Fggvr2zshiqhDLaTgQM=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.516386+00 2025-12-09 10:14:58.516391+00 8107 LZ1238#加大款A15 SPMX-20240815303271 \N \N \N 1 \N [{"file_id": "d728bade-7fc5-44d1-a81e-32bffa7f43ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c8b5dfe470844fb923f3e0979739617.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c8b5dfe470844fb923f3e0979739617.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c8b5dfe470844fb923f3e0979739617.jpg", "file_size": 24972, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8b5dfe470844fb923f3e0979739617.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8b5dfe470844fb923f3e0979739617.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c8b5dfe470844fb923f3e0979739617.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c8b5dfe470844fb923f3e0979739617.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c8b5dfe470844fb923f3e0979739617.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hPH3qlk8UYL3YQn5mTs5WRrM-k4=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.517944+00 2025-12-09 10:14:58.517948+00 8108 107#-灰色 SPMX-20240815303265 \N \N \N 1 \N [{"file_id": "7ce15e42-6dba-411d-a5e7-8b564590d19c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bfc7e41848c4ba2803ba6e5ebcbe747.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bfc7e41848c4ba2803ba6e5ebcbe747.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bfc7e41848c4ba2803ba6e5ebcbe747.jpg", "file_size": 64404, "is_delete": false, "file_type": 1, "original_file_name": "107#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bfc7e41848c4ba2803ba6e5ebcbe747.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bfc7e41848c4ba2803ba6e5ebcbe747.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bfc7e41848c4ba2803ba6e5ebcbe747.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bfc7e41848c4ba2803ba6e5ebcbe747.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bfc7e41848c4ba2803ba6e5ebcbe747.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9BxYaFRGZoBx7bVNquM72WR0J0=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.519455+00 2025-12-09 10:14:58.519459+00 8109 LJ1128#LWQ15 SPMX-20240815303272 \N \N \N 1 \N [{"file_id": "1b6f4d4a-73b8-4f2a-b03f-2fded1fd3635", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f93136e8c0a14fed8642f92700bfdfbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f93136e8c0a14fed8642f92700bfdfbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f93136e8c0a14fed8642f92700bfdfbf.jpg", "file_size": 21802, "is_delete": false, "file_type": 1, "original_file_name": "LJ1128#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93136e8c0a14fed8642f92700bfdfbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93136e8c0a14fed8642f92700bfdfbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93136e8c0a14fed8642f92700bfdfbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f93136e8c0a14fed8642f92700bfdfbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f93136e8c0a14fed8642f92700bfdfbf.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1WsK8RpqNj1At4i4YAkzlRW6JA=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.520974+00 2025-12-09 10:14:58.520978+00 8110 JTSS041FW#VS-D3 SPMX-20240815303274 \N \N \N 1 \N [{"file_id": "7a27e7e8-93df-4039-89cb-3e375d5d8bbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dffb9525d1c2404f80b6fd7277c4dbdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dffb9525d1c2404f80b6fd7277c4dbdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dffb9525d1c2404f80b6fd7277c4dbdb.jpg", "file_size": 10176, "is_delete": false, "file_type": 1, "original_file_name": "JTSS041FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffb9525d1c2404f80b6fd7277c4dbdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffb9525d1c2404f80b6fd7277c4dbdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffb9525d1c2404f80b6fd7277c4dbdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dffb9525d1c2404f80b6fd7277c4dbdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dffb9525d1c2404f80b6fd7277c4dbdb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oP0lDWZA4qEKSMPXq9QlHOOsZN8=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.522513+00 2025-12-09 10:14:58.522517+00 8111 0003-346#黄底 SPMX-20240815303273 \N \N \N 1 \N [{"file_id": "7e0adb8b-4024-4d41-b5f7-542d172d37a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c712b564cfcf4594b8eb8b4f8e3df210.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c712b564cfcf4594b8eb8b4f8e3df210.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c712b564cfcf4594b8eb8b4f8e3df210.jpg", "file_size": 47776, "is_delete": false, "file_type": 1, "original_file_name": "0003-346#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c712b564cfcf4594b8eb8b4f8e3df210.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c712b564cfcf4594b8eb8b4f8e3df210.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c712b564cfcf4594b8eb8b4f8e3df210.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c712b564cfcf4594b8eb8b4f8e3df210.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c712b564cfcf4594b8eb8b4f8e3df210.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIQtdc2IebO-EAQfbvg2wpPeQgc=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.524043+00 2025-12-09 10:14:58.524048+00 8112 JTSS041#蓝 SPMX-20240815303262 \N \N \N 1 \N [{"file_id": "b9620343-f95a-4cd6-806b-67f1f3c1486a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b58480def13415eafb8e0f2ee2654bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b58480def13415eafb8e0f2ee2654bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b58480def13415eafb8e0f2ee2654bb.jpg", "file_size": 14006, "is_delete": false, "file_type": 1, "original_file_name": "JTSS041#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b58480def13415eafb8e0f2ee2654bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b58480def13415eafb8e0f2ee2654bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b58480def13415eafb8e0f2ee2654bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b58480def13415eafb8e0f2ee2654bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b58480def13415eafb8e0f2ee2654bb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQoY6Rdi_6blbIDV8GOVURgVV-E=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.531985+00 2025-12-09 10:14:58.531989+00 8117 FHXGPK-082-3 SPMX-20240815303267 \N \N \N 1 \N [{"file_id": "ab86fe3a-b96b-46b1-b213-c1e60b139b9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e512e9a5eec44cf1b6675ac6a2612a1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e512e9a5eec44cf1b6675ac6a2612a1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e512e9a5eec44cf1b6675ac6a2612a1b.jpg", "file_size": 39805, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-082-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e512e9a5eec44cf1b6675ac6a2612a1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e512e9a5eec44cf1b6675ac6a2612a1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e512e9a5eec44cf1b6675ac6a2612a1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e512e9a5eec44cf1b6675ac6a2612a1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e512e9a5eec44cf1b6675ac6a2612a1b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kv_mFKQ05zeDIOOf_3HQfA8JMTs=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.525537+00 2025-12-09 10:14:58.525542+00 8113 23-2112#-A4袖子3XL SPMX-20240815303268 \N \N \N 1 \N [{"file_id": "a6049640-4efe-499b-9b90-08fdc78558c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54da7c8266bc4304a0aa7b243f243407.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54da7c8266bc4304a0aa7b243f243407.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54da7c8266bc4304a0aa7b243f243407.jpg", "file_size": 9683, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54da7c8266bc4304a0aa7b243f243407.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54da7c8266bc4304a0aa7b243f243407.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54da7c8266bc4304a0aa7b243f243407.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54da7c8266bc4304a0aa7b243f243407.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54da7c8266bc4304a0aa7b243f243407.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yoJYndd6Klj_nbpIYXvYqLSbPgQ=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.527051+00 2025-12-09 10:14:58.527056+00 8114 LJ1126#LWQ15 SPMX-20240815303259 \N \N \N 1 \N [{"file_id": "4748290c-07f1-44e0-99b7-9952dddb343a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15008d0678334d1aa315b23fd207194c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15008d0678334d1aa315b23fd207194c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15008d0678334d1aa315b23fd207194c.jpg", "file_size": 15032, "is_delete": false, "file_type": 1, "original_file_name": "LJ1126#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15008d0678334d1aa315b23fd207194c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15008d0678334d1aa315b23fd207194c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15008d0678334d1aa315b23fd207194c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15008d0678334d1aa315b23fd207194c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15008d0678334d1aa315b23fd207194c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Grr4S8J4qXjYiRrpsZXZWkuS7T8=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.528692+00 2025-12-09 10:14:58.528697+00 8115 LZ1238#加大款A14批布 SPMX-20240815303261 \N \N \N 1 \N [{"file_id": "92697480-2eee-4356-84ed-b7b05a29a741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c35639e1554c4c9d9d44541785d979b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c35639e1554c4c9d9d44541785d979b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c35639e1554c4c9d9d44541785d979b0.jpg", "file_size": 13440, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A14批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35639e1554c4c9d9d44541785d979b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35639e1554c4c9d9d44541785d979b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35639e1554c4c9d9d44541785d979b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c35639e1554c4c9d9d44541785d979b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c35639e1554c4c9d9d44541785d979b0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:358QUVF2bGl_6oG6hx5PYqc63e4=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.530501+00 2025-12-09 10:14:58.530505+00 8116 0003-346#蓝底 SPMX-20240815303263 \N \N \N 1 \N [{"file_id": "b7d86a36-89df-41ae-a64b-fe8b9a5cfef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6052f256a2640a5a8880509363be9cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6052f256a2640a5a8880509363be9cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6052f256a2640a5a8880509363be9cd.jpg", "file_size": 44250, "is_delete": false, "file_type": 1, "original_file_name": "0003-346#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6052f256a2640a5a8880509363be9cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6052f256a2640a5a8880509363be9cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6052f256a2640a5a8880509363be9cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6052f256a2640a5a8880509363be9cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6052f256a2640a5a8880509363be9cd.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bCvfb1e0_W4tFPBP4PntGnuALeI=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.533481+00 2025-12-09 10:14:58.533485+00 8118 80308#中童 SPMX-20240815303275 \N \N \N 1 \N [{"file_id": "515abaea-179c-4d42-a17c-0f31ee62838f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8199b8da9c064fd284d24fe5f64cb47a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8199b8da9c064fd284d24fe5f64cb47a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8199b8da9c064fd284d24fe5f64cb47a.jpg", "file_size": 26599, "is_delete": false, "file_type": 1, "original_file_name": "80308#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199b8da9c064fd284d24fe5f64cb47a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199b8da9c064fd284d24fe5f64cb47a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199b8da9c064fd284d24fe5f64cb47a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8199b8da9c064fd284d24fe5f64cb47a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8199b8da9c064fd284d24fe5f64cb47a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GE7XVUAAn6j8aHdl9kxFRC1DIgs=", "createTime": "2024-08-15 14:46:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.534972+00 2025-12-09 10:14:58.534976+00 8119 80308#乱花 SPMX-20240815303282 \N \N \N 1 \N [{"file_id": "2f394fcf-5d7e-4e54-93f4-d2fdf8ba6152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ba3c464f9684b8381751056f74c6064.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ba3c464f9684b8381751056f74c6064.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ba3c464f9684b8381751056f74c6064.jpg", "file_size": 6452, "is_delete": false, "file_type": 1, "original_file_name": "80308#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba3c464f9684b8381751056f74c6064.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba3c464f9684b8381751056f74c6064.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba3c464f9684b8381751056f74c6064.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ba3c464f9684b8381751056f74c6064.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ba3c464f9684b8381751056f74c6064.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MUlZCy_T8nftXogA15w9QRDzaQA=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.536431+00 2025-12-09 10:14:58.536435+00 8120 23-2112#-A4袖子4XL SPMX-20240815303276 \N \N \N 1 \N [{"file_id": "d42ffb62-33f7-45ef-8dfd-f1f347f40416", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60c307f4669e49a695ee0761c18e8e2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60c307f4669e49a695ee0761c18e8e2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60c307f4669e49a695ee0761c18e8e2e.jpg", "file_size": 9946, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c307f4669e49a695ee0761c18e8e2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c307f4669e49a695ee0761c18e8e2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c307f4669e49a695ee0761c18e8e2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60c307f4669e49a695ee0761c18e8e2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60c307f4669e49a695ee0761c18e8e2e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mvdWoB5gc4V_M3jHp2w_6VWx9M=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.537878+00 2025-12-09 10:14:58.537882+00 8121 C336#墨绿 SPMX-20240815303284 \N \N \N 1 \N [{"file_id": "51a6f948-7f44-448d-894d-18d1665ee4e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23a6d4c322dc40a6a0721ab21948c4c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23a6d4c322dc40a6a0721ab21948c4c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23a6d4c322dc40a6a0721ab21948c4c7.jpg", "file_size": 16782, "is_delete": false, "file_type": 1, "original_file_name": "C336#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a6d4c322dc40a6a0721ab21948c4c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a6d4c322dc40a6a0721ab21948c4c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a6d4c322dc40a6a0721ab21948c4c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23a6d4c322dc40a6a0721ab21948c4c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23a6d4c322dc40a6a0721ab21948c4c7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYB_nqBAaAuCmaiML7hWX6lKYqI=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.539515+00 2025-12-09 10:14:58.539522+00 8122 JTSS042# SPMX-20240815303285 \N \N \N 1 \N [{"file_id": "026d690d-ea99-4d54-904b-094b3091ad65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb1bb8f0af844a6aad41d6bd3e78d617.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb1bb8f0af844a6aad41d6bd3e78d617.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb1bb8f0af844a6aad41d6bd3e78d617.jpg", "file_size": 12795, "is_delete": false, "file_type": 1, "original_file_name": "JTSS042#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb1bb8f0af844a6aad41d6bd3e78d617.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb1bb8f0af844a6aad41d6bd3e78d617.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb1bb8f0af844a6aad41d6bd3e78d617.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb1bb8f0af844a6aad41d6bd3e78d617.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb1bb8f0af844a6aad41d6bd3e78d617.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:546TvtuGVUiHtcMyBlkkUPoZ9Ew=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.541126+00 2025-12-09 10:14:58.54113+00 8123 FHXGPK-082-4 SPMX-20240815303281 \N \N \N 1 \N [{"file_id": "42948e13-06bf-4a0a-90b2-56e440b594f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00e2394f4182403c9f68ccf553e2c405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00e2394f4182403c9f68ccf553e2c405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00e2394f4182403c9f68ccf553e2c405.jpg", "file_size": 37669, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-082-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e2394f4182403c9f68ccf553e2c405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e2394f4182403c9f68ccf553e2c405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e2394f4182403c9f68ccf553e2c405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00e2394f4182403c9f68ccf553e2c405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00e2394f4182403c9f68ccf553e2c405.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzKDotAqmB_Fwu2UfYifzCmnhVg=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.54272+00 2025-12-09 10:14:58.542724+00 8124 LJ1130#LWQ15 SPMX-20240815303286 \N \N \N 1 \N [{"file_id": "9d899c0d-2920-4e07-a48b-7118eff465a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59146c535ea84481baeceb3cdf75f638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59146c535ea84481baeceb3cdf75f638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59146c535ea84481baeceb3cdf75f638.jpg", "file_size": 28543, "is_delete": false, "file_type": 1, "original_file_name": "LJ1130#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59146c535ea84481baeceb3cdf75f638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59146c535ea84481baeceb3cdf75f638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59146c535ea84481baeceb3cdf75f638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59146c535ea84481baeceb3cdf75f638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59146c535ea84481baeceb3cdf75f638.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AskHDixCDhrAjWDEX-z2MvhNNsY=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.544254+00 2025-12-09 10:14:58.544258+00 8125 0003-346#黑底 SPMX-20240815303279 \N \N \N 1 \N [{"file_id": "c44e7d07-f6e2-4916-9164-ec3d6cab4e50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d7d4bcf8a924d6f85e014f4bd262323.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d7d4bcf8a924d6f85e014f4bd262323.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d7d4bcf8a924d6f85e014f4bd262323.jpg", "file_size": 16791, "is_delete": false, "file_type": 1, "original_file_name": "0003-346#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7d4bcf8a924d6f85e014f4bd262323.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7d4bcf8a924d6f85e014f4bd262323.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7d4bcf8a924d6f85e014f4bd262323.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d7d4bcf8a924d6f85e014f4bd262323.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d7d4bcf8a924d6f85e014f4bd262323.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvvPnhcQcd8ivfNMfRsppHdbh4E=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.545802+00 2025-12-09 10:14:58.545806+00 8126 107#-白色 SPMX-20240815303277 \N \N \N 1 \N [{"file_id": "49bd0943-770e-4fd8-8412-8ea33ce23360", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a933fc5fc126485f90e22f183640fa3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a933fc5fc126485f90e22f183640fa3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a933fc5fc126485f90e22f183640fa3c.jpg", "file_size": 55104, "is_delete": false, "file_type": 1, "original_file_name": "107#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933fc5fc126485f90e22f183640fa3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933fc5fc126485f90e22f183640fa3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933fc5fc126485f90e22f183640fa3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a933fc5fc126485f90e22f183640fa3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a933fc5fc126485f90e22f183640fa3c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVj73f5gypHrMZeGUI9TGOctnCw=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.547311+00 2025-12-09 10:14:58.547316+00 8127 HT0101-23#白 SPMX-20240815303278 \N \N \N 1 \N [{"file_id": "ebcc9864-1d73-4143-a25d-3d65d38b01bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "930e9a7576b5478e96ca7be5b0fe3089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "930e9a7576b5478e96ca7be5b0fe3089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "930e9a7576b5478e96ca7be5b0fe3089.jpg", "file_size": 23975, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-23#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930e9a7576b5478e96ca7be5b0fe3089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930e9a7576b5478e96ca7be5b0fe3089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930e9a7576b5478e96ca7be5b0fe3089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/930e9a7576b5478e96ca7be5b0fe3089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/930e9a7576b5478e96ca7be5b0fe3089.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q13HYj63pojo4yqTrMk4A3qrsf0=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.548791+00 2025-12-09 10:14:58.548795+00 8128 LZ1238#加大款A15批布 SPMX-20240815303283 \N \N \N 1 \N [{"file_id": "1c488804-f7f8-4b51-893e-381484e828d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa305447b3c44c4b9fa8a5efc39e96a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa305447b3c44c4b9fa8a5efc39e96a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa305447b3c44c4b9fa8a5efc39e96a6.jpg", "file_size": 25554, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A15批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa305447b3c44c4b9fa8a5efc39e96a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa305447b3c44c4b9fa8a5efc39e96a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa305447b3c44c4b9fa8a5efc39e96a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa305447b3c44c4b9fa8a5efc39e96a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa305447b3c44c4b9fa8a5efc39e96a6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNEqj-4bxrMg25_NE4s2DVzt7_c=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.550289+00 2025-12-09 10:14:58.550293+00 8129 DL132-AFWE#VS-D3 SPMX-20240815303280 \N \N \N 1 \N [{"file_id": "a99251a3-a69b-49e6-9b1b-933e9feeec91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f81a10d0a00d48e0bc4de7f96d3e3a47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f81a10d0a00d48e0bc4de7f96d3e3a47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f81a10d0a00d48e0bc4de7f96d3e3a47.jpg", "file_size": 23061, "is_delete": false, "file_type": 1, "original_file_name": "DL132-AFWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81a10d0a00d48e0bc4de7f96d3e3a47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81a10d0a00d48e0bc4de7f96d3e3a47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f81a10d0a00d48e0bc4de7f96d3e3a47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f81a10d0a00d48e0bc4de7f96d3e3a47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f81a10d0a00d48e0bc4de7f96d3e3a47.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S1rmGiJIy_HpzvRdh5ORKXl_mhE=", "createTime": "2024-08-15 14:46:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.551822+00 2025-12-09 10:14:58.551827+00 8130 23-2112#-A4领口通用 SPMX-20240815303287 \N \N \N 1 \N [{"file_id": "091b3c6b-c6f8-4201-bd93-720fdd8aa58a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a76e8e7c1046cca8a1bd7d09554e19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a76e8e7c1046cca8a1bd7d09554e19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a76e8e7c1046cca8a1bd7d09554e19.jpg", "file_size": 7620, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a76e8e7c1046cca8a1bd7d09554e19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a76e8e7c1046cca8a1bd7d09554e19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a76e8e7c1046cca8a1bd7d09554e19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a76e8e7c1046cca8a1bd7d09554e19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a76e8e7c1046cca8a1bd7d09554e19.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02Ktg06Gx0m4xCOU5g8CPw1xo78=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.553389+00 2025-12-09 10:14:58.553394+00 8131 DL132-BFWE#VS-D3 SPMX-20240815303289 \N \N \N 1 \N [{"file_id": "bc3f9b34-bad8-456c-ad29-5eee5c673c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feae26cfed164159b7b7ff2e485ede22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feae26cfed164159b7b7ff2e485ede22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feae26cfed164159b7b7ff2e485ede22.jpg", "file_size": 25331, "is_delete": false, "file_type": 1, "original_file_name": "DL132-BFWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feae26cfed164159b7b7ff2e485ede22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feae26cfed164159b7b7ff2e485ede22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feae26cfed164159b7b7ff2e485ede22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feae26cfed164159b7b7ff2e485ede22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feae26cfed164159b7b7ff2e485ede22.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtD_6KcwtxQEBYqCItVujxaEnSU=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.554895+00 2025-12-09 10:14:58.5549+00 8132 FHXGPK-082-5 SPMX-20240815303292 \N \N \N 1 \N [{"file_id": "d197f993-13a6-40e3-8942-d36c89e459b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463a2860a473488793f1df0fa8ab3d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463a2860a473488793f1df0fa8ab3d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463a2860a473488793f1df0fa8ab3d40.jpg", "file_size": 37440, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-082-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463a2860a473488793f1df0fa8ab3d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463a2860a473488793f1df0fa8ab3d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463a2860a473488793f1df0fa8ab3d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463a2860a473488793f1df0fa8ab3d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463a2860a473488793f1df0fa8ab3d40.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-mntl6VqyV1Z83ePVy5VkE4ttQ=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.556716+00 2025-12-09 10:14:58.556721+00 8133 80308#匹布 SPMX-20240815303293 \N \N \N 1 \N [{"file_id": "dfb42b36-5cf6-4233-9c4f-e85af9554812", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "825876fa5b874eec9b0667b200260ecc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "825876fa5b874eec9b0667b200260ecc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "825876fa5b874eec9b0667b200260ecc.jpg", "file_size": 17858, "is_delete": false, "file_type": 1, "original_file_name": "80308#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825876fa5b874eec9b0667b200260ecc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825876fa5b874eec9b0667b200260ecc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825876fa5b874eec9b0667b200260ecc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/825876fa5b874eec9b0667b200260ecc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/825876fa5b874eec9b0667b200260ecc.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kj90qWI-dSbeAFmXeOMGl_8aIzI=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.558235+00 2025-12-09 10:14:58.55824+00 8134 HT0101-23#蓝 SPMX-20240815303288 \N \N \N 1 \N [{"file_id": "36ce3a3b-08f7-4727-a113-aaea8d2b7c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc10e127be854450a61f14795b6d10c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc10e127be854450a61f14795b6d10c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc10e127be854450a61f14795b6d10c4.jpg", "file_size": 24647, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-23#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc10e127be854450a61f14795b6d10c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc10e127be854450a61f14795b6d10c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc10e127be854450a61f14795b6d10c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc10e127be854450a61f14795b6d10c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc10e127be854450a61f14795b6d10c4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XW2VkYz7XpqDGBnm25eo7U2jBKc=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.559771+00 2025-12-09 10:14:58.559776+00 8135 0003-347#WJC22 SPMX-20240815303291 \N \N \N 1 \N [{"file_id": "80767ed2-7eaf-4333-bbb1-7a34b547b7a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ed0b099c38641eeb132d496b849b204.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ed0b099c38641eeb132d496b849b204.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ed0b099c38641eeb132d496b849b204.jpg", "file_size": 21272, "is_delete": false, "file_type": 1, "original_file_name": "0003-347#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed0b099c38641eeb132d496b849b204.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed0b099c38641eeb132d496b849b204.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed0b099c38641eeb132d496b849b204.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ed0b099c38641eeb132d496b849b204.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ed0b099c38641eeb132d496b849b204.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GolCZ__bKu1NqrNnj2DsAJvEu9s=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.561271+00 2025-12-09 10:14:58.561275+00 8136 107#-黑色 SPMX-20240815303290 \N \N \N 1 \N [{"file_id": "276177a3-21dd-4ef1-934a-230b5c701de0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dcb1f49a28d4e4c84a4ea5410b672b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dcb1f49a28d4e4c84a4ea5410b672b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dcb1f49a28d4e4c84a4ea5410b672b7.jpg", "file_size": 58125, "is_delete": false, "file_type": 1, "original_file_name": "107#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcb1f49a28d4e4c84a4ea5410b672b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcb1f49a28d4e4c84a4ea5410b672b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dcb1f49a28d4e4c84a4ea5410b672b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dcb1f49a28d4e4c84a4ea5410b672b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dcb1f49a28d4e4c84a4ea5410b672b7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-sOKRXOWhbqvRBFwEamk4BUgRaY=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.562822+00 2025-12-09 10:14:58.562827+00 8137 23-2112#-A5前后片3XL SPMX-20240815303308 \N \N \N 1 \N [{"file_id": "444902e8-08f2-4737-9240-a9fa3c6db2b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a3b89d497e445e69912902ab4b2dec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a3b89d497e445e69912902ab4b2dec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a3b89d497e445e69912902ab4b2dec4.jpg", "file_size": 10293, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b89d497e445e69912902ab4b2dec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b89d497e445e69912902ab4b2dec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b89d497e445e69912902ab4b2dec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a3b89d497e445e69912902ab4b2dec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a3b89d497e445e69912902ab4b2dec4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUL-omqBdPYYbA_lg-EyDdf1dMc=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.564371+00 2025-12-09 10:14:58.564375+00 8138 LJ1131#1XL码 SPMX-20240815303307 \N \N \N 1 \N [{"file_id": "916d75e1-1856-4fa0-ae27-e15e691a6e65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1959889ba7d7460887dccbab6cdf69eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1959889ba7d7460887dccbab6cdf69eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1959889ba7d7460887dccbab6cdf69eb.jpg", "file_size": 11604, "is_delete": false, "file_type": 1, "original_file_name": "LJ1131#1XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1959889ba7d7460887dccbab6cdf69eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1959889ba7d7460887dccbab6cdf69eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1959889ba7d7460887dccbab6cdf69eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1959889ba7d7460887dccbab6cdf69eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1959889ba7d7460887dccbab6cdf69eb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCoP76QLB7lasTTbaGHk2VIv_uk=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.565904+00 2025-12-09 10:14:58.565908+00 8139 80308#小童 SPMX-20240815303304 \N \N \N 1 \N [{"file_id": "c199f297-541f-446a-a044-e1446b8098a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a218a3349c44db0b3a06e1ca5aabdc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a218a3349c44db0b3a06e1ca5aabdc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a218a3349c44db0b3a06e1ca5aabdc1.jpg", "file_size": 26489, "is_delete": false, "file_type": 1, "original_file_name": "80308#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a218a3349c44db0b3a06e1ca5aabdc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a218a3349c44db0b3a06e1ca5aabdc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a218a3349c44db0b3a06e1ca5aabdc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a218a3349c44db0b3a06e1ca5aabdc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a218a3349c44db0b3a06e1ca5aabdc1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fb3i44AqF5mIqc45mHxraj3kgjI=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.567413+00 2025-12-09 10:14:58.567417+00 8140 JTSS042FW#VS-D3 SPMX-20240815303294 \N \N \N 1 \N [{"file_id": "a8ec2621-412c-4cad-9bcb-5b736dba9223", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c284052a912492587a677fb6d3afe2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c284052a912492587a677fb6d3afe2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c284052a912492587a677fb6d3afe2c.jpg", "file_size": 7797, "is_delete": false, "file_type": 1, "original_file_name": "JTSS042FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c284052a912492587a677fb6d3afe2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c284052a912492587a677fb6d3afe2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c284052a912492587a677fb6d3afe2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c284052a912492587a677fb6d3afe2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c284052a912492587a677fb6d3afe2c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j44RvdIpGBz_BvcfEPHC0sUibRQ=", "createTime": "2024-08-15 14:46:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.568944+00 2025-12-09 10:14:58.568949+00 8141 LZ1238#加大款A16 SPMX-20240815303295 \N \N \N 1 \N [{"file_id": "602cc4f5-3b48-4b5b-ba32-8522f3e65fd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eae5b856435d44ff9b7bae9cf54985b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eae5b856435d44ff9b7bae9cf54985b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eae5b856435d44ff9b7bae9cf54985b1.jpg", "file_size": 26517, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A16.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae5b856435d44ff9b7bae9cf54985b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae5b856435d44ff9b7bae9cf54985b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae5b856435d44ff9b7bae9cf54985b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eae5b856435d44ff9b7bae9cf54985b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eae5b856435d44ff9b7bae9cf54985b1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tdbWCis3NqWJYWh9dd5ruqWLiik=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.570464+00 2025-12-09 10:14:58.570468+00 8142 1071153#净色 SPMX-20240815303299 \N \N \N 1 \N [{"file_id": "2fd3dade-a694-4298-aa18-554488899b5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b6721df0e9c49ed8726eb43799ca2e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b6721df0e9c49ed8726eb43799ca2e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b6721df0e9c49ed8726eb43799ca2e2.jpg", "file_size": 8585, "is_delete": false, "file_type": 1, "original_file_name": "1071153#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6721df0e9c49ed8726eb43799ca2e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6721df0e9c49ed8726eb43799ca2e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b6721df0e9c49ed8726eb43799ca2e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b6721df0e9c49ed8726eb43799ca2e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b6721df0e9c49ed8726eb43799ca2e2.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuu_asU9XX69kzTkRbUcpUP76EQ=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.572008+00 2025-12-09 10:14:58.572013+00 8143 0003-348#WJC22番禺调色 SPMX-20240815303301 \N \N \N 1 \N [{"file_id": "896960ee-be11-43b0-8c3c-5c614ccc4196", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56eaa798f46e48d5b504a9da8c45b6c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56eaa798f46e48d5b504a9da8c45b6c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56eaa798f46e48d5b504a9da8c45b6c6.jpg", "file_size": 18866, "is_delete": false, "file_type": 1, "original_file_name": "0003-348#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56eaa798f46e48d5b504a9da8c45b6c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56eaa798f46e48d5b504a9da8c45b6c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56eaa798f46e48d5b504a9da8c45b6c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56eaa798f46e48d5b504a9da8c45b6c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56eaa798f46e48d5b504a9da8c45b6c6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X78swVhiohEOtEhkojJi_ErGuRM=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.573503+00 2025-12-09 10:14:58.573508+00 8144 C336#大白 SPMX-20240815303298 \N \N \N 1 \N [{"file_id": "e0759787-fc89-4fa1-acc1-555e26c19ce9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aaaad514f664882bea3d216b9b8b262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aaaad514f664882bea3d216b9b8b262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aaaad514f664882bea3d216b9b8b262.jpg", "file_size": 16770, "is_delete": false, "file_type": 1, "original_file_name": "C336#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aaaad514f664882bea3d216b9b8b262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aaaad514f664882bea3d216b9b8b262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aaaad514f664882bea3d216b9b8b262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aaaad514f664882bea3d216b9b8b262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aaaad514f664882bea3d216b9b8b262.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFvUp04MHfTWdw010uj_5YPYong=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.575077+00 2025-12-09 10:14:58.575082+00 8145 JTSS043#粉 SPMX-20240815303305 \N \N \N 1 \N [{"file_id": "e8ac37e0-2ce6-48f6-8ee8-fa3b02d0cb0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22fc0108815f4c24bc67a8571c77ce6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22fc0108815f4c24bc67a8571c77ce6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22fc0108815f4c24bc67a8571c77ce6c.jpg", "file_size": 13259, "is_delete": false, "file_type": 1, "original_file_name": "JTSS043#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0108815f4c24bc67a8571c77ce6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0108815f4c24bc67a8571c77ce6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0108815f4c24bc67a8571c77ce6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22fc0108815f4c24bc67a8571c77ce6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22fc0108815f4c24bc67a8571c77ce6c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRrHiOMzd_v5Y5KEDx1p-zM8ECs=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.576864+00 2025-12-09 10:14:58.576869+00 8146 LZ1238#加大款A2 SPMX-20240815303306 \N \N \N 1 \N [{"file_id": "19c03515-3962-49ff-8b57-5849640bd31e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "362808ff0a97492b8d0ee1a715b262c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "362808ff0a97492b8d0ee1a715b262c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "362808ff0a97492b8d0ee1a715b262c0.jpg", "file_size": 25342, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362808ff0a97492b8d0ee1a715b262c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362808ff0a97492b8d0ee1a715b262c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362808ff0a97492b8d0ee1a715b262c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/362808ff0a97492b8d0ee1a715b262c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/362808ff0a97492b8d0ee1a715b262c0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2bAY5zzqFKM3bJD40T-YzZkkwDM=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.578396+00 2025-12-09 10:14:58.5784+00 8147 LJ1131#0XL码 SPMX-20240815303296 \N \N \N 1 \N [{"file_id": "a6760364-835d-4a6a-8317-f83969700189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3535a3171514418bac6803fb7fff6024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3535a3171514418bac6803fb7fff6024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3535a3171514418bac6803fb7fff6024.jpg", "file_size": 12138, "is_delete": false, "file_type": 1, "original_file_name": "LJ1131#0XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535a3171514418bac6803fb7fff6024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535a3171514418bac6803fb7fff6024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535a3171514418bac6803fb7fff6024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3535a3171514418bac6803fb7fff6024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3535a3171514418bac6803fb7fff6024.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21h2oZIZXp-YSv6_cpSHPqtRxfk=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.57992+00 2025-12-09 10:14:58.579924+00 8148 23-2112#-A4领子通用 SPMX-20240815303297 \N \N \N 1 \N [{"file_id": "69583d7a-a148-44a6-8bf6-25a0330f58ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd0a6d3b00a4a4ca56757a7a18ea577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd0a6d3b00a4a4ca56757a7a18ea577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd0a6d3b00a4a4ca56757a7a18ea577.jpg", "file_size": 7342, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A4领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd0a6d3b00a4a4ca56757a7a18ea577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd0a6d3b00a4a4ca56757a7a18ea577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd0a6d3b00a4a4ca56757a7a18ea577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd0a6d3b00a4a4ca56757a7a18ea577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd0a6d3b00a4a4ca56757a7a18ea577.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CL_-DRIuhT1360k1BfTTyH03X3s=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.581436+00 2025-12-09 10:14:58.58144+00 8149 HT0101-23#黑色 SPMX-20240815303300 \N \N \N 1 \N [{"file_id": "476a7827-e53b-4731-81c0-73f304ac7cf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5101c3fc6f6947fb9aa6ca6d92330fb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5101c3fc6f6947fb9aa6ca6d92330fb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5101c3fc6f6947fb9aa6ca6d92330fb0.jpg", "file_size": 24391, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-23#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5101c3fc6f6947fb9aa6ca6d92330fb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5101c3fc6f6947fb9aa6ca6d92330fb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5101c3fc6f6947fb9aa6ca6d92330fb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5101c3fc6f6947fb9aa6ca6d92330fb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5101c3fc6f6947fb9aa6ca6d92330fb0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmLvrjGqqvSENQLAsIlUPKC2SrA=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.582969+00 2025-12-09 10:14:58.582974+00 8150 DL132-CFWE#VS-D3 SPMX-20240815303302 \N \N \N 1 \N [{"file_id": "95351a42-d756-4e4c-a641-0132b9933f6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db8e3dd4ceb041619f0982b79d0c8478.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db8e3dd4ceb041619f0982b79d0c8478.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db8e3dd4ceb041619f0982b79d0c8478.jpg", "file_size": 23442, "is_delete": false, "file_type": 1, "original_file_name": "DL132-CFWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8e3dd4ceb041619f0982b79d0c8478.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8e3dd4ceb041619f0982b79d0c8478.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8e3dd4ceb041619f0982b79d0c8478.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db8e3dd4ceb041619f0982b79d0c8478.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db8e3dd4ceb041619f0982b79d0c8478.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKmZF5qx3OVrwyiOSGftNwMYgvI=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.584484+00 2025-12-09 10:14:58.584488+00 8151 FHXGPK-083-1 SPMX-20240815303303 \N \N \N 1 \N [{"file_id": "f9cb8f56-e4f9-48d9-be91-6d988343cbfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d065439a7e421fb40c97048a4f36ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d065439a7e421fb40c97048a4f36ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d065439a7e421fb40c97048a4f36ce.jpg", "file_size": 32057, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-083-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d065439a7e421fb40c97048a4f36ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d065439a7e421fb40c97048a4f36ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d065439a7e421fb40c97048a4f36ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d065439a7e421fb40c97048a4f36ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d065439a7e421fb40c97048a4f36ce.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7n9Y9IvXg6uIGn4FS9zZNcy-Vs=", "createTime": "2024-08-15 14:46:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.586037+00 2025-12-09 10:14:58.586041+00 8152 1071153#婴3XL SPMX-20240815303309 \N \N \N 1 \N [{"file_id": "984af1f9-9af1-43f1-a94a-cb24d9c583f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c236a76229de40d696fc07ba3b128af7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c236a76229de40d696fc07ba3b128af7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c236a76229de40d696fc07ba3b128af7.jpg", "file_size": 11807, "is_delete": false, "file_type": 1, "original_file_name": "1071153#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c236a76229de40d696fc07ba3b128af7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c236a76229de40d696fc07ba3b128af7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c236a76229de40d696fc07ba3b128af7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c236a76229de40d696fc07ba3b128af7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c236a76229de40d696fc07ba3b128af7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LI_Uf00B6sclITZHURGlZ7zqCYo=", "createTime": "2024-08-15 14:46:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.58755+00 2025-12-09 10:14:58.587554+00 8153 C336#黑色 SPMX-20240815303310 \N \N \N 1 \N [{"file_id": "c9c138fb-71c3-4674-a3ec-1184fae518b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89850a549b3b4260a88c24632e583356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89850a549b3b4260a88c24632e583356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89850a549b3b4260a88c24632e583356.jpg", "file_size": 16526, "is_delete": false, "file_type": 1, "original_file_name": "C336#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89850a549b3b4260a88c24632e583356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89850a549b3b4260a88c24632e583356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89850a549b3b4260a88c24632e583356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89850a549b3b4260a88c24632e583356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89850a549b3b4260a88c24632e583356.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_nXQtMInXkQicccOJZ1MCtI9alg=", "createTime": "2024-08-15 14:46:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.589073+00 2025-12-09 10:14:58.589078+00 8154 1071153#婴S+M+L+XL+2XL SPMX-20240815303315 \N \N \N 1 \N [{"file_id": "c04d18fa-b763-4ff2-bf41-7cd67b0e9eb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4edb33ead4fe49769800520487d04512.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4edb33ead4fe49769800520487d04512.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4edb33ead4fe49769800520487d04512.jpg", "file_size": 17043, "is_delete": false, "file_type": 1, "original_file_name": "1071153#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4edb33ead4fe49769800520487d04512.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4edb33ead4fe49769800520487d04512.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4edb33ead4fe49769800520487d04512.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4edb33ead4fe49769800520487d04512.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4edb33ead4fe49769800520487d04512.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPqd_FMzS7UVIzpdofXDfkozObk=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.590611+00 2025-12-09 10:14:58.590615+00 8155 23-2112#-A5前后片4XL SPMX-20240815303314 \N \N \N 1 \N [{"file_id": "de051815-47bc-4ec1-bab6-1b677e49db11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f819e8bb42bb4af3bc51adf5b5f9d232.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f819e8bb42bb4af3bc51adf5b5f9d232.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f819e8bb42bb4af3bc51adf5b5f9d232.jpg", "file_size": 10633, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f819e8bb42bb4af3bc51adf5b5f9d232.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f819e8bb42bb4af3bc51adf5b5f9d232.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f819e8bb42bb4af3bc51adf5b5f9d232.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f819e8bb42bb4af3bc51adf5b5f9d232.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f819e8bb42bb4af3bc51adf5b5f9d232.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imOi_RfBZw5fb5_M4xO0UNyzRog=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.592118+00 2025-12-09 10:14:58.592123+00 8156 DL132-DFWE#VS-D3 SPMX-20240815303313 \N \N \N 1 \N [{"file_id": "ba917fa9-c559-42da-9969-0da71f66c56f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b80446c4bbcd47f78647bba0cdf144a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b80446c4bbcd47f78647bba0cdf144a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b80446c4bbcd47f78647bba0cdf144a2.jpg", "file_size": 24282, "is_delete": false, "file_type": 1, "original_file_name": "DL132-DFWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80446c4bbcd47f78647bba0cdf144a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80446c4bbcd47f78647bba0cdf144a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80446c4bbcd47f78647bba0cdf144a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b80446c4bbcd47f78647bba0cdf144a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b80446c4bbcd47f78647bba0cdf144a2.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Es6uyPN00JdckJ84IJ5SeukaCg=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.593603+00 2025-12-09 10:14:58.593607+00 8157 HT0101-24#WJC22 SPMX-20240815303311 \N \N \N 1 \N [{"file_id": "74a47801-a7ff-47c5-92b3-94080f5b5a9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32d1eff1526e46e88f9d11dda2474e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32d1eff1526e46e88f9d11dda2474e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32d1eff1526e46e88f9d11dda2474e7a.jpg", "file_size": 10791, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d1eff1526e46e88f9d11dda2474e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d1eff1526e46e88f9d11dda2474e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d1eff1526e46e88f9d11dda2474e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32d1eff1526e46e88f9d11dda2474e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32d1eff1526e46e88f9d11dda2474e7a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1shZa4QMwRVGDXCLkTRdLn6z_tI=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.595122+00 2025-12-09 10:14:58.595126+00 8158 0003-349#WJC22 SPMX-20240815303312 \N \N \N 1 \N [{"file_id": "6febc41c-b339-4a9c-b676-af2966b5a0c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03c432ad6cd44df6868ad17306f7b4c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03c432ad6cd44df6868ad17306f7b4c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03c432ad6cd44df6868ad17306f7b4c3.jpg", "file_size": 13756, "is_delete": false, "file_type": 1, "original_file_name": "0003-349#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c432ad6cd44df6868ad17306f7b4c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c432ad6cd44df6868ad17306f7b4c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c432ad6cd44df6868ad17306f7b4c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03c432ad6cd44df6868ad17306f7b4c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03c432ad6cd44df6868ad17306f7b4c3.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MVuqDqKOUm8yJ1AZLVtqdNuL9Gc=", "createTime": "2024-08-15 14:46:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.596634+00 2025-12-09 10:14:58.596638+00 8159 FHXGPK-083-2 SPMX-20240815303321 \N \N \N 1 \N [{"file_id": "11a28e67-4178-46ea-972a-18102c7aa73a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97f976a9ce9d40c6a81f292597707046.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97f976a9ce9d40c6a81f292597707046.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97f976a9ce9d40c6a81f292597707046.jpg", "file_size": 33981, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-083-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f976a9ce9d40c6a81f292597707046.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f976a9ce9d40c6a81f292597707046.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f976a9ce9d40c6a81f292597707046.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97f976a9ce9d40c6a81f292597707046.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97f976a9ce9d40c6a81f292597707046.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-dFBKeP7swVWrK1OcEEfc_KIEU=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.598145+00 2025-12-09 10:14:58.59815+00 8160 LZ1238#加大款A3 SPMX-20240815303316 \N \N \N 1 \N [{"file_id": "43aabffd-26ba-49fc-b288-fb51e6fabf4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e09dc4a346843a2aaea75aa137ca75c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e09dc4a346843a2aaea75aa137ca75c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e09dc4a346843a2aaea75aa137ca75c.jpg", "file_size": 23270, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09dc4a346843a2aaea75aa137ca75c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09dc4a346843a2aaea75aa137ca75c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e09dc4a346843a2aaea75aa137ca75c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e09dc4a346843a2aaea75aa137ca75c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e09dc4a346843a2aaea75aa137ca75c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0BMPbqib018xrMo-V9iG-G18SNg=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.599625+00 2025-12-09 10:14:58.599629+00 8161 0003-34FWE#VS-D3 SPMX-20240815303322 \N \N \N 1 \N [{"file_id": "56c73af7-c5ca-4327-8668-38cbc41ef993", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04e8e6aa788543f088a73df95802327a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04e8e6aa788543f088a73df95802327a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04e8e6aa788543f088a73df95802327a.jpg", "file_size": 13827, "is_delete": false, "file_type": 1, "original_file_name": "0003-34FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e8e6aa788543f088a73df95802327a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e8e6aa788543f088a73df95802327a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e8e6aa788543f088a73df95802327a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04e8e6aa788543f088a73df95802327a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04e8e6aa788543f088a73df95802327a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5JrJe4_tt-O1L8czSudEXONgmT4=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.601103+00 2025-12-09 10:14:58.601108+00 8162 LJ1131#2XL码 SPMX-20240815303319 \N \N \N 1 \N [{"file_id": "cfb6b41f-201a-46ed-b00e-5395960164cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e5387dcd0d64bfc853d6c4c34db90fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e5387dcd0d64bfc853d6c4c34db90fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e5387dcd0d64bfc853d6c4c34db90fa.jpg", "file_size": 11504, "is_delete": false, "file_type": 1, "original_file_name": "LJ1131#2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5387dcd0d64bfc853d6c4c34db90fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5387dcd0d64bfc853d6c4c34db90fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5387dcd0d64bfc853d6c4c34db90fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e5387dcd0d64bfc853d6c4c34db90fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e5387dcd0d64bfc853d6c4c34db90fa.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xsQ8QD8rtBDUH_hG1BSA1zQKtxk=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.602595+00 2025-12-09 10:14:58.602599+00 8163 HT0101-25#WJC22 SPMX-20240815303323 \N \N \N 1 \N [{"file_id": "01ea525f-4a5b-4206-ae36-65d6bab87312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb7eb4c80568467985297052df25dc10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb7eb4c80568467985297052df25dc10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb7eb4c80568467985297052df25dc10.jpg", "file_size": 17826, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-25#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7eb4c80568467985297052df25dc10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7eb4c80568467985297052df25dc10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7eb4c80568467985297052df25dc10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb7eb4c80568467985297052df25dc10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb7eb4c80568467985297052df25dc10.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pSuCrciG9yLQB8DHSMgbmFrTr98=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.604117+00 2025-12-09 10:14:58.604122+00 8164 C337#231#墨绿 SPMX-20240815303317 \N \N \N 1 \N [{"file_id": "d1cd66b5-686a-4609-9e6b-f308948faa66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f762d562a746ee926771ab3eeed4b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f762d562a746ee926771ab3eeed4b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f762d562a746ee926771ab3eeed4b8.jpg", "file_size": 28098, "is_delete": false, "file_type": 1, "original_file_name": "C337#231#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f762d562a746ee926771ab3eeed4b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f762d562a746ee926771ab3eeed4b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f762d562a746ee926771ab3eeed4b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f762d562a746ee926771ab3eeed4b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f762d562a746ee926771ab3eeed4b8.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70ChgS1GWgbrch0goy-s4uL99f0=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.605609+00 2025-12-09 10:14:58.605613+00 8165 80308#裤子 SPMX-20240815303320 \N \N \N 1 \N [{"file_id": "fcce1ecc-d099-4cd5-a70e-8303ec36e959", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c808099bd834466802a99167213b04a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c808099bd834466802a99167213b04a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c808099bd834466802a99167213b04a.jpg", "file_size": 17169, "is_delete": false, "file_type": 1, "original_file_name": "80308#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c808099bd834466802a99167213b04a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c808099bd834466802a99167213b04a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c808099bd834466802a99167213b04a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c808099bd834466802a99167213b04a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c808099bd834466802a99167213b04a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCYruogG3YOm5EmPEGn3En1iBks=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.607136+00 2025-12-09 10:14:58.60714+00 8166 JTSS043#蓝 SPMX-20240815303318 \N \N \N 1 \N [{"file_id": "1090d634-9282-48c3-84e7-95749d12ff65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57026b97473342699894775f525d2a19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57026b97473342699894775f525d2a19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57026b97473342699894775f525d2a19.jpg", "file_size": 13835, "is_delete": false, "file_type": 1, "original_file_name": "JTSS043#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57026b97473342699894775f525d2a19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57026b97473342699894775f525d2a19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57026b97473342699894775f525d2a19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57026b97473342699894775f525d2a19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57026b97473342699894775f525d2a19.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLTk1tygZlwlow-PG4etbPl9e40=", "createTime": "2024-08-15 14:46:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.608646+00 2025-12-09 10:14:58.608651+00 8167 DL132-GFWE#VS-D3 SPMX-20240815303325 \N \N \N 1 \N [{"file_id": "f12e64c3-e458-46d2-bd94-567cad7bfca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e6830622581486ba52d3bfcfe61f331.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e6830622581486ba52d3bfcfe61f331.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e6830622581486ba52d3bfcfe61f331.jpg", "file_size": 21341, "is_delete": false, "file_type": 1, "original_file_name": "DL132-GFWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6830622581486ba52d3bfcfe61f331.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6830622581486ba52d3bfcfe61f331.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6830622581486ba52d3bfcfe61f331.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e6830622581486ba52d3bfcfe61f331.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e6830622581486ba52d3bfcfe61f331.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9cXrJx2APIP8cM_CmaCtNEkWa8w=", "createTime": "2024-08-15 14:46:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.610176+00 2025-12-09 10:14:58.61018+00 8168 1071153#男3XL+女S+女M SPMX-20240815303324 \N \N \N 1 \N [{"file_id": "69296b94-d28b-4f08-b7cb-a5ff7137e695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4aee3d68d85415a9a1e0edfdc3b64b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4aee3d68d85415a9a1e0edfdc3b64b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4aee3d68d85415a9a1e0edfdc3b64b6.jpg", "file_size": 16632, "is_delete": false, "file_type": 1, "original_file_name": "1071153#男3XL+女S+女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aee3d68d85415a9a1e0edfdc3b64b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aee3d68d85415a9a1e0edfdc3b64b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aee3d68d85415a9a1e0edfdc3b64b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4aee3d68d85415a9a1e0edfdc3b64b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4aee3d68d85415a9a1e0edfdc3b64b6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B10qVqSA97eXqwYBjg67u3Ko7Ww=", "createTime": "2024-08-15 14:46:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.611723+00 2025-12-09 10:14:58.611729+00 8169 23-2112#-A5袖子3XL SPMX-20240815303326 \N \N \N 1 \N [{"file_id": "92991f5a-fd63-4a2e-8ec7-17980be814f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b5266b1d119443e8b57d36b3db6298d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b5266b1d119443e8b57d36b3db6298d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b5266b1d119443e8b57d36b3db6298d.jpg", "file_size": 10185, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5266b1d119443e8b57d36b3db6298d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5266b1d119443e8b57d36b3db6298d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5266b1d119443e8b57d36b3db6298d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b5266b1d119443e8b57d36b3db6298d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b5266b1d119443e8b57d36b3db6298d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sL5VBFLMnDb1Dnw2TZ9JNcxkd0=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.613367+00 2025-12-09 10:14:58.613371+00 8170 LJ1131#3XL码 SPMX-20240815303327 \N \N \N 1 \N [{"file_id": "b27e59a1-5895-4155-b404-3580544e09f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0d2eb2d3ce54b69b30655357c1bd337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0d2eb2d3ce54b69b30655357c1bd337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0d2eb2d3ce54b69b30655357c1bd337.jpg", "file_size": 11383, "is_delete": false, "file_type": 1, "original_file_name": "LJ1131#3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d2eb2d3ce54b69b30655357c1bd337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d2eb2d3ce54b69b30655357c1bd337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d2eb2d3ce54b69b30655357c1bd337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0d2eb2d3ce54b69b30655357c1bd337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0d2eb2d3ce54b69b30655357c1bd337.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrrCkhxQYCNtQql7zxloS6yiBxE=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.615144+00 2025-12-09 10:14:58.615149+00 8171 HT0101-26#WJC22 SPMX-20240815303328 \N \N \N 1 \N [{"file_id": "1d795293-5c96-4b37-a261-8455d3dea619", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d97d0cf65984e93a272b1690b347a75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d97d0cf65984e93a272b1690b347a75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d97d0cf65984e93a272b1690b347a75.jpg", "file_size": 11054, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-26#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d97d0cf65984e93a272b1690b347a75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d97d0cf65984e93a272b1690b347a75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d97d0cf65984e93a272b1690b347a75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d97d0cf65984e93a272b1690b347a75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d97d0cf65984e93a272b1690b347a75.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G27Hbqti2z8gTi3Xr9X-aE09QMk=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.616643+00 2025-12-09 10:14:58.616648+00 8172 803080#中童 SPMX-20240815303329 \N \N \N 1 \N [{"file_id": "1dfb24f0-1ece-4ba9-b5f3-e6a5da9354bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg", "file_size": 22996, "is_delete": false, "file_type": 1, "original_file_name": "803080#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43cf7f2f93bc4a6bb8f0b8a9b79c508a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b50ufsUIrlEycswY7C0jafOrFlo=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.618188+00 2025-12-09 10:14:58.618192+00 8173 FHXGPK-083-3 SPMX-20240815303330 \N \N \N 1 \N [{"file_id": "fc00bf80-2783-4981-a703-e1cc1be81ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b373a5c11546eca56913d632f8f607.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b373a5c11546eca56913d632f8f607.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b373a5c11546eca56913d632f8f607.jpg", "file_size": 29734, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-083-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b373a5c11546eca56913d632f8f607.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b373a5c11546eca56913d632f8f607.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b373a5c11546eca56913d632f8f607.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b373a5c11546eca56913d632f8f607.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b373a5c11546eca56913d632f8f607.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7CIJ6lShjfYJH2oz-o6wVReuNo=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.619674+00 2025-12-09 10:14:58.619678+00 8174 JTSS043FW#VS-D3 SPMX-20240815303333 \N \N \N 1 \N [{"file_id": "ee07e63a-5013-4755-badd-afb81638f7e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f75f2dbf4604418fb557edf980bf5b57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f75f2dbf4604418fb557edf980bf5b57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f75f2dbf4604418fb557edf980bf5b57.jpg", "file_size": 26451, "is_delete": false, "file_type": 1, "original_file_name": "JTSS043FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75f2dbf4604418fb557edf980bf5b57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75f2dbf4604418fb557edf980bf5b57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75f2dbf4604418fb557edf980bf5b57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f75f2dbf4604418fb557edf980bf5b57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f75f2dbf4604418fb557edf980bf5b57.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAuDDRbLplsnhYaQ5raXgplsJd0=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.621193+00 2025-12-09 10:14:58.621197+00 8175 JTSS044# SPMX-20240815303344 \N \N \N 1 \N [{"file_id": "54f3acf7-0d65-4d57-a137-7d62c5864854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8dd03cc02ed45af8a42e6041e888d0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8dd03cc02ed45af8a42e6041e888d0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8dd03cc02ed45af8a42e6041e888d0a.jpg", "file_size": 11685, "is_delete": false, "file_type": 1, "original_file_name": "JTSS044#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8dd03cc02ed45af8a42e6041e888d0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8dd03cc02ed45af8a42e6041e888d0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8dd03cc02ed45af8a42e6041e888d0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8dd03cc02ed45af8a42e6041e888d0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8dd03cc02ed45af8a42e6041e888d0a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbAowNv58IAAZsWfGexqaR5BoiM=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.622688+00 2025-12-09 10:14:58.622692+00 8176 DL17573#红色 SPMX-20240815303337 \N \N \N 1 \N [{"file_id": "f3be44bb-6b1d-4783-b8c2-a8abcc9db5d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eeb8fbdb5654940afbe3b4b8a1a5337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eeb8fbdb5654940afbe3b4b8a1a5337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eeb8fbdb5654940afbe3b4b8a1a5337.jpg", "file_size": 15271, "is_delete": false, "file_type": 1, "original_file_name": "DL17573#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eeb8fbdb5654940afbe3b4b8a1a5337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eeb8fbdb5654940afbe3b4b8a1a5337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eeb8fbdb5654940afbe3b4b8a1a5337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eeb8fbdb5654940afbe3b4b8a1a5337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eeb8fbdb5654940afbe3b4b8a1a5337.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOVhrondD5VyEwxub4SIap-_1Yw=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.624184+00 2025-12-09 10:14:58.624189+00 8177 0003-34FWF#V5曲线 SPMX-20240815303332 \N \N \N 1 \N [{"file_id": "e22bbda4-fa01-4a62-bb79-19c7eb22103d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2afe814f2d94f4780627f3b0c14b028.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2afe814f2d94f4780627f3b0c14b028.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2afe814f2d94f4780627f3b0c14b028.jpg", "file_size": 11914, "is_delete": false, "file_type": 1, "original_file_name": "0003-34FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2afe814f2d94f4780627f3b0c14b028.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2afe814f2d94f4780627f3b0c14b028.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2afe814f2d94f4780627f3b0c14b028.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2afe814f2d94f4780627f3b0c14b028.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2afe814f2d94f4780627f3b0c14b028.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVuH15P-csiHzLuL-FtA9o-hPSU=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.625714+00 2025-12-09 10:14:58.625719+00 8178 23-2112#-A5袖子4XL SPMX-20240815303340 \N \N \N 1 \N [{"file_id": "6ddaacfe-ff7c-44b6-82f6-5839d630768c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7654732306534c42aaff64d3ed504711.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7654732306534c42aaff64d3ed504711.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7654732306534c42aaff64d3ed504711.jpg", "file_size": 10256, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7654732306534c42aaff64d3ed504711.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7654732306534c42aaff64d3ed504711.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7654732306534c42aaff64d3ed504711.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7654732306534c42aaff64d3ed504711.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7654732306534c42aaff64d3ed504711.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tI0ICB9iCoR96rhw95_vuSmGHkQ=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.627228+00 2025-12-09 10:14:58.627232+00 8179 C337#62#橙色 SPMX-20240815303334 \N \N \N 1 \N [{"file_id": "09ee6c35-44b8-4e02-80f9-b769377ce856", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f66580205a04af5b7d0d46b85a2a2ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f66580205a04af5b7d0d46b85a2a2ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f66580205a04af5b7d0d46b85a2a2ba.jpg", "file_size": 26686, "is_delete": false, "file_type": 1, "original_file_name": "C337#62#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f66580205a04af5b7d0d46b85a2a2ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f66580205a04af5b7d0d46b85a2a2ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f66580205a04af5b7d0d46b85a2a2ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f66580205a04af5b7d0d46b85a2a2ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f66580205a04af5b7d0d46b85a2a2ba.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzV4cnHtJAxjbtsxyBEJIt7fbvI=", "createTime": "2024-08-15 14:46:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.628743+00 2025-12-09 10:14:58.628747+00 8180 LZ1238#加大款A4 SPMX-20240815303335 \N \N \N 1 \N [{"file_id": "762dc612-e1f5-4c7f-b5e8-28b3411ba7ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a787d919554d809b8f55a3cb08a159.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a787d919554d809b8f55a3cb08a159.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a787d919554d809b8f55a3cb08a159.jpg", "file_size": 24190, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a787d919554d809b8f55a3cb08a159.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a787d919554d809b8f55a3cb08a159.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a787d919554d809b8f55a3cb08a159.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a787d919554d809b8f55a3cb08a159.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a787d919554d809b8f55a3cb08a159.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z_Q6ZlpGP74U5KxIBN-F5ZGwmPM=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.630228+00 2025-12-09 10:14:58.630232+00 8181 HT0101-27#WJC22 SPMX-20240815303339 \N \N \N 1 \N [{"file_id": "f2274208-ff9a-411a-a528-ce18fa9b671e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca68525e8c64415fb1b74cc26abec4fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca68525e8c64415fb1b74cc26abec4fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca68525e8c64415fb1b74cc26abec4fc.jpg", "file_size": 15729, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-27#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca68525e8c64415fb1b74cc26abec4fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca68525e8c64415fb1b74cc26abec4fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca68525e8c64415fb1b74cc26abec4fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca68525e8c64415fb1b74cc26abec4fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca68525e8c64415fb1b74cc26abec4fc.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w-WibkKPKQiqvzWUzzn78zuSLIM=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.631796+00 2025-12-09 10:14:58.6318+00 8182 0003-350#圆点 SPMX-20240815303341 \N \N \N 1 \N [{"file_id": "7cc7444a-c64f-4f4c-a142-0e9edb50a9d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "648a5db837e34587bddb798d1dac52af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "648a5db837e34587bddb798d1dac52af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "648a5db837e34587bddb798d1dac52af.jpg", "file_size": 9087, "is_delete": false, "file_type": 1, "original_file_name": "0003-350#圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648a5db837e34587bddb798d1dac52af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648a5db837e34587bddb798d1dac52af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648a5db837e34587bddb798d1dac52af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/648a5db837e34587bddb798d1dac52af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/648a5db837e34587bddb798d1dac52af.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P95VwzvRbXiO0sX0SIUYzm5Wku4=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.633333+00 2025-12-09 10:14:58.633338+00 8183 C337#墨绿 SPMX-20240815303343 \N \N \N 1 \N [{"file_id": "4feace98-428d-4c92-8346-8c6879e0259d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14fac472c8e42a4a0b7ebdf1c5d5007.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14fac472c8e42a4a0b7ebdf1c5d5007.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14fac472c8e42a4a0b7ebdf1c5d5007.jpg", "file_size": 28189, "is_delete": false, "file_type": 1, "original_file_name": "C337#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14fac472c8e42a4a0b7ebdf1c5d5007.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14fac472c8e42a4a0b7ebdf1c5d5007.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14fac472c8e42a4a0b7ebdf1c5d5007.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14fac472c8e42a4a0b7ebdf1c5d5007.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14fac472c8e42a4a0b7ebdf1c5d5007.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnmaMqHffYLkPWJkDFPlaU70aec=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.634864+00 2025-12-09 10:14:58.634868+00 8184 1071153#男S+M SPMX-20240815303345 \N \N \N 1 \N [{"file_id": "2741c59b-0652-4384-9b29-98f224bc8754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dbcd89b568f445fa47861de441aa394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dbcd89b568f445fa47861de441aa394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dbcd89b568f445fa47861de441aa394.jpg", "file_size": 16118, "is_delete": false, "file_type": 1, "original_file_name": "1071153#男S+M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbcd89b568f445fa47861de441aa394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbcd89b568f445fa47861de441aa394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbcd89b568f445fa47861de441aa394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dbcd89b568f445fa47861de441aa394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dbcd89b568f445fa47861de441aa394.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khmnj4UZsrXVbAk3w2KU1E7HPMM=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.643619+00 2025-12-09 10:14:58.643623+00 8189 80309#上衣 SPMX-20240815303347 \N \N \N 1 \N [{"file_id": "8cc527c9-b7c9-4d70-a623-273cff68025e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98b88bbc1c8c4cdc965587c0769e5619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98b88bbc1c8c4cdc965587c0769e5619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98b88bbc1c8c4cdc965587c0769e5619.jpg", "file_size": 24375, "is_delete": false, "file_type": 1, "original_file_name": "80309#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b88bbc1c8c4cdc965587c0769e5619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b88bbc1c8c4cdc965587c0769e5619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b88bbc1c8c4cdc965587c0769e5619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98b88bbc1c8c4cdc965587c0769e5619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98b88bbc1c8c4cdc965587c0769e5619.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5diije6SIRg8zeg4LiwOx63V2no=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.636369+00 2025-12-09 10:14:58.636374+00 8185 1071153#男L+女L+女XL SPMX-20240815303336 \N \N \N 1 \N [{"file_id": "49dd68d9-5e16-40aa-b41d-c1b8cc50b93e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7c6df7af6843cfb7b929fa87f7ae25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7c6df7af6843cfb7b929fa87f7ae25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7c6df7af6843cfb7b929fa87f7ae25.jpg", "file_size": 11311, "is_delete": false, "file_type": 1, "original_file_name": "1071153#男L+女L+女XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c6df7af6843cfb7b929fa87f7ae25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c6df7af6843cfb7b929fa87f7ae25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c6df7af6843cfb7b929fa87f7ae25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7c6df7af6843cfb7b929fa87f7ae25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7c6df7af6843cfb7b929fa87f7ae25.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UnJCX-wFPkGRnVFDGiNDJQGtlFM=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.637919+00 2025-12-09 10:14:58.637923+00 8186 FHXGPK-083-4 SPMX-20240815303342 \N \N \N 1 \N [{"file_id": "5f54efe1-aca6-4ab8-95aa-706062b1857d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acb43d873b4a4ed59c53aa639402c332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acb43d873b4a4ed59c53aa639402c332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acb43d873b4a4ed59c53aa639402c332.jpg", "file_size": 32969, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-083-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acb43d873b4a4ed59c53aa639402c332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acb43d873b4a4ed59c53aa639402c332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acb43d873b4a4ed59c53aa639402c332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acb43d873b4a4ed59c53aa639402c332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acb43d873b4a4ed59c53aa639402c332.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZE0A7u1VovX0dXwCkOnHWqMSK_A=", "createTime": "2024-08-15 14:46:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.639677+00 2025-12-09 10:14:58.639681+00 8187 FHXGPK-083-5 SPMX-20240815303351 \N \N \N 1 \N [{"file_id": "64ed1a4c-ca04-4071-987a-810f0352fddf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf3e2a0ba61842a3b58c581554e053c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf3e2a0ba61842a3b58c581554e053c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf3e2a0ba61842a3b58c581554e053c4.jpg", "file_size": 32140, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-083-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3e2a0ba61842a3b58c581554e053c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3e2a0ba61842a3b58c581554e053c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3e2a0ba61842a3b58c581554e053c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf3e2a0ba61842a3b58c581554e053c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf3e2a0ba61842a3b58c581554e053c4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwORf-xj_nzD_YAvcsXrx3GLCcw=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.641585+00 2025-12-09 10:14:58.64159+00 8188 HT0101-28#橙色 SPMX-20240815303354 \N \N \N 1 \N [{"file_id": "6b59c65e-bf8d-4b18-8abf-bd3a26ff3d46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "556f1dd2f178477f8ffe778502560411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "556f1dd2f178477f8ffe778502560411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "556f1dd2f178477f8ffe778502560411.jpg", "file_size": 15618, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-28#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556f1dd2f178477f8ffe778502560411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556f1dd2f178477f8ffe778502560411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/556f1dd2f178477f8ffe778502560411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/556f1dd2f178477f8ffe778502560411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/556f1dd2f178477f8ffe778502560411.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eidOMPP2UfJGFu-CzwauTI93pIc=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.64567+00 2025-12-09 10:14:58.645674+00 8190 DL2-48G613#原版色L SPMX-20240815303358 \N \N \N 1 \N [{"file_id": "b1ce87db-ad95-44b5-9afe-7996a002262d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1be0f0148ca4449834e07b3dc19bc3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1be0f0148ca4449834e07b3dc19bc3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1be0f0148ca4449834e07b3dc19bc3a.jpg", "file_size": 18171, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#原版色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1be0f0148ca4449834e07b3dc19bc3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1be0f0148ca4449834e07b3dc19bc3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1be0f0148ca4449834e07b3dc19bc3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1be0f0148ca4449834e07b3dc19bc3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1be0f0148ca4449834e07b3dc19bc3a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k14c89uu-vH4-kIiMTpUcVwxV0M=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.647845+00 2025-12-09 10:14:58.64785+00 8191 LJ1131#4XL码 SPMX-20240815303353 \N \N \N 1 \N [{"file_id": "93138742-ec4a-45b1-9c99-85403078f064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "060e9807044c48d581fc336aab944113.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "060e9807044c48d581fc336aab944113.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "060e9807044c48d581fc336aab944113.bmp", "file_size": 382582, "is_delete": false, "file_type": 1, "original_file_name": "LJ1131#4XL码.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060e9807044c48d581fc336aab944113.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060e9807044c48d581fc336aab944113.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060e9807044c48d581fc336aab944113.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/060e9807044c48d581fc336aab944113.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/060e9807044c48d581fc336aab944113.bmp?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPiZcu-ZgL3KLI-Y0QaBr5nKYQI=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.64969+00 2025-12-09 10:14:58.649695+00 8192 80309#中童 SPMX-20240815303359 \N \N \N 1 \N [{"file_id": "021a7c4a-fe3f-49a0-ae6c-eeb19f3fe0ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25c92bfdbb7e479aa3e93cae3fa98f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25c92bfdbb7e479aa3e93cae3fa98f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25c92bfdbb7e479aa3e93cae3fa98f8e.jpg", "file_size": 24641, "is_delete": false, "file_type": 1, "original_file_name": "80309#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c92bfdbb7e479aa3e93cae3fa98f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c92bfdbb7e479aa3e93cae3fa98f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25c92bfdbb7e479aa3e93cae3fa98f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25c92bfdbb7e479aa3e93cae3fa98f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25c92bfdbb7e479aa3e93cae3fa98f8e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0_Z9jK_T7kAhyZnc9WFF1VY2_I=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.651717+00 2025-12-09 10:14:58.651721+00 8193 1071153#男XL+男2XL+女2XL+女3XL+童10T+12T SPMX-20240815303356 \N \N \N 1 \N [{"file_id": "f871a729-a332-4978-bb7c-e09050d3b7ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cffbbfb714514b8c98944d5aaf90945d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cffbbfb714514b8c98944d5aaf90945d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cffbbfb714514b8c98944d5aaf90945d.jpg", "file_size": 17589, "is_delete": false, "file_type": 1, "original_file_name": "1071153#男XL+男2XL+女2XL+女3XL+童10T+12T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cffbbfb714514b8c98944d5aaf90945d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cffbbfb714514b8c98944d5aaf90945d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cffbbfb714514b8c98944d5aaf90945d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cffbbfb714514b8c98944d5aaf90945d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cffbbfb714514b8c98944d5aaf90945d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGEQo_zllxTel7ay6LQS6DR-gws=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.653746+00 2025-12-09 10:14:58.65375+00 8194 LZ1238#加大款B SPMX-20240815303357 \N \N \N 1 \N [{"file_id": "5e4b8901-f455-4b71-b7f1-775df0b5c6cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f655b72b684ab59cfecd393d002351.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f655b72b684ab59cfecd393d002351.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f655b72b684ab59cfecd393d002351.jpg", "file_size": 26412, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f655b72b684ab59cfecd393d002351.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f655b72b684ab59cfecd393d002351.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f655b72b684ab59cfecd393d002351.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f655b72b684ab59cfecd393d002351.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f655b72b684ab59cfecd393d002351.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bDO6eCqQGt_eLNo1Si73F-29X4=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.655446+00 2025-12-09 10:14:58.65545+00 8195 JTSS044FW#VS-D3 SPMX-20240815303355 \N \N \N 1 \N [{"file_id": "f79214ee-b986-4b97-897e-3f4e98ab5243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19c54b56ad84b99847b0d6182fdef86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19c54b56ad84b99847b0d6182fdef86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19c54b56ad84b99847b0d6182fdef86.jpg", "file_size": 27999, "is_delete": false, "file_type": 1, "original_file_name": "JTSS044FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19c54b56ad84b99847b0d6182fdef86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19c54b56ad84b99847b0d6182fdef86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19c54b56ad84b99847b0d6182fdef86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19c54b56ad84b99847b0d6182fdef86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19c54b56ad84b99847b0d6182fdef86.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0Ek1oatCmJvCAKJHbRIDrsNwXk=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.656962+00 2025-12-09 10:14:58.656967+00 8196 23-2112#-A5领口通用 SPMX-20240815303349 \N \N \N 1 \N [{"file_id": "17de0489-e512-4698-ac36-cee391ba0f84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c7d977415f402a8704a39d1f6afdbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c7d977415f402a8704a39d1f6afdbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c7d977415f402a8704a39d1f6afdbb.jpg", "file_size": 7686, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c7d977415f402a8704a39d1f6afdbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c7d977415f402a8704a39d1f6afdbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c7d977415f402a8704a39d1f6afdbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c7d977415f402a8704a39d1f6afdbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c7d977415f402a8704a39d1f6afdbb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k04nNKvByPSLFkhutOzVS-61pTc=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.658468+00 2025-12-09 10:14:58.658472+00 8197 DL17573#蓝色 SPMX-20240815303348 \N \N \N 1 \N [{"file_id": "cfe6b3bd-a74d-4eda-9436-b731ca417221", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b797a95153384a45ba3d7baf7c44493b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b797a95153384a45ba3d7baf7c44493b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b797a95153384a45ba3d7baf7c44493b.jpg", "file_size": 16144, "is_delete": false, "file_type": 1, "original_file_name": "DL17573#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b797a95153384a45ba3d7baf7c44493b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b797a95153384a45ba3d7baf7c44493b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b797a95153384a45ba3d7baf7c44493b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b797a95153384a45ba3d7baf7c44493b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b797a95153384a45ba3d7baf7c44493b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5twt-PWbrGihxbl5EqkN2SJ_6Y=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.660016+00 2025-12-09 10:14:58.66002+00 8198 C337#大白 SPMX-20240815303350 \N \N \N 1 \N [{"file_id": "c93cdd03-dd7a-45c4-93c8-27e5a060e087", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bacb2d27f524692a10f9cb7171457af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bacb2d27f524692a10f9cb7171457af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bacb2d27f524692a10f9cb7171457af.jpg", "file_size": 28145, "is_delete": false, "file_type": 1, "original_file_name": "C337#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bacb2d27f524692a10f9cb7171457af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bacb2d27f524692a10f9cb7171457af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bacb2d27f524692a10f9cb7171457af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bacb2d27f524692a10f9cb7171457af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bacb2d27f524692a10f9cb7171457af.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJjz-_hMNQxto-YkAt3a13uKkRI=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.661561+00 2025-12-09 10:14:58.661566+00 8199 LZ1238#加大款A8 SPMX-20240815303346 \N \N \N 1 \N [{"file_id": "ab7d956c-0f5d-4127-a7f0-9b0cb642f27b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34e97db41d5845ef9254619e96601080.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34e97db41d5845ef9254619e96601080.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34e97db41d5845ef9254619e96601080.jpg", "file_size": 27778, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款A8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e97db41d5845ef9254619e96601080.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e97db41d5845ef9254619e96601080.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e97db41d5845ef9254619e96601080.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34e97db41d5845ef9254619e96601080.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34e97db41d5845ef9254619e96601080.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wv4oQQEyofjzR7dDLFSz7l7whoc=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.663082+00 2025-12-09 10:14:58.663087+00 8200 0003-350#正身 SPMX-20240815303352 \N \N \N 1 \N [{"file_id": "32a2e120-e216-4926-a772-079f00ddb1ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0fb8c3d25c346e0a8993c2292d80ec6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0fb8c3d25c346e0a8993c2292d80ec6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0fb8c3d25c346e0a8993c2292d80ec6.jpg", "file_size": 17919, "is_delete": false, "file_type": 1, "original_file_name": "0003-350#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fb8c3d25c346e0a8993c2292d80ec6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fb8c3d25c346e0a8993c2292d80ec6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fb8c3d25c346e0a8993c2292d80ec6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0fb8c3d25c346e0a8993c2292d80ec6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0fb8c3d25c346e0a8993c2292d80ec6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pg__Jhb-WTo-utlhi1jq4IUEMBQ=", "createTime": "2024-08-15 14:46:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.664603+00 2025-12-09 10:14:58.664608+00 8201 C337#黑色 SPMX-20240815303362 \N \N \N 1 \N [{"file_id": "17163bd9-910a-4dee-a733-7ca8c85228c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbfa611f0d42414fa3ae17713a70c54f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbfa611f0d42414fa3ae17713a70c54f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbfa611f0d42414fa3ae17713a70c54f.jpg", "file_size": 27884, "is_delete": false, "file_type": 1, "original_file_name": "C337#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfa611f0d42414fa3ae17713a70c54f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfa611f0d42414fa3ae17713a70c54f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfa611f0d42414fa3ae17713a70c54f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbfa611f0d42414fa3ae17713a70c54f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbfa611f0d42414fa3ae17713a70c54f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYEFsUTwoFvPLU6v7A7T-UrnvrY=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.666124+00 2025-12-09 10:14:58.666129+00 8202 0003-351#圆点 SPMX-20240815303363 \N \N \N 1 \N [{"file_id": "8d339dbb-e8fd-4aa9-a83b-e8fb71288014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87872f9cc47a4dbf9a427e9b857ae038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87872f9cc47a4dbf9a427e9b857ae038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87872f9cc47a4dbf9a427e9b857ae038.jpg", "file_size": 11470, "is_delete": false, "file_type": 1, "original_file_name": "0003-351#圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87872f9cc47a4dbf9a427e9b857ae038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87872f9cc47a4dbf9a427e9b857ae038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87872f9cc47a4dbf9a427e9b857ae038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87872f9cc47a4dbf9a427e9b857ae038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87872f9cc47a4dbf9a427e9b857ae038.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-eoI1vp9KT6DVoctrhILsfu0oYI=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.667644+00 2025-12-09 10:14:58.667648+00 8203 HT0101-28#紫色 SPMX-20240815303365 \N \N \N 1 \N [{"file_id": "03c79649-66a3-4a2e-8cdb-4f10498a4dfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "197127a088a549d7985055beb0abc024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "197127a088a549d7985055beb0abc024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "197127a088a549d7985055beb0abc024.jpg", "file_size": 17246, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-28#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197127a088a549d7985055beb0abc024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197127a088a549d7985055beb0abc024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197127a088a549d7985055beb0abc024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/197127a088a549d7985055beb0abc024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/197127a088a549d7985055beb0abc024.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_Oedh4Pjn4Fruj6ZZdSrFz7VlE=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.669173+00 2025-12-09 10:14:58.669177+00 8204 1071153#童14T SPMX-20240815303368 \N \N \N 1 \N [{"file_id": "cf6a7655-38b7-48f5-b489-7efa33cd6129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74dfda06303d4ab09ec707124941800d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74dfda06303d4ab09ec707124941800d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74dfda06303d4ab09ec707124941800d.jpg", "file_size": 10693, "is_delete": false, "file_type": 1, "original_file_name": "1071153#童14T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dfda06303d4ab09ec707124941800d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dfda06303d4ab09ec707124941800d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74dfda06303d4ab09ec707124941800d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74dfda06303d4ab09ec707124941800d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74dfda06303d4ab09ec707124941800d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0IjJiJQKanydohiCjqpbT0h-yY=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.670653+00 2025-12-09 10:14:58.670658+00 8205 FHXGPK-084- SPMX-20240815303361 \N \N \N 1 \N [{"file_id": "a50d727c-e8ce-45b1-b46a-ddde3901432f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23197bd5abf84878b79e3405e1b1dfec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23197bd5abf84878b79e3405e1b1dfec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23197bd5abf84878b79e3405e1b1dfec.jpg", "file_size": 36735, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23197bd5abf84878b79e3405e1b1dfec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23197bd5abf84878b79e3405e1b1dfec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23197bd5abf84878b79e3405e1b1dfec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23197bd5abf84878b79e3405e1b1dfec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23197bd5abf84878b79e3405e1b1dfec.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YMpYjBDTNFtil7qTJQAHN2LLFY=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.672153+00 2025-12-09 10:14:58.672158+00 8206 LJ1132#RC23 SPMX-20240815303366 \N \N \N 1 \N [{"file_id": "fd3919ac-0e05-4165-a4b8-3cfe1fb313af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f260442a6a54d8bb0f3810e86c8ad25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f260442a6a54d8bb0f3810e86c8ad25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f260442a6a54d8bb0f3810e86c8ad25.jpg", "file_size": 27430, "is_delete": false, "file_type": 1, "original_file_name": "LJ1132#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f260442a6a54d8bb0f3810e86c8ad25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f260442a6a54d8bb0f3810e86c8ad25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f260442a6a54d8bb0f3810e86c8ad25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f260442a6a54d8bb0f3810e86c8ad25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f260442a6a54d8bb0f3810e86c8ad25.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsWVo0zKpPVm3b5NJ7Xigd4A7X0=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.673647+00 2025-12-09 10:14:58.673651+00 8207 LZ1238#加大款C SPMX-20240815303367 \N \N \N 1 \N [{"file_id": "b15220b4-e41d-43cc-9c6a-4d30b3355e8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7eb6e80c67d4cc883f1d3083b1eff33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7eb6e80c67d4cc883f1d3083b1eff33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7eb6e80c67d4cc883f1d3083b1eff33.jpg", "file_size": 21910, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb6e80c67d4cc883f1d3083b1eff33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb6e80c67d4cc883f1d3083b1eff33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb6e80c67d4cc883f1d3083b1eff33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7eb6e80c67d4cc883f1d3083b1eff33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7eb6e80c67d4cc883f1d3083b1eff33.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wSjNntNNgkkQq4Gveu_NJTRsdg=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.67518+00 2025-12-09 10:14:58.675184+00 8208 JTSS045#咖 SPMX-20240815303364 \N \N \N 1 \N [{"file_id": "be8531d0-bf3e-46cf-8cad-0561614f942e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "691d721f7cb34c90bbac4064a491fd2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "691d721f7cb34c90bbac4064a491fd2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "691d721f7cb34c90bbac4064a491fd2c.jpg", "file_size": 17601, "is_delete": false, "file_type": 1, "original_file_name": "JTSS045#咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691d721f7cb34c90bbac4064a491fd2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691d721f7cb34c90bbac4064a491fd2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691d721f7cb34c90bbac4064a491fd2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/691d721f7cb34c90bbac4064a491fd2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/691d721f7cb34c90bbac4064a491fd2c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLegokuMgT_IDTGcvpa88lo0aWc=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.676683+00 2025-12-09 10:14:58.676687+00 8209 23-2112#-A5领子通用 SPMX-20240815303360 \N \N \N 1 \N [{"file_id": "506a432f-c0e1-4286-ac4b-3269c8b13023", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc31ca15dff43f0abe708f1edc8bb31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc31ca15dff43f0abe708f1edc8bb31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc31ca15dff43f0abe708f1edc8bb31.jpg", "file_size": 7753, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A5领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc31ca15dff43f0abe708f1edc8bb31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc31ca15dff43f0abe708f1edc8bb31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc31ca15dff43f0abe708f1edc8bb31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc31ca15dff43f0abe708f1edc8bb31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc31ca15dff43f0abe708f1edc8bb31.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDohlYXdIRQ_dz9Y4k6YvG2cdcs=", "createTime": "2024-08-15 14:46:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.678194+00 2025-12-09 10:14:58.678198+00 8210 C338#原版色 SPMX-20240815303375 \N \N \N 1 \N [{"file_id": "65d2181d-7662-4021-a155-79a792109997", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40194095d67442168eda804c27285a89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40194095d67442168eda804c27285a89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40194095d67442168eda804c27285a89.jpg", "file_size": 20344, "is_delete": false, "file_type": 1, "original_file_name": "C338#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40194095d67442168eda804c27285a89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40194095d67442168eda804c27285a89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40194095d67442168eda804c27285a89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40194095d67442168eda804c27285a89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40194095d67442168eda804c27285a89.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbcGkMTbz1sn4XWTS2E1DCka7qs=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.67966+00 2025-12-09 10:14:58.679664+00 8211 LJ1150#RC23 SPMX-20240815303378 \N \N \N 1 \N [{"file_id": "f282c1a9-4ba1-4bdf-a9e3-a2a9e2888c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67421a18bffc48e0a46a0cccbf1dcaef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67421a18bffc48e0a46a0cccbf1dcaef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67421a18bffc48e0a46a0cccbf1dcaef.jpg", "file_size": 13938, "is_delete": false, "file_type": 1, "original_file_name": "LJ1150#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67421a18bffc48e0a46a0cccbf1dcaef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67421a18bffc48e0a46a0cccbf1dcaef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67421a18bffc48e0a46a0cccbf1dcaef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67421a18bffc48e0a46a0cccbf1dcaef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67421a18bffc48e0a46a0cccbf1dcaef.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfGhpE1absfuIga9S1_sd_lS1TQ=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.681173+00 2025-12-09 10:14:58.681178+00 8212 FHXGPK-084-1 SPMX-20240815303380 \N \N \N 1 \N [{"file_id": "97807f9d-20e8-4fe2-8aea-447475239e17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c4c61289b22407c857289fe193aa354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c4c61289b22407c857289fe193aa354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c4c61289b22407c857289fe193aa354.jpg", "file_size": 35794, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4c61289b22407c857289fe193aa354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4c61289b22407c857289fe193aa354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4c61289b22407c857289fe193aa354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c4c61289b22407c857289fe193aa354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c4c61289b22407c857289fe193aa354.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYyvkCu4R7bW15PJPG4y4Q8b-9s=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.682656+00 2025-12-09 10:14:58.68266+00 8213 JTSS045#黑 SPMX-20240815303376 \N \N \N 1 \N [{"file_id": "2792533d-6de6-4f61-a829-65aebde0ea86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f92f7513ec02419a8275e7158fd27b25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f92f7513ec02419a8275e7158fd27b25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f92f7513ec02419a8275e7158fd27b25.jpg", "file_size": 19020, "is_delete": false, "file_type": 1, "original_file_name": "JTSS045#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92f7513ec02419a8275e7158fd27b25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92f7513ec02419a8275e7158fd27b25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92f7513ec02419a8275e7158fd27b25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f92f7513ec02419a8275e7158fd27b25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f92f7513ec02419a8275e7158fd27b25.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pm6S6SWJ8kohSbiXa3UX9B_A-E=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.684182+00 2025-12-09 10:14:58.684187+00 8214 LZ1238#加大款D SPMX-20240815303374 \N \N \N 1 \N [{"file_id": "8fe3de2b-2d78-4cb9-b465-845a1d6bc7ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec338d7ab9f740a681c3ff91dce0f40e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec338d7ab9f740a681c3ff91dce0f40e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec338d7ab9f740a681c3ff91dce0f40e.jpg", "file_size": 21932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec338d7ab9f740a681c3ff91dce0f40e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec338d7ab9f740a681c3ff91dce0f40e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec338d7ab9f740a681c3ff91dce0f40e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec338d7ab9f740a681c3ff91dce0f40e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec338d7ab9f740a681c3ff91dce0f40e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DpKuuABV8oWwjimlTJcWDp3qH1I=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.685676+00 2025-12-09 10:14:58.68568+00 8215 1071153#童2T+3T+4T+6T+8T SPMX-20240815303373 \N \N \N 1 \N [{"file_id": "d3f54f1d-acda-49c7-8a93-1012a435dbd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4aa373dd1d94defabd8ca66897bfbc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4aa373dd1d94defabd8ca66897bfbc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4aa373dd1d94defabd8ca66897bfbc3.jpg", "file_size": 15210, "is_delete": false, "file_type": 1, "original_file_name": "1071153#童2T+3T+4T+6T+8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4aa373dd1d94defabd8ca66897bfbc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4aa373dd1d94defabd8ca66897bfbc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4aa373dd1d94defabd8ca66897bfbc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4aa373dd1d94defabd8ca66897bfbc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4aa373dd1d94defabd8ca66897bfbc3.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yzuyHWuGmPJ-dSNib8o96Lkjyo4=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.687199+00 2025-12-09 10:14:58.687203+00 8216 HT0101-28#红色 SPMX-20240815303377 \N \N \N 1 \N [{"file_id": "78408aae-db2b-4b40-955a-28765b4ced57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b11e01c92832480785889f9fcf757f5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b11e01c92832480785889f9fcf757f5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b11e01c92832480785889f9fcf757f5f.jpg", "file_size": 14122, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-28#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11e01c92832480785889f9fcf757f5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11e01c92832480785889f9fcf757f5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11e01c92832480785889f9fcf757f5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b11e01c92832480785889f9fcf757f5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b11e01c92832480785889f9fcf757f5f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W5OMsyUssDbTUOyqFFl8DcJaCxQ=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.688675+00 2025-12-09 10:14:58.688679+00 8217 80309#乱花 SPMX-20240815303370 \N \N \N 1 \N [{"file_id": "0c647cdc-4b3f-453f-aa3d-15ee90857cc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "264e81fb7d8444bd96073013d97cfc4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "264e81fb7d8444bd96073013d97cfc4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "264e81fb7d8444bd96073013d97cfc4b.jpg", "file_size": 23746, "is_delete": false, "file_type": 1, "original_file_name": "80309#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264e81fb7d8444bd96073013d97cfc4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264e81fb7d8444bd96073013d97cfc4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264e81fb7d8444bd96073013d97cfc4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/264e81fb7d8444bd96073013d97cfc4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/264e81fb7d8444bd96073013d97cfc4b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UH20n_qylyAyY-cc5x1PeY29fs4=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.690205+00 2025-12-09 10:14:58.690209+00 8218 23-2112#-A6前后片3XL SPMX-20240815303371 \N \N \N 1 \N [{"file_id": "a289218c-d1f7-4de0-acf5-bc5538e1785c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6743398b9cfc4eefb08d46851ac8294c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6743398b9cfc4eefb08d46851ac8294c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6743398b9cfc4eefb08d46851ac8294c.jpg", "file_size": 9231, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6743398b9cfc4eefb08d46851ac8294c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6743398b9cfc4eefb08d46851ac8294c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6743398b9cfc4eefb08d46851ac8294c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6743398b9cfc4eefb08d46851ac8294c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6743398b9cfc4eefb08d46851ac8294c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03x7hBXmhcZMJD5MDK9rMLZLm3U=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.691685+00 2025-12-09 10:14:58.69169+00 8219 80309#匹布 SPMX-20240815303381 \N \N \N 1 \N [{"file_id": "26badc23-9190-4853-847f-396bf4d36449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87f6edfb235b4f8e86dd9221d8ed27ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87f6edfb235b4f8e86dd9221d8ed27ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87f6edfb235b4f8e86dd9221d8ed27ae.jpg", "file_size": 20127, "is_delete": false, "file_type": 1, "original_file_name": "80309#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f6edfb235b4f8e86dd9221d8ed27ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f6edfb235b4f8e86dd9221d8ed27ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f6edfb235b4f8e86dd9221d8ed27ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87f6edfb235b4f8e86dd9221d8ed27ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87f6edfb235b4f8e86dd9221d8ed27ae.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfSb57RRIH8nLCUqqBiXBH1BO2w=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.693216+00 2025-12-09 10:14:58.69322+00 8220 DL2-48G613#原版色S SPMX-20240815303379 \N \N \N 1 \N [{"file_id": "c98fc26c-7d17-4a58-9426-852a9c9a97f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "400250c879694071b564aae30d5904cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "400250c879694071b564aae30d5904cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "400250c879694071b564aae30d5904cb.jpg", "file_size": 18389, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#原版色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400250c879694071b564aae30d5904cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400250c879694071b564aae30d5904cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400250c879694071b564aae30d5904cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/400250c879694071b564aae30d5904cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/400250c879694071b564aae30d5904cb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3zUzh_7l16N70HMEGz0uYfPSCKM=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.694689+00 2025-12-09 10:14:58.694693+00 8221 DL2-48G613#原版色M SPMX-20240815303369 \N \N \N 1 \N [{"file_id": "cd5e308b-a5b8-4b64-b5fb-2f3cfe037f11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c1d5c8c186043e8bafb628320e65795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c1d5c8c186043e8bafb628320e65795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c1d5c8c186043e8bafb628320e65795.jpg", "file_size": 17825, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#原版色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1d5c8c186043e8bafb628320e65795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1d5c8c186043e8bafb628320e65795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1d5c8c186043e8bafb628320e65795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c1d5c8c186043e8bafb628320e65795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c1d5c8c186043e8bafb628320e65795.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOm8QlwMIsfFT0J3mt-IzoyZ7J4=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.696238+00 2025-12-09 10:14:58.696242+00 8222 0003-351#正身 SPMX-20240815303372 \N \N \N 1 \N [{"file_id": "32e4b088-9b89-4d06-a5e0-b9dc71de6d26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46e7aeb0d16949c7a46692e6dba1e025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46e7aeb0d16949c7a46692e6dba1e025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46e7aeb0d16949c7a46692e6dba1e025.jpg", "file_size": 15989, "is_delete": false, "file_type": 1, "original_file_name": "0003-351#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e7aeb0d16949c7a46692e6dba1e025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e7aeb0d16949c7a46692e6dba1e025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e7aeb0d16949c7a46692e6dba1e025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46e7aeb0d16949c7a46692e6dba1e025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46e7aeb0d16949c7a46692e6dba1e025.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWWKz8npEcY2q3XuxVQIMJqL9d4=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.697747+00 2025-12-09 10:14:58.697752+00 8223 DL2-48G613#原版色XL SPMX-20240815303388 \N \N \N 1 \N [{"file_id": "9f884564-0d87-4a21-b0cc-29d13b6810f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d07af345f77409fa87f0ce193f7bbc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d07af345f77409fa87f0ce193f7bbc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d07af345f77409fa87f0ce193f7bbc0.jpg", "file_size": 17754, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#原版色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d07af345f77409fa87f0ce193f7bbc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d07af345f77409fa87f0ce193f7bbc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d07af345f77409fa87f0ce193f7bbc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d07af345f77409fa87f0ce193f7bbc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d07af345f77409fa87f0ce193f7bbc0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hY_cMB7b-y5sL_rXqCPAZ55VPY=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.699256+00 2025-12-09 10:14:58.69926+00 8224 0003-353#WJC22 SPMX-20240815303394 \N \N \N 1 \N [{"file_id": "ca5b0d5d-7fda-4cf4-af02-79233e2c1349", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7fc9fca7286422298dd34ed7d5f2a79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7fc9fca7286422298dd34ed7d5f2a79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7fc9fca7286422298dd34ed7d5f2a79.jpg", "file_size": 22758, "is_delete": false, "file_type": 1, "original_file_name": "0003-353#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7fc9fca7286422298dd34ed7d5f2a79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7fc9fca7286422298dd34ed7d5f2a79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7fc9fca7286422298dd34ed7d5f2a79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7fc9fca7286422298dd34ed7d5f2a79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7fc9fca7286422298dd34ed7d5f2a79.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0RcKPYmLgOY7RdDlUWxDQznfeA=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.700756+00 2025-12-09 10:14:58.70076+00 8225 LZ1238#加大款F SPMX-20240815303396 \N \N \N 1 \N [{"file_id": "a88b1536-5339-4f8a-8f65-33c72de68d20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76d233f72b7c425cb1d6a70d06ded5f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76d233f72b7c425cb1d6a70d06ded5f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76d233f72b7c425cb1d6a70d06ded5f4.jpg", "file_size": 23943, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款F.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d233f72b7c425cb1d6a70d06ded5f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d233f72b7c425cb1d6a70d06ded5f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d233f72b7c425cb1d6a70d06ded5f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76d233f72b7c425cb1d6a70d06ded5f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76d233f72b7c425cb1d6a70d06ded5f4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unQIu5s5-3zDGhyVqChliq7XJn8=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.702277+00 2025-12-09 10:14:58.702282+00 8226 LZ1238#加大款E SPMX-20240815303385 \N \N \N 1 \N [{"file_id": "7f6cbecd-a48d-4076-9fc3-b6328a25a425", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0ee3646e0214232a15c7499444b925f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0ee3646e0214232a15c7499444b925f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0ee3646e0214232a15c7499444b925f.jpg", "file_size": 28002, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee3646e0214232a15c7499444b925f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee3646e0214232a15c7499444b925f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee3646e0214232a15c7499444b925f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0ee3646e0214232a15c7499444b925f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0ee3646e0214232a15c7499444b925f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DWlEowb2OciL--yzZEkTnxpll5w=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.703771+00 2025-12-09 10:14:58.703775+00 8227 LJ1166#LWQ15 SPMX-20240815303391 \N \N \N 1 \N [{"file_id": "2b30ced8-0340-4e51-a650-a23d9860fbab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7afb41030c854515b65641535dad5dea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7afb41030c854515b65641535dad5dea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7afb41030c854515b65641535dad5dea.jpg", "file_size": 24754, "is_delete": false, "file_type": 1, "original_file_name": "LJ1166#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afb41030c854515b65641535dad5dea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afb41030c854515b65641535dad5dea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afb41030c854515b65641535dad5dea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7afb41030c854515b65641535dad5dea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7afb41030c854515b65641535dad5dea.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rw1UAlfHbuz74PSlCdFzBFwocy8=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.705267+00 2025-12-09 10:14:58.705271+00 8228 23-2112#-A6袖子3XL SPMX-20240815303392 \N \N \N 1 \N [{"file_id": "bef83d23-979f-4cbb-843f-a1cf74268fe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21069a83b04a484484303733590c3395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21069a83b04a484484303733590c3395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21069a83b04a484484303733590c3395.jpg", "file_size": 7883, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21069a83b04a484484303733590c3395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21069a83b04a484484303733590c3395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21069a83b04a484484303733590c3395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21069a83b04a484484303733590c3395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21069a83b04a484484303733590c3395.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mq3cA-_2v_uUttdY9W5yGgPAScY=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.706789+00 2025-12-09 10:14:58.706794+00 8229 80309#小童 SPMX-20240815303393 \N \N \N 1 \N [{"file_id": "1c50fed1-70ad-4131-ba34-2e1dc49353ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f040e248c8a04e4a907bfd1fb8051c3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f040e248c8a04e4a907bfd1fb8051c3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f040e248c8a04e4a907bfd1fb8051c3b.jpg", "file_size": 29045, "is_delete": false, "file_type": 1, "original_file_name": "80309#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f040e248c8a04e4a907bfd1fb8051c3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f040e248c8a04e4a907bfd1fb8051c3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f040e248c8a04e4a907bfd1fb8051c3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f040e248c8a04e4a907bfd1fb8051c3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f040e248c8a04e4a907bfd1fb8051c3b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4C8Uz0Xt2HtFzqsJ9fpmRhoI8s=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.708293+00 2025-12-09 10:14:58.708297+00 8230 HT0101-28#绿色 SPMX-20240815303389 \N \N \N 1 \N [{"file_id": "d6eab57c-d85e-4bd0-bda8-83586e49881a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b471659cb3a4b6abe7e377630e69137.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b471659cb3a4b6abe7e377630e69137.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b471659cb3a4b6abe7e377630e69137.jpg", "file_size": 17101, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-28#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b471659cb3a4b6abe7e377630e69137.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b471659cb3a4b6abe7e377630e69137.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b471659cb3a4b6abe7e377630e69137.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b471659cb3a4b6abe7e377630e69137.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b471659cb3a4b6abe7e377630e69137.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAg3JGwWd-4PG_jQRxsUyZIVsTo=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.709791+00 2025-12-09 10:14:58.709796+00 8231 23-2112#-A6前后片4XL SPMX-20240815303382 \N \N \N 1 \N [{"file_id": "202e6438-d188-423f-8c74-b91b00aa9fbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fef915cf2494b00b3bc2083343b29ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fef915cf2494b00b3bc2083343b29ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fef915cf2494b00b3bc2083343b29ed.jpg", "file_size": 9674, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fef915cf2494b00b3bc2083343b29ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fef915cf2494b00b3bc2083343b29ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fef915cf2494b00b3bc2083343b29ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fef915cf2494b00b3bc2083343b29ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fef915cf2494b00b3bc2083343b29ed.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myEnAtST2XO1pmTPAEyuTZ1rH7Y=", "createTime": "2024-08-15 14:46:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.711299+00 2025-12-09 10:14:58.711303+00 8232 FHXGPK-084-2 SPMX-20240815303390 \N \N \N 1 \N [{"file_id": "52cbbbb5-f426-4002-9f7d-2a67a244e5b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df6063e965f94864bc5ae855638a05b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df6063e965f94864bc5ae855638a05b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df6063e965f94864bc5ae855638a05b8.jpg", "file_size": 37194, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6063e965f94864bc5ae855638a05b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6063e965f94864bc5ae855638a05b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6063e965f94864bc5ae855638a05b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df6063e965f94864bc5ae855638a05b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df6063e965f94864bc5ae855638a05b8.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:im1A9MA5egyHiVfYywNQ5zO8hsw=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.71288+00 2025-12-09 10:14:58.712885+00 8233 1071153#童8T SPMX-20240815303395 \N \N \N 1 \N [{"file_id": "480d56d2-3d3e-47e5-9596-7bfaa2dc8566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "492c10e781da4f79897fa6afc07b9d3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "492c10e781da4f79897fa6afc07b9d3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "492c10e781da4f79897fa6afc07b9d3f.jpg", "file_size": 14202, "is_delete": false, "file_type": 1, "original_file_name": "1071153#童8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492c10e781da4f79897fa6afc07b9d3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492c10e781da4f79897fa6afc07b9d3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492c10e781da4f79897fa6afc07b9d3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/492c10e781da4f79897fa6afc07b9d3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/492c10e781da4f79897fa6afc07b9d3f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YoGuGmvRXn3K3gqf_vASYrRjkQ=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.714437+00 2025-12-09 10:14:58.714442+00 8234 1071153#童5T SPMX-20240815303383 \N \N \N 1 \N [{"file_id": "b8ed89d2-777c-459b-a50e-6821bd2b8575", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9312890e1b024fba89edb33c4fc2ce13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9312890e1b024fba89edb33c4fc2ce13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9312890e1b024fba89edb33c4fc2ce13.jpg", "file_size": 10221, "is_delete": false, "file_type": 1, "original_file_name": "1071153#童5T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9312890e1b024fba89edb33c4fc2ce13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9312890e1b024fba89edb33c4fc2ce13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9312890e1b024fba89edb33c4fc2ce13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9312890e1b024fba89edb33c4fc2ce13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9312890e1b024fba89edb33c4fc2ce13.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsW43B4CkfQhm2vMS_U_QxlrKv8=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.715953+00 2025-12-09 10:14:58.715957+00 8235 0003-352#WJC22 SPMX-20240815303384 \N \N \N 1 \N [{"file_id": "e2744ae9-8b18-41d0-94ba-8298c3278ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b93f06a36cd4f1da0aee97bdccd1ab5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b93f06a36cd4f1da0aee97bdccd1ab5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b93f06a36cd4f1da0aee97bdccd1ab5.jpg", "file_size": 15862, "is_delete": false, "file_type": 1, "original_file_name": "0003-352#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b93f06a36cd4f1da0aee97bdccd1ab5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b93f06a36cd4f1da0aee97bdccd1ab5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b93f06a36cd4f1da0aee97bdccd1ab5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b93f06a36cd4f1da0aee97bdccd1ab5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b93f06a36cd4f1da0aee97bdccd1ab5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IeTU2MmVrUFiraZQ_65fULytag=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.717475+00 2025-12-09 10:14:58.71748+00 8236 C338#墨绿 SPMX-20240815303386 \N \N \N 1 \N [{"file_id": "c4c05293-bc75-4db2-be47-771d3ffc4d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d72406b34f2a409bbdbb2a59890b2044.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d72406b34f2a409bbdbb2a59890b2044.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d72406b34f2a409bbdbb2a59890b2044.jpg", "file_size": 23144, "is_delete": false, "file_type": 1, "original_file_name": "C338#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72406b34f2a409bbdbb2a59890b2044.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72406b34f2a409bbdbb2a59890b2044.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72406b34f2a409bbdbb2a59890b2044.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d72406b34f2a409bbdbb2a59890b2044.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d72406b34f2a409bbdbb2a59890b2044.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JE3Z9smx0pzsTx8FA6zfdc_Wnk8=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.719+00 2025-12-09 10:14:58.719004+00 8237 JTSS045FW#VS-D3 SPMX-20240815303387 \N \N \N 1 \N [{"file_id": "7d0ae9f0-b53b-47d6-a918-2828ec1eb0c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f04a86fd6284866a8f2e5081d91e38e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f04a86fd6284866a8f2e5081d91e38e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f04a86fd6284866a8f2e5081d91e38e.jpg", "file_size": 6182, "is_delete": false, "file_type": 1, "original_file_name": "JTSS045FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f04a86fd6284866a8f2e5081d91e38e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f04a86fd6284866a8f2e5081d91e38e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f04a86fd6284866a8f2e5081d91e38e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f04a86fd6284866a8f2e5081d91e38e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f04a86fd6284866a8f2e5081d91e38e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p1ShlVI75N13noKQDCg-YDAQioI=", "createTime": "2024-08-15 14:46:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.720502+00 2025-12-09 10:14:58.720507+00 8238 1071153#裤子 SPMX-20240815303400 \N \N \N 1 \N [{"file_id": "7d2fc26a-735b-42cd-b308-d2b53742e309", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785276ff5e094a0ba13367bb4db6ff7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785276ff5e094a0ba13367bb4db6ff7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785276ff5e094a0ba13367bb4db6ff7b.jpg", "file_size": 12419, "is_delete": false, "file_type": 1, "original_file_name": "1071153#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785276ff5e094a0ba13367bb4db6ff7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785276ff5e094a0ba13367bb4db6ff7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785276ff5e094a0ba13367bb4db6ff7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785276ff5e094a0ba13367bb4db6ff7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785276ff5e094a0ba13367bb4db6ff7b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVpRPHtdmxyMjSGETlFeU-ym_ac=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.722065+00 2025-12-09 10:14:58.722069+00 8239 C338#大白 SPMX-20240815303397 \N \N \N 1 \N [{"file_id": "51cd63ef-244a-4f02-b50c-6f2f490ebc66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "961fdd8232df41959144ed4dfc473931.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "961fdd8232df41959144ed4dfc473931.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "961fdd8232df41959144ed4dfc473931.jpg", "file_size": 20303, "is_delete": false, "file_type": 1, "original_file_name": "C338#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961fdd8232df41959144ed4dfc473931.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961fdd8232df41959144ed4dfc473931.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961fdd8232df41959144ed4dfc473931.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/961fdd8232df41959144ed4dfc473931.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/961fdd8232df41959144ed4dfc473931.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_DLkpLJjHkYzU1UalyIoeJJo3b8=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.723588+00 2025-12-09 10:14:58.723593+00 8240 LJ20093040602# SPMX-20240815303405 \N \N \N 1 \N [{"file_id": "8f650e80-784f-4665-9b85-70a55e0415f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3efc9e036e4946d497a74f6488bfc0b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3efc9e036e4946d497a74f6488bfc0b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3efc9e036e4946d497a74f6488bfc0b0.jpg", "file_size": 12179, "is_delete": false, "file_type": 1, "original_file_name": "LJ20093040602#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efc9e036e4946d497a74f6488bfc0b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efc9e036e4946d497a74f6488bfc0b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efc9e036e4946d497a74f6488bfc0b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3efc9e036e4946d497a74f6488bfc0b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3efc9e036e4946d497a74f6488bfc0b0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Zfby8Zv7Gj9r01_9SLmzDQCnfg=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.725098+00 2025-12-09 10:14:58.725103+00 8241 FHXGPK-084-3 SPMX-20240815303406 \N \N \N 1 \N [{"file_id": "f46f5da6-d73a-4721-8f53-4753e5a967f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ad3d80db3ed47e9bad923741cb1a027.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ad3d80db3ed47e9bad923741cb1a027.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ad3d80db3ed47e9bad923741cb1a027.jpg", "file_size": 36755, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad3d80db3ed47e9bad923741cb1a027.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad3d80db3ed47e9bad923741cb1a027.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad3d80db3ed47e9bad923741cb1a027.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ad3d80db3ed47e9bad923741cb1a027.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ad3d80db3ed47e9bad923741cb1a027.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nc8aI5kz3D6huLT6zzrflhV6IQ=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.726605+00 2025-12-09 10:14:58.726609+00 8242 80309#裤子 SPMX-20240815303403 \N \N \N 1 \N [{"file_id": "fb113c6e-f052-4360-a3ea-101415969170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4303ca0094204920bef42a28701527bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4303ca0094204920bef42a28701527bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4303ca0094204920bef42a28701527bb.jpg", "file_size": 22395, "is_delete": false, "file_type": 1, "original_file_name": "80309#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4303ca0094204920bef42a28701527bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4303ca0094204920bef42a28701527bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4303ca0094204920bef42a28701527bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4303ca0094204920bef42a28701527bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4303ca0094204920bef42a28701527bb.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DJx41M9eM92l-N92c3LPCroI5lA=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.728096+00 2025-12-09 10:14:58.7281+00 8243 LZ1238#加大款G SPMX-20240815303404 \N \N \N 1 \N [{"file_id": "a1beebfa-ef1f-4105-bf18-b992979abde8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1542e0ea5b814f82b7fcdc97032df6c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1542e0ea5b814f82b7fcdc97032df6c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1542e0ea5b814f82b7fcdc97032df6c6.jpg", "file_size": 28142, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款G.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1542e0ea5b814f82b7fcdc97032df6c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1542e0ea5b814f82b7fcdc97032df6c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1542e0ea5b814f82b7fcdc97032df6c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1542e0ea5b814f82b7fcdc97032df6c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1542e0ea5b814f82b7fcdc97032df6c6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95bj_Rt7v_JF8qzEQVVUZf_WvNQ=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.729639+00 2025-12-09 10:14:58.729644+00 8244 HT0101-29#WJC22 SPMX-20240815303399 \N \N \N 1 \N [{"file_id": "1d9166c9-b322-439f-b314-46a5c2fb7457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d011474b136434191ba4eff7e4f3a81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d011474b136434191ba4eff7e4f3a81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d011474b136434191ba4eff7e4f3a81.jpg", "file_size": 23313, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-29#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d011474b136434191ba4eff7e4f3a81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d011474b136434191ba4eff7e4f3a81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d011474b136434191ba4eff7e4f3a81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d011474b136434191ba4eff7e4f3a81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d011474b136434191ba4eff7e4f3a81.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xA4Fn1g1dXzXDYaNOCGTXzom5U0=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.731158+00 2025-12-09 10:14:58.731163+00 8245 23-2112#-A6袖子4XL SPMX-20240815303401 \N \N \N 1 \N [{"file_id": "663aca26-ed41-4389-920c-15dd17e43fa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db71057f238c4a6eb1aa14ab4958f782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db71057f238c4a6eb1aa14ab4958f782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db71057f238c4a6eb1aa14ab4958f782.jpg", "file_size": 7689, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71057f238c4a6eb1aa14ab4958f782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71057f238c4a6eb1aa14ab4958f782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71057f238c4a6eb1aa14ab4958f782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db71057f238c4a6eb1aa14ab4958f782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db71057f238c4a6eb1aa14ab4958f782.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MfWPRq-XJ-xj5vts4mEeE90TVw=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.732672+00 2025-12-09 10:14:58.732676+00 8246 JTSS046#白 SPMX-20240815303398 \N \N \N 1 \N [{"file_id": "c0d94cc7-c756-4437-ab99-3ba84e857920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d22591950a34bba97556a7f4e108d82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d22591950a34bba97556a7f4e108d82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d22591950a34bba97556a7f4e108d82.jpg", "file_size": 27698, "is_delete": false, "file_type": 1, "original_file_name": "JTSS046#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d22591950a34bba97556a7f4e108d82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d22591950a34bba97556a7f4e108d82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d22591950a34bba97556a7f4e108d82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d22591950a34bba97556a7f4e108d82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d22591950a34bba97556a7f4e108d82.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XU0bsC9f7etpgxeyYdNMMDI5kuE=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.734196+00 2025-12-09 10:14:58.7342+00 8247 DL2-48G613#大红L SPMX-20240815303402 \N \N \N 1 \N [{"file_id": "0430aa59-9f80-4e81-a98b-c904592bd4bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4963d246f5cf43ca986e6ed859f56757.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4963d246f5cf43ca986e6ed859f56757.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4963d246f5cf43ca986e6ed859f56757.jpg", "file_size": 17950, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#大红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4963d246f5cf43ca986e6ed859f56757.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4963d246f5cf43ca986e6ed859f56757.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4963d246f5cf43ca986e6ed859f56757.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4963d246f5cf43ca986e6ed859f56757.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4963d246f5cf43ca986e6ed859f56757.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vo31Tn7BAdhasM-nrhsLNNQYK8=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.735748+00 2025-12-09 10:14:58.735752+00 8248 C338#橘色右前片补片S SPMX-20240815303408 \N \N \N 1 \N [{"file_id": "554ccfc2-5c37-42d3-9f6a-ac40020f6f2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bd4740f209a40b4b2e819ca5f0bf537.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bd4740f209a40b4b2e819ca5f0bf537.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bd4740f209a40b4b2e819ca5f0bf537.jpg", "file_size": 17560, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色右前片补片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd4740f209a40b4b2e819ca5f0bf537.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd4740f209a40b4b2e819ca5f0bf537.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd4740f209a40b4b2e819ca5f0bf537.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bd4740f209a40b4b2e819ca5f0bf537.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bd4740f209a40b4b2e819ca5f0bf537.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weN20Vz26HacvV14gg4R-4dwIwA=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.737236+00 2025-12-09 10:14:58.73724+00 8249 803090#匹布 SPMX-20240815303414 \N \N \N 1 \N [{"file_id": "66b24987-5d71-4091-ba67-0f59d3ca2f22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3f01bacab0d438eae204eda6c72fde1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3f01bacab0d438eae204eda6c72fde1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3f01bacab0d438eae204eda6c72fde1.jpg", "file_size": 19256, "is_delete": false, "file_type": 1, "original_file_name": "803090#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f01bacab0d438eae204eda6c72fde1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f01bacab0d438eae204eda6c72fde1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f01bacab0d438eae204eda6c72fde1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3f01bacab0d438eae204eda6c72fde1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3f01bacab0d438eae204eda6c72fde1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:at0QHXez95O_tgQLqgdjOTki5rY=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.738731+00 2025-12-09 10:14:58.738736+00 8250 0003-355#WJC22 SPMX-20240815303418 \N \N \N 1 \N [{"file_id": "c06c03ea-29ca-4c73-b3ac-9022cdbfef18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb15a543633245fe8e4fbbeaac21e39d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb15a543633245fe8e4fbbeaac21e39d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb15a543633245fe8e4fbbeaac21e39d.jpg", "file_size": 18308, "is_delete": false, "file_type": 1, "original_file_name": "0003-355#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb15a543633245fe8e4fbbeaac21e39d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb15a543633245fe8e4fbbeaac21e39d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb15a543633245fe8e4fbbeaac21e39d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb15a543633245fe8e4fbbeaac21e39d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb15a543633245fe8e4fbbeaac21e39d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTw-5GudWmLjVhc-RB8A-k9SqqM=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.740252+00 2025-12-09 10:14:58.740256+00 8251 23-2112#-A6领子通用 SPMX-20240815303420 \N \N \N 1 \N [{"file_id": "e5833bfb-6ace-42fa-bd68-6aa99aefd392", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aed0484601b4442ad6d73a90a677438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aed0484601b4442ad6d73a90a677438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aed0484601b4442ad6d73a90a677438.jpg", "file_size": 9752, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aed0484601b4442ad6d73a90a677438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aed0484601b4442ad6d73a90a677438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aed0484601b4442ad6d73a90a677438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aed0484601b4442ad6d73a90a677438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aed0484601b4442ad6d73a90a677438.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqgALW6aYuKZMojqAGxzIT573Zg=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.741802+00 2025-12-09 10:14:58.741807+00 8252 JTSS046#粉 SPMX-20240815303409 \N \N \N 1 \N [{"file_id": "27454ad1-814f-4179-830f-a4a83c798b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f634cdce2994e72b85d889809343bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f634cdce2994e72b85d889809343bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f634cdce2994e72b85d889809343bbe.jpg", "file_size": 20626, "is_delete": false, "file_type": 1, "original_file_name": "JTSS046#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f634cdce2994e72b85d889809343bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f634cdce2994e72b85d889809343bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f634cdce2994e72b85d889809343bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f634cdce2994e72b85d889809343bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f634cdce2994e72b85d889809343bbe.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2xuAxZ-D3I3x5r2PVTyXL8HBkA=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.743318+00 2025-12-09 10:14:58.743323+00 8253 LJ20111140603#L SPMX-20240815303417 \N \N \N 1 \N [{"file_id": "5a22712a-996e-4e11-b33e-21007a2b86b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0811ee7e05db4de09a19e159f0f3305b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0811ee7e05db4de09a19e159f0f3305b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0811ee7e05db4de09a19e159f0f3305b.jpg", "file_size": 19640, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140603#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0811ee7e05db4de09a19e159f0f3305b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0811ee7e05db4de09a19e159f0f3305b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0811ee7e05db4de09a19e159f0f3305b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0811ee7e05db4de09a19e159f0f3305b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0811ee7e05db4de09a19e159f0f3305b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73cR6lZfRl0fP2SgpyUwVX8WS4k=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.74482+00 2025-12-09 10:14:58.744824+00 8254 1071326#净色 SPMX-20240815303411 \N \N \N 1 \N [{"file_id": "e302629f-2288-4cea-b6c4-79b7eced356f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a59644b577641efa403518319aa5581.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a59644b577641efa403518319aa5581.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a59644b577641efa403518319aa5581.jpg", "file_size": 9191, "is_delete": false, "file_type": 1, "original_file_name": "1071326#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a59644b577641efa403518319aa5581.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a59644b577641efa403518319aa5581.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a59644b577641efa403518319aa5581.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a59644b577641efa403518319aa5581.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a59644b577641efa403518319aa5581.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-hWI_wCd7_dCprFudz0ZUdD29Y=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.74634+00 2025-12-09 10:14:58.746344+00 8255 23-2112#-A6领口通用 SPMX-20240815303410 \N \N \N 1 \N [{"file_id": "37a56b3a-b03b-433d-982a-a7114b4fe51f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9074dc1e743643949c9018291ff072a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9074dc1e743643949c9018291ff072a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9074dc1e743643949c9018291ff072a0.jpg", "file_size": 7695, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A6领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9074dc1e743643949c9018291ff072a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9074dc1e743643949c9018291ff072a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9074dc1e743643949c9018291ff072a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9074dc1e743643949c9018291ff072a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9074dc1e743643949c9018291ff072a0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3f_P8zPOWpN9fNVvAI_Wl7_y1c=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.747886+00 2025-12-09 10:14:58.747891+00 8256 HT0101-3#WJC22 SPMX-20240815303413 \N \N \N 1 \N [{"file_id": "17add232-62c0-495a-aef2-708f71991e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f7b0afe1bd42fd98b486ee573725e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f7b0afe1bd42fd98b486ee573725e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f7b0afe1bd42fd98b486ee573725e4.jpg", "file_size": 22355, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f7b0afe1bd42fd98b486ee573725e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f7b0afe1bd42fd98b486ee573725e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f7b0afe1bd42fd98b486ee573725e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f7b0afe1bd42fd98b486ee573725e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f7b0afe1bd42fd98b486ee573725e4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5x4CXJIk6eSQsIjnlDBfmOZmChE=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.749403+00 2025-12-09 10:14:58.749408+00 8257 FHXGPK-084-4 SPMX-20240815303416 \N \N \N 1 \N [{"file_id": "6b13d02b-1c7f-43a8-a1b5-b590f10e9c19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59aee7e5d266461c9f244019e2076e0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59aee7e5d266461c9f244019e2076e0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59aee7e5d266461c9f244019e2076e0a.jpg", "file_size": 38153, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59aee7e5d266461c9f244019e2076e0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59aee7e5d266461c9f244019e2076e0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59aee7e5d266461c9f244019e2076e0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59aee7e5d266461c9f244019e2076e0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59aee7e5d266461c9f244019e2076e0a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcUiH8JK2kzTyoUuLdkepZXZ1ac=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.750913+00 2025-12-09 10:14:58.750917+00 8258 LZ1238#加大款H SPMX-20240815303415 \N \N \N 1 \N [{"file_id": "413dd560-0778-4b58-a16e-2d9e1a15658b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e464763c21d493c954069b7c4441fb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e464763c21d493c954069b7c4441fb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e464763c21d493c954069b7c4441fb9.jpg", "file_size": 19265, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e464763c21d493c954069b7c4441fb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e464763c21d493c954069b7c4441fb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e464763c21d493c954069b7c4441fb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e464763c21d493c954069b7c4441fb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e464763c21d493c954069b7c4441fb9.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PL0YccfJX6h8FxLbYgeo_vB2zQY=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.752411+00 2025-12-09 10:14:58.752415+00 8259 0003-354#WJC22 SPMX-20240815303407 \N \N \N 1 \N [{"file_id": "99db26fb-dacd-4794-a23e-42de59cb48c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b263b8772c54dd181f556ab96ab6f1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b263b8772c54dd181f556ab96ab6f1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b263b8772c54dd181f556ab96ab6f1d.jpg", "file_size": 13599, "is_delete": false, "file_type": 1, "original_file_name": "0003-354#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b263b8772c54dd181f556ab96ab6f1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b263b8772c54dd181f556ab96ab6f1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b263b8772c54dd181f556ab96ab6f1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b263b8772c54dd181f556ab96ab6f1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b263b8772c54dd181f556ab96ab6f1d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbq_xO_k3U9A2qBE9XFoxB2xCUE=", "createTime": "2024-08-15 14:46:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.753914+00 2025-12-09 10:14:58.753919+00 8260 DL2-48G613#大红M SPMX-20240815303412 \N \N \N 1 \N [{"file_id": "ae1403c0-f0ed-4e45-b7ad-f5130266db28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85c8696f210d4bd1878c798a2f86aca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85c8696f210d4bd1878c798a2f86aca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85c8696f210d4bd1878c798a2f86aca6.jpg", "file_size": 18229, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#大红M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c8696f210d4bd1878c798a2f86aca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c8696f210d4bd1878c798a2f86aca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c8696f210d4bd1878c798a2f86aca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85c8696f210d4bd1878c798a2f86aca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85c8696f210d4bd1878c798a2f86aca6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MiUQbXUN7-0lazyYbigFBkucRNE=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.75544+00 2025-12-09 10:14:58.755445+00 8261 JTSS046#紫 SPMX-20240815303419 \N \N \N 1 \N [{"file_id": "0125d7c2-d938-47df-bfd0-86fa79164f5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0def9ee52acc4cb7b4ebbe9fb3dab396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0def9ee52acc4cb7b4ebbe9fb3dab396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0def9ee52acc4cb7b4ebbe9fb3dab396.jpg", "file_size": 20215, "is_delete": false, "file_type": 1, "original_file_name": "JTSS046#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0def9ee52acc4cb7b4ebbe9fb3dab396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0def9ee52acc4cb7b4ebbe9fb3dab396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0def9ee52acc4cb7b4ebbe9fb3dab396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0def9ee52acc4cb7b4ebbe9fb3dab396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0def9ee52acc4cb7b4ebbe9fb3dab396.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QtbH_Vb0c0wkAfa2SQKv3btKH4=", "createTime": "2024-08-15 14:46:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.756943+00 2025-12-09 10:14:58.756947+00 8262 C338#橘色右前片补片XL SPMX-20240815303421 \N \N \N 1 \N [{"file_id": "944336ed-d762-4daa-899a-5b4cad830194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f669d2277b6f46189c89e6d365d8356f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f669d2277b6f46189c89e6d365d8356f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f669d2277b6f46189c89e6d365d8356f.jpg", "file_size": 17046, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色右前片补片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f669d2277b6f46189c89e6d365d8356f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f669d2277b6f46189c89e6d365d8356f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f669d2277b6f46189c89e6d365d8356f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f669d2277b6f46189c89e6d365d8356f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f669d2277b6f46189c89e6d365d8356f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8bpfRSB5rHejFTSN1YAPpei4pE=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.758449+00 2025-12-09 10:14:58.758453+00 8263 DL2-48G613#大红S SPMX-20240815303423 \N \N \N 1 \N [{"file_id": "ddc5bce4-4c84-4826-b8cc-1d7be1ef7928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19d2d4d6c4ab4abbb996a421362c26c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19d2d4d6c4ab4abbb996a421362c26c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19d2d4d6c4ab4abbb996a421362c26c1.jpg", "file_size": 17943, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#大红S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d2d4d6c4ab4abbb996a421362c26c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d2d4d6c4ab4abbb996a421362c26c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d2d4d6c4ab4abbb996a421362c26c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19d2d4d6c4ab4abbb996a421362c26c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19d2d4d6c4ab4abbb996a421362c26c1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6hBHFQblWQ-aEdQ3X0XCRKk7Izs=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.76002+00 2025-12-09 10:14:58.760025+00 8264 1071326#婴S+M+L+XL+2XL SPMX-20240815303432 \N \N \N 1 \N [{"file_id": "36c23ea8-3da5-4a53-a99f-c257fa084f33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de3c8049f4fe4a9b98edd8146ea3db29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de3c8049f4fe4a9b98edd8146ea3db29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de3c8049f4fe4a9b98edd8146ea3db29.jpg", "file_size": 16891, "is_delete": false, "file_type": 1, "original_file_name": "1071326#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3c8049f4fe4a9b98edd8146ea3db29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3c8049f4fe4a9b98edd8146ea3db29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3c8049f4fe4a9b98edd8146ea3db29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de3c8049f4fe4a9b98edd8146ea3db29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de3c8049f4fe4a9b98edd8146ea3db29.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3plyo0I3umcHb22-Z2dQC4zCO5Y=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.761549+00 2025-12-09 10:14:58.761553+00 8265 DL2-48G613#大红XL SPMX-20240815303433 \N \N \N 1 \N [{"file_id": "a0fd0140-7570-4f69-880d-78c5a6436b33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a06a29ad45e475a8258986d266d890a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a06a29ad45e475a8258986d266d890a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a06a29ad45e475a8258986d266d890a.jpg", "file_size": 17421, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#大红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a06a29ad45e475a8258986d266d890a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a06a29ad45e475a8258986d266d890a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a06a29ad45e475a8258986d266d890a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a06a29ad45e475a8258986d266d890a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a06a29ad45e475a8258986d266d890a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6vuZDUEnWDkgLboenO3DDzAgSc=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.763324+00 2025-12-09 10:14:58.763328+00 8266 LZ1238#加大款I SPMX-20240815303424 \N \N \N 1 \N [{"file_id": "9e4b72f8-5b1e-47f3-b028-193940bf8010", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e20d265968a4d78bd1edd495a8df0cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e20d265968a4d78bd1edd495a8df0cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e20d265968a4d78bd1edd495a8df0cc.jpg", "file_size": 26078, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款I.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20d265968a4d78bd1edd495a8df0cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20d265968a4d78bd1edd495a8df0cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20d265968a4d78bd1edd495a8df0cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e20d265968a4d78bd1edd495a8df0cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e20d265968a4d78bd1edd495a8df0cc.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mOtwAyiH7YwCqBE2LFdhcgpNfcI=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.764828+00 2025-12-09 10:14:58.764832+00 8267 0003-356#WJC22 SPMX-20240815303429 \N \N \N 1 \N [{"file_id": "31b73b5b-3bb4-46e4-90ab-682777f8fe3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1e21201131e4a33961235fab724e728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1e21201131e4a33961235fab724e728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1e21201131e4a33961235fab724e728.jpg", "file_size": 7966, "is_delete": false, "file_type": 1, "original_file_name": "0003-356#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e21201131e4a33961235fab724e728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e21201131e4a33961235fab724e728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e21201131e4a33961235fab724e728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1e21201131e4a33961235fab724e728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1e21201131e4a33961235fab724e728.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVCPzV6FoRR4s2VgaUUsSfMc7jE=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.766369+00 2025-12-09 10:14:58.766373+00 8268 80310#上衣 SPMX-20240815303426 \N \N \N 1 \N [{"file_id": "86f6afaa-7a83-4ec7-a39f-95feb69f4b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ea297a3f4c6462eb6823e898b67b4c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ea297a3f4c6462eb6823e898b67b4c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ea297a3f4c6462eb6823e898b67b4c7.jpg", "file_size": 12001, "is_delete": false, "file_type": 1, "original_file_name": "80310#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea297a3f4c6462eb6823e898b67b4c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea297a3f4c6462eb6823e898b67b4c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea297a3f4c6462eb6823e898b67b4c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ea297a3f4c6462eb6823e898b67b4c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ea297a3f4c6462eb6823e898b67b4c7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VcoQtVFGkkA_xwpJAMNbNLk8E_M=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.767923+00 2025-12-09 10:14:58.767927+00 8269 LZ1238#加大款J SPMX-20240815303435 \N \N \N 1 \N [{"file_id": "f9a27b4a-ef15-4e08-9643-8ebf5ba6cd48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fa64c57f0f44f4d990b306677b97d58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fa64c57f0f44f4d990b306677b97d58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fa64c57f0f44f4d990b306677b97d58.jpg", "file_size": 30338, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款J.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa64c57f0f44f4d990b306677b97d58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa64c57f0f44f4d990b306677b97d58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fa64c57f0f44f4d990b306677b97d58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fa64c57f0f44f4d990b306677b97d58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fa64c57f0f44f4d990b306677b97d58.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c-sDH8Id7rtZ-3e-ZRtiPnCR1kU=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.769444+00 2025-12-09 10:14:58.769448+00 8270 C338#橘色右裤子补片XL SPMX-20240815303434 \N \N \N 1 \N [{"file_id": "c833b3d0-10c3-4340-8ffc-107914fb51a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aa70997738a4965a6abc2efd6725fd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aa70997738a4965a6abc2efd6725fd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aa70997738a4965a6abc2efd6725fd5.jpg", "file_size": 21031, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色右裤子补片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa70997738a4965a6abc2efd6725fd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa70997738a4965a6abc2efd6725fd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aa70997738a4965a6abc2efd6725fd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aa70997738a4965a6abc2efd6725fd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aa70997738a4965a6abc2efd6725fd5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:13nni6BmMoDIuq6YyBLP-erjfY4=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.770978+00 2025-12-09 10:14:58.770982+00 8271 1071326#婴3XL SPMX-20240815303422 \N \N \N 1 \N [{"file_id": "0522f4c8-58e7-42f5-af5c-34f275f5266e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b9518c8171d47f1b90cf13cb4c24834.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b9518c8171d47f1b90cf13cb4c24834.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b9518c8171d47f1b90cf13cb4c24834.jpg", "file_size": 11420, "is_delete": false, "file_type": 1, "original_file_name": "1071326#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9518c8171d47f1b90cf13cb4c24834.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9518c8171d47f1b90cf13cb4c24834.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9518c8171d47f1b90cf13cb4c24834.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b9518c8171d47f1b90cf13cb4c24834.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b9518c8171d47f1b90cf13cb4c24834.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiwfVKER9qUg1Pkdb78dRN384Ns=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.772497+00 2025-12-09 10:14:58.772501+00 8272 LJ20111140603#M SPMX-20240815303427 \N \N \N 1 \N [{"file_id": "fa813108-034e-4268-b8d3-5c6f7c58e95e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d650ad3c1de746ca8141bd5c2b6c300c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d650ad3c1de746ca8141bd5c2b6c300c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d650ad3c1de746ca8141bd5c2b6c300c.jpg", "file_size": 19234, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140603#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d650ad3c1de746ca8141bd5c2b6c300c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d650ad3c1de746ca8141bd5c2b6c300c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d650ad3c1de746ca8141bd5c2b6c300c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d650ad3c1de746ca8141bd5c2b6c300c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d650ad3c1de746ca8141bd5c2b6c300c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mlur1Mnwce5vwT6y9aNnMwath_U=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.774004+00 2025-12-09 10:14:58.774008+00 8273 FHXGPK-084-5 SPMX-20240815303428 \N \N \N 1 \N [{"file_id": "9fc324b1-e793-4709-9f85-3bf15e436cf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "541c9c1e8ca048bcb136274eae119421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "541c9c1e8ca048bcb136274eae119421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "541c9c1e8ca048bcb136274eae119421.jpg", "file_size": 36221, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-084-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541c9c1e8ca048bcb136274eae119421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541c9c1e8ca048bcb136274eae119421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541c9c1e8ca048bcb136274eae119421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/541c9c1e8ca048bcb136274eae119421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/541c9c1e8ca048bcb136274eae119421.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGrUeAdOhzreNxDoy_m-Gg-CEPM=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.775482+00 2025-12-09 10:14:58.775486+00 8274 HT0101-30#WJC22 SPMX-20240815303425 \N \N \N 1 \N [{"file_id": "8fe1a423-b893-4e14-9ed3-dc5c7f7c7801", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e40587b51bb47158ac2355e223a0173.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e40587b51bb47158ac2355e223a0173.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e40587b51bb47158ac2355e223a0173.jpg", "file_size": 17259, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-30#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e40587b51bb47158ac2355e223a0173.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e40587b51bb47158ac2355e223a0173.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e40587b51bb47158ac2355e223a0173.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e40587b51bb47158ac2355e223a0173.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e40587b51bb47158ac2355e223a0173.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8qEmN6VSwpxaeA8eDJTwGRD4rCE=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.783018+00 2025-12-09 10:14:58.783022+00 8279 LZ1238#加大款K SPMX-20240815303444 \N \N \N 1 \N [{"file_id": "388234d0-1a8e-47d8-9195-c6df282a00b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc74847882e42bc8a83ec06e4e0b10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc74847882e42bc8a83ec06e4e0b10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc74847882e42bc8a83ec06e4e0b10a.jpg", "file_size": 24840, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款K.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc74847882e42bc8a83ec06e4e0b10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc74847882e42bc8a83ec06e4e0b10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc74847882e42bc8a83ec06e4e0b10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc74847882e42bc8a83ec06e4e0b10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc74847882e42bc8a83ec06e4e0b10a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5M8SPYTP10J60NVDCYEuzif6x4=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.776988+00 2025-12-09 10:14:58.776993+00 8275 23-2112#-A7#领口通用 SPMX-20240815303430 \N \N \N 1 \N [{"file_id": "f17f53c1-9648-41f9-b126-97b83d59f406", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c20b04f37724bcab439a3475bee0a33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c20b04f37724bcab439a3475bee0a33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c20b04f37724bcab439a3475bee0a33.jpg", "file_size": 8541, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7#领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c20b04f37724bcab439a3475bee0a33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c20b04f37724bcab439a3475bee0a33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c20b04f37724bcab439a3475bee0a33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c20b04f37724bcab439a3475bee0a33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c20b04f37724bcab439a3475bee0a33.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hx33a9_HFav3UifmOvCBfxzE-JI=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.778492+00 2025-12-09 10:14:58.778496+00 8276 JTSS046FW#VS-D3 SPMX-20240815303431 \N \N \N 1 \N [{"file_id": "214dee88-d16d-4245-9173-f0c4fa4baed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57e42799d31d449ca73ebf1a29299531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57e42799d31d449ca73ebf1a29299531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57e42799d31d449ca73ebf1a29299531.jpg", "file_size": 6958, "is_delete": false, "file_type": 1, "original_file_name": "JTSS046FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e42799d31d449ca73ebf1a29299531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e42799d31d449ca73ebf1a29299531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e42799d31d449ca73ebf1a29299531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57e42799d31d449ca73ebf1a29299531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57e42799d31d449ca73ebf1a29299531.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvBaYgLBnG3FmKuRM-kmacHEnQ8=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.780002+00 2025-12-09 10:14:58.780006+00 8277 HT0101-31#WJC22 SPMX-20240815303437 \N \N \N 1 \N [{"file_id": "c3033d14-f83a-4a0b-9f26-0e4268cdf1d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3386d94a3a584213982d81f47fd79694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3386d94a3a584213982d81f47fd79694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3386d94a3a584213982d81f47fd79694.jpg", "file_size": 13413, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-31#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3386d94a3a584213982d81f47fd79694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3386d94a3a584213982d81f47fd79694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3386d94a3a584213982d81f47fd79694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3386d94a3a584213982d81f47fd79694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3386d94a3a584213982d81f47fd79694.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOoEqCiP7ObaDYrkFTn19WtA4d8=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.781506+00 2025-12-09 10:14:58.781511+00 8278 80310#乱花 SPMX-20240815303436 \N \N \N 1 \N [{"file_id": "2de78994-601a-4240-b130-6b3387b5c773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fb881ba773140e48de09bf444211a02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fb881ba773140e48de09bf444211a02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fb881ba773140e48de09bf444211a02.jpg", "file_size": 6821, "is_delete": false, "file_type": 1, "original_file_name": "80310#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb881ba773140e48de09bf444211a02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb881ba773140e48de09bf444211a02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fb881ba773140e48de09bf444211a02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fb881ba773140e48de09bf444211a02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fb881ba773140e48de09bf444211a02.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYX6CzjzTeNQYTr8lRSzi3LSzPs=", "createTime": "2024-08-15 14:46:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.784515+00 2025-12-09 10:14:58.78452+00 8280 0003-357#粉色 SPMX-20240815303439 \N \N \N 1 \N [{"file_id": "41ae47de-0007-402d-8433-7de1cb093465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80ad3f7f27184149889d6cafe24887e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80ad3f7f27184149889d6cafe24887e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80ad3f7f27184149889d6cafe24887e2.jpg", "file_size": 13611, "is_delete": false, "file_type": 1, "original_file_name": "0003-357#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ad3f7f27184149889d6cafe24887e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ad3f7f27184149889d6cafe24887e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ad3f7f27184149889d6cafe24887e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80ad3f7f27184149889d6cafe24887e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80ad3f7f27184149889d6cafe24887e2.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9g0KTb6DyaSzU3ttfsolgry2Ec=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.786073+00 2025-12-09 10:14:58.786076+00 8281 DL2-48G613#宝蓝L SPMX-20240815303446 \N \N \N 1 \N [{"file_id": "88423c2f-c609-4615-9a64-899f8e869f69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48c9db3fb30e4650956abefb325e6409.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48c9db3fb30e4650956abefb325e6409.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48c9db3fb30e4650956abefb325e6409.jpg", "file_size": 18093, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#宝蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c9db3fb30e4650956abefb325e6409.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c9db3fb30e4650956abefb325e6409.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c9db3fb30e4650956abefb325e6409.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48c9db3fb30e4650956abefb325e6409.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48c9db3fb30e4650956abefb325e6409.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ovD9rkakJDJRHZJCqz8U-X2T5Fc=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.787589+00 2025-12-09 10:14:58.787593+00 8282 C338#橘色补片-右片 SPMX-20240815303445 \N \N \N 1 \N [{"file_id": "fc7449ed-5b6e-4143-8808-1df401e5f3de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3649b449ebe42b88114b4e0853b0475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3649b449ebe42b88114b4e0853b0475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3649b449ebe42b88114b4e0853b0475.jpg", "file_size": 16361, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片-右片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3649b449ebe42b88114b4e0853b0475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3649b449ebe42b88114b4e0853b0475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3649b449ebe42b88114b4e0853b0475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3649b449ebe42b88114b4e0853b0475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3649b449ebe42b88114b4e0853b0475.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MyyXaw3Qs6f1-MO0xdCxbNOLxLo=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.789102+00 2025-12-09 10:14:58.789106+00 8283 80310#裤子 SPMX-20240815303447 \N \N \N 1 \N [{"file_id": "225fdbce-fc9a-4dd3-812d-0f56afdc77d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0204e2e66f9b4706b26d7a4f687c33da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0204e2e66f9b4706b26d7a4f687c33da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0204e2e66f9b4706b26d7a4f687c33da.jpg", "file_size": 13560, "is_delete": false, "file_type": 1, "original_file_name": "80310#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0204e2e66f9b4706b26d7a4f687c33da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0204e2e66f9b4706b26d7a4f687c33da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0204e2e66f9b4706b26d7a4f687c33da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0204e2e66f9b4706b26d7a4f687c33da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0204e2e66f9b4706b26d7a4f687c33da.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ILfK9EC7C6ONmPwfI7QFUJNxNg=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.792167+00 2025-12-09 10:14:58.792172+00 8285 FHXGPK-085-1 SPMX-20240815303440 \N \N \N 1 \N [{"file_id": "3e3f5168-54fa-4f03-bf28-5bb7c4e3405e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7b62ecb4d0c42c594cf7113baccbc63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7b62ecb4d0c42c594cf7113baccbc63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7b62ecb4d0c42c594cf7113baccbc63.jpg", "file_size": 38075, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-085-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b62ecb4d0c42c594cf7113baccbc63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b62ecb4d0c42c594cf7113baccbc63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b62ecb4d0c42c594cf7113baccbc63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7b62ecb4d0c42c594cf7113baccbc63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7b62ecb4d0c42c594cf7113baccbc63.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MAAnGn-iXKxAjZVtoD_8aYljzCo=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.790617+00 2025-12-09 10:14:58.790622+00 8284 1071326#男3XL+女S+女M SPMX-20240815303442 \N \N \N 1 \N [{"file_id": "f80733af-0a77-489d-9db6-d416fbe316bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d89d710015854266aa3a993d520ffb3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d89d710015854266aa3a993d520ffb3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d89d710015854266aa3a993d520ffb3a.jpg", "file_size": 15482, "is_delete": false, "file_type": 1, "original_file_name": "1071326#男3XL+女S+女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d710015854266aa3a993d520ffb3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d710015854266aa3a993d520ffb3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d710015854266aa3a993d520ffb3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d89d710015854266aa3a993d520ffb3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d89d710015854266aa3a993d520ffb3a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StGsNqSkSfPBXtw0DjPJ_Rk09us=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.795614+00 2025-12-09 10:14:58.795619+00 8286 23-2112#-A7前后片3XL SPMX-20240815303443 \N \N \N 1 \N [{"file_id": "1591135e-907a-4f1f-afe0-5c691a085d50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b35049acdc8c4f7498351df04453b899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b35049acdc8c4f7498351df04453b899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b35049acdc8c4f7498351df04453b899.jpg", "file_size": 9963, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35049acdc8c4f7498351df04453b899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35049acdc8c4f7498351df04453b899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35049acdc8c4f7498351df04453b899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b35049acdc8c4f7498351df04453b899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b35049acdc8c4f7498351df04453b899.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sb6Yh-IUjtQ6w5apwV6_AtxEziA=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.475201+00 2025-12-09 10:15:37.475206+00 16792 85034#14码 SPMX-20240815312014 \N \N \N 1 \N [{"file_id": "f21901ab-72ab-4775-b3e6-9ee026721676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bad6e45c1bd4afc9c8b323934fce69e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bad6e45c1bd4afc9c8b323934fce69e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bad6e45c1bd4afc9c8b323934fce69e.jpg", "file_size": 17082, "is_delete": false, "file_type": 1, "original_file_name": "85034#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bad6e45c1bd4afc9c8b323934fce69e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bad6e45c1bd4afc9c8b323934fce69e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bad6e45c1bd4afc9c8b323934fce69e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bad6e45c1bd4afc9c8b323934fce69e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bad6e45c1bd4afc9c8b323934fce69e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Do5C6Mqm5TyW4bm_noUCmRiy63c=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.797163+00 2025-12-09 10:14:58.797168+00 8287 LJ20111140603#S SPMX-20240815303438 \N \N \N 1 \N [{"file_id": "5da3e155-30f3-4f2d-9a0e-62d43e6d7c69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c463447ea264f748f914a1e4aef0e4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c463447ea264f748f914a1e4aef0e4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c463447ea264f748f914a1e4aef0e4a.jpg", "file_size": 19372, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140603#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c463447ea264f748f914a1e4aef0e4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c463447ea264f748f914a1e4aef0e4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c463447ea264f748f914a1e4aef0e4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c463447ea264f748f914a1e4aef0e4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c463447ea264f748f914a1e4aef0e4a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pl5MSFXWl_JX89LaKCkDcCwcW-4=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.798671+00 2025-12-09 10:14:58.798676+00 8288 HT0101-32#WJC22 SPMX-20240815303448 \N \N \N 1 \N [{"file_id": "d20fa64e-37f7-4e33-90ea-bfe5874f3a9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18075123f3a04579adc202ad13e3cef5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18075123f3a04579adc202ad13e3cef5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18075123f3a04579adc202ad13e3cef5.jpg", "file_size": 25625, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-32#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18075123f3a04579adc202ad13e3cef5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18075123f3a04579adc202ad13e3cef5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18075123f3a04579adc202ad13e3cef5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18075123f3a04579adc202ad13e3cef5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18075123f3a04579adc202ad13e3cef5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfX7rEVdAkSHehkcq9DXg3dqmt4=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.80017+00 2025-12-09 10:14:58.800174+00 8289 0003-357#蓝色 SPMX-20240815303449 \N \N \N 1 \N [{"file_id": "8ad629f1-dba0-442d-9f0d-144d0b2738b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca18466052b946eaa9b0f3400efdb914.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca18466052b946eaa9b0f3400efdb914.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca18466052b946eaa9b0f3400efdb914.jpg", "file_size": 12393, "is_delete": false, "file_type": 1, "original_file_name": "0003-357#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18466052b946eaa9b0f3400efdb914.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18466052b946eaa9b0f3400efdb914.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18466052b946eaa9b0f3400efdb914.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca18466052b946eaa9b0f3400efdb914.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca18466052b946eaa9b0f3400efdb914.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3o56SfnIT_Ssc3Z0IyFrBlBEtg8=", "createTime": "2024-08-15 14:46:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.801676+00 2025-12-09 10:14:58.801681+00 8290 JTSS047#粉 SPMX-20240815303450 \N \N \N 1 \N [{"file_id": "c84af0c8-41d1-48dd-a79d-66a806ab28b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a573b1576f24e4a98bdd19d5a63d1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a573b1576f24e4a98bdd19d5a63d1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a573b1576f24e4a98bdd19d5a63d1dd.jpg", "file_size": 8211, "is_delete": false, "file_type": 1, "original_file_name": "JTSS047#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a573b1576f24e4a98bdd19d5a63d1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a573b1576f24e4a98bdd19d5a63d1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a573b1576f24e4a98bdd19d5a63d1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a573b1576f24e4a98bdd19d5a63d1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a573b1576f24e4a98bdd19d5a63d1dd.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05icTxVWIj0vLPWQIcia_H01hLU=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.803196+00 2025-12-09 10:14:58.8032+00 8291 LZ1238#加大款L SPMX-20240815303455 \N \N \N 1 \N [{"file_id": "dc1263c0-ded8-42a6-974a-27fc59737dca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "374b1e35ee9e42d39fbf5760fe4a529f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "374b1e35ee9e42d39fbf5760fe4a529f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "374b1e35ee9e42d39fbf5760fe4a529f.jpg", "file_size": 26065, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374b1e35ee9e42d39fbf5760fe4a529f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374b1e35ee9e42d39fbf5760fe4a529f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374b1e35ee9e42d39fbf5760fe4a529f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/374b1e35ee9e42d39fbf5760fe4a529f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/374b1e35ee9e42d39fbf5760fe4a529f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEiI-wANlRlA2v2y7qLq8_I_zbY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.804713+00 2025-12-09 10:14:58.804718+00 8292 LZ1238#加大款M SPMX-20240815303465 \N \N \N 1 \N [{"file_id": "18d00175-e04f-4cc1-9c36-3556bb0ec1b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "592aee450e3c49778ffda03e394573e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "592aee450e3c49778ffda03e394573e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "592aee450e3c49778ffda03e394573e9.jpg", "file_size": 25642, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592aee450e3c49778ffda03e394573e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592aee450e3c49778ffda03e394573e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592aee450e3c49778ffda03e394573e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/592aee450e3c49778ffda03e394573e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/592aee450e3c49778ffda03e394573e9.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2XuGQJtSr9wheYuM-c1Yse8JtM=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.80623+00 2025-12-09 10:14:58.806235+00 8293 0003-357#黄色 SPMX-20240815303460 \N \N \N 1 \N [{"file_id": "441649bf-8fc4-4b7d-8d0e-1e1f3cc26693", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1110f688b474e27ba9d7d399d5f516f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1110f688b474e27ba9d7d399d5f516f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1110f688b474e27ba9d7d399d5f516f.jpg", "file_size": 9137, "is_delete": false, "file_type": 1, "original_file_name": "0003-357#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1110f688b474e27ba9d7d399d5f516f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1110f688b474e27ba9d7d399d5f516f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1110f688b474e27ba9d7d399d5f516f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1110f688b474e27ba9d7d399d5f516f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1110f688b474e27ba9d7d399d5f516f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDHaJpaJT8iW2KYh0tr8R4j_twY=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.807748+00 2025-12-09 10:14:58.807752+00 8294 JTSS047#蓝绿 SPMX-20240815303461 \N \N \N 1 \N [{"file_id": "ebdb90dd-f8c0-4b67-914a-884caf37e59b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee87aaa953074a229467258584ce29f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee87aaa953074a229467258584ce29f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee87aaa953074a229467258584ce29f7.jpg", "file_size": 10049, "is_delete": false, "file_type": 1, "original_file_name": "JTSS047#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87aaa953074a229467258584ce29f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87aaa953074a229467258584ce29f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87aaa953074a229467258584ce29f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee87aaa953074a229467258584ce29f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee87aaa953074a229467258584ce29f7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ydi9nqhs91FfG1m6DcOPowCMdkw=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.809244+00 2025-12-09 10:14:58.809248+00 8295 LJ20111140604#L SPMX-20240815303462 \N \N \N 1 \N [{"file_id": "5ef93ea6-73a3-49bf-b450-06b2ca07f5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4df77c9c4de745d2ab1b3ae944ab1b1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4df77c9c4de745d2ab1b3ae944ab1b1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4df77c9c4de745d2ab1b3ae944ab1b1c.jpg", "file_size": 6959, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df77c9c4de745d2ab1b3ae944ab1b1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df77c9c4de745d2ab1b3ae944ab1b1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df77c9c4de745d2ab1b3ae944ab1b1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4df77c9c4de745d2ab1b3ae944ab1b1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4df77c9c4de745d2ab1b3ae944ab1b1c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJMSHPtzNZ0kvS962RAwS_AKBc8=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.810772+00 2025-12-09 10:14:58.810777+00 8296 FHXGPK-085-2 SPMX-20240815303453 \N \N \N 1 \N [{"file_id": "7b535b62-4904-485f-9198-90340e296c6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b2a0cd5986d4d38874b9433c5829915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b2a0cd5986d4d38874b9433c5829915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b2a0cd5986d4d38874b9433c5829915.jpg", "file_size": 39565, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-085-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2a0cd5986d4d38874b9433c5829915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2a0cd5986d4d38874b9433c5829915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2a0cd5986d4d38874b9433c5829915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b2a0cd5986d4d38874b9433c5829915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b2a0cd5986d4d38874b9433c5829915.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFQq6TJ2QFwVbUa7It8NWA3mRy8=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.812349+00 2025-12-09 10:14:58.812355+00 8297 C338#橘色补片S右袖 SPMX-20240815303456 \N \N \N 1 \N [{"file_id": "ad3523a7-ee24-4438-ab16-5738e138c29a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ca05decff3e49099d94b9ed3a218ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ca05decff3e49099d94b9ed3a218ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ca05decff3e49099d94b9ed3a218ce0.jpg", "file_size": 14622, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片S右袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca05decff3e49099d94b9ed3a218ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca05decff3e49099d94b9ed3a218ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca05decff3e49099d94b9ed3a218ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ca05decff3e49099d94b9ed3a218ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ca05decff3e49099d94b9ed3a218ce0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAt4uRgUmcE2yWFrWSCs_0J6Idc=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.813931+00 2025-12-09 10:14:58.813936+00 8298 1071326#男S+M SPMX-20240815303463 \N \N \N 1 \N [{"file_id": "64128a0b-19b4-484c-a8ae-7173be927f6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "167bea2aa7f04717a3963e5bdaf1b700.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "167bea2aa7f04717a3963e5bdaf1b700.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "167bea2aa7f04717a3963e5bdaf1b700.jpg", "file_size": 15026, "is_delete": false, "file_type": 1, "original_file_name": "1071326#男S+M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167bea2aa7f04717a3963e5bdaf1b700.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167bea2aa7f04717a3963e5bdaf1b700.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167bea2aa7f04717a3963e5bdaf1b700.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/167bea2aa7f04717a3963e5bdaf1b700.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/167bea2aa7f04717a3963e5bdaf1b700.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uGGIKoEzwNsCyhZ_SG8LrsihfJ4=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.815728+00 2025-12-09 10:14:58.815732+00 8299 FHXGPK-085-3 SPMX-20240815303464 \N \N \N 1 \N [{"file_id": "55e20a05-44d9-4239-842e-9d715ff7627a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a7919a4b094fc78714982b34b08179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a7919a4b094fc78714982b34b08179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a7919a4b094fc78714982b34b08179.jpg", "file_size": 39747, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-085-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a7919a4b094fc78714982b34b08179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a7919a4b094fc78714982b34b08179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a7919a4b094fc78714982b34b08179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a7919a4b094fc78714982b34b08179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a7919a4b094fc78714982b34b08179.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DdTR1lw33yz4AcLwzDIw7SnYrJg=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.817281+00 2025-12-09 10:14:58.817285+00 8300 23-2112#-A7袖子3XL SPMX-20240815303467 \N \N \N 1 \N [{"file_id": "c007bd37-05f5-4672-8b48-48be27aec791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c28370efe88646e8a3cd0b93d64423d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c28370efe88646e8a3cd0b93d64423d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c28370efe88646e8a3cd0b93d64423d2.jpg", "file_size": 9451, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28370efe88646e8a3cd0b93d64423d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28370efe88646e8a3cd0b93d64423d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28370efe88646e8a3cd0b93d64423d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c28370efe88646e8a3cd0b93d64423d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c28370efe88646e8a3cd0b93d64423d2.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtO7P2A8jtvDtCtj0389pePApag=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.818813+00 2025-12-09 10:14:58.818817+00 8301 80311#上衣 SPMX-20240815303457 \N \N \N 1 \N [{"file_id": "897581f3-2086-4dd6-87ea-c9564d424cc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2458b9985944d7b24efcf5480ad335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2458b9985944d7b24efcf5480ad335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2458b9985944d7b24efcf5480ad335.jpg", "file_size": 12011, "is_delete": false, "file_type": 1, "original_file_name": "80311#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2458b9985944d7b24efcf5480ad335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2458b9985944d7b24efcf5480ad335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2458b9985944d7b24efcf5480ad335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2458b9985944d7b24efcf5480ad335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2458b9985944d7b24efcf5480ad335.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rXykf8-HM-vuKDR8Fbn1k5Lomc=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.820329+00 2025-12-09 10:14:58.820333+00 8302 HT0101-33#WJC22 SPMX-20240815303459 \N \N \N 1 \N [{"file_id": "32b9ccba-c71f-4c79-8046-725198e6c03f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19c419f882784bfb8b0e812d3d94f3b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19c419f882784bfb8b0e812d3d94f3b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19c419f882784bfb8b0e812d3d94f3b1.jpg", "file_size": 20354, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-33#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c419f882784bfb8b0e812d3d94f3b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c419f882784bfb8b0e812d3d94f3b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c419f882784bfb8b0e812d3d94f3b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19c419f882784bfb8b0e812d3d94f3b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19c419f882784bfb8b0e812d3d94f3b1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5j_2Nlyg51_4OMd-QhSxVcnSTh0=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.821892+00 2025-12-09 10:14:58.821897+00 8303 C338#橘色补片S后片 SPMX-20240815303466 \N \N \N 1 \N [{"file_id": "21c32daf-2543-4246-aa9a-85e357d3f1fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7381dae771b845a4ac0b13a17549cf7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7381dae771b845a4ac0b13a17549cf7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7381dae771b845a4ac0b13a17549cf7e.jpg", "file_size": 16220, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片S后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7381dae771b845a4ac0b13a17549cf7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7381dae771b845a4ac0b13a17549cf7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7381dae771b845a4ac0b13a17549cf7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7381dae771b845a4ac0b13a17549cf7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7381dae771b845a4ac0b13a17549cf7e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IV_KLGHZoCuG4kRAVpmy-ctsjZ8=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.8239+00 2025-12-09 10:14:58.823905+00 8304 LJ20111140603#XL SPMX-20240815303451 \N \N \N 1 \N [{"file_id": "39f1f114-f503-45df-930c-84bf4e5dcc79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f12956195ae443491cd24179f7a3369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f12956195ae443491cd24179f7a3369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f12956195ae443491cd24179f7a3369.jpg", "file_size": 19868, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140603#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f12956195ae443491cd24179f7a3369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f12956195ae443491cd24179f7a3369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f12956195ae443491cd24179f7a3369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f12956195ae443491cd24179f7a3369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f12956195ae443491cd24179f7a3369.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvW7qeKBok1sx6Cok-RbwL8_gYw=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.825624+00 2025-12-09 10:14:58.825628+00 8305 DL2-48G613#宝蓝M SPMX-20240815303458 \N \N \N 1 \N [{"file_id": "ee4a10a4-bc47-4a4b-bda7-5062d45918a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a237d82d90fc4bfba29272ad0fc63663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a237d82d90fc4bfba29272ad0fc63663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a237d82d90fc4bfba29272ad0fc63663.jpg", "file_size": 19060, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#宝蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a237d82d90fc4bfba29272ad0fc63663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a237d82d90fc4bfba29272ad0fc63663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a237d82d90fc4bfba29272ad0fc63663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a237d82d90fc4bfba29272ad0fc63663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a237d82d90fc4bfba29272ad0fc63663.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H18SC5DhxkQURyQ5o4udY0DW39g=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.82736+00 2025-12-09 10:14:58.827364+00 8306 1071326#男L+女L+女XL SPMX-20240815303452 \N \N \N 1 \N [{"file_id": "87b0a972-6243-402b-bee4-da0fbb863f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab44cb5bf1234b16a678e00c3e288d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab44cb5bf1234b16a678e00c3e288d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab44cb5bf1234b16a678e00c3e288d31.jpg", "file_size": 11022, "is_delete": false, "file_type": 1, "original_file_name": "1071326#男L+女L+女XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab44cb5bf1234b16a678e00c3e288d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab44cb5bf1234b16a678e00c3e288d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab44cb5bf1234b16a678e00c3e288d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab44cb5bf1234b16a678e00c3e288d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab44cb5bf1234b16a678e00c3e288d31.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi2AeNO_8h0n4foAAy1OHBpUqHM=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.829068+00 2025-12-09 10:14:58.829073+00 8307 23-2112#-A7前后片4XL SPMX-20240815303454 \N \N \N 1 \N [{"file_id": "d4c853b2-9ba2-4ca9-963c-ee364c49e8d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e493197349ea48a18aa9d5d15d173481.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e493197349ea48a18aa9d5d15d173481.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e493197349ea48a18aa9d5d15d173481.jpg", "file_size": 9844, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e493197349ea48a18aa9d5d15d173481.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e493197349ea48a18aa9d5d15d173481.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e493197349ea48a18aa9d5d15d173481.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e493197349ea48a18aa9d5d15d173481.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e493197349ea48a18aa9d5d15d173481.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFfjTD3xyPc1sakFtEmvGhZKFr0=", "createTime": "2024-08-15 14:46:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.831024+00 2025-12-09 10:14:58.831029+00 8308 80311#中童 SPMX-20240815303468 \N \N \N 1 \N [{"file_id": "5dbd4c52-c82a-4555-8511-7f6f0b8cf517", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c33487bb7a24044827013f49de8a407.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c33487bb7a24044827013f49de8a407.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c33487bb7a24044827013f49de8a407.jpg", "file_size": 25780, "is_delete": false, "file_type": 1, "original_file_name": "80311#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33487bb7a24044827013f49de8a407.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33487bb7a24044827013f49de8a407.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33487bb7a24044827013f49de8a407.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c33487bb7a24044827013f49de8a407.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c33487bb7a24044827013f49de8a407.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtsUZxSXwbBrh95Y-f9BHS1YJmM=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.832966+00 2025-12-09 10:14:58.832971+00 8309 23-2112#-A7袖子4XL SPMX-20240815303476 \N \N \N 1 \N [{"file_id": "5429f269-f72d-47ac-98d5-33ccb78ad0e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98abfadd9c8a432c86ea285994e4a964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98abfadd9c8a432c86ea285994e4a964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98abfadd9c8a432c86ea285994e4a964.jpg", "file_size": 9336, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98abfadd9c8a432c86ea285994e4a964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98abfadd9c8a432c86ea285994e4a964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98abfadd9c8a432c86ea285994e4a964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98abfadd9c8a432c86ea285994e4a964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98abfadd9c8a432c86ea285994e4a964.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BlN0avQYxZDsyvs_UmnrCOd57t4=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.834669+00 2025-12-09 10:14:58.834674+00 8310 80311#乱花 SPMX-20240815303478 \N \N \N 1 \N [{"file_id": "4e18b334-6e22-49e3-b8fe-d9e7b73ab80b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ac10b879f0645c6987bfb553647026d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ac10b879f0645c6987bfb553647026d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ac10b879f0645c6987bfb553647026d.jpg", "file_size": 7002, "is_delete": false, "file_type": 1, "original_file_name": "80311#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac10b879f0645c6987bfb553647026d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac10b879f0645c6987bfb553647026d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ac10b879f0645c6987bfb553647026d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ac10b879f0645c6987bfb553647026d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ac10b879f0645c6987bfb553647026d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjjf4jNEBvE1XrEvtc_2Myzv8Ew=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.836386+00 2025-12-09 10:14:58.836391+00 8311 LJ20111140604#M SPMX-20240815303474 \N \N \N 1 \N [{"file_id": "c012f538-c718-46ea-8317-4cfd3762a7c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73eacdb88af1423ebf6fc82de9037241.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73eacdb88af1423ebf6fc82de9037241.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73eacdb88af1423ebf6fc82de9037241.jpg", "file_size": 7482, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73eacdb88af1423ebf6fc82de9037241.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73eacdb88af1423ebf6fc82de9037241.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73eacdb88af1423ebf6fc82de9037241.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73eacdb88af1423ebf6fc82de9037241.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73eacdb88af1423ebf6fc82de9037241.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WE25o6Lnl-sP8HXEiaLph_LAZ2o=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.838142+00 2025-12-09 10:14:58.838146+00 8312 C338#橘色补片S左袖 SPMX-20240815303479 \N \N \N 1 \N [{"file_id": "5d11eca5-7ee1-4bd1-9679-a4d15ff1254e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0e880fea9554fc7aca7a5bed4385c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0e880fea9554fc7aca7a5bed4385c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0e880fea9554fc7aca7a5bed4385c72.jpg", "file_size": 14869, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片S左袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e880fea9554fc7aca7a5bed4385c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e880fea9554fc7aca7a5bed4385c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e880fea9554fc7aca7a5bed4385c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0e880fea9554fc7aca7a5bed4385c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0e880fea9554fc7aca7a5bed4385c72.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tV6q_Gk5K5BvAMFWCVuIuAmnRBg=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.840369+00 2025-12-09 10:14:58.840374+00 8313 JTSS048#22号色 SPMX-20240815303482 \N \N \N 1 \N [{"file_id": "266200ac-f84b-422d-8fe1-0d3ec6828293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c673898b3c42b684f28486d862db22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c673898b3c42b684f28486d862db22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c673898b3c42b684f28486d862db22.jpg", "file_size": 15348, "is_delete": false, "file_type": 1, "original_file_name": "JTSS048#22号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c673898b3c42b684f28486d862db22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c673898b3c42b684f28486d862db22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c673898b3c42b684f28486d862db22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c673898b3c42b684f28486d862db22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c673898b3c42b684f28486d862db22.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ciQgRNNwHn8YEze90g7qCpjuJ8=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.842351+00 2025-12-09 10:14:58.842356+00 8314 0003-358#WJC22 SPMX-20240815303471 \N \N \N 1 \N [{"file_id": "0575c1bc-3371-4079-afbc-7a4ff399c785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65797eb1e493401fba5425c187b24e29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65797eb1e493401fba5425c187b24e29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65797eb1e493401fba5425c187b24e29.jpg", "file_size": 19986, "is_delete": false, "file_type": 1, "original_file_name": "0003-358#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65797eb1e493401fba5425c187b24e29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65797eb1e493401fba5425c187b24e29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65797eb1e493401fba5425c187b24e29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65797eb1e493401fba5425c187b24e29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65797eb1e493401fba5425c187b24e29.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9npYHxW_9GtEHAnX_b7wZ6qziD8=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.844572+00 2025-12-09 10:14:58.844576+00 8315 LZ1238#加大款N SPMX-20240815303477 \N \N \N 1 \N [{"file_id": "3f134bbe-7434-4583-87dc-60fa97a4fa70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ae5cdee6e09445aae0651232eea9fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ae5cdee6e09445aae0651232eea9fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ae5cdee6e09445aae0651232eea9fd9.jpg", "file_size": 28671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款N.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae5cdee6e09445aae0651232eea9fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae5cdee6e09445aae0651232eea9fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae5cdee6e09445aae0651232eea9fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ae5cdee6e09445aae0651232eea9fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ae5cdee6e09445aae0651232eea9fd9.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLZFYzWfW-gfFBZ5fo6MqoCI5rc=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.846586+00 2025-12-09 10:14:58.846591+00 8316 0003-359#WJC22 SPMX-20240815303481 \N \N \N 1 \N [{"file_id": "73666a24-795c-40a2-99ed-53e94943c72a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "323559a70f854f5ea100f854bda8f58b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "323559a70f854f5ea100f854bda8f58b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "323559a70f854f5ea100f854bda8f58b.jpg", "file_size": 15375, "is_delete": false, "file_type": 1, "original_file_name": "0003-359#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323559a70f854f5ea100f854bda8f58b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323559a70f854f5ea100f854bda8f58b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323559a70f854f5ea100f854bda8f58b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/323559a70f854f5ea100f854bda8f58b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/323559a70f854f5ea100f854bda8f58b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-C_yo8W_pdr29eiJtNbkxEPOG_8=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.848608+00 2025-12-09 10:14:58.848613+00 8317 1071326#男XL+男2XL+女2XL+女3XL+童10T+12T SPMX-20240815303473 \N \N \N 1 \N [{"file_id": "2822503d-c971-42be-b9b6-94edd68f0095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fac64c66ad3e496697adeb260c7aa3bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fac64c66ad3e496697adeb260c7aa3bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fac64c66ad3e496697adeb260c7aa3bd.jpg", "file_size": 16251, "is_delete": false, "file_type": 1, "original_file_name": "1071326#男XL+男2XL+女2XL+女3XL+童10T+12T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac64c66ad3e496697adeb260c7aa3bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac64c66ad3e496697adeb260c7aa3bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac64c66ad3e496697adeb260c7aa3bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fac64c66ad3e496697adeb260c7aa3bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fac64c66ad3e496697adeb260c7aa3bd.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pwwY8u4RW0-Z_iTfgC_q5CvScC4=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.850636+00 2025-12-09 10:14:58.850641+00 8318 DL2-48G613#宝蓝XL SPMX-20240815303480 \N \N \N 1 \N [{"file_id": "9154740f-8cd8-4d39-a369-fda6ca91a5d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "860177a74bed4e388394a8bb7cdd3334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "860177a74bed4e388394a8bb7cdd3334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "860177a74bed4e388394a8bb7cdd3334.jpg", "file_size": 18333, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#宝蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860177a74bed4e388394a8bb7cdd3334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860177a74bed4e388394a8bb7cdd3334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860177a74bed4e388394a8bb7cdd3334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/860177a74bed4e388394a8bb7cdd3334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/860177a74bed4e388394a8bb7cdd3334.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ALXICoeVbGcnAwKyiz0KLIc3Lk=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.852732+00 2025-12-09 10:14:58.852737+00 8319 1071326#童14T SPMX-20240815303483 \N \N \N 1 \N [{"file_id": "5d9a3de2-7ec1-4ccd-a375-ee0db6facf20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c976aaea1a084d62ba215ed934396c22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c976aaea1a084d62ba215ed934396c22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c976aaea1a084d62ba215ed934396c22.jpg", "file_size": 10375, "is_delete": false, "file_type": 1, "original_file_name": "1071326#童14T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c976aaea1a084d62ba215ed934396c22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c976aaea1a084d62ba215ed934396c22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c976aaea1a084d62ba215ed934396c22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c976aaea1a084d62ba215ed934396c22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c976aaea1a084d62ba215ed934396c22.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYEOC01Jy06y8HjOUILr0BfzP20=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.854725+00 2025-12-09 10:14:58.85473+00 8320 FHXGPK-085-4 SPMX-20240815303475 \N \N \N 1 \N [{"file_id": "7507ebfb-3846-4bf7-aa55-ac3487ffe866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cc0b4ec6fe1450ab0f082335b2239aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cc0b4ec6fe1450ab0f082335b2239aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cc0b4ec6fe1450ab0f082335b2239aa.jpg", "file_size": 36093, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-085-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cc0b4ec6fe1450ab0f082335b2239aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cc0b4ec6fe1450ab0f082335b2239aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cc0b4ec6fe1450ab0f082335b2239aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cc0b4ec6fe1450ab0f082335b2239aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cc0b4ec6fe1450ab0f082335b2239aa.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W1FsTEBqikg1l83r34ize7TyMXA=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.856425+00 2025-12-09 10:14:58.85643+00 8321 DL2-48G613#宝蓝S SPMX-20240815303469 \N \N \N 1 \N [{"file_id": "a7138e4c-6ebf-4745-b081-59e7895438af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fa6142c42e64b799bf92662be4748f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fa6142c42e64b799bf92662be4748f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fa6142c42e64b799bf92662be4748f0.jpg", "file_size": 18837, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#宝蓝S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa6142c42e64b799bf92662be4748f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa6142c42e64b799bf92662be4748f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa6142c42e64b799bf92662be4748f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fa6142c42e64b799bf92662be4748f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fa6142c42e64b799bf92662be4748f0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sg7LKaZl1XaV-9JA7E1-vFVt-3Q=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.858381+00 2025-12-09 10:14:58.858386+00 8322 HT0101-34#WJC22 SPMX-20240815303470 \N \N \N 1 \N [{"file_id": "6590d1f9-a4ba-4190-bb50-2ba5dda30f5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef2b5ce6894447c48d06c1f01aa5eef8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef2b5ce6894447c48d06c1f01aa5eef8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef2b5ce6894447c48d06c1f01aa5eef8.jpg", "file_size": 14449, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-34#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2b5ce6894447c48d06c1f01aa5eef8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2b5ce6894447c48d06c1f01aa5eef8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2b5ce6894447c48d06c1f01aa5eef8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef2b5ce6894447c48d06c1f01aa5eef8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef2b5ce6894447c48d06c1f01aa5eef8.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Udxue36tizyt41PEwzKVmrkho4U=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.860336+00 2025-12-09 10:14:58.860341+00 8323 JTSS047FW#VS-D3 SPMX-20240815303472 \N \N \N 1 \N [{"file_id": "9d82099c-b614-4c15-bd6f-4ee7a7b502ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce96268baf0646d29989734fc95378ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce96268baf0646d29989734fc95378ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce96268baf0646d29989734fc95378ee.jpg", "file_size": 25424, "is_delete": false, "file_type": 1, "original_file_name": "JTSS047FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce96268baf0646d29989734fc95378ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce96268baf0646d29989734fc95378ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce96268baf0646d29989734fc95378ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce96268baf0646d29989734fc95378ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce96268baf0646d29989734fc95378ee.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNcmefjPlVNsUXurU2mAA1lrItQ=", "createTime": "2024-08-15 14:46:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.862317+00 2025-12-09 10:14:58.862322+00 8324 LZ1238#加大款Y SPMX-20240815303497 \N \N \N 1 \N [{"file_id": "1030d4f3-f6da-4ad1-addd-2ce8664b2d44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195510a4935c42d8933c997c0bb1d879.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195510a4935c42d8933c997c0bb1d879.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195510a4935c42d8933c997c0bb1d879.jpg", "file_size": 23682, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款Y.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195510a4935c42d8933c997c0bb1d879.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195510a4935c42d8933c997c0bb1d879.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195510a4935c42d8933c997c0bb1d879.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195510a4935c42d8933c997c0bb1d879.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195510a4935c42d8933c997c0bb1d879.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JfRpi8yfvY9njccgSBS6kVPeaVc=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.864262+00 2025-12-09 10:14:58.864267+00 8325 HT0101-34A#WJC22 SPMX-20240815303484 \N \N \N 1 \N [{"file_id": "90468060-f696-4e50-9658-74b0f513dfa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b47704710e24e948c64de4de94f9258.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b47704710e24e948c64de4de94f9258.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b47704710e24e948c64de4de94f9258.jpg", "file_size": 22570, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-34A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b47704710e24e948c64de4de94f9258.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b47704710e24e948c64de4de94f9258.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b47704710e24e948c64de4de94f9258.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b47704710e24e948c64de4de94f9258.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b47704710e24e948c64de4de94f9258.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6dfUe9DS7Sg9vdYEBEoXJCMbtQ=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.866224+00 2025-12-09 10:14:58.86623+00 8326 DL2-48G613#彩蓝L SPMX-20240815303491 \N \N \N 1 \N [{"file_id": "9b1773e9-e1ac-46b9-b12f-80ab9106bc9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f871d7b544d4cb3bf5a3009cc78046d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f871d7b544d4cb3bf5a3009cc78046d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f871d7b544d4cb3bf5a3009cc78046d.jpg", "file_size": 18247, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f871d7b544d4cb3bf5a3009cc78046d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f871d7b544d4cb3bf5a3009cc78046d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f871d7b544d4cb3bf5a3009cc78046d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f871d7b544d4cb3bf5a3009cc78046d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f871d7b544d4cb3bf5a3009cc78046d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tWaKrazsUZJmjWahEzY9XepfGV4=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.868001+00 2025-12-09 10:14:58.868006+00 8327 FHXGPK-085-5 SPMX-20240815303488 \N \N \N 1 \N [{"file_id": "ad99c964-5288-4c0f-9b36-3ca9a491532b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "405ae24ebaa94c3391599ca2ba02b119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "405ae24ebaa94c3391599ca2ba02b119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "405ae24ebaa94c3391599ca2ba02b119.jpg", "file_size": 35400, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-085-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405ae24ebaa94c3391599ca2ba02b119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405ae24ebaa94c3391599ca2ba02b119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/405ae24ebaa94c3391599ca2ba02b119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/405ae24ebaa94c3391599ca2ba02b119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/405ae24ebaa94c3391599ca2ba02b119.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDhJA8i0Tk3UsnSDFu8mV2EF5uk=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.869789+00 2025-12-09 10:14:58.869794+00 8328 1071326#童2T+3T+4T+6T+8T SPMX-20240815303495 \N \N \N 1 \N [{"file_id": "6b433888-6c8a-4bcf-8f78-0ec0e615015c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7e719e970534e3a9945183007cc3933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7e719e970534e3a9945183007cc3933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7e719e970534e3a9945183007cc3933.jpg", "file_size": 13853, "is_delete": false, "file_type": 1, "original_file_name": "1071326#童2T+3T+4T+6T+8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e719e970534e3a9945183007cc3933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e719e970534e3a9945183007cc3933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7e719e970534e3a9945183007cc3933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7e719e970534e3a9945183007cc3933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7e719e970534e3a9945183007cc3933.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILGzbkWzrqBiNL0Ori4UgydOHHA=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.871516+00 2025-12-09 10:14:58.871521+00 8329 LJ20111140604#S SPMX-20240815303485 \N \N \N 1 \N [{"file_id": "3a751cda-82ee-43a9-ab56-a57a5c025495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47278d5b2e5d457aa32b38ba9adb05ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47278d5b2e5d457aa32b38ba9adb05ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47278d5b2e5d457aa32b38ba9adb05ff.jpg", "file_size": 7113, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47278d5b2e5d457aa32b38ba9adb05ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47278d5b2e5d457aa32b38ba9adb05ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47278d5b2e5d457aa32b38ba9adb05ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47278d5b2e5d457aa32b38ba9adb05ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47278d5b2e5d457aa32b38ba9adb05ff.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmxVflOnUYLGoUDEl2d8yVBdN08=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.873468+00 2025-12-09 10:14:58.873473+00 8330 0003-35FWE#白色 SPMX-20240815303492 \N \N \N 1 \N [{"file_id": "1341f38d-9912-4962-bf3e-e59797d548e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0eee394222f4b9faa7a76e99b0c24de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0eee394222f4b9faa7a76e99b0c24de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0eee394222f4b9faa7a76e99b0c24de.jpg", "file_size": 9462, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0eee394222f4b9faa7a76e99b0c24de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0eee394222f4b9faa7a76e99b0c24de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0eee394222f4b9faa7a76e99b0c24de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0eee394222f4b9faa7a76e99b0c24de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0eee394222f4b9faa7a76e99b0c24de.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7eqsf9FHGpvbdQRbxSJmWKOuOgU=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.875415+00 2025-12-09 10:14:58.87542+00 8331 HT0101-35#WJC22 SPMX-20240815303494 \N \N \N 1 \N [{"file_id": "62821345-2cfa-4ab8-9167-953b7a70b2d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09b8a3b5d69249fd81d568a37e404bad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09b8a3b5d69249fd81d568a37e404bad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09b8a3b5d69249fd81d568a37e404bad.jpg", "file_size": 13414, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-35#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b8a3b5d69249fd81d568a37e404bad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b8a3b5d69249fd81d568a37e404bad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b8a3b5d69249fd81d568a37e404bad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09b8a3b5d69249fd81d568a37e404bad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09b8a3b5d69249fd81d568a37e404bad.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UVaw0NFJkQ6x3OUn-X_ZUsc0p5s=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.877364+00 2025-12-09 10:14:58.877369+00 8332 23-2112#-A7领口通用 SPMX-20240815303487 \N \N \N 1 \N [{"file_id": "00c99f0c-638d-4f0c-acd1-b50bfd087450", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09de28b3d661434cbb4c701404b2e2a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09de28b3d661434cbb4c701404b2e2a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09de28b3d661434cbb4c701404b2e2a4.jpg", "file_size": 7944, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09de28b3d661434cbb4c701404b2e2a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09de28b3d661434cbb4c701404b2e2a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09de28b3d661434cbb4c701404b2e2a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09de28b3d661434cbb4c701404b2e2a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09de28b3d661434cbb4c701404b2e2a4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bLzDnIXuzYuwCtHrk7RnW8fEGCc=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.879362+00 2025-12-09 10:14:58.879367+00 8333 LZ1238#加大款X SPMX-20240815303486 \N \N \N 1 \N [{"file_id": "0bf256a0-e85a-4515-bd60-685a27132e26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "139b87358c514c1eb2d27c5b7080e4a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "139b87358c514c1eb2d27c5b7080e4a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "139b87358c514c1eb2d27c5b7080e4a6.jpg", "file_size": 24693, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款X.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139b87358c514c1eb2d27c5b7080e4a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139b87358c514c1eb2d27c5b7080e4a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/139b87358c514c1eb2d27c5b7080e4a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/139b87358c514c1eb2d27c5b7080e4a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/139b87358c514c1eb2d27c5b7080e4a6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bs1ZmhXjNP_dcalTVAUxmbSPyWo=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.881337+00 2025-12-09 10:14:58.881342+00 8334 80311#匹布 SPMX-20240815303489 \N \N \N 1 \N [{"file_id": "08504af8-6c2c-4f70-ac58-58f230aa97c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "685cfe63e5c2458d99e731451f887baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "685cfe63e5c2458d99e731451f887baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "685cfe63e5c2458d99e731451f887baa.jpg", "file_size": 17198, "is_delete": false, "file_type": 1, "original_file_name": "80311#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685cfe63e5c2458d99e731451f887baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685cfe63e5c2458d99e731451f887baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685cfe63e5c2458d99e731451f887baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/685cfe63e5c2458d99e731451f887baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/685cfe63e5c2458d99e731451f887baa.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Cy_s_vu-XHKlm08WL2jJocObO4=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.883032+00 2025-12-09 10:14:58.883037+00 8335 C338#橘色补片S裤子前片 SPMX-20240815303490 \N \N \N 1 \N [{"file_id": "9ca8d06c-1d9c-4320-92e6-e6d5ee9183a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df6a146117e3415abc31a9ff85b37afa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df6a146117e3415abc31a9ff85b37afa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df6a146117e3415abc31a9ff85b37afa.jpg", "file_size": 19132, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片S裤子前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6a146117e3415abc31a9ff85b37afa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6a146117e3415abc31a9ff85b37afa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df6a146117e3415abc31a9ff85b37afa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df6a146117e3415abc31a9ff85b37afa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df6a146117e3415abc31a9ff85b37afa.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwFfll5VeVffGmly3ZPaqhupFf8=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.884776+00 2025-12-09 10:14:58.884781+00 8336 JTSS048#32号色 SPMX-20240815303493 \N \N \N 1 \N [{"file_id": "796063f9-16cd-4deb-91ef-c9f4bcba9f0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cebf9945c25e41a592609eda9b610244.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cebf9945c25e41a592609eda9b610244.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cebf9945c25e41a592609eda9b610244.jpg", "file_size": 14769, "is_delete": false, "file_type": 1, "original_file_name": "JTSS048#32号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebf9945c25e41a592609eda9b610244.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebf9945c25e41a592609eda9b610244.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cebf9945c25e41a592609eda9b610244.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cebf9945c25e41a592609eda9b610244.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cebf9945c25e41a592609eda9b610244.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:24BmoyEhFG-K9HDvfgkYBECjoYo=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.886563+00 2025-12-09 10:14:58.886568+00 8337 LJ20111140604#XL SPMX-20240815303496 \N \N \N 1 \N [{"file_id": "7a89a9ee-f570-4d91-95e4-666082a56b56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "928d533d782243e497a702b41aefece5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "928d533d782243e497a702b41aefece5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "928d533d782243e497a702b41aefece5.jpg", "file_size": 7243, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928d533d782243e497a702b41aefece5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928d533d782243e497a702b41aefece5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928d533d782243e497a702b41aefece5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/928d533d782243e497a702b41aefece5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/928d533d782243e497a702b41aefece5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0ic0zNEnGKIqHTPL5yGUyxgUiA=", "createTime": "2024-08-15 14:46:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.888505+00 2025-12-09 10:14:58.88851+00 8338 23-2112#-A7领子通用 SPMX-20240815303508 \N \N \N 1 \N [{"file_id": "47022a9a-a9e8-4d30-b915-426b15a12945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e494787b25e470789209e667732708c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e494787b25e470789209e667732708c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e494787b25e470789209e667732708c.jpg", "file_size": 9211, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e494787b25e470789209e667732708c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e494787b25e470789209e667732708c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e494787b25e470789209e667732708c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e494787b25e470789209e667732708c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e494787b25e470789209e667732708c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hp0x9TFoi6PIY75Sc-yKBvmDb2Q=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.890438+00 2025-12-09 10:14:58.890443+00 8339 LZ1238#加大款Z SPMX-20240815303509 \N \N \N 1 \N [{"file_id": "35a45e8f-07eb-4ece-9ab6-77a2002f00d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7834ec980b9f4363943e02b4176be7e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7834ec980b9f4363943e02b4176be7e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7834ec980b9f4363943e02b4176be7e0.jpg", "file_size": 25463, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大款Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7834ec980b9f4363943e02b4176be7e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7834ec980b9f4363943e02b4176be7e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7834ec980b9f4363943e02b4176be7e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7834ec980b9f4363943e02b4176be7e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7834ec980b9f4363943e02b4176be7e0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_BoExx7DHGHEIIo3EqYyCekMadE=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.892138+00 2025-12-09 10:14:58.892143+00 8340 23-2112#-A7领子 SPMX-20240815303498 \N \N \N 1 \N [{"file_id": "58e9d914-9b4e-4162-a062-8720256bccb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e38d0e8843c49119252c7b9ad00caaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e38d0e8843c49119252c7b9ad00caaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e38d0e8843c49119252c7b9ad00caaf.jpg", "file_size": 8586, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A7领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e38d0e8843c49119252c7b9ad00caaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e38d0e8843c49119252c7b9ad00caaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e38d0e8843c49119252c7b9ad00caaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e38d0e8843c49119252c7b9ad00caaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e38d0e8843c49119252c7b9ad00caaf.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCmT4h61ADY747awOU7GSY_tC10=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.893935+00 2025-12-09 10:14:58.893941+00 8341 1071326#童5T SPMX-20240815303507 \N \N \N 1 \N [{"file_id": "a0c8d7f0-5d6d-4530-897d-2821587170f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a78b677cc4b4a4a98d5f63e1ad827a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a78b677cc4b4a4a98d5f63e1ad827a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a78b677cc4b4a4a98d5f63e1ad827a4.jpg", "file_size": 9656, "is_delete": false, "file_type": 1, "original_file_name": "1071326#童5T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a78b677cc4b4a4a98d5f63e1ad827a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a78b677cc4b4a4a98d5f63e1ad827a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a78b677cc4b4a4a98d5f63e1ad827a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a78b677cc4b4a4a98d5f63e1ad827a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a78b677cc4b4a4a98d5f63e1ad827a4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKKU_-NT7HiytNcX1Pf-HlAAYTc=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.896504+00 2025-12-09 10:14:58.896508+00 8342 C338#橘色补片S裤子后片 SPMX-20240815303499 \N \N \N 1 \N [{"file_id": "19bc9bc1-c2ef-40b7-a3e9-5f4707d05de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bbc8328d06b409f9a8964ff4e4764f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bbc8328d06b409f9a8964ff4e4764f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bbc8328d06b409f9a8964ff4e4764f6.jpg", "file_size": 20883, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片S裤子后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbc8328d06b409f9a8964ff4e4764f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbc8328d06b409f9a8964ff4e4764f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbc8328d06b409f9a8964ff4e4764f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bbc8328d06b409f9a8964ff4e4764f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bbc8328d06b409f9a8964ff4e4764f6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_8gio6K6cDPqrGcgkdtrBkxJn4=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.898491+00 2025-12-09 10:14:58.898496+00 8343 FHXGPK-086-1 SPMX-20240815303500 \N \N \N 1 \N [{"file_id": "667e6588-a5c1-44db-b3b1-2e7bea721d40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd4b892a5c184b449606b8d8bcd23a6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd4b892a5c184b449606b8d8bcd23a6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd4b892a5c184b449606b8d8bcd23a6a.jpg", "file_size": 34643, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-086-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd4b892a5c184b449606b8d8bcd23a6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd4b892a5c184b449606b8d8bcd23a6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd4b892a5c184b449606b8d8bcd23a6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd4b892a5c184b449606b8d8bcd23a6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd4b892a5c184b449606b8d8bcd23a6a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BCsVHmuvtQXuJz7FcPQZd_O9r4c=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.900091+00 2025-12-09 10:14:58.900095+00 8344 LJ20111140604#匹布 SPMX-20240815303505 \N \N \N 1 \N [{"file_id": "25c6a7f1-3253-4d3e-953d-24b6dd7b8fd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04cf01d3f00146349b487152a1a7adf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04cf01d3f00146349b487152a1a7adf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04cf01d3f00146349b487152a1a7adf5.jpg", "file_size": 6793, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cf01d3f00146349b487152a1a7adf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cf01d3f00146349b487152a1a7adf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cf01d3f00146349b487152a1a7adf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04cf01d3f00146349b487152a1a7adf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04cf01d3f00146349b487152a1a7adf5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQyvCFtcvPNFt82yQlb7Y9mlX5o=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.901695+00 2025-12-09 10:14:58.9017+00 8345 HT0101-36#WJC22 SPMX-20240815303506 \N \N \N 1 \N [{"file_id": "c2bea23f-a3c8-4ac8-8b11-c082f88e0d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fff1e88e7a34ee9a0844c9ebb8294f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fff1e88e7a34ee9a0844c9ebb8294f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fff1e88e7a34ee9a0844c9ebb8294f9.jpg", "file_size": 12988, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-36#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fff1e88e7a34ee9a0844c9ebb8294f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fff1e88e7a34ee9a0844c9ebb8294f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fff1e88e7a34ee9a0844c9ebb8294f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fff1e88e7a34ee9a0844c9ebb8294f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fff1e88e7a34ee9a0844c9ebb8294f9.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iv94W2juMEIpeSwktdmD4Vv92Q0=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.903503+00 2025-12-09 10:14:58.903507+00 8346 0003-35FWE#黑色 SPMX-20240815303501 \N \N \N 1 \N [{"file_id": "dda3d697-c65a-4f44-8e14-94eade06ffc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a8ffedebcf24531af7420959f92654a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a8ffedebcf24531af7420959f92654a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a8ffedebcf24531af7420959f92654a.jpg", "file_size": 10006, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8ffedebcf24531af7420959f92654a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8ffedebcf24531af7420959f92654a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8ffedebcf24531af7420959f92654a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a8ffedebcf24531af7420959f92654a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a8ffedebcf24531af7420959f92654a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uUzEmrmQXBOfPmaxj2jOP0k9Ss=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.905089+00 2025-12-09 10:14:58.905093+00 8347 DL2-48G613#彩蓝M SPMX-20240815303503 \N \N \N 1 \N [{"file_id": "cb0c99cd-253e-4c78-a7fc-f1c8ac731771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "290a97c6483747658dfa2c94d3e9f55e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "290a97c6483747658dfa2c94d3e9f55e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "290a97c6483747658dfa2c94d3e9f55e.jpg", "file_size": 18889, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#彩蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/290a97c6483747658dfa2c94d3e9f55e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/290a97c6483747658dfa2c94d3e9f55e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/290a97c6483747658dfa2c94d3e9f55e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/290a97c6483747658dfa2c94d3e9f55e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/290a97c6483747658dfa2c94d3e9f55e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9ZYhyvGfNOdNyWPPoFEItcap74=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.906824+00 2025-12-09 10:14:58.906828+00 8348 80311#小童 SPMX-20240815303502 \N \N \N 1 \N [{"file_id": "3df8bb50-f223-4dbb-9761-0d71d0e1777b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbe0a8cdfca0423e91484a2079f23272.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbe0a8cdfca0423e91484a2079f23272.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbe0a8cdfca0423e91484a2079f23272.jpg", "file_size": 26850, "is_delete": false, "file_type": 1, "original_file_name": "80311#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbe0a8cdfca0423e91484a2079f23272.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbe0a8cdfca0423e91484a2079f23272.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbe0a8cdfca0423e91484a2079f23272.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbe0a8cdfca0423e91484a2079f23272.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbe0a8cdfca0423e91484a2079f23272.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pzVicJXBJvsuFDskf0f-0i8bgOI=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.908689+00 2025-12-09 10:14:58.908693+00 8349 JTSS048#黑 SPMX-20240815303504 \N \N \N 1 \N [{"file_id": "af69851d-6ca6-4a5b-8f10-3bef72a671a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8eb7e1b89f584cc090e798d36847952f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8eb7e1b89f584cc090e798d36847952f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8eb7e1b89f584cc090e798d36847952f.jpg", "file_size": 16578, "is_delete": false, "file_type": 1, "original_file_name": "JTSS048#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb7e1b89f584cc090e798d36847952f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb7e1b89f584cc090e798d36847952f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb7e1b89f584cc090e798d36847952f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8eb7e1b89f584cc090e798d36847952f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8eb7e1b89f584cc090e798d36847952f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DkcY7j5Y42-zuz34eFh8hoTGb-I=", "createTime": "2024-08-15 14:46:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.910368+00 2025-12-09 10:14:58.910372+00 8350 FHXGPK-086-2 SPMX-20240815303510 \N \N \N 1 \N [{"file_id": "4b20e558-d1df-4d4e-8297-2b241142fc04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06d1357ae00544a9bf9f0c08957bad5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06d1357ae00544a9bf9f0c08957bad5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06d1357ae00544a9bf9f0c08957bad5c.jpg", "file_size": 32901, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-086-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d1357ae00544a9bf9f0c08957bad5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d1357ae00544a9bf9f0c08957bad5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d1357ae00544a9bf9f0c08957bad5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06d1357ae00544a9bf9f0c08957bad5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06d1357ae00544a9bf9f0c08957bad5c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kt2PMUFVLBG9Q1U-sxDuortTpfw=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.911864+00 2025-12-09 10:14:58.911868+00 8351 0003-35FWF#白红 SPMX-20240815303521 \N \N \N 1 \N [{"file_id": "1a327e24-0807-48eb-b0f2-66107f91ac82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ece9e8d9bae74e45a8fb11154b227ded.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ece9e8d9bae74e45a8fb11154b227ded.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ece9e8d9bae74e45a8fb11154b227ded.jpg", "file_size": 22850, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWF#白红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece9e8d9bae74e45a8fb11154b227ded.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece9e8d9bae74e45a8fb11154b227ded.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece9e8d9bae74e45a8fb11154b227ded.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ece9e8d9bae74e45a8fb11154b227ded.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ece9e8d9bae74e45a8fb11154b227ded.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvFUvPl94NXMSlvuyKyoWM4pM3A=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.913334+00 2025-12-09 10:14:58.913338+00 8352 80312#上衣 SPMX-20240815303525 \N \N \N 1 \N [{"file_id": "342cc5ff-28c4-4259-9b80-1fc3e3f5eb1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "981356bbc75340f1aa7ab344a7c38848.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "981356bbc75340f1aa7ab344a7c38848.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "981356bbc75340f1aa7ab344a7c38848.jpg", "file_size": 23596, "is_delete": false, "file_type": 1, "original_file_name": "80312#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981356bbc75340f1aa7ab344a7c38848.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981356bbc75340f1aa7ab344a7c38848.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/981356bbc75340f1aa7ab344a7c38848.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/981356bbc75340f1aa7ab344a7c38848.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/981356bbc75340f1aa7ab344a7c38848.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypSoBV-pDuQaAcM9PcNLn6gOEak=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.914825+00 2025-12-09 10:14:58.914829+00 8353 1071326#童8T SPMX-20240815303520 \N \N \N 1 \N [{"file_id": "5415a4db-6826-4fde-856d-8326be45fb82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfe0b317c38e464ba08e522b6cb79c40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfe0b317c38e464ba08e522b6cb79c40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfe0b317c38e464ba08e522b6cb79c40.jpg", "file_size": 13031, "is_delete": false, "file_type": 1, "original_file_name": "1071326#童8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b317c38e464ba08e522b6cb79c40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b317c38e464ba08e522b6cb79c40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b317c38e464ba08e522b6cb79c40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b317c38e464ba08e522b6cb79c40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfe0b317c38e464ba08e522b6cb79c40.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiP8_WhB6kNVKaa8bPDcIfXNg2Q=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.916302+00 2025-12-09 10:14:58.916305+00 8354 80311#裤子 SPMX-20240815303513 \N \N \N 1 \N [{"file_id": "a4d9db77-149e-49be-97cb-e797af1f5843", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg", "file_size": 14303, "is_delete": false, "file_type": 1, "original_file_name": "80311#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c1d7a5b0f624d38b9bbbf7cb0bf5c53.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjqueplFKNTkVc0fLs8lD1ji5tY=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.917809+00 2025-12-09 10:14:58.917813+00 8355 LZ1238#加大线条款 SPMX-20240815303517 \N \N \N 1 \N [{"file_id": "9176aa34-fbd1-418d-973e-4511c975922d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "223e36438b484bab91ebdf6e0ad6bedf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "223e36438b484bab91ebdf6e0ad6bedf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "223e36438b484bab91ebdf6e0ad6bedf.jpg", "file_size": 28299, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大线条款.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223e36438b484bab91ebdf6e0ad6bedf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223e36438b484bab91ebdf6e0ad6bedf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223e36438b484bab91ebdf6e0ad6bedf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/223e36438b484bab91ebdf6e0ad6bedf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/223e36438b484bab91ebdf6e0ad6bedf.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3Xrgyrf5SCM1LKnFjMNyBKw_Uw=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.919527+00 2025-12-09 10:14:58.919531+00 8356 JTSS048FW#VS-D3 SPMX-20240815303514 \N \N \N 1 \N [{"file_id": "9587814e-dc4f-414d-98f4-3f4bff576c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "296a7dcba8b540e38b18d72da91d63e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "296a7dcba8b540e38b18d72da91d63e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "296a7dcba8b540e38b18d72da91d63e6.jpg", "file_size": 11112, "is_delete": false, "file_type": 1, "original_file_name": "JTSS048FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296a7dcba8b540e38b18d72da91d63e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296a7dcba8b540e38b18d72da91d63e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296a7dcba8b540e38b18d72da91d63e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/296a7dcba8b540e38b18d72da91d63e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/296a7dcba8b540e38b18d72da91d63e6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-NXE5UdHIXiU7HNWwAwCHACMTc=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.921011+00 2025-12-09 10:14:58.921015+00 8357 FHXGPK-086-3 SPMX-20240815303522 \N \N \N 1 \N [{"file_id": "d36f855d-f914-40b2-982d-85e4ed4eced3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7653aea8e6844826b092c8eb813d787d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7653aea8e6844826b092c8eb813d787d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7653aea8e6844826b092c8eb813d787d.jpg", "file_size": 34295, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-086-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7653aea8e6844826b092c8eb813d787d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7653aea8e6844826b092c8eb813d787d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7653aea8e6844826b092c8eb813d787d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7653aea8e6844826b092c8eb813d787d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7653aea8e6844826b092c8eb813d787d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzA54bDJAkk9a-rmLfx1e56biFw=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.922468+00 2025-12-09 10:14:58.922472+00 8358 C338#橘色补片XL左片 SPMX-20240815303523 \N \N \N 1 \N [{"file_id": "4b330a03-0cf8-4f09-90d1-f0fdbb84609d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e25f808d6a3c45e58dac32366312158e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e25f808d6a3c45e58dac32366312158e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e25f808d6a3c45e58dac32366312158e.jpg", "file_size": 16738, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片XL左片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25f808d6a3c45e58dac32366312158e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25f808d6a3c45e58dac32366312158e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25f808d6a3c45e58dac32366312158e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e25f808d6a3c45e58dac32366312158e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e25f808d6a3c45e58dac32366312158e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xe6lRs-cRr_rWf7QLDn7XPIA6Yo=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.92396+00 2025-12-09 10:14:58.923964+00 8359 23-2112#-A8前后片3XL SPMX-20240815303518 \N \N \N 1 \N [{"file_id": "ad591a03-0af8-487a-8117-10bf62c92aa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1899885c81342c483ed314a21366daa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1899885c81342c483ed314a21366daa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1899885c81342c483ed314a21366daa.jpg", "file_size": 9725, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1899885c81342c483ed314a21366daa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1899885c81342c483ed314a21366daa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1899885c81342c483ed314a21366daa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1899885c81342c483ed314a21366daa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1899885c81342c483ed314a21366daa.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9_RJjuO_YcNRkDU8hrjJ5O7_wE=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.925438+00 2025-12-09 10:14:58.925442+00 8360 DL2-48G613#彩蓝XL SPMX-20240815303524 \N \N \N 1 \N [{"file_id": "72b054f9-7f3e-4979-9c79-83bfa58820ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "445c37b4b19a49349a5dfb763406ec40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "445c37b4b19a49349a5dfb763406ec40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "445c37b4b19a49349a5dfb763406ec40.jpg", "file_size": 18456, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#彩蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c37b4b19a49349a5dfb763406ec40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c37b4b19a49349a5dfb763406ec40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c37b4b19a49349a5dfb763406ec40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/445c37b4b19a49349a5dfb763406ec40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/445c37b4b19a49349a5dfb763406ec40.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qtjtsb6kUsGayUnvRkXeHzNBWds=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.926906+00 2025-12-09 10:14:58.92691+00 8361 0003-35FWF#白咖 SPMX-20240815303511 \N \N \N 1 \N [{"file_id": "95557ef7-69a7-463d-9237-abcb72b82072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15688c90897b42e5b4e81f0c6ef85784.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15688c90897b42e5b4e81f0c6ef85784.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15688c90897b42e5b4e81f0c6ef85784.jpg", "file_size": 19610, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWF#白咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15688c90897b42e5b4e81f0c6ef85784.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15688c90897b42e5b4e81f0c6ef85784.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15688c90897b42e5b4e81f0c6ef85784.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15688c90897b42e5b4e81f0c6ef85784.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15688c90897b42e5b4e81f0c6ef85784.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHNax9D-hfUx0tnQnb73EBn1enQ=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.92839+00 2025-12-09 10:14:58.928395+00 8362 C338#橘色补片XL右片 SPMX-20240815303512 \N \N \N 1 \N [{"file_id": "eaf81409-f145-449c-a784-535ac75318cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae9fcb6c98204b2a9f85471bc10c255f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae9fcb6c98204b2a9f85471bc10c255f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae9fcb6c98204b2a9f85471bc10c255f.jpg", "file_size": 16652, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色补片XL右片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9fcb6c98204b2a9f85471bc10c255f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9fcb6c98204b2a9f85471bc10c255f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9fcb6c98204b2a9f85471bc10c255f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae9fcb6c98204b2a9f85471bc10c255f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae9fcb6c98204b2a9f85471bc10c255f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JzAZWMLyIkF_niGyo9WGgiLcwyE=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.929886+00 2025-12-09 10:14:58.92989+00 8363 DL2-48G613#彩蓝S SPMX-20240815303515 \N \N \N 1 \N [{"file_id": "580b52d4-efd5-4e3d-a302-c75866925871", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e25458ce1224936a59767743802142f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e25458ce1224936a59767743802142f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e25458ce1224936a59767743802142f.jpg", "file_size": 19172, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#彩蓝S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e25458ce1224936a59767743802142f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e25458ce1224936a59767743802142f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e25458ce1224936a59767743802142f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e25458ce1224936a59767743802142f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e25458ce1224936a59767743802142f.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuYuwSv96MBJc3v9W2yW6jL-fFM=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.931731+00 2025-12-09 10:14:58.931736+00 8364 HT0101-36A#WJC22 SPMX-20240815303519 \N \N \N 1 \N [{"file_id": "bfced8ba-d69f-4d03-925e-71c95fb142a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f65419838f840b2837f4572a726bbca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f65419838f840b2837f4572a726bbca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f65419838f840b2837f4572a726bbca.jpg", "file_size": 16879, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-36A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f65419838f840b2837f4572a726bbca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f65419838f840b2837f4572a726bbca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f65419838f840b2837f4572a726bbca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f65419838f840b2837f4572a726bbca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f65419838f840b2837f4572a726bbca.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0NsCMZ6ahZptOK_8DWeof3Fxl0=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.933255+00 2025-12-09 10:14:58.933259+00 8365 LJ20111140604 SPMX-20240815303516 \N \N \N 1 \N [{"file_id": "9cfa1f17-5a42-4b61-b0e2-4eb22e90eb3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8559a0bd77e944649426d99f5f00fba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8559a0bd77e944649426d99f5f00fba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8559a0bd77e944649426d99f5f00fba5.jpg", "file_size": 7771, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111140604.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8559a0bd77e944649426d99f5f00fba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8559a0bd77e944649426d99f5f00fba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8559a0bd77e944649426d99f5f00fba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8559a0bd77e944649426d99f5f00fba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8559a0bd77e944649426d99f5f00fba5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRTIL8WL64ofBadNVtP1CFaByBk=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.934795+00 2025-12-09 10:14:58.934799+00 8366 C338#橘色袖子补片S SPMX-20240815303531 \N \N \N 1 \N [{"file_id": "52f2edbd-7336-49d1-a2ef-3d537235cbfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c155176875594b5eab39f5094a7540e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c155176875594b5eab39f5094a7540e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c155176875594b5eab39f5094a7540e5.jpg", "file_size": 22903, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色袖子补片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155176875594b5eab39f5094a7540e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155176875594b5eab39f5094a7540e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155176875594b5eab39f5094a7540e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c155176875594b5eab39f5094a7540e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c155176875594b5eab39f5094a7540e5.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:acwXoXbPe4pwKaQCJrAaVIohzME=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.936328+00 2025-12-09 10:14:58.936333+00 8367 HT0101-37#WJC22 SPMX-20240815303530 \N \N \N 1 \N [{"file_id": "4e040c21-c54d-4cc5-a51b-8d8f65d3389f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c2f3f1cfc2943f7ac49d1924cec544e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c2f3f1cfc2943f7ac49d1924cec544e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c2f3f1cfc2943f7ac49d1924cec544e.jpg", "file_size": 17001, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-37#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2f3f1cfc2943f7ac49d1924cec544e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2f3f1cfc2943f7ac49d1924cec544e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2f3f1cfc2943f7ac49d1924cec544e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c2f3f1cfc2943f7ac49d1924cec544e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c2f3f1cfc2943f7ac49d1924cec544e.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VW5qnkzJg7sku0NoBZ3VPdS9sDo=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.937844+00 2025-12-09 10:14:58.937849+00 8368 LJ20111840601FW#上衣L VS-D3 SPMX-20240815303527 \N \N \N 1 \N [{"file_id": "e08df50b-b713-4da1-8b82-a03586022c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec5a316cdb440cf90c104d1914d4455.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec5a316cdb440cf90c104d1914d4455.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec5a316cdb440cf90c104d1914d4455.jpg", "file_size": 11054, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#上衣L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec5a316cdb440cf90c104d1914d4455.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec5a316cdb440cf90c104d1914d4455.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec5a316cdb440cf90c104d1914d4455.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec5a316cdb440cf90c104d1914d4455.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec5a316cdb440cf90c104d1914d4455.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A97-Ex37di0NIKNPxiSBWAlcFtg=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.93943+00 2025-12-09 10:14:58.939435+00 8369 1071326#裤子 SPMX-20240815303532 \N \N \N 1 \N [{"file_id": "17a956b5-fbd3-4d65-b617-f757e8b87470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "852654f876164a71811420cb373358a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "852654f876164a71811420cb373358a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "852654f876164a71811420cb373358a9.jpg", "file_size": 15738, "is_delete": false, "file_type": 1, "original_file_name": "1071326#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852654f876164a71811420cb373358a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852654f876164a71811420cb373358a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/852654f876164a71811420cb373358a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/852654f876164a71811420cb373358a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/852654f876164a71811420cb373358a9.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_areD-Od2hTe7Oakt4Oxn9k1KBc=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.941021+00 2025-12-09 10:14:58.941025+00 8370 LJ20111840601FW#上衣M VS-D3 SPMX-20240815303536 \N \N \N 1 \N [{"file_id": "038b0fbd-2f20-4f79-bef6-2deb041a83bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a66b7dfd896a4f6d8f481955a64baf78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a66b7dfd896a4f6d8f481955a64baf78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a66b7dfd896a4f6d8f481955a64baf78.jpg", "file_size": 11316, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#上衣M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66b7dfd896a4f6d8f481955a64baf78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66b7dfd896a4f6d8f481955a64baf78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66b7dfd896a4f6d8f481955a64baf78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a66b7dfd896a4f6d8f481955a64baf78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a66b7dfd896a4f6d8f481955a64baf78.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4eFsxDFYOKO-jqUI5X3gaDSKi_4=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.942772+00 2025-12-09 10:14:58.942777+00 8371 23-2112#-A8前后片4XL SPMX-20240815303529 \N \N \N 1 \N [{"file_id": "69ff1c76-bb80-437c-94b6-671f5d6cf62c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a834e25e9dc0402a9545d2d1ed8e96da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a834e25e9dc0402a9545d2d1ed8e96da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a834e25e9dc0402a9545d2d1ed8e96da.jpg", "file_size": 9315, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a834e25e9dc0402a9545d2d1ed8e96da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a834e25e9dc0402a9545d2d1ed8e96da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a834e25e9dc0402a9545d2d1ed8e96da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a834e25e9dc0402a9545d2d1ed8e96da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a834e25e9dc0402a9545d2d1ed8e96da.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ext7b4GkJ4HqiWG0IdPHefGQbpA=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.944309+00 2025-12-09 10:14:58.944313+00 8372 80312#乱花 SPMX-20240815303535 \N \N \N 1 \N [{"file_id": "29fa277f-04b1-447e-bfb1-8b84defa1418", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e83e2c12390e4b7b8774ee13dfffda13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e83e2c12390e4b7b8774ee13dfffda13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e83e2c12390e4b7b8774ee13dfffda13.jpg", "file_size": 27420, "is_delete": false, "file_type": 1, "original_file_name": "80312#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83e2c12390e4b7b8774ee13dfffda13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83e2c12390e4b7b8774ee13dfffda13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83e2c12390e4b7b8774ee13dfffda13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e83e2c12390e4b7b8774ee13dfffda13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e83e2c12390e4b7b8774ee13dfffda13.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADUQv2vAz59mATN1uCUxwtfC6tM=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.945807+00 2025-12-09 10:14:58.945811+00 8373 LZ1238#加大色块款 SPMX-20240815303528 \N \N \N 1 \N [{"file_id": "c833fe1d-8265-4ee6-9df1-91769691fd4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9125592016034609b5223f3f27f24637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9125592016034609b5223f3f27f24637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9125592016034609b5223f3f27f24637.jpg", "file_size": 25261, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大色块款.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9125592016034609b5223f3f27f24637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9125592016034609b5223f3f27f24637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9125592016034609b5223f3f27f24637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9125592016034609b5223f3f27f24637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9125592016034609b5223f3f27f24637.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtIxu-hXtDgI5aEwFXSNGSc5Z5s=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.947334+00 2025-12-09 10:14:58.947338+00 8374 23-2112#-A8袖子3XL SPMX-20240815303538 \N \N \N 1 \N [{"file_id": "46d24230-ddd7-4014-b9f2-1a2ccbf9cc33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c23106f948d443bd8163eafb3a5cb6a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c23106f948d443bd8163eafb3a5cb6a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c23106f948d443bd8163eafb3a5cb6a3.jpg", "file_size": 7800, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23106f948d443bd8163eafb3a5cb6a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23106f948d443bd8163eafb3a5cb6a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23106f948d443bd8163eafb3a5cb6a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c23106f948d443bd8163eafb3a5cb6a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c23106f948d443bd8163eafb3a5cb6a3.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnPBJbRxZXub5QG4UI827UcUEyY=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.94886+00 2025-12-09 10:14:58.948864+00 8375 JTSS049# SPMX-20240815303526 \N \N \N 1 \N [{"file_id": "c3fd5df1-9589-4058-8b8f-e2f6e86eaf99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ad5c633dc2e44b5af65c5060c71aa84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ad5c633dc2e44b5af65c5060c71aa84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ad5c633dc2e44b5af65c5060c71aa84.jpg", "file_size": 12774, "is_delete": false, "file_type": 1, "original_file_name": "JTSS049#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad5c633dc2e44b5af65c5060c71aa84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad5c633dc2e44b5af65c5060c71aa84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad5c633dc2e44b5af65c5060c71aa84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ad5c633dc2e44b5af65c5060c71aa84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ad5c633dc2e44b5af65c5060c71aa84.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2Rx0M__39oaztSVlxUB56CVfEM=", "createTime": "2024-08-15 14:46:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.950371+00 2025-12-09 10:14:58.950376+00 8376 LZ1238#加大黑底花款 SPMX-20240815303537 \N \N \N 1 \N [{"file_id": "3002e9f0-0492-452a-94cb-7f5b22afb500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5a6288ca4f14d96a4e077d5a90c2bac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5a6288ca4f14d96a4e077d5a90c2bac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5a6288ca4f14d96a4e077d5a90c2bac.jpg", "file_size": 27559, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#加大黑底花款.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a6288ca4f14d96a4e077d5a90c2bac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a6288ca4f14d96a4e077d5a90c2bac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a6288ca4f14d96a4e077d5a90c2bac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5a6288ca4f14d96a4e077d5a90c2bac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5a6288ca4f14d96a4e077d5a90c2bac.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18l4o7l0VfSfw3L6xO2IjiBxH_A=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.951888+00 2025-12-09 10:14:58.951892+00 8377 JTSS049FW#VS-D3 SPMX-20240815303534 \N \N \N 1 \N [{"file_id": "4751072e-9c57-427c-bb06-91644c942339", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc56a13e614a43ca9b3d07f2ba13136a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc56a13e614a43ca9b3d07f2ba13136a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc56a13e614a43ca9b3d07f2ba13136a.jpg", "file_size": 7579, "is_delete": false, "file_type": 1, "original_file_name": "JTSS049FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc56a13e614a43ca9b3d07f2ba13136a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc56a13e614a43ca9b3d07f2ba13136a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc56a13e614a43ca9b3d07f2ba13136a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc56a13e614a43ca9b3d07f2ba13136a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc56a13e614a43ca9b3d07f2ba13136a.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-OV29wztgfhLaQvu7MYbtgJ86F4=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.953422+00 2025-12-09 10:14:58.953427+00 8378 DL2-48G613#湖绿L SPMX-20240815303533 \N \N \N 1 \N [{"file_id": "9647f94e-af11-4724-b08f-56620fb4b135", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f8882227ed40d6b3144ad2057d0b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f8882227ed40d6b3144ad2057d0b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f8882227ed40d6b3144ad2057d0b46.jpg", "file_size": 17730, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#湖绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f8882227ed40d6b3144ad2057d0b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f8882227ed40d6b3144ad2057d0b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f8882227ed40d6b3144ad2057d0b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f8882227ed40d6b3144ad2057d0b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f8882227ed40d6b3144ad2057d0b46.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RdMagsngjvbO6r7fvQsg-ipep3o=", "createTime": "2024-08-15 14:46:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.954944+00 2025-12-09 10:14:58.954948+00 8379 C338#橘色裤子补片XL SPMX-20240815303539 \N \N \N 1 \N [{"file_id": "8ae8035b-bfc3-4a32-a85f-8df8c65584c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df46659502274aa683a3e642b7e2ab85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df46659502274aa683a3e642b7e2ab85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df46659502274aa683a3e642b7e2ab85.jpg", "file_size": 21043, "is_delete": false, "file_type": 1, "original_file_name": "C338#橘色裤子补片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df46659502274aa683a3e642b7e2ab85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df46659502274aa683a3e642b7e2ab85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df46659502274aa683a3e642b7e2ab85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df46659502274aa683a3e642b7e2ab85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df46659502274aa683a3e642b7e2ab85.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlnr4hHQ2I0JcEXFyLM9hovYu8g=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.956728+00 2025-12-09 10:14:58.956734+00 8380 DL2-48G613#湖绿M SPMX-20240815303543 \N \N \N 1 \N [{"file_id": "835a6f7e-8266-43a7-b3da-89e3278e7ff4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d774bf38b53d463cbf5b5a4149e1ec23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d774bf38b53d463cbf5b5a4149e1ec23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d774bf38b53d463cbf5b5a4149e1ec23.jpg", "file_size": 17272, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#湖绿M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774bf38b53d463cbf5b5a4149e1ec23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774bf38b53d463cbf5b5a4149e1ec23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774bf38b53d463cbf5b5a4149e1ec23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d774bf38b53d463cbf5b5a4149e1ec23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d774bf38b53d463cbf5b5a4149e1ec23.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhxqymQ2mnZkFiCXvHGUdGMB1yw=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.958599+00 2025-12-09 10:14:58.958604+00 8381 C338#橙色右前片补片S码 SPMX-20240815303550 \N \N \N 1 \N [{"file_id": "87912bbf-3eec-4bab-ad79-7540abc53694", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7180901899df404db5d67910dd733057.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7180901899df404db5d67910dd733057.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7180901899df404db5d67910dd733057.jpg", "file_size": 17612, "is_delete": false, "file_type": 1, "original_file_name": "C338#橙色右前片补片S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7180901899df404db5d67910dd733057.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7180901899df404db5d67910dd733057.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7180901899df404db5d67910dd733057.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7180901899df404db5d67910dd733057.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7180901899df404db5d67910dd733057.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfZmpal3gEyunPj5fTaMpz7tJaM=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.960408+00 2025-12-09 10:14:58.960413+00 8382 80312#裤子 SPMX-20240815303542 \N \N \N 1 \N [{"file_id": "d3f00f7f-829e-4d3e-b887-97b53cec313a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f1a9379270c471599b95dc45e778af6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f1a9379270c471599b95dc45e778af6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f1a9379270c471599b95dc45e778af6.jpg", "file_size": 21976, "is_delete": false, "file_type": 1, "original_file_name": "80312#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1a9379270c471599b95dc45e778af6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1a9379270c471599b95dc45e778af6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f1a9379270c471599b95dc45e778af6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f1a9379270c471599b95dc45e778af6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f1a9379270c471599b95dc45e778af6.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIWIsX_wCGpqAMazDltlmAO2yEE=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.962193+00 2025-12-09 10:14:58.962198+00 8383 0003-35FWF#白蓝 SPMX-20240815303544 \N \N \N 1 \N [{"file_id": "d566cd79-80ed-4ea2-b260-f130f2f1e792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a77b749bc044fb19f854e8808c503c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a77b749bc044fb19f854e8808c503c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a77b749bc044fb19f854e8808c503c1.jpg", "file_size": 21144, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWF#白蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a77b749bc044fb19f854e8808c503c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a77b749bc044fb19f854e8808c503c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a77b749bc044fb19f854e8808c503c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a77b749bc044fb19f854e8808c503c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a77b749bc044fb19f854e8808c503c1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVJrbduG6EDkt6GPDrPqzuAPJuM=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.964128+00 2025-12-09 10:14:58.964133+00 8384 JTSS050#VS-D3 SPMX-20240815303545 \N \N \N 1 \N [{"file_id": "8bf56e29-83eb-415b-ba7a-377e6934136e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa692a9a044140ffb4c026365f487d7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa692a9a044140ffb4c026365f487d7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa692a9a044140ffb4c026365f487d7b.jpg", "file_size": 12093, "is_delete": false, "file_type": 1, "original_file_name": "JTSS050#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa692a9a044140ffb4c026365f487d7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa692a9a044140ffb4c026365f487d7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa692a9a044140ffb4c026365f487d7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa692a9a044140ffb4c026365f487d7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa692a9a044140ffb4c026365f487d7b.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VUOtR-b1qIvOctFq48dqw03Isyc=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.966101+00 2025-12-09 10:14:58.966106+00 8385 80313#上衣 SPMX-20240815303553 \N \N \N 1 \N [{"file_id": "c01b7499-04d6-4e58-b7ed-9bbc7ddf8ebc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2f756ca140a4956bc69f47ad3e6f493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2f756ca140a4956bc69f47ad3e6f493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2f756ca140a4956bc69f47ad3e6f493.jpg", "file_size": 23186, "is_delete": false, "file_type": 1, "original_file_name": "80313#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f756ca140a4956bc69f47ad3e6f493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f756ca140a4956bc69f47ad3e6f493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f756ca140a4956bc69f47ad3e6f493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2f756ca140a4956bc69f47ad3e6f493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2f756ca140a4956bc69f47ad3e6f493.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3elS9VzEKT5TUDQYyMQ9qUYfMI=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.96806+00 2025-12-09 10:14:58.968065+00 8386 23-2112#-A8袖子4XL SPMX-20240815303547 \N \N \N 1 \N [{"file_id": "2c68dad3-e4cf-4dbe-8446-be254081e608", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ac110d0f7ff467abadb9c522875e4e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ac110d0f7ff467abadb9c522875e4e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ac110d0f7ff467abadb9c522875e4e7.jpg", "file_size": 7716, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac110d0f7ff467abadb9c522875e4e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac110d0f7ff467abadb9c522875e4e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac110d0f7ff467abadb9c522875e4e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ac110d0f7ff467abadb9c522875e4e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ac110d0f7ff467abadb9c522875e4e7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IYluBqIeBd4xFZDZ8S1j_O54HTE=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.96977+00 2025-12-09 10:14:58.969775+00 8387 LJ20111840601FW#上衣S VS-D3 SPMX-20240815303549 \N \N \N 1 \N [{"file_id": "1349c968-2ea9-43cb-8fce-1d09a6e92d9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1d054aa00534739b2ebe13b9ea9f0b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1d054aa00534739b2ebe13b9ea9f0b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1d054aa00534739b2ebe13b9ea9f0b4.jpg", "file_size": 11538, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#上衣S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d054aa00534739b2ebe13b9ea9f0b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d054aa00534739b2ebe13b9ea9f0b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d054aa00534739b2ebe13b9ea9f0b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1d054aa00534739b2ebe13b9ea9f0b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1d054aa00534739b2ebe13b9ea9f0b4.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_G_nBtDAJJVL1YZGv1MYNGfxRk=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.971501+00 2025-12-09 10:14:58.971506+00 8388 HT0101-38#WJC22 SPMX-20240815303541 \N \N \N 1 \N [{"file_id": "4a2b5147-d834-4a37-956f-42588150c689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6955dd7599400eaa188b53082412c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6955dd7599400eaa188b53082412c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6955dd7599400eaa188b53082412c1.jpg", "file_size": 12456, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-38#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6955dd7599400eaa188b53082412c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6955dd7599400eaa188b53082412c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6955dd7599400eaa188b53082412c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6955dd7599400eaa188b53082412c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6955dd7599400eaa188b53082412c1.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SK-oZKwBg-yQ-XCZFRkCHiQiN_Y=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.973263+00 2025-12-09 10:14:58.973267+00 8389 HT0101-38A#WJC22 SPMX-20240815303551 \N \N \N 1 \N [{"file_id": "d2dd8da3-42bd-46a4-a2c3-5f18bace9da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "095db9f9d08342b5bdb166a8d7138f3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "095db9f9d08342b5bdb166a8d7138f3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "095db9f9d08342b5bdb166a8d7138f3c.jpg", "file_size": 27426, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-38A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095db9f9d08342b5bdb166a8d7138f3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095db9f9d08342b5bdb166a8d7138f3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095db9f9d08342b5bdb166a8d7138f3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/095db9f9d08342b5bdb166a8d7138f3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/095db9f9d08342b5bdb166a8d7138f3c.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9IK6NE-VlH2IUqoRv_45EdW9VHY=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.975209+00 2025-12-09 10:14:58.975214+00 8390 1071913#净色 SPMX-20240815303540 \N \N \N 1 \N [{"file_id": "fa6195c6-e2f9-40f2-a2be-bd708a35a937", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a93afa91df5b49e198197140ccad3eb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a93afa91df5b49e198197140ccad3eb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a93afa91df5b49e198197140ccad3eb8.jpg", "file_size": 8255, "is_delete": false, "file_type": 1, "original_file_name": "1071913#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93afa91df5b49e198197140ccad3eb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93afa91df5b49e198197140ccad3eb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93afa91df5b49e198197140ccad3eb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a93afa91df5b49e198197140ccad3eb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a93afa91df5b49e198197140ccad3eb8.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WO4PoP-WoCzeCo8vwG0gNRZH_c=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.977156+00 2025-12-09 10:14:58.977162+00 8391 FHXGPK-086-4 SPMX-20240815303548 \N \N \N 1 \N [{"file_id": "70ef5359-def6-4cc4-b54d-b3294a87f346", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b7a9348c854f45828ccc49cc74f8b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b7a9348c854f45828ccc49cc74f8b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b7a9348c854f45828ccc49cc74f8b0.jpg", "file_size": 34852, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-086-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7a9348c854f45828ccc49cc74f8b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7a9348c854f45828ccc49cc74f8b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7a9348c854f45828ccc49cc74f8b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b7a9348c854f45828ccc49cc74f8b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b7a9348c854f45828ccc49cc74f8b0.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3nxacvj7xdH-zhVIP-Fpkiyo6E=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.979192+00 2025-12-09 10:14:58.979198+00 8392 LZ1238#套装下领1号色 SPMX-20240815303546 \N \N \N 1 \N [{"file_id": "eacee1f3-31cf-4869-b2f0-3fba3ea42321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5070df413ebc4313960aeaa589d4e970.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5070df413ebc4313960aeaa589d4e970.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5070df413ebc4313960aeaa589d4e970.jpg", "file_size": 19888, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#套装下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5070df413ebc4313960aeaa589d4e970.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5070df413ebc4313960aeaa589d4e970.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5070df413ebc4313960aeaa589d4e970.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5070df413ebc4313960aeaa589d4e970.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5070df413ebc4313960aeaa589d4e970.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypTW_8nuK2Scbw6o1mGuTt4dsEE=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.981214+00 2025-12-09 10:14:58.981219+00 8393 1071913#婴3XL SPMX-20240815303552 \N \N \N 1 \N [{"file_id": "bfcb7d8a-5bfc-4f66-adf9-d127bc5676e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "782040463b264ec1bc7bdb246de0f538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "782040463b264ec1bc7bdb246de0f538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "782040463b264ec1bc7bdb246de0f538.jpg", "file_size": 12307, "is_delete": false, "file_type": 1, "original_file_name": "1071913#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782040463b264ec1bc7bdb246de0f538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782040463b264ec1bc7bdb246de0f538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782040463b264ec1bc7bdb246de0f538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/782040463b264ec1bc7bdb246de0f538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/782040463b264ec1bc7bdb246de0f538.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXWF2YI3oLFi7vO6-Euz9kE-sKw=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.983169+00 2025-12-09 10:14:58.983173+00 8394 80313#乱花 SPMX-20240815303563 \N \N \N 1 \N [{"file_id": "67a7353a-d113-4e53-a794-f198dc72b0d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "684da7b13efc4d409eed9319c6c42f9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "684da7b13efc4d409eed9319c6c42f9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "684da7b13efc4d409eed9319c6c42f9d.jpg", "file_size": 15161, "is_delete": false, "file_type": 1, "original_file_name": "80313#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684da7b13efc4d409eed9319c6c42f9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684da7b13efc4d409eed9319c6c42f9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684da7b13efc4d409eed9319c6c42f9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/684da7b13efc4d409eed9319c6c42f9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/684da7b13efc4d409eed9319c6c42f9d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNkyoadFSLL5eEkocm3B297_Qlk=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.984835+00 2025-12-09 10:14:58.98484+00 8395 0003-35FWF#黑蓝 SPMX-20240815303568 \N \N \N 1 \N [{"file_id": "7e7640de-ca49-4c20-ad79-739abbc37a1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ee067520af74ab88dff40bcdd20fb98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ee067520af74ab88dff40bcdd20fb98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ee067520af74ab88dff40bcdd20fb98.jpg", "file_size": 22043, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWF#黑蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee067520af74ab88dff40bcdd20fb98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee067520af74ab88dff40bcdd20fb98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee067520af74ab88dff40bcdd20fb98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ee067520af74ab88dff40bcdd20fb98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ee067520af74ab88dff40bcdd20fb98.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:py4R_tnXAka8npGqi1s2gpXWKlg=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.986509+00 2025-12-09 10:14:58.986514+00 8396 1071913#婴S+M+L+XL+2XL SPMX-20240815303564 \N \N \N 1 \N [{"file_id": "488c520a-fc24-4c6c-aadb-e273b97b76bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99734abca8cd4bb2a7aaf1f9aac40cb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99734abca8cd4bb2a7aaf1f9aac40cb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99734abca8cd4bb2a7aaf1f9aac40cb3.jpg", "file_size": 17483, "is_delete": false, "file_type": 1, "original_file_name": "1071913#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99734abca8cd4bb2a7aaf1f9aac40cb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99734abca8cd4bb2a7aaf1f9aac40cb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99734abca8cd4bb2a7aaf1f9aac40cb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99734abca8cd4bb2a7aaf1f9aac40cb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99734abca8cd4bb2a7aaf1f9aac40cb3.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IOObTHo6IcZbX6a9pxLGJuSnFts=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.988272+00 2025-12-09 10:14:58.988278+00 8397 JTSS051#白底橘VS-D3 SPMX-20240815303566 \N \N \N 1 \N [{"file_id": "5e7a2e1d-5c2f-47ae-bcae-edd4ce18e008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c39f10bd021e4ff5aefced4930afb8f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c39f10bd021e4ff5aefced4930afb8f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c39f10bd021e4ff5aefced4930afb8f7.jpg", "file_size": 14064, "is_delete": false, "file_type": 1, "original_file_name": "JTSS051#白底橘VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39f10bd021e4ff5aefced4930afb8f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39f10bd021e4ff5aefced4930afb8f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39f10bd021e4ff5aefced4930afb8f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c39f10bd021e4ff5aefced4930afb8f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c39f10bd021e4ff5aefced4930afb8f7.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cg8TJnVXp_yLK1CYpS_YO-58cEY=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.990277+00 2025-12-09 10:14:58.990283+00 8398 23-2112#-A8领口 SPMX-20240815303558 \N \N \N 1 \N [{"file_id": "9d4dede3-9877-4e4e-8304-1f641eb30267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf3b43ec568648d7b1859c8c37f6a637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf3b43ec568648d7b1859c8c37f6a637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf3b43ec568648d7b1859c8c37f6a637.jpg", "file_size": 7544, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8领口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3b43ec568648d7b1859c8c37f6a637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3b43ec568648d7b1859c8c37f6a637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3b43ec568648d7b1859c8c37f6a637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf3b43ec568648d7b1859c8c37f6a637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf3b43ec568648d7b1859c8c37f6a637.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEoS9-HfQ0aCOXdgBIPwLHvgLBU=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.992388+00 2025-12-09 10:14:58.992393+00 8399 FHXGPK-086-5 SPMX-20240815303560 \N \N \N 1 \N [{"file_id": "4fc8d698-d113-4a25-bfa5-4bc43dbfa9a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e29c3755ea44c12bbd7a4a50e0d564d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e29c3755ea44c12bbd7a4a50e0d564d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e29c3755ea44c12bbd7a4a50e0d564d.jpg", "file_size": 33686, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-086-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e29c3755ea44c12bbd7a4a50e0d564d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e29c3755ea44c12bbd7a4a50e0d564d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e29c3755ea44c12bbd7a4a50e0d564d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e29c3755ea44c12bbd7a4a50e0d564d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e29c3755ea44c12bbd7a4a50e0d564d.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMtn-VLVIv2LlvFqSBmdvHgio9U=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.99426+00 2025-12-09 10:14:58.994265+00 8400 0003-35FWF#黑白 SPMX-20240815303557 \N \N \N 1 \N [{"file_id": "d94ec7bb-d10a-4ae7-855f-01c75000c4fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1048d4f4f4bd42baa00d43326a89ffba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1048d4f4f4bd42baa00d43326a89ffba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1048d4f4f4bd42baa00d43326a89ffba.jpg", "file_size": 23503, "is_delete": false, "file_type": 1, "original_file_name": "0003-35FWF#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048d4f4f4bd42baa00d43326a89ffba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048d4f4f4bd42baa00d43326a89ffba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048d4f4f4bd42baa00d43326a89ffba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1048d4f4f4bd42baa00d43326a89ffba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1048d4f4f4bd42baa00d43326a89ffba.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msCkukGg04pRgYYCUJmIV4AevEU=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.995829+00 2025-12-09 10:14:58.995833+00 8401 LJ20111840601FW#上衣XL VS-D3 SPMX-20240815303559 \N \N \N 1 \N [{"file_id": "ea03cfbf-982c-407f-a8fc-658bf8d6f384", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ea5e3443f0447c080d23ec7842ec815.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ea5e3443f0447c080d23ec7842ec815.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ea5e3443f0447c080d23ec7842ec815.jpg", "file_size": 11032, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#上衣XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea5e3443f0447c080d23ec7842ec815.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea5e3443f0447c080d23ec7842ec815.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea5e3443f0447c080d23ec7842ec815.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ea5e3443f0447c080d23ec7842ec815.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ea5e3443f0447c080d23ec7842ec815.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYSg3HC4NAW7NI74LiUbg1oTokM=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:58.997355+00 2025-12-09 10:14:58.99736+00 8402 LZ1238#套装下领3号色 SPMX-20240815303565 \N \N \N 1 \N [{"file_id": "4eac4714-060a-49c5-a9d1-94f84c261fcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc3ea805ce0e4974b9cf326bda450b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc3ea805ce0e4974b9cf326bda450b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc3ea805ce0e4974b9cf326bda450b84.jpg", "file_size": 19247, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#套装下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3ea805ce0e4974b9cf326bda450b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3ea805ce0e4974b9cf326bda450b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc3ea805ce0e4974b9cf326bda450b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc3ea805ce0e4974b9cf326bda450b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc3ea805ce0e4974b9cf326bda450b84.jpg?e=1765361698&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QaWPtLWYEYU7SaeZzFTY2dxdVPw=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.650808+00 2025-12-09 10:14:59.650818+00 8403 DL2-48G613#湖绿XL SPMX-20240815303567 \N \N \N 1 \N [{"file_id": "9314468d-ea91-454d-aab4-1e186ba0a5d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2219da265854c4eb11393c43d74305d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2219da265854c4eb11393c43d74305d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2219da265854c4eb11393c43d74305d.jpg", "file_size": 17127, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#湖绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2219da265854c4eb11393c43d74305d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2219da265854c4eb11393c43d74305d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2219da265854c4eb11393c43d74305d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2219da265854c4eb11393c43d74305d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2219da265854c4eb11393c43d74305d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8rD_uQ0EkO2CyMu1da2lhIZbiQ=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.653296+00 2025-12-09 10:14:59.653302+00 8404 C338#橙色右前片补片XL SPMX-20240815303562 \N \N \N 1 \N [{"file_id": "31581235-cff3-477a-941b-ae2a65b8a8e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb38323f7074b3fa5487044783318d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb38323f7074b3fa5487044783318d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb38323f7074b3fa5487044783318d3.jpg", "file_size": 17075, "is_delete": false, "file_type": 1, "original_file_name": "C338#橙色右前片补片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb38323f7074b3fa5487044783318d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb38323f7074b3fa5487044783318d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb38323f7074b3fa5487044783318d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb38323f7074b3fa5487044783318d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb38323f7074b3fa5487044783318d3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:guBEdLYjT7xOLeu_vx0PLNFdTe4=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.655147+00 2025-12-09 10:14:59.655153+00 8405 JTSS050FW#VS-D3 SPMX-20240815303556 \N \N \N 1 \N [{"file_id": "4c0de3ea-1ef6-402a-9763-2301c7745b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04720dbfb1324cfca0e818c6a8cb99f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04720dbfb1324cfca0e818c6a8cb99f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04720dbfb1324cfca0e818c6a8cb99f5.jpg", "file_size": 9609, "is_delete": false, "file_type": 1, "original_file_name": "JTSS050FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04720dbfb1324cfca0e818c6a8cb99f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04720dbfb1324cfca0e818c6a8cb99f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04720dbfb1324cfca0e818c6a8cb99f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04720dbfb1324cfca0e818c6a8cb99f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04720dbfb1324cfca0e818c6a8cb99f5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yChAWseOStDBPzKLmpCMbHwM_08=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.656957+00 2025-12-09 10:14:59.656962+00 8406 HT0101-39#WJC22 SPMX-20240815303561 \N \N \N 1 \N [{"file_id": "1bdbb8c2-b058-4250-8fbe-419f1e5d33a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e975d72e34e4dd8b389f98c8e898045.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e975d72e34e4dd8b389f98c8e898045.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e975d72e34e4dd8b389f98c8e898045.jpg", "file_size": 15300, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-39#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e975d72e34e4dd8b389f98c8e898045.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e975d72e34e4dd8b389f98c8e898045.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e975d72e34e4dd8b389f98c8e898045.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e975d72e34e4dd8b389f98c8e898045.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e975d72e34e4dd8b389f98c8e898045.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfqMgptPy8Zh3-YCAjPETge_Hj4=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.658667+00 2025-12-09 10:14:59.658673+00 8407 LZ1238#套装下领2号色 SPMX-20240815303555 \N \N \N 1 \N [{"file_id": "115e57e1-f159-439b-8ad5-df6b490a8209", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0f88ac104814013a285b623c7401618.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0f88ac104814013a285b623c7401618.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0f88ac104814013a285b623c7401618.jpg", "file_size": 19051, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#套装下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f88ac104814013a285b623c7401618.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f88ac104814013a285b623c7401618.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f88ac104814013a285b623c7401618.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0f88ac104814013a285b623c7401618.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0f88ac104814013a285b623c7401618.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDZjh3fXA1KbqGvSKMkKEF1dJdg=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.660613+00 2025-12-09 10:14:59.660619+00 8408 DL2-48G613#湖绿S SPMX-20240815303554 \N \N \N 1 \N [{"file_id": "57da9c7a-3d82-4113-aaaa-349f24da5688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0141c79cce1c40348e741a788fbd44d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0141c79cce1c40348e741a788fbd44d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0141c79cce1c40348e741a788fbd44d4.jpg", "file_size": 17510, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#湖绿S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0141c79cce1c40348e741a788fbd44d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0141c79cce1c40348e741a788fbd44d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0141c79cce1c40348e741a788fbd44d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0141c79cce1c40348e741a788fbd44d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0141c79cce1c40348e741a788fbd44d4.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGSEpyAo5Mf5fLigM-kpjF8QDDY=", "createTime": "2024-08-15 14:46:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.662552+00 2025-12-09 10:14:59.662557+00 8409 23-2112#-A8领口通用 SPMX-20240815303569 \N \N \N 1 \N [{"file_id": "e3a52fc3-a581-4a80-9f9b-d5dc7e8612f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "264d6b46c14346dfa8a953b75adcae23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "264d6b46c14346dfa8a953b75adcae23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "264d6b46c14346dfa8a953b75adcae23.jpg", "file_size": 7588, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264d6b46c14346dfa8a953b75adcae23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264d6b46c14346dfa8a953b75adcae23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264d6b46c14346dfa8a953b75adcae23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/264d6b46c14346dfa8a953b75adcae23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/264d6b46c14346dfa8a953b75adcae23.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qyrZTuLQVsFrbGFNXjG5mUdx4k8=", "createTime": "2024-08-15 14:46:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.664327+00 2025-12-09 10:14:59.664332+00 8410 1071913#男3XL+女S+女M SPMX-20240815303575 \N \N \N 1 \N [{"file_id": "f25348c4-ab4d-493e-bc55-77f0b5cb2ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd947788aa6e46fc8c117c723aa8f78d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd947788aa6e46fc8c117c723aa8f78d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd947788aa6e46fc8c117c723aa8f78d.jpg", "file_size": 16940, "is_delete": false, "file_type": 1, "original_file_name": "1071913#男3XL+女S+女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd947788aa6e46fc8c117c723aa8f78d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd947788aa6e46fc8c117c723aa8f78d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd947788aa6e46fc8c117c723aa8f78d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd947788aa6e46fc8c117c723aa8f78d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd947788aa6e46fc8c117c723aa8f78d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_vOfo3G0NAax0cnjZzDMpsQ9CM=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.667883+00 2025-12-09 10:14:59.667888+00 8412 HT0101-4#WJC22 SPMX-20240815303571 \N \N \N 1 \N [{"file_id": "bae86dcd-2fe3-4e19-ad76-5e3557f53966", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ad45b3c3c241d9a7514de011a43711.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ad45b3c3c241d9a7514de011a43711.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ad45b3c3c241d9a7514de011a43711.jpg", "file_size": 20792, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ad45b3c3c241d9a7514de011a43711.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ad45b3c3c241d9a7514de011a43711.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ad45b3c3c241d9a7514de011a43711.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ad45b3c3c241d9a7514de011a43711.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ad45b3c3c241d9a7514de011a43711.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVjo6OhdDQcrF_dyNxQGSVCKBHo=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.666128+00 2025-12-09 10:14:59.666133+00 8411 FHXGPK-087-1 SPMX-20240815303573 \N \N \N 1 \N [{"file_id": "3e00cc29-7f77-4d3b-9b5d-4a5fe904b26c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6565203d891e44e9a0fee2be4be57a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6565203d891e44e9a0fee2be4be57a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6565203d891e44e9a0fee2be4be57a9b.jpg", "file_size": 37696, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-087-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6565203d891e44e9a0fee2be4be57a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6565203d891e44e9a0fee2be4be57a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6565203d891e44e9a0fee2be4be57a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6565203d891e44e9a0fee2be4be57a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6565203d891e44e9a0fee2be4be57a9b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHYr9XAeEJZdLA3U29xOtN65L2w=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.671989+00 2025-12-09 10:14:59.671994+00 8413 LJ20111840601FW#蓝色上衣L VS-D3 SPMX-20240815303570 \N \N \N 1 \N [{"file_id": "5bd4f0f8-a60b-438d-96d8-ecffd7b5d870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b4813aa91034ac9bc42ba1f42cafca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b4813aa91034ac9bc42ba1f42cafca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b4813aa91034ac9bc42ba1f42cafca9.jpg", "file_size": 13477, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#蓝色上衣L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4813aa91034ac9bc42ba1f42cafca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4813aa91034ac9bc42ba1f42cafca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4813aa91034ac9bc42ba1f42cafca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b4813aa91034ac9bc42ba1f42cafca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b4813aa91034ac9bc42ba1f42cafca9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jUBA9SPVEbvUDv3t4euVfJNGeg=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.47836+00 2025-12-09 10:15:37.478368+00 16793 1231-12FWE#中童14码 SPMX-20240815312008 \N \N \N 1 \N [{"file_id": "cd38ce5c-bc56-47d2-b466-3dc10c049636", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a64696a9390460a8296eaf1cfb4b4b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a64696a9390460a8296eaf1cfb4b4b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a64696a9390460a8296eaf1cfb4b4b7.jpg", "file_size": 19929, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a64696a9390460a8296eaf1cfb4b4b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a64696a9390460a8296eaf1cfb4b4b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a64696a9390460a8296eaf1cfb4b4b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a64696a9390460a8296eaf1cfb4b4b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a64696a9390460a8296eaf1cfb4b4b7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDcf9cQvScpE4t9ssy_72ty-tM8=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.673954+00 2025-12-09 10:14:59.67396+00 8414 80313#裤子 SPMX-20240815303574 \N \N \N 1 \N [{"file_id": "127d37f3-c920-44cf-b213-d854b21e3e64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "254d82b5aa034dd89fcba0e9be100308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "254d82b5aa034dd89fcba0e9be100308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "254d82b5aa034dd89fcba0e9be100308.jpg", "file_size": 23139, "is_delete": false, "file_type": 1, "original_file_name": "80313#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254d82b5aa034dd89fcba0e9be100308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254d82b5aa034dd89fcba0e9be100308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254d82b5aa034dd89fcba0e9be100308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/254d82b5aa034dd89fcba0e9be100308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/254d82b5aa034dd89fcba0e9be100308.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhEoFklrsUE28brdkKkJHq3y4LA=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.675918+00 2025-12-09 10:14:59.675924+00 8415 JTSS051FW#VS-D3 SPMX-20240815303578 \N \N \N 1 \N [{"file_id": "ae8dda04-ea8d-421f-8fd8-b563dd8c19a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f0f71ede0694594bd88771a82bab70b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f0f71ede0694594bd88771a82bab70b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f0f71ede0694594bd88771a82bab70b.jpg", "file_size": 19223, "is_delete": false, "file_type": 1, "original_file_name": "JTSS051FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f71ede0694594bd88771a82bab70b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f71ede0694594bd88771a82bab70b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f71ede0694594bd88771a82bab70b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f0f71ede0694594bd88771a82bab70b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f0f71ede0694594bd88771a82bab70b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgR0-B4T7z1x3dYSEk5wuD29avM=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.67782+00 2025-12-09 10:14:59.677825+00 8416 DL2-48G613#绿色L SPMX-20240815303576 \N \N \N 1 \N [{"file_id": "46df616c-c3d6-4259-aaac-0c49c6b73aa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg", "file_size": 18189, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e8eeeec5f3a42e695a0d4f496bf1cf8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEqgI1GZQP2QHs7UfGDIYX6T5jI=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.679748+00 2025-12-09 10:14:59.679754+00 8417 LZ1238#套装下领4号色 SPMX-20240815303577 \N \N \N 1 \N [{"file_id": "5abde1e8-e4f2-4eb2-9054-630b5d6ea93e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c38f68776964a09a684a867c4c45d29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c38f68776964a09a684a867c4c45d29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c38f68776964a09a684a867c4c45d29.jpg", "file_size": 20794, "is_delete": false, "file_type": 1, "original_file_name": "LZ1238#套装下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c38f68776964a09a684a867c4c45d29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c38f68776964a09a684a867c4c45d29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c38f68776964a09a684a867c4c45d29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c38f68776964a09a684a867c4c45d29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c38f68776964a09a684a867c4c45d29.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3kzxU7W86xtoYwmkhC2a8Kxr4g=", "createTime": "2024-08-15 14:46:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.681748+00 2025-12-09 10:14:59.681753+00 8418 23-2112#-A8领子通用 SPMX-20240815303579 \N \N \N 1 \N [{"file_id": "800f1f77-c3f8-4319-93cb-bf64308fff03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240421d29681475186bfac7019fdcac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240421d29681475186bfac7019fdcac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240421d29681475186bfac7019fdcac8.jpg", "file_size": 7443, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A8领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240421d29681475186bfac7019fdcac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240421d29681475186bfac7019fdcac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240421d29681475186bfac7019fdcac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240421d29681475186bfac7019fdcac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240421d29681475186bfac7019fdcac8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuWfJVvJ0DvXd5K_fZe8maJAhRk=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.68368+00 2025-12-09 10:14:59.683685+00 8419 1071913#男L+女L+女XL SPMX-20240815303584 \N \N \N 1 \N [{"file_id": "b111bd5d-c183-4fa7-9787-93d949acb660", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca4a543840cf4b7896b4fb342c9c888d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca4a543840cf4b7896b4fb342c9c888d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca4a543840cf4b7896b4fb342c9c888d.jpg", "file_size": 11580, "is_delete": false, "file_type": 1, "original_file_name": "1071913#男L+女L+女XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4a543840cf4b7896b4fb342c9c888d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4a543840cf4b7896b4fb342c9c888d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4a543840cf4b7896b4fb342c9c888d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca4a543840cf4b7896b4fb342c9c888d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca4a543840cf4b7896b4fb342c9c888d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4A1gAgnwt69LzmHnz-9kBYZaKPQ=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.685395+00 2025-12-09 10:14:59.6854+00 8420 LJ20111840601FW#蓝色上衣M VS-D3 SPMX-20240815303582 \N \N \N 1 \N [{"file_id": "5ee2ba87-9f93-40d9-a0de-ec4affd7a4d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f702cbd542408d9aae4d7a275e579b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f702cbd542408d9aae4d7a275e579b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f702cbd542408d9aae4d7a275e579b.jpg", "file_size": 13893, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#蓝色上衣M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f702cbd542408d9aae4d7a275e579b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f702cbd542408d9aae4d7a275e579b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f702cbd542408d9aae4d7a275e579b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f702cbd542408d9aae4d7a275e579b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f702cbd542408d9aae4d7a275e579b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUow-J33COgBX89zxqCF-phMYbY=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.68714+00 2025-12-09 10:14:59.687145+00 8421 0003-360#WJC22 SPMX-20240815303580 \N \N \N 1 \N [{"file_id": "598b663d-47f9-4125-bf76-ef7effd62e24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef7a55ab1e0444eab864865bad4772a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef7a55ab1e0444eab864865bad4772a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef7a55ab1e0444eab864865bad4772a8.jpg", "file_size": 14998, "is_delete": false, "file_type": 1, "original_file_name": "0003-360#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7a55ab1e0444eab864865bad4772a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7a55ab1e0444eab864865bad4772a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7a55ab1e0444eab864865bad4772a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef7a55ab1e0444eab864865bad4772a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef7a55ab1e0444eab864865bad4772a8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x38-yO3R9gVbQ6VJ2lT-8mqwl0s=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.689115+00 2025-12-09 10:14:59.68912+00 8422 C338#橙色袖子补片S码 SPMX-20240815303583 \N \N \N 1 \N [{"file_id": "f2825e92-cc7b-49b0-8c9b-b6310384a725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cc884c2d40946b899c5726f4ebceac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cc884c2d40946b899c5726f4ebceac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cc884c2d40946b899c5726f4ebceac7.jpg", "file_size": 22598, "is_delete": false, "file_type": 1, "original_file_name": "C338#橙色袖子补片S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc884c2d40946b899c5726f4ebceac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc884c2d40946b899c5726f4ebceac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc884c2d40946b899c5726f4ebceac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cc884c2d40946b899c5726f4ebceac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cc884c2d40946b899c5726f4ebceac7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22GxbNDy0CHY9SYGJVMPR3raqRk=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.69107+00 2025-12-09 10:14:59.691075+00 8423 DL2-48G613#绿色M SPMX-20240815303587 \N \N \N 1 \N [{"file_id": "42c9e516-baf7-44e8-a58d-7d4141f82aca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af8813cb59ba43a4a89bb907f3626ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af8813cb59ba43a4a89bb907f3626ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af8813cb59ba43a4a89bb907f3626ffb.jpg", "file_size": 18267, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8813cb59ba43a4a89bb907f3626ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8813cb59ba43a4a89bb907f3626ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8813cb59ba43a4a89bb907f3626ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af8813cb59ba43a4a89bb907f3626ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af8813cb59ba43a4a89bb907f3626ffb.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dp76og9FOFlNFchXhBioxOYwFQ8=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.693+00 2025-12-09 10:14:59.693005+00 8424 0003-361#WJC22 SPMX-20240815303590 \N \N \N 1 \N [{"file_id": "f158b733-5ef9-4e46-9d83-08e78f2a2f7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c357952641804521a5f3ed5f603c3538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c357952641804521a5f3ed5f603c3538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c357952641804521a5f3ed5f603c3538.jpg", "file_size": 20229, "is_delete": false, "file_type": 1, "original_file_name": "0003-361#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c357952641804521a5f3ed5f603c3538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c357952641804521a5f3ed5f603c3538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c357952641804521a5f3ed5f603c3538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c357952641804521a5f3ed5f603c3538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c357952641804521a5f3ed5f603c3538.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxZn_RBTpVSdbclHAZKoaYb04vM=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.694919+00 2025-12-09 10:14:59.694924+00 8425 FHXGPK-087-2 SPMX-20240815303586 \N \N \N 1 \N [{"file_id": "891dad5f-a0cc-4885-b5dc-56f3133d6561", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c79f6164424a9e864f698f9c992bcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c79f6164424a9e864f698f9c992bcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c79f6164424a9e864f698f9c992bcb.jpg", "file_size": 38360, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-087-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c79f6164424a9e864f698f9c992bcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c79f6164424a9e864f698f9c992bcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c79f6164424a9e864f698f9c992bcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c79f6164424a9e864f698f9c992bcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c79f6164424a9e864f698f9c992bcb.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKesLkL3GGGnh7Tnw9hCsrsTMgc=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.696835+00 2025-12-09 10:14:59.69684+00 8426 LZ1239#上身1号色 SPMX-20240815303589 \N \N \N 1 \N [{"file_id": "ff2136d7-f6af-4631-8307-5d9d51b287aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "425c9069aa5448338e71f898e58f4a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "425c9069aa5448338e71f898e58f4a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "425c9069aa5448338e71f898e58f4a60.jpg", "file_size": 18959, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425c9069aa5448338e71f898e58f4a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425c9069aa5448338e71f898e58f4a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/425c9069aa5448338e71f898e58f4a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/425c9069aa5448338e71f898e58f4a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/425c9069aa5448338e71f898e58f4a60.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjE4bU44rszQZ6_xMbhI0n9F2c4=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.698566+00 2025-12-09 10:14:59.698571+00 8427 JTSS052#粉VS-D3 SPMX-20240815303588 \N \N \N 1 \N [{"file_id": "450c31f5-4b35-497a-b38c-32d2740358ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a01538d7796b483cb4653265711f7d4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a01538d7796b483cb4653265711f7d4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a01538d7796b483cb4653265711f7d4f.jpg", "file_size": 9261, "is_delete": false, "file_type": 1, "original_file_name": "JTSS052#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01538d7796b483cb4653265711f7d4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01538d7796b483cb4653265711f7d4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a01538d7796b483cb4653265711f7d4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a01538d7796b483cb4653265711f7d4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a01538d7796b483cb4653265711f7d4f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeuhPgKaRqXiBxJVgm_8k1gV2Es=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.700279+00 2025-12-09 10:14:59.700284+00 8428 80314#上衣 SPMX-20240815303585 \N \N \N 1 \N [{"file_id": "2fd55b42-d536-4dd5-8b5b-cd0fa6090592", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b7ca25d45db4f1e80b2e13e8ee1671e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b7ca25d45db4f1e80b2e13e8ee1671e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b7ca25d45db4f1e80b2e13e8ee1671e.jpg", "file_size": 19632, "is_delete": false, "file_type": 1, "original_file_name": "80314#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ca25d45db4f1e80b2e13e8ee1671e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ca25d45db4f1e80b2e13e8ee1671e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ca25d45db4f1e80b2e13e8ee1671e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b7ca25d45db4f1e80b2e13e8ee1671e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b7ca25d45db4f1e80b2e13e8ee1671e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnWk9QBJqPaIe2jrhubNCPABr_s=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.701988+00 2025-12-09 10:14:59.701993+00 8429 HT0101-40#WJC22 SPMX-20240815303581 \N \N \N 1 \N [{"file_id": "b16051de-53e6-4f1a-be09-dfa91f6e404f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45cc874697ee43bf9319680151190cdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45cc874697ee43bf9319680151190cdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45cc874697ee43bf9319680151190cdd.jpg", "file_size": 17574, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-40#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cc874697ee43bf9319680151190cdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cc874697ee43bf9319680151190cdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cc874697ee43bf9319680151190cdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45cc874697ee43bf9319680151190cdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45cc874697ee43bf9319680151190cdd.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4mz61ui4RFz6iVcCcT4pfQtfas=", "createTime": "2024-08-15 14:46:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.703882+00 2025-12-09 10:14:59.703887+00 8430 DL2-48G613#绿色S SPMX-20240815303598 \N \N \N 1 \N [{"file_id": "2929dd15-9c65-4f0a-b3c2-c52de9f98ec3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e0eb687acd54354a31c5c8cddd08c3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e0eb687acd54354a31c5c8cddd08c3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e0eb687acd54354a31c5c8cddd08c3d.jpg", "file_size": 18462, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0eb687acd54354a31c5c8cddd08c3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0eb687acd54354a31c5c8cddd08c3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0eb687acd54354a31c5c8cddd08c3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e0eb687acd54354a31c5c8cddd08c3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e0eb687acd54354a31c5c8cddd08c3d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_wsbP8HgnhSKb_TXq0B6mR7iNY=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.705595+00 2025-12-09 10:14:59.7056+00 8431 C338#橙色裤子补片XL码 SPMX-20240815303593 \N \N \N 1 \N [{"file_id": "53be5e13-e3d6-4e53-9d7c-cfbe13bbf463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72a30c046c474bb88416e1677ea18e50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72a30c046c474bb88416e1677ea18e50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72a30c046c474bb88416e1677ea18e50.jpg", "file_size": 20774, "is_delete": false, "file_type": 1, "original_file_name": "C338#橙色裤子补片XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a30c046c474bb88416e1677ea18e50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a30c046c474bb88416e1677ea18e50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a30c046c474bb88416e1677ea18e50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72a30c046c474bb88416e1677ea18e50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72a30c046c474bb88416e1677ea18e50.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aSfaQ2pCjyobxy4aO_SAVL1q7w=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.7073+00 2025-12-09 10:14:59.707305+00 8432 LJ20111840601FW#蓝色上衣S VS-D3 SPMX-20240815303594 \N \N \N 1 \N [{"file_id": "4db0819b-ff85-41b0-9893-08846f211e27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31c13e9e357c4552bc0307db2d871c6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31c13e9e357c4552bc0307db2d871c6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31c13e9e357c4552bc0307db2d871c6d.jpg", "file_size": 14226, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#蓝色上衣S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c13e9e357c4552bc0307db2d871c6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c13e9e357c4552bc0307db2d871c6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c13e9e357c4552bc0307db2d871c6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31c13e9e357c4552bc0307db2d871c6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31c13e9e357c4552bc0307db2d871c6d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WV-tXNHvVnRwNx6b8wGOt4R6XUc=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.708998+00 2025-12-09 10:14:59.709003+00 8433 HT0101-41#WJC22 SPMX-20240815303592 \N \N \N 1 \N [{"file_id": "125b62b8-5534-4e31-9cb4-323c8cacf108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3d98ea62cbe4c129bb40666fa453f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3d98ea62cbe4c129bb40666fa453f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3d98ea62cbe4c129bb40666fa453f7d.jpg", "file_size": 15721, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-41#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d98ea62cbe4c129bb40666fa453f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d98ea62cbe4c129bb40666fa453f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d98ea62cbe4c129bb40666fa453f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3d98ea62cbe4c129bb40666fa453f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3d98ea62cbe4c129bb40666fa453f7d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u61n6H6q1awfI64ruNsZtkpf_Ik=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.710893+00 2025-12-09 10:14:59.710899+00 8434 1071913#男S+M SPMX-20240815303595 \N \N \N 1 \N [{"file_id": "e19f735d-ba78-4986-b7da-48a3189b2efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "209c021615754ebdbc07b7c1e6edd0f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "209c021615754ebdbc07b7c1e6edd0f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "209c021615754ebdbc07b7c1e6edd0f4.jpg", "file_size": 16468, "is_delete": false, "file_type": 1, "original_file_name": "1071913#男S+M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209c021615754ebdbc07b7c1e6edd0f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209c021615754ebdbc07b7c1e6edd0f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209c021615754ebdbc07b7c1e6edd0f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/209c021615754ebdbc07b7c1e6edd0f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/209c021615754ebdbc07b7c1e6edd0f4.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zh730oZP_WVgxtX0QCKWB7I1LBo=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.712614+00 2025-12-09 10:14:59.712619+00 8435 80314#中童 SPMX-20240815303596 \N \N \N 1 \N [{"file_id": "d3294215-b384-4f60-b603-b70cd6b6dc83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98ae6812041d4d75a60603023edb2f34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98ae6812041d4d75a60603023edb2f34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98ae6812041d4d75a60603023edb2f34.jpg", "file_size": 28592, "is_delete": false, "file_type": 1, "original_file_name": "80314#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ae6812041d4d75a60603023edb2f34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ae6812041d4d75a60603023edb2f34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ae6812041d4d75a60603023edb2f34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98ae6812041d4d75a60603023edb2f34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98ae6812041d4d75a60603023edb2f34.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2j4oOOjUQbH0uw_6S_gqh30oVZk=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.714324+00 2025-12-09 10:14:59.714329+00 8436 23-2112#-A9前后片3XL SPMX-20240815303591 \N \N \N 1 \N [{"file_id": "e10c95c1-204d-459a-b75a-edd43bb86ff5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "347d95a9605b4324954fe31b249a0b41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "347d95a9605b4324954fe31b249a0b41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "347d95a9605b4324954fe31b249a0b41.jpg", "file_size": 9767, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347d95a9605b4324954fe31b249a0b41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347d95a9605b4324954fe31b249a0b41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347d95a9605b4324954fe31b249a0b41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/347d95a9605b4324954fe31b249a0b41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/347d95a9605b4324954fe31b249a0b41.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhOeWUfCfETjcu6lRCnVHMWmneg=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.716042+00 2025-12-09 10:14:59.716047+00 8437 0003-362#WJC22 SPMX-20240815303599 \N \N \N 1 \N [{"file_id": "353d0476-0e29-48d9-a202-14147d0260f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b21fd72ce5ae476cb10d1f642d64a72c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b21fd72ce5ae476cb10d1f642d64a72c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b21fd72ce5ae476cb10d1f642d64a72c.jpg", "file_size": 15832, "is_delete": false, "file_type": 1, "original_file_name": "0003-362#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21fd72ce5ae476cb10d1f642d64a72c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21fd72ce5ae476cb10d1f642d64a72c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21fd72ce5ae476cb10d1f642d64a72c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b21fd72ce5ae476cb10d1f642d64a72c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b21fd72ce5ae476cb10d1f642d64a72c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1n9YGtF861xIkqeQ70JweDYaVE=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.718032+00 2025-12-09 10:14:59.718036+00 8438 LZ1239#上身2号色 SPMX-20240815303597 \N \N \N 1 \N [{"file_id": "04dd667c-9500-4f19-9627-6310ff9d646e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08551f43561f46aba46e8f39348d95c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08551f43561f46aba46e8f39348d95c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08551f43561f46aba46e8f39348d95c3.jpg", "file_size": 17932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08551f43561f46aba46e8f39348d95c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08551f43561f46aba46e8f39348d95c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08551f43561f46aba46e8f39348d95c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08551f43561f46aba46e8f39348d95c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08551f43561f46aba46e8f39348d95c3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UVUfCpStzb2wN6CLk0r7_WRaYX0=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.719933+00 2025-12-09 10:14:59.719938+00 8439 JTSS052#蓝VS-D3 SPMX-20240815303600 \N \N \N 1 \N [{"file_id": "246c4e8a-5163-46d7-ad37-9ddd99c3564b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ec803cb397740fcb9180a754e049d1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ec803cb397740fcb9180a754e049d1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ec803cb397740fcb9180a754e049d1f.jpg", "file_size": 8924, "is_delete": false, "file_type": 1, "original_file_name": "JTSS052#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec803cb397740fcb9180a754e049d1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec803cb397740fcb9180a754e049d1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec803cb397740fcb9180a754e049d1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ec803cb397740fcb9180a754e049d1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ec803cb397740fcb9180a754e049d1f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OjezTwcDC8Fv0f_B7Bw9pvXIsSw=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.721922+00 2025-12-09 10:14:59.721927+00 8440 FHXGPK-087-3 SPMX-20240815303601 \N \N \N 1 \N [{"file_id": "2ef8166d-0ed5-4308-a342-ec3f7d395e90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1318116cd09b42eb996ec8b419a160cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1318116cd09b42eb996ec8b419a160cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1318116cd09b42eb996ec8b419a160cd.jpg", "file_size": 37709, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-087-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1318116cd09b42eb996ec8b419a160cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1318116cd09b42eb996ec8b419a160cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1318116cd09b42eb996ec8b419a160cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1318116cd09b42eb996ec8b419a160cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1318116cd09b42eb996ec8b419a160cd.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGFQjqYh4x6By-WZYB37ZOAcdZA=", "createTime": "2024-08-15 14:46:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.723894+00 2025-12-09 10:14:59.723899+00 8441 0003-363#WJC22 SPMX-20240815303609 \N \N \N 1 \N [{"file_id": "e15932df-e7e0-4752-81e7-9597ca1ff5c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63673934d5c3481599a0481794795d51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63673934d5c3481599a0481794795d51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63673934d5c3481599a0481794795d51.jpg", "file_size": 17136, "is_delete": false, "file_type": 1, "original_file_name": "0003-363#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63673934d5c3481599a0481794795d51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63673934d5c3481599a0481794795d51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63673934d5c3481599a0481794795d51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63673934d5c3481599a0481794795d51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63673934d5c3481599a0481794795d51.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pSsnoO_J3m0DWBnWyWxSdSNrEQA=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.725903+00 2025-12-09 10:14:59.725908+00 8442 HT0101-42#大红 SPMX-20240815303608 \N \N \N 1 \N [{"file_id": "b15d8b59-36ac-400c-8af9-77155411f888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31d622e3d02240f79c7acc2852a65346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31d622e3d02240f79c7acc2852a65346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31d622e3d02240f79c7acc2852a65346.jpg", "file_size": 15668, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-42#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d622e3d02240f79c7acc2852a65346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d622e3d02240f79c7acc2852a65346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d622e3d02240f79c7acc2852a65346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31d622e3d02240f79c7acc2852a65346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31d622e3d02240f79c7acc2852a65346.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoM2bMed4HjaSvSHHD37oLsp2TU=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.727913+00 2025-12-09 10:14:59.727918+00 8443 FHXGPK-087-4 SPMX-20240815303612 \N \N \N 1 \N [{"file_id": "ea5117c5-3dc3-4db4-8df5-3cc92a4152d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e8abc2eb7ca4f72b13c2f27027b4f44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e8abc2eb7ca4f72b13c2f27027b4f44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e8abc2eb7ca4f72b13c2f27027b4f44.jpg", "file_size": 34416, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-087-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8abc2eb7ca4f72b13c2f27027b4f44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8abc2eb7ca4f72b13c2f27027b4f44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8abc2eb7ca4f72b13c2f27027b4f44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e8abc2eb7ca4f72b13c2f27027b4f44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e8abc2eb7ca4f72b13c2f27027b4f44.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZC-GTs_j-Gs0aHPFZ0ZTvzD94M=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.729886+00 2025-12-09 10:14:59.729891+00 8444 LJ20111840601FW#蓝色上衣XL VS-D3 SPMX-20240815303602 \N \N \N 1 \N [{"file_id": "79e9fd2d-a006-42f6-81b2-4c0b03114503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bff244b482e4148aaa9b364d6bbe28f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bff244b482e4148aaa9b364d6bbe28f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bff244b482e4148aaa9b364d6bbe28f.jpg", "file_size": 13144, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#蓝色上衣XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bff244b482e4148aaa9b364d6bbe28f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bff244b482e4148aaa9b364d6bbe28f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bff244b482e4148aaa9b364d6bbe28f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bff244b482e4148aaa9b364d6bbe28f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bff244b482e4148aaa9b364d6bbe28f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYAIJdHDmv_8I4Fuo5B8ege1PvM=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.731867+00 2025-12-09 10:14:59.731871+00 8445 23-2112#-A9前后片4XL SPMX-20240815303603 \N \N \N 1 \N [{"file_id": "4d5af0c9-d553-410d-905c-db45dc8fb1c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c441dc603294e0c87487536ae013767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c441dc603294e0c87487536ae013767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c441dc603294e0c87487536ae013767.jpg", "file_size": 10202, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c441dc603294e0c87487536ae013767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c441dc603294e0c87487536ae013767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c441dc603294e0c87487536ae013767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c441dc603294e0c87487536ae013767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c441dc603294e0c87487536ae013767.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_d2aH9_yXAASpFgP8d5VHNp2XbM=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.733863+00 2025-12-09 10:14:59.733868+00 8446 DL2-48G613#绿色XL SPMX-20240815303606 \N \N \N 1 \N [{"file_id": "f637f427-3ddc-493c-9f54-ef28772bcb6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e4ef011edac4c0dbe5020e8d7eab776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e4ef011edac4c0dbe5020e8d7eab776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e4ef011edac4c0dbe5020e8d7eab776.jpg", "file_size": 17809, "is_delete": false, "file_type": 1, "original_file_name": "DL2-48G613#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4ef011edac4c0dbe5020e8d7eab776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4ef011edac4c0dbe5020e8d7eab776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e4ef011edac4c0dbe5020e8d7eab776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e4ef011edac4c0dbe5020e8d7eab776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e4ef011edac4c0dbe5020e8d7eab776.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BR3ci2xi2U4fZhUjDkLN03Zjo0=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.735889+00 2025-12-09 10:14:59.735894+00 8447 C338#玫红 SPMX-20240815303605 \N \N \N 1 \N [{"file_id": "dc760d1c-ae22-4643-9d7f-e1cc21f22857", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10e9e64ab84445d3a9ee8d0907f0ad12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10e9e64ab84445d3a9ee8d0907f0ad12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10e9e64ab84445d3a9ee8d0907f0ad12.jpg", "file_size": 21206, "is_delete": false, "file_type": 1, "original_file_name": "C338#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e9e64ab84445d3a9ee8d0907f0ad12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e9e64ab84445d3a9ee8d0907f0ad12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e9e64ab84445d3a9ee8d0907f0ad12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10e9e64ab84445d3a9ee8d0907f0ad12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10e9e64ab84445d3a9ee8d0907f0ad12.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhgbU3sSaJHBIUh45XqecEqINLY=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.73782+00 2025-12-09 10:14:59.737825+00 8448 80314#乱花 SPMX-20240815303604 \N \N \N 1 \N [{"file_id": "12965510-3573-40ab-ae66-6931aea4f8c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcdd561e819d47128c450622cfec2b53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcdd561e819d47128c450622cfec2b53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcdd561e819d47128c450622cfec2b53.jpg", "file_size": 8951, "is_delete": false, "file_type": 1, "original_file_name": "80314#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdd561e819d47128c450622cfec2b53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdd561e819d47128c450622cfec2b53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdd561e819d47128c450622cfec2b53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcdd561e819d47128c450622cfec2b53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcdd561e819d47128c450622cfec2b53.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbGQkYkZ_8CC58qLv0FE82p2Yqg=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.739578+00 2025-12-09 10:14:59.739584+00 8449 JTSS052FW#VS-D3 SPMX-20240815303610 \N \N \N 1 \N [{"file_id": "4b05fa3e-8833-4be0-8d7f-a007e4d0f2d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "489787b454e14f4c8f94435ff53126af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "489787b454e14f4c8f94435ff53126af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "489787b454e14f4c8f94435ff53126af.jpg", "file_size": 5469, "is_delete": false, "file_type": 1, "original_file_name": "JTSS052FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489787b454e14f4c8f94435ff53126af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489787b454e14f4c8f94435ff53126af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489787b454e14f4c8f94435ff53126af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/489787b454e14f4c8f94435ff53126af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/489787b454e14f4c8f94435ff53126af.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7DHDrvZ4IBVxf628easJFCfgmw=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.741168+00 2025-12-09 10:14:59.741172+00 8450 1071913#男XL+男2XL+女2XL+女3XL+童10T+12T SPMX-20240815303607 \N \N \N 1 \N [{"file_id": "64d42fd7-26ca-420d-8771-106f1ef8debe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d00f27394624811aec579d1a8c6db7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d00f27394624811aec579d1a8c6db7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d00f27394624811aec579d1a8c6db7f.jpg", "file_size": 18288, "is_delete": false, "file_type": 1, "original_file_name": "1071913#男XL+男2XL+女2XL+女3XL+童10T+12T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d00f27394624811aec579d1a8c6db7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d00f27394624811aec579d1a8c6db7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d00f27394624811aec579d1a8c6db7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d00f27394624811aec579d1a8c6db7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d00f27394624811aec579d1a8c6db7f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtG7twf6fpKuC6L7mqoTf3Ao8f0=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.742724+00 2025-12-09 10:14:59.742729+00 8451 LZ1239#上身3号色 SPMX-20240815303611 \N \N \N 1 \N [{"file_id": "6ffd52b2-5aea-437d-934f-b3175757775d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5edcaa7f63114817924a84d890f092a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5edcaa7f63114817924a84d890f092a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5edcaa7f63114817924a84d890f092a0.jpg", "file_size": 20256, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edcaa7f63114817924a84d890f092a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edcaa7f63114817924a84d890f092a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edcaa7f63114817924a84d890f092a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5edcaa7f63114817924a84d890f092a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5edcaa7f63114817924a84d890f092a0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rulpsO1gkJPgpOMYZR5V1hfHVx4=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.744245+00 2025-12-09 10:14:59.744249+00 8452 HT0101-42#红色 SPMX-20240815303619 \N \N \N 1 \N [{"file_id": "c224010a-2f25-46c5-a056-fa1d18d99e24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a07a6cad06f84098a0e5c4929c21a90b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a07a6cad06f84098a0e5c4929c21a90b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a07a6cad06f84098a0e5c4929c21a90b.jpg", "file_size": 13819, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-42#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07a6cad06f84098a0e5c4929c21a90b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07a6cad06f84098a0e5c4929c21a90b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07a6cad06f84098a0e5c4929c21a90b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a07a6cad06f84098a0e5c4929c21a90b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a07a6cad06f84098a0e5c4929c21a90b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ds1ln52lJYPkEhUf_6CrNMZQ1JU=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.745776+00 2025-12-09 10:14:59.74578+00 8453 80314#匹布 SPMX-20240815303615 \N \N \N 1 \N [{"file_id": "037074a7-2167-40cb-a02e-0fcf348f63d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95bec555437748d3829e93e2f3219f01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95bec555437748d3829e93e2f3219f01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95bec555437748d3829e93e2f3219f01.jpg", "file_size": 20225, "is_delete": false, "file_type": 1, "original_file_name": "80314#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95bec555437748d3829e93e2f3219f01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95bec555437748d3829e93e2f3219f01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95bec555437748d3829e93e2f3219f01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95bec555437748d3829e93e2f3219f01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95bec555437748d3829e93e2f3219f01.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVqXXymfd1KBUuZyfuQBW4-qPvc=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.747313+00 2025-12-09 10:14:59.747318+00 8454 JTSS053#宝蓝白条VS-D3 SPMX-20240815303618 \N \N \N 1 \N [{"file_id": "734acbad-54dc-4829-8f96-9040e0245ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c62f00d0e14a4cb4854a6eab9c467863.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c62f00d0e14a4cb4854a6eab9c467863.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c62f00d0e14a4cb4854a6eab9c467863.jpg", "file_size": 10407, "is_delete": false, "file_type": 1, "original_file_name": "JTSS053#宝蓝白条VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62f00d0e14a4cb4854a6eab9c467863.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62f00d0e14a4cb4854a6eab9c467863.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62f00d0e14a4cb4854a6eab9c467863.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c62f00d0e14a4cb4854a6eab9c467863.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c62f00d0e14a4cb4854a6eab9c467863.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DPeSMf2tNsZ9DBIvmjH7ZcSg7I8=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.749122+00 2025-12-09 10:14:59.749127+00 8455 DL2-54G43#卡其色 SPMX-20240815303621 \N \N \N 1 \N [{"file_id": "78d5c4cf-1969-4697-a69b-05f389565fd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fcb9e94197341ff8a988c22c9788003.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fcb9e94197341ff8a988c22c9788003.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fcb9e94197341ff8a988c22c9788003.jpg", "file_size": 17771, "is_delete": false, "file_type": 1, "original_file_name": "DL2-54G43#卡其色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcb9e94197341ff8a988c22c9788003.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcb9e94197341ff8a988c22c9788003.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcb9e94197341ff8a988c22c9788003.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fcb9e94197341ff8a988c22c9788003.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fcb9e94197341ff8a988c22c9788003.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMfQ5F8Y-W8xZtlw0C3KR_oUfAE=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.750655+00 2025-12-09 10:14:59.750659+00 8456 LZ1239#上身4号色 SPMX-20240815303622 \N \N \N 1 \N [{"file_id": "ab7ceb77-d565-48eb-9adc-27abe2423342", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c6a54609754e339196615be54aa914.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c6a54609754e339196615be54aa914.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c6a54609754e339196615be54aa914.jpg", "file_size": 17856, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c6a54609754e339196615be54aa914.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c6a54609754e339196615be54aa914.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c6a54609754e339196615be54aa914.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c6a54609754e339196615be54aa914.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c6a54609754e339196615be54aa914.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VVsmvAU2ZINuvo5QE2kBSN6Qo8=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.752193+00 2025-12-09 10:14:59.752198+00 8457 LJ20111840601FW#蓝色上衣批布VS-D3 SPMX-20240815303614 \N \N \N 1 \N [{"file_id": "1393ba14-5f3a-435b-8d64-b7bb10c4a39f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfa2cadf53fb4d2e9d718e870ec8dff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfa2cadf53fb4d2e9d718e870ec8dff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfa2cadf53fb4d2e9d718e870ec8dff7.jpg", "file_size": 5985, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#蓝色上衣批布VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa2cadf53fb4d2e9d718e870ec8dff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa2cadf53fb4d2e9d718e870ec8dff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa2cadf53fb4d2e9d718e870ec8dff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfa2cadf53fb4d2e9d718e870ec8dff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfa2cadf53fb4d2e9d718e870ec8dff7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYL9sB-KwRi0t_ivkfhfL0e41UM=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.753723+00 2025-12-09 10:14:59.753728+00 8458 23-2112#-A9袖子3XL SPMX-20240815303613 \N \N \N 1 \N [{"file_id": "9c89ff71-5387-48c4-b32d-fb467d21eb51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96677643156d43d0acfb53731aae06b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96677643156d43d0acfb53731aae06b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96677643156d43d0acfb53731aae06b9.jpg", "file_size": 10104, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96677643156d43d0acfb53731aae06b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96677643156d43d0acfb53731aae06b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96677643156d43d0acfb53731aae06b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96677643156d43d0acfb53731aae06b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96677643156d43d0acfb53731aae06b9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AagFBQZTbReOduqeBcyigP7dPZA=", "createTime": "2024-08-15 14:47:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.755253+00 2025-12-09 10:14:59.755257+00 8459 0003-364#WJC22 SPMX-20240815303620 \N \N \N 1 \N [{"file_id": "76d2699b-d787-4597-8b27-dad11ba30eb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8462b86d24294eb3a6dbeffff716ee0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8462b86d24294eb3a6dbeffff716ee0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8462b86d24294eb3a6dbeffff716ee0e.jpg", "file_size": 13786, "is_delete": false, "file_type": 1, "original_file_name": "0003-364#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8462b86d24294eb3a6dbeffff716ee0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8462b86d24294eb3a6dbeffff716ee0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8462b86d24294eb3a6dbeffff716ee0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8462b86d24294eb3a6dbeffff716ee0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8462b86d24294eb3a6dbeffff716ee0e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxwBPGa3CJgMCld89rUyfTb01W0=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.756767+00 2025-12-09 10:14:59.756772+00 8460 C338#黑色 SPMX-20240815303616 \N \N \N 1 \N [{"file_id": "def692cf-d583-42c7-9073-67298c827cc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d9dd6fbf06c431abc647d4a0f963187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d9dd6fbf06c431abc647d4a0f963187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d9dd6fbf06c431abc647d4a0f963187.jpg", "file_size": 22779, "is_delete": false, "file_type": 1, "original_file_name": "C338#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9dd6fbf06c431abc647d4a0f963187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9dd6fbf06c431abc647d4a0f963187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9dd6fbf06c431abc647d4a0f963187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d9dd6fbf06c431abc647d4a0f963187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d9dd6fbf06c431abc647d4a0f963187.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bpw1I4V7KsVfbeudm3OcNHYrVMQ=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.758288+00 2025-12-09 10:14:59.758292+00 8461 1071913#童14T SPMX-20240815303617 \N \N \N 1 \N [{"file_id": "d26088b1-4616-40cd-9e67-20d8d6c57363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ada1933d8c94096bb8d3bfcfc91cf26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ada1933d8c94096bb8d3bfcfc91cf26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ada1933d8c94096bb8d3bfcfc91cf26.jpg", "file_size": 11452, "is_delete": false, "file_type": 1, "original_file_name": "1071913#童14T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada1933d8c94096bb8d3bfcfc91cf26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada1933d8c94096bb8d3bfcfc91cf26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada1933d8c94096bb8d3bfcfc91cf26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ada1933d8c94096bb8d3bfcfc91cf26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ada1933d8c94096bb8d3bfcfc91cf26.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WY-omeR3i24vZTzDmeYNSxyQ6OI=", "createTime": "2024-08-15 14:47:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.774469+00 2025-12-09 10:14:59.774474+00 8470 HT0101-42#绿色 SPMX-20240815303633 \N \N \N 1 \N [{"file_id": "b6cb04ed-130e-43d3-b1bc-91204ab0828f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdac9044b4634a88b69df14b600b1fbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdac9044b4634a88b69df14b600b1fbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdac9044b4634a88b69df14b600b1fbf.jpg", "file_size": 13157, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-42#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdac9044b4634a88b69df14b600b1fbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdac9044b4634a88b69df14b600b1fbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdac9044b4634a88b69df14b600b1fbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdac9044b4634a88b69df14b600b1fbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdac9044b4634a88b69df14b600b1fbf.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w9HmE3r9bGMbJke6w_uMsIFsA00=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.759847+00 2025-12-09 10:14:59.759852+00 8462 1071913#童2T+3T+4T+6T+8T SPMX-20240815303630 \N \N \N 1 \N [{"file_id": "51f557a2-7272-41ce-953c-6b454fb1f183", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ccbfc936644e7ab7daf292c8622aa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ccbfc936644e7ab7daf292c8622aa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ccbfc936644e7ab7daf292c8622aa5.jpg", "file_size": 15542, "is_delete": false, "file_type": 1, "original_file_name": "1071913#童2T+3T+4T+6T+8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ccbfc936644e7ab7daf292c8622aa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ccbfc936644e7ab7daf292c8622aa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ccbfc936644e7ab7daf292c8622aa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ccbfc936644e7ab7daf292c8622aa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ccbfc936644e7ab7daf292c8622aa5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IC4WyoDi3NzIc8O-AJ7fdKu_sGM=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.761377+00 2025-12-09 10:14:59.761382+00 8463 80314#小童 SPMX-20240815303627 \N \N \N 1 \N [{"file_id": "c9105c7a-adda-4a67-be6d-ed7a8e8e8aa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f884a5adeda347eb9f00da4a6e1a5e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f884a5adeda347eb9f00da4a6e1a5e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f884a5adeda347eb9f00da4a6e1a5e9f.jpg", "file_size": 29440, "is_delete": false, "file_type": 1, "original_file_name": "80314#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f884a5adeda347eb9f00da4a6e1a5e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f884a5adeda347eb9f00da4a6e1a5e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f884a5adeda347eb9f00da4a6e1a5e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f884a5adeda347eb9f00da4a6e1a5e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f884a5adeda347eb9f00da4a6e1a5e9f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTxsZshUag8LywrcX4KMDqyz4aA=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.762946+00 2025-12-09 10:14:59.76295+00 8464 0003-365#WJC22 SPMX-20240815303632 \N \N \N 1 \N [{"file_id": "093e88d8-44dd-4c28-926a-d4616f1b26d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7843e69961c481ea307b8cbc8d8d7c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7843e69961c481ea307b8cbc8d8d7c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7843e69961c481ea307b8cbc8d8d7c5.jpg", "file_size": 12479, "is_delete": false, "file_type": 1, "original_file_name": "0003-365#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7843e69961c481ea307b8cbc8d8d7c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7843e69961c481ea307b8cbc8d8d7c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7843e69961c481ea307b8cbc8d8d7c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7843e69961c481ea307b8cbc8d8d7c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7843e69961c481ea307b8cbc8d8d7c5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AURtaYnSkvCVcblk0lShSKwAcpc=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.764702+00 2025-12-09 10:14:59.764713+00 8465 23-2112#-A9袖子4XL SPMX-20240815303624 \N \N \N 1 \N [{"file_id": "f16b75db-de03-42f9-90c0-e16a8dc39ffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e60c949c2dc44a8a8334cc0fd0a09d94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e60c949c2dc44a8a8334cc0fd0a09d94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e60c949c2dc44a8a8334cc0fd0a09d94.jpg", "file_size": 10263, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60c949c2dc44a8a8334cc0fd0a09d94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60c949c2dc44a8a8334cc0fd0a09d94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60c949c2dc44a8a8334cc0fd0a09d94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e60c949c2dc44a8a8334cc0fd0a09d94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e60c949c2dc44a8a8334cc0fd0a09d94.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rePLeYr1a7v7bFCAWvPIYNkEykM=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.766656+00 2025-12-09 10:14:59.766661+00 8466 DL2-54G43#姜黄色 SPMX-20240815303626 \N \N \N 1 \N [{"file_id": "c77b99cc-1d28-407e-a454-2145ff81cd1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c590bec0b074ee8a0d67d3fdaa96bbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c590bec0b074ee8a0d67d3fdaa96bbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c590bec0b074ee8a0d67d3fdaa96bbd.jpg", "file_size": 14422, "is_delete": false, "file_type": 1, "original_file_name": "DL2-54G43#姜黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c590bec0b074ee8a0d67d3fdaa96bbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c590bec0b074ee8a0d67d3fdaa96bbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c590bec0b074ee8a0d67d3fdaa96bbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c590bec0b074ee8a0d67d3fdaa96bbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c590bec0b074ee8a0d67d3fdaa96bbd.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dwM5rF7nrLpdsoQTE3CsI6NnNjk=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.768611+00 2025-12-09 10:14:59.768616+00 8467 LJ20111840601FW#裤子L VS-D3 SPMX-20240815303628 \N \N \N 1 \N [{"file_id": "3acb205d-1bc8-4b73-8e45-d62b4f9ece0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db4ed9ef57d445568db2bcd95d0e132b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db4ed9ef57d445568db2bcd95d0e132b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db4ed9ef57d445568db2bcd95d0e132b.jpg", "file_size": 11285, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#裤子L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4ed9ef57d445568db2bcd95d0e132b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4ed9ef57d445568db2bcd95d0e132b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4ed9ef57d445568db2bcd95d0e132b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db4ed9ef57d445568db2bcd95d0e132b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db4ed9ef57d445568db2bcd95d0e132b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9_EQvIFZVrPUPRGFJfYi7isdnk=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.770552+00 2025-12-09 10:14:59.770557+00 8468 C338-1#紫色L码 SPMX-20240815303623 \N \N \N 1 \N [{"file_id": "0b744b43-317c-4dc2-962a-028d3099e3ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "103ee313191c43eda052d31cea3e6f99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "103ee313191c43eda052d31cea3e6f99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "103ee313191c43eda052d31cea3e6f99.jpg", "file_size": 12358, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#紫色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103ee313191c43eda052d31cea3e6f99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103ee313191c43eda052d31cea3e6f99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103ee313191c43eda052d31cea3e6f99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/103ee313191c43eda052d31cea3e6f99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/103ee313191c43eda052d31cea3e6f99.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGSAq4q-iAvinpy_iVINGVZc1H0=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.772498+00 2025-12-09 10:14:59.772503+00 8469 FHXGPK-087-5 SPMX-20240815303625 \N \N \N 1 \N [{"file_id": "c766cf67-c912-4c25-85e7-74cb18c21129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg", "file_size": 36201, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-087-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffd44fbddafc4f6ebbd5d9d74aeb6684.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7F7TK58ktkgt4N4Z0E3aaYsk7iI=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.776451+00 2025-12-09 10:14:59.776455+00 8471 JTSS053FW#VS-D3 SPMX-20240815303631 \N \N \N 1 \N [{"file_id": "2f573394-d0b3-4281-ab18-30c22df42b42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "909c2797ed4443bda86c74f8503bf350.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "909c2797ed4443bda86c74f8503bf350.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "909c2797ed4443bda86c74f8503bf350.jpg", "file_size": 8459, "is_delete": false, "file_type": 1, "original_file_name": "JTSS053FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909c2797ed4443bda86c74f8503bf350.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909c2797ed4443bda86c74f8503bf350.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909c2797ed4443bda86c74f8503bf350.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/909c2797ed4443bda86c74f8503bf350.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/909c2797ed4443bda86c74f8503bf350.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZMNxlWQ47R5KdFZLd5rKex4oEY=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.778187+00 2025-12-09 10:14:59.778192+00 8472 LZ1239#上身不下领1号色 SPMX-20240815303629 \N \N \N 1 \N [{"file_id": "f04d6010-5d46-4a6c-ab72-b9d0d4e55e8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c626bfcc9034ed49d93606c61080445.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c626bfcc9034ed49d93606c61080445.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c626bfcc9034ed49d93606c61080445.jpg", "file_size": 19858, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身不下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c626bfcc9034ed49d93606c61080445.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c626bfcc9034ed49d93606c61080445.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c626bfcc9034ed49d93606c61080445.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c626bfcc9034ed49d93606c61080445.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c626bfcc9034ed49d93606c61080445.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsCfx9Kqahm781nYCg_sBQ7kTjQ=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.779907+00 2025-12-09 10:14:59.779912+00 8473 LJ20111840601FW#裤子M VS-D3 SPMX-20240815303638 \N \N \N 1 \N [{"file_id": "a535a661-6b88-44ac-8d57-42145df6d074", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2912aa3663ca403ebe6e553ae4b846a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2912aa3663ca403ebe6e553ae4b846a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2912aa3663ca403ebe6e553ae4b846a7.jpg", "file_size": 11732, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#裤子M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2912aa3663ca403ebe6e553ae4b846a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2912aa3663ca403ebe6e553ae4b846a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2912aa3663ca403ebe6e553ae4b846a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2912aa3663ca403ebe6e553ae4b846a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2912aa3663ca403ebe6e553ae4b846a7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kcVULP0bNaYSjMxmxsrxwDCQzJg=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.781615+00 2025-12-09 10:14:59.78162+00 8474 0003-366#WJC22 SPMX-20240815303643 \N \N \N 1 \N [{"file_id": "e053a930-7442-4c7b-921e-a7ce8c5d172c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f49627d0bf74b8780c3b44864fbaf96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f49627d0bf74b8780c3b44864fbaf96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f49627d0bf74b8780c3b44864fbaf96.jpg", "file_size": 16158, "is_delete": false, "file_type": 1, "original_file_name": "0003-366#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f49627d0bf74b8780c3b44864fbaf96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f49627d0bf74b8780c3b44864fbaf96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f49627d0bf74b8780c3b44864fbaf96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f49627d0bf74b8780c3b44864fbaf96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f49627d0bf74b8780c3b44864fbaf96.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHYETrgWLwIrhSWQW3uVZ37XinA=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.783561+00 2025-12-09 10:14:59.783567+00 8475 C338-1#紫色M码 SPMX-20240815303635 \N \N \N 1 \N [{"file_id": "0f3c2ed6-993e-4d5d-8a70-72fb747dee3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfb2151dad074407a9f58abd2845b757.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfb2151dad074407a9f58abd2845b757.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfb2151dad074407a9f58abd2845b757.jpg", "file_size": 17645, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#紫色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb2151dad074407a9f58abd2845b757.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb2151dad074407a9f58abd2845b757.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb2151dad074407a9f58abd2845b757.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfb2151dad074407a9f58abd2845b757.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfb2151dad074407a9f58abd2845b757.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edhqtu4ouQWMVbcbyXpxMID4r3o=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.785532+00 2025-12-09 10:14:59.785537+00 8476 1071913#童5T SPMX-20240815303640 \N \N \N 1 \N [{"file_id": "589f38e3-1be0-4071-a737-b5aa7b3cf389", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b96a331c354ab9acf6cfd25ca3967a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b96a331c354ab9acf6cfd25ca3967a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b96a331c354ab9acf6cfd25ca3967a.jpg", "file_size": 11046, "is_delete": false, "file_type": 1, "original_file_name": "1071913#童5T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b96a331c354ab9acf6cfd25ca3967a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b96a331c354ab9acf6cfd25ca3967a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b96a331c354ab9acf6cfd25ca3967a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b96a331c354ab9acf6cfd25ca3967a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b96a331c354ab9acf6cfd25ca3967a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pt0ABN-a9neOOJpQUr05ztwG5zU=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.787251+00 2025-12-09 10:14:59.787256+00 8477 JTSS054#宝蓝红白条VS-D3 SPMX-20240815303644 \N \N \N 1 \N [{"file_id": "37aa25f3-3c81-4a31-8cc7-2210679ef70d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8861b0489c424087ac2d4cdb14f6bf77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8861b0489c424087ac2d4cdb14f6bf77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8861b0489c424087ac2d4cdb14f6bf77.jpg", "file_size": 11649, "is_delete": false, "file_type": 1, "original_file_name": "JTSS054#宝蓝红白条VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8861b0489c424087ac2d4cdb14f6bf77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8861b0489c424087ac2d4cdb14f6bf77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8861b0489c424087ac2d4cdb14f6bf77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8861b0489c424087ac2d4cdb14f6bf77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8861b0489c424087ac2d4cdb14f6bf77.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJawxmiAHLQpFqAhGT_h67tmyYI=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.788994+00 2025-12-09 10:14:59.789+00 8478 23-2112#-A9领口通用 SPMX-20240815303634 \N \N \N 1 \N [{"file_id": "045d88c4-ce44-4e62-b44d-0789e608d855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "668ea07a5dde44bdbed4d6e2f0a8d95d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "668ea07a5dde44bdbed4d6e2f0a8d95d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "668ea07a5dde44bdbed4d6e2f0a8d95d.jpg", "file_size": 8459, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ea07a5dde44bdbed4d6e2f0a8d95d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ea07a5dde44bdbed4d6e2f0a8d95d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ea07a5dde44bdbed4d6e2f0a8d95d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/668ea07a5dde44bdbed4d6e2f0a8d95d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/668ea07a5dde44bdbed4d6e2f0a8d95d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYdNpYBPG_XmFD029P8LaWlVRhw=", "createTime": "2024-08-15 14:47:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.790728+00 2025-12-09 10:14:59.790733+00 8479 LZ1239#上身不下领2号色 SPMX-20240815303641 \N \N \N 1 \N [{"file_id": "3769531b-005a-4689-8c6d-e5b8a469f2d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b62239c49cc7458481a131dcd921dc6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b62239c49cc7458481a131dcd921dc6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b62239c49cc7458481a131dcd921dc6f.jpg", "file_size": 18578, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身不下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62239c49cc7458481a131dcd921dc6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62239c49cc7458481a131dcd921dc6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62239c49cc7458481a131dcd921dc6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b62239c49cc7458481a131dcd921dc6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b62239c49cc7458481a131dcd921dc6f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJrsnMniKCAjO65OoyuSeskHmis=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.792695+00 2025-12-09 10:14:59.7927+00 8480 23-2112#-A9领子通用 SPMX-20240815303647 \N \N \N 1 \N [{"file_id": "45ae26ed-f5c0-409f-af82-ee794d90bfa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "767a28f417474e8196fc97a213a8541e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "767a28f417474e8196fc97a213a8541e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "767a28f417474e8196fc97a213a8541e.jpg", "file_size": 8790, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#-A9领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a28f417474e8196fc97a213a8541e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a28f417474e8196fc97a213a8541e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767a28f417474e8196fc97a213a8541e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/767a28f417474e8196fc97a213a8541e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/767a28f417474e8196fc97a213a8541e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlz1Si15Uw3CzExS0af4gtKff58=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.794661+00 2025-12-09 10:14:59.794666+00 8481 HT0101-42#蓝色 SPMX-20240815303642 \N \N \N 1 \N [{"file_id": "1f672877-5238-4484-b636-f76109e2a522", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9df3b1bcfb8146f584519d9ecda94021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9df3b1bcfb8146f584519d9ecda94021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9df3b1bcfb8146f584519d9ecda94021.jpg", "file_size": 13536, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-42#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df3b1bcfb8146f584519d9ecda94021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df3b1bcfb8146f584519d9ecda94021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df3b1bcfb8146f584519d9ecda94021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9df3b1bcfb8146f584519d9ecda94021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9df3b1bcfb8146f584519d9ecda94021.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi34qVJin03boXLBV3Y88pvlkAI=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.796614+00 2025-12-09 10:14:59.796619+00 8482 DL2204#橙色 SPMX-20240815303650 \N \N \N 1 \N [{"file_id": "fcb20f3f-f616-4d23-8786-7fe5e9d4a5e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7048eba37d4225b4b76a611e75e906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7048eba37d4225b4b76a611e75e906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7048eba37d4225b4b76a611e75e906.jpg", "file_size": 14845, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7048eba37d4225b4b76a611e75e906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7048eba37d4225b4b76a611e75e906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7048eba37d4225b4b76a611e75e906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7048eba37d4225b4b76a611e75e906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7048eba37d4225b4b76a611e75e906.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYYjNJAiInJlGgoFDUjkFGmht8w=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.7986+00 2025-12-09 10:14:59.798605+00 8483 LJ20111840601FW#裤子S VS-D3 SPMX-20240815303648 \N \N \N 1 \N [{"file_id": "fc5c8e0c-8236-4a39-a696-ff5ea9deea8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b88014409ee34360af8c213692516b9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b88014409ee34360af8c213692516b9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b88014409ee34360af8c213692516b9d.jpg", "file_size": 12758, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#裤子S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88014409ee34360af8c213692516b9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88014409ee34360af8c213692516b9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88014409ee34360af8c213692516b9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b88014409ee34360af8c213692516b9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b88014409ee34360af8c213692516b9d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrB60GWSi6v6IQdz-cAjhTpn1UQ=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.800183+00 2025-12-09 10:14:59.800187+00 8484 80315#上衣 SPMX-20240815303649 \N \N \N 1 \N [{"file_id": "14adc195-33ed-48b9-9c22-4e7fa7b83d61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "143702553d3147eb82fb434f39b7c2e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "143702553d3147eb82fb434f39b7c2e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "143702553d3147eb82fb434f39b7c2e8.jpg", "file_size": 18555, "is_delete": false, "file_type": 1, "original_file_name": "80315#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143702553d3147eb82fb434f39b7c2e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143702553d3147eb82fb434f39b7c2e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143702553d3147eb82fb434f39b7c2e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/143702553d3147eb82fb434f39b7c2e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/143702553d3147eb82fb434f39b7c2e8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmhozCBjwKVrz7pyVqws-SI3XR8=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.801747+00 2025-12-09 10:14:59.801751+00 8485 DL2-54G43#绿色 SPMX-20240815303636 \N \N \N 1 \N [{"file_id": "abeb39ff-e3dd-4264-9a49-aaeda8051976", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d639ac3ddf9470d8fb23d75bb99a130.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d639ac3ddf9470d8fb23d75bb99a130.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d639ac3ddf9470d8fb23d75bb99a130.jpg", "file_size": 11000, "is_delete": false, "file_type": 1, "original_file_name": "DL2-54G43#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d639ac3ddf9470d8fb23d75bb99a130.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d639ac3ddf9470d8fb23d75bb99a130.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d639ac3ddf9470d8fb23d75bb99a130.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d639ac3ddf9470d8fb23d75bb99a130.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d639ac3ddf9470d8fb23d75bb99a130.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yG_XaBL-Zof04Snqs2if-_Y77Co=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.803585+00 2025-12-09 10:14:59.803589+00 8486 FHXGPK-088-1 SPMX-20240815303637 \N \N \N 1 \N [{"file_id": "fbcfcd4c-6b7c-4b0c-8ebb-70094e975c13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8020bb7cef0e47f6a4e463bbc81d1335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8020bb7cef0e47f6a4e463bbc81d1335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8020bb7cef0e47f6a4e463bbc81d1335.jpg", "file_size": 37474, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-088-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8020bb7cef0e47f6a4e463bbc81d1335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8020bb7cef0e47f6a4e463bbc81d1335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8020bb7cef0e47f6a4e463bbc81d1335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8020bb7cef0e47f6a4e463bbc81d1335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8020bb7cef0e47f6a4e463bbc81d1335.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mukSPv9d1F2G_FrYMISso7j9OM=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.805141+00 2025-12-09 10:14:59.805145+00 8487 80314#裤子 SPMX-20240815303639 \N \N \N 1 \N [{"file_id": "0a82b57a-918a-41e6-aa76-179b075c63bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fc84fdba0744e4db7d7205e84cbd0a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fc84fdba0744e4db7d7205e84cbd0a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fc84fdba0744e4db7d7205e84cbd0a7.jpg", "file_size": 19832, "is_delete": false, "file_type": 1, "original_file_name": "80314#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc84fdba0744e4db7d7205e84cbd0a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc84fdba0744e4db7d7205e84cbd0a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc84fdba0744e4db7d7205e84cbd0a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fc84fdba0744e4db7d7205e84cbd0a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fc84fdba0744e4db7d7205e84cbd0a7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EuAutyEyHlOo_jHx58g6hMIV2Q0=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.806719+00 2025-12-09 10:14:59.806723+00 8488 C338-1#紫色S码 SPMX-20240815303645 \N \N \N 1 \N [{"file_id": "2a7f6c37-0f67-4896-9407-38114a0dd14e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae8861b640d34b26a17a2da399d92445.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae8861b640d34b26a17a2da399d92445.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae8861b640d34b26a17a2da399d92445.jpg", "file_size": 17346, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#紫色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8861b640d34b26a17a2da399d92445.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8861b640d34b26a17a2da399d92445.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8861b640d34b26a17a2da399d92445.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae8861b640d34b26a17a2da399d92445.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae8861b640d34b26a17a2da399d92445.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9t6qitEt0qPpxs7WM7fWehUdJTE=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.808243+00 2025-12-09 10:14:59.808247+00 8489 FHXGPK-088-2 SPMX-20240815303646 \N \N \N 1 \N [{"file_id": "4af3991a-5a6d-4971-b233-bdf091cab86d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09f21c208db549c5b24d38ed7fd9f49e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09f21c208db549c5b24d38ed7fd9f49e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09f21c208db549c5b24d38ed7fd9f49e.jpg", "file_size": 35237, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-088-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f21c208db549c5b24d38ed7fd9f49e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f21c208db549c5b24d38ed7fd9f49e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f21c208db549c5b24d38ed7fd9f49e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09f21c208db549c5b24d38ed7fd9f49e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09f21c208db549c5b24d38ed7fd9f49e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2qReFIh4W2_GSYnz_CvjSfZahk=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.809783+00 2025-12-09 10:14:59.809788+00 8490 1071913#童8T SPMX-20240815303651 \N \N \N 1 \N [{"file_id": "11b18965-6335-4828-947f-12a75f0c7517", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd78756443894c958cb2e0b41952fd0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd78756443894c958cb2e0b41952fd0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd78756443894c958cb2e0b41952fd0f.jpg", "file_size": 14554, "is_delete": false, "file_type": 1, "original_file_name": "1071913#童8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd78756443894c958cb2e0b41952fd0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd78756443894c958cb2e0b41952fd0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd78756443894c958cb2e0b41952fd0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd78756443894c958cb2e0b41952fd0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd78756443894c958cb2e0b41952fd0f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E71ne70wXuTQu71mbTkCweGjv_Q=", "createTime": "2024-08-15 14:47:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.811647+00 2025-12-09 10:14:59.811651+00 8491 HT0101-42#黄色 SPMX-20240815303652 \N \N \N 1 \N [{"file_id": "daa9759e-0a25-4cd3-975a-62ad69b66d6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dab8b4f0db44fca90c16f09f638a988.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dab8b4f0db44fca90c16f09f638a988.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dab8b4f0db44fca90c16f09f638a988.jpg", "file_size": 12860, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-42#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dab8b4f0db44fca90c16f09f638a988.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dab8b4f0db44fca90c16f09f638a988.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dab8b4f0db44fca90c16f09f638a988.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dab8b4f0db44fca90c16f09f638a988.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dab8b4f0db44fca90c16f09f638a988.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cokkygeuBKBCFf89dSv8nceQ-z0=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.8132+00 2025-12-09 10:14:59.813205+00 8492 LJ20111840601FW#裤子XL VS-D3 SPMX-20240815303656 \N \N \N 1 \N [{"file_id": "98064403-11df-45d9-a109-2293cd7ba4a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0540322c4e3a48beb455869477977ea3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0540322c4e3a48beb455869477977ea3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0540322c4e3a48beb455869477977ea3.jpg", "file_size": 11263, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#裤子XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0540322c4e3a48beb455869477977ea3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0540322c4e3a48beb455869477977ea3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0540322c4e3a48beb455869477977ea3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0540322c4e3a48beb455869477977ea3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0540322c4e3a48beb455869477977ea3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRXIRhxf_KA8mpVNDYL-X_3b5EU=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.814733+00 2025-12-09 10:14:59.814738+00 8493 0003-367#WJC22 SPMX-20240815303655 \N \N \N 1 \N [{"file_id": "2a3839ff-ba49-4a8a-9a27-65ad9eefcebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc59e9fc74841949255a6917c0ec0f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc59e9fc74841949255a6917c0ec0f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc59e9fc74841949255a6917c0ec0f1.jpg", "file_size": 23292, "is_delete": false, "file_type": 1, "original_file_name": "0003-367#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc59e9fc74841949255a6917c0ec0f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc59e9fc74841949255a6917c0ec0f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc59e9fc74841949255a6917c0ec0f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc59e9fc74841949255a6917c0ec0f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc59e9fc74841949255a6917c0ec0f1.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fcUX9mFKD7j5rijOWLsg_eYeQpc=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.816304+00 2025-12-09 10:14:59.816308+00 8494 LZ1239#上身不下领3号色 SPMX-20240815303654 \N \N \N 1 \N [{"file_id": "cda74d6b-47d9-45c7-b435-9230d351d91d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5b0630c87b14f139ee9109b755adbb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5b0630c87b14f139ee9109b755adbb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5b0630c87b14f139ee9109b755adbb6.jpg", "file_size": 21255, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身不下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b0630c87b14f139ee9109b755adbb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b0630c87b14f139ee9109b755adbb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b0630c87b14f139ee9109b755adbb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5b0630c87b14f139ee9109b755adbb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5b0630c87b14f139ee9109b755adbb6.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GREJvErMcoVJQD7V4LcTk2-OLZ0=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.817885+00 2025-12-09 10:14:59.81789+00 8495 JTSS054FW#VS-D3 SPMX-20240815303653 \N \N \N 1 \N [{"file_id": "9b05f891-3afc-4721-960e-cba124b825fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7016e8b4b59a419daeadcd82804febbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7016e8b4b59a419daeadcd82804febbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7016e8b4b59a419daeadcd82804febbe.jpg", "file_size": 8537, "is_delete": false, "file_type": 1, "original_file_name": "JTSS054FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7016e8b4b59a419daeadcd82804febbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7016e8b4b59a419daeadcd82804febbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7016e8b4b59a419daeadcd82804febbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7016e8b4b59a419daeadcd82804febbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7016e8b4b59a419daeadcd82804febbe.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6G7-3-C5JtHtbCcPHpxi2ZmjUM=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.819685+00 2025-12-09 10:14:59.819689+00 8496 LZ1239#上身不下领4号色 SPMX-20240815303665 \N \N \N 1 \N [{"file_id": "948f2b3d-e304-4883-aeec-b738181e68f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f2fcb85d6f94eb1b59876bf3a05c74e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f2fcb85d6f94eb1b59876bf3a05c74e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f2fcb85d6f94eb1b59876bf3a05c74e.jpg", "file_size": 18672, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#上身不下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2fcb85d6f94eb1b59876bf3a05c74e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2fcb85d6f94eb1b59876bf3a05c74e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2fcb85d6f94eb1b59876bf3a05c74e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f2fcb85d6f94eb1b59876bf3a05c74e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f2fcb85d6f94eb1b59876bf3a05c74e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMukF51F0uEHx7LtsSecvSvnehs=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.821278+00 2025-12-09 10:14:59.821283+00 8497 1071913#红色净色 SPMX-20240815303659 \N \N \N 1 \N [{"file_id": "2de68010-79f7-43f7-9ca1-463fd1d3b457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2d9570f635b428db9903939970c64d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2d9570f635b428db9903939970c64d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2d9570f635b428db9903939970c64d1.jpg", "file_size": 8622, "is_delete": false, "file_type": 1, "original_file_name": "1071913#红色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d9570f635b428db9903939970c64d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d9570f635b428db9903939970c64d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d9570f635b428db9903939970c64d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2d9570f635b428db9903939970c64d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2d9570f635b428db9903939970c64d1.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JV2bYPWxAzvsTxThzccPVyQG6hU=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.822825+00 2025-12-09 10:14:59.822829+00 8498 C338-1#紫色XL码 SPMX-20240815303661 \N \N \N 1 \N [{"file_id": "b28697a2-45c9-4ed5-94bb-abac86d3610c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e70939245494c36b636f3c15504daf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e70939245494c36b636f3c15504daf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e70939245494c36b636f3c15504daf8.jpg", "file_size": 16690, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#紫色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e70939245494c36b636f3c15504daf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e70939245494c36b636f3c15504daf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e70939245494c36b636f3c15504daf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e70939245494c36b636f3c15504daf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e70939245494c36b636f3c15504daf8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCdBOz_Yfc7NE545inO0R9VLZKA=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.824385+00 2025-12-09 10:14:59.824389+00 8499 0003-368#白 SPMX-20240815303664 \N \N \N 1 \N [{"file_id": "98ebc7a3-7012-46e0-956f-8197baaa2a38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dede8a4210944668fa21a37ce44b3ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dede8a4210944668fa21a37ce44b3ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dede8a4210944668fa21a37ce44b3ec.jpg", "file_size": 17804, "is_delete": false, "file_type": 1, "original_file_name": "0003-368#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dede8a4210944668fa21a37ce44b3ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dede8a4210944668fa21a37ce44b3ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dede8a4210944668fa21a37ce44b3ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dede8a4210944668fa21a37ce44b3ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dede8a4210944668fa21a37ce44b3ec.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n4XqF6QgFVbacTUmea_dRYlUopg=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.825918+00 2025-12-09 10:14:59.825922+00 8500 23-2112#A1领子通用 SPMX-20240815303657 \N \N \N 1 \N [{"file_id": "c99f4475-a78f-4b60-b9ef-71a6b4c8b293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29117050c40d427bbc943fac71e82969.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29117050c40d427bbc943fac71e82969.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29117050c40d427bbc943fac71e82969.jpg", "file_size": 7725, "is_delete": false, "file_type": 1, "original_file_name": "23-2112#A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29117050c40d427bbc943fac71e82969.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29117050c40d427bbc943fac71e82969.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29117050c40d427bbc943fac71e82969.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29117050c40d427bbc943fac71e82969.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29117050c40d427bbc943fac71e82969.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jaKjO9kViK1QLDFKs7OTi-kQ7XQ=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.827449+00 2025-12-09 10:14:59.827453+00 8501 C338-1#紫色匹印 SPMX-20240815303671 \N \N \N 1 \N [{"file_id": "50fbf8b4-50fd-4c90-822e-1e2d39db8867", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "669b5a523eff49b2a11745c205b760ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "669b5a523eff49b2a11745c205b760ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "669b5a523eff49b2a11745c205b760ea.jpg", "file_size": 30011, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#紫色匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669b5a523eff49b2a11745c205b760ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669b5a523eff49b2a11745c205b760ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669b5a523eff49b2a11745c205b760ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/669b5a523eff49b2a11745c205b760ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/669b5a523eff49b2a11745c205b760ea.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DHyyHu64RHs6rcAntETFFELgOUI=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.828996+00 2025-12-09 10:14:59.829001+00 8502 FHXGPK-088-3 SPMX-20240815303662 \N \N \N 1 \N [{"file_id": "443ec39f-e027-4475-b80b-947f32034975", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a478e73a43341348fb9a084ce359ec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a478e73a43341348fb9a084ce359ec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a478e73a43341348fb9a084ce359ec0.jpg", "file_size": 39045, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-088-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a478e73a43341348fb9a084ce359ec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a478e73a43341348fb9a084ce359ec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a478e73a43341348fb9a084ce359ec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a478e73a43341348fb9a084ce359ec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a478e73a43341348fb9a084ce359ec0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVlbfvr1PricgQ23MQ-MTCKO41k=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.830791+00 2025-12-09 10:14:59.830795+00 8503 LJ20111840601FW#裤子批布VS-D3 SPMX-20240815303666 \N \N \N 1 \N [{"file_id": "165ae5c2-c2d2-462d-9372-52e2a6432b18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11f6a882249f43da81e7e05ab7e74a8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11f6a882249f43da81e7e05ab7e74a8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11f6a882249f43da81e7e05ab7e74a8e.jpg", "file_size": 5624, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#裤子批布VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11f6a882249f43da81e7e05ab7e74a8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11f6a882249f43da81e7e05ab7e74a8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11f6a882249f43da81e7e05ab7e74a8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11f6a882249f43da81e7e05ab7e74a8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11f6a882249f43da81e7e05ab7e74a8e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oi1JdY_Wm6ThmMGPhdBwmn03XUg=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.832332+00 2025-12-09 10:14:59.832336+00 8504 23-2113#A1前后片3XL SPMX-20240815303667 \N \N \N 1 \N [{"file_id": "ad02628e-1600-493b-9015-56981d027d8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e0d0dc6dc80417f87d4a397bcba07ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e0d0dc6dc80417f87d4a397bcba07ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e0d0dc6dc80417f87d4a397bcba07ad.jpg", "file_size": 10938, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0d0dc6dc80417f87d4a397bcba07ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0d0dc6dc80417f87d4a397bcba07ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0d0dc6dc80417f87d4a397bcba07ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e0d0dc6dc80417f87d4a397bcba07ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e0d0dc6dc80417f87d4a397bcba07ad.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NIiXSUMcelVWXdgxLnx71gRuzQ=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.833891+00 2025-12-09 10:14:59.833896+00 8505 80315#裤子 SPMX-20240815303670 \N \N \N 1 \N [{"file_id": "8c229e6d-5fd1-43b0-9596-e1bba4d85289", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dae1cadfa44943bdb20db70bfe45337f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dae1cadfa44943bdb20db70bfe45337f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dae1cadfa44943bdb20db70bfe45337f.jpg", "file_size": 16110, "is_delete": false, "file_type": 1, "original_file_name": "80315#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae1cadfa44943bdb20db70bfe45337f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae1cadfa44943bdb20db70bfe45337f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae1cadfa44943bdb20db70bfe45337f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dae1cadfa44943bdb20db70bfe45337f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dae1cadfa44943bdb20db70bfe45337f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_aX2U-NnYaa0FsNsCjd2pcueauc=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.835425+00 2025-12-09 10:14:59.83543+00 8506 DL2204#玫红 SPMX-20240815303658 \N \N \N 1 \N [{"file_id": "b81422b9-f195-44ec-a534-59edfc1d98dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "353d7a8534d3489e8b7f31c07e258236.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "353d7a8534d3489e8b7f31c07e258236.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "353d7a8534d3489e8b7f31c07e258236.jpg", "file_size": 14562, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353d7a8534d3489e8b7f31c07e258236.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353d7a8534d3489e8b7f31c07e258236.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353d7a8534d3489e8b7f31c07e258236.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/353d7a8534d3489e8b7f31c07e258236.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/353d7a8534d3489e8b7f31c07e258236.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NscLQ4wOcAHh23q04MWVNWMjoLQ=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.836977+00 2025-12-09 10:14:59.836982+00 8507 80315#乱花 SPMX-20240815303660 \N \N \N 1 \N [{"file_id": "7e2c1da6-6c5f-4985-8b96-df6cd973139c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d67d8a1f081d4a66999b168497c1c9de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d67d8a1f081d4a66999b168497c1c9de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d67d8a1f081d4a66999b168497c1c9de.jpg", "file_size": 6798, "is_delete": false, "file_type": 1, "original_file_name": "80315#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d8a1f081d4a66999b168497c1c9de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d8a1f081d4a66999b168497c1c9de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67d8a1f081d4a66999b168497c1c9de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d67d8a1f081d4a66999b168497c1c9de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d67d8a1f081d4a66999b168497c1c9de.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--j_zYbzXTc38Yimf5KXu5OW0_o=", "createTime": "2024-08-15 14:47:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.838486+00 2025-12-09 10:14:59.838491+00 8508 HT0101-43#WJC22 SPMX-20240815303663 \N \N \N 1 \N [{"file_id": "91dcdd9f-42b0-43d9-986f-92a8a7387a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9415c425556c43448138473ef1ff9ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9415c425556c43448138473ef1ff9ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9415c425556c43448138473ef1ff9ae0.jpg", "file_size": 14318, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-43#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9415c425556c43448138473ef1ff9ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9415c425556c43448138473ef1ff9ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9415c425556c43448138473ef1ff9ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9415c425556c43448138473ef1ff9ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9415c425556c43448138473ef1ff9ae0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cOBAl8p-Tk1ogMY9xiFhP2EvQoQ=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.840037+00 2025-12-09 10:14:59.840041+00 8509 JTSS055#白VS-D3 SPMX-20240815303668 \N \N \N 1 \N [{"file_id": "746781ae-2876-425f-8f8e-bdf90317cb39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb136bfefd9b41b4b79ad4e53a5e7c69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb136bfefd9b41b4b79ad4e53a5e7c69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb136bfefd9b41b4b79ad4e53a5e7c69.jpg", "file_size": 11172, "is_delete": false, "file_type": 1, "original_file_name": "JTSS055#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb136bfefd9b41b4b79ad4e53a5e7c69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb136bfefd9b41b4b79ad4e53a5e7c69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb136bfefd9b41b4b79ad4e53a5e7c69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb136bfefd9b41b4b79ad4e53a5e7c69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb136bfefd9b41b4b79ad4e53a5e7c69.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:saIvYBL1RX7GwisHnmX6TEU-sUc=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.841579+00 2025-12-09 10:14:59.841584+00 8510 DL2204#白色 SPMX-20240815303669 \N \N \N 1 \N [{"file_id": "e179a3db-3018-411b-b94f-0379886d8952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "610be0e46d724395b9314af00532d9ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "610be0e46d724395b9314af00532d9ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "610be0e46d724395b9314af00532d9ba.jpg", "file_size": 14535, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610be0e46d724395b9314af00532d9ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610be0e46d724395b9314af00532d9ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610be0e46d724395b9314af00532d9ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/610be0e46d724395b9314af00532d9ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/610be0e46d724395b9314af00532d9ba.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiRGda4Jo-peleyMPeHLDWRWnho=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.843118+00 2025-12-09 10:14:59.843122+00 8511 LJ20111840601FW#黄色裤子L VS-D3 SPMX-20240815303675 \N \N \N 1 \N [{"file_id": "acfbe55e-20a0-44a8-bfc3-9024b40fd2b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c0868c689014193988f32c076c3d42d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c0868c689014193988f32c076c3d42d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c0868c689014193988f32c076c3d42d.jpg", "file_size": 11642, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#黄色裤子L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0868c689014193988f32c076c3d42d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0868c689014193988f32c076c3d42d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0868c689014193988f32c076c3d42d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c0868c689014193988f32c076c3d42d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c0868c689014193988f32c076c3d42d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCFonIyiRkCBDyWE9t_98WWjNEg=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.844899+00 2025-12-09 10:14:59.844904+00 8512 23-2113#A1前后片4XL SPMX-20240815303676 \N \N \N 1 \N [{"file_id": "39f782bc-85f4-4a93-9193-02605c482f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da4997178958493681d15c3732ad9332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da4997178958493681d15c3732ad9332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da4997178958493681d15c3732ad9332.jpg", "file_size": 10899, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4997178958493681d15c3732ad9332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4997178958493681d15c3732ad9332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4997178958493681d15c3732ad9332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da4997178958493681d15c3732ad9332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da4997178958493681d15c3732ad9332.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uNAPmYeL6kUer7SlTLLO3_a1VBU=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.846428+00 2025-12-09 10:14:59.846432+00 8513 FHXGPK-088-4 SPMX-20240815303672 \N \N \N 1 \N [{"file_id": "2bc550cf-6cb9-4113-acd3-15a771274482", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9abcdd4271b47048ad5421549805119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9abcdd4271b47048ad5421549805119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9abcdd4271b47048ad5421549805119.jpg", "file_size": 38104, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-088-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9abcdd4271b47048ad5421549805119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9abcdd4271b47048ad5421549805119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9abcdd4271b47048ad5421549805119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9abcdd4271b47048ad5421549805119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9abcdd4271b47048ad5421549805119.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-KLWebb4K0cpojbovUjliwArCw=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.847998+00 2025-12-09 10:14:59.848002+00 8514 80316#上衣 SPMX-20240815303680 \N \N \N 1 \N [{"file_id": "ea925d50-8974-43e6-8fd8-04a07b5cf040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78a90ac6a2b54d07872edb90e0eb581c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78a90ac6a2b54d07872edb90e0eb581c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78a90ac6a2b54d07872edb90e0eb581c.jpg", "file_size": 17419, "is_delete": false, "file_type": 1, "original_file_name": "80316#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a90ac6a2b54d07872edb90e0eb581c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a90ac6a2b54d07872edb90e0eb581c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a90ac6a2b54d07872edb90e0eb581c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78a90ac6a2b54d07872edb90e0eb581c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78a90ac6a2b54d07872edb90e0eb581c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mIbk-BeM3rVdqGHLz7JAuScdBo=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.849565+00 2025-12-09 10:14:59.849569+00 8515 1071914#净色 SPMX-20240815303682 \N \N \N 1 \N [{"file_id": "ec299a29-3e41-4ed0-a0b1-8e5a33d6fafe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf0c140405cf421a90e58fedb7e0ebf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf0c140405cf421a90e58fedb7e0ebf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf0c140405cf421a90e58fedb7e0ebf2.jpg", "file_size": 8457, "is_delete": false, "file_type": 1, "original_file_name": "1071914#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0c140405cf421a90e58fedb7e0ebf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0c140405cf421a90e58fedb7e0ebf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0c140405cf421a90e58fedb7e0ebf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf0c140405cf421a90e58fedb7e0ebf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf0c140405cf421a90e58fedb7e0ebf2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqT1E-6-n96QHdwWYYcLENvUrsY=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.851106+00 2025-12-09 10:14:59.851111+00 8516 0003-368#粉 SPMX-20240815303674 \N \N \N 1 \N [{"file_id": "a8ccbade-5101-4bb0-b93e-9f7feb566074", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "843dc0aeb5ae483eac6adfea9667b387.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "843dc0aeb5ae483eac6adfea9667b387.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "843dc0aeb5ae483eac6adfea9667b387.jpg", "file_size": 17326, "is_delete": false, "file_type": 1, "original_file_name": "0003-368#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843dc0aeb5ae483eac6adfea9667b387.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843dc0aeb5ae483eac6adfea9667b387.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843dc0aeb5ae483eac6adfea9667b387.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/843dc0aeb5ae483eac6adfea9667b387.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/843dc0aeb5ae483eac6adfea9667b387.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4tXnunaFkcfc_YNFBTLxxobhws=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.852638+00 2025-12-09 10:14:59.852643+00 8517 LZ1239#下身1号色 SPMX-20240815303677 \N \N \N 1 \N [{"file_id": "a69e0247-7797-46a0-834d-c76b497b19c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "253c7915069147a0b806dcf41a8897b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "253c7915069147a0b806dcf41a8897b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "253c7915069147a0b806dcf41a8897b2.jpg", "file_size": 19682, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253c7915069147a0b806dcf41a8897b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253c7915069147a0b806dcf41a8897b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253c7915069147a0b806dcf41a8897b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/253c7915069147a0b806dcf41a8897b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/253c7915069147a0b806dcf41a8897b2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5lz52CWjQLIUNbDaItB56s3Dbc=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.85419+00 2025-12-09 10:14:59.854194+00 8518 0003-368#蓝 SPMX-20240815303683 \N \N \N 1 \N [{"file_id": "bc92c7e6-5aa9-4395-913c-d64071dc56b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57716175984d451cba0e0c2e5164cfda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57716175984d451cba0e0c2e5164cfda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57716175984d451cba0e0c2e5164cfda.jpg", "file_size": 17477, "is_delete": false, "file_type": 1, "original_file_name": "0003-368#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57716175984d451cba0e0c2e5164cfda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57716175984d451cba0e0c2e5164cfda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57716175984d451cba0e0c2e5164cfda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57716175984d451cba0e0c2e5164cfda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57716175984d451cba0e0c2e5164cfda.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lVpDqLNL42S4OJSa24RBJ3GffU=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.856004+00 2025-12-09 10:14:59.856009+00 8519 1071913#裤子 SPMX-20240815303673 \N \N \N 1 \N [{"file_id": "4514b69c-3262-46fd-979d-55d9e9a9838a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15b8031298e044acac2de83d977aa558.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15b8031298e044acac2de83d977aa558.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15b8031298e044acac2de83d977aa558.jpg", "file_size": 17200, "is_delete": false, "file_type": 1, "original_file_name": "1071913#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b8031298e044acac2de83d977aa558.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b8031298e044acac2de83d977aa558.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b8031298e044acac2de83d977aa558.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15b8031298e044acac2de83d977aa558.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15b8031298e044acac2de83d977aa558.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0iyfZpImUmCh2UvtR6TVThLtd4=", "createTime": "2024-08-15 14:47:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.857557+00 2025-12-09 10:14:59.857561+00 8520 C338-1#红色L码 SPMX-20240815303681 \N \N \N 1 \N [{"file_id": "37f61e38-8796-4673-8057-5848ef57ac7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89bc247068304308bd5b26c514162853.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89bc247068304308bd5b26c514162853.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89bc247068304308bd5b26c514162853.jpg", "file_size": 37192, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#红色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc247068304308bd5b26c514162853.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc247068304308bd5b26c514162853.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc247068304308bd5b26c514162853.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89bc247068304308bd5b26c514162853.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89bc247068304308bd5b26c514162853.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_ddrFqo8Ww5MUtJZae35m6WtIM=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.859156+00 2025-12-09 10:14:59.859162+00 8521 DL2204#绿色 SPMX-20240815303678 \N \N \N 1 \N [{"file_id": "106d7988-d1d4-43f7-a811-0ab000abd217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93df3e434b144df0a7c79a89145f54a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93df3e434b144df0a7c79a89145f54a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93df3e434b144df0a7c79a89145f54a8.jpg", "file_size": 17209, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93df3e434b144df0a7c79a89145f54a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93df3e434b144df0a7c79a89145f54a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93df3e434b144df0a7c79a89145f54a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93df3e434b144df0a7c79a89145f54a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93df3e434b144df0a7c79a89145f54a8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qvXii8FTHqmwRNGHXiQ7W2eZ4I=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.860709+00 2025-12-09 10:14:59.860714+00 8522 JTSS055#粉VS-D3 SPMX-20240815303679 \N \N \N 1 \N [{"file_id": "357cadcc-18ff-4189-b291-d0c3dd30773d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a83aa2700bb421180a4f355eeeae15b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a83aa2700bb421180a4f355eeeae15b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a83aa2700bb421180a4f355eeeae15b.jpg", "file_size": 11291, "is_delete": false, "file_type": 1, "original_file_name": "JTSS055#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a83aa2700bb421180a4f355eeeae15b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a83aa2700bb421180a4f355eeeae15b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a83aa2700bb421180a4f355eeeae15b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a83aa2700bb421180a4f355eeeae15b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a83aa2700bb421180a4f355eeeae15b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ExI0RxIBca3-4EsNrZTUpvSm150=", "createTime": "2024-08-15 14:47:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.862271+00 2025-12-09 10:14:59.862275+00 8523 FHXGPK-088-5 SPMX-20240815303684 \N \N \N 1 \N [{"file_id": "382c1c5d-a14e-4332-80e1-e4242aae41eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6118c217bf749cfa630a291f2e56f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6118c217bf749cfa630a291f2e56f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6118c217bf749cfa630a291f2e56f37.jpg", "file_size": 38464, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-088-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6118c217bf749cfa630a291f2e56f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6118c217bf749cfa630a291f2e56f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6118c217bf749cfa630a291f2e56f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6118c217bf749cfa630a291f2e56f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6118c217bf749cfa630a291f2e56f37.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:46lDQg8xdo4fxYtCjugO5K1LXto=", "createTime": "2024-08-15 14:47:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.864069+00 2025-12-09 10:14:59.864074+00 8524 HT0101-44#WJC22 SPMX-20240815303685 \N \N \N 1 \N [{"file_id": "9259cdf1-9bb9-438b-87a5-3e9eb338d567", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e23f58f763d94d0c8174137530ffbb08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e23f58f763d94d0c8174137530ffbb08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e23f58f763d94d0c8174137530ffbb08.jpg", "file_size": 27612, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-44#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23f58f763d94d0c8174137530ffbb08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23f58f763d94d0c8174137530ffbb08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23f58f763d94d0c8174137530ffbb08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e23f58f763d94d0c8174137530ffbb08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e23f58f763d94d0c8174137530ffbb08.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCFDB0McRXFLJLKPa70viutlEz4=", "createTime": "2024-08-15 14:47:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.865602+00 2025-12-09 10:14:59.865607+00 8525 LZ1239#下身2号色 SPMX-20240815303686 \N \N \N 1 \N [{"file_id": "740bf3e3-d224-4c2f-885b-6e0b26a6f94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9155445daca347a286af372729b20173.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9155445daca347a286af372729b20173.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9155445daca347a286af372729b20173.jpg", "file_size": 18686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9155445daca347a286af372729b20173.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9155445daca347a286af372729b20173.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9155445daca347a286af372729b20173.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9155445daca347a286af372729b20173.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9155445daca347a286af372729b20173.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ci-0YtE2YefjCrogzHrikTlwUx0=", "createTime": "2024-08-15 14:47:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.867332+00 2025-12-09 10:14:59.867337+00 8526 LZ1239#下身3号色 SPMX-20240815303696 \N \N \N 1 \N [{"file_id": "918b12ce-060c-400e-9ee3-f24ca2c31bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c95406501f0644ac9cfba1c61d022622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c95406501f0644ac9cfba1c61d022622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c95406501f0644ac9cfba1c61d022622.jpg", "file_size": 20299, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95406501f0644ac9cfba1c61d022622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95406501f0644ac9cfba1c61d022622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95406501f0644ac9cfba1c61d022622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c95406501f0644ac9cfba1c61d022622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c95406501f0644ac9cfba1c61d022622.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iQZ_L_9iZyS0ajHcAtuG3g2X3o=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.869185+00 2025-12-09 10:14:59.86919+00 8527 23-2113#A1袖子4XL SPMX-20240815303698 \N \N \N 1 \N [{"file_id": "53dd508f-3acf-47fb-ba5f-a36eeea68609", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e55484d190864f7a821c2ce6e2c70801.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e55484d190864f7a821c2ce6e2c70801.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e55484d190864f7a821c2ce6e2c70801.jpg", "file_size": 9719, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55484d190864f7a821c2ce6e2c70801.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55484d190864f7a821c2ce6e2c70801.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55484d190864f7a821c2ce6e2c70801.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e55484d190864f7a821c2ce6e2c70801.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e55484d190864f7a821c2ce6e2c70801.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwO8L7JicSy5mMBiSyd4u8GGe7U=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.870784+00 2025-12-09 10:14:59.870788+00 8528 0003-369#-1 SPMX-20240815303703 \N \N \N 1 \N [{"file_id": "2cc204f8-948a-45c6-91a3-a6f359c9bf23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed938b48b92340f488e9d959bc18ca6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed938b48b92340f488e9d959bc18ca6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed938b48b92340f488e9d959bc18ca6a.jpg", "file_size": 19657, "is_delete": false, "file_type": 1, "original_file_name": "0003-369#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed938b48b92340f488e9d959bc18ca6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed938b48b92340f488e9d959bc18ca6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed938b48b92340f488e9d959bc18ca6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed938b48b92340f488e9d959bc18ca6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed938b48b92340f488e9d959bc18ca6a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1usQl4PVCtWfjcPWiUrY6RWHyrE=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.872468+00 2025-12-09 10:14:59.872472+00 8529 FHXGPK-089-1 SPMX-20240815303697 \N \N \N 1 \N [{"file_id": "742549a0-e45f-4bd5-b32b-db833e1a572b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98de7c75c63b48ab919e4467d21133f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98de7c75c63b48ab919e4467d21133f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98de7c75c63b48ab919e4467d21133f9.jpg", "file_size": 36496, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-089-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98de7c75c63b48ab919e4467d21133f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98de7c75c63b48ab919e4467d21133f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98de7c75c63b48ab919e4467d21133f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98de7c75c63b48ab919e4467d21133f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98de7c75c63b48ab919e4467d21133f9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WInb1jM8MnEw2FD0SK46gw-SGj0=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.874298+00 2025-12-09 10:14:59.874303+00 8530 23-2113#A1袖子3XL SPMX-20240815303687 \N \N \N 1 \N [{"file_id": "25d91db7-2d11-4d59-80d1-86db29195152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e948f7a5d4674f55ab15e5836a064440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e948f7a5d4674f55ab15e5836a064440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e948f7a5d4674f55ab15e5836a064440.jpg", "file_size": 9501, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e948f7a5d4674f55ab15e5836a064440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e948f7a5d4674f55ab15e5836a064440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e948f7a5d4674f55ab15e5836a064440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e948f7a5d4674f55ab15e5836a064440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e948f7a5d4674f55ab15e5836a064440.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bkEjkwecn4hLKwODVQ_Qt9igj7Q=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.876182+00 2025-12-09 10:14:59.876187+00 8531 80316#中童 SPMX-20240815303689 \N \N \N 1 \N [{"file_id": "05f961b8-f140-42f4-b2a7-88ea3030492d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb9fb852a795445196bc7e7c52775511.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb9fb852a795445196bc7e7c52775511.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb9fb852a795445196bc7e7c52775511.jpg", "file_size": 25505, "is_delete": false, "file_type": 1, "original_file_name": "80316#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9fb852a795445196bc7e7c52775511.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9fb852a795445196bc7e7c52775511.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9fb852a795445196bc7e7c52775511.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb9fb852a795445196bc7e7c52775511.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb9fb852a795445196bc7e7c52775511.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibOaYtMiZ0V2-4Vy91ANaRM4_fA=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.877748+00 2025-12-09 10:14:59.877753+00 8532 1071914#婴S+M+L+XL+2XL SPMX-20240815303704 \N \N \N 1 \N [{"file_id": "8e8ddac9-2b41-4016-8fb7-c11d7875ed95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg", "file_size": 17248, "is_delete": false, "file_type": 1, "original_file_name": "1071914#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4891ad33ebd4a5db8d9ade0e4a4ed68.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6X8Bby72QZ42SeUrPWifYgfG-xg=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.879286+00 2025-12-09 10:14:59.879291+00 8533 LJ20111840601FW#黄色裤子M VS-D3 SPMX-20240815303688 \N \N \N 1 \N [{"file_id": "6b323abd-1f1d-4110-bbfc-442aa193a8d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d52faf7a0749495f93f67471d0bbbc91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d52faf7a0749495f93f67471d0bbbc91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d52faf7a0749495f93f67471d0bbbc91.jpg", "file_size": 12040, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#黄色裤子M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52faf7a0749495f93f67471d0bbbc91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52faf7a0749495f93f67471d0bbbc91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52faf7a0749495f93f67471d0bbbc91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d52faf7a0749495f93f67471d0bbbc91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d52faf7a0749495f93f67471d0bbbc91.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifMVGIm33HN0ICJQMMl3EUIOwCI=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.880798+00 2025-12-09 10:14:59.880803+00 8534 DL2204#蓝色 SPMX-20240815303691 \N \N \N 1 \N [{"file_id": "95f9c73d-7615-4bb8-bb71-b4f2ede86d1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a7c5eddc00543738db6b9c86bffc6ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a7c5eddc00543738db6b9c86bffc6ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a7c5eddc00543738db6b9c86bffc6ec.jpg", "file_size": 15656, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7c5eddc00543738db6b9c86bffc6ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7c5eddc00543738db6b9c86bffc6ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7c5eddc00543738db6b9c86bffc6ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a7c5eddc00543738db6b9c86bffc6ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a7c5eddc00543738db6b9c86bffc6ec.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2A93lFATQ-JBCM7Ud8ni7SCUEKg=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.882291+00 2025-12-09 10:14:59.882295+00 8535 HT0101-46#WJC22 SPMX-20240815303702 \N \N \N 1 \N [{"file_id": "ed6308f9-6139-4223-ac29-20b858692d2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5df1a5e49fca451c9d593719e6cbacdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5df1a5e49fca451c9d593719e6cbacdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5df1a5e49fca451c9d593719e6cbacdc.jpg", "file_size": 24978, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-46#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5df1a5e49fca451c9d593719e6cbacdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5df1a5e49fca451c9d593719e6cbacdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5df1a5e49fca451c9d593719e6cbacdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5df1a5e49fca451c9d593719e6cbacdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5df1a5e49fca451c9d593719e6cbacdc.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8KDGgDq09Kn9gQzmh0NoZOssqo=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.883808+00 2025-12-09 10:14:59.883812+00 8536 HT0101-45#WJC22 SPMX-20240815303692 \N \N \N 1 \N [{"file_id": "b306efff-8058-439c-8fa7-49425da59d0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5953323e98954787be30c6cdbb37832a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5953323e98954787be30c6cdbb37832a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5953323e98954787be30c6cdbb37832a.jpg", "file_size": 29491, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-45#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5953323e98954787be30c6cdbb37832a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5953323e98954787be30c6cdbb37832a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5953323e98954787be30c6cdbb37832a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5953323e98954787be30c6cdbb37832a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5953323e98954787be30c6cdbb37832a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFSvzq1T9VZDhMZqXkWPh06tU8E=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.885314+00 2025-12-09 10:14:59.885318+00 8537 LJ20111840601FW#黄色裤子S VS-D3 SPMX-20240815303699 \N \N \N 1 \N [{"file_id": "bb0e4c39-af84-4b23-9240-68232fb9dbf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "910a17f69e7f4ac3a11c0f8d5ab76c84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "910a17f69e7f4ac3a11c0f8d5ab76c84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "910a17f69e7f4ac3a11c0f8d5ab76c84.jpg", "file_size": 12690, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#黄色裤子S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910a17f69e7f4ac3a11c0f8d5ab76c84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910a17f69e7f4ac3a11c0f8d5ab76c84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910a17f69e7f4ac3a11c0f8d5ab76c84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/910a17f69e7f4ac3a11c0f8d5ab76c84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/910a17f69e7f4ac3a11c0f8d5ab76c84.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ts2K1Fczn7OCHkgqUTmL4Oj801U=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.886831+00 2025-12-09 10:14:59.886836+00 8538 DL2204#黑色 SPMX-20240815303701 \N \N \N 1 \N [{"file_id": "1523b36a-8007-40f0-bf66-67dd26a044f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg", "file_size": 17846, "is_delete": false, "file_type": 1, "original_file_name": "DL2204#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bbfd0dfb20149dbbff2cbcd96af2f7c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iI5MWa6tD04oPrz__a6D2p_BPGM=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.888312+00 2025-12-09 10:14:59.888316+00 8539 C338-1#红色M码 SPMX-20240815303695 \N \N \N 1 \N [{"file_id": "2e0ea348-36b4-485d-827b-72a5c25c93a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9c98901f5034ee0b944ab390d48b5e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9c98901f5034ee0b944ab390d48b5e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9c98901f5034ee0b944ab390d48b5e2.jpg", "file_size": 57370, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#红色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c98901f5034ee0b944ab390d48b5e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c98901f5034ee0b944ab390d48b5e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c98901f5034ee0b944ab390d48b5e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9c98901f5034ee0b944ab390d48b5e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9c98901f5034ee0b944ab390d48b5e2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2UJXgj7Ae0mScTFwcHc8DErQ4U=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.889827+00 2025-12-09 10:14:59.889832+00 8540 1071914#婴3XL SPMX-20240815303690 \N \N \N 1 \N [{"file_id": "1f044f94-0722-4a5f-9381-26ac0f271e8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04960a8c1d4d4a0a9f2d921c0554f33e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04960a8c1d4d4a0a9f2d921c0554f33e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04960a8c1d4d4a0a9f2d921c0554f33e.jpg", "file_size": 11893, "is_delete": false, "file_type": 1, "original_file_name": "1071914#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04960a8c1d4d4a0a9f2d921c0554f33e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04960a8c1d4d4a0a9f2d921c0554f33e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04960a8c1d4d4a0a9f2d921c0554f33e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04960a8c1d4d4a0a9f2d921c0554f33e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04960a8c1d4d4a0a9f2d921c0554f33e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:siZycBIzhn_03Xw5Msq-YeapfDk=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.891353+00 2025-12-09 10:14:59.891357+00 8541 JTSS055#蓝VS-D3 SPMX-20240815303694 \N \N \N 1 \N [{"file_id": "3d6a6ebd-2faf-4b19-a812-5a85fd90671b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2baef3ee129d40aeb6a05dfad0fa362e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2baef3ee129d40aeb6a05dfad0fa362e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2baef3ee129d40aeb6a05dfad0fa362e.jpg", "file_size": 11370, "is_delete": false, "file_type": 1, "original_file_name": "JTSS055#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2baef3ee129d40aeb6a05dfad0fa362e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2baef3ee129d40aeb6a05dfad0fa362e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2baef3ee129d40aeb6a05dfad0fa362e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2baef3ee129d40aeb6a05dfad0fa362e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2baef3ee129d40aeb6a05dfad0fa362e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STi5c6N2QOkUpsDSlHb9UDdUkTE=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.89285+00 2025-12-09 10:14:59.892854+00 8542 80316#乱花 SPMX-20240815303700 \N \N \N 1 \N [{"file_id": "b822fa16-0197-463c-8ed2-0e43d2e093cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea75cde7c6e44601991f07654ee71f2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea75cde7c6e44601991f07654ee71f2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea75cde7c6e44601991f07654ee71f2c.jpg", "file_size": 12888, "is_delete": false, "file_type": 1, "original_file_name": "80316#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea75cde7c6e44601991f07654ee71f2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea75cde7c6e44601991f07654ee71f2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea75cde7c6e44601991f07654ee71f2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea75cde7c6e44601991f07654ee71f2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea75cde7c6e44601991f07654ee71f2c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9yOkY_4pF9s2malCOX2kyQQ0UOA=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.894333+00 2025-12-09 10:14:59.894338+00 8543 0003-368#黑 SPMX-20240815303693 \N \N \N 1 \N [{"file_id": "3369eace-0f8e-452d-916a-704a9ef3a544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c93f5f899bd240abadcd2e43d2f9740e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c93f5f899bd240abadcd2e43d2f9740e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c93f5f899bd240abadcd2e43d2f9740e.jpg", "file_size": 19865, "is_delete": false, "file_type": 1, "original_file_name": "0003-368#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93f5f899bd240abadcd2e43d2f9740e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93f5f899bd240abadcd2e43d2f9740e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93f5f899bd240abadcd2e43d2f9740e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c93f5f899bd240abadcd2e43d2f9740e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c93f5f899bd240abadcd2e43d2f9740e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REgj-HRRw9p0Jcl08R9J65pLjaQ=", "createTime": "2024-08-15 14:47:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.895831+00 2025-12-09 10:14:59.895835+00 8544 JTSS055FW#VS-D3 SPMX-20240815303705 \N \N \N 1 \N [{"file_id": "ce9f2adf-0a8a-47f4-b979-c6a84504a541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "385e0b9185b843bfa1b8cd6761b63800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "385e0b9185b843bfa1b8cd6761b63800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "385e0b9185b843bfa1b8cd6761b63800.jpg", "file_size": 9584, "is_delete": false, "file_type": 1, "original_file_name": "JTSS055FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385e0b9185b843bfa1b8cd6761b63800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385e0b9185b843bfa1b8cd6761b63800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385e0b9185b843bfa1b8cd6761b63800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/385e0b9185b843bfa1b8cd6761b63800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/385e0b9185b843bfa1b8cd6761b63800.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s97-Nr1BWO7kVv3wY_FS9pOtyV4=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.897384+00 2025-12-09 10:14:59.897389+00 8545 23-2113#A1领口通用 SPMX-20240815303708 \N \N \N 1 \N [{"file_id": "0231fbc0-272c-4885-9119-41ebb9b5ea35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b74b9217864a0cb03ef16877ecfa0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b74b9217864a0cb03ef16877ecfa0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b74b9217864a0cb03ef16877ecfa0d.jpg", "file_size": 7812, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b74b9217864a0cb03ef16877ecfa0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b74b9217864a0cb03ef16877ecfa0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b74b9217864a0cb03ef16877ecfa0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b74b9217864a0cb03ef16877ecfa0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b74b9217864a0cb03ef16877ecfa0d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZq3PXAMwhE2F_yAmydg4Je7edY=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.898898+00 2025-12-09 10:14:59.898903+00 8546 FHXGPK-089-2 SPMX-20240815303709 \N \N \N 1 \N [{"file_id": "07d952e9-85d5-4c07-af67-77dfe1a70182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b40801c14649c38d219dad2301df9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b40801c14649c38d219dad2301df9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b40801c14649c38d219dad2301df9b.jpg", "file_size": 34819, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-089-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b40801c14649c38d219dad2301df9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b40801c14649c38d219dad2301df9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b40801c14649c38d219dad2301df9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b40801c14649c38d219dad2301df9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b40801c14649c38d219dad2301df9b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjVvsx2IMH0D0vGENsazOTG7r4Y=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.900414+00 2025-12-09 10:14:59.900419+00 8547 LJ20111840601FW#黄色裤子XL VS-D3 SPMX-20240815303710 \N \N \N 1 \N [{"file_id": "ca3b888f-5700-4800-afda-25063c2b24ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42a890a1b35f439988ae3e142f60adc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42a890a1b35f439988ae3e142f60adc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42a890a1b35f439988ae3e142f60adc8.jpg", "file_size": 11383, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#黄色裤子XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a890a1b35f439988ae3e142f60adc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a890a1b35f439988ae3e142f60adc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a890a1b35f439988ae3e142f60adc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42a890a1b35f439988ae3e142f60adc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42a890a1b35f439988ae3e142f60adc8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVhYiYhkUZSbDTts3sq7SBbOHqo=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.901971+00 2025-12-09 10:14:59.901976+00 8548 C338-1#红色S码 SPMX-20240815303706 \N \N \N 1 \N [{"file_id": "18296b8d-1067-4621-a832-0b20fc72787d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "569f887b415f4d3085212c1ac75e3c6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "569f887b415f4d3085212c1ac75e3c6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "569f887b415f4d3085212c1ac75e3c6e.jpg", "file_size": 58445, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#红色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569f887b415f4d3085212c1ac75e3c6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569f887b415f4d3085212c1ac75e3c6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569f887b415f4d3085212c1ac75e3c6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/569f887b415f4d3085212c1ac75e3c6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/569f887b415f4d3085212c1ac75e3c6e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tHa182hBtKypgLh3I9Zzu0K6UE=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.903489+00 2025-12-09 10:14:59.903493+00 8549 LZ1239#下身4号色 SPMX-20240815303707 \N \N \N 1 \N [{"file_id": "ebc7b2ad-0953-48c4-9c9c-7c0d7d85f2e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c898cf4abd14b29b5d49f11d3f3502c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c898cf4abd14b29b5d49f11d3f3502c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c898cf4abd14b29b5d49f11d3f3502c.jpg", "file_size": 18671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c898cf4abd14b29b5d49f11d3f3502c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c898cf4abd14b29b5d49f11d3f3502c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c898cf4abd14b29b5d49f11d3f3502c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c898cf4abd14b29b5d49f11d3f3502c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c898cf4abd14b29b5d49f11d3f3502c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MZZefFik2cir0tXLMKxSDsf4GxY=", "createTime": "2024-08-15 14:47:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.905014+00 2025-12-09 10:14:59.905018+00 8550 23-2113#A1领子通用 SPMX-20240815303716 \N \N \N 1 \N [{"file_id": "9ed29ef4-cad6-4509-a65e-871ec63bd91d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "026ae11d3bff4895a5fe743144ee8396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "026ae11d3bff4895a5fe743144ee8396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "026ae11d3bff4895a5fe743144ee8396.jpg", "file_size": 9891, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026ae11d3bff4895a5fe743144ee8396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026ae11d3bff4895a5fe743144ee8396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026ae11d3bff4895a5fe743144ee8396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/026ae11d3bff4895a5fe743144ee8396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/026ae11d3bff4895a5fe743144ee8396.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XV27Hg-Ne6aLQ4NytFtZpXiIaTY=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.906506+00 2025-12-09 10:14:59.90651+00 8551 1071914#男3XL+女S+女M SPMX-20240815303720 \N \N \N 1 \N [{"file_id": "eba8139e-8aed-47d3-9809-9898f8aacfdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c9dca27b88f4d658f382c8b429f71f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c9dca27b88f4d658f382c8b429f71f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c9dca27b88f4d658f382c8b429f71f2.jpg", "file_size": 16415, "is_delete": false, "file_type": 1, "original_file_name": "1071914#男3XL+女S+女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9dca27b88f4d658f382c8b429f71f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9dca27b88f4d658f382c8b429f71f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9dca27b88f4d658f382c8b429f71f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c9dca27b88f4d658f382c8b429f71f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c9dca27b88f4d658f382c8b429f71f2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEFxlqxFr8hjBkMO5nojToY6mU4=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.908071+00 2025-12-09 10:14:59.908075+00 8552 DL30422#前幅墨绿 SPMX-20240815303713 \N \N \N 1 \N [{"file_id": "9f91ae3b-a406-42f8-9ec0-06c62071dd25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c605aeca0a7c4a96a5284a11b8b18dac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c605aeca0a7c4a96a5284a11b8b18dac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c605aeca0a7c4a96a5284a11b8b18dac.jpg", "file_size": 15128, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605aeca0a7c4a96a5284a11b8b18dac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605aeca0a7c4a96a5284a11b8b18dac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605aeca0a7c4a96a5284a11b8b18dac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c605aeca0a7c4a96a5284a11b8b18dac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c605aeca0a7c4a96a5284a11b8b18dac.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CPd_eDusKzoyorExR0NzcPI2Xhk=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.909671+00 2025-12-09 10:14:59.909676+00 8553 80316#匹布 SPMX-20240815303712 \N \N \N 1 \N [{"file_id": "47a42f9b-b83f-4d8c-9d90-3e1768a36299", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75f0cc31060644218c572428b799035a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75f0cc31060644218c572428b799035a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75f0cc31060644218c572428b799035a.jpg", "file_size": 5700, "is_delete": false, "file_type": 1, "original_file_name": "80316#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f0cc31060644218c572428b799035a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f0cc31060644218c572428b799035a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f0cc31060644218c572428b799035a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75f0cc31060644218c572428b799035a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75f0cc31060644218c572428b799035a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wN5f3VkKYx9a0lKg4wxgmeflutw=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.911452+00 2025-12-09 10:14:59.911457+00 8554 HT0101-47#WJC22 SPMX-20240815303711 \N \N \N 1 \N [{"file_id": "6a24f9c7-02f1-4193-a7e4-2334cb931966", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a48b71cd31f4a1f95682f1076179c27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a48b71cd31f4a1f95682f1076179c27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a48b71cd31f4a1f95682f1076179c27.jpg", "file_size": 10105, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-47#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a48b71cd31f4a1f95682f1076179c27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a48b71cd31f4a1f95682f1076179c27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a48b71cd31f4a1f95682f1076179c27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a48b71cd31f4a1f95682f1076179c27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a48b71cd31f4a1f95682f1076179c27.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jox2Dd2tEqzrjR3HNvUIh_2WgyE=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.912998+00 2025-12-09 10:14:59.913003+00 8555 0003-369#-2 SPMX-20240815303714 \N \N \N 1 \N [{"file_id": "c67e5dc3-7514-44bd-a55a-29a2acd7533f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68eb2f2b20394aef9f3ef86ec9491c1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68eb2f2b20394aef9f3ef86ec9491c1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68eb2f2b20394aef9f3ef86ec9491c1d.jpg", "file_size": 18698, "is_delete": false, "file_type": 1, "original_file_name": "0003-369#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68eb2f2b20394aef9f3ef86ec9491c1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68eb2f2b20394aef9f3ef86ec9491c1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68eb2f2b20394aef9f3ef86ec9491c1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68eb2f2b20394aef9f3ef86ec9491c1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68eb2f2b20394aef9f3ef86ec9491c1d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_NMyu4KJ7MNmbpflDGNs1q-LkYw=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.914529+00 2025-12-09 10:14:59.914533+00 8556 LZ1239#套装下领1号色 SPMX-20240815303717 \N \N \N 1 \N [{"file_id": "131db545-6e95-4f74-8e4e-9946554e0db7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "817fa21b96a9465e86790aef33ac2316.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "817fa21b96a9465e86790aef33ac2316.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "817fa21b96a9465e86790aef33ac2316.jpg", "file_size": 19643, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#套装下领1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/817fa21b96a9465e86790aef33ac2316.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/817fa21b96a9465e86790aef33ac2316.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/817fa21b96a9465e86790aef33ac2316.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/817fa21b96a9465e86790aef33ac2316.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/817fa21b96a9465e86790aef33ac2316.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FD1Q_MuniXSJp1o7iSaEJUfKMkI=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.916121+00 2025-12-09 10:14:59.916126+00 8557 JTSS056#白VS-D3 SPMX-20240815303719 \N \N \N 1 \N [{"file_id": "7282b8a9-2661-4252-811c-0596b83badb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad0658925d354f31907663c73331cd65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad0658925d354f31907663c73331cd65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad0658925d354f31907663c73331cd65.jpg", "file_size": 15771, "is_delete": false, "file_type": 1, "original_file_name": "JTSS056#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad0658925d354f31907663c73331cd65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad0658925d354f31907663c73331cd65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad0658925d354f31907663c73331cd65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad0658925d354f31907663c73331cd65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad0658925d354f31907663c73331cd65.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksVuBacclX_LO_vZF79rp1bzSdw=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.917681+00 2025-12-09 10:14:59.917685+00 8558 LJ20111840601FW#黄色裤子批布VS-D3 SPMX-20240815303715 \N \N \N 1 \N [{"file_id": "1debe08e-858f-4112-bcdf-e804febb9c24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f489f96b7376491f8178719a177f68b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f489f96b7376491f8178719a177f68b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f489f96b7376491f8178719a177f68b8.jpg", "file_size": 5249, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840601FW#黄色裤子批布VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f489f96b7376491f8178719a177f68b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f489f96b7376491f8178719a177f68b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f489f96b7376491f8178719a177f68b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f489f96b7376491f8178719a177f68b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f489f96b7376491f8178719a177f68b8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdlNbv92ShZnqzgAy6rP6bGuViE=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.919478+00 2025-12-09 10:14:59.919482+00 8559 FHXGPK-089-3 SPMX-20240815303718 \N \N \N 1 \N [{"file_id": "07741708-34e6-4e2b-8a6b-0216afaa2ce8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47c133ebc639450889d71ba16a456ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47c133ebc639450889d71ba16a456ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47c133ebc639450889d71ba16a456ae5.jpg", "file_size": 35325, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-089-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c133ebc639450889d71ba16a456ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c133ebc639450889d71ba16a456ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c133ebc639450889d71ba16a456ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47c133ebc639450889d71ba16a456ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47c133ebc639450889d71ba16a456ae5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCjVfGBafxh9mCqV-vwwJzdZ7s0=", "createTime": "2024-08-15 14:47:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.92098+00 2025-12-09 10:14:59.920984+00 8560 HT0101-49#WJC22 SPMX-20240815303732 \N \N \N 1 \N [{"file_id": "243e0676-60b9-420f-a96c-20c808ce8be5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg", "file_size": 23152, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-49#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb04bbc0bd7a422fb80c5e06e3b75c6d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fRbEb2oh6OjpfZ3aIkFZzuKrctI=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.922526+00 2025-12-09 10:14:59.922532+00 8561 HT0101-48#WJC22 SPMX-20240815303721 \N \N \N 1 \N [{"file_id": "b25b5c2e-98ad-4193-9ae7-402eff9ad833", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7f11d09b1bb49f5a93db3cdfbe657f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7f11d09b1bb49f5a93db3cdfbe657f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7f11d09b1bb49f5a93db3cdfbe657f7.jpg", "file_size": 14831, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-48#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f11d09b1bb49f5a93db3cdfbe657f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f11d09b1bb49f5a93db3cdfbe657f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7f11d09b1bb49f5a93db3cdfbe657f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7f11d09b1bb49f5a93db3cdfbe657f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7f11d09b1bb49f5a93db3cdfbe657f7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBd3iN_6cV-dQ6WgObiYmhjEFAY=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.924071+00 2025-12-09 10:14:59.924075+00 8562 DL30422#前幅枣红 SPMX-20240815303733 \N \N \N 1 \N [{"file_id": "fcca3cdf-7462-4c0a-b8ca-5858558e1533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91b89447e6c74ce2aa8bc85f2c8abadd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91b89447e6c74ce2aa8bc85f2c8abadd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91b89447e6c74ce2aa8bc85f2c8abadd.jpg", "file_size": 15134, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b89447e6c74ce2aa8bc85f2c8abadd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b89447e6c74ce2aa8bc85f2c8abadd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b89447e6c74ce2aa8bc85f2c8abadd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91b89447e6c74ce2aa8bc85f2c8abadd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91b89447e6c74ce2aa8bc85f2c8abadd.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vL7950gKzX2pztYvh4zSeXNWDZY=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.925605+00 2025-12-09 10:14:59.92561+00 8563 0003-369#-3 SPMX-20240815303724 \N \N \N 1 \N [{"file_id": "d760e56b-d66a-42f9-8844-a4c612b77108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d313cbb403cf45c4a4524d72270dc282.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d313cbb403cf45c4a4524d72270dc282.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d313cbb403cf45c4a4524d72270dc282.jpg", "file_size": 19671, "is_delete": false, "file_type": 1, "original_file_name": "0003-369#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313cbb403cf45c4a4524d72270dc282.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313cbb403cf45c4a4524d72270dc282.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d313cbb403cf45c4a4524d72270dc282.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d313cbb403cf45c4a4524d72270dc282.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d313cbb403cf45c4a4524d72270dc282.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9U79mQZ_xdE9amZbkwh8qKd8mI=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.927162+00 2025-12-09 10:14:59.927167+00 8564 DL30422#前幅彩兰 SPMX-20240815303723 \N \N \N 1 \N [{"file_id": "a633b6ad-9def-4a21-9aeb-ae7b03f063b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fbe5532bbd0462b8233648288219315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fbe5532bbd0462b8233648288219315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fbe5532bbd0462b8233648288219315.jpg", "file_size": 15213, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbe5532bbd0462b8233648288219315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbe5532bbd0462b8233648288219315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbe5532bbd0462b8233648288219315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fbe5532bbd0462b8233648288219315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fbe5532bbd0462b8233648288219315.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIJ548lVGFJjU0zNGX3qc3KDITU=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.928722+00 2025-12-09 10:14:59.928726+00 8565 FHXGPK-089-4 SPMX-20240815303728 \N \N \N 1 \N [{"file_id": "772355cb-ace1-4531-bcad-c63fb1423e4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fa30894479d47c3bfd019a9fc878a95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fa30894479d47c3bfd019a9fc878a95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fa30894479d47c3bfd019a9fc878a95.jpg", "file_size": 38937, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-089-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa30894479d47c3bfd019a9fc878a95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa30894479d47c3bfd019a9fc878a95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa30894479d47c3bfd019a9fc878a95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fa30894479d47c3bfd019a9fc878a95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fa30894479d47c3bfd019a9fc878a95.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLs_7LhLr5GHSVcIcNGokHxO9cM=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.930313+00 2025-12-09 10:14:59.930318+00 8566 LZ1239#套装下领2号色 SPMX-20240815303729 \N \N \N 1 \N [{"file_id": "3451271b-a9eb-40d3-8d2a-ca7dbaae2156", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55738afe0e8048daae01055579507036.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55738afe0e8048daae01055579507036.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55738afe0e8048daae01055579507036.jpg", "file_size": 18792, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#套装下领2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55738afe0e8048daae01055579507036.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55738afe0e8048daae01055579507036.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55738afe0e8048daae01055579507036.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55738afe0e8048daae01055579507036.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55738afe0e8048daae01055579507036.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kowaf1PtgSrOD7bNIrmvX_R8dok=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.931939+00 2025-12-09 10:14:59.931943+00 8567 23-2113#A2前后片3XL SPMX-20240815303726 \N \N \N 1 \N [{"file_id": "d094528a-2c9d-4b07-9450-599a1f91a8ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca7d86519f8440e6b5da567d779dbaca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca7d86519f8440e6b5da567d779dbaca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca7d86519f8440e6b5da567d779dbaca.jpg", "file_size": 9461, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7d86519f8440e6b5da567d779dbaca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7d86519f8440e6b5da567d779dbaca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7d86519f8440e6b5da567d779dbaca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca7d86519f8440e6b5da567d779dbaca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca7d86519f8440e6b5da567d779dbaca.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIuuT_Yjw0zjiQ3GbcGzwC4xiAg=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.933985+00 2025-12-09 10:14:59.933989+00 8568 C338-1#红色XL码 SPMX-20240815303722 \N \N \N 1 \N [{"file_id": "d6d3113e-cb1e-4f5d-83d7-234b3e893a21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d74e2b7226f4721b31e00ee9b3c16ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d74e2b7226f4721b31e00ee9b3c16ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d74e2b7226f4721b31e00ee9b3c16ee.jpg", "file_size": 54079, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#红色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d74e2b7226f4721b31e00ee9b3c16ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d74e2b7226f4721b31e00ee9b3c16ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d74e2b7226f4721b31e00ee9b3c16ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d74e2b7226f4721b31e00ee9b3c16ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d74e2b7226f4721b31e00ee9b3c16ee.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EZlzQZBJNQA4xU94pWl45-HpCw=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.935825+00 2025-12-09 10:14:59.935829+00 8569 JTSS056#粉VS-D3 SPMX-20240815303731 \N \N \N 1 \N [{"file_id": "ef5eae0a-dae9-440d-aef9-085c6e329503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d774dee7c88245bea0bfe0ec9753d40b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d774dee7c88245bea0bfe0ec9753d40b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d774dee7c88245bea0bfe0ec9753d40b.jpg", "file_size": 15538, "is_delete": false, "file_type": 1, "original_file_name": "JTSS056#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774dee7c88245bea0bfe0ec9753d40b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774dee7c88245bea0bfe0ec9753d40b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d774dee7c88245bea0bfe0ec9753d40b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d774dee7c88245bea0bfe0ec9753d40b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d774dee7c88245bea0bfe0ec9753d40b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffeJf-CfHpbOrgEqzuIFDjPJ77E=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.937914+00 2025-12-09 10:14:59.937919+00 8570 23-2113#A2前后片4XL SPMX-20240815303735 \N \N \N 1 \N [{"file_id": "ffa8000a-513b-45f5-8bf5-6dd0efe2949a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed4a4563d304488e8d9781f3686d8c58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed4a4563d304488e8d9781f3686d8c58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed4a4563d304488e8d9781f3686d8c58.jpg", "file_size": 10166, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4a4563d304488e8d9781f3686d8c58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4a4563d304488e8d9781f3686d8c58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4a4563d304488e8d9781f3686d8c58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed4a4563d304488e8d9781f3686d8c58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed4a4563d304488e8d9781f3686d8c58.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYDukR7FXC-kZ46vNiuqcsbOVuQ=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.939981+00 2025-12-09 10:14:59.939986+00 8571 1071914#男L+女L+女XL SPMX-20240815303730 \N \N \N 1 \N [{"file_id": "dc5f6dfa-fe14-4f70-8cb3-5aeb4aca575c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14799d6add4942cf81a9e95aa4572fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14799d6add4942cf81a9e95aa4572fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14799d6add4942cf81a9e95aa4572fa8.jpg", "file_size": 11682, "is_delete": false, "file_type": 1, "original_file_name": "1071914#男L+女L+女XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14799d6add4942cf81a9e95aa4572fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14799d6add4942cf81a9e95aa4572fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14799d6add4942cf81a9e95aa4572fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14799d6add4942cf81a9e95aa4572fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14799d6add4942cf81a9e95aa4572fa8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tQ_3O5i9K6kqvwdl-WWcfY9G7Q=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.941823+00 2025-12-09 10:14:59.941827+00 8572 LJ20111840602# SPMX-20240815303727 \N \N \N 1 \N [{"file_id": "cd58fd32-57b0-47e5-9c20-babbec78688b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe9f3f289f7a45629ecacb92bb3c69e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe9f3f289f7a45629ecacb92bb3c69e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe9f3f289f7a45629ecacb92bb3c69e2.jpg", "file_size": 19597, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840602#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f3f289f7a45629ecacb92bb3c69e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f3f289f7a45629ecacb92bb3c69e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f3f289f7a45629ecacb92bb3c69e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe9f3f289f7a45629ecacb92bb3c69e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe9f3f289f7a45629ecacb92bb3c69e2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7nL3zxbNpjiEFS300ZokrAO2WpU=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.943661+00 2025-12-09 10:14:59.943666+00 8573 80316#裤子 SPMX-20240815303734 \N \N \N 1 \N [{"file_id": "2698fd96-d56a-4527-8159-34457c1fd18a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62a3284192d840a0b6b4d9a2d7f874df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62a3284192d840a0b6b4d9a2d7f874df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62a3284192d840a0b6b4d9a2d7f874df.jpg", "file_size": 17530, "is_delete": false, "file_type": 1, "original_file_name": "80316#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3284192d840a0b6b4d9a2d7f874df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3284192d840a0b6b4d9a2d7f874df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3284192d840a0b6b4d9a2d7f874df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62a3284192d840a0b6b4d9a2d7f874df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62a3284192d840a0b6b4d9a2d7f874df.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BgNVDtQeLHiq9R-q7lsQem8oP7M=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.945488+00 2025-12-09 10:14:59.945493+00 8574 80316#小童 SPMX-20240815303725 \N \N \N 1 \N [{"file_id": "abe4e89a-2fe9-43cf-a6f2-6026a76f15b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ba133f92afa4a19a27d1f70577dc312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ba133f92afa4a19a27d1f70577dc312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ba133f92afa4a19a27d1f70577dc312.jpg", "file_size": 25119, "is_delete": false, "file_type": 1, "original_file_name": "80316#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba133f92afa4a19a27d1f70577dc312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba133f92afa4a19a27d1f70577dc312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba133f92afa4a19a27d1f70577dc312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ba133f92afa4a19a27d1f70577dc312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ba133f92afa4a19a27d1f70577dc312.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZngJTxJNwQT4Ern2Mzn8hmcDKRM=", "createTime": "2024-08-15 14:47:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.947302+00 2025-12-09 10:14:59.947307+00 8575 LZ1239#套装下领3号色 SPMX-20240815303738 \N \N \N 1 \N [{"file_id": "be0f2a93-a13c-4209-9127-1697a6be620a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db698760868c41c19cd2e411ba2e7f67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db698760868c41c19cd2e411ba2e7f67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db698760868c41c19cd2e411ba2e7f67.jpg", "file_size": 20642, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#套装下领3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db698760868c41c19cd2e411ba2e7f67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db698760868c41c19cd2e411ba2e7f67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db698760868c41c19cd2e411ba2e7f67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db698760868c41c19cd2e411ba2e7f67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db698760868c41c19cd2e411ba2e7f67.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91sSqBBFhXC14QGk8gwv7LswAxE=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.948843+00 2025-12-09 10:14:59.948847+00 8576 0003-36FWE#飞客户正身 SPMX-20240815303739 \N \N \N 1 \N [{"file_id": "c80bdf50-42c1-435d-9efd-372497949176", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f4bcfb52f1d4e5d902889e7262e7368.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f4bcfb52f1d4e5d902889e7262e7368.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f4bcfb52f1d4e5d902889e7262e7368.jpg", "file_size": 27125, "is_delete": false, "file_type": 1, "original_file_name": "0003-36FWE#飞客户正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4bcfb52f1d4e5d902889e7262e7368.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4bcfb52f1d4e5d902889e7262e7368.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4bcfb52f1d4e5d902889e7262e7368.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f4bcfb52f1d4e5d902889e7262e7368.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f4bcfb52f1d4e5d902889e7262e7368.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NC6WWUK96Z0ACkbCxeuUnzbX3zU=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.950394+00 2025-12-09 10:14:59.950398+00 8577 1071914#男S+M SPMX-20240815303740 \N \N \N 1 \N [{"file_id": "93bfae3f-31a9-4423-9371-a430e7939b4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6730bb8843ee4993bd093c772c23d623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6730bb8843ee4993bd093c772c23d623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6730bb8843ee4993bd093c772c23d623.jpg", "file_size": 16128, "is_delete": false, "file_type": 1, "original_file_name": "1071914#男S+M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6730bb8843ee4993bd093c772c23d623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6730bb8843ee4993bd093c772c23d623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6730bb8843ee4993bd093c772c23d623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6730bb8843ee4993bd093c772c23d623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6730bb8843ee4993bd093c772c23d623.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJBwGv-LU4irZqHlhhDSrwThV2w=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.95192+00 2025-12-09 10:14:59.951925+00 8578 FHXGPK-089-5 SPMX-20240815303737 \N \N \N 1 \N [{"file_id": "f006203e-8d9f-407b-95cc-44e1563f51a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d85e564977bd4982b6977e83067b615b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d85e564977bd4982b6977e83067b615b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d85e564977bd4982b6977e83067b615b.jpg", "file_size": 34154, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-089-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d85e564977bd4982b6977e83067b615b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d85e564977bd4982b6977e83067b615b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d85e564977bd4982b6977e83067b615b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d85e564977bd4982b6977e83067b615b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d85e564977bd4982b6977e83067b615b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:waLX24MabRAQMoRMLgz_LA-8G7k=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.953431+00 2025-12-09 10:14:59.953435+00 8579 LJ20111840603# SPMX-20240815303741 \N \N \N 1 \N [{"file_id": "7617d5fb-6e0f-47ff-afcc-eb1c45e0b09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ddb32344fd1424bbfb593bcaeaae29a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ddb32344fd1424bbfb593bcaeaae29a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ddb32344fd1424bbfb593bcaeaae29a.jpg", "file_size": 27002, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840603#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddb32344fd1424bbfb593bcaeaae29a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddb32344fd1424bbfb593bcaeaae29a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddb32344fd1424bbfb593bcaeaae29a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ddb32344fd1424bbfb593bcaeaae29a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ddb32344fd1424bbfb593bcaeaae29a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLkZsCyyya6bm-HWUpF0rIsqIrs=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.954952+00 2025-12-09 10:14:59.954956+00 8580 JTSS056FW#VS-D3 SPMX-20240815303742 \N \N \N 1 \N [{"file_id": "43fe3782-fe43-4e2d-ac0b-3b54aaeadff3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c5e3de95af49b38f12950443695070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c5e3de95af49b38f12950443695070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c5e3de95af49b38f12950443695070.jpg", "file_size": 8706, "is_delete": false, "file_type": 1, "original_file_name": "JTSS056FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c5e3de95af49b38f12950443695070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c5e3de95af49b38f12950443695070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c5e3de95af49b38f12950443695070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c5e3de95af49b38f12950443695070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c5e3de95af49b38f12950443695070.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SURnITyqCMTmKrtomiCqbBO9VE4=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.956794+00 2025-12-09 10:14:59.956798+00 8581 HT0101-5#WJC22 SPMX-20240815303743 \N \N \N 1 \N [{"file_id": "8b60b8f2-162b-4695-a455-43466f781df9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbf7acb5f85c49dfb458d910bf6b4071.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbf7acb5f85c49dfb458d910bf6b4071.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbf7acb5f85c49dfb458d910bf6b4071.jpg", "file_size": 19578, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf7acb5f85c49dfb458d910bf6b4071.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf7acb5f85c49dfb458d910bf6b4071.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf7acb5f85c49dfb458d910bf6b4071.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbf7acb5f85c49dfb458d910bf6b4071.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbf7acb5f85c49dfb458d910bf6b4071.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCgAr5ri4D57KxjDuT_5gGw67yo=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.958333+00 2025-12-09 10:14:59.958338+00 8582 DL30422#前幅水红 SPMX-20240815303745 \N \N \N 1 \N [{"file_id": "bf9b08b1-b9c8-43c8-bbe1-5511be11ef27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b04b3309c0734651b611a2c1ab25d25d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b04b3309c0734651b611a2c1ab25d25d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b04b3309c0734651b611a2c1ab25d25d.jpg", "file_size": 12463, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04b3309c0734651b611a2c1ab25d25d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04b3309c0734651b611a2c1ab25d25d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04b3309c0734651b611a2c1ab25d25d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b04b3309c0734651b611a2c1ab25d25d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b04b3309c0734651b611a2c1ab25d25d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4f92XRthU8DMgCNQd94lNlOiFg=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.959859+00 2025-12-09 10:14:59.959863+00 8583 C338-1#红色匹印 SPMX-20240815303736 \N \N \N 1 \N [{"file_id": "ce849047-1039-419a-96d5-f9d04e6d2649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaec3c22091f4232bc56e0e3a31feb2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaec3c22091f4232bc56e0e3a31feb2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaec3c22091f4232bc56e0e3a31feb2f.jpg", "file_size": 87234, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#红色匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaec3c22091f4232bc56e0e3a31feb2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaec3c22091f4232bc56e0e3a31feb2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaec3c22091f4232bc56e0e3a31feb2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaec3c22091f4232bc56e0e3a31feb2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaec3c22091f4232bc56e0e3a31feb2f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qOAjiQgwT9riwBGIyEJEbY41xY=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.96143+00 2025-12-09 10:14:59.961436+00 8584 80317#上衣 SPMX-20240815303744 \N \N \N 1 \N [{"file_id": "e086fe0c-3e98-4a9a-b0d5-9f4156b572f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "581bac31e2b343469b41ad5e98409c8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "581bac31e2b343469b41ad5e98409c8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "581bac31e2b343469b41ad5e98409c8a.jpg", "file_size": 14602, "is_delete": false, "file_type": 1, "original_file_name": "80317#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/581bac31e2b343469b41ad5e98409c8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/581bac31e2b343469b41ad5e98409c8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/581bac31e2b343469b41ad5e98409c8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/581bac31e2b343469b41ad5e98409c8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/581bac31e2b343469b41ad5e98409c8a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c23wptfpuHaaywTzRFq3VS-GhFc=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.963042+00 2025-12-09 10:14:59.963046+00 8585 LJ20111840605FW#VS-D3 SPMX-20240815303752 \N \N \N 1 \N [{"file_id": "9f2c8478-6472-42a7-b72d-cfcbc03c8bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f1a5442c0cf466e8b82274c6e7e0486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f1a5442c0cf466e8b82274c6e7e0486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f1a5442c0cf466e8b82274c6e7e0486.jpg", "file_size": 17611, "is_delete": false, "file_type": 1, "original_file_name": "LJ20111840605FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1a5442c0cf466e8b82274c6e7e0486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1a5442c0cf466e8b82274c6e7e0486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f1a5442c0cf466e8b82274c6e7e0486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f1a5442c0cf466e8b82274c6e7e0486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f1a5442c0cf466e8b82274c6e7e0486.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQmVsMOT375IJCnwIVtbMotV7sU=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.96487+00 2025-12-09 10:14:59.964875+00 8586 23-2113#A2袖子4XL SPMX-20240815303759 \N \N \N 1 \N [{"file_id": "1432be55-32b3-4d40-91e9-d11fdbf53f57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d6889aed16f4512a267f56fe0002a7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d6889aed16f4512a267f56fe0002a7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d6889aed16f4512a267f56fe0002a7a.jpg", "file_size": 9217, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6889aed16f4512a267f56fe0002a7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6889aed16f4512a267f56fe0002a7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6889aed16f4512a267f56fe0002a7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d6889aed16f4512a267f56fe0002a7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d6889aed16f4512a267f56fe0002a7a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a54D0a16UI8c5l7H9QHYfqA6pWQ=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.966398+00 2025-12-09 10:14:59.966402+00 8587 C338-1#绿色L码 SPMX-20240815303747 \N \N \N 1 \N [{"file_id": "2831db50-120e-4776-ac2e-170e7376c699", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a32f9236cb043ba816c6606c5b7baf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a32f9236cb043ba816c6606c5b7baf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a32f9236cb043ba816c6606c5b7baf9.jpg", "file_size": 11580, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#绿色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a32f9236cb043ba816c6606c5b7baf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a32f9236cb043ba816c6606c5b7baf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a32f9236cb043ba816c6606c5b7baf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a32f9236cb043ba816c6606c5b7baf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a32f9236cb043ba816c6606c5b7baf9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:piP-15qfeHE91do7rTbmmKAwG8w=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.967976+00 2025-12-09 10:14:59.96798+00 8588 HT0101-50#WJC22 SPMX-20240815303755 \N \N \N 1 \N [{"file_id": "9dbe4d9d-27b9-4dfc-9bcb-9bf4b7067d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d661cd66bf94b7697d0b3f2dafa27e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d661cd66bf94b7697d0b3f2dafa27e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d661cd66bf94b7697d0b3f2dafa27e8.jpg", "file_size": 24162, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-50#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d661cd66bf94b7697d0b3f2dafa27e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d661cd66bf94b7697d0b3f2dafa27e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d661cd66bf94b7697d0b3f2dafa27e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d661cd66bf94b7697d0b3f2dafa27e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d661cd66bf94b7697d0b3f2dafa27e8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8doHWndZ-pv7fI6_cXnlE3aCuqs=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.969532+00 2025-12-09 10:14:59.969536+00 8589 LZ123FWF#1号色短袖 SPMX-20240815303757 \N \N \N 1 \N [{"file_id": "7883b72d-d676-41b2-80e6-081eba482613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d1613891f264dcea89201f2cadfc3e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d1613891f264dcea89201f2cadfc3e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d1613891f264dcea89201f2cadfc3e3.jpg", "file_size": 21334, "is_delete": false, "file_type": 1, "original_file_name": "LZ123FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1613891f264dcea89201f2cadfc3e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1613891f264dcea89201f2cadfc3e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1613891f264dcea89201f2cadfc3e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d1613891f264dcea89201f2cadfc3e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d1613891f264dcea89201f2cadfc3e3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3BjVM0VHIqU6_7JGQN4Nup1vl0=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.971074+00 2025-12-09 10:14:59.971079+00 8590 LJ20112440601#L SPMX-20240815303762 \N \N \N 1 \N [{"file_id": "78642ba7-5b65-49b8-b8a2-542d1d8a26e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e91489e8d0ff4a4d85aa82c84fd70270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e91489e8d0ff4a4d85aa82c84fd70270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e91489e8d0ff4a4d85aa82c84fd70270.jpg", "file_size": 7123, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91489e8d0ff4a4d85aa82c84fd70270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91489e8d0ff4a4d85aa82c84fd70270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91489e8d0ff4a4d85aa82c84fd70270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e91489e8d0ff4a4d85aa82c84fd70270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e91489e8d0ff4a4d85aa82c84fd70270.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDT7HdEYQafbVm6LMkEzGFyF2NU=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.972581+00 2025-12-09 10:14:59.972585+00 8591 LZ1239#套装下领4号色 SPMX-20240815303748 \N \N \N 1 \N [{"file_id": "88e795e2-f1ec-4f6b-9325-03fd481f3c6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc2500cc46104c309c788c566422f3c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc2500cc46104c309c788c566422f3c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc2500cc46104c309c788c566422f3c9.jpg", "file_size": 19186, "is_delete": false, "file_type": 1, "original_file_name": "LZ1239#套装下领4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2500cc46104c309c788c566422f3c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2500cc46104c309c788c566422f3c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2500cc46104c309c788c566422f3c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc2500cc46104c309c788c566422f3c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc2500cc46104c309c788c566422f3c9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-vCUivfMLTf2W_DgOS_7fjnM8Y=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.974115+00 2025-12-09 10:14:59.974119+00 8592 1071914#男XL+2XL+女2XL+女3XL+童10T+12T SPMX-20240815303751 \N \N \N 1 \N [{"file_id": "26cebbd8-7d24-495f-9257-7bf11e16d155", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1fd5ab00bc94e78af5d73d1e730751a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1fd5ab00bc94e78af5d73d1e730751a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1fd5ab00bc94e78af5d73d1e730751a.jpg", "file_size": 17618, "is_delete": false, "file_type": 1, "original_file_name": "1071914#男XL+2XL+女2XL+女3XL+童10T+12T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd5ab00bc94e78af5d73d1e730751a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd5ab00bc94e78af5d73d1e730751a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd5ab00bc94e78af5d73d1e730751a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1fd5ab00bc94e78af5d73d1e730751a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1fd5ab00bc94e78af5d73d1e730751a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvSMwdmXPX1NV6l4uL7g7kwbU3g=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.975924+00 2025-12-09 10:14:59.975928+00 8593 80317#中童 SPMX-20240815303754 \N \N \N 1 \N [{"file_id": "57c5656c-020d-465d-98ae-157607361787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51223a63a89a44608f316b87817fd0f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51223a63a89a44608f316b87817fd0f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51223a63a89a44608f316b87817fd0f8.jpg", "file_size": 20585, "is_delete": false, "file_type": 1, "original_file_name": "80317#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51223a63a89a44608f316b87817fd0f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51223a63a89a44608f316b87817fd0f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51223a63a89a44608f316b87817fd0f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51223a63a89a44608f316b87817fd0f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51223a63a89a44608f316b87817fd0f8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KcR7yZBclnbmTG-Ic0GqRyLnMDs=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.977482+00 2025-12-09 10:14:59.977487+00 8594 FHXGPK-091-1 SPMX-20240815303761 \N \N \N 1 \N [{"file_id": "3de6c715-89be-49aa-a1f2-b83a28f5d692", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff8a53a58fa14e4496a0bb21c8c3b559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff8a53a58fa14e4496a0bb21c8c3b559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff8a53a58fa14e4496a0bb21c8c3b559.jpg", "file_size": 24356, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-091-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8a53a58fa14e4496a0bb21c8c3b559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8a53a58fa14e4496a0bb21c8c3b559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8a53a58fa14e4496a0bb21c8c3b559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff8a53a58fa14e4496a0bb21c8c3b559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff8a53a58fa14e4496a0bb21c8c3b559.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNTeXOmAYQp8rjnHyjgdngJJXJk=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.979038+00 2025-12-09 10:14:59.979043+00 8595 23-2113#A2袖子3XL SPMX-20240815303746 \N \N \N 1 \N [{"file_id": "1a111696-50d0-4368-b208-cead2aa5f38e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb76c9a8a44d4ceb81e043f69de36ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb76c9a8a44d4ceb81e043f69de36ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb76c9a8a44d4ceb81e043f69de36ee5.jpg", "file_size": 9635, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb76c9a8a44d4ceb81e043f69de36ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb76c9a8a44d4ceb81e043f69de36ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb76c9a8a44d4ceb81e043f69de36ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb76c9a8a44d4ceb81e043f69de36ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb76c9a8a44d4ceb81e043f69de36ee5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4VFa2Ez-FJZNlxhRKl3Zd4CixU=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.980571+00 2025-12-09 10:14:59.980575+00 8596 JTSS057#杏VS-D3 SPMX-20240815303753 \N \N \N 1 \N [{"file_id": "36a3ebd3-16b0-4509-8b13-b8a9e08b83c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926eb3a40313421db4935c15faeec9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926eb3a40313421db4935c15faeec9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926eb3a40313421db4935c15faeec9e0.jpg", "file_size": 12477, "is_delete": false, "file_type": 1, "original_file_name": "JTSS057#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926eb3a40313421db4935c15faeec9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926eb3a40313421db4935c15faeec9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926eb3a40313421db4935c15faeec9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926eb3a40313421db4935c15faeec9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926eb3a40313421db4935c15faeec9e0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNT_izIRwRn9U8LGIHI2E9rcwnE=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.982131+00 2025-12-09 10:14:59.982136+00 8597 FHXGPK-090-1 SPMX-20240815303749 \N \N \N 1 \N [{"file_id": "fa8eb1ff-d138-493a-acb5-3638b0cb8dd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb6848ad99de420bb080aa548cf7ee6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb6848ad99de420bb080aa548cf7ee6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb6848ad99de420bb080aa548cf7ee6d.jpg", "file_size": 30746, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-090-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6848ad99de420bb080aa548cf7ee6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6848ad99de420bb080aa548cf7ee6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6848ad99de420bb080aa548cf7ee6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb6848ad99de420bb080aa548cf7ee6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb6848ad99de420bb080aa548cf7ee6d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TMfk4sHk1jQ3Atr4LRpVt_ZlaA=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.983659+00 2025-12-09 10:14:59.983664+00 8598 DL30422#前幅浅粉 SPMX-20240815303756 \N \N \N 1 \N [{"file_id": "6f88a918-accd-4f1f-a9f8-2ab22060b8d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a811c6cf3d534a2bb091178cdb0ac7ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a811c6cf3d534a2bb091178cdb0ac7ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a811c6cf3d534a2bb091178cdb0ac7ad.jpg", "file_size": 13101, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a811c6cf3d534a2bb091178cdb0ac7ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a811c6cf3d534a2bb091178cdb0ac7ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a811c6cf3d534a2bb091178cdb0ac7ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a811c6cf3d534a2bb091178cdb0ac7ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a811c6cf3d534a2bb091178cdb0ac7ad.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:698f-tx5pk0oaeHlFt-ULbH_R8Y=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.985416+00 2025-12-09 10:14:59.985422+00 8599 C338-1#绿色M码 SPMX-20240815303758 \N \N \N 1 \N [{"file_id": "88182fa2-86c7-416d-a1e5-759ea7bb5e35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c8f3b8b13b0416f936aff4f034066a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c8f3b8b13b0416f936aff4f034066a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c8f3b8b13b0416f936aff4f034066a2.jpg", "file_size": 16202, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#绿色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f3b8b13b0416f936aff4f034066a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f3b8b13b0416f936aff4f034066a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8f3b8b13b0416f936aff4f034066a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c8f3b8b13b0416f936aff4f034066a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c8f3b8b13b0416f936aff4f034066a2.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jof23GDd8B1PMHEQNSGfpxGp0yw=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.987347+00 2025-12-09 10:14:59.987352+00 8600 0003-36FWE#飞客户领子花 SPMX-20240815303750 \N \N \N 1 \N [{"file_id": "fe51092b-590f-4e63-a6e3-8dd2492e4f8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc06108c4a644ae4bf88ac512445bf18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc06108c4a644ae4bf88ac512445bf18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc06108c4a644ae4bf88ac512445bf18.jpg", "file_size": 15318, "is_delete": false, "file_type": 1, "original_file_name": "0003-36FWE#飞客户领子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc06108c4a644ae4bf88ac512445bf18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc06108c4a644ae4bf88ac512445bf18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc06108c4a644ae4bf88ac512445bf18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc06108c4a644ae4bf88ac512445bf18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc06108c4a644ae4bf88ac512445bf18.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMUb7eeeYpvoAiucGZIiyNke9jw=", "createTime": "2024-08-15 14:47:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.9893+00 2025-12-09 10:14:59.989305+00 8601 0003-36FWF#V5曲线 SPMX-20240815303760 \N \N \N 1 \N [{"file_id": "b71045f2-b95b-4f28-8863-1214fa2b5cd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83bbf75e3c4041a3ad25b2b60cef7ed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83bbf75e3c4041a3ad25b2b60cef7ed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83bbf75e3c4041a3ad25b2b60cef7ed3.jpg", "file_size": 23068, "is_delete": false, "file_type": 1, "original_file_name": "0003-36FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bbf75e3c4041a3ad25b2b60cef7ed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bbf75e3c4041a3ad25b2b60cef7ed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bbf75e3c4041a3ad25b2b60cef7ed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83bbf75e3c4041a3ad25b2b60cef7ed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83bbf75e3c4041a3ad25b2b60cef7ed3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SV-9gTSJ66D69IJYavdpedBoN00=", "createTime": "2024-08-15 14:47:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.991216+00 2025-12-09 10:14:59.991221+00 8602 JTSS057#黑VS-D3 SPMX-20240815303763 \N \N \N 1 \N [{"file_id": "42b6646e-00a6-4930-b70a-ed128f253ca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b5db752aed493680fd707bcb83dfae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b5db752aed493680fd707bcb83dfae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b5db752aed493680fd707bcb83dfae.jpg", "file_size": 17469, "is_delete": false, "file_type": 1, "original_file_name": "JTSS057#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b5db752aed493680fd707bcb83dfae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b5db752aed493680fd707bcb83dfae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b5db752aed493680fd707bcb83dfae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b5db752aed493680fd707bcb83dfae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b5db752aed493680fd707bcb83dfae.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eMipIhwmsESq3v_Bvnnf5RBestY=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.993642+00 2025-12-09 10:14:59.99365+00 8603 80317#匹布 SPMX-20240815303764 \N \N \N 1 \N [{"file_id": "a2a3a3b7-1463-4a61-93c8-1e46d1803b12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg", "file_size": 5385, "is_delete": false, "file_type": 1, "original_file_name": "80317#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4310dd0ad3e14a1fa8d5e25c4e5ec812.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vl8yT_PTyk7vnq172axxRhX4mQk=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.996065+00 2025-12-09 10:14:59.996072+00 8604 23-2113#A2领口通用 SPMX-20240815303769 \N \N \N 1 \N [{"file_id": "4c477316-75b1-4064-9e9b-6427042edfb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "859cf864961d47ddba351facb0387e57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "859cf864961d47ddba351facb0387e57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "859cf864961d47ddba351facb0387e57.jpg", "file_size": 8346, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859cf864961d47ddba351facb0387e57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859cf864961d47ddba351facb0387e57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859cf864961d47ddba351facb0387e57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/859cf864961d47ddba351facb0387e57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/859cf864961d47ddba351facb0387e57.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3lKHXyOKSrdGPv5YrLNaUPfRsA=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:14:59.998356+00 2025-12-09 10:14:59.998363+00 8605 FHXGPK-092-1 SPMX-20240815303771 \N \N \N 1 \N [{"file_id": "b41e71ac-c139-4bd7-a362-41c392e5d885", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg", "file_size": 32945, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-092-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cec6c7cc6ca04ead8595e0ec6b63cdfe.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3a1qfwfWZv3Q4fMflycU6wBcXt0=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.000388+00 2025-12-09 10:15:00.000394+00 8606 0003-370#WJC22 SPMX-20240815303773 \N \N \N 1 \N [{"file_id": "e3a2247a-28df-4186-a338-33dc8c081fc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0e758fc032941e7a4e32c3def661960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0e758fc032941e7a4e32c3def661960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0e758fc032941e7a4e32c3def661960.jpg", "file_size": 9646, "is_delete": false, "file_type": 1, "original_file_name": "0003-370#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e758fc032941e7a4e32c3def661960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e758fc032941e7a4e32c3def661960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e758fc032941e7a4e32c3def661960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0e758fc032941e7a4e32c3def661960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0e758fc032941e7a4e32c3def661960.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rfkScpNbOpMkpmyavvILgJEtbI=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.002479+00 2025-12-09 10:15:00.002485+00 8607 HT0101-51#WJC22 SPMX-20240815303767 \N \N \N 1 \N [{"file_id": "4e473ab8-4c64-4684-8526-435a3112c528", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d405f7eebc644649228a17636029360.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d405f7eebc644649228a17636029360.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d405f7eebc644649228a17636029360.jpg", "file_size": 10923, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-51#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d405f7eebc644649228a17636029360.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d405f7eebc644649228a17636029360.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d405f7eebc644649228a17636029360.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d405f7eebc644649228a17636029360.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d405f7eebc644649228a17636029360.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E1zEo2ElPIke1_dUuO-gJVM-Cuk=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.004452+00 2025-12-09 10:15:00.004457+00 8608 C338-1#绿色S码 SPMX-20240815303770 \N \N \N 1 \N [{"file_id": "e1f2063b-1786-4d2c-9beb-3f0e7937c53d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329a79d25a5d44da977a2a1d4b48df5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329a79d25a5d44da977a2a1d4b48df5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329a79d25a5d44da977a2a1d4b48df5e.jpg", "file_size": 16207, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#绿色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329a79d25a5d44da977a2a1d4b48df5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329a79d25a5d44da977a2a1d4b48df5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329a79d25a5d44da977a2a1d4b48df5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329a79d25a5d44da977a2a1d4b48df5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329a79d25a5d44da977a2a1d4b48df5e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJMpjn_yHUyPk1JlSaq5aajLb2A=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.006217+00 2025-12-09 10:15:00.006221+00 8609 LJ20112440601#M SPMX-20240815303772 \N \N \N 1 \N [{"file_id": "f570f223-2900-408d-9bd6-097e24cd6840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2c883ef90c9460c80626a6c4fbeaa88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2c883ef90c9460c80626a6c4fbeaa88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2c883ef90c9460c80626a6c4fbeaa88.jpg", "file_size": 7032, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c883ef90c9460c80626a6c4fbeaa88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c883ef90c9460c80626a6c4fbeaa88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c883ef90c9460c80626a6c4fbeaa88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2c883ef90c9460c80626a6c4fbeaa88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2c883ef90c9460c80626a6c4fbeaa88.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpK35PgOSEBmOkBuipVHOOXdZFE=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.00793+00 2025-12-09 10:15:00.007935+00 8610 DL30422#批布前粉 SPMX-20240815303777 \N \N \N 1 \N [{"file_id": "6bfa2cf5-1eec-453e-a1d1-a54d82341d99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "244c865707144ca5b7bb0a90df3d0bad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "244c865707144ca5b7bb0a90df3d0bad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "244c865707144ca5b7bb0a90df3d0bad.jpg", "file_size": 21133, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布前粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244c865707144ca5b7bb0a90df3d0bad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244c865707144ca5b7bb0a90df3d0bad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244c865707144ca5b7bb0a90df3d0bad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/244c865707144ca5b7bb0a90df3d0bad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/244c865707144ca5b7bb0a90df3d0bad.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvdVsoFioL1TDI--MdAkPW6IXtA=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.009648+00 2025-12-09 10:15:00.009653+00 8611 1071914#童14T SPMX-20240815303765 \N \N \N 1 \N [{"file_id": "0bed2417-bfbb-47ae-82fa-edbe6da9028f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be81d406a3ba476aa45a13ac488324e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be81d406a3ba476aa45a13ac488324e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be81d406a3ba476aa45a13ac488324e0.jpg", "file_size": 11202, "is_delete": false, "file_type": 1, "original_file_name": "1071914#童14T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be81d406a3ba476aa45a13ac488324e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be81d406a3ba476aa45a13ac488324e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be81d406a3ba476aa45a13ac488324e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be81d406a3ba476aa45a13ac488324e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be81d406a3ba476aa45a13ac488324e0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egNl42W0DHU9s0MyvRN4LERypiM=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.011342+00 2025-12-09 10:15:00.011347+00 8612 JTSS057FW#VS-D3 SPMX-20240815303774 \N \N \N 1 \N [{"file_id": "c278d424-f34a-4e39-a3b1-c8f186a6a173", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88da993ae93d49cbab8e0ec438a7a406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88da993ae93d49cbab8e0ec438a7a406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88da993ae93d49cbab8e0ec438a7a406.jpg", "file_size": 14279, "is_delete": false, "file_type": 1, "original_file_name": "JTSS057FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88da993ae93d49cbab8e0ec438a7a406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88da993ae93d49cbab8e0ec438a7a406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88da993ae93d49cbab8e0ec438a7a406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88da993ae93d49cbab8e0ec438a7a406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88da993ae93d49cbab8e0ec438a7a406.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48ibiJr9E80QCY5D910TkwASe9s=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.013343+00 2025-12-09 10:15:00.013349+00 8613 80317#小童 SPMX-20240815303776 \N \N \N 1 \N [{"file_id": "722c93dd-d8d4-43e2-be03-0804986255ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9754269dc69744689969999f08141f9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9754269dc69744689969999f08141f9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9754269dc69744689969999f08141f9e.jpg", "file_size": 21130, "is_delete": false, "file_type": 1, "original_file_name": "80317#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9754269dc69744689969999f08141f9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9754269dc69744689969999f08141f9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9754269dc69744689969999f08141f9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9754269dc69744689969999f08141f9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9754269dc69744689969999f08141f9e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkBqN58nEptSj3CvF1cWRT90cb4=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.015456+00 2025-12-09 10:15:00.015463+00 8614 1071914#童2T+3T+4T+6T+8T SPMX-20240815303775 \N \N \N 1 \N [{"file_id": "c5d37f27-d009-4b32-884c-1200cbbdcbfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22c2957accf949b0a7f3d11cd6e5e7ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22c2957accf949b0a7f3d11cd6e5e7ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22c2957accf949b0a7f3d11cd6e5e7ae.jpg", "file_size": 15201, "is_delete": false, "file_type": 1, "original_file_name": "1071914#童2T+3T+4T+6T+8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c2957accf949b0a7f3d11cd6e5e7ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c2957accf949b0a7f3d11cd6e5e7ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c2957accf949b0a7f3d11cd6e5e7ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22c2957accf949b0a7f3d11cd6e5e7ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22c2957accf949b0a7f3d11cd6e5e7ae.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:foK7MGqvcTD1_8FlDhguovwlTIY=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.017346+00 2025-12-09 10:15:00.017351+00 8615 LZ123FWF#2号色短袖 SPMX-20240815303768 \N \N \N 1 \N [{"file_id": "dce9ae2b-67f2-4af1-bfab-91c8cb8c6b7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff965fd1fa6544e289fd18097962cdaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff965fd1fa6544e289fd18097962cdaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff965fd1fa6544e289fd18097962cdaf.jpg", "file_size": 19523, "is_delete": false, "file_type": 1, "original_file_name": "LZ123FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff965fd1fa6544e289fd18097962cdaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff965fd1fa6544e289fd18097962cdaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff965fd1fa6544e289fd18097962cdaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff965fd1fa6544e289fd18097962cdaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff965fd1fa6544e289fd18097962cdaf.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WBe5shI_mAj0I_SCHSKILe-0onc=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.018953+00 2025-12-09 10:15:00.018963+00 8616 DL30422#前幅白色 SPMX-20240815303766 \N \N \N 1 \N [{"file_id": "6c9e80ce-d8b1-4330-9958-6c4bfee0875b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "440c25b05a1040a498c03ab1eaba59fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "440c25b05a1040a498c03ab1eaba59fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "440c25b05a1040a498c03ab1eaba59fe.jpg", "file_size": 15519, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#前幅白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440c25b05a1040a498c03ab1eaba59fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440c25b05a1040a498c03ab1eaba59fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440c25b05a1040a498c03ab1eaba59fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/440c25b05a1040a498c03ab1eaba59fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/440c25b05a1040a498c03ab1eaba59fe.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXPOCoqix1oUNqarOQBpwRHidA8=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.020532+00 2025-12-09 10:15:00.020536+00 8617 HT0101-52#WJC22 SPMX-20240815303778 \N \N \N 1 \N [{"file_id": "30f5f35c-6aa7-47a1-8782-953584b8b2e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg", "file_size": 12269, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-52#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1051d1fd8c24e67afcc1e8cd2bb92a0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8D3RAMcAvV6U9WvzXyAsLsAyj08=", "createTime": "2024-08-15 14:47:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.022295+00 2025-12-09 10:15:00.0223+00 8618 23-2113#A2领子通用 SPMX-20240815303779 \N \N \N 1 \N [{"file_id": "8339e315-3aca-4ae1-9e43-3f59faa18b84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "012831dac62c4b058ab6956af9b1cd06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "012831dac62c4b058ab6956af9b1cd06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "012831dac62c4b058ab6956af9b1cd06.jpg", "file_size": 7856, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/012831dac62c4b058ab6956af9b1cd06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/012831dac62c4b058ab6956af9b1cd06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/012831dac62c4b058ab6956af9b1cd06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/012831dac62c4b058ab6956af9b1cd06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/012831dac62c4b058ab6956af9b1cd06.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcMDQMXxGlc8c4t-gWj67yHfeLs=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.024399+00 2025-12-09 10:15:00.024405+00 8619 DL30422#批布墨绿 SPMX-20240815303788 \N \N \N 1 \N [{"file_id": "755d34a4-5e87-4022-b6bc-7eba30373f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c4479a720941b7bd0fc6dbfe0e5d4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c4479a720941b7bd0fc6dbfe0e5d4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c4479a720941b7bd0fc6dbfe0e5d4f.jpg", "file_size": 10976, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c4479a720941b7bd0fc6dbfe0e5d4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c4479a720941b7bd0fc6dbfe0e5d4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c4479a720941b7bd0fc6dbfe0e5d4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c4479a720941b7bd0fc6dbfe0e5d4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c4479a720941b7bd0fc6dbfe0e5d4f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LjtGLyzCC11WY-CQJQYv8UGwLHs=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.026112+00 2025-12-09 10:15:00.026117+00 8620 HT0101-53#WJC22 SPMX-20240815303789 \N \N \N 1 \N [{"file_id": "bb60abdc-1e88-441e-964f-549d7f13e4d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c647400f649442d180bac762ab4ad845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c647400f649442d180bac762ab4ad845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c647400f649442d180bac762ab4ad845.jpg", "file_size": 7757, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-53#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c647400f649442d180bac762ab4ad845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c647400f649442d180bac762ab4ad845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c647400f649442d180bac762ab4ad845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c647400f649442d180bac762ab4ad845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c647400f649442d180bac762ab4ad845.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7R4RVYEeey_bRbwjW01N8w8ZEc=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.027827+00 2025-12-09 10:15:00.027831+00 8621 LZ123FWF#3号色短袖 SPMX-20240815303782 \N \N \N 1 \N [{"file_id": "73d82dcc-3862-476f-813f-a7561c81901b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg", "file_size": 20658, "is_delete": false, "file_type": 1, "original_file_name": "LZ123FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7438cbbaa64d608cc6ea5ee0aa21ec.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hEktCTu3kVPldy-VTwISPD2RVfw=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.029512+00 2025-12-09 10:15:00.029517+00 8622 80317#裤子 SPMX-20240815303786 \N \N \N 1 \N [{"file_id": "3e1bc5bd-7a28-4ff6-bc36-406d964d64af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698c87740b344c93a5cd434e525877aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698c87740b344c93a5cd434e525877aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698c87740b344c93a5cd434e525877aa.jpg", "file_size": 17769, "is_delete": false, "file_type": 1, "original_file_name": "80317#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c87740b344c93a5cd434e525877aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c87740b344c93a5cd434e525877aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c87740b344c93a5cd434e525877aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698c87740b344c93a5cd434e525877aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698c87740b344c93a5cd434e525877aa.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ltYO9T3_8XMhFVGqXAHngBhAJQ=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.031487+00 2025-12-09 10:15:00.031492+00 8623 FHXGPK-093-1 SPMX-20240815303785 \N \N \N 1 \N [{"file_id": "f993d18f-e8f1-4e59-a178-ca53c28ae68a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9fae641a1694a79bd30aac7cf4e15c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9fae641a1694a79bd30aac7cf4e15c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9fae641a1694a79bd30aac7cf4e15c0.jpg", "file_size": 29743, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-093-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fae641a1694a79bd30aac7cf4e15c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fae641a1694a79bd30aac7cf4e15c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fae641a1694a79bd30aac7cf4e15c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9fae641a1694a79bd30aac7cf4e15c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9fae641a1694a79bd30aac7cf4e15c0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vQ76c3ujgcSOWfanTRtFy2NH04=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.033467+00 2025-12-09 10:15:00.033472+00 8624 1071914#童5T SPMX-20240815303787 \N \N \N 1 \N [{"file_id": "c25dd0b5-af42-4d9c-af89-00c0c780862d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "432c288c89834444b9848e32e6b95101.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "432c288c89834444b9848e32e6b95101.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "432c288c89834444b9848e32e6b95101.jpg", "file_size": 10669, "is_delete": false, "file_type": 1, "original_file_name": "1071914#童5T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432c288c89834444b9848e32e6b95101.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432c288c89834444b9848e32e6b95101.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432c288c89834444b9848e32e6b95101.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/432c288c89834444b9848e32e6b95101.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/432c288c89834444b9848e32e6b95101.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrUnAuoQjvStCyM2npDcstp90Tw=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.035163+00 2025-12-09 10:15:00.035168+00 8625 C338-1#绿色XL码 SPMX-20240815303781 \N \N \N 1 \N [{"file_id": "b41f9c49-1350-4593-85b1-c0916a5d0ac2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67caaeba9a104deab5361f81420402fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67caaeba9a104deab5361f81420402fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67caaeba9a104deab5361f81420402fc.jpg", "file_size": 15342, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#绿色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67caaeba9a104deab5361f81420402fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67caaeba9a104deab5361f81420402fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67caaeba9a104deab5361f81420402fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67caaeba9a104deab5361f81420402fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67caaeba9a104deab5361f81420402fc.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBs4HXzgTGb_xpxru-q1RiOiXxM=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.036866+00 2025-12-09 10:15:00.036871+00 8626 LJ20112440601#S SPMX-20240815303780 \N \N \N 1 \N [{"file_id": "b62c2463-30fe-4898-a052-fb1f4fea4e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c41a57ba8a124ed4ad000310e02c4c0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c41a57ba8a124ed4ad000310e02c4c0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c41a57ba8a124ed4ad000310e02c4c0b.jpg", "file_size": 6896, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41a57ba8a124ed4ad000310e02c4c0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41a57ba8a124ed4ad000310e02c4c0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c41a57ba8a124ed4ad000310e02c4c0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c41a57ba8a124ed4ad000310e02c4c0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c41a57ba8a124ed4ad000310e02c4c0b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qLQAhmescPOEwYBQL8WuVkQ1GLc=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.038555+00 2025-12-09 10:15:00.03856+00 8627 JTSS058#绿VS-D3 SPMX-20240815303784 \N \N \N 1 \N [{"file_id": "040194f9-6019-4547-bc49-9fca4d0fa47c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb14294fa9e4738a9f3f6ee387945f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb14294fa9e4738a9f3f6ee387945f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb14294fa9e4738a9f3f6ee387945f7.jpg", "file_size": 11942, "is_delete": false, "file_type": 1, "original_file_name": "JTSS058#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb14294fa9e4738a9f3f6ee387945f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb14294fa9e4738a9f3f6ee387945f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb14294fa9e4738a9f3f6ee387945f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb14294fa9e4738a9f3f6ee387945f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb14294fa9e4738a9f3f6ee387945f7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6d8fE1D_57itD6ugPe3S-gnWQ74=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.040499+00 2025-12-09 10:15:00.040504+00 8628 LJ20112440601#XL SPMX-20240815303791 \N \N \N 1 \N [{"file_id": "028b13d7-df72-499f-a1e2-9bf35fc4f441", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df8e8ceb1ef241e1b448d715971fd1aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df8e8ceb1ef241e1b448d715971fd1aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df8e8ceb1ef241e1b448d715971fd1aa.jpg", "file_size": 7390, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e8ceb1ef241e1b448d715971fd1aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e8ceb1ef241e1b448d715971fd1aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e8ceb1ef241e1b448d715971fd1aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df8e8ceb1ef241e1b448d715971fd1aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df8e8ceb1ef241e1b448d715971fd1aa.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LgNJ79pLyR0uWoCYFtYLGwAakqY=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.042192+00 2025-12-09 10:15:00.042198+00 8629 0003-372#WJC22 SPMX-20240815303783 \N \N \N 1 \N [{"file_id": "f952ee47-77de-43bf-a530-bff9beac11d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da19593a52564693b0e53569533f5f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da19593a52564693b0e53569533f5f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da19593a52564693b0e53569533f5f06.jpg", "file_size": 9809, "is_delete": false, "file_type": 1, "original_file_name": "0003-372#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da19593a52564693b0e53569533f5f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da19593a52564693b0e53569533f5f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da19593a52564693b0e53569533f5f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da19593a52564693b0e53569533f5f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da19593a52564693b0e53569533f5f06.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hxxOSKADwqKnKz7i1AGAMq54j2A=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.0439+00 2025-12-09 10:15:00.043905+00 8630 23-2113#A3前后片3XL SPMX-20240815303790 \N \N \N 1 \N [{"file_id": "2c22adc7-7da3-488f-b215-3c7cf20611a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c94c27e990d84c269b0ded1eca7b9b36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c94c27e990d84c269b0ded1eca7b9b36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c94c27e990d84c269b0ded1eca7b9b36.jpg", "file_size": 9978, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94c27e990d84c269b0ded1eca7b9b36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94c27e990d84c269b0ded1eca7b9b36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c94c27e990d84c269b0ded1eca7b9b36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c94c27e990d84c269b0ded1eca7b9b36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c94c27e990d84c269b0ded1eca7b9b36.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mX6Eg7V_Gh0dLeauUeVo_IbcHsc=", "createTime": "2024-08-15 14:47:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.04559+00 2025-12-09 10:15:00.045595+00 8631 80318#上衣 SPMX-20240815303796 \N \N \N 1 \N [{"file_id": "c34cc370-bbcd-40f5-b2a3-dc7e23249590", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89bc9c8faebd47b28258257cec593fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89bc9c8faebd47b28258257cec593fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89bc9c8faebd47b28258257cec593fe9.jpg", "file_size": 21672, "is_delete": false, "file_type": 1, "original_file_name": "80318#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc9c8faebd47b28258257cec593fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc9c8faebd47b28258257cec593fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bc9c8faebd47b28258257cec593fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89bc9c8faebd47b28258257cec593fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89bc9c8faebd47b28258257cec593fe9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxTJrSA8C3qx2sGMO_5BcK4rDsI=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.047571+00 2025-12-09 10:15:00.047577+00 8632 HT0101-54#WJC22 SPMX-20240815303798 \N \N \N 1 \N [{"file_id": "f7e53d70-2dc7-44ef-a356-aa98aefc8021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a19d22613564e94b41f7ab69c225930.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a19d22613564e94b41f7ab69c225930.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a19d22613564e94b41f7ab69c225930.jpg", "file_size": 9184, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-54#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a19d22613564e94b41f7ab69c225930.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a19d22613564e94b41f7ab69c225930.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a19d22613564e94b41f7ab69c225930.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a19d22613564e94b41f7ab69c225930.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a19d22613564e94b41f7ab69c225930.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVwUJzC4D0oEjcb3Thb48trXg4Q=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.049274+00 2025-12-09 10:15:00.04928+00 8633 1071914#童8T SPMX-20240815303801 \N \N \N 1 \N [{"file_id": "c268eb8f-71ec-480f-9efc-209aa0f1d93a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24de8da8d68f4e7a8bccdec871bf50c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24de8da8d68f4e7a8bccdec871bf50c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24de8da8d68f4e7a8bccdec871bf50c0.jpg", "file_size": 14730, "is_delete": false, "file_type": 1, "original_file_name": "1071914#童8T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24de8da8d68f4e7a8bccdec871bf50c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24de8da8d68f4e7a8bccdec871bf50c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24de8da8d68f4e7a8bccdec871bf50c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24de8da8d68f4e7a8bccdec871bf50c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24de8da8d68f4e7a8bccdec871bf50c0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4wZQ1VqqedL8l9b9RL4KLj7f0hg=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.050973+00 2025-12-09 10:15:00.050978+00 8634 0003-373#袖子 SPMX-20240815303794 \N \N \N 1 \N [{"file_id": "66799c21-9f84-4540-b76f-812cd81c2323", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b41cff6f901480892f957f49029e3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b41cff6f901480892f957f49029e3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b41cff6f901480892f957f49029e3a6.jpg", "file_size": 14796, "is_delete": false, "file_type": 1, "original_file_name": "0003-373#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b41cff6f901480892f957f49029e3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b41cff6f901480892f957f49029e3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b41cff6f901480892f957f49029e3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b41cff6f901480892f957f49029e3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b41cff6f901480892f957f49029e3a6.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mB5DvsazMJaeM6mJqHJTS46Oqd8=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.052972+00 2025-12-09 10:15:00.052978+00 8635 LZ123FWF#5号色短袖 SPMX-20240815303805 \N \N \N 1 \N [{"file_id": "5d5f9849-c76a-448b-8c3d-30c7941c3348", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a874531c655b4dd884536c00df718309.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a874531c655b4dd884536c00df718309.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a874531c655b4dd884536c00df718309.jpg", "file_size": 20371, "is_delete": false, "file_type": 1, "original_file_name": "LZ123FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a874531c655b4dd884536c00df718309.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a874531c655b4dd884536c00df718309.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a874531c655b4dd884536c00df718309.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a874531c655b4dd884536c00df718309.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a874531c655b4dd884536c00df718309.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMGp14TH2LNPJ8uOJyCqyKYNDBI=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.0552+00 2025-12-09 10:15:00.055207+00 8636 23-2113#A3前后片4XL SPMX-20240815303800 \N \N \N 1 \N [{"file_id": "b80e7119-336a-44e2-a256-14e16e9475a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f86bc36ad61f40d68bdcb9de006c4d7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f86bc36ad61f40d68bdcb9de006c4d7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f86bc36ad61f40d68bdcb9de006c4d7e.jpg", "file_size": 10119, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86bc36ad61f40d68bdcb9de006c4d7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86bc36ad61f40d68bdcb9de006c4d7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86bc36ad61f40d68bdcb9de006c4d7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f86bc36ad61f40d68bdcb9de006c4d7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f86bc36ad61f40d68bdcb9de006c4d7e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LOkWEiIjM0bpd4fFQbp0O7TuAe8=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.057224+00 2025-12-09 10:15:00.057231+00 8637 LJ20112440601#净色 SPMX-20240815303802 \N \N \N 1 \N [{"file_id": "c71a4fa9-a1c7-45a9-a6d7-f18e2b867025", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f366020179f42aea5d5d5ccf609a47f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f366020179f42aea5d5d5ccf609a47f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f366020179f42aea5d5d5ccf609a47f.jpg", "file_size": 6482, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f366020179f42aea5d5d5ccf609a47f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f366020179f42aea5d5d5ccf609a47f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f366020179f42aea5d5d5ccf609a47f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f366020179f42aea5d5d5ccf609a47f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f366020179f42aea5d5d5ccf609a47f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tiP8wz-L9vPRgs8aD70lxtCNcVU=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.059046+00 2025-12-09 10:15:00.059052+00 8638 0003-373#黄色 SPMX-20240815303804 \N \N \N 1 \N [{"file_id": "f0374a27-7613-4b12-ac8e-80efb3e77cda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9c4a365bf044aa18de0fe315a4a8cfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9c4a365bf044aa18de0fe315a4a8cfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9c4a365bf044aa18de0fe315a4a8cfd.jpg", "file_size": 15611, "is_delete": false, "file_type": 1, "original_file_name": "0003-373#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c4a365bf044aa18de0fe315a4a8cfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c4a365bf044aa18de0fe315a4a8cfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c4a365bf044aa18de0fe315a4a8cfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9c4a365bf044aa18de0fe315a4a8cfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9c4a365bf044aa18de0fe315a4a8cfd.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVGUdeCmAFEWft0nXiw7hvBVaWE=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.060872+00 2025-12-09 10:15:00.060876+00 8639 DL30422#批布彩兰 SPMX-20240815303799 \N \N \N 1 \N [{"file_id": "75237cd7-01bb-40c2-9f01-a1893712f823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a079e2c9df814d0c8471e6ce8ce92536.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a079e2c9df814d0c8471e6ce8ce92536.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a079e2c9df814d0c8471e6ce8ce92536.jpg", "file_size": 11664, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079e2c9df814d0c8471e6ce8ce92536.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079e2c9df814d0c8471e6ce8ce92536.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079e2c9df814d0c8471e6ce8ce92536.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a079e2c9df814d0c8471e6ce8ce92536.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a079e2c9df814d0c8471e6ce8ce92536.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYn5ZmWAM7qEH8BUtkblaTqRaE4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.062653+00 2025-12-09 10:15:00.062659+00 8640 C338-1#绿色匹印 SPMX-20240815303792 \N \N \N 1 \N [{"file_id": "4a684a7d-f349-4865-b790-178fe541204c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651f72c1c0d341a982ee8a1b674b3e98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651f72c1c0d341a982ee8a1b674b3e98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651f72c1c0d341a982ee8a1b674b3e98.jpg", "file_size": 26773, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#绿色匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651f72c1c0d341a982ee8a1b674b3e98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651f72c1c0d341a982ee8a1b674b3e98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651f72c1c0d341a982ee8a1b674b3e98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651f72c1c0d341a982ee8a1b674b3e98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651f72c1c0d341a982ee8a1b674b3e98.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WLSuQHUKyth_dJ11bOqr4PJluY=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.064237+00 2025-12-09 10:15:00.064243+00 8641 LZ123FWF#4号色短袖 SPMX-20240815303793 \N \N \N 1 \N [{"file_id": "483340ec-27e3-4bf0-922b-f0257be6ad87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5244d4ef72bb43ee8c77572961156d57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5244d4ef72bb43ee8c77572961156d57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5244d4ef72bb43ee8c77572961156d57.jpg", "file_size": 20623, "is_delete": false, "file_type": 1, "original_file_name": "LZ123FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5244d4ef72bb43ee8c77572961156d57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5244d4ef72bb43ee8c77572961156d57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5244d4ef72bb43ee8c77572961156d57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5244d4ef72bb43ee8c77572961156d57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5244d4ef72bb43ee8c77572961156d57.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_cNu60zT1RauLyfoPwDqVFWWx8=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.065837+00 2025-12-09 10:15:00.065841+00 8642 C338-1#蓝色L码 SPMX-20240815303803 \N \N \N 1 \N [{"file_id": "549705a6-ad88-48a4-af49-e29cb939a986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "187e5dc3f2e94dfe97b5d400f0b3ea02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "187e5dc3f2e94dfe97b5d400f0b3ea02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "187e5dc3f2e94dfe97b5d400f0b3ea02.jpg", "file_size": 13499, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#蓝色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187e5dc3f2e94dfe97b5d400f0b3ea02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187e5dc3f2e94dfe97b5d400f0b3ea02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/187e5dc3f2e94dfe97b5d400f0b3ea02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/187e5dc3f2e94dfe97b5d400f0b3ea02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/187e5dc3f2e94dfe97b5d400f0b3ea02.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gaqx4ym9dzfRS7Q5INU0NBcK3K4=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.067823+00 2025-12-09 10:15:00.067828+00 8643 JTSS058#黄VS-D3 SPMX-20240815303797 \N \N \N 1 \N [{"file_id": "bea8d39f-489b-4f81-a261-d938b14b0532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cede4a298adc498593ac5a3f5869aefc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cede4a298adc498593ac5a3f5869aefc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cede4a298adc498593ac5a3f5869aefc.jpg", "file_size": 12014, "is_delete": false, "file_type": 1, "original_file_name": "JTSS058#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cede4a298adc498593ac5a3f5869aefc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cede4a298adc498593ac5a3f5869aefc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cede4a298adc498593ac5a3f5869aefc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cede4a298adc498593ac5a3f5869aefc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cede4a298adc498593ac5a3f5869aefc.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiZ2T5B5nMfVQktSKeD3bS64y4k=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.069674+00 2025-12-09 10:15:00.06968+00 8644 FHXGPK-094-1 SPMX-20240815303795 \N \N \N 1 \N [{"file_id": "019bec70-b9a6-4097-97b0-667aa73a7125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "723a1df5dbc74e2397db3b91eef3dc9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "723a1df5dbc74e2397db3b91eef3dc9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "723a1df5dbc74e2397db3b91eef3dc9f.jpg", "file_size": 28535, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-094-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723a1df5dbc74e2397db3b91eef3dc9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723a1df5dbc74e2397db3b91eef3dc9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723a1df5dbc74e2397db3b91eef3dc9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/723a1df5dbc74e2397db3b91eef3dc9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/723a1df5dbc74e2397db3b91eef3dc9f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJ1yU6OIsAaRIw1vep3OwTget-s=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.071242+00 2025-12-09 10:15:00.071247+00 8645 LZ1240#上身1号色 SPMX-20240815303814 \N \N \N 1 \N [{"file_id": "bedeebc7-907a-4326-9c03-c9e74f384754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79b88e53dc4a425b956c428316bd91bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79b88e53dc4a425b956c428316bd91bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79b88e53dc4a425b956c428316bd91bf.jpg", "file_size": 15664, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b88e53dc4a425b956c428316bd91bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b88e53dc4a425b956c428316bd91bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79b88e53dc4a425b956c428316bd91bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79b88e53dc4a425b956c428316bd91bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79b88e53dc4a425b956c428316bd91bf.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HEKspafeZ3OKolaSSEtR7SJvbnM=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.072773+00 2025-12-09 10:15:00.072777+00 8646 C338-1#蓝色M码 SPMX-20240815303815 \N \N \N 1 \N [{"file_id": "9a00b23e-f181-4bcf-9236-0d5026c15bec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cef61943be654d07bc9c9fe950f979ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cef61943be654d07bc9c9fe950f979ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cef61943be654d07bc9c9fe950f979ac.jpg", "file_size": 19366, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#蓝色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef61943be654d07bc9c9fe950f979ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef61943be654d07bc9c9fe950f979ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef61943be654d07bc9c9fe950f979ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cef61943be654d07bc9c9fe950f979ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cef61943be654d07bc9c9fe950f979ac.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAHXsgKI5ePVfSZQYESPmXis-Jc=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.07431+00 2025-12-09 10:15:00.074314+00 8647 DL30422#批布水红 SPMX-20240815303821 \N \N \N 1 \N [{"file_id": "695f8cf5-18eb-45ec-90a8-566d18df5043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c50ea9e861384a4e96c762cc39990fb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c50ea9e861384a4e96c762cc39990fb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c50ea9e861384a4e96c762cc39990fb0.jpg", "file_size": 24742, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50ea9e861384a4e96c762cc39990fb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50ea9e861384a4e96c762cc39990fb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50ea9e861384a4e96c762cc39990fb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c50ea9e861384a4e96c762cc39990fb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c50ea9e861384a4e96c762cc39990fb0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1JCn4w3qCVkmLBIQQFP8IzF_9k=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.075831+00 2025-12-09 10:15:00.075835+00 8648 1071914#裤子 SPMX-20240815303813 \N \N \N 1 \N [{"file_id": "889b2505-cc0e-4195-8183-a49049214db1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73165208f645409aabadc6bbf8818d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73165208f645409aabadc6bbf8818d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73165208f645409aabadc6bbf8818d74.jpg", "file_size": 12759, "is_delete": false, "file_type": 1, "original_file_name": "1071914#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73165208f645409aabadc6bbf8818d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73165208f645409aabadc6bbf8818d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73165208f645409aabadc6bbf8818d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73165208f645409aabadc6bbf8818d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73165208f645409aabadc6bbf8818d74.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnPbzn5ExhI4ChWxMDk9bq0u8zg=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.077373+00 2025-12-09 10:15:00.077377+00 8649 DL30422#批布枣红 SPMX-20240815303809 \N \N \N 1 \N [{"file_id": "06b58a0a-999d-433f-a66d-9bb33845c45e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59324116e02c4677b76327d582ab8688.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59324116e02c4677b76327d582ab8688.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59324116e02c4677b76327d582ab8688.jpg", "file_size": 10226, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59324116e02c4677b76327d582ab8688.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59324116e02c4677b76327d582ab8688.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59324116e02c4677b76327d582ab8688.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59324116e02c4677b76327d582ab8688.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59324116e02c4677b76327d582ab8688.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HFkX9qJFuic5bEbj8uSIenH_FVU=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.078902+00 2025-12-09 10:15:00.078906+00 8650 HT0101-55#WJC22 SPMX-20240815303811 \N \N \N 1 \N [{"file_id": "936f14bf-2cfc-4ea1-b250-91447fbeb09d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "804f65b3d9984b158b730cec9bb3c6e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "804f65b3d9984b158b730cec9bb3c6e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "804f65b3d9984b158b730cec9bb3c6e7.jpg", "file_size": 14299, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-55#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/804f65b3d9984b158b730cec9bb3c6e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/804f65b3d9984b158b730cec9bb3c6e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/804f65b3d9984b158b730cec9bb3c6e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/804f65b3d9984b158b730cec9bb3c6e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/804f65b3d9984b158b730cec9bb3c6e7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJIZsLksZu2ZXCDr5pO7fvT8N0o=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.080532+00 2025-12-09 10:15:00.080536+00 8651 JTSS058FW#VS-D3 SPMX-20240815303806 \N \N \N 1 \N [{"file_id": "cb871fb6-8822-4d0e-9cdb-fbbe097ed1a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bba9773d5bf44e3ae88b92811bb684e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bba9773d5bf44e3ae88b92811bb684e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bba9773d5bf44e3ae88b92811bb684e.jpg", "file_size": 10105, "is_delete": false, "file_type": 1, "original_file_name": "JTSS058FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bba9773d5bf44e3ae88b92811bb684e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bba9773d5bf44e3ae88b92811bb684e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bba9773d5bf44e3ae88b92811bb684e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bba9773d5bf44e3ae88b92811bb684e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bba9773d5bf44e3ae88b92811bb684e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nex_mugs1RyF8oErEXBQRy-KoIY=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.082173+00 2025-12-09 10:15:00.082179+00 8652 HT0101-56#WJC22 SPMX-20240815303822 \N \N \N 1 \N [{"file_id": "c9f56587-f212-4e08-b8ba-dd632d5bc8c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb8139572e6948a0be893014252a2e6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb8139572e6948a0be893014252a2e6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb8139572e6948a0be893014252a2e6d.jpg", "file_size": 20124, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-56#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8139572e6948a0be893014252a2e6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8139572e6948a0be893014252a2e6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8139572e6948a0be893014252a2e6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb8139572e6948a0be893014252a2e6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb8139572e6948a0be893014252a2e6d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-WuLD9rApeZYZC8UTLrKRC51ZM=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.083753+00 2025-12-09 10:15:00.083757+00 8653 1071915#LWQ SPMX-20240815303823 \N \N \N 1 \N [{"file_id": "1a238132-648f-476d-ae82-26107732ad7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2a9f68da9ff45c79fb8bd78776f5676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2a9f68da9ff45c79fb8bd78776f5676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2a9f68da9ff45c79fb8bd78776f5676.jpg", "file_size": 20277, "is_delete": false, "file_type": 1, "original_file_name": "1071915#LWQ.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a9f68da9ff45c79fb8bd78776f5676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a9f68da9ff45c79fb8bd78776f5676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a9f68da9ff45c79fb8bd78776f5676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2a9f68da9ff45c79fb8bd78776f5676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2a9f68da9ff45c79fb8bd78776f5676.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a_m3sTUCeuuE9cFcOx_GPHYVNho=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.085332+00 2025-12-09 10:15:00.085338+00 8654 23-2113#A3袖子4XL SPMX-20240815303818 \N \N \N 1 \N [{"file_id": "1150347e-725b-44dc-a2aa-e2c828cae1b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd7f6ddfc6f4423c98e3ad927726737b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd7f6ddfc6f4423c98e3ad927726737b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd7f6ddfc6f4423c98e3ad927726737b.jpg", "file_size": 9713, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7f6ddfc6f4423c98e3ad927726737b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7f6ddfc6f4423c98e3ad927726737b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7f6ddfc6f4423c98e3ad927726737b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd7f6ddfc6f4423c98e3ad927726737b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd7f6ddfc6f4423c98e3ad927726737b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gIq3759PDs4jFOBTDgPy6NzU6e0=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.086941+00 2025-12-09 10:15:00.086946+00 8655 FHXGPK-096-1 SPMX-20240815303820 \N \N \N 1 \N [{"file_id": "0deb0de9-e817-42ee-bc85-8459d81a6aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54dd07d79907432d8e1bfd58b355bdc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54dd07d79907432d8e1bfd58b355bdc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54dd07d79907432d8e1bfd58b355bdc3.jpg", "file_size": 25269, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-096-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dd07d79907432d8e1bfd58b355bdc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dd07d79907432d8e1bfd58b355bdc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dd07d79907432d8e1bfd58b355bdc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54dd07d79907432d8e1bfd58b355bdc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54dd07d79907432d8e1bfd58b355bdc3.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbxTky78h-XBZocXXjabGRjjaEs=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.088491+00 2025-12-09 10:15:00.088496+00 8656 23-2113#A3袖子3XL SPMX-20240815303810 \N \N \N 1 \N [{"file_id": "5ed09281-98be-4ac8-bddd-acec4a4935f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12a7f04aaa0942cc8c438911eff0f84d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12a7f04aaa0942cc8c438911eff0f84d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12a7f04aaa0942cc8c438911eff0f84d.jpg", "file_size": 9365, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a7f04aaa0942cc8c438911eff0f84d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a7f04aaa0942cc8c438911eff0f84d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a7f04aaa0942cc8c438911eff0f84d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12a7f04aaa0942cc8c438911eff0f84d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12a7f04aaa0942cc8c438911eff0f84d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXzTk7rRoZcA0ubAyBOgeaJCDlI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.090045+00 2025-12-09 10:15:00.09005+00 8657 FHXGPK-095-1 SPMX-20240815303808 \N \N \N 1 \N [{"file_id": "72047bbc-55e7-44e3-af26-c630932d8524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6829716b11c04cadb779a00f0886fd17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6829716b11c04cadb779a00f0886fd17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6829716b11c04cadb779a00f0886fd17.jpg", "file_size": 36686, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-095-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6829716b11c04cadb779a00f0886fd17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6829716b11c04cadb779a00f0886fd17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6829716b11c04cadb779a00f0886fd17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6829716b11c04cadb779a00f0886fd17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6829716b11c04cadb779a00f0886fd17.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLbQNm1ebodfLfuz9pqzs1dc8mQ=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.091896+00 2025-12-09 10:15:00.091901+00 8658 0003-373#黑色 SPMX-20240815303816 \N \N \N 1 \N [{"file_id": "285e792d-545a-44a4-90e2-fcc31557dfa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6823858fc9e14f78991b63925240ab74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6823858fc9e14f78991b63925240ab74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6823858fc9e14f78991b63925240ab74.jpg", "file_size": 27109, "is_delete": false, "file_type": 1, "original_file_name": "0003-373#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823858fc9e14f78991b63925240ab74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823858fc9e14f78991b63925240ab74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823858fc9e14f78991b63925240ab74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6823858fc9e14f78991b63925240ab74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6823858fc9e14f78991b63925240ab74.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2o3ypFEzGZCIy4FIcFvGby5W1c=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.093499+00 2025-12-09 10:15:00.093509+00 8659 80318#中童 SPMX-20240815303807 \N \N \N 1 \N [{"file_id": "e0b760f7-ebc3-4848-9ce2-2a0d4fa8eafa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04cb75f922fc4ceb8176cb1802bf0e27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04cb75f922fc4ceb8176cb1802bf0e27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04cb75f922fc4ceb8176cb1802bf0e27.jpg", "file_size": 29562, "is_delete": false, "file_type": 1, "original_file_name": "80318#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cb75f922fc4ceb8176cb1802bf0e27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cb75f922fc4ceb8176cb1802bf0e27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04cb75f922fc4ceb8176cb1802bf0e27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04cb75f922fc4ceb8176cb1802bf0e27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04cb75f922fc4ceb8176cb1802bf0e27.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjo6Zd7rO8UaAycpiP_bEASg1WE=", "createTime": "2024-08-15 14:47:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.095041+00 2025-12-09 10:15:00.095045+00 8660 80318#乱花 SPMX-20240815303819 \N \N \N 1 \N [{"file_id": "8bd6156b-05fd-490b-ac6c-30fd7d904807", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf08dbec9a846d788eff38d453f7ad9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf08dbec9a846d788eff38d453f7ad9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf08dbec9a846d788eff38d453f7ad9.jpg", "file_size": 16680, "is_delete": false, "file_type": 1, "original_file_name": "80318#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf08dbec9a846d788eff38d453f7ad9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf08dbec9a846d788eff38d453f7ad9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf08dbec9a846d788eff38d453f7ad9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf08dbec9a846d788eff38d453f7ad9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf08dbec9a846d788eff38d453f7ad9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOq7DnBQrLTDslbaWyFk1icrJDQ=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.096815+00 2025-12-09 10:15:00.096821+00 8661 LJ20112440601#匹布 SPMX-20240815303812 \N \N \N 1 \N [{"file_id": "9f3532a0-2c70-4ee0-942e-ec9a09b1201b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb8252c6e8f4000b47c40ff98922660.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb8252c6e8f4000b47c40ff98922660.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb8252c6e8f4000b47c40ff98922660.jpg", "file_size": 7139, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb8252c6e8f4000b47c40ff98922660.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb8252c6e8f4000b47c40ff98922660.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb8252c6e8f4000b47c40ff98922660.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb8252c6e8f4000b47c40ff98922660.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb8252c6e8f4000b47c40ff98922660.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9wEO842SvO2v7pfDZbiavuHnnPI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.098438+00 2025-12-09 10:15:00.098443+00 8662 JTSS059#浅蓝VS-D3 SPMX-20240815303817 \N \N \N 1 \N [{"file_id": "74e91bb9-03e2-441f-91c9-4d486901afa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e34f1fbef1b94ffeaed14c76eebc65b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e34f1fbef1b94ffeaed14c76eebc65b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e34f1fbef1b94ffeaed14c76eebc65b0.jpg", "file_size": 7921, "is_delete": false, "file_type": 1, "original_file_name": "JTSS059#浅蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34f1fbef1b94ffeaed14c76eebc65b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34f1fbef1b94ffeaed14c76eebc65b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34f1fbef1b94ffeaed14c76eebc65b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e34f1fbef1b94ffeaed14c76eebc65b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e34f1fbef1b94ffeaed14c76eebc65b0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyfxFX0-T5ZZGV-JoiuOncB8WCI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.100013+00 2025-12-09 10:15:00.100018+00 8663 23-2113#A3领口通用 SPMX-20240815303829 \N \N \N 1 \N [{"file_id": "21aa00a2-d29b-4581-9a17-a152602b5d02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fd1fc0c8ef049429a8c71a6162f6b9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fd1fc0c8ef049429a8c71a6162f6b9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fd1fc0c8ef049429a8c71a6162f6b9d.jpg", "file_size": 8778, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd1fc0c8ef049429a8c71a6162f6b9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd1fc0c8ef049429a8c71a6162f6b9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd1fc0c8ef049429a8c71a6162f6b9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fd1fc0c8ef049429a8c71a6162f6b9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fd1fc0c8ef049429a8c71a6162f6b9d.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RG-dRKVq0BpqqJDijncHQ5TeSro=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.101574+00 2025-12-09 10:15:00.10158+00 8664 LZ1240#上身3号色 SPMX-20240815303837 \N \N \N 1 \N [{"file_id": "6bef2897-1473-4eed-85f9-27f2087caebe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c619da05d300456892678786875867c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c619da05d300456892678786875867c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c619da05d300456892678786875867c7.jpg", "file_size": 18574, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c619da05d300456892678786875867c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c619da05d300456892678786875867c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c619da05d300456892678786875867c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c619da05d300456892678786875867c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c619da05d300456892678786875867c7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-M2eG3eCMx9MwsYx6meLnDImimk=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.103113+00 2025-12-09 10:15:00.103118+00 8665 LZ1240#上身2号色 SPMX-20240815303827 \N \N \N 1 \N [{"file_id": "72aa528d-ff0d-4258-8d78-01853340f9d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2b215d924b94416b6c66c2a7e7f723e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2b215d924b94416b6c66c2a7e7f723e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2b215d924b94416b6c66c2a7e7f723e.jpg", "file_size": 18525, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b215d924b94416b6c66c2a7e7f723e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b215d924b94416b6c66c2a7e7f723e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b215d924b94416b6c66c2a7e7f723e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2b215d924b94416b6c66c2a7e7f723e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2b215d924b94416b6c66c2a7e7f723e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3KWziemCrDwqHuftAOH-9NyNXg=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.104616+00 2025-12-09 10:15:00.10462+00 8666 FHXGPK-097-1 SPMX-20240815303830 \N \N \N 1 \N [{"file_id": "7b8eb09b-d5d9-43db-9fc4-74ae93ce64fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9a79a8b025c4ab2a320db95d21175dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9a79a8b025c4ab2a320db95d21175dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9a79a8b025c4ab2a320db95d21175dc.jpg", "file_size": 29166, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-097-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a79a8b025c4ab2a320db95d21175dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a79a8b025c4ab2a320db95d21175dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a79a8b025c4ab2a320db95d21175dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9a79a8b025c4ab2a320db95d21175dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9a79a8b025c4ab2a320db95d21175dc.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8M9rBHjcd5ueRO4hooz1kr51ZV8=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.106169+00 2025-12-09 10:15:00.106173+00 8667 80318#匹布 SPMX-20240815303833 \N \N \N 1 \N [{"file_id": "43aa06ef-8108-41ae-bba5-33de1a7e02b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f688d52161e6492cb1ee96dfe26256b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f688d52161e6492cb1ee96dfe26256b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f688d52161e6492cb1ee96dfe26256b9.jpg", "file_size": 17326, "is_delete": false, "file_type": 1, "original_file_name": "80318#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f688d52161e6492cb1ee96dfe26256b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f688d52161e6492cb1ee96dfe26256b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f688d52161e6492cb1ee96dfe26256b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f688d52161e6492cb1ee96dfe26256b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f688d52161e6492cb1ee96dfe26256b9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7h50I8VqXYjSj8qWaL5SJg7cP60=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.107939+00 2025-12-09 10:15:00.107943+00 8668 C338-1#蓝色XL码 SPMX-20240815303836 \N \N \N 1 \N [{"file_id": "95624c42-6903-45b1-b67a-8f655bb1aafe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d780b3ab08f14018b218baf147d3e90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d780b3ab08f14018b218baf147d3e90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d780b3ab08f14018b218baf147d3e90e.jpg", "file_size": 18260, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#蓝色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d780b3ab08f14018b218baf147d3e90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d780b3ab08f14018b218baf147d3e90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d780b3ab08f14018b218baf147d3e90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d780b3ab08f14018b218baf147d3e90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d780b3ab08f14018b218baf147d3e90e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpXaCDU89CoLOGqt7CXGWTn5MFE=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.109452+00 2025-12-09 10:15:00.109456+00 8669 0003-375#-1 SPMX-20240815303839 \N \N \N 1 \N [{"file_id": "395ef06a-3769-4ee7-a519-1aba67295347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88d8cc5b23744564888cbfd9a44f61d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88d8cc5b23744564888cbfd9a44f61d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88d8cc5b23744564888cbfd9a44f61d4.jpg", "file_size": 20830, "is_delete": false, "file_type": 1, "original_file_name": "0003-375#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8cc5b23744564888cbfd9a44f61d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8cc5b23744564888cbfd9a44f61d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8cc5b23744564888cbfd9a44f61d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88d8cc5b23744564888cbfd9a44f61d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88d8cc5b23744564888cbfd9a44f61d4.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fve-Beni8DoRkb7uHSEUFwZfg0Y=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.110952+00 2025-12-09 10:15:00.110956+00 8670 HT0101-57#WJC22 SPMX-20240815303832 \N \N \N 1 \N [{"file_id": "7b54d7e4-f583-4c7c-baa2-b691b7336fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb1320a556844c3aa3f5412e8e2c74c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb1320a556844c3aa3f5412e8e2c74c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb1320a556844c3aa3f5412e8e2c74c.jpg", "file_size": 9912, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-57#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb1320a556844c3aa3f5412e8e2c74c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb1320a556844c3aa3f5412e8e2c74c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb1320a556844c3aa3f5412e8e2c74c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb1320a556844c3aa3f5412e8e2c74c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb1320a556844c3aa3f5412e8e2c74c.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Py_TWSbFAxSj_xiSN210HpJ1hwM=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.112472+00 2025-12-09 10:15:00.112476+00 8671 LJ20112440601#捆条 SPMX-20240815303838 \N \N \N 1 \N [{"file_id": "b17fe5d5-3a47-4e0e-8de9-bfc0ff67e7ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc811ab4e0404873bc20bbb3dd78d611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc811ab4e0404873bc20bbb3dd78d611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc811ab4e0404873bc20bbb3dd78d611.jpg", "file_size": 7135, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc811ab4e0404873bc20bbb3dd78d611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc811ab4e0404873bc20bbb3dd78d611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc811ab4e0404873bc20bbb3dd78d611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc811ab4e0404873bc20bbb3dd78d611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc811ab4e0404873bc20bbb3dd78d611.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IbPCCIamYXmbBF34YCp_S59j1Zg=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.114026+00 2025-12-09 10:15:00.114031+00 8672 FHXGPK-098-1 SPMX-20240815303840 \N \N \N 1 \N [{"file_id": "73f3dc5b-e065-4f66-ab56-79d37f19f182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c9894ed19a8468289673ea9e0e65e10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c9894ed19a8468289673ea9e0e65e10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c9894ed19a8468289673ea9e0e65e10.jpg", "file_size": 25386, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-098-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894ed19a8468289673ea9e0e65e10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894ed19a8468289673ea9e0e65e10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894ed19a8468289673ea9e0e65e10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c9894ed19a8468289673ea9e0e65e10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c9894ed19a8468289673ea9e0e65e10.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mPikpiaZqOWwBuZnDCxwjcTPaWU=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.115562+00 2025-12-09 10:15:00.115566+00 8673 JTSS059#粉VS-D3 SPMX-20240815303831 \N \N \N 1 \N [{"file_id": "2a4bc4b5-3fcc-4aee-bb70-19dbc16af5dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "781a7451bc5f4a90bcc5ab13e05ba958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "781a7451bc5f4a90bcc5ab13e05ba958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "781a7451bc5f4a90bcc5ab13e05ba958.jpg", "file_size": 7749, "is_delete": false, "file_type": 1, "original_file_name": "JTSS059#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781a7451bc5f4a90bcc5ab13e05ba958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781a7451bc5f4a90bcc5ab13e05ba958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781a7451bc5f4a90bcc5ab13e05ba958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/781a7451bc5f4a90bcc5ab13e05ba958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/781a7451bc5f4a90bcc5ab13e05ba958.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3zCRluLbCqNPqAjx9Pwx56uQOY=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.11722+00 2025-12-09 10:15:00.117225+00 8674 C338-1#蓝色S码 SPMX-20240815303826 \N \N \N 1 \N [{"file_id": "1fe4c8a8-0c82-4370-b867-bfd9440f054b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg", "file_size": 19630, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#蓝色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dc6b09f4ed84e5cacb0e7cd5d16af71.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0PZuCFuWqxtWCt0djRj67keEN8=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.119031+00 2025-12-09 10:15:00.119037+00 8675 LJ20112440601#就是 SPMX-20240815303824 \N \N \N 1 \N [{"file_id": "f7ac825f-cd9e-401c-8829-3e7ef5d4a7b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "859afd4aea684beca6eca43b0fe639a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "859afd4aea684beca6eca43b0fe639a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "859afd4aea684beca6eca43b0fe639a4.jpg", "file_size": 6482, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440601#就是.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859afd4aea684beca6eca43b0fe639a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859afd4aea684beca6eca43b0fe639a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859afd4aea684beca6eca43b0fe639a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/859afd4aea684beca6eca43b0fe639a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/859afd4aea684beca6eca43b0fe639a4.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEWERBur1Mhxy2BMAg2ZAcEz8dI=", "createTime": "2024-08-15 14:47:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.120599+00 2025-12-09 10:15:00.120603+00 8676 1071915#婴3XL SPMX-20240815303835 \N \N \N 1 \N [{"file_id": "50569c16-fd19-4c97-b2ce-f052b1dc93aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f90c6815db624562b0e481f36a1213d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f90c6815db624562b0e481f36a1213d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f90c6815db624562b0e481f36a1213d1.jpg", "file_size": 10005, "is_delete": false, "file_type": 1, "original_file_name": "1071915#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90c6815db624562b0e481f36a1213d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90c6815db624562b0e481f36a1213d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90c6815db624562b0e481f36a1213d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f90c6815db624562b0e481f36a1213d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f90c6815db624562b0e481f36a1213d1.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XeSuk8cffhOMM0JIfAPaf0VwtKQ=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.122117+00 2025-12-09 10:15:00.122121+00 8677 0003-374#WJC22 SPMX-20240815303828 \N \N \N 1 \N [{"file_id": "1d31f03e-1a1f-459f-a36b-0618535b890f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b7da955088b4835b526d83e0136138a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b7da955088b4835b526d83e0136138a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b7da955088b4835b526d83e0136138a.jpg", "file_size": 25947, "is_delete": false, "file_type": 1, "original_file_name": "0003-374#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b7da955088b4835b526d83e0136138a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b7da955088b4835b526d83e0136138a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b7da955088b4835b526d83e0136138a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b7da955088b4835b526d83e0136138a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b7da955088b4835b526d83e0136138a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlXqSX5C1n5Hipv82hJFSpRnvTE=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.123636+00 2025-12-09 10:15:00.123641+00 8678 DL30422#批布浅粉 SPMX-20240815303834 \N \N \N 1 \N [{"file_id": "5f7e545d-1044-430b-b423-67a1fa0e55ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4829ccc9abad4b78918fab7652cd9d70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4829ccc9abad4b78918fab7652cd9d70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4829ccc9abad4b78918fab7652cd9d70.jpg", "file_size": 22261, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4829ccc9abad4b78918fab7652cd9d70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4829ccc9abad4b78918fab7652cd9d70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4829ccc9abad4b78918fab7652cd9d70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4829ccc9abad4b78918fab7652cd9d70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4829ccc9abad4b78918fab7652cd9d70.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4pe1wceeV-zIhGWp_8F5pQs8_c=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.12515+00 2025-12-09 10:15:00.125155+00 8679 DL30422#批布白色 SPMX-20240815303845 \N \N \N 1 \N [{"file_id": "0d897591-3141-4c6a-bd75-58f0dede37ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35c1ce86c50b438aa3916c6bf9cd63b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35c1ce86c50b438aa3916c6bf9cd63b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35c1ce86c50b438aa3916c6bf9cd63b0.jpg", "file_size": 10466, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c1ce86c50b438aa3916c6bf9cd63b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c1ce86c50b438aa3916c6bf9cd63b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c1ce86c50b438aa3916c6bf9cd63b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35c1ce86c50b438aa3916c6bf9cd63b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35c1ce86c50b438aa3916c6bf9cd63b0.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZgXMjPDEo5_oAH8NotUErvzHs8=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.126687+00 2025-12-09 10:15:00.126691+00 8680 LZ1240#上身4号色 SPMX-20240815303848 \N \N \N 1 \N [{"file_id": "e22e6c84-eab1-4629-b935-a3aa8eaa2dc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a98f930481564bbf8fb5bc6eeedaf92a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a98f930481564bbf8fb5bc6eeedaf92a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a98f930481564bbf8fb5bc6eeedaf92a.jpg", "file_size": 18243, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98f930481564bbf8fb5bc6eeedaf92a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98f930481564bbf8fb5bc6eeedaf92a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98f930481564bbf8fb5bc6eeedaf92a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a98f930481564bbf8fb5bc6eeedaf92a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a98f930481564bbf8fb5bc6eeedaf92a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1uDYlJEmDg7CyWsBb-h634DYZY=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.1282+00 2025-12-09 10:15:00.128205+00 8681 80318#裤子 SPMX-20240815303854 \N \N \N 1 \N [{"file_id": "c803f45d-d16b-4cbf-9398-6667cb20f174", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c4f34a5a68d42659f21e7498399e220.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c4f34a5a68d42659f21e7498399e220.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c4f34a5a68d42659f21e7498399e220.jpg", "file_size": 22305, "is_delete": false, "file_type": 1, "original_file_name": "80318#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f34a5a68d42659f21e7498399e220.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f34a5a68d42659f21e7498399e220.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f34a5a68d42659f21e7498399e220.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c4f34a5a68d42659f21e7498399e220.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c4f34a5a68d42659f21e7498399e220.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Li0P5bjCM8jruVScA0l3PKZbLQ=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.129711+00 2025-12-09 10:15:00.129715+00 8682 LJ20112440604#XL SPMX-20240815303849 \N \N \N 1 \N [{"file_id": "41d338ac-4268-4afa-b7d5-631644a2a840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0656203a71164132a433c88eb05e4a0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0656203a71164132a433c88eb05e4a0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0656203a71164132a433c88eb05e4a0f.jpg", "file_size": 7552, "is_delete": false, "file_type": 1, "original_file_name": "LJ20112440604#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0656203a71164132a433c88eb05e4a0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0656203a71164132a433c88eb05e4a0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0656203a71164132a433c88eb05e4a0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0656203a71164132a433c88eb05e4a0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0656203a71164132a433c88eb05e4a0f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pwXaNxdJ7G5IgxY86T9lEtwLRv4=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.131238+00 2025-12-09 10:15:00.131243+00 8683 23-2113#A4前后片3XL SPMX-20240815303852 \N \N \N 1 \N [{"file_id": "0dc3d5e9-5105-4258-9d84-ffe9b092a768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2111409a20264539b3160a0202486da4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2111409a20264539b3160a0202486da4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2111409a20264539b3160a0202486da4.jpg", "file_size": 10387, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2111409a20264539b3160a0202486da4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2111409a20264539b3160a0202486da4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2111409a20264539b3160a0202486da4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2111409a20264539b3160a0202486da4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2111409a20264539b3160a0202486da4.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UKt-iWeOyfuZxYhKeP5zGbM1aLg=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.132761+00 2025-12-09 10:15:00.132765+00 8684 80318#小童 SPMX-20240815303844 \N \N \N 1 \N [{"file_id": "e8e070a3-1e96-462c-bc41-509b290fc460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "451e6f5d59ce46f78e389a0363e307a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "451e6f5d59ce46f78e389a0363e307a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "451e6f5d59ce46f78e389a0363e307a5.jpg", "file_size": 30304, "is_delete": false, "file_type": 1, "original_file_name": "80318#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451e6f5d59ce46f78e389a0363e307a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451e6f5d59ce46f78e389a0363e307a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451e6f5d59ce46f78e389a0363e307a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/451e6f5d59ce46f78e389a0363e307a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/451e6f5d59ce46f78e389a0363e307a5.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ht-FcaYHRpAEpI1PYmKfryevKZQ=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.134273+00 2025-12-09 10:15:00.134278+00 8685 HT0101-58#WJC22 SPMX-20240815303843 \N \N \N 1 \N [{"file_id": "74f3013e-2c9a-4645-b59c-8c9db6332a94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fcdad12bbbc4712ba31fd20915b4df9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fcdad12bbbc4712ba31fd20915b4df9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fcdad12bbbc4712ba31fd20915b4df9.jpg", "file_size": 10957, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-58#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcdad12bbbc4712ba31fd20915b4df9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcdad12bbbc4712ba31fd20915b4df9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcdad12bbbc4712ba31fd20915b4df9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fcdad12bbbc4712ba31fd20915b4df9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fcdad12bbbc4712ba31fd20915b4df9.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GTLUVGpXSsEzjtnNSV4zejS2YXI=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.135792+00 2025-12-09 10:15:00.135796+00 8686 1071915#婴S+M+L+XL+2XL SPMX-20240815303846 \N \N \N 1 \N [{"file_id": "b88fa295-2952-43be-aca2-4e9bdc2f616e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "669949aeeaa24490a083c8dd47dbc862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "669949aeeaa24490a083c8dd47dbc862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "669949aeeaa24490a083c8dd47dbc862.jpg", "file_size": 13482, "is_delete": false, "file_type": 1, "original_file_name": "1071915#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669949aeeaa24490a083c8dd47dbc862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669949aeeaa24490a083c8dd47dbc862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669949aeeaa24490a083c8dd47dbc862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/669949aeeaa24490a083c8dd47dbc862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/669949aeeaa24490a083c8dd47dbc862.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gB5fxhUNhR7Ag0pYo423A5oGYQU=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.13732+00 2025-12-09 10:15:00.137325+00 8687 HT0101-59#WJC22 SPMX-20240815303853 \N \N \N 1 \N [{"file_id": "3641bf59-6066-4a46-b8a3-211f8c0d18e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "167e38d4cbff44478337d059d0c387ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "167e38d4cbff44478337d059d0c387ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "167e38d4cbff44478337d059d0c387ab.jpg", "file_size": 20235, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-59#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e38d4cbff44478337d059d0c387ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e38d4cbff44478337d059d0c387ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e38d4cbff44478337d059d0c387ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/167e38d4cbff44478337d059d0c387ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/167e38d4cbff44478337d059d0c387ab.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MVqtqoTtVAF1HLq-VSi9S1Kl9a0=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.13883+00 2025-12-09 10:15:00.138834+00 8688 23-2113#A3领子通用 SPMX-20240815303842 \N \N \N 1 \N [{"file_id": "d1905e2a-901c-4b40-a8c1-9e8809ca7899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8bef6e42e5f4b81bd728472e7fb220f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8bef6e42e5f4b81bd728472e7fb220f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8bef6e42e5f4b81bd728472e7fb220f.jpg", "file_size": 9104, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8bef6e42e5f4b81bd728472e7fb220f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8bef6e42e5f4b81bd728472e7fb220f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8bef6e42e5f4b81bd728472e7fb220f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8bef6e42e5f4b81bd728472e7fb220f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8bef6e42e5f4b81bd728472e7fb220f.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K8_BZ1xWzkgGVQ7x_oEkeMG1Lgg=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.140352+00 2025-12-09 10:15:00.140356+00 8689 0003-375#-2 SPMX-20240815303850 \N \N \N 1 \N [{"file_id": "ef79ca67-b487-4177-a6d7-874d9b4d541d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f45075e59804a7098851cf283050eeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f45075e59804a7098851cf283050eeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f45075e59804a7098851cf283050eeb.jpg", "file_size": 20422, "is_delete": false, "file_type": 1, "original_file_name": "0003-375#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f45075e59804a7098851cf283050eeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f45075e59804a7098851cf283050eeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f45075e59804a7098851cf283050eeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f45075e59804a7098851cf283050eeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f45075e59804a7098851cf283050eeb.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QmYD_gPZJSe1zOpTD0HJkeIpyXU=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.141849+00 2025-12-09 10:15:00.141853+00 8690 FHXGPK-099-1 SPMX-20240815303851 \N \N \N 1 \N [{"file_id": "d2770908-17a3-4a3c-be6e-cfba81f460af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff695daf2499403eb80b834b031d0dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff695daf2499403eb80b834b031d0dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff695daf2499403eb80b834b031d0dfb.jpg", "file_size": 39906, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-099-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff695daf2499403eb80b834b031d0dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff695daf2499403eb80b834b031d0dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff695daf2499403eb80b834b031d0dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff695daf2499403eb80b834b031d0dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff695daf2499403eb80b834b031d0dfb.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3QKJ8uSmNGwF4jSqrTfcBtNVgE=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.143364+00 2025-12-09 10:15:00.143369+00 8691 C338-1#蓝色匹印 SPMX-20240815303847 \N \N \N 1 \N [{"file_id": "97d64af9-d54c-4534-b1ee-8df99e74c291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c2497388b6046c08e2b3efa1077aa47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c2497388b6046c08e2b3efa1077aa47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c2497388b6046c08e2b3efa1077aa47.jpg", "file_size": 34403, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#蓝色匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2497388b6046c08e2b3efa1077aa47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2497388b6046c08e2b3efa1077aa47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2497388b6046c08e2b3efa1077aa47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c2497388b6046c08e2b3efa1077aa47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c2497388b6046c08e2b3efa1077aa47.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbmYIkRuJ6FrFImAuH3_OVS_qvI=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.144895+00 2025-12-09 10:15:00.1449+00 8692 JTSS059FW#VS-D3 SPMX-20240815303841 \N \N \N 1 \N [{"file_id": "1ec088ac-351f-4da1-b6c9-4e53a27cfebf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c768111db07646f1b0daea35a0b7f3a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c768111db07646f1b0daea35a0b7f3a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c768111db07646f1b0daea35a0b7f3a8.jpg", "file_size": 18686, "is_delete": false, "file_type": 1, "original_file_name": "JTSS059FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c768111db07646f1b0daea35a0b7f3a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c768111db07646f1b0daea35a0b7f3a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c768111db07646f1b0daea35a0b7f3a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c768111db07646f1b0daea35a0b7f3a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c768111db07646f1b0daea35a0b7f3a8.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhDJ0Tw8s7S3TvbO3DT8EEM9fM8=", "createTime": "2024-08-15 14:47:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.146697+00 2025-12-09 10:15:00.146701+00 8693 C338-1#黑色M码 SPMX-20240815303871 \N \N \N 1 \N [{"file_id": "deef5e0a-d867-4e19-86f9-3e240515d13f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a66e1c32b2574c9ea4fb76978a054c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a66e1c32b2574c9ea4fb76978a054c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a66e1c32b2574c9ea4fb76978a054c2a.jpg", "file_size": 18552, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#黑色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66e1c32b2574c9ea4fb76978a054c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66e1c32b2574c9ea4fb76978a054c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66e1c32b2574c9ea4fb76978a054c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a66e1c32b2574c9ea4fb76978a054c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a66e1c32b2574c9ea4fb76978a054c2a.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSzfXyrCNrAPC8FlEWDbP-NoSmQ=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.148486+00 2025-12-09 10:15:00.148491+00 8694 LJ20120340603FW#L VS-D3 SPMX-20240815303860 \N \N \N 1 \N [{"file_id": "0f47b983-d378-472d-ba75-f64034aada08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cc11055c0c34394b54dc139731ed43e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cc11055c0c34394b54dc139731ed43e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cc11055c0c34394b54dc139731ed43e.jpg", "file_size": 20807, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340603FW#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc11055c0c34394b54dc139731ed43e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc11055c0c34394b54dc139731ed43e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc11055c0c34394b54dc139731ed43e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cc11055c0c34394b54dc139731ed43e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cc11055c0c34394b54dc139731ed43e.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fR_6bitlotznQADualzg_rGNUWo=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.150552+00 2025-12-09 10:15:00.150556+00 8695 80319#上衣 SPMX-20240815303866 \N \N \N 1 \N [{"file_id": "e5921f79-65d5-471a-bc97-aa8de78442e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37d42d0d0fa54aa2af193406aed9af01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37d42d0d0fa54aa2af193406aed9af01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37d42d0d0fa54aa2af193406aed9af01.jpg", "file_size": 21319, "is_delete": false, "file_type": 1, "original_file_name": "80319#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d42d0d0fa54aa2af193406aed9af01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d42d0d0fa54aa2af193406aed9af01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d42d0d0fa54aa2af193406aed9af01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37d42d0d0fa54aa2af193406aed9af01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37d42d0d0fa54aa2af193406aed9af01.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:boQW1cL0DRroaEgkFb6NXdaQyP8=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.152579+00 2025-12-09 10:15:00.152584+00 8696 JTSS060#VS-D3 SPMX-20240815303855 \N \N \N 1 \N [{"file_id": "f3a3ff4d-1f8a-455a-864c-340a9ceb497e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43f4867d2b2e44c181d28092f77fc002.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43f4867d2b2e44c181d28092f77fc002.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43f4867d2b2e44c181d28092f77fc002.jpg", "file_size": 12130, "is_delete": false, "file_type": 1, "original_file_name": "JTSS060#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f4867d2b2e44c181d28092f77fc002.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f4867d2b2e44c181d28092f77fc002.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f4867d2b2e44c181d28092f77fc002.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43f4867d2b2e44c181d28092f77fc002.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43f4867d2b2e44c181d28092f77fc002.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HcNE3QPQw3oIshC-g3qQZD9Tmck=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.154472+00 2025-12-09 10:15:00.154476+00 8697 LJ20120340603FW#M VS-D3 SPMX-20240815303868 \N \N \N 1 \N [{"file_id": "1db5d174-4753-4dbc-814a-f5dad5abdbca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3a124cbe2bf4a319d0f48855b49b555.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3a124cbe2bf4a319d0f48855b49b555.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3a124cbe2bf4a319d0f48855b49b555.jpg", "file_size": 20953, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340603FW#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a124cbe2bf4a319d0f48855b49b555.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a124cbe2bf4a319d0f48855b49b555.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a124cbe2bf4a319d0f48855b49b555.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3a124cbe2bf4a319d0f48855b49b555.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3a124cbe2bf4a319d0f48855b49b555.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XT6JqguZzsr6Sy2LD7Txxv-pl2U=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.156263+00 2025-12-09 10:15:00.156267+00 8698 JTSS060FW#VS-D3 SPMX-20240815303869 \N \N \N 1 \N [{"file_id": "492c4fd0-40ad-4800-acb6-f497d824cc09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28c7a770679b4c0499860b985952be78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28c7a770679b4c0499860b985952be78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28c7a770679b4c0499860b985952be78.jpg", "file_size": 11175, "is_delete": false, "file_type": 1, "original_file_name": "JTSS060FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c7a770679b4c0499860b985952be78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c7a770679b4c0499860b985952be78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c7a770679b4c0499860b985952be78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28c7a770679b4c0499860b985952be78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28c7a770679b4c0499860b985952be78.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7E95xvmIjl7Iz1igca4MqH96yo=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.158064+00 2025-12-09 10:15:00.158068+00 8699 DL30422#批布黑色 SPMX-20240815303857 \N \N \N 1 \N [{"file_id": "6e853b81-0dff-42c5-aba4-3d463434c87f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ef6d72d15f463daafd70bec788a5c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ef6d72d15f463daafd70bec788a5c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ef6d72d15f463daafd70bec788a5c7.jpg", "file_size": 11450, "is_delete": false, "file_type": 1, "original_file_name": "DL30422#批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ef6d72d15f463daafd70bec788a5c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ef6d72d15f463daafd70bec788a5c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ef6d72d15f463daafd70bec788a5c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ef6d72d15f463daafd70bec788a5c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ef6d72d15f463daafd70bec788a5c7.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4cSOQQ0ZpfdgQBHZ2M_nj22lNw=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.159865+00 2025-12-09 10:15:00.15987+00 8700 0003-375#-3 SPMX-20240815303861 \N \N \N 1 \N [{"file_id": "de9dfa14-6ffb-4a9c-a949-5c0e24f3aff0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f92c8d89bf44aa0abf6b113ddf60da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f92c8d89bf44aa0abf6b113ddf60da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f92c8d89bf44aa0abf6b113ddf60da1.jpg", "file_size": 19693, "is_delete": false, "file_type": 1, "original_file_name": "0003-375#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92c8d89bf44aa0abf6b113ddf60da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92c8d89bf44aa0abf6b113ddf60da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92c8d89bf44aa0abf6b113ddf60da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f92c8d89bf44aa0abf6b113ddf60da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f92c8d89bf44aa0abf6b113ddf60da1.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_4hIgkScg89V1yD9_UVOr3kuzE=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.161374+00 2025-12-09 10:15:00.161378+00 8701 DL30435#前幅亮黄 SPMX-20240815303867 \N \N \N 1 \N [{"file_id": "b5dc75ab-4c43-4fd1-8440-a9899620938d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b060b5e0fb4247248e460c0de14c5c1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b060b5e0fb4247248e460c0de14c5c1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b060b5e0fb4247248e460c0de14c5c1b.jpg", "file_size": 15685, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b060b5e0fb4247248e460c0de14c5c1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b060b5e0fb4247248e460c0de14c5c1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b060b5e0fb4247248e460c0de14c5c1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b060b5e0fb4247248e460c0de14c5c1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b060b5e0fb4247248e460c0de14c5c1b.jpg?e=1765361699&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkLZ1xttNskPsuoLAV8KgWz7-uE=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.833278+00 2025-12-09 10:15:00.833289+00 8702 LZ1240#下身2号色 SPMX-20240815303870 \N \N \N 1 \N [{"file_id": "8f70eee1-bd70-4ed0-9c66-121099f38df0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dc3f178bb2140288ebd03d1e19064cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dc3f178bb2140288ebd03d1e19064cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dc3f178bb2140288ebd03d1e19064cd.jpg", "file_size": 18716, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc3f178bb2140288ebd03d1e19064cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc3f178bb2140288ebd03d1e19064cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc3f178bb2140288ebd03d1e19064cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dc3f178bb2140288ebd03d1e19064cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dc3f178bb2140288ebd03d1e19064cd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9dvOMc3h2QcfN8Udq0axizfOfI=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.835788+00 2025-12-09 10:15:00.835794+00 8703 FHXGPK-100-1 SPMX-20240815303862 \N \N \N 1 \N [{"file_id": "5acfc198-e9cf-45fe-8f34-4494c4bbd457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bed523cdef347a28066408c3512974c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bed523cdef347a28066408c3512974c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bed523cdef347a28066408c3512974c.jpg", "file_size": 34861, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-100-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bed523cdef347a28066408c3512974c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bed523cdef347a28066408c3512974c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bed523cdef347a28066408c3512974c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bed523cdef347a28066408c3512974c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bed523cdef347a28066408c3512974c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSLQvX7gdAz_6JGCANdr7Rxcosk=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.838049+00 2025-12-09 10:15:00.838055+00 8704 HT0101-6#WJC22 SPMX-20240815303865 \N \N \N 1 \N [{"file_id": "e364c874-c78e-4b87-a82c-8f56a268d78b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f49f4e99055c4344b419f0799267ce18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f49f4e99055c4344b419f0799267ce18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f49f4e99055c4344b419f0799267ce18.jpg", "file_size": 15381, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f4e99055c4344b419f0799267ce18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f4e99055c4344b419f0799267ce18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f4e99055c4344b419f0799267ce18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f49f4e99055c4344b419f0799267ce18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f49f4e99055c4344b419f0799267ce18.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwmqCl9gEpVSL1vHXtWKb0EdiWo=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.840097+00 2025-12-09 10:15:00.840102+00 8705 23-2113#A4前后片4XL SPMX-20240815303863 \N \N \N 1 \N [{"file_id": "2a7ff4d1-114b-4ada-819d-f0682b0c1dfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb68e5da5bc5459bade013831b0caf11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb68e5da5bc5459bade013831b0caf11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb68e5da5bc5459bade013831b0caf11.jpg", "file_size": 10166, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb68e5da5bc5459bade013831b0caf11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb68e5da5bc5459bade013831b0caf11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb68e5da5bc5459bade013831b0caf11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb68e5da5bc5459bade013831b0caf11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb68e5da5bc5459bade013831b0caf11.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3b8_IXZGCPul24_ZH-qWAVynrMc=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.842076+00 2025-12-09 10:15:00.842081+00 8706 1071915#男3XL+女3XL+男L+女L+童4+童6+童8 SPMX-20240815303864 \N \N \N 1 \N [{"file_id": "c52b421b-1b38-4c36-a660-47c39c4c6cd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a55f986413431d815baefa642946a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a55f986413431d815baefa642946a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a55f986413431d815baefa642946a1.jpg", "file_size": 16366, "is_delete": false, "file_type": 1, "original_file_name": "1071915#男3XL+女3XL+男L+女L+童4+童6+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a55f986413431d815baefa642946a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a55f986413431d815baefa642946a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a55f986413431d815baefa642946a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a55f986413431d815baefa642946a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a55f986413431d815baefa642946a1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kmUpXVWt8bkI6Eppu_o2J8GwFw=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.844037+00 2025-12-09 10:15:00.844042+00 8707 C338-1#黑色L码 SPMX-20240815303858 \N \N \N 1 \N [{"file_id": "d399951a-8055-43aa-af62-ce6cac4596b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae3190e3a4f4e7489e05ccccf934644.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae3190e3a4f4e7489e05ccccf934644.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae3190e3a4f4e7489e05ccccf934644.jpg", "file_size": 12808, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#黑色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae3190e3a4f4e7489e05ccccf934644.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae3190e3a4f4e7489e05ccccf934644.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae3190e3a4f4e7489e05ccccf934644.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae3190e3a4f4e7489e05ccccf934644.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae3190e3a4f4e7489e05ccccf934644.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vlpvmcLfPU3damg8-1dqhk49Dc=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.846004+00 2025-12-09 10:15:00.846009+00 8708 LZ1240#下身1号色 SPMX-20240815303859 \N \N \N 1 \N [{"file_id": "e394b747-d778-4c0e-bf18-9511d4829243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47fd1ce7cbcf42bda7a4cc0438e4110e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47fd1ce7cbcf42bda7a4cc0438e4110e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47fd1ce7cbcf42bda7a4cc0438e4110e.jpg", "file_size": 15397, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fd1ce7cbcf42bda7a4cc0438e4110e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fd1ce7cbcf42bda7a4cc0438e4110e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fd1ce7cbcf42bda7a4cc0438e4110e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47fd1ce7cbcf42bda7a4cc0438e4110e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47fd1ce7cbcf42bda7a4cc0438e4110e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxyUdugKtnpl2h2HchttQAEpjuo=", "createTime": "2024-08-15 14:47:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.84794+00 2025-12-09 10:15:00.847945+00 8709 1071915#男2XL+女2XL+女S+男S++童2+童6+童10 SPMX-20240815303856 \N \N \N 1 \N [{"file_id": "4d1fa6e2-0818-4dd1-a2bb-1b27afb67a0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3f0c5d284ac40f3863d044db121063e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3f0c5d284ac40f3863d044db121063e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3f0c5d284ac40f3863d044db121063e.jpg", "file_size": 16518, "is_delete": false, "file_type": 1, "original_file_name": "1071915#男2XL+女2XL+女S+男S++童2+童6+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f0c5d284ac40f3863d044db121063e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f0c5d284ac40f3863d044db121063e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f0c5d284ac40f3863d044db121063e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3f0c5d284ac40f3863d044db121063e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3f0c5d284ac40f3863d044db121063e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nInTSjaITuHCMZ2jevPGpfg8XkY=", "createTime": "2024-08-15 14:47:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.849894+00 2025-12-09 10:15:00.849898+00 8710 23-2113#A4袖子3XL SPMX-20240815303872 \N \N \N 1 \N [{"file_id": "c7dd3e4b-d0f2-4895-854c-802781ca298d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60c818977fce491284e3a91558d976d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60c818977fce491284e3a91558d976d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60c818977fce491284e3a91558d976d8.jpg", "file_size": 7984, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c818977fce491284e3a91558d976d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c818977fce491284e3a91558d976d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c818977fce491284e3a91558d976d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60c818977fce491284e3a91558d976d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60c818977fce491284e3a91558d976d8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tEIDO3GUehvtWAivHKXb_hjZA4=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.851863+00 2025-12-09 10:15:00.851868+00 8711 0003-376#WJC22 SPMX-20240815303873 \N \N \N 1 \N [{"file_id": "5e0bbc91-c99a-4515-97dd-165b83168025", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f24fc01eb407491a8e0f21995845b886.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f24fc01eb407491a8e0f21995845b886.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f24fc01eb407491a8e0f21995845b886.jpg", "file_size": 16314, "is_delete": false, "file_type": 1, "original_file_name": "0003-376#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24fc01eb407491a8e0f21995845b886.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24fc01eb407491a8e0f21995845b886.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24fc01eb407491a8e0f21995845b886.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f24fc01eb407491a8e0f21995845b886.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f24fc01eb407491a8e0f21995845b886.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hMyeSbB60cMSyNlpew_1r6hUgWg=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.853589+00 2025-12-09 10:15:00.853594+00 8712 FHXGPK-101-1 SPMX-20240815303874 \N \N \N 1 \N [{"file_id": "2c74216a-9d5e-481d-9e78-6052fc36bebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0d5eeacb48241b38dc75e3930d37066.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0d5eeacb48241b38dc75e3930d37066.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0d5eeacb48241b38dc75e3930d37066.jpg", "file_size": 27484, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-101-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d5eeacb48241b38dc75e3930d37066.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d5eeacb48241b38dc75e3930d37066.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d5eeacb48241b38dc75e3930d37066.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0d5eeacb48241b38dc75e3930d37066.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0d5eeacb48241b38dc75e3930d37066.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0pAsGOTAOd5V6omESJ1be2oeCLc=", "createTime": "2024-08-15 14:47:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.855309+00 2025-12-09 10:15:00.855314+00 8713 23-2113#A4袖子4XL SPMX-20240815303877 \N \N \N 1 \N [{"file_id": "8ed69319-ff7e-49fe-9c9d-03e42da1c324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a21e998cd7845d785e5b60a4c881c79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a21e998cd7845d785e5b60a4c881c79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a21e998cd7845d785e5b60a4c881c79.jpg", "file_size": 7853, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a21e998cd7845d785e5b60a4c881c79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a21e998cd7845d785e5b60a4c881c79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a21e998cd7845d785e5b60a4c881c79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a21e998cd7845d785e5b60a4c881c79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a21e998cd7845d785e5b60a4c881c79.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xP4dt5knitjePWeEWITm_hNojFQ=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.857024+00 2025-12-09 10:15:00.857029+00 8714 HT0101-60#WJC22 SPMX-20240815303878 \N \N \N 1 \N [{"file_id": "e2ffcd16-6529-4698-8931-d23dcca3b55d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57a9b63dc25a49a4bb2e7a98a5d2db80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57a9b63dc25a49a4bb2e7a98a5d2db80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57a9b63dc25a49a4bb2e7a98a5d2db80.jpg", "file_size": 9987, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-60#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9b63dc25a49a4bb2e7a98a5d2db80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9b63dc25a49a4bb2e7a98a5d2db80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a9b63dc25a49a4bb2e7a98a5d2db80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57a9b63dc25a49a4bb2e7a98a5d2db80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57a9b63dc25a49a4bb2e7a98a5d2db80.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DntRmCL35Cz6UdIuzvn0jhpbshk=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.858895+00 2025-12-09 10:15:00.8589+00 8715 DL30435#前幅彩兰 SPMX-20240815303879 \N \N \N 1 \N [{"file_id": "5f115543-fcc3-4932-b906-cbb4b4e51e10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16ed87c5c1fb486f915f02a1ba9f00ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16ed87c5c1fb486f915f02a1ba9f00ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16ed87c5c1fb486f915f02a1ba9f00ff.jpg", "file_size": 16931, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ed87c5c1fb486f915f02a1ba9f00ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ed87c5c1fb486f915f02a1ba9f00ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ed87c5c1fb486f915f02a1ba9f00ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16ed87c5c1fb486f915f02a1ba9f00ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16ed87c5c1fb486f915f02a1ba9f00ff.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7eHzDsreOkYD9s0LDbKjBm0wpE=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.860617+00 2025-12-09 10:15:00.860622+00 8716 FHXGPK-102-1 SPMX-20240815303875 \N \N \N 1 \N [{"file_id": "11ad8d59-bd34-4496-a119-a0b74bd33f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53e88077b84f4294bdba7258a593ea92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53e88077b84f4294bdba7258a593ea92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53e88077b84f4294bdba7258a593ea92.jpg", "file_size": 22282, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-102-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e88077b84f4294bdba7258a593ea92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e88077b84f4294bdba7258a593ea92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e88077b84f4294bdba7258a593ea92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53e88077b84f4294bdba7258a593ea92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53e88077b84f4294bdba7258a593ea92.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAa_YsdUz5COQTvw1q8gBldLBSA=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.86231+00 2025-12-09 10:15:00.862315+00 8717 0003-377#WJC22 SPMX-20240815303876 \N \N \N 1 \N [{"file_id": "2f808d62-7144-4a51-ab95-eb64a6b724c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20258a548b784c6f99d7a99346ec6707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20258a548b784c6f99d7a99346ec6707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20258a548b784c6f99d7a99346ec6707.jpg", "file_size": 24577, "is_delete": false, "file_type": 1, "original_file_name": "0003-377#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20258a548b784c6f99d7a99346ec6707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20258a548b784c6f99d7a99346ec6707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20258a548b784c6f99d7a99346ec6707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20258a548b784c6f99d7a99346ec6707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20258a548b784c6f99d7a99346ec6707.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuI2e_GsNM19LCjnq0wMa1Mjfxo=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.864015+00 2025-12-09 10:15:00.86402+00 8718 LZ1240#下身3号色 SPMX-20240815303880 \N \N \N 1 \N [{"file_id": "371cc25c-0c06-42b5-a37b-769aec74b2fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg", "file_size": 18434, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1567ae2abc8f46b1897fbbd9c4d2ffe2.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCAf1tspr9gyF8sXmmOwq3KTELc=", "createTime": "2024-08-15 14:47:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.865973+00 2025-12-09 10:15:00.865978+00 8719 80319#中童 SPMX-20240815303882 \N \N \N 1 \N [{"file_id": "0ce5a535-f00f-4740-899a-254c3b9b2681", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77f2b746fdee4377818dfccf4dc25f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77f2b746fdee4377818dfccf4dc25f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77f2b746fdee4377818dfccf4dc25f37.jpg", "file_size": 23093, "is_delete": false, "file_type": 1, "original_file_name": "80319#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f2b746fdee4377818dfccf4dc25f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f2b746fdee4377818dfccf4dc25f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f2b746fdee4377818dfccf4dc25f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77f2b746fdee4377818dfccf4dc25f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77f2b746fdee4377818dfccf4dc25f37.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFw5EpBl4O1TKuPniTKwwi_c_Vs=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.867689+00 2025-12-09 10:15:00.867693+00 8720 1071915#男XL+女XL+男M+女M+童12+童14 SPMX-20240815303883 \N \N \N 1 \N [{"file_id": "23786d2f-f63f-41ce-83bd-a80ce63ce9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c641a3ed1854c1fa4da18bbfb645f04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c641a3ed1854c1fa4da18bbfb645f04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c641a3ed1854c1fa4da18bbfb645f04.jpg", "file_size": 15885, "is_delete": false, "file_type": 1, "original_file_name": "1071915#男XL+女XL+男M+女M+童12+童14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c641a3ed1854c1fa4da18bbfb645f04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c641a3ed1854c1fa4da18bbfb645f04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c641a3ed1854c1fa4da18bbfb645f04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c641a3ed1854c1fa4da18bbfb645f04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c641a3ed1854c1fa4da18bbfb645f04.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WiR_lmduwrdxffhkG5ELQbF-Kvg=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.869383+00 2025-12-09 10:15:00.869387+00 8721 0003-378#WJC22 SPMX-20240815303886 \N \N \N 1 \N [{"file_id": "005c96be-26bf-475d-9c98-c68d95c24880", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e05c32476aa46a5927d64df7b87d5cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e05c32476aa46a5927d64df7b87d5cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e05c32476aa46a5927d64df7b87d5cd.jpg", "file_size": 19504, "is_delete": false, "file_type": 1, "original_file_name": "0003-378#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e05c32476aa46a5927d64df7b87d5cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e05c32476aa46a5927d64df7b87d5cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e05c32476aa46a5927d64df7b87d5cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e05c32476aa46a5927d64df7b87d5cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e05c32476aa46a5927d64df7b87d5cd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxCTDU4MUU5KFkwOAXkwBONYxW8=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.8711+00 2025-12-09 10:15:00.871106+00 8722 JTSS061#VS-D3 SPMX-20240815303884 \N \N \N 1 \N [{"file_id": "c4d3b5e9-781d-43e2-bd32-41973cc71029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e86cdb1dfd447379eb99a707f55b994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e86cdb1dfd447379eb99a707f55b994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e86cdb1dfd447379eb99a707f55b994.jpg", "file_size": 17696, "is_delete": false, "file_type": 1, "original_file_name": "JTSS061#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e86cdb1dfd447379eb99a707f55b994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e86cdb1dfd447379eb99a707f55b994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e86cdb1dfd447379eb99a707f55b994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e86cdb1dfd447379eb99a707f55b994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e86cdb1dfd447379eb99a707f55b994.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-xn0whMtJQuiScb0noLaq2-0fM=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.873042+00 2025-12-09 10:15:00.873048+00 8723 C338-1#黑色S码 SPMX-20240815303885 \N \N \N 1 \N [{"file_id": "4b647be1-f698-4365-888c-ab109c80201d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f8d3c6374e54e46a3ac5dd419c807ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f8d3c6374e54e46a3ac5dd419c807ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f8d3c6374e54e46a3ac5dd419c807ac.jpg", "file_size": 18530, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#黑色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8d3c6374e54e46a3ac5dd419c807ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8d3c6374e54e46a3ac5dd419c807ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8d3c6374e54e46a3ac5dd419c807ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f8d3c6374e54e46a3ac5dd419c807ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f8d3c6374e54e46a3ac5dd419c807ac.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xg41eOdftxYk9S9lkvBmXUNqHPo=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.874935+00 2025-12-09 10:15:00.87494+00 8724 LJ20120340603FW#S VS-D3 SPMX-20240815303881 \N \N \N 1 \N [{"file_id": "15a7df59-0773-4336-9a43-823d25b5a543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3315eebe1d7341d9984c35d007f7035b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3315eebe1d7341d9984c35d007f7035b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3315eebe1d7341d9984c35d007f7035b.jpg", "file_size": 21591, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340603FW#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3315eebe1d7341d9984c35d007f7035b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3315eebe1d7341d9984c35d007f7035b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3315eebe1d7341d9984c35d007f7035b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3315eebe1d7341d9984c35d007f7035b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3315eebe1d7341d9984c35d007f7035b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2iHvbBhAcyCPfIhSrNH86BdBqQk=", "createTime": "2024-08-15 14:47:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.876617+00 2025-12-09 10:15:00.876622+00 8725 HT0101-61#WJC22 SPMX-20240815303890 \N \N \N 1 \N [{"file_id": "23c863a3-2a3d-4e80-828b-eadefaf2fd28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee69d40a415f4a59b58350469e6fee7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee69d40a415f4a59b58350469e6fee7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee69d40a415f4a59b58350469e6fee7e.jpg", "file_size": 10594, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-61#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee69d40a415f4a59b58350469e6fee7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee69d40a415f4a59b58350469e6fee7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee69d40a415f4a59b58350469e6fee7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee69d40a415f4a59b58350469e6fee7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee69d40a415f4a59b58350469e6fee7e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RP1U_oxZJX0CyZG5rDODHMgrpyE=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.878312+00 2025-12-09 10:15:00.878317+00 8726 23-2113#A4领口通用 SPMX-20240815303887 \N \N \N 1 \N [{"file_id": "ccc81c0f-c98c-49ed-b44f-bed5ffcd6cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg", "file_size": 7755, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd2811e94a54bc6ad0b1a2b4757e9aa.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRXCZZ_5Qqd9tfYgJtPvXv4u77Y=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.880235+00 2025-12-09 10:15:00.880241+00 8727 FHXGPK-103-1 SPMX-20240815303889 \N \N \N 1 \N [{"file_id": "a643160f-fe45-4bcf-b3e5-eecb242e8296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b252a5d389164b15b6ab8fa7176ff25d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b252a5d389164b15b6ab8fa7176ff25d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b252a5d389164b15b6ab8fa7176ff25d.jpg", "file_size": 35008, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-103-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b252a5d389164b15b6ab8fa7176ff25d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b252a5d389164b15b6ab8fa7176ff25d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b252a5d389164b15b6ab8fa7176ff25d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b252a5d389164b15b6ab8fa7176ff25d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b252a5d389164b15b6ab8fa7176ff25d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:go67Pdr3XF2haMrKqQOa-o-Y-oQ=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.882193+00 2025-12-09 10:15:00.882198+00 8728 DL30435#前幅枣红 SPMX-20240815303888 \N \N \N 1 \N [{"file_id": "da41a085-5e81-43f1-954b-da7d9ce6cd57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e50ac251a7104a46b033d8bb20ffd84f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e50ac251a7104a46b033d8bb20ffd84f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e50ac251a7104a46b033d8bb20ffd84f.jpg", "file_size": 16462, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac251a7104a46b033d8bb20ffd84f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac251a7104a46b033d8bb20ffd84f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e50ac251a7104a46b033d8bb20ffd84f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e50ac251a7104a46b033d8bb20ffd84f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e50ac251a7104a46b033d8bb20ffd84f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLYIWdRBjln8SZyRB_TU2CyjwqU=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.884062+00 2025-12-09 10:15:00.884067+00 8729 JTSS061FW#VS-D3 SPMX-20240815303896 \N \N \N 1 \N [{"file_id": "b8c7fb49-e3b1-46eb-b3d2-448c09ab2c12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c3cef29399e4950a17bdc72536cfebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c3cef29399e4950a17bdc72536cfebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c3cef29399e4950a17bdc72536cfebc.jpg", "file_size": 13120, "is_delete": false, "file_type": 1, "original_file_name": "JTSS061FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3cef29399e4950a17bdc72536cfebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3cef29399e4950a17bdc72536cfebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3cef29399e4950a17bdc72536cfebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c3cef29399e4950a17bdc72536cfebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c3cef29399e4950a17bdc72536cfebc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f70cFi2Jk10RDvIL9JP5xXRsp_E=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.885758+00 2025-12-09 10:15:00.885763+00 8730 80319#乱花 SPMX-20240815303895 \N \N \N 1 \N [{"file_id": "cc9a05a3-cb6d-4ac4-9946-7dbc44e602c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b8de5986cf342d1b69a9f7a412b7956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b8de5986cf342d1b69a9f7a412b7956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b8de5986cf342d1b69a9f7a412b7956.jpg", "file_size": 16334, "is_delete": false, "file_type": 1, "original_file_name": "80319#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8de5986cf342d1b69a9f7a412b7956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8de5986cf342d1b69a9f7a412b7956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8de5986cf342d1b69a9f7a412b7956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b8de5986cf342d1b69a9f7a412b7956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b8de5986cf342d1b69a9f7a412b7956.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFFAn_x7QBGQu3DR4F0Bz-HdLbg=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.887452+00 2025-12-09 10:15:00.887458+00 8731 LJ20120340603FW#XL VS-D3 SPMX-20240815303892 \N \N \N 1 \N [{"file_id": "3536f82c-6546-472c-b688-d0c3f86e2401", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be75fa5a35d5434bae9b8371084a7fc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be75fa5a35d5434bae9b8371084a7fc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be75fa5a35d5434bae9b8371084a7fc5.jpg", "file_size": 18390, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340603FW#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be75fa5a35d5434bae9b8371084a7fc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be75fa5a35d5434bae9b8371084a7fc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be75fa5a35d5434bae9b8371084a7fc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be75fa5a35d5434bae9b8371084a7fc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be75fa5a35d5434bae9b8371084a7fc5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOeinpCt0m1k0Jro3ci7M_hnUKU=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.889395+00 2025-12-09 10:15:00.8894+00 8732 C338-1#黑色XL码 SPMX-20240815303894 \N \N \N 1 \N [{"file_id": "ae867027-ea69-4874-8edc-84518d4351ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca9bc101b8054c82bd4ac83326a1382d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca9bc101b8054c82bd4ac83326a1382d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca9bc101b8054c82bd4ac83326a1382d.jpg", "file_size": 17544, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#黑色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc101b8054c82bd4ac83326a1382d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc101b8054c82bd4ac83326a1382d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc101b8054c82bd4ac83326a1382d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc101b8054c82bd4ac83326a1382d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc101b8054c82bd4ac83326a1382d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4jeDIrxOk8ZJa05xbjFy6WK6spg=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.891335+00 2025-12-09 10:15:00.89134+00 8733 1071915#童4+童8 SPMX-20240815303891 \N \N \N 1 \N [{"file_id": "a0d5f40d-f75d-4ec1-8e27-a1cf544e2277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d1122b0ca83444cb3e85f7dcd4982c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d1122b0ca83444cb3e85f7dcd4982c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d1122b0ca83444cb3e85f7dcd4982c5.jpg", "file_size": 12345, "is_delete": false, "file_type": 1, "original_file_name": "1071915#童4+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1122b0ca83444cb3e85f7dcd4982c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1122b0ca83444cb3e85f7dcd4982c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1122b0ca83444cb3e85f7dcd4982c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d1122b0ca83444cb3e85f7dcd4982c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d1122b0ca83444cb3e85f7dcd4982c5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nHDZ-v6cUCwt1mkpUCo3pH8rS0=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.893253+00 2025-12-09 10:15:00.893258+00 8734 0003-379#WJC22 SPMX-20240815303893 \N \N \N 1 \N [{"file_id": "34d2c40d-cd3c-452c-8360-c52b2ac0a557", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bee89454427044dc969fe9e578b44ae9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bee89454427044dc969fe9e578b44ae9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bee89454427044dc969fe9e578b44ae9.jpg", "file_size": 12469, "is_delete": false, "file_type": 1, "original_file_name": "0003-379#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee89454427044dc969fe9e578b44ae9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee89454427044dc969fe9e578b44ae9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee89454427044dc969fe9e578b44ae9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bee89454427044dc969fe9e578b44ae9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bee89454427044dc969fe9e578b44ae9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7gtF_GdSTDAahXImEPHW4qHu0Q=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.895217+00 2025-12-09 10:15:00.895221+00 8735 LZ1240#下身4号色 SPMX-20240815303897 \N \N \N 1 \N [{"file_id": "746a8e20-ba38-4681-97da-d75e49677098", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39abb78c55a0416cbe1cdd86240ba935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39abb78c55a0416cbe1cdd86240ba935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39abb78c55a0416cbe1cdd86240ba935.jpg", "file_size": 18054, "is_delete": false, "file_type": 1, "original_file_name": "LZ1240#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39abb78c55a0416cbe1cdd86240ba935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39abb78c55a0416cbe1cdd86240ba935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39abb78c55a0416cbe1cdd86240ba935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39abb78c55a0416cbe1cdd86240ba935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39abb78c55a0416cbe1cdd86240ba935.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTQRQq1HoXWCXG59UzlQkjgh6Kw=", "createTime": "2024-08-15 14:47:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.89724+00 2025-12-09 10:15:00.897245+00 8736 DL30435#前幅浅粉 SPMX-20240815303900 \N \N \N 1 \N [{"file_id": "5b54654f-2432-44cc-a132-3bc7f17292b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2657f693c7e24e0f80b8316dd7c013ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2657f693c7e24e0f80b8316dd7c013ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2657f693c7e24e0f80b8316dd7c013ce.jpg", "file_size": 15002, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2657f693c7e24e0f80b8316dd7c013ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2657f693c7e24e0f80b8316dd7c013ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2657f693c7e24e0f80b8316dd7c013ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2657f693c7e24e0f80b8316dd7c013ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2657f693c7e24e0f80b8316dd7c013ce.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3AI0yC--WxYqrktlgfAFTAFS44=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.898944+00 2025-12-09 10:15:00.898949+00 8737 0003-37FWE#下摆花 SPMX-20240815303908 \N \N \N 1 \N [{"file_id": "fe6b1276-3b82-4c1b-b9ef-cb01e50b213b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5ac059b38694d05b161b484f1648154.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5ac059b38694d05b161b484f1648154.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5ac059b38694d05b161b484f1648154.jpg", "file_size": 12988, "is_delete": false, "file_type": 1, "original_file_name": "0003-37FWE#下摆花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ac059b38694d05b161b484f1648154.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ac059b38694d05b161b484f1648154.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ac059b38694d05b161b484f1648154.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5ac059b38694d05b161b484f1648154.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5ac059b38694d05b161b484f1648154.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvAhFg3_BsIUFhiQTbvd8MWMj-M=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.900646+00 2025-12-09 10:15:00.900651+00 8738 LJ20120340604FW# SPMX-20240815303904 \N \N \N 1 \N [{"file_id": "36962a7f-bbc8-46f6-b3e0-f9c526297d00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ee1416566c04169af32b428dcf5fb98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ee1416566c04169af32b428dcf5fb98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ee1416566c04169af32b428dcf5fb98.jpg", "file_size": 28292, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340604FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee1416566c04169af32b428dcf5fb98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee1416566c04169af32b428dcf5fb98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee1416566c04169af32b428dcf5fb98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ee1416566c04169af32b428dcf5fb98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ee1416566c04169af32b428dcf5fb98.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81TCZcrAocIaReDAKaYWkSH5Bc0=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.902348+00 2025-12-09 10:15:00.902353+00 8739 LZ1241#上身1号色 SPMX-20240815303905 \N \N \N 1 \N [{"file_id": "d37dc2d8-c437-4d71-832f-56382d808c10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73db070f1b8b434ca21c729975f6072b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73db070f1b8b434ca21c729975f6072b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73db070f1b8b434ca21c729975f6072b.jpg", "file_size": 19376, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73db070f1b8b434ca21c729975f6072b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73db070f1b8b434ca21c729975f6072b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73db070f1b8b434ca21c729975f6072b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73db070f1b8b434ca21c729975f6072b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73db070f1b8b434ca21c729975f6072b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYbNyBcrWeT9J1MVyfU8Rkonvqo=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.904292+00 2025-12-09 10:15:00.904297+00 8740 C338-1#黑色匹印 SPMX-20240815303903 \N \N \N 1 \N [{"file_id": "dc273ef7-25ff-4ee9-954c-79849047bd28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad064b55d12f47249c6fc5daf8431cae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad064b55d12f47249c6fc5daf8431cae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad064b55d12f47249c6fc5daf8431cae.jpg", "file_size": 31693, "is_delete": false, "file_type": 1, "original_file_name": "C338-1#黑色匹印.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad064b55d12f47249c6fc5daf8431cae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad064b55d12f47249c6fc5daf8431cae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad064b55d12f47249c6fc5daf8431cae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad064b55d12f47249c6fc5daf8431cae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad064b55d12f47249c6fc5daf8431cae.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5vE5VSqaKsaqcHj9V6THWok1hI=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.905983+00 2025-12-09 10:15:00.905988+00 8741 1071915#红色净色 SPMX-20240815303902 \N \N \N 1 \N [{"file_id": "161d80b3-41c6-49df-b2d1-e0a67940e08f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb899a0563aa4efe9da9b9a623650fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb899a0563aa4efe9da9b9a623650fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb899a0563aa4efe9da9b9a623650fe1.jpg", "file_size": 9260, "is_delete": false, "file_type": 1, "original_file_name": "1071915#红色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb899a0563aa4efe9da9b9a623650fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb899a0563aa4efe9da9b9a623650fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb899a0563aa4efe9da9b9a623650fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb899a0563aa4efe9da9b9a623650fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb899a0563aa4efe9da9b9a623650fe1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkKHJ1VbbN_xqIA4Pw64GiBNfFo=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.907672+00 2025-12-09 10:15:00.907677+00 8742 23-2113#A4领子通用 SPMX-20240815303899 \N \N \N 1 \N [{"file_id": "37b08ece-3412-45ab-8be9-355cf6557e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e130164c3464bd3b965153b76fbc5f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e130164c3464bd3b965153b76fbc5f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e130164c3464bd3b965153b76fbc5f6.jpg", "file_size": 7684, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A4领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e130164c3464bd3b965153b76fbc5f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e130164c3464bd3b965153b76fbc5f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e130164c3464bd3b965153b76fbc5f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e130164c3464bd3b965153b76fbc5f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e130164c3464bd3b965153b76fbc5f6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRJ2TWgIqQFKdz9voovu0HS-NX8=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.909378+00 2025-12-09 10:15:00.909383+00 8743 JTSS062#VS-D3 SPMX-20240815303906 \N \N \N 1 \N [{"file_id": "1c1bdf66-8835-4e99-a4e0-1fed3172634a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10db9cd8e6cb4cdb85e7fc9107528697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10db9cd8e6cb4cdb85e7fc9107528697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10db9cd8e6cb4cdb85e7fc9107528697.jpg", "file_size": 15447, "is_delete": false, "file_type": 1, "original_file_name": "JTSS062#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10db9cd8e6cb4cdb85e7fc9107528697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10db9cd8e6cb4cdb85e7fc9107528697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10db9cd8e6cb4cdb85e7fc9107528697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10db9cd8e6cb4cdb85e7fc9107528697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10db9cd8e6cb4cdb85e7fc9107528697.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKGl0VhTp22bFf8dA8yw-U4h3-s=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.91133+00 2025-12-09 10:15:00.911335+00 8744 FHXGPK-104-1 SPMX-20240815303901 \N \N \N 1 \N [{"file_id": "74d69d34-457b-4d86-abf2-7d78a0cae6d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2db136e49284b9dbb3277bfc3ac25a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2db136e49284b9dbb3277bfc3ac25a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2db136e49284b9dbb3277bfc3ac25a3.jpg", "file_size": 35874, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-104-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2db136e49284b9dbb3277bfc3ac25a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2db136e49284b9dbb3277bfc3ac25a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2db136e49284b9dbb3277bfc3ac25a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2db136e49284b9dbb3277bfc3ac25a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2db136e49284b9dbb3277bfc3ac25a3.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fK0MVxbncxkDjSpm8-3JhSzDakQ=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.913018+00 2025-12-09 10:15:00.913023+00 8745 HT0101-62#WJC22 SPMX-20240815303898 \N \N \N 1 \N [{"file_id": "4a590685-c696-43cf-8cdd-5b2206a3fc07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25aa8066138b4b4e9b169a0c0e3fabe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25aa8066138b4b4e9b169a0c0e3fabe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25aa8066138b4b4e9b169a0c0e3fabe1.jpg", "file_size": 15947, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-62#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25aa8066138b4b4e9b169a0c0e3fabe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25aa8066138b4b4e9b169a0c0e3fabe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25aa8066138b4b4e9b169a0c0e3fabe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25aa8066138b4b4e9b169a0c0e3fabe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25aa8066138b4b4e9b169a0c0e3fabe1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z68ph0cOvn8ikGc9wCJxHjLLF9o=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.914722+00 2025-12-09 10:15:00.914727+00 8746 80319#匹布 SPMX-20240815303907 \N \N \N 1 \N [{"file_id": "f13a465b-b8c0-46c3-afc2-e46206e35338", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08877818e4a844f1a10da6375373e9ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08877818e4a844f1a10da6375373e9ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08877818e4a844f1a10da6375373e9ba.jpg", "file_size": 5939, "is_delete": false, "file_type": 1, "original_file_name": "80319#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08877818e4a844f1a10da6375373e9ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08877818e4a844f1a10da6375373e9ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08877818e4a844f1a10da6375373e9ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08877818e4a844f1a10da6375373e9ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08877818e4a844f1a10da6375373e9ba.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hhHVKGKk229NW67xsyC-5IFtqsI=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.916409+00 2025-12-09 10:15:00.916414+00 8747 HT0101-63#WJC22 SPMX-20240815303909 \N \N \N 1 \N [{"file_id": "b7de37c8-5f06-40c4-b253-180a072f9313", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2903ac6181314a0bb41734547bf6614a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2903ac6181314a0bb41734547bf6614a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2903ac6181314a0bb41734547bf6614a.jpg", "file_size": 13683, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-63#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2903ac6181314a0bb41734547bf6614a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2903ac6181314a0bb41734547bf6614a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2903ac6181314a0bb41734547bf6614a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2903ac6181314a0bb41734547bf6614a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2903ac6181314a0bb41734547bf6614a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMRuv3eZnujxZkSq0wPxMvls2Bc=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.918368+00 2025-12-09 10:15:00.918372+00 8748 DL30435#前幅蓝绿 SPMX-20240815303911 \N \N \N 1 \N [{"file_id": "cd5bd93a-bb38-4c9a-848b-32eb7a2dfade", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce8490a71b8c44868ce06f269b6d5d92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce8490a71b8c44868ce06f269b6d5d92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce8490a71b8c44868ce06f269b6d5d92.jpg", "file_size": 16155, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8490a71b8c44868ce06f269b6d5d92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8490a71b8c44868ce06f269b6d5d92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8490a71b8c44868ce06f269b6d5d92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce8490a71b8c44868ce06f269b6d5d92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce8490a71b8c44868ce06f269b6d5d92.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:drFw_FdMkQ2wQqVd_VMuinc_Zyw=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.920102+00 2025-12-09 10:15:00.920107+00 8749 23-2113#A5前后片3XL SPMX-20240815303910 \N \N \N 1 \N [{"file_id": "e44105e0-8cfd-4c6f-ba02-37150b4fe5ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55ff99fe0eaf4954a4cd0163fd3f186a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55ff99fe0eaf4954a4cd0163fd3f186a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55ff99fe0eaf4954a4cd0163fd3f186a.jpg", "file_size": 10072, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ff99fe0eaf4954a4cd0163fd3f186a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ff99fe0eaf4954a4cd0163fd3f186a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55ff99fe0eaf4954a4cd0163fd3f186a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55ff99fe0eaf4954a4cd0163fd3f186a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55ff99fe0eaf4954a4cd0163fd3f186a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JfWQxVq4T57cjPsi1ZG59qmtnU=", "createTime": "2024-08-15 14:47:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.921904+00 2025-12-09 10:15:00.921912+00 8750 FHXGPK-105-1 SPMX-20240815303915 \N \N \N 1 \N [{"file_id": "b35fcf22-8452-476e-8f10-6fa4623f1ab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8f3820516b142e6aac51502592d16e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8f3820516b142e6aac51502592d16e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8f3820516b142e6aac51502592d16e6.jpg", "file_size": 35134, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-105-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3820516b142e6aac51502592d16e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3820516b142e6aac51502592d16e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3820516b142e6aac51502592d16e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8f3820516b142e6aac51502592d16e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8f3820516b142e6aac51502592d16e6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cf33a0_l90lwV1R3GxIs0p0MzJU=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.923807+00 2025-12-09 10:15:00.923812+00 8751 LJ20120340605FW# SPMX-20240815303913 \N \N \N 1 \N [{"file_id": "3331c339-a5a3-4c47-96dd-f5c34eccf5b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b659fe235d34364968d830a3b94d3c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b659fe235d34364968d830a3b94d3c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b659fe235d34364968d830a3b94d3c5.jpg", "file_size": 22782, "is_delete": false, "file_type": 1, "original_file_name": "LJ20120340605FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b659fe235d34364968d830a3b94d3c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b659fe235d34364968d830a3b94d3c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b659fe235d34364968d830a3b94d3c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b659fe235d34364968d830a3b94d3c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b659fe235d34364968d830a3b94d3c5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i35H-S8j0KR0LYU2_Z_jMD84sME=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.925834+00 2025-12-09 10:15:00.925838+00 8752 23-2113#A5前后片4XL SPMX-20240815303922 \N \N \N 1 \N [{"file_id": "cabbd7f4-6e73-4a50-8f59-c9fb97dd10f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7934c124d71d498685353a706b65df43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7934c124d71d498685353a706b65df43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7934c124d71d498685353a706b65df43.jpg", "file_size": 10169, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7934c124d71d498685353a706b65df43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7934c124d71d498685353a706b65df43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7934c124d71d498685353a706b65df43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7934c124d71d498685353a706b65df43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7934c124d71d498685353a706b65df43.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PH3xJth1fsokrCmnKPFVr8xMSiw=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.927619+00 2025-12-09 10:15:00.927623+00 8753 HT0101-64#WJC22 SPMX-20240815303917 \N \N \N 1 \N [{"file_id": "9152b0c0-b392-46ca-bd52-360cd10e4a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad6c0ec7beee4143838187dbb2fee673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad6c0ec7beee4143838187dbb2fee673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad6c0ec7beee4143838187dbb2fee673.jpg", "file_size": 18656, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-64#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c0ec7beee4143838187dbb2fee673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c0ec7beee4143838187dbb2fee673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6c0ec7beee4143838187dbb2fee673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad6c0ec7beee4143838187dbb2fee673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad6c0ec7beee4143838187dbb2fee673.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVJ4EGd9joQ3X6cGxo8mEbej0LU=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.929372+00 2025-12-09 10:15:00.929377+00 8754 1071915#裤子 SPMX-20240815303912 \N \N \N 1 \N [{"file_id": "ab39074c-d2a2-43bf-9a9a-c596fba29f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d44de3a316034e92a1795d760ed3b497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d44de3a316034e92a1795d760ed3b497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d44de3a316034e92a1795d760ed3b497.jpg", "file_size": 19924, "is_delete": false, "file_type": 1, "original_file_name": "1071915#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44de3a316034e92a1795d760ed3b497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44de3a316034e92a1795d760ed3b497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44de3a316034e92a1795d760ed3b497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d44de3a316034e92a1795d760ed3b497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d44de3a316034e92a1795d760ed3b497.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFvVCqG39V4Ge6muDyKosoQ7_Us=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.930911+00 2025-12-09 10:15:00.930916+00 8755 0003-37FWE#正身 SPMX-20240815303918 \N \N \N 1 \N [{"file_id": "557beefa-8cf9-423b-84bb-04c3d5ecea3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e48aba38cd324d6982029b9ce71f4a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e48aba38cd324d6982029b9ce71f4a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e48aba38cd324d6982029b9ce71f4a60.jpg", "file_size": 22515, "is_delete": false, "file_type": 1, "original_file_name": "0003-37FWE#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48aba38cd324d6982029b9ce71f4a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48aba38cd324d6982029b9ce71f4a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e48aba38cd324d6982029b9ce71f4a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e48aba38cd324d6982029b9ce71f4a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e48aba38cd324d6982029b9ce71f4a60.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17k3E4jMyTbgseHiQt-4Z8-ThHY=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.93241+00 2025-12-09 10:15:00.932414+00 8756 C338FWE#L SPMX-20240815303919 \N \N \N 1 \N [{"file_id": "1551874a-d5f6-4a89-be9f-630fabe2fa58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83089be1f17d4f8492e97f24e6f99777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83089be1f17d4f8492e97f24e6f99777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83089be1f17d4f8492e97f24e6f99777.jpg", "file_size": 20742, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83089be1f17d4f8492e97f24e6f99777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83089be1f17d4f8492e97f24e6f99777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83089be1f17d4f8492e97f24e6f99777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83089be1f17d4f8492e97f24e6f99777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83089be1f17d4f8492e97f24e6f99777.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4Cf5RNap_pJ4IqtHMY6H92pi84=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.933939+00 2025-12-09 10:15:00.933943+00 8757 JTSS062FW#VS-D3 SPMX-20240815303920 \N \N \N 1 \N [{"file_id": "84a1e41f-e22e-4c68-a3c4-5e959726891b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ad063cfd98b4f7bb9a2198cc2a62b79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ad063cfd98b4f7bb9a2198cc2a62b79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ad063cfd98b4f7bb9a2198cc2a62b79.jpg", "file_size": 8064, "is_delete": false, "file_type": 1, "original_file_name": "JTSS062FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad063cfd98b4f7bb9a2198cc2a62b79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad063cfd98b4f7bb9a2198cc2a62b79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad063cfd98b4f7bb9a2198cc2a62b79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ad063cfd98b4f7bb9a2198cc2a62b79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ad063cfd98b4f7bb9a2198cc2a62b79.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OtdiRsQwJrjA19GOMlf_XW5HvM=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.935473+00 2025-12-09 10:15:00.935478+00 8758 LZ1241#上身2号色 SPMX-20240815303914 \N \N \N 1 \N [{"file_id": "a7d2c3d9-708c-47e9-b7b5-aecf0d5b04f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ef3fac887a24a0ba51391f26fa37ebb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ef3fac887a24a0ba51391f26fa37ebb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ef3fac887a24a0ba51391f26fa37ebb.jpg", "file_size": 19314, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef3fac887a24a0ba51391f26fa37ebb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef3fac887a24a0ba51391f26fa37ebb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef3fac887a24a0ba51391f26fa37ebb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ef3fac887a24a0ba51391f26fa37ebb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ef3fac887a24a0ba51391f26fa37ebb.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Au1N_Pri9Ua3DePXWqcpZsHI5w=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.937006+00 2025-12-09 10:15:00.93701+00 8759 80319#小童 SPMX-20240815303921 \N \N \N 1 \N [{"file_id": "ef6fb459-1ccf-4e2f-8e77-69b9e9a344f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91be493c923a4741a01b6982007dcac6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91be493c923a4741a01b6982007dcac6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91be493c923a4741a01b6982007dcac6.jpg", "file_size": 23388, "is_delete": false, "file_type": 1, "original_file_name": "80319#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91be493c923a4741a01b6982007dcac6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91be493c923a4741a01b6982007dcac6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91be493c923a4741a01b6982007dcac6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91be493c923a4741a01b6982007dcac6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91be493c923a4741a01b6982007dcac6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BupD3BCxYZdJf1SwBLpiRgExVS0=", "createTime": "2024-08-15 14:47:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.938495+00 2025-12-09 10:15:00.938499+00 8760 LJ20121040603FW#VS-D3 SPMX-20240815303927 \N \N \N 1 \N [{"file_id": "6b814a34-8e14-4c82-8831-31f144b143a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd23566ae0094d5abe6bf2d8b78a1364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd23566ae0094d5abe6bf2d8b78a1364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd23566ae0094d5abe6bf2d8b78a1364.jpg", "file_size": 18253, "is_delete": false, "file_type": 1, "original_file_name": "LJ20121040603FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd23566ae0094d5abe6bf2d8b78a1364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd23566ae0094d5abe6bf2d8b78a1364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd23566ae0094d5abe6bf2d8b78a1364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd23566ae0094d5abe6bf2d8b78a1364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd23566ae0094d5abe6bf2d8b78a1364.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:saqBR8GzT2JOXVxJi_sva4BjviI=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.940012+00 2025-12-09 10:15:00.940017+00 8761 LZ1241#上身3号色 SPMX-20240815303930 \N \N \N 1 \N [{"file_id": "cb94ab1f-b30a-4cec-8f64-16c2c1a50efc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a4cf38e084f4c0aaf3ec7a107b66271.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a4cf38e084f4c0aaf3ec7a107b66271.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a4cf38e084f4c0aaf3ec7a107b66271.jpg", "file_size": 16515, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4cf38e084f4c0aaf3ec7a107b66271.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4cf38e084f4c0aaf3ec7a107b66271.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4cf38e084f4c0aaf3ec7a107b66271.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a4cf38e084f4c0aaf3ec7a107b66271.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a4cf38e084f4c0aaf3ec7a107b66271.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfkw3yhfVjN3aTJUfqEB0Uf-92k=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.941598+00 2025-12-09 10:15:00.941602+00 8762 1071916#净色红色 SPMX-20240815303925 \N \N \N 1 \N [{"file_id": "f031e467-b570-427b-99f4-8027a1a26533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9b5b903bde44d9498907cab8e9c802f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9b5b903bde44d9498907cab8e9c802f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9b5b903bde44d9498907cab8e9c802f.jpg", "file_size": 9417, "is_delete": false, "file_type": 1, "original_file_name": "1071916#净色红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5b903bde44d9498907cab8e9c802f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5b903bde44d9498907cab8e9c802f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5b903bde44d9498907cab8e9c802f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9b5b903bde44d9498907cab8e9c802f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9b5b903bde44d9498907cab8e9c802f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YP6pT0IH7b5Hoh75wc-V5NRcYWk=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.943164+00 2025-12-09 10:15:00.943168+00 8763 FHXGPK-106-1 SPMX-20240815303932 \N \N \N 1 \N [{"file_id": "67c2a969-c5a8-421e-b4d6-4a14af8fcae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a92f1cb7125640249c4e4ea4a60391dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a92f1cb7125640249c4e4ea4a60391dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a92f1cb7125640249c4e4ea4a60391dc.jpg", "file_size": 38414, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-106-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92f1cb7125640249c4e4ea4a60391dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92f1cb7125640249c4e4ea4a60391dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92f1cb7125640249c4e4ea4a60391dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a92f1cb7125640249c4e4ea4a60391dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a92f1cb7125640249c4e4ea4a60391dc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ijJku92eUOrvzr9A5GY59WWw4JU=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.944655+00 2025-12-09 10:15:00.944659+00 8764 DL30435#彩蓝色L SPMX-20240815303931 \N \N \N 1 \N [{"file_id": "b9aad11e-8f51-4b7a-aa39-d376257c0faa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32e2a32859504aa2bc18669515663732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32e2a32859504aa2bc18669515663732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32e2a32859504aa2bc18669515663732.jpg", "file_size": 18638, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#彩蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e2a32859504aa2bc18669515663732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e2a32859504aa2bc18669515663732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32e2a32859504aa2bc18669515663732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32e2a32859504aa2bc18669515663732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32e2a32859504aa2bc18669515663732.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1p3nYH9y07WS9yU4nELCua0jbFU=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.946191+00 2025-12-09 10:15:00.946195+00 8765 C338FWE#L番禺调色 SPMX-20240815303933 \N \N \N 1 \N [{"file_id": "00e7cc2f-5331-4ed9-a532-98df7e1bf727", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c764212c2de54e778ff9a6823837fc9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c764212c2de54e778ff9a6823837fc9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c764212c2de54e778ff9a6823837fc9c.jpg", "file_size": 21126, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#L番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c764212c2de54e778ff9a6823837fc9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c764212c2de54e778ff9a6823837fc9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c764212c2de54e778ff9a6823837fc9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c764212c2de54e778ff9a6823837fc9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c764212c2de54e778ff9a6823837fc9c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DRUzQiTQGAl8jEfGDh7Tl-QXxg=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.947714+00 2025-12-09 10:15:00.947718+00 8766 JTSS063#VS-D3 SPMX-20240815303924 \N \N \N 1 \N [{"file_id": "c4858ad1-608b-4fc4-9b49-ad72b8bd3419", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "075b0be39ef0493dba9b0793e479c8df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "075b0be39ef0493dba9b0793e479c8df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "075b0be39ef0493dba9b0793e479c8df.jpg", "file_size": 15624, "is_delete": false, "file_type": 1, "original_file_name": "JTSS063#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075b0be39ef0493dba9b0793e479c8df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075b0be39ef0493dba9b0793e479c8df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075b0be39ef0493dba9b0793e479c8df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/075b0be39ef0493dba9b0793e479c8df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/075b0be39ef0493dba9b0793e479c8df.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYfbFaf1mLxa8oT5V_IgCq823ww=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.949506+00 2025-12-09 10:15:00.94951+00 8767 0003-37FWF#V5曲线 SPMX-20240815303926 \N \N \N 1 \N [{"file_id": "16533bba-1202-4f01-be77-c669ec2fa7ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de04758c0d1b4e2195f69b0fa4551e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de04758c0d1b4e2195f69b0fa4551e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de04758c0d1b4e2195f69b0fa4551e0c.jpg", "file_size": 13932, "is_delete": false, "file_type": 1, "original_file_name": "0003-37FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04758c0d1b4e2195f69b0fa4551e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04758c0d1b4e2195f69b0fa4551e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04758c0d1b4e2195f69b0fa4551e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de04758c0d1b4e2195f69b0fa4551e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de04758c0d1b4e2195f69b0fa4551e0c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SZPssGu6ReGYYm_d9gJgzfcEJs=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.951016+00 2025-12-09 10:15:00.95102+00 8768 DL30435#彩蓝色2XL SPMX-20240815303923 \N \N \N 1 \N [{"file_id": "6d58f612-59a4-495b-b548-ac4d3323e93b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95070b868d41457bb99a64eb6c4716fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95070b868d41457bb99a64eb6c4716fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95070b868d41457bb99a64eb6c4716fb.jpg", "file_size": 19989, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#彩蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95070b868d41457bb99a64eb6c4716fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95070b868d41457bb99a64eb6c4716fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95070b868d41457bb99a64eb6c4716fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95070b868d41457bb99a64eb6c4716fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95070b868d41457bb99a64eb6c4716fb.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oojQr2mJLaJh2HxqhFESiFHgoi4=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.952547+00 2025-12-09 10:15:00.95255+00 8769 23-2113#A5袖子3XL SPMX-20240815303929 \N \N \N 1 \N [{"file_id": "2c496e3d-2d31-43f3-b798-b62d71426b2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3618b9ed69b43b4a86a34742cf8aced.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3618b9ed69b43b4a86a34742cf8aced.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3618b9ed69b43b4a86a34742cf8aced.jpg", "file_size": 9867, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3618b9ed69b43b4a86a34742cf8aced.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3618b9ed69b43b4a86a34742cf8aced.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3618b9ed69b43b4a86a34742cf8aced.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3618b9ed69b43b4a86a34742cf8aced.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3618b9ed69b43b4a86a34742cf8aced.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:njak7zno4_LHjPpqlFwdUCvt5jU=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.954108+00 2025-12-09 10:15:00.954113+00 8770 JTSS063FW#VS-D3 SPMX-20240815303935 \N \N \N 1 \N [{"file_id": "5fecfea5-e00a-41ca-b438-4323bd90d379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c49d13f9d4a41698ca16906dac96ec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c49d13f9d4a41698ca16906dac96ec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c49d13f9d4a41698ca16906dac96ec5.jpg", "file_size": 9352, "is_delete": false, "file_type": 1, "original_file_name": "JTSS063FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c49d13f9d4a41698ca16906dac96ec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c49d13f9d4a41698ca16906dac96ec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c49d13f9d4a41698ca16906dac96ec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c49d13f9d4a41698ca16906dac96ec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c49d13f9d4a41698ca16906dac96ec5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f270Ph_ulSsGCEIQb3UT6zy7Ves=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.955697+00 2025-12-09 10:15:00.955701+00 8771 80319#裤子 SPMX-20240815303928 \N \N \N 1 \N [{"file_id": "fa2d6cb1-7e7c-4561-b92f-e15b44cb2882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "991bbb4bbdf7427e9173487f9507ac89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "991bbb4bbdf7427e9173487f9507ac89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "991bbb4bbdf7427e9173487f9507ac89.jpg", "file_size": 21121, "is_delete": false, "file_type": 1, "original_file_name": "80319#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/991bbb4bbdf7427e9173487f9507ac89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/991bbb4bbdf7427e9173487f9507ac89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/991bbb4bbdf7427e9173487f9507ac89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/991bbb4bbdf7427e9173487f9507ac89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/991bbb4bbdf7427e9173487f9507ac89.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MQWgoqbRjFHTA3vOvT31d3Kvic=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.957256+00 2025-12-09 10:15:00.957261+00 8772 HT0101-65#正身 SPMX-20240815303934 \N \N \N 1 \N [{"file_id": "25230d51-34a8-48af-930e-f7c9feef78f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cad56c54f21b4d0babdd6c6fbf6247e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cad56c54f21b4d0babdd6c6fbf6247e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cad56c54f21b4d0babdd6c6fbf6247e5.jpg", "file_size": 24227, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-65#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad56c54f21b4d0babdd6c6fbf6247e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad56c54f21b4d0babdd6c6fbf6247e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad56c54f21b4d0babdd6c6fbf6247e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cad56c54f21b4d0babdd6c6fbf6247e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cad56c54f21b4d0babdd6c6fbf6247e5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-7pIkH0HGqWLbck_33ccQBLRjI=", "createTime": "2024-08-15 14:47:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.958771+00 2025-12-09 10:15:00.958776+00 8773 0003-38FWE#VS-D3 SPMX-20240815303937 \N \N \N 1 \N [{"file_id": "9ee50869-c706-4893-ac5a-1bca5bc362f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8818fd666624bcc88658afa0e5a1293.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8818fd666624bcc88658afa0e5a1293.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8818fd666624bcc88658afa0e5a1293.jpg", "file_size": 18519, "is_delete": false, "file_type": 1, "original_file_name": "0003-38FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8818fd666624bcc88658afa0e5a1293.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8818fd666624bcc88658afa0e5a1293.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8818fd666624bcc88658afa0e5a1293.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8818fd666624bcc88658afa0e5a1293.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8818fd666624bcc88658afa0e5a1293.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Njmr8_VUz4gR08LPiUQQWI4vFCU=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.960319+00 2025-12-09 10:15:00.960323+00 8774 23-2113#A5袖子4XL SPMX-20240815303942 \N \N \N 1 \N [{"file_id": "7b8f026d-bed3-43b3-b244-7004fb117068", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc4f15a743d43e1bbdf3eeb530c64aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc4f15a743d43e1bbdf3eeb530c64aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc4f15a743d43e1bbdf3eeb530c64aa.jpg", "file_size": 10444, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc4f15a743d43e1bbdf3eeb530c64aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc4f15a743d43e1bbdf3eeb530c64aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc4f15a743d43e1bbdf3eeb530c64aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc4f15a743d43e1bbdf3eeb530c64aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc4f15a743d43e1bbdf3eeb530c64aa.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCQuAp-A6AxVvRHbf2KgnssxpK8=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.961838+00 2025-12-09 10:15:00.961842+00 8775 1071916#婴3XL SPMX-20240815303936 \N \N \N 1 \N [{"file_id": "84cddc75-fcff-4bb8-9895-11ca5eab4c46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aefe408e1e554956ba86153f3c8d2549.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aefe408e1e554956ba86153f3c8d2549.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aefe408e1e554956ba86153f3c8d2549.jpg", "file_size": 13128, "is_delete": false, "file_type": 1, "original_file_name": "1071916#婴3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefe408e1e554956ba86153f3c8d2549.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefe408e1e554956ba86153f3c8d2549.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefe408e1e554956ba86153f3c8d2549.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aefe408e1e554956ba86153f3c8d2549.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aefe408e1e554956ba86153f3c8d2549.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKu0yWabirV2BcGwx3EyB8f4bnI=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.96363+00 2025-12-09 10:15:00.963634+00 8776 LJ20121740601FW# SPMX-20240815303938 \N \N \N 1 \N [{"file_id": "ee31d4d8-b6cf-4d44-b763-c2ef06d2f4de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "348d81873db8489b96619d6b26056182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "348d81873db8489b96619d6b26056182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "348d81873db8489b96619d6b26056182.jpg", "file_size": 8140, "is_delete": false, "file_type": 1, "original_file_name": "LJ20121740601FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348d81873db8489b96619d6b26056182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348d81873db8489b96619d6b26056182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348d81873db8489b96619d6b26056182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/348d81873db8489b96619d6b26056182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/348d81873db8489b96619d6b26056182.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfyCQ7Xa34c6wIQBinzY_xHpMcA=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.965148+00 2025-12-09 10:15:00.965152+00 8777 LZ1241#上身4+号色 SPMX-20240815303940 \N \N \N 1 \N [{"file_id": "197ed57c-73d6-4abd-bf51-0d8f0f271efb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bf50f0bdb3b4dc1a262ba04318b9f13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bf50f0bdb3b4dc1a262ba04318b9f13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bf50f0bdb3b4dc1a262ba04318b9f13.jpg", "file_size": 15581, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#上身4+号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf50f0bdb3b4dc1a262ba04318b9f13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf50f0bdb3b4dc1a262ba04318b9f13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf50f0bdb3b4dc1a262ba04318b9f13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bf50f0bdb3b4dc1a262ba04318b9f13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bf50f0bdb3b4dc1a262ba04318b9f13.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68ql9tKgRbQ-GuX3hx_5efMcDz4=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.966696+00 2025-12-09 10:15:00.9667+00 8778 C338FWE#M SPMX-20240815303943 \N \N \N 1 \N [{"file_id": "07254e9c-20e5-4436-903d-f86c6cd2aad3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f901ce3668f41cc9f67e28c95480e0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f901ce3668f41cc9f67e28c95480e0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f901ce3668f41cc9f67e28c95480e0a.jpg", "file_size": 21953, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f901ce3668f41cc9f67e28c95480e0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f901ce3668f41cc9f67e28c95480e0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f901ce3668f41cc9f67e28c95480e0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f901ce3668f41cc9f67e28c95480e0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f901ce3668f41cc9f67e28c95480e0a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oB8PaSkt2dd6QQbrc10XsorUO2E=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.968236+00 2025-12-09 10:15:00.96824+00 8779 DL30435#彩蓝色XL SPMX-20240815303941 \N \N \N 1 \N [{"file_id": "40663475-3cea-48ee-80b2-f69f24bb80db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbd1728c4dcb45569dd25326443f163f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbd1728c4dcb45569dd25326443f163f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbd1728c4dcb45569dd25326443f163f.jpg", "file_size": 19294, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#彩蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1728c4dcb45569dd25326443f163f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1728c4dcb45569dd25326443f163f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1728c4dcb45569dd25326443f163f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbd1728c4dcb45569dd25326443f163f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbd1728c4dcb45569dd25326443f163f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eX7zrEFRfO-Dv6zdq9LjPsgKTTA=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.969767+00 2025-12-09 10:15:00.969771+00 8780 HT0101-65#玫红净色 SPMX-20240815303946 \N \N \N 1 \N [{"file_id": "0cea23f5-4a0f-462f-9930-c411bdf906e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08abf5d67a694173b863f73236815662.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08abf5d67a694173b863f73236815662.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08abf5d67a694173b863f73236815662.jpg", "file_size": 7444, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-65#玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08abf5d67a694173b863f73236815662.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08abf5d67a694173b863f73236815662.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08abf5d67a694173b863f73236815662.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08abf5d67a694173b863f73236815662.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08abf5d67a694173b863f73236815662.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfxFaG64QYkr4MCBVamyxi9D0Es=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.971276+00 2025-12-09 10:15:00.971281+00 8781 1071916#婴S+M+L+XL+2XL SPMX-20240815303947 \N \N \N 1 \N [{"file_id": "8170b9bb-f950-4232-bf95-c047004d5129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b6577d87e240a7b1a99355f910401b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b6577d87e240a7b1a99355f910401b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b6577d87e240a7b1a99355f910401b.jpg", "file_size": 19289, "is_delete": false, "file_type": 1, "original_file_name": "1071916#婴S+M+L+XL+2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6577d87e240a7b1a99355f910401b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6577d87e240a7b1a99355f910401b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6577d87e240a7b1a99355f910401b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b6577d87e240a7b1a99355f910401b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b6577d87e240a7b1a99355f910401b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWtDYiKEVOEO4FEPo6YLoRF0kCI=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.97283+00 2025-12-09 10:15:00.972834+00 8782 80320#上衣 SPMX-20240815303939 \N \N \N 1 \N [{"file_id": "97c6ebab-561b-4bed-be6a-6f94714cdcdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40ff3f5af63048f7afba1336ae7676b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40ff3f5af63048f7afba1336ae7676b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40ff3f5af63048f7afba1336ae7676b1.jpg", "file_size": 15314, "is_delete": false, "file_type": 1, "original_file_name": "80320#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ff3f5af63048f7afba1336ae7676b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ff3f5af63048f7afba1336ae7676b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ff3f5af63048f7afba1336ae7676b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40ff3f5af63048f7afba1336ae7676b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40ff3f5af63048f7afba1336ae7676b1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mA7Vx4UlI5xijNTTBF_OS32JASg=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.974327+00 2025-12-09 10:15:00.974331+00 8783 FHXGPK-107-1 SPMX-20240815303945 \N \N \N 1 \N [{"file_id": "a6e91bd1-272e-48cb-8ca3-911f9716c4b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef556db0e6d4180b0891748505c578a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef556db0e6d4180b0891748505c578a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef556db0e6d4180b0891748505c578a.jpg", "file_size": 38681, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-107-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef556db0e6d4180b0891748505c578a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef556db0e6d4180b0891748505c578a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef556db0e6d4180b0891748505c578a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef556db0e6d4180b0891748505c578a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef556db0e6d4180b0891748505c578a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DJVFvkZLswFJaWQcqkrD1mk3mQ=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.975852+00 2025-12-09 10:15:00.975856+00 8784 JTSS064#VS-D3 SPMX-20240815303944 \N \N \N 1 \N [{"file_id": "c112d828-b4fe-45d6-9032-0a837cbe8ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84ef333a3b0944cfa2845cb44dad7cb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84ef333a3b0944cfa2845cb44dad7cb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84ef333a3b0944cfa2845cb44dad7cb4.jpg", "file_size": 12517, "is_delete": false, "file_type": 1, "original_file_name": "JTSS064#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ef333a3b0944cfa2845cb44dad7cb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ef333a3b0944cfa2845cb44dad7cb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ef333a3b0944cfa2845cb44dad7cb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84ef333a3b0944cfa2845cb44dad7cb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84ef333a3b0944cfa2845cb44dad7cb4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gmj7IUlyLB4B_oNWqODxPqqdC1Y=", "createTime": "2024-08-15 14:47:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.977368+00 2025-12-09 10:15:00.977373+00 8785 JTSS064FW#VS-D3 SPMX-20240815303955 \N \N \N 1 \N [{"file_id": "162b287e-ad03-4f0e-9d44-d8ff1285e2fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07d5e5ce895f4cb7800b6333339bac09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07d5e5ce895f4cb7800b6333339bac09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07d5e5ce895f4cb7800b6333339bac09.jpg", "file_size": 10184, "is_delete": false, "file_type": 1, "original_file_name": "JTSS064FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07d5e5ce895f4cb7800b6333339bac09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07d5e5ce895f4cb7800b6333339bac09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07d5e5ce895f4cb7800b6333339bac09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07d5e5ce895f4cb7800b6333339bac09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07d5e5ce895f4cb7800b6333339bac09.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufRpxLpOzCbBO8eWStBzPqF1_s4=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.978921+00 2025-12-09 10:15:00.978925+00 8786 DL30435#彩蓝色匹布 SPMX-20240815303951 \N \N \N 1 \N [{"file_id": "0218b405-d426-4a39-8565-dd88eb6f7239", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "100912323b714a5995f7afc8340180c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "100912323b714a5995f7afc8340180c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "100912323b714a5995f7afc8340180c3.jpg", "file_size": 21877, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#彩蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100912323b714a5995f7afc8340180c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100912323b714a5995f7afc8340180c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100912323b714a5995f7afc8340180c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/100912323b714a5995f7afc8340180c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/100912323b714a5995f7afc8340180c3.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0Q3po8s-6FED857DYkJzpMR9tc=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.980447+00 2025-12-09 10:15:00.980452+00 8787 LZ1241#上身4号色 SPMX-20240815303952 \N \N \N 1 \N [{"file_id": "13215a0f-6826-48dd-ab55-1c3da6168094", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87629c66ea164fdfb02ab0df59e7436b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87629c66ea164fdfb02ab0df59e7436b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87629c66ea164fdfb02ab0df59e7436b.jpg", "file_size": 15584, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87629c66ea164fdfb02ab0df59e7436b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87629c66ea164fdfb02ab0df59e7436b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87629c66ea164fdfb02ab0df59e7436b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87629c66ea164fdfb02ab0df59e7436b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87629c66ea164fdfb02ab0df59e7436b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N86PD5-ZvMPEvsa7BjhscfTJPrM=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.98197+00 2025-12-09 10:15:00.981974+00 8788 C338FWE#M番禺调色 SPMX-20240815303954 \N \N \N 1 \N [{"file_id": "e5fc586a-23e7-4ad2-9eb8-a283fd14cc1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f67e29f6a88499084fdf848159428c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f67e29f6a88499084fdf848159428c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f67e29f6a88499084fdf848159428c6.jpg", "file_size": 21964, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#M番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f67e29f6a88499084fdf848159428c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f67e29f6a88499084fdf848159428c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f67e29f6a88499084fdf848159428c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f67e29f6a88499084fdf848159428c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f67e29f6a88499084fdf848159428c6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_AX29r0c5rhho5LXnTv63PE77c=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.983776+00 2025-12-09 10:15:00.98378+00 8789 23-2113#A5领口通用 SPMX-20240815303953 \N \N \N 1 \N [{"file_id": "f5e332f3-10fa-415b-aac5-93f35f960d94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77efcb0a12e440579f2810ad422e702a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77efcb0a12e440579f2810ad422e702a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77efcb0a12e440579f2810ad422e702a.jpg", "file_size": 8573, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77efcb0a12e440579f2810ad422e702a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77efcb0a12e440579f2810ad422e702a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77efcb0a12e440579f2810ad422e702a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77efcb0a12e440579f2810ad422e702a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77efcb0a12e440579f2810ad422e702a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03rOB2awmXKx35KtwF8Cq6C-A6Y=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.985312+00 2025-12-09 10:15:00.985316+00 8790 FHXGPK-108-1 SPMX-20240815303956 \N \N \N 1 \N [{"file_id": "f8f520b9-599c-48e4-96e2-433d95a7ecaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d6843bb7a0c4440b9f21d7b5e7146e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d6843bb7a0c4440b9f21d7b5e7146e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d6843bb7a0c4440b9f21d7b5e7146e3.jpg", "file_size": 36304, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-108-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6843bb7a0c4440b9f21d7b5e7146e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6843bb7a0c4440b9f21d7b5e7146e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6843bb7a0c4440b9f21d7b5e7146e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d6843bb7a0c4440b9f21d7b5e7146e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d6843bb7a0c4440b9f21d7b5e7146e3.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcWV9bPne81y3a9k5MGto1wvt1g=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.986839+00 2025-12-09 10:15:00.986844+00 8791 LJ2125#小碎花LWQ15 SPMX-20240815303948 \N \N \N 1 \N [{"file_id": "f527a738-3c07-405c-aee6-ec3897ebe901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddec43a03ebd4e298104272c90f069c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddec43a03ebd4e298104272c90f069c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddec43a03ebd4e298104272c90f069c0.jpg", "file_size": 18799, "is_delete": false, "file_type": 1, "original_file_name": "LJ2125#小碎花LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddec43a03ebd4e298104272c90f069c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddec43a03ebd4e298104272c90f069c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddec43a03ebd4e298104272c90f069c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddec43a03ebd4e298104272c90f069c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddec43a03ebd4e298104272c90f069c0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nidH89EmU1sP41MZSDI5nKJfDRQ=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.988378+00 2025-12-09 10:15:00.988382+00 8792 0003-38FWF#V5曲线 SPMX-20240815303949 \N \N \N 1 \N [{"file_id": "305ed0b0-e049-4a6c-9fae-5991a16f791e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5006bbd8262344ef96d8b288fd1133c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5006bbd8262344ef96d8b288fd1133c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5006bbd8262344ef96d8b288fd1133c8.jpg", "file_size": 7998, "is_delete": false, "file_type": 1, "original_file_name": "0003-38FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5006bbd8262344ef96d8b288fd1133c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5006bbd8262344ef96d8b288fd1133c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5006bbd8262344ef96d8b288fd1133c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5006bbd8262344ef96d8b288fd1133c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5006bbd8262344ef96d8b288fd1133c8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HX-OAEmr8oWSY6KNglIfheVzK04=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.989912+00 2025-12-09 10:15:00.989917+00 8793 80320#中童 SPMX-20240815303950 \N \N \N 1 \N [{"file_id": "1b424592-ed13-435c-bd0a-2e3db1d80325", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "153937797e034a46963db63d2bc037ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "153937797e034a46963db63d2bc037ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "153937797e034a46963db63d2bc037ea.jpg", "file_size": 24240, "is_delete": false, "file_type": 1, "original_file_name": "80320#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153937797e034a46963db63d2bc037ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153937797e034a46963db63d2bc037ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/153937797e034a46963db63d2bc037ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/153937797e034a46963db63d2bc037ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/153937797e034a46963db63d2bc037ea.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5J6xAR1y3SKcxsKRkgM9h5w7HQo=", "createTime": "2024-08-15 14:47:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.991448+00 2025-12-09 10:15:00.991452+00 8794 FHXGPK-109-1 SPMX-20240815303962 \N \N \N 1 \N [{"file_id": "ed017bc4-8ee3-4175-9432-3370bf903dd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a5406e2403d4023b38f4058198a2ef9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a5406e2403d4023b38f4058198a2ef9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a5406e2403d4023b38f4058198a2ef9.jpg", "file_size": 29280, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-109-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5406e2403d4023b38f4058198a2ef9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5406e2403d4023b38f4058198a2ef9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5406e2403d4023b38f4058198a2ef9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a5406e2403d4023b38f4058198a2ef9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a5406e2403d4023b38f4058198a2ef9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JThTzC5m8TYh5VaVmAcyX0nH-Y4=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.992972+00 2025-12-09 10:15:00.992977+00 8795 23-2113#A5领子通用 SPMX-20240815303959 \N \N \N 1 \N [{"file_id": "2ac9a5bc-9443-486c-bcb2-c57aa12317cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "640d07f4683d4be8b388eadf9d0fe3c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "640d07f4683d4be8b388eadf9d0fe3c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "640d07f4683d4be8b388eadf9d0fe3c1.jpg", "file_size": 8497, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A5领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640d07f4683d4be8b388eadf9d0fe3c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640d07f4683d4be8b388eadf9d0fe3c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640d07f4683d4be8b388eadf9d0fe3c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/640d07f4683d4be8b388eadf9d0fe3c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/640d07f4683d4be8b388eadf9d0fe3c1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dunI94Ctkz8RfL-A-vM9tVIyaHI=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.994488+00 2025-12-09 10:15:00.994493+00 8796 HT0101-65#裙摆 SPMX-20240815303957 \N \N \N 1 \N [{"file_id": "223e1b18-d2ae-4697-838b-2ee1a9f6085c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e479289ff98f41a290cf88220206ea15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e479289ff98f41a290cf88220206ea15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e479289ff98f41a290cf88220206ea15.jpg", "file_size": 18707, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-65#裙摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e479289ff98f41a290cf88220206ea15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e479289ff98f41a290cf88220206ea15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e479289ff98f41a290cf88220206ea15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e479289ff98f41a290cf88220206ea15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e479289ff98f41a290cf88220206ea15.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hx0yJM8tmvtKmtiXejX4ruebpME=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.996029+00 2025-12-09 10:15:00.996033+00 8797 C338FWE#S SPMX-20240815303960 \N \N \N 1 \N [{"file_id": "42eefb6b-5cc4-4cd3-b402-033481887c32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a567afb3df840aebc69dba735a3064a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a567afb3df840aebc69dba735a3064a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a567afb3df840aebc69dba735a3064a.jpg", "file_size": 22084, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a567afb3df840aebc69dba735a3064a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a567afb3df840aebc69dba735a3064a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a567afb3df840aebc69dba735a3064a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a567afb3df840aebc69dba735a3064a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a567afb3df840aebc69dba735a3064a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4B8zpdwZ2OYW-xbkL-rutj19pc=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.997548+00 2025-12-09 10:15:00.997553+00 8798 LZ1241#下身1号色 SPMX-20240815303967 \N \N \N 1 \N [{"file_id": "2b19c733-8c01-4786-b6dd-c8cc20a35974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac1be23703ee40f79e813f47b814535f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac1be23703ee40f79e813f47b814535f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac1be23703ee40f79e813f47b814535f.jpg", "file_size": 20253, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1be23703ee40f79e813f47b814535f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1be23703ee40f79e813f47b814535f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac1be23703ee40f79e813f47b814535f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac1be23703ee40f79e813f47b814535f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac1be23703ee40f79e813f47b814535f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fZG9E4_DWsNZB9FEnJ070ij07k=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:00.999112+00 2025-12-09 10:15:00.999116+00 8799 0003-3FWE#VS-D3番禺调色 SPMX-20240815303961 \N \N \N 1 \N [{"file_id": "bd1cbc49-ef91-401c-b581-c068758a316b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f7adb86688445979799281a84109aa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f7adb86688445979799281a84109aa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f7adb86688445979799281a84109aa8.jpg", "file_size": 21568, "is_delete": false, "file_type": 1, "original_file_name": "0003-3FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7adb86688445979799281a84109aa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7adb86688445979799281a84109aa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7adb86688445979799281a84109aa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f7adb86688445979799281a84109aa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f7adb86688445979799281a84109aa8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9s7JXkNtQf6ioSxFXlcgjhs2v9g=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.000893+00 2025-12-09 10:15:01.000898+00 8800 80320#匹布 SPMX-20240815303965 \N \N \N 1 \N [{"file_id": "22d41b9e-5d49-4a4a-89be-b56fa574ee57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3df8c46d6b9e4ec8b49418f5b058ef27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3df8c46d6b9e4ec8b49418f5b058ef27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3df8c46d6b9e4ec8b49418f5b058ef27.jpg", "file_size": 6758, "is_delete": false, "file_type": 1, "original_file_name": "80320#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df8c46d6b9e4ec8b49418f5b058ef27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df8c46d6b9e4ec8b49418f5b058ef27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df8c46d6b9e4ec8b49418f5b058ef27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3df8c46d6b9e4ec8b49418f5b058ef27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3df8c46d6b9e4ec8b49418f5b058ef27.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNDse_JHTcDJJqm15Ak0y84fbwI=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.002434+00 2025-12-09 10:15:01.002439+00 8801 JTSS065#VS-D3 SPMX-20240815303963 \N \N \N 1 \N [{"file_id": "e7ee18ad-ccac-4576-a078-38058ce248b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg", "file_size": 14577, "is_delete": false, "file_type": 1, "original_file_name": "JTSS065#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a8bb1b6e2be4228bfeb849fed2c6f5c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNGzOS6-W1-NLp9JBB6IsknP-P0=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.003979+00 2025-12-09 10:15:01.003983+00 8802 HT0101-65#裙摆黑块 SPMX-20240815303968 \N \N \N 1 \N [{"file_id": "0dd77ec1-e4fd-4bdb-b9cb-cc64eca2b06f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04476a6bd1494c6b80342fb0c2883d63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04476a6bd1494c6b80342fb0c2883d63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04476a6bd1494c6b80342fb0c2883d63.jpg", "file_size": 18029, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-65#裙摆黑块.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04476a6bd1494c6b80342fb0c2883d63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04476a6bd1494c6b80342fb0c2883d63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04476a6bd1494c6b80342fb0c2883d63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04476a6bd1494c6b80342fb0c2883d63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04476a6bd1494c6b80342fb0c2883d63.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNejcu88rml4wt43lOdraRfXNmI=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.005528+00 2025-12-09 10:15:01.005532+00 8803 1071916#男2XL+女2XL+女S+男S+童2+童10+童6 SPMX-20240815303958 \N \N \N 1 \N [{"file_id": "944144fe-ce3a-41c4-8c9d-6e4bc2b1cc84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "102e4adf02664651a2b8fd90dfe3fcc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "102e4adf02664651a2b8fd90dfe3fcc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "102e4adf02664651a2b8fd90dfe3fcc5.jpg", "file_size": 23078, "is_delete": false, "file_type": 1, "original_file_name": "1071916#男2XL+女2XL+女S+男S+童2+童10+童6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/102e4adf02664651a2b8fd90dfe3fcc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/102e4adf02664651a2b8fd90dfe3fcc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/102e4adf02664651a2b8fd90dfe3fcc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/102e4adf02664651a2b8fd90dfe3fcc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/102e4adf02664651a2b8fd90dfe3fcc5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVmxp7i2jWWamge1Z8ih8ayg2qc=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.007067+00 2025-12-09 10:15:01.007071+00 8804 DL30435#批布亮黄 SPMX-20240815303966 \N \N \N 1 \N [{"file_id": "2735e7c0-a1c7-4616-8d28-882a26a5cf2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36c83a0290ae4307ab593d89184281e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36c83a0290ae4307ab593d89184281e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36c83a0290ae4307ab593d89184281e3.jpg", "file_size": 19495, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36c83a0290ae4307ab593d89184281e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36c83a0290ae4307ab593d89184281e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36c83a0290ae4307ab593d89184281e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36c83a0290ae4307ab593d89184281e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36c83a0290ae4307ab593d89184281e3.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMRX9r6LL23FR75GlLFYGeNzDes=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.008588+00 2025-12-09 10:15:01.008592+00 8805 LJ2440#WJC22 SPMX-20240815303964 \N \N \N 1 \N [{"file_id": "fcf0c3ee-4b92-4854-bbe0-de1404183ea8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4f6c147c9864bb994b09f95862e1077.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4f6c147c9864bb994b09f95862e1077.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4f6c147c9864bb994b09f95862e1077.jpg", "file_size": 86896, "is_delete": false, "file_type": 1, "original_file_name": "LJ2440#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f6c147c9864bb994b09f95862e1077.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f6c147c9864bb994b09f95862e1077.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f6c147c9864bb994b09f95862e1077.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4f6c147c9864bb994b09f95862e1077.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4f6c147c9864bb994b09f95862e1077.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnnD0lkue8EoFqNXGAe57cRI6ZA=", "createTime": "2024-08-15 14:47:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.010123+00 2025-12-09 10:15:01.010127+00 8806 LZ1241#下身2号色 SPMX-20240815303978 \N \N \N 1 \N [{"file_id": "8539b1d5-5c73-4764-b093-f847747aee23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34104886bcb84427b04a9459b818e844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34104886bcb84427b04a9459b818e844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34104886bcb84427b04a9459b818e844.jpg", "file_size": 19408, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34104886bcb84427b04a9459b818e844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34104886bcb84427b04a9459b818e844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34104886bcb84427b04a9459b818e844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34104886bcb84427b04a9459b818e844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34104886bcb84427b04a9459b818e844.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g59m9edygHF3Rf4kPFJBmVtCdU8=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.011648+00 2025-12-09 10:15:01.011652+00 8807 23-2113#A6前后片4XL SPMX-20240815303979 \N \N \N 1 \N [{"file_id": "0212e4d9-4e97-4245-b157-5f3cea58199b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b781ea8d617c4fc19f6ca9a67c41147e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b781ea8d617c4fc19f6ca9a67c41147e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b781ea8d617c4fc19f6ca9a67c41147e.jpg", "file_size": 11171, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b781ea8d617c4fc19f6ca9a67c41147e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b781ea8d617c4fc19f6ca9a67c41147e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b781ea8d617c4fc19f6ca9a67c41147e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b781ea8d617c4fc19f6ca9a67c41147e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b781ea8d617c4fc19f6ca9a67c41147e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--PhmAXpXJ6GtD1uymsq8jmc8rE=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.013154+00 2025-12-09 10:15:01.013158+00 8808 0003-3FWE#VS-D3龙潭调色 SPMX-20240815303971 \N \N \N 1 \N [{"file_id": "a8b3be0a-fa2e-4c48-9046-9fa910bc056e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "034a9477b4994c7fbd60d95d0e7c8a81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "034a9477b4994c7fbd60d95d0e7c8a81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "034a9477b4994c7fbd60d95d0e7c8a81.jpg", "file_size": 21147, "is_delete": false, "file_type": 1, "original_file_name": "0003-3FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034a9477b4994c7fbd60d95d0e7c8a81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034a9477b4994c7fbd60d95d0e7c8a81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034a9477b4994c7fbd60d95d0e7c8a81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/034a9477b4994c7fbd60d95d0e7c8a81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/034a9477b4994c7fbd60d95d0e7c8a81.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYZEeBXG03ca0ot5ayYWo4XrodU=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.01466+00 2025-12-09 10:15:01.014665+00 8809 FHXGPK-110-1 SPMX-20240815303974 \N \N \N 1 \N [{"file_id": "00384f5f-21b8-41e0-91af-a20e9e3817ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dca6a2bb72bf4112938e6c62d39a8931.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dca6a2bb72bf4112938e6c62d39a8931.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dca6a2bb72bf4112938e6c62d39a8931.jpg", "file_size": 32614, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-110-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6a2bb72bf4112938e6c62d39a8931.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6a2bb72bf4112938e6c62d39a8931.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6a2bb72bf4112938e6c62d39a8931.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dca6a2bb72bf4112938e6c62d39a8931.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dca6a2bb72bf4112938e6c62d39a8931.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2_vBh88v1RWyx7rwN9YKEmP51o=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.016191+00 2025-12-09 10:15:01.016196+00 8810 LJ2440#橙色 SPMX-20240815303981 \N \N \N 1 \N [{"file_id": "5e9a8e2b-b48a-4f57-ac7d-32ba0c1ca029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcaf0f8958984725b4d1bdd15d24fbc3.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcaf0f8958984725b4d1bdd15d24fbc3.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcaf0f8958984725b4d1bdd15d24fbc3.bmp", "file_size": 357894, "is_delete": false, "file_type": 1, "original_file_name": "LJ2440#橙色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcaf0f8958984725b4d1bdd15d24fbc3.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcaf0f8958984725b4d1bdd15d24fbc3.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcaf0f8958984725b4d1bdd15d24fbc3.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcaf0f8958984725b4d1bdd15d24fbc3.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcaf0f8958984725b4d1bdd15d24fbc3.bmp?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qPB3_0Xan2lQxzCUDkxAaX8xxbw=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.018064+00 2025-12-09 10:15:01.018069+00 8811 1071916#男3XL+女3XL+男L+女L+童4+童6+童8 SPMX-20240815303969 \N \N \N 1 \N [{"file_id": "8839bcae-44c1-4651-9319-b4ebeaa2ffea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e19265813af9405a89e334cefec14f01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e19265813af9405a89e334cefec14f01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e19265813af9405a89e334cefec14f01.jpg", "file_size": 23116, "is_delete": false, "file_type": 1, "original_file_name": "1071916#男3XL+女3XL+男L+女L+童4+童6+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19265813af9405a89e334cefec14f01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19265813af9405a89e334cefec14f01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19265813af9405a89e334cefec14f01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e19265813af9405a89e334cefec14f01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e19265813af9405a89e334cefec14f01.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iTYS_WcR5BfCL0XVAd62mbjGd4g=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.019601+00 2025-12-09 10:15:01.019606+00 8812 HT0101-66#WJC22 SPMX-20240815303977 \N \N \N 1 \N [{"file_id": "9e1440ac-ce36-4209-8568-f8f192ca8224", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d61a8002413140bab0577da10dd7fede.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d61a8002413140bab0577da10dd7fede.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d61a8002413140bab0577da10dd7fede.jpg", "file_size": 7472, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-66#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61a8002413140bab0577da10dd7fede.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61a8002413140bab0577da10dd7fede.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61a8002413140bab0577da10dd7fede.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d61a8002413140bab0577da10dd7fede.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d61a8002413140bab0577da10dd7fede.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_NgoSEUad2ah_aJjU_vNFsocIU=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.021152+00 2025-12-09 10:15:01.021156+00 8813 DL30435#批布彩兰 SPMX-20240815303976 \N \N \N 1 \N [{"file_id": "f76dca91-4ad8-4ba5-9a9b-933a6f99be84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd2d9a30fe134cab824abdfa052de1cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd2d9a30fe134cab824abdfa052de1cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd2d9a30fe134cab824abdfa052de1cd.jpg", "file_size": 21709, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2d9a30fe134cab824abdfa052de1cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2d9a30fe134cab824abdfa052de1cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2d9a30fe134cab824abdfa052de1cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd2d9a30fe134cab824abdfa052de1cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd2d9a30fe134cab824abdfa052de1cd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9FFUN3JVlJ6aqyKo6AK1SG6lJA=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.022654+00 2025-12-09 10:15:01.022658+00 8814 0003-3FWF#紫色 SPMX-20240815303980 \N \N \N 1 \N [{"file_id": "46142e41-b42c-4eef-9a02-3931cd85c8a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee87d7d7bff0409d80a24e1d97700ff8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee87d7d7bff0409d80a24e1d97700ff8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee87d7d7bff0409d80a24e1d97700ff8.jpg", "file_size": 14468, "is_delete": false, "file_type": 1, "original_file_name": "0003-3FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87d7d7bff0409d80a24e1d97700ff8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87d7d7bff0409d80a24e1d97700ff8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee87d7d7bff0409d80a24e1d97700ff8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee87d7d7bff0409d80a24e1d97700ff8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee87d7d7bff0409d80a24e1d97700ff8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akwjDZIWleVqskavT3xxskVsOis=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.02419+00 2025-12-09 10:15:01.024194+00 8815 C338FWE#S番禺调色 SPMX-20240815303972 \N \N \N 1 \N [{"file_id": "bf81d6bf-489a-4d8c-b874-53296e9aa4bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9df9b5f50fa3448ba346c7084189b24a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9df9b5f50fa3448ba346c7084189b24a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9df9b5f50fa3448ba346c7084189b24a.jpg", "file_size": 22059, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#S番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df9b5f50fa3448ba346c7084189b24a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df9b5f50fa3448ba346c7084189b24a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9df9b5f50fa3448ba346c7084189b24a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9df9b5f50fa3448ba346c7084189b24a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9df9b5f50fa3448ba346c7084189b24a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XHnBIk1LVMVyJecAeUUE1Lv4nuE=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.025699+00 2025-12-09 10:15:01.025706+00 8816 23-2113#A6前后片3XL SPMX-20240815303970 \N \N \N 1 \N [{"file_id": "55cba8f8-196d-45f4-b694-45f20221e3ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "634f043007a04ddc9dbb44fbcb0e3cb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "634f043007a04ddc9dbb44fbcb0e3cb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "634f043007a04ddc9dbb44fbcb0e3cb0.jpg", "file_size": 11082, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634f043007a04ddc9dbb44fbcb0e3cb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634f043007a04ddc9dbb44fbcb0e3cb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634f043007a04ddc9dbb44fbcb0e3cb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/634f043007a04ddc9dbb44fbcb0e3cb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/634f043007a04ddc9dbb44fbcb0e3cb0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OJ-DzsdoAu52kTLA4xSZg7kHwU=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.027224+00 2025-12-09 10:15:01.027228+00 8817 80320#小童 SPMX-20240815303975 \N \N \N 1 \N [{"file_id": "75eb2dbb-59ad-475d-9841-afe627ce11bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "203a491d53c44e21a4c258fee07d30ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "203a491d53c44e21a4c258fee07d30ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "203a491d53c44e21a4c258fee07d30ae.jpg", "file_size": 24105, "is_delete": false, "file_type": 1, "original_file_name": "80320#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203a491d53c44e21a4c258fee07d30ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203a491d53c44e21a4c258fee07d30ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203a491d53c44e21a4c258fee07d30ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/203a491d53c44e21a4c258fee07d30ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/203a491d53c44e21a4c258fee07d30ae.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmwz_s3T3gJjcuiuutSfRgEV08E=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.029555+00 2025-12-09 10:15:01.029561+00 8818 JTSS065FW#VS-D3 SPMX-20240815303973 \N \N \N 1 \N [{"file_id": "44915ae9-b8a8-4ed2-822c-377aed022ea5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ba92be4f32a4c508964357a9b9d6c54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ba92be4f32a4c508964357a9b9d6c54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ba92be4f32a4c508964357a9b9d6c54.jpg", "file_size": 12964, "is_delete": false, "file_type": 1, "original_file_name": "JTSS065FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba92be4f32a4c508964357a9b9d6c54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba92be4f32a4c508964357a9b9d6c54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ba92be4f32a4c508964357a9b9d6c54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ba92be4f32a4c508964357a9b9d6c54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ba92be4f32a4c508964357a9b9d6c54.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPKOoOr5ATqLrcPkm987_PUrpR8=", "createTime": "2024-08-15 14:47:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.03206+00 2025-12-09 10:15:01.032065+00 8819 JTSS066#VS-D3 SPMX-20240815303982 \N \N \N 1 \N [{"file_id": "f257a184-9b35-4e0c-838d-60b92a740308", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbcb212dc95f4541beebaef509f09fd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbcb212dc95f4541beebaef509f09fd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbcb212dc95f4541beebaef509f09fd6.jpg", "file_size": 8020, "is_delete": false, "file_type": 1, "original_file_name": "JTSS066#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbcb212dc95f4541beebaef509f09fd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbcb212dc95f4541beebaef509f09fd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbcb212dc95f4541beebaef509f09fd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbcb212dc95f4541beebaef509f09fd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbcb212dc95f4541beebaef509f09fd6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWSfpxpldUZ2RQ5apT8EsE0iWLw=", "createTime": "2024-08-15 14:47:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.034507+00 2025-12-09 10:15:01.034512+00 8820 1071916#男XL+女XL+男M+女M+童12+童14 SPMX-20240815303984 \N \N \N 1 \N [{"file_id": "61a42a7f-a666-4e15-a91f-2abcc15286f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23a7873bf9ef4e3ba14cb567caa1e503.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23a7873bf9ef4e3ba14cb567caa1e503.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23a7873bf9ef4e3ba14cb567caa1e503.jpg", "file_size": 22238, "is_delete": false, "file_type": 1, "original_file_name": "1071916#男XL+女XL+男M+女M+童12+童14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a7873bf9ef4e3ba14cb567caa1e503.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a7873bf9ef4e3ba14cb567caa1e503.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a7873bf9ef4e3ba14cb567caa1e503.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23a7873bf9ef4e3ba14cb567caa1e503.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23a7873bf9ef4e3ba14cb567caa1e503.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lK4vjpTbh_dPqfy5X06gtukKTX0=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.037041+00 2025-12-09 10:15:01.03705+00 8821 C338FWE#XL SPMX-20240815303985 \N \N \N 1 \N [{"file_id": "4fa75759-f733-4d6b-9e90-b0d70d774eaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da544b613dce411b93059488a4b48428.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da544b613dce411b93059488a4b48428.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da544b613dce411b93059488a4b48428.jpg", "file_size": 20270, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da544b613dce411b93059488a4b48428.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da544b613dce411b93059488a4b48428.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da544b613dce411b93059488a4b48428.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da544b613dce411b93059488a4b48428.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da544b613dce411b93059488a4b48428.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjrMhxOmGGxGT2KpxcD2jgZS7Y0=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.03932+00 2025-12-09 10:15:01.039325+00 8822 80320#裤子 SPMX-20240815303983 \N \N \N 1 \N [{"file_id": "6c4d3b97-b63e-404b-97fb-3db1c9aa4f66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "841b8d1e38714dbbbe677e317ae73518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "841b8d1e38714dbbbe677e317ae73518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "841b8d1e38714dbbbe677e317ae73518.jpg", "file_size": 15764, "is_delete": false, "file_type": 1, "original_file_name": "80320#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841b8d1e38714dbbbe677e317ae73518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841b8d1e38714dbbbe677e317ae73518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841b8d1e38714dbbbe677e317ae73518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/841b8d1e38714dbbbe677e317ae73518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/841b8d1e38714dbbbe677e317ae73518.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I33gc4svr8LiESSs33ud528_8Hc=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.041865+00 2025-12-09 10:15:01.041869+00 8823 LZ1241#下身3号色 SPMX-20240815303991 \N \N \N 1 \N [{"file_id": "edd608dd-e233-426f-8251-3ee8f46284a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dbb395e99104ec5a4a511f4ddbce7ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dbb395e99104ec5a4a511f4ddbce7ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dbb395e99104ec5a4a511f4ddbce7ca.jpg", "file_size": 17390, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbb395e99104ec5a4a511f4ddbce7ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbb395e99104ec5a4a511f4ddbce7ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dbb395e99104ec5a4a511f4ddbce7ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dbb395e99104ec5a4a511f4ddbce7ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dbb395e99104ec5a4a511f4ddbce7ca.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEF-GZiJAU5c1PqCNmo8-ahS7_o=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.044016+00 2025-12-09 10:15:01.044021+00 8824 0003-3FWF#蓝色 SPMX-20240815303987 \N \N \N 1 \N [{"file_id": "c8aca1d8-279f-4a55-907a-9ca0f2aaf387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f746f5e4c4b142d2a3a73d06332bb6ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f746f5e4c4b142d2a3a73d06332bb6ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f746f5e4c4b142d2a3a73d06332bb6ba.jpg", "file_size": 13333, "is_delete": false, "file_type": 1, "original_file_name": "0003-3FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f5e4c4b142d2a3a73d06332bb6ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f5e4c4b142d2a3a73d06332bb6ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f746f5e4c4b142d2a3a73d06332bb6ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f746f5e4c4b142d2a3a73d06332bb6ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f746f5e4c4b142d2a3a73d06332bb6ba.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bg33iM0-24ZHTNgpEKpK5jB39Ck=", "createTime": "2024-08-15 14:47:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.045847+00 2025-12-09 10:15:01.045851+00 8825 JTSS066FW#VS-D3 SPMX-20240815303990 \N \N \N 1 \N [{"file_id": "ba50b5aa-2807-47b4-bebc-694751ed28d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e696da4311db482b90414ccbf68f1598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e696da4311db482b90414ccbf68f1598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e696da4311db482b90414ccbf68f1598.jpg", "file_size": 12777, "is_delete": false, "file_type": 1, "original_file_name": "JTSS066FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e696da4311db482b90414ccbf68f1598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e696da4311db482b90414ccbf68f1598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e696da4311db482b90414ccbf68f1598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e696da4311db482b90414ccbf68f1598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e696da4311db482b90414ccbf68f1598.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGUSk6aV9mPkW3d1buPAopmw7dY=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.047655+00 2025-12-09 10:15:01.04766+00 8826 HT0101-68#WJC22 SPMX-20240815304000 \N \N \N 1 \N [{"file_id": "bb08aed4-acfb-46cd-8540-a9c0f53e8652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db4e61f1db654cd4bcab6f841febecd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db4e61f1db654cd4bcab6f841febecd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db4e61f1db654cd4bcab6f841febecd8.jpg", "file_size": 15747, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-68#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4e61f1db654cd4bcab6f841febecd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4e61f1db654cd4bcab6f841febecd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4e61f1db654cd4bcab6f841febecd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db4e61f1db654cd4bcab6f841febecd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db4e61f1db654cd4bcab6f841febecd8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C67E2SLZvUrLGKwAOmEzINHQK1w=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.04959+00 2025-12-09 10:15:01.049595+00 8827 FHXGPK-111-1 SPMX-20240815303986 \N \N \N 1 \N [{"file_id": "6f25b489-aaf8-4fd4-a58d-f37b770f2337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141d7fc229804e458837063f7ac7159c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141d7fc229804e458837063f7ac7159c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141d7fc229804e458837063f7ac7159c.jpg", "file_size": 27938, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-111-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141d7fc229804e458837063f7ac7159c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141d7fc229804e458837063f7ac7159c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141d7fc229804e458837063f7ac7159c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141d7fc229804e458837063f7ac7159c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141d7fc229804e458837063f7ac7159c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvwqyPjsnCNQq7IDZxnXpuj8uUc=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.051672+00 2025-12-09 10:15:01.051676+00 8828 DL30435#批布枣红 SPMX-20240815303992 \N \N \N 1 \N [{"file_id": "2dc66e47-5f0c-44c4-9af1-46b1ff6b052c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a352f16450d42a3825bc334e3095785.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a352f16450d42a3825bc334e3095785.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a352f16450d42a3825bc334e3095785.jpg", "file_size": 20541, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a352f16450d42a3825bc334e3095785.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a352f16450d42a3825bc334e3095785.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a352f16450d42a3825bc334e3095785.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a352f16450d42a3825bc334e3095785.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a352f16450d42a3825bc334e3095785.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgwRbqnuUMzEB_AY-xUKiB3dvi0=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.053201+00 2025-12-09 10:15:01.053205+00 8829 0003-400#WJC22 SPMX-20240815303999 \N \N \N 1 \N [{"file_id": "0e5497cb-f24f-4f7a-9ef5-58a5ac4ba1db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fdb8327e0b048339a190f7dafed84e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fdb8327e0b048339a190f7dafed84e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fdb8327e0b048339a190f7dafed84e9.jpg", "file_size": 19266, "is_delete": false, "file_type": 1, "original_file_name": "0003-400#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb8327e0b048339a190f7dafed84e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb8327e0b048339a190f7dafed84e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fdb8327e0b048339a190f7dafed84e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fdb8327e0b048339a190f7dafed84e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fdb8327e0b048339a190f7dafed84e9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kx607jXbeHOEHCjZASDze_meWV0=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.054724+00 2025-12-09 10:15:01.054727+00 8830 80321#上衣 SPMX-20240815303995 \N \N \N 1 \N [{"file_id": "7d51aad9-76a4-49c5-8106-977638d8dafb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de29d283007433d92a9e78c84957d12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de29d283007433d92a9e78c84957d12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de29d283007433d92a9e78c84957d12.jpg", "file_size": 19846, "is_delete": false, "file_type": 1, "original_file_name": "80321#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de29d283007433d92a9e78c84957d12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de29d283007433d92a9e78c84957d12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de29d283007433d92a9e78c84957d12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de29d283007433d92a9e78c84957d12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de29d283007433d92a9e78c84957d12.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zttlXju5HZI9GuLYXcrLky9ncSs=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.056216+00 2025-12-09 10:15:01.056221+00 8831 23-2113#A6袖子4XL SPMX-20240815303998 \N \N \N 1 \N [{"file_id": "2a885f3f-dff5-45f7-b5b7-45d69e902b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2359a639e374aeba67b20882c144491.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2359a639e374aeba67b20882c144491.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2359a639e374aeba67b20882c144491.jpg", "file_size": 10679, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2359a639e374aeba67b20882c144491.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2359a639e374aeba67b20882c144491.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2359a639e374aeba67b20882c144491.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2359a639e374aeba67b20882c144491.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2359a639e374aeba67b20882c144491.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubsL4T-SWyjxJ6GFEltdqembH-c=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.05775+00 2025-12-09 10:15:01.057754+00 8832 1071916#童4+童8 SPMX-20240815303994 \N \N \N 1 \N [{"file_id": "ba5fbc9f-05ec-4b26-bd7c-933d466c25d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abfb45d70ee543ceb8d4ce089e80485f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abfb45d70ee543ceb8d4ce089e80485f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abfb45d70ee543ceb8d4ce089e80485f.jpg", "file_size": 18026, "is_delete": false, "file_type": 1, "original_file_name": "1071916#童4+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfb45d70ee543ceb8d4ce089e80485f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfb45d70ee543ceb8d4ce089e80485f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfb45d70ee543ceb8d4ce089e80485f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abfb45d70ee543ceb8d4ce089e80485f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abfb45d70ee543ceb8d4ce089e80485f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2VLuOVsQgBNb58_pGQ2q0eCBqN4=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.059303+00 2025-12-09 10:15:01.059308+00 8833 HT0101-67#WJC22 SPMX-20240815303988 \N \N \N 1 \N [{"file_id": "ce497112-7d68-4a71-911c-8d1a0e718cb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d2e38833da149fbb7fec325bf7889f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d2e38833da149fbb7fec325bf7889f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d2e38833da149fbb7fec325bf7889f1.jpg", "file_size": 10461, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-67#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2e38833da149fbb7fec325bf7889f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2e38833da149fbb7fec325bf7889f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2e38833da149fbb7fec325bf7889f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d2e38833da149fbb7fec325bf7889f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d2e38833da149fbb7fec325bf7889f1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXs3VG958oE7adIDud_7XjX42CM=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.060936+00 2025-12-09 10:15:01.06094+00 8834 LJ2462#LWQ15 SPMX-20240815303993 \N \N \N 1 \N [{"file_id": "6d910235-9290-44fe-95f8-52cfda5722f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e76bad8ccb4075a1cf278d5bd164ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e76bad8ccb4075a1cf278d5bd164ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e76bad8ccb4075a1cf278d5bd164ac.jpg", "file_size": 11781, "is_delete": false, "file_type": 1, "original_file_name": "LJ2462#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e76bad8ccb4075a1cf278d5bd164ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e76bad8ccb4075a1cf278d5bd164ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e76bad8ccb4075a1cf278d5bd164ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e76bad8ccb4075a1cf278d5bd164ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e76bad8ccb4075a1cf278d5bd164ac.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxqNEyk5TbLUyqf3IogfEVl-v6E=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.062599+00 2025-12-09 10:15:01.062603+00 8835 C338FWE#XL番禺调色 SPMX-20240815303996 \N \N \N 1 \N [{"file_id": "38365d04-c328-4378-a2ac-cae92d605761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7356faabcb14be0b136e671e8d77dad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7356faabcb14be0b136e671e8d77dad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7356faabcb14be0b136e671e8d77dad.jpg", "file_size": 20585, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7356faabcb14be0b136e671e8d77dad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7356faabcb14be0b136e671e8d77dad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7356faabcb14be0b136e671e8d77dad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7356faabcb14be0b136e671e8d77dad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7356faabcb14be0b136e671e8d77dad.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU3qynhVfK_HrwWvJtG956DjTAo=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.064429+00 2025-12-09 10:15:01.064433+00 8836 FHXGPK-112-1 SPMX-20240815303997 \N \N \N 1 \N [{"file_id": "9c74033d-e09a-467c-af23-281aa4238ba0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "470ba257638f4d26bad74d595f7f2d59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "470ba257638f4d26bad74d595f7f2d59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "470ba257638f4d26bad74d595f7f2d59.jpg", "file_size": 38282, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-112-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470ba257638f4d26bad74d595f7f2d59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470ba257638f4d26bad74d595f7f2d59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470ba257638f4d26bad74d595f7f2d59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/470ba257638f4d26bad74d595f7f2d59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/470ba257638f4d26bad74d595f7f2d59.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-V1NUYNgQaa9ZHOg4iHHPvdZcg=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.066073+00 2025-12-09 10:15:01.066079+00 8837 23-2113#A6袖子3XL SPMX-20240815303989 \N \N \N 1 \N [{"file_id": "9205618c-1d97-4db7-b0e7-3a063d8e59e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7774ed2a8bd543a894784ec21ebc36a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7774ed2a8bd543a894784ec21ebc36a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7774ed2a8bd543a894784ec21ebc36a4.jpg", "file_size": 9933, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7774ed2a8bd543a894784ec21ebc36a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7774ed2a8bd543a894784ec21ebc36a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7774ed2a8bd543a894784ec21ebc36a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7774ed2a8bd543a894784ec21ebc36a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7774ed2a8bd543a894784ec21ebc36a4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFiNzrYdlJcliOME9A_f2TCezlg=", "createTime": "2024-08-15 14:47:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.067689+00 2025-12-09 10:15:01.067693+00 8838 1071916#蓝色 SPMX-20240815304001 \N \N \N 1 \N [{"file_id": "adb73986-8615-444c-83d1-3e2459141603", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d157103c88994b7d86ddcd02a23786b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d157103c88994b7d86ddcd02a23786b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d157103c88994b7d86ddcd02a23786b4.jpg", "file_size": 6301, "is_delete": false, "file_type": 1, "original_file_name": "1071916#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d157103c88994b7d86ddcd02a23786b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d157103c88994b7d86ddcd02a23786b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d157103c88994b7d86ddcd02a23786b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d157103c88994b7d86ddcd02a23786b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d157103c88994b7d86ddcd02a23786b4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aWu9PbMO0xyx8jPYoblRhRt8CyQ=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.069498+00 2025-12-09 10:15:01.069503+00 8839 80321#中童 SPMX-20240815304003 \N \N \N 1 \N [{"file_id": "74149e5e-9e45-4526-8a67-87ad88c2e93a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg", "file_size": 29651, "is_delete": false, "file_type": 1, "original_file_name": "80321#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0b8e39e4fce4ef8ae5a24fee7fa8c2b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7lh5j-4CXHRfgMhUKtnmkjYrWc=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.071055+00 2025-12-09 10:15:01.07106+00 8840 FHXGPK-113-1 SPMX-20240815304009 \N \N \N 1 \N [{"file_id": "7499409a-40e0-4e87-b66c-d1fb24527551", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc6f61e5b96b4d078a4d393bed57c378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc6f61e5b96b4d078a4d393bed57c378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc6f61e5b96b4d078a4d393bed57c378.jpg", "file_size": 20717, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-113-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6f61e5b96b4d078a4d393bed57c378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6f61e5b96b4d078a4d393bed57c378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6f61e5b96b4d078a4d393bed57c378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc6f61e5b96b4d078a4d393bed57c378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc6f61e5b96b4d078a4d393bed57c378.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c-667c9tVLtgAGl9bd2NAR2NgIg=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.072609+00 2025-12-09 10:15:01.072614+00 8841 C338FWE#裤子L SPMX-20240815304007 \N \N \N 1 \N [{"file_id": "c09b6873-9fd1-478c-b238-1744a90fb601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3088783a553b4a89b9a7b01909cc4359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3088783a553b4a89b9a7b01909cc4359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3088783a553b4a89b9a7b01909cc4359.jpg", "file_size": 16270, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#裤子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3088783a553b4a89b9a7b01909cc4359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3088783a553b4a89b9a7b01909cc4359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3088783a553b4a89b9a7b01909cc4359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3088783a553b4a89b9a7b01909cc4359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3088783a553b4a89b9a7b01909cc4359.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9h0fzKHQsWLG8B2z96QHLWXFuM=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.07415+00 2025-12-09 10:15:01.074154+00 8842 23-2113#A6领口通用 SPMX-20240815304010 \N \N \N 1 \N [{"file_id": "6a3f0b5c-b245-44c3-b28a-8d9cbedd8738", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da7f82cc69a2402eb7ef01941c57794c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da7f82cc69a2402eb7ef01941c57794c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da7f82cc69a2402eb7ef01941c57794c.jpg", "file_size": 8191, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da7f82cc69a2402eb7ef01941c57794c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da7f82cc69a2402eb7ef01941c57794c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da7f82cc69a2402eb7ef01941c57794c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da7f82cc69a2402eb7ef01941c57794c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da7f82cc69a2402eb7ef01941c57794c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nPVN5qVXGzBBWSu5DZP-9qqIok=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.075767+00 2025-12-09 10:15:01.075783+00 8843 LZ1241#下身4号色 SPMX-20240815304002 \N \N \N 1 \N [{"file_id": "6724f7ab-d450-46ae-8275-51329fcfcc01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f256c3fef0174d1daf944b9d885ad5ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f256c3fef0174d1daf944b9d885ad5ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f256c3fef0174d1daf944b9d885ad5ba.jpg", "file_size": 16582, "is_delete": false, "file_type": 1, "original_file_name": "LZ1241#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f256c3fef0174d1daf944b9d885ad5ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f256c3fef0174d1daf944b9d885ad5ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f256c3fef0174d1daf944b9d885ad5ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f256c3fef0174d1daf944b9d885ad5ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f256c3fef0174d1daf944b9d885ad5ba.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ldyaYDhh8qyRAXCb3gGb90SuSA=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.077742+00 2025-12-09 10:15:01.077747+00 8844 HT0101-69#WJC22 SPMX-20240815304008 \N \N \N 1 \N [{"file_id": "0302e760-7bad-4e75-aab9-1a7231e88f2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32708a832521490c9ecc600bd9857602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32708a832521490c9ecc600bd9857602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32708a832521490c9ecc600bd9857602.jpg", "file_size": 10361, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-69#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32708a832521490c9ecc600bd9857602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32708a832521490c9ecc600bd9857602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32708a832521490c9ecc600bd9857602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32708a832521490c9ecc600bd9857602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32708a832521490c9ecc600bd9857602.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MbDdeTT0UWJqSKjmEkfmIGAEwM=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.079458+00 2025-12-09 10:15:01.079463+00 8845 0003-401# SPMX-20240815304011 \N \N \N 1 \N [{"file_id": "da49c935-f0e5-46e7-8f8e-d9ff408e001e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbc1c7fa3569499996d04b7b8efb1bfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbc1c7fa3569499996d04b7b8efb1bfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbc1c7fa3569499996d04b7b8efb1bfa.jpg", "file_size": 18273, "is_delete": false, "file_type": 1, "original_file_name": "0003-401#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc1c7fa3569499996d04b7b8efb1bfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc1c7fa3569499996d04b7b8efb1bfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc1c7fa3569499996d04b7b8efb1bfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbc1c7fa3569499996d04b7b8efb1bfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbc1c7fa3569499996d04b7b8efb1bfa.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TnGAi6tMVhDEeTqrXR_2pYFT1-Y=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.081091+00 2025-12-09 10:15:01.081095+00 8846 LJ3110#WJC22 SPMX-20240815304004 \N \N \N 1 \N [{"file_id": "ab92f8b3-185c-4480-bc89-9c51afae0e89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c605f5638a0b49cea7e46729daa75792.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c605f5638a0b49cea7e46729daa75792.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c605f5638a0b49cea7e46729daa75792.jpg", "file_size": 19007, "is_delete": false, "file_type": 1, "original_file_name": "LJ3110#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605f5638a0b49cea7e46729daa75792.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605f5638a0b49cea7e46729daa75792.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c605f5638a0b49cea7e46729daa75792.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c605f5638a0b49cea7e46729daa75792.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c605f5638a0b49cea7e46729daa75792.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0XIasprj_QW7pCS7xswUPTWHVc=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.099979+00 2025-12-09 10:15:01.099983+00 8856 LJ3112#WJC22 SPMX-20240815304025 \N \N \N 1 \N [{"file_id": "ea705d90-cf67-4208-880c-43759b3c7a4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a015b589c92740ac97b7f2c06c603865.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a015b589c92740ac97b7f2c06c603865.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a015b589c92740ac97b7f2c06c603865.jpg", "file_size": 18715, "is_delete": false, "file_type": 1, "original_file_name": "LJ3112#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a015b589c92740ac97b7f2c06c603865.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a015b589c92740ac97b7f2c06c603865.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a015b589c92740ac97b7f2c06c603865.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a015b589c92740ac97b7f2c06c603865.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a015b589c92740ac97b7f2c06c603865.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQU0snLUqDWowIRhXBlLgsiiHMg=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.082889+00 2025-12-09 10:15:01.082894+00 8847 DL30435#批布浅粉 SPMX-20240815304006 \N \N \N 1 \N [{"file_id": "c2db25e1-c36a-4ab1-980b-da4517d78c88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg", "file_size": 17188, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b83d9cc9e6d54ea391bf1c1d900c8ffa.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wX6_UZ8KAtNEjoYcaC1un4gmEM=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.084877+00 2025-12-09 10:15:01.084882+00 8848 JTSS067#VS-D3 SPMX-20240815304005 \N \N \N 1 \N [{"file_id": "93f3c455-1a94-4cd6-bb7d-a6b21de29b3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb9a0e765b1b41cabc8e5b0730434a0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb9a0e765b1b41cabc8e5b0730434a0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb9a0e765b1b41cabc8e5b0730434a0a.jpg", "file_size": 12896, "is_delete": false, "file_type": 1, "original_file_name": "JTSS067#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9a0e765b1b41cabc8e5b0730434a0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9a0e765b1b41cabc8e5b0730434a0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9a0e765b1b41cabc8e5b0730434a0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb9a0e765b1b41cabc8e5b0730434a0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb9a0e765b1b41cabc8e5b0730434a0a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-L8GGKFYSFnrWkbTEmj26MPRcI=", "createTime": "2024-08-15 14:47:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.086745+00 2025-12-09 10:15:01.08675+00 8849 80321#匹布 SPMX-20240815304012 \N \N \N 1 \N [{"file_id": "6c9bcca1-d81b-4d35-abcc-8000a38c8851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7195d47839f4f42ba464ff33ecaa948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7195d47839f4f42ba464ff33ecaa948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7195d47839f4f42ba464ff33ecaa948.jpg", "file_size": 24070, "is_delete": false, "file_type": 1, "original_file_name": "80321#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7195d47839f4f42ba464ff33ecaa948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7195d47839f4f42ba464ff33ecaa948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7195d47839f4f42ba464ff33ecaa948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7195d47839f4f42ba464ff33ecaa948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7195d47839f4f42ba464ff33ecaa948.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:emuFeo_wSCt5EhBGtWuhPeoX0sM=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.088739+00 2025-12-09 10:15:01.088744+00 8850 HT0101-7#WJC22 SPMX-20240815304019 \N \N \N 1 \N [{"file_id": "98419602-058a-4ce2-b1fa-bd4940f7e85a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b856893e39f44afb8d7dd0460954599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b856893e39f44afb8d7dd0460954599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b856893e39f44afb8d7dd0460954599.jpg", "file_size": 9783, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-7#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b856893e39f44afb8d7dd0460954599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b856893e39f44afb8d7dd0460954599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b856893e39f44afb8d7dd0460954599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b856893e39f44afb8d7dd0460954599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b856893e39f44afb8d7dd0460954599.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6K5LsaQtKVUafziXxHBIVeYtvY=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.090727+00 2025-12-09 10:15:01.090732+00 8851 FHXGPK-114-1 SPMX-20240815304020 \N \N \N 1 \N [{"file_id": "d719cd0e-f191-4513-8d5d-76e33fd20620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14c672ac9f14071ba021e2a542418e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14c672ac9f14071ba021e2a542418e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14c672ac9f14071ba021e2a542418e5.jpg", "file_size": 29398, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-114-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c672ac9f14071ba021e2a542418e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c672ac9f14071ba021e2a542418e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c672ac9f14071ba021e2a542418e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14c672ac9f14071ba021e2a542418e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14c672ac9f14071ba021e2a542418e5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIT6f3BNFUBXQ53tDfTC3aSJDd0=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.092728+00 2025-12-09 10:15:01.092733+00 8852 LZ1242#上身2号色 SPMX-20240815304028 \N \N \N 1 \N [{"file_id": "c2c403fd-25d2-4f20-aeca-975f2f972733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00faacc7785e4f748a9385895feaadf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00faacc7785e4f748a9385895feaadf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00faacc7785e4f748a9385895feaadf7.jpg", "file_size": 17333, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00faacc7785e4f748a9385895feaadf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00faacc7785e4f748a9385895feaadf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00faacc7785e4f748a9385895feaadf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00faacc7785e4f748a9385895feaadf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00faacc7785e4f748a9385895feaadf7.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vBpwOtHcG4HrPGDw6HbrpiXGrX0=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.09476+00 2025-12-09 10:15:01.094765+00 8853 0003-402#WJC22 SPMX-20240815304021 \N \N \N 1 \N [{"file_id": "958e4e7e-4a96-4601-9cf3-6302de6147c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "908ec29f6f824459a43b77baca5c0c91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "908ec29f6f824459a43b77baca5c0c91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "908ec29f6f824459a43b77baca5c0c91.jpg", "file_size": 18046, "is_delete": false, "file_type": 1, "original_file_name": "0003-402#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ec29f6f824459a43b77baca5c0c91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ec29f6f824459a43b77baca5c0c91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ec29f6f824459a43b77baca5c0c91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/908ec29f6f824459a43b77baca5c0c91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/908ec29f6f824459a43b77baca5c0c91.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGaLnEGWTWwdCe94ZJKNRhqFaQY=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.096781+00 2025-12-09 10:15:01.096786+00 8854 1072FWF#中国红-V5曲线 SPMX-20240815304024 \N \N \N 1 \N [{"file_id": "655be471-86e9-4fe1-aeac-9e991411784f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c39ab6b31d4682ad362c53e594d837.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c39ab6b31d4682ad362c53e594d837.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c39ab6b31d4682ad362c53e594d837.jpg", "file_size": 10218, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#中国红-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c39ab6b31d4682ad362c53e594d837.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c39ab6b31d4682ad362c53e594d837.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c39ab6b31d4682ad362c53e594d837.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c39ab6b31d4682ad362c53e594d837.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c39ab6b31d4682ad362c53e594d837.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ao25Vmj5CaA0oITSocu1x1pGisA=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.098416+00 2025-12-09 10:15:01.098421+00 8855 23-2113#A6领子通用 SPMX-20240815304022 \N \N \N 1 \N [{"file_id": "abc462d6-6852-47c2-9d3b-b02ff4d11295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05c2cfde09e7433c9cff63940b26fc3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05c2cfde09e7433c9cff63940b26fc3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05c2cfde09e7433c9cff63940b26fc3c.jpg", "file_size": 10340, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A6领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c2cfde09e7433c9cff63940b26fc3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c2cfde09e7433c9cff63940b26fc3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c2cfde09e7433c9cff63940b26fc3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05c2cfde09e7433c9cff63940b26fc3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05c2cfde09e7433c9cff63940b26fc3c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFOG1zChx2WlfQJptRj1gWvcDzo=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.101771+00 2025-12-09 10:15:01.101776+00 8857 JTSS067#VS-D3黄 SPMX-20240815304027 \N \N \N 1 \N [{"file_id": "8ddae85e-7d3c-41d8-89b1-30675b9a0494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05700aa716a4486e9ccaa1ce420fbf1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05700aa716a4486e9ccaa1ce420fbf1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05700aa716a4486e9ccaa1ce420fbf1a.jpg", "file_size": 12620, "is_delete": false, "file_type": 1, "original_file_name": "JTSS067#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05700aa716a4486e9ccaa1ce420fbf1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05700aa716a4486e9ccaa1ce420fbf1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05700aa716a4486e9ccaa1ce420fbf1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05700aa716a4486e9ccaa1ce420fbf1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05700aa716a4486e9ccaa1ce420fbf1a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DQzzaIIvQtSIrPztwRE8SC6pQw=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.103345+00 2025-12-09 10:15:01.103349+00 8858 JTSS067#VS-D3蓝 SPMX-20240815304016 \N \N \N 1 \N [{"file_id": "8b92ea72-e078-428a-ad8f-9c3f78249d0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a48e0ae9ac4adba0a29776ebf1ab1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a48e0ae9ac4adba0a29776ebf1ab1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a48e0ae9ac4adba0a29776ebf1ab1e.jpg", "file_size": 10703, "is_delete": false, "file_type": 1, "original_file_name": "JTSS067#VS-D3蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a48e0ae9ac4adba0a29776ebf1ab1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a48e0ae9ac4adba0a29776ebf1ab1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a48e0ae9ac4adba0a29776ebf1ab1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a48e0ae9ac4adba0a29776ebf1ab1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a48e0ae9ac4adba0a29776ebf1ab1e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGaEob342idQvOklULd7K4ivpts=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.104942+00 2025-12-09 10:15:01.104947+00 8859 DL30435#批布蓝绿 SPMX-20240815304017 \N \N \N 1 \N [{"file_id": "e597d140-9672-4b8c-9ded-ab4f0aeed2d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg", "file_size": 20100, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c08b8b8d2f4e4c57ad71f55e1e7a4647.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GfD3DlEYUpJsVUqE3xx22uAJ1ho=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.106906+00 2025-12-09 10:15:01.106911+00 8860 80321#小童 SPMX-20240815304023 \N \N \N 1 \N [{"file_id": "06e5a413-1a08-4f92-9ea5-416d58953b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80800b0a36da42da85c9855847b0b5e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80800b0a36da42da85c9855847b0b5e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80800b0a36da42da85c9855847b0b5e5.jpg", "file_size": 31019, "is_delete": false, "file_type": 1, "original_file_name": "80321#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80800b0a36da42da85c9855847b0b5e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80800b0a36da42da85c9855847b0b5e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80800b0a36da42da85c9855847b0b5e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80800b0a36da42da85c9855847b0b5e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80800b0a36da42da85c9855847b0b5e5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiOhR2TGEfsugGhGToCTAk5GpDU=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.108847+00 2025-12-09 10:15:01.108852+00 8861 LZ1242#上身1号色 SPMX-20240815304014 \N \N \N 1 \N [{"file_id": "60b8a552-177a-46da-83fe-c855f6e2ef5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f427b4b03649474984aceaca972716bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f427b4b03649474984aceaca972716bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f427b4b03649474984aceaca972716bc.jpg", "file_size": 17949, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f427b4b03649474984aceaca972716bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f427b4b03649474984aceaca972716bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f427b4b03649474984aceaca972716bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f427b4b03649474984aceaca972716bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f427b4b03649474984aceaca972716bc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JbZ8xrYvFYi9yequi7N3EPgXoeY=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.110493+00 2025-12-09 10:15:01.110498+00 8862 LJ3111#VS-D3 SPMX-20240815304015 \N \N \N 1 \N [{"file_id": "75f3ea6d-5e75-4e0d-aa2d-03a1161aadae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ea8b945307d4e7e9a68d27c413751f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ea8b945307d4e7e9a68d27c413751f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ea8b945307d4e7e9a68d27c413751f1.jpg", "file_size": 20534, "is_delete": false, "file_type": 1, "original_file_name": "LJ3111#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea8b945307d4e7e9a68d27c413751f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea8b945307d4e7e9a68d27c413751f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea8b945307d4e7e9a68d27c413751f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ea8b945307d4e7e9a68d27c413751f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ea8b945307d4e7e9a68d27c413751f1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Pua7_kn8RdUsrj5jj4KzXCIAAc=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.112077+00 2025-12-09 10:15:01.112082+00 8863 DL30435#枣红色2XL SPMX-20240815304026 \N \N \N 1 \N [{"file_id": "570afefd-11c3-456c-8f2d-628da02625e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "def0d067b0134c859f052d1ea6ec7961.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "def0d067b0134c859f052d1ea6ec7961.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "def0d067b0134c859f052d1ea6ec7961.jpg", "file_size": 19667, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#枣红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def0d067b0134c859f052d1ea6ec7961.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def0d067b0134c859f052d1ea6ec7961.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def0d067b0134c859f052d1ea6ec7961.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/def0d067b0134c859f052d1ea6ec7961.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/def0d067b0134c859f052d1ea6ec7961.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yzwNJJ-kbjTrpADSmbbZru9QSds=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.113798+00 2025-12-09 10:15:01.113802+00 8864 C338FWE#裤子M SPMX-20240815304018 \N \N \N 1 \N [{"file_id": "d230cec7-96af-439e-b15d-3c2a4f4ea6e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59af7a0941dd40e79b6ee6d3128024a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59af7a0941dd40e79b6ee6d3128024a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59af7a0941dd40e79b6ee6d3128024a6.jpg", "file_size": 20747, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#裤子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59af7a0941dd40e79b6ee6d3128024a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59af7a0941dd40e79b6ee6d3128024a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59af7a0941dd40e79b6ee6d3128024a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59af7a0941dd40e79b6ee6d3128024a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59af7a0941dd40e79b6ee6d3128024a6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9YfJb-4jtn4SBYBhZRrSDYXmh_k=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.115906+00 2025-12-09 10:15:01.115911+00 8865 1071916#裤子 SPMX-20240815304013 \N \N \N 1 \N [{"file_id": "af094436-1df0-440b-bd36-625dd5848e7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg", "file_size": 16893, "is_delete": false, "file_type": 1, "original_file_name": "1071916#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd8757ac5c9f463e8bbd9aa820a0bcfd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PvdxDJgY4pb0jO8NwcROPuSGaAw=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.118389+00 2025-12-09 10:15:01.118394+00 8866 80321#裤子 SPMX-20240815304034 \N \N \N 1 \N [{"file_id": "a4b062b4-c39e-4e3e-9bf4-16cc756be17c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc387406bec346c794034e40f47fc1dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc387406bec346c794034e40f47fc1dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc387406bec346c794034e40f47fc1dc.jpg", "file_size": 19550, "is_delete": false, "file_type": 1, "original_file_name": "80321#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc387406bec346c794034e40f47fc1dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc387406bec346c794034e40f47fc1dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc387406bec346c794034e40f47fc1dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc387406bec346c794034e40f47fc1dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc387406bec346c794034e40f47fc1dc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mi3qiHAv17fnngbDjGwHItmrerg=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.12066+00 2025-12-09 10:15:01.120665+00 8867 C338FWE#裤子XL SPMX-20240815304040 \N \N \N 1 \N [{"file_id": "39eeaf0f-abed-46f1-af74-d5c58e868c71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6327b389431049e4807f66f4a9de50e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6327b389431049e4807f66f4a9de50e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6327b389431049e4807f66f4a9de50e1.jpg", "file_size": 17108, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#裤子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b389431049e4807f66f4a9de50e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b389431049e4807f66f4a9de50e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b389431049e4807f66f4a9de50e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6327b389431049e4807f66f4a9de50e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6327b389431049e4807f66f4a9de50e1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJRSjdATUFXggpgmIWQmfAvxEXk=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.122775+00 2025-12-09 10:15:01.12278+00 8868 DL30435#枣红色L SPMX-20240815304037 \N \N \N 1 \N [{"file_id": "9cce9893-cbb5-4bc6-927e-644474aa50ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg", "file_size": 18317, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#枣红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a5d95e52fda46a9b46aeb7b4f82f5f9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGW-U-_nEGxARP6NsSOybj5DfmE=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.124828+00 2025-12-09 10:15:01.124833+00 8869 LJ3113#WJC22 SPMX-20240815304036 \N \N \N 1 \N [{"file_id": "7af75dd1-7fd3-4b4b-a7a4-4aa39c2715d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54190ca7480441bea4b74a4002a8b61a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54190ca7480441bea4b74a4002a8b61a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54190ca7480441bea4b74a4002a8b61a.jpg", "file_size": 16634, "is_delete": false, "file_type": 1, "original_file_name": "LJ3113#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54190ca7480441bea4b74a4002a8b61a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54190ca7480441bea4b74a4002a8b61a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54190ca7480441bea4b74a4002a8b61a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54190ca7480441bea4b74a4002a8b61a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54190ca7480441bea4b74a4002a8b61a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6N300fdX5v_a_8-Qo7HIn6DGJPY=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.126875+00 2025-12-09 10:15:01.12688+00 8870 FHXGPK-115-2 SPMX-20240815304042 \N \N \N 1 \N [{"file_id": "0811c60e-b1ba-4497-af2b-068db83f7a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "591c517b3f1a4340b1e394faa792ab3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "591c517b3f1a4340b1e394faa792ab3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "591c517b3f1a4340b1e394faa792ab3d.jpg", "file_size": 27833, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-115-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591c517b3f1a4340b1e394faa792ab3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591c517b3f1a4340b1e394faa792ab3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/591c517b3f1a4340b1e394faa792ab3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/591c517b3f1a4340b1e394faa792ab3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/591c517b3f1a4340b1e394faa792ab3d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UHkDQ5YRuvGkunm1K_4SsvnjYo0=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.129031+00 2025-12-09 10:15:01.129037+00 8871 C338FWE#裤子S SPMX-20240815304029 \N \N \N 1 \N [{"file_id": "85595eb2-55d5-464c-96c6-af4949df5a1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a4b6bf1da2f4280bec9a3c24af8fff0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a4b6bf1da2f4280bec9a3c24af8fff0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a4b6bf1da2f4280bec9a3c24af8fff0.jpg", "file_size": 24316, "is_delete": false, "file_type": 1, "original_file_name": "C338FWE#裤子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4b6bf1da2f4280bec9a3c24af8fff0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4b6bf1da2f4280bec9a3c24af8fff0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4b6bf1da2f4280bec9a3c24af8fff0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a4b6bf1da2f4280bec9a3c24af8fff0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a4b6bf1da2f4280bec9a3c24af8fff0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhW9nEOrpvQ7XUbIcKHgbCvD29U=", "createTime": "2024-08-15 14:47:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.13162+00 2025-12-09 10:15:01.131625+00 8872 FHXGPK-115-1 SPMX-20240815304031 \N \N \N 1 \N [{"file_id": "599e24ba-e356-4dbc-ba39-42fb0212390e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa315ae8bc114f2ab75d7646669f3d6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa315ae8bc114f2ab75d7646669f3d6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa315ae8bc114f2ab75d7646669f3d6d.jpg", "file_size": 28003, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-115-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa315ae8bc114f2ab75d7646669f3d6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa315ae8bc114f2ab75d7646669f3d6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa315ae8bc114f2ab75d7646669f3d6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa315ae8bc114f2ab75d7646669f3d6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa315ae8bc114f2ab75d7646669f3d6d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_Kz9ZNo_DElYhNA28B-mZROYT8=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.133838+00 2025-12-09 10:15:01.133842+00 8873 23-2113#A7前片3XL SPMX-20240815304033 \N \N \N 1 \N [{"file_id": "04ab8115-8a4a-4bd1-a01f-b52ec7c0f795", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c255b291078d4cca9cc414abbc32da44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c255b291078d4cca9cc414abbc32da44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c255b291078d4cca9cc414abbc32da44.jpg", "file_size": 10505, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7前片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c255b291078d4cca9cc414abbc32da44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c255b291078d4cca9cc414abbc32da44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c255b291078d4cca9cc414abbc32da44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c255b291078d4cca9cc414abbc32da44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c255b291078d4cca9cc414abbc32da44.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2gNxUeuDAxjZEi8T5tCLhx-U0fE=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.135903+00 2025-12-09 10:15:01.135907+00 8874 JTSS067FW#VS-D3 SPMX-20240815304039 \N \N \N 1 \N [{"file_id": "978278ae-9d49-4958-b485-21c42ac8011d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fec6a24a724949cdb072b3b87e992b2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fec6a24a724949cdb072b3b87e992b2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fec6a24a724949cdb072b3b87e992b2f.jpg", "file_size": 12616, "is_delete": false, "file_type": 1, "original_file_name": "JTSS067FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec6a24a724949cdb072b3b87e992b2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec6a24a724949cdb072b3b87e992b2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec6a24a724949cdb072b3b87e992b2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fec6a24a724949cdb072b3b87e992b2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fec6a24a724949cdb072b3b87e992b2f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sjQDJ24UhXonHARKl0Sxyesf1g=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.138004+00 2025-12-09 10:15:01.13801+00 8875 0003-403#WJC22 SPMX-20240815304032 \N \N \N 1 \N [{"file_id": "d8c4d7a1-e7c5-413b-8923-bd434aff873b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0810be8c91140359bfc7fb7134d7654.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0810be8c91140359bfc7fb7134d7654.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0810be8c91140359bfc7fb7134d7654.jpg", "file_size": 17012, "is_delete": false, "file_type": 1, "original_file_name": "0003-403#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0810be8c91140359bfc7fb7134d7654.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0810be8c91140359bfc7fb7134d7654.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0810be8c91140359bfc7fb7134d7654.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0810be8c91140359bfc7fb7134d7654.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0810be8c91140359bfc7fb7134d7654.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hLtfRDFGUlFZHqLrDnfA9weYAto=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.140053+00 2025-12-09 10:15:01.140058+00 8876 LZ1242#上身3号色 SPMX-20240815304038 \N \N \N 1 \N [{"file_id": "7057650b-0cef-4934-b9d7-2dffb9e3c0e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "117031196a9b420fadfa6ca4c9cdf0fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "117031196a9b420fadfa6ca4c9cdf0fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "117031196a9b420fadfa6ca4c9cdf0fb.jpg", "file_size": 15435, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117031196a9b420fadfa6ca4c9cdf0fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117031196a9b420fadfa6ca4c9cdf0fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117031196a9b420fadfa6ca4c9cdf0fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/117031196a9b420fadfa6ca4c9cdf0fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/117031196a9b420fadfa6ca4c9cdf0fb.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqqmMf_t6p77KdCY1Kd8fa7wGnY=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.141778+00 2025-12-09 10:15:01.141782+00 8877 HT0101-70#WJC22 SPMX-20240815304030 \N \N \N 1 \N [{"file_id": "b0a2b54a-5460-4ca4-b1de-83ee3ec4e848", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83061a910ce44824a31222c68b9fc431.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83061a910ce44824a31222c68b9fc431.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83061a910ce44824a31222c68b9fc431.jpg", "file_size": 19251, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-70#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83061a910ce44824a31222c68b9fc431.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83061a910ce44824a31222c68b9fc431.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83061a910ce44824a31222c68b9fc431.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83061a910ce44824a31222c68b9fc431.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83061a910ce44824a31222c68b9fc431.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMkLJbjoqwwTdkRw5kURxaaCtEQ=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.143363+00 2025-12-09 10:15:01.143368+00 8878 1072FWF#粉红色-V5曲线 SPMX-20240815304035 \N \N \N 1 \N [{"file_id": "6c8eb91a-0002-4a24-80a8-b893fd2e2884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cb96d5dfa9e41fab3593c61580a9bf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cb96d5dfa9e41fab3593c61580a9bf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cb96d5dfa9e41fab3593c61580a9bf8.jpg", "file_size": 10148, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#粉红色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cb96d5dfa9e41fab3593c61580a9bf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cb96d5dfa9e41fab3593c61580a9bf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cb96d5dfa9e41fab3593c61580a9bf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cb96d5dfa9e41fab3593c61580a9bf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cb96d5dfa9e41fab3593c61580a9bf8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:20J59Qo2DVrlYrrimUPtBUlnEtc=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.144926+00 2025-12-09 10:15:01.144931+00 8879 HT0101-71#WJC22 SPMX-20240815304041 \N \N \N 1 \N [{"file_id": "3c0dca40-4bc2-4b4a-8e09-4c7c601012da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63abac55f86443ef99c1f07ce998004d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63abac55f86443ef99c1f07ce998004d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63abac55f86443ef99c1f07ce998004d.jpg", "file_size": 12477, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-71#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63abac55f86443ef99c1f07ce998004d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63abac55f86443ef99c1f07ce998004d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63abac55f86443ef99c1f07ce998004d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63abac55f86443ef99c1f07ce998004d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63abac55f86443ef99c1f07ce998004d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45fbiwedrAF-HUkS75Si5CNnWb8=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.146503+00 2025-12-09 10:15:01.146509+00 8880 80322#前幅 SPMX-20240815304055 \N \N \N 1 \N [{"file_id": "9a391faf-118b-43d0-9f14-60094f8e05ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdaf48232702479ca976b42b61383bef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdaf48232702479ca976b42b61383bef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdaf48232702479ca976b42b61383bef.jpg", "file_size": 15444, "is_delete": false, "file_type": 1, "original_file_name": "80322#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaf48232702479ca976b42b61383bef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaf48232702479ca976b42b61383bef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaf48232702479ca976b42b61383bef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdaf48232702479ca976b42b61383bef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdaf48232702479ca976b42b61383bef.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvo5sERaFEfuuEffdBUh5SoBFKk=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.148059+00 2025-12-09 10:15:01.148063+00 8881 0003-405#WJC22 SPMX-20240815304056 \N \N \N 1 \N [{"file_id": "1bee0c2a-e10e-45dd-9bef-bafff48f0043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee0d09c3f2264c8f80708269a187a554.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee0d09c3f2264c8f80708269a187a554.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee0d09c3f2264c8f80708269a187a554.jpg", "file_size": 20706, "is_delete": false, "file_type": 1, "original_file_name": "0003-405#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0d09c3f2264c8f80708269a187a554.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0d09c3f2264c8f80708269a187a554.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0d09c3f2264c8f80708269a187a554.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee0d09c3f2264c8f80708269a187a554.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee0d09c3f2264c8f80708269a187a554.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOj86ArBG8PklB_oDysxYYF7vxI=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.149709+00 2025-12-09 10:15:01.149715+00 8882 80322#中童 SPMX-20240815304044 \N \N \N 1 \N [{"file_id": "7297d3fe-1d91-48c5-a342-a93f15c94b38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2495601f795b4490950ac0b7a4d4aeba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2495601f795b4490950ac0b7a4d4aeba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2495601f795b4490950ac0b7a4d4aeba.jpg", "file_size": 27909, "is_delete": false, "file_type": 1, "original_file_name": "80322#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495601f795b4490950ac0b7a4d4aeba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495601f795b4490950ac0b7a4d4aeba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495601f795b4490950ac0b7a4d4aeba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2495601f795b4490950ac0b7a4d4aeba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2495601f795b4490950ac0b7a4d4aeba.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ub_TsQvMMfywLy8KXP0Z7eXUTaY=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.151323+00 2025-12-09 10:15:01.151327+00 8883 LJ3114#WJC22 SPMX-20240815304047 \N \N \N 1 \N [{"file_id": "8abe004e-5f2e-4105-81b1-db71b7ad7ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a2a62a7afba4269ace432fd5d9153ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a2a62a7afba4269ace432fd5d9153ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a2a62a7afba4269ace432fd5d9153ef.jpg", "file_size": 16951, "is_delete": false, "file_type": 1, "original_file_name": "LJ3114#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2a62a7afba4269ace432fd5d9153ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2a62a7afba4269ace432fd5d9153ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a2a62a7afba4269ace432fd5d9153ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a2a62a7afba4269ace432fd5d9153ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a2a62a7afba4269ace432fd5d9153ef.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kHdEnvBFr2UNMr0C6UApRh2jloM=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.153114+00 2025-12-09 10:15:01.153119+00 8884 0003-404#WJC22 SPMX-20240815304045 \N \N \N 1 \N [{"file_id": "5fe21ffc-78b9-4a03-b253-8d5ca95b9a9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65b093afca3a491fab1aab3a0fc011d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65b093afca3a491fab1aab3a0fc011d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65b093afca3a491fab1aab3a0fc011d2.jpg", "file_size": 12649, "is_delete": false, "file_type": 1, "original_file_name": "0003-404#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b093afca3a491fab1aab3a0fc011d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b093afca3a491fab1aab3a0fc011d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b093afca3a491fab1aab3a0fc011d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65b093afca3a491fab1aab3a0fc011d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65b093afca3a491fab1aab3a0fc011d2.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJHTkGRzuDNU4M96Ofkno_vt3Nw=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.154668+00 2025-12-09 10:15:01.154672+00 8885 HT0101-72#WJC22 SPMX-20240815304052 \N \N \N 1 \N [{"file_id": "b36d8d00-d242-4731-9a3b-435c04034eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a3234ed958f43aeaff07bce7db076ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a3234ed958f43aeaff07bce7db076ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a3234ed958f43aeaff07bce7db076ad.jpg", "file_size": 28837, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-72#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3234ed958f43aeaff07bce7db076ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3234ed958f43aeaff07bce7db076ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3234ed958f43aeaff07bce7db076ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a3234ed958f43aeaff07bce7db076ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a3234ed958f43aeaff07bce7db076ad.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFdht3Q9g1lTTmY_JZ8wceP644o=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.156209+00 2025-12-09 10:15:01.156214+00 8886 C338FWF#橘色L SPMX-20240815304048 \N \N \N 1 \N [{"file_id": "51635f1c-1143-4cd8-a5f7-ae0969186870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87285356981c44699da117729f5d986e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87285356981c44699da117729f5d986e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87285356981c44699da117729f5d986e.jpg", "file_size": 18020, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87285356981c44699da117729f5d986e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87285356981c44699da117729f5d986e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87285356981c44699da117729f5d986e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87285356981c44699da117729f5d986e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87285356981c44699da117729f5d986e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iH9LVhrWWDsWVJhyauC1e2Esjgc=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.157727+00 2025-12-09 10:15:01.157731+00 8887 JTSS068#VS-D3 SPMX-20240815304051 \N \N \N 1 \N [{"file_id": "99bbaa8c-c384-4a9e-b07f-cb6d1a113b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "459534e6152342bc836cfb0e073f653d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "459534e6152342bc836cfb0e073f653d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "459534e6152342bc836cfb0e073f653d.jpg", "file_size": 9040, "is_delete": false, "file_type": 1, "original_file_name": "JTSS068#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459534e6152342bc836cfb0e073f653d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459534e6152342bc836cfb0e073f653d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459534e6152342bc836cfb0e073f653d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/459534e6152342bc836cfb0e073f653d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/459534e6152342bc836cfb0e073f653d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utI_EtX2A_I37K7EEqyCKYsiF2A=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.159297+00 2025-12-09 10:15:01.159303+00 8888 DL30435#枣红色XL SPMX-20240815304049 \N \N \N 1 \N [{"file_id": "bfb799f6-b578-4798-a52a-930d0ec59617", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87161872bad244adb963e68fc4c14414.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87161872bad244adb963e68fc4c14414.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87161872bad244adb963e68fc4c14414.jpg", "file_size": 19038, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#枣红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87161872bad244adb963e68fc4c14414.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87161872bad244adb963e68fc4c14414.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87161872bad244adb963e68fc4c14414.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87161872bad244adb963e68fc4c14414.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87161872bad244adb963e68fc4c14414.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RllDsNoVA3TC4m-z7mkniwt8hqE=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.161179+00 2025-12-09 10:15:01.161183+00 8889 LZ1242#上身4号色 SPMX-20240815304050 \N \N \N 1 \N [{"file_id": "68fc21f2-9a3a-4860-b4ae-396e03d82ec7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c722403a93940038eb0f82336e23cf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c722403a93940038eb0f82336e23cf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c722403a93940038eb0f82336e23cf4.jpg", "file_size": 18680, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c722403a93940038eb0f82336e23cf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c722403a93940038eb0f82336e23cf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c722403a93940038eb0f82336e23cf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c722403a93940038eb0f82336e23cf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c722403a93940038eb0f82336e23cf4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdQyfQaVFbrsLj4RIJ2TBXosukU=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.162888+00 2025-12-09 10:15:01.162893+00 8890 C338FWF#橘色M SPMX-20240815304059 \N \N \N 1 \N [{"file_id": "db638717-c92b-469f-93db-ff6c5b0ebd08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad51a27467244039ba4fb54bcb2fe497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad51a27467244039ba4fb54bcb2fe497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad51a27467244039ba4fb54bcb2fe497.jpg", "file_size": 19892, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad51a27467244039ba4fb54bcb2fe497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad51a27467244039ba4fb54bcb2fe497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad51a27467244039ba4fb54bcb2fe497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad51a27467244039ba4fb54bcb2fe497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad51a27467244039ba4fb54bcb2fe497.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vl8VsAulmwf7PrdEMoEfWV9Edu8=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.164547+00 2025-12-09 10:15:01.164552+00 8891 23-2113#A7后片3XL SPMX-20240815304053 \N \N \N 1 \N [{"file_id": "462e7718-3ea5-42c9-b919-b774ab72dd81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87fbfa1f5d064f1fbdfd17d0c37b1287.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87fbfa1f5d064f1fbdfd17d0c37b1287.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87fbfa1f5d064f1fbdfd17d0c37b1287.jpg", "file_size": 8306, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fbfa1f5d064f1fbdfd17d0c37b1287.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fbfa1f5d064f1fbdfd17d0c37b1287.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fbfa1f5d064f1fbdfd17d0c37b1287.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87fbfa1f5d064f1fbdfd17d0c37b1287.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87fbfa1f5d064f1fbdfd17d0c37b1287.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UhX8_H9ReEtI4gRTS-s78ZOXbyY=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.16642+00 2025-12-09 10:15:01.166425+00 8892 FHXGPK-115-3 SPMX-20240815304054 \N \N \N 1 \N [{"file_id": "ce3d30f4-51bf-4fd2-9f8c-dcf52c2812ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4b6afba38c4b3aac7f7cd32bed1c93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4b6afba38c4b3aac7f7cd32bed1c93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4b6afba38c4b3aac7f7cd32bed1c93.jpg", "file_size": 29579, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-115-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4b6afba38c4b3aac7f7cd32bed1c93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4b6afba38c4b3aac7f7cd32bed1c93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4b6afba38c4b3aac7f7cd32bed1c93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4b6afba38c4b3aac7f7cd32bed1c93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4b6afba38c4b3aac7f7cd32bed1c93.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T6tkSFyYECHmevAfFwDeLa0D9i8=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.168133+00 2025-12-09 10:15:01.168138+00 8893 LJ3115#WJC22 SPMX-20240815304058 \N \N \N 1 \N [{"file_id": "90983651-325c-46fe-8a22-cce8d5868bc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9abd9f8c22294f87b5bf3b9b426c8c5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9abd9f8c22294f87b5bf3b9b426c8c5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9abd9f8c22294f87b5bf3b9b426c8c5e.jpg", "file_size": 15599, "is_delete": false, "file_type": 1, "original_file_name": "LJ3115#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abd9f8c22294f87b5bf3b9b426c8c5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abd9f8c22294f87b5bf3b9b426c8c5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abd9f8c22294f87b5bf3b9b426c8c5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9abd9f8c22294f87b5bf3b9b426c8c5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9abd9f8c22294f87b5bf3b9b426c8c5e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4enGsJFpl7QvdIimDNJgzIUHAI=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.169712+00 2025-12-09 10:15:01.169716+00 8894 1072FWF#粉红色-V5曲线番禺调色 SPMX-20240815304046 \N \N \N 1 \N [{"file_id": "7928a12b-5ebc-43cc-8a4c-c1696723c51c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb3263bb68b9497ca3262f8034585046.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb3263bb68b9497ca3262f8034585046.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb3263bb68b9497ca3262f8034585046.jpg", "file_size": 10061, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#粉红色-V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3263bb68b9497ca3262f8034585046.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3263bb68b9497ca3262f8034585046.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3263bb68b9497ca3262f8034585046.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb3263bb68b9497ca3262f8034585046.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb3263bb68b9497ca3262f8034585046.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rhoD3mtmKMyr-0Hy_FDtpx8pSc=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.171256+00 2025-12-09 10:15:01.171261+00 8895 1072FWF#紫红-V5曲线 SPMX-20240815304057 \N \N \N 1 \N [{"file_id": "123dff1f-7ca3-4d85-b45c-c5d5f4fb5b1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "781cf05b36b04784b004fd64eb9eef20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "781cf05b36b04784b004fd64eb9eef20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "781cf05b36b04784b004fd64eb9eef20.jpg", "file_size": 9935, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#紫红-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781cf05b36b04784b004fd64eb9eef20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781cf05b36b04784b004fd64eb9eef20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781cf05b36b04784b004fd64eb9eef20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/781cf05b36b04784b004fd64eb9eef20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/781cf05b36b04784b004fd64eb9eef20.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtxojkuH3bz9qKBEN3LzjbdbOT4=", "createTime": "2024-08-15 14:47:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.172819+00 2025-12-09 10:15:01.172823+00 8896 23-2113#A7前片4XL SPMX-20240815304043 \N \N \N 1 \N [{"file_id": "ca5b21c8-6bd0-40ba-9565-a4401859a227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "273a45c9d06d45d8b612b7b350e521a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "273a45c9d06d45d8b612b7b350e521a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "273a45c9d06d45d8b612b7b350e521a6.jpg", "file_size": 11482, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7前片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/273a45c9d06d45d8b612b7b350e521a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/273a45c9d06d45d8b612b7b350e521a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/273a45c9d06d45d8b612b7b350e521a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/273a45c9d06d45d8b612b7b350e521a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/273a45c9d06d45d8b612b7b350e521a6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lxCWTjzE6KzKWK_VUSJiGwAasIU=", "createTime": "2024-08-15 14:47:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.174365+00 2025-12-09 10:15:01.17437+00 8897 23-2113#A7后片4XL SPMX-20240815304064 \N \N \N 1 \N [{"file_id": "10b9895c-394d-4029-98d3-c02863dc7042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9286e8ec98c148239cb6549b0b50827b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9286e8ec98c148239cb6549b0b50827b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9286e8ec98c148239cb6549b0b50827b.jpg", "file_size": 8405, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9286e8ec98c148239cb6549b0b50827b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9286e8ec98c148239cb6549b0b50827b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9286e8ec98c148239cb6549b0b50827b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9286e8ec98c148239cb6549b0b50827b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9286e8ec98c148239cb6549b0b50827b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-lPiOVIYEuaWaAaythM2Lwe-o2Q=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.17591+00 2025-12-09 10:15:01.175915+00 8898 LZ1242#下身1号色 SPMX-20240815304061 \N \N \N 1 \N [{"file_id": "4440e3fd-8cf1-4a55-9439-d1a220e50c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "175096e7983a42fd9fb9f860469909dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "175096e7983a42fd9fb9f860469909dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "175096e7983a42fd9fb9f860469909dd.jpg", "file_size": 17850, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175096e7983a42fd9fb9f860469909dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175096e7983a42fd9fb9f860469909dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175096e7983a42fd9fb9f860469909dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/175096e7983a42fd9fb9f860469909dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/175096e7983a42fd9fb9f860469909dd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4z0sdfFwHc_7-fA_wwf7EbcPUg=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.177437+00 2025-12-09 10:15:01.177441+00 8899 FHXGPK-116-1 SPMX-20240815304065 \N \N \N 1 \N [{"file_id": "a075d1ae-76bc-48e1-bc21-0f0ad3083c83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c65dab283484f2fa87138bfb3285b49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c65dab283484f2fa87138bfb3285b49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c65dab283484f2fa87138bfb3285b49.jpg", "file_size": 28832, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-116-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c65dab283484f2fa87138bfb3285b49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c65dab283484f2fa87138bfb3285b49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c65dab283484f2fa87138bfb3285b49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c65dab283484f2fa87138bfb3285b49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c65dab283484f2fa87138bfb3285b49.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J35capQCHiliMZpzjhVzOwwWJVg=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.178969+00 2025-12-09 10:15:01.178973+00 8900 LJ3116#V5曲线 SPMX-20240815304067 \N \N \N 1 \N [{"file_id": "2ab26e2b-1cd7-456c-b762-cd81a7edd91b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51e1f10d75f2479a964edcc1d8b5d6ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51e1f10d75f2479a964edcc1d8b5d6ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51e1f10d75f2479a964edcc1d8b5d6ae.jpg", "file_size": 18329, "is_delete": false, "file_type": 1, "original_file_name": "LJ3116#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e1f10d75f2479a964edcc1d8b5d6ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e1f10d75f2479a964edcc1d8b5d6ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e1f10d75f2479a964edcc1d8b5d6ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51e1f10d75f2479a964edcc1d8b5d6ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51e1f10d75f2479a964edcc1d8b5d6ae.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lav1KTILdWQuyULxp_A_Ub1escg=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.180514+00 2025-12-09 10:15:01.180519+00 8901 JTSS068FW#VS-D3 SPMX-20240815304063 \N \N \N 1 \N [{"file_id": "752f158a-7d1b-4203-89c6-424769f8d5fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d234bfe775d4193aebad7027df0b6b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d234bfe775d4193aebad7027df0b6b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d234bfe775d4193aebad7027df0b6b5.jpg", "file_size": 9192, "is_delete": false, "file_type": 1, "original_file_name": "JTSS068FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d234bfe775d4193aebad7027df0b6b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d234bfe775d4193aebad7027df0b6b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d234bfe775d4193aebad7027df0b6b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d234bfe775d4193aebad7027df0b6b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d234bfe775d4193aebad7027df0b6b5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Msje5Z1fCR4-MJkoK3acGOKj4tA=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.182291+00 2025-12-09 10:15:01.182296+00 8902 DL30435#枣红色匹布 SPMX-20240815304060 \N \N \N 1 \N [{"file_id": "93087075-2ae0-4eb5-bd86-e98914998abc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4322facfb71c42ed8605988d4e41f3fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4322facfb71c42ed8605988d4e41f3fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4322facfb71c42ed8605988d4e41f3fd.jpg", "file_size": 20518, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#枣红色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4322facfb71c42ed8605988d4e41f3fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4322facfb71c42ed8605988d4e41f3fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4322facfb71c42ed8605988d4e41f3fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4322facfb71c42ed8605988d4e41f3fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4322facfb71c42ed8605988d4e41f3fd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KWyn4VewVx_tMNFyrjJ2gGL-tVc=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.183828+00 2025-12-09 10:15:01.183832+00 8903 80322#匹布 SPMX-20240815304066 \N \N \N 1 \N [{"file_id": "d4603db2-0451-4aa1-a948-e2602233245a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdeb41d76c574ea2980b8745c598a737.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdeb41d76c574ea2980b8745c598a737.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdeb41d76c574ea2980b8745c598a737.jpg", "file_size": 15626, "is_delete": false, "file_type": 1, "original_file_name": "80322#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeb41d76c574ea2980b8745c598a737.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeb41d76c574ea2980b8745c598a737.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeb41d76c574ea2980b8745c598a737.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdeb41d76c574ea2980b8745c598a737.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdeb41d76c574ea2980b8745c598a737.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0c5ghulOa2qnOVHpUZJrFeLwBo=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.185476+00 2025-12-09 10:15:01.185482+00 8904 1072FWF#绿色-V5曲线 SPMX-20240815304068 \N \N \N 1 \N [{"file_id": "17472068-ebc9-49d6-9c54-512e8cea3dde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "623d6eaaa85d4418990c60bff8324da0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "623d6eaaa85d4418990c60bff8324da0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "623d6eaaa85d4418990c60bff8324da0.jpg", "file_size": 9656, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#绿色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623d6eaaa85d4418990c60bff8324da0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623d6eaaa85d4418990c60bff8324da0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623d6eaaa85d4418990c60bff8324da0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/623d6eaaa85d4418990c60bff8324da0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/623d6eaaa85d4418990c60bff8324da0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zrLLd9kGMXIVoOlVjFuzTnIlAX4=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.187458+00 2025-12-09 10:15:01.187463+00 8905 0003-406#WJC22 SPMX-20240815304069 \N \N \N 1 \N [{"file_id": "2729749f-bb64-4f0c-a06e-bae35d24c864", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5ade074390a45a69c680f85eac47622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5ade074390a45a69c680f85eac47622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5ade074390a45a69c680f85eac47622.jpg", "file_size": 20374, "is_delete": false, "file_type": 1, "original_file_name": "0003-406#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ade074390a45a69c680f85eac47622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ade074390a45a69c680f85eac47622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ade074390a45a69c680f85eac47622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5ade074390a45a69c680f85eac47622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5ade074390a45a69c680f85eac47622.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:go0OEoH_IzzJPnjg-hv_YHTju1o=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.189082+00 2025-12-09 10:15:01.189087+00 8906 HT0101-73#WJC22 SPMX-20240815304062 \N \N \N 1 \N [{"file_id": "76635a8e-c06d-4439-9d4d-7a04de218626", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b82006e316b4593921ef10f9f968604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b82006e316b4593921ef10f9f968604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b82006e316b4593921ef10f9f968604.jpg", "file_size": 28035, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-73#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b82006e316b4593921ef10f9f968604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b82006e316b4593921ef10f9f968604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b82006e316b4593921ef10f9f968604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b82006e316b4593921ef10f9f968604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b82006e316b4593921ef10f9f968604.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKNvRgS4EZQ0rN1T-2awiCQ_Tqk=", "createTime": "2024-08-15 14:47:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.19066+00 2025-12-09 10:15:01.190664+00 8907 23-2113#A7袖子3XL SPMX-20240815304079 \N \N \N 1 \N [{"file_id": "83fd58a1-068e-419b-a53e-bfaa8815af4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2d7d55b1f7345dc8fb2779ee8f755ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2d7d55b1f7345dc8fb2779ee8f755ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2d7d55b1f7345dc8fb2779ee8f755ed.jpg", "file_size": 7891, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d7d55b1f7345dc8fb2779ee8f755ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d7d55b1f7345dc8fb2779ee8f755ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d7d55b1f7345dc8fb2779ee8f755ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2d7d55b1f7345dc8fb2779ee8f755ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2d7d55b1f7345dc8fb2779ee8f755ed.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Vfn3MC54BQN760MeYUl--kh8as=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.192488+00 2025-12-09 10:15:01.192492+00 8908 80322#后幅 SPMX-20240815304080 \N \N \N 1 \N [{"file_id": "22161d23-f54e-4149-bd1e-e0d91d8ce0b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61fb4ce77cc34e58b24ad0d442235194.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61fb4ce77cc34e58b24ad0d442235194.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61fb4ce77cc34e58b24ad0d442235194.jpg", "file_size": 13732, "is_delete": false, "file_type": 1, "original_file_name": "80322#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fb4ce77cc34e58b24ad0d442235194.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fb4ce77cc34e58b24ad0d442235194.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fb4ce77cc34e58b24ad0d442235194.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61fb4ce77cc34e58b24ad0d442235194.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61fb4ce77cc34e58b24ad0d442235194.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeNqB9N-JMqgxAttGOR9IXaw8L4=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.194055+00 2025-12-09 10:15:01.194059+00 8909 FHXGPK-116-2 SPMX-20240815304077 \N \N \N 1 \N [{"file_id": "11e71354-fb9a-4765-8703-6e0b5bed6ebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a1b3797c853468981bf0adba02fc196.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a1b3797c853468981bf0adba02fc196.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a1b3797c853468981bf0adba02fc196.jpg", "file_size": 29884, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-116-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1b3797c853468981bf0adba02fc196.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1b3797c853468981bf0adba02fc196.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1b3797c853468981bf0adba02fc196.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a1b3797c853468981bf0adba02fc196.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a1b3797c853468981bf0adba02fc196.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2YGs8UHzMpsmZUdBWEczRlm25Q=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.195694+00 2025-12-09 10:15:01.195699+00 8910 JTSS069#VS-D3 SPMX-20240815304074 \N \N \N 1 \N [{"file_id": "5adb9146-c9d2-4d4f-bff4-c373b9b8b466", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372e0d5e85124df9bce7d15675ffe02b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372e0d5e85124df9bce7d15675ffe02b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372e0d5e85124df9bce7d15675ffe02b.jpg", "file_size": 12050, "is_delete": false, "file_type": 1, "original_file_name": "JTSS069#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e0d5e85124df9bce7d15675ffe02b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e0d5e85124df9bce7d15675ffe02b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372e0d5e85124df9bce7d15675ffe02b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372e0d5e85124df9bce7d15675ffe02b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372e0d5e85124df9bce7d15675ffe02b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5KDguGFLXi_KzA7XXuiIjEFjxg=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.197632+00 2025-12-09 10:15:01.197637+00 8911 HT0101-74#WJC22 SPMX-20240815304070 \N \N \N 1 \N [{"file_id": "91504016-2159-4f9a-99a5-d156f2b1330b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fc305f8de284d29adce215d3104640d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fc305f8de284d29adce215d3104640d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fc305f8de284d29adce215d3104640d.jpg", "file_size": 9783, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-74#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc305f8de284d29adce215d3104640d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc305f8de284d29adce215d3104640d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc305f8de284d29adce215d3104640d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fc305f8de284d29adce215d3104640d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fc305f8de284d29adce215d3104640d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IY9EN5ovqWnbNT0YpA_roeNt5hA=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.199573+00 2025-12-09 10:15:01.199578+00 8912 DL30435#浅粉2XL SPMX-20240815304071 \N \N \N 1 \N [{"file_id": "e5bd3ef1-7fb9-44ef-9b15-cdda8daf5902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bc5735895954945943c352fc31e2adc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bc5735895954945943c352fc31e2adc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bc5735895954945943c352fc31e2adc.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅粉2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc5735895954945943c352fc31e2adc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc5735895954945943c352fc31e2adc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc5735895954945943c352fc31e2adc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bc5735895954945943c352fc31e2adc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bc5735895954945943c352fc31e2adc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjx4wFMV_q1mSUnd-WLnCajLMWY=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.201534+00 2025-12-09 10:15:01.201539+00 8913 LJ3117#WJC22 SPMX-20240815304076 \N \N \N 1 \N [{"file_id": "c56c7a31-a5ae-4eef-a023-d222e7336067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2abe145a5fe440c981d5ba65095a5f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2abe145a5fe440c981d5ba65095a5f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2abe145a5fe440c981d5ba65095a5f2f.jpg", "file_size": 24035, "is_delete": false, "file_type": 1, "original_file_name": "LJ3117#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abe145a5fe440c981d5ba65095a5f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abe145a5fe440c981d5ba65095a5f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abe145a5fe440c981d5ba65095a5f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2abe145a5fe440c981d5ba65095a5f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2abe145a5fe440c981d5ba65095a5f2f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgPuHm8kidRu9oufL7Yj8_PvN3g=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.203561+00 2025-12-09 10:15:01.203565+00 8914 C338FWF#橘色S-右袖 SPMX-20240815304073 \N \N \N 1 \N [{"file_id": "5f2795be-f8a9-4bac-b18c-d1fc96e7e5aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "711f5e24591f405b849f9150416f0b39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "711f5e24591f405b849f9150416f0b39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "711f5e24591f405b849f9150416f0b39.jpg", "file_size": 17319, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S-右袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f5e24591f405b849f9150416f0b39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f5e24591f405b849f9150416f0b39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711f5e24591f405b849f9150416f0b39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/711f5e24591f405b849f9150416f0b39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/711f5e24591f405b849f9150416f0b39.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rG90qWsZbvOT0bs-MsNMN7b4coQ=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.205123+00 2025-12-09 10:15:01.205128+00 8915 1072FWF#蓝色-V5曲线 SPMX-20240815304072 \N \N \N 1 \N [{"file_id": "8f484d75-a399-4ba5-8d51-0d429bf61aba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ec615fd43f4c61b2d0eac24b2b3d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ec615fd43f4c61b2d0eac24b2b3d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ec615fd43f4c61b2d0eac24b2b3d86.jpg", "file_size": 10327, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#蓝色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec615fd43f4c61b2d0eac24b2b3d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec615fd43f4c61b2d0eac24b2b3d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec615fd43f4c61b2d0eac24b2b3d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ec615fd43f4c61b2d0eac24b2b3d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ec615fd43f4c61b2d0eac24b2b3d86.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IElaVdrCNlc6bfyxhZi-uYfRjhw=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.206663+00 2025-12-09 10:15:01.206667+00 8916 LZ1242#下身2号色 SPMX-20240815304075 \N \N \N 1 \N [{"file_id": "8cbdc792-afcf-493a-b7f6-d0495701f5ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "addcd6223b2d49379203873c1d3aec65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "addcd6223b2d49379203873c1d3aec65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "addcd6223b2d49379203873c1d3aec65.jpg", "file_size": 16922, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addcd6223b2d49379203873c1d3aec65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addcd6223b2d49379203873c1d3aec65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addcd6223b2d49379203873c1d3aec65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/addcd6223b2d49379203873c1d3aec65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/addcd6223b2d49379203873c1d3aec65.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wR5Y9wV3U9OyBuoHxEiAInnDpTg=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.208498+00 2025-12-09 10:15:01.208502+00 8917 0003-407#WJC22 SPMX-20240815304078 \N \N \N 1 \N [{"file_id": "777fca01-7806-4058-88cf-c312d9941cfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd99c9a7f02549f0858b3765b7239397.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd99c9a7f02549f0858b3765b7239397.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd99c9a7f02549f0858b3765b7239397.jpg", "file_size": 21264, "is_delete": false, "file_type": 1, "original_file_name": "0003-407#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99c9a7f02549f0858b3765b7239397.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99c9a7f02549f0858b3765b7239397.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99c9a7f02549f0858b3765b7239397.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd99c9a7f02549f0858b3765b7239397.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd99c9a7f02549f0858b3765b7239397.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIjdsVFql7dV-YDlAaJBD4XUJrk=", "createTime": "2024-08-15 14:47:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.210079+00 2025-12-09 10:15:01.210083+00 8918 23-2113#A7袖子4XL SPMX-20240815304089 \N \N \N 1 \N [{"file_id": "eaf2238e-0d18-4433-aba1-44c4ac8407f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "402670ff5b1f415a855f640f3c0754e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "402670ff5b1f415a855f640f3c0754e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "402670ff5b1f415a855f640f3c0754e6.jpg", "file_size": 7992, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402670ff5b1f415a855f640f3c0754e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402670ff5b1f415a855f640f3c0754e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402670ff5b1f415a855f640f3c0754e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/402670ff5b1f415a855f640f3c0754e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/402670ff5b1f415a855f640f3c0754e6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EErX0hvoWBIhCtHo7O_DTpshHgU=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.211632+00 2025-12-09 10:15:01.211637+00 8919 HT0101-75#WJC22 SPMX-20240815304082 \N \N \N 1 \N [{"file_id": "a56276f3-b02d-4856-83ab-afb0729f56b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2289c03ac3a8412aa215fbcebac34b45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2289c03ac3a8412aa215fbcebac34b45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2289c03ac3a8412aa215fbcebac34b45.jpg", "file_size": 23316, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-75#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2289c03ac3a8412aa215fbcebac34b45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2289c03ac3a8412aa215fbcebac34b45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2289c03ac3a8412aa215fbcebac34b45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2289c03ac3a8412aa215fbcebac34b45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2289c03ac3a8412aa215fbcebac34b45.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeaaTuoegdvcd-PNLqQvxgJsgSY=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.213165+00 2025-12-09 10:15:01.21317+00 8920 C338FWF#橘色S-后片 SPMX-20240815304084 \N \N \N 1 \N [{"file_id": "3fbc9536-f7aa-4a59-9774-f19477d2e3fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "386bbffbd0524d6f87283e91b2c00022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "386bbffbd0524d6f87283e91b2c00022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "386bbffbd0524d6f87283e91b2c00022.jpg", "file_size": 21061, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S-后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386bbffbd0524d6f87283e91b2c00022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386bbffbd0524d6f87283e91b2c00022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386bbffbd0524d6f87283e91b2c00022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/386bbffbd0524d6f87283e91b2c00022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/386bbffbd0524d6f87283e91b2c00022.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmOH6vnjCleHP7mxL-jTEjYh4C0=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.214692+00 2025-12-09 10:15:01.214696+00 8921 LJ4001#前后幅 SPMX-20240815304091 \N \N \N 1 \N [{"file_id": "84a22878-88fb-48c1-bf8c-0362285dc727", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f18559f675574796bd4016facbd76b40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f18559f675574796bd4016facbd76b40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f18559f675574796bd4016facbd76b40.jpg", "file_size": 23030, "is_delete": false, "file_type": 1, "original_file_name": "LJ4001#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18559f675574796bd4016facbd76b40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18559f675574796bd4016facbd76b40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18559f675574796bd4016facbd76b40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f18559f675574796bd4016facbd76b40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f18559f675574796bd4016facbd76b40.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OiQAhj9JBXNve6xs_ffGUVcsVY0=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.216217+00 2025-12-09 10:15:01.216222+00 8922 DL30435#浅粉L SPMX-20240815304081 \N \N \N 1 \N [{"file_id": "8b4c8b14-3358-4b73-a358-cad1f332d21d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1421e0effad3403e8b48c6fdae4ea5a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1421e0effad3403e8b48c6fdae4ea5a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1421e0effad3403e8b48c6fdae4ea5a8.jpg", "file_size": 16665, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1421e0effad3403e8b48c6fdae4ea5a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1421e0effad3403e8b48c6fdae4ea5a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1421e0effad3403e8b48c6fdae4ea5a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1421e0effad3403e8b48c6fdae4ea5a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1421e0effad3403e8b48c6fdae4ea5a8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94SoFZTMSPXVUXy_7dJK32LI4pk=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.217724+00 2025-12-09 10:15:01.217728+00 8923 JTSS069FW#VS-D3 SPMX-20240815304086 \N \N \N 1 \N [{"file_id": "a7062db4-54a8-4bb8-af35-d05ae952a30f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23bd05ea9c8842e08846dce263b30a45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23bd05ea9c8842e08846dce263b30a45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23bd05ea9c8842e08846dce263b30a45.jpg", "file_size": 18764, "is_delete": false, "file_type": 1, "original_file_name": "JTSS069FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bd05ea9c8842e08846dce263b30a45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bd05ea9c8842e08846dce263b30a45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bd05ea9c8842e08846dce263b30a45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23bd05ea9c8842e08846dce263b30a45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23bd05ea9c8842e08846dce263b30a45.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:La9cfd-VVMdlnce4xNSUmXIMZuY=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.219239+00 2025-12-09 10:15:01.219244+00 8924 FHXGPK-116-3 SPMX-20240815304087 \N \N \N 1 \N [{"file_id": "b14cdaf0-11d5-461a-84fe-29fa1fbf9ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be8d661a6a214d3a8a52e2a011fbe001.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be8d661a6a214d3a8a52e2a011fbe001.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be8d661a6a214d3a8a52e2a011fbe001.jpg", "file_size": 23441, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-116-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be8d661a6a214d3a8a52e2a011fbe001.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be8d661a6a214d3a8a52e2a011fbe001.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be8d661a6a214d3a8a52e2a011fbe001.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be8d661a6a214d3a8a52e2a011fbe001.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be8d661a6a214d3a8a52e2a011fbe001.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zc5gbGBvGBCt-_RKXTDl0q-RumE=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.220783+00 2025-12-09 10:15:01.220787+00 8925 LZ1242#下身3号色 SPMX-20240815304085 \N \N \N 1 \N [{"file_id": "4cfc28b8-eee1-4619-8ab8-84b454ac22f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4803269eb8b64dcb9f6a7c84b972258d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4803269eb8b64dcb9f6a7c84b972258d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4803269eb8b64dcb9f6a7c84b972258d.jpg", "file_size": 16125, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4803269eb8b64dcb9f6a7c84b972258d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4803269eb8b64dcb9f6a7c84b972258d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4803269eb8b64dcb9f6a7c84b972258d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4803269eb8b64dcb9f6a7c84b972258d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4803269eb8b64dcb9f6a7c84b972258d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPGcaQEmMO7PVkqHvdcgXk2edxM=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.222332+00 2025-12-09 10:15:01.222336+00 8926 1072FWF#黄色-V5曲线 SPMX-20240815304083 \N \N \N 1 \N [{"file_id": "b007fc64-1f91-4322-aa5c-f87e5f5bbd33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaedeb0fec2048ba89195b169332ce29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaedeb0fec2048ba89195b169332ce29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaedeb0fec2048ba89195b169332ce29.jpg", "file_size": 8930, "is_delete": false, "file_type": 1, "original_file_name": "1072FWF#黄色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaedeb0fec2048ba89195b169332ce29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaedeb0fec2048ba89195b169332ce29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaedeb0fec2048ba89195b169332ce29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaedeb0fec2048ba89195b169332ce29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaedeb0fec2048ba89195b169332ce29.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fi72DA2OMXExvJgDrkR_uuWQdXs=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.223848+00 2025-12-09 10:15:01.223853+00 8927 80322#小童 SPMX-20240815304090 \N \N \N 1 \N [{"file_id": "7b195422-3a4a-4913-9e4e-3917ae1bb152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a5e05cc1bb4984a619a967a4104a79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a5e05cc1bb4984a619a967a4104a79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a5e05cc1bb4984a619a967a4104a79.jpg", "file_size": 30085, "is_delete": false, "file_type": 1, "original_file_name": "80322#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a5e05cc1bb4984a619a967a4104a79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a5e05cc1bb4984a619a967a4104a79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a5e05cc1bb4984a619a967a4104a79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a5e05cc1bb4984a619a967a4104a79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a5e05cc1bb4984a619a967a4104a79.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMvON7lSoYXe0xK-ziZKURYjxog=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.225373+00 2025-12-09 10:15:01.225378+00 8928 HT0101-76#WJC22 SPMX-20240815304092 \N \N \N 1 \N [{"file_id": "3b7d00f3-15f9-4e78-9107-5bb06b053f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77dd4cb477874b39a89425f6f67f6f9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77dd4cb477874b39a89425f6f67f6f9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77dd4cb477874b39a89425f6f67f6f9a.jpg", "file_size": 29128, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-76#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dd4cb477874b39a89425f6f67f6f9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dd4cb477874b39a89425f6f67f6f9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dd4cb477874b39a89425f6f67f6f9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77dd4cb477874b39a89425f6f67f6f9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77dd4cb477874b39a89425f6f67f6f9a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0Sl3rZF-ZoR2xfAFqX9ez0sYa0=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.226901+00 2025-12-09 10:15:01.226905+00 8929 0003-408#WJC22 SPMX-20240815304088 \N \N \N 1 \N [{"file_id": "f3ffd792-285f-4a34-b59f-d786456180e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "588997a9bdb94087aa3ce210d3871033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "588997a9bdb94087aa3ce210d3871033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "588997a9bdb94087aa3ce210d3871033.jpg", "file_size": 17849, "is_delete": false, "file_type": 1, "original_file_name": "0003-408#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588997a9bdb94087aa3ce210d3871033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588997a9bdb94087aa3ce210d3871033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588997a9bdb94087aa3ce210d3871033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/588997a9bdb94087aa3ce210d3871033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/588997a9bdb94087aa3ce210d3871033.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvGQkFULi0VoGIf0KJk-MvkUpl4=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.228678+00 2025-12-09 10:15:01.228683+00 8930 DL30435#浅粉匹布 SPMX-20240815304105 \N \N \N 1 \N [{"file_id": "1e4fcdb5-e461-46ca-87a6-5aecc1f1efaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35cec8828c4643de95144bfc366767e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35cec8828c4643de95144bfc366767e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35cec8828c4643de95144bfc366767e8.jpg", "file_size": 17277, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅粉匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cec8828c4643de95144bfc366767e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cec8828c4643de95144bfc366767e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cec8828c4643de95144bfc366767e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35cec8828c4643de95144bfc366767e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35cec8828c4643de95144bfc366767e8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hUgNM_yMcofdQ1OV_4mZh4okrc=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.230208+00 2025-12-09 10:15:01.230212+00 8931 1073#湖绿色 SPMX-20240815304104 \N \N \N 1 \N [{"file_id": "f0ccd891-6d90-4a51-8e82-47945b3b9a65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce6f65cf7b5f46b8acfec47bf8683edc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce6f65cf7b5f46b8acfec47bf8683edc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce6f65cf7b5f46b8acfec47bf8683edc.jpg", "file_size": 17034, "is_delete": false, "file_type": 1, "original_file_name": "1073#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6f65cf7b5f46b8acfec47bf8683edc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6f65cf7b5f46b8acfec47bf8683edc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6f65cf7b5f46b8acfec47bf8683edc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce6f65cf7b5f46b8acfec47bf8683edc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce6f65cf7b5f46b8acfec47bf8683edc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQ1FuYoub3Z86aajKr-2emrvyvA=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.231733+00 2025-12-09 10:15:01.231738+00 8932 C338FWF#橘色S-左前 SPMX-20240815304095 \N \N \N 1 \N [{"file_id": "7e4c3fe6-6467-4277-9d0f-16c069a78af9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1343eff6d3247b9b9d62d6c59fc7fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1343eff6d3247b9b9d62d6c59fc7fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1343eff6d3247b9b9d62d6c59fc7fec.jpg", "file_size": 17013, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S-左前.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1343eff6d3247b9b9d62d6c59fc7fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1343eff6d3247b9b9d62d6c59fc7fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1343eff6d3247b9b9d62d6c59fc7fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1343eff6d3247b9b9d62d6c59fc7fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1343eff6d3247b9b9d62d6c59fc7fec.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JpjLkZorbww3pM77Z4aM1znS2UM=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.23325+00 2025-12-09 10:15:01.233254+00 8933 LJ4002#前后幅 SPMX-20240815304111 \N \N \N 1 \N [{"file_id": "108433a5-7629-46f6-be6e-abadb589ceea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7baa0c27cae8413c8c556bd194114fd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7baa0c27cae8413c8c556bd194114fd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7baa0c27cae8413c8c556bd194114fd2.jpg", "file_size": 24196, "is_delete": false, "file_type": 1, "original_file_name": "LJ4002#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7baa0c27cae8413c8c556bd194114fd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7baa0c27cae8413c8c556bd194114fd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7baa0c27cae8413c8c556bd194114fd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7baa0c27cae8413c8c556bd194114fd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7baa0c27cae8413c8c556bd194114fd2.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BfhlIY9URzeRLuI3MIACKrfrK9A=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.234786+00 2025-12-09 10:15:01.23479+00 8934 1073#彩兰色 SPMX-20240815304094 \N \N \N 1 \N [{"file_id": "6b6d7d22-fcba-42f0-9256-45ba6612a29b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d3f948a3555456692306f6453940706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d3f948a3555456692306f6453940706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d3f948a3555456692306f6453940706.jpg", "file_size": 18090, "is_delete": false, "file_type": 1, "original_file_name": "1073#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3f948a3555456692306f6453940706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3f948a3555456692306f6453940706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d3f948a3555456692306f6453940706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d3f948a3555456692306f6453940706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d3f948a3555456692306f6453940706.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BQG3lbXPCGjhgUhl-QQ8KvGFtk=", "createTime": "2024-08-15 14:47:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.236291+00 2025-12-09 10:15:01.236296+00 8935 LZ1242#下身4号色 SPMX-20240815304097 \N \N \N 1 \N [{"file_id": "2d098c7d-c6ec-4b18-afd5-bee20827cfef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d262145a7d93439a970506a30a6d5a27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d262145a7d93439a970506a30a6d5a27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d262145a7d93439a970506a30a6d5a27.jpg", "file_size": 19430, "is_delete": false, "file_type": 1, "original_file_name": "LZ1242#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262145a7d93439a970506a30a6d5a27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262145a7d93439a970506a30a6d5a27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d262145a7d93439a970506a30a6d5a27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d262145a7d93439a970506a30a6d5a27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d262145a7d93439a970506a30a6d5a27.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5kJOU0dsHC-yh74theODbzsaMw=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.237814+00 2025-12-09 10:15:01.237819+00 8936 23-2113#A7领口通用 SPMX-20240815304100 \N \N \N 1 \N [{"file_id": "2022e7fe-5450-44bb-9429-5f9c23080edb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5732d6e7a8864580b60bed2eea39caf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5732d6e7a8864580b60bed2eea39caf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5732d6e7a8864580b60bed2eea39caf2.jpg", "file_size": 8165, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5732d6e7a8864580b60bed2eea39caf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5732d6e7a8864580b60bed2eea39caf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5732d6e7a8864580b60bed2eea39caf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5732d6e7a8864580b60bed2eea39caf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5732d6e7a8864580b60bed2eea39caf2.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIY-6rbBLJYrk6q7EvLsFcQBH-c=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.239346+00 2025-12-09 10:15:01.23935+00 8937 DL30435#浅粉XL SPMX-20240815304093 \N \N \N 1 \N [{"file_id": "01b0750f-823b-456c-ad02-a70cdc986c2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fc06aee949c49288eaa523689daee18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fc06aee949c49288eaa523689daee18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fc06aee949c49288eaa523689daee18.jpg", "file_size": 16895, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc06aee949c49288eaa523689daee18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc06aee949c49288eaa523689daee18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc06aee949c49288eaa523689daee18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fc06aee949c49288eaa523689daee18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fc06aee949c49288eaa523689daee18.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhuIoi6J-8NK8UtNQ6OJvNjtbJM=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.240891+00 2025-12-09 10:15:01.240896+00 8938 C338FWF#橘色S-左袖 SPMX-20240815304106 \N \N \N 1 \N [{"file_id": "b85f637a-7e8d-4ab7-863a-73878c6655ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "703d2c76f64d4e7a9d0032a03d8f8241.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "703d2c76f64d4e7a9d0032a03d8f8241.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "703d2c76f64d4e7a9d0032a03d8f8241.jpg", "file_size": 17368, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S-左袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d2c76f64d4e7a9d0032a03d8f8241.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d2c76f64d4e7a9d0032a03d8f8241.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703d2c76f64d4e7a9d0032a03d8f8241.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/703d2c76f64d4e7a9d0032a03d8f8241.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/703d2c76f64d4e7a9d0032a03d8f8241.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqnhAiGQ6qRUiqRuot6ydsxB6vg=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.242399+00 2025-12-09 10:15:01.242403+00 8939 LZ1243#上身1号色 SPMX-20240815304108 \N \N \N 1 \N [{"file_id": "86995ab1-de99-463a-89a3-bb89313c7444", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08b379dbff1c4ac58fa7c9eadb15f516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08b379dbff1c4ac58fa7c9eadb15f516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08b379dbff1c4ac58fa7c9eadb15f516.jpg", "file_size": 19600, "is_delete": false, "file_type": 1, "original_file_name": "LZ1243#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b379dbff1c4ac58fa7c9eadb15f516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b379dbff1c4ac58fa7c9eadb15f516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b379dbff1c4ac58fa7c9eadb15f516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08b379dbff1c4ac58fa7c9eadb15f516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08b379dbff1c4ac58fa7c9eadb15f516.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMduQE5crmDvDYZ9r6m_oh_prZY=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.243908+00 2025-12-09 10:15:01.243912+00 8940 23-2113#A7领子通用 SPMX-20240815304110 \N \N \N 1 \N [{"file_id": "71393a9e-abc7-42ac-ba47-4aa15ecd37de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4f559085e4e4ecfbbcbd463e0baa7be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4f559085e4e4ecfbbcbd463e0baa7be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4f559085e4e4ecfbbcbd463e0baa7be.jpg", "file_size": 9927, "is_delete": false, "file_type": 1, "original_file_name": "23-2113#A7领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f559085e4e4ecfbbcbd463e0baa7be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f559085e4e4ecfbbcbd463e0baa7be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f559085e4e4ecfbbcbd463e0baa7be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4f559085e4e4ecfbbcbd463e0baa7be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4f559085e4e4ecfbbcbd463e0baa7be.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Fq_hLBZuv7MTG2vV4zrlvnXOME=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.245442+00 2025-12-09 10:15:01.245446+00 8941 HT0101-77#WJC22 SPMX-20240815304103 \N \N \N 1 \N [{"file_id": "c3392062-b183-443b-9c0c-2f7b18db8345", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c635914ede644b70a5f936dfaba7f12e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c635914ede644b70a5f936dfaba7f12e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c635914ede644b70a5f936dfaba7f12e.jpg", "file_size": 20728, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-77#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c635914ede644b70a5f936dfaba7f12e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c635914ede644b70a5f936dfaba7f12e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c635914ede644b70a5f936dfaba7f12e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c635914ede644b70a5f936dfaba7f12e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c635914ede644b70a5f936dfaba7f12e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsxQ-tM_YtqiiVVxbB88RvJHmtM=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.246957+00 2025-12-09 10:15:01.24696+00 8942 FHXGPK-116-5 SPMX-20240815304109 \N \N \N 1 \N [{"file_id": "e7f06315-ac89-430b-9703-8b4c3ac1884c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c5e8881bde44bb692fe071c93a009ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c5e8881bde44bb692fe071c93a009ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c5e8881bde44bb692fe071c93a009ed.jpg", "file_size": 26240, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-116-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5e8881bde44bb692fe071c93a009ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5e8881bde44bb692fe071c93a009ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5e8881bde44bb692fe071c93a009ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c5e8881bde44bb692fe071c93a009ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c5e8881bde44bb692fe071c93a009ed.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSUn5RlVjh_JiSAmrC6R8laJy_0=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.248474+00 2025-12-09 10:15:01.248479+00 8943 80323#中童 SPMX-20240815304101 \N \N \N 1 \N [{"file_id": "7994668a-4b1c-4265-b34f-5f00ddd278a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f2cf93e9cbb412187c17934beefde79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f2cf93e9cbb412187c17934beefde79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f2cf93e9cbb412187c17934beefde79.jpg", "file_size": 25289, "is_delete": false, "file_type": 1, "original_file_name": "80323#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cf93e9cbb412187c17934beefde79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cf93e9cbb412187c17934beefde79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2cf93e9cbb412187c17934beefde79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f2cf93e9cbb412187c17934beefde79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f2cf93e9cbb412187c17934beefde79.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BDah6a2NVvizAbt1whVpI1091_I=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.250005+00 2025-12-09 10:15:01.250009+00 8944 FHXGPK-116-4 SPMX-20240815304098 \N \N \N 1 \N [{"file_id": "4ea27913-a1ed-4c7f-9aa6-9d946a211923", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edae81a10b434edfa9ddd52b1183d81f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edae81a10b434edfa9ddd52b1183d81f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edae81a10b434edfa9ddd52b1183d81f.jpg", "file_size": 24575, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-116-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae81a10b434edfa9ddd52b1183d81f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae81a10b434edfa9ddd52b1183d81f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edae81a10b434edfa9ddd52b1183d81f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edae81a10b434edfa9ddd52b1183d81f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edae81a10b434edfa9ddd52b1183d81f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkPJ_4ly1dftw-OgDK3AcrgObaA=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.251519+00 2025-12-09 10:15:01.251523+00 8945 JTSS070FW#VS-D3 SPMX-20240815304107 \N \N \N 1 \N [{"file_id": "e4a5ac98-6e2d-4675-bf0a-f81ab4c3169c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4577aff5ed84423aabd1c4d45c1bb65b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4577aff5ed84423aabd1c4d45c1bb65b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4577aff5ed84423aabd1c4d45c1bb65b.jpg", "file_size": 16149, "is_delete": false, "file_type": 1, "original_file_name": "JTSS070FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4577aff5ed84423aabd1c4d45c1bb65b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4577aff5ed84423aabd1c4d45c1bb65b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4577aff5ed84423aabd1c4d45c1bb65b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4577aff5ed84423aabd1c4d45c1bb65b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4577aff5ed84423aabd1c4d45c1bb65b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OgpAXs_s4SEpk5wLl5e50MspFNU=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.253045+00 2025-12-09 10:15:01.253049+00 8946 0003-409#WJC22 SPMX-20240815304102 \N \N \N 1 \N [{"file_id": "5e65a1ce-fb14-43b7-a023-1b1c9e2319a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e1d267394a34d629b07fd5bdce6a10d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e1d267394a34d629b07fd5bdce6a10d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e1d267394a34d629b07fd5bdce6a10d.jpg", "file_size": 16457, "is_delete": false, "file_type": 1, "original_file_name": "0003-409#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1d267394a34d629b07fd5bdce6a10d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1d267394a34d629b07fd5bdce6a10d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1d267394a34d629b07fd5bdce6a10d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e1d267394a34d629b07fd5bdce6a10d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e1d267394a34d629b07fd5bdce6a10d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjCR3dj0i-O9CFC2kvKzkOEyQzc=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.254536+00 2025-12-09 10:15:01.25454+00 8947 JTSS070#VS-D3 SPMX-20240815304096 \N \N \N 1 \N [{"file_id": "9b53726c-03a1-4713-adde-4c5b6bf992e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86ec4093587a47e1be396dff7ce6eb22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86ec4093587a47e1be396dff7ce6eb22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86ec4093587a47e1be396dff7ce6eb22.jpg", "file_size": 10320, "is_delete": false, "file_type": 1, "original_file_name": "JTSS070#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ec4093587a47e1be396dff7ce6eb22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ec4093587a47e1be396dff7ce6eb22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ec4093587a47e1be396dff7ce6eb22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86ec4093587a47e1be396dff7ce6eb22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86ec4093587a47e1be396dff7ce6eb22.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C92lHqMq7EC8PHtDtoSAADeSUO8=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.25606+00 2025-12-09 10:15:01.256064+00 8948 LJ4001#袖子 SPMX-20240815304099 \N \N \N 1 \N [{"file_id": "701772a4-a086-4a92-adec-42adf28aca93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5d75b5f961e420fbc46a54dd68acfc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5d75b5f961e420fbc46a54dd68acfc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5d75b5f961e420fbc46a54dd68acfc0.jpg", "file_size": 31020, "is_delete": false, "file_type": 1, "original_file_name": "LJ4001#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d75b5f961e420fbc46a54dd68acfc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d75b5f961e420fbc46a54dd68acfc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d75b5f961e420fbc46a54dd68acfc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5d75b5f961e420fbc46a54dd68acfc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5d75b5f961e420fbc46a54dd68acfc0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qg8Q1-Z2wclvGXYsO-dNtFdwMsg=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.257848+00 2025-12-09 10:15:01.257852+00 8949 80323#匹布 SPMX-20240815304121 \N \N \N 1 \N [{"file_id": "219b8ec7-3db0-4bf0-8c4d-9dbc5c974c5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f17f0332cdad449eb88052cf4d882c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f17f0332cdad449eb88052cf4d882c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f17f0332cdad449eb88052cf4d882c2a.jpg", "file_size": 6404, "is_delete": false, "file_type": 1, "original_file_name": "80323#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17f0332cdad449eb88052cf4d882c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17f0332cdad449eb88052cf4d882c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f17f0332cdad449eb88052cf4d882c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f17f0332cdad449eb88052cf4d882c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f17f0332cdad449eb88052cf4d882c2a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5L0pywFKMWi43tO6ksa3vmQrtS4=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.259644+00 2025-12-09 10:15:01.259648+00 8950 23-2114#-3XL SPMX-20240815304122 \N \N \N 1 \N [{"file_id": "cbe5bd7a-1cc9-4710-9b86-571a17fffa25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4860e09257b44a0af6c4a02a2ae7925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4860e09257b44a0af6c4a02a2ae7925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4860e09257b44a0af6c4a02a2ae7925.jpg", "file_size": 19110, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4860e09257b44a0af6c4a02a2ae7925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4860e09257b44a0af6c4a02a2ae7925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4860e09257b44a0af6c4a02a2ae7925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4860e09257b44a0af6c4a02a2ae7925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4860e09257b44a0af6c4a02a2ae7925.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPOVGWojmAONIo7Wsr0asvtu1f0=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.261452+00 2025-12-09 10:15:01.261456+00 8951 HT0101-78#WJC22 SPMX-20240815304114 \N \N \N 1 \N [{"file_id": "ff17b540-96f6-441c-94a5-3f7fbf7b3d4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b692ddb3fb2648b9be44b5c83702e762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b692ddb3fb2648b9be44b5c83702e762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b692ddb3fb2648b9be44b5c83702e762.jpg", "file_size": 29376, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-78#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b692ddb3fb2648b9be44b5c83702e762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b692ddb3fb2648b9be44b5c83702e762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b692ddb3fb2648b9be44b5c83702e762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b692ddb3fb2648b9be44b5c83702e762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b692ddb3fb2648b9be44b5c83702e762.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nf-Qzo40NOUj6ybljBUYPMIRbSI=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.263257+00 2025-12-09 10:15:01.263261+00 8952 C338FWF#橘色S-补片上衣 SPMX-20240815304120 \N \N \N 1 \N [{"file_id": "95ead1c1-4a57-473c-bd40-6d7417ead478", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "594fb5a44d7b4a9ea5743766564ce1b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "594fb5a44d7b4a9ea5743766564ce1b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "594fb5a44d7b4a9ea5743766564ce1b5.jpg", "file_size": 22703, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S-补片上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/594fb5a44d7b4a9ea5743766564ce1b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/594fb5a44d7b4a9ea5743766564ce1b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/594fb5a44d7b4a9ea5743766564ce1b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/594fb5a44d7b4a9ea5743766564ce1b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/594fb5a44d7b4a9ea5743766564ce1b5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qngss0JWA9DuO07tDdC6L00ynTQ=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.26527+00 2025-12-09 10:15:01.265274+00 8953 1073#豆沙色 SPMX-20240815304126 \N \N \N 1 \N [{"file_id": "49a1d492-3aac-49a2-aec7-21ab35d22915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg", "file_size": 15339, "is_delete": false, "file_type": 1, "original_file_name": "1073#豆沙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce58cf29e3fe43b5a05cd80b7b2d2d47.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qppY2CRdzQ56PFx5n5r7kCmy2Ks=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.267302+00 2025-12-09 10:15:01.267306+00 8954 1073#藏青色 SPMX-20240815304115 \N \N \N 1 \N [{"file_id": "42f7da34-e1ae-4898-83d5-df994322a658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de2edd5779014a01b6438f23afc6c3d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de2edd5779014a01b6438f23afc6c3d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de2edd5779014a01b6438f23afc6c3d6.jpg", "file_size": 18922, "is_delete": false, "file_type": 1, "original_file_name": "1073#藏青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de2edd5779014a01b6438f23afc6c3d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de2edd5779014a01b6438f23afc6c3d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de2edd5779014a01b6438f23afc6c3d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de2edd5779014a01b6438f23afc6c3d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de2edd5779014a01b6438f23afc6c3d6.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJzEGReMY_O4Lca4xuRkUta8TiI=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.269367+00 2025-12-09 10:15:01.269371+00 8955 HT0101-79#WJC22 SPMX-20240815304125 \N \N \N 1 \N [{"file_id": "9cce9e73-536b-4e2e-82d3-be99bc67d911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6983251acb884dc1948a41d633bae8dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6983251acb884dc1948a41d633bae8dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6983251acb884dc1948a41d633bae8dc.jpg", "file_size": 26523, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-79#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6983251acb884dc1948a41d633bae8dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6983251acb884dc1948a41d633bae8dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6983251acb884dc1948a41d633bae8dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6983251acb884dc1948a41d633bae8dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6983251acb884dc1948a41d633bae8dc.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwU4fzsuNr9q0FIO_klUCTGRXog=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.271161+00 2025-12-09 10:15:01.271165+00 8956 LZ1243#上身2号色 SPMX-20240815304118 \N \N \N 1 \N [{"file_id": "b4f769da-0e98-48a3-84c6-a571d36942bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d60a5b5e9420400ea808101dde28b32d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d60a5b5e9420400ea808101dde28b32d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d60a5b5e9420400ea808101dde28b32d.jpg", "file_size": 18536, "is_delete": false, "file_type": 1, "original_file_name": "LZ1243#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60a5b5e9420400ea808101dde28b32d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60a5b5e9420400ea808101dde28b32d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60a5b5e9420400ea808101dde28b32d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d60a5b5e9420400ea808101dde28b32d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d60a5b5e9420400ea808101dde28b32d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bc8O-swTOKKGQfLOr6DoLUz0vGc=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.272673+00 2025-12-09 10:15:01.272678+00 8957 DL30435#浅蓝绿L SPMX-20240815304127 \N \N \N 1 \N [{"file_id": "caf822b2-c185-4a47-821e-829ed4b3066d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c6addfc5909467186ea83d81bced70a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c6addfc5909467186ea83d81bced70a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c6addfc5909467186ea83d81bced70a.jpg", "file_size": 18036, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅蓝绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c6addfc5909467186ea83d81bced70a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c6addfc5909467186ea83d81bced70a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c6addfc5909467186ea83d81bced70a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c6addfc5909467186ea83d81bced70a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c6addfc5909467186ea83d81bced70a.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Lmtj2h6k746blqGYu8flTq1TCk=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.274206+00 2025-12-09 10:15:01.27421+00 8958 DL30435#浅蓝绿2XL SPMX-20240815304116 \N \N \N 1 \N [{"file_id": "87ef5293-c62c-4225-8c01-4571e1869744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "245af7b271e945c8b4e1c4472113f501.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "245af7b271e945c8b4e1c4472113f501.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "245af7b271e945c8b4e1c4472113f501.jpg", "file_size": 19079, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅蓝绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245af7b271e945c8b4e1c4472113f501.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245af7b271e945c8b4e1c4472113f501.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245af7b271e945c8b4e1c4472113f501.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/245af7b271e945c8b4e1c4472113f501.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/245af7b271e945c8b4e1c4472113f501.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozp78vdmotWj9r7iTAmD1wKmNoM=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.275739+00 2025-12-09 10:15:01.275743+00 8959 80323#前幅 SPMX-20240815304112 \N \N \N 1 \N [{"file_id": "57af17fc-2bc1-4930-9141-6372cce7f6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e83c044db7964e1abaa9b448257b1009.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e83c044db7964e1abaa9b448257b1009.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e83c044db7964e1abaa9b448257b1009.jpg", "file_size": 16658, "is_delete": false, "file_type": 1, "original_file_name": "80323#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c044db7964e1abaa9b448257b1009.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c044db7964e1abaa9b448257b1009.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c044db7964e1abaa9b448257b1009.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e83c044db7964e1abaa9b448257b1009.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e83c044db7964e1abaa9b448257b1009.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ZS8KYlKzDuVyvs_tXjhGQBKsY4=", "createTime": "2024-08-15 14:47:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.277251+00 2025-12-09 10:15:01.277255+00 8960 LJ4002#袖子 SPMX-20240815304123 \N \N \N 1 \N [{"file_id": "ac60ca29-11b3-488c-878a-b8443896fd58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e73359f3f59540248b7a2a60d07b23a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e73359f3f59540248b7a2a60d07b23a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e73359f3f59540248b7a2a60d07b23a1.jpg", "file_size": 31089, "is_delete": false, "file_type": 1, "original_file_name": "LJ4002#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e73359f3f59540248b7a2a60d07b23a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e73359f3f59540248b7a2a60d07b23a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e73359f3f59540248b7a2a60d07b23a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e73359f3f59540248b7a2a60d07b23a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e73359f3f59540248b7a2a60d07b23a1.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYF-vNAh5zSTFQPr6BripPOe9GM=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.278768+00 2025-12-09 10:15:01.278772+00 8961 0003-409#领子 SPMX-20240815304113 \N \N \N 1 \N [{"file_id": "fa523dfc-8641-4947-9f5a-7bd17260b112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a83dfcf83c8c468d921ac75a10943141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a83dfcf83c8c468d921ac75a10943141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a83dfcf83c8c468d921ac75a10943141.jpg", "file_size": 14264, "is_delete": false, "file_type": 1, "original_file_name": "0003-409#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83dfcf83c8c468d921ac75a10943141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83dfcf83c8c468d921ac75a10943141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83dfcf83c8c468d921ac75a10943141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a83dfcf83c8c468d921ac75a10943141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a83dfcf83c8c468d921ac75a10943141.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CECwAYzIiL-AjeIGqY7WPFWMgwk=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.280289+00 2025-12-09 10:15:01.280294+00 8962 0003-40FWF#上身 SPMX-20240815304124 \N \N \N 1 \N [{"file_id": "526d59ef-1370-44fe-9682-545f314dcde1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8df0ea45b849bcbb94c89a41e43ca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8df0ea45b849bcbb94c89a41e43ca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8df0ea45b849bcbb94c89a41e43ca3.jpg", "file_size": 13455, "is_delete": false, "file_type": 1, "original_file_name": "0003-40FWF#上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8df0ea45b849bcbb94c89a41e43ca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8df0ea45b849bcbb94c89a41e43ca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8df0ea45b849bcbb94c89a41e43ca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8df0ea45b849bcbb94c89a41e43ca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8df0ea45b849bcbb94c89a41e43ca3.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4OqULsjqLQzcqd9-j9KBZ77VfE=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.282121+00 2025-12-09 10:15:01.282125+00 8963 JTSS071#VS-D3 SPMX-20240815304117 \N \N \N 1 \N [{"file_id": "e8f5784e-469e-4ca8-aa08-c5fdf6767893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ee05bc19fe34733b262e596ffcd77bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ee05bc19fe34733b262e596ffcd77bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ee05bc19fe34733b262e596ffcd77bd.jpg", "file_size": 11024, "is_delete": false, "file_type": 1, "original_file_name": "JTSS071#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee05bc19fe34733b262e596ffcd77bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee05bc19fe34733b262e596ffcd77bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ee05bc19fe34733b262e596ffcd77bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ee05bc19fe34733b262e596ffcd77bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ee05bc19fe34733b262e596ffcd77bd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7nhe7i55_dhVuuHcFvI8AiAjVA=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.283623+00 2025-12-09 10:15:01.283627+00 8964 FHXGPK-117-1 SPMX-20240815304119 \N \N \N 1 \N [{"file_id": "f2ee6e90-deff-4bb1-9aba-4851afcf67e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5af89048ddb74a5b90fb725c56ff0782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5af89048ddb74a5b90fb725c56ff0782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5af89048ddb74a5b90fb725c56ff0782.jpg", "file_size": 21509, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-117-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af89048ddb74a5b90fb725c56ff0782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af89048ddb74a5b90fb725c56ff0782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af89048ddb74a5b90fb725c56ff0782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5af89048ddb74a5b90fb725c56ff0782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5af89048ddb74a5b90fb725c56ff0782.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1dZBDiCwa5EGneees8GQvBHqmk=", "createTime": "2024-08-15 14:47:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.285197+00 2025-12-09 10:15:01.285201+00 8965 JTSS071FW#VS-D3 SPMX-20240815304128 \N \N \N 1 \N [{"file_id": "41c17bd1-71b5-4d90-87b7-557c272842c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1db771dd55bc4f7b9d20e6935e7dd187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1db771dd55bc4f7b9d20e6935e7dd187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1db771dd55bc4f7b9d20e6935e7dd187.jpg", "file_size": 19106, "is_delete": false, "file_type": 1, "original_file_name": "JTSS071FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1db771dd55bc4f7b9d20e6935e7dd187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1db771dd55bc4f7b9d20e6935e7dd187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1db771dd55bc4f7b9d20e6935e7dd187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1db771dd55bc4f7b9d20e6935e7dd187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1db771dd55bc4f7b9d20e6935e7dd187.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHanwQeFRQ4iyIlsWYNLLV8rEag=", "createTime": "2024-08-15 14:47:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.286756+00 2025-12-09 10:15:01.28676+00 8966 1073#黑色 SPMX-20240815304129 \N \N \N 1 \N [{"file_id": "8712772e-a183-42f4-90a7-a0be7074ad9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fd541aa9ff8433e83f7ad88d9e7b226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fd541aa9ff8433e83f7ad88d9e7b226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fd541aa9ff8433e83f7ad88d9e7b226.jpg", "file_size": 18309, "is_delete": false, "file_type": 1, "original_file_name": "1073#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd541aa9ff8433e83f7ad88d9e7b226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd541aa9ff8433e83f7ad88d9e7b226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd541aa9ff8433e83f7ad88d9e7b226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fd541aa9ff8433e83f7ad88d9e7b226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fd541aa9ff8433e83f7ad88d9e7b226.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0AElmC55eoWbC48m6-MpcC_tjDY=", "createTime": "2024-08-15 14:47:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.288291+00 2025-12-09 10:15:01.288295+00 8967 HT0101-8#WJC22 SPMX-20240815304135 \N \N \N 1 \N [{"file_id": "f9caa845-6579-43df-abc5-812cf47b92d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82c82b8190214a0ebfb6f73eba30c610.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82c82b8190214a0ebfb6f73eba30c610.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82c82b8190214a0ebfb6f73eba30c610.jpg", "file_size": 25585, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-8#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c82b8190214a0ebfb6f73eba30c610.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c82b8190214a0ebfb6f73eba30c610.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c82b8190214a0ebfb6f73eba30c610.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82c82b8190214a0ebfb6f73eba30c610.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82c82b8190214a0ebfb6f73eba30c610.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fp1DNmgpX8-O9H98VD_jy6OSpt4=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.289864+00 2025-12-09 10:15:01.289868+00 8968 FHXGPK-117-2 SPMX-20240815304132 \N \N \N 1 \N [{"file_id": "565efcb6-8358-41a1-82aa-22532ddc2116", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a74e64909184d0c9a10e754f3fb2636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a74e64909184d0c9a10e754f3fb2636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a74e64909184d0c9a10e754f3fb2636.jpg", "file_size": 20678, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-117-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a74e64909184d0c9a10e754f3fb2636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a74e64909184d0c9a10e754f3fb2636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a74e64909184d0c9a10e754f3fb2636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a74e64909184d0c9a10e754f3fb2636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a74e64909184d0c9a10e754f3fb2636.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7IBUMcrmgehyp0mAkB5QHBOPKA=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.291399+00 2025-12-09 10:15:01.291402+00 8969 80323#后幅 SPMX-20240815304133 \N \N \N 1 \N [{"file_id": "92fc610e-0730-4cda-903b-f03f714b854f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e58f3ab80796441d985738e14fcf43a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e58f3ab80796441d985738e14fcf43a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e58f3ab80796441d985738e14fcf43a5.jpg", "file_size": 15070, "is_delete": false, "file_type": 1, "original_file_name": "80323#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58f3ab80796441d985738e14fcf43a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58f3ab80796441d985738e14fcf43a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58f3ab80796441d985738e14fcf43a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e58f3ab80796441d985738e14fcf43a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e58f3ab80796441d985738e14fcf43a5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6v6kWnzLsed5P8C8dWJsUNnclk=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.293217+00 2025-12-09 10:15:01.293221+00 8970 0003-40FWF#下身 SPMX-20240815304134 \N \N \N 1 \N [{"file_id": "69d9bf3a-4d60-4322-8bc8-588b46434f62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e259faadd7f40529febc348ea50b76f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e259faadd7f40529febc348ea50b76f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e259faadd7f40529febc348ea50b76f.jpg", "file_size": 18723, "is_delete": false, "file_type": 1, "original_file_name": "0003-40FWF#下身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e259faadd7f40529febc348ea50b76f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e259faadd7f40529febc348ea50b76f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e259faadd7f40529febc348ea50b76f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e259faadd7f40529febc348ea50b76f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e259faadd7f40529febc348ea50b76f.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQMBOnClAdM8pDugS6n7ru5J0tY=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.29483+00 2025-12-09 10:15:01.294835+00 8971 C338FWF#橘色S SPMX-20240815304137 \N \N \N 1 \N [{"file_id": "3acc8a30-c220-41a0-ab05-7aaa58c4bf53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c77189841e94c6d97a0e06828e8ca35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c77189841e94c6d97a0e06828e8ca35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c77189841e94c6d97a0e06828e8ca35.jpg", "file_size": 19397, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c77189841e94c6d97a0e06828e8ca35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c77189841e94c6d97a0e06828e8ca35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c77189841e94c6d97a0e06828e8ca35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c77189841e94c6d97a0e06828e8ca35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c77189841e94c6d97a0e06828e8ca35.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrGZ0zlrA5p-NQM_Ro3-5Hofp9M=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.296388+00 2025-12-09 10:15:01.296393+00 8972 23-2114#-4XL SPMX-20240815304131 \N \N \N 1 \N [{"file_id": "f6c615ce-6b98-496c-840c-1c22222c02b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e87c3505a5c5477b945cca5d9c36b9f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e87c3505a5c5477b945cca5d9c36b9f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e87c3505a5c5477b945cca5d9c36b9f5.jpg", "file_size": 18219, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87c3505a5c5477b945cca5d9c36b9f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87c3505a5c5477b945cca5d9c36b9f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87c3505a5c5477b945cca5d9c36b9f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e87c3505a5c5477b945cca5d9c36b9f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e87c3505a5c5477b945cca5d9c36b9f5.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRoNrdCCyl0_TKkGCwBoHE81mFY=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.297934+00 2025-12-09 10:15:01.297938+00 8973 LJ4003#前后幅 SPMX-20240815304130 \N \N \N 1 \N [{"file_id": "be672fe9-9c5b-4e29-92c3-cbb6086e14ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4579102d9ca0451a81fa6fb4de29fb21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4579102d9ca0451a81fa6fb4de29fb21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4579102d9ca0451a81fa6fb4de29fb21.jpg", "file_size": 25084, "is_delete": false, "file_type": 1, "original_file_name": "LJ4003#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4579102d9ca0451a81fa6fb4de29fb21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4579102d9ca0451a81fa6fb4de29fb21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4579102d9ca0451a81fa6fb4de29fb21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4579102d9ca0451a81fa6fb4de29fb21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4579102d9ca0451a81fa6fb4de29fb21.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BDwaKeSIJfLVD_4OUr6zUry6Lbg=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.299484+00 2025-12-09 10:15:01.299489+00 8974 LZ1243#上身3号色 SPMX-20240815304138 \N \N \N 1 \N [{"file_id": "c300414e-ea71-46d0-ae83-b5755a122eb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5c47a7380474aeeb39466de4ef9425b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5c47a7380474aeeb39466de4ef9425b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5c47a7380474aeeb39466de4ef9425b.jpg", "file_size": 19625, "is_delete": false, "file_type": 1, "original_file_name": "LZ1243#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c47a7380474aeeb39466de4ef9425b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c47a7380474aeeb39466de4ef9425b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c47a7380474aeeb39466de4ef9425b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5c47a7380474aeeb39466de4ef9425b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5c47a7380474aeeb39466de4ef9425b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_XNxOPmD-08kQzd9P4DkPsdeY0=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.301222+00 2025-12-09 10:15:01.301226+00 8975 JTSS072#VS-D3 SPMX-20240815304136 \N \N \N 1 \N [{"file_id": "14ce42fc-e1b7-4434-a6de-60a91b80d816", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63857d0e017a40ba882ead452a80f7d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63857d0e017a40ba882ead452a80f7d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63857d0e017a40ba882ead452a80f7d8.jpg", "file_size": 18644, "is_delete": false, "file_type": 1, "original_file_name": "JTSS072#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63857d0e017a40ba882ead452a80f7d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63857d0e017a40ba882ead452a80f7d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63857d0e017a40ba882ead452a80f7d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63857d0e017a40ba882ead452a80f7d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63857d0e017a40ba882ead452a80f7d8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXHt-eEcMrI_hM1Syu9abn-HYnk=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.302766+00 2025-12-09 10:15:01.30277+00 8976 1073-1#亮黄色 SPMX-20240815304139 \N \N \N 1 \N [{"file_id": "00e9867f-8dce-4442-a4ca-642be1aa2c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b00ad72d7b844a59a3cfc1a892bc587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b00ad72d7b844a59a3cfc1a892bc587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b00ad72d7b844a59a3cfc1a892bc587.jpg", "file_size": 15941, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00ad72d7b844a59a3cfc1a892bc587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00ad72d7b844a59a3cfc1a892bc587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00ad72d7b844a59a3cfc1a892bc587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b00ad72d7b844a59a3cfc1a892bc587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b00ad72d7b844a59a3cfc1a892bc587.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LuP8JjBSl21zgVFK_YQKvuEMSMc=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.304324+00 2025-12-09 10:15:01.304328+00 8977 LJ4003#袖子 SPMX-20240815304140 \N \N \N 1 \N [{"file_id": "b930a08e-1f4c-450b-96a7-e47dbe35f4d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c309dbd0ae541f38d73f807a2b978c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c309dbd0ae541f38d73f807a2b978c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c309dbd0ae541f38d73f807a2b978c9.jpg", "file_size": 34706, "is_delete": false, "file_type": 1, "original_file_name": "LJ4003#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c309dbd0ae541f38d73f807a2b978c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c309dbd0ae541f38d73f807a2b978c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c309dbd0ae541f38d73f807a2b978c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c309dbd0ae541f38d73f807a2b978c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c309dbd0ae541f38d73f807a2b978c9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXCI4lYybYdYek5eyGfAJXdCdSI=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.305916+00 2025-12-09 10:15:01.30592+00 8978 23-2114#-A14前后片3X SPMX-20240815304141 \N \N \N 1 \N [{"file_id": "85239614-21dd-45a2-8e0e-c1950f712333", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4e176216877458a91d868021a787df4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4e176216877458a91d868021a787df4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4e176216877458a91d868021a787df4.jpg", "file_size": 9895, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14前后片3X.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e176216877458a91d868021a787df4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e176216877458a91d868021a787df4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e176216877458a91d868021a787df4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4e176216877458a91d868021a787df4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4e176216877458a91d868021a787df4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WArCdEvxho-XIbof2XgZYR-fsls=", "createTime": "2024-08-15 14:47:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.307494+00 2025-12-09 10:15:01.307499+00 8979 0003-410#WJC22 SPMX-20240815304142 \N \N \N 1 \N [{"file_id": "d272eb10-6292-4b6f-8a27-2753c31c17ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8beab55651ee46b285c28044094eea8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8beab55651ee46b285c28044094eea8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8beab55651ee46b285c28044094eea8c.jpg", "file_size": 29134, "is_delete": false, "file_type": 1, "original_file_name": "0003-410#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8beab55651ee46b285c28044094eea8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8beab55651ee46b285c28044094eea8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8beab55651ee46b285c28044094eea8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8beab55651ee46b285c28044094eea8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8beab55651ee46b285c28044094eea8c.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gkn-9EVguAyeYwMkR9IL08yhy6M=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.30933+00 2025-12-09 10:15:01.309334+00 8980 80323#小童 SPMX-20240815304146 \N \N \N 1 \N [{"file_id": "e781e49e-418a-4cda-b589-43836a4232f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29834268b7de43148142fc9282fbf3d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29834268b7de43148142fc9282fbf3d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29834268b7de43148142fc9282fbf3d9.jpg", "file_size": 25938, "is_delete": false, "file_type": 1, "original_file_name": "80323#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29834268b7de43148142fc9282fbf3d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29834268b7de43148142fc9282fbf3d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29834268b7de43148142fc9282fbf3d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29834268b7de43148142fc9282fbf3d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29834268b7de43148142fc9282fbf3d9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3IeYDCDTPeaor5bVaFFGeW8h4s=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.310973+00 2025-12-09 10:15:01.310979+00 8981 C338FWF#橘色XL-右袖 SPMX-20240815304144 \N \N \N 1 \N [{"file_id": "9383250b-d84d-4467-86ce-937763e91504", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c420242028254d749ea3a9f3a4a3e41e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c420242028254d749ea3a9f3a4a3e41e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c420242028254d749ea3a9f3a4a3e41e.jpg", "file_size": 16858, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色XL-右袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c420242028254d749ea3a9f3a4a3e41e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c420242028254d749ea3a9f3a4a3e41e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c420242028254d749ea3a9f3a4a3e41e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c420242028254d749ea3a9f3a4a3e41e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c420242028254d749ea3a9f3a4a3e41e.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKQfnla59_kziYgAG6_fY5f34Zw=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.312619+00 2025-12-09 10:15:01.312623+00 8982 HT0101-80#WJC22 SPMX-20240815304143 \N \N \N 1 \N [{"file_id": "970898e5-89e0-4e0e-ba0f-151f7ed13b54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fc3367d8b854ad4a8ee9593c80a9641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fc3367d8b854ad4a8ee9593c80a9641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fc3367d8b854ad4a8ee9593c80a9641.jpg", "file_size": 29979, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-80#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc3367d8b854ad4a8ee9593c80a9641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc3367d8b854ad4a8ee9593c80a9641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc3367d8b854ad4a8ee9593c80a9641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fc3367d8b854ad4a8ee9593c80a9641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fc3367d8b854ad4a8ee9593c80a9641.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTiAhxr9j7W5aVLEe6zkpxK75ig=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.314477+00 2025-12-09 10:15:01.314482+00 8983 LJ4004#前后幅 SPMX-20240815304145 \N \N \N 1 \N [{"file_id": "a98d0e49-8db9-4e43-8dbd-d8a3dc0a6825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5347f5731124c2abaf7927ccbbf0541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5347f5731124c2abaf7927ccbbf0541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5347f5731124c2abaf7927ccbbf0541.jpg", "file_size": 18589, "is_delete": false, "file_type": 1, "original_file_name": "LJ4004#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5347f5731124c2abaf7927ccbbf0541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5347f5731124c2abaf7927ccbbf0541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5347f5731124c2abaf7927ccbbf0541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5347f5731124c2abaf7927ccbbf0541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5347f5731124c2abaf7927ccbbf0541.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RpSfGNoyige62Jg2hXcR3zf_pwY=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.316063+00 2025-12-09 10:15:01.316067+00 8984 LZ1243#上身4号色 SPMX-20240815304151 \N \N \N 1 \N [{"file_id": "0a18c81e-0f71-41b3-b31c-565ff3afec4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "094bfb377a17452f8de53c2212fb15ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "094bfb377a17452f8de53c2212fb15ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "094bfb377a17452f8de53c2212fb15ab.jpg", "file_size": 18760, "is_delete": false, "file_type": 1, "original_file_name": "LZ1243#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094bfb377a17452f8de53c2212fb15ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094bfb377a17452f8de53c2212fb15ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094bfb377a17452f8de53c2212fb15ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/094bfb377a17452f8de53c2212fb15ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/094bfb377a17452f8de53c2212fb15ab.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LxOEmPMIttfIK7h-auWAwONJVU=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.317647+00 2025-12-09 10:15:01.317652+00 8985 LJ4004#袖子 SPMX-20240815304155 \N \N \N 1 \N [{"file_id": "7552c0ff-eee0-4da8-8392-ac40e9dfea95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14603de3493840e0b0adb4a3ad8bddfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14603de3493840e0b0adb4a3ad8bddfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14603de3493840e0b0adb4a3ad8bddfd.jpg", "file_size": 28521, "is_delete": false, "file_type": 1, "original_file_name": "LJ4004#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14603de3493840e0b0adb4a3ad8bddfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14603de3493840e0b0adb4a3ad8bddfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14603de3493840e0b0adb4a3ad8bddfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14603de3493840e0b0adb4a3ad8bddfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14603de3493840e0b0adb4a3ad8bddfd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ifmo1uVWLgw0NXKhtWcHtrMp4TM=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.319643+00 2025-12-09 10:15:01.319647+00 8986 C338FWF#橘色XL-后片 SPMX-20240815304156 \N \N \N 1 \N [{"file_id": "47844f6d-3a25-4bfc-b15c-9c633b75ab76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d586af7b89e64fac8ce2955d204e2897.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d586af7b89e64fac8ce2955d204e2897.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d586af7b89e64fac8ce2955d204e2897.jpg", "file_size": 19564, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色XL-后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d586af7b89e64fac8ce2955d204e2897.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d586af7b89e64fac8ce2955d204e2897.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d586af7b89e64fac8ce2955d204e2897.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d586af7b89e64fac8ce2955d204e2897.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d586af7b89e64fac8ce2955d204e2897.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5Mu54uZguBYiGY-etzvyQ9Nqn0=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.32152+00 2025-12-09 10:15:01.321524+00 8987 80324#中童 SPMX-20240815304158 \N \N \N 1 \N [{"file_id": "0e950637-8f05-40d0-af30-4f0a1e296ebe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bff661ebb7374394a6ef88b0fe3dcfc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bff661ebb7374394a6ef88b0fe3dcfc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bff661ebb7374394a6ef88b0fe3dcfc9.jpg", "file_size": 23235, "is_delete": false, "file_type": 1, "original_file_name": "80324#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff661ebb7374394a6ef88b0fe3dcfc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff661ebb7374394a6ef88b0fe3dcfc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff661ebb7374394a6ef88b0fe3dcfc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bff661ebb7374394a6ef88b0fe3dcfc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bff661ebb7374394a6ef88b0fe3dcfc9.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNRQgL3FPGEvGw8v9P-PCbsTHII=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.323086+00 2025-12-09 10:15:01.323091+00 8988 JTSS073FW#VS-D3 SPMX-20240815304159 \N \N \N 1 \N [{"file_id": "1e9393c4-90ba-41d6-b900-4a54c00cd1f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81854e8cd8404ffb8a3a9df2a265829b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81854e8cd8404ffb8a3a9df2a265829b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81854e8cd8404ffb8a3a9df2a265829b.jpg", "file_size": 12678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS073FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81854e8cd8404ffb8a3a9df2a265829b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81854e8cd8404ffb8a3a9df2a265829b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81854e8cd8404ffb8a3a9df2a265829b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81854e8cd8404ffb8a3a9df2a265829b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81854e8cd8404ffb8a3a9df2a265829b.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5gpKGJ9-7mZk4PGA0mvrUgKJ5E4=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.324649+00 2025-12-09 10:15:01.324653+00 8989 LZ1244#上身1号色 SPMX-20240815304160 \N \N \N 1 \N [{"file_id": "07057a3d-deeb-45a9-9bc5-45579a907589", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg", "file_size": 16608, "is_delete": false, "file_type": 1, "original_file_name": "LZ1244#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad820e7c897b44d4b37a4dc9fdf3cc5d.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xcAqGbM-EWSM0oqqMO8yMUi8hEQ=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.326441+00 2025-12-09 10:15:01.326446+00 8990 DL30435#浅蓝绿XL SPMX-20240815304150 \N \N \N 1 \N [{"file_id": "3d403932-3a55-4b8f-80b5-45c1fafcb6bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ad48863862462f970eeb175cf042e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ad48863862462f970eeb175cf042e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ad48863862462f970eeb175cf042e8.jpg", "file_size": 18345, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅蓝绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad48863862462f970eeb175cf042e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad48863862462f970eeb175cf042e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad48863862462f970eeb175cf042e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ad48863862462f970eeb175cf042e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ad48863862462f970eeb175cf042e8.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDOlS14Cz11Y87h4fgxlmMvMtvk=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.327997+00 2025-12-09 10:15:01.328001+00 8991 JTSS072FW#VS-D3 SPMX-20240815304147 \N \N \N 1 \N [{"file_id": "e935daea-542c-4ec3-8f5f-098a233797b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4104b098c2e4999bad3e778e9330db4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4104b098c2e4999bad3e778e9330db4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4104b098c2e4999bad3e778e9330db4.jpg", "file_size": 8560, "is_delete": false, "file_type": 1, "original_file_name": "JTSS072FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4104b098c2e4999bad3e778e9330db4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4104b098c2e4999bad3e778e9330db4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4104b098c2e4999bad3e778e9330db4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4104b098c2e4999bad3e778e9330db4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4104b098c2e4999bad3e778e9330db4.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2rWpFiiDs4AzB1_Cbkr8a7ZKdk=", "createTime": "2024-08-15 14:47:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.329519+00 2025-12-09 10:15:01.329523+00 8992 FHXGPK-117-4 SPMX-20240815304157 \N \N \N 1 \N [{"file_id": "205e8961-c220-40b4-8e98-f354ff790a7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5aacc9bcbe5453383001c0464697ccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5aacc9bcbe5453383001c0464697ccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5aacc9bcbe5453383001c0464697ccb.jpg", "file_size": 21503, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-117-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5aacc9bcbe5453383001c0464697ccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5aacc9bcbe5453383001c0464697ccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5aacc9bcbe5453383001c0464697ccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5aacc9bcbe5453383001c0464697ccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5aacc9bcbe5453383001c0464697ccb.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIexbcdhS8OeMfN4WAXY_LZHFWU=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.331088+00 2025-12-09 10:15:01.331092+00 8993 0003-411#WJC22 SPMX-20240815304153 \N \N \N 1 \N [{"file_id": "e53cba4f-5700-4225-b663-419898ec7618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4c17b7eb2ed41ea94d8d251452fe3dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4c17b7eb2ed41ea94d8d251452fe3dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4c17b7eb2ed41ea94d8d251452fe3dd.jpg", "file_size": 22428, "is_delete": false, "file_type": 1, "original_file_name": "0003-411#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c17b7eb2ed41ea94d8d251452fe3dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c17b7eb2ed41ea94d8d251452fe3dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c17b7eb2ed41ea94d8d251452fe3dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4c17b7eb2ed41ea94d8d251452fe3dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4c17b7eb2ed41ea94d8d251452fe3dd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ev9qiaSo_IaCzePOVHR_Ia5eo0=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.332626+00 2025-12-09 10:15:01.332631+00 8994 HT0101-81#WJC22 SPMX-20240815304154 \N \N \N 1 \N [{"file_id": "48054e42-7204-4bde-b8c6-4c938b24a757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31a5b7ca6b6d4883adf04f90dfcd4f55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31a5b7ca6b6d4883adf04f90dfcd4f55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31a5b7ca6b6d4883adf04f90dfcd4f55.jpg", "file_size": 26265, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-81#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a5b7ca6b6d4883adf04f90dfcd4f55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a5b7ca6b6d4883adf04f90dfcd4f55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a5b7ca6b6d4883adf04f90dfcd4f55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31a5b7ca6b6d4883adf04f90dfcd4f55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31a5b7ca6b6d4883adf04f90dfcd4f55.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKh-rXUdOdZOD2B0yoWpyt1DwWc=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.334172+00 2025-12-09 10:15:01.334176+00 8995 1073-1#墨绿色 SPMX-20240815304149 \N \N \N 1 \N [{"file_id": "08361465-0a20-448b-b4b5-0e305a815ce4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196b452133a74d47b337cb5d50e7ab93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196b452133a74d47b337cb5d50e7ab93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196b452133a74d47b337cb5d50e7ab93.jpg", "file_size": 18561, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196b452133a74d47b337cb5d50e7ab93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196b452133a74d47b337cb5d50e7ab93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196b452133a74d47b337cb5d50e7ab93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196b452133a74d47b337cb5d50e7ab93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196b452133a74d47b337cb5d50e7ab93.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NhCQIKHXZEvWWaGb4ZOM6EJd7Uk=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.335716+00 2025-12-09 10:15:01.33572+00 8996 FHXGPK-117-3 SPMX-20240815304148 \N \N \N 1 \N [{"file_id": "e7487345-64ab-4c13-ab6b-8d1ae1a50f4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbca2cacd2994585beb03401f1c55cfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbca2cacd2994585beb03401f1c55cfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbca2cacd2994585beb03401f1c55cfa.jpg", "file_size": 22339, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-117-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbca2cacd2994585beb03401f1c55cfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbca2cacd2994585beb03401f1c55cfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbca2cacd2994585beb03401f1c55cfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbca2cacd2994585beb03401f1c55cfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbca2cacd2994585beb03401f1c55cfa.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19fPk2eoPk_ZeH4I9TZ1nunWJVU=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.337554+00 2025-12-09 10:15:01.337558+00 8997 23-2114#-A14前后片3XL SPMX-20240815304152 \N \N \N 1 \N [{"file_id": "ba6d4921-b4ca-460a-9e96-b3f221b1688a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f14a82774d9444ba01bfc2db2eff0bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f14a82774d9444ba01bfc2db2eff0bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f14a82774d9444ba01bfc2db2eff0bf.jpg", "file_size": 9895, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f14a82774d9444ba01bfc2db2eff0bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f14a82774d9444ba01bfc2db2eff0bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f14a82774d9444ba01bfc2db2eff0bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f14a82774d9444ba01bfc2db2eff0bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f14a82774d9444ba01bfc2db2eff0bf.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ci1azwuWA2XjDTHSvK4rusgilQ=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.339166+00 2025-12-09 10:15:01.33917+00 8998 DL30435#浅蓝绿匹布 SPMX-20240815304164 \N \N \N 1 \N [{"file_id": "7435bd25-c56e-4727-b238-c9e1586f941f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f72861b519e04a329f8d735b65890e86.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f72861b519e04a329f8d735b65890e86.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f72861b519e04a329f8d735b65890e86.bmp", "file_size": 285550, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#浅蓝绿匹布.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72861b519e04a329f8d735b65890e86.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72861b519e04a329f8d735b65890e86.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72861b519e04a329f8d735b65890e86.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f72861b519e04a329f8d735b65890e86.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f72861b519e04a329f8d735b65890e86.bmp?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UW_nlpsZkZV_4gXtH24yJ_4Px9c=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.340937+00 2025-12-09 10:15:01.340943+00 8999 LJ4005#前后幅 SPMX-20240815304169 \N \N \N 1 \N [{"file_id": "2770d016-ef3c-4dd4-95a7-a59ad18c438d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f0ddd95e3a94f31827d4f32dde6cdd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f0ddd95e3a94f31827d4f32dde6cdd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f0ddd95e3a94f31827d4f32dde6cdd0.jpg", "file_size": 23032, "is_delete": false, "file_type": 1, "original_file_name": "LJ4005#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f0ddd95e3a94f31827d4f32dde6cdd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f0ddd95e3a94f31827d4f32dde6cdd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f0ddd95e3a94f31827d4f32dde6cdd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f0ddd95e3a94f31827d4f32dde6cdd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f0ddd95e3a94f31827d4f32dde6cdd0.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o8csVp5eAaPuK5Xrj20Ez23gIwA=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.343039+00 2025-12-09 10:15:01.343044+00 9000 1073-1#彩兰色 SPMX-20240815304161 \N \N \N 1 \N [{"file_id": "00ad833b-c14b-4947-bfb6-e12da2b161e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35efaabff4164e33904ae95f65d60ecd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35efaabff4164e33904ae95f65d60ecd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35efaabff4164e33904ae95f65d60ecd.jpg", "file_size": 18548, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35efaabff4164e33904ae95f65d60ecd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35efaabff4164e33904ae95f65d60ecd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35efaabff4164e33904ae95f65d60ecd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35efaabff4164e33904ae95f65d60ecd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35efaabff4164e33904ae95f65d60ecd.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:brJw1yPUHw_7GRRDKYcwRKjpyfs=", "createTime": "2024-08-15 14:47:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:01.344919+00 2025-12-09 10:15:01.344923+00 9001 0003-412#WJC22 SPMX-20240815304163 \N \N \N 1 \N [{"file_id": "2de8e732-9041-40f7-a9a0-cc66910935b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd26fc1a94064b6188c7059af584df87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd26fc1a94064b6188c7059af584df87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd26fc1a94064b6188c7059af584df87.jpg", "file_size": 29967, "is_delete": false, "file_type": 1, "original_file_name": "0003-412#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd26fc1a94064b6188c7059af584df87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd26fc1a94064b6188c7059af584df87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd26fc1a94064b6188c7059af584df87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd26fc1a94064b6188c7059af584df87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd26fc1a94064b6188c7059af584df87.jpg?e=1765361700&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DHp3Dxq5drO0pW0Y3ULOycfyQa0=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.047819+00 2025-12-09 10:15:02.047832+00 9002 23-2114#-A14前后片4XL SPMX-20240815304162 \N \N \N 1 \N [{"file_id": "36469665-1cbd-48f9-8b6a-8506e7c73637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "339d7dd122a04816bb4ac40fad0db690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "339d7dd122a04816bb4ac40fad0db690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "339d7dd122a04816bb4ac40fad0db690.jpg", "file_size": 10164, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339d7dd122a04816bb4ac40fad0db690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339d7dd122a04816bb4ac40fad0db690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339d7dd122a04816bb4ac40fad0db690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/339d7dd122a04816bb4ac40fad0db690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/339d7dd122a04816bb4ac40fad0db690.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfVNKzLzHoI-1xRrSZ5Gu_aBpjs=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.050381+00 2025-12-09 10:15:02.050387+00 9003 C338FWF#橘色XL-左袖 SPMX-20240815304168 \N \N \N 1 \N [{"file_id": "ccc94076-26a6-4362-a749-61308c9e3c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59ca7982b0a84f4a828c05c03f6fdfe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59ca7982b0a84f4a828c05c03f6fdfe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59ca7982b0a84f4a828c05c03f6fdfe7.jpg", "file_size": 16799, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色XL-左袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca7982b0a84f4a828c05c03f6fdfe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca7982b0a84f4a828c05c03f6fdfe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59ca7982b0a84f4a828c05c03f6fdfe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59ca7982b0a84f4a828c05c03f6fdfe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59ca7982b0a84f4a828c05c03f6fdfe7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pXNXpqLU3ohDbL_MBLeJcXMfWQ=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.052552+00 2025-12-09 10:15:02.052558+00 9004 1073-1#枣红色 SPMX-20240815304173 \N \N \N 1 \N [{"file_id": "2093581e-f0e3-4598-96e3-ff834f6c771d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c046bd5976034f4bb0991c7cbf4d43bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c046bd5976034f4bb0991c7cbf4d43bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c046bd5976034f4bb0991c7cbf4d43bc.jpg", "file_size": 17658, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046bd5976034f4bb0991c7cbf4d43bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046bd5976034f4bb0991c7cbf4d43bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c046bd5976034f4bb0991c7cbf4d43bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c046bd5976034f4bb0991c7cbf4d43bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c046bd5976034f4bb0991c7cbf4d43bc.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KR58kqAWzUJBG8rW5EPVhhfxrig=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.054396+00 2025-12-09 10:15:02.054401+00 9005 HT0101-82#WJC22 SPMX-20240815304165 \N \N \N 1 \N [{"file_id": "5f17c8f3-c4fb-4c7f-ab97-1a737ac78208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a0e512753fe4340a9dd9676f5daa02e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a0e512753fe4340a9dd9676f5daa02e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a0e512753fe4340a9dd9676f5daa02e.jpg", "file_size": 28889, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-82#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0e512753fe4340a9dd9676f5daa02e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0e512753fe4340a9dd9676f5daa02e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0e512753fe4340a9dd9676f5daa02e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a0e512753fe4340a9dd9676f5daa02e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a0e512753fe4340a9dd9676f5daa02e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dLXaP_1BSA3vyTcATQvYjGTf3mE=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.056374+00 2025-12-09 10:15:02.05638+00 9006 80324#前幅 SPMX-20240815304166 \N \N \N 1 \N [{"file_id": "c99e4ef9-2bcd-453c-9d7c-9b39ea616463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44d00896745545e5b133c06bae11870b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44d00896745545e5b133c06bae11870b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44d00896745545e5b133c06bae11870b.jpg", "file_size": 15128, "is_delete": false, "file_type": 1, "original_file_name": "80324#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00896745545e5b133c06bae11870b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00896745545e5b133c06bae11870b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00896745545e5b133c06bae11870b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44d00896745545e5b133c06bae11870b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44d00896745545e5b133c06bae11870b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:823CpIC0E2LNLw5ZS8erbsJ5EdY=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.058354+00 2025-12-09 10:15:02.058359+00 9007 LZ1244#上身2号色 SPMX-20240815304172 \N \N \N 1 \N [{"file_id": "c28b5c08-37f9-4e5b-aae6-45583af5ea74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb557123d2d847f98253ca2df6e19c88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb557123d2d847f98253ca2df6e19c88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb557123d2d847f98253ca2df6e19c88.jpg", "file_size": 16329, "is_delete": false, "file_type": 1, "original_file_name": "LZ1244#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb557123d2d847f98253ca2df6e19c88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb557123d2d847f98253ca2df6e19c88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb557123d2d847f98253ca2df6e19c88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb557123d2d847f98253ca2df6e19c88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb557123d2d847f98253ca2df6e19c88.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ksctlKci1uo0LRt4jqC7uWivNc=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.060337+00 2025-12-09 10:15:02.060342+00 9008 23-2114#-A14袖子3XL SPMX-20240815304171 \N \N \N 1 \N [{"file_id": "a66003d4-6a80-4d52-8a3e-d069ef62aabe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c01a091d1594470bb842cecdcab175e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c01a091d1594470bb842cecdcab175e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c01a091d1594470bb842cecdcab175e.jpg", "file_size": 8691, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c01a091d1594470bb842cecdcab175e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c01a091d1594470bb842cecdcab175e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c01a091d1594470bb842cecdcab175e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c01a091d1594470bb842cecdcab175e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c01a091d1594470bb842cecdcab175e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wgqDUMYAEdfeDCU3VMkmLSF8Dk=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.062308+00 2025-12-09 10:15:02.062313+00 9009 JTSS074FW#VS-D3 SPMX-20240815304170 \N \N \N 1 \N [{"file_id": "a4f6a435-d2bd-4fd8-85af-d1ce7192d99e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d096e0acd5a4517ac3a6f66a214ed71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d096e0acd5a4517ac3a6f66a214ed71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d096e0acd5a4517ac3a6f66a214ed71.jpg", "file_size": 8194, "is_delete": false, "file_type": 1, "original_file_name": "JTSS074FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d096e0acd5a4517ac3a6f66a214ed71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d096e0acd5a4517ac3a6f66a214ed71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d096e0acd5a4517ac3a6f66a214ed71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d096e0acd5a4517ac3a6f66a214ed71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d096e0acd5a4517ac3a6f66a214ed71.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNttvt3dnl1xsAtvKhitlHExlRo=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.064481+00 2025-12-09 10:15:02.064488+00 9010 FHXGPK-117-5 SPMX-20240815304167 \N \N \N 1 \N [{"file_id": "a0f7768d-67df-4d6f-ae3f-4ef5a6e91c38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c9e9098a0704f10a52423029e83c048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c9e9098a0704f10a52423029e83c048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c9e9098a0704f10a52423029e83c048.jpg", "file_size": 23234, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-117-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e9098a0704f10a52423029e83c048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e9098a0704f10a52423029e83c048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9e9098a0704f10a52423029e83c048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c9e9098a0704f10a52423029e83c048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c9e9098a0704f10a52423029e83c048.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8koruzILgG5bTU7h8iIdzxjaHMQ=", "createTime": "2024-08-15 14:47:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.066665+00 2025-12-09 10:15:02.066671+00 9011 LZ1244#上身3号色 SPMX-20240815304182 \N \N \N 1 \N [{"file_id": "1ffe90cd-733c-4d9d-8b1e-9e94e00f16c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c08a2f29e17b4a2792f65fdbcdd9ca43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c08a2f29e17b4a2792f65fdbcdd9ca43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c08a2f29e17b4a2792f65fdbcdd9ca43.jpg", "file_size": 18181, "is_delete": false, "file_type": 1, "original_file_name": "LZ1244#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a2f29e17b4a2792f65fdbcdd9ca43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a2f29e17b4a2792f65fdbcdd9ca43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a2f29e17b4a2792f65fdbcdd9ca43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c08a2f29e17b4a2792f65fdbcdd9ca43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c08a2f29e17b4a2792f65fdbcdd9ca43.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:twRHYPbc5twzrNGrDiHcLM6MrCA=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.068382+00 2025-12-09 10:15:02.068386+00 9012 1073-1#藏青色 SPMX-20240815304185 \N \N \N 1 \N [{"file_id": "d8255ce6-4003-46f5-880e-cf5ede3a0410", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b6d08d685614e34b0937ae39d7df2ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b6d08d685614e34b0937ae39d7df2ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b6d08d685614e34b0937ae39d7df2ed.jpg", "file_size": 19840, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#藏青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6d08d685614e34b0937ae39d7df2ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6d08d685614e34b0937ae39d7df2ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6d08d685614e34b0937ae39d7df2ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b6d08d685614e34b0937ae39d7df2ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b6d08d685614e34b0937ae39d7df2ed.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBn1yEVN3pDZmBhdQpNvfw6c7gM=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.070288+00 2025-12-09 10:15:02.070293+00 9013 FHXGPK-118-1 SPMX-20240815304181 \N \N \N 1 \N [{"file_id": "34e09a99-eaff-4769-abf4-19b343b22d57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751b6d5dd8db4aed80c9e9a900c872dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751b6d5dd8db4aed80c9e9a900c872dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751b6d5dd8db4aed80c9e9a900c872dc.jpg", "file_size": 33695, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-118-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751b6d5dd8db4aed80c9e9a900c872dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751b6d5dd8db4aed80c9e9a900c872dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751b6d5dd8db4aed80c9e9a900c872dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751b6d5dd8db4aed80c9e9a900c872dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751b6d5dd8db4aed80c9e9a900c872dc.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSKglAIP5biaHrUWsGSXXYOFBLw=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.072099+00 2025-12-09 10:15:02.072103+00 9014 0003-413#WJC22 SPMX-20240815304174 \N \N \N 1 \N [{"file_id": "160bdd2c-dc97-4adf-bd12-dcac04554edd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c7d1386bd1447ea8855f47234b56582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c7d1386bd1447ea8855f47234b56582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c7d1386bd1447ea8855f47234b56582.jpg", "file_size": 13541, "is_delete": false, "file_type": 1, "original_file_name": "0003-413#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7d1386bd1447ea8855f47234b56582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7d1386bd1447ea8855f47234b56582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7d1386bd1447ea8855f47234b56582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c7d1386bd1447ea8855f47234b56582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c7d1386bd1447ea8855f47234b56582.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LfwFts3SV63T0Sao6W1X_5jXpg=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.07376+00 2025-12-09 10:15:02.073765+00 9015 80324#匹布 SPMX-20240815304177 \N \N \N 1 \N [{"file_id": "8bb30ba2-e520-4494-8e1d-a24c07ffac5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg", "file_size": 6426, "is_delete": false, "file_type": 1, "original_file_name": "80324#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d7eb64ff86d4ac9b7d673a8b6c19c3d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chiLm63F21juASxpGG7oeGb9OmA=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.075405+00 2025-12-09 10:15:02.07541+00 9016 23-2114#-A14袖子4XL SPMX-20240815304184 \N \N \N 1 \N [{"file_id": "90373669-51d4-49a7-8b34-82fafdfa451c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81ed23fad97a4a168c510e33c46277d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81ed23fad97a4a168c510e33c46277d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81ed23fad97a4a168c510e33c46277d2.jpg", "file_size": 8991, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ed23fad97a4a168c510e33c46277d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ed23fad97a4a168c510e33c46277d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ed23fad97a4a168c510e33c46277d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81ed23fad97a4a168c510e33c46277d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81ed23fad97a4a168c510e33c46277d2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Jft3ShWg0XT8P5zG8bDH3KSc9o=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.083776+00 2025-12-09 10:15:02.083781+00 9021 LJ4005#袖子 SPMX-20240815304176 \N \N \N 1 \N [{"file_id": "266032c3-d483-41f5-9154-a8f9aff5d08c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adcdd09c5188433c9bdd21e6a71304d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adcdd09c5188433c9bdd21e6a71304d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adcdd09c5188433c9bdd21e6a71304d1.jpg", "file_size": 31015, "is_delete": false, "file_type": 1, "original_file_name": "LJ4005#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adcdd09c5188433c9bdd21e6a71304d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adcdd09c5188433c9bdd21e6a71304d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adcdd09c5188433c9bdd21e6a71304d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adcdd09c5188433c9bdd21e6a71304d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adcdd09c5188433c9bdd21e6a71304d1.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eT2uuwrF29FWX2ucTh7zbqCG9o8=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.077212+00 2025-12-09 10:15:02.077216+00 9017 C338FWF#橘色XL-补片上衣 SPMX-20240815304179 \N \N \N 1 \N [{"file_id": "308a6010-8356-45ac-8118-497e70c307a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22c27e1c42d643c6b93cdbe5b04dfc77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22c27e1c42d643c6b93cdbe5b04dfc77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22c27e1c42d643c6b93cdbe5b04dfc77.jpg", "file_size": 22742, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色XL-补片上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c27e1c42d643c6b93cdbe5b04dfc77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c27e1c42d643c6b93cdbe5b04dfc77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c27e1c42d643c6b93cdbe5b04dfc77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22c27e1c42d643c6b93cdbe5b04dfc77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22c27e1c42d643c6b93cdbe5b04dfc77.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cucoj9ZIEXR-fsJVZDDE5UuQhnI=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.078945+00 2025-12-09 10:15:02.078949+00 9018 HT0101-83#WJC22 SPMX-20240815304175 \N \N \N 1 \N [{"file_id": "8c85651f-6534-47f3-847f-2b918db6c3ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d50a995e7334127982f95ebabb33eb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d50a995e7334127982f95ebabb33eb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d50a995e7334127982f95ebabb33eb1.jpg", "file_size": 11428, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-83#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d50a995e7334127982f95ebabb33eb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d50a995e7334127982f95ebabb33eb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d50a995e7334127982f95ebabb33eb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d50a995e7334127982f95ebabb33eb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d50a995e7334127982f95ebabb33eb1.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEczI4rYBNk6MyEK7Ik8phua3x8=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.080636+00 2025-12-09 10:15:02.08064+00 9019 DL30435#玫红2XL SPMX-20240815304178 \N \N \N 1 \N [{"file_id": "f77ee836-499e-4a0e-a29c-a9bd6cb4ae8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e407b1578de3453c84956fd19ce3606a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e407b1578de3453c84956fd19ce3606a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e407b1578de3453c84956fd19ce3606a.jpg", "file_size": 18834, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#玫红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e407b1578de3453c84956fd19ce3606a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e407b1578de3453c84956fd19ce3606a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e407b1578de3453c84956fd19ce3606a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e407b1578de3453c84956fd19ce3606a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e407b1578de3453c84956fd19ce3606a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Beg9M09DECMRkdJyuf09gKaBq00=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.082216+00 2025-12-09 10:15:02.08222+00 9020 JTSS075FW#VS-D3 SPMX-20240815304180 \N \N \N 1 \N [{"file_id": "cd452fa9-24df-48c0-84fb-89d4e2b7b7d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b51a53e7301849428fc4072393f48bcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b51a53e7301849428fc4072393f48bcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b51a53e7301849428fc4072393f48bcc.jpg", "file_size": 7875, "is_delete": false, "file_type": 1, "original_file_name": "JTSS075FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51a53e7301849428fc4072393f48bcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51a53e7301849428fc4072393f48bcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b51a53e7301849428fc4072393f48bcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b51a53e7301849428fc4072393f48bcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b51a53e7301849428fc4072393f48bcc.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ulX2uHBpNE13wPslSOdhFAINLDU=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.085362+00 2025-12-09 10:15:02.085367+00 9022 0003-414#WJC22 SPMX-20240815304183 \N \N \N 1 \N [{"file_id": "fe57a644-da46-499b-961d-1b3fdb6f66c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1631065b156494f984b965b5cf4c885.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1631065b156494f984b965b5cf4c885.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1631065b156494f984b965b5cf4c885.jpg", "file_size": 10400, "is_delete": false, "file_type": 1, "original_file_name": "0003-414#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1631065b156494f984b965b5cf4c885.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1631065b156494f984b965b5cf4c885.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1631065b156494f984b965b5cf4c885.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1631065b156494f984b965b5cf4c885.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1631065b156494f984b965b5cf4c885.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uF2DlCzNu3tWV7ddMn3n-K2jn8o=", "createTime": "2024-08-15 14:47:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.087229+00 2025-12-09 10:15:02.087234+00 9023 JTSS076FW#VS-D3 SPMX-20240815304189 \N \N \N 1 \N [{"file_id": "6b1a48d2-b62a-4eed-8d63-c0433de17019", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d478f5fc75949fea755eb01e16f71c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d478f5fc75949fea755eb01e16f71c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d478f5fc75949fea755eb01e16f71c5.jpg", "file_size": 14688, "is_delete": false, "file_type": 1, "original_file_name": "JTSS076FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d478f5fc75949fea755eb01e16f71c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d478f5fc75949fea755eb01e16f71c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d478f5fc75949fea755eb01e16f71c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d478f5fc75949fea755eb01e16f71c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d478f5fc75949fea755eb01e16f71c5.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKiUf-LUydf_oVSKk8s4IX7MhIg=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.08899+00 2025-12-09 10:15:02.088996+00 9024 LJ4006#前后幅 SPMX-20240815304188 \N \N \N 1 \N [{"file_id": "0fc57aac-8208-4f39-b1ff-45bbf6513b10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc41673667aa4081938f46f2e6d1b232.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc41673667aa4081938f46f2e6d1b232.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc41673667aa4081938f46f2e6d1b232.jpg", "file_size": 21593, "is_delete": false, "file_type": 1, "original_file_name": "LJ4006#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc41673667aa4081938f46f2e6d1b232.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc41673667aa4081938f46f2e6d1b232.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc41673667aa4081938f46f2e6d1b232.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc41673667aa4081938f46f2e6d1b232.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc41673667aa4081938f46f2e6d1b232.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7o9XhfFNxj6nqum4K4Pa_W02zPc=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.090825+00 2025-12-09 10:15:02.09083+00 9025 DL30435#玫红L SPMX-20240815304191 \N \N \N 1 \N [{"file_id": "3cc062f5-6397-4ff5-ba0c-72c30668ecdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38a963ca2ef14f81a7bf30ccee649cb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38a963ca2ef14f81a7bf30ccee649cb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38a963ca2ef14f81a7bf30ccee649cb8.jpg", "file_size": 17937, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#玫红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a963ca2ef14f81a7bf30ccee649cb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a963ca2ef14f81a7bf30ccee649cb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a963ca2ef14f81a7bf30ccee649cb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38a963ca2ef14f81a7bf30ccee649cb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38a963ca2ef14f81a7bf30ccee649cb8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xlucFfBWsbvcJuV6d30XRjtrT9Q=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.092517+00 2025-12-09 10:15:02.092522+00 9026 HT0101-84#WJC22 SPMX-20240815304186 \N \N \N 1 \N [{"file_id": "6a732cd6-bbcc-4ead-ab99-50f8f27349fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8459dc30bb274ae691bf139a713419e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8459dc30bb274ae691bf139a713419e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8459dc30bb274ae691bf139a713419e0.jpg", "file_size": 17521, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-84#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8459dc30bb274ae691bf139a713419e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8459dc30bb274ae691bf139a713419e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8459dc30bb274ae691bf139a713419e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8459dc30bb274ae691bf139a713419e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8459dc30bb274ae691bf139a713419e0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_i3vCRuJGgaH8hjtNe5Uu6_AVo=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.094593+00 2025-12-09 10:15:02.094598+00 9027 80324#后幅 SPMX-20240815304187 \N \N \N 1 \N [{"file_id": "083e65f6-d41c-4ab3-a406-4ca56fb1f615", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df5eaa65e07b4210b4235c6ed144101e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df5eaa65e07b4210b4235c6ed144101e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df5eaa65e07b4210b4235c6ed144101e.jpg", "file_size": 13557, "is_delete": false, "file_type": 1, "original_file_name": "80324#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5eaa65e07b4210b4235c6ed144101e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5eaa65e07b4210b4235c6ed144101e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5eaa65e07b4210b4235c6ed144101e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df5eaa65e07b4210b4235c6ed144101e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df5eaa65e07b4210b4235c6ed144101e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81HUoPj_UFvlSiZFb2CiGpmYAdw=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.096604+00 2025-12-09 10:15:02.096609+00 9028 C338FWF#橘色XL SPMX-20240815304190 \N \N \N 1 \N [{"file_id": "541f6919-1f2f-42eb-8b19-e8adbd7fef3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf6f1ebd96a54ef897b90143290bb843.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf6f1ebd96a54ef897b90143290bb843.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf6f1ebd96a54ef897b90143290bb843.jpg", "file_size": 17455, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#橘色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf6f1ebd96a54ef897b90143290bb843.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf6f1ebd96a54ef897b90143290bb843.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf6f1ebd96a54ef897b90143290bb843.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf6f1ebd96a54ef897b90143290bb843.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf6f1ebd96a54ef897b90143290bb843.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiAoRQgkF9blHn_09OBiAf0i9tw=", "createTime": "2024-08-15 14:47:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.098645+00 2025-12-09 10:15:02.09865+00 9029 23-2114#-A14领子通用 SPMX-20240815304195 \N \N \N 1 \N [{"file_id": "da212030-eb23-4ba9-b63c-d6ff7c103184", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b21c6c68f0549d5881fedb002b8aaa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b21c6c68f0549d5881fedb002b8aaa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b21c6c68f0549d5881fedb002b8aaa4.jpg", "file_size": 7729, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A14领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b21c6c68f0549d5881fedb002b8aaa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b21c6c68f0549d5881fedb002b8aaa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b21c6c68f0549d5881fedb002b8aaa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b21c6c68f0549d5881fedb002b8aaa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b21c6c68f0549d5881fedb002b8aaa4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQiUvOM4QjqyG0EVQCVSjIm-p8w=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.100543+00 2025-12-09 10:15:02.100547+00 9030 1073-1#黑色 SPMX-20240815304203 \N \N \N 1 \N [{"file_id": "78b58e44-5e6f-4836-9c87-d74373ac2c07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ed85d188de45d9bc1c63fc427801df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ed85d188de45d9bc1c63fc427801df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ed85d188de45d9bc1c63fc427801df.jpg", "file_size": 18494, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ed85d188de45d9bc1c63fc427801df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ed85d188de45d9bc1c63fc427801df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ed85d188de45d9bc1c63fc427801df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ed85d188de45d9bc1c63fc427801df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ed85d188de45d9bc1c63fc427801df.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmokfdnAxmY80JXof6PEe3ze_SA=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.102374+00 2025-12-09 10:15:02.102379+00 9031 0003-415#WJC22 SPMX-20240815304193 \N \N \N 1 \N [{"file_id": "ff6aaa73-5445-40e6-875d-c13cad0ac22d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b95f0e7dcc2843048cb4000989045cd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b95f0e7dcc2843048cb4000989045cd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b95f0e7dcc2843048cb4000989045cd0.jpg", "file_size": 23371, "is_delete": false, "file_type": 1, "original_file_name": "0003-415#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95f0e7dcc2843048cb4000989045cd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95f0e7dcc2843048cb4000989045cd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b95f0e7dcc2843048cb4000989045cd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b95f0e7dcc2843048cb4000989045cd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b95f0e7dcc2843048cb4000989045cd0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5ucIIJG7VlivTw_fM2ISQzc6Qo=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.10397+00 2025-12-09 10:15:02.103974+00 9032 LZ1244#上身4号色 SPMX-20240815304196 \N \N \N 1 \N [{"file_id": "4ae62d57-d743-46c5-b4e3-deb7544df002", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "998edf9a08eb48339e0d665c326db46e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "998edf9a08eb48339e0d665c326db46e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "998edf9a08eb48339e0d665c326db46e.jpg", "file_size": 16554, "is_delete": false, "file_type": 1, "original_file_name": "LZ1244#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/998edf9a08eb48339e0d665c326db46e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/998edf9a08eb48339e0d665c326db46e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/998edf9a08eb48339e0d665c326db46e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/998edf9a08eb48339e0d665c326db46e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/998edf9a08eb48339e0d665c326db46e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kSUDet0bb23RPhzjlvn4jhVGLE=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.105548+00 2025-12-09 10:15:02.105553+00 9033 C338FWF#水鸭蓝L SPMX-20240815304199 \N \N \N 1 \N [{"file_id": "376b7d31-8adb-4af8-9744-c97c2594d532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e1ec456931f4487859ef9401b429cec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e1ec456931f4487859ef9401b429cec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e1ec456931f4487859ef9401b429cec.jpg", "file_size": 18589, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#水鸭蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1ec456931f4487859ef9401b429cec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1ec456931f4487859ef9401b429cec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1ec456931f4487859ef9401b429cec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e1ec456931f4487859ef9401b429cec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e1ec456931f4487859ef9401b429cec.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RTj5Buf-5yRTNYh_qq6eApvXKg=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.107352+00 2025-12-09 10:15:02.107356+00 9034 FHXGPK-118-2 SPMX-20240815304197 \N \N \N 1 \N [{"file_id": "19c23ea2-3386-4e7d-92cf-9e0a87be3cef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b0ed1124f8f476b90edfd3353167881.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b0ed1124f8f476b90edfd3353167881.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b0ed1124f8f476b90edfd3353167881.jpg", "file_size": 30493, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-118-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0ed1124f8f476b90edfd3353167881.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0ed1124f8f476b90edfd3353167881.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0ed1124f8f476b90edfd3353167881.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b0ed1124f8f476b90edfd3353167881.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b0ed1124f8f476b90edfd3353167881.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFwDvvLji4iavrBUtxY1AAIRC94=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.108922+00 2025-12-09 10:15:02.108927+00 9035 HT0101-85#蓝色 SPMX-20240815304200 \N \N \N 1 \N [{"file_id": "4eb62959-f22e-4164-845c-a048ebd35fa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50e1ab6382104b0b904bcc4df6cc5a5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50e1ab6382104b0b904bcc4df6cc5a5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50e1ab6382104b0b904bcc4df6cc5a5d.jpg", "file_size": 24096, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-85#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e1ab6382104b0b904bcc4df6cc5a5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e1ab6382104b0b904bcc4df6cc5a5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e1ab6382104b0b904bcc4df6cc5a5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50e1ab6382104b0b904bcc4df6cc5a5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50e1ab6382104b0b904bcc4df6cc5a5d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GParJHTRDn8ouEKQBSX9bkBUHYE=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.110521+00 2025-12-09 10:15:02.110525+00 9036 LJ4006#袖子 SPMX-20240815304202 \N \N \N 1 \N [{"file_id": "a0c2057b-c7da-4111-a42e-afa01ddeaf7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8323afb7f694e13a88cb7a5fa665229.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8323afb7f694e13a88cb7a5fa665229.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8323afb7f694e13a88cb7a5fa665229.jpg", "file_size": 29191, "is_delete": false, "file_type": 1, "original_file_name": "LJ4006#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8323afb7f694e13a88cb7a5fa665229.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8323afb7f694e13a88cb7a5fa665229.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8323afb7f694e13a88cb7a5fa665229.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8323afb7f694e13a88cb7a5fa665229.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8323afb7f694e13a88cb7a5fa665229.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2lY7bIg1s8bvKX-i-rnNnlqBqg=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.112381+00 2025-12-09 10:15:02.112386+00 9037 80324#小童 SPMX-20240815304194 \N \N \N 1 \N [{"file_id": "05f8b6b5-8c54-4e93-811b-ae9e6d1c5ff8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff435227e651474a8616b500f1d66f64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff435227e651474a8616b500f1d66f64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff435227e651474a8616b500f1d66f64.jpg", "file_size": 24889, "is_delete": false, "file_type": 1, "original_file_name": "80324#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff435227e651474a8616b500f1d66f64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff435227e651474a8616b500f1d66f64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff435227e651474a8616b500f1d66f64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff435227e651474a8616b500f1d66f64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff435227e651474a8616b500f1d66f64.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ey6VQ6YZPubxv74yR8snxatuk5E=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.113947+00 2025-12-09 10:15:02.113951+00 9038 DL30435#玫红XL SPMX-20240815304198 \N \N \N 1 \N [{"file_id": "73d09a16-897d-4585-b368-49a3b526f2d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c13c661c2e40188bc80da7e5c0dd9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c13c661c2e40188bc80da7e5c0dd9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c13c661c2e40188bc80da7e5c0dd9a.jpg", "file_size": 18283, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#玫红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c13c661c2e40188bc80da7e5c0dd9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c13c661c2e40188bc80da7e5c0dd9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c13c661c2e40188bc80da7e5c0dd9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c13c661c2e40188bc80da7e5c0dd9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c13c661c2e40188bc80da7e5c0dd9a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxxKSwuztJQBfZss6sosVpygDTg=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.115541+00 2025-12-09 10:15:02.115545+00 9039 1073-1#豆沙色 SPMX-20240815304192 \N \N \N 1 \N [{"file_id": "07dd14e7-590a-472d-ae60-2f8a013a2363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90b791c6eab04b459b3e8ea7ba86f9c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90b791c6eab04b459b3e8ea7ba86f9c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90b791c6eab04b459b3e8ea7ba86f9c1.jpg", "file_size": 16573, "is_delete": false, "file_type": 1, "original_file_name": "1073-1#豆沙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b791c6eab04b459b3e8ea7ba86f9c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b791c6eab04b459b3e8ea7ba86f9c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b791c6eab04b459b3e8ea7ba86f9c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90b791c6eab04b459b3e8ea7ba86f9c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90b791c6eab04b459b3e8ea7ba86f9c1.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vn7b9e1Zj311hanKIg80blavewI=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.117375+00 2025-12-09 10:15:02.11738+00 9040 JTSS077FW#VS-D2 SPMX-20240815304201 \N \N \N 1 \N [{"file_id": "473eb28a-18be-49fb-9817-099a9e700931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05c51d03a74b49468fe620a1195d8f1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05c51d03a74b49468fe620a1195d8f1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05c51d03a74b49468fe620a1195d8f1b.jpg", "file_size": 21716, "is_delete": false, "file_type": 1, "original_file_name": "JTSS077FW#VS-D2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51d03a74b49468fe620a1195d8f1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51d03a74b49468fe620a1195d8f1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51d03a74b49468fe620a1195d8f1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05c51d03a74b49468fe620a1195d8f1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05c51d03a74b49468fe620a1195d8f1b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhjEDaCvbSfsyNL5a6Zwb67R800=", "createTime": "2024-08-15 14:48:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.119036+00 2025-12-09 10:15:02.11904+00 9041 80325#中童 SPMX-20240815304205 \N \N \N 1 \N [{"file_id": "08e39d81-1854-4d0c-ba71-7ef96bdac4ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cd32fcd93714c6081039605a6103058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cd32fcd93714c6081039605a6103058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cd32fcd93714c6081039605a6103058.jpg", "file_size": 23089, "is_delete": false, "file_type": 1, "original_file_name": "80325#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd32fcd93714c6081039605a6103058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd32fcd93714c6081039605a6103058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd32fcd93714c6081039605a6103058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cd32fcd93714c6081039605a6103058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cd32fcd93714c6081039605a6103058.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPgMv-9h6mckHfCpevMKJ9RAC0k=", "createTime": "2024-08-15 14:48:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.120608+00 2025-12-09 10:15:02.120612+00 9042 0003-416#WJC22 SPMX-20240815304204 \N \N \N 1 \N [{"file_id": "4763b96d-ebaa-4cc7-a970-6de050c8c508", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62812b1a635245b6ab630e11aeb3eaf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62812b1a635245b6ab630e11aeb3eaf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62812b1a635245b6ab630e11aeb3eaf4.jpg", "file_size": 18377, "is_delete": false, "file_type": 1, "original_file_name": "0003-416#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62812b1a635245b6ab630e11aeb3eaf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62812b1a635245b6ab630e11aeb3eaf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62812b1a635245b6ab630e11aeb3eaf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62812b1a635245b6ab630e11aeb3eaf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62812b1a635245b6ab630e11aeb3eaf4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iqxch-oVX1x8uRXp-cgcXbLiMYE=", "createTime": "2024-08-15 14:48:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.12248+00 2025-12-09 10:15:02.122484+00 9043 JTSS077FW#VS-D3 SPMX-20240815304210 \N \N \N 1 \N [{"file_id": "092cfda0-8854-4081-9dcb-2fd44e92bf7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a170a26263bf428eaaa30dc301bc9fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a170a26263bf428eaaa30dc301bc9fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a170a26263bf428eaaa30dc301bc9fad.jpg", "file_size": 21716, "is_delete": false, "file_type": 1, "original_file_name": "JTSS077FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a170a26263bf428eaaa30dc301bc9fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a170a26263bf428eaaa30dc301bc9fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a170a26263bf428eaaa30dc301bc9fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a170a26263bf428eaaa30dc301bc9fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a170a26263bf428eaaa30dc301bc9fad.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7iNsMu0IL2oy62vCHzJzHjkCzKE=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.130536+00 2025-12-09 10:15:02.13054+00 9048 JTSS078FW#VS-D3 SPMX-20240815304218 \N \N \N 1 \N [{"file_id": "e34ad8e9-498c-4747-a787-453d2d2a680a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6b917fb8e354821aff748021f1a26b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6b917fb8e354821aff748021f1a26b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6b917fb8e354821aff748021f1a26b0.jpg", "file_size": 10375, "is_delete": false, "file_type": 1, "original_file_name": "JTSS078FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b917fb8e354821aff748021f1a26b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b917fb8e354821aff748021f1a26b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b917fb8e354821aff748021f1a26b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6b917fb8e354821aff748021f1a26b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6b917fb8e354821aff748021f1a26b0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MmjYSA6Igk2j1l2pJoa8hghS9MM=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.124232+00 2025-12-09 10:15:02.124237+00 9044 LZ1245#上身1号色 SPMX-20240815304208 \N \N \N 1 \N [{"file_id": "b4b6c75c-965e-4917-97c1-653c2c46b917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d532fa8555d44ed9fcdbe6341703b36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d532fa8555d44ed9fcdbe6341703b36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d532fa8555d44ed9fcdbe6341703b36.jpg", "file_size": 17247, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532fa8555d44ed9fcdbe6341703b36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532fa8555d44ed9fcdbe6341703b36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532fa8555d44ed9fcdbe6341703b36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d532fa8555d44ed9fcdbe6341703b36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d532fa8555d44ed9fcdbe6341703b36.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6BLrNSPPng0nmOITdVi8vdClKy0=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.125855+00 2025-12-09 10:15:02.125859+00 9045 1073-2#亮黄 SPMX-20240815304216 \N \N \N 1 \N [{"file_id": "290d39cd-de68-465a-ad93-2568b6cccde5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca17c9ccbfb147d6af75d1948b744b44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca17c9ccbfb147d6af75d1948b744b44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca17c9ccbfb147d6af75d1948b744b44.jpg", "file_size": 28744, "is_delete": false, "file_type": 1, "original_file_name": "1073-2#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca17c9ccbfb147d6af75d1948b744b44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca17c9ccbfb147d6af75d1948b744b44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca17c9ccbfb147d6af75d1948b744b44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca17c9ccbfb147d6af75d1948b744b44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca17c9ccbfb147d6af75d1948b744b44.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3Ea7CKbSAkPl7XB5iCUbnKKd3o=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.127424+00 2025-12-09 10:15:02.127429+00 9046 23-2114#-A15前后片3XL SPMX-20240815304206 \N \N \N 1 \N [{"file_id": "627abe8c-18ef-48a8-a064-124a6741e2a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "928295afdace44cc941b88d9f89cd6c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "928295afdace44cc941b88d9f89cd6c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "928295afdace44cc941b88d9f89cd6c7.jpg", "file_size": 10830, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A15前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928295afdace44cc941b88d9f89cd6c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928295afdace44cc941b88d9f89cd6c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928295afdace44cc941b88d9f89cd6c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/928295afdace44cc941b88d9f89cd6c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/928295afdace44cc941b88d9f89cd6c7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXPTrZmXcs_EavCmWuteGPaZK78=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.128994+00 2025-12-09 10:15:02.128998+00 9047 FHXGPK-118-3 SPMX-20240815304207 \N \N \N 1 \N [{"file_id": "5493c63b-870f-4f69-86b4-8f72fcd83f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9f2e4fefd484c4687f81a414fc4a2a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9f2e4fefd484c4687f81a414fc4a2a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9f2e4fefd484c4687f81a414fc4a2a7.jpg", "file_size": 32384, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-118-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f2e4fefd484c4687f81a414fc4a2a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f2e4fefd484c4687f81a414fc4a2a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f2e4fefd484c4687f81a414fc4a2a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9f2e4fefd484c4687f81a414fc4a2a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9f2e4fefd484c4687f81a414fc4a2a7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6yp2ijdIRkh8UChFH-6NpRLAiaw=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.132331+00 2025-12-09 10:15:02.132335+00 9049 23-2114#-A15前后片4XL SPMX-20240815304219 \N \N \N 1 \N [{"file_id": "c854d9e9-28ed-4442-9d46-bd6ded7f7eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a3c45e1efa04fc7a362012037839335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a3c45e1efa04fc7a362012037839335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a3c45e1efa04fc7a362012037839335.jpg", "file_size": 11533, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A15前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3c45e1efa04fc7a362012037839335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3c45e1efa04fc7a362012037839335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3c45e1efa04fc7a362012037839335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a3c45e1efa04fc7a362012037839335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a3c45e1efa04fc7a362012037839335.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGuAjdQsXjdzg5lwQlbS25RA1_s=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.133967+00 2025-12-09 10:15:02.133972+00 9050 C338FWF#水鸭蓝M SPMX-20240815304209 \N \N \N 1 \N [{"file_id": "3b6d326f-49e8-4b9d-813e-611e583467e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "039c9606ecc140cbaf4bb8fc6f06dc57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "039c9606ecc140cbaf4bb8fc6f06dc57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "039c9606ecc140cbaf4bb8fc6f06dc57.jpg", "file_size": 20083, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#水鸭蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c9606ecc140cbaf4bb8fc6f06dc57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c9606ecc140cbaf4bb8fc6f06dc57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c9606ecc140cbaf4bb8fc6f06dc57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/039c9606ecc140cbaf4bb8fc6f06dc57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/039c9606ecc140cbaf4bb8fc6f06dc57.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcWMfYJoHQATv0MXKmOBWx4mXBA=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.135554+00 2025-12-09 10:15:02.135558+00 9051 HT0101-86#WJC22 SPMX-20240815304211 \N \N \N 1 \N [{"file_id": "83b21452-d995-4678-b09d-eb15b0882444", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c6a87c388c4972b3acb115d36cfd72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c6a87c388c4972b3acb115d36cfd72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c6a87c388c4972b3acb115d36cfd72.jpg", "file_size": 13251, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-86#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c6a87c388c4972b3acb115d36cfd72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c6a87c388c4972b3acb115d36cfd72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c6a87c388c4972b3acb115d36cfd72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c6a87c388c4972b3acb115d36cfd72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c6a87c388c4972b3acb115d36cfd72.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-Oi6XbuSCrhlWsPC9NlCGWtJBA=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.137129+00 2025-12-09 10:15:02.137135+00 9052 LJ4007#前后幅 SPMX-20240815304213 \N \N \N 1 \N [{"file_id": "ce85c62b-b6b3-4deb-b174-1aadf75fece2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d63ddb7199c4107acb6de85e5c00564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d63ddb7199c4107acb6de85e5c00564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d63ddb7199c4107acb6de85e5c00564.jpg", "file_size": 24132, "is_delete": false, "file_type": 1, "original_file_name": "LJ4007#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63ddb7199c4107acb6de85e5c00564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63ddb7199c4107acb6de85e5c00564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63ddb7199c4107acb6de85e5c00564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d63ddb7199c4107acb6de85e5c00564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d63ddb7199c4107acb6de85e5c00564.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFUJ3hWcpE5tWvet_Wz7BGXk1SQ=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.138685+00 2025-12-09 10:15:02.138689+00 9053 C338FWF#水鸭蓝S SPMX-20240815304220 \N \N \N 1 \N [{"file_id": "f0a18304-d15c-47fe-9abd-cfae771f7975", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9acfded967474bcf9a6af022cb305d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9acfded967474bcf9a6af022cb305d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9acfded967474bcf9a6af022cb305d40.jpg", "file_size": 19753, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#水鸭蓝S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acfded967474bcf9a6af022cb305d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acfded967474bcf9a6af022cb305d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acfded967474bcf9a6af022cb305d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9acfded967474bcf9a6af022cb305d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9acfded967474bcf9a6af022cb305d40.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyHImWMUbyJqfqpFpEdN42mp27A=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.140251+00 2025-12-09 10:15:02.140255+00 9054 FHXGPK-118-4 SPMX-20240815304217 \N \N \N 1 \N [{"file_id": "9e35f21f-a4e5-47d3-a791-aa3fcb65f802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e276a972684843aca999426822e19ef4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e276a972684843aca999426822e19ef4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e276a972684843aca999426822e19ef4.jpg", "file_size": 35629, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-118-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e276a972684843aca999426822e19ef4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e276a972684843aca999426822e19ef4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e276a972684843aca999426822e19ef4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e276a972684843aca999426822e19ef4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e276a972684843aca999426822e19ef4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GS2Q-tNygv6ta1hZw7_kjyHDC_c=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.141802+00 2025-12-09 10:15:02.141806+00 9055 80325#前幅 SPMX-20240815304214 \N \N \N 1 \N [{"file_id": "b71416a6-6a83-4631-9d34-27f6568b6a17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20bc1c63730f489ca10def8046caf5ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20bc1c63730f489ca10def8046caf5ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20bc1c63730f489ca10def8046caf5ab.jpg", "file_size": 18601, "is_delete": false, "file_type": 1, "original_file_name": "80325#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bc1c63730f489ca10def8046caf5ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bc1c63730f489ca10def8046caf5ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20bc1c63730f489ca10def8046caf5ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20bc1c63730f489ca10def8046caf5ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20bc1c63730f489ca10def8046caf5ab.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNU86_KouGmkAz8B8tBQApixQ38=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.14363+00 2025-12-09 10:15:02.143635+00 9056 0003-416#飞版本 SPMX-20240815304215 \N \N \N 1 \N [{"file_id": "9f9a8d71-fcf7-4935-a655-2877efba7d6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "815c7e38718646159ebafa682e24646b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "815c7e38718646159ebafa682e24646b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "815c7e38718646159ebafa682e24646b.jpg", "file_size": 21934, "is_delete": false, "file_type": 1, "original_file_name": "0003-416#飞版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815c7e38718646159ebafa682e24646b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815c7e38718646159ebafa682e24646b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/815c7e38718646159ebafa682e24646b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/815c7e38718646159ebafa682e24646b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/815c7e38718646159ebafa682e24646b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b99bMcnCLTrb2QiAQPj3FfRvl_E=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.152966+00 2025-12-09 10:15:02.152971+00 9061 0003-417#WJC22 SPMX-20240815304228 \N \N \N 1 \N [{"file_id": "20350aca-afde-4526-a293-1536084f4577", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fb5c74af26845aabc66c61a4c784a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fb5c74af26845aabc66c61a4c784a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fb5c74af26845aabc66c61a4c784a1d.jpg", "file_size": 15552, "is_delete": false, "file_type": 1, "original_file_name": "0003-417#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb5c74af26845aabc66c61a4c784a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb5c74af26845aabc66c61a4c784a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb5c74af26845aabc66c61a4c784a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fb5c74af26845aabc66c61a4c784a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fb5c74af26845aabc66c61a4c784a1d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ko68D8RfrHwZ5A4L-hNMsnef-IY=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.145247+00 2025-12-09 10:15:02.145252+00 9057 DL30435#玫红匹布 SPMX-20240815304212 \N \N \N 1 \N [{"file_id": "9e6de8d9-fa5b-4052-852c-623d1ad7d806", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ac1bbb9ea243c7b9798d1921017e62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ac1bbb9ea243c7b9798d1921017e62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ac1bbb9ea243c7b9798d1921017e62.jpg", "file_size": 19746, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#玫红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ac1bbb9ea243c7b9798d1921017e62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ac1bbb9ea243c7b9798d1921017e62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ac1bbb9ea243c7b9798d1921017e62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ac1bbb9ea243c7b9798d1921017e62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ac1bbb9ea243c7b9798d1921017e62.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcSh1YHAka5u_uR6SReA83ex4-0=", "createTime": "2024-08-15 14:48:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.14704+00 2025-12-09 10:15:02.147045+00 9058 JTSS079FW#VS-D3 SPMX-20240815304226 \N \N \N 1 \N [{"file_id": "d6b99af8-38d9-4fb9-9b79-7eca36eb9a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e870c7da5c5a4161904e3b54a130474a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e870c7da5c5a4161904e3b54a130474a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e870c7da5c5a4161904e3b54a130474a.jpg", "file_size": 10183, "is_delete": false, "file_type": 1, "original_file_name": "JTSS079FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e870c7da5c5a4161904e3b54a130474a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e870c7da5c5a4161904e3b54a130474a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e870c7da5c5a4161904e3b54a130474a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e870c7da5c5a4161904e3b54a130474a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e870c7da5c5a4161904e3b54a130474a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odde8q9189lcNpE5INbxuUg7XUk=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.149014+00 2025-12-09 10:15:02.149018+00 9059 23-2114#-A15领口通用 SPMX-20240815304230 \N \N \N 1 \N [{"file_id": "fcdf3325-b5be-4839-a20a-27bf83363dc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2145e8e76a04af0a18ab74e300fa861.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2145e8e76a04af0a18ab74e300fa861.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2145e8e76a04af0a18ab74e300fa861.jpg", "file_size": 8278, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A15领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2145e8e76a04af0a18ab74e300fa861.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2145e8e76a04af0a18ab74e300fa861.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2145e8e76a04af0a18ab74e300fa861.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2145e8e76a04af0a18ab74e300fa861.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2145e8e76a04af0a18ab74e300fa861.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izh6GirufDHTNuhxMz5d_zuExjU=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.150991+00 2025-12-09 10:15:02.150996+00 9060 DL30435#黄色L SPMX-20240815304232 \N \N \N 1 \N [{"file_id": "34770e1a-2d5a-42f2-a387-79e31b5da03d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deb36f6c6a4b4e1c89f0a3722fa05913.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deb36f6c6a4b4e1c89f0a3722fa05913.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deb36f6c6a4b4e1c89f0a3722fa05913.jpg", "file_size": 17321, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb36f6c6a4b4e1c89f0a3722fa05913.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb36f6c6a4b4e1c89f0a3722fa05913.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deb36f6c6a4b4e1c89f0a3722fa05913.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deb36f6c6a4b4e1c89f0a3722fa05913.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deb36f6c6a4b4e1c89f0a3722fa05913.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0duUnBicfbb3NtGTuNb4cVRnmuc=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.15487+00 2025-12-09 10:15:02.154874+00 9062 C338FWF#水鸭蓝XL SPMX-20240815304231 \N \N \N 1 \N [{"file_id": "8bddd763-60cf-4565-8fdd-e28ba5da4402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "610e14a84c6245c88816de079f8d3b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "610e14a84c6245c88816de079f8d3b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "610e14a84c6245c88816de079f8d3b64.jpg", "file_size": 18302, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#水鸭蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610e14a84c6245c88816de079f8d3b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610e14a84c6245c88816de079f8d3b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610e14a84c6245c88816de079f8d3b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/610e14a84c6245c88816de079f8d3b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/610e14a84c6245c88816de079f8d3b64.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jV2yQKCb1wxzSzbaHdgXma7a8mw=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.156847+00 2025-12-09 10:15:02.156852+00 9063 JTSS080FW#VS-D3 SPMX-20240815304235 \N \N \N 1 \N [{"file_id": "d1700023-9fce-4cbe-aac7-55131f9f59ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5467899788747db94cd9007ce204eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5467899788747db94cd9007ce204eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5467899788747db94cd9007ce204eca.jpg", "file_size": 18857, "is_delete": false, "file_type": 1, "original_file_name": "JTSS080FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5467899788747db94cd9007ce204eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5467899788747db94cd9007ce204eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5467899788747db94cd9007ce204eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5467899788747db94cd9007ce204eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5467899788747db94cd9007ce204eca.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dfk13E4HltavhiAlCfcBvnpcETI=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.158773+00 2025-12-09 10:15:02.158778+00 9064 HT0101-87#WJC22 SPMX-20240815304221 \N \N \N 1 \N [{"file_id": "4c57d80b-ee06-404d-8e20-5808ae4b07c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1c8d167402646dc9a8815646dc1cc51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1c8d167402646dc9a8815646dc1cc51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1c8d167402646dc9a8815646dc1cc51.jpg", "file_size": 16222, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-87#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c8d167402646dc9a8815646dc1cc51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c8d167402646dc9a8815646dc1cc51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1c8d167402646dc9a8815646dc1cc51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1c8d167402646dc9a8815646dc1cc51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1c8d167402646dc9a8815646dc1cc51.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hn0spq2e3gbLL-tJAY4kc98l3Qo=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.160509+00 2025-12-09 10:15:02.160514+00 9065 LJ4007#袖子 SPMX-20240815304224 \N \N \N 1 \N [{"file_id": "fa311114-d4e0-4dd8-8a15-c098efc7691d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg", "file_size": 18411, "is_delete": false, "file_type": 1, "original_file_name": "LJ4007#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd0c94d9a6b4cbbaa81ff3f02df7ad2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDn8_u4ZEyd3vcU-UeFhOPvCOUo=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.162246+00 2025-12-09 10:15:02.162251+00 9066 80325#匹布 SPMX-20240815304227 \N \N \N 1 \N [{"file_id": "d68958dc-a3ad-40f5-b055-2cebcd8bd832", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25375ae4318a46e08f4c13255b352d85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25375ae4318a46e08f4c13255b352d85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25375ae4318a46e08f4c13255b352d85.jpg", "file_size": 10036, "is_delete": false, "file_type": 1, "original_file_name": "80325#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25375ae4318a46e08f4c13255b352d85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25375ae4318a46e08f4c13255b352d85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25375ae4318a46e08f4c13255b352d85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25375ae4318a46e08f4c13255b352d85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25375ae4318a46e08f4c13255b352d85.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLWcLI-PAXzw54EnjOyTCWXm8vc=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.164006+00 2025-12-09 10:15:02.164012+00 9067 FHXGPK-118-5 SPMX-20240815304229 \N \N \N 1 \N [{"file_id": "fe3e3910-352a-4a02-9d99-4202da5f2f2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f2f58762624fa4a9c62df191412667.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f2f58762624fa4a9c62df191412667.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f2f58762624fa4a9c62df191412667.jpg", "file_size": 32034, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-118-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f2f58762624fa4a9c62df191412667.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f2f58762624fa4a9c62df191412667.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f2f58762624fa4a9c62df191412667.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f2f58762624fa4a9c62df191412667.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f2f58762624fa4a9c62df191412667.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-ENHibR8SBSx6RrYzIlLdUwJSE=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.165985+00 2025-12-09 10:15:02.16599+00 9068 LZ1245#上身3号色 SPMX-20240815304234 \N \N \N 1 \N [{"file_id": "e29ec9d5-60d1-42ff-84ff-033f20bc4ad6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41ee40d502d44ba188f1b26aff116795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41ee40d502d44ba188f1b26aff116795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41ee40d502d44ba188f1b26aff116795.jpg", "file_size": 16792, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ee40d502d44ba188f1b26aff116795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ee40d502d44ba188f1b26aff116795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ee40d502d44ba188f1b26aff116795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41ee40d502d44ba188f1b26aff116795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41ee40d502d44ba188f1b26aff116795.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EjkgzCd2dUOL72k_ZuDlV8T4AI=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.167968+00 2025-12-09 10:15:02.167974+00 9069 1073-2#天蓝 SPMX-20240815304225 \N \N \N 1 \N [{"file_id": "09020f56-2e77-4a72-af3d-3521f269336c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg", "file_size": 27893, "is_delete": false, "file_type": 1, "original_file_name": "1073-2#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c7bbdcf6877418b9e0fb46ce87a2e1c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-WjxHfkJEJVcc-tCremZYIMnFQ=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.170195+00 2025-12-09 10:15:02.170201+00 9070 DL30435#黄色2XL SPMX-20240815304222 \N \N \N 1 \N [{"file_id": "900a20ba-7e04-4360-b988-253e3dde492b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a67d5f566afc417d8bf4b0b16bd5dd1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a67d5f566afc417d8bf4b0b16bd5dd1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a67d5f566afc417d8bf4b0b16bd5dd1c.jpg", "file_size": 18648, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67d5f566afc417d8bf4b0b16bd5dd1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67d5f566afc417d8bf4b0b16bd5dd1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67d5f566afc417d8bf4b0b16bd5dd1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a67d5f566afc417d8bf4b0b16bd5dd1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a67d5f566afc417d8bf4b0b16bd5dd1c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9Egc9U1d5n8V6ZRsustZ9j0vQs=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.172436+00 2025-12-09 10:15:02.17244+00 9071 LZ1245#上身2号色 SPMX-20240815304223 \N \N \N 1 \N [{"file_id": "43cb4ec7-0495-44a5-a6ea-98b44abe6f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f640fe657d5b49a69de8fe4fd7b7100b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f640fe657d5b49a69de8fe4fd7b7100b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f640fe657d5b49a69de8fe4fd7b7100b.jpg", "file_size": 16820, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f640fe657d5b49a69de8fe4fd7b7100b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f640fe657d5b49a69de8fe4fd7b7100b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f640fe657d5b49a69de8fe4fd7b7100b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f640fe657d5b49a69de8fe4fd7b7100b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f640fe657d5b49a69de8fe4fd7b7100b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRXuqKvMjg4vArznAZ1S4-9BNlI=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.174489+00 2025-12-09 10:15:02.174494+00 9072 HT0101-88#WJC22 SPMX-20240815304233 \N \N \N 1 \N [{"file_id": "e9e3e14f-bfda-4fe4-b31c-737a25cc67e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5115843da43e4fcb9ee699b5a1b5d2f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5115843da43e4fcb9ee699b5a1b5d2f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5115843da43e4fcb9ee699b5a1b5d2f6.jpg", "file_size": 25385, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-88#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5115843da43e4fcb9ee699b5a1b5d2f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5115843da43e4fcb9ee699b5a1b5d2f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5115843da43e4fcb9ee699b5a1b5d2f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5115843da43e4fcb9ee699b5a1b5d2f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5115843da43e4fcb9ee699b5a1b5d2f6.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YqngsCN5_ex3uWuBisBuYt27eeM=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.176523+00 2025-12-09 10:15:02.176528+00 9073 23-2114#-A15领子通用 SPMX-20240815304241 \N \N \N 1 \N [{"file_id": "186beeec-09cb-4e56-93b9-e1464f068c2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c1decddf204bcfa754a938d1813ceb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c1decddf204bcfa754a938d1813ceb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c1decddf204bcfa754a938d1813ceb.jpg", "file_size": 10767, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#-A15领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c1decddf204bcfa754a938d1813ceb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c1decddf204bcfa754a938d1813ceb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c1decddf204bcfa754a938d1813ceb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c1decddf204bcfa754a938d1813ceb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c1decddf204bcfa754a938d1813ceb.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGRNG_O5m80O5JLLctnjCkKSZwo=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.178531+00 2025-12-09 10:15:02.178537+00 9074 JTSS081FW#VS-D3 SPMX-20240815304246 \N \N \N 1 \N [{"file_id": "e92d6ee0-d5b1-45c8-addb-5a504fe49fb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c379b1db88349fd97fb0d461254af09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c379b1db88349fd97fb0d461254af09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c379b1db88349fd97fb0d461254af09.jpg", "file_size": 20806, "is_delete": false, "file_type": 1, "original_file_name": "JTSS081FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c379b1db88349fd97fb0d461254af09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c379b1db88349fd97fb0d461254af09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c379b1db88349fd97fb0d461254af09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c379b1db88349fd97fb0d461254af09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c379b1db88349fd97fb0d461254af09.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F776QeknbTuT_qEIYKP9gy6ofvQ=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.180562+00 2025-12-09 10:15:02.180567+00 9075 DL30435#黄色XL SPMX-20240815304243 \N \N \N 1 \N [{"file_id": "b0730dde-f8ae-4a5c-b091-fb47fa7db0ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27899c8bf10d42069988a652712e1d24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27899c8bf10d42069988a652712e1d24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27899c8bf10d42069988a652712e1d24.jpg", "file_size": 18256, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27899c8bf10d42069988a652712e1d24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27899c8bf10d42069988a652712e1d24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27899c8bf10d42069988a652712e1d24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27899c8bf10d42069988a652712e1d24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27899c8bf10d42069988a652712e1d24.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtOS_GPeFtwfS75g3pTwhEqRu6Y=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.182621+00 2025-12-09 10:15:02.182626+00 9076 1073-2#粉色 SPMX-20240815304249 \N \N \N 1 \N [{"file_id": "a5959088-818b-4d40-89f9-5d584e8482ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf64f7196414f2fbc00b10f324dc27b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf64f7196414f2fbc00b10f324dc27b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf64f7196414f2fbc00b10f324dc27b.jpg", "file_size": 27595, "is_delete": false, "file_type": 1, "original_file_name": "1073-2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf64f7196414f2fbc00b10f324dc27b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf64f7196414f2fbc00b10f324dc27b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf64f7196414f2fbc00b10f324dc27b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf64f7196414f2fbc00b10f324dc27b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf64f7196414f2fbc00b10f324dc27b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k3lt_ysKgmCs4_pvhd7wsa6Zhr8=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.184649+00 2025-12-09 10:15:02.184654+00 9077 0003-419#WJC22 SPMX-20240815304250 \N \N \N 1 \N [{"file_id": "90585699-7b7b-46ba-8c4b-41f0c54ad5fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a13c61c2e6d049b596f6e2c5a219f1fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a13c61c2e6d049b596f6e2c5a219f1fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a13c61c2e6d049b596f6e2c5a219f1fc.jpg", "file_size": 9593, "is_delete": false, "file_type": 1, "original_file_name": "0003-419#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13c61c2e6d049b596f6e2c5a219f1fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13c61c2e6d049b596f6e2c5a219f1fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13c61c2e6d049b596f6e2c5a219f1fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a13c61c2e6d049b596f6e2c5a219f1fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a13c61c2e6d049b596f6e2c5a219f1fc.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBluK1Cupj2vqDOXWDBeHre6tBw=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.186395+00 2025-12-09 10:15:02.1864+00 9078 C338FWF#浅绿色L SPMX-20240815304252 \N \N \N 1 \N [{"file_id": "e3194250-52a4-4d81-b172-43139a7ac312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "887c313d0fce402c9ab63e714b37cba0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "887c313d0fce402c9ab63e714b37cba0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "887c313d0fce402c9ab63e714b37cba0.jpg", "file_size": 17547, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#浅绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c313d0fce402c9ab63e714b37cba0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c313d0fce402c9ab63e714b37cba0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c313d0fce402c9ab63e714b37cba0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/887c313d0fce402c9ab63e714b37cba0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/887c313d0fce402c9ab63e714b37cba0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKEDsAgOIrbxx1rGrW28e89qY44=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.18814+00 2025-12-09 10:15:02.188146+00 9079 HT0101-89#WJC22 SPMX-20240815304244 \N \N \N 1 \N [{"file_id": "78c4ed31-4c9a-42fc-a2ea-fbd1bd4a0f0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b30b6b3fd9d4870a80d1069341b0706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b30b6b3fd9d4870a80d1069341b0706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b30b6b3fd9d4870a80d1069341b0706.jpg", "file_size": 27243, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-89#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b30b6b3fd9d4870a80d1069341b0706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b30b6b3fd9d4870a80d1069341b0706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b30b6b3fd9d4870a80d1069341b0706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b30b6b3fd9d4870a80d1069341b0706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b30b6b3fd9d4870a80d1069341b0706.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLcW1vIcL1U6qDx2pGCYxIPcZPE=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.190102+00 2025-12-09 10:15:02.190107+00 9080 LJ4008#前后幅 SPMX-20240815304236 \N \N \N 1 \N [{"file_id": "0a346ad5-ea5b-463b-b814-f7352782e035", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4514091375d64869a73f0a186912adc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4514091375d64869a73f0a186912adc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4514091375d64869a73f0a186912adc9.jpg", "file_size": 22040, "is_delete": false, "file_type": 1, "original_file_name": "LJ4008#前后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4514091375d64869a73f0a186912adc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4514091375d64869a73f0a186912adc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4514091375d64869a73f0a186912adc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4514091375d64869a73f0a186912adc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4514091375d64869a73f0a186912adc9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJaMos6EvLgZ_HjVuFYH7FRdDBg=", "createTime": "2024-08-15 14:48:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.192093+00 2025-12-09 10:15:02.192098+00 9081 FHXGPK-119-1 SPMX-20240815304240 \N \N \N 1 \N [{"file_id": "9fcf8d4e-4d93-4d18-8eba-b259f730fd45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "835ea20331e34712821a82af375e8875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "835ea20331e34712821a82af375e8875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "835ea20331e34712821a82af375e8875.jpg", "file_size": 24221, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-119-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ea20331e34712821a82af375e8875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ea20331e34712821a82af375e8875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ea20331e34712821a82af375e8875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/835ea20331e34712821a82af375e8875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/835ea20331e34712821a82af375e8875.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ml9VPCi-1ky_WGBNE6COyEA5LWM=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.194068+00 2025-12-09 10:15:02.194073+00 9082 1073-2#白色 SPMX-20240815304238 \N \N \N 1 \N [{"file_id": "1660cca6-ac2d-4e10-a6db-140c0f29bdee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70d68e6c968d44859280a576d2ba73fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70d68e6c968d44859280a576d2ba73fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70d68e6c968d44859280a576d2ba73fd.jpg", "file_size": 28437, "is_delete": false, "file_type": 1, "original_file_name": "1073-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d68e6c968d44859280a576d2ba73fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d68e6c968d44859280a576d2ba73fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d68e6c968d44859280a576d2ba73fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70d68e6c968d44859280a576d2ba73fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70d68e6c968d44859280a576d2ba73fd.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_ccaOMr59_egVpYFwDOBbiMfJs=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.195841+00 2025-12-09 10:15:02.195846+00 9083 80325#后幅 SPMX-20240815304237 \N \N \N 1 \N [{"file_id": "1821f0d0-c78a-4a18-9472-8107ab2c0576", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8103970ef2a24c60b797560339cfae7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8103970ef2a24c60b797560339cfae7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8103970ef2a24c60b797560339cfae7a.jpg", "file_size": 16710, "is_delete": false, "file_type": 1, "original_file_name": "80325#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8103970ef2a24c60b797560339cfae7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8103970ef2a24c60b797560339cfae7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8103970ef2a24c60b797560339cfae7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8103970ef2a24c60b797560339cfae7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8103970ef2a24c60b797560339cfae7a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IpwO4bI9MENQlMYe10wrUwxB--U=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.197575+00 2025-12-09 10:15:02.19758+00 9084 FHXGPK-119-2 SPMX-20240815304251 \N \N \N 1 \N [{"file_id": "a3f027a3-f07a-45e2-a1cc-d7af94fa2f42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6189b453a3452b8ce22bbb55d2b8a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6189b453a3452b8ce22bbb55d2b8a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6189b453a3452b8ce22bbb55d2b8a6.jpg", "file_size": 28669, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-119-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6189b453a3452b8ce22bbb55d2b8a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6189b453a3452b8ce22bbb55d2b8a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6189b453a3452b8ce22bbb55d2b8a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6189b453a3452b8ce22bbb55d2b8a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6189b453a3452b8ce22bbb55d2b8a6.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qSPw7zJfBqjC03PzsNkqjYX3IVQ=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.199324+00 2025-12-09 10:15:02.199329+00 9085 0003-418#WJC22 SPMX-20240815304239 \N \N \N 1 \N [{"file_id": "8146b75a-86d4-4ccf-b88d-3a149490fc04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a565d454dd0a4284953923dcffda334a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a565d454dd0a4284953923dcffda334a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a565d454dd0a4284953923dcffda334a.jpg", "file_size": 19590, "is_delete": false, "file_type": 1, "original_file_name": "0003-418#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a565d454dd0a4284953923dcffda334a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a565d454dd0a4284953923dcffda334a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a565d454dd0a4284953923dcffda334a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a565d454dd0a4284953923dcffda334a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a565d454dd0a4284953923dcffda334a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yl1Ez_CFxJjZmfyx_lH63Rml0wg=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.201274+00 2025-12-09 10:15:02.201278+00 9086 LZ1245#上身4号色 SPMX-20240815304245 \N \N \N 1 \N [{"file_id": "13ee42a2-04bc-4650-b8fd-3b764621f03f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77c013a21e1349c9824a4a147513c88c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77c013a21e1349c9824a4a147513c88c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77c013a21e1349c9824a4a147513c88c.jpg", "file_size": 17542, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77c013a21e1349c9824a4a147513c88c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77c013a21e1349c9824a4a147513c88c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77c013a21e1349c9824a4a147513c88c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77c013a21e1349c9824a4a147513c88c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77c013a21e1349c9824a4a147513c88c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGPM_uBLPzkm612jsY0c7BT8t_k=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.203249+00 2025-12-09 10:15:02.203255+00 9087 LJ4008#袖子 SPMX-20240815304247 \N \N \N 1 \N [{"file_id": "6d09f5ba-6b60-445b-86f0-594962cbb459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13891dc5216b4bb09a817a269ad48dba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13891dc5216b4bb09a817a269ad48dba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13891dc5216b4bb09a817a269ad48dba.jpg", "file_size": 26107, "is_delete": false, "file_type": 1, "original_file_name": "LJ4008#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13891dc5216b4bb09a817a269ad48dba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13891dc5216b4bb09a817a269ad48dba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13891dc5216b4bb09a817a269ad48dba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13891dc5216b4bb09a817a269ad48dba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13891dc5216b4bb09a817a269ad48dba.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56IUqu2twMM17pl4xo4BqC-iyw4=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.205176+00 2025-12-09 10:15:02.205181+00 9088 C338FWF#水鸭蓝净色 SPMX-20240815304242 \N \N \N 1 \N [{"file_id": "9912c8b0-cfc7-40d7-89dc-a974a99f0013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8588f26af15c436a9bcca740ef4ab484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8588f26af15c436a9bcca740ef4ab484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8588f26af15c436a9bcca740ef4ab484.jpg", "file_size": 6647, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#水鸭蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8588f26af15c436a9bcca740ef4ab484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8588f26af15c436a9bcca740ef4ab484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8588f26af15c436a9bcca740ef4ab484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8588f26af15c436a9bcca740ef4ab484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8588f26af15c436a9bcca740ef4ab484.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUwWRnjwLuDZUCX6AhkSIzuf1Zw=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.207212+00 2025-12-09 10:15:02.207217+00 9089 80325#小童 SPMX-20240815304248 \N \N \N 1 \N [{"file_id": "946143e3-03b6-4865-b38a-389f9de9946d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ac2283478624c0f8d612d5cb4249b93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ac2283478624c0f8d612d5cb4249b93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ac2283478624c0f8d612d5cb4249b93.jpg", "file_size": 25686, "is_delete": false, "file_type": 1, "original_file_name": "80325#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac2283478624c0f8d612d5cb4249b93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac2283478624c0f8d612d5cb4249b93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ac2283478624c0f8d612d5cb4249b93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ac2283478624c0f8d612d5cb4249b93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ac2283478624c0f8d612d5cb4249b93.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDlphS9vV9g71TJ9FwoQlyT6zPk=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.209226+00 2025-12-09 10:15:02.209231+00 9090 23-2114#A1-3XL SPMX-20240815304253 \N \N \N 1 \N [{"file_id": "ebe5b065-0907-41d6-b055-b54e77498759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8670a7f33524a598a2482e219e08cf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8670a7f33524a598a2482e219e08cf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8670a7f33524a598a2482e219e08cf8.jpg", "file_size": 16362, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8670a7f33524a598a2482e219e08cf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8670a7f33524a598a2482e219e08cf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8670a7f33524a598a2482e219e08cf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8670a7f33524a598a2482e219e08cf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8670a7f33524a598a2482e219e08cf8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aTaTAR8pAM5e7d4Qof6B3i2ooyE=", "createTime": "2024-08-15 14:48:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.211235+00 2025-12-09 10:15:02.211241+00 9091 0003-41FWF#V5曲线 SPMX-20240815304260 \N \N \N 1 \N [{"file_id": "4e9795f4-6040-44d8-b0da-ef4b46e2430a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d09697144ec94103b53bcb574479ca1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d09697144ec94103b53bcb574479ca1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d09697144ec94103b53bcb574479ca1f.jpg", "file_size": 7650, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09697144ec94103b53bcb574479ca1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09697144ec94103b53bcb574479ca1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d09697144ec94103b53bcb574479ca1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d09697144ec94103b53bcb574479ca1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d09697144ec94103b53bcb574479ca1f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUM30Njq1yDkK2s3uriRy_FQkXc=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.21325+00 2025-12-09 10:15:02.213255+00 9092 C338FWF#浅绿色M SPMX-20240815304263 \N \N \N 1 \N [{"file_id": "0df3c128-446b-4b9d-be2b-3eb0168d8ae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dea2f934a1564b9fa1c9b4f03b7eda31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dea2f934a1564b9fa1c9b4f03b7eda31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dea2f934a1564b9fa1c9b4f03b7eda31.jpg", "file_size": 18557, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#浅绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea2f934a1564b9fa1c9b4f03b7eda31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea2f934a1564b9fa1c9b4f03b7eda31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea2f934a1564b9fa1c9b4f03b7eda31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dea2f934a1564b9fa1c9b4f03b7eda31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dea2f934a1564b9fa1c9b4f03b7eda31.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEcvT50oUfZnQ-gSyTnv7PX_zeg=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.215267+00 2025-12-09 10:15:02.215272+00 9093 HT0101-9#WJC22 SPMX-20240815304257 \N \N \N 1 \N [{"file_id": "afe698af-2bd4-4370-85e9-93e18a19d55c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f85a66724c04410cae20120702f6ac89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f85a66724c04410cae20120702f6ac89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f85a66724c04410cae20120702f6ac89.jpg", "file_size": 12990, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85a66724c04410cae20120702f6ac89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85a66724c04410cae20120702f6ac89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85a66724c04410cae20120702f6ac89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f85a66724c04410cae20120702f6ac89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f85a66724c04410cae20120702f6ac89.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TYMWh1ivVm2YFDyUV01tbtAU2o=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.217245+00 2025-12-09 10:15:02.21725+00 9094 JTSS082FW#VS-D3 SPMX-20240815304256 \N \N \N 1 \N [{"file_id": "4450849e-1199-420d-84d7-77db24288192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8f90c7893eb486fb3639ba1967563b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8f90c7893eb486fb3639ba1967563b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8f90c7893eb486fb3639ba1967563b0.jpg", "file_size": 8934, "is_delete": false, "file_type": 1, "original_file_name": "JTSS082FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8f90c7893eb486fb3639ba1967563b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8f90c7893eb486fb3639ba1967563b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8f90c7893eb486fb3639ba1967563b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8f90c7893eb486fb3639ba1967563b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8f90c7893eb486fb3639ba1967563b0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxfOMFe9dOcKEmqa-3_WyZ9iRZg=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.219005+00 2025-12-09 10:15:02.21901+00 9095 80326#中童 SPMX-20240815304259 \N \N \N 1 \N [{"file_id": "67283c1f-1c6e-4b93-9492-341f9d6a0eb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98c3e6d8f2ad4afc938b4630cb505a40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98c3e6d8f2ad4afc938b4630cb505a40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98c3e6d8f2ad4afc938b4630cb505a40.jpg", "file_size": 28572, "is_delete": false, "file_type": 1, "original_file_name": "80326#中童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c3e6d8f2ad4afc938b4630cb505a40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c3e6d8f2ad4afc938b4630cb505a40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c3e6d8f2ad4afc938b4630cb505a40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98c3e6d8f2ad4afc938b4630cb505a40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98c3e6d8f2ad4afc938b4630cb505a40.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZcDDLMEGExWi7KxOXn2icznnHM=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.220752+00 2025-12-09 10:15:02.220757+00 9096 1075FWF#蓝 SPMX-20240815304258 \N \N \N 1 \N [{"file_id": "5df6026f-0861-4572-8859-09d6490809da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed03ccfa66da4dce91d709e0f6f5cc40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed03ccfa66da4dce91d709e0f6f5cc40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed03ccfa66da4dce91d709e0f6f5cc40.jpg", "file_size": 7865, "is_delete": false, "file_type": 1, "original_file_name": "1075FWF#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed03ccfa66da4dce91d709e0f6f5cc40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed03ccfa66da4dce91d709e0f6f5cc40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed03ccfa66da4dce91d709e0f6f5cc40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed03ccfa66da4dce91d709e0f6f5cc40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed03ccfa66da4dce91d709e0f6f5cc40.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sKuBuBF7H84Lws6vVjcxi2vF84=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.222488+00 2025-12-09 10:15:02.222494+00 9097 FHXGPK-119-3 SPMX-20240815304261 \N \N \N 1 \N [{"file_id": "efe6f991-961b-4556-8084-126cabbca6f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "259bf6efb09a4c73a4c4215eb820fcd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "259bf6efb09a4c73a4c4215eb820fcd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "259bf6efb09a4c73a4c4215eb820fcd8.jpg", "file_size": 27995, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-119-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259bf6efb09a4c73a4c4215eb820fcd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259bf6efb09a4c73a4c4215eb820fcd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/259bf6efb09a4c73a4c4215eb820fcd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/259bf6efb09a4c73a4c4215eb820fcd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/259bf6efb09a4c73a4c4215eb820fcd8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnEOcRlqqoGHFwthhIj4ITaAQ2w=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.224452+00 2025-12-09 10:15:02.224457+00 9098 LJ5001#RC23 SPMX-20240815304262 \N \N \N 1 \N [{"file_id": "daa94304-fe57-45b6-9267-055c0348e767", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dabad1d85c594029aa41ab7da36fdfe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dabad1d85c594029aa41ab7da36fdfe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dabad1d85c594029aa41ab7da36fdfe3.jpg", "file_size": 69717, "is_delete": false, "file_type": 1, "original_file_name": "LJ5001#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabad1d85c594029aa41ab7da36fdfe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabad1d85c594029aa41ab7da36fdfe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dabad1d85c594029aa41ab7da36fdfe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dabad1d85c594029aa41ab7da36fdfe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dabad1d85c594029aa41ab7da36fdfe3.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2IQnS7pJStEMf6QPVIMWI6FdWHQ=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.226408+00 2025-12-09 10:15:02.226413+00 9099 DL30435#黄色匹布 SPMX-20240815304254 \N \N \N 1 \N [{"file_id": "388814ff-6e12-42d7-b584-7c69fabe2e94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3822cd97e37e46948033db96dcd768c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3822cd97e37e46948033db96dcd768c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3822cd97e37e46948033db96dcd768c2.jpg", "file_size": 18934, "is_delete": false, "file_type": 1, "original_file_name": "DL30435#黄色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3822cd97e37e46948033db96dcd768c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3822cd97e37e46948033db96dcd768c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3822cd97e37e46948033db96dcd768c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3822cd97e37e46948033db96dcd768c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3822cd97e37e46948033db96dcd768c2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_yTLdVXADElMx-mM7wdXPJ5Zmw=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.228406+00 2025-12-09 10:15:02.228411+00 9100 LZ1245#下身1号色 SPMX-20240815304255 \N \N \N 1 \N [{"file_id": "65feb0ff-12e4-45d1-aafd-417f7ec7ca3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45a2e22189cd43c7a012851611acd0a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45a2e22189cd43c7a012851611acd0a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45a2e22189cd43c7a012851611acd0a0.jpg", "file_size": 16594, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a2e22189cd43c7a012851611acd0a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a2e22189cd43c7a012851611acd0a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a2e22189cd43c7a012851611acd0a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45a2e22189cd43c7a012851611acd0a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45a2e22189cd43c7a012851611acd0a0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS65cr83iGPCDLwODy4TDFI1hp4=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.23039+00 2025-12-09 10:15:02.230395+00 9101 LZ1245#下身2号色 SPMX-20240815304265 \N \N \N 1 \N [{"file_id": "0d17f115-0675-4934-ab18-ee14fe86b6d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "631b9261740a4324b82215f1732a7473.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "631b9261740a4324b82215f1732a7473.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "631b9261740a4324b82215f1732a7473.jpg", "file_size": 15730, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631b9261740a4324b82215f1732a7473.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631b9261740a4324b82215f1732a7473.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631b9261740a4324b82215f1732a7473.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/631b9261740a4324b82215f1732a7473.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/631b9261740a4324b82215f1732a7473.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6i9HgrgNKozhZhgiofFj_D_qXg=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.232402+00 2025-12-09 10:15:02.232407+00 9102 1076#枣红色 SPMX-20240815304268 \N \N \N 1 \N [{"file_id": "64272647-bf12-4dd6-8774-7fdc4f070c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c502db099a5e4e7e9239d21d10114e03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c502db099a5e4e7e9239d21d10114e03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c502db099a5e4e7e9239d21d10114e03.jpg", "file_size": 20411, "is_delete": false, "file_type": 1, "original_file_name": "1076#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c502db099a5e4e7e9239d21d10114e03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c502db099a5e4e7e9239d21d10114e03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c502db099a5e4e7e9239d21d10114e03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c502db099a5e4e7e9239d21d10114e03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c502db099a5e4e7e9239d21d10114e03.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YdZo83PUFY-62BCl8ODwS7TmfTk=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.234434+00 2025-12-09 10:15:02.23444+00 9103 23-2114#A1-领子3XL SPMX-20240815304275 \N \N \N 1 \N [{"file_id": "8da2c981-0782-4621-a083-40d4b8abbd58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abaa5e2fb3d144bab903b6bc489b6098.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abaa5e2fb3d144bab903b6bc489b6098.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abaa5e2fb3d144bab903b6bc489b6098.jpg", "file_size": 12082, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abaa5e2fb3d144bab903b6bc489b6098.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abaa5e2fb3d144bab903b6bc489b6098.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abaa5e2fb3d144bab903b6bc489b6098.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abaa5e2fb3d144bab903b6bc489b6098.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abaa5e2fb3d144bab903b6bc489b6098.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8iHrujRtcC7lPm6b3wPhlnyh0bM=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.236425+00 2025-12-09 10:15:02.236431+00 9104 JTSS083FW#VS-D3 SPMX-20240815304267 \N \N \N 1 \N [{"file_id": "f9c0b4fd-c9fc-42d5-a85d-16addb2d5a13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f6636a07e12484f948525f0fe52c7a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f6636a07e12484f948525f0fe52c7a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f6636a07e12484f948525f0fe52c7a4.jpg", "file_size": 13976, "is_delete": false, "file_type": 1, "original_file_name": "JTSS083FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6636a07e12484f948525f0fe52c7a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6636a07e12484f948525f0fe52c7a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6636a07e12484f948525f0fe52c7a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f6636a07e12484f948525f0fe52c7a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f6636a07e12484f948525f0fe52c7a4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzBeb8bN7Q0NYwbtF0Fz4KYy48s=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.238418+00 2025-12-09 10:15:02.238423+00 9105 FHXGPK-119-4 SPMX-20240815304272 \N \N \N 1 \N [{"file_id": "841e7ee2-080c-4887-ad26-4c930153b17a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5869dcd1efe24a2f83b2737972d06d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5869dcd1efe24a2f83b2737972d06d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5869dcd1efe24a2f83b2737972d06d8b.jpg", "file_size": 31241, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-119-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5869dcd1efe24a2f83b2737972d06d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5869dcd1efe24a2f83b2737972d06d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5869dcd1efe24a2f83b2737972d06d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5869dcd1efe24a2f83b2737972d06d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5869dcd1efe24a2f83b2737972d06d8b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFMAE1_jP8FkBSHvDazc5107tFI=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.240481+00 2025-12-09 10:15:02.240487+00 9106 LJ6001#前幅 SPMX-20240815304273 \N \N \N 1 \N [{"file_id": "57cc0bcb-0a5a-41ac-b0ef-c5048d830381", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0d9ba00e07d47dc912d758318420744.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0d9ba00e07d47dc912d758318420744.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0d9ba00e07d47dc912d758318420744.jpg", "file_size": 11392, "is_delete": false, "file_type": 1, "original_file_name": "LJ6001#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d9ba00e07d47dc912d758318420744.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d9ba00e07d47dc912d758318420744.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d9ba00e07d47dc912d758318420744.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0d9ba00e07d47dc912d758318420744.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0d9ba00e07d47dc912d758318420744.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icbhSFEI_RiUC3nIrCjShozjw3I=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.242451+00 2025-12-09 10:15:02.242456+00 9107 DL30449#白色M SPMX-20240815304276 \N \N \N 1 \N [{"file_id": "59195db3-0d0b-43df-8c2f-3f940933be17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31890db3c3ab42ba88c5710a9792e23d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31890db3c3ab42ba88c5710a9792e23d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31890db3c3ab42ba88c5710a9792e23d.jpg", "file_size": 21785, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31890db3c3ab42ba88c5710a9792e23d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31890db3c3ab42ba88c5710a9792e23d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31890db3c3ab42ba88c5710a9792e23d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31890db3c3ab42ba88c5710a9792e23d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31890db3c3ab42ba88c5710a9792e23d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjSHIlrAo-JtiuBrxgSWwG2NWWo=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.244489+00 2025-12-09 10:15:02.244494+00 9108 1076#粉红色 SPMX-20240815304277 \N \N \N 1 \N [{"file_id": "d2be621f-dd25-400c-a0d2-6fbddae79684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3af2f96bad1d405baae256dfdb4c8fc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3af2f96bad1d405baae256dfdb4c8fc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3af2f96bad1d405baae256dfdb4c8fc0.jpg", "file_size": 20108, "is_delete": false, "file_type": 1, "original_file_name": "1076#粉红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af2f96bad1d405baae256dfdb4c8fc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af2f96bad1d405baae256dfdb4c8fc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3af2f96bad1d405baae256dfdb4c8fc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3af2f96bad1d405baae256dfdb4c8fc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3af2f96bad1d405baae256dfdb4c8fc0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z3OmAISRT9k0ome00ti6VfiVWX0=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.246513+00 2025-12-09 10:15:02.246518+00 9109 80326#前幅 SPMX-20240815304270 \N \N \N 1 \N [{"file_id": "09c95fcb-cce7-4207-ae48-77f19f559d5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af184929edf048cab6406463d4f0d82e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af184929edf048cab6406463d4f0d82e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af184929edf048cab6406463d4f0d82e.jpg", "file_size": 18436, "is_delete": false, "file_type": 1, "original_file_name": "80326#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af184929edf048cab6406463d4f0d82e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af184929edf048cab6406463d4f0d82e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af184929edf048cab6406463d4f0d82e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af184929edf048cab6406463d4f0d82e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af184929edf048cab6406463d4f0d82e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEJeq-howM-EXJBXPwPfyQuzQLA=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.248502+00 2025-12-09 10:15:02.248506+00 9110 C338FWF#浅绿色S SPMX-20240815304274 \N \N \N 1 \N [{"file_id": "72d6cb18-42d4-4a51-86b5-a5c028d1b05d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e75ed0907b84b9bb078ec0b617281fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e75ed0907b84b9bb078ec0b617281fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e75ed0907b84b9bb078ec0b617281fc.jpg", "file_size": 18461, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#浅绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e75ed0907b84b9bb078ec0b617281fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e75ed0907b84b9bb078ec0b617281fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e75ed0907b84b9bb078ec0b617281fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e75ed0907b84b9bb078ec0b617281fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e75ed0907b84b9bb078ec0b617281fc.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGzKcWD9QJ2SP8cTqKnbcsR7T6M=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.250539+00 2025-12-09 10:15:02.250544+00 9111 DL30449#白色L SPMX-20240815304266 \N \N \N 1 \N [{"file_id": "944f500d-7af8-4fea-b60f-ae0c6c0c6d96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8044f90533694ffc9c1b48b57a3bb09e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8044f90533694ffc9c1b48b57a3bb09e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8044f90533694ffc9c1b48b57a3bb09e.jpg", "file_size": 21349, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8044f90533694ffc9c1b48b57a3bb09e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8044f90533694ffc9c1b48b57a3bb09e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8044f90533694ffc9c1b48b57a3bb09e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8044f90533694ffc9c1b48b57a3bb09e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8044f90533694ffc9c1b48b57a3bb09e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0K2T0bYTjTyab6ZPhTsvkwCcKaE=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.252547+00 2025-12-09 10:15:02.252552+00 9112 0003-41FWF#橘色 SPMX-20240815304271 \N \N \N 1 \N [{"file_id": "36a87393-3485-4e50-8091-48984f2a81d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e979a264d6b741bb83626404c7b0e78d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e979a264d6b741bb83626404c7b0e78d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e979a264d6b741bb83626404c7b0e78d.jpg", "file_size": 14202, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e979a264d6b741bb83626404c7b0e78d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e979a264d6b741bb83626404c7b0e78d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e979a264d6b741bb83626404c7b0e78d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e979a264d6b741bb83626404c7b0e78d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e979a264d6b741bb83626404c7b0e78d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvZ9fs2HM5yl7W0sGBUzEhMX8YY=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.254556+00 2025-12-09 10:15:02.254561+00 9113 23-2114#A1-4XL SPMX-20240815304264 \N \N \N 1 \N [{"file_id": "e0469ca6-6a3c-4dff-8fc3-b7a3b2d930c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82e7fae8cdd2405597ae365c472a2f78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82e7fae8cdd2405597ae365c472a2f78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82e7fae8cdd2405597ae365c472a2f78.jpg", "file_size": 15741, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e7fae8cdd2405597ae365c472a2f78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e7fae8cdd2405597ae365c472a2f78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e7fae8cdd2405597ae365c472a2f78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82e7fae8cdd2405597ae365c472a2f78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82e7fae8cdd2405597ae365c472a2f78.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCa-pRC-CH7_V88lH6Hp90bAA5Q=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.256558+00 2025-12-09 10:15:02.256564+00 9114 HT0101-90#WJC22 SPMX-20240815304269 \N \N \N 1 \N [{"file_id": "ad751a40-223c-416c-bf3a-ceecb8d63416", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a085a4cbea62498eba86b2e5dd4ff72c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a085a4cbea62498eba86b2e5dd4ff72c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a085a4cbea62498eba86b2e5dd4ff72c.jpg", "file_size": 15822, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-90#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a085a4cbea62498eba86b2e5dd4ff72c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a085a4cbea62498eba86b2e5dd4ff72c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a085a4cbea62498eba86b2e5dd4ff72c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a085a4cbea62498eba86b2e5dd4ff72c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a085a4cbea62498eba86b2e5dd4ff72c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wc1pWP5YE9NwM9xEHqIdC2pBNmo=", "createTime": "2024-08-15 14:48:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.258583+00 2025-12-09 10:15:02.258588+00 9115 JTSS084FW#VS-D3 SPMX-20240815304279 \N \N \N 1 \N [{"file_id": "145b9c3d-bbe9-4155-bd33-42c62ca0ebea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f83c2c10d114fc5ad1e883ca0d54399.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f83c2c10d114fc5ad1e883ca0d54399.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f83c2c10d114fc5ad1e883ca0d54399.jpg", "file_size": 20046, "is_delete": false, "file_type": 1, "original_file_name": "JTSS084FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f83c2c10d114fc5ad1e883ca0d54399.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f83c2c10d114fc5ad1e883ca0d54399.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f83c2c10d114fc5ad1e883ca0d54399.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f83c2c10d114fc5ad1e883ca0d54399.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f83c2c10d114fc5ad1e883ca0d54399.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wdzSYdgA6f_uC9WErgxMTAfdLo=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.260587+00 2025-12-09 10:15:02.260592+00 9116 DL30449#白色XL SPMX-20240815304286 \N \N \N 1 \N [{"file_id": "f1f7cd5b-f72b-499c-9f73-f9e42ce4cfc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef7bc804950e4e408d35700bdb742fb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef7bc804950e4e408d35700bdb742fb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef7bc804950e4e408d35700bdb742fb6.jpg", "file_size": 21095, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7bc804950e4e408d35700bdb742fb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7bc804950e4e408d35700bdb742fb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7bc804950e4e408d35700bdb742fb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef7bc804950e4e408d35700bdb742fb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef7bc804950e4e408d35700bdb742fb6.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uTGprZFcc8ybCmCz-a7cSxxmdg=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.262621+00 2025-12-09 10:15:02.262626+00 9117 23-2114#A1-领子4XL SPMX-20240815304287 \N \N \N 1 \N [{"file_id": "67eaec1a-6cfc-40f0-815f-9f8dcff01ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "678d32d9fd7c4b528f70017a17496139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "678d32d9fd7c4b528f70017a17496139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "678d32d9fd7c4b528f70017a17496139.jpg", "file_size": 12410, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/678d32d9fd7c4b528f70017a17496139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/678d32d9fd7c4b528f70017a17496139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/678d32d9fd7c4b528f70017a17496139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/678d32d9fd7c4b528f70017a17496139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/678d32d9fd7c4b528f70017a17496139.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDFPSLsR2-TIZOqFW3EzTtsrrlU=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.264561+00 2025-12-09 10:15:02.264565+00 9118 LZ1245#下身3号色 SPMX-20240815304280 \N \N \N 1 \N [{"file_id": "bd1db03e-70dc-4eb7-9b25-824d6aea8d72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b72080da8054070a75a88d4800ae753.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b72080da8054070a75a88d4800ae753.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b72080da8054070a75a88d4800ae753.jpg", "file_size": 16770, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b72080da8054070a75a88d4800ae753.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b72080da8054070a75a88d4800ae753.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b72080da8054070a75a88d4800ae753.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b72080da8054070a75a88d4800ae753.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b72080da8054070a75a88d4800ae753.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:forUxnIYmpm7IyHeKwSDMlKNSE0=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.266328+00 2025-12-09 10:15:02.266333+00 9119 LJ6001#匹布 SPMX-20240815304283 \N \N \N 1 \N [{"file_id": "75553253-d807-4f85-879c-df2335830847", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a2fd766423245e5b56c3190e006514d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a2fd766423245e5b56c3190e006514d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a2fd766423245e5b56c3190e006514d.jpg", "file_size": 14227, "is_delete": false, "file_type": 1, "original_file_name": "LJ6001#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2fd766423245e5b56c3190e006514d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2fd766423245e5b56c3190e006514d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2fd766423245e5b56c3190e006514d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a2fd766423245e5b56c3190e006514d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a2fd766423245e5b56c3190e006514d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWYqKrjq4f4NaDyqy7vPOFr2syc=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.268063+00 2025-12-09 10:15:02.268068+00 9120 HT0101-92#WJC22 SPMX-20240815304288 \N \N \N 1 \N [{"file_id": "d52fb047-0231-4738-97d0-2063896301de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg", "file_size": 24682, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-92#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dfa0ba5c8cb4c8eab20cb3fcf6195fb.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-M9lxSo-eiFP-Krx90_8NUYLkY=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.269848+00 2025-12-09 10:15:02.269853+00 9121 LZ1245#下身4号色 SPMX-20240815304289 \N \N \N 1 \N [{"file_id": "22bc0aa6-f51f-4403-be17-2f3d6f90ad7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9badfd48cc64578955bdcd269098656.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9badfd48cc64578955bdcd269098656.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9badfd48cc64578955bdcd269098656.jpg", "file_size": 17531, "is_delete": false, "file_type": 1, "original_file_name": "LZ1245#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9badfd48cc64578955bdcd269098656.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9badfd48cc64578955bdcd269098656.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9badfd48cc64578955bdcd269098656.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9badfd48cc64578955bdcd269098656.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9badfd48cc64578955bdcd269098656.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IU83ObKTX5AjlT9iWz4PD5z5FZQ=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.27184+00 2025-12-09 10:15:02.271845+00 9122 0003-41FWF#红色 SPMX-20240815304282 \N \N \N 1 \N [{"file_id": "e619fd6d-1e9f-49b2-8546-0249d514c284", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d7df54402e7455e8a1b3e68f09f5b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d7df54402e7455e8a1b3e68f09f5b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d7df54402e7455e8a1b3e68f09f5b6e.jpg", "file_size": 14303, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d7df54402e7455e8a1b3e68f09f5b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d7df54402e7455e8a1b3e68f09f5b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d7df54402e7455e8a1b3e68f09f5b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d7df54402e7455e8a1b3e68f09f5b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d7df54402e7455e8a1b3e68f09f5b6e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrFwbBTrp7JvzjjLf-mbz5XzUgA=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.27371+00 2025-12-09 10:15:02.273715+00 9123 HT0101-91#WJC22 SPMX-20240815304278 \N \N \N 1 \N [{"file_id": "7aa6a4de-df35-4d6e-9db7-375517131501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac00406de444d4193466b6d945e648d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac00406de444d4193466b6d945e648d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac00406de444d4193466b6d945e648d.jpg", "file_size": 22478, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-91#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac00406de444d4193466b6d945e648d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac00406de444d4193466b6d945e648d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac00406de444d4193466b6d945e648d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac00406de444d4193466b6d945e648d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac00406de444d4193466b6d945e648d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bpSaNlPPpeABrIznqREpYuvdtD8=", "createTime": "2024-08-15 14:48:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.275728+00 2025-12-09 10:15:02.275733+00 9124 80326#匹布 SPMX-20240815304281 \N \N \N 1 \N [{"file_id": "580dc27b-fd7d-4676-a71b-4e919039e395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ac8949c77954661af6a52b24b4d3094.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ac8949c77954661af6a52b24b4d3094.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ac8949c77954661af6a52b24b4d3094.jpg", "file_size": 14560, "is_delete": false, "file_type": 1, "original_file_name": "80326#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac8949c77954661af6a52b24b4d3094.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac8949c77954661af6a52b24b4d3094.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac8949c77954661af6a52b24b4d3094.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ac8949c77954661af6a52b24b4d3094.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ac8949c77954661af6a52b24b4d3094.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYtQxnDjjzdcroWt0aTp19zdTUY=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.277732+00 2025-12-09 10:15:02.277737+00 9125 C338FWF#浅绿色XL SPMX-20240815304285 \N \N \N 1 \N [{"file_id": "675196b2-d68a-4e30-bea4-c1241f8fb4ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97ff62452ac544628d6272ebb06da7aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97ff62452ac544628d6272ebb06da7aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97ff62452ac544628d6272ebb06da7aa.jpg", "file_size": 17397, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#浅绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ff62452ac544628d6272ebb06da7aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ff62452ac544628d6272ebb06da7aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ff62452ac544628d6272ebb06da7aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97ff62452ac544628d6272ebb06da7aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97ff62452ac544628d6272ebb06da7aa.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MLB6hzcDpxNoQVG-6EZnsDWS24=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.279747+00 2025-12-09 10:15:02.279752+00 9126 FHXGPK-119-5 SPMX-20240815304284 \N \N \N 1 \N [{"file_id": "ba5cdb38-0fab-4e94-86b5-bfebc4336d49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1e17e248eac49ba804af6c93868c248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1e17e248eac49ba804af6c93868c248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1e17e248eac49ba804af6c93868c248.jpg", "file_size": 29862, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-119-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e17e248eac49ba804af6c93868c248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e17e248eac49ba804af6c93868c248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1e17e248eac49ba804af6c93868c248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1e17e248eac49ba804af6c93868c248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1e17e248eac49ba804af6c93868c248.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eAZPtTRxDKOAmoaSqZCdAzC7Ys=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.281769+00 2025-12-09 10:15:02.281774+00 9127 80326#后幅 SPMX-20240815304291 \N \N \N 1 \N [{"file_id": "aba0e7b3-7ccc-4cbc-a1ca-8a3cac48a948", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "838634bce123485d894a69bf50e04e08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "838634bce123485d894a69bf50e04e08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "838634bce123485d894a69bf50e04e08.jpg", "file_size": 15857, "is_delete": false, "file_type": 1, "original_file_name": "80326#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838634bce123485d894a69bf50e04e08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838634bce123485d894a69bf50e04e08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/838634bce123485d894a69bf50e04e08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/838634bce123485d894a69bf50e04e08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/838634bce123485d894a69bf50e04e08.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxy0d_rpSwkRobM9ZXa5KI6Tj1U=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.283787+00 2025-12-09 10:15:02.283792+00 9128 0003-41FWF#蓝色 SPMX-20240815304292 \N \N \N 1 \N [{"file_id": "ee4be4ba-ef08-457a-b986-18fa0c471d31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d7037c4f27848dbb78793fff40d1e6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d7037c4f27848dbb78793fff40d1e6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d7037c4f27848dbb78793fff40d1e6b.jpg", "file_size": 15464, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7037c4f27848dbb78793fff40d1e6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7037c4f27848dbb78793fff40d1e6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7037c4f27848dbb78793fff40d1e6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d7037c4f27848dbb78793fff40d1e6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d7037c4f27848dbb78793fff40d1e6b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VlFiNt0Y6N12JQNhOj-cNipXuFs=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.285702+00 2025-12-09 10:15:02.285712+00 9129 JTSS085FW#VS-D3 SPMX-20240815304293 \N \N \N 1 \N [{"file_id": "446a83dd-807e-43bb-80cc-c9396ad9165f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb5b9521fa5f46b48e68ff53733b9a42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb5b9521fa5f46b48e68ff53733b9a42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb5b9521fa5f46b48e68ff53733b9a42.jpg", "file_size": 15952, "is_delete": false, "file_type": 1, "original_file_name": "JTSS085FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5b9521fa5f46b48e68ff53733b9a42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5b9521fa5f46b48e68ff53733b9a42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5b9521fa5f46b48e68ff53733b9a42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb5b9521fa5f46b48e68ff53733b9a42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb5b9521fa5f46b48e68ff53733b9a42.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1XLfPI5wKFwZEGt9KeIp7XPAiFc=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.287459+00 2025-12-09 10:15:02.287465+00 9130 LJ6001#后幅净色 SPMX-20240815304295 \N \N \N 1 \N [{"file_id": "aa81faa8-4310-423b-b473-a97c1e8893f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3a36286b5f946dd86aca79dec75be11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3a36286b5f946dd86aca79dec75be11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3a36286b5f946dd86aca79dec75be11.jpg", "file_size": 9703, "is_delete": false, "file_type": 1, "original_file_name": "LJ6001#后幅净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a36286b5f946dd86aca79dec75be11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a36286b5f946dd86aca79dec75be11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a36286b5f946dd86aca79dec75be11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3a36286b5f946dd86aca79dec75be11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3a36286b5f946dd86aca79dec75be11.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VPJ-BhFF5uNfO9EpAVt7MD2Y7c=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.289219+00 2025-12-09 10:15:02.289225+00 9131 1076#蓝色 SPMX-20240815304290 \N \N \N 1 \N [{"file_id": "cdee9854-77bf-4397-ac9e-923f240517e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb704140097d439ead9df7ab84400ad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb704140097d439ead9df7ab84400ad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb704140097d439ead9df7ab84400ad8.jpg", "file_size": 20965, "is_delete": false, "file_type": 1, "original_file_name": "1076#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb704140097d439ead9df7ab84400ad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb704140097d439ead9df7ab84400ad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb704140097d439ead9df7ab84400ad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb704140097d439ead9df7ab84400ad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb704140097d439ead9df7ab84400ad8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lx4xTbt0nr6je-qBcTg4sopmrJ8=", "createTime": "2024-08-15 14:48:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.290958+00 2025-12-09 10:15:02.290963+00 9132 C338FWF#紫色L SPMX-20240815304297 \N \N \N 1 \N [{"file_id": "214c2dd1-2ba7-4d79-9cdb-083e50df6fc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80a31adeff1b48598f73fcfb9335d6d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80a31adeff1b48598f73fcfb9335d6d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80a31adeff1b48598f73fcfb9335d6d5.jpg", "file_size": 16453, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a31adeff1b48598f73fcfb9335d6d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a31adeff1b48598f73fcfb9335d6d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a31adeff1b48598f73fcfb9335d6d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80a31adeff1b48598f73fcfb9335d6d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80a31adeff1b48598f73fcfb9335d6d5.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YCjP9VWMZ3zfaovFlze85QjtY8=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.292921+00 2025-12-09 10:15:02.292926+00 9133 DL30449#蓝色L SPMX-20240815304296 \N \N \N 1 \N [{"file_id": "0b9a19b8-8bcf-40c9-9af8-d159014a38e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg", "file_size": 22290, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdeea06fc0bb4aa3bf8ae9f614e12b33.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iOFkkhiZy0WqQ8ChT2P68AeQ_Gg=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.294804+00 2025-12-09 10:15:02.294812+00 9134 23-2114#A10-3XL SPMX-20240815304298 \N \N \N 1 \N [{"file_id": "22f7657e-672f-4e05-abf0-6782467b858e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04e375f6496b4df9809a457a2e0ed65d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04e375f6496b4df9809a457a2e0ed65d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04e375f6496b4df9809a457a2e0ed65d.jpg", "file_size": 14813, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e375f6496b4df9809a457a2e0ed65d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e375f6496b4df9809a457a2e0ed65d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04e375f6496b4df9809a457a2e0ed65d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04e375f6496b4df9809a457a2e0ed65d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04e375f6496b4df9809a457a2e0ed65d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y27grNzZSwPO2Y1bj55oXWSBt8w=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.296563+00 2025-12-09 10:15:02.296569+00 9135 FHXGPK-120-1 SPMX-20240815304294 \N \N \N 1 \N [{"file_id": "1baecf73-e599-47b3-ac78-23c6dec48d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f07414cec71d41bfae22f8bc342619a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f07414cec71d41bfae22f8bc342619a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f07414cec71d41bfae22f8bc342619a8.jpg", "file_size": 26336, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-120-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07414cec71d41bfae22f8bc342619a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07414cec71d41bfae22f8bc342619a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07414cec71d41bfae22f8bc342619a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f07414cec71d41bfae22f8bc342619a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f07414cec71d41bfae22f8bc342619a8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0MbV5nYDj5BDb0Nn37t7SGNJ3k=", "createTime": "2024-08-15 14:48:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.298324+00 2025-12-09 10:15:02.298329+00 9136 80326#小童 SPMX-20240815304300 \N \N \N 1 \N [{"file_id": "9526fde3-0a0f-4f9b-a9c2-cc13be692185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b0bac3b8556431e94e9a89311e1d906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b0bac3b8556431e94e9a89311e1d906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b0bac3b8556431e94e9a89311e1d906.jpg", "file_size": 30369, "is_delete": false, "file_type": 1, "original_file_name": "80326#小童.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0bac3b8556431e94e9a89311e1d906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0bac3b8556431e94e9a89311e1d906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0bac3b8556431e94e9a89311e1d906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b0bac3b8556431e94e9a89311e1d906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b0bac3b8556431e94e9a89311e1d906.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5zEOyjRb9-2B3XsEc4Ag9GNQWQ=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.300057+00 2025-12-09 10:15:02.300062+00 9137 LJ6002#前幅 SPMX-20240815304309 \N \N \N 1 \N [{"file_id": "cd5974f9-b47f-4de1-865a-54431c1a6516", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "969d3f5cf70941a3a84610805877709c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "969d3f5cf70941a3a84610805877709c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "969d3f5cf70941a3a84610805877709c.jpg", "file_size": 12158, "is_delete": false, "file_type": 1, "original_file_name": "LJ6002#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969d3f5cf70941a3a84610805877709c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969d3f5cf70941a3a84610805877709c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969d3f5cf70941a3a84610805877709c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/969d3f5cf70941a3a84610805877709c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/969d3f5cf70941a3a84610805877709c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJ4AAhjNlsow63QX0juU6U0e_BA=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.302032+00 2025-12-09 10:15:02.302037+00 9138 JTSS086FW#VS-D3 SPMX-20240815304306 \N \N \N 1 \N [{"file_id": "8b2b05c4-8279-40bb-bfe6-277d18c04b46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "773c277659f64ab993c0ca6703b7e801.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "773c277659f64ab993c0ca6703b7e801.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "773c277659f64ab993c0ca6703b7e801.jpg", "file_size": 18239, "is_delete": false, "file_type": 1, "original_file_name": "JTSS086FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/773c277659f64ab993c0ca6703b7e801.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/773c277659f64ab993c0ca6703b7e801.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/773c277659f64ab993c0ca6703b7e801.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/773c277659f64ab993c0ca6703b7e801.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/773c277659f64ab993c0ca6703b7e801.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-FAomhUVR78GGkeiYQMkx5Opdk=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.30405+00 2025-12-09 10:15:02.304055+00 9139 0003-41FWF#黄色 SPMX-20240815304302 \N \N \N 1 \N [{"file_id": "9491c97a-4ade-4198-81bb-8c1deb17f50a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c7e4378900c4499a6054d7589cdc196.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c7e4378900c4499a6054d7589cdc196.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c7e4378900c4499a6054d7589cdc196.jpg", "file_size": 14470, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7e4378900c4499a6054d7589cdc196.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7e4378900c4499a6054d7589cdc196.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7e4378900c4499a6054d7589cdc196.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c7e4378900c4499a6054d7589cdc196.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c7e4378900c4499a6054d7589cdc196.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ih7VPlsce0ovVzExptSWSLw5Qp0=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.306017+00 2025-12-09 10:15:02.306022+00 9140 80326#袖子 SPMX-20240815304311 \N \N \N 1 \N [{"file_id": "090dd5e5-5706-4279-ab90-3c83a9c32fbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e244f74f5c447589ceaf5efbd3a40e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e244f74f5c447589ceaf5efbd3a40e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e244f74f5c447589ceaf5efbd3a40e.jpg", "file_size": 15238, "is_delete": false, "file_type": 1, "original_file_name": "80326#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e244f74f5c447589ceaf5efbd3a40e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e244f74f5c447589ceaf5efbd3a40e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e244f74f5c447589ceaf5efbd3a40e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e244f74f5c447589ceaf5efbd3a40e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e244f74f5c447589ceaf5efbd3a40e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ssilnI3ZimshI_QnKHtkzh1TP0=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.307972+00 2025-12-09 10:15:02.307977+00 9141 FHXGPK-120-2 SPMX-20240815304303 \N \N \N 1 \N [{"file_id": "6dfc0dd2-057f-49e2-ac64-c8e40c4d4873", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f7edb974cae4b5c946b87fe11593165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f7edb974cae4b5c946b87fe11593165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f7edb974cae4b5c946b87fe11593165.jpg", "file_size": 27762, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-120-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7edb974cae4b5c946b87fe11593165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7edb974cae4b5c946b87fe11593165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7edb974cae4b5c946b87fe11593165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f7edb974cae4b5c946b87fe11593165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f7edb974cae4b5c946b87fe11593165.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuTRyA5yvEawYdS00e2VWjzVx4Y=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.326085+00 2025-12-09 10:15:02.32609+00 9150 C338FWF#紫色S SPMX-20240815304316 \N \N \N 1 \N [{"file_id": "92f0cd84-d5a6-4838-bf36-7307c4695137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ee514eb447d47be9f71c0c8ca21aa7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ee514eb447d47be9f71c0c8ca21aa7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ee514eb447d47be9f71c0c8ca21aa7c.jpg", "file_size": 17146, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#紫色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee514eb447d47be9f71c0c8ca21aa7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee514eb447d47be9f71c0c8ca21aa7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee514eb447d47be9f71c0c8ca21aa7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ee514eb447d47be9f71c0c8ca21aa7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ee514eb447d47be9f71c0c8ca21aa7c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lot9k_QLWc4ue17WEgs53Y91bqc=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.309977+00 2025-12-09 10:15:02.309981+00 9142 LJ6001#裤子匹布 SPMX-20240815304299 \N \N \N 1 \N [{"file_id": "db047e94-34cb-4fdc-8c9a-ee810f2e3122", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e43abc8280d141b8b36b147755d1058b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e43abc8280d141b8b36b147755d1058b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e43abc8280d141b8b36b147755d1058b.jpg", "file_size": 14407, "is_delete": false, "file_type": 1, "original_file_name": "LJ6001#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43abc8280d141b8b36b147755d1058b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43abc8280d141b8b36b147755d1058b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e43abc8280d141b8b36b147755d1058b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e43abc8280d141b8b36b147755d1058b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e43abc8280d141b8b36b147755d1058b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEwKs3_evkMhsIskaMt7tOF_reY=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.311971+00 2025-12-09 10:15:02.311976+00 9143 1076#黄色 SPMX-20240815304305 \N \N \N 1 \N [{"file_id": "079bc1d2-289d-416c-88cd-e9ce99f2b830", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa5f25e780224563a730106bdd00e89c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa5f25e780224563a730106bdd00e89c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa5f25e780224563a730106bdd00e89c.jpg", "file_size": 21025, "is_delete": false, "file_type": 1, "original_file_name": "1076#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5f25e780224563a730106bdd00e89c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5f25e780224563a730106bdd00e89c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5f25e780224563a730106bdd00e89c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa5f25e780224563a730106bdd00e89c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa5f25e780224563a730106bdd00e89c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFLojyhNAUSqPG2IvyI9JnR1zZ0=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.314017+00 2025-12-09 10:15:02.314022+00 9144 C338FWF#紫色M SPMX-20240815304307 \N \N \N 1 \N [{"file_id": "e93a362a-a2a2-46bf-9547-97842cc8978e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac08f143e9d84da3a2a791587921719b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac08f143e9d84da3a2a791587921719b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac08f143e9d84da3a2a791587921719b.jpg", "file_size": 17591, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#紫色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac08f143e9d84da3a2a791587921719b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac08f143e9d84da3a2a791587921719b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac08f143e9d84da3a2a791587921719b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac08f143e9d84da3a2a791587921719b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac08f143e9d84da3a2a791587921719b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsb1qMsZvd0yO-wmLjyO7ukSF0g=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.316008+00 2025-12-09 10:15:02.316013+00 9145 DL30449#蓝色M SPMX-20240815304308 \N \N \N 1 \N [{"file_id": "e5b43106-4a77-4d2f-aed8-826b9846459a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2962dbfad4964222a758e812230e2219.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2962dbfad4964222a758e812230e2219.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2962dbfad4964222a758e812230e2219.jpg", "file_size": 22801, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2962dbfad4964222a758e812230e2219.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2962dbfad4964222a758e812230e2219.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2962dbfad4964222a758e812230e2219.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2962dbfad4964222a758e812230e2219.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2962dbfad4964222a758e812230e2219.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:69WkoUIMtXS37OGZk9rYKnw7hng=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.318032+00 2025-12-09 10:15:02.318037+00 9146 LZ1246#上身2号色 SPMX-20240815304310 \N \N \N 1 \N [{"file_id": "4401d4dd-373d-4c87-83c5-dc36a8e980fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab0d92a2be1146f4934215f972120531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab0d92a2be1146f4934215f972120531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab0d92a2be1146f4934215f972120531.jpg", "file_size": 16585, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d92a2be1146f4934215f972120531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d92a2be1146f4934215f972120531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d92a2be1146f4934215f972120531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab0d92a2be1146f4934215f972120531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab0d92a2be1146f4934215f972120531.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ClEq37_nNR8LUW5WzT9LyQ9qOm0=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.320064+00 2025-12-09 10:15:02.320069+00 9147 LZ1246#上身1号色 SPMX-20240815304301 \N \N \N 1 \N [{"file_id": "270bcbd8-8a4d-42ab-8a78-b0c1da79c279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efce4d9255a048f28d6b078a9d1235b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efce4d9255a048f28d6b078a9d1235b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efce4d9255a048f28d6b078a9d1235b7.jpg", "file_size": 16356, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efce4d9255a048f28d6b078a9d1235b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efce4d9255a048f28d6b078a9d1235b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efce4d9255a048f28d6b078a9d1235b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efce4d9255a048f28d6b078a9d1235b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efce4d9255a048f28d6b078a9d1235b7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IGOqpPjUE_mfeNs82hAPCP-xFQ=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.322059+00 2025-12-09 10:15:02.322063+00 9148 HT0101-93#WJC22 SPMX-20240815304304 \N \N \N 1 \N [{"file_id": "2e527a66-ffae-4a57-896f-d06db1ad96d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3698154308f94afdb9c9c3e94f4ac978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3698154308f94afdb9c9c3e94f4ac978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3698154308f94afdb9c9c3e94f4ac978.jpg", "file_size": 17708, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-93#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698154308f94afdb9c9c3e94f4ac978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698154308f94afdb9c9c3e94f4ac978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3698154308f94afdb9c9c3e94f4ac978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3698154308f94afdb9c9c3e94f4ac978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3698154308f94afdb9c9c3e94f4ac978.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRgs-X8DsldUHZwBKIv9uBWLWSM=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.324105+00 2025-12-09 10:15:02.32411+00 9149 0003-41FWF#黑色 SPMX-20240815304312 \N \N \N 1 \N [{"file_id": "bfec863c-f864-4c0a-8ce4-3b7dbfbacdc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e1e12b9fb3640f1aa7db63bca4873ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e1e12b9fb3640f1aa7db63bca4873ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e1e12b9fb3640f1aa7db63bca4873ef.jpg", "file_size": 17594, "is_delete": false, "file_type": 1, "original_file_name": "0003-41FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e12b9fb3640f1aa7db63bca4873ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e12b9fb3640f1aa7db63bca4873ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e12b9fb3640f1aa7db63bca4873ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e1e12b9fb3640f1aa7db63bca4873ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e1e12b9fb3640f1aa7db63bca4873ef.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AW6UPqyHveIjJqOrO8yZcGru1Yc=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.328102+00 2025-12-09 10:15:02.328107+00 9151 HT0101-94#WJC22 SPMX-20240815304313 \N \N \N 1 \N [{"file_id": "01ed5719-db49-489c-9a60-7a52542e9842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6ed83ec402b4d12ba02ec20d9289d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6ed83ec402b4d12ba02ec20d9289d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6ed83ec402b4d12ba02ec20d9289d0e.jpg", "file_size": 9421, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-94#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ed83ec402b4d12ba02ec20d9289d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ed83ec402b4d12ba02ec20d9289d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6ed83ec402b4d12ba02ec20d9289d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6ed83ec402b4d12ba02ec20d9289d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6ed83ec402b4d12ba02ec20d9289d0e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAqE-iin83vVPPni4cS89pr116Y=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.330181+00 2025-12-09 10:15:02.330186+00 9152 1076#黑色 SPMX-20240815304315 \N \N \N 1 \N [{"file_id": "02c4dbbc-77d4-401f-9d6c-fa6b65097258", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "097fe8d7685c4bb8be66af62ba4a8c1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "097fe8d7685c4bb8be66af62ba4a8c1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "097fe8d7685c4bb8be66af62ba4a8c1a.jpg", "file_size": 20828, "is_delete": false, "file_type": 1, "original_file_name": "1076#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097fe8d7685c4bb8be66af62ba4a8c1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097fe8d7685c4bb8be66af62ba4a8c1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097fe8d7685c4bb8be66af62ba4a8c1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/097fe8d7685c4bb8be66af62ba4a8c1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/097fe8d7685c4bb8be66af62ba4a8c1a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVvrbi3IE7drXkX9KIqw570DpnQ=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.332172+00 2025-12-09 10:15:02.332177+00 9153 FHXGPK-120-3 SPMX-20240815304314 \N \N \N 1 \N [{"file_id": "abdb6358-c78c-450d-b1d4-4a49c8e1815f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0c61825c7114ea58faffc8c7f565de8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0c61825c7114ea58faffc8c7f565de8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0c61825c7114ea58faffc8c7f565de8.jpg", "file_size": 24028, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-120-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c61825c7114ea58faffc8c7f565de8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c61825c7114ea58faffc8c7f565de8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c61825c7114ea58faffc8c7f565de8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0c61825c7114ea58faffc8c7f565de8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0c61825c7114ea58faffc8c7f565de8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PU154p4ZWHtb_lnMzN23yPviLVA=", "createTime": "2024-08-15 14:48:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.334123+00 2025-12-09 10:15:02.334128+00 9154 80327#前幅 SPMX-20240815304320 \N \N \N 1 \N [{"file_id": "2c84b152-5742-4c95-8b08-2bfb7d79ae84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12515a6066d74bc6beb7660e1f5738ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12515a6066d74bc6beb7660e1f5738ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12515a6066d74bc6beb7660e1f5738ad.jpg", "file_size": 15709, "is_delete": false, "file_type": 1, "original_file_name": "80327#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12515a6066d74bc6beb7660e1f5738ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12515a6066d74bc6beb7660e1f5738ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12515a6066d74bc6beb7660e1f5738ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12515a6066d74bc6beb7660e1f5738ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12515a6066d74bc6beb7660e1f5738ad.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PiEILRzcq03HAXPKeKTq65CfM9g=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.335863+00 2025-12-09 10:15:02.335868+00 9155 JTSS087FW#VS-D3 SPMX-20240815304317 \N \N \N 1 \N [{"file_id": "97f2df2e-b4b0-4904-8523-878868bc53b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "467d610892f34a0c9ed0da432d5ae498.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "467d610892f34a0c9ed0da432d5ae498.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "467d610892f34a0c9ed0da432d5ae498.jpg", "file_size": 26724, "is_delete": false, "file_type": 1, "original_file_name": "JTSS087FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467d610892f34a0c9ed0da432d5ae498.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467d610892f34a0c9ed0da432d5ae498.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467d610892f34a0c9ed0da432d5ae498.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/467d610892f34a0c9ed0da432d5ae498.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/467d610892f34a0c9ed0da432d5ae498.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4xmOYIXi5hK4nDR3CUb33m9x7Q=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.337603+00 2025-12-09 10:15:02.337608+00 9156 0003-420#卡其 SPMX-20240815304322 \N \N \N 1 \N [{"file_id": "12127e0a-db48-4245-bb50-26832f44514c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08ba1974d5d24f69ab270e10efe99877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08ba1974d5d24f69ab270e10efe99877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08ba1974d5d24f69ab270e10efe99877.jpg", "file_size": 22803, "is_delete": false, "file_type": 1, "original_file_name": "0003-420#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ba1974d5d24f69ab270e10efe99877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ba1974d5d24f69ab270e10efe99877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ba1974d5d24f69ab270e10efe99877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08ba1974d5d24f69ab270e10efe99877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08ba1974d5d24f69ab270e10efe99877.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNx9_C11CdQEXvbMgHUABMKxzHM=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.339406+00 2025-12-09 10:15:02.339411+00 9157 1076-1#天蓝 SPMX-20240815304325 \N \N \N 1 \N [{"file_id": "773d925b-bec0-4fc3-96f0-a3c3f3dcc7e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31dd195545ce42949ff18587c2ae237a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31dd195545ce42949ff18587c2ae237a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31dd195545ce42949ff18587c2ae237a.jpg", "file_size": 19544, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dd195545ce42949ff18587c2ae237a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dd195545ce42949ff18587c2ae237a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dd195545ce42949ff18587c2ae237a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31dd195545ce42949ff18587c2ae237a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31dd195545ce42949ff18587c2ae237a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NlThdnWZcORK-smFbb0ghZtRpEE=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.341394+00 2025-12-09 10:15:02.341398+00 9158 DL30449#蓝色XL SPMX-20240815304319 \N \N \N 1 \N [{"file_id": "94b8e344-c562-472b-9ca2-04233c31dbb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b52ccd22e5b44b0a46b23acabeeb268.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b52ccd22e5b44b0a46b23acabeeb268.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b52ccd22e5b44b0a46b23acabeeb268.jpg", "file_size": 21891, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b52ccd22e5b44b0a46b23acabeeb268.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b52ccd22e5b44b0a46b23acabeeb268.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b52ccd22e5b44b0a46b23acabeeb268.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b52ccd22e5b44b0a46b23acabeeb268.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b52ccd22e5b44b0a46b23acabeeb268.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gGQjn9j9OoyRQksgHf9hyz6X1A=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.343326+00 2025-12-09 10:15:02.34333+00 9159 LZ1246#上身3号色 SPMX-20240815304321 \N \N \N 1 \N [{"file_id": "67caf0e5-f732-4230-af9b-99f4553fe618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7da3a1b866fe4f279e0e53bbb003a92a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7da3a1b866fe4f279e0e53bbb003a92a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7da3a1b866fe4f279e0e53bbb003a92a.jpg", "file_size": 15763, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da3a1b866fe4f279e0e53bbb003a92a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da3a1b866fe4f279e0e53bbb003a92a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da3a1b866fe4f279e0e53bbb003a92a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7da3a1b866fe4f279e0e53bbb003a92a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7da3a1b866fe4f279e0e53bbb003a92a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yC3ECqenOWt8Cve3HABVDI9By3Q=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.345263+00 2025-12-09 10:15:02.345268+00 9160 FHXGPK-120-4 SPMX-20240815304323 \N \N \N 1 \N [{"file_id": "903134b4-b20f-4be5-a2d3-d71b6ccff034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cb48952f28a48f3beb9e5039826334c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cb48952f28a48f3beb9e5039826334c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cb48952f28a48f3beb9e5039826334c.jpg", "file_size": 24139, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-120-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb48952f28a48f3beb9e5039826334c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb48952f28a48f3beb9e5039826334c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb48952f28a48f3beb9e5039826334c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cb48952f28a48f3beb9e5039826334c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cb48952f28a48f3beb9e5039826334c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXqKMRiv9UuZJeMU4UWVjtDHHzE=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.347256+00 2025-12-09 10:15:02.347261+00 9161 LJ6002#匹布 SPMX-20240815304318 \N \N \N 1 \N [{"file_id": "76591a97-6255-48b5-8945-dede2d00a0f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a80a6415140148f892abc36e2d47f516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a80a6415140148f892abc36e2d47f516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a80a6415140148f892abc36e2d47f516.jpg", "file_size": 17079, "is_delete": false, "file_type": 1, "original_file_name": "LJ6002#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a80a6415140148f892abc36e2d47f516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a80a6415140148f892abc36e2d47f516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a80a6415140148f892abc36e2d47f516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a80a6415140148f892abc36e2d47f516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a80a6415140148f892abc36e2d47f516.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05FaPLbcNEw9kH9MrwOKXyc24ok=", "createTime": "2024-08-15 14:48:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.349261+00 2025-12-09 10:15:02.349266+00 9162 HT0101-95#WJC22 SPMX-20240815304324 \N \N \N 1 \N [{"file_id": "36187df8-60fb-40ad-afbc-964e8ea25936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d277a22eec74c49a1c8c015e38da3e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d277a22eec74c49a1c8c015e38da3e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d277a22eec74c49a1c8c015e38da3e3.jpg", "file_size": 14969, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-95#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d277a22eec74c49a1c8c015e38da3e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d277a22eec74c49a1c8c015e38da3e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d277a22eec74c49a1c8c015e38da3e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d277a22eec74c49a1c8c015e38da3e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d277a22eec74c49a1c8c015e38da3e3.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Go2ZkjDuKX2nnQB4AiE70lC18y0=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.351261+00 2025-12-09 10:15:02.351266+00 9163 C338FWF#紫色XL SPMX-20240815304326 \N \N \N 1 \N [{"file_id": "955336c3-2432-4c49-8579-73c3d58dcdc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d8e8b522a284686bf9fe19e94bc6d9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d8e8b522a284686bf9fe19e94bc6d9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d8e8b522a284686bf9fe19e94bc6d9f.jpg", "file_size": 16053, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8e8b522a284686bf9fe19e94bc6d9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8e8b522a284686bf9fe19e94bc6d9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8e8b522a284686bf9fe19e94bc6d9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d8e8b522a284686bf9fe19e94bc6d9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d8e8b522a284686bf9fe19e94bc6d9f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQ2GpGQxIC8ulVcEf5mklyau_js=", "createTime": "2024-08-15 14:48:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.353292+00 2025-12-09 10:15:02.353296+00 9164 JTSS088FW#VS-D3 SPMX-20240815304327 \N \N \N 1 \N [{"file_id": "9741f149-ba64-470c-b756-c173d03f5503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f67bb5e56a3541efadd6d21cdeaaf175.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f67bb5e56a3541efadd6d21cdeaaf175.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f67bb5e56a3541efadd6d21cdeaaf175.jpg", "file_size": 11585, "is_delete": false, "file_type": 1, "original_file_name": "JTSS088FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67bb5e56a3541efadd6d21cdeaaf175.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67bb5e56a3541efadd6d21cdeaaf175.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67bb5e56a3541efadd6d21cdeaaf175.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f67bb5e56a3541efadd6d21cdeaaf175.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f67bb5e56a3541efadd6d21cdeaaf175.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZYZcPR-eEL4cIENsTYCoMlxUaE=", "createTime": "2024-08-15 14:48:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.355277+00 2025-12-09 10:15:02.355282+00 9165 C338FWF#紫色净色 SPMX-20240815304329 \N \N \N 1 \N [{"file_id": "db9f468e-82a6-4469-a2d5-2d70d48e8e7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d18a4d2ab9774465a66d82c9e205b82c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d18a4d2ab9774465a66d82c9e205b82c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d18a4d2ab9774465a66d82c9e205b82c.jpg", "file_size": 5823, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d18a4d2ab9774465a66d82c9e205b82c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d18a4d2ab9774465a66d82c9e205b82c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d18a4d2ab9774465a66d82c9e205b82c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d18a4d2ab9774465a66d82c9e205b82c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d18a4d2ab9774465a66d82c9e205b82c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FP-PptXLeboknBZFeHO7nXIHGys=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.357222+00 2025-12-09 10:15:02.357227+00 9166 23-2114#A10-4XL SPMX-20240815304330 \N \N \N 1 \N [{"file_id": "cec691e9-3dee-403b-a0dd-2d7f9febdff5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abed83f2ba0848aa8d4521b1f16f0f0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abed83f2ba0848aa8d4521b1f16f0f0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abed83f2ba0848aa8d4521b1f16f0f0a.jpg", "file_size": 14131, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abed83f2ba0848aa8d4521b1f16f0f0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abed83f2ba0848aa8d4521b1f16f0f0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abed83f2ba0848aa8d4521b1f16f0f0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abed83f2ba0848aa8d4521b1f16f0f0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abed83f2ba0848aa8d4521b1f16f0f0a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPBmGkidDaPUbdhNxIOFtoH4HQU=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.35896+00 2025-12-09 10:15:02.358965+00 9167 80327#后幅 SPMX-20240815304328 \N \N \N 1 \N [{"file_id": "9d68183d-05d9-45e3-a5ec-6a7efae5ab01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e722c7ec879483092db77d40905aab9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e722c7ec879483092db77d40905aab9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e722c7ec879483092db77d40905aab9.jpg", "file_size": 13390, "is_delete": false, "file_type": 1, "original_file_name": "80327#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e722c7ec879483092db77d40905aab9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e722c7ec879483092db77d40905aab9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e722c7ec879483092db77d40905aab9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e722c7ec879483092db77d40905aab9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e722c7ec879483092db77d40905aab9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WM9VSVIVYWW0073JLEBG630aPXs=", "createTime": "2024-08-15 14:48:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.360695+00 2025-12-09 10:15:02.360699+00 9168 HT0101-96#WJC22 SPMX-20240815304333 \N \N \N 1 \N [{"file_id": "9ec7b2d9-e0aa-439e-af5f-bc9542d1a8bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c688aa752b92417b99065212bc12330c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c688aa752b92417b99065212bc12330c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c688aa752b92417b99065212bc12330c.jpg", "file_size": 19805, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-96#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c688aa752b92417b99065212bc12330c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c688aa752b92417b99065212bc12330c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c688aa752b92417b99065212bc12330c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c688aa752b92417b99065212bc12330c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c688aa752b92417b99065212bc12330c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7SRMvewUw5qPfI6hZw6egtcJDQY=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.362428+00 2025-12-09 10:15:02.362433+00 9169 0003-420#绿色 SPMX-20240815304331 \N \N \N 1 \N [{"file_id": "18385fe3-be22-4b43-8c17-89b1e87ededa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a81765c81764bbabb9001c693e20c19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a81765c81764bbabb9001c693e20c19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a81765c81764bbabb9001c693e20c19.jpg", "file_size": 18372, "is_delete": false, "file_type": 1, "original_file_name": "0003-420#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81765c81764bbabb9001c693e20c19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81765c81764bbabb9001c693e20c19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81765c81764bbabb9001c693e20c19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a81765c81764bbabb9001c693e20c19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a81765c81764bbabb9001c693e20c19.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEatU1EyNRynBsq8cOfcep7RZDA=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.36442+00 2025-12-09 10:15:02.364425+00 9170 1076-1#白色 SPMX-20240815304335 \N \N \N 1 \N [{"file_id": "1721c24c-2f96-4a00-bfdc-0574e5a67385", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0123d30ff089453080ed1378978d1d72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0123d30ff089453080ed1378978d1d72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0123d30ff089453080ed1378978d1d72.jpg", "file_size": 21199, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0123d30ff089453080ed1378978d1d72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0123d30ff089453080ed1378978d1d72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0123d30ff089453080ed1378978d1d72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0123d30ff089453080ed1378978d1d72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0123d30ff089453080ed1378978d1d72.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TJ90RMfkals7lRLz1lbNhUgjuY=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.366408+00 2025-12-09 10:15:02.366413+00 9171 LJ6002#后幅净色 SPMX-20240815304336 \N \N \N 1 \N [{"file_id": "a35ac21f-d17f-454d-92bf-cc4fcc23e5f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3c1af9ba2d84644b349ed16da9d5266.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3c1af9ba2d84644b349ed16da9d5266.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3c1af9ba2d84644b349ed16da9d5266.jpg", "file_size": 9163, "is_delete": false, "file_type": 1, "original_file_name": "LJ6002#后幅净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c1af9ba2d84644b349ed16da9d5266.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c1af9ba2d84644b349ed16da9d5266.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c1af9ba2d84644b349ed16da9d5266.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3c1af9ba2d84644b349ed16da9d5266.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3c1af9ba2d84644b349ed16da9d5266.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rVuH4AcoFVNzDnzBWx5GrU8turg=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.368371+00 2025-12-09 10:15:02.368376+00 9172 FHXGPK-120-5 SPMX-20240815304334 \N \N \N 1 \N [{"file_id": "fdb7a9ad-b653-49b7-8a39-bf738898b3ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b4696c2bbf5446ab0f32a5db444be26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b4696c2bbf5446ab0f32a5db444be26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b4696c2bbf5446ab0f32a5db444be26.jpg", "file_size": 25719, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-120-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4696c2bbf5446ab0f32a5db444be26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4696c2bbf5446ab0f32a5db444be26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4696c2bbf5446ab0f32a5db444be26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b4696c2bbf5446ab0f32a5db444be26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b4696c2bbf5446ab0f32a5db444be26.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsYkY9VsosowRc3ytQhqvWoee2w=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.370403+00 2025-12-09 10:15:02.370408+00 9173 DL30449#黄色L SPMX-20240815304332 \N \N \N 1 \N [{"file_id": "ed2551b9-c248-4202-b23d-2597a627e260", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b3c0e820631421fa2f085d062b5c10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b3c0e820631421fa2f085d062b5c10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b3c0e820631421fa2f085d062b5c10a.jpg", "file_size": 20299, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3c0e820631421fa2f085d062b5c10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3c0e820631421fa2f085d062b5c10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3c0e820631421fa2f085d062b5c10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b3c0e820631421fa2f085d062b5c10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b3c0e820631421fa2f085d062b5c10a.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOf8iVEFnhxN4r5TvmJUrSkAv_c=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.372458+00 2025-12-09 10:15:02.372463+00 9174 C338FWF#红色L SPMX-20240815304340 \N \N \N 1 \N [{"file_id": "faf5b97d-a7a8-42c5-9611-7e0916e5318a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1118552ca3c4a1a8b4469df525b7909.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1118552ca3c4a1a8b4469df525b7909.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1118552ca3c4a1a8b4469df525b7909.jpg", "file_size": 19621, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1118552ca3c4a1a8b4469df525b7909.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1118552ca3c4a1a8b4469df525b7909.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1118552ca3c4a1a8b4469df525b7909.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1118552ca3c4a1a8b4469df525b7909.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1118552ca3c4a1a8b4469df525b7909.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T59j5qxGId67TS19qgsZ6rweuho=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.37443+00 2025-12-09 10:15:02.374434+00 9175 80328#前幅 SPMX-20240815304341 \N \N \N 1 \N [{"file_id": "db0e9c86-5809-402a-9a57-a15f575f1531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9311e1ad3d594604a7f01b336de39667.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9311e1ad3d594604a7f01b336de39667.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9311e1ad3d594604a7f01b336de39667.jpg", "file_size": 14708, "is_delete": false, "file_type": 1, "original_file_name": "80328#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9311e1ad3d594604a7f01b336de39667.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9311e1ad3d594604a7f01b336de39667.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9311e1ad3d594604a7f01b336de39667.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9311e1ad3d594604a7f01b336de39667.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9311e1ad3d594604a7f01b336de39667.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBsSAtjvx0QRnqSo8vcgBhFYw74=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.376404+00 2025-12-09 10:15:02.376409+00 9176 23-2114#A10-领子3XL SPMX-20240815304339 \N \N \N 1 \N [{"file_id": "a981de39-ffd3-4c02-acda-fde2d8db8f94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c404cc1350674ce395afe130c33276ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c404cc1350674ce395afe130c33276ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c404cc1350674ce395afe130c33276ed.jpg", "file_size": 13660, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c404cc1350674ce395afe130c33276ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c404cc1350674ce395afe130c33276ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c404cc1350674ce395afe130c33276ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c404cc1350674ce395afe130c33276ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c404cc1350674ce395afe130c33276ed.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUj_zQgERqKS0OpvL10z0n7rZY0=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.37816+00 2025-12-09 10:15:02.378166+00 9177 LZ1246#上身4号色 SPMX-20240815304337 \N \N \N 1 \N [{"file_id": "ba11e6d6-dc47-4823-9ddc-32bd9b8e4797", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82a7a05414f246888e115ba03eccb954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82a7a05414f246888e115ba03eccb954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82a7a05414f246888e115ba03eccb954.jpg", "file_size": 15123, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a7a05414f246888e115ba03eccb954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a7a05414f246888e115ba03eccb954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a7a05414f246888e115ba03eccb954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82a7a05414f246888e115ba03eccb954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82a7a05414f246888e115ba03eccb954.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQBZ9UgCj2dvASvIa8FzqvsftRw=", "createTime": "2024-08-15 14:48:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.379922+00 2025-12-09 10:15:02.379927+00 9178 JTSS089FW#VS-D3 SPMX-20240815304338 \N \N \N 1 \N [{"file_id": "2454dcc5-1aff-46fd-bfe0-61c6d629816a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8c89dea06a14c419c5ce2abb068f552.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8c89dea06a14c419c5ce2abb068f552.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8c89dea06a14c419c5ce2abb068f552.jpg", "file_size": 13643, "is_delete": false, "file_type": 1, "original_file_name": "JTSS089FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c89dea06a14c419c5ce2abb068f552.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c89dea06a14c419c5ce2abb068f552.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c89dea06a14c419c5ce2abb068f552.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8c89dea06a14c419c5ce2abb068f552.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8c89dea06a14c419c5ce2abb068f552.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnOawFUmTyhLuTjyWk07Sgc-ov8=", "createTime": "2024-08-15 14:48:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.381665+00 2025-12-09 10:15:02.38167+00 9179 1076-1#粉色 SPMX-20240815304344 \N \N \N 1 \N [{"file_id": "5a103e45-3ccb-4dfe-91f1-65daa37147ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c53c68525b234ca890d34b3449dada23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c53c68525b234ca890d34b3449dada23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c53c68525b234ca890d34b3449dada23.jpg", "file_size": 18533, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53c68525b234ca890d34b3449dada23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53c68525b234ca890d34b3449dada23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53c68525b234ca890d34b3449dada23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c53c68525b234ca890d34b3449dada23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c53c68525b234ca890d34b3449dada23.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6qSm6K3S8ycFpe4tT50HzRPh-k=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.383674+00 2025-12-09 10:15:02.383679+00 9180 0003-421#粉色花 SPMX-20240815304347 \N \N \N 1 \N [{"file_id": "9464a468-bee3-4b7b-991b-1c6a0990100f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b91a640c97b54e76a1ffde4ba5e9a6bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b91a640c97b54e76a1ffde4ba5e9a6bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b91a640c97b54e76a1ffde4ba5e9a6bf.jpg", "file_size": 15119, "is_delete": false, "file_type": 1, "original_file_name": "0003-421#粉色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a640c97b54e76a1ffde4ba5e9a6bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a640c97b54e76a1ffde4ba5e9a6bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a640c97b54e76a1ffde4ba5e9a6bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b91a640c97b54e76a1ffde4ba5e9a6bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b91a640c97b54e76a1ffde4ba5e9a6bf.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZ1IRlxNCmf9wCxKNY9j2bNK4Ec=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.385659+00 2025-12-09 10:15:02.385665+00 9181 80328#后幅 SPMX-20240815304349 \N \N \N 1 \N [{"file_id": "8a27d3df-0a09-41a3-a9a7-e6784be34053", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c403325027f42798cadeac2b49e965f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c403325027f42798cadeac2b49e965f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c403325027f42798cadeac2b49e965f.jpg", "file_size": 13216, "is_delete": false, "file_type": 1, "original_file_name": "80328#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c403325027f42798cadeac2b49e965f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c403325027f42798cadeac2b49e965f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c403325027f42798cadeac2b49e965f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c403325027f42798cadeac2b49e965f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c403325027f42798cadeac2b49e965f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQ2Uta-1ZvLPmu5GveCoBEY37pY=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.387657+00 2025-12-09 10:15:02.387662+00 9182 LJ6002#裤子匹布 SPMX-20240815304345 \N \N \N 1 \N [{"file_id": "4f55f726-293c-4f6c-bbaa-8bf41f2fbdc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8edde76082ed466a9097f20deb435256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8edde76082ed466a9097f20deb435256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8edde76082ed466a9097f20deb435256.jpg", "file_size": 17688, "is_delete": false, "file_type": 1, "original_file_name": "LJ6002#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edde76082ed466a9097f20deb435256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edde76082ed466a9097f20deb435256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edde76082ed466a9097f20deb435256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8edde76082ed466a9097f20deb435256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8edde76082ed466a9097f20deb435256.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VMj1sTa-ygb52ie-R2hJmDjNaQ=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.389626+00 2025-12-09 10:15:02.389631+00 9183 LZ1246#下身1号色 SPMX-20240815304348 \N \N \N 1 \N [{"file_id": "5961f555-e3df-412c-a156-1694c0e2856e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3363ba5d1b194305a8475400b9bf7947.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3363ba5d1b194305a8475400b9bf7947.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3363ba5d1b194305a8475400b9bf7947.jpg", "file_size": 17544, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3363ba5d1b194305a8475400b9bf7947.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3363ba5d1b194305a8475400b9bf7947.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3363ba5d1b194305a8475400b9bf7947.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3363ba5d1b194305a8475400b9bf7947.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3363ba5d1b194305a8475400b9bf7947.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inSiyDVg7_axcmW2NX3iNglqWQI=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.391708+00 2025-12-09 10:15:02.391717+00 9184 FHXGPK-121-1 SPMX-20240815304343 \N \N \N 1 \N [{"file_id": "6efea3c9-8bf8-4af2-877f-49177a344bc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4634d2c54ff4635b1c86cf42e509274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4634d2c54ff4635b1c86cf42e509274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4634d2c54ff4635b1c86cf42e509274.jpg", "file_size": 30800, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-121-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4634d2c54ff4635b1c86cf42e509274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4634d2c54ff4635b1c86cf42e509274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4634d2c54ff4635b1c86cf42e509274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4634d2c54ff4635b1c86cf42e509274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4634d2c54ff4635b1c86cf42e509274.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7cpXRvl36Zg2H-rLO4SEsCh3wA=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.393751+00 2025-12-09 10:15:02.393756+00 9185 HT0101-97#WJC22 SPMX-20240815304342 \N \N \N 1 \N [{"file_id": "14d4669e-4f81-4d5d-9926-6292ea545198", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3870bd267a4a4a6d862ec0192e8bcdd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3870bd267a4a4a6d862ec0192e8bcdd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3870bd267a4a4a6d862ec0192e8bcdd8.jpg", "file_size": 7730, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-97#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3870bd267a4a4a6d862ec0192e8bcdd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3870bd267a4a4a6d862ec0192e8bcdd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3870bd267a4a4a6d862ec0192e8bcdd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3870bd267a4a4a6d862ec0192e8bcdd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3870bd267a4a4a6d862ec0192e8bcdd8.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSbVyaylIi1okPOdYatGCikNJwg=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.395852+00 2025-12-09 10:15:02.395857+00 9186 23-2114#A10-领子4XL SPMX-20240815304350 \N \N \N 1 \N [{"file_id": "e0eb7300-595e-43b9-87ab-40190783fd9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39a66a48dda644fca46f4aa1aca0bec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39a66a48dda644fca46f4aa1aca0bec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39a66a48dda644fca46f4aa1aca0bec5.jpg", "file_size": 13871, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a66a48dda644fca46f4aa1aca0bec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a66a48dda644fca46f4aa1aca0bec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a66a48dda644fca46f4aa1aca0bec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39a66a48dda644fca46f4aa1aca0bec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39a66a48dda644fca46f4aa1aca0bec5.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olDyuFGJL5fHNY28tmUNH-x-Lnw=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.397847+00 2025-12-09 10:15:02.397852+00 9187 DL30449#黄色M SPMX-20240815304346 \N \N \N 1 \N [{"file_id": "5819c016-e225-4412-a6c2-3fdba2c68a3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cdcfd7a8db4439b9e294c56008977a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cdcfd7a8db4439b9e294c56008977a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cdcfd7a8db4439b9e294c56008977a6.jpg", "file_size": 20848, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdcfd7a8db4439b9e294c56008977a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdcfd7a8db4439b9e294c56008977a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdcfd7a8db4439b9e294c56008977a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cdcfd7a8db4439b9e294c56008977a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cdcfd7a8db4439b9e294c56008977a6.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wz9LAA5YEeCPvTAEd9TulERrVNU=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.399808+00 2025-12-09 10:15:02.399813+00 9188 FHXGPK-121-2 SPMX-20240815304356 \N \N \N 1 \N [{"file_id": "2dd5ba4c-ba9c-4bf7-adae-1b2c89901741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "727d31d1a0ce4bff9686c2aea0c00fb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "727d31d1a0ce4bff9686c2aea0c00fb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "727d31d1a0ce4bff9686c2aea0c00fb4.jpg", "file_size": 31268, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-121-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727d31d1a0ce4bff9686c2aea0c00fb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727d31d1a0ce4bff9686c2aea0c00fb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727d31d1a0ce4bff9686c2aea0c00fb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/727d31d1a0ce4bff9686c2aea0c00fb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/727d31d1a0ce4bff9686c2aea0c00fb4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j4jIZM2RpryYKGlSHAnUGf-5gTA=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.401792+00 2025-12-09 10:15:02.401797+00 9189 C338FWF#红色M SPMX-20240815304351 \N \N \N 1 \N [{"file_id": "b3b85b66-6996-42fa-8f1e-c9dbcacff262", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "014209beb0f54ed8af5152a807a88bd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "014209beb0f54ed8af5152a807a88bd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "014209beb0f54ed8af5152a807a88bd7.jpg", "file_size": 20959, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014209beb0f54ed8af5152a807a88bd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014209beb0f54ed8af5152a807a88bd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014209beb0f54ed8af5152a807a88bd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/014209beb0f54ed8af5152a807a88bd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/014209beb0f54ed8af5152a807a88bd7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzXC3pioZyMGXf8HfedoqwQrBmg=", "createTime": "2024-08-15 14:48:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.403796+00 2025-12-09 10:15:02.403801+00 9190 HT0101-98#WJC22 SPMX-20240815304353 \N \N \N 1 \N [{"file_id": "fd9d47b7-f96f-4905-b68c-011e2d579060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg", "file_size": 15998, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-98#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2d0ecb1d1f470ea2a8f7cf3ec409a3.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naySd8oDKPoW_8Xh1h8w-lHaDmY=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.405779+00 2025-12-09 10:15:02.405784+00 9191 LJ6003#前幅 SPMX-20240815304355 \N \N \N 1 \N [{"file_id": "b4e9413b-3757-45d4-a68f-ca92e7928134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83ed0a29abfa4e06867efddff897aa3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83ed0a29abfa4e06867efddff897aa3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83ed0a29abfa4e06867efddff897aa3f.jpg", "file_size": 12387, "is_delete": false, "file_type": 1, "original_file_name": "LJ6003#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ed0a29abfa4e06867efddff897aa3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ed0a29abfa4e06867efddff897aa3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ed0a29abfa4e06867efddff897aa3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83ed0a29abfa4e06867efddff897aa3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83ed0a29abfa4e06867efddff897aa3f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEWbzYmVMcU6XLfwRAbyBy3CeS8=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.40775+00 2025-12-09 10:15:02.407755+00 9192 JTSS091FW#VS-D3 SPMX-20240815304362 \N \N \N 1 \N [{"file_id": "2d3eb21b-de89-4746-85ba-d24cd754b67c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fa4cee08f81462bbf0852bd50fcaf18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fa4cee08f81462bbf0852bd50fcaf18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fa4cee08f81462bbf0852bd50fcaf18.jpg", "file_size": 21055, "is_delete": false, "file_type": 1, "original_file_name": "JTSS091FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa4cee08f81462bbf0852bd50fcaf18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa4cee08f81462bbf0852bd50fcaf18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa4cee08f81462bbf0852bd50fcaf18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fa4cee08f81462bbf0852bd50fcaf18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fa4cee08f81462bbf0852bd50fcaf18.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YiLj7lmD6azTTuY_HoGr7VnE5h8=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.409727+00 2025-12-09 10:15:02.409733+00 9193 23-2114#A2-3XL SPMX-20240815304361 \N \N \N 1 \N [{"file_id": "85ba7225-150c-47eb-938b-74dcb3251718", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b3ac28f25046308d2d45f43d8a7427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b3ac28f25046308d2d45f43d8a7427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b3ac28f25046308d2d45f43d8a7427.jpg", "file_size": 18030, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b3ac28f25046308d2d45f43d8a7427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b3ac28f25046308d2d45f43d8a7427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b3ac28f25046308d2d45f43d8a7427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b3ac28f25046308d2d45f43d8a7427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b3ac28f25046308d2d45f43d8a7427.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:he-QGz8xME1cWhseFpUPAGLZqyQ=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.411699+00 2025-12-09 10:15:02.411709+00 9194 JTSS090FW#VS-D3 SPMX-20240815304352 \N \N \N 1 \N [{"file_id": "1cf5cc7d-2bb2-4b92-972c-609a71f90666", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e5fc988d2341fa8038eb15ad8458d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e5fc988d2341fa8038eb15ad8458d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e5fc988d2341fa8038eb15ad8458d2.jpg", "file_size": 6008, "is_delete": false, "file_type": 1, "original_file_name": "JTSS090FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e5fc988d2341fa8038eb15ad8458d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e5fc988d2341fa8038eb15ad8458d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e5fc988d2341fa8038eb15ad8458d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e5fc988d2341fa8038eb15ad8458d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e5fc988d2341fa8038eb15ad8458d2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-v4wDaAp4Cu_BQT4DV-cLU8OpY=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.413738+00 2025-12-09 10:15:02.413743+00 9195 LZ1246#下身2号色 SPMX-20240815304360 \N \N \N 1 \N [{"file_id": "a747b4e3-26ed-4db7-824e-c5e23ac17e22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf748933b11541b98af6045e4d8d4378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf748933b11541b98af6045e4d8d4378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf748933b11541b98af6045e4d8d4378.jpg", "file_size": 16534, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf748933b11541b98af6045e4d8d4378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf748933b11541b98af6045e4d8d4378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf748933b11541b98af6045e4d8d4378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf748933b11541b98af6045e4d8d4378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf748933b11541b98af6045e4d8d4378.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:av_GeQvswvsjmFR3sukkBCsYfck=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.415788+00 2025-12-09 10:15:02.415794+00 9196 DL30449#黄色XL SPMX-20240815304357 \N \N \N 1 \N [{"file_id": "b55f8cd8-135c-4e2c-9409-95348ae640f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2f16cf8d6e49f69b3dceb9f70185f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2f16cf8d6e49f69b3dceb9f70185f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2f16cf8d6e49f69b3dceb9f70185f9.jpg", "file_size": 20279, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2f16cf8d6e49f69b3dceb9f70185f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2f16cf8d6e49f69b3dceb9f70185f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2f16cf8d6e49f69b3dceb9f70185f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2f16cf8d6e49f69b3dceb9f70185f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2f16cf8d6e49f69b3dceb9f70185f9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIdy1ogE9mjUkqnUVpgDw-DocMs=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.417755+00 2025-12-09 10:15:02.417761+00 9197 C338FWF#红色S SPMX-20240815304363 \N \N \N 1 \N [{"file_id": "a7af2598-ea36-48e1-8431-273ce99e7bc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17df551baf104fc9be8d43cb640822ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17df551baf104fc9be8d43cb640822ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17df551baf104fc9be8d43cb640822ec.jpg", "file_size": 20729, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df551baf104fc9be8d43cb640822ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df551baf104fc9be8d43cb640822ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17df551baf104fc9be8d43cb640822ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17df551baf104fc9be8d43cb640822ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17df551baf104fc9be8d43cb640822ec.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HvKU_pwU3XDBOWpuZRm5iGXGAY=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.420065+00 2025-12-09 10:15:02.42007+00 9198 80329#前幅 SPMX-20240815304359 \N \N \N 1 \N [{"file_id": "5f0c22cb-e28b-4a1a-bacf-e2c417123011", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d226bdc55aa0492bbf9429ff961131ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d226bdc55aa0492bbf9429ff961131ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d226bdc55aa0492bbf9429ff961131ae.jpg", "file_size": 20007, "is_delete": false, "file_type": 1, "original_file_name": "80329#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d226bdc55aa0492bbf9429ff961131ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d226bdc55aa0492bbf9429ff961131ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d226bdc55aa0492bbf9429ff961131ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d226bdc55aa0492bbf9429ff961131ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d226bdc55aa0492bbf9429ff961131ae.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWhBdIfkk1uH-5g9iD6vd7fwpRw=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.422354+00 2025-12-09 10:15:02.422359+00 9199 0003-421#绿色净色 SPMX-20240815304358 \N \N \N 1 \N [{"file_id": "2682acb6-5949-4458-88e3-f94604082fd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "315cf538271448269a7713316f3903da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "315cf538271448269a7713316f3903da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "315cf538271448269a7713316f3903da.jpg", "file_size": 8238, "is_delete": false, "file_type": 1, "original_file_name": "0003-421#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cf538271448269a7713316f3903da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cf538271448269a7713316f3903da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cf538271448269a7713316f3903da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/315cf538271448269a7713316f3903da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/315cf538271448269a7713316f3903da.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCsZ19mHqfqnybAU7_1l3Yd_mK0=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.424385+00 2025-12-09 10:15:02.424391+00 9200 1076-1#红色 SPMX-20240815304354 \N \N \N 1 \N [{"file_id": "d8bb4f4e-2dd5-4b29-9611-f0699bee7547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d81d5efc0941443595c27597d2036a70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d81d5efc0941443595c27597d2036a70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d81d5efc0941443595c27597d2036a70.jpg", "file_size": 19488, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81d5efc0941443595c27597d2036a70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81d5efc0941443595c27597d2036a70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81d5efc0941443595c27597d2036a70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d81d5efc0941443595c27597d2036a70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d81d5efc0941443595c27597d2036a70.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eT9bMddAA1IKxDZvtlBL0AnnGPo=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.42644+00 2025-12-09 10:15:02.426445+00 9201 0003-422#WJC22 SPMX-20240815304370 \N \N \N 1 \N [{"file_id": "d54f2e72-5628-4876-8048-f3b9710819aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6897bc7d9ed546dc8f3594075458812c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6897bc7d9ed546dc8f3594075458812c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6897bc7d9ed546dc8f3594075458812c.jpg", "file_size": 16333, "is_delete": false, "file_type": 1, "original_file_name": "0003-422#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6897bc7d9ed546dc8f3594075458812c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6897bc7d9ed546dc8f3594075458812c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6897bc7d9ed546dc8f3594075458812c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6897bc7d9ed546dc8f3594075458812c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6897bc7d9ed546dc8f3594075458812c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyfyoXi7exp_PPD5LbMQAwkCkP0=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.428486+00 2025-12-09 10:15:02.428491+00 9202 LJ6003#匹布 SPMX-20240815304365 \N \N \N 1 \N [{"file_id": "76bf703c-669b-49af-ade9-9f6522081b78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f14870a7864e4017889307bc9698d190.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f14870a7864e4017889307bc9698d190.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f14870a7864e4017889307bc9698d190.jpg", "file_size": 16305, "is_delete": false, "file_type": 1, "original_file_name": "LJ6003#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14870a7864e4017889307bc9698d190.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14870a7864e4017889307bc9698d190.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14870a7864e4017889307bc9698d190.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f14870a7864e4017889307bc9698d190.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f14870a7864e4017889307bc9698d190.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwuRQUKX3-OTmVU-kJd1SG1cVUo=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.430518+00 2025-12-09 10:15:02.430523+00 9203 80329#后幅 SPMX-20240815304368 \N \N \N 1 \N [{"file_id": "bd3341b0-9221-4282-85c1-09c11564f2fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf304e5aad0242ed910a7120bb5f204b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf304e5aad0242ed910a7120bb5f204b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf304e5aad0242ed910a7120bb5f204b.jpg", "file_size": 17346, "is_delete": false, "file_type": 1, "original_file_name": "80329#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf304e5aad0242ed910a7120bb5f204b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf304e5aad0242ed910a7120bb5f204b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf304e5aad0242ed910a7120bb5f204b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf304e5aad0242ed910a7120bb5f204b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf304e5aad0242ed910a7120bb5f204b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLhap_sxecsRVFvyhuH41_ptBhM=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.43257+00 2025-12-09 10:15:02.432576+00 9204 DL30449#黑色L SPMX-20240815304367 \N \N \N 1 \N [{"file_id": "96e975fe-0a28-4198-b116-245cd816d234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "515defd2595542c296f5a6f5ad396b6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "515defd2595542c296f5a6f5ad396b6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "515defd2595542c296f5a6f5ad396b6b.jpg", "file_size": 24590, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515defd2595542c296f5a6f5ad396b6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515defd2595542c296f5a6f5ad396b6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515defd2595542c296f5a6f5ad396b6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/515defd2595542c296f5a6f5ad396b6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/515defd2595542c296f5a6f5ad396b6b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W1sPrBV2Gk19zyTcC9Pyzm8AyhY=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.434586+00 2025-12-09 10:15:02.434591+00 9205 HT0101-99#WJC22 SPMX-20240815304364 \N \N \N 1 \N [{"file_id": "ef0644ff-1737-46ac-98ca-589e91df1ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2878a8989a14f3ba07991fcd5534bf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2878a8989a14f3ba07991fcd5534bf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2878a8989a14f3ba07991fcd5534bf1.jpg", "file_size": 14543, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-99#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2878a8989a14f3ba07991fcd5534bf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2878a8989a14f3ba07991fcd5534bf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2878a8989a14f3ba07991fcd5534bf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2878a8989a14f3ba07991fcd5534bf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2878a8989a14f3ba07991fcd5534bf1.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KiUjefl-cqlS2ISvqeKDhEOKIU=", "createTime": "2024-08-15 14:48:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.436328+00 2025-12-09 10:15:02.436333+00 9206 1076-1#黄色 SPMX-20240815304369 \N \N \N 1 \N [{"file_id": "bd4e22ac-ce6c-4393-8f6f-e9d69feea60e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89d568a0223c48c095f29393f8475e3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89d568a0223c48c095f29393f8475e3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89d568a0223c48c095f29393f8475e3d.jpg", "file_size": 19962, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d568a0223c48c095f29393f8475e3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d568a0223c48c095f29393f8475e3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d568a0223c48c095f29393f8475e3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89d568a0223c48c095f29393f8475e3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89d568a0223c48c095f29393f8475e3d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUDifpUYL4PuYKr6KWThNQPnYd4=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.438082+00 2025-12-09 10:15:02.438087+00 9207 FHXGPK-121-3 SPMX-20240815304366 \N \N \N 1 \N [{"file_id": "fa261f34-3d06-4c15-add0-6749e705c57d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6e8a8ab650e41b3bb9eb484163fec31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6e8a8ab650e41b3bb9eb484163fec31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6e8a8ab650e41b3bb9eb484163fec31.jpg", "file_size": 29768, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-121-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e8a8ab650e41b3bb9eb484163fec31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e8a8ab650e41b3bb9eb484163fec31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e8a8ab650e41b3bb9eb484163fec31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6e8a8ab650e41b3bb9eb484163fec31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6e8a8ab650e41b3bb9eb484163fec31.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJJtkU1RZx8XYbMr6WWKmpR0URU=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.440001+00 2025-12-09 10:15:02.440007+00 9208 LZ1246#下身3号色 SPMX-20240815304371 \N \N \N 1 \N [{"file_id": "aadff067-0c1d-4895-babd-0f62bafd9852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f8a8062d5cc413d8211e55e318c368f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f8a8062d5cc413d8211e55e318c368f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f8a8062d5cc413d8211e55e318c368f.jpg", "file_size": 16787, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8a8062d5cc413d8211e55e318c368f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8a8062d5cc413d8211e55e318c368f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8a8062d5cc413d8211e55e318c368f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f8a8062d5cc413d8211e55e318c368f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f8a8062d5cc413d8211e55e318c368f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0mceCOgwv5a2nBJw134r5nY00E=", "createTime": "2024-08-15 14:48:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.441995+00 2025-12-09 10:15:02.442+00 9209 HT0101-A#白 SPMX-20240815304372 \N \N \N 1 \N [{"file_id": "1a19b651-a949-4a3c-b136-ae17a4ede8b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bdd766a97cd4e82a5efca7d02d3c3e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bdd766a97cd4e82a5efca7d02d3c3e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bdd766a97cd4e82a5efca7d02d3c3e7.jpg", "file_size": 16261, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdd766a97cd4e82a5efca7d02d3c3e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdd766a97cd4e82a5efca7d02d3c3e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdd766a97cd4e82a5efca7d02d3c3e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bdd766a97cd4e82a5efca7d02d3c3e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bdd766a97cd4e82a5efca7d02d3c3e7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9R0kha_glh7TG_Ra9jrO4HT_nMA=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.443971+00 2025-12-09 10:15:02.443976+00 9210 23-2114#A2-领子3XL SPMX-20240815304383 \N \N \N 1 \N [{"file_id": "56e52047-9e50-4062-9fd8-491374372e01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc23311f61b848e1a783b84040cad85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc23311f61b848e1a783b84040cad85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc23311f61b848e1a783b84040cad85c.jpg", "file_size": 12636, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc23311f61b848e1a783b84040cad85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc23311f61b848e1a783b84040cad85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc23311f61b848e1a783b84040cad85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc23311f61b848e1a783b84040cad85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc23311f61b848e1a783b84040cad85c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71TS17Dd0le6kE1Jqc52C2I2NHQ=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.446004+00 2025-12-09 10:15:02.446009+00 9211 C338FWF#绿色L-LW浅15 SPMX-20240815304386 \N \N \N 1 \N [{"file_id": "906b0a4d-1a4c-41fb-8d95-bae665e6948f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95ec2e25f5434e88ba30c1532300aeef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95ec2e25f5434e88ba30c1532300aeef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95ec2e25f5434e88ba30c1532300aeef.jpg", "file_size": 20035, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#绿色L-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ec2e25f5434e88ba30c1532300aeef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ec2e25f5434e88ba30c1532300aeef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ec2e25f5434e88ba30c1532300aeef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95ec2e25f5434e88ba30c1532300aeef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95ec2e25f5434e88ba30c1532300aeef.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1PcoSDxkPUk7VA4X92b7Fklk4WU=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.447998+00 2025-12-09 10:15:02.448003+00 9212 LJ6003#裤子匹布 SPMX-20240815304376 \N \N \N 1 \N [{"file_id": "7512aeeb-d1af-4a5b-a4e2-3866b580d7d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3f5449391504ca98c156f522d189666.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3f5449391504ca98c156f522d189666.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3f5449391504ca98c156f522d189666.jpg", "file_size": 16645, "is_delete": false, "file_type": 1, "original_file_name": "LJ6003#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5449391504ca98c156f522d189666.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5449391504ca98c156f522d189666.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5449391504ca98c156f522d189666.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3f5449391504ca98c156f522d189666.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3f5449391504ca98c156f522d189666.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T12PKlsCurcHg4m5XxPo4cumy5I=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.450041+00 2025-12-09 10:15:02.450046+00 9213 1076FWF#V5曲线 SPMX-20240815304385 \N \N \N 1 \N [{"file_id": "118da61f-e70a-4a85-b314-e4ff3e92db7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19fc09a1bf7d4a848088a8c187e02b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19fc09a1bf7d4a848088a8c187e02b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19fc09a1bf7d4a848088a8c187e02b0c.jpg", "file_size": 7194, "is_delete": false, "file_type": 1, "original_file_name": "1076FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fc09a1bf7d4a848088a8c187e02b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fc09a1bf7d4a848088a8c187e02b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fc09a1bf7d4a848088a8c187e02b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19fc09a1bf7d4a848088a8c187e02b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19fc09a1bf7d4a848088a8c187e02b0c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6-FFKQdfhgJR2AyIxS_dyjwai4=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.452194+00 2025-12-09 10:15:02.452199+00 9214 DL30449#黑色M SPMX-20240815304377 \N \N \N 1 \N [{"file_id": "4779b224-dff3-4e7b-8d44-7e179fcda43b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa722339e8434b97b23669f9cd9501de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa722339e8434b97b23669f9cd9501de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa722339e8434b97b23669f9cd9501de.jpg", "file_size": 25373, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黑色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa722339e8434b97b23669f9cd9501de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa722339e8434b97b23669f9cd9501de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa722339e8434b97b23669f9cd9501de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa722339e8434b97b23669f9cd9501de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa722339e8434b97b23669f9cd9501de.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJ8Mk-2rb6ci9Y0mRp3ll68KNbY=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.454276+00 2025-12-09 10:15:02.454281+00 9215 HT0101-A#黑 SPMX-20240815304384 \N \N \N 1 \N [{"file_id": "1a91bffe-a5a2-4773-b9e9-8344642e45fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ac2759dd84c49c19ea6b8bf19f04912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ac2759dd84c49c19ea6b8bf19f04912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ac2759dd84c49c19ea6b8bf19f04912.jpg", "file_size": 16830, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac2759dd84c49c19ea6b8bf19f04912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac2759dd84c49c19ea6b8bf19f04912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac2759dd84c49c19ea6b8bf19f04912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ac2759dd84c49c19ea6b8bf19f04912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ac2759dd84c49c19ea6b8bf19f04912.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWjHqAMbTtsS0r5lSBxT5kKvSf0=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.456055+00 2025-12-09 10:15:02.45606+00 9216 0003-423#WJC22 SPMX-20240815304382 \N \N \N 1 \N [{"file_id": "60dd8076-8d05-4872-ac22-28f0a4d4bc10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e478750a44f4bfe8665b3e47c78f47b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e478750a44f4bfe8665b3e47c78f47b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e478750a44f4bfe8665b3e47c78f47b.jpg", "file_size": 16110, "is_delete": false, "file_type": 1, "original_file_name": "0003-423#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e478750a44f4bfe8665b3e47c78f47b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e478750a44f4bfe8665b3e47c78f47b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e478750a44f4bfe8665b3e47c78f47b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e478750a44f4bfe8665b3e47c78f47b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e478750a44f4bfe8665b3e47c78f47b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQmXouwBb-_DWG6AMfArJcZiUu4=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.457651+00 2025-12-09 10:15:02.457656+00 9217 80330#前幅 SPMX-20240815304379 \N \N \N 1 \N [{"file_id": "b4cbed16-93fa-41d1-b0b8-3ad2f28178cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "615a495eb8a348c5b6b03c6839911292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "615a495eb8a348c5b6b03c6839911292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "615a495eb8a348c5b6b03c6839911292.jpg", "file_size": 18564, "is_delete": false, "file_type": 1, "original_file_name": "80330#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615a495eb8a348c5b6b03c6839911292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615a495eb8a348c5b6b03c6839911292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615a495eb8a348c5b6b03c6839911292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/615a495eb8a348c5b6b03c6839911292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/615a495eb8a348c5b6b03c6839911292.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wm1HVLguCT8xWJvgVjG0KmmvDs=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.45923+00 2025-12-09 10:15:02.459234+00 9218 LZ1246#下身4号色 SPMX-20240815304375 \N \N \N 1 \N [{"file_id": "b0dd7a55-1b87-443a-b7c4-df7472774a07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12701b91b6e64b199448c5bc2700e0df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12701b91b6e64b199448c5bc2700e0df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12701b91b6e64b199448c5bc2700e0df.jpg", "file_size": 16056, "is_delete": false, "file_type": 1, "original_file_name": "LZ1246#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12701b91b6e64b199448c5bc2700e0df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12701b91b6e64b199448c5bc2700e0df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12701b91b6e64b199448c5bc2700e0df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12701b91b6e64b199448c5bc2700e0df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12701b91b6e64b199448c5bc2700e0df.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfV00vemA7pmooXWZ1XMwuahJ48=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.461015+00 2025-12-09 10:15:02.46102+00 9219 23-2114#A2-4XL SPMX-20240815304373 \N \N \N 1 \N [{"file_id": "a7d18a03-e964-4c92-b6de-b15e460aacf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "451f7d5e471b463693e1aafb4c196bd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "451f7d5e471b463693e1aafb4c196bd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "451f7d5e471b463693e1aafb4c196bd4.jpg", "file_size": 17175, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451f7d5e471b463693e1aafb4c196bd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451f7d5e471b463693e1aafb4c196bd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451f7d5e471b463693e1aafb4c196bd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/451f7d5e471b463693e1aafb4c196bd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/451f7d5e471b463693e1aafb4c196bd4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_cLlK6sGlGOFWIPpX5wsLw8778=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.462582+00 2025-12-09 10:15:02.462586+00 9220 C338FWF#红色XL SPMX-20240815304378 \N \N \N 1 \N [{"file_id": "f5395e86-03bc-4fe9-98dc-71f24876298c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce016376454c4d78ad0081f80829aef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce016376454c4d78ad0081f80829aef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce016376454c4d78ad0081f80829aef0.jpg", "file_size": 19493, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce016376454c4d78ad0081f80829aef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce016376454c4d78ad0081f80829aef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce016376454c4d78ad0081f80829aef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce016376454c4d78ad0081f80829aef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce016376454c4d78ad0081f80829aef0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8sfu-dXUYp6uy7pDjWdISoAKNY=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.464141+00 2025-12-09 10:15:02.464146+00 9221 JTSS092FW#VS-D3 SPMX-20240815304380 \N \N \N 1 \N [{"file_id": "cdbe59d7-cd25-4139-8a8d-0bbe157445a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af2a2afffc6340a7aa49c92465430b11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af2a2afffc6340a7aa49c92465430b11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af2a2afffc6340a7aa49c92465430b11.jpg", "file_size": 9682, "is_delete": false, "file_type": 1, "original_file_name": "JTSS092FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2a2afffc6340a7aa49c92465430b11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2a2afffc6340a7aa49c92465430b11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2a2afffc6340a7aa49c92465430b11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af2a2afffc6340a7aa49c92465430b11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af2a2afffc6340a7aa49c92465430b11.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rrmf2myb5MTj7QOqm8UdmwSWqyI=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.465719+00 2025-12-09 10:15:02.465723+00 9222 1076-1#黑色 SPMX-20240815304374 \N \N \N 1 \N [{"file_id": "4e276b4f-2bc0-45c3-9c7e-bdc6847ed2a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3151cab15be47deadcffd05a2df4201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3151cab15be47deadcffd05a2df4201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3151cab15be47deadcffd05a2df4201.jpg", "file_size": 20999, "is_delete": false, "file_type": 1, "original_file_name": "1076-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3151cab15be47deadcffd05a2df4201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3151cab15be47deadcffd05a2df4201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3151cab15be47deadcffd05a2df4201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3151cab15be47deadcffd05a2df4201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3151cab15be47deadcffd05a2df4201.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gn6_ChSf9BCWgcqcIBqwkNByCA4=", "createTime": "2024-08-15 14:48:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.467401+00 2025-12-09 10:15:02.467406+00 9223 FHXGPK-121-4 SPMX-20240815304381 \N \N \N 1 \N [{"file_id": "d27bbf68-6fa8-447f-8e3c-cf8798684746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f853135178d44f6b5f64ad4697c3994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f853135178d44f6b5f64ad4697c3994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f853135178d44f6b5f64ad4697c3994.jpg", "file_size": 29229, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-121-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f853135178d44f6b5f64ad4697c3994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f853135178d44f6b5f64ad4697c3994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f853135178d44f6b5f64ad4697c3994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f853135178d44f6b5f64ad4697c3994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f853135178d44f6b5f64ad4697c3994.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pw-s88GbPuHiT6yUagujFye7B7Q=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.469242+00 2025-12-09 10:15:02.469247+00 9224 0003-425#WJC22 SPMX-20240815304404 \N \N \N 1 \N [{"file_id": "af5842c4-e947-4816-8894-46a6b5218974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d44e67d10b8f492b92536540c85a666c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d44e67d10b8f492b92536540c85a666c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d44e67d10b8f492b92536540c85a666c.jpg", "file_size": 15071, "is_delete": false, "file_type": 1, "original_file_name": "0003-425#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44e67d10b8f492b92536540c85a666c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44e67d10b8f492b92536540c85a666c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44e67d10b8f492b92536540c85a666c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d44e67d10b8f492b92536540c85a666c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d44e67d10b8f492b92536540c85a666c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cgn4jtBHKu_SyzZoxGHQZUZAiD4=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.471076+00 2025-12-09 10:15:02.47108+00 9225 FHXGPK-122-1 SPMX-20240815304401 \N \N \N 1 \N [{"file_id": "937f3bd7-d8a1-4754-88f7-9497534e5a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf12495485d941f8b72efef4ef2c7916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf12495485d941f8b72efef4ef2c7916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf12495485d941f8b72efef4ef2c7916.jpg", "file_size": 31198, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-122-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12495485d941f8b72efef4ef2c7916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12495485d941f8b72efef4ef2c7916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12495485d941f8b72efef4ef2c7916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf12495485d941f8b72efef4ef2c7916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf12495485d941f8b72efef4ef2c7916.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2IvIisqyMD-noGIKrUvSGRAbic=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.472651+00 2025-12-09 10:15:02.472656+00 9226 DL30449#黑色XL SPMX-20240815304391 \N \N \N 1 \N [{"file_id": "29eecd04-0c48-48dc-9add-d21759db6650", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7917c6dc7d1d47aa828451f8b03b0b1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7917c6dc7d1d47aa828451f8b03b0b1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7917c6dc7d1d47aa828451f8b03b0b1d.jpg", "file_size": 24894, "is_delete": false, "file_type": 1, "original_file_name": "DL30449#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7917c6dc7d1d47aa828451f8b03b0b1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7917c6dc7d1d47aa828451f8b03b0b1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7917c6dc7d1d47aa828451f8b03b0b1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7917c6dc7d1d47aa828451f8b03b0b1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7917c6dc7d1d47aa828451f8b03b0b1d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQP29E_sNlcpl3dBOb1YMNqxRpg=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.474237+00 2025-12-09 10:15:02.474241+00 9227 0003-424#WJC22 SPMX-20240815304393 \N \N \N 1 \N [{"file_id": "efc205eb-829a-4c85-945b-adc553388d3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dad0d92ceff747c3ab3ddee0c3c8a358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dad0d92ceff747c3ab3ddee0c3c8a358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dad0d92ceff747c3ab3ddee0c3c8a358.jpg", "file_size": 22927, "is_delete": false, "file_type": 1, "original_file_name": "0003-424#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad0d92ceff747c3ab3ddee0c3c8a358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad0d92ceff747c3ab3ddee0c3c8a358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad0d92ceff747c3ab3ddee0c3c8a358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dad0d92ceff747c3ab3ddee0c3c8a358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dad0d92ceff747c3ab3ddee0c3c8a358.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rqjh4KzfZWAPcPdqsTx2vksxvlA=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.475814+00 2025-12-09 10:15:02.475819+00 9228 1078-1#原版色 SPMX-20240815304396 \N \N \N 1 \N [{"file_id": "ff4576e6-5ff1-43bb-a2ee-8ad7d9e60581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2531481dcfaf4556b1466518c33a92a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2531481dcfaf4556b1466518c33a92a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2531481dcfaf4556b1466518c33a92a9.jpg", "file_size": 21436, "is_delete": false, "file_type": 1, "original_file_name": "1078-1#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2531481dcfaf4556b1466518c33a92a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2531481dcfaf4556b1466518c33a92a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2531481dcfaf4556b1466518c33a92a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2531481dcfaf4556b1466518c33a92a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2531481dcfaf4556b1466518c33a92a9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aXp8T6D4CR9nu4YND_M5qlL5iWo=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.477367+00 2025-12-09 10:15:02.477371+00 9229 HT0101-A1# SPMX-20240815304394 \N \N \N 1 \N [{"file_id": "6dcea74d-f8ac-45f8-95bf-ec427a888271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc5e5431d4844227b18450dbd2a8b5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc5e5431d4844227b18450dbd2a8b5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc5e5431d4844227b18450dbd2a8b5f3.jpg", "file_size": 21142, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A1#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5e5431d4844227b18450dbd2a8b5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5e5431d4844227b18450dbd2a8b5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5e5431d4844227b18450dbd2a8b5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc5e5431d4844227b18450dbd2a8b5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc5e5431d4844227b18450dbd2a8b5f3.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GobvHLUW5gw617MZoFYlG2P-JFk=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.479164+00 2025-12-09 10:15:02.479168+00 9230 JTSS093FW#VS-D3 SPMX-20240815304388 \N \N \N 1 \N [{"file_id": "25dca8f4-d9a0-46d3-99ca-c7b5078ad1da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60898ea2a6bd41fea247eba4473c6bb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60898ea2a6bd41fea247eba4473c6bb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60898ea2a6bd41fea247eba4473c6bb9.jpg", "file_size": 9908, "is_delete": false, "file_type": 1, "original_file_name": "JTSS093FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60898ea2a6bd41fea247eba4473c6bb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60898ea2a6bd41fea247eba4473c6bb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60898ea2a6bd41fea247eba4473c6bb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60898ea2a6bd41fea247eba4473c6bb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60898ea2a6bd41fea247eba4473c6bb9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nAZZNIWDn5_FPkZOGbFR_ld8_k=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.480709+00 2025-12-09 10:15:02.480713+00 9231 C338FWF#绿色M-LW浅15 SPMX-20240815304397 \N \N \N 1 \N [{"file_id": "2942710b-bb9a-47ed-a307-c132cba5f44a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee93d199b8c74596a3a2934585504670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee93d199b8c74596a3a2934585504670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee93d199b8c74596a3a2934585504670.jpg", "file_size": 21005, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#绿色M-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee93d199b8c74596a3a2934585504670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee93d199b8c74596a3a2934585504670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee93d199b8c74596a3a2934585504670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee93d199b8c74596a3a2934585504670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee93d199b8c74596a3a2934585504670.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LYJ86uPVPs62J1k4fZU29MULWGA=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.482309+00 2025-12-09 10:15:02.482314+00 9232 LJ6004#后幅净色 SPMX-20240815304402 \N \N \N 1 \N [{"file_id": "c9f594cc-966d-4939-8ed4-089bbc560b85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c81607be151c42b885d1528ebcb214ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c81607be151c42b885d1528ebcb214ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c81607be151c42b885d1528ebcb214ae.jpg", "file_size": 6898, "is_delete": false, "file_type": 1, "original_file_name": "LJ6004#后幅净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81607be151c42b885d1528ebcb214ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81607be151c42b885d1528ebcb214ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81607be151c42b885d1528ebcb214ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c81607be151c42b885d1528ebcb214ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c81607be151c42b885d1528ebcb214ae.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dMhWJNtj5tUMhrY2GSEYcuMeeYE=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.483888+00 2025-12-09 10:15:02.483892+00 9233 80330#后幅 SPMX-20240815304389 \N \N \N 1 \N [{"file_id": "437fcbb9-fccc-43d0-81ee-ecbc981f0467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eef663ae7afd49f09e215468b7ee5f1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eef663ae7afd49f09e215468b7ee5f1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eef663ae7afd49f09e215468b7ee5f1e.jpg", "file_size": 16985, "is_delete": false, "file_type": 1, "original_file_name": "80330#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef663ae7afd49f09e215468b7ee5f1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef663ae7afd49f09e215468b7ee5f1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef663ae7afd49f09e215468b7ee5f1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eef663ae7afd49f09e215468b7ee5f1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eef663ae7afd49f09e215468b7ee5f1e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1NYjq5sDNE2KkBbpXAXRQBVX7k=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.485453+00 2025-12-09 10:15:02.485458+00 9234 23-2114#A2-领子4XL SPMX-20240815304395 \N \N \N 1 \N [{"file_id": "357c35be-2be0-4540-83c2-2291a121ef7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg", "file_size": 12782, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5bf7cad5b6a4e77b1583b0ad3d00cae.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUjgoMop-0aT2HVC9bqhSwhRgS8=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.487276+00 2025-12-09 10:15:02.487282+00 9235 FHXGPK-121-5 SPMX-20240815304390 \N \N \N 1 \N [{"file_id": "e0e98f87-890f-468b-9dce-7940b45b2aaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7d23388d8e3456fa662ac6464e7f2ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7d23388d8e3456fa662ac6464e7f2ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7d23388d8e3456fa662ac6464e7f2ef.jpg", "file_size": 30058, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-121-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d23388d8e3456fa662ac6464e7f2ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d23388d8e3456fa662ac6464e7f2ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d23388d8e3456fa662ac6464e7f2ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7d23388d8e3456fa662ac6464e7f2ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7d23388d8e3456fa662ac6464e7f2ef.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_LQKuoDBySI_0wnUWEeAJzXg1s=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.488947+00 2025-12-09 10:15:02.488951+00 9236 DL30450#短款下摆原版 SPMX-20240815304403 \N \N \N 1 \N [{"file_id": "3003fea6-53b8-45d9-9830-ccdadfa3cecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01d0aecb5aba476b80f507c6574a7e38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01d0aecb5aba476b80f507c6574a7e38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01d0aecb5aba476b80f507c6574a7e38.jpg", "file_size": 17921, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款下摆原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d0aecb5aba476b80f507c6574a7e38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d0aecb5aba476b80f507c6574a7e38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d0aecb5aba476b80f507c6574a7e38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01d0aecb5aba476b80f507c6574a7e38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01d0aecb5aba476b80f507c6574a7e38.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJlhhHhZgXkemhU_S7SNH_nsufw=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.490546+00 2025-12-09 10:15:02.490551+00 9237 LZ1247#上身2号色 SPMX-20240815304398 \N \N \N 1 \N [{"file_id": "b680c69d-cd6e-4b16-bd73-79a3f3eb923d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfe2c84fae9e4410a6dfdd645761be9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfe2c84fae9e4410a6dfdd645761be9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfe2c84fae9e4410a6dfdd645761be9f.jpg", "file_size": 17408, "is_delete": false, "file_type": 1, "original_file_name": "LZ1247#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe2c84fae9e4410a6dfdd645761be9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe2c84fae9e4410a6dfdd645761be9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe2c84fae9e4410a6dfdd645761be9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfe2c84fae9e4410a6dfdd645761be9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfe2c84fae9e4410a6dfdd645761be9f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2reVHcOJ29MayoGQKGl5ZoXMrvA=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.492307+00 2025-12-09 10:15:02.492311+00 9238 LZ1247#上身1号色 SPMX-20240815304387 \N \N \N 1 \N [{"file_id": "23ff9843-b992-410a-942c-1d0c1a10fb29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e281b9e7f12447e681071b4dcc06ee83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e281b9e7f12447e681071b4dcc06ee83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e281b9e7f12447e681071b4dcc06ee83.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "LZ1247#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e281b9e7f12447e681071b4dcc06ee83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e281b9e7f12447e681071b4dcc06ee83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e281b9e7f12447e681071b4dcc06ee83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e281b9e7f12447e681071b4dcc06ee83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e281b9e7f12447e681071b4dcc06ee83.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKhMSZCd3Wsh4i2mxz74Q3817So=", "createTime": "2024-08-15 14:48:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.493872+00 2025-12-09 10:15:02.493877+00 9239 LJ6004#前幅 SPMX-20240815304392 \N \N \N 1 \N [{"file_id": "89ec7500-257f-4ff0-b4a9-0422781d5817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4aa85f6ab03f4b24bf5f34b189675d22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4aa85f6ab03f4b24bf5f34b189675d22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4aa85f6ab03f4b24bf5f34b189675d22.jpg", "file_size": 13037, "is_delete": false, "file_type": 1, "original_file_name": "LJ6004#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aa85f6ab03f4b24bf5f34b189675d22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aa85f6ab03f4b24bf5f34b189675d22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aa85f6ab03f4b24bf5f34b189675d22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4aa85f6ab03f4b24bf5f34b189675d22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4aa85f6ab03f4b24bf5f34b189675d22.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tHDa2si3Eaj4yyvuHooMfg2Ep8=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.495439+00 2025-12-09 10:15:02.495444+00 9240 JTSS094FW#VS-D3 SPMX-20240815304399 \N \N \N 1 \N [{"file_id": "1fb59391-e5bf-45e6-84d3-2a11d429db03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "523c8a0f26ff4db3b5298f33decb6d61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "523c8a0f26ff4db3b5298f33decb6d61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "523c8a0f26ff4db3b5298f33decb6d61.jpg", "file_size": 8146, "is_delete": false, "file_type": 1, "original_file_name": "JTSS094FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523c8a0f26ff4db3b5298f33decb6d61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523c8a0f26ff4db3b5298f33decb6d61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523c8a0f26ff4db3b5298f33decb6d61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/523c8a0f26ff4db3b5298f33decb6d61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/523c8a0f26ff4db3b5298f33decb6d61.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AF6tAeb5ojpb3UPRhYqF1nP87SQ=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.497302+00 2025-12-09 10:15:02.497306+00 9241 80331#前幅 SPMX-20240815304400 \N \N \N 1 \N [{"file_id": "5c9101ab-0d0e-49dc-a5ce-af9a96b9219f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e46c22c735f14be2a041de6c2ade869c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e46c22c735f14be2a041de6c2ade869c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e46c22c735f14be2a041de6c2ade869c.jpg", "file_size": 18197, "is_delete": false, "file_type": 1, "original_file_name": "80331#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46c22c735f14be2a041de6c2ade869c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46c22c735f14be2a041de6c2ade869c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46c22c735f14be2a041de6c2ade869c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e46c22c735f14be2a041de6c2ade869c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e46c22c735f14be2a041de6c2ade869c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnX9OIlqVtHTvOMDk8JKSSM59Yw=", "createTime": "2024-08-15 14:48:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.49888+00 2025-12-09 10:15:02.498885+00 9242 1078-1#玫红色 SPMX-20240815304408 \N \N \N 1 \N [{"file_id": "8ae5ccbe-68a6-4179-9355-75d525092167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8197e58b91b94e83b22bbf0b446eb0ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8197e58b91b94e83b22bbf0b446eb0ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8197e58b91b94e83b22bbf0b446eb0ca.jpg", "file_size": 20748, "is_delete": false, "file_type": 1, "original_file_name": "1078-1#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8197e58b91b94e83b22bbf0b446eb0ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8197e58b91b94e83b22bbf0b446eb0ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8197e58b91b94e83b22bbf0b446eb0ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8197e58b91b94e83b22bbf0b446eb0ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8197e58b91b94e83b22bbf0b446eb0ca.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRjUw7prYo1VxLzN8gYUoOqx_pM=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.500456+00 2025-12-09 10:15:02.50046+00 9243 HT0101-A1#RC23 SPMX-20240815304405 \N \N \N 1 \N [{"file_id": "60881d06-cf4f-42f6-bf13-35b0463d21db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7e53d55263247b9aa4d5456330d435e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7e53d55263247b9aa4d5456330d435e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7e53d55263247b9aa4d5456330d435e.jpg", "file_size": 72552, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e53d55263247b9aa4d5456330d435e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e53d55263247b9aa4d5456330d435e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e53d55263247b9aa4d5456330d435e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7e53d55263247b9aa4d5456330d435e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7e53d55263247b9aa4d5456330d435e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoX9PexIrieirspfbDJ8OYqpokI=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.502028+00 2025-12-09 10:15:02.502032+00 9244 C338FWF#绿色S-LW浅15 SPMX-20240815304406 \N \N \N 1 \N [{"file_id": "0121826b-6f58-4e01-bf6c-79d6238d08f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg", "file_size": 20823, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#绿色S-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a1a6a25aebc4ba7aa4bb717a2e3c598.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TsAFHHrEiPZH_RWwqL8xI4lotVo=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.503601+00 2025-12-09 10:15:02.503605+00 9245 FHXGPK-122-2 SPMX-20240815304413 \N \N \N 1 \N [{"file_id": "6e0e9699-e059-4d2a-95e6-80923534eb3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba9ed22dfcfc47b3af64038e4bfaab8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba9ed22dfcfc47b3af64038e4bfaab8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba9ed22dfcfc47b3af64038e4bfaab8d.jpg", "file_size": 27972, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-122-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9ed22dfcfc47b3af64038e4bfaab8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9ed22dfcfc47b3af64038e4bfaab8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9ed22dfcfc47b3af64038e4bfaab8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba9ed22dfcfc47b3af64038e4bfaab8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba9ed22dfcfc47b3af64038e4bfaab8d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXLNfi1XY05-ENOVRgRQlfUDX2I=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.505416+00 2025-12-09 10:15:02.505421+00 9246 JTSS095FW#VS-D3 SPMX-20240815304412 \N \N \N 1 \N [{"file_id": "6130c0bf-0af2-40bb-8df1-09ac0a8a7d93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e17ff142eec7451fb969e498bcc0e0a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e17ff142eec7451fb969e498bcc0e0a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e17ff142eec7451fb969e498bcc0e0a2.jpg", "file_size": 15724, "is_delete": false, "file_type": 1, "original_file_name": "JTSS095FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ff142eec7451fb969e498bcc0e0a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ff142eec7451fb969e498bcc0e0a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17ff142eec7451fb969e498bcc0e0a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e17ff142eec7451fb969e498bcc0e0a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e17ff142eec7451fb969e498bcc0e0a2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z8tKYN5x-U6-aHSmNZh3zIvmZg0=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.506995+00 2025-12-09 10:15:02.506999+00 9247 0003-426#WJC22 SPMX-20240815304415 \N \N \N 1 \N [{"file_id": "219b108d-d3bb-4728-926f-fb866bb4abe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f35b5779c56448308e21308aac25e59d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f35b5779c56448308e21308aac25e59d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f35b5779c56448308e21308aac25e59d.jpg", "file_size": 27022, "is_delete": false, "file_type": 1, "original_file_name": "0003-426#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35b5779c56448308e21308aac25e59d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35b5779c56448308e21308aac25e59d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f35b5779c56448308e21308aac25e59d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f35b5779c56448308e21308aac25e59d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f35b5779c56448308e21308aac25e59d.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wsm8qU9fZ_8RjIutIEU4_BEYjKs=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.50857+00 2025-12-09 10:15:02.508575+00 9248 23-2114#A3-3XL SPMX-20240815304407 \N \N \N 1 \N [{"file_id": "64545687-099e-41a1-b50d-7441438c1305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b49febd1c0b044f49357000c2967cb73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b49febd1c0b044f49357000c2967cb73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b49febd1c0b044f49357000c2967cb73.jpg", "file_size": 16193, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49febd1c0b044f49357000c2967cb73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49febd1c0b044f49357000c2967cb73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49febd1c0b044f49357000c2967cb73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b49febd1c0b044f49357000c2967cb73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b49febd1c0b044f49357000c2967cb73.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3n7rpc0RJXtPZoscBG0riiGBi0=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.510404+00 2025-12-09 10:15:02.510408+00 9249 DL30450#短款下摆墨绿 SPMX-20240815304411 \N \N \N 1 \N [{"file_id": "d61d731c-9187-44d1-98f6-e195ee49f0ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7d7b32edd314588bd006b68f864f02c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7d7b32edd314588bd006b68f864f02c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7d7b32edd314588bd006b68f864f02c.jpg", "file_size": 18049, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7b32edd314588bd006b68f864f02c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7b32edd314588bd006b68f864f02c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d7b32edd314588bd006b68f864f02c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7d7b32edd314588bd006b68f864f02c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7d7b32edd314588bd006b68f864f02c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Elr32lH_S1z4_vN4U6ebkoQvaQU=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.51199+00 2025-12-09 10:15:02.511995+00 9250 LZ1247#上身3号色 SPMX-20240815304409 \N \N \N 1 \N [{"file_id": "a68fdf4c-498b-4b01-ac4a-4bfbfc65c7dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a370a3333fa4ed091ecc77840c6798b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a370a3333fa4ed091ecc77840c6798b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a370a3333fa4ed091ecc77840c6798b.jpg", "file_size": 18766, "is_delete": false, "file_type": 1, "original_file_name": "LZ1247#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a370a3333fa4ed091ecc77840c6798b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a370a3333fa4ed091ecc77840c6798b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a370a3333fa4ed091ecc77840c6798b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a370a3333fa4ed091ecc77840c6798b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a370a3333fa4ed091ecc77840c6798b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vvBtOdpiFD_ZHpBA1xgrmYGrxU=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.513565+00 2025-12-09 10:15:02.513569+00 9251 LJ6004#裤子匹布 SPMX-20240815304414 \N \N \N 1 \N [{"file_id": "3ef1016f-ea70-4286-8e59-89af808e1a0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e71060dddea4e41bbf951799afa6d9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e71060dddea4e41bbf951799afa6d9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e71060dddea4e41bbf951799afa6d9b.jpg", "file_size": 16288, "is_delete": false, "file_type": 1, "original_file_name": "LJ6004#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e71060dddea4e41bbf951799afa6d9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e71060dddea4e41bbf951799afa6d9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e71060dddea4e41bbf951799afa6d9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e71060dddea4e41bbf951799afa6d9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e71060dddea4e41bbf951799afa6d9b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvwueDL59J5lzSadsbmpp3XniUM=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.515443+00 2025-12-09 10:15:02.515447+00 9252 80331#后幅 SPMX-20240815304410 \N \N \N 1 \N [{"file_id": "ba05f017-534c-4972-8f28-61ca083dccf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f935356b45341b98d28502c42bfd9b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f935356b45341b98d28502c42bfd9b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f935356b45341b98d28502c42bfd9b1.jpg", "file_size": 16797, "is_delete": false, "file_type": 1, "original_file_name": "80331#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f935356b45341b98d28502c42bfd9b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f935356b45341b98d28502c42bfd9b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f935356b45341b98d28502c42bfd9b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f935356b45341b98d28502c42bfd9b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f935356b45341b98d28502c42bfd9b1.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXRLsvNtF2L911HwYUQ3VbJpsDg=", "createTime": "2024-08-15 14:48:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.517022+00 2025-12-09 10:15:02.517026+00 9253 1078-1#黄色 SPMX-20240815304418 \N \N \N 1 \N [{"file_id": "e2d48724-8b37-47b0-b25f-c306bd1f1079", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6abd2105e8b4a138a2394238ebfd379.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6abd2105e8b4a138a2394238ebfd379.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6abd2105e8b4a138a2394238ebfd379.jpg", "file_size": 22630, "is_delete": false, "file_type": 1, "original_file_name": "1078-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6abd2105e8b4a138a2394238ebfd379.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6abd2105e8b4a138a2394238ebfd379.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6abd2105e8b4a138a2394238ebfd379.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6abd2105e8b4a138a2394238ebfd379.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6abd2105e8b4a138a2394238ebfd379.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcZt4jKEIOyVC7oUZ9UmSxNWUF8=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.518589+00 2025-12-09 10:15:02.518594+00 9254 LZ1247#上身4号色 SPMX-20240815304421 \N \N \N 1 \N [{"file_id": "9b6976a0-2a54-4adc-84fa-cd8a1dfc27ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94d91a70fb484ed0ba8d609439a34b38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94d91a70fb484ed0ba8d609439a34b38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94d91a70fb484ed0ba8d609439a34b38.jpg", "file_size": 18690, "is_delete": false, "file_type": 1, "original_file_name": "LZ1247#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d91a70fb484ed0ba8d609439a34b38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d91a70fb484ed0ba8d609439a34b38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d91a70fb484ed0ba8d609439a34b38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94d91a70fb484ed0ba8d609439a34b38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94d91a70fb484ed0ba8d609439a34b38.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DMCZI0mYMfjxuWe1ugu-96bvj0=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.52044+00 2025-12-09 10:15:02.520444+00 9255 0003-427#WJC22 SPMX-20240815304422 \N \N \N 1 \N [{"file_id": "53d96456-c549-4ba6-ae5b-c55f2eb6db05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e301782dcdc41ac8d75f6a6cec41c6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e301782dcdc41ac8d75f6a6cec41c6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e301782dcdc41ac8d75f6a6cec41c6b.jpg", "file_size": 24707, "is_delete": false, "file_type": 1, "original_file_name": "0003-427#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e301782dcdc41ac8d75f6a6cec41c6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e301782dcdc41ac8d75f6a6cec41c6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e301782dcdc41ac8d75f6a6cec41c6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e301782dcdc41ac8d75f6a6cec41c6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e301782dcdc41ac8d75f6a6cec41c6b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trqjSKlWdg4LrCyMFUK6vm5BmUE=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.521999+00 2025-12-09 10:15:02.522003+00 9256 FHXGPK-122-3 SPMX-20240815304420 \N \N \N 1 \N [{"file_id": "f6eb41bc-490d-4a1f-a8df-cbf8d5899558", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "048677a6f43947d8a7e47202264ab121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "048677a6f43947d8a7e47202264ab121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "048677a6f43947d8a7e47202264ab121.jpg", "file_size": 30825, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-122-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048677a6f43947d8a7e47202264ab121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048677a6f43947d8a7e47202264ab121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048677a6f43947d8a7e47202264ab121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/048677a6f43947d8a7e47202264ab121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/048677a6f43947d8a7e47202264ab121.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7w1LgzDcqCmSS8IgdYZZmfJ9Tk=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.523566+00 2025-12-09 10:15:02.52357+00 9257 23-2114#A3-4XL SPMX-20240815304419 \N \N \N 1 \N [{"file_id": "a6208fa6-1fed-47df-b5ef-2b853cce7896", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a004e2beefde4b3aa8e628f75327cad4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a004e2beefde4b3aa8e628f75327cad4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a004e2beefde4b3aa8e628f75327cad4.jpg", "file_size": 15554, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a004e2beefde4b3aa8e628f75327cad4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a004e2beefde4b3aa8e628f75327cad4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a004e2beefde4b3aa8e628f75327cad4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a004e2beefde4b3aa8e628f75327cad4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a004e2beefde4b3aa8e628f75327cad4.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCuszcMYZMq19UjhjOOjtxK0nIw=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.525192+00 2025-12-09 10:15:02.525197+00 9258 HT0101-A2# SPMX-20240815304416 \N \N \N 1 \N [{"file_id": "5b5cfdda-ad2d-49ac-a9d9-2699bbfb69c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9339743edb4147428ac3aedeeb27b2ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9339743edb4147428ac3aedeeb27b2ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9339743edb4147428ac3aedeeb27b2ae.jpg", "file_size": 22174, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A2#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339743edb4147428ac3aedeeb27b2ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339743edb4147428ac3aedeeb27b2ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9339743edb4147428ac3aedeeb27b2ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9339743edb4147428ac3aedeeb27b2ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9339743edb4147428ac3aedeeb27b2ae.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyBXCBf7aThlOoVEhbPAV82M-X4=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.526815+00 2025-12-09 10:15:02.526819+00 9259 C338FWF#绿色XL-LW浅15 SPMX-20240815304417 \N \N \N 1 \N [{"file_id": "93aab61b-c9e2-45e1-a4b5-7217143d74d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b92e89424341309881313fe906f160.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b92e89424341309881313fe906f160.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b92e89424341309881313fe906f160.jpg", "file_size": 19085, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#绿色XL-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b92e89424341309881313fe906f160.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b92e89424341309881313fe906f160.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b92e89424341309881313fe906f160.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b92e89424341309881313fe906f160.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b92e89424341309881313fe906f160.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXOKSkPK4xtiXIz4rhFaSBz00vM=", "createTime": "2024-08-15 14:48:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.528616+00 2025-12-09 10:15:02.52862+00 9260 HT0101-A2#RC23 SPMX-20240815304427 \N \N \N 1 \N [{"file_id": "de178cac-7b05-4d44-9182-fc065499cd93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02deb9d952af4817a3833d1598ac9fe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02deb9d952af4817a3833d1598ac9fe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02deb9d952af4817a3833d1598ac9fe7.jpg", "file_size": 84014, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02deb9d952af4817a3833d1598ac9fe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02deb9d952af4817a3833d1598ac9fe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02deb9d952af4817a3833d1598ac9fe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02deb9d952af4817a3833d1598ac9fe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02deb9d952af4817a3833d1598ac9fe7.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2If0MwvOc_bTi0RBZkTOdF1D7A=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.530186+00 2025-12-09 10:15:02.53019+00 9261 C338FWF#蓝白色L SPMX-20240815304428 \N \N \N 1 \N [{"file_id": "03f1561e-4d73-4eb8-82aa-934f5fecfbd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120184439de7498a8619054e54309f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120184439de7498a8619054e54309f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120184439de7498a8619054e54309f42.jpg", "file_size": 20607, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120184439de7498a8619054e54309f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120184439de7498a8619054e54309f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120184439de7498a8619054e54309f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120184439de7498a8619054e54309f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120184439de7498a8619054e54309f42.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-cnzhrYEjxQ-YtXon6DyX3IJys=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.531736+00 2025-12-09 10:15:02.531741+00 9262 LZ1248#上身1号色 SPMX-20240815304431 \N \N \N 1 \N [{"file_id": "bf8fa1e8-f2c1-4169-a194-b74eb4fb80c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abdb90e464ab49eb9b46ec8dacfde417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abdb90e464ab49eb9b46ec8dacfde417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abdb90e464ab49eb9b46ec8dacfde417.jpg", "file_size": 17686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1248#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdb90e464ab49eb9b46ec8dacfde417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdb90e464ab49eb9b46ec8dacfde417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdb90e464ab49eb9b46ec8dacfde417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abdb90e464ab49eb9b46ec8dacfde417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abdb90e464ab49eb9b46ec8dacfde417.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrQl2ZrxMKf-wfCuwZjwYqCldAI=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.533598+00 2025-12-09 10:15:02.533603+00 9263 JTSS096FW#VS-D3 SPMX-20240815304425 \N \N \N 1 \N [{"file_id": "1dea422b-ea4d-441f-8836-0f7cd2626c3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfa3016ee5b440d8c19eb2eddb36c89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfa3016ee5b440d8c19eb2eddb36c89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfa3016ee5b440d8c19eb2eddb36c89.jpg", "file_size": 11564, "is_delete": false, "file_type": 1, "original_file_name": "JTSS096FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfa3016ee5b440d8c19eb2eddb36c89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfa3016ee5b440d8c19eb2eddb36c89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfa3016ee5b440d8c19eb2eddb36c89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfa3016ee5b440d8c19eb2eddb36c89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfa3016ee5b440d8c19eb2eddb36c89.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2091EiUtp7r7A-vYEColPBFbi08=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.535261+00 2025-12-09 10:15:02.535265+00 9264 LJ7001#短裤套装上衣 SPMX-20240815304426 \N \N \N 1 \N [{"file_id": "84db962e-427f-41e7-86e2-3b75980d105b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5199374c8b474bad950b0454af3e9bec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5199374c8b474bad950b0454af3e9bec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5199374c8b474bad950b0454af3e9bec.jpg", "file_size": 14163, "is_delete": false, "file_type": 1, "original_file_name": "LJ7001#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5199374c8b474bad950b0454af3e9bec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5199374c8b474bad950b0454af3e9bec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5199374c8b474bad950b0454af3e9bec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5199374c8b474bad950b0454af3e9bec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5199374c8b474bad950b0454af3e9bec.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPvG8Roe0DWlZPPxsqYEnukIRvM=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.536876+00 2025-12-09 10:15:02.536881+00 9265 DL30450#短款下摆姜黄 SPMX-20240815304424 \N \N \N 1 \N [{"file_id": "010d122a-90e6-41f3-a668-0f3dfc2fb920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a386e43534a4b89831677f5b6c33295.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a386e43534a4b89831677f5b6c33295.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a386e43534a4b89831677f5b6c33295.jpg", "file_size": 17938, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款下摆姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a386e43534a4b89831677f5b6c33295.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a386e43534a4b89831677f5b6c33295.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a386e43534a4b89831677f5b6c33295.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a386e43534a4b89831677f5b6c33295.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a386e43534a4b89831677f5b6c33295.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ux4Tl991jFc49PJ_OKM4WewcHhA=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.53872+00 2025-12-09 10:15:02.538724+00 9266 80332#前幅 SPMX-20240815304423 \N \N \N 1 \N [{"file_id": "391f5478-3d3e-4ddc-8b53-e760a31e4a66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcfc45cd2e7c460695c1afe3f5317ec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcfc45cd2e7c460695c1afe3f5317ec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcfc45cd2e7c460695c1afe3f5317ec0.jpg", "file_size": 21130, "is_delete": false, "file_type": 1, "original_file_name": "80332#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfc45cd2e7c460695c1afe3f5317ec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfc45cd2e7c460695c1afe3f5317ec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfc45cd2e7c460695c1afe3f5317ec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcfc45cd2e7c460695c1afe3f5317ec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcfc45cd2e7c460695c1afe3f5317ec0.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVlqbSaP0lJvre5Rl4ZADyPxN_I=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.540341+00 2025-12-09 10:15:02.540345+00 9267 80332#后幅 SPMX-20240815304436 \N \N \N 1 \N [{"file_id": "ca3e4cd4-7228-4d61-bbbd-d91f7bfbcd3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eccb9475c1474978a10197e7d00eb57b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eccb9475c1474978a10197e7d00eb57b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eccb9475c1474978a10197e7d00eb57b.jpg", "file_size": 19536, "is_delete": false, "file_type": 1, "original_file_name": "80332#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccb9475c1474978a10197e7d00eb57b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccb9475c1474978a10197e7d00eb57b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccb9475c1474978a10197e7d00eb57b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eccb9475c1474978a10197e7d00eb57b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eccb9475c1474978a10197e7d00eb57b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UuL4--nNHIrUVKrSJ2r3D0HfuFw=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.541952+00 2025-12-09 10:15:02.541956+00 9268 1078-2#土黄色 SPMX-20240815304429 \N \N \N 1 \N [{"file_id": "263dbf92-bffa-4960-b990-fa35f8cf06e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f79354740f1342879fc6dae001cac7ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f79354740f1342879fc6dae001cac7ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f79354740f1342879fc6dae001cac7ad.jpg", "file_size": 20188, "is_delete": false, "file_type": 1, "original_file_name": "1078-2#土黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79354740f1342879fc6dae001cac7ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79354740f1342879fc6dae001cac7ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f79354740f1342879fc6dae001cac7ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f79354740f1342879fc6dae001cac7ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f79354740f1342879fc6dae001cac7ad.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wmbmntjaLBO2M4JdYrgXtHGWZM=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.543791+00 2025-12-09 10:15:02.543796+00 9269 0003-428#WJC22 SPMX-20240815304433 \N \N \N 1 \N [{"file_id": "e8fa4d29-ce5f-4a60-928d-859a5c0588f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b44a6d532bbb4c0d8d025673157c90c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b44a6d532bbb4c0d8d025673157c90c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b44a6d532bbb4c0d8d025673157c90c2.jpg", "file_size": 20555, "is_delete": false, "file_type": 1, "original_file_name": "0003-428#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44a6d532bbb4c0d8d025673157c90c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44a6d532bbb4c0d8d025673157c90c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44a6d532bbb4c0d8d025673157c90c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b44a6d532bbb4c0d8d025673157c90c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b44a6d532bbb4c0d8d025673157c90c2.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9YPeP-GV1y4vptri1NZ5C5daIY=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.545574+00 2025-12-09 10:15:02.545578+00 9270 23-2114#A3-领子3XL SPMX-20240815304432 \N \N \N 1 \N [{"file_id": "ff0493f5-f83f-4028-a83f-b88951326cc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ba91c31c12e4145a8e67cd824e776a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ba91c31c12e4145a8e67cd824e776a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ba91c31c12e4145a8e67cd824e776a5.jpg", "file_size": 12880, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba91c31c12e4145a8e67cd824e776a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba91c31c12e4145a8e67cd824e776a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba91c31c12e4145a8e67cd824e776a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ba91c31c12e4145a8e67cd824e776a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ba91c31c12e4145a8e67cd824e776a5.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IF9_aAKzAYr-foi2wGdJL5K-M10=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.547184+00 2025-12-09 10:15:02.547189+00 9271 FHXGPK-122-4 SPMX-20240815304430 \N \N \N 1 \N [{"file_id": "8fdcf3b2-b554-4f47-b131-dbb8825ad263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b776e8b9d8f404eb344db49b217c2f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b776e8b9d8f404eb344db49b217c2f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b776e8b9d8f404eb344db49b217c2f9.jpg", "file_size": 29572, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-122-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776e8b9d8f404eb344db49b217c2f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776e8b9d8f404eb344db49b217c2f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b776e8b9d8f404eb344db49b217c2f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b776e8b9d8f404eb344db49b217c2f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b776e8b9d8f404eb344db49b217c2f9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:St_CgfsgHJtmMtTFUcPPlS0IAUo=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.548795+00 2025-12-09 10:15:02.5488+00 9272 JTSS097FW#VS-D3 SPMX-20240815304435 \N \N \N 1 \N [{"file_id": "d02589d4-250f-4af4-8f81-c0c361abf5f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5db4c77b646c42309ebb2a00c438e156.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5db4c77b646c42309ebb2a00c438e156.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5db4c77b646c42309ebb2a00c438e156.jpg", "file_size": 30921, "is_delete": false, "file_type": 1, "original_file_name": "JTSS097FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db4c77b646c42309ebb2a00c438e156.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db4c77b646c42309ebb2a00c438e156.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db4c77b646c42309ebb2a00c438e156.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5db4c77b646c42309ebb2a00c438e156.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5db4c77b646c42309ebb2a00c438e156.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EM7fO97jXnA8H_VM4cM28KuFFlo=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.550719+00 2025-12-09 10:15:02.550724+00 9273 DL30450#短款下摆彩兰 SPMX-20240815304434 \N \N \N 1 \N [{"file_id": "fb8f6325-85de-40fe-89f0-e2e4cb93357c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddc97cab379e43ea9e510733102e08e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddc97cab379e43ea9e510733102e08e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddc97cab379e43ea9e510733102e08e9.jpg", "file_size": 17646, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc97cab379e43ea9e510733102e08e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc97cab379e43ea9e510733102e08e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc97cab379e43ea9e510733102e08e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddc97cab379e43ea9e510733102e08e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddc97cab379e43ea9e510733102e08e9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZ4Ee3OeiChmupwWLHbQaA68UIk=", "createTime": "2024-08-15 14:48:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.552318+00 2025-12-09 10:15:02.552323+00 9274 LZ1248#上身2号色 SPMX-20240815304443 \N \N \N 1 \N [{"file_id": "e36058af-40c6-464c-949d-1ec5e8bf0790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d26b64b8c7ee4d1a8b4e103cf574268c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d26b64b8c7ee4d1a8b4e103cf574268c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d26b64b8c7ee4d1a8b4e103cf574268c.jpg", "file_size": 19765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1248#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26b64b8c7ee4d1a8b4e103cf574268c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26b64b8c7ee4d1a8b4e103cf574268c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26b64b8c7ee4d1a8b4e103cf574268c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d26b64b8c7ee4d1a8b4e103cf574268c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d26b64b8c7ee4d1a8b4e103cf574268c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RpXIxR0H7l7wEbiWZGkpBmsn8LE=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.553912+00 2025-12-09 10:15:02.553916+00 9275 1078-2#浅蓝色 SPMX-20240815304440 \N \N \N 1 \N [{"file_id": "9aa4b792-18e0-4612-a980-b7111d05e689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a469334a5ed45a49f5318e3963a2c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a469334a5ed45a49f5318e3963a2c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a469334a5ed45a49f5318e3963a2c8e.jpg", "file_size": 21241, "is_delete": false, "file_type": 1, "original_file_name": "1078-2#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a469334a5ed45a49f5318e3963a2c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a469334a5ed45a49f5318e3963a2c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a469334a5ed45a49f5318e3963a2c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a469334a5ed45a49f5318e3963a2c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a469334a5ed45a49f5318e3963a2c8e.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RiqUX19U5oYwcQVPHTnLyhKhmKg=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.555764+00 2025-12-09 10:15:02.555769+00 9276 23-2114#A3-领子4XL SPMX-20240815304442 \N \N \N 1 \N [{"file_id": "e80ef78b-a090-4956-afeb-a476ee5f7f1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38833f6050fc4624be0b6bbd6146fb69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38833f6050fc4624be0b6bbd6146fb69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38833f6050fc4624be0b6bbd6146fb69.jpg", "file_size": 12921, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38833f6050fc4624be0b6bbd6146fb69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38833f6050fc4624be0b6bbd6146fb69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38833f6050fc4624be0b6bbd6146fb69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38833f6050fc4624be0b6bbd6146fb69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38833f6050fc4624be0b6bbd6146fb69.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y11U1JbjDrf25Wwy2FsHBjfTEMs=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.557363+00 2025-12-09 10:15:02.557368+00 9277 HT0101-A3#粉色 SPMX-20240815304437 \N \N \N 1 \N [{"file_id": "0f55f41d-532c-41c1-830a-6935a4295ff2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bf86188b80f42c9a019d4bb4c78ae79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bf86188b80f42c9a019d4bb4c78ae79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bf86188b80f42c9a019d4bb4c78ae79.jpg", "file_size": 74284, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A3#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf86188b80f42c9a019d4bb4c78ae79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf86188b80f42c9a019d4bb4c78ae79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf86188b80f42c9a019d4bb4c78ae79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bf86188b80f42c9a019d4bb4c78ae79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bf86188b80f42c9a019d4bb4c78ae79.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKMX7bfE1oPSWHawbSSVfpMvYFk=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.558977+00 2025-12-09 10:15:02.558982+00 9278 LJ7001#短裤套装袖子 SPMX-20240815304438 \N \N \N 1 \N [{"file_id": "22a18b1c-5e1a-4b82-815d-4136a5ab01ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0741134331ba4e62b0afaa2af7a170fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0741134331ba4e62b0afaa2af7a170fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0741134331ba4e62b0afaa2af7a170fa.jpg", "file_size": 6912, "is_delete": false, "file_type": 1, "original_file_name": "LJ7001#短裤套装袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741134331ba4e62b0afaa2af7a170fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741134331ba4e62b0afaa2af7a170fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0741134331ba4e62b0afaa2af7a170fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0741134331ba4e62b0afaa2af7a170fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0741134331ba4e62b0afaa2af7a170fa.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNCk_BJ6lxCWAMwG1DJMLen3FaY=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.560918+00 2025-12-09 10:15:02.560923+00 9279 C338FWF#蓝白色M SPMX-20240815304441 \N \N \N 1 \N [{"file_id": "09e17674-19c5-440a-b195-7b6eed9e773f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d70dae3378a4ef8b24989deb04005b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d70dae3378a4ef8b24989deb04005b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d70dae3378a4ef8b24989deb04005b6.jpg", "file_size": 21762, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d70dae3378a4ef8b24989deb04005b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d70dae3378a4ef8b24989deb04005b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d70dae3378a4ef8b24989deb04005b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d70dae3378a4ef8b24989deb04005b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d70dae3378a4ef8b24989deb04005b6.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YVuglOCQE8MjlGnckQLz1an900=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.562727+00 2025-12-09 10:15:02.562731+00 9280 FHXGPK-122-5 SPMX-20240815304439 \N \N \N 1 \N [{"file_id": "88cd2526-03b4-4e18-bb25-987343c92dc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdccc96654074a23a4aef775892a21e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdccc96654074a23a4aef775892a21e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdccc96654074a23a4aef775892a21e9.jpg", "file_size": 30564, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-122-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdccc96654074a23a4aef775892a21e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdccc96654074a23a4aef775892a21e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdccc96654074a23a4aef775892a21e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdccc96654074a23a4aef775892a21e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdccc96654074a23a4aef775892a21e9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5Sn6npGG2PHT6h-gUMX64Y0MwU=", "createTime": "2024-08-15 14:48:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.564298+00 2025-12-09 10:15:02.564303+00 9281 0003-429#WJC22 SPMX-20240815304444 \N \N \N 1 \N [{"file_id": "6f4a9ab8-9431-4176-80f8-88d3d862acd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7870d033d16c454d9ea9ed2b97367037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7870d033d16c454d9ea9ed2b97367037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7870d033d16c454d9ea9ed2b97367037.jpg", "file_size": 24469, "is_delete": false, "file_type": 1, "original_file_name": "0003-429#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7870d033d16c454d9ea9ed2b97367037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7870d033d16c454d9ea9ed2b97367037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7870d033d16c454d9ea9ed2b97367037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7870d033d16c454d9ea9ed2b97367037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7870d033d16c454d9ea9ed2b97367037.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TaYriyaaIJCS0s2lytvZTviirps=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.565876+00 2025-12-09 10:15:02.56588+00 9282 80333#前幅 SPMX-20240815304445 \N \N \N 1 \N [{"file_id": "c7a18f4d-69e0-40dd-9cc7-ba8d949b0174", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04b7a4e63a084a30b54584b25a7be863.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04b7a4e63a084a30b54584b25a7be863.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04b7a4e63a084a30b54584b25a7be863.jpg", "file_size": 21442, "is_delete": false, "file_type": 1, "original_file_name": "80333#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b7a4e63a084a30b54584b25a7be863.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b7a4e63a084a30b54584b25a7be863.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b7a4e63a084a30b54584b25a7be863.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04b7a4e63a084a30b54584b25a7be863.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04b7a4e63a084a30b54584b25a7be863.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:an7WPsKt_SLOKbx39Fu-Mxg0KPc=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.574129+00 2025-12-09 10:15:02.574134+00 9287 1078-2#粉色 SPMX-20240815304458 \N \N \N 1 \N [{"file_id": "e0a99cda-3979-4a8d-bd74-be134c2c8686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "647cc5e93adc4c0397a2fb633f40d8c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "647cc5e93adc4c0397a2fb633f40d8c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "647cc5e93adc4c0397a2fb633f40d8c5.jpg", "file_size": 20354, "is_delete": false, "file_type": 1, "original_file_name": "1078-2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647cc5e93adc4c0397a2fb633f40d8c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647cc5e93adc4c0397a2fb633f40d8c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647cc5e93adc4c0397a2fb633f40d8c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/647cc5e93adc4c0397a2fb633f40d8c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/647cc5e93adc4c0397a2fb633f40d8c5.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qct8Wb2JJ5R7hsjWSvosfZ0pK9k=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.567453+00 2025-12-09 10:15:02.567457+00 9283 DL30450#短款下摆蓝绿 SPMX-20240815304446 \N \N \N 1 \N [{"file_id": "24b84164-cfca-411e-a0b4-2fc980ba5387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba9c6069e6b24cb19edca6793c050aec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba9c6069e6b24cb19edca6793c050aec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba9c6069e6b24cb19edca6793c050aec.jpg", "file_size": 17687, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款下摆蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9c6069e6b24cb19edca6793c050aec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9c6069e6b24cb19edca6793c050aec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9c6069e6b24cb19edca6793c050aec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba9c6069e6b24cb19edca6793c050aec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba9c6069e6b24cb19edca6793c050aec.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91TEpPgqmHlJKRoP_ie6nUpvTiA=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.569057+00 2025-12-09 10:15:02.569062+00 9284 1078-2#白色 SPMX-20240815304447 \N \N \N 1 \N [{"file_id": "05ed1e25-f5dd-4cea-bf6c-ebadbaaf0eed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "336fdf173738449ea54a7cbcdd89b668.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "336fdf173738449ea54a7cbcdd89b668.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "336fdf173738449ea54a7cbcdd89b668.jpg", "file_size": 22429, "is_delete": false, "file_type": 1, "original_file_name": "1078-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336fdf173738449ea54a7cbcdd89b668.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336fdf173738449ea54a7cbcdd89b668.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336fdf173738449ea54a7cbcdd89b668.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/336fdf173738449ea54a7cbcdd89b668.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/336fdf173738449ea54a7cbcdd89b668.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hM6juvEmBjFY2kuitgcUg4YPyg=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.57092+00 2025-12-09 10:15:02.570925+00 9285 JTSS098FW#VS-D3 SPMX-20240815304448 \N \N \N 1 \N [{"file_id": "a4af0fcf-2cf7-46b7-8566-775ceb4923ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abc1f8689a8b4f63a76d4805c3bf7dba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abc1f8689a8b4f63a76d4805c3bf7dba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abc1f8689a8b4f63a76d4805c3bf7dba.jpg", "file_size": 22478, "is_delete": false, "file_type": 1, "original_file_name": "JTSS098FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc1f8689a8b4f63a76d4805c3bf7dba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc1f8689a8b4f63a76d4805c3bf7dba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc1f8689a8b4f63a76d4805c3bf7dba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abc1f8689a8b4f63a76d4805c3bf7dba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abc1f8689a8b4f63a76d4805c3bf7dba.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nd0SX-BTVwrT3rqL2BWc3x9UrTk=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.572528+00 2025-12-09 10:15:02.572532+00 9286 C338FWF#蓝白色S SPMX-20240815304453 \N \N \N 1 \N [{"file_id": "babda847-08f0-4c66-8a32-0c04634319ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdcf1571e0bf4103b55407b1ca889423.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdcf1571e0bf4103b55407b1ca889423.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdcf1571e0bf4103b55407b1ca889423.jpg", "file_size": 21908, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝白色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcf1571e0bf4103b55407b1ca889423.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcf1571e0bf4103b55407b1ca889423.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcf1571e0bf4103b55407b1ca889423.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdcf1571e0bf4103b55407b1ca889423.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdcf1571e0bf4103b55407b1ca889423.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yeuEDna4EHqCkHiArq24BdhyYcY=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.57596+00 2025-12-09 10:15:02.575964+00 9288 JTSS099FW#VS-D3 SPMX-20240815304460 \N \N \N 1 \N [{"file_id": "5f06e56b-046d-40e9-9fd7-12d60e50b6bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b54294717114c29ba5093b5db631ce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b54294717114c29ba5093b5db631ce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b54294717114c29ba5093b5db631ce9.jpg", "file_size": 17928, "is_delete": false, "file_type": 1, "original_file_name": "JTSS099FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b54294717114c29ba5093b5db631ce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b54294717114c29ba5093b5db631ce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b54294717114c29ba5093b5db631ce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b54294717114c29ba5093b5db631ce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b54294717114c29ba5093b5db631ce9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XFTEr-NRCMua1rBeomZP5zhuLA=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.577604+00 2025-12-09 10:15:02.577608+00 9289 LZ1248#上身3号色 SPMX-20240815304449 \N \N \N 1 \N [{"file_id": "5b7d64ef-24f2-4ca8-b81b-88d5ba0e6588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dd5effa202e4f199238706b44a6a65f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dd5effa202e4f199238706b44a6a65f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dd5effa202e4f199238706b44a6a65f.jpg", "file_size": 19783, "is_delete": false, "file_type": 1, "original_file_name": "LZ1248#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd5effa202e4f199238706b44a6a65f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd5effa202e4f199238706b44a6a65f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd5effa202e4f199238706b44a6a65f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dd5effa202e4f199238706b44a6a65f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dd5effa202e4f199238706b44a6a65f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbPh0o9BgDrfu4HcWqLco08mCh4=", "createTime": "2024-08-15 14:48:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.579211+00 2025-12-09 10:15:02.579215+00 9290 C338FWF#蓝白色XL SPMX-20240815304464 \N \N \N 1 \N [{"file_id": "aaae49b4-5a45-48a0-b3e5-734bc6d8d591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3331bcc954347029b12780d9c80af5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3331bcc954347029b12780d9c80af5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3331bcc954347029b12780d9c80af5f.jpg", "file_size": 20124, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3331bcc954347029b12780d9c80af5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3331bcc954347029b12780d9c80af5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3331bcc954347029b12780d9c80af5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3331bcc954347029b12780d9c80af5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3331bcc954347029b12780d9c80af5f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZPa_67b1D0bEE6tfynAYbSP3RU=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.581047+00 2025-12-09 10:15:02.581052+00 9291 FHXGPK-批布001-1 SPMX-20240815304450 \N \N \N 1 \N [{"file_id": "68c5c286-9e6c-468e-b4bc-620b056d1d31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4205ca9cf97c465c8eea25003e1d9079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4205ca9cf97c465c8eea25003e1d9079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4205ca9cf97c465c8eea25003e1d9079.jpg", "file_size": 65522, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4205ca9cf97c465c8eea25003e1d9079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4205ca9cf97c465c8eea25003e1d9079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4205ca9cf97c465c8eea25003e1d9079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4205ca9cf97c465c8eea25003e1d9079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4205ca9cf97c465c8eea25003e1d9079.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-i-IODSEyplYqPirb3Ftc3hPArs=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.582628+00 2025-12-09 10:15:02.582631+00 9292 80333#后幅 SPMX-20240815304456 \N \N \N 1 \N [{"file_id": "fa807f68-91ae-444e-b164-31c16821e199", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c745eea337404b5480513ce40f8fa61c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c745eea337404b5480513ce40f8fa61c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c745eea337404b5480513ce40f8fa61c.jpg", "file_size": 19539, "is_delete": false, "file_type": 1, "original_file_name": "80333#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c745eea337404b5480513ce40f8fa61c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c745eea337404b5480513ce40f8fa61c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c745eea337404b5480513ce40f8fa61c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c745eea337404b5480513ce40f8fa61c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c745eea337404b5480513ce40f8fa61c.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXOXENWj8TeyyzKQhs135dJD3vI=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.584236+00 2025-12-09 10:15:02.584241+00 9293 LZ1248#上身4号色 SPMX-20240815304459 \N \N \N 1 \N [{"file_id": "fb347237-60e3-4c38-b6e4-61563b160ccd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a1c6609f4b24f15a09e59e58c8c83a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a1c6609f4b24f15a09e59e58c8c83a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a1c6609f4b24f15a09e59e58c8c83a9.jpg", "file_size": 15857, "is_delete": false, "file_type": 1, "original_file_name": "LZ1248#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c6609f4b24f15a09e59e58c8c83a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c6609f4b24f15a09e59e58c8c83a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c6609f4b24f15a09e59e58c8c83a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a1c6609f4b24f15a09e59e58c8c83a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a1c6609f4b24f15a09e59e58c8c83a9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G6TB7fulnJOERjIlg1BuU4lMuM0=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.586038+00 2025-12-09 10:15:02.586042+00 9294 LJ7001-3#短裤套装裤子 SPMX-20240815304451 \N \N \N 1 \N [{"file_id": "bd73f1ff-40b1-4311-a6e1-05e19b3f80f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd47a6113d844639a44df2290c37f72f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd47a6113d844639a44df2290c37f72f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd47a6113d844639a44df2290c37f72f.jpg", "file_size": 23002, "is_delete": false, "file_type": 1, "original_file_name": "LJ7001-3#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd47a6113d844639a44df2290c37f72f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd47a6113d844639a44df2290c37f72f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd47a6113d844639a44df2290c37f72f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd47a6113d844639a44df2290c37f72f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd47a6113d844639a44df2290c37f72f.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fz6wq-MIAOhVTdaWaZInlaBbP8E=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.587638+00 2025-12-09 10:15:02.587643+00 9295 HT0101-A3#绿色 SPMX-20240815304454 \N \N \N 1 \N [{"file_id": "5316e59d-13ef-416c-bf50-7da4599ec37d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee130d806fac404ba15ce8faa9bf5f26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee130d806fac404ba15ce8faa9bf5f26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee130d806fac404ba15ce8faa9bf5f26.jpg", "file_size": 75275, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee130d806fac404ba15ce8faa9bf5f26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee130d806fac404ba15ce8faa9bf5f26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee130d806fac404ba15ce8faa9bf5f26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee130d806fac404ba15ce8faa9bf5f26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee130d806fac404ba15ce8faa9bf5f26.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7efDHv5ZCK5fD92X0bebgBDrky4=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.589215+00 2025-12-09 10:15:02.589219+00 9296 23-2114#A4-3XL SPMX-20240815304452 \N \N \N 1 \N [{"file_id": "3419643f-f065-4a6b-95ba-9f3d28d1500d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5e66a801e534c89b7814a1374dbc536.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5e66a801e534c89b7814a1374dbc536.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5e66a801e534c89b7814a1374dbc536.jpg", "file_size": 17376, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e66a801e534c89b7814a1374dbc536.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e66a801e534c89b7814a1374dbc536.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e66a801e534c89b7814a1374dbc536.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5e66a801e534c89b7814a1374dbc536.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5e66a801e534c89b7814a1374dbc536.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1ZZMbm6dM3rNdAlR0nvUP1wdbk=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.591043+00 2025-12-09 10:15:02.591047+00 9297 0003-42FWF#红色 SPMX-20240815304455 \N \N \N 1 \N [{"file_id": "ca85ee56-2ff4-43df-87f8-9f83c8def396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb70622edb2b49eebb4b39abc92af0e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb70622edb2b49eebb4b39abc92af0e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb70622edb2b49eebb4b39abc92af0e9.jpg", "file_size": 17811, "is_delete": false, "file_type": 1, "original_file_name": "0003-42FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb70622edb2b49eebb4b39abc92af0e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb70622edb2b49eebb4b39abc92af0e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb70622edb2b49eebb4b39abc92af0e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb70622edb2b49eebb4b39abc92af0e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb70622edb2b49eebb4b39abc92af0e9.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzi9I6ce1rzh29MSdSGqLPFG6dc=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.592625+00 2025-12-09 10:15:02.592629+00 9298 DL30450#短款前后幅原版2XL SPMX-20240815304457 \N \N \N 1 \N [{"file_id": "2cea4679-42eb-4865-8744-7c95f1a1444b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cb7c4cd1f96466cb60a9c18136e824b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cb7c4cd1f96466cb60a9c18136e824b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cb7c4cd1f96466cb60a9c18136e824b.jpg", "file_size": 21126, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅原版2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb7c4cd1f96466cb60a9c18136e824b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb7c4cd1f96466cb60a9c18136e824b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb7c4cd1f96466cb60a9c18136e824b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cb7c4cd1f96466cb60a9c18136e824b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cb7c4cd1f96466cb60a9c18136e824b.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cp70Zy5Zyupa6LppZadStDy0Tq0=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.594209+00 2025-12-09 10:15:02.594213+00 9299 FHXGPK-批布001-2 SPMX-20240815304461 \N \N \N 1 \N [{"file_id": "285bb996-41f7-4b2b-b073-657bb21e79ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3829c03ae1434aa1868335b0692f68eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3829c03ae1434aa1868335b0692f68eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3829c03ae1434aa1868335b0692f68eb.jpg", "file_size": 54469, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3829c03ae1434aa1868335b0692f68eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3829c03ae1434aa1868335b0692f68eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3829c03ae1434aa1868335b0692f68eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3829c03ae1434aa1868335b0692f68eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3829c03ae1434aa1868335b0692f68eb.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u9iOo1vOSIUdOg4yLQBJ0-2HeV8=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.596069+00 2025-12-09 10:15:02.596073+00 9300 23-2114#A4-4XL SPMX-20240815304463 \N \N \N 1 \N [{"file_id": "ad94bf73-a615-4207-9839-f8432b6d80c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf2f3087d19f4542b35e07ea681ffd25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf2f3087d19f4542b35e07ea681ffd25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf2f3087d19f4542b35e07ea681ffd25.jpg", "file_size": 16087, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2f3087d19f4542b35e07ea681ffd25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2f3087d19f4542b35e07ea681ffd25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2f3087d19f4542b35e07ea681ffd25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf2f3087d19f4542b35e07ea681ffd25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf2f3087d19f4542b35e07ea681ffd25.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xx922UDFaWqqA9sfK9gpq2-2rA4=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:02.597701+00 2025-12-09 10:15:02.597709+00 9301 LJ7002#短裤套装上衣 SPMX-20240815304462 \N \N \N 1 \N [{"file_id": "2fdeff21-a054-4b11-96ff-5ce8343f1a88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8d84013a8f04ca98353719aef30c085.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8d84013a8f04ca98353719aef30c085.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8d84013a8f04ca98353719aef30c085.jpg", "file_size": 15146, "is_delete": false, "file_type": 1, "original_file_name": "LJ7002#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d84013a8f04ca98353719aef30c085.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d84013a8f04ca98353719aef30c085.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d84013a8f04ca98353719aef30c085.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8d84013a8f04ca98353719aef30c085.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8d84013a8f04ca98353719aef30c085.jpg?e=1765361701&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Dpwf3f-z8ZhwbPrD9ih1gPr08w=", "createTime": "2024-08-15 14:48:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.316566+00 2025-12-09 10:15:03.316577+00 9302 0003-42FWF#蓝色 SPMX-20240815304465 \N \N \N 1 \N [{"file_id": "74e30bbf-9e18-4cc5-9c74-07c4f307a8f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "603a76fd106e4831a33174c59a4266f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "603a76fd106e4831a33174c59a4266f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "603a76fd106e4831a33174c59a4266f0.jpg", "file_size": 17856, "is_delete": false, "file_type": 1, "original_file_name": "0003-42FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603a76fd106e4831a33174c59a4266f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603a76fd106e4831a33174c59a4266f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603a76fd106e4831a33174c59a4266f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/603a76fd106e4831a33174c59a4266f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/603a76fd106e4831a33174c59a4266f0.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJyZhSJPdO23NexaToLCjjk_0X4=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.319175+00 2025-12-09 10:15:03.319181+00 9303 FHXGPK-批布001-3 SPMX-20240815304472 \N \N \N 1 \N [{"file_id": "049d72ba-6e4f-40f6-9fed-6c0b722be931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32fe5109d4c34bcfa4c82cebf762aee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32fe5109d4c34bcfa4c82cebf762aee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32fe5109d4c34bcfa4c82cebf762aee7.jpg", "file_size": 57407, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fe5109d4c34bcfa4c82cebf762aee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fe5109d4c34bcfa4c82cebf762aee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32fe5109d4c34bcfa4c82cebf762aee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32fe5109d4c34bcfa4c82cebf762aee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32fe5109d4c34bcfa4c82cebf762aee7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bx3l88dlRH8M1LhYz8DEKutzpdU=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.321267+00 2025-12-09 10:15:03.321273+00 9304 LZ1249#上身1号色 SPMX-20240815304470 \N \N \N 1 \N [{"file_id": "a6eb1fc1-ae99-499b-99f6-965009e55d3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25649ce8c5a642abb6bd9c95c9d1dfc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25649ce8c5a642abb6bd9c95c9d1dfc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25649ce8c5a642abb6bd9c95c9d1dfc2.jpg", "file_size": 19111, "is_delete": false, "file_type": 1, "original_file_name": "LZ1249#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25649ce8c5a642abb6bd9c95c9d1dfc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25649ce8c5a642abb6bd9c95c9d1dfc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25649ce8c5a642abb6bd9c95c9d1dfc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25649ce8c5a642abb6bd9c95c9d1dfc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25649ce8c5a642abb6bd9c95c9d1dfc2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vkfraaZXE5lMP8FVRdeqkFDvA0=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.323229+00 2025-12-09 10:15:03.323235+00 9305 C338FWF#蓝白色净色 SPMX-20240815304474 \N \N \N 1 \N [{"file_id": "eeb2473d-7f0a-48f8-b72c-0c18f0c80167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b16e084e15149be84eb4094fdf6d089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b16e084e15149be84eb4094fdf6d089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b16e084e15149be84eb4094fdf6d089.jpg", "file_size": 7039, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝白色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16e084e15149be84eb4094fdf6d089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16e084e15149be84eb4094fdf6d089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b16e084e15149be84eb4094fdf6d089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b16e084e15149be84eb4094fdf6d089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b16e084e15149be84eb4094fdf6d089.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDgO0U9IZPWp_FsmmHSssLlrf54=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.325052+00 2025-12-09 10:15:03.325058+00 9306 1079#LWQ15 SPMX-20240815304469 \N \N \N 1 \N [{"file_id": "f6e03ebe-90f3-4502-a6f3-e7fdebcabd0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "defa4e91e6fa44ffa279913f275599e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "defa4e91e6fa44ffa279913f275599e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "defa4e91e6fa44ffa279913f275599e8.jpg", "file_size": 51889, "is_delete": false, "file_type": 1, "original_file_name": "1079#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defa4e91e6fa44ffa279913f275599e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defa4e91e6fa44ffa279913f275599e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defa4e91e6fa44ffa279913f275599e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/defa4e91e6fa44ffa279913f275599e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/defa4e91e6fa44ffa279913f275599e8.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcVtTCD1_fhN7AWjfxGUKJsI89Q=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.326832+00 2025-12-09 10:15:03.326837+00 9307 80334#前幅 SPMX-20240815304466 \N \N \N 1 \N [{"file_id": "4481c433-e858-42fc-80de-b1a2f0fcf5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bfb408d7231455e93558e39fab81830.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bfb408d7231455e93558e39fab81830.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bfb408d7231455e93558e39fab81830.jpg", "file_size": 15299, "is_delete": false, "file_type": 1, "original_file_name": "80334#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfb408d7231455e93558e39fab81830.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfb408d7231455e93558e39fab81830.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfb408d7231455e93558e39fab81830.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bfb408d7231455e93558e39fab81830.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bfb408d7231455e93558e39fab81830.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rALf4549iSwZfLzsuaPPsJR058=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.32892+00 2025-12-09 10:15:03.328925+00 9308 80334#后幅 SPMX-20240815304477 \N \N \N 1 \N [{"file_id": "562a9252-8747-40bf-81ed-f13eedaae310", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae80e59b0d9498f8dcd3ffc320ede68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae80e59b0d9498f8dcd3ffc320ede68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae80e59b0d9498f8dcd3ffc320ede68.jpg", "file_size": 14026, "is_delete": false, "file_type": 1, "original_file_name": "80334#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae80e59b0d9498f8dcd3ffc320ede68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae80e59b0d9498f8dcd3ffc320ede68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae80e59b0d9498f8dcd3ffc320ede68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae80e59b0d9498f8dcd3ffc320ede68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae80e59b0d9498f8dcd3ffc320ede68.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYIbCx74kEmEp3CnS46y3iIoEIU=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.331184+00 2025-12-09 10:15:03.331189+00 9309 DL30450#短款前后幅原版L SPMX-20240815304467 \N \N \N 1 \N [{"file_id": "99b86ec4-f863-4401-b1ad-8f0501b8f4e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78710dc2500a40da871ef80b1589cd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78710dc2500a40da871ef80b1589cd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78710dc2500a40da871ef80b1589cd38.jpg", "file_size": 20847, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅原版L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78710dc2500a40da871ef80b1589cd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78710dc2500a40da871ef80b1589cd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78710dc2500a40da871ef80b1589cd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78710dc2500a40da871ef80b1589cd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78710dc2500a40da871ef80b1589cd38.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ir1VvIoEPEbcLu1COjInMjKlsFo=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.332982+00 2025-12-09 10:15:03.332987+00 9310 JTSS100FW#VS-D3 SPMX-20240815304471 \N \N \N 1 \N [{"file_id": "0c331d0f-c5e3-4696-ad36-a7505c0d68d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "275fd938b2bc49ec8c49021b770c77fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "275fd938b2bc49ec8c49021b770c77fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "275fd938b2bc49ec8c49021b770c77fa.jpg", "file_size": 8387, "is_delete": false, "file_type": 1, "original_file_name": "JTSS100FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fd938b2bc49ec8c49021b770c77fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fd938b2bc49ec8c49021b770c77fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/275fd938b2bc49ec8c49021b770c77fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/275fd938b2bc49ec8c49021b770c77fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/275fd938b2bc49ec8c49021b770c77fa.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XzXNwFZFb7Zb0800lPEQUCzRU-k=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.335062+00 2025-12-09 10:15:03.335067+00 9311 LJ7002#短裤套装袖子 SPMX-20240815304475 \N \N \N 1 \N [{"file_id": "533eac5d-a3a9-4cca-aeec-69abd9fe553c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c2d82223b96410db8f5cc63bb225802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c2d82223b96410db8f5cc63bb225802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c2d82223b96410db8f5cc63bb225802.jpg", "file_size": 7276, "is_delete": false, "file_type": 1, "original_file_name": "LJ7002#短裤套装袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2d82223b96410db8f5cc63bb225802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2d82223b96410db8f5cc63bb225802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2d82223b96410db8f5cc63bb225802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c2d82223b96410db8f5cc63bb225802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c2d82223b96410db8f5cc63bb225802.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jam3ih6WMUV7UfcUKqtpmMitP5g=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.337072+00 2025-12-09 10:15:03.337077+00 9312 0003-430#WJC22 SPMX-20240815304476 \N \N \N 1 \N [{"file_id": "134e0133-92ac-402f-b01f-d93a13d8d99d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a8322447994e38b9333b986a18f8eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a8322447994e38b9333b986a18f8eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a8322447994e38b9333b986a18f8eb.jpg", "file_size": 20895, "is_delete": false, "file_type": 1, "original_file_name": "0003-430#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a8322447994e38b9333b986a18f8eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a8322447994e38b9333b986a18f8eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a8322447994e38b9333b986a18f8eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a8322447994e38b9333b986a18f8eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a8322447994e38b9333b986a18f8eb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Kpm8RQVZrwuMDeqz_RBGsO8408=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.338882+00 2025-12-09 10:15:03.338887+00 9313 DL30450#短款前后幅原版XL SPMX-20240815304478 \N \N \N 1 \N [{"file_id": "e1327643-4eea-4762-83e2-f0a2b8d95de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcd73855bf86429a992f416b96f2ed05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcd73855bf86429a992f416b96f2ed05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcd73855bf86429a992f416b96f2ed05.jpg", "file_size": 20809, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅原版XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcd73855bf86429a992f416b96f2ed05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcd73855bf86429a992f416b96f2ed05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcd73855bf86429a992f416b96f2ed05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcd73855bf86429a992f416b96f2ed05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcd73855bf86429a992f416b96f2ed05.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:syXzTukdbUQa9gOlLiXN0VeQchg=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.340994+00 2025-12-09 10:15:03.340999+00 9314 HT0101-A37#粉色 SPMX-20240815304479 \N \N \N 1 \N [{"file_id": "d2c13354-cd12-4e95-a6f3-ad5d8eec83a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b63a3e163434406bb6bc626f57034e82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b63a3e163434406bb6bc626f57034e82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b63a3e163434406bb6bc626f57034e82.jpg", "file_size": 17233, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A37#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63a3e163434406bb6bc626f57034e82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63a3e163434406bb6bc626f57034e82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63a3e163434406bb6bc626f57034e82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b63a3e163434406bb6bc626f57034e82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b63a3e163434406bb6bc626f57034e82.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AF-UsUryi4IRCD-18CLwi7pLSA=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.342989+00 2025-12-09 10:15:03.342994+00 9315 1079#原版 SPMX-20240815304481 \N \N \N 1 \N [{"file_id": "8c40d11b-f1e6-4ddd-bf86-25f626a3c791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "492b958ee98a458a862755869b8a1a42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "492b958ee98a458a862755869b8a1a42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "492b958ee98a458a862755869b8a1a42.jpg", "file_size": 14850, "is_delete": false, "file_type": 1, "original_file_name": "1079#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b958ee98a458a862755869b8a1a42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b958ee98a458a862755869b8a1a42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b958ee98a458a862755869b8a1a42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/492b958ee98a458a862755869b8a1a42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/492b958ee98a458a862755869b8a1a42.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZYMNJue6Pk1Dh8u8mTY1M4tY9k=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.345015+00 2025-12-09 10:15:03.34502+00 9316 LZ1249#上身2号色 SPMX-20240815304480 \N \N \N 1 \N [{"file_id": "70fe8247-6388-42cb-9c14-b05ebbf960b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bdede1ba66f453b877d8da00411038e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bdede1ba66f453b877d8da00411038e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bdede1ba66f453b877d8da00411038e.jpg", "file_size": 18749, "is_delete": false, "file_type": 1, "original_file_name": "LZ1249#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdede1ba66f453b877d8da00411038e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdede1ba66f453b877d8da00411038e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdede1ba66f453b877d8da00411038e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bdede1ba66f453b877d8da00411038e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bdede1ba66f453b877d8da00411038e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Se2Agpy5z4IUnplDec4p9_NVu7o=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.347127+00 2025-12-09 10:15:03.347132+00 9317 HT0101-A37#原版黄色 SPMX-20240815304468 \N \N \N 1 \N [{"file_id": "0745f522-ff61-419d-b46b-c4a8618ac9e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5edba3c7d5a042eeaf86e8d904d73073.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5edba3c7d5a042eeaf86e8d904d73073.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5edba3c7d5a042eeaf86e8d904d73073.jpg", "file_size": 17859, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A37#原版黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edba3c7d5a042eeaf86e8d904d73073.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edba3c7d5a042eeaf86e8d904d73073.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edba3c7d5a042eeaf86e8d904d73073.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5edba3c7d5a042eeaf86e8d904d73073.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5edba3c7d5a042eeaf86e8d904d73073.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4D753SmMfzplknC0NwUZNpWqXI=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.349128+00 2025-12-09 10:15:03.349133+00 9318 23-2114#A4-领子3XL SPMX-20240815304473 \N \N \N 1 \N [{"file_id": "ca974b35-0286-401f-a5e1-d5a14c3701af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1045787126b6476094971c59b788d861.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1045787126b6476094971c59b788d861.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1045787126b6476094971c59b788d861.jpg", "file_size": 12106, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1045787126b6476094971c59b788d861.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1045787126b6476094971c59b788d861.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1045787126b6476094971c59b788d861.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1045787126b6476094971c59b788d861.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1045787126b6476094971c59b788d861.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E9tzziFRVBOTE7R03FgUpMx5lYU=", "createTime": "2024-08-15 14:48:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.3509+00 2025-12-09 10:15:03.350905+00 9319 LJ7003#短裤套装上衣 SPMX-20240815304486 \N \N \N 1 \N [{"file_id": "b5b1b613-9f63-4e6e-9388-857cffc7f7f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52c2cb68ed944cb4ae4c44e73781447c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52c2cb68ed944cb4ae4c44e73781447c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52c2cb68ed944cb4ae4c44e73781447c.jpg", "file_size": 14425, "is_delete": false, "file_type": 1, "original_file_name": "LJ7003#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c2cb68ed944cb4ae4c44e73781447c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c2cb68ed944cb4ae4c44e73781447c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c2cb68ed944cb4ae4c44e73781447c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52c2cb68ed944cb4ae4c44e73781447c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52c2cb68ed944cb4ae4c44e73781447c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d4phf6JKDIM0rxttfe5vTNm4xMI=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.352968+00 2025-12-09 10:15:03.352976+00 9320 FHXGPK-批布002-1 SPMX-20240815304487 \N \N \N 1 \N [{"file_id": "b71e2b58-af59-4790-9e33-117879d25beb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "018a2201b798432abbc8fca721fc1d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "018a2201b798432abbc8fca721fc1d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "018a2201b798432abbc8fca721fc1d50.jpg", "file_size": 34066, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018a2201b798432abbc8fca721fc1d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018a2201b798432abbc8fca721fc1d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018a2201b798432abbc8fca721fc1d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/018a2201b798432abbc8fca721fc1d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/018a2201b798432abbc8fca721fc1d50.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHeFdCFZqHsrTSkAfGwuGezOz9o=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.355042+00 2025-12-09 10:15:03.355047+00 9321 0003-431#样板色 SPMX-20240815304489 \N \N \N 1 \N [{"file_id": "9998f505-1a0f-455d-8d0c-6c919029f0ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48ab209ec0b24e73a769e2ff4863f79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48ab209ec0b24e73a769e2ff4863f79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48ab209ec0b24e73a769e2ff4863f79f.jpg", "file_size": 27020, "is_delete": false, "file_type": 1, "original_file_name": "0003-431#样板色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48ab209ec0b24e73a769e2ff4863f79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48ab209ec0b24e73a769e2ff4863f79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48ab209ec0b24e73a769e2ff4863f79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48ab209ec0b24e73a769e2ff4863f79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48ab209ec0b24e73a769e2ff4863f79f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0nIBt1x9BftQAIOmdQHGOpeSKc=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.356918+00 2025-12-09 10:15:03.356922+00 9322 DL30450#短款前后幅墨绿2XL SPMX-20240815304488 \N \N \N 1 \N [{"file_id": "11203abe-b846-40bf-9be2-89a401d73190", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8993f822ab7a4f919f8ed4c7fe5c234d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8993f822ab7a4f919f8ed4c7fe5c234d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8993f822ab7a4f919f8ed4c7fe5c234d.jpg", "file_size": 20675, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅墨绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8993f822ab7a4f919f8ed4c7fe5c234d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8993f822ab7a4f919f8ed4c7fe5c234d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8993f822ab7a4f919f8ed4c7fe5c234d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8993f822ab7a4f919f8ed4c7fe5c234d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8993f822ab7a4f919f8ed4c7fe5c234d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oHaD1gMWRstOUShyrZfkbvE3e_4=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.358776+00 2025-12-09 10:15:03.35878+00 9323 23-2114#A4-领子4XL SPMX-20240815304482 \N \N \N 1 \N [{"file_id": "c0cd726e-2f02-4494-9281-e1a0f26140e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d91bfb3dcd8b42989246766a14991a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d91bfb3dcd8b42989246766a14991a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d91bfb3dcd8b42989246766a14991a9b.jpg", "file_size": 12805, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91bfb3dcd8b42989246766a14991a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91bfb3dcd8b42989246766a14991a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91bfb3dcd8b42989246766a14991a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d91bfb3dcd8b42989246766a14991a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d91bfb3dcd8b42989246766a14991a9b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLaSRnhSIGGj6f_z8QzD3labNE4=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.360392+00 2025-12-09 10:15:03.360397+00 9324 LZ1249#上身3号色 SPMX-20240815304491 \N \N \N 1 \N [{"file_id": "23fa8566-531a-40c0-ab57-54b235a7fb55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d601c9a72b549da88d3b3254ece3fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d601c9a72b549da88d3b3254ece3fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d601c9a72b549da88d3b3254ece3fd9.jpg", "file_size": 18873, "is_delete": false, "file_type": 1, "original_file_name": "LZ1249#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d601c9a72b549da88d3b3254ece3fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d601c9a72b549da88d3b3254ece3fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d601c9a72b549da88d3b3254ece3fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d601c9a72b549da88d3b3254ece3fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d601c9a72b549da88d3b3254ece3fd9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vp9wY430XEjT01FRvr49V1OnNY8=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.36204+00 2025-12-09 10:15:03.362044+00 9325 JTSS101FW#VS-D3 SPMX-20240815304483 \N \N \N 1 \N [{"file_id": "c5f70ff8-ac42-4eae-845d-2103f7a38bb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c89099c4a5e241a0b2710a3333a08615.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c89099c4a5e241a0b2710a3333a08615.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c89099c4a5e241a0b2710a3333a08615.jpg", "file_size": 14877, "is_delete": false, "file_type": 1, "original_file_name": "JTSS101FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89099c4a5e241a0b2710a3333a08615.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89099c4a5e241a0b2710a3333a08615.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89099c4a5e241a0b2710a3333a08615.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c89099c4a5e241a0b2710a3333a08615.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c89099c4a5e241a0b2710a3333a08615.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9FuFv4Qvg47wHomIaIaHCauS4Y=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.36417+00 2025-12-09 10:15:03.364174+00 9326 HT0101-A37#紫色 SPMX-20240815304490 \N \N \N 1 \N [{"file_id": "5d2e303e-47eb-47d7-aff2-60c96c2b6baf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c4e6518197342509023b040ed58d2a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c4e6518197342509023b040ed58d2a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c4e6518197342509023b040ed58d2a8.jpg", "file_size": 16977, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A37#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c4e6518197342509023b040ed58d2a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c4e6518197342509023b040ed58d2a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c4e6518197342509023b040ed58d2a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c4e6518197342509023b040ed58d2a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c4e6518197342509023b040ed58d2a8.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjWm9RvxMrdr1Vmp2Uw-V4DX3jk=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.366068+00 2025-12-09 10:15:03.366072+00 9327 C338FWF#蓝色L SPMX-20240815304484 \N \N \N 1 \N [{"file_id": "53d8b6ee-adc7-45a5-89a0-b1d16e09eb8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8187ad4da544e42a474b031899e8cad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8187ad4da544e42a474b031899e8cad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8187ad4da544e42a474b031899e8cad.jpg", "file_size": 19952, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8187ad4da544e42a474b031899e8cad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8187ad4da544e42a474b031899e8cad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8187ad4da544e42a474b031899e8cad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8187ad4da544e42a474b031899e8cad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8187ad4da544e42a474b031899e8cad.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLJ0QwZDs-DMc5UYTH5nFu65pIY=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.368172+00 2025-12-09 10:15:03.368177+00 9328 23-2114#A5-3XL SPMX-20240815304493 \N \N \N 1 \N [{"file_id": "338e5f58-3b60-451e-babe-61b79ac193c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ea9fcdc960f41c8a033aa73c1166bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ea9fcdc960f41c8a033aa73c1166bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ea9fcdc960f41c8a033aa73c1166bd3.jpg", "file_size": 17111, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea9fcdc960f41c8a033aa73c1166bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea9fcdc960f41c8a033aa73c1166bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea9fcdc960f41c8a033aa73c1166bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ea9fcdc960f41c8a033aa73c1166bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ea9fcdc960f41c8a033aa73c1166bd3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvXfsJkT9LtgLHShK6i0kiZKp2o=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.370124+00 2025-12-09 10:15:03.370128+00 9329 1079#土黄 SPMX-20240815304492 \N \N \N 1 \N [{"file_id": "6c062a0b-edbe-4737-b5df-9ff4eae3fca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf2cc7d51915433981096c577cea4b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf2cc7d51915433981096c577cea4b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf2cc7d51915433981096c577cea4b9c.jpg", "file_size": 14553, "is_delete": false, "file_type": 1, "original_file_name": "1079#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf2cc7d51915433981096c577cea4b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf2cc7d51915433981096c577cea4b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf2cc7d51915433981096c577cea4b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf2cc7d51915433981096c577cea4b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf2cc7d51915433981096c577cea4b9c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9z5Lcyr7836G6Y75nCArBxWmhkQ=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.372243+00 2025-12-09 10:15:03.372247+00 9330 JTSS1022FW#VS-D3 SPMX-20240815304494 \N \N \N 1 \N [{"file_id": "e26270eb-cae3-44e9-a6e9-025bbf72e982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "348fda2583f442039a56dd9f06ca1e4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "348fda2583f442039a56dd9f06ca1e4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "348fda2583f442039a56dd9f06ca1e4c.jpg", "file_size": 13612, "is_delete": false, "file_type": 1, "original_file_name": "JTSS1022FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348fda2583f442039a56dd9f06ca1e4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348fda2583f442039a56dd9f06ca1e4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348fda2583f442039a56dd9f06ca1e4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/348fda2583f442039a56dd9f06ca1e4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/348fda2583f442039a56dd9f06ca1e4c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-L3Jnsddvc4-U5e4OkwmS78OKKU=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.374133+00 2025-12-09 10:15:03.374137+00 9331 C338FWF#蓝色M SPMX-20240815304495 \N \N \N 1 \N [{"file_id": "cb543afe-bb53-46c2-b1ef-0f21c27b2348", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "776828a622c847a2966fd4bebc1ce2ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "776828a622c847a2966fd4bebc1ce2ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "776828a622c847a2966fd4bebc1ce2ec.jpg", "file_size": 21054, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776828a622c847a2966fd4bebc1ce2ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776828a622c847a2966fd4bebc1ce2ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776828a622c847a2966fd4bebc1ce2ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/776828a622c847a2966fd4bebc1ce2ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/776828a622c847a2966fd4bebc1ce2ec.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gl1iSB6SmAMPW5dWbux3GXmeQwQ=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.376241+00 2025-12-09 10:15:03.376246+00 9332 80335#前幅 SPMX-20240815304485 \N \N \N 1 \N [{"file_id": "d106628c-8536-4f40-87af-bcea95371776", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35570eaa68b446768204bc8faae5c2cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35570eaa68b446768204bc8faae5c2cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35570eaa68b446768204bc8faae5c2cf.jpg", "file_size": 17061, "is_delete": false, "file_type": 1, "original_file_name": "80335#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35570eaa68b446768204bc8faae5c2cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35570eaa68b446768204bc8faae5c2cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35570eaa68b446768204bc8faae5c2cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35570eaa68b446768204bc8faae5c2cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35570eaa68b446768204bc8faae5c2cf.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSNdEM7vQDxuuTZfChJ3RhJ9gKw=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.378115+00 2025-12-09 10:15:03.37812+00 9333 1079#白色 SPMX-20240815304504 \N \N \N 1 \N [{"file_id": "3d318540-8662-473c-ad11-ae006fd8ba66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08c9466a409b41599250020674f4de37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08c9466a409b41599250020674f4de37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08c9466a409b41599250020674f4de37.jpg", "file_size": 16064, "is_delete": false, "file_type": 1, "original_file_name": "1079#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c9466a409b41599250020674f4de37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c9466a409b41599250020674f4de37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c9466a409b41599250020674f4de37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08c9466a409b41599250020674f4de37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08c9466a409b41599250020674f4de37.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S2fMIC3kdL9gzSixLsQvLAW70Ok=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.379969+00 2025-12-09 10:15:03.379973+00 9334 0003-431#棕色 SPMX-20240815304502 \N \N \N 1 \N [{"file_id": "20efed6f-5345-4933-a9fa-8e58a089f4d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c1639215514987a4240d46665dd223.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c1639215514987a4240d46665dd223.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c1639215514987a4240d46665dd223.jpg", "file_size": 28321, "is_delete": false, "file_type": 1, "original_file_name": "0003-431#棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1639215514987a4240d46665dd223.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1639215514987a4240d46665dd223.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c1639215514987a4240d46665dd223.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c1639215514987a4240d46665dd223.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c1639215514987a4240d46665dd223.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRT1WoZveyJEI9ZuO-8L8n3YjQo=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.381574+00 2025-12-09 10:15:03.381579+00 9335 80335#后幅 SPMX-20240815304497 \N \N \N 1 \N [{"file_id": "08b78bca-bcbd-40af-8e64-b43df9e13484", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1325bce95e24394bd8cfd90ec75ec39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1325bce95e24394bd8cfd90ec75ec39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1325bce95e24394bd8cfd90ec75ec39.jpg", "file_size": 14658, "is_delete": false, "file_type": 1, "original_file_name": "80335#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1325bce95e24394bd8cfd90ec75ec39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1325bce95e24394bd8cfd90ec75ec39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1325bce95e24394bd8cfd90ec75ec39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1325bce95e24394bd8cfd90ec75ec39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1325bce95e24394bd8cfd90ec75ec39.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0PK-hJSc8jH6nzHXOg9SzQA1NQ=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.383178+00 2025-12-09 10:15:03.383182+00 9336 LJ83#短袖 SPMX-20240815304496 \N \N \N 1 \N [{"file_id": "b839b4ea-5d6d-41de-8944-f2ec8cb67d3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6564c392570488ca229e7ab9fc4f1b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6564c392570488ca229e7ab9fc4f1b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6564c392570488ca229e7ab9fc4f1b7.jpg", "file_size": 17878, "is_delete": false, "file_type": 1, "original_file_name": "LJ83#短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6564c392570488ca229e7ab9fc4f1b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6564c392570488ca229e7ab9fc4f1b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6564c392570488ca229e7ab9fc4f1b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6564c392570488ca229e7ab9fc4f1b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6564c392570488ca229e7ab9fc4f1b7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RMrNHCOGUKNZASsGNOox_X2y_s=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.385077+00 2025-12-09 10:15:03.385081+00 9337 HT0101-A37#黑色 SPMX-20240815304503 \N \N \N 1 \N [{"file_id": "c89b97dd-657b-4013-9e9a-2e8cc4a25ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d01d80dcf91540cc9bde9a6345324118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d01d80dcf91540cc9bde9a6345324118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d01d80dcf91540cc9bde9a6345324118.jpg", "file_size": 16712, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A37#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01d80dcf91540cc9bde9a6345324118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01d80dcf91540cc9bde9a6345324118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01d80dcf91540cc9bde9a6345324118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d01d80dcf91540cc9bde9a6345324118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d01d80dcf91540cc9bde9a6345324118.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1V8aQdfmpt85SSQe62BBISQjWbg=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.386946+00 2025-12-09 10:15:03.38695+00 9338 FHXGPK-批布002-2 SPMX-20240815304498 \N \N \N 1 \N [{"file_id": "811f58d0-3a89-470b-a861-4e182d9a6182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61d22b9a408f43fb8e76de9b5c1e3675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61d22b9a408f43fb8e76de9b5c1e3675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61d22b9a408f43fb8e76de9b5c1e3675.jpg", "file_size": 31117, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d22b9a408f43fb8e76de9b5c1e3675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d22b9a408f43fb8e76de9b5c1e3675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d22b9a408f43fb8e76de9b5c1e3675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61d22b9a408f43fb8e76de9b5c1e3675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61d22b9a408f43fb8e76de9b5c1e3675.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grhtPxIWsFsU_er7zPkSAlfKyFE=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.388591+00 2025-12-09 10:15:03.388596+00 9339 DL30450#短款前后幅墨绿L SPMX-20240815304499 \N \N \N 1 \N [{"file_id": "81138200-b54f-4612-b090-0e24b5a90e59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66f6acc5e28848ed940866681b45fbbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66f6acc5e28848ed940866681b45fbbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66f6acc5e28848ed940866681b45fbbb.jpg", "file_size": 21379, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f6acc5e28848ed940866681b45fbbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f6acc5e28848ed940866681b45fbbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f6acc5e28848ed940866681b45fbbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66f6acc5e28848ed940866681b45fbbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66f6acc5e28848ed940866681b45fbbb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRS4yZMcUs8gnEQA7E5tdt66Jio=", "createTime": "2024-08-15 14:48:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.390232+00 2025-12-09 10:15:03.390237+00 9340 LZ1249#上身4号色 SPMX-20240815304500 \N \N \N 1 \N [{"file_id": "43142b7b-ee85-4cfd-aa1f-1b2d073d9af3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3e2a9e1f1214bc49bbfa743185e5bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3e2a9e1f1214bc49bbfa743185e5bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3e2a9e1f1214bc49bbfa743185e5bb0.jpg", "file_size": 18321, "is_delete": false, "file_type": 1, "original_file_name": "LZ1249#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e2a9e1f1214bc49bbfa743185e5bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e2a9e1f1214bc49bbfa743185e5bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e2a9e1f1214bc49bbfa743185e5bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3e2a9e1f1214bc49bbfa743185e5bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3e2a9e1f1214bc49bbfa743185e5bb0.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlCCHW9za3VWbRSTNTEc3jYDw1g=", "createTime": "2024-08-15 14:48:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.392344+00 2025-12-09 10:15:03.392349+00 9341 80336#前幅 SPMX-20240815304508 \N \N \N 1 \N [{"file_id": "8b6236ba-04a9-403a-ba24-c272a0029d31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4824249b6d804c4da832a8a525dad991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4824249b6d804c4da832a8a525dad991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4824249b6d804c4da832a8a525dad991.jpg", "file_size": 14494, "is_delete": false, "file_type": 1, "original_file_name": "80336#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4824249b6d804c4da832a8a525dad991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4824249b6d804c4da832a8a525dad991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4824249b6d804c4da832a8a525dad991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4824249b6d804c4da832a8a525dad991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4824249b6d804c4da832a8a525dad991.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GldwMOnDnTMbF2rHAFdXmeVoM3g=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.394146+00 2025-12-09 10:15:03.394151+00 9342 DL30450#短款前后幅墨绿XL SPMX-20240815304512 \N \N \N 1 \N [{"file_id": "98595a2a-76be-4b3a-ac2e-c705a146260f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c428a7672614ed6889aadd5929ec8f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c428a7672614ed6889aadd5929ec8f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c428a7672614ed6889aadd5929ec8f9.jpg", "file_size": 20858, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c428a7672614ed6889aadd5929ec8f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c428a7672614ed6889aadd5929ec8f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c428a7672614ed6889aadd5929ec8f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c428a7672614ed6889aadd5929ec8f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c428a7672614ed6889aadd5929ec8f9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huT6E3f78LuKXjshXZsqjvfuhvY=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.39601+00 2025-12-09 10:15:03.396015+00 9343 JTSS102FW#VS-D3 SPMX-20240815304505 \N \N \N 1 \N [{"file_id": "2bd1ebd9-c7e0-4032-9b53-8109a679113c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3f3d66e7cf5447998395de78afc60a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3f3d66e7cf5447998395de78afc60a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3f3d66e7cf5447998395de78afc60a4.jpg", "file_size": 6749, "is_delete": false, "file_type": 1, "original_file_name": "JTSS102FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f3d66e7cf5447998395de78afc60a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f3d66e7cf5447998395de78afc60a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f3d66e7cf5447998395de78afc60a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3f3d66e7cf5447998395de78afc60a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3f3d66e7cf5447998395de78afc60a4.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7x_AlO-LGvE6eqZtf-q_2gouBA=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.397594+00 2025-12-09 10:15:03.397598+00 9344 C338FWF#蓝色S SPMX-20240815304506 \N \N \N 1 \N [{"file_id": "4cd29df0-11a9-45ce-a21b-91857f549787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffa356ec33754e3ea7850105647ffedd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffa356ec33754e3ea7850105647ffedd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffa356ec33754e3ea7850105647ffedd.jpg", "file_size": 21886, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa356ec33754e3ea7850105647ffedd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa356ec33754e3ea7850105647ffedd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa356ec33754e3ea7850105647ffedd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffa356ec33754e3ea7850105647ffedd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffa356ec33754e3ea7850105647ffedd.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bRWBgsc_A2EgyZX5cLDLYrpJ-4=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.399183+00 2025-12-09 10:15:03.399188+00 9345 FHXGPK-批布002-3 SPMX-20240815304507 \N \N \N 1 \N [{"file_id": "6c10a94d-ff24-46f1-bbe6-6efe1f4d4ca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef95e2f875e94ced876d90db001bcf5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef95e2f875e94ced876d90db001bcf5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef95e2f875e94ced876d90db001bcf5b.jpg", "file_size": 38522, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef95e2f875e94ced876d90db001bcf5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef95e2f875e94ced876d90db001bcf5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef95e2f875e94ced876d90db001bcf5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef95e2f875e94ced876d90db001bcf5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef95e2f875e94ced876d90db001bcf5b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgxcufEijELz9kKzDUYDSX8QTcQ=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.400993+00 2025-12-09 10:15:03.400997+00 9346 LZ124FWF#1号色短袖 SPMX-20240815304509 \N \N \N 1 \N [{"file_id": "cf4703fb-254a-4fc4-91ed-d91635874700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "162e2794205449a29c6a31c09db1d248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "162e2794205449a29c6a31c09db1d248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "162e2794205449a29c6a31c09db1d248.jpg", "file_size": 20077, "is_delete": false, "file_type": 1, "original_file_name": "LZ124FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162e2794205449a29c6a31c09db1d248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162e2794205449a29c6a31c09db1d248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162e2794205449a29c6a31c09db1d248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/162e2794205449a29c6a31c09db1d248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/162e2794205449a29c6a31c09db1d248.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qc-QlPvE06s7oXu4-mertZEM5QQ=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.402586+00 2025-12-09 10:15:03.40259+00 9347 23-2114#A5-4XL SPMX-20240815304510 \N \N \N 1 \N [{"file_id": "8b369737-6998-4189-ac72-d3e429539f82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0d4fbda677d4061ae8e87286bbd13fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0d4fbda677d4061ae8e87286bbd13fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0d4fbda677d4061ae8e87286bbd13fb.jpg", "file_size": 16098, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d4fbda677d4061ae8e87286bbd13fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d4fbda677d4061ae8e87286bbd13fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d4fbda677d4061ae8e87286bbd13fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0d4fbda677d4061ae8e87286bbd13fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0d4fbda677d4061ae8e87286bbd13fb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xr6OjDhrAPZ8XMYXwZLp7W806eM=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.404148+00 2025-12-09 10:15:03.404153+00 9348 1079#粉黄色 SPMX-20240815304511 \N \N \N 1 \N [{"file_id": "5ac1f658-fa94-4508-b771-670259ba9607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9789a19e3c074592b8d20c74f8fccdda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9789a19e3c074592b8d20c74f8fccdda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9789a19e3c074592b8d20c74f8fccdda.jpg", "file_size": 14129, "is_delete": false, "file_type": 1, "original_file_name": "1079#粉黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9789a19e3c074592b8d20c74f8fccdda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9789a19e3c074592b8d20c74f8fccdda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9789a19e3c074592b8d20c74f8fccdda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9789a19e3c074592b8d20c74f8fccdda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9789a19e3c074592b8d20c74f8fccdda.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNbQL-z58VcAMgW-VqnUnzX29bo=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.405735+00 2025-12-09 10:15:03.40574+00 9349 C338FWF#蓝色XL SPMX-20240815304517 \N \N \N 1 \N [{"file_id": "352ad8c2-274b-4d7e-94d5-ae31706bdf6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "298864086b7f4a178a87aa2af2ea56e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "298864086b7f4a178a87aa2af2ea56e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "298864086b7f4a178a87aa2af2ea56e4.jpg", "file_size": 19612, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298864086b7f4a178a87aa2af2ea56e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298864086b7f4a178a87aa2af2ea56e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298864086b7f4a178a87aa2af2ea56e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/298864086b7f4a178a87aa2af2ea56e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/298864086b7f4a178a87aa2af2ea56e4.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqPAGA-dngy9uEV0hQil-B5OacA=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.407341+00 2025-12-09 10:15:03.407346+00 9350 1079#黑色 SPMX-20240815304522 \N \N \N 1 \N [{"file_id": "5f1f646b-2c3a-43c3-9663-ea661392f53e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1cf2b73a8674cfd922b6fbb13c6d589.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1cf2b73a8674cfd922b6fbb13c6d589.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1cf2b73a8674cfd922b6fbb13c6d589.jpg", "file_size": 13901, "is_delete": false, "file_type": 1, "original_file_name": "1079#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cf2b73a8674cfd922b6fbb13c6d589.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cf2b73a8674cfd922b6fbb13c6d589.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1cf2b73a8674cfd922b6fbb13c6d589.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1cf2b73a8674cfd922b6fbb13c6d589.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1cf2b73a8674cfd922b6fbb13c6d589.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iX4j4KaBk_o4aVlUNphyKoPCXK8=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.409117+00 2025-12-09 10:15:03.409122+00 9351 23-2114#A5-领子3XL SPMX-20240815304520 \N \N \N 1 \N [{"file_id": "36bcabfc-e7ec-4ad2-965e-11ab79df97ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c4c9da1ec8e4a0a873b39d769c151ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c4c9da1ec8e4a0a873b39d769c151ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c4c9da1ec8e4a0a873b39d769c151ed.jpg", "file_size": 12468, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4c9da1ec8e4a0a873b39d769c151ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4c9da1ec8e4a0a873b39d769c151ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4c9da1ec8e4a0a873b39d769c151ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c4c9da1ec8e4a0a873b39d769c151ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c4c9da1ec8e4a0a873b39d769c151ed.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLvQBbI-WpwPkhhpy9CSwsvv6rA=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.410719+00 2025-12-09 10:15:03.410723+00 9352 LZ124FWF#2号色短袖 SPMX-20240815304521 \N \N \N 1 \N [{"file_id": "20c3f1ca-5601-4269-a8f0-d8da392f64f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b21f32920a734351bca81b4573f77a64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b21f32920a734351bca81b4573f77a64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b21f32920a734351bca81b4573f77a64.jpg", "file_size": 18951, "is_delete": false, "file_type": 1, "original_file_name": "LZ124FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21f32920a734351bca81b4573f77a64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21f32920a734351bca81b4573f77a64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21f32920a734351bca81b4573f77a64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b21f32920a734351bca81b4573f77a64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b21f32920a734351bca81b4573f77a64.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xR91IBcvcseRfAbtDOb0Yy72HhI=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.412358+00 2025-12-09 10:15:03.412363+00 9353 80336#后幅 SPMX-20240815304519 \N \N \N 1 \N [{"file_id": "8ed8282c-d7e1-405e-a68b-511b13590182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6930b46937e54617b88ff1074281acea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6930b46937e54617b88ff1074281acea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6930b46937e54617b88ff1074281acea.jpg", "file_size": 12812, "is_delete": false, "file_type": 1, "original_file_name": "80336#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6930b46937e54617b88ff1074281acea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6930b46937e54617b88ff1074281acea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6930b46937e54617b88ff1074281acea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6930b46937e54617b88ff1074281acea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6930b46937e54617b88ff1074281acea.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyx6UPT1GeGMu03CxKDAkBbnWts=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.414279+00 2025-12-09 10:15:03.414284+00 9354 DL30450#短款前后幅姜黄2XL SPMX-20240815304523 \N \N \N 1 \N [{"file_id": "e3ca79ad-2eb3-420f-8d2e-cfe088aa1e3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37aacfc1ec4c4024a7defefa239a5912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37aacfc1ec4c4024a7defefa239a5912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37aacfc1ec4c4024a7defefa239a5912.jpg", "file_size": 21165, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅姜黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aacfc1ec4c4024a7defefa239a5912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aacfc1ec4c4024a7defefa239a5912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aacfc1ec4c4024a7defefa239a5912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37aacfc1ec4c4024a7defefa239a5912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37aacfc1ec4c4024a7defefa239a5912.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:resBOx5I9Nx0GCyESw_KEdHwQJ4=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.416116+00 2025-12-09 10:15:03.416121+00 9355 JTSS103FW#VS-D3 SPMX-20240815304514 \N \N \N 1 \N [{"file_id": "e1dd0cd4-a529-4c8c-9003-74782ff7deba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1edfd58e0734396a10c71b77c2e4ada.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1edfd58e0734396a10c71b77c2e4ada.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1edfd58e0734396a10c71b77c2e4ada.jpg", "file_size": 9217, "is_delete": false, "file_type": 1, "original_file_name": "JTSS103FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1edfd58e0734396a10c71b77c2e4ada.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1edfd58e0734396a10c71b77c2e4ada.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1edfd58e0734396a10c71b77c2e4ada.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1edfd58e0734396a10c71b77c2e4ada.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1edfd58e0734396a10c71b77c2e4ada.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_jE3LwNDQfpFPK8uyc_3mudKQc=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.417735+00 2025-12-09 10:15:03.41774+00 9356 LJ83#短袖乱花 SPMX-20240815304515 \N \N \N 1 \N [{"file_id": "9c763e8a-ba9a-4ec7-bb6e-c13d95bbaf61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "390da6c7a4784bd2a7508b15b34e7efa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "390da6c7a4784bd2a7508b15b34e7efa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "390da6c7a4784bd2a7508b15b34e7efa.jpg", "file_size": 19628, "is_delete": false, "file_type": 1, "original_file_name": "LJ83#短袖乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da6c7a4784bd2a7508b15b34e7efa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da6c7a4784bd2a7508b15b34e7efa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390da6c7a4784bd2a7508b15b34e7efa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/390da6c7a4784bd2a7508b15b34e7efa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/390da6c7a4784bd2a7508b15b34e7efa.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xu9KYKHtkUTpUmH7e49awXSYClE=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.41933+00 2025-12-09 10:15:03.419335+00 9357 HT0101-A38#原版色 SPMX-20240815304513 \N \N \N 1 \N [{"file_id": "8e60f221-0b2c-42ce-9c4c-6ee95b787b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "491ae9dc8525446488ea572f6ba09243.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "491ae9dc8525446488ea572f6ba09243.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "491ae9dc8525446488ea572f6ba09243.jpg", "file_size": 18349, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A38#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491ae9dc8525446488ea572f6ba09243.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491ae9dc8525446488ea572f6ba09243.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491ae9dc8525446488ea572f6ba09243.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/491ae9dc8525446488ea572f6ba09243.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/491ae9dc8525446488ea572f6ba09243.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neZBA_GFNikZRwcoRfDpYJy1ERc=", "createTime": "2024-08-15 14:48:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.421201+00 2025-12-09 10:15:03.421205+00 9358 FHXGPK-批布003-1 SPMX-20240815304518 \N \N \N 1 \N [{"file_id": "797559b6-f4ff-462a-8764-358c97f9c0fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bfe584547b841b1afa27b82e7cb9a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bfe584547b841b1afa27b82e7cb9a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bfe584547b841b1afa27b82e7cb9a1d.jpg", "file_size": 38077, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfe584547b841b1afa27b82e7cb9a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfe584547b841b1afa27b82e7cb9a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfe584547b841b1afa27b82e7cb9a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bfe584547b841b1afa27b82e7cb9a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bfe584547b841b1afa27b82e7cb9a1d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ul-5tTX0S_fghGAPGj3NVFzQ-ZY=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.42281+00 2025-12-09 10:15:03.422815+00 9359 0003-432#WJC22 SPMX-20240815304516 \N \N \N 1 \N [{"file_id": "b0bbafef-be65-42d5-a0b3-31cc4248d5f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6cdf9f842b04b0ab472881135edd312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6cdf9f842b04b0ab472881135edd312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6cdf9f842b04b0ab472881135edd312.jpg", "file_size": 20642, "is_delete": false, "file_type": 1, "original_file_name": "0003-432#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cdf9f842b04b0ab472881135edd312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cdf9f842b04b0ab472881135edd312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6cdf9f842b04b0ab472881135edd312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6cdf9f842b04b0ab472881135edd312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6cdf9f842b04b0ab472881135edd312.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OV_WcYG6nYco80PKSf-R85XHJAg=", "createTime": "2024-08-15 14:48:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.42441+00 2025-12-09 10:15:03.424414+00 9360 HT0101-A38#白绿 SPMX-20240815304524 \N \N \N 1 \N [{"file_id": "3403d4c1-5cfa-4ac6-bb12-428b9db3ed03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b067d6a882004afe9a85756eccddfb70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b067d6a882004afe9a85756eccddfb70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b067d6a882004afe9a85756eccddfb70.jpg", "file_size": 20811, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A38#白绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b067d6a882004afe9a85756eccddfb70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b067d6a882004afe9a85756eccddfb70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b067d6a882004afe9a85756eccddfb70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b067d6a882004afe9a85756eccddfb70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b067d6a882004afe9a85756eccddfb70.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BAdYOSFyOOh7DI4mXyRf52d48x8=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.426252+00 2025-12-09 10:15:03.426257+00 9361 DL30450#短款前后幅姜黄L SPMX-20240815304526 \N \N \N 1 \N [{"file_id": "114157ac-f6fc-49d3-bad7-7fbeac144a98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41d0fafa21954c86bbc2292498a900f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41d0fafa21954c86bbc2292498a900f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41d0fafa21954c86bbc2292498a900f7.jpg", "file_size": 21257, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅姜黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d0fafa21954c86bbc2292498a900f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d0fafa21954c86bbc2292498a900f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d0fafa21954c86bbc2292498a900f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41d0fafa21954c86bbc2292498a900f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41d0fafa21954c86bbc2292498a900f7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W0BuqeMGn4EXEqHW16ntcNob_TI=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.42788+00 2025-12-09 10:15:03.427885+00 9362 LZ124FWF#3号色短袖 SPMX-20240815304525 \N \N \N 1 \N [{"file_id": "583975e4-47a5-49ff-b067-b4e403be5776", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12795c3e6f5c4412b65468d63996c1da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12795c3e6f5c4412b65468d63996c1da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12795c3e6f5c4412b65468d63996c1da.jpg", "file_size": 20573, "is_delete": false, "file_type": 1, "original_file_name": "LZ124FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12795c3e6f5c4412b65468d63996c1da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12795c3e6f5c4412b65468d63996c1da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12795c3e6f5c4412b65468d63996c1da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12795c3e6f5c4412b65468d63996c1da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12795c3e6f5c4412b65468d63996c1da.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NimWZirqS-TIeXUYGZ0wz5xzjv0=", "createTime": "2024-08-15 14:48:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.429522+00 2025-12-09 10:15:03.429526+00 9363 LJ83#短裤 SPMX-20240815304528 \N \N \N 1 \N [{"file_id": "0f95f8e7-0069-4c26-a11e-c089d832763b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51f6745fb63d4cfe9cd8683829acc329.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51f6745fb63d4cfe9cd8683829acc329.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51f6745fb63d4cfe9cd8683829acc329.jpg", "file_size": 18428, "is_delete": false, "file_type": 1, "original_file_name": "LJ83#短裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f6745fb63d4cfe9cd8683829acc329.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f6745fb63d4cfe9cd8683829acc329.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f6745fb63d4cfe9cd8683829acc329.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51f6745fb63d4cfe9cd8683829acc329.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51f6745fb63d4cfe9cd8683829acc329.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfz5zJ0EZLie6RVOII1yjX0G-oc=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.431379+00 2025-12-09 10:15:03.431384+00 9364 23-2114#A5-领子4XL SPMX-20240815304527 \N \N \N 1 \N [{"file_id": "3e620aa5-798a-4db7-bbbe-5689c43212cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddcf6fad373b47108eb338db803f98ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddcf6fad373b47108eb338db803f98ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddcf6fad373b47108eb338db803f98ed.jpg", "file_size": 12429, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf6fad373b47108eb338db803f98ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf6fad373b47108eb338db803f98ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf6fad373b47108eb338db803f98ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddcf6fad373b47108eb338db803f98ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddcf6fad373b47108eb338db803f98ed.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9EbRoRqDFEjfqb6jpoNebYswyYM=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.432997+00 2025-12-09 10:15:03.433001+00 9365 80337#前幅 SPMX-20240815304532 \N \N \N 1 \N [{"file_id": "3f549190-7126-4da5-a5cf-7afef4a3a676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e30974ad51384471889442fe6b922a63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e30974ad51384471889442fe6b922a63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e30974ad51384471889442fe6b922a63.jpg", "file_size": 17786, "is_delete": false, "file_type": 1, "original_file_name": "80337#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30974ad51384471889442fe6b922a63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30974ad51384471889442fe6b922a63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30974ad51384471889442fe6b922a63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e30974ad51384471889442fe6b922a63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e30974ad51384471889442fe6b922a63.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4xXtA22nXBNwObxearaG55O-5Y=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.434592+00 2025-12-09 10:15:03.434597+00 9366 1079-1#彩兰色 SPMX-20240815304530 \N \N \N 1 \N [{"file_id": "3373ad6f-f511-4b63-bb12-bb5f40ec0056", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a91b6b49615242f2bee2b06b74e91f55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a91b6b49615242f2bee2b06b74e91f55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a91b6b49615242f2bee2b06b74e91f55.jpg", "file_size": 17358, "is_delete": false, "file_type": 1, "original_file_name": "1079-1#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b6b49615242f2bee2b06b74e91f55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b6b49615242f2bee2b06b74e91f55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b6b49615242f2bee2b06b74e91f55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a91b6b49615242f2bee2b06b74e91f55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a91b6b49615242f2bee2b06b74e91f55.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xVFPDvw7tDrKmberyenUn_-OK4s=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.436416+00 2025-12-09 10:15:03.43642+00 9367 DL30450#短款前后幅姜黄XL SPMX-20240815304531 \N \N \N 1 \N [{"file_id": "35700650-8edf-41a1-98cf-68c3f24a8560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24d4bf48b4f543dd830bd58a7423c6a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24d4bf48b4f543dd830bd58a7423c6a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24d4bf48b4f543dd830bd58a7423c6a7.jpg", "file_size": 21205, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅姜黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d4bf48b4f543dd830bd58a7423c6a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d4bf48b4f543dd830bd58a7423c6a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d4bf48b4f543dd830bd58a7423c6a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24d4bf48b4f543dd830bd58a7423c6a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24d4bf48b4f543dd830bd58a7423c6a7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGXsnEpQUnfJGUGkHupyQNIC-6M=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.438356+00 2025-12-09 10:15:03.438361+00 9368 JTSS104FW#VS-D3 SPMX-20240815304529 \N \N \N 1 \N [{"file_id": "ff1447ce-335a-4fac-8083-4368adb904ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c33eaf274822497da159c50847ab1a46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c33eaf274822497da159c50847ab1a46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c33eaf274822497da159c50847ab1a46.jpg", "file_size": 11610, "is_delete": false, "file_type": 1, "original_file_name": "JTSS104FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33eaf274822497da159c50847ab1a46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33eaf274822497da159c50847ab1a46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33eaf274822497da159c50847ab1a46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c33eaf274822497da159c50847ab1a46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c33eaf274822497da159c50847ab1a46.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FrUTm2E3epTfySmpaM2slVTgROM=", "createTime": "2024-08-15 14:48:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.439985+00 2025-12-09 10:15:03.43999+00 9369 LJ84#短袖 SPMX-20240815304541 \N \N \N 1 \N [{"file_id": "e548f107-8c32-40e9-97ce-5f529090635f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6917f9425eb9422a9986fb239da343c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6917f9425eb9422a9986fb239da343c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6917f9425eb9422a9986fb239da343c5.jpg", "file_size": 18609, "is_delete": false, "file_type": 1, "original_file_name": "LJ84#短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6917f9425eb9422a9986fb239da343c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6917f9425eb9422a9986fb239da343c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6917f9425eb9422a9986fb239da343c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6917f9425eb9422a9986fb239da343c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6917f9425eb9422a9986fb239da343c5.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNQTX3CaUJ5cQuJIAeFJdzysMeM=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.441771+00 2025-12-09 10:15:03.441777+00 9370 DL30450#短款前后幅彩兰2XL SPMX-20240815304542 \N \N \N 1 \N [{"file_id": "b388177c-bbcb-4a1a-b22b-5dd277a754ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fad6e77b6f964265b11ee0d4fce97aa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fad6e77b6f964265b11ee0d4fce97aa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fad6e77b6f964265b11ee0d4fce97aa7.jpg", "file_size": 21024, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad6e77b6f964265b11ee0d4fce97aa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad6e77b6f964265b11ee0d4fce97aa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad6e77b6f964265b11ee0d4fce97aa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fad6e77b6f964265b11ee0d4fce97aa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fad6e77b6f964265b11ee0d4fce97aa7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ils5FtV5VDHtx0FXdTod9ZxnTTY=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.443629+00 2025-12-09 10:15:03.443633+00 9371 1079-1#浅蓝色 SPMX-20240815304539 \N \N \N 1 \N [{"file_id": "0e96e2b4-524b-46cd-8b39-549285443ab3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e99c4666f784b869262f6577dfd15fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e99c4666f784b869262f6577dfd15fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e99c4666f784b869262f6577dfd15fe.jpg", "file_size": 19683, "is_delete": false, "file_type": 1, "original_file_name": "1079-1#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e99c4666f784b869262f6577dfd15fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e99c4666f784b869262f6577dfd15fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e99c4666f784b869262f6577dfd15fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e99c4666f784b869262f6577dfd15fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e99c4666f784b869262f6577dfd15fe.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d3IqqHBqxOZPsLcgHofA3RqHUkM=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.445496+00 2025-12-09 10:15:03.4455+00 9372 0003-434#WJC22 SPMX-20240815304534 \N \N \N 1 \N [{"file_id": "650628ed-3807-48f7-8605-f442d0e980cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2082b748377d451fa5a6f623d7657063.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2082b748377d451fa5a6f623d7657063.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2082b748377d451fa5a6f623d7657063.jpg", "file_size": 13810, "is_delete": false, "file_type": 1, "original_file_name": "0003-434#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2082b748377d451fa5a6f623d7657063.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2082b748377d451fa5a6f623d7657063.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2082b748377d451fa5a6f623d7657063.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2082b748377d451fa5a6f623d7657063.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2082b748377d451fa5a6f623d7657063.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGjvJ-AdbhZGbZ0VWRH9xlGOQ4E=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.447089+00 2025-12-09 10:15:03.447093+00 9373 FHXGPK-批布003-2 SPMX-20240815304536 \N \N \N 1 \N [{"file_id": "e4d9b678-bf17-4680-8cf3-525b3e0bf15b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18188d9e05c74d34939a8552ce40867a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18188d9e05c74d34939a8552ce40867a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18188d9e05c74d34939a8552ce40867a.jpg", "file_size": 31230, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18188d9e05c74d34939a8552ce40867a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18188d9e05c74d34939a8552ce40867a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18188d9e05c74d34939a8552ce40867a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18188d9e05c74d34939a8552ce40867a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18188d9e05c74d34939a8552ce40867a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRqNdAS-tdBy8Ox5TDpsg8KtKkM=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.448675+00 2025-12-09 10:15:03.44868+00 9374 HT0101-A38#白蓝 SPMX-20240815304537 \N \N \N 1 \N [{"file_id": "0906f17d-6cb1-4985-b62d-e18ce07f181d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebd3017b26024137b5f3dfddc7cab356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebd3017b26024137b5f3dfddc7cab356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebd3017b26024137b5f3dfddc7cab356.jpg", "file_size": 21936, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A38#白蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3017b26024137b5f3dfddc7cab356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3017b26024137b5f3dfddc7cab356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3017b26024137b5f3dfddc7cab356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebd3017b26024137b5f3dfddc7cab356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebd3017b26024137b5f3dfddc7cab356.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASN5Vm8abb9omswgJPQr4Orhlgs=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.450453+00 2025-12-09 10:15:03.450458+00 9375 LZ124FWF#4号色短袖 SPMX-20240815304535 \N \N \N 1 \N [{"file_id": "39f7b8ea-230e-496a-b83d-3f43a9b980ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955e140d83f64d08a12b36b66d717582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955e140d83f64d08a12b36b66d717582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955e140d83f64d08a12b36b66d717582.jpg", "file_size": 18948, "is_delete": false, "file_type": 1, "original_file_name": "LZ124FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e140d83f64d08a12b36b66d717582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e140d83f64d08a12b36b66d717582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e140d83f64d08a12b36b66d717582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955e140d83f64d08a12b36b66d717582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955e140d83f64d08a12b36b66d717582.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyyFEDwDJLq-zCdY5Kn4R5iO_qg=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.45206+00 2025-12-09 10:15:03.452064+00 9376 JTSS105FW#vs-d3 SPMX-20240815304540 \N \N \N 1 \N [{"file_id": "90a569db-2bdd-4641-b373-f26f6da4c788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7026dbc1f0594a4499216a83142f4e93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7026dbc1f0594a4499216a83142f4e93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7026dbc1f0594a4499216a83142f4e93.jpg", "file_size": 10385, "is_delete": false, "file_type": 1, "original_file_name": "JTSS105FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7026dbc1f0594a4499216a83142f4e93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7026dbc1f0594a4499216a83142f4e93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7026dbc1f0594a4499216a83142f4e93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7026dbc1f0594a4499216a83142f4e93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7026dbc1f0594a4499216a83142f4e93.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMkSo-uQGZAPSyekce32uYftilc=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.453648+00 2025-12-09 10:15:03.453652+00 9377 C338FWF#补片橘色S-右袖 SPMX-20240815304533 \N \N \N 1 \N [{"file_id": "e6e98eca-0edd-42c0-942d-1357ee4ab0b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6075845726a46329e6bc9397810c828.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6075845726a46329e6bc9397810c828.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6075845726a46329e6bc9397810c828.jpg", "file_size": 17552, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色S-右袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6075845726a46329e6bc9397810c828.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6075845726a46329e6bc9397810c828.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6075845726a46329e6bc9397810c828.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6075845726a46329e6bc9397810c828.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6075845726a46329e6bc9397810c828.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkVkj-km1Y7ZZI26io1g9m8kG90=", "createTime": "2024-08-15 14:48:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.455458+00 2025-12-09 10:15:03.455462+00 9378 23-2114#A6-3XL SPMX-20240815304538 \N \N \N 1 \N [{"file_id": "c755138c-3cbf-4059-840b-4d0d568c227d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc43d81e3e44d71b98a2f6b3ee461a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc43d81e3e44d71b98a2f6b3ee461a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc43d81e3e44d71b98a2f6b3ee461a9.jpg", "file_size": 17147, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc43d81e3e44d71b98a2f6b3ee461a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc43d81e3e44d71b98a2f6b3ee461a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc43d81e3e44d71b98a2f6b3ee461a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc43d81e3e44d71b98a2f6b3ee461a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc43d81e3e44d71b98a2f6b3ee461a9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fe_xWF__v39B-BEXPbwuMibvG-8=", "createTime": "2024-08-15 14:48:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.457034+00 2025-12-09 10:15:03.457039+00 9379 0003-434#粉色 SPMX-20240815304557 \N \N \N 1 \N [{"file_id": "c8b7a7d8-5f84-4629-9a20-c62322f11a3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e8e57c30e0b46cd83db4d820a76e2fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e8e57c30e0b46cd83db4d820a76e2fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e8e57c30e0b46cd83db4d820a76e2fe.jpg", "file_size": 17474, "is_delete": false, "file_type": 1, "original_file_name": "0003-434#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e57c30e0b46cd83db4d820a76e2fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e57c30e0b46cd83db4d820a76e2fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8e57c30e0b46cd83db4d820a76e2fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e8e57c30e0b46cd83db4d820a76e2fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e8e57c30e0b46cd83db4d820a76e2fe.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpIErSykWmpYP4A2XZyG7eZhlSI=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.458633+00 2025-12-09 10:15:03.458637+00 9380 HT0101-A38#白黑 SPMX-20240815304547 \N \N \N 1 \N [{"file_id": "d06db92b-ce91-4ecb-8cc6-533baa22ce76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8a52ddc9d9941cb8f7f7e63825bf87c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8a52ddc9d9941cb8f7f7e63825bf87c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8a52ddc9d9941cb8f7f7e63825bf87c.jpg", "file_size": 21510, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A38#白黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a52ddc9d9941cb8f7f7e63825bf87c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a52ddc9d9941cb8f7f7e63825bf87c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a52ddc9d9941cb8f7f7e63825bf87c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8a52ddc9d9941cb8f7f7e63825bf87c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8a52ddc9d9941cb8f7f7e63825bf87c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rKLrVG_9Nfr6wvGAWNApba8oSc8=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.460471+00 2025-12-09 10:15:03.460475+00 9381 JTSS106FW#VS-D3 SPMX-20240815304551 \N \N \N 1 \N [{"file_id": "3b2523a8-33cf-4fe9-891f-317d5f571f6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a6473045754e65a9fe1992ee25874f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a6473045754e65a9fe1992ee25874f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a6473045754e65a9fe1992ee25874f.jpg", "file_size": 9071, "is_delete": false, "file_type": 1, "original_file_name": "JTSS106FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a6473045754e65a9fe1992ee25874f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a6473045754e65a9fe1992ee25874f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a6473045754e65a9fe1992ee25874f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a6473045754e65a9fe1992ee25874f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a6473045754e65a9fe1992ee25874f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UVrtYJktB9kFIa_UjAsRdawHFA4=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.462029+00 2025-12-09 10:15:03.462033+00 9382 23-2114#A6-4XL SPMX-20240815304549 \N \N \N 1 \N [{"file_id": "1541dfa1-0490-4b00-b268-36a5dee5ed27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f41c3b7c4bc4f2981bbf60d7d16d193.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f41c3b7c4bc4f2981bbf60d7d16d193.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f41c3b7c4bc4f2981bbf60d7d16d193.jpg", "file_size": 16394, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f41c3b7c4bc4f2981bbf60d7d16d193.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f41c3b7c4bc4f2981bbf60d7d16d193.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f41c3b7c4bc4f2981bbf60d7d16d193.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f41c3b7c4bc4f2981bbf60d7d16d193.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f41c3b7c4bc4f2981bbf60d7d16d193.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Q0R3bTWBOUinOpVgTs0AxuJm_w=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.463621+00 2025-12-09 10:15:03.463625+00 9383 80338#前幅 SPMX-20240815304555 \N \N \N 1 \N [{"file_id": "131b7de3-3f1f-440c-971a-6db1832ecf64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2748b3f8dfd4136a5b551f67d3689ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2748b3f8dfd4136a5b551f67d3689ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2748b3f8dfd4136a5b551f67d3689ed.jpg", "file_size": 16286, "is_delete": false, "file_type": 1, "original_file_name": "80338#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2748b3f8dfd4136a5b551f67d3689ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2748b3f8dfd4136a5b551f67d3689ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2748b3f8dfd4136a5b551f67d3689ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2748b3f8dfd4136a5b551f67d3689ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2748b3f8dfd4136a5b551f67d3689ed.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2vsA76mbFi4M6M7JLzO7PB2vDg=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.465214+00 2025-12-09 10:15:03.465219+00 9384 1079-1#白色 SPMX-20240815304550 \N \N \N 1 \N [{"file_id": "ec031445-d879-46d1-858e-eaa9bf8f7fc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "677024d407484fcf80da2ef885ee98d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "677024d407484fcf80da2ef885ee98d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "677024d407484fcf80da2ef885ee98d2.jpg", "file_size": 21325, "is_delete": false, "file_type": 1, "original_file_name": "1079-1#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677024d407484fcf80da2ef885ee98d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677024d407484fcf80da2ef885ee98d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677024d407484fcf80da2ef885ee98d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/677024d407484fcf80da2ef885ee98d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/677024d407484fcf80da2ef885ee98d2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9zUCiyo-Ayc_IWI_vD1fg0LS3U=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.466853+00 2025-12-09 10:15:03.466859+00 9385 0003-434#白色 SPMX-20240815304545 \N \N \N 1 \N [{"file_id": "58d13496-6039-4df7-87cf-a04a964c433e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "908df3e678384137813ede861e8068b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "908df3e678384137813ede861e8068b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "908df3e678384137813ede861e8068b9.jpg", "file_size": 17687, "is_delete": false, "file_type": 1, "original_file_name": "0003-434#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908df3e678384137813ede861e8068b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908df3e678384137813ede861e8068b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908df3e678384137813ede861e8068b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/908df3e678384137813ede861e8068b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/908df3e678384137813ede861e8068b9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCRIaEOBRe9CQ994CABMEyovj38=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.469014+00 2025-12-09 10:15:03.469019+00 9386 C338FWF#补片橘色S-左前 SPMX-20240815304554 \N \N \N 1 \N [{"file_id": "997128bd-b88f-46d1-8178-0174b5f8d5de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47c1b77b044b466cb6ada2acfead3814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47c1b77b044b466cb6ada2acfead3814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47c1b77b044b466cb6ada2acfead3814.jpg", "file_size": 16760, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色S-左前.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c1b77b044b466cb6ada2acfead3814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c1b77b044b466cb6ada2acfead3814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47c1b77b044b466cb6ada2acfead3814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47c1b77b044b466cb6ada2acfead3814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47c1b77b044b466cb6ada2acfead3814.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGzKPucAgRdTDfKPokmRkG2IwHc=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.47106+00 2025-12-09 10:15:03.471066+00 9387 DL30450#短款前后幅彩兰L SPMX-20240815304552 \N \N \N 1 \N [{"file_id": "17a94597-0dfd-44f4-ba2a-03d43a576789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ded92976cec948f5be4e7d00bbcd9f08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ded92976cec948f5be4e7d00bbcd9f08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ded92976cec948f5be4e7d00bbcd9f08.jpg", "file_size": 21518, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded92976cec948f5be4e7d00bbcd9f08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded92976cec948f5be4e7d00bbcd9f08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded92976cec948f5be4e7d00bbcd9f08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ded92976cec948f5be4e7d00bbcd9f08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ded92976cec948f5be4e7d00bbcd9f08.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eSyhS3CtA88pU4KOK181QwbClvk=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.472848+00 2025-12-09 10:15:03.472854+00 9388 LZ1250#童装T1号色 SPMX-20240815304556 \N \N \N 1 \N [{"file_id": "f7d320f2-7821-4364-bd6e-97297be9b20a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c29d37b8dfb459e8a43f0627aed6a8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c29d37b8dfb459e8a43f0627aed6a8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c29d37b8dfb459e8a43f0627aed6a8c.jpg", "file_size": 17567, "is_delete": false, "file_type": 1, "original_file_name": "LZ1250#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c29d37b8dfb459e8a43f0627aed6a8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c29d37b8dfb459e8a43f0627aed6a8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c29d37b8dfb459e8a43f0627aed6a8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c29d37b8dfb459e8a43f0627aed6a8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c29d37b8dfb459e8a43f0627aed6a8c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EAalzPBH5phBA00thzSNHDKMWg=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.474865+00 2025-12-09 10:15:03.47487+00 9389 C338FWF#补片橘色S-后片 SPMX-20240815304546 \N \N \N 1 \N [{"file_id": "25f0be82-2e72-43bd-b924-61b44110177b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "269ef1582ea74d9a98a6333f2949e435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "269ef1582ea74d9a98a6333f2949e435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "269ef1582ea74d9a98a6333f2949e435.jpg", "file_size": 21110, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色S-后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269ef1582ea74d9a98a6333f2949e435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269ef1582ea74d9a98a6333f2949e435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/269ef1582ea74d9a98a6333f2949e435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/269ef1582ea74d9a98a6333f2949e435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/269ef1582ea74d9a98a6333f2949e435.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCjpW2wz8yl7gNFnxRudNRKT_Hk=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.476887+00 2025-12-09 10:15:03.476892+00 9390 FHXGPK-批布003-3 SPMX-20240815304548 \N \N \N 1 \N [{"file_id": "a48b4d24-e38b-42a3-9b8d-3dde99d6c59f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "decc9890b459432db338a3e926f6c872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "decc9890b459432db338a3e926f6c872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "decc9890b459432db338a3e926f6c872.jpg", "file_size": 31255, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/decc9890b459432db338a3e926f6c872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/decc9890b459432db338a3e926f6c872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/decc9890b459432db338a3e926f6c872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/decc9890b459432db338a3e926f6c872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/decc9890b459432db338a3e926f6c872.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsc_5hJfyJQv7PSwfkJ6kY0KaSA=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.47888+00 2025-12-09 10:15:03.478885+00 9391 LJ84#短袖乱花 SPMX-20240815304553 \N \N \N 1 \N [{"file_id": "fa4e128b-5e16-4f5e-acad-56d006740aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99330b85efbb4277a962bf0b9152ec4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99330b85efbb4277a962bf0b9152ec4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99330b85efbb4277a962bf0b9152ec4f.jpg", "file_size": 26864, "is_delete": false, "file_type": 1, "original_file_name": "LJ84#短袖乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99330b85efbb4277a962bf0b9152ec4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99330b85efbb4277a962bf0b9152ec4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99330b85efbb4277a962bf0b9152ec4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99330b85efbb4277a962bf0b9152ec4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99330b85efbb4277a962bf0b9152ec4f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5j9ZCSSJNR_VoN4c-i0-dg-ZsPQ=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.480867+00 2025-12-09 10:15:03.480872+00 9392 LZ124FWF#5号色短袖 SPMX-20240815304543 \N \N \N 1 \N [{"file_id": "e31ac1c1-bb10-4745-b963-68cbf71c74f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e69f058b4e4734b1c16560ace593c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e69f058b4e4734b1c16560ace593c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e69f058b4e4734b1c16560ace593c4.jpg", "file_size": 18940, "is_delete": false, "file_type": 1, "original_file_name": "LZ124FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e69f058b4e4734b1c16560ace593c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e69f058b4e4734b1c16560ace593c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e69f058b4e4734b1c16560ace593c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e69f058b4e4734b1c16560ace593c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e69f058b4e4734b1c16560ace593c4.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uYzKMqM8krJxzH9CgeqqFj27NHA=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.482884+00 2025-12-09 10:15:03.482889+00 9393 80337#后幅 SPMX-20240815304544 \N \N \N 1 \N [{"file_id": "a6d41717-ffce-4266-abe3-3b4b8d629b2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b793569678494bdf85587ddfb0de0047.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b793569678494bdf85587ddfb0de0047.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b793569678494bdf85587ddfb0de0047.jpg", "file_size": 14778, "is_delete": false, "file_type": 1, "original_file_name": "80337#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b793569678494bdf85587ddfb0de0047.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b793569678494bdf85587ddfb0de0047.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b793569678494bdf85587ddfb0de0047.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b793569678494bdf85587ddfb0de0047.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b793569678494bdf85587ddfb0de0047.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhcGowg40KQyCM2NETMxQyB9URA=", "createTime": "2024-08-15 14:48:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.484877+00 2025-12-09 10:15:03.484882+00 9394 23-2114#A6-领子4XL SPMX-20240815304568 \N \N \N 1 \N [{"file_id": "311d6333-6e7a-4dca-b8b7-0ea9dd78760e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51c1131fa5a3409eb64e4dd8b997951c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51c1131fa5a3409eb64e4dd8b997951c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51c1131fa5a3409eb64e4dd8b997951c.jpg", "file_size": 12412, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c1131fa5a3409eb64e4dd8b997951c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c1131fa5a3409eb64e4dd8b997951c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c1131fa5a3409eb64e4dd8b997951c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51c1131fa5a3409eb64e4dd8b997951c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51c1131fa5a3409eb64e4dd8b997951c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2D3TkCrrFRxor3wLIGYEOyiaIs=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.48686+00 2025-12-09 10:15:03.486865+00 9395 80338#后幅 SPMX-20240815304571 \N \N \N 1 \N [{"file_id": "2769003b-333b-43a1-a5d5-d0690a4276a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39952b3403e2479aa95ae97ddb51f310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39952b3403e2479aa95ae97ddb51f310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39952b3403e2479aa95ae97ddb51f310.jpg", "file_size": 14292, "is_delete": false, "file_type": 1, "original_file_name": "80338#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39952b3403e2479aa95ae97ddb51f310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39952b3403e2479aa95ae97ddb51f310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39952b3403e2479aa95ae97ddb51f310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39952b3403e2479aa95ae97ddb51f310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39952b3403e2479aa95ae97ddb51f310.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iae-K9ovUDLl_gDyfwsjQpdmikA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.488878+00 2025-12-09 10:15:03.488883+00 9396 HT0101-A38#黑白 SPMX-20240815304558 \N \N \N 1 \N [{"file_id": "35903f5e-3556-4317-a49a-6ea0f02de214", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aa753f82d3b40fba188ee09d9d8b4f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aa753f82d3b40fba188ee09d9d8b4f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aa753f82d3b40fba188ee09d9d8b4f7.jpg", "file_size": 19324, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A38#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa753f82d3b40fba188ee09d9d8b4f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa753f82d3b40fba188ee09d9d8b4f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa753f82d3b40fba188ee09d9d8b4f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aa753f82d3b40fba188ee09d9d8b4f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aa753f82d3b40fba188ee09d9d8b4f7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvFs8ID4hZHCKToxsh0bwFEAzG4=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.490881+00 2025-12-09 10:15:03.490886+00 9397 DL30450#短款前后幅彩兰XL SPMX-20240815304564 \N \N \N 1 \N [{"file_id": "4b37e52d-65be-4905-a617-9aa9226611b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ee08c96a9c24facb48721ad7212d054.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ee08c96a9c24facb48721ad7212d054.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ee08c96a9c24facb48721ad7212d054.jpg", "file_size": 20570, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee08c96a9c24facb48721ad7212d054.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee08c96a9c24facb48721ad7212d054.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee08c96a9c24facb48721ad7212d054.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ee08c96a9c24facb48721ad7212d054.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ee08c96a9c24facb48721ad7212d054.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0Dad0K6DiIKSJkK6YDJ4-bpDYY=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.492874+00 2025-12-09 10:15:03.49288+00 9398 LZ1250#童装T2号色 SPMX-20240815304567 \N \N \N 1 \N [{"file_id": "746268bf-151b-4fec-95c4-09cddd2b6d6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37ae32fceaca404fa7c7ac3e7a54096c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37ae32fceaca404fa7c7ac3e7a54096c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37ae32fceaca404fa7c7ac3e7a54096c.jpg", "file_size": 17049, "is_delete": false, "file_type": 1, "original_file_name": "LZ1250#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ae32fceaca404fa7c7ac3e7a54096c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ae32fceaca404fa7c7ac3e7a54096c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ae32fceaca404fa7c7ac3e7a54096c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37ae32fceaca404fa7c7ac3e7a54096c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37ae32fceaca404fa7c7ac3e7a54096c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pCt61UKyMyTT-R3AXCZs3nxXZw4=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.494861+00 2025-12-09 10:15:03.494866+00 9399 JTSS107FW#VS-D3 SPMX-20240815304562 \N \N \N 1 \N [{"file_id": "b96fa6a3-cd62-4d1e-8071-abadef6e05a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f064a23c0314875b78d75fb3f8b5592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f064a23c0314875b78d75fb3f8b5592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f064a23c0314875b78d75fb3f8b5592.jpg", "file_size": 6930, "is_delete": false, "file_type": 1, "original_file_name": "JTSS107FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f064a23c0314875b78d75fb3f8b5592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f064a23c0314875b78d75fb3f8b5592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f064a23c0314875b78d75fb3f8b5592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f064a23c0314875b78d75fb3f8b5592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f064a23c0314875b78d75fb3f8b5592.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ozo-r9GBCpygykRE-X2shFlAwmA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.496926+00 2025-12-09 10:15:03.496931+00 9400 C338FWF#补片橘色S-左袖 SPMX-20240815304566 \N \N \N 1 \N [{"file_id": "d336c546-5d33-41a7-8df3-b49c74511255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ceef9830a3243338f9d6cbe7465b1de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ceef9830a3243338f9d6cbe7465b1de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ceef9830a3243338f9d6cbe7465b1de.jpg", "file_size": 17243, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色S-左袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceef9830a3243338f9d6cbe7465b1de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceef9830a3243338f9d6cbe7465b1de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceef9830a3243338f9d6cbe7465b1de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ceef9830a3243338f9d6cbe7465b1de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ceef9830a3243338f9d6cbe7465b1de.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJQ5sLjYOwiOYd6W9V4kMp4luxU=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.498973+00 2025-12-09 10:15:03.498978+00 9401 0003-434#黄色 SPMX-20240815304565 \N \N \N 1 \N [{"file_id": "4bf022c4-5321-4dc5-9b17-f3d039c3480b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53613579fc344812ba63c9a9756fb6d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53613579fc344812ba63c9a9756fb6d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53613579fc344812ba63c9a9756fb6d7.jpg", "file_size": 17380, "is_delete": false, "file_type": 1, "original_file_name": "0003-434#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53613579fc344812ba63c9a9756fb6d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53613579fc344812ba63c9a9756fb6d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53613579fc344812ba63c9a9756fb6d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53613579fc344812ba63c9a9756fb6d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53613579fc344812ba63c9a9756fb6d7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AC18i0AmqrTLbfkpjnetHV7GgtQ=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.500985+00 2025-12-09 10:15:03.50099+00 9402 1079-1#粉色 SPMX-20240815304561 \N \N \N 1 \N [{"file_id": "9271339f-3c7b-427d-8250-a10db4ac4ac2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7f824eadf174696b375043d3ec1a1e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7f824eadf174696b375043d3ec1a1e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7f824eadf174696b375043d3ec1a1e8.jpg", "file_size": 19519, "is_delete": false, "file_type": 1, "original_file_name": "1079-1#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f824eadf174696b375043d3ec1a1e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f824eadf174696b375043d3ec1a1e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f824eadf174696b375043d3ec1a1e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7f824eadf174696b375043d3ec1a1e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7f824eadf174696b375043d3ec1a1e8.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwtvQZoeGl2A4Ad29QWTrGgAPSA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.502991+00 2025-12-09 10:15:03.502997+00 9403 FHXGPK-批布003-4 SPMX-20240815304560 \N \N \N 1 \N [{"file_id": "f9633ba9-2c7d-4373-8994-3cdfc233fde6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4d26117cc4945a696fa77a0949d9d48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4d26117cc4945a696fa77a0949d9d48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4d26117cc4945a696fa77a0949d9d48.jpg", "file_size": 37434, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d26117cc4945a696fa77a0949d9d48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d26117cc4945a696fa77a0949d9d48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d26117cc4945a696fa77a0949d9d48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4d26117cc4945a696fa77a0949d9d48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4d26117cc4945a696fa77a0949d9d48.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJMZ9tYqZ4I2z6myu6GbnQzDtts=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.504998+00 2025-12-09 10:15:03.505003+00 9404 FHXGPK-批布003-5 SPMX-20240815304570 \N \N \N 1 \N [{"file_id": "ab0f1620-3483-480e-9d14-9753de4ca674", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e868169728fb43fcb1081832a87d886e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e868169728fb43fcb1081832a87d886e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e868169728fb43fcb1081832a87d886e.jpg", "file_size": 37129, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布003-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e868169728fb43fcb1081832a87d886e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e868169728fb43fcb1081832a87d886e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e868169728fb43fcb1081832a87d886e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e868169728fb43fcb1081832a87d886e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e868169728fb43fcb1081832a87d886e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-_i3GEtK3Xj5TMlmctO5P1SEig=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.507004+00 2025-12-09 10:15:03.507009+00 9405 HT0101-A4#图1 SPMX-20240815304572 \N \N \N 1 \N [{"file_id": "db410bc9-a395-480a-9388-b56a17d78de6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "697c9c21a9d045c88584cbebdd3c563d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "697c9c21a9d045c88584cbebdd3c563d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "697c9c21a9d045c88584cbebdd3c563d.jpg", "file_size": 71384, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A4#图1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697c9c21a9d045c88584cbebdd3c563d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697c9c21a9d045c88584cbebdd3c563d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697c9c21a9d045c88584cbebdd3c563d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/697c9c21a9d045c88584cbebdd3c563d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/697c9c21a9d045c88584cbebdd3c563d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgrFrnlt2mXpd8-FGyLbWp_t7CA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.508999+00 2025-12-09 10:15:03.509004+00 9406 LJ84#短裤 SPMX-20240815304563 \N \N \N 1 \N [{"file_id": "4c55cdf3-04af-4e27-bc83-02b0fdcc28da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c10c623258a24ec699096ab3c2afada3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c10c623258a24ec699096ab3c2afada3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c10c623258a24ec699096ab3c2afada3.jpg", "file_size": 18472, "is_delete": false, "file_type": 1, "original_file_name": "LJ84#短裤.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c623258a24ec699096ab3c2afada3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c623258a24ec699096ab3c2afada3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c623258a24ec699096ab3c2afada3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c10c623258a24ec699096ab3c2afada3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c10c623258a24ec699096ab3c2afada3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlZTXrwjHYgvhWnB1ZtY8XEUG3Q=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.510992+00 2025-12-09 10:15:03.510998+00 9407 23-2114#A6-领子3XL SPMX-20240815304559 \N \N \N 1 \N [{"file_id": "92efced7-52d4-4e41-b2ce-187ea7eadd91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a71238e588c645b7adb01720318a1dd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a71238e588c645b7adb01720318a1dd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a71238e588c645b7adb01720318a1dd6.jpg", "file_size": 12660, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71238e588c645b7adb01720318a1dd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71238e588c645b7adb01720318a1dd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71238e588c645b7adb01720318a1dd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a71238e588c645b7adb01720318a1dd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a71238e588c645b7adb01720318a1dd6.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uGVtV9hZ53yxJzF7McxQvtVfI50=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.51289+00 2025-12-09 10:15:03.512896+00 9408 1079-1#黄色 SPMX-20240815304569 \N \N \N 1 \N [{"file_id": "6eaa314f-e8bb-4db7-9079-d01a74dd8f14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23c54976cfcc45508f7c0d90838ffc07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23c54976cfcc45508f7c0d90838ffc07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23c54976cfcc45508f7c0d90838ffc07.jpg", "file_size": 20592, "is_delete": false, "file_type": 1, "original_file_name": "1079-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c54976cfcc45508f7c0d90838ffc07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c54976cfcc45508f7c0d90838ffc07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23c54976cfcc45508f7c0d90838ffc07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23c54976cfcc45508f7c0d90838ffc07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23c54976cfcc45508f7c0d90838ffc07.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM6HjO_3MkyfXphWq_SQz7oR2Nc=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.514662+00 2025-12-09 10:15:03.514667+00 9409 DL30450#短款前后幅蓝绿2XL SPMX-20240815304575 \N \N \N 1 \N [{"file_id": "b493973d-4857-4818-bdeb-85b9a23120c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0366ec757b044c0ea06e0a6fee2d462d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0366ec757b044c0ea06e0a6fee2d462d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0366ec757b044c0ea06e0a6fee2d462d.jpg", "file_size": 20928, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅蓝绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366ec757b044c0ea06e0a6fee2d462d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366ec757b044c0ea06e0a6fee2d462d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366ec757b044c0ea06e0a6fee2d462d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0366ec757b044c0ea06e0a6fee2d462d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0366ec757b044c0ea06e0a6fee2d462d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9kBqjWLY2tBc888QwiUAs6t_6k=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.516466+00 2025-12-09 10:15:03.516471+00 9410 0003-434#黑色 SPMX-20240815304576 \N \N \N 1 \N [{"file_id": "f82978cb-4bb4-4da9-8d86-9bec66aa424f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea0b67d785b34e599616a5495b2dd202.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea0b67d785b34e599616a5495b2dd202.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea0b67d785b34e599616a5495b2dd202.jpg", "file_size": 18491, "is_delete": false, "file_type": 1, "original_file_name": "0003-434#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b67d785b34e599616a5495b2dd202.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b67d785b34e599616a5495b2dd202.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b67d785b34e599616a5495b2dd202.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea0b67d785b34e599616a5495b2dd202.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea0b67d785b34e599616a5495b2dd202.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkvIzgOLC3NInnCg60oiHRc_yF4=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.518257+00 2025-12-09 10:15:03.518262+00 9411 FHXGPK-批布004-1 SPMX-20240815304577 \N \N \N 1 \N [{"file_id": "026b1de4-1bd1-4a45-992b-e800cdec6bb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9891784f4a574fe7a98ff891e0d85cfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9891784f4a574fe7a98ff891e0d85cfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9891784f4a574fe7a98ff891e0d85cfc.jpg", "file_size": 32287, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9891784f4a574fe7a98ff891e0d85cfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9891784f4a574fe7a98ff891e0d85cfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9891784f4a574fe7a98ff891e0d85cfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9891784f4a574fe7a98ff891e0d85cfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9891784f4a574fe7a98ff891e0d85cfc.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKy1l87WvxFh-51V8u9UagvPSXg=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.520261+00 2025-12-09 10:15:03.520266+00 9412 LZ1250#童装T3号色 SPMX-20240815304579 \N \N \N 1 \N [{"file_id": "37b66df1-db11-42a0-b1e8-23c624c3f264", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04fe3d36c2ae4254a08f56d1ba18e64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04fe3d36c2ae4254a08f56d1ba18e64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04fe3d36c2ae4254a08f56d1ba18e64b.jpg", "file_size": 16591, "is_delete": false, "file_type": 1, "original_file_name": "LZ1250#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe3d36c2ae4254a08f56d1ba18e64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe3d36c2ae4254a08f56d1ba18e64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fe3d36c2ae4254a08f56d1ba18e64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04fe3d36c2ae4254a08f56d1ba18e64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04fe3d36c2ae4254a08f56d1ba18e64b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRu9iOQxKKo_NWXgrPtAbx9S0dM=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.522251+00 2025-12-09 10:15:03.52226+00 9413 23-2114#A7-3XL SPMX-20240815304578 \N \N \N 1 \N [{"file_id": "2381f10f-63a9-4347-bb30-94a4bb1cb4bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b01d29de8cd45ffae93aaa8a328b49b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b01d29de8cd45ffae93aaa8a328b49b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b01d29de8cd45ffae93aaa8a328b49b.jpg", "file_size": 16793, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b01d29de8cd45ffae93aaa8a328b49b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b01d29de8cd45ffae93aaa8a328b49b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b01d29de8cd45ffae93aaa8a328b49b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b01d29de8cd45ffae93aaa8a328b49b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b01d29de8cd45ffae93aaa8a328b49b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThQuPQjPW79Nh3yedTz5JSYTgu4=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.52427+00 2025-12-09 10:15:03.524275+00 9414 LJ9911FW#橙2XL VS-D3 SPMX-20240815304573 \N \N \N 1 \N [{"file_id": "1e8cf763-c9fe-433a-806c-adc9c03c4a9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdc1c0b744994e0ea22b868841686c24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdc1c0b744994e0ea22b868841686c24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdc1c0b744994e0ea22b868841686c24.jpg", "file_size": 14626, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#橙2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc1c0b744994e0ea22b868841686c24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc1c0b744994e0ea22b868841686c24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc1c0b744994e0ea22b868841686c24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdc1c0b744994e0ea22b868841686c24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdc1c0b744994e0ea22b868841686c24.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6kerm9C-G2UwZ8dnKcUVO7pRHA=", "createTime": "2024-08-15 14:48:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.526264+00 2025-12-09 10:15:03.526269+00 9415 JTSS108FW#VS-D3 SPMX-20240815304574 \N \N \N 1 \N [{"file_id": "15b32427-4458-4301-8d81-d73b533e075a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "663d15bbf650418da9ec9986c791106a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "663d15bbf650418da9ec9986c791106a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "663d15bbf650418da9ec9986c791106a.jpg", "file_size": 12355, "is_delete": false, "file_type": 1, "original_file_name": "JTSS108FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663d15bbf650418da9ec9986c791106a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663d15bbf650418da9ec9986c791106a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/663d15bbf650418da9ec9986c791106a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/663d15bbf650418da9ec9986c791106a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/663d15bbf650418da9ec9986c791106a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gau3H0m5Xqg3M0_CwecgtfyPg5E=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.528278+00 2025-12-09 10:15:03.528284+00 9416 C338FWF#补片橘色S-补片上衣 SPMX-20240815304580 \N \N \N 1 \N [{"file_id": "f0ab2052-1d58-44e2-a020-f6fbfa5541ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef0878bde404877a5bbbd6dbc098c0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef0878bde404877a5bbbd6dbc098c0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef0878bde404877a5bbbd6dbc098c0f.jpg", "file_size": 23119, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色S-补片上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef0878bde404877a5bbbd6dbc098c0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef0878bde404877a5bbbd6dbc098c0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef0878bde404877a5bbbd6dbc098c0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef0878bde404877a5bbbd6dbc098c0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef0878bde404877a5bbbd6dbc098c0f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5DZPVsjCu6lZBL2Rl9QgyKjKxMY=", "createTime": "2024-08-15 14:48:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.530281+00 2025-12-09 10:15:03.530286+00 9417 80339#前幅 SPMX-20240815304583 \N \N \N 1 \N [{"file_id": "3f9bb72a-5fea-4473-9b90-f9ebf59b2c21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a0887b3f8e44b20aaaded74faf31d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a0887b3f8e44b20aaaded74faf31d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a0887b3f8e44b20aaaded74faf31d16.jpg", "file_size": 18221, "is_delete": false, "file_type": 1, "original_file_name": "80339#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a0887b3f8e44b20aaaded74faf31d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a0887b3f8e44b20aaaded74faf31d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a0887b3f8e44b20aaaded74faf31d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a0887b3f8e44b20aaaded74faf31d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a0887b3f8e44b20aaaded74faf31d16.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwuRkB9u1UH-pWAu8M9LjCXo1HQ=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.532308+00 2025-12-09 10:15:03.532313+00 9418 HT0101-A4#图2 SPMX-20240815304582 \N \N \N 1 \N [{"file_id": "72f07bf7-ff59-4d3e-824c-791f24b10cd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b00e1826f2441a4b8c8a31fc9fb2480.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b00e1826f2441a4b8c8a31fc9fb2480.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b00e1826f2441a4b8c8a31fc9fb2480.jpg", "file_size": 35208, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A4#图2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00e1826f2441a4b8c8a31fc9fb2480.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00e1826f2441a4b8c8a31fc9fb2480.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b00e1826f2441a4b8c8a31fc9fb2480.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b00e1826f2441a4b8c8a31fc9fb2480.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b00e1826f2441a4b8c8a31fc9fb2480.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3UNGDslN10UeL04ovWk-t1dXqY=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.534298+00 2025-12-09 10:15:03.534303+00 9419 10790#WJC22 SPMX-20240815304584 \N \N \N 1 \N [{"file_id": "92daad7b-ebca-442d-9f9d-91526f0dbb84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef84e8ef1bc046b49d8a13e082b94b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef84e8ef1bc046b49d8a13e082b94b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef84e8ef1bc046b49d8a13e082b94b8b.jpg", "file_size": 32341, "is_delete": false, "file_type": 1, "original_file_name": "10790#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef84e8ef1bc046b49d8a13e082b94b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef84e8ef1bc046b49d8a13e082b94b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef84e8ef1bc046b49d8a13e082b94b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef84e8ef1bc046b49d8a13e082b94b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef84e8ef1bc046b49d8a13e082b94b8b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCXCRHgpElrp7n9rDE6snfwgDnE=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.536304+00 2025-12-09 10:15:03.536309+00 9420 LJ9911FW#橙L VS-D3 SPMX-20240815304581 \N \N \N 1 \N [{"file_id": "08df7a1a-f858-4b87-808e-41226a96400c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3706c0b484d8473c86eb94a3ee050702.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3706c0b484d8473c86eb94a3ee050702.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3706c0b484d8473c86eb94a3ee050702.jpg", "file_size": 14728, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#橙L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3706c0b484d8473c86eb94a3ee050702.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3706c0b484d8473c86eb94a3ee050702.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3706c0b484d8473c86eb94a3ee050702.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3706c0b484d8473c86eb94a3ee050702.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3706c0b484d8473c86eb94a3ee050702.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_B9q78GsrY3N7ZbQug1I6FXHfEQ=", "createTime": "2024-08-15 14:48:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.538285+00 2025-12-09 10:15:03.53829+00 9421 JTSS111FW#VS-D3 SPMX-20240815304597 \N \N \N 1 \N [{"file_id": "5e019ac7-6d19-4b84-99e3-83447ce6f731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg", "file_size": 24609, "is_delete": false, "file_type": 1, "original_file_name": "JTSS111FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9992fe2c2f554ecd8fc8c538d0d8a4b7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVe2tVRsW9EgC2nFf3DnCaZKv3A=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.540271+00 2025-12-09 10:15:03.540276+00 9422 JTSS109FW#VS-D3 SPMX-20240815304586 \N \N \N 1 \N [{"file_id": "60aa1ed9-4b2f-4f44-9506-47c4decf41a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg", "file_size": 13508, "is_delete": false, "file_type": 1, "original_file_name": "JTSS109FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb4b7e115fe74e2fbf29bcc44a70f7cb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udNxgivVyyl7o0otdXxvAqnxC4Y=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.542154+00 2025-12-09 10:15:03.542159+00 9423 0003-436#WJC22 SPMX-20240815304599 \N \N \N 1 \N [{"file_id": "02e62498-b87e-4f55-9699-e11506e92abd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fde9c519f6241dab0f4e4aacb28fa25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fde9c519f6241dab0f4e4aacb28fa25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fde9c519f6241dab0f4e4aacb28fa25.jpg", "file_size": 24194, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fde9c519f6241dab0f4e4aacb28fa25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fde9c519f6241dab0f4e4aacb28fa25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fde9c519f6241dab0f4e4aacb28fa25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fde9c519f6241dab0f4e4aacb28fa25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fde9c519f6241dab0f4e4aacb28fa25.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7JAT_OMLClebNpcDF_6FZ4TbQk=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.544217+00 2025-12-09 10:15:03.544222+00 9424 C338FWF#补片橘色XL-前左 SPMX-20240815304585 \N \N \N 1 \N [{"file_id": "9daef687-9b89-4893-99be-085ee217ce55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c265ecefff84e6789b83fabca0e1038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c265ecefff84e6789b83fabca0e1038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c265ecefff84e6789b83fabca0e1038.jpg", "file_size": 18852, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色XL-前左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c265ecefff84e6789b83fabca0e1038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c265ecefff84e6789b83fabca0e1038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c265ecefff84e6789b83fabca0e1038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c265ecefff84e6789b83fabca0e1038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c265ecefff84e6789b83fabca0e1038.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a29FV7UH0TA3THy9yWBC1M8N9SY=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.5462+00 2025-12-09 10:15:03.546205+00 9425 0003-435#WJC22 SPMX-20240815304590 \N \N \N 1 \N [{"file_id": "c6bd4b7d-3545-4410-a9f0-9de389a55235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bd098697c6c4385acd73a6af52fdf64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bd098697c6c4385acd73a6af52fdf64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bd098697c6c4385acd73a6af52fdf64.jpg", "file_size": 12525, "is_delete": false, "file_type": 1, "original_file_name": "0003-435#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd098697c6c4385acd73a6af52fdf64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd098697c6c4385acd73a6af52fdf64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd098697c6c4385acd73a6af52fdf64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bd098697c6c4385acd73a6af52fdf64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bd098697c6c4385acd73a6af52fdf64.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXD-XDnSqKsU8ltgaXOl7cNkudA=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.54826+00 2025-12-09 10:15:03.548265+00 9426 LZ1250#童装T4号色 SPMX-20240815304592 \N \N \N 1 \N [{"file_id": "fe36bfd8-8e65-432c-ac47-30d186e834ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36b07d094255464d8f796ef1e7e8e9e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36b07d094255464d8f796ef1e7e8e9e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36b07d094255464d8f796ef1e7e8e9e2.jpg", "file_size": 16870, "is_delete": false, "file_type": 1, "original_file_name": "LZ1250#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b07d094255464d8f796ef1e7e8e9e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b07d094255464d8f796ef1e7e8e9e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b07d094255464d8f796ef1e7e8e9e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36b07d094255464d8f796ef1e7e8e9e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36b07d094255464d8f796ef1e7e8e9e2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ww8fEGlggMXPQc7D7l2YYLBGf5s=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.550278+00 2025-12-09 10:15:03.550283+00 9427 DL30450#短款前后幅蓝绿XL SPMX-20240815304598 \N \N \N 1 \N [{"file_id": "3afa025f-2f33-4e16-ac04-db4333fa0c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "104035611ea54cdba29433f02444c9ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "104035611ea54cdba29433f02444c9ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "104035611ea54cdba29433f02444c9ba.jpg", "file_size": 20814, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅蓝绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104035611ea54cdba29433f02444c9ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104035611ea54cdba29433f02444c9ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104035611ea54cdba29433f02444c9ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/104035611ea54cdba29433f02444c9ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/104035611ea54cdba29433f02444c9ba.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gD_tg1jOPby5rgxoNNMe8S6SL3s=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.55224+00 2025-12-09 10:15:03.552245+00 9428 HT0101-A4#图3 SPMX-20240815304594 \N \N \N 1 \N [{"file_id": "59b6c882-2cac-4b03-9ca9-501755878393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60fd44fbf7dc4a85a8fc1438615cd7a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60fd44fbf7dc4a85a8fc1438615cd7a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60fd44fbf7dc4a85a8fc1438615cd7a9.jpg", "file_size": 50077, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A4#图3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fd44fbf7dc4a85a8fc1438615cd7a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fd44fbf7dc4a85a8fc1438615cd7a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fd44fbf7dc4a85a8fc1438615cd7a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60fd44fbf7dc4a85a8fc1438615cd7a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60fd44fbf7dc4a85a8fc1438615cd7a9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlTs1lgIzUROtFMOmnA6ekeGqjI=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.554269+00 2025-12-09 10:15:03.554275+00 9429 FHXGPK-批布004-2 SPMX-20240815304588 \N \N \N 1 \N [{"file_id": "2a318c46-c1f3-4137-837d-7dc584a487ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27f2011378b949c08513567f39303983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27f2011378b949c08513567f39303983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27f2011378b949c08513567f39303983.jpg", "file_size": 41575, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布004-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f2011378b949c08513567f39303983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f2011378b949c08513567f39303983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f2011378b949c08513567f39303983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27f2011378b949c08513567f39303983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27f2011378b949c08513567f39303983.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7L0uy-OLXUZt3g7rrJZRWEFGnmA=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.556233+00 2025-12-09 10:15:03.556238+00 9430 DL30450#短款前后幅蓝绿L SPMX-20240815304589 \N \N \N 1 \N [{"file_id": "4d83954f-9ce0-4a06-8295-8a43ea150190", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f416eeaa170140c191d02e49b733388a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f416eeaa170140c191d02e49b733388a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f416eeaa170140c191d02e49b733388a.jpg", "file_size": 21023, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款前后幅蓝绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f416eeaa170140c191d02e49b733388a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f416eeaa170140c191d02e49b733388a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f416eeaa170140c191d02e49b733388a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f416eeaa170140c191d02e49b733388a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f416eeaa170140c191d02e49b733388a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mu147v2QyWbDWGbi0rzWAFHGWSE=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.558299+00 2025-12-09 10:15:03.558304+00 9431 10791#WJC22 SPMX-20240815304596 \N \N \N 1 \N [{"file_id": "8c0aec05-f687-400e-8e58-80e867fab5fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82a326668c5d4f81a39ca8cecff8cf4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82a326668c5d4f81a39ca8cecff8cf4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82a326668c5d4f81a39ca8cecff8cf4d.jpg", "file_size": 17714, "is_delete": false, "file_type": 1, "original_file_name": "10791#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a326668c5d4f81a39ca8cecff8cf4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a326668c5d4f81a39ca8cecff8cf4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a326668c5d4f81a39ca8cecff8cf4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82a326668c5d4f81a39ca8cecff8cf4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82a326668c5d4f81a39ca8cecff8cf4d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LgjLNVGEco1aBzec0hS9r3xggFI=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.560232+00 2025-12-09 10:15:03.560238+00 9432 FHXGPK-批布004-3 SPMX-20240815304600 \N \N \N 1 \N [{"file_id": "7534e731-83d2-4405-8e5e-27116eb4c2de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ef11cef735146b29e072c9a4a13e212.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ef11cef735146b29e072c9a4a13e212.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ef11cef735146b29e072c9a4a13e212.jpg", "file_size": 31261, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布004-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef11cef735146b29e072c9a4a13e212.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef11cef735146b29e072c9a4a13e212.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ef11cef735146b29e072c9a4a13e212.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ef11cef735146b29e072c9a4a13e212.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ef11cef735146b29e072c9a4a13e212.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LimCkVm4UFjBgxs3ec3pxVm93BI=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.562008+00 2025-12-09 10:15:03.562013+00 9433 80339#后幅 SPMX-20240815304595 \N \N \N 1 \N [{"file_id": "64dfd17f-b3bf-46b7-85f6-f82e2258d1e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c99a3c3d35e49d09d61e16a404a788e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c99a3c3d35e49d09d61e16a404a788e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c99a3c3d35e49d09d61e16a404a788e.jpg", "file_size": 17152, "is_delete": false, "file_type": 1, "original_file_name": "80339#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c99a3c3d35e49d09d61e16a404a788e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c99a3c3d35e49d09d61e16a404a788e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c99a3c3d35e49d09d61e16a404a788e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c99a3c3d35e49d09d61e16a404a788e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c99a3c3d35e49d09d61e16a404a788e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQoXEehfjVzBxF4Chwhgk2zn1AA=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.563796+00 2025-12-09 10:15:03.563801+00 9434 LJ9911FW#橙M VS-D3 SPMX-20240815304593 \N \N \N 1 \N [{"file_id": "d8682ea9-6729-428c-ba78-e2cac5bbaa8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5a80dd535df4c80ab79ec89c410d3d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5a80dd535df4c80ab79ec89c410d3d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5a80dd535df4c80ab79ec89c410d3d7.jpg", "file_size": 14095, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#橙M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a80dd535df4c80ab79ec89c410d3d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a80dd535df4c80ab79ec89c410d3d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a80dd535df4c80ab79ec89c410d3d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5a80dd535df4c80ab79ec89c410d3d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5a80dd535df4c80ab79ec89c410d3d7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38qN7f1EClXP6ch9dytPs8wi0Oc=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.565587+00 2025-12-09 10:15:03.565592+00 9435 23-2114#A7-4XL SPMX-20240815304591 \N \N \N 1 \N [{"file_id": "7ef06a2e-07f4-4ab2-89e2-c4c0b295f04a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e55a8ee2f64194ba5a47f66e33ddb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e55a8ee2f64194ba5a47f66e33ddb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e55a8ee2f64194ba5a47f66e33ddb5.jpg", "file_size": 15797, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e55a8ee2f64194ba5a47f66e33ddb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e55a8ee2f64194ba5a47f66e33ddb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e55a8ee2f64194ba5a47f66e33ddb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e55a8ee2f64194ba5a47f66e33ddb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e55a8ee2f64194ba5a47f66e33ddb5.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-L2DqzWyZcYiJcvIiS1oJn_ytk=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.567635+00 2025-12-09 10:15:03.567641+00 9436 HT0101-A5#RC23 SPMX-20240815304606 \N \N \N 1 \N [{"file_id": "fba766c0-4eae-42ac-ac81-cb66e7f307ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "602435d7ae664766a49378ea6799d120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "602435d7ae664766a49378ea6799d120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "602435d7ae664766a49378ea6799d120.jpg", "file_size": 57256, "is_delete": false, "file_type": 1, "original_file_name": "HT0101-A5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602435d7ae664766a49378ea6799d120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602435d7ae664766a49378ea6799d120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602435d7ae664766a49378ea6799d120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/602435d7ae664766a49378ea6799d120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/602435d7ae664766a49378ea6799d120.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usR44I2-H7mtzhW2XHXkmkzMI-c=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.569524+00 2025-12-09 10:15:03.569529+00 9437 C338FWF#补片橘色XL-右袖 SPMX-20240815304602 \N \N \N 1 \N [{"file_id": "37ed1b7e-8255-4ed4-860d-1786b890597e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f65b705fa94c4810bcacccbf8e2827a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f65b705fa94c4810bcacccbf8e2827a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f65b705fa94c4810bcacccbf8e2827a2.jpg", "file_size": 17294, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色XL-右袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65b705fa94c4810bcacccbf8e2827a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65b705fa94c4810bcacccbf8e2827a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f65b705fa94c4810bcacccbf8e2827a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f65b705fa94c4810bcacccbf8e2827a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f65b705fa94c4810bcacccbf8e2827a2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQAgw_s4Liqoe6FUrQYm4UpO8eE=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.571391+00 2025-12-09 10:15:03.571395+00 9438 23-2114#A7-领子3XL SPMX-20240815304603 \N \N \N 1 \N [{"file_id": "629b4970-442a-4152-9851-f7fab0506cc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f511a51b8536425cb3593ab43dfdfcb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f511a51b8536425cb3593ab43dfdfcb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f511a51b8536425cb3593ab43dfdfcb8.jpg", "file_size": 12190, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f511a51b8536425cb3593ab43dfdfcb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f511a51b8536425cb3593ab43dfdfcb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f511a51b8536425cb3593ab43dfdfcb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f511a51b8536425cb3593ab43dfdfcb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f511a51b8536425cb3593ab43dfdfcb8.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qvmhIJbOTPb-ghVWY7vbVjQtseg=", "createTime": "2024-08-15 14:48:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.573013+00 2025-12-09 10:15:03.573017+00 9439 80340#后幅 SPMX-20240815304617 \N \N \N 1 \N [{"file_id": "d7d6c14c-edf4-4812-96d4-f005eb841637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cba56e45e8b4105ac21ad72d36136f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cba56e45e8b4105ac21ad72d36136f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cba56e45e8b4105ac21ad72d36136f6.jpg", "file_size": 17908, "is_delete": false, "file_type": 1, "original_file_name": "80340#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba56e45e8b4105ac21ad72d36136f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba56e45e8b4105ac21ad72d36136f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba56e45e8b4105ac21ad72d36136f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cba56e45e8b4105ac21ad72d36136f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cba56e45e8b4105ac21ad72d36136f6.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hvGXV0Bb2mAEdrpl9ywS7nkC78I=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.574848+00 2025-12-09 10:15:03.574853+00 9440 JTSS112FW#VS-D3 SPMX-20240815304610 \N \N \N 1 \N [{"file_id": "05816d8d-b5cd-4a4a-9ed1-65c6a9a831d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7338e18ce23a4072b69a867f1625aa05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7338e18ce23a4072b69a867f1625aa05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7338e18ce23a4072b69a867f1625aa05.jpg", "file_size": 24109, "is_delete": false, "file_type": 1, "original_file_name": "JTSS112FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7338e18ce23a4072b69a867f1625aa05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7338e18ce23a4072b69a867f1625aa05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7338e18ce23a4072b69a867f1625aa05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7338e18ce23a4072b69a867f1625aa05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7338e18ce23a4072b69a867f1625aa05.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HH69bpjOUnRENWM884P2LoDM4OA=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.576851+00 2025-12-09 10:15:03.576856+00 9441 LZ1250#童装T5号色 SPMX-20240815304604 \N \N \N 1 \N [{"file_id": "2817ebef-8f6c-4c22-9180-f320f5e6919c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d7d8910b5bf412c97d20600c3f2e1a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d7d8910b5bf412c97d20600c3f2e1a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d7d8910b5bf412c97d20600c3f2e1a2.jpg", "file_size": 17440, "is_delete": false, "file_type": 1, "original_file_name": "LZ1250#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7d8910b5bf412c97d20600c3f2e1a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7d8910b5bf412c97d20600c3f2e1a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d7d8910b5bf412c97d20600c3f2e1a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d7d8910b5bf412c97d20600c3f2e1a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d7d8910b5bf412c97d20600c3f2e1a2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_AIscgfgV3_9TD_pqBsOXSUuAQ=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.578962+00 2025-12-09 10:15:03.578967+00 9442 LJ9911FW#橙S VS-D3 SPMX-20240815304605 \N \N \N 1 \N [{"file_id": "a6751f16-a30a-42f1-b993-c5b21219db65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92143b89eee24769ba10f2a95f2387df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92143b89eee24769ba10f2a95f2387df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92143b89eee24769ba10f2a95f2387df.jpg", "file_size": 13967, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#橙S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92143b89eee24769ba10f2a95f2387df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92143b89eee24769ba10f2a95f2387df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92143b89eee24769ba10f2a95f2387df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92143b89eee24769ba10f2a95f2387df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92143b89eee24769ba10f2a95f2387df.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FntgtvszM_3eq1FpVEfGLZg_x-g=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.580609+00 2025-12-09 10:15:03.580614+00 9443 80340#前幅 SPMX-20240815304607 \N \N \N 1 \N [{"file_id": "8ddb9e05-bf82-4698-ba57-bff385131efc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "636518f862b747dab7717f2864a9ec4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "636518f862b747dab7717f2864a9ec4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "636518f862b747dab7717f2864a9ec4d.jpg", "file_size": 19597, "is_delete": false, "file_type": 1, "original_file_name": "80340#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636518f862b747dab7717f2864a9ec4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636518f862b747dab7717f2864a9ec4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636518f862b747dab7717f2864a9ec4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/636518f862b747dab7717f2864a9ec4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/636518f862b747dab7717f2864a9ec4d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UTMinD5y_GlMWPhGAjeHvjzfgs=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.582447+00 2025-12-09 10:15:03.582452+00 9444 C338FWF#补片橘色XL-后片 SPMX-20240815304613 \N \N \N 1 \N [{"file_id": "e952547d-f4a8-4f13-8e70-f638ac3f325b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f591102d48214ea093022713cf46f274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f591102d48214ea093022713cf46f274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f591102d48214ea093022713cf46f274.jpg", "file_size": 20054, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色XL-后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f591102d48214ea093022713cf46f274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f591102d48214ea093022713cf46f274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f591102d48214ea093022713cf46f274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f591102d48214ea093022713cf46f274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f591102d48214ea093022713cf46f274.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Lo2fyWn59k3zoUcKr5IUZuQBkY=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.584069+00 2025-12-09 10:15:03.584073+00 9445 LZ1251#上身1号色 SPMX-20240815304616 \N \N \N 1 \N [{"file_id": "6294d9b3-a5d3-4ad8-a1c0-efe3682a4eee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ea54f9c81af4aac88105de52704a794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ea54f9c81af4aac88105de52704a794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ea54f9c81af4aac88105de52704a794.jpg", "file_size": 17183, "is_delete": false, "file_type": 1, "original_file_name": "LZ1251#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea54f9c81af4aac88105de52704a794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea54f9c81af4aac88105de52704a794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea54f9c81af4aac88105de52704a794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ea54f9c81af4aac88105de52704a794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ea54f9c81af4aac88105de52704a794.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cc6dLDYYHgAZH5yXsbILCgawt1Q=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.585682+00 2025-12-09 10:15:03.585687+00 9446 DL30450#短款袖子原版 SPMX-20240815304609 \N \N \N 1 \N [{"file_id": "75c9ff3b-fd3e-4750-a9b5-f5778dddb87a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c642f095f9794af6b2838430a8aa1532.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c642f095f9794af6b2838430a8aa1532.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c642f095f9794af6b2838430a8aa1532.jpg", "file_size": 13290, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款袖子原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c642f095f9794af6b2838430a8aa1532.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c642f095f9794af6b2838430a8aa1532.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c642f095f9794af6b2838430a8aa1532.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c642f095f9794af6b2838430a8aa1532.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c642f095f9794af6b2838430a8aa1532.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4D3RwXPRsFDJ43XH52VEClWD9k=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.587637+00 2025-12-09 10:15:03.587643+00 9447 0003-436#姜黄 SPMX-20240815304612 \N \N \N 1 \N [{"file_id": "92ba1363-b5a4-41b8-ada4-24baed3c5b77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4327e71c772417d9e61550daa121417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4327e71c772417d9e61550daa121417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4327e71c772417d9e61550daa121417.jpg", "file_size": 18902, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4327e71c772417d9e61550daa121417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4327e71c772417d9e61550daa121417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4327e71c772417d9e61550daa121417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4327e71c772417d9e61550daa121417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4327e71c772417d9e61550daa121417.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7pBXNBOlEKE25joUe9VbW4OZZ4Q=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.589652+00 2025-12-09 10:15:03.589657+00 9448 23-2114#A7-领子4XL SPMX-20240815304614 \N \N \N 1 \N [{"file_id": "5b3ffa3f-34da-496d-9362-c37be61fb16f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0918ac9f2614f96a674c546d829589b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0918ac9f2614f96a674c546d829589b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0918ac9f2614f96a674c546d829589b.jpg", "file_size": 12213, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0918ac9f2614f96a674c546d829589b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0918ac9f2614f96a674c546d829589b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0918ac9f2614f96a674c546d829589b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0918ac9f2614f96a674c546d829589b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0918ac9f2614f96a674c546d829589b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUHmurehAgBxAoFQMvWGLwcFtVM=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.591648+00 2025-12-09 10:15:03.591653+00 9449 FHXGPK-批布004-4 SPMX-20240815304611 \N \N \N 1 \N [{"file_id": "ab0cd1cb-2d85-4248-8f21-a444478f4288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d172fd0c2f8f40209f2662a0d8e01b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d172fd0c2f8f40209f2662a0d8e01b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d172fd0c2f8f40209f2662a0d8e01b04.jpg", "file_size": 35049, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布004-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d172fd0c2f8f40209f2662a0d8e01b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d172fd0c2f8f40209f2662a0d8e01b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d172fd0c2f8f40209f2662a0d8e01b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d172fd0c2f8f40209f2662a0d8e01b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d172fd0c2f8f40209f2662a0d8e01b04.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNc6rbvOJ4iH032J0Lm2hKgoFLc=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.593631+00 2025-12-09 10:15:03.593635+00 9450 10792#WJC22 SPMX-20240815304608 \N \N \N 1 \N [{"file_id": "9fed8f7e-1615-47e6-904b-232efe3deeba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a4b39e397b340c4bb74f526ad474b3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a4b39e397b340c4bb74f526ad474b3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a4b39e397b340c4bb74f526ad474b3f.jpg", "file_size": 15297, "is_delete": false, "file_type": 1, "original_file_name": "10792#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4b39e397b340c4bb74f526ad474b3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4b39e397b340c4bb74f526ad474b3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4b39e397b340c4bb74f526ad474b3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a4b39e397b340c4bb74f526ad474b3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a4b39e397b340c4bb74f526ad474b3f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PYepcT-Ica6rCufCrc7vxDP-VvM=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.595675+00 2025-12-09 10:15:03.59568+00 9451 LJ9911FW#橙XL VS-D3 SPMX-20240815304615 \N \N \N 1 \N [{"file_id": "f23a481d-0629-499d-9827-fefc86781053", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4502846015b6483b89bfcd026aea52cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4502846015b6483b89bfcd026aea52cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4502846015b6483b89bfcd026aea52cd.jpg", "file_size": 15141, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#橙XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4502846015b6483b89bfcd026aea52cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4502846015b6483b89bfcd026aea52cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4502846015b6483b89bfcd026aea52cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4502846015b6483b89bfcd026aea52cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4502846015b6483b89bfcd026aea52cd.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Y1WR5FtYgWzi3J1BwSRjDOimlE=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.597689+00 2025-12-09 10:15:03.597694+00 9452 HT0101FWG#A1 SPMX-20240815304618 \N \N \N 1 \N [{"file_id": "f22d92cd-fbfd-45d5-881a-b2f75da3096f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg", "file_size": 16273, "is_delete": false, "file_type": 1, "original_file_name": "HT0101FWG#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2dc5ceddf5e4ac0be8598500c0b0dc8.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7jo2VtO-I1yKnNRRwUWBG-BERU=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.600156+00 2025-12-09 10:15:03.600162+00 9453 10793#WJC22 SPMX-20240815304619 \N \N \N 1 \N [{"file_id": "ef6f7141-85b3-4324-90d4-ed2367ed3d65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8fa4679064f4900bf24184683586539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8fa4679064f4900bf24184683586539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8fa4679064f4900bf24184683586539.jpg", "file_size": 14895, "is_delete": false, "file_type": 1, "original_file_name": "10793#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fa4679064f4900bf24184683586539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fa4679064f4900bf24184683586539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fa4679064f4900bf24184683586539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8fa4679064f4900bf24184683586539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8fa4679064f4900bf24184683586539.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEH3eToNe7nyKZ68nrBQnY8JCus=", "createTime": "2024-08-15 14:48:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.609919+00 2025-12-09 10:15:03.609924+00 9458 23-2114#A8-3XL SPMX-20240815304626 \N \N \N 1 \N [{"file_id": "a6447480-04a5-47f6-80c4-d355c5c4b52b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1081cab03694d28814d90c2975da7e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1081cab03694d28814d90c2975da7e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1081cab03694d28814d90c2975da7e4.jpg", "file_size": 18676, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1081cab03694d28814d90c2975da7e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1081cab03694d28814d90c2975da7e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1081cab03694d28814d90c2975da7e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1081cab03694d28814d90c2975da7e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1081cab03694d28814d90c2975da7e4.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUk7xshEysvjayLwDvn0Q4M2fhE=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.601937+00 2025-12-09 10:15:03.601942+00 9454 DL30450#短款袖子墨绿 SPMX-20240815304620 \N \N \N 1 \N [{"file_id": "e18ee883-650c-4c71-bffb-736e09661b89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aea195fb3ca94d5a86e249924b3e5e72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aea195fb3ca94d5a86e249924b3e5e72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aea195fb3ca94d5a86e249924b3e5e72.jpg", "file_size": 13024, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款袖子墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea195fb3ca94d5a86e249924b3e5e72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea195fb3ca94d5a86e249924b3e5e72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea195fb3ca94d5a86e249924b3e5e72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aea195fb3ca94d5a86e249924b3e5e72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aea195fb3ca94d5a86e249924b3e5e72.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQS3Kt7vcD4WwjvVrTTdqAIOGnQ=", "createTime": "2024-08-15 14:48:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.603958+00 2025-12-09 10:15:03.603963+00 9455 0003-436#灰色 SPMX-20240815304624 \N \N \N 1 \N [{"file_id": "a989bc38-1839-48dc-8b98-dfe69d25ca1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db828553024a4c4c95a3052450b6ad0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db828553024a4c4c95a3052450b6ad0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db828553024a4c4c95a3052450b6ad0a.jpg", "file_size": 22290, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db828553024a4c4c95a3052450b6ad0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db828553024a4c4c95a3052450b6ad0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db828553024a4c4c95a3052450b6ad0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db828553024a4c4c95a3052450b6ad0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db828553024a4c4c95a3052450b6ad0a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ir1MNfYzynWqD9VF1EJZrzBLZIU=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.605952+00 2025-12-09 10:15:03.605957+00 9456 LJ9911FW#粉L VS-D3 SPMX-20240815304632 \N \N \N 1 \N [{"file_id": "22ade221-87e2-4c1c-92e8-d096c2259c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b042ff2fa3941eca3fe422474c63d55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b042ff2fa3941eca3fe422474c63d55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b042ff2fa3941eca3fe422474c63d55.jpg", "file_size": 11114, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b042ff2fa3941eca3fe422474c63d55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b042ff2fa3941eca3fe422474c63d55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b042ff2fa3941eca3fe422474c63d55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b042ff2fa3941eca3fe422474c63d55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b042ff2fa3941eca3fe422474c63d55.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9d13yAP-8dndWTEionjrntHWyok=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.607933+00 2025-12-09 10:15:03.607938+00 9457 JTSS114FW#VS-D3 SPMX-20240815304633 \N \N \N 1 \N [{"file_id": "ec746d5c-7db4-468c-9c14-70211ff359bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3778984fa1f44992b19920a72bef75fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3778984fa1f44992b19920a72bef75fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3778984fa1f44992b19920a72bef75fb.jpg", "file_size": 7124, "is_delete": false, "file_type": 1, "original_file_name": "JTSS114FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778984fa1f44992b19920a72bef75fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778984fa1f44992b19920a72bef75fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778984fa1f44992b19920a72bef75fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3778984fa1f44992b19920a72bef75fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3778984fa1f44992b19920a72bef75fb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cm_nHPOcD_TNsDHXRsPES-oYz9o=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.611916+00 2025-12-09 10:15:03.611921+00 9459 HT010FW#VS-D3深青 SPMX-20240815304630 \N \N \N 1 \N [{"file_id": "b88a2f4d-6761-4101-b78e-1e9d3d6881a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "189a3824d9b740ee955c63acafed2d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "189a3824d9b740ee955c63acafed2d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "189a3824d9b740ee955c63acafed2d28.jpg", "file_size": 15159, "is_delete": false, "file_type": 1, "original_file_name": "HT010FW#VS-D3深青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a3824d9b740ee955c63acafed2d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a3824d9b740ee955c63acafed2d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a3824d9b740ee955c63acafed2d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/189a3824d9b740ee955c63acafed2d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/189a3824d9b740ee955c63acafed2d28.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHeuLeSz0QUYcy68VIzTxdr4e5U=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.613892+00 2025-12-09 10:15:03.613897+00 9460 LZ1251#上身2号色 SPMX-20240815304629 \N \N \N 1 \N [{"file_id": "fb0686be-8314-4f90-a9d5-dbcf1481a74f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5183aaee6c834195b42484702395d337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5183aaee6c834195b42484702395d337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5183aaee6c834195b42484702395d337.jpg", "file_size": 16976, "is_delete": false, "file_type": 1, "original_file_name": "LZ1251#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5183aaee6c834195b42484702395d337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5183aaee6c834195b42484702395d337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5183aaee6c834195b42484702395d337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5183aaee6c834195b42484702395d337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5183aaee6c834195b42484702395d337.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xOSZN_qYWG1AT55uMTPo6LW4ZY=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.615884+00 2025-12-09 10:15:03.615889+00 9461 C338FWF#补片橘色XL-补片上衣 SPMX-20240815304635 \N \N \N 1 \N [{"file_id": "11d5eed1-f31d-42e2-8c05-75587f2d34d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db4c984fcc0043379c04cf2743b166eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db4c984fcc0043379c04cf2743b166eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db4c984fcc0043379c04cf2743b166eb.jpg", "file_size": 23141, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色XL-补片上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4c984fcc0043379c04cf2743b166eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4c984fcc0043379c04cf2743b166eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4c984fcc0043379c04cf2743b166eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db4c984fcc0043379c04cf2743b166eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db4c984fcc0043379c04cf2743b166eb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enUs8qOipP4I6XwmDwE_bopFgCI=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.617881+00 2025-12-09 10:15:03.617886+00 9462 23-2114#A8-4XL SPMX-20240815304636 \N \N \N 1 \N [{"file_id": "68e88318-de39-4a2a-91f1-ff2031690a5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d98d84267f6e4b0884989496e87829cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d98d84267f6e4b0884989496e87829cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d98d84267f6e4b0884989496e87829cb.jpg", "file_size": 18082, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98d84267f6e4b0884989496e87829cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98d84267f6e4b0884989496e87829cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98d84267f6e4b0884989496e87829cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d98d84267f6e4b0884989496e87829cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d98d84267f6e4b0884989496e87829cb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ni6vGOz_IhNfeCS4dIVcYEHzofc=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.619896+00 2025-12-09 10:15:03.619901+00 9463 FHXGPK-批布005-1 SPMX-20240815304634 \N \N \N 1 \N [{"file_id": "ed4bdc3d-e1ac-46e9-b87a-ee0cde52d2fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b381e81c7f24c17ac5262f307367202.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b381e81c7f24c17ac5262f307367202.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b381e81c7f24c17ac5262f307367202.jpg", "file_size": 31394, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布005-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b381e81c7f24c17ac5262f307367202.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b381e81c7f24c17ac5262f307367202.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b381e81c7f24c17ac5262f307367202.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b381e81c7f24c17ac5262f307367202.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b381e81c7f24c17ac5262f307367202.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:da5ziJrfpl6irA9Hw6akcf6Xpkk=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.621932+00 2025-12-09 10:15:03.621937+00 9464 0003-436#粉红 SPMX-20240815304637 \N \N \N 1 \N [{"file_id": "091411e0-6f73-4904-9b72-d5b8acf366cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f22d4a690f0747d1ba62ba1000615c38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f22d4a690f0747d1ba62ba1000615c38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f22d4a690f0747d1ba62ba1000615c38.jpg", "file_size": 20745, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#粉红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22d4a690f0747d1ba62ba1000615c38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22d4a690f0747d1ba62ba1000615c38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22d4a690f0747d1ba62ba1000615c38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f22d4a690f0747d1ba62ba1000615c38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f22d4a690f0747d1ba62ba1000615c38.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBsXW5vuQEMK_ZZdwRUvgDCPFDs=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.623924+00 2025-12-09 10:15:03.623929+00 9465 10794#WJC22 SPMX-20240815304627 \N \N \N 1 \N [{"file_id": "bab590c1-f559-48b1-ab99-6dd446c900f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b7a3866b99645c0ab771e55ef751a95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b7a3866b99645c0ab771e55ef751a95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b7a3866b99645c0ab771e55ef751a95.jpg", "file_size": 20075, "is_delete": false, "file_type": 1, "original_file_name": "10794#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7a3866b99645c0ab771e55ef751a95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7a3866b99645c0ab771e55ef751a95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7a3866b99645c0ab771e55ef751a95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b7a3866b99645c0ab771e55ef751a95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b7a3866b99645c0ab771e55ef751a95.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6H_Lzqc1RrQBzBCKh-drKDqw5rs=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.62583+00 2025-12-09 10:15:03.625835+00 9466 80341#前幅 SPMX-20240815304631 \N \N \N 1 \N [{"file_id": "87568809-0003-4b4c-a386-51edca3a1c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8487870ff146b39393b26f3377abb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8487870ff146b39393b26f3377abb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8487870ff146b39393b26f3377abb9.jpg", "file_size": 19335, "is_delete": false, "file_type": 1, "original_file_name": "80341#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8487870ff146b39393b26f3377abb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8487870ff146b39393b26f3377abb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8487870ff146b39393b26f3377abb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8487870ff146b39393b26f3377abb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8487870ff146b39393b26f3377abb9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_aoJfcEDQiynQ_CdO_WH4Eb9Ccw=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.6359+00 2025-12-09 10:15:03.635905+00 9471 10795#WJC22 SPMX-20240815304638 \N \N \N 1 \N [{"file_id": "91144aae-676d-468f-b6d0-aca297f64fbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2739fe301fe4f2caa798e4f8a7beb2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2739fe301fe4f2caa798e4f8a7beb2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2739fe301fe4f2caa798e4f8a7beb2b.jpg", "file_size": 22450, "is_delete": false, "file_type": 1, "original_file_name": "10795#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739fe301fe4f2caa798e4f8a7beb2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739fe301fe4f2caa798e4f8a7beb2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2739fe301fe4f2caa798e4f8a7beb2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2739fe301fe4f2caa798e4f8a7beb2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2739fe301fe4f2caa798e4f8a7beb2b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8PiG49lKG-tjDc7a_CVVoPSnx4=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.627838+00 2025-12-09 10:15:03.627843+00 9467 C338FWF#补片橘色XL-左袖 SPMX-20240815304625 \N \N \N 1 \N [{"file_id": "d163b205-1bef-4d08-ac4f-2ff3926161aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f820c0e59ae425796672c38903ba889.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f820c0e59ae425796672c38903ba889.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f820c0e59ae425796672c38903ba889.jpg", "file_size": 16989, "is_delete": false, "file_type": 1, "original_file_name": "C338FWF#补片橘色XL-左袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f820c0e59ae425796672c38903ba889.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f820c0e59ae425796672c38903ba889.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f820c0e59ae425796672c38903ba889.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f820c0e59ae425796672c38903ba889.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f820c0e59ae425796672c38903ba889.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pe-VpTFUDCZJKnuLSGfeiB0ZrBA=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.629902+00 2025-12-09 10:15:03.629907+00 9468 DL30450#短款袖子姜黄 SPMX-20240815304628 \N \N \N 1 \N [{"file_id": "839dfe57-45b2-494f-834d-efdd0b2b9982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86aeb3e0b1a04cb0980160dee49405f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86aeb3e0b1a04cb0980160dee49405f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86aeb3e0b1a04cb0980160dee49405f5.jpg", "file_size": 13144, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款袖子姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86aeb3e0b1a04cb0980160dee49405f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86aeb3e0b1a04cb0980160dee49405f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86aeb3e0b1a04cb0980160dee49405f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86aeb3e0b1a04cb0980160dee49405f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86aeb3e0b1a04cb0980160dee49405f5.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:muyaeVNvm-1Jn_AhPtat564TkUY=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.631902+00 2025-12-09 10:15:03.631907+00 9469 JTSS113FW#VS-D3 SPMX-20240815304621 \N \N \N 1 \N [{"file_id": "1bf2722d-fcbf-45e1-b502-b716fe5a23e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de47b21b8a5f4a5baca4b75db10f9f7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de47b21b8a5f4a5baca4b75db10f9f7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de47b21b8a5f4a5baca4b75db10f9f7f.jpg", "file_size": 7133, "is_delete": false, "file_type": 1, "original_file_name": "JTSS113FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de47b21b8a5f4a5baca4b75db10f9f7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de47b21b8a5f4a5baca4b75db10f9f7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de47b21b8a5f4a5baca4b75db10f9f7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de47b21b8a5f4a5baca4b75db10f9f7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de47b21b8a5f4a5baca4b75db10f9f7f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQxcwYyEEwPhkXrLxwprUGzu7H8=", "createTime": "2024-08-15 14:48:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.6339+00 2025-12-09 10:15:03.633905+00 9470 LJ9911FW#粉2XL VS-D3 SPMX-20240815304622 \N \N \N 1 \N [{"file_id": "1f906900-cc47-4593-bf04-40453ed35463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67b30bb1310e4c28b1febd5b9fe61bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67b30bb1310e4c28b1febd5b9fe61bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67b30bb1310e4c28b1febd5b9fe61bb0.jpg", "file_size": 11097, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b30bb1310e4c28b1febd5b9fe61bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b30bb1310e4c28b1febd5b9fe61bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b30bb1310e4c28b1febd5b9fe61bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67b30bb1310e4c28b1febd5b9fe61bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67b30bb1310e4c28b1febd5b9fe61bb0.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AA9djYjcpUNqMhzErWyageGT75Q=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.637914+00 2025-12-09 10:15:03.63792+00 9472 FHXGPK-批布004-5 SPMX-20240815304623 \N \N \N 1 \N [{"file_id": "96f53871-b9fe-45dd-946b-c0fd49a32cf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7ef6317ea6b457d926d8787d6aec0be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7ef6317ea6b457d926d8787d6aec0be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7ef6317ea6b457d926d8787d6aec0be.jpg", "file_size": 36576, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布004-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ef6317ea6b457d926d8787d6aec0be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ef6317ea6b457d926d8787d6aec0be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ef6317ea6b457d926d8787d6aec0be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7ef6317ea6b457d926d8787d6aec0be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7ef6317ea6b457d926d8787d6aec0be.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwGH2g99kTs122TqV7-CdyTtF2c=", "createTime": "2024-08-15 14:48:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.639932+00 2025-12-09 10:15:03.639937+00 9473 HT010FWE#VS-D3 SPMX-20240815304641 \N \N \N 1 \N [{"file_id": "eca684b2-026e-4e20-b295-726a86cdbd1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae09500729884011abf61a8ed595f686.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae09500729884011abf61a8ed595f686.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae09500729884011abf61a8ed595f686.jpg", "file_size": 12051, "is_delete": false, "file_type": 1, "original_file_name": "HT010FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae09500729884011abf61a8ed595f686.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae09500729884011abf61a8ed595f686.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae09500729884011abf61a8ed595f686.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae09500729884011abf61a8ed595f686.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae09500729884011abf61a8ed595f686.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3tZZujJMAFWgHBb3yaIn2jWJPDA=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.641945+00 2025-12-09 10:15:03.64195+00 9474 DL30450#短款袖子彩兰 SPMX-20240815304639 \N \N \N 1 \N [{"file_id": "4f178d6c-9f4f-4b7c-b504-2f687dc50bd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6bae74bbcd4e509f40bb977bf3aa1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6bae74bbcd4e509f40bb977bf3aa1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6bae74bbcd4e509f40bb977bf3aa1f.jpg", "file_size": 13260, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6bae74bbcd4e509f40bb977bf3aa1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6bae74bbcd4e509f40bb977bf3aa1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6bae74bbcd4e509f40bb977bf3aa1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6bae74bbcd4e509f40bb977bf3aa1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6bae74bbcd4e509f40bb977bf3aa1f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zplbEoweZI9VgX5BJQFnuLDLjB4=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.64401+00 2025-12-09 10:15:03.644016+00 9475 80341#后幅 SPMX-20240815304642 \N \N \N 1 \N [{"file_id": "7e78b2b0-35f1-455e-babf-cc3edda76da4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ce147a4ce44b378553774da9b98990.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ce147a4ce44b378553774da9b98990.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ce147a4ce44b378553774da9b98990.jpg", "file_size": 16679, "is_delete": false, "file_type": 1, "original_file_name": "80341#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ce147a4ce44b378553774da9b98990.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ce147a4ce44b378553774da9b98990.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ce147a4ce44b378553774da9b98990.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ce147a4ce44b378553774da9b98990.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ce147a4ce44b378553774da9b98990.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlmJCW2rV-hdTHTywBfcjJ_HcEI=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.646037+00 2025-12-09 10:15:03.646042+00 9476 LZ1251#上身3号色 SPMX-20240815304640 \N \N \N 1 \N [{"file_id": "0482e7b3-c33d-4f73-845f-f3741e8e0040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12919cf4666b489f918507ee5f5d2dc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12919cf4666b489f918507ee5f5d2dc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12919cf4666b489f918507ee5f5d2dc1.jpg", "file_size": 17712, "is_delete": false, "file_type": 1, "original_file_name": "LZ1251#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12919cf4666b489f918507ee5f5d2dc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12919cf4666b489f918507ee5f5d2dc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12919cf4666b489f918507ee5f5d2dc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12919cf4666b489f918507ee5f5d2dc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12919cf4666b489f918507ee5f5d2dc1.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5isSipRluC-MaBmoM0_85LlU-E=", "createTime": "2024-08-15 14:48:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.648061+00 2025-12-09 10:15:03.648066+00 9477 HT011# SPMX-20240815304650 \N \N \N 1 \N [{"file_id": "281b767e-dfe4-4948-8685-36ba0693a25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb6e5dbcded9488a9b665de9afdb7472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb6e5dbcded9488a9b665de9afdb7472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb6e5dbcded9488a9b665de9afdb7472.jpg", "file_size": 21404, "is_delete": false, "file_type": 1, "original_file_name": "HT011#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6e5dbcded9488a9b665de9afdb7472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6e5dbcded9488a9b665de9afdb7472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6e5dbcded9488a9b665de9afdb7472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb6e5dbcded9488a9b665de9afdb7472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb6e5dbcded9488a9b665de9afdb7472.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e-BukENgcSTl6Ow9I35vbU_7Dv8=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.650019+00 2025-12-09 10:15:03.650025+00 9478 FHXGPK-批布005-2 SPMX-20240815304646 \N \N \N 1 \N [{"file_id": "292e27e4-f54d-40b8-8fe5-1a781ccbaa63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdd7b45aef9942ecab25d22e112c9c5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdd7b45aef9942ecab25d22e112c9c5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdd7b45aef9942ecab25d22e112c9c5e.jpg", "file_size": 32308, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布005-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7b45aef9942ecab25d22e112c9c5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7b45aef9942ecab25d22e112c9c5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7b45aef9942ecab25d22e112c9c5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdd7b45aef9942ecab25d22e112c9c5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdd7b45aef9942ecab25d22e112c9c5e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8oF8cCJJmZbv_JGqWzfap_yooYI=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.652052+00 2025-12-09 10:15:03.652057+00 9479 JTSS114FW#vVS-D3 SPMX-20240815304644 \N \N \N 1 \N [{"file_id": "f1b9fc51-9d1e-42c5-afe9-e78cc0c55865", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7206459bbd5a4c2292522959945242cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7206459bbd5a4c2292522959945242cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7206459bbd5a4c2292522959945242cf.jpg", "file_size": 6908, "is_delete": false, "file_type": 1, "original_file_name": "JTSS114FW#vVS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7206459bbd5a4c2292522959945242cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7206459bbd5a4c2292522959945242cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7206459bbd5a4c2292522959945242cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7206459bbd5a4c2292522959945242cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7206459bbd5a4c2292522959945242cf.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMsBI5a9MMDPDoAtSeqO41_Ipjc=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.654044+00 2025-12-09 10:15:03.654049+00 9480 80342#前幅 SPMX-20240815304645 \N \N \N 1 \N [{"file_id": "b8e24392-9e81-4297-ac48-a806a7dae99e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e32d4ef09d49df99b5ab559b4e9593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e32d4ef09d49df99b5ab559b4e9593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e32d4ef09d49df99b5ab559b4e9593.jpg", "file_size": 17898, "is_delete": false, "file_type": 1, "original_file_name": "80342#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e32d4ef09d49df99b5ab559b4e9593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e32d4ef09d49df99b5ab559b4e9593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e32d4ef09d49df99b5ab559b4e9593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e32d4ef09d49df99b5ab559b4e9593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e32d4ef09d49df99b5ab559b4e9593.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1rATHr7mYN2hAX4PMlnvcNp6hM=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.656031+00 2025-12-09 10:15:03.656037+00 9481 0003-436#绿色 SPMX-20240815304647 \N \N \N 1 \N [{"file_id": "87451c2b-7077-459c-960c-4a20884fdcf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46e85615cd2f455f819fd6a71f37cdb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46e85615cd2f455f819fd6a71f37cdb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46e85615cd2f455f819fd6a71f37cdb5.jpg", "file_size": 20881, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e85615cd2f455f819fd6a71f37cdb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e85615cd2f455f819fd6a71f37cdb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e85615cd2f455f819fd6a71f37cdb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46e85615cd2f455f819fd6a71f37cdb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46e85615cd2f455f819fd6a71f37cdb5.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Prt5tlFpdFJssNNq0QLKccW-fMQ=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.658058+00 2025-12-09 10:15:03.658063+00 9482 LZ1251#上身4号色 SPMX-20240815304651 \N \N \N 1 \N [{"file_id": "d524368b-54ea-43ad-8fbb-3829449c58c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "311471fca2674e5aaed926b6f4f13db2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "311471fca2674e5aaed926b6f4f13db2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "311471fca2674e5aaed926b6f4f13db2.jpg", "file_size": 17371, "is_delete": false, "file_type": 1, "original_file_name": "LZ1251#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311471fca2674e5aaed926b6f4f13db2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311471fca2674e5aaed926b6f4f13db2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311471fca2674e5aaed926b6f4f13db2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/311471fca2674e5aaed926b6f4f13db2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/311471fca2674e5aaed926b6f4f13db2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0hcDTdQ2qAarXeneclyX13DUQU=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.66008+00 2025-12-09 10:15:03.660085+00 9483 LJ9911FW#粉M VS-D3 SPMX-20240815304643 \N \N \N 1 \N [{"file_id": "b3e7a48c-8770-4738-a4e4-0a7f3325f574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c5576d5e0cd4e528b5714015164edf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c5576d5e0cd4e528b5714015164edf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c5576d5e0cd4e528b5714015164edf3.jpg", "file_size": 10708, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5576d5e0cd4e528b5714015164edf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5576d5e0cd4e528b5714015164edf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5576d5e0cd4e528b5714015164edf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c5576d5e0cd4e528b5714015164edf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c5576d5e0cd4e528b5714015164edf3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6en4KUM1AF6UKsjU--sdcxJAFw=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.662093+00 2025-12-09 10:15:03.662098+00 9484 23-2114#A8-领子3XL SPMX-20240815304648 \N \N \N 1 \N [{"file_id": "2a0de63a-64c4-4ccc-8f41-f63cf9885a46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e39810c7495b40e79a55dbe4d7d1cb48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e39810c7495b40e79a55dbe4d7d1cb48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e39810c7495b40e79a55dbe4d7d1cb48.jpg", "file_size": 12702, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39810c7495b40e79a55dbe4d7d1cb48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39810c7495b40e79a55dbe4d7d1cb48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39810c7495b40e79a55dbe4d7d1cb48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e39810c7495b40e79a55dbe4d7d1cb48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e39810c7495b40e79a55dbe4d7d1cb48.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e9-ZtG8eYPKJZ1AWBr0IL-IrX7Y=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.664242+00 2025-12-09 10:15:03.664248+00 9485 C338橘色#补片-后片 SPMX-20240815304649 \N \N \N 1 \N [{"file_id": "6b1a6a69-7330-4e31-96e7-61f47632a05b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d67ded1ad39c49328988984b83c509f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d67ded1ad39c49328988984b83c509f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d67ded1ad39c49328988984b83c509f0.jpg", "file_size": 17614, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片-后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67ded1ad39c49328988984b83c509f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67ded1ad39c49328988984b83c509f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67ded1ad39c49328988984b83c509f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d67ded1ad39c49328988984b83c509f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d67ded1ad39c49328988984b83c509f0.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ek2Gt_x_1a6IMItDyZsIMyVOTc0=", "createTime": "2024-08-15 14:48:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.666306+00 2025-12-09 10:15:03.666311+00 9486 HT011#VS-D3 SPMX-20240815304654 \N \N \N 1 \N [{"file_id": "5d958166-4ce4-46eb-9386-4c2ec30d255d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "203d2d288b0447ddb64b423cdf5a6e91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "203d2d288b0447ddb64b423cdf5a6e91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "203d2d288b0447ddb64b423cdf5a6e91.jpg", "file_size": 9232, "is_delete": false, "file_type": 1, "original_file_name": "HT011#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203d2d288b0447ddb64b423cdf5a6e91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203d2d288b0447ddb64b423cdf5a6e91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203d2d288b0447ddb64b423cdf5a6e91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/203d2d288b0447ddb64b423cdf5a6e91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/203d2d288b0447ddb64b423cdf5a6e91.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tcpyy0NTSsN35svEpmnAYh7ifGc=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.668352+00 2025-12-09 10:15:03.668357+00 9487 0003-436#蓝色 SPMX-20240815304657 \N \N \N 1 \N [{"file_id": "98760e75-8902-4e15-aa14-449996e3c0c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88350d854a404ecb96f4b40d0529e89b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88350d854a404ecb96f4b40d0529e89b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88350d854a404ecb96f4b40d0529e89b.jpg", "file_size": 20014, "is_delete": false, "file_type": 1, "original_file_name": "0003-436#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88350d854a404ecb96f4b40d0529e89b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88350d854a404ecb96f4b40d0529e89b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88350d854a404ecb96f4b40d0529e89b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88350d854a404ecb96f4b40d0529e89b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88350d854a404ecb96f4b40d0529e89b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1K1w_Ky_CGRVIIsr8F9bq5-wqFc=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.670456+00 2025-12-09 10:15:03.670461+00 9488 LZ12564#下身1号色 SPMX-20240815304660 \N \N \N 1 \N [{"file_id": "67adf38f-61f6-4fc4-b818-61ce07bc17d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "620d251f95ba47e59ee3e597cb799a1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "620d251f95ba47e59ee3e597cb799a1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "620d251f95ba47e59ee3e597cb799a1a.jpg", "file_size": 17460, "is_delete": false, "file_type": 1, "original_file_name": "LZ12564#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620d251f95ba47e59ee3e597cb799a1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620d251f95ba47e59ee3e597cb799a1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620d251f95ba47e59ee3e597cb799a1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/620d251f95ba47e59ee3e597cb799a1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/620d251f95ba47e59ee3e597cb799a1a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8LsDbzmgzd62h8gtiG8nITXPmj8=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.672587+00 2025-12-09 10:15:03.672592+00 9489 JTSS115FW#VS-D3 SPMX-20240815304662 \N \N \N 1 \N [{"file_id": "8bd00d95-2837-47c1-91cc-518576bf3208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f469f5d17cfa473fa396829cc76c3e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f469f5d17cfa473fa396829cc76c3e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f469f5d17cfa473fa396829cc76c3e06.jpg", "file_size": 11674, "is_delete": false, "file_type": 1, "original_file_name": "JTSS115FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f469f5d17cfa473fa396829cc76c3e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f469f5d17cfa473fa396829cc76c3e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f469f5d17cfa473fa396829cc76c3e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f469f5d17cfa473fa396829cc76c3e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f469f5d17cfa473fa396829cc76c3e06.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wi-GSvdozkJ6YHFKYymjZj0RM-s=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.674847+00 2025-12-09 10:15:03.674852+00 9490 DL30450#短款袖子蓝绿 SPMX-20240815304652 \N \N \N 1 \N [{"file_id": "ea4169b3-9602-483b-9281-2cd1ade9bc63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45d96df4699a4de98af11b162f4deb16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45d96df4699a4de98af11b162f4deb16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45d96df4699a4de98af11b162f4deb16.jpg", "file_size": 13279, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#短款袖子蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d96df4699a4de98af11b162f4deb16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d96df4699a4de98af11b162f4deb16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d96df4699a4de98af11b162f4deb16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45d96df4699a4de98af11b162f4deb16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45d96df4699a4de98af11b162f4deb16.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Eba0lc9766EqxpaNBpRPqo7Diw=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.676947+00 2025-12-09 10:15:03.676952+00 9491 DL30450#长款原版下摆 SPMX-20240815304663 \N \N \N 1 \N [{"file_id": "312aac9b-0585-404c-a6ba-824a8c7a4cb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a804e96edd0041cba9d8ca1ddd0489e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a804e96edd0041cba9d8ca1ddd0489e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a804e96edd0041cba9d8ca1ddd0489e3.jpg", "file_size": 23503, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款原版下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a804e96edd0041cba9d8ca1ddd0489e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a804e96edd0041cba9d8ca1ddd0489e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a804e96edd0041cba9d8ca1ddd0489e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a804e96edd0041cba9d8ca1ddd0489e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a804e96edd0041cba9d8ca1ddd0489e3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tU02I1kcCGrRyZDtFYw5LdCtGao=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.678904+00 2025-12-09 10:15:03.678909+00 9492 C338橘色#补片-袖子 SPMX-20240815304659 \N \N \N 1 \N [{"file_id": "047e461e-884d-49ed-b59b-a4d969cfe52a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "254c07f737cc4204a53d1341fa686b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "254c07f737cc4204a53d1341fa686b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "254c07f737cc4204a53d1341fa686b46.jpg", "file_size": 24915, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片-袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254c07f737cc4204a53d1341fa686b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254c07f737cc4204a53d1341fa686b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254c07f737cc4204a53d1341fa686b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/254c07f737cc4204a53d1341fa686b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/254c07f737cc4204a53d1341fa686b46.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyT6WDuKFSbYK7cjhJrZLRqQSMc=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.680604+00 2025-12-09 10:15:03.680608+00 9493 LJ9911FW#粉S VS-D3 SPMX-20240815304658 \N \N \N 1 \N [{"file_id": "9bf51a86-839b-4d09-a5ba-47e1f512d581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f616b3a35934d48bf1a7f2bb43a358c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f616b3a35934d48bf1a7f2bb43a358c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f616b3a35934d48bf1a7f2bb43a358c.jpg", "file_size": 10473, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f616b3a35934d48bf1a7f2bb43a358c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f616b3a35934d48bf1a7f2bb43a358c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f616b3a35934d48bf1a7f2bb43a358c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f616b3a35934d48bf1a7f2bb43a358c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f616b3a35934d48bf1a7f2bb43a358c.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64_lWnQXGBMNONDOj5n_oWgBqyo=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.68241+00 2025-12-09 10:15:03.682415+00 9494 108#-杏色 SPMX-20240815304653 \N \N \N 1 \N [{"file_id": "65861f20-e3f7-4283-98ae-6d161e20267c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "394486807d9f42729d1c673970c15a08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "394486807d9f42729d1c673970c15a08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "394486807d9f42729d1c673970c15a08.jpg", "file_size": 52142, "is_delete": false, "file_type": 1, "original_file_name": "108#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394486807d9f42729d1c673970c15a08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394486807d9f42729d1c673970c15a08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/394486807d9f42729d1c673970c15a08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/394486807d9f42729d1c673970c15a08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/394486807d9f42729d1c673970c15a08.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLGGpZwDLxPSSlSvik2-EoeRNPg=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.684549+00 2025-12-09 10:15:03.684554+00 9495 23-2114#A8-领子4XL SPMX-20240815304655 \N \N \N 1 \N [{"file_id": "00d06190-9df2-4fc4-b989-92dab47dc49f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc92ef2aef0645da932fb65ace050e27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc92ef2aef0645da932fb65ace050e27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc92ef2aef0645da932fb65ace050e27.jpg", "file_size": 12733, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc92ef2aef0645da932fb65ace050e27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc92ef2aef0645da932fb65ace050e27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc92ef2aef0645da932fb65ace050e27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc92ef2aef0645da932fb65ace050e27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc92ef2aef0645da932fb65ace050e27.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiyJcvis3rfGZpGWth7rlqebG2I=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.686473+00 2025-12-09 10:15:03.686478+00 9496 HT011#VS-D3浅青 SPMX-20240815304664 \N \N \N 1 \N [{"file_id": "014c702a-7e76-4004-9c57-27d584548021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b16847d8d51445697c97ccaf5a9fd3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b16847d8d51445697c97ccaf5a9fd3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b16847d8d51445697c97ccaf5a9fd3f.jpg", "file_size": 6725, "is_delete": false, "file_type": 1, "original_file_name": "HT011#VS-D3浅青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16847d8d51445697c97ccaf5a9fd3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16847d8d51445697c97ccaf5a9fd3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16847d8d51445697c97ccaf5a9fd3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b16847d8d51445697c97ccaf5a9fd3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b16847d8d51445697c97ccaf5a9fd3f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2b9G7t4mnGI58f1Ob9Vio2WGDaU=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.688524+00 2025-12-09 10:15:03.688529+00 9497 FHXGPK-批布005-3 SPMX-20240815304661 \N \N \N 1 \N [{"file_id": "613d5b0c-8882-48a1-b2ea-1cee79b71d50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2811cb2b9b044d119667cb80b10855e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2811cb2b9b044d119667cb80b10855e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2811cb2b9b044d119667cb80b10855e6.jpg", "file_size": 39022, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布005-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2811cb2b9b044d119667cb80b10855e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2811cb2b9b044d119667cb80b10855e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2811cb2b9b044d119667cb80b10855e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2811cb2b9b044d119667cb80b10855e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2811cb2b9b044d119667cb80b10855e6.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLiEr5oJZ7mNT21GbjE4UYzNF4Y=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.690519+00 2025-12-09 10:15:03.690524+00 9498 80342#后幅 SPMX-20240815304656 \N \N \N 1 \N [{"file_id": "0453933c-b93a-4fd3-a19d-e192cfc22d7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41b95609d23c4172aa33708589a5b0dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41b95609d23c4172aa33708589a5b0dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41b95609d23c4172aa33708589a5b0dc.jpg", "file_size": 16130, "is_delete": false, "file_type": 1, "original_file_name": "80342#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b95609d23c4172aa33708589a5b0dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b95609d23c4172aa33708589a5b0dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41b95609d23c4172aa33708589a5b0dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41b95609d23c4172aa33708589a5b0dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41b95609d23c4172aa33708589a5b0dc.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1P0D9EINxM60t_yL9HzTi3hcjfU=", "createTime": "2024-08-15 14:48:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.692498+00 2025-12-09 10:15:03.692503+00 9499 23-2114#A9-3XL SPMX-20240815304665 \N \N \N 1 \N [{"file_id": "7fa70a05-27b3-4024-8f40-f6f8fa5ae916", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c54ee2d4ef764361823ae5b6e30a25aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c54ee2d4ef764361823ae5b6e30a25aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c54ee2d4ef764361823ae5b6e30a25aa.jpg", "file_size": 18362, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54ee2d4ef764361823ae5b6e30a25aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54ee2d4ef764361823ae5b6e30a25aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54ee2d4ef764361823ae5b6e30a25aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c54ee2d4ef764361823ae5b6e30a25aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c54ee2d4ef764361823ae5b6e30a25aa.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pi9BuOIkv36I3-efSdlJelJ1SME=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.694546+00 2025-12-09 10:15:03.694551+00 9500 0003-437#WJC22 SPMX-20240815304667 \N \N \N 1 \N [{"file_id": "7dfb9e9d-47fc-4a99-a2eb-7c4f351844a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8a01c8df8a14f008d4e54408ed0bb3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8a01c8df8a14f008d4e54408ed0bb3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8a01c8df8a14f008d4e54408ed0bb3a.jpg", "file_size": 12340, "is_delete": false, "file_type": 1, "original_file_name": "0003-437#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a01c8df8a14f008d4e54408ed0bb3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a01c8df8a14f008d4e54408ed0bb3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a01c8df8a14f008d4e54408ed0bb3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8a01c8df8a14f008d4e54408ed0bb3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8a01c8df8a14f008d4e54408ed0bb3a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bf8LiEzXMpFDfLjxz7S9pULSSkI=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.696588+00 2025-12-09 10:15:03.696593+00 9501 JTSS116FW#VS-D3 SPMX-20240815304671 \N \N \N 1 \N [{"file_id": "08dc3adf-de59-4515-ad9d-583826c68ad1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e6e61f27dfd46448522207dfa15608e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e6e61f27dfd46448522207dfa15608e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e6e61f27dfd46448522207dfa15608e.jpg", "file_size": 7535, "is_delete": false, "file_type": 1, "original_file_name": "JTSS116FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6e61f27dfd46448522207dfa15608e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6e61f27dfd46448522207dfa15608e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6e61f27dfd46448522207dfa15608e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e6e61f27dfd46448522207dfa15608e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e6e61f27dfd46448522207dfa15608e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwDrs_Y9wPaq2H57lMqlH2NZQCM=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.698605+00 2025-12-09 10:15:03.69861+00 9502 80343#前幅 SPMX-20240815304669 \N \N \N 1 \N [{"file_id": "a5588a3e-c8ce-4990-9554-37adca3f1cee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "874481884a17425c8a90c4348701ba1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "874481884a17425c8a90c4348701ba1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "874481884a17425c8a90c4348701ba1f.jpg", "file_size": 16965, "is_delete": false, "file_type": 1, "original_file_name": "80343#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874481884a17425c8a90c4348701ba1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874481884a17425c8a90c4348701ba1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874481884a17425c8a90c4348701ba1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/874481884a17425c8a90c4348701ba1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/874481884a17425c8a90c4348701ba1f.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtLHa0m8e-0ZA8gdC4NGp-1h7TU=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.700652+00 2025-12-09 10:15:03.700658+00 9503 108#-浅杏色 SPMX-20240815304666 \N \N \N 1 \N [{"file_id": "9b2294d9-fa2b-47a0-9081-b6221f0f9426", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d212398c3d143909b89e9cdc1d63c9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d212398c3d143909b89e9cdc1d63c9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d212398c3d143909b89e9cdc1d63c9e.jpg", "file_size": 50284, "is_delete": false, "file_type": 1, "original_file_name": "108#-浅杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d212398c3d143909b89e9cdc1d63c9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d212398c3d143909b89e9cdc1d63c9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d212398c3d143909b89e9cdc1d63c9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d212398c3d143909b89e9cdc1d63c9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d212398c3d143909b89e9cdc1d63c9e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HZT16iL4REtPWbEX5hH_xeysQ4k=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.702638+00 2025-12-09 10:15:03.702644+00 9504 DL30450#长款原版前后幅2XL SPMX-20240815304670 \N \N \N 1 \N [{"file_id": "0a323bfa-f6d9-4bca-bf9c-962883118a5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52b65034f72c407b83eb9534d29a4fde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52b65034f72c407b83eb9534d29a4fde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52b65034f72c407b83eb9534d29a4fde.jpg", "file_size": 19745, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款原版前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b65034f72c407b83eb9534d29a4fde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b65034f72c407b83eb9534d29a4fde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b65034f72c407b83eb9534d29a4fde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52b65034f72c407b83eb9534d29a4fde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52b65034f72c407b83eb9534d29a4fde.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zazsOtRzCtoyy0dCOBBL2XOlPdk=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.704665+00 2025-12-09 10:15:03.70467+00 9505 LZ12564#下身2号色 SPMX-20240815304672 \N \N \N 1 \N [{"file_id": "f9e38dd5-8554-43b6-bc7f-0d2b47f18d74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de522a607cc84a0eae8d491230a6b137.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de522a607cc84a0eae8d491230a6b137.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de522a607cc84a0eae8d491230a6b137.jpg", "file_size": 18002, "is_delete": false, "file_type": 1, "original_file_name": "LZ12564#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de522a607cc84a0eae8d491230a6b137.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de522a607cc84a0eae8d491230a6b137.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de522a607cc84a0eae8d491230a6b137.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de522a607cc84a0eae8d491230a6b137.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de522a607cc84a0eae8d491230a6b137.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7J_jMRUJEHymU41YDCNcC8OyJ0=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.706662+00 2025-12-09 10:15:03.706667+00 9506 HT011FW SPMX-20240815304668 \N \N \N 1 \N [{"file_id": "9cdd4222-228d-4d5c-9159-20bca919ac52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "286d26ca26f242ccbc5f0215b428c2b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "286d26ca26f242ccbc5f0215b428c2b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "286d26ca26f242ccbc5f0215b428c2b1.jpg", "file_size": 7102, "is_delete": false, "file_type": 1, "original_file_name": "HT011FW.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286d26ca26f242ccbc5f0215b428c2b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286d26ca26f242ccbc5f0215b428c2b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/286d26ca26f242ccbc5f0215b428c2b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/286d26ca26f242ccbc5f0215b428c2b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/286d26ca26f242ccbc5f0215b428c2b1.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrOBh98DrjyfmJseavH7uj4cl8M=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.708656+00 2025-12-09 10:15:03.708661+00 9507 108#-灰色 SPMX-20240815304677 \N \N \N 1 \N [{"file_id": "65fd8d54-b08c-413f-b1a3-7795659836e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ffc07fc3144bd2b27284c4c05013c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ffc07fc3144bd2b27284c4c05013c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ffc07fc3144bd2b27284c4c05013c3.jpg", "file_size": 57378, "is_delete": false, "file_type": 1, "original_file_name": "108#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ffc07fc3144bd2b27284c4c05013c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ffc07fc3144bd2b27284c4c05013c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ffc07fc3144bd2b27284c4c05013c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ffc07fc3144bd2b27284c4c05013c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ffc07fc3144bd2b27284c4c05013c3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1KrtQ1Y7ht136mprsRZjSBr3pro=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.710699+00 2025-12-09 10:15:03.710708+00 9508 FHXGPK-批布006-2 SPMX-20240815304685 \N \N \N 1 \N [{"file_id": "fd0b6efa-eb13-4729-86ff-5c57a87e5bc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de3a1edeb44a48c68228de9923ed6bf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de3a1edeb44a48c68228de9923ed6bf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de3a1edeb44a48c68228de9923ed6bf7.jpg", "file_size": 42233, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布006-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3a1edeb44a48c68228de9923ed6bf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3a1edeb44a48c68228de9923ed6bf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de3a1edeb44a48c68228de9923ed6bf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de3a1edeb44a48c68228de9923ed6bf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de3a1edeb44a48c68228de9923ed6bf7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZSmsxpATM0XoH6BBFQgQAiaQJM=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.712692+00 2025-12-09 10:15:03.712697+00 9509 JTSS117FW#VS-D3 SPMX-20240815304682 \N \N \N 1 \N [{"file_id": "853004d4-6b62-4f54-87c3-ec7c6b4e9d89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed08869679f14632961dd43d928aa5da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed08869679f14632961dd43d928aa5da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed08869679f14632961dd43d928aa5da.jpg", "file_size": 13469, "is_delete": false, "file_type": 1, "original_file_name": "JTSS117FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed08869679f14632961dd43d928aa5da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed08869679f14632961dd43d928aa5da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed08869679f14632961dd43d928aa5da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed08869679f14632961dd43d928aa5da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed08869679f14632961dd43d928aa5da.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8KnWbV7fdfyyNiSSodV6uTjDwo=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.732855+00 2025-12-09 10:15:03.73286+00 9517 23-2114#A9-4XL SPMX-20240815304676 \N \N \N 1 \N [{"file_id": "43d7d2a5-e50e-4d58-81c4-1e62993c986b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7a5ec3172a42359a6681d8510695aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7a5ec3172a42359a6681d8510695aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7a5ec3172a42359a6681d8510695aa.jpg", "file_size": 17205, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a5ec3172a42359a6681d8510695aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a5ec3172a42359a6681d8510695aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a5ec3172a42359a6681d8510695aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7a5ec3172a42359a6681d8510695aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7a5ec3172a42359a6681d8510695aa.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tv7PwdqqivzQ1GDJEWi2PGc_Pns=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.714708+00 2025-12-09 10:15:03.714713+00 9510 LJ9911FW#粉黄绿2XL VS-D3 SPMX-20240815304684 \N \N \N 1 \N [{"file_id": "154cfbf3-5fd1-47b2-8050-21cc1c089dac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "063bb49d5e4b471598571823874fe840.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "063bb49d5e4b471598571823874fe840.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "063bb49d5e4b471598571823874fe840.jpg", "file_size": 10052, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉黄绿2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063bb49d5e4b471598571823874fe840.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063bb49d5e4b471598571823874fe840.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063bb49d5e4b471598571823874fe840.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/063bb49d5e4b471598571823874fe840.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/063bb49d5e4b471598571823874fe840.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z82Sy_wFHXZwY8fcuan63DIbKuo=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.718668+00 2025-12-09 10:15:03.718673+00 9512 LZ12564#下身3号色 SPMX-20240815304683 \N \N \N 1 \N [{"file_id": "b26f2dd9-8317-460e-bdb9-ab22aabfc850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "117800915fe24f84be101c0dd3a63573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "117800915fe24f84be101c0dd3a63573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "117800915fe24f84be101c0dd3a63573.jpg", "file_size": 17742, "is_delete": false, "file_type": 1, "original_file_name": "LZ12564#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117800915fe24f84be101c0dd3a63573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117800915fe24f84be101c0dd3a63573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117800915fe24f84be101c0dd3a63573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/117800915fe24f84be101c0dd3a63573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/117800915fe24f84be101c0dd3a63573.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJLingcRjF1q8sZX_gpVv2oF2_k=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.716656+00 2025-12-09 10:15:03.716661+00 9511 80343#后幅 SPMX-20240815304679 \N \N \N 1 \N [{"file_id": "c80320bf-eea7-47a3-8431-41d3627c3186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb4a8526d56241d0a5ea75339e278c53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb4a8526d56241d0a5ea75339e278c53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb4a8526d56241d0a5ea75339e278c53.jpg", "file_size": 15332, "is_delete": false, "file_type": 1, "original_file_name": "80343#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb4a8526d56241d0a5ea75339e278c53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb4a8526d56241d0a5ea75339e278c53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb4a8526d56241d0a5ea75339e278c53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb4a8526d56241d0a5ea75339e278c53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb4a8526d56241d0a5ea75339e278c53.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-8Sxw7Lms65bqzlURN2hhQxWA8=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.720669+00 2025-12-09 10:15:03.720674+00 9513 LJ9911FW#粉XL VS-D3 SPMX-20240815304674 \N \N \N 1 \N [{"file_id": "8d95847e-379f-48af-922e-fb595a250c98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dece5d215964ad88b7f102b83cda27b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dece5d215964ad88b7f102b83cda27b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dece5d215964ad88b7f102b83cda27b.jpg", "file_size": 11347, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dece5d215964ad88b7f102b83cda27b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dece5d215964ad88b7f102b83cda27b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dece5d215964ad88b7f102b83cda27b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dece5d215964ad88b7f102b83cda27b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dece5d215964ad88b7f102b83cda27b.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:klxIhHei9FQj0l9yvLT1r6_enqY=", "createTime": "2024-08-15 14:48:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.725008+00 2025-12-09 10:15:03.725013+00 9514 HT011FWE#VS-D3 SPMX-20240815304680 \N \N \N 1 \N [{"file_id": "ef6dca0d-993e-498e-8536-fab2d9f82157", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd728c6803c4b5eb190c0ec50d1eca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd728c6803c4b5eb190c0ec50d1eca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd728c6803c4b5eb190c0ec50d1eca2.jpg", "file_size": 12250, "is_delete": false, "file_type": 1, "original_file_name": "HT011FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd728c6803c4b5eb190c0ec50d1eca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd728c6803c4b5eb190c0ec50d1eca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd728c6803c4b5eb190c0ec50d1eca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd728c6803c4b5eb190c0ec50d1eca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd728c6803c4b5eb190c0ec50d1eca2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRewNU_w5MzniWq1mTghJJsWBLg=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.726805+00 2025-12-09 10:15:03.726811+00 9515 C338橘色#补片-裤子后 SPMX-20240815304675 \N \N \N 1 \N [{"file_id": "0797eaac-41b4-4d71-85d7-f399d11b384e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c507e09620a4c699867f196fbb3c287.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c507e09620a4c699867f196fbb3c287.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c507e09620a4c699867f196fbb3c287.jpg", "file_size": 20915, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片-裤子后.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c507e09620a4c699867f196fbb3c287.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c507e09620a4c699867f196fbb3c287.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c507e09620a4c699867f196fbb3c287.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c507e09620a4c699867f196fbb3c287.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c507e09620a4c699867f196fbb3c287.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-rY0gs_WbTI9G2DSfgMaX1YRmY=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.73107+00 2025-12-09 10:15:03.731075+00 9516 C338橘色#补片XL后片 SPMX-20240815304686 \N \N \N 1 \N [{"file_id": "540a2758-9a57-48fb-aefd-fda1d69da94c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6587d108695040d3a2949615b8b31fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6587d108695040d3a2949615b8b31fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6587d108695040d3a2949615b8b31fec.jpg", "file_size": 17851, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片XL后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6587d108695040d3a2949615b8b31fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6587d108695040d3a2949615b8b31fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6587d108695040d3a2949615b8b31fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6587d108695040d3a2949615b8b31fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6587d108695040d3a2949615b8b31fec.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:402YFO6mm739ymkDjy0hT-O8p7o=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.734871+00 2025-12-09 10:15:03.734876+00 9518 23-2114#A9-领子3XL SPMX-20240815304687 \N \N \N 1 \N [{"file_id": "b5d9238d-794f-4657-ac02-3f93f422cd2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5f46958de4442d6bd9661d698a93614.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5f46958de4442d6bd9661d698a93614.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5f46958de4442d6bd9661d698a93614.jpg", "file_size": 12484, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f46958de4442d6bd9661d698a93614.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f46958de4442d6bd9661d698a93614.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f46958de4442d6bd9661d698a93614.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5f46958de4442d6bd9661d698a93614.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5f46958de4442d6bd9661d698a93614.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRV6QgYpU0AKJWf_7n_86MnlgHE=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.736904+00 2025-12-09 10:15:03.736908+00 9519 DL30450#长款原版前后幅L SPMX-20240815304681 \N \N \N 1 \N [{"file_id": "9080fba4-0d1c-4a45-bfdd-81838f136c1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e1d2404cc3402bad325ab18be95ad6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e1d2404cc3402bad325ab18be95ad6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e1d2404cc3402bad325ab18be95ad6.jpg", "file_size": 18873, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款原版前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e1d2404cc3402bad325ab18be95ad6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e1d2404cc3402bad325ab18be95ad6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e1d2404cc3402bad325ab18be95ad6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e1d2404cc3402bad325ab18be95ad6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e1d2404cc3402bad325ab18be95ad6.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Se5PAwezkPOh04R-i-9RcAoOJKQ=", "createTime": "2024-08-15 14:48:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.738901+00 2025-12-09 10:15:03.738907+00 9520 0003-439#WJC22 SPMX-20240815304688 \N \N \N 1 \N [{"file_id": "8eaa1f67-96c3-47c8-8290-13e95f0976da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9728b61c98d64ecab03172a625a8244d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9728b61c98d64ecab03172a625a8244d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9728b61c98d64ecab03172a625a8244d.jpg", "file_size": 16819, "is_delete": false, "file_type": 1, "original_file_name": "0003-439#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9728b61c98d64ecab03172a625a8244d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9728b61c98d64ecab03172a625a8244d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9728b61c98d64ecab03172a625a8244d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9728b61c98d64ecab03172a625a8244d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9728b61c98d64ecab03172a625a8244d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bq3Kl7murjYmsEozp_E6_zJRJNw=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.740897+00 2025-12-09 10:15:03.740902+00 9521 JTSS118FW#vs-d3 SPMX-20240815304691 \N \N \N 1 \N [{"file_id": "86c0532a-74f1-4520-aa53-eadb31b90238", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f19401522bd941cbb71bcbc2dac872c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f19401522bd941cbb71bcbc2dac872c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f19401522bd941cbb71bcbc2dac872c0.jpg", "file_size": 14902, "is_delete": false, "file_type": 1, "original_file_name": "JTSS118FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19401522bd941cbb71bcbc2dac872c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19401522bd941cbb71bcbc2dac872c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19401522bd941cbb71bcbc2dac872c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f19401522bd941cbb71bcbc2dac872c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f19401522bd941cbb71bcbc2dac872c0.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKnv84Ke7YzQ7nqPoLHV4cK3stI=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.742916+00 2025-12-09 10:15:03.742921+00 9522 DL30450#长款原版前后幅XL SPMX-20240815304692 \N \N \N 1 \N [{"file_id": "f156785e-b1f5-42a7-beb8-f0193ede0463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e0641b138244098920695453075026a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e0641b138244098920695453075026a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e0641b138244098920695453075026a.jpg", "file_size": 19041, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款原版前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0641b138244098920695453075026a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0641b138244098920695453075026a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0641b138244098920695453075026a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e0641b138244098920695453075026a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e0641b138244098920695453075026a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Cm4-zXHqT020UjCSQKwt3qu7L4=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.744984+00 2025-12-09 10:15:03.744989+00 9523 LJ9911FW#粉黄绿L VS-D3 SPMX-20240815304694 \N \N \N 1 \N [{"file_id": "cbcda954-be8b-48ed-a462-0d5124389104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38c3fa66dfae46b1ad936026304f2e1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38c3fa66dfae46b1ad936026304f2e1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38c3fa66dfae46b1ad936026304f2e1e.jpg", "file_size": 10351, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉黄绿L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c3fa66dfae46b1ad936026304f2e1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c3fa66dfae46b1ad936026304f2e1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c3fa66dfae46b1ad936026304f2e1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38c3fa66dfae46b1ad936026304f2e1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38c3fa66dfae46b1ad936026304f2e1e.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMYezoVcBNxMoTA-EEfflV2g1tA=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.747017+00 2025-12-09 10:15:03.747023+00 9524 23-2114#A9-领子4XL SPMX-20240815304697 \N \N \N 1 \N [{"file_id": "21abab73-c8c4-4d07-a8dd-36200232021b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51e85e240c14497eb7b25d149dfa66ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51e85e240c14497eb7b25d149dfa66ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51e85e240c14497eb7b25d149dfa66ac.jpg", "file_size": 12815, "is_delete": false, "file_type": 1, "original_file_name": "23-2114#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e85e240c14497eb7b25d149dfa66ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e85e240c14497eb7b25d149dfa66ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e85e240c14497eb7b25d149dfa66ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51e85e240c14497eb7b25d149dfa66ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51e85e240c14497eb7b25d149dfa66ac.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sBl_VbATji6_iBCZ9uMCig1KpE=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.74905+00 2025-12-09 10:15:03.749055+00 9525 JTSS119FW#VS-D3 SPMX-20240815304702 \N \N \N 1 \N [{"file_id": "ce0e84c4-8d89-494e-b822-96a48de4bef8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "783b29d56f4645a388a4828654beec8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "783b29d56f4645a388a4828654beec8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "783b29d56f4645a388a4828654beec8a.jpg", "file_size": 22678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS119FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/783b29d56f4645a388a4828654beec8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/783b29d56f4645a388a4828654beec8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/783b29d56f4645a388a4828654beec8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/783b29d56f4645a388a4828654beec8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/783b29d56f4645a388a4828654beec8a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axIH4tkkh5dfEVv-3E7VXR7CAKg=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.751084+00 2025-12-09 10:15:03.751089+00 9526 DL30450#长款原版袖子 SPMX-20240815304703 \N \N \N 1 \N [{"file_id": "6fed7fe4-185d-489a-b049-08f389c03607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "757972c721614031800d4287dfaf82ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "757972c721614031800d4287dfaf82ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "757972c721614031800d4287dfaf82ec.jpg", "file_size": 13626, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款原版袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/757972c721614031800d4287dfaf82ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/757972c721614031800d4287dfaf82ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/757972c721614031800d4287dfaf82ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/757972c721614031800d4287dfaf82ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/757972c721614031800d4287dfaf82ec.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CK4uIbk-DT2Xn3ksJTmlDZzFQpM=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.753172+00 2025-12-09 10:15:03.753177+00 9527 C338橘色#补片XL袖子 SPMX-20240815304698 \N \N \N 1 \N [{"file_id": "e1ffa918-c3c3-4f8c-9308-d237de93e3e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147d18a983e040cabdc123be200609dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147d18a983e040cabdc123be200609dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147d18a983e040cabdc123be200609dd.jpg", "file_size": 24787, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片XL袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147d18a983e040cabdc123be200609dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147d18a983e040cabdc123be200609dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147d18a983e040cabdc123be200609dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147d18a983e040cabdc123be200609dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147d18a983e040cabdc123be200609dd.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgkGWTmaBqO3R5FrzYxL7Iaub5k=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.755004+00 2025-12-09 10:15:03.755009+00 9528 108#-黑色 SPMX-20240815304700 \N \N \N 1 \N [{"file_id": "e0b278da-16fe-4b9c-bca3-4764f7af0829", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "749899f4425b410a88fb2a6b6f6e07fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "749899f4425b410a88fb2a6b6f6e07fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "749899f4425b410a88fb2a6b6f6e07fb.jpg", "file_size": 51234, "is_delete": false, "file_type": 1, "original_file_name": "108#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749899f4425b410a88fb2a6b6f6e07fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749899f4425b410a88fb2a6b6f6e07fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749899f4425b410a88fb2a6b6f6e07fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/749899f4425b410a88fb2a6b6f6e07fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/749899f4425b410a88fb2a6b6f6e07fb.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8AYKv0GaHXLM1G22HIoQKZcFmmo=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.757004+00 2025-12-09 10:15:03.75701+00 9529 108#-白色 SPMX-20240815304689 \N \N \N 1 \N [{"file_id": "bc4c5684-aa5f-4b5b-af8c-13c4a8faf6f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "009dad7839ee4af2b522c6ffaf0261d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "009dad7839ee4af2b522c6ffaf0261d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "009dad7839ee4af2b522c6ffaf0261d5.jpg", "file_size": 49515, "is_delete": false, "file_type": 1, "original_file_name": "108#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009dad7839ee4af2b522c6ffaf0261d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009dad7839ee4af2b522c6ffaf0261d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/009dad7839ee4af2b522c6ffaf0261d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/009dad7839ee4af2b522c6ffaf0261d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/009dad7839ee4af2b522c6ffaf0261d5.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQ-0Y7woA15fF6x0yfRZMcwzD_U=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.759066+00 2025-12-09 10:15:03.759076+00 9530 0003-439#缩小版 SPMX-20240815304699 \N \N \N 1 \N [{"file_id": "52853d6a-3f3e-4779-a732-f007886a8497", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff0383d3565942208a87035a97ed12bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff0383d3565942208a87035a97ed12bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff0383d3565942208a87035a97ed12bc.jpg", "file_size": 13897, "is_delete": false, "file_type": 1, "original_file_name": "0003-439#缩小版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0383d3565942208a87035a97ed12bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0383d3565942208a87035a97ed12bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0383d3565942208a87035a97ed12bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff0383d3565942208a87035a97ed12bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff0383d3565942208a87035a97ed12bc.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jY8spAcKpQRNKga93IKxZjUWQts=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.761142+00 2025-12-09 10:15:03.761147+00 9531 HT012#VS-D3 SPMX-20240815304693 \N \N \N 1 \N [{"file_id": "5f161ddd-7327-4fcc-a4b0-7c9bcc3775cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a2497205a654b739823af68743495ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a2497205a654b739823af68743495ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a2497205a654b739823af68743495ce.jpg", "file_size": 18738, "is_delete": false, "file_type": 1, "original_file_name": "HT012#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2497205a654b739823af68743495ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2497205a654b739823af68743495ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2497205a654b739823af68743495ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a2497205a654b739823af68743495ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a2497205a654b739823af68743495ce.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ke6bdFPneg7ZKbBMjOPYdZVM3Qs=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.763176+00 2025-12-09 10:15:03.763182+00 9532 80344#前幅 SPMX-20240815304690 \N \N \N 1 \N [{"file_id": "da46a9aa-9bcc-40e2-b061-4bd5135b00bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0ceb612678c4c90bfb769f8532e494d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0ceb612678c4c90bfb769f8532e494d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0ceb612678c4c90bfb769f8532e494d.jpg", "file_size": 16749, "is_delete": false, "file_type": 1, "original_file_name": "80344#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ceb612678c4c90bfb769f8532e494d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ceb612678c4c90bfb769f8532e494d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0ceb612678c4c90bfb769f8532e494d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0ceb612678c4c90bfb769f8532e494d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0ceb612678c4c90bfb769f8532e494d.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:00sIGDinc14FMmYQi2c8DNUq9v4=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.765211+00 2025-12-09 10:15:03.765216+00 9533 LZ12564#下身4号色 SPMX-20240815304695 \N \N \N 1 \N [{"file_id": "bcfc674c-8f0a-454c-9a49-9a91c7c1d5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de5bef06295644159480f11ef61c3435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de5bef06295644159480f11ef61c3435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de5bef06295644159480f11ef61c3435.jpg", "file_size": 17997, "is_delete": false, "file_type": 1, "original_file_name": "LZ12564#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5bef06295644159480f11ef61c3435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5bef06295644159480f11ef61c3435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5bef06295644159480f11ef61c3435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de5bef06295644159480f11ef61c3435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de5bef06295644159480f11ef61c3435.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEKzVGdcCO_Z1_wBgMyE1HWhkxc=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.767038+00 2025-12-09 10:15:03.767043+00 9534 FHXGPK-批布006-3 SPMX-20240815304696 \N \N \N 1 \N [{"file_id": "c1899f11-736e-4291-9eaa-489bacffd722", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65c7dce85405458cbbf5b299b9ec55c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65c7dce85405458cbbf5b299b9ec55c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65c7dce85405458cbbf5b299b9ec55c3.jpg", "file_size": 47428, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布006-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c7dce85405458cbbf5b299b9ec55c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c7dce85405458cbbf5b299b9ec55c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c7dce85405458cbbf5b299b9ec55c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65c7dce85405458cbbf5b299b9ec55c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65c7dce85405458cbbf5b299b9ec55c3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dd_LzCqVOhDYTGVcpjXWPAj60WE=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.769105+00 2025-12-09 10:15:03.76911+00 9535 80344#后幅 SPMX-20240815304701 \N \N \N 1 \N [{"file_id": "50a371bf-be8f-4370-a294-2075122f1a9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cf7d20073204b90ab56fb2820c4ee2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cf7d20073204b90ab56fb2820c4ee2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cf7d20073204b90ab56fb2820c4ee2a.jpg", "file_size": 15570, "is_delete": false, "file_type": 1, "original_file_name": "80344#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cf7d20073204b90ab56fb2820c4ee2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cf7d20073204b90ab56fb2820c4ee2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cf7d20073204b90ab56fb2820c4ee2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cf7d20073204b90ab56fb2820c4ee2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cf7d20073204b90ab56fb2820c4ee2a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LO2KfWX4-Bemmj04X1zyQ0DsZiA=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.77118+00 2025-12-09 10:15:03.771186+00 9536 LZ1258#背心款1号色 SPMX-20240815304706 \N \N \N 1 \N [{"file_id": "514ca692-1d5a-4b35-9aff-6336da710729", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af822e13738b4527b94b6ecdcf31dee3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af822e13738b4527b94b6ecdcf31dee3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af822e13738b4527b94b6ecdcf31dee3.jpg", "file_size": 15193, "is_delete": false, "file_type": 1, "original_file_name": "LZ1258#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af822e13738b4527b94b6ecdcf31dee3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af822e13738b4527b94b6ecdcf31dee3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af822e13738b4527b94b6ecdcf31dee3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af822e13738b4527b94b6ecdcf31dee3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af822e13738b4527b94b6ecdcf31dee3.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2aRSE2vqUI2lKwb6m1529b1bqs=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.77323+00 2025-12-09 10:15:03.773235+00 9537 0003-43FWF#V5曲线 SPMX-20240815304713 \N \N \N 1 \N [{"file_id": "6459982b-10b0-4f30-aca2-8ce604adebaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "247ecb3ca60c4cd09400784b9fbec03a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "247ecb3ca60c4cd09400784b9fbec03a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "247ecb3ca60c4cd09400784b9fbec03a.jpg", "file_size": 17045, "is_delete": false, "file_type": 1, "original_file_name": "0003-43FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247ecb3ca60c4cd09400784b9fbec03a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247ecb3ca60c4cd09400784b9fbec03a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247ecb3ca60c4cd09400784b9fbec03a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/247ecb3ca60c4cd09400784b9fbec03a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/247ecb3ca60c4cd09400784b9fbec03a.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ei6E44gUOquS4J02QmZwsbhZvik=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.775305+00 2025-12-09 10:15:03.775309+00 9538 FHXGPK-批布006-4 SPMX-20240815304707 \N \N \N 1 \N [{"file_id": "d9122c6e-0df6-4f18-a3dc-7e2f2606079e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f2841a97b5f43a38219e1506b53f9b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f2841a97b5f43a38219e1506b53f9b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f2841a97b5f43a38219e1506b53f9b4.jpg", "file_size": 41869, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布006-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2841a97b5f43a38219e1506b53f9b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2841a97b5f43a38219e1506b53f9b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2841a97b5f43a38219e1506b53f9b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f2841a97b5f43a38219e1506b53f9b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f2841a97b5f43a38219e1506b53f9b4.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KufEXFu5FUfhXVrdlh8JY6ptnQ=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.777143+00 2025-12-09 10:15:03.777149+00 9539 108#长款下摆原版黑 SPMX-20240815304710 \N \N \N 1 \N [{"file_id": "19fb63f0-9cdd-49e0-96a5-ed7892c4a33b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e72cf70145b34203a6e01cf19d3749f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e72cf70145b34203a6e01cf19d3749f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e72cf70145b34203a6e01cf19d3749f7.jpg", "file_size": 17370, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆原版黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e72cf70145b34203a6e01cf19d3749f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e72cf70145b34203a6e01cf19d3749f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e72cf70145b34203a6e01cf19d3749f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e72cf70145b34203a6e01cf19d3749f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e72cf70145b34203a6e01cf19d3749f7.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54_E7yWfytRsi_p6HeuAdsQ9whI=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.779097+00 2025-12-09 10:15:03.779102+00 9540 C338橘色#补片XL裤子后 SPMX-20240815304708 \N \N \N 1 \N [{"file_id": "f78c77d5-0e23-47db-8730-7774dceb9ff2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc0314c7abeb4bf7a2b7b273ce334cc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc0314c7abeb4bf7a2b7b273ce334cc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc0314c7abeb4bf7a2b7b273ce334cc9.jpg", "file_size": 21016, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色#补片XL裤子后.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0314c7abeb4bf7a2b7b273ce334cc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0314c7abeb4bf7a2b7b273ce334cc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0314c7abeb4bf7a2b7b273ce334cc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc0314c7abeb4bf7a2b7b273ce334cc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc0314c7abeb4bf7a2b7b273ce334cc9.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6RUeqA9DRT5XwXPRAca_KkvoL8=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.781143+00 2025-12-09 10:15:03.781148+00 9541 JTSS120FW#VS-D3 SPMX-20240815304711 \N \N \N 1 \N [{"file_id": "7a06430b-2780-4336-b27e-0ebb85687c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3176c1b988724409a3a36700671bb1e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3176c1b988724409a3a36700671bb1e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3176c1b988724409a3a36700671bb1e2.jpg", "file_size": 10779, "is_delete": false, "file_type": 1, "original_file_name": "JTSS120FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3176c1b988724409a3a36700671bb1e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3176c1b988724409a3a36700671bb1e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3176c1b988724409a3a36700671bb1e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3176c1b988724409a3a36700671bb1e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3176c1b988724409a3a36700671bb1e2.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lqQe3_jvTL34sqhdWcjEDzcGQUU=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.783187+00 2025-12-09 10:15:03.783193+00 9542 LJ9911FW#粉黄绿S VS-D3 SPMX-20240815304715 \N \N \N 1 \N [{"file_id": "53fcc233-16dc-4bfa-a570-0c7b8c8a1ff0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6605ce1ed90410192a80554c7878414.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6605ce1ed90410192a80554c7878414.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6605ce1ed90410192a80554c7878414.jpg", "file_size": 10110, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉黄绿S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6605ce1ed90410192a80554c7878414.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6605ce1ed90410192a80554c7878414.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6605ce1ed90410192a80554c7878414.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6605ce1ed90410192a80554c7878414.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6605ce1ed90410192a80554c7878414.jpg?e=1765361702&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAkrQiqBCApiv4UJPQRECqHn6Dg=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.785204+00 2025-12-09 10:15:03.785209+00 9543 HT012#VS-D3粉 SPMX-20240815304705 \N \N \N 1 \N [{"file_id": "8f8cc53b-bbf3-4ddf-b942-6ae309ed8ca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a2e9d1c2eda42838d81b8203bfc3806.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a2e9d1c2eda42838d81b8203bfc3806.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a2e9d1c2eda42838d81b8203bfc3806.jpg", "file_size": 5903, "is_delete": false, "file_type": 1, "original_file_name": "HT012#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2e9d1c2eda42838d81b8203bfc3806.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2e9d1c2eda42838d81b8203bfc3806.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2e9d1c2eda42838d81b8203bfc3806.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a2e9d1c2eda42838d81b8203bfc3806.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a2e9d1c2eda42838d81b8203bfc3806.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShN5a3hRi790WE_nwdHUwrwUUkE=", "createTime": "2024-08-15 14:48:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.787239+00 2025-12-09 10:15:03.787244+00 9544 HT012FWE#VS-D3 SPMX-20240815304716 \N \N \N 1 \N [{"file_id": "43cb14de-787c-4722-91c0-1546fa418a03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "613c9c48f3584884bbc59a09568eb568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "613c9c48f3584884bbc59a09568eb568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "613c9c48f3584884bbc59a09568eb568.jpg", "file_size": 12119, "is_delete": false, "file_type": 1, "original_file_name": "HT012FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613c9c48f3584884bbc59a09568eb568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613c9c48f3584884bbc59a09568eb568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613c9c48f3584884bbc59a09568eb568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/613c9c48f3584884bbc59a09568eb568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/613c9c48f3584884bbc59a09568eb568.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrIXQmRcGI0RSlYPMrC3p5fSemI=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.789265+00 2025-12-09 10:15:03.78927+00 9545 LJ9911FW#粉黄绿M VS-D3 SPMX-20240815304704 \N \N \N 1 \N [{"file_id": "43c251c7-e547-4bd8-adf7-e0bed2736e28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "032bf1de41d54a6dbf388cd8a2385aa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "032bf1de41d54a6dbf388cd8a2385aa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "032bf1de41d54a6dbf388cd8a2385aa5.jpg", "file_size": 10162, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉黄绿M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032bf1de41d54a6dbf388cd8a2385aa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032bf1de41d54a6dbf388cd8a2385aa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032bf1de41d54a6dbf388cd8a2385aa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/032bf1de41d54a6dbf388cd8a2385aa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/032bf1de41d54a6dbf388cd8a2385aa5.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cx8zZeD77g1FQUws9EqyuPiflFA=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.791338+00 2025-12-09 10:15:03.791343+00 9546 80345#前幅 SPMX-20240815304714 \N \N \N 1 \N [{"file_id": "8e2b9aa8-55f0-48c0-a684-aba057a50637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d86481ae026649f7963a93338c21bba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d86481ae026649f7963a93338c21bba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d86481ae026649f7963a93338c21bba7.jpg", "file_size": 17027, "is_delete": false, "file_type": 1, "original_file_name": "80345#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d86481ae026649f7963a93338c21bba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d86481ae026649f7963a93338c21bba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d86481ae026649f7963a93338c21bba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d86481ae026649f7963a93338c21bba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d86481ae026649f7963a93338c21bba7.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHJOxMMmnkXmIs-hHy3OJoltkHg=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.793389+00 2025-12-09 10:15:03.793394+00 9547 LZ1258#背心款2号色 SPMX-20240815304717 \N \N \N 1 \N [{"file_id": "c354d441-3041-4f67-83b1-22f8e6d3ed03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8390d62132d4c58ab3880dcabefb454.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8390d62132d4c58ab3880dcabefb454.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8390d62132d4c58ab3880dcabefb454.jpg", "file_size": 16580, "is_delete": false, "file_type": 1, "original_file_name": "LZ1258#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8390d62132d4c58ab3880dcabefb454.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8390d62132d4c58ab3880dcabefb454.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8390d62132d4c58ab3880dcabefb454.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8390d62132d4c58ab3880dcabefb454.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8390d62132d4c58ab3880dcabefb454.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qub9ImV4h8csPIdVSWtqUF-O_Jk=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.795671+00 2025-12-09 10:15:03.795676+00 9548 23-2115#A1-3XL SPMX-20240815304709 \N \N \N 1 \N [{"file_id": "c626e63a-560e-4880-b2b2-ed84b0af58f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46bcdb33ec884d45838903e58ac3b1e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46bcdb33ec884d45838903e58ac3b1e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46bcdb33ec884d45838903e58ac3b1e8.jpg", "file_size": 17914, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46bcdb33ec884d45838903e58ac3b1e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46bcdb33ec884d45838903e58ac3b1e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46bcdb33ec884d45838903e58ac3b1e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46bcdb33ec884d45838903e58ac3b1e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46bcdb33ec884d45838903e58ac3b1e8.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoYRJUw6o3ZGDViJxWBOozSfo38=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.797614+00 2025-12-09 10:15:03.797622+00 9549 DL30450#长款墨绿下摆 SPMX-20240815304712 \N \N \N 1 \N [{"file_id": "58a4aba9-40a8-4589-8045-f8da913dd04c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c135809f52d4f8abb62d46a4aeafe9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c135809f52d4f8abb62d46a4aeafe9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c135809f52d4f8abb62d46a4aeafe9c.jpg", "file_size": 23091, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款墨绿下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c135809f52d4f8abb62d46a4aeafe9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c135809f52d4f8abb62d46a4aeafe9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c135809f52d4f8abb62d46a4aeafe9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c135809f52d4f8abb62d46a4aeafe9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c135809f52d4f8abb62d46a4aeafe9c.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsWTvU8OgvMfrnvH7qYHrbROOsU=", "createTime": "2024-08-15 14:48:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.799424+00 2025-12-09 10:15:03.799429+00 9550 FHXGPK-批布007-1 SPMX-20240815304731 \N \N \N 1 \N [{"file_id": "37e57525-2ae6-46e7-a5a1-d275a0e7ce23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0842035b77fc4699aa43f54c8f0ea273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0842035b77fc4699aa43f54c8f0ea273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0842035b77fc4699aa43f54c8f0ea273.jpg", "file_size": 56432, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布007-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0842035b77fc4699aa43f54c8f0ea273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0842035b77fc4699aa43f54c8f0ea273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0842035b77fc4699aa43f54c8f0ea273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0842035b77fc4699aa43f54c8f0ea273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0842035b77fc4699aa43f54c8f0ea273.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wV4xGtlhmxNvdz7gE6uO9nN10Y=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.801449+00 2025-12-09 10:15:03.801454+00 9551 DL30450#长款墨绿前后幅2XL SPMX-20240815304722 \N \N \N 1 \N [{"file_id": "2c203012-fbc4-47bc-8fd8-f9e9edec2ead", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e49da3e570b849059ea2e7b28265dadf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e49da3e570b849059ea2e7b28265dadf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e49da3e570b849059ea2e7b28265dadf.jpg", "file_size": 19841, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款墨绿前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49da3e570b849059ea2e7b28265dadf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49da3e570b849059ea2e7b28265dadf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49da3e570b849059ea2e7b28265dadf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e49da3e570b849059ea2e7b28265dadf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e49da3e570b849059ea2e7b28265dadf.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMsdXOa3hlENCZHd1TK6KFn_lto=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.803226+00 2025-12-09 10:15:03.803231+00 9552 JTSS122FW#VS-D3 SPMX-20240815304732 \N \N \N 1 \N [{"file_id": "957970c6-de25-4bdf-af6e-ea6abaf6123f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da4d9690e9434a14bdc18c11c2e8b767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da4d9690e9434a14bdc18c11c2e8b767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da4d9690e9434a14bdc18c11c2e8b767.jpg", "file_size": 17108, "is_delete": false, "file_type": 1, "original_file_name": "JTSS122FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4d9690e9434a14bdc18c11c2e8b767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4d9690e9434a14bdc18c11c2e8b767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4d9690e9434a14bdc18c11c2e8b767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da4d9690e9434a14bdc18c11c2e8b767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da4d9690e9434a14bdc18c11c2e8b767.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRDVCPh9jgw05ixbURXMCYcTMG4=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.805239+00 2025-12-09 10:15:03.805244+00 9553 23-2115#A1-4XL SPMX-20240815304723 \N \N \N 1 \N [{"file_id": "e37445c1-18ae-49e2-a294-37c386ffa9b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daaa85f99eac4c0aa02d72b808c076d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daaa85f99eac4c0aa02d72b808c076d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daaa85f99eac4c0aa02d72b808c076d5.jpg", "file_size": 17139, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daaa85f99eac4c0aa02d72b808c076d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daaa85f99eac4c0aa02d72b808c076d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daaa85f99eac4c0aa02d72b808c076d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daaa85f99eac4c0aa02d72b808c076d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daaa85f99eac4c0aa02d72b808c076d5.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VC_zwgxtBXabPrUZR6nh3YpepRk=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.807256+00 2025-12-09 10:15:03.807261+00 9554 80345#后幅 SPMX-20240815304724 \N \N \N 1 \N [{"file_id": "504bdf74-e44e-40ca-ba4f-cd5bb306150f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f14ecfd511674d2ca108da04ed341826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f14ecfd511674d2ca108da04ed341826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f14ecfd511674d2ca108da04ed341826.jpg", "file_size": 16100, "is_delete": false, "file_type": 1, "original_file_name": "80345#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14ecfd511674d2ca108da04ed341826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14ecfd511674d2ca108da04ed341826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14ecfd511674d2ca108da04ed341826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f14ecfd511674d2ca108da04ed341826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f14ecfd511674d2ca108da04ed341826.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Maiu3AjVqcjsqgYUy7cLoCIh7TI=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.809287+00 2025-12-09 10:15:03.809292+00 9555 0003-440#紫色 SPMX-20240815304725 \N \N \N 1 \N [{"file_id": "5617a60f-12d2-466f-8449-60accbbea167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d45c54836ae845fb80aba2105a435089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d45c54836ae845fb80aba2105a435089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d45c54836ae845fb80aba2105a435089.jpg", "file_size": 10967, "is_delete": false, "file_type": 1, "original_file_name": "0003-440#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45c54836ae845fb80aba2105a435089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45c54836ae845fb80aba2105a435089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45c54836ae845fb80aba2105a435089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d45c54836ae845fb80aba2105a435089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d45c54836ae845fb80aba2105a435089.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Sm77OKCyMT_qpH4kyzcscyw7k4=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.811285+00 2025-12-09 10:15:03.811289+00 9556 DL30450#长款墨绿前后幅L SPMX-20240815304733 \N \N \N 1 \N [{"file_id": "75082cb1-07be-485a-a798-fb71b8e26b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ce0c476f5f149d8b2dea70cb51e604d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ce0c476f5f149d8b2dea70cb51e604d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ce0c476f5f149d8b2dea70cb51e604d.jpg", "file_size": 18660, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款墨绿前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce0c476f5f149d8b2dea70cb51e604d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce0c476f5f149d8b2dea70cb51e604d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce0c476f5f149d8b2dea70cb51e604d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ce0c476f5f149d8b2dea70cb51e604d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ce0c476f5f149d8b2dea70cb51e604d.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O080-U3ptjrYUT8ruAmBoeQGrsk=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.8133+00 2025-12-09 10:15:03.813305+00 9557 108#长款下摆墨绿 SPMX-20240815304719 \N \N \N 1 \N [{"file_id": "bee68284-88ee-4669-b8a5-23df8b8a2251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05accc34b1a543fd9ebe13d8c18f8f70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05accc34b1a543fd9ebe13d8c18f8f70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05accc34b1a543fd9ebe13d8c18f8f70.jpg", "file_size": 16753, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05accc34b1a543fd9ebe13d8c18f8f70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05accc34b1a543fd9ebe13d8c18f8f70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05accc34b1a543fd9ebe13d8c18f8f70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05accc34b1a543fd9ebe13d8c18f8f70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05accc34b1a543fd9ebe13d8c18f8f70.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9qND99igABh4jLHLlFdyVyL8U0=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.81531+00 2025-12-09 10:15:03.815315+00 9558 LZ1258#背心款3号色 SPMX-20240815304728 \N \N \N 1 \N [{"file_id": "ba913373-19c8-476b-9a03-d154e8d70d2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ff986ce26474f6e98da5b14ba3cbead.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ff986ce26474f6e98da5b14ba3cbead.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ff986ce26474f6e98da5b14ba3cbead.jpg", "file_size": 16750, "is_delete": false, "file_type": 1, "original_file_name": "LZ1258#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff986ce26474f6e98da5b14ba3cbead.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff986ce26474f6e98da5b14ba3cbead.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff986ce26474f6e98da5b14ba3cbead.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ff986ce26474f6e98da5b14ba3cbead.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ff986ce26474f6e98da5b14ba3cbead.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oyyuWlqlnGBXmPfrZI7KUeoEK-U=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.817286+00 2025-12-09 10:15:03.817291+00 9559 C338橘色补片S右边 SPMX-20240815304730 \N \N \N 1 \N [{"file_id": "93b740f7-a120-4519-a5fe-72afd0297ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80a8ea4ea20a40c7b25a56efe9b77a14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80a8ea4ea20a40c7b25a56efe9b77a14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80a8ea4ea20a40c7b25a56efe9b77a14.jpg", "file_size": 16945, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色补片S右边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8ea4ea20a40c7b25a56efe9b77a14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8ea4ea20a40c7b25a56efe9b77a14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8ea4ea20a40c7b25a56efe9b77a14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80a8ea4ea20a40c7b25a56efe9b77a14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80a8ea4ea20a40c7b25a56efe9b77a14.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k55stjKpzJe6maX9BEaSXwQTCsA=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.819246+00 2025-12-09 10:15:03.81925+00 9560 FHXGPK-批布006-5 SPMX-20240815304720 \N \N \N 1 \N [{"file_id": "bdadd40c-968e-4f57-9326-40e9f540b41e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg", "file_size": 45549, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布006-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d92eaa8fd7cf42ca9f0733d2ac5d502a.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0vf3c0gOy9f9hAL79S7lc7K0FQ=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.821293+00 2025-12-09 10:15:03.821298+00 9561 C338橘色补片-裤子前 SPMX-20240815304718 \N \N \N 1 \N [{"file_id": "84a1ffbf-70db-4524-ae2c-bf3095fb6983", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db978deb47641e9aa364ae827633a98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db978deb47641e9aa364ae827633a98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db978deb47641e9aa364ae827633a98.jpg", "file_size": 20554, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色补片-裤子前.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db978deb47641e9aa364ae827633a98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db978deb47641e9aa364ae827633a98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db978deb47641e9aa364ae827633a98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db978deb47641e9aa364ae827633a98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db978deb47641e9aa364ae827633a98.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LH_OW1mMZJMPNh2Gh3EKo3D6Nts=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.823306+00 2025-12-09 10:15:03.823311+00 9562 JTSS121FW#VS-D3 SPMX-20240815304721 \N \N \N 1 \N [{"file_id": "07db05d7-5d13-40ff-bca5-760e90a3152a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dce86e4a9ce4c83a2c4552cbe896a4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dce86e4a9ce4c83a2c4552cbe896a4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dce86e4a9ce4c83a2c4552cbe896a4a.jpg", "file_size": 17580, "is_delete": false, "file_type": 1, "original_file_name": "JTSS121FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dce86e4a9ce4c83a2c4552cbe896a4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dce86e4a9ce4c83a2c4552cbe896a4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dce86e4a9ce4c83a2c4552cbe896a4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dce86e4a9ce4c83a2c4552cbe896a4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dce86e4a9ce4c83a2c4552cbe896a4a.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeToTAbB4pq0-zNACUM0eHQ5pcI=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.825338+00 2025-12-09 10:15:03.825344+00 9563 HT013#VS-D3 SPMX-20240815304727 \N \N \N 1 \N [{"file_id": "add02556-2e2f-496e-bd8e-fc81d6fe5258", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c88604a218e14fe7a0bdc293af21ffd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c88604a218e14fe7a0bdc293af21ffd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c88604a218e14fe7a0bdc293af21ffd2.jpg", "file_size": 18844, "is_delete": false, "file_type": 1, "original_file_name": "HT013#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88604a218e14fe7a0bdc293af21ffd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88604a218e14fe7a0bdc293af21ffd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88604a218e14fe7a0bdc293af21ffd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c88604a218e14fe7a0bdc293af21ffd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c88604a218e14fe7a0bdc293af21ffd2.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hww52QjO-JFdYndRfW-oIoHhRlQ=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.827341+00 2025-12-09 10:15:03.827346+00 9564 108#长款下摆彩蓝 SPMX-20240815304729 \N \N \N 1 \N [{"file_id": "1e49d742-7276-446c-884f-0f5b4cd79ab2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "692d231562a8456699bd0804031e728c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "692d231562a8456699bd0804031e728c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "692d231562a8456699bd0804031e728c.jpg", "file_size": 17369, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692d231562a8456699bd0804031e728c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692d231562a8456699bd0804031e728c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/692d231562a8456699bd0804031e728c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/692d231562a8456699bd0804031e728c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/692d231562a8456699bd0804031e728c.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6RxjjYD-9tg6BEH0qylDYMXQJ0=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.829375+00 2025-12-09 10:15:03.82938+00 9565 LJ9911FW#粉黄绿XL VS-D3 SPMX-20240815304726 \N \N \N 1 \N [{"file_id": "8f897862-b639-47f4-b453-6a2963fade38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28d852361c434b189ddbab71c96bf76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28d852361c434b189ddbab71c96bf76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28d852361c434b189ddbab71c96bf76d.jpg", "file_size": 10684, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#粉黄绿XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d852361c434b189ddbab71c96bf76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d852361c434b189ddbab71c96bf76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d852361c434b189ddbab71c96bf76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28d852361c434b189ddbab71c96bf76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28d852361c434b189ddbab71c96bf76d.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35W73TIDQclpduBUPcq6qEQ1zhI=", "createTime": "2024-08-15 14:48:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.831422+00 2025-12-09 10:15:03.831427+00 9566 80346#后幅 SPMX-20240815304745 \N \N \N 1 \N [{"file_id": "9018e161-ab31-48fb-85ab-0d2cc1b66a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d543c2a5ec042d6b8b93630f54f554c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d543c2a5ec042d6b8b93630f54f554c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d543c2a5ec042d6b8b93630f54f554c.jpg", "file_size": 13814, "is_delete": false, "file_type": 1, "original_file_name": "80346#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d543c2a5ec042d6b8b93630f54f554c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d543c2a5ec042d6b8b93630f54f554c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d543c2a5ec042d6b8b93630f54f554c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d543c2a5ec042d6b8b93630f54f554c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d543c2a5ec042d6b8b93630f54f554c.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMeZrkhibkTuVTCIVunfx01LwUw=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.833418+00 2025-12-09 10:15:03.833423+00 9567 FHXGPK-批布007-2 SPMX-20240815304743 \N \N \N 1 \N [{"file_id": "2682cbc8-4d24-4dd1-99b2-496a3f179b84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de04eb8399714a51bac3e32dabcbf4ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de04eb8399714a51bac3e32dabcbf4ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de04eb8399714a51bac3e32dabcbf4ae.jpg", "file_size": 67471, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布007-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04eb8399714a51bac3e32dabcbf4ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04eb8399714a51bac3e32dabcbf4ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de04eb8399714a51bac3e32dabcbf4ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de04eb8399714a51bac3e32dabcbf4ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de04eb8399714a51bac3e32dabcbf4ae.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LynQKG0bBmezWX4uS1UaRfkVUJg=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.83546+00 2025-12-09 10:15:03.835465+00 9568 LJ9911FW#蓝L VS-D3 SPMX-20240815304735 \N \N \N 1 \N [{"file_id": "0d8f3f0e-e9e9-45bd-ae96-0ede4c14576f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "106e8e189e6746a9b098f986e6327a15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "106e8e189e6746a9b098f986e6327a15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "106e8e189e6746a9b098f986e6327a15.jpg", "file_size": 15784, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#蓝L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106e8e189e6746a9b098f986e6327a15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106e8e189e6746a9b098f986e6327a15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106e8e189e6746a9b098f986e6327a15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/106e8e189e6746a9b098f986e6327a15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/106e8e189e6746a9b098f986e6327a15.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XE5HFQoL3SKFVTB_v0A4ZKwcZqg=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.837473+00 2025-12-09 10:15:03.837478+00 9569 LZ1258#背心款4号色 SPMX-20240815304739 \N \N \N 1 \N [{"file_id": "3da02583-7e86-4f10-9c50-4bc3f269a834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb96b232d3cf4c2583a508b2493ef543.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb96b232d3cf4c2583a508b2493ef543.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb96b232d3cf4c2583a508b2493ef543.jpg", "file_size": 16073, "is_delete": false, "file_type": 1, "original_file_name": "LZ1258#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb96b232d3cf4c2583a508b2493ef543.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb96b232d3cf4c2583a508b2493ef543.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb96b232d3cf4c2583a508b2493ef543.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb96b232d3cf4c2583a508b2493ef543.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb96b232d3cf4c2583a508b2493ef543.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygmtNwybsNcI9LxVMB93mpAjgSU=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.8395+00 2025-12-09 10:15:03.839505+00 9570 C338橘色补片S左边 SPMX-20240815304741 \N \N \N 1 \N [{"file_id": "8697c50f-89b6-4d37-a1a0-83d2242d51ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d8039fe48ce42bc947c23643bff72b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d8039fe48ce42bc947c23643bff72b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d8039fe48ce42bc947c23643bff72b2.jpg", "file_size": 17042, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色补片S左边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8039fe48ce42bc947c23643bff72b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8039fe48ce42bc947c23643bff72b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d8039fe48ce42bc947c23643bff72b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d8039fe48ce42bc947c23643bff72b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d8039fe48ce42bc947c23643bff72b2.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEmKNaZ4Co1c1k9ne61o3DbvLgU=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.841548+00 2025-12-09 10:15:03.841553+00 9571 HT013#VS-D3深青 SPMX-20240815304737 \N \N \N 1 \N [{"file_id": "9bd71742-3923-4633-9327-9285f6c0c68b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6b98f0606b643418edaa58b3e567ab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6b98f0606b643418edaa58b3e567ab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6b98f0606b643418edaa58b3e567ab2.jpg", "file_size": 6831, "is_delete": false, "file_type": 1, "original_file_name": "HT013#VS-D3深青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b98f0606b643418edaa58b3e567ab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b98f0606b643418edaa58b3e567ab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b98f0606b643418edaa58b3e567ab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6b98f0606b643418edaa58b3e567ab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6b98f0606b643418edaa58b3e567ab2.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XOPOWoV8cm5pWNEyxetSFaW56g=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.843821+00 2025-12-09 10:15:03.843826+00 9572 DL30450#长款墨绿前后幅XL SPMX-20240815304742 \N \N \N 1 \N [{"file_id": "110121a8-c3e1-49a6-8592-01b548757747", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f58ab72822e40c1998d3156e44f3fb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f58ab72822e40c1998d3156e44f3fb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f58ab72822e40c1998d3156e44f3fb0.jpg", "file_size": 18967, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款墨绿前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f58ab72822e40c1998d3156e44f3fb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f58ab72822e40c1998d3156e44f3fb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f58ab72822e40c1998d3156e44f3fb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f58ab72822e40c1998d3156e44f3fb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f58ab72822e40c1998d3156e44f3fb0.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bUOTV0AT49VBXuH-UIfvOUFk4Y=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.845891+00 2025-12-09 10:15:03.845896+00 9573 80346#前幅 SPMX-20240815304734 \N \N \N 1 \N [{"file_id": "c21307ea-77fe-4ecd-9892-31a2abf62e8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880c407dfde64d6a9f6e6966003223c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880c407dfde64d6a9f6e6966003223c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880c407dfde64d6a9f6e6966003223c1.jpg", "file_size": 15479, "is_delete": false, "file_type": 1, "original_file_name": "80346#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c407dfde64d6a9f6e6966003223c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c407dfde64d6a9f6e6966003223c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c407dfde64d6a9f6e6966003223c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880c407dfde64d6a9f6e6966003223c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880c407dfde64d6a9f6e6966003223c1.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNx71bwqYfdZiB-QFQ6d3913ISk=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.847958+00 2025-12-09 10:15:03.847963+00 9574 23-2115#A1-领子3XL SPMX-20240815304736 \N \N \N 1 \N [{"file_id": "3886fd7e-9a9b-4985-bdbf-84b1e096229f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5adbc231c7d24c8095d9a2ac7504fe5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5adbc231c7d24c8095d9a2ac7504fe5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5adbc231c7d24c8095d9a2ac7504fe5d.jpg", "file_size": 12513, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adbc231c7d24c8095d9a2ac7504fe5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adbc231c7d24c8095d9a2ac7504fe5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5adbc231c7d24c8095d9a2ac7504fe5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5adbc231c7d24c8095d9a2ac7504fe5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5adbc231c7d24c8095d9a2ac7504fe5d.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYmMFaRFlYKkaM6nF2W0iJwB3hI=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.850062+00 2025-12-09 10:15:03.850067+00 9575 108#长款下摆枣红 SPMX-20240815304740 \N \N \N 1 \N [{"file_id": "420ebd55-a9b8-41a3-bd4a-d0fc6af4c8d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "525bb55c92a0442aa9be0b24ccaa2f71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "525bb55c92a0442aa9be0b24ccaa2f71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "525bb55c92a0442aa9be0b24ccaa2f71.jpg", "file_size": 16323, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525bb55c92a0442aa9be0b24ccaa2f71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525bb55c92a0442aa9be0b24ccaa2f71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525bb55c92a0442aa9be0b24ccaa2f71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/525bb55c92a0442aa9be0b24ccaa2f71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/525bb55c92a0442aa9be0b24ccaa2f71.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7oEJAivpuVhNp6bQBulnDsbeAk=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.852128+00 2025-12-09 10:15:03.852133+00 9576 JTSS123FW#VS-D3 SPMX-20240815304744 \N \N \N 1 \N [{"file_id": "002309f3-33f6-42d9-967a-7f2c6c38ad9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3709938ece264443bc330e7f509ec732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3709938ece264443bc330e7f509ec732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3709938ece264443bc330e7f509ec732.jpg", "file_size": 18546, "is_delete": false, "file_type": 1, "original_file_name": "JTSS123FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3709938ece264443bc330e7f509ec732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3709938ece264443bc330e7f509ec732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3709938ece264443bc330e7f509ec732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3709938ece264443bc330e7f509ec732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3709938ece264443bc330e7f509ec732.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l-4FAS7MDPdT0KdQDCXTUD5dTlA=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.854217+00 2025-12-09 10:15:03.854222+00 9577 0003-440#绿色 SPMX-20240815304738 \N \N \N 1 \N [{"file_id": "c4e53dce-4a8d-441d-a167-f0e31e019c39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71551f874e9c4b528c616378c9143e0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71551f874e9c4b528c616378c9143e0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71551f874e9c4b528c616378c9143e0f.jpg", "file_size": 10530, "is_delete": false, "file_type": 1, "original_file_name": "0003-440#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71551f874e9c4b528c616378c9143e0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71551f874e9c4b528c616378c9143e0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71551f874e9c4b528c616378c9143e0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71551f874e9c4b528c616378c9143e0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71551f874e9c4b528c616378c9143e0f.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ipMJx7cFZtHLgtp28UfeyJ_zY8=", "createTime": "2024-08-15 14:49:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.856297+00 2025-12-09 10:15:03.856301+00 9578 LJ9911FW#蓝M VS-D3 SPMX-20240815304746 \N \N \N 1 \N [{"file_id": "f11e27f6-9596-4315-ab26-a6ae1206a399", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5d2c09c3edc47c8b1613d6611745869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5d2c09c3edc47c8b1613d6611745869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5d2c09c3edc47c8b1613d6611745869.jpg", "file_size": 15159, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#蓝M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d2c09c3edc47c8b1613d6611745869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d2c09c3edc47c8b1613d6611745869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d2c09c3edc47c8b1613d6611745869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5d2c09c3edc47c8b1613d6611745869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5d2c09c3edc47c8b1613d6611745869.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MhqRjuu7-NnJAd6rVQOEx9y_zJ0=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.858395+00 2025-12-09 10:15:03.8584+00 9579 0003-441#WJC22 SPMX-20240815304749 \N \N \N 1 \N [{"file_id": "c1eadc61-8c30-4c96-9953-a2f34e9e5019", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db340103fee4e6ab64c5f9145901058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db340103fee4e6ab64c5f9145901058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db340103fee4e6ab64c5f9145901058.jpg", "file_size": 10211, "is_delete": false, "file_type": 1, "original_file_name": "0003-441#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db340103fee4e6ab64c5f9145901058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db340103fee4e6ab64c5f9145901058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db340103fee4e6ab64c5f9145901058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db340103fee4e6ab64c5f9145901058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db340103fee4e6ab64c5f9145901058.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTqD0q5du4iQHC2f66F9KJoRFVw=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.860181+00 2025-12-09 10:15:03.860187+00 9580 23-2115#A1-领子4XL SPMX-20240815304748 \N \N \N 1 \N [{"file_id": "7c612964-efb7-4430-9403-9b2d240b4e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf003820c6d34d19a471ced88bc9eb4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf003820c6d34d19a471ced88bc9eb4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf003820c6d34d19a471ced88bc9eb4e.jpg", "file_size": 12839, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf003820c6d34d19a471ced88bc9eb4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf003820c6d34d19a471ced88bc9eb4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf003820c6d34d19a471ced88bc9eb4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf003820c6d34d19a471ced88bc9eb4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf003820c6d34d19a471ced88bc9eb4e.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-Mj3yqJ5OeJ237Phi1mBWb_k3Y=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.861966+00 2025-12-09 10:15:03.86197+00 9581 HT013FWE# SPMX-20240815304747 \N \N \N 1 \N [{"file_id": "3040a85d-a69f-40de-b237-4842888cc296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efa5251cc38f45b7ba3bb1462b53ffcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efa5251cc38f45b7ba3bb1462b53ffcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efa5251cc38f45b7ba3bb1462b53ffcd.jpg", "file_size": 11883, "is_delete": false, "file_type": 1, "original_file_name": "HT013FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa5251cc38f45b7ba3bb1462b53ffcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa5251cc38f45b7ba3bb1462b53ffcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa5251cc38f45b7ba3bb1462b53ffcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efa5251cc38f45b7ba3bb1462b53ffcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efa5251cc38f45b7ba3bb1462b53ffcd.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kflgYntl0SIPrvSiMRzbCmUL8DA=", "createTime": "2024-08-15 14:49:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.863758+00 2025-12-09 10:15:03.863763+00 9582 HT014#宝蓝VS-D3 SPMX-20240815304760 \N \N \N 1 \N [{"file_id": "ba03c770-dfc6-448c-83f0-bcc3a0325249", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c04f98a5f194bd79275d6606603d14e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c04f98a5f194bd79275d6606603d14e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c04f98a5f194bd79275d6606603d14e.jpg", "file_size": 14245, "is_delete": false, "file_type": 1, "original_file_name": "HT014#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c04f98a5f194bd79275d6606603d14e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c04f98a5f194bd79275d6606603d14e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c04f98a5f194bd79275d6606603d14e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c04f98a5f194bd79275d6606603d14e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c04f98a5f194bd79275d6606603d14e.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-wsnmXq6Zya1y4aYMTm89vMmqc=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.865815+00 2025-12-09 10:15:03.86582+00 9583 LZ1258#背心款5号色 SPMX-20240815304754 \N \N \N 1 \N [{"file_id": "09dfd99a-91a5-4c8a-a0ea-e4c143b5b768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b5bbe4bf410424eab1b11f0abe16986.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b5bbe4bf410424eab1b11f0abe16986.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b5bbe4bf410424eab1b11f0abe16986.jpg", "file_size": 16413, "is_delete": false, "file_type": 1, "original_file_name": "LZ1258#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5bbe4bf410424eab1b11f0abe16986.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5bbe4bf410424eab1b11f0abe16986.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5bbe4bf410424eab1b11f0abe16986.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b5bbe4bf410424eab1b11f0abe16986.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b5bbe4bf410424eab1b11f0abe16986.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmJuAqKATqghUrgaG-_MgOK3mzk=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.867735+00 2025-12-09 10:15:03.867739+00 9584 80347#前幅 SPMX-20240815304750 \N \N \N 1 \N [{"file_id": "4750d53f-d93e-457d-9ad8-8b0607fb9890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cebcd4c7acd42c787efab0bf3d86c0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cebcd4c7acd42c787efab0bf3d86c0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cebcd4c7acd42c787efab0bf3d86c0a.jpg", "file_size": 14742, "is_delete": false, "file_type": 1, "original_file_name": "80347#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cebcd4c7acd42c787efab0bf3d86c0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cebcd4c7acd42c787efab0bf3d86c0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cebcd4c7acd42c787efab0bf3d86c0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cebcd4c7acd42c787efab0bf3d86c0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cebcd4c7acd42c787efab0bf3d86c0a.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOKuZxY-NRh63MWYaxZEKljuw3c=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.869767+00 2025-12-09 10:15:03.869772+00 9585 C338橘色补片XL裤子前 SPMX-20240815304752 \N \N \N 1 \N [{"file_id": "e9d171fa-0c11-4784-b3bd-4d270edfe52e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd6f3fd33ed3489d83e1c535f443c5a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd6f3fd33ed3489d83e1c535f443c5a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd6f3fd33ed3489d83e1c535f443c5a2.jpg", "file_size": 20834, "is_delete": false, "file_type": 1, "original_file_name": "C338橘色补片XL裤子前.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6f3fd33ed3489d83e1c535f443c5a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6f3fd33ed3489d83e1c535f443c5a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6f3fd33ed3489d83e1c535f443c5a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd6f3fd33ed3489d83e1c535f443c5a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd6f3fd33ed3489d83e1c535f443c5a2.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRBocEYzkDgaQiJBc0yrfxhsCfg=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.871811+00 2025-12-09 10:15:03.871816+00 9586 DL30450#长款墨绿袖子 SPMX-20240815304751 \N \N \N 1 \N [{"file_id": "0b487cc0-0330-4a33-be6c-044cbc912c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d249e6562c344f29002604ae4301d32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d249e6562c344f29002604ae4301d32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d249e6562c344f29002604ae4301d32.jpg", "file_size": 13226, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款墨绿袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d249e6562c344f29002604ae4301d32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d249e6562c344f29002604ae4301d32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d249e6562c344f29002604ae4301d32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d249e6562c344f29002604ae4301d32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d249e6562c344f29002604ae4301d32.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W64yl5kCw0OHOF-Q-JdBiUw2fUk=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.873837+00 2025-12-09 10:15:03.873842+00 9587 LJ9911FW#蓝S VS-D3 SPMX-20240815304759 \N \N \N 1 \N [{"file_id": "75379f80-acea-42e9-8a89-b8707058c89b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36e896d56bea4e918c5f8ffde2c1a792.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36e896d56bea4e918c5f8ffde2c1a792.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36e896d56bea4e918c5f8ffde2c1a792.jpg", "file_size": 15042, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#蓝S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e896d56bea4e918c5f8ffde2c1a792.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e896d56bea4e918c5f8ffde2c1a792.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36e896d56bea4e918c5f8ffde2c1a792.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36e896d56bea4e918c5f8ffde2c1a792.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36e896d56bea4e918c5f8ffde2c1a792.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WwGy4Fw-6aNijzxqVRHa_uXMLcA=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.875818+00 2025-12-09 10:15:03.875823+00 9588 JTSS124FW#VS-D3 SPMX-20240815304755 \N \N \N 1 \N [{"file_id": "6afcddc4-dd80-47d3-a343-321aeb6ccaee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bb81b54bac541f5af3f6efeb8e87f6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bb81b54bac541f5af3f6efeb8e87f6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bb81b54bac541f5af3f6efeb8e87f6b.jpg", "file_size": 10253, "is_delete": false, "file_type": 1, "original_file_name": "JTSS124FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb81b54bac541f5af3f6efeb8e87f6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb81b54bac541f5af3f6efeb8e87f6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb81b54bac541f5af3f6efeb8e87f6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bb81b54bac541f5af3f6efeb8e87f6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bb81b54bac541f5af3f6efeb8e87f6b.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5s4sAT36YGpHVHR0epvaXz1DMQ=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.877805+00 2025-12-09 10:15:03.87781+00 9589 23-2115#A1前后片3XL SPMX-20240815304758 \N \N \N 1 \N [{"file_id": "407400e4-d6c6-4cdd-9f54-a202bf4e087b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1d559bb13fa4769ad7d11ed5028b8f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1d559bb13fa4769ad7d11ed5028b8f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1d559bb13fa4769ad7d11ed5028b8f3.jpg", "file_size": 16930, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d559bb13fa4769ad7d11ed5028b8f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d559bb13fa4769ad7d11ed5028b8f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d559bb13fa4769ad7d11ed5028b8f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1d559bb13fa4769ad7d11ed5028b8f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1d559bb13fa4769ad7d11ed5028b8f3.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMVnLm-Eqg6B5vaPaaK0XyANdU0=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.879812+00 2025-12-09 10:15:03.879817+00 9590 0003-442#玫红色 SPMX-20240815304757 \N \N \N 1 \N [{"file_id": "57cc482f-2403-48e4-814d-a2baae01b759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eb2e81610b542af8ee479ba14fb87d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eb2e81610b542af8ee479ba14fb87d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eb2e81610b542af8ee479ba14fb87d5.jpg", "file_size": 9530, "is_delete": false, "file_type": 1, "original_file_name": "0003-442#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb2e81610b542af8ee479ba14fb87d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb2e81610b542af8ee479ba14fb87d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eb2e81610b542af8ee479ba14fb87d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eb2e81610b542af8ee479ba14fb87d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eb2e81610b542af8ee479ba14fb87d5.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:viKFR2Lwdz26JhtgZBrPqZLUlZI=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.881858+00 2025-12-09 10:15:03.881863+00 9591 108#长款下摆桔红 SPMX-20240815304753 \N \N \N 1 \N [{"file_id": "5798ca24-2eba-4451-b25c-12ba9128177d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb80413b6a2b4b119404bebe422cc19e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb80413b6a2b4b119404bebe422cc19e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb80413b6a2b4b119404bebe422cc19e.jpg", "file_size": 16693, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb80413b6a2b4b119404bebe422cc19e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb80413b6a2b4b119404bebe422cc19e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb80413b6a2b4b119404bebe422cc19e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb80413b6a2b4b119404bebe422cc19e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb80413b6a2b4b119404bebe422cc19e.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1A1Y8fpWScku_1MHV5lD74DBGu4=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.883875+00 2025-12-09 10:15:03.88388+00 9592 DL30450#长款姜黄下摆 SPMX-20240815304762 \N \N \N 1 \N [{"file_id": "10a476b7-b14a-4685-a53e-f6eed07bc1c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34ff59af22cc4ac69e148b301a21567e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34ff59af22cc4ac69e148b301a21567e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34ff59af22cc4ac69e148b301a21567e.jpg", "file_size": 22159, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款姜黄下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ff59af22cc4ac69e148b301a21567e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ff59af22cc4ac69e148b301a21567e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ff59af22cc4ac69e148b301a21567e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34ff59af22cc4ac69e148b301a21567e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34ff59af22cc4ac69e148b301a21567e.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BML8LtLjbWQX4wWHN3XQ-hHDk84=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.885898+00 2025-12-09 10:15:03.885903+00 9593 80347#后幅 SPMX-20240815304761 \N \N \N 1 \N [{"file_id": "b3c9d117-c372-42f3-82fa-2185546aa3aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f0976ca80c74058b4b82f5a52675ad5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f0976ca80c74058b4b82f5a52675ad5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f0976ca80c74058b4b82f5a52675ad5.jpg", "file_size": 13809, "is_delete": false, "file_type": 1, "original_file_name": "80347#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0976ca80c74058b4b82f5a52675ad5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0976ca80c74058b4b82f5a52675ad5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0976ca80c74058b4b82f5a52675ad5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f0976ca80c74058b4b82f5a52675ad5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f0976ca80c74058b4b82f5a52675ad5.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uUS5jl0hzoqSAW8gQT9V4G0yKS4=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.887845+00 2025-12-09 10:15:03.88785+00 9594 FHXGPK-批布007-3 SPMX-20240815304756 \N \N \N 1 \N [{"file_id": "dcbc0e29-df12-4b6f-9895-fc68b9c8ae90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e6e29de26d54dcf8bd2b43734cd1fc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e6e29de26d54dcf8bd2b43734cd1fc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e6e29de26d54dcf8bd2b43734cd1fc2.jpg", "file_size": 63303, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布007-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e6e29de26d54dcf8bd2b43734cd1fc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e6e29de26d54dcf8bd2b43734cd1fc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e6e29de26d54dcf8bd2b43734cd1fc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e6e29de26d54dcf8bd2b43734cd1fc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e6e29de26d54dcf8bd2b43734cd1fc2.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFoag-Wnai4eczgWTVok8JDfbG0=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.889888+00 2025-12-09 10:15:03.889893+00 9595 0003-442#黄色 SPMX-20240815304765 \N \N \N 1 \N [{"file_id": "180f3ece-2aac-4679-8e3c-b88965843d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "326996b6e76c48779b43d8781cfa6db7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "326996b6e76c48779b43d8781cfa6db7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "326996b6e76c48779b43d8781cfa6db7.jpg", "file_size": 9390, "is_delete": false, "file_type": 1, "original_file_name": "0003-442#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326996b6e76c48779b43d8781cfa6db7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326996b6e76c48779b43d8781cfa6db7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326996b6e76c48779b43d8781cfa6db7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/326996b6e76c48779b43d8781cfa6db7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/326996b6e76c48779b43d8781cfa6db7.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVhFl-wV8opJFOMrUZBypJQ7EAc=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.891886+00 2025-12-09 10:15:03.891892+00 9596 JTSS126FW#VS-D3 SPMX-20240815304776 \N \N \N 1 \N [{"file_id": "0f857a56-bfa7-491e-a9c8-947a2158aad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed9e2417ea2483db901def6d0fe93b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed9e2417ea2483db901def6d0fe93b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed9e2417ea2483db901def6d0fe93b8.jpg", "file_size": 10839, "is_delete": false, "file_type": 1, "original_file_name": "JTSS126FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed9e2417ea2483db901def6d0fe93b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed9e2417ea2483db901def6d0fe93b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed9e2417ea2483db901def6d0fe93b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed9e2417ea2483db901def6d0fe93b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed9e2417ea2483db901def6d0fe93b8.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ardqb1mU2KzANOmXqJDoUxXrKqo=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.893925+00 2025-12-09 10:15:03.89393+00 9597 80348#前幅 SPMX-20240815304773 \N \N \N 1 \N [{"file_id": "d671f219-ffd0-4345-96fa-24fc54cd48cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64749664dc17495da71b77aae6e37ef9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64749664dc17495da71b77aae6e37ef9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64749664dc17495da71b77aae6e37ef9.jpg", "file_size": 15637, "is_delete": false, "file_type": 1, "original_file_name": "80348#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64749664dc17495da71b77aae6e37ef9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64749664dc17495da71b77aae6e37ef9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64749664dc17495da71b77aae6e37ef9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64749664dc17495da71b77aae6e37ef9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64749664dc17495da71b77aae6e37ef9.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWxX28Ij6lFznrSddv646eWVd-Y=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.89596+00 2025-12-09 10:15:03.895965+00 9598 C339#墨绿 SPMX-20240815304774 \N \N \N 1 \N [{"file_id": "1dabfef0-9cca-4901-9ae2-e717c516731e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f23c2a20d5147639b89c4bb0279e899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f23c2a20d5147639b89c4bb0279e899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f23c2a20d5147639b89c4bb0279e899.jpg", "file_size": 20563, "is_delete": false, "file_type": 1, "original_file_name": "C339#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f23c2a20d5147639b89c4bb0279e899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f23c2a20d5147639b89c4bb0279e899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f23c2a20d5147639b89c4bb0279e899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f23c2a20d5147639b89c4bb0279e899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f23c2a20d5147639b89c4bb0279e899.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_0IAIo22CHNxGgkQ-dKEs3FK-Y=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:03.898012+00 2025-12-09 10:15:03.898017+00 9599 DL30450#长款姜黄前后幅2XL SPMX-20240815304772 \N \N \N 1 \N [{"file_id": "58851444-bfcb-40aa-b918-2e912185f0af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32838b9f6e414e0db310a950703b358c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32838b9f6e414e0db310a950703b358c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32838b9f6e414e0db310a950703b358c.jpg", "file_size": 19368, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款姜黄前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32838b9f6e414e0db310a950703b358c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32838b9f6e414e0db310a950703b358c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32838b9f6e414e0db310a950703b358c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32838b9f6e414e0db310a950703b358c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32838b9f6e414e0db310a950703b358c.jpg?e=1765361703&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVGtrXQjGA8UReUIkZ_IKJ5k4ro=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.617122+00 2025-12-09 10:15:04.617134+00 9600 108#长款下摆黄绿 SPMX-20240815304777 \N \N \N 1 \N [{"file_id": "69bdfefd-a446-4a20-afcd-78fd51bc273c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "284819af995c499988d02a35965d04ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "284819af995c499988d02a35965d04ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "284819af995c499988d02a35965d04ea.jpg", "file_size": 16131, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284819af995c499988d02a35965d04ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284819af995c499988d02a35965d04ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284819af995c499988d02a35965d04ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/284819af995c499988d02a35965d04ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/284819af995c499988d02a35965d04ea.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ6DhxbizDe1TcxqETvgJCnULHM=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.620469+00 2025-12-09 10:15:04.620479+00 9601 LZ1259#背心款2号色 SPMX-20240815304775 \N \N \N 1 \N [{"file_id": "c074d3ea-6577-45b9-a1d0-276376bc06b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31869bb42e2a4d2a887ed37afd6561d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31869bb42e2a4d2a887ed37afd6561d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31869bb42e2a4d2a887ed37afd6561d6.jpg", "file_size": 20882, "is_delete": false, "file_type": 1, "original_file_name": "LZ1259#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31869bb42e2a4d2a887ed37afd6561d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31869bb42e2a4d2a887ed37afd6561d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31869bb42e2a4d2a887ed37afd6561d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31869bb42e2a4d2a887ed37afd6561d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31869bb42e2a4d2a887ed37afd6561d6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y2xXSukl2tOPYpc3ogj_xNsoZU4=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.622861+00 2025-12-09 10:15:04.622866+00 9602 JTSS125FW#VSD-3 SPMX-20240815304764 \N \N \N 1 \N [{"file_id": "8e45901d-68eb-4439-b986-7663f74e8ef1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb6d6c373893489bae916006132d85d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb6d6c373893489bae916006132d85d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb6d6c373893489bae916006132d85d2.jpg", "file_size": 8101, "is_delete": false, "file_type": 1, "original_file_name": "JTSS125FW#VSD-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6d6c373893489bae916006132d85d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6d6c373893489bae916006132d85d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6d6c373893489bae916006132d85d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb6d6c373893489bae916006132d85d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb6d6c373893489bae916006132d85d2.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jroHonMUsC17cNlN1426SIw6QI=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.624781+00 2025-12-09 10:15:04.624787+00 9603 HT014#绿色VS-D3 SPMX-20240815304771 \N \N \N 1 \N [{"file_id": "776b0539-2f31-4832-957f-8b8e23d64882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92f12e4f06a24ab996daf9b73d0ece0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92f12e4f06a24ab996daf9b73d0ece0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92f12e4f06a24ab996daf9b73d0ece0c.jpg", "file_size": 13618, "is_delete": false, "file_type": 1, "original_file_name": "HT014#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f12e4f06a24ab996daf9b73d0ece0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f12e4f06a24ab996daf9b73d0ece0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f12e4f06a24ab996daf9b73d0ece0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92f12e4f06a24ab996daf9b73d0ece0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92f12e4f06a24ab996daf9b73d0ece0c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PtFVfrhpdV5pomfwUBHODSOeFw=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.626493+00 2025-12-09 10:15:04.626498+00 9604 C339#原版色 SPMX-20240815304763 \N \N \N 1 \N [{"file_id": "eb544c33-501f-4d2a-a1b1-a7e0864ec628", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84078c67ef24049a9a6303b2d47cf7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84078c67ef24049a9a6303b2d47cf7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84078c67ef24049a9a6303b2d47cf7d.jpg", "file_size": 17699, "is_delete": false, "file_type": 1, "original_file_name": "C339#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84078c67ef24049a9a6303b2d47cf7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84078c67ef24049a9a6303b2d47cf7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84078c67ef24049a9a6303b2d47cf7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84078c67ef24049a9a6303b2d47cf7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84078c67ef24049a9a6303b2d47cf7d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kSLM6pUi8OOBMq3xGTm-fRubVN8=", "createTime": "2024-08-15 14:49:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.628344+00 2025-12-09 10:15:04.628348+00 9605 23-2115#A1前后片4XL SPMX-20240815304769 \N \N \N 1 \N [{"file_id": "0189b2ec-db80-468a-9ec0-a1a2febebc51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6545d1fea77645a8b13dd022cf3c593d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6545d1fea77645a8b13dd022cf3c593d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6545d1fea77645a8b13dd022cf3c593d.jpg", "file_size": 16461, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545d1fea77645a8b13dd022cf3c593d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545d1fea77645a8b13dd022cf3c593d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545d1fea77645a8b13dd022cf3c593d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6545d1fea77645a8b13dd022cf3c593d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6545d1fea77645a8b13dd022cf3c593d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GssZXW74BOsgMwK5VOsxrM-2AMQ=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.629941+00 2025-12-09 10:15:04.629945+00 9606 LZ1259#背心款1号色 SPMX-20240815304766 \N \N \N 1 \N [{"file_id": "7e35dc5d-5023-4862-a02f-bc2658f451f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76b1002bd61a46d8bec7c71ae26353bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76b1002bd61a46d8bec7c71ae26353bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76b1002bd61a46d8bec7c71ae26353bc.jpg", "file_size": 20502, "is_delete": false, "file_type": 1, "original_file_name": "LZ1259#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b1002bd61a46d8bec7c71ae26353bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b1002bd61a46d8bec7c71ae26353bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b1002bd61a46d8bec7c71ae26353bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76b1002bd61a46d8bec7c71ae26353bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76b1002bd61a46d8bec7c71ae26353bc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edU7i15I_AAdtMMK018JnDKwMDs=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.631573+00 2025-12-09 10:15:04.631578+00 9607 0003-443#WJC22 SPMX-20240815304778 \N \N \N 1 \N [{"file_id": "239abc55-999a-4077-b5e9-975d7d29eacc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe42cc515bc745f9b38b6303938517d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe42cc515bc745f9b38b6303938517d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe42cc515bc745f9b38b6303938517d7.jpg", "file_size": 19694, "is_delete": false, "file_type": 1, "original_file_name": "0003-443#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe42cc515bc745f9b38b6303938517d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe42cc515bc745f9b38b6303938517d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe42cc515bc745f9b38b6303938517d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe42cc515bc745f9b38b6303938517d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe42cc515bc745f9b38b6303938517d7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52pCs6VjTPL-0hrOBJbnIbl3YiI=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.633389+00 2025-12-09 10:15:04.633393+00 9608 LJ9911FW#蓝XL VS-D3 SPMX-20240815304770 \N \N \N 1 \N [{"file_id": "94a685af-3bdc-4bdb-8586-87c06ebbde1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92a37470a1b04f15af6daaf9752cc82c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92a37470a1b04f15af6daaf9752cc82c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92a37470a1b04f15af6daaf9752cc82c.jpg", "file_size": 16267, "is_delete": false, "file_type": 1, "original_file_name": "LJ9911FW#蓝XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92a37470a1b04f15af6daaf9752cc82c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92a37470a1b04f15af6daaf9752cc82c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92a37470a1b04f15af6daaf9752cc82c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92a37470a1b04f15af6daaf9752cc82c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92a37470a1b04f15af6daaf9752cc82c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0Ew8kiaJigra_4ZcqJ1HP-bMgA=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.635015+00 2025-12-09 10:15:04.635019+00 9609 108#长款下摆粉色 SPMX-20240815304767 \N \N \N 1 \N [{"file_id": "a0373f3e-cfeb-4d64-93d9-a3d12d17a7e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d68845024464e14ac0175d232aa51e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d68845024464e14ac0175d232aa51e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d68845024464e14ac0175d232aa51e6.jpg", "file_size": 14762, "is_delete": false, "file_type": 1, "original_file_name": "108#长款下摆粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d68845024464e14ac0175d232aa51e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d68845024464e14ac0175d232aa51e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d68845024464e14ac0175d232aa51e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d68845024464e14ac0175d232aa51e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d68845024464e14ac0175d232aa51e6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdFwxHI0sDhDSarqNNYCPKWNPw8=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.636794+00 2025-12-09 10:15:04.636799+00 9610 FHXGPK-批布007-4 SPMX-20240815304768 \N \N \N 1 \N [{"file_id": "161f511d-253f-408b-8e9c-1f6658f68d4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0e08f4a73084166a2e449aa589ba867.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0e08f4a73084166a2e449aa589ba867.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0e08f4a73084166a2e449aa589ba867.jpg", "file_size": 59350, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布007-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e08f4a73084166a2e449aa589ba867.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e08f4a73084166a2e449aa589ba867.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e08f4a73084166a2e449aa589ba867.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0e08f4a73084166a2e449aa589ba867.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0e08f4a73084166a2e449aa589ba867.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSdXi8cvwUIi_xFY5S4R0FHz2Fo=", "createTime": "2024-08-15 14:49:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.638702+00 2025-12-09 10:15:04.63871+00 9611 23-2115#A1袖子4XL SPMX-20240815304790 \N \N \N 1 \N [{"file_id": "537deb2c-db06-427e-9fbc-e20991027dd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329eb2a1a93343648116b862c19c5475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329eb2a1a93343648116b862c19c5475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329eb2a1a93343648116b862c19c5475.jpg", "file_size": 12005, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1袖子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329eb2a1a93343648116b862c19c5475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329eb2a1a93343648116b862c19c5475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329eb2a1a93343648116b862c19c5475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329eb2a1a93343648116b862c19c5475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329eb2a1a93343648116b862c19c5475.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwZZQ2tJiyorsQA47DR3XFml7MA=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.640626+00 2025-12-09 10:15:04.640631+00 9612 1080#WJC22 SPMX-20240815304787 \N \N \N 1 \N [{"file_id": "12aabf98-ff1a-4fe6-95aa-a3feca4e50a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a0e55d258f434288edcdf26176e820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a0e55d258f434288edcdf26176e820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a0e55d258f434288edcdf26176e820.jpg", "file_size": 12376, "is_delete": false, "file_type": 1, "original_file_name": "1080#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a0e55d258f434288edcdf26176e820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a0e55d258f434288edcdf26176e820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a0e55d258f434288edcdf26176e820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a0e55d258f434288edcdf26176e820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a0e55d258f434288edcdf26176e820.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c21k2RLa8hldcaOyG82KSTYw9Aw=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.642458+00 2025-12-09 10:15:04.642461+00 9613 LZ1259#背心款3号色 SPMX-20240815304786 \N \N \N 1 \N [{"file_id": "1c417bb9-caae-4155-bc60-ad73ae192a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8287d828ec364a6b8bd7862ed064c7c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8287d828ec364a6b8bd7862ed064c7c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8287d828ec364a6b8bd7862ed064c7c0.jpg", "file_size": 20053, "is_delete": false, "file_type": 1, "original_file_name": "LZ1259#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8287d828ec364a6b8bd7862ed064c7c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8287d828ec364a6b8bd7862ed064c7c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8287d828ec364a6b8bd7862ed064c7c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8287d828ec364a6b8bd7862ed064c7c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8287d828ec364a6b8bd7862ed064c7c0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6zTpZzIGWvoC8sKGqiCNc32e88=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.644044+00 2025-12-09 10:15:04.644048+00 9614 FHXGPK-批布007-5 SPMX-20240815304782 \N \N \N 1 \N [{"file_id": "913f3629-e1a7-448e-9870-1d6310a62949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "051971cbfa5d409a821d95177c3f552a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "051971cbfa5d409a821d95177c3f552a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "051971cbfa5d409a821d95177c3f552a.jpg", "file_size": 68318, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布007-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051971cbfa5d409a821d95177c3f552a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051971cbfa5d409a821d95177c3f552a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051971cbfa5d409a821d95177c3f552a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/051971cbfa5d409a821d95177c3f552a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/051971cbfa5d409a821d95177c3f552a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igWkFV0JdA13A_9YyvV5WZHKx6s=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.645662+00 2025-12-09 10:15:04.645666+00 9615 80348#后幅 SPMX-20240815304785 \N \N \N 1 \N [{"file_id": "e1c95af8-dc4b-4302-9eec-038ac8270eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3665adf7a1454cbb978fea3a2f418966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3665adf7a1454cbb978fea3a2f418966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3665adf7a1454cbb978fea3a2f418966.jpg", "file_size": 14273, "is_delete": false, "file_type": 1, "original_file_name": "80348#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3665adf7a1454cbb978fea3a2f418966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3665adf7a1454cbb978fea3a2f418966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3665adf7a1454cbb978fea3a2f418966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3665adf7a1454cbb978fea3a2f418966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3665adf7a1454cbb978fea3a2f418966.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8npyR2YZnlnKPI4msJevFPHD-3Y=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.647495+00 2025-12-09 10:15:04.6475+00 9616 FHXGPK-批布008-1 SPMX-20240815304792 \N \N \N 1 \N [{"file_id": "2732a6c0-0017-457e-ae45-b9d9ec00bf62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80b74d212dc243c1a6923ee1df4e3d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80b74d212dc243c1a6923ee1df4e3d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80b74d212dc243c1a6923ee1df4e3d3a.jpg", "file_size": 36469, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布008-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b74d212dc243c1a6923ee1df4e3d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b74d212dc243c1a6923ee1df4e3d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b74d212dc243c1a6923ee1df4e3d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80b74d212dc243c1a6923ee1df4e3d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80b74d212dc243c1a6923ee1df4e3d3a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qwwMMFMK452_VXz4_sOFI2VcYc=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.649103+00 2025-12-09 10:15:04.649107+00 9617 JTSS127FW#VS-D3 SPMX-20240815304788 \N \N \N 1 \N [{"file_id": "5133f4bf-e981-4bcb-a742-261d4e32c757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3cda78a30d94977b07c253b411f2feb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3cda78a30d94977b07c253b411f2feb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3cda78a30d94977b07c253b411f2feb.jpg", "file_size": 16520, "is_delete": false, "file_type": 1, "original_file_name": "JTSS127FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3cda78a30d94977b07c253b411f2feb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3cda78a30d94977b07c253b411f2feb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3cda78a30d94977b07c253b411f2feb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3cda78a30d94977b07c253b411f2feb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3cda78a30d94977b07c253b411f2feb.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fuj21tnmzWlBHrXsCLwMMjaxP9w=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.650693+00 2025-12-09 10:15:04.650698+00 9618 0003-444#WJC22 SPMX-20240815304789 \N \N \N 1 \N [{"file_id": "c3d0d3e8-9d73-467e-8932-bc0290e16588", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb50959e690a4172809e3d65538b055a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb50959e690a4172809e3d65538b055a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb50959e690a4172809e3d65538b055a.jpg", "file_size": 20237, "is_delete": false, "file_type": 1, "original_file_name": "0003-444#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb50959e690a4172809e3d65538b055a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb50959e690a4172809e3d65538b055a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb50959e690a4172809e3d65538b055a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb50959e690a4172809e3d65538b055a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb50959e690a4172809e3d65538b055a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOZf4nuVKO9YC8wMiUjG5tucEI8=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.666121+00 2025-12-09 10:15:04.666126+00 9627 C340#红色花 SPMX-20240815304795 \N \N \N 1 \N [{"file_id": "2d0f9a41-4f08-4e50-bff3-29b76baee9cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f120a5234974e3ea0b3eb77a6e76da0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f120a5234974e3ea0b3eb77a6e76da0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f120a5234974e3ea0b3eb77a6e76da0.jpg", "file_size": 15673, "is_delete": false, "file_type": 1, "original_file_name": "C340#红色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f120a5234974e3ea0b3eb77a6e76da0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f120a5234974e3ea0b3eb77a6e76da0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f120a5234974e3ea0b3eb77a6e76da0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f120a5234974e3ea0b3eb77a6e76da0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f120a5234974e3ea0b3eb77a6e76da0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mk_4nKrwEnASiCu2qDzTuh1BAgE=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.652516+00 2025-12-09 10:15:04.65252+00 9619 DL30450#长款姜黄前后幅XL SPMX-20240815304791 \N \N \N 1 \N [{"file_id": "53560962-66b8-4927-8e1e-965225b352cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3e18d3b61ba4bef9eb1c046ba17254a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3e18d3b61ba4bef9eb1c046ba17254a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3e18d3b61ba4bef9eb1c046ba17254a.jpg", "file_size": 19330, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款姜黄前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e18d3b61ba4bef9eb1c046ba17254a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e18d3b61ba4bef9eb1c046ba17254a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e18d3b61ba4bef9eb1c046ba17254a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3e18d3b61ba4bef9eb1c046ba17254a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3e18d3b61ba4bef9eb1c046ba17254a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_P7Lbl8ZOUmB0ofPlpFdKDgidX4=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.654177+00 2025-12-09 10:15:04.654182+00 9620 LJ9919FW#太阳花L VS-D3 SPMX-20240815304793 \N \N \N 1 \N [{"file_id": "7133412a-2aa5-4784-963a-90ff89fbc92b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4308cb3f4d244e408008a51c21cda29c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4308cb3f4d244e408008a51c21cda29c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4308cb3f4d244e408008a51c21cda29c.jpg", "file_size": 11699, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#太阳花L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4308cb3f4d244e408008a51c21cda29c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4308cb3f4d244e408008a51c21cda29c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4308cb3f4d244e408008a51c21cda29c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4308cb3f4d244e408008a51c21cda29c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4308cb3f4d244e408008a51c21cda29c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leqIfXRc1iwZ0IVCCitRONoMTQg=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.655776+00 2025-12-09 10:15:04.655781+00 9621 23-2115#A1袖子3XL SPMX-20240815304779 \N \N \N 1 \N [{"file_id": "f990b030-e7a7-4a64-93fc-f8db4f7203ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b98c93b1434424da18aaeb45edf4c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b98c93b1434424da18aaeb45edf4c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b98c93b1434424da18aaeb45edf4c3e.jpg", "file_size": 11207, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1袖子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b98c93b1434424da18aaeb45edf4c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b98c93b1434424da18aaeb45edf4c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b98c93b1434424da18aaeb45edf4c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b98c93b1434424da18aaeb45edf4c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b98c93b1434424da18aaeb45edf4c3e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-znqHf9u22M6zbWwYy5ziWmCiP4=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.657611+00 2025-12-09 10:15:04.657616+00 9622 HT014FWE# SPMX-20240815304794 \N \N \N 1 \N [{"file_id": "5a387cf9-2c87-4f14-abd4-1477bb4d1049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3324a587a5204dc9bbd5084f3e471908.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3324a587a5204dc9bbd5084f3e471908.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3324a587a5204dc9bbd5084f3e471908.jpg", "file_size": 18776, "is_delete": false, "file_type": 1, "original_file_name": "HT014FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3324a587a5204dc9bbd5084f3e471908.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3324a587a5204dc9bbd5084f3e471908.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3324a587a5204dc9bbd5084f3e471908.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3324a587a5204dc9bbd5084f3e471908.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3324a587a5204dc9bbd5084f3e471908.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fieme3p89hZBrRj_4iSEC0tiSSA=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.659483+00 2025-12-09 10:15:04.659487+00 9623 DL30450#长款姜黄前后幅L SPMX-20240815304781 \N \N \N 1 \N [{"file_id": "3c41074b-b4b8-4973-b89a-7ced693a437d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ddcf9f32d7f44e49ab413c10710ca68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ddcf9f32d7f44e49ab413c10710ca68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ddcf9f32d7f44e49ab413c10710ca68.jpg", "file_size": 18759, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款姜黄前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddcf9f32d7f44e49ab413c10710ca68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddcf9f32d7f44e49ab413c10710ca68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ddcf9f32d7f44e49ab413c10710ca68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ddcf9f32d7f44e49ab413c10710ca68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ddcf9f32d7f44e49ab413c10710ca68.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBiLKFrz7Grk9JEetORZSBPLYr4=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.661115+00 2025-12-09 10:15:04.66112+00 9624 C339#黑色 SPMX-20240815304784 \N \N \N 1 \N [{"file_id": "01dc5c20-b23e-49f9-92e4-3d07208eaa91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1292dc7fe9c64e80af48fabc3f60fc6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1292dc7fe9c64e80af48fabc3f60fc6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1292dc7fe9c64e80af48fabc3f60fc6a.jpg", "file_size": 20078, "is_delete": false, "file_type": 1, "original_file_name": "C339#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1292dc7fe9c64e80af48fabc3f60fc6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1292dc7fe9c64e80af48fabc3f60fc6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1292dc7fe9c64e80af48fabc3f60fc6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1292dc7fe9c64e80af48fabc3f60fc6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1292dc7fe9c64e80af48fabc3f60fc6a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPIp0gm7A5DasoO6B7WpcFqNP8s=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.662692+00 2025-12-09 10:15:04.662696+00 9625 LJ9919FW#太阳花2XL VS-D3 SPMX-20240815304780 \N \N \N 1 \N [{"file_id": "edcb49c9-8a51-41bd-a49b-5563dd64104b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "258508ac02774ef89b259297ee0bb694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "258508ac02774ef89b259297ee0bb694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "258508ac02774ef89b259297ee0bb694.jpg", "file_size": 12628, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#太阳花2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258508ac02774ef89b259297ee0bb694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258508ac02774ef89b259297ee0bb694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258508ac02774ef89b259297ee0bb694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/258508ac02774ef89b259297ee0bb694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/258508ac02774ef89b259297ee0bb694.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FeEMmJ37zlPNEopPHvJ6ceW5xcU=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.664526+00 2025-12-09 10:15:04.66453+00 9626 HT014FW#VS-D3 SPMX-20240815304783 \N \N \N 1 \N [{"file_id": "1d91cf80-5948-4a9f-87e9-a49e51f30080", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db5b0668713d4e6091d46e626e940795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db5b0668713d4e6091d46e626e940795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db5b0668713d4e6091d46e626e940795.jpg", "file_size": 18353, "is_delete": false, "file_type": 1, "original_file_name": "HT014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db5b0668713d4e6091d46e626e940795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db5b0668713d4e6091d46e626e940795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db5b0668713d4e6091d46e626e940795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db5b0668713d4e6091d46e626e940795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db5b0668713d4e6091d46e626e940795.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-HAivE2bQCO8vzxoh_9F0bZTiY=", "createTime": "2024-08-15 14:49:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.667721+00 2025-12-09 10:15:04.667725+00 9628 LZ1259#背心款4号色 SPMX-20240815304798 \N \N \N 1 \N [{"file_id": "23f68c01-f011-4d67-a630-03847de52226", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a47d9d1a6b4646a89cce75323b617e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a47d9d1a6b4646a89cce75323b617e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a47d9d1a6b4646a89cce75323b617e.jpg", "file_size": 20417, "is_delete": false, "file_type": 1, "original_file_name": "LZ1259#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a47d9d1a6b4646a89cce75323b617e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a47d9d1a6b4646a89cce75323b617e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a47d9d1a6b4646a89cce75323b617e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a47d9d1a6b4646a89cce75323b617e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a47d9d1a6b4646a89cce75323b617e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOduOJELs48grRmjIsweLVDphz0=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.669562+00 2025-12-09 10:15:04.669567+00 9629 80349#前幅 SPMX-20240815304797 \N \N \N 1 \N [{"file_id": "151d5b4b-8b7c-4532-9596-b45aff91ae8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d46480719b04121b3fa6ba88aa46680.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d46480719b04121b3fa6ba88aa46680.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d46480719b04121b3fa6ba88aa46680.jpg", "file_size": 20322, "is_delete": false, "file_type": 1, "original_file_name": "80349#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d46480719b04121b3fa6ba88aa46680.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d46480719b04121b3fa6ba88aa46680.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d46480719b04121b3fa6ba88aa46680.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d46480719b04121b3fa6ba88aa46680.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d46480719b04121b3fa6ba88aa46680.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3BZ5KCpYVfHFBLxN07DN8PVmJWs=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.671163+00 2025-12-09 10:15:04.671168+00 9630 JTSS128FW#vs-d3 SPMX-20240815304796 \N \N \N 1 \N [{"file_id": "43cbee46-3b03-4b9f-b4f7-16d486534955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ac5612805e8435f899eb90087942568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ac5612805e8435f899eb90087942568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ac5612805e8435f899eb90087942568.jpg", "file_size": 12559, "is_delete": false, "file_type": 1, "original_file_name": "JTSS128FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac5612805e8435f899eb90087942568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac5612805e8435f899eb90087942568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac5612805e8435f899eb90087942568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ac5612805e8435f899eb90087942568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ac5612805e8435f899eb90087942568.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAh2ZRJelcHVfnFbcpTW2mvNInk=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.672781+00 2025-12-09 10:15:04.672786+00 9631 1080-1#原版色 SPMX-20240815304800 \N \N \N 1 \N [{"file_id": "6273629e-ef37-49de-a06a-721b40cb4a36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85e6b8dd9851449985f2e1fe5e5357b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85e6b8dd9851449985f2e1fe5e5357b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85e6b8dd9851449985f2e1fe5e5357b1.jpg", "file_size": 17272, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e6b8dd9851449985f2e1fe5e5357b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e6b8dd9851449985f2e1fe5e5357b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e6b8dd9851449985f2e1fe5e5357b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85e6b8dd9851449985f2e1fe5e5357b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85e6b8dd9851449985f2e1fe5e5357b1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYOVRgx1XBA-GPPduOQx3zoh4cM=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.674655+00 2025-12-09 10:15:04.674659+00 9632 0003-444#桔红 SPMX-20240815304799 \N \N \N 1 \N [{"file_id": "0e6b226b-e76d-4f62-b677-c7259f698b22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b34566bc664947a70587c7b01222fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b34566bc664947a70587c7b01222fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b34566bc664947a70587c7b01222fc.jpg", "file_size": 9819, "is_delete": false, "file_type": 1, "original_file_name": "0003-444#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b34566bc664947a70587c7b01222fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b34566bc664947a70587c7b01222fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b34566bc664947a70587c7b01222fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b34566bc664947a70587c7b01222fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b34566bc664947a70587c7b01222fc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTMPxw2BU53HgBzbt4HSjBtydlM=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.676286+00 2025-12-09 10:15:04.676291+00 9633 C340#绿色花 SPMX-20240815304801 \N \N \N 1 \N [{"file_id": "c17ae148-8b04-42df-b8f6-ddf3021000f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55668735e74540348dc53c0229d8ada8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55668735e74540348dc53c0229d8ada8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55668735e74540348dc53c0229d8ada8.jpg", "file_size": 16520, "is_delete": false, "file_type": 1, "original_file_name": "C340#绿色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55668735e74540348dc53c0229d8ada8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55668735e74540348dc53c0229d8ada8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55668735e74540348dc53c0229d8ada8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55668735e74540348dc53c0229d8ada8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55668735e74540348dc53c0229d8ada8.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVWsXp-1MXZ-EaQNucNhM-UMvho=", "createTime": "2024-08-15 14:49:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.67789+00 2025-12-09 10:15:04.677894+00 9634 JTSS129FW#VS-D3 SPMX-20240815304806 \N \N \N 1 \N [{"file_id": "57df51dd-e296-4473-869a-9d3768fec486", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e26b98cb53343bab52f16b65dc340da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e26b98cb53343bab52f16b65dc340da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e26b98cb53343bab52f16b65dc340da.jpg", "file_size": 8582, "is_delete": false, "file_type": 1, "original_file_name": "JTSS129FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26b98cb53343bab52f16b65dc340da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26b98cb53343bab52f16b65dc340da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e26b98cb53343bab52f16b65dc340da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e26b98cb53343bab52f16b65dc340da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e26b98cb53343bab52f16b65dc340da.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBK1XxWwPZPqyZScMae8gQKU5s0=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.679695+00 2025-12-09 10:15:04.6797+00 9635 DL30450#长款姜黄袖子 SPMX-20240815304807 \N \N \N 1 \N [{"file_id": "56d168cf-1f14-4057-87ab-2bd5ae37366d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0091e9df37be4ec49e25eafe10e2c220.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0091e9df37be4ec49e25eafe10e2c220.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0091e9df37be4ec49e25eafe10e2c220.jpg", "file_size": 12965, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款姜黄袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0091e9df37be4ec49e25eafe10e2c220.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0091e9df37be4ec49e25eafe10e2c220.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0091e9df37be4ec49e25eafe10e2c220.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0091e9df37be4ec49e25eafe10e2c220.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0091e9df37be4ec49e25eafe10e2c220.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVdAGaqPdOIu5HQPQQw8mk_MsSw=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.681314+00 2025-12-09 10:15:04.681318+00 9636 FHXGPK-批布008-2 SPMX-20240815304802 \N \N \N 1 \N [{"file_id": "df962327-7082-4b54-bb46-79ca538427fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg", "file_size": 30695, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布008-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1b4bb548f094cc6a3d7b3cbc99fe05c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihpt-6FGG0WiiecFQ0NapLW--AY=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.682922+00 2025-12-09 10:15:04.682926+00 9637 LJ9919FW#太阳花M VS-D3 SPMX-20240815304804 \N \N \N 1 \N [{"file_id": "f961d6e4-fbc8-433f-befe-dc8dbeb8608a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3de229cf62347e69b560b534385375f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3de229cf62347e69b560b534385375f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3de229cf62347e69b560b534385375f.jpg", "file_size": 11993, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#太阳花M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de229cf62347e69b560b534385375f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de229cf62347e69b560b534385375f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3de229cf62347e69b560b534385375f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3de229cf62347e69b560b534385375f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3de229cf62347e69b560b534385375f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LLUv3D7XBfkbNCfrOqwOAAbgcYE=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.684747+00 2025-12-09 10:15:04.684751+00 9638 HT015#紫 SPMX-20240815304805 \N \N \N 1 \N [{"file_id": "768be050-8c3c-4e6d-a592-ba20338c34df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ea011f864e743af9a71d576fa67f538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ea011f864e743af9a71d576fa67f538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ea011f864e743af9a71d576fa67f538.jpg", "file_size": 14802, "is_delete": false, "file_type": 1, "original_file_name": "HT015#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea011f864e743af9a71d576fa67f538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea011f864e743af9a71d576fa67f538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea011f864e743af9a71d576fa67f538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ea011f864e743af9a71d576fa67f538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ea011f864e743af9a71d576fa67f538.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jq1Dhk_kMOgdJyPyxe1wxobnuCE=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.686348+00 2025-12-09 10:15:04.686352+00 9639 23-2115#A1领口通用 SPMX-20240815304803 \N \N \N 1 \N [{"file_id": "dde42e8c-1f7d-477c-b6e2-7e060b19023f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebab546b923a40a897ac44d77b557494.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebab546b923a40a897ac44d77b557494.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebab546b923a40a897ac44d77b557494.jpg", "file_size": 6362, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab546b923a40a897ac44d77b557494.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab546b923a40a897ac44d77b557494.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab546b923a40a897ac44d77b557494.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebab546b923a40a897ac44d77b557494.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebab546b923a40a897ac44d77b557494.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G06D6uMnSxTxmRDcEnE0fYsXvW4=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.687938+00 2025-12-09 10:15:04.687942+00 9640 0003-444#湖绿 SPMX-20240815304809 \N \N \N 1 \N [{"file_id": "459002f4-f0a8-4f08-8556-08e73f2bb9c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2abff507d9494bfe8e27d3a3cc06fc4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2abff507d9494bfe8e27d3a3cc06fc4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2abff507d9494bfe8e27d3a3cc06fc4b.jpg", "file_size": 11007, "is_delete": false, "file_type": 1, "original_file_name": "0003-444#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abff507d9494bfe8e27d3a3cc06fc4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abff507d9494bfe8e27d3a3cc06fc4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2abff507d9494bfe8e27d3a3cc06fc4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2abff507d9494bfe8e27d3a3cc06fc4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2abff507d9494bfe8e27d3a3cc06fc4b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEoto1YxX0ZMAX_MwoO8GvtwYS4=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.689767+00 2025-12-09 10:15:04.689772+00 9641 80349#后幅 SPMX-20240815304812 \N \N \N 1 \N [{"file_id": "4a8686ef-dc9e-46de-b3cf-d509ecb8b186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25dd4c1ab83444b7be2c8c379be151f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25dd4c1ab83444b7be2c8c379be151f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25dd4c1ab83444b7be2c8c379be151f9.jpg", "file_size": 18821, "is_delete": false, "file_type": 1, "original_file_name": "80349#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd4c1ab83444b7be2c8c379be151f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd4c1ab83444b7be2c8c379be151f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dd4c1ab83444b7be2c8c379be151f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25dd4c1ab83444b7be2c8c379be151f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25dd4c1ab83444b7be2c8c379be151f9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjnchtO5YbvjcjeOtrYAh5bFLX0=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.691372+00 2025-12-09 10:15:04.691377+00 9642 HT015#绿 SPMX-20240815304814 \N \N \N 1 \N [{"file_id": "c21cd326-c34e-4ea9-b4a2-f43511eac333", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75e80460cf934139942e692df38d1816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75e80460cf934139942e692df38d1816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75e80460cf934139942e692df38d1816.jpg", "file_size": 13885, "is_delete": false, "file_type": 1, "original_file_name": "HT015#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e80460cf934139942e692df38d1816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e80460cf934139942e692df38d1816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75e80460cf934139942e692df38d1816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75e80460cf934139942e692df38d1816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75e80460cf934139942e692df38d1816.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZsm8F003dPUatePNpRjql_Lcvo=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.693114+00 2025-12-09 10:15:04.69312+00 9643 0003-444#玫红 SPMX-20240815304821 \N \N \N 1 \N [{"file_id": "e05280e9-7555-43a9-97c8-e337c35f91a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cdee75c1cd94b80b29c97997d300f8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cdee75c1cd94b80b29c97997d300f8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cdee75c1cd94b80b29c97997d300f8a.jpg", "file_size": 9510, "is_delete": false, "file_type": 1, "original_file_name": "0003-444#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdee75c1cd94b80b29c97997d300f8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdee75c1cd94b80b29c97997d300f8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cdee75c1cd94b80b29c97997d300f8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cdee75c1cd94b80b29c97997d300f8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cdee75c1cd94b80b29c97997d300f8a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVDkTCEevel4DraQoL2chnFBGSk=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.69501+00 2025-12-09 10:15:04.695015+00 9644 FHXGPK-批布008-3 SPMX-20240815304815 \N \N \N 1 \N [{"file_id": "5bfff840-3822-4621-8a85-88e872843430", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78b0b92ad2c141fe837a22cfa1ce4453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78b0b92ad2c141fe837a22cfa1ce4453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78b0b92ad2c141fe837a22cfa1ce4453.jpg", "file_size": 30303, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布008-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b0b92ad2c141fe837a22cfa1ce4453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b0b92ad2c141fe837a22cfa1ce4453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b0b92ad2c141fe837a22cfa1ce4453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78b0b92ad2c141fe837a22cfa1ce4453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78b0b92ad2c141fe837a22cfa1ce4453.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWGCZGfwt4qMzD93JzqfTsLzxhQ=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.696786+00 2025-12-09 10:15:04.696791+00 9645 LZ1259#背心款5号色 SPMX-20240815304810 \N \N \N 1 \N [{"file_id": "3924fefb-b038-47d4-ac76-9c34ba977d50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d804133abca4527a2f9a5c37e97c18c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d804133abca4527a2f9a5c37e97c18c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d804133abca4527a2f9a5c37e97c18c.jpg", "file_size": 20417, "is_delete": false, "file_type": 1, "original_file_name": "LZ1259#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d804133abca4527a2f9a5c37e97c18c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d804133abca4527a2f9a5c37e97c18c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d804133abca4527a2f9a5c37e97c18c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d804133abca4527a2f9a5c37e97c18c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d804133abca4527a2f9a5c37e97c18c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vou4ytkS6nExQ6_6EF75GUxM--Y=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.698443+00 2025-12-09 10:15:04.698447+00 9646 80350#前幅 SPMX-20240815304822 \N \N \N 1 \N [{"file_id": "c2c5414c-680a-4e1d-9cfa-b11696738e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e8a673758b4dfe8ca880c2631c7370.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e8a673758b4dfe8ca880c2631c7370.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e8a673758b4dfe8ca880c2631c7370.jpg", "file_size": 20408, "is_delete": false, "file_type": 1, "original_file_name": "80350#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a673758b4dfe8ca880c2631c7370.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a673758b4dfe8ca880c2631c7370.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a673758b4dfe8ca880c2631c7370.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e8a673758b4dfe8ca880c2631c7370.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e8a673758b4dfe8ca880c2631c7370.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJnlBygLuSJ7XEPfPMA9SD78Szo=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.70006+00 2025-12-09 10:15:04.700065+00 9647 23-2115#A1领子通用 SPMX-20240815304813 \N \N \N 1 \N [{"file_id": "8ad8627d-f0d7-430d-826a-31eede2b9584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d328b64c182448ac87482a1fafe5f26d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d328b64c182448ac87482a1fafe5f26d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d328b64c182448ac87482a1fafe5f26d.jpg", "file_size": 10579, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A1领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d328b64c182448ac87482a1fafe5f26d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d328b64c182448ac87482a1fafe5f26d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d328b64c182448ac87482a1fafe5f26d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d328b64c182448ac87482a1fafe5f26d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d328b64c182448ac87482a1fafe5f26d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSU1vmBQhpAfd0O6PMyzC68Z1wk=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.701905+00 2025-12-09 10:15:04.70191+00 9648 C340#黑色花 SPMX-20240815304808 \N \N \N 1 \N [{"file_id": "01a105e4-8dd7-4273-9a11-ca0eda058192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg", "file_size": 18007, "is_delete": false, "file_type": 1, "original_file_name": "C340#黑色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7560ff6c7d64bf7a4f52acd18fcb2a7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ayi_1mLll3qYt5LxP3yw96PlatM=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.703511+00 2025-12-09 10:15:04.703516+00 9649 1080-1#彩兰色 SPMX-20240815304820 \N \N \N 1 \N [{"file_id": "af0c1133-f528-4b13-8494-10f876be2ba0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "965ba1e2d4d54416b4de44ee2a0b2b8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "965ba1e2d4d54416b4de44ee2a0b2b8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "965ba1e2d4d54416b4de44ee2a0b2b8a.jpg", "file_size": 18608, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ba1e2d4d54416b4de44ee2a0b2b8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ba1e2d4d54416b4de44ee2a0b2b8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ba1e2d4d54416b4de44ee2a0b2b8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/965ba1e2d4d54416b4de44ee2a0b2b8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/965ba1e2d4d54416b4de44ee2a0b2b8a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRwJbuARjeItGoIfmt97f4JMsiA=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.705162+00 2025-12-09 10:15:04.705166+00 9650 JTSS130FW#VS-D3 SPMX-20240815304817 \N \N \N 1 \N [{"file_id": "61052c6f-4750-4185-837d-25d8f876a01b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d61b9877b98f4afc87a6eea06c4e0766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d61b9877b98f4afc87a6eea06c4e0766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d61b9877b98f4afc87a6eea06c4e0766.jpg", "file_size": 14786, "is_delete": false, "file_type": 1, "original_file_name": "JTSS130FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61b9877b98f4afc87a6eea06c4e0766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61b9877b98f4afc87a6eea06c4e0766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d61b9877b98f4afc87a6eea06c4e0766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d61b9877b98f4afc87a6eea06c4e0766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d61b9877b98f4afc87a6eea06c4e0766.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDx6o6jWtp_e-Izs7SMQN14ScWQ=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.70679+00 2025-12-09 10:15:04.706794+00 9651 DL30450#长款彩兰下摆 SPMX-20240815304818 \N \N \N 1 \N [{"file_id": "244e388b-dae5-46c7-a4d2-3241a5c61ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg", "file_size": 22574, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款彩兰下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ff77e2bdc1b4fcc94fb027022e1ab7c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJQcIRSip09PgpMPoWkUlASHV6Q=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.708397+00 2025-12-09 10:15:04.708401+00 9652 1080-1#土黄色 SPMX-20240815304811 \N \N \N 1 \N [{"file_id": "e0bc34d5-7c78-4c6f-aff5-fee1026c707d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef1fb155e27b47c6b6fa6e957a0225f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef1fb155e27b47c6b6fa6e957a0225f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef1fb155e27b47c6b6fa6e957a0225f9.jpg", "file_size": 15746, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#土黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1fb155e27b47c6b6fa6e957a0225f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1fb155e27b47c6b6fa6e957a0225f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1fb155e27b47c6b6fa6e957a0225f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef1fb155e27b47c6b6fa6e957a0225f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef1fb155e27b47c6b6fa6e957a0225f9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuNfWdD6U2cmuM5PVBjdKYJNIUk=", "createTime": "2024-08-15 14:49:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.71003+00 2025-12-09 10:15:04.710034+00 9653 LJ9919FW#太阳花S VS-D3 SPMX-20240815304816 \N \N \N 1 \N [{"file_id": "b7673747-12ee-4297-adb3-ecf20e14a74a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ca23f5a16f849978166cb7debce4823.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ca23f5a16f849978166cb7debce4823.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ca23f5a16f849978166cb7debce4823.jpg", "file_size": 11573, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#太阳花S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca23f5a16f849978166cb7debce4823.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca23f5a16f849978166cb7debce4823.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca23f5a16f849978166cb7debce4823.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ca23f5a16f849978166cb7debce4823.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ca23f5a16f849978166cb7debce4823.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jCeQ4lUwLFYyq7JI0onZQ2rbkc=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.711905+00 2025-12-09 10:15:04.71191+00 9654 C341#原版色 SPMX-20240815304819 \N \N \N 1 \N [{"file_id": "61371b82-df3d-4112-9e3e-2901a9321a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad31ef877f7540059a50bddc510f8308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad31ef877f7540059a50bddc510f8308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad31ef877f7540059a50bddc510f8308.jpg", "file_size": 12809, "is_delete": false, "file_type": 1, "original_file_name": "C341#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad31ef877f7540059a50bddc510f8308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad31ef877f7540059a50bddc510f8308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad31ef877f7540059a50bddc510f8308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad31ef877f7540059a50bddc510f8308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad31ef877f7540059a50bddc510f8308.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zubkmJtzotABjv1G0LmeNvXcq2w=", "createTime": "2024-08-15 14:49:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.71352+00 2025-12-09 10:15:04.713524+00 9655 LZ125FWF#1号色短袖 SPMX-20240815304823 \N \N \N 1 \N [{"file_id": "02f55ffd-fbf8-4778-a187-56d69e010168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf68f546952a43a1abd7adce98574599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf68f546952a43a1abd7adce98574599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf68f546952a43a1abd7adce98574599.jpg", "file_size": 18113, "is_delete": false, "file_type": 1, "original_file_name": "LZ125FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf68f546952a43a1abd7adce98574599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf68f546952a43a1abd7adce98574599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf68f546952a43a1abd7adce98574599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf68f546952a43a1abd7adce98574599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf68f546952a43a1abd7adce98574599.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYSXhGOzyC_AytGTrcXU8fgbTW4=", "createTime": "2024-08-15 14:49:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.715143+00 2025-12-09 10:15:04.715148+00 9656 23-2115#A2-3XL SPMX-20240815304824 \N \N \N 1 \N [{"file_id": "2c20d5b4-877c-4fe8-9c24-f660e910436c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58b80c98784242238814167b8db70b68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58b80c98784242238814167b8db70b68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58b80c98784242238814167b8db70b68.jpg", "file_size": 16538, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b80c98784242238814167b8db70b68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b80c98784242238814167b8db70b68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b80c98784242238814167b8db70b68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58b80c98784242238814167b8db70b68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58b80c98784242238814167b8db70b68.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jld7b1EqylA8XC87Udjl5w1obIw=", "createTime": "2024-08-15 14:49:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.716986+00 2025-12-09 10:15:04.716991+00 9657 DL30450#长款彩兰前后幅2XL SPMX-20240815304826 \N \N \N 1 \N [{"file_id": "b1ad2934-e06f-4ee2-bd21-d88b3052ea13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce11418f101c409cb34c0dece373cd01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce11418f101c409cb34c0dece373cd01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce11418f101c409cb34c0dece373cd01.jpg", "file_size": 19960, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款彩兰前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce11418f101c409cb34c0dece373cd01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce11418f101c409cb34c0dece373cd01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce11418f101c409cb34c0dece373cd01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce11418f101c409cb34c0dece373cd01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce11418f101c409cb34c0dece373cd01.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngw0UxMeQ078fTj9mfIRP3rz6kg=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.71863+00 2025-12-09 10:15:04.718635+00 9658 JTSS131FW#VS-D3 SPMX-20240815304827 \N \N \N 1 \N [{"file_id": "1a3f87e5-f350-4e80-bcb7-2a7d7536d118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bd9e5ac75ca442d86b0d987e12497bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bd9e5ac75ca442d86b0d987e12497bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bd9e5ac75ca442d86b0d987e12497bb.jpg", "file_size": 16843, "is_delete": false, "file_type": 1, "original_file_name": "JTSS131FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd9e5ac75ca442d86b0d987e12497bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd9e5ac75ca442d86b0d987e12497bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd9e5ac75ca442d86b0d987e12497bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bd9e5ac75ca442d86b0d987e12497bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bd9e5ac75ca442d86b0d987e12497bb.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q2-nMTpLXwnX_BgfLXnFIMbaeCg=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.720253+00 2025-12-09 10:15:04.720258+00 9659 HT015#蓝 SPMX-20240815304830 \N \N \N 1 \N [{"file_id": "e1ed5c72-848d-4233-8d52-d1bb12cdb377", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33ccde70404e4334885a7c4b7364412c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33ccde70404e4334885a7c4b7364412c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33ccde70404e4334885a7c4b7364412c.jpg", "file_size": 14168, "is_delete": false, "file_type": 1, "original_file_name": "HT015#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ccde70404e4334885a7c4b7364412c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ccde70404e4334885a7c4b7364412c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ccde70404e4334885a7c4b7364412c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33ccde70404e4334885a7c4b7364412c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33ccde70404e4334885a7c4b7364412c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZsn-BuvyrEcIZRGiE3AZwPPmeA=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.722115+00 2025-12-09 10:15:04.72212+00 9660 FHXGPK-批布008-4 SPMX-20240815304829 \N \N \N 1 \N [{"file_id": "92d484fc-d906-493b-be2e-61fa8ab87524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5198b27f1a5468c9fc6c0b78a82ef31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5198b27f1a5468c9fc6c0b78a82ef31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5198b27f1a5468c9fc6c0b78a82ef31.jpg", "file_size": 34207, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布008-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5198b27f1a5468c9fc6c0b78a82ef31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5198b27f1a5468c9fc6c0b78a82ef31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5198b27f1a5468c9fc6c0b78a82ef31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5198b27f1a5468c9fc6c0b78a82ef31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5198b27f1a5468c9fc6c0b78a82ef31.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9p_e_r7qjV7ZdFVebEXfxXBeDU=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.723976+00 2025-12-09 10:15:04.723981+00 9661 LJ9919FW#太阳花XL VS-D3 SPMX-20240815304825 \N \N \N 1 \N [{"file_id": "f0e28bc9-4a67-4833-99dd-19f629333250", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f4f8c29453a446b88bc309da3570f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f4f8c29453a446b88bc309da3570f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f4f8c29453a446b88bc309da3570f33.jpg", "file_size": 12886, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#太阳花XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4f8c29453a446b88bc309da3570f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4f8c29453a446b88bc309da3570f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4f8c29453a446b88bc309da3570f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f4f8c29453a446b88bc309da3570f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f4f8c29453a446b88bc309da3570f33.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEr_pupYZrTra-k1U2k_2jXrcpI=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.725599+00 2025-12-09 10:15:04.725604+00 9662 C341#墨绿 SPMX-20240815304828 \N \N \N 1 \N [{"file_id": "031b1d8c-0f9a-4e86-b8da-009e3b36aab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4847a9f9eddb428f8257d0b492f991e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4847a9f9eddb428f8257d0b492f991e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4847a9f9eddb428f8257d0b492f991e2.jpg", "file_size": 14808, "is_delete": false, "file_type": 1, "original_file_name": "C341#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4847a9f9eddb428f8257d0b492f991e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4847a9f9eddb428f8257d0b492f991e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4847a9f9eddb428f8257d0b492f991e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4847a9f9eddb428f8257d0b492f991e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4847a9f9eddb428f8257d0b492f991e2.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKn_578jVy3HBFArVXh0lxlLtD4=", "createTime": "2024-08-15 14:49:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.727585+00 2025-12-09 10:15:04.72759+00 9663 JTSS132FW#VS-D3 SPMX-20240815304838 \N \N \N 1 \N [{"file_id": "246f17a9-bd39-44c4-a244-ee7bdf8ff5c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2297c65fbb7a40bc902d2d196a8bf683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2297c65fbb7a40bc902d2d196a8bf683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2297c65fbb7a40bc902d2d196a8bf683.jpg", "file_size": 12618, "is_delete": false, "file_type": 1, "original_file_name": "JTSS132FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2297c65fbb7a40bc902d2d196a8bf683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2297c65fbb7a40bc902d2d196a8bf683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2297c65fbb7a40bc902d2d196a8bf683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2297c65fbb7a40bc902d2d196a8bf683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2297c65fbb7a40bc902d2d196a8bf683.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SiPUZVb-jKdPxiDPXX6b1evbegE=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.729562+00 2025-12-09 10:15:04.729567+00 9664 FHXGPK-批布008-5 SPMX-20240815304840 \N \N \N 1 \N [{"file_id": "92d1c70b-9f6a-4ef8-9461-b7209f361e90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "614b3e96964242b98c72f014b5a7bce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "614b3e96964242b98c72f014b5a7bce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "614b3e96964242b98c72f014b5a7bce1.jpg", "file_size": 32004, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布008-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614b3e96964242b98c72f014b5a7bce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614b3e96964242b98c72f014b5a7bce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614b3e96964242b98c72f014b5a7bce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/614b3e96964242b98c72f014b5a7bce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/614b3e96964242b98c72f014b5a7bce1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwsIekcpYD5kZ_YPMWpPiU3ksvc=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.731219+00 2025-12-09 10:15:04.731224+00 9665 C341#大白 SPMX-20240815304839 \N \N \N 1 \N [{"file_id": "604ac1c6-1be1-4d38-ae40-a6d6f2595af6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed0b14a4cf6c45b49043aca047f717fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed0b14a4cf6c45b49043aca047f717fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed0b14a4cf6c45b49043aca047f717fc.jpg", "file_size": 12956, "is_delete": false, "file_type": 1, "original_file_name": "C341#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0b14a4cf6c45b49043aca047f717fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0b14a4cf6c45b49043aca047f717fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0b14a4cf6c45b49043aca047f717fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed0b14a4cf6c45b49043aca047f717fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed0b14a4cf6c45b49043aca047f717fc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUyl1s2iupl0Banu6tuiLKtsF4g=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.733123+00 2025-12-09 10:15:04.733127+00 9666 1080-1#枣红色 SPMX-20240815304834 \N \N \N 1 \N [{"file_id": "59929366-c6ab-4c3b-a65c-f5257cf60ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7c650c6c748477f91428966e6f9bee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7c650c6c748477f91428966e6f9bee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7c650c6c748477f91428966e6f9bee7.jpg", "file_size": 18541, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c650c6c748477f91428966e6f9bee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c650c6c748477f91428966e6f9bee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c650c6c748477f91428966e6f9bee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7c650c6c748477f91428966e6f9bee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7c650c6c748477f91428966e6f9bee7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMElSRgvAz2-3Olt6d1ftRODbCw=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.734965+00 2025-12-09 10:15:04.73497+00 9667 LJ9919FW#橘色2XL VS-D3 SPMX-20240815304836 \N \N \N 1 \N [{"file_id": "0059dfce-204a-4f4b-bf03-4487fe0b78ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47d2e7683637400aae3318d1a3bb97a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47d2e7683637400aae3318d1a3bb97a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47d2e7683637400aae3318d1a3bb97a4.jpg", "file_size": 13125, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#橘色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d2e7683637400aae3318d1a3bb97a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d2e7683637400aae3318d1a3bb97a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d2e7683637400aae3318d1a3bb97a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47d2e7683637400aae3318d1a3bb97a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47d2e7683637400aae3318d1a3bb97a4.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Wo5NgbDKjW8YLKfEqPLCb8n-dg=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.736577+00 2025-12-09 10:15:04.736582+00 9668 DL30450#长款彩兰前后幅L SPMX-20240815304837 \N \N \N 1 \N [{"file_id": "6cd8852d-0ce1-4717-8c7c-4a6c60b6437c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3d73e7aa3174e4aa11b5ab404128952.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3d73e7aa3174e4aa11b5ab404128952.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3d73e7aa3174e4aa11b5ab404128952.jpg", "file_size": 18446, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款彩兰前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3d73e7aa3174e4aa11b5ab404128952.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3d73e7aa3174e4aa11b5ab404128952.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3d73e7aa3174e4aa11b5ab404128952.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3d73e7aa3174e4aa11b5ab404128952.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3d73e7aa3174e4aa11b5ab404128952.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiys4LxJ1QSfMXRN20t6qYQJu3I=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.7382+00 2025-12-09 10:15:04.738205+00 9669 0003-445#WJC22 SPMX-20240815304832 \N \N \N 1 \N [{"file_id": "914769ec-3adb-48de-b882-cfcad888ccfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b1084e070b429ea096d05ebf84c434.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b1084e070b429ea096d05ebf84c434.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b1084e070b429ea096d05ebf84c434.jpg", "file_size": 26137, "is_delete": false, "file_type": 1, "original_file_name": "0003-445#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b1084e070b429ea096d05ebf84c434.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b1084e070b429ea096d05ebf84c434.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b1084e070b429ea096d05ebf84c434.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b1084e070b429ea096d05ebf84c434.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b1084e070b429ea096d05ebf84c434.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oe7cZR_y5NiY8pQB6Y9z7ShQhtA=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.74009+00 2025-12-09 10:15:04.740094+00 9670 0003-446#WJC22 SPMX-20240815304843 \N \N \N 1 \N [{"file_id": "218ef2fe-56de-4a05-8b78-e10f3f84c872", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4de6424ecb6140ed8a1291198dbd38b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4de6424ecb6140ed8a1291198dbd38b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4de6424ecb6140ed8a1291198dbd38b8.jpg", "file_size": 8590, "is_delete": false, "file_type": 1, "original_file_name": "0003-446#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de6424ecb6140ed8a1291198dbd38b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de6424ecb6140ed8a1291198dbd38b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de6424ecb6140ed8a1291198dbd38b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4de6424ecb6140ed8a1291198dbd38b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4de6424ecb6140ed8a1291198dbd38b8.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvS-xJPc-PkJUNSURvW5wlSdmNk=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.741697+00 2025-12-09 10:15:04.741701+00 9671 HT015#黄 SPMX-20240815304841 \N \N \N 1 \N [{"file_id": "c21ec4e8-2bec-4207-80b2-5e01023235fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bdf08509b3949428cec9cc162f1a799.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bdf08509b3949428cec9cc162f1a799.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bdf08509b3949428cec9cc162f1a799.jpg", "file_size": 14310, "is_delete": false, "file_type": 1, "original_file_name": "HT015#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdf08509b3949428cec9cc162f1a799.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdf08509b3949428cec9cc162f1a799.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bdf08509b3949428cec9cc162f1a799.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bdf08509b3949428cec9cc162f1a799.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bdf08509b3949428cec9cc162f1a799.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zhYASXZInXxcjyTdMhLhMxD_0sI=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.743293+00 2025-12-09 10:15:04.743297+00 9672 LZ125FWF#2号色短袖 SPMX-20240815304835 \N \N \N 1 \N [{"file_id": "07560809-dba2-4e9d-88db-87f18346c482", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e5c2639086242cdaaad3928aee39069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e5c2639086242cdaaad3928aee39069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e5c2639086242cdaaad3928aee39069.jpg", "file_size": 17949, "is_delete": false, "file_type": 1, "original_file_name": "LZ125FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e5c2639086242cdaaad3928aee39069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e5c2639086242cdaaad3928aee39069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e5c2639086242cdaaad3928aee39069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e5c2639086242cdaaad3928aee39069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e5c2639086242cdaaad3928aee39069.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gbzUHqjFT-LL4DHOAmrgBsq7Z8M=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.745128+00 2025-12-09 10:15:04.745132+00 9673 23-2115#A2-4XL SPMX-20240815304833 \N \N \N 1 \N [{"file_id": "3ec27cc2-3f40-4b0d-bc0a-09753fff1083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d387f6b50c59423498c8cbfd7f16c198.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d387f6b50c59423498c8cbfd7f16c198.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d387f6b50c59423498c8cbfd7f16c198.jpg", "file_size": 16332, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d387f6b50c59423498c8cbfd7f16c198.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d387f6b50c59423498c8cbfd7f16c198.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d387f6b50c59423498c8cbfd7f16c198.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d387f6b50c59423498c8cbfd7f16c198.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d387f6b50c59423498c8cbfd7f16c198.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DTGEnVukWBfpj92nhtjecUAxnYk=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.746731+00 2025-12-09 10:15:04.746736+00 9674 80350#后幅 SPMX-20240815304831 \N \N \N 1 \N [{"file_id": "f7da60ac-6bf5-454e-b016-fa8f511dd3a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6011882ec4e44ca28750242847ceae6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6011882ec4e44ca28750242847ceae6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6011882ec4e44ca28750242847ceae6c.jpg", "file_size": 18286, "is_delete": false, "file_type": 1, "original_file_name": "80350#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6011882ec4e44ca28750242847ceae6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6011882ec4e44ca28750242847ceae6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6011882ec4e44ca28750242847ceae6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6011882ec4e44ca28750242847ceae6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6011882ec4e44ca28750242847ceae6c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOp4aS8p3mqw9OOWlBSEQNYFZVk=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.748351+00 2025-12-09 10:15:04.748355+00 9675 23-2115#A2-领子3XL SPMX-20240815304842 \N \N \N 1 \N [{"file_id": "4e64123d-e4a1-4c90-9f52-b295cead45ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e75d974eedef4561bf6b15456551b4d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e75d974eedef4561bf6b15456551b4d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e75d974eedef4561bf6b15456551b4d1.jpg", "file_size": 13116, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75d974eedef4561bf6b15456551b4d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75d974eedef4561bf6b15456551b4d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75d974eedef4561bf6b15456551b4d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e75d974eedef4561bf6b15456551b4d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e75d974eedef4561bf6b15456551b4d1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZwuIAaIggo1Gm3pefXZNY0TR9k=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.750176+00 2025-12-09 10:15:04.75018+00 9676 HT015FW#VS-D3 SPMX-20240815304852 \N \N \N 1 \N [{"file_id": "4a031b1c-cc7b-4875-8baf-4436c05cd630", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5e0a32133fb455e99a35fc9d2449d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5e0a32133fb455e99a35fc9d2449d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5e0a32133fb455e99a35fc9d2449d86.jpg", "file_size": 19405, "is_delete": false, "file_type": 1, "original_file_name": "HT015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0a32133fb455e99a35fc9d2449d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0a32133fb455e99a35fc9d2449d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0a32133fb455e99a35fc9d2449d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5e0a32133fb455e99a35fc9d2449d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5e0a32133fb455e99a35fc9d2449d86.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qS9U_HOq0pUfihjJdxkEwQScdZc=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.751848+00 2025-12-09 10:15:04.751853+00 9677 LZ125FWF#3号色短袖 SPMX-20240815304845 \N \N \N 1 \N [{"file_id": "f63a63cf-3646-4742-a704-fb75385620db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0773cee2dc274afa8b175c6cdae380ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0773cee2dc274afa8b175c6cdae380ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0773cee2dc274afa8b175c6cdae380ef.jpg", "file_size": 18709, "is_delete": false, "file_type": 1, "original_file_name": "LZ125FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0773cee2dc274afa8b175c6cdae380ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0773cee2dc274afa8b175c6cdae380ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0773cee2dc274afa8b175c6cdae380ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0773cee2dc274afa8b175c6cdae380ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0773cee2dc274afa8b175c6cdae380ef.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NkPBNOtPedIkXaKztlMq6G0mMWE=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.753496+00 2025-12-09 10:15:04.753501+00 9678 C341#黑色 SPMX-20240815304850 \N \N \N 1 \N [{"file_id": "8a8eeacf-0765-4cd5-a42e-f062756e9e1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdcb25d7538142ac80c3db58b63e1c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdcb25d7538142ac80c3db58b63e1c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdcb25d7538142ac80c3db58b63e1c04.jpg", "file_size": 15082, "is_delete": false, "file_type": 1, "original_file_name": "C341#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdcb25d7538142ac80c3db58b63e1c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdcb25d7538142ac80c3db58b63e1c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdcb25d7538142ac80c3db58b63e1c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdcb25d7538142ac80c3db58b63e1c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdcb25d7538142ac80c3db58b63e1c04.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TaQzhs5WtRH1mtId3oCZ1K0lVrg=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.755319+00 2025-12-09 10:15:04.755324+00 9679 1080-1#粉色 SPMX-20240815304846 \N \N \N 1 \N [{"file_id": "fb0f0222-fdc1-408a-b57a-f9b6cf0dce03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e866ad54394d2788874fd2cb998247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e866ad54394d2788874fd2cb998247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e866ad54394d2788874fd2cb998247.jpg", "file_size": 13085, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e866ad54394d2788874fd2cb998247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e866ad54394d2788874fd2cb998247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e866ad54394d2788874fd2cb998247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e866ad54394d2788874fd2cb998247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e866ad54394d2788874fd2cb998247.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M_VGpYyeECVSDl8vN7qsDuFQEyY=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.757224+00 2025-12-09 10:15:04.757229+00 9680 LJ9919FW#橘色L VS-D3 SPMX-20240815304847 \N \N \N 1 \N [{"file_id": "95d22de2-446f-4785-a74a-79fd7f915c7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de92cd0637f442caa378c59bef4d6af4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de92cd0637f442caa378c59bef4d6af4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de92cd0637f442caa378c59bef4d6af4.jpg", "file_size": 12120, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#橘色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de92cd0637f442caa378c59bef4d6af4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de92cd0637f442caa378c59bef4d6af4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de92cd0637f442caa378c59bef4d6af4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de92cd0637f442caa378c59bef4d6af4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de92cd0637f442caa378c59bef4d6af4.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_SqAEVneIjVr1Jpx3T7gazBl_6M=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.758861+00 2025-12-09 10:15:04.758865+00 9681 80351#后幅 SPMX-20240815304855 \N \N \N 1 \N [{"file_id": "a8fb3577-fdb4-420f-b037-1172470d8543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdcbd76a07854ac585d2ccc582c271c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdcbd76a07854ac585d2ccc582c271c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdcbd76a07854ac585d2ccc582c271c8.jpg", "file_size": 13584, "is_delete": false, "file_type": 1, "original_file_name": "80351#后幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcbd76a07854ac585d2ccc582c271c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcbd76a07854ac585d2ccc582c271c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcbd76a07854ac585d2ccc582c271c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdcbd76a07854ac585d2ccc582c271c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdcbd76a07854ac585d2ccc582c271c8.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLdGO3RKBMcyHxQcOR6UBGhBeP4=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.760451+00 2025-12-09 10:15:04.760455+00 9682 JTSS133FW#VS-D3 SPMX-20240815304849 \N \N \N 1 \N [{"file_id": "f2ddbc05-a679-4309-b2b8-72865c01acf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e3840fa7d6245d0b2e5472e8b8dc110.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e3840fa7d6245d0b2e5472e8b8dc110.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e3840fa7d6245d0b2e5472e8b8dc110.jpg", "file_size": 7487, "is_delete": false, "file_type": 1, "original_file_name": "JTSS133FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3840fa7d6245d0b2e5472e8b8dc110.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3840fa7d6245d0b2e5472e8b8dc110.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3840fa7d6245d0b2e5472e8b8dc110.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e3840fa7d6245d0b2e5472e8b8dc110.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e3840fa7d6245d0b2e5472e8b8dc110.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLUILVpEgsibk8_LOcmXaDarOeU=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.762261+00 2025-12-09 10:15:04.762265+00 9683 FHXGPK-批布009-1 SPMX-20240815304854 \N \N \N 1 \N [{"file_id": "b45ead9f-9c1c-4376-803d-dbd9659d0cc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15297e6875c241bdb6bb897422d813ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15297e6875c241bdb6bb897422d813ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15297e6875c241bdb6bb897422d813ca.jpg", "file_size": 32409, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布009-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15297e6875c241bdb6bb897422d813ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15297e6875c241bdb6bb897422d813ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15297e6875c241bdb6bb897422d813ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15297e6875c241bdb6bb897422d813ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15297e6875c241bdb6bb897422d813ca.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPwXyC8c3og6muhafy226GwEEbU=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.763893+00 2025-12-09 10:15:04.763897+00 9684 0003-447#白色 SPMX-20240815304853 \N \N \N 1 \N [{"file_id": "d3c03047-ea97-4a47-bcb1-409b1865883a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48e28e37662b45599f56cd9ef4ed6bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48e28e37662b45599f56cd9ef4ed6bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48e28e37662b45599f56cd9ef4ed6bab.jpg", "file_size": 28609, "is_delete": false, "file_type": 1, "original_file_name": "0003-447#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e28e37662b45599f56cd9ef4ed6bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e28e37662b45599f56cd9ef4ed6bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48e28e37662b45599f56cd9ef4ed6bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48e28e37662b45599f56cd9ef4ed6bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48e28e37662b45599f56cd9ef4ed6bab.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWiB_w3YTf6-hsU3ZnWSNIOAHI8=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.765524+00 2025-12-09 10:15:04.765528+00 9685 DL30450#长款彩兰前后幅XL SPMX-20240815304848 \N \N \N 1 \N [{"file_id": "b7824d7d-6a9e-4b45-950f-a706bd37f37e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8443fa2addc40f782643309a8e4cdbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8443fa2addc40f782643309a8e4cdbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8443fa2addc40f782643309a8e4cdbc.jpg", "file_size": 19351, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款彩兰前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8443fa2addc40f782643309a8e4cdbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8443fa2addc40f782643309a8e4cdbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8443fa2addc40f782643309a8e4cdbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8443fa2addc40f782643309a8e4cdbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8443fa2addc40f782643309a8e4cdbc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8DaEvENoFSDpuuf3ElqoQ64-Lqc=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.767356+00 2025-12-09 10:15:04.767361+00 9686 23-2115#A2-领子4XL SPMX-20240815304851 \N \N \N 1 \N [{"file_id": "65bacae7-8ae5-4e07-8ee0-0c1be5cb6ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f6711db98524f67a91bb28a5bff28e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f6711db98524f67a91bb28a5bff28e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f6711db98524f67a91bb28a5bff28e0.jpg", "file_size": 12936, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f6711db98524f67a91bb28a5bff28e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f6711db98524f67a91bb28a5bff28e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f6711db98524f67a91bb28a5bff28e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f6711db98524f67a91bb28a5bff28e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f6711db98524f67a91bb28a5bff28e0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IWXIX_p-SXorjhS33EzUvoOK2BU=", "createTime": "2024-08-15 14:49:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.76897+00 2025-12-09 10:15:04.768974+00 9687 80351#前幅 SPMX-20240815304844 \N \N \N 1 \N [{"file_id": "d662dd2d-efa9-41ab-8fb2-6f2e533b0c39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8d7d0a48b3b435fa94ea56888a36ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8d7d0a48b3b435fa94ea56888a36ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8d7d0a48b3b435fa94ea56888a36ce0.jpg", "file_size": 14865, "is_delete": false, "file_type": 1, "original_file_name": "80351#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d7d0a48b3b435fa94ea56888a36ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d7d0a48b3b435fa94ea56888a36ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d7d0a48b3b435fa94ea56888a36ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8d7d0a48b3b435fa94ea56888a36ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8d7d0a48b3b435fa94ea56888a36ce0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpjJ0TlFS5VRaifPvyMoo55a1Ok=", "createTime": "2024-08-15 14:49:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.770607+00 2025-12-09 10:15:04.770612+00 9688 LZ125FWF#4号色短袖 SPMX-20240815304857 \N \N \N 1 \N [{"file_id": "a95b4deb-e41a-4355-83cb-be9c6d4b9785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a163d6d50d44427aa581e466b29e4d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a163d6d50d44427aa581e466b29e4d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a163d6d50d44427aa581e466b29e4d5.jpg", "file_size": 18239, "is_delete": false, "file_type": 1, "original_file_name": "LZ125FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a163d6d50d44427aa581e466b29e4d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a163d6d50d44427aa581e466b29e4d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a163d6d50d44427aa581e466b29e4d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a163d6d50d44427aa581e466b29e4d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a163d6d50d44427aa581e466b29e4d5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KJ7h7_188fWzjBfDLuBCsfCXhk=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.772491+00 2025-12-09 10:15:04.772496+00 9689 JTSS134FW#VS-D3 SPMX-20240815304858 \N \N \N 1 \N [{"file_id": "3b136e6e-4de6-4da0-8632-5d4d955e82c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f0516c964094ba586abbdf941208d88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f0516c964094ba586abbdf941208d88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f0516c964094ba586abbdf941208d88.jpg", "file_size": 10465, "is_delete": false, "file_type": 1, "original_file_name": "JTSS134FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0516c964094ba586abbdf941208d88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0516c964094ba586abbdf941208d88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0516c964094ba586abbdf941208d88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f0516c964094ba586abbdf941208d88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f0516c964094ba586abbdf941208d88.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:InADRwxTkUJvH49lBO00QDrJ8vA=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.774586+00 2025-12-09 10:15:04.774591+00 9690 23-2115#A2前后片3XL SPMX-20240815304859 \N \N \N 1 \N [{"file_id": "84cc690a-f10f-45e3-a2ef-9ae503ff05b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97d37dabef3844a19722cf6a3aec7606.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97d37dabef3844a19722cf6a3aec7606.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97d37dabef3844a19722cf6a3aec7606.jpg", "file_size": 14083, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2前后片3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d37dabef3844a19722cf6a3aec7606.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d37dabef3844a19722cf6a3aec7606.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d37dabef3844a19722cf6a3aec7606.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97d37dabef3844a19722cf6a3aec7606.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97d37dabef3844a19722cf6a3aec7606.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhGRlXmOzC3adb484SV5mqDWTgQ=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.776451+00 2025-12-09 10:15:04.776455+00 9691 1080-1#草绿色 SPMX-20240815304856 \N \N \N 1 \N [{"file_id": "3b64d245-5aab-422a-8795-7cf200959d82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dc2d17b74e948ec92e94424d6f4aa9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dc2d17b74e948ec92e94424d6f4aa9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dc2d17b74e948ec92e94424d6f4aa9f.jpg", "file_size": 16518, "is_delete": false, "file_type": 1, "original_file_name": "1080-1#草绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc2d17b74e948ec92e94424d6f4aa9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc2d17b74e948ec92e94424d6f4aa9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc2d17b74e948ec92e94424d6f4aa9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dc2d17b74e948ec92e94424d6f4aa9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dc2d17b74e948ec92e94424d6f4aa9f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wGCLzZe0geN-mINsFH6dqIzcgHc=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.778352+00 2025-12-09 10:15:04.778356+00 9692 LJ9919FW#橘色M VS-D3 SPMX-20240815304860 \N \N \N 1 \N [{"file_id": "d347f81c-fe89-4eef-87f5-febe7e24acca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82bfdd8a537e43618ba29deaf0c9a806.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82bfdd8a537e43618ba29deaf0c9a806.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82bfdd8a537e43618ba29deaf0c9a806.jpg", "file_size": 12285, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#橘色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bfdd8a537e43618ba29deaf0c9a806.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bfdd8a537e43618ba29deaf0c9a806.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bfdd8a537e43618ba29deaf0c9a806.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82bfdd8a537e43618ba29deaf0c9a806.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82bfdd8a537e43618ba29deaf0c9a806.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQySTPen4f1X0Vo9w0DOE2GRYX0=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.779975+00 2025-12-09 10:15:04.779979+00 9693 LZ125FWF#5号色短袖 SPMX-20240815304867 \N \N \N 1 \N [{"file_id": "23cd8880-1b12-4d24-8e1c-337828e2528c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "786c37770f554f0285024cdd02fd5513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "786c37770f554f0285024cdd02fd5513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "786c37770f554f0285024cdd02fd5513.jpg", "file_size": 18456, "is_delete": false, "file_type": 1, "original_file_name": "LZ125FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786c37770f554f0285024cdd02fd5513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786c37770f554f0285024cdd02fd5513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786c37770f554f0285024cdd02fd5513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/786c37770f554f0285024cdd02fd5513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/786c37770f554f0285024cdd02fd5513.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4oS1JU08g5rjlRc4zLr-utAib3M=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.781584+00 2025-12-09 10:15:04.781588+00 9694 DL30450#长款蓝绿下摆 SPMX-20240815304871 \N \N \N 1 \N [{"file_id": "d1ed1afb-bee2-45e5-8df7-640aaba16bab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f364ac278d04a46b89e3aba06b1b955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f364ac278d04a46b89e3aba06b1b955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f364ac278d04a46b89e3aba06b1b955.jpg", "file_size": 22681, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款蓝绿下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f364ac278d04a46b89e3aba06b1b955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f364ac278d04a46b89e3aba06b1b955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f364ac278d04a46b89e3aba06b1b955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f364ac278d04a46b89e3aba06b1b955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f364ac278d04a46b89e3aba06b1b955.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iTe_VdZrrkofNXqPoBO66QjzDc4=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.783387+00 2025-12-09 10:15:04.783391+00 9695 JTSS135FW#VS-D3 SPMX-20240815304870 \N \N \N 1 \N [{"file_id": "56c84552-5cdd-493d-9c33-c103bea9592d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dea0708177fc4253935f0fbc2226869e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dea0708177fc4253935f0fbc2226869e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dea0708177fc4253935f0fbc2226869e.jpg", "file_size": 13923, "is_delete": false, "file_type": 1, "original_file_name": "JTSS135FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea0708177fc4253935f0fbc2226869e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea0708177fc4253935f0fbc2226869e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea0708177fc4253935f0fbc2226869e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dea0708177fc4253935f0fbc2226869e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dea0708177fc4253935f0fbc2226869e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyGUd8_G9qQJLjHUB60TdOycdnA=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.784987+00 2025-12-09 10:15:04.784992+00 9696 FHXGPK-批布009-2 SPMX-20240815304866 \N \N \N 1 \N [{"file_id": "c6bd5990-1310-4841-96cb-f7a800752503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8c661c18774478a8b053fcb85c5b9a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8c661c18774478a8b053fcb85c5b9a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8c661c18774478a8b053fcb85c5b9a1.jpg", "file_size": 33887, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布009-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c661c18774478a8b053fcb85c5b9a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c661c18774478a8b053fcb85c5b9a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c661c18774478a8b053fcb85c5b9a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8c661c18774478a8b053fcb85c5b9a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8c661c18774478a8b053fcb85c5b9a1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05mqVVYv1vnFyK4PCikGaiFY8Kc=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.786581+00 2025-12-09 10:15:04.786585+00 9697 8039FWE#墨绿 SPMX-20240815304863 \N \N \N 1 \N [{"file_id": "01f4cb83-290f-43fe-9d20-0dc86d7b2ea3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg", "file_size": 22327, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c4d0cfdb1e640fbae3f0aaf71c9161a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoQ2TCELC-jctuMLiZ5jtfcGgjw=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.788423+00 2025-12-09 10:15:04.788427+00 9698 0003-447#黑色 SPMX-20240815304865 \N \N \N 1 \N [{"file_id": "7d41692a-0913-443e-8df1-acbc781af8bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0314a024efa34e5d97f32fe9b3001e44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0314a024efa34e5d97f32fe9b3001e44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0314a024efa34e5d97f32fe9b3001e44.jpg", "file_size": 28765, "is_delete": false, "file_type": 1, "original_file_name": "0003-447#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0314a024efa34e5d97f32fe9b3001e44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0314a024efa34e5d97f32fe9b3001e44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0314a024efa34e5d97f32fe9b3001e44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0314a024efa34e5d97f32fe9b3001e44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0314a024efa34e5d97f32fe9b3001e44.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_4ckT9PLdNUFVocNJRNjloLFK8=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.790011+00 2025-12-09 10:15:04.790015+00 9699 1081#WJC22 SPMX-20240815304868 \N \N \N 1 \N [{"file_id": "4c8a5e8a-6ceb-439d-b346-4755f71c12c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c17d3cedbe2a40f3adb17f8072e23489.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c17d3cedbe2a40f3adb17f8072e23489.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c17d3cedbe2a40f3adb17f8072e23489.jpg", "file_size": 21970, "is_delete": false, "file_type": 1, "original_file_name": "1081#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17d3cedbe2a40f3adb17f8072e23489.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17d3cedbe2a40f3adb17f8072e23489.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17d3cedbe2a40f3adb17f8072e23489.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c17d3cedbe2a40f3adb17f8072e23489.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c17d3cedbe2a40f3adb17f8072e23489.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mOQY8YwOD4zuzEz_AspwiHY9-HI=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.791863+00 2025-12-09 10:15:04.791867+00 9700 C343#墨绿 SPMX-20240815304864 \N \N \N 1 \N [{"file_id": "f181b6f9-76c6-45fd-bba4-4dfdb3c0d1e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8cb9f52a2b34af59888addf7c5a2195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8cb9f52a2b34af59888addf7c5a2195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8cb9f52a2b34af59888addf7c5a2195.jpg", "file_size": 22114, "is_delete": false, "file_type": 1, "original_file_name": "C343#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8cb9f52a2b34af59888addf7c5a2195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8cb9f52a2b34af59888addf7c5a2195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8cb9f52a2b34af59888addf7c5a2195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8cb9f52a2b34af59888addf7c5a2195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8cb9f52a2b34af59888addf7c5a2195.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gn6v-TjOm75imClmzb9ljFQvXI4=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.793761+00 2025-12-09 10:15:04.793765+00 9701 LJ9919FW#橘色S VS-D3 SPMX-20240815304869 \N \N \N 1 \N [{"file_id": "4113c5d9-3a39-47ce-af27-609cc384918d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68371ed6b7334e17bb55c69ea3cadb8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68371ed6b7334e17bb55c69ea3cadb8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68371ed6b7334e17bb55c69ea3cadb8e.jpg", "file_size": 11800, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#橘色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68371ed6b7334e17bb55c69ea3cadb8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68371ed6b7334e17bb55c69ea3cadb8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68371ed6b7334e17bb55c69ea3cadb8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68371ed6b7334e17bb55c69ea3cadb8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68371ed6b7334e17bb55c69ea3cadb8e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ipa8gQ950o4Wkn4JeM6Orv6sHOU=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.795919+00 2025-12-09 10:15:04.795924+00 9702 DL30450#长款彩兰袖子 SPMX-20240815304861 \N \N \N 1 \N [{"file_id": "bf5f6ee4-f746-4f6f-9af0-41762d09c92d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "499e089706a840828bc4df095cbfde7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "499e089706a840828bc4df095cbfde7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "499e089706a840828bc4df095cbfde7e.jpg", "file_size": 13298, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款彩兰袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499e089706a840828bc4df095cbfde7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499e089706a840828bc4df095cbfde7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499e089706a840828bc4df095cbfde7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/499e089706a840828bc4df095cbfde7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/499e089706a840828bc4df095cbfde7e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-J5UDH4r97544xEsgQszKxIKRq4=", "createTime": "2024-08-15 14:49:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.797801+00 2025-12-09 10:15:04.797805+00 9703 23-2115#A2前后片4XL SPMX-20240815304872 \N \N \N 1 \N [{"file_id": "05b67fc8-2929-4b15-8495-17ba5878df70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56923386a2ff49d391131b1b2fff8d34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56923386a2ff49d391131b1b2fff8d34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56923386a2ff49d391131b1b2fff8d34.jpg", "file_size": 14504, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2前后片4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56923386a2ff49d391131b1b2fff8d34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56923386a2ff49d391131b1b2fff8d34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56923386a2ff49d391131b1b2fff8d34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56923386a2ff49d391131b1b2fff8d34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56923386a2ff49d391131b1b2fff8d34.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YKYhFPkvpKCQnUkqnYf8mPxR6I=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.799892+00 2025-12-09 10:15:04.799896+00 9704 HT015FWE#VS-D3 SPMX-20240815304862 \N \N \N 1 \N [{"file_id": "9dd32f48-3606-4031-afa2-f3a127125b44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02c3bc9ad794676a4771b5423642263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02c3bc9ad794676a4771b5423642263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02c3bc9ad794676a4771b5423642263.jpg", "file_size": 17290, "is_delete": false, "file_type": 1, "original_file_name": "HT015FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02c3bc9ad794676a4771b5423642263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02c3bc9ad794676a4771b5423642263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02c3bc9ad794676a4771b5423642263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02c3bc9ad794676a4771b5423642263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02c3bc9ad794676a4771b5423642263.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pajE7wNIP65WGwlcwPKiWA1AS-E=", "createTime": "2024-08-15 14:49:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.801775+00 2025-12-09 10:15:04.801779+00 9705 FHXGPK-批布009-3 SPMX-20240815304880 \N \N \N 1 \N [{"file_id": "13e4116d-f53d-4921-91f1-844c49e9909b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc03fc80209b495593549c1ce2b877da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc03fc80209b495593549c1ce2b877da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc03fc80209b495593549c1ce2b877da.jpg", "file_size": 34031, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布009-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc03fc80209b495593549c1ce2b877da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc03fc80209b495593549c1ce2b877da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc03fc80209b495593549c1ce2b877da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc03fc80209b495593549c1ce2b877da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc03fc80209b495593549c1ce2b877da.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99fl4WtIRWGw0bK2pQIExNupfV4=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.803874+00 2025-12-09 10:15:04.803879+00 9706 DL30450#长款蓝绿前后幅2XL SPMX-20240815304878 \N \N \N 1 \N [{"file_id": "ea9a8700-db76-487c-81e0-304ab321f692", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d4f0e93f14b48d5a46216274cd1cf70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d4f0e93f14b48d5a46216274cd1cf70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d4f0e93f14b48d5a46216274cd1cf70.jpg", "file_size": 19156, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款蓝绿前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4f0e93f14b48d5a46216274cd1cf70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4f0e93f14b48d5a46216274cd1cf70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4f0e93f14b48d5a46216274cd1cf70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d4f0e93f14b48d5a46216274cd1cf70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d4f0e93f14b48d5a46216274cd1cf70.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_PUt0xkFF73X1eHgfrKbfXx67U=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.805734+00 2025-12-09 10:15:04.805739+00 9707 LZ1260#背心款1号色 SPMX-20240815304881 \N \N \N 1 \N [{"file_id": "ec3b0e5c-ced0-4dce-b36b-b23d87f59627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b0f02ebeec043caa7d4affbdea8e6cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b0f02ebeec043caa7d4affbdea8e6cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b0f02ebeec043caa7d4affbdea8e6cc.jpg", "file_size": 18600, "is_delete": false, "file_type": 1, "original_file_name": "LZ1260#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0f02ebeec043caa7d4affbdea8e6cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0f02ebeec043caa7d4affbdea8e6cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0f02ebeec043caa7d4affbdea8e6cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b0f02ebeec043caa7d4affbdea8e6cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b0f02ebeec043caa7d4affbdea8e6cc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qSuZcQY3bQADpX9G7FhBN7t5VtA=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.807563+00 2025-12-09 10:15:04.807566+00 9708 JTSS136FW#vs-d3 SPMX-20240815304879 \N \N \N 1 \N [{"file_id": "e220d659-3fa2-4b14-8996-794cb633ca2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "491732a006994553a2c5ccc3a5f9fc42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "491732a006994553a2c5ccc3a5f9fc42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "491732a006994553a2c5ccc3a5f9fc42.jpg", "file_size": 9652, "is_delete": false, "file_type": 1, "original_file_name": "JTSS136FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491732a006994553a2c5ccc3a5f9fc42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491732a006994553a2c5ccc3a5f9fc42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491732a006994553a2c5ccc3a5f9fc42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/491732a006994553a2c5ccc3a5f9fc42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/491732a006994553a2c5ccc3a5f9fc42.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tS3A7kPataeyHMgxO0_7rTzb7sw=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.809146+00 2025-12-09 10:15:04.80915+00 9709 1081-8#A SPMX-20240815304882 \N \N \N 1 \N [{"file_id": "3dd5ea21-b633-4a94-b4a4-97674b6ffc34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c4f1c612b244e2097b5f8887d3a864e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c4f1c612b244e2097b5f8887d3a864e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c4f1c612b244e2097b5f8887d3a864e.jpg", "file_size": 12771, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f1c612b244e2097b5f8887d3a864e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f1c612b244e2097b5f8887d3a864e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4f1c612b244e2097b5f8887d3a864e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c4f1c612b244e2097b5f8887d3a864e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c4f1c612b244e2097b5f8887d3a864e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iuSPmCmyc3CN5uI5LLnbrHe8-3c=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.810731+00 2025-12-09 10:15:04.810735+00 9710 LJ9919FW#橘色XL VS-D3 SPMX-20240815304883 \N \N \N 1 \N [{"file_id": "684ce0d4-9fef-4c9d-a8ca-a4304afe4586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f23fc8087fb8498590b406660087426d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f23fc8087fb8498590b406660087426d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f23fc8087fb8498590b406660087426d.jpg", "file_size": 13026, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#橘色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23fc8087fb8498590b406660087426d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23fc8087fb8498590b406660087426d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f23fc8087fb8498590b406660087426d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f23fc8087fb8498590b406660087426d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f23fc8087fb8498590b406660087426d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCeSTypRYZ6aWmn5n5-wDG4IDZs=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.812294+00 2025-12-09 10:15:04.812298+00 9711 23-2115#A2袖子 SPMX-20240815304874 \N \N \N 1 \N [{"file_id": "ce3555ce-8ec2-446e-b5ca-3d39c49f99e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16e14e8b1ed14a6e8488b04531bd4de7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16e14e8b1ed14a6e8488b04531bd4de7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16e14e8b1ed14a6e8488b04531bd4de7.jpg", "file_size": 5887, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e14e8b1ed14a6e8488b04531bd4de7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e14e8b1ed14a6e8488b04531bd4de7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e14e8b1ed14a6e8488b04531bd4de7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16e14e8b1ed14a6e8488b04531bd4de7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16e14e8b1ed14a6e8488b04531bd4de7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jB9DTi-zwCc_7NUiQmSdDNIC8Jw=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.813883+00 2025-12-09 10:15:04.813886+00 9712 HT016#白VS-D3 SPMX-20240815304875 \N \N \N 1 \N [{"file_id": "a145e4d9-038b-44ba-a4b5-7d7cba954cf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e299edc11994c70a8facf1c41cb0a30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e299edc11994c70a8facf1c41cb0a30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e299edc11994c70a8facf1c41cb0a30.jpg", "file_size": 12467, "is_delete": false, "file_type": 1, "original_file_name": "HT016#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e299edc11994c70a8facf1c41cb0a30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e299edc11994c70a8facf1c41cb0a30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e299edc11994c70a8facf1c41cb0a30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e299edc11994c70a8facf1c41cb0a30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e299edc11994c70a8facf1c41cb0a30.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:20WvU7v8ghhpjH7FoQanPt977Bg=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.815699+00 2025-12-09 10:15:04.815707+00 9713 8039FWE#彩兰 SPMX-20240815304876 \N \N \N 1 \N [{"file_id": "38436480-9e2b-4deb-97c1-c756359a76ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01e1fc4e3044474495ac631073b7a4dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01e1fc4e3044474495ac631073b7a4dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01e1fc4e3044474495ac631073b7a4dd.jpg", "file_size": 23352, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e1fc4e3044474495ac631073b7a4dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e1fc4e3044474495ac631073b7a4dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e1fc4e3044474495ac631073b7a4dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01e1fc4e3044474495ac631073b7a4dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01e1fc4e3044474495ac631073b7a4dd.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8DTRaXFzZnjHnY1Mu3D73CQieBw=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.817294+00 2025-12-09 10:15:04.817298+00 9714 0003-448#WJC22 SPMX-20240815304873 \N \N \N 1 \N [{"file_id": "10bfa611-fc53-4f26-b5a2-6467d555677c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82e348d42d8645079480740fdbeb68a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82e348d42d8645079480740fdbeb68a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82e348d42d8645079480740fdbeb68a1.jpg", "file_size": 9481, "is_delete": false, "file_type": 1, "original_file_name": "0003-448#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e348d42d8645079480740fdbeb68a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e348d42d8645079480740fdbeb68a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e348d42d8645079480740fdbeb68a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82e348d42d8645079480740fdbeb68a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82e348d42d8645079480740fdbeb68a1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTF7LxU6tldNauOOSiWWODHvAoA=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.818874+00 2025-12-09 10:15:04.818878+00 9715 C343#大白 SPMX-20240815304877 \N \N \N 1 \N [{"file_id": "2e260a74-0386-4738-94a8-73bfd07bbc0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32a2ba7901e0428a84ba9cc40f97c33d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32a2ba7901e0428a84ba9cc40f97c33d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32a2ba7901e0428a84ba9cc40f97c33d.jpg", "file_size": 19235, "is_delete": false, "file_type": 1, "original_file_name": "C343#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a2ba7901e0428a84ba9cc40f97c33d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a2ba7901e0428a84ba9cc40f97c33d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a2ba7901e0428a84ba9cc40f97c33d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32a2ba7901e0428a84ba9cc40f97c33d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32a2ba7901e0428a84ba9cc40f97c33d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZpFLibvIRCHu94nx7dv7UA3_gY=", "createTime": "2024-08-15 14:49:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.820671+00 2025-12-09 10:15:04.820675+00 9716 0003-449#WJC22 SPMX-20240815304884 \N \N \N 1 \N [{"file_id": "9eca9c31-922b-4c4a-a67e-f9a2961a7042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f031c7547614e1f8b57e2d8e69557fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f031c7547614e1f8b57e2d8e69557fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f031c7547614e1f8b57e2d8e69557fa.jpg", "file_size": 7573, "is_delete": false, "file_type": 1, "original_file_name": "0003-449#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f031c7547614e1f8b57e2d8e69557fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f031c7547614e1f8b57e2d8e69557fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f031c7547614e1f8b57e2d8e69557fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f031c7547614e1f8b57e2d8e69557fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f031c7547614e1f8b57e2d8e69557fa.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8AufdVcyMOymva1S8r4rXWXrCVQ=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.822246+00 2025-12-09 10:15:04.82225+00 9717 JTSS137FW#VS-D3 SPMX-20240815304889 \N \N \N 1 \N [{"file_id": "823397ad-5669-4ca9-9a5b-88ce4cfe14b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38e100cd252a4bcfa8e8172aa6f40377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38e100cd252a4bcfa8e8172aa6f40377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38e100cd252a4bcfa8e8172aa6f40377.jpg", "file_size": 10689, "is_delete": false, "file_type": 1, "original_file_name": "JTSS137FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e100cd252a4bcfa8e8172aa6f40377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e100cd252a4bcfa8e8172aa6f40377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e100cd252a4bcfa8e8172aa6f40377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38e100cd252a4bcfa8e8172aa6f40377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38e100cd252a4bcfa8e8172aa6f40377.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEPFEFXlA_z9iX1irwo-CM57G48=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.823834+00 2025-12-09 10:15:04.823838+00 9718 FHXGPK-批布009-4 SPMX-20240815304892 \N \N \N 1 \N [{"file_id": "d747970a-7ec8-4708-9e94-47e59ea20a55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12a0f7a0180f41948960a2584733b2ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12a0f7a0180f41948960a2584733b2ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12a0f7a0180f41948960a2584733b2ee.jpg", "file_size": 37557, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布009-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a0f7a0180f41948960a2584733b2ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a0f7a0180f41948960a2584733b2ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a0f7a0180f41948960a2584733b2ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12a0f7a0180f41948960a2584733b2ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12a0f7a0180f41948960a2584733b2ee.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xT1iS6A359Xtmp3y9zwLXThWs1Y=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.825739+00 2025-12-09 10:15:04.825744+00 9719 8039FWE#枣红 SPMX-20240815304888 \N \N \N 1 \N [{"file_id": "8b0980af-ed5f-428b-b064-5b0ff1fb284b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1373b53328004982a87846246c7e28dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1373b53328004982a87846246c7e28dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1373b53328004982a87846246c7e28dd.jpg", "file_size": 22634, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b53328004982a87846246c7e28dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b53328004982a87846246c7e28dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b53328004982a87846246c7e28dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1373b53328004982a87846246c7e28dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1373b53328004982a87846246c7e28dd.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWWeYovBwvFds2mvgfmwcH0vERs=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.827319+00 2025-12-09 10:15:04.827323+00 9720 LJ9919FW#粉白2XL VS-D3 SPMX-20240815304891 \N \N \N 1 \N [{"file_id": "bc0360dc-2307-4013-ab4d-c8282e41dfb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d31f9f8910ba4b068daff10ef6a1e8eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d31f9f8910ba4b068daff10ef6a1e8eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d31f9f8910ba4b068daff10ef6a1e8eb.jpg", "file_size": 10996, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#粉白2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31f9f8910ba4b068daff10ef6a1e8eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31f9f8910ba4b068daff10ef6a1e8eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31f9f8910ba4b068daff10ef6a1e8eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d31f9f8910ba4b068daff10ef6a1e8eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d31f9f8910ba4b068daff10ef6a1e8eb.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rx23d6tmpZ7lJMiSlG2cy4QqGnA=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.82893+00 2025-12-09 10:15:04.828935+00 9721 23-2115#A2领子通用 SPMX-20240815304885 \N \N \N 1 \N [{"file_id": "c970c327-dfd9-4597-b700-da17e6d56097", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7bbc0a310894fbaa165b94ffd010f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7bbc0a310894fbaa165b94ffd010f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7bbc0a310894fbaa165b94ffd010f69.jpg", "file_size": 7713, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bbc0a310894fbaa165b94ffd010f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bbc0a310894fbaa165b94ffd010f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bbc0a310894fbaa165b94ffd010f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7bbc0a310894fbaa165b94ffd010f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7bbc0a310894fbaa165b94ffd010f69.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kr_b3QO4zVa8dJhCXhY6DjcBYGw=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.830746+00 2025-12-09 10:15:04.83075+00 9722 C343#枣红 SPMX-20240815304886 \N \N \N 1 \N [{"file_id": "50ac1fd1-94ea-44c3-a672-ebb7780891d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3736d0e3a4ae4347843bc1b1e42c3852.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3736d0e3a4ae4347843bc1b1e42c3852.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3736d0e3a4ae4347843bc1b1e42c3852.jpg", "file_size": 22424, "is_delete": false, "file_type": 1, "original_file_name": "C343#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3736d0e3a4ae4347843bc1b1e42c3852.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3736d0e3a4ae4347843bc1b1e42c3852.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3736d0e3a4ae4347843bc1b1e42c3852.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3736d0e3a4ae4347843bc1b1e42c3852.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3736d0e3a4ae4347843bc1b1e42c3852.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0ypVDwdtJ8AB2eqRoEgk5_xjtg=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.832354+00 2025-12-09 10:15:04.832358+00 9723 LZ1260#背心款2号色 SPMX-20240815304894 \N \N \N 1 \N [{"file_id": "393233c9-5025-4a25-9b79-34afc04fc1cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "412aaab8a20c4e3ba58e6cb2b4b953f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "412aaab8a20c4e3ba58e6cb2b4b953f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "412aaab8a20c4e3ba58e6cb2b4b953f5.jpg", "file_size": 18141, "is_delete": false, "file_type": 1, "original_file_name": "LZ1260#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412aaab8a20c4e3ba58e6cb2b4b953f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412aaab8a20c4e3ba58e6cb2b4b953f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412aaab8a20c4e3ba58e6cb2b4b953f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/412aaab8a20c4e3ba58e6cb2b4b953f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/412aaab8a20c4e3ba58e6cb2b4b953f5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyPTg3Fm7FIpj3r7jBQtNktUWcA=", "createTime": "2024-08-15 14:49:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.833948+00 2025-12-09 10:15:04.833952+00 9724 HT016#粉VS-D3 SPMX-20240815304887 \N \N \N 1 \N [{"file_id": "ae352f8f-8d6e-4f8c-a8e8-179667edb584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6fc7f141c0b4913bb3238d2f251c122.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6fc7f141c0b4913bb3238d2f251c122.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6fc7f141c0b4913bb3238d2f251c122.jpg", "file_size": 11706, "is_delete": false, "file_type": 1, "original_file_name": "HT016#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6fc7f141c0b4913bb3238d2f251c122.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6fc7f141c0b4913bb3238d2f251c122.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6fc7f141c0b4913bb3238d2f251c122.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6fc7f141c0b4913bb3238d2f251c122.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6fc7f141c0b4913bb3238d2f251c122.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mU5pOzEv-QkYjI6vCyS_VNGjid4=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.835775+00 2025-12-09 10:15:04.835779+00 9725 DL30450#长款蓝绿前后幅L SPMX-20240815304890 \N \N \N 1 \N [{"file_id": "e6755fc5-836e-4277-aa2f-49cea8720fb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70be721a19bd440d82b1625eb52c60f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70be721a19bd440d82b1625eb52c60f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70be721a19bd440d82b1625eb52c60f4.jpg", "file_size": 18644, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款蓝绿前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70be721a19bd440d82b1625eb52c60f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70be721a19bd440d82b1625eb52c60f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70be721a19bd440d82b1625eb52c60f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70be721a19bd440d82b1625eb52c60f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70be721a19bd440d82b1625eb52c60f4.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5Pl_Tdpt_w1ZsmC83BYQw2kIwA=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.837369+00 2025-12-09 10:15:04.837374+00 9726 0003-44FWF#V5曲线 SPMX-20240815304895 \N \N \N 1 \N [{"file_id": "5c9015a0-faef-4645-a5bc-cd9c0198496f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bcf191886fa46dc96364e2b21d4e909.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bcf191886fa46dc96364e2b21d4e909.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bcf191886fa46dc96364e2b21d4e909.jpg", "file_size": 15263, "is_delete": false, "file_type": 1, "original_file_name": "0003-44FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcf191886fa46dc96364e2b21d4e909.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcf191886fa46dc96364e2b21d4e909.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bcf191886fa46dc96364e2b21d4e909.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bcf191886fa46dc96364e2b21d4e909.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bcf191886fa46dc96364e2b21d4e909.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJBbzq8Iz_9SOdXHtnXl1QPJavI=", "createTime": "2024-08-15 14:49:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.838954+00 2025-12-09 10:15:04.838958+00 9727 1081-8#B SPMX-20240815304893 \N \N \N 1 \N [{"file_id": "2de2a892-056f-447c-a8fa-57eb0624e6bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef5f049bbc514152995703d4e162fb3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef5f049bbc514152995703d4e162fb3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef5f049bbc514152995703d4e162fb3f.jpg", "file_size": 12556, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f049bbc514152995703d4e162fb3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f049bbc514152995703d4e162fb3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f049bbc514152995703d4e162fb3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef5f049bbc514152995703d4e162fb3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef5f049bbc514152995703d4e162fb3f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fmtOUjUbZL4oQbz5xaT6FAW8Lc=", "createTime": "2024-08-15 14:49:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.84077+00 2025-12-09 10:15:04.840775+00 9728 1081-8#C SPMX-20240815304901 \N \N \N 1 \N [{"file_id": "4adfc3b6-81f3-4e9f-ba9c-3e3c86b3df94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76b88e57a47a42d5a029e85742a82744.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76b88e57a47a42d5a029e85742a82744.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76b88e57a47a42d5a029e85742a82744.jpg", "file_size": 13427, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b88e57a47a42d5a029e85742a82744.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b88e57a47a42d5a029e85742a82744.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b88e57a47a42d5a029e85742a82744.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76b88e57a47a42d5a029e85742a82744.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76b88e57a47a42d5a029e85742a82744.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRQLAxRGxQESDCdeIGqvchIxD6k=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.84234+00 2025-12-09 10:15:04.842345+00 9729 23-2115#A3-3XL SPMX-20240815304898 \N \N \N 1 \N [{"file_id": "5b25afb1-9cb2-4930-837f-101f00cf692c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49205612807244e8a3f1ec3bc17330c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49205612807244e8a3f1ec3bc17330c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49205612807244e8a3f1ec3bc17330c5.jpg", "file_size": 18781, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49205612807244e8a3f1ec3bc17330c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49205612807244e8a3f1ec3bc17330c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49205612807244e8a3f1ec3bc17330c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49205612807244e8a3f1ec3bc17330c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49205612807244e8a3f1ec3bc17330c5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RoLNgkPyMQC4hPEY0u0J6Z8eA0k=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.843947+00 2025-12-09 10:15:04.843951+00 9730 HT016#红VS-D3 SPMX-20240815304897 \N \N \N 1 \N [{"file_id": "f6c0a3c7-8ff4-4c8a-b2cd-f58421201460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f6963d1158043758c0e4b1271bf9558.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f6963d1158043758c0e4b1271bf9558.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f6963d1158043758c0e4b1271bf9558.jpg", "file_size": 13091, "is_delete": false, "file_type": 1, "original_file_name": "HT016#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6963d1158043758c0e4b1271bf9558.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6963d1158043758c0e4b1271bf9558.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f6963d1158043758c0e4b1271bf9558.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f6963d1158043758c0e4b1271bf9558.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f6963d1158043758c0e4b1271bf9558.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDBPtBzbIyw3Z8ueo7OapCkHLlc=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.845529+00 2025-12-09 10:15:04.845533+00 9731 HT016#黄VS-D3 SPMX-20240815304908 \N \N \N 1 \N [{"file_id": "db0bd713-09e6-4a12-a0ea-d02c2c71ff0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d39da50b02504828add9e150aebd4d2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d39da50b02504828add9e150aebd4d2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d39da50b02504828add9e150aebd4d2c.jpg", "file_size": 12621, "is_delete": false, "file_type": 1, "original_file_name": "HT016#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39da50b02504828add9e150aebd4d2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39da50b02504828add9e150aebd4d2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39da50b02504828add9e150aebd4d2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d39da50b02504828add9e150aebd4d2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d39da50b02504828add9e150aebd4d2c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCKn4JArHtiZIj22I5bxaxeiHS0=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.84733+00 2025-12-09 10:15:04.847334+00 9732 0003-450#WJC22 SPMX-20240815304906 \N \N \N 1 \N [{"file_id": "d87d7dcf-6afa-40a8-a0e6-4002907408e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b70f5d58feb47b48a9fdf13dc91e80b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b70f5d58feb47b48a9fdf13dc91e80b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b70f5d58feb47b48a9fdf13dc91e80b.jpg", "file_size": 17414, "is_delete": false, "file_type": 1, "original_file_name": "0003-450#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b70f5d58feb47b48a9fdf13dc91e80b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b70f5d58feb47b48a9fdf13dc91e80b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b70f5d58feb47b48a9fdf13dc91e80b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b70f5d58feb47b48a9fdf13dc91e80b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b70f5d58feb47b48a9fdf13dc91e80b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PbOj22Cq9ffjSqrhWawzj05Yug=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.848998+00 2025-12-09 10:15:04.849003+00 9733 C343#黑色 SPMX-20240815304896 \N \N \N 1 \N [{"file_id": "33e1ac7f-c28f-43b5-a0b3-dc00aac54e5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5180eeb92031467480108e7fdce14c2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5180eeb92031467480108e7fdce14c2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5180eeb92031467480108e7fdce14c2e.jpg", "file_size": 22429, "is_delete": false, "file_type": 1, "original_file_name": "C343#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180eeb92031467480108e7fdce14c2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180eeb92031467480108e7fdce14c2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180eeb92031467480108e7fdce14c2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5180eeb92031467480108e7fdce14c2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5180eeb92031467480108e7fdce14c2e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ev5nhXAhBhAL7Gl5dLL-4QJDxa4=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.850891+00 2025-12-09 10:15:04.850895+00 9734 C346#原版色 SPMX-20240815304909 \N \N \N 1 \N [{"file_id": "3ffaa392-a069-41e4-871c-29913d21f862", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3b8223dbee645b0aadade46f3d7410e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3b8223dbee645b0aadade46f3d7410e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3b8223dbee645b0aadade46f3d7410e.jpg", "file_size": 16819, "is_delete": false, "file_type": 1, "original_file_name": "C346#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b8223dbee645b0aadade46f3d7410e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b8223dbee645b0aadade46f3d7410e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b8223dbee645b0aadade46f3d7410e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3b8223dbee645b0aadade46f3d7410e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3b8223dbee645b0aadade46f3d7410e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RcspcC-YLwGOsvrFB5SIqDrAlYc=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.85252+00 2025-12-09 10:15:04.852524+00 9735 LZ1260#背心款3号色 SPMX-20240815304903 \N \N \N 1 \N [{"file_id": "4ac7a119-a15a-44b4-b8c3-c8f5afa5267b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfdd4ab5dcab4d51834f2572a6ca54a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfdd4ab5dcab4d51834f2572a6ca54a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfdd4ab5dcab4d51834f2572a6ca54a5.jpg", "file_size": 18384, "is_delete": false, "file_type": 1, "original_file_name": "LZ1260#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfdd4ab5dcab4d51834f2572a6ca54a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfdd4ab5dcab4d51834f2572a6ca54a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfdd4ab5dcab4d51834f2572a6ca54a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfdd4ab5dcab4d51834f2572a6ca54a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfdd4ab5dcab4d51834f2572a6ca54a5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7r92O4Osu_PHLapImkZCk8YJ4k=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.85412+00 2025-12-09 10:15:04.854124+00 9736 FHXGPK-批布009-5 SPMX-20240815304904 \N \N \N 1 \N [{"file_id": "8f869798-99b1-4375-b632-10a680cc086a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ca75e69acf5461da50e03ee4e75bc81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ca75e69acf5461da50e03ee4e75bc81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ca75e69acf5461da50e03ee4e75bc81.jpg", "file_size": 31651, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布009-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca75e69acf5461da50e03ee4e75bc81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca75e69acf5461da50e03ee4e75bc81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca75e69acf5461da50e03ee4e75bc81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ca75e69acf5461da50e03ee4e75bc81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ca75e69acf5461da50e03ee4e75bc81.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATBQaw6IsTcM3Te3YNpjq3I-AOs=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.855952+00 2025-12-09 10:15:04.855957+00 9737 LJ9919FW#粉白L VS-D3 SPMX-20240815304905 \N \N \N 1 \N [{"file_id": "71705d56-265f-4c66-9f78-80433a3e39a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22c6c62927dc4190a2161d9b7cb79f91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22c6c62927dc4190a2161d9b7cb79f91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22c6c62927dc4190a2161d9b7cb79f91.jpg", "file_size": 10058, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#粉白L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c6c62927dc4190a2161d9b7cb79f91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c6c62927dc4190a2161d9b7cb79f91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c6c62927dc4190a2161d9b7cb79f91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22c6c62927dc4190a2161d9b7cb79f91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22c6c62927dc4190a2161d9b7cb79f91.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjkdaxeDhqcK5ltRJxMQpDdwaBY=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.857532+00 2025-12-09 10:15:04.857536+00 9738 23-2115#A3-4XL SPMX-20240815304907 \N \N \N 1 \N [{"file_id": "2038a7c3-2b91-4d7d-8c8a-dd7c98f731a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56f0dd914df84d1d88517bbd713e63c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56f0dd914df84d1d88517bbd713e63c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56f0dd914df84d1d88517bbd713e63c7.jpg", "file_size": 17381, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0dd914df84d1d88517bbd713e63c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0dd914df84d1d88517bbd713e63c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0dd914df84d1d88517bbd713e63c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56f0dd914df84d1d88517bbd713e63c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56f0dd914df84d1d88517bbd713e63c7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3QID4OTTy-yDEbms46tG8g7Ey4=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.85915+00 2025-12-09 10:15:04.859155+00 9739 8039FWE#皮粉 SPMX-20240815304899 \N \N \N 1 \N [{"file_id": "202bb328-2a96-4cf6-8d32-b1333d1f6d22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb6548e888354d87a876c5c05d7191f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb6548e888354d87a876c5c05d7191f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb6548e888354d87a876c5c05d7191f9.jpg", "file_size": 19790, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#皮粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6548e888354d87a876c5c05d7191f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6548e888354d87a876c5c05d7191f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6548e888354d87a876c5c05d7191f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb6548e888354d87a876c5c05d7191f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb6548e888354d87a876c5c05d7191f9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7V6NyxSJ5gq8vOMFlX5nRbAJVLA=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.860976+00 2025-12-09 10:15:04.860981+00 9740 JTSS138FW#VS-D3 SPMX-20240815304900 \N \N \N 1 \N [{"file_id": "a84adf10-7341-4848-807d-2e5a902248f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83a42fccddbf4f039781dbaaee47df56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83a42fccddbf4f039781dbaaee47df56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83a42fccddbf4f039781dbaaee47df56.jpg", "file_size": 6784, "is_delete": false, "file_type": 1, "original_file_name": "JTSS138FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a42fccddbf4f039781dbaaee47df56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a42fccddbf4f039781dbaaee47df56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a42fccddbf4f039781dbaaee47df56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83a42fccddbf4f039781dbaaee47df56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83a42fccddbf4f039781dbaaee47df56.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hz_810IQzf7MKivr7dFffBgJuus=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.862565+00 2025-12-09 10:15:04.862569+00 9741 DL30450#长款蓝绿前后幅XL SPMX-20240815304902 \N \N \N 1 \N [{"file_id": "4ad868eb-d2f6-40d9-b9d4-d02411656601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96688d78b57149eaa39dde23796186b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96688d78b57149eaa39dde23796186b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96688d78b57149eaa39dde23796186b6.jpg", "file_size": 18953, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款蓝绿前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96688d78b57149eaa39dde23796186b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96688d78b57149eaa39dde23796186b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96688d78b57149eaa39dde23796186b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96688d78b57149eaa39dde23796186b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96688d78b57149eaa39dde23796186b6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jto5lxac6cFQqD02ahasbX9m7OA=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.864137+00 2025-12-09 10:15:04.864141+00 9742 0003-450#红色 SPMX-20240815304918 \N \N \N 1 \N [{"file_id": "782a9746-e17d-4219-a289-9808c21c4131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95e08b1b50134f09a2be8c5826e6cc11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95e08b1b50134f09a2be8c5826e6cc11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95e08b1b50134f09a2be8c5826e6cc11.jpg", "file_size": 12464, "is_delete": false, "file_type": 1, "original_file_name": "0003-450#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e08b1b50134f09a2be8c5826e6cc11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e08b1b50134f09a2be8c5826e6cc11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e08b1b50134f09a2be8c5826e6cc11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95e08b1b50134f09a2be8c5826e6cc11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95e08b1b50134f09a2be8c5826e6cc11.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3I0J0BO0mh214weimZKOXR2pGU=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.866045+00 2025-12-09 10:15:04.86605+00 9743 LJ9919FW#粉白M VS-D3 SPMX-20240815304916 \N \N \N 1 \N [{"file_id": "77bfdd6c-0f7e-41ca-a217-76ac51404829", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35b66f55dd744d63b2600216886a0ff6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35b66f55dd744d63b2600216886a0ff6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35b66f55dd744d63b2600216886a0ff6.jpg", "file_size": 10282, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#粉白M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b66f55dd744d63b2600216886a0ff6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b66f55dd744d63b2600216886a0ff6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b66f55dd744d63b2600216886a0ff6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35b66f55dd744d63b2600216886a0ff6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35b66f55dd744d63b2600216886a0ff6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkRM2EhZeYF6roL7TGkSN2259ZQ=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.867673+00 2025-12-09 10:15:04.867678+00 9744 8039FWE#红色 SPMX-20240815304910 \N \N \N 1 \N [{"file_id": "d71872be-e30a-47d7-ac8a-7e8a5a789a11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "722df04fc095466aa0b0d89de7ffd94b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "722df04fc095466aa0b0d89de7ffd94b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "722df04fc095466aa0b0d89de7ffd94b.jpg", "file_size": 22991, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722df04fc095466aa0b0d89de7ffd94b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722df04fc095466aa0b0d89de7ffd94b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722df04fc095466aa0b0d89de7ffd94b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/722df04fc095466aa0b0d89de7ffd94b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/722df04fc095466aa0b0d89de7ffd94b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Ac8-me8U8gB-mhEsJ3_buyROAo=", "createTime": "2024-08-15 14:49:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.869264+00 2025-12-09 10:15:04.869268+00 9745 1081-8#D SPMX-20240815304913 \N \N \N 1 \N [{"file_id": "72b4b817-54fd-4213-b56d-4972dc11910d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44759492728642f69881d228adb46f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44759492728642f69881d228adb46f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44759492728642f69881d228adb46f89.jpg", "file_size": 12088, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44759492728642f69881d228adb46f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44759492728642f69881d228adb46f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44759492728642f69881d228adb46f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44759492728642f69881d228adb46f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44759492728642f69881d228adb46f89.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHF5s0UfGhQFfPTz6hSrVkTH9wE=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.884319+00 2025-12-09 10:15:04.884324+00 9754 8039FWE#黄色 SPMX-20240815304922 \N \N \N 1 \N [{"file_id": "5d47d6cc-aed9-4002-8659-7f1c6a3555ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0c400c4928d49c4b9021085cdd4a582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0c400c4928d49c4b9021085cdd4a582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0c400c4928d49c4b9021085cdd4a582.jpg", "file_size": 21278, "is_delete": false, "file_type": 1, "original_file_name": "8039FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c400c4928d49c4b9021085cdd4a582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c400c4928d49c4b9021085cdd4a582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c400c4928d49c4b9021085cdd4a582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0c400c4928d49c4b9021085cdd4a582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0c400c4928d49c4b9021085cdd4a582.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYFo8CcPjhTfw_X3oRy7vK-3VQA=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.871084+00 2025-12-09 10:15:04.871088+00 9746 LZ1260#背心款4号色 SPMX-20240815304912 \N \N \N 1 \N [{"file_id": "a7378028-d57d-4baa-8326-a01826eb18ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6823602623fc4fad8aee73da714e1bfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6823602623fc4fad8aee73da714e1bfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6823602623fc4fad8aee73da714e1bfa.jpg", "file_size": 17029, "is_delete": false, "file_type": 1, "original_file_name": "LZ1260#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823602623fc4fad8aee73da714e1bfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823602623fc4fad8aee73da714e1bfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6823602623fc4fad8aee73da714e1bfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6823602623fc4fad8aee73da714e1bfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6823602623fc4fad8aee73da714e1bfa.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdmCpts5dj6MwiUj4q_NpUCXjrw=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.872679+00 2025-12-09 10:15:04.872684+00 9747 DL30450#长款蓝绿袖子 SPMX-20240815304917 \N \N \N 1 \N [{"file_id": "859b8f6b-317e-4747-a8e1-e7a75280d312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08f907204fd24d10b188bedbeaa15b2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08f907204fd24d10b188bedbeaa15b2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08f907204fd24d10b188bedbeaa15b2d.jpg", "file_size": 13094, "is_delete": false, "file_type": 1, "original_file_name": "DL30450#长款蓝绿袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f907204fd24d10b188bedbeaa15b2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f907204fd24d10b188bedbeaa15b2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f907204fd24d10b188bedbeaa15b2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08f907204fd24d10b188bedbeaa15b2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08f907204fd24d10b188bedbeaa15b2d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3uNS8d1itswBWCCsDlzAxLhG2bY=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.874319+00 2025-12-09 10:15:04.874323+00 9748 FHXGPK-批布010-1 SPMX-20240815304914 \N \N \N 1 \N [{"file_id": "4a6fc2c9-5fd5-4a4a-82b7-2463e926e54c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b028311383594e3fb80d835e97603376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b028311383594e3fb80d835e97603376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b028311383594e3fb80d835e97603376.jpg", "file_size": 34056, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布010-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b028311383594e3fb80d835e97603376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b028311383594e3fb80d835e97603376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b028311383594e3fb80d835e97603376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b028311383594e3fb80d835e97603376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b028311383594e3fb80d835e97603376.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qu7H_-UTcoeHZMN8ye204AMQ_LA=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.876133+00 2025-12-09 10:15:04.876137+00 9749 JTSS139FW#VS-D3 SPMX-20240815304911 \N \N \N 1 \N [{"file_id": "99b11b2c-dc2b-424e-9e72-dab9c748a017", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64b0a1ac9519461ab2dfecf876f13585.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64b0a1ac9519461ab2dfecf876f13585.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64b0a1ac9519461ab2dfecf876f13585.jpg", "file_size": 14088, "is_delete": false, "file_type": 1, "original_file_name": "JTSS139FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b0a1ac9519461ab2dfecf876f13585.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b0a1ac9519461ab2dfecf876f13585.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b0a1ac9519461ab2dfecf876f13585.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64b0a1ac9519461ab2dfecf876f13585.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64b0a1ac9519461ab2dfecf876f13585.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5qazdb1pxnae4m_mZjNMqjeO5I=", "createTime": "2024-08-15 14:49:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.877728+00 2025-12-09 10:15:04.877732+00 9750 23-2115#A3-领子3XL SPMX-20240815304920 \N \N \N 1 \N [{"file_id": "5aadd703-b884-41d3-976d-f8476be9a798", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51c598a06db6401cb78853f08e6a97d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51c598a06db6401cb78853f08e6a97d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51c598a06db6401cb78853f08e6a97d0.jpg", "file_size": 12933, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c598a06db6401cb78853f08e6a97d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c598a06db6401cb78853f08e6a97d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c598a06db6401cb78853f08e6a97d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51c598a06db6401cb78853f08e6a97d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51c598a06db6401cb78853f08e6a97d0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9enMw-N8BG4Ms5cMry9iSBSFesE=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.879319+00 2025-12-09 10:15:04.879323+00 9751 C346#紫色 SPMX-20240815304919 \N \N \N 1 \N [{"file_id": "55a52b0a-7a6f-47f8-b9f3-9555f9af7142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3948519740746509ee5734516e16f92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3948519740746509ee5734516e16f92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3948519740746509ee5734516e16f92.jpg", "file_size": 17274, "is_delete": false, "file_type": 1, "original_file_name": "C346#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3948519740746509ee5734516e16f92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3948519740746509ee5734516e16f92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3948519740746509ee5734516e16f92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3948519740746509ee5734516e16f92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3948519740746509ee5734516e16f92.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHVACaGAclGAM6siSzJrhpJspb4=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.881129+00 2025-12-09 10:15:04.881133+00 9752 8048FWF#军绿 SPMX-20240815304933 \N \N \N 1 \N [{"file_id": "39fdebb3-0ac5-42b6-abc0-ff142b1b042e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92d6d61dc4064fc3b5f5f0ad979adee6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92d6d61dc4064fc3b5f5f0ad979adee6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92d6d61dc4064fc3b5f5f0ad979adee6.jpg", "file_size": 13883, "is_delete": false, "file_type": 1, "original_file_name": "8048FWF#军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92d6d61dc4064fc3b5f5f0ad979adee6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92d6d61dc4064fc3b5f5f0ad979adee6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92d6d61dc4064fc3b5f5f0ad979adee6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92d6d61dc4064fc3b5f5f0ad979adee6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92d6d61dc4064fc3b5f5f0ad979adee6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KN45rWnWKxdFQIZluzMcePYNnYY=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.882701+00 2025-12-09 10:15:04.882709+00 9753 LZ1261#背心款1号色 SPMX-20240815304935 \N \N \N 1 \N [{"file_id": "0af8bf50-254b-47a6-ae87-858d3062602c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f04e09302d7a41809d648f661da04433.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f04e09302d7a41809d648f661da04433.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f04e09302d7a41809d648f661da04433.jpg", "file_size": 18108, "is_delete": false, "file_type": 1, "original_file_name": "LZ1261#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e09302d7a41809d648f661da04433.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e09302d7a41809d648f661da04433.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e09302d7a41809d648f661da04433.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f04e09302d7a41809d648f661da04433.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f04e09302d7a41809d648f661da04433.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kOP8mRZm3eR3ruiYPk57g7yrAXY=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.886252+00 2025-12-09 10:15:04.886257+00 9755 DL30469#墨绿下摆 SPMX-20240815304925 \N \N \N 1 \N [{"file_id": "c2dd9a77-dfbe-4710-8899-23fd6f0d4d33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e53da1361ab4611aebec07dd2ac6356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e53da1361ab4611aebec07dd2ac6356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e53da1361ab4611aebec07dd2ac6356.jpg", "file_size": 21059, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#墨绿下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53da1361ab4611aebec07dd2ac6356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53da1361ab4611aebec07dd2ac6356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53da1361ab4611aebec07dd2ac6356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e53da1361ab4611aebec07dd2ac6356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e53da1361ab4611aebec07dd2ac6356.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEz0HW_eCia9PGToLc6XD-OXH_M=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.887846+00 2025-12-09 10:15:04.88785+00 9756 HT016FW#VS-D3 SPMX-20240815304932 \N \N \N 1 \N [{"file_id": "14310bfb-841e-4bf9-ae3e-9764a7c1bc89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "117145c6b46c4c74823172f8cbafee30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "117145c6b46c4c74823172f8cbafee30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "117145c6b46c4c74823172f8cbafee30.jpg", "file_size": 27668, "is_delete": false, "file_type": 1, "original_file_name": "HT016FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117145c6b46c4c74823172f8cbafee30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117145c6b46c4c74823172f8cbafee30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117145c6b46c4c74823172f8cbafee30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/117145c6b46c4c74823172f8cbafee30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/117145c6b46c4c74823172f8cbafee30.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOtMkYM6u8Ru_PYWJqNfpD243R0=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.889421+00 2025-12-09 10:15:04.889426+00 9757 LZ1260#背心款5号色 SPMX-20240815304924 \N \N \N 1 \N [{"file_id": "d9832d03-434b-4d5f-b07e-3138eb4b49b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe5dd7e47a9b497b9bd1038feed92d60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe5dd7e47a9b497b9bd1038feed92d60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe5dd7e47a9b497b9bd1038feed92d60.jpg", "file_size": 18200, "is_delete": false, "file_type": 1, "original_file_name": "LZ1260#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5dd7e47a9b497b9bd1038feed92d60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5dd7e47a9b497b9bd1038feed92d60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5dd7e47a9b497b9bd1038feed92d60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe5dd7e47a9b497b9bd1038feed92d60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe5dd7e47a9b497b9bd1038feed92d60.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:muG9sAGq3nQRZQfWyxofdRoR7k0=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.481723+00 2025-12-09 10:15:37.481728+00 16794 JTSS753FW#VS-D3 SPMX-20240815312012 \N \N \N 1 \N [{"file_id": "fdd3d1fb-022e-4641-8edc-4160054ddb17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72bdd7e8c3a140618b4d30bb0dcf4704.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72bdd7e8c3a140618b4d30bb0dcf4704.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72bdd7e8c3a140618b4d30bb0dcf4704.jpg", "file_size": 10795, "is_delete": false, "file_type": 1, "original_file_name": "JTSS753FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72bdd7e8c3a140618b4d30bb0dcf4704.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72bdd7e8c3a140618b4d30bb0dcf4704.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72bdd7e8c3a140618b4d30bb0dcf4704.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72bdd7e8c3a140618b4d30bb0dcf4704.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72bdd7e8c3a140618b4d30bb0dcf4704.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1a3rZqvYFTXW68DmUMhemyMpMHs=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.893141+00 2025-12-09 10:15:04.893146+00 9758 1081-8#E SPMX-20240815304929 \N \N \N 1 \N [{"file_id": "363bab12-47d0-42a5-8afd-2a638c2a48aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a983a09d97f44379b310c9d84fb0bed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a983a09d97f44379b310c9d84fb0bed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a983a09d97f44379b310c9d84fb0bed.jpg", "file_size": 12847, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a983a09d97f44379b310c9d84fb0bed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a983a09d97f44379b310c9d84fb0bed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a983a09d97f44379b310c9d84fb0bed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a983a09d97f44379b310c9d84fb0bed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a983a09d97f44379b310c9d84fb0bed.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lndhxOP2xJmj_v5BFR1UztYpnE0=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.894759+00 2025-12-09 10:15:04.894764+00 9759 C346#红色 SPMX-20240815304930 \N \N \N 1 \N [{"file_id": "8e7b7a64-9db1-43c6-80b7-504ca712eefa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc14dbfe4639454e87aa562424e01782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc14dbfe4639454e87aa562424e01782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc14dbfe4639454e87aa562424e01782.jpg", "file_size": 17081, "is_delete": false, "file_type": 1, "original_file_name": "C346#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc14dbfe4639454e87aa562424e01782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc14dbfe4639454e87aa562424e01782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc14dbfe4639454e87aa562424e01782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc14dbfe4639454e87aa562424e01782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc14dbfe4639454e87aa562424e01782.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17wIZkm2StmMTINdmGd-YbVW1G8=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.896344+00 2025-12-09 10:15:04.896348+00 9760 FHXGPK-批布010-2 SPMX-20240815304928 \N \N \N 1 \N [{"file_id": "b81eef08-f40c-4b4c-a7b2-50a58523bd52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c3e2e815aa4e9f85f1e131109d9db7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c3e2e815aa4e9f85f1e131109d9db7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c3e2e815aa4e9f85f1e131109d9db7.jpg", "file_size": 32946, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布010-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c3e2e815aa4e9f85f1e131109d9db7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c3e2e815aa4e9f85f1e131109d9db7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c3e2e815aa4e9f85f1e131109d9db7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c3e2e815aa4e9f85f1e131109d9db7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c3e2e815aa4e9f85f1e131109d9db7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzHd_7mhCoaafnybL331YHjPNyc=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.897932+00 2025-12-09 10:15:04.897936+00 9761 0003-450#蓝色 SPMX-20240815304927 \N \N \N 1 \N [{"file_id": "c9f92e3b-af6e-4bd9-98d9-e89558b76b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c5c368162ac468b9407a01295028f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c5c368162ac468b9407a01295028f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c5c368162ac468b9407a01295028f0e.jpg", "file_size": 11832, "is_delete": false, "file_type": 1, "original_file_name": "0003-450#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5c368162ac468b9407a01295028f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5c368162ac468b9407a01295028f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5c368162ac468b9407a01295028f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c5c368162ac468b9407a01295028f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c5c368162ac468b9407a01295028f0e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oedPD2-prEwsVvBfEeNPnZsEouc=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.899516+00 2025-12-09 10:15:04.899521+00 9762 HT016#黑VS-D3 SPMX-20240815304921 \N \N \N 1 \N [{"file_id": "237d0c6a-7e56-4d04-ba72-50d148fa5ceb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3261f7400f4a4659b82dabe4af0713cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3261f7400f4a4659b82dabe4af0713cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3261f7400f4a4659b82dabe4af0713cd.jpg", "file_size": 14442, "is_delete": false, "file_type": 1, "original_file_name": "HT016#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3261f7400f4a4659b82dabe4af0713cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3261f7400f4a4659b82dabe4af0713cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3261f7400f4a4659b82dabe4af0713cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3261f7400f4a4659b82dabe4af0713cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3261f7400f4a4659b82dabe4af0713cd.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mn3hitVEzRua4iD5T2SGauI_zCo=", "createTime": "2024-08-15 14:49:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.901319+00 2025-12-09 10:15:04.901323+00 9763 LJ9919FW#粉白S VS-D3 SPMX-20240815304926 \N \N \N 1 \N [{"file_id": "d7b2b58f-a18a-4cf6-ada4-83de4475ce3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3212a03a96d244f083d350d6ed03df7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3212a03a96d244f083d350d6ed03df7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3212a03a96d244f083d350d6ed03df7f.jpg", "file_size": 9897, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#粉白S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3212a03a96d244f083d350d6ed03df7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3212a03a96d244f083d350d6ed03df7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3212a03a96d244f083d350d6ed03df7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3212a03a96d244f083d350d6ed03df7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3212a03a96d244f083d350d6ed03df7f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yx2C-0EG0P9jVnyIkOOK6mTcrg0=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.902923+00 2025-12-09 10:15:04.902928+00 9764 23-2115#A3-领子4XL SPMX-20240815304931 \N \N \N 1 \N [{"file_id": "6cb23dcf-759b-44f6-98ad-f297d58ea490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9688379e146945a0a1708876abbf03e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9688379e146945a0a1708876abbf03e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9688379e146945a0a1708876abbf03e6.jpg", "file_size": 13287, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9688379e146945a0a1708876abbf03e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9688379e146945a0a1708876abbf03e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9688379e146945a0a1708876abbf03e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9688379e146945a0a1708876abbf03e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9688379e146945a0a1708876abbf03e6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HT2Gx5paz_7W7PK_zlvEf_vTygc=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.904498+00 2025-12-09 10:15:04.904503+00 9765 0003-450#黑色 SPMX-20240815304938 \N \N \N 1 \N [{"file_id": "770b8f64-ab18-4e1e-9911-389560ab4744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a4a255d6c05411abd65b2a3571b6fcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a4a255d6c05411abd65b2a3571b6fcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a4a255d6c05411abd65b2a3571b6fcc.jpg", "file_size": 12511, "is_delete": false, "file_type": 1, "original_file_name": "0003-450#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a255d6c05411abd65b2a3571b6fcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a255d6c05411abd65b2a3571b6fcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a255d6c05411abd65b2a3571b6fcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a4a255d6c05411abd65b2a3571b6fcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a4a255d6c05411abd65b2a3571b6fcc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1JaTVj7A4_bnK1CStlIID7oY-4=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.906351+00 2025-12-09 10:15:04.906355+00 9766 DL30469#墨绿前后幅L SPMX-20240815304948 \N \N \N 1 \N [{"file_id": "ef92f790-fd76-453f-b7cb-fb914bc6a26a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad6825557bc34cd7a407604e5e09117e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad6825557bc34cd7a407604e5e09117e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad6825557bc34cd7a407604e5e09117e.jpg", "file_size": 20469, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#墨绿前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6825557bc34cd7a407604e5e09117e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6825557bc34cd7a407604e5e09117e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6825557bc34cd7a407604e5e09117e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad6825557bc34cd7a407604e5e09117e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad6825557bc34cd7a407604e5e09117e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyCcx6Unnw-xwlJHCh0ARmMP528=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.907922+00 2025-12-09 10:15:04.907926+00 9767 0003-451#WJC22 SPMX-20240815304949 \N \N \N 1 \N [{"file_id": "f6313ea6-19cd-43e4-a2ff-99b41387c259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80c269e7f19a4fe5bb6fcb22baf3a542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80c269e7f19a4fe5bb6fcb22baf3a542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80c269e7f19a4fe5bb6fcb22baf3a542.jpg", "file_size": 26245, "is_delete": false, "file_type": 1, "original_file_name": "0003-451#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c269e7f19a4fe5bb6fcb22baf3a542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c269e7f19a4fe5bb6fcb22baf3a542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c269e7f19a4fe5bb6fcb22baf3a542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80c269e7f19a4fe5bb6fcb22baf3a542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80c269e7f19a4fe5bb6fcb22baf3a542.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9FZjuweEqEpGrNe75RNLbSb75s=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.909513+00 2025-12-09 10:15:04.909517+00 9768 1081-8#F SPMX-20240815304939 \N \N \N 1 \N [{"file_id": "7f997ef2-b839-48ee-a882-00a14782c4d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "406074a24c4649b08389b228d9ab4c36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "406074a24c4649b08389b228d9ab4c36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "406074a24c4649b08389b228d9ab4c36.jpg", "file_size": 12887, "is_delete": false, "file_type": 1, "original_file_name": "1081-8#F.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406074a24c4649b08389b228d9ab4c36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406074a24c4649b08389b228d9ab4c36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406074a24c4649b08389b228d9ab4c36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/406074a24c4649b08389b228d9ab4c36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/406074a24c4649b08389b228d9ab4c36.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0lEc_2-NzI5ZHob-9ZMrPaBHzc=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.911334+00 2025-12-09 10:15:04.911338+00 9769 DL30469#墨绿前后幅2XL SPMX-20240815304936 \N \N \N 1 \N [{"file_id": "e6515b8e-2026-4a10-96f5-19789de67ec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0076993295904870bbc901c4deca930b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0076993295904870bbc901c4deca930b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0076993295904870bbc901c4deca930b.jpg", "file_size": 21052, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#墨绿前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0076993295904870bbc901c4deca930b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0076993295904870bbc901c4deca930b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0076993295904870bbc901c4deca930b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0076993295904870bbc901c4deca930b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0076993295904870bbc901c4deca930b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hFlQ8eKml16aRhYS4f0Nzp2g7Zw=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.912929+00 2025-12-09 10:15:04.912933+00 9770 LJ9919FW#蓝白2XL VS-D3 SPMX-20240815304946 \N \N \N 1 \N [{"file_id": "6d0a89e4-0f60-4e5a-9b51-a41df2b8db96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ff096018eb4ee2879244d7b1a15113.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ff096018eb4ee2879244d7b1a15113.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ff096018eb4ee2879244d7b1a15113.jpg", "file_size": 13541, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#蓝白2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ff096018eb4ee2879244d7b1a15113.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ff096018eb4ee2879244d7b1a15113.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ff096018eb4ee2879244d7b1a15113.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ff096018eb4ee2879244d7b1a15113.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ff096018eb4ee2879244d7b1a15113.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZKF1xRWDFGTZ6WoHZpFkXkvv_k=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.914494+00 2025-12-09 10:15:04.914499+00 9771 JTSS143FW#VS-D3 SPMX-20240815304947 \N \N \N 1 \N [{"file_id": "08db9c69-1de1-4223-997f-b3c3ed0a437c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3feb7a08ca08490ab117972ece204d22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3feb7a08ca08490ab117972ece204d22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3feb7a08ca08490ab117972ece204d22.jpg", "file_size": 8591, "is_delete": false, "file_type": 1, "original_file_name": "JTSS143FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feb7a08ca08490ab117972ece204d22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feb7a08ca08490ab117972ece204d22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feb7a08ca08490ab117972ece204d22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3feb7a08ca08490ab117972ece204d22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3feb7a08ca08490ab117972ece204d22.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64gHacm9UL9unl0h2oAcRqAcO6Q=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.916383+00 2025-12-09 10:15:04.916387+00 9772 C347#白色 SPMX-20240815304951 \N \N \N 1 \N [{"file_id": "3297ebb5-5d5e-452f-8e7c-6d756ab47eac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg", "file_size": 23983, "is_delete": false, "file_type": 1, "original_file_name": "C347#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f8dbb3b6ba04a6b9c8d8dc7ca506cf9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hinDhtrK319dX61qgotnCEcZLDs=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.918035+00 2025-12-09 10:15:04.91804+00 9773 1081-9#原版 SPMX-20240815304950 \N \N \N 1 \N [{"file_id": "93c347cb-a97c-41d6-ad41-20d884f069a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eb7ad251b884ec7b57f1092c14d5d7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eb7ad251b884ec7b57f1092c14d5d7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eb7ad251b884ec7b57f1092c14d5d7d.jpg", "file_size": 15862, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb7ad251b884ec7b57f1092c14d5d7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb7ad251b884ec7b57f1092c14d5d7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb7ad251b884ec7b57f1092c14d5d7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eb7ad251b884ec7b57f1092c14d5d7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eb7ad251b884ec7b57f1092c14d5d7d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SkNs8neUV5ABIUkAMl9M5vWgcY=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.919667+00 2025-12-09 10:15:04.91967+00 9774 FHXGPK-批布010-3 SPMX-20240815304940 \N \N \N 1 \N [{"file_id": "dcdd5b8e-6e55-4553-aff1-35aa30a5a27d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f46bf33b30d74d66afc8318993024fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f46bf33b30d74d66afc8318993024fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f46bf33b30d74d66afc8318993024fd0.jpg", "file_size": 39653, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布010-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46bf33b30d74d66afc8318993024fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46bf33b30d74d66afc8318993024fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46bf33b30d74d66afc8318993024fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f46bf33b30d74d66afc8318993024fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f46bf33b30d74d66afc8318993024fd0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMXL_NCvqsRT5QtvRYm__crMGQ0=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.921481+00 2025-12-09 10:15:04.921485+00 9775 23-2115#A4-3XL SPMX-20240815304944 \N \N \N 1 \N [{"file_id": "56c8b104-d821-45e1-b214-2864e3bdba89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "280f4a532c7f40209d1881bcffb614b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "280f4a532c7f40209d1881bcffb614b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "280f4a532c7f40209d1881bcffb614b9.jpg", "file_size": 16364, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280f4a532c7f40209d1881bcffb614b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280f4a532c7f40209d1881bcffb614b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280f4a532c7f40209d1881bcffb614b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/280f4a532c7f40209d1881bcffb614b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/280f4a532c7f40209d1881bcffb614b9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mHKHZpklyCv7gNF2MxJ82tyCaA=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.924003+00 2025-12-09 10:15:04.924007+00 9776 LZ1261#背心款2号色 SPMX-20240815304945 \N \N \N 1 \N [{"file_id": "3dffd6e1-a4ab-4925-b2b1-5370934e7c1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df08f7d8c7e041838dbeb603674d3f9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df08f7d8c7e041838dbeb603674d3f9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df08f7d8c7e041838dbeb603674d3f9a.jpg", "file_size": 17777, "is_delete": false, "file_type": 1, "original_file_name": "LZ1261#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df08f7d8c7e041838dbeb603674d3f9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df08f7d8c7e041838dbeb603674d3f9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df08f7d8c7e041838dbeb603674d3f9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df08f7d8c7e041838dbeb603674d3f9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df08f7d8c7e041838dbeb603674d3f9a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoVIi3aSKZ4ArcyRjvrtuRY4qKs=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.926399+00 2025-12-09 10:15:04.926403+00 9777 JTSS142FW#VS-D3 SPMX-20240815304934 \N \N \N 1 \N [{"file_id": "87d29ba4-c85a-4aa2-971a-9132723c5a2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83a0e17b251941ce837d4486060d80e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83a0e17b251941ce837d4486060d80e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83a0e17b251941ce837d4486060d80e0.jpg", "file_size": 20976, "is_delete": false, "file_type": 1, "original_file_name": "JTSS142FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a0e17b251941ce837d4486060d80e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a0e17b251941ce837d4486060d80e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a0e17b251941ce837d4486060d80e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83a0e17b251941ce837d4486060d80e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83a0e17b251941ce837d4486060d80e0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sspHxdNmYsZYrohmLcTlGLkY9M4=", "createTime": "2024-08-15 14:49:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.928521+00 2025-12-09 10:15:04.928525+00 9778 LJ9919FW#粉白XL VS-D3 SPMX-20240815304937 \N \N \N 1 \N [{"file_id": "cd6a1846-77bb-4956-9db7-597a86b1edc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "365d0b7af45942d1a47188b9391bae5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "365d0b7af45942d1a47188b9391bae5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "365d0b7af45942d1a47188b9391bae5c.jpg", "file_size": 11191, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#粉白XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/365d0b7af45942d1a47188b9391bae5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/365d0b7af45942d1a47188b9391bae5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/365d0b7af45942d1a47188b9391bae5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/365d0b7af45942d1a47188b9391bae5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/365d0b7af45942d1a47188b9391bae5c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxGF3qwWFQP0JCYD3hYSQjNgBOw=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.930721+00 2025-12-09 10:15:04.930725+00 9779 8048FWF#彩兰 SPMX-20240815304943 \N \N \N 1 \N [{"file_id": "cf59fbc3-b354-4925-9cc2-a01264fc7d35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f63e5db03d244428a6c974b56fdfebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f63e5db03d244428a6c974b56fdfebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f63e5db03d244428a6c974b56fdfebd.jpg", "file_size": 15514, "is_delete": false, "file_type": 1, "original_file_name": "8048FWF#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63e5db03d244428a6c974b56fdfebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63e5db03d244428a6c974b56fdfebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63e5db03d244428a6c974b56fdfebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f63e5db03d244428a6c974b56fdfebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f63e5db03d244428a6c974b56fdfebd.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WW1BGGzTNpfwUJwF5I_I72n6Y2k=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.933061+00 2025-12-09 10:15:04.933065+00 9780 C346#绿色 SPMX-20240815304941 \N \N \N 1 \N [{"file_id": "89530e2a-61ba-445f-a470-ecfcc639e062", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e53f0b66256449ba5b702530aa82fb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e53f0b66256449ba5b702530aa82fb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e53f0b66256449ba5b702530aa82fb9.jpg", "file_size": 15976, "is_delete": false, "file_type": 1, "original_file_name": "C346#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53f0b66256449ba5b702530aa82fb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53f0b66256449ba5b702530aa82fb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e53f0b66256449ba5b702530aa82fb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e53f0b66256449ba5b702530aa82fb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e53f0b66256449ba5b702530aa82fb9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQYMt0x2yyRIInrMgHtkpFY7bMM=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.935401+00 2025-12-09 10:15:04.935405+00 9781 HT016FWE#VS-D3 SPMX-20240815304942 \N \N \N 1 \N [{"file_id": "d0640c87-345f-4ee2-9fdd-dc9145632528", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5704eaef6ac4ba7a3486a712a85f57c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5704eaef6ac4ba7a3486a712a85f57c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5704eaef6ac4ba7a3486a712a85f57c.jpg", "file_size": 11299, "is_delete": false, "file_type": 1, "original_file_name": "HT016FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5704eaef6ac4ba7a3486a712a85f57c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5704eaef6ac4ba7a3486a712a85f57c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5704eaef6ac4ba7a3486a712a85f57c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5704eaef6ac4ba7a3486a712a85f57c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5704eaef6ac4ba7a3486a712a85f57c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2G9njuyXAev_GcQ7Zrb6F0WnIIk=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.937477+00 2025-12-09 10:15:04.937481+00 9782 JTSS144FW#VS-D3 SPMX-20240815304958 \N \N \N 1 \N [{"file_id": "911ee66b-e7ac-4087-85fd-1cb4240e94c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7a24aa815c44ae480e995635702c9ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7a24aa815c44ae480e995635702c9ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7a24aa815c44ae480e995635702c9ae.jpg", "file_size": 7736, "is_delete": false, "file_type": 1, "original_file_name": "JTSS144FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a24aa815c44ae480e995635702c9ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a24aa815c44ae480e995635702c9ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a24aa815c44ae480e995635702c9ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7a24aa815c44ae480e995635702c9ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7a24aa815c44ae480e995635702c9ae.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zFA5yWLIxERvdFoz9dxL9AsuXQ=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.939197+00 2025-12-09 10:15:04.939202+00 9783 FHXGPK-批布010-4 SPMX-20240815304955 \N \N \N 1 \N [{"file_id": "592ac4c0-068d-450a-821f-7b7934d0ff6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72608eaec7124485be160ccdae5bcc83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72608eaec7124485be160ccdae5bcc83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72608eaec7124485be160ccdae5bcc83.jpg", "file_size": 37153, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布010-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72608eaec7124485be160ccdae5bcc83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72608eaec7124485be160ccdae5bcc83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72608eaec7124485be160ccdae5bcc83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72608eaec7124485be160ccdae5bcc83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72608eaec7124485be160ccdae5bcc83.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cd6C1jTgHmy9QmOHVsJJep-pefg=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.948712+00 2025-12-09 10:15:04.948716+00 9788 8048FWF#枣红 SPMX-20240815304952 \N \N \N 1 \N [{"file_id": "e77b9e9d-99de-4b97-9d20-c4b9706137d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a13e4597b0a14185bc94acb70ab0a1a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a13e4597b0a14185bc94acb70ab0a1a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a13e4597b0a14185bc94acb70ab0a1a1.jpg", "file_size": 15054, "is_delete": false, "file_type": 1, "original_file_name": "8048FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e4597b0a14185bc94acb70ab0a1a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e4597b0a14185bc94acb70ab0a1a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13e4597b0a14185bc94acb70ab0a1a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a13e4597b0a14185bc94acb70ab0a1a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a13e4597b0a14185bc94acb70ab0a1a1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:alh2q-L0d9UBaMVAKbVaKY1tRzU=", "createTime": "2024-08-15 14:49:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.940837+00 2025-12-09 10:15:04.940842+00 9784 LZ1261#背心款3号色 SPMX-20240815304956 \N \N \N 1 \N [{"file_id": "e588a09e-27a3-4cbf-8a06-b69dc39670fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dbff560dc0b4b79bba6137f7c705109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dbff560dc0b4b79bba6137f7c705109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dbff560dc0b4b79bba6137f7c705109.jpg", "file_size": 18105, "is_delete": false, "file_type": 1, "original_file_name": "LZ1261#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dbff560dc0b4b79bba6137f7c705109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dbff560dc0b4b79bba6137f7c705109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dbff560dc0b4b79bba6137f7c705109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dbff560dc0b4b79bba6137f7c705109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dbff560dc0b4b79bba6137f7c705109.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rN4lhr5hAL4lIdtdnp4ctmAlhc=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.94335+00 2025-12-09 10:15:04.943355+00 9785 0003-452#WJC22 SPMX-20240815304960 \N \N \N 1 \N [{"file_id": "e57c163f-2a94-4a3a-8fd2-ffa58039406b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35c0c6c3c62b40d8a75df2e2b30a76a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35c0c6c3c62b40d8a75df2e2b30a76a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35c0c6c3c62b40d8a75df2e2b30a76a6.jpg", "file_size": 12626, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c0c6c3c62b40d8a75df2e2b30a76a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c0c6c3c62b40d8a75df2e2b30a76a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35c0c6c3c62b40d8a75df2e2b30a76a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35c0c6c3c62b40d8a75df2e2b30a76a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35c0c6c3c62b40d8a75df2e2b30a76a6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZomjZrseY3NZIytJ49h9FoUG90A=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.945219+00 2025-12-09 10:15:04.945223+00 9786 JTSS145FW#VS-D3 SPMX-20240815304968 \N \N \N 1 \N [{"file_id": "0e24328b-4db0-4e79-88ae-8e2f6a1ecb08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "314a38fd56524a09955590b2ac2f5fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "314a38fd56524a09955590b2ac2f5fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "314a38fd56524a09955590b2ac2f5fec.jpg", "file_size": 6926, "is_delete": false, "file_type": 1, "original_file_name": "JTSS145FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a38fd56524a09955590b2ac2f5fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a38fd56524a09955590b2ac2f5fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a38fd56524a09955590b2ac2f5fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/314a38fd56524a09955590b2ac2f5fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/314a38fd56524a09955590b2ac2f5fec.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIEmj3uhkVhvgOAQITOJQstIerA=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.946867+00 2025-12-09 10:15:04.946871+00 9787 23-2115#A4-领子3XL SPMX-20240815304964 \N \N \N 1 \N [{"file_id": "ef5a98e9-c359-4029-9f62-e274e37534f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "943c1896037b4075b94109f72281eac0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "943c1896037b4075b94109f72281eac0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "943c1896037b4075b94109f72281eac0.jpg", "file_size": 13281, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943c1896037b4075b94109f72281eac0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943c1896037b4075b94109f72281eac0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943c1896037b4075b94109f72281eac0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/943c1896037b4075b94109f72281eac0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/943c1896037b4075b94109f72281eac0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIUWBbsYdeN1vdJEBXL7sRk2OM0=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.950369+00 2025-12-09 10:15:04.950374+00 9789 LZ1261#背心款4号色 SPMX-20240815304967 \N \N \N 1 \N [{"file_id": "8416e6b1-d625-4ce6-957b-de7dfabc6ce4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b65568db4424ecf8905ea7164ef5c48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b65568db4424ecf8905ea7164ef5c48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b65568db4424ecf8905ea7164ef5c48.jpg", "file_size": 17780, "is_delete": false, "file_type": 1, "original_file_name": "LZ1261#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b65568db4424ecf8905ea7164ef5c48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b65568db4424ecf8905ea7164ef5c48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b65568db4424ecf8905ea7164ef5c48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b65568db4424ecf8905ea7164ef5c48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b65568db4424ecf8905ea7164ef5c48.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVHqizQ4GtvwOdfEJteCEaGQyzw=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.951991+00 2025-12-09 10:15:04.951996+00 9790 HT017#粉VS-D3 SPMX-20240815304953 \N \N \N 1 \N [{"file_id": "82eea936-0096-44de-a280-bc2557d242ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a181058d120243a297f5ac2026b32afe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a181058d120243a297f5ac2026b32afe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a181058d120243a297f5ac2026b32afe.jpg", "file_size": 18120, "is_delete": false, "file_type": 1, "original_file_name": "HT017#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a181058d120243a297f5ac2026b32afe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a181058d120243a297f5ac2026b32afe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a181058d120243a297f5ac2026b32afe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a181058d120243a297f5ac2026b32afe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a181058d120243a297f5ac2026b32afe.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yKl6Q1jtnbiN7-8TvxlLTigMcw=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.953622+00 2025-12-09 10:15:04.953626+00 9791 DL30469#墨绿前后幅XL SPMX-20240815304959 \N \N \N 1 \N [{"file_id": "c156215d-63da-42b6-a4d5-b7d6ca60f540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cec21850068402da84c02f174091f4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cec21850068402da84c02f174091f4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cec21850068402da84c02f174091f4e.jpg", "file_size": 20942, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#墨绿前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec21850068402da84c02f174091f4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec21850068402da84c02f174091f4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cec21850068402da84c02f174091f4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cec21850068402da84c02f174091f4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cec21850068402da84c02f174091f4e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05a1Tqqg6g0fsOH3-BvgS-muD0I=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.955233+00 2025-12-09 10:15:04.955237+00 9792 23-2115#A4-4XL SPMX-20240815304954 \N \N \N 1 \N [{"file_id": "c9380853-8a25-4532-b906-d19fddeb0f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14db3eebf28b4d20956a530150c6816c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14db3eebf28b4d20956a530150c6816c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14db3eebf28b4d20956a530150c6816c.jpg", "file_size": 15357, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db3eebf28b4d20956a530150c6816c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db3eebf28b4d20956a530150c6816c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db3eebf28b4d20956a530150c6816c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14db3eebf28b4d20956a530150c6816c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14db3eebf28b4d20956a530150c6816c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrXLAzBHq-FgTwaJJYJDOob7K54=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.956817+00 2025-12-09 10:15:04.956821+00 9793 LJ9919FW#蓝白L VS-D3 SPMX-20240815304957 \N \N \N 1 \N [{"file_id": "b2a48899-876f-4cb7-817f-275e4f54a62c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49c45b4f78834fc58a33325a6c833ab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49c45b4f78834fc58a33325a6c833ab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49c45b4f78834fc58a33325a6c833ab2.jpg", "file_size": 12396, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#蓝白L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c45b4f78834fc58a33325a6c833ab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c45b4f78834fc58a33325a6c833ab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c45b4f78834fc58a33325a6c833ab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49c45b4f78834fc58a33325a6c833ab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49c45b4f78834fc58a33325a6c833ab2.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQDtSxKxsnJq-J9a_Dq46oT5Ves=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.958679+00 2025-12-09 10:15:04.958683+00 9794 HT017#蓝VS-D3 SPMX-20240815304965 \N \N \N 1 \N [{"file_id": "3cdfe677-509b-478b-88b8-88ad1999ab7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb526177ad204e0d89333b40a6cb76f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb526177ad204e0d89333b40a6cb76f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb526177ad204e0d89333b40a6cb76f3.jpg", "file_size": 18263, "is_delete": false, "file_type": 1, "original_file_name": "HT017#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb526177ad204e0d89333b40a6cb76f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb526177ad204e0d89333b40a6cb76f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb526177ad204e0d89333b40a6cb76f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb526177ad204e0d89333b40a6cb76f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb526177ad204e0d89333b40a6cb76f3.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hh26b2qgOsTjAWEgBu_ZqPL0rdU=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.960291+00 2025-12-09 10:15:04.960295+00 9795 FHXGPK-批布010-5 SPMX-20240815304966 \N \N \N 1 \N [{"file_id": "bcd0ed58-1fae-4a5e-977d-a9b4002711f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e82ab87931b34888982d0e4789e6db36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e82ab87931b34888982d0e4789e6db36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e82ab87931b34888982d0e4789e6db36.jpg", "file_size": 35717, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布010-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82ab87931b34888982d0e4789e6db36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82ab87931b34888982d0e4789e6db36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82ab87931b34888982d0e4789e6db36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e82ab87931b34888982d0e4789e6db36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e82ab87931b34888982d0e4789e6db36.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZls1TrGakoE4GnVP0j7YBMOixc=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.96188+00 2025-12-09 10:15:04.961884+00 9796 LJ9919FW#蓝白M VS-D3 SPMX-20240815304969 \N \N \N 1 \N [{"file_id": "8e28d07e-31d4-47f7-bb33-26d546718091", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "133336d6e0fd4750b66c1597eee14816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "133336d6e0fd4750b66c1597eee14816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "133336d6e0fd4750b66c1597eee14816.jpg", "file_size": 12514, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#蓝白M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133336d6e0fd4750b66c1597eee14816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133336d6e0fd4750b66c1597eee14816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133336d6e0fd4750b66c1597eee14816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/133336d6e0fd4750b66c1597eee14816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/133336d6e0fd4750b66c1597eee14816.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcvcwYGUCLeSTu1gi4P6TPwV2nI=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.963749+00 2025-12-09 10:15:04.963754+00 9797 C347#粉色 SPMX-20240815304962 \N \N \N 1 \N [{"file_id": "8e8dbaaf-58ee-4668-9365-f5b3287ad11d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg", "file_size": 23049, "is_delete": false, "file_type": 1, "original_file_name": "C347#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ac8cbdee0fd4a4ea49718794e7fc0d3.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PL71eyUct_G0m7enPq8WNzoLg6Y=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.965363+00 2025-12-09 10:15:04.965367+00 9798 8048FWF#藏青 SPMX-20240815304963 \N \N \N 1 \N [{"file_id": "65df3738-6121-49a6-b290-cec4cca41cbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "460e588b5373455a9697107c00eb4d8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "460e588b5373455a9697107c00eb4d8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "460e588b5373455a9697107c00eb4d8c.jpg", "file_size": 15013, "is_delete": false, "file_type": 1, "original_file_name": "8048FWF#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460e588b5373455a9697107c00eb4d8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460e588b5373455a9697107c00eb4d8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460e588b5373455a9697107c00eb4d8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/460e588b5373455a9697107c00eb4d8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/460e588b5373455a9697107c00eb4d8c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQxbCtJj5DHr0QJzEIl38I32GwA=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.966949+00 2025-12-09 10:15:04.966953+00 9799 1081-9#大红色 SPMX-20240815304961 \N \N \N 1 \N [{"file_id": "dd4b5bf0-5df1-4775-beac-e6f898c18ce0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ed18d1cc28a4760ab7391b9379bca7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ed18d1cc28a4760ab7391b9379bca7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ed18d1cc28a4760ab7391b9379bca7a.jpg", "file_size": 16013, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#大红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed18d1cc28a4760ab7391b9379bca7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed18d1cc28a4760ab7391b9379bca7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed18d1cc28a4760ab7391b9379bca7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ed18d1cc28a4760ab7391b9379bca7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ed18d1cc28a4760ab7391b9379bca7a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcC-ZM1ULYUVdTH25Tmkvcy9Hog=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.968769+00 2025-12-09 10:15:04.968774+00 9800 1081-9#玫红 SPMX-20240815304971 \N \N \N 1 \N [{"file_id": "d0b72bbd-ac7d-4ca5-a88a-9c3179d9e75b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb6dabda0249461797caba8d0c779f36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb6dabda0249461797caba8d0c779f36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb6dabda0249461797caba8d0c779f36.jpg", "file_size": 16560, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6dabda0249461797caba8d0c779f36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6dabda0249461797caba8d0c779f36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6dabda0249461797caba8d0c779f36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb6dabda0249461797caba8d0c779f36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb6dabda0249461797caba8d0c779f36.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjiHfILaofw1WDyy3DGDiB_Ipj0=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.970371+00 2025-12-09 10:15:04.970376+00 9801 FHXGPK-批布011-1 SPMX-20240815304977 \N \N \N 1 \N [{"file_id": "a1006c84-90b2-4657-a80a-cae3e96f0536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a738a6b1784c10b3f9d257904ac53e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a738a6b1784c10b3f9d257904ac53e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a738a6b1784c10b3f9d257904ac53e.jpg", "file_size": 36950, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布011-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a738a6b1784c10b3f9d257904ac53e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a738a6b1784c10b3f9d257904ac53e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a738a6b1784c10b3f9d257904ac53e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a738a6b1784c10b3f9d257904ac53e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a738a6b1784c10b3f9d257904ac53e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xV6FKFsBRdLRBoiE6ePGFF6O2YQ=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.971978+00 2025-12-09 10:15:04.971983+00 9802 LZ1261#背心款5号色 SPMX-20240815304978 \N \N \N 1 \N [{"file_id": "ddb1662f-3d86-4da2-bc03-3de94d84bcd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "100595997a4d4c10a044c54e55db06f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "100595997a4d4c10a044c54e55db06f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "100595997a4d4c10a044c54e55db06f5.jpg", "file_size": 17518, "is_delete": false, "file_type": 1, "original_file_name": "LZ1261#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100595997a4d4c10a044c54e55db06f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100595997a4d4c10a044c54e55db06f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100595997a4d4c10a044c54e55db06f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/100595997a4d4c10a044c54e55db06f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/100595997a4d4c10a044c54e55db06f5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X-qDvi-qT8O6K1dSuxK5uA1t4Ok=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.973823+00 2025-12-09 10:15:04.973827+00 9803 1081-9#粉色 SPMX-20240815304980 \N \N \N 1 \N [{"file_id": "f7ce1832-ed06-45a3-8f56-ae362b42b2b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg", "file_size": 15738, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fa2de32c60a4eb2bcd79f593cdfd8f9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmjgpPhO1TGnEyAwBCmxb320U7Y=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.975418+00 2025-12-09 10:15:04.975422+00 9804 0003-452#绿色 SPMX-20240815304984 \N \N \N 1 \N [{"file_id": "318492d1-9675-4564-8bc0-e1a6785b3dcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c53dd170adbe4ac493adf0a0ba4da9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c53dd170adbe4ac493adf0a0ba4da9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c53dd170adbe4ac493adf0a0ba4da9e0.jpg", "file_size": 9370, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53dd170adbe4ac493adf0a0ba4da9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53dd170adbe4ac493adf0a0ba4da9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53dd170adbe4ac493adf0a0ba4da9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c53dd170adbe4ac493adf0a0ba4da9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c53dd170adbe4ac493adf0a0ba4da9e0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rF5RdFnjzu4STLnmxk3nbdVLOF8=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.977+00 2025-12-09 10:15:04.977004+00 9805 HT017FWE#VS-D3 SPMX-20240815304986 \N \N \N 1 \N [{"file_id": "ae7f17d5-b960-426a-8e60-4c2c4ba0dd7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aac5e7478fa4bdcae3fed08fec6e1a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aac5e7478fa4bdcae3fed08fec6e1a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aac5e7478fa4bdcae3fed08fec6e1a7.jpg", "file_size": 8674, "is_delete": false, "file_type": 1, "original_file_name": "HT017FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac5e7478fa4bdcae3fed08fec6e1a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac5e7478fa4bdcae3fed08fec6e1a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac5e7478fa4bdcae3fed08fec6e1a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aac5e7478fa4bdcae3fed08fec6e1a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aac5e7478fa4bdcae3fed08fec6e1a7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6scZuOQxEnmMnpMFzd23TS0Sz0k=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.978827+00 2025-12-09 10:15:04.978832+00 9806 23-2115#A4-领子4XL SPMX-20240815304975 \N \N \N 1 \N [{"file_id": "0fd3587f-2919-4c49-9159-b168ff47a526", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5edf131279d24965b18fed416a3b8a22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5edf131279d24965b18fed416a3b8a22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5edf131279d24965b18fed416a3b8a22.jpg", "file_size": 12659, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edf131279d24965b18fed416a3b8a22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edf131279d24965b18fed416a3b8a22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5edf131279d24965b18fed416a3b8a22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5edf131279d24965b18fed416a3b8a22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5edf131279d24965b18fed416a3b8a22.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tac36pY73QhlQkjc_8PGOm9RwNs=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.980436+00 2025-12-09 10:15:04.98044+00 9807 C347#绿色 SPMX-20240815304973 \N \N \N 1 \N [{"file_id": "37b473ea-e116-4ddb-bc50-fe3166ec70b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8a9be3faaf948efb12891b90a48a74d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8a9be3faaf948efb12891b90a48a74d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8a9be3faaf948efb12891b90a48a74d.jpg", "file_size": 21934, "is_delete": false, "file_type": 1, "original_file_name": "C347#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9be3faaf948efb12891b90a48a74d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9be3faaf948efb12891b90a48a74d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9be3faaf948efb12891b90a48a74d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8a9be3faaf948efb12891b90a48a74d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8a9be3faaf948efb12891b90a48a74d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IWA924vyHbkLvz-by5RtooobBIs=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.982016+00 2025-12-09 10:15:04.982021+00 9808 LJ9919FW#蓝白S VS-D3 SPMX-20240815304979 \N \N \N 1 \N [{"file_id": "b9a7c8fa-329a-4ee9-8cf2-a18da4321f2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16e4ec8d8cb3496ea9e3971522e7efd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16e4ec8d8cb3496ea9e3971522e7efd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16e4ec8d8cb3496ea9e3971522e7efd5.jpg", "file_size": 12337, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#蓝白S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e4ec8d8cb3496ea9e3971522e7efd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e4ec8d8cb3496ea9e3971522e7efd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e4ec8d8cb3496ea9e3971522e7efd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16e4ec8d8cb3496ea9e3971522e7efd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16e4ec8d8cb3496ea9e3971522e7efd5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBXfOn7faVnOhb5ewJVI8KCju-U=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.983881+00 2025-12-09 10:15:04.983885+00 9809 C347#蓝色 SPMX-20240815304983 \N \N \N 1 \N [{"file_id": "6b10472d-ce71-463c-8b54-d452cab4d6e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d538e024c2ca4eb69ab59c55ce803098.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d538e024c2ca4eb69ab59c55ce803098.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d538e024c2ca4eb69ab59c55ce803098.jpg", "file_size": 22262, "is_delete": false, "file_type": 1, "original_file_name": "C347#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d538e024c2ca4eb69ab59c55ce803098.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d538e024c2ca4eb69ab59c55ce803098.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d538e024c2ca4eb69ab59c55ce803098.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d538e024c2ca4eb69ab59c55ce803098.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d538e024c2ca4eb69ab59c55ce803098.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHUMo74emnRDDFj73kQ2_gMxCEc=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.985482+00 2025-12-09 10:15:04.985486+00 9810 DL30469#墨绿袖子 SPMX-20240815304970 \N \N \N 1 \N [{"file_id": "3b367f76-9f2f-4b44-87c0-60186ce3d80d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a23d193342b84332b9114be027187f5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a23d193342b84332b9114be027187f5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a23d193342b84332b9114be027187f5a.jpg", "file_size": 12500, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#墨绿袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23d193342b84332b9114be027187f5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23d193342b84332b9114be027187f5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23d193342b84332b9114be027187f5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a23d193342b84332b9114be027187f5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a23d193342b84332b9114be027187f5a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-YwTrIn0eJuo5dJup17H1vkSxM=", "createTime": "2024-08-15 14:49:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.987097+00 2025-12-09 10:15:04.987101+00 9811 0003-452#玫红色 SPMX-20240815304972 \N \N \N 1 \N [{"file_id": "1f8dbab8-b60c-4fcc-b46f-d85fc77f1dc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a85495433d49f0a25d9f9b5bb368b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a85495433d49f0a25d9f9b5bb368b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a85495433d49f0a25d9f9b5bb368b9.jpg", "file_size": 11280, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a85495433d49f0a25d9f9b5bb368b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a85495433d49f0a25d9f9b5bb368b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a85495433d49f0a25d9f9b5bb368b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a85495433d49f0a25d9f9b5bb368b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a85495433d49f0a25d9f9b5bb368b9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHcV2I3cVY0hmUD3lzYWZDNmxEs=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.989034+00 2025-12-09 10:15:04.989039+00 9812 8075#WJC22 SPMX-20240815304985 \N \N \N 1 \N [{"file_id": "46c0d8ab-4c0c-4430-b74c-40fe441896d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7160ecc37b084329a71a37695d336b58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7160ecc37b084329a71a37695d336b58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7160ecc37b084329a71a37695d336b58.jpg", "file_size": 15374, "is_delete": false, "file_type": 1, "original_file_name": "8075#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7160ecc37b084329a71a37695d336b58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7160ecc37b084329a71a37695d336b58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7160ecc37b084329a71a37695d336b58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7160ecc37b084329a71a37695d336b58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7160ecc37b084329a71a37695d336b58.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEjN--DjLRpH5h0GkMmAb08v2ns=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.991325+00 2025-12-09 10:15:04.99133+00 9813 HT017FW#VS-D3 SPMX-20240815304976 \N \N \N 1 \N [{"file_id": "43076b80-55b0-44ac-9c18-e56f34e43b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ca731530fa4b90b58a60e23e97e694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ca731530fa4b90b58a60e23e97e694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ca731530fa4b90b58a60e23e97e694.jpg", "file_size": 18217, "is_delete": false, "file_type": 1, "original_file_name": "HT017FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ca731530fa4b90b58a60e23e97e694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ca731530fa4b90b58a60e23e97e694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ca731530fa4b90b58a60e23e97e694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ca731530fa4b90b58a60e23e97e694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ca731530fa4b90b58a60e23e97e694.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-IN9yevVk8YnpL_pKpnceCaYuc=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.993346+00 2025-12-09 10:15:04.993351+00 9814 8055#短袖匹布 SPMX-20240815304974 \N \N \N 1 \N [{"file_id": "0bb99b22-e45e-4c0e-8584-6588b07257b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e6b48a6ed3421caf1c612956cbec26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e6b48a6ed3421caf1c612956cbec26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e6b48a6ed3421caf1c612956cbec26.jpg", "file_size": 23349, "is_delete": false, "file_type": 1, "original_file_name": "8055#短袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6b48a6ed3421caf1c612956cbec26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6b48a6ed3421caf1c612956cbec26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6b48a6ed3421caf1c612956cbec26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e6b48a6ed3421caf1c612956cbec26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e6b48a6ed3421caf1c612956cbec26.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XfC9UUl_c-fONi8dA2ffc4dswI=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.995212+00 2025-12-09 10:15:04.995217+00 9815 JTSS146FW#VS-D3 SPMX-20240815304981 \N \N \N 1 \N [{"file_id": "ca1d8124-afaf-4df2-8da2-e9a21a44a630", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f89b714cd69b4456861b87cab1c7911f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f89b714cd69b4456861b87cab1c7911f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f89b714cd69b4456861b87cab1c7911f.jpg", "file_size": 10666, "is_delete": false, "file_type": 1, "original_file_name": "JTSS146FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89b714cd69b4456861b87cab1c7911f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89b714cd69b4456861b87cab1c7911f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f89b714cd69b4456861b87cab1c7911f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f89b714cd69b4456861b87cab1c7911f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f89b714cd69b4456861b87cab1c7911f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVCUpwJ2_RDvFesu2WUPDquz3nE=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.997115+00 2025-12-09 10:15:04.997119+00 9816 DL30469#彩兰下摆 SPMX-20240815304982 \N \N \N 1 \N [{"file_id": "2dfeb079-2340-4a68-a1d4-b9fa27bfd4a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eadeee691d4c4750a334947fd5247f49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eadeee691d4c4750a334947fd5247f49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eadeee691d4c4750a334947fd5247f49.jpg", "file_size": 21273, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#彩兰下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeee691d4c4750a334947fd5247f49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeee691d4c4750a334947fd5247f49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeee691d4c4750a334947fd5247f49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eadeee691d4c4750a334947fd5247f49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eadeee691d4c4750a334947fd5247f49.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Um88Fmk3mDwJDMX72oGGRE5gtnE=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:04.999036+00 2025-12-09 10:15:04.99904+00 9817 LJ9919FW#蓝白XL VS-D3 SPMX-20240815304988 \N \N \N 1 \N [{"file_id": "2f116062-f6b3-4d63-98d7-63732589d40a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0e4653f08544c9b85215c060c239bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0e4653f08544c9b85215c060c239bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0e4653f08544c9b85215c060c239bd.jpg", "file_size": 13683, "is_delete": false, "file_type": 1, "original_file_name": "LJ9919FW#蓝白XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0e4653f08544c9b85215c060c239bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0e4653f08544c9b85215c060c239bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0e4653f08544c9b85215c060c239bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0e4653f08544c9b85215c060c239bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0e4653f08544c9b85215c060c239bd.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mu1vwafzk51TOsd585groWtiMNM=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.000673+00 2025-12-09 10:15:05.000678+00 9818 0003-452#蓝色 SPMX-20240815304994 \N \N \N 1 \N [{"file_id": "40592762-422c-47bb-abd3-67a8806f64b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c9f187acf314de99a0ad6b0607b040f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c9f187acf314de99a0ad6b0607b040f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c9f187acf314de99a0ad6b0607b040f.jpg", "file_size": 10847, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9f187acf314de99a0ad6b0607b040f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9f187acf314de99a0ad6b0607b040f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9f187acf314de99a0ad6b0607b040f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c9f187acf314de99a0ad6b0607b040f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c9f187acf314de99a0ad6b0607b040f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWUO9fsYa8zQ4wTBjoYIwaJM5n0=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.002282+00 2025-12-09 10:15:05.002286+00 9819 JTSS147FW#VS-D3 SPMX-20240815304990 \N \N \N 1 \N [{"file_id": "c4e8fdf8-5e4f-4d99-bec3-4346aa40d3a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6cb0b0be19749f6b6f88809b48bc276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6cb0b0be19749f6b6f88809b48bc276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6cb0b0be19749f6b6f88809b48bc276.jpg", "file_size": 8629, "is_delete": false, "file_type": 1, "original_file_name": "JTSS147FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cb0b0be19749f6b6f88809b48bc276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cb0b0be19749f6b6f88809b48bc276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cb0b0be19749f6b6f88809b48bc276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6cb0b0be19749f6b6f88809b48bc276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6cb0b0be19749f6b6f88809b48bc276.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3DEweEGILqB86p6-R4_5RXglyk=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.004166+00 2025-12-09 10:15:05.00417+00 9820 FHXGPK-批布011-2 SPMX-20240815304991 \N \N \N 1 \N [{"file_id": "37c65a0a-9602-4d60-aeaa-6881c8f98a4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e87f866c62346faa5f253f6824203bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e87f866c62346faa5f253f6824203bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e87f866c62346faa5f253f6824203bf.jpg", "file_size": 37833, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布011-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e87f866c62346faa5f253f6824203bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e87f866c62346faa5f253f6824203bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e87f866c62346faa5f253f6824203bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e87f866c62346faa5f253f6824203bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e87f866c62346faa5f253f6824203bf.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3bJJhhHefd5eNxjhz1mFcngEAA=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.006052+00 2025-12-09 10:15:05.006057+00 9821 HT017FWE#腰带VS-D3 SPMX-20240815304996 \N \N \N 1 \N [{"file_id": "3f559dfe-541f-4ae9-ade7-0575abc9bd42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59104c3110a64683898832643e3f79da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59104c3110a64683898832643e3f79da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59104c3110a64683898832643e3f79da.jpg", "file_size": 18043, "is_delete": false, "file_type": 1, "original_file_name": "HT017FWE#腰带VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59104c3110a64683898832643e3f79da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59104c3110a64683898832643e3f79da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59104c3110a64683898832643e3f79da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59104c3110a64683898832643e3f79da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59104c3110a64683898832643e3f79da.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTOHIy3YOuf6oJv5qmEAJ_PAS3o=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.00769+00 2025-12-09 10:15:05.007695+00 9822 8078FWF#墨绿色 SPMX-20240815304997 \N \N \N 1 \N [{"file_id": "360adde6-31e3-409d-b7e8-17bce7ea85e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cb774b459254ca1825d34dfde55ce9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cb774b459254ca1825d34dfde55ce9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cb774b459254ca1825d34dfde55ce9c.jpg", "file_size": 8927, "is_delete": false, "file_type": 1, "original_file_name": "8078FWF#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb774b459254ca1825d34dfde55ce9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb774b459254ca1825d34dfde55ce9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb774b459254ca1825d34dfde55ce9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cb774b459254ca1825d34dfde55ce9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cb774b459254ca1825d34dfde55ce9c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxvo_vw7YigdKhURdEev5q-QZmw=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.009315+00 2025-12-09 10:15:05.00932+00 9823 C347#黄色 SPMX-20240815304993 \N \N \N 1 \N [{"file_id": "9fafa2ff-2034-4356-bde4-79f3b33a14fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a41fc06bfd743029d7ec31814716b96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a41fc06bfd743029d7ec31814716b96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a41fc06bfd743029d7ec31814716b96.jpg", "file_size": 23787, "is_delete": false, "file_type": 1, "original_file_name": "C347#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a41fc06bfd743029d7ec31814716b96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a41fc06bfd743029d7ec31814716b96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a41fc06bfd743029d7ec31814716b96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a41fc06bfd743029d7ec31814716b96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a41fc06bfd743029d7ec31814716b96.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTR4cVXdrurqoA4THlSB1WqmYns=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.011206+00 2025-12-09 10:15:05.011211+00 9824 DL30469#彩兰前后幅2XL SPMX-20240815304992 \N \N \N 1 \N [{"file_id": "65b235b6-9069-4261-b6ec-5003947b32df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b515b6520bf4890b684c3ef2d4facd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b515b6520bf4890b684c3ef2d4facd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b515b6520bf4890b684c3ef2d4facd3.jpg", "file_size": 20064, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#彩兰前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b515b6520bf4890b684c3ef2d4facd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b515b6520bf4890b684c3ef2d4facd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b515b6520bf4890b684c3ef2d4facd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b515b6520bf4890b684c3ef2d4facd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b515b6520bf4890b684c3ef2d4facd3.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Za8ByL-a7dANj-KTV4eMeuMlqT8=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.013101+00 2025-12-09 10:15:05.013105+00 9825 23-2115#A5-4XL SPMX-20240815304998 \N \N \N 1 \N [{"file_id": "9caf5130-5bd6-461b-bca8-c81f85fb6eed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d541f8ebdadc420389dfb6be3cd4a0ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d541f8ebdadc420389dfb6be3cd4a0ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d541f8ebdadc420389dfb6be3cd4a0ec.jpg", "file_size": 16386, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d541f8ebdadc420389dfb6be3cd4a0ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d541f8ebdadc420389dfb6be3cd4a0ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d541f8ebdadc420389dfb6be3cd4a0ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d541f8ebdadc420389dfb6be3cd4a0ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d541f8ebdadc420389dfb6be3cd4a0ec.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rfk6EhFXVJMU7Ba0INB9JT8OTSQ=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.014873+00 2025-12-09 10:15:05.014878+00 9826 1081-9#金黄 SPMX-20240815304995 \N \N \N 1 \N [{"file_id": "a3ec7d84-134a-490f-99bd-bb74d46bdc05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d94f85c778a843c09ff3920cbd0c9fff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d94f85c778a843c09ff3920cbd0c9fff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d94f85c778a843c09ff3920cbd0c9fff.jpg", "file_size": 16448, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f85c778a843c09ff3920cbd0c9fff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f85c778a843c09ff3920cbd0c9fff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f85c778a843c09ff3920cbd0c9fff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d94f85c778a843c09ff3920cbd0c9fff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d94f85c778a843c09ff3920cbd0c9fff.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taftOwmZvCwQRO_Ro5xKtSAfVdg=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.016905+00 2025-12-09 10:15:05.016909+00 9827 23-2115#A5-3XL SPMX-20240815304987 \N \N \N 1 \N [{"file_id": "c137652e-69b7-464b-9862-a5cb6fc7c22b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5d8c8271dc348e4947885411e5729ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5d8c8271dc348e4947885411e5729ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5d8c8271dc348e4947885411e5729ac.jpg", "file_size": 17313, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d8c8271dc348e4947885411e5729ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d8c8271dc348e4947885411e5729ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d8c8271dc348e4947885411e5729ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5d8c8271dc348e4947885411e5729ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5d8c8271dc348e4947885411e5729ac.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qLpxVyUgQDPuuy5MJfItXAm65rs=", "createTime": "2024-08-15 14:49:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.018853+00 2025-12-09 10:15:05.018857+00 9828 LZ1262#背心款1号色 SPMX-20240815304989 \N \N \N 1 \N [{"file_id": "bf70d478-b069-4b49-8e09-fd66b80fb926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "654f0c3ac3b943ae8670e4f498e7f2b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "654f0c3ac3b943ae8670e4f498e7f2b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "654f0c3ac3b943ae8670e4f498e7f2b0.jpg", "file_size": 18299, "is_delete": false, "file_type": 1, "original_file_name": "LZ1262#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654f0c3ac3b943ae8670e4f498e7f2b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654f0c3ac3b943ae8670e4f498e7f2b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/654f0c3ac3b943ae8670e4f498e7f2b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/654f0c3ac3b943ae8670e4f498e7f2b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/654f0c3ac3b943ae8670e4f498e7f2b0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKHWzPO-3WnIpWF1iTQfgrupGF8=", "createTime": "2024-08-15 14:49:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.020984+00 2025-12-09 10:15:05.020989+00 9829 DL30469#彩兰前后幅L SPMX-20240815305003 \N \N \N 1 \N [{"file_id": "7ba0e3a9-d4ca-4e78-bad2-13a0e2708b03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "600aaf36fe1c4c8cb30be40c07e81255.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "600aaf36fe1c4c8cb30be40c07e81255.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "600aaf36fe1c4c8cb30be40c07e81255.jpg", "file_size": 19502, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#彩兰前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600aaf36fe1c4c8cb30be40c07e81255.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600aaf36fe1c4c8cb30be40c07e81255.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600aaf36fe1c4c8cb30be40c07e81255.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/600aaf36fe1c4c8cb30be40c07e81255.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/600aaf36fe1c4c8cb30be40c07e81255.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47MkgzuvHRJzko-zjEgC111d6GI=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.023074+00 2025-12-09 10:15:05.023079+00 9830 1081-9#黑色 SPMX-20240815305005 \N \N \N 1 \N [{"file_id": "80def98e-507e-451f-8f35-88dcf3722761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0b8d33a0eeb4745984c5fcc1f3cec11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0b8d33a0eeb4745984c5fcc1f3cec11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0b8d33a0eeb4745984c5fcc1f3cec11.jpg", "file_size": 15818, "is_delete": false, "file_type": 1, "original_file_name": "1081-9#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8d33a0eeb4745984c5fcc1f3cec11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8d33a0eeb4745984c5fcc1f3cec11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8d33a0eeb4745984c5fcc1f3cec11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0b8d33a0eeb4745984c5fcc1f3cec11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0b8d33a0eeb4745984c5fcc1f3cec11.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tPNJD45xiH_td0bBXsRIVN_S9hU=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.025045+00 2025-12-09 10:15:05.02505+00 9831 DL30469#彩兰前后幅XL SPMX-20240815305012 \N \N \N 1 \N [{"file_id": "ee0664ed-f45b-4a82-b6e1-dc55bf3c9a9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b88d2d86f2a443728af5f01af88aeb7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b88d2d86f2a443728af5f01af88aeb7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b88d2d86f2a443728af5f01af88aeb7b.jpg", "file_size": 19995, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#彩兰前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88d2d86f2a443728af5f01af88aeb7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88d2d86f2a443728af5f01af88aeb7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88d2d86f2a443728af5f01af88aeb7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b88d2d86f2a443728af5f01af88aeb7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b88d2d86f2a443728af5f01af88aeb7b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEBsOI1fFXtTkeeA0pKiK4J05r4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.027005+00 2025-12-09 10:15:05.027011+00 9832 C347#黑色 SPMX-20240815305004 \N \N \N 1 \N [{"file_id": "541a6172-b300-4ad3-9327-c7ff1993dfc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "439a230454a74a939bf27d50a94f9e59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "439a230454a74a939bf27d50a94f9e59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "439a230454a74a939bf27d50a94f9e59.jpg", "file_size": 22365, "is_delete": false, "file_type": 1, "original_file_name": "C347#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439a230454a74a939bf27d50a94f9e59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439a230454a74a939bf27d50a94f9e59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439a230454a74a939bf27d50a94f9e59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/439a230454a74a939bf27d50a94f9e59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/439a230454a74a939bf27d50a94f9e59.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKIN6ZBGMpZS7S_a3RqBMyLUbiA=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.028972+00 2025-12-09 10:15:05.028976+00 9833 LJ9920#2XL咖啡 SPMX-20240815305002 \N \N \N 1 \N [{"file_id": "394b7fc2-5244-48d4-918e-8f18fb818e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab1f1da8d0245bc89e345674a45d780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab1f1da8d0245bc89e345674a45d780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab1f1da8d0245bc89e345674a45d780.jpg", "file_size": 14271, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#2XL咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1f1da8d0245bc89e345674a45d780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1f1da8d0245bc89e345674a45d780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1f1da8d0245bc89e345674a45d780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab1f1da8d0245bc89e345674a45d780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab1f1da8d0245bc89e345674a45d780.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lc6eXdAKYQsRIYV_uKTVh5jCVps=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.030901+00 2025-12-09 10:15:05.030906+00 9834 0003-452#黑色 SPMX-20240815305015 \N \N \N 1 \N [{"file_id": "f52074b3-a6ec-4f1f-9527-1c46092b145f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bdab08966e0467a889168076e3c29dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bdab08966e0467a889168076e3c29dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bdab08966e0467a889168076e3c29dc.jpg", "file_size": 10276, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdab08966e0467a889168076e3c29dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdab08966e0467a889168076e3c29dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bdab08966e0467a889168076e3c29dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bdab08966e0467a889168076e3c29dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bdab08966e0467a889168076e3c29dc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1KojoluVAHK31ENSj5AOI9sfpRM=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.032722+00 2025-12-09 10:15:05.032727+00 9835 FHXGPK-批布011-4 SPMX-20240815305011 \N \N \N 1 \N [{"file_id": "c9e4b456-9f45-484f-9305-3451670e1918", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f8d9829f3e44a53add332ff141f6a44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f8d9829f3e44a53add332ff141f6a44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f8d9829f3e44a53add332ff141f6a44.jpg", "file_size": 41480, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布011-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8d9829f3e44a53add332ff141f6a44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8d9829f3e44a53add332ff141f6a44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8d9829f3e44a53add332ff141f6a44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f8d9829f3e44a53add332ff141f6a44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f8d9829f3e44a53add332ff141f6a44.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtmiWbX-4f8t-RggCGhXvJhG6x4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.034787+00 2025-12-09 10:15:05.034792+00 9836 0003-452#藏蓝色 SPMX-20240815305006 \N \N \N 1 \N [{"file_id": "dabb78a6-6514-4534-baa8-04d7af300faf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f80c47cc7ce2469cab149f969fdf6249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f80c47cc7ce2469cab149f969fdf6249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f80c47cc7ce2469cab149f969fdf6249.jpg", "file_size": 10013, "is_delete": false, "file_type": 1, "original_file_name": "0003-452#藏蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80c47cc7ce2469cab149f969fdf6249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80c47cc7ce2469cab149f969fdf6249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80c47cc7ce2469cab149f969fdf6249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f80c47cc7ce2469cab149f969fdf6249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f80c47cc7ce2469cab149f969fdf6249.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gs0JsvAHPHop54TkqW8dcJfoa1s=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.036503+00 2025-12-09 10:15:05.036508+00 9837 LJ9920#2XL灰 SPMX-20240815305013 \N \N \N 1 \N [{"file_id": "984aa9ab-570f-447e-8eb2-9b31edcc8d81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fa334fba8914a3fbb1a46bf3c7a89af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fa334fba8914a3fbb1a46bf3c7a89af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fa334fba8914a3fbb1a46bf3c7a89af.jpg", "file_size": 12708, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#2XL灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa334fba8914a3fbb1a46bf3c7a89af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa334fba8914a3fbb1a46bf3c7a89af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa334fba8914a3fbb1a46bf3c7a89af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fa334fba8914a3fbb1a46bf3c7a89af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fa334fba8914a3fbb1a46bf3c7a89af.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gG9QqdQ1AFrAl-LYQBhTVHlDJp4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.038399+00 2025-12-09 10:15:05.038403+00 9838 FHXGPK-批布011-3 SPMX-20240815305000 \N \N \N 1 \N [{"file_id": "fd8eb64a-f1b5-44dd-902e-31c911b49a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c3eb4664d3e4d4bbbad37941e803a3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c3eb4664d3e4d4bbbad37941e803a3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c3eb4664d3e4d4bbbad37941e803a3e.jpg", "file_size": 39276, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布011-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3eb4664d3e4d4bbbad37941e803a3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3eb4664d3e4d4bbbad37941e803a3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3eb4664d3e4d4bbbad37941e803a3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c3eb4664d3e4d4bbbad37941e803a3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c3eb4664d3e4d4bbbad37941e803a3e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43E0rso8f_MARTL1G7EMvpl17wU=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.040316+00 2025-12-09 10:15:05.040321+00 9839 LZ1262#背心款2号色 SPMX-20240815304999 \N \N \N 1 \N [{"file_id": "f1582450-720a-45da-bc62-42f54c7746da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926a7eadc050425dbe9f374bf8c275c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926a7eadc050425dbe9f374bf8c275c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926a7eadc050425dbe9f374bf8c275c5.jpg", "file_size": 17765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1262#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926a7eadc050425dbe9f374bf8c275c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926a7eadc050425dbe9f374bf8c275c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926a7eadc050425dbe9f374bf8c275c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926a7eadc050425dbe9f374bf8c275c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926a7eadc050425dbe9f374bf8c275c5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WB3NSoLExCxplxUjN19Qms4__8Y=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.041961+00 2025-12-09 10:15:05.041965+00 9840 8078FWF#彩兰色 SPMX-20240815305008 \N \N \N 1 \N [{"file_id": "04e60c71-9bfa-49e0-a35c-c496e5f52e25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f1e97e28004a019d691978adfc9a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f1e97e28004a019d691978adfc9a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f1e97e28004a019d691978adfc9a9b.jpg", "file_size": 9013, "is_delete": false, "file_type": 1, "original_file_name": "8078FWF#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f1e97e28004a019d691978adfc9a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f1e97e28004a019d691978adfc9a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f1e97e28004a019d691978adfc9a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f1e97e28004a019d691978adfc9a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f1e97e28004a019d691978adfc9a9b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMiIEJzlxdu8FIddS47ilhzWFXw=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.043615+00 2025-12-09 10:15:05.04362+00 9841 C348#白底216#枣红-放大0.3版本 SPMX-20240815305014 \N \N \N 1 \N [{"file_id": "01b4360a-9b88-4b2b-b01b-98413b52186e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69349d6113fd4b98b918e14138b699dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69349d6113fd4b98b918e14138b699dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69349d6113fd4b98b918e14138b699dc.jpg", "file_size": 24403, "is_delete": false, "file_type": 1, "original_file_name": "C348#白底216#枣红-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69349d6113fd4b98b918e14138b699dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69349d6113fd4b98b918e14138b699dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69349d6113fd4b98b918e14138b699dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69349d6113fd4b98b918e14138b699dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69349d6113fd4b98b918e14138b699dc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8N_amH7nLs_-j3YYrAv1Ecan7s=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.045491+00 2025-12-09 10:15:05.045496+00 9842 HT018#红VS-D3 SPMX-20240815305007 \N \N \N 1 \N [{"file_id": "2f09ca54-95a4-4308-a783-f9f2b63b8335", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2f18874bb324ef8bf5254d30f4dcaa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2f18874bb324ef8bf5254d30f4dcaa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2f18874bb324ef8bf5254d30f4dcaa5.jpg", "file_size": 14254, "is_delete": false, "file_type": 1, "original_file_name": "HT018#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f18874bb324ef8bf5254d30f4dcaa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f18874bb324ef8bf5254d30f4dcaa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f18874bb324ef8bf5254d30f4dcaa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2f18874bb324ef8bf5254d30f4dcaa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2f18874bb324ef8bf5254d30f4dcaa5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7vOqQ_f3xyyxPjEr6w7xsjwwtQ=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.047259+00 2025-12-09 10:15:05.047264+00 9843 LZ1262#背心款3号色 SPMX-20240815305010 \N \N \N 1 \N [{"file_id": "54f2b4db-6ca4-4d16-a3c5-01cb249560b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20d233b2eb31488c99e1a95b5ae3fa1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20d233b2eb31488c99e1a95b5ae3fa1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20d233b2eb31488c99e1a95b5ae3fa1f.jpg", "file_size": 17856, "is_delete": false, "file_type": 1, "original_file_name": "LZ1262#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d233b2eb31488c99e1a95b5ae3fa1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d233b2eb31488c99e1a95b5ae3fa1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d233b2eb31488c99e1a95b5ae3fa1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20d233b2eb31488c99e1a95b5ae3fa1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20d233b2eb31488c99e1a95b5ae3fa1f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpNU3f-y8SJLVhGVOZRZT4NMFFU=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.048897+00 2025-12-09 10:15:05.048902+00 9844 JTSS148FW#VS-D3 SPMX-20240815305001 \N \N \N 1 \N [{"file_id": "ad5589e9-0cdc-440d-bcdd-8a036a3c76ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8983f1282fd44c6e91b16e440347d32b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8983f1282fd44c6e91b16e440347d32b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8983f1282fd44c6e91b16e440347d32b.jpg", "file_size": 6940, "is_delete": false, "file_type": 1, "original_file_name": "JTSS148FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8983f1282fd44c6e91b16e440347d32b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8983f1282fd44c6e91b16e440347d32b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8983f1282fd44c6e91b16e440347d32b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8983f1282fd44c6e91b16e440347d32b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8983f1282fd44c6e91b16e440347d32b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDcQ94JfLPYRYojgXdyTXNZa8tk=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.050618+00 2025-12-09 10:15:05.050624+00 9845 23-2115#A5-领子3XL SPMX-20240815305009 \N \N \N 1 \N [{"file_id": "1bf6121c-f7d5-4596-b884-8cf1155986fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ef309eeb6d842bca10f0a5a330388c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ef309eeb6d842bca10f0a5a330388c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ef309eeb6d842bca10f0a5a330388c4.jpg", "file_size": 13013, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef309eeb6d842bca10f0a5a330388c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef309eeb6d842bca10f0a5a330388c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef309eeb6d842bca10f0a5a330388c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ef309eeb6d842bca10f0a5a330388c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ef309eeb6d842bca10f0a5a330388c4.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ResGxPFtV91emktVQbDXe3Jfwt4=", "createTime": "2024-08-15 14:49:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.052509+00 2025-12-09 10:15:05.052514+00 9846 C348#白底243#绿花-放大0.3版本 SPMX-20240815305025 \N \N \N 1 \N [{"file_id": "e3d5db40-1148-4a22-b0bc-decc1676e775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6292722e306e4c95a99edd0f6bbacf4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6292722e306e4c95a99edd0f6bbacf4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6292722e306e4c95a99edd0f6bbacf4c.jpg", "file_size": 22276, "is_delete": false, "file_type": 1, "original_file_name": "C348#白底243#绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6292722e306e4c95a99edd0f6bbacf4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6292722e306e4c95a99edd0f6bbacf4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6292722e306e4c95a99edd0f6bbacf4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6292722e306e4c95a99edd0f6bbacf4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6292722e306e4c95a99edd0f6bbacf4c.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FyGxLBnWQathS-8XVFjfDK84cpw=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.054438+00 2025-12-09 10:15:05.054442+00 9847 LJ9920#2XL红 SPMX-20240815305022 \N \N \N 1 \N [{"file_id": "0f6d9cc4-a852-4a4d-868f-5e6ddb4d8602", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dedb8006f124360990a70d8de683ac6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dedb8006f124360990a70d8de683ac6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dedb8006f124360990a70d8de683ac6.jpg", "file_size": 13622, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#2XL红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dedb8006f124360990a70d8de683ac6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dedb8006f124360990a70d8de683ac6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dedb8006f124360990a70d8de683ac6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dedb8006f124360990a70d8de683ac6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dedb8006f124360990a70d8de683ac6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0PcMaVM_YA8qmFrE-nDfyOZ11E=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.056084+00 2025-12-09 10:15:05.056089+00 9848 LZ1262#背心款4号色 SPMX-20240815305021 \N \N \N 1 \N [{"file_id": "7aa7dff7-1416-4126-9c76-9b59eafb1fb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dad8109fbf8a4ef6bd2c1c808b78eb29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dad8109fbf8a4ef6bd2c1c808b78eb29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dad8109fbf8a4ef6bd2c1c808b78eb29.jpg", "file_size": 17925, "is_delete": false, "file_type": 1, "original_file_name": "LZ1262#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad8109fbf8a4ef6bd2c1c808b78eb29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad8109fbf8a4ef6bd2c1c808b78eb29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad8109fbf8a4ef6bd2c1c808b78eb29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dad8109fbf8a4ef6bd2c1c808b78eb29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dad8109fbf8a4ef6bd2c1c808b78eb29.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2uUDCUZnbkoLLDkrfhIM1X2ilk=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.057751+00 2025-12-09 10:15:05.057755+00 9849 FHXGPK-批布011-5 SPMX-20240815305024 \N \N \N 1 \N [{"file_id": "204b1884-9355-461f-b529-2551acb64c72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bba6a60b56ce4e74860fd08b5c4a6e1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bba6a60b56ce4e74860fd08b5c4a6e1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bba6a60b56ce4e74860fd08b5c4a6e1d.jpg", "file_size": 42950, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布011-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba6a60b56ce4e74860fd08b5c4a6e1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba6a60b56ce4e74860fd08b5c4a6e1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba6a60b56ce4e74860fd08b5c4a6e1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bba6a60b56ce4e74860fd08b5c4a6e1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bba6a60b56ce4e74860fd08b5c4a6e1d.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QuUmIH4903M-PhCHe4aPcOHEQvM=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.059602+00 2025-12-09 10:15:05.059607+00 9850 8078FWF#皮粉色 SPMX-20240815305030 \N \N \N 1 \N [{"file_id": "3cdc21b6-9025-4829-b9d8-02dba607a2da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "653cae4c84bd4df08c5dd95d1d10ad4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "653cae4c84bd4df08c5dd95d1d10ad4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "653cae4c84bd4df08c5dd95d1d10ad4a.jpg", "file_size": 8552, "is_delete": false, "file_type": 1, "original_file_name": "8078FWF#皮粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653cae4c84bd4df08c5dd95d1d10ad4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653cae4c84bd4df08c5dd95d1d10ad4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/653cae4c84bd4df08c5dd95d1d10ad4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/653cae4c84bd4df08c5dd95d1d10ad4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/653cae4c84bd4df08c5dd95d1d10ad4a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wP-kQeUV1pCCUeQLvMUZ-5laa5E=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.061485+00 2025-12-09 10:15:05.06149+00 9851 23-2115#A5-领子4XL SPMX-20240815305020 \N \N \N 1 \N [{"file_id": "672e6ab2-38ed-434c-81cd-a559d74955c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08e5e88725e544aeb6c1fef9a836825b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08e5e88725e544aeb6c1fef9a836825b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08e5e88725e544aeb6c1fef9a836825b.jpg", "file_size": 12499, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e5e88725e544aeb6c1fef9a836825b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e5e88725e544aeb6c1fef9a836825b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e5e88725e544aeb6c1fef9a836825b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08e5e88725e544aeb6c1fef9a836825b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08e5e88725e544aeb6c1fef9a836825b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGVc5QAYYG4HYGepMH09k-BiIt4=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.063122+00 2025-12-09 10:15:05.063127+00 9852 DL30469#彩兰袖子 SPMX-20240815305023 \N \N \N 1 \N [{"file_id": "686d1689-d1da-492b-97ff-ee3bc0f99f65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1321d524d4d644bf9fc3312ada612874.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1321d524d4d644bf9fc3312ada612874.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1321d524d4d644bf9fc3312ada612874.jpg", "file_size": 12720, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#彩兰袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1321d524d4d644bf9fc3312ada612874.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1321d524d4d644bf9fc3312ada612874.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1321d524d4d644bf9fc3312ada612874.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1321d524d4d644bf9fc3312ada612874.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1321d524d4d644bf9fc3312ada612874.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-pLOR5wbif3eRNPS5pcQDX8Phg=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.064789+00 2025-12-09 10:15:05.064793+00 9853 1082#WJC22 SPMX-20240815305017 \N \N \N 1 \N [{"file_id": "b5c93384-560a-4570-83ac-9e10607d327e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c726c8b14d14481ea984faa2652421f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c726c8b14d14481ea984faa2652421f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c726c8b14d14481ea984faa2652421f6.jpg", "file_size": 17312, "is_delete": false, "file_type": 1, "original_file_name": "1082#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c726c8b14d14481ea984faa2652421f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c726c8b14d14481ea984faa2652421f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c726c8b14d14481ea984faa2652421f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c726c8b14d14481ea984faa2652421f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c726c8b14d14481ea984faa2652421f6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yebv_mt4bFydOM9ya9H-giKwsXQ=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.066612+00 2025-12-09 10:15:05.066617+00 9854 8078FWF#枣红色 SPMX-20240815305019 \N \N \N 1 \N [{"file_id": "67f81af2-72ca-43b9-98be-a9068422b44c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f479b470342240c98fa9e513640163f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f479b470342240c98fa9e513640163f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f479b470342240c98fa9e513640163f6.jpg", "file_size": 8749, "is_delete": false, "file_type": 1, "original_file_name": "8078FWF#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f479b470342240c98fa9e513640163f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f479b470342240c98fa9e513640163f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f479b470342240c98fa9e513640163f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f479b470342240c98fa9e513640163f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f479b470342240c98fa9e513640163f6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4zA_6-I5VEs3Md6avFM1utFDXc=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.068525+00 2025-12-09 10:15:05.068529+00 9855 HT018FW#VS-D3 SPMX-20240815305028 \N \N \N 1 \N [{"file_id": "5f9342e6-9460-4376-8278-baeaf16ff984", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ba656e1a6f4c2db70e8e68ebd64793.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ba656e1a6f4c2db70e8e68ebd64793.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ba656e1a6f4c2db70e8e68ebd64793.jpg", "file_size": 14109, "is_delete": false, "file_type": 1, "original_file_name": "HT018FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ba656e1a6f4c2db70e8e68ebd64793.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ba656e1a6f4c2db70e8e68ebd64793.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ba656e1a6f4c2db70e8e68ebd64793.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ba656e1a6f4c2db70e8e68ebd64793.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ba656e1a6f4c2db70e8e68ebd64793.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLE77QxtMKP34SM28ZQIl6WkVMM=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.070169+00 2025-12-09 10:15:05.070173+00 9856 JTSS149FW#VS-D3 SPMX-20240815305018 \N \N \N 1 \N [{"file_id": "76a9cc96-f372-493a-9e3f-415b64a87882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd2edd417bed4f19b2f4aee38e792556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd2edd417bed4f19b2f4aee38e792556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd2edd417bed4f19b2f4aee38e792556.jpg", "file_size": 22586, "is_delete": false, "file_type": 1, "original_file_name": "JTSS149FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2edd417bed4f19b2f4aee38e792556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2edd417bed4f19b2f4aee38e792556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2edd417bed4f19b2f4aee38e792556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd2edd417bed4f19b2f4aee38e792556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd2edd417bed4f19b2f4aee38e792556.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKivEuJFx2cGIEfamjBexEw0cXM=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.072133+00 2025-12-09 10:15:05.072137+00 9857 0003-453#WJC22 SPMX-20240815305026 \N \N \N 1 \N [{"file_id": "c70da12e-351f-45d1-aa5a-3a2a1e060403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07a38279f5f34bc2860e1037c2d119a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07a38279f5f34bc2860e1037c2d119a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07a38279f5f34bc2860e1037c2d119a9.jpg", "file_size": 14767, "is_delete": false, "file_type": 1, "original_file_name": "0003-453#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a38279f5f34bc2860e1037c2d119a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a38279f5f34bc2860e1037c2d119a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a38279f5f34bc2860e1037c2d119a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07a38279f5f34bc2860e1037c2d119a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07a38279f5f34bc2860e1037c2d119a9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPxNiHyAQPd1aC0OcWkBHRJMXOw=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.074042+00 2025-12-09 10:15:05.074047+00 9858 JTSS150FW#VS-D3 SPMX-20240815305029 \N \N \N 1 \N [{"file_id": "15e9015a-d325-49a0-9de3-e6475cf1043d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "963aaf8f2f094cffa101af6a91d66e75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "963aaf8f2f094cffa101af6a91d66e75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "963aaf8f2f094cffa101af6a91d66e75.jpg", "file_size": 11935, "is_delete": false, "file_type": 1, "original_file_name": "JTSS150FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963aaf8f2f094cffa101af6a91d66e75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963aaf8f2f094cffa101af6a91d66e75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963aaf8f2f094cffa101af6a91d66e75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/963aaf8f2f094cffa101af6a91d66e75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/963aaf8f2f094cffa101af6a91d66e75.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fjjzVb99Z9M0Ngh_sLiOyAF8g7Q=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.075692+00 2025-12-09 10:15:05.075696+00 9859 1082#原版色 SPMX-20240815305027 \N \N \N 1 \N [{"file_id": "1995875e-2acd-47af-b06f-7beb0da700a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7390e34829544d29da43e69e40efef1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7390e34829544d29da43e69e40efef1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7390e34829544d29da43e69e40efef1.jpg", "file_size": 18684, "is_delete": false, "file_type": 1, "original_file_name": "1082#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7390e34829544d29da43e69e40efef1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7390e34829544d29da43e69e40efef1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7390e34829544d29da43e69e40efef1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7390e34829544d29da43e69e40efef1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7390e34829544d29da43e69e40efef1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oOn5IHlKA-IzLYKbNNXlf5AbKXk=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.077611+00 2025-12-09 10:15:05.077615+00 9860 23-2115#A6-3XL SPMX-20240815305031 \N \N \N 1 \N [{"file_id": "be63560b-b027-4adf-8961-79433e4e101a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f2130cb759a4fd9b09f35f5ddb25037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f2130cb759a4fd9b09f35f5ddb25037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f2130cb759a4fd9b09f35f5ddb25037.jpg", "file_size": 17262, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2130cb759a4fd9b09f35f5ddb25037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2130cb759a4fd9b09f35f5ddb25037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2130cb759a4fd9b09f35f5ddb25037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f2130cb759a4fd9b09f35f5ddb25037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f2130cb759a4fd9b09f35f5ddb25037.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VVf5T4r_HfK0G4t-S-JrKZsynug=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.079254+00 2025-12-09 10:15:05.079258+00 9861 HT018#黄VS-D3 SPMX-20240815305016 \N \N \N 1 \N [{"file_id": "84f37d1e-652a-4d22-a152-c592a85f4bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8406a3101b94f9598bd05d93446a977.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8406a3101b94f9598bd05d93446a977.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8406a3101b94f9598bd05d93446a977.jpg", "file_size": 13047, "is_delete": false, "file_type": 1, "original_file_name": "HT018#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8406a3101b94f9598bd05d93446a977.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8406a3101b94f9598bd05d93446a977.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8406a3101b94f9598bd05d93446a977.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8406a3101b94f9598bd05d93446a977.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8406a3101b94f9598bd05d93446a977.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dq2LsDEeScgBnLwe4pyv3CnSdE4=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.080904+00 2025-12-09 10:15:05.080909+00 9862 LZ1262#背心款5号色 SPMX-20240815305032 \N \N \N 1 \N [{"file_id": "497a5753-5fb9-4c07-87f7-6619b650a526", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bffc6681621544d989d65eac1e63a5c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bffc6681621544d989d65eac1e63a5c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bffc6681621544d989d65eac1e63a5c1.jpg", "file_size": 17536, "is_delete": false, "file_type": 1, "original_file_name": "LZ1262#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffc6681621544d989d65eac1e63a5c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffc6681621544d989d65eac1e63a5c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bffc6681621544d989d65eac1e63a5c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bffc6681621544d989d65eac1e63a5c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bffc6681621544d989d65eac1e63a5c1.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHbTQpJWG7l5DHnKyZ1s4CuFXyY=", "createTime": "2024-08-15 14:49:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.082787+00 2025-12-09 10:15:05.082792+00 9863 DL30469#玫红下摆 SPMX-20240815305035 \N \N \N 1 \N [{"file_id": "6d294e80-5d89-4239-815b-ba6e1a8fd319", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8577f12fbba74bd39b4c60e809e3d2fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8577f12fbba74bd39b4c60e809e3d2fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8577f12fbba74bd39b4c60e809e3d2fc.jpg", "file_size": 21306, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#玫红下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8577f12fbba74bd39b4c60e809e3d2fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8577f12fbba74bd39b4c60e809e3d2fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8577f12fbba74bd39b4c60e809e3d2fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8577f12fbba74bd39b4c60e809e3d2fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8577f12fbba74bd39b4c60e809e3d2fc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a6gcLMvFYWdfkn-wBp4tbjpVc7Y=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.084671+00 2025-12-09 10:15:05.084676+00 9864 0003-454#WJC22 SPMX-20240815305037 \N \N \N 1 \N [{"file_id": "9b0fe7b4-8739-4a6e-bc10-46aab6775980", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1577344e92bc490aa44b11ac5bc85ddc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1577344e92bc490aa44b11ac5bc85ddc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1577344e92bc490aa44b11ac5bc85ddc.jpg", "file_size": 17023, "is_delete": false, "file_type": 1, "original_file_name": "0003-454#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1577344e92bc490aa44b11ac5bc85ddc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1577344e92bc490aa44b11ac5bc85ddc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1577344e92bc490aa44b11ac5bc85ddc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1577344e92bc490aa44b11ac5bc85ddc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1577344e92bc490aa44b11ac5bc85ddc.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdzhU7lLlckw8WokRUfZhAEJxAs=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.086309+00 2025-12-09 10:15:05.086314+00 9865 HT018FWE#杏色底VS-D3 SPMX-20240815305038 \N \N \N 1 \N [{"file_id": "6782f78f-9c8a-4c59-871b-eed2e7567efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e8a3412d264e23bae71fa00a1fc995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e8a3412d264e23bae71fa00a1fc995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e8a3412d264e23bae71fa00a1fc995.jpg", "file_size": 17172, "is_delete": false, "file_type": 1, "original_file_name": "HT018FWE#杏色底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e8a3412d264e23bae71fa00a1fc995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e8a3412d264e23bae71fa00a1fc995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e8a3412d264e23bae71fa00a1fc995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e8a3412d264e23bae71fa00a1fc995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e8a3412d264e23bae71fa00a1fc995.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCrvZNBP61d6FbNEYYFsfbjYZRc=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.087943+00 2025-12-09 10:15:05.087947+00 9866 JTSS151FW#VS-D3 SPMX-20240815305043 \N \N \N 1 \N [{"file_id": "4344aaab-8ec7-4374-9edd-a92fde829912", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dac32c27a6a4ef4992d6627d7f8f04e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dac32c27a6a4ef4992d6627d7f8f04e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dac32c27a6a4ef4992d6627d7f8f04e.jpg", "file_size": 11669, "is_delete": false, "file_type": 1, "original_file_name": "JTSS151FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dac32c27a6a4ef4992d6627d7f8f04e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dac32c27a6a4ef4992d6627d7f8f04e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dac32c27a6a4ef4992d6627d7f8f04e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dac32c27a6a4ef4992d6627d7f8f04e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dac32c27a6a4ef4992d6627d7f8f04e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHYkcqojgAuhb0XcSHPL834ev58=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.08982+00 2025-12-09 10:15:05.089824+00 9867 1082#白色 SPMX-20240815305041 \N \N \N 1 \N [{"file_id": "dec5d402-41bd-4c09-86a0-00c03da3376f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "440e2d9d77f94fd187fe4ea0ca6010af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "440e2d9d77f94fd187fe4ea0ca6010af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "440e2d9d77f94fd187fe4ea0ca6010af.jpg", "file_size": 19661, "is_delete": false, "file_type": 1, "original_file_name": "1082#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e2d9d77f94fd187fe4ea0ca6010af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e2d9d77f94fd187fe4ea0ca6010af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440e2d9d77f94fd187fe4ea0ca6010af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/440e2d9d77f94fd187fe4ea0ca6010af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/440e2d9d77f94fd187fe4ea0ca6010af.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mr5Dg6GcrIIvPf2XTqk3osHv0-A=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.09171+00 2025-12-09 10:15:05.091714+00 9868 LZ1263#背心款1号色 SPMX-20240815305042 \N \N \N 1 \N [{"file_id": "634740db-bd08-4261-a7c5-0dc897685cf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42b680e3831f4b1897b04c1338cf039e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42b680e3831f4b1897b04c1338cf039e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42b680e3831f4b1897b04c1338cf039e.jpg", "file_size": 21121, "is_delete": false, "file_type": 1, "original_file_name": "LZ1263#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b680e3831f4b1897b04c1338cf039e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b680e3831f4b1897b04c1338cf039e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b680e3831f4b1897b04c1338cf039e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42b680e3831f4b1897b04c1338cf039e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42b680e3831f4b1897b04c1338cf039e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DZbXaH4DWmOsQyy5LjGYqE6fJtw=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.093352+00 2025-12-09 10:15:05.093357+00 9869 LJ9920#2XL蓝 SPMX-20240815305033 \N \N \N 1 \N [{"file_id": "3d0520c1-0994-47ea-868c-8bd622fb9fcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fcf3a6d20e5408c894acbb2677c6238.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fcf3a6d20e5408c894acbb2677c6238.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fcf3a6d20e5408c894acbb2677c6238.jpg", "file_size": 11926, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#2XL蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcf3a6d20e5408c894acbb2677c6238.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcf3a6d20e5408c894acbb2677c6238.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fcf3a6d20e5408c894acbb2677c6238.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fcf3a6d20e5408c894acbb2677c6238.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fcf3a6d20e5408c894acbb2677c6238.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XapHUcpOqDBaW6ZJFjX9buLcgJM=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.095006+00 2025-12-09 10:15:05.09501+00 9870 23-2115#A6-4XL SPMX-20240815305039 \N \N \N 1 \N [{"file_id": "48c8a36a-f1b5-4bbf-a4c0-2df430013315", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a85648de002e441cb313d99cbacc9b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a85648de002e441cb313d99cbacc9b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a85648de002e441cb313d99cbacc9b94.jpg", "file_size": 16626, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85648de002e441cb313d99cbacc9b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85648de002e441cb313d99cbacc9b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85648de002e441cb313d99cbacc9b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a85648de002e441cb313d99cbacc9b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a85648de002e441cb313d99cbacc9b94.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgkUnnEyw0B05eSYo0Pp6EGQTHY=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.097072+00 2025-12-09 10:15:05.097078+00 9871 FHXGPK-批布012-1 SPMX-20240815305034 \N \N \N 1 \N [{"file_id": "8a032152-9622-49a0-8de9-586791855ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15caf7e311e8408086394758867418a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15caf7e311e8408086394758867418a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15caf7e311e8408086394758867418a5.jpg", "file_size": 34210, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布012-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15caf7e311e8408086394758867418a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15caf7e311e8408086394758867418a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15caf7e311e8408086394758867418a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15caf7e311e8408086394758867418a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15caf7e311e8408086394758867418a5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omj1XQ4a16FHs-4SSHnnFj2eU5E=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.099037+00 2025-12-09 10:15:05.099042+00 9872 808#LW浅15 SPMX-20240815305040 \N \N \N 1 \N [{"file_id": "9b42a297-9df2-4606-9138-e3d9dc216e4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c6eec8f4603497bbaffe8e6a73adb1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c6eec8f4603497bbaffe8e6a73adb1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c6eec8f4603497bbaffe8e6a73adb1e.jpg", "file_size": 22271, "is_delete": false, "file_type": 1, "original_file_name": "808#LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6eec8f4603497bbaffe8e6a73adb1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6eec8f4603497bbaffe8e6a73adb1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6eec8f4603497bbaffe8e6a73adb1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c6eec8f4603497bbaffe8e6a73adb1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c6eec8f4603497bbaffe8e6a73adb1e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WCckFYVNmkmdqFpPDGUsWz5rnTo=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.100894+00 2025-12-09 10:15:05.100899+00 9873 C348#白底K239#绿花-放大0.3版本 SPMX-20240815305036 \N \N \N 1 \N [{"file_id": "87c9cd63-298d-464b-84f0-0cd4148d77b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f9cac76ce147c890ed20fa73d5d3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f9cac76ce147c890ed20fa73d5d3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f9cac76ce147c890ed20fa73d5d3a6.jpg", "file_size": 24945, "is_delete": false, "file_type": 1, "original_file_name": "C348#白底K239#绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f9cac76ce147c890ed20fa73d5d3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f9cac76ce147c890ed20fa73d5d3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f9cac76ce147c890ed20fa73d5d3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f9cac76ce147c890ed20fa73d5d3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f9cac76ce147c890ed20fa73d5d3a6.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:40lyAC-YsTvyQHivpHXQeG9x7SE=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.102752+00 2025-12-09 10:15:05.102756+00 9874 DL30469#玫红前后幅2XL SPMX-20240815305048 \N \N \N 1 \N [{"file_id": "4b8c5067-4a3a-4521-8ff9-1948e267b876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93e5c08c7f6f4d649a1ce31b698e0f9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93e5c08c7f6f4d649a1ce31b698e0f9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93e5c08c7f6f4d649a1ce31b698e0f9a.jpg", "file_size": 21308, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#玫红前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e5c08c7f6f4d649a1ce31b698e0f9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e5c08c7f6f4d649a1ce31b698e0f9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93e5c08c7f6f4d649a1ce31b698e0f9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93e5c08c7f6f4d649a1ce31b698e0f9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93e5c08c7f6f4d649a1ce31b698e0f9a.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WaIGd8hbmhq77JSeOcaQSGOk2E=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.104424+00 2025-12-09 10:15:05.104428+00 9875 23-2115#A6-领子3XL SPMX-20240815305050 \N \N \N 1 \N [{"file_id": "57bf173a-a712-4890-a779-c1740912ea5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80a7e7810976430cb25dd0745bd23249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80a7e7810976430cb25dd0745bd23249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80a7e7810976430cb25dd0745bd23249.jpg", "file_size": 12262, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a7e7810976430cb25dd0745bd23249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a7e7810976430cb25dd0745bd23249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a7e7810976430cb25dd0745bd23249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80a7e7810976430cb25dd0745bd23249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80a7e7810976430cb25dd0745bd23249.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5BJwx81lDES3BNrzNt1ULELMMXY=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.106058+00 2025-12-09 10:15:05.106062+00 9876 C348#白底浅绿-放大0.3版本 SPMX-20240815305045 \N \N \N 1 \N [{"file_id": "2ecac5ca-f561-4abe-b229-4c56a99eb3dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a00a50f4d2c14557865dd58447ce9c39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a00a50f4d2c14557865dd58447ce9c39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a00a50f4d2c14557865dd58447ce9c39.jpg", "file_size": 18957, "is_delete": false, "file_type": 1, "original_file_name": "C348#白底浅绿-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00a50f4d2c14557865dd58447ce9c39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00a50f4d2c14557865dd58447ce9c39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00a50f4d2c14557865dd58447ce9c39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a00a50f4d2c14557865dd58447ce9c39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a00a50f4d2c14557865dd58447ce9c39.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbMOCifTT_e5yPf1Nz6pdAHyk_Y=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.108051+00 2025-12-09 10:15:05.108056+00 9877 HT018FWE#橙色VS-D3 SPMX-20240815305049 \N \N \N 1 \N [{"file_id": "ce7f2a5c-e9f9-4fcd-9ed3-8387e8308f40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13e16b67e92d442f94d80fe0175b3b83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13e16b67e92d442f94d80fe0175b3b83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13e16b67e92d442f94d80fe0175b3b83.jpg", "file_size": 15946, "is_delete": false, "file_type": 1, "original_file_name": "HT018FWE#橙色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e16b67e92d442f94d80fe0175b3b83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e16b67e92d442f94d80fe0175b3b83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e16b67e92d442f94d80fe0175b3b83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13e16b67e92d442f94d80fe0175b3b83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13e16b67e92d442f94d80fe0175b3b83.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YCHHqZNbGgVjp1SzHbaIhpt85ak=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.10993+00 2025-12-09 10:15:05.109935+00 9878 LJ9920#L咖啡 SPMX-20240815305046 \N \N \N 1 \N [{"file_id": "641ac181-b054-4040-89cf-e78049e0c568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed05d86a4e34454b19e02a25b561dc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed05d86a4e34454b19e02a25b561dc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed05d86a4e34454b19e02a25b561dc0.jpg", "file_size": 15496, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#L咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed05d86a4e34454b19e02a25b561dc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed05d86a4e34454b19e02a25b561dc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed05d86a4e34454b19e02a25b561dc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed05d86a4e34454b19e02a25b561dc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed05d86a4e34454b19e02a25b561dc0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ2Wtfa-S5D8BiHmXZR1PDyg0VY=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.111868+00 2025-12-09 10:15:05.111872+00 9879 LZ1263#背心款2号色 SPMX-20240815305052 \N \N \N 1 \N [{"file_id": "32c6a2fb-277d-4039-b9a3-011bc03f0ccf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87dbb98c3a194696b8554e0a659cbc4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87dbb98c3a194696b8554e0a659cbc4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87dbb98c3a194696b8554e0a659cbc4e.jpg", "file_size": 20852, "is_delete": false, "file_type": 1, "original_file_name": "LZ1263#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dbb98c3a194696b8554e0a659cbc4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dbb98c3a194696b8554e0a659cbc4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87dbb98c3a194696b8554e0a659cbc4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87dbb98c3a194696b8554e0a659cbc4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87dbb98c3a194696b8554e0a659cbc4e.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuin6PRGXVmFDqWkoAfC9MLToFk=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.113497+00 2025-12-09 10:15:05.113502+00 9880 0003-455#WJC22 SPMX-20240815305047 \N \N \N 1 \N [{"file_id": "451f821b-f811-40e0-83ef-6e0563e1ae6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f61202f414fb41dbab7e993b87139b76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f61202f414fb41dbab7e993b87139b76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f61202f414fb41dbab7e993b87139b76.jpg", "file_size": 16967, "is_delete": false, "file_type": 1, "original_file_name": "0003-455#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61202f414fb41dbab7e993b87139b76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61202f414fb41dbab7e993b87139b76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61202f414fb41dbab7e993b87139b76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f61202f414fb41dbab7e993b87139b76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f61202f414fb41dbab7e993b87139b76.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRqw4otjkNSO4BzZzWTvEvHqJ_w=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.115182+00 2025-12-09 10:15:05.115186+00 9881 FHXGPK-批布012-2 SPMX-20240815305044 \N \N \N 1 \N [{"file_id": "90d35b15-7c9b-4afc-9f5a-3220daf8f3c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1464e9c0be9b4fc89e4cf676ecfc00ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1464e9c0be9b4fc89e4cf676ecfc00ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1464e9c0be9b4fc89e4cf676ecfc00ac.jpg", "file_size": 35150, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布012-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1464e9c0be9b4fc89e4cf676ecfc00ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1464e9c0be9b4fc89e4cf676ecfc00ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1464e9c0be9b4fc89e4cf676ecfc00ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1464e9c0be9b4fc89e4cf676ecfc00ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1464e9c0be9b4fc89e4cf676ecfc00ac.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yG69u4sL3TXZXTqw5HfAqFm7ZI=", "createTime": "2024-08-15 14:49:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.117031+00 2025-12-09 10:15:05.117035+00 9882 8088FWF#V5曲线 SPMX-20240815305051 \N \N \N 1 \N [{"file_id": "eaefe04e-6618-472d-a625-027cbfff6951", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "525b9b824f7d4498ab298fd5529eb7ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "525b9b824f7d4498ab298fd5529eb7ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "525b9b824f7d4498ab298fd5529eb7ce.jpg", "file_size": 23879, "is_delete": false, "file_type": 1, "original_file_name": "8088FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525b9b824f7d4498ab298fd5529eb7ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525b9b824f7d4498ab298fd5529eb7ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525b9b824f7d4498ab298fd5529eb7ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/525b9b824f7d4498ab298fd5529eb7ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/525b9b824f7d4498ab298fd5529eb7ce.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xuhwl7eR-9b_pQsZSmI_9CFqvwg=", "createTime": "2024-08-15 14:49:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.118829+00 2025-12-09 10:15:05.118834+00 9883 JTSS152FW#VS-D3 SPMX-20240815305055 \N \N \N 1 \N [{"file_id": "647d70e8-53d8-4c56-8979-6f9680308665", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2192c795842445c2bb254995bcd4b7b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2192c795842445c2bb254995bcd4b7b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2192c795842445c2bb254995bcd4b7b9.jpg", "file_size": 17897, "is_delete": false, "file_type": 1, "original_file_name": "JTSS152FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2192c795842445c2bb254995bcd4b7b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2192c795842445c2bb254995bcd4b7b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2192c795842445c2bb254995bcd4b7b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2192c795842445c2bb254995bcd4b7b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2192c795842445c2bb254995bcd4b7b9.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPirJSv4ZbjS8FDOboU3KOo8VtE=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.120473+00 2025-12-09 10:15:05.120478+00 9884 FHXGPK-批布012-3 SPMX-20240815305058 \N \N \N 1 \N [{"file_id": "bb4da86b-6267-4ee6-afd6-2a395decaed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b6820fd82e04048a92299544f14cb36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b6820fd82e04048a92299544f14cb36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b6820fd82e04048a92299544f14cb36.jpg", "file_size": 41221, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布012-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6820fd82e04048a92299544f14cb36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6820fd82e04048a92299544f14cb36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6820fd82e04048a92299544f14cb36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b6820fd82e04048a92299544f14cb36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b6820fd82e04048a92299544f14cb36.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYh44ktIzDWDIrAKGRRgCp3Uw8o=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.122146+00 2025-12-09 10:15:05.122165+00 9885 C348#白底黑花-放大0.3版本 SPMX-20240815305060 \N \N \N 1 \N [{"file_id": "add5b925-28ca-43ad-97d0-3b178c61a925", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e33eb59af8348678ef4b43112807f53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e33eb59af8348678ef4b43112807f53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e33eb59af8348678ef4b43112807f53.jpg", "file_size": 23568, "is_delete": false, "file_type": 1, "original_file_name": "C348#白底黑花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e33eb59af8348678ef4b43112807f53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e33eb59af8348678ef4b43112807f53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e33eb59af8348678ef4b43112807f53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e33eb59af8348678ef4b43112807f53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e33eb59af8348678ef4b43112807f53.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHyDkIFYib4UV49bzhT2gbQGDTE=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.124173+00 2025-12-09 10:15:05.124177+00 9886 HT019# SPMX-20240815305057 \N \N \N 1 \N [{"file_id": "da7038a9-b6d0-498f-991c-3b0ec64e02fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fec3201d6a954100bfa4e1b07c88aa09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fec3201d6a954100bfa4e1b07c88aa09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fec3201d6a954100bfa4e1b07c88aa09.jpg", "file_size": 11595, "is_delete": false, "file_type": 1, "original_file_name": "HT019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec3201d6a954100bfa4e1b07c88aa09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec3201d6a954100bfa4e1b07c88aa09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec3201d6a954100bfa4e1b07c88aa09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fec3201d6a954100bfa4e1b07c88aa09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fec3201d6a954100bfa4e1b07c88aa09.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTjRjVBmxN0zVP0uUbLE0k_5-8M=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.126075+00 2025-12-09 10:15:05.126079+00 9887 1082#粉色 SPMX-20240815305053 \N \N \N 1 \N [{"file_id": "3e26cdc6-dcde-425b-b3a0-c6ee90630f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93112cc3fca642b4bc84ad379b360ab7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93112cc3fca642b4bc84ad379b360ab7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93112cc3fca642b4bc84ad379b360ab7.jpg", "file_size": 16054, "is_delete": false, "file_type": 1, "original_file_name": "1082#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93112cc3fca642b4bc84ad379b360ab7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93112cc3fca642b4bc84ad379b360ab7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93112cc3fca642b4bc84ad379b360ab7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93112cc3fca642b4bc84ad379b360ab7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93112cc3fca642b4bc84ad379b360ab7.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWBe1ldq70T35vDRu1R3vjNXBIE=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.127997+00 2025-12-09 10:15:05.128001+00 9888 23-2115#A6-领子4XL SPMX-20240815305061 \N \N \N 1 \N [{"file_id": "499f177f-ca00-4103-b1d8-9dcd743e1704", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64026af21a314efb81f11e58f468b7db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64026af21a314efb81f11e58f468b7db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64026af21a314efb81f11e58f468b7db.jpg", "file_size": 12512, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64026af21a314efb81f11e58f468b7db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64026af21a314efb81f11e58f468b7db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64026af21a314efb81f11e58f468b7db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64026af21a314efb81f11e58f468b7db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64026af21a314efb81f11e58f468b7db.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6lsOYMltdF2ON_QvnFmgf1MwBw=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.129631+00 2025-12-09 10:15:05.129635+00 9889 LJ9920#L灰 SPMX-20240815305054 \N \N \N 1 \N [{"file_id": "fe76ad2a-4a8f-48ee-9dfc-185a796fc7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b05db8765ab44a0999196e73528b7370.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b05db8765ab44a0999196e73528b7370.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b05db8765ab44a0999196e73528b7370.jpg", "file_size": 13644, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#L灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05db8765ab44a0999196e73528b7370.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05db8765ab44a0999196e73528b7370.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05db8765ab44a0999196e73528b7370.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b05db8765ab44a0999196e73528b7370.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b05db8765ab44a0999196e73528b7370.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2H9GJMoVSsaF6FjO-hXD2yhQRRM=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.131255+00 2025-12-09 10:15:05.131259+00 9890 DL30469#玫红前后幅L SPMX-20240815305059 \N \N \N 1 \N [{"file_id": "2ba3b9af-c88b-43c9-8ff4-50d75b790eb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbf8e979ad62489abb5ffcc625025d45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbf8e979ad62489abb5ffcc625025d45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbf8e979ad62489abb5ffcc625025d45.jpg", "file_size": 19832, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#玫红前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf8e979ad62489abb5ffcc625025d45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf8e979ad62489abb5ffcc625025d45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf8e979ad62489abb5ffcc625025d45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbf8e979ad62489abb5ffcc625025d45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbf8e979ad62489abb5ffcc625025d45.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9CV_YTaGhwY8jbZNNXSFc9GHsbQ=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.133175+00 2025-12-09 10:15:05.133181+00 9891 0003-456#WJC22 SPMX-20240815305056 \N \N \N 1 \N [{"file_id": "b5ad9be3-73e3-4548-b0af-e32577c4ad8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90ee8167aee148b1b8f0cb026591e077.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90ee8167aee148b1b8f0cb026591e077.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90ee8167aee148b1b8f0cb026591e077.jpg", "file_size": 24047, "is_delete": false, "file_type": 1, "original_file_name": "0003-456#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ee8167aee148b1b8f0cb026591e077.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ee8167aee148b1b8f0cb026591e077.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ee8167aee148b1b8f0cb026591e077.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90ee8167aee148b1b8f0cb026591e077.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90ee8167aee148b1b8f0cb026591e077.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFHndy3sQJqbH2tEb_QfmIgxWH0=", "createTime": "2024-08-15 14:49:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.135032+00 2025-12-09 10:15:05.135036+00 9892 8089FWF#V5曲线 SPMX-20240815305062 \N \N \N 1 \N [{"file_id": "b541bf99-ea29-4e74-9f3e-a093f3b72b08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "699af597375f46cb8807816b122b11c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "699af597375f46cb8807816b122b11c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "699af597375f46cb8807816b122b11c0.jpg", "file_size": 19027, "is_delete": false, "file_type": 1, "original_file_name": "8089FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/699af597375f46cb8807816b122b11c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/699af597375f46cb8807816b122b11c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/699af597375f46cb8807816b122b11c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/699af597375f46cb8807816b122b11c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/699af597375f46cb8807816b122b11c0.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VnK6m5zYLABxUNTKrVKdk70dJ8=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.136685+00 2025-12-09 10:15:05.13669+00 9893 FHXGPK-批布012-4 SPMX-20240815305071 \N \N \N 1 \N [{"file_id": "f78b2b65-4f09-412e-b094-76bfe1915598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92127b3723304a26808b902274e6c83f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92127b3723304a26808b902274e6c83f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92127b3723304a26808b902274e6c83f.jpg", "file_size": 41857, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布012-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92127b3723304a26808b902274e6c83f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92127b3723304a26808b902274e6c83f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92127b3723304a26808b902274e6c83f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92127b3723304a26808b902274e6c83f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92127b3723304a26808b902274e6c83f.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXfBOwhF5XaCQKEiMjuuL1phx44=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.138338+00 2025-12-09 10:15:05.138342+00 9894 DL30469#玫红前后幅XL SPMX-20240815305069 \N \N \N 1 \N [{"file_id": "4f675793-a6c9-4148-98bb-5b742e50fff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db855c71e8654c83a37face646bdfe68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db855c71e8654c83a37face646bdfe68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db855c71e8654c83a37face646bdfe68.jpg", "file_size": 20374, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#玫红前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db855c71e8654c83a37face646bdfe68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db855c71e8654c83a37face646bdfe68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db855c71e8654c83a37face646bdfe68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db855c71e8654c83a37face646bdfe68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db855c71e8654c83a37face646bdfe68.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEOLI-bSklmhtJXn2K41B9i-ajM=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.140207+00 2025-12-09 10:15:05.140212+00 9895 0003-457#LWQ15 SPMX-20240815305063 \N \N \N 1 \N [{"file_id": "90f3757d-e229-4a0a-873f-fcba9e7e5fcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f63238f710584d69837f93ec10ca94c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f63238f710584d69837f93ec10ca94c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f63238f710584d69837f93ec10ca94c2.jpg", "file_size": 27490, "is_delete": false, "file_type": 1, "original_file_name": "0003-457#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63238f710584d69837f93ec10ca94c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63238f710584d69837f93ec10ca94c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63238f710584d69837f93ec10ca94c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f63238f710584d69837f93ec10ca94c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f63238f710584d69837f93ec10ca94c2.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5aotZuw6en3DXO0IJ6EaRkg3mE=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.142091+00 2025-12-09 10:15:05.142096+00 9896 LZ1263#背心款3号色 SPMX-20240815305064 \N \N \N 1 \N [{"file_id": "69341f68-35c5-49bf-8ab2-1b8a5d0a28ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19db74b02d6048cdab810961d2623ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19db74b02d6048cdab810961d2623ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19db74b02d6048cdab810961d2623ee5.jpg", "file_size": 20013, "is_delete": false, "file_type": 1, "original_file_name": "LZ1263#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19db74b02d6048cdab810961d2623ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19db74b02d6048cdab810961d2623ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19db74b02d6048cdab810961d2623ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19db74b02d6048cdab810961d2623ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19db74b02d6048cdab810961d2623ee5.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbGU0Ot_JlOAnWAj__cPHjxes0Q=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.143766+00 2025-12-09 10:15:05.14377+00 9897 1082#红色 SPMX-20240815305065 \N \N \N 1 \N [{"file_id": "8aec96fc-6a99-4839-98c4-11f66c4c3ba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e5900520dee48f4add20a80dffad29b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e5900520dee48f4add20a80dffad29b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e5900520dee48f4add20a80dffad29b.jpg", "file_size": 19258, "is_delete": false, "file_type": 1, "original_file_name": "1082#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5900520dee48f4add20a80dffad29b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5900520dee48f4add20a80dffad29b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5900520dee48f4add20a80dffad29b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e5900520dee48f4add20a80dffad29b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e5900520dee48f4add20a80dffad29b.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVky8SGLBpIZZRZjmDeqHQxZIbg=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.145383+00 2025-12-09 10:15:05.145387+00 9898 1082#黄色 SPMX-20240815305074 \N \N \N 1 \N [{"file_id": "c61701ea-6021-4388-b21c-3e020030856f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87f554f75ac745b4a0d90ace2ddb7c53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87f554f75ac745b4a0d90ace2ddb7c53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87f554f75ac745b4a0d90ace2ddb7c53.jpg", "file_size": 16762, "is_delete": false, "file_type": 1, "original_file_name": "1082#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f554f75ac745b4a0d90ace2ddb7c53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f554f75ac745b4a0d90ace2ddb7c53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f554f75ac745b4a0d90ace2ddb7c53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87f554f75ac745b4a0d90ace2ddb7c53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87f554f75ac745b4a0d90ace2ddb7c53.jpg?e=1765361704&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAS82xfmxWvnBrecA9n6b4yqY0w=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.884923+00 2025-12-09 10:15:05.884931+00 9899 JTSS153FW#VS-D3 SPMX-20240815305067 \N \N \N 1 \N [{"file_id": "f78d58cc-c42d-49de-9933-c26bd20d6282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a6c90fc3068493c8685e687d825107c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a6c90fc3068493c8685e687d825107c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a6c90fc3068493c8685e687d825107c.jpg", "file_size": 11270, "is_delete": false, "file_type": 1, "original_file_name": "JTSS153FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6c90fc3068493c8685e687d825107c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6c90fc3068493c8685e687d825107c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6c90fc3068493c8685e687d825107c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a6c90fc3068493c8685e687d825107c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a6c90fc3068493c8685e687d825107c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_aXM1fOYhtjSaM88tzizHaKjrvY=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.88723+00 2025-12-09 10:15:05.887235+00 9900 23-2115#A7-3XL SPMX-20240815305070 \N \N \N 1 \N [{"file_id": "f8a8e472-dc10-46c8-ac32-15458a07e1b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d261c003576144cb96ff4d993a51a8d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d261c003576144cb96ff4d993a51a8d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d261c003576144cb96ff4d993a51a8d0.jpg", "file_size": 16801, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d261c003576144cb96ff4d993a51a8d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d261c003576144cb96ff4d993a51a8d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d261c003576144cb96ff4d993a51a8d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d261c003576144cb96ff4d993a51a8d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d261c003576144cb96ff4d993a51a8d0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnC9lrf5Ve5RbaYzm6M9W7Qp7R4=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.889109+00 2025-12-09 10:15:05.889117+00 9901 C348#黑底白花-放大0.3版本 SPMX-20240815305072 \N \N \N 1 \N [{"file_id": "96f559c0-58ec-43da-80bb-b5a076e2dbcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09914366196d4dbd976fd2e61228fab8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09914366196d4dbd976fd2e61228fab8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09914366196d4dbd976fd2e61228fab8.jpg", "file_size": 23225, "is_delete": false, "file_type": 1, "original_file_name": "C348#黑底白花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09914366196d4dbd976fd2e61228fab8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09914366196d4dbd976fd2e61228fab8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09914366196d4dbd976fd2e61228fab8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09914366196d4dbd976fd2e61228fab8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09914366196d4dbd976fd2e61228fab8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJhPsr0nyKGM5OI-6FUWM5SNO-M=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.89091+00 2025-12-09 10:15:05.890917+00 9902 LZ1263#背心款4号色 SPMX-20240815305075 \N \N \N 1 \N [{"file_id": "0558f789-f0e7-4ed6-b6d5-ef4e99f5ebac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb54f60a0c0e4c6b92a4e8c725289f04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb54f60a0c0e4c6b92a4e8c725289f04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb54f60a0c0e4c6b92a4e8c725289f04.jpg", "file_size": 21366, "is_delete": false, "file_type": 1, "original_file_name": "LZ1263#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb54f60a0c0e4c6b92a4e8c725289f04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb54f60a0c0e4c6b92a4e8c725289f04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb54f60a0c0e4c6b92a4e8c725289f04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb54f60a0c0e4c6b92a4e8c725289f04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb54f60a0c0e4c6b92a4e8c725289f04.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EspyPNb6Ibtfzexzer0BhIm4iEE=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.892611+00 2025-12-09 10:15:05.892615+00 9903 HT019#VS-D3 SPMX-20240815305068 \N \N \N 1 \N [{"file_id": "389dfc3e-7f52-4118-beb9-4a011ff06796", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f8a9e6fb784b158986e4f86eac8684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f8a9e6fb784b158986e4f86eac8684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f8a9e6fb784b158986e4f86eac8684.jpg", "file_size": 16551, "is_delete": false, "file_type": 1, "original_file_name": "HT019#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8a9e6fb784b158986e4f86eac8684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8a9e6fb784b158986e4f86eac8684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8a9e6fb784b158986e4f86eac8684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f8a9e6fb784b158986e4f86eac8684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f8a9e6fb784b158986e4f86eac8684.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkOfSVyoVb3iRxzflA6JQhPxfeU=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.894505+00 2025-12-09 10:15:05.894509+00 9904 LJ9920#L红 SPMX-20240815305066 \N \N \N 1 \N [{"file_id": "b28bd277-5885-4f05-8122-ac3370665083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aef40fa4080a4b31a5220210ca38734f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aef40fa4080a4b31a5220210ca38734f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aef40fa4080a4b31a5220210ca38734f.jpg", "file_size": 14673, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#L红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef40fa4080a4b31a5220210ca38734f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef40fa4080a4b31a5220210ca38734f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef40fa4080a4b31a5220210ca38734f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aef40fa4080a4b31a5220210ca38734f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aef40fa4080a4b31a5220210ca38734f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBrScv9g9UmF-1VwarobVP9pBIc=", "createTime": "2024-08-15 14:49:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.896139+00 2025-12-09 10:15:05.896143+00 9905 JTSS154FW#VS-D3 SPMX-20240815305077 \N \N \N 1 \N [{"file_id": "666c5fcd-f97a-4482-a7d6-7262c58af5e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "babd5483fbfa4b96a6a6f766da982dfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "babd5483fbfa4b96a6a6f766da982dfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "babd5483fbfa4b96a6a6f766da982dfd.jpg", "file_size": 16476, "is_delete": false, "file_type": 1, "original_file_name": "JTSS154FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babd5483fbfa4b96a6a6f766da982dfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babd5483fbfa4b96a6a6f766da982dfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babd5483fbfa4b96a6a6f766da982dfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/babd5483fbfa4b96a6a6f766da982dfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/babd5483fbfa4b96a6a6f766da982dfd.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCLPHQIB_T3wK5S8VN7HCLcI6IY=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.897745+00 2025-12-09 10:15:05.897749+00 9906 HT019FW#VS-D3 SPMX-20240815305081 \N \N \N 1 \N [{"file_id": "79a7fdc5-5b48-44d9-a004-a96bc3bdf0ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b695c27688743948b095ee5eee76f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b695c27688743948b095ee5eee76f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b695c27688743948b095ee5eee76f1c.jpg", "file_size": 10022, "is_delete": false, "file_type": 1, "original_file_name": "HT019FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b695c27688743948b095ee5eee76f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b695c27688743948b095ee5eee76f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b695c27688743948b095ee5eee76f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b695c27688743948b095ee5eee76f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b695c27688743948b095ee5eee76f1c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zWfYSC6sMASrunAAGAfWwf3ncY=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.899608+00 2025-12-09 10:15:05.899614+00 9907 LJ9920#L蓝 SPMX-20240815305076 \N \N \N 1 \N [{"file_id": "f2080720-2178-42b6-abb9-6e9b8ecc4123", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d138b4221ed64f69887465422bfa5587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d138b4221ed64f69887465422bfa5587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d138b4221ed64f69887465422bfa5587.jpg", "file_size": 12884, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#L蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d138b4221ed64f69887465422bfa5587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d138b4221ed64f69887465422bfa5587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d138b4221ed64f69887465422bfa5587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d138b4221ed64f69887465422bfa5587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d138b4221ed64f69887465422bfa5587.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4I1SzTJ3CGKPJQgf5H1Fztr40rk=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.901253+00 2025-12-09 10:15:05.901257+00 9908 23-2115#A7-4XL SPMX-20240815305079 \N \N \N 1 \N [{"file_id": "ff518975-f58a-4dad-9485-f931e63091b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b1af1262f304a4ab99a33f7d2b6999b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b1af1262f304a4ab99a33f7d2b6999b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b1af1262f304a4ab99a33f7d2b6999b.jpg", "file_size": 16047, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1af1262f304a4ab99a33f7d2b6999b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1af1262f304a4ab99a33f7d2b6999b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1af1262f304a4ab99a33f7d2b6999b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b1af1262f304a4ab99a33f7d2b6999b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b1af1262f304a4ab99a33f7d2b6999b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9cKAFVJR4w6YgzLo_3zwMV6Zlk=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.902936+00 2025-12-09 10:15:05.902942+00 9909 FHXGPK-批布012-5 SPMX-20240815305083 \N \N \N 1 \N [{"file_id": "b87b88d5-278f-461a-b369-bf580113a6f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "433e90ee94954479813399a9a16ab8fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "433e90ee94954479813399a9a16ab8fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "433e90ee94954479813399a9a16ab8fb.jpg", "file_size": 38933, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布012-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433e90ee94954479813399a9a16ab8fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433e90ee94954479813399a9a16ab8fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433e90ee94954479813399a9a16ab8fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/433e90ee94954479813399a9a16ab8fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/433e90ee94954479813399a9a16ab8fb.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ra7bTD--lQuHHml_lhvHze7Hbqw=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.904614+00 2025-12-09 10:15:05.904619+00 9910 0003-458#LWQ15 SPMX-20240815305080 \N \N \N 1 \N [{"file_id": "e57cc98f-6237-4e6f-a9cd-8937127edf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0577835c0d5843cb927a0c070c54bd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0577835c0d5843cb927a0c070c54bd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0577835c0d5843cb927a0c070c54bd38.jpg", "file_size": 27438, "is_delete": false, "file_type": 1, "original_file_name": "0003-458#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0577835c0d5843cb927a0c070c54bd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0577835c0d5843cb927a0c070c54bd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0577835c0d5843cb927a0c070c54bd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0577835c0d5843cb927a0c070c54bd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0577835c0d5843cb927a0c070c54bd38.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_DJ0ueyJafWSUBRucZTRbCQDebg=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.906279+00 2025-12-09 10:15:05.906283+00 9911 DL30469#玫红袖子 SPMX-20240815305082 \N \N \N 1 \N [{"file_id": "27101c5c-f7d7-404f-b695-e9a86e8220f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bec6119888414be582b25b190e28cb5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bec6119888414be582b25b190e28cb5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bec6119888414be582b25b190e28cb5e.jpg", "file_size": 11916, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#玫红袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec6119888414be582b25b190e28cb5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec6119888414be582b25b190e28cb5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bec6119888414be582b25b190e28cb5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bec6119888414be582b25b190e28cb5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bec6119888414be582b25b190e28cb5e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3r7RmzRHGy8UQO8H025RFskTjP8=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.90791+00 2025-12-09 10:15:05.907914+00 9912 8096#大红上身 SPMX-20240815305078 \N \N \N 1 \N [{"file_id": "f1996a79-82ff-4794-a04a-a9c4338caf29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80060ffcc0644b83b964fbbe9f733804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80060ffcc0644b83b964fbbe9f733804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80060ffcc0644b83b964fbbe9f733804.jpg", "file_size": 18579, "is_delete": false, "file_type": 1, "original_file_name": "8096#大红上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80060ffcc0644b83b964fbbe9f733804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80060ffcc0644b83b964fbbe9f733804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80060ffcc0644b83b964fbbe9f733804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80060ffcc0644b83b964fbbe9f733804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80060ffcc0644b83b964fbbe9f733804.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0ZMMFvwFKD5025LyYrOAmE8SOw=", "createTime": "2024-08-15 14:49:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.909802+00 2025-12-09 10:15:05.909807+00 9913 FHXGPK-批布013-1 SPMX-20240815305093 \N \N \N 1 \N [{"file_id": "0c268f94-ca1a-4134-a697-7880da2968b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28034e14d9bd4b1ba337912e890517f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28034e14d9bd4b1ba337912e890517f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28034e14d9bd4b1ba337912e890517f0.jpg", "file_size": 41420, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布013-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28034e14d9bd4b1ba337912e890517f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28034e14d9bd4b1ba337912e890517f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28034e14d9bd4b1ba337912e890517f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28034e14d9bd4b1ba337912e890517f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28034e14d9bd4b1ba337912e890517f0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRLaTZHEy5nFBcUN4X9VacGRSOA=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.911595+00 2025-12-09 10:15:05.911598+00 9914 JTSS155FW#VS-D3 SPMX-20240815305089 \N \N \N 1 \N [{"file_id": "a672f3d8-f0af-4803-a36f-df986526710c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "471a38b57171439bbfa0e9117d5fd449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "471a38b57171439bbfa0e9117d5fd449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "471a38b57171439bbfa0e9117d5fd449.jpg", "file_size": 16301, "is_delete": false, "file_type": 1, "original_file_name": "JTSS155FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471a38b57171439bbfa0e9117d5fd449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471a38b57171439bbfa0e9117d5fd449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471a38b57171439bbfa0e9117d5fd449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/471a38b57171439bbfa0e9117d5fd449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/471a38b57171439bbfa0e9117d5fd449.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_8D9WcJ1qNOPQrQpDTOgXQORnE=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.91323+00 2025-12-09 10:15:05.913235+00 9915 23-2115#A7-领子3XL SPMX-20240815305084 \N \N \N 1 \N [{"file_id": "dc48e245-07f2-4c11-af10-1bde52d56e6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb449b08c4645a59929c75a79945b6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb449b08c4645a59929c75a79945b6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb449b08c4645a59929c75a79945b6f.jpg", "file_size": 13309, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb449b08c4645a59929c75a79945b6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb449b08c4645a59929c75a79945b6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb449b08c4645a59929c75a79945b6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb449b08c4645a59929c75a79945b6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb449b08c4645a59929c75a79945b6f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHlwI1bB-Kh1IYLGE_Ad4ijZMPk=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.914851+00 2025-12-09 10:15:05.914855+00 9916 23-2115#A7-领子4XL SPMX-20240815305095 \N \N \N 1 \N [{"file_id": "ecb91a72-2f5b-4624-bb2e-c055ae240d0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f0a61066232488c86a9907e4dae3371.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f0a61066232488c86a9907e4dae3371.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f0a61066232488c86a9907e4dae3371.jpg", "file_size": 12772, "is_delete": false, "file_type": 1, "original_file_name": "23-2115#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0a61066232488c86a9907e4dae3371.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0a61066232488c86a9907e4dae3371.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f0a61066232488c86a9907e4dae3371.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f0a61066232488c86a9907e4dae3371.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f0a61066232488c86a9907e4dae3371.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WquNT3732rIMB0dcSbFiZYQvMsU=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.916713+00 2025-12-09 10:15:05.916717+00 9917 DL30469#蓝绿下摆 SPMX-20240815305090 \N \N \N 1 \N [{"file_id": "e9afd814-9cd7-453a-a048-020740c4afe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7664ea9c88643c4aeb02e15ddb51540.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7664ea9c88643c4aeb02e15ddb51540.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7664ea9c88643c4aeb02e15ddb51540.jpg", "file_size": 20988, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#蓝绿下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7664ea9c88643c4aeb02e15ddb51540.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7664ea9c88643c4aeb02e15ddb51540.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7664ea9c88643c4aeb02e15ddb51540.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7664ea9c88643c4aeb02e15ddb51540.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7664ea9c88643c4aeb02e15ddb51540.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3PU-5RKNp-PSrHJSHX4x_NxHVY=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.918334+00 2025-12-09 10:15:05.918338+00 9918 0003-459#WJC22 SPMX-20240815305092 \N \N \N 1 \N [{"file_id": "4f65e202-fb78-4c41-84e2-8bcee8371dd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "912c31420ad74c0097e8c135f8de6c60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "912c31420ad74c0097e8c135f8de6c60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "912c31420ad74c0097e8c135f8de6c60.jpg", "file_size": 22135, "is_delete": false, "file_type": 1, "original_file_name": "0003-459#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912c31420ad74c0097e8c135f8de6c60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912c31420ad74c0097e8c135f8de6c60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912c31420ad74c0097e8c135f8de6c60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/912c31420ad74c0097e8c135f8de6c60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/912c31420ad74c0097e8c135f8de6c60.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yr6qNLOvCvNOmkrT7kK6maa_SuU=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.919972+00 2025-12-09 10:15:05.919977+00 9919 1082#黑色 SPMX-20240815305087 \N \N \N 1 \N [{"file_id": "3abf6b0a-f4cc-48b7-a32a-571fd7738ed9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67d2a5323cf148f392ac2fb722aca67d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67d2a5323cf148f392ac2fb722aca67d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67d2a5323cf148f392ac2fb722aca67d.jpg", "file_size": 19800, "is_delete": false, "file_type": 1, "original_file_name": "1082#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d2a5323cf148f392ac2fb722aca67d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d2a5323cf148f392ac2fb722aca67d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d2a5323cf148f392ac2fb722aca67d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67d2a5323cf148f392ac2fb722aca67d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67d2a5323cf148f392ac2fb722aca67d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RT53bZaljtk8y8n2JwIvujRSquM=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.922118+00 2025-12-09 10:15:05.922124+00 9920 8096#大红短款袖子 SPMX-20240815305094 \N \N \N 1 \N [{"file_id": "8b1a952b-d4a9-44c7-bdbe-bd044ba91ce0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc323c162a4944a083829eb203686b02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc323c162a4944a083829eb203686b02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc323c162a4944a083829eb203686b02.jpg", "file_size": 13215, "is_delete": false, "file_type": 1, "original_file_name": "8096#大红短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323c162a4944a083829eb203686b02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323c162a4944a083829eb203686b02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323c162a4944a083829eb203686b02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc323c162a4944a083829eb203686b02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc323c162a4944a083829eb203686b02.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWlg_m7qPXgpH4Y2L3heRBwvAZM=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.924158+00 2025-12-09 10:15:05.924163+00 9921 LJ9920#M咖啡 SPMX-20240815305088 \N \N \N 1 \N [{"file_id": "cdce363a-52ac-46b4-b81d-cc966a6e295a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7497b9132bb40c3ad936e4e315745d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7497b9132bb40c3ad936e4e315745d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7497b9132bb40c3ad936e4e315745d5.jpg", "file_size": 16078, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#M咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7497b9132bb40c3ad936e4e315745d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7497b9132bb40c3ad936e4e315745d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7497b9132bb40c3ad936e4e315745d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7497b9132bb40c3ad936e4e315745d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7497b9132bb40c3ad936e4e315745d5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tY6VBt8QrvgbNsWzkmwaCG89tf0=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.926076+00 2025-12-09 10:15:05.92608+00 9922 LZ1263#背心款5号色 SPMX-20240815305086 \N \N \N 1 \N [{"file_id": "114cd00d-b084-4eb5-a1db-569f0441e209", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6334e74d86cf47bdacf953895c1e925c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6334e74d86cf47bdacf953895c1e925c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6334e74d86cf47bdacf953895c1e925c.jpg", "file_size": 20218, "is_delete": false, "file_type": 1, "original_file_name": "LZ1263#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6334e74d86cf47bdacf953895c1e925c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6334e74d86cf47bdacf953895c1e925c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6334e74d86cf47bdacf953895c1e925c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6334e74d86cf47bdacf953895c1e925c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6334e74d86cf47bdacf953895c1e925c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uGY-T1HS9CMM2KCpx1-AB-LMzKQ=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.927919+00 2025-12-09 10:15:05.927923+00 9923 C349#橙色-放大0.3版本 SPMX-20240815305085 \N \N \N 1 \N [{"file_id": "874e8974-b2d8-4747-afb7-95ec348562d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2be155aa473b47f38dce533de97d2a10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2be155aa473b47f38dce533de97d2a10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2be155aa473b47f38dce533de97d2a10.jpg", "file_size": 69175, "is_delete": false, "file_type": 1, "original_file_name": "C349#橙色-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be155aa473b47f38dce533de97d2a10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be155aa473b47f38dce533de97d2a10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be155aa473b47f38dce533de97d2a10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2be155aa473b47f38dce533de97d2a10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2be155aa473b47f38dce533de97d2a10.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18jdDzNBzzcv32kFmYCCNU22O7Q=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.92979+00 2025-12-09 10:15:05.929795+00 9924 HT019FWE#VS-D3 SPMX-20240815305091 \N \N \N 1 \N [{"file_id": "d1edd54c-81c7-4ba9-ab0f-a76ca1b8f3a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb5ab1b193f469c8947fcc8c9eb4fe0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb5ab1b193f469c8947fcc8c9eb4fe0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb5ab1b193f469c8947fcc8c9eb4fe0.jpg", "file_size": 8668, "is_delete": false, "file_type": 1, "original_file_name": "HT019FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb5ab1b193f469c8947fcc8c9eb4fe0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb5ab1b193f469c8947fcc8c9eb4fe0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb5ab1b193f469c8947fcc8c9eb4fe0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb5ab1b193f469c8947fcc8c9eb4fe0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb5ab1b193f469c8947fcc8c9eb4fe0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ws6ND4dKU3uP059mkDsaXZ4s0gg=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.931419+00 2025-12-09 10:15:05.931424+00 9925 0003-45FWF#V5曲线 SPMX-20240815305105 \N \N \N 1 \N [{"file_id": "49fa8a37-5294-4f80-be3c-02bc45817510", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2bfeedc7ebe4152877e82b5fc4350ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2bfeedc7ebe4152877e82b5fc4350ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2bfeedc7ebe4152877e82b5fc4350ad.jpg", "file_size": 18363, "is_delete": false, "file_type": 1, "original_file_name": "0003-45FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2bfeedc7ebe4152877e82b5fc4350ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2bfeedc7ebe4152877e82b5fc4350ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2bfeedc7ebe4152877e82b5fc4350ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2bfeedc7ebe4152877e82b5fc4350ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2bfeedc7ebe4152877e82b5fc4350ad.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SohbypAU-7UydrnGQdgDYfRy2xk=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.933071+00 2025-12-09 10:15:05.933075+00 9926 LZ1264#背心款2号色 SPMX-20240815305108 \N \N \N 1 \N [{"file_id": "b07d85c9-6333-41cd-9af2-3ecfdbc8caf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b4b502147d94acd8d4fe8a82341d1aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b4b502147d94acd8d4fe8a82341d1aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b4b502147d94acd8d4fe8a82341d1aa.jpg", "file_size": 18701, "is_delete": false, "file_type": 1, "original_file_name": "LZ1264#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4b502147d94acd8d4fe8a82341d1aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4b502147d94acd8d4fe8a82341d1aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b4b502147d94acd8d4fe8a82341d1aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b4b502147d94acd8d4fe8a82341d1aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b4b502147d94acd8d4fe8a82341d1aa.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Po8gDBRmeKFh-wCwdpBdpNU_uXs=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.934904+00 2025-12-09 10:15:05.934908+00 9927 JTSS156FW#VS-D3 SPMX-20240815305101 \N \N \N 1 \N [{"file_id": "9fa714de-32cb-48bd-897f-743c0f673f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07a15f1eda6a4c8d992201e1375f0bc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07a15f1eda6a4c8d992201e1375f0bc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07a15f1eda6a4c8d992201e1375f0bc0.jpg", "file_size": 17125, "is_delete": false, "file_type": 1, "original_file_name": "JTSS156FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a15f1eda6a4c8d992201e1375f0bc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a15f1eda6a4c8d992201e1375f0bc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a15f1eda6a4c8d992201e1375f0bc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07a15f1eda6a4c8d992201e1375f0bc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07a15f1eda6a4c8d992201e1375f0bc0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6geaGL1bqr393z_m7QHZs5XbIDM=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.936565+00 2025-12-09 10:15:05.93657+00 9928 FHXGPK-批布013-2 SPMX-20240815305103 \N \N \N 1 \N [{"file_id": "5313f3f0-c038-42ad-a393-779d795d4ce7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cbdaf361c3648cd80ff247d11acf838.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cbdaf361c3648cd80ff247d11acf838.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cbdaf361c3648cd80ff247d11acf838.jpg", "file_size": 49739, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布013-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbdaf361c3648cd80ff247d11acf838.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbdaf361c3648cd80ff247d11acf838.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbdaf361c3648cd80ff247d11acf838.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cbdaf361c3648cd80ff247d11acf838.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cbdaf361c3648cd80ff247d11acf838.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:773aKckbwWy0Ll_Ae4LChmIe4uA=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.938231+00 2025-12-09 10:15:05.938236+00 9929 DL30469#蓝绿前后幅2XL SPMX-20240815305102 \N \N \N 1 \N [{"file_id": "81be14cd-9a65-46c6-bc64-543c116f09eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2038b52f73845e6bdbe9dd4a4aec277.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2038b52f73845e6bdbe9dd4a4aec277.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2038b52f73845e6bdbe9dd4a4aec277.jpg", "file_size": 19665, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#蓝绿前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2038b52f73845e6bdbe9dd4a4aec277.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2038b52f73845e6bdbe9dd4a4aec277.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2038b52f73845e6bdbe9dd4a4aec277.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2038b52f73845e6bdbe9dd4a4aec277.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2038b52f73845e6bdbe9dd4a4aec277.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOyZOBqY2ISsjPXOi_Wgl3-QJFI=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.939864+00 2025-12-09 10:15:05.939868+00 9930 HT020#1 VS-D3 SPMX-20240815305100 \N \N \N 1 \N [{"file_id": "42eaf49d-94d4-4448-a888-4de7bee0a3d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82bab97e893c43ec81087992b82c468e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82bab97e893c43ec81087992b82c468e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82bab97e893c43ec81087992b82c468e.jpg", "file_size": 11731, "is_delete": false, "file_type": 1, "original_file_name": "HT020#1 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bab97e893c43ec81087992b82c468e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bab97e893c43ec81087992b82c468e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bab97e893c43ec81087992b82c468e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82bab97e893c43ec81087992b82c468e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82bab97e893c43ec81087992b82c468e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DGorfvu1UCx6Aw2PCvRd2mBUmAw=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.941547+00 2025-12-09 10:15:05.941553+00 9931 8096#宝蓝上身 SPMX-20240815305104 \N \N \N 1 \N [{"file_id": "e9f5c316-c244-4072-b7f2-bd0b7a529448", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00d4f0beb3704789a4b694ffcd14632a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00d4f0beb3704789a4b694ffcd14632a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00d4f0beb3704789a4b694ffcd14632a.jpg", "file_size": 19887, "is_delete": false, "file_type": 1, "original_file_name": "8096#宝蓝上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d4f0beb3704789a4b694ffcd14632a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d4f0beb3704789a4b694ffcd14632a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d4f0beb3704789a4b694ffcd14632a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00d4f0beb3704789a4b694ffcd14632a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00d4f0beb3704789a4b694ffcd14632a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3YG71W8boL1ez98cnhorhCEUSs=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.943242+00 2025-12-09 10:15:05.943247+00 9932 C349#白底216#枣红-放大0.3版本 SPMX-20240815305106 \N \N \N 1 \N [{"file_id": "eda00efb-7e4f-4744-8328-7f2dc1d0bc4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9adeb59281164b449261cd6fff87e4c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9adeb59281164b449261cd6fff87e4c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9adeb59281164b449261cd6fff87e4c3.jpg", "file_size": 25320, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底216#枣红-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adeb59281164b449261cd6fff87e4c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adeb59281164b449261cd6fff87e4c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adeb59281164b449261cd6fff87e4c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9adeb59281164b449261cd6fff87e4c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9adeb59281164b449261cd6fff87e4c3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wBbD3Ip1exJgoJhHPnHNRKpxhzQ=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.944886+00 2025-12-09 10:15:05.94489+00 9933 23-2116#A1-3XL SPMX-20240815305107 \N \N \N 1 \N [{"file_id": "2c33d6d4-b50e-4397-93e0-eabe0d3d261e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22bf0155d0f34e5bbbea145b34188bda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22bf0155d0f34e5bbbea145b34188bda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22bf0155d0f34e5bbbea145b34188bda.jpg", "file_size": 17274, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22bf0155d0f34e5bbbea145b34188bda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22bf0155d0f34e5bbbea145b34188bda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22bf0155d0f34e5bbbea145b34188bda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22bf0155d0f34e5bbbea145b34188bda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22bf0155d0f34e5bbbea145b34188bda.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:de1s9clLtHJuDx6hcjMozNLY0qg=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.946521+00 2025-12-09 10:15:05.946525+00 9934 C349#玫红-放大0.3版本 SPMX-20240815305096 \N \N \N 1 \N [{"file_id": "84a41e67-42c4-43fe-a527-c30f666fb077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ecc6c0dc43a40819ce5ba6082b73701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ecc6c0dc43a40819ce5ba6082b73701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ecc6c0dc43a40819ce5ba6082b73701.jpg", "file_size": 67740, "is_delete": false, "file_type": 1, "original_file_name": "C349#玫红-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecc6c0dc43a40819ce5ba6082b73701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecc6c0dc43a40819ce5ba6082b73701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecc6c0dc43a40819ce5ba6082b73701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ecc6c0dc43a40819ce5ba6082b73701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ecc6c0dc43a40819ce5ba6082b73701.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anEB0jPfMknwU2XBlZjR_KXz-LU=", "createTime": "2024-08-15 14:49:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.948178+00 2025-12-09 10:15:05.948182+00 9935 LJ9920#M灰 SPMX-20240815305098 \N \N \N 1 \N [{"file_id": "15f5e9b7-a7e8-4895-85ac-cdd80eefd893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6da414ea0e458882d43199b31ae888.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6da414ea0e458882d43199b31ae888.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6da414ea0e458882d43199b31ae888.jpg", "file_size": 14367, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#M灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da414ea0e458882d43199b31ae888.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da414ea0e458882d43199b31ae888.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6da414ea0e458882d43199b31ae888.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6da414ea0e458882d43199b31ae888.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6da414ea0e458882d43199b31ae888.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCgTdcQS4nfmNEp9lO6S2VBAPxE=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.950028+00 2025-12-09 10:15:05.950033+00 9936 1082FWF#V5曲线 SPMX-20240815305099 \N \N \N 1 \N [{"file_id": "aac246a7-4169-4dd2-afef-66005064d8cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db91f2bd8e214f579ff57a62620ce5b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db91f2bd8e214f579ff57a62620ce5b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db91f2bd8e214f579ff57a62620ce5b8.jpg", "file_size": 20466, "is_delete": false, "file_type": 1, "original_file_name": "1082FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91f2bd8e214f579ff57a62620ce5b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91f2bd8e214f579ff57a62620ce5b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91f2bd8e214f579ff57a62620ce5b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db91f2bd8e214f579ff57a62620ce5b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db91f2bd8e214f579ff57a62620ce5b8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jn2KNj83zEvW0ILf0d0aa7yDnxA=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.95195+00 2025-12-09 10:15:05.951955+00 9937 LZ1264#背心款1号色 SPMX-20240815305097 \N \N \N 1 \N [{"file_id": "633f80f6-8970-4213-bd41-f2e9eddfea8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f42d30978fad4aa580df24e9c929f8a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f42d30978fad4aa580df24e9c929f8a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f42d30978fad4aa580df24e9c929f8a0.jpg", "file_size": 19177, "is_delete": false, "file_type": 1, "original_file_name": "LZ1264#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42d30978fad4aa580df24e9c929f8a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42d30978fad4aa580df24e9c929f8a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42d30978fad4aa580df24e9c929f8a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f42d30978fad4aa580df24e9c929f8a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f42d30978fad4aa580df24e9c929f8a0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edDagWPyNfX9Zn8LBa1-n2EnH0E=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.953577+00 2025-12-09 10:15:05.953582+00 9938 1083#WJC22 SPMX-20240815305109 \N \N \N 1 \N [{"file_id": "e6c0ab8a-04ea-4e34-9814-477e3313d935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa37ad3df1b94985820d40db6a1717ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa37ad3df1b94985820d40db6a1717ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa37ad3df1b94985820d40db6a1717ab.jpg", "file_size": 9062, "is_delete": false, "file_type": 1, "original_file_name": "1083#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37ad3df1b94985820d40db6a1717ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37ad3df1b94985820d40db6a1717ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37ad3df1b94985820d40db6a1717ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa37ad3df1b94985820d40db6a1717ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa37ad3df1b94985820d40db6a1717ab.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFxOU6l21Tw7XMdi_ThPWGosFEA=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.955359+00 2025-12-09 10:15:05.955363+00 9939 DL30469#蓝绿前后幅L SPMX-20240815305111 \N \N \N 1 \N [{"file_id": "c80ad3d4-30fa-48e7-ba44-68b66116b186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f18208e3458438caca487ccd7b4e8e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f18208e3458438caca487ccd7b4e8e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f18208e3458438caca487ccd7b4e8e9.jpg", "file_size": 18983, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#蓝绿前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f18208e3458438caca487ccd7b4e8e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f18208e3458438caca487ccd7b4e8e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f18208e3458438caca487ccd7b4e8e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f18208e3458438caca487ccd7b4e8e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f18208e3458438caca487ccd7b4e8e9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NT46sveCy5sq3cGMJ-ovmcv6SZc=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.957008+00 2025-12-09 10:15:05.957012+00 9940 LJ9920#M蓝 SPMX-20240815305124 \N \N \N 1 \N [{"file_id": "7c09ef62-e6e3-4f3f-b00a-7dbeb6d46e0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e03cc30148fb4687b62a8ec69f4d1791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e03cc30148fb4687b62a8ec69f4d1791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e03cc30148fb4687b62a8ec69f4d1791.jpg", "file_size": 13466, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#M蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03cc30148fb4687b62a8ec69f4d1791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03cc30148fb4687b62a8ec69f4d1791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03cc30148fb4687b62a8ec69f4d1791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e03cc30148fb4687b62a8ec69f4d1791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e03cc30148fb4687b62a8ec69f4d1791.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vc5fs94wp3buj4wW0abSsmHbwHI=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.958658+00 2025-12-09 10:15:05.958663+00 9941 LZ1264#背心款3号色 SPMX-20240815305119 \N \N \N 1 \N [{"file_id": "3fb3e1ee-f2bc-4842-804d-cb2bab7dc07e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb9704528c8a43a8a6c8a62f1382f2b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb9704528c8a43a8a6c8a62f1382f2b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb9704528c8a43a8a6c8a62f1382f2b2.jpg", "file_size": 19274, "is_delete": false, "file_type": 1, "original_file_name": "LZ1264#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9704528c8a43a8a6c8a62f1382f2b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9704528c8a43a8a6c8a62f1382f2b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9704528c8a43a8a6c8a62f1382f2b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb9704528c8a43a8a6c8a62f1382f2b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb9704528c8a43a8a6c8a62f1382f2b2.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKjk3GL7VFLMwXQpV9wZJdKYo6c=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.960285+00 2025-12-09 10:15:05.960289+00 9942 JTSS157FW#VS-D3 SPMX-20240815305114 \N \N \N 1 \N [{"file_id": "28fe4367-bfae-4269-b7f2-ea55e2436024", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e238adb268fb45e798458998ba8b69f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e238adb268fb45e798458998ba8b69f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e238adb268fb45e798458998ba8b69f5.jpg", "file_size": 16372, "is_delete": false, "file_type": 1, "original_file_name": "JTSS157FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e238adb268fb45e798458998ba8b69f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e238adb268fb45e798458998ba8b69f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e238adb268fb45e798458998ba8b69f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e238adb268fb45e798458998ba8b69f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e238adb268fb45e798458998ba8b69f5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVeVhaoc0TPwbS-zIsZCUaEdwOs=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.962068+00 2025-12-09 10:15:05.962073+00 9943 23-2116#A1-4XL SPMX-20240815305117 \N \N \N 1 \N [{"file_id": "22025f80-97bb-46f3-85d0-f946fbf9f6c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "954d1c63c74c4a4c9dce6385a9c674ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "954d1c63c74c4a4c9dce6385a9c674ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "954d1c63c74c4a4c9dce6385a9c674ec.jpg", "file_size": 15687, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954d1c63c74c4a4c9dce6385a9c674ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954d1c63c74c4a4c9dce6385a9c674ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954d1c63c74c4a4c9dce6385a9c674ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/954d1c63c74c4a4c9dce6385a9c674ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/954d1c63c74c4a4c9dce6385a9c674ec.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-VF4ZmR5CkE0SHWaUcvqqf42u5g=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.963693+00 2025-12-09 10:15:05.963698+00 9944 FHXGPK-批布013-3 SPMX-20240815305110 \N \N \N 1 \N [{"file_id": "756188cf-85ae-4221-bb6a-63796c058c57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14e15bf65e174a70b815b9b3823d408a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14e15bf65e174a70b815b9b3823d408a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14e15bf65e174a70b815b9b3823d408a.jpg", "file_size": 45467, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布013-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e15bf65e174a70b815b9b3823d408a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e15bf65e174a70b815b9b3823d408a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e15bf65e174a70b815b9b3823d408a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14e15bf65e174a70b815b9b3823d408a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14e15bf65e174a70b815b9b3823d408a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKn-YwmZWfJ2pt4iSKLKjDxQxkk=", "createTime": "2024-08-15 14:49:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.965374+00 2025-12-09 10:15:05.965379+00 9945 8096#宝蓝短款袖子 SPMX-20240815305113 \N \N \N 1 \N [{"file_id": "a2416b2d-4597-46a3-9aa5-92a4e74db413", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab5de469094f4d45885529ea7a72fb15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab5de469094f4d45885529ea7a72fb15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab5de469094f4d45885529ea7a72fb15.jpg", "file_size": 13345, "is_delete": false, "file_type": 1, "original_file_name": "8096#宝蓝短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5de469094f4d45885529ea7a72fb15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5de469094f4d45885529ea7a72fb15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5de469094f4d45885529ea7a72fb15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab5de469094f4d45885529ea7a72fb15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab5de469094f4d45885529ea7a72fb15.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3cVPouQgQ9gufvJN_Qb3Dq3_Ws=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.967236+00 2025-12-09 10:15:05.96724+00 9946 LJ9920#M红 SPMX-20240815305115 \N \N \N 1 \N [{"file_id": "989f517f-49da-41fd-b69c-50f1d29aeabc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f576ccf93f7a4c3c93de98f447908cd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f576ccf93f7a4c3c93de98f447908cd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f576ccf93f7a4c3c93de98f447908cd6.jpg", "file_size": 15358, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#M红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f576ccf93f7a4c3c93de98f447908cd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f576ccf93f7a4c3c93de98f447908cd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f576ccf93f7a4c3c93de98f447908cd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f576ccf93f7a4c3c93de98f447908cd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f576ccf93f7a4c3c93de98f447908cd6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADuQZsCk6-w3OS_Tg6Oh4rKGZhY=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.969075+00 2025-12-09 10:15:05.96908+00 9947 HT020#2 VS-D3 SPMX-20240815305112 \N \N \N 1 \N [{"file_id": "7e7a866b-3210-4c85-a553-0bc88b0b11e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9812dc2b034b2ab67e861a815a130f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9812dc2b034b2ab67e861a815a130f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9812dc2b034b2ab67e861a815a130f.jpg", "file_size": 11692, "is_delete": false, "file_type": 1, "original_file_name": "HT020#2 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9812dc2b034b2ab67e861a815a130f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9812dc2b034b2ab67e861a815a130f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9812dc2b034b2ab67e861a815a130f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9812dc2b034b2ab67e861a815a130f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9812dc2b034b2ab67e861a815a130f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FANC0Xw7w2umr9OGbtmAKAfV_OQ=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.970713+00 2025-12-09 10:15:05.970718+00 9948 FHXGPK-批布013-4 SPMX-20240815305121 \N \N \N 1 \N [{"file_id": "b63e248b-cf1f-4fb7-853e-d96e2f5a6982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c81983b4087462b87852e36b63d21b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c81983b4087462b87852e36b63d21b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c81983b4087462b87852e36b63d21b7.jpg", "file_size": 41671, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布013-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81983b4087462b87852e36b63d21b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81983b4087462b87852e36b63d21b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81983b4087462b87852e36b63d21b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c81983b4087462b87852e36b63d21b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c81983b4087462b87852e36b63d21b7.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2it-d_P2-sQyAxilrAAZUVnyug=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.972364+00 2025-12-09 10:15:05.972368+00 9949 C349#白底243#绿花-放大0.3版本 SPMX-20240815305116 \N \N \N 1 \N [{"file_id": "6bdf8618-dd14-4c5a-a1b0-91d1103ada85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28e8d47344574eaa90b6125b65a4c3df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28e8d47344574eaa90b6125b65a4c3df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28e8d47344574eaa90b6125b65a4c3df.jpg", "file_size": 70510, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底243#绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8d47344574eaa90b6125b65a4c3df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8d47344574eaa90b6125b65a4c3df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8d47344574eaa90b6125b65a4c3df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28e8d47344574eaa90b6125b65a4c3df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28e8d47344574eaa90b6125b65a4c3df.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q0W93C9T0W_Y0bSJpqI43uUIdLU=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.974246+00 2025-12-09 10:15:05.97425+00 9950 JTSS158FW#VS-D3 SPMX-20240815305125 \N \N \N 1 \N [{"file_id": "47a20c28-e6d4-42a2-aec1-24e2880db6ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "415e6f80d3574cfe8488e86b85d93cae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "415e6f80d3574cfe8488e86b85d93cae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "415e6f80d3574cfe8488e86b85d93cae.jpg", "file_size": 17704, "is_delete": false, "file_type": 1, "original_file_name": "JTSS158FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415e6f80d3574cfe8488e86b85d93cae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415e6f80d3574cfe8488e86b85d93cae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415e6f80d3574cfe8488e86b85d93cae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/415e6f80d3574cfe8488e86b85d93cae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/415e6f80d3574cfe8488e86b85d93cae.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6r5HNPSA4qS7n3GtdemJ_vx6E8=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.976133+00 2025-12-09 10:15:05.976138+00 9951 0003-460#WJC22 SPMX-20240815305118 \N \N \N 1 \N [{"file_id": "71f2d255-be4c-46af-a8ce-972e8df76115", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf935f0ee6844538b00a963581369f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf935f0ee6844538b00a963581369f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf935f0ee6844538b00a963581369f1.jpg", "file_size": 21148, "is_delete": false, "file_type": 1, "original_file_name": "0003-460#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf935f0ee6844538b00a963581369f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf935f0ee6844538b00a963581369f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf935f0ee6844538b00a963581369f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf935f0ee6844538b00a963581369f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf935f0ee6844538b00a963581369f1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2TopqVHktHhGyH92s3E8mIRSeU4=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.977764+00 2025-12-09 10:15:05.977768+00 9952 DL30469#蓝绿前后幅XL SPMX-20240815305122 \N \N \N 1 \N [{"file_id": "4779c12f-902f-4cbd-9502-a1831fb5b255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d58b22ffec04b3daca144d595b712a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d58b22ffec04b3daca144d595b712a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d58b22ffec04b3daca144d595b712a8.jpg", "file_size": 19587, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#蓝绿前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d58b22ffec04b3daca144d595b712a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d58b22ffec04b3daca144d595b712a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d58b22ffec04b3daca144d595b712a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d58b22ffec04b3daca144d595b712a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d58b22ffec04b3daca144d595b712a8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JEG6fPK97ww4dDVDByZlchDt3LI=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.979419+00 2025-12-09 10:15:05.979424+00 9953 1083#原版色 SPMX-20240815305120 \N \N \N 1 \N [{"file_id": "09d93ea7-8f69-401d-b17f-d3f27e96d754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c13df72cd2e410b95b290ac574b77c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c13df72cd2e410b95b290ac574b77c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c13df72cd2e410b95b290ac574b77c9.jpg", "file_size": 13577, "is_delete": false, "file_type": 1, "original_file_name": "1083#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13df72cd2e410b95b290ac574b77c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13df72cd2e410b95b290ac574b77c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13df72cd2e410b95b290ac574b77c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c13df72cd2e410b95b290ac574b77c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c13df72cd2e410b95b290ac574b77c9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxK58fVOp0a9jggimDf56KQvsc8=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.981266+00 2025-12-09 10:15:05.98127+00 9954 HT020#3 VS-D3 SPMX-20240815305123 \N \N \N 1 \N [{"file_id": "05985b26-1dcc-41fa-998f-980b79d042f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7f4c722638648d499de14567128e078.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7f4c722638648d499de14567128e078.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7f4c722638648d499de14567128e078.jpg", "file_size": 11675, "is_delete": false, "file_type": 1, "original_file_name": "HT020#3 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f4c722638648d499de14567128e078.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f4c722638648d499de14567128e078.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f4c722638648d499de14567128e078.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7f4c722638648d499de14567128e078.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7f4c722638648d499de14567128e078.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5BnisWAct27R-Vhs53f9_zofnk=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.98345+00 2025-12-09 10:15:05.983454+00 9955 C349#白底243#绿花 SPMX-20240815305128 \N \N \N 1 \N [{"file_id": "33148227-81f9-4411-8c2e-7cfb9a8f8789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcc30601d9a24e1dbd7caa39f106b020.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcc30601d9a24e1dbd7caa39f106b020.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcc30601d9a24e1dbd7caa39f106b020.jpg", "file_size": 69784, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底243#绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc30601d9a24e1dbd7caa39f106b020.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc30601d9a24e1dbd7caa39f106b020.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc30601d9a24e1dbd7caa39f106b020.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcc30601d9a24e1dbd7caa39f106b020.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcc30601d9a24e1dbd7caa39f106b020.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCkGddb-6pid-52eUPwYqqCAJ2E=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.985608+00 2025-12-09 10:15:05.985612+00 9956 1083#天蓝色 SPMX-20240815305131 \N \N \N 1 \N [{"file_id": "73c2ba5e-7b28-41d8-aa46-8f719064c741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37d2973d3d0b49109a85c1c8624d75e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37d2973d3d0b49109a85c1c8624d75e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37d2973d3d0b49109a85c1c8624d75e9.jpg", "file_size": 13961, "is_delete": false, "file_type": 1, "original_file_name": "1083#天蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d2973d3d0b49109a85c1c8624d75e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d2973d3d0b49109a85c1c8624d75e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d2973d3d0b49109a85c1c8624d75e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37d2973d3d0b49109a85c1c8624d75e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37d2973d3d0b49109a85c1c8624d75e9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDYdxtOniO4iTI1zy8sLYywxIyY=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.987541+00 2025-12-09 10:15:05.987546+00 9957 8096#杏色短款袖子 SPMX-20240815305137 \N \N \N 1 \N [{"file_id": "a4a6962e-35de-4cc9-aba0-473bdacb7775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ecf6985442e49b09c2615e9cef4cf84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ecf6985442e49b09c2615e9cef4cf84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ecf6985442e49b09c2615e9cef4cf84.jpg", "file_size": 12796, "is_delete": false, "file_type": 1, "original_file_name": "8096#杏色短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecf6985442e49b09c2615e9cef4cf84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecf6985442e49b09c2615e9cef4cf84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecf6985442e49b09c2615e9cef4cf84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ecf6985442e49b09c2615e9cef4cf84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ecf6985442e49b09c2615e9cef4cf84.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gREQ5BzHVZNZRz_903LIZVmbzvU=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.989461+00 2025-12-09 10:15:05.989465+00 9958 LZ1264#背心款4号色 SPMX-20240815305130 \N \N \N 1 \N [{"file_id": "98252c58-2ad3-4ded-af7c-8151e5302945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10a3f414b24b430fbe76cbfbdc4ca740.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10a3f414b24b430fbe76cbfbdc4ca740.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10a3f414b24b430fbe76cbfbdc4ca740.jpg", "file_size": 19177, "is_delete": false, "file_type": 1, "original_file_name": "LZ1264#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a3f414b24b430fbe76cbfbdc4ca740.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a3f414b24b430fbe76cbfbdc4ca740.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a3f414b24b430fbe76cbfbdc4ca740.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10a3f414b24b430fbe76cbfbdc4ca740.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10a3f414b24b430fbe76cbfbdc4ca740.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEV6WhlbOifLiuhJ-AZiKzG6YFM=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.991609+00 2025-12-09 10:15:05.991614+00 9959 23-2116#A1-领子3XL SPMX-20240815305126 \N \N \N 1 \N [{"file_id": "03549f19-b5a8-4bf5-8491-45a55b35020e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d8bccddc15d47a39cb7afb1d008f7fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d8bccddc15d47a39cb7afb1d008f7fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d8bccddc15d47a39cb7afb1d008f7fb.jpg", "file_size": 13856, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8bccddc15d47a39cb7afb1d008f7fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8bccddc15d47a39cb7afb1d008f7fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8bccddc15d47a39cb7afb1d008f7fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d8bccddc15d47a39cb7afb1d008f7fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d8bccddc15d47a39cb7afb1d008f7fb.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGp8p8foXbynTUrWtN3uhWATisM=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.993548+00 2025-12-09 10:15:05.993552+00 9960 LJ9920#S咖啡 SPMX-20240815305135 \N \N \N 1 \N [{"file_id": "fe450e4b-6993-4cf2-86be-0fb44bc3edd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1fd05612aff48dc8fc636edf49ef319.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1fd05612aff48dc8fc636edf49ef319.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1fd05612aff48dc8fc636edf49ef319.jpg", "file_size": 16332, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#S咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd05612aff48dc8fc636edf49ef319.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd05612aff48dc8fc636edf49ef319.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fd05612aff48dc8fc636edf49ef319.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1fd05612aff48dc8fc636edf49ef319.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1fd05612aff48dc8fc636edf49ef319.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyULHvxdJLiWpssuUwkLVaDLHJo=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.995726+00 2025-12-09 10:15:05.995731+00 9961 0003-461#WJC22 SPMX-20240815305129 \N \N \N 1 \N [{"file_id": "bb2c1c59-97be-4613-83a7-b676b51eefd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b96e5bf04ec24268b4b7425d4de09df4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b96e5bf04ec24268b4b7425d4de09df4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b96e5bf04ec24268b4b7425d4de09df4.jpg", "file_size": 25874, "is_delete": false, "file_type": 1, "original_file_name": "0003-461#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96e5bf04ec24268b4b7425d4de09df4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96e5bf04ec24268b4b7425d4de09df4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96e5bf04ec24268b4b7425d4de09df4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b96e5bf04ec24268b4b7425d4de09df4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b96e5bf04ec24268b4b7425d4de09df4.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWSKEENYBSnF3IhK-XifRJrqPPk=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.997634+00 2025-12-09 10:15:05.997639+00 9962 C349#白底K239#绿花-放大0.3版本 SPMX-20240815305138 \N \N \N 1 \N [{"file_id": "041f2ed1-88a9-403d-8ac9-7543c63bc546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec676bffd58942bea5f7e57fb39c821f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec676bffd58942bea5f7e57fb39c821f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec676bffd58942bea5f7e57fb39c821f.jpg", "file_size": 65486, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底K239#绿花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec676bffd58942bea5f7e57fb39c821f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec676bffd58942bea5f7e57fb39c821f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec676bffd58942bea5f7e57fb39c821f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec676bffd58942bea5f7e57fb39c821f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec676bffd58942bea5f7e57fb39c821f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tu3kL1EeUd76-55SFRaC3nuNvOo=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:05.999276+00 2025-12-09 10:15:05.99928+00 9963 HT020FW#VS-D3 SPMX-20240815305133 \N \N \N 1 \N [{"file_id": "ab9fce91-7c0c-4889-b030-c3b13f1e5c05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b709eece6ca4a7da155d26e7baad2f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b709eece6ca4a7da155d26e7baad2f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b709eece6ca4a7da155d26e7baad2f7.jpg", "file_size": 14561, "is_delete": false, "file_type": 1, "original_file_name": "HT020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b709eece6ca4a7da155d26e7baad2f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b709eece6ca4a7da155d26e7baad2f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b709eece6ca4a7da155d26e7baad2f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b709eece6ca4a7da155d26e7baad2f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b709eece6ca4a7da155d26e7baad2f7.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MEw0oMeKxrgEnillok9HiJILgLY=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.000916+00 2025-12-09 10:15:06.00092+00 9964 JTSS159FW#VS-D3 SPMX-20240815305136 \N \N \N 1 \N [{"file_id": "528c4b5a-5705-4e70-8980-21a2ed9a4de6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d637bac4c04564a7fa6171b709516f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d637bac4c04564a7fa6171b709516f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d637bac4c04564a7fa6171b709516f.jpg", "file_size": 18485, "is_delete": false, "file_type": 1, "original_file_name": "JTSS159FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d637bac4c04564a7fa6171b709516f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d637bac4c04564a7fa6171b709516f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d637bac4c04564a7fa6171b709516f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d637bac4c04564a7fa6171b709516f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d637bac4c04564a7fa6171b709516f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:isiOb2NidCYgG6JVSqdw5TGC4i0=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.002543+00 2025-12-09 10:15:06.002547+00 9965 DL30469#蓝绿袖子 SPMX-20240815305134 \N \N \N 1 \N [{"file_id": "45ca9eb1-4546-4145-8fdf-cc657f72dad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b91a82a36bec42bcb8e7bb62d17d7b16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b91a82a36bec42bcb8e7bb62d17d7b16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b91a82a36bec42bcb8e7bb62d17d7b16.jpg", "file_size": 12447, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#蓝绿袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a82a36bec42bcb8e7bb62d17d7b16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a82a36bec42bcb8e7bb62d17d7b16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b91a82a36bec42bcb8e7bb62d17d7b16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b91a82a36bec42bcb8e7bb62d17d7b16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b91a82a36bec42bcb8e7bb62d17d7b16.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Hx_oA9ynS44XHvLMu_GeUKxGLs=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.00435+00 2025-12-09 10:15:06.004354+00 9966 8096#杏色上身 SPMX-20240815305127 \N \N \N 1 \N [{"file_id": "b14387b1-1991-48c0-a5ce-11ef134f97a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a47f13e369414616af997322d30aa5ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a47f13e369414616af997322d30aa5ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a47f13e369414616af997322d30aa5ee.jpg", "file_size": 18668, "is_delete": false, "file_type": 1, "original_file_name": "8096#杏色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47f13e369414616af997322d30aa5ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47f13e369414616af997322d30aa5ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a47f13e369414616af997322d30aa5ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a47f13e369414616af997322d30aa5ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a47f13e369414616af997322d30aa5ee.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HY_h6yPteTjz2lrDhaUjGG79ioc=", "createTime": "2024-08-15 14:49:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.006141+00 2025-12-09 10:15:06.006147+00 9967 FHXGPK-批布013-5 SPMX-20240815305132 \N \N \N 1 \N [{"file_id": "7eb45972-cba9-40f9-91f9-bfecb29120bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "702f1c43c0164eb58e531d5ea1772c87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "702f1c43c0164eb58e531d5ea1772c87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "702f1c43c0164eb58e531d5ea1772c87.jpg", "file_size": 50422, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布013-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702f1c43c0164eb58e531d5ea1772c87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702f1c43c0164eb58e531d5ea1772c87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/702f1c43c0164eb58e531d5ea1772c87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/702f1c43c0164eb58e531d5ea1772c87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/702f1c43c0164eb58e531d5ea1772c87.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAXzIUg-RsYcCBwWL9zVrbOFKZk=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.007912+00 2025-12-09 10:15:06.007917+00 9968 LJ9920#S灰 SPMX-20240815305146 \N \N \N 1 \N [{"file_id": "ad9696f0-7b44-41e3-90ca-8c4b36f4f7aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05b2d354d8044384b3d237d2b0ffb10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05b2d354d8044384b3d237d2b0ffb10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05b2d354d8044384b3d237d2b0ffb10a.jpg", "file_size": 14314, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#S灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b2d354d8044384b3d237d2b0ffb10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b2d354d8044384b3d237d2b0ffb10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b2d354d8044384b3d237d2b0ffb10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05b2d354d8044384b3d237d2b0ffb10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05b2d354d8044384b3d237d2b0ffb10a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECCK-40OBV0Rk-0ZOOHUASDxyFI=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.009576+00 2025-12-09 10:15:06.009581+00 9969 DL30469#黄色下摆 SPMX-20240815305144 \N \N \N 1 \N [{"file_id": "669ad24c-4354-4cdc-bd5e-d3760050b471", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg", "file_size": 21165, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#黄色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a1e16d4b1fa4573ab9cc71268b2f1f3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HvJGfus15Y51mZ5jYNZJCjff5oA=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.011433+00 2025-12-09 10:15:06.011437+00 9970 0003-462#WJC22 SPMX-20240815305139 \N \N \N 1 \N [{"file_id": "60f35266-4614-46d9-a4ec-2d0e6ea9c0ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74aca168900b43aeb1bfe73e0571d0ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74aca168900b43aeb1bfe73e0571d0ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74aca168900b43aeb1bfe73e0571d0ea.jpg", "file_size": 25128, "is_delete": false, "file_type": 1, "original_file_name": "0003-462#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74aca168900b43aeb1bfe73e0571d0ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74aca168900b43aeb1bfe73e0571d0ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74aca168900b43aeb1bfe73e0571d0ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74aca168900b43aeb1bfe73e0571d0ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74aca168900b43aeb1bfe73e0571d0ea.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63jNKaW43yEGoxboT4yFUn9UcEw=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.013106+00 2025-12-09 10:15:06.01311+00 9971 23-2116#A1-领子4XL SPMX-20240815305140 \N \N \N 1 \N [{"file_id": "a1e4f261-f710-43c4-af91-2d1d4671ad89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "569c1118f5224987a1bffae4018429e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "569c1118f5224987a1bffae4018429e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "569c1118f5224987a1bffae4018429e6.jpg", "file_size": 13628, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569c1118f5224987a1bffae4018429e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569c1118f5224987a1bffae4018429e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569c1118f5224987a1bffae4018429e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/569c1118f5224987a1bffae4018429e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/569c1118f5224987a1bffae4018429e6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DE0dORo39tD-Acpm18DuNWSD62Q=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.014865+00 2025-12-09 10:15:06.014869+00 9972 HT020FWE#VS-D3 SPMX-20240815305147 \N \N \N 1 \N [{"file_id": "987bfe25-7780-4b82-abf4-0c5c05ea1b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "313695e26af24e78a84fab63a3b169a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "313695e26af24e78a84fab63a3b169a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "313695e26af24e78a84fab63a3b169a2.jpg", "file_size": 15665, "is_delete": false, "file_type": 1, "original_file_name": "HT020FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313695e26af24e78a84fab63a3b169a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313695e26af24e78a84fab63a3b169a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313695e26af24e78a84fab63a3b169a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/313695e26af24e78a84fab63a3b169a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/313695e26af24e78a84fab63a3b169a2.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S78yCUPRHnu9jyfiWvG7vHd7RDQ=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.016586+00 2025-12-09 10:15:06.016591+00 9973 LZ1264#背心款5号色 SPMX-20240815305143 \N \N \N 1 \N [{"file_id": "4cd90754-082b-4531-ae7f-b6846572d9bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a478aa4f14b4f5ea1ce86daa11afeb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a478aa4f14b4f5ea1ce86daa11afeb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a478aa4f14b4f5ea1ce86daa11afeb4.jpg", "file_size": 19538, "is_delete": false, "file_type": 1, "original_file_name": "LZ1264#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a478aa4f14b4f5ea1ce86daa11afeb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a478aa4f14b4f5ea1ce86daa11afeb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a478aa4f14b4f5ea1ce86daa11afeb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a478aa4f14b4f5ea1ce86daa11afeb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a478aa4f14b4f5ea1ce86daa11afeb4.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BzoV0jgLM7wuu2TRqIjG31rn55I=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.018497+00 2025-12-09 10:15:06.018502+00 9974 8096#湖绿上身 SPMX-20240815305145 \N \N \N 1 \N [{"file_id": "31fec8b9-51fd-469d-8f2c-0fa96b671960", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beb7d80b31d94e4eb89840c004b799c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beb7d80b31d94e4eb89840c004b799c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beb7d80b31d94e4eb89840c004b799c3.jpg", "file_size": 18435, "is_delete": false, "file_type": 1, "original_file_name": "8096#湖绿上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb7d80b31d94e4eb89840c004b799c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb7d80b31d94e4eb89840c004b799c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb7d80b31d94e4eb89840c004b799c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beb7d80b31d94e4eb89840c004b799c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beb7d80b31d94e4eb89840c004b799c3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RglJqfTP3GKd_Gv2X63OS06TG-Q=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.020443+00 2025-12-09 10:15:06.020448+00 9975 JTSS160FW#VS-D3 SPMX-20240815305149 \N \N \N 1 \N [{"file_id": "a987e082-63b9-4a35-923f-5162952f01c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82133104cfc14ca092d6d0cd675adda6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82133104cfc14ca092d6d0cd675adda6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82133104cfc14ca092d6d0cd675adda6.jpg", "file_size": 20160, "is_delete": false, "file_type": 1, "original_file_name": "JTSS160FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82133104cfc14ca092d6d0cd675adda6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82133104cfc14ca092d6d0cd675adda6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82133104cfc14ca092d6d0cd675adda6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82133104cfc14ca092d6d0cd675adda6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82133104cfc14ca092d6d0cd675adda6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKXxkFnzbecjaiyacczPkLavrx0=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.022152+00 2025-12-09 10:15:06.022156+00 9976 0003-463#WJC22 SPMX-20240815305155 \N \N \N 1 \N [{"file_id": "ef794492-d10c-4917-a9cc-22652211685e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a51b0050584a0cb974b4dde5f82a00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a51b0050584a0cb974b4dde5f82a00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a51b0050584a0cb974b4dde5f82a00.jpg", "file_size": 22317, "is_delete": false, "file_type": 1, "original_file_name": "0003-463#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a51b0050584a0cb974b4dde5f82a00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a51b0050584a0cb974b4dde5f82a00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a51b0050584a0cb974b4dde5f82a00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a51b0050584a0cb974b4dde5f82a00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a51b0050584a0cb974b4dde5f82a00.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h2e_pEyZPQ_PYHbmMMg7L3vsDqs=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.023866+00 2025-12-09 10:15:06.023872+00 9977 1083#白色 SPMX-20240815305141 \N \N \N 1 \N [{"file_id": "5eb913c1-a289-4ce8-b454-9890ce3fdf24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51bf9154bdb7439b9b533ce4329223ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51bf9154bdb7439b9b533ce4329223ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51bf9154bdb7439b9b533ce4329223ed.jpg", "file_size": 14114, "is_delete": false, "file_type": 1, "original_file_name": "1083#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bf9154bdb7439b9b533ce4329223ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bf9154bdb7439b9b533ce4329223ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bf9154bdb7439b9b533ce4329223ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51bf9154bdb7439b9b533ce4329223ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51bf9154bdb7439b9b533ce4329223ed.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U0QZLMmPE7gSwMCxlMcQYhb2GjQ=", "createTime": "2024-08-15 14:49:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.02553+00 2025-12-09 10:15:06.025535+00 9978 FHXGPK-批布014-1 SPMX-20240815305142 \N \N \N 1 \N [{"file_id": "bfa6c100-eac9-4940-a4db-8af89f7ce380", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cba0b602ea54dab85f25a216e53dec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cba0b602ea54dab85f25a216e53dec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cba0b602ea54dab85f25a216e53dec9.jpg", "file_size": 48174, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布014-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba0b602ea54dab85f25a216e53dec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba0b602ea54dab85f25a216e53dec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cba0b602ea54dab85f25a216e53dec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cba0b602ea54dab85f25a216e53dec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cba0b602ea54dab85f25a216e53dec9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ha5Vj0d-NUZabp0wY0utrJWyLKo=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.027232+00 2025-12-09 10:15:06.027237+00 9979 C349#白底浅绿-放大0.3版本 SPMX-20240815305148 \N \N \N 1 \N [{"file_id": "48692de6-04c9-4bc8-99c8-c43cc669fa64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7561a63ee74a4852ac3cdda55448d765.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7561a63ee74a4852ac3cdda55448d765.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7561a63ee74a4852ac3cdda55448d765.jpg", "file_size": 19118, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底浅绿-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7561a63ee74a4852ac3cdda55448d765.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7561a63ee74a4852ac3cdda55448d765.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7561a63ee74a4852ac3cdda55448d765.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7561a63ee74a4852ac3cdda55448d765.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7561a63ee74a4852ac3cdda55448d765.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o4aHjj9RNVlrX_8bUGxT90EQEeQ=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.028907+00 2025-12-09 10:15:06.028912+00 9980 23-2116#A10-3XL SPMX-20240815305152 \N \N \N 1 \N [{"file_id": "65a852b7-9250-40c3-bd70-dc8db65e7ea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1e4b63301fd4fa58401f838dbd5b25a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1e4b63301fd4fa58401f838dbd5b25a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1e4b63301fd4fa58401f838dbd5b25a.jpg", "file_size": 19330, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e4b63301fd4fa58401f838dbd5b25a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e4b63301fd4fa58401f838dbd5b25a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e4b63301fd4fa58401f838dbd5b25a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1e4b63301fd4fa58401f838dbd5b25a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1e4b63301fd4fa58401f838dbd5b25a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lzTfzuq_M17YY05F3MI4a6H07bk=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.030598+00 2025-12-09 10:15:06.030603+00 9981 FHXGPK-批布014-2 SPMX-20240815305150 \N \N \N 1 \N [{"file_id": "c002b44b-1fa7-4c6b-9e2a-4e45ec9c5084", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc3fadc00fcb4f3f8839dd92a3786951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc3fadc00fcb4f3f8839dd92a3786951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc3fadc00fcb4f3f8839dd92a3786951.jpg", "file_size": 58968, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布014-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3fadc00fcb4f3f8839dd92a3786951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3fadc00fcb4f3f8839dd92a3786951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3fadc00fcb4f3f8839dd92a3786951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc3fadc00fcb4f3f8839dd92a3786951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc3fadc00fcb4f3f8839dd92a3786951.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X0vDnQFheYkREhNzJ3cE_TB-MoY=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.032545+00 2025-12-09 10:15:06.03255+00 9982 LZ1265#背心款1号色 SPMX-20240815305154 \N \N \N 1 \N [{"file_id": "319ef3ae-8f4c-492b-bb83-4c73a2b21f98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84056b127c0146d1b73da15ea75aaad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84056b127c0146d1b73da15ea75aaad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84056b127c0146d1b73da15ea75aaad8.jpg", "file_size": 20619, "is_delete": false, "file_type": 1, "original_file_name": "LZ1265#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84056b127c0146d1b73da15ea75aaad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84056b127c0146d1b73da15ea75aaad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84056b127c0146d1b73da15ea75aaad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84056b127c0146d1b73da15ea75aaad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84056b127c0146d1b73da15ea75aaad8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bX2imhnvabZTK09Rpe9oTksHSBs=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.034234+00 2025-12-09 10:15:06.034238+00 9983 1083#粉色 SPMX-20240815305151 \N \N \N 1 \N [{"file_id": "bb73e1b2-a5d5-4667-b64d-e9ccc1e36d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ca22bf1c89740c0b87aa4b9a4229c16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ca22bf1c89740c0b87aa4b9a4229c16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ca22bf1c89740c0b87aa4b9a4229c16.jpg", "file_size": 13103, "is_delete": false, "file_type": 1, "original_file_name": "1083#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca22bf1c89740c0b87aa4b9a4229c16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca22bf1c89740c0b87aa4b9a4229c16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca22bf1c89740c0b87aa4b9a4229c16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ca22bf1c89740c0b87aa4b9a4229c16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ca22bf1c89740c0b87aa4b9a4229c16.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7acnC04XH_d0v2yTcJDB57PHYU=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.035896+00 2025-12-09 10:15:06.0359+00 9984 DL30469#黄色前后幅2XL SPMX-20240815305153 \N \N \N 1 \N [{"file_id": "1115f9d6-928a-435c-9328-7e900741e4e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg", "file_size": 20439, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#黄色前后幅2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cab9e40b19b4ce4bfdea2c7dc17b41a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_RsGX38oC5zQoA64YcCeYCNNeKw=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.037779+00 2025-12-09 10:15:06.037784+00 9985 LJ9920#S红 SPMX-20240815305158 \N \N \N 1 \N [{"file_id": "72711305-1eb3-4d0f-9a2e-3c597543d78a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19aa9e5a4c0a4f47b8326a9333d86ec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19aa9e5a4c0a4f47b8326a9333d86ec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19aa9e5a4c0a4f47b8326a9333d86ec5.jpg", "file_size": 15724, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#S红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19aa9e5a4c0a4f47b8326a9333d86ec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19aa9e5a4c0a4f47b8326a9333d86ec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19aa9e5a4c0a4f47b8326a9333d86ec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19aa9e5a4c0a4f47b8326a9333d86ec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19aa9e5a4c0a4f47b8326a9333d86ec5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0oZBq3Is4N5N58nJUQj-l1C-NS8=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.039811+00 2025-12-09 10:15:06.039816+00 9986 1083#红色 SPMX-20240815305162 \N \N \N 1 \N [{"file_id": "281d8e83-69cf-4e17-b155-49884ccdef3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac73709c6f744614a54629ae5bd96b57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac73709c6f744614a54629ae5bd96b57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac73709c6f744614a54629ae5bd96b57.jpg", "file_size": 13861, "is_delete": false, "file_type": 1, "original_file_name": "1083#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac73709c6f744614a54629ae5bd96b57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac73709c6f744614a54629ae5bd96b57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac73709c6f744614a54629ae5bd96b57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac73709c6f744614a54629ae5bd96b57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac73709c6f744614a54629ae5bd96b57.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iuox_nJa8MH4i9Yt2DsXoD-2iV0=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.041645+00 2025-12-09 10:15:06.04165+00 9987 8096#短款下摆 SPMX-20240815305169 \N \N \N 1 \N [{"file_id": "525d340c-e1b7-4324-8bb7-02d693ce3bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "736755d438f141e5af49f6ccd319a88d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "736755d438f141e5af49f6ccd319a88d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "736755d438f141e5af49f6ccd319a88d.jpg", "file_size": 22257, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736755d438f141e5af49f6ccd319a88d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736755d438f141e5af49f6ccd319a88d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736755d438f141e5af49f6ccd319a88d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/736755d438f141e5af49f6ccd319a88d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/736755d438f141e5af49f6ccd319a88d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qyFWBYAqn3spmItBNFR7gztND4g=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.04331+00 2025-12-09 10:15:06.043315+00 9988 JTSS162FW#VS-D3 SPMX-20240815305168 \N \N \N 1 \N [{"file_id": "9cf06062-4736-4ab3-8f9f-ed18186e8103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c26cb20f247436b962f1c64dde6eb81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c26cb20f247436b962f1c64dde6eb81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c26cb20f247436b962f1c64dde6eb81.jpg", "file_size": 7351, "is_delete": false, "file_type": 1, "original_file_name": "JTSS162FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26cb20f247436b962f1c64dde6eb81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26cb20f247436b962f1c64dde6eb81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26cb20f247436b962f1c64dde6eb81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c26cb20f247436b962f1c64dde6eb81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c26cb20f247436b962f1c64dde6eb81.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzUCmYCfbdGjMShS8WWgPnEwwmg=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.045019+00 2025-12-09 10:15:06.045025+00 9989 HT021FW#绿VS-D3 SPMX-20240815305157 \N \N \N 1 \N [{"file_id": "69a5d0dc-5091-4776-a800-27e5748bd613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ecf97e67e964b50af34a43113159e89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ecf97e67e964b50af34a43113159e89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ecf97e67e964b50af34a43113159e89.jpg", "file_size": 7661, "is_delete": false, "file_type": 1, "original_file_name": "HT021FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecf97e67e964b50af34a43113159e89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecf97e67e964b50af34a43113159e89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecf97e67e964b50af34a43113159e89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ecf97e67e964b50af34a43113159e89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ecf97e67e964b50af34a43113159e89.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCiKzUTKPOQ-B4YKGwokX5PDdxk=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.046678+00 2025-12-09 10:15:06.046682+00 9990 JTSS161FW#VS-D3 SPMX-20240815305159 \N \N \N 1 \N [{"file_id": "15410c34-2c25-41be-ad0b-9f9899ad607d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3b51da00f13482eb1e149049cbd7737.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3b51da00f13482eb1e149049cbd7737.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3b51da00f13482eb1e149049cbd7737.jpg", "file_size": 7901, "is_delete": false, "file_type": 1, "original_file_name": "JTSS161FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b51da00f13482eb1e149049cbd7737.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b51da00f13482eb1e149049cbd7737.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b51da00f13482eb1e149049cbd7737.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3b51da00f13482eb1e149049cbd7737.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3b51da00f13482eb1e149049cbd7737.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9D4BTXRIP3YqwZxx0KPcyuspq7Y=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.048362+00 2025-12-09 10:15:06.048366+00 9991 23-2116#A10-4XL SPMX-20240815305164 \N \N \N 1 \N [{"file_id": "9b2c63e6-08e2-49df-af07-6eeee84c28c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4558eac1c804a5b86cfc7ae2b6d9f57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4558eac1c804a5b86cfc7ae2b6d9f57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4558eac1c804a5b86cfc7ae2b6d9f57.jpg", "file_size": 18762, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4558eac1c804a5b86cfc7ae2b6d9f57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4558eac1c804a5b86cfc7ae2b6d9f57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4558eac1c804a5b86cfc7ae2b6d9f57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4558eac1c804a5b86cfc7ae2b6d9f57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4558eac1c804a5b86cfc7ae2b6d9f57.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5a4eb9ZGbyTcObgnwGY0AekXUsg=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.050034+00 2025-12-09 10:15:06.050039+00 9992 C349#白底黑花-放大0.3版本 SPMX-20240815305160 \N \N \N 1 \N [{"file_id": "fc6b6ac5-ad3b-40e8-93c8-203ee8387907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651ee02a40df40bd97c8e00466a8d2f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651ee02a40df40bd97c8e00466a8d2f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651ee02a40df40bd97c8e00466a8d2f7.jpg", "file_size": 65870, "is_delete": false, "file_type": 1, "original_file_name": "C349#白底黑花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ee02a40df40bd97c8e00466a8d2f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ee02a40df40bd97c8e00466a8d2f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ee02a40df40bd97c8e00466a8d2f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651ee02a40df40bd97c8e00466a8d2f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651ee02a40df40bd97c8e00466a8d2f7.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0WxgyDjN0jsVbV5gyAmr6cbP7k=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.05177+00 2025-12-09 10:15:06.051775+00 9993 DL30469#黄色前后幅L SPMX-20240815305163 \N \N \N 1 \N [{"file_id": "10fd5bbb-659b-492a-be1c-a0bf31b80285", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86c85322fb3e47ca8727ea49e278e32b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86c85322fb3e47ca8727ea49e278e32b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86c85322fb3e47ca8727ea49e278e32b.jpg", "file_size": 19801, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#黄色前后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c85322fb3e47ca8727ea49e278e32b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c85322fb3e47ca8727ea49e278e32b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c85322fb3e47ca8727ea49e278e32b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86c85322fb3e47ca8727ea49e278e32b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86c85322fb3e47ca8727ea49e278e32b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WtV1koXuep9tnAKnHI0svr7FAsA=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.053723+00 2025-12-09 10:15:06.053728+00 9994 LZ1265#背心款2号色 SPMX-20240815305165 \N \N \N 1 \N [{"file_id": "55aa20b0-d448-42fa-b97b-14fc6113a121", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44cecbdda91e40cd87215827eec5ef43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44cecbdda91e40cd87215827eec5ef43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44cecbdda91e40cd87215827eec5ef43.jpg", "file_size": 19747, "is_delete": false, "file_type": 1, "original_file_name": "LZ1265#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44cecbdda91e40cd87215827eec5ef43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44cecbdda91e40cd87215827eec5ef43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44cecbdda91e40cd87215827eec5ef43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44cecbdda91e40cd87215827eec5ef43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44cecbdda91e40cd87215827eec5ef43.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:st4mOuICH92AH2mdkuyuPyjMTNA=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.055709+00 2025-12-09 10:15:06.055714+00 9995 0003-464#WJC22 SPMX-20240815305167 \N \N \N 1 \N [{"file_id": "69becde6-ad10-4f99-817b-e7e339d17fc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb49e5ab23f45daa02809472811dccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb49e5ab23f45daa02809472811dccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb49e5ab23f45daa02809472811dccd.jpg", "file_size": 18816, "is_delete": false, "file_type": 1, "original_file_name": "0003-464#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb49e5ab23f45daa02809472811dccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb49e5ab23f45daa02809472811dccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb49e5ab23f45daa02809472811dccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb49e5ab23f45daa02809472811dccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb49e5ab23f45daa02809472811dccd.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fum1sOR_12npOGtDrpkvOcIOsHU=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.057376+00 2025-12-09 10:15:06.057381+00 9996 HT021FW#黄VS-D3 SPMX-20240815305166 \N \N \N 1 \N [{"file_id": "3fb809cd-983a-4150-8a9d-2e359edbeb45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5182979bc7844e198a845ac6b6b6dff1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5182979bc7844e198a845ac6b6b6dff1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5182979bc7844e198a845ac6b6b6dff1.jpg", "file_size": 7955, "is_delete": false, "file_type": 1, "original_file_name": "HT021FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5182979bc7844e198a845ac6b6b6dff1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5182979bc7844e198a845ac6b6b6dff1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5182979bc7844e198a845ac6b6b6dff1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5182979bc7844e198a845ac6b6b6dff1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5182979bc7844e198a845ac6b6b6dff1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vVS_a3VeA9OE3mMEW8cmcYFgrY=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.059072+00 2025-12-09 10:15:06.059077+00 9997 8096#湖绿短款袖子 SPMX-20240815305156 \N \N \N 1 \N [{"file_id": "3ba201fe-bfae-406f-a812-6fa4c845a5a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd4255e1763a473794e4716cac0770e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd4255e1763a473794e4716cac0770e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd4255e1763a473794e4716cac0770e4.jpg", "file_size": 12841, "is_delete": false, "file_type": 1, "original_file_name": "8096#湖绿短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4255e1763a473794e4716cac0770e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4255e1763a473794e4716cac0770e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4255e1763a473794e4716cac0770e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd4255e1763a473794e4716cac0770e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd4255e1763a473794e4716cac0770e4.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04ljO0hyABqNlmEbply-RvoHo9o=", "createTime": "2024-08-15 14:49:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.060741+00 2025-12-09 10:15:06.060746+00 9998 FHXGPK-批布014-3 SPMX-20240815305161 \N \N \N 1 \N [{"file_id": "7ab50978-b0c0-41db-ad98-29fb09175b4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3af6c576cef4aeba2357db9e7d9520a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3af6c576cef4aeba2357db9e7d9520a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3af6c576cef4aeba2357db9e7d9520a.jpg", "file_size": 42715, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布014-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3af6c576cef4aeba2357db9e7d9520a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3af6c576cef4aeba2357db9e7d9520a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3af6c576cef4aeba2357db9e7d9520a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3af6c576cef4aeba2357db9e7d9520a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3af6c576cef4aeba2357db9e7d9520a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsHVkR_VPgOv2ghf_Q9CxvAtp3E=", "createTime": "2024-08-15 14:49:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.062403+00 2025-12-09 10:15:06.062408+00 9999 8096#短款下摆大红 SPMX-20240815305176 \N \N \N 1 \N [{"file_id": "f1ba851a-c6ac-491f-9e55-85c3623a09c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aad1175e2ec74ad0abb504b98351c8a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aad1175e2ec74ad0abb504b98351c8a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aad1175e2ec74ad0abb504b98351c8a0.jpg", "file_size": 22343, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad1175e2ec74ad0abb504b98351c8a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad1175e2ec74ad0abb504b98351c8a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad1175e2ec74ad0abb504b98351c8a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aad1175e2ec74ad0abb504b98351c8a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aad1175e2ec74ad0abb504b98351c8a0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzRZdUUA4fGe1_67N_ondjVKUCY=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.064074+00 2025-12-09 10:15:06.064079+00 10000 23-2116#A10-领子3XL SPMX-20240815305179 \N \N \N 1 \N [{"file_id": "8013d8ff-2861-4752-acd2-2d354335ae47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "243d94ab67544404805956d8d0087004.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "243d94ab67544404805956d8d0087004.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "243d94ab67544404805956d8d0087004.jpg", "file_size": 13415, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/243d94ab67544404805956d8d0087004.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/243d94ab67544404805956d8d0087004.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/243d94ab67544404805956d8d0087004.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/243d94ab67544404805956d8d0087004.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/243d94ab67544404805956d8d0087004.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehJvJvknbs17rXZHpsChmBA2VW0=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.066053+00 2025-12-09 10:15:06.066059+00 10001 LJ9920#S蓝 SPMX-20240815305173 \N \N \N 1 \N [{"file_id": "458d8455-30b3-499f-8ad2-245050383e24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a25dc7f6fbde44389572819df76331a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a25dc7f6fbde44389572819df76331a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a25dc7f6fbde44389572819df76331a6.jpg", "file_size": 13589, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#S蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25dc7f6fbde44389572819df76331a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25dc7f6fbde44389572819df76331a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25dc7f6fbde44389572819df76331a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a25dc7f6fbde44389572819df76331a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a25dc7f6fbde44389572819df76331a6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNcpS625OO3g-6P-bcJrKWb8zyY=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.068337+00 2025-12-09 10:15:06.068343+00 10002 C349#蓝色-放大0.3版本 SPMX-20240815305170 \N \N \N 1 \N [{"file_id": "2774e954-034e-4b18-8f38-404fd9750879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab06a40a1d2e4edeac31015ec134b9ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab06a40a1d2e4edeac31015ec134b9ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab06a40a1d2e4edeac31015ec134b9ed.jpg", "file_size": 70667, "is_delete": false, "file_type": 1, "original_file_name": "C349#蓝色-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab06a40a1d2e4edeac31015ec134b9ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab06a40a1d2e4edeac31015ec134b9ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab06a40a1d2e4edeac31015ec134b9ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab06a40a1d2e4edeac31015ec134b9ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab06a40a1d2e4edeac31015ec134b9ed.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXwUrkZ7P9uXV-uNqktETA3FISA=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.072457+00 2025-12-09 10:15:06.072462+00 10004 1083#黑色 SPMX-20240815305177 \N \N \N 1 \N [{"file_id": "1e440130-07d1-4b24-83cc-579a841007e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac008e373b9f4d24898c991cec5bf438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac008e373b9f4d24898c991cec5bf438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac008e373b9f4d24898c991cec5bf438.jpg", "file_size": 14227, "is_delete": false, "file_type": 1, "original_file_name": "1083#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac008e373b9f4d24898c991cec5bf438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac008e373b9f4d24898c991cec5bf438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac008e373b9f4d24898c991cec5bf438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac008e373b9f4d24898c991cec5bf438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac008e373b9f4d24898c991cec5bf438.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r62TYJ6hxjhuQoKrIvDaz7YTz5I=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.070518+00 2025-12-09 10:15:06.070523+00 10003 LZ1265#背心款3号色 SPMX-20240815305175 \N \N \N 1 \N [{"file_id": "ef06ac98-2471-4ec4-922a-41ef80884003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4884ba9ef5b143ad94c23b8ab25fef9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4884ba9ef5b143ad94c23b8ab25fef9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4884ba9ef5b143ad94c23b8ab25fef9c.jpg", "file_size": 19303, "is_delete": false, "file_type": 1, "original_file_name": "LZ1265#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4884ba9ef5b143ad94c23b8ab25fef9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4884ba9ef5b143ad94c23b8ab25fef9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4884ba9ef5b143ad94c23b8ab25fef9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4884ba9ef5b143ad94c23b8ab25fef9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4884ba9ef5b143ad94c23b8ab25fef9c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4QTSFXWVs1v5YHCcwQPaFUt-zw=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.076145+00 2025-12-09 10:15:06.07615+00 10005 JTSS163FW#VS-D3 SPMX-20240815305171 \N \N \N 1 \N [{"file_id": "5000025b-4533-4918-9b6b-4d36e9eb6ec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98811750bd7945c29957090869e1e9eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98811750bd7945c29957090869e1e9eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98811750bd7945c29957090869e1e9eb.jpg", "file_size": 11064, "is_delete": false, "file_type": 1, "original_file_name": "JTSS163FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98811750bd7945c29957090869e1e9eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98811750bd7945c29957090869e1e9eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98811750bd7945c29957090869e1e9eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98811750bd7945c29957090869e1e9eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98811750bd7945c29957090869e1e9eb.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NftnRIXiBlip-EMEKVZSNr9lIVU=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.078073+00 2025-12-09 10:15:06.078077+00 10006 DL30469#黄色前后幅XL SPMX-20240815305178 \N \N \N 1 \N [{"file_id": "99b672e3-333c-471d-81ac-9e2775d18d1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ccc7ac3deee46899a5945cbd689447f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ccc7ac3deee46899a5945cbd689447f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ccc7ac3deee46899a5945cbd689447f.jpg", "file_size": 20447, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#黄色前后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ccc7ac3deee46899a5945cbd689447f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ccc7ac3deee46899a5945cbd689447f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ccc7ac3deee46899a5945cbd689447f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ccc7ac3deee46899a5945cbd689447f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ccc7ac3deee46899a5945cbd689447f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EF-3ltGZL1VMfbtyOELY-RcFrFQ=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.079963+00 2025-12-09 10:15:06.079968+00 10007 HT021FWE#枣红VS-D3 SPMX-20240815305172 \N \N \N 1 \N [{"file_id": "f85d24c6-ba38-4a62-a0b7-c8fa65259013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c7b624d54d45a29b3cc1a23d469f8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c7b624d54d45a29b3cc1a23d469f8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c7b624d54d45a29b3cc1a23d469f8b.jpg", "file_size": 12480, "is_delete": false, "file_type": 1, "original_file_name": "HT021FWE#枣红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c7b624d54d45a29b3cc1a23d469f8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c7b624d54d45a29b3cc1a23d469f8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c7b624d54d45a29b3cc1a23d469f8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c7b624d54d45a29b3cc1a23d469f8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c7b624d54d45a29b3cc1a23d469f8b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQLRa9NemrY06E16eE_r7wC--W0=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.081907+00 2025-12-09 10:15:06.081911+00 10008 C349#黑底白花-放大0.3版本 SPMX-20240815305181 \N \N \N 1 \N [{"file_id": "46063dbc-6a81-46ff-9965-23269d2d9c25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9a1575de464d7a81eac53ec3d19628.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9a1575de464d7a81eac53ec3d19628.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9a1575de464d7a81eac53ec3d19628.jpg", "file_size": 62499, "is_delete": false, "file_type": 1, "original_file_name": "C349#黑底白花-放大0.3版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9a1575de464d7a81eac53ec3d19628.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9a1575de464d7a81eac53ec3d19628.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9a1575de464d7a81eac53ec3d19628.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9a1575de464d7a81eac53ec3d19628.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9a1575de464d7a81eac53ec3d19628.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o36D1j_VWOAetutC_BMFWat8AaQ=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.083563+00 2025-12-09 10:15:06.083567+00 10009 0003-465#WJC22 SPMX-20240815305180 \N \N \N 1 \N [{"file_id": "b681051f-b509-4673-8387-d6ae3f5c382a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fb65c2e8fa4483c80eb45a4f18b89c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fb65c2e8fa4483c80eb45a4f18b89c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fb65c2e8fa4483c80eb45a4f18b89c6.jpg", "file_size": 13036, "is_delete": false, "file_type": 1, "original_file_name": "0003-465#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb65c2e8fa4483c80eb45a4f18b89c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb65c2e8fa4483c80eb45a4f18b89c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb65c2e8fa4483c80eb45a4f18b89c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fb65c2e8fa4483c80eb45a4f18b89c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fb65c2e8fa4483c80eb45a4f18b89c6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tocxpYKCsaImIDMkvJU4gw7cC9g=", "createTime": "2024-08-15 14:49:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.085256+00 2025-12-09 10:15:06.08526+00 10010 DL30469#黄色袖子 SPMX-20240815305189 \N \N \N 1 \N [{"file_id": "3fd7b451-45f9-4873-831e-6178cf05ef0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b65d786f5204791953564ebac59fe35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b65d786f5204791953564ebac59fe35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b65d786f5204791953564ebac59fe35.jpg", "file_size": 12613, "is_delete": false, "file_type": 1, "original_file_name": "DL30469#黄色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b65d786f5204791953564ebac59fe35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b65d786f5204791953564ebac59fe35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b65d786f5204791953564ebac59fe35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b65d786f5204791953564ebac59fe35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b65d786f5204791953564ebac59fe35.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p22ApNwoZ--AGYpCysvbVvTvpJM=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.087279+00 2025-12-09 10:15:06.087284+00 10011 LZ1265#背心款4号色 SPMX-20240815305183 \N \N \N 1 \N [{"file_id": "6a87472e-de51-4055-979e-8398262fd9ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cfe8535d08a4a3bb478be605db530af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cfe8535d08a4a3bb478be605db530af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cfe8535d08a4a3bb478be605db530af.jpg", "file_size": 19591, "is_delete": false, "file_type": 1, "original_file_name": "LZ1265#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfe8535d08a4a3bb478be605db530af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfe8535d08a4a3bb478be605db530af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfe8535d08a4a3bb478be605db530af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cfe8535d08a4a3bb478be605db530af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cfe8535d08a4a3bb478be605db530af.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W28op83H0BX8GJI7hBkY5aC5mws=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.089269+00 2025-12-09 10:15:06.089274+00 10012 JTSS164FW#VS-D3 SPMX-20240815305182 \N \N \N 1 \N [{"file_id": "775d1c06-8176-4e1f-b22b-243188766463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7e264d71f3947a189dce208bbddae21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7e264d71f3947a189dce208bbddae21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7e264d71f3947a189dce208bbddae21.jpg", "file_size": 13219, "is_delete": false, "file_type": 1, "original_file_name": "JTSS164FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e264d71f3947a189dce208bbddae21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e264d71f3947a189dce208bbddae21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e264d71f3947a189dce208bbddae21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7e264d71f3947a189dce208bbddae21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7e264d71f3947a189dce208bbddae21.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1kpJtmlY9BTzA7ljTKCS_ByMcEQ=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.09118+00 2025-12-09 10:15:06.091185+00 10013 C352#-原版色#LWQ15 SPMX-20240815305191 \N \N \N 1 \N [{"file_id": "d01b98c2-7685-4b74-98ad-947716b1f7e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a831326848d4825a98a0dc96c21dc82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a831326848d4825a98a0dc96c21dc82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a831326848d4825a98a0dc96c21dc82.jpg", "file_size": 16603, "is_delete": false, "file_type": 1, "original_file_name": "C352#-原版色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a831326848d4825a98a0dc96c21dc82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a831326848d4825a98a0dc96c21dc82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a831326848d4825a98a0dc96c21dc82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a831326848d4825a98a0dc96c21dc82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a831326848d4825a98a0dc96c21dc82.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-u-82wsfwapCjMUqfm69JJ2RW8=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.093089+00 2025-12-09 10:15:06.093094+00 10014 FHXGPK-批布014-5 SPMX-20240815305186 \N \N \N 1 \N [{"file_id": "cc732d08-7d2b-465a-a2b5-7dfdce9ca3ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd80a699da9a4d45ae6e07198c0ef8ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd80a699da9a4d45ae6e07198c0ef8ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd80a699da9a4d45ae6e07198c0ef8ae.jpg", "file_size": 54750, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布014-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd80a699da9a4d45ae6e07198c0ef8ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd80a699da9a4d45ae6e07198c0ef8ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd80a699da9a4d45ae6e07198c0ef8ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd80a699da9a4d45ae6e07198c0ef8ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd80a699da9a4d45ae6e07198c0ef8ae.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aF9cAdAKU3ygAjoE7jWRHC9vx8c=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.094987+00 2025-12-09 10:15:06.094992+00 10015 23-2116#A10-领子4XL SPMX-20240815305190 \N \N \N 1 \N [{"file_id": "36a09b08-4b4b-4a68-b856-495f7fedd91a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2344f4677a4e39a60d0bae40b5c60f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2344f4677a4e39a60d0bae40b5c60f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2344f4677a4e39a60d0bae40b5c60f.jpg", "file_size": 14369, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2344f4677a4e39a60d0bae40b5c60f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2344f4677a4e39a60d0bae40b5c60f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2344f4677a4e39a60d0bae40b5c60f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2344f4677a4e39a60d0bae40b5c60f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2344f4677a4e39a60d0bae40b5c60f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pduRkyOABMd5BzsGYUDu6mLwy6w=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.096677+00 2025-12-09 10:15:06.096682+00 10016 LJ9920#XL咖啡 SPMX-20240815305185 \N \N \N 1 \N [{"file_id": "bb6dc85c-c69e-4b03-9f63-032c1ca94591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b86d9e2505534007b5366dc398002cfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b86d9e2505534007b5366dc398002cfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b86d9e2505534007b5366dc398002cfe.jpg", "file_size": 15042, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#XL咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86d9e2505534007b5366dc398002cfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86d9e2505534007b5366dc398002cfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86d9e2505534007b5366dc398002cfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b86d9e2505534007b5366dc398002cfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b86d9e2505534007b5366dc398002cfe.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OH18_CJ2o5QTWSyO9RPFCzaEXlI=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.098356+00 2025-12-09 10:15:06.098361+00 10017 1085#LWQ15 SPMX-20240815305187 \N \N \N 1 \N [{"file_id": "1361fbe3-5109-4f84-8c4c-7bd0a72d84c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "497612bf204f4fafa936f2df70c2dc90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "497612bf204f4fafa936f2df70c2dc90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "497612bf204f4fafa936f2df70c2dc90.jpg", "file_size": 12289, "is_delete": false, "file_type": 1, "original_file_name": "1085#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497612bf204f4fafa936f2df70c2dc90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497612bf204f4fafa936f2df70c2dc90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497612bf204f4fafa936f2df70c2dc90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/497612bf204f4fafa936f2df70c2dc90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/497612bf204f4fafa936f2df70c2dc90.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4NYq4-pQ93MfOTXWxg64buXHWo=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.100017+00 2025-12-09 10:15:06.100022+00 10018 HT021FWE#白VS-D3 SPMX-20240815305184 \N \N \N 1 \N [{"file_id": "7014c042-772a-4a82-9498-5d9decbb512c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg", "file_size": 12346, "is_delete": false, "file_type": 1, "original_file_name": "HT021FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fe906cb5f5e4c1bb11fdbc03fc250b6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nG8nQ3Ud-h_y3Vem-oTeX4zMUXU=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.101674+00 2025-12-09 10:15:06.101679+00 10019 8096#短款下摆宝蓝 SPMX-20240815305188 \N \N \N 1 \N [{"file_id": "610c228b-172a-4236-8ccf-cfffbd0a7a0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba6d99b22e904983a4f04ee1b4999db8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba6d99b22e904983a4f04ee1b4999db8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba6d99b22e904983a4f04ee1b4999db8.jpg", "file_size": 22869, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6d99b22e904983a4f04ee1b4999db8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6d99b22e904983a4f04ee1b4999db8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6d99b22e904983a4f04ee1b4999db8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba6d99b22e904983a4f04ee1b4999db8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba6d99b22e904983a4f04ee1b4999db8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRxLXxgo4IFWUhN7jnt_9nOhaD8=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.103373+00 2025-12-09 10:15:06.103378+00 10020 JTSS165FW#VS-D3 SPMX-20240815305193 \N \N \N 1 \N [{"file_id": "144a11a4-e567-4198-9b37-2ee4253c410d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64c9fd44d1b44419be46fd950afc7115.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64c9fd44d1b44419be46fd950afc7115.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64c9fd44d1b44419be46fd950afc7115.jpg", "file_size": 11796, "is_delete": false, "file_type": 1, "original_file_name": "JTSS165FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c9fd44d1b44419be46fd950afc7115.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c9fd44d1b44419be46fd950afc7115.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c9fd44d1b44419be46fd950afc7115.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64c9fd44d1b44419be46fd950afc7115.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64c9fd44d1b44419be46fd950afc7115.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hh6_X7TrJXz-Zo8iYuj4_GWjepQ=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.105289+00 2025-12-09 10:15:06.105294+00 10021 0003-467#WJC22 SPMX-20240815305199 \N \N \N 1 \N [{"file_id": "6e0944fe-227b-4c87-b293-73314496f033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e5312c4c03417cbe6d3914184d3674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e5312c4c03417cbe6d3914184d3674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e5312c4c03417cbe6d3914184d3674.jpg", "file_size": 14768, "is_delete": false, "file_type": 1, "original_file_name": "0003-467#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e5312c4c03417cbe6d3914184d3674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e5312c4c03417cbe6d3914184d3674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e5312c4c03417cbe6d3914184d3674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e5312c4c03417cbe6d3914184d3674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e5312c4c03417cbe6d3914184d3674.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TNMRnpB2lJbB8ifPkh8HD83-X9k=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.10719+00 2025-12-09 10:15:06.107195+00 10022 LJ9920#XL灰 SPMX-20240815305196 \N \N \N 1 \N [{"file_id": "ffaff382-fb67-43e1-a10c-279432b10658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceed3451e1c54d09b242cb601170ed53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceed3451e1c54d09b242cb601170ed53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceed3451e1c54d09b242cb601170ed53.jpg", "file_size": 13139, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#XL灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceed3451e1c54d09b242cb601170ed53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceed3451e1c54d09b242cb601170ed53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceed3451e1c54d09b242cb601170ed53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceed3451e1c54d09b242cb601170ed53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceed3451e1c54d09b242cb601170ed53.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNZTYegoeBS0yn5goaSk7-3ekq8=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.109117+00 2025-12-09 10:15:06.109122+00 10023 1087#WJC22 SPMX-20240815305200 \N \N \N 1 \N [{"file_id": "740c988c-d30b-4151-b601-87120ce2c106", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1981bbf5435c423bbf93db1622ec0ffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1981bbf5435c423bbf93db1622ec0ffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1981bbf5435c423bbf93db1622ec0ffd.jpg", "file_size": 22988, "is_delete": false, "file_type": 1, "original_file_name": "1087#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1981bbf5435c423bbf93db1622ec0ffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1981bbf5435c423bbf93db1622ec0ffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1981bbf5435c423bbf93db1622ec0ffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1981bbf5435c423bbf93db1622ec0ffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1981bbf5435c423bbf93db1622ec0ffd.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJsFflvzdvV2JQL94WQPHJInbgk=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.1108+00 2025-12-09 10:15:06.110805+00 10024 LZ1265#背心款5号色 SPMX-20240815305195 \N \N \N 1 \N [{"file_id": "280a90a0-3dd4-483d-bb08-333928045974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff04779b32a941ad95373e6fe375ede5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff04779b32a941ad95373e6fe375ede5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff04779b32a941ad95373e6fe375ede5.jpg", "file_size": 20721, "is_delete": false, "file_type": 1, "original_file_name": "LZ1265#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff04779b32a941ad95373e6fe375ede5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff04779b32a941ad95373e6fe375ede5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff04779b32a941ad95373e6fe375ede5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff04779b32a941ad95373e6fe375ede5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff04779b32a941ad95373e6fe375ede5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0GFx1Y0cO5yQyT4ZNMagYJG2zc=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.112482+00 2025-12-09 10:15:06.112486+00 10025 0003-466#WJC22 SPMX-20240815305192 \N \N \N 1 \N [{"file_id": "16849df4-e6ea-4b41-9628-09ebf2dfd61d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1a1a93258354b78b07f78943967bc9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1a1a93258354b78b07f78943967bc9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1a1a93258354b78b07f78943967bc9f.jpg", "file_size": 14463, "is_delete": false, "file_type": 1, "original_file_name": "0003-466#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a1a93258354b78b07f78943967bc9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a1a93258354b78b07f78943967bc9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a1a93258354b78b07f78943967bc9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1a1a93258354b78b07f78943967bc9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1a1a93258354b78b07f78943967bc9f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYAJ95DTCUfid59PlZ60mDl4OSs=", "createTime": "2024-08-15 14:49:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.114142+00 2025-12-09 10:15:06.114146+00 10026 HT021FWE#粉VS-D3 SPMX-20240815305194 \N \N \N 1 \N [{"file_id": "60b54fe9-7fd4-44d3-b60e-28564d1201e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f96ed75ec604e77ba0a9a6e6cf79f01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f96ed75ec604e77ba0a9a6e6cf79f01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f96ed75ec604e77ba0a9a6e6cf79f01.jpg", "file_size": 11801, "is_delete": false, "file_type": 1, "original_file_name": "HT021FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f96ed75ec604e77ba0a9a6e6cf79f01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f96ed75ec604e77ba0a9a6e6cf79f01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f96ed75ec604e77ba0a9a6e6cf79f01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f96ed75ec604e77ba0a9a6e6cf79f01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f96ed75ec604e77ba0a9a6e6cf79f01.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kkdMHuCDizkpOeE66Zkp4L49L-0=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.115811+00 2025-12-09 10:15:06.115816+00 10027 FHXGPK-批布015-1 SPMX-20240815305197 \N \N \N 1 \N [{"file_id": "daf457e1-387c-4239-803e-5e9849624f7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93852d8ec555475091e9a90215225605.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93852d8ec555475091e9a90215225605.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93852d8ec555475091e9a90215225605.jpg", "file_size": 26438, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布015-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93852d8ec555475091e9a90215225605.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93852d8ec555475091e9a90215225605.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93852d8ec555475091e9a90215225605.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93852d8ec555475091e9a90215225605.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93852d8ec555475091e9a90215225605.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APa1clfFA53j5kFAYkETlzQssFI=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.117473+00 2025-12-09 10:15:06.117477+00 10028 8096#短款下摆杏色 SPMX-20240815305201 \N \N \N 1 \N [{"file_id": "f30eb8b7-97b1-42e9-b6c3-86f30d5eca37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acfbf001a79848dfb178ae4386e9028c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acfbf001a79848dfb178ae4386e9028c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acfbf001a79848dfb178ae4386e9028c.jpg", "file_size": 22257, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfbf001a79848dfb178ae4386e9028c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfbf001a79848dfb178ae4386e9028c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfbf001a79848dfb178ae4386e9028c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acfbf001a79848dfb178ae4386e9028c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acfbf001a79848dfb178ae4386e9028c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D_JuFBvJppa0qN1M1isOk7ctJfw=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.119383+00 2025-12-09 10:15:06.119388+00 10029 C352#-墨绿#LWQ15 SPMX-20240815305198 \N \N \N 1 \N [{"file_id": "14db7e1e-613a-4d24-ac76-9887ecb8da70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1515407d762b4dca920fb51c0428fddb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1515407d762b4dca920fb51c0428fddb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1515407d762b4dca920fb51c0428fddb.jpg", "file_size": 17677, "is_delete": false, "file_type": 1, "original_file_name": "C352#-墨绿#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1515407d762b4dca920fb51c0428fddb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1515407d762b4dca920fb51c0428fddb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1515407d762b4dca920fb51c0428fddb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1515407d762b4dca920fb51c0428fddb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1515407d762b4dca920fb51c0428fddb.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaPa3XkL67lit4zjTTm0IJQzGC4=", "createTime": "2024-08-15 14:49:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.12128+00 2025-12-09 10:15:06.121284+00 10030 LZ1266#背心款1号色 SPMX-20240815305206 \N \N \N 1 \N [{"file_id": "7808c51d-d629-41ea-bd81-7afc1d6a323c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f5b110944664dad86105b4591f24dbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f5b110944664dad86105b4591f24dbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f5b110944664dad86105b4591f24dbf.jpg", "file_size": 20544, "is_delete": false, "file_type": 1, "original_file_name": "LZ1266#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5b110944664dad86105b4591f24dbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5b110944664dad86105b4591f24dbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5b110944664dad86105b4591f24dbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f5b110944664dad86105b4591f24dbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f5b110944664dad86105b4591f24dbf.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XROe8Df13O4hvXYo8diFvH5dziI=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.123216+00 2025-12-09 10:15:06.12322+00 10031 LJ9920#XL红 SPMX-20240815305207 \N \N \N 1 \N [{"file_id": "0de3d96a-7dfa-423f-ba7a-38dd2fade06e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8871158d235f4fa39feff4aa919c8200.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8871158d235f4fa39feff4aa919c8200.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8871158d235f4fa39feff4aa919c8200.jpg", "file_size": 14393, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#XL红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8871158d235f4fa39feff4aa919c8200.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8871158d235f4fa39feff4aa919c8200.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8871158d235f4fa39feff4aa919c8200.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8871158d235f4fa39feff4aa919c8200.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8871158d235f4fa39feff4aa919c8200.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68AFB-ivJsdNmZGgs8OrgR_jf8E=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.124956+00 2025-12-09 10:15:06.124961+00 10032 DL30504#亮黄2XL SPMX-20240815305202 \N \N \N 1 \N [{"file_id": "5523c839-189a-420c-8a9e-97aaccf0d45c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc505c2343b546a1a10857d2f5c7b048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc505c2343b546a1a10857d2f5c7b048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc505c2343b546a1a10857d2f5c7b048.jpg", "file_size": 20671, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#亮黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc505c2343b546a1a10857d2f5c7b048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc505c2343b546a1a10857d2f5c7b048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc505c2343b546a1a10857d2f5c7b048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc505c2343b546a1a10857d2f5c7b048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc505c2343b546a1a10857d2f5c7b048.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yH81z2BvFoDwrv1ba3gR9V7l4k0=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.126762+00 2025-12-09 10:15:06.126767+00 10033 1087FWF#红色 SPMX-20240815305208 \N \N \N 1 \N [{"file_id": "ef53bd00-8fc3-46c0-809e-4c85469044d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e559d22787e14e26bdbd373378f6e998.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e559d22787e14e26bdbd373378f6e998.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e559d22787e14e26bdbd373378f6e998.jpg", "file_size": 14305, "is_delete": false, "file_type": 1, "original_file_name": "1087FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e559d22787e14e26bdbd373378f6e998.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e559d22787e14e26bdbd373378f6e998.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e559d22787e14e26bdbd373378f6e998.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e559d22787e14e26bdbd373378f6e998.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e559d22787e14e26bdbd373378f6e998.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GAZeHgtJawKEXQ6wiLKMbA_8xXo=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.128713+00 2025-12-09 10:15:06.128719+00 10034 HT022FW#VS-D3 SPMX-20240815305205 \N \N \N 1 \N [{"file_id": "3792609c-031f-4845-ba0b-e7e568cbdbb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0774f54f848948b3acdf2b6f923921a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0774f54f848948b3acdf2b6f923921a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0774f54f848948b3acdf2b6f923921a8.jpg", "file_size": 9554, "is_delete": false, "file_type": 1, "original_file_name": "HT022FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0774f54f848948b3acdf2b6f923921a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0774f54f848948b3acdf2b6f923921a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0774f54f848948b3acdf2b6f923921a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0774f54f848948b3acdf2b6f923921a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0774f54f848948b3acdf2b6f923921a8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QNER9amqagZvqqkT789gkCqfgfY=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.130854+00 2025-12-09 10:15:06.130859+00 10035 JTSS165FW#VS-D6 SPMX-20240815305204 \N \N \N 1 \N [{"file_id": "5cae6f43-b520-4b55-9e0e-3ee53041d9f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d89dea9e9f10451fa3534d2a5a592776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d89dea9e9f10451fa3534d2a5a592776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d89dea9e9f10451fa3534d2a5a592776.jpg", "file_size": 11796, "is_delete": false, "file_type": 1, "original_file_name": "JTSS165FW#VS-D6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89dea9e9f10451fa3534d2a5a592776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89dea9e9f10451fa3534d2a5a592776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89dea9e9f10451fa3534d2a5a592776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d89dea9e9f10451fa3534d2a5a592776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d89dea9e9f10451fa3534d2a5a592776.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itwAXoes8z2ve_Z7hjpLsyEKlGU=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.132655+00 2025-12-09 10:15:06.13266+00 10036 23-2116#A11-3XL SPMX-20240815305203 \N \N \N 1 \N [{"file_id": "2d530852-cfba-4b72-a995-27122461f178", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8338707d93146d78f612bac42da170d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8338707d93146d78f612bac42da170d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8338707d93146d78f612bac42da170d.jpg", "file_size": 17972, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8338707d93146d78f612bac42da170d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8338707d93146d78f612bac42da170d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8338707d93146d78f612bac42da170d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8338707d93146d78f612bac42da170d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8338707d93146d78f612bac42da170d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H100LkuCKd3xqgWZpJirlNFXFvY=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.135146+00 2025-12-09 10:15:06.13515+00 10037 C352#-大白#LWQ15 SPMX-20240815305209 \N \N \N 1 \N [{"file_id": "8557e689-77a1-480b-b9f8-7820894b0765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "203ae50b8b0d45adafd76580001d2e48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "203ae50b8b0d45adafd76580001d2e48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "203ae50b8b0d45adafd76580001d2e48.jpg", "file_size": 15786, "is_delete": false, "file_type": 1, "original_file_name": "C352#-大白#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203ae50b8b0d45adafd76580001d2e48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203ae50b8b0d45adafd76580001d2e48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203ae50b8b0d45adafd76580001d2e48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/203ae50b8b0d45adafd76580001d2e48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/203ae50b8b0d45adafd76580001d2e48.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NVnpChZHk9okaK__gt8xPUVvLc=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.137302+00 2025-12-09 10:15:06.137309+00 10038 FHXGPK-批布015-2 SPMX-20240815305211 \N \N \N 1 \N [{"file_id": "31a94547-a387-4b5d-bd1a-dfb6d1e5a170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73fb953a673d46b6a7c8e74639c569bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73fb953a673d46b6a7c8e74639c569bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73fb953a673d46b6a7c8e74639c569bc.jpg", "file_size": 31607, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布015-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb953a673d46b6a7c8e74639c569bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb953a673d46b6a7c8e74639c569bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb953a673d46b6a7c8e74639c569bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73fb953a673d46b6a7c8e74639c569bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73fb953a673d46b6a7c8e74639c569bc.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHyG-WNGcuFXmziw9UmsWvZkz9Y=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.139103+00 2025-12-09 10:15:06.139108+00 10039 LZ1266#背心款2号色 SPMX-20240815305218 \N \N \N 1 \N [{"file_id": "ff01a8e8-3745-4a55-ae9f-224e7917fa39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db684c751ad49ccb3bde46f24227ba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db684c751ad49ccb3bde46f24227ba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db684c751ad49ccb3bde46f24227ba3.jpg", "file_size": 19780, "is_delete": false, "file_type": 1, "original_file_name": "LZ1266#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db684c751ad49ccb3bde46f24227ba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db684c751ad49ccb3bde46f24227ba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db684c751ad49ccb3bde46f24227ba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db684c751ad49ccb3bde46f24227ba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db684c751ad49ccb3bde46f24227ba3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptTzn7YTi3zCwrpHcAfma9foQg0=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.140801+00 2025-12-09 10:15:06.140806+00 10040 DL30504#亮黄L SPMX-20240815305213 \N \N \N 1 \N [{"file_id": "232bb934-c2dc-41be-8744-7fc6830a36da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5dfab5e2838403abc75a457e5cdcf29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5dfab5e2838403abc75a457e5cdcf29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5dfab5e2838403abc75a457e5cdcf29.jpg", "file_size": 25215, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#亮黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dfab5e2838403abc75a457e5cdcf29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dfab5e2838403abc75a457e5cdcf29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5dfab5e2838403abc75a457e5cdcf29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5dfab5e2838403abc75a457e5cdcf29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5dfab5e2838403abc75a457e5cdcf29.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-35NpzpbHt3wLdyJZDLk7u-DFM=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.142455+00 2025-12-09 10:15:06.14246+00 10041 23-2116#A11-4XL SPMX-20240815305212 \N \N \N 1 \N [{"file_id": "a47cb325-c3d2-4c96-82eb-684a5f79c877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be1fa8a487cf47cdba32262de84e43b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be1fa8a487cf47cdba32262de84e43b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be1fa8a487cf47cdba32262de84e43b3.jpg", "file_size": 17096, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1fa8a487cf47cdba32262de84e43b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1fa8a487cf47cdba32262de84e43b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1fa8a487cf47cdba32262de84e43b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be1fa8a487cf47cdba32262de84e43b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be1fa8a487cf47cdba32262de84e43b3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGSBNYNZBdLfZjI0IU_DDx9-J2A=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.14435+00 2025-12-09 10:15:06.144354+00 10042 HT022FWE#VS-D3 SPMX-20240815305220 \N \N \N 1 \N [{"file_id": "872653b4-6719-47ef-9ca2-afd1ec30078b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13aa68f28c4444599c75bcd3d179ef6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13aa68f28c4444599c75bcd3d179ef6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13aa68f28c4444599c75bcd3d179ef6b.jpg", "file_size": 17119, "is_delete": false, "file_type": 1, "original_file_name": "HT022FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13aa68f28c4444599c75bcd3d179ef6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13aa68f28c4444599c75bcd3d179ef6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13aa68f28c4444599c75bcd3d179ef6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13aa68f28c4444599c75bcd3d179ef6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13aa68f28c4444599c75bcd3d179ef6b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEBwoKyQJkjxwAkJvd4iJfjfo_E=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.14597+00 2025-12-09 10:15:06.145975+00 10043 LJ9920#XL蓝 SPMX-20240815305221 \N \N \N 1 \N [{"file_id": "12c1b1b7-7467-47ac-a35f-c587f5c68c98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "672a056c1e7c48d1991d5ee85cf9204b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "672a056c1e7c48d1991d5ee85cf9204b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "672a056c1e7c48d1991d5ee85cf9204b.jpg", "file_size": 12592, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920#XL蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672a056c1e7c48d1991d5ee85cf9204b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672a056c1e7c48d1991d5ee85cf9204b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672a056c1e7c48d1991d5ee85cf9204b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/672a056c1e7c48d1991d5ee85cf9204b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/672a056c1e7c48d1991d5ee85cf9204b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M2ArLlB5sH-2-jz0fxZ5ltkAVaE=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.147599+00 2025-12-09 10:15:06.147604+00 10044 JTSS166FW#VS-D3 SPMX-20240815305217 \N \N \N 1 \N [{"file_id": "08eeeed8-f93f-4604-9fae-589bc9e2d0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a62ed5345326414bb2b48265670d0faf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a62ed5345326414bb2b48265670d0faf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a62ed5345326414bb2b48265670d0faf.jpg", "file_size": 13053, "is_delete": false, "file_type": 1, "original_file_name": "JTSS166FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62ed5345326414bb2b48265670d0faf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62ed5345326414bb2b48265670d0faf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62ed5345326414bb2b48265670d0faf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a62ed5345326414bb2b48265670d0faf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a62ed5345326414bb2b48265670d0faf.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbrU-bg6HLIGCoI5DlmNlAksv04=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.149391+00 2025-12-09 10:15:06.149395+00 10045 C352#-大白LWQ15 SPMX-20240815305219 \N \N \N 1 \N [{"file_id": "105ec694-1f11-4bfd-b4e8-450e35b495cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29e1171e6ce3468f8863ac8cbc3221cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29e1171e6ce3468f8863ac8cbc3221cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29e1171e6ce3468f8863ac8cbc3221cc.jpg", "file_size": 15981, "is_delete": false, "file_type": 1, "original_file_name": "C352#-大白LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e1171e6ce3468f8863ac8cbc3221cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e1171e6ce3468f8863ac8cbc3221cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e1171e6ce3468f8863ac8cbc3221cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29e1171e6ce3468f8863ac8cbc3221cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29e1171e6ce3468f8863ac8cbc3221cc.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8J15M2w2T4j3fZAw6f0GcE3HDUA=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.151111+00 2025-12-09 10:15:06.151116+00 10046 8096#短款下摆湖绿 SPMX-20240815305216 \N \N \N 1 \N [{"file_id": "f66a922a-c096-4374-889e-57623396cb70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d519f4a40764655adec9bd7899c9c61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d519f4a40764655adec9bd7899c9c61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d519f4a40764655adec9bd7899c9c61.jpg", "file_size": 22389, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d519f4a40764655adec9bd7899c9c61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d519f4a40764655adec9bd7899c9c61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d519f4a40764655adec9bd7899c9c61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d519f4a40764655adec9bd7899c9c61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d519f4a40764655adec9bd7899c9c61.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dg2EdUebmv5De5sLQ_7DQYBdsJ8=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.15292+00 2025-12-09 10:15:06.152925+00 10047 8096#短款下摆杏色宝蓝 SPMX-20240815305210 \N \N \N 1 \N [{"file_id": "64d116ea-feaa-4f7e-b0ce-4492adaa3408", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc6908ede294a179bc3523f251ce054.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc6908ede294a179bc3523f251ce054.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc6908ede294a179bc3523f251ce054.jpg", "file_size": 22863, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆杏色宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6908ede294a179bc3523f251ce054.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6908ede294a179bc3523f251ce054.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6908ede294a179bc3523f251ce054.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc6908ede294a179bc3523f251ce054.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc6908ede294a179bc3523f251ce054.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRgcLfQ3pK57c0h2vLfqOrrx-EE=", "createTime": "2024-08-15 14:49:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.154611+00 2025-12-09 10:15:06.154616+00 10048 1087FWF#绿色 SPMX-20240815305215 \N \N \N 1 \N [{"file_id": "cfdeeea6-9f17-43ca-a002-9ee925fcb6aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93b83e17f46b4e09a0de1e4e6797bd29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93b83e17f46b4e09a0de1e4e6797bd29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93b83e17f46b4e09a0de1e4e6797bd29.jpg", "file_size": 12689, "is_delete": false, "file_type": 1, "original_file_name": "1087FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93b83e17f46b4e09a0de1e4e6797bd29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93b83e17f46b4e09a0de1e4e6797bd29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93b83e17f46b4e09a0de1e4e6797bd29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93b83e17f46b4e09a0de1e4e6797bd29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93b83e17f46b4e09a0de1e4e6797bd29.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:in9b--oj54b3Cx6IKhspTPwHYeI=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.156558+00 2025-12-09 10:15:06.156563+00 10049 FHXGPK-批布015-3 SPMX-20240815305222 \N \N \N 1 \N [{"file_id": "2883ce14-5b4d-48d2-b244-9e97a51fd250", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3478c873d56842ddbb6a6eb16357cbd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3478c873d56842ddbb6a6eb16357cbd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3478c873d56842ddbb6a6eb16357cbd8.jpg", "file_size": 28884, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布015-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3478c873d56842ddbb6a6eb16357cbd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3478c873d56842ddbb6a6eb16357cbd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3478c873d56842ddbb6a6eb16357cbd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3478c873d56842ddbb6a6eb16357cbd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3478c873d56842ddbb6a6eb16357cbd8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXJ9qGVVO0aRX71lvpHLaj52TjQ=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.158424+00 2025-12-09 10:15:06.158429+00 10050 0003-468#WJC22 SPMX-20240815305214 \N \N \N 1 \N [{"file_id": "0cfa71a3-9992-46a3-baf1-cd2f10ebab1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de71100e6e8f41bf886191e7bb70e2ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de71100e6e8f41bf886191e7bb70e2ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de71100e6e8f41bf886191e7bb70e2ad.jpg", "file_size": 14548, "is_delete": false, "file_type": 1, "original_file_name": "0003-468#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de71100e6e8f41bf886191e7bb70e2ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de71100e6e8f41bf886191e7bb70e2ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de71100e6e8f41bf886191e7bb70e2ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de71100e6e8f41bf886191e7bb70e2ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de71100e6e8f41bf886191e7bb70e2ad.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lw-McE67aPuTBDeYdJb0d9sEFaY=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.160092+00 2025-12-09 10:15:06.160097+00 10051 1087FWF#黄色 SPMX-20240815305226 \N \N \N 1 \N [{"file_id": "717588d6-9b4c-4645-a9ba-c8d9c0001e88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e6a69e01985428d80ee7f66798434fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e6a69e01985428d80ee7f66798434fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e6a69e01985428d80ee7f66798434fe.jpg", "file_size": 12591, "is_delete": false, "file_type": 1, "original_file_name": "1087FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6a69e01985428d80ee7f66798434fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6a69e01985428d80ee7f66798434fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e6a69e01985428d80ee7f66798434fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e6a69e01985428d80ee7f66798434fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e6a69e01985428d80ee7f66798434fe.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgodgXYYRhVk3GfVX-0Jucujwa0=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.161715+00 2025-12-09 10:15:06.16172+00 10052 23-2116#A11-领子3XL SPMX-20240815305223 \N \N \N 1 \N [{"file_id": "b335130f-d7f2-4b85-9e7b-55555b7bd2e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec76705c923043949c8fc2ea0bbdad4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec76705c923043949c8fc2ea0bbdad4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec76705c923043949c8fc2ea0bbdad4d.jpg", "file_size": 11605, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec76705c923043949c8fc2ea0bbdad4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec76705c923043949c8fc2ea0bbdad4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec76705c923043949c8fc2ea0bbdad4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec76705c923043949c8fc2ea0bbdad4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec76705c923043949c8fc2ea0bbdad4d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ncGrYetL8OAtJyoVnWemZEXmfE=", "createTime": "2024-08-15 14:49:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.163591+00 2025-12-09 10:15:06.163596+00 10053 8096#短款下摆粉色 SPMX-20240815305227 \N \N \N 1 \N [{"file_id": "b36dc03b-afdc-41e3-87a1-0a37ecb12ff3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21fa2a194d674f078230f63063c236d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21fa2a194d674f078230f63063c236d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21fa2a194d674f078230f63063c236d3.jpg", "file_size": 23287, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fa2a194d674f078230f63063c236d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fa2a194d674f078230f63063c236d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fa2a194d674f078230f63063c236d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21fa2a194d674f078230f63063c236d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21fa2a194d674f078230f63063c236d3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkSHRc8SsfeRHMoUDccDaimA4QE=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.165488+00 2025-12-09 10:15:06.165493+00 10054 DL30504#亮黄XL SPMX-20240815305225 \N \N \N 1 \N [{"file_id": "244c1872-8437-4835-bf6c-cceebaf135cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6d3e7a2056e4387abba79e7bd28a744.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6d3e7a2056e4387abba79e7bd28a744.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6d3e7a2056e4387abba79e7bd28a744.jpg", "file_size": 20468, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#亮黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3e7a2056e4387abba79e7bd28a744.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3e7a2056e4387abba79e7bd28a744.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3e7a2056e4387abba79e7bd28a744.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6d3e7a2056e4387abba79e7bd28a744.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6d3e7a2056e4387abba79e7bd28a744.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhsebpftPENjzhR97IrLFYhohcs=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.167119+00 2025-12-09 10:15:06.167124+00 10055 JTSS167FW#VS-D3 SPMX-20240815305228 \N \N \N 1 \N [{"file_id": "932e03b0-de97-4818-8757-022eca7139cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58d640d4a1d247adaaaf8556d2724810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58d640d4a1d247adaaaf8556d2724810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58d640d4a1d247adaaaf8556d2724810.jpg", "file_size": 12789, "is_delete": false, "file_type": 1, "original_file_name": "JTSS167FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d640d4a1d247adaaaf8556d2724810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d640d4a1d247adaaaf8556d2724810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d640d4a1d247adaaaf8556d2724810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58d640d4a1d247adaaaf8556d2724810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58d640d4a1d247adaaaf8556d2724810.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwH1VTCm3KIHbNKgtUKF895Ofvk=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.168719+00 2025-12-09 10:15:06.168723+00 10056 0003-469#WJC22 SPMX-20240815305224 \N \N \N 1 \N [{"file_id": "87b4fab8-9e1c-47ce-8c95-d9ad50d120c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "258ceb45510c4f40bfcc737ad048f5e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "258ceb45510c4f40bfcc737ad048f5e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "258ceb45510c4f40bfcc737ad048f5e4.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "0003-469#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258ceb45510c4f40bfcc737ad048f5e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258ceb45510c4f40bfcc737ad048f5e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/258ceb45510c4f40bfcc737ad048f5e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/258ceb45510c4f40bfcc737ad048f5e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/258ceb45510c4f40bfcc737ad048f5e4.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pN8zbXt8G0TADWM78riLXeYgz_8=", "createTime": "2024-08-15 14:49:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.170578+00 2025-12-09 10:15:06.170582+00 10057 FHXGPK-批布015-4 SPMX-20240815305235 \N \N \N 1 \N [{"file_id": "fe81d88a-fb83-4772-9c56-2ec404a3bcda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5792cc0a61f8444da3bfe9e42d5d3c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5792cc0a61f8444da3bfe9e42d5d3c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5792cc0a61f8444da3bfe9e42d5d3c04.jpg", "file_size": 27283, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布015-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5792cc0a61f8444da3bfe9e42d5d3c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5792cc0a61f8444da3bfe9e42d5d3c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5792cc0a61f8444da3bfe9e42d5d3c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5792cc0a61f8444da3bfe9e42d5d3c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5792cc0a61f8444da3bfe9e42d5d3c04.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZEURhquECaAbOauKiCKqz7Sd9CM=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.172495+00 2025-12-09 10:15:06.172502+00 10058 LJ9920FW#短卡2XL VS-D3 SPMX-20240815305229 \N \N \N 1 \N [{"file_id": "37e4a1d3-82e3-459c-90fe-734045d3f782", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a49a375a1dd4b7e96033992476e57d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a49a375a1dd4b7e96033992476e57d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a49a375a1dd4b7e96033992476e57d3.jpg", "file_size": 16626, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短卡2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49a375a1dd4b7e96033992476e57d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49a375a1dd4b7e96033992476e57d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49a375a1dd4b7e96033992476e57d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a49a375a1dd4b7e96033992476e57d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a49a375a1dd4b7e96033992476e57d3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c0okWqy-mi9sWMHgeLzqZsBSDJw=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.174701+00 2025-12-09 10:15:06.174722+00 10059 C352#-玫红#LWQ15 SPMX-20240815305233 \N \N \N 1 \N [{"file_id": "309c0e74-3a12-478e-9b50-11dfaf146a0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "873fd02a819445f5b7b0c705bf0b2b70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "873fd02a819445f5b7b0c705bf0b2b70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "873fd02a819445f5b7b0c705bf0b2b70.jpg", "file_size": 16342, "is_delete": false, "file_type": 1, "original_file_name": "C352#-玫红#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fd02a819445f5b7b0c705bf0b2b70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fd02a819445f5b7b0c705bf0b2b70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fd02a819445f5b7b0c705bf0b2b70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/873fd02a819445f5b7b0c705bf0b2b70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/873fd02a819445f5b7b0c705bf0b2b70.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6VG4xxdlGkYuPrfIaQdl4mM1lc=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.176799+00 2025-12-09 10:15:06.176804+00 10060 23-2116#A11-领子4XL SPMX-20240815305231 \N \N \N 1 \N [{"file_id": "622e2720-64f1-40e0-a555-27b085476f87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05401094ce6a45ebb148d52f0b9fdd23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05401094ce6a45ebb148d52f0b9fdd23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05401094ce6a45ebb148d52f0b9fdd23.jpg", "file_size": 11639, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05401094ce6a45ebb148d52f0b9fdd23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05401094ce6a45ebb148d52f0b9fdd23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05401094ce6a45ebb148d52f0b9fdd23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05401094ce6a45ebb148d52f0b9fdd23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05401094ce6a45ebb148d52f0b9fdd23.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rAHAjsB6Cq5ZcR0ljHi2bkx8AI=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.178724+00 2025-12-09 10:15:06.178729+00 10061 LZ1266#背心款3号色 SPMX-20240815305232 \N \N \N 1 \N [{"file_id": "cb14a176-1da9-4704-bb9d-ca1101977e3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1baf21ea029b4ad58b047b9e46b7efba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1baf21ea029b4ad58b047b9e46b7efba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1baf21ea029b4ad58b047b9e46b7efba.jpg", "file_size": 20454, "is_delete": false, "file_type": 1, "original_file_name": "LZ1266#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf21ea029b4ad58b047b9e46b7efba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf21ea029b4ad58b047b9e46b7efba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf21ea029b4ad58b047b9e46b7efba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1baf21ea029b4ad58b047b9e46b7efba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1baf21ea029b4ad58b047b9e46b7efba.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4Hy8ZlEv09G95d26b2ymIFXJZ8=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.180676+00 2025-12-09 10:15:06.18068+00 10062 JTSS168FW#VS-D3 SPMX-20240815305234 \N \N \N 1 \N [{"file_id": "b4d5d4a2-3c8b-464f-94ea-67d1c1e07257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955c2aefff5c4935a81a7831a42bff8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955c2aefff5c4935a81a7831a42bff8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955c2aefff5c4935a81a7831a42bff8e.jpg", "file_size": 9051, "is_delete": false, "file_type": 1, "original_file_name": "JTSS168FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955c2aefff5c4935a81a7831a42bff8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955c2aefff5c4935a81a7831a42bff8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955c2aefff5c4935a81a7831a42bff8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955c2aefff5c4935a81a7831a42bff8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955c2aefff5c4935a81a7831a42bff8e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYXxg8UPYEFGRIq3Og8st3TFIow=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.182378+00 2025-12-09 10:15:06.182383+00 10063 HT023FW#VS-D3 SPMX-20240815305230 \N \N \N 1 \N [{"file_id": "704c0cb3-8097-467c-a262-8c51bcc36444", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6508931953e64ec79085ab74fc35c20f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6508931953e64ec79085ab74fc35c20f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6508931953e64ec79085ab74fc35c20f.jpg", "file_size": 19116, "is_delete": false, "file_type": 1, "original_file_name": "HT023FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6508931953e64ec79085ab74fc35c20f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6508931953e64ec79085ab74fc35c20f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6508931953e64ec79085ab74fc35c20f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6508931953e64ec79085ab74fc35c20f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6508931953e64ec79085ab74fc35c20f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llTNJjThdp6YJCmiEFWl2-7Se0Q=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.184069+00 2025-12-09 10:15:06.184074+00 10064 0003-46FWF#V5曲线 SPMX-20240815305238 \N \N \N 1 \N [{"file_id": "1369a925-6e3c-4b4d-8c04-de0578ab2387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fbf7f49cc5540d68f59a92ce541899a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fbf7f49cc5540d68f59a92ce541899a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fbf7f49cc5540d68f59a92ce541899a.jpg", "file_size": 16970, "is_delete": false, "file_type": 1, "original_file_name": "0003-46FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fbf7f49cc5540d68f59a92ce541899a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fbf7f49cc5540d68f59a92ce541899a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fbf7f49cc5540d68f59a92ce541899a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fbf7f49cc5540d68f59a92ce541899a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fbf7f49cc5540d68f59a92ce541899a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwezbLP8HRfWzG0ghxTfIc_L6PI=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.185765+00 2025-12-09 10:15:06.185769+00 10065 8096#短款下摆黄色 SPMX-20240815305239 \N \N \N 1 \N [{"file_id": "2eb95c15-925e-4df1-b98d-00c68d828624", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c17df9406a640caaf844a308224cf30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c17df9406a640caaf844a308224cf30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c17df9406a640caaf844a308224cf30.jpg", "file_size": 23317, "is_delete": false, "file_type": 1, "original_file_name": "8096#短款下摆黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c17df9406a640caaf844a308224cf30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c17df9406a640caaf844a308224cf30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c17df9406a640caaf844a308224cf30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c17df9406a640caaf844a308224cf30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c17df9406a640caaf844a308224cf30.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCl-GYL1wACkgMkC10aIp4E-dzY=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.187699+00 2025-12-09 10:15:06.187709+00 10066 FHXGPK-批布015-5 SPMX-20240815305245 \N \N \N 1 \N [{"file_id": "bb548d1d-24f6-4ca6-a0da-629cfbd8126a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cb12f2adc6a45e79c06102b931e74d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cb12f2adc6a45e79c06102b931e74d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cb12f2adc6a45e79c06102b931e74d9.jpg", "file_size": 35034, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布015-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb12f2adc6a45e79c06102b931e74d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb12f2adc6a45e79c06102b931e74d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb12f2adc6a45e79c06102b931e74d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cb12f2adc6a45e79c06102b931e74d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cb12f2adc6a45e79c06102b931e74d9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRqi6oY04cABzWJcHoNGpgzQFWc=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.189892+00 2025-12-09 10:15:06.189897+00 10067 8096#粉色上身 SPMX-20240815305250 \N \N \N 1 \N [{"file_id": "9c924ba6-af78-4981-9a3a-dcdbfacd8e0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfeada5b45274dca9b57eff0253fc628.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfeada5b45274dca9b57eff0253fc628.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfeada5b45274dca9b57eff0253fc628.jpg", "file_size": 18625, "is_delete": false, "file_type": 1, "original_file_name": "8096#粉色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfeada5b45274dca9b57eff0253fc628.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfeada5b45274dca9b57eff0253fc628.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfeada5b45274dca9b57eff0253fc628.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfeada5b45274dca9b57eff0253fc628.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfeada5b45274dca9b57eff0253fc628.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kC2cRaxJGiKSd3OeZ0U81Ssn5E=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.191959+00 2025-12-09 10:15:06.191963+00 10068 HT023FWE#VS-D3 SPMX-20240815305241 \N \N \N 1 \N [{"file_id": "c6f040eb-e0ec-43c2-917a-eefb706b1b90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b519eead9e7434c95cdcc9920e882aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b519eead9e7434c95cdcc9920e882aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b519eead9e7434c95cdcc9920e882aa.jpg", "file_size": 13717, "is_delete": false, "file_type": 1, "original_file_name": "HT023FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b519eead9e7434c95cdcc9920e882aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b519eead9e7434c95cdcc9920e882aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b519eead9e7434c95cdcc9920e882aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b519eead9e7434c95cdcc9920e882aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b519eead9e7434c95cdcc9920e882aa.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7ixIWYRtLI3fBbPRvhPvnrjVSw=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.194035+00 2025-12-09 10:15:06.194041+00 10069 23-2116#A12-3XL SPMX-20240815305243 \N \N \N 1 \N [{"file_id": "8bfb6f73-9197-44d1-bfbb-0c38eff28683", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5863ad865b03417790c714eadfe171d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5863ad865b03417790c714eadfe171d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5863ad865b03417790c714eadfe171d7.jpg", "file_size": 18682, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5863ad865b03417790c714eadfe171d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5863ad865b03417790c714eadfe171d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5863ad865b03417790c714eadfe171d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5863ad865b03417790c714eadfe171d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5863ad865b03417790c714eadfe171d7.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIZqMqnB5U1DLojQIhe6t4jbRP0=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.196407+00 2025-12-09 10:15:06.196414+00 10070 LJ9920FW#短卡L VS-D3 SPMX-20240815305240 \N \N \N 1 \N [{"file_id": "08284954-39b4-4892-a38a-c12fbaa451e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb2eb6b9097545179d4c53c35ea5d448.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb2eb6b9097545179d4c53c35ea5d448.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb2eb6b9097545179d4c53c35ea5d448.jpg", "file_size": 16800, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短卡L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb2eb6b9097545179d4c53c35ea5d448.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb2eb6b9097545179d4c53c35ea5d448.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb2eb6b9097545179d4c53c35ea5d448.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb2eb6b9097545179d4c53c35ea5d448.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb2eb6b9097545179d4c53c35ea5d448.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vq3sPjxwQ_mRdzeQSyKis2qmI7c=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.198658+00 2025-12-09 10:15:06.198664+00 10071 DL30504#原版色2XL SPMX-20240815305237 \N \N \N 1 \N [{"file_id": "e9d7a507-8cf4-49dc-bc95-543368bc1aa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2578f62794804c649f470a0acb6c2a2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2578f62794804c649f470a0acb6c2a2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2578f62794804c649f470a0acb6c2a2e.jpg", "file_size": 20111, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#原版色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2578f62794804c649f470a0acb6c2a2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2578f62794804c649f470a0acb6c2a2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2578f62794804c649f470a0acb6c2a2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2578f62794804c649f470a0acb6c2a2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2578f62794804c649f470a0acb6c2a2e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WCyEQzCREpkzUUuw4DTKgAsbu2E=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.200539+00 2025-12-09 10:15:06.200544+00 10072 DL30504#原版色L SPMX-20240815305248 \N \N \N 1 \N [{"file_id": "fabf0563-b446-4a8a-9e7f-85c6d77fc9aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80d71a82026443e7aee5ff215bc8295f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80d71a82026443e7aee5ff215bc8295f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80d71a82026443e7aee5ff215bc8295f.jpg", "file_size": 25121, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#原版色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d71a82026443e7aee5ff215bc8295f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d71a82026443e7aee5ff215bc8295f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d71a82026443e7aee5ff215bc8295f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80d71a82026443e7aee5ff215bc8295f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80d71a82026443e7aee5ff215bc8295f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OcfsgAbv3urvFIcnJAT3dJTt6bM=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.202217+00 2025-12-09 10:15:06.202221+00 10073 1088#白色 SPMX-20240815305247 \N \N \N 1 \N [{"file_id": "2fd43d1c-3b66-4343-96c4-84735b449545", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7772e57e6bfa4405a9ce6e694e0f4504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7772e57e6bfa4405a9ce6e694e0f4504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7772e57e6bfa4405a9ce6e694e0f4504.jpg", "file_size": 9961, "is_delete": false, "file_type": 1, "original_file_name": "1088#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7772e57e6bfa4405a9ce6e694e0f4504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7772e57e6bfa4405a9ce6e694e0f4504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7772e57e6bfa4405a9ce6e694e0f4504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7772e57e6bfa4405a9ce6e694e0f4504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7772e57e6bfa4405a9ce6e694e0f4504.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmAKnHRKPcx-vTR3cIR8--1rICU=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.204034+00 2025-12-09 10:15:06.204039+00 10074 1087FWF#黑色 SPMX-20240815305236 \N \N \N 1 \N [{"file_id": "34f5521b-34a9-471c-96ac-da8fdc0a1033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3fb37ad607e40e4b3e719b0cb036fe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3fb37ad607e40e4b3e719b0cb036fe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3fb37ad607e40e4b3e719b0cb036fe3.jpg", "file_size": 15533, "is_delete": false, "file_type": 1, "original_file_name": "1087FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb37ad607e40e4b3e719b0cb036fe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb37ad607e40e4b3e719b0cb036fe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb37ad607e40e4b3e719b0cb036fe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3fb37ad607e40e4b3e719b0cb036fe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3fb37ad607e40e4b3e719b0cb036fe3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVbjmax2CkLGlT318Vxjezk7GMI=", "createTime": "2024-08-15 14:49:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.205949+00 2025-12-09 10:15:06.205953+00 10075 C352#-黑色#LWQ15 SPMX-20240815305244 \N \N \N 1 \N [{"file_id": "fec170b1-b9d5-4056-9565-d29690ae70ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02c3cc4c1d784b77a9d2e78615423fe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02c3cc4c1d784b77a9d2e78615423fe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02c3cc4c1d784b77a9d2e78615423fe1.jpg", "file_size": 18616, "is_delete": false, "file_type": 1, "original_file_name": "C352#-黑色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c3cc4c1d784b77a9d2e78615423fe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c3cc4c1d784b77a9d2e78615423fe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c3cc4c1d784b77a9d2e78615423fe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02c3cc4c1d784b77a9d2e78615423fe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02c3cc4c1d784b77a9d2e78615423fe1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejBoe35p3XoXi9clh3v4u8t-4fM=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.207833+00 2025-12-09 10:15:06.207838+00 10076 JTSS169FW#VS-D3 SPMX-20240815305246 \N \N \N 1 \N [{"file_id": "1af068ad-c30f-47a8-a232-fd86dbf79e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da527a99460d4cf8a6ade972ad929992.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da527a99460d4cf8a6ade972ad929992.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da527a99460d4cf8a6ade972ad929992.jpg", "file_size": 13712, "is_delete": false, "file_type": 1, "original_file_name": "JTSS169FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da527a99460d4cf8a6ade972ad929992.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da527a99460d4cf8a6ade972ad929992.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da527a99460d4cf8a6ade972ad929992.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da527a99460d4cf8a6ade972ad929992.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da527a99460d4cf8a6ade972ad929992.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBb6Ko4_9n9oCa3Fd-VhftNRwe8=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.209468+00 2025-12-09 10:15:06.209473+00 10077 0003-470#WJC22 SPMX-20240815305249 \N \N \N 1 \N [{"file_id": "9b585933-58c3-4e4d-a42e-d5d06646fffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2344b7d1a2d547d6aa47731c93a1f9a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2344b7d1a2d547d6aa47731c93a1f9a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2344b7d1a2d547d6aa47731c93a1f9a7.jpg", "file_size": 18418, "is_delete": false, "file_type": 1, "original_file_name": "0003-470#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2344b7d1a2d547d6aa47731c93a1f9a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2344b7d1a2d547d6aa47731c93a1f9a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2344b7d1a2d547d6aa47731c93a1f9a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2344b7d1a2d547d6aa47731c93a1f9a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2344b7d1a2d547d6aa47731c93a1f9a7.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlMgB47_-DB5fQv1GAg0M1Uzx18=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.22858+00 2025-12-09 10:15:06.228583+00 10086 HT024FW#黄VS-D3 SPMX-20240815305262 \N \N \N 1 \N [{"file_id": "54b0fcd2-d259-4a08-8b8e-dfde32d3ffe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77e576efdc5a471eb4498881b79299cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77e576efdc5a471eb4498881b79299cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77e576efdc5a471eb4498881b79299cc.jpg", "file_size": 13296, "is_delete": false, "file_type": 1, "original_file_name": "HT024FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e576efdc5a471eb4498881b79299cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e576efdc5a471eb4498881b79299cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e576efdc5a471eb4498881b79299cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77e576efdc5a471eb4498881b79299cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77e576efdc5a471eb4498881b79299cc.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YKCRz3hRSFujfSXtij7nVTboE8=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.211245+00 2025-12-09 10:15:06.21125+00 10078 LZ1266#背心款4号色 SPMX-20240815305242 \N \N \N 1 \N [{"file_id": "a0bba2a6-4ed0-4bd6-a138-f43ce868811a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6a79a9d9ce4c269b5fd21110ae63aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6a79a9d9ce4c269b5fd21110ae63aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6a79a9d9ce4c269b5fd21110ae63aa.jpg", "file_size": 19968, "is_delete": false, "file_type": 1, "original_file_name": "LZ1266#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a79a9d9ce4c269b5fd21110ae63aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a79a9d9ce4c269b5fd21110ae63aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a79a9d9ce4c269b5fd21110ae63aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6a79a9d9ce4c269b5fd21110ae63aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6a79a9d9ce4c269b5fd21110ae63aa.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2by15K9kVInsYItX0ZgHk7-cz0=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.213239+00 2025-12-09 10:15:06.213244+00 10079 FHXGPK-批布016-1 SPMX-20240815305256 \N \N \N 1 \N [{"file_id": "407c7244-972b-443e-8316-cb6be63e633e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11cae69c9a3d4b5f914cf6f4fac4b783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11cae69c9a3d4b5f914cf6f4fac4b783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11cae69c9a3d4b5f914cf6f4fac4b783.jpg", "file_size": 37450, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布016-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11cae69c9a3d4b5f914cf6f4fac4b783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11cae69c9a3d4b5f914cf6f4fac4b783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11cae69c9a3d4b5f914cf6f4fac4b783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11cae69c9a3d4b5f914cf6f4fac4b783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11cae69c9a3d4b5f914cf6f4fac4b783.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIpNy2RmH-KKP_F5hUXUKJWaWqM=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.215301+00 2025-12-09 10:15:06.215306+00 10080 LZ1267#背心款1号色 SPMX-20240815305264 \N \N \N 1 \N [{"file_id": "1d4a3290-dea1-4bc7-983d-85f5944245a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c24216073f23497d98a1d1584eaf41a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c24216073f23497d98a1d1584eaf41a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c24216073f23497d98a1d1584eaf41a3.jpg", "file_size": 20895, "is_delete": false, "file_type": 1, "original_file_name": "LZ1267#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24216073f23497d98a1d1584eaf41a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24216073f23497d98a1d1584eaf41a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24216073f23497d98a1d1584eaf41a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c24216073f23497d98a1d1584eaf41a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c24216073f23497d98a1d1584eaf41a3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rdQvsigV8AJq57IudSpq15tsgMc=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.217348+00 2025-12-09 10:15:06.217353+00 10081 DL30504#原版色XL SPMX-20240815305259 \N \N \N 1 \N [{"file_id": "38dde1a4-ef5c-4db3-96ec-d796fcf73442", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192a488143204048b6b59a23d8f4165e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192a488143204048b6b59a23d8f4165e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192a488143204048b6b59a23d8f4165e.jpg", "file_size": 20579, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#原版色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a488143204048b6b59a23d8f4165e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a488143204048b6b59a23d8f4165e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192a488143204048b6b59a23d8f4165e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192a488143204048b6b59a23d8f4165e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192a488143204048b6b59a23d8f4165e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4q5JDrAMwda0_kkfGmvR-Zk75OQ=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.219409+00 2025-12-09 10:15:06.219413+00 10082 23-2116#A12-领子3XL SPMX-20240815305265 \N \N \N 1 \N [{"file_id": "03ee4a99-7c6f-4ce0-acf7-2245df12f495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "632f5189afab44e09846b75509a718f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "632f5189afab44e09846b75509a718f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "632f5189afab44e09846b75509a718f4.jpg", "file_size": 11747, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632f5189afab44e09846b75509a718f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632f5189afab44e09846b75509a718f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632f5189afab44e09846b75509a718f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/632f5189afab44e09846b75509a718f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/632f5189afab44e09846b75509a718f4.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJHTGDgPxbeIVue5RW-u5_Ox9BA=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.221924+00 2025-12-09 10:15:06.22193+00 10083 JTSS171FW#VS-D3 SPMX-20240815305266 \N \N \N 1 \N [{"file_id": "ea68ca93-c692-49ce-ba62-1e1198ea73e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c850808eefbd4abaa505ab1fa580c95b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c850808eefbd4abaa505ab1fa580c95b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c850808eefbd4abaa505ab1fa580c95b.jpg", "file_size": 13089, "is_delete": false, "file_type": 1, "original_file_name": "JTSS171FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c850808eefbd4abaa505ab1fa580c95b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c850808eefbd4abaa505ab1fa580c95b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c850808eefbd4abaa505ab1fa580c95b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c850808eefbd4abaa505ab1fa580c95b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c850808eefbd4abaa505ab1fa580c95b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wo8q562uNsN662X2PcrjU54Res=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.224342+00 2025-12-09 10:15:06.224347+00 10084 HT024FW#蓝VS-D3 SPMX-20240815305252 \N \N \N 1 \N [{"file_id": "edf3ce0b-43a3-4aa1-9664-174d6cdb46d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf469bc3fd747b180bd54ea5a11b063.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf469bc3fd747b180bd54ea5a11b063.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf469bc3fd747b180bd54ea5a11b063.jpg", "file_size": 16611, "is_delete": false, "file_type": 1, "original_file_name": "HT024FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf469bc3fd747b180bd54ea5a11b063.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf469bc3fd747b180bd54ea5a11b063.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf469bc3fd747b180bd54ea5a11b063.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf469bc3fd747b180bd54ea5a11b063.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf469bc3fd747b180bd54ea5a11b063.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0McOeMhGeHqmX54I9T8-G2RAYo=", "createTime": "2024-08-15 14:49:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.226613+00 2025-12-09 10:15:06.226617+00 10085 0003-470#WJC322 SPMX-20240815305260 \N \N \N 1 \N [{"file_id": "c19a2e73-42cd-4fd7-b743-1533393ce90c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0d8f9f89ec44dc78ff93be56a63699c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0d8f9f89ec44dc78ff93be56a63699c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0d8f9f89ec44dc78ff93be56a63699c.jpg", "file_size": 18418, "is_delete": false, "file_type": 1, "original_file_name": "0003-470#WJC322.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d8f9f89ec44dc78ff93be56a63699c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d8f9f89ec44dc78ff93be56a63699c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d8f9f89ec44dc78ff93be56a63699c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0d8f9f89ec44dc78ff93be56a63699c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0d8f9f89ec44dc78ff93be56a63699c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMcqJ42jtUel-eN2nnDjP5d71X0=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.23054+00 2025-12-09 10:15:06.230544+00 10087 JTSS170FW#VS-D3 SPMX-20240815305255 \N \N \N 1 \N [{"file_id": "0b9bbbce-dc51-4bc2-8a6d-9cc5af76fb91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d863ba0abf764eee92d687b8b65c3fc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d863ba0abf764eee92d687b8b65c3fc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d863ba0abf764eee92d687b8b65c3fc8.jpg", "file_size": 14290, "is_delete": false, "file_type": 1, "original_file_name": "JTSS170FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d863ba0abf764eee92d687b8b65c3fc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d863ba0abf764eee92d687b8b65c3fc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d863ba0abf764eee92d687b8b65c3fc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d863ba0abf764eee92d687b8b65c3fc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d863ba0abf764eee92d687b8b65c3fc8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XA-vakwTHWiKPEbVix9ZFx-TZKI=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.232477+00 2025-12-09 10:15:06.232482+00 10088 1088#粉色 SPMX-20240815305257 \N \N \N 1 \N [{"file_id": "34faacf4-00b1-48c7-9921-781d8c679f07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg", "file_size": 13879, "is_delete": false, "file_type": 1, "original_file_name": "1088#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec46f6ab5d2f43bc8a6d19ccf6fae135.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1iCj0J69OFm5RklGktQpptQo_5M=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.234388+00 2025-12-09 10:15:06.234392+00 10089 C353#-原版色#LWQ15 SPMX-20240815305258 \N \N \N 1 \N [{"file_id": "4d04605e-c00c-40d9-8c3d-43cc0f0592df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85728f8de2a147f19ac19554ab7fb1d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85728f8de2a147f19ac19554ab7fb1d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85728f8de2a147f19ac19554ab7fb1d1.jpg", "file_size": 16487, "is_delete": false, "file_type": 1, "original_file_name": "C353#-原版色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85728f8de2a147f19ac19554ab7fb1d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85728f8de2a147f19ac19554ab7fb1d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85728f8de2a147f19ac19554ab7fb1d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85728f8de2a147f19ac19554ab7fb1d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85728f8de2a147f19ac19554ab7fb1d1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17rgew8d-qcRlZ-XHd2LXfcc5EU=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.236021+00 2025-12-09 10:15:06.236025+00 10090 LJ9920FW#短卡S VS-D3 SPMX-20240815305263 \N \N \N 1 \N [{"file_id": "72a9e51b-d816-485a-a197-6099c74e7165", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b02824f982248d191387b7a8a52885c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b02824f982248d191387b7a8a52885c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b02824f982248d191387b7a8a52885c.jpg", "file_size": 15509, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短卡S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b02824f982248d191387b7a8a52885c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b02824f982248d191387b7a8a52885c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b02824f982248d191387b7a8a52885c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b02824f982248d191387b7a8a52885c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b02824f982248d191387b7a8a52885c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AF9wwCEq84SFwmBv8scAHb8qYb0=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.237644+00 2025-12-09 10:15:06.237648+00 10091 LJ9920FW#短卡M VS-D3 SPMX-20240815305251 \N \N \N 1 \N [{"file_id": "e6b6ba05-cd3e-456c-9745-5cbb0044c179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196addf62db841708f4f44b6e255853d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196addf62db841708f4f44b6e255853d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196addf62db841708f4f44b6e255853d.jpg", "file_size": 16392, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短卡M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196addf62db841708f4f44b6e255853d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196addf62db841708f4f44b6e255853d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196addf62db841708f4f44b6e255853d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196addf62db841708f4f44b6e255853d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196addf62db841708f4f44b6e255853d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XdaLh6a7acbvnl1XpGLBmOrWTY=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.239302+00 2025-12-09 10:15:06.239306+00 10092 LZ1266#背心款5号色 SPMX-20240815305253 \N \N \N 1 \N [{"file_id": "aa3e676b-bb78-4924-869a-2e8c655aa0b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99fb6bbf4813444eb2f04b316c71a816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99fb6bbf4813444eb2f04b316c71a816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99fb6bbf4813444eb2f04b316c71a816.jpg", "file_size": 19395, "is_delete": false, "file_type": 1, "original_file_name": "LZ1266#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99fb6bbf4813444eb2f04b316c71a816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99fb6bbf4813444eb2f04b316c71a816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99fb6bbf4813444eb2f04b316c71a816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99fb6bbf4813444eb2f04b316c71a816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99fb6bbf4813444eb2f04b316c71a816.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8Lq_u77_-SxXdFMA1GE6grrgYM=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.24113+00 2025-12-09 10:15:06.241135+00 10093 23-2116#A12-4XL SPMX-20240815305254 \N \N \N 1 \N [{"file_id": "fc94a9cc-3f16-44b2-9f2b-081ab68d8c83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ede04f67e84798b3820017e4235d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ede04f67e84798b3820017e4235d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ede04f67e84798b3820017e4235d74.jpg", "file_size": 17912, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ede04f67e84798b3820017e4235d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ede04f67e84798b3820017e4235d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ede04f67e84798b3820017e4235d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ede04f67e84798b3820017e4235d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ede04f67e84798b3820017e4235d74.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7AQFvTsW-kwzrJIq8NQRlD5P8I=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.242732+00 2025-12-09 10:15:06.242736+00 10094 8096#粉色短款袖子 SPMX-20240815305261 \N \N \N 1 \N [{"file_id": "222782ae-222c-40ec-ad11-1a25709a153c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cf673e38bd241e9bc6ee87f81399314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cf673e38bd241e9bc6ee87f81399314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cf673e38bd241e9bc6ee87f81399314.jpg", "file_size": 12613, "is_delete": false, "file_type": 1, "original_file_name": "8096#粉色短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf673e38bd241e9bc6ee87f81399314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf673e38bd241e9bc6ee87f81399314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf673e38bd241e9bc6ee87f81399314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cf673e38bd241e9bc6ee87f81399314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cf673e38bd241e9bc6ee87f81399314.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzkwzlQHoCjWaPD2uTe_URkO3ho=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.244334+00 2025-12-09 10:15:06.244338+00 10095 0003-471#WJC22 SPMX-20240815305270 \N \N \N 1 \N [{"file_id": "85c3b7ad-8170-4b00-ad3e-0765d5b47b32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f53914f436e64c5682e49aa7bcb452ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f53914f436e64c5682e49aa7bcb452ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f53914f436e64c5682e49aa7bcb452ca.jpg", "file_size": 19911, "is_delete": false, "file_type": 1, "original_file_name": "0003-471#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53914f436e64c5682e49aa7bcb452ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53914f436e64c5682e49aa7bcb452ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53914f436e64c5682e49aa7bcb452ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f53914f436e64c5682e49aa7bcb452ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f53914f436e64c5682e49aa7bcb452ca.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9MJCyfgZSC-nI-xIqh6SHwykf_0=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.246183+00 2025-12-09 10:15:06.246187+00 10096 C353#-大白#LWQ15 SPMX-20240815305278 \N \N \N 1 \N [{"file_id": "2928bfc5-42f7-4774-b812-d990990cd03f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7671b8bd2334c308ef3a071ec7e01f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7671b8bd2334c308ef3a071ec7e01f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7671b8bd2334c308ef3a071ec7e01f9.jpg", "file_size": 15682, "is_delete": false, "file_type": 1, "original_file_name": "C353#-大白#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7671b8bd2334c308ef3a071ec7e01f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7671b8bd2334c308ef3a071ec7e01f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7671b8bd2334c308ef3a071ec7e01f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7671b8bd2334c308ef3a071ec7e01f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7671b8bd2334c308ef3a071ec7e01f9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWY33GVG2UPMltnfcOMkQLKXPDU=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.247806+00 2025-12-09 10:15:06.247811+00 10097 23-2116#A12-领子4XL SPMX-20240815305276 \N \N \N 1 \N [{"file_id": "c123aba8-7af6-4ea3-9821-2eefa0fa2c8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg", "file_size": 12102, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ecc52ccadcb42c5b9706bb1f5f7ef12.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8K4e4fL0SN8-eHptvi5GGGETrc=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.249425+00 2025-12-09 10:15:06.249429+00 10098 109#-杏色 SPMX-20240815305279 \N \N \N 1 \N [{"file_id": "ca8749db-79b1-49b4-b77e-0c8f3a7524bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "261ba6a87f904832828ced5d7b37700c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "261ba6a87f904832828ced5d7b37700c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "261ba6a87f904832828ced5d7b37700c.jpg", "file_size": 57646, "is_delete": false, "file_type": 1, "original_file_name": "109#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/261ba6a87f904832828ced5d7b37700c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/261ba6a87f904832828ced5d7b37700c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/261ba6a87f904832828ced5d7b37700c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/261ba6a87f904832828ced5d7b37700c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/261ba6a87f904832828ced5d7b37700c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FibV18A4VwABytFvsugDrR0LEo=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.251219+00 2025-12-09 10:15:06.251223+00 10099 LZ1267#背心款2号色 SPMX-20240815305275 \N \N \N 1 \N [{"file_id": "3e97ba7b-a8bd-4fb3-958d-9fd24a8b46d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2931d46d196f4c6189928d5673c9e7f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2931d46d196f4c6189928d5673c9e7f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2931d46d196f4c6189928d5673c9e7f6.jpg", "file_size": 20874, "is_delete": false, "file_type": 1, "original_file_name": "LZ1267#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2931d46d196f4c6189928d5673c9e7f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2931d46d196f4c6189928d5673c9e7f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2931d46d196f4c6189928d5673c9e7f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2931d46d196f4c6189928d5673c9e7f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2931d46d196f4c6189928d5673c9e7f6.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30hNH5ooAkmWed6gWGhsaWGr8LA=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.252862+00 2025-12-09 10:15:06.252866+00 10100 LJ9920FW#短卡XL VS-D3 SPMX-20240815305274 \N \N \N 1 \N [{"file_id": "39e37b0b-3c9d-4577-bce2-447ef2c13593", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a5c652d82744ffbb6f37a56904ae4ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a5c652d82744ffbb6f37a56904ae4ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a5c652d82744ffbb6f37a56904ae4ab.jpg", "file_size": 16842, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短卡XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5c652d82744ffbb6f37a56904ae4ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5c652d82744ffbb6f37a56904ae4ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5c652d82744ffbb6f37a56904ae4ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a5c652d82744ffbb6f37a56904ae4ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a5c652d82744ffbb6f37a56904ae4ab.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHP1IMdY6YJ4GVVT22o8EDsbNgU=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.254464+00 2025-12-09 10:15:06.254468+00 10101 FHXGPK-批布016-2 SPMX-20240815305268 \N \N \N 1 \N [{"file_id": "ccdb4bd9-7851-4abd-8fed-c544928bd5f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f68a2193f2a4cc2b320c57a5be5206a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f68a2193f2a4cc2b320c57a5be5206a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f68a2193f2a4cc2b320c57a5be5206a.jpg", "file_size": 46825, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布016-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f68a2193f2a4cc2b320c57a5be5206a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f68a2193f2a4cc2b320c57a5be5206a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f68a2193f2a4cc2b320c57a5be5206a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f68a2193f2a4cc2b320c57a5be5206a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f68a2193f2a4cc2b320c57a5be5206a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzLwmdwMuaSkrx17lvuOEgEIHQU=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.256291+00 2025-12-09 10:15:06.256295+00 10102 DL30504#大红2XL SPMX-20240815305271 \N \N \N 1 \N [{"file_id": "1351f0c0-62ef-4501-ba7f-e9ab481ae7dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4ee342c25934e0e92777fdc327c9adf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4ee342c25934e0e92777fdc327c9adf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4ee342c25934e0e92777fdc327c9adf.jpg", "file_size": 20394, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#大红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ee342c25934e0e92777fdc327c9adf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ee342c25934e0e92777fdc327c9adf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ee342c25934e0e92777fdc327c9adf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4ee342c25934e0e92777fdc327c9adf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4ee342c25934e0e92777fdc327c9adf.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDbOD7VUGoS32TxtaMBc-9MKtZo=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.257899+00 2025-12-09 10:15:06.257904+00 10103 1089FWE#VS-D3 SPMX-20240815305267 \N \N \N 1 \N [{"file_id": "ab16e6af-8782-4360-a4b2-6dcc90955260", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "531fb734222b4568b357dba13e4c3b30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "531fb734222b4568b357dba13e4c3b30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "531fb734222b4568b357dba13e4c3b30.jpg", "file_size": 21071, "is_delete": false, "file_type": 1, "original_file_name": "1089FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531fb734222b4568b357dba13e4c3b30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531fb734222b4568b357dba13e4c3b30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531fb734222b4568b357dba13e4c3b30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/531fb734222b4568b357dba13e4c3b30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/531fb734222b4568b357dba13e4c3b30.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fy-ksdFcOGRyBK_YWcXM2KYh3k=", "createTime": "2024-08-15 14:49:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.259512+00 2025-12-09 10:15:06.259516+00 10104 JTSS172FW#VS-D3 SPMX-20240815305277 \N \N \N 1 \N [{"file_id": "fded5d91-8f37-47a3-a7be-811c2d01c806", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cca36d5137a54e85b44c5447507ef8e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cca36d5137a54e85b44c5447507ef8e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cca36d5137a54e85b44c5447507ef8e2.jpg", "file_size": 7060, "is_delete": false, "file_type": 1, "original_file_name": "JTSS172FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cca36d5137a54e85b44c5447507ef8e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cca36d5137a54e85b44c5447507ef8e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cca36d5137a54e85b44c5447507ef8e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cca36d5137a54e85b44c5447507ef8e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cca36d5137a54e85b44c5447507ef8e2.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3ZAfXFN_Syi3GBxFSwkbEvbs4w=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.261254+00 2025-12-09 10:15:06.261259+00 10105 8096#黄色上身 SPMX-20240815305272 \N \N \N 1 \N [{"file_id": "002a2d2b-5af2-402c-b28d-756f1d698365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e3b8210411a4cdc819d0bd7f48c4bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e3b8210411a4cdc819d0bd7f48c4bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e3b8210411a4cdc819d0bd7f48c4bff.jpg", "file_size": 19133, "is_delete": false, "file_type": 1, "original_file_name": "8096#黄色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3b8210411a4cdc819d0bd7f48c4bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3b8210411a4cdc819d0bd7f48c4bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3b8210411a4cdc819d0bd7f48c4bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e3b8210411a4cdc819d0bd7f48c4bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e3b8210411a4cdc819d0bd7f48c4bff.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L4n9Abvrx0a9gMKZBNmGFZzyGfk=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.262853+00 2025-12-09 10:15:06.262857+00 10106 HT024FWE#VS-D3 SPMX-20240815305273 \N \N \N 1 \N [{"file_id": "b0524cde-29b7-4937-acb6-7d92cf8eeeb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e66cb7081905400ca479b4967e02cf8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e66cb7081905400ca479b4967e02cf8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e66cb7081905400ca479b4967e02cf8c.jpg", "file_size": 16813, "is_delete": false, "file_type": 1, "original_file_name": "HT024FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66cb7081905400ca479b4967e02cf8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66cb7081905400ca479b4967e02cf8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66cb7081905400ca479b4967e02cf8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e66cb7081905400ca479b4967e02cf8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e66cb7081905400ca479b4967e02cf8c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gxynO3n4sNOzzYl6IrvkGYbAvQ=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.264471+00 2025-12-09 10:15:06.264475+00 10107 C353#-墨绿#LWQ15 SPMX-20240815305269 \N \N \N 1 \N [{"file_id": "02a3949a-fa37-4386-a21c-fe89a5ed0dec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3754b10782bf43838ebd13db7af5ddd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3754b10782bf43838ebd13db7af5ddd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3754b10782bf43838ebd13db7af5ddd1.jpg", "file_size": 18053, "is_delete": false, "file_type": 1, "original_file_name": "C353#-墨绿#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3754b10782bf43838ebd13db7af5ddd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3754b10782bf43838ebd13db7af5ddd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3754b10782bf43838ebd13db7af5ddd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3754b10782bf43838ebd13db7af5ddd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3754b10782bf43838ebd13db7af5ddd1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QeACuFa-dpxDxUlaf_1eHyf5aQY=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.266311+00 2025-12-09 10:15:06.266319+00 10108 HT025FW#VS-D3 SPMX-20240815305284 \N \N \N 1 \N [{"file_id": "8b3e27b0-e2f3-4527-bdf1-84e4f326c6fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c203fb1a29d4ddf86fdd608df1af59f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c203fb1a29d4ddf86fdd608df1af59f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c203fb1a29d4ddf86fdd608df1af59f.jpg", "file_size": 11469, "is_delete": false, "file_type": 1, "original_file_name": "HT025FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c203fb1a29d4ddf86fdd608df1af59f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c203fb1a29d4ddf86fdd608df1af59f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c203fb1a29d4ddf86fdd608df1af59f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c203fb1a29d4ddf86fdd608df1af59f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c203fb1a29d4ddf86fdd608df1af59f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YfIy_2hGQ0GlGWksQQLj6v_ckY=", "createTime": "2024-08-15 14:49:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.267947+00 2025-12-09 10:15:06.267951+00 10109 FHXGPK-批布016-3 SPMX-20240815305282 \N \N \N 1 \N [{"file_id": "9149b6ea-564f-48a9-9a7f-50c85314b2e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf4e0feed5ce473b8fa2dcf3a7e39233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf4e0feed5ce473b8fa2dcf3a7e39233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf4e0feed5ce473b8fa2dcf3a7e39233.jpg", "file_size": 37476, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布016-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e0feed5ce473b8fa2dcf3a7e39233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e0feed5ce473b8fa2dcf3a7e39233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4e0feed5ce473b8fa2dcf3a7e39233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf4e0feed5ce473b8fa2dcf3a7e39233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf4e0feed5ce473b8fa2dcf3a7e39233.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lI_YOizFfFA6IsLGEYJdAyEwTd0=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.269555+00 2025-12-09 10:15:06.26956+00 10110 8096#黄色短款袖子 SPMX-20240815305283 \N \N \N 1 \N [{"file_id": "1ae23d27-55e6-4db0-9d18-417387cb6279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "832b8d969cf8493298c3d895c791ed2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "832b8d969cf8493298c3d895c791ed2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "832b8d969cf8493298c3d895c791ed2b.jpg", "file_size": 13406, "is_delete": false, "file_type": 1, "original_file_name": "8096#黄色短款袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832b8d969cf8493298c3d895c791ed2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832b8d969cf8493298c3d895c791ed2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832b8d969cf8493298c3d895c791ed2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/832b8d969cf8493298c3d895c791ed2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/832b8d969cf8493298c3d895c791ed2b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swtMxrVOYtHJHO7L9Hqrs8cibAQ=", "createTime": "2024-08-15 14:49:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.271346+00 2025-12-09 10:15:06.27135+00 10111 0003-47FWF#WJC22 SPMX-20240815305281 \N \N \N 1 \N [{"file_id": "137dd752-2aab-4fd7-83e6-5b4b61ac6781", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d38f17742382461abbf86b4a9873ab24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d38f17742382461abbf86b4a9873ab24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d38f17742382461abbf86b4a9873ab24.jpg", "file_size": 22781, "is_delete": false, "file_type": 1, "original_file_name": "0003-47FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38f17742382461abbf86b4a9873ab24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38f17742382461abbf86b4a9873ab24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d38f17742382461abbf86b4a9873ab24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d38f17742382461abbf86b4a9873ab24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d38f17742382461abbf86b4a9873ab24.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XHcfqks_yIhjN9PXK7SaJHS1XlY=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.272945+00 2025-12-09 10:15:06.27295+00 10112 DL30504#大红L SPMX-20240815305280 \N \N \N 1 \N [{"file_id": "a0ee7a78-623e-46d4-82ce-097359ca5a22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b27b0937049044b0a8e67bf232c02110.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b27b0937049044b0a8e67bf232c02110.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b27b0937049044b0a8e67bf232c02110.jpg", "file_size": 24923, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#大红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b0937049044b0a8e67bf232c02110.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b0937049044b0a8e67bf232c02110.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b0937049044b0a8e67bf232c02110.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b27b0937049044b0a8e67bf232c02110.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b27b0937049044b0a8e67bf232c02110.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnJObdQMTVSi---4gYfgPOSweqg=", "createTime": "2024-08-15 14:49:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.27468+00 2025-12-09 10:15:06.274685+00 10113 0003-48FWF#V5曲线 SPMX-20240815305288 \N \N \N 1 \N [{"file_id": "3bd2b3e5-7881-4131-9078-4d7d2c5bf6df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02a7d4532f9409090d693a7b00345e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02a7d4532f9409090d693a7b00345e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02a7d4532f9409090d693a7b00345e0.jpg", "file_size": 17911, "is_delete": false, "file_type": 1, "original_file_name": "0003-48FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02a7d4532f9409090d693a7b00345e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02a7d4532f9409090d693a7b00345e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02a7d4532f9409090d693a7b00345e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02a7d4532f9409090d693a7b00345e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02a7d4532f9409090d693a7b00345e0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hedd3mtrW8kjyckPTJPU2LFRANU=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.276555+00 2025-12-09 10:15:06.27656+00 10114 23-2116#A1前后片3XL码 SPMX-20240815305289 \N \N \N 1 \N [{"file_id": "4deca2cc-0d3e-4db0-a5be-317eb221fae0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b31c97855f4fed9d9d92906e9bf88a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b31c97855f4fed9d9d92906e9bf88a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b31c97855f4fed9d9d92906e9bf88a.jpg", "file_size": 16169, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1前后片3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b31c97855f4fed9d9d92906e9bf88a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b31c97855f4fed9d9d92906e9bf88a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b31c97855f4fed9d9d92906e9bf88a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b31c97855f4fed9d9d92906e9bf88a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b31c97855f4fed9d9d92906e9bf88a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0IleiIhxJLcPq53bzM_E7wUhRU=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.278397+00 2025-12-09 10:15:06.278401+00 10115 HT025FWE#VS-D3 SPMX-20240815305292 \N \N \N 1 \N [{"file_id": "d1288d87-48db-4811-9fca-7a36be01809a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b43a134ad6e44dc9d89790a7b23c40c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b43a134ad6e44dc9d89790a7b23c40c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b43a134ad6e44dc9d89790a7b23c40c.jpg", "file_size": 23625, "is_delete": false, "file_type": 1, "original_file_name": "HT025FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b43a134ad6e44dc9d89790a7b23c40c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b43a134ad6e44dc9d89790a7b23c40c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b43a134ad6e44dc9d89790a7b23c40c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b43a134ad6e44dc9d89790a7b23c40c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b43a134ad6e44dc9d89790a7b23c40c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3LEy3qpgs4v6lg68O3QjtVNpKs=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.280008+00 2025-12-09 10:15:06.280012+00 10116 LJ9920FW#短灰L VS-D3 SPMX-20240815305296 \N \N \N 1 \N [{"file_id": "8331c6f7-218d-4b7e-8ac7-da3a8df59113", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfb46f28c70d44e8b2f9a9011bd85868.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfb46f28c70d44e8b2f9a9011bd85868.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfb46f28c70d44e8b2f9a9011bd85868.jpg", "file_size": 14147, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短灰L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb46f28c70d44e8b2f9a9011bd85868.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb46f28c70d44e8b2f9a9011bd85868.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb46f28c70d44e8b2f9a9011bd85868.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfb46f28c70d44e8b2f9a9011bd85868.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfb46f28c70d44e8b2f9a9011bd85868.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1lj49q7BPFStwyQCgSG3ChaUog=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.28163+00 2025-12-09 10:15:06.281634+00 10117 8098FWF#土黄短款下摆 SPMX-20240815305298 \N \N \N 1 \N [{"file_id": "986ebef0-28be-4981-8a6e-08127a8666dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf0b7238c75f436893dae143a7e682b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf0b7238c75f436893dae143a7e682b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf0b7238c75f436893dae143a7e682b8.jpg", "file_size": 17068, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#土黄短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0b7238c75f436893dae143a7e682b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0b7238c75f436893dae143a7e682b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0b7238c75f436893dae143a7e682b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf0b7238c75f436893dae143a7e682b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf0b7238c75f436893dae143a7e682b8.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c048uzGD-XTyQotLNiekZclsbbQ=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.28349+00 2025-12-09 10:15:06.283494+00 10118 23-2116#A1前后片4XL码 SPMX-20240815305299 \N \N \N 1 \N [{"file_id": "92a9757c-86aa-416f-a2a6-1acbc363e10c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f07d514c6e324bccad267616d945c859.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f07d514c6e324bccad267616d945c859.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f07d514c6e324bccad267616d945c859.jpg", "file_size": 16788, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1前后片4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07d514c6e324bccad267616d945c859.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07d514c6e324bccad267616d945c859.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07d514c6e324bccad267616d945c859.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f07d514c6e324bccad267616d945c859.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f07d514c6e324bccad267616d945c859.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDb-nCo1o0sTC_l2v92RgN_O0SE=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.285314+00 2025-12-09 10:15:06.285318+00 10119 LJ9920FW#短灰2XL VS-D3 SPMX-20240815305286 \N \N \N 1 \N [{"file_id": "e33cbab1-2875-4361-aec4-da1303cd67f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fe4ff5bba884b46a017add171c75188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fe4ff5bba884b46a017add171c75188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fe4ff5bba884b46a017add171c75188.jpg", "file_size": 14283, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短灰2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4ff5bba884b46a017add171c75188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4ff5bba884b46a017add171c75188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4ff5bba884b46a017add171c75188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fe4ff5bba884b46a017add171c75188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fe4ff5bba884b46a017add171c75188.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xBCFH2C0s4sIASeV0QXHahcgUQ0=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.286937+00 2025-12-09 10:15:06.286941+00 10120 FHXGPK-批布016-4 SPMX-20240815305293 \N \N \N 1 \N [{"file_id": "d0532456-b160-46a4-9651-549f1dca270c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c56e6be7f1046f3905f08495952bf59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c56e6be7f1046f3905f08495952bf59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c56e6be7f1046f3905f08495952bf59.jpg", "file_size": 42017, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布016-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c56e6be7f1046f3905f08495952bf59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c56e6be7f1046f3905f08495952bf59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c56e6be7f1046f3905f08495952bf59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c56e6be7f1046f3905f08495952bf59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c56e6be7f1046f3905f08495952bf59.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEpAQaULWAD-tsdwrvSSeP8Kam4=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.28854+00 2025-12-09 10:15:06.288544+00 10121 C353#-玫红#LWQ15 SPMX-20240815305294 \N \N \N 1 \N [{"file_id": "47916deb-2db9-4858-aa4a-935cc35dda61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2af82eaac985464e8a7ab3184607a53b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2af82eaac985464e8a7ab3184607a53b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2af82eaac985464e8a7ab3184607a53b.jpg", "file_size": 16051, "is_delete": false, "file_type": 1, "original_file_name": "C353#-玫红#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af82eaac985464e8a7ab3184607a53b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af82eaac985464e8a7ab3184607a53b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af82eaac985464e8a7ab3184607a53b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2af82eaac985464e8a7ab3184607a53b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2af82eaac985464e8a7ab3184607a53b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJtDbrt0wfqrSVY6WZXVB2twj3E=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.290463+00 2025-12-09 10:15:06.290467+00 10122 LZ1267#背心款4号色 SPMX-20240815305295 \N \N \N 1 \N [{"file_id": "24130a86-6350-4673-922b-2fa3f925790a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391f3fbbfca0437c9a825a09fe99074a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391f3fbbfca0437c9a825a09fe99074a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391f3fbbfca0437c9a825a09fe99074a.jpg", "file_size": 20817, "is_delete": false, "file_type": 1, "original_file_name": "LZ1267#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391f3fbbfca0437c9a825a09fe99074a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391f3fbbfca0437c9a825a09fe99074a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391f3fbbfca0437c9a825a09fe99074a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391f3fbbfca0437c9a825a09fe99074a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391f3fbbfca0437c9a825a09fe99074a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQ-AgqG_UfeAamkA41et9_xskS0=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.292059+00 2025-12-09 10:15:06.292062+00 10123 8098FWF#土黄短款上身 SPMX-20240815305287 \N \N \N 1 \N [{"file_id": "24d4b9d1-cf10-4102-9d0b-391b183dad6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef486a0abbe94a839dde68a44e1e96db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef486a0abbe94a839dde68a44e1e96db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef486a0abbe94a839dde68a44e1e96db.jpg", "file_size": 14008, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#土黄短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef486a0abbe94a839dde68a44e1e96db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef486a0abbe94a839dde68a44e1e96db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef486a0abbe94a839dde68a44e1e96db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef486a0abbe94a839dde68a44e1e96db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef486a0abbe94a839dde68a44e1e96db.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8S9RwkVC_KgCtpIHnvCPQqGvuw=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.293672+00 2025-12-09 10:15:06.293676+00 10124 LZ1267#背心款3号色 SPMX-20240815305285 \N \N \N 1 \N [{"file_id": "535d96a9-850e-4eb3-b2a8-42f1cab97436", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6e787b5e4ff40dba1523a825f7b1186.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6e787b5e4ff40dba1523a825f7b1186.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6e787b5e4ff40dba1523a825f7b1186.jpg", "file_size": 20475, "is_delete": false, "file_type": 1, "original_file_name": "LZ1267#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e787b5e4ff40dba1523a825f7b1186.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e787b5e4ff40dba1523a825f7b1186.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e787b5e4ff40dba1523a825f7b1186.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6e787b5e4ff40dba1523a825f7b1186.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6e787b5e4ff40dba1523a825f7b1186.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epMjXiKzBgYelPH8qiEZZGDDDUk=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.29551+00 2025-12-09 10:15:06.295514+00 10125 0003-49FWF#V5曲线 SPMX-20240815305297 \N \N \N 1 \N [{"file_id": "06d6b7d1-ab57-4c14-8e79-8717fc7cffb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "602bf6406d224d21b9508682373bff85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "602bf6406d224d21b9508682373bff85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "602bf6406d224d21b9508682373bff85.jpg", "file_size": 22282, "is_delete": false, "file_type": 1, "original_file_name": "0003-49FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602bf6406d224d21b9508682373bff85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602bf6406d224d21b9508682373bff85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/602bf6406d224d21b9508682373bff85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/602bf6406d224d21b9508682373bff85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/602bf6406d224d21b9508682373bff85.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJFU9cMyQGCH4n9FJ44gMKlN4yo=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.297237+00 2025-12-09 10:15:06.297241+00 10126 109#-灰色 SPMX-20240815305290 \N \N \N 1 \N [{"file_id": "78d9a245-743f-4cbb-84b5-87544260fa7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ece8d0d980384728bffc7984efafd761.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ece8d0d980384728bffc7984efafd761.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ece8d0d980384728bffc7984efafd761.jpg", "file_size": 62229, "is_delete": false, "file_type": 1, "original_file_name": "109#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece8d0d980384728bffc7984efafd761.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece8d0d980384728bffc7984efafd761.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece8d0d980384728bffc7984efafd761.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ece8d0d980384728bffc7984efafd761.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ece8d0d980384728bffc7984efafd761.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68UgecxU-VjJPAIDLVW33dNlL1o=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.299038+00 2025-12-09 10:15:06.299043+00 10127 DL30504#大红XL SPMX-20240815305291 \N \N \N 1 \N [{"file_id": "e359836c-270e-4c5b-a1ba-723fe86ee30d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95ecec6f5c7344118e04b9c64d91698b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95ecec6f5c7344118e04b9c64d91698b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95ecec6f5c7344118e04b9c64d91698b.jpg", "file_size": 20220, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#大红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ecec6f5c7344118e04b9c64d91698b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ecec6f5c7344118e04b9c64d91698b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ecec6f5c7344118e04b9c64d91698b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95ecec6f5c7344118e04b9c64d91698b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95ecec6f5c7344118e04b9c64d91698b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vg4u1Qk_TP_SILwiC7j8gzR1nuI=", "createTime": "2024-08-15 14:49:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.30069+00 2025-12-09 10:15:06.300695+00 10128 HT026FW#VS-D3 SPMX-20240815305301 \N \N \N 1 \N [{"file_id": "e1503b83-a55d-466e-9864-933f3957d138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "613a3a67186c41f380ebc09fc6a5046e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "613a3a67186c41f380ebc09fc6a5046e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "613a3a67186c41f380ebc09fc6a5046e.jpg", "file_size": 12564, "is_delete": false, "file_type": 1, "original_file_name": "HT026FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613a3a67186c41f380ebc09fc6a5046e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613a3a67186c41f380ebc09fc6a5046e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/613a3a67186c41f380ebc09fc6a5046e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/613a3a67186c41f380ebc09fc6a5046e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/613a3a67186c41f380ebc09fc6a5046e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iy8ybdhnYFAf_HT52lLhs9oi2fg=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.302539+00 2025-12-09 10:15:06.302543+00 10129 FHXGPK-批布016-5 SPMX-20240815305304 \N \N \N 1 \N [{"file_id": "df51125a-adce-485d-a989-2dd3d7793a8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f42db16f18b40238bbaa784fe203e3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f42db16f18b40238bbaa784fe203e3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f42db16f18b40238bbaa784fe203e3c.jpg", "file_size": 43938, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布016-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f42db16f18b40238bbaa784fe203e3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f42db16f18b40238bbaa784fe203e3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f42db16f18b40238bbaa784fe203e3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f42db16f18b40238bbaa784fe203e3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f42db16f18b40238bbaa784fe203e3c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FlTSI_3LS3oCDatdKjRFOVvckI=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.304149+00 2025-12-09 10:15:06.304153+00 10130 0003-4FWE#乱花VS-D3 SPMX-20240815305309 \N \N \N 1 \N [{"file_id": "914d9a18-abe1-4926-b290-8607a0a9d104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "028467dbe05246718a93dac1c5feda0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "028467dbe05246718a93dac1c5feda0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "028467dbe05246718a93dac1c5feda0c.jpg", "file_size": 24128, "is_delete": false, "file_type": 1, "original_file_name": "0003-4FWE#乱花VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028467dbe05246718a93dac1c5feda0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028467dbe05246718a93dac1c5feda0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028467dbe05246718a93dac1c5feda0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/028467dbe05246718a93dac1c5feda0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/028467dbe05246718a93dac1c5feda0c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K2XYZHs0urImJ9qfUEXUPlUYczE=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.30577+00 2025-12-09 10:15:06.305774+00 10131 DL30504#彩蓝2XL SPMX-20240815305300 \N \N \N 1 \N [{"file_id": "3b5ff544-a67a-47cb-81b7-d55529829062", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "237908843bdf4b4ba6c50e707b9b5244.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "237908843bdf4b4ba6c50e707b9b5244.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "237908843bdf4b4ba6c50e707b9b5244.jpg", "file_size": 20266, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#彩蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/237908843bdf4b4ba6c50e707b9b5244.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/237908843bdf4b4ba6c50e707b9b5244.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/237908843bdf4b4ba6c50e707b9b5244.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/237908843bdf4b4ba6c50e707b9b5244.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/237908843bdf4b4ba6c50e707b9b5244.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPYV3upEXbbvFZQZmeTAbyAcvb8=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.307606+00 2025-12-09 10:15:06.307611+00 10132 LJ9920FW#短灰M VS-D3 SPMX-20240815305306 \N \N \N 1 \N [{"file_id": "5ec83f68-d21d-4921-bc9d-74208a7289f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0083aa9655d4b3f9ec290720e910510.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0083aa9655d4b3f9ec290720e910510.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0083aa9655d4b3f9ec290720e910510.jpg", "file_size": 14101, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短灰M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0083aa9655d4b3f9ec290720e910510.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0083aa9655d4b3f9ec290720e910510.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0083aa9655d4b3f9ec290720e910510.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0083aa9655d4b3f9ec290720e910510.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0083aa9655d4b3f9ec290720e910510.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMcRWcttxLf2XBdhG-Kvcva-VNY=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.309229+00 2025-12-09 10:15:06.309233+00 10133 23-2116#A1袖子3XL码 SPMX-20240815305307 \N \N \N 1 \N [{"file_id": "5e1b4a8e-7d15-49d3-b3e3-e7678e2c3acc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3469d7bb1df04bce9769dfa8d0e4cbfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3469d7bb1df04bce9769dfa8d0e4cbfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3469d7bb1df04bce9769dfa8d0e4cbfd.jpg", "file_size": 8742, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1袖子3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3469d7bb1df04bce9769dfa8d0e4cbfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3469d7bb1df04bce9769dfa8d0e4cbfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3469d7bb1df04bce9769dfa8d0e4cbfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3469d7bb1df04bce9769dfa8d0e4cbfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3469d7bb1df04bce9769dfa8d0e4cbfd.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ztoMvKkD3LYQMm_TTLpX3eOMx0=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.310869+00 2025-12-09 10:15:06.310874+00 10134 8098FWF#大红短款上身 SPMX-20240815305308 \N \N \N 1 \N [{"file_id": "9d4eeaa9-abee-4e7a-9629-546e8fd4790d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f564921dabdd4830b442f2abbf5d9bd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f564921dabdd4830b442f2abbf5d9bd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f564921dabdd4830b442f2abbf5d9bd0.jpg", "file_size": 14134, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#大红短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f564921dabdd4830b442f2abbf5d9bd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f564921dabdd4830b442f2abbf5d9bd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f564921dabdd4830b442f2abbf5d9bd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f564921dabdd4830b442f2abbf5d9bd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f564921dabdd4830b442f2abbf5d9bd0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rAynlWGbRJnkPIuKxfO2q-fht9I=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.3127+00 2025-12-09 10:15:06.312708+00 10135 LZ1267#背心款5号色 SPMX-20240815305302 \N \N \N 1 \N [{"file_id": "5c0c8971-ce78-45be-bc6c-4a7143231d68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64058cfe510640bea73390ed50e1b043.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64058cfe510640bea73390ed50e1b043.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64058cfe510640bea73390ed50e1b043.jpg", "file_size": 20953, "is_delete": false, "file_type": 1, "original_file_name": "LZ1267#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64058cfe510640bea73390ed50e1b043.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64058cfe510640bea73390ed50e1b043.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64058cfe510640bea73390ed50e1b043.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64058cfe510640bea73390ed50e1b043.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64058cfe510640bea73390ed50e1b043.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qm5uck6ERxco0-HxGZswmtgMMbU=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.314386+00 2025-12-09 10:15:06.314391+00 10136 C353#-黑色#LWQ15 SPMX-20240815305305 \N \N \N 1 \N [{"file_id": "2bea8dda-218d-4062-8303-e8065a3457fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea1a9689b716492a9e5ee060293eb7f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea1a9689b716492a9e5ee060293eb7f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea1a9689b716492a9e5ee060293eb7f5.jpg", "file_size": 18557, "is_delete": false, "file_type": 1, "original_file_name": "C353#-黑色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1a9689b716492a9e5ee060293eb7f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1a9689b716492a9e5ee060293eb7f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1a9689b716492a9e5ee060293eb7f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea1a9689b716492a9e5ee060293eb7f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea1a9689b716492a9e5ee060293eb7f5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DL1Wv2aoevtjFL83FQjAKNtG-yM=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.316095+00 2025-12-09 10:15:06.3161+00 10137 109#-白色 SPMX-20240815305303 \N \N \N 1 \N [{"file_id": "9cb4fa96-d33a-4de2-a3c1-0a7a0cf02f9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134e9ad625f74db5833ad9c45fb8d22b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134e9ad625f74db5833ad9c45fb8d22b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134e9ad625f74db5833ad9c45fb8d22b.jpg", "file_size": 55044, "is_delete": false, "file_type": 1, "original_file_name": "109#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134e9ad625f74db5833ad9c45fb8d22b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134e9ad625f74db5833ad9c45fb8d22b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134e9ad625f74db5833ad9c45fb8d22b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134e9ad625f74db5833ad9c45fb8d22b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134e9ad625f74db5833ad9c45fb8d22b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3EfXV-inliVa8XHb4HRKo85JcUs=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.317767+00 2025-12-09 10:15:06.317771+00 10138 HT026FWE#VS-D3 SPMX-20240815305311 \N \N \N 1 \N [{"file_id": "cc9f739e-f248-4d63-af32-f645cdf94b2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa56371c0cf94a5d8f019e94b7938937.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa56371c0cf94a5d8f019e94b7938937.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa56371c0cf94a5d8f019e94b7938937.jpg", "file_size": 17954, "is_delete": false, "file_type": 1, "original_file_name": "HT026FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa56371c0cf94a5d8f019e94b7938937.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa56371c0cf94a5d8f019e94b7938937.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa56371c0cf94a5d8f019e94b7938937.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa56371c0cf94a5d8f019e94b7938937.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa56371c0cf94a5d8f019e94b7938937.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-65H3d2walaFGjCkiQs2-12qauc=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.319721+00 2025-12-09 10:15:06.319726+00 10139 DL30504#彩蓝L SPMX-20240815305310 \N \N \N 1 \N [{"file_id": "cb00a21e-acee-4d31-849c-808daa0d048f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29e8e0a85cf4433a82a7efa717dd4bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29e8e0a85cf4433a82a7efa717dd4bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29e8e0a85cf4433a82a7efa717dd4bfb.jpg", "file_size": 24287, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e8e0a85cf4433a82a7efa717dd4bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e8e0a85cf4433a82a7efa717dd4bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29e8e0a85cf4433a82a7efa717dd4bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29e8e0a85cf4433a82a7efa717dd4bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29e8e0a85cf4433a82a7efa717dd4bfb.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7sffv5pr633r4gO7f0T0hk0b-I=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.328916+00 2025-12-09 10:15:06.328921+00 10144 109#-粉色 SPMX-20240815305318 \N \N \N 1 \N [{"file_id": "742453f8-4e3e-4bc3-be14-f696d097ca3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "909ef1cda81f46a99533f85044210001.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "909ef1cda81f46a99533f85044210001.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "909ef1cda81f46a99533f85044210001.jpg", "file_size": 53774, "is_delete": false, "file_type": 1, "original_file_name": "109#-粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909ef1cda81f46a99533f85044210001.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909ef1cda81f46a99533f85044210001.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909ef1cda81f46a99533f85044210001.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/909ef1cda81f46a99533f85044210001.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/909ef1cda81f46a99533f85044210001.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-I-nDR7lAkZ59cC6HUUVU5RXVI=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.321433+00 2025-12-09 10:15:06.321438+00 10140 23-2116#A1袖子4XL码 SPMX-20240815305316 \N \N \N 1 \N [{"file_id": "59b562f7-503f-4576-9cef-53d912284b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4f4c4653ab94cbea0e5ee27db13fbed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4f4c4653ab94cbea0e5ee27db13fbed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4f4c4653ab94cbea0e5ee27db13fbed.jpg", "file_size": 10178, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1袖子4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f4c4653ab94cbea0e5ee27db13fbed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f4c4653ab94cbea0e5ee27db13fbed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f4c4653ab94cbea0e5ee27db13fbed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4f4c4653ab94cbea0e5ee27db13fbed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4f4c4653ab94cbea0e5ee27db13fbed.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Si4acH4RQ0Q2uh_oOKx-GE3O3fE=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.323456+00 2025-12-09 10:15:06.323462+00 10141 LZ1268#背心款1号色 SPMX-20240815305312 \N \N \N 1 \N [{"file_id": "1aa0d8f8-ca69-44c8-918d-08463438b4e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320b4a04e2a8463fb37c569e4b0c2072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320b4a04e2a8463fb37c569e4b0c2072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320b4a04e2a8463fb37c569e4b0c2072.jpg", "file_size": 17759, "is_delete": false, "file_type": 1, "original_file_name": "LZ1268#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4a04e2a8463fb37c569e4b0c2072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4a04e2a8463fb37c569e4b0c2072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4a04e2a8463fb37c569e4b0c2072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320b4a04e2a8463fb37c569e4b0c2072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320b4a04e2a8463fb37c569e4b0c2072.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzWDF58WNoVBxci9ZhX8m_OcavU=", "createTime": "2024-08-15 14:49:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.325365+00 2025-12-09 10:15:06.32537+00 10142 FHXGPK-批布017-1 SPMX-20240815305315 \N \N \N 1 \N [{"file_id": "50bc2c69-91a6-421d-90bb-b23733aa7392", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "198d9b4914e44dd7927694896ef43a3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "198d9b4914e44dd7927694896ef43a3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "198d9b4914e44dd7927694896ef43a3f.jpg", "file_size": 60876, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布017-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d9b4914e44dd7927694896ef43a3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d9b4914e44dd7927694896ef43a3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d9b4914e44dd7927694896ef43a3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/198d9b4914e44dd7927694896ef43a3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/198d9b4914e44dd7927694896ef43a3f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NmPFz_jZe85EQHCYOjLa3pNWF2Q=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.327137+00 2025-12-09 10:15:06.327141+00 10143 C357#221#绿 SPMX-20240815305313 \N \N \N 1 \N [{"file_id": "7e5d3e20-bc76-4b05-adba-a47dfb02e282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6aca582aa5044128ed343ad19e72fcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6aca582aa5044128ed343ad19e72fcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6aca582aa5044128ed343ad19e72fcf.jpg", "file_size": 21894, "is_delete": false, "file_type": 1, "original_file_name": "C357#221#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aca582aa5044128ed343ad19e72fcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aca582aa5044128ed343ad19e72fcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aca582aa5044128ed343ad19e72fcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6aca582aa5044128ed343ad19e72fcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6aca582aa5044128ed343ad19e72fcf.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zWG4nO6SqkL5nhvnIp8u0x4_3q4=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.330876+00 2025-12-09 10:15:06.33088+00 10145 LJ9920FW#短灰XL VS-D3 SPMX-20240815305324 \N \N \N 1 \N [{"file_id": "ea98c49f-f5d1-44ee-a18a-d5e9aa6a8f4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "902e20dc3e2c4155be022826c8aa716f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "902e20dc3e2c4155be022826c8aa716f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "902e20dc3e2c4155be022826c8aa716f.jpg", "file_size": 14604, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短灰XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902e20dc3e2c4155be022826c8aa716f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902e20dc3e2c4155be022826c8aa716f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902e20dc3e2c4155be022826c8aa716f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/902e20dc3e2c4155be022826c8aa716f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/902e20dc3e2c4155be022826c8aa716f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4HFjc-hpvWgyj5QJB6J-_YgTZU=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.332903+00 2025-12-09 10:15:06.332907+00 10146 0003-4FWE#格子VS-D3 SPMX-20240815305319 \N \N \N 1 \N [{"file_id": "8eec868f-360c-45b9-9f97-65daca3b70cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebbc0b9ed9a6423598cb67dc4af143dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebbc0b9ed9a6423598cb67dc4af143dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebbc0b9ed9a6423598cb67dc4af143dc.jpg", "file_size": 16070, "is_delete": false, "file_type": 1, "original_file_name": "0003-4FWE#格子VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbc0b9ed9a6423598cb67dc4af143dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbc0b9ed9a6423598cb67dc4af143dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbc0b9ed9a6423598cb67dc4af143dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebbc0b9ed9a6423598cb67dc4af143dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebbc0b9ed9a6423598cb67dc4af143dc.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSUZsNV-DHAewkf4U1vR_JTd8Oc=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.334912+00 2025-12-09 10:15:06.334916+00 10147 FHXGPK-批布017-2 SPMX-20240815305326 \N \N \N 1 \N [{"file_id": "9b4610ef-94f9-42fa-880a-a8825350c994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2e014196f03457396ff043081e0c778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2e014196f03457396ff043081e0c778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2e014196f03457396ff043081e0c778.jpg", "file_size": 63381, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布017-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e014196f03457396ff043081e0c778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e014196f03457396ff043081e0c778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e014196f03457396ff043081e0c778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2e014196f03457396ff043081e0c778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2e014196f03457396ff043081e0c778.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utPbni-MBfXt1BAJjg8NProVoYc=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.336947+00 2025-12-09 10:15:06.336952+00 10148 HT027# SPMX-20240815305320 \N \N \N 1 \N [{"file_id": "5bb6886c-faff-441a-9446-cc29911d711d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b89714c9f5042fe94be459d4811ea8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b89714c9f5042fe94be459d4811ea8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b89714c9f5042fe94be459d4811ea8b.jpg", "file_size": 8005, "is_delete": false, "file_type": 1, "original_file_name": "HT027#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b89714c9f5042fe94be459d4811ea8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b89714c9f5042fe94be459d4811ea8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b89714c9f5042fe94be459d4811ea8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b89714c9f5042fe94be459d4811ea8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b89714c9f5042fe94be459d4811ea8b.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PYk6vOIZHafXk9OjlJa-NTFmNI=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.338939+00 2025-12-09 10:15:06.338943+00 10149 8098FWF#大红短款下摆 SPMX-20240815305317 \N \N \N 1 \N [{"file_id": "6ed07478-4f15-4a43-a725-b33d8370258d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6e0c249248e413aa187d390e85f64ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6e0c249248e413aa187d390e85f64ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6e0c249248e413aa187d390e85f64ee.jpg", "file_size": 18051, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#大红短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e0c249248e413aa187d390e85f64ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e0c249248e413aa187d390e85f64ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e0c249248e413aa187d390e85f64ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6e0c249248e413aa187d390e85f64ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6e0c249248e413aa187d390e85f64ee.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvIjy0QakfTajnI-jvQ1vdk_fZk=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.340964+00 2025-12-09 10:15:06.340968+00 10150 C357#大白 SPMX-20240815305323 \N \N \N 1 \N [{"file_id": "ec81b1ad-4efb-4b3e-b548-54e87ed524c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e68cdad3891e4249aaa127f37119e3ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e68cdad3891e4249aaa127f37119e3ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e68cdad3891e4249aaa127f37119e3ca.jpg", "file_size": 20353, "is_delete": false, "file_type": 1, "original_file_name": "C357#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68cdad3891e4249aaa127f37119e3ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68cdad3891e4249aaa127f37119e3ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68cdad3891e4249aaa127f37119e3ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e68cdad3891e4249aaa127f37119e3ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e68cdad3891e4249aaa127f37119e3ca.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trhO5qTKzYN06QMH4BSxbjb5aIs=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.342958+00 2025-12-09 10:15:06.342961+00 10151 LJ9920FW#短灰S VS-D3 SPMX-20240815305314 \N \N \N 1 \N [{"file_id": "01fe5797-4b37-4b48-84a2-ef384599c0e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f86d1b6e71346c48f9d7fe045d1c37c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f86d1b6e71346c48f9d7fe045d1c37c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f86d1b6e71346c48f9d7fe045d1c37c.jpg", "file_size": 13518, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短灰S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f86d1b6e71346c48f9d7fe045d1c37c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f86d1b6e71346c48f9d7fe045d1c37c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f86d1b6e71346c48f9d7fe045d1c37c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f86d1b6e71346c48f9d7fe045d1c37c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f86d1b6e71346c48f9d7fe045d1c37c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hpOCw5jqLexo1IBOgDsFyy8Msm0=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.344888+00 2025-12-09 10:15:06.344893+00 10152 LZ1268#背心款2号色 SPMX-20240815305322 \N \N \N 1 \N [{"file_id": "4a3430d6-6840-4230-b645-47836b906d5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6c05b6d7b343488a222043818a9f52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6c05b6d7b343488a222043818a9f52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6c05b6d7b343488a222043818a9f52.jpg", "file_size": 18741, "is_delete": false, "file_type": 1, "original_file_name": "LZ1268#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6c05b6d7b343488a222043818a9f52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6c05b6d7b343488a222043818a9f52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6c05b6d7b343488a222043818a9f52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6c05b6d7b343488a222043818a9f52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6c05b6d7b343488a222043818a9f52.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vhc7cNRId7R5r9z6F02xbET36mk=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.346644+00 2025-12-09 10:15:06.346649+00 10153 DL30504#彩蓝XL SPMX-20240815305321 \N \N \N 1 \N [{"file_id": "01f78a0a-10d1-4e55-86b7-03a92e68d8cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eecc7e1fda5439890e1912f240e8143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eecc7e1fda5439890e1912f240e8143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eecc7e1fda5439890e1912f240e8143.jpg", "file_size": 19852, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#彩蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eecc7e1fda5439890e1912f240e8143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eecc7e1fda5439890e1912f240e8143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eecc7e1fda5439890e1912f240e8143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eecc7e1fda5439890e1912f240e8143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eecc7e1fda5439890e1912f240e8143.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKBpuldoxQaa0jrEFUzxcxlj4X0=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.348385+00 2025-12-09 10:15:06.34839+00 10154 23-2116#A1领子领口通用 SPMX-20240815305325 \N \N \N 1 \N [{"file_id": "6e5d2869-db9a-46c8-af7d-940d05b3722b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6252905ba7514a14ae030f3c0d0c3955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6252905ba7514a14ae030f3c0d0c3955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6252905ba7514a14ae030f3c0d0c3955.jpg", "file_size": 6986, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A1领子领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252905ba7514a14ae030f3c0d0c3955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252905ba7514a14ae030f3c0d0c3955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252905ba7514a14ae030f3c0d0c3955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6252905ba7514a14ae030f3c0d0c3955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6252905ba7514a14ae030f3c0d0c3955.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64B-CJAiORmfqDBxs5YfS0-Q-AE=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.350066+00 2025-12-09 10:15:06.35007+00 10155 LZ1268#背心款3号色 SPMX-20240815305332 \N \N \N 1 \N [{"file_id": "76ed4744-0ed9-4711-9dcc-7b0f900fded3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "542053eca3fa4213b931076a1eded741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "542053eca3fa4213b931076a1eded741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "542053eca3fa4213b931076a1eded741.jpg", "file_size": 17623, "is_delete": false, "file_type": 1, "original_file_name": "LZ1268#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/542053eca3fa4213b931076a1eded741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/542053eca3fa4213b931076a1eded741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/542053eca3fa4213b931076a1eded741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/542053eca3fa4213b931076a1eded741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/542053eca3fa4213b931076a1eded741.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEGe_FQItyxod-eY2Gxyx-vy4pk=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.352023+00 2025-12-09 10:15:06.352028+00 10156 LJ9920FW#短粉2XL VS-D3 SPMX-20240815305333 \N \N \N 1 \N [{"file_id": "233e6b92-dd01-47bf-a4b1-f5cfdc840ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9282a1a86f1446392deb0420ce4d459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9282a1a86f1446392deb0420ce4d459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9282a1a86f1446392deb0420ce4d459.jpg", "file_size": 15718, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短粉2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9282a1a86f1446392deb0420ce4d459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9282a1a86f1446392deb0420ce4d459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9282a1a86f1446392deb0420ce4d459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9282a1a86f1446392deb0420ce4d459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9282a1a86f1446392deb0420ce4d459.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--Bl_hT_41xP6f5DQrhbYTErQIo=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.354017+00 2025-12-09 10:15:06.354022+00 10157 HT027FW#vs-d3 SPMX-20240815305328 \N \N \N 1 \N [{"file_id": "9872d25b-289d-4fb4-9645-b8717a1628e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8fe9218b074689b83c5fe185454f66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8fe9218b074689b83c5fe185454f66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8fe9218b074689b83c5fe185454f66.jpg", "file_size": 11513, "is_delete": false, "file_type": 1, "original_file_name": "HT027FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8fe9218b074689b83c5fe185454f66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8fe9218b074689b83c5fe185454f66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8fe9218b074689b83c5fe185454f66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8fe9218b074689b83c5fe185454f66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8fe9218b074689b83c5fe185454f66.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRsTmizD9ebTDYw57PEoemluezY=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.356022+00 2025-12-09 10:15:06.356027+00 10158 0003-4FWE#碎花VS-D3 SPMX-20240815305330 \N \N \N 1 \N [{"file_id": "be822a48-8baa-4a1f-8954-043937a7f6fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b23ca6dcd1749c99964c4d78c6dd126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b23ca6dcd1749c99964c4d78c6dd126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b23ca6dcd1749c99964c4d78c6dd126.jpg", "file_size": 11634, "is_delete": false, "file_type": 1, "original_file_name": "0003-4FWE#碎花VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b23ca6dcd1749c99964c4d78c6dd126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b23ca6dcd1749c99964c4d78c6dd126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b23ca6dcd1749c99964c4d78c6dd126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b23ca6dcd1749c99964c4d78c6dd126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b23ca6dcd1749c99964c4d78c6dd126.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eVP08bxvzGzJRkj7eB_0gcV3568=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.357712+00 2025-12-09 10:15:06.357717+00 10159 1095#59号粉 SPMX-20240815305339 \N \N \N 1 \N [{"file_id": "a71f233e-f95f-4afe-b229-2b12f8cf44a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c65165a451448dc8f36f3ab1312f854.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c65165a451448dc8f36f3ab1312f854.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c65165a451448dc8f36f3ab1312f854.jpg", "file_size": 8985, "is_delete": false, "file_type": 1, "original_file_name": "1095#59号粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c65165a451448dc8f36f3ab1312f854.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c65165a451448dc8f36f3ab1312f854.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c65165a451448dc8f36f3ab1312f854.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c65165a451448dc8f36f3ab1312f854.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c65165a451448dc8f36f3ab1312f854.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eC9yfp9d_LLqB2lha0OXEfcOak=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.359426+00 2025-12-09 10:15:06.359431+00 10160 HT027FWE#VS-D3 SPMX-20240815305336 \N \N \N 1 \N [{"file_id": "c4e26376-5b30-4d79-bab6-70c1e0e6f4e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b09027cef404e21b41b53d4a01319e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b09027cef404e21b41b53d4a01319e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b09027cef404e21b41b53d4a01319e5.jpg", "file_size": 11938, "is_delete": false, "file_type": 1, "original_file_name": "HT027FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b09027cef404e21b41b53d4a01319e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b09027cef404e21b41b53d4a01319e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b09027cef404e21b41b53d4a01319e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b09027cef404e21b41b53d4a01319e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b09027cef404e21b41b53d4a01319e5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zfmKSEaVLjDAtRGEuhqmBtvDA34=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.375548+00 2025-12-09 10:15:06.375553+00 10169 23-2116#A2-3XL SPMX-20240815305334 \N \N \N 1 \N [{"file_id": "f3126366-b928-4fd7-8a53-c56dd6ab2db4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d270d793705c4d43bc812f36488211de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d270d793705c4d43bc812f36488211de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d270d793705c4d43bc812f36488211de.jpg", "file_size": 14964, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d270d793705c4d43bc812f36488211de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d270d793705c4d43bc812f36488211de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d270d793705c4d43bc812f36488211de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d270d793705c4d43bc812f36488211de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d270d793705c4d43bc812f36488211de.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1dSc09vu6-2NBIAN_oAnkEEaRDU=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.361129+00 2025-12-09 10:15:06.361134+00 10161 8098FWF#湖绿短款下摆 SPMX-20240815305337 \N \N \N 1 \N [{"file_id": "515e196d-d2d2-4c0a-80e6-eea7a867a739", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee5a328429cb4cd7a2bec259f3de4f91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee5a328429cb4cd7a2bec259f3de4f91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee5a328429cb4cd7a2bec259f3de4f91.jpg", "file_size": 17194, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#湖绿短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5a328429cb4cd7a2bec259f3de4f91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5a328429cb4cd7a2bec259f3de4f91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5a328429cb4cd7a2bec259f3de4f91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee5a328429cb4cd7a2bec259f3de4f91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee5a328429cb4cd7a2bec259f3de4f91.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtXP6rTnql_x8CAlmGuv0hXCrwc=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.36308+00 2025-12-09 10:15:06.363084+00 10162 C357#玫红 SPMX-20240815305335 \N \N \N 1 \N [{"file_id": "f52518cb-3a29-47f1-971a-f18c5d55ee4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b9cf5190cd647f48205bc108401f698.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b9cf5190cd647f48205bc108401f698.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b9cf5190cd647f48205bc108401f698.jpg", "file_size": 21020, "is_delete": false, "file_type": 1, "original_file_name": "C357#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9cf5190cd647f48205bc108401f698.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9cf5190cd647f48205bc108401f698.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9cf5190cd647f48205bc108401f698.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b9cf5190cd647f48205bc108401f698.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b9cf5190cd647f48205bc108401f698.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGtAKlvFvvy8PZKUG4Po3S_FNqM=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.365068+00 2025-12-09 10:15:06.365072+00 10163 DL30504#绿色2XL SPMX-20240815305331 \N \N \N 1 \N [{"file_id": "b6b007fb-392b-480a-897b-10468a43da27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8992d530ed448fa1b35e010af24d01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8992d530ed448fa1b35e010af24d01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8992d530ed448fa1b35e010af24d01.jpg", "file_size": 20274, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8992d530ed448fa1b35e010af24d01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8992d530ed448fa1b35e010af24d01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8992d530ed448fa1b35e010af24d01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8992d530ed448fa1b35e010af24d01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8992d530ed448fa1b35e010af24d01.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nb9Wc6p42RiX2nTaM1xO77SHB-o=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.366755+00 2025-12-09 10:15:06.36676+00 10164 DL30504#绿色L SPMX-20240815305341 \N \N \N 1 \N [{"file_id": "ba2fc2a0-40f6-44f5-8cb6-418370dd5dcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9381c61259bd4d3cb3b5cab372a4fd9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9381c61259bd4d3cb3b5cab372a4fd9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9381c61259bd4d3cb3b5cab372a4fd9a.jpg", "file_size": 24969, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9381c61259bd4d3cb3b5cab372a4fd9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9381c61259bd4d3cb3b5cab372a4fd9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9381c61259bd4d3cb3b5cab372a4fd9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9381c61259bd4d3cb3b5cab372a4fd9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9381c61259bd4d3cb3b5cab372a4fd9a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkrAtVfDoeizB1HxiJaUd0ih3xo=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.368457+00 2025-12-09 10:15:06.368462+00 10165 8098FWF#湖绿短款上身 SPMX-20240815305327 \N \N \N 1 \N [{"file_id": "0e4093cd-cabb-4afe-b43c-acee1f8cf8b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784b1fba085f4c0a8c0f4d6a4486652d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784b1fba085f4c0a8c0f4d6a4486652d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784b1fba085f4c0a8c0f4d6a4486652d.jpg", "file_size": 13695, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#湖绿短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784b1fba085f4c0a8c0f4d6a4486652d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784b1fba085f4c0a8c0f4d6a4486652d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784b1fba085f4c0a8c0f4d6a4486652d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784b1fba085f4c0a8c0f4d6a4486652d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784b1fba085f4c0a8c0f4d6a4486652d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PS8HHQF64zHFyooZIlIGtHENzzc=", "createTime": "2024-08-15 14:49:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.370184+00 2025-12-09 10:15:06.370188+00 10166 109#-黑色 SPMX-20240815305329 \N \N \N 1 \N [{"file_id": "d2ba9ede-943b-4d48-8855-9c6c780af4b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4baa3fdc579f4351a9b2272a16291698.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4baa3fdc579f4351a9b2272a16291698.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4baa3fdc579f4351a9b2272a16291698.jpg", "file_size": 54249, "is_delete": false, "file_type": 1, "original_file_name": "109#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baa3fdc579f4351a9b2272a16291698.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baa3fdc579f4351a9b2272a16291698.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4baa3fdc579f4351a9b2272a16291698.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4baa3fdc579f4351a9b2272a16291698.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4baa3fdc579f4351a9b2272a16291698.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-ZOMkpjRLfmQ3HnK98a-MSw0m0=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.37212+00 2025-12-09 10:15:06.372124+00 10167 FHXGPK-批布017-3 SPMX-20240815305338 \N \N \N 1 \N [{"file_id": "e1af3240-5470-49ab-8ff5-e1d483a09938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9784b552f114d12947e90f8958c1103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9784b552f114d12947e90f8958c1103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9784b552f114d12947e90f8958c1103.jpg", "file_size": 60631, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布017-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9784b552f114d12947e90f8958c1103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9784b552f114d12947e90f8958c1103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9784b552f114d12947e90f8958c1103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9784b552f114d12947e90f8958c1103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9784b552f114d12947e90f8958c1103.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2P1w_cO3roqcIk0z5c6VNnInDXg=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.373787+00 2025-12-09 10:15:06.373792+00 10168 0003-4FWF#咖色 SPMX-20240815305340 \N \N \N 1 \N [{"file_id": "fd910e11-5ae9-4091-9346-4ece761e766c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd196a96a3514327a542dfdd535766d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd196a96a3514327a542dfdd535766d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd196a96a3514327a542dfdd535766d9.jpg", "file_size": 15202, "is_delete": false, "file_type": 1, "original_file_name": "0003-4FWF#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd196a96a3514327a542dfdd535766d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd196a96a3514327a542dfdd535766d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd196a96a3514327a542dfdd535766d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd196a96a3514327a542dfdd535766d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd196a96a3514327a542dfdd535766d9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPM8N4u1vGY8InFlJU7tHRlgLNY=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.377274+00 2025-12-09 10:15:06.377278+00 10170 LJ9920FW#短粉L VS-D3 SPMX-20240815305343 \N \N \N 1 \N [{"file_id": "1f7638c8-9f66-4fe5-bea1-9942bd95b57d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c5b8697733401f844b0b6c27e2b2a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c5b8697733401f844b0b6c27e2b2a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c5b8697733401f844b0b6c27e2b2a3.jpg", "file_size": 16028, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短粉L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c5b8697733401f844b0b6c27e2b2a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c5b8697733401f844b0b6c27e2b2a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c5b8697733401f844b0b6c27e2b2a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c5b8697733401f844b0b6c27e2b2a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c5b8697733401f844b0b6c27e2b2a3.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bPQAo0L8EI9AzCcxXJgm2TUW8Ro=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.379207+00 2025-12-09 10:15:06.379212+00 10171 C357#黑色 SPMX-20240815305344 \N \N \N 1 \N [{"file_id": "6b626e19-8c9f-4ba0-88c2-fbdfaa251c26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3c035ae212a4fc6985c80c8c8fc71da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3c035ae212a4fc6985c80c8c8fc71da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3c035ae212a4fc6985c80c8c8fc71da.jpg", "file_size": 22356, "is_delete": false, "file_type": 1, "original_file_name": "C357#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c035ae212a4fc6985c80c8c8fc71da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c035ae212a4fc6985c80c8c8fc71da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c035ae212a4fc6985c80c8c8fc71da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3c035ae212a4fc6985c80c8c8fc71da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3c035ae212a4fc6985c80c8c8fc71da.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbd0azwWMlY4PBRg4zFBsFIVKto=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.38117+00 2025-12-09 10:15:06.381175+00 10172 8098FWF#粉色短款上身 SPMX-20240815305347 \N \N \N 1 \N [{"file_id": "edc57c3d-5f60-4c20-87e4-b965e29fa9a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11c9ab68e64d4acab3690a2aed87a398.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11c9ab68e64d4acab3690a2aed87a398.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11c9ab68e64d4acab3690a2aed87a398.jpg", "file_size": 13408, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#粉色短款上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c9ab68e64d4acab3690a2aed87a398.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c9ab68e64d4acab3690a2aed87a398.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c9ab68e64d4acab3690a2aed87a398.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11c9ab68e64d4acab3690a2aed87a398.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11c9ab68e64d4acab3690a2aed87a398.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eryRG39phuwK8fND4zrlBuGn4Os=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.382889+00 2025-12-09 10:15:06.382893+00 10173 HT028# SPMX-20240815305346 \N \N \N 1 \N [{"file_id": "37b24f50-ffb3-44be-8000-c88487db0978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f45ef8a27564516b461a8e4ebfcfe7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f45ef8a27564516b461a8e4ebfcfe7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f45ef8a27564516b461a8e4ebfcfe7d.jpg", "file_size": 7868, "is_delete": false, "file_type": 1, "original_file_name": "HT028#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f45ef8a27564516b461a8e4ebfcfe7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f45ef8a27564516b461a8e4ebfcfe7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f45ef8a27564516b461a8e4ebfcfe7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f45ef8a27564516b461a8e4ebfcfe7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f45ef8a27564516b461a8e4ebfcfe7d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h6YxBdO262lhs9NpH2I7ibiFde8=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.384596+00 2025-12-09 10:15:06.384601+00 10174 23-2116#A2-4XL SPMX-20240815305345 \N \N \N 1 \N [{"file_id": "d3a18c9f-9702-42fd-904a-273246892d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "289937c5a8e240d5abaaa3e938bdd490.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "289937c5a8e240d5abaaa3e938bdd490.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "289937c5a8e240d5abaaa3e938bdd490.jpg", "file_size": 14166, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289937c5a8e240d5abaaa3e938bdd490.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289937c5a8e240d5abaaa3e938bdd490.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289937c5a8e240d5abaaa3e938bdd490.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/289937c5a8e240d5abaaa3e938bdd490.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/289937c5a8e240d5abaaa3e938bdd490.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6wmduUbYLyKv-4SdY75jZwZquzc=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.38631+00 2025-12-09 10:15:06.386315+00 10175 LZ1268#背心款4号色 SPMX-20240815305342 \N \N \N 1 \N [{"file_id": "9d42a6ac-e01c-4aca-9be4-c439936ceb11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eab1cf5888a140a5a0bf38e4ad90b459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eab1cf5888a140a5a0bf38e4ad90b459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eab1cf5888a140a5a0bf38e4ad90b459.jpg", "file_size": 17462, "is_delete": false, "file_type": 1, "original_file_name": "LZ1268#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab1cf5888a140a5a0bf38e4ad90b459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab1cf5888a140a5a0bf38e4ad90b459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eab1cf5888a140a5a0bf38e4ad90b459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eab1cf5888a140a5a0bf38e4ad90b459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eab1cf5888a140a5a0bf38e4ad90b459.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLZqfx1-WJyAaUyZ9tA3IjnNhdA=", "createTime": "2024-08-15 14:49:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.388253+00 2025-12-09 10:15:06.388258+00 10176 HT028FW#VS-D3 SPMX-20240815305356 \N \N \N 1 \N [{"file_id": "6cd5b1ea-a61e-4731-acac-a766d2f0b0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa7193745254457897e8bd0b161c6376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa7193745254457897e8bd0b161c6376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa7193745254457897e8bd0b161c6376.jpg", "file_size": 22720, "is_delete": false, "file_type": 1, "original_file_name": "HT028FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa7193745254457897e8bd0b161c6376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa7193745254457897e8bd0b161c6376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa7193745254457897e8bd0b161c6376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa7193745254457897e8bd0b161c6376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa7193745254457897e8bd0b161c6376.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9WvMNXlcKrNuT94fkvMdDsNCTYs=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.389923+00 2025-12-09 10:15:06.389928+00 10177 8098FWF#粉色短款下摆 SPMX-20240815305357 \N \N \N 1 \N [{"file_id": "942cf7d0-becc-4272-be58-a7f47280f460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ea3615ad95c465a823d0d314ba98595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ea3615ad95c465a823d0d314ba98595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ea3615ad95c465a823d0d314ba98595.jpg", "file_size": 16315, "is_delete": false, "file_type": 1, "original_file_name": "8098FWF#粉色短款下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea3615ad95c465a823d0d314ba98595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea3615ad95c465a823d0d314ba98595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea3615ad95c465a823d0d314ba98595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ea3615ad95c465a823d0d314ba98595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ea3615ad95c465a823d0d314ba98595.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zEOW0aXOvv6asIO5eVzHrjIk460=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.391699+00 2025-12-09 10:15:06.391708+00 10178 DL30504#绿色XL SPMX-20240815305352 \N \N \N 1 \N [{"file_id": "3bd3ae64-6462-4de8-9e2f-22d3c9804543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c1d881e64a4420e9ddb8a68e4ce7034.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c1d881e64a4420e9ddb8a68e4ce7034.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c1d881e64a4420e9ddb8a68e4ce7034.jpg", "file_size": 20424, "is_delete": false, "file_type": 1, "original_file_name": "DL30504#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1d881e64a4420e9ddb8a68e4ce7034.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1d881e64a4420e9ddb8a68e4ce7034.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1d881e64a4420e9ddb8a68e4ce7034.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c1d881e64a4420e9ddb8a68e4ce7034.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c1d881e64a4420e9ddb8a68e4ce7034.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZ2pGk7MyFu9KEpbRkAnRvFllnw=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.393501+00 2025-12-09 10:15:06.393505+00 10179 23-2116#A2-领子3XL SPMX-20240815305353 \N \N \N 1 \N [{"file_id": "8f579e96-bd5e-4e3b-a0c2-93f23f2cb5b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc892799acf4560af40c749ad48e886.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc892799acf4560af40c749ad48e886.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc892799acf4560af40c749ad48e886.jpg", "file_size": 11972, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc892799acf4560af40c749ad48e886.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc892799acf4560af40c749ad48e886.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc892799acf4560af40c749ad48e886.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc892799acf4560af40c749ad48e886.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc892799acf4560af40c749ad48e886.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:auZmA5AFY_JFkKufhoQ-3ZG7i1U=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.395486+00 2025-12-09 10:15:06.395491+00 10180 0003-4FWF#黑白 SPMX-20240815305348 \N \N \N 1 \N [{"file_id": "3556691f-c572-4652-81a2-aa01f1b3af9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69e76058cc2e48e3a9b4c91235d29ca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69e76058cc2e48e3a9b4c91235d29ca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69e76058cc2e48e3a9b4c91235d29ca9.jpg", "file_size": 16569, "is_delete": false, "file_type": 1, "original_file_name": "0003-4FWF#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e76058cc2e48e3a9b4c91235d29ca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e76058cc2e48e3a9b4c91235d29ca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69e76058cc2e48e3a9b4c91235d29ca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69e76058cc2e48e3a9b4c91235d29ca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69e76058cc2e48e3a9b4c91235d29ca9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MMUVJKR_CXIcCPMA9Gb9CNDAcU=", "createTime": "2024-08-15 14:49:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.397337+00 2025-12-09 10:15:06.397343+00 10181 LZ1268#背心款5号色 SPMX-20240815305350 \N \N \N 1 \N [{"file_id": "aeb85789-cf4b-40ee-b6d6-c399b2a3f3bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d2e149a71fd4ed38147fe9f873d06b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d2e149a71fd4ed38147fe9f873d06b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d2e149a71fd4ed38147fe9f873d06b0.jpg", "file_size": 17719, "is_delete": false, "file_type": 1, "original_file_name": "LZ1268#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2e149a71fd4ed38147fe9f873d06b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2e149a71fd4ed38147fe9f873d06b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2e149a71fd4ed38147fe9f873d06b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d2e149a71fd4ed38147fe9f873d06b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d2e149a71fd4ed38147fe9f873d06b0.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JW2ZFHITOFLrV2oE6TymVHirXC0=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.399055+00 2025-12-09 10:15:06.39906+00 10182 C358#大白 SPMX-20240815305354 \N \N \N 1 \N [{"file_id": "ea0e4a91-4bd8-4352-9cd1-ef731c2eed30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad3fddd0c4784afb8c079cbf9fb32a1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad3fddd0c4784afb8c079cbf9fb32a1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad3fddd0c4784afb8c079cbf9fb32a1a.jpg", "file_size": 13141, "is_delete": false, "file_type": 1, "original_file_name": "C358#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3fddd0c4784afb8c079cbf9fb32a1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3fddd0c4784afb8c079cbf9fb32a1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3fddd0c4784afb8c079cbf9fb32a1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad3fddd0c4784afb8c079cbf9fb32a1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad3fddd0c4784afb8c079cbf9fb32a1a.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htkuzrn63MnNbqMYPUoUqqvE7SM=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.400738+00 2025-12-09 10:15:06.400742+00 10183 LJ9920FW#短粉M VS-D3 SPMX-20240815305355 \N \N \N 1 \N [{"file_id": "f1fc6bc7-485d-480d-9708-1bc6ae3dfb1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60bb6556cfa34bccb1d969ed3a372e2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60bb6556cfa34bccb1d969ed3a372e2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60bb6556cfa34bccb1d969ed3a372e2e.jpg", "file_size": 15689, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短粉M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bb6556cfa34bccb1d969ed3a372e2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bb6556cfa34bccb1d969ed3a372e2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bb6556cfa34bccb1d969ed3a372e2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60bb6556cfa34bccb1d969ed3a372e2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60bb6556cfa34bccb1d969ed3a372e2e.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2WW41duTHU6firuGf4qJNn8FzY=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.402446+00 2025-12-09 10:15:06.40245+00 10184 1095#8号粉 SPMX-20240815305351 \N \N \N 1 \N [{"file_id": "e4f5a2d6-dc2d-4324-837b-0119f5dd4262", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f29c37e98b4a33af4c3d424728e6be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f29c37e98b4a33af4c3d424728e6be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f29c37e98b4a33af4c3d424728e6be.jpg", "file_size": 9083, "is_delete": false, "file_type": 1, "original_file_name": "1095#8号粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f29c37e98b4a33af4c3d424728e6be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f29c37e98b4a33af4c3d424728e6be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f29c37e98b4a33af4c3d424728e6be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f29c37e98b4a33af4c3d424728e6be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f29c37e98b4a33af4c3d424728e6be.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S1OF1giAxXX5ulhBYy97lKrjs0c=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.404362+00 2025-12-09 10:15:06.404367+00 10185 FHXGPK-批布018-1 SPMX-20240815305349 \N \N \N 1 \N [{"file_id": "58b3305d-5bb8-4d29-875a-3ae38dc96c4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9e68774edb343699e01b2bdd4e4b80d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9e68774edb343699e01b2bdd4e4b80d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9e68774edb343699e01b2bdd4e4b80d.jpg", "file_size": 69909, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布018-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e68774edb343699e01b2bdd4e4b80d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e68774edb343699e01b2bdd4e4b80d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e68774edb343699e01b2bdd4e4b80d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9e68774edb343699e01b2bdd4e4b80d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9e68774edb343699e01b2bdd4e4b80d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgiRnW91K2opabzUuXbsQPeMhBk=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.406065+00 2025-12-09 10:15:06.406069+00 10186 HT028FWE#VS-D3 SPMX-20240815305366 \N \N \N 1 \N [{"file_id": "8f69263a-7aa3-423d-b5d7-2c4c2e9c067e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ccc4cd73854445b98b5189b0f8f47a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ccc4cd73854445b98b5189b0f8f47a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ccc4cd73854445b98b5189b0f8f47a9.jpg", "file_size": 18773, "is_delete": false, "file_type": 1, "original_file_name": "HT028FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccc4cd73854445b98b5189b0f8f47a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccc4cd73854445b98b5189b0f8f47a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ccc4cd73854445b98b5189b0f8f47a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ccc4cd73854445b98b5189b0f8f47a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ccc4cd73854445b98b5189b0f8f47a9.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKQIkaqW81cQICmhVc4DfEbSd4w=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.40778+00 2025-12-09 10:15:06.407785+00 10187 23-2116#A2-领子4XL SPMX-20240815305362 \N \N \N 1 \N [{"file_id": "cee3b930-5977-483d-83fc-ce124dbe1c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca8f36b2376a4e818e493eedc8240d1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca8f36b2376a4e818e493eedc8240d1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca8f36b2376a4e818e493eedc8240d1f.jpg", "file_size": 11792, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8f36b2376a4e818e493eedc8240d1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8f36b2376a4e818e493eedc8240d1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8f36b2376a4e818e493eedc8240d1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca8f36b2376a4e818e493eedc8240d1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca8f36b2376a4e818e493eedc8240d1f.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EmRYT9MnDwbAaXUOvwrwJSljjnk=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.409484+00 2025-12-09 10:15:06.409488+00 10188 FHXGPK-批布020-1 SPMX-20240815305369 \N \N \N 1 \N [{"file_id": "7183200f-a1c0-473c-adae-5566b234bf85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3aa40e555af14e9c8cc23fb20f7d40f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3aa40e555af14e9c8cc23fb20f7d40f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3aa40e555af14e9c8cc23fb20f7d40f5.jpg", "file_size": 30296, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布020-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa40e555af14e9c8cc23fb20f7d40f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa40e555af14e9c8cc23fb20f7d40f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aa40e555af14e9c8cc23fb20f7d40f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3aa40e555af14e9c8cc23fb20f7d40f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3aa40e555af14e9c8cc23fb20f7d40f5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G6yHZqPALMqIQYy1sVJwgd91ek4=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.411407+00 2025-12-09 10:15:06.411411+00 10189 1095#90号粉 SPMX-20240815305358 \N \N \N 1 \N [{"file_id": "4b3e8258-da3a-4b63-b83d-56a0f0275bba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f24dfdf269de47c88b01066700d37363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f24dfdf269de47c88b01066700d37363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f24dfdf269de47c88b01066700d37363.jpg", "file_size": 8843, "is_delete": false, "file_type": 1, "original_file_name": "1095#90号粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24dfdf269de47c88b01066700d37363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24dfdf269de47c88b01066700d37363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24dfdf269de47c88b01066700d37363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f24dfdf269de47c88b01066700d37363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f24dfdf269de47c88b01066700d37363.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2SFoydtkz_hD6kNbc25pStecSc=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.413202+00 2025-12-09 10:15:06.413208+00 10190 0003-50FWF#V5曲线 SPMX-20240815305363 \N \N \N 1 \N [{"file_id": "8585108b-5ea1-4199-8c42-efaa3e8cac55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3676961edac4400da67635f234a944b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3676961edac4400da67635f234a944b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3676961edac4400da67635f234a944b1.jpg", "file_size": 14811, "is_delete": false, "file_type": 1, "original_file_name": "0003-50FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3676961edac4400da67635f234a944b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3676961edac4400da67635f234a944b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3676961edac4400da67635f234a944b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3676961edac4400da67635f234a944b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3676961edac4400da67635f234a944b1.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SBs9cwaU6XF6PrEksFJcqkky-fQ=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.414952+00 2025-12-09 10:15:06.414957+00 10191 C358#玫红 SPMX-20240815305364 \N \N \N 1 \N [{"file_id": "75a53e78-dc1f-43d1-94bc-069f08bf172d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fcf22d8e1343eb822e594c3cb1d9ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fcf22d8e1343eb822e594c3cb1d9ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fcf22d8e1343eb822e594c3cb1d9ac.jpg", "file_size": 13576, "is_delete": false, "file_type": 1, "original_file_name": "C358#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fcf22d8e1343eb822e594c3cb1d9ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fcf22d8e1343eb822e594c3cb1d9ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fcf22d8e1343eb822e594c3cb1d9ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fcf22d8e1343eb822e594c3cb1d9ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fcf22d8e1343eb822e594c3cb1d9ac.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5GlrkZ6ZrHv3KlbjASBQXMWbGZY=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.416647+00 2025-12-09 10:15:06.416653+00 10192 8102#宝蓝RC23 SPMX-20240815305368 \N \N \N 1 \N [{"file_id": "e94f68e4-72aa-4ff8-a0e3-4f4f58301c45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96fc0705d2614fe3a18443ccd20425f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96fc0705d2614fe3a18443ccd20425f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96fc0705d2614fe3a18443ccd20425f5.jpg", "file_size": 48009, "is_delete": false, "file_type": 1, "original_file_name": "8102#宝蓝RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96fc0705d2614fe3a18443ccd20425f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96fc0705d2614fe3a18443ccd20425f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96fc0705d2614fe3a18443ccd20425f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96fc0705d2614fe3a18443ccd20425f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96fc0705d2614fe3a18443ccd20425f5.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:141TGaig67iEERzsDLAvqnN7c4A=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.418768+00 2025-12-09 10:15:06.418772+00 10193 LJ9920FW#短粉S VS-D3 SPMX-20240815305365 \N \N \N 1 \N [{"file_id": "b401aba8-1d51-41cf-a159-ea7e81512c80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e19baf4d961a4366afee1dc35a85a45c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e19baf4d961a4366afee1dc35a85a45c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e19baf4d961a4366afee1dc35a85a45c.jpg", "file_size": 14873, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短粉S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19baf4d961a4366afee1dc35a85a45c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19baf4d961a4366afee1dc35a85a45c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19baf4d961a4366afee1dc35a85a45c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e19baf4d961a4366afee1dc35a85a45c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e19baf4d961a4366afee1dc35a85a45c.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rw_RXJkX0CdEq2g-q-4PHZt0rE4=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.420642+00 2025-12-09 10:15:06.420646+00 10194 FHXGPK-批布019-1 SPMX-20240815305359 \N \N \N 1 \N [{"file_id": "f8990baa-2f9f-4a3f-ae45-34a6ce1bdc43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5bd8fc9924947c485d6b0caf1e84e16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5bd8fc9924947c485d6b0caf1e84e16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5bd8fc9924947c485d6b0caf1e84e16.jpg", "file_size": 42708, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布019-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bd8fc9924947c485d6b0caf1e84e16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bd8fc9924947c485d6b0caf1e84e16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bd8fc9924947c485d6b0caf1e84e16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5bd8fc9924947c485d6b0caf1e84e16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5bd8fc9924947c485d6b0caf1e84e16.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bNfhXuH5fEl6opGNUzJhohdPGkI=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.422596+00 2025-12-09 10:15:06.4226+00 10195 1095#土黄 SPMX-20240815305367 \N \N \N 1 \N [{"file_id": "3f27dd45-7c3b-4439-b004-87bfc89c8c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65bc39ff7c5b469eb04044be2c011b0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65bc39ff7c5b469eb04044be2c011b0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65bc39ff7c5b469eb04044be2c011b0d.jpg", "file_size": 9671, "is_delete": false, "file_type": 1, "original_file_name": "1095#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bc39ff7c5b469eb04044be2c011b0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bc39ff7c5b469eb04044be2c011b0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bc39ff7c5b469eb04044be2c011b0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65bc39ff7c5b469eb04044be2c011b0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65bc39ff7c5b469eb04044be2c011b0d.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZlRvP0ykki7eVf_zycwdhAZDBfo=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.424571+00 2025-12-09 10:15:06.424576+00 10196 DL30552#下摆大红 SPMX-20240815305361 \N \N \N 1 \N [{"file_id": "11b352f5-1a44-4330-8679-85e0dc77fd9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb588f2837d946a581fc71b1bc1a1d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb588f2837d946a581fc71b1bc1a1d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb588f2837d946a581fc71b1bc1a1d31.jpg", "file_size": 23731, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb588f2837d946a581fc71b1bc1a1d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb588f2837d946a581fc71b1bc1a1d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb588f2837d946a581fc71b1bc1a1d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb588f2837d946a581fc71b1bc1a1d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb588f2837d946a581fc71b1bc1a1d31.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5i7bq8fSLyBqK2gB2bac8f40x6g=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:06.426574+00 2025-12-09 10:15:06.426578+00 10197 LZ1269#背心款1号色 SPMX-20240815305360 \N \N \N 1 \N [{"file_id": "82eabdd1-98ba-4f06-ad87-9f06d3a0979b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08fc1b70d5764336ad46093d870f1ac2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08fc1b70d5764336ad46093d870f1ac2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08fc1b70d5764336ad46093d870f1ac2.jpg", "file_size": 18925, "is_delete": false, "file_type": 1, "original_file_name": "LZ1269#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fc1b70d5764336ad46093d870f1ac2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fc1b70d5764336ad46093d870f1ac2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fc1b70d5764336ad46093d870f1ac2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08fc1b70d5764336ad46093d870f1ac2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08fc1b70d5764336ad46093d870f1ac2.jpg?e=1765361705&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQKo6Utl2QI71TybKeZnoDBsFFM=", "createTime": "2024-08-15 14:50:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.112414+00 2025-12-09 10:15:07.112426+00 10198 C358#黑色 SPMX-20240815305380 \N \N \N 1 \N [{"file_id": "8aa6a959-cfb4-41e9-a877-6e908256344c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27ac7e0e7a6a4aa08b226616805e26b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27ac7e0e7a6a4aa08b226616805e26b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27ac7e0e7a6a4aa08b226616805e26b5.jpg", "file_size": 15852, "is_delete": false, "file_type": 1, "original_file_name": "C358#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27ac7e0e7a6a4aa08b226616805e26b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27ac7e0e7a6a4aa08b226616805e26b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27ac7e0e7a6a4aa08b226616805e26b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27ac7e0e7a6a4aa08b226616805e26b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27ac7e0e7a6a4aa08b226616805e26b5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwZeADTw2U3VTWMSmjH2TFzmejI=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.115673+00 2025-12-09 10:15:07.115684+00 10199 23-2116#A2前后片4XL码 SPMX-20240815305382 \N \N \N 1 \N [{"file_id": "633fe135-beca-4a14-b1b9-c271ee14f601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f82a4b2694164a07b991d95bab947ceb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f82a4b2694164a07b991d95bab947ceb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f82a4b2694164a07b991d95bab947ceb.jpg", "file_size": 12341, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2前后片4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a4b2694164a07b991d95bab947ceb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a4b2694164a07b991d95bab947ceb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82a4b2694164a07b991d95bab947ceb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f82a4b2694164a07b991d95bab947ceb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f82a4b2694164a07b991d95bab947ceb.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubTCLOkrDR5IBCUslIqKcPOMy9g=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.11874+00 2025-12-09 10:15:07.118752+00 10200 LJ9920FW#短蓝2XL VS-D3 SPMX-20240815305384 \N \N \N 1 \N [{"file_id": "260a1560-018a-449d-b918-3bc69e7fc961", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9090da0641ed4acb882ac14b325862b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9090da0641ed4acb882ac14b325862b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9090da0641ed4acb882ac14b325862b0.jpg", "file_size": 14016, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短蓝2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9090da0641ed4acb882ac14b325862b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9090da0641ed4acb882ac14b325862b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9090da0641ed4acb882ac14b325862b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9090da0641ed4acb882ac14b325862b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9090da0641ed4acb882ac14b325862b0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zK3SP3iBVZC8IZViqJXK9DsAlQ4=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.121112+00 2025-12-09 10:15:07.121117+00 10201 23-2116#A2前后片3XL码 SPMX-20240815305371 \N \N \N 1 \N [{"file_id": "eb938b6e-3e47-4af8-bd09-5b0030eab9ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "875e36f6a5c4449db477bee04a7561eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "875e36f6a5c4449db477bee04a7561eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "875e36f6a5c4449db477bee04a7561eb.jpg", "file_size": 11951, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2前后片3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875e36f6a5c4449db477bee04a7561eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875e36f6a5c4449db477bee04a7561eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/875e36f6a5c4449db477bee04a7561eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/875e36f6a5c4449db477bee04a7561eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/875e36f6a5c4449db477bee04a7561eb.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYTE425oW3VTHIW-HAmASNn2rQQ=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.12322+00 2025-12-09 10:15:07.123225+00 10202 LJ9920FW#短粉XL VS-D3 SPMX-20240815305375 \N \N \N 1 \N [{"file_id": "836b1e2a-5bc3-4edf-9438-b1c6ec1bb648", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9db4c0932a0d4925b4fcd811ddcc1bf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9db4c0932a0d4925b4fcd811ddcc1bf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9db4c0932a0d4925b4fcd811ddcc1bf1.jpg", "file_size": 15892, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短粉XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4c0932a0d4925b4fcd811ddcc1bf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4c0932a0d4925b4fcd811ddcc1bf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9db4c0932a0d4925b4fcd811ddcc1bf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9db4c0932a0d4925b4fcd811ddcc1bf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9db4c0932a0d4925b4fcd811ddcc1bf1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PNxcz0Df-LuAUF0w2Q6nek3LEIo=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.125322+00 2025-12-09 10:15:07.125327+00 10203 LZ1269#背心款2号色 SPMX-20240815305374 \N \N \N 1 \N [{"file_id": "1adc93d6-ff00-47aa-9731-f22cb7b7fb5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abcdbea5629344e3acf2c491408a510d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abcdbea5629344e3acf2c491408a510d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abcdbea5629344e3acf2c491408a510d.jpg", "file_size": 19297, "is_delete": false, "file_type": 1, "original_file_name": "LZ1269#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcdbea5629344e3acf2c491408a510d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcdbea5629344e3acf2c491408a510d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcdbea5629344e3acf2c491408a510d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abcdbea5629344e3acf2c491408a510d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abcdbea5629344e3acf2c491408a510d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZ6FAxKD6ITpEk4WvTXZgHcq7Fw=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.127443+00 2025-12-09 10:15:07.127449+00 10204 DL30552#下摆彩兰 SPMX-20240815305383 \N \N \N 1 \N [{"file_id": "4d925cd0-302b-4be8-a1c8-5d71add2462d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a339d560f88e446db99bf9afa8fe32a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a339d560f88e446db99bf9afa8fe32a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a339d560f88e446db99bf9afa8fe32a1.jpg", "file_size": 23846, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a339d560f88e446db99bf9afa8fe32a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a339d560f88e446db99bf9afa8fe32a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a339d560f88e446db99bf9afa8fe32a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a339d560f88e446db99bf9afa8fe32a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a339d560f88e446db99bf9afa8fe32a1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0zcxgMZp8kzrzlREqYhzu3kobk=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.129784+00 2025-12-09 10:15:07.129791+00 10205 1095#湖绿 SPMX-20240815305376 \N \N \N 1 \N [{"file_id": "4b263854-a6f4-474e-87ce-5beaeeac94b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62358ce1804147bf86493839a3b25069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62358ce1804147bf86493839a3b25069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62358ce1804147bf86493839a3b25069.jpg", "file_size": 9137, "is_delete": false, "file_type": 1, "original_file_name": "1095#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62358ce1804147bf86493839a3b25069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62358ce1804147bf86493839a3b25069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62358ce1804147bf86493839a3b25069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62358ce1804147bf86493839a3b25069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62358ce1804147bf86493839a3b25069.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87ygTlfLwrjN6ifXc9p157sdRMA=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.132284+00 2025-12-09 10:15:07.132289+00 10206 0003-52FWF#V5曲线 SPMX-20240815305381 \N \N \N 1 \N [{"file_id": "f3163530-d404-4873-b6a2-c869a0f9cc36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814cc824a1794681b94d138a6bd56e1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814cc824a1794681b94d138a6bd56e1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814cc824a1794681b94d138a6bd56e1e.jpg", "file_size": 16768, "is_delete": false, "file_type": 1, "original_file_name": "0003-52FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814cc824a1794681b94d138a6bd56e1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814cc824a1794681b94d138a6bd56e1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814cc824a1794681b94d138a6bd56e1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814cc824a1794681b94d138a6bd56e1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814cc824a1794681b94d138a6bd56e1e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-DlBqjzecQoSzk9SPlZezci6WI=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.134497+00 2025-12-09 10:15:07.134501+00 10207 8102#枣红RC23 SPMX-20240815305377 \N \N \N 1 \N [{"file_id": "fb269d3b-af57-4d5e-8341-c14b49f21dfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec111ae29edc447b9b12a7865d1393dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec111ae29edc447b9b12a7865d1393dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec111ae29edc447b9b12a7865d1393dd.jpg", "file_size": 48333, "is_delete": false, "file_type": 1, "original_file_name": "8102#枣红RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec111ae29edc447b9b12a7865d1393dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec111ae29edc447b9b12a7865d1393dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec111ae29edc447b9b12a7865d1393dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec111ae29edc447b9b12a7865d1393dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec111ae29edc447b9b12a7865d1393dd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1uhNCf9fR22r1OTg_izOsUON8Kw=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.136478+00 2025-12-09 10:15:07.136482+00 10208 HT029FW#VS-D3 SPMX-20240815305379 \N \N \N 1 \N [{"file_id": "acd2fabe-9a29-403d-9b5f-527a41b9ad7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feedad53cbfa491f82964bd01e026f60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feedad53cbfa491f82964bd01e026f60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feedad53cbfa491f82964bd01e026f60.jpg", "file_size": 22469, "is_delete": false, "file_type": 1, "original_file_name": "HT029FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feedad53cbfa491f82964bd01e026f60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feedad53cbfa491f82964bd01e026f60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feedad53cbfa491f82964bd01e026f60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feedad53cbfa491f82964bd01e026f60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feedad53cbfa491f82964bd01e026f60.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMtPamJnPOOLA3dsL62WtEG1JAs=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.138413+00 2025-12-09 10:15:07.138417+00 10209 FHXGPK-批布021-1 SPMX-20240815305378 \N \N \N 1 \N [{"file_id": "cde6b585-468b-4a8d-951d-cf30a7fa4822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0382ec1245ec460f9ab4aecc8969d989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0382ec1245ec460f9ab4aecc8969d989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0382ec1245ec460f9ab4aecc8969d989.jpg", "file_size": 41951, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布021-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0382ec1245ec460f9ab4aecc8969d989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0382ec1245ec460f9ab4aecc8969d989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0382ec1245ec460f9ab4aecc8969d989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0382ec1245ec460f9ab4aecc8969d989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0382ec1245ec460f9ab4aecc8969d989.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxLMeEw0v2xTRS8nxk1PKRrpoxc=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.140363+00 2025-12-09 10:15:07.140368+00 10210 0003-51FWF#V5曲线 SPMX-20240815305373 \N \N \N 1 \N [{"file_id": "c5aad3a2-4d93-494d-bbe6-2b6e459d552a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f77e41bc0c6349459edbbf3eb247da75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f77e41bc0c6349459edbbf3eb247da75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f77e41bc0c6349459edbbf3eb247da75.jpg", "file_size": 18853, "is_delete": false, "file_type": 1, "original_file_name": "0003-51FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77e41bc0c6349459edbbf3eb247da75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77e41bc0c6349459edbbf3eb247da75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f77e41bc0c6349459edbbf3eb247da75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f77e41bc0c6349459edbbf3eb247da75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f77e41bc0c6349459edbbf3eb247da75.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Cybi2FYwL35x3RJKslcjE8h7BI=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.142325+00 2025-12-09 10:15:07.14233+00 10211 C358#绿色 SPMX-20240815305372 \N \N \N 1 \N [{"file_id": "768399c1-d526-4a1f-b780-6a197469becc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78e24ad6901e47e8b5c3cd8dfef50f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78e24ad6901e47e8b5c3cd8dfef50f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78e24ad6901e47e8b5c3cd8dfef50f06.jpg", "file_size": 14596, "is_delete": false, "file_type": 1, "original_file_name": "C358#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e24ad6901e47e8b5c3cd8dfef50f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e24ad6901e47e8b5c3cd8dfef50f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78e24ad6901e47e8b5c3cd8dfef50f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78e24ad6901e47e8b5c3cd8dfef50f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78e24ad6901e47e8b5c3cd8dfef50f06.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93ZQQ647DRMwUf0zS0YknffEocM=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.144278+00 2025-12-09 10:15:07.144282+00 10212 DL30552#下摆姜黄 SPMX-20240815305370 \N \N \N 1 \N [{"file_id": "b4f80883-dccc-4d9d-834b-6a1843c02c2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d88f29142364bd3bcf53796b4827356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d88f29142364bd3bcf53796b4827356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d88f29142364bd3bcf53796b4827356.jpg", "file_size": 23766, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d88f29142364bd3bcf53796b4827356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d88f29142364bd3bcf53796b4827356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d88f29142364bd3bcf53796b4827356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d88f29142364bd3bcf53796b4827356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d88f29142364bd3bcf53796b4827356.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEszGOadWQUILF4g_2SNYCIacJs=", "createTime": "2024-08-15 14:50:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.146153+00 2025-12-09 10:15:07.146157+00 10213 1095#草绿 SPMX-20240815305386 \N \N \N 1 \N [{"file_id": "00eb4a99-a2cd-4e40-adac-df4af874bb83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "433298a0b6ad4addbe3abd2ab91dca82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "433298a0b6ad4addbe3abd2ab91dca82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "433298a0b6ad4addbe3abd2ab91dca82.jpg", "file_size": 8927, "is_delete": false, "file_type": 1, "original_file_name": "1095#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433298a0b6ad4addbe3abd2ab91dca82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433298a0b6ad4addbe3abd2ab91dca82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433298a0b6ad4addbe3abd2ab91dca82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/433298a0b6ad4addbe3abd2ab91dca82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/433298a0b6ad4addbe3abd2ab91dca82.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAT4cqI9fRn-9wO56s_AgS1F0hs=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.148026+00 2025-12-09 10:15:07.14803+00 10214 HT029FWE#杏底VS-D3 SPMX-20240815305388 \N \N \N 1 \N [{"file_id": "3d0ddad8-3440-43d9-8dc7-1cf760a28910", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6943ea3889b64688aa758f58b34e1b96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6943ea3889b64688aa758f58b34e1b96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6943ea3889b64688aa758f58b34e1b96.jpg", "file_size": 29135, "is_delete": false, "file_type": 1, "original_file_name": "HT029FWE#杏底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6943ea3889b64688aa758f58b34e1b96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6943ea3889b64688aa758f58b34e1b96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6943ea3889b64688aa758f58b34e1b96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6943ea3889b64688aa758f58b34e1b96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6943ea3889b64688aa758f58b34e1b96.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DHriq7pSMEz-WSLR3c_-Q9pq7L4=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.149828+00 2025-12-09 10:15:07.149834+00 10215 LZ1269#背心款3号色 SPMX-20240815305385 \N \N \N 1 \N [{"file_id": "f93620c9-cabd-4eee-ae65-b1748308423e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14f211dff66446619f9b8b8db2fba4fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14f211dff66446619f9b8b8db2fba4fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14f211dff66446619f9b8b8db2fba4fe.jpg", "file_size": 19271, "is_delete": false, "file_type": 1, "original_file_name": "LZ1269#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f211dff66446619f9b8b8db2fba4fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f211dff66446619f9b8b8db2fba4fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f211dff66446619f9b8b8db2fba4fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14f211dff66446619f9b8b8db2fba4fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14f211dff66446619f9b8b8db2fba4fe.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qATHToPTiPV01A0KOEHjlN8Sqz8=", "createTime": "2024-08-15 14:50:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.151583+00 2025-12-09 10:15:07.151588+00 10216 8102#深紫RC23 SPMX-20240815305387 \N \N \N 1 \N [{"file_id": "ce98b87c-d2d2-4af7-a9f4-41e2d15cef7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5cdb9d6b0a14675b1ed19aa614f9629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5cdb9d6b0a14675b1ed19aa614f9629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5cdb9d6b0a14675b1ed19aa614f9629.jpg", "file_size": 49175, "is_delete": false, "file_type": 1, "original_file_name": "8102#深紫RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5cdb9d6b0a14675b1ed19aa614f9629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5cdb9d6b0a14675b1ed19aa614f9629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5cdb9d6b0a14675b1ed19aa614f9629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5cdb9d6b0a14675b1ed19aa614f9629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5cdb9d6b0a14675b1ed19aa614f9629.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEkSobUSG8qdmLS4JWz3HCTYpYI=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.15336+00 2025-12-09 10:15:07.153365+00 10217 FHXGPK-批布022-1 SPMX-20240815305389 \N \N \N 1 \N [{"file_id": "f62888d8-8d08-4115-ac19-ed3ac28e18a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92558f3f613646b4a840e7410cf28469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92558f3f613646b4a840e7410cf28469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92558f3f613646b4a840e7410cf28469.jpg", "file_size": 52941, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布022-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92558f3f613646b4a840e7410cf28469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92558f3f613646b4a840e7410cf28469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92558f3f613646b4a840e7410cf28469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92558f3f613646b4a840e7410cf28469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92558f3f613646b4a840e7410cf28469.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUj6I2mSxaYNWppIeYtQr4Od6UM=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.155371+00 2025-12-09 10:15:07.155375+00 10218 LZ1269#背心款4号色 SPMX-20240815305394 \N \N \N 1 \N [{"file_id": "0713b729-563e-4d24-91ac-f5271e84cca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7badb3dd7e2c478aa33e9c5a08e29f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7badb3dd7e2c478aa33e9c5a08e29f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7badb3dd7e2c478aa33e9c5a08e29f15.jpg", "file_size": 19010, "is_delete": false, "file_type": 1, "original_file_name": "LZ1269#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7badb3dd7e2c478aa33e9c5a08e29f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7badb3dd7e2c478aa33e9c5a08e29f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7badb3dd7e2c478aa33e9c5a08e29f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7badb3dd7e2c478aa33e9c5a08e29f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7badb3dd7e2c478aa33e9c5a08e29f15.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Ul5d1v0F7Rxs77JRSl9RBW7Uc0=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.157244+00 2025-12-09 10:15:07.157249+00 10219 23-2116#A2袖子4XL码 SPMX-20240815305399 \N \N \N 1 \N [{"file_id": "508d016b-ee64-47b0-a8f7-76949c3fe151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb763b0003b40838fe5327b6dfef219.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb763b0003b40838fe5327b6dfef219.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb763b0003b40838fe5327b6dfef219.jpg", "file_size": 10087, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2袖子4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb763b0003b40838fe5327b6dfef219.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb763b0003b40838fe5327b6dfef219.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb763b0003b40838fe5327b6dfef219.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb763b0003b40838fe5327b6dfef219.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb763b0003b40838fe5327b6dfef219.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XU7eRmw_9vi96s2Q2pm3iTW7OBk=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.159159+00 2025-12-09 10:15:07.159164+00 10220 C363.C365#原版色 SPMX-20240815305390 \N \N \N 1 \N [{"file_id": "2685d10a-3d7d-4615-8f5b-14f2a9726731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bae85750158442ca279d71338334141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bae85750158442ca279d71338334141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bae85750158442ca279d71338334141.jpg", "file_size": 15472, "is_delete": false, "file_type": 1, "original_file_name": "C363.C365#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bae85750158442ca279d71338334141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bae85750158442ca279d71338334141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bae85750158442ca279d71338334141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bae85750158442ca279d71338334141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bae85750158442ca279d71338334141.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LU0WJ49Q9zonayFCcGSZAxYDibE=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.16114+00 2025-12-09 10:15:07.161145+00 10221 HT029FWE#黑底VS-D3 SPMX-20240815305398 \N \N \N 1 \N [{"file_id": "0540da03-4ef8-4a90-ac56-64f4bd9bffbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195a9cfceda24badbfa1fb5f69021b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195a9cfceda24badbfa1fb5f69021b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195a9cfceda24badbfa1fb5f69021b7d.jpg", "file_size": 29014, "is_delete": false, "file_type": 1, "original_file_name": "HT029FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195a9cfceda24badbfa1fb5f69021b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195a9cfceda24badbfa1fb5f69021b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195a9cfceda24badbfa1fb5f69021b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195a9cfceda24badbfa1fb5f69021b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195a9cfceda24badbfa1fb5f69021b7d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJ8ukHZtsQI6VuQkdCY4pNSjdjQ=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.162829+00 2025-12-09 10:15:07.162833+00 10222 0003-53FWF#杏色 SPMX-20240815305392 \N \N \N 1 \N [{"file_id": "202c0d1b-3bdc-48d2-8c39-ea8ac00f86aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "176f10b925e2402992390bc8c818a7b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "176f10b925e2402992390bc8c818a7b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "176f10b925e2402992390bc8c818a7b6.jpg", "file_size": 17511, "is_delete": false, "file_type": 1, "original_file_name": "0003-53FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176f10b925e2402992390bc8c818a7b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176f10b925e2402992390bc8c818a7b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/176f10b925e2402992390bc8c818a7b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/176f10b925e2402992390bc8c818a7b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/176f10b925e2402992390bc8c818a7b6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iaU4PwjIHUP59rhSwqOitDc11W0=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.164506+00 2025-12-09 10:15:07.164511+00 10223 23-2116#A2袖子3XL码 SPMX-20240815305391 \N \N \N 1 \N [{"file_id": "b7c28e1a-bc35-4e0d-bc02-184902a7dd9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "685f90c77def49e2a7c53d6a9c6b423f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "685f90c77def49e2a7c53d6a9c6b423f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "685f90c77def49e2a7c53d6a9c6b423f.jpg", "file_size": 10046, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2袖子3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685f90c77def49e2a7c53d6a9c6b423f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685f90c77def49e2a7c53d6a9c6b423f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685f90c77def49e2a7c53d6a9c6b423f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/685f90c77def49e2a7c53d6a9c6b423f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/685f90c77def49e2a7c53d6a9c6b423f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JrI3F9RaTSQYa9-9HMIWOhMS9U=", "createTime": "2024-08-15 14:50:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.166238+00 2025-12-09 10:15:07.166243+00 10224 FHXGPK-批布023-1 SPMX-20240815305401 \N \N \N 1 \N [{"file_id": "6510b45a-caca-449d-8308-9891ef115bb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "956f65aca54640adb4d95bcd5ab36e51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "956f65aca54640adb4d95bcd5ab36e51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "956f65aca54640adb4d95bcd5ab36e51.jpg", "file_size": 73801, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布023-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956f65aca54640adb4d95bcd5ab36e51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956f65aca54640adb4d95bcd5ab36e51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956f65aca54640adb4d95bcd5ab36e51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/956f65aca54640adb4d95bcd5ab36e51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/956f65aca54640adb4d95bcd5ab36e51.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6SLns7DRz1BKT18IaKpSo_Rjgww=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.168198+00 2025-12-09 10:15:07.168203+00 10225 81095#深蓝色猫1XL SPMX-20240815305396 \N \N \N 1 \N [{"file_id": "9ac565a4-da1f-46bb-a809-989b2c3a33f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0136cee7274141e4ac98b1a8791b3148.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0136cee7274141e4ac98b1a8791b3148.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0136cee7274141e4ac98b1a8791b3148.jpg", "file_size": 20292, "is_delete": false, "file_type": 1, "original_file_name": "81095#深蓝色猫1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0136cee7274141e4ac98b1a8791b3148.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0136cee7274141e4ac98b1a8791b3148.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0136cee7274141e4ac98b1a8791b3148.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0136cee7274141e4ac98b1a8791b3148.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0136cee7274141e4ac98b1a8791b3148.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9bCvG6WZv3JD4wdMSA3cxSRYwTI=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.169921+00 2025-12-09 10:15:07.169925+00 10226 0003-53FWF#白色 SPMX-20240815305400 \N \N \N 1 \N [{"file_id": "0f6b5f97-6103-4a3e-ba08-8a8523d8f08d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96883c469eee4317865f0534fe27c510.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96883c469eee4317865f0534fe27c510.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96883c469eee4317865f0534fe27c510.jpg", "file_size": 17954, "is_delete": false, "file_type": 1, "original_file_name": "0003-53FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96883c469eee4317865f0534fe27c510.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96883c469eee4317865f0534fe27c510.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96883c469eee4317865f0534fe27c510.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96883c469eee4317865f0534fe27c510.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96883c469eee4317865f0534fe27c510.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggcwkoU5qxFP8ceCkBxm3IcsteU=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.171605+00 2025-12-09 10:15:07.171609+00 10227 C363.C365#大白 SPMX-20240815305402 \N \N \N 1 \N [{"file_id": "503830fb-caf1-48c4-bfa2-3f69c5dc7147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2c3af03f2474f8297cb65312afb9ec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2c3af03f2474f8297cb65312afb9ec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2c3af03f2474f8297cb65312afb9ec0.jpg", "file_size": 15009, "is_delete": false, "file_type": 1, "original_file_name": "C363.C365#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c3af03f2474f8297cb65312afb9ec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c3af03f2474f8297cb65312afb9ec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2c3af03f2474f8297cb65312afb9ec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2c3af03f2474f8297cb65312afb9ec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2c3af03f2474f8297cb65312afb9ec0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:28CKje8juVYRXme7PhrA0HGUTcc=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.173321+00 2025-12-09 10:15:07.173325+00 10228 DL30552#下摆粉色 SPMX-20240815305393 \N \N \N 1 \N [{"file_id": "f75e09b0-956c-4c95-98e5-eb6145a0b391", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b88078dd33374e5987316da8a02081db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b88078dd33374e5987316da8a02081db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b88078dd33374e5987316da8a02081db.jpg", "file_size": 22826, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88078dd33374e5987316da8a02081db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88078dd33374e5987316da8a02081db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88078dd33374e5987316da8a02081db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b88078dd33374e5987316da8a02081db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b88078dd33374e5987316da8a02081db.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiIOy9IHJ4t1kLBRQ0_fqI5MqMk=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.175266+00 2025-12-09 10:15:07.175271+00 10229 LJ9920FW#短蓝L VS-D3 SPMX-20240815305395 \N \N \N 1 \N [{"file_id": "538ef43b-38e2-4005-b010-3e814e9344f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80688f711d754ef8899296c85f564e6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80688f711d754ef8899296c85f564e6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80688f711d754ef8899296c85f564e6c.jpg", "file_size": 14070, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短蓝L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80688f711d754ef8899296c85f564e6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80688f711d754ef8899296c85f564e6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80688f711d754ef8899296c85f564e6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80688f711d754ef8899296c85f564e6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80688f711d754ef8899296c85f564e6c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39VJCkCHNUE722z8JIwHPohl90o=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.176995+00 2025-12-09 10:15:07.177+00 10230 1096#玫红大身 SPMX-20240815305397 \N \N \N 1 \N [{"file_id": "f7ff69fc-68a8-4298-80ff-e79e1f301f1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b34a7da5f542424fa2cf6c639f6e0797.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b34a7da5f542424fa2cf6c639f6e0797.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b34a7da5f542424fa2cf6c639f6e0797.jpg", "file_size": 17503, "is_delete": false, "file_type": 1, "original_file_name": "1096#玫红大身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34a7da5f542424fa2cf6c639f6e0797.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34a7da5f542424fa2cf6c639f6e0797.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b34a7da5f542424fa2cf6c639f6e0797.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b34a7da5f542424fa2cf6c639f6e0797.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b34a7da5f542424fa2cf6c639f6e0797.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLL5LppN7xzzr7LDYJUqHAPsExo=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.178733+00 2025-12-09 10:15:07.178738+00 10231 DL30552#下摆紫色 SPMX-20240815305403 \N \N \N 1 \N [{"file_id": "6e14d04b-df6d-4736-b0f9-dc98e840d0a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df79077cb9c4445da30d2f4b31ab1b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df79077cb9c4445da30d2f4b31ab1b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df79077cb9c4445da30d2f4b31ab1b64.jpg", "file_size": 23600, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df79077cb9c4445da30d2f4b31ab1b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df79077cb9c4445da30d2f4b31ab1b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df79077cb9c4445da30d2f4b31ab1b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df79077cb9c4445da30d2f4b31ab1b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df79077cb9c4445da30d2f4b31ab1b64.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtJ9ZGvlJLyRHc05283rbrqR54Y=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.180449+00 2025-12-09 10:15:07.180454+00 10232 HT030FW#VS-D3 SPMX-20240815305408 \N \N \N 1 \N [{"file_id": "3367df07-36c9-4294-8e3a-c97a2e28b533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bc191e1e4c54190827e3644e8c843c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bc191e1e4c54190827e3644e8c843c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bc191e1e4c54190827e3644e8c843c5.jpg", "file_size": 15271, "is_delete": false, "file_type": 1, "original_file_name": "HT030FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc191e1e4c54190827e3644e8c843c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc191e1e4c54190827e3644e8c843c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc191e1e4c54190827e3644e8c843c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bc191e1e4c54190827e3644e8c843c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bc191e1e4c54190827e3644e8c843c5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RbpRuVAw9WA-Cuajw_VirQp7Qso=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.182403+00 2025-12-09 10:15:07.182408+00 10233 LJ9920FW#短蓝M VS-D3 SPMX-20240815305406 \N \N \N 1 \N [{"file_id": "bb564fb1-7e52-491c-89b6-6cfea3fcb556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d15c3b602df4c6689572baa4501d376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d15c3b602df4c6689572baa4501d376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d15c3b602df4c6689572baa4501d376.jpg", "file_size": 13342, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短蓝M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d15c3b602df4c6689572baa4501d376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d15c3b602df4c6689572baa4501d376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d15c3b602df4c6689572baa4501d376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d15c3b602df4c6689572baa4501d376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d15c3b602df4c6689572baa4501d376.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ra5tD-MvBOGoDqq0z4pFshcvCns=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.184275+00 2025-12-09 10:15:07.184279+00 10234 1096#玫红袖子 SPMX-20240815305404 \N \N \N 1 \N [{"file_id": "08c9336d-4576-40fa-a393-717682c845cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130100d558c244758546dde7d426ac6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130100d558c244758546dde7d426ac6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130100d558c244758546dde7d426ac6b.jpg", "file_size": 19447, "is_delete": false, "file_type": 1, "original_file_name": "1096#玫红袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130100d558c244758546dde7d426ac6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130100d558c244758546dde7d426ac6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130100d558c244758546dde7d426ac6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130100d558c244758546dde7d426ac6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130100d558c244758546dde7d426ac6b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJuYyngps65DbYIzX3jYbqoLE4I=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.185976+00 2025-12-09 10:15:07.18598+00 10235 81095#深蓝色猫2XL SPMX-20240815305407 \N \N \N 1 \N [{"file_id": "d2b1eebb-fac4-436e-9126-98507b7651c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f4ed80daf93443e8c371539cf9530e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f4ed80daf93443e8c371539cf9530e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f4ed80daf93443e8c371539cf9530e8.jpg", "file_size": 19839, "is_delete": false, "file_type": 1, "original_file_name": "81095#深蓝色猫2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4ed80daf93443e8c371539cf9530e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4ed80daf93443e8c371539cf9530e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4ed80daf93443e8c371539cf9530e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f4ed80daf93443e8c371539cf9530e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f4ed80daf93443e8c371539cf9530e8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OC40aSPbcOUYbRVdazfBGDCXkFA=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.187759+00 2025-12-09 10:15:07.187764+00 10236 LZ1269#背心款5号色 SPMX-20240815305405 \N \N \N 1 \N [{"file_id": "5815e53c-4c7c-40da-9ecf-27db154d85ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe9cc03e28ee4f74b33387f4c86c85ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe9cc03e28ee4f74b33387f4c86c85ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe9cc03e28ee4f74b33387f4c86c85ee.jpg", "file_size": 18563, "is_delete": false, "file_type": 1, "original_file_name": "LZ1269#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9cc03e28ee4f74b33387f4c86c85ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9cc03e28ee4f74b33387f4c86c85ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9cc03e28ee4f74b33387f4c86c85ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe9cc03e28ee4f74b33387f4c86c85ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe9cc03e28ee4f74b33387f4c86c85ee.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83QPz1GjgzfCjFoyEeBbfM7s_Sc=", "createTime": "2024-08-15 14:50:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.189465+00 2025-12-09 10:15:07.18947+00 10237 FHXGPK-批布024-1 SPMX-20240815305409 \N \N \N 1 \N [{"file_id": "9ecdb3bd-ad2f-493d-9f3a-0f7d84de07b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc2bb5a17514302b07faa07bfe0bd60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc2bb5a17514302b07faa07bfe0bd60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc2bb5a17514302b07faa07bfe0bd60.jpg", "file_size": 36973, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布024-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc2bb5a17514302b07faa07bfe0bd60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc2bb5a17514302b07faa07bfe0bd60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc2bb5a17514302b07faa07bfe0bd60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc2bb5a17514302b07faa07bfe0bd60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc2bb5a17514302b07faa07bfe0bd60.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlgWnA9czkNGSDMZY0kVy_oB6ls=", "createTime": "2024-08-15 14:50:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.191392+00 2025-12-09 10:15:07.191397+00 10238 23-2116#A2领口通用 SPMX-20240815305410 \N \N \N 1 \N [{"file_id": "2c9e3a84-0df2-4d14-b9ba-369268dcfba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d3b5ad8bd274d67824efb99bac3706e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d3b5ad8bd274d67824efb99bac3706e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d3b5ad8bd274d67824efb99bac3706e.jpg", "file_size": 5558, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3b5ad8bd274d67824efb99bac3706e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3b5ad8bd274d67824efb99bac3706e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3b5ad8bd274d67824efb99bac3706e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d3b5ad8bd274d67824efb99bac3706e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d3b5ad8bd274d67824efb99bac3706e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PaGUHvGaESFTvQ8tAkrNSaE7Xew=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.193389+00 2025-12-09 10:15:07.193395+00 10239 1096#绿色大身 SPMX-20240815305411 \N \N \N 1 \N [{"file_id": "de0fc0a7-cc90-4bd4-af5e-c00d58d797a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cb065e95def4d6eaa38b20f5347bfe4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cb065e95def4d6eaa38b20f5347bfe4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cb065e95def4d6eaa38b20f5347bfe4.jpg", "file_size": 17515, "is_delete": false, "file_type": 1, "original_file_name": "1096#绿色大身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb065e95def4d6eaa38b20f5347bfe4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb065e95def4d6eaa38b20f5347bfe4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb065e95def4d6eaa38b20f5347bfe4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cb065e95def4d6eaa38b20f5347bfe4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cb065e95def4d6eaa38b20f5347bfe4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2bWU8zemPDu8vE0D3-ckQp2fqv8=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.195128+00 2025-12-09 10:15:07.195132+00 10240 LJ9920FW#短蓝S VS-D3 SPMX-20240815305419 \N \N \N 1 \N [{"file_id": "6d181d7e-cfd3-4571-89c6-ccea1c55e9ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe5fcec446b94aa1910fdf6d32f5b467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe5fcec446b94aa1910fdf6d32f5b467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe5fcec446b94aa1910fdf6d32f5b467.jpg", "file_size": 12898, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短蓝S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5fcec446b94aa1910fdf6d32f5b467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5fcec446b94aa1910fdf6d32f5b467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe5fcec446b94aa1910fdf6d32f5b467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe5fcec446b94aa1910fdf6d32f5b467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe5fcec446b94aa1910fdf6d32f5b467.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_w19giinQn0g7gr_-4Zb-BY3QA=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.196838+00 2025-12-09 10:15:07.196842+00 10241 0003-54FWF#红色 SPMX-20240815305412 \N \N \N 1 \N [{"file_id": "a59f120c-01eb-4369-82cb-061c36b0be9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d408e4849fdb474983e41af7df5fd945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d408e4849fdb474983e41af7df5fd945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d408e4849fdb474983e41af7df5fd945.jpg", "file_size": 16996, "is_delete": false, "file_type": 1, "original_file_name": "0003-54FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408e4849fdb474983e41af7df5fd945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408e4849fdb474983e41af7df5fd945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d408e4849fdb474983e41af7df5fd945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d408e4849fdb474983e41af7df5fd945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d408e4849fdb474983e41af7df5fd945.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SszXqU_jrMcRsNqsUyfaFrH5k0I=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.198521+00 2025-12-09 10:15:07.198525+00 10242 C363.C365#橙色 SPMX-20240815305414 \N \N \N 1 \N [{"file_id": "f75bfa57-08da-4c95-9ad3-731c1d6d92d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5bb32e1749c43b58a6824e81f19cc62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5bb32e1749c43b58a6824e81f19cc62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5bb32e1749c43b58a6824e81f19cc62.jpg", "file_size": 15585, "is_delete": false, "file_type": 1, "original_file_name": "C363.C365#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bb32e1749c43b58a6824e81f19cc62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bb32e1749c43b58a6824e81f19cc62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bb32e1749c43b58a6824e81f19cc62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5bb32e1749c43b58a6824e81f19cc62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5bb32e1749c43b58a6824e81f19cc62.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q58Jghets0w4WcvF6C9ZeGmz-tU=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.20047+00 2025-12-09 10:15:07.200474+00 10243 DL30552#下摆蓝绿 SPMX-20240815305413 \N \N \N 1 \N [{"file_id": "ddde221d-719d-4240-b7c0-92dc472b3920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c28bbddf8c94317af5d67e2dc14476b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c28bbddf8c94317af5d67e2dc14476b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c28bbddf8c94317af5d67e2dc14476b.jpg", "file_size": 23112, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#下摆蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c28bbddf8c94317af5d67e2dc14476b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c28bbddf8c94317af5d67e2dc14476b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c28bbddf8c94317af5d67e2dc14476b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c28bbddf8c94317af5d67e2dc14476b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c28bbddf8c94317af5d67e2dc14476b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9GJxBE84hD2-qR3LxURDFRiRlDQ=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.202438+00 2025-12-09 10:15:07.202442+00 10244 81095#深蓝色猫3XL SPMX-20240815305417 \N \N \N 1 \N [{"file_id": "8dce1781-b157-4ef3-83b6-9ee80c23e8ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "364e7710dee44e02bbd41307fc2ad2f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "364e7710dee44e02bbd41307fc2ad2f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "364e7710dee44e02bbd41307fc2ad2f2.jpg", "file_size": 18014, "is_delete": false, "file_type": 1, "original_file_name": "81095#深蓝色猫3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364e7710dee44e02bbd41307fc2ad2f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364e7710dee44e02bbd41307fc2ad2f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364e7710dee44e02bbd41307fc2ad2f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/364e7710dee44e02bbd41307fc2ad2f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/364e7710dee44e02bbd41307fc2ad2f2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xXxAeT3xgL1w8r2DW7o1Dx683W4=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.204157+00 2025-12-09 10:15:07.204161+00 10245 LZ126FWF#1号色短袖 SPMX-20240815305415 \N \N \N 1 \N [{"file_id": "908d9ddd-8799-4729-8e7b-cce83fdfb672", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a4f9a663a642e1bbab564b1df5f3b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a4f9a663a642e1bbab564b1df5f3b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a4f9a663a642e1bbab564b1df5f3b4.jpg", "file_size": 20427, "is_delete": false, "file_type": 1, "original_file_name": "LZ126FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a4f9a663a642e1bbab564b1df5f3b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a4f9a663a642e1bbab564b1df5f3b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a4f9a663a642e1bbab564b1df5f3b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a4f9a663a642e1bbab564b1df5f3b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a4f9a663a642e1bbab564b1df5f3b4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TY5bc8euXoSKiOg6fQCXO878x9Q=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.205848+00 2025-12-09 10:15:07.205853+00 10246 23-2116#A2领子通用 SPMX-20240815305420 \N \N \N 1 \N [{"file_id": "6115ecab-634a-4678-86f5-1e6d2476d5b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a9621ffa820499e9d82e6a1f5e4f09f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a9621ffa820499e9d82e6a1f5e4f09f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a9621ffa820499e9d82e6a1f5e4f09f.jpg", "file_size": 9855, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A2领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9621ffa820499e9d82e6a1f5e4f09f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9621ffa820499e9d82e6a1f5e4f09f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9621ffa820499e9d82e6a1f5e4f09f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a9621ffa820499e9d82e6a1f5e4f09f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a9621ffa820499e9d82e6a1f5e4f09f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mffE6MaIpSCNVS2shWqSCybg7sw=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.207532+00 2025-12-09 10:15:07.207536+00 10247 0003-54FWF#绿色 SPMX-20240815305422 \N \N \N 1 \N [{"file_id": "2e60dac2-04ba-4357-8694-1bc066bc9b3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d935c29491c1401f8ec41fd799eebcaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d935c29491c1401f8ec41fd799eebcaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d935c29491c1401f8ec41fd799eebcaa.jpg", "file_size": 16742, "is_delete": false, "file_type": 1, "original_file_name": "0003-54FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d935c29491c1401f8ec41fd799eebcaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d935c29491c1401f8ec41fd799eebcaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d935c29491c1401f8ec41fd799eebcaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d935c29491c1401f8ec41fd799eebcaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d935c29491c1401f8ec41fd799eebcaa.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmfTcoLLVkzLWjhJFLTAtXw_vEs=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.209554+00 2025-12-09 10:15:07.209559+00 10248 FHXGPK-批布024-2 SPMX-20240815305416 \N \N \N 1 \N [{"file_id": "688d8fe2-b851-43c0-9de6-b07005cbf195", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "027f9f90324c4889a0b4d01cd8f9708f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "027f9f90324c4889a0b4d01cd8f9708f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "027f9f90324c4889a0b4d01cd8f9708f.jpg", "file_size": 37052, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布024-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/027f9f90324c4889a0b4d01cd8f9708f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/027f9f90324c4889a0b4d01cd8f9708f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/027f9f90324c4889a0b4d01cd8f9708f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/027f9f90324c4889a0b4d01cd8f9708f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/027f9f90324c4889a0b4d01cd8f9708f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eKPt9yPdcC18kRrixCloajoJYL4=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.211513+00 2025-12-09 10:15:07.211517+00 10249 HT030FWE#VS-D3 SPMX-20240815305418 \N \N \N 1 \N [{"file_id": "48c74347-5ac0-4430-9ba1-0a2846c1ab44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c07e064be654ca18a566d7ce3f74c74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c07e064be654ca18a566d7ce3f74c74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c07e064be654ca18a566d7ce3f74c74.jpg", "file_size": 20219, "is_delete": false, "file_type": 1, "original_file_name": "HT030FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c07e064be654ca18a566d7ce3f74c74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c07e064be654ca18a566d7ce3f74c74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c07e064be654ca18a566d7ce3f74c74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c07e064be654ca18a566d7ce3f74c74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c07e064be654ca18a566d7ce3f74c74.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSdEGrWhj_hCe0HwLJO3QaFNVHo=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.213226+00 2025-12-09 10:15:07.21323+00 10250 1096#绿色袖子 SPMX-20240815305421 \N \N \N 1 \N [{"file_id": "88593903-593b-401a-a02a-0fdd7a0c21e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d044dd33f9d2442bba7fa575173e2f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d044dd33f9d2442bba7fa575173e2f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d044dd33f9d2442bba7fa575173e2f0e.jpg", "file_size": 19693, "is_delete": false, "file_type": 1, "original_file_name": "1096#绿色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044dd33f9d2442bba7fa575173e2f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044dd33f9d2442bba7fa575173e2f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044dd33f9d2442bba7fa575173e2f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d044dd33f9d2442bba7fa575173e2f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d044dd33f9d2442bba7fa575173e2f0e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0RuUy-usFTHvzwqs-YoYc50V4Q=", "createTime": "2024-08-15 14:50:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.214924+00 2025-12-09 10:15:07.214928+00 10251 FHXGPK-批布025-1 SPMX-20240815305426 \N \N \N 1 \N [{"file_id": "153d942b-e4c7-4272-beae-4f31eaa2dfb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4244b14fdf4f448a82f05eecea61369d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4244b14fdf4f448a82f05eecea61369d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4244b14fdf4f448a82f05eecea61369d.jpg", "file_size": 47478, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布025-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4244b14fdf4f448a82f05eecea61369d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4244b14fdf4f448a82f05eecea61369d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4244b14fdf4f448a82f05eecea61369d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4244b14fdf4f448a82f05eecea61369d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4244b14fdf4f448a82f05eecea61369d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUxu25aqOeyTV4h6PiOdkKgZ2zA=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.216644+00 2025-12-09 10:15:07.216648+00 10252 LZ126FWF#2号色短袖 SPMX-20240815305425 \N \N \N 1 \N [{"file_id": "4eeb85f2-9112-4fec-aa6d-970224709bb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c2d4a96afad4af1b4852cd92e3701b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c2d4a96afad4af1b4852cd92e3701b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c2d4a96afad4af1b4852cd92e3701b1.jpg", "file_size": 19195, "is_delete": false, "file_type": 1, "original_file_name": "LZ126FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2d4a96afad4af1b4852cd92e3701b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2d4a96afad4af1b4852cd92e3701b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2d4a96afad4af1b4852cd92e3701b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c2d4a96afad4af1b4852cd92e3701b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c2d4a96afad4af1b4852cd92e3701b1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:681c4wP2ZZmdID-1_GDWXTZV1-Y=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.218587+00 2025-12-09 10:15:07.218592+00 10253 0003-55FWF#绿色 SPMX-20240815305431 \N \N \N 1 \N [{"file_id": "51aeb12e-5398-4c3a-a1d4-c2a1e0480f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36264a36b2c746648a6cb9fab5e8b8b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36264a36b2c746648a6cb9fab5e8b8b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36264a36b2c746648a6cb9fab5e8b8b6.jpg", "file_size": 15230, "is_delete": false, "file_type": 1, "original_file_name": "0003-55FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36264a36b2c746648a6cb9fab5e8b8b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36264a36b2c746648a6cb9fab5e8b8b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36264a36b2c746648a6cb9fab5e8b8b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36264a36b2c746648a6cb9fab5e8b8b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36264a36b2c746648a6cb9fab5e8b8b6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8qb44t7FMWHoofWW5ko8lKIz0g=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.220278+00 2025-12-09 10:15:07.220282+00 10254 C363.C365#玫红 SPMX-20240815305423 \N \N \N 1 \N [{"file_id": "a2cd938b-2f41-456f-9e9d-2decb24f7fa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad420a88f84f4dcf871429ded6013bea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad420a88f84f4dcf871429ded6013bea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad420a88f84f4dcf871429ded6013bea.jpg", "file_size": 14961, "is_delete": false, "file_type": 1, "original_file_name": "C363.C365#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad420a88f84f4dcf871429ded6013bea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad420a88f84f4dcf871429ded6013bea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad420a88f84f4dcf871429ded6013bea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad420a88f84f4dcf871429ded6013bea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad420a88f84f4dcf871429ded6013bea.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IirRk4zEG7ykhlm0TPiiv1477rU=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.221963+00 2025-12-09 10:15:07.221967+00 10255 DL30552#大红2XL SPMX-20240815305424 \N \N \N 1 \N [{"file_id": "da5ed7b2-206a-4508-b037-0eb18b2457b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79afc0f445fb495ca6582074161762fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79afc0f445fb495ca6582074161762fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79afc0f445fb495ca6582074161762fd.jpg", "file_size": 32628, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#大红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79afc0f445fb495ca6582074161762fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79afc0f445fb495ca6582074161762fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79afc0f445fb495ca6582074161762fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79afc0f445fb495ca6582074161762fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79afc0f445fb495ca6582074161762fd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sv28XnEjc1Y8yF6Wuphmp-WZOFU=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.223688+00 2025-12-09 10:15:07.223692+00 10256 LJ9920FW#短蓝XL VS-D3 SPMX-20240815305428 \N \N \N 1 \N [{"file_id": "a1ffcbf7-fc71-40dd-ae97-b3703cf28d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3485abc26c79464dabca94a289f4d8f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3485abc26c79464dabca94a289f4d8f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3485abc26c79464dabca94a289f4d8f1.jpg", "file_size": 14137, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FW#短蓝XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3485abc26c79464dabca94a289f4d8f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3485abc26c79464dabca94a289f4d8f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3485abc26c79464dabca94a289f4d8f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3485abc26c79464dabca94a289f4d8f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3485abc26c79464dabca94a289f4d8f1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnAOyaI4vGwSxUr2eINd59YrpLo=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.225962+00 2025-12-09 10:15:07.225969+00 10257 23-2116#A3-3XL SPMX-20240815305430 \N \N \N 1 \N [{"file_id": "ad3da3af-95db-49b9-93db-a6281605c9a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b314f784609649a7adaa0a684f003d7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b314f784609649a7adaa0a684f003d7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b314f784609649a7adaa0a684f003d7d.jpg", "file_size": 15340, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b314f784609649a7adaa0a684f003d7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b314f784609649a7adaa0a684f003d7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b314f784609649a7adaa0a684f003d7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b314f784609649a7adaa0a684f003d7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b314f784609649a7adaa0a684f003d7d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29iKnJF0cJpE3pHJTCwZpKj6CJI=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.228343+00 2025-12-09 10:15:07.228348+00 10258 HT031FW#VS-D3 SPMX-20240815305427 \N \N \N 1 \N [{"file_id": "7007669d-52f0-4a65-9c64-cb5d6406ff09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39f15c92b9d47c2a8507a3e007d7baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39f15c92b9d47c2a8507a3e007d7baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39f15c92b9d47c2a8507a3e007d7baa.jpg", "file_size": 27103, "is_delete": false, "file_type": 1, "original_file_name": "HT031FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39f15c92b9d47c2a8507a3e007d7baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39f15c92b9d47c2a8507a3e007d7baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39f15c92b9d47c2a8507a3e007d7baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39f15c92b9d47c2a8507a3e007d7baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39f15c92b9d47c2a8507a3e007d7baa.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zois-9lzi_Cix-kwz7GrBAG3Xrk=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.230091+00 2025-12-09 10:15:07.230096+00 10259 81095#深蓝色猫4XL SPMX-20240815305429 \N \N \N 1 \N [{"file_id": "bc6d45bd-7191-4aa2-95e9-c16aabb44a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0967554faf524dff941aca4c7ac619c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0967554faf524dff941aca4c7ac619c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0967554faf524dff941aca4c7ac619c5.jpg", "file_size": 16900, "is_delete": false, "file_type": 1, "original_file_name": "81095#深蓝色猫4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0967554faf524dff941aca4c7ac619c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0967554faf524dff941aca4c7ac619c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0967554faf524dff941aca4c7ac619c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0967554faf524dff941aca4c7ac619c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0967554faf524dff941aca4c7ac619c5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQBzLnHm9JcRMn3zV3CYV3aPzkQ=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.231758+00 2025-12-09 10:15:07.231763+00 10260 1096#黄色大身 SPMX-20240815305432 \N \N \N 1 \N [{"file_id": "933c105a-1bcf-4576-a935-b513b463d71e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad6101de08764f2e800652785458c470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad6101de08764f2e800652785458c470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad6101de08764f2e800652785458c470.jpg", "file_size": 18515, "is_delete": false, "file_type": 1, "original_file_name": "1096#黄色大身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6101de08764f2e800652785458c470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6101de08764f2e800652785458c470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6101de08764f2e800652785458c470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad6101de08764f2e800652785458c470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad6101de08764f2e800652785458c470.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZgJRmy0UTeReTezpuAvk6yrObQ=", "createTime": "2024-08-15 14:50:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.233706+00 2025-12-09 10:15:07.233712+00 10261 C363.C365#黑色 SPMX-20240815305433 \N \N \N 1 \N [{"file_id": "2df354d9-45d0-4f6a-a3c7-727d805a48d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b49e35e52cb42e2ab6ce91fb5a54955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b49e35e52cb42e2ab6ce91fb5a54955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b49e35e52cb42e2ab6ce91fb5a54955.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "C363.C365#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b49e35e52cb42e2ab6ce91fb5a54955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b49e35e52cb42e2ab6ce91fb5a54955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b49e35e52cb42e2ab6ce91fb5a54955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b49e35e52cb42e2ab6ce91fb5a54955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b49e35e52cb42e2ab6ce91fb5a54955.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IHEqctlRV9Zysi7vZ4ZenC5xs5I=", "createTime": "2024-08-15 14:50:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.235459+00 2025-12-09 10:15:07.235464+00 10262 23-2116#A3-4XL SPMX-20240815305437 \N \N \N 1 \N [{"file_id": "1a75ffb2-3484-4814-8a38-bb0f48b1fb8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg", "file_size": 14366, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e4047ce7cd49c2a5b6369a5c0b2e4e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9molCnhGTxUgggj4BvQli8NC7pM=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.237136+00 2025-12-09 10:15:07.23714+00 10263 0003-55FWF#蓝色 SPMX-20240815305445 \N \N \N 1 \N [{"file_id": "7e4fa9f0-ce06-418a-a8cf-4e9689a1b383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53a8ca9736b349c480248d48469194d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53a8ca9736b349c480248d48469194d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53a8ca9736b349c480248d48469194d4.jpg", "file_size": 16328, "is_delete": false, "file_type": 1, "original_file_name": "0003-55FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8ca9736b349c480248d48469194d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8ca9736b349c480248d48469194d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8ca9736b349c480248d48469194d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53a8ca9736b349c480248d48469194d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53a8ca9736b349c480248d48469194d4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Eanm--FXCVwhfQFDBwmaEd8PHg=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.238828+00 2025-12-09 10:15:07.238832+00 10264 0003-55FWF#绿色番禺调色 SPMX-20240815305436 \N \N \N 1 \N [{"file_id": "4211fb76-9936-4ed0-abda-a900ee515f7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0614279f0749427cad1cbe788979a483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0614279f0749427cad1cbe788979a483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0614279f0749427cad1cbe788979a483.jpg", "file_size": 15852, "is_delete": false, "file_type": 1, "original_file_name": "0003-55FWF#绿色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0614279f0749427cad1cbe788979a483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0614279f0749427cad1cbe788979a483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0614279f0749427cad1cbe788979a483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0614279f0749427cad1cbe788979a483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0614279f0749427cad1cbe788979a483.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dKyHRH9JIMJV-QRGaDDV-Wfvaic=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.240755+00 2025-12-09 10:15:07.24076+00 10265 FHXGPK-批布025-2 SPMX-20240815305438 \N \N \N 1 \N [{"file_id": "3c084f44-74b5-456b-af71-efbc448ffa8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5daf766afc594f7b8c4d3054972332bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5daf766afc594f7b8c4d3054972332bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5daf766afc594f7b8c4d3054972332bc.jpg", "file_size": 47333, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布025-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf766afc594f7b8c4d3054972332bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf766afc594f7b8c4d3054972332bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf766afc594f7b8c4d3054972332bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5daf766afc594f7b8c4d3054972332bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5daf766afc594f7b8c4d3054972332bc.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6oArASB-N4qZjy8PG8UxePd1Io=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.242428+00 2025-12-09 10:15:07.242432+00 10266 81095#深蓝色猫5XL SPMX-20240815305441 \N \N \N 1 \N [{"file_id": "1922beaa-e178-4554-b9ed-75addf974cd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6821096c77ef4012b1238808af65fa3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6821096c77ef4012b1238808af65fa3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6821096c77ef4012b1238808af65fa3a.jpg", "file_size": 17286, "is_delete": false, "file_type": 1, "original_file_name": "81095#深蓝色猫5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6821096c77ef4012b1238808af65fa3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6821096c77ef4012b1238808af65fa3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6821096c77ef4012b1238808af65fa3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6821096c77ef4012b1238808af65fa3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6821096c77ef4012b1238808af65fa3a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJP51_Q2Uv1PdZh2Mog66pokPvA=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.244098+00 2025-12-09 10:15:07.244102+00 10267 C365#原版色 SPMX-20240815305443 \N \N \N 1 \N [{"file_id": "561f9e9c-9bb6-4d72-8fc6-74f7597cbca7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef480faf085d4fb1ad80f36a1116c9e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef480faf085d4fb1ad80f36a1116c9e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef480faf085d4fb1ad80f36a1116c9e2.jpg", "file_size": 43783, "is_delete": false, "file_type": 1, "original_file_name": "C365#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef480faf085d4fb1ad80f36a1116c9e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef480faf085d4fb1ad80f36a1116c9e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef480faf085d4fb1ad80f36a1116c9e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef480faf085d4fb1ad80f36a1116c9e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef480faf085d4fb1ad80f36a1116c9e2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fv_yr0xxOq3pm7KNTHQDAF_NBhQ=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.245757+00 2025-12-09 10:15:07.245761+00 10268 LZ126FWF#3号色短袖 SPMX-20240815305442 \N \N \N 1 \N [{"file_id": "f07c22b5-b8f7-4dab-8ad5-29bf925c6af5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg", "file_size": 20042, "is_delete": false, "file_type": 1, "original_file_name": "LZ126FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa37bf05d43b4d5ea99a3f79f7d0e30c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPtGfXMBZxLFVgye_ONO0_8Lc9k=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.24746+00 2025-12-09 10:15:07.247465+00 10269 DL30552#大红L SPMX-20240815305434 \N \N \N 1 \N [{"file_id": "0eae7851-4dad-4360-8e71-fabc58fba66c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d60745c01a3444c99f1b3784b45d53a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d60745c01a3444c99f1b3784b45d53a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d60745c01a3444c99f1b3784b45d53a.jpg", "file_size": 30840, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#大红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d60745c01a3444c99f1b3784b45d53a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d60745c01a3444c99f1b3784b45d53a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d60745c01a3444c99f1b3784b45d53a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d60745c01a3444c99f1b3784b45d53a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d60745c01a3444c99f1b3784b45d53a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Sx7_rsLfxqE7aW_xSHe-g4CRfc=", "createTime": "2024-08-15 14:50:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.249418+00 2025-12-09 10:15:07.249423+00 10270 1096#黄色袖子 SPMX-20240815305439 \N \N \N 1 \N [{"file_id": "be85716f-5072-4711-ab52-7f191d3e7125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d3cadab49064460bd974e65bb5e608b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d3cadab49064460bd974e65bb5e608b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d3cadab49064460bd974e65bb5e608b.jpg", "file_size": 19458, "is_delete": false, "file_type": 1, "original_file_name": "1096#黄色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3cadab49064460bd974e65bb5e608b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3cadab49064460bd974e65bb5e608b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3cadab49064460bd974e65bb5e608b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d3cadab49064460bd974e65bb5e608b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d3cadab49064460bd974e65bb5e608b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjJ4FnIWDyCK1YrjfS1Jhu6Pogg=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.251665+00 2025-12-09 10:15:07.251669+00 10271 LJ9920FWE#橘色2XL VS-D3 SPMX-20240815305440 \N \N \N 1 \N [{"file_id": "fd190d1e-82fc-4d53-98b0-9bc35d01d181", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5503ce4467884449bd914bbec9b11da4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5503ce4467884449bd914bbec9b11da4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5503ce4467884449bd914bbec9b11da4.jpg", "file_size": 15898, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#橘色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5503ce4467884449bd914bbec9b11da4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5503ce4467884449bd914bbec9b11da4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5503ce4467884449bd914bbec9b11da4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5503ce4467884449bd914bbec9b11da4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5503ce4467884449bd914bbec9b11da4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48JsGg15hV0WUYCwVJkiLTmOY7M=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.254203+00 2025-12-09 10:15:07.254207+00 10272 FHXGPK-批布026-1 SPMX-20240815305447 \N \N \N 1 \N [{"file_id": "ca08ec93-a199-4200-88c4-a30fcae963bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed4160a7ea3249eca7cc7e9a347fb299.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed4160a7ea3249eca7cc7e9a347fb299.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed4160a7ea3249eca7cc7e9a347fb299.jpg", "file_size": 42312, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布026-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4160a7ea3249eca7cc7e9a347fb299.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4160a7ea3249eca7cc7e9a347fb299.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4160a7ea3249eca7cc7e9a347fb299.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed4160a7ea3249eca7cc7e9a347fb299.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed4160a7ea3249eca7cc7e9a347fb299.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNmGcwzEoFpJYHa5MrvOnrty6Bk=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.256791+00 2025-12-09 10:15:07.256796+00 10273 DL30552#大红XL SPMX-20240815305444 \N \N \N 1 \N [{"file_id": "f8c9c324-4c9a-40d8-bbe1-ce2298110ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de134dec65954d58900c13f9257da1f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de134dec65954d58900c13f9257da1f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de134dec65954d58900c13f9257da1f3.jpg", "file_size": 32315, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#大红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de134dec65954d58900c13f9257da1f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de134dec65954d58900c13f9257da1f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de134dec65954d58900c13f9257da1f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de134dec65954d58900c13f9257da1f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de134dec65954d58900c13f9257da1f3.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pw5RWWC63rEsIC15AxJsM9NLp8=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.259233+00 2025-12-09 10:15:07.25924+00 10274 HT032FW#VS-D3 SPMX-20240815305446 \N \N \N 1 \N [{"file_id": "72c67441-ee10-4004-b023-efaa606e7512", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b348b37246e4052b2d52f393398f777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b348b37246e4052b2d52f393398f777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b348b37246e4052b2d52f393398f777.jpg", "file_size": 10878, "is_delete": false, "file_type": 1, "original_file_name": "HT032FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b348b37246e4052b2d52f393398f777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b348b37246e4052b2d52f393398f777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b348b37246e4052b2d52f393398f777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b348b37246e4052b2d52f393398f777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b348b37246e4052b2d52f393398f777.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-fKbkXzUqL1XPWUnfzEt8aISNg=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.261611+00 2025-12-09 10:15:07.261617+00 10275 HT031FWE#VS-D3 SPMX-20240815305435 \N \N \N 1 \N [{"file_id": "37c71cde-f0eb-44e9-a00a-272726748c92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb029256c36542d28dfbdf7e7b397a3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb029256c36542d28dfbdf7e7b397a3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb029256c36542d28dfbdf7e7b397a3e.jpg", "file_size": 18249, "is_delete": false, "file_type": 1, "original_file_name": "HT031FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb029256c36542d28dfbdf7e7b397a3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb029256c36542d28dfbdf7e7b397a3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb029256c36542d28dfbdf7e7b397a3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb029256c36542d28dfbdf7e7b397a3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb029256c36542d28dfbdf7e7b397a3e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RpxFtLi3wyV2hmZpIBIcnyuzwY=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.263696+00 2025-12-09 10:15:07.263709+00 10276 23-2116#A3-领子3XL SPMX-20240815305449 \N \N \N 1 \N [{"file_id": "45d6d162-d6d6-4010-8999-d77061468a02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3115c84404ac4adda721a2c7409d072f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3115c84404ac4adda721a2c7409d072f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3115c84404ac4adda721a2c7409d072f.jpg", "file_size": 11662, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3115c84404ac4adda721a2c7409d072f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3115c84404ac4adda721a2c7409d072f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3115c84404ac4adda721a2c7409d072f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3115c84404ac4adda721a2c7409d072f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3115c84404ac4adda721a2c7409d072f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVTi3FFEvZjtHO3xuL8_7WwI6IA=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.265508+00 2025-12-09 10:15:07.265515+00 10277 FHXGPK-批布026-2 SPMX-20240815305458 \N \N \N 1 \N [{"file_id": "6d5a43eb-6377-404a-9dd9-be1569137d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dbd645b0470494087b74bf5508db4ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dbd645b0470494087b74bf5508db4ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dbd645b0470494087b74bf5508db4ed.jpg", "file_size": 46450, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布026-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dbd645b0470494087b74bf5508db4ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dbd645b0470494087b74bf5508db4ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dbd645b0470494087b74bf5508db4ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dbd645b0470494087b74bf5508db4ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dbd645b0470494087b74bf5508db4ed.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiZ2nRSMlOgozSkg64s55oy3DNQ=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.2673+00 2025-12-09 10:15:07.267305+00 10278 81095#蓝底猫2XL SPMX-20240815305459 \N \N \N 1 \N [{"file_id": "e964d65e-cd7f-480b-b0b5-d0be1ecc1484", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31421cfc247d4134adccfaf952138d5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31421cfc247d4134adccfaf952138d5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31421cfc247d4134adccfaf952138d5c.jpg", "file_size": 16987, "is_delete": false, "file_type": 1, "original_file_name": "81095#蓝底猫2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31421cfc247d4134adccfaf952138d5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31421cfc247d4134adccfaf952138d5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31421cfc247d4134adccfaf952138d5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31421cfc247d4134adccfaf952138d5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31421cfc247d4134adccfaf952138d5c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zm3Zz7GReoj4xcAjCnoKyhWDtiE=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.269254+00 2025-12-09 10:15:07.269259+00 10279 81095#蓝底猫1XL SPMX-20240815305451 \N \N \N 1 \N [{"file_id": "abf8cc53-4316-4684-b901-5ef072481ab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2fbbdfde33b488ca05d66c1637413c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2fbbdfde33b488ca05d66c1637413c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2fbbdfde33b488ca05d66c1637413c7.jpg", "file_size": 17976, "is_delete": false, "file_type": 1, "original_file_name": "81095#蓝底猫1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fbbdfde33b488ca05d66c1637413c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fbbdfde33b488ca05d66c1637413c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fbbdfde33b488ca05d66c1637413c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2fbbdfde33b488ca05d66c1637413c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2fbbdfde33b488ca05d66c1637413c7.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3yT6SLOrjtffovEUWCAaTI6Is8=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.271193+00 2025-12-09 10:15:07.271197+00 10280 0003-55FWF#蓝色番禺调色 SPMX-20240815305455 \N \N \N 1 \N [{"file_id": "df3d9594-8b76-4915-b680-e0a19e77ee99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3cc58be8c24ac997338aa143900200.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3cc58be8c24ac997338aa143900200.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3cc58be8c24ac997338aa143900200.jpg", "file_size": 17490, "is_delete": false, "file_type": 1, "original_file_name": "0003-55FWF#蓝色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3cc58be8c24ac997338aa143900200.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3cc58be8c24ac997338aa143900200.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3cc58be8c24ac997338aa143900200.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3cc58be8c24ac997338aa143900200.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3cc58be8c24ac997338aa143900200.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-XPT6jDSZpZceZB3-IX8Yvkk4k=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.273133+00 2025-12-09 10:15:07.273137+00 10281 LZ126FWF#4号色短袖 SPMX-20240815305450 \N \N \N 1 \N [{"file_id": "a69332fc-e974-4903-9057-f9f0bcabd408", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg", "file_size": 20215, "is_delete": false, "file_type": 1, "original_file_name": "LZ126FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a2a2fe0a2bd4dd0bdc4cc919ef6cd6c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxlnbFG4LPRkQyLO4M7hPMoMMOU=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.275035+00 2025-12-09 10:15:07.27504+00 10282 C365#大白 SPMX-20240815305453 \N \N \N 1 \N [{"file_id": "5fcada3a-a15b-4f67-b612-d8765c161850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c002ef7339e462c94073477a542625d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c002ef7339e462c94073477a542625d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c002ef7339e462c94073477a542625d.jpg", "file_size": 40965, "is_delete": false, "file_type": 1, "original_file_name": "C365#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c002ef7339e462c94073477a542625d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c002ef7339e462c94073477a542625d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c002ef7339e462c94073477a542625d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c002ef7339e462c94073477a542625d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c002ef7339e462c94073477a542625d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sY8I8KsrDPpKAcmIp8koSNE_jOg=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.276751+00 2025-12-09 10:15:07.276756+00 10283 HT032FWE#VS-D3 SPMX-20240815305456 \N \N \N 1 \N [{"file_id": "b5fad24f-7597-4fbd-94d3-5099f099ce10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1282c62b78e4812967fa111182470b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1282c62b78e4812967fa111182470b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1282c62b78e4812967fa111182470b8.jpg", "file_size": 17768, "is_delete": false, "file_type": 1, "original_file_name": "HT032FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1282c62b78e4812967fa111182470b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1282c62b78e4812967fa111182470b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1282c62b78e4812967fa111182470b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1282c62b78e4812967fa111182470b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1282c62b78e4812967fa111182470b8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JyXPMWjX0DYW7yU7XYR_bmnufY=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.278501+00 2025-12-09 10:15:07.278506+00 10284 LJ9920FWE#橘色L VS-D3 SPMX-20240815305452 \N \N \N 1 \N [{"file_id": "bf5ed31c-4352-46c8-98cf-e223509ee9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ea4a6ae03cb4d7fadd228c739c02248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ea4a6ae03cb4d7fadd228c739c02248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ea4a6ae03cb4d7fadd228c739c02248.jpg", "file_size": 16496, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#橘色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea4a6ae03cb4d7fadd228c739c02248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea4a6ae03cb4d7fadd228c739c02248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ea4a6ae03cb4d7fadd228c739c02248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ea4a6ae03cb4d7fadd228c739c02248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ea4a6ae03cb4d7fadd228c739c02248.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JwKOY4cktw-Pj8cZ2SvAZk3AtZ0=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.280282+00 2025-12-09 10:15:07.280286+00 10285 1097#彩兰色 SPMX-20240815305448 \N \N \N 1 \N [{"file_id": "33dd78d8-3124-479c-9e9f-876f3bdb718e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2f5014f595e43f1adef6adb192559bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2f5014f595e43f1adef6adb192559bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2f5014f595e43f1adef6adb192559bd.jpg", "file_size": 21671, "is_delete": false, "file_type": 1, "original_file_name": "1097#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f5014f595e43f1adef6adb192559bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f5014f595e43f1adef6adb192559bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f5014f595e43f1adef6adb192559bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2f5014f595e43f1adef6adb192559bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2f5014f595e43f1adef6adb192559bd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuwfiWvlhOpoIoETeDuoXDuuGTw=", "createTime": "2024-08-15 14:50:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.282205+00 2025-12-09 10:15:07.28221+00 10286 1097#枣红色 SPMX-20240815305457 \N \N \N 1 \N [{"file_id": "55745ba2-58b7-4f0c-b2bf-949fe7867adf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d8c1ad464244ff49ccd5b3d5cffe58e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d8c1ad464244ff49ccd5b3d5cffe58e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d8c1ad464244ff49ccd5b3d5cffe58e.jpg", "file_size": 21753, "is_delete": false, "file_type": 1, "original_file_name": "1097#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8c1ad464244ff49ccd5b3d5cffe58e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8c1ad464244ff49ccd5b3d5cffe58e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d8c1ad464244ff49ccd5b3d5cffe58e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d8c1ad464244ff49ccd5b3d5cffe58e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d8c1ad464244ff49ccd5b3d5cffe58e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUETLIST29RDTuV8kg_oAxgsUR4=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.28411+00 2025-12-09 10:15:07.284114+00 10287 DL30552#姜黄2XL SPMX-20240815305454 \N \N \N 1 \N [{"file_id": "703b0a3f-1c92-4e9d-8b23-f3832803b5a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "941a3b7f83e6425ca204514d53696b09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "941a3b7f83e6425ca204514d53696b09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "941a3b7f83e6425ca204514d53696b09.jpg", "file_size": 32097, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#姜黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941a3b7f83e6425ca204514d53696b09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941a3b7f83e6425ca204514d53696b09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/941a3b7f83e6425ca204514d53696b09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/941a3b7f83e6425ca204514d53696b09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/941a3b7f83e6425ca204514d53696b09.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86TAce61Cr1y_soO1hYM2sxy94A=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.286117+00 2025-12-09 10:15:07.286121+00 10288 23-2116#A3-领子4XL SPMX-20240815305460 \N \N \N 1 \N [{"file_id": "bfcd3a13-7aba-4fd2-9a18-acddad71f154", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "565d2fd19e834d88bd6d752341f30d49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "565d2fd19e834d88bd6d752341f30d49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "565d2fd19e834d88bd6d752341f30d49.jpg", "file_size": 11539, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565d2fd19e834d88bd6d752341f30d49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565d2fd19e834d88bd6d752341f30d49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565d2fd19e834d88bd6d752341f30d49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/565d2fd19e834d88bd6d752341f30d49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/565d2fd19e834d88bd6d752341f30d49.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIP64FL8GQCqDuWbZ-8dDYHuTcw=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.289518+00 2025-12-09 10:15:07.289523+00 10290 81095#蓝底猫3XL SPMX-20240815305469 \N \N \N 1 \N [{"file_id": "93946457-48f2-4b91-8b84-be4cce52b5eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a142e118a1e3457098af5641ef2e0a88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a142e118a1e3457098af5641ef2e0a88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a142e118a1e3457098af5641ef2e0a88.jpg", "file_size": 15883, "is_delete": false, "file_type": 1, "original_file_name": "81095#蓝底猫3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a142e118a1e3457098af5641ef2e0a88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a142e118a1e3457098af5641ef2e0a88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a142e118a1e3457098af5641ef2e0a88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a142e118a1e3457098af5641ef2e0a88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a142e118a1e3457098af5641ef2e0a88.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_pRHkd9fXG4y5keSyufAkc864w=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.29121+00 2025-12-09 10:15:07.291214+00 10291 1097#粉色 SPMX-20240815305467 \N \N \N 1 \N [{"file_id": "103e78f1-3d35-4747-ac1b-f4cbe5eaccc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cfd8cbad42c4604b6aa76f6ddc29213.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cfd8cbad42c4604b6aa76f6ddc29213.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cfd8cbad42c4604b6aa76f6ddc29213.jpg", "file_size": 13945, "is_delete": false, "file_type": 1, "original_file_name": "1097#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfd8cbad42c4604b6aa76f6ddc29213.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfd8cbad42c4604b6aa76f6ddc29213.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfd8cbad42c4604b6aa76f6ddc29213.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cfd8cbad42c4604b6aa76f6ddc29213.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cfd8cbad42c4604b6aa76f6ddc29213.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTXwOjYEcU9xnVSe6w5GZixtgUY=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.293208+00 2025-12-09 10:15:07.293213+00 10292 LJ9920FWE#橘色M VS-D3 SPMX-20240815305462 \N \N \N 1 \N [{"file_id": "004bad42-0af3-42f7-a379-c722343d90ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "278672fd48c2481b872f10873e3de784.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "278672fd48c2481b872f10873e3de784.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "278672fd48c2481b872f10873e3de784.jpg", "file_size": 17214, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#橘色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278672fd48c2481b872f10873e3de784.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278672fd48c2481b872f10873e3de784.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278672fd48c2481b872f10873e3de784.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/278672fd48c2481b872f10873e3de784.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/278672fd48c2481b872f10873e3de784.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vpCT5Fhb2SV37WSWkJlgJwazBM0=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.295109+00 2025-12-09 10:15:07.295114+00 10293 23-2116#A3前后片3XL码 SPMX-20240815305470 \N \N \N 1 \N [{"file_id": "d0674c41-16b1-4ff5-b0f0-8e355b0c6e1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab43071061f14d03ba259ff84dc4920e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab43071061f14d03ba259ff84dc4920e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab43071061f14d03ba259ff84dc4920e.jpg", "file_size": 10660, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3前后片3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071061f14d03ba259ff84dc4920e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071061f14d03ba259ff84dc4920e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071061f14d03ba259ff84dc4920e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab43071061f14d03ba259ff84dc4920e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab43071061f14d03ba259ff84dc4920e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RaGzZQsb246AX2xtsodqrvuxsd8=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.287805+00 2025-12-09 10:15:07.287809+00 10289 DL30552#姜黄L SPMX-20240815305465 \N \N \N 1 \N [{"file_id": "f750a625-99e0-43e6-ac0d-9f145b938bde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0e3b909ca3d44cfb451ac653537e147.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0e3b909ca3d44cfb451ac653537e147.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0e3b909ca3d44cfb451ac653537e147.jpg", "file_size": 30851, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#姜黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e3b909ca3d44cfb451ac653537e147.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e3b909ca3d44cfb451ac653537e147.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e3b909ca3d44cfb451ac653537e147.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0e3b909ca3d44cfb451ac653537e147.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0e3b909ca3d44cfb451ac653537e147.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OITPBSsRU6lAZTfS4dNW5t2vNIg=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.298735+00 2025-12-09 10:15:07.298741+00 10294 LZ126FWF#5号色短袖 SPMX-20240815305461 \N \N \N 1 \N [{"file_id": "313a1bf2-e7bb-4ff3-9a7f-7e1a9377ac5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e397e5411dc4de491c1cb492c486833.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e397e5411dc4de491c1cb492c486833.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e397e5411dc4de491c1cb492c486833.jpg", "file_size": 19552, "is_delete": false, "file_type": 1, "original_file_name": "LZ126FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e397e5411dc4de491c1cb492c486833.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e397e5411dc4de491c1cb492c486833.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e397e5411dc4de491c1cb492c486833.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e397e5411dc4de491c1cb492c486833.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e397e5411dc4de491c1cb492c486833.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDqTivYymHNq7FTqIUIfdLugvI4=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.300475+00 2025-12-09 10:15:07.30048+00 10295 HT033#黄C号 SPMX-20240815305466 \N \N \N 1 \N [{"file_id": "f65164b8-c7ea-4f07-846b-86db558a0744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbd6131c41c0497481edeabafd64d22b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbd6131c41c0497481edeabafd64d22b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbd6131c41c0497481edeabafd64d22b.jpg", "file_size": 8952, "is_delete": false, "file_type": 1, "original_file_name": "HT033#黄C号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd6131c41c0497481edeabafd64d22b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd6131c41c0497481edeabafd64d22b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd6131c41c0497481edeabafd64d22b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbd6131c41c0497481edeabafd64d22b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbd6131c41c0497481edeabafd64d22b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XfjpdRUTBUXX1iEBGgBZp9QFXAk=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.302416+00 2025-12-09 10:15:07.30242+00 10296 C365#橙色 SPMX-20240815305463 \N \N \N 1 \N [{"file_id": "f8743032-e08f-45db-8109-6295166d6951", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c633ed84d4ed4927b7c84887df53f0c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c633ed84d4ed4927b7c84887df53f0c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c633ed84d4ed4927b7c84887df53f0c1.jpg", "file_size": 44402, "is_delete": false, "file_type": 1, "original_file_name": "C365#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c633ed84d4ed4927b7c84887df53f0c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c633ed84d4ed4927b7c84887df53f0c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c633ed84d4ed4927b7c84887df53f0c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c633ed84d4ed4927b7c84887df53f0c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c633ed84d4ed4927b7c84887df53f0c1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8r1ccMV9gJfhl1CpAb0TQ4EOp8=", "createTime": "2024-08-15 14:50:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.304296+00 2025-12-09 10:15:07.3043+00 10297 FHXGPK-批布027-1 SPMX-20240815305468 \N \N \N 1 \N [{"file_id": "b68a23b5-41f7-46d5-b47c-92a0ae08b8c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b459eb301404162a0420072c165afae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b459eb301404162a0420072c165afae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b459eb301404162a0420072c165afae.jpg", "file_size": 32600, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布027-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b459eb301404162a0420072c165afae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b459eb301404162a0420072c165afae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b459eb301404162a0420072c165afae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b459eb301404162a0420072c165afae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b459eb301404162a0420072c165afae.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ftYT4qNPO0pBEWj7PKs6TtOqNE=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.306265+00 2025-12-09 10:15:07.306269+00 10298 C365#黑色 SPMX-20240815305484 \N \N \N 1 \N [{"file_id": "f6c0239a-954b-41a5-a544-4594dc0677a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3025b4117fb5447582accb5c072adc20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3025b4117fb5447582accb5c072adc20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3025b4117fb5447582accb5c072adc20.jpg", "file_size": 42744, "is_delete": false, "file_type": 1, "original_file_name": "C365#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3025b4117fb5447582accb5c072adc20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3025b4117fb5447582accb5c072adc20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3025b4117fb5447582accb5c072adc20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3025b4117fb5447582accb5c072adc20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3025b4117fb5447582accb5c072adc20.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBTuL-UnA9LLZJC01rzqiqJj6fk=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.307974+00 2025-12-09 10:15:07.307979+00 10299 LJ9920FWE#橘色S VS-D3 SPMX-20240815305473 \N \N \N 1 \N [{"file_id": "3749e1b3-dab2-4156-abe6-0bf6b55dd18f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d5b6c75cb1e439a9a913aef3f122f80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d5b6c75cb1e439a9a913aef3f122f80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d5b6c75cb1e439a9a913aef3f122f80.jpg", "file_size": 17504, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#橘色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5b6c75cb1e439a9a913aef3f122f80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5b6c75cb1e439a9a913aef3f122f80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5b6c75cb1e439a9a913aef3f122f80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d5b6c75cb1e439a9a913aef3f122f80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d5b6c75cb1e439a9a913aef3f122f80.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLRY3vCpbocL_C5QBnPiXNeaHCM=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.309711+00 2025-12-09 10:15:07.309715+00 10300 FHXGPK-批布027-2 SPMX-20240815305477 \N \N \N 1 \N [{"file_id": "c39644aa-b40e-4aa4-ae8c-34a82ca18dba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bde9e68d323e447d85fa70f7a45eb4ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bde9e68d323e447d85fa70f7a45eb4ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bde9e68d323e447d85fa70f7a45eb4ca.jpg", "file_size": 33358, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布027-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde9e68d323e447d85fa70f7a45eb4ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde9e68d323e447d85fa70f7a45eb4ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bde9e68d323e447d85fa70f7a45eb4ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bde9e68d323e447d85fa70f7a45eb4ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bde9e68d323e447d85fa70f7a45eb4ca.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IkvvI_TC5329AFI88_6rQuNa5gE=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.311403+00 2025-12-09 10:15:07.311408+00 10301 0003-57FWF#V5曲线 SPMX-20240815305474 \N \N \N 1 \N [{"file_id": "c40e6aac-af68-4adc-9517-217eadee7cd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9f4df484a34aeb849cd8628b9386a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9f4df484a34aeb849cd8628b9386a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9f4df484a34aeb849cd8628b9386a8.jpg", "file_size": 20317, "is_delete": false, "file_type": 1, "original_file_name": "0003-57FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9f4df484a34aeb849cd8628b9386a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9f4df484a34aeb849cd8628b9386a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9f4df484a34aeb849cd8628b9386a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9f4df484a34aeb849cd8628b9386a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9f4df484a34aeb849cd8628b9386a8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sS9SmXlBeWCqBuU4DOSrKT8KOSk=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.31333+00 2025-12-09 10:15:07.313334+00 10302 0003-58FWF#V5曲线 SPMX-20240815305482 \N \N \N 1 \N [{"file_id": "80645978-e1ee-4458-a5c4-d2656458c1b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd54230b77174b2484376853fd419de5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd54230b77174b2484376853fd419de5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd54230b77174b2484376853fd419de5.jpg", "file_size": 28629, "is_delete": false, "file_type": 1, "original_file_name": "0003-58FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd54230b77174b2484376853fd419de5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd54230b77174b2484376853fd419de5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd54230b77174b2484376853fd419de5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd54230b77174b2484376853fd419de5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd54230b77174b2484376853fd419de5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZcnQQLuFCxb_k1e8U2l-4q5v70=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.315323+00 2025-12-09 10:15:07.315328+00 10303 LZ1270#背心款2号色 SPMX-20240815305483 \N \N \N 1 \N [{"file_id": "68ade450-f365-4947-b38d-40188048f25f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0594b006098b4794b4e03d9dc037245a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0594b006098b4794b4e03d9dc037245a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0594b006098b4794b4e03d9dc037245a.jpg", "file_size": 17247, "is_delete": false, "file_type": 1, "original_file_name": "LZ1270#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0594b006098b4794b4e03d9dc037245a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0594b006098b4794b4e03d9dc037245a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0594b006098b4794b4e03d9dc037245a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0594b006098b4794b4e03d9dc037245a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0594b006098b4794b4e03d9dc037245a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uubWdfvQdcu_I8LhjyjeIA3TVTg=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.317351+00 2025-12-09 10:15:07.317356+00 10304 HT033FW#VS-D3 SPMX-20240815305476 \N \N \N 1 \N [{"file_id": "64f1b025-c852-4c2c-9d3f-9f884eef983c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "225151ca09d64067bc98976d85375453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "225151ca09d64067bc98976d85375453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "225151ca09d64067bc98976d85375453.jpg", "file_size": 17151, "is_delete": false, "file_type": 1, "original_file_name": "HT033FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/225151ca09d64067bc98976d85375453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/225151ca09d64067bc98976d85375453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/225151ca09d64067bc98976d85375453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/225151ca09d64067bc98976d85375453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/225151ca09d64067bc98976d85375453.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykktUZ41uhhqXWmxar5nPPxfO60=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.319084+00 2025-12-09 10:15:07.319089+00 10305 C365#玫红 SPMX-20240815305471 \N \N \N 1 \N [{"file_id": "f590a43a-0c1c-4c6c-aa06-d797b59f0f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74df1f7717c044208f70249d10b66c09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74df1f7717c044208f70249d10b66c09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74df1f7717c044208f70249d10b66c09.jpg", "file_size": 43140, "is_delete": false, "file_type": 1, "original_file_name": "C365#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74df1f7717c044208f70249d10b66c09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74df1f7717c044208f70249d10b66c09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74df1f7717c044208f70249d10b66c09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74df1f7717c044208f70249d10b66c09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74df1f7717c044208f70249d10b66c09.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHRh3Nn9AOjIO_FDP-jKn65pp0Y=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.320789+00 2025-12-09 10:15:07.320793+00 10306 23-2116#A3前后片4XL码 SPMX-20240815305479 \N \N \N 1 \N [{"file_id": "0b2c72e6-d5b2-45e9-8053-a22bdc081f4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9821811f9b27463c92be865086d6c02b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9821811f9b27463c92be865086d6c02b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9821811f9b27463c92be865086d6c02b.jpg", "file_size": 10971, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3前后片4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9821811f9b27463c92be865086d6c02b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9821811f9b27463c92be865086d6c02b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9821811f9b27463c92be865086d6c02b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9821811f9b27463c92be865086d6c02b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9821811f9b27463c92be865086d6c02b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-2A4qAdtkaf3DV-aYxvxruowtU=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.322469+00 2025-12-09 10:15:07.322474+00 10307 LJ9920FWE#橘色XL VS-D3 SPMX-20240815305481 \N \N \N 1 \N [{"file_id": "ec69da5d-d506-46de-9f6a-9fe03ee2bb44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fbf2dfedf474c878be0ee0ee33c01a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fbf2dfedf474c878be0ee0ee33c01a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fbf2dfedf474c878be0ee0ee33c01a6.jpg", "file_size": 15840, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#橘色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbf2dfedf474c878be0ee0ee33c01a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbf2dfedf474c878be0ee0ee33c01a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbf2dfedf474c878be0ee0ee33c01a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fbf2dfedf474c878be0ee0ee33c01a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fbf2dfedf474c878be0ee0ee33c01a6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZoAVfXgxxEIByRwKMDDKh8vUmNw=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.324436+00 2025-12-09 10:15:07.324441+00 10308 DL30552#彩蓝2XL SPMX-20240815305485 \N \N \N 1 \N [{"file_id": "27ac6b61-eceb-4e2c-8d19-ed26f71b139b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f10d08007146abbe9c14eca90eec32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f10d08007146abbe9c14eca90eec32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f10d08007146abbe9c14eca90eec32.jpg", "file_size": 33099, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#彩蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f10d08007146abbe9c14eca90eec32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f10d08007146abbe9c14eca90eec32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f10d08007146abbe9c14eca90eec32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f10d08007146abbe9c14eca90eec32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f10d08007146abbe9c14eca90eec32.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yl97Rd-rFMU-2rqBQu1l3-9rew8=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.326424+00 2025-12-09 10:15:07.326428+00 10309 DL30552#姜黄XL SPMX-20240815305475 \N \N \N 1 \N [{"file_id": "980296ae-114b-4606-9493-045b5dadeb77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9649faa7a7e94b15a39d2b6ccd106566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9649faa7a7e94b15a39d2b6ccd106566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9649faa7a7e94b15a39d2b6ccd106566.jpg", "file_size": 31586, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#姜黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649faa7a7e94b15a39d2b6ccd106566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649faa7a7e94b15a39d2b6ccd106566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9649faa7a7e94b15a39d2b6ccd106566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9649faa7a7e94b15a39d2b6ccd106566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9649faa7a7e94b15a39d2b6ccd106566.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ncemVn2lfNqWvnABJPWTfuzsnl0=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.328389+00 2025-12-09 10:15:07.328394+00 10310 81095#蓝底猫4XL SPMX-20240815305478 \N \N \N 1 \N [{"file_id": "4658f8e9-a6f6-4a1b-8ba3-798f1d9e6c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e45bd0c00e3406ea54f647a89be57ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e45bd0c00e3406ea54f647a89be57ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e45bd0c00e3406ea54f647a89be57ec.jpg", "file_size": 15074, "is_delete": false, "file_type": 1, "original_file_name": "81095#蓝底猫4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e45bd0c00e3406ea54f647a89be57ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e45bd0c00e3406ea54f647a89be57ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e45bd0c00e3406ea54f647a89be57ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e45bd0c00e3406ea54f647a89be57ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e45bd0c00e3406ea54f647a89be57ec.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Cn2fS_Ojjui4Ay8gh9hShFtQwo=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.330089+00 2025-12-09 10:15:07.330093+00 10311 LZ1270#背心款1号色 SPMX-20240815305472 \N \N \N 1 \N [{"file_id": "110f0166-7862-4682-8e84-43b089404d91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3c69c9424f24cc6aa7089ec94a83771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3c69c9424f24cc6aa7089ec94a83771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3c69c9424f24cc6aa7089ec94a83771.jpg", "file_size": 18693, "is_delete": false, "file_type": 1, "original_file_name": "LZ1270#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c69c9424f24cc6aa7089ec94a83771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c69c9424f24cc6aa7089ec94a83771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c69c9424f24cc6aa7089ec94a83771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3c69c9424f24cc6aa7089ec94a83771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3c69c9424f24cc6aa7089ec94a83771.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMsjxLN7HLE835QY08NmC6xpf_I=", "createTime": "2024-08-15 14:50:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.331788+00 2025-12-09 10:15:07.331793+00 10312 1097#红色 SPMX-20240815305480 \N \N \N 1 \N [{"file_id": "7fadf8cb-ab0f-4b75-a3d2-48027e986f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1417304f7a24f108feddcfbb3aaccc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1417304f7a24f108feddcfbb3aaccc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1417304f7a24f108feddcfbb3aaccc6.jpg", "file_size": 21118, "is_delete": false, "file_type": 1, "original_file_name": "1097#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1417304f7a24f108feddcfbb3aaccc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1417304f7a24f108feddcfbb3aaccc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1417304f7a24f108feddcfbb3aaccc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1417304f7a24f108feddcfbb3aaccc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1417304f7a24f108feddcfbb3aaccc6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59OudIsNfGbkhG_Ko-1yp4FldfI=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.333479+00 2025-12-09 10:15:07.333483+00 10313 DL30552#彩蓝L SPMX-20240815305496 \N \N \N 1 \N [{"file_id": "84a1bf4e-ff6e-4e41-8c92-6acc4d383946", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfb19bd7a743490fb4c5248d40bc1161.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfb19bd7a743490fb4c5248d40bc1161.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfb19bd7a743490fb4c5248d40bc1161.jpg", "file_size": 31660, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb19bd7a743490fb4c5248d40bc1161.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb19bd7a743490fb4c5248d40bc1161.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb19bd7a743490fb4c5248d40bc1161.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfb19bd7a743490fb4c5248d40bc1161.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfb19bd7a743490fb4c5248d40bc1161.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eGG-lWUXU36lQvxnn6NU0cDYPbU=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.335145+00 2025-12-09 10:15:07.33515+00 10314 HT034FW#浅橘VS-D3 SPMX-20240815305498 \N \N \N 1 \N [{"file_id": "7e4aabe4-8088-4ef3-9c51-65dedea131bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54765f43c5164aa2afc1b0e7ff721eff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54765f43c5164aa2afc1b0e7ff721eff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54765f43c5164aa2afc1b0e7ff721eff.jpg", "file_size": 18296, "is_delete": false, "file_type": 1, "original_file_name": "HT034FW#浅橘VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54765f43c5164aa2afc1b0e7ff721eff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54765f43c5164aa2afc1b0e7ff721eff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54765f43c5164aa2afc1b0e7ff721eff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54765f43c5164aa2afc1b0e7ff721eff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54765f43c5164aa2afc1b0e7ff721eff.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lh4uF4ygBlt_FcKC4JXffAlUf8g=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.336873+00 2025-12-09 10:15:07.336877+00 10315 C370#大白 SPMX-20240815305495 \N \N \N 1 \N [{"file_id": "84c2053b-ad85-4b4d-b75e-7ddb5e5c8361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01091977592b4d59a476198b67aeaab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01091977592b4d59a476198b67aeaab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01091977592b4d59a476198b67aeaab6.jpg", "file_size": 43807, "is_delete": false, "file_type": 1, "original_file_name": "C370#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01091977592b4d59a476198b67aeaab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01091977592b4d59a476198b67aeaab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01091977592b4d59a476198b67aeaab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01091977592b4d59a476198b67aeaab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01091977592b4d59a476198b67aeaab6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wG-1tHuoFb5GqdH9a1cE9QtQk0s=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.338591+00 2025-12-09 10:15:07.338595+00 10316 FHXGPK-批布028-1 SPMX-20240815305490 \N \N \N 1 \N [{"file_id": "bd74c897-94a6-4965-b961-f78e004999b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f698b968694447ae99e0fec515fbe245.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f698b968694447ae99e0fec515fbe245.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f698b968694447ae99e0fec515fbe245.jpg", "file_size": 57240, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布028-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f698b968694447ae99e0fec515fbe245.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f698b968694447ae99e0fec515fbe245.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f698b968694447ae99e0fec515fbe245.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f698b968694447ae99e0fec515fbe245.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f698b968694447ae99e0fec515fbe245.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDHDQWj7LTrycb4FIii4UZjPqJ0=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.340616+00 2025-12-09 10:15:07.340622+00 10317 LZ1270#背心款3号色 SPMX-20240815305493 \N \N \N 1 \N [{"file_id": "8c5d3ea6-1eea-439f-b1be-3860b00a1852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb5b821922c5406c8ac58fd9029aecec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb5b821922c5406c8ac58fd9029aecec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb5b821922c5406c8ac58fd9029aecec.jpg", "file_size": 17967, "is_delete": false, "file_type": 1, "original_file_name": "LZ1270#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5b821922c5406c8ac58fd9029aecec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5b821922c5406c8ac58fd9029aecec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5b821922c5406c8ac58fd9029aecec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb5b821922c5406c8ac58fd9029aecec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb5b821922c5406c8ac58fd9029aecec.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSUAMFeXUepQfK-GBeKYeC7yaWA=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.342632+00 2025-12-09 10:15:07.342637+00 10318 1097#黑色 SPMX-20240815305489 \N \N \N 1 \N [{"file_id": "a2d37838-496a-4bd7-b5b9-fa71b5ee2c42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c760db03de484803871eda841fa09227.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c760db03de484803871eda841fa09227.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c760db03de484803871eda841fa09227.jpg", "file_size": 21420, "is_delete": false, "file_type": 1, "original_file_name": "1097#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c760db03de484803871eda841fa09227.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c760db03de484803871eda841fa09227.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c760db03de484803871eda841fa09227.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c760db03de484803871eda841fa09227.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c760db03de484803871eda841fa09227.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWboCu8LqjSwUIKaGgkRAE4xvoU=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.344542+00 2025-12-09 10:15:07.344546+00 10319 23-2116#A3袖子3XL码 SPMX-20240815305488 \N \N \N 1 \N [{"file_id": "2f6a136d-dd1b-4516-8276-040d3783f714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc5392a2025e444798944af14c0f0cd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc5392a2025e444798944af14c0f0cd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc5392a2025e444798944af14c0f0cd8.jpg", "file_size": 10253, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3袖子3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5392a2025e444798944af14c0f0cd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5392a2025e444798944af14c0f0cd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5392a2025e444798944af14c0f0cd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc5392a2025e444798944af14c0f0cd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc5392a2025e444798944af14c0f0cd8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKFYnHR2HESeBGWAQDSpnVEwpvA=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.346729+00 2025-12-09 10:15:07.346735+00 10320 LJ9920FWE#玫红2XL VS-D3 SPMX-20240815305491 \N \N \N 1 \N [{"file_id": "8597a7af-0468-4af8-a8f4-5c1d0ff71d93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24fc01e2deec4743b5efd82190e2283b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24fc01e2deec4743b5efd82190e2283b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24fc01e2deec4743b5efd82190e2283b.jpg", "file_size": 15437, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#玫红2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fc01e2deec4743b5efd82190e2283b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fc01e2deec4743b5efd82190e2283b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fc01e2deec4743b5efd82190e2283b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24fc01e2deec4743b5efd82190e2283b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24fc01e2deec4743b5efd82190e2283b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9rjVgzWyTKqg0rSEzV_dlW6x0o=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.348869+00 2025-12-09 10:15:07.348874+00 10321 81095-2#蓝底猫1XL SPMX-20240815305497 \N \N \N 1 \N [{"file_id": "0ad43602-e599-401f-88aa-5eccf1050681", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "887dc0e628694aed9f33e4cb5ed63eed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "887dc0e628694aed9f33e4cb5ed63eed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "887dc0e628694aed9f33e4cb5ed63eed.jpg", "file_size": 16141, "is_delete": false, "file_type": 1, "original_file_name": "81095-2#蓝底猫1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887dc0e628694aed9f33e4cb5ed63eed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887dc0e628694aed9f33e4cb5ed63eed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887dc0e628694aed9f33e4cb5ed63eed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/887dc0e628694aed9f33e4cb5ed63eed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/887dc0e628694aed9f33e4cb5ed63eed.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mZMYAYECzuX0UJOJC6cadUmSG4E=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.350796+00 2025-12-09 10:15:07.350801+00 10322 JTSS173FW#VS-D3 SPMX-20240815305494 \N \N \N 1 \N [{"file_id": "9583f06f-4d2c-4db2-b7cd-a7402a8bec67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3867b295145a4d338f09687a3b3cf3c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3867b295145a4d338f09687a3b3cf3c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3867b295145a4d338f09687a3b3cf3c7.jpg", "file_size": 6391, "is_delete": false, "file_type": 1, "original_file_name": "JTSS173FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3867b295145a4d338f09687a3b3cf3c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3867b295145a4d338f09687a3b3cf3c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3867b295145a4d338f09687a3b3cf3c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3867b295145a4d338f09687a3b3cf3c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3867b295145a4d338f09687a3b3cf3c7.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_aI9owJer-MR7_FtwUOVHFeRjA=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.35269+00 2025-12-09 10:15:07.352695+00 10323 HT033FWE#VS-D3 SPMX-20240815305486 \N \N \N 1 \N [{"file_id": "5cb0baae-e9c1-4835-9af0-33759437e317", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea78aa08fc5d4ddf97b96661f108ea9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea78aa08fc5d4ddf97b96661f108ea9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea78aa08fc5d4ddf97b96661f108ea9d.jpg", "file_size": 16994, "is_delete": false, "file_type": 1, "original_file_name": "HT033FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea78aa08fc5d4ddf97b96661f108ea9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea78aa08fc5d4ddf97b96661f108ea9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea78aa08fc5d4ddf97b96661f108ea9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea78aa08fc5d4ddf97b96661f108ea9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea78aa08fc5d4ddf97b96661f108ea9d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIIGHhU9DncYMQxfI_jZr4fa41s=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.354632+00 2025-12-09 10:15:07.354636+00 10324 0003-59FWF#改布匹白色 SPMX-20240815305492 \N \N \N 1 \N [{"file_id": "5e714133-e364-43a7-9ebf-3db7ce74bc76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5134f9a7d274cf8a9bf590a8872af2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5134f9a7d274cf8a9bf590a8872af2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5134f9a7d274cf8a9bf590a8872af2a.jpg", "file_size": 18376, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#改布匹白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5134f9a7d274cf8a9bf590a8872af2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5134f9a7d274cf8a9bf590a8872af2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5134f9a7d274cf8a9bf590a8872af2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5134f9a7d274cf8a9bf590a8872af2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5134f9a7d274cf8a9bf590a8872af2a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZofGt9dA1wpBh6TzfZ6IPwdGt0=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.356326+00 2025-12-09 10:15:07.35633+00 10325 23-2116#A3袖子4XL码 SPMX-20240815305499 \N \N \N 1 \N [{"file_id": "304f6e4b-8a1f-4268-a86b-a98ad24d1f19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fb0702ab617400ea79bac1746e17e00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fb0702ab617400ea79bac1746e17e00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fb0702ab617400ea79bac1746e17e00.jpg", "file_size": 10691, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3袖子4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb0702ab617400ea79bac1746e17e00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb0702ab617400ea79bac1746e17e00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb0702ab617400ea79bac1746e17e00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fb0702ab617400ea79bac1746e17e00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fb0702ab617400ea79bac1746e17e00.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CglFBaftidvKag1ynowe-kHw26Y=", "createTime": "2024-08-15 14:50:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.357996+00 2025-12-09 10:15:07.358+00 10326 81095#蓝底猫5XL SPMX-20240815305487 \N \N \N 1 \N [{"file_id": "a91d257b-5de1-4da5-9e55-2267778f7015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d0841933b89435eba9823689d5e5a51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d0841933b89435eba9823689d5e5a51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d0841933b89435eba9823689d5e5a51.jpg", "file_size": 15231, "is_delete": false, "file_type": 1, "original_file_name": "81095#蓝底猫5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0841933b89435eba9823689d5e5a51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0841933b89435eba9823689d5e5a51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0841933b89435eba9823689d5e5a51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d0841933b89435eba9823689d5e5a51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d0841933b89435eba9823689d5e5a51.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aIwWgkI8cLzvBW_oFMm8ANGDSyk=", "createTime": "2024-08-15 14:50:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.359707+00 2025-12-09 10:15:07.359712+00 10327 1098PL#WJC22 SPMX-20240815305500 \N \N \N 1 \N [{"file_id": "eca599b4-ea3f-43b2-ac6c-d28091ce0ef8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abacb6df12944e5cba8a0a5d82ad4e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abacb6df12944e5cba8a0a5d82ad4e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abacb6df12944e5cba8a0a5d82ad4e11.jpg", "file_size": 11595, "is_delete": false, "file_type": 1, "original_file_name": "1098PL#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abacb6df12944e5cba8a0a5d82ad4e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abacb6df12944e5cba8a0a5d82ad4e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abacb6df12944e5cba8a0a5d82ad4e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abacb6df12944e5cba8a0a5d82ad4e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abacb6df12944e5cba8a0a5d82ad4e11.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3hMw0ZalO3elW-Phb6bh8g6c040=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.36164+00 2025-12-09 10:15:07.361645+00 10328 JTSS174FW#VS-D3 SPMX-20240815305503 \N \N \N 1 \N [{"file_id": "55e8b024-fe81-4468-8b9d-b802d50424d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c72c907b0c154801805fb8b31bde6bfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c72c907b0c154801805fb8b31bde6bfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c72c907b0c154801805fb8b31bde6bfa.jpg", "file_size": 8638, "is_delete": false, "file_type": 1, "original_file_name": "JTSS174FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72c907b0c154801805fb8b31bde6bfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72c907b0c154801805fb8b31bde6bfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72c907b0c154801805fb8b31bde6bfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c72c907b0c154801805fb8b31bde6bfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c72c907b0c154801805fb8b31bde6bfa.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qwh3aLVih6XhXrNhyei_A1x7kV4=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.363299+00 2025-12-09 10:15:07.363303+00 10329 LJ9920FWE#玫红L VS-D3 SPMX-20240815305504 \N \N \N 1 \N [{"file_id": "0abc471a-4757-4f0c-97ed-a58d75b486f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08670a3f34694ab3b203165bf1602d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08670a3f34694ab3b203165bf1602d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08670a3f34694ab3b203165bf1602d42.jpg", "file_size": 16032, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#玫红L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08670a3f34694ab3b203165bf1602d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08670a3f34694ab3b203165bf1602d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08670a3f34694ab3b203165bf1602d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08670a3f34694ab3b203165bf1602d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08670a3f34694ab3b203165bf1602d42.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljEiPa2d1ELSMnvVuL8qdJCmiG4=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.364974+00 2025-12-09 10:15:07.364978+00 10330 81095-2#蓝底猫2XL SPMX-20240815305502 \N \N \N 1 \N [{"file_id": "673191f1-dd98-4a55-b587-fedf384b96d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d17c7136b5164890910a6b6220466d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d17c7136b5164890910a6b6220466d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d17c7136b5164890910a6b6220466d74.jpg", "file_size": 15170, "is_delete": false, "file_type": 1, "original_file_name": "81095-2#蓝底猫2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d17c7136b5164890910a6b6220466d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d17c7136b5164890910a6b6220466d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d17c7136b5164890910a6b6220466d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d17c7136b5164890910a6b6220466d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d17c7136b5164890910a6b6220466d74.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gaKSvthAyByaOu2DUFXtXQKkSZg=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.366844+00 2025-12-09 10:15:07.366849+00 10331 FHXGPK-批布028-2 SPMX-20240815305501 \N \N \N 1 \N [{"file_id": "d4ec4a08-2e94-490e-b263-8a40acef7f52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c6fb158ed06482cb7d15f681f95cffc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c6fb158ed06482cb7d15f681f95cffc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c6fb158ed06482cb7d15f681f95cffc.jpg", "file_size": 57546, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布028-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6fb158ed06482cb7d15f681f95cffc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6fb158ed06482cb7d15f681f95cffc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c6fb158ed06482cb7d15f681f95cffc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c6fb158ed06482cb7d15f681f95cffc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c6fb158ed06482cb7d15f681f95cffc.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peqiDWjvUjZeQ0cUw6V1Hl2HUkQ=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.36893+00 2025-12-09 10:15:07.368934+00 10332 C370#玫红 SPMX-20240815305508 \N \N \N 1 \N [{"file_id": "6b2b8db2-2c4d-4edb-a9c9-0a97be383034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53de475b936545c28b8756efa767e679.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53de475b936545c28b8756efa767e679.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53de475b936545c28b8756efa767e679.jpg", "file_size": 45432, "is_delete": false, "file_type": 1, "original_file_name": "C370#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de475b936545c28b8756efa767e679.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de475b936545c28b8756efa767e679.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de475b936545c28b8756efa767e679.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53de475b936545c28b8756efa767e679.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53de475b936545c28b8756efa767e679.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQTLWMi4ov6msQoD5meb9Cg2tdU=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.371097+00 2025-12-09 10:15:07.371102+00 10333 23-2116#A3领子通用 SPMX-20240815305517 \N \N \N 1 \N [{"file_id": "b95be31a-9119-4091-8250-44cd11d28845", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84f7a8b4beda470ab65be49c092f2388.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84f7a8b4beda470ab65be49c092f2388.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84f7a8b4beda470ab65be49c092f2388.jpg", "file_size": 9510, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3领子通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84f7a8b4beda470ab65be49c092f2388.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84f7a8b4beda470ab65be49c092f2388.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84f7a8b4beda470ab65be49c092f2388.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84f7a8b4beda470ab65be49c092f2388.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84f7a8b4beda470ab65be49c092f2388.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2GC8o9sq3nwWr8dJHv9I5Nl3B0=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.373048+00 2025-12-09 10:15:07.373052+00 10334 DL30552#粉色2XL SPMX-20240815305521 \N \N \N 1 \N [{"file_id": "d44aa5a3-4f9d-47fa-8aa1-8c2ec041ed58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4bce737dd544c68934c28185ca663fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4bce737dd544c68934c28185ca663fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4bce737dd544c68934c28185ca663fd.jpg", "file_size": 31661, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bce737dd544c68934c28185ca663fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bce737dd544c68934c28185ca663fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bce737dd544c68934c28185ca663fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4bce737dd544c68934c28185ca663fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4bce737dd544c68934c28185ca663fd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEDTluG24FggNGA8H1omDsmSQhk=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.375221+00 2025-12-09 10:15:07.375225+00 10335 FHXGPK-批布028-3 SPMX-20240815305513 \N \N \N 1 \N [{"file_id": "c0ed6dc2-0577-4722-8f65-14d0999c9eee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae915698c1340528b3eaa14715be1c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae915698c1340528b3eaa14715be1c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae915698c1340528b3eaa14715be1c5.jpg", "file_size": 59612, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布028-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae915698c1340528b3eaa14715be1c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae915698c1340528b3eaa14715be1c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae915698c1340528b3eaa14715be1c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae915698c1340528b3eaa14715be1c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae915698c1340528b3eaa14715be1c5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUDhzBKbMxe7Lvtmhmu2GU_s_0M=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.377204+00 2025-12-09 10:15:07.377209+00 10336 JTSS175FW#VS-D3 SPMX-20240815305514 \N \N \N 1 \N [{"file_id": "af9677bd-564c-4e02-81ec-c9aa0c248c2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2beeadd8336f42698662008ccd1150bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2beeadd8336f42698662008ccd1150bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2beeadd8336f42698662008ccd1150bb.jpg", "file_size": 13191, "is_delete": false, "file_type": 1, "original_file_name": "JTSS175FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beeadd8336f42698662008ccd1150bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beeadd8336f42698662008ccd1150bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beeadd8336f42698662008ccd1150bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2beeadd8336f42698662008ccd1150bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2beeadd8336f42698662008ccd1150bb.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uoguq1VzH467Z7kfcElMMv3Lsns=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.379167+00 2025-12-09 10:15:07.379171+00 10337 23-2116#A3领口通用 SPMX-20240815305506 \N \N \N 1 \N [{"file_id": "6a976dd9-5577-4f7b-8136-f0c344ea3660", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "455e4d3310664bf685148d1996cfc772.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "455e4d3310664bf685148d1996cfc772.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "455e4d3310664bf685148d1996cfc772.jpg", "file_size": 6273, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A3领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455e4d3310664bf685148d1996cfc772.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455e4d3310664bf685148d1996cfc772.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455e4d3310664bf685148d1996cfc772.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/455e4d3310664bf685148d1996cfc772.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/455e4d3310664bf685148d1996cfc772.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPbHgCC29Nd942Wydnz_vcwOORs=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.38112+00 2025-12-09 10:15:07.381125+00 10338 DL30552#彩蓝XL SPMX-20240815305507 \N \N \N 1 \N [{"file_id": "3fcb145e-2aeb-43b5-9702-ac7250a19040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "046f8f876616413ea611b9e3a42df71a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "046f8f876616413ea611b9e3a42df71a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "046f8f876616413ea611b9e3a42df71a.jpg", "file_size": 31997, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#彩蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046f8f876616413ea611b9e3a42df71a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046f8f876616413ea611b9e3a42df71a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046f8f876616413ea611b9e3a42df71a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/046f8f876616413ea611b9e3a42df71a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/046f8f876616413ea611b9e3a42df71a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJ_yjc2JB5-bzcw3Y89lcJlmJgo=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.383175+00 2025-12-09 10:15:07.383179+00 10339 81095-2#蓝底猫3XL SPMX-20240815305512 \N \N \N 1 \N [{"file_id": "be81aec2-f4b0-4988-821e-a003d0bb6662", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "536f2081d1d945e2a6222f7cea2ffa22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "536f2081d1d945e2a6222f7cea2ffa22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "536f2081d1d945e2a6222f7cea2ffa22.jpg", "file_size": 14372, "is_delete": false, "file_type": 1, "original_file_name": "81095-2#蓝底猫3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536f2081d1d945e2a6222f7cea2ffa22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536f2081d1d945e2a6222f7cea2ffa22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536f2081d1d945e2a6222f7cea2ffa22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/536f2081d1d945e2a6222f7cea2ffa22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/536f2081d1d945e2a6222f7cea2ffa22.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yr_L0qdO4_I2SxoeVDHncFNWkGE=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.385256+00 2025-12-09 10:15:07.38526+00 10340 10b0a080607b4debd26587af3007f7e SPMX-20240815305511 \N \N \N 1 \N [{"file_id": "94f9db1b-80a4-44ac-83b3-38f0cb197de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51bdbc951d6d4c3b98ebbf6adae92f8c.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51bdbc951d6d4c3b98ebbf6adae92f8c.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51bdbc951d6d4c3b98ebbf6adae92f8c.png", "file_size": 131309, "is_delete": false, "file_type": 1, "original_file_name": "10b0a080607b4debd26587af3007f7e.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bdbc951d6d4c3b98ebbf6adae92f8c.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bdbc951d6d4c3b98ebbf6adae92f8c.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51bdbc951d6d4c3b98ebbf6adae92f8c.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51bdbc951d6d4c3b98ebbf6adae92f8c.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51bdbc951d6d4c3b98ebbf6adae92f8c.png?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7W5JXvmCoL2uuc5F-pDnhjbOq7Y=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.387116+00 2025-12-09 10:15:07.38712+00 10341 HT034FW#白VS-D3 SPMX-20240815305505 \N \N \N 1 \N [{"file_id": "d894258e-6e93-4945-b990-d176598827a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa06b13e38684168991b55e23d081e64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa06b13e38684168991b55e23d081e64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa06b13e38684168991b55e23d081e64.jpg", "file_size": 23515, "is_delete": false, "file_type": 1, "original_file_name": "HT034FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa06b13e38684168991b55e23d081e64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa06b13e38684168991b55e23d081e64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa06b13e38684168991b55e23d081e64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa06b13e38684168991b55e23d081e64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa06b13e38684168991b55e23d081e64.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZOZAhF_o4-UkTAim-x8m4dP_4I=", "createTime": "2024-08-15 14:50:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.388964+00 2025-12-09 10:15:07.388969+00 10342 LZ1270#背心款4号色 SPMX-20240815305509 \N \N \N 1 \N [{"file_id": "8a614854-923d-4147-a297-d64527b23a85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a929ae5d959b4cc29d4fadea76829b42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a929ae5d959b4cc29d4fadea76829b42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a929ae5d959b4cc29d4fadea76829b42.jpg", "file_size": 18802, "is_delete": false, "file_type": 1, "original_file_name": "LZ1270#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a929ae5d959b4cc29d4fadea76829b42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a929ae5d959b4cc29d4fadea76829b42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a929ae5d959b4cc29d4fadea76829b42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a929ae5d959b4cc29d4fadea76829b42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a929ae5d959b4cc29d4fadea76829b42.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jzQaclEviAN7AGE-RgCRT1LLklA=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.390893+00 2025-12-09 10:15:07.390897+00 10343 HT034FW#黑VS-D3 SPMX-20240815305516 \N \N \N 1 \N [{"file_id": "330c4cde-bca5-49ba-90e1-b952714cbabc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c36b2acffac84d1bbc49d75197283582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c36b2acffac84d1bbc49d75197283582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c36b2acffac84d1bbc49d75197283582.jpg", "file_size": 25900, "is_delete": false, "file_type": 1, "original_file_name": "HT034FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b2acffac84d1bbc49d75197283582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b2acffac84d1bbc49d75197283582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36b2acffac84d1bbc49d75197283582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c36b2acffac84d1bbc49d75197283582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c36b2acffac84d1bbc49d75197283582.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0mSOaTkN3jqTw0T4bvtC4hjMJGc=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.39265+00 2025-12-09 10:15:07.392656+00 10344 LJ9920FWE#玫红M VS-D3 SPMX-20240815305515 \N \N \N 1 \N [{"file_id": "47b1f834-672e-4619-bff0-e603e1e736df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01899b07515441ec8e758b694c146c8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01899b07515441ec8e758b694c146c8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01899b07515441ec8e758b694c146c8a.jpg", "file_size": 16728, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#玫红M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01899b07515441ec8e758b694c146c8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01899b07515441ec8e758b694c146c8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01899b07515441ec8e758b694c146c8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01899b07515441ec8e758b694c146c8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01899b07515441ec8e758b694c146c8a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9tG8Hu6kfRnvRNyMCjUGGZok_U=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.394734+00 2025-12-09 10:15:07.394739+00 10345 LZ1270#背心款5号色 SPMX-20240815305518 \N \N \N 1 \N [{"file_id": "943fa336-d056-4478-ba0e-f2ee438652a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6340501f3868429986d974dd84357e62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6340501f3868429986d974dd84357e62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6340501f3868429986d974dd84357e62.jpg", "file_size": 16910, "is_delete": false, "file_type": 1, "original_file_name": "LZ1270#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6340501f3868429986d974dd84357e62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6340501f3868429986d974dd84357e62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6340501f3868429986d974dd84357e62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6340501f3868429986d974dd84357e62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6340501f3868429986d974dd84357e62.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nIdxutO1DOahr6BDtxmf6Ok79rM=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.396561+00 2025-12-09 10:15:07.396565+00 10346 C370#绿色 SPMX-20240815305520 \N \N \N 1 \N [{"file_id": "ed5c4592-0060-4ded-b15c-166323ddc4f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7782b7c747974ba0a7386a92d6e567dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7782b7c747974ba0a7386a92d6e567dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7782b7c747974ba0a7386a92d6e567dc.jpg", "file_size": 45764, "is_delete": false, "file_type": 1, "original_file_name": "C370#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7782b7c747974ba0a7386a92d6e567dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7782b7c747974ba0a7386a92d6e567dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7782b7c747974ba0a7386a92d6e567dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7782b7c747974ba0a7386a92d6e567dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7782b7c747974ba0a7386a92d6e567dc.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XcBgveXYIanUJ5HIgDerzQhb68=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.398368+00 2025-12-09 10:15:07.398374+00 10347 0003-59FWF#改布匹蓝色 SPMX-20240815305510 \N \N \N 1 \N [{"file_id": "b7d5ec77-263d-4326-87d5-ef55c77e6c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e5bdbeb33584266a5e6c5055364a57d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e5bdbeb33584266a5e6c5055364a57d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e5bdbeb33584266a5e6c5055364a57d.jpg", "file_size": 16999, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#改布匹蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5bdbeb33584266a5e6c5055364a57d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5bdbeb33584266a5e6c5055364a57d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e5bdbeb33584266a5e6c5055364a57d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e5bdbeb33584266a5e6c5055364a57d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e5bdbeb33584266a5e6c5055364a57d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-LpAjPxG5Susm7UyytJZQXelUc=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.400116+00 2025-12-09 10:15:07.400121+00 10348 0003-59FWF#改布匹黑色 SPMX-20240815305519 \N \N \N 1 \N [{"file_id": "2d9e9126-7ab9-4a7f-96bd-65cbb9988e2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "415fb7393506485eb9737ce4284a5fc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "415fb7393506485eb9737ce4284a5fc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "415fb7393506485eb9737ce4284a5fc4.jpg", "file_size": 17155, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#改布匹黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415fb7393506485eb9737ce4284a5fc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415fb7393506485eb9737ce4284a5fc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415fb7393506485eb9737ce4284a5fc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/415fb7393506485eb9737ce4284a5fc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/415fb7393506485eb9737ce4284a5fc4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVgvUYdlrHznHrpD5ZfUbCvzBkw=", "createTime": "2024-08-15 14:50:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.402063+00 2025-12-09 10:15:07.402068+00 10349 11-6G21#彩兰 SPMX-20240815305522 \N \N \N 1 \N [{"file_id": "d4fd51cb-cb86-4d65-92a9-ad0bb75a1079", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a0a223efb904fb59f98a89eff202b77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a0a223efb904fb59f98a89eff202b77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a0a223efb904fb59f98a89eff202b77.jpg", "file_size": 15376, "is_delete": false, "file_type": 1, "original_file_name": "11-6G21#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0a223efb904fb59f98a89eff202b77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0a223efb904fb59f98a89eff202b77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a0a223efb904fb59f98a89eff202b77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a0a223efb904fb59f98a89eff202b77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a0a223efb904fb59f98a89eff202b77.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gXvMCwU2H2-l-BgRnswLBMISREM=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.404183+00 2025-12-09 10:15:07.404188+00 10350 JTSS176FW#VS-D3 SPMX-20240815305528 \N \N \N 1 \N [{"file_id": "67859cc7-c0a0-48b3-be9a-d485234a0307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14137ead717847708cd804a34ff168f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14137ead717847708cd804a34ff168f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14137ead717847708cd804a34ff168f3.jpg", "file_size": 6608, "is_delete": false, "file_type": 1, "original_file_name": "JTSS176FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14137ead717847708cd804a34ff168f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14137ead717847708cd804a34ff168f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14137ead717847708cd804a34ff168f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14137ead717847708cd804a34ff168f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14137ead717847708cd804a34ff168f3.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVbMg3Oqox8rZ7y44g1ic28Bbhg=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.406329+00 2025-12-09 10:15:07.406334+00 10351 0003-59FWF#橙色 SPMX-20240815305530 \N \N \N 1 \N [{"file_id": "6829c854-69cd-453f-b18b-e0ca21442a23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b02b0f375914664af5df4a3a978cf1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b02b0f375914664af5df4a3a978cf1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b02b0f375914664af5df4a3a978cf1a.jpg", "file_size": 17525, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b02b0f375914664af5df4a3a978cf1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b02b0f375914664af5df4a3a978cf1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b02b0f375914664af5df4a3a978cf1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b02b0f375914664af5df4a3a978cf1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b02b0f375914664af5df4a3a978cf1a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zHQrDh5gp2AV-rm5kqPywzeq3g=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.408471+00 2025-12-09 10:15:07.408477+00 10352 HT034FWE#VS-D3 SPMX-20240815305529 \N \N \N 1 \N [{"file_id": "a369d617-38b7-4da6-b7c6-f56b2e4bf20b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4df1a4f4dcd644fb9fe106db99b5f329.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4df1a4f4dcd644fb9fe106db99b5f329.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4df1a4f4dcd644fb9fe106db99b5f329.jpg", "file_size": 18961, "is_delete": false, "file_type": 1, "original_file_name": "HT034FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df1a4f4dcd644fb9fe106db99b5f329.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df1a4f4dcd644fb9fe106db99b5f329.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df1a4f4dcd644fb9fe106db99b5f329.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4df1a4f4dcd644fb9fe106db99b5f329.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4df1a4f4dcd644fb9fe106db99b5f329.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FHCWt8LfWh5JcJZkWSsedFhtFDY=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.410407+00 2025-12-09 10:15:07.410412+00 10353 DL30552#粉色XL SPMX-20240815305533 \N \N \N 1 \N [{"file_id": "06463fa8-4b17-4432-b5d7-490d66d2109a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb03df1816694a179819c336d16614c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb03df1816694a179819c336d16614c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb03df1816694a179819c336d16614c3.jpg", "file_size": 30884, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb03df1816694a179819c336d16614c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb03df1816694a179819c336d16614c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb03df1816694a179819c336d16614c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb03df1816694a179819c336d16614c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb03df1816694a179819c336d16614c3.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Ofe1sp5k7p4FOKypzpa31EcnwE=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.412537+00 2025-12-09 10:15:07.412542+00 10354 FHXGPK-批布028-4 SPMX-20240815305524 \N \N \N 1 \N [{"file_id": "70e0b9cf-f6f7-41f6-b5f2-3761a54b1314", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a924801ded0b43a49d49b88040ad946d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a924801ded0b43a49d49b88040ad946d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a924801ded0b43a49d49b88040ad946d.jpg", "file_size": 52718, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布028-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a924801ded0b43a49d49b88040ad946d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a924801ded0b43a49d49b88040ad946d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a924801ded0b43a49d49b88040ad946d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a924801ded0b43a49d49b88040ad946d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a924801ded0b43a49d49b88040ad946d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-dlSFi6QMXMpeU-D4bAtwPmMjs=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.414444+00 2025-12-09 10:15:07.414449+00 10355 LJ9920FWE#玫红S VS-D3 SPMX-20240815305525 \N \N \N 1 \N [{"file_id": "675d296f-8d78-4210-aa3b-d9ca94ac670f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13effbd4700a410f81521b1b0883e02f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13effbd4700a410f81521b1b0883e02f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13effbd4700a410f81521b1b0883e02f.jpg", "file_size": 17204, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#玫红S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13effbd4700a410f81521b1b0883e02f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13effbd4700a410f81521b1b0883e02f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13effbd4700a410f81521b1b0883e02f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13effbd4700a410f81521b1b0883e02f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13effbd4700a410f81521b1b0883e02f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRDs0zuCB1mtDvykqqsCUM9vZmU=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.416623+00 2025-12-09 10:15:07.416629+00 10356 23-2116#A4-3XL SPMX-20240815305527 \N \N \N 1 \N [{"file_id": "bc630c23-ce73-4045-8c6c-a32d41dc04cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dda9cad36f804a63b39edc8afd0bca56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dda9cad36f804a63b39edc8afd0bca56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dda9cad36f804a63b39edc8afd0bca56.jpg", "file_size": 15699, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda9cad36f804a63b39edc8afd0bca56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda9cad36f804a63b39edc8afd0bca56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dda9cad36f804a63b39edc8afd0bca56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dda9cad36f804a63b39edc8afd0bca56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dda9cad36f804a63b39edc8afd0bca56.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q6lAEZsuT-IeEGEZnr3txgzr4F8=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.418576+00 2025-12-09 10:15:07.418581+00 10357 81095-2#蓝底猫4XL SPMX-20240815305526 \N \N \N 1 \N [{"file_id": "21357347-a207-4d52-b4a0-b3deb53709a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "723e06cb13fa47909462a8766bcb2b5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "723e06cb13fa47909462a8766bcb2b5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "723e06cb13fa47909462a8766bcb2b5e.jpg", "file_size": 13802, "is_delete": false, "file_type": 1, "original_file_name": "81095-2#蓝底猫4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723e06cb13fa47909462a8766bcb2b5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723e06cb13fa47909462a8766bcb2b5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723e06cb13fa47909462a8766bcb2b5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/723e06cb13fa47909462a8766bcb2b5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/723e06cb13fa47909462a8766bcb2b5e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jST282h118IrB5trYXLlfB-EEQ=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.420715+00 2025-12-09 10:15:07.420721+00 10358 LZ1271#背心款1号色 SPMX-20240815305531 \N \N \N 1 \N [{"file_id": "9adb37f3-d9c6-4723-8346-a1f4113f5a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4540a55dcb3448aaa7a73fdce4b90643.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4540a55dcb3448aaa7a73fdce4b90643.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4540a55dcb3448aaa7a73fdce4b90643.jpg", "file_size": 15096, "is_delete": false, "file_type": 1, "original_file_name": "LZ1271#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4540a55dcb3448aaa7a73fdce4b90643.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4540a55dcb3448aaa7a73fdce4b90643.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4540a55dcb3448aaa7a73fdce4b90643.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4540a55dcb3448aaa7a73fdce4b90643.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4540a55dcb3448aaa7a73fdce4b90643.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IaOGhsS2bP5jT8Acv1CDmBW0qrc=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.422819+00 2025-12-09 10:15:07.422824+00 10359 C370#黄色 SPMX-20240815305532 \N \N \N 1 \N [{"file_id": "69b43bcc-6189-400e-b79b-096770f00472", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65cb768840274c6da411e53cdcdd573f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65cb768840274c6da411e53cdcdd573f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65cb768840274c6da411e53cdcdd573f.jpg", "file_size": 50100, "is_delete": false, "file_type": 1, "original_file_name": "C370#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb768840274c6da411e53cdcdd573f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb768840274c6da411e53cdcdd573f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb768840274c6da411e53cdcdd573f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65cb768840274c6da411e53cdcdd573f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65cb768840274c6da411e53cdcdd573f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrQ_mFbZmCIM9w4WDmzmLeTp3W4=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.424617+00 2025-12-09 10:15:07.424622+00 10360 DL30552#粉色L SPMX-20240815305523 \N \N \N 1 \N [{"file_id": "c7bc176f-cbe5-422d-bed5-775ad08397a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49d8fb25ea174784af01a58e27611703.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49d8fb25ea174784af01a58e27611703.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49d8fb25ea174784af01a58e27611703.jpg", "file_size": 30314, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d8fb25ea174784af01a58e27611703.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d8fb25ea174784af01a58e27611703.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49d8fb25ea174784af01a58e27611703.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49d8fb25ea174784af01a58e27611703.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49d8fb25ea174784af01a58e27611703.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xGK60p6zv12ZNesiyl0lfbvITY=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.426343+00 2025-12-09 10:15:07.426348+00 10361 11-6G21#杏色 SPMX-20240815305534 \N \N \N 1 \N [{"file_id": "8483f797-291b-4bca-bcfb-cdb294bd3e91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e67196768344999cf474f387e9d017.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e67196768344999cf474f387e9d017.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e67196768344999cf474f387e9d017.jpg", "file_size": 18528, "is_delete": false, "file_type": 1, "original_file_name": "11-6G21#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e67196768344999cf474f387e9d017.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e67196768344999cf474f387e9d017.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e67196768344999cf474f387e9d017.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e67196768344999cf474f387e9d017.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e67196768344999cf474f387e9d017.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlovRkU_H3vlYTl3MtgEg13vsbw=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.428275+00 2025-12-09 10:15:07.428279+00 10362 DL30552#紫色2XL SPMX-20240815305543 \N \N \N 1 \N [{"file_id": "b66a7835-578e-46c7-bf0b-d418e3dda0e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c2dd7e909654f5e8face7ecd48705b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c2dd7e909654f5e8face7ecd48705b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c2dd7e909654f5e8face7ecd48705b0.jpg", "file_size": 33032, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#紫色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2dd7e909654f5e8face7ecd48705b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2dd7e909654f5e8face7ecd48705b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2dd7e909654f5e8face7ecd48705b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c2dd7e909654f5e8face7ecd48705b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c2dd7e909654f5e8face7ecd48705b0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-8A0cGRmTaclEWFpl1Rho9LJCs=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.430173+00 2025-12-09 10:15:07.430178+00 10363 11-6G21#枣红 SPMX-20240815305545 \N \N \N 1 \N [{"file_id": "d3072d81-2881-4ce9-8101-b71b87e00499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50f7c2e8a0e44e4d91b35d67c9a37f32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50f7c2e8a0e44e4d91b35d67c9a37f32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50f7c2e8a0e44e4d91b35d67c9a37f32.jpg", "file_size": 16686, "is_delete": false, "file_type": 1, "original_file_name": "11-6G21#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50f7c2e8a0e44e4d91b35d67c9a37f32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50f7c2e8a0e44e4d91b35d67c9a37f32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50f7c2e8a0e44e4d91b35d67c9a37f32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50f7c2e8a0e44e4d91b35d67c9a37f32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50f7c2e8a0e44e4d91b35d67c9a37f32.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6iYA2Zm6zJGCme9lnspuizFfofI=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.431855+00 2025-12-09 10:15:07.43186+00 10364 23-2116#A4-4XL SPMX-20240815305539 \N \N \N 1 \N [{"file_id": "e2b229f4-8c6f-4d33-aa15-12b5b6723ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03ddbffbd81b41b3970de94e58c4ae91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03ddbffbd81b41b3970de94e58c4ae91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03ddbffbd81b41b3970de94e58c4ae91.jpg", "file_size": 15248, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ddbffbd81b41b3970de94e58c4ae91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ddbffbd81b41b3970de94e58c4ae91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ddbffbd81b41b3970de94e58c4ae91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03ddbffbd81b41b3970de94e58c4ae91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03ddbffbd81b41b3970de94e58c4ae91.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ohaNz0T0vyjg0VzNb2Hsb9zz3aI=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.433547+00 2025-12-09 10:15:07.433551+00 10365 HT035FWE#蓝VS-D3 SPMX-20240815305550 \N \N \N 1 \N [{"file_id": "45672ae4-53b7-4324-a6c6-2bd830c85685", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38781598485f4f03863ba9ff031a1e0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38781598485f4f03863ba9ff031a1e0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38781598485f4f03863ba9ff031a1e0a.jpg", "file_size": 17913, "is_delete": false, "file_type": 1, "original_file_name": "HT035FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38781598485f4f03863ba9ff031a1e0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38781598485f4f03863ba9ff031a1e0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38781598485f4f03863ba9ff031a1e0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38781598485f4f03863ba9ff031a1e0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38781598485f4f03863ba9ff031a1e0a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WwC-I7kxM8rXFtcw5T6N04GDtA=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.435242+00 2025-12-09 10:15:07.435246+00 10366 23-2116#A4-领子3XL SPMX-20240815305551 \N \N \N 1 \N [{"file_id": "b784822d-d9c8-4331-a542-5ffd31343a3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "898a917c57f84c55ba39c22198933226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "898a917c57f84c55ba39c22198933226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "898a917c57f84c55ba39c22198933226.jpg", "file_size": 11980, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898a917c57f84c55ba39c22198933226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898a917c57f84c55ba39c22198933226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898a917c57f84c55ba39c22198933226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/898a917c57f84c55ba39c22198933226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/898a917c57f84c55ba39c22198933226.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_b0BgQ073GRBi7dY3F_KtnSeTTI=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.436915+00 2025-12-09 10:15:07.436919+00 10367 LJ9920FWE#玫红XL VS-D3 SPMX-20240815305537 \N \N \N 1 \N [{"file_id": "5b7c3d8f-a291-4531-9f2e-fc7823120614", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a35cbee844e04bb896f9a3b2901d7e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a35cbee844e04bb896f9a3b2901d7e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a35cbee844e04bb896f9a3b2901d7e8e.jpg", "file_size": 15809, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#玫红XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35cbee844e04bb896f9a3b2901d7e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35cbee844e04bb896f9a3b2901d7e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a35cbee844e04bb896f9a3b2901d7e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a35cbee844e04bb896f9a3b2901d7e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a35cbee844e04bb896f9a3b2901d7e8e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjZ0V5f3iRPt4SbcgOTw1AYT6P0=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.438602+00 2025-12-09 10:15:07.438607+00 10368 JTSS177FW#VS-D3 SPMX-20240815305538 \N \N \N 1 \N [{"file_id": "58268e16-ffb1-4984-8bd1-b86f0bc0538e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4451233305f3483aa9205fbcfa4a0fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4451233305f3483aa9205fbcfa4a0fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4451233305f3483aa9205fbcfa4a0fec.jpg", "file_size": 13671, "is_delete": false, "file_type": 1, "original_file_name": "JTSS177FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451233305f3483aa9205fbcfa4a0fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451233305f3483aa9205fbcfa4a0fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451233305f3483aa9205fbcfa4a0fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4451233305f3483aa9205fbcfa4a0fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4451233305f3483aa9205fbcfa4a0fec.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndmIWpsPUll44PzaKWtm5xelu3A=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.442718+00 2025-12-09 10:15:07.442723+00 10370 HT035FWE#白VS-D3 SPMX-20240815305540 \N \N \N 1 \N [{"file_id": "e754b014-d987-4d1d-89c3-7c49d2fbb44c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa06a0d709574d6ea3cab50c1d4a79eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa06a0d709574d6ea3cab50c1d4a79eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa06a0d709574d6ea3cab50c1d4a79eb.jpg", "file_size": 17757, "is_delete": false, "file_type": 1, "original_file_name": "HT035FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06a0d709574d6ea3cab50c1d4a79eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06a0d709574d6ea3cab50c1d4a79eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06a0d709574d6ea3cab50c1d4a79eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa06a0d709574d6ea3cab50c1d4a79eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa06a0d709574d6ea3cab50c1d4a79eb.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHBWMSHA6u8QISbmwTv87K3ZhNM=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.444766+00 2025-12-09 10:15:07.444771+00 10371 FHXGPK-批布029-1 SPMX-20240815305547 \N \N \N 1 \N [{"file_id": "28fd4b01-06a6-42c6-ad9d-b18af025c995", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6047ebba761a42c4aad946db82b7b169.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6047ebba761a42c4aad946db82b7b169.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6047ebba761a42c4aad946db82b7b169.jpg", "file_size": 42095, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布029-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6047ebba761a42c4aad946db82b7b169.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6047ebba761a42c4aad946db82b7b169.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6047ebba761a42c4aad946db82b7b169.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6047ebba761a42c4aad946db82b7b169.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6047ebba761a42c4aad946db82b7b169.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rS-PkAYXu_MlIYWiqcsd4DP89v0=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.44664+00 2025-12-09 10:15:07.446645+00 10372 8117#-2XL码 SPMX-20240815305549 \N \N \N 1 \N [{"file_id": "db275abd-b956-4a0e-b562-0f05577e26d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ea5b3e414d34e03b6ed5560e520a848.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ea5b3e414d34e03b6ed5560e520a848.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ea5b3e414d34e03b6ed5560e520a848.jpg", "file_size": 20843, "is_delete": false, "file_type": 1, "original_file_name": "8117#-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea5b3e414d34e03b6ed5560e520a848.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea5b3e414d34e03b6ed5560e520a848.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea5b3e414d34e03b6ed5560e520a848.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ea5b3e414d34e03b6ed5560e520a848.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ea5b3e414d34e03b6ed5560e520a848.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X341tEh58UZYbpVpLpUG6q2Ja84=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.448792+00 2025-12-09 10:15:07.448798+00 10373 JTSS178FW#VS-D3 SPMX-20240815305548 \N \N \N 1 \N [{"file_id": "18ce3fd2-3843-4568-b64f-3849594a9133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "807ac7cbc4b3417fab792208ca38504e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "807ac7cbc4b3417fab792208ca38504e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "807ac7cbc4b3417fab792208ca38504e.jpg", "file_size": 14862, "is_delete": false, "file_type": 1, "original_file_name": "JTSS178FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/807ac7cbc4b3417fab792208ca38504e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/807ac7cbc4b3417fab792208ca38504e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/807ac7cbc4b3417fab792208ca38504e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/807ac7cbc4b3417fab792208ca38504e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/807ac7cbc4b3417fab792208ca38504e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfrvAnTSVQfxChDP4X2gZxPM6Sc=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.450645+00 2025-12-09 10:15:07.45065+00 10374 LZ1271#背心款2号色 SPMX-20240815305542 \N \N \N 1 \N [{"file_id": "f52dd269-0f45-4975-a600-72f88bcf40a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bea52757cdb4cc393bc3be7d4a610c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bea52757cdb4cc393bc3be7d4a610c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bea52757cdb4cc393bc3be7d4a610c8.jpg", "file_size": 15858, "is_delete": false, "file_type": 1, "original_file_name": "LZ1271#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bea52757cdb4cc393bc3be7d4a610c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bea52757cdb4cc393bc3be7d4a610c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bea52757cdb4cc393bc3be7d4a610c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bea52757cdb4cc393bc3be7d4a610c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bea52757cdb4cc393bc3be7d4a610c8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLT1_UEYZedqyhNLvuY2ywieUBI=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.440566+00 2025-12-09 10:15:07.440572+00 10369 81095-2#蓝底猫5XL SPMX-20240815305536 \N \N \N 1 \N [{"file_id": "04d19d5b-d400-44be-b0c0-d3b76615c49c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b55c3316ed749d9a64be06733b3dc45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b55c3316ed749d9a64be06733b3dc45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b55c3316ed749d9a64be06733b3dc45.jpg", "file_size": 13990, "is_delete": false, "file_type": 1, "original_file_name": "81095-2#蓝底猫5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b55c3316ed749d9a64be06733b3dc45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b55c3316ed749d9a64be06733b3dc45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b55c3316ed749d9a64be06733b3dc45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b55c3316ed749d9a64be06733b3dc45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b55c3316ed749d9a64be06733b3dc45.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QUYzEJddELFR39Hobjq5Uz6kdM=", "createTime": "2024-08-15 14:50:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.455062+00 2025-12-09 10:15:07.455068+00 10375 LJ9920FWE#紫色2XL VS-D3 SPMX-20240815305546 \N \N \N 1 \N [{"file_id": "66e22dd5-767b-4785-bc4e-038215250922", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b079ca050ca34ce3912640bf586198df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b079ca050ca34ce3912640bf586198df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b079ca050ca34ce3912640bf586198df.jpg", "file_size": 15961, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#紫色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079ca050ca34ce3912640bf586198df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079ca050ca34ce3912640bf586198df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b079ca050ca34ce3912640bf586198df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b079ca050ca34ce3912640bf586198df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b079ca050ca34ce3912640bf586198df.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkfjK3o_YqIq9qUvDxwQ7Jo9Y-0=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.456962+00 2025-12-09 10:15:07.456967+00 10376 0003-59FWF#橙色批布 SPMX-20240815305541 \N \N \N 1 \N [{"file_id": "da63c70e-00b2-4ee2-bc62-d193fbbab29f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c91f6dec2854bd0bc396162e410dafc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c91f6dec2854bd0bc396162e410dafc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c91f6dec2854bd0bc396162e410dafc.jpg", "file_size": 25431, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#橙色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c91f6dec2854bd0bc396162e410dafc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c91f6dec2854bd0bc396162e410dafc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c91f6dec2854bd0bc396162e410dafc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c91f6dec2854bd0bc396162e410dafc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c91f6dec2854bd0bc396162e410dafc.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBOHMvL3xPlxQoa86_o6ietyLxg=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.458829+00 2025-12-09 10:15:07.458835+00 10377 C370#黑色 SPMX-20240815305544 \N \N \N 1 \N [{"file_id": "e74686f5-33ed-46f3-b811-9299048484df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03de796a80f54b43b565bcad3415e947.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03de796a80f54b43b565bcad3415e947.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03de796a80f54b43b565bcad3415e947.jpg", "file_size": 46852, "is_delete": false, "file_type": 1, "original_file_name": "C370#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03de796a80f54b43b565bcad3415e947.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03de796a80f54b43b565bcad3415e947.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03de796a80f54b43b565bcad3415e947.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03de796a80f54b43b565bcad3415e947.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03de796a80f54b43b565bcad3415e947.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jz32EGHXHk7uRTJZbWwuPUdQqbc=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.460698+00 2025-12-09 10:15:07.46071+00 10378 LZ1271#背心款3号色 SPMX-20240815305552 \N \N \N 1 \N [{"file_id": "3c6828e7-bb54-41c2-bb61-3a2a443ce366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a69718173494ef7ba8555b27454165f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a69718173494ef7ba8555b27454165f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a69718173494ef7ba8555b27454165f.jpg", "file_size": 15436, "is_delete": false, "file_type": 1, "original_file_name": "LZ1271#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a69718173494ef7ba8555b27454165f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a69718173494ef7ba8555b27454165f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a69718173494ef7ba8555b27454165f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a69718173494ef7ba8555b27454165f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a69718173494ef7ba8555b27454165f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5YI1ZZ_yPWp2cqnxVs8bNAKaoI=", "createTime": "2024-08-15 14:50:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.462799+00 2025-12-09 10:15:07.462804+00 10379 0003-59FWF#白色 SPMX-20240815305553 \N \N \N 1 \N [{"file_id": "33199f60-459c-43e2-be04-c32cc946f23d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09584b9d79bd4f218ff49b956bdabd3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09584b9d79bd4f218ff49b956bdabd3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09584b9d79bd4f218ff49b956bdabd3c.jpg", "file_size": 18535, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09584b9d79bd4f218ff49b956bdabd3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09584b9d79bd4f218ff49b956bdabd3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09584b9d79bd4f218ff49b956bdabd3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09584b9d79bd4f218ff49b956bdabd3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09584b9d79bd4f218ff49b956bdabd3c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajjgDJQto44KdUzlezyyumc3bgc=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.464879+00 2025-12-09 10:15:07.464884+00 10380 C379#大红 SPMX-20240815305555 \N \N \N 1 \N [{"file_id": "4b550f82-3671-40bd-b90b-04911706fcd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb24303ef7464233ba4d267c0beae6b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb24303ef7464233ba4d267c0beae6b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb24303ef7464233ba4d267c0beae6b5.jpg", "file_size": 58261, "is_delete": false, "file_type": 1, "original_file_name": "C379#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb24303ef7464233ba4d267c0beae6b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb24303ef7464233ba4d267c0beae6b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb24303ef7464233ba4d267c0beae6b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb24303ef7464233ba4d267c0beae6b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb24303ef7464233ba4d267c0beae6b5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xd726m9On6R-KQTX3ta1GKAw7g=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.466955+00 2025-12-09 10:15:07.46696+00 10381 11-6G21#白色 SPMX-20240815305556 \N \N \N 1 \N [{"file_id": "bf488096-a6e6-4f4d-befe-f99aefcd7abb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9390bce1bca4f8c8286137a195a12fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9390bce1bca4f8c8286137a195a12fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9390bce1bca4f8c8286137a195a12fe.jpg", "file_size": 17412, "is_delete": false, "file_type": 1, "original_file_name": "11-6G21#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9390bce1bca4f8c8286137a195a12fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9390bce1bca4f8c8286137a195a12fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9390bce1bca4f8c8286137a195a12fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9390bce1bca4f8c8286137a195a12fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9390bce1bca4f8c8286137a195a12fe.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkFQHZTJ9qOhFa3LGnxGyrwqJ2Q=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.46883+00 2025-12-09 10:15:07.468835+00 10382 C379#橙色 SPMX-20240815305565 \N \N \N 1 \N [{"file_id": "3ee56d10-9a15-496a-b7aa-c2c06e8e5cf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c1f78e9b15c481bbc53516c90c4e4d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c1f78e9b15c481bbc53516c90c4e4d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c1f78e9b15c481bbc53516c90c4e4d1.jpg", "file_size": 59532, "is_delete": false, "file_type": 1, "original_file_name": "C379#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c1f78e9b15c481bbc53516c90c4e4d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c1f78e9b15c481bbc53516c90c4e4d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c1f78e9b15c481bbc53516c90c4e4d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c1f78e9b15c481bbc53516c90c4e4d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c1f78e9b15c481bbc53516c90c4e4d1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Iz5DOTqVGbaoIH8ITaVNFQeiv4=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.470875+00 2025-12-09 10:15:07.47088+00 10383 FHXGPK-批布029-2 SPMX-20240815305557 \N \N \N 1 \N [{"file_id": "94152dc8-b422-415a-8da7-40c40c42f07e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be39cfa2ee447789f6ac2b522043d51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be39cfa2ee447789f6ac2b522043d51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be39cfa2ee447789f6ac2b522043d51.jpg", "file_size": 45571, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布029-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be39cfa2ee447789f6ac2b522043d51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be39cfa2ee447789f6ac2b522043d51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be39cfa2ee447789f6ac2b522043d51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be39cfa2ee447789f6ac2b522043d51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be39cfa2ee447789f6ac2b522043d51.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uax0QU01G8W-xsi-cchv7URslZI=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.472974+00 2025-12-09 10:15:07.47298+00 10384 LJ9920FWE#紫色L VS-D3 SPMX-20240815305558 \N \N \N 1 \N [{"file_id": "54817c04-c96a-4fe9-879c-c0df8f44abb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6f1e2cb3a5e45c7b907dfd62e45d863.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6f1e2cb3a5e45c7b907dfd62e45d863.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6f1e2cb3a5e45c7b907dfd62e45d863.jpg", "file_size": 16636, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#紫色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f1e2cb3a5e45c7b907dfd62e45d863.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f1e2cb3a5e45c7b907dfd62e45d863.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f1e2cb3a5e45c7b907dfd62e45d863.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6f1e2cb3a5e45c7b907dfd62e45d863.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6f1e2cb3a5e45c7b907dfd62e45d863.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5vHLtg6BvCxykgblHUv91wsvc0=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.474861+00 2025-12-09 10:15:07.474867+00 10385 HT035FWE#黑VS-D3 SPMX-20240815305561 \N \N \N 1 \N [{"file_id": "e258a339-e2c9-44c5-a102-ffbd4b166ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6da492d52f5b4fa3a6eb125824bc76ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6da492d52f5b4fa3a6eb125824bc76ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6da492d52f5b4fa3a6eb125824bc76ac.jpg", "file_size": 24926, "is_delete": false, "file_type": 1, "original_file_name": "HT035FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da492d52f5b4fa3a6eb125824bc76ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da492d52f5b4fa3a6eb125824bc76ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da492d52f5b4fa3a6eb125824bc76ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6da492d52f5b4fa3a6eb125824bc76ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6da492d52f5b4fa3a6eb125824bc76ac.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hk8kM2dAVg4s6_Mhd-bC6CqCe9k=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.477099+00 2025-12-09 10:15:07.477104+00 10386 LZ1271#背心款4号色 SPMX-20240815305562 \N \N \N 1 \N [{"file_id": "67c10005-edb8-4907-a551-73d4134722a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10a530d2ea6f4a92a77ffa666fb55ab3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10a530d2ea6f4a92a77ffa666fb55ab3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10a530d2ea6f4a92a77ffa666fb55ab3.jpg", "file_size": 15549, "is_delete": false, "file_type": 1, "original_file_name": "LZ1271#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a530d2ea6f4a92a77ffa666fb55ab3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a530d2ea6f4a92a77ffa666fb55ab3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a530d2ea6f4a92a77ffa666fb55ab3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10a530d2ea6f4a92a77ffa666fb55ab3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10a530d2ea6f4a92a77ffa666fb55ab3.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScdBEU2ObyfZcy63ydNb6LIMHvs=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.479292+00 2025-12-09 10:15:07.479297+00 10387 23-2116#A4-领子4XL SPMX-20240815305563 \N \N \N 1 \N [{"file_id": "f9a85671-b5b3-4711-a049-6002895c2612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "376d55427b5a480ba9c7aff8a6f127d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "376d55427b5a480ba9c7aff8a6f127d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "376d55427b5a480ba9c7aff8a6f127d6.jpg", "file_size": 11539, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376d55427b5a480ba9c7aff8a6f127d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376d55427b5a480ba9c7aff8a6f127d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376d55427b5a480ba9c7aff8a6f127d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/376d55427b5a480ba9c7aff8a6f127d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/376d55427b5a480ba9c7aff8a6f127d6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IajvUMsdcauyDHddpOki3sZSrVI=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.481172+00 2025-12-09 10:15:07.481176+00 10388 0003-59FWF#白色批布 SPMX-20240815305564 \N \N \N 1 \N [{"file_id": "151db120-d4eb-4474-b806-43535234c0a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da87d7fa8ad54c428410aa629883d803.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da87d7fa8ad54c428410aa629883d803.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da87d7fa8ad54c428410aa629883d803.jpg", "file_size": 27649, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#白色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da87d7fa8ad54c428410aa629883d803.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da87d7fa8ad54c428410aa629883d803.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da87d7fa8ad54c428410aa629883d803.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da87d7fa8ad54c428410aa629883d803.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da87d7fa8ad54c428410aa629883d803.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gDN9bgd7aJvVWL5hK_KIrineqDg=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.48312+00 2025-12-09 10:15:07.483125+00 10389 DL30552#紫色XL SPMX-20240815305566 \N \N \N 1 \N [{"file_id": "dcd5ab74-5a18-4f7b-b43c-2845afbe4548", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31215c50c5f742f28d2ccf94b905e68a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31215c50c5f742f28d2ccf94b905e68a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31215c50c5f742f28d2ccf94b905e68a.jpg", "file_size": 32149, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31215c50c5f742f28d2ccf94b905e68a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31215c50c5f742f28d2ccf94b905e68a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31215c50c5f742f28d2ccf94b905e68a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31215c50c5f742f28d2ccf94b905e68a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31215c50c5f742f28d2ccf94b905e68a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJjXma0PpgTwQqSrYEudMb6Vj1Q=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.485003+00 2025-12-09 10:15:07.485008+00 10390 DL30552#紫色L SPMX-20240815305554 \N \N \N 1 \N [{"file_id": "fb1239b6-c09e-4df4-bf4b-eaac641d27ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c091115a175145a88419ad3da15dcf92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c091115a175145a88419ad3da15dcf92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c091115a175145a88419ad3da15dcf92.jpg", "file_size": 31156, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c091115a175145a88419ad3da15dcf92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c091115a175145a88419ad3da15dcf92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c091115a175145a88419ad3da15dcf92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c091115a175145a88419ad3da15dcf92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c091115a175145a88419ad3da15dcf92.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFVRPGEB2a3wa4YWFyRsD7n7rNk=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.487119+00 2025-12-09 10:15:07.487129+00 10391 JTSS179FW#VS-D3 SPMX-20240815305559 \N \N \N 1 \N [{"file_id": "6687f493-8c13-491c-84b6-0040871463b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "231b54dc7c7a496c885f88f25c1826e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "231b54dc7c7a496c885f88f25c1826e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "231b54dc7c7a496c885f88f25c1826e6.jpg", "file_size": 12661, "is_delete": false, "file_type": 1, "original_file_name": "JTSS179FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231b54dc7c7a496c885f88f25c1826e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231b54dc7c7a496c885f88f25c1826e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231b54dc7c7a496c885f88f25c1826e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/231b54dc7c7a496c885f88f25c1826e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/231b54dc7c7a496c885f88f25c1826e6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iX4TrLjvoGXPFklBfRndTbweh_E=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.489005+00 2025-12-09 10:15:07.48901+00 10392 8117#-3XL码 SPMX-20240815305560 \N \N \N 1 \N [{"file_id": "6ac83660-8388-40ec-ae98-ece6ad7532a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbdc75e5464b4912833cda1c058870af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbdc75e5464b4912833cda1c058870af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbdc75e5464b4912833cda1c058870af.jpg", "file_size": 20758, "is_delete": false, "file_type": 1, "original_file_name": "8117#-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdc75e5464b4912833cda1c058870af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdc75e5464b4912833cda1c058870af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdc75e5464b4912833cda1c058870af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbdc75e5464b4912833cda1c058870af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbdc75e5464b4912833cda1c058870af.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQZ9jhYbzb66NtTjp66ULGKYRIU=", "createTime": "2024-08-15 14:50:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.491104+00 2025-12-09 10:15:07.491109+00 10393 HT036FWE#VS-D3 SPMX-20240815305572 \N \N \N 1 \N [{"file_id": "a9949d38-33e5-48e7-bb02-0034cb03855c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811d415942714a0e868089ce3a00efa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811d415942714a0e868089ce3a00efa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811d415942714a0e868089ce3a00efa2.jpg", "file_size": 11427, "is_delete": false, "file_type": 1, "original_file_name": "HT036FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811d415942714a0e868089ce3a00efa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811d415942714a0e868089ce3a00efa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811d415942714a0e868089ce3a00efa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811d415942714a0e868089ce3a00efa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811d415942714a0e868089ce3a00efa2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYDN_6gm0spRMsuFwZkg9FL999Y=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.492978+00 2025-12-09 10:15:07.492983+00 10394 FHXGPK-批布029-3 SPMX-20240815305567 \N \N \N 1 \N [{"file_id": "23bbd74c-9815-4855-9170-ed6ba82c78a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c359ebc3e9f48fa958d2f9b07f10871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c359ebc3e9f48fa958d2f9b07f10871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c359ebc3e9f48fa958d2f9b07f10871.jpg", "file_size": 45863, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布029-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c359ebc3e9f48fa958d2f9b07f10871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c359ebc3e9f48fa958d2f9b07f10871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c359ebc3e9f48fa958d2f9b07f10871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c359ebc3e9f48fa958d2f9b07f10871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c359ebc3e9f48fa958d2f9b07f10871.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8dgr6Ny7B0PCZcaaQJabhoCYck=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.495065+00 2025-12-09 10:15:07.49507+00 10395 8117#-4XL码 SPMX-20240815305570 \N \N \N 1 \N [{"file_id": "51b9de97-ede7-4c38-b27a-d04283c217fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0825ea0e021b4e44bba043400c85ae88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0825ea0e021b4e44bba043400c85ae88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0825ea0e021b4e44bba043400c85ae88.jpg", "file_size": 19705, "is_delete": false, "file_type": 1, "original_file_name": "8117#-4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0825ea0e021b4e44bba043400c85ae88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0825ea0e021b4e44bba043400c85ae88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0825ea0e021b4e44bba043400c85ae88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0825ea0e021b4e44bba043400c85ae88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0825ea0e021b4e44bba043400c85ae88.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0khms75opvRCCecPTPjfh4rOa0=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.523225+00 2025-12-09 10:15:07.523231+00 10409 FHXGPK-批布029-4 SPMX-20240815305583 \N \N \N 1 \N [{"file_id": "7f4c34f4-0cb0-4b53-80de-00bc0ceaf871", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54c8acefb39f40e1a956d87bf6c9eaab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54c8acefb39f40e1a956d87bf6c9eaab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54c8acefb39f40e1a956d87bf6c9eaab.jpg", "file_size": 50428, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布029-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c8acefb39f40e1a956d87bf6c9eaab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c8acefb39f40e1a956d87bf6c9eaab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c8acefb39f40e1a956d87bf6c9eaab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54c8acefb39f40e1a956d87bf6c9eaab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54c8acefb39f40e1a956d87bf6c9eaab.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SxJSnLAS0fBmZ3ZWY_ct_fajTQ8=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.497115+00 2025-12-09 10:15:07.49712+00 10396 LJ9920FWE#紫色M VS-D3 SPMX-20240815305569 \N \N \N 1 \N [{"file_id": "a3543247-b343-4648-821e-74e011b19164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg", "file_size": 17505, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#紫色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71a4e4ee1d2a4e6ebcbdd9b2329403e4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txbTH_YuYcFOxxJW1CpIOfIaaw8=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.499025+00 2025-12-09 10:15:07.499031+00 10397 11-6G21#黑色净色 SPMX-20240815305568 \N \N \N 1 \N [{"file_id": "cf00fc3e-ff45-4898-8326-2f79df6c8449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6af4a8ab116e4f19b9817eea15911e55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6af4a8ab116e4f19b9817eea15911e55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6af4a8ab116e4f19b9817eea15911e55.jpg", "file_size": 7763, "is_delete": false, "file_type": 1, "original_file_name": "11-6G21#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4a8ab116e4f19b9817eea15911e55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4a8ab116e4f19b9817eea15911e55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af4a8ab116e4f19b9817eea15911e55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6af4a8ab116e4f19b9817eea15911e55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6af4a8ab116e4f19b9817eea15911e55.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLbzksuHZTzzFIvLmyG2LnVDu_g=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.501063+00 2025-12-09 10:15:07.501068+00 10398 JTSS180FW#VS-D3 SPMX-20240815305571 \N \N \N 1 \N [{"file_id": "3dbbaba6-be8c-4d15-89ee-40f1f244efc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76efb7bc66dc4f06849920c7f399d2b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76efb7bc66dc4f06849920c7f399d2b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76efb7bc66dc4f06849920c7f399d2b8.jpg", "file_size": 10441, "is_delete": false, "file_type": 1, "original_file_name": "JTSS180FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76efb7bc66dc4f06849920c7f399d2b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76efb7bc66dc4f06849920c7f399d2b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76efb7bc66dc4f06849920c7f399d2b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76efb7bc66dc4f06849920c7f399d2b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76efb7bc66dc4f06849920c7f399d2b8.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d_p6b7tN2EezJngKnJcak6P0H-Q=", "createTime": "2024-08-15 14:50:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.503092+00 2025-12-09 10:15:07.503097+00 10399 LZ1271#背心款5号色 SPMX-20240815305573 \N \N \N 1 \N [{"file_id": "30bbc1a0-7d94-4a97-be91-69338715e58c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c48e1114d15443e6821a112e6f08bc0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c48e1114d15443e6821a112e6f08bc0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c48e1114d15443e6821a112e6f08bc0e.jpg", "file_size": 15033, "is_delete": false, "file_type": 1, "original_file_name": "LZ1271#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48e1114d15443e6821a112e6f08bc0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48e1114d15443e6821a112e6f08bc0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48e1114d15443e6821a112e6f08bc0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c48e1114d15443e6821a112e6f08bc0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c48e1114d15443e6821a112e6f08bc0e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYjkoGQF0MTfx3TotXeOi43hpVE=", "createTime": "2024-08-15 14:50:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.505212+00 2025-12-09 10:15:07.505217+00 10400 23-2116#A4前后片3XL码 SPMX-20240815305574 \N \N \N 1 \N [{"file_id": "6211191f-da58-4658-97cd-08167e1f4a51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b345cfe2704a448f75f09372d1f27b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b345cfe2704a448f75f09372d1f27b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b345cfe2704a448f75f09372d1f27b.jpg", "file_size": 12230, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4前后片3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b345cfe2704a448f75f09372d1f27b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b345cfe2704a448f75f09372d1f27b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b345cfe2704a448f75f09372d1f27b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b345cfe2704a448f75f09372d1f27b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b345cfe2704a448f75f09372d1f27b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCgzH0yR71SCkiIf-_NfaW5DrL8=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.507103+00 2025-12-09 10:15:07.507108+00 10401 JTSS181FW#VS-D3 SPMX-20240815305577 \N \N \N 1 \N [{"file_id": "2f76da3e-529b-42a5-b354-78f7f8e928df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "486cb9ecebf3457c9bf22ebd1a434f3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "486cb9ecebf3457c9bf22ebd1a434f3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "486cb9ecebf3457c9bf22ebd1a434f3b.jpg", "file_size": 8137, "is_delete": false, "file_type": 1, "original_file_name": "JTSS181FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486cb9ecebf3457c9bf22ebd1a434f3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486cb9ecebf3457c9bf22ebd1a434f3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486cb9ecebf3457c9bf22ebd1a434f3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/486cb9ecebf3457c9bf22ebd1a434f3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/486cb9ecebf3457c9bf22ebd1a434f3b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kWJ8HW6szhwTC89wD0LSztft1O4=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.5092+00 2025-12-09 10:15:07.509205+00 10402 DL30552#蓝绿2XL SPMX-20240815305580 \N \N \N 1 \N [{"file_id": "7afbf957-cd70-4b7d-ad77-1aeaf99f7662", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ad4f001706e4de38d1659079a4197c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ad4f001706e4de38d1659079a4197c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ad4f001706e4de38d1659079a4197c5.jpg", "file_size": 32566, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#蓝绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad4f001706e4de38d1659079a4197c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad4f001706e4de38d1659079a4197c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad4f001706e4de38d1659079a4197c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ad4f001706e4de38d1659079a4197c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ad4f001706e4de38d1659079a4197c5.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zP9omL9i1vMzcFpGBF4xyDpzYFU=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.511282+00 2025-12-09 10:15:07.511288+00 10403 0003-59FWF#蓝色 SPMX-20240815305575 \N \N \N 1 \N [{"file_id": "230fd7c3-ab03-48b5-9f6b-46004bde0d9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d615d2b9be9c477380c3033927c44e71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d615d2b9be9c477380c3033927c44e71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d615d2b9be9c477380c3033927c44e71.jpg", "file_size": 17739, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d615d2b9be9c477380c3033927c44e71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d615d2b9be9c477380c3033927c44e71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d615d2b9be9c477380c3033927c44e71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d615d2b9be9c477380c3033927c44e71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d615d2b9be9c477380c3033927c44e71.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hUfW4uR4fG1SWt7AqTJOUkhbpTA=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.513162+00 2025-12-09 10:15:07.513168+00 10404 LJ9920FWE#紫色S VS-D3 SPMX-20240815305582 \N \N \N 1 \N [{"file_id": "d4b4e7b8-586e-4ec5-bde8-bebddf20fe88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10522b53e59443019d871984ecfe1be9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10522b53e59443019d871984ecfe1be9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10522b53e59443019d871984ecfe1be9.jpg", "file_size": 17841, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#紫色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10522b53e59443019d871984ecfe1be9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10522b53e59443019d871984ecfe1be9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10522b53e59443019d871984ecfe1be9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10522b53e59443019d871984ecfe1be9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10522b53e59443019d871984ecfe1be9.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPeuE9DTmEmENN-LcqYDE3N1Xm0=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.515277+00 2025-12-09 10:15:07.515282+00 10405 8117#-5XL码 SPMX-20240815305579 \N \N \N 1 \N [{"file_id": "58358c9f-4dcc-46b3-ab14-6d641563b737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f85d167723e24d0f9e96772368813e05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f85d167723e24d0f9e96772368813e05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f85d167723e24d0f9e96772368813e05.jpg", "file_size": 19487, "is_delete": false, "file_type": 1, "original_file_name": "8117#-5XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d167723e24d0f9e96772368813e05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d167723e24d0f9e96772368813e05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d167723e24d0f9e96772368813e05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f85d167723e24d0f9e96772368813e05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f85d167723e24d0f9e96772368813e05.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmpv2MGBpTF9wvN6XamkXar-fEY=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.517145+00 2025-12-09 10:15:07.51715+00 10406 C379#玫红 SPMX-20240815305578 \N \N \N 1 \N [{"file_id": "07b84731-b104-4fa5-845b-8e4ebe53c502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca7090428dcf4c34a300a609fe6df4ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca7090428dcf4c34a300a609fe6df4ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca7090428dcf4c34a300a609fe6df4ec.jpg", "file_size": 55274, "is_delete": false, "file_type": 1, "original_file_name": "C379#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7090428dcf4c34a300a609fe6df4ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7090428dcf4c34a300a609fe6df4ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7090428dcf4c34a300a609fe6df4ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca7090428dcf4c34a300a609fe6df4ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca7090428dcf4c34a300a609fe6df4ec.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uS9spi-TNMIIpeyPB2OdhxCEM1k=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.519231+00 2025-12-09 10:15:07.519236+00 10407 11-6G22#彩兰L SPMX-20240815305581 \N \N \N 1 \N [{"file_id": "5fb4573c-308d-4f08-8569-efed95d4d9db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "136f34289c8c466b9bb19e9059fe036b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "136f34289c8c466b9bb19e9059fe036b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "136f34289c8c466b9bb19e9059fe036b.jpg", "file_size": 18756, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136f34289c8c466b9bb19e9059fe036b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136f34289c8c466b9bb19e9059fe036b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/136f34289c8c466b9bb19e9059fe036b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/136f34289c8c466b9bb19e9059fe036b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/136f34289c8c466b9bb19e9059fe036b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NMCG5k0o1rG6ss0jSECWWDKZCWs=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.52133+00 2025-12-09 10:15:07.521335+00 10408 HT037# SPMX-20240815305576 \N \N \N 1 \N [{"file_id": "865c19b4-8bda-4648-a01d-68f6f9a0ad9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fd361c52a544812881149047234dd43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fd361c52a544812881149047234dd43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fd361c52a544812881149047234dd43.jpg", "file_size": 11075, "is_delete": false, "file_type": 1, "original_file_name": "HT037#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd361c52a544812881149047234dd43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd361c52a544812881149047234dd43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd361c52a544812881149047234dd43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fd361c52a544812881149047234dd43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fd361c52a544812881149047234dd43.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZkVEfSVCNFQNtQa-iTRj20iknYw=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.525308+00 2025-12-09 10:15:07.525313+00 10410 LZ1272#背心款1号色 SPMX-20240815305584 \N \N \N 1 \N [{"file_id": "4ef2037b-da9f-4676-950a-19403032ab7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fee0f166c1847acad0b204300985319.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fee0f166c1847acad0b204300985319.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fee0f166c1847acad0b204300985319.jpg", "file_size": 20592, "is_delete": false, "file_type": 1, "original_file_name": "LZ1272#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fee0f166c1847acad0b204300985319.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fee0f166c1847acad0b204300985319.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fee0f166c1847acad0b204300985319.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fee0f166c1847acad0b204300985319.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fee0f166c1847acad0b204300985319.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfmlooHEnToDxXibNKv8O235elA=", "createTime": "2024-08-15 14:50:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.527415+00 2025-12-09 10:15:07.52742+00 10411 HT037FWE#VS-D3 SPMX-20240815305587 \N \N \N 1 \N [{"file_id": "0f7f8644-4d2c-4086-9fee-73caf613f57a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "315f906cf1094166a230492e9c9798e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "315f906cf1094166a230492e9c9798e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "315f906cf1094166a230492e9c9798e4.jpg", "file_size": 15493, "is_delete": false, "file_type": 1, "original_file_name": "HT037FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315f906cf1094166a230492e9c9798e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315f906cf1094166a230492e9c9798e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315f906cf1094166a230492e9c9798e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/315f906cf1094166a230492e9c9798e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/315f906cf1094166a230492e9c9798e4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gim81DMI4uJx-TooA3bfeyS3Ngc=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.529314+00 2025-12-09 10:15:07.529319+00 10412 JTSS182FW#VS-D3 SPMX-20240815305586 \N \N \N 1 \N [{"file_id": "747e185f-c9cb-4b23-ac7c-c78c6a7eddf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8940f19fbd34904a70f29bbf790e2dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8940f19fbd34904a70f29bbf790e2dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8940f19fbd34904a70f29bbf790e2dd.jpg", "file_size": 9787, "is_delete": false, "file_type": 1, "original_file_name": "JTSS182FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8940f19fbd34904a70f29bbf790e2dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8940f19fbd34904a70f29bbf790e2dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8940f19fbd34904a70f29bbf790e2dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8940f19fbd34904a70f29bbf790e2dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8940f19fbd34904a70f29bbf790e2dd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D14PTib3Bh71OnSISwxIgYURExA=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.531417+00 2025-12-09 10:15:07.531422+00 10413 0003-59FWF#蓝色批布 SPMX-20240815305588 \N \N \N 1 \N [{"file_id": "b0ee1ef7-d00e-41e4-9ed9-ad6ec39f9dff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cddbb7b5c79741f8a014c3362796f9db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cddbb7b5c79741f8a014c3362796f9db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cddbb7b5c79741f8a014c3362796f9db.jpg", "file_size": 26403, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#蓝色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddbb7b5c79741f8a014c3362796f9db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddbb7b5c79741f8a014c3362796f9db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddbb7b5c79741f8a014c3362796f9db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cddbb7b5c79741f8a014c3362796f9db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cddbb7b5c79741f8a014c3362796f9db.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ro587C99_G2ZiTWj6Fu9EA6G80Q=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.533287+00 2025-12-09 10:15:07.533293+00 10414 C379#绿色 SPMX-20240815305585 \N \N \N 1 \N [{"file_id": "a73b276f-824f-4991-a930-25dc58277a5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e67693a117a24307a5eb01f4ac179586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e67693a117a24307a5eb01f4ac179586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e67693a117a24307a5eb01f4ac179586.jpg", "file_size": 55569, "is_delete": false, "file_type": 1, "original_file_name": "C379#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67693a117a24307a5eb01f4ac179586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67693a117a24307a5eb01f4ac179586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67693a117a24307a5eb01f4ac179586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e67693a117a24307a5eb01f4ac179586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e67693a117a24307a5eb01f4ac179586.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afxFlpBESicI8cNJz5dVxR8YLKc=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.535386+00 2025-12-09 10:15:07.535391+00 10415 JTSS183FW#VS-D3 SPMX-20240815305596 \N \N \N 1 \N [{"file_id": "9a5fe223-3677-4742-bd25-77b1394df342", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b78e017799bd4255ba9d6b520461f74a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b78e017799bd4255ba9d6b520461f74a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b78e017799bd4255ba9d6b520461f74a.jpg", "file_size": 8084, "is_delete": false, "file_type": 1, "original_file_name": "JTSS183FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b78e017799bd4255ba9d6b520461f74a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b78e017799bd4255ba9d6b520461f74a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b78e017799bd4255ba9d6b520461f74a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b78e017799bd4255ba9d6b520461f74a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b78e017799bd4255ba9d6b520461f74a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHP_mnLZPHxB4nSlcXKpzU4HWzs=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.537469+00 2025-12-09 10:15:07.537474+00 10416 23-2116#A4袖子3XL码 SPMX-20240815305600 \N \N \N 1 \N [{"file_id": "e1426d36-16ce-4f1c-838c-33be1db7a137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87208077805f4ee1bcb7fdede6183573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87208077805f4ee1bcb7fdede6183573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87208077805f4ee1bcb7fdede6183573.jpg", "file_size": 9496, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4袖子3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87208077805f4ee1bcb7fdede6183573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87208077805f4ee1bcb7fdede6183573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87208077805f4ee1bcb7fdede6183573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87208077805f4ee1bcb7fdede6183573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87208077805f4ee1bcb7fdede6183573.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2K5QI54uUau9B34OzPAN6FCW9Y=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.539343+00 2025-12-09 10:15:07.539348+00 10417 23-2116#A4前后片4XL码 SPMX-20240815305590 \N \N \N 1 \N [{"file_id": "70e6bdf4-ceee-4fb3-bffb-73e0a925e70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a6fa39bc0d1411384fa0603bcda4ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a6fa39bc0d1411384fa0603bcda4ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a6fa39bc0d1411384fa0603bcda4ee0.jpg", "file_size": 11876, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4前后片4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6fa39bc0d1411384fa0603bcda4ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6fa39bc0d1411384fa0603bcda4ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6fa39bc0d1411384fa0603bcda4ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a6fa39bc0d1411384fa0603bcda4ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a6fa39bc0d1411384fa0603bcda4ee0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCtz4Evw7uyz3LzqKkpI1c9V0Is=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.541467+00 2025-12-09 10:15:07.541472+00 10418 C382#大红 SPMX-20240815305597 \N \N \N 1 \N [{"file_id": "efea4306-66a6-4ddc-9ce1-d12243c9c686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9854f13ba3bd437a8da5868a51127ae6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9854f13ba3bd437a8da5868a51127ae6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9854f13ba3bd437a8da5868a51127ae6.jpg", "file_size": 55550, "is_delete": false, "file_type": 1, "original_file_name": "C382#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9854f13ba3bd437a8da5868a51127ae6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9854f13ba3bd437a8da5868a51127ae6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9854f13ba3bd437a8da5868a51127ae6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9854f13ba3bd437a8da5868a51127ae6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9854f13ba3bd437a8da5868a51127ae6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-T76x9StYQXAx58RYo5e1e0VkbQ=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.543397+00 2025-12-09 10:15:07.543403+00 10419 LJ9920FWE#紫色XL VS-D3 SPMX-20240815305593 \N \N \N 1 \N [{"file_id": "e958d76c-1ac4-4c95-a565-ed6dcde59247", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b648b782c574a398d03185dffc12d38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b648b782c574a398d03185dffc12d38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b648b782c574a398d03185dffc12d38.jpg", "file_size": 16347, "is_delete": false, "file_type": 1, "original_file_name": "LJ9920FWE#紫色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b648b782c574a398d03185dffc12d38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b648b782c574a398d03185dffc12d38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b648b782c574a398d03185dffc12d38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b648b782c574a398d03185dffc12d38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b648b782c574a398d03185dffc12d38.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4jKz1Ws63eMly5p-SDw2lvPh_k=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.545499+00 2025-12-09 10:15:07.545504+00 10420 8117#-XL码 SPMX-20240815305601 \N \N \N 1 \N [{"file_id": "de39b738-e3e3-43fa-b2ae-6a3c16056f14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dacddb1c138414cabf70ed9a4dfb7c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dacddb1c138414cabf70ed9a4dfb7c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dacddb1c138414cabf70ed9a4dfb7c6.jpg", "file_size": 21095, "is_delete": false, "file_type": 1, "original_file_name": "8117#-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dacddb1c138414cabf70ed9a4dfb7c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dacddb1c138414cabf70ed9a4dfb7c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dacddb1c138414cabf70ed9a4dfb7c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dacddb1c138414cabf70ed9a4dfb7c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dacddb1c138414cabf70ed9a4dfb7c6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8oE-w_00MD2JOAKTGnvgiiKhwTo=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.54737+00 2025-12-09 10:15:07.547376+00 10421 0003-59FWF#黄色 SPMX-20240815305599 \N \N \N 1 \N [{"file_id": "b39024bd-e075-4f2e-a33a-ad01c2f93367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62cdc24115c1442587247597e959a6ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62cdc24115c1442587247597e959a6ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62cdc24115c1442587247597e959a6ee.jpg", "file_size": 18172, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cdc24115c1442587247597e959a6ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cdc24115c1442587247597e959a6ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cdc24115c1442587247597e959a6ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62cdc24115c1442587247597e959a6ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62cdc24115c1442587247597e959a6ee.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIZJ8s09ZiU1M0rX39DjKgwpR3k=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.549489+00 2025-12-09 10:15:07.549494+00 10422 LZ1272#背心款2号色 SPMX-20240815305594 \N \N \N 1 \N [{"file_id": "4ef62228-4aae-4fc6-9ea5-47cd984410bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af7e9ae022e242f4b63bb8c9935656f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af7e9ae022e242f4b63bb8c9935656f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af7e9ae022e242f4b63bb8c9935656f4.jpg", "file_size": 20190, "is_delete": false, "file_type": 1, "original_file_name": "LZ1272#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e9ae022e242f4b63bb8c9935656f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e9ae022e242f4b63bb8c9935656f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e9ae022e242f4b63bb8c9935656f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af7e9ae022e242f4b63bb8c9935656f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af7e9ae022e242f4b63bb8c9935656f4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Iw9TcHuEzqXMUcOgJatKFFGp4I=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.551614+00 2025-12-09 10:15:07.55162+00 10423 11-6G22#彩兰M SPMX-20240815305591 \N \N \N 1 \N [{"file_id": "2b3fa8a1-f972-4dc3-bb94-fd13d5a4d842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59d2d187c4eb47db8bc0f685d570630c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59d2d187c4eb47db8bc0f685d570630c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59d2d187c4eb47db8bc0f685d570630c.jpg", "file_size": 20164, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#彩兰M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d2d187c4eb47db8bc0f685d570630c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d2d187c4eb47db8bc0f685d570630c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d2d187c4eb47db8bc0f685d570630c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59d2d187c4eb47db8bc0f685d570630c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59d2d187c4eb47db8bc0f685d570630c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6yDAKGpftuNZFOwj5OcI2tOCps=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.553488+00 2025-12-09 10:15:07.553493+00 10424 FHXGPK-批布029-5 SPMX-20240815305595 \N \N \N 1 \N [{"file_id": "a91bce4f-8f60-42db-98d0-4d50d197cfc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e6562cdb4db44a3962f2f93fc02a9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e6562cdb4db44a3962f2f93fc02a9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e6562cdb4db44a3962f2f93fc02a9a4.jpg", "file_size": 41285, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布029-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6562cdb4db44a3962f2f93fc02a9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6562cdb4db44a3962f2f93fc02a9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6562cdb4db44a3962f2f93fc02a9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e6562cdb4db44a3962f2f93fc02a9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e6562cdb4db44a3962f2f93fc02a9a4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8musu-hWR6qhxE6NiewonzDu_A=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.555595+00 2025-12-09 10:15:07.5556+00 10425 HT038FWE#VS-D3 SPMX-20240815305598 \N \N \N 1 \N [{"file_id": "1535b58a-bfd0-4d36-8141-db9dc38ac70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a0734fbbb894c94934b839700c61f84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a0734fbbb894c94934b839700c61f84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a0734fbbb894c94934b839700c61f84.jpg", "file_size": 13619, "is_delete": false, "file_type": 1, "original_file_name": "HT038FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0734fbbb894c94934b839700c61f84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0734fbbb894c94934b839700c61f84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0734fbbb894c94934b839700c61f84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a0734fbbb894c94934b839700c61f84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a0734fbbb894c94934b839700c61f84.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zX4OoEHcDTBe2PLme3aYJkP7fWM=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.557461+00 2025-12-09 10:15:07.557466+00 10426 DL30552#蓝绿L SPMX-20240815305592 \N \N \N 1 \N [{"file_id": "68c001f3-a42d-4fe4-b658-e157cf7fe8d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be6f821301364315aa24def02fc20926.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be6f821301364315aa24def02fc20926.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be6f821301364315aa24def02fc20926.jpg", "file_size": 30952, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#蓝绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6f821301364315aa24def02fc20926.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6f821301364315aa24def02fc20926.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6f821301364315aa24def02fc20926.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be6f821301364315aa24def02fc20926.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be6f821301364315aa24def02fc20926.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JI8WAcNQno1QmUbRY31w2Vndt9g=", "createTime": "2024-08-15 14:50:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.559564+00 2025-12-09 10:15:07.559569+00 10427 8117#-L码 SPMX-20240815305589 \N \N \N 1 \N [{"file_id": "3677f18d-eaa4-4af2-b827-df86f435013e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0925113b4a30405c8f792c8649f561a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0925113b4a30405c8f792c8649f561a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0925113b4a30405c8f792c8649f561a0.jpg", "file_size": 22332, "is_delete": false, "file_type": 1, "original_file_name": "8117#-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0925113b4a30405c8f792c8649f561a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0925113b4a30405c8f792c8649f561a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0925113b4a30405c8f792c8649f561a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0925113b4a30405c8f792c8649f561a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0925113b4a30405c8f792c8649f561a0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uN-U8T05YXzN6nAa1ZpIEozyV0=", "createTime": "2024-08-15 14:50:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.561683+00 2025-12-09 10:15:07.561688+00 10428 11-6G22#彩兰S SPMX-20240815305605 \N \N \N 1 \N [{"file_id": "1655d1fc-0966-4667-9575-4671dfc5d2ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "860f4fd096264b11802ac966ee1031a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "860f4fd096264b11802ac966ee1031a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "860f4fd096264b11802ac966ee1031a6.jpg", "file_size": 21122, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#彩兰S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860f4fd096264b11802ac966ee1031a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860f4fd096264b11802ac966ee1031a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860f4fd096264b11802ac966ee1031a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/860f4fd096264b11802ac966ee1031a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/860f4fd096264b11802ac966ee1031a6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJ0c4-2ZUBFhwB02x8IbnmDOlKk=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.563573+00 2025-12-09 10:15:07.563579+00 10429 LZ1272#背心款3号色 SPMX-20240815305604 \N \N \N 1 \N [{"file_id": "d503da1f-9717-4508-a48d-a14f3c5695f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d544ea1d1cc4bac8878b6661be4f1b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d544ea1d1cc4bac8878b6661be4f1b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d544ea1d1cc4bac8878b6661be4f1b2.jpg", "file_size": 20610, "is_delete": false, "file_type": 1, "original_file_name": "LZ1272#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d544ea1d1cc4bac8878b6661be4f1b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d544ea1d1cc4bac8878b6661be4f1b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d544ea1d1cc4bac8878b6661be4f1b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d544ea1d1cc4bac8878b6661be4f1b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d544ea1d1cc4bac8878b6661be4f1b2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QMhBeNDvid5ov2sajlnaJxd_7Q=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.565678+00 2025-12-09 10:15:07.565683+00 10430 DL30552#蓝绿XL SPMX-20240815305602 \N \N \N 1 \N [{"file_id": "6d89daab-7fad-4136-b74f-71897397c728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f9272d58d74492da8adcfe8e68b97fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f9272d58d74492da8adcfe8e68b97fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f9272d58d74492da8adcfe8e68b97fc.jpg", "file_size": 31441, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#蓝绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9272d58d74492da8adcfe8e68b97fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9272d58d74492da8adcfe8e68b97fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9272d58d74492da8adcfe8e68b97fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f9272d58d74492da8adcfe8e68b97fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f9272d58d74492da8adcfe8e68b97fc.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7k-U--3PKhy84-yP62Q6u03HyQ=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.567655+00 2025-12-09 10:15:07.56766+00 10431 LJ9931#2XL深蓝 SPMX-20240815305603 \N \N \N 1 \N [{"file_id": "38aecb67-57de-4585-ab65-550953542387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad8e6e6654ef4580b09d0e38328df982.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad8e6e6654ef4580b09d0e38328df982.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad8e6e6654ef4580b09d0e38328df982.jpg", "file_size": 13765, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8e6e6654ef4580b09d0e38328df982.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8e6e6654ef4580b09d0e38328df982.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8e6e6654ef4580b09d0e38328df982.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad8e6e6654ef4580b09d0e38328df982.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad8e6e6654ef4580b09d0e38328df982.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-s6sx-a9p3gyCPPtkk0sCWIe-o=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.569771+00 2025-12-09 10:15:07.569776+00 10432 23-2116#A4袖子4XL码 SPMX-20240815305607 \N \N \N 1 \N [{"file_id": "2a196200-d851-4f3f-8d46-a36283c280b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b27ebd409bb64ecf8102ad9e7043b0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b27ebd409bb64ecf8102ad9e7043b0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b27ebd409bb64ecf8102ad9e7043b0a4.jpg", "file_size": 10159, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4袖子4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27ebd409bb64ecf8102ad9e7043b0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27ebd409bb64ecf8102ad9e7043b0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27ebd409bb64ecf8102ad9e7043b0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b27ebd409bb64ecf8102ad9e7043b0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b27ebd409bb64ecf8102ad9e7043b0a4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0EeGF2AqRyRXpA34pFw4OXcKVA=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.571634+00 2025-12-09 10:15:07.571639+00 10433 0003-59FWF#黄色批布 SPMX-20240815305612 \N \N \N 1 \N [{"file_id": "a3929a83-2697-4a8c-ae16-80550712dc82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77b481541b974ce79800a029ad399e93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77b481541b974ce79800a029ad399e93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77b481541b974ce79800a029ad399e93.jpg", "file_size": 27275, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#黄色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b481541b974ce79800a029ad399e93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b481541b974ce79800a029ad399e93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b481541b974ce79800a029ad399e93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77b481541b974ce79800a029ad399e93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77b481541b974ce79800a029ad399e93.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwK9OR-I6mmqYaEHS4K-aMSw4-k=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.573724+00 2025-12-09 10:15:07.573729+00 10434 HT039FWE#VS-D3 SPMX-20240815305613 \N \N \N 1 \N [{"file_id": "b1b0b362-232b-4489-b8c3-62ca6554f8eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "735e734bfe77445fbac58354d8f2c117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "735e734bfe77445fbac58354d8f2c117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "735e734bfe77445fbac58354d8f2c117.jpg", "file_size": 9342, "is_delete": false, "file_type": 1, "original_file_name": "HT039FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735e734bfe77445fbac58354d8f2c117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735e734bfe77445fbac58354d8f2c117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735e734bfe77445fbac58354d8f2c117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/735e734bfe77445fbac58354d8f2c117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/735e734bfe77445fbac58354d8f2c117.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uddox7Cd48NXdQwSPDGKnF8JNtw=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.575617+00 2025-12-09 10:15:07.575622+00 10435 C382#彩兰 SPMX-20240815305608 \N \N \N 1 \N [{"file_id": "00f73b53-e56b-40c0-afd3-afb1e283d215", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2db76e66ce18419eb892cc23299f2e95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2db76e66ce18419eb892cc23299f2e95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2db76e66ce18419eb892cc23299f2e95.jpg", "file_size": 56568, "is_delete": false, "file_type": 1, "original_file_name": "C382#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db76e66ce18419eb892cc23299f2e95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db76e66ce18419eb892cc23299f2e95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db76e66ce18419eb892cc23299f2e95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2db76e66ce18419eb892cc23299f2e95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2db76e66ce18419eb892cc23299f2e95.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-H_JHtvURbzNNmSkxYaAt9FkK4=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.57796+00 2025-12-09 10:15:07.577965+00 10436 JTSS184FW#VS-D3 SPMX-20240815305610 \N \N \N 1 \N [{"file_id": "1ce7e40f-8e93-419a-8954-cc6827639c71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "421551ecfa1b4f30be854e4489ecbeba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "421551ecfa1b4f30be854e4489ecbeba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "421551ecfa1b4f30be854e4489ecbeba.jpg", "file_size": 13568, "is_delete": false, "file_type": 1, "original_file_name": "JTSS184FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421551ecfa1b4f30be854e4489ecbeba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421551ecfa1b4f30be854e4489ecbeba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421551ecfa1b4f30be854e4489ecbeba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/421551ecfa1b4f30be854e4489ecbeba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/421551ecfa1b4f30be854e4489ecbeba.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YHQQtYyV65Xbc4VkdXUC34sx6U=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.580131+00 2025-12-09 10:15:07.580136+00 10437 DL30552#袖子大红 SPMX-20240815305611 \N \N \N 1 \N [{"file_id": "ee6716ff-cd0f-415d-9f74-88b80fd664b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d670e7d02424ed69f5dd2a25db0dfb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d670e7d02424ed69f5dd2a25db0dfb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d670e7d02424ed69f5dd2a25db0dfb2.jpg", "file_size": 14992, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d670e7d02424ed69f5dd2a25db0dfb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d670e7d02424ed69f5dd2a25db0dfb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d670e7d02424ed69f5dd2a25db0dfb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d670e7d02424ed69f5dd2a25db0dfb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d670e7d02424ed69f5dd2a25db0dfb2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ak5bAXynjNtObHmgYGZxYfGWCn8=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.582137+00 2025-12-09 10:15:07.582142+00 10438 8118#2XL SPMX-20240815305606 \N \N \N 1 \N [{"file_id": "f236c1a3-801c-4de3-a4f0-6be1aa96114c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0df9e197dec4f0ba6e573a040a2f530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0df9e197dec4f0ba6e573a040a2f530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0df9e197dec4f0ba6e573a040a2f530.jpg", "file_size": 21514, "is_delete": false, "file_type": 1, "original_file_name": "8118#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0df9e197dec4f0ba6e573a040a2f530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0df9e197dec4f0ba6e573a040a2f530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0df9e197dec4f0ba6e573a040a2f530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0df9e197dec4f0ba6e573a040a2f530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0df9e197dec4f0ba6e573a040a2f530.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4agvKm5wwBsXanLMWyxEbs6_5Z8=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.5841+00 2025-12-09 10:15:07.584105+00 10439 FHXGPK-批布030-1 SPMX-20240815305609 \N \N \N 1 \N [{"file_id": "d91fdcf4-ff43-403a-bf25-30158e52e5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7006613ebb5431aa90724f7ef21c34f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7006613ebb5431aa90724f7ef21c34f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7006613ebb5431aa90724f7ef21c34f.jpg", "file_size": 62609, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布030-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7006613ebb5431aa90724f7ef21c34f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7006613ebb5431aa90724f7ef21c34f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7006613ebb5431aa90724f7ef21c34f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7006613ebb5431aa90724f7ef21c34f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7006613ebb5431aa90724f7ef21c34f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MSsr3MPDJeAr_VoknzqcD7ny8SA=", "createTime": "2024-08-15 14:50:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.585993+00 2025-12-09 10:15:07.585997+00 10440 11-6G22#彩兰XL SPMX-20240815305616 \N \N \N 1 \N [{"file_id": "34b0a080-455f-482e-9c1d-db5550581fce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cc89baa35af4a30b15078a97cdeb443.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cc89baa35af4a30b15078a97cdeb443.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cc89baa35af4a30b15078a97cdeb443.jpg", "file_size": 18967, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc89baa35af4a30b15078a97cdeb443.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc89baa35af4a30b15078a97cdeb443.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc89baa35af4a30b15078a97cdeb443.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cc89baa35af4a30b15078a97cdeb443.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cc89baa35af4a30b15078a97cdeb443.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWaFvA87vwv4fODkABtNIv28ytE=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.58775+00 2025-12-09 10:15:07.587755+00 10441 LJ9931#2XL灰 SPMX-20240815305614 \N \N \N 1 \N [{"file_id": "77da55e5-633b-4c78-a49e-53b7ec11836d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b157900d21584402b2a6f9f560a8135c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b157900d21584402b2a6f9f560a8135c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b157900d21584402b2a6f9f560a8135c.jpg", "file_size": 13114, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b157900d21584402b2a6f9f560a8135c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b157900d21584402b2a6f9f560a8135c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b157900d21584402b2a6f9f560a8135c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b157900d21584402b2a6f9f560a8135c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b157900d21584402b2a6f9f560a8135c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGEOoE2NuKq-oV3Xvnan175o-bA=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.590046+00 2025-12-09 10:15:07.590053+00 10442 LZ1272#背心款4号色 SPMX-20240815305615 \N \N \N 1 \N [{"file_id": "b738fa3b-7835-4a8a-b3f9-5e32954a57f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a464d2b4ccc24c27a0d1652bd29a70df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a464d2b4ccc24c27a0d1652bd29a70df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a464d2b4ccc24c27a0d1652bd29a70df.jpg", "file_size": 20364, "is_delete": false, "file_type": 1, "original_file_name": "LZ1272#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a464d2b4ccc24c27a0d1652bd29a70df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a464d2b4ccc24c27a0d1652bd29a70df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a464d2b4ccc24c27a0d1652bd29a70df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a464d2b4ccc24c27a0d1652bd29a70df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a464d2b4ccc24c27a0d1652bd29a70df.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:guyuwrCAGD2pBkoqd2ZRQxVbE1o=", "createTime": "2024-08-15 14:50:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.591777+00 2025-12-09 10:15:07.591781+00 10443 23-2116#A4领子 SPMX-20240815305619 \N \N \N 1 \N [{"file_id": "9c99c47d-e479-46f2-a8b7-3d5fe430d9dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db91ea6039fd46679c7d8602463549b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db91ea6039fd46679c7d8602463549b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db91ea6039fd46679c7d8602463549b4.jpg", "file_size": 13674, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91ea6039fd46679c7d8602463549b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91ea6039fd46679c7d8602463549b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db91ea6039fd46679c7d8602463549b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db91ea6039fd46679c7d8602463549b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db91ea6039fd46679c7d8602463549b4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:98hIU7oqf1AtnecxWCNH60-Y1WQ=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.593488+00 2025-12-09 10:15:07.593492+00 10444 DL30552#袖子姜黄 SPMX-20240815305617 \N \N \N 1 \N [{"file_id": "99593978-c8d8-4b25-b57b-a5fe35692f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecbef04956644cb0aa65607cc903a637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecbef04956644cb0aa65607cc903a637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecbef04956644cb0aa65607cc903a637.jpg", "file_size": 15162, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecbef04956644cb0aa65607cc903a637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecbef04956644cb0aa65607cc903a637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecbef04956644cb0aa65607cc903a637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecbef04956644cb0aa65607cc903a637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecbef04956644cb0aa65607cc903a637.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2uisGUZ9rwwF_6GmhAEWq8u17c=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.595415+00 2025-12-09 10:15:07.59542+00 10445 8118#3XL SPMX-20240815305618 \N \N \N 1 \N [{"file_id": "8e0148e2-8067-4f2f-963b-560d9203eb9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2129dfe2ce0440bf95afef2bed68a4b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2129dfe2ce0440bf95afef2bed68a4b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2129dfe2ce0440bf95afef2bed68a4b2.jpg", "file_size": 21187, "is_delete": false, "file_type": 1, "original_file_name": "8118#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2129dfe2ce0440bf95afef2bed68a4b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2129dfe2ce0440bf95afef2bed68a4b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2129dfe2ce0440bf95afef2bed68a4b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2129dfe2ce0440bf95afef2bed68a4b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2129dfe2ce0440bf95afef2bed68a4b2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7LnBwtMLn25qYD_LeOc_HpIlsII=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.597187+00 2025-12-09 10:15:07.597193+00 10446 FHXGPK-批布030-2 SPMX-20240815305620 \N \N \N 1 \N [{"file_id": "9bc6497b-7d4b-4d89-868f-3372b92b3855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25716151ad774635bce8602abe5cd638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25716151ad774635bce8602abe5cd638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25716151ad774635bce8602abe5cd638.jpg", "file_size": 63946, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布030-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25716151ad774635bce8602abe5cd638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25716151ad774635bce8602abe5cd638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25716151ad774635bce8602abe5cd638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25716151ad774635bce8602abe5cd638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25716151ad774635bce8602abe5cd638.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5XgQ9qTXK5hD2IC6I2JVOvhZp8=", "createTime": "2024-08-15 14:50:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.599124+00 2025-12-09 10:15:07.599129+00 10447 FHXGPK-批布031-1 SPMX-20240815305631 \N \N \N 1 \N [{"file_id": "3d175d60-12a7-4f72-9324-67aa1d5be047", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "271406e3381e40ebbd2771c37aaf33f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "271406e3381e40ebbd2771c37aaf33f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "271406e3381e40ebbd2771c37aaf33f0.jpg", "file_size": 50104, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布031-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271406e3381e40ebbd2771c37aaf33f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271406e3381e40ebbd2771c37aaf33f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271406e3381e40ebbd2771c37aaf33f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/271406e3381e40ebbd2771c37aaf33f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/271406e3381e40ebbd2771c37aaf33f0.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FI2eOqJXStbzBCRoN-78wum03co=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.601017+00 2025-12-09 10:15:07.601022+00 10448 LZ1272#背心款5号色 SPMX-20240815305625 \N \N \N 1 \N [{"file_id": "af5b147c-7ce4-4b3d-83c9-cdfd6b46814f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3cc157c4f4c470e976ce3cb95d64907.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3cc157c4f4c470e976ce3cb95d64907.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3cc157c4f4c470e976ce3cb95d64907.jpg", "file_size": 20458, "is_delete": false, "file_type": 1, "original_file_name": "LZ1272#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cc157c4f4c470e976ce3cb95d64907.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cc157c4f4c470e976ce3cb95d64907.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cc157c4f4c470e976ce3cb95d64907.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3cc157c4f4c470e976ce3cb95d64907.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3cc157c4f4c470e976ce3cb95d64907.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1mZsYGPENydAgrx_UeSnYUcorg=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.60288+00 2025-12-09 10:15:07.602884+00 10449 LJ9931#2XL白前片 SPMX-20240815305634 \N \N \N 1 \N [{"file_id": "9858c710-50e6-4499-a26c-600863fb40a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg", "file_size": 9261, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44fb2f2bb4e247a2bf48d8adaa97c7d7.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LFBfasIjm1NyhmZH0nDoUBrb6Iw=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.604952+00 2025-12-09 10:15:07.604956+00 10450 HT041FWE#VS-D3 SPMX-20240815305635 \N \N \N 1 \N [{"file_id": "b91bebf5-2f14-47e7-9077-46bad89155fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "527af75351c040109b2c9ac34defcad7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "527af75351c040109b2c9ac34defcad7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "527af75351c040109b2c9ac34defcad7.jpg", "file_size": 17385, "is_delete": false, "file_type": 1, "original_file_name": "HT041FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527af75351c040109b2c9ac34defcad7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527af75351c040109b2c9ac34defcad7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527af75351c040109b2c9ac34defcad7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/527af75351c040109b2c9ac34defcad7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/527af75351c040109b2c9ac34defcad7.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBIOt82I8r1JcuAtSMD7ngMlsDQ=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.606808+00 2025-12-09 10:15:07.606814+00 10451 JTSS185FW#VS-D3 SPMX-20240815305626 \N \N \N 1 \N [{"file_id": "6cc1a236-ce64-43eb-aed0-7515cfc1b7c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa57918ffecf4bb9bf816b1a213b7a9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa57918ffecf4bb9bf816b1a213b7a9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa57918ffecf4bb9bf816b1a213b7a9a.jpg", "file_size": 11553, "is_delete": false, "file_type": 1, "original_file_name": "JTSS185FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa57918ffecf4bb9bf816b1a213b7a9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa57918ffecf4bb9bf816b1a213b7a9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa57918ffecf4bb9bf816b1a213b7a9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa57918ffecf4bb9bf816b1a213b7a9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa57918ffecf4bb9bf816b1a213b7a9a.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ro_KICsnUljVsXmwiRh2VVnxFb0=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.609078+00 2025-12-09 10:15:07.609084+00 10452 DL30552#袖子彩兰 SPMX-20240815305628 \N \N \N 1 \N [{"file_id": "f126dfb6-e67a-4f8c-b004-eceeb32b7620", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c23ba1b53e94e9094bad5def99ae54c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c23ba1b53e94e9094bad5def99ae54c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c23ba1b53e94e9094bad5def99ae54c.jpg", "file_size": 15069, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c23ba1b53e94e9094bad5def99ae54c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c23ba1b53e94e9094bad5def99ae54c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c23ba1b53e94e9094bad5def99ae54c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c23ba1b53e94e9094bad5def99ae54c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c23ba1b53e94e9094bad5def99ae54c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lrE2sua-Jho7Wl-TFyWJGHc7pe0=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.61137+00 2025-12-09 10:15:07.611375+00 10453 0003-59FWF#黑色 SPMX-20240815305621 \N \N \N 1 \N [{"file_id": "6e4045bc-2e0a-4749-bed8-f81b1fc3330e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b582b07d38e84d478ffe748a49edda0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b582b07d38e84d478ffe748a49edda0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b582b07d38e84d478ffe748a49edda0e.jpg", "file_size": 17246, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b582b07d38e84d478ffe748a49edda0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b582b07d38e84d478ffe748a49edda0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b582b07d38e84d478ffe748a49edda0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b582b07d38e84d478ffe748a49edda0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b582b07d38e84d478ffe748a49edda0e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGOfHcftw215y0JiNtNTO-_6i7o=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.613182+00 2025-12-09 10:15:07.613186+00 10454 11-6G22#枣红L SPMX-20240815305627 \N \N \N 1 \N [{"file_id": "e73612a4-57f1-459b-8bd1-5851e41a1e80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4517e8c0946043528ceac683ef54bc95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4517e8c0946043528ceac683ef54bc95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4517e8c0946043528ceac683ef54bc95.jpg", "file_size": 19040, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4517e8c0946043528ceac683ef54bc95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4517e8c0946043528ceac683ef54bc95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4517e8c0946043528ceac683ef54bc95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4517e8c0946043528ceac683ef54bc95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4517e8c0946043528ceac683ef54bc95.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFqU5T6l3q6VN-1wgy-DcVuQmaY=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.61489+00 2025-12-09 10:15:07.614894+00 10455 LJ9931#2XL白 SPMX-20240815305624 \N \N \N 1 \N [{"file_id": "6096c9a2-6531-45d7-bcdb-a5d172d76ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f747df7508ab47f2a6989baaf6c153d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f747df7508ab47f2a6989baaf6c153d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f747df7508ab47f2a6989baaf6c153d4.jpg", "file_size": 13783, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f747df7508ab47f2a6989baaf6c153d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f747df7508ab47f2a6989baaf6c153d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f747df7508ab47f2a6989baaf6c153d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f747df7508ab47f2a6989baaf6c153d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f747df7508ab47f2a6989baaf6c153d4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZV7cuFLLDRFirzHCz8cVftzU3ag=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.616798+00 2025-12-09 10:15:07.616802+00 10456 8118#4XL SPMX-20240815305630 \N \N \N 1 \N [{"file_id": "de784926-15f5-4cd9-9ccf-fe1c57381568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b0ed8f2a11449dbb6d528062af95c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b0ed8f2a11449dbb6d528062af95c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b0ed8f2a11449dbb6d528062af95c2.jpg", "file_size": 20583, "is_delete": false, "file_type": 1, "original_file_name": "8118#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b0ed8f2a11449dbb6d528062af95c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b0ed8f2a11449dbb6d528062af95c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b0ed8f2a11449dbb6d528062af95c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b0ed8f2a11449dbb6d528062af95c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b0ed8f2a11449dbb6d528062af95c2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jU38AmRwXBSG2M1X84zaY_E4u-4=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.618638+00 2025-12-09 10:15:07.618643+00 10457 C382#玫红 SPMX-20240815305633 \N \N \N 1 \N [{"file_id": "97e733c7-a3f1-42e3-b54f-06432257f154", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15d6d1852a6f4815b993d6ed0166e7cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15d6d1852a6f4815b993d6ed0166e7cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15d6d1852a6f4815b993d6ed0166e7cf.jpg", "file_size": 52573, "is_delete": false, "file_type": 1, "original_file_name": "C382#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d6d1852a6f4815b993d6ed0166e7cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d6d1852a6f4815b993d6ed0166e7cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d6d1852a6f4815b993d6ed0166e7cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15d6d1852a6f4815b993d6ed0166e7cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15d6d1852a6f4815b993d6ed0166e7cf.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUYApNC437CblS3deHlbAhm_zPQ=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.621756+00 2025-12-09 10:15:07.621763+00 10458 C382#橙色 SPMX-20240815305622 \N \N \N 1 \N [{"file_id": "bf4d5406-fb31-4746-bfcd-e43ca610f52e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f293c7b515f24f49a6fb3de1df8cde7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f293c7b515f24f49a6fb3de1df8cde7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f293c7b515f24f49a6fb3de1df8cde7d.jpg", "file_size": 54772, "is_delete": false, "file_type": 1, "original_file_name": "C382#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f293c7b515f24f49a6fb3de1df8cde7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f293c7b515f24f49a6fb3de1df8cde7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f293c7b515f24f49a6fb3de1df8cde7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f293c7b515f24f49a6fb3de1df8cde7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f293c7b515f24f49a6fb3de1df8cde7d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unpsLqoWlYW28kOGkCcUUI4z_i4=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.624389+00 2025-12-09 10:15:07.624395+00 10459 0003-59FWF#黑色批布 SPMX-20240815305632 \N \N \N 1 \N [{"file_id": "fb8cfa2e-6df0-4082-b8c7-dd7f4c4ac2a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "912804359e4347279e0678aa2f6f8e39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "912804359e4347279e0678aa2f6f8e39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "912804359e4347279e0678aa2f6f8e39.jpg", "file_size": 24833, "is_delete": false, "file_type": 1, "original_file_name": "0003-59FWF#黑色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912804359e4347279e0678aa2f6f8e39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912804359e4347279e0678aa2f6f8e39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/912804359e4347279e0678aa2f6f8e39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/912804359e4347279e0678aa2f6f8e39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/912804359e4347279e0678aa2f6f8e39.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R3BmVb4vGRgzhw4Ra8YagSq3Py8=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.6271+00 2025-12-09 10:15:07.627105+00 10460 LZ1273#背心款1号色 SPMX-20240815305636 \N \N \N 1 \N [{"file_id": "4449a932-abca-4789-b82c-12888589dc2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "802c6239039d4d53abc17aaa651ee7d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "802c6239039d4d53abc17aaa651ee7d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "802c6239039d4d53abc17aaa651ee7d4.jpg", "file_size": 18923, "is_delete": false, "file_type": 1, "original_file_name": "LZ1273#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802c6239039d4d53abc17aaa651ee7d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802c6239039d4d53abc17aaa651ee7d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802c6239039d4d53abc17aaa651ee7d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/802c6239039d4d53abc17aaa651ee7d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/802c6239039d4d53abc17aaa651ee7d4.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAm3jm9Pk9sCOVnr_XvqS-LG53w=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.629874+00 2025-12-09 10:15:07.629878+00 10461 23-2116#A4领子领口通用 SPMX-20240815305629 \N \N \N 1 \N [{"file_id": "b71804f7-7396-4df7-9bd7-affbdbd7a9e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62d21d0a8b544ae69e514a3f46682de6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62d21d0a8b544ae69e514a3f46682de6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62d21d0a8b544ae69e514a3f46682de6.jpg", "file_size": 7080, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A4领子领口通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62d21d0a8b544ae69e514a3f46682de6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62d21d0a8b544ae69e514a3f46682de6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62d21d0a8b544ae69e514a3f46682de6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62d21d0a8b544ae69e514a3f46682de6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62d21d0a8b544ae69e514a3f46682de6.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ycqLyAwwmeMyhVkSgv9zy4YqZUI=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.632591+00 2025-12-09 10:15:07.632595+00 10462 HT040FWE#VS-D3 SPMX-20240815305623 \N \N \N 1 \N [{"file_id": "93930371-2617-47fa-bf11-71c8a94f0a54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0045abdbbd64936bee7ec1fb24a7add.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0045abdbbd64936bee7ec1fb24a7add.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0045abdbbd64936bee7ec1fb24a7add.jpg", "file_size": 18157, "is_delete": false, "file_type": 1, "original_file_name": "HT040FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0045abdbbd64936bee7ec1fb24a7add.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0045abdbbd64936bee7ec1fb24a7add.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0045abdbbd64936bee7ec1fb24a7add.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0045abdbbd64936bee7ec1fb24a7add.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0045abdbbd64936bee7ec1fb24a7add.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMl04lFD7Q81k8Q6PZpX1UocNPY=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.635044+00 2025-12-09 10:15:07.635048+00 10463 FHXGPK-批布031-2 SPMX-20240815305642 \N \N \N 1 \N [{"file_id": "6f852ae5-4e22-4e9a-8e04-74cbefd3ee9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd562b142064c1683041e031e9b48ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd562b142064c1683041e031e9b48ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd562b142064c1683041e031e9b48ee.jpg", "file_size": 49835, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布031-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd562b142064c1683041e031e9b48ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd562b142064c1683041e031e9b48ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd562b142064c1683041e031e9b48ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd562b142064c1683041e031e9b48ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd562b142064c1683041e031e9b48ee.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7E_AbUsUYFgS_6q3fG-rbrfmB2g=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.637505+00 2025-12-09 10:15:07.637509+00 10464 LZ1273#背心款2号色 SPMX-20240815305645 \N \N \N 1 \N [{"file_id": "a711df50-8286-47ec-8528-225176618c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "782fe0ea7e6c4acf943c81aa5203a8c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "782fe0ea7e6c4acf943c81aa5203a8c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "782fe0ea7e6c4acf943c81aa5203a8c2.jpg", "file_size": 18145, "is_delete": false, "file_type": 1, "original_file_name": "LZ1273#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782fe0ea7e6c4acf943c81aa5203a8c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782fe0ea7e6c4acf943c81aa5203a8c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/782fe0ea7e6c4acf943c81aa5203a8c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/782fe0ea7e6c4acf943c81aa5203a8c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/782fe0ea7e6c4acf943c81aa5203a8c2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gPXVlQRz7VtIpnpqt5GrJsUKbqo=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.639586+00 2025-12-09 10:15:07.639591+00 10465 23-2116#A5-3XL SPMX-20240815305640 \N \N \N 1 \N [{"file_id": "94633665-2470-4135-8431-836eb72bad5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7756936a7a65455cb4831bcf26f97149.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7756936a7a65455cb4831bcf26f97149.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7756936a7a65455cb4831bcf26f97149.jpg", "file_size": 16175, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7756936a7a65455cb4831bcf26f97149.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7756936a7a65455cb4831bcf26f97149.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7756936a7a65455cb4831bcf26f97149.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7756936a7a65455cb4831bcf26f97149.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7756936a7a65455cb4831bcf26f97149.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-o18oMZf7yKUFKksW9EWcgNrn0k=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.641607+00 2025-12-09 10:15:07.641612+00 10466 LJ9931#2XL粉 SPMX-20240815305646 \N \N \N 1 \N [{"file_id": "0f45daef-0af4-4af1-b7aa-a1607f7a839f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35d7d974c1674b99b316adb6888967b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35d7d974c1674b99b316adb6888967b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35d7d974c1674b99b316adb6888967b3.jpg", "file_size": 13924, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d7d974c1674b99b316adb6888967b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d7d974c1674b99b316adb6888967b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d7d974c1674b99b316adb6888967b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35d7d974c1674b99b316adb6888967b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35d7d974c1674b99b316adb6888967b3.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9MHhQ4Iw2uCfGy6pSypddMR66c=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.643386+00 2025-12-09 10:15:07.643391+00 10467 JTSS187FW#VS-D3 SPMX-20240815305647 \N \N \N 1 \N [{"file_id": "d5d71a5f-74fd-4a15-85a2-b122637cb24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e594ce89d85c4efb8aa1113ab952d6a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e594ce89d85c4efb8aa1113ab952d6a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e594ce89d85c4efb8aa1113ab952d6a2.jpg", "file_size": 11419, "is_delete": false, "file_type": 1, "original_file_name": "JTSS187FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e594ce89d85c4efb8aa1113ab952d6a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e594ce89d85c4efb8aa1113ab952d6a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e594ce89d85c4efb8aa1113ab952d6a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e594ce89d85c4efb8aa1113ab952d6a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e594ce89d85c4efb8aa1113ab952d6a2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u51vywXC3N-yLe3W5lYF2gGvT4Y=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.645173+00 2025-12-09 10:15:07.645177+00 10468 HT0420#WJC22 SPMX-20240815305648 \N \N \N 1 \N [{"file_id": "f63604da-deea-41e1-a0dd-497ea55f061f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg", "file_size": 13964, "is_delete": false, "file_type": 1, "original_file_name": "HT0420#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4fda1eb964649aba5e3e1f0d0c5fb2f.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KiK1zTkcoYOBebsDTCdImUZ8IM=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.646925+00 2025-12-09 10:15:07.64693+00 10469 C382#绿色 SPMX-20240815305644 \N \N \N 1 \N [{"file_id": "a2273d09-5d45-455d-9167-103fa85381a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1e97ea0d5fc4d4aa820bd9b878d1811.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1e97ea0d5fc4d4aa820bd9b878d1811.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1e97ea0d5fc4d4aa820bd9b878d1811.jpg", "file_size": 52795, "is_delete": false, "file_type": 1, "original_file_name": "C382#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e97ea0d5fc4d4aa820bd9b878d1811.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e97ea0d5fc4d4aa820bd9b878d1811.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e97ea0d5fc4d4aa820bd9b878d1811.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1e97ea0d5fc4d4aa820bd9b878d1811.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1e97ea0d5fc4d4aa820bd9b878d1811.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bw-fvLesTJzIhDeYtiRcPpkD0JY=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.64884+00 2025-12-09 10:15:07.648845+00 10470 8118#XL SPMX-20240815305652 \N \N \N 1 \N [{"file_id": "7b1f397a-c98e-479d-a363-4ba904444ad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c12d4f0ea56b4f1b86ee03b343deff58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c12d4f0ea56b4f1b86ee03b343deff58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c12d4f0ea56b4f1b86ee03b343deff58.jpg", "file_size": 21310, "is_delete": false, "file_type": 1, "original_file_name": "8118#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d4f0ea56b4f1b86ee03b343deff58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d4f0ea56b4f1b86ee03b343deff58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12d4f0ea56b4f1b86ee03b343deff58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c12d4f0ea56b4f1b86ee03b343deff58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c12d4f0ea56b4f1b86ee03b343deff58.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvE3gerWtEIUtwM2G1zFEsAYRxQ=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.650519+00 2025-12-09 10:15:07.650523+00 10471 JTSS186FW#VS-D3 SPMX-20240815305637 \N \N \N 1 \N [{"file_id": "a6a7f86e-0d3b-444c-8780-cdcea74fc03b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c6944b712944d09ab2c2ab7aa710822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c6944b712944d09ab2c2ab7aa710822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c6944b712944d09ab2c2ab7aa710822.jpg", "file_size": 10000, "is_delete": false, "file_type": 1, "original_file_name": "JTSS186FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6944b712944d09ab2c2ab7aa710822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6944b712944d09ab2c2ab7aa710822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6944b712944d09ab2c2ab7aa710822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c6944b712944d09ab2c2ab7aa710822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c6944b712944d09ab2c2ab7aa710822.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SKyVkvAtr5vnl2uwF7VMUVli6Q=", "createTime": "2024-08-15 14:50:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.65219+00 2025-12-09 10:15:07.652195+00 10472 0003-5FWE#VS-D3 SPMX-20240815305643 \N \N \N 1 \N [{"file_id": "4511b8d9-92eb-4126-b166-8f784039c281", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "439b4f8a428d44d687759f5e7fa5cff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "439b4f8a428d44d687759f5e7fa5cff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "439b4f8a428d44d687759f5e7fa5cff7.jpg", "file_size": 20967, "is_delete": false, "file_type": 1, "original_file_name": "0003-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439b4f8a428d44d687759f5e7fa5cff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439b4f8a428d44d687759f5e7fa5cff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439b4f8a428d44d687759f5e7fa5cff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/439b4f8a428d44d687759f5e7fa5cff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/439b4f8a428d44d687759f5e7fa5cff7.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBskcIK-tDyeuZb2d0QDzVVMa3Q=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.653883+00 2025-12-09 10:15:07.653887+00 10473 11-6G22#枣红S SPMX-20240815305650 \N \N \N 1 \N [{"file_id": "b7b67a8a-26b6-4611-a20f-750b8df51a2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc35d8d2902b404eb86689457c1fedb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc35d8d2902b404eb86689457c1fedb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc35d8d2902b404eb86689457c1fedb1.jpg", "file_size": 20908, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#枣红S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc35d8d2902b404eb86689457c1fedb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc35d8d2902b404eb86689457c1fedb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc35d8d2902b404eb86689457c1fedb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc35d8d2902b404eb86689457c1fedb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc35d8d2902b404eb86689457c1fedb1.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EL9STuB8wtfKfda7izHFbMxi10=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.655576+00 2025-12-09 10:15:07.65558+00 10474 23-2116#A5-4XL SPMX-20240815305651 \N \N \N 1 \N [{"file_id": "e5fe788d-7dab-4003-9339-112ce0c33b9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdffb051efc746119748ef825d6ed539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdffb051efc746119748ef825d6ed539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdffb051efc746119748ef825d6ed539.jpg", "file_size": 15249, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdffb051efc746119748ef825d6ed539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdffb051efc746119748ef825d6ed539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdffb051efc746119748ef825d6ed539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdffb051efc746119748ef825d6ed539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdffb051efc746119748ef825d6ed539.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:232hCJpItdWJ_-MmwPt7_xqRHhU=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.657269+00 2025-12-09 10:15:07.657273+00 10475 8118#5XL SPMX-20240815305641 \N \N \N 1 \N [{"file_id": "466602fd-3770-435a-bdcc-ce36a1c60d77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae8f9e2296f4be59ff759e8eb76ccdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae8f9e2296f4be59ff759e8eb76ccdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae8f9e2296f4be59ff759e8eb76ccdd.jpg", "file_size": 21791, "is_delete": false, "file_type": 1, "original_file_name": "8118#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae8f9e2296f4be59ff759e8eb76ccdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae8f9e2296f4be59ff759e8eb76ccdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae8f9e2296f4be59ff759e8eb76ccdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae8f9e2296f4be59ff759e8eb76ccdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae8f9e2296f4be59ff759e8eb76ccdd.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tcCBo3PUJKcT6nLw8u_gXwWk4RM=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.658932+00 2025-12-09 10:15:07.658936+00 10476 DL30552#袖子粉色 SPMX-20240815305639 \N \N \N 1 \N [{"file_id": "e777adc9-2bec-4d26-b122-d736d4f5b0f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6ecc8be5b87484da564d3cbba6dac27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6ecc8be5b87484da564d3cbba6dac27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6ecc8be5b87484da564d3cbba6dac27.jpg", "file_size": 14898, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ecc8be5b87484da564d3cbba6dac27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ecc8be5b87484da564d3cbba6dac27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ecc8be5b87484da564d3cbba6dac27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6ecc8be5b87484da564d3cbba6dac27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6ecc8be5b87484da564d3cbba6dac27.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VRltcTTru3v__mOTX7V7KbbX4I=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.67501+00 2025-12-09 10:15:07.675014+00 10485 JTSS188FW#VS-D3 SPMX-20240815305658 \N \N \N 1 \N [{"file_id": "9f2aa951-be61-4f95-924d-53b43eea3d97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81995660c251473da97e588594b1f604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81995660c251473da97e588594b1f604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81995660c251473da97e588594b1f604.jpg", "file_size": 8789, "is_delete": false, "file_type": 1, "original_file_name": "JTSS188FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81995660c251473da97e588594b1f604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81995660c251473da97e588594b1f604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81995660c251473da97e588594b1f604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81995660c251473da97e588594b1f604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81995660c251473da97e588594b1f604.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQyrxcQmZamhaQqVN6Z3REfXkBw=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.66064+00 2025-12-09 10:15:07.660645+00 10477 DL30552#袖子紫色 SPMX-20240815305649 \N \N \N 1 \N [{"file_id": "5d7487ee-f573-41d2-a375-c5775d096c51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83de783fd0f1450fa8a496ebb0589263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83de783fd0f1450fa8a496ebb0589263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83de783fd0f1450fa8a496ebb0589263.jpg", "file_size": 15177, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83de783fd0f1450fa8a496ebb0589263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83de783fd0f1450fa8a496ebb0589263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83de783fd0f1450fa8a496ebb0589263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83de783fd0f1450fa8a496ebb0589263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83de783fd0f1450fa8a496ebb0589263.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbjkBzDhuAYHYpdoeUl9P63uq2Q=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.662347+00 2025-12-09 10:15:07.662352+00 10478 11-6G22#枣红M SPMX-20240815305638 \N \N \N 1 \N [{"file_id": "ba9fd4df-fee3-416e-9209-38f7fc90a90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d83fb45edb43f9956980f9d520212c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d83fb45edb43f9956980f9d520212c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d83fb45edb43f9956980f9d520212c.jpg", "file_size": 19782, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#枣红M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d83fb45edb43f9956980f9d520212c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d83fb45edb43f9956980f9d520212c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d83fb45edb43f9956980f9d520212c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d83fb45edb43f9956980f9d520212c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d83fb45edb43f9956980f9d520212c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkCPCXvrgxbjTAD3c40I-dI6Moo=", "createTime": "2024-08-15 14:50:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.664049+00 2025-12-09 10:15:07.664053+00 10479 LJ9931#2XL绿 SPMX-20240815305659 \N \N \N 1 \N [{"file_id": "0beb743d-5a97-480e-b9ac-f4af98c3830b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3508b00aba9a408786bc2b578f23d3f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3508b00aba9a408786bc2b578f23d3f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3508b00aba9a408786bc2b578f23d3f2.jpg", "file_size": 14407, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3508b00aba9a408786bc2b578f23d3f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3508b00aba9a408786bc2b578f23d3f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3508b00aba9a408786bc2b578f23d3f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3508b00aba9a408786bc2b578f23d3f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3508b00aba9a408786bc2b578f23d3f2.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9s6uJNPl4rubRIn1W1yi2s9JR4=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.666009+00 2025-12-09 10:15:07.666014+00 10480 C382A#大红 SPMX-20240815305666 \N \N \N 1 \N [{"file_id": "f5991048-7241-45ba-b76f-f622cbf10b87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c1ab9219831408387cf7ccccf71802e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c1ab9219831408387cf7ccccf71802e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c1ab9219831408387cf7ccccf71802e.jpg", "file_size": 55518, "is_delete": false, "file_type": 1, "original_file_name": "C382A#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1ab9219831408387cf7ccccf71802e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1ab9219831408387cf7ccccf71802e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1ab9219831408387cf7ccccf71802e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c1ab9219831408387cf7ccccf71802e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c1ab9219831408387cf7ccccf71802e.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CVkiIXgDZwYGeYI-hX3FY6bPqA=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.667979+00 2025-12-09 10:15:07.667983+00 10481 0003-60FWF#V5曲线 SPMX-20240815305667 \N \N \N 1 \N [{"file_id": "4cc581a3-4d14-42c1-81bf-87f0802dbd59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39980a0c2444f149e01156e6fa1139c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39980a0c2444f149e01156e6fa1139c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39980a0c2444f149e01156e6fa1139c.jpg", "file_size": 17392, "is_delete": false, "file_type": 1, "original_file_name": "0003-60FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39980a0c2444f149e01156e6fa1139c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39980a0c2444f149e01156e6fa1139c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39980a0c2444f149e01156e6fa1139c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39980a0c2444f149e01156e6fa1139c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39980a0c2444f149e01156e6fa1139c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7V6zVNRP9TLKQsDg02JlzE3hMqs=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.66968+00 2025-12-09 10:15:07.669685+00 10482 FHXGPK-批布032-1 SPMX-20240815305653 \N \N \N 1 \N [{"file_id": "6a54e8fc-a29e-46ef-b169-0c26f528863c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141bcf7017634717985c7ec5ca5755fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141bcf7017634717985c7ec5ca5755fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141bcf7017634717985c7ec5ca5755fa.jpg", "file_size": 30680, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布032-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141bcf7017634717985c7ec5ca5755fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141bcf7017634717985c7ec5ca5755fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141bcf7017634717985c7ec5ca5755fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141bcf7017634717985c7ec5ca5755fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141bcf7017634717985c7ec5ca5755fa.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWHS9QPFBT-218wML7uHMummp4A=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.671399+00 2025-12-09 10:15:07.671403+00 10483 FHXGPK-批布032-2 SPMX-20240815305665 \N \N \N 1 \N [{"file_id": "a2921c2d-9731-4a48-b811-1601d498b6f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a547f692671c4382b977d461bcd7ef4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a547f692671c4382b977d461bcd7ef4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a547f692671c4382b977d461bcd7ef4c.jpg", "file_size": 29811, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布032-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a547f692671c4382b977d461bcd7ef4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a547f692671c4382b977d461bcd7ef4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a547f692671c4382b977d461bcd7ef4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a547f692671c4382b977d461bcd7ef4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a547f692671c4382b977d461bcd7ef4c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-d4sdFaQBJ9lRfYveWERcMbGcyc=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.67309+00 2025-12-09 10:15:07.673095+00 10484 23-2116#A5-领子3XL SPMX-20240815305661 \N \N \N 1 \N [{"file_id": "44300453-d519-4d75-a976-4eb5324f2b67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dccdb58a59f4598bcd8bf2dc38ad892.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dccdb58a59f4598bcd8bf2dc38ad892.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dccdb58a59f4598bcd8bf2dc38ad892.jpg", "file_size": 11783, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dccdb58a59f4598bcd8bf2dc38ad892.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dccdb58a59f4598bcd8bf2dc38ad892.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dccdb58a59f4598bcd8bf2dc38ad892.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dccdb58a59f4598bcd8bf2dc38ad892.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dccdb58a59f4598bcd8bf2dc38ad892.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qrm-2ch3eDIehH7hgry9G7qiw1E=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.6767+00 2025-12-09 10:15:07.676708+00 10486 11-6G22#枣红XL SPMX-20240815305664 \N \N \N 1 \N [{"file_id": "a1fa1fa1-ce27-42d1-a0ff-63ccf2ecd752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a07697f21544ca1819159122725423b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a07697f21544ca1819159122725423b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a07697f21544ca1819159122725423b.jpg", "file_size": 18540, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a07697f21544ca1819159122725423b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a07697f21544ca1819159122725423b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a07697f21544ca1819159122725423b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a07697f21544ca1819159122725423b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a07697f21544ca1819159122725423b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyAVEGYUZgA5rZ06IYql8j7wZMk=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.678488+00 2025-12-09 10:15:07.678493+00 10487 0003-5FWF#V5曲线 SPMX-20240815305655 \N \N \N 1 \N [{"file_id": "09d6292a-d356-4771-864b-1463335b10d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7028ffc3631141389ea343b5f8bd7ec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7028ffc3631141389ea343b5f8bd7ec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7028ffc3631141389ea343b5f8bd7ec9.jpg", "file_size": 10841, "is_delete": false, "file_type": 1, "original_file_name": "0003-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7028ffc3631141389ea343b5f8bd7ec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7028ffc3631141389ea343b5f8bd7ec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7028ffc3631141389ea343b5f8bd7ec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7028ffc3631141389ea343b5f8bd7ec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7028ffc3631141389ea343b5f8bd7ec9.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BRi7rJf6rqNEIxRgAleeztbNns=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.680238+00 2025-12-09 10:15:07.680243+00 10488 C382#黑色 SPMX-20240815305654 \N \N \N 1 \N [{"file_id": "6328d65d-067a-4495-aa47-39d810f3964d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc4a6a45cb324438bba897ec50155c1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc4a6a45cb324438bba897ec50155c1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc4a6a45cb324438bba897ec50155c1b.jpg", "file_size": 50094, "is_delete": false, "file_type": 1, "original_file_name": "C382#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc4a6a45cb324438bba897ec50155c1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc4a6a45cb324438bba897ec50155c1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc4a6a45cb324438bba897ec50155c1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc4a6a45cb324438bba897ec50155c1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc4a6a45cb324438bba897ec50155c1b.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyeevZWJS-JJ-WulrlFviQMyFm4=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.682142+00 2025-12-09 10:15:07.682147+00 10489 8118#净色 SPMX-20240815305663 \N \N \N 1 \N [{"file_id": "7d506380-af5c-435c-8cca-053a4e4acd09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c54974d2a018450aa03d159c8f54081c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c54974d2a018450aa03d159c8f54081c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c54974d2a018450aa03d159c8f54081c.jpg", "file_size": 8430, "is_delete": false, "file_type": 1, "original_file_name": "8118#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54974d2a018450aa03d159c8f54081c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54974d2a018450aa03d159c8f54081c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54974d2a018450aa03d159c8f54081c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c54974d2a018450aa03d159c8f54081c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c54974d2a018450aa03d159c8f54081c.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiNxmT0G7VWlmqmmsYxhANno-ZM=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.451527+00 2025-12-09 10:15:08.451532+00 10498 HT043FWE#VS-D3 SPMX-20240815305670 \N \N \N 1 \N [{"file_id": "c3754a71-ce8e-4b7f-ae9a-bdfdbbb50ea9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dfc136755be47de9e6358dc5279baa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dfc136755be47de9e6358dc5279baa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dfc136755be47de9e6358dc5279baa0.jpg", "file_size": 14606, "is_delete": false, "file_type": 1, "original_file_name": "HT043FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfc136755be47de9e6358dc5279baa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfc136755be47de9e6358dc5279baa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfc136755be47de9e6358dc5279baa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dfc136755be47de9e6358dc5279baa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dfc136755be47de9e6358dc5279baa0.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHfxOC7ylB-Xq-xIESBYb4GOLEk=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.684319+00 2025-12-09 10:15:07.684323+00 10490 DL30552#袖子蓝绿 SPMX-20240815305662 \N \N \N 1 \N [{"file_id": "394356cd-0e97-4c34-a051-9e58def7ebda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg", "file_size": 15066, "is_delete": false, "file_type": 1, "original_file_name": "DL30552#袖子蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2ff90c9c8d64c6cb1fa2d1e42799e34.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Knml0Tv1b7U4IGYZp-0U3fCQ104=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.68625+00 2025-12-09 10:15:07.686255+00 10491 LZ1273#背心款3号色 SPMX-20240815305656 \N \N \N 1 \N [{"file_id": "44f23c9f-a6dc-4022-bc66-4e794471e349", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d752438f20d24ac0894654bd8b57838d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d752438f20d24ac0894654bd8b57838d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d752438f20d24ac0894654bd8b57838d.jpg", "file_size": 19244, "is_delete": false, "file_type": 1, "original_file_name": "LZ1273#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d752438f20d24ac0894654bd8b57838d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d752438f20d24ac0894654bd8b57838d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d752438f20d24ac0894654bd8b57838d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d752438f20d24ac0894654bd8b57838d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d752438f20d24ac0894654bd8b57838d.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oT_-lZ1OQ-yLNUlj8b-NtALrthU=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.688161+00 2025-12-09 10:15:07.688165+00 10492 HT042FWE#VS-D3 SPMX-20240815305660 \N \N \N 1 \N [{"file_id": "73c05f16-022f-47e0-b6b6-d6ad3dd3c8d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcaa35008a10433c95498b8ae418dcd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcaa35008a10433c95498b8ae418dcd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcaa35008a10433c95498b8ae418dcd9.jpg", "file_size": 21980, "is_delete": false, "file_type": 1, "original_file_name": "HT042FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa35008a10433c95498b8ae418dcd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa35008a10433c95498b8ae418dcd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa35008a10433c95498b8ae418dcd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcaa35008a10433c95498b8ae418dcd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcaa35008a10433c95498b8ae418dcd9.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1-rw0txj0N91f-o0U1-0hJA6Sg=", "createTime": "2024-08-15 14:50:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.689831+00 2025-12-09 10:15:07.689836+00 10493 LJ9931#2XL黑 SPMX-20240815305679 \N \N \N 1 \N [{"file_id": "e783b56e-74e0-4660-9a70-e54ac4643ed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63254795a9674db0a63fa92b1347b248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63254795a9674db0a63fa92b1347b248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63254795a9674db0a63fa92b1347b248.jpg", "file_size": 15767, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63254795a9674db0a63fa92b1347b248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63254795a9674db0a63fa92b1347b248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63254795a9674db0a63fa92b1347b248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63254795a9674db0a63fa92b1347b248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63254795a9674db0a63fa92b1347b248.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ESh-3zGOGdpx6d6n3QElkqmmhDw=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.691532+00 2025-12-09 10:15:07.691536+00 10494 LZ1273#背心款4号色 SPMX-20240815305668 \N \N \N 1 \N [{"file_id": "cf3cbd43-1c56-4751-b310-067e57b7d928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9889daa7b64479e8cc25a8aac2b9192.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9889daa7b64479e8cc25a8aac2b9192.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9889daa7b64479e8cc25a8aac2b9192.jpg", "file_size": 19846, "is_delete": false, "file_type": 1, "original_file_name": "LZ1273#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9889daa7b64479e8cc25a8aac2b9192.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9889daa7b64479e8cc25a8aac2b9192.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9889daa7b64479e8cc25a8aac2b9192.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9889daa7b64479e8cc25a8aac2b9192.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9889daa7b64479e8cc25a8aac2b9192.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGOnW67-wwIHH3bZcMW3zRb6UBc=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:07.693242+00 2025-12-09 10:15:07.693247+00 10495 8120#-彩兰WJC22 SPMX-20240815305673 \N \N \N 1 \N [{"file_id": "223872b9-52cf-4454-8d91-50cb11e00b4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89c553b6943f4b25b35ec55c07c0b469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89c553b6943f4b25b35ec55c07c0b469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89c553b6943f4b25b35ec55c07c0b469.jpg", "file_size": 25975, "is_delete": false, "file_type": 1, "original_file_name": "8120#-彩兰WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c553b6943f4b25b35ec55c07c0b469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c553b6943f4b25b35ec55c07c0b469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c553b6943f4b25b35ec55c07c0b469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89c553b6943f4b25b35ec55c07c0b469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89c553b6943f4b25b35ec55c07c0b469.jpg?e=1765361706&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-5NP1uCVL-ntrqKXOMRuq-uigU=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.446239+00 2025-12-09 10:15:08.446251+00 10496 FHXGPK-批布033-1 SPMX-20240815305676 \N \N \N 1 \N [{"file_id": "97e136dd-ce11-460f-8a26-e21f4a81d575", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e2331b31294a7fa75f7c46a96b8039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e2331b31294a7fa75f7c46a96b8039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e2331b31294a7fa75f7c46a96b8039.jpg", "file_size": 45666, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布033-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e2331b31294a7fa75f7c46a96b8039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e2331b31294a7fa75f7c46a96b8039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e2331b31294a7fa75f7c46a96b8039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e2331b31294a7fa75f7c46a96b8039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e2331b31294a7fa75f7c46a96b8039.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66YYrC4jiF_-Fp5B3S8uxMuq2Ds=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.449358+00 2025-12-09 10:15:08.449368+00 10497 LZ1273#背心款5号色 SPMX-20240815305680 \N \N \N 1 \N [{"file_id": "7e2ee963-71d4-4cbc-9bec-37d230b45eac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd18a22c90d64bac961cb1494db5f30a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd18a22c90d64bac961cb1494db5f30a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd18a22c90d64bac961cb1494db5f30a.jpg", "file_size": 19245, "is_delete": false, "file_type": 1, "original_file_name": "LZ1273#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18a22c90d64bac961cb1494db5f30a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18a22c90d64bac961cb1494db5f30a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd18a22c90d64bac961cb1494db5f30a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd18a22c90d64bac961cb1494db5f30a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd18a22c90d64bac961cb1494db5f30a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jhOZlHdc0BimfPymY13zyChXEEo=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.453355+00 2025-12-09 10:15:08.453361+00 10499 C382A#彩兰 SPMX-20240815305678 \N \N \N 1 \N [{"file_id": "8a92750c-25a6-456e-af46-8414711f6111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2b527d1d4554b4292a81b5f51230cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2b527d1d4554b4292a81b5f51230cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2b527d1d4554b4292a81b5f51230cde.jpg", "file_size": 56081, "is_delete": false, "file_type": 1, "original_file_name": "C382A#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b527d1d4554b4292a81b5f51230cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b527d1d4554b4292a81b5f51230cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b527d1d4554b4292a81b5f51230cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2b527d1d4554b4292a81b5f51230cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2b527d1d4554b4292a81b5f51230cde.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iA4HlhZ5T5JhLRdybnqahKmA4oU=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.455115+00 2025-12-09 10:15:08.45512+00 10500 0003-61FWF#V5曲线 SPMX-20240815305677 \N \N \N 1 \N [{"file_id": "e666c7fa-1ee3-48bf-9b42-5597962587c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2050fbae54d46c9ae9f30c944f1dac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2050fbae54d46c9ae9f30c944f1dac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2050fbae54d46c9ae9f30c944f1dac1.jpg", "file_size": 12944, "is_delete": false, "file_type": 1, "original_file_name": "0003-61FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2050fbae54d46c9ae9f30c944f1dac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2050fbae54d46c9ae9f30c944f1dac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2050fbae54d46c9ae9f30c944f1dac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2050fbae54d46c9ae9f30c944f1dac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2050fbae54d46c9ae9f30c944f1dac1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXJJhGPBHj7dcsp_RQawqaP4kqg=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.457062+00 2025-12-09 10:15:08.457067+00 10501 LJ9931#2XL酒红 SPMX-20240815305671 \N \N \N 1 \N [{"file_id": "b29404c0-ef37-4a9c-b7b7-86af2298a8ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfc22ccd48b482ca65f2eec154c83cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfc22ccd48b482ca65f2eec154c83cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfc22ccd48b482ca65f2eec154c83cb.jpg", "file_size": 14741, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#2XL酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc22ccd48b482ca65f2eec154c83cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc22ccd48b482ca65f2eec154c83cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc22ccd48b482ca65f2eec154c83cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfc22ccd48b482ca65f2eec154c83cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfc22ccd48b482ca65f2eec154c83cb.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tw_c0_izwZAyln1GM-oz1gKLF7s=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.459094+00 2025-12-09 10:15:08.459099+00 10502 DL30567#彩兰2XL SPMX-20240815305675 \N \N \N 1 \N [{"file_id": "654e9f31-ea62-435a-8b93-bd710962a7b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d9e298b36f3462285d46fe6b1c020e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d9e298b36f3462285d46fe6b1c020e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d9e298b36f3462285d46fe6b1c020e9.jpg", "file_size": 18665, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9e298b36f3462285d46fe6b1c020e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9e298b36f3462285d46fe6b1c020e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9e298b36f3462285d46fe6b1c020e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d9e298b36f3462285d46fe6b1c020e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d9e298b36f3462285d46fe6b1c020e9.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVJ6nFRry5y_BOj2VJeX8HUxny4=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.460998+00 2025-12-09 10:15:08.461003+00 10503 JTSS189FW#VS-D3 SPMX-20240815305669 \N \N \N 1 \N [{"file_id": "4581b921-54eb-4ada-8b39-edab84f42bde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67b7716f8cdd4575afab5d2982b6f084.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67b7716f8cdd4575afab5d2982b6f084.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67b7716f8cdd4575afab5d2982b6f084.jpg", "file_size": 17130, "is_delete": false, "file_type": 1, "original_file_name": "JTSS189FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b7716f8cdd4575afab5d2982b6f084.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b7716f8cdd4575afab5d2982b6f084.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b7716f8cdd4575afab5d2982b6f084.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67b7716f8cdd4575afab5d2982b6f084.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67b7716f8cdd4575afab5d2982b6f084.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:db1-JcwuqdLERdcinTJBiZqfs_A=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.463028+00 2025-12-09 10:15:08.463034+00 10504 23-2116#A5-领子4XL SPMX-20240815305672 \N \N \N 1 \N [{"file_id": "b7320adc-8301-4590-a5b1-770ae5ccc460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a89d9b300b394075a42f03eb1f734c68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a89d9b300b394075a42f03eb1f734c68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a89d9b300b394075a42f03eb1f734c68.jpg", "file_size": 11627, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89d9b300b394075a42f03eb1f734c68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89d9b300b394075a42f03eb1f734c68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89d9b300b394075a42f03eb1f734c68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a89d9b300b394075a42f03eb1f734c68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a89d9b300b394075a42f03eb1f734c68.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TeS81nwwpnMeNh3wUUzHxxsHBa0=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.464999+00 2025-12-09 10:15:08.465003+00 10505 11-6G22#白色L SPMX-20240815305674 \N \N \N 1 \N [{"file_id": "9db749b9-e53e-44c8-b867-d0ac58b1a95c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bf5b0d0025147689552a2365747544a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bf5b0d0025147689552a2365747544a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bf5b0d0025147689552a2365747544a.jpg", "file_size": 17343, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf5b0d0025147689552a2365747544a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf5b0d0025147689552a2365747544a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf5b0d0025147689552a2365747544a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bf5b0d0025147689552a2365747544a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bf5b0d0025147689552a2365747544a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kN9MsaDpPZD57Qo98J3VEqTitXk=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.466689+00 2025-12-09 10:15:08.466693+00 10506 0003-62FWF#V5曲线 SPMX-20240815305689 \N \N \N 1 \N [{"file_id": "cd706e5d-8c26-456e-ae27-1f6c407980ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d770aeccfa164af68c5db6ff0586c7e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d770aeccfa164af68c5db6ff0586c7e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d770aeccfa164af68c5db6ff0586c7e0.jpg", "file_size": 16794, "is_delete": false, "file_type": 1, "original_file_name": "0003-62FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770aeccfa164af68c5db6ff0586c7e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770aeccfa164af68c5db6ff0586c7e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770aeccfa164af68c5db6ff0586c7e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d770aeccfa164af68c5db6ff0586c7e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d770aeccfa164af68c5db6ff0586c7e0.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fOtApp_LoKYOuokJFXp-nJVcOhk=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.4684+00 2025-12-09 10:15:08.468405+00 10507 8120#-玫红WJC22 SPMX-20240815305684 \N \N \N 1 \N [{"file_id": "2a570b2c-5f95-49d6-99c3-36361da7de20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fe8deb105f64567bf7214d78a3357f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fe8deb105f64567bf7214d78a3357f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fe8deb105f64567bf7214d78a3357f3.jpg", "file_size": 21670, "is_delete": false, "file_type": 1, "original_file_name": "8120#-玫红WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe8deb105f64567bf7214d78a3357f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe8deb105f64567bf7214d78a3357f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe8deb105f64567bf7214d78a3357f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fe8deb105f64567bf7214d78a3357f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fe8deb105f64567bf7214d78a3357f3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lW7rE3sEUzkxltJS3F8cdETKuPU=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.47012+00 2025-12-09 10:15:08.470125+00 10508 FHXGPK-批布033-2 SPMX-20240815305687 \N \N \N 1 \N [{"file_id": "d96c0f55-0d15-4e3a-bc05-ddad33a85eac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1665de22c61349028d218bd4d3b5e9fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1665de22c61349028d218bd4d3b5e9fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1665de22c61349028d218bd4d3b5e9fd.jpg", "file_size": 54890, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布033-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1665de22c61349028d218bd4d3b5e9fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1665de22c61349028d218bd4d3b5e9fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1665de22c61349028d218bd4d3b5e9fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1665de22c61349028d218bd4d3b5e9fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1665de22c61349028d218bd4d3b5e9fd.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OX5ORHhZp4A_GLJCEPWDIhmGwn0=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.472051+00 2025-12-09 10:15:08.472055+00 10509 HT044FWE#VS-D3 SPMX-20240815305688 \N \N \N 1 \N [{"file_id": "c20c1096-d93b-4f30-8a99-2998197deebe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b20775d7d4c4a5784e26b6e921277fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b20775d7d4c4a5784e26b6e921277fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b20775d7d4c4a5784e26b6e921277fe.jpg", "file_size": 17528, "is_delete": false, "file_type": 1, "original_file_name": "HT044FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b20775d7d4c4a5784e26b6e921277fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b20775d7d4c4a5784e26b6e921277fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b20775d7d4c4a5784e26b6e921277fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b20775d7d4c4a5784e26b6e921277fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b20775d7d4c4a5784e26b6e921277fe.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1MDiJxZd3CoHwykPGcM8YCTqjI=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.473745+00 2025-12-09 10:15:08.47375+00 10510 JTSS190FW#VS-D3 SPMX-20240815305682 \N \N \N 1 \N [{"file_id": "4f06a49e-f01e-4d84-aa70-45ea2fc0dd6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6eb5588491e4bce8eb06213de0efa70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6eb5588491e4bce8eb06213de0efa70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6eb5588491e4bce8eb06213de0efa70.jpg", "file_size": 18959, "is_delete": false, "file_type": 1, "original_file_name": "JTSS190FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb5588491e4bce8eb06213de0efa70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb5588491e4bce8eb06213de0efa70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eb5588491e4bce8eb06213de0efa70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6eb5588491e4bce8eb06213de0efa70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6eb5588491e4bce8eb06213de0efa70.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAlgSeEoj8bpnrwENAPvhDnzB44=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.475441+00 2025-12-09 10:15:08.475445+00 10511 C382A#橙色 SPMX-20240815305686 \N \N \N 1 \N [{"file_id": "58cbfc89-5cfc-41c8-9fcb-88007aba1ce3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01a994454a824fad9d8a11d26b0458f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01a994454a824fad9d8a11d26b0458f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01a994454a824fad9d8a11d26b0458f6.jpg", "file_size": 55451, "is_delete": false, "file_type": 1, "original_file_name": "C382A#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a994454a824fad9d8a11d26b0458f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a994454a824fad9d8a11d26b0458f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a994454a824fad9d8a11d26b0458f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01a994454a824fad9d8a11d26b0458f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01a994454a824fad9d8a11d26b0458f6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kXmUdD593oeIayjeEGl_lSTJlo=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.477151+00 2025-12-09 10:15:08.477156+00 10512 HT044# SPMX-20240815305681 \N \N \N 1 \N [{"file_id": "f97f5b26-4356-466d-90ea-f1ba3fae0b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d890605bfe2488d87ef1390ea2770f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d890605bfe2488d87ef1390ea2770f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d890605bfe2488d87ef1390ea2770f7.jpg", "file_size": 9615, "is_delete": false, "file_type": 1, "original_file_name": "HT044#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d890605bfe2488d87ef1390ea2770f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d890605bfe2488d87ef1390ea2770f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d890605bfe2488d87ef1390ea2770f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d890605bfe2488d87ef1390ea2770f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d890605bfe2488d87ef1390ea2770f7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Muw0j7GomN0eYiUwxrnlRtXHBE=", "createTime": "2024-08-15 14:50:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.479029+00 2025-12-09 10:15:08.479034+00 10513 23-2116#A6-3XL SPMX-20240815305683 \N \N \N 1 \N [{"file_id": "fb8d980c-aea7-448f-862a-8f385dca9e14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82e09ab9627444c7a9e4da983e77afa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82e09ab9627444c7a9e4da983e77afa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82e09ab9627444c7a9e4da983e77afa6.jpg", "file_size": 18278, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e09ab9627444c7a9e4da983e77afa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e09ab9627444c7a9e4da983e77afa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e09ab9627444c7a9e4da983e77afa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82e09ab9627444c7a9e4da983e77afa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82e09ab9627444c7a9e4da983e77afa6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sE3McQGEzIum4lGaKWsgGe2Xb5Y=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.481315+00 2025-12-09 10:15:08.48132+00 10514 11-6G22#白色M SPMX-20240815305685 \N \N \N 1 \N [{"file_id": "8fadb7ff-5e0e-4ea5-894f-7df2249a219b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg", "file_size": 17787, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6e0cbaa904a4a71b8bd4d54f17eb64b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyRa6Be9q1antq9ieS1StiJ3GkM=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.483304+00 2025-12-09 10:15:08.483308+00 10515 DL30567#彩兰L SPMX-20240815305690 \N \N \N 1 \N [{"file_id": "db7d904c-6cfb-4bb0-b322-328e4bc69a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d089311d458f482090ba97c68254c751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d089311d458f482090ba97c68254c751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d089311d458f482090ba97c68254c751.jpg", "file_size": 17968, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d089311d458f482090ba97c68254c751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d089311d458f482090ba97c68254c751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d089311d458f482090ba97c68254c751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d089311d458f482090ba97c68254c751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d089311d458f482090ba97c68254c751.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dK68MSj5qkaLtQjTiUnvpW4UoMc=", "createTime": "2024-08-15 14:50:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.485335+00 2025-12-09 10:15:08.48534+00 10516 LZ1274#背心款1号色 SPMX-20240815305692 \N \N \N 1 \N [{"file_id": "7a0e46fe-3c13-4767-aaaf-7bb75e0fea97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a3b76bc85b54cd19bb228e867e2eb6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a3b76bc85b54cd19bb228e867e2eb6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a3b76bc85b54cd19bb228e867e2eb6b.jpg", "file_size": 13496, "is_delete": false, "file_type": 1, "original_file_name": "LZ1274#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3b76bc85b54cd19bb228e867e2eb6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3b76bc85b54cd19bb228e867e2eb6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3b76bc85b54cd19bb228e867e2eb6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a3b76bc85b54cd19bb228e867e2eb6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a3b76bc85b54cd19bb228e867e2eb6b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xBSGePBGDsn-drLMByf6UINMeMY=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.487281+00 2025-12-09 10:15:08.487285+00 10517 0003-63FWF#浅绿色 SPMX-20240815305695 \N \N \N 1 \N [{"file_id": "73adda91-824a-45fd-979e-38277a1628d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "239bb922ece7441db427fa9da1c2680d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "239bb922ece7441db427fa9da1c2680d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "239bb922ece7441db427fa9da1c2680d.jpg", "file_size": 17192, "is_delete": false, "file_type": 1, "original_file_name": "0003-63FWF#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239bb922ece7441db427fa9da1c2680d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239bb922ece7441db427fa9da1c2680d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239bb922ece7441db427fa9da1c2680d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/239bb922ece7441db427fa9da1c2680d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/239bb922ece7441db427fa9da1c2680d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhwu9ZkRlCnRH4p2AzIbWY9EPeQ=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.489231+00 2025-12-09 10:15:08.489236+00 10518 FHXGPK-批布033-3 SPMX-20240815305694 \N \N \N 1 \N [{"file_id": "410e08b4-3e1d-4923-beae-e02ece4841ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "720834ddd7b446bfa2ef95f0e730741f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "720834ddd7b446bfa2ef95f0e730741f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "720834ddd7b446bfa2ef95f0e730741f.jpg", "file_size": 61366, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布033-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720834ddd7b446bfa2ef95f0e730741f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720834ddd7b446bfa2ef95f0e730741f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/720834ddd7b446bfa2ef95f0e730741f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/720834ddd7b446bfa2ef95f0e730741f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/720834ddd7b446bfa2ef95f0e730741f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEMjUwAvV_JKjW-VMiIBFIF_pgM=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.491197+00 2025-12-09 10:15:08.491202+00 10519 HT045# SPMX-20240815305699 \N \N \N 1 \N [{"file_id": "de43f4f4-8d52-43bf-82f3-b6091f2b18f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "398d9e8f6a9c4879a007e777e5b6a0ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "398d9e8f6a9c4879a007e777e5b6a0ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "398d9e8f6a9c4879a007e777e5b6a0ff.jpg", "file_size": 7077, "is_delete": false, "file_type": 1, "original_file_name": "HT045#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398d9e8f6a9c4879a007e777e5b6a0ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398d9e8f6a9c4879a007e777e5b6a0ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398d9e8f6a9c4879a007e777e5b6a0ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/398d9e8f6a9c4879a007e777e5b6a0ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/398d9e8f6a9c4879a007e777e5b6a0ff.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQuYESr5SngTgIAXkzwys6lxTiQ=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.492871+00 2025-12-09 10:15:08.492875+00 10520 LJ9931#3XL白 SPMX-20240815305691 \N \N \N 1 \N [{"file_id": "75fc5ae0-8457-42c9-9fbb-cfa76be29c29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e759ec6ef12e4fd7b74f739ae9e77628.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e759ec6ef12e4fd7b74f739ae9e77628.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e759ec6ef12e4fd7b74f739ae9e77628.jpg", "file_size": 14575, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#3XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e759ec6ef12e4fd7b74f739ae9e77628.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e759ec6ef12e4fd7b74f739ae9e77628.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e759ec6ef12e4fd7b74f739ae9e77628.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e759ec6ef12e4fd7b74f739ae9e77628.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e759ec6ef12e4fd7b74f739ae9e77628.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNeH_z66lrOpPmSUHxQ8bqAgWuk=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.494774+00 2025-12-09 10:15:08.49478+00 10521 23-2116#A6-4XL SPMX-20240815305693 \N \N \N 1 \N [{"file_id": "5dcd7dcb-56d2-40be-afb2-6aa587b8750d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba35b3719114d8e9b25d51be622b19f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba35b3719114d8e9b25d51be622b19f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba35b3719114d8e9b25d51be622b19f.jpg", "file_size": 17360, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba35b3719114d8e9b25d51be622b19f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba35b3719114d8e9b25d51be622b19f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba35b3719114d8e9b25d51be622b19f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba35b3719114d8e9b25d51be622b19f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba35b3719114d8e9b25d51be622b19f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vn-svNhf0lqPATuJS8NeIbX1F2w=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.496543+00 2025-12-09 10:15:08.496547+00 10522 8120#-白色WJC22 SPMX-20240815305697 \N \N \N 1 \N [{"file_id": "3bdc9003-a3bd-4c86-ba7a-2d5ccb3466ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9043c349ea394b14ab81a5faf4ada64d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9043c349ea394b14ab81a5faf4ada64d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9043c349ea394b14ab81a5faf4ada64d.jpg", "file_size": 25928, "is_delete": false, "file_type": 1, "original_file_name": "8120#-白色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9043c349ea394b14ab81a5faf4ada64d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9043c349ea394b14ab81a5faf4ada64d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9043c349ea394b14ab81a5faf4ada64d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9043c349ea394b14ab81a5faf4ada64d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9043c349ea394b14ab81a5faf4ada64d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3r2tacyFd3tlDOCSjy5diSJK_Ko=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.498505+00 2025-12-09 10:15:08.498509+00 10523 JTSS191FW#VS-D3 SPMX-20240815305696 \N \N \N 1 \N [{"file_id": "ba16c5ba-f00d-4eb4-99ee-2ea3dcd91f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a45bac8ab71498293b96ccf8e526c30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a45bac8ab71498293b96ccf8e526c30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a45bac8ab71498293b96ccf8e526c30.jpg", "file_size": 15167, "is_delete": false, "file_type": 1, "original_file_name": "JTSS191FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a45bac8ab71498293b96ccf8e526c30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a45bac8ab71498293b96ccf8e526c30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a45bac8ab71498293b96ccf8e526c30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a45bac8ab71498293b96ccf8e526c30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a45bac8ab71498293b96ccf8e526c30.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dawtfYHTQDNZ_1eybf_UZfDaq-k=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.500378+00 2025-12-09 10:15:08.500382+00 10524 11-6G22#白色S SPMX-20240815305698 \N \N \N 1 \N [{"file_id": "dacd8abd-0859-471b-9a34-720180b4047d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb195608d3b94975a42bf0cbc4f2ab25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb195608d3b94975a42bf0cbc4f2ab25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb195608d3b94975a42bf0cbc4f2ab25.jpg", "file_size": 18281, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#白色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb195608d3b94975a42bf0cbc4f2ab25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb195608d3b94975a42bf0cbc4f2ab25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb195608d3b94975a42bf0cbc4f2ab25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb195608d3b94975a42bf0cbc4f2ab25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb195608d3b94975a42bf0cbc4f2ab25.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_LZbwzTd6J4w4yiKM5d9HOTTWs=", "createTime": "2024-08-15 14:50:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.502301+00 2025-12-09 10:15:08.502306+00 10525 0003-63FWF#红色 SPMX-20240815305706 \N \N \N 1 \N [{"file_id": "add0783e-dcf4-4d17-a328-0529f85a8ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc216680d74f4165a1e032333963977e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc216680d74f4165a1e032333963977e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc216680d74f4165a1e032333963977e.jpg", "file_size": 19178, "is_delete": false, "file_type": 1, "original_file_name": "0003-63FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc216680d74f4165a1e032333963977e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc216680d74f4165a1e032333963977e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc216680d74f4165a1e032333963977e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc216680d74f4165a1e032333963977e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc216680d74f4165a1e032333963977e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8B2q5ReV-cm6DM6Bd3L7i9ACL8=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.504024+00 2025-12-09 10:15:08.504029+00 10526 23-2116#A6-领子3XL SPMX-20240815305702 \N \N \N 1 \N [{"file_id": "3004ddfc-87af-4713-8d27-3b00df5601d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "792a9e5205fa49a1bbb4a94681c36048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "792a9e5205fa49a1bbb4a94681c36048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "792a9e5205fa49a1bbb4a94681c36048.jpg", "file_size": 11558, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792a9e5205fa49a1bbb4a94681c36048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792a9e5205fa49a1bbb4a94681c36048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792a9e5205fa49a1bbb4a94681c36048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/792a9e5205fa49a1bbb4a94681c36048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/792a9e5205fa49a1bbb4a94681c36048.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_qpdYDssXEOkkM25hb0ImYiMMw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.505745+00 2025-12-09 10:15:08.505761+00 10527 FHXGPK-批布033-4 SPMX-20240815305705 \N \N \N 1 \N [{"file_id": "94ef560b-ec0b-4b98-a3a1-ddee82d79d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15a69fa8081643d8a72757e95801724d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15a69fa8081643d8a72757e95801724d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15a69fa8081643d8a72757e95801724d.jpg", "file_size": 58788, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布033-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a69fa8081643d8a72757e95801724d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a69fa8081643d8a72757e95801724d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a69fa8081643d8a72757e95801724d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15a69fa8081643d8a72757e95801724d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15a69fa8081643d8a72757e95801724d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMfDswCOt02cAcCrWoGSbcFVl98=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.5075+00 2025-12-09 10:15:08.507505+00 10528 8120#-绿色WJC22 SPMX-20240815305707 \N \N \N 1 \N [{"file_id": "06a6a01c-63cb-4df1-bac0-b112acb66fba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef7fab15cea47c0ab0997704a112bb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef7fab15cea47c0ab0997704a112bb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef7fab15cea47c0ab0997704a112bb8.jpg", "file_size": 23645, "is_delete": false, "file_type": 1, "original_file_name": "8120#-绿色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef7fab15cea47c0ab0997704a112bb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef7fab15cea47c0ab0997704a112bb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef7fab15cea47c0ab0997704a112bb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef7fab15cea47c0ab0997704a112bb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef7fab15cea47c0ab0997704a112bb8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dM4zMB5o_E_v9CnM5l6fl22vX1g=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.509427+00 2025-12-09 10:15:08.509431+00 10529 LJ9931#L深蓝 SPMX-20240815305710 \N \N \N 1 \N [{"file_id": "85ca2246-3b7c-4070-ab86-b01bf5c75533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "144dba7d9dc14f57af6c68073d6794ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "144dba7d9dc14f57af6c68073d6794ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "144dba7d9dc14f57af6c68073d6794ed.jpg", "file_size": 15009, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144dba7d9dc14f57af6c68073d6794ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144dba7d9dc14f57af6c68073d6794ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144dba7d9dc14f57af6c68073d6794ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/144dba7d9dc14f57af6c68073d6794ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/144dba7d9dc14f57af6c68073d6794ed.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lRnowExsX1uVif2qw2xuxPePOw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.511258+00 2025-12-09 10:15:08.511263+00 10530 JTSS192FW# SPMX-20240815305711 \N \N \N 1 \N [{"file_id": "dc8a934c-af73-4f51-9ea8-e4d2c04b9a11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e3ba343287949178392997cd529d58f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e3ba343287949178392997cd529d58f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e3ba343287949178392997cd529d58f.jpg", "file_size": 18677, "is_delete": false, "file_type": 1, "original_file_name": "JTSS192FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3ba343287949178392997cd529d58f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3ba343287949178392997cd529d58f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3ba343287949178392997cd529d58f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e3ba343287949178392997cd529d58f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e3ba343287949178392997cd529d58f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAR9gO1urgSpNGSAjo-TmxgmIvc=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.512966+00 2025-12-09 10:15:08.512971+00 10531 DL30567#浅绿色2XL SPMX-20240815305709 \N \N \N 1 \N [{"file_id": "18a3f45c-89c1-4746-a10c-1fa05cf6348d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cded44d3074140b280d192b6f1ac1192.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cded44d3074140b280d192b6f1ac1192.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cded44d3074140b280d192b6f1ac1192.jpg", "file_size": 18556, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#浅绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cded44d3074140b280d192b6f1ac1192.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cded44d3074140b280d192b6f1ac1192.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cded44d3074140b280d192b6f1ac1192.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cded44d3074140b280d192b6f1ac1192.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cded44d3074140b280d192b6f1ac1192.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOGG6L3eAmMTYyUxWrMSgdZXFLQ=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.514695+00 2025-12-09 10:15:08.5147+00 10532 LZ1274#背心款2号色 SPMX-20240815305704 \N \N \N 1 \N [{"file_id": "3b1c2937-79b0-4170-b2dc-8d91513a4b59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea19983934a4482aaa68587531891dca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea19983934a4482aaa68587531891dca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea19983934a4482aaa68587531891dca.jpg", "file_size": 15233, "is_delete": false, "file_type": 1, "original_file_name": "LZ1274#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea19983934a4482aaa68587531891dca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea19983934a4482aaa68587531891dca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea19983934a4482aaa68587531891dca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea19983934a4482aaa68587531891dca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea19983934a4482aaa68587531891dca.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-q1QnYNpKcoLgnyqYIXRcS7Ciw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.516611+00 2025-12-09 10:15:08.516616+00 10533 23-2116#A6-领子4XL SPMX-20240815305713 \N \N \N 1 \N [{"file_id": "04a92f19-2494-4332-a0ba-7eb93d3993e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4520addf85342cf8ce629cc95849f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4520addf85342cf8ce629cc95849f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4520addf85342cf8ce629cc95849f43.jpg", "file_size": 11681, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4520addf85342cf8ce629cc95849f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4520addf85342cf8ce629cc95849f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4520addf85342cf8ce629cc95849f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4520addf85342cf8ce629cc95849f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4520addf85342cf8ce629cc95849f43.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZMeabmnul0sASnBfPhmZODH4pY=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.518514+00 2025-12-09 10:15:08.518518+00 10534 HT045FWE#VS-D3 SPMX-20240815305708 \N \N \N 1 \N [{"file_id": "bcda4e6d-315d-4e20-a137-6527ac7b0434", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "100bf4b7b08f48e19d80895f8c0646ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "100bf4b7b08f48e19d80895f8c0646ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "100bf4b7b08f48e19d80895f8c0646ce.jpg", "file_size": 7498, "is_delete": false, "file_type": 1, "original_file_name": "HT045FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100bf4b7b08f48e19d80895f8c0646ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100bf4b7b08f48e19d80895f8c0646ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/100bf4b7b08f48e19d80895f8c0646ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/100bf4b7b08f48e19d80895f8c0646ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/100bf4b7b08f48e19d80895f8c0646ce.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LL8pUTJYFIFj8lEnMcp6-h0tUPw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.52044+00 2025-12-09 10:15:08.520445+00 10535 C382A#玫红 SPMX-20240815305703 \N \N \N 1 \N [{"file_id": "6b7b009f-5f8e-46c5-98df-f29a27e9f00d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7eb1abde92649cb8980282f2eceb7cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7eb1abde92649cb8980282f2eceb7cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7eb1abde92649cb8980282f2eceb7cc.jpg", "file_size": 51038, "is_delete": false, "file_type": 1, "original_file_name": "C382A#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb1abde92649cb8980282f2eceb7cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb1abde92649cb8980282f2eceb7cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7eb1abde92649cb8980282f2eceb7cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7eb1abde92649cb8980282f2eceb7cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7eb1abde92649cb8980282f2eceb7cc.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDJcozKDDIz_Q1tvicXkU0iPrEQ=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.522445+00 2025-12-09 10:15:08.522449+00 10536 11-6G22#白色XL SPMX-20240815305712 \N \N \N 1 \N [{"file_id": "ba673722-3e86-4589-ac72-85c0da3e2136", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f31425a4dd74ea1b3bb3c538e8d52f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f31425a4dd74ea1b3bb3c538e8d52f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f31425a4dd74ea1b3bb3c538e8d52f5.jpg", "file_size": 17272, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f31425a4dd74ea1b3bb3c538e8d52f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f31425a4dd74ea1b3bb3c538e8d52f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f31425a4dd74ea1b3bb3c538e8d52f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f31425a4dd74ea1b3bb3c538e8d52f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f31425a4dd74ea1b3bb3c538e8d52f5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uhg6gkhbJA29O1ym9_7EvMuitOw=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.52416+00 2025-12-09 10:15:08.524165+00 10537 DL30567#彩兰XL SPMX-20240815305700 \N \N \N 1 \N [{"file_id": "2fc62e01-b139-4e11-a766-7136abd506c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e8b230baf314e9cbeeb49829ff5785e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e8b230baf314e9cbeeb49829ff5785e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e8b230baf314e9cbeeb49829ff5785e.jpg", "file_size": 18688, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8b230baf314e9cbeeb49829ff5785e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8b230baf314e9cbeeb49829ff5785e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8b230baf314e9cbeeb49829ff5785e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e8b230baf314e9cbeeb49829ff5785e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e8b230baf314e9cbeeb49829ff5785e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IajxMIPHz0k5RW1X32useJnirz4=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.525889+00 2025-12-09 10:15:08.525893+00 10538 LJ9931#4XL白 SPMX-20240815305701 \N \N \N 1 \N [{"file_id": "4657c86f-0c73-4697-8896-61f31dd619ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a9684fe5bd46c6ac5479285f354d8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a9684fe5bd46c6ac5479285f354d8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a9684fe5bd46c6ac5479285f354d8c.jpg", "file_size": 13830, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#4XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a9684fe5bd46c6ac5479285f354d8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a9684fe5bd46c6ac5479285f354d8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a9684fe5bd46c6ac5479285f354d8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a9684fe5bd46c6ac5479285f354d8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a9684fe5bd46c6ac5479285f354d8c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQXt-UAhZjO4EvT-9UZ0L23b6RM=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.527588+00 2025-12-09 10:15:08.527592+00 10539 0003-63FWF#蓝色 SPMX-20240815305717 \N \N \N 1 \N [{"file_id": "d5d9348a-4fe8-4e69-aac1-1f3eb30ffbbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35247968c2ae413c811a7c769949c04c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35247968c2ae413c811a7c769949c04c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35247968c2ae413c811a7c769949c04c.jpg", "file_size": 21051, "is_delete": false, "file_type": 1, "original_file_name": "0003-63FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35247968c2ae413c811a7c769949c04c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35247968c2ae413c811a7c769949c04c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35247968c2ae413c811a7c769949c04c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35247968c2ae413c811a7c769949c04c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35247968c2ae413c811a7c769949c04c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pFXDyDK_Tb90R0SLY0JK5wkk_SY=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.52945+00 2025-12-09 10:15:08.529454+00 10540 LJ9931#L灰 SPMX-20240815305722 \N \N \N 1 \N [{"file_id": "6bda99fe-5813-4b0b-86b1-8de5db1e1981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fb314ab1cc54b5eb15f898780e6055a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fb314ab1cc54b5eb15f898780e6055a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fb314ab1cc54b5eb15f898780e6055a.jpg", "file_size": 14068, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb314ab1cc54b5eb15f898780e6055a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb314ab1cc54b5eb15f898780e6055a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb314ab1cc54b5eb15f898780e6055a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fb314ab1cc54b5eb15f898780e6055a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fb314ab1cc54b5eb15f898780e6055a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cwC5mM5ieiSmlKyWJsGm8-eNWU=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.531163+00 2025-12-09 10:15:08.531168+00 10541 FHXGPK-批布033-5 SPMX-20240815305714 \N \N \N 1 \N [{"file_id": "edc78184-6a45-457f-a613-82568c10ee15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb2c1ba2747e4bfc92b9354d89de6770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb2c1ba2747e4bfc92b9354d89de6770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb2c1ba2747e4bfc92b9354d89de6770.jpg", "file_size": 50142, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布033-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2c1ba2747e4bfc92b9354d89de6770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2c1ba2747e4bfc92b9354d89de6770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2c1ba2747e4bfc92b9354d89de6770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb2c1ba2747e4bfc92b9354d89de6770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb2c1ba2747e4bfc92b9354d89de6770.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuOWuC2nG65mQexbUYt4Cs8g8z8=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.532993+00 2025-12-09 10:15:08.532998+00 10542 11-6G22#粉色L SPMX-20240815305723 \N \N \N 1 \N [{"file_id": "710f098b-2b31-4029-b39f-a266cc71f864", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f704942801d43c4871d044283c6fafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f704942801d43c4871d044283c6fafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f704942801d43c4871d044283c6fafd.jpg", "file_size": 17336, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f704942801d43c4871d044283c6fafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f704942801d43c4871d044283c6fafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f704942801d43c4871d044283c6fafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f704942801d43c4871d044283c6fafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f704942801d43c4871d044283c6fafd.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRkbFQXN9SyQCOmC5JioXXXLJ4w=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.534833+00 2025-12-09 10:15:08.534838+00 10543 23-2116#A7-3XL SPMX-20240815305724 \N \N \N 1 \N [{"file_id": "8f102033-dffc-4dc4-b72b-3fe28fea3774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35ee2c7f228746dbbf53a6373d06244d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35ee2c7f228746dbbf53a6373d06244d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35ee2c7f228746dbbf53a6373d06244d.jpg", "file_size": 17926, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ee2c7f228746dbbf53a6373d06244d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ee2c7f228746dbbf53a6373d06244d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ee2c7f228746dbbf53a6373d06244d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35ee2c7f228746dbbf53a6373d06244d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35ee2c7f228746dbbf53a6373d06244d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxz-jLldUe-dPafkxM6yNadPjvU=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.536769+00 2025-12-09 10:15:08.536774+00 10544 C382A#绿色 SPMX-20240815305716 \N \N \N 1 \N [{"file_id": "6251c8b6-4a0b-4759-87cb-7bdd2c737e3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35a8d4127af346a8949bf11a92089f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35a8d4127af346a8949bf11a92089f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35a8d4127af346a8949bf11a92089f1a.jpg", "file_size": 52549, "is_delete": false, "file_type": 1, "original_file_name": "C382A#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a8d4127af346a8949bf11a92089f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a8d4127af346a8949bf11a92089f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a8d4127af346a8949bf11a92089f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35a8d4127af346a8949bf11a92089f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35a8d4127af346a8949bf11a92089f1a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bauorAA3qWMCjul5wQCBnlAJ2sE=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.538691+00 2025-12-09 10:15:08.538696+00 10545 DL30567#浅绿色L SPMX-20240815305720 \N \N \N 1 \N [{"file_id": "df12f7d2-f7c4-4181-83f9-364568f990c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "841f33886bdf426e81b89b568f94c415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "841f33886bdf426e81b89b568f94c415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "841f33886bdf426e81b89b568f94c415.jpg", "file_size": 17749, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#浅绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f33886bdf426e81b89b568f94c415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f33886bdf426e81b89b568f94c415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f33886bdf426e81b89b568f94c415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/841f33886bdf426e81b89b568f94c415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/841f33886bdf426e81b89b568f94c415.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZ8JMmu0W6OCIaAavspXwsTloA4=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.540551+00 2025-12-09 10:15:08.540556+00 10546 LZ1274#背心款3号色 SPMX-20240815305715 \N \N \N 1 \N [{"file_id": "0cacecdf-ac11-4713-8783-077e64b6c1e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4671243ed8f34c80913c3ad59271d60f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4671243ed8f34c80913c3ad59271d60f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4671243ed8f34c80913c3ad59271d60f.jpg", "file_size": 14532, "is_delete": false, "file_type": 1, "original_file_name": "LZ1274#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4671243ed8f34c80913c3ad59271d60f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4671243ed8f34c80913c3ad59271d60f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4671243ed8f34c80913c3ad59271d60f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4671243ed8f34c80913c3ad59271d60f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4671243ed8f34c80913c3ad59271d60f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxHi_SbiM42V7QPqafVz4IXiado=", "createTime": "2024-08-15 14:50:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.542268+00 2025-12-09 10:15:08.542273+00 10547 HT046FWE#VS-D3 SPMX-20240815305718 \N \N \N 1 \N [{"file_id": "845f23c9-5082-451a-90b7-335eb877b7f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be8d194f26c4a5aa37851598a96f150.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be8d194f26c4a5aa37851598a96f150.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be8d194f26c4a5aa37851598a96f150.jpg", "file_size": 16876, "is_delete": false, "file_type": 1, "original_file_name": "HT046FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8d194f26c4a5aa37851598a96f150.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8d194f26c4a5aa37851598a96f150.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8d194f26c4a5aa37851598a96f150.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be8d194f26c4a5aa37851598a96f150.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be8d194f26c4a5aa37851598a96f150.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uaAsJcVIwSDe7VXiHcv04EI0cD4=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.543953+00 2025-12-09 10:15:08.543959+00 10548 8120#2XL SPMX-20240815305719 \N \N \N 1 \N [{"file_id": "640ba93a-fdc2-4f1f-8abe-12a0d72407c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef97cbf4b384b0d9466e7e89443db42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef97cbf4b384b0d9466e7e89443db42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef97cbf4b384b0d9466e7e89443db42.jpg", "file_size": 19851, "is_delete": false, "file_type": 1, "original_file_name": "8120#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef97cbf4b384b0d9466e7e89443db42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef97cbf4b384b0d9466e7e89443db42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef97cbf4b384b0d9466e7e89443db42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef97cbf4b384b0d9466e7e89443db42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef97cbf4b384b0d9466e7e89443db42.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9MNT9x0LrA-2ZvWJ5vDQTOTsJ8=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.545914+00 2025-12-09 10:15:08.545919+00 10549 JTSS192FW#VS-D3 SPMX-20240815305721 \N \N \N 1 \N [{"file_id": "12c834c6-89eb-485d-83a7-94a2533ab7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "660a9a8249834938813f99e367fc0a40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "660a9a8249834938813f99e367fc0a40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "660a9a8249834938813f99e367fc0a40.jpg", "file_size": 18349, "is_delete": false, "file_type": 1, "original_file_name": "JTSS192FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660a9a8249834938813f99e367fc0a40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660a9a8249834938813f99e367fc0a40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/660a9a8249834938813f99e367fc0a40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/660a9a8249834938813f99e367fc0a40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/660a9a8249834938813f99e367fc0a40.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7gC8w78NoKSRmrBXQ7wVCfkiCnU=", "createTime": "2024-08-15 14:50:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.547907+00 2025-12-09 10:15:08.547912+00 10550 FHXGPK-批布034-1 SPMX-20240815305725 \N \N \N 1 \N [{"file_id": "446278e7-3833-4451-a8d3-c19a6e04647b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c8741b12c13489b9ad23e91e38d9788.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c8741b12c13489b9ad23e91e38d9788.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c8741b12c13489b9ad23e91e38d9788.jpg", "file_size": 36252, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布034-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8741b12c13489b9ad23e91e38d9788.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8741b12c13489b9ad23e91e38d9788.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c8741b12c13489b9ad23e91e38d9788.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c8741b12c13489b9ad23e91e38d9788.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c8741b12c13489b9ad23e91e38d9788.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dT5fAZXy5qIyirnZyEbSZTUhs6U=", "createTime": "2024-08-15 14:50:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.549831+00 2025-12-09 10:15:08.549836+00 10551 DL30567#浅绿色XL SPMX-20240815305733 \N \N \N 1 \N [{"file_id": "11a98922-9259-4cb2-be2b-7370f7b663be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb043a65d02b4c5a80adc19439945c67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb043a65d02b4c5a80adc19439945c67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb043a65d02b4c5a80adc19439945c67.jpg", "file_size": 17913, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#浅绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb043a65d02b4c5a80adc19439945c67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb043a65d02b4c5a80adc19439945c67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb043a65d02b4c5a80adc19439945c67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb043a65d02b4c5a80adc19439945c67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb043a65d02b4c5a80adc19439945c67.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBLmRmPl121amydvIOWYMwVmSmA=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.551783+00 2025-12-09 10:15:08.551787+00 10552 LZ1274#背心款5号色 SPMX-20240815305737 \N \N \N 1 \N [{"file_id": "75cf4408-6cc6-4828-bfb9-8802ffc666fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e030f6aa2654d44add602c5aee351f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e030f6aa2654d44add602c5aee351f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e030f6aa2654d44add602c5aee351f6.jpg", "file_size": 14326, "is_delete": false, "file_type": 1, "original_file_name": "LZ1274#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e030f6aa2654d44add602c5aee351f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e030f6aa2654d44add602c5aee351f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e030f6aa2654d44add602c5aee351f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e030f6aa2654d44add602c5aee351f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e030f6aa2654d44add602c5aee351f6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smWWuS9F3h15pLmspVkqJQxz_vs=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.553715+00 2025-12-09 10:15:08.55372+00 10553 LZ1274#背心款4号色 SPMX-20240815305726 \N \N \N 1 \N [{"file_id": "63e0c6bd-3d85-4224-92f6-3f5c5b2573a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg", "file_size": 15734, "is_delete": false, "file_type": 1, "original_file_name": "LZ1274#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4fc66a04b6a4d7a8cafcfe21ec926fa.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:raHTiHpc9kIpt1LxfEFekiWWbo0=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.555698+00 2025-12-09 10:15:08.555702+00 10554 8120#3XL SPMX-20240815305729 \N \N \N 1 \N [{"file_id": "208344bc-9ea6-4e2d-9fd6-9f3999c029af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b494d01b3854be28f65290c23131f62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b494d01b3854be28f65290c23131f62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b494d01b3854be28f65290c23131f62.jpg", "file_size": 18288, "is_delete": false, "file_type": 1, "original_file_name": "8120#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b494d01b3854be28f65290c23131f62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b494d01b3854be28f65290c23131f62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b494d01b3854be28f65290c23131f62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b494d01b3854be28f65290c23131f62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b494d01b3854be28f65290c23131f62.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhgcVxvcbwY942G06WTpK18weeg=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.557681+00 2025-12-09 10:15:08.557685+00 10555 C382A#黑色 SPMX-20240815305735 \N \N \N 1 \N [{"file_id": "beab7ed3-19a0-4c1b-a112-ef46fb51cf9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d56592b957404d41b65c2eaa2d111887.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d56592b957404d41b65c2eaa2d111887.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d56592b957404d41b65c2eaa2d111887.jpg", "file_size": 49388, "is_delete": false, "file_type": 1, "original_file_name": "C382A#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56592b957404d41b65c2eaa2d111887.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56592b957404d41b65c2eaa2d111887.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56592b957404d41b65c2eaa2d111887.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d56592b957404d41b65c2eaa2d111887.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d56592b957404d41b65c2eaa2d111887.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCLL3ndGAEuZ0XexlioCAXP5ZQM=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.559386+00 2025-12-09 10:15:08.55939+00 10556 JTSS193FW#VS-D3 SPMX-20240815305731 \N \N \N 1 \N [{"file_id": "f1044d26-ee2a-489f-8d5c-091199cd3fc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bed79a1a6dc4960a1fbb4d77ebd4502.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bed79a1a6dc4960a1fbb4d77ebd4502.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bed79a1a6dc4960a1fbb4d77ebd4502.jpg", "file_size": 14950, "is_delete": false, "file_type": 1, "original_file_name": "JTSS193FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bed79a1a6dc4960a1fbb4d77ebd4502.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bed79a1a6dc4960a1fbb4d77ebd4502.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bed79a1a6dc4960a1fbb4d77ebd4502.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bed79a1a6dc4960a1fbb4d77ebd4502.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bed79a1a6dc4960a1fbb4d77ebd4502.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Z7taDmqxof8xQ4Ki3A5IJpgrZ4=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.561086+00 2025-12-09 10:15:08.56109+00 10557 FHXGPK-批布035-1 SPMX-20240815305736 \N \N \N 1 \N [{"file_id": "18304a21-dfe4-446f-a585-7e438bf44fd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b371644c0a7478fa335a33bc37c81cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b371644c0a7478fa335a33bc37c81cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b371644c0a7478fa335a33bc37c81cd.jpg", "file_size": 45413, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布035-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b371644c0a7478fa335a33bc37c81cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b371644c0a7478fa335a33bc37c81cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b371644c0a7478fa335a33bc37c81cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b371644c0a7478fa335a33bc37c81cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b371644c0a7478fa335a33bc37c81cd.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tru5iRhGlq2J3PZrkAgWewv3OOc=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.562828+00 2025-12-09 10:15:08.562832+00 10558 HT047FWE#VS-D3 SPMX-20240815305732 \N \N \N 1 \N [{"file_id": "350dec16-7b10-4be9-930a-a4fabe9b29c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c45f13eddd045f1922c36f653729f00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c45f13eddd045f1922c36f653729f00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c45f13eddd045f1922c36f653729f00.jpg", "file_size": 19339, "is_delete": false, "file_type": 1, "original_file_name": "HT047FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c45f13eddd045f1922c36f653729f00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c45f13eddd045f1922c36f653729f00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c45f13eddd045f1922c36f653729f00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c45f13eddd045f1922c36f653729f00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c45f13eddd045f1922c36f653729f00.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gU6UOhl5b_PqQtVHT1XsdWcNfKQ=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.564786+00 2025-12-09 10:15:08.564791+00 10559 LJ9931#L白 SPMX-20240815305730 \N \N \N 1 \N [{"file_id": "d789a9ba-d8a3-44be-a088-7fe6f92f7bd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49303aaaa5cf447aa98bd4db15f43bcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49303aaaa5cf447aa98bd4db15f43bcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49303aaaa5cf447aa98bd4db15f43bcf.jpg", "file_size": 15025, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49303aaaa5cf447aa98bd4db15f43bcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49303aaaa5cf447aa98bd4db15f43bcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49303aaaa5cf447aa98bd4db15f43bcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49303aaaa5cf447aa98bd4db15f43bcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49303aaaa5cf447aa98bd4db15f43bcf.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_GDl3im6fOomG1yEomC0e0d6Jk=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.566766+00 2025-12-09 10:15:08.56677+00 10560 11-6G22#粉色M SPMX-20240815305727 \N \N \N 1 \N [{"file_id": "106862d1-6ffa-43eb-ae37-8bf35224985c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a48760d2db404b9a9f847f44dfb9a3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a48760d2db404b9a9f847f44dfb9a3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a48760d2db404b9a9f847f44dfb9a3a6.jpg", "file_size": 18002, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48760d2db404b9a9f847f44dfb9a3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48760d2db404b9a9f847f44dfb9a3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a48760d2db404b9a9f847f44dfb9a3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a48760d2db404b9a9f847f44dfb9a3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a48760d2db404b9a9f847f44dfb9a3a6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETnEw5Qdo-eAX47XnmVU39M9orI=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.568461+00 2025-12-09 10:15:08.568466+00 10561 11-6G22#粉色S SPMX-20240815305738 \N \N \N 1 \N [{"file_id": "3805dab8-6deb-48e5-b988-38013b50bb08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b686c16aeaf4f11803a2850db810e4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b686c16aeaf4f11803a2850db810e4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b686c16aeaf4f11803a2850db810e4d.jpg", "file_size": 18190, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b686c16aeaf4f11803a2850db810e4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b686c16aeaf4f11803a2850db810e4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b686c16aeaf4f11803a2850db810e4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b686c16aeaf4f11803a2850db810e4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b686c16aeaf4f11803a2850db810e4d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1fNXNgpc3PVhQVXlCg8DgVfy5Y=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.570159+00 2025-12-09 10:15:08.570164+00 10562 23-2116#A7-4XL SPMX-20240815305734 \N \N \N 1 \N [{"file_id": "2faa912f-52a8-4ee6-97d8-bd551f2022b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44882cc480ae4cbdb9c422c18aeef2fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44882cc480ae4cbdb9c422c18aeef2fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44882cc480ae4cbdb9c422c18aeef2fe.jpg", "file_size": 16448, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44882cc480ae4cbdb9c422c18aeef2fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44882cc480ae4cbdb9c422c18aeef2fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44882cc480ae4cbdb9c422c18aeef2fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44882cc480ae4cbdb9c422c18aeef2fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44882cc480ae4cbdb9c422c18aeef2fe.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhGo9M8-4WuWj1tRF4iyENxHFSI=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.571868+00 2025-12-09 10:15:08.571873+00 10563 0003-63FWF#黑色 SPMX-20240815305739 \N \N \N 1 \N [{"file_id": "ddf96c86-6162-4193-a583-ec1ecb80ad77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2a376df3f744cb8850b81d38bc3c5af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2a376df3f744cb8850b81d38bc3c5af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2a376df3f744cb8850b81d38bc3c5af.jpg", "file_size": 21193, "is_delete": false, "file_type": 1, "original_file_name": "0003-63FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a376df3f744cb8850b81d38bc3c5af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a376df3f744cb8850b81d38bc3c5af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a376df3f744cb8850b81d38bc3c5af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2a376df3f744cb8850b81d38bc3c5af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2a376df3f744cb8850b81d38bc3c5af.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oo_cWOigDbNPvyi53efSprQ9qsI=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.57385+00 2025-12-09 10:15:08.573855+00 10564 0003-63FWF#黄色 SPMX-20240815305728 \N \N \N 1 \N [{"file_id": "a070848d-7e06-4092-adb9-b699e75a4e1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea9da9d51c884a34ba7ac411307fb3b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea9da9d51c884a34ba7ac411307fb3b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea9da9d51c884a34ba7ac411307fb3b1.jpg", "file_size": 16147, "is_delete": false, "file_type": 1, "original_file_name": "0003-63FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9da9d51c884a34ba7ac411307fb3b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9da9d51c884a34ba7ac411307fb3b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9da9d51c884a34ba7ac411307fb3b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea9da9d51c884a34ba7ac411307fb3b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea9da9d51c884a34ba7ac411307fb3b1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzqajGmLsTL5-IP7Gr2kHpoDczg=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.57585+00 2025-12-09 10:15:08.575855+00 10565 8120#4XL SPMX-20240815305740 \N \N \N 1 \N [{"file_id": "fa318b67-2f13-4b0c-a2b6-b7d81a00ee93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aef9bc459ca242a3beb59b51ca0329a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aef9bc459ca242a3beb59b51ca0329a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aef9bc459ca242a3beb59b51ca0329a1.jpg", "file_size": 17477, "is_delete": false, "file_type": 1, "original_file_name": "8120#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef9bc459ca242a3beb59b51ca0329a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef9bc459ca242a3beb59b51ca0329a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef9bc459ca242a3beb59b51ca0329a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aef9bc459ca242a3beb59b51ca0329a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aef9bc459ca242a3beb59b51ca0329a1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:356w4q97pKmIvK0ryh_V3XSqWjI=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.577547+00 2025-12-09 10:15:08.577552+00 10566 DL30567#深水红2XL SPMX-20240815305744 \N \N \N 1 \N [{"file_id": "925656eb-c0b2-4942-8e37-cad26f15f16d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg", "file_size": 17496, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#深水红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b43a0f66d9a74fbd8fcd9b4b54c4fbae.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKzEFo82bX1qb4itaJegYuJToCc=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.579262+00 2025-12-09 10:15:08.579267+00 10567 HT049# SPMX-20240815305752 \N \N \N 1 \N [{"file_id": "b8f15ed1-e138-4593-8fbd-47b7bc5266cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f95aba9ab3954cdcb5ebc680b70d2a2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f95aba9ab3954cdcb5ebc680b70d2a2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f95aba9ab3954cdcb5ebc680b70d2a2e.jpg", "file_size": 16267, "is_delete": false, "file_type": 1, "original_file_name": "HT049#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95aba9ab3954cdcb5ebc680b70d2a2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95aba9ab3954cdcb5ebc680b70d2a2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95aba9ab3954cdcb5ebc680b70d2a2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f95aba9ab3954cdcb5ebc680b70d2a2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f95aba9ab3954cdcb5ebc680b70d2a2e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQ11OUDMq232YkIGrbN9b2IH_Jk=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.581021+00 2025-12-09 10:15:08.581025+00 10568 LJ9931#L粉 SPMX-20240815305753 \N \N \N 1 \N [{"file_id": "eb11f96f-cd7d-47dd-8c8b-47d7c5595980", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95c76eed0a234e72b2a2a6abff55ca5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95c76eed0a234e72b2a2a6abff55ca5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95c76eed0a234e72b2a2a6abff55ca5b.jpg", "file_size": 14621, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c76eed0a234e72b2a2a6abff55ca5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c76eed0a234e72b2a2a6abff55ca5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c76eed0a234e72b2a2a6abff55ca5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95c76eed0a234e72b2a2a6abff55ca5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95c76eed0a234e72b2a2a6abff55ca5b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iy0vasok_kznM6FMRwK-t4xkZHA=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.582962+00 2025-12-09 10:15:08.582967+00 10569 23-2116#A7-领子3XL SPMX-20240815305745 \N \N \N 1 \N [{"file_id": "448adebc-ef7d-4091-96b3-c4a709709a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccde8b12a30a4a4fa2c97d59e1930c2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccde8b12a30a4a4fa2c97d59e1930c2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccde8b12a30a4a4fa2c97d59e1930c2c.jpg", "file_size": 11759, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccde8b12a30a4a4fa2c97d59e1930c2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccde8b12a30a4a4fa2c97d59e1930c2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccde8b12a30a4a4fa2c97d59e1930c2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccde8b12a30a4a4fa2c97d59e1930c2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccde8b12a30a4a4fa2c97d59e1930c2c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7Igc_hBvKT6QNNd6HiTWiY77-g=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.584936+00 2025-12-09 10:15:08.58494+00 10570 JTSS194FW#VS-D3 SPMX-20240815305743 \N \N \N 1 \N [{"file_id": "39572ff1-8b85-46c6-8689-7acd5319f81d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61bc233f31a1491f8ba6b74e4cbd4467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61bc233f31a1491f8ba6b74e4cbd4467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61bc233f31a1491f8ba6b74e4cbd4467.jpg", "file_size": 14621, "is_delete": false, "file_type": 1, "original_file_name": "JTSS194FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61bc233f31a1491f8ba6b74e4cbd4467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61bc233f31a1491f8ba6b74e4cbd4467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61bc233f31a1491f8ba6b74e4cbd4467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61bc233f31a1491f8ba6b74e4cbd4467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61bc233f31a1491f8ba6b74e4cbd4467.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krQ1X89xYy7atISR0RSNBt0QhC4=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.586959+00 2025-12-09 10:15:08.586963+00 10571 FHXGPK-批布036-1 SPMX-20240815305746 \N \N \N 1 \N [{"file_id": "ad8a63e2-5334-43bf-afb0-83fa242786e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7bcff5186094598922aa438a2309da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7bcff5186094598922aa438a2309da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7bcff5186094598922aa438a2309da1.jpg", "file_size": 54240, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布036-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bcff5186094598922aa438a2309da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bcff5186094598922aa438a2309da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bcff5186094598922aa438a2309da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7bcff5186094598922aa438a2309da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7bcff5186094598922aa438a2309da1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tL6N2eaJP1C8nPp0dCt5lE68gmM=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.588866+00 2025-12-09 10:15:08.588871+00 10572 0003-64FWF#飞版本 SPMX-20240815305751 \N \N \N 1 \N [{"file_id": "1df03f62-4447-4add-bbe0-e111ee45e97f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3dd2a5ff48849a8a51861cd5b57589f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3dd2a5ff48849a8a51861cd5b57589f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3dd2a5ff48849a8a51861cd5b57589f.jpg", "file_size": 19232, "is_delete": false, "file_type": 1, "original_file_name": "0003-64FWF#飞版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3dd2a5ff48849a8a51861cd5b57589f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3dd2a5ff48849a8a51861cd5b57589f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3dd2a5ff48849a8a51861cd5b57589f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3dd2a5ff48849a8a51861cd5b57589f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3dd2a5ff48849a8a51861cd5b57589f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6_t5DOmTACvpTgECRt0Sr5V-cE=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.590591+00 2025-12-09 10:15:08.590596+00 10573 HT048FWE#VS-D3 SPMX-20240815305741 \N \N \N 1 \N [{"file_id": "26e4f2c1-c7c4-49bd-88a3-2ed8c926df45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3c53705b8f43eb87edfeb3a38d8ab5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3c53705b8f43eb87edfeb3a38d8ab5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3c53705b8f43eb87edfeb3a38d8ab5.jpg", "file_size": 7168, "is_delete": false, "file_type": 1, "original_file_name": "HT048FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c53705b8f43eb87edfeb3a38d8ab5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c53705b8f43eb87edfeb3a38d8ab5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c53705b8f43eb87edfeb3a38d8ab5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3c53705b8f43eb87edfeb3a38d8ab5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3c53705b8f43eb87edfeb3a38d8ab5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9NSl5_YDozQwZmsQ7E55_74fKE=", "createTime": "2024-08-15 14:50:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.59228+00 2025-12-09 10:15:08.592284+00 10574 LZ1275#背心款1号色 SPMX-20240815305747 \N \N \N 1 \N [{"file_id": "c804e525-0ebe-4e70-9039-09647d1290e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0af84d28a8e41d29f86b69c0ecf849a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0af84d28a8e41d29f86b69c0ecf849a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0af84d28a8e41d29f86b69c0ecf849a.jpg", "file_size": 18939, "is_delete": false, "file_type": 1, "original_file_name": "LZ1275#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0af84d28a8e41d29f86b69c0ecf849a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0af84d28a8e41d29f86b69c0ecf849a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0af84d28a8e41d29f86b69c0ecf849a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0af84d28a8e41d29f86b69c0ecf849a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0af84d28a8e41d29f86b69c0ecf849a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x9mQPbtVJPo8r0USzno_yDjyvxw=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.594007+00 2025-12-09 10:15:08.59401+00 10575 LJ9931#L白前片 SPMX-20240815305742 \N \N \N 1 \N [{"file_id": "ae8c6418-2883-4bfd-89c0-74b708fba055", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ad9f0dfef78429685a5f4bad1c0d959.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ad9f0dfef78429685a5f4bad1c0d959.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ad9f0dfef78429685a5f4bad1c0d959.jpg", "file_size": 9504, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad9f0dfef78429685a5f4bad1c0d959.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad9f0dfef78429685a5f4bad1c0d959.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad9f0dfef78429685a5f4bad1c0d959.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ad9f0dfef78429685a5f4bad1c0d959.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ad9f0dfef78429685a5f4bad1c0d959.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D32EiNMgefNVx90-qtU7RTdk4Dg=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.59599+00 2025-12-09 10:15:08.595995+00 10576 DL30567#深水红L SPMX-20240815305755 \N \N \N 1 \N [{"file_id": "d1468049-4592-43d3-a162-41ab77c4b318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a352b6ccae5a42de945fc19990a1f74c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a352b6ccae5a42de945fc19990a1f74c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a352b6ccae5a42de945fc19990a1f74c.jpg", "file_size": 16917, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#深水红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a352b6ccae5a42de945fc19990a1f74c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a352b6ccae5a42de945fc19990a1f74c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a352b6ccae5a42de945fc19990a1f74c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a352b6ccae5a42de945fc19990a1f74c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a352b6ccae5a42de945fc19990a1f74c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aogz4gX64-nhv6aQoXuIsQ0Y9Ls=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.598017+00 2025-12-09 10:15:08.598021+00 10577 C385#橙色 SPMX-20240815305748 \N \N \N 1 \N [{"file_id": "edf44345-ce3b-4f8a-92ee-c5048a82d990", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a558822a6711444b8f3b4e01474cafaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a558822a6711444b8f3b4e01474cafaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a558822a6711444b8f3b4e01474cafaf.jpg", "file_size": 85273, "is_delete": false, "file_type": 1, "original_file_name": "C385#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a558822a6711444b8f3b4e01474cafaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a558822a6711444b8f3b4e01474cafaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a558822a6711444b8f3b4e01474cafaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a558822a6711444b8f3b4e01474cafaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a558822a6711444b8f3b4e01474cafaf.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFZF93ziY-qdPcaN_0iqN8HEoT8=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.599717+00 2025-12-09 10:15:08.599721+00 10578 8120#5XL SPMX-20240815305750 \N \N \N 1 \N [{"file_id": "5c1c20f1-9309-4708-8425-7f436271228e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7605190323a345a8833fd1c613ffbddb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7605190323a345a8833fd1c613ffbddb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7605190323a345a8833fd1c613ffbddb.jpg", "file_size": 17077, "is_delete": false, "file_type": 1, "original_file_name": "8120#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7605190323a345a8833fd1c613ffbddb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7605190323a345a8833fd1c613ffbddb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7605190323a345a8833fd1c613ffbddb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7605190323a345a8833fd1c613ffbddb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7605190323a345a8833fd1c613ffbddb.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Pgb7CpkTi_uxYu1xcau-6MiiPg=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.601422+00 2025-12-09 10:15:08.601427+00 10579 11-6G22#粉色XL SPMX-20240815305749 \N \N \N 1 \N [{"file_id": "cfb20c1c-09da-4b41-8568-086329ff955d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc323fdfd99249b8a7b359515cf37fb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc323fdfd99249b8a7b359515cf37fb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc323fdfd99249b8a7b359515cf37fb3.jpg", "file_size": 16802, "is_delete": false, "file_type": 1, "original_file_name": "11-6G22#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323fdfd99249b8a7b359515cf37fb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323fdfd99249b8a7b359515cf37fb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc323fdfd99249b8a7b359515cf37fb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc323fdfd99249b8a7b359515cf37fb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc323fdfd99249b8a7b359515cf37fb3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uB8XxIbZVLhDL6r2r3Ba-azCVNI=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.603131+00 2025-12-09 10:15:08.603136+00 10580 JTSS195FW#VS-D3 SPMX-20240815305754 \N \N \N 1 \N [{"file_id": "d4a0d2e9-89fe-4676-a8d8-2f1311c34b0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62f0c86267ff41fda88ae8427a9ce02b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62f0c86267ff41fda88ae8427a9ce02b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62f0c86267ff41fda88ae8427a9ce02b.jpg", "file_size": 7907, "is_delete": false, "file_type": 1, "original_file_name": "JTSS195FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f0c86267ff41fda88ae8427a9ce02b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f0c86267ff41fda88ae8427a9ce02b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f0c86267ff41fda88ae8427a9ce02b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62f0c86267ff41fda88ae8427a9ce02b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62f0c86267ff41fda88ae8427a9ce02b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9YpPu4tqYuCteXjD-YPTX1X7SY=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.605108+00 2025-12-09 10:15:08.605114+00 10581 23-2116#A7-领子4XL SPMX-20240815305756 \N \N \N 1 \N [{"file_id": "6ff0b71d-f421-469c-847c-156876edf62c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa050e3999844359a2891448540b5853.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa050e3999844359a2891448540b5853.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa050e3999844359a2891448540b5853.jpg", "file_size": 11958, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa050e3999844359a2891448540b5853.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa050e3999844359a2891448540b5853.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa050e3999844359a2891448540b5853.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa050e3999844359a2891448540b5853.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa050e3999844359a2891448540b5853.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ViQ-EvEg_DrE2Zv2OCvOFKxVm3Q=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.607653+00 2025-12-09 10:15:08.607658+00 10582 C385#玫红 SPMX-20240815305758 \N \N \N 1 \N [{"file_id": "6f5319b9-0536-4a09-a37b-badfebc6fdc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f951c2bf4d52422fa27cde8c5383496c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f951c2bf4d52422fa27cde8c5383496c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f951c2bf4d52422fa27cde8c5383496c.jpg", "file_size": 78363, "is_delete": false, "file_type": 1, "original_file_name": "C385#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f951c2bf4d52422fa27cde8c5383496c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f951c2bf4d52422fa27cde8c5383496c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f951c2bf4d52422fa27cde8c5383496c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f951c2bf4d52422fa27cde8c5383496c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f951c2bf4d52422fa27cde8c5383496c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9H8ZEbREkhwsLiplES8hbPQ7e7w=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.610219+00 2025-12-09 10:15:08.610225+00 10583 0003-65FWF#正身扎染 SPMX-20240815305759 \N \N \N 1 \N [{"file_id": "220246c8-7a46-4db9-b83b-0f923bf07e83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c313c68d0944068f6bec6340c01957.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c313c68d0944068f6bec6340c01957.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c313c68d0944068f6bec6340c01957.jpg", "file_size": 10642, "is_delete": false, "file_type": 1, "original_file_name": "0003-65FWF#正身扎染.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c313c68d0944068f6bec6340c01957.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c313c68d0944068f6bec6340c01957.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c313c68d0944068f6bec6340c01957.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c313c68d0944068f6bec6340c01957.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c313c68d0944068f6bec6340c01957.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NlOxZY66CBTlQ1ttxe5IHobM7Xk=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.612945+00 2025-12-09 10:15:08.61295+00 10584 FHXGPK-批布037-1 SPMX-20240815305757 \N \N \N 1 \N [{"file_id": "a30c93bf-864e-4120-9553-b7dd6c3a3e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39718d9243bd4e65af9a548975ceaa51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39718d9243bd4e65af9a548975ceaa51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39718d9243bd4e65af9a548975ceaa51.jpg", "file_size": 55418, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布037-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39718d9243bd4e65af9a548975ceaa51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39718d9243bd4e65af9a548975ceaa51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39718d9243bd4e65af9a548975ceaa51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39718d9243bd4e65af9a548975ceaa51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39718d9243bd4e65af9a548975ceaa51.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0iKXJnOeLLBDWAcbquNyZFgt9Q=", "createTime": "2024-08-15 14:50:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.6151+00 2025-12-09 10:15:08.615106+00 10585 11-6G23#彩兰 SPMX-20240815305761 \N \N \N 1 \N [{"file_id": "93493b3c-12e8-47ae-b535-383046f71b53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47f553abdb624fcebf0563c6bf241eb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47f553abdb624fcebf0563c6bf241eb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47f553abdb624fcebf0563c6bf241eb7.jpg", "file_size": 26307, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f553abdb624fcebf0563c6bf241eb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f553abdb624fcebf0563c6bf241eb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f553abdb624fcebf0563c6bf241eb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47f553abdb624fcebf0563c6bf241eb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47f553abdb624fcebf0563c6bf241eb7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_2JmL3Li_1V_KnrXKfM7HxWT_g=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.617211+00 2025-12-09 10:15:08.617215+00 10586 LZ1275#背心款2号色 SPMX-20240815305760 \N \N \N 1 \N [{"file_id": "fab593da-68e1-4c4c-9375-8826a2228907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99430b0c193d4719a32f4d562ceaba96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99430b0c193d4719a32f4d562ceaba96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99430b0c193d4719a32f4d562ceaba96.jpg", "file_size": 18978, "is_delete": false, "file_type": 1, "original_file_name": "LZ1275#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99430b0c193d4719a32f4d562ceaba96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99430b0c193d4719a32f4d562ceaba96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99430b0c193d4719a32f4d562ceaba96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99430b0c193d4719a32f4d562ceaba96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99430b0c193d4719a32f4d562ceaba96.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBDpa6nsZQ-Cw-rGJcFbCm1R4wY=", "createTime": "2024-08-15 14:50:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.619451+00 2025-12-09 10:15:08.619456+00 10587 LJ9931#L绿 SPMX-20240815305762 \N \N \N 1 \N [{"file_id": "2897a4a1-e7eb-43f1-a48b-e13888d20ac0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5139e47d74a04046a071de783368ad53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5139e47d74a04046a071de783368ad53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5139e47d74a04046a071de783368ad53.jpg", "file_size": 15522, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5139e47d74a04046a071de783368ad53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5139e47d74a04046a071de783368ad53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5139e47d74a04046a071de783368ad53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5139e47d74a04046a071de783368ad53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5139e47d74a04046a071de783368ad53.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I27FH1jDk1YidhLZytBDpbjTdxM=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.621664+00 2025-12-09 10:15:08.621668+00 10588 8120#XL SPMX-20240815305763 \N \N \N 1 \N [{"file_id": "c1c23932-2a72-4dc4-9a27-787de11ef61c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43de9826e70340adaa24836ef6e322d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43de9826e70340adaa24836ef6e322d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43de9826e70340adaa24836ef6e322d9.jpg", "file_size": 20039, "is_delete": false, "file_type": 1, "original_file_name": "8120#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43de9826e70340adaa24836ef6e322d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43de9826e70340adaa24836ef6e322d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43de9826e70340adaa24836ef6e322d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43de9826e70340adaa24836ef6e322d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43de9826e70340adaa24836ef6e322d9.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SULLt_QorGEq91DLDc8cB5Mid7M=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.623656+00 2025-12-09 10:15:08.623661+00 10589 11-6G23#杏色 SPMX-20240815305768 \N \N \N 1 \N [{"file_id": "668b9727-9ab2-49c5-8658-9deeab0037a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64bb02dc0a83406d804491fa60b825e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64bb02dc0a83406d804491fa60b825e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64bb02dc0a83406d804491fa60b825e9.jpg", "file_size": 24130, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bb02dc0a83406d804491fa60b825e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bb02dc0a83406d804491fa60b825e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bb02dc0a83406d804491fa60b825e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64bb02dc0a83406d804491fa60b825e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64bb02dc0a83406d804491fa60b825e9.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnS6_xP_afKTxo64sQvBwpP_Du0=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.625653+00 2025-12-09 10:15:08.625658+00 10590 23-2116#A8-3XL SPMX-20240815305767 \N \N \N 1 \N [{"file_id": "340b4702-5917-4c5d-a15f-dfe00989a22d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85cc0bcbf1b2448b831f73c6bc63e9d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85cc0bcbf1b2448b831f73c6bc63e9d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85cc0bcbf1b2448b831f73c6bc63e9d1.jpg", "file_size": 17120, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cc0bcbf1b2448b831f73c6bc63e9d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cc0bcbf1b2448b831f73c6bc63e9d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cc0bcbf1b2448b831f73c6bc63e9d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85cc0bcbf1b2448b831f73c6bc63e9d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85cc0bcbf1b2448b831f73c6bc63e9d1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0kmfVARirGDtzHhkRhlr726428o=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.627641+00 2025-12-09 10:15:08.627645+00 10591 HT049FWE#VS-D3 SPMX-20240815305764 \N \N \N 1 \N [{"file_id": "1b321a04-f70a-47a5-9eb4-a297a5a65516", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a429368eb274af385723e78d02921d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a429368eb274af385723e78d02921d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a429368eb274af385723e78d02921d3.jpg", "file_size": 12908, "is_delete": false, "file_type": 1, "original_file_name": "HT049FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a429368eb274af385723e78d02921d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a429368eb274af385723e78d02921d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a429368eb274af385723e78d02921d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a429368eb274af385723e78d02921d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a429368eb274af385723e78d02921d3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeAlqBbd7BRr-nRgvr0rp6Al3ig=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.629627+00 2025-12-09 10:15:08.629631+00 10592 DL30567#深水红XL SPMX-20240815305765 \N \N \N 1 \N [{"file_id": "e3f55a49-7648-400c-94fa-b53afe26ce31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4dd10cdce2c4ffd94669ade9be168a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4dd10cdce2c4ffd94669ade9be168a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4dd10cdce2c4ffd94669ade9be168a5.jpg", "file_size": 17412, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#深水红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4dd10cdce2c4ffd94669ade9be168a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4dd10cdce2c4ffd94669ade9be168a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4dd10cdce2c4ffd94669ade9be168a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4dd10cdce2c4ffd94669ade9be168a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4dd10cdce2c4ffd94669ade9be168a5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4bGGW4X2AcIzixL4tvOJ31NHSk=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.631594+00 2025-12-09 10:15:08.631599+00 10593 C385#绿色 SPMX-20240815305766 \N \N \N 1 \N [{"file_id": "515aa4dd-bfbf-4435-98f8-995152e81ce0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7322d8b7c040439a851a1b39f7bfa5b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7322d8b7c040439a851a1b39f7bfa5b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7322d8b7c040439a851a1b39f7bfa5b1.jpg", "file_size": 79751, "is_delete": false, "file_type": 1, "original_file_name": "C385#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7322d8b7c040439a851a1b39f7bfa5b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7322d8b7c040439a851a1b39f7bfa5b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7322d8b7c040439a851a1b39f7bfa5b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7322d8b7c040439a851a1b39f7bfa5b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7322d8b7c040439a851a1b39f7bfa5b1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2eEL5gjaGF87ZrH5t93GmX2Uwo=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.633301+00 2025-12-09 10:15:08.633305+00 10594 JTSS196FW#VS-D3 SPMX-20240815305771 \N \N \N 1 \N [{"file_id": "32bc1abf-5a38-4a60-8dda-fcfb2e3e8e45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9865a17bd5ff4b7fbfb25da314b4226c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9865a17bd5ff4b7fbfb25da314b4226c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9865a17bd5ff4b7fbfb25da314b4226c.jpg", "file_size": 8916, "is_delete": false, "file_type": 1, "original_file_name": "JTSS196FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9865a17bd5ff4b7fbfb25da314b4226c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9865a17bd5ff4b7fbfb25da314b4226c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9865a17bd5ff4b7fbfb25da314b4226c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9865a17bd5ff4b7fbfb25da314b4226c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9865a17bd5ff4b7fbfb25da314b4226c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJBL2-_iAUYXcYp-rEZ2vjFRF3w=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.635227+00 2025-12-09 10:15:08.635232+00 10595 23-2116#A8-4XL SPMX-20240815305776 \N \N \N 1 \N [{"file_id": "237f8280-0347-432a-a744-ae078bb5a637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "612c816b22314ab1864258833a52738d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "612c816b22314ab1864258833a52738d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "612c816b22314ab1864258833a52738d.jpg", "file_size": 16137, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c816b22314ab1864258833a52738d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c816b22314ab1864258833a52738d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c816b22314ab1864258833a52738d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/612c816b22314ab1864258833a52738d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/612c816b22314ab1864258833a52738d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTjM7oltVA7heJaublAU5K5omwg=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.636941+00 2025-12-09 10:15:08.636946+00 10596 LZ1275#背心款3号色 SPMX-20240815305770 \N \N \N 1 \N [{"file_id": "b42a605c-0ccb-4e85-aae4-898c956e2ead", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e73757889564c259b6c499dffe8faa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e73757889564c259b6c499dffe8faa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e73757889564c259b6c499dffe8faa2.jpg", "file_size": 19220, "is_delete": false, "file_type": 1, "original_file_name": "LZ1275#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e73757889564c259b6c499dffe8faa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e73757889564c259b6c499dffe8faa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e73757889564c259b6c499dffe8faa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e73757889564c259b6c499dffe8faa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e73757889564c259b6c499dffe8faa2.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jX3AP4q_ScMesb2JVZ7clAEdzPY=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.638822+00 2025-12-09 10:15:08.638828+00 10597 DL30567#玫红色2XL SPMX-20240815305777 \N \N \N 1 \N [{"file_id": "9b259418-10d0-4f32-b087-a521fcf1a050", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f087cf9a806341cebc28e6cb6e554556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f087cf9a806341cebc28e6cb6e554556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f087cf9a806341cebc28e6cb6e554556.jpg", "file_size": 17324, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#玫红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f087cf9a806341cebc28e6cb6e554556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f087cf9a806341cebc28e6cb6e554556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f087cf9a806341cebc28e6cb6e554556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f087cf9a806341cebc28e6cb6e554556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f087cf9a806341cebc28e6cb6e554556.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_Hmy3V3x2w0qTU-9pLtCeoVLKY=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.640597+00 2025-12-09 10:15:08.640602+00 10598 11-6G23#枣红 SPMX-20240815305778 \N \N \N 1 \N [{"file_id": "d3cd238d-3e52-4160-8dde-9d2087dcb8d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9cf9f2c52c45bc984e0da8223c95d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9cf9f2c52c45bc984e0da8223c95d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9cf9f2c52c45bc984e0da8223c95d5.jpg", "file_size": 25839, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9cf9f2c52c45bc984e0da8223c95d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9cf9f2c52c45bc984e0da8223c95d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9cf9f2c52c45bc984e0da8223c95d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9cf9f2c52c45bc984e0da8223c95d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9cf9f2c52c45bc984e0da8223c95d5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asHPeCZf2sDsSro0nHHmRpQWGQ4=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.642586+00 2025-12-09 10:15:08.642591+00 10599 FHXGPK-批布037-2 SPMX-20240815305769 \N \N \N 1 \N [{"file_id": "dd54ca7f-f0e0-4306-bc5d-d1e736bbb510", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "260742e543514d2599c6e2e129d0f0fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "260742e543514d2599c6e2e129d0f0fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "260742e543514d2599c6e2e129d0f0fb.jpg", "file_size": 66029, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布037-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260742e543514d2599c6e2e129d0f0fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260742e543514d2599c6e2e129d0f0fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260742e543514d2599c6e2e129d0f0fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/260742e543514d2599c6e2e129d0f0fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/260742e543514d2599c6e2e129d0f0fb.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YrJtcyJ3DZWXGGOqRcWdXa2A2M=", "createTime": "2024-08-15 14:50:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.644605+00 2025-12-09 10:15:08.64461+00 10600 HT050FWE#红VS-D3 SPMX-20240815305783 \N \N \N 1 \N [{"file_id": "6f880452-bcf4-4033-b052-5459b85951b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c16a14056de49079f83d39738a6dac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c16a14056de49079f83d39738a6dac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c16a14056de49079f83d39738a6dac1.jpg", "file_size": 15421, "is_delete": false, "file_type": 1, "original_file_name": "HT050FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c16a14056de49079f83d39738a6dac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c16a14056de49079f83d39738a6dac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c16a14056de49079f83d39738a6dac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c16a14056de49079f83d39738a6dac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c16a14056de49079f83d39738a6dac1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8M1OvzL2oHKLA3gw2rl0-0d2hEk=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.646573+00 2025-12-09 10:15:08.646577+00 10601 LJ9931#L酒红 SPMX-20240815305774 \N \N \N 1 \N [{"file_id": "bd9e13c7-ccf8-4e47-84c6-90de63d16d3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97af82ede393479aa7331a85720da01e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97af82ede393479aa7331a85720da01e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97af82ede393479aa7331a85720da01e.jpg", "file_size": 15251, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97af82ede393479aa7331a85720da01e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97af82ede393479aa7331a85720da01e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97af82ede393479aa7331a85720da01e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97af82ede393479aa7331a85720da01e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97af82ede393479aa7331a85720da01e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpnAKBOtfS89fSnHlwri9Z_DM-M=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.648475+00 2025-12-09 10:15:08.64848+00 10602 FHXGPK-批布038-1 SPMX-20240815305780 \N \N \N 1 \N [{"file_id": "ddb73b4a-6acc-44de-b5f4-709415652f7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fead893aef74c298ddcbe361ef76523.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fead893aef74c298ddcbe361ef76523.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fead893aef74c298ddcbe361ef76523.jpg", "file_size": 58126, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布038-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fead893aef74c298ddcbe361ef76523.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fead893aef74c298ddcbe361ef76523.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fead893aef74c298ddcbe361ef76523.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fead893aef74c298ddcbe361ef76523.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fead893aef74c298ddcbe361ef76523.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LwMJCWQL38gr5MPLuO5a-JFWsmw=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.650383+00 2025-12-09 10:15:08.650387+00 10603 HT050# SPMX-20240815305773 \N \N \N 1 \N [{"file_id": "2a90743e-e496-44e9-a9f3-113c4639bb7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55da43c70fb6468fbe43f86b30450d51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55da43c70fb6468fbe43f86b30450d51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55da43c70fb6468fbe43f86b30450d51.jpg", "file_size": 14297, "is_delete": false, "file_type": 1, "original_file_name": "HT050#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da43c70fb6468fbe43f86b30450d51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da43c70fb6468fbe43f86b30450d51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da43c70fb6468fbe43f86b30450d51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55da43c70fb6468fbe43f86b30450d51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55da43c70fb6468fbe43f86b30450d51.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYJ-2MmQYF51nvnV34pxQ6eAkd4=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.652096+00 2025-12-09 10:15:08.652101+00 10604 LZ1275#背心款4号色 SPMX-20240815305781 \N \N \N 1 \N [{"file_id": "dbe61c4b-7935-4f49-9988-5327cf62eac0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aba328d1ac6a448889b18bca84e73374.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aba328d1ac6a448889b18bca84e73374.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aba328d1ac6a448889b18bca84e73374.jpg", "file_size": 17860, "is_delete": false, "file_type": 1, "original_file_name": "LZ1275#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba328d1ac6a448889b18bca84e73374.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba328d1ac6a448889b18bca84e73374.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba328d1ac6a448889b18bca84e73374.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aba328d1ac6a448889b18bca84e73374.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aba328d1ac6a448889b18bca84e73374.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ul_K6glASh-0guaXUzFF76rkpi0=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.653809+00 2025-12-09 10:15:08.653814+00 10605 0003-65FWF#豹纹领条 SPMX-20240815305772 \N \N \N 1 \N [{"file_id": "73a75272-805f-4385-abae-49a79d45c934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e7f1f241c0f46e4bbd759bca6c01c49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e7f1f241c0f46e4bbd759bca6c01c49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e7f1f241c0f46e4bbd759bca6c01c49.jpg", "file_size": 18634, "is_delete": false, "file_type": 1, "original_file_name": "0003-65FWF#豹纹领条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7f1f241c0f46e4bbd759bca6c01c49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7f1f241c0f46e4bbd759bca6c01c49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e7f1f241c0f46e4bbd759bca6c01c49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e7f1f241c0f46e4bbd759bca6c01c49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e7f1f241c0f46e4bbd759bca6c01c49.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RtVToKaEndcesPBPlCNIfljJFk=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.655502+00 2025-12-09 10:15:08.655507+00 10606 0003-66FWF#红色金版本 SPMX-20240815305782 \N \N \N 1 \N [{"file_id": "da21dd3f-c51b-4bec-a9e8-33d6952d3e6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "529bdff2f28949a783fc2e1bd0915598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "529bdff2f28949a783fc2e1bd0915598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "529bdff2f28949a783fc2e1bd0915598.jpg", "file_size": 14963, "is_delete": false, "file_type": 1, "original_file_name": "0003-66FWF#红色金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529bdff2f28949a783fc2e1bd0915598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529bdff2f28949a783fc2e1bd0915598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529bdff2f28949a783fc2e1bd0915598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/529bdff2f28949a783fc2e1bd0915598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/529bdff2f28949a783fc2e1bd0915598.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Of9b57puFIqlgu4Z3CtUEgC942Q=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.657433+00 2025-12-09 10:15:08.657438+00 10607 C385#黑色 SPMX-20240815305775 \N \N \N 1 \N [{"file_id": "81704a85-c996-4aa4-bfe4-4358c759c76a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9019b24eec7840bf87ed30c027c045db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9019b24eec7840bf87ed30c027c045db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9019b24eec7840bf87ed30c027c045db.jpg", "file_size": 70776, "is_delete": false, "file_type": 1, "original_file_name": "C385#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9019b24eec7840bf87ed30c027c045db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9019b24eec7840bf87ed30c027c045db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9019b24eec7840bf87ed30c027c045db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9019b24eec7840bf87ed30c027c045db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9019b24eec7840bf87ed30c027c045db.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHYrHn0X335l7Fu5EOCUwGdGKBU=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.659141+00 2025-12-09 10:15:08.659146+00 10608 8120#短裤套装上衣 SPMX-20240815305779 \N \N \N 1 \N [{"file_id": "7b1f6715-d4b7-45bd-9001-f83cc8dfa773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb236f1cc454ef88223f69ff494ee69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb236f1cc454ef88223f69ff494ee69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb236f1cc454ef88223f69ff494ee69.jpg", "file_size": 22235, "is_delete": false, "file_type": 1, "original_file_name": "8120#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb236f1cc454ef88223f69ff494ee69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb236f1cc454ef88223f69ff494ee69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb236f1cc454ef88223f69ff494ee69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb236f1cc454ef88223f69ff494ee69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb236f1cc454ef88223f69ff494ee69.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bwQeKipuxEubRQNRDjiMZ24zUE=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.660846+00 2025-12-09 10:15:08.66085+00 10609 JTSS197FW#VS-D3 SPMX-20240815305784 \N \N \N 1 \N [{"file_id": "ad684dad-8e29-4642-8920-f5e63f769db0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0641c697f59741f5aa01b6755273a4c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0641c697f59741f5aa01b6755273a4c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0641c697f59741f5aa01b6755273a4c0.jpg", "file_size": 8201, "is_delete": false, "file_type": 1, "original_file_name": "JTSS197FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0641c697f59741f5aa01b6755273a4c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0641c697f59741f5aa01b6755273a4c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0641c697f59741f5aa01b6755273a4c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0641c697f59741f5aa01b6755273a4c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0641c697f59741f5aa01b6755273a4c0.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-00sZ5Q1vNyCZjaK4_FvIcdPotw=", "createTime": "2024-08-15 14:50:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.662528+00 2025-12-09 10:15:08.662533+00 10610 HT050FWE#绿VS-D3 SPMX-20240815305792 \N \N \N 1 \N [{"file_id": "f4ef6318-5cae-4fca-aa7c-88e61f70188d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf6ce49342884c86810ea09e08182798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf6ce49342884c86810ea09e08182798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf6ce49342884c86810ea09e08182798.jpg", "file_size": 12568, "is_delete": false, "file_type": 1, "original_file_name": "HT050FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6ce49342884c86810ea09e08182798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6ce49342884c86810ea09e08182798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf6ce49342884c86810ea09e08182798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf6ce49342884c86810ea09e08182798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf6ce49342884c86810ea09e08182798.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZ7lOtHdQAkROAvzzrngwpSh704=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.664493+00 2025-12-09 10:15:08.664498+00 10611 DL30567#玫红色L SPMX-20240815305786 \N \N \N 1 \N [{"file_id": "b1465291-c854-4bdd-b42b-3c8bb9fccec2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137283e514844928beaeca445f087321.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137283e514844928beaeca445f087321.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137283e514844928beaeca445f087321.jpg", "file_size": 16715, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#玫红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137283e514844928beaeca445f087321.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137283e514844928beaeca445f087321.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137283e514844928beaeca445f087321.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137283e514844928beaeca445f087321.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137283e514844928beaeca445f087321.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FbXbtIjcJO7GI_CJ9DS8aoMQdg=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.666194+00 2025-12-09 10:15:08.666199+00 10612 23-2116#A8-领子3XL SPMX-20240815305787 \N \N \N 1 \N [{"file_id": "a414e143-86e0-45d9-b9db-86129be0c66b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2c39027614646f1b39a5fa59fc764a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2c39027614646f1b39a5fa59fc764a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2c39027614646f1b39a5fa59fc764a0.jpg", "file_size": 11460, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c39027614646f1b39a5fa59fc764a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c39027614646f1b39a5fa59fc764a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c39027614646f1b39a5fa59fc764a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2c39027614646f1b39a5fa59fc764a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2c39027614646f1b39a5fa59fc764a0.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWRkCnqant4GCbLLhd-4IOGS-Bs=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.667944+00 2025-12-09 10:15:08.667948+00 10613 8120#短裤套装袖子 SPMX-20240815305790 \N \N \N 1 \N [{"file_id": "bf47acd3-6ad6-4353-9755-9d1a8887e132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db04adfe9d004846a58c952d79ab5850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db04adfe9d004846a58c952d79ab5850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db04adfe9d004846a58c952d79ab5850.jpg", "file_size": 18396, "is_delete": false, "file_type": 1, "original_file_name": "8120#短裤套装袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db04adfe9d004846a58c952d79ab5850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db04adfe9d004846a58c952d79ab5850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db04adfe9d004846a58c952d79ab5850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db04adfe9d004846a58c952d79ab5850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db04adfe9d004846a58c952d79ab5850.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eoY4Ig_qDi-W5gD1RXCqCduMN7c=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.669645+00 2025-12-09 10:15:08.669649+00 10614 0003-66FWF#绿色金版本 SPMX-20240815305793 \N \N \N 1 \N [{"file_id": "e3011ad0-2b17-45cb-99bf-ce989513470f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58d13b9d370946b1a18796f3c9e1e052.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58d13b9d370946b1a18796f3c9e1e052.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58d13b9d370946b1a18796f3c9e1e052.jpg", "file_size": 12572, "is_delete": false, "file_type": 1, "original_file_name": "0003-66FWF#绿色金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d13b9d370946b1a18796f3c9e1e052.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d13b9d370946b1a18796f3c9e1e052.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d13b9d370946b1a18796f3c9e1e052.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58d13b9d370946b1a18796f3c9e1e052.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58d13b9d370946b1a18796f3c9e1e052.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMgUxyq7FzFhZFhcMDWtbsaHBLE=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.671546+00 2025-12-09 10:15:08.67155+00 10615 DL30567#玫红色XL SPMX-20240815305794 \N \N \N 1 \N [{"file_id": "ff61f343-152d-4058-98f9-d2e57bd68f64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926ad184836744aaa9a864d590ef417d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926ad184836744aaa9a864d590ef417d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926ad184836744aaa9a864d590ef417d.jpg", "file_size": 16906, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#玫红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926ad184836744aaa9a864d590ef417d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926ad184836744aaa9a864d590ef417d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926ad184836744aaa9a864d590ef417d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926ad184836744aaa9a864d590ef417d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926ad184836744aaa9a864d590ef417d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3wNxD5dRw3YGeaZeJX1agMMfmU=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.673256+00 2025-12-09 10:15:08.673261+00 10616 C389#原版色 SPMX-20240815305785 \N \N \N 1 \N [{"file_id": "7b16878b-377d-49ec-8627-d64266b6c8cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3adfe269f3d347c3b18f2f8fabd06945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3adfe269f3d347c3b18f2f8fabd06945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3adfe269f3d347c3b18f2f8fabd06945.jpg", "file_size": 79670, "is_delete": false, "file_type": 1, "original_file_name": "C389#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3adfe269f3d347c3b18f2f8fabd06945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3adfe269f3d347c3b18f2f8fabd06945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3adfe269f3d347c3b18f2f8fabd06945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3adfe269f3d347c3b18f2f8fabd06945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3adfe269f3d347c3b18f2f8fabd06945.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdbvnvYeYabXGjBfdgmzOoJRqDc=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.674957+00 2025-12-09 10:15:08.674962+00 10617 JTSS198FW#VS-D3 SPMX-20240815305791 \N \N \N 1 \N [{"file_id": "9d262428-6887-44dd-979a-ded8258e52e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ee7e397dd64705a052c01450492a2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ee7e397dd64705a052c01450492a2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ee7e397dd64705a052c01450492a2c.jpg", "file_size": 23840, "is_delete": false, "file_type": 1, "original_file_name": "JTSS198FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ee7e397dd64705a052c01450492a2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ee7e397dd64705a052c01450492a2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ee7e397dd64705a052c01450492a2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ee7e397dd64705a052c01450492a2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ee7e397dd64705a052c01450492a2c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIZmERJKF0T7oj__jevMqNHup5I=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.676648+00 2025-12-09 10:15:08.676653+00 10618 LJ9931#L黑 SPMX-20240815305788 \N \N \N 1 \N [{"file_id": "37a5ee69-2004-4d31-bac1-d97ce999bdb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34fbc856fdb8442099757513db6cf10b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34fbc856fdb8442099757513db6cf10b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34fbc856fdb8442099757513db6cf10b.jpg", "file_size": 16384, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#L黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34fbc856fdb8442099757513db6cf10b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34fbc856fdb8442099757513db6cf10b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34fbc856fdb8442099757513db6cf10b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34fbc856fdb8442099757513db6cf10b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34fbc856fdb8442099757513db6cf10b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Uw7MMBGG_Y4hNnNGdyTTfVYuU8=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.678572+00 2025-12-09 10:15:08.678577+00 10619 LZ1275#背心款5号色 SPMX-20240815305789 \N \N \N 1 \N [{"file_id": "1e5320ac-e49e-44a2-88ec-907235bc0b3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14ba410de4c4462d9fcc6ef5747304e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14ba410de4c4462d9fcc6ef5747304e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14ba410de4c4462d9fcc6ef5747304e7.jpg", "file_size": 18136, "is_delete": false, "file_type": 1, "original_file_name": "LZ1275#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ba410de4c4462d9fcc6ef5747304e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ba410de4c4462d9fcc6ef5747304e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ba410de4c4462d9fcc6ef5747304e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14ba410de4c4462d9fcc6ef5747304e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14ba410de4c4462d9fcc6ef5747304e7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IkXmGIgbOOy1o_hSa4BZlVtCXKg=", "createTime": "2024-08-15 14:50:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.680311+00 2025-12-09 10:15:08.680317+00 10620 11-6G23#枣红匹布 SPMX-20240815305795 \N \N \N 1 \N [{"file_id": "0fa6d07b-dcf2-43d6-930b-90efbe8fc1ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0deaaaed7bb44be4bb5dde83dec1a888.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0deaaaed7bb44be4bb5dde83dec1a888.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0deaaaed7bb44be4bb5dde83dec1a888.jpg", "file_size": 7851, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#枣红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deaaaed7bb44be4bb5dde83dec1a888.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deaaaed7bb44be4bb5dde83dec1a888.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0deaaaed7bb44be4bb5dde83dec1a888.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0deaaaed7bb44be4bb5dde83dec1a888.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0deaaaed7bb44be4bb5dde83dec1a888.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EoL6esJhPNDFnDrWjtvW8s8kz8=", "createTime": "2024-08-15 14:50:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.682064+00 2025-12-09 10:15:08.682069+00 10621 LZ1276#背心款1号色 SPMX-20240815305799 \N \N \N 1 \N [{"file_id": "67591e8c-4898-48e8-998b-cc8fc30bd8c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0b07516785240e8a441ce72c0350a03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0b07516785240e8a441ce72c0350a03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0b07516785240e8a441ce72c0350a03.jpg", "file_size": 14727, "is_delete": false, "file_type": 1, "original_file_name": "LZ1276#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b07516785240e8a441ce72c0350a03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b07516785240e8a441ce72c0350a03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b07516785240e8a441ce72c0350a03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0b07516785240e8a441ce72c0350a03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0b07516785240e8a441ce72c0350a03.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cz5N8WsP7t_mCflpnOn31luzZjM=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.683776+00 2025-12-09 10:15:08.68378+00 10622 FHXGPK-批布038-2 SPMX-20240815305800 \N \N \N 1 \N [{"file_id": "95dd158d-2bee-4bee-87b8-d45365402b74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e4daf0d3b3a4e0fae99bffbee99f835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e4daf0d3b3a4e0fae99bffbee99f835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e4daf0d3b3a4e0fae99bffbee99f835.jpg", "file_size": 54003, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布038-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4daf0d3b3a4e0fae99bffbee99f835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4daf0d3b3a4e0fae99bffbee99f835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4daf0d3b3a4e0fae99bffbee99f835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e4daf0d3b3a4e0fae99bffbee99f835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e4daf0d3b3a4e0fae99bffbee99f835.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozEv5yuzSa-cqY-NsL0YbN3Cp9E=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.685686+00 2025-12-09 10:15:08.68569+00 10623 HT051FWE#VS-D3 SPMX-20240815305801 \N \N \N 1 \N [{"file_id": "1f25dd55-810c-43e4-a912-bc3e20562186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f039c42ee7491a983f181142955c83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f039c42ee7491a983f181142955c83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f039c42ee7491a983f181142955c83.jpg", "file_size": 15837, "is_delete": false, "file_type": 1, "original_file_name": "HT051FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f039c42ee7491a983f181142955c83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f039c42ee7491a983f181142955c83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f039c42ee7491a983f181142955c83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f039c42ee7491a983f181142955c83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f039c42ee7491a983f181142955c83.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IkdvrOGr9fvscUHs_7xVTEPtNcs=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.687641+00 2025-12-09 10:15:08.687646+00 10624 11-6G23#白色 SPMX-20240815305805 \N \N \N 1 \N [{"file_id": "534dbdee-5343-4a4d-93ba-0ae57d4b6fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c858ccf0a0cd4414b2756f0ff5d89647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c858ccf0a0cd4414b2756f0ff5d89647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c858ccf0a0cd4414b2756f0ff5d89647.jpg", "file_size": 25921, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c858ccf0a0cd4414b2756f0ff5d89647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c858ccf0a0cd4414b2756f0ff5d89647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c858ccf0a0cd4414b2756f0ff5d89647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c858ccf0a0cd4414b2756f0ff5d89647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c858ccf0a0cd4414b2756f0ff5d89647.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7K7rubZN-YI8sjUhyb9Vhmrru8=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.689343+00 2025-12-09 10:15:08.689348+00 10625 C389#橙色 SPMX-20240815305796 \N \N \N 1 \N [{"file_id": "68652c87-97d4-4a41-b546-47ac23539abb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf07c8b645fb4a85bbde7a682c3df97e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf07c8b645fb4a85bbde7a682c3df97e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf07c8b645fb4a85bbde7a682c3df97e.jpg", "file_size": 85330, "is_delete": false, "file_type": 1, "original_file_name": "C389#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf07c8b645fb4a85bbde7a682c3df97e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf07c8b645fb4a85bbde7a682c3df97e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf07c8b645fb4a85bbde7a682c3df97e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf07c8b645fb4a85bbde7a682c3df97e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf07c8b645fb4a85bbde7a682c3df97e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKMLLa_aY-6JsMULYAmldSurJH8=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.691027+00 2025-12-09 10:15:08.691031+00 10626 8120#短裤套装裤子 SPMX-20240815305802 \N \N \N 1 \N [{"file_id": "97f6325e-5b7a-4e11-9655-c9997ba070d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d10d1d87727a49179944eeb6a257cbcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d10d1d87727a49179944eeb6a257cbcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d10d1d87727a49179944eeb6a257cbcc.jpg", "file_size": 21921, "is_delete": false, "file_type": 1, "original_file_name": "8120#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10d1d87727a49179944eeb6a257cbcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10d1d87727a49179944eeb6a257cbcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10d1d87727a49179944eeb6a257cbcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d10d1d87727a49179944eeb6a257cbcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d10d1d87727a49179944eeb6a257cbcc.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DT5Z5FOJ3TwA38aGY3xYtXKtdFY=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.692712+00 2025-12-09 10:15:08.692717+00 10627 C389#玫红 SPMX-20240815305808 \N \N \N 1 \N [{"file_id": "2bc1d831-386a-40ae-9251-e783f02405e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96e01f6650f644ef80ede2140294c0f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96e01f6650f644ef80ede2140294c0f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96e01f6650f644ef80ede2140294c0f4.jpg", "file_size": 79666, "is_delete": false, "file_type": 1, "original_file_name": "C389#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e01f6650f644ef80ede2140294c0f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e01f6650f644ef80ede2140294c0f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96e01f6650f644ef80ede2140294c0f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96e01f6650f644ef80ede2140294c0f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96e01f6650f644ef80ede2140294c0f4.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7BcZYW0lXul4ijoareirlAD1R54=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.694411+00 2025-12-09 10:15:08.694416+00 10628 23-2116#A8-领子4XL SPMX-20240815305798 \N \N \N 1 \N [{"file_id": "19361561-91b7-4575-af3d-1304f318098b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19fff39b5d604b7189c0da4398b0c8a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19fff39b5d604b7189c0da4398b0c8a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19fff39b5d604b7189c0da4398b0c8a8.jpg", "file_size": 11709, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fff39b5d604b7189c0da4398b0c8a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fff39b5d604b7189c0da4398b0c8a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fff39b5d604b7189c0da4398b0c8a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19fff39b5d604b7189c0da4398b0c8a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19fff39b5d604b7189c0da4398b0c8a8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ysvX9ogRocxzQuYWKAeZZvE8OHU=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.696138+00 2025-12-09 10:15:08.696143+00 10629 LZ1276#背心款2号色 SPMX-20240815305810 \N \N \N 1 \N [{"file_id": "9e48e83c-dbee-42be-a311-4354d2c5df83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "024177a0d8fe40189b4a53adcb97f2c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "024177a0d8fe40189b4a53adcb97f2c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "024177a0d8fe40189b4a53adcb97f2c8.jpg", "file_size": 14266, "is_delete": false, "file_type": 1, "original_file_name": "LZ1276#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024177a0d8fe40189b4a53adcb97f2c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024177a0d8fe40189b4a53adcb97f2c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024177a0d8fe40189b4a53adcb97f2c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/024177a0d8fe40189b4a53adcb97f2c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/024177a0d8fe40189b4a53adcb97f2c8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gf2DmIv5ionbOOJY3SAp52GCtuc=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.697859+00 2025-12-09 10:15:08.697864+00 10630 0003-66FWF#蓝色金版本 SPMX-20240815305803 \N \N \N 1 \N [{"file_id": "de0cc99f-6aeb-4bdf-9a37-e6e7a3c0f5fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5f13c34a1f540f283067bd6b8bc7be6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5f13c34a1f540f283067bd6b8bc7be6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5f13c34a1f540f283067bd6b8bc7be6.jpg", "file_size": 15644, "is_delete": false, "file_type": 1, "original_file_name": "0003-66FWF#蓝色金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f13c34a1f540f283067bd6b8bc7be6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f13c34a1f540f283067bd6b8bc7be6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f13c34a1f540f283067bd6b8bc7be6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5f13c34a1f540f283067bd6b8bc7be6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5f13c34a1f540f283067bd6b8bc7be6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HHf6TejjeQK-7Ak4b8WJl6g9YP0=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.699877+00 2025-12-09 10:15:08.699882+00 10631 JTSS199FW#VS-D3 SPMX-20240815305804 \N \N \N 1 \N [{"file_id": "094fda88-2ead-441c-a8c2-e0076176e739", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba2ec3f277454253af7935f7b92bcccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba2ec3f277454253af7935f7b92bcccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba2ec3f277454253af7935f7b92bcccd.jpg", "file_size": 11754, "is_delete": false, "file_type": 1, "original_file_name": "JTSS199FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba2ec3f277454253af7935f7b92bcccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba2ec3f277454253af7935f7b92bcccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba2ec3f277454253af7935f7b92bcccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba2ec3f277454253af7935f7b92bcccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba2ec3f277454253af7935f7b92bcccd.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7Ew6VPB77S14sreXAvlDCQI4sA=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.701811+00 2025-12-09 10:15:08.701816+00 10632 DL30567#蓝绿色2XL SPMX-20240815305806 \N \N \N 1 \N [{"file_id": "5a050496-6c84-4757-b960-41450d8f43ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d9cc813cec8499099af9471d38e554f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d9cc813cec8499099af9471d38e554f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d9cc813cec8499099af9471d38e554f.jpg", "file_size": 18235, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#蓝绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9cc813cec8499099af9471d38e554f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9cc813cec8499099af9471d38e554f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9cc813cec8499099af9471d38e554f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d9cc813cec8499099af9471d38e554f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d9cc813cec8499099af9471d38e554f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPsJ3lSzbb43oAA_qevZ_kREkKM=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.703806+00 2025-12-09 10:15:08.703811+00 10633 LJ9931#M灰 SPMX-20240815305807 \N \N \N 1 \N [{"file_id": "b9745769-0205-4550-a031-8d4f851c1949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36dd6f0154c14e77bc4184bf754e427a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36dd6f0154c14e77bc4184bf754e427a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36dd6f0154c14e77bc4184bf754e427a.jpg", "file_size": 14355, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36dd6f0154c14e77bc4184bf754e427a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36dd6f0154c14e77bc4184bf754e427a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36dd6f0154c14e77bc4184bf754e427a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36dd6f0154c14e77bc4184bf754e427a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36dd6f0154c14e77bc4184bf754e427a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbg_SWejhrJ7RBbJoWmHrkPKmNY=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.705772+00 2025-12-09 10:15:08.705776+00 10634 23-2116#A9-3XL SPMX-20240815305809 \N \N \N 1 \N [{"file_id": "4f0a9ae2-e293-4e43-95c8-07878028da0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "620b6ec675eb4b46a582ca4bc42f9411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "620b6ec675eb4b46a582ca4bc42f9411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "620b6ec675eb4b46a582ca4bc42f9411.jpg", "file_size": 18457, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620b6ec675eb4b46a582ca4bc42f9411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620b6ec675eb4b46a582ca4bc42f9411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620b6ec675eb4b46a582ca4bc42f9411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/620b6ec675eb4b46a582ca4bc42f9411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/620b6ec675eb4b46a582ca4bc42f9411.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljkAsFgb-ODnBipkb0GkNmmHcKI=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.707475+00 2025-12-09 10:15:08.70748+00 10635 LJ9931#M深蓝 SPMX-20240815305797 \N \N \N 1 \N [{"file_id": "c88fd9e0-bbdf-46a3-ac31-ea2a12ce0c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1316f6d5244b44d68afd36fdd0335989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1316f6d5244b44d68afd36fdd0335989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1316f6d5244b44d68afd36fdd0335989.jpg", "file_size": 14527, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1316f6d5244b44d68afd36fdd0335989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1316f6d5244b44d68afd36fdd0335989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1316f6d5244b44d68afd36fdd0335989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1316f6d5244b44d68afd36fdd0335989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1316f6d5244b44d68afd36fdd0335989.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sKCj7i5vsryPwBw3JCjBESei8o=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.70917+00 2025-12-09 10:15:08.709175+00 10636 HT0520#WJC22 SPMX-20240815305812 \N \N \N 1 \N [{"file_id": "9a8dec98-e8f6-4e48-b6b2-7c3a84003773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d694850a60c44369812fb410ab58a4ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d694850a60c44369812fb410ab58a4ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d694850a60c44369812fb410ab58a4ed.jpg", "file_size": 21712, "is_delete": false, "file_type": 1, "original_file_name": "HT0520#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694850a60c44369812fb410ab58a4ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694850a60c44369812fb410ab58a4ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694850a60c44369812fb410ab58a4ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d694850a60c44369812fb410ab58a4ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d694850a60c44369812fb410ab58a4ed.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9OHTfbiYUHD0iNn8tScQAWcN4g=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.710875+00 2025-12-09 10:15:08.71088+00 10637 LZ1276#背心款3号色 SPMX-20240815305820 \N \N \N 1 \N [{"file_id": "d9b6d55c-1ab8-433e-a7d3-47ebd19808fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e5688fb2a67482187aee51d4d6c8cda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e5688fb2a67482187aee51d4d6c8cda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e5688fb2a67482187aee51d4d6c8cda.jpg", "file_size": 14847, "is_delete": false, "file_type": 1, "original_file_name": "LZ1276#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5688fb2a67482187aee51d4d6c8cda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5688fb2a67482187aee51d4d6c8cda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e5688fb2a67482187aee51d4d6c8cda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e5688fb2a67482187aee51d4d6c8cda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e5688fb2a67482187aee51d4d6c8cda.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-KOYqHIVs-btY3fBmWVD_QmfPE=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.712859+00 2025-12-09 10:15:08.712864+00 10638 0003-66FWF#黑色金版本 SPMX-20240815305821 \N \N \N 1 \N [{"file_id": "4b755da0-1cb2-48e2-88d0-5a8fded9ea34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ae548e2188487192f53d05181bd5f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ae548e2188487192f53d05181bd5f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ae548e2188487192f53d05181bd5f5.jpg", "file_size": 15307, "is_delete": false, "file_type": 1, "original_file_name": "0003-66FWF#黑色金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ae548e2188487192f53d05181bd5f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ae548e2188487192f53d05181bd5f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ae548e2188487192f53d05181bd5f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ae548e2188487192f53d05181bd5f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ae548e2188487192f53d05181bd5f5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFXnqtOZJv4M6LP3eQuGzZCBLpk=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.714564+00 2025-12-09 10:15:08.714569+00 10639 FHXGPK-批布039-2 SPMX-20240815305825 \N \N \N 1 \N [{"file_id": "1f40f17d-0534-421f-b08c-66bf4a5cba7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "706389dbfb9744f6a8b80510cddad8ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "706389dbfb9744f6a8b80510cddad8ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "706389dbfb9744f6a8b80510cddad8ee.jpg", "file_size": 43986, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布039-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706389dbfb9744f6a8b80510cddad8ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706389dbfb9744f6a8b80510cddad8ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706389dbfb9744f6a8b80510cddad8ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/706389dbfb9744f6a8b80510cddad8ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/706389dbfb9744f6a8b80510cddad8ee.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PtLcpPQ9JVk6HzdAEJmgYyAibgE=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.716274+00 2025-12-09 10:15:08.716279+00 10640 JTSS200FW#VS-D3 SPMX-20240815305813 \N \N \N 1 \N [{"file_id": "0970f03e-128e-47a2-aaf7-5eac1bb008dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd99cadd83464efc9d2bad6189791a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd99cadd83464efc9d2bad6189791a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd99cadd83464efc9d2bad6189791a97.jpg", "file_size": 22796, "is_delete": false, "file_type": 1, "original_file_name": "JTSS200FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99cadd83464efc9d2bad6189791a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99cadd83464efc9d2bad6189791a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd99cadd83464efc9d2bad6189791a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd99cadd83464efc9d2bad6189791a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd99cadd83464efc9d2bad6189791a97.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Asoro5cCDygTZ91ZX1HX5QO96NE=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.717957+00 2025-12-09 10:15:08.717962+00 10641 C389#绿色 SPMX-20240815305823 \N \N \N 1 \N [{"file_id": "e13b4a3d-87dc-4143-96e3-b4cfe609014e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b87717c51be45a0b912d92d66c40f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b87717c51be45a0b912d92d66c40f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b87717c51be45a0b912d92d66c40f4d.jpg", "file_size": 82007, "is_delete": false, "file_type": 1, "original_file_name": "C389#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87717c51be45a0b912d92d66c40f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87717c51be45a0b912d92d66c40f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87717c51be45a0b912d92d66c40f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b87717c51be45a0b912d92d66c40f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b87717c51be45a0b912d92d66c40f4d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYy52wWCsZ6t50TiltZkQWf12o0=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.719904+00 2025-12-09 10:15:08.719909+00 10642 11-6G23#粉色 SPMX-20240815305818 \N \N \N 1 \N [{"file_id": "2af87ca7-2556-45af-9477-7737944df05a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e55721a19c904e289287e3716d60b3f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e55721a19c904e289287e3716d60b3f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e55721a19c904e289287e3716d60b3f6.jpg", "file_size": 24087, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55721a19c904e289287e3716d60b3f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55721a19c904e289287e3716d60b3f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55721a19c904e289287e3716d60b3f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e55721a19c904e289287e3716d60b3f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e55721a19c904e289287e3716d60b3f6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWTGheVQbnQndlKGOw5XLuTocxQ=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.721592+00 2025-12-09 10:15:08.721597+00 10643 23-2116#A9-4XL SPMX-20240815305817 \N \N \N 1 \N [{"file_id": "068a3207-54d9-402d-94d9-e4e913f739a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e112dc54da7540d58f8e49ddff76568a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e112dc54da7540d58f8e49ddff76568a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e112dc54da7540d58f8e49ddff76568a.jpg", "file_size": 17597, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e112dc54da7540d58f8e49ddff76568a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e112dc54da7540d58f8e49ddff76568a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e112dc54da7540d58f8e49ddff76568a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e112dc54da7540d58f8e49ddff76568a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e112dc54da7540d58f8e49ddff76568a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_9Q3WOM7AeU117jHgLFiau6v1s=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.723303+00 2025-12-09 10:15:08.723308+00 10644 DL30567#蓝绿色L SPMX-20240815305816 \N \N \N 1 \N [{"file_id": "c55454d5-b7c7-4759-9c2d-938e95e4ac83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d315e21e35c484aa5ed9c17a8021f73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d315e21e35c484aa5ed9c17a8021f73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d315e21e35c484aa5ed9c17a8021f73.jpg", "file_size": 17876, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#蓝绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d315e21e35c484aa5ed9c17a8021f73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d315e21e35c484aa5ed9c17a8021f73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d315e21e35c484aa5ed9c17a8021f73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d315e21e35c484aa5ed9c17a8021f73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d315e21e35c484aa5ed9c17a8021f73.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h91bzKmvj8t0v86Gi_-hDYzIKP0=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.725003+00 2025-12-09 10:15:08.725007+00 10645 JTSS201FW#VS-D3 SPMX-20240815305822 \N \N \N 1 \N [{"file_id": "61720647-23c4-406b-ae85-5fe934aef4ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74c4967aeb004c7cb28f77a76ebb1e63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74c4967aeb004c7cb28f77a76ebb1e63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74c4967aeb004c7cb28f77a76ebb1e63.jpg", "file_size": 18497, "is_delete": false, "file_type": 1, "original_file_name": "JTSS201FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c4967aeb004c7cb28f77a76ebb1e63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c4967aeb004c7cb28f77a76ebb1e63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c4967aeb004c7cb28f77a76ebb1e63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74c4967aeb004c7cb28f77a76ebb1e63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74c4967aeb004c7cb28f77a76ebb1e63.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cJDK-NLcKTRsR67w6Pw0cTAkpU=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.726956+00 2025-12-09 10:15:08.726961+00 10646 FHXGPK-批布039-1 SPMX-20240815305814 \N \N \N 1 \N [{"file_id": "bd821c27-9382-4fdc-9878-324549241e28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0356636ec7774a3ba84cc83bfaf1849a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0356636ec7774a3ba84cc83bfaf1849a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0356636ec7774a3ba84cc83bfaf1849a.jpg", "file_size": 45118, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布039-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0356636ec7774a3ba84cc83bfaf1849a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0356636ec7774a3ba84cc83bfaf1849a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0356636ec7774a3ba84cc83bfaf1849a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0356636ec7774a3ba84cc83bfaf1849a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0356636ec7774a3ba84cc83bfaf1849a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWczb17bOTUz_0TDymJHRMeeGoI=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.728663+00 2025-12-09 10:15:08.728668+00 10647 8121#短裤套装上衣 SPMX-20240815305815 \N \N \N 1 \N [{"file_id": "2accb2e6-b9f9-4a72-a529-66f1654c9757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b824c89571147e6a1c17b6c220e208b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b824c89571147e6a1c17b6c220e208b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b824c89571147e6a1c17b6c220e208b.jpg", "file_size": 23435, "is_delete": false, "file_type": 1, "original_file_name": "8121#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b824c89571147e6a1c17b6c220e208b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b824c89571147e6a1c17b6c220e208b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b824c89571147e6a1c17b6c220e208b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b824c89571147e6a1c17b6c220e208b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b824c89571147e6a1c17b6c220e208b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aefNHy9P-goOy9qXQdsr5ezsrAY=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.730381+00 2025-12-09 10:15:08.730386+00 10648 DL30567#蓝绿色XL SPMX-20240815305827 \N \N \N 1 \N [{"file_id": "76ea70d4-6afa-4447-81af-5de76c02f1d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f99300fdf22848cea630f4a7d01c9675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f99300fdf22848cea630f4a7d01c9675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f99300fdf22848cea630f4a7d01c9675.jpg", "file_size": 17969, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#蓝绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99300fdf22848cea630f4a7d01c9675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99300fdf22848cea630f4a7d01c9675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99300fdf22848cea630f4a7d01c9675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f99300fdf22848cea630f4a7d01c9675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f99300fdf22848cea630f4a7d01c9675.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8bo-DBP-mlTc_nIxZ2E2pWcYFA=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.732082+00 2025-12-09 10:15:08.732087+00 10649 LJ9931#M白 SPMX-20240815305819 \N \N \N 1 \N [{"file_id": "1415db83-b71f-4f73-b898-3a4aa1d72d9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "965558f4a72049dc8bafe814d204f7d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "965558f4a72049dc8bafe814d204f7d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "965558f4a72049dc8bafe814d204f7d8.jpg", "file_size": 14366, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965558f4a72049dc8bafe814d204f7d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965558f4a72049dc8bafe814d204f7d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965558f4a72049dc8bafe814d204f7d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/965558f4a72049dc8bafe814d204f7d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/965558f4a72049dc8bafe814d204f7d8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AguWvwJqX8ZW3tKtkMl4jKt5NME=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.73404+00 2025-12-09 10:15:08.734045+00 10650 HT052FWE#VS-D3 SPMX-20240815305826 \N \N \N 1 \N [{"file_id": "5a4d143d-d004-4982-a030-709a1b9fa075", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca3127dd47aa4b0ba4db5fe5fdca9776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca3127dd47aa4b0ba4db5fe5fdca9776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca3127dd47aa4b0ba4db5fe5fdca9776.jpg", "file_size": 17727, "is_delete": false, "file_type": 1, "original_file_name": "HT052FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3127dd47aa4b0ba4db5fe5fdca9776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3127dd47aa4b0ba4db5fe5fdca9776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3127dd47aa4b0ba4db5fe5fdca9776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca3127dd47aa4b0ba4db5fe5fdca9776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca3127dd47aa4b0ba4db5fe5fdca9776.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcI8VUGLVHsq-r3IXxb9GVUud_Q=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.73603+00 2025-12-09 10:15:08.736035+00 10651 0003-66FWF#黄色金版本 SPMX-20240815305811 \N \N \N 1 \N [{"file_id": "9a7417fc-738f-433f-968d-6d093924cad9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e21eed39e1a84886a6e9fae717b0efce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e21eed39e1a84886a6e9fae717b0efce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e21eed39e1a84886a6e9fae717b0efce.jpg", "file_size": 13599, "is_delete": false, "file_type": 1, "original_file_name": "0003-66FWF#黄色金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eed39e1a84886a6e9fae717b0efce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eed39e1a84886a6e9fae717b0efce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21eed39e1a84886a6e9fae717b0efce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e21eed39e1a84886a6e9fae717b0efce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e21eed39e1a84886a6e9fae717b0efce.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faYB6orsq2E_gztueDQjzAP5ugo=", "createTime": "2024-08-15 14:50:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.737763+00 2025-12-09 10:15:08.737767+00 10652 8121#短裤套装袖子+裤子 SPMX-20240815305824 \N \N \N 1 \N [{"file_id": "00f6158d-973d-4853-bbba-a8ed4cabdbb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c83e3d290c804dcc9b3206b8c387daf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c83e3d290c804dcc9b3206b8c387daf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c83e3d290c804dcc9b3206b8c387daf9.jpg", "file_size": 26387, "is_delete": false, "file_type": 1, "original_file_name": "8121#短裤套装袖子+裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83e3d290c804dcc9b3206b8c387daf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83e3d290c804dcc9b3206b8c387daf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83e3d290c804dcc9b3206b8c387daf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c83e3d290c804dcc9b3206b8c387daf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c83e3d290c804dcc9b3206b8c387daf9.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wt0DOykoB4lfcpwXK7m4c1hztjk=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.739434+00 2025-12-09 10:15:08.739438+00 10653 8121#红色 SPMX-20240815305833 \N \N \N 1 \N [{"file_id": "f3ec9632-0c54-45c6-91b9-ccbfecb1a79b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff593e8711bb455d876a3f8b328d7750.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff593e8711bb455d876a3f8b328d7750.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff593e8711bb455d876a3f8b328d7750.jpg", "file_size": 8717, "is_delete": false, "file_type": 1, "original_file_name": "8121#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff593e8711bb455d876a3f8b328d7750.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff593e8711bb455d876a3f8b328d7750.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff593e8711bb455d876a3f8b328d7750.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff593e8711bb455d876a3f8b328d7750.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff593e8711bb455d876a3f8b328d7750.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qvXZqXwPEaTQIbFFqN2Eu9ZQaUA=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.741166+00 2025-12-09 10:15:08.741171+00 10654 11-6G25#彩蓝色L SPMX-20240815305841 \N \N \N 1 \N [{"file_id": "ba566b40-d712-4125-88d0-decc1c9f4f8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg", "file_size": 18309, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#彩蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a3d48a062f74ae1a2c1d8beab0cc7a8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LUISavkUsskA9qSMAbdLNqPRCsQ=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.743109+00 2025-12-09 10:15:08.743114+00 10655 23-2116#A9-领子3XL SPMX-20240815305828 \N \N \N 1 \N [{"file_id": "c999d0b9-5a6d-484e-93b3-d25333d4d414", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04d983b7a4e6499da7123d6a04636e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04d983b7a4e6499da7123d6a04636e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04d983b7a4e6499da7123d6a04636e34.jpg", "file_size": 13026, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d983b7a4e6499da7123d6a04636e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d983b7a4e6499da7123d6a04636e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d983b7a4e6499da7123d6a04636e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04d983b7a4e6499da7123d6a04636e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04d983b7a4e6499da7123d6a04636e34.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rPHyTGKjcqqQNPdTmBCnZoDIbc=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.745251+00 2025-12-09 10:15:08.745255+00 10656 0003-67FWF#V5曲线 SPMX-20240815305832 \N \N \N 1 \N [{"file_id": "17008c85-1792-4fd9-a43d-557aea610698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50ec0a2b4b074a078aa41a8d5fae0091.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50ec0a2b4b074a078aa41a8d5fae0091.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50ec0a2b4b074a078aa41a8d5fae0091.jpg", "file_size": 21043, "is_delete": false, "file_type": 1, "original_file_name": "0003-67FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ec0a2b4b074a078aa41a8d5fae0091.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ec0a2b4b074a078aa41a8d5fae0091.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ec0a2b4b074a078aa41a8d5fae0091.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50ec0a2b4b074a078aa41a8d5fae0091.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50ec0a2b4b074a078aa41a8d5fae0091.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwVtwkLwknBcKa5NrrNZBxgMzvU=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.747239+00 2025-12-09 10:15:08.747244+00 10657 0003-68FWF#V5曲线 SPMX-20240815305842 \N \N \N 1 \N [{"file_id": "7b92da5d-7e52-4eab-a3b8-8cd03c7ec3d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f45a78a2c64480947e40dfcf48bb6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f45a78a2c64480947e40dfcf48bb6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f45a78a2c64480947e40dfcf48bb6f.jpg", "file_size": 14499, "is_delete": false, "file_type": 1, "original_file_name": "0003-68FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f45a78a2c64480947e40dfcf48bb6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f45a78a2c64480947e40dfcf48bb6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f45a78a2c64480947e40dfcf48bb6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f45a78a2c64480947e40dfcf48bb6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f45a78a2c64480947e40dfcf48bb6f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbnuvmn38-ApKoozINO9HKqXia4=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.74917+00 2025-12-09 10:15:08.749175+00 10658 DL30567#黄色2XL SPMX-20240815305838 \N \N \N 1 \N [{"file_id": "346e42d5-b8fe-4c96-8d8c-6d47bc7461a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74abf2a0f87742eab5be9a7510f0ed4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74abf2a0f87742eab5be9a7510f0ed4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74abf2a0f87742eab5be9a7510f0ed4c.jpg", "file_size": 17825, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abf2a0f87742eab5be9a7510f0ed4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abf2a0f87742eab5be9a7510f0ed4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abf2a0f87742eab5be9a7510f0ed4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74abf2a0f87742eab5be9a7510f0ed4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74abf2a0f87742eab5be9a7510f0ed4c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmUb9NpZI8cXfHCgWLvDerwDfmo=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.751172+00 2025-12-09 10:15:08.751177+00 10659 LJ9931#M粉 SPMX-20240815305839 \N \N \N 1 \N [{"file_id": "4760bf57-7724-4a1c-9c6f-12b8da8310ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c59c2228aeb41fe9cd24a6914847257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c59c2228aeb41fe9cd24a6914847257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c59c2228aeb41fe9cd24a6914847257.jpg", "file_size": 14511, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59c2228aeb41fe9cd24a6914847257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59c2228aeb41fe9cd24a6914847257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c59c2228aeb41fe9cd24a6914847257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c59c2228aeb41fe9cd24a6914847257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c59c2228aeb41fe9cd24a6914847257.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNPVJvOgND_urO0rbenkk1Vouq4=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.753151+00 2025-12-09 10:15:08.753156+00 10660 23-2116#A9-领子4XL SPMX-20240815305840 \N \N \N 1 \N [{"file_id": "d9ad9fec-51f3-4019-9003-f85d9b1577f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dcf46c9dbc1415da728d92f04873df2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dcf46c9dbc1415da728d92f04873df2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dcf46c9dbc1415da728d92f04873df2.jpg", "file_size": 13240, "is_delete": false, "file_type": 1, "original_file_name": "23-2116#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dcf46c9dbc1415da728d92f04873df2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dcf46c9dbc1415da728d92f04873df2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dcf46c9dbc1415da728d92f04873df2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dcf46c9dbc1415da728d92f04873df2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dcf46c9dbc1415da728d92f04873df2.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6xjkF5Zz7kwvB5-Pchkzm-1lyY=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.754886+00 2025-12-09 10:15:08.75489+00 10661 11-6G23#绿色 SPMX-20240815305829 \N \N \N 1 \N [{"file_id": "c14a8bb4-da35-4240-8e50-583e0908e7f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9d2ab0c455a4a03ba2eecded4aaaa59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9d2ab0c455a4a03ba2eecded4aaaa59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9d2ab0c455a4a03ba2eecded4aaaa59.jpg", "file_size": 24949, "is_delete": false, "file_type": 1, "original_file_name": "11-6G23#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d2ab0c455a4a03ba2eecded4aaaa59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d2ab0c455a4a03ba2eecded4aaaa59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d2ab0c455a4a03ba2eecded4aaaa59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9d2ab0c455a4a03ba2eecded4aaaa59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9d2ab0c455a4a03ba2eecded4aaaa59.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pgww--CB5oTIGXGAwq9YpL1DSEU=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.756569+00 2025-12-09 10:15:08.756574+00 10662 JTSS202FW#VS-D3 SPMX-20240815305836 \N \N \N 1 \N [{"file_id": "9f1120df-60ca-4746-ac46-51d673b8fea8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ec0f07e0b4641af853e1fcf31cf1c87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ec0f07e0b4641af853e1fcf31cf1c87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ec0f07e0b4641af853e1fcf31cf1c87.jpg", "file_size": 14562, "is_delete": false, "file_type": 1, "original_file_name": "JTSS202FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ec0f07e0b4641af853e1fcf31cf1c87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ec0f07e0b4641af853e1fcf31cf1c87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ec0f07e0b4641af853e1fcf31cf1c87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ec0f07e0b4641af853e1fcf31cf1c87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ec0f07e0b4641af853e1fcf31cf1c87.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPeqMdYwIEjfK6FFmhyNiLPF-WE=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.758293+00 2025-12-09 10:15:08.758298+00 10663 C389#黄色 SPMX-20240815305834 \N \N \N 1 \N [{"file_id": "209e48ac-d217-4312-be59-9b79ed137a82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c302f122fe49c0b55735831f182a8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c302f122fe49c0b55735831f182a8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c302f122fe49c0b55735831f182a8c.jpg", "file_size": 78727, "is_delete": false, "file_type": 1, "original_file_name": "C389#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c302f122fe49c0b55735831f182a8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c302f122fe49c0b55735831f182a8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c302f122fe49c0b55735831f182a8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c302f122fe49c0b55735831f182a8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c302f122fe49c0b55735831f182a8c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dpDQp4wSq5IblRy33NBZD4atQJE=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.76024+00 2025-12-09 10:15:08.760245+00 10664 FHXGPK-批布040-1 SPMX-20240815305835 \N \N \N 1 \N [{"file_id": "f6eb9326-50bc-41fb-95de-797c17ad9ed7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01b3c3cd680442e8b99aeb83169801e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01b3c3cd680442e8b99aeb83169801e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01b3c3cd680442e8b99aeb83169801e5.jpg", "file_size": 43018, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布040-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b3c3cd680442e8b99aeb83169801e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b3c3cd680442e8b99aeb83169801e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b3c3cd680442e8b99aeb83169801e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01b3c3cd680442e8b99aeb83169801e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01b3c3cd680442e8b99aeb83169801e5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-WnL8C6yI_0U68INDTk2RFvvtE=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.7622+00 2025-12-09 10:15:08.762204+00 10665 LZ1276#背心款4号色 SPMX-20240815305831 \N \N \N 1 \N [{"file_id": "38ec0809-e031-4c87-b98d-bb3c5d38fcd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f328f0e7b7244f78952d6e79698177db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f328f0e7b7244f78952d6e79698177db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f328f0e7b7244f78952d6e79698177db.jpg", "file_size": 14713, "is_delete": false, "file_type": 1, "original_file_name": "LZ1276#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f328f0e7b7244f78952d6e79698177db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f328f0e7b7244f78952d6e79698177db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f328f0e7b7244f78952d6e79698177db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f328f0e7b7244f78952d6e79698177db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f328f0e7b7244f78952d6e79698177db.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uNsvBK2f9lKJOequf76Y4T0qz7Q=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.763887+00 2025-12-09 10:15:08.763891+00 10666 HT053FWE#VS-D3 SPMX-20240815305837 \N \N \N 1 \N [{"file_id": "c4f3a179-48d3-4f25-90d8-cfd092b400c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce38cfa5b33c4c09a05426977922243c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce38cfa5b33c4c09a05426977922243c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce38cfa5b33c4c09a05426977922243c.jpg", "file_size": 9458, "is_delete": false, "file_type": 1, "original_file_name": "HT053FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce38cfa5b33c4c09a05426977922243c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce38cfa5b33c4c09a05426977922243c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce38cfa5b33c4c09a05426977922243c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce38cfa5b33c4c09a05426977922243c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce38cfa5b33c4c09a05426977922243c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_P2kUMAPvDGBf_69EVEC0hIVf8=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.765587+00 2025-12-09 10:15:08.765592+00 10667 LZ1276#背心款5号色 SPMX-20240815305843 \N \N \N 1 \N [{"file_id": "7bd70cf4-82c0-417a-9ffa-a31675384b69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db1a619a105248ed92b6f2df3e0692a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db1a619a105248ed92b6f2df3e0692a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db1a619a105248ed92b6f2df3e0692a1.jpg", "file_size": 14955, "is_delete": false, "file_type": 1, "original_file_name": "LZ1276#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a619a105248ed92b6f2df3e0692a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a619a105248ed92b6f2df3e0692a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a619a105248ed92b6f2df3e0692a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db1a619a105248ed92b6f2df3e0692a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db1a619a105248ed92b6f2df3e0692a1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kx0fB5HTaeShGCwIO2Uan_F3Fk=", "createTime": "2024-08-15 14:50:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.767278+00 2025-12-09 10:15:08.767283+00 10668 LJ9931#M白前片 SPMX-20240815305830 \N \N \N 1 \N [{"file_id": "093637d6-6df3-4b06-9e2d-a1fbd2dc3041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf146b84ab024e1095403c26e12e4e5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf146b84ab024e1095403c26e12e4e5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf146b84ab024e1095403c26e12e4e5e.jpg", "file_size": 11837, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf146b84ab024e1095403c26e12e4e5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf146b84ab024e1095403c26e12e4e5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf146b84ab024e1095403c26e12e4e5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf146b84ab024e1095403c26e12e4e5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf146b84ab024e1095403c26e12e4e5e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gB0OCXFyZ48TmgfTkb1yeo7HZPU=", "createTime": "2024-08-15 14:50:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.76901+00 2025-12-09 10:15:08.769014+00 10669 8121#绿色 SPMX-20240815305844 \N \N \N 1 \N [{"file_id": "4c6b577e-fdb8-4225-a08c-1427c810b1d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d631f3c74f640a6bd76320d97d1f956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d631f3c74f640a6bd76320d97d1f956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d631f3c74f640a6bd76320d97d1f956.jpg", "file_size": 8352, "is_delete": false, "file_type": 1, "original_file_name": "8121#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d631f3c74f640a6bd76320d97d1f956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d631f3c74f640a6bd76320d97d1f956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d631f3c74f640a6bd76320d97d1f956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d631f3c74f640a6bd76320d97d1f956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d631f3c74f640a6bd76320d97d1f956.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70b2S8Zw4TdS_6PyT60IL-NwMws=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.770729+00 2025-12-09 10:15:08.770735+00 10670 JTSS203FW#VS-D3 SPMX-20240815305848 \N \N \N 1 \N [{"file_id": "8707000a-3a88-47c1-aa4f-0d0033e2eaaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7607f09697914a81b724c2611bc7736f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7607f09697914a81b724c2611bc7736f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7607f09697914a81b724c2611bc7736f.jpg", "file_size": 23011, "is_delete": false, "file_type": 1, "original_file_name": "JTSS203FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7607f09697914a81b724c2611bc7736f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7607f09697914a81b724c2611bc7736f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7607f09697914a81b724c2611bc7736f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7607f09697914a81b724c2611bc7736f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7607f09697914a81b724c2611bc7736f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4YcOOBVCTgUw5fK5UlOsIPYUNUA=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.772432+00 2025-12-09 10:15:08.772436+00 10671 8121#黄色 SPMX-20240815305856 \N \N \N 1 \N [{"file_id": "6c4ed43e-49d6-4de8-8368-d391bedbc679", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85f880224af1494aa6a8aff660ae12da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85f880224af1494aa6a8aff660ae12da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85f880224af1494aa6a8aff660ae12da.jpg", "file_size": 9357, "is_delete": false, "file_type": 1, "original_file_name": "8121#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f880224af1494aa6a8aff660ae12da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f880224af1494aa6a8aff660ae12da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f880224af1494aa6a8aff660ae12da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85f880224af1494aa6a8aff660ae12da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85f880224af1494aa6a8aff660ae12da.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlDTdUX8-9TD_6Pivxf6V8lr0wU=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.7743+00 2025-12-09 10:15:08.774304+00 10672 11-6G25#彩蓝色M SPMX-20240815305853 \N \N \N 1 \N [{"file_id": "7ba50a44-5c33-496e-8c3a-840ec340248f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "349a56d5110143649dc29cae8e52f5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "349a56d5110143649dc29cae8e52f5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "349a56d5110143649dc29cae8e52f5f3.jpg", "file_size": 18807, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#彩蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/349a56d5110143649dc29cae8e52f5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/349a56d5110143649dc29cae8e52f5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/349a56d5110143649dc29cae8e52f5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/349a56d5110143649dc29cae8e52f5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/349a56d5110143649dc29cae8e52f5f3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qt3IDsLPdcNY01gdx4sDBS8--Hc=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.775999+00 2025-12-09 10:15:08.776004+00 10673 HT054FW#VS-D3 SPMX-20240815305849 \N \N \N 1 \N [{"file_id": "276e6486-2959-40d7-9823-5f492832e3c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52c1f341c8a14fa4a5b719c9d1f5df17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52c1f341c8a14fa4a5b719c9d1f5df17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52c1f341c8a14fa4a5b719c9d1f5df17.jpg", "file_size": 11288, "is_delete": false, "file_type": 1, "original_file_name": "HT054FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c1f341c8a14fa4a5b719c9d1f5df17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c1f341c8a14fa4a5b719c9d1f5df17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c1f341c8a14fa4a5b719c9d1f5df17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52c1f341c8a14fa4a5b719c9d1f5df17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52c1f341c8a14fa4a5b719c9d1f5df17.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVMpOV3OgPToNooWbaK8tNoZHtA=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.777679+00 2025-12-09 10:15:08.777683+00 10674 23-2117#A1-3XL SPMX-20240815305850 \N \N \N 1 \N [{"file_id": "0b0b4681-4381-49a5-907f-18fe23fff44e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "236344e6b3d4401fbdc9e12d57f07ddf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "236344e6b3d4401fbdc9e12d57f07ddf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "236344e6b3d4401fbdc9e12d57f07ddf.jpg", "file_size": 17226, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236344e6b3d4401fbdc9e12d57f07ddf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236344e6b3d4401fbdc9e12d57f07ddf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236344e6b3d4401fbdc9e12d57f07ddf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/236344e6b3d4401fbdc9e12d57f07ddf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/236344e6b3d4401fbdc9e12d57f07ddf.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L8vEyTLwYmNMvlu0TFaUstVM4tc=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.779365+00 2025-12-09 10:15:08.77937+00 10675 LJ9931#M绿 SPMX-20240815305851 \N \N \N 1 \N [{"file_id": "b95eab5a-0228-40d4-9840-ee2cfb1788c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d96c17523f734253863f4a235e33d7af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d96c17523f734253863f4a235e33d7af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d96c17523f734253863f4a235e33d7af.jpg", "file_size": 15365, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96c17523f734253863f4a235e33d7af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96c17523f734253863f4a235e33d7af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96c17523f734253863f4a235e33d7af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d96c17523f734253863f4a235e33d7af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d96c17523f734253863f4a235e33d7af.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlPfcZsoNBQJcLFB3q5VD_wtDvU=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.781097+00 2025-12-09 10:15:08.781101+00 10676 FHXGPK-批布040-3 SPMX-20240815305847 \N \N \N 1 \N [{"file_id": "138294e7-e210-4879-abd5-b7fe07a7d385", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d306f5ccdf4537aa789c34b337514c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d306f5ccdf4537aa789c34b337514c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d306f5ccdf4537aa789c34b337514c.jpg", "file_size": 46411, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布040-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d306f5ccdf4537aa789c34b337514c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d306f5ccdf4537aa789c34b337514c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d306f5ccdf4537aa789c34b337514c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d306f5ccdf4537aa789c34b337514c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d306f5ccdf4537aa789c34b337514c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiH9RfWfgQbzdHqYrLkgWOzYeHs=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.78283+00 2025-12-09 10:15:08.782835+00 10677 0003-69FWF#宝蓝色 SPMX-20240815305854 \N \N \N 1 \N [{"file_id": "61847b5c-d920-45bf-b556-2333559942ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a7cca5c3f2245b6877a8925c54aa9fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a7cca5c3f2245b6877a8925c54aa9fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a7cca5c3f2245b6877a8925c54aa9fe.jpg", "file_size": 19323, "is_delete": false, "file_type": 1, "original_file_name": "0003-69FWF#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7cca5c3f2245b6877a8925c54aa9fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7cca5c3f2245b6877a8925c54aa9fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7cca5c3f2245b6877a8925c54aa9fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a7cca5c3f2245b6877a8925c54aa9fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a7cca5c3f2245b6877a8925c54aa9fe.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9w-ocvu7ZUnnWHK921bHWeGXqU=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.784517+00 2025-12-09 10:15:08.784521+00 10678 LZ1277#背心款1号色 SPMX-20240815305855 \N \N \N 1 \N [{"file_id": "336c1104-29ef-4f40-a475-0f7817606141", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ee5215fd68443e28aa10fc7fac9d921.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ee5215fd68443e28aa10fc7fac9d921.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ee5215fd68443e28aa10fc7fac9d921.jpg", "file_size": 15356, "is_delete": false, "file_type": 1, "original_file_name": "LZ1277#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee5215fd68443e28aa10fc7fac9d921.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee5215fd68443e28aa10fc7fac9d921.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee5215fd68443e28aa10fc7fac9d921.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ee5215fd68443e28aa10fc7fac9d921.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ee5215fd68443e28aa10fc7fac9d921.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sADbSOzekskE-rxsglp6Lubfs9w=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.786485+00 2025-12-09 10:15:08.78649+00 10679 C389#黑色 SPMX-20240815305845 \N \N \N 1 \N [{"file_id": "a767f45a-060e-45a3-966f-39a09ac34451", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eec434ddf9844a1b2b8957e8117c253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eec434ddf9844a1b2b8957e8117c253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eec434ddf9844a1b2b8957e8117c253.jpg", "file_size": 71803, "is_delete": false, "file_type": 1, "original_file_name": "C389#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eec434ddf9844a1b2b8957e8117c253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eec434ddf9844a1b2b8957e8117c253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eec434ddf9844a1b2b8957e8117c253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eec434ddf9844a1b2b8957e8117c253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eec434ddf9844a1b2b8957e8117c253.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80esQH21PaYBcmEZEDQ4vsYvkSM=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.788441+00 2025-12-09 10:15:08.788446+00 10680 DL30567#黄色L SPMX-20240815305852 \N \N \N 1 \N [{"file_id": "d0a82909-cfe7-4a93-b488-9560c29cb1eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d0a576b2eda43e194665f76e93bbf6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d0a576b2eda43e194665f76e93bbf6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d0a576b2eda43e194665f76e93bbf6f.jpg", "file_size": 16152, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0a576b2eda43e194665f76e93bbf6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0a576b2eda43e194665f76e93bbf6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d0a576b2eda43e194665f76e93bbf6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d0a576b2eda43e194665f76e93bbf6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d0a576b2eda43e194665f76e93bbf6f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kt4qNe6iDhGB8yjAmddS8csfz8w=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.790174+00 2025-12-09 10:15:08.790178+00 10681 HT054FWE#粉色VS-D3 SPMX-20240815305860 \N \N \N 1 \N [{"file_id": "6e2f82c7-1f0c-40a6-b8cd-83ba78e24f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f03a1aed4874359b3cca903cec45ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f03a1aed4874359b3cca903cec45ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f03a1aed4874359b3cca903cec45ce7.jpg", "file_size": 16539, "is_delete": false, "file_type": 1, "original_file_name": "HT054FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f03a1aed4874359b3cca903cec45ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f03a1aed4874359b3cca903cec45ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f03a1aed4874359b3cca903cec45ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f03a1aed4874359b3cca903cec45ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f03a1aed4874359b3cca903cec45ce7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOOPH1JoJY3NoQCz_pmJ_FYITBU=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.792031+00 2025-12-09 10:15:08.792036+00 10682 C399#原版色 SPMX-20240815305857 \N \N \N 1 \N [{"file_id": "1b0d5eee-500a-4a80-b490-bafeae29fa75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b480f473735480ab1f79d06ac16e142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b480f473735480ab1f79d06ac16e142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b480f473735480ab1f79d06ac16e142.jpg", "file_size": 55699, "is_delete": false, "file_type": 1, "original_file_name": "C399#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480f473735480ab1f79d06ac16e142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480f473735480ab1f79d06ac16e142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480f473735480ab1f79d06ac16e142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b480f473735480ab1f79d06ac16e142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b480f473735480ab1f79d06ac16e142.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8GkVw-dMHVRLvpg1Kb8dBcZdKNQ=", "createTime": "2024-08-15 14:50:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.79396+00 2025-12-09 10:15:08.79397+00 10683 JTSS204FW#VS-D3 SPMX-20240815305858 \N \N \N 1 \N [{"file_id": "7b7f1aba-750a-4f61-8e87-de4076827ea3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00ca634ffea046099dfee9ff1ac96556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00ca634ffea046099dfee9ff1ac96556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00ca634ffea046099dfee9ff1ac96556.jpg", "file_size": 21066, "is_delete": false, "file_type": 1, "original_file_name": "JTSS204FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00ca634ffea046099dfee9ff1ac96556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00ca634ffea046099dfee9ff1ac96556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00ca634ffea046099dfee9ff1ac96556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00ca634ffea046099dfee9ff1ac96556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00ca634ffea046099dfee9ff1ac96556.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6hxRr8KLRGY7m45enfZnt8gHeE=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.795889+00 2025-12-09 10:15:08.795894+00 10684 FHXGPK-批布041-1 SPMX-20240815305859 \N \N \N 1 \N [{"file_id": "ec3e36f9-514c-4477-8235-aaa548188383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abe9e35263004299ae320ea3bf39444b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abe9e35263004299ae320ea3bf39444b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abe9e35263004299ae320ea3bf39444b.jpg", "file_size": 42856, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布041-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe9e35263004299ae320ea3bf39444b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe9e35263004299ae320ea3bf39444b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe9e35263004299ae320ea3bf39444b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abe9e35263004299ae320ea3bf39444b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abe9e35263004299ae320ea3bf39444b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61T32em5D-txuE-Ugf0sQbBeLik=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.797987+00 2025-12-09 10:15:08.797993+00 10685 0003-69FWF#粉色 SPMX-20240815305865 \N \N \N 1 \N [{"file_id": "86344f54-964b-4988-9f3c-a49a405d91fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "801828a69d474944ae0671aa1d3138fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "801828a69d474944ae0671aa1d3138fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "801828a69d474944ae0671aa1d3138fa.jpg", "file_size": 14774, "is_delete": false, "file_type": 1, "original_file_name": "0003-69FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801828a69d474944ae0671aa1d3138fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801828a69d474944ae0671aa1d3138fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801828a69d474944ae0671aa1d3138fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/801828a69d474944ae0671aa1d3138fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/801828a69d474944ae0671aa1d3138fa.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1CRNRkG0aqskDVpsl1FIVZUHro=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.799885+00 2025-12-09 10:15:08.79989+00 10686 DL30567#黄色XL SPMX-20240815305864 \N \N \N 1 \N [{"file_id": "ef483e37-4a00-4a48-b088-38bd897c48cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cea3aed61ac45cf9a0e30e1d96f4f98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cea3aed61ac45cf9a0e30e1d96f4f98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cea3aed61ac45cf9a0e30e1d96f4f98.jpg", "file_size": 16525, "is_delete": false, "file_type": 1, "original_file_name": "DL30567#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cea3aed61ac45cf9a0e30e1d96f4f98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cea3aed61ac45cf9a0e30e1d96f4f98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cea3aed61ac45cf9a0e30e1d96f4f98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cea3aed61ac45cf9a0e30e1d96f4f98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cea3aed61ac45cf9a0e30e1d96f4f98.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5M4XvyC9TryWP9GUfw6OE4Ostgg=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.802034+00 2025-12-09 10:15:08.80204+00 10687 11-6G25#彩蓝色S SPMX-20240815305863 \N \N \N 1 \N [{"file_id": "e055aa34-7a54-4b43-a0ed-2f427e2dd880", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a55bdd381be4c87888cedcfc81cfe5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a55bdd381be4c87888cedcfc81cfe5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a55bdd381be4c87888cedcfc81cfe5b.jpg", "file_size": 18579, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#彩蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a55bdd381be4c87888cedcfc81cfe5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a55bdd381be4c87888cedcfc81cfe5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a55bdd381be4c87888cedcfc81cfe5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a55bdd381be4c87888cedcfc81cfe5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a55bdd381be4c87888cedcfc81cfe5b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnsIDW7E0B0XfPaodpD81Di_uL8=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.803973+00 2025-12-09 10:15:08.803978+00 10688 LZ1277#背心款2号色 SPMX-20240815305868 \N \N \N 1 \N [{"file_id": "27d2e443-dbf8-4998-98e3-dd3e45a50d12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fba2c4a6f7be4db7a841330ae0259aac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fba2c4a6f7be4db7a841330ae0259aac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fba2c4a6f7be4db7a841330ae0259aac.jpg", "file_size": 15722, "is_delete": false, "file_type": 1, "original_file_name": "LZ1277#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba2c4a6f7be4db7a841330ae0259aac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba2c4a6f7be4db7a841330ae0259aac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba2c4a6f7be4db7a841330ae0259aac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fba2c4a6f7be4db7a841330ae0259aac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fba2c4a6f7be4db7a841330ae0259aac.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fp7nNvgpDCqgMBPQMBmVoQF32Hs=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.806186+00 2025-12-09 10:15:08.806191+00 10689 FHXGPK-批布041-2 SPMX-20240815305871 \N \N \N 1 \N [{"file_id": "4aff3429-2633-4bb5-9610-33248a185f35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa0cb6151e0941988cd20d2984d85a75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa0cb6151e0941988cd20d2984d85a75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa0cb6151e0941988cd20d2984d85a75.jpg", "file_size": 41294, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布041-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0cb6151e0941988cd20d2984d85a75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0cb6151e0941988cd20d2984d85a75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0cb6151e0941988cd20d2984d85a75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa0cb6151e0941988cd20d2984d85a75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa0cb6151e0941988cd20d2984d85a75.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFfgLWUWNiznMN5tZVgPUOZSLSU=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.808091+00 2025-12-09 10:15:08.808096+00 10690 23-2117#A1-3XL领子 SPMX-20240815305862 \N \N \N 1 \N [{"file_id": "d047928c-d0ae-487a-9215-99a7246e35b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ce36ef6a7f9404485965b8bb53d7f78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ce36ef6a7f9404485965b8bb53d7f78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ce36ef6a7f9404485965b8bb53d7f78.jpg", "file_size": 13790, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A1-3XL领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce36ef6a7f9404485965b8bb53d7f78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce36ef6a7f9404485965b8bb53d7f78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce36ef6a7f9404485965b8bb53d7f78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ce36ef6a7f9404485965b8bb53d7f78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ce36ef6a7f9404485965b8bb53d7f78.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIaSJCNmHAzu5j8jnAgNA2oz6Lo=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.809994+00 2025-12-09 10:15:08.81+00 10691 8122#短裤套装上衣 SPMX-20240815305866 \N \N \N 1 \N [{"file_id": "6fba2bfe-6b2e-49c0-9ebf-7c11b990f642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7282fb971e84988ba215d0af5bfa488.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7282fb971e84988ba215d0af5bfa488.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7282fb971e84988ba215d0af5bfa488.jpg", "file_size": 23398, "is_delete": false, "file_type": 1, "original_file_name": "8122#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7282fb971e84988ba215d0af5bfa488.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7282fb971e84988ba215d0af5bfa488.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7282fb971e84988ba215d0af5bfa488.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7282fb971e84988ba215d0af5bfa488.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7282fb971e84988ba215d0af5bfa488.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uxb7Yahpj1pjNLE5k9zZKxstkzA=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.812081+00 2025-12-09 10:15:08.812086+00 10692 JTSS205FW#VS-D3 SPMX-20240815305867 \N \N \N 1 \N [{"file_id": "a00a60ee-274f-4da9-bbdf-9e7470cbb8be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d01e63d46c3408bb32d627a732b87f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d01e63d46c3408bb32d627a732b87f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d01e63d46c3408bb32d627a732b87f7.jpg", "file_size": 11125, "is_delete": false, "file_type": 1, "original_file_name": "JTSS205FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d01e63d46c3408bb32d627a732b87f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d01e63d46c3408bb32d627a732b87f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d01e63d46c3408bb32d627a732b87f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d01e63d46c3408bb32d627a732b87f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d01e63d46c3408bb32d627a732b87f7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bcybAgou1lwtsmZ9qO_yl4xmQg=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.813992+00 2025-12-09 10:15:08.813997+00 10693 LJ9931#M补片 SPMX-20240815305861 \N \N \N 1 \N [{"file_id": "51017371-3826-4ed0-af10-bea06b834c32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "183b5e725a5543a8bf43dbfcf8299164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "183b5e725a5543a8bf43dbfcf8299164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "183b5e725a5543a8bf43dbfcf8299164.jpg", "file_size": 6958, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M补片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/183b5e725a5543a8bf43dbfcf8299164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/183b5e725a5543a8bf43dbfcf8299164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/183b5e725a5543a8bf43dbfcf8299164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/183b5e725a5543a8bf43dbfcf8299164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/183b5e725a5543a8bf43dbfcf8299164.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3p9p7qh0i_C4hAHQDskiw8Dmyk=", "createTime": "2024-08-15 14:50:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.816113+00 2025-12-09 10:15:08.816118+00 10694 HT054FWE#蓝色VS-D3 SPMX-20240815305869 \N \N \N 1 \N [{"file_id": "8c6d8b53-6bbe-456e-ad12-208314817cad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8bca40262644869e96aeb85ca4fd92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8bca40262644869e96aeb85ca4fd92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8bca40262644869e96aeb85ca4fd92.jpg", "file_size": 17997, "is_delete": false, "file_type": 1, "original_file_name": "HT054FWE#蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8bca40262644869e96aeb85ca4fd92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8bca40262644869e96aeb85ca4fd92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8bca40262644869e96aeb85ca4fd92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8bca40262644869e96aeb85ca4fd92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8bca40262644869e96aeb85ca4fd92.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lS5LBpnBRBWzsdy5uf56i6Wk7JA=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.818006+00 2025-12-09 10:15:08.818012+00 10695 C399#橙色 SPMX-20240815305870 \N \N \N 1 \N [{"file_id": "8b95547d-9dfc-4828-9c23-4619e374a7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a24bc49b9017449481f8addbdc059f65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a24bc49b9017449481f8addbdc059f65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a24bc49b9017449481f8addbdc059f65.jpg", "file_size": 54356, "is_delete": false, "file_type": 1, "original_file_name": "C399#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24bc49b9017449481f8addbdc059f65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24bc49b9017449481f8addbdc059f65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24bc49b9017449481f8addbdc059f65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a24bc49b9017449481f8addbdc059f65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a24bc49b9017449481f8addbdc059f65.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzeqED1b-DbhPNBe6pLKpbjsx4o=", "createTime": "2024-08-15 14:50:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.820157+00 2025-12-09 10:15:08.820162+00 10696 11-6G25#彩蓝色XL SPMX-20240815305881 \N \N \N 1 \N [{"file_id": "d3215ee2-eedc-4958-96e7-494f3ed7b251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6503e19c8151474499c9ec2a9917b3e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6503e19c8151474499c9ec2a9917b3e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6503e19c8151474499c9ec2a9917b3e2.jpg", "file_size": 18180, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#彩蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6503e19c8151474499c9ec2a9917b3e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6503e19c8151474499c9ec2a9917b3e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6503e19c8151474499c9ec2a9917b3e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6503e19c8151474499c9ec2a9917b3e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6503e19c8151474499c9ec2a9917b3e2.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZt2QSznmT8fP6kMbxVqhFdVbRI=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.822067+00 2025-12-09 10:15:08.822072+00 10697 LJ9931#M酒红 SPMX-20240815305872 \N \N \N 1 \N [{"file_id": "ed097a85-7d66-44db-9fb0-c73841eb4677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b383e92591417c8a35953130122f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b383e92591417c8a35953130122f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b383e92591417c8a35953130122f2f.jpg", "file_size": 15833, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b383e92591417c8a35953130122f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b383e92591417c8a35953130122f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b383e92591417c8a35953130122f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b383e92591417c8a35953130122f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b383e92591417c8a35953130122f2f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wvXkLTK1FS4kS3ijB1ChvyQQ50=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.824168+00 2025-12-09 10:15:08.824173+00 10698 FHXGPK-批布042-1 SPMX-20240815305879 \N \N \N 1 \N [{"file_id": "c45fef63-9cbd-40ec-a60b-03cae4eae2e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "215e1e7516c548fead91c949b82f5965.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "215e1e7516c548fead91c949b82f5965.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "215e1e7516c548fead91c949b82f5965.jpg", "file_size": 68107, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布042-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215e1e7516c548fead91c949b82f5965.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215e1e7516c548fead91c949b82f5965.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215e1e7516c548fead91c949b82f5965.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/215e1e7516c548fead91c949b82f5965.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/215e1e7516c548fead91c949b82f5965.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXvlUa_vBerlIAdsL--RrPcIJ9M=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.826051+00 2025-12-09 10:15:08.826057+00 10699 8122#短裤套装袖子 SPMX-20240815305878 \N \N \N 1 \N [{"file_id": "0ddbc488-f47a-468b-9b84-34e0a4bf6118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb76497b72a4a2781ff1834581ff67d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb76497b72a4a2781ff1834581ff67d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb76497b72a4a2781ff1834581ff67d.jpg", "file_size": 24359, "is_delete": false, "file_type": 1, "original_file_name": "8122#短裤套装袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb76497b72a4a2781ff1834581ff67d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb76497b72a4a2781ff1834581ff67d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb76497b72a4a2781ff1834581ff67d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb76497b72a4a2781ff1834581ff67d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb76497b72a4a2781ff1834581ff67d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEeTtNegP6Sm1iJFe6aJP_ZP3S4=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.828144+00 2025-12-09 10:15:08.828149+00 10700 23-2117#A1-4XL SPMX-20240815305873 \N \N \N 1 \N [{"file_id": "3a736f39-6b2e-45b9-a61d-96d8125adb22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6b18e95200145c994f6262012f51af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6b18e95200145c994f6262012f51af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6b18e95200145c994f6262012f51af1.jpg", "file_size": 15775, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b18e95200145c994f6262012f51af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b18e95200145c994f6262012f51af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b18e95200145c994f6262012f51af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6b18e95200145c994f6262012f51af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6b18e95200145c994f6262012f51af1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6uYtQ0JZLKSr0-jZsw7KBZR2bY=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.83026+00 2025-12-09 10:15:08.830266+00 10701 JTSS206FW#VS-D3 SPMX-20240815305874 \N \N \N 1 \N [{"file_id": "a9b8d4b3-9d19-45c4-87b4-ea0d72780adf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ab38f62fbc41e99d06a7076c181fc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ab38f62fbc41e99d06a7076c181fc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ab38f62fbc41e99d06a7076c181fc2.jpg", "file_size": 12100, "is_delete": false, "file_type": 1, "original_file_name": "JTSS206FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ab38f62fbc41e99d06a7076c181fc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ab38f62fbc41e99d06a7076c181fc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ab38f62fbc41e99d06a7076c181fc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ab38f62fbc41e99d06a7076c181fc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ab38f62fbc41e99d06a7076c181fc2.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kWsm9aGjT6gZ_xEY7B1piOBezuE=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.832141+00 2025-12-09 10:15:08.832146+00 10702 LZ1277#背心款3号色 SPMX-20240815305880 \N \N \N 1 \N [{"file_id": "588a5137-78f1-4228-81db-cdf9a61e6901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac74a278ae194dbc96464a1b83ca612b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac74a278ae194dbc96464a1b83ca612b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac74a278ae194dbc96464a1b83ca612b.jpg", "file_size": 14970, "is_delete": false, "file_type": 1, "original_file_name": "LZ1277#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74a278ae194dbc96464a1b83ca612b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74a278ae194dbc96464a1b83ca612b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac74a278ae194dbc96464a1b83ca612b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac74a278ae194dbc96464a1b83ca612b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac74a278ae194dbc96464a1b83ca612b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:id-esYZ-NreAkHQhj1m5Ey1fBmM=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.834253+00 2025-12-09 10:15:08.834258+00 10703 0003-69FWF#蓝色 SPMX-20240815305875 \N \N \N 1 \N [{"file_id": "fc0c15df-75c0-465e-a025-23ca0dbb4138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ea91fd4f4742c7902226c823f15b6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ea91fd4f4742c7902226c823f15b6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ea91fd4f4742c7902226c823f15b6c.jpg", "file_size": 16534, "is_delete": false, "file_type": 1, "original_file_name": "0003-69FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ea91fd4f4742c7902226c823f15b6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ea91fd4f4742c7902226c823f15b6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ea91fd4f4742c7902226c823f15b6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ea91fd4f4742c7902226c823f15b6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ea91fd4f4742c7902226c823f15b6c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSjBoQrJccTqVbR6JaYFVuBQ1oU=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.836166+00 2025-12-09 10:15:08.836172+00 10704 DL30718#墨绿色 SPMX-20240815305876 \N \N \N 1 \N [{"file_id": "bc0eee71-1e76-4d7b-810f-e75b211beb2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dae9430f0c934a5891f80e8949c90a53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dae9430f0c934a5891f80e8949c90a53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dae9430f0c934a5891f80e8949c90a53.jpg", "file_size": 20415, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae9430f0c934a5891f80e8949c90a53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae9430f0c934a5891f80e8949c90a53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dae9430f0c934a5891f80e8949c90a53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dae9430f0c934a5891f80e8949c90a53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dae9430f0c934a5891f80e8949c90a53.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Mhw2IpkK1Q5ZraovVWdTD9hwa4=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.838302+00 2025-12-09 10:15:08.838307+00 10705 8122#短裤套装裤子 SPMX-20240815305890 \N \N \N 1 \N [{"file_id": "eebcba0d-a046-4b51-af5f-f7262d89a48d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d185012807746be94674f801e9a8b4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d185012807746be94674f801e9a8b4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d185012807746be94674f801e9a8b4e.jpg", "file_size": 22263, "is_delete": false, "file_type": 1, "original_file_name": "8122#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d185012807746be94674f801e9a8b4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d185012807746be94674f801e9a8b4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d185012807746be94674f801e9a8b4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d185012807746be94674f801e9a8b4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d185012807746be94674f801e9a8b4e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ImXBYYOKYmiwViZOWH1nJjmjNg=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.840196+00 2025-12-09 10:15:08.840201+00 10706 11-6G25#杏色L SPMX-20240815305891 \N \N \N 1 \N [{"file_id": "02bc40ba-c61c-4a84-8d70-4756b257a084", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd7ad2304444e8c863be686e4c0c4d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd7ad2304444e8c863be686e4c0c4d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd7ad2304444e8c863be686e4c0c4d5.jpg", "file_size": 19115, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#杏色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7ad2304444e8c863be686e4c0c4d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7ad2304444e8c863be686e4c0c4d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7ad2304444e8c863be686e4c0c4d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd7ad2304444e8c863be686e4c0c4d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd7ad2304444e8c863be686e4c0c4d5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yFxWeJz1UVmT5cgVVlcr-6gjPY=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.842318+00 2025-12-09 10:15:08.842324+00 10707 HT055FWE#VS-D3 SPMX-20240815305894 \N \N \N 1 \N [{"file_id": "b668fdbb-37c8-488b-a7a1-46525e9f20bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf11313451ad4fa9b1c9d58f158765c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf11313451ad4fa9b1c9d58f158765c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf11313451ad4fa9b1c9d58f158765c9.jpg", "file_size": 19549, "is_delete": false, "file_type": 1, "original_file_name": "HT055FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf11313451ad4fa9b1c9d58f158765c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf11313451ad4fa9b1c9d58f158765c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf11313451ad4fa9b1c9d58f158765c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf11313451ad4fa9b1c9d58f158765c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf11313451ad4fa9b1c9d58f158765c9.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElJ7S0sjQ4JZvBK65fjjVp8UXH8=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.84424+00 2025-12-09 10:15:08.844245+00 10708 0003-6FWE#VS-D3番禺调色 SPMX-20240815305886 \N \N \N 1 \N [{"file_id": "122d120c-2652-4961-beb8-22ee82e4e70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "419da285090541429d82e4734396bcd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "419da285090541429d82e4734396bcd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "419da285090541429d82e4734396bcd3.jpg", "file_size": 24817, "is_delete": false, "file_type": 1, "original_file_name": "0003-6FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419da285090541429d82e4734396bcd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419da285090541429d82e4734396bcd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419da285090541429d82e4734396bcd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/419da285090541429d82e4734396bcd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/419da285090541429d82e4734396bcd3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM3qobvITOIbCltTFykSlw204Ew=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.846389+00 2025-12-09 10:15:08.846394+00 10709 FHXGPK-批布042-2 SPMX-20240815305892 \N \N \N 1 \N [{"file_id": "9fdca463-5adb-4d13-8eee-78257719da59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34dfc806a2574f6fa205a45e8997f7cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34dfc806a2574f6fa205a45e8997f7cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34dfc806a2574f6fa205a45e8997f7cc.jpg", "file_size": 69959, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布042-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34dfc806a2574f6fa205a45e8997f7cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34dfc806a2574f6fa205a45e8997f7cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34dfc806a2574f6fa205a45e8997f7cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34dfc806a2574f6fa205a45e8997f7cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34dfc806a2574f6fa205a45e8997f7cc.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rbCwRQPIKI4bXsB9M_KYseDxyQ=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.848287+00 2025-12-09 10:15:08.848292+00 10710 LJ9931#S-M-L-XL补片 SPMX-20240815305896 \N \N \N 1 \N [{"file_id": "b4cc23fd-e80e-4d10-8c6e-ad54557da25b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3dc31f2af1b41dcb430be4a22b63ed6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3dc31f2af1b41dcb430be4a22b63ed6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3dc31f2af1b41dcb430be4a22b63ed6.jpg", "file_size": 13531, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S-M-L-XL补片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3dc31f2af1b41dcb430be4a22b63ed6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3dc31f2af1b41dcb430be4a22b63ed6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3dc31f2af1b41dcb430be4a22b63ed6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3dc31f2af1b41dcb430be4a22b63ed6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3dc31f2af1b41dcb430be4a22b63ed6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfOA7kao5QSErfhbkw23NYmqlc4=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.850348+00 2025-12-09 10:15:08.850353+00 10711 DL30718#彩兰色 SPMX-20240815305889 \N \N \N 1 \N [{"file_id": "4ff18c9a-063d-42d3-a89b-e61e2d9c4c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fefe20586bb4b8d8191ca55af84407e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fefe20586bb4b8d8191ca55af84407e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fefe20586bb4b8d8191ca55af84407e.jpg", "file_size": 21514, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fefe20586bb4b8d8191ca55af84407e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fefe20586bb4b8d8191ca55af84407e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fefe20586bb4b8d8191ca55af84407e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fefe20586bb4b8d8191ca55af84407e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fefe20586bb4b8d8191ca55af84407e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-UTFnDuU1BfH8W56irF2RXnmRM=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.852684+00 2025-12-09 10:15:08.852689+00 10712 LZ1277#背心款4号色 SPMX-20240815305888 \N \N \N 1 \N [{"file_id": "966a7025-0f8b-4956-b4e3-8b7f3cdd9777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5fd3b376fce478ea237f094d140cb62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5fd3b376fce478ea237f094d140cb62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5fd3b376fce478ea237f094d140cb62.jpg", "file_size": 15655, "is_delete": false, "file_type": 1, "original_file_name": "LZ1277#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5fd3b376fce478ea237f094d140cb62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5fd3b376fce478ea237f094d140cb62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5fd3b376fce478ea237f094d140cb62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5fd3b376fce478ea237f094d140cb62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5fd3b376fce478ea237f094d140cb62.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hoznMWqUCLJrNNJig7bnWbZJav4=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.854641+00 2025-12-09 10:15:08.854646+00 10713 23-2117#A1-4XL领子 SPMX-20240815305885 \N \N \N 1 \N [{"file_id": "64971c1d-2e49-4f16-aaeb-ca66a371c28d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d1a8507221f4d5688342da73160d68d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d1a8507221f4d5688342da73160d68d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d1a8507221f4d5688342da73160d68d.jpg", "file_size": 13779, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A1-4XL领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a8507221f4d5688342da73160d68d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a8507221f4d5688342da73160d68d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a8507221f4d5688342da73160d68d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d1a8507221f4d5688342da73160d68d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d1a8507221f4d5688342da73160d68d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKP3DcEY2MMTkUK8oS6-yySiBCk=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.856807+00 2025-12-09 10:15:08.856812+00 10714 JTSS207FW#VS-D3 SPMX-20240815305887 \N \N \N 1 \N [{"file_id": "6b25b743-3c43-4139-9e11-968069dfc21e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg", "file_size": 13055, "is_delete": false, "file_type": 1, "original_file_name": "JTSS207FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c55f3d4b38ec4c9ea2ffcf07e8455fe8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fIGqR_UrQ40AFq3vwDFYBPNUwa0=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.858986+00 2025-12-09 10:15:08.858991+00 10715 C399#黑色 SPMX-20240815305893 \N \N \N 1 \N [{"file_id": "5daa209a-7c78-47a0-b552-b3c6677eeb1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fe1d4b86344f79a7aa60a1631ef8cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fe1d4b86344f79a7aa60a1631ef8cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fe1d4b86344f79a7aa60a1631ef8cb.jpg", "file_size": 47889, "is_delete": false, "file_type": 1, "original_file_name": "C399#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fe1d4b86344f79a7aa60a1631ef8cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fe1d4b86344f79a7aa60a1631ef8cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fe1d4b86344f79a7aa60a1631ef8cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fe1d4b86344f79a7aa60a1631ef8cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fe1d4b86344f79a7aa60a1631ef8cb.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w9fjcVjOtvHVTKLGehhpr6ZNHCM=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.861411+00 2025-12-09 10:15:08.861416+00 10716 0003-6FWE#VS-D3龙潭调色 SPMX-20240815305895 \N \N \N 1 \N [{"file_id": "e92adfd9-8a6b-4feb-9e59-5cc957e3920a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c777d38d4eeb4b9cbb9103bdc933be20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c777d38d4eeb4b9cbb9103bdc933be20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c777d38d4eeb4b9cbb9103bdc933be20.jpg", "file_size": 23661, "is_delete": false, "file_type": 1, "original_file_name": "0003-6FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c777d38d4eeb4b9cbb9103bdc933be20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c777d38d4eeb4b9cbb9103bdc933be20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c777d38d4eeb4b9cbb9103bdc933be20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c777d38d4eeb4b9cbb9103bdc933be20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c777d38d4eeb4b9cbb9103bdc933be20.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ZStnSJKOSFv2pWWcVAVHX1-auU=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.863607+00 2025-12-09 10:15:08.863613+00 10717 HT055FW#VS-D3 SPMX-20240815305884 \N \N \N 1 \N [{"file_id": "ff73511a-5df2-4a83-a1fb-cf1a25817792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "281ec9438f154d2e87b7177be1ba1d3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "281ec9438f154d2e87b7177be1ba1d3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "281ec9438f154d2e87b7177be1ba1d3f.jpg", "file_size": 15018, "is_delete": false, "file_type": 1, "original_file_name": "HT055FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281ec9438f154d2e87b7177be1ba1d3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281ec9438f154d2e87b7177be1ba1d3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281ec9438f154d2e87b7177be1ba1d3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/281ec9438f154d2e87b7177be1ba1d3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/281ec9438f154d2e87b7177be1ba1d3f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5PPwH5SgFuEbuujjiC5aY0vW470=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.865801+00 2025-12-09 10:15:08.865807+00 10718 C399#绿色 SPMX-20240815305882 \N \N \N 1 \N [{"file_id": "c6688b5d-c6c1-4e48-8348-c30e1f6a9629", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6425af9a3d634d348f12684ccc5c14f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6425af9a3d634d348f12684ccc5c14f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6425af9a3d634d348f12684ccc5c14f5.jpg", "file_size": 50036, "is_delete": false, "file_type": 1, "original_file_name": "C399#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6425af9a3d634d348f12684ccc5c14f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6425af9a3d634d348f12684ccc5c14f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6425af9a3d634d348f12684ccc5c14f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6425af9a3d634d348f12684ccc5c14f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6425af9a3d634d348f12684ccc5c14f5.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sU0iD0GgAWbojR2WYy5Hsrf4bWY=", "createTime": "2024-08-15 14:50:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.867973+00 2025-12-09 10:15:08.867978+00 10719 LJ9931#M黑 SPMX-20240815305883 \N \N \N 1 \N [{"file_id": "25c8d373-00f7-4b48-af8c-a5b5bab4dcbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "482a7d181ee14bc1b3ea079649db27bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "482a7d181ee14bc1b3ea079649db27bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "482a7d181ee14bc1b3ea079649db27bb.jpg", "file_size": 17520, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#M黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482a7d181ee14bc1b3ea079649db27bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482a7d181ee14bc1b3ea079649db27bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482a7d181ee14bc1b3ea079649db27bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/482a7d181ee14bc1b3ea079649db27bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/482a7d181ee14bc1b3ea079649db27bb.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UgWr-aPgdVA20v0P6QYTTXEMhAM=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.870385+00 2025-12-09 10:15:08.87039+00 10720 8123#短裤套装白色上衣 SPMX-20240815305900 \N \N \N 1 \N [{"file_id": "0620fa6f-de66-4469-9323-34214bd6f450", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39d2ac005e9940a192958a793d7c0566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39d2ac005e9940a192958a793d7c0566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39d2ac005e9940a192958a793d7c0566.jpg", "file_size": 18022, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装白色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d2ac005e9940a192958a793d7c0566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d2ac005e9940a192958a793d7c0566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d2ac005e9940a192958a793d7c0566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39d2ac005e9940a192958a793d7c0566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39d2ac005e9940a192958a793d7c0566.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDCfsC_01igsMR7jkczIjQk3n7o=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.872812+00 2025-12-09 10:15:08.872817+00 10721 23-2117#A10-3XL SPMX-20240815305897 \N \N \N 1 \N [{"file_id": "a3b76b9e-739c-4b39-a6c8-1c3be9fd776b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "840d4372774a4508913aba1450e6b714.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "840d4372774a4508913aba1450e6b714.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "840d4372774a4508913aba1450e6b714.jpg", "file_size": 17856, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/840d4372774a4508913aba1450e6b714.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/840d4372774a4508913aba1450e6b714.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/840d4372774a4508913aba1450e6b714.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/840d4372774a4508913aba1450e6b714.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/840d4372774a4508913aba1450e6b714.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:veDsRq-pi79Rj0vUCsdOb2QvsyM=", "createTime": "2024-08-15 14:50:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.874719+00 2025-12-09 10:15:08.874724+00 10722 11-6G25#杏色M SPMX-20240815305902 \N \N \N 1 \N [{"file_id": "e8dd9ddf-7d00-4e73-bfad-239084118211", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "235a5f3450d5469d8ec13e7f7e6fb517.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "235a5f3450d5469d8ec13e7f7e6fb517.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "235a5f3450d5469d8ec13e7f7e6fb517.jpg", "file_size": 18252, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#杏色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235a5f3450d5469d8ec13e7f7e6fb517.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235a5f3450d5469d8ec13e7f7e6fb517.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235a5f3450d5469d8ec13e7f7e6fb517.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/235a5f3450d5469d8ec13e7f7e6fb517.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/235a5f3450d5469d8ec13e7f7e6fb517.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzJ_HWVXbvG0FsQ2JETuxaqSRLY=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.876608+00 2025-12-09 10:15:08.876614+00 10723 LZ1277#背心款5号色 SPMX-20240815305899 \N \N \N 1 \N [{"file_id": "d79b65b2-f180-4641-a367-4c124a5f203f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b381ec70428743bc849d97b95e788904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b381ec70428743bc849d97b95e788904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b381ec70428743bc849d97b95e788904.jpg", "file_size": 13721, "is_delete": false, "file_type": 1, "original_file_name": "LZ1277#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b381ec70428743bc849d97b95e788904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b381ec70428743bc849d97b95e788904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b381ec70428743bc849d97b95e788904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b381ec70428743bc849d97b95e788904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b381ec70428743bc849d97b95e788904.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wJcGGiuoFGcr01jlgVGVeFTIYj8=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.878532+00 2025-12-09 10:15:08.878537+00 10724 JTSS208FW#VS-D3 SPMX-20240815305898 \N \N \N 1 \N [{"file_id": "dbd2b0f0-5904-4cb1-b88e-d64c3ba6f808", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff4a33de9064de3806599564692308d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff4a33de9064de3806599564692308d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff4a33de9064de3806599564692308d.jpg", "file_size": 18095, "is_delete": false, "file_type": 1, "original_file_name": "JTSS208FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4a33de9064de3806599564692308d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4a33de9064de3806599564692308d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4a33de9064de3806599564692308d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff4a33de9064de3806599564692308d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff4a33de9064de3806599564692308d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnQTsS2VYJIEGMZHBVSiLm2ex3o=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.880637+00 2025-12-09 10:15:08.880642+00 10725 DL30718#果绿色 SPMX-20240815305901 \N \N \N 1 \N [{"file_id": "ec2be1be-e52a-4760-bb00-2b2b19737ad9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38c08e4adccc4325ac854e64932d8a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38c08e4adccc4325ac854e64932d8a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38c08e4adccc4325ac854e64932d8a97.jpg", "file_size": 20552, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#果绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c08e4adccc4325ac854e64932d8a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c08e4adccc4325ac854e64932d8a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c08e4adccc4325ac854e64932d8a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38c08e4adccc4325ac854e64932d8a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38c08e4adccc4325ac854e64932d8a97.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Au-UTntD3osk6l-wYjeo8YKHY-E=", "createTime": "2024-08-15 14:50:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.88255+00 2025-12-09 10:15:08.882555+00 10726 HT055FWE#蓝 SPMX-20240815305915 \N \N \N 1 \N [{"file_id": "e96d7a40-d580-4fb8-95b1-800937e82ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa34137be8984a6b9f50b335a5ee0f08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa34137be8984a6b9f50b335a5ee0f08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa34137be8984a6b9f50b335a5ee0f08.jpg", "file_size": 12936, "is_delete": false, "file_type": 1, "original_file_name": "HT055FWE#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa34137be8984a6b9f50b335a5ee0f08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa34137be8984a6b9f50b335a5ee0f08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa34137be8984a6b9f50b335a5ee0f08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa34137be8984a6b9f50b335a5ee0f08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa34137be8984a6b9f50b335a5ee0f08.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uUqQBf4QTTmv6jF0CFXbpoiqwW8=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.884639+00 2025-12-09 10:15:08.884644+00 10727 8123#短裤套装白色袖子 SPMX-20240815305908 \N \N \N 1 \N [{"file_id": "a1225bec-5928-4465-85a0-bbadede5e140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f60f262a442348db828fd96c7c496d71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f60f262a442348db828fd96c7c496d71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f60f262a442348db828fd96c7c496d71.jpg", "file_size": 10315, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装白色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60f262a442348db828fd96c7c496d71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60f262a442348db828fd96c7c496d71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60f262a442348db828fd96c7c496d71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f60f262a442348db828fd96c7c496d71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f60f262a442348db828fd96c7c496d71.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXGHN80R3k_FPL16iZvgjFEUa7g=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.886548+00 2025-12-09 10:15:08.886553+00 10728 11-6G25#杏色S SPMX-20240815305913 \N \N \N 1 \N [{"file_id": "b96711ee-eb4b-494a-854f-2c67ba089d38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4498b8f46572427db5a681e9bbdc6411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4498b8f46572427db5a681e9bbdc6411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4498b8f46572427db5a681e9bbdc6411.jpg", "file_size": 18706, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#杏色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4498b8f46572427db5a681e9bbdc6411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4498b8f46572427db5a681e9bbdc6411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4498b8f46572427db5a681e9bbdc6411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4498b8f46572427db5a681e9bbdc6411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4498b8f46572427db5a681e9bbdc6411.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Q6tXje_kkg0ypE_WpZaL-EpGzU=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.888669+00 2025-12-09 10:15:08.888675+00 10729 DL30718#粉色 SPMX-20240815305912 \N \N \N 1 \N [{"file_id": "fca8e124-f8b3-43ff-b659-9b00f3a831eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13470622c38844cd8c2290ce0262d61a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13470622c38844cd8c2290ce0262d61a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13470622c38844cd8c2290ce0262d61a.jpg", "file_size": 21040, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13470622c38844cd8c2290ce0262d61a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13470622c38844cd8c2290ce0262d61a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13470622c38844cd8c2290ce0262d61a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13470622c38844cd8c2290ce0262d61a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13470622c38844cd8c2290ce0262d61a.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhJC33FHRIhtxuevJsiW5KxSfhQ=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.89057+00 2025-12-09 10:15:08.890575+00 10730 HT055FWE#红 SPMX-20240815305905 \N \N \N 1 \N [{"file_id": "233d8194-500f-4946-b01c-26a04a276f9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58aaf835141e409f92cabedd0e4c94e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58aaf835141e409f92cabedd0e4c94e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58aaf835141e409f92cabedd0e4c94e6.jpg", "file_size": 13157, "is_delete": false, "file_type": 1, "original_file_name": "HT055FWE#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58aaf835141e409f92cabedd0e4c94e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58aaf835141e409f92cabedd0e4c94e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58aaf835141e409f92cabedd0e4c94e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58aaf835141e409f92cabedd0e4c94e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58aaf835141e409f92cabedd0e4c94e6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RXj10EhOjFC9P0ljAXAs5vB3IIQ=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.892682+00 2025-12-09 10:15:08.892687+00 10731 JTSS209FW#VS-D3 SPMX-20240815305909 \N \N \N 1 \N [{"file_id": "11d641d4-ea82-41d5-895a-bd19b1871d92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51b4e1d5165047108b2f9c0ebd63f93c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51b4e1d5165047108b2f9c0ebd63f93c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51b4e1d5165047108b2f9c0ebd63f93c.jpg", "file_size": 19155, "is_delete": false, "file_type": 1, "original_file_name": "JTSS209FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e1d5165047108b2f9c0ebd63f93c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e1d5165047108b2f9c0ebd63f93c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e1d5165047108b2f9c0ebd63f93c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51b4e1d5165047108b2f9c0ebd63f93c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51b4e1d5165047108b2f9c0ebd63f93c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0flGKGiAzO8wFr0BcTgMvuTzwVE=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.894594+00 2025-12-09 10:15:08.8946+00 10732 LZ1278#背心款2号色 SPMX-20240815305914 \N \N \N 1 \N [{"file_id": "d2333a19-1b31-4d3e-ae84-c9d6b2a7f769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "847eb1c9d82e4f58bd0942d8c189b16e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "847eb1c9d82e4f58bd0942d8c189b16e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "847eb1c9d82e4f58bd0942d8c189b16e.jpg", "file_size": 16953, "is_delete": false, "file_type": 1, "original_file_name": "LZ1278#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847eb1c9d82e4f58bd0942d8c189b16e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847eb1c9d82e4f58bd0942d8c189b16e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847eb1c9d82e4f58bd0942d8c189b16e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/847eb1c9d82e4f58bd0942d8c189b16e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/847eb1c9d82e4f58bd0942d8c189b16e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vr3F4vwzSSYLHfz8uacoJ0NYues=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.896727+00 2025-12-09 10:15:08.896732+00 10733 FHXGPK-批布042-3 SPMX-20240815305907 \N \N \N 1 \N [{"file_id": "437da629-56dd-4f9b-bc7c-df8567c83078", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88a4c0e49b024053a6346dbeef2faaee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88a4c0e49b024053a6346dbeef2faaee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88a4c0e49b024053a6346dbeef2faaee.jpg", "file_size": 84716, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布042-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a4c0e49b024053a6346dbeef2faaee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a4c0e49b024053a6346dbeef2faaee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a4c0e49b024053a6346dbeef2faaee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88a4c0e49b024053a6346dbeef2faaee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88a4c0e49b024053a6346dbeef2faaee.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rI6VLa1GPbNeiijpSI83uWD3DE=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.898617+00 2025-12-09 10:15:08.898622+00 10734 0003-6FWF#上衣 SPMX-20240815305903 \N \N \N 1 \N [{"file_id": "4821c496-6267-44cf-adad-4a97677129dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "779f56bc943441feb7e121e47d7903ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "779f56bc943441feb7e121e47d7903ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "779f56bc943441feb7e121e47d7903ae.jpg", "file_size": 11389, "is_delete": false, "file_type": 1, "original_file_name": "0003-6FWF#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779f56bc943441feb7e121e47d7903ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779f56bc943441feb7e121e47d7903ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779f56bc943441feb7e121e47d7903ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/779f56bc943441feb7e121e47d7903ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/779f56bc943441feb7e121e47d7903ae.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TlmBSuEDUKD8ITUDZLs05u4Xth4=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.900739+00 2025-12-09 10:15:08.900744+00 10735 C4 SPMX-20240815305906 \N \N \N 1 \N [{"file_id": "3c7e570d-258a-438c-a416-98c7066cb35f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e258c207394741ad9830b96514adaefd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e258c207394741ad9830b96514adaefd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e258c207394741ad9830b96514adaefd.jpg", "file_size": 54677, "is_delete": false, "file_type": 1, "original_file_name": "C4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e258c207394741ad9830b96514adaefd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e258c207394741ad9830b96514adaefd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e258c207394741ad9830b96514adaefd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e258c207394741ad9830b96514adaefd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e258c207394741ad9830b96514adaefd.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQxJl1w2Hf9UcuGBSh_ZqC2_M-E=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.904733+00 2025-12-09 10:15:08.904738+00 10737 LZ1278#背心款1号色 SPMX-20240815305904 \N \N \N 1 \N [{"file_id": "177160af-a137-4e90-a5c8-96942d692669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4688b8d131f649f68d80546c2532f166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4688b8d131f649f68d80546c2532f166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4688b8d131f649f68d80546c2532f166.jpg", "file_size": 17556, "is_delete": false, "file_type": 1, "original_file_name": "LZ1278#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4688b8d131f649f68d80546c2532f166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4688b8d131f649f68d80546c2532f166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4688b8d131f649f68d80546c2532f166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4688b8d131f649f68d80546c2532f166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4688b8d131f649f68d80546c2532f166.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R57GaG5BUqNUZjfZtBXk3IJ9gpE=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.902629+00 2025-12-09 10:15:08.902634+00 10736 LJ9931#S深蓝 SPMX-20240815305911 \N \N \N 1 \N [{"file_id": "75c2e0d3-5b12-47c9-afb4-4a68abb236e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a57393cc8dc40469d39f8c4e5336d7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a57393cc8dc40469d39f8c4e5336d7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a57393cc8dc40469d39f8c4e5336d7c.jpg", "file_size": 15937, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a57393cc8dc40469d39f8c4e5336d7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a57393cc8dc40469d39f8c4e5336d7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a57393cc8dc40469d39f8c4e5336d7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a57393cc8dc40469d39f8c4e5336d7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a57393cc8dc40469d39f8c4e5336d7c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0JDN0VQlUkBeJvKo5tTsnbZ9dJg=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.908962+00 2025-12-09 10:15:08.908968+00 10738 0003-6FWF#下摆 SPMX-20240815305916 \N \N \N 1 \N [{"file_id": "4f152d0f-2755-4ddd-8c39-709501245be9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c273ad898749e5a18ae4a57e918a23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c273ad898749e5a18ae4a57e918a23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c273ad898749e5a18ae4a57e918a23.jpg", "file_size": 16430, "is_delete": false, "file_type": 1, "original_file_name": "0003-6FWF#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c273ad898749e5a18ae4a57e918a23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c273ad898749e5a18ae4a57e918a23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c273ad898749e5a18ae4a57e918a23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c273ad898749e5a18ae4a57e918a23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c273ad898749e5a18ae4a57e918a23.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93alz6KY5p_HYPQnFkz4dujxKQI=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.496632+00 2025-12-09 10:15:37.496638+00 16799 LZ135FWF#5号色短袖 SPMX-20240815312011 \N \N \N 1 \N [{"file_id": "1c22b492-a5ed-40e0-9fa2-384f2f08af09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54ca1e81187d4f83aea45b053e815d02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54ca1e81187d4f83aea45b053e815d02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54ca1e81187d4f83aea45b053e815d02.jpg", "file_size": 16421, "is_delete": false, "file_type": 1, "original_file_name": "LZ135FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ca1e81187d4f83aea45b053e815d02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ca1e81187d4f83aea45b053e815d02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ca1e81187d4f83aea45b053e815d02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54ca1e81187d4f83aea45b053e815d02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54ca1e81187d4f83aea45b053e815d02.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKpg8qnahbaRcTxqWINyXqom1Nc=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.910859+00 2025-12-09 10:15:08.910865+00 10739 HT056FW#VS-D3 SPMX-20240815305926 \N \N \N 1 \N [{"file_id": "d0c4531d-8ce0-49aa-9e9d-ea9346ef0a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a68203cee134093bf54b2fe6d31ac1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a68203cee134093bf54b2fe6d31ac1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a68203cee134093bf54b2fe6d31ac1e.jpg", "file_size": 7128, "is_delete": false, "file_type": 1, "original_file_name": "HT056FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68203cee134093bf54b2fe6d31ac1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68203cee134093bf54b2fe6d31ac1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a68203cee134093bf54b2fe6d31ac1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a68203cee134093bf54b2fe6d31ac1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a68203cee134093bf54b2fe6d31ac1e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXNBzYJSrp3Z30D_0_gslg_Ymqc=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.912775+00 2025-12-09 10:15:08.912781+00 10740 LJ9931#S白 SPMX-20240815305928 \N \N \N 1 \N [{"file_id": "64f615b2-c34b-4e5a-b5b0-ee284d07d63b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db121322ff04495b3d299b348563353.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db121322ff04495b3d299b348563353.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db121322ff04495b3d299b348563353.jpg", "file_size": 15238, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db121322ff04495b3d299b348563353.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db121322ff04495b3d299b348563353.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db121322ff04495b3d299b348563353.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db121322ff04495b3d299b348563353.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db121322ff04495b3d299b348563353.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fBg6S3netJsCpykvqh3YB_m5L5M=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.914895+00 2025-12-09 10:15:08.9149+00 10741 C402#墨绿 SPMX-20240815305918 \N \N \N 1 \N [{"file_id": "95857cc8-cb6d-44d8-aea9-cce2a100d505", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c4c34fae54490d95d305026dce5c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c4c34fae54490d95d305026dce5c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c4c34fae54490d95d305026dce5c3e.jpg", "file_size": 65574, "is_delete": false, "file_type": 1, "original_file_name": "C402#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c4c34fae54490d95d305026dce5c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c4c34fae54490d95d305026dce5c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c4c34fae54490d95d305026dce5c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c4c34fae54490d95d305026dce5c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c4c34fae54490d95d305026dce5c3e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ue-FYsx8NHDBFzTveGdr6CbtTDY=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.916812+00 2025-12-09 10:15:08.916817+00 10742 0003-70FWF#V5曲线 SPMX-20240815305927 \N \N \N 1 \N [{"file_id": "acfb1510-6298-4ce9-ab93-59a472fd472a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a640a5279114f4bba65b6e90f1d0ed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a640a5279114f4bba65b6e90f1d0ed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a640a5279114f4bba65b6e90f1d0ed3.jpg", "file_size": 12181, "is_delete": false, "file_type": 1, "original_file_name": "0003-70FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a640a5279114f4bba65b6e90f1d0ed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a640a5279114f4bba65b6e90f1d0ed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a640a5279114f4bba65b6e90f1d0ed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a640a5279114f4bba65b6e90f1d0ed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a640a5279114f4bba65b6e90f1d0ed3.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Octyr77s_eZKtpyPbP9eSROBP4=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.92699+00 2025-12-09 10:15:08.926995+00 10747 11-6G25#杏色XL SPMX-20240815305921 \N \N \N 1 \N [{"file_id": "fdb6fbbc-9478-47a5-8e08-d4075b54455d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg", "file_size": 19129, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#杏色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9e7c89c4ffb4a98b2fe7a3d8439885b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hm9tDJboaNfFsuyGgDemCppFWgk=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.918941+00 2025-12-09 10:15:08.918947+00 10743 8123#短裤套装白色裤子 SPMX-20240815305919 \N \N \N 1 \N [{"file_id": "83de0125-8ea3-4209-91ce-575c45097294", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc83a6611c3c40e3be67bc9d35145f38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc83a6611c3c40e3be67bc9d35145f38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc83a6611c3c40e3be67bc9d35145f38.jpg", "file_size": 17324, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装白色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc83a6611c3c40e3be67bc9d35145f38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc83a6611c3c40e3be67bc9d35145f38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc83a6611c3c40e3be67bc9d35145f38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc83a6611c3c40e3be67bc9d35145f38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc83a6611c3c40e3be67bc9d35145f38.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kv3oM9jrsvC0xloo4458960miqw=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.920861+00 2025-12-09 10:15:08.920867+00 10744 DL30718#蓝绿色 SPMX-20240815305923 \N \N \N 1 \N [{"file_id": "359fd21c-0a73-41ed-a2f7-9c210b857c96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98ee2abbead24b0e86c2fad8b56cb0ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98ee2abbead24b0e86c2fad8b56cb0ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98ee2abbead24b0e86c2fad8b56cb0ce.jpg", "file_size": 21422, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ee2abbead24b0e86c2fad8b56cb0ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ee2abbead24b0e86c2fad8b56cb0ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ee2abbead24b0e86c2fad8b56cb0ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98ee2abbead24b0e86c2fad8b56cb0ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98ee2abbead24b0e86c2fad8b56cb0ce.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxDErUsRiyheb_sbwSYKf8zfkDs=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.922972+00 2025-12-09 10:15:08.922978+00 10745 JTSS210FW#VS-D3 SPMX-20240815305924 \N \N \N 1 \N [{"file_id": "374a8055-7629-4f3a-9e36-63537be89291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efd460aa8eb9447b8398dd319fe466f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efd460aa8eb9447b8398dd319fe466f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efd460aa8eb9447b8398dd319fe466f6.jpg", "file_size": 15866, "is_delete": false, "file_type": 1, "original_file_name": "JTSS210FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd460aa8eb9447b8398dd319fe466f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd460aa8eb9447b8398dd319fe466f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd460aa8eb9447b8398dd319fe466f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efd460aa8eb9447b8398dd319fe466f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efd460aa8eb9447b8398dd319fe466f6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x15wlvt6FmFX2nxEiTN5lHpCOCY=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.924869+00 2025-12-09 10:15:08.924874+00 10746 FHXGPK-批布043-1 SPMX-20240815305917 \N \N \N 1 \N [{"file_id": "ce9f5b08-d69c-4820-a81b-78a5d60dfabe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9726a2109bf4e49ab961e387e095875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9726a2109bf4e49ab961e387e095875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9726a2109bf4e49ab961e387e095875.jpg", "file_size": 42062, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布043-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9726a2109bf4e49ab961e387e095875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9726a2109bf4e49ab961e387e095875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9726a2109bf4e49ab961e387e095875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9726a2109bf4e49ab961e387e095875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9726a2109bf4e49ab961e387e095875.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jqtEEDc9Dg4c-Tvf6mV8pmhmDzY=", "createTime": "2024-08-15 14:50:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.928902+00 2025-12-09 10:15:08.928908+00 10748 LJ9931#S灰 SPMX-20240815305920 \N \N \N 1 \N [{"file_id": "f40b24d6-5662-4a5d-9e39-1dbe953b4ec8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ca253872a05466885e697ad1c0bd86f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ca253872a05466885e697ad1c0bd86f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ca253872a05466885e697ad1c0bd86f.jpg", "file_size": 14826, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca253872a05466885e697ad1c0bd86f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca253872a05466885e697ad1c0bd86f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca253872a05466885e697ad1c0bd86f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ca253872a05466885e697ad1c0bd86f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ca253872a05466885e697ad1c0bd86f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IvStRKBtX3voQ9vbsLoyiCCOn1Q=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.931057+00 2025-12-09 10:15:08.931062+00 10749 LZ1278#背心款3号色 SPMX-20240815305925 \N \N \N 1 \N [{"file_id": "53d96685-756e-462d-8054-5606ee9bc170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0984169f5ca442e85c0bce99c105f28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0984169f5ca442e85c0bce99c105f28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0984169f5ca442e85c0bce99c105f28.jpg", "file_size": 16990, "is_delete": false, "file_type": 1, "original_file_name": "LZ1278#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0984169f5ca442e85c0bce99c105f28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0984169f5ca442e85c0bce99c105f28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0984169f5ca442e85c0bce99c105f28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0984169f5ca442e85c0bce99c105f28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0984169f5ca442e85c0bce99c105f28.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shIwA2S7CvAF0Y1X5V1MsubYxi8=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.932971+00 2025-12-09 10:15:08.932976+00 10750 8123#短裤套装黑色上衣 SPMX-20240815305929 \N \N \N 1 \N [{"file_id": "cfb1df9b-465c-4267-b765-380bec1fbab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7b8f860fce946c9bdc09fc3ae083420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7b8f860fce946c9bdc09fc3ae083420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7b8f860fce946c9bdc09fc3ae083420.jpg", "file_size": 18271, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b8f860fce946c9bdc09fc3ae083420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b8f860fce946c9bdc09fc3ae083420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b8f860fce946c9bdc09fc3ae083420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7b8f860fce946c9bdc09fc3ae083420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7b8f860fce946c9bdc09fc3ae083420.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01d_WNy2nDbus2bX9gyy4edbNf8=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.934864+00 2025-12-09 10:15:08.934869+00 10751 FHXGPK-批布043-2 SPMX-20240815305930 \N \N \N 1 \N [{"file_id": "c787bc86-92db-4758-a159-05e404e477a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73b14c9c19cd47cba7f95adc54c15979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73b14c9c19cd47cba7f95adc54c15979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73b14c9c19cd47cba7f95adc54c15979.jpg", "file_size": 43160, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布043-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b14c9c19cd47cba7f95adc54c15979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b14c9c19cd47cba7f95adc54c15979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b14c9c19cd47cba7f95adc54c15979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73b14c9c19cd47cba7f95adc54c15979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73b14c9c19cd47cba7f95adc54c15979.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvXedOqXMUBViLsv4kylkKg0NUU=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.93698+00 2025-12-09 10:15:08.936985+00 10752 C402#白色 SPMX-20240815305931 \N \N \N 1 \N [{"file_id": "87ba2509-6876-4baf-8c64-8d83e83fb5e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39bcfec31b17485db0b5c38b16b82934.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39bcfec31b17485db0b5c38b16b82934.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39bcfec31b17485db0b5c38b16b82934.jpg", "file_size": 59389, "is_delete": false, "file_type": 1, "original_file_name": "C402#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bcfec31b17485db0b5c38b16b82934.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bcfec31b17485db0b5c38b16b82934.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bcfec31b17485db0b5c38b16b82934.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39bcfec31b17485db0b5c38b16b82934.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39bcfec31b17485db0b5c38b16b82934.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9yUWMIYo5ZgM0CIWonisUH1gstM=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.938901+00 2025-12-09 10:15:08.938906+00 10753 23-2117#A10-领子3XL SPMX-20240815305922 \N \N \N 1 \N [{"file_id": "61d44f39-c0de-4bf6-a66f-4869f2269376", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bdbc6f1a21d49d0b6477f12b254c50d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bdbc6f1a21d49d0b6477f12b254c50d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bdbc6f1a21d49d0b6477f12b254c50d.jpg", "file_size": 12223, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbc6f1a21d49d0b6477f12b254c50d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbc6f1a21d49d0b6477f12b254c50d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbc6f1a21d49d0b6477f12b254c50d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bdbc6f1a21d49d0b6477f12b254c50d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bdbc6f1a21d49d0b6477f12b254c50d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MyzKuZbuGtcz0Xk-3WSBJhCOIZw=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.941012+00 2025-12-09 10:15:08.941017+00 10754 DL30718#黄色 SPMX-20240815305932 \N \N \N 1 \N [{"file_id": "8e689be0-1b5f-4681-8679-33d938fa7955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c86a81ae8c428ea8b49dd299f03324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c86a81ae8c428ea8b49dd299f03324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c86a81ae8c428ea8b49dd299f03324.jpg", "file_size": 21789, "is_delete": false, "file_type": 1, "original_file_name": "DL30718#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c86a81ae8c428ea8b49dd299f03324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c86a81ae8c428ea8b49dd299f03324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c86a81ae8c428ea8b49dd299f03324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c86a81ae8c428ea8b49dd299f03324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c86a81ae8c428ea8b49dd299f03324.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:une30KXUemsYT-55e1E3GIwKNpY=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.942921+00 2025-12-09 10:15:08.942927+00 10755 0003-71FWF#V5曲线 SPMX-20240815305938 \N \N \N 1 \N [{"file_id": "2ba26328-9a14-43bb-9078-3c6dab67bea2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aec7bb0efad34d739672aebd3a6c8530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aec7bb0efad34d739672aebd3a6c8530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aec7bb0efad34d739672aebd3a6c8530.jpg", "file_size": 12731, "is_delete": false, "file_type": 1, "original_file_name": "0003-71FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec7bb0efad34d739672aebd3a6c8530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec7bb0efad34d739672aebd3a6c8530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec7bb0efad34d739672aebd3a6c8530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aec7bb0efad34d739672aebd3a6c8530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aec7bb0efad34d739672aebd3a6c8530.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5y5cYlNJWVfnfDoqSQUVIbTQxY=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.945101+00 2025-12-09 10:15:08.945106+00 10756 23-2117#A10-领子4XL SPMX-20240815305933 \N \N \N 1 \N [{"file_id": "d4f73b2b-480d-4e5d-884e-4716b66db403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a95c0b7b8aed4557886e5834aabf862f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a95c0b7b8aed4557886e5834aabf862f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a95c0b7b8aed4557886e5834aabf862f.jpg", "file_size": 12537, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95c0b7b8aed4557886e5834aabf862f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95c0b7b8aed4557886e5834aabf862f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a95c0b7b8aed4557886e5834aabf862f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a95c0b7b8aed4557886e5834aabf862f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a95c0b7b8aed4557886e5834aabf862f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfWMtiuIRVUyxmEevaMcWVvD5SI=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.947123+00 2025-12-09 10:15:08.947129+00 10757 LZ1278#背心款4号色 SPMX-20240815305937 \N \N \N 1 \N [{"file_id": "7b08a038-1e12-4e8e-9031-52e8d2f809b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd979bf6f802460b907695756822bd98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd979bf6f802460b907695756822bd98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd979bf6f802460b907695756822bd98.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "LZ1278#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979bf6f802460b907695756822bd98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979bf6f802460b907695756822bd98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979bf6f802460b907695756822bd98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd979bf6f802460b907695756822bd98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd979bf6f802460b907695756822bd98.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q7LLUkz4e4J-QbGfnQvxUPobUq0=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.949029+00 2025-12-09 10:15:08.949034+00 10758 8123#短裤套装黑色袖子 SPMX-20240815305939 \N \N \N 1 \N [{"file_id": "60a94ea0-8a3f-43e3-a58b-4d5d1b87d218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4601c0750db14dbcbe34033794d38818.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4601c0750db14dbcbe34033794d38818.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4601c0750db14dbcbe34033794d38818.jpg", "file_size": 10979, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装黑色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4601c0750db14dbcbe34033794d38818.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4601c0750db14dbcbe34033794d38818.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4601c0750db14dbcbe34033794d38818.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4601c0750db14dbcbe34033794d38818.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4601c0750db14dbcbe34033794d38818.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEQTMKNX6RnUcAE3wYVrudaejk4=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.951141+00 2025-12-09 10:15:08.951146+00 10759 JTSS211FW#VS-D3 SPMX-20240815305935 \N \N \N 1 \N [{"file_id": "052a5e00-264a-4048-806b-cdb071cda006", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09e517722bbf4d69bccb34dd4723f279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09e517722bbf4d69bccb34dd4723f279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09e517722bbf4d69bccb34dd4723f279.jpg", "file_size": 15755, "is_delete": false, "file_type": 1, "original_file_name": "JTSS211FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e517722bbf4d69bccb34dd4723f279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e517722bbf4d69bccb34dd4723f279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e517722bbf4d69bccb34dd4723f279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09e517722bbf4d69bccb34dd4723f279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09e517722bbf4d69bccb34dd4723f279.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDzJ77ErNNb2GCCr6gYpPqSlOCM=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.953015+00 2025-12-09 10:15:08.953021+00 10760 LJ9931#S白前片 SPMX-20240815305940 \N \N \N 1 \N [{"file_id": "076b288c-ee6e-470d-92a9-25d72aa48013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc5cd18092fa4e8fafc9dc8265ebfdac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc5cd18092fa4e8fafc9dc8265ebfdac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc5cd18092fa4e8fafc9dc8265ebfdac.jpg", "file_size": 10859, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cd18092fa4e8fafc9dc8265ebfdac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cd18092fa4e8fafc9dc8265ebfdac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc5cd18092fa4e8fafc9dc8265ebfdac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc5cd18092fa4e8fafc9dc8265ebfdac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc5cd18092fa4e8fafc9dc8265ebfdac.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHPjXErxjEqTPOHRs-nRIrWGlNk=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.955155+00 2025-12-09 10:15:08.95516+00 10761 11-6G25#西红色L SPMX-20240815305934 \N \N \N 1 \N [{"file_id": "05aa81f3-4092-4a99-b22e-1359380c546f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e89b4474c04d4dd18c9608807be8a225.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e89b4474c04d4dd18c9608807be8a225.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e89b4474c04d4dd18c9608807be8a225.jpg", "file_size": 19356, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#西红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89b4474c04d4dd18c9608807be8a225.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89b4474c04d4dd18c9608807be8a225.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89b4474c04d4dd18c9608807be8a225.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e89b4474c04d4dd18c9608807be8a225.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e89b4474c04d4dd18c9608807be8a225.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyO9PxoS4yO-3XVQU3ogwO6eLaw=", "createTime": "2024-08-15 14:51:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.957073+00 2025-12-09 10:15:08.957082+00 10762 DL30750#前幅亮黄 SPMX-20240815305944 \N \N \N 1 \N [{"file_id": "af60b16f-a499-40ad-868f-d4fba08a4437", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31ebd97ee85246a1abf55edbe964fe17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31ebd97ee85246a1abf55edbe964fe17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31ebd97ee85246a1abf55edbe964fe17.jpg", "file_size": 16030, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ebd97ee85246a1abf55edbe964fe17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ebd97ee85246a1abf55edbe964fe17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ebd97ee85246a1abf55edbe964fe17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31ebd97ee85246a1abf55edbe964fe17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31ebd97ee85246a1abf55edbe964fe17.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BfSW423rAR1JKEc-elHpxI0TUEU=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.959137+00 2025-12-09 10:15:08.959142+00 10763 HT056FWE#VS-D3 SPMX-20240815305936 \N \N \N 1 \N [{"file_id": "ff604cfd-e7b3-401e-9767-ee20af8d38cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "475524943a614c919b396e405f3eef39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "475524943a614c919b396e405f3eef39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "475524943a614c919b396e405f3eef39.jpg", "file_size": 12036, "is_delete": false, "file_type": 1, "original_file_name": "HT056FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475524943a614c919b396e405f3eef39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475524943a614c919b396e405f3eef39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475524943a614c919b396e405f3eef39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/475524943a614c919b396e405f3eef39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/475524943a614c919b396e405f3eef39.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A09kS1cUPWfoNfh5rhD1JuLHu2k=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.961248+00 2025-12-09 10:15:08.961253+00 10764 FHXGPK-批布043-3 SPMX-20240815305943 \N \N \N 1 \N [{"file_id": "7a5b735b-0067-4b14-822d-9ea8df807dd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b04523dd01b5477f85b76173d9119431.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b04523dd01b5477f85b76173d9119431.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b04523dd01b5477f85b76173d9119431.jpg", "file_size": 52887, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布043-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04523dd01b5477f85b76173d9119431.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04523dd01b5477f85b76173d9119431.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b04523dd01b5477f85b76173d9119431.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b04523dd01b5477f85b76173d9119431.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b04523dd01b5477f85b76173d9119431.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j65jVuHrmBdhLoTacnN89dlBb0Y=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.963162+00 2025-12-09 10:15:08.963167+00 10765 23-2117#A10大领子4XL SPMX-20240815305941 \N \N \N 1 \N [{"file_id": "acd005ec-e6e0-4c0a-8f84-70826e33d580", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ea0f63ad29644459be9771f9ad2a22e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ea0f63ad29644459be9771f9ad2a22e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ea0f63ad29644459be9771f9ad2a22e.jpg", "file_size": 8208, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A10大领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea0f63ad29644459be9771f9ad2a22e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea0f63ad29644459be9771f9ad2a22e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea0f63ad29644459be9771f9ad2a22e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ea0f63ad29644459be9771f9ad2a22e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ea0f63ad29644459be9771f9ad2a22e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s5MuPM1jCNRIoQZ3nY2IdBVQq8Q=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.965291+00 2025-12-09 10:15:08.965296+00 10766 C402#黑色 SPMX-20240815305942 \N \N \N 1 \N [{"file_id": "b0636735-fea0-491c-aca1-7e3a5de47bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e56035d43e164b38bdea87bf11bd896c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e56035d43e164b38bdea87bf11bd896c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e56035d43e164b38bdea87bf11bd896c.jpg", "file_size": 62200, "is_delete": false, "file_type": 1, "original_file_name": "C402#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56035d43e164b38bdea87bf11bd896c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56035d43e164b38bdea87bf11bd896c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e56035d43e164b38bdea87bf11bd896c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e56035d43e164b38bdea87bf11bd896c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e56035d43e164b38bdea87bf11bd896c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQzyOI1yEfuIdstunGGexAwxUhE=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.967182+00 2025-12-09 10:15:08.967187+00 10767 11-6G25#西红色M SPMX-20240815305946 \N \N \N 1 \N [{"file_id": "9a22186a-d3b3-49f5-bbcb-babe9641eda5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7dc8ee49a6a40b28ef8538aa31424c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7dc8ee49a6a40b28ef8538aa31424c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7dc8ee49a6a40b28ef8538aa31424c7.jpg", "file_size": 19669, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#西红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7dc8ee49a6a40b28ef8538aa31424c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7dc8ee49a6a40b28ef8538aa31424c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7dc8ee49a6a40b28ef8538aa31424c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7dc8ee49a6a40b28ef8538aa31424c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7dc8ee49a6a40b28ef8538aa31424c7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFoWZLs7AoaObVw1_JI-vcIHwCY=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.969299+00 2025-12-09 10:15:08.969304+00 10768 HT057FW#VS-D3 SPMX-20240815305947 \N \N \N 1 \N [{"file_id": "add04570-562d-4174-aa49-74574dcb87e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aea06c217a2c4dad8a4dc38e1e2b0068.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aea06c217a2c4dad8a4dc38e1e2b0068.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aea06c217a2c4dad8a4dc38e1e2b0068.jpg", "file_size": 8528, "is_delete": false, "file_type": 1, "original_file_name": "HT057FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea06c217a2c4dad8a4dc38e1e2b0068.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea06c217a2c4dad8a4dc38e1e2b0068.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea06c217a2c4dad8a4dc38e1e2b0068.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aea06c217a2c4dad8a4dc38e1e2b0068.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aea06c217a2c4dad8a4dc38e1e2b0068.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjfOiAdLt635trUlCS0KhLAV2yg=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.971209+00 2025-12-09 10:15:08.971214+00 10769 JTSS212FW#VS-D3 SPMX-20240815305945 \N \N \N 1 \N [{"file_id": "2519e4a6-f2ad-4ece-bcd3-4ef2f6395edd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95dac2f97ca3424a842d145eddcd3124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95dac2f97ca3424a842d145eddcd3124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95dac2f97ca3424a842d145eddcd3124.jpg", "file_size": 9220, "is_delete": false, "file_type": 1, "original_file_name": "JTSS212FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dac2f97ca3424a842d145eddcd3124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dac2f97ca3424a842d145eddcd3124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95dac2f97ca3424a842d145eddcd3124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95dac2f97ca3424a842d145eddcd3124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95dac2f97ca3424a842d145eddcd3124.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDv-8lSyiwX0eqkQ7r1wDOylz1U=", "createTime": "2024-08-15 14:51:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.973327+00 2025-12-09 10:15:08.973332+00 10770 HT057FWE#VS-D3 SPMX-20240815305958 \N \N \N 1 \N [{"file_id": "1b599435-f097-4e80-8539-addacb0cacc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10ae13fda2d64359a6a2f2a53cc6ebf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10ae13fda2d64359a6a2f2a53cc6ebf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10ae13fda2d64359a6a2f2a53cc6ebf6.jpg", "file_size": 18026, "is_delete": false, "file_type": 1, "original_file_name": "HT057FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ae13fda2d64359a6a2f2a53cc6ebf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ae13fda2d64359a6a2f2a53cc6ebf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ae13fda2d64359a6a2f2a53cc6ebf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10ae13fda2d64359a6a2f2a53cc6ebf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10ae13fda2d64359a6a2f2a53cc6ebf6.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zo2HgzGp4-cLbDdjXQnbKoqF_cY=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.975246+00 2025-12-09 10:15:08.975251+00 10771 LZ1279#背心款1号色 SPMX-20240815305960 \N \N \N 1 \N [{"file_id": "24e93f5e-ab8f-478b-9b0a-0355f1ce6580", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7be71db7499b44999e25f0843bfdc340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7be71db7499b44999e25f0843bfdc340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7be71db7499b44999e25f0843bfdc340.jpg", "file_size": 15910, "is_delete": false, "file_type": 1, "original_file_name": "LZ1279#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be71db7499b44999e25f0843bfdc340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be71db7499b44999e25f0843bfdc340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be71db7499b44999e25f0843bfdc340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7be71db7499b44999e25f0843bfdc340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7be71db7499b44999e25f0843bfdc340.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLOQnp6KhLkroeeKKl7fpx4Cw4o=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.977363+00 2025-12-09 10:15:08.977368+00 10772 8124#2XL SPMX-20240815305962 \N \N \N 1 \N [{"file_id": "bf83d592-5b69-44e5-b696-26c3e22833ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b1753692ed6407fbdb06b5c887a108f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b1753692ed6407fbdb06b5c887a108f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b1753692ed6407fbdb06b5c887a108f.jpg", "file_size": 18735, "is_delete": false, "file_type": 1, "original_file_name": "8124#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1753692ed6407fbdb06b5c887a108f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1753692ed6407fbdb06b5c887a108f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1753692ed6407fbdb06b5c887a108f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b1753692ed6407fbdb06b5c887a108f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b1753692ed6407fbdb06b5c887a108f.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TARZK6WtHRo-Hc1t3EBgRIN5t9Q=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.979257+00 2025-12-09 10:15:08.979262+00 10773 0003-72FWF#V5曲线 SPMX-20240815305948 \N \N \N 1 \N [{"file_id": "db80c765-a7f8-46a4-ae0f-ab1f073193d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a863273bb674ad7a6913db8fc52a547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a863273bb674ad7a6913db8fc52a547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a863273bb674ad7a6913db8fc52a547.jpg", "file_size": 23885, "is_delete": false, "file_type": 1, "original_file_name": "0003-72FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863273bb674ad7a6913db8fc52a547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863273bb674ad7a6913db8fc52a547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a863273bb674ad7a6913db8fc52a547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a863273bb674ad7a6913db8fc52a547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a863273bb674ad7a6913db8fc52a547.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MMBu9T0t6CTf0-oyJ2Qkp3kGh0=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.981409+00 2025-12-09 10:15:08.981415+00 10774 FHXGPK-批布044-1 SPMX-20240815305956 \N \N \N 1 \N [{"file_id": "14286916-d3a2-46fa-bd5e-a8afcbe4d6db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11322138ec6b4b45a2c0dc74bcafab41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11322138ec6b4b45a2c0dc74bcafab41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11322138ec6b4b45a2c0dc74bcafab41.jpg", "file_size": 49177, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布044-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11322138ec6b4b45a2c0dc74bcafab41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11322138ec6b4b45a2c0dc74bcafab41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11322138ec6b4b45a2c0dc74bcafab41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11322138ec6b4b45a2c0dc74bcafab41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11322138ec6b4b45a2c0dc74bcafab41.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L3sNKGytupgTISP5fCsZpHDmN-Q=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.983329+00 2025-12-09 10:15:08.983334+00 10775 0003-73FWF#V5曲线 SPMX-20240815305959 \N \N \N 1 \N [{"file_id": "ada94da9-132d-4838-9521-fc407a38ca12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91fe6b5917ea4f758314dd02ffffbe2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91fe6b5917ea4f758314dd02ffffbe2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91fe6b5917ea4f758314dd02ffffbe2e.jpg", "file_size": 10973, "is_delete": false, "file_type": 1, "original_file_name": "0003-73FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91fe6b5917ea4f758314dd02ffffbe2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91fe6b5917ea4f758314dd02ffffbe2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91fe6b5917ea4f758314dd02ffffbe2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91fe6b5917ea4f758314dd02ffffbe2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91fe6b5917ea4f758314dd02ffffbe2e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Vl3m66xTsZIEIVoFdT8X1EmmEU=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.985477+00 2025-12-09 10:15:08.985482+00 10776 JTSS213FW#VS-D3 SPMX-20240815305955 \N \N \N 1 \N [{"file_id": "200660e5-f925-4caa-bf2c-0038e60c9970", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc7b5e0621d4cd4942430bb64ab27f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc7b5e0621d4cd4942430bb64ab27f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc7b5e0621d4cd4942430bb64ab27f8.jpg", "file_size": 17154, "is_delete": false, "file_type": 1, "original_file_name": "JTSS213FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc7b5e0621d4cd4942430bb64ab27f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc7b5e0621d4cd4942430bb64ab27f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc7b5e0621d4cd4942430bb64ab27f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc7b5e0621d4cd4942430bb64ab27f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc7b5e0621d4cd4942430bb64ab27f8.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXy74TeHvBkEFxJDBWregjtaCnE=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.987653+00 2025-12-09 10:15:08.987658+00 10777 LJ9931#S粉 SPMX-20240815305950 \N \N \N 1 \N [{"file_id": "ebb8dbc0-5e85-4887-b79f-3428226326a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f09487095744509bc3e26fad0b425ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f09487095744509bc3e26fad0b425ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f09487095744509bc3e26fad0b425ad.jpg", "file_size": 15554, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f09487095744509bc3e26fad0b425ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f09487095744509bc3e26fad0b425ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f09487095744509bc3e26fad0b425ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f09487095744509bc3e26fad0b425ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f09487095744509bc3e26fad0b425ad.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h7bycgD_ZwnU2SfiLF8mAEpUipA=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.989838+00 2025-12-09 10:15:08.989848+00 10778 DL30750#前幅墨绿 SPMX-20240815305957 \N \N \N 1 \N [{"file_id": "b95e0d8b-cae1-499e-9483-0a8c66222264", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "002099a7c6a649b1a37c32c442a02681.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "002099a7c6a649b1a37c32c442a02681.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "002099a7c6a649b1a37c32c442a02681.jpg", "file_size": 15896, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#前幅墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002099a7c6a649b1a37c32c442a02681.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002099a7c6a649b1a37c32c442a02681.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002099a7c6a649b1a37c32c442a02681.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/002099a7c6a649b1a37c32c442a02681.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/002099a7c6a649b1a37c32c442a02681.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPnbhvy0TMdDudnCREwRFu9GEDA=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.992061+00 2025-12-09 10:15:08.992066+00 10779 8123#短裤套装黑色裤子 SPMX-20240815305951 \N \N \N 1 \N [{"file_id": "6bdcc122-8aba-46b2-aa61-85ea84597a76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15b12ecfb1a649e0a7df0dc6ce392239.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15b12ecfb1a649e0a7df0dc6ce392239.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15b12ecfb1a649e0a7df0dc6ce392239.jpg", "file_size": 18305, "is_delete": false, "file_type": 1, "original_file_name": "8123#短裤套装黑色裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b12ecfb1a649e0a7df0dc6ce392239.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b12ecfb1a649e0a7df0dc6ce392239.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b12ecfb1a649e0a7df0dc6ce392239.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15b12ecfb1a649e0a7df0dc6ce392239.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15b12ecfb1a649e0a7df0dc6ce392239.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X78fFSIvuY2sqaXEG029PBIy0_U=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.994107+00 2025-12-09 10:15:08.994112+00 10780 C403#白底玫红 SPMX-20240815305963 \N \N \N 1 \N [{"file_id": "1530517b-5ff7-4d7e-b375-4a778de0863a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ea0fe4458649ea943eabdbba52d8d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ea0fe4458649ea943eabdbba52d8d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ea0fe4458649ea943eabdbba52d8d1.jpg", "file_size": 57246, "is_delete": false, "file_type": 1, "original_file_name": "C403#白底玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ea0fe4458649ea943eabdbba52d8d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ea0fe4458649ea943eabdbba52d8d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ea0fe4458649ea943eabdbba52d8d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ea0fe4458649ea943eabdbba52d8d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ea0fe4458649ea943eabdbba52d8d1.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uanVK6QIZr9CYwe1xucM4iZ4IQ=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.99618+00 2025-12-09 10:15:08.996185+00 10781 LZ1278#背心款5号色 SPMX-20240815305949 \N \N \N 1 \N [{"file_id": "28e6228a-229e-47b7-b967-016777bfd690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53de190e95514cb0a8c43d81d3acd67e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53de190e95514cb0a8c43d81d3acd67e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53de190e95514cb0a8c43d81d3acd67e.jpg", "file_size": 16797, "is_delete": false, "file_type": 1, "original_file_name": "LZ1278#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de190e95514cb0a8c43d81d3acd67e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de190e95514cb0a8c43d81d3acd67e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53de190e95514cb0a8c43d81d3acd67e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53de190e95514cb0a8c43d81d3acd67e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53de190e95514cb0a8c43d81d3acd67e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sfV6q5h01l7uW4mMwQHB5AftA60=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:08.998155+00 2025-12-09 10:15:08.998159+00 10782 23-2117#A10小领子4XL SPMX-20240815305952 \N \N \N 1 \N [{"file_id": "48809d23-7008-40e1-a1a0-0ccdcd972d84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edab54f5320f4560a2b8bb5cf484be23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edab54f5320f4560a2b8bb5cf484be23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edab54f5320f4560a2b8bb5cf484be23.jpg", "file_size": 7998, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A10小领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edab54f5320f4560a2b8bb5cf484be23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edab54f5320f4560a2b8bb5cf484be23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edab54f5320f4560a2b8bb5cf484be23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edab54f5320f4560a2b8bb5cf484be23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edab54f5320f4560a2b8bb5cf484be23.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PstxzDpIuTp9DLABZGP5BJV20_I=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.000152+00 2025-12-09 10:15:09.000157+00 10783 LJ9931#S绿 SPMX-20240815305961 \N \N \N 1 \N [{"file_id": "9565aee5-298b-410d-821d-ce39cdca09af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8e69c97fd074e73a9e202ab9e5468a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8e69c97fd074e73a9e202ab9e5468a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8e69c97fd074e73a9e202ab9e5468a7.jpg", "file_size": 15885, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e69c97fd074e73a9e202ab9e5468a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e69c97fd074e73a9e202ab9e5468a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e69c97fd074e73a9e202ab9e5468a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8e69c97fd074e73a9e202ab9e5468a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8e69c97fd074e73a9e202ab9e5468a7.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVqZk3r40qTZKa5WqqziDFBEl0M=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.002124+00 2025-12-09 10:15:09.002129+00 10784 11-6G25#西红色S SPMX-20240815305954 \N \N \N 1 \N [{"file_id": "2de95c5d-fb71-456e-8163-5523e853a9eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f72e46a3c4e4101931a221565bd511d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f72e46a3c4e4101931a221565bd511d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f72e46a3c4e4101931a221565bd511d.jpg", "file_size": 19751, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#西红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f72e46a3c4e4101931a221565bd511d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f72e46a3c4e4101931a221565bd511d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f72e46a3c4e4101931a221565bd511d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f72e46a3c4e4101931a221565bd511d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f72e46a3c4e4101931a221565bd511d.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qr-q23YeiQlS3pO3rutgTXF9yPU=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.004103+00 2025-12-09 10:15:09.004108+00 10785 C403#白底兰花 SPMX-20240815305953 \N \N \N 1 \N [{"file_id": "3fa82dc0-c6f2-41d2-89d6-490b1f8fba4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760850da2a17413a8def3c9417b90b23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760850da2a17413a8def3c9417b90b23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760850da2a17413a8def3c9417b90b23.jpg", "file_size": 65532, "is_delete": false, "file_type": 1, "original_file_name": "C403#白底兰花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760850da2a17413a8def3c9417b90b23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760850da2a17413a8def3c9417b90b23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760850da2a17413a8def3c9417b90b23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760850da2a17413a8def3c9417b90b23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760850da2a17413a8def3c9417b90b23.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGz0KO2YIWjeOQu41xgrgumAFEw=", "createTime": "2024-08-15 14:51:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.006082+00 2025-12-09 10:15:09.006086+00 10786 23-2117#A11-3XL SPMX-20240815305965 \N \N \N 1 \N [{"file_id": "1e3da908-4f2e-495b-ab52-59dca0280737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edeac501547847818667cbc37e07c705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edeac501547847818667cbc37e07c705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edeac501547847818667cbc37e07c705.jpg", "file_size": 20623, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeac501547847818667cbc37e07c705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeac501547847818667cbc37e07c705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeac501547847818667cbc37e07c705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edeac501547847818667cbc37e07c705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edeac501547847818667cbc37e07c705.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_cjDfF7XwBLjYomW95TGigVDig=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.008104+00 2025-12-09 10:15:09.008108+00 10787 8124#3XL SPMX-20240815305973 \N \N \N 1 \N [{"file_id": "c5378e74-da9c-4998-b4ce-5bfeae418ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d44bcc8be49a480e9ce7f650818c7570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d44bcc8be49a480e9ce7f650818c7570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d44bcc8be49a480e9ce7f650818c7570.jpg", "file_size": 18315, "is_delete": false, "file_type": 1, "original_file_name": "8124#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44bcc8be49a480e9ce7f650818c7570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44bcc8be49a480e9ce7f650818c7570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d44bcc8be49a480e9ce7f650818c7570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d44bcc8be49a480e9ce7f650818c7570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d44bcc8be49a480e9ce7f650818c7570.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gb_ucZTF0GXJ0wNgwxEatTYl0JI=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.010311+00 2025-12-09 10:15:09.010317+00 10788 JTSS215FW#VS-D3 SPMX-20240815305975 \N \N \N 1 \N [{"file_id": "72d4ae98-8851-4414-80a1-45dc216e7c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bc0fd67b3714b24ae4220f8bff4f161.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bc0fd67b3714b24ae4220f8bff4f161.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bc0fd67b3714b24ae4220f8bff4f161.jpg", "file_size": 22317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS215FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc0fd67b3714b24ae4220f8bff4f161.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc0fd67b3714b24ae4220f8bff4f161.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bc0fd67b3714b24ae4220f8bff4f161.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bc0fd67b3714b24ae4220f8bff4f161.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bc0fd67b3714b24ae4220f8bff4f161.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nkH-GwEtCkGv-zt2811NK6yMig=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.020552+00 2025-12-09 10:15:09.020557+00 10793 HT058FW#VS-D3 SPMX-20240815305967 \N \N \N 1 \N [{"file_id": "870557ae-84c0-4f55-b2d7-f4b2f0c7f55a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a28d8c301bf47f59ac04fd270d62fff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a28d8c301bf47f59ac04fd270d62fff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a28d8c301bf47f59ac04fd270d62fff.jpg", "file_size": 25840, "is_delete": false, "file_type": 1, "original_file_name": "HT058FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a28d8c301bf47f59ac04fd270d62fff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a28d8c301bf47f59ac04fd270d62fff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a28d8c301bf47f59ac04fd270d62fff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a28d8c301bf47f59ac04fd270d62fff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a28d8c301bf47f59ac04fd270d62fff.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bemLQQ7gkGFIzYdc9H0wLHaInio=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.012505+00 2025-12-09 10:15:09.012511+00 10789 DL30750#前幅枣红 SPMX-20240815305979 \N \N \N 1 \N [{"file_id": "c092b0d8-510b-4e4d-b3e9-d07aeb4a673e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22b718141cad4790a69951d20a25c6d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22b718141cad4790a69951d20a25c6d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22b718141cad4790a69951d20a25c6d2.jpg", "file_size": 15638, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b718141cad4790a69951d20a25c6d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b718141cad4790a69951d20a25c6d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b718141cad4790a69951d20a25c6d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22b718141cad4790a69951d20a25c6d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22b718141cad4790a69951d20a25c6d2.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zS6FcqcmIU7AV_sMyPPvs2pM47k=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.014697+00 2025-12-09 10:15:09.014702+00 10790 C403#白底绿花 SPMX-20240815305974 \N \N \N 1 \N [{"file_id": "17953cae-757f-4158-98b2-f0277de01e9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b712f0d548d54b148da79c04a80ba42b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b712f0d548d54b148da79c04a80ba42b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b712f0d548d54b148da79c04a80ba42b.jpg", "file_size": 59198, "is_delete": false, "file_type": 1, "original_file_name": "C403#白底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b712f0d548d54b148da79c04a80ba42b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b712f0d548d54b148da79c04a80ba42b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b712f0d548d54b148da79c04a80ba42b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b712f0d548d54b148da79c04a80ba42b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b712f0d548d54b148da79c04a80ba42b.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NYSBF7y9qzjwCBG9zeakxiNEYcE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.016658+00 2025-12-09 10:15:09.016663+00 10791 HT058FW#VS-D3加色 SPMX-20240815305977 \N \N \N 1 \N [{"file_id": "7aa26bc3-8624-40d6-ba11-9b460a320be5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b043d806644105b709425e74102a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b043d806644105b709425e74102a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b043d806644105b709425e74102a5c.jpg", "file_size": 25945, "is_delete": false, "file_type": 1, "original_file_name": "HT058FW#VS-D3加色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b043d806644105b709425e74102a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b043d806644105b709425e74102a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b043d806644105b709425e74102a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b043d806644105b709425e74102a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b043d806644105b709425e74102a5c.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6MYt7vB1GOml0et2JIfaSf2lTI=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.018595+00 2025-12-09 10:15:09.018601+00 10792 11-6G25#西红色XL SPMX-20240815305964 \N \N \N 1 \N [{"file_id": "a835c13a-eef3-422d-899c-7585567e3067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5688189f412d4945a41640682264f583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5688189f412d4945a41640682264f583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5688189f412d4945a41640682264f583.jpg", "file_size": 19318, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#西红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5688189f412d4945a41640682264f583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5688189f412d4945a41640682264f583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5688189f412d4945a41640682264f583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5688189f412d4945a41640682264f583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5688189f412d4945a41640682264f583.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUgDm4FWlly4dQ6-grUS4cjKXlk=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.022731+00 2025-12-09 10:15:09.022736+00 10794 DL30750#前幅彩兰 SPMX-20240815305968 \N \N \N 1 \N [{"file_id": "38eaa0ec-80e1-4a6f-b045-4642972d31ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b82a3742fae415292e425e782243e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b82a3742fae415292e425e782243e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b82a3742fae415292e425e782243e8e.jpg", "file_size": 15546, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b82a3742fae415292e425e782243e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b82a3742fae415292e425e782243e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b82a3742fae415292e425e782243e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b82a3742fae415292e425e782243e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b82a3742fae415292e425e782243e8e.jpg?e=1765361708&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qmRaK6qEGaHACsCJD3rIVIXoVUE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.817149+00 2025-12-09 10:15:09.817158+00 10795 11-6G25#黑色L SPMX-20240815305976 \N \N \N 1 \N [{"file_id": "cad1331c-eac5-4d64-ae81-392fbe62a364", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a03f59bb20414fbcbc98e0c00f11eba2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a03f59bb20414fbcbc98e0c00f11eba2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a03f59bb20414fbcbc98e0c00f11eba2.jpg", "file_size": 19300, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03f59bb20414fbcbc98e0c00f11eba2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03f59bb20414fbcbc98e0c00f11eba2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03f59bb20414fbcbc98e0c00f11eba2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a03f59bb20414fbcbc98e0c00f11eba2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a03f59bb20414fbcbc98e0c00f11eba2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAYLbqZlfoPu2MiYLeuiBGYaQIk=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.820185+00 2025-12-09 10:15:09.82019+00 10796 23-2117#A11-4XL SPMX-20240815305978 \N \N \N 1 \N [{"file_id": "71c4d5e0-1956-4d87-a7d6-157d1e15b096", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "674aa07aed1a4f52b3bcaa5bf464a86d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "674aa07aed1a4f52b3bcaa5bf464a86d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "674aa07aed1a4f52b3bcaa5bf464a86d.jpg", "file_size": 19336, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674aa07aed1a4f52b3bcaa5bf464a86d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674aa07aed1a4f52b3bcaa5bf464a86d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674aa07aed1a4f52b3bcaa5bf464a86d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/674aa07aed1a4f52b3bcaa5bf464a86d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/674aa07aed1a4f52b3bcaa5bf464a86d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2y6LiTVd0R5BAQOaK7Y4M_e3_yA=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.822933+00 2025-12-09 10:15:09.822938+00 10797 0003-74FWF#V5曲线 SPMX-20240815305970 \N \N \N 1 \N [{"file_id": "cdbc603d-5df9-483a-a4c4-a53a2fb97988", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2529a00540f4f49832de6484818c768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2529a00540f4f49832de6484818c768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2529a00540f4f49832de6484818c768.jpg", "file_size": 16013, "is_delete": false, "file_type": 1, "original_file_name": "0003-74FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2529a00540f4f49832de6484818c768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2529a00540f4f49832de6484818c768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2529a00540f4f49832de6484818c768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2529a00540f4f49832de6484818c768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2529a00540f4f49832de6484818c768.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SjylJ5-33va9sPi700lLFS86fzQ=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.825337+00 2025-12-09 10:15:09.825342+00 10798 LJ9931#S酒红 SPMX-20240815305972 \N \N \N 1 \N [{"file_id": "7621867f-5ff9-474a-bbd7-2c3d86c4fcb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c1f69fc3dfd4d5a8448af0077e03a62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c1f69fc3dfd4d5a8448af0077e03a62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c1f69fc3dfd4d5a8448af0077e03a62.jpg", "file_size": 16107, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1f69fc3dfd4d5a8448af0077e03a62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1f69fc3dfd4d5a8448af0077e03a62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1f69fc3dfd4d5a8448af0077e03a62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c1f69fc3dfd4d5a8448af0077e03a62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c1f69fc3dfd4d5a8448af0077e03a62.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xj6QRCgEvLcqcXi6T-ciLWx5-bs=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.827541+00 2025-12-09 10:15:09.827546+00 10799 FHXGPK-批布044-2 SPMX-20240815305969 \N \N \N 1 \N [{"file_id": "2fda4537-2663-42a5-b2de-6449cd124530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa624c95d2e94978aa94214c37b51348.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa624c95d2e94978aa94214c37b51348.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa624c95d2e94978aa94214c37b51348.jpg", "file_size": 47626, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布044-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa624c95d2e94978aa94214c37b51348.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa624c95d2e94978aa94214c37b51348.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa624c95d2e94978aa94214c37b51348.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa624c95d2e94978aa94214c37b51348.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa624c95d2e94978aa94214c37b51348.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhQbtl0El1b_zW33P30u2E1ZHiE=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.829611+00 2025-12-09 10:15:09.829616+00 10800 LZ1279#背心款2号色 SPMX-20240815305971 \N \N \N 1 \N [{"file_id": "6e6eeaf6-5d30-40e9-9d06-6ab6539d02ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4735498a3ba4166b807d2f15d43b145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4735498a3ba4166b807d2f15d43b145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4735498a3ba4166b807d2f15d43b145.jpg", "file_size": 16278, "is_delete": false, "file_type": 1, "original_file_name": "LZ1279#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4735498a3ba4166b807d2f15d43b145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4735498a3ba4166b807d2f15d43b145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4735498a3ba4166b807d2f15d43b145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4735498a3ba4166b807d2f15d43b145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4735498a3ba4166b807d2f15d43b145.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MYT7sTS63Fyv7OwKijo6Pa69AM=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.831439+00 2025-12-09 10:15:09.831444+00 10801 JTSS214FW#VS-D3 SPMX-20240815305966 \N \N \N 1 \N [{"file_id": "2db90b7b-91df-4935-8671-0849ed27a72d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87096ef832674e268e751e3973be55c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87096ef832674e268e751e3973be55c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87096ef832674e268e751e3973be55c5.jpg", "file_size": 30512, "is_delete": false, "file_type": 1, "original_file_name": "JTSS214FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87096ef832674e268e751e3973be55c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87096ef832674e268e751e3973be55c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87096ef832674e268e751e3973be55c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87096ef832674e268e751e3973be55c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87096ef832674e268e751e3973be55c5.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8eFhvA0F0YT_2SZrNEN1ffLjSY4=", "createTime": "2024-08-15 14:51:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.833503+00 2025-12-09 10:15:09.833508+00 10802 LJ9931#XL深蓝 SPMX-20240815305991 \N \N \N 1 \N [{"file_id": "52278f0d-d427-4b51-adcb-511c9a9aa05c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16eb02fb4ee54b3f8dee10a75aa7d644.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16eb02fb4ee54b3f8dee10a75aa7d644.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16eb02fb4ee54b3f8dee10a75aa7d644.jpg", "file_size": 14626, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16eb02fb4ee54b3f8dee10a75aa7d644.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16eb02fb4ee54b3f8dee10a75aa7d644.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16eb02fb4ee54b3f8dee10a75aa7d644.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16eb02fb4ee54b3f8dee10a75aa7d644.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16eb02fb4ee54b3f8dee10a75aa7d644.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2k9dpYTg2H6BnSeI75orLQ_IOPU=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.835563+00 2025-12-09 10:15:09.835567+00 10803 11-6G25#黑色M SPMX-20240815305986 \N \N \N 1 \N [{"file_id": "2462e38c-1aa1-4516-95ee-25a1adcfb366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f34a9fb3c58c4746a29d6e1c48845dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f34a9fb3c58c4746a29d6e1c48845dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f34a9fb3c58c4746a29d6e1c48845dd9.jpg", "file_size": 17670, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#黑色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34a9fb3c58c4746a29d6e1c48845dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34a9fb3c58c4746a29d6e1c48845dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34a9fb3c58c4746a29d6e1c48845dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f34a9fb3c58c4746a29d6e1c48845dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f34a9fb3c58c4746a29d6e1c48845dd9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftZwJuu0QWIe0JaCFca_hehGrVg=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.837541+00 2025-12-09 10:15:09.837544+00 10804 JTSS216FW#VS-D3 SPMX-20240815305989 \N \N \N 1 \N [{"file_id": "f3be4084-560b-4c7b-8faf-cc1f86e8dcf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "374360f0522b4464b25e8d529165289d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "374360f0522b4464b25e8d529165289d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "374360f0522b4464b25e8d529165289d.jpg", "file_size": 20706, "is_delete": false, "file_type": 1, "original_file_name": "JTSS216FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374360f0522b4464b25e8d529165289d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374360f0522b4464b25e8d529165289d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374360f0522b4464b25e8d529165289d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/374360f0522b4464b25e8d529165289d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/374360f0522b4464b25e8d529165289d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VDTfcvpely2r71egwqcHDSuVu0A=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.839258+00 2025-12-09 10:15:09.839263+00 10805 LZ1279#背心款4号色 SPMX-20240815305992 \N \N \N 1 \N [{"file_id": "8e69796d-9b37-46b1-990b-0cead3b98eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b6434b2ac44a93a0225b44f87f2fd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b6434b2ac44a93a0225b44f87f2fd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b6434b2ac44a93a0225b44f87f2fd5.jpg", "file_size": 14522, "is_delete": false, "file_type": 1, "original_file_name": "LZ1279#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6434b2ac44a93a0225b44f87f2fd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6434b2ac44a93a0225b44f87f2fd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6434b2ac44a93a0225b44f87f2fd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b6434b2ac44a93a0225b44f87f2fd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b6434b2ac44a93a0225b44f87f2fd5.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vipv4FstBFDsOKfmwIIXlvjMOhs=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.841247+00 2025-12-09 10:15:09.841251+00 10806 0003-75FWF#原版白色 SPMX-20240815305993 \N \N \N 1 \N [{"file_id": "da660063-b728-45c1-bbb6-fa76cff16abd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d0829cff7e547c18dae431d05de4a10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d0829cff7e547c18dae431d05de4a10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d0829cff7e547c18dae431d05de4a10.jpg", "file_size": 28375, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#原版白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0829cff7e547c18dae431d05de4a10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0829cff7e547c18dae431d05de4a10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0829cff7e547c18dae431d05de4a10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d0829cff7e547c18dae431d05de4a10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d0829cff7e547c18dae431d05de4a10.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwT7XUtQxtgNCsTqWdgCH_7a5LA=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.843229+00 2025-12-09 10:15:09.843232+00 10807 8124#4XL SPMX-20240815305984 \N \N \N 1 \N [{"file_id": "4d79321b-fcb2-4c1b-824f-2262037a2ba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6c2d6f070b54cdca839ab7cfa5311c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6c2d6f070b54cdca839ab7cfa5311c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6c2d6f070b54cdca839ab7cfa5311c6.jpg", "file_size": 17915, "is_delete": false, "file_type": 1, "original_file_name": "8124#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c2d6f070b54cdca839ab7cfa5311c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c2d6f070b54cdca839ab7cfa5311c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c2d6f070b54cdca839ab7cfa5311c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6c2d6f070b54cdca839ab7cfa5311c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6c2d6f070b54cdca839ab7cfa5311c6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McJHpcPAm1isivqagbScxoLeSAQ=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.844932+00 2025-12-09 10:15:09.844935+00 10808 FHXGPK-批布045-1 SPMX-20240815305994 \N \N \N 1 \N [{"file_id": "c15419b1-51ef-43ff-a65a-7f48c2d8e7be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "610bc8af46a14acaa674b005dc7f8892.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "610bc8af46a14acaa674b005dc7f8892.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "610bc8af46a14acaa674b005dc7f8892.jpg", "file_size": 70216, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布045-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610bc8af46a14acaa674b005dc7f8892.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610bc8af46a14acaa674b005dc7f8892.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610bc8af46a14acaa674b005dc7f8892.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/610bc8af46a14acaa674b005dc7f8892.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/610bc8af46a14acaa674b005dc7f8892.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLZm-l5mWZkF67JPA8Ygbv1yNOA=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.846846+00 2025-12-09 10:15:09.846851+00 10809 FHXGPK-批布044-3 SPMX-20240815305981 \N \N \N 1 \N [{"file_id": "d98695a3-7f73-467c-a3ab-a767ed46afbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7c5ac1e9afa48e6a32125199692bdd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7c5ac1e9afa48e6a32125199692bdd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7c5ac1e9afa48e6a32125199692bdd2.jpg", "file_size": 62129, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布044-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c5ac1e9afa48e6a32125199692bdd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c5ac1e9afa48e6a32125199692bdd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c5ac1e9afa48e6a32125199692bdd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7c5ac1e9afa48e6a32125199692bdd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7c5ac1e9afa48e6a32125199692bdd2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1uHCs1aesrUOeCeLYeSZ2NxIkk=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.848902+00 2025-12-09 10:15:09.848907+00 10810 LJ9931#S黑 SPMX-20240815305983 \N \N \N 1 \N [{"file_id": "4d88c3b1-3104-4f5a-872b-648629491feb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ede5a3786c24b48867be84750fe1da6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ede5a3786c24b48867be84750fe1da6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ede5a3786c24b48867be84750fe1da6.jpg", "file_size": 17945, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#S黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede5a3786c24b48867be84750fe1da6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede5a3786c24b48867be84750fe1da6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede5a3786c24b48867be84750fe1da6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ede5a3786c24b48867be84750fe1da6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ede5a3786c24b48867be84750fe1da6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jhunb7_50po_WiCcgW8VVYpjVRM=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.851222+00 2025-12-09 10:15:09.851227+00 10811 LZ1279#背心款3号色 SPMX-20240815305980 \N \N \N 1 \N [{"file_id": "c708ef2d-b031-4d67-b4dd-f75fef0905a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505fe2a46911481d9e797497b43f5ceb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505fe2a46911481d9e797497b43f5ceb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505fe2a46911481d9e797497b43f5ceb.jpg", "file_size": 15545, "is_delete": false, "file_type": 1, "original_file_name": "LZ1279#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505fe2a46911481d9e797497b43f5ceb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505fe2a46911481d9e797497b43f5ceb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505fe2a46911481d9e797497b43f5ceb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505fe2a46911481d9e797497b43f5ceb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505fe2a46911481d9e797497b43f5ceb.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7SkOnNzH-2FtT_Q_G0Hw47QD9-0=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.853791+00 2025-12-09 10:15:09.853796+00 10812 C403#白底黑花 SPMX-20240815305985 \N \N \N 1 \N [{"file_id": "f02f399e-08d2-49fd-a32d-79a207285f00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3570998f630f4c038f0be74544dcf89e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3570998f630f4c038f0be74544dcf89e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3570998f630f4c038f0be74544dcf89e.jpg", "file_size": 52460, "is_delete": false, "file_type": 1, "original_file_name": "C403#白底黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3570998f630f4c038f0be74544dcf89e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3570998f630f4c038f0be74544dcf89e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3570998f630f4c038f0be74544dcf89e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3570998f630f4c038f0be74544dcf89e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3570998f630f4c038f0be74544dcf89e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JyOZi2SQgFhyPjTaWdoZUybibc4=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.856406+00 2025-12-09 10:15:09.85641+00 10813 23-2117#A11-领子3XL SPMX-20240815305990 \N \N \N 1 \N [{"file_id": "0d996f34-5702-44a2-a30d-efeec627fbca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dded1783eed6428298cfe8741b51e1f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dded1783eed6428298cfe8741b51e1f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dded1783eed6428298cfe8741b51e1f1.jpg", "file_size": 13525, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dded1783eed6428298cfe8741b51e1f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dded1783eed6428298cfe8741b51e1f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dded1783eed6428298cfe8741b51e1f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dded1783eed6428298cfe8741b51e1f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dded1783eed6428298cfe8741b51e1f1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2iki02MZsM8wFBmvFYumbW__iY=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.858609+00 2025-12-09 10:15:09.858614+00 10814 DL30750#前幅玫红 SPMX-20240815305988 \N \N \N 1 \N [{"file_id": "3a16a3d7-2b11-433d-8e26-684e3dbe687b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd25f39397744b578bb2b577ba042df8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd25f39397744b578bb2b577ba042df8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd25f39397744b578bb2b577ba042df8.jpg", "file_size": 15776, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd25f39397744b578bb2b577ba042df8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd25f39397744b578bb2b577ba042df8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd25f39397744b578bb2b577ba042df8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd25f39397744b578bb2b577ba042df8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd25f39397744b578bb2b577ba042df8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUVEp52kXqumTO__eLjmWUwxSU8=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.860699+00 2025-12-09 10:15:09.860706+00 10815 0003-75FWF#V5曲线 SPMX-20240815305982 \N \N \N 1 \N [{"file_id": "5992c0b9-a9ca-40f1-8d44-62214680652d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f76aead85510400f8dbcb736473c8954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f76aead85510400f8dbcb736473c8954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f76aead85510400f8dbcb736473c8954.jpg", "file_size": 28515, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76aead85510400f8dbcb736473c8954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76aead85510400f8dbcb736473c8954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76aead85510400f8dbcb736473c8954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f76aead85510400f8dbcb736473c8954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f76aead85510400f8dbcb736473c8954.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsTT73CXJ8GBBC0TdPJvNMk5YnU=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.862712+00 2025-12-09 10:15:09.862717+00 10816 HT058FWE#白VS-D3 SPMX-20240815305987 \N \N \N 1 \N [{"file_id": "5f4cb86d-fb1b-4e07-b304-ba04c2f53ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d91ac64fd2d44507b201dc6317a34a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d91ac64fd2d44507b201dc6317a34a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d91ac64fd2d44507b201dc6317a34a5c.jpg", "file_size": 15527, "is_delete": false, "file_type": 1, "original_file_name": "HT058FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91ac64fd2d44507b201dc6317a34a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91ac64fd2d44507b201dc6317a34a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91ac64fd2d44507b201dc6317a34a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d91ac64fd2d44507b201dc6317a34a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d91ac64fd2d44507b201dc6317a34a5c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9nK68mViIf-LRMtAY-4zffY43o=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.8647+00 2025-12-09 10:15:09.864707+00 10817 8124#5XL SPMX-20240815305995 \N \N \N 1 \N [{"file_id": "118e73e0-2482-4abe-958e-9f408e59f049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ccaa0a385e47d681d15cafc8487031.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ccaa0a385e47d681d15cafc8487031.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ccaa0a385e47d681d15cafc8487031.jpg", "file_size": 17353, "is_delete": false, "file_type": 1, "original_file_name": "8124#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ccaa0a385e47d681d15cafc8487031.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ccaa0a385e47d681d15cafc8487031.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ccaa0a385e47d681d15cafc8487031.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ccaa0a385e47d681d15cafc8487031.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ccaa0a385e47d681d15cafc8487031.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dBasBTzIKxauGqi5tuYbRXqkNk=", "createTime": "2024-08-15 14:51:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.866616+00 2025-12-09 10:15:09.86662+00 10818 C403#黑底白花 SPMX-20240815305997 \N \N \N 1 \N [{"file_id": "9079580b-78c1-427a-b070-73a5918cfb61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aea266690fcc4816b930a4150ce8e058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aea266690fcc4816b930a4150ce8e058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aea266690fcc4816b930a4150ce8e058.jpg", "file_size": 54160, "is_delete": false, "file_type": 1, "original_file_name": "C403#黑底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea266690fcc4816b930a4150ce8e058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea266690fcc4816b930a4150ce8e058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aea266690fcc4816b930a4150ce8e058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aea266690fcc4816b930a4150ce8e058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aea266690fcc4816b930a4150ce8e058.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBAvkjvFxiKo1sEoujxIV1kAxs8=", "createTime": "2024-08-15 14:51:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.868594+00 2025-12-09 10:15:09.868598+00 10819 11-6G25#黑色S SPMX-20240815305996 \N \N \N 1 \N [{"file_id": "f4270f56-3179-46c7-8e23-55c81a2c5271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f2c90ce936c4c6696b6a43550e8c822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f2c90ce936c4c6696b6a43550e8c822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f2c90ce936c4c6696b6a43550e8c822.jpg", "file_size": 17729, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#黑色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c90ce936c4c6696b6a43550e8c822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c90ce936c4c6696b6a43550e8c822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2c90ce936c4c6696b6a43550e8c822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f2c90ce936c4c6696b6a43550e8c822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f2c90ce936c4c6696b6a43550e8c822.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CgI2wg_XCPbK9c675kfLys3EkfU=", "createTime": "2024-08-15 14:51:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.870639+00 2025-12-09 10:15:09.870645+00 10820 JTSS217FW#VS-D3 SPMX-20240815306000 \N \N \N 1 \N [{"file_id": "65bf31ae-317b-42e8-ac5d-ae69e18ba9c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c094c56a07745faad35d0af0b27b8f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c094c56a07745faad35d0af0b27b8f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c094c56a07745faad35d0af0b27b8f6.jpg", "file_size": 21556, "is_delete": false, "file_type": 1, "original_file_name": "JTSS217FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c094c56a07745faad35d0af0b27b8f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c094c56a07745faad35d0af0b27b8f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c094c56a07745faad35d0af0b27b8f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c094c56a07745faad35d0af0b27b8f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c094c56a07745faad35d0af0b27b8f6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yb8lyTVk5jSrjUgaEzFlxUVfEc=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.87268+00 2025-12-09 10:15:09.872685+00 10821 11-6G25#黑色XL SPMX-20240815306002 \N \N \N 1 \N [{"file_id": "5a73470a-f18b-41ab-922f-9cb01c5df265", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85a76b93ed07483182398b1f136099af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85a76b93ed07483182398b1f136099af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85a76b93ed07483182398b1f136099af.jpg", "file_size": 18610, "is_delete": false, "file_type": 1, "original_file_name": "11-6G25#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85a76b93ed07483182398b1f136099af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85a76b93ed07483182398b1f136099af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85a76b93ed07483182398b1f136099af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85a76b93ed07483182398b1f136099af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85a76b93ed07483182398b1f136099af.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vhbdoKC0ZME81MLv-_flvpGkVo=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.874581+00 2025-12-09 10:15:09.874585+00 10822 DL30750#批布亮黄 SPMX-20240815305998 \N \N \N 1 \N [{"file_id": "33ef84fe-b4ba-4035-b1eb-e431a0554511", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510e04ee169c4e65bd29888cf9ea4780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510e04ee169c4e65bd29888cf9ea4780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510e04ee169c4e65bd29888cf9ea4780.jpg", "file_size": 17170, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510e04ee169c4e65bd29888cf9ea4780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510e04ee169c4e65bd29888cf9ea4780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510e04ee169c4e65bd29888cf9ea4780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510e04ee169c4e65bd29888cf9ea4780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510e04ee169c4e65bd29888cf9ea4780.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jR4YQ2n0UN3G6fKzhoqySJEksRA=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.876546+00 2025-12-09 10:15:09.876555+00 10823 23-2117#A11-领子4XL SPMX-20240815306001 \N \N \N 1 \N [{"file_id": "9f183534-e2b8-46bf-a12c-6e87c04f5f7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77deb3551575408096358da01f2deef3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77deb3551575408096358da01f2deef3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77deb3551575408096358da01f2deef3.jpg", "file_size": 13663, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77deb3551575408096358da01f2deef3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77deb3551575408096358da01f2deef3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77deb3551575408096358da01f2deef3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77deb3551575408096358da01f2deef3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77deb3551575408096358da01f2deef3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H21T6j5teFJG4K-kkUTP2EA-gn8=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.878525+00 2025-12-09 10:15:09.87853+00 10824 HT058FWE#绿VS-D3 SPMX-20240815305999 \N \N \N 1 \N [{"file_id": "3288ba44-3ca0-4908-8fbc-31fd40e9cf6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6366478a34c9453d8054449edd754ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6366478a34c9453d8054449edd754ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6366478a34c9453d8054449edd754ed9.jpg", "file_size": 16857, "is_delete": false, "file_type": 1, "original_file_name": "HT058FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6366478a34c9453d8054449edd754ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6366478a34c9453d8054449edd754ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6366478a34c9453d8054449edd754ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6366478a34c9453d8054449edd754ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6366478a34c9453d8054449edd754ed9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3RUTBLH9xPKj4stL2CbG3kPxzs=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.880278+00 2025-12-09 10:15:09.880283+00 10825 8124#乱花 SPMX-20240815306015 \N \N \N 1 \N [{"file_id": "883b2ae0-4a1e-4361-b9a7-d8bb82d841d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19236987b35c4496bb09e9f1da5625c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19236987b35c4496bb09e9f1da5625c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19236987b35c4496bb09e9f1da5625c1.jpg", "file_size": 14106, "is_delete": false, "file_type": 1, "original_file_name": "8124#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19236987b35c4496bb09e9f1da5625c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19236987b35c4496bb09e9f1da5625c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19236987b35c4496bb09e9f1da5625c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19236987b35c4496bb09e9f1da5625c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19236987b35c4496bb09e9f1da5625c1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXYKygbQYVjgxMmFf0XBNmQTwv0=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.882027+00 2025-12-09 10:15:09.882031+00 10826 LJ9931#XL灰 SPMX-20240815306007 \N \N \N 1 \N [{"file_id": "34e52470-d25f-4ac8-af24-d767c9fcf6e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61c793e6b04b47c6b99e1a44caa53513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61c793e6b04b47c6b99e1a44caa53513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61c793e6b04b47c6b99e1a44caa53513.jpg", "file_size": 13286, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c793e6b04b47c6b99e1a44caa53513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c793e6b04b47c6b99e1a44caa53513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c793e6b04b47c6b99e1a44caa53513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61c793e6b04b47c6b99e1a44caa53513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61c793e6b04b47c6b99e1a44caa53513.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZQpY55fjmFk4peG_RVfuzhYlT1s=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.883844+00 2025-12-09 10:15:09.883849+00 10827 HT059FW#VS-D3 SPMX-20240815306010 \N \N \N 1 \N [{"file_id": "6358af7c-978d-4ea2-a31d-e10135432e37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ec77626ae1d49ad80be1afc66cbc74b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ec77626ae1d49ad80be1afc66cbc74b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ec77626ae1d49ad80be1afc66cbc74b.jpg", "file_size": 23173, "is_delete": false, "file_type": 1, "original_file_name": "HT059FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec77626ae1d49ad80be1afc66cbc74b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec77626ae1d49ad80be1afc66cbc74b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec77626ae1d49ad80be1afc66cbc74b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ec77626ae1d49ad80be1afc66cbc74b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ec77626ae1d49ad80be1afc66cbc74b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkcKLXbfG-vhaVUiVT7Q1StxFZM=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.885793+00 2025-12-09 10:15:09.885797+00 10828 JTSS218FW#VS-D3 SPMX-20240815306011 \N \N \N 1 \N [{"file_id": "f8db9e92-28a5-44d4-9a04-5ac7c304e544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9cce250a7c147b09b75605a5b0fdc86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9cce250a7c147b09b75605a5b0fdc86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9cce250a7c147b09b75605a5b0fdc86.jpg", "file_size": 15072, "is_delete": false, "file_type": 1, "original_file_name": "JTSS218FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cce250a7c147b09b75605a5b0fdc86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cce250a7c147b09b75605a5b0fdc86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cce250a7c147b09b75605a5b0fdc86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9cce250a7c147b09b75605a5b0fdc86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9cce250a7c147b09b75605a5b0fdc86.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iO3o5cPy_fvfU99-6O-y0xdJKVc=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.887719+00 2025-12-09 10:15:09.887724+00 10829 LZ1279#背心款5号色 SPMX-20240815306005 \N \N \N 1 \N [{"file_id": "59242bf4-e370-4fbd-af7d-d71d04f5050f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c06e2e17c23445695861053454a558f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c06e2e17c23445695861053454a558f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c06e2e17c23445695861053454a558f.jpg", "file_size": 14603, "is_delete": false, "file_type": 1, "original_file_name": "LZ1279#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06e2e17c23445695861053454a558f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06e2e17c23445695861053454a558f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06e2e17c23445695861053454a558f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c06e2e17c23445695861053454a558f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c06e2e17c23445695861053454a558f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hywl63YlDuATcEspHsVvGLeJWyk=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.889669+00 2025-12-09 10:15:09.889673+00 10830 8124#XL SPMX-20240815306006 \N \N \N 1 \N [{"file_id": "4acf9afb-1424-4eff-abd2-c618041a4083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg", "file_size": 18229, "is_delete": false, "file_type": 1, "original_file_name": "8124#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8dd2d3a30d84e6eb0ff4e91e1d38c43.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdGFd_k6ZE4G5yI0jfNjhrNI_oM=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.891655+00 2025-12-09 10:15:09.89166+00 10831 C407#C408#墨绿 SPMX-20240815306004 \N \N \N 1 \N [{"file_id": "14f229da-6176-42e2-b9bd-39a0601e2a6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79cbfa06d00548c38c25f608c239387b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79cbfa06d00548c38c25f608c239387b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79cbfa06d00548c38c25f608c239387b.jpg", "file_size": 68935, "is_delete": false, "file_type": 1, "original_file_name": "C407#C408#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79cbfa06d00548c38c25f608c239387b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79cbfa06d00548c38c25f608c239387b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79cbfa06d00548c38c25f608c239387b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79cbfa06d00548c38c25f608c239387b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79cbfa06d00548c38c25f608c239387b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiYNql0N3habhahaLmma1rWx93c=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.893655+00 2025-12-09 10:15:09.893659+00 10832 FHXGPK-批布045-3 SPMX-20240815306013 \N \N \N 1 \N [{"file_id": "eb3e7db1-adbf-453a-8844-ff249963297f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f44803f644354e8aa0747106e3c7d533.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f44803f644354e8aa0747106e3c7d533.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f44803f644354e8aa0747106e3c7d533.jpg", "file_size": 80076, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布045-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44803f644354e8aa0747106e3c7d533.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44803f644354e8aa0747106e3c7d533.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44803f644354e8aa0747106e3c7d533.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f44803f644354e8aa0747106e3c7d533.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f44803f644354e8aa0747106e3c7d533.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCOsdamnnBNkz1Lj9dEqe2JHrqY=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.895667+00 2025-12-09 10:15:09.895672+00 10833 FHXGPK-批布045-2 SPMX-20240815306003 \N \N \N 1 \N [{"file_id": "ac25c0d0-0bdd-451e-b293-97c09a63bdbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "104e7e0145e44273bd2604f8c217cc11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "104e7e0145e44273bd2604f8c217cc11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "104e7e0145e44273bd2604f8c217cc11.jpg", "file_size": 69838, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布045-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e7e0145e44273bd2604f8c217cc11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e7e0145e44273bd2604f8c217cc11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e7e0145e44273bd2604f8c217cc11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/104e7e0145e44273bd2604f8c217cc11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/104e7e0145e44273bd2604f8c217cc11.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggSgwYe14koNvCB5SAnIIwognt8=", "createTime": "2024-08-15 14:51:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.89787+00 2025-12-09 10:15:09.897876+00 10834 0003-75FWF#墨绿色 SPMX-20240815306008 \N \N \N 1 \N [{"file_id": "c6a82b7d-b0ff-4205-a806-ea1b477ec278", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f09968c139b94cfab0bbf6760f4dc7a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f09968c139b94cfab0bbf6760f4dc7a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f09968c139b94cfab0bbf6760f4dc7a7.jpg", "file_size": 26663, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09968c139b94cfab0bbf6760f4dc7a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09968c139b94cfab0bbf6760f4dc7a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09968c139b94cfab0bbf6760f4dc7a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f09968c139b94cfab0bbf6760f4dc7a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f09968c139b94cfab0bbf6760f4dc7a7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lC6XNd7SrO6-n1-CKr8xLymQKI8=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.899968+00 2025-12-09 10:15:09.899973+00 10835 C407#C408#大白 SPMX-20240815306014 \N \N \N 1 \N [{"file_id": "b9c24d1b-e879-4fdd-bc6e-00ae883b5379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92b1f0572a9e464e8a45e625543e7a69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92b1f0572a9e464e8a45e625543e7a69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92b1f0572a9e464e8a45e625543e7a69.jpg", "file_size": 63031, "is_delete": false, "file_type": 1, "original_file_name": "C407#C408#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b1f0572a9e464e8a45e625543e7a69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b1f0572a9e464e8a45e625543e7a69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b1f0572a9e464e8a45e625543e7a69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92b1f0572a9e464e8a45e625543e7a69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92b1f0572a9e464e8a45e625543e7a69.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sedQRfFqevr_Ys36pm4bG4EOjAA=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.901976+00 2025-12-09 10:15:09.90198+00 10836 23-2117#A12-3XL SPMX-20240815306012 \N \N \N 1 \N [{"file_id": "2f9aa140-8716-4b45-a3a1-a774cb55f5bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45a044136a754eb4988823fa841cb0c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45a044136a754eb4988823fa841cb0c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45a044136a754eb4988823fa841cb0c2.jpg", "file_size": 17926, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a044136a754eb4988823fa841cb0c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a044136a754eb4988823fa841cb0c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45a044136a754eb4988823fa841cb0c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45a044136a754eb4988823fa841cb0c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45a044136a754eb4988823fa841cb0c2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P4VE_0jcTUxhUR0uWo9IoLgESW0=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.903956+00 2025-12-09 10:15:09.903961+00 10837 DL30750#批布墨绿 SPMX-20240815306009 \N \N \N 1 \N [{"file_id": "77039524-a00d-403d-ab46-6ae00bd762a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1359f7f97b54eb1be135608d06f2a28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1359f7f97b54eb1be135608d06f2a28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1359f7f97b54eb1be135608d06f2a28.jpg", "file_size": 16490, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1359f7f97b54eb1be135608d06f2a28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1359f7f97b54eb1be135608d06f2a28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1359f7f97b54eb1be135608d06f2a28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1359f7f97b54eb1be135608d06f2a28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1359f7f97b54eb1be135608d06f2a28.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mFxEYxnFLTrg-Hx1T_XywUdYkdE=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.905931+00 2025-12-09 10:15:09.905935+00 10838 LZ127FWF#1号色短袖 SPMX-20240815306018 \N \N \N 1 \N [{"file_id": "e6eaf539-80e4-47a8-bc38-ea084a2f9d50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6929e9ce5e8432fb7de9339e8fee22c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6929e9ce5e8432fb7de9339e8fee22c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6929e9ce5e8432fb7de9339e8fee22c.jpg", "file_size": 19456, "is_delete": false, "file_type": 1, "original_file_name": "LZ127FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6929e9ce5e8432fb7de9339e8fee22c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6929e9ce5e8432fb7de9339e8fee22c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6929e9ce5e8432fb7de9339e8fee22c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6929e9ce5e8432fb7de9339e8fee22c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6929e9ce5e8432fb7de9339e8fee22c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3spLyIUt9J8hUPqgMZFpsAnXIw=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.907885+00 2025-12-09 10:15:09.90789+00 10839 LJ9931#XL白 SPMX-20240815306016 \N \N \N 1 \N [{"file_id": "72b69f21-3ee6-465b-9c08-ef5ae9549734", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39536ca7fe87457a9d522ae7a4c45476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39536ca7fe87457a9d522ae7a4c45476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39536ca7fe87457a9d522ae7a4c45476.jpg", "file_size": 14609, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39536ca7fe87457a9d522ae7a4c45476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39536ca7fe87457a9d522ae7a4c45476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39536ca7fe87457a9d522ae7a4c45476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39536ca7fe87457a9d522ae7a4c45476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39536ca7fe87457a9d522ae7a4c45476.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytby1E6eVg6AupfjuPzeH4t7d-E=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.909854+00 2025-12-09 10:15:09.909859+00 10840 11-6G26#白色L SPMX-20240815306017 \N \N \N 1 \N [{"file_id": "688beb64-e6ca-48ec-979b-f356001468a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg", "file_size": 14116, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fbf9893bcfe49e5bcb5b8a4c9f2a4f3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fplJJLy0WRAy9I0_N-RAxSBy14=", "createTime": "2024-08-15 14:51:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.911758+00 2025-12-09 10:15:09.911763+00 10841 LZ127FWF#2号色短袖 SPMX-20240815306020 \N \N \N 1 \N [{"file_id": "dcf967a7-281a-470c-a46a-17d6f79cce1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86cbed674cfd4f9abdced606fdaa789a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86cbed674cfd4f9abdced606fdaa789a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86cbed674cfd4f9abdced606fdaa789a.jpg", "file_size": 19004, "is_delete": false, "file_type": 1, "original_file_name": "LZ127FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86cbed674cfd4f9abdced606fdaa789a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86cbed674cfd4f9abdced606fdaa789a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86cbed674cfd4f9abdced606fdaa789a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86cbed674cfd4f9abdced606fdaa789a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86cbed674cfd4f9abdced606fdaa789a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktdBEXvJ_GDeKVq6rI8qCfmKYYU=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.913496+00 2025-12-09 10:15:09.913501+00 10842 0003-75FWF#宝蓝色 SPMX-20240815306019 \N \N \N 1 \N [{"file_id": "351b2e64-4f7a-459e-90bf-9d4e46b08347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28e2216476c745aba242cfd63996984b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28e2216476c745aba242cfd63996984b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28e2216476c745aba242cfd63996984b.jpg", "file_size": 26905, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e2216476c745aba242cfd63996984b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e2216476c745aba242cfd63996984b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e2216476c745aba242cfd63996984b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28e2216476c745aba242cfd63996984b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28e2216476c745aba242cfd63996984b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZhKE1Z92M5RTXamS5INfpYl8VQ=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.915262+00 2025-12-09 10:15:09.915267+00 10843 11-6G26#白色M SPMX-20240815306023 \N \N \N 1 \N [{"file_id": "d58a349c-91ce-474d-9e52-a19b876b9b4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e79a248a1ee143db9b9c3d7d9f90aee2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e79a248a1ee143db9b9c3d7d9f90aee2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e79a248a1ee143db9b9c3d7d9f90aee2.jpg", "file_size": 13906, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79a248a1ee143db9b9c3d7d9f90aee2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79a248a1ee143db9b9c3d7d9f90aee2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79a248a1ee143db9b9c3d7d9f90aee2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e79a248a1ee143db9b9c3d7d9f90aee2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e79a248a1ee143db9b9c3d7d9f90aee2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_f5QhQhtVc6cTmYaC5scAgt3xOM=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.917022+00 2025-12-09 10:15:09.917027+00 10844 JTSS219FW#VS-D3 SPMX-20240815306022 \N \N \N 1 \N [{"file_id": "5f92784b-3ada-41f1-9bb2-0cdeceef9cd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f21f9980cb04b599a4a390eab7056f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f21f9980cb04b599a4a390eab7056f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f21f9980cb04b599a4a390eab7056f6.jpg", "file_size": 19193, "is_delete": false, "file_type": 1, "original_file_name": "JTSS219FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f21f9980cb04b599a4a390eab7056f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f21f9980cb04b599a4a390eab7056f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f21f9980cb04b599a4a390eab7056f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f21f9980cb04b599a4a390eab7056f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f21f9980cb04b599a4a390eab7056f6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17YeZO-W2WpDoftm-enGbPV-5h0=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.918966+00 2025-12-09 10:15:09.91897+00 10845 DL30750#批布彩兰 SPMX-20240815306021 \N \N \N 1 \N [{"file_id": "34101134-b50a-476e-b2ef-1de486922b14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d923913c68b4088bfc346a49283be1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d923913c68b4088bfc346a49283be1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d923913c68b4088bfc346a49283be1c.jpg", "file_size": 16459, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d923913c68b4088bfc346a49283be1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d923913c68b4088bfc346a49283be1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d923913c68b4088bfc346a49283be1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d923913c68b4088bfc346a49283be1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d923913c68b4088bfc346a49283be1c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJvh_fMv9hR_6C3COYgIeJkX5x8=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.920938+00 2025-12-09 10:15:09.920943+00 10846 C407#C408#粉色 SPMX-20240815306035 \N \N \N 1 \N [{"file_id": "7ea185b9-bc12-4132-9e35-e4c347d1b500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84d086f1348e48018eceb33145238b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84d086f1348e48018eceb33145238b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84d086f1348e48018eceb33145238b8b.jpg", "file_size": 57168, "is_delete": false, "file_type": 1, "original_file_name": "C407#C408#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d086f1348e48018eceb33145238b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d086f1348e48018eceb33145238b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d086f1348e48018eceb33145238b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84d086f1348e48018eceb33145238b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84d086f1348e48018eceb33145238b8b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlHnJSH9ZGfYKlCXRkv3yAdaD4M=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.922929+00 2025-12-09 10:15:09.922934+00 10847 11-6G26#白色S SPMX-20240815306032 \N \N \N 1 \N [{"file_id": "db6f29e6-df51-4a59-ad04-d44dfbc90464", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e385d8f9d0b04f3aa826e48e0f1d7650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e385d8f9d0b04f3aa826e48e0f1d7650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e385d8f9d0b04f3aa826e48e0f1d7650.jpg", "file_size": 13853, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#白色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e385d8f9d0b04f3aa826e48e0f1d7650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e385d8f9d0b04f3aa826e48e0f1d7650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e385d8f9d0b04f3aa826e48e0f1d7650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e385d8f9d0b04f3aa826e48e0f1d7650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e385d8f9d0b04f3aa826e48e0f1d7650.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B9uum5YPke3q00jjCDz4CC4sNq4=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.92493+00 2025-12-09 10:15:09.924935+00 10848 DL30750#批布枣红 SPMX-20240815306031 \N \N \N 1 \N [{"file_id": "8a4f1c2d-2a86-422f-9559-0bb5a93dc5af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a1554ee098474cb86ac379644f9496.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a1554ee098474cb86ac379644f9496.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a1554ee098474cb86ac379644f9496.jpg", "file_size": 15504, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a1554ee098474cb86ac379644f9496.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a1554ee098474cb86ac379644f9496.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a1554ee098474cb86ac379644f9496.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a1554ee098474cb86ac379644f9496.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a1554ee098474cb86ac379644f9496.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grQ3pUht7jsJaBwBqH2KUrlyUcs=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.926865+00 2025-12-09 10:15:09.926869+00 10849 FHXGPK-批布046-1 SPMX-20240815306028 \N \N \N 1 \N [{"file_id": "d1029099-7116-4245-8d1a-f6b77e1645aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13bf7a746c9240b2b07ac66432a386d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13bf7a746c9240b2b07ac66432a386d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13bf7a746c9240b2b07ac66432a386d2.jpg", "file_size": 57946, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布046-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bf7a746c9240b2b07ac66432a386d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bf7a746c9240b2b07ac66432a386d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bf7a746c9240b2b07ac66432a386d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13bf7a746c9240b2b07ac66432a386d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13bf7a746c9240b2b07ac66432a386d2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odmZSbk1GJ8LoSdsxA1lVxWhLNE=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.928588+00 2025-12-09 10:15:09.928592+00 10850 LJ9931#XL白前片 SPMX-20240815306030 \N \N \N 1 \N [{"file_id": "b56c60d3-46f2-4d3f-b8e7-01a5e15acc9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d56ae6e9c79f406bafd2ff7de0929d8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d56ae6e9c79f406bafd2ff7de0929d8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d56ae6e9c79f406bafd2ff7de0929d8c.jpg", "file_size": 9274, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL白前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56ae6e9c79f406bafd2ff7de0929d8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56ae6e9c79f406bafd2ff7de0929d8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56ae6e9c79f406bafd2ff7de0929d8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d56ae6e9c79f406bafd2ff7de0929d8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d56ae6e9c79f406bafd2ff7de0929d8c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRjR5Me9TbtXs3d6LcA9FTL-z6E=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.930318+00 2025-12-09 10:15:09.930323+00 10851 JTSS220FW#VS-D3 SPMX-20240815306033 \N \N \N 1 \N [{"file_id": "8628d707-669a-4fa3-806f-3dd28ebd96a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27499a0ad61e47a196230ce569114cff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27499a0ad61e47a196230ce569114cff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27499a0ad61e47a196230ce569114cff.jpg", "file_size": 27040, "is_delete": false, "file_type": 1, "original_file_name": "JTSS220FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27499a0ad61e47a196230ce569114cff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27499a0ad61e47a196230ce569114cff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27499a0ad61e47a196230ce569114cff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27499a0ad61e47a196230ce569114cff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27499a0ad61e47a196230ce569114cff.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VnJDm8Qu5eFkl9Dc--MZlnjV6M=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.932077+00 2025-12-09 10:15:09.932082+00 10852 LZ127FWF#3号色短袖 SPMX-20240815306034 \N \N \N 1 \N [{"file_id": "ecf05dd1-cc70-4f23-aec5-df8953395c8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6c6e9d29cde4df7a1d48fe86c581657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6c6e9d29cde4df7a1d48fe86c581657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6c6e9d29cde4df7a1d48fe86c581657.jpg", "file_size": 18934, "is_delete": false, "file_type": 1, "original_file_name": "LZ127FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c6e9d29cde4df7a1d48fe86c581657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c6e9d29cde4df7a1d48fe86c581657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c6e9d29cde4df7a1d48fe86c581657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6c6e9d29cde4df7a1d48fe86c581657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6c6e9d29cde4df7a1d48fe86c581657.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nS-e8VluI7NDIa3ScYLKdSe-ybM=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.934062+00 2025-12-09 10:15:09.934067+00 10853 23-2117#A12-领子3XL SPMX-20240815306037 \N \N \N 1 \N [{"file_id": "7f0442c0-06c9-42af-8830-6d2272287460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50ee639fe1544e059cd6aa497f37b00c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50ee639fe1544e059cd6aa497f37b00c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50ee639fe1544e059cd6aa497f37b00c.jpg", "file_size": 11484, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ee639fe1544e059cd6aa497f37b00c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ee639fe1544e059cd6aa497f37b00c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ee639fe1544e059cd6aa497f37b00c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50ee639fe1544e059cd6aa497f37b00c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50ee639fe1544e059cd6aa497f37b00c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BedD1r8f6fsxK3bpHLgLzOnItU4=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.936194+00 2025-12-09 10:15:09.936198+00 10854 23-2117#A12-4XL SPMX-20240815306027 \N \N \N 1 \N [{"file_id": "33dc38f2-3912-4598-bd32-8a4b8a186ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff6b9fa34ef2403ab2af1479be2e2118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff6b9fa34ef2403ab2af1479be2e2118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff6b9fa34ef2403ab2af1479be2e2118.jpg", "file_size": 16505, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff6b9fa34ef2403ab2af1479be2e2118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff6b9fa34ef2403ab2af1479be2e2118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff6b9fa34ef2403ab2af1479be2e2118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff6b9fa34ef2403ab2af1479be2e2118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff6b9fa34ef2403ab2af1479be2e2118.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rExkoc2aPT7VJgzNK_2r9yBzZiE=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.938406+00 2025-12-09 10:15:09.938411+00 10855 HT059FWE#VS-D3 SPMX-20240815306026 \N \N \N 1 \N [{"file_id": "ee36cd6e-e43b-45b3-9267-85a6da2d55d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9d77c415f8b4bc18ea726e9f32143c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9d77c415f8b4bc18ea726e9f32143c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9d77c415f8b4bc18ea726e9f32143c7.jpg", "file_size": 22762, "is_delete": false, "file_type": 1, "original_file_name": "HT059FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d77c415f8b4bc18ea726e9f32143c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d77c415f8b4bc18ea726e9f32143c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d77c415f8b4bc18ea726e9f32143c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9d77c415f8b4bc18ea726e9f32143c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9d77c415f8b4bc18ea726e9f32143c7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LNigwbwSCditSaO2mSs1Bi6vHc=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.940437+00 2025-12-09 10:15:09.940442+00 10856 C407#C408#玫红 SPMX-20240815306024 \N \N \N 1 \N [{"file_id": "80ea3f4f-5de1-4483-a74d-dc936bf620ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "623a992b2701482692ef3ebd795c87c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "623a992b2701482692ef3ebd795c87c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "623a992b2701482692ef3ebd795c87c2.jpg", "file_size": 68434, "is_delete": false, "file_type": 1, "original_file_name": "C407#C408#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a992b2701482692ef3ebd795c87c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a992b2701482692ef3ebd795c87c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a992b2701482692ef3ebd795c87c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/623a992b2701482692ef3ebd795c87c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/623a992b2701482692ef3ebd795c87c2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nB-cy2VbxxgDPy5L731Ze_ZgrtU=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.94245+00 2025-12-09 10:15:09.942455+00 10857 0003-75FWF#橙色 SPMX-20240815306029 \N \N \N 1 \N [{"file_id": "59a991a8-b631-4b41-9431-38425054cb80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0f3a20f0854a58876b7645e4b41a51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0f3a20f0854a58876b7645e4b41a51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0f3a20f0854a58876b7645e4b41a51.jpg", "file_size": 23942, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0f3a20f0854a58876b7645e4b41a51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0f3a20f0854a58876b7645e4b41a51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0f3a20f0854a58876b7645e4b41a51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0f3a20f0854a58876b7645e4b41a51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0f3a20f0854a58876b7645e4b41a51.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzgwf0XCbdbvr9AP8tJINAltcL0=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.944547+00 2025-12-09 10:15:09.944552+00 10858 HT060FW#VS-D3 SPMX-20240815306036 \N \N \N 1 \N [{"file_id": "2fdb10a4-687b-47b5-a030-84825a86794b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab12055924e1460fb28ad47a1ce5765e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab12055924e1460fb28ad47a1ce5765e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab12055924e1460fb28ad47a1ce5765e.jpg", "file_size": 24116, "is_delete": false, "file_type": 1, "original_file_name": "HT060FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab12055924e1460fb28ad47a1ce5765e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab12055924e1460fb28ad47a1ce5765e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab12055924e1460fb28ad47a1ce5765e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab12055924e1460fb28ad47a1ce5765e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab12055924e1460fb28ad47a1ce5765e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_e2Nt87bmfTIDiwC8nfGC79D7Zc=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.954225+00 2025-12-09 10:15:09.95423+00 10863 DL30763#彩蓝 SPMX-20240815306051 \N \N \N 1 \N [{"file_id": "17517e1a-45f9-49cb-bcae-d3cc783062f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68efffaf8e204b4ab2e59dd9365ae851.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68efffaf8e204b4ab2e59dd9365ae851.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68efffaf8e204b4ab2e59dd9365ae851.jpg", "file_size": 21572, "is_delete": false, "file_type": 1, "original_file_name": "DL30763#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68efffaf8e204b4ab2e59dd9365ae851.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68efffaf8e204b4ab2e59dd9365ae851.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68efffaf8e204b4ab2e59dd9365ae851.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68efffaf8e204b4ab2e59dd9365ae851.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68efffaf8e204b4ab2e59dd9365ae851.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NkQqB0geq82eyn4k0Q-c-Y6zkdg=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.94665+00 2025-12-09 10:15:09.946654+00 10859 8124#短裤套装上衣 SPMX-20240815306025 \N \N \N 1 \N [{"file_id": "de475122-618a-4261-989e-e25facf2526e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2074e78502274cb8b81273a1cb460dea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2074e78502274cb8b81273a1cb460dea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2074e78502274cb8b81273a1cb460dea.jpg", "file_size": 20649, "is_delete": false, "file_type": 1, "original_file_name": "8124#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2074e78502274cb8b81273a1cb460dea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2074e78502274cb8b81273a1cb460dea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2074e78502274cb8b81273a1cb460dea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2074e78502274cb8b81273a1cb460dea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2074e78502274cb8b81273a1cb460dea.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RHqa4v3QxrnbRWocHLCVLA2Zmhg=", "createTime": "2024-08-15 14:51:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.948687+00 2025-12-09 10:15:09.948692+00 10860 LJ9931#XL绿 SPMX-20240815306052 \N \N \N 1 \N [{"file_id": "77e4e7c3-9f65-46a7-ae8f-db2f9dc7efbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62c0764450fd4717a605e72f27dfa844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62c0764450fd4717a605e72f27dfa844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62c0764450fd4717a605e72f27dfa844.jpg", "file_size": 13967, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c0764450fd4717a605e72f27dfa844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c0764450fd4717a605e72f27dfa844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62c0764450fd4717a605e72f27dfa844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62c0764450fd4717a605e72f27dfa844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62c0764450fd4717a605e72f27dfa844.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ObCJquF1-mW5NPmuPFQISQmspr8=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.950734+00 2025-12-09 10:15:09.950739+00 10861 11-6G26#白色XL SPMX-20240815306043 \N \N \N 1 \N [{"file_id": "c9ad7d1b-a92f-48b2-87e5-ee7720135908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da9517ad940847e7a10f925a2c088266.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da9517ad940847e7a10f925a2c088266.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da9517ad940847e7a10f925a2c088266.jpg", "file_size": 14286, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da9517ad940847e7a10f925a2c088266.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da9517ad940847e7a10f925a2c088266.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da9517ad940847e7a10f925a2c088266.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da9517ad940847e7a10f925a2c088266.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da9517ad940847e7a10f925a2c088266.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gGOrCy5KmtGDBzI2vWHyqBFiVg=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.952481+00 2025-12-09 10:15:09.952485+00 10862 C407#C408#黑色 SPMX-20240815306047 \N \N \N 1 \N [{"file_id": "65d2fd57-6c52-4328-b3f0-90436caa4367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "867be63fbd1d4100b9416096c725053e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "867be63fbd1d4100b9416096c725053e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "867be63fbd1d4100b9416096c725053e.jpg", "file_size": 66008, "is_delete": false, "file_type": 1, "original_file_name": "C407#C408#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867be63fbd1d4100b9416096c725053e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867be63fbd1d4100b9416096c725053e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/867be63fbd1d4100b9416096c725053e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/867be63fbd1d4100b9416096c725053e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/867be63fbd1d4100b9416096c725053e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n1hZOUNcxjck7l4u0Bzx59U3aK8=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.956217+00 2025-12-09 10:15:09.956222+00 10864 0003-75FWF#红色 SPMX-20240815306038 \N \N \N 1 \N [{"file_id": "703846d9-215a-43c8-8ede-d2717f6e8bf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90c6661a3d9946e890644c684e841fc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90c6661a3d9946e890644c684e841fc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90c6661a3d9946e890644c684e841fc4.jpg", "file_size": 25708, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6661a3d9946e890644c684e841fc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6661a3d9946e890644c684e841fc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6661a3d9946e890644c684e841fc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90c6661a3d9946e890644c684e841fc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90c6661a3d9946e890644c684e841fc4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_jJuRMjafmeW1pxO4klOZAh4Xg=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.958163+00 2025-12-09 10:15:09.958168+00 10865 DL30750#批布玫红 SPMX-20240815306042 \N \N \N 1 \N [{"file_id": "0740c647-e2e1-4269-9d13-385c8d4be403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e654ab0fadf6469bb1545705dbad212d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e654ab0fadf6469bb1545705dbad212d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e654ab0fadf6469bb1545705dbad212d.jpg", "file_size": 16864, "is_delete": false, "file_type": 1, "original_file_name": "DL30750#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e654ab0fadf6469bb1545705dbad212d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e654ab0fadf6469bb1545705dbad212d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e654ab0fadf6469bb1545705dbad212d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e654ab0fadf6469bb1545705dbad212d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e654ab0fadf6469bb1545705dbad212d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgo2v821zBRPVqcoEFx6xEIVACA=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.960163+00 2025-12-09 10:15:09.960167+00 10866 HT060FWE#VS-D3 SPMX-20240815306048 \N \N \N 1 \N [{"file_id": "7d2344d5-53d9-4187-bd66-41106b16b32c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e467b2527dad41c6b068b07fc8884990.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e467b2527dad41c6b068b07fc8884990.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e467b2527dad41c6b068b07fc8884990.jpg", "file_size": 26079, "is_delete": false, "file_type": 1, "original_file_name": "HT060FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e467b2527dad41c6b068b07fc8884990.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e467b2527dad41c6b068b07fc8884990.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e467b2527dad41c6b068b07fc8884990.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e467b2527dad41c6b068b07fc8884990.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e467b2527dad41c6b068b07fc8884990.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JEQE0k2pari7Z12-yv4BcA5NT7c=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.962188+00 2025-12-09 10:15:09.962192+00 10867 LZ127FWF#4号色短袖 SPMX-20240815306044 \N \N \N 1 \N [{"file_id": "207ec6c7-d5c1-456d-9a17-3e195d1d9b2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdc1a11e45bf42b8bfc70d59e058d3d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdc1a11e45bf42b8bfc70d59e058d3d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdc1a11e45bf42b8bfc70d59e058d3d0.jpg", "file_size": 19696, "is_delete": false, "file_type": 1, "original_file_name": "LZ127FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc1a11e45bf42b8bfc70d59e058d3d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc1a11e45bf42b8bfc70d59e058d3d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc1a11e45bf42b8bfc70d59e058d3d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdc1a11e45bf42b8bfc70d59e058d3d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdc1a11e45bf42b8bfc70d59e058d3d0.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMVe_4xBrb7I61U12FTLNBl5hcE=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.964206+00 2025-12-09 10:15:09.96421+00 10868 LJ9931#XL粉 SPMX-20240815306040 \N \N \N 1 \N [{"file_id": "d2eca1ce-f996-43bc-a0dd-eb00d21f64d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3b9556b41d04b9eb5f43d5b3cc972f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3b9556b41d04b9eb5f43d5b3cc972f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3b9556b41d04b9eb5f43d5b3cc972f2.jpg", "file_size": 13901, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b9556b41d04b9eb5f43d5b3cc972f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b9556b41d04b9eb5f43d5b3cc972f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b9556b41d04b9eb5f43d5b3cc972f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3b9556b41d04b9eb5f43d5b3cc972f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3b9556b41d04b9eb5f43d5b3cc972f2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nANGTC01f6WMc7oBQazYAnyFfQk=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.966221+00 2025-12-09 10:15:09.966226+00 10869 FHXGPK-批布046-2 SPMX-20240815306041 \N \N \N 1 \N [{"file_id": "fd822a9e-6ebf-4963-b446-4f052a59d788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4c82195676e4c65bd284b7736182ee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4c82195676e4c65bd284b7736182ee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4c82195676e4c65bd284b7736182ee7.jpg", "file_size": 58185, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布046-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c82195676e4c65bd284b7736182ee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c82195676e4c65bd284b7736182ee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c82195676e4c65bd284b7736182ee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4c82195676e4c65bd284b7736182ee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4c82195676e4c65bd284b7736182ee7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XoQKUsafEk8wHZjxI4qLHY2JY0=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.968116+00 2025-12-09 10:15:09.968121+00 10870 JTSS221FW#VS-D3 SPMX-20240815306045 \N \N \N 1 \N [{"file_id": "1fb9135b-cbf2-429d-b4fb-b2eb9a61c42b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cff343abc83745f5ad1b1dc4e2fbf191.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cff343abc83745f5ad1b1dc4e2fbf191.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cff343abc83745f5ad1b1dc4e2fbf191.jpg", "file_size": 14758, "is_delete": false, "file_type": 1, "original_file_name": "JTSS221FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff343abc83745f5ad1b1dc4e2fbf191.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff343abc83745f5ad1b1dc4e2fbf191.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff343abc83745f5ad1b1dc4e2fbf191.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cff343abc83745f5ad1b1dc4e2fbf191.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cff343abc83745f5ad1b1dc4e2fbf191.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLbn2U4NnKDs8pyuu-hltjMCe2E=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.969857+00 2025-12-09 10:15:09.969862+00 10871 8124#短裤套装裤子 SPMX-20240815306049 \N \N \N 1 \N [{"file_id": "914b6cba-6c1f-49f6-a0d3-1864f90b8485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7c333385bd4725adfa84e4ea61b338.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7c333385bd4725adfa84e4ea61b338.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7c333385bd4725adfa84e4ea61b338.jpg", "file_size": 19941, "is_delete": false, "file_type": 1, "original_file_name": "8124#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c333385bd4725adfa84e4ea61b338.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c333385bd4725adfa84e4ea61b338.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c333385bd4725adfa84e4ea61b338.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7c333385bd4725adfa84e4ea61b338.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7c333385bd4725adfa84e4ea61b338.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAAdKm0Zlw6ezd7ZcjLZu_huu0Q=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.971594+00 2025-12-09 10:15:09.971598+00 10872 23-2117#A12-领子4XL SPMX-20240815306046 \N \N \N 1 \N [{"file_id": "3ba66d6c-9adf-4d48-90cb-3710e5288ca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e98619ee592e410297f15a2ec3eb03f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e98619ee592e410297f15a2ec3eb03f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e98619ee592e410297f15a2ec3eb03f5.jpg", "file_size": 11632, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98619ee592e410297f15a2ec3eb03f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98619ee592e410297f15a2ec3eb03f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e98619ee592e410297f15a2ec3eb03f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e98619ee592e410297f15a2ec3eb03f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e98619ee592e410297f15a2ec3eb03f5.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xW0CNpZJn23B8qMFj-Bb0ixqPEc=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.973599+00 2025-12-09 10:15:09.973604+00 10873 0003-75FWF#黄色 SPMX-20240815306050 \N \N \N 1 \N [{"file_id": "565f585d-e39e-41fd-9369-2905ee6fe506", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "496c9ec761f34644903dba8623d378d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "496c9ec761f34644903dba8623d378d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "496c9ec761f34644903dba8623d378d7.jpg", "file_size": 24458, "is_delete": false, "file_type": 1, "original_file_name": "0003-75FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496c9ec761f34644903dba8623d378d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496c9ec761f34644903dba8623d378d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496c9ec761f34644903dba8623d378d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/496c9ec761f34644903dba8623d378d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/496c9ec761f34644903dba8623d378d7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rhgTkJ2Afoqj-SbSDaZEnxqdFmg=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.975346+00 2025-12-09 10:15:09.975351+00 10874 8124#短裤套装袖子 SPMX-20240815306039 \N \N \N 1 \N [{"file_id": "67d85fd6-7955-42cb-8955-e7f022b998ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a97b514672c4c0d9416f4e5df706a5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a97b514672c4c0d9416f4e5df706a5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a97b514672c4c0d9416f4e5df706a5a.jpg", "file_size": 19648, "is_delete": false, "file_type": 1, "original_file_name": "8124#短裤套装袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a97b514672c4c0d9416f4e5df706a5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a97b514672c4c0d9416f4e5df706a5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a97b514672c4c0d9416f4e5df706a5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a97b514672c4c0d9416f4e5df706a5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a97b514672c4c0d9416f4e5df706a5a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOV2Bup6XO1rpQ06F8ilwc9oNFc=", "createTime": "2024-08-15 14:51:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.977319+00 2025-12-09 10:15:09.977325+00 10875 23-2117#A13-3XL SPMX-20240815306058 \N \N \N 1 \N [{"file_id": "acaf659e-c666-482d-bc7a-2ecd0b4ee30d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5efbfe8277e04d489f41acc61f75aa2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5efbfe8277e04d489f41acc61f75aa2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5efbfe8277e04d489f41acc61f75aa2a.jpg", "file_size": 21651, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5efbfe8277e04d489f41acc61f75aa2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5efbfe8277e04d489f41acc61f75aa2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5efbfe8277e04d489f41acc61f75aa2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5efbfe8277e04d489f41acc61f75aa2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5efbfe8277e04d489f41acc61f75aa2a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RII5EFqJEG25GVFdaTKY8AeBkw=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.979421+00 2025-12-09 10:15:09.979426+00 10876 11-6G26#粉色L SPMX-20240815306053 \N \N \N 1 \N [{"file_id": "3d01a23a-b812-42ba-922e-087db880e38a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73fb6d9223c748bf843dd3ab1bdd7842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73fb6d9223c748bf843dd3ab1bdd7842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73fb6d9223c748bf843dd3ab1bdd7842.jpg", "file_size": 14183, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb6d9223c748bf843dd3ab1bdd7842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb6d9223c748bf843dd3ab1bdd7842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73fb6d9223c748bf843dd3ab1bdd7842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73fb6d9223c748bf843dd3ab1bdd7842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73fb6d9223c748bf843dd3ab1bdd7842.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INw6_Y5KZa5ASCikdClk1IMJE6I=", "createTime": "2024-08-15 14:51:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.981432+00 2025-12-09 10:15:09.981437+00 10877 LZ1280#背心款1号色 SPMX-20240815306064 \N \N \N 1 \N [{"file_id": "7ab34b13-0214-4e44-a83f-0bdce11b8618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fae821797e545a5b0d4b1764dffbfbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fae821797e545a5b0d4b1764dffbfbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fae821797e545a5b0d4b1764dffbfbb.jpg", "file_size": 15602, "is_delete": false, "file_type": 1, "original_file_name": "LZ1280#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fae821797e545a5b0d4b1764dffbfbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fae821797e545a5b0d4b1764dffbfbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fae821797e545a5b0d4b1764dffbfbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fae821797e545a5b0d4b1764dffbfbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fae821797e545a5b0d4b1764dffbfbb.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHb29Ny72JUELCZm2gM4nTtTm_A=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.983454+00 2025-12-09 10:15:09.983458+00 10878 0003-76FWF#V5曲线 SPMX-20240815306062 \N \N \N 1 \N [{"file_id": "8cd24ac2-2188-4ec5-9293-81d0cc6592d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4955d31d9f7c4986a400c1669e2d0dbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4955d31d9f7c4986a400c1669e2d0dbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4955d31d9f7c4986a400c1669e2d0dbf.jpg", "file_size": 21170, "is_delete": false, "file_type": 1, "original_file_name": "0003-76FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4955d31d9f7c4986a400c1669e2d0dbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4955d31d9f7c4986a400c1669e2d0dbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4955d31d9f7c4986a400c1669e2d0dbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4955d31d9f7c4986a400c1669e2d0dbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4955d31d9f7c4986a400c1669e2d0dbf.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4qzZmXhagH8BTB6jlHPLlReX_s0=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.985443+00 2025-12-09 10:15:09.985448+00 10879 HT061FW#VS-D3粉 SPMX-20240815306060 \N \N \N 1 \N [{"file_id": "71002700-f392-4179-aea7-dd2aaebda0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "412b532368cc4d8d987ca8dfb66827c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "412b532368cc4d8d987ca8dfb66827c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "412b532368cc4d8d987ca8dfb66827c9.jpg", "file_size": 15570, "is_delete": false, "file_type": 1, "original_file_name": "HT061FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412b532368cc4d8d987ca8dfb66827c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412b532368cc4d8d987ca8dfb66827c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412b532368cc4d8d987ca8dfb66827c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/412b532368cc4d8d987ca8dfb66827c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/412b532368cc4d8d987ca8dfb66827c9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kf5vlezo7HZwH6I0afSAz_tD3K8=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.987414+00 2025-12-09 10:15:09.987418+00 10880 LZ127FWF#5号色短袖 SPMX-20240815306056 \N \N \N 1 \N [{"file_id": "eb23aa91-61a8-4965-926d-ddfa01099da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8764994cc3574cbaa09a9f9147e4d1c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8764994cc3574cbaa09a9f9147e4d1c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8764994cc3574cbaa09a9f9147e4d1c3.jpg", "file_size": 19252, "is_delete": false, "file_type": 1, "original_file_name": "LZ127FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764994cc3574cbaa09a9f9147e4d1c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764994cc3574cbaa09a9f9147e4d1c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8764994cc3574cbaa09a9f9147e4d1c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8764994cc3574cbaa09a9f9147e4d1c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8764994cc3574cbaa09a9f9147e4d1c3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukDw1UNACq8rqOgsb2nOyKK2SLI=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.989446+00 2025-12-09 10:15:09.989451+00 10881 JTSS222FW#VS-D3 SPMX-20240815306057 \N \N \N 1 \N [{"file_id": "fed89bab-c7d2-4d29-8caa-b0a7f34aef80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39041ea2c32b421da46919f59ebb0c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39041ea2c32b421da46919f59ebb0c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39041ea2c32b421da46919f59ebb0c72.jpg", "file_size": 22714, "is_delete": false, "file_type": 1, "original_file_name": "JTSS222FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39041ea2c32b421da46919f59ebb0c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39041ea2c32b421da46919f59ebb0c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39041ea2c32b421da46919f59ebb0c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39041ea2c32b421da46919f59ebb0c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39041ea2c32b421da46919f59ebb0c72.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYP74tn5NmJKP1zuBDkIU02t2Lc=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.991409+00 2025-12-09 10:15:09.991414+00 10882 8125#彩兰 SPMX-20240815306061 \N \N \N 1 \N [{"file_id": "cfad9226-f11d-4d7f-905f-c96f890c85fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e644feb5e4b74d85904f158141807395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e644feb5e4b74d85904f158141807395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e644feb5e4b74d85904f158141807395.jpg", "file_size": 25752, "is_delete": false, "file_type": 1, "original_file_name": "8125#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e644feb5e4b74d85904f158141807395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e644feb5e4b74d85904f158141807395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e644feb5e4b74d85904f158141807395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e644feb5e4b74d85904f158141807395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e644feb5e4b74d85904f158141807395.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Yt5ukInGmG2g6k3BLKgCCiJGkM=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.993437+00 2025-12-09 10:15:09.993441+00 10883 DL30763#果绿 SPMX-20240815306063 \N \N \N 1 \N [{"file_id": "33927f5d-137a-41f3-8045-829320cca1f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5e331f3fffa4910a6ef9179041e66a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5e331f3fffa4910a6ef9179041e66a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5e331f3fffa4910a6ef9179041e66a8.jpg", "file_size": 20748, "is_delete": false, "file_type": 1, "original_file_name": "DL30763#果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e331f3fffa4910a6ef9179041e66a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e331f3fffa4910a6ef9179041e66a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e331f3fffa4910a6ef9179041e66a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5e331f3fffa4910a6ef9179041e66a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5e331f3fffa4910a6ef9179041e66a8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bTbfGG7DorI4O1EXR0aAnP_VrY=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.995404+00 2025-12-09 10:15:09.995408+00 10884 JTSS223FW#VS-D3 SPMX-20240815306066 \N \N \N 1 \N [{"file_id": "f2a7f2af-a3e9-4e66-81e1-9cbf089e344a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6731f7c62ffa4407b345775cde344a3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6731f7c62ffa4407b345775cde344a3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6731f7c62ffa4407b345775cde344a3a.jpg", "file_size": 21393, "is_delete": false, "file_type": 1, "original_file_name": "JTSS223FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6731f7c62ffa4407b345775cde344a3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6731f7c62ffa4407b345775cde344a3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6731f7c62ffa4407b345775cde344a3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6731f7c62ffa4407b345775cde344a3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6731f7c62ffa4407b345775cde344a3a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14pQpoG36xbxMsfkczmPk0Fs73o=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.997171+00 2025-12-09 10:15:09.997175+00 10885 11-6G26#粉色M SPMX-20240815306065 \N \N \N 1 \N [{"file_id": "8fc03524-80b2-4ced-a2a9-8b89c13995ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1809b832f316484eb587face8edc711d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1809b832f316484eb587face8edc711d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1809b832f316484eb587face8edc711d.jpg", "file_size": 14055, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1809b832f316484eb587face8edc711d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1809b832f316484eb587face8edc711d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1809b832f316484eb587face8edc711d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1809b832f316484eb587face8edc711d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1809b832f316484eb587face8edc711d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxkQpXIyshfq_TA-2qV0_znZ5Q8=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:09.998934+00 2025-12-09 10:15:09.998938+00 10886 C410#白底橙花 SPMX-20240815306059 \N \N \N 1 \N [{"file_id": "1babf7cc-341d-4fbc-8f39-52a747ac1f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33e7933845b94461a313530e5a7fcd9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33e7933845b94461a313530e5a7fcd9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33e7933845b94461a313530e5a7fcd9e.jpg", "file_size": 71959, "is_delete": false, "file_type": 1, "original_file_name": "C410#白底橙花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7933845b94461a313530e5a7fcd9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7933845b94461a313530e5a7fcd9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7933845b94461a313530e5a7fcd9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33e7933845b94461a313530e5a7fcd9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33e7933845b94461a313530e5a7fcd9e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yaRDEcJXIWHwxRVXd9bTjWCznbs=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.000773+00 2025-12-09 10:15:10.000778+00 10887 FHXGPK-批布046-3 SPMX-20240815306055 \N \N \N 1 \N [{"file_id": "1f5031fe-7806-4c87-9701-c166999bc9b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b90c4b188a67410f8c37ec1e467928a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b90c4b188a67410f8c37ec1e467928a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b90c4b188a67410f8c37ec1e467928a7.jpg", "file_size": 61331, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布046-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90c4b188a67410f8c37ec1e467928a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90c4b188a67410f8c37ec1e467928a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90c4b188a67410f8c37ec1e467928a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b90c4b188a67410f8c37ec1e467928a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b90c4b188a67410f8c37ec1e467928a7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3ejoAHn94Z1KXL27y5wKJmTOpM=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.002761+00 2025-12-09 10:15:10.002765+00 10888 23-2117#A13-4XL SPMX-20240815306067 \N \N \N 1 \N [{"file_id": "8436a5dd-5032-4260-b4e8-817c42f6a6be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17b0ac0b398048fea7fadbf8ae1b91bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17b0ac0b398048fea7fadbf8ae1b91bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17b0ac0b398048fea7fadbf8ae1b91bd.jpg", "file_size": 20060, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b0ac0b398048fea7fadbf8ae1b91bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b0ac0b398048fea7fadbf8ae1b91bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b0ac0b398048fea7fadbf8ae1b91bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17b0ac0b398048fea7fadbf8ae1b91bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17b0ac0b398048fea7fadbf8ae1b91bd.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6EFAN_sIUXEAcg6t--kc6HW1Jw=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.004742+00 2025-12-09 10:15:10.004748+00 10889 FHXGPK-批布047-1 SPMX-20240815306068 \N \N \N 1 \N [{"file_id": "9d1b9045-519e-48d3-bbe4-ec39ec94a6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f20c9d2d8eaf4e119b83e8553fdcb48e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f20c9d2d8eaf4e119b83e8553fdcb48e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f20c9d2d8eaf4e119b83e8553fdcb48e.jpg", "file_size": 41391, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布047-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20c9d2d8eaf4e119b83e8553fdcb48e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20c9d2d8eaf4e119b83e8553fdcb48e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20c9d2d8eaf4e119b83e8553fdcb48e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f20c9d2d8eaf4e119b83e8553fdcb48e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f20c9d2d8eaf4e119b83e8553fdcb48e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DMfNr1ZW-8WrC0q6FvEUQ5Zf0Rg=", "createTime": "2024-08-15 14:51:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.006759+00 2025-12-09 10:15:10.006764+00 10890 LJ9931#XL酒红 SPMX-20240815306069 \N \N \N 1 \N [{"file_id": "d6461c96-5bd5-46e2-b53f-b32e150747e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cda3f3d9080c4daebda43829d3095472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cda3f3d9080c4daebda43829d3095472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cda3f3d9080c4daebda43829d3095472.jpg", "file_size": 14297, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda3f3d9080c4daebda43829d3095472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda3f3d9080c4daebda43829d3095472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda3f3d9080c4daebda43829d3095472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cda3f3d9080c4daebda43829d3095472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cda3f3d9080c4daebda43829d3095472.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OtfkZNGbRzcH-J5ImJcFFVYflEA=", "createTime": "2024-08-15 14:51:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.008717+00 2025-12-09 10:15:10.008722+00 10891 HT061FWE#绿VS-D3 SPMX-20240815306070 \N \N \N 1 \N [{"file_id": "7b2876c3-85b5-42e3-af91-f9d59c80fc4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "473ea256acf949b4948e77babbc23988.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "473ea256acf949b4948e77babbc23988.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "473ea256acf949b4948e77babbc23988.jpg", "file_size": 11538, "is_delete": false, "file_type": 1, "original_file_name": "HT061FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473ea256acf949b4948e77babbc23988.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473ea256acf949b4948e77babbc23988.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473ea256acf949b4948e77babbc23988.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/473ea256acf949b4948e77babbc23988.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/473ea256acf949b4948e77babbc23988.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h0OnoKp3k-mXb8QOxmH9RbFm9-I=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.010667+00 2025-12-09 10:15:10.010672+00 10892 LJ9931#XL黑 SPMX-20240815306071 \N \N \N 1 \N [{"file_id": "1acd9b0c-d269-464f-9157-679ae8d3dc19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daff1d23bf314e2ab314ec96a1e21295.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daff1d23bf314e2ab314ec96a1e21295.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daff1d23bf314e2ab314ec96a1e21295.jpg", "file_size": 16582, "is_delete": false, "file_type": 1, "original_file_name": "LJ9931#XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daff1d23bf314e2ab314ec96a1e21295.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daff1d23bf314e2ab314ec96a1e21295.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daff1d23bf314e2ab314ec96a1e21295.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daff1d23bf314e2ab314ec96a1e21295.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daff1d23bf314e2ab314ec96a1e21295.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHZppw-kdRb8PqPmJp6kgI9FjEY=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.012622+00 2025-12-09 10:15:10.012627+00 10893 JTSS224FW#VS-D3 SPMX-20240815306075 \N \N \N 1 \N [{"file_id": "bd52fb90-abf2-4421-b610-f58d8ea89bd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b818607ab947f895f856ee300c351e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b818607ab947f895f856ee300c351e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b818607ab947f895f856ee300c351e.jpg", "file_size": 10053, "is_delete": false, "file_type": 1, "original_file_name": "JTSS224FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b818607ab947f895f856ee300c351e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b818607ab947f895f856ee300c351e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b818607ab947f895f856ee300c351e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b818607ab947f895f856ee300c351e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b818607ab947f895f856ee300c351e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pocEdTNPLPpqNEhSadUdZcjpEUE=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.014554+00 2025-12-09 10:15:10.014558+00 10894 C410#白底红花 SPMX-20240815306073 \N \N \N 1 \N [{"file_id": "1c0cae61-dfce-434b-aaa7-8477720f6f7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81679d8b862b4148b99357101f0fd053.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81679d8b862b4148b99357101f0fd053.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81679d8b862b4148b99357101f0fd053.jpg", "file_size": 72342, "is_delete": false, "file_type": 1, "original_file_name": "C410#白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81679d8b862b4148b99357101f0fd053.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81679d8b862b4148b99357101f0fd053.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81679d8b862b4148b99357101f0fd053.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81679d8b862b4148b99357101f0fd053.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81679d8b862b4148b99357101f0fd053.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4syynY-swp9RKiCk_I9MUHZPk28=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.016296+00 2025-12-09 10:15:10.016301+00 10895 0003-77FWF#格子 SPMX-20240815306074 \N \N \N 1 \N [{"file_id": "04e1a94d-0a38-46e9-a9bf-9045b9c932b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c89f0ce0521418d96a8d5cb842b8f4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c89f0ce0521418d96a8d5cb842b8f4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c89f0ce0521418d96a8d5cb842b8f4e.jpg", "file_size": 7776, "is_delete": false, "file_type": 1, "original_file_name": "0003-77FWF#格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c89f0ce0521418d96a8d5cb842b8f4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c89f0ce0521418d96a8d5cb842b8f4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c89f0ce0521418d96a8d5cb842b8f4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c89f0ce0521418d96a8d5cb842b8f4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c89f0ce0521418d96a8d5cb842b8f4e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv1HiDZkSrO7d8YdztHib9vAuvA=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.018028+00 2025-12-09 10:15:10.018032+00 10896 DL30763#浅粉 SPMX-20240815306072 \N \N \N 1 \N [{"file_id": "3c1ba430-d421-489d-96e8-00fe48ed3ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg", "file_size": 19964, "is_delete": false, "file_type": 1, "original_file_name": "DL30763#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe6aa5142b9a48c7b6c8c90e7fafd3e2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwHX1D8wAzRsMgQYrEVkrypPCag=", "createTime": "2024-08-15 14:51:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.019751+00 2025-12-09 10:15:10.019755+00 10897 0003-77FWF#花 SPMX-20240815306080 \N \N \N 1 \N [{"file_id": "1b62946e-e13c-4c7d-94aa-c8e9551b3402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efb422a4bf904fe386ef7302203d9480.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efb422a4bf904fe386ef7302203d9480.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efb422a4bf904fe386ef7302203d9480.jpg", "file_size": 12575, "is_delete": false, "file_type": 1, "original_file_name": "0003-77FWF#花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb422a4bf904fe386ef7302203d9480.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb422a4bf904fe386ef7302203d9480.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb422a4bf904fe386ef7302203d9480.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efb422a4bf904fe386ef7302203d9480.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efb422a4bf904fe386ef7302203d9480.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1NlYz1aXSXLcDqWb5ZNReOuxR8=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.021735+00 2025-12-09 10:15:10.02174+00 10898 HT061FWE#蓝VS-D3 SPMX-20240815306083 \N \N \N 1 \N [{"file_id": "fac49e84-5eba-4301-8b8b-9f12ddeefe4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82364bc6104e4e2086432d2fcc20aef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82364bc6104e4e2086432d2fcc20aef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82364bc6104e4e2086432d2fcc20aef0.jpg", "file_size": 14073, "is_delete": false, "file_type": 1, "original_file_name": "HT061FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82364bc6104e4e2086432d2fcc20aef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82364bc6104e4e2086432d2fcc20aef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82364bc6104e4e2086432d2fcc20aef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82364bc6104e4e2086432d2fcc20aef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82364bc6104e4e2086432d2fcc20aef0.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eLIdrt47syzetRTLJqvgRImyMM=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.023688+00 2025-12-09 10:15:10.023693+00 10899 LJ9936#2XL浅灰 SPMX-20240815306081 \N \N \N 1 \N [{"file_id": "ca561229-3fa5-4fa3-a81f-c3442a4eb8a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72dc8e5b6b6a4021b1a02a31bd147c9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72dc8e5b6b6a4021b1a02a31bd147c9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72dc8e5b6b6a4021b1a02a31bd147c9f.jpg", "file_size": 15539, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#2XL浅灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc8e5b6b6a4021b1a02a31bd147c9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc8e5b6b6a4021b1a02a31bd147c9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc8e5b6b6a4021b1a02a31bd147c9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72dc8e5b6b6a4021b1a02a31bd147c9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72dc8e5b6b6a4021b1a02a31bd147c9f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHBbT_UuY6J5lyqT9-aoIgpyCz0=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.025675+00 2025-12-09 10:15:10.025679+00 10900 JTSS225FW#VS-D3 SPMX-20240815306084 \N \N \N 1 \N [{"file_id": "03db3b8f-fedd-4c7d-89c0-d7dac827642f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f8bafddf76643b49d2c900efa2bef4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f8bafddf76643b49d2c900efa2bef4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f8bafddf76643b49d2c900efa2bef4d.jpg", "file_size": 13285, "is_delete": false, "file_type": 1, "original_file_name": "JTSS225FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8bafddf76643b49d2c900efa2bef4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8bafddf76643b49d2c900efa2bef4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8bafddf76643b49d2c900efa2bef4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f8bafddf76643b49d2c900efa2bef4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f8bafddf76643b49d2c900efa2bef4d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kc_zB9xnRxu97CPATYQAmxXGPNo=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.027681+00 2025-12-09 10:15:10.027686+00 10901 8125#橘红 SPMX-20240815306077 \N \N \N 1 \N [{"file_id": "b7fdacc1-8acc-4cfa-96a8-64f333a79838", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4eb7ec83a414022b52c6876bf2495b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4eb7ec83a414022b52c6876bf2495b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4eb7ec83a414022b52c6876bf2495b9.jpg", "file_size": 23908, "is_delete": false, "file_type": 1, "original_file_name": "8125#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb7ec83a414022b52c6876bf2495b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb7ec83a414022b52c6876bf2495b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4eb7ec83a414022b52c6876bf2495b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4eb7ec83a414022b52c6876bf2495b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4eb7ec83a414022b52c6876bf2495b9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_EZ6y8u549CYdO4xRMfc0ynuWw=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.029692+00 2025-12-09 10:15:10.029696+00 10902 23-2117#A13-领子3XL SPMX-20240815306079 \N \N \N 1 \N [{"file_id": "1d47257f-c484-418a-aa6f-1461c9a0f130", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d10c64df602f46f4a0bb1683f77a6086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d10c64df602f46f4a0bb1683f77a6086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d10c64df602f46f4a0bb1683f77a6086.jpg", "file_size": 14668, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10c64df602f46f4a0bb1683f77a6086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10c64df602f46f4a0bb1683f77a6086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10c64df602f46f4a0bb1683f77a6086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d10c64df602f46f4a0bb1683f77a6086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d10c64df602f46f4a0bb1683f77a6086.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQNdHGvFnyzJhtPzwPvu9vnpGRE=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.031663+00 2025-12-09 10:15:10.031667+00 10903 11-6G26#粉色S SPMX-20240815306078 \N \N \N 1 \N [{"file_id": "8613789e-e3c0-4d91-9ef0-1d620c505205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74420448bb80405b839158d9924bb3b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74420448bb80405b839158d9924bb3b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74420448bb80405b839158d9924bb3b8.jpg", "file_size": 13931, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74420448bb80405b839158d9924bb3b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74420448bb80405b839158d9924bb3b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74420448bb80405b839158d9924bb3b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74420448bb80405b839158d9924bb3b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74420448bb80405b839158d9924bb3b8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvN6KJDpY9Ghej5FOz5Om7WgmTg=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.03342+00 2025-12-09 10:15:10.033424+00 10904 FHXGPK-批布047-2 SPMX-20240815306082 \N \N \N 1 \N [{"file_id": "ab16f8e4-f64a-4c7d-b479-8e52ca9c93b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f0c41cd92046409e44fc3ea983b68e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f0c41cd92046409e44fc3ea983b68e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f0c41cd92046409e44fc3ea983b68e.jpg", "file_size": 42030, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布047-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f0c41cd92046409e44fc3ea983b68e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f0c41cd92046409e44fc3ea983b68e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f0c41cd92046409e44fc3ea983b68e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f0c41cd92046409e44fc3ea983b68e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f0c41cd92046409e44fc3ea983b68e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wdFsuir0mFW9ZSVTJoO20FVe9cg=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.035151+00 2025-12-09 10:15:10.035156+00 10905 LZ1280#背心款2号色 SPMX-20240815306076 \N \N \N 1 \N [{"file_id": "9ea65001-146d-404e-87c0-43899f6eff4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f8c8f47301c42d99bfa95c977d51e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f8c8f47301c42d99bfa95c977d51e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f8c8f47301c42d99bfa95c977d51e8e.jpg", "file_size": 16708, "is_delete": false, "file_type": 1, "original_file_name": "LZ1280#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c8f47301c42d99bfa95c977d51e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c8f47301c42d99bfa95c977d51e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8c8f47301c42d99bfa95c977d51e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f8c8f47301c42d99bfa95c977d51e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f8c8f47301c42d99bfa95c977d51e8e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfM21-PKgphNEol8zgNi72J4X50=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.03687+00 2025-12-09 10:15:10.036874+00 10906 LJ9936#2XL深灰 SPMX-20240815306091 \N \N \N 1 \N [{"file_id": "36cda761-1747-4ad4-95c8-08bafc62a46d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d404aa8e598f4014aebbf9a4f711fb5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d404aa8e598f4014aebbf9a4f711fb5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d404aa8e598f4014aebbf9a4f711fb5b.jpg", "file_size": 17079, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#2XL深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d404aa8e598f4014aebbf9a4f711fb5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d404aa8e598f4014aebbf9a4f711fb5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d404aa8e598f4014aebbf9a4f711fb5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d404aa8e598f4014aebbf9a4f711fb5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d404aa8e598f4014aebbf9a4f711fb5b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyBMaOT1JPdXe95jP7ohhJtHbtg=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.038837+00 2025-12-09 10:15:10.038842+00 10907 0003-78FWF#V5曲线 SPMX-20240815306089 \N \N \N 1 \N [{"file_id": "0467c598-5d64-4656-8b97-ae70db734964", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d93b49ddd814441a85653eb3ef537c62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d93b49ddd814441a85653eb3ef537c62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d93b49ddd814441a85653eb3ef537c62.jpg", "file_size": 14676, "is_delete": false, "file_type": 1, "original_file_name": "0003-78FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d93b49ddd814441a85653eb3ef537c62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d93b49ddd814441a85653eb3ef537c62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d93b49ddd814441a85653eb3ef537c62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d93b49ddd814441a85653eb3ef537c62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d93b49ddd814441a85653eb3ef537c62.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDNlrRq0WtaHwOrcX-SsB3uug3s=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.04079+00 2025-12-09 10:15:10.040795+00 10908 LZ1280#背心款3号色 SPMX-20240815306085 \N \N \N 1 \N [{"file_id": "9e921e8d-b60b-4f0e-a30f-74fff9b6e687", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "608bb16d2c354697a9ae0eb7e187709a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "608bb16d2c354697a9ae0eb7e187709a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "608bb16d2c354697a9ae0eb7e187709a.jpg", "file_size": 16786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1280#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608bb16d2c354697a9ae0eb7e187709a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608bb16d2c354697a9ae0eb7e187709a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608bb16d2c354697a9ae0eb7e187709a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/608bb16d2c354697a9ae0eb7e187709a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/608bb16d2c354697a9ae0eb7e187709a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJeZ6T-Z6XSovyBEc2iciiYLqv4=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.0428+00 2025-12-09 10:15:10.042805+00 10909 23-2117#A13-领子4XL SPMX-20240815306090 \N \N \N 1 \N [{"file_id": "4e5a4b37-0770-42c3-9622-c7d171fc60a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ceb0a323a8945e48a274155094828f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ceb0a323a8945e48a274155094828f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ceb0a323a8945e48a274155094828f8.jpg", "file_size": 14296, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceb0a323a8945e48a274155094828f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceb0a323a8945e48a274155094828f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ceb0a323a8945e48a274155094828f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ceb0a323a8945e48a274155094828f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ceb0a323a8945e48a274155094828f8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khEwhAxBPcAx0jDOrjTqcTTUq2k=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.044818+00 2025-12-09 10:15:10.044822+00 10910 JTSS226FW#VS-D3 SPMX-20240815306092 \N \N \N 1 \N [{"file_id": "82f38c72-f561-47ef-ab68-d20ae97fd382", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db072a36ac5d4e2e82e8b79f51298e19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db072a36ac5d4e2e82e8b79f51298e19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db072a36ac5d4e2e82e8b79f51298e19.jpg", "file_size": 14861, "is_delete": false, "file_type": 1, "original_file_name": "JTSS226FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db072a36ac5d4e2e82e8b79f51298e19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db072a36ac5d4e2e82e8b79f51298e19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db072a36ac5d4e2e82e8b79f51298e19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db072a36ac5d4e2e82e8b79f51298e19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db072a36ac5d4e2e82e8b79f51298e19.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:onzKH1xpVJ8FF1euhoYeeXmtKTg=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.046846+00 2025-12-09 10:15:10.046851+00 10911 LZ1280#背心款4号色 SPMX-20240815306095 \N \N \N 1 \N [{"file_id": "a70cb02e-dba1-4063-a0ef-363f5fbe23ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646cec078f5f4bd08581f48bc7898a9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646cec078f5f4bd08581f48bc7898a9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646cec078f5f4bd08581f48bc7898a9c.jpg", "file_size": 16804, "is_delete": false, "file_type": 1, "original_file_name": "LZ1280#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646cec078f5f4bd08581f48bc7898a9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646cec078f5f4bd08581f48bc7898a9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646cec078f5f4bd08581f48bc7898a9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646cec078f5f4bd08581f48bc7898a9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646cec078f5f4bd08581f48bc7898a9c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhPyAon9K3qRe65AmTQ4gLLiiSc=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.048839+00 2025-12-09 10:15:10.048844+00 10912 11-6G26#粉色XL SPMX-20240815306088 \N \N \N 1 \N [{"file_id": "830f7c08-5a7d-43e7-add2-ac3d94a80fc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa2bee40ef744440bcb2f1145f54fece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa2bee40ef744440bcb2f1145f54fece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa2bee40ef744440bcb2f1145f54fece.jpg", "file_size": 13983, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2bee40ef744440bcb2f1145f54fece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2bee40ef744440bcb2f1145f54fece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2bee40ef744440bcb2f1145f54fece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa2bee40ef744440bcb2f1145f54fece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa2bee40ef744440bcb2f1145f54fece.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Kl9Q_ya1n2G35UnNlfCEWv4v1w=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.050882+00 2025-12-09 10:15:10.050886+00 10913 FHXGPK-批布048-1 SPMX-20240815306093 \N \N \N 1 \N [{"file_id": "0fbbd8de-b1a4-4077-882d-e9337c7537d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd9b6176ec1c40798fe72e64a89449e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd9b6176ec1c40798fe72e64a89449e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd9b6176ec1c40798fe72e64a89449e7.jpg", "file_size": 39802, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布048-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9b6176ec1c40798fe72e64a89449e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9b6176ec1c40798fe72e64a89449e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9b6176ec1c40798fe72e64a89449e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd9b6176ec1c40798fe72e64a89449e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd9b6176ec1c40798fe72e64a89449e7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:15PCJM1WGOqByEuv0b-OsqY8iV4=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.05287+00 2025-12-09 10:15:10.052875+00 10914 8125#玫红 SPMX-20240815306087 \N \N \N 1 \N [{"file_id": "b1dd8496-eb2c-482e-975c-df4990b678a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5030928e0494b348d0f0350840f509b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5030928e0494b348d0f0350840f509b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5030928e0494b348d0f0350840f509b.jpg", "file_size": 23369, "is_delete": false, "file_type": 1, "original_file_name": "8125#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5030928e0494b348d0f0350840f509b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5030928e0494b348d0f0350840f509b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5030928e0494b348d0f0350840f509b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5030928e0494b348d0f0350840f509b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5030928e0494b348d0f0350840f509b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8VowWhuyVD-PPv8UHiXp3N1bDc=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.054914+00 2025-12-09 10:15:10.054918+00 10915 C410#白底绿花 SPMX-20240815306086 \N \N \N 1 \N [{"file_id": "5b794c6b-ff60-44fe-87bb-bd2f7d094a96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "042797e95ad04b2d8dee7316568399ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "042797e95ad04b2d8dee7316568399ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "042797e95ad04b2d8dee7316568399ac.jpg", "file_size": 72746, "is_delete": false, "file_type": 1, "original_file_name": "C410#白底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042797e95ad04b2d8dee7316568399ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042797e95ad04b2d8dee7316568399ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042797e95ad04b2d8dee7316568399ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/042797e95ad04b2d8dee7316568399ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/042797e95ad04b2d8dee7316568399ac.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBr-K4LWeBmLG_CSRd7QG9W09Ss=", "createTime": "2024-08-15 14:51:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.056896+00 2025-12-09 10:15:10.0569+00 10916 HT062FW#VS-D3黄 SPMX-20240815306094 \N \N \N 1 \N [{"file_id": "e6f3c77a-e753-43c4-a24a-e0e80fcfac9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74e3870360444b7f85952cea2d5c4aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74e3870360444b7f85952cea2d5c4aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74e3870360444b7f85952cea2d5c4aa4.jpg", "file_size": 15862, "is_delete": false, "file_type": 1, "original_file_name": "HT062FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e3870360444b7f85952cea2d5c4aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e3870360444b7f85952cea2d5c4aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e3870360444b7f85952cea2d5c4aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74e3870360444b7f85952cea2d5c4aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74e3870360444b7f85952cea2d5c4aa4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXoJgZDOBqhoW8FAJyjXMD-zr8k=", "createTime": "2024-08-15 14:51:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.058631+00 2025-12-09 10:15:10.058635+00 10917 HT062FWE#VS-D3 SPMX-20240815306101 \N \N \N 1 \N [{"file_id": "eefb7d69-61bc-4884-a627-5b973d167c2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e5ed8b65a7649ae91c51bb49d8f0e90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e5ed8b65a7649ae91c51bb49d8f0e90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e5ed8b65a7649ae91c51bb49d8f0e90.jpg", "file_size": 19138, "is_delete": false, "file_type": 1, "original_file_name": "HT062FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5ed8b65a7649ae91c51bb49d8f0e90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5ed8b65a7649ae91c51bb49d8f0e90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5ed8b65a7649ae91c51bb49d8f0e90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e5ed8b65a7649ae91c51bb49d8f0e90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e5ed8b65a7649ae91c51bb49d8f0e90.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhWeZ24SdPwhBaTD0H-H4iHlUz0=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.060365+00 2025-12-09 10:15:10.06037+00 10918 LJ9936#2XL白 SPMX-20240815306100 \N \N \N 1 \N [{"file_id": "40ab9a2b-7f7c-4edd-bef0-830010db6e5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b5494a88bf34345b41d75542d93c054.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b5494a88bf34345b41d75542d93c054.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b5494a88bf34345b41d75542d93c054.jpg", "file_size": 18751, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#2XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5494a88bf34345b41d75542d93c054.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5494a88bf34345b41d75542d93c054.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5494a88bf34345b41d75542d93c054.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b5494a88bf34345b41d75542d93c054.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b5494a88bf34345b41d75542d93c054.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqwNeEs4F94zPl61iXrkr0UoP8Y=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.062109+00 2025-12-09 10:15:10.062113+00 10919 0003-79FWF#V5曲线 SPMX-20240815306106 \N \N \N 1 \N [{"file_id": "b833b163-e08d-41cc-9de4-86a54d01782b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57b5eb4553984d1ea84a5174463026b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57b5eb4553984d1ea84a5174463026b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57b5eb4553984d1ea84a5174463026b2.jpg", "file_size": 8492, "is_delete": false, "file_type": 1, "original_file_name": "0003-79FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57b5eb4553984d1ea84a5174463026b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57b5eb4553984d1ea84a5174463026b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57b5eb4553984d1ea84a5174463026b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57b5eb4553984d1ea84a5174463026b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57b5eb4553984d1ea84a5174463026b2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8ElRznV1yUbWEGyD8PVOwdlnlQ=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.064091+00 2025-12-09 10:15:10.064096+00 10920 11-6G26#蓝色L SPMX-20240815306096 \N \N \N 1 \N [{"file_id": "4701bd27-ef62-4d3c-900e-701db2779f23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b36266dfbe4d1fbf60a4df382a82d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b36266dfbe4d1fbf60a4df382a82d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b36266dfbe4d1fbf60a4df382a82d7.jpg", "file_size": 14068, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b36266dfbe4d1fbf60a4df382a82d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b36266dfbe4d1fbf60a4df382a82d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b36266dfbe4d1fbf60a4df382a82d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b36266dfbe4d1fbf60a4df382a82d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b36266dfbe4d1fbf60a4df382a82d7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNwKehPsBi1GRRW8qVEgrEznk2U=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.066042+00 2025-12-09 10:15:10.066047+00 10921 LZ1280#背心款5号色 SPMX-20240815306104 \N \N \N 1 \N [{"file_id": "9346c7a1-1891-4fb9-b416-7e49f9c2ee3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c42aa611c8b4672b70475e08c99d90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c42aa611c8b4672b70475e08c99d90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c42aa611c8b4672b70475e08c99d90e.jpg", "file_size": 16114, "is_delete": false, "file_type": 1, "original_file_name": "LZ1280#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c42aa611c8b4672b70475e08c99d90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c42aa611c8b4672b70475e08c99d90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c42aa611c8b4672b70475e08c99d90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c42aa611c8b4672b70475e08c99d90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c42aa611c8b4672b70475e08c99d90e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FMBqkZF0TMFwz0n5OE2yb4M-FY=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.068021+00 2025-12-09 10:15:10.068026+00 10922 8125#白色 SPMX-20240815306103 \N \N \N 1 \N [{"file_id": "9d6b4082-ae4f-4dad-a036-1cd645faf201", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fabee5c3c00b4faf99677fe97420a110.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fabee5c3c00b4faf99677fe97420a110.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fabee5c3c00b4faf99677fe97420a110.jpg", "file_size": 27166, "is_delete": false, "file_type": 1, "original_file_name": "8125#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fabee5c3c00b4faf99677fe97420a110.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fabee5c3c00b4faf99677fe97420a110.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fabee5c3c00b4faf99677fe97420a110.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fabee5c3c00b4faf99677fe97420a110.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fabee5c3c00b4faf99677fe97420a110.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1XNJ2NxcFMbU4S_wqehRTo3Mo5U=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.06999+00 2025-12-09 10:15:10.069995+00 10923 0003-78FWF#V5曲线番禺调色 SPMX-20240815306098 \N \N \N 1 \N [{"file_id": "28fcdbc2-e683-4ccc-b46c-fb266f0b25ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fafe566ff9b341a3b5aad06267bf1bd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fafe566ff9b341a3b5aad06267bf1bd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fafe566ff9b341a3b5aad06267bf1bd9.jpg", "file_size": 15007, "is_delete": false, "file_type": 1, "original_file_name": "0003-78FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fafe566ff9b341a3b5aad06267bf1bd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fafe566ff9b341a3b5aad06267bf1bd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fafe566ff9b341a3b5aad06267bf1bd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fafe566ff9b341a3b5aad06267bf1bd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fafe566ff9b341a3b5aad06267bf1bd9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIk7r53LQyBinASRuA5ArndcAMM=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.071748+00 2025-12-09 10:15:10.071752+00 10924 FHXGPK-批布048-2 SPMX-20240815306105 \N \N \N 1 \N [{"file_id": "d8b7af05-1b19-4fd1-a75a-1a8135255f4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0afcdae0a1e4e43ac8373469e54e798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0afcdae0a1e4e43ac8373469e54e798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0afcdae0a1e4e43ac8373469e54e798.jpg", "file_size": 41427, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布048-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0afcdae0a1e4e43ac8373469e54e798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0afcdae0a1e4e43ac8373469e54e798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0afcdae0a1e4e43ac8373469e54e798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0afcdae0a1e4e43ac8373469e54e798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0afcdae0a1e4e43ac8373469e54e798.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xewwZTu3QcIb0i7WowHiYw9QgXQ=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.073468+00 2025-12-09 10:15:10.073473+00 10925 C410#绿底 SPMX-20240815306099 \N \N \N 1 \N [{"file_id": "d80ddf49-4863-49c8-ba06-b91de7c02e8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e5b65ecd5644078f5592cc5ab720fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e5b65ecd5644078f5592cc5ab720fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e5b65ecd5644078f5592cc5ab720fe.jpg", "file_size": 75276, "is_delete": false, "file_type": 1, "original_file_name": "C410#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e5b65ecd5644078f5592cc5ab720fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e5b65ecd5644078f5592cc5ab720fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e5b65ecd5644078f5592cc5ab720fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e5b65ecd5644078f5592cc5ab720fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e5b65ecd5644078f5592cc5ab720fe.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SHWZoyUJqHR7x1xFgPRShIg6RY0=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.075253+00 2025-12-09 10:15:10.075259+00 10926 23-2117#A13大领子4XL SPMX-20240815306097 \N \N \N 1 \N [{"file_id": "3df533bb-4d6b-48a8-be3b-0c6004787347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39bc00a9c2a9458fa5b778081762788a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39bc00a9c2a9458fa5b778081762788a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39bc00a9c2a9458fa5b778081762788a.jpg", "file_size": 8341, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13大领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bc00a9c2a9458fa5b778081762788a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bc00a9c2a9458fa5b778081762788a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bc00a9c2a9458fa5b778081762788a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39bc00a9c2a9458fa5b778081762788a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39bc00a9c2a9458fa5b778081762788a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kgN1QXm0z3E5Rh0PmC658axWqA=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.077228+00 2025-12-09 10:15:10.077233+00 10927 JTSS227FW#VS-3 SPMX-20240815306102 \N \N \N 1 \N [{"file_id": "a9873063-6e67-4608-b901-11c2b8489b1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f09c242d97bd446aa29d15aebe4264f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f09c242d97bd446aa29d15aebe4264f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f09c242d97bd446aa29d15aebe4264f4.jpg", "file_size": 10317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS227FW#VS-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09c242d97bd446aa29d15aebe4264f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09c242d97bd446aa29d15aebe4264f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f09c242d97bd446aa29d15aebe4264f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f09c242d97bd446aa29d15aebe4264f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f09c242d97bd446aa29d15aebe4264f4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BleSBMNIgCi-YAHKO_7G0uHov_g=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.079215+00 2025-12-09 10:15:10.079219+00 10928 JTSS227FW#VS-D3 SPMX-20240815306109 \N \N \N 1 \N [{"file_id": "7339822f-5e32-4856-8561-af011451f9d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee58014a6a514213ac83b498e45e1527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee58014a6a514213ac83b498e45e1527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee58014a6a514213ac83b498e45e1527.jpg", "file_size": 10317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS227FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee58014a6a514213ac83b498e45e1527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee58014a6a514213ac83b498e45e1527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee58014a6a514213ac83b498e45e1527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee58014a6a514213ac83b498e45e1527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee58014a6a514213ac83b498e45e1527.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLoNkKm7AktTwWjq8jz5hRmwnDU=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.081176+00 2025-12-09 10:15:10.081181+00 10929 LJ9936#2XL蓝 SPMX-20240815306110 \N \N \N 1 \N [{"file_id": "a3e00d22-96f1-4751-b22f-24ebac00f285", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32cf9bc169894bb28ae7fc4b009547f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32cf9bc169894bb28ae7fc4b009547f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32cf9bc169894bb28ae7fc4b009547f4.jpg", "file_size": 18301, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#2XL蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cf9bc169894bb28ae7fc4b009547f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cf9bc169894bb28ae7fc4b009547f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cf9bc169894bb28ae7fc4b009547f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32cf9bc169894bb28ae7fc4b009547f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32cf9bc169894bb28ae7fc4b009547f4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LWoDWU1uPW6bqv-eIZu6lqv_VQ=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.083078+00 2025-12-09 10:15:10.083083+00 10930 HT063FW#VS-D3绿 SPMX-20240815306108 \N \N \N 1 \N [{"file_id": "04d47961-42d6-4111-8f50-53c740511137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c101cb2e0826449d836c8fec1ffe1ce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c101cb2e0826449d836c8fec1ffe1ce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c101cb2e0826449d836c8fec1ffe1ce8.jpg", "file_size": 7661, "is_delete": false, "file_type": 1, "original_file_name": "HT063FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c101cb2e0826449d836c8fec1ffe1ce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c101cb2e0826449d836c8fec1ffe1ce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c101cb2e0826449d836c8fec1ffe1ce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c101cb2e0826449d836c8fec1ffe1ce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c101cb2e0826449d836c8fec1ffe1ce8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egeeOkbPUVLhf8iH2xXFoLP1bRE=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.084829+00 2025-12-09 10:15:10.084833+00 10931 11-6G26#蓝色M SPMX-20240815306111 \N \N \N 1 \N [{"file_id": "13c63dd5-ea1b-4bba-aad3-7b502465883c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7954a25568ed4a1e9191706542cacf2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7954a25568ed4a1e9191706542cacf2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7954a25568ed4a1e9191706542cacf2a.jpg", "file_size": 13767, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7954a25568ed4a1e9191706542cacf2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7954a25568ed4a1e9191706542cacf2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7954a25568ed4a1e9191706542cacf2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7954a25568ed4a1e9191706542cacf2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7954a25568ed4a1e9191706542cacf2a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrRLh09Rkh8tNSzIveq5eVa47d0=", "createTime": "2024-08-15 14:51:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.086582+00 2025-12-09 10:15:10.086587+00 10932 23-2117#A13小领子4XL SPMX-20240815306107 \N \N \N 1 \N [{"file_id": "5834912e-12d2-490b-a389-7879557978ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ea15deba1614952a8e95534f4f1f84d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ea15deba1614952a8e95534f4f1f84d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ea15deba1614952a8e95534f4f1f84d.jpg", "file_size": 8386, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A13小领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea15deba1614952a8e95534f4f1f84d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea15deba1614952a8e95534f4f1f84d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ea15deba1614952a8e95534f4f1f84d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ea15deba1614952a8e95534f4f1f84d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ea15deba1614952a8e95534f4f1f84d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7EuOZ94jeUSmVGQEuqmGyotMh9Y=", "createTime": "2024-08-15 14:51:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.088346+00 2025-12-09 10:15:10.08835+00 10933 FHXGPK-批布049-1 SPMX-20240815306112 \N \N \N 1 \N [{"file_id": "19ce4a3a-03d2-403f-9361-de8a67f58888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d47c698f5c1b4ed1b531003f44677de2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d47c698f5c1b4ed1b531003f44677de2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d47c698f5c1b4ed1b531003f44677de2.jpg", "file_size": 43983, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布049-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c698f5c1b4ed1b531003f44677de2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c698f5c1b4ed1b531003f44677de2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c698f5c1b4ed1b531003f44677de2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d47c698f5c1b4ed1b531003f44677de2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d47c698f5c1b4ed1b531003f44677de2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LNaB58JR6u72mIzYk_2NsqUdRLQ=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.090332+00 2025-12-09 10:15:10.090336+00 10934 23-2117#A14-3XL SPMX-20240815306113 \N \N \N 1 \N [{"file_id": "dbf92a2c-330d-4a43-9602-fb863cfe1c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4823ede3cff49509216eeae56b91716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4823ede3cff49509216eeae56b91716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4823ede3cff49509216eeae56b91716.jpg", "file_size": 21973, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A14-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4823ede3cff49509216eeae56b91716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4823ede3cff49509216eeae56b91716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4823ede3cff49509216eeae56b91716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4823ede3cff49509216eeae56b91716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4823ede3cff49509216eeae56b91716.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a8nJRtqbnd1ADwZNQzdF5GLuUDU=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.092278+00 2025-12-09 10:15:10.092283+00 10935 HT063FWE#VS-D3 SPMX-20240815306115 \N \N \N 1 \N [{"file_id": "fb295971-3d60-440c-95cc-58222d1207e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d3506f902df4517b3644bc5b4e086c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d3506f902df4517b3644bc5b4e086c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d3506f902df4517b3644bc5b4e086c4.jpg", "file_size": 16972, "is_delete": false, "file_type": 1, "original_file_name": "HT063FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3506f902df4517b3644bc5b4e086c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3506f902df4517b3644bc5b4e086c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3506f902df4517b3644bc5b4e086c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d3506f902df4517b3644bc5b4e086c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d3506f902df4517b3644bc5b4e086c4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rz2ej6HN7sa7CmzcmhpN7jzrS0k=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.094238+00 2025-12-09 10:15:10.094243+00 10936 8125#短裤套装上衣 SPMX-20240815306114 \N \N \N 1 \N [{"file_id": "cf4e7e05-f699-475d-97d0-6d475285cd40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b4d46bf4dc436798e6ebb9b799420d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b4d46bf4dc436798e6ebb9b799420d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b4d46bf4dc436798e6ebb9b799420d.jpg", "file_size": 21422, "is_delete": false, "file_type": 1, "original_file_name": "8125#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b4d46bf4dc436798e6ebb9b799420d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b4d46bf4dc436798e6ebb9b799420d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b4d46bf4dc436798e6ebb9b799420d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b4d46bf4dc436798e6ebb9b799420d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b4d46bf4dc436798e6ebb9b799420d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJGY6RE6l8CPre95YDInIgR2-0E=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.096199+00 2025-12-09 10:15:10.096203+00 10937 C410#黑底 SPMX-20240815306117 \N \N \N 1 \N [{"file_id": "fd80dfb9-29a8-4996-834a-def956323fb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f75cd24f7d344f798de71aa870c95a6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f75cd24f7d344f798de71aa870c95a6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f75cd24f7d344f798de71aa870c95a6b.jpg", "file_size": 80015, "is_delete": false, "file_type": 1, "original_file_name": "C410#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75cd24f7d344f798de71aa870c95a6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75cd24f7d344f798de71aa870c95a6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75cd24f7d344f798de71aa870c95a6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f75cd24f7d344f798de71aa870c95a6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f75cd24f7d344f798de71aa870c95a6b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:clyVADMP9X_DW4Zs4RxnOM7SK-0=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.097941+00 2025-12-09 10:15:10.097946+00 10938 LZ1281#背心款1号色 SPMX-20240815306116 \N \N \N 1 \N [{"file_id": "ef9b2a8f-344e-4d4a-b313-0d70dda0af1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b334563cbb84970824f0bf87b13301b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b334563cbb84970824f0bf87b13301b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b334563cbb84970824f0bf87b13301b.jpg", "file_size": 16593, "is_delete": false, "file_type": 1, "original_file_name": "LZ1281#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b334563cbb84970824f0bf87b13301b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b334563cbb84970824f0bf87b13301b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b334563cbb84970824f0bf87b13301b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b334563cbb84970824f0bf87b13301b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b334563cbb84970824f0bf87b13301b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYtiwGWxTjDt1eJt6vEk-Tl50A0=", "createTime": "2024-08-15 14:51:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.099678+00 2025-12-09 10:15:10.099682+00 10939 11-6G26#蓝色S SPMX-20240815306119 \N \N \N 1 \N [{"file_id": "7a06284b-1cf6-4f43-8ee8-a291ea9bc686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e107985a94664e14bd774d7bd63033b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e107985a94664e14bd774d7bd63033b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e107985a94664e14bd774d7bd63033b1.jpg", "file_size": 13958, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e107985a94664e14bd774d7bd63033b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e107985a94664e14bd774d7bd63033b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e107985a94664e14bd774d7bd63033b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e107985a94664e14bd774d7bd63033b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e107985a94664e14bd774d7bd63033b1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yw8O_4hCwxz2sL-a_EjBMZzRO74=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.101489+00 2025-12-09 10:15:10.101493+00 10940 0003-7FWE#VS-D3 SPMX-20240815306118 \N \N \N 1 \N [{"file_id": "812b588c-a818-4766-8c04-f457189f4f78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "537df41ecdeb48838d3bf867430fe52d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "537df41ecdeb48838d3bf867430fe52d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "537df41ecdeb48838d3bf867430fe52d.jpg", "file_size": 22653, "is_delete": false, "file_type": 1, "original_file_name": "0003-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537df41ecdeb48838d3bf867430fe52d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537df41ecdeb48838d3bf867430fe52d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/537df41ecdeb48838d3bf867430fe52d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/537df41ecdeb48838d3bf867430fe52d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/537df41ecdeb48838d3bf867430fe52d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xT9O8cLDLdoCAtPAhFOUs9DnTB0=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.103453+00 2025-12-09 10:15:10.103457+00 10941 JTSS228FW#VS-D3 SPMX-20240815306120 \N \N \N 1 \N [{"file_id": "14b558e4-f709-4129-9a35-dda18cdf517f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cc15161e09645dba9e845080912bf99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cc15161e09645dba9e845080912bf99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cc15161e09645dba9e845080912bf99.jpg", "file_size": 10718, "is_delete": false, "file_type": 1, "original_file_name": "JTSS228FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc15161e09645dba9e845080912bf99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc15161e09645dba9e845080912bf99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc15161e09645dba9e845080912bf99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cc15161e09645dba9e845080912bf99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cc15161e09645dba9e845080912bf99.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvWAPOUDPDArDRU4djXlb2w0PO8=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.105426+00 2025-12-09 10:15:10.105431+00 10942 C413#大白 SPMX-20240815306122 \N \N \N 1 \N [{"file_id": "68c093c5-5c6c-447b-a4f8-7763dcc315d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64a739725d244cc1a0c603d08b2bb2ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64a739725d244cc1a0c603d08b2bb2ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64a739725d244cc1a0c603d08b2bb2ce.jpg", "file_size": 65013, "is_delete": false, "file_type": 1, "original_file_name": "C413#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a739725d244cc1a0c603d08b2bb2ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a739725d244cc1a0c603d08b2bb2ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a739725d244cc1a0c603d08b2bb2ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64a739725d244cc1a0c603d08b2bb2ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64a739725d244cc1a0c603d08b2bb2ce.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RN03ZxcELMLbZGggUvZ5cjQEUWk=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.107391+00 2025-12-09 10:15:10.107395+00 10943 LJ9936#2XL黑 SPMX-20240815306121 \N \N \N 1 \N [{"file_id": "47999dcc-ce8e-49cc-a520-56201a8711e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "015a4239386345488a54f301adfaf2e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "015a4239386345488a54f301adfaf2e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "015a4239386345488a54f301adfaf2e6.jpg", "file_size": 21120, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#2XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a4239386345488a54f301adfaf2e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a4239386345488a54f301adfaf2e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a4239386345488a54f301adfaf2e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/015a4239386345488a54f301adfaf2e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/015a4239386345488a54f301adfaf2e6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kk1lhfjqaMkw1DXBrmKemjFUhVg=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.131478+00 2025-12-09 10:15:10.131482+00 10956 HT064FWE#VS-D3 SPMX-20240815306134 \N \N \N 1 \N [{"file_id": "5f4dd5ae-28f3-4e50-a8af-5d851a3a78d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1e6aeebf80a4af78c851c6d4e94274a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1e6aeebf80a4af78c851c6d4e94274a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1e6aeebf80a4af78c851c6d4e94274a.jpg", "file_size": 20368, "is_delete": false, "file_type": 1, "original_file_name": "HT064FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6aeebf80a4af78c851c6d4e94274a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6aeebf80a4af78c851c6d4e94274a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6aeebf80a4af78c851c6d4e94274a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1e6aeebf80a4af78c851c6d4e94274a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1e6aeebf80a4af78c851c6d4e94274a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtzxyoyiKt7nQQnNELi-Lfa0b10=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.109357+00 2025-12-09 10:15:10.109361+00 10944 8125#短裤套装匹布 SPMX-20240815306124 \N \N \N 1 \N [{"file_id": "69dfcac5-5970-47cd-a22e-7e95f46db736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56c93a46b4e1451d8e6f1c354428e651.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56c93a46b4e1451d8e6f1c354428e651.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56c93a46b4e1451d8e6f1c354428e651.jpg", "file_size": 17727, "is_delete": false, "file_type": 1, "original_file_name": "8125#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c93a46b4e1451d8e6f1c354428e651.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c93a46b4e1451d8e6f1c354428e651.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c93a46b4e1451d8e6f1c354428e651.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56c93a46b4e1451d8e6f1c354428e651.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56c93a46b4e1451d8e6f1c354428e651.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oUSdOjbs4WyMrf8gvHdyJxVGoQ=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.111332+00 2025-12-09 10:15:10.111337+00 10945 FHXGPK-批布049-2 SPMX-20240815306123 \N \N \N 1 \N [{"file_id": "d432f70b-74fe-43b2-9bce-8987b377f335", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ab5506245864d43b1489289e2df4d71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ab5506245864d43b1489289e2df4d71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ab5506245864d43b1489289e2df4d71.jpg", "file_size": 41775, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布049-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab5506245864d43b1489289e2df4d71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab5506245864d43b1489289e2df4d71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab5506245864d43b1489289e2df4d71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ab5506245864d43b1489289e2df4d71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ab5506245864d43b1489289e2df4d71.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZ7a0rXjtL90B53C38yIaDH0z7M=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.11333+00 2025-12-09 10:15:10.113335+00 10946 0003-7FWF#白底咖啡 SPMX-20240815306128 \N \N \N 1 \N [{"file_id": "ab24574f-c92d-4701-8805-32d32348abbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "369e8b4ccc05438ab5af1803d814b094.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "369e8b4ccc05438ab5af1803d814b094.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "369e8b4ccc05438ab5af1803d814b094.jpg", "file_size": 21541, "is_delete": false, "file_type": 1, "original_file_name": "0003-7FWF#白底咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369e8b4ccc05438ab5af1803d814b094.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369e8b4ccc05438ab5af1803d814b094.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369e8b4ccc05438ab5af1803d814b094.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/369e8b4ccc05438ab5af1803d814b094.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/369e8b4ccc05438ab5af1803d814b094.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pMnkVo6gutaRdkfeD0XS4L8UodU=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.115054+00 2025-12-09 10:15:10.115059+00 10947 JTSS229FW#VS-D3 SPMX-20240815306130 \N \N \N 1 \N [{"file_id": "0beb05f7-17cb-4f45-a1af-b456513e4a3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a45e7be171f04b72936a65b74100ff5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a45e7be171f04b72936a65b74100ff5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a45e7be171f04b72936a65b74100ff5c.jpg", "file_size": 11161, "is_delete": false, "file_type": 1, "original_file_name": "JTSS229FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e7be171f04b72936a65b74100ff5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e7be171f04b72936a65b74100ff5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45e7be171f04b72936a65b74100ff5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a45e7be171f04b72936a65b74100ff5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a45e7be171f04b72936a65b74100ff5c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyH63iFKSi7KdGD7RJut1AxYBg4=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.1168+00 2025-12-09 10:15:10.116805+00 10948 LZ1281#背心款2号色 SPMX-20240815306126 \N \N \N 1 \N [{"file_id": "23b5cd63-bb3d-4254-945c-602acdd41328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a38341c327a74744b8c7744f801c6f7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a38341c327a74744b8c7744f801c6f7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a38341c327a74744b8c7744f801c6f7e.jpg", "file_size": 16869, "is_delete": false, "file_type": 1, "original_file_name": "LZ1281#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38341c327a74744b8c7744f801c6f7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38341c327a74744b8c7744f801c6f7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38341c327a74744b8c7744f801c6f7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a38341c327a74744b8c7744f801c6f7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a38341c327a74744b8c7744f801c6f7e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVWHKY5psI1qldw9bnIWUPF7RDo=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.11853+00 2025-12-09 10:15:10.118535+00 10949 11-6G26#蓝色XL SPMX-20240815306129 \N \N \N 1 \N [{"file_id": "a39af344-e537-4f69-be6d-15532037e4fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d58984c866e140e7a1616e1321c49b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d58984c866e140e7a1616e1321c49b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d58984c866e140e7a1616e1321c49b9e.jpg", "file_size": 14594, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58984c866e140e7a1616e1321c49b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58984c866e140e7a1616e1321c49b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58984c866e140e7a1616e1321c49b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d58984c866e140e7a1616e1321c49b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d58984c866e140e7a1616e1321c49b9e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CGGWCVTsWHaSBaSBHZT7T1yXW6A=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.120384+00 2025-12-09 10:15:10.120389+00 10950 8125#短裤套装裤子 SPMX-20240815306132 \N \N \N 1 \N [{"file_id": "ceaa474e-db76-4703-bd4d-be952850b1ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00e5a03526de4219ac24c9f9eaec3d58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00e5a03526de4219ac24c9f9eaec3d58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00e5a03526de4219ac24c9f9eaec3d58.jpg", "file_size": 21460, "is_delete": false, "file_type": 1, "original_file_name": "8125#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e5a03526de4219ac24c9f9eaec3d58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e5a03526de4219ac24c9f9eaec3d58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00e5a03526de4219ac24c9f9eaec3d58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00e5a03526de4219ac24c9f9eaec3d58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00e5a03526de4219ac24c9f9eaec3d58.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMcmkAok79lF-HKRmjEyddJrJh8=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.122123+00 2025-12-09 10:15:10.122127+00 10951 LJ9936#L浅灰 SPMX-20240815306131 \N \N \N 1 \N [{"file_id": "6458cfaa-d187-4bd5-8755-6997247bf8c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ef40a45d66f4585924bbfe864bba762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ef40a45d66f4585924bbfe864bba762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ef40a45d66f4585924bbfe864bba762.jpg", "file_size": 14155, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#L浅灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef40a45d66f4585924bbfe864bba762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef40a45d66f4585924bbfe864bba762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef40a45d66f4585924bbfe864bba762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ef40a45d66f4585924bbfe864bba762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ef40a45d66f4585924bbfe864bba762.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bMZ54FqNbpIiApSONFeT4O9AOw=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.123875+00 2025-12-09 10:15:10.12388+00 10952 23-2117#A14-领子3XL SPMX-20240815306137 \N \N \N 1 \N [{"file_id": "ecd91364-2bbd-4cfd-862d-68b53d8ff861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c45ca157f8414cb28c09e3cefc593648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c45ca157f8414cb28c09e3cefc593648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c45ca157f8414cb28c09e3cefc593648.jpg", "file_size": 13953, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A14-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45ca157f8414cb28c09e3cefc593648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45ca157f8414cb28c09e3cefc593648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45ca157f8414cb28c09e3cefc593648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c45ca157f8414cb28c09e3cefc593648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c45ca157f8414cb28c09e3cefc593648.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrBX1yWnubXBDGJaNIH5ndhieKk=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.125627+00 2025-12-09 10:15:10.125631+00 10953 LZ1281#背心款3号色 SPMX-20240815306135 \N \N \N 1 \N [{"file_id": "6064bf0b-5c49-40b2-a04e-24b452712ddc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3fb0324f89e46a9867a3043463e293d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3fb0324f89e46a9867a3043463e293d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3fb0324f89e46a9867a3043463e293d.jpg", "file_size": 14117, "is_delete": false, "file_type": 1, "original_file_name": "LZ1281#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb0324f89e46a9867a3043463e293d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb0324f89e46a9867a3043463e293d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3fb0324f89e46a9867a3043463e293d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3fb0324f89e46a9867a3043463e293d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3fb0324f89e46a9867a3043463e293d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtLK8pgnWD-J0E_esg18Vv0ewPI=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.127604+00 2025-12-09 10:15:10.127609+00 10954 HT064FW#VS-D3宝蓝 SPMX-20240815306125 \N \N \N 1 \N [{"file_id": "2423f782-88d6-4286-aecb-65e654368d12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f94ec3c3b6444b18acc8122668b6fba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f94ec3c3b6444b18acc8122668b6fba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f94ec3c3b6444b18acc8122668b6fba7.jpg", "file_size": 8554, "is_delete": false, "file_type": 1, "original_file_name": "HT064FW#VS-D3宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94ec3c3b6444b18acc8122668b6fba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94ec3c3b6444b18acc8122668b6fba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94ec3c3b6444b18acc8122668b6fba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f94ec3c3b6444b18acc8122668b6fba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f94ec3c3b6444b18acc8122668b6fba7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NlqlJUmN8er__Vn0KmPa15y6Fc=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.129468+00 2025-12-09 10:15:10.129472+00 10955 23-2117#A14-4XL SPMX-20240815306127 \N \N \N 1 \N [{"file_id": "95e8187d-7283-4736-aa8c-b33bfec79cfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e26b06e5f38f40fdbb0f77c60a437272.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e26b06e5f38f40fdbb0f77c60a437272.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e26b06e5f38f40fdbb0f77c60a437272.jpg", "file_size": 19910, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A14-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26b06e5f38f40fdbb0f77c60a437272.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26b06e5f38f40fdbb0f77c60a437272.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26b06e5f38f40fdbb0f77c60a437272.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e26b06e5f38f40fdbb0f77c60a437272.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e26b06e5f38f40fdbb0f77c60a437272.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jRLfzsNq6uZO4SEUyf6ibBM1_P0=", "createTime": "2024-08-15 14:51:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.133473+00 2025-12-09 10:15:10.133478+00 10957 FHXGPK-批布050-1 SPMX-20240815306136 \N \N \N 1 \N [{"file_id": "9c2b107d-7240-4295-8109-c63778698058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d078fc464c4440ebba29aff23a5b35e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d078fc464c4440ebba29aff23a5b35e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d078fc464c4440ebba29aff23a5b35e.jpg", "file_size": 72736, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布050-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d078fc464c4440ebba29aff23a5b35e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d078fc464c4440ebba29aff23a5b35e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d078fc464c4440ebba29aff23a5b35e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d078fc464c4440ebba29aff23a5b35e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d078fc464c4440ebba29aff23a5b35e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIxTKUS4rG7ejtoZzUaLSdYVFe8=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.135522+00 2025-12-09 10:15:10.135526+00 10958 C413#玫红 SPMX-20240815306133 \N \N \N 1 \N [{"file_id": "b534a281-9068-4ac9-aa90-a567ab4c8d1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e0096b7e75542119576fbefea1e813b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e0096b7e75542119576fbefea1e813b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e0096b7e75542119576fbefea1e813b.jpg", "file_size": 70677, "is_delete": false, "file_type": 1, "original_file_name": "C413#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0096b7e75542119576fbefea1e813b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0096b7e75542119576fbefea1e813b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e0096b7e75542119576fbefea1e813b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e0096b7e75542119576fbefea1e813b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e0096b7e75542119576fbefea1e813b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EocIwYEyFMxZxkOeqx2gOJ0oWeQ=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.137494+00 2025-12-09 10:15:10.137499+00 10959 LZ1281#背心款4号色 SPMX-20240815306144 \N \N \N 1 \N [{"file_id": "c77a61c7-e697-4eac-b274-639f8d04efcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0db3acaa78ee4ddebc817106b2c8856f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0db3acaa78ee4ddebc817106b2c8856f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0db3acaa78ee4ddebc817106b2c8856f.jpg", "file_size": 16406, "is_delete": false, "file_type": 1, "original_file_name": "LZ1281#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db3acaa78ee4ddebc817106b2c8856f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db3acaa78ee4ddebc817106b2c8856f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db3acaa78ee4ddebc817106b2c8856f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0db3acaa78ee4ddebc817106b2c8856f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0db3acaa78ee4ddebc817106b2c8856f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEQOXalhuyrAtoIzZC3LFCBTC6A=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.139221+00 2025-12-09 10:15:10.139225+00 10960 FHXGPK-批布050-2 SPMX-20240815306147 \N \N \N 1 \N [{"file_id": "598f3bfd-0ff6-41c0-8419-7039a757a307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d3ea417fc747208efd49189f317b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d3ea417fc747208efd49189f317b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d3ea417fc747208efd49189f317b19.jpg", "file_size": 83618, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布050-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d3ea417fc747208efd49189f317b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d3ea417fc747208efd49189f317b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d3ea417fc747208efd49189f317b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d3ea417fc747208efd49189f317b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d3ea417fc747208efd49189f317b19.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtVu5MgijjfvL3mZ0AWfywwldFY=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.140958+00 2025-12-09 10:15:10.140963+00 10961 C413#粉色 SPMX-20240815306142 \N \N \N 1 \N [{"file_id": "ebe6ed90-e66d-47a6-beae-d9b255bad407", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddb75da06868406e910b9c9e9730531b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddb75da06868406e910b9c9e9730531b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddb75da06868406e910b9c9e9730531b.jpg", "file_size": 63267, "is_delete": false, "file_type": 1, "original_file_name": "C413#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb75da06868406e910b9c9e9730531b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb75da06868406e910b9c9e9730531b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddb75da06868406e910b9c9e9730531b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddb75da06868406e910b9c9e9730531b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddb75da06868406e910b9c9e9730531b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5sig1CoqRSVKLqBlIPIxA5JGbHg=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.142717+00 2025-12-09 10:15:10.142722+00 10962 11-6G26#黄色L SPMX-20240815306139 \N \N \N 1 \N [{"file_id": "303f221d-732b-4e17-b6af-52ed36d28f85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5e0d795a20f4e0cb12e0129ff171bcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5e0d795a20f4e0cb12e0129ff171bcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5e0d795a20f4e0cb12e0129ff171bcc.jpg", "file_size": 14178, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0d795a20f4e0cb12e0129ff171bcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0d795a20f4e0cb12e0129ff171bcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e0d795a20f4e0cb12e0129ff171bcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5e0d795a20f4e0cb12e0129ff171bcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5e0d795a20f4e0cb12e0129ff171bcc.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqHsUq6Sl4GtUiVBptQ782VT1IU=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.144715+00 2025-12-09 10:15:10.14472+00 10963 HT065FW#VS-D3紫 SPMX-20240815306145 \N \N \N 1 \N [{"file_id": "87cf8615-7087-44bd-8feb-2f1ee675cee4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4e1c73192bb4f429c0de10e671e47dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4e1c73192bb4f429c0de10e671e47dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4e1c73192bb4f429c0de10e671e47dd.jpg", "file_size": 8020, "is_delete": false, "file_type": 1, "original_file_name": "HT065FW#VS-D3紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e1c73192bb4f429c0de10e671e47dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e1c73192bb4f429c0de10e671e47dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e1c73192bb4f429c0de10e671e47dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4e1c73192bb4f429c0de10e671e47dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4e1c73192bb4f429c0de10e671e47dd.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ow4mdNbEQrs4kk-Jql0CRU6VR0o=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.146589+00 2025-12-09 10:15:10.146593+00 10964 LJ9936#L深灰 SPMX-20240815306141 \N \N \N 1 \N [{"file_id": "7d3a1f0a-4c2b-4454-9714-d485d8ed3b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f51d4d707f5b47f5948c53b3e5a62faa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f51d4d707f5b47f5948c53b3e5a62faa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f51d4d707f5b47f5948c53b3e5a62faa.jpg", "file_size": 15814, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#L深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d4d707f5b47f5948c53b3e5a62faa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d4d707f5b47f5948c53b3e5a62faa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d4d707f5b47f5948c53b3e5a62faa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f51d4d707f5b47f5948c53b3e5a62faa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f51d4d707f5b47f5948c53b3e5a62faa.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arIoW7Aj6dSGVYDVcRShKUtr5Nw=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.156934+00 2025-12-09 10:15:10.156939+00 10969 8125#绿色 SPMX-20240815306150 \N \N \N 1 \N [{"file_id": "dfcb8a89-e43c-42ba-82fb-c47be4bf5cb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71cacbecde3a4ed1b1a808ebf0ee87ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71cacbecde3a4ed1b1a808ebf0ee87ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71cacbecde3a4ed1b1a808ebf0ee87ab.jpg", "file_size": 24802, "is_delete": false, "file_type": 1, "original_file_name": "8125#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71cacbecde3a4ed1b1a808ebf0ee87ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71cacbecde3a4ed1b1a808ebf0ee87ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71cacbecde3a4ed1b1a808ebf0ee87ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71cacbecde3a4ed1b1a808ebf0ee87ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71cacbecde3a4ed1b1a808ebf0ee87ab.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEf6DbGvctGJK4EnPs73gSPGzGU=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.148586+00 2025-12-09 10:15:10.14859+00 10965 0003-80FWF#V5曲线 SPMX-20240815306140 \N \N \N 1 \N [{"file_id": "77ceb42d-0205-42fe-b66d-3d5bca3274fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "323090942d2d4091848f926acf0d5e2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "323090942d2d4091848f926acf0d5e2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "323090942d2d4091848f926acf0d5e2c.jpg", "file_size": 22234, "is_delete": false, "file_type": 1, "original_file_name": "0003-80FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323090942d2d4091848f926acf0d5e2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323090942d2d4091848f926acf0d5e2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/323090942d2d4091848f926acf0d5e2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/323090942d2d4091848f926acf0d5e2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/323090942d2d4091848f926acf0d5e2c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7adFAa5FaoJnxvynPvca9yx1Eg=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.150638+00 2025-12-09 10:15:10.150643+00 10966 JTSS230FW#VS-D3 SPMX-20240815306138 \N \N \N 1 \N [{"file_id": "9f9363bb-5a8e-42c8-8899-bba675aeffe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4d8629870c04bbfac7c6a16d6872622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4d8629870c04bbfac7c6a16d6872622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4d8629870c04bbfac7c6a16d6872622.jpg", "file_size": 7788, "is_delete": false, "file_type": 1, "original_file_name": "JTSS230FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8629870c04bbfac7c6a16d6872622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8629870c04bbfac7c6a16d6872622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8629870c04bbfac7c6a16d6872622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4d8629870c04bbfac7c6a16d6872622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4d8629870c04bbfac7c6a16d6872622.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTdm2s21OJ95bzkXLyl6aRo_vds=", "createTime": "2024-08-15 14:51:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.152655+00 2025-12-09 10:15:10.152659+00 10967 8125#短裤套装裤子前幅 SPMX-20240815306143 \N \N \N 1 \N [{"file_id": "b106d7ba-672e-4be1-bf0c-57e487cc38bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "790ef4867b0b4e5386967891243439ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "790ef4867b0b4e5386967891243439ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "790ef4867b0b4e5386967891243439ff.jpg", "file_size": 31253, "is_delete": false, "file_type": 1, "original_file_name": "8125#短裤套装裤子前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790ef4867b0b4e5386967891243439ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790ef4867b0b4e5386967891243439ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790ef4867b0b4e5386967891243439ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/790ef4867b0b4e5386967891243439ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/790ef4867b0b4e5386967891243439ff.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3A-80O1P4zk9iU2Jdrg6EluBlhM=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.15465+00 2025-12-09 10:15:10.154654+00 10968 23-2117#A14-领子4XL SPMX-20240815306146 \N \N \N 1 \N [{"file_id": "7928016a-71b1-4a3a-96aa-ede7651152a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ca400cac7e6474d9fadeae9d82c37c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ca400cac7e6474d9fadeae9d82c37c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ca400cac7e6474d9fadeae9d82c37c0.jpg", "file_size": 13614, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A14-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca400cac7e6474d9fadeae9d82c37c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca400cac7e6474d9fadeae9d82c37c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ca400cac7e6474d9fadeae9d82c37c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ca400cac7e6474d9fadeae9d82c37c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ca400cac7e6474d9fadeae9d82c37c0.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gY1um5SvNVjO75nfyq6_93deySo=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.158917+00 2025-12-09 10:15:10.158921+00 10970 HT065FWE#VS-D3 SPMX-20240815306154 \N \N \N 1 \N [{"file_id": "a7b7c889-20c4-43b8-a7c8-fee08c37805b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg", "file_size": 17659, "is_delete": false, "file_type": 1, "original_file_name": "HT065FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ca6238ac3a4526bc2d7eb2fa3536ed.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msyYOT-vVMvM1qwFoLGynVTzPcc=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.160884+00 2025-12-09 10:15:10.160889+00 10971 0003-81FWF#V5曲线 SPMX-20240815306153 \N \N \N 1 \N [{"file_id": "0fb7edcd-625c-48d9-b6d9-d2f2d68dbc81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddabb9e152714d209d78019d561c957c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddabb9e152714d209d78019d561c957c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddabb9e152714d209d78019d561c957c.jpg", "file_size": 18183, "is_delete": false, "file_type": 1, "original_file_name": "0003-81FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddabb9e152714d209d78019d561c957c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddabb9e152714d209d78019d561c957c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddabb9e152714d209d78019d561c957c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddabb9e152714d209d78019d561c957c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddabb9e152714d209d78019d561c957c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fx9SA-wixovjqbjZBiRZD5q4tTE=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.162716+00 2025-12-09 10:15:10.162719+00 10972 LZ1281#背心款5号色 SPMX-20240815306155 \N \N \N 1 \N [{"file_id": "049260eb-60ee-483c-a3ad-a70b7f3e03aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c38a5f5a34a4bf4be69685725f1b069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c38a5f5a34a4bf4be69685725f1b069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c38a5f5a34a4bf4be69685725f1b069.jpg", "file_size": 16220, "is_delete": false, "file_type": 1, "original_file_name": "LZ1281#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c38a5f5a34a4bf4be69685725f1b069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c38a5f5a34a4bf4be69685725f1b069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c38a5f5a34a4bf4be69685725f1b069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c38a5f5a34a4bf4be69685725f1b069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c38a5f5a34a4bf4be69685725f1b069.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cf9tr0GP-qVyMMwiNBIPrqYba1g=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.164681+00 2025-12-09 10:15:10.164685+00 10973 FHXGPK-批布050-3 SPMX-20240815306156 \N \N \N 1 \N [{"file_id": "17e1a405-2830-4780-bb47-529b4d732f21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad48e05a73ec416ca77ac809cb8d72d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad48e05a73ec416ca77ac809cb8d72d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad48e05a73ec416ca77ac809cb8d72d7.jpg", "file_size": 70605, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布050-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad48e05a73ec416ca77ac809cb8d72d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad48e05a73ec416ca77ac809cb8d72d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad48e05a73ec416ca77ac809cb8d72d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad48e05a73ec416ca77ac809cb8d72d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad48e05a73ec416ca77ac809cb8d72d7.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9AWolt36FF3JT06SrCg6viWJ8_I=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.166385+00 2025-12-09 10:15:10.166389+00 10974 JTSS231FW#VS-D3 SPMX-20240815306149 \N \N \N 1 \N [{"file_id": "519aef0a-5be9-4052-80b0-5089d1250c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5ad0384a13746589ae9532f39ce2b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5ad0384a13746589ae9532f39ce2b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5ad0384a13746589ae9532f39ce2b64.jpg", "file_size": 9851, "is_delete": false, "file_type": 1, "original_file_name": "JTSS231FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ad0384a13746589ae9532f39ce2b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ad0384a13746589ae9532f39ce2b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5ad0384a13746589ae9532f39ce2b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5ad0384a13746589ae9532f39ce2b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5ad0384a13746589ae9532f39ce2b64.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-sUp1VG0Xru6Ynj7hgh_c-5rlE=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.168104+00 2025-12-09 10:15:10.168109+00 10975 JTSS232FW# SPMX-20240815306161 \N \N \N 1 \N [{"file_id": "673a6409-1cd8-4232-8f6e-074492f0d922", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "639efcad894240c593cbf01670145f12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "639efcad894240c593cbf01670145f12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "639efcad894240c593cbf01670145f12.jpg", "file_size": 8000, "is_delete": false, "file_type": 1, "original_file_name": "JTSS232FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639efcad894240c593cbf01670145f12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639efcad894240c593cbf01670145f12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639efcad894240c593cbf01670145f12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/639efcad894240c593cbf01670145f12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/639efcad894240c593cbf01670145f12.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rIPun-_a71EjaF7oWtM8V7Em7I=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.169816+00 2025-12-09 10:15:10.16982+00 10976 LJ9936#L白 SPMX-20240815306151 \N \N \N 1 \N [{"file_id": "96f9f523-2282-4245-b732-f4afef69f28d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee363e79eb36421596cecc6e42f882bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee363e79eb36421596cecc6e42f882bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee363e79eb36421596cecc6e42f882bf.jpg", "file_size": 17114, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#L白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee363e79eb36421596cecc6e42f882bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee363e79eb36421596cecc6e42f882bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee363e79eb36421596cecc6e42f882bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee363e79eb36421596cecc6e42f882bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee363e79eb36421596cecc6e42f882bf.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfnSyqSJPCRWoR39th8SQIxjTnY=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.171764+00 2025-12-09 10:15:10.171768+00 10977 LJ9936#L蓝 SPMX-20240815306160 \N \N \N 1 \N [{"file_id": "81a1e16f-5403-4239-a619-ea13cc56915b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b53d34ed64d4e598196b9fcf9b0c485.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b53d34ed64d4e598196b9fcf9b0c485.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b53d34ed64d4e598196b9fcf9b0c485.jpg", "file_size": 17009, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#L蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53d34ed64d4e598196b9fcf9b0c485.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53d34ed64d4e598196b9fcf9b0c485.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53d34ed64d4e598196b9fcf9b0c485.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b53d34ed64d4e598196b9fcf9b0c485.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b53d34ed64d4e598196b9fcf9b0c485.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUqMKCPOufvzAkWOm4zfkYT5MZ4=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.173448+00 2025-12-09 10:15:10.173452+00 10978 C413#绿色 SPMX-20240815306152 \N \N \N 1 \N [{"file_id": "594ad9e2-70ee-44bb-9c24-66cfae11ba09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a94ddc5f1aba4c968b86bb5889688ea2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a94ddc5f1aba4c968b86bb5889688ea2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a94ddc5f1aba4c968b86bb5889688ea2.jpg", "file_size": 71436, "is_delete": false, "file_type": 1, "original_file_name": "C413#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94ddc5f1aba4c968b86bb5889688ea2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94ddc5f1aba4c968b86bb5889688ea2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94ddc5f1aba4c968b86bb5889688ea2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a94ddc5f1aba4c968b86bb5889688ea2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a94ddc5f1aba4c968b86bb5889688ea2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFEpjOltBXEjwj-otuZ6ROijVOQ=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.175149+00 2025-12-09 10:15:10.175153+00 10979 8126#橘色 SPMX-20240815306158 \N \N \N 1 \N [{"file_id": "ed195792-a71b-4014-b1ca-18af983b5a92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a97bfe22d58940908600baf04e3ab821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a97bfe22d58940908600baf04e3ab821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a97bfe22d58940908600baf04e3ab821.jpg", "file_size": 15341, "is_delete": false, "file_type": 1, "original_file_name": "8126#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97bfe22d58940908600baf04e3ab821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97bfe22d58940908600baf04e3ab821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97bfe22d58940908600baf04e3ab821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a97bfe22d58940908600baf04e3ab821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a97bfe22d58940908600baf04e3ab821.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2gMBuZ9pczve11hHKr_Ms3Y4Hc=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.176874+00 2025-12-09 10:15:10.176878+00 10980 11-6G26#黄色S SPMX-20240815306159 \N \N \N 1 \N [{"file_id": "66846866-e3f6-4cbf-8da0-2f20abe24405", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c44c96bd7b094633a0e009f91de0acf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c44c96bd7b094633a0e009f91de0acf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c44c96bd7b094633a0e009f91de0acf8.jpg", "file_size": 13921, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#黄色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44c96bd7b094633a0e009f91de0acf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44c96bd7b094633a0e009f91de0acf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44c96bd7b094633a0e009f91de0acf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c44c96bd7b094633a0e009f91de0acf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c44c96bd7b094633a0e009f91de0acf8.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3horliQVuEjOzq2-dqxw8mBKQs=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.178824+00 2025-12-09 10:15:10.178828+00 10981 11-6G26#黄色M SPMX-20240815306148 \N \N \N 1 \N [{"file_id": "2e44bd3b-be5e-45e1-8476-56b44b8fb3ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "918b9e59b0fd4fc29b5beb0ef1794089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "918b9e59b0fd4fc29b5beb0ef1794089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "918b9e59b0fd4fc29b5beb0ef1794089.jpg", "file_size": 13997, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918b9e59b0fd4fc29b5beb0ef1794089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918b9e59b0fd4fc29b5beb0ef1794089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/918b9e59b0fd4fc29b5beb0ef1794089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/918b9e59b0fd4fc29b5beb0ef1794089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/918b9e59b0fd4fc29b5beb0ef1794089.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6iMHIVEdymILtGejKPQCV5b0RXI=", "createTime": "2024-08-15 14:51:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.180798+00 2025-12-09 10:15:10.180803+00 10982 23-2117#A15-3XL SPMX-20240815306157 \N \N \N 1 \N [{"file_id": "cd4ba115-eb9a-4c47-8256-fbe3e5f81641", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b348309f0640f384d882f6f716ec38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b348309f0640f384d882f6f716ec38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b348309f0640f384d882f6f716ec38.jpg", "file_size": 18057, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A15-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b348309f0640f384d882f6f716ec38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b348309f0640f384d882f6f716ec38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b348309f0640f384d882f6f716ec38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b348309f0640f384d882f6f716ec38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b348309f0640f384d882f6f716ec38.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDrca-JaacTdN7ZG5PdnDWPO44I=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.182793+00 2025-12-09 10:15:10.182797+00 10983 0003-83FWF#V5曲线 SPMX-20240815306174 \N \N \N 1 \N [{"file_id": "7e5d7848-fa95-4a0b-a97b-939d66fc70e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e6af0d0008f4131b7c7a5cf0a6add22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e6af0d0008f4131b7c7a5cf0a6add22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e6af0d0008f4131b7c7a5cf0a6add22.jpg", "file_size": 22518, "is_delete": false, "file_type": 1, "original_file_name": "0003-83FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6af0d0008f4131b7c7a5cf0a6add22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6af0d0008f4131b7c7a5cf0a6add22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6af0d0008f4131b7c7a5cf0a6add22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e6af0d0008f4131b7c7a5cf0a6add22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e6af0d0008f4131b7c7a5cf0a6add22.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zutuvR3A62VjOwRP5uPts3XhYnQ=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.184809+00 2025-12-09 10:15:10.184814+00 10984 LZ1282#背心款2号色 SPMX-20240815306175 \N \N \N 1 \N [{"file_id": "45b029ab-94cd-4372-9424-623355320c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3369489d1894b90b995d0fc681f62b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3369489d1894b90b995d0fc681f62b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3369489d1894b90b995d0fc681f62b1.jpg", "file_size": 16589, "is_delete": false, "file_type": 1, "original_file_name": "LZ1282#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3369489d1894b90b995d0fc681f62b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3369489d1894b90b995d0fc681f62b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3369489d1894b90b995d0fc681f62b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3369489d1894b90b995d0fc681f62b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3369489d1894b90b995d0fc681f62b1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6vSwktoa05dtHj4J1KCpdLrDfxE=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.186795+00 2025-12-09 10:15:10.186799+00 10985 FHXGPK-批布051-1 SPMX-20240815306166 \N \N \N 1 \N [{"file_id": "a928fbc0-d2a8-4278-aa29-992f5505e015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e7f63c2a32b492db960cfd0ef044dd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e7f63c2a32b492db960cfd0ef044dd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e7f63c2a32b492db960cfd0ef044dd3.jpg", "file_size": 28998, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布051-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7f63c2a32b492db960cfd0ef044dd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7f63c2a32b492db960cfd0ef044dd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7f63c2a32b492db960cfd0ef044dd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e7f63c2a32b492db960cfd0ef044dd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e7f63c2a32b492db960cfd0ef044dd3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ju3gbbwYixNe7ZQYgjeuPllSaGc=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.18877+00 2025-12-09 10:15:10.188774+00 10986 C417#221#绿 SPMX-20240815306172 \N \N \N 1 \N [{"file_id": "6f57efef-fa5c-489f-b837-aebec38dea70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "101f95787e394c69b669219e79edfc05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "101f95787e394c69b669219e79edfc05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "101f95787e394c69b669219e79edfc05.jpg", "file_size": 65858, "is_delete": false, "file_type": 1, "original_file_name": "C417#221#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101f95787e394c69b669219e79edfc05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101f95787e394c69b669219e79edfc05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101f95787e394c69b669219e79edfc05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/101f95787e394c69b669219e79edfc05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/101f95787e394c69b669219e79edfc05.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1zY32CXUiS2GZn6aXZtrK1fTohw=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.190761+00 2025-12-09 10:15:10.190765+00 10987 11-6G26#黄色XL SPMX-20240815306168 \N \N \N 1 \N [{"file_id": "ac1d2d1a-a974-447c-a317-6652fd3867fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ecccd52361a49d8bfb4d579bfec8048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ecccd52361a49d8bfb4d579bfec8048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ecccd52361a49d8bfb4d579bfec8048.jpg", "file_size": 14428, "is_delete": false, "file_type": 1, "original_file_name": "11-6G26#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecccd52361a49d8bfb4d579bfec8048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecccd52361a49d8bfb4d579bfec8048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ecccd52361a49d8bfb4d579bfec8048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ecccd52361a49d8bfb4d579bfec8048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ecccd52361a49d8bfb4d579bfec8048.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCmCfGW9lNz304SyQy50qxPc76M=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.192764+00 2025-12-09 10:15:10.192769+00 10988 JTSS232FW#VS-D3 SPMX-20240815306171 \N \N \N 1 \N [{"file_id": "6532d7bd-2bd3-4a85-b703-3923b46c4b30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceb6f83e8026438f9767dbc16ea7d667.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceb6f83e8026438f9767dbc16ea7d667.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceb6f83e8026438f9767dbc16ea7d667.jpg", "file_size": 7985, "is_delete": false, "file_type": 1, "original_file_name": "JTSS232FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb6f83e8026438f9767dbc16ea7d667.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb6f83e8026438f9767dbc16ea7d667.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb6f83e8026438f9767dbc16ea7d667.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceb6f83e8026438f9767dbc16ea7d667.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceb6f83e8026438f9767dbc16ea7d667.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyr2lJcymJxFgHExZr7KWZa_wGg=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.194756+00 2025-12-09 10:15:10.19476+00 10989 C413#黑色 SPMX-20240815306162 \N \N \N 1 \N [{"file_id": "dd83f955-0ed2-40aa-9cf2-5001109f797f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbd93dbfa34446b98a5382561f146c7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbd93dbfa34446b98a5382561f146c7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbd93dbfa34446b98a5382561f146c7b.jpg", "file_size": 65849, "is_delete": false, "file_type": 1, "original_file_name": "C413#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd93dbfa34446b98a5382561f146c7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd93dbfa34446b98a5382561f146c7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd93dbfa34446b98a5382561f146c7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbd93dbfa34446b98a5382561f146c7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbd93dbfa34446b98a5382561f146c7b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9azEtHTwDQ_mneJK4YoA_K6umTg=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.196552+00 2025-12-09 10:15:10.196557+00 10990 0003-82FWF#V5曲线 SPMX-20240815306163 \N \N \N 1 \N [{"file_id": "4d1399b5-83d9-4fc1-9cfa-ca16b507f91c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9137040d4d5b4e939d8098cd54422b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9137040d4d5b4e939d8098cd54422b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9137040d4d5b4e939d8098cd54422b04.jpg", "file_size": 25981, "is_delete": false, "file_type": 1, "original_file_name": "0003-82FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9137040d4d5b4e939d8098cd54422b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9137040d4d5b4e939d8098cd54422b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9137040d4d5b4e939d8098cd54422b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9137040d4d5b4e939d8098cd54422b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9137040d4d5b4e939d8098cd54422b04.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3Mjk3R8RWCTyay9iO4WXqiJj6o=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.198525+00 2025-12-09 10:15:10.19853+00 10991 LZ1282#背心款1号色 SPMX-20240815306165 \N \N \N 1 \N [{"file_id": "068ace37-9c82-4137-bf06-3eb314c3f994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e2f78617d2343178bc43808b397c28e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e2f78617d2343178bc43808b397c28e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e2f78617d2343178bc43808b397c28e.jpg", "file_size": 16897, "is_delete": false, "file_type": 1, "original_file_name": "LZ1282#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2f78617d2343178bc43808b397c28e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2f78617d2343178bc43808b397c28e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2f78617d2343178bc43808b397c28e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e2f78617d2343178bc43808b397c28e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e2f78617d2343178bc43808b397c28e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1uRxH8umjjB7WYBOBLme_S-dVz4=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.200331+00 2025-12-09 10:15:10.200335+00 10992 8126#玫红 SPMX-20240815306169 \N \N \N 1 \N [{"file_id": "a6f96713-58eb-4360-b7fa-0e5e136c346b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c2434e440c842b3b52771cf1f15ba5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c2434e440c842b3b52771cf1f15ba5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c2434e440c842b3b52771cf1f15ba5a.jpg", "file_size": 14625, "is_delete": false, "file_type": 1, "original_file_name": "8126#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2434e440c842b3b52771cf1f15ba5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2434e440c842b3b52771cf1f15ba5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2434e440c842b3b52771cf1f15ba5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c2434e440c842b3b52771cf1f15ba5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c2434e440c842b3b52771cf1f15ba5a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgDmPsl3bKpFGvtptKzH_oS0NJc=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.202312+00 2025-12-09 10:15:10.202316+00 10993 HT067FW#VS-D3 SPMX-20240815306173 \N \N \N 1 \N [{"file_id": "ca651825-f601-473d-86c3-742e941c94cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg", "file_size": 11134, "is_delete": false, "file_type": 1, "original_file_name": "HT067FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e2f54c9ca3b4b1aabf0e5aec7092dea.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gExGuCKySPJLDtiXWWhSNVTinGM=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.204089+00 2025-12-09 10:15:10.204094+00 10994 HT066FWE#VS-D3 SPMX-20240815306164 \N \N \N 1 \N [{"file_id": "c149038f-f14b-45da-b0c6-400b74497148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "381cb076df2e49468b98923be458b57c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "381cb076df2e49468b98923be458b57c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "381cb076df2e49468b98923be458b57c.jpg", "file_size": 17133, "is_delete": false, "file_type": 1, "original_file_name": "HT066FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381cb076df2e49468b98923be458b57c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381cb076df2e49468b98923be458b57c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381cb076df2e49468b98923be458b57c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/381cb076df2e49468b98923be458b57c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/381cb076df2e49468b98923be458b57c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cj7Jv78QGam2W_pzkJ8CC4u1tmY=", "createTime": "2024-08-15 14:51:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.206168+00 2025-12-09 10:15:10.206173+00 10995 LJ9936#L黑 SPMX-20240815306170 \N \N \N 1 \N [{"file_id": "95beccd3-68f7-453d-82e9-111031a0451a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f00c428e3a7547159bd79624fb9e719d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f00c428e3a7547159bd79624fb9e719d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f00c428e3a7547159bd79624fb9e719d.jpg", "file_size": 19594, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#L黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00c428e3a7547159bd79624fb9e719d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00c428e3a7547159bd79624fb9e719d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00c428e3a7547159bd79624fb9e719d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f00c428e3a7547159bd79624fb9e719d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f00c428e3a7547159bd79624fb9e719d.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jeEDNoHzwta3zdFkhAv70TVe1kA=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.208116+00 2025-12-09 10:15:10.208121+00 10996 FHXGPK-批布051-2 SPMX-20240815306177 \N \N \N 1 \N [{"file_id": "3f707794-17c3-4e38-a317-56539e9831ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d4782446c8b49d692abc317f295bd43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d4782446c8b49d692abc317f295bd43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d4782446c8b49d692abc317f295bd43.jpg", "file_size": 24044, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布051-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4782446c8b49d692abc317f295bd43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4782446c8b49d692abc317f295bd43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4782446c8b49d692abc317f295bd43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d4782446c8b49d692abc317f295bd43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d4782446c8b49d692abc317f295bd43.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJMvENx0PDEhZwNxxTje0Gpwt24=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.210066+00 2025-12-09 10:15:10.210071+00 10997 23-2117#A15-4XL SPMX-20240815306167 \N \N \N 1 \N [{"file_id": "4fc19fe9-f657-4b30-95ab-a9e53e5ff5e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "210f7600d6034d0f9bf90bc518892769.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "210f7600d6034d0f9bf90bc518892769.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "210f7600d6034d0f9bf90bc518892769.jpg", "file_size": 17201, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A15-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210f7600d6034d0f9bf90bc518892769.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210f7600d6034d0f9bf90bc518892769.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210f7600d6034d0f9bf90bc518892769.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/210f7600d6034d0f9bf90bc518892769.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/210f7600d6034d0f9bf90bc518892769.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sc_YpgZj-inxSIJT-fYPzGoy8Po=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.21204+00 2025-12-09 10:15:10.212044+00 10998 23-2117#A15-领子3XL SPMX-20240815306176 \N \N \N 1 \N [{"file_id": "9058502d-5f23-440b-a0d4-4879982cf2a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc1cb7566bc54f308c9e593f67d6ee14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc1cb7566bc54f308c9e593f67d6ee14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc1cb7566bc54f308c9e593f67d6ee14.jpg", "file_size": 13627, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A15-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc1cb7566bc54f308c9e593f67d6ee14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc1cb7566bc54f308c9e593f67d6ee14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc1cb7566bc54f308c9e593f67d6ee14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc1cb7566bc54f308c9e593f67d6ee14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc1cb7566bc54f308c9e593f67d6ee14.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jeQ2NGcoIUY_LYLGAK03qDloFkg=", "createTime": "2024-08-15 14:51:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.213743+00 2025-12-09 10:15:10.213748+00 10999 23-2117#A15-领子4XL SPMX-20240815306185 \N \N \N 1 \N [{"file_id": "a1d7e05f-5a9d-41bb-9d71-62f9d5bbe004", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80450abb96f44f87930b2e81bb053c4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80450abb96f44f87930b2e81bb053c4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80450abb96f44f87930b2e81bb053c4e.jpg", "file_size": 13316, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A15-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80450abb96f44f87930b2e81bb053c4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80450abb96f44f87930b2e81bb053c4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80450abb96f44f87930b2e81bb053c4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80450abb96f44f87930b2e81bb053c4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80450abb96f44f87930b2e81bb053c4e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O65C88gPyYwFbPV2smDiDIyWT-k=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.215416+00 2025-12-09 10:15:10.21542+00 11000 FHXGPK-批布051-3 SPMX-20240815306187 \N \N \N 1 \N [{"file_id": "5e332f64-05b6-491b-9010-64aef84f848a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e887c9a82cb0404690788c7b65e724a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e887c9a82cb0404690788c7b65e724a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e887c9a82cb0404690788c7b65e724a1.jpg", "file_size": 25284, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布051-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e887c9a82cb0404690788c7b65e724a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e887c9a82cb0404690788c7b65e724a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e887c9a82cb0404690788c7b65e724a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e887c9a82cb0404690788c7b65e724a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e887c9a82cb0404690788c7b65e724a1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9DuZ03rv3ogaGTrM1yrPnSsQOk=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.217139+00 2025-12-09 10:15:10.217143+00 11001 110#-杏色 SPMX-20240815306178 \N \N \N 1 \N [{"file_id": "6d108210-13c6-4a9d-b0d7-deda4f812af6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9356ef706176483a8a85b5fa0b8fd3d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9356ef706176483a8a85b5fa0b8fd3d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9356ef706176483a8a85b5fa0b8fd3d4.jpg", "file_size": 51075, "is_delete": false, "file_type": 1, "original_file_name": "110#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356ef706176483a8a85b5fa0b8fd3d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356ef706176483a8a85b5fa0b8fd3d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356ef706176483a8a85b5fa0b8fd3d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9356ef706176483a8a85b5fa0b8fd3d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9356ef706176483a8a85b5fa0b8fd3d4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WmEyWWcG9kFFWZkTWTjEDLRDOCI=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.219103+00 2025-12-09 10:15:10.219108+00 11002 HT067FWE#VS-D3 SPMX-20240815306186 \N \N \N 1 \N [{"file_id": "917e3fca-0629-4f3c-a34d-532f54eb551b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "244635a16ce34a5d8a2afacbca47080a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "244635a16ce34a5d8a2afacbca47080a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "244635a16ce34a5d8a2afacbca47080a.jpg", "file_size": 22083, "is_delete": false, "file_type": 1, "original_file_name": "HT067FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244635a16ce34a5d8a2afacbca47080a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244635a16ce34a5d8a2afacbca47080a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244635a16ce34a5d8a2afacbca47080a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/244635a16ce34a5d8a2afacbca47080a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/244635a16ce34a5d8a2afacbca47080a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25C-2VPyO1QT-edQQo8udadmHA0=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.220791+00 2025-12-09 10:15:10.220795+00 11003 8126#短裤套装上衣 SPMX-20240815306188 \N \N \N 1 \N [{"file_id": "ec3958b5-a1d2-4576-a319-b4c5bab32d8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb939144ead84fc6862fe63d412240db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb939144ead84fc6862fe63d412240db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb939144ead84fc6862fe63d412240db.jpg", "file_size": 21372, "is_delete": false, "file_type": 1, "original_file_name": "8126#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb939144ead84fc6862fe63d412240db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb939144ead84fc6862fe63d412240db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb939144ead84fc6862fe63d412240db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb939144ead84fc6862fe63d412240db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb939144ead84fc6862fe63d412240db.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5fJDrG5-lJKktJCxRBLhKsk6Cg=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.222468+00 2025-12-09 10:15:10.222473+00 11004 0003-84FWF#V5曲线 SPMX-20240815306184 \N \N \N 1 \N [{"file_id": "c6294ecf-32e4-48c1-a7bf-7cb3626b10c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5135e71c3cc48a0ab56f33b5a234ae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5135e71c3cc48a0ab56f33b5a234ae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5135e71c3cc48a0ab56f33b5a234ae3.jpg", "file_size": 22282, "is_delete": false, "file_type": 1, "original_file_name": "0003-84FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5135e71c3cc48a0ab56f33b5a234ae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5135e71c3cc48a0ab56f33b5a234ae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5135e71c3cc48a0ab56f33b5a234ae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5135e71c3cc48a0ab56f33b5a234ae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5135e71c3cc48a0ab56f33b5a234ae3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iEPaDB1Nu4nz8bLPNpUlyBoyDQM=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.224174+00 2025-12-09 10:15:10.224178+00 11005 LJ9936#M浅灰 SPMX-20240815306179 \N \N \N 1 \N [{"file_id": "b906bedd-91d7-40f6-8567-014bd4706401", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41aeeac3ebda443cad62d2e1facb045b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41aeeac3ebda443cad62d2e1facb045b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41aeeac3ebda443cad62d2e1facb045b.jpg", "file_size": 14371, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#M浅灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41aeeac3ebda443cad62d2e1facb045b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41aeeac3ebda443cad62d2e1facb045b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41aeeac3ebda443cad62d2e1facb045b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41aeeac3ebda443cad62d2e1facb045b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41aeeac3ebda443cad62d2e1facb045b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZDbp5T-JjJtmS4Ohr-VLJGBbZM=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.225887+00 2025-12-09 10:15:10.225891+00 11006 8126#白色 SPMX-20240815306180 \N \N \N 1 \N [{"file_id": "e455fb4e-5401-46cb-b7fd-acd1ddc03aba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7344a034804fcf83ac45a995370f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7344a034804fcf83ac45a995370f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7344a034804fcf83ac45a995370f37.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "8126#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7344a034804fcf83ac45a995370f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7344a034804fcf83ac45a995370f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7344a034804fcf83ac45a995370f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7344a034804fcf83ac45a995370f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7344a034804fcf83ac45a995370f37.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QsyecI3noi4Rry2f0hsrihY4Gug=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.227553+00 2025-12-09 10:15:10.227557+00 11007 JTSS233FW#VS-D3 SPMX-20240815306181 \N \N \N 1 \N [{"file_id": "e67f46d7-2ae4-4965-b35c-198a924fff37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4e71bc1a3974cb3ae08b95bf85ac21c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4e71bc1a3974cb3ae08b95bf85ac21c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4e71bc1a3974cb3ae08b95bf85ac21c.jpg", "file_size": 11608, "is_delete": false, "file_type": 1, "original_file_name": "JTSS233FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e71bc1a3974cb3ae08b95bf85ac21c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e71bc1a3974cb3ae08b95bf85ac21c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e71bc1a3974cb3ae08b95bf85ac21c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4e71bc1a3974cb3ae08b95bf85ac21c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4e71bc1a3974cb3ae08b95bf85ac21c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mZdykngJcCGAM5sHvYopXNbCnA=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.229354+00 2025-12-09 10:15:10.229359+00 11008 C417#254#粉色 SPMX-20240815306183 \N \N \N 1 \N [{"file_id": "a9fe362d-0b24-4dd6-ad16-bea0bcc75c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg", "file_size": 54080, "is_delete": false, "file_type": 1, "original_file_name": "C417#254#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e74dcc2d7bcc4db68a1d3cafa63ff76f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bLNAsJPZnt1C82iaIBgqf5dLzFI=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.231315+00 2025-12-09 10:15:10.231319+00 11009 LZ1282#背心款3号色 SPMX-20240815306182 \N \N \N 1 \N [{"file_id": "d3d34765-4a25-41ab-96a7-29391cb8d80a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6540b42feafb42fca71812848434f350.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6540b42feafb42fca71812848434f350.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6540b42feafb42fca71812848434f350.jpg", "file_size": 16576, "is_delete": false, "file_type": 1, "original_file_name": "LZ1282#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6540b42feafb42fca71812848434f350.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6540b42feafb42fca71812848434f350.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6540b42feafb42fca71812848434f350.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6540b42feafb42fca71812848434f350.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6540b42feafb42fca71812848434f350.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQTFqljL2oCPkUHolud2VfZ5mcI=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.233246+00 2025-12-09 10:15:10.23325+00 11010 JTSS234FW#VS-D3 SPMX-20240815306193 \N \N \N 1 \N [{"file_id": "ea847d31-172d-4e4f-934a-78644403be49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg", "file_size": 23078, "is_delete": false, "file_type": 1, "original_file_name": "JTSS234FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0668bfd02e6a4ff9a3d9f07b03b6d6b9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:voiD2KR4Vd7OsU6Wcg9wJtAizHY=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.234936+00 2025-12-09 10:15:10.234941+00 11011 C417#橙色 SPMX-20240815306192 \N \N \N 1 \N [{"file_id": "773a678f-8e1b-464d-821c-1fff7fc5e839", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4d98776df984d468a55135293482891.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4d98776df984d468a55135293482891.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4d98776df984d468a55135293482891.jpg", "file_size": 68248, "is_delete": false, "file_type": 1, "original_file_name": "C417#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d98776df984d468a55135293482891.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d98776df984d468a55135293482891.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d98776df984d468a55135293482891.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4d98776df984d468a55135293482891.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4d98776df984d468a55135293482891.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MoDT5U56SQkyKCNLPz8uSklVp8A=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.236622+00 2025-12-09 10:15:10.236626+00 11012 LJ9936#M深灰 SPMX-20240815306189 \N \N \N 1 \N [{"file_id": "1a03f283-7e7c-45b2-8c5d-21f12c3dcef1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "527a21ab249948d18ce2047080c01b51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "527a21ab249948d18ce2047080c01b51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "527a21ab249948d18ce2047080c01b51.jpg", "file_size": 16024, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#M深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a21ab249948d18ce2047080c01b51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a21ab249948d18ce2047080c01b51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a21ab249948d18ce2047080c01b51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/527a21ab249948d18ce2047080c01b51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/527a21ab249948d18ce2047080c01b51.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86HZ9hU7U6lyy1aV3och1-dhMz0=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.238328+00 2025-12-09 10:15:10.238333+00 11013 110#-灰色 SPMX-20240815306190 \N \N \N 1 \N [{"file_id": "45b67ebc-50d6-4b6a-9eb6-109ea94e6f73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4992fa1057c4456846bacdb49f00fe4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4992fa1057c4456846bacdb49f00fe4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4992fa1057c4456846bacdb49f00fe4.jpg", "file_size": 57254, "is_delete": false, "file_type": 1, "original_file_name": "110#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4992fa1057c4456846bacdb49f00fe4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4992fa1057c4456846bacdb49f00fe4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4992fa1057c4456846bacdb49f00fe4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4992fa1057c4456846bacdb49f00fe4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4992fa1057c4456846bacdb49f00fe4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b1_tGwpcBjlsQimfC7_FcjyWhbM=", "createTime": "2024-08-15 14:51:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.240273+00 2025-12-09 10:15:10.240277+00 11014 LZ1282#背心款4号色 SPMX-20240815306191 \N \N \N 1 \N [{"file_id": "97bb1971-ce18-4117-abff-d781f7708d59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "936998a01ef0441383b89210eb1fa386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "936998a01ef0441383b89210eb1fa386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "936998a01ef0441383b89210eb1fa386.jpg", "file_size": 16913, "is_delete": false, "file_type": 1, "original_file_name": "LZ1282#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936998a01ef0441383b89210eb1fa386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936998a01ef0441383b89210eb1fa386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936998a01ef0441383b89210eb1fa386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/936998a01ef0441383b89210eb1fa386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/936998a01ef0441383b89210eb1fa386.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwnIZBd2kg03n-fXF6RtnmagoEQ=", "createTime": "2024-08-15 14:51:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.24197+00 2025-12-09 10:15:10.241974+00 11015 LJ9936#M白 SPMX-20240815306195 \N \N \N 1 \N [{"file_id": "0c5c06e3-8203-4ec9-8269-51a4d54ed07a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "381df19bf5bd42cda121c44d97a4bff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "381df19bf5bd42cda121c44d97a4bff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "381df19bf5bd42cda121c44d97a4bff9.jpg", "file_size": 17550, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#M白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381df19bf5bd42cda121c44d97a4bff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381df19bf5bd42cda121c44d97a4bff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381df19bf5bd42cda121c44d97a4bff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/381df19bf5bd42cda121c44d97a4bff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/381df19bf5bd42cda121c44d97a4bff9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIj_VUP4l3WkT7oIzigfO8EEZsc=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.243633+00 2025-12-09 10:15:10.243637+00 11016 23-2117#A16-3XL SPMX-20240815306196 \N \N \N 1 \N [{"file_id": "c1b9060f-703b-4842-b857-463ebcc92a0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eb44b836c0649a7b15b7015b94415cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eb44b836c0649a7b15b7015b94415cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eb44b836c0649a7b15b7015b94415cb.jpg", "file_size": 18284, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A16-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb44b836c0649a7b15b7015b94415cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb44b836c0649a7b15b7015b94415cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eb44b836c0649a7b15b7015b94415cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eb44b836c0649a7b15b7015b94415cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eb44b836c0649a7b15b7015b94415cb.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29jb5w1ga__avbISq9JIZelTwrA=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.245337+00 2025-12-09 10:15:10.245341+00 11017 JTSS235FW#VS-D3 SPMX-20240815306202 \N \N \N 1 \N [{"file_id": "c903e977-4fd9-45a1-820a-b63996a673bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg", "file_size": 10777, "is_delete": false, "file_type": 1, "original_file_name": "JTSS235FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0279d15e8c384c3eaa8ad5fd6b4aeca2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccl9x4257zoZOnl7M7iw1IoOvnU=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.247017+00 2025-12-09 10:15:10.247021+00 11018 110#-白色 SPMX-20240815306198 \N \N \N 1 \N [{"file_id": "3fcb44ca-2960-4cae-83cc-1bdec75f39d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "337d076a6c1141e5896f8ec691b05e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "337d076a6c1141e5896f8ec691b05e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "337d076a6c1141e5896f8ec691b05e46.jpg", "file_size": 48005, "is_delete": false, "file_type": 1, "original_file_name": "110#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337d076a6c1141e5896f8ec691b05e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337d076a6c1141e5896f8ec691b05e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/337d076a6c1141e5896f8ec691b05e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/337d076a6c1141e5896f8ec691b05e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/337d076a6c1141e5896f8ec691b05e46.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShBp2ardIWhBAvza_q4Qv4QwTq8=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.248708+00 2025-12-09 10:15:10.248712+00 11019 FHXGPK-批布052-1 SPMX-20240815306200 \N \N \N 1 \N [{"file_id": "0645f174-6732-45b1-96e0-a986a2a57e63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26da61db9e2c438f88b6de6e48fffc63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26da61db9e2c438f88b6de6e48fffc63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26da61db9e2c438f88b6de6e48fffc63.jpg", "file_size": 56439, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布052-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da61db9e2c438f88b6de6e48fffc63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da61db9e2c438f88b6de6e48fffc63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da61db9e2c438f88b6de6e48fffc63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26da61db9e2c438f88b6de6e48fffc63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26da61db9e2c438f88b6de6e48fffc63.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bo1j6UZROLRRd8VszHiQnZTpyLo=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.250401+00 2025-12-09 10:15:10.250406+00 11020 C417#玫红 SPMX-20240815306201 \N \N \N 1 \N [{"file_id": "e8d2ee29-3ca5-4bc2-8d47-3b27b95987a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d94b0703925c42c2bece6c1d26bb0a0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d94b0703925c42c2bece6c1d26bb0a0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d94b0703925c42c2bece6c1d26bb0a0f.jpg", "file_size": 67593, "is_delete": false, "file_type": 1, "original_file_name": "C417#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94b0703925c42c2bece6c1d26bb0a0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94b0703925c42c2bece6c1d26bb0a0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94b0703925c42c2bece6c1d26bb0a0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d94b0703925c42c2bece6c1d26bb0a0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d94b0703925c42c2bece6c1d26bb0a0f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-OedfZCNdUQKw0jl2ogDwzlLuEk=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.252448+00 2025-12-09 10:15:10.252453+00 11021 0003-85FWF#V5曲线 SPMX-20240815306203 \N \N \N 1 \N [{"file_id": "52bc3ff0-5b8a-413e-bcc0-9e036241b74c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55c353121cb34fafbafac9a6e52c07e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55c353121cb34fafbafac9a6e52c07e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55c353121cb34fafbafac9a6e52c07e6.jpg", "file_size": 14805, "is_delete": false, "file_type": 1, "original_file_name": "0003-85FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55c353121cb34fafbafac9a6e52c07e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55c353121cb34fafbafac9a6e52c07e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55c353121cb34fafbafac9a6e52c07e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55c353121cb34fafbafac9a6e52c07e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55c353121cb34fafbafac9a6e52c07e6.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0mf6ySUcjX7VPjP46d2VwvYYl4=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.254488+00 2025-12-09 10:15:10.254493+00 11022 0003-84FWF#匹布 SPMX-20240815306194 \N \N \N 1 \N [{"file_id": "39211b09-edb3-4d85-a7ce-fc22bb62ce0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f819cff90a4bd692786b387e7a2d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f819cff90a4bd692786b387e7a2d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f819cff90a4bd692786b387e7a2d42.jpg", "file_size": 21131, "is_delete": false, "file_type": 1, "original_file_name": "0003-84FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f819cff90a4bd692786b387e7a2d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f819cff90a4bd692786b387e7a2d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f819cff90a4bd692786b387e7a2d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f819cff90a4bd692786b387e7a2d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f819cff90a4bd692786b387e7a2d42.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:poI8ee3JNl9uA7SQded7EZ2JFx8=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.256451+00 2025-12-09 10:15:10.256455+00 11023 HT068FW#VS-D3墨绿 SPMX-20240815306197 \N \N \N 1 \N [{"file_id": "f8864a82-116b-47bf-8d68-c984e521463c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd92e256ae51486392ff2ea72c55e6c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd92e256ae51486392ff2ea72c55e6c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd92e256ae51486392ff2ea72c55e6c3.jpg", "file_size": 15053, "is_delete": false, "file_type": 1, "original_file_name": "HT068FW#VS-D3墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd92e256ae51486392ff2ea72c55e6c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd92e256ae51486392ff2ea72c55e6c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd92e256ae51486392ff2ea72c55e6c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd92e256ae51486392ff2ea72c55e6c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd92e256ae51486392ff2ea72c55e6c3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-phIFfjt57CVQQmi_B-ayR82I0=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.258427+00 2025-12-09 10:15:10.258431+00 11024 8126#短裤套装匹布 SPMX-20240815306199 \N \N \N 1 \N [{"file_id": "f187d302-78c4-4cd2-8289-82c12f5627f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20c58edd342b411f849ce4ca2e43ae29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20c58edd342b411f849ce4ca2e43ae29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20c58edd342b411f849ce4ca2e43ae29.jpg", "file_size": 8141, "is_delete": false, "file_type": 1, "original_file_name": "8126#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c58edd342b411f849ce4ca2e43ae29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c58edd342b411f849ce4ca2e43ae29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c58edd342b411f849ce4ca2e43ae29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20c58edd342b411f849ce4ca2e43ae29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20c58edd342b411f849ce4ca2e43ae29.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:USkqV1ZjFoevVzmpDFDJIvL5l94=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.260142+00 2025-12-09 10:15:10.260147+00 11025 LZ1282#背心款5号色 SPMX-20240815306204 \N \N \N 1 \N [{"file_id": "29477096-0d26-4dde-aece-8c4fbf633df0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "738182ccd06c440f8afd0ed6be6a88ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "738182ccd06c440f8afd0ed6be6a88ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "738182ccd06c440f8afd0ed6be6a88ed.jpg", "file_size": 16403, "is_delete": false, "file_type": 1, "original_file_name": "LZ1282#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738182ccd06c440f8afd0ed6be6a88ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738182ccd06c440f8afd0ed6be6a88ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738182ccd06c440f8afd0ed6be6a88ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/738182ccd06c440f8afd0ed6be6a88ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/738182ccd06c440f8afd0ed6be6a88ed.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fH_PLWuVSn7tDOq1zBVgb-cfnH4=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.261844+00 2025-12-09 10:15:10.261848+00 11026 23-2117#A16-领子3XL SPMX-20240815306216 \N \N \N 1 \N [{"file_id": "5d71effc-3275-45e2-b1c8-6f5124159c42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94a03c5a537f4c3bad9dc1bd74d991a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94a03c5a537f4c3bad9dc1bd74d991a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94a03c5a537f4c3bad9dc1bd74d991a1.jpg", "file_size": 11451, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A16-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a03c5a537f4c3bad9dc1bd74d991a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a03c5a537f4c3bad9dc1bd74d991a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a03c5a537f4c3bad9dc1bd74d991a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94a03c5a537f4c3bad9dc1bd74d991a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94a03c5a537f4c3bad9dc1bd74d991a1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfVO1Uc3Jh_7d2HrXpK9O20sZKQ=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.263524+00 2025-12-09 10:15:10.263528+00 11027 FHXGPK-批布052-2 SPMX-20240815306213 \N \N \N 1 \N [{"file_id": "52792910-a697-4433-8b0b-1d1f55c34373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47b2fe2c5fac46c9afde3695ad05ce5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47b2fe2c5fac46c9afde3695ad05ce5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47b2fe2c5fac46c9afde3695ad05ce5f.jpg", "file_size": 43363, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布052-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b2fe2c5fac46c9afde3695ad05ce5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b2fe2c5fac46c9afde3695ad05ce5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b2fe2c5fac46c9afde3695ad05ce5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47b2fe2c5fac46c9afde3695ad05ce5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47b2fe2c5fac46c9afde3695ad05ce5f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kilvdBmpgoyepFx94JPiie1Oswg=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.26545+00 2025-12-09 10:15:10.265454+00 11028 HT068FW#VS-D3宝蓝 SPMX-20240815306206 \N \N \N 1 \N [{"file_id": "ad7192de-fe96-4ace-ab5f-670a9a7ab65b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a77ff4c006c74e7f812ffcf824efbe59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a77ff4c006c74e7f812ffcf824efbe59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a77ff4c006c74e7f812ffcf824efbe59.jpg", "file_size": 15702, "is_delete": false, "file_type": 1, "original_file_name": "HT068FW#VS-D3宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77ff4c006c74e7f812ffcf824efbe59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77ff4c006c74e7f812ffcf824efbe59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77ff4c006c74e7f812ffcf824efbe59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a77ff4c006c74e7f812ffcf824efbe59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a77ff4c006c74e7f812ffcf824efbe59.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATrFtIXS4puDTLudKYmB7kFU0cs=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.267126+00 2025-12-09 10:15:10.267131+00 11029 8126#短裤套装裤子 SPMX-20240815306209 \N \N \N 1 \N [{"file_id": "98f4dd84-23a7-4715-9546-f366cb9ab073", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "351742f94fb84381b162884526a892f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "351742f94fb84381b162884526a892f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "351742f94fb84381b162884526a892f3.jpg", "file_size": 23727, "is_delete": false, "file_type": 1, "original_file_name": "8126#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351742f94fb84381b162884526a892f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351742f94fb84381b162884526a892f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351742f94fb84381b162884526a892f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/351742f94fb84381b162884526a892f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/351742f94fb84381b162884526a892f3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIeixFxP1wzasbT2qvw-nNhUn1g=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.268836+00 2025-12-09 10:15:10.268841+00 11030 JTSS236FW#VS-D3 SPMX-20240815306210 \N \N \N 1 \N [{"file_id": "e60dd208-0fe1-440c-bc49-4313675d8089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4459857c0fd4eddb3f5adee07ffae43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4459857c0fd4eddb3f5adee07ffae43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4459857c0fd4eddb3f5adee07ffae43.jpg", "file_size": 18035, "is_delete": false, "file_type": 1, "original_file_name": "JTSS236FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4459857c0fd4eddb3f5adee07ffae43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4459857c0fd4eddb3f5adee07ffae43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4459857c0fd4eddb3f5adee07ffae43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4459857c0fd4eddb3f5adee07ffae43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4459857c0fd4eddb3f5adee07ffae43.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sEs-etvSxom3Y-7sSufpupFlsmk=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.270534+00 2025-12-09 10:15:10.270539+00 11031 0003-86FWF#咖色底 SPMX-20240815306211 \N \N \N 1 \N [{"file_id": "75addfef-80ee-45cc-912f-954cc8255680", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed87da9027764de08db782ccddb13ed4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed87da9027764de08db782ccddb13ed4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed87da9027764de08db782ccddb13ed4.jpg", "file_size": 14373, "is_delete": false, "file_type": 1, "original_file_name": "0003-86FWF#咖色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed87da9027764de08db782ccddb13ed4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed87da9027764de08db782ccddb13ed4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed87da9027764de08db782ccddb13ed4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed87da9027764de08db782ccddb13ed4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed87da9027764de08db782ccddb13ed4.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3REF6mekVvD4EhYovzmC4Eb3d0=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.2725+00 2025-12-09 10:15:10.272504+00 11032 HT068FW#VS-D3粉 SPMX-20240815306217 \N \N \N 1 \N [{"file_id": "56ad5862-7210-4fae-ba3c-d08bcd80a152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f2cf17d5dd545f39f85964633ac9232.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f2cf17d5dd545f39f85964633ac9232.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f2cf17d5dd545f39f85964633ac9232.jpg", "file_size": 12252, "is_delete": false, "file_type": 1, "original_file_name": "HT068FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2cf17d5dd545f39f85964633ac9232.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2cf17d5dd545f39f85964633ac9232.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2cf17d5dd545f39f85964633ac9232.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f2cf17d5dd545f39f85964633ac9232.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f2cf17d5dd545f39f85964633ac9232.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lNoWqSmj92h-VL04gwbw6WUiCU=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.274191+00 2025-12-09 10:15:10.274195+00 11033 110#-黑色 SPMX-20240815306208 \N \N \N 1 \N [{"file_id": "614257b7-5aff-4d6e-a5e1-46842ff07eb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ddd838db464164819002b10709a78b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ddd838db464164819002b10709a78b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ddd838db464164819002b10709a78b.jpg", "file_size": 47838, "is_delete": false, "file_type": 1, "original_file_name": "110#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ddd838db464164819002b10709a78b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ddd838db464164819002b10709a78b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ddd838db464164819002b10709a78b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ddd838db464164819002b10709a78b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ddd838db464164819002b10709a78b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWjxIGc0y9ghe6LTzobqAhfbmDM=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.275946+00 2025-12-09 10:15:10.275951+00 11034 C417#紫色 SPMX-20240815306212 \N \N \N 1 \N [{"file_id": "ed7b4a9e-6d38-4bb6-bf86-3a3a6ef33868", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf30466d8bc043ffbb9963852a3ec349.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf30466d8bc043ffbb9963852a3ec349.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf30466d8bc043ffbb9963852a3ec349.jpg", "file_size": 53093, "is_delete": false, "file_type": 1, "original_file_name": "C417#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf30466d8bc043ffbb9963852a3ec349.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf30466d8bc043ffbb9963852a3ec349.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf30466d8bc043ffbb9963852a3ec349.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf30466d8bc043ffbb9963852a3ec349.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf30466d8bc043ffbb9963852a3ec349.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLbj8SVVTMgbSQmHtFMpndzI640=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.277792+00 2025-12-09 10:15:10.277797+00 11035 LJ9936#M蓝 SPMX-20240815306205 \N \N \N 1 \N [{"file_id": "d5728d1f-9b0f-461c-847b-17b18f4e95ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b47b281773294c3ea2acbbe11d7241fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b47b281773294c3ea2acbbe11d7241fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b47b281773294c3ea2acbbe11d7241fe.jpg", "file_size": 17682, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#M蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47b281773294c3ea2acbbe11d7241fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47b281773294c3ea2acbbe11d7241fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b47b281773294c3ea2acbbe11d7241fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b47b281773294c3ea2acbbe11d7241fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b47b281773294c3ea2acbbe11d7241fe.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMClmuzdDWE5vYzq1PO2H6cZo0U=", "createTime": "2024-08-15 14:51:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.279744+00 2025-12-09 10:15:10.279749+00 11036 LZ1283#背心款1号色 SPMX-20240815306214 \N \N \N 1 \N [{"file_id": "1b809eea-f6c8-4b47-a0dc-4c2a3ece52c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f82663e6a6fb4625b963894d2a2638bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f82663e6a6fb4625b963894d2a2638bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f82663e6a6fb4625b963894d2a2638bd.jpg", "file_size": 19674, "is_delete": false, "file_type": 1, "original_file_name": "LZ1283#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82663e6a6fb4625b963894d2a2638bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82663e6a6fb4625b963894d2a2638bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82663e6a6fb4625b963894d2a2638bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f82663e6a6fb4625b963894d2a2638bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f82663e6a6fb4625b963894d2a2638bd.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9j8d3NDCg5FezjSfBc-wI3fW4w=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.281674+00 2025-12-09 10:15:10.281678+00 11037 LJ9936#M黑 SPMX-20240815306215 \N \N \N 1 \N [{"file_id": "2ae86352-b0ae-420b-98de-657c8f60adb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d57dd428d24642978fc3164f4e448ea9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d57dd428d24642978fc3164f4e448ea9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d57dd428d24642978fc3164f4e448ea9.jpg", "file_size": 20167, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#M黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57dd428d24642978fc3164f4e448ea9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57dd428d24642978fc3164f4e448ea9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57dd428d24642978fc3164f4e448ea9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d57dd428d24642978fc3164f4e448ea9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d57dd428d24642978fc3164f4e448ea9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSUfybgfruQ-78gdem9yGMlikQo=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.283555+00 2025-12-09 10:15:10.283559+00 11038 23-2117#A16-4XL SPMX-20240815306207 \N \N \N 1 \N [{"file_id": "4c74af13-df3c-4cf7-9993-686eb8a5ee18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71a221100625422bb2a95c21ea47ef7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71a221100625422bb2a95c21ea47ef7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71a221100625422bb2a95c21ea47ef7a.jpg", "file_size": 16589, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A16-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a221100625422bb2a95c21ea47ef7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a221100625422bb2a95c21ea47ef7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a221100625422bb2a95c21ea47ef7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71a221100625422bb2a95c21ea47ef7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71a221100625422bb2a95c21ea47ef7a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_n6KHh65f04a4E80pb253EdZB24=", "createTime": "2024-08-15 14:51:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.285275+00 2025-12-09 10:15:10.285279+00 11039 110#LWQ15 SPMX-20240815306219 \N \N \N 1 \N [{"file_id": "5838ccdc-a5f6-41f2-83a4-8bfe89df56eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b2a9e0f57c44a44b96bf987fd800cc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b2a9e0f57c44a44b96bf987fd800cc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b2a9e0f57c44a44b96bf987fd800cc9.jpg", "file_size": 14409, "is_delete": false, "file_type": 1, "original_file_name": "110#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b2a9e0f57c44a44b96bf987fd800cc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b2a9e0f57c44a44b96bf987fd800cc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b2a9e0f57c44a44b96bf987fd800cc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b2a9e0f57c44a44b96bf987fd800cc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b2a9e0f57c44a44b96bf987fd800cc9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93UqkINGprUe2QDAJdx5sktmo6c=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.286957+00 2025-12-09 10:15:10.286961+00 11040 0003-86FWF#白底 SPMX-20240815306221 \N \N \N 1 \N [{"file_id": "d4ad0fce-cb56-43e7-a5b8-37005c4776cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caa7eac5964e4863857d92a605eefc66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caa7eac5964e4863857d92a605eefc66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caa7eac5964e4863857d92a605eefc66.jpg", "file_size": 13307, "is_delete": false, "file_type": 1, "original_file_name": "0003-86FWF#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa7eac5964e4863857d92a605eefc66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa7eac5964e4863857d92a605eefc66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa7eac5964e4863857d92a605eefc66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caa7eac5964e4863857d92a605eefc66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caa7eac5964e4863857d92a605eefc66.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MB76HrbvdwuktZMNZuuPd9_PuzU=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.288662+00 2025-12-09 10:15:10.288666+00 11041 JTSS237FW#VS-D3 SPMX-20240815306218 \N \N \N 1 \N [{"file_id": "346dc9ae-a57f-41a8-ad5f-e2c51a6d6179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b427abb34e14c41b64cd7c43558be2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b427abb34e14c41b64cd7c43558be2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b427abb34e14c41b64cd7c43558be2a.jpg", "file_size": 18028, "is_delete": false, "file_type": 1, "original_file_name": "JTSS237FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b427abb34e14c41b64cd7c43558be2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b427abb34e14c41b64cd7c43558be2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b427abb34e14c41b64cd7c43558be2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b427abb34e14c41b64cd7c43558be2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b427abb34e14c41b64cd7c43558be2a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FgD3o1DksgGuEiM1MQe4kkbzts=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.290344+00 2025-12-09 10:15:10.290349+00 11042 8126#绿色 SPMX-20240815306220 \N \N \N 1 \N [{"file_id": "5d1c19ab-1661-4652-aba9-30b9f30e1bf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d79c15ee1964be2963dd7194f914f93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d79c15ee1964be2963dd7194f914f93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d79c15ee1964be2963dd7194f914f93.jpg", "file_size": 15217, "is_delete": false, "file_type": 1, "original_file_name": "8126#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d79c15ee1964be2963dd7194f914f93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d79c15ee1964be2963dd7194f914f93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d79c15ee1964be2963dd7194f914f93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d79c15ee1964be2963dd7194f914f93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d79c15ee1964be2963dd7194f914f93.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UJ5TRPHPonttRZfNIXX_PMvy8cg=", "createTime": "2024-08-15 14:51:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.292047+00 2025-12-09 10:15:10.292051+00 11043 JTSS238FW#VS-D3 SPMX-20240815306222 \N \N \N 1 \N [{"file_id": "2dc59bf0-dab6-47f1-9ef6-8a4e8b65c39c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12f16825309046ba95081cd36e5d5a62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12f16825309046ba95081cd36e5d5a62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12f16825309046ba95081cd36e5d5a62.jpg", "file_size": 8314, "is_delete": false, "file_type": 1, "original_file_name": "JTSS238FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f16825309046ba95081cd36e5d5a62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f16825309046ba95081cd36e5d5a62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f16825309046ba95081cd36e5d5a62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12f16825309046ba95081cd36e5d5a62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12f16825309046ba95081cd36e5d5a62.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2cYTvjmVjxGO0OsAkI84nxy8TQ=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.293742+00 2025-12-09 10:15:10.293747+00 11044 LZ1283#背心款2号色 SPMX-20240815306223 \N \N \N 1 \N [{"file_id": "19357c89-eb2b-4e41-817f-990844e6e700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "316716a98f9f473eae0069917abd0d3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "316716a98f9f473eae0069917abd0d3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "316716a98f9f473eae0069917abd0d3b.jpg", "file_size": 19166, "is_delete": false, "file_type": 1, "original_file_name": "LZ1283#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316716a98f9f473eae0069917abd0d3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316716a98f9f473eae0069917abd0d3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316716a98f9f473eae0069917abd0d3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/316716a98f9f473eae0069917abd0d3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/316716a98f9f473eae0069917abd0d3b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJSkrhIQLIjyyphFcpAOex9Nh7o=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.295681+00 2025-12-09 10:15:10.295685+00 11045 110#大红 SPMX-20240815306230 \N \N \N 1 \N [{"file_id": "47d3c75a-2b68-44d6-b985-7ce3fe22c994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b8963c3d5e496594ff1ca076949526.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b8963c3d5e496594ff1ca076949526.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b8963c3d5e496594ff1ca076949526.jpg", "file_size": 25164, "is_delete": false, "file_type": 1, "original_file_name": "110#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b8963c3d5e496594ff1ca076949526.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b8963c3d5e496594ff1ca076949526.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b8963c3d5e496594ff1ca076949526.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b8963c3d5e496594ff1ca076949526.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b8963c3d5e496594ff1ca076949526.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icU2YoJ42MDn6te6zGUuccW3rnk=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.297375+00 2025-12-09 10:15:10.29738+00 11046 0003-86FWF#紫色底 SPMX-20240815306227 \N \N \N 1 \N [{"file_id": "aa57ab0a-486c-4753-ad3c-caf1755c1b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "778482b2e05d4d85ab0154d2a7f8341e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "778482b2e05d4d85ab0154d2a7f8341e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "778482b2e05d4d85ab0154d2a7f8341e.jpg", "file_size": 14314, "is_delete": false, "file_type": 1, "original_file_name": "0003-86FWF#紫色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778482b2e05d4d85ab0154d2a7f8341e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778482b2e05d4d85ab0154d2a7f8341e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778482b2e05d4d85ab0154d2a7f8341e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/778482b2e05d4d85ab0154d2a7f8341e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/778482b2e05d4d85ab0154d2a7f8341e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdQSL0blUSzaGomh3BsYC0f-_9A=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.299071+00 2025-12-09 10:15:10.299075+00 11047 C417#黑色 SPMX-20240815306226 \N \N \N 1 \N [{"file_id": "1a201d89-82db-4692-95eb-d384c04acdff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a17456cf03ef4062aac0af1957e7d18f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a17456cf03ef4062aac0af1957e7d18f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a17456cf03ef4062aac0af1957e7d18f.jpg", "file_size": 58293, "is_delete": false, "file_type": 1, "original_file_name": "C417#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17456cf03ef4062aac0af1957e7d18f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17456cf03ef4062aac0af1957e7d18f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17456cf03ef4062aac0af1957e7d18f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a17456cf03ef4062aac0af1957e7d18f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a17456cf03ef4062aac0af1957e7d18f.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hy_m7tbdV9TDuCx0FuOsy_BzVwc=", "createTime": "2024-08-15 14:51:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.300783+00 2025-12-09 10:15:10.300788+00 11048 8126#黑色 SPMX-20240815306231 \N \N \N 1 \N [{"file_id": "972bb71a-8be7-4c0f-8155-f0f75c25b002", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "063d69b57c4143d5aa00530e22899985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "063d69b57c4143d5aa00530e22899985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "063d69b57c4143d5aa00530e22899985.jpg", "file_size": 16397, "is_delete": false, "file_type": 1, "original_file_name": "8126#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063d69b57c4143d5aa00530e22899985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063d69b57c4143d5aa00530e22899985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063d69b57c4143d5aa00530e22899985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/063d69b57c4143d5aa00530e22899985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/063d69b57c4143d5aa00530e22899985.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9k4CzV3lH660T_VOz7goolMYik=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.302709+00 2025-12-09 10:15:10.302713+00 11049 LJ9936#S浅灰 SPMX-20240815306228 \N \N \N 1 \N [{"file_id": "5402d22f-3b3b-4def-be88-403cd485a8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae34bf1b24c24459aa572bca29200a3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae34bf1b24c24459aa572bca29200a3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae34bf1b24c24459aa572bca29200a3c.jpg", "file_size": 14832, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#S浅灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae34bf1b24c24459aa572bca29200a3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae34bf1b24c24459aa572bca29200a3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae34bf1b24c24459aa572bca29200a3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae34bf1b24c24459aa572bca29200a3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae34bf1b24c24459aa572bca29200a3c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7AKI4w283a2LCxFkbmwx4GPyhc=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.304486+00 2025-12-09 10:15:10.304491+00 11050 HT068FW#VS-D3黄 SPMX-20240815306229 \N \N \N 1 \N [{"file_id": "fed78b10-c569-48d3-b4af-9af31901426d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4684662de4494cdf91d0c13db2c901f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4684662de4494cdf91d0c13db2c901f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4684662de4494cdf91d0c13db2c901f5.jpg", "file_size": 10561, "is_delete": false, "file_type": 1, "original_file_name": "HT068FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4684662de4494cdf91d0c13db2c901f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4684662de4494cdf91d0c13db2c901f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4684662de4494cdf91d0c13db2c901f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4684662de4494cdf91d0c13db2c901f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4684662de4494cdf91d0c13db2c901f5.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQG0Yfdv5P_lZQUeMxqqlh1jucQ=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.306405+00 2025-12-09 10:15:10.306409+00 11051 FHXGPK-批布052-3 SPMX-20240815306224 \N \N \N 1 \N [{"file_id": "16587811-a8d2-4b31-a0cb-7696fae7baca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b189c3ec9ae14834a4dad5e86e0ff693.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b189c3ec9ae14834a4dad5e86e0ff693.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b189c3ec9ae14834a4dad5e86e0ff693.jpg", "file_size": 44091, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布052-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b189c3ec9ae14834a4dad5e86e0ff693.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b189c3ec9ae14834a4dad5e86e0ff693.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b189c3ec9ae14834a4dad5e86e0ff693.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b189c3ec9ae14834a4dad5e86e0ff693.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b189c3ec9ae14834a4dad5e86e0ff693.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9b_PrEc6XeijL5gfPKk1_XZ9u8=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.308128+00 2025-12-09 10:15:10.308132+00 11052 23-2117#A16-领子4XL SPMX-20240815306225 \N \N \N 1 \N [{"file_id": "03b584df-6c8a-464b-bfd7-d4a57d66420d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91a06b9e257f4dc19349dbc3e546e1f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91a06b9e257f4dc19349dbc3e546e1f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91a06b9e257f4dc19349dbc3e546e1f9.jpg", "file_size": 11757, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A16-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a06b9e257f4dc19349dbc3e546e1f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a06b9e257f4dc19349dbc3e546e1f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91a06b9e257f4dc19349dbc3e546e1f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91a06b9e257f4dc19349dbc3e546e1f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91a06b9e257f4dc19349dbc3e546e1f9.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mwj-7sAjbxffABYL7GfcpATsFw=", "createTime": "2024-08-15 14:51:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.309834+00 2025-12-09 10:15:10.309843+00 11053 C422#原版色 SPMX-20240815306232 \N \N \N 1 \N [{"file_id": "d80d505d-59c3-4053-8109-19086cbff781", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58a33401be4244ad935f67aa649e3116.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58a33401be4244ad935f67aa649e3116.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58a33401be4244ad935f67aa649e3116.jpg", "file_size": 56789, "is_delete": false, "file_type": 1, "original_file_name": "C422#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a33401be4244ad935f67aa649e3116.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a33401be4244ad935f67aa649e3116.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58a33401be4244ad935f67aa649e3116.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58a33401be4244ad935f67aa649e3116.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58a33401be4244ad935f67aa649e3116.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POrSZlK9lIPaAZpgnqxW7U98gGs=", "createTime": "2024-08-15 14:51:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.311801+00 2025-12-09 10:15:10.311805+00 11054 LZ1283#背心款3号色 SPMX-20240815306233 \N \N \N 1 \N [{"file_id": "bc6531a4-7fac-4d91-bfa4-5aff3ef298fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b79d76aba3244a8bcb979b8dd9d5b5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b79d76aba3244a8bcb979b8dd9d5b5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b79d76aba3244a8bcb979b8dd9d5b5a.jpg", "file_size": 19254, "is_delete": false, "file_type": 1, "original_file_name": "LZ1283#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b79d76aba3244a8bcb979b8dd9d5b5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b79d76aba3244a8bcb979b8dd9d5b5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b79d76aba3244a8bcb979b8dd9d5b5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b79d76aba3244a8bcb979b8dd9d5b5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b79d76aba3244a8bcb979b8dd9d5b5a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vs3rbVX-hLvF6j7v2EeyBrf7UBs=", "createTime": "2024-08-15 14:51:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.313471+00 2025-12-09 10:15:10.313475+00 11055 LJ9936#S深灰 SPMX-20240815306237 \N \N \N 1 \N [{"file_id": "cb6651e2-bd7c-4657-8af1-f027e38ea7bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2c45c50f02e4c1bad34a64dedb9168b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2c45c50f02e4c1bad34a64dedb9168b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2c45c50f02e4c1bad34a64dedb9168b.jpg", "file_size": 16471, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#S深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c45c50f02e4c1bad34a64dedb9168b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c45c50f02e4c1bad34a64dedb9168b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2c45c50f02e4c1bad34a64dedb9168b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2c45c50f02e4c1bad34a64dedb9168b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2c45c50f02e4c1bad34a64dedb9168b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LG6KlFkjJN-cvqQBo-I8FxfX1Q=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.315157+00 2025-12-09 10:15:10.315161+00 11056 JTSS239FW#VS-D3 SPMX-20240815306236 \N \N \N 1 \N [{"file_id": "dd43ed9b-e205-4b1a-a6d0-c9f9ce24b803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c29110f113ed4e2889c98a450be65d66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c29110f113ed4e2889c98a450be65d66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c29110f113ed4e2889c98a450be65d66.jpg", "file_size": 17825, "is_delete": false, "file_type": 1, "original_file_name": "JTSS239FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c29110f113ed4e2889c98a450be65d66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c29110f113ed4e2889c98a450be65d66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c29110f113ed4e2889c98a450be65d66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c29110f113ed4e2889c98a450be65d66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c29110f113ed4e2889c98a450be65d66.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wXTMy_I2OOJDVgSowBKaX_P_T3M=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.316878+00 2025-12-09 10:15:10.316883+00 11057 23-2117#A1领子 SPMX-20240815306235 \N \N \N 1 \N [{"file_id": "19e74c2d-5614-4a49-be78-5d9333e6dad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c93c6fe3ed54112851f8ce35b87396e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c93c6fe3ed54112851f8ce35b87396e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c93c6fe3ed54112851f8ce35b87396e.jpg", "file_size": 13263, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A1领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c93c6fe3ed54112851f8ce35b87396e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c93c6fe3ed54112851f8ce35b87396e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c93c6fe3ed54112851f8ce35b87396e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c93c6fe3ed54112851f8ce35b87396e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c93c6fe3ed54112851f8ce35b87396e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWKSp6TTojEtQ9K4W1edgVQbE00=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.318569+00 2025-12-09 10:15:10.318573+00 11058 8127#短裤套装上衣 SPMX-20240815306238 \N \N \N 1 \N [{"file_id": "65d50f3a-7bfa-4518-9c48-2399df5e41aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81a0c3b77edd43058061b2fb277cfb98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81a0c3b77edd43058061b2fb277cfb98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81a0c3b77edd43058061b2fb277cfb98.jpg", "file_size": 23358, "is_delete": false, "file_type": 1, "original_file_name": "8127#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0c3b77edd43058061b2fb277cfb98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0c3b77edd43058061b2fb277cfb98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0c3b77edd43058061b2fb277cfb98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81a0c3b77edd43058061b2fb277cfb98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81a0c3b77edd43058061b2fb277cfb98.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KX0-kviTESjqN4ruMt9Idzx_zZk=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.320261+00 2025-12-09 10:15:10.320266+00 11059 23-2117#A2-3XL SPMX-20240815306250 \N \N \N 1 \N [{"file_id": "781e379d-256a-4f5a-b408-66d3e98d9dde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d6774c86c5a4eb4a6eb50e1f2064d99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d6774c86c5a4eb4a6eb50e1f2064d99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d6774c86c5a4eb4a6eb50e1f2064d99.jpg", "file_size": 14753, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6774c86c5a4eb4a6eb50e1f2064d99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6774c86c5a4eb4a6eb50e1f2064d99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6774c86c5a4eb4a6eb50e1f2064d99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d6774c86c5a4eb4a6eb50e1f2064d99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d6774c86c5a4eb4a6eb50e1f2064d99.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_VtwFXAnJVhsE9hAo5Ls2x0c1w=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.321951+00 2025-12-09 10:15:10.321955+00 11060 110#玫红 SPMX-20240815306254 \N \N \N 1 \N [{"file_id": "060f6c52-431b-4454-a2ea-a4cc498eb5f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29b238e6fa93414f9453fdc3e06c1178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29b238e6fa93414f9453fdc3e06c1178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29b238e6fa93414f9453fdc3e06c1178.jpg", "file_size": 23684, "is_delete": false, "file_type": 1, "original_file_name": "110#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b238e6fa93414f9453fdc3e06c1178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b238e6fa93414f9453fdc3e06c1178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29b238e6fa93414f9453fdc3e06c1178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29b238e6fa93414f9453fdc3e06c1178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29b238e6fa93414f9453fdc3e06c1178.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAx8DZi8JTCXzuOzRFXavkVYZB8=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.323926+00 2025-12-09 10:15:10.323931+00 11061 HT068FWE#VS-D3 SPMX-20240815306241 \N \N \N 1 \N [{"file_id": "2b5320f0-7a66-4b44-9106-baf1ea7113f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b5f95f71301415c8b3bdee87b2a8804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b5f95f71301415c8b3bdee87b2a8804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b5f95f71301415c8b3bdee87b2a8804.jpg", "file_size": 12162, "is_delete": false, "file_type": 1, "original_file_name": "HT068FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5f95f71301415c8b3bdee87b2a8804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5f95f71301415c8b3bdee87b2a8804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5f95f71301415c8b3bdee87b2a8804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b5f95f71301415c8b3bdee87b2a8804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b5f95f71301415c8b3bdee87b2a8804.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sTpgUradj8ea0Wn-Bc_1U-D8tM=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.325611+00 2025-12-09 10:15:10.325615+00 11062 DL30763#黄色 SPMX-20240815306248 \N \N \N 1 \N [{"file_id": "2e88539f-1f48-44ad-83d1-b3622cde9751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ac98854e9e945da8e48def7dff618ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ac98854e9e945da8e48def7dff618ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ac98854e9e945da8e48def7dff618ff.jpg", "file_size": 20052, "is_delete": false, "file_type": 1, "original_file_name": "DL30763#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac98854e9e945da8e48def7dff618ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac98854e9e945da8e48def7dff618ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac98854e9e945da8e48def7dff618ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ac98854e9e945da8e48def7dff618ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ac98854e9e945da8e48def7dff618ff.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFt03GLeQonjy3NOz5rFsLFMPLs=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.327298+00 2025-12-09 10:15:10.327303+00 11063 110#彩蓝 SPMX-20240815306243 \N \N \N 1 \N [{"file_id": "db52076f-31aa-416c-851a-a0af49e82077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "920bc5a2c439493ea68218bc8f6dc2d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "920bc5a2c439493ea68218bc8f6dc2d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "920bc5a2c439493ea68218bc8f6dc2d3.jpg", "file_size": 25443, "is_delete": false, "file_type": 1, "original_file_name": "110#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920bc5a2c439493ea68218bc8f6dc2d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920bc5a2c439493ea68218bc8f6dc2d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920bc5a2c439493ea68218bc8f6dc2d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/920bc5a2c439493ea68218bc8f6dc2d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/920bc5a2c439493ea68218bc8f6dc2d3.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7_zrLFwp-vusOYoL3BX6me5Y6I=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.328978+00 2025-12-09 10:15:10.328983+00 11064 DL30763#蓝绿 SPMX-20240815306239 \N \N \N 1 \N [{"file_id": "6836d959-1155-4fc4-80cc-fffca0674745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f8185ee908741ff98e0b1a33631d32e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f8185ee908741ff98e0b1a33631d32e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f8185ee908741ff98e0b1a33631d32e.jpg", "file_size": 21163, "is_delete": false, "file_type": 1, "original_file_name": "DL30763#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8185ee908741ff98e0b1a33631d32e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8185ee908741ff98e0b1a33631d32e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8185ee908741ff98e0b1a33631d32e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f8185ee908741ff98e0b1a33631d32e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f8185ee908741ff98e0b1a33631d32e.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxRCjduuIUrkYb5IU607zB3-wfs=", "createTime": "2024-08-15 14:51:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.330689+00 2025-12-09 10:15:10.330693+00 11065 8127#短裤套装匹布 SPMX-20240815306246 \N \N \N 1 \N [{"file_id": "be3f1f7b-257e-4593-818a-85e2bf6ed22e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35ad0ca377e24172860ff4f2ae4b95a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35ad0ca377e24172860ff4f2ae4b95a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35ad0ca377e24172860ff4f2ae4b95a1.jpg", "file_size": 20348, "is_delete": false, "file_type": 1, "original_file_name": "8127#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ad0ca377e24172860ff4f2ae4b95a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ad0ca377e24172860ff4f2ae4b95a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ad0ca377e24172860ff4f2ae4b95a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35ad0ca377e24172860ff4f2ae4b95a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35ad0ca377e24172860ff4f2ae4b95a1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZqYKJLuFJU6W6DV6zEZWehiYGg=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.332378+00 2025-12-09 10:15:10.332382+00 11066 0003-86FWF#蓝色底 SPMX-20240815306240 \N \N \N 1 \N [{"file_id": "db705376-22a7-4032-bff7-d3d7ab0e499f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aefc95aabdf5451ca6b61c89e943c4b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aefc95aabdf5451ca6b61c89e943c4b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aefc95aabdf5451ca6b61c89e943c4b0.jpg", "file_size": 16550, "is_delete": false, "file_type": 1, "original_file_name": "0003-86FWF#蓝色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefc95aabdf5451ca6b61c89e943c4b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefc95aabdf5451ca6b61c89e943c4b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefc95aabdf5451ca6b61c89e943c4b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aefc95aabdf5451ca6b61c89e943c4b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aefc95aabdf5451ca6b61c89e943c4b0.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N47-ckxV7N_LBrEHQwretf4UfpI=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.334084+00 2025-12-09 10:15:10.334088+00 11067 LJ9936#S白 SPMX-20240815306247 \N \N \N 1 \N [{"file_id": "73b8a1ed-ac84-4b84-b43b-611bb5973a95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8235a95351fa4f91956be4605d79783c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8235a95351fa4f91956be4605d79783c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8235a95351fa4f91956be4605d79783c.jpg", "file_size": 17652, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#S白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8235a95351fa4f91956be4605d79783c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8235a95351fa4f91956be4605d79783c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8235a95351fa4f91956be4605d79783c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8235a95351fa4f91956be4605d79783c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8235a95351fa4f91956be4605d79783c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_ww0tr9IoxT5v4CQ7Oh1eLd6gY=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.336011+00 2025-12-09 10:15:10.336015+00 11068 FHXGPK-批布053-1 SPMX-20240815306244 \N \N \N 1 \N [{"file_id": "bc2cb6ad-ec54-422f-ad41-c271f088703c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b16290fc7fb4458bd81d7076d4c68ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b16290fc7fb4458bd81d7076d4c68ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b16290fc7fb4458bd81d7076d4c68ce.jpg", "file_size": 67599, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布053-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b16290fc7fb4458bd81d7076d4c68ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b16290fc7fb4458bd81d7076d4c68ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b16290fc7fb4458bd81d7076d4c68ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b16290fc7fb4458bd81d7076d4c68ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b16290fc7fb4458bd81d7076d4c68ce.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfWxKFadjPqZXafqKwR87Th3PKI=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.337729+00 2025-12-09 10:15:10.337734+00 11069 JTSS240FW#VS-D3 SPMX-20240815306249 \N \N \N 1 \N [{"file_id": "aeaeb980-9237-495d-9fd5-0e4dfb9a13ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1953612856d48e8bfe51b43e5bc8a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1953612856d48e8bfe51b43e5bc8a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1953612856d48e8bfe51b43e5bc8a43.jpg", "file_size": 13259, "is_delete": false, "file_type": 1, "original_file_name": "JTSS240FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1953612856d48e8bfe51b43e5bc8a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1953612856d48e8bfe51b43e5bc8a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1953612856d48e8bfe51b43e5bc8a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1953612856d48e8bfe51b43e5bc8a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1953612856d48e8bfe51b43e5bc8a43.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jELSaTvKKIrfDe2XN0OdcBr6W_s=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.339467+00 2025-12-09 10:15:10.339471+00 11070 HT069FW#VS-D3 SPMX-20240815306251 \N \N \N 1 \N [{"file_id": "87818aac-a148-47da-ad60-8f90bdfbb134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f76db0f868f1404985dbe51d613d95c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f76db0f868f1404985dbe51d613d95c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f76db0f868f1404985dbe51d613d95c1.jpg", "file_size": 9657, "is_delete": false, "file_type": 1, "original_file_name": "HT069FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76db0f868f1404985dbe51d613d95c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76db0f868f1404985dbe51d613d95c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76db0f868f1404985dbe51d613d95c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f76db0f868f1404985dbe51d613d95c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f76db0f868f1404985dbe51d613d95c1.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7I5XH9cLl9m_pJnHjH5Ui6_mJOY=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.341363+00 2025-12-09 10:15:10.341368+00 11071 C422#橙色 SPMX-20240815306245 \N \N \N 1 \N [{"file_id": "a9867cd4-152c-4d65-9fa8-a1d1f7912723", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0b4f03431454872bde946b4789cdd44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0b4f03431454872bde946b4789cdd44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0b4f03431454872bde946b4789cdd44.jpg", "file_size": 55271, "is_delete": false, "file_type": 1, "original_file_name": "C422#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b4f03431454872bde946b4789cdd44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b4f03431454872bde946b4789cdd44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b4f03431454872bde946b4789cdd44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0b4f03431454872bde946b4789cdd44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0b4f03431454872bde946b4789cdd44.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n9ZqEWuyzt39Jsnob_EqSra1hZw=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.343452+00 2025-12-09 10:15:10.343458+00 11072 LZ1283#背心款4号色 SPMX-20240815306242 \N \N \N 1 \N [{"file_id": "76b1c8e3-a0f8-412d-9951-e40cb0180e41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45057853c51f484c80de328a8ada01f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45057853c51f484c80de328a8ada01f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45057853c51f484c80de328a8ada01f2.jpg", "file_size": 18840, "is_delete": false, "file_type": 1, "original_file_name": "LZ1283#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45057853c51f484c80de328a8ada01f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45057853c51f484c80de328a8ada01f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45057853c51f484c80de328a8ada01f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45057853c51f484c80de328a8ada01f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45057853c51f484c80de328a8ada01f2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8WDIAqn7IwBSaXM1y44xrvx3YWQ=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.345485+00 2025-12-09 10:15:10.34549+00 11073 0003-86FWF#黑底 SPMX-20240815306252 \N \N \N 1 \N [{"file_id": "4e846e4e-ba40-4b95-9fd3-82f89cd8a62e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5806c857218c47d0a9f94cc1bcb6c402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5806c857218c47d0a9f94cc1bcb6c402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5806c857218c47d0a9f94cc1bcb6c402.jpg", "file_size": 16806, "is_delete": false, "file_type": 1, "original_file_name": "0003-86FWF#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5806c857218c47d0a9f94cc1bcb6c402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5806c857218c47d0a9f94cc1bcb6c402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5806c857218c47d0a9f94cc1bcb6c402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5806c857218c47d0a9f94cc1bcb6c402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5806c857218c47d0a9f94cc1bcb6c402.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZMDFhyR068x2ijYR-PBB6KR6_G8=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.347458+00 2025-12-09 10:15:10.347462+00 11074 LZ1283#背心款5号色 SPMX-20240815306253 \N \N \N 1 \N [{"file_id": "789d5fce-3a03-416f-a1e8-64a7f1d3cc71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "355050665d9747e7b65ad9c92f5cf993.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "355050665d9747e7b65ad9c92f5cf993.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "355050665d9747e7b65ad9c92f5cf993.jpg", "file_size": 19699, "is_delete": false, "file_type": 1, "original_file_name": "LZ1283#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355050665d9747e7b65ad9c92f5cf993.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355050665d9747e7b65ad9c92f5cf993.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/355050665d9747e7b65ad9c92f5cf993.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/355050665d9747e7b65ad9c92f5cf993.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/355050665d9747e7b65ad9c92f5cf993.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZSiZN8fATFoNAQWqpxo5qHDv2E=", "createTime": "2024-08-15 14:51:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.3492+00 2025-12-09 10:15:10.349205+00 11075 DL30764#亮黄 SPMX-20240815306262 \N \N \N 1 \N [{"file_id": "680ad790-1496-4eb9-ab37-0b0a6ac682aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b9d508071eb4d1495fd411beefeef8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b9d508071eb4d1495fd411beefeef8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b9d508071eb4d1495fd411beefeef8b.jpg", "file_size": 23375, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9d508071eb4d1495fd411beefeef8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9d508071eb4d1495fd411beefeef8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9d508071eb4d1495fd411beefeef8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b9d508071eb4d1495fd411beefeef8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b9d508071eb4d1495fd411beefeef8b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gj99fTnoZNARWcILOm_fKt6LQSI=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.351389+00 2025-12-09 10:15:10.351395+00 11076 0003-89FWF#杏粉 SPMX-20240815306260 \N \N \N 1 \N [{"file_id": "79855090-a1e4-4d4c-a450-eac2d7f5f3cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "219d4b7dd5c5494192c8002fff0a2561.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "219d4b7dd5c5494192c8002fff0a2561.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "219d4b7dd5c5494192c8002fff0a2561.jpg", "file_size": 25438, "is_delete": false, "file_type": 1, "original_file_name": "0003-89FWF#杏粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219d4b7dd5c5494192c8002fff0a2561.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219d4b7dd5c5494192c8002fff0a2561.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219d4b7dd5c5494192c8002fff0a2561.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/219d4b7dd5c5494192c8002fff0a2561.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/219d4b7dd5c5494192c8002fff0a2561.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2t8kYv_nyTfEWLOJQsqyJmN981k=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.353502+00 2025-12-09 10:15:10.353507+00 11077 JTSS241FW#VS-D3 SPMX-20240815306261 \N \N \N 1 \N [{"file_id": "9f8c1200-ddcf-43c3-890e-7de845644984", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0715e7eb5dc24b728962fb54d71fee5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0715e7eb5dc24b728962fb54d71fee5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0715e7eb5dc24b728962fb54d71fee5c.jpg", "file_size": 26044, "is_delete": false, "file_type": 1, "original_file_name": "JTSS241FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0715e7eb5dc24b728962fb54d71fee5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0715e7eb5dc24b728962fb54d71fee5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0715e7eb5dc24b728962fb54d71fee5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0715e7eb5dc24b728962fb54d71fee5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0715e7eb5dc24b728962fb54d71fee5c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwYdkyMXe0nwK0aqFFXt93TidrA=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.355521+00 2025-12-09 10:15:10.355525+00 11078 LJ9936#S蓝 SPMX-20240815306257 \N \N \N 1 \N [{"file_id": "3d0fe6f7-3ec7-4ddd-a704-6c6ad394d091", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a96258ca79342bf9abe79ffc0896eed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a96258ca79342bf9abe79ffc0896eed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a96258ca79342bf9abe79ffc0896eed.jpg", "file_size": 17384, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#S蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a96258ca79342bf9abe79ffc0896eed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a96258ca79342bf9abe79ffc0896eed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a96258ca79342bf9abe79ffc0896eed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a96258ca79342bf9abe79ffc0896eed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a96258ca79342bf9abe79ffc0896eed.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:exn6ssBcZnbSvjP9gQJ2BCxPo0w=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.357469+00 2025-12-09 10:15:10.357474+00 11079 C422#玫红 SPMX-20240815306259 \N \N \N 1 \N [{"file_id": "21e81208-d790-4326-b568-ad66c8706703", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "246e448c88fe4a31a3e5ebd624f60738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "246e448c88fe4a31a3e5ebd624f60738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "246e448c88fe4a31a3e5ebd624f60738.jpg", "file_size": 52916, "is_delete": false, "file_type": 1, "original_file_name": "C422#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e448c88fe4a31a3e5ebd624f60738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e448c88fe4a31a3e5ebd624f60738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e448c88fe4a31a3e5ebd624f60738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/246e448c88fe4a31a3e5ebd624f60738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/246e448c88fe4a31a3e5ebd624f60738.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRSeIaduTLsQYp71Hb8t_EXUyfo=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.359515+00 2025-12-09 10:15:10.359519+00 11080 HT069FWE#VS-D3 SPMX-20240815306263 \N \N \N 1 \N [{"file_id": "c2b74328-5045-48d2-99e1-6bc1554bcf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e55da09760d4031add7db8ec1105e6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e55da09760d4031add7db8ec1105e6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e55da09760d4031add7db8ec1105e6b.jpg", "file_size": 13049, "is_delete": false, "file_type": 1, "original_file_name": "HT069FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55da09760d4031add7db8ec1105e6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55da09760d4031add7db8ec1105e6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55da09760d4031add7db8ec1105e6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e55da09760d4031add7db8ec1105e6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e55da09760d4031add7db8ec1105e6b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E1_Bj63iHLjKp19lLZGZXszN9lU=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.361464+00 2025-12-09 10:15:10.361469+00 11081 FHXGPK-批布053-2 SPMX-20240815306255 \N \N \N 1 \N [{"file_id": "deca1bf0-a99e-422a-9f78-20055ceff167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b464b896df74b708ad6fdca88d498ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b464b896df74b708ad6fdca88d498ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b464b896df74b708ad6fdca88d498ff.jpg", "file_size": 68421, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布053-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b464b896df74b708ad6fdca88d498ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b464b896df74b708ad6fdca88d498ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b464b896df74b708ad6fdca88d498ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b464b896df74b708ad6fdca88d498ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b464b896df74b708ad6fdca88d498ff.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRIDNikfMrJ8mNRJ6YEr11NSziU=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.363698+00 2025-12-09 10:15:10.363706+00 11082 8127#短裤套装裤子 SPMX-20240815306256 \N \N \N 1 \N [{"file_id": "85d0f7fb-7a55-408a-a839-9412b4ecdfdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f4f34845d734e22960ff2004f365aad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f4f34845d734e22960ff2004f365aad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f4f34845d734e22960ff2004f365aad.jpg", "file_size": 23814, "is_delete": false, "file_type": 1, "original_file_name": "8127#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4f34845d734e22960ff2004f365aad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4f34845d734e22960ff2004f365aad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4f34845d734e22960ff2004f365aad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f4f34845d734e22960ff2004f365aad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f4f34845d734e22960ff2004f365aad.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8CEOIAOsWImfF9XII9SJD-Imao=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.365896+00 2025-12-09 10:15:10.3659+00 11083 23-2117#A2-4XL SPMX-20240815306258 \N \N \N 1 \N [{"file_id": "64a20cfe-37d1-4167-9be4-797dc9b77c6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49b1fd61014240fa922af39e4cfde34b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49b1fd61014240fa922af39e4cfde34b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49b1fd61014240fa922af39e4cfde34b.jpg", "file_size": 14112, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b1fd61014240fa922af39e4cfde34b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b1fd61014240fa922af39e4cfde34b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b1fd61014240fa922af39e4cfde34b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49b1fd61014240fa922af39e4cfde34b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49b1fd61014240fa922af39e4cfde34b.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bELXwTOc_OTYFBuxs-xa-iY6uKQ=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.367768+00 2025-12-09 10:15:10.367773+00 11084 JTSS242FW#VS-D3 SPMX-20240815306272 \N \N \N 1 \N [{"file_id": "f79b7d82-4f96-4449-94b4-32a724f4ab37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0de65a5912946ff929d0351cec15515.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0de65a5912946ff929d0351cec15515.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0de65a5912946ff929d0351cec15515.jpg", "file_size": 18470, "is_delete": false, "file_type": 1, "original_file_name": "JTSS242FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0de65a5912946ff929d0351cec15515.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0de65a5912946ff929d0351cec15515.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0de65a5912946ff929d0351cec15515.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0de65a5912946ff929d0351cec15515.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0de65a5912946ff929d0351cec15515.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZUCSmsZYUjVZ2eyeIm6vQnt0Y8=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.369602+00 2025-12-09 10:15:10.369607+00 11085 8128#短裤套装上衣 SPMX-20240815306264 \N \N \N 1 \N [{"file_id": "6e2ad69f-1653-4958-aa50-55d53c5ffe75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg", "file_size": 22769, "is_delete": false, "file_type": 1, "original_file_name": "8128#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9da9b0f2f1ee4c05bbb271a4b89da5f5.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jRyhf3YZ_opYlS9Zd9gr9HyBBg=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.37159+00 2025-12-09 10:15:10.371595+00 11086 LJ9936#S黑 SPMX-20240815306267 \N \N \N 1 \N [{"file_id": "53a810df-9385-4f96-862a-fc74f7d16e75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f183b3b42bb4097a9ea7060aaee6c9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f183b3b42bb4097a9ea7060aaee6c9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f183b3b42bb4097a9ea7060aaee6c9a.jpg", "file_size": 20092, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#S黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f183b3b42bb4097a9ea7060aaee6c9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f183b3b42bb4097a9ea7060aaee6c9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f183b3b42bb4097a9ea7060aaee6c9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f183b3b42bb4097a9ea7060aaee6c9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f183b3b42bb4097a9ea7060aaee6c9a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPAdxphX49pLRGS2OjXFbkRKwak=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.373829+00 2025-12-09 10:15:10.373834+00 11087 23-2117#A2-领子3XL SPMX-20240815306268 \N \N \N 1 \N [{"file_id": "bb57d50e-639b-4e03-8a37-1be5f69555f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b0efe5f9ef142589ec50816d44abf5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b0efe5f9ef142589ec50816d44abf5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b0efe5f9ef142589ec50816d44abf5c.jpg", "file_size": 11919, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0efe5f9ef142589ec50816d44abf5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0efe5f9ef142589ec50816d44abf5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0efe5f9ef142589ec50816d44abf5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b0efe5f9ef142589ec50816d44abf5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b0efe5f9ef142589ec50816d44abf5c.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sklUuydDmfxoah9U_EQ0ZuB6fEg=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.376184+00 2025-12-09 10:15:10.37619+00 11088 DL30764#墨绿 SPMX-20240815306270 \N \N \N 1 \N [{"file_id": "eddcfb56-805c-43c4-8cbc-b232b6f0c9f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44c37bae742d43b689b329ecea0add27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44c37bae742d43b689b329ecea0add27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44c37bae742d43b689b329ecea0add27.jpg", "file_size": 26110, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c37bae742d43b689b329ecea0add27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c37bae742d43b689b329ecea0add27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c37bae742d43b689b329ecea0add27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44c37bae742d43b689b329ecea0add27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44c37bae742d43b689b329ecea0add27.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFf4L_TtQBGz-0rmLiAIMsDEglQ=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.378076+00 2025-12-09 10:15:10.37808+00 11089 0003-89FWF#粉紫 SPMX-20240815306269 \N \N \N 1 \N [{"file_id": "7391f7df-dcfe-4cb6-b38f-d78f6a9e3170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "379569984bd440159d60c47359365950.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "379569984bd440159d60c47359365950.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "379569984bd440159d60c47359365950.jpg", "file_size": 26010, "is_delete": false, "file_type": 1, "original_file_name": "0003-89FWF#粉紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379569984bd440159d60c47359365950.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379569984bd440159d60c47359365950.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/379569984bd440159d60c47359365950.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/379569984bd440159d60c47359365950.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/379569984bd440159d60c47359365950.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwhy1V5ybmsQ8uoJNGWsvRgSY5I=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.379903+00 2025-12-09 10:15:10.379909+00 11090 C422#绿色 SPMX-20240815306271 \N \N \N 1 \N [{"file_id": "97e3f42b-d05d-4769-a61b-1b8f8bf69b93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6639bfa46db4d29b186b32c732970b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6639bfa46db4d29b186b32c732970b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6639bfa46db4d29b186b32c732970b0.jpg", "file_size": 54073, "is_delete": false, "file_type": 1, "original_file_name": "C422#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6639bfa46db4d29b186b32c732970b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6639bfa46db4d29b186b32c732970b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6639bfa46db4d29b186b32c732970b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6639bfa46db4d29b186b32c732970b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6639bfa46db4d29b186b32c732970b0.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0XUYjvqtOw6FFYu9C5CsIICbW7E=", "createTime": "2024-08-15 14:51:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.381722+00 2025-12-09 10:15:10.381726+00 11091 1101#23#粉色 SPMX-20240815306266 \N \N \N 1 \N [{"file_id": "6a832c48-6c45-4556-9df7-0661a12f63d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5903a5ea33ac4ed7916eea27b244978a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5903a5ea33ac4ed7916eea27b244978a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5903a5ea33ac4ed7916eea27b244978a.jpg", "file_size": 26007, "is_delete": false, "file_type": 1, "original_file_name": "1101#23#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5903a5ea33ac4ed7916eea27b244978a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5903a5ea33ac4ed7916eea27b244978a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5903a5ea33ac4ed7916eea27b244978a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5903a5ea33ac4ed7916eea27b244978a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5903a5ea33ac4ed7916eea27b244978a.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jCCW0lyBL3EZ6jBUyeaEizzxMkw=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.383532+00 2025-12-09 10:15:10.383536+00 11092 FHXGPK-批布053-3 SPMX-20240815306265 \N \N \N 1 \N [{"file_id": "3964452a-7a11-438f-aee2-222f419e4f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a4f0af5a32e4d4b95c651389b6d50cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a4f0af5a32e4d4b95c651389b6d50cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a4f0af5a32e4d4b95c651389b6d50cb.jpg", "file_size": 76842, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布053-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4f0af5a32e4d4b95c651389b6d50cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4f0af5a32e4d4b95c651389b6d50cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4f0af5a32e4d4b95c651389b6d50cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a4f0af5a32e4d4b95c651389b6d50cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a4f0af5a32e4d4b95c651389b6d50cb.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MN1MBahN2DxW6br1cEbCZck74c=", "createTime": "2024-08-15 14:51:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.385522+00 2025-12-09 10:15:10.385527+00 11093 LZ1284#背心款1号色 SPMX-20240815306274 \N \N \N 1 \N [{"file_id": "6843dfa9-5d07-4f09-bd31-8dff55590c86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7c44b0e8a164ac281ea14b67e53cdef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7c44b0e8a164ac281ea14b67e53cdef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7c44b0e8a164ac281ea14b67e53cdef.jpg", "file_size": 17669, "is_delete": false, "file_type": 1, "original_file_name": "LZ1284#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c44b0e8a164ac281ea14b67e53cdef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c44b0e8a164ac281ea14b67e53cdef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c44b0e8a164ac281ea14b67e53cdef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7c44b0e8a164ac281ea14b67e53cdef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7c44b0e8a164ac281ea14b67e53cdef.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVxUJhQF8Z43gEgA2te0o2nxq90=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:10.387429+00 2025-12-09 10:15:10.387433+00 11094 HT070FW#VS-D3墨绿 SPMX-20240815306273 \N \N \N 1 \N [{"file_id": "44c65321-c38c-4dd0-a685-ac7b1882f295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74230bf5787743eaaff95c6e5b1bcae2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74230bf5787743eaaff95c6e5b1bcae2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74230bf5787743eaaff95c6e5b1bcae2.jpg", "file_size": 15901, "is_delete": false, "file_type": 1, "original_file_name": "HT070FW#VS-D3墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74230bf5787743eaaff95c6e5b1bcae2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74230bf5787743eaaff95c6e5b1bcae2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74230bf5787743eaaff95c6e5b1bcae2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74230bf5787743eaaff95c6e5b1bcae2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74230bf5787743eaaff95c6e5b1bcae2.jpg?e=1765361709&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1KqoxjWF2tgl8nHG1e3dyQwU-8=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.121579+00 2025-12-09 10:15:11.12159+00 11095 0003-89FWF#紫绿 SPMX-20240815306277 \N \N \N 1 \N [{"file_id": "067bc138-ee36-4aae-a25d-818d7cadd0b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eede8a6bdd094ff383206a3800b73636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eede8a6bdd094ff383206a3800b73636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eede8a6bdd094ff383206a3800b73636.jpg", "file_size": 26219, "is_delete": false, "file_type": 1, "original_file_name": "0003-89FWF#紫绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eede8a6bdd094ff383206a3800b73636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eede8a6bdd094ff383206a3800b73636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eede8a6bdd094ff383206a3800b73636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eede8a6bdd094ff383206a3800b73636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eede8a6bdd094ff383206a3800b73636.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ma5cK1QYPyPu_A2cWqkHYOCafpk=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.124438+00 2025-12-09 10:15:11.124443+00 11096 8128#短裤套装匹布 SPMX-20240815306281 \N \N \N 1 \N [{"file_id": "0c8077ea-9b39-4ef8-833e-742fee81350e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3d1e06573fa4a9e8cc5b1779a374d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3d1e06573fa4a9e8cc5b1779a374d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3d1e06573fa4a9e8cc5b1779a374d6b.jpg", "file_size": 22490, "is_delete": false, "file_type": 1, "original_file_name": "8128#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1e06573fa4a9e8cc5b1779a374d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1e06573fa4a9e8cc5b1779a374d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1e06573fa4a9e8cc5b1779a374d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3d1e06573fa4a9e8cc5b1779a374d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3d1e06573fa4a9e8cc5b1779a374d6b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8w-dR6YPwf4r8-ICKwBLeLMxOOo=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.12656+00 2025-12-09 10:15:11.126566+00 11097 LJ9936#XL浅灰 SPMX-20240815306276 \N \N \N 1 \N [{"file_id": "029e6a5a-b8dd-4ecb-b733-e3ab670e7ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4bef1f560964c1c9b03464ad65cd127.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4bef1f560964c1c9b03464ad65cd127.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4bef1f560964c1c9b03464ad65cd127.jpg", "file_size": 13890, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#XL浅灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bef1f560964c1c9b03464ad65cd127.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bef1f560964c1c9b03464ad65cd127.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bef1f560964c1c9b03464ad65cd127.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4bef1f560964c1c9b03464ad65cd127.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4bef1f560964c1c9b03464ad65cd127.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptxI_CbzbZamfDzZS5SvmuvcvL0=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.128473+00 2025-12-09 10:15:11.128478+00 11098 FHXGPK-批布053-4 SPMX-20240815306275 \N \N \N 1 \N [{"file_id": "b8e27d17-8a6a-4c36-9eb6-ea7d1eb3330b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e716cb6da3444412ac6dc271902437b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e716cb6da3444412ac6dc271902437b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e716cb6da3444412ac6dc271902437b7.jpg", "file_size": 69916, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布053-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e716cb6da3444412ac6dc271902437b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e716cb6da3444412ac6dc271902437b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e716cb6da3444412ac6dc271902437b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e716cb6da3444412ac6dc271902437b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e716cb6da3444412ac6dc271902437b7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ErFxSrLCjEr9nx1utbxGNywePQ=", "createTime": "2024-08-15 14:51:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.130273+00 2025-12-09 10:15:11.130278+00 11099 JTSS243FW#VS-D3 SPMX-20240815306279 \N \N \N 1 \N [{"file_id": "6183f16d-0768-4b88-89b1-47b0cf310784", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5884727688e941ea9acbfc12c33fef16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5884727688e941ea9acbfc12c33fef16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5884727688e941ea9acbfc12c33fef16.jpg", "file_size": 18984, "is_delete": false, "file_type": 1, "original_file_name": "JTSS243FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5884727688e941ea9acbfc12c33fef16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5884727688e941ea9acbfc12c33fef16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5884727688e941ea9acbfc12c33fef16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5884727688e941ea9acbfc12c33fef16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5884727688e941ea9acbfc12c33fef16.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5pvWP8gXvwhP1QDbDfamL6io8Q=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.132288+00 2025-12-09 10:15:11.132293+00 11100 23-2117#A2-领子4XL SPMX-20240815306280 \N \N \N 1 \N [{"file_id": "a6227b0d-abc9-4301-a79c-3dc7be6e11f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "913b6ba74414472fa6306efb9e036d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "913b6ba74414472fa6306efb9e036d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "913b6ba74414472fa6306efb9e036d8b.jpg", "file_size": 11499, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913b6ba74414472fa6306efb9e036d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913b6ba74414472fa6306efb9e036d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913b6ba74414472fa6306efb9e036d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/913b6ba74414472fa6306efb9e036d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/913b6ba74414472fa6306efb9e036d8b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRTMU9jihBt55T7uexQHfnSHweY=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.13429+00 2025-12-09 10:15:11.134295+00 11101 HT070FW#VS-D3宝蓝 SPMX-20240815306282 \N \N \N 1 \N [{"file_id": "b2ff38c5-b4e8-4aee-a152-5f6907e0bc75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "987fbcfc67f44c74919cad5dd53aafc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "987fbcfc67f44c74919cad5dd53aafc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "987fbcfc67f44c74919cad5dd53aafc4.jpg", "file_size": 23098, "is_delete": false, "file_type": 1, "original_file_name": "HT070FW#VS-D3宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987fbcfc67f44c74919cad5dd53aafc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987fbcfc67f44c74919cad5dd53aafc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987fbcfc67f44c74919cad5dd53aafc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/987fbcfc67f44c74919cad5dd53aafc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/987fbcfc67f44c74919cad5dd53aafc4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APvy1vHBsNsS-bGkNDdh1TXrR28=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.136301+00 2025-12-09 10:15:11.136306+00 11102 DL30764#彩兰 SPMX-20240815306278 \N \N \N 1 \N [{"file_id": "1ffaa905-761a-4a61-8d87-be264193fa08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76e41c2f81ba47b1896a763aa7b4cda2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76e41c2f81ba47b1896a763aa7b4cda2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76e41c2f81ba47b1896a763aa7b4cda2.jpg", "file_size": 27547, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e41c2f81ba47b1896a763aa7b4cda2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e41c2f81ba47b1896a763aa7b4cda2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e41c2f81ba47b1896a763aa7b4cda2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76e41c2f81ba47b1896a763aa7b4cda2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76e41c2f81ba47b1896a763aa7b4cda2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EcYfnU7QMcGlQE8BskoDLmLYUa4=", "createTime": "2024-08-15 14:51:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.138309+00 2025-12-09 10:15:11.138313+00 11103 1101#40#湖绿 SPMX-20240815306284 \N \N \N 1 \N [{"file_id": "8db3089c-0c7b-431b-8f37-155a65bad520", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2856545f9660477c87e8f9d41b5c7a69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2856545f9660477c87e8f9d41b5c7a69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2856545f9660477c87e8f9d41b5c7a69.jpg", "file_size": 77479, "is_delete": false, "file_type": 1, "original_file_name": "1101#40#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2856545f9660477c87e8f9d41b5c7a69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2856545f9660477c87e8f9d41b5c7a69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2856545f9660477c87e8f9d41b5c7a69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2856545f9660477c87e8f9d41b5c7a69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2856545f9660477c87e8f9d41b5c7a69.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dMcOyxkW9Bq53FPDgallepcA4s=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.140352+00 2025-12-09 10:15:11.140356+00 11104 LZ1284#背心款2号色 SPMX-20240815306283 \N \N \N 1 \N [{"file_id": "3c67600a-2eb4-4de3-bd24-10c2b0e07137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f56957e604d40f9bc2df863c5095d0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f56957e604d40f9bc2df863c5095d0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f56957e604d40f9bc2df863c5095d0c.jpg", "file_size": 18052, "is_delete": false, "file_type": 1, "original_file_name": "LZ1284#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f56957e604d40f9bc2df863c5095d0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f56957e604d40f9bc2df863c5095d0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f56957e604d40f9bc2df863c5095d0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f56957e604d40f9bc2df863c5095d0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f56957e604d40f9bc2df863c5095d0c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdP43n_0728GNnLp-5z4BapshAM=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.142352+00 2025-12-09 10:15:11.142356+00 11105 C422#蓝色 SPMX-20240815306285 \N \N \N 1 \N [{"file_id": "11384ca1-42c6-43f1-b902-20bd50f75fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2310eeb3a1444cc08f197d6f77d8f84d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2310eeb3a1444cc08f197d6f77d8f84d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2310eeb3a1444cc08f197d6f77d8f84d.jpg", "file_size": 56894, "is_delete": false, "file_type": 1, "original_file_name": "C422#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2310eeb3a1444cc08f197d6f77d8f84d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2310eeb3a1444cc08f197d6f77d8f84d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2310eeb3a1444cc08f197d6f77d8f84d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2310eeb3a1444cc08f197d6f77d8f84d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2310eeb3a1444cc08f197d6f77d8f84d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pI95uY_1ay_918qGc2ZKBCUWXpo=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.144329+00 2025-12-09 10:15:11.144334+00 11106 DL30764#彩蓝 SPMX-20240815306290 \N \N \N 1 \N [{"file_id": "08956d4c-8a50-4362-824d-6f5f8b29c74a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4280f75607c848c6a34d3cf11063b586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4280f75607c848c6a34d3cf11063b586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4280f75607c848c6a34d3cf11063b586.jpg", "file_size": 27275, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280f75607c848c6a34d3cf11063b586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280f75607c848c6a34d3cf11063b586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4280f75607c848c6a34d3cf11063b586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4280f75607c848c6a34d3cf11063b586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4280f75607c848c6a34d3cf11063b586.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96ahMixUkppaLHEAGU7ZR1EEcYo=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.146326+00 2025-12-09 10:15:11.14633+00 11107 8128#短裤套装裤子 SPMX-20240815306292 \N \N \N 1 \N [{"file_id": "3dbfd799-4394-414f-9298-81b4dc129777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b5ee673b01a4d21833fa51497b1b1d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b5ee673b01a4d21833fa51497b1b1d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b5ee673b01a4d21833fa51497b1b1d7.jpg", "file_size": 21588, "is_delete": false, "file_type": 1, "original_file_name": "8128#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5ee673b01a4d21833fa51497b1b1d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5ee673b01a4d21833fa51497b1b1d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5ee673b01a4d21833fa51497b1b1d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b5ee673b01a4d21833fa51497b1b1d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b5ee673b01a4d21833fa51497b1b1d7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9IEWnx9U_e5DreW6vWNNavTMz0=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.148355+00 2025-12-09 10:15:11.14836+00 11108 LJ9936#XL深灰 SPMX-20240815306289 \N \N \N 1 \N [{"file_id": "7cf0a9f2-8bae-4ef3-9055-5854e3b1242d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4aeef0cc5254a12ba2f148ea523d855.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4aeef0cc5254a12ba2f148ea523d855.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4aeef0cc5254a12ba2f148ea523d855.jpg", "file_size": 15412, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#XL深灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aeef0cc5254a12ba2f148ea523d855.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aeef0cc5254a12ba2f148ea523d855.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4aeef0cc5254a12ba2f148ea523d855.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4aeef0cc5254a12ba2f148ea523d855.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4aeef0cc5254a12ba2f148ea523d855.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTLLV9Mrgmse-o4X-QtrdPmgDPY=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.150348+00 2025-12-09 10:15:11.150353+00 11109 23-2117#A2领子 SPMX-20240815306288 \N \N \N 1 \N [{"file_id": "d3ca33dd-5a92-4f77-86e0-a6f92758c7e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f6757ecb6442059de4ffd6aa46355e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f6757ecb6442059de4ffd6aa46355e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f6757ecb6442059de4ffd6aa46355e.jpg", "file_size": 13424, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A2领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f6757ecb6442059de4ffd6aa46355e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f6757ecb6442059de4ffd6aa46355e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f6757ecb6442059de4ffd6aa46355e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f6757ecb6442059de4ffd6aa46355e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f6757ecb6442059de4ffd6aa46355e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMbUvtHfvDJx0FTZniWVsb1CG1Q=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.152626+00 2025-12-09 10:15:11.152631+00 11110 0003-89FWF#红蓝 SPMX-20240815306286 \N \N \N 1 \N [{"file_id": "ae60b49b-d571-41b5-8354-f24d417f5104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f20abe312a4954b9ddb641116dd172.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f20abe312a4954b9ddb641116dd172.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f20abe312a4954b9ddb641116dd172.jpg", "file_size": 26455, "is_delete": false, "file_type": 1, "original_file_name": "0003-89FWF#红蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f20abe312a4954b9ddb641116dd172.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f20abe312a4954b9ddb641116dd172.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f20abe312a4954b9ddb641116dd172.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f20abe312a4954b9ddb641116dd172.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f20abe312a4954b9ddb641116dd172.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9P1cUeLkQyCb1SDqU9clqFXhtM=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.154925+00 2025-12-09 10:15:11.15493+00 11111 FHXGPK-批布054-1 SPMX-20240815306291 \N \N \N 1 \N [{"file_id": "cad12ac4-e997-4b42-968c-51371324df5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae526402f11f4e8ab1160c9adf3459b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae526402f11f4e8ab1160c9adf3459b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae526402f11f4e8ab1160c9adf3459b7.jpg", "file_size": 55360, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布054-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae526402f11f4e8ab1160c9adf3459b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae526402f11f4e8ab1160c9adf3459b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae526402f11f4e8ab1160c9adf3459b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae526402f11f4e8ab1160c9adf3459b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae526402f11f4e8ab1160c9adf3459b7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67izQ8ZD-U0imdWvRPS9qB9Gomk=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.156997+00 2025-12-09 10:15:11.157002+00 11112 1101#墨绿 SPMX-20240815306294 \N \N \N 1 \N [{"file_id": "efed8c4d-5ba6-4fb2-8bf2-014e51f0f9a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "551e56df0d9a4b05befadf29ac185e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "551e56df0d9a4b05befadf29ac185e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "551e56df0d9a4b05befadf29ac185e34.jpg", "file_size": 22267, "is_delete": false, "file_type": 1, "original_file_name": "1101#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551e56df0d9a4b05befadf29ac185e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551e56df0d9a4b05befadf29ac185e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551e56df0d9a4b05befadf29ac185e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/551e56df0d9a4b05befadf29ac185e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/551e56df0d9a4b05befadf29ac185e34.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXydh3caEm1AwdkZxc4DClusFPs=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.15903+00 2025-12-09 10:15:11.159034+00 11113 JTSS244FW#VS-D3 SPMX-20240815306293 \N \N \N 1 \N [{"file_id": "dbfa21dc-29a5-4c40-a4d6-cabcf4c612e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c839a5956ef4adeb263416fba7108f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c839a5956ef4adeb263416fba7108f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c839a5956ef4adeb263416fba7108f7.jpg", "file_size": 31114, "is_delete": false, "file_type": 1, "original_file_name": "JTSS244FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c839a5956ef4adeb263416fba7108f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c839a5956ef4adeb263416fba7108f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c839a5956ef4adeb263416fba7108f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c839a5956ef4adeb263416fba7108f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c839a5956ef4adeb263416fba7108f7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fWM4k05VLcgLTWe0uzfy6NYs6zQ=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.161071+00 2025-12-09 10:15:11.161075+00 11114 HT070FW#VS-D3红 SPMX-20240815306287 \N \N \N 1 \N [{"file_id": "9eda39ae-7e0e-4460-8060-23aadeba55ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4befaf5f16cb46afb0a3bb473e49cec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4befaf5f16cb46afb0a3bb473e49cec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4befaf5f16cb46afb0a3bb473e49cec0.jpg", "file_size": 22556, "is_delete": false, "file_type": 1, "original_file_name": "HT070FW#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4befaf5f16cb46afb0a3bb473e49cec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4befaf5f16cb46afb0a3bb473e49cec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4befaf5f16cb46afb0a3bb473e49cec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4befaf5f16cb46afb0a3bb473e49cec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4befaf5f16cb46afb0a3bb473e49cec0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RewBHfqyLWxvLwMbrNX0m85bTM0=", "createTime": "2024-08-15 14:51:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.163207+00 2025-12-09 10:15:11.163212+00 11115 C422#黑色 SPMX-20240815306295 \N \N \N 1 \N [{"file_id": "f0cbedf2-82cd-4690-8a98-c52aad00786f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0fdb55089ec4465897a7ca014907154.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0fdb55089ec4465897a7ca014907154.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0fdb55089ec4465897a7ca014907154.jpg", "file_size": 48897, "is_delete": false, "file_type": 1, "original_file_name": "C422#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fdb55089ec4465897a7ca014907154.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fdb55089ec4465897a7ca014907154.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fdb55089ec4465897a7ca014907154.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0fdb55089ec4465897a7ca014907154.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0fdb55089ec4465897a7ca014907154.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RV1f1eqXlFEz9BPJJNwXkifvv8=", "createTime": "2024-08-15 14:51:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.165542+00 2025-12-09 10:15:11.165547+00 11116 DL30764#果绿 SPMX-20240815306303 \N \N \N 1 \N [{"file_id": "3b39cd6f-4711-44e0-b886-7677d691cda4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7fea8a98f9e44ec99e3d2a61155dad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7fea8a98f9e44ec99e3d2a61155dad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7fea8a98f9e44ec99e3d2a61155dad8.jpg", "file_size": 24771, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fea8a98f9e44ec99e3d2a61155dad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fea8a98f9e44ec99e3d2a61155dad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7fea8a98f9e44ec99e3d2a61155dad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7fea8a98f9e44ec99e3d2a61155dad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7fea8a98f9e44ec99e3d2a61155dad8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jL0KfH_S94MNoxAzvW3PTVLCa38=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.167811+00 2025-12-09 10:15:11.167816+00 11117 JTSS245FW#VS-D3 SPMX-20240815306304 \N \N \N 1 \N [{"file_id": "04a576bb-e247-4a9d-8ad3-4ea1729fc4ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f36484db594e4bbc2700c46b55bd79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f36484db594e4bbc2700c46b55bd79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f36484db594e4bbc2700c46b55bd79.jpg", "file_size": 21680, "is_delete": false, "file_type": 1, "original_file_name": "JTSS245FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f36484db594e4bbc2700c46b55bd79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f36484db594e4bbc2700c46b55bd79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f36484db594e4bbc2700c46b55bd79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f36484db594e4bbc2700c46b55bd79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f36484db594e4bbc2700c46b55bd79.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTO0V1cdUw30j-_gWIU_bw6m_Pc=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.169581+00 2025-12-09 10:15:11.169585+00 11118 23-2117#A3-3XL SPMX-20240815306297 \N \N \N 1 \N [{"file_id": "920a72b2-f953-4cf3-ab20-9de1cdb6ccbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24e31a3af0a34a40a720b850d676421e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24e31a3af0a34a40a720b850d676421e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24e31a3af0a34a40a720b850d676421e.jpg", "file_size": 15476, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e31a3af0a34a40a720b850d676421e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e31a3af0a34a40a720b850d676421e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e31a3af0a34a40a720b850d676421e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24e31a3af0a34a40a720b850d676421e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24e31a3af0a34a40a720b850d676421e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LP43sm13v925UwguD6yOMrl5BWQ=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.171553+00 2025-12-09 10:15:11.171558+00 11119 LZ1284#背心款3号色 SPMX-20240815306298 \N \N \N 1 \N [{"file_id": "5508118d-c1ce-4a65-a382-19e2659e2a7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edc819f0ec6c47e49dd0c5374d7fc317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edc819f0ec6c47e49dd0c5374d7fc317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edc819f0ec6c47e49dd0c5374d7fc317.jpg", "file_size": 16991, "is_delete": false, "file_type": 1, "original_file_name": "LZ1284#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc819f0ec6c47e49dd0c5374d7fc317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc819f0ec6c47e49dd0c5374d7fc317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc819f0ec6c47e49dd0c5374d7fc317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edc819f0ec6c47e49dd0c5374d7fc317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edc819f0ec6c47e49dd0c5374d7fc317.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRzLf2gB85Y0VYQvXjj87Kaiw3Y=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.173504+00 2025-12-09 10:15:11.173508+00 11120 FHXGPK-批布054-2 SPMX-20240815306299 \N \N \N 1 \N [{"file_id": "dd9549c7-f1fe-4dbb-abb3-3a0d8c80e63c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6a7f2c95a6b4373897f5a7026bdde36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6a7f2c95a6b4373897f5a7026bdde36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6a7f2c95a6b4373897f5a7026bdde36.jpg", "file_size": 55621, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布054-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7f2c95a6b4373897f5a7026bdde36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7f2c95a6b4373897f5a7026bdde36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a7f2c95a6b4373897f5a7026bdde36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6a7f2c95a6b4373897f5a7026bdde36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6a7f2c95a6b4373897f5a7026bdde36.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzfNzDitKBZPy0fqqrpC8yNrdGo=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.175491+00 2025-12-09 10:15:11.175495+00 11121 8129#橘红 SPMX-20240815306302 \N \N \N 1 \N [{"file_id": "6ffef843-2190-44a5-9214-7ffe9ac0dd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2b0287ab4b44cd6a158b88e9947a50b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2b0287ab4b44cd6a158b88e9947a50b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2b0287ab4b44cd6a158b88e9947a50b.jpg", "file_size": 20109, "is_delete": false, "file_type": 1, "original_file_name": "8129#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b0287ab4b44cd6a158b88e9947a50b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b0287ab4b44cd6a158b88e9947a50b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b0287ab4b44cd6a158b88e9947a50b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2b0287ab4b44cd6a158b88e9947a50b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2b0287ab4b44cd6a158b88e9947a50b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zd9nZeDfyladY4Yt2XdbGFYF92w=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.177436+00 2025-12-09 10:15:11.177441+00 11122 1101#彩兰 SPMX-20240815306305 \N \N \N 1 \N [{"file_id": "23aaca67-7462-4eb6-a582-caa4d13ae9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1751a5d1fef84ea5878d29f07a458cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1751a5d1fef84ea5878d29f07a458cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1751a5d1fef84ea5878d29f07a458cb6.jpg", "file_size": 21255, "is_delete": false, "file_type": 1, "original_file_name": "1101#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1751a5d1fef84ea5878d29f07a458cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1751a5d1fef84ea5878d29f07a458cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1751a5d1fef84ea5878d29f07a458cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1751a5d1fef84ea5878d29f07a458cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1751a5d1fef84ea5878d29f07a458cb6.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXcwILsIbrhS5gsEYbz6sk5cCYQ=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.179404+00 2025-12-09 10:15:11.179408+00 11123 0003-89FWF#蓝咖 SPMX-20240815306296 \N \N \N 1 \N [{"file_id": "e3e9b34d-57ae-406c-8f08-d99492243e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99b0ebca87ab421b9097bf0182e57cf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99b0ebca87ab421b9097bf0182e57cf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99b0ebca87ab421b9097bf0182e57cf2.jpg", "file_size": 25933, "is_delete": false, "file_type": 1, "original_file_name": "0003-89FWF#蓝咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99b0ebca87ab421b9097bf0182e57cf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99b0ebca87ab421b9097bf0182e57cf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99b0ebca87ab421b9097bf0182e57cf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99b0ebca87ab421b9097bf0182e57cf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99b0ebca87ab421b9097bf0182e57cf2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fcEPwtjSq_8heoiPefLMiqbovQ=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.181311+00 2025-12-09 10:15:11.181316+00 11124 LJ9936#XL白 SPMX-20240815306301 \N \N \N 1 \N [{"file_id": "8e03b0cb-df52-43a9-907c-b34c50b7ca4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82ec824c0a9f412c96fc88f6abcb303d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82ec824c0a9f412c96fc88f6abcb303d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82ec824c0a9f412c96fc88f6abcb303d.jpg", "file_size": 16789, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ec824c0a9f412c96fc88f6abcb303d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ec824c0a9f412c96fc88f6abcb303d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ec824c0a9f412c96fc88f6abcb303d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82ec824c0a9f412c96fc88f6abcb303d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82ec824c0a9f412c96fc88f6abcb303d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAvrqkovES0EZnuZeeVpx0g2NQ8=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.183053+00 2025-12-09 10:15:11.183057+00 11125 HT070FW#VS-D3黄 SPMX-20240815306300 \N \N \N 1 \N [{"file_id": "62227b16-1314-48ad-bc59-e3941842f029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8679dffdcb5d4ae985706d58112c95a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8679dffdcb5d4ae985706d58112c95a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8679dffdcb5d4ae985706d58112c95a4.jpg", "file_size": 21203, "is_delete": false, "file_type": 1, "original_file_name": "HT070FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8679dffdcb5d4ae985706d58112c95a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8679dffdcb5d4ae985706d58112c95a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8679dffdcb5d4ae985706d58112c95a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8679dffdcb5d4ae985706d58112c95a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8679dffdcb5d4ae985706d58112c95a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fR23BtpyhC6Lpcg_iTVhHH8SO1s=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.18491+00 2025-12-09 10:15:11.184916+00 11126 DL30764#枣红 SPMX-20240815306314 \N \N \N 1 \N [{"file_id": "45f9c8ba-1f43-496a-860f-55d075668ea9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0d87b90ff75469f96f926e445dfc6a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0d87b90ff75469f96f926e445dfc6a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0d87b90ff75469f96f926e445dfc6a1.jpg", "file_size": 25928, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d87b90ff75469f96f926e445dfc6a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d87b90ff75469f96f926e445dfc6a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0d87b90ff75469f96f926e445dfc6a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0d87b90ff75469f96f926e445dfc6a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0d87b90ff75469f96f926e445dfc6a1.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFyNSBCTUKDGRYjKCnfeChdtV8s=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.18686+00 2025-12-09 10:15:11.186864+00 11127 LJ9936#XL蓝 SPMX-20240815306315 \N \N \N 1 \N [{"file_id": "92a33a9c-74bc-48d2-8cb1-2b078c44a029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c350afc8c29454f84f0aed2ebf8545d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c350afc8c29454f84f0aed2ebf8545d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c350afc8c29454f84f0aed2ebf8545d.jpg", "file_size": 16276, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#XL蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c350afc8c29454f84f0aed2ebf8545d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c350afc8c29454f84f0aed2ebf8545d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c350afc8c29454f84f0aed2ebf8545d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c350afc8c29454f84f0aed2ebf8545d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c350afc8c29454f84f0aed2ebf8545d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OOYMcl7wlyZPbG3vj6JCzLJPcRA=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.188673+00 2025-12-09 10:15:11.188678+00 11128 0003-8FWE#VS-D3 SPMX-20240815306307 \N \N \N 1 \N [{"file_id": "b16aa003-87a4-4d87-9e40-dbe8b34a7287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaf296cfe9de45dfbbf6624ed022e4b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaf296cfe9de45dfbbf6624ed022e4b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaf296cfe9de45dfbbf6624ed022e4b4.jpg", "file_size": 11918, "is_delete": false, "file_type": 1, "original_file_name": "0003-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaf296cfe9de45dfbbf6624ed022e4b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaf296cfe9de45dfbbf6624ed022e4b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaf296cfe9de45dfbbf6624ed022e4b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaf296cfe9de45dfbbf6624ed022e4b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaf296cfe9de45dfbbf6624ed022e4b4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnTjTgvzdyBbZtHMIKF_9odGy0U=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.190711+00 2025-12-09 10:15:11.190716+00 11129 1101#枣红 SPMX-20240815306316 \N \N \N 1 \N [{"file_id": "c8ebb32a-2591-4c25-bb1f-79f976e7eeed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b808e790a87f414aa36b71b2ec9c277e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b808e790a87f414aa36b71b2ec9c277e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b808e790a87f414aa36b71b2ec9c277e.jpg", "file_size": 21234, "is_delete": false, "file_type": 1, "original_file_name": "1101#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b808e790a87f414aa36b71b2ec9c277e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b808e790a87f414aa36b71b2ec9c277e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b808e790a87f414aa36b71b2ec9c277e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b808e790a87f414aa36b71b2ec9c277e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b808e790a87f414aa36b71b2ec9c277e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EnBkxWOlsdaj4DzIfqOHLPJWwM=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.192683+00 2025-12-09 10:15:11.192687+00 11130 C425#玫红 SPMX-20240815306306 \N \N \N 1 \N [{"file_id": "c14e8bb9-e682-439f-8771-347df3c0d19d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dd4ba91f55945a99ace3a64bc15fb33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dd4ba91f55945a99ace3a64bc15fb33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dd4ba91f55945a99ace3a64bc15fb33.jpg", "file_size": 68236, "is_delete": false, "file_type": 1, "original_file_name": "C425#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dd4ba91f55945a99ace3a64bc15fb33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dd4ba91f55945a99ace3a64bc15fb33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dd4ba91f55945a99ace3a64bc15fb33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dd4ba91f55945a99ace3a64bc15fb33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dd4ba91f55945a99ace3a64bc15fb33.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8yT6dGScLsw7PNyJBvmkv4HuQ4=", "createTime": "2024-08-15 14:51:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.194673+00 2025-12-09 10:15:11.194677+00 11131 JTSS246FW#VS-D3 SPMX-20240815306313 \N \N \N 1 \N [{"file_id": "0079fbc1-e359-44e6-96d7-3557770423ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c953005ad5248899599c8099dbc70c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c953005ad5248899599c8099dbc70c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c953005ad5248899599c8099dbc70c2.jpg", "file_size": 31254, "is_delete": false, "file_type": 1, "original_file_name": "JTSS246FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c953005ad5248899599c8099dbc70c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c953005ad5248899599c8099dbc70c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c953005ad5248899599c8099dbc70c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c953005ad5248899599c8099dbc70c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c953005ad5248899599c8099dbc70c2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-EuvnfnW89Sd5wvpxIu6ardgIg=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.196897+00 2025-12-09 10:15:11.196902+00 11132 LZ1284#背心款4号色 SPMX-20240815306308 \N \N \N 1 \N [{"file_id": "4be26302-75d3-4f8b-adc6-54611b83f7ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c532bd9b74b45728dc238de3b9c143a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c532bd9b74b45728dc238de3b9c143a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c532bd9b74b45728dc238de3b9c143a.jpg", "file_size": 17844, "is_delete": false, "file_type": 1, "original_file_name": "LZ1284#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c532bd9b74b45728dc238de3b9c143a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c532bd9b74b45728dc238de3b9c143a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c532bd9b74b45728dc238de3b9c143a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c532bd9b74b45728dc238de3b9c143a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c532bd9b74b45728dc238de3b9c143a.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GdGXA-SW_Wj1-VQ2sOL2DacmH5A=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.19891+00 2025-12-09 10:15:11.198916+00 11133 23-2117#A3-4XL SPMX-20240815306309 \N \N \N 1 \N [{"file_id": "3d784cc7-ed3d-4015-aab4-7ddbd1aa7228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7c44ce08ce74826a532d9dd20dfa9d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7c44ce08ce74826a532d9dd20dfa9d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7c44ce08ce74826a532d9dd20dfa9d8.jpg", "file_size": 14707, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c44ce08ce74826a532d9dd20dfa9d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c44ce08ce74826a532d9dd20dfa9d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7c44ce08ce74826a532d9dd20dfa9d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7c44ce08ce74826a532d9dd20dfa9d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7c44ce08ce74826a532d9dd20dfa9d8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOc6wtnSOiFzMwuZp7HpMpdyG4U=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.200732+00 2025-12-09 10:15:11.200737+00 11134 FHXGPK-批布054-3 SPMX-20240815306311 \N \N \N 1 \N [{"file_id": "c11b7c47-82c4-4644-a6df-83344abff956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9764d8923994dad882c72fc3ad813b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9764d8923994dad882c72fc3ad813b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9764d8923994dad882c72fc3ad813b5.jpg", "file_size": 57560, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布054-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9764d8923994dad882c72fc3ad813b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9764d8923994dad882c72fc3ad813b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9764d8923994dad882c72fc3ad813b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9764d8923994dad882c72fc3ad813b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9764d8923994dad882c72fc3ad813b5.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fXfQ7rRSgLquPTDztjaEh5xnSwU=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.202763+00 2025-12-09 10:15:11.202768+00 11135 HT070FWE#VS-D3 SPMX-20240815306310 \N \N \N 1 \N [{"file_id": "39ebad69-b39e-4e38-963b-2378b6bf380c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a400aa229c844d4385e153b7050894ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a400aa229c844d4385e153b7050894ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a400aa229c844d4385e153b7050894ef.jpg", "file_size": 19086, "is_delete": false, "file_type": 1, "original_file_name": "HT070FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a400aa229c844d4385e153b7050894ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a400aa229c844d4385e153b7050894ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a400aa229c844d4385e153b7050894ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a400aa229c844d4385e153b7050894ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a400aa229c844d4385e153b7050894ef.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h_0hLcyzJ2ui_TEwTJ1JfwKnnhc=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.204742+00 2025-12-09 10:15:11.204748+00 11136 8129#玫红 SPMX-20240815306312 \N \N \N 1 \N [{"file_id": "b1884dbd-2fc1-4325-9235-bb489a7f1bd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "507c8f254ad34e9c93899192aa0e7922.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "507c8f254ad34e9c93899192aa0e7922.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "507c8f254ad34e9c93899192aa0e7922.jpg", "file_size": 18732, "is_delete": false, "file_type": 1, "original_file_name": "8129#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c8f254ad34e9c93899192aa0e7922.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c8f254ad34e9c93899192aa0e7922.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c8f254ad34e9c93899192aa0e7922.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/507c8f254ad34e9c93899192aa0e7922.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/507c8f254ad34e9c93899192aa0e7922.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fy4CDDYsrTZhsBITrc-96gsivzE=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.206648+00 2025-12-09 10:15:11.206653+00 11137 JTSS247FW#VS-D3 SPMX-20240815306324 \N \N \N 1 \N [{"file_id": "2a9f55b9-d9a6-4444-8d67-bb67f20535f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96af2f6320042ab8d86e5b74a14a9e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96af2f6320042ab8d86e5b74a14a9e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96af2f6320042ab8d86e5b74a14a9e0.jpg", "file_size": 16012, "is_delete": false, "file_type": 1, "original_file_name": "JTSS247FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96af2f6320042ab8d86e5b74a14a9e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96af2f6320042ab8d86e5b74a14a9e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96af2f6320042ab8d86e5b74a14a9e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96af2f6320042ab8d86e5b74a14a9e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96af2f6320042ab8d86e5b74a14a9e0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:loJaObf39rOTObz6Tm1yDBp2FAw=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.208655+00 2025-12-09 10:15:11.20866+00 11138 FHXGPK-批布054-4 SPMX-20240815306325 \N \N \N 1 \N [{"file_id": "9982d748-21e1-4705-8386-103549c78e7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03a7b27634ec423081f2b45f49fd43d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03a7b27634ec423081f2b45f49fd43d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03a7b27634ec423081f2b45f49fd43d4.jpg", "file_size": 63316, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布054-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a7b27634ec423081f2b45f49fd43d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a7b27634ec423081f2b45f49fd43d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a7b27634ec423081f2b45f49fd43d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03a7b27634ec423081f2b45f49fd43d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03a7b27634ec423081f2b45f49fd43d4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4fAdVG40mxRfhKATZdtDTLC2S8=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.210639+00 2025-12-09 10:15:11.210643+00 11139 HT071FW#VS-D3 SPMX-20240815306320 \N \N \N 1 \N [{"file_id": "26fb59e7-8ac7-4014-a511-6e53d622da57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "470f0a7335ab489a99053e07153ba59b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "470f0a7335ab489a99053e07153ba59b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "470f0a7335ab489a99053e07153ba59b.jpg", "file_size": 16592, "is_delete": false, "file_type": 1, "original_file_name": "HT071FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470f0a7335ab489a99053e07153ba59b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470f0a7335ab489a99053e07153ba59b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/470f0a7335ab489a99053e07153ba59b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/470f0a7335ab489a99053e07153ba59b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/470f0a7335ab489a99053e07153ba59b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmRjHZ6Bm9HCEXglpclQF8nujJg=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.212663+00 2025-12-09 10:15:11.212667+00 11140 LJ9936#XL黑 SPMX-20240815306323 \N \N \N 1 \N [{"file_id": "d11c03fd-ee51-4988-9a0e-863a97351deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3afc01bf2ed4d8e81a479b11cd9026d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3afc01bf2ed4d8e81a479b11cd9026d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3afc01bf2ed4d8e81a479b11cd9026d.jpg", "file_size": 19368, "is_delete": false, "file_type": 1, "original_file_name": "LJ9936#XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3afc01bf2ed4d8e81a479b11cd9026d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3afc01bf2ed4d8e81a479b11cd9026d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3afc01bf2ed4d8e81a479b11cd9026d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3afc01bf2ed4d8e81a479b11cd9026d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3afc01bf2ed4d8e81a479b11cd9026d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCVTGp8DqykT5eSx5Xiem4Q7lZ4=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.214621+00 2025-12-09 10:15:11.214625+00 11141 8129#白色 SPMX-20240815306322 \N \N \N 1 \N [{"file_id": "6103ad89-3796-4181-b079-161dd7185eb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ce0c63469864ddb964de987e761567a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ce0c63469864ddb964de987e761567a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ce0c63469864ddb964de987e761567a.jpg", "file_size": 20409, "is_delete": false, "file_type": 1, "original_file_name": "8129#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce0c63469864ddb964de987e761567a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce0c63469864ddb964de987e761567a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce0c63469864ddb964de987e761567a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ce0c63469864ddb964de987e761567a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ce0c63469864ddb964de987e761567a.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ys-3gjjzB32NO6fTQ_7GSQFSJD4=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.216639+00 2025-12-09 10:15:11.216643+00 11142 C425#白色 SPMX-20240815306317 \N \N \N 1 \N [{"file_id": "da0e6bfb-34be-4084-87ee-53473c45c0f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2fcb3aa4da341fab99f3ab7bca35c71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2fcb3aa4da341fab99f3ab7bca35c71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2fcb3aa4da341fab99f3ab7bca35c71.jpg", "file_size": 57649, "is_delete": false, "file_type": 1, "original_file_name": "C425#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fcb3aa4da341fab99f3ab7bca35c71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fcb3aa4da341fab99f3ab7bca35c71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2fcb3aa4da341fab99f3ab7bca35c71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2fcb3aa4da341fab99f3ab7bca35c71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2fcb3aa4da341fab99f3ab7bca35c71.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdJS60PqrszfLC7zpTle_EXaajs=", "createTime": "2024-08-15 14:51:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.218651+00 2025-12-09 10:15:11.218656+00 11143 LZ1284#背心款5号色 SPMX-20240815306319 \N \N \N 1 \N [{"file_id": "adbf8749-4fe0-470d-8279-b114c5d3ce35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b83d967d7bd4e4fa7225eebfdfae6c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b83d967d7bd4e4fa7225eebfdfae6c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b83d967d7bd4e4fa7225eebfdfae6c2.jpg", "file_size": 16608, "is_delete": false, "file_type": 1, "original_file_name": "LZ1284#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b83d967d7bd4e4fa7225eebfdfae6c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b83d967d7bd4e4fa7225eebfdfae6c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b83d967d7bd4e4fa7225eebfdfae6c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b83d967d7bd4e4fa7225eebfdfae6c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b83d967d7bd4e4fa7225eebfdfae6c2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7lSee5a6811TDgQ1b4luy7mENo=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.220634+00 2025-12-09 10:15:11.220638+00 11144 0003-8FWF#V5曲线 SPMX-20240815306318 \N \N \N 1 \N [{"file_id": "0a909be5-ea91-4fca-9ad0-2821d29e80d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ab88e93174d4eecb62b5135bce945b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ab88e93174d4eecb62b5135bce945b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ab88e93174d4eecb62b5135bce945b0.jpg", "file_size": 12221, "is_delete": false, "file_type": 1, "original_file_name": "0003-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab88e93174d4eecb62b5135bce945b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab88e93174d4eecb62b5135bce945b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ab88e93174d4eecb62b5135bce945b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ab88e93174d4eecb62b5135bce945b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ab88e93174d4eecb62b5135bce945b0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9jHG7Ml2RQ5SQguDKj4kNOYypk=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.22268+00 2025-12-09 10:15:11.222685+00 11145 23-2117#A3-领子3XL SPMX-20240815306321 \N \N \N 1 \N [{"file_id": "0fb39bbf-79ce-49ef-8473-18c00f60051e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "493e484d1043412aa0b273042e7045ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "493e484d1043412aa0b273042e7045ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "493e484d1043412aa0b273042e7045ab.jpg", "file_size": 11541, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/493e484d1043412aa0b273042e7045ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/493e484d1043412aa0b273042e7045ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/493e484d1043412aa0b273042e7045ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/493e484d1043412aa0b273042e7045ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/493e484d1043412aa0b273042e7045ab.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEfYALJeZicQ5_pItbQnx01kG1M=", "createTime": "2024-08-15 14:51:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.224674+00 2025-12-09 10:15:11.224678+00 11146 DL30764#浅粉 SPMX-20240815306326 \N \N \N 1 \N [{"file_id": "be483ca7-edc4-4c6c-88e5-55c0aca9de0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9969c6137bd489ab94369880faa9c9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9969c6137bd489ab94369880faa9c9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9969c6137bd489ab94369880faa9c9c.jpg", "file_size": 21296, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9969c6137bd489ab94369880faa9c9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9969c6137bd489ab94369880faa9c9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9969c6137bd489ab94369880faa9c9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9969c6137bd489ab94369880faa9c9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9969c6137bd489ab94369880faa9c9c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oUJTmB-A6E0NOON4QVkaDSZM1w=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.226739+00 2025-12-09 10:15:11.226744+00 11147 FHXGPK-批布055-1 SPMX-20240815306331 \N \N \N 1 \N [{"file_id": "ffa6b37f-2e52-4210-9531-4a4d19a20b35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee945a4c57254a2295e9eaf9d8a9bcdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee945a4c57254a2295e9eaf9d8a9bcdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee945a4c57254a2295e9eaf9d8a9bcdc.jpg", "file_size": 48088, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布055-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee945a4c57254a2295e9eaf9d8a9bcdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee945a4c57254a2295e9eaf9d8a9bcdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee945a4c57254a2295e9eaf9d8a9bcdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee945a4c57254a2295e9eaf9d8a9bcdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee945a4c57254a2295e9eaf9d8a9bcdc.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXqZCjmeKDlPyse0gS1Iq7SZRtc=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.228737+00 2025-12-09 10:15:11.228741+00 11148 LJ9982FW#浅绿2XL VS-D3 SPMX-20240815306327 \N \N \N 1 \N [{"file_id": "27c4f4b0-6842-410d-9f84-482e47356884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd28eb23e1fa4247997db76143453ef2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd28eb23e1fa4247997db76143453ef2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd28eb23e1fa4247997db76143453ef2.jpg", "file_size": 13153, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#浅绿2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd28eb23e1fa4247997db76143453ef2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd28eb23e1fa4247997db76143453ef2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd28eb23e1fa4247997db76143453ef2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd28eb23e1fa4247997db76143453ef2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd28eb23e1fa4247997db76143453ef2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9IZhc97uXnOZhRW-4Uw2Wh3ypJU=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.230758+00 2025-12-09 10:15:11.230762+00 11149 JTSS248FW#VS-D3 SPMX-20240815306330 \N \N \N 1 \N [{"file_id": "a4f0c6d6-7421-41f7-836f-a0e12155c529", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg", "file_size": 21036, "is_delete": false, "file_type": 1, "original_file_name": "JTSS248FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab9e92a12abb4c04ba07c1b6f6d3eb38.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Om18_QyGQy4O-T-s6fSGwrbASWg=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.232756+00 2025-12-09 10:15:11.232761+00 11150 1101#橘色 SPMX-20240815306328 \N \N \N 1 \N [{"file_id": "fb9d48d6-52a6-41ee-aa63-19411217a296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d6f4fbbfcc24a60b45691baf18fb0b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d6f4fbbfcc24a60b45691baf18fb0b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d6f4fbbfcc24a60b45691baf18fb0b2.jpg", "file_size": 75999, "is_delete": false, "file_type": 1, "original_file_name": "1101#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6f4fbbfcc24a60b45691baf18fb0b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6f4fbbfcc24a60b45691baf18fb0b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6f4fbbfcc24a60b45691baf18fb0b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d6f4fbbfcc24a60b45691baf18fb0b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d6f4fbbfcc24a60b45691baf18fb0b2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JMzSPxk3A4Pz7fdxP4ROktSTfYY=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.234808+00 2025-12-09 10:15:11.234813+00 11151 HT071FW#VS-D3黄底 SPMX-20240815306329 \N \N \N 1 \N [{"file_id": "e0b5fb40-be1d-4acd-888f-dceeb4289a47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6b19fafff514dcb838e9e1fa20dc29d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6b19fafff514dcb838e9e1fa20dc29d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6b19fafff514dcb838e9e1fa20dc29d.jpg", "file_size": 10766, "is_delete": false, "file_type": 1, "original_file_name": "HT071FW#VS-D3黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b19fafff514dcb838e9e1fa20dc29d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b19fafff514dcb838e9e1fa20dc29d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b19fafff514dcb838e9e1fa20dc29d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6b19fafff514dcb838e9e1fa20dc29d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6b19fafff514dcb838e9e1fa20dc29d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggOqqfRS7cR4Vk1IdqO-2Dyp-68=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.236822+00 2025-12-09 10:15:11.236826+00 11152 LZ1285#背心款1号色 SPMX-20240815306333 \N \N \N 1 \N [{"file_id": "8842f4cf-d78a-4a7f-afce-0ba29897f92a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c86ace0a70694d1a92567068b6f9a5d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c86ace0a70694d1a92567068b6f9a5d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c86ace0a70694d1a92567068b6f9a5d4.jpg", "file_size": 16016, "is_delete": false, "file_type": 1, "original_file_name": "LZ1285#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ace0a70694d1a92567068b6f9a5d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ace0a70694d1a92567068b6f9a5d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ace0a70694d1a92567068b6f9a5d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c86ace0a70694d1a92567068b6f9a5d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c86ace0a70694d1a92567068b6f9a5d4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziyDIlnCQuPsdlWCuZ8otL6uTNk=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.238911+00 2025-12-09 10:15:11.238916+00 11153 23-2117#A3-领子4XL SPMX-20240815306334 \N \N \N 1 \N [{"file_id": "170385d9-d7d6-4857-b20a-ea575d68e2db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe846384f9064a1c9002364765b3594d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe846384f9064a1c9002364765b3594d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe846384f9064a1c9002364765b3594d.jpg", "file_size": 12046, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe846384f9064a1c9002364765b3594d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe846384f9064a1c9002364765b3594d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe846384f9064a1c9002364765b3594d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe846384f9064a1c9002364765b3594d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe846384f9064a1c9002364765b3594d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCtByAu-Shd2q-1aarfLujf2Lec=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.240917+00 2025-12-09 10:15:11.240922+00 11154 LJ9982FW#浅绿L VS-D3 SPMX-20240815306339 \N \N \N 1 \N [{"file_id": "e2a6087a-3fd6-4ff0-9b1e-4494c72f484f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4efbc80cd6e74973a74abd90a178b9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4efbc80cd6e74973a74abd90a178b9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4efbc80cd6e74973a74abd90a178b9a4.jpg", "file_size": 14597, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#浅绿L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efbc80cd6e74973a74abd90a178b9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efbc80cd6e74973a74abd90a178b9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efbc80cd6e74973a74abd90a178b9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4efbc80cd6e74973a74abd90a178b9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4efbc80cd6e74973a74abd90a178b9a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DeQaiqDXdHo8QvzKwotKblOakhc=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.242933+00 2025-12-09 10:15:11.242937+00 11155 8129#短裤套装匹布 SPMX-20240815306335 \N \N \N 1 \N [{"file_id": "87d2aabe-9182-4dde-b664-34210e272500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd29001ec5254ee59089446daa1f4ebe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd29001ec5254ee59089446daa1f4ebe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd29001ec5254ee59089446daa1f4ebe.jpg", "file_size": 23592, "is_delete": false, "file_type": 1, "original_file_name": "8129#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd29001ec5254ee59089446daa1f4ebe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd29001ec5254ee59089446daa1f4ebe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd29001ec5254ee59089446daa1f4ebe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd29001ec5254ee59089446daa1f4ebe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd29001ec5254ee59089446daa1f4ebe.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vs-gdK-FG9-ppM37ce6XOEu1GQI=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.245058+00 2025-12-09 10:15:11.245063+00 11156 DL30764#玫红 SPMX-20240815306337 \N \N \N 1 \N [{"file_id": "ccf4a367-bd8b-44b3-be10-9d9d91b6208a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "156e6f84c0664b73b0250ff070bebfa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "156e6f84c0664b73b0250ff070bebfa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "156e6f84c0664b73b0250ff070bebfa7.jpg", "file_size": 24211, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156e6f84c0664b73b0250ff070bebfa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156e6f84c0664b73b0250ff070bebfa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/156e6f84c0664b73b0250ff070bebfa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/156e6f84c0664b73b0250ff070bebfa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/156e6f84c0664b73b0250ff070bebfa7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pha_x9HwDhu1ZcWaR0rPzILLS0c=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.24727+00 2025-12-09 10:15:11.247275+00 11157 0003-90FWF#V5曲线 SPMX-20240815306332 \N \N \N 1 \N [{"file_id": "ecfe072d-f52d-4009-9d66-7c2db17a850c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b0430c26d848f99e5d17d5ea36a121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b0430c26d848f99e5d17d5ea36a121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b0430c26d848f99e5d17d5ea36a121.jpg", "file_size": 15063, "is_delete": false, "file_type": 1, "original_file_name": "0003-90FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b0430c26d848f99e5d17d5ea36a121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b0430c26d848f99e5d17d5ea36a121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b0430c26d848f99e5d17d5ea36a121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b0430c26d848f99e5d17d5ea36a121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b0430c26d848f99e5d17d5ea36a121.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L629e0Ud65Oxyg-4KA-vZ5KK6lg=", "createTime": "2024-08-15 14:51:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.249429+00 2025-12-09 10:15:11.249433+00 11158 C425#绿色 SPMX-20240815306336 \N \N \N 1 \N [{"file_id": "1e139685-e334-4753-95a1-af9885018e11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77eec7b4d235403c99bc9875708544a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77eec7b4d235403c99bc9875708544a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77eec7b4d235403c99bc9875708544a3.jpg", "file_size": 69760, "is_delete": false, "file_type": 1, "original_file_name": "C425#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eec7b4d235403c99bc9875708544a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eec7b4d235403c99bc9875708544a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eec7b4d235403c99bc9875708544a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77eec7b4d235403c99bc9875708544a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77eec7b4d235403c99bc9875708544a3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QrVxiMbDNPEyFKRQCW8oeqago04=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.251312+00 2025-12-09 10:15:11.251316+00 11159 FHXGPK-批布055-2 SPMX-20240815306340 \N \N \N 1 \N [{"file_id": "33f6efc9-d24a-4c67-a528-5d7f34b789a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fc669ed7543404ebdeddb615943150a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fc669ed7543404ebdeddb615943150a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fc669ed7543404ebdeddb615943150a.jpg", "file_size": 48500, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布055-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc669ed7543404ebdeddb615943150a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc669ed7543404ebdeddb615943150a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc669ed7543404ebdeddb615943150a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fc669ed7543404ebdeddb615943150a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fc669ed7543404ebdeddb615943150a.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVXB9pS1o_sWN2qml2iJVdWSv3Y=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.253188+00 2025-12-09 10:15:11.253193+00 11160 HT071FWE#白色VS-D3 SPMX-20240815306338 \N \N \N 1 \N [{"file_id": "8a3cab52-36e4-44fc-8930-e36da7c2fc2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72a25444ce4242e9ba560dc0cdbff8b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72a25444ce4242e9ba560dc0cdbff8b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72a25444ce4242e9ba560dc0cdbff8b4.jpg", "file_size": 12158, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#白色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a25444ce4242e9ba560dc0cdbff8b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a25444ce4242e9ba560dc0cdbff8b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a25444ce4242e9ba560dc0cdbff8b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72a25444ce4242e9ba560dc0cdbff8b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72a25444ce4242e9ba560dc0cdbff8b4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:facn2f5TU40XZZ9JtM3wQR-87G8=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.255325+00 2025-12-09 10:15:11.25533+00 11161 8129#绿色 SPMX-20240815306345 \N \N \N 1 \N [{"file_id": "ca6b3f5f-9bae-4204-9342-9e35d86931eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89ca684d91c84ef690ade4d57585333b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89ca684d91c84ef690ade4d57585333b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89ca684d91c84ef690ade4d57585333b.jpg", "file_size": 19693, "is_delete": false, "file_type": 1, "original_file_name": "8129#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ca684d91c84ef690ade4d57585333b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ca684d91c84ef690ade4d57585333b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ca684d91c84ef690ade4d57585333b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89ca684d91c84ef690ade4d57585333b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89ca684d91c84ef690ade4d57585333b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2QeimJ_Ut-u9Rc1Qio6JyHUjWY=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.257331+00 2025-12-09 10:15:11.257336+00 11162 DL30764#红色 SPMX-20240815306350 \N \N \N 1 \N [{"file_id": "e9a12cbe-2055-46eb-94b6-b752b1d42b02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f76883321c2d4987a5a33841576f3fdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f76883321c2d4987a5a33841576f3fdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f76883321c2d4987a5a33841576f3fdd.jpg", "file_size": 26666, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76883321c2d4987a5a33841576f3fdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76883321c2d4987a5a33841576f3fdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76883321c2d4987a5a33841576f3fdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f76883321c2d4987a5a33841576f3fdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f76883321c2d4987a5a33841576f3fdd.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06AqtnORDy3h_EabxyyNpOKG69I=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.259253+00 2025-12-09 10:15:11.259258+00 11163 0003-91FWF#紫色 SPMX-20240815306344 \N \N \N 1 \N [{"file_id": "248421c4-0e78-461c-af07-8b49daba6af1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d53032b12ca49d4a6158381af73c07c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d53032b12ca49d4a6158381af73c07c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d53032b12ca49d4a6158381af73c07c.jpg", "file_size": 22602, "is_delete": false, "file_type": 1, "original_file_name": "0003-91FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d53032b12ca49d4a6158381af73c07c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d53032b12ca49d4a6158381af73c07c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d53032b12ca49d4a6158381af73c07c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d53032b12ca49d4a6158381af73c07c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d53032b12ca49d4a6158381af73c07c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R27TgrEGcnhL4clJAAHMozBGu6I=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.261367+00 2025-12-09 10:15:11.261372+00 11164 1101#湖绿 SPMX-20240815306342 \N \N \N 1 \N [{"file_id": "fed4fc3e-b1da-44ae-b1a1-8fc78bc63d34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "677b1c7676924b3d94e68e76940bdb03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "677b1c7676924b3d94e68e76940bdb03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "677b1c7676924b3d94e68e76940bdb03.jpg", "file_size": 23948, "is_delete": false, "file_type": 1, "original_file_name": "1101#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677b1c7676924b3d94e68e76940bdb03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677b1c7676924b3d94e68e76940bdb03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677b1c7676924b3d94e68e76940bdb03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/677b1c7676924b3d94e68e76940bdb03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/677b1c7676924b3d94e68e76940bdb03.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ius5ZF5qjCCpcbZSpgpKBYngU2s=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.263618+00 2025-12-09 10:15:11.263624+00 11165 C425#蓝色 SPMX-20240815306347 \N \N \N 1 \N [{"file_id": "5f351ffb-d9ff-4174-8fab-26b4a03d6a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5feaa60c46d5473f90e3baf9d3a6924a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5feaa60c46d5473f90e3baf9d3a6924a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5feaa60c46d5473f90e3baf9d3a6924a.jpg", "file_size": 70589, "is_delete": false, "file_type": 1, "original_file_name": "C425#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa60c46d5473f90e3baf9d3a6924a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa60c46d5473f90e3baf9d3a6924a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5feaa60c46d5473f90e3baf9d3a6924a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5feaa60c46d5473f90e3baf9d3a6924a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5feaa60c46d5473f90e3baf9d3a6924a.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-QKbDJUxPQ1yPQ-lCcKvKSmvUQ=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.266208+00 2025-12-09 10:15:11.266213+00 11166 LZ1285#背心款2号色 SPMX-20240815306343 \N \N \N 1 \N [{"file_id": "425845ed-8216-410d-9a9d-557b9240ab2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3b21e51ce1a443a81e8d3eabfa3ab36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3b21e51ce1a443a81e8d3eabfa3ab36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3b21e51ce1a443a81e8d3eabfa3ab36.jpg", "file_size": 16094, "is_delete": false, "file_type": 1, "original_file_name": "LZ1285#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b21e51ce1a443a81e8d3eabfa3ab36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b21e51ce1a443a81e8d3eabfa3ab36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b21e51ce1a443a81e8d3eabfa3ab36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3b21e51ce1a443a81e8d3eabfa3ab36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3b21e51ce1a443a81e8d3eabfa3ab36.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W78pbV_TNcJWpcuXIfaY3eauE0o=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.268414+00 2025-12-09 10:15:11.26842+00 11167 FHXGPK-批布056-2 SPMX-20240815306351 \N \N \N 1 \N [{"file_id": "ecb426a0-005c-447f-9d42-d29c956336c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "964a437efa37448eb4c2edbbd6ca4eec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "964a437efa37448eb4c2edbbd6ca4eec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "964a437efa37448eb4c2edbbd6ca4eec.jpg", "file_size": 38400, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布056-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/964a437efa37448eb4c2edbbd6ca4eec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/964a437efa37448eb4c2edbbd6ca4eec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/964a437efa37448eb4c2edbbd6ca4eec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/964a437efa37448eb4c2edbbd6ca4eec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/964a437efa37448eb4c2edbbd6ca4eec.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwD8Iabugzgd3-7Pq0_pmHb5xQ0=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.270599+00 2025-12-09 10:15:11.270604+00 11168 JTSS249FW#VS-D3 SPMX-20240815306341 \N \N \N 1 \N [{"file_id": "26b3fab4-a66b-46e6-8c9c-f0c4c48c6435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "832892506e204e44bcb4db8d61e66d3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "832892506e204e44bcb4db8d61e66d3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "832892506e204e44bcb4db8d61e66d3e.jpg", "file_size": 25952, "is_delete": false, "file_type": 1, "original_file_name": "JTSS249FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832892506e204e44bcb4db8d61e66d3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832892506e204e44bcb4db8d61e66d3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832892506e204e44bcb4db8d61e66d3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/832892506e204e44bcb4db8d61e66d3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/832892506e204e44bcb4db8d61e66d3e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAHkeaYpa62BqIhSFa_MVu4zoss=", "createTime": "2024-08-15 14:51:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.272557+00 2025-12-09 10:15:11.272563+00 11169 LJ9982FW#浅绿M VS-D3 SPMX-20240815306349 \N \N \N 1 \N [{"file_id": "774ef3b4-ef67-4b0a-b647-62a61b1dbea2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dfcc1a202dd498b91a34248d379f986.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dfcc1a202dd498b91a34248d379f986.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dfcc1a202dd498b91a34248d379f986.jpg", "file_size": 14112, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#浅绿M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfcc1a202dd498b91a34248d379f986.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfcc1a202dd498b91a34248d379f986.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfcc1a202dd498b91a34248d379f986.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dfcc1a202dd498b91a34248d379f986.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dfcc1a202dd498b91a34248d379f986.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMtfhiUs6Ulzv_3fXGfWlcSQuiA=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.274521+00 2025-12-09 10:15:11.274526+00 11170 23-2117#A4-3XL SPMX-20240815306346 \N \N \N 1 \N [{"file_id": "d428cd62-5085-400e-b7d7-b5b529d7cbac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a626a9ccbd14e099b1b6908238cc6d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a626a9ccbd14e099b1b6908238cc6d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a626a9ccbd14e099b1b6908238cc6d0.jpg", "file_size": 15704, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a626a9ccbd14e099b1b6908238cc6d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a626a9ccbd14e099b1b6908238cc6d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a626a9ccbd14e099b1b6908238cc6d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a626a9ccbd14e099b1b6908238cc6d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a626a9ccbd14e099b1b6908238cc6d0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wDPxoS-k6xQhbt9ZVF6kq6TJDg=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.276464+00 2025-12-09 10:15:11.27647+00 11171 HT071FWE#红色番禺调色VS-D3 SPMX-20240815306348 \N \N \N 1 \N [{"file_id": "548f1475-f2ca-4f25-9cd3-6d46b51d4a08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26d862b402114331961cd01fa374ccff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26d862b402114331961cd01fa374ccff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26d862b402114331961cd01fa374ccff.jpg", "file_size": 15468, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#红色番禺调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d862b402114331961cd01fa374ccff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d862b402114331961cd01fa374ccff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d862b402114331961cd01fa374ccff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26d862b402114331961cd01fa374ccff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26d862b402114331961cd01fa374ccff.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-a00SO5byjsR31JyINxTq2ZeUM=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.278636+00 2025-12-09 10:15:11.278641+00 11172 0003-91FWF#红色 SPMX-20240815306355 \N \N \N 1 \N [{"file_id": "331d8cd2-5658-45fd-9429-82f5720cc017", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "406d969d8e764c8d846005f706fe0f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "406d969d8e764c8d846005f706fe0f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "406d969d8e764c8d846005f706fe0f41.jpg", "file_size": 22122, "is_delete": false, "file_type": 1, "original_file_name": "0003-91FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406d969d8e764c8d846005f706fe0f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406d969d8e764c8d846005f706fe0f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/406d969d8e764c8d846005f706fe0f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/406d969d8e764c8d846005f706fe0f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/406d969d8e764c8d846005f706fe0f41.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_O0oCvV26TYJp1o75m8lhMym-ec=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.280591+00 2025-12-09 10:15:11.280596+00 11173 DL30764#草绿 SPMX-20240815306362 \N \N \N 1 \N [{"file_id": "d3926a7f-65df-4a68-b188-d773626add65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f00d961ca4d145f59cd7825402def891.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f00d961ca4d145f59cd7825402def891.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f00d961ca4d145f59cd7825402def891.jpg", "file_size": 24415, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00d961ca4d145f59cd7825402def891.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00d961ca4d145f59cd7825402def891.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00d961ca4d145f59cd7825402def891.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f00d961ca4d145f59cd7825402def891.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f00d961ca4d145f59cd7825402def891.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckywxNc2ioFRKgQPPCcX_9DjDGM=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.28255+00 2025-12-09 10:15:11.282555+00 11174 LZ1285#背心款3号色 SPMX-20240815306354 \N \N \N 1 \N [{"file_id": "95e189be-ff82-4786-ba03-ab3e362454d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1266e9715b1f4f778de3aefdd9fad171.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1266e9715b1f4f778de3aefdd9fad171.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1266e9715b1f4f778de3aefdd9fad171.jpg", "file_size": 15972, "is_delete": false, "file_type": 1, "original_file_name": "LZ1285#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1266e9715b1f4f778de3aefdd9fad171.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1266e9715b1f4f778de3aefdd9fad171.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1266e9715b1f4f778de3aefdd9fad171.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1266e9715b1f4f778de3aefdd9fad171.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1266e9715b1f4f778de3aefdd9fad171.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vXoXfyHYPU0Yh3NV9KLFq1Y32w=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.28476+00 2025-12-09 10:15:11.284765+00 11175 FHXGPK-批布056-3 SPMX-20240815306361 \N \N \N 1 \N [{"file_id": "03b36b8f-3a86-4e02-a133-d589c68b1a7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c3407d06a1a45ec9e5e1954123f6400.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c3407d06a1a45ec9e5e1954123f6400.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c3407d06a1a45ec9e5e1954123f6400.jpg", "file_size": 39494, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK-批布056-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3407d06a1a45ec9e5e1954123f6400.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3407d06a1a45ec9e5e1954123f6400.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3407d06a1a45ec9e5e1954123f6400.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c3407d06a1a45ec9e5e1954123f6400.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c3407d06a1a45ec9e5e1954123f6400.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FtJfd5p5eZNc8ZbWhymWyUP1lKo=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.286737+00 2025-12-09 10:15:11.286743+00 11176 LJ9982FW#浅绿S VS-D3 SPMX-20240815306359 \N \N \N 1 \N [{"file_id": "b9de919e-55fb-45c8-a0ba-5bf437031ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf1c628456ba4dcc90fd338217eb2e73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf1c628456ba4dcc90fd338217eb2e73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf1c628456ba4dcc90fd338217eb2e73.jpg", "file_size": 13826, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#浅绿S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1c628456ba4dcc90fd338217eb2e73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1c628456ba4dcc90fd338217eb2e73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1c628456ba4dcc90fd338217eb2e73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf1c628456ba4dcc90fd338217eb2e73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf1c628456ba4dcc90fd338217eb2e73.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pZ3QonUp07YIexPRiZyiUgvC5xc=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.288688+00 2025-12-09 10:15:11.288693+00 11177 HT071FWE#红色龙潭调色VS-D3 SPMX-20240815306358 \N \N \N 1 \N [{"file_id": "5e864355-1a55-4ff7-88f6-d44b36b54596", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "276c76ee57b34447bc0872b699cc5b4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "276c76ee57b34447bc0872b699cc5b4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "276c76ee57b34447bc0872b699cc5b4d.jpg", "file_size": 15696, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#红色龙潭调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276c76ee57b34447bc0872b699cc5b4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276c76ee57b34447bc0872b699cc5b4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276c76ee57b34447bc0872b699cc5b4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/276c76ee57b34447bc0872b699cc5b4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/276c76ee57b34447bc0872b699cc5b4d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzgqKHFWCKs1zmxJ7RJr_1lXLuM=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.290656+00 2025-12-09 10:15:11.290661+00 11178 23-2117#A4-4XL SPMX-20240815306356 \N \N \N 1 \N [{"file_id": "954fff66-33b7-47a7-bfd0-3398955771c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg", "file_size": 14737, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/446dbd7cf2e74f8ca831f1ccd6c43ea1.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4VwI4ins30VG4Jb_tirLtCzIfI=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.292597+00 2025-12-09 10:15:11.292602+00 11179 8129#黑色 SPMX-20240815306357 \N \N \N 1 \N [{"file_id": "8c255ab2-5598-471a-8f6c-8c8a2a111dee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25f170a0a12b44c18bbdd9fbbfeba5dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25f170a0a12b44c18bbdd9fbbfeba5dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25f170a0a12b44c18bbdd9fbbfeba5dd.jpg", "file_size": 20827, "is_delete": false, "file_type": 1, "original_file_name": "8129#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f170a0a12b44c18bbdd9fbbfeba5dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f170a0a12b44c18bbdd9fbbfeba5dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f170a0a12b44c18bbdd9fbbfeba5dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25f170a0a12b44c18bbdd9fbbfeba5dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25f170a0a12b44c18bbdd9fbbfeba5dd.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlF43kcVtkAZgcW8RHG_n0Dq0oc=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.294792+00 2025-12-09 10:15:11.294797+00 11180 0003-91FWF#绿色 SPMX-20240815306365 \N \N \N 1 \N [{"file_id": "12a7341e-e535-4418-9fc4-2f474a4da18f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2ffe93a639e4a80aafaf4a97aec52bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2ffe93a639e4a80aafaf4a97aec52bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2ffe93a639e4a80aafaf4a97aec52bc.jpg", "file_size": 23035, "is_delete": false, "file_type": 1, "original_file_name": "0003-91FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ffe93a639e4a80aafaf4a97aec52bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ffe93a639e4a80aafaf4a97aec52bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ffe93a639e4a80aafaf4a97aec52bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2ffe93a639e4a80aafaf4a97aec52bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2ffe93a639e4a80aafaf4a97aec52bc.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPNf41Ka2TxxGOfAEFPqpej26I8=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.296745+00 2025-12-09 10:15:11.29675+00 11181 LZ1285#背心款4号色 SPMX-20240815306364 \N \N \N 1 \N [{"file_id": "655dbb54-bf08-4b49-a228-52b11b7ecac9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76a784521f6a46aaa6b918692ddbb6c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76a784521f6a46aaa6b918692ddbb6c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76a784521f6a46aaa6b918692ddbb6c0.jpg", "file_size": 15918, "is_delete": false, "file_type": 1, "original_file_name": "LZ1285#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a784521f6a46aaa6b918692ddbb6c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a784521f6a46aaa6b918692ddbb6c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a784521f6a46aaa6b918692ddbb6c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76a784521f6a46aaa6b918692ddbb6c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76a784521f6a46aaa6b918692ddbb6c0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tLXNfzGWSMfRlW2SUm568uVc8kQ=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.298717+00 2025-12-09 10:15:11.298722+00 11182 JTSS250FW#VS-D3 SPMX-20240815306352 \N \N \N 1 \N [{"file_id": "ad880e00-aa97-466a-a747-15effa5bf05a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8c799038afe4ab183c4edc19860487b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8c799038afe4ab183c4edc19860487b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8c799038afe4ab183c4edc19860487b.jpg", "file_size": 18058, "is_delete": false, "file_type": 1, "original_file_name": "JTSS250FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8c799038afe4ab183c4edc19860487b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8c799038afe4ab183c4edc19860487b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8c799038afe4ab183c4edc19860487b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8c799038afe4ab183c4edc19860487b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8c799038afe4ab183c4edc19860487b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7OAyRJQRX9mNTyqnLLeYo09L6A=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.300662+00 2025-12-09 10:15:11.300667+00 11183 C425#黑色 SPMX-20240815306360 \N \N \N 1 \N [{"file_id": "f196b88b-f7f1-4761-8f68-d0b9c3fbe333", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f9c4e9d8c364d53bfd4e35b4b19431a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f9c4e9d8c364d53bfd4e35b4b19431a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f9c4e9d8c364d53bfd4e35b4b19431a.jpg", "file_size": 68082, "is_delete": false, "file_type": 1, "original_file_name": "C425#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c4e9d8c364d53bfd4e35b4b19431a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c4e9d8c364d53bfd4e35b4b19431a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f9c4e9d8c364d53bfd4e35b4b19431a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f9c4e9d8c364d53bfd4e35b4b19431a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f9c4e9d8c364d53bfd4e35b4b19431a.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pb4-8R7FouMDuTjCqEWNYqx2nLo=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.302842+00 2025-12-09 10:15:11.302848+00 11184 JTSS251FW#VS-D3 SPMX-20240815306363 \N \N \N 1 \N [{"file_id": "63929220-aa40-4eb5-a994-c7ddf2511a34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7466b68774c443a791d7ac9fe14771e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7466b68774c443a791d7ac9fe14771e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7466b68774c443a791d7ac9fe14771e0.jpg", "file_size": 16744, "is_delete": false, "file_type": 1, "original_file_name": "JTSS251FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7466b68774c443a791d7ac9fe14771e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7466b68774c443a791d7ac9fe14771e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7466b68774c443a791d7ac9fe14771e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7466b68774c443a791d7ac9fe14771e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7466b68774c443a791d7ac9fe14771e0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTrgFXnMlP9em0yH2CATg-lJLRs=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.304809+00 2025-12-09 10:15:11.304815+00 11185 1101#玫红 SPMX-20240815306353 \N \N \N 1 \N [{"file_id": "8545c95b-83cc-4323-8435-24be7ae7009a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "930103bcfc31450eb70cad20fd367273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "930103bcfc31450eb70cad20fd367273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "930103bcfc31450eb70cad20fd367273.jpg", "file_size": 25092, "is_delete": false, "file_type": 1, "original_file_name": "1101#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930103bcfc31450eb70cad20fd367273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930103bcfc31450eb70cad20fd367273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930103bcfc31450eb70cad20fd367273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/930103bcfc31450eb70cad20fd367273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/930103bcfc31450eb70cad20fd367273.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fg0u1LGukD0XthQmDxThvhRMUbM=", "createTime": "2024-08-15 14:51:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.30679+00 2025-12-09 10:15:11.306795+00 11186 HT071FWE#绿色番禺调色VS-D3 SPMX-20240815306369 \N \N \N 1 \N [{"file_id": "a8590490-b66e-44f7-bc11-ff9ee18fd059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg", "file_size": 13685, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#绿色番禺调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ce1d27c6c204917bcf8d0c2ac2ebb56.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbGmP8f0Wtk9hj8cn4l3SOs4gLM=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.308737+00 2025-12-09 10:15:11.308742+00 11187 8130#短裤套装匹布 SPMX-20240815306368 \N \N \N 1 \N [{"file_id": "907db7bc-e434-4ed9-b28a-0c0202047900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5bbd66c2cfb49ddb68cfac55c92afdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5bbd66c2cfb49ddb68cfac55c92afdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5bbd66c2cfb49ddb68cfac55c92afdb.jpg", "file_size": 24366, "is_delete": false, "file_type": 1, "original_file_name": "8130#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bbd66c2cfb49ddb68cfac55c92afdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bbd66c2cfb49ddb68cfac55c92afdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bbd66c2cfb49ddb68cfac55c92afdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5bbd66c2cfb49ddb68cfac55c92afdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5bbd66c2cfb49ddb68cfac55c92afdb.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_VCWqxOEe_4i42WrQ1HYKPmV8Q=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.310922+00 2025-12-09 10:15:11.310927+00 11188 LJ9982FW#浅绿XL VS-D3 SPMX-20240815306370 \N \N \N 1 \N [{"file_id": "9d250a0c-062f-47a6-9896-092068baeab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2a8d287bc2480cb60192546b1cd8d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2a8d287bc2480cb60192546b1cd8d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2a8d287bc2480cb60192546b1cd8d8.jpg", "file_size": 13167, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#浅绿XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a8d287bc2480cb60192546b1cd8d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a8d287bc2480cb60192546b1cd8d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2a8d287bc2480cb60192546b1cd8d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2a8d287bc2480cb60192546b1cd8d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2a8d287bc2480cb60192546b1cd8d8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAzFJjhhHGGMOta0pBRuEKU2LPY=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.312874+00 2025-12-09 10:15:11.31288+00 11189 1101#粉色 SPMX-20240815306366 \N \N \N 1 \N [{"file_id": "069b1d52-049e-4e8e-a7af-38d5fab789cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af7e817e4c2b4bcda894cba4fabcbfb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af7e817e4c2b4bcda894cba4fabcbfb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af7e817e4c2b4bcda894cba4fabcbfb1.jpg", "file_size": 25072, "is_delete": false, "file_type": 1, "original_file_name": "1101#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e817e4c2b4bcda894cba4fabcbfb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e817e4c2b4bcda894cba4fabcbfb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7e817e4c2b4bcda894cba4fabcbfb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af7e817e4c2b4bcda894cba4fabcbfb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af7e817e4c2b4bcda894cba4fabcbfb1.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8QEY15Nbw3mFRNdUdipjcDIH2Q=", "createTime": "2024-08-15 14:51:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.314845+00 2025-12-09 10:15:11.314851+00 11190 23-2117#A4-领子3XL SPMX-20240815306367 \N \N \N 1 \N [{"file_id": "c314e736-7264-4528-8c2b-4cc4933b3f08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e01cd7db3e7f4318897c03888947de08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e01cd7db3e7f4318897c03888947de08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e01cd7db3e7f4318897c03888947de08.jpg", "file_size": 11685, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e01cd7db3e7f4318897c03888947de08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e01cd7db3e7f4318897c03888947de08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e01cd7db3e7f4318897c03888947de08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e01cd7db3e7f4318897c03888947de08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e01cd7db3e7f4318897c03888947de08.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Nnv9IrsXAYb8_mJ3OvsPuK8PHw=", "createTime": "2024-08-15 14:51:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.316866+00 2025-12-09 10:15:11.316871+00 11191 23-2117#A4-领子4XL SPMX-20240815306378 \N \N \N 1 \N [{"file_id": "88e1489a-f62f-4f6e-a0d7-5f846691d8ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg", "file_size": 11429, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfaac53d8fd14b7b95d50fb4fc2c24f4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkdIFjNaJK1o71I8wTyAzu_noX0=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.31901+00 2025-12-09 10:15:11.319016+00 11192 C426#卡其 SPMX-20240815306371 \N \N \N 1 \N [{"file_id": "a222cf09-743f-41d3-b8fb-86a1cd64882e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b60fa76ec4a4ffebf322b6a2c0e8994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b60fa76ec4a4ffebf322b6a2c0e8994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b60fa76ec4a4ffebf322b6a2c0e8994.jpg", "file_size": 37215, "is_delete": false, "file_type": 1, "original_file_name": "C426#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b60fa76ec4a4ffebf322b6a2c0e8994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b60fa76ec4a4ffebf322b6a2c0e8994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b60fa76ec4a4ffebf322b6a2c0e8994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b60fa76ec4a4ffebf322b6a2c0e8994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b60fa76ec4a4ffebf322b6a2c0e8994.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9sB70ckHw9R07JAZL7uxppAYrnU=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.320964+00 2025-12-09 10:15:11.320969+00 11193 FHXGPK5-001-1 SPMX-20240815306372 \N \N \N 1 \N [{"file_id": "de1be880-e063-4360-9534-96151149a96f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b21ca4ee614448b7b4eace59c83b0357.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b21ca4ee614448b7b4eace59c83b0357.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b21ca4ee614448b7b4eace59c83b0357.jpg", "file_size": 35637, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21ca4ee614448b7b4eace59c83b0357.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21ca4ee614448b7b4eace59c83b0357.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b21ca4ee614448b7b4eace59c83b0357.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b21ca4ee614448b7b4eace59c83b0357.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b21ca4ee614448b7b4eace59c83b0357.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3yHZhjpxp4eARV0foOz2gTMEb_I=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.32299+00 2025-12-09 10:15:11.322995+00 11194 DL30764#蓝绿 SPMX-20240815306374 \N \N \N 1 \N [{"file_id": "5e78cc83-c8a9-4b82-b8fc-24efdc5f0749", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "554b1c6b64394f64860ebe5f4afcceb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "554b1c6b64394f64860ebe5f4afcceb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "554b1c6b64394f64860ebe5f4afcceb4.jpg", "file_size": 25974, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b1c6b64394f64860ebe5f4afcceb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b1c6b64394f64860ebe5f4afcceb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b1c6b64394f64860ebe5f4afcceb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/554b1c6b64394f64860ebe5f4afcceb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/554b1c6b64394f64860ebe5f4afcceb4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLPfPmHx68TbUkugEn4TF4Bw55k=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.324954+00 2025-12-09 10:15:11.324959+00 11195 LJ9982FW#灰2XL VS-D3 SPMX-20240815306381 \N \N \N 1 \N [{"file_id": "a3640956-272f-4952-9516-d5193dcfdd48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f0e08ac5a7b4341b366a079785f83c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f0e08ac5a7b4341b366a079785f83c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f0e08ac5a7b4341b366a079785f83c3.jpg", "file_size": 12912, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#灰2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0e08ac5a7b4341b366a079785f83c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0e08ac5a7b4341b366a079785f83c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0e08ac5a7b4341b366a079785f83c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f0e08ac5a7b4341b366a079785f83c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f0e08ac5a7b4341b366a079785f83c3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNvaPGDCaMaNgF7qFpXR-bW30ZU=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.326923+00 2025-12-09 10:15:11.326929+00 11196 LZ1285#背心款5号色 SPMX-20240815306375 \N \N \N 1 \N [{"file_id": "3068cb92-c39f-4760-b745-9de0724efa38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cb4eea4709b4f60bd8a792ac8d46070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cb4eea4709b4f60bd8a792ac8d46070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cb4eea4709b4f60bd8a792ac8d46070.jpg", "file_size": 15299, "is_delete": false, "file_type": 1, "original_file_name": "LZ1285#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb4eea4709b4f60bd8a792ac8d46070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb4eea4709b4f60bd8a792ac8d46070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb4eea4709b4f60bd8a792ac8d46070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cb4eea4709b4f60bd8a792ac8d46070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cb4eea4709b4f60bd8a792ac8d46070.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOApt5faUYUBTGF_3Xqm0AsfHDg=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.328871+00 2025-12-09 10:15:11.328876+00 11197 JTSS252FW#VS-D3 SPMX-20240815306376 \N \N \N 1 \N [{"file_id": "8ea2e4b9-390c-4ab7-a785-50cc8ce19bf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb9006ea7404035a1e726ec4f120232.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb9006ea7404035a1e726ec4f120232.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb9006ea7404035a1e726ec4f120232.jpg", "file_size": 20004, "is_delete": false, "file_type": 1, "original_file_name": "JTSS252FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb9006ea7404035a1e726ec4f120232.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb9006ea7404035a1e726ec4f120232.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb9006ea7404035a1e726ec4f120232.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb9006ea7404035a1e726ec4f120232.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb9006ea7404035a1e726ec4f120232.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ClVXtXFwvoMR0ffVLkSf6af5UA=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.331069+00 2025-12-09 10:15:11.331074+00 11198 0003-91FWF#蓝色 SPMX-20240815306377 \N \N \N 1 \N [{"file_id": "8fea62e0-cf06-4bea-ba97-2cadd08d2f83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f74da2a8db14a1b9487c58d920c27da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f74da2a8db14a1b9487c58d920c27da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f74da2a8db14a1b9487c58d920c27da.jpg", "file_size": 22616, "is_delete": false, "file_type": 1, "original_file_name": "0003-91FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f74da2a8db14a1b9487c58d920c27da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f74da2a8db14a1b9487c58d920c27da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f74da2a8db14a1b9487c58d920c27da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f74da2a8db14a1b9487c58d920c27da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f74da2a8db14a1b9487c58d920c27da.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfPsfhY3Wwah_YZqnaquAyS3M5o=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.333023+00 2025-12-09 10:15:11.333028+00 11199 8131#LWQ15 SPMX-20240815306380 \N \N \N 1 \N [{"file_id": "ed004035-1c69-47d9-a74e-4ae181833e37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "990084907c09416d806a4b502c088475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "990084907c09416d806a4b502c088475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "990084907c09416d806a4b502c088475.jpg", "file_size": 26406, "is_delete": false, "file_type": 1, "original_file_name": "8131#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990084907c09416d806a4b502c088475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990084907c09416d806a4b502c088475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990084907c09416d806a4b502c088475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/990084907c09416d806a4b502c088475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/990084907c09416d806a4b502c088475.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OgXI8ETGIqv7JFS4PCd4Slh_3pk=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.334993+00 2025-12-09 10:15:11.334999+00 11200 1101#草绿 SPMX-20240815306373 \N \N \N 1 \N [{"file_id": "8a64b884-ff79-4206-92ea-1da97507a1a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09cec4a71a84f3dbe59b8328b1f4c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09cec4a71a84f3dbe59b8328b1f4c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09cec4a71a84f3dbe59b8328b1f4c56.jpg", "file_size": 22861, "is_delete": false, "file_type": 1, "original_file_name": "1101#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cec4a71a84f3dbe59b8328b1f4c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cec4a71a84f3dbe59b8328b1f4c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cec4a71a84f3dbe59b8328b1f4c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09cec4a71a84f3dbe59b8328b1f4c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09cec4a71a84f3dbe59b8328b1f4c56.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Zxwu8DbW0eZd4Dwxmc_JQNdFzc=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.345216+00 2025-12-09 10:15:11.345222+00 11205 C426#红色 SPMX-20240815306397 \N \N \N 1 \N [{"file_id": "d31af33d-e09d-4dff-b518-f96a3e56596d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23abdf8518b24668bf012eb4b3f8fc48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23abdf8518b24668bf012eb4b3f8fc48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23abdf8518b24668bf012eb4b3f8fc48.jpg", "file_size": 41846, "is_delete": false, "file_type": 1, "original_file_name": "C426#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23abdf8518b24668bf012eb4b3f8fc48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23abdf8518b24668bf012eb4b3f8fc48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23abdf8518b24668bf012eb4b3f8fc48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23abdf8518b24668bf012eb4b3f8fc48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23abdf8518b24668bf012eb4b3f8fc48.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b6ruqPTcATjqwdFHnZBWD4ChAIc=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.337166+00 2025-12-09 10:15:11.337172+00 11201 HT071FWE#绿色龙潭调色VS-D3 SPMX-20240815306379 \N \N \N 1 \N [{"file_id": "7bf55458-a7f7-4693-91db-0a5fc9f59673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5147ddba474540e8b2c04086717cc756.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5147ddba474540e8b2c04086717cc756.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5147ddba474540e8b2c04086717cc756.jpg", "file_size": 13355, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#绿色龙潭调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5147ddba474540e8b2c04086717cc756.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5147ddba474540e8b2c04086717cc756.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5147ddba474540e8b2c04086717cc756.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5147ddba474540e8b2c04086717cc756.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5147ddba474540e8b2c04086717cc756.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQVkxm5eCx-mLwcMLQ8rMZimddk=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.339135+00 2025-12-09 10:15:11.339141+00 11202 JTSS253FW#VS-D3 SPMX-20240815306385 \N \N \N 1 \N [{"file_id": "3de9f280-c908-4a17-ba6b-f836d886df6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c1778dc89944ab19499b5eb0e8709e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c1778dc89944ab19499b5eb0e8709e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c1778dc89944ab19499b5eb0e8709e6.jpg", "file_size": 13067, "is_delete": false, "file_type": 1, "original_file_name": "JTSS253FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1778dc89944ab19499b5eb0e8709e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1778dc89944ab19499b5eb0e8709e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1778dc89944ab19499b5eb0e8709e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c1778dc89944ab19499b5eb0e8709e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c1778dc89944ab19499b5eb0e8709e6.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLX-vQC5J2Mvecaqf1TkHbUtov4=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.34108+00 2025-12-09 10:15:11.341089+00 11203 JTSS253FW SPMX-20240815306395 \N \N \N 1 \N [{"file_id": "37a6e406-b84c-4e6f-82a7-f6d0ebde5089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aab0f8a88be84090bfd4c02ac3c3d6a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aab0f8a88be84090bfd4c02ac3c3d6a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aab0f8a88be84090bfd4c02ac3c3d6a4.jpg", "file_size": 13067, "is_delete": false, "file_type": 1, "original_file_name": "JTSS253FW.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aab0f8a88be84090bfd4c02ac3c3d6a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aab0f8a88be84090bfd4c02ac3c3d6a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aab0f8a88be84090bfd4c02ac3c3d6a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aab0f8a88be84090bfd4c02ac3c3d6a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aab0f8a88be84090bfd4c02ac3c3d6a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Orodj_Kl1cGULhDFHPSuamD2WA=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.343039+00 2025-12-09 10:15:11.343044+00 11204 DL30802#23#浅粉 SPMX-20240815306396 \N \N \N 1 \N [{"file_id": "675215dc-23e3-4993-a676-cff41b3e2f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9332dce9ccce43f2953b885ebb835646.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9332dce9ccce43f2953b885ebb835646.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9332dce9ccce43f2953b885ebb835646.jpg", "file_size": 27649, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#23#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9332dce9ccce43f2953b885ebb835646.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9332dce9ccce43f2953b885ebb835646.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9332dce9ccce43f2953b885ebb835646.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9332dce9ccce43f2953b885ebb835646.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9332dce9ccce43f2953b885ebb835646.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTWo5EMZNpYutli737gKli7rkas=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.347163+00 2025-12-09 10:15:11.347169+00 11206 FHXGPK5-001-2 SPMX-20240815306382 \N \N \N 1 \N [{"file_id": "c6d35a93-cc69-4e5b-b50f-1a88d399afa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a48fa25d35643869e17385df233fa79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a48fa25d35643869e17385df233fa79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a48fa25d35643869e17385df233fa79.jpg", "file_size": 37905, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a48fa25d35643869e17385df233fa79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a48fa25d35643869e17385df233fa79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a48fa25d35643869e17385df233fa79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a48fa25d35643869e17385df233fa79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a48fa25d35643869e17385df233fa79.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IoMRZSCVfZ3WgoaNegU8s70Ezxc=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.349131+00 2025-12-09 10:15:11.349137+00 11207 8131#长袖上衣黑白 SPMX-20240815306388 \N \N \N 1 \N [{"file_id": "5392185b-6d65-4654-8aac-55d49a30461a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34f25163e2a84b2281ed0640a2418a20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34f25163e2a84b2281ed0640a2418a20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34f25163e2a84b2281ed0640a2418a20.jpg", "file_size": 26390, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖上衣黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f25163e2a84b2281ed0640a2418a20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f25163e2a84b2281ed0640a2418a20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f25163e2a84b2281ed0640a2418a20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34f25163e2a84b2281ed0640a2418a20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34f25163e2a84b2281ed0640a2418a20.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GgnxPsvZTFaZsQVOKz5H5HTKOJ8=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.351076+00 2025-12-09 10:15:11.351082+00 11208 LZ1286#背心款1号色 SPMX-20240815306387 \N \N \N 1 \N [{"file_id": "5cf905fa-7dc7-4a2b-8d95-d3051d39b07b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65fa6e334d154e2ebddf9c0cf5460238.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65fa6e334d154e2ebddf9c0cf5460238.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65fa6e334d154e2ebddf9c0cf5460238.jpg", "file_size": 19659, "is_delete": false, "file_type": 1, "original_file_name": "LZ1286#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65fa6e334d154e2ebddf9c0cf5460238.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65fa6e334d154e2ebddf9c0cf5460238.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65fa6e334d154e2ebddf9c0cf5460238.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65fa6e334d154e2ebddf9c0cf5460238.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65fa6e334d154e2ebddf9c0cf5460238.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HdcddJt-QjsaTPWoGOcT5MvJ48=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.353188+00 2025-12-09 10:15:11.353193+00 11209 23-2117#A5-3XL SPMX-20240815306390 \N \N \N 1 \N [{"file_id": "274eab96-1c91-476b-a4f7-4c7702a19698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbedd03169e244b8bce2814e526f72fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbedd03169e244b8bce2814e526f72fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbedd03169e244b8bce2814e526f72fe.jpg", "file_size": 16398, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbedd03169e244b8bce2814e526f72fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbedd03169e244b8bce2814e526f72fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbedd03169e244b8bce2814e526f72fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbedd03169e244b8bce2814e526f72fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbedd03169e244b8bce2814e526f72fe.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxTE1F7P8t4QayxDZjt4PeX983s=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.355163+00 2025-12-09 10:15:11.355169+00 11210 0003-91FWF#黄色 SPMX-20240815306391 \N \N \N 1 \N [{"file_id": "2f13885e-97c7-4a42-8e23-960428843e07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2284d048d4144df89f48aafba9a5adf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2284d048d4144df89f48aafba9a5adf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2284d048d4144df89f48aafba9a5adf1.jpg", "file_size": 23743, "is_delete": false, "file_type": 1, "original_file_name": "0003-91FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2284d048d4144df89f48aafba9a5adf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2284d048d4144df89f48aafba9a5adf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2284d048d4144df89f48aafba9a5adf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2284d048d4144df89f48aafba9a5adf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2284d048d4144df89f48aafba9a5adf1.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6S2UipqMvhg2HZbxOe_HWh73lvw=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.357376+00 2025-12-09 10:15:11.357382+00 11211 DL30764#黄色 SPMX-20240815306384 \N \N \N 1 \N [{"file_id": "1bfff2e8-ddee-40f2-a4ba-a50f3dc463c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8c5bf98c4e5450f8ed7f324bfab0b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8c5bf98c4e5450f8ed7f324bfab0b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8c5bf98c4e5450f8ed7f324bfab0b94.jpg", "file_size": 22975, "is_delete": false, "file_type": 1, "original_file_name": "DL30764#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c5bf98c4e5450f8ed7f324bfab0b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c5bf98c4e5450f8ed7f324bfab0b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8c5bf98c4e5450f8ed7f324bfab0b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8c5bf98c4e5450f8ed7f324bfab0b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8c5bf98c4e5450f8ed7f324bfab0b94.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vMGsG02YWFypICPDUWN-r9e4u8=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.359348+00 2025-12-09 10:15:11.359354+00 11212 C426#白色 SPMX-20240815306386 \N \N \N 1 \N [{"file_id": "368d6943-9e21-4b38-abda-5ed7aca267e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfab72a972034d00a72663e8689227c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfab72a972034d00a72663e8689227c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfab72a972034d00a72663e8689227c7.jpg", "file_size": 35843, "is_delete": false, "file_type": 1, "original_file_name": "C426#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfab72a972034d00a72663e8689227c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfab72a972034d00a72663e8689227c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfab72a972034d00a72663e8689227c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfab72a972034d00a72663e8689227c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfab72a972034d00a72663e8689227c7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgxy6AGk6_8Z51CxISid8m876eg=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.361292+00 2025-12-09 10:15:11.361297+00 11213 FHXGPK5-001-3 SPMX-20240815306393 \N \N \N 1 \N [{"file_id": "675b3a07-107f-408b-9f0f-4db45bfc54b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d896f068a384d4ca0be3475a1392253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d896f068a384d4ca0be3475a1392253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d896f068a384d4ca0be3475a1392253.jpg", "file_size": 38836, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d896f068a384d4ca0be3475a1392253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d896f068a384d4ca0be3475a1392253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d896f068a384d4ca0be3475a1392253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d896f068a384d4ca0be3475a1392253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d896f068a384d4ca0be3475a1392253.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCbzeXdZwgS45magze_oKqF48Jg=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.37139+00 2025-12-09 10:15:11.371395+00 11218 1101#黄色 SPMX-20240815306394 \N \N \N 1 \N [{"file_id": "fc0e61a7-8200-4c85-a72e-352b6591d158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac9460f23e6949798769421c439e167e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac9460f23e6949798769421c439e167e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac9460f23e6949798769421c439e167e.jpg", "file_size": 26455, "is_delete": false, "file_type": 1, "original_file_name": "1101#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9460f23e6949798769421c439e167e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9460f23e6949798769421c439e167e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9460f23e6949798769421c439e167e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac9460f23e6949798769421c439e167e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac9460f23e6949798769421c439e167e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9SKER_giczmfeqArTCe_7C2tlE=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.363241+00 2025-12-09 10:15:11.363246+00 11214 HT071FWE#蓝色番禺调色VS-D3 SPMX-20240815306389 \N \N \N 1 \N [{"file_id": "d83d2db2-555b-41c1-bd2d-e1a866b8f228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "198d4440b3e94587914767cbbbffd4f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "198d4440b3e94587914767cbbbffd4f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "198d4440b3e94587914767cbbbffd4f3.jpg", "file_size": 15947, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#蓝色番禺调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d4440b3e94587914767cbbbffd4f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d4440b3e94587914767cbbbffd4f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198d4440b3e94587914767cbbbffd4f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/198d4440b3e94587914767cbbbffd4f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/198d4440b3e94587914767cbbbffd4f3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUJZOaNhp5Cz6X0_RVvjWOomWJ8=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.365218+00 2025-12-09 10:15:11.365228+00 11215 LJ9982FW#灰L VS-D3 SPMX-20240815306392 \N \N \N 1 \N [{"file_id": "8b38f853-5439-480c-ae04-4b1253c117ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c20c5a26254b3c87c0f18f09433e18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c20c5a26254b3c87c0f18f09433e18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c20c5a26254b3c87c0f18f09433e18.jpg", "file_size": 14373, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#灰L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c20c5a26254b3c87c0f18f09433e18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c20c5a26254b3c87c0f18f09433e18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c20c5a26254b3c87c0f18f09433e18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c20c5a26254b3c87c0f18f09433e18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c20c5a26254b3c87c0f18f09433e18.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ygo6yQXVZaC2AUJoP7N5dI4HVlk=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.367422+00 2025-12-09 10:15:11.367428+00 11216 LZ1286#背心款2号色 SPMX-20240815306398 \N \N \N 1 \N [{"file_id": "bf5b92a4-2006-4d7c-bfeb-f2b81f22093b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "904196ecdfa34be78da679cd1b854e16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "904196ecdfa34be78da679cd1b854e16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "904196ecdfa34be78da679cd1b854e16.jpg", "file_size": 19937, "is_delete": false, "file_type": 1, "original_file_name": "LZ1286#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/904196ecdfa34be78da679cd1b854e16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/904196ecdfa34be78da679cd1b854e16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/904196ecdfa34be78da679cd1b854e16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/904196ecdfa34be78da679cd1b854e16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/904196ecdfa34be78da679cd1b854e16.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1amebAwCtAR_T_W-UF2xqyDbDes=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.369423+00 2025-12-09 10:15:11.369429+00 11217 1101#豆沙 SPMX-20240815306383 \N \N \N 1 \N [{"file_id": "4e216d03-501a-460f-8395-f67ae44d2174", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0305887ff16404993f41f621670590d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0305887ff16404993f41f621670590d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0305887ff16404993f41f621670590d.jpg", "file_size": 22755, "is_delete": false, "file_type": 1, "original_file_name": "1101#豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0305887ff16404993f41f621670590d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0305887ff16404993f41f621670590d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0305887ff16404993f41f621670590d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0305887ff16404993f41f621670590d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0305887ff16404993f41f621670590d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fN7BxZ_DvWum8r11sVIKlJ8mTs=", "createTime": "2024-08-15 14:51:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.373352+00 2025-12-09 10:15:11.373357+00 11219 23-2117#A5-4XL SPMX-20240815306403 \N \N \N 1 \N [{"file_id": "23a4570e-313d-40b8-98ba-b2669c2e62bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg", "file_size": 15259, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7b48105e6a2452ebbfa1f6a5a6e2c16.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAT2ih3eXdZ4Bof7VyewG1a3yN0=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.375331+00 2025-12-09 10:15:11.375338+00 11220 LJ9982FW#灰M VS-D3 SPMX-20240815306401 \N \N \N 1 \N [{"file_id": "3e214ea1-51b6-4186-b77e-a21cf7899263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ced5fbd136184bce9a0a0202855c2158.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ced5fbd136184bce9a0a0202855c2158.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ced5fbd136184bce9a0a0202855c2158.jpg", "file_size": 13763, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#灰M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced5fbd136184bce9a0a0202855c2158.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced5fbd136184bce9a0a0202855c2158.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced5fbd136184bce9a0a0202855c2158.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ced5fbd136184bce9a0a0202855c2158.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ced5fbd136184bce9a0a0202855c2158.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfFski3kF1bxJ6eZpjXhxO0bGtk=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.377664+00 2025-12-09 10:15:11.377672+00 11221 110136#上衣红色2XL SPMX-20240815306405 \N \N \N 1 \N [{"file_id": "6ff093ab-46d7-4120-930e-0b72c4e865b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "911a6ae3981c417181be4ad9540bfed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "911a6ae3981c417181be4ad9540bfed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "911a6ae3981c417181be4ad9540bfed3.jpg", "file_size": 26273, "is_delete": false, "file_type": 1, "original_file_name": "110136#上衣红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911a6ae3981c417181be4ad9540bfed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911a6ae3981c417181be4ad9540bfed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911a6ae3981c417181be4ad9540bfed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/911a6ae3981c417181be4ad9540bfed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/911a6ae3981c417181be4ad9540bfed3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RBcrmfnr-pJT8I_I8z6bj-yRk_s=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.379739+00 2025-12-09 10:15:11.379745+00 11222 0003-92FWF#V5曲线 SPMX-20240815306402 \N \N \N 1 \N [{"file_id": "ae8ba48c-e4d9-4662-a35d-1e1257057d98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a5aa7a8bf142a4837f6a118be12113.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a5aa7a8bf142a4837f6a118be12113.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a5aa7a8bf142a4837f6a118be12113.jpg", "file_size": 9855, "is_delete": false, "file_type": 1, "original_file_name": "0003-92FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5aa7a8bf142a4837f6a118be12113.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5aa7a8bf142a4837f6a118be12113.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5aa7a8bf142a4837f6a118be12113.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a5aa7a8bf142a4837f6a118be12113.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a5aa7a8bf142a4837f6a118be12113.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37ewRNU59f0XxHsQ2zAuIMLKeZI=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.381651+00 2025-12-09 10:15:11.381656+00 11223 C426#绿色 SPMX-20240815306407 \N \N \N 1 \N [{"file_id": "264b139c-0543-4db9-b451-0830c938d496", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffad98ee0a4b479e91a49ff5d40ea3aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffad98ee0a4b479e91a49ff5d40ea3aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffad98ee0a4b479e91a49ff5d40ea3aa.jpg", "file_size": 41093, "is_delete": false, "file_type": 1, "original_file_name": "C426#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad98ee0a4b479e91a49ff5d40ea3aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad98ee0a4b479e91a49ff5d40ea3aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad98ee0a4b479e91a49ff5d40ea3aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffad98ee0a4b479e91a49ff5d40ea3aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffad98ee0a4b479e91a49ff5d40ea3aa.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sf7gZsafke6QPZZrhEA4QliJg8A=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.383455+00 2025-12-09 10:15:11.383459+00 11224 8131#长袖上衣黑红 SPMX-20240815306399 \N \N \N 1 \N [{"file_id": "b17ad2ed-5956-41ff-813d-154bb2c77acc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eabc08555d94f10956c2142a8d0ad75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eabc08555d94f10956c2142a8d0ad75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eabc08555d94f10956c2142a8d0ad75.jpg", "file_size": 24630, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖上衣黑红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eabc08555d94f10956c2142a8d0ad75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eabc08555d94f10956c2142a8d0ad75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eabc08555d94f10956c2142a8d0ad75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eabc08555d94f10956c2142a8d0ad75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eabc08555d94f10956c2142a8d0ad75.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQmdnbt1SkupGNKYKY5A1W1yAPY=", "createTime": "2024-08-15 14:51:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.385249+00 2025-12-09 10:15:11.385254+00 11225 FHXGPK5-001-4 SPMX-20240815306404 \N \N \N 1 \N [{"file_id": "99fc403e-6eb6-42ef-8f7c-76c91d4a5d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b50c7ea15d1e4e11b0f46be3ccf51c69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b50c7ea15d1e4e11b0f46be3ccf51c69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b50c7ea15d1e4e11b0f46be3ccf51c69.jpg", "file_size": 34832, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50c7ea15d1e4e11b0f46be3ccf51c69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50c7ea15d1e4e11b0f46be3ccf51c69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50c7ea15d1e4e11b0f46be3ccf51c69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b50c7ea15d1e4e11b0f46be3ccf51c69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b50c7ea15d1e4e11b0f46be3ccf51c69.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UoBMmiw0LeMyeFuGGyC7pAsjcw=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.387338+00 2025-12-09 10:15:11.387343+00 11226 JTSS254FW#VS-D3 SPMX-20240815306406 \N \N \N 1 \N [{"file_id": "0d7aa010-bebb-4924-a540-f74763a74c59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9287ebe13f24420eb0e5ab3ba15b4a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9287ebe13f24420eb0e5ab3ba15b4a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9287ebe13f24420eb0e5ab3ba15b4a5c.jpg", "file_size": 14254, "is_delete": false, "file_type": 1, "original_file_name": "JTSS254FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9287ebe13f24420eb0e5ab3ba15b4a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9287ebe13f24420eb0e5ab3ba15b4a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9287ebe13f24420eb0e5ab3ba15b4a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9287ebe13f24420eb0e5ab3ba15b4a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9287ebe13f24420eb0e5ab3ba15b4a5c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B-E_8s6VSsWeSpd12DNmjFu0mVw=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.389416+00 2025-12-09 10:15:11.389425+00 11227 HT071FWE#蓝色龙潭调色VS-D3 SPMX-20240815306400 \N \N \N 1 \N [{"file_id": "51b3337d-df5a-48ad-83c9-e17a2b7732cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7bfbf8ceae34534a5b8eb04378da0e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7bfbf8ceae34534a5b8eb04378da0e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7bfbf8ceae34534a5b8eb04378da0e5.jpg", "file_size": 16236, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#蓝色龙潭调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bfbf8ceae34534a5b8eb04378da0e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bfbf8ceae34534a5b8eb04378da0e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bfbf8ceae34534a5b8eb04378da0e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7bfbf8ceae34534a5b8eb04378da0e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7bfbf8ceae34534a5b8eb04378da0e5.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSB8aRRCl3nkIyWigiRTQ1sYAX0=", "createTime": "2024-08-15 14:51:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.391389+00 2025-12-09 10:15:11.391394+00 11228 8131#长袖匹布黑白 SPMX-20240815306410 \N \N \N 1 \N [{"file_id": "ac7ec296-6f3b-4fc7-8e1a-ebe8bab130e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d364ba1370e4662b5bc41a86f61f38f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d364ba1370e4662b5bc41a86f61f38f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d364ba1370e4662b5bc41a86f61f38f.jpg", "file_size": 25450, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖匹布黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d364ba1370e4662b5bc41a86f61f38f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d364ba1370e4662b5bc41a86f61f38f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d364ba1370e4662b5bc41a86f61f38f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d364ba1370e4662b5bc41a86f61f38f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d364ba1370e4662b5bc41a86f61f38f.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GevvvbHrBiTM0mU0un0xvTLKeAU=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.393457+00 2025-12-09 10:15:11.393463+00 11229 LZ1286#背心款3号色 SPMX-20240815306411 \N \N \N 1 \N [{"file_id": "7dae3993-a4d1-4b40-a951-3a3db443ba8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19e96c084db04718b84521cee4c8e9d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19e96c084db04718b84521cee4c8e9d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19e96c084db04718b84521cee4c8e9d3.jpg", "file_size": 19457, "is_delete": false, "file_type": 1, "original_file_name": "LZ1286#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e96c084db04718b84521cee4c8e9d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e96c084db04718b84521cee4c8e9d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e96c084db04718b84521cee4c8e9d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19e96c084db04718b84521cee4c8e9d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19e96c084db04718b84521cee4c8e9d3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZeZaBKLJODGJHU1maoYJBk4UIw=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.395489+00 2025-12-09 10:15:11.395494+00 11230 FHXGPK5-001-5 SPMX-20240815306413 \N \N \N 1 \N [{"file_id": "bea18174-0276-4541-8102-9a796bf9d9b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f0f1af5e2ae470c80865b86606643d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f0f1af5e2ae470c80865b86606643d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f0f1af5e2ae470c80865b86606643d0.jpg", "file_size": 31462, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-001-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f1af5e2ae470c80865b86606643d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f1af5e2ae470c80865b86606643d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0f1af5e2ae470c80865b86606643d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f0f1af5e2ae470c80865b86606643d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f0f1af5e2ae470c80865b86606643d0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQzMcKzijUuUIM7wZMtlwjoSw4o=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.397542+00 2025-12-09 10:15:11.397546+00 11231 0003-93FWF#V5曲线 SPMX-20240815306415 \N \N \N 1 \N [{"file_id": "bde9c209-12d7-4435-b6e1-fe12375c479d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9135883913b443a49bf8eec2a6af73ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9135883913b443a49bf8eec2a6af73ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9135883913b443a49bf8eec2a6af73ef.jpg", "file_size": 18747, "is_delete": false, "file_type": 1, "original_file_name": "0003-93FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9135883913b443a49bf8eec2a6af73ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9135883913b443a49bf8eec2a6af73ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9135883913b443a49bf8eec2a6af73ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9135883913b443a49bf8eec2a6af73ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9135883913b443a49bf8eec2a6af73ef.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F67ahsnSgTzxQyXFF7QV7VlM7LE=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.399363+00 2025-12-09 10:15:11.399368+00 11232 JTSS255FW#VS-D3 SPMX-20240815306412 \N \N \N 1 \N [{"file_id": "aa501d1f-3616-4cef-9f07-3fcda84620d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cea19e2e62394fe79a73c2a3b713ef01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cea19e2e62394fe79a73c2a3b713ef01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cea19e2e62394fe79a73c2a3b713ef01.jpg", "file_size": 15169, "is_delete": false, "file_type": 1, "original_file_name": "JTSS255FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea19e2e62394fe79a73c2a3b713ef01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea19e2e62394fe79a73c2a3b713ef01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea19e2e62394fe79a73c2a3b713ef01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cea19e2e62394fe79a73c2a3b713ef01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cea19e2e62394fe79a73c2a3b713ef01.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7pJM7EdUB2XRKsrs6Ut0Tzv1QE=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.4013+00 2025-12-09 10:15:11.401305+00 11233 LJ9982FW#灰S VS-D3 SPMX-20240815306417 \N \N \N 1 \N [{"file_id": "2b0358a5-8da0-4226-a910-95ae7e6a1ccf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07596c3f334d4ee5af51980e4ec47ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07596c3f334d4ee5af51980e4ec47ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07596c3f334d4ee5af51980e4ec47ae5.jpg", "file_size": 13650, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#灰S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07596c3f334d4ee5af51980e4ec47ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07596c3f334d4ee5af51980e4ec47ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07596c3f334d4ee5af51980e4ec47ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07596c3f334d4ee5af51980e4ec47ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07596c3f334d4ee5af51980e4ec47ae5.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zt_SaYTxnhpo0dgiBdM7q810xus=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.403484+00 2025-12-09 10:15:11.403489+00 11234 HT071FWE#薄荷蓝番禺调色VS-D3 SPMX-20240815306409 \N \N \N 1 \N [{"file_id": "257f9226-3ea3-4a09-bcfd-d0a74bf46895", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4a7b5caa5c94bdeadc7c45fc03827b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4a7b5caa5c94bdeadc7c45fc03827b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4a7b5caa5c94bdeadc7c45fc03827b0.jpg", "file_size": 13609, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#薄荷蓝番禺调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a7b5caa5c94bdeadc7c45fc03827b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a7b5caa5c94bdeadc7c45fc03827b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a7b5caa5c94bdeadc7c45fc03827b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4a7b5caa5c94bdeadc7c45fc03827b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4a7b5caa5c94bdeadc7c45fc03827b0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-oFW4WB2IllIBbXExydXlqXlKg=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.406148+00 2025-12-09 10:15:11.406153+00 11235 23-2117#A5-领子3XL SPMX-20240815306418 \N \N \N 1 \N [{"file_id": "dc4045f6-b626-4088-b181-258733573379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2713944533e04baa9118d72d97a6996c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2713944533e04baa9118d72d97a6996c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2713944533e04baa9118d72d97a6996c.jpg", "file_size": 11641, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713944533e04baa9118d72d97a6996c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713944533e04baa9118d72d97a6996c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713944533e04baa9118d72d97a6996c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2713944533e04baa9118d72d97a6996c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2713944533e04baa9118d72d97a6996c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KWTxVdWPlwv4vApkiF0Q6kLYRAg=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.408917+00 2025-12-09 10:15:11.408924+00 11236 C426#黑色 SPMX-20240815306414 \N \N \N 1 \N [{"file_id": "9228faad-d230-44c2-a132-9d31b861c029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "501372051f914f44a4e1ee3154fff845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "501372051f914f44a4e1ee3154fff845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "501372051f914f44a4e1ee3154fff845.jpg", "file_size": 36429, "is_delete": false, "file_type": 1, "original_file_name": "C426#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501372051f914f44a4e1ee3154fff845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501372051f914f44a4e1ee3154fff845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501372051f914f44a4e1ee3154fff845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/501372051f914f44a4e1ee3154fff845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/501372051f914f44a4e1ee3154fff845.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZvQEOvTY8eOjwPkVocUTYikJDY=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.411643+00 2025-12-09 10:15:11.411649+00 11237 DL30802#29#蓝绿 SPMX-20240815306408 \N \N \N 1 \N [{"file_id": "df4007fc-5c30-4699-b1cf-cb8b2ca934e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a89b25200d82408db9c8200362828ed7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a89b25200d82408db9c8200362828ed7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a89b25200d82408db9c8200362828ed7.jpg", "file_size": 28950, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#29#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89b25200d82408db9c8200362828ed7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89b25200d82408db9c8200362828ed7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89b25200d82408db9c8200362828ed7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a89b25200d82408db9c8200362828ed7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a89b25200d82408db9c8200362828ed7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztb0rb-lV8DMi0qgVznRhQbLLw4=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.414622+00 2025-12-09 10:15:11.414628+00 11238 1102#土黄 SPMX-20240815306416 \N \N \N 1 \N [{"file_id": "8043cd0b-4dc2-46c6-9239-2840d6c9f858", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2acfb9d4320465ca85ac81774683c84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2acfb9d4320465ca85ac81774683c84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2acfb9d4320465ca85ac81774683c84.jpg", "file_size": 13753, "is_delete": false, "file_type": 1, "original_file_name": "1102#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2acfb9d4320465ca85ac81774683c84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2acfb9d4320465ca85ac81774683c84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2acfb9d4320465ca85ac81774683c84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2acfb9d4320465ca85ac81774683c84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2acfb9d4320465ca85ac81774683c84.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cA5cr58j8D9MpWYBQAsm6PcHodY=", "createTime": "2024-08-15 14:51:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.417342+00 2025-12-09 10:15:11.417348+00 11239 JTSS256FW#VS-D3 SPMX-20240815306425 \N \N \N 1 \N [{"file_id": "89d73c09-2a45-4310-b33b-2a5b1a3c9d3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac883072ffd4b79929513d997b9a279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac883072ffd4b79929513d997b9a279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac883072ffd4b79929513d997b9a279.jpg", "file_size": 13246, "is_delete": false, "file_type": 1, "original_file_name": "JTSS256FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac883072ffd4b79929513d997b9a279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac883072ffd4b79929513d997b9a279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac883072ffd4b79929513d997b9a279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac883072ffd4b79929513d997b9a279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac883072ffd4b79929513d997b9a279.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4-9CK5IaSn1vQuzghnal-vIkt4=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.419789+00 2025-12-09 10:15:11.419795+00 11240 LZ1286#背心款4号色 SPMX-20240815306421 \N \N \N 1 \N [{"file_id": "cc80430f-5daa-4129-b950-f2ccb2093c1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25edf7e7582a4600a9994813f0eb6c30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25edf7e7582a4600a9994813f0eb6c30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25edf7e7582a4600a9994813f0eb6c30.jpg", "file_size": 19593, "is_delete": false, "file_type": 1, "original_file_name": "LZ1286#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25edf7e7582a4600a9994813f0eb6c30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25edf7e7582a4600a9994813f0eb6c30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25edf7e7582a4600a9994813f0eb6c30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25edf7e7582a4600a9994813f0eb6c30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25edf7e7582a4600a9994813f0eb6c30.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELwk8ZsQlyabbH-UcakFvrmF6xI=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.421933+00 2025-12-09 10:15:11.421938+00 11241 8131#长袖匹布黑红 SPMX-20240815306422 \N \N \N 1 \N [{"file_id": "a6a76233-a541-4411-b743-e45dd9073d82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cf9aa4deb6c49fab3db17429a8a9842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cf9aa4deb6c49fab3db17429a8a9842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cf9aa4deb6c49fab3db17429a8a9842.jpg", "file_size": 25593, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖匹布黑红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf9aa4deb6c49fab3db17429a8a9842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf9aa4deb6c49fab3db17429a8a9842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf9aa4deb6c49fab3db17429a8a9842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cf9aa4deb6c49fab3db17429a8a9842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cf9aa4deb6c49fab3db17429a8a9842.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSF2WNMvuUa5hxxgVR1rXfCXcSU=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.423992+00 2025-12-09 10:15:11.423997+00 11242 DL30802#4#彩兰 SPMX-20240815306420 \N \N \N 1 \N [{"file_id": "77a03569-8235-4607-916b-6336be929892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0f54829d8674e59b8c713234e93f51c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0f54829d8674e59b8c713234e93f51c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0f54829d8674e59b8c713234e93f51c.jpg", "file_size": 29527, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#4#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f54829d8674e59b8c713234e93f51c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f54829d8674e59b8c713234e93f51c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f54829d8674e59b8c713234e93f51c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0f54829d8674e59b8c713234e93f51c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0f54829d8674e59b8c713234e93f51c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kc6ojixPTW4ChSfyUe5Ab7U12B0=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.426015+00 2025-12-09 10:15:11.426019+00 11243 FHXGPK5-002-1 SPMX-20240815306424 \N \N \N 1 \N [{"file_id": "e8bfa006-0af0-4dfd-b707-5e7b3694ef60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c6eebf7b79d42f39de6f126c7ec9e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c6eebf7b79d42f39de6f126c7ec9e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c6eebf7b79d42f39de6f126c7ec9e34.jpg", "file_size": 33781, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6eebf7b79d42f39de6f126c7ec9e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6eebf7b79d42f39de6f126c7ec9e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6eebf7b79d42f39de6f126c7ec9e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c6eebf7b79d42f39de6f126c7ec9e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c6eebf7b79d42f39de6f126c7ec9e34.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXGbgC01Z2dolTrCO0LpZMzhcK4=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.428095+00 2025-12-09 10:15:11.4281+00 11244 C427#大白 SPMX-20240815306423 \N \N \N 1 \N [{"file_id": "7bb12af4-2a64-4bcb-9934-a0baecffa22b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f105735cf774143b6a55b06adcf5307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f105735cf774143b6a55b06adcf5307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f105735cf774143b6a55b06adcf5307.jpg", "file_size": 58697, "is_delete": false, "file_type": 1, "original_file_name": "C427#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f105735cf774143b6a55b06adcf5307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f105735cf774143b6a55b06adcf5307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f105735cf774143b6a55b06adcf5307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f105735cf774143b6a55b06adcf5307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f105735cf774143b6a55b06adcf5307.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrBVCW-qvDi5Ol7rkRS7kpk2kwg=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.4308+00 2025-12-09 10:15:11.430806+00 11245 HT071FWE#薄荷蓝龙潭调色VS-D3 SPMX-20240815306419 \N \N \N 1 \N [{"file_id": "af899edd-9d05-4e71-ac7f-99c3b851fe69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8831921ab2c340838807ec2cb99816c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8831921ab2c340838807ec2cb99816c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8831921ab2c340838807ec2cb99816c3.jpg", "file_size": 13378, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#薄荷蓝龙潭调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8831921ab2c340838807ec2cb99816c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8831921ab2c340838807ec2cb99816c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8831921ab2c340838807ec2cb99816c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8831921ab2c340838807ec2cb99816c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8831921ab2c340838807ec2cb99816c3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UujkeeyeBmhOHia-Ru32oHZYsz0=", "createTime": "2024-08-15 14:52:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.432958+00 2025-12-09 10:15:11.432963+00 11246 HT071FWE#黄色VS-D3 SPMX-20240815306432 \N \N \N 1 \N [{"file_id": "5bb63985-2221-44f2-90b1-da758603b57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7be2c93b44cc4d5193c9d082e29579d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7be2c93b44cc4d5193c9d082e29579d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7be2c93b44cc4d5193c9d082e29579d7.jpg", "file_size": 13137, "is_delete": false, "file_type": 1, "original_file_name": "HT071FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be2c93b44cc4d5193c9d082e29579d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be2c93b44cc4d5193c9d082e29579d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7be2c93b44cc4d5193c9d082e29579d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7be2c93b44cc4d5193c9d082e29579d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7be2c93b44cc4d5193c9d082e29579d7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kpFIM5dC1LzSVBkniNVWVSnBHf4=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.434793+00 2025-12-09 10:15:11.434799+00 11247 23-2117#A5-领子4XL SPMX-20240815306429 \N \N \N 1 \N [{"file_id": "984eedfe-07d5-4939-aa94-4b62622686bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6c5fc5c4e964fe39def9eb953dbe02c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6c5fc5c4e964fe39def9eb953dbe02c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6c5fc5c4e964fe39def9eb953dbe02c.jpg", "file_size": 11492, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6c5fc5c4e964fe39def9eb953dbe02c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6c5fc5c4e964fe39def9eb953dbe02c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6c5fc5c4e964fe39def9eb953dbe02c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6c5fc5c4e964fe39def9eb953dbe02c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6c5fc5c4e964fe39def9eb953dbe02c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhgJgPFTwV0hBrP7hms-udqps4s=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.436665+00 2025-12-09 10:15:11.436669+00 11248 LJ9982FW#灰XL VS-D3 SPMX-20240815306426 \N \N \N 1 \N [{"file_id": "1a4b4c57-8f3c-4a9f-a808-2a551e436492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d4d570d881d4dbda19d63f2b4c02568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d4d570d881d4dbda19d63f2b4c02568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d4d570d881d4dbda19d63f2b4c02568.jpg", "file_size": 12897, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#灰XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d4d570d881d4dbda19d63f2b4c02568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d4d570d881d4dbda19d63f2b4c02568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d4d570d881d4dbda19d63f2b4c02568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d4d570d881d4dbda19d63f2b4c02568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d4d570d881d4dbda19d63f2b4c02568.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_RPNjHeZ48afY1JA_rwHhUNOuw=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.438701+00 2025-12-09 10:15:11.43871+00 11249 1102#枣红 SPMX-20240815306427 \N \N \N 1 \N [{"file_id": "436a14e1-6e71-4683-9521-dfc2b06c4b6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd324926f7544adb8296f84b3830e44f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd324926f7544adb8296f84b3830e44f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd324926f7544adb8296f84b3830e44f.jpg", "file_size": 14440, "is_delete": false, "file_type": 1, "original_file_name": "1102#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd324926f7544adb8296f84b3830e44f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd324926f7544adb8296f84b3830e44f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd324926f7544adb8296f84b3830e44f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd324926f7544adb8296f84b3830e44f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd324926f7544adb8296f84b3830e44f.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6NE4UtD0W833inLUJdkKyduWqoM=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.440717+00 2025-12-09 10:15:11.440722+00 11250 C427#橙色 SPMX-20240815306433 \N \N \N 1 \N [{"file_id": "b8a6553d-607e-40ec-80af-f8d15d4f5a34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca9f04e4d9714710944cba80eb59f734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca9f04e4d9714710944cba80eb59f734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca9f04e4d9714710944cba80eb59f734.jpg", "file_size": 73344, "is_delete": false, "file_type": 1, "original_file_name": "C427#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9f04e4d9714710944cba80eb59f734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9f04e4d9714710944cba80eb59f734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9f04e4d9714710944cba80eb59f734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca9f04e4d9714710944cba80eb59f734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca9f04e4d9714710944cba80eb59f734.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23anLmrPBl7l4zqrKThAst2o8Qg=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.442507+00 2025-12-09 10:15:11.442512+00 11251 LZ1286#背心款5号色 SPMX-20240815306431 \N \N \N 1 \N [{"file_id": "054cce18-be88-438f-86a5-7b339c491964", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4b36ef70c50426b83d9160ab89a419c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4b36ef70c50426b83d9160ab89a419c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4b36ef70c50426b83d9160ab89a419c.jpg", "file_size": 19823, "is_delete": false, "file_type": 1, "original_file_name": "LZ1286#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b36ef70c50426b83d9160ab89a419c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b36ef70c50426b83d9160ab89a419c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b36ef70c50426b83d9160ab89a419c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4b36ef70c50426b83d9160ab89a419c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4b36ef70c50426b83d9160ab89a419c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKLqVQDzL9YWYZKzPCzEgpgjkNk=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.444508+00 2025-12-09 10:15:11.444513+00 11252 DL30802#5#玫红 SPMX-20240815306435 \N \N \N 1 \N [{"file_id": "a9a4ec01-6ddf-4d39-81d4-67d8db23b49a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7c7dd1cfa9342f5a111927b8360c356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7c7dd1cfa9342f5a111927b8360c356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7c7dd1cfa9342f5a111927b8360c356.jpg", "file_size": 28922, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c7dd1cfa9342f5a111927b8360c356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c7dd1cfa9342f5a111927b8360c356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c7dd1cfa9342f5a111927b8360c356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7c7dd1cfa9342f5a111927b8360c356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7c7dd1cfa9342f5a111927b8360c356.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrVUMFk3W4eWugxsROx1ItKA1Tc=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.4465+00 2025-12-09 10:15:11.446504+00 11253 JTSS257FW#VS-D3 SPMX-20240815306436 \N \N \N 1 \N [{"file_id": "c16e97ce-1bd8-40d2-be2b-47ecf0c5d804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a4eae90cb0f4eb8aeb91f036f889b52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a4eae90cb0f4eb8aeb91f036f889b52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a4eae90cb0f4eb8aeb91f036f889b52.jpg", "file_size": 8045, "is_delete": false, "file_type": 1, "original_file_name": "JTSS257FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4eae90cb0f4eb8aeb91f036f889b52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4eae90cb0f4eb8aeb91f036f889b52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4eae90cb0f4eb8aeb91f036f889b52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a4eae90cb0f4eb8aeb91f036f889b52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a4eae90cb0f4eb8aeb91f036f889b52.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2QAOiymdSVd55vvZ0xj_iZLIpeI=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.448504+00 2025-12-09 10:15:11.448509+00 11254 0003-94FWF#V5曲线 SPMX-20240815306428 \N \N \N 1 \N [{"file_id": "6916eff6-df23-4f0e-8c4b-1dc5a6318dc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a57a3411a1f44bcda7a965bc4de1b4ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a57a3411a1f44bcda7a965bc4de1b4ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a57a3411a1f44bcda7a965bc4de1b4ca.jpg", "file_size": 25869, "is_delete": false, "file_type": 1, "original_file_name": "0003-94FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57a3411a1f44bcda7a965bc4de1b4ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57a3411a1f44bcda7a965bc4de1b4ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57a3411a1f44bcda7a965bc4de1b4ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a57a3411a1f44bcda7a965bc4de1b4ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a57a3411a1f44bcda7a965bc4de1b4ca.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPbRlRQt23EY3xM5ugefhZdsSy0=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.450522+00 2025-12-09 10:15:11.450527+00 11255 FHXGPK5-002-2 SPMX-20240815306430 \N \N \N 1 \N [{"file_id": "bc720dfd-6d7a-4775-aed1-3515147f162c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc7873fba2d47b5803940fb118189fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc7873fba2d47b5803940fb118189fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc7873fba2d47b5803940fb118189fc.jpg", "file_size": 36269, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc7873fba2d47b5803940fb118189fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc7873fba2d47b5803940fb118189fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc7873fba2d47b5803940fb118189fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc7873fba2d47b5803940fb118189fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc7873fba2d47b5803940fb118189fc.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJd-yKWt3hKA3oXu7bws7DU-0Zk=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.452557+00 2025-12-09 10:15:11.452562+00 11256 8131#长袖裤子黑白 SPMX-20240815306434 \N \N \N 1 \N [{"file_id": "c13a6339-e999-495d-b254-3989a2f0da1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c22f71c6eba475a831122503374d292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c22f71c6eba475a831122503374d292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c22f71c6eba475a831122503374d292.jpg", "file_size": 18343, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖裤子黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c22f71c6eba475a831122503374d292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c22f71c6eba475a831122503374d292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c22f71c6eba475a831122503374d292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c22f71c6eba475a831122503374d292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c22f71c6eba475a831122503374d292.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thNGF6x3b-FQFMMRKX2shO8yLsU=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.454596+00 2025-12-09 10:15:11.454601+00 11257 8131#长袖裤子黑红 SPMX-20240815306444 \N \N \N 1 \N [{"file_id": "52e927bb-6fe1-41e5-804b-c450746e6f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1050ad29f6924bba8397bd25623487cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1050ad29f6924bba8397bd25623487cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1050ad29f6924bba8397bd25623487cf.jpg", "file_size": 17810, "is_delete": false, "file_type": 1, "original_file_name": "8131#长袖裤子黑红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1050ad29f6924bba8397bd25623487cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1050ad29f6924bba8397bd25623487cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1050ad29f6924bba8397bd25623487cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1050ad29f6924bba8397bd25623487cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1050ad29f6924bba8397bd25623487cf.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofdPwVXO8lHwwSj4tNb_o-oys94=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.456639+00 2025-12-09 10:15:11.456643+00 11258 HT072FW#VS-D3黄 SPMX-20240815306443 \N \N \N 1 \N [{"file_id": "ac2b33f8-d3fe-4ce1-a2b8-e2cf6e0d5611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91310302b6d14630ba226b471e84f63b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91310302b6d14630ba226b471e84f63b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91310302b6d14630ba226b471e84f63b.jpg", "file_size": 8184, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91310302b6d14630ba226b471e84f63b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91310302b6d14630ba226b471e84f63b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91310302b6d14630ba226b471e84f63b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91310302b6d14630ba226b471e84f63b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91310302b6d14630ba226b471e84f63b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_81VH7GRSgyBE8Y_HYSHInc2GOQ=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.458625+00 2025-12-09 10:15:11.45863+00 11259 1102#粉色 SPMX-20240815306438 \N \N \N 1 \N [{"file_id": "89096ba3-52a9-41de-89b2-2e58b64aa0c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f60a091f9eb042bcb425e7201b1ce292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f60a091f9eb042bcb425e7201b1ce292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f60a091f9eb042bcb425e7201b1ce292.jpg", "file_size": 13132, "is_delete": false, "file_type": 1, "original_file_name": "1102#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60a091f9eb042bcb425e7201b1ce292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60a091f9eb042bcb425e7201b1ce292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f60a091f9eb042bcb425e7201b1ce292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f60a091f9eb042bcb425e7201b1ce292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f60a091f9eb042bcb425e7201b1ce292.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCaS55_41yejfAZ2JUIS1uQFKhY=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.46068+00 2025-12-09 10:15:11.460685+00 11260 0003-95FWF#V5曲线 SPMX-20240815306439 \N \N \N 1 \N [{"file_id": "96fc34b6-438d-48ee-b0c7-ea6584e26b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c28b50fa056349f3a888d18b7fc58c47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c28b50fa056349f3a888d18b7fc58c47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c28b50fa056349f3a888d18b7fc58c47.jpg", "file_size": 14079, "is_delete": false, "file_type": 1, "original_file_name": "0003-95FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28b50fa056349f3a888d18b7fc58c47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28b50fa056349f3a888d18b7fc58c47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c28b50fa056349f3a888d18b7fc58c47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c28b50fa056349f3a888d18b7fc58c47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c28b50fa056349f3a888d18b7fc58c47.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNT6tVGvTkiYD41TYSdpbxZk038=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.462672+00 2025-12-09 10:15:11.462677+00 11261 LJ9982FW#白2XL VS-D3 SPMX-20240815306437 \N \N \N 1 \N [{"file_id": "3c2abd0e-9f70-44c9-b9c7-5bd2b9262cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf3027e02be24531b96f88ad5ddd04ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf3027e02be24531b96f88ad5ddd04ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf3027e02be24531b96f88ad5ddd04ac.jpg", "file_size": 13543, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#白2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3027e02be24531b96f88ad5ddd04ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3027e02be24531b96f88ad5ddd04ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3027e02be24531b96f88ad5ddd04ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf3027e02be24531b96f88ad5ddd04ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf3027e02be24531b96f88ad5ddd04ac.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FyPVUgq78csl5AZiXerXhcbaFEU=", "createTime": "2024-08-15 14:52:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.464674+00 2025-12-09 10:15:11.464679+00 11262 JTSS258FW#VS-D3 SPMX-20240815306446 \N \N \N 1 \N [{"file_id": "8d75defb-54cc-483d-a16b-79ee19a1f5a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5bb500697a54deb84ff414c3a8f7682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5bb500697a54deb84ff414c3a8f7682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5bb500697a54deb84ff414c3a8f7682.jpg", "file_size": 9172, "is_delete": false, "file_type": 1, "original_file_name": "JTSS258FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bb500697a54deb84ff414c3a8f7682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bb500697a54deb84ff414c3a8f7682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bb500697a54deb84ff414c3a8f7682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5bb500697a54deb84ff414c3a8f7682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5bb500697a54deb84ff414c3a8f7682.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:688-IsHxWtbOPVyKskzr3hwEPI8=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.466679+00 2025-12-09 10:15:11.466684+00 11263 FHXGPK5-002-3 SPMX-20240815306441 \N \N \N 1 \N [{"file_id": "5b5c301b-2654-4302-8c44-2db75f16d375", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f48fac94ad8d45a788abf546109850ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f48fac94ad8d45a788abf546109850ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f48fac94ad8d45a788abf546109850ad.jpg", "file_size": 36051, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f48fac94ad8d45a788abf546109850ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f48fac94ad8d45a788abf546109850ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f48fac94ad8d45a788abf546109850ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f48fac94ad8d45a788abf546109850ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f48fac94ad8d45a788abf546109850ad.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TULrfzfRyW8VGucqJW2BpSgtAQ=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.468707+00 2025-12-09 10:15:11.468713+00 11264 23-2117#A6-3XL SPMX-20240815306440 \N \N \N 1 \N [{"file_id": "eefddf19-6821-4174-adf1-50b2eceec0d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfc9c3710c484adbbc1a0cc20d08ce14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfc9c3710c484adbbc1a0cc20d08ce14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfc9c3710c484adbbc1a0cc20d08ce14.jpg", "file_size": 18292, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc9c3710c484adbbc1a0cc20d08ce14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc9c3710c484adbbc1a0cc20d08ce14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc9c3710c484adbbc1a0cc20d08ce14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfc9c3710c484adbbc1a0cc20d08ce14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfc9c3710c484adbbc1a0cc20d08ce14.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7pSxSyjs2N3Aa2NgJcOfoSKbe0=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.470719+00 2025-12-09 10:15:11.470724+00 11265 LZ1287#背心款1号色 SPMX-20240815306442 \N \N \N 1 \N [{"file_id": "3eebdc23-a0e5-4164-b2f1-83b014712974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c4ff42518b148f7969fca1cc4c7cce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c4ff42518b148f7969fca1cc4c7cce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c4ff42518b148f7969fca1cc4c7cce8.jpg", "file_size": 17886, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4ff42518b148f7969fca1cc4c7cce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4ff42518b148f7969fca1cc4c7cce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4ff42518b148f7969fca1cc4c7cce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c4ff42518b148f7969fca1cc4c7cce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c4ff42518b148f7969fca1cc4c7cce8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8DhpPuWQ7kGf2wvU4v9sgYjWI4E=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.472719+00 2025-12-09 10:15:11.472724+00 11266 C427#绿色 SPMX-20240815306445 \N \N \N 1 \N [{"file_id": "69eb9173-6c85-4981-afb3-b80b1d6a98f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "812d8de2584e47e394bd3cb09f9400d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "812d8de2584e47e394bd3cb09f9400d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "812d8de2584e47e394bd3cb09f9400d9.jpg", "file_size": 62770, "is_delete": false, "file_type": 1, "original_file_name": "C427#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812d8de2584e47e394bd3cb09f9400d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812d8de2584e47e394bd3cb09f9400d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/812d8de2584e47e394bd3cb09f9400d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/812d8de2584e47e394bd3cb09f9400d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/812d8de2584e47e394bd3cb09f9400d9.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZeMz2ZZWgljP_Nx4vz_nLSCYVU=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.474751+00 2025-12-09 10:15:11.474756+00 11267 FHXGPK5-002-4 SPMX-20240815306454 \N \N \N 1 \N [{"file_id": "eb265029-e04f-423b-8b85-4a139faaeb61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31e76c129d554b4788e8f18af9c939de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31e76c129d554b4788e8f18af9c939de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31e76c129d554b4788e8f18af9c939de.jpg", "file_size": 33943, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e76c129d554b4788e8f18af9c939de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e76c129d554b4788e8f18af9c939de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e76c129d554b4788e8f18af9c939de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31e76c129d554b4788e8f18af9c939de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31e76c129d554b4788e8f18af9c939de.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lcd3oVSRaLEReSc5Lqsl7ez59g0=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.476778+00 2025-12-09 10:15:11.476783+00 11268 23-2117#A6-4XL SPMX-20240815306449 \N \N \N 1 \N [{"file_id": "51fa5484-60c9-4195-9f08-8a6b26085e07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30b13344092f4bd89cd79c713572cfdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30b13344092f4bd89cd79c713572cfdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30b13344092f4bd89cd79c713572cfdb.jpg", "file_size": 17438, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b13344092f4bd89cd79c713572cfdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b13344092f4bd89cd79c713572cfdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b13344092f4bd89cd79c713572cfdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30b13344092f4bd89cd79c713572cfdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30b13344092f4bd89cd79c713572cfdb.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vl8D9XfY9uqAjjp_UjWMcoY3VZc=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.478796+00 2025-12-09 10:15:11.4788+00 11269 DL30802#8#亮黄 SPMX-20240815306447 \N \N \N 1 \N [{"file_id": "e58dc907-742a-4d7c-bcfd-be965a986400", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2beb7ee77f3245dfabb976be5ef7d112.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2beb7ee77f3245dfabb976be5ef7d112.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2beb7ee77f3245dfabb976be5ef7d112.jpg", "file_size": 28092, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#8#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb7ee77f3245dfabb976be5ef7d112.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb7ee77f3245dfabb976be5ef7d112.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb7ee77f3245dfabb976be5ef7d112.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2beb7ee77f3245dfabb976be5ef7d112.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2beb7ee77f3245dfabb976be5ef7d112.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:41lGARBbEqB264CllOzf8FpxYOc=", "createTime": "2024-08-15 14:52:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.480811+00 2025-12-09 10:15:11.480816+00 11270 LZ1287#背心款23号色 SPMX-20240815306453 \N \N \N 1 \N [{"file_id": "782aa315-b0dd-4561-a446-72dc6944f74b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3770143cf3b6473697f084618f0ffffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3770143cf3b6473697f084618f0ffffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3770143cf3b6473697f084618f0ffffb.jpg", "file_size": 18541, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款23号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3770143cf3b6473697f084618f0ffffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3770143cf3b6473697f084618f0ffffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3770143cf3b6473697f084618f0ffffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3770143cf3b6473697f084618f0ffffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3770143cf3b6473697f084618f0ffffb.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0qwmUtOCyKwMlAh7J32FaZOGW4Y=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.482807+00 2025-12-09 10:15:11.482812+00 11271 8132#长袖 SPMX-20240815306457 \N \N \N 1 \N [{"file_id": "9ad3469c-14f0-4b2c-aabf-7818ff17f2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "157ccfe4cf0643c6a3eacca8c844a75b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "157ccfe4cf0643c6a3eacca8c844a75b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "157ccfe4cf0643c6a3eacca8c844a75b.jpg", "file_size": 25423, "is_delete": false, "file_type": 1, "original_file_name": "8132#长袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157ccfe4cf0643c6a3eacca8c844a75b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157ccfe4cf0643c6a3eacca8c844a75b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157ccfe4cf0643c6a3eacca8c844a75b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/157ccfe4cf0643c6a3eacca8c844a75b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/157ccfe4cf0643c6a3eacca8c844a75b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNwMGhsny-xK4AXphgZR-gGu2C0=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.484847+00 2025-12-09 10:15:11.484851+00 11272 HT072FW#橘色 SPMX-20240815306448 \N \N \N 1 \N [{"file_id": "5e039455-a1a3-4749-a317-89c034062094", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e635369ff1e457799bfa52c420f26a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e635369ff1e457799bfa52c420f26a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e635369ff1e457799bfa52c420f26a4.jpg", "file_size": 8410, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e635369ff1e457799bfa52c420f26a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e635369ff1e457799bfa52c420f26a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e635369ff1e457799bfa52c420f26a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e635369ff1e457799bfa52c420f26a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e635369ff1e457799bfa52c420f26a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KY6lViduxi6MH6TvPzNDUCKYtYk=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.48718+00 2025-12-09 10:15:11.487186+00 11273 0003-96FWF#V5曲线番禺调色 SPMX-20240815306450 \N \N \N 1 \N [{"file_id": "2625fc59-9d4f-4285-b5af-0b817e33e0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96828484186f4ad680a38f951f7f7d01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96828484186f4ad680a38f951f7f7d01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96828484186f4ad680a38f951f7f7d01.jpg", "file_size": 14696, "is_delete": false, "file_type": 1, "original_file_name": "0003-96FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96828484186f4ad680a38f951f7f7d01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96828484186f4ad680a38f951f7f7d01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96828484186f4ad680a38f951f7f7d01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96828484186f4ad680a38f951f7f7d01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96828484186f4ad680a38f951f7f7d01.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCBwiNPvmW_4k9gkSkvaop-byLk=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.489397+00 2025-12-09 10:15:11.489402+00 11274 LJ9982FW#白L VS-D3 SPMX-20240815306451 \N \N \N 1 \N [{"file_id": "21799679-0e52-4714-95e0-9b93fc242727", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73baf5bb019d44099c6426770b687089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73baf5bb019d44099c6426770b687089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73baf5bb019d44099c6426770b687089.jpg", "file_size": 14564, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#白L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73baf5bb019d44099c6426770b687089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73baf5bb019d44099c6426770b687089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73baf5bb019d44099c6426770b687089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73baf5bb019d44099c6426770b687089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73baf5bb019d44099c6426770b687089.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGwp_GT_NElvojlv_ZhLbveyyjk=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.491374+00 2025-12-09 10:15:11.49138+00 11275 1102#藏青 SPMX-20240815306452 \N \N \N 1 \N [{"file_id": "7884db4e-991f-4adf-be28-2697f40ac776", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134db889c03d499ba15e8316577f8b7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134db889c03d499ba15e8316577f8b7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134db889c03d499ba15e8316577f8b7e.jpg", "file_size": 14230, "is_delete": false, "file_type": 1, "original_file_name": "1102#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134db889c03d499ba15e8316577f8b7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134db889c03d499ba15e8316577f8b7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134db889c03d499ba15e8316577f8b7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134db889c03d499ba15e8316577f8b7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134db889c03d499ba15e8316577f8b7e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gFgA9BxrW-ihuOY8uPzvC9gH_c=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.493327+00 2025-12-09 10:15:11.493333+00 11276 JTSS259FW#VS-D3 SPMX-20240815306455 \N \N \N 1 \N [{"file_id": "589fff8f-5f0a-49f5-83b5-c48751936641", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8248c5b45cd74db889f216f3bc0eb34d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8248c5b45cd74db889f216f3bc0eb34d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8248c5b45cd74db889f216f3bc0eb34d.jpg", "file_size": 14530, "is_delete": false, "file_type": 1, "original_file_name": "JTSS259FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8248c5b45cd74db889f216f3bc0eb34d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8248c5b45cd74db889f216f3bc0eb34d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8248c5b45cd74db889f216f3bc0eb34d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8248c5b45cd74db889f216f3bc0eb34d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8248c5b45cd74db889f216f3bc0eb34d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaI76UExZRh9t6jdiZqSR5Lg0A0=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.495307+00 2025-12-09 10:15:11.495312+00 11277 C427#蓝色 SPMX-20240815306456 \N \N \N 1 \N [{"file_id": "2f589f6f-c7d3-4b05-86c6-8c59b4a0942f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3d30fb11b648dba81a25df9f121102.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3d30fb11b648dba81a25df9f121102.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3d30fb11b648dba81a25df9f121102.jpg", "file_size": 64395, "is_delete": false, "file_type": 1, "original_file_name": "C427#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d30fb11b648dba81a25df9f121102.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d30fb11b648dba81a25df9f121102.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d30fb11b648dba81a25df9f121102.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3d30fb11b648dba81a25df9f121102.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3d30fb11b648dba81a25df9f121102.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTBlTfD_UkJMK4ut1SWJ3JzDvv8=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.497272+00 2025-12-09 10:15:11.497278+00 11278 DL30802#9#枣红 SPMX-20240815306458 \N \N \N 1 \N [{"file_id": "8ccb5d73-6809-4470-9ba9-899351855095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fe9018b3a9c453b90be8e8259db6eb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fe9018b3a9c453b90be8e8259db6eb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fe9018b3a9c453b90be8e8259db6eb6.jpg", "file_size": 29273, "is_delete": false, "file_type": 1, "original_file_name": "DL30802#9#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fe9018b3a9c453b90be8e8259db6eb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fe9018b3a9c453b90be8e8259db6eb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fe9018b3a9c453b90be8e8259db6eb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fe9018b3a9c453b90be8e8259db6eb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fe9018b3a9c453b90be8e8259db6eb6.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:seo571Ya2oIFK6xY1U8ULxv7O2w=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.499237+00 2025-12-09 10:15:11.499242+00 11279 LJ9982FW#白M VS-D3 SPMX-20240815306461 \N \N \N 1 \N [{"file_id": "f589d6cc-5615-4901-a52c-9dfd10a4a240", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c8e34c182ef43c8a2b13257c1092f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c8e34c182ef43c8a2b13257c1092f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c8e34c182ef43c8a2b13257c1092f4d.jpg", "file_size": 14737, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#白M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8e34c182ef43c8a2b13257c1092f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8e34c182ef43c8a2b13257c1092f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c8e34c182ef43c8a2b13257c1092f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c8e34c182ef43c8a2b13257c1092f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c8e34c182ef43c8a2b13257c1092f4d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2HmPpgIdBFiiZrz9cIkXAJR30-4=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.501417+00 2025-12-09 10:15:11.501422+00 11280 C427#黑色 SPMX-20240815306466 \N \N \N 1 \N [{"file_id": "4b1650a1-d29b-40c7-ba8e-ffc0c759f2f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcd77cf578054add86de2a70238c6d65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcd77cf578054add86de2a70238c6d65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcd77cf578054add86de2a70238c6d65.jpg", "file_size": 67224, "is_delete": false, "file_type": 1, "original_file_name": "C427#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd77cf578054add86de2a70238c6d65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd77cf578054add86de2a70238c6d65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd77cf578054add86de2a70238c6d65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcd77cf578054add86de2a70238c6d65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcd77cf578054add86de2a70238c6d65.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yg_94FTINfn2iNMN0QYXJZbkQWg=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.503399+00 2025-12-09 10:15:11.503404+00 11281 JTSS260FW#VS-D3 SPMX-20240815306467 \N \N \N 1 \N [{"file_id": "d8bb0c1e-600c-454f-83d3-f4cf704b1e0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbe03eb15cb44a6f9ef089d41a471f9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbe03eb15cb44a6f9ef089d41a471f9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbe03eb15cb44a6f9ef089d41a471f9e.jpg", "file_size": 13786, "is_delete": false, "file_type": 1, "original_file_name": "JTSS260FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe03eb15cb44a6f9ef089d41a471f9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe03eb15cb44a6f9ef089d41a471f9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe03eb15cb44a6f9ef089d41a471f9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbe03eb15cb44a6f9ef089d41a471f9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbe03eb15cb44a6f9ef089d41a471f9e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXOVMJB0_o1NH_pHZtKNJ27DPwY=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.505381+00 2025-12-09 10:15:11.505386+00 11282 8132#长袖上衣 SPMX-20240815306469 \N \N \N 1 \N [{"file_id": "4a60a302-73e4-437d-a1e8-0af852412519", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf1223d794e940d3a7b71d137b4d4b13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf1223d794e940d3a7b71d137b4d4b13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf1223d794e940d3a7b71d137b4d4b13.jpg", "file_size": 21686, "is_delete": false, "file_type": 1, "original_file_name": "8132#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1223d794e940d3a7b71d137b4d4b13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1223d794e940d3a7b71d137b4d4b13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1223d794e940d3a7b71d137b4d4b13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf1223d794e940d3a7b71d137b4d4b13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf1223d794e940d3a7b71d137b4d4b13.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfUtwsZszt1HoSYUxzjJXEAWimY=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.507368+00 2025-12-09 10:15:11.507374+00 11283 DL30853#前幅墨绿 SPMX-20240815306468 \N \N \N 1 \N [{"file_id": "30c6436c-27ca-4c85-924c-c9fd29dcdff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38fe12754db945d59e7fbde9966fe247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38fe12754db945d59e7fbde9966fe247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38fe12754db945d59e7fbde9966fe247.jpg", "file_size": 16242, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe12754db945d59e7fbde9966fe247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe12754db945d59e7fbde9966fe247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38fe12754db945d59e7fbde9966fe247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38fe12754db945d59e7fbde9966fe247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38fe12754db945d59e7fbde9966fe247.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mtlgGDRjRIy14yqbFYn0vuPKjVY=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.509556+00 2025-12-09 10:15:11.509561+00 11284 HT072FW#橘门襟布 SPMX-20240815306459 \N \N \N 1 \N [{"file_id": "44685493-d3f5-4398-8632-5aa3418a703e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43a0f92fdea842d0b5ab59c5dd489514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43a0f92fdea842d0b5ab59c5dd489514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43a0f92fdea842d0b5ab59c5dd489514.jpg", "file_size": 21173, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#橘门襟布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a0f92fdea842d0b5ab59c5dd489514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a0f92fdea842d0b5ab59c5dd489514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a0f92fdea842d0b5ab59c5dd489514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43a0f92fdea842d0b5ab59c5dd489514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43a0f92fdea842d0b5ab59c5dd489514.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ppu6gHLIfNqAmp08YI3Kvb-ZIU=", "createTime": "2024-08-15 14:52:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.511521+00 2025-12-09 10:15:11.511527+00 11285 HT072FW#蓝色 SPMX-20240815306470 \N \N \N 1 \N [{"file_id": "77b26e2d-028a-4960-a15f-bc366a7cbe3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c68ea07326d442890990f2f5142b4a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c68ea07326d442890990f2f5142b4a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c68ea07326d442890990f2f5142b4a5.jpg", "file_size": 7833, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c68ea07326d442890990f2f5142b4a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c68ea07326d442890990f2f5142b4a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c68ea07326d442890990f2f5142b4a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c68ea07326d442890990f2f5142b4a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c68ea07326d442890990f2f5142b4a5.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJLQJw8Kl4YVACTonc4LXRISTos=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.513506+00 2025-12-09 10:15:11.513511+00 11286 FHXGPK5-002-5 SPMX-20240815306465 \N \N \N 1 \N [{"file_id": "8457e3ad-3ca4-4679-a0cd-64dcbdd1aa5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f88e3dec2950450a92027b9171bd63d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f88e3dec2950450a92027b9171bd63d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f88e3dec2950450a92027b9171bd63d7.jpg", "file_size": 31288, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-002-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88e3dec2950450a92027b9171bd63d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88e3dec2950450a92027b9171bd63d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88e3dec2950450a92027b9171bd63d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f88e3dec2950450a92027b9171bd63d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f88e3dec2950450a92027b9171bd63d7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-ouhQfCiykaRz5H9Ds51QJ0Vok=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.515457+00 2025-12-09 10:15:11.515462+00 11287 0003-97FWF#V5曲线番禺调色 SPMX-20240815306462 \N \N \N 1 \N [{"file_id": "227f26d9-1566-4748-886f-35c3cbd11ae0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0d207d7c2cd4302a01ed4d9de15509d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0d207d7c2cd4302a01ed4d9de15509d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0d207d7c2cd4302a01ed4d9de15509d.jpg", "file_size": 12575, "is_delete": false, "file_type": 1, "original_file_name": "0003-97FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d207d7c2cd4302a01ed4d9de15509d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d207d7c2cd4302a01ed4d9de15509d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d207d7c2cd4302a01ed4d9de15509d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0d207d7c2cd4302a01ed4d9de15509d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0d207d7c2cd4302a01ed4d9de15509d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIP7N39ZjCw9EgdSAKWZZVXcSpo=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.517417+00 2025-12-09 10:15:11.517422+00 11288 1104FWF#WJC22 SPMX-20240815306463 \N \N \N 1 \N [{"file_id": "407e5ae3-ad23-4ea9-8005-4386911d7ee6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c16c0edf05244f72a404b385fc52e17f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c16c0edf05244f72a404b385fc52e17f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c16c0edf05244f72a404b385fc52e17f.jpg", "file_size": 16744, "is_delete": false, "file_type": 1, "original_file_name": "1104FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16c0edf05244f72a404b385fc52e17f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16c0edf05244f72a404b385fc52e17f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16c0edf05244f72a404b385fc52e17f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c16c0edf05244f72a404b385fc52e17f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c16c0edf05244f72a404b385fc52e17f.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HoFb_tpmnbL60jacSFcLyjZgWSQ=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.519641+00 2025-12-09 10:15:11.519646+00 11289 LZ1287#背心款2号色 SPMX-20240815306464 \N \N \N 1 \N [{"file_id": "b842fdf6-d6e7-4976-abdd-bf9996af4c20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f20b073ed7e847e993e437e56028caee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f20b073ed7e847e993e437e56028caee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f20b073ed7e847e993e437e56028caee.jpg", "file_size": 18541, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20b073ed7e847e993e437e56028caee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20b073ed7e847e993e437e56028caee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20b073ed7e847e993e437e56028caee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f20b073ed7e847e993e437e56028caee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f20b073ed7e847e993e437e56028caee.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OeJmAW5eirYEOemgoeoskthw6Qo=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.521599+00 2025-12-09 10:15:11.521604+00 11290 23-2117#A6-领子3XL SPMX-20240815306460 \N \N \N 1 \N [{"file_id": "8a1bd2de-27bc-4cba-8811-1ccf61ebfa8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784277ab74094cb7962e7f64ff6b10a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784277ab74094cb7962e7f64ff6b10a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784277ab74094cb7962e7f64ff6b10a7.jpg", "file_size": 11614, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784277ab74094cb7962e7f64ff6b10a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784277ab74094cb7962e7f64ff6b10a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784277ab74094cb7962e7f64ff6b10a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784277ab74094cb7962e7f64ff6b10a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784277ab74094cb7962e7f64ff6b10a7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UN3T-qP5Ar5yoFeBVZ7vnzk3laY=", "createTime": "2024-08-15 14:52:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.523586+00 2025-12-09 10:15:11.523591+00 11291 8132#长袖匹布 SPMX-20240815306478 \N \N \N 1 \N [{"file_id": "7da8835e-a8d0-4c7b-946d-e3b17be4568c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f864383cd149189c9ac249b045fa6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f864383cd149189c9ac249b045fa6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f864383cd149189c9ac249b045fa6e.jpg", "file_size": 18265, "is_delete": false, "file_type": 1, "original_file_name": "8132#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f864383cd149189c9ac249b045fa6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f864383cd149189c9ac249b045fa6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f864383cd149189c9ac249b045fa6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f864383cd149189c9ac249b045fa6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f864383cd149189c9ac249b045fa6e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DaidifiMpyRcipW-iHeinLgukU0=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.52555+00 2025-12-09 10:15:11.525556+00 11292 FHXGPK5-003-1 SPMX-20240815306476 \N \N \N 1 \N [{"file_id": "712c684b-4e74-4e26-8454-17f8b63e8790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55dc5167982548d3b35cf17264a6ec90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55dc5167982548d3b35cf17264a6ec90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55dc5167982548d3b35cf17264a6ec90.jpg", "file_size": 32582, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55dc5167982548d3b35cf17264a6ec90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55dc5167982548d3b35cf17264a6ec90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55dc5167982548d3b35cf17264a6ec90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55dc5167982548d3b35cf17264a6ec90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55dc5167982548d3b35cf17264a6ec90.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBaIYlu8NHn6Wul00TzDh26p-gU=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.527543+00 2025-12-09 10:15:11.527548+00 11293 DL30853#前幅彩兰 SPMX-20240815306479 \N \N \N 1 \N [{"file_id": "d4ea3a02-aff2-4c0b-bf1c-2b8c8811d4e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44e122b76b4d48c48e7ab29cd2b9914c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44e122b76b4d48c48e7ab29cd2b9914c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44e122b76b4d48c48e7ab29cd2b9914c.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e122b76b4d48c48e7ab29cd2b9914c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e122b76b4d48c48e7ab29cd2b9914c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e122b76b4d48c48e7ab29cd2b9914c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44e122b76b4d48c48e7ab29cd2b9914c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44e122b76b4d48c48e7ab29cd2b9914c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LI8DMKjuwEM621wjjhWeHWGolZ8=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.529545+00 2025-12-09 10:15:11.52955+00 11294 LJ9982FW#白S VS-D3 SPMX-20240815306472 \N \N \N 1 \N [{"file_id": "2a7b670d-5830-4677-8803-0a7897f5f8f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a85be5b88c45bb94a75254a8d2d690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a85be5b88c45bb94a75254a8d2d690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a85be5b88c45bb94a75254a8d2d690.jpg", "file_size": 14227, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#白S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a85be5b88c45bb94a75254a8d2d690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a85be5b88c45bb94a75254a8d2d690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a85be5b88c45bb94a75254a8d2d690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a85be5b88c45bb94a75254a8d2d690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a85be5b88c45bb94a75254a8d2d690.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLZpUddfBBlt1RijE7KfzXJZlk8=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.531753+00 2025-12-09 10:15:11.531758+00 11295 23-2117#A6-领子4XL SPMX-20240815306471 \N \N \N 1 \N [{"file_id": "acec73d6-ea10-4c0c-bd94-6987837bbb91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6792cf47c0ea4fd48e8e043a883c71ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6792cf47c0ea4fd48e8e043a883c71ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6792cf47c0ea4fd48e8e043a883c71ab.jpg", "file_size": 11694, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6792cf47c0ea4fd48e8e043a883c71ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6792cf47c0ea4fd48e8e043a883c71ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6792cf47c0ea4fd48e8e043a883c71ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6792cf47c0ea4fd48e8e043a883c71ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6792cf47c0ea4fd48e8e043a883c71ab.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpFNrm5a-8bf-jZPP1b1nrXeFqY=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.533724+00 2025-12-09 10:15:11.533729+00 11296 1105#13#粉 SPMX-20240815306475 \N \N \N 1 \N [{"file_id": "7aeab4f9-2641-4289-8c01-d5bac458ec6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f66c0e9c5415444c8caa806874007ade.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f66c0e9c5415444c8caa806874007ade.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f66c0e9c5415444c8caa806874007ade.jpg", "file_size": 19411, "is_delete": false, "file_type": 1, "original_file_name": "1105#13#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66c0e9c5415444c8caa806874007ade.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66c0e9c5415444c8caa806874007ade.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66c0e9c5415444c8caa806874007ade.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f66c0e9c5415444c8caa806874007ade.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f66c0e9c5415444c8caa806874007ade.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iw49UB4G-3e80mZ2K05Gf_XKPA=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.535708+00 2025-12-09 10:15:11.535713+00 11297 LZ1287#背心款3号色 SPMX-20240815306473 \N \N \N 1 \N [{"file_id": "fd384c0c-54e5-47d9-812d-f2799f5a72b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edd3c11b556c46698c299a289fa34785.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edd3c11b556c46698c299a289fa34785.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edd3c11b556c46698c299a289fa34785.jpg", "file_size": 18597, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edd3c11b556c46698c299a289fa34785.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edd3c11b556c46698c299a289fa34785.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edd3c11b556c46698c299a289fa34785.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edd3c11b556c46698c299a289fa34785.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edd3c11b556c46698c299a289fa34785.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9iR9TYLSafphlM-j-w4ZY0ghVAE=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.537682+00 2025-12-09 10:15:11.537687+00 11298 0003-98FWF#V5曲线番禺调色 SPMX-20240815306474 \N \N \N 1 \N [{"file_id": "d7420782-068d-4fe1-93d9-360947cbcdbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcfd537f3cad424bb935db118b2ba467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcfd537f3cad424bb935db118b2ba467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcfd537f3cad424bb935db118b2ba467.jpg", "file_size": 13665, "is_delete": false, "file_type": 1, "original_file_name": "0003-98FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfd537f3cad424bb935db118b2ba467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfd537f3cad424bb935db118b2ba467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfd537f3cad424bb935db118b2ba467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcfd537f3cad424bb935db118b2ba467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcfd537f3cad424bb935db118b2ba467.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDtNH89oHo6RkbZwnJuw_HHzq-8=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.539663+00 2025-12-09 10:15:11.539668+00 11299 C428#兰色 SPMX-20240815306480 \N \N \N 1 \N [{"file_id": "c752a9c3-7417-4f45-aa23-cff1af7dd076", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5829acfa04b4240972a6153b7e6e297.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5829acfa04b4240972a6153b7e6e297.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5829acfa04b4240972a6153b7e6e297.jpg", "file_size": 41585, "is_delete": false, "file_type": 1, "original_file_name": "C428#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5829acfa04b4240972a6153b7e6e297.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5829acfa04b4240972a6153b7e6e297.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5829acfa04b4240972a6153b7e6e297.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5829acfa04b4240972a6153b7e6e297.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5829acfa04b4240972a6153b7e6e297.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFUEehteI1Z9oUB_L4RST9wTDXk=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.541644+00 2025-12-09 10:15:11.54165+00 11300 JTSS261FW#VS-D3 SPMX-20240815306477 \N \N \N 1 \N [{"file_id": "35e40cfd-1b63-4081-aa54-19544c0c0c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b42d6acd70f44b0b71c3cc9295cd57d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b42d6acd70f44b0b71c3cc9295cd57d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b42d6acd70f44b0b71c3cc9295cd57d.jpg", "file_size": 10916, "is_delete": false, "file_type": 1, "original_file_name": "JTSS261FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b42d6acd70f44b0b71c3cc9295cd57d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b42d6acd70f44b0b71c3cc9295cd57d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b42d6acd70f44b0b71c3cc9295cd57d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b42d6acd70f44b0b71c3cc9295cd57d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b42d6acd70f44b0b71c3cc9295cd57d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNQZr32MS0f2v8igPgOp77zVdHQ=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.543621+00 2025-12-09 10:15:11.543627+00 11301 HT072FW#蓝门襟布 SPMX-20240815306481 \N \N \N 1 \N [{"file_id": "e61056e7-ee87-4068-ae54-974e283bbfda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbb500630db94b0fafcad203e775e3fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbb500630db94b0fafcad203e775e3fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbb500630db94b0fafcad203e775e3fb.jpg", "file_size": 22265, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#蓝门襟布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbb500630db94b0fafcad203e775e3fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbb500630db94b0fafcad203e775e3fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbb500630db94b0fafcad203e775e3fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbb500630db94b0fafcad203e775e3fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbb500630db94b0fafcad203e775e3fb.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewxI1a66PqYdEZtOdfvRkw6rSRY=", "createTime": "2024-08-15 14:52:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.545826+00 2025-12-09 10:15:11.545831+00 11302 LZ1287#背心款4号色 SPMX-20240815306482 \N \N \N 1 \N [{"file_id": "11d6876f-5a0f-4424-9093-e7e07be657ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68e28edddaf94cda8233c860217e8118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68e28edddaf94cda8233c860217e8118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68e28edddaf94cda8233c860217e8118.jpg", "file_size": 18185, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68e28edddaf94cda8233c860217e8118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68e28edddaf94cda8233c860217e8118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68e28edddaf94cda8233c860217e8118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68e28edddaf94cda8233c860217e8118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68e28edddaf94cda8233c860217e8118.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hjhGUriHZ50pFN8ASanfQHkL48=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.547802+00 2025-12-09 10:15:11.547808+00 11303 LJ9982FW#白XL VS-D3 SPMX-20240815306483 \N \N \N 1 \N [{"file_id": "f3910015-2ed6-4106-8a25-f64c2db0cf22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c7b4a2aaae4a44a727365fcdfe97af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c7b4a2aaae4a44a727365fcdfe97af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c7b4a2aaae4a44a727365fcdfe97af.jpg", "file_size": 13620, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#白XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7b4a2aaae4a44a727365fcdfe97af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7b4a2aaae4a44a727365fcdfe97af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7b4a2aaae4a44a727365fcdfe97af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c7b4a2aaae4a44a727365fcdfe97af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c7b4a2aaae4a44a727365fcdfe97af.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLBS_HNcpP6KTcRzfu9nhEyr_fE=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.549773+00 2025-12-09 10:15:11.549778+00 11304 0003-99FWF#原版色 SPMX-20240815306485 \N \N \N 1 \N [{"file_id": "5a8770c9-a74b-4127-a7a3-425bf5364ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b991ff2809342d281dbe88f8821a18b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b991ff2809342d281dbe88f8821a18b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b991ff2809342d281dbe88f8821a18b.jpg", "file_size": 11148, "is_delete": false, "file_type": 1, "original_file_name": "0003-99FWF#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b991ff2809342d281dbe88f8821a18b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b991ff2809342d281dbe88f8821a18b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b991ff2809342d281dbe88f8821a18b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b991ff2809342d281dbe88f8821a18b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b991ff2809342d281dbe88f8821a18b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hiomMrU-99QBzfzy-T23G1ldbzk=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.551749+00 2025-12-09 10:15:11.551754+00 11305 23-2117#A7-3XL SPMX-20240815306484 \N \N \N 1 \N [{"file_id": "994757fe-2521-49a2-954a-8163c9f3f75b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18fe98120e374aa69543ac2b765c63c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18fe98120e374aa69543ac2b765c63c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18fe98120e374aa69543ac2b765c63c4.jpg", "file_size": 17390, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fe98120e374aa69543ac2b765c63c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fe98120e374aa69543ac2b765c63c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fe98120e374aa69543ac2b765c63c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18fe98120e374aa69543ac2b765c63c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18fe98120e374aa69543ac2b765c63c4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rqPhDQj1VvSJgHyfuo4gTWkS9E=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.553723+00 2025-12-09 10:15:11.553729+00 11306 C428#橙色 SPMX-20240815306491 \N \N \N 1 \N [{"file_id": "d1433184-d3c7-468c-a5a3-1b542edc0544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "746e2ca23c39468eb408a45e546e2446.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "746e2ca23c39468eb408a45e546e2446.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "746e2ca23c39468eb408a45e546e2446.jpg", "file_size": 42754, "is_delete": false, "file_type": 1, "original_file_name": "C428#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746e2ca23c39468eb408a45e546e2446.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746e2ca23c39468eb408a45e546e2446.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746e2ca23c39468eb408a45e546e2446.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/746e2ca23c39468eb408a45e546e2446.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/746e2ca23c39468eb408a45e546e2446.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCXtprJjmf48yuuckbyZD75-A90=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.555943+00 2025-12-09 10:15:11.555949+00 11307 DL30853#前幅彩半 SPMX-20240815306489 \N \N \N 1 \N [{"file_id": "efa9c002-9cbc-4099-a239-9506af4b3673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68264eba1bb64005bb85879a2acd9fcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68264eba1bb64005bb85879a2acd9fcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68264eba1bb64005bb85879a2acd9fcb.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅彩半.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68264eba1bb64005bb85879a2acd9fcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68264eba1bb64005bb85879a2acd9fcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68264eba1bb64005bb85879a2acd9fcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68264eba1bb64005bb85879a2acd9fcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68264eba1bb64005bb85879a2acd9fcb.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yj6xOTbM1T9fRaz6Bd83-uM6KT0=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.557927+00 2025-12-09 10:15:11.557936+00 11308 1105#29#湖绿 SPMX-20240815306488 \N \N \N 1 \N [{"file_id": "71e9f1cd-7880-47c4-936c-308a419e8e49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f5cf4180a2a4573aa4d171d6a581240.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f5cf4180a2a4573aa4d171d6a581240.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f5cf4180a2a4573aa4d171d6a581240.jpg", "file_size": 20821, "is_delete": false, "file_type": 1, "original_file_name": "1105#29#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5cf4180a2a4573aa4d171d6a581240.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5cf4180a2a4573aa4d171d6a581240.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5cf4180a2a4573aa4d171d6a581240.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f5cf4180a2a4573aa4d171d6a581240.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f5cf4180a2a4573aa4d171d6a581240.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IY48mtR_2ngnaEivZUWCxrAlAHI=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.559916+00 2025-12-09 10:15:11.559922+00 11309 JTSS262FW#VS-D3 SPMX-20240815306486 \N \N \N 1 \N [{"file_id": "311cab73-7169-4faa-aefd-a362c472b6e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ccb5965b23a4a17be3a14a226300f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ccb5965b23a4a17be3a14a226300f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ccb5965b23a4a17be3a14a226300f1c.jpg", "file_size": 6754, "is_delete": false, "file_type": 1, "original_file_name": "JTSS262FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ccb5965b23a4a17be3a14a226300f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ccb5965b23a4a17be3a14a226300f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ccb5965b23a4a17be3a14a226300f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ccb5965b23a4a17be3a14a226300f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ccb5965b23a4a17be3a14a226300f1c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6gTVXchS9NMANuqKpqMUq1Y0Ww=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.561864+00 2025-12-09 10:15:11.561873+00 11310 FHXGPK5-003-2 SPMX-20240815306487 \N \N \N 1 \N [{"file_id": "5f3c6121-723b-4067-ba40-c208767c2dea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "031dafab65cf4e6888f44965706df1c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "031dafab65cf4e6888f44965706df1c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "031dafab65cf4e6888f44965706df1c2.jpg", "file_size": 35754, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031dafab65cf4e6888f44965706df1c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031dafab65cf4e6888f44965706df1c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031dafab65cf4e6888f44965706df1c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/031dafab65cf4e6888f44965706df1c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/031dafab65cf4e6888f44965706df1c2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFa3ggwq3AUxBSENiUespG5Bh2k=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.563823+00 2025-12-09 10:15:11.563832+00 11311 8132#长袖裤子 SPMX-20240815306490 \N \N \N 1 \N [{"file_id": "5532d9a4-d029-4211-95a1-8ddc5f689b60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bcb01f606614069b8ce2a5f85779e82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bcb01f606614069b8ce2a5f85779e82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bcb01f606614069b8ce2a5f85779e82.jpg", "file_size": 15162, "is_delete": false, "file_type": 1, "original_file_name": "8132#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcb01f606614069b8ce2a5f85779e82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcb01f606614069b8ce2a5f85779e82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bcb01f606614069b8ce2a5f85779e82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bcb01f606614069b8ce2a5f85779e82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bcb01f606614069b8ce2a5f85779e82.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hXuaR-BP7_hALlSVXoZKzAsDAKo=", "createTime": "2024-08-15 14:52:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.565772+00 2025-12-09 10:15:11.565777+00 11312 23-2117#A7-4XL SPMX-20240815306493 \N \N \N 1 \N [{"file_id": "453d56e6-8ea4-4cb2-8cce-021ba7736369", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aab759706b047cd95afdb533c369785.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aab759706b047cd95afdb533c369785.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aab759706b047cd95afdb533c369785.jpg", "file_size": 16604, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aab759706b047cd95afdb533c369785.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aab759706b047cd95afdb533c369785.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aab759706b047cd95afdb533c369785.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aab759706b047cd95afdb533c369785.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aab759706b047cd95afdb533c369785.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hysWayHY-ART6Mk33V5sXrYYC3s=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.567974+00 2025-12-09 10:15:11.567979+00 11313 HT072FW#黄 SPMX-20240815306492 \N \N \N 1 \N [{"file_id": "7f1f96c4-de70-46b4-9bbe-d38fe2f4977c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d78fd5f8df0048259c7550d6f876c925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d78fd5f8df0048259c7550d6f876c925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d78fd5f8df0048259c7550d6f876c925.jpg", "file_size": 17475, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d78fd5f8df0048259c7550d6f876c925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d78fd5f8df0048259c7550d6f876c925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d78fd5f8df0048259c7550d6f876c925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d78fd5f8df0048259c7550d6f876c925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d78fd5f8df0048259c7550d6f876c925.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqDWjvkGrO1MnpvYBOvyY3ivlxQ=", "createTime": "2024-08-15 14:52:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.569963+00 2025-12-09 10:15:11.569969+00 11314 1105#90#粉 SPMX-20240815306501 \N \N \N 1 \N [{"file_id": "75909a12-eada-47d5-9769-fc6493105c7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192e3ab994964247a0ea07f65c28cb72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192e3ab994964247a0ea07f65c28cb72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192e3ab994964247a0ea07f65c28cb72.jpg", "file_size": 18291, "is_delete": false, "file_type": 1, "original_file_name": "1105#90#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192e3ab994964247a0ea07f65c28cb72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192e3ab994964247a0ea07f65c28cb72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192e3ab994964247a0ea07f65c28cb72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192e3ab994964247a0ea07f65c28cb72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192e3ab994964247a0ea07f65c28cb72.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hG6EHAOaVXcDvQSsQ0vamPhM61A=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.571932+00 2025-12-09 10:15:11.571937+00 11315 JTSS263FW#VS-D3 SPMX-20240815306497 \N \N \N 1 \N [{"file_id": "5cabd589-9d95-44e1-97e3-399c9ce5e4b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee48f9ebd9ee4f6f8ee1da3359db2622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee48f9ebd9ee4f6f8ee1da3359db2622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee48f9ebd9ee4f6f8ee1da3359db2622.jpg", "file_size": 8717, "is_delete": false, "file_type": 1, "original_file_name": "JTSS263FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48f9ebd9ee4f6f8ee1da3359db2622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48f9ebd9ee4f6f8ee1da3359db2622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48f9ebd9ee4f6f8ee1da3359db2622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee48f9ebd9ee4f6f8ee1da3359db2622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee48f9ebd9ee4f6f8ee1da3359db2622.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6HZC4kxMdH4fI9TKAh0Qk4bbaw=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.573896+00 2025-12-09 10:15:11.573901+00 11316 HT072FW#黄色 SPMX-20240815306503 \N \N \N 1 \N [{"file_id": "70ddf07e-8aaa-445a-ad08-2fb0519e5a78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b35b8943a2c48cfaa69566397eecfa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b35b8943a2c48cfaa69566397eecfa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b35b8943a2c48cfaa69566397eecfa9.jpg", "file_size": 7741, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b35b8943a2c48cfaa69566397eecfa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b35b8943a2c48cfaa69566397eecfa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b35b8943a2c48cfaa69566397eecfa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b35b8943a2c48cfaa69566397eecfa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b35b8943a2c48cfaa69566397eecfa9.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gga_K3fTWAnZ-3BdnTRG7z5RVec=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.592006+00 2025-12-09 10:15:11.592011+00 11325 FHXGPK5-003-4 SPMX-20240815306512 \N \N \N 1 \N [{"file_id": "ab29924d-bec1-4eaa-a730-2efc0c3b964b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf998410229149029fa12c6da282a91f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf998410229149029fa12c6da282a91f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf998410229149029fa12c6da282a91f.jpg", "file_size": 32790, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998410229149029fa12c6da282a91f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998410229149029fa12c6da282a91f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf998410229149029fa12c6da282a91f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf998410229149029fa12c6da282a91f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf998410229149029fa12c6da282a91f.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rC9y72dOEMni8eNdhj_EyWFOb0U=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.576094+00 2025-12-09 10:15:11.576099+00 11317 LZ1287#背心款5号色 SPMX-20240815306495 \N \N \N 1 \N [{"file_id": "446ec7eb-b5a1-4cfc-a050-14e84c2679ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b80a5fd9ca2d4e6ba320b4d804714dd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b80a5fd9ca2d4e6ba320b4d804714dd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b80a5fd9ca2d4e6ba320b4d804714dd6.jpg", "file_size": 18968, "is_delete": false, "file_type": 1, "original_file_name": "LZ1287#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80a5fd9ca2d4e6ba320b4d804714dd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80a5fd9ca2d4e6ba320b4d804714dd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80a5fd9ca2d4e6ba320b4d804714dd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b80a5fd9ca2d4e6ba320b4d804714dd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b80a5fd9ca2d4e6ba320b4d804714dd6.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcqJW5pOI0mXy7-QZDKcwDfV5KA=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.578074+00 2025-12-09 10:15:11.578079+00 11318 C428#玫红 SPMX-20240815306498 \N \N \N 1 \N [{"file_id": "10a3c4c0-0b3f-4ced-ad59-f38f6034972a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6505e97d2e704b6a984e795c63c31813.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6505e97d2e704b6a984e795c63c31813.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6505e97d2e704b6a984e795c63c31813.jpg", "file_size": 41859, "is_delete": false, "file_type": 1, "original_file_name": "C428#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505e97d2e704b6a984e795c63c31813.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505e97d2e704b6a984e795c63c31813.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505e97d2e704b6a984e795c63c31813.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6505e97d2e704b6a984e795c63c31813.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6505e97d2e704b6a984e795c63c31813.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8O4UBhq5pn0plDTgapoEZrf0fjE=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.580075+00 2025-12-09 10:15:11.58008+00 11319 DL30853#前幅枣红 SPMX-20240815306502 \N \N \N 1 \N [{"file_id": "b61b3edc-87cb-47cd-80ec-f96df5f33627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3821a73e333d47dba9374a82cdcfc2ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3821a73e333d47dba9374a82cdcfc2ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3821a73e333d47dba9374a82cdcfc2ca.jpg", "file_size": 15724, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3821a73e333d47dba9374a82cdcfc2ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3821a73e333d47dba9374a82cdcfc2ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3821a73e333d47dba9374a82cdcfc2ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3821a73e333d47dba9374a82cdcfc2ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3821a73e333d47dba9374a82cdcfc2ca.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73PaDPmyC4_guzwAhoS9nY1_yl0=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.582051+00 2025-12-09 10:15:11.582056+00 11320 LJ9982FW#粉2XL VS-D3 SPMX-20240815306494 \N \N \N 1 \N [{"file_id": "81b8ed47-b56d-4dd9-bfb5-f53caab8435d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d721562bb774069aa7049a80dd2daec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d721562bb774069aa7049a80dd2daec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d721562bb774069aa7049a80dd2daec.jpg", "file_size": 13950, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#粉2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d721562bb774069aa7049a80dd2daec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d721562bb774069aa7049a80dd2daec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d721562bb774069aa7049a80dd2daec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d721562bb774069aa7049a80dd2daec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d721562bb774069aa7049a80dd2daec.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MmZHcx9CJISULfVVWgUyVNpYx6k=", "createTime": "2024-08-15 14:52:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.58402+00 2025-12-09 10:15:11.584025+00 11321 23-2117#A7-领子3XL SPMX-20240815306499 \N \N \N 1 \N [{"file_id": "63c9e230-e0f5-4a14-b3f5-fb1acf389a3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "999e306f6331465c9576f4a24dc67cf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "999e306f6331465c9576f4a24dc67cf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "999e306f6331465c9576f4a24dc67cf6.jpg", "file_size": 11691, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999e306f6331465c9576f4a24dc67cf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999e306f6331465c9576f4a24dc67cf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999e306f6331465c9576f4a24dc67cf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/999e306f6331465c9576f4a24dc67cf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/999e306f6331465c9576f4a24dc67cf6.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gaw-Ntea02iNLD6dRbqBb3BngFc=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.586044+00 2025-12-09 10:15:11.58605+00 11322 8133#长袖上衣 SPMX-20240815306504 \N \N \N 1 \N [{"file_id": "d5b186be-8931-4d29-9a76-f83f581b4603", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1fa71e7921c4cccaab47f310ddc39e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1fa71e7921c4cccaab47f310ddc39e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1fa71e7921c4cccaab47f310ddc39e8.jpg", "file_size": 23064, "is_delete": false, "file_type": 1, "original_file_name": "8133#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fa71e7921c4cccaab47f310ddc39e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fa71e7921c4cccaab47f310ddc39e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fa71e7921c4cccaab47f310ddc39e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1fa71e7921c4cccaab47f310ddc39e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1fa71e7921c4cccaab47f310ddc39e8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwoicrG3CmkJOAj4CmUR7y2SOXQ=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.588088+00 2025-12-09 10:15:11.588093+00 11323 0003-99FWF#玫红 SPMX-20240815306496 \N \N \N 1 \N [{"file_id": "af34f78b-de92-4aba-a11b-a3f11c8c1fd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78aab383bc454cb49cbc61bd40d488b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78aab383bc454cb49cbc61bd40d488b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78aab383bc454cb49cbc61bd40d488b3.jpg", "file_size": 10168, "is_delete": false, "file_type": 1, "original_file_name": "0003-99FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aab383bc454cb49cbc61bd40d488b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aab383bc454cb49cbc61bd40d488b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aab383bc454cb49cbc61bd40d488b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78aab383bc454cb49cbc61bd40d488b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78aab383bc454cb49cbc61bd40d488b3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKOb-jhgaN6S_3lepTNSz0Oi4b0=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.590056+00 2025-12-09 10:15:11.590061+00 11324 FHXGPK5-003-3 SPMX-20240815306500 \N \N \N 1 \N [{"file_id": "33982419-674d-4c72-b29f-73233a51fb3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad00cc27fb6245eda42f02099249284d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad00cc27fb6245eda42f02099249284d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad00cc27fb6245eda42f02099249284d.jpg", "file_size": 36929, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad00cc27fb6245eda42f02099249284d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad00cc27fb6245eda42f02099249284d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad00cc27fb6245eda42f02099249284d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad00cc27fb6245eda42f02099249284d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad00cc27fb6245eda42f02099249284d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h6ybxaqoCkQRrkgaW2zxN4Chy60=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.594184+00 2025-12-09 10:15:11.594189+00 11326 LJ9982FW#粉M VS-D3 SPMX-20240815306515 \N \N \N 1 \N [{"file_id": "1876af89-e53e-417e-bbb7-d4e721a1afc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "522d6160d12b4667bd99086297cea49d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "522d6160d12b4667bd99086297cea49d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "522d6160d12b4667bd99086297cea49d.jpg", "file_size": 14872, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#粉M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d6160d12b4667bd99086297cea49d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d6160d12b4667bd99086297cea49d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d6160d12b4667bd99086297cea49d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/522d6160d12b4667bd99086297cea49d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/522d6160d12b4667bd99086297cea49d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8LmaDLjQw6_eva-zS2kgNyTp2U=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.596167+00 2025-12-09 10:15:11.596172+00 11327 LJ9982FW#粉L VS-D3 SPMX-20240815306505 \N \N \N 1 \N [{"file_id": "c04b1b14-b0d4-4ebd-8624-b387ade994aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02962a848ec14f4ab89583ac6da43979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02962a848ec14f4ab89583ac6da43979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02962a848ec14f4ab89583ac6da43979.jpg", "file_size": 15307, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#粉L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02962a848ec14f4ab89583ac6da43979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02962a848ec14f4ab89583ac6da43979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02962a848ec14f4ab89583ac6da43979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02962a848ec14f4ab89583ac6da43979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02962a848ec14f4ab89583ac6da43979.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EeTrc6DMLM1rV8EyRbqNYn0eeko=", "createTime": "2024-08-15 14:52:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.598136+00 2025-12-09 10:15:11.598142+00 11328 0003-99FWF#粉色 SPMX-20240815306507 \N \N \N 1 \N [{"file_id": "7538b2c8-70d6-4ab0-b3fd-22ee0eb0666a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9d02b834c5f4117bb854a12e59830c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9d02b834c5f4117bb854a12e59830c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9d02b834c5f4117bb854a12e59830c9.jpg", "file_size": 10803, "is_delete": false, "file_type": 1, "original_file_name": "0003-99FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d02b834c5f4117bb854a12e59830c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d02b834c5f4117bb854a12e59830c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d02b834c5f4117bb854a12e59830c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9d02b834c5f4117bb854a12e59830c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9d02b834c5f4117bb854a12e59830c9.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9sp9-QASoTRId5Tx3UBXhTeT_4Y=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.600102+00 2025-12-09 10:15:11.600111+00 11329 DL30853#前幅玫红 SPMX-20240815306513 \N \N \N 1 \N [{"file_id": "f5dedf3d-8826-4518-8be7-0370d723f1ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de4434b679a14b40ab74768fba063234.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de4434b679a14b40ab74768fba063234.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de4434b679a14b40ab74768fba063234.jpg", "file_size": 15633, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4434b679a14b40ab74768fba063234.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4434b679a14b40ab74768fba063234.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4434b679a14b40ab74768fba063234.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de4434b679a14b40ab74768fba063234.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de4434b679a14b40ab74768fba063234.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfU4MnWnSs31lm5ypDXuFphuEzE=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.602348+00 2025-12-09 10:15:11.602353+00 11330 8133#长袖匹布 SPMX-20240815306514 \N \N \N 1 \N [{"file_id": "914d964b-99b5-4964-8632-7edfda597499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c20c5e73ef0d4000b15b918d10f573e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c20c5e73ef0d4000b15b918d10f573e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c20c5e73ef0d4000b15b918d10f573e8.jpg", "file_size": 17359, "is_delete": false, "file_type": 1, "original_file_name": "8133#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20c5e73ef0d4000b15b918d10f573e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20c5e73ef0d4000b15b918d10f573e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20c5e73ef0d4000b15b918d10f573e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c20c5e73ef0d4000b15b918d10f573e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c20c5e73ef0d4000b15b918d10f573e8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7JJL1HNiBHJ3o03nW1ePvBKq50=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.604398+00 2025-12-09 10:15:11.604404+00 11331 JTSS264FW#VS-D3 SPMX-20240815306508 \N \N \N 1 \N [{"file_id": "69ddb449-ead8-4970-96f1-1cd7187fe690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f3fae5bdace4ae99c0284370087efee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f3fae5bdace4ae99c0284370087efee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f3fae5bdace4ae99c0284370087efee.jpg", "file_size": 9599, "is_delete": false, "file_type": 1, "original_file_name": "JTSS264FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3fae5bdace4ae99c0284370087efee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3fae5bdace4ae99c0284370087efee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f3fae5bdace4ae99c0284370087efee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f3fae5bdace4ae99c0284370087efee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f3fae5bdace4ae99c0284370087efee.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfoAt6r5zOzWswW-qzdXHxQyVpQ=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.606383+00 2025-12-09 10:15:11.606388+00 11332 LZ1288#背心款1号色 SPMX-20240815306506 \N \N \N 1 \N [{"file_id": "68889e43-a53b-400b-9a87-a003ccbbbe13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d46c8a4e6e24cabb069cfba8439b070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d46c8a4e6e24cabb069cfba8439b070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d46c8a4e6e24cabb069cfba8439b070.jpg", "file_size": 16405, "is_delete": false, "file_type": 1, "original_file_name": "LZ1288#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46c8a4e6e24cabb069cfba8439b070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46c8a4e6e24cabb069cfba8439b070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46c8a4e6e24cabb069cfba8439b070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d46c8a4e6e24cabb069cfba8439b070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d46c8a4e6e24cabb069cfba8439b070.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KWMufV6sxnJO3cbCxGGFBQQ7Drs=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.608357+00 2025-12-09 10:15:11.608362+00 11333 1105#土黄 SPMX-20240815306511 \N \N \N 1 \N [{"file_id": "a0508266-9b5c-427f-b134-c0e34844b4f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e47dc9c988414383d860ddd941ce0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e47dc9c988414383d860ddd941ce0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e47dc9c988414383d860ddd941ce0e.jpg", "file_size": 19697, "is_delete": false, "file_type": 1, "original_file_name": "1105#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47dc9c988414383d860ddd941ce0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47dc9c988414383d860ddd941ce0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47dc9c988414383d860ddd941ce0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e47dc9c988414383d860ddd941ce0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e47dc9c988414383d860ddd941ce0e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wtS8b5F-ytxrmkFijd_NkM1sAg=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.610324+00 2025-12-09 10:15:11.610329+00 11334 23-2117#A7-领子4XL SPMX-20240815306509 \N \N \N 1 \N [{"file_id": "5cde2892-d777-44cd-94f7-f01d693d3d6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fd217c0546046ff8f9cd48e87e6b0f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fd217c0546046ff8f9cd48e87e6b0f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fd217c0546046ff8f9cd48e87e6b0f8.jpg", "file_size": 11692, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd217c0546046ff8f9cd48e87e6b0f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd217c0546046ff8f9cd48e87e6b0f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fd217c0546046ff8f9cd48e87e6b0f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fd217c0546046ff8f9cd48e87e6b0f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fd217c0546046ff8f9cd48e87e6b0f8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZN87VT2B-Tx43VOOHthDWehEZA=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.612311+00 2025-12-09 10:15:11.612317+00 11335 C428#白色 SPMX-20240815306510 \N \N \N 1 \N [{"file_id": "c4d574bb-4523-47de-a9cf-7aa1cafc01a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "324da69dffa241e99dd3ff9059a4070b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "324da69dffa241e99dd3ff9059a4070b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "324da69dffa241e99dd3ff9059a4070b.jpg", "file_size": 40554, "is_delete": false, "file_type": 1, "original_file_name": "C428#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324da69dffa241e99dd3ff9059a4070b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324da69dffa241e99dd3ff9059a4070b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324da69dffa241e99dd3ff9059a4070b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/324da69dffa241e99dd3ff9059a4070b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/324da69dffa241e99dd3ff9059a4070b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P50jbq_ydzdXPe2sCkD5nXKaDAw=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.614295+00 2025-12-09 10:15:11.6143+00 11336 JTSS265FW#VS-D3 SPMX-20240815306519 \N \N \N 1 \N [{"file_id": "03c7367a-a559-424d-a616-c4ba6a25881a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "309a4a15471f4cf8ba0f9d21f8d157b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "309a4a15471f4cf8ba0f9d21f8d157b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "309a4a15471f4cf8ba0f9d21f8d157b8.jpg", "file_size": 16176, "is_delete": false, "file_type": 1, "original_file_name": "JTSS265FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a4a15471f4cf8ba0f9d21f8d157b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a4a15471f4cf8ba0f9d21f8d157b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a4a15471f4cf8ba0f9d21f8d157b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/309a4a15471f4cf8ba0f9d21f8d157b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/309a4a15471f4cf8ba0f9d21f8d157b8.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9dChiPwJEmV9EX7YvTVY886gj4=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.616251+00 2025-12-09 10:15:11.616257+00 11337 LZ1288#背心款3号色 SPMX-20240815306528 \N \N \N 1 \N [{"file_id": "2a684779-2af1-4693-874c-4f202194065c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg", "file_size": 17665, "is_delete": false, "file_type": 1, "original_file_name": "LZ1288#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6ccdf7ecfc5492ea2a14efe2f45fd29.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxMLCsD76YkPwprCEUpeNg_93sE=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.618263+00 2025-12-09 10:15:11.618269+00 11338 C428#绿色 SPMX-20240815306521 \N \N \N 1 \N [{"file_id": "f1fc9a48-1ebb-4450-9f92-f75a91d83833", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "798ff0fe959d4a1985ca6bf411562432.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "798ff0fe959d4a1985ca6bf411562432.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "798ff0fe959d4a1985ca6bf411562432.jpg", "file_size": 41211, "is_delete": false, "file_type": 1, "original_file_name": "C428#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798ff0fe959d4a1985ca6bf411562432.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798ff0fe959d4a1985ca6bf411562432.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798ff0fe959d4a1985ca6bf411562432.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/798ff0fe959d4a1985ca6bf411562432.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/798ff0fe959d4a1985ca6bf411562432.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IveRMq7X6n-bgTAxjETY8H_-_jE=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.620463+00 2025-12-09 10:15:11.620469+00 11339 8133#长袖裤子 SPMX-20240815306523 \N \N \N 1 \N [{"file_id": "75bd6261-fbbc-42e8-b0a3-6798287f54a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaaee1476c6b410e863d748d1aebf165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaaee1476c6b410e863d748d1aebf165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaaee1476c6b410e863d748d1aebf165.jpg", "file_size": 17229, "is_delete": false, "file_type": 1, "original_file_name": "8133#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaaee1476c6b410e863d748d1aebf165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaaee1476c6b410e863d748d1aebf165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaaee1476c6b410e863d748d1aebf165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaaee1476c6b410e863d748d1aebf165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaaee1476c6b410e863d748d1aebf165.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CeLXf5ugp5RPVK45dOkLTHAizA=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.622439+00 2025-12-09 10:15:11.622444+00 11340 DL30853#前幅黄色 SPMX-20240815306524 \N \N \N 1 \N [{"file_id": "d7040c29-789d-40ff-8a06-800782ad3d77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4bb41e1887f49e4a0e445eeb8db8496.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4bb41e1887f49e4a0e445eeb8db8496.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4bb41e1887f49e4a0e445eeb8db8496.jpg", "file_size": 15379, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bb41e1887f49e4a0e445eeb8db8496.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bb41e1887f49e4a0e445eeb8db8496.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4bb41e1887f49e4a0e445eeb8db8496.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4bb41e1887f49e4a0e445eeb8db8496.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4bb41e1887f49e4a0e445eeb8db8496.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tV9lYz_Ue2FUxOyu0lyjzWjjYuI=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.624398+00 2025-12-09 10:15:11.624404+00 11341 1105#墨绿 SPMX-20240815306525 \N \N \N 1 \N [{"file_id": "45921c65-5c38-4650-86dc-fb4b9f0ff548", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "116eb6c372644cceb47f2a44a405d844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "116eb6c372644cceb47f2a44a405d844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "116eb6c372644cceb47f2a44a405d844.jpg", "file_size": 20346, "is_delete": false, "file_type": 1, "original_file_name": "1105#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116eb6c372644cceb47f2a44a405d844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116eb6c372644cceb47f2a44a405d844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116eb6c372644cceb47f2a44a405d844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/116eb6c372644cceb47f2a44a405d844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/116eb6c372644cceb47f2a44a405d844.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf2L3dNMoAdWAFFIK-rM5dSODoo=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.626343+00 2025-12-09 10:15:11.626349+00 11342 FHXGPK5-003-5 SPMX-20240815306522 \N \N \N 1 \N [{"file_id": "43e29a26-dc5c-4775-b21b-ea5d5d45c907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc7e82f641343f18501c2a364c644e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc7e82f641343f18501c2a364c644e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc7e82f641343f18501c2a364c644e1.jpg", "file_size": 33872, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-003-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc7e82f641343f18501c2a364c644e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc7e82f641343f18501c2a364c644e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc7e82f641343f18501c2a364c644e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc7e82f641343f18501c2a364c644e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc7e82f641343f18501c2a364c644e1.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1a2o_PVEfhgxeOlQIhk_5REDiI=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.628303+00 2025-12-09 10:15:11.628308+00 11343 23-2117#A8-3XL SPMX-20240815306520 \N \N \N 1 \N [{"file_id": "7bfdc0d5-75df-4e83-962a-4ca293574ce4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b639cf44639d4e42836259b2dd8cdf79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b639cf44639d4e42836259b2dd8cdf79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b639cf44639d4e42836259b2dd8cdf79.jpg", "file_size": 17045, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639cf44639d4e42836259b2dd8cdf79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639cf44639d4e42836259b2dd8cdf79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639cf44639d4e42836259b2dd8cdf79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b639cf44639d4e42836259b2dd8cdf79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b639cf44639d4e42836259b2dd8cdf79.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0IJOFqKomkUxEZ1cSAf693dv-E=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.630558+00 2025-12-09 10:15:11.630564+00 11344 0003-99FWF#紫色 SPMX-20240815306518 \N \N \N 1 \N [{"file_id": "807676d1-8954-45ae-9c7d-a74398f5407a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfce4017da394b3da48d1f6427d8456b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfce4017da394b3da48d1f6427d8456b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfce4017da394b3da48d1f6427d8456b.jpg", "file_size": 10234, "is_delete": false, "file_type": 1, "original_file_name": "0003-99FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfce4017da394b3da48d1f6427d8456b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfce4017da394b3da48d1f6427d8456b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfce4017da394b3da48d1f6427d8456b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfce4017da394b3da48d1f6427d8456b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfce4017da394b3da48d1f6427d8456b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCUJqv1KotOOyU-BmaShYJhIPLA=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.632526+00 2025-12-09 10:15:11.632531+00 11345 0003-99FWF#蓝色 SPMX-20240815306529 \N \N \N 1 \N [{"file_id": "95b8dacf-8572-4c3a-be38-dbdea45833f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab50a96b5bae4befae85729e7e8bd41d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab50a96b5bae4befae85729e7e8bd41d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab50a96b5bae4befae85729e7e8bd41d.jpg", "file_size": 10460, "is_delete": false, "file_type": 1, "original_file_name": "0003-99FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab50a96b5bae4befae85729e7e8bd41d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab50a96b5bae4befae85729e7e8bd41d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab50a96b5bae4befae85729e7e8bd41d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab50a96b5bae4befae85729e7e8bd41d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab50a96b5bae4befae85729e7e8bd41d.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbLFPUq3G4Pw47jvzbJ7Wyy-nbA=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.634523+00 2025-12-09 10:15:11.634527+00 11346 HT072FW#黄门襟布 SPMX-20240815306516 \N \N \N 1 \N [{"file_id": "c0843a26-9eff-4c4e-a77a-d49caa515c0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfb42252c1854d228c590ce1e4435314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfb42252c1854d228c590ce1e4435314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfb42252c1854d228c590ce1e4435314.jpg", "file_size": 21488, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#黄门襟布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb42252c1854d228c590ce1e4435314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb42252c1854d228c590ce1e4435314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb42252c1854d228c590ce1e4435314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfb42252c1854d228c590ce1e4435314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfb42252c1854d228c590ce1e4435314.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h35ss9R_6SYuD5Ce-00KqXco5yA=", "createTime": "2024-08-15 14:52:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.636357+00 2025-12-09 10:15:11.636361+00 11347 LJ9982FW#粉S VS-D3 SPMX-20240815306526 \N \N \N 1 \N [{"file_id": "5b624a77-c4de-4f8e-8b32-1a51419df0b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bbd7ebfef7841598516b04568044a17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bbd7ebfef7841598516b04568044a17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bbd7ebfef7841598516b04568044a17.jpg", "file_size": 14402, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#粉S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bbd7ebfef7841598516b04568044a17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bbd7ebfef7841598516b04568044a17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bbd7ebfef7841598516b04568044a17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bbd7ebfef7841598516b04568044a17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bbd7ebfef7841598516b04568044a17.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqaAFHvlCWytENc7UhbaV0s0TxE=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.638174+00 2025-12-09 10:15:11.638179+00 11348 LZ1288#背心款2号色 SPMX-20240815306517 \N \N \N 1 \N [{"file_id": "7828a972-93c5-44b4-aaea-8d39b28524b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93af3d0440f84231b70529eae60200c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93af3d0440f84231b70529eae60200c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93af3d0440f84231b70529eae60200c5.jpg", "file_size": 17113, "is_delete": false, "file_type": 1, "original_file_name": "LZ1288#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93af3d0440f84231b70529eae60200c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93af3d0440f84231b70529eae60200c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93af3d0440f84231b70529eae60200c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93af3d0440f84231b70529eae60200c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93af3d0440f84231b70529eae60200c5.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:06UHH-LLiQFRw0cUFtLxk9dcqdk=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.640229+00 2025-12-09 10:15:11.640236+00 11349 HT072FW#黑色 SPMX-20240815306527 \N \N \N 1 \N [{"file_id": "abe67a3c-8bc3-47dc-915c-aaf264c75ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dead0c3e854b4a4e987b960fa758c671.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dead0c3e854b4a4e987b960fa758c671.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dead0c3e854b4a4e987b960fa758c671.jpg", "file_size": 9530, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dead0c3e854b4a4e987b960fa758c671.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dead0c3e854b4a4e987b960fa758c671.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dead0c3e854b4a4e987b960fa758c671.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dead0c3e854b4a4e987b960fa758c671.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dead0c3e854b4a4e987b960fa758c671.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h_h7bWCbdqTxCaVpapgBsg4FozQ=", "createTime": "2024-08-15 14:52:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.642284+00 2025-12-09 10:15:11.642288+00 11350 23-2117#A8-4XL SPMX-20240815306531 \N \N \N 1 \N [{"file_id": "65380986-d019-4bf0-aaf3-b120e1eaafdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46d1fbf2832c4eba84de657d5fc55624.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46d1fbf2832c4eba84de657d5fc55624.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46d1fbf2832c4eba84de657d5fc55624.jpg", "file_size": 16578, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d1fbf2832c4eba84de657d5fc55624.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d1fbf2832c4eba84de657d5fc55624.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d1fbf2832c4eba84de657d5fc55624.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46d1fbf2832c4eba84de657d5fc55624.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46d1fbf2832c4eba84de657d5fc55624.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KqpiyBybeIQV-gOlt-P2QWUsVU=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.644267+00 2025-12-09 10:15:11.644272+00 11351 1105#彩兰 SPMX-20240815306536 \N \N \N 1 \N [{"file_id": "88752259-50b8-4f54-af24-f4863a1bd4c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a506a5a4486542e9b9b2d72f8d4a4363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a506a5a4486542e9b9b2d72f8d4a4363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a506a5a4486542e9b9b2d72f8d4a4363.jpg", "file_size": 20741, "is_delete": false, "file_type": 1, "original_file_name": "1105#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a506a5a4486542e9b9b2d72f8d4a4363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a506a5a4486542e9b9b2d72f8d4a4363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a506a5a4486542e9b9b2d72f8d4a4363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a506a5a4486542e9b9b2d72f8d4a4363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a506a5a4486542e9b9b2d72f8d4a4363.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szyvSSgrMxPskmWZU2Jy4AZbI54=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.646284+00 2025-12-09 10:15:11.646289+00 11352 HT072FW#黑门襟布 SPMX-20240815306538 \N \N \N 1 \N [{"file_id": "dfecdd61-0d5a-44a2-a239-dbb03f512bc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bab1d71d0eeb454986047ea5e677b5a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bab1d71d0eeb454986047ea5e677b5a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bab1d71d0eeb454986047ea5e677b5a4.jpg", "file_size": 19292, "is_delete": false, "file_type": 1, "original_file_name": "HT072FW#黑门襟布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab1d71d0eeb454986047ea5e677b5a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab1d71d0eeb454986047ea5e677b5a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab1d71d0eeb454986047ea5e677b5a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bab1d71d0eeb454986047ea5e677b5a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bab1d71d0eeb454986047ea5e677b5a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NkTgXpx0awgZGQ6811k8NDKuao4=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.648285+00 2025-12-09 10:15:11.64829+00 11353 FHXGPK5-004- SPMX-20240815306534 \N \N \N 1 \N [{"file_id": "d0371c83-0a5a-4fb0-bcb2-64f0df6b792f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eda7c8aa6cbe4c85b024c41d70da60b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eda7c8aa6cbe4c85b024c41d70da60b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eda7c8aa6cbe4c85b024c41d70da60b3.jpg", "file_size": 28356, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda7c8aa6cbe4c85b024c41d70da60b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda7c8aa6cbe4c85b024c41d70da60b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda7c8aa6cbe4c85b024c41d70da60b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eda7c8aa6cbe4c85b024c41d70da60b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eda7c8aa6cbe4c85b024c41d70da60b3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEmoC_HrR6H8ut998Au1j10tOYE=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.650231+00 2025-12-09 10:15:11.650236+00 11354 8134#长袖上衣 SPMX-20240815306533 \N \N \N 1 \N [{"file_id": "f0ca4f65-d2d4-4e70-91ac-a3fbd4fe9c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fbf43d7639b4cd982cacf3c116f2d27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fbf43d7639b4cd982cacf3c116f2d27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fbf43d7639b4cd982cacf3c116f2d27.jpg", "file_size": 22699, "is_delete": false, "file_type": 1, "original_file_name": "8134#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fbf43d7639b4cd982cacf3c116f2d27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fbf43d7639b4cd982cacf3c116f2d27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fbf43d7639b4cd982cacf3c116f2d27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fbf43d7639b4cd982cacf3c116f2d27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fbf43d7639b4cd982cacf3c116f2d27.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8fg7shsKglhXUOOlGg8hkPStIM=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.652219+00 2025-12-09 10:15:11.652223+00 11355 JTSS267FW#VS-D3 SPMX-20240815306540 \N \N \N 1 \N [{"file_id": "d81e69cc-3db4-4a88-a684-54e07b137b3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac9cdce2e5b248f88e6bae38eda454ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac9cdce2e5b248f88e6bae38eda454ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac9cdce2e5b248f88e6bae38eda454ed.jpg", "file_size": 10476, "is_delete": false, "file_type": 1, "original_file_name": "JTSS267FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9cdce2e5b248f88e6bae38eda454ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9cdce2e5b248f88e6bae38eda454ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac9cdce2e5b248f88e6bae38eda454ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac9cdce2e5b248f88e6bae38eda454ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac9cdce2e5b248f88e6bae38eda454ed.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zfU9vAlvoYwbc1av5xUw1VXKJ5U=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.654181+00 2025-12-09 10:15:11.654185+00 11356 JTSS266FW#VS-D3 SPMX-20240815306530 \N \N \N 1 \N [{"file_id": "b7ec3b1e-a1ab-494a-9f26-dd16c2c7a090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d2797323d5460f95a5d23484788a5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d2797323d5460f95a5d23484788a5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d2797323d5460f95a5d23484788a5e.jpg", "file_size": 18157, "is_delete": false, "file_type": 1, "original_file_name": "JTSS266FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2797323d5460f95a5d23484788a5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2797323d5460f95a5d23484788a5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2797323d5460f95a5d23484788a5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d2797323d5460f95a5d23484788a5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d2797323d5460f95a5d23484788a5e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DiTL8gMk9fYXJF7ESSnHwTWTdhU=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.656196+00 2025-12-09 10:15:11.656201+00 11357 DL30853#批布墨绿 SPMX-20240815306535 \N \N \N 1 \N [{"file_id": "70ccf788-50d3-4089-82c5-868df271e2e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40d1b9609cbf4c4eba8897afe1d3d866.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40d1b9609cbf4c4eba8897afe1d3d866.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40d1b9609cbf4c4eba8897afe1d3d866.jpg", "file_size": 25401, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d1b9609cbf4c4eba8897afe1d3d866.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d1b9609cbf4c4eba8897afe1d3d866.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d1b9609cbf4c4eba8897afe1d3d866.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40d1b9609cbf4c4eba8897afe1d3d866.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40d1b9609cbf4c4eba8897afe1d3d866.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRYz5V2J7qQHZ5MK21E8N1yZ2H8=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.6582+00 2025-12-09 10:15:11.658205+00 11358 23-2117#A8-领子3XL SPMX-20240815306542 \N \N \N 1 \N [{"file_id": "9b9ca5f9-c3e9-4dab-b26c-f2018f1a7277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e14bd78723645509274c42728addfd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e14bd78723645509274c42728addfd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e14bd78723645509274c42728addfd4.jpg", "file_size": 11445, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e14bd78723645509274c42728addfd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e14bd78723645509274c42728addfd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e14bd78723645509274c42728addfd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e14bd78723645509274c42728addfd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e14bd78723645509274c42728addfd4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGsFBWBE6vCTwmU2Ema9QQv0T9Q=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.660194+00 2025-12-09 10:15:11.660198+00 11359 LJ9982FW#粉XL VS-D3 SPMX-20240815306537 \N \N \N 1 \N [{"file_id": "e6a337b1-585b-47cf-acbe-5378437417d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "847ddd78e4d54f30a7330288657949da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "847ddd78e4d54f30a7330288657949da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "847ddd78e4d54f30a7330288657949da.jpg", "file_size": 13662, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#粉XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847ddd78e4d54f30a7330288657949da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847ddd78e4d54f30a7330288657949da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847ddd78e4d54f30a7330288657949da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/847ddd78e4d54f30a7330288657949da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/847ddd78e4d54f30a7330288657949da.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWN4lcpFSD66ZkDlks4tLBN-Zxs=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.662205+00 2025-12-09 10:15:11.66221+00 11360 LZ1288#背心款4号色 SPMX-20240815306541 \N \N \N 1 \N [{"file_id": "622ad0e2-70b2-45e9-9b83-71fca3b04599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eddb96727654460bf42e5160670ca92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eddb96727654460bf42e5160670ca92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eddb96727654460bf42e5160670ca92.jpg", "file_size": 17611, "is_delete": false, "file_type": 1, "original_file_name": "LZ1288#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eddb96727654460bf42e5160670ca92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eddb96727654460bf42e5160670ca92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eddb96727654460bf42e5160670ca92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eddb96727654460bf42e5160670ca92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eddb96727654460bf42e5160670ca92.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFnf1_QuPLyqnGxWTzt17kj-9_4=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.664195+00 2025-12-09 10:15:11.6642+00 11361 C428#黑色 SPMX-20240815306532 \N \N \N 1 \N [{"file_id": "c92f25a2-b387-4271-bc0b-d469a71ecab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "554b971339ee4e4cac9f0c89c839ea7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "554b971339ee4e4cac9f0c89c839ea7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "554b971339ee4e4cac9f0c89c839ea7e.jpg", "file_size": 40809, "is_delete": false, "file_type": 1, "original_file_name": "C428#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b971339ee4e4cac9f0c89c839ea7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b971339ee4e4cac9f0c89c839ea7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554b971339ee4e4cac9f0c89c839ea7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/554b971339ee4e4cac9f0c89c839ea7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/554b971339ee4e4cac9f0c89c839ea7e.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KmFH__ORb2uEXFbajyQyqCP9NTc=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.666181+00 2025-12-09 10:15:11.666186+00 11362 0003-9FWE#VS-D3 SPMX-20240815306539 \N \N \N 1 \N [{"file_id": "4387748e-37c7-4f9d-89b7-174ba0674876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5413f820daf44d75aad1df53352a6787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5413f820daf44d75aad1df53352a6787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5413f820daf44d75aad1df53352a6787.jpg", "file_size": 21547, "is_delete": false, "file_type": 1, "original_file_name": "0003-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5413f820daf44d75aad1df53352a6787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5413f820daf44d75aad1df53352a6787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5413f820daf44d75aad1df53352a6787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5413f820daf44d75aad1df53352a6787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5413f820daf44d75aad1df53352a6787.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6j7YeH4V4rgjvgS1B3bFM6KkT0=", "createTime": "2024-08-15 14:52:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.668191+00 2025-12-09 10:15:11.668196+00 11363 8134#长袖匹布 SPMX-20240815306543 \N \N \N 1 \N [{"file_id": "63f38e27-3f08-42d6-b983-e12b45d111e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26e628511a0749c2b68cb32035cc6130.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26e628511a0749c2b68cb32035cc6130.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26e628511a0749c2b68cb32035cc6130.jpg", "file_size": 17676, "is_delete": false, "file_type": 1, "original_file_name": "8134#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e628511a0749c2b68cb32035cc6130.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e628511a0749c2b68cb32035cc6130.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e628511a0749c2b68cb32035cc6130.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26e628511a0749c2b68cb32035cc6130.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26e628511a0749c2b68cb32035cc6130.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvPnVywf4H2j0w8HhTC9NUNcx38=", "createTime": "2024-08-15 14:52:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.670226+00 2025-12-09 10:15:11.670231+00 11364 C429#大白色 SPMX-20240815306544 \N \N \N 1 \N [{"file_id": "8e15ee95-0451-42c3-8ea9-bed024a6b492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "325c7df355bb4d8ea8bf9e0c290db501.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "325c7df355bb4d8ea8bf9e0c290db501.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "325c7df355bb4d8ea8bf9e0c290db501.jpg", "file_size": 69590, "is_delete": false, "file_type": 1, "original_file_name": "C429#大白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325c7df355bb4d8ea8bf9e0c290db501.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325c7df355bb4d8ea8bf9e0c290db501.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325c7df355bb4d8ea8bf9e0c290db501.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/325c7df355bb4d8ea8bf9e0c290db501.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/325c7df355bb4d8ea8bf9e0c290db501.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pa3LSEZdVtg4UiZsudstQkCI-ls=", "createTime": "2024-08-15 14:52:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.672206+00 2025-12-09 10:15:11.67221+00 11365 FHXGPK5-004-1 SPMX-20240815306547 \N \N \N 1 \N [{"file_id": "03c6f7c1-cf84-4853-bffc-e192ef136dc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62f4f4952d074738973dca8d0634d022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62f4f4952d074738973dca8d0634d022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62f4f4952d074738973dca8d0634d022.jpg", "file_size": 31875, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f4f4952d074738973dca8d0634d022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f4f4952d074738973dca8d0634d022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f4f4952d074738973dca8d0634d022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62f4f4952d074738973dca8d0634d022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62f4f4952d074738973dca8d0634d022.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8EKIjJIjcXxn4MRK_50u759DsE=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.674521+00 2025-12-09 10:15:11.674526+00 11366 HT072FWE#VS-D3 SPMX-20240815306546 \N \N \N 1 \N [{"file_id": "bcaa8d17-f339-42f8-89b1-033c9adccc89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811fe2970a9d45798fba67c537089d4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811fe2970a9d45798fba67c537089d4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811fe2970a9d45798fba67c537089d4c.jpg", "file_size": 22205, "is_delete": false, "file_type": 1, "original_file_name": "HT072FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811fe2970a9d45798fba67c537089d4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811fe2970a9d45798fba67c537089d4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811fe2970a9d45798fba67c537089d4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811fe2970a9d45798fba67c537089d4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811fe2970a9d45798fba67c537089d4c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5IjbMOHraoPqmOwzNmjMQE1rik=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.676788+00 2025-12-09 10:15:11.676792+00 11367 DL30853#批布彩兰 SPMX-20240815306548 \N \N \N 1 \N [{"file_id": "1919ca9c-e211-4fb5-8bb1-b2b66022042b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a8e23bcdb2f448784f21868881bd844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a8e23bcdb2f448784f21868881bd844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a8e23bcdb2f448784f21868881bd844.jpg", "file_size": 26172, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8e23bcdb2f448784f21868881bd844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8e23bcdb2f448784f21868881bd844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8e23bcdb2f448784f21868881bd844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a8e23bcdb2f448784f21868881bd844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a8e23bcdb2f448784f21868881bd844.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALCXsgVuSQX2Lz43FwwWwcgs6eM=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.678845+00 2025-12-09 10:15:11.67885+00 11368 LJ9982FW#紫2XL VS-D3 SPMX-20240815306545 \N \N \N 1 \N [{"file_id": "689e4ebe-c0da-44b2-8c5e-3b17fb73f2cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76f531dac2ac4530b2c7db2b75f8dba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76f531dac2ac4530b2c7db2b75f8dba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76f531dac2ac4530b2c7db2b75f8dba3.jpg", "file_size": 12901, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#紫2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f531dac2ac4530b2c7db2b75f8dba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f531dac2ac4530b2c7db2b75f8dba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76f531dac2ac4530b2c7db2b75f8dba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76f531dac2ac4530b2c7db2b75f8dba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76f531dac2ac4530b2c7db2b75f8dba3.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OnGfLfXrwT4nG7tvZVnKhCgcNcM=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.680903+00 2025-12-09 10:15:11.680908+00 11369 0003-9FWF#上衣 SPMX-20240815306549 \N \N \N 1 \N [{"file_id": "197d90e6-a015-49ca-b561-4241dbb07914", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e76e4383c5b4eec9846d5bf2e2f01dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e76e4383c5b4eec9846d5bf2e2f01dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e76e4383c5b4eec9846d5bf2e2f01dc.jpg", "file_size": 8085, "is_delete": false, "file_type": 1, "original_file_name": "0003-9FWF#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e76e4383c5b4eec9846d5bf2e2f01dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e76e4383c5b4eec9846d5bf2e2f01dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e76e4383c5b4eec9846d5bf2e2f01dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e76e4383c5b4eec9846d5bf2e2f01dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e76e4383c5b4eec9846d5bf2e2f01dc.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4hD2aKhjz2nGumQulTXh8dpLHDc=", "createTime": "2024-08-15 14:52:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.682947+00 2025-12-09 10:15:11.682952+00 11370 1105#杏色 SPMX-20240815306552 \N \N \N 1 \N [{"file_id": "42a9cba9-8044-4c9e-a857-90f5cbcb5fbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "883e43779d7f479483bee1499422547c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "883e43779d7f479483bee1499422547c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "883e43779d7f479483bee1499422547c.jpg", "file_size": 26343, "is_delete": false, "file_type": 1, "original_file_name": "1105#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883e43779d7f479483bee1499422547c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883e43779d7f479483bee1499422547c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883e43779d7f479483bee1499422547c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/883e43779d7f479483bee1499422547c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/883e43779d7f479483bee1499422547c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6lti-9bT9NAsKtNC_35Mm1LE9M=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.684979+00 2025-12-09 10:15:11.684984+00 11371 LJ9982FW#紫L VS-D3 SPMX-20240815306560 \N \N \N 1 \N [{"file_id": "79e7b333-f8cf-47f2-b515-e47708cb762d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8b31cc8cef43978df629ddccb1d117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8b31cc8cef43978df629ddccb1d117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8b31cc8cef43978df629ddccb1d117.jpg", "file_size": 14196, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#紫L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b31cc8cef43978df629ddccb1d117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b31cc8cef43978df629ddccb1d117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b31cc8cef43978df629ddccb1d117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8b31cc8cef43978df629ddccb1d117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8b31cc8cef43978df629ddccb1d117.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8E7S93fG4c0M7Ymsi9Z59TsL4o=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.687084+00 2025-12-09 10:15:11.687089+00 11372 8134#长袖裤子 SPMX-20240815306554 \N \N \N 1 \N [{"file_id": "5ec4bde6-218e-4733-afa6-221d545dc935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03a2a562578e41e39dc841133db6e8e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03a2a562578e41e39dc841133db6e8e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03a2a562578e41e39dc841133db6e8e7.jpg", "file_size": 17182, "is_delete": false, "file_type": 1, "original_file_name": "8134#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a2a562578e41e39dc841133db6e8e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a2a562578e41e39dc841133db6e8e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a2a562578e41e39dc841133db6e8e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03a2a562578e41e39dc841133db6e8e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03a2a562578e41e39dc841133db6e8e7.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rl_l-_UGzUvK86krZjZhJ3JBm1k=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.689155+00 2025-12-09 10:15:11.689159+00 11373 FHXGPK5-004-2 SPMX-20240815306559 \N \N \N 1 \N [{"file_id": "21ae2e16-379e-473a-b965-5168e53ca9de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bebe3943b234b8a9901bfcdb891ddda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bebe3943b234b8a9901bfcdb891ddda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bebe3943b234b8a9901bfcdb891ddda.jpg", "file_size": 32018, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bebe3943b234b8a9901bfcdb891ddda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bebe3943b234b8a9901bfcdb891ddda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bebe3943b234b8a9901bfcdb891ddda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bebe3943b234b8a9901bfcdb891ddda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bebe3943b234b8a9901bfcdb891ddda.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PC1x58y952f7X80Kq5eCHf4Oa8=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.69094+00 2025-12-09 10:15:11.690945+00 11374 23-2117#A8-领子4XL SPMX-20240815306553 \N \N \N 1 \N [{"file_id": "d98e75b1-ed97-4bfd-9122-8200e7be24b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b7dc44c2d041ce9a49554956f8c442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b7dc44c2d041ce9a49554956f8c442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b7dc44c2d041ce9a49554956f8c442.jpg", "file_size": 11798, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7dc44c2d041ce9a49554956f8c442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7dc44c2d041ce9a49554956f8c442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b7dc44c2d041ce9a49554956f8c442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b7dc44c2d041ce9a49554956f8c442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b7dc44c2d041ce9a49554956f8c442.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrmXIpwiHuqIn02gfS_LBrvdjQQ=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.692694+00 2025-12-09 10:15:11.692699+00 11375 C429#玫红 SPMX-20240815306551 \N \N \N 1 \N [{"file_id": "28b8c441-f2f7-4f7f-b59d-abace859b2dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg", "file_size": 72033, "is_delete": false, "file_type": 1, "original_file_name": "C429#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86ff6a4f5be64a7ab79f85f0ed6a0ca0.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dexSsl7eCO6NFnzBay7KWQMqcto=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.694693+00 2025-12-09 10:15:11.694697+00 11376 LZ1288#背心款5号色 SPMX-20240815306550 \N \N \N 1 \N [{"file_id": "e874e130-5464-462d-a367-fe0c969792fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bd61765a7394c528bd16db0ce88acaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bd61765a7394c528bd16db0ce88acaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bd61765a7394c528bd16db0ce88acaf.jpg", "file_size": 16263, "is_delete": false, "file_type": 1, "original_file_name": "LZ1288#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd61765a7394c528bd16db0ce88acaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd61765a7394c528bd16db0ce88acaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd61765a7394c528bd16db0ce88acaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bd61765a7394c528bd16db0ce88acaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bd61765a7394c528bd16db0ce88acaf.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MI5dQeZLNKwgk_dMu6NN12jAHL0=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.696698+00 2025-12-09 10:15:11.696706+00 11377 0003-9FWF#裙子 SPMX-20240815306556 \N \N \N 1 \N [{"file_id": "bfa54851-4ba1-4731-b390-bf77266fff36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0abd22904b84c51bf27a07ea3bed521.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0abd22904b84c51bf27a07ea3bed521.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0abd22904b84c51bf27a07ea3bed521.jpg", "file_size": 12642, "is_delete": false, "file_type": 1, "original_file_name": "0003-9FWF#裙子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0abd22904b84c51bf27a07ea3bed521.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0abd22904b84c51bf27a07ea3bed521.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0abd22904b84c51bf27a07ea3bed521.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0abd22904b84c51bf27a07ea3bed521.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0abd22904b84c51bf27a07ea3bed521.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzvzMLblZ4htdBNswOLF0Sp9mnA=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.698697+00 2025-12-09 10:15:11.698701+00 11378 HT073FW#VS-D3绿 SPMX-20240815306558 \N \N \N 1 \N [{"file_id": "3dae9503-937b-4032-83e6-779a090e3fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "090299696c1147bc90aec768fb078ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "090299696c1147bc90aec768fb078ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "090299696c1147bc90aec768fb078ed9.jpg", "file_size": 9324, "is_delete": false, "file_type": 1, "original_file_name": "HT073FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090299696c1147bc90aec768fb078ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090299696c1147bc90aec768fb078ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090299696c1147bc90aec768fb078ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/090299696c1147bc90aec768fb078ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/090299696c1147bc90aec768fb078ed9.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6oySRGDna_cq5-kOKZLKhy4dr8=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.700659+00 2025-12-09 10:15:11.700664+00 11379 JTSS268FW#VS-D3 SPMX-20240815306555 \N \N \N 1 \N [{"file_id": "b778d457-0724-4880-aa6e-82f95c1c2ced", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "868a0404dce244c69c11c0a748d8a266.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "868a0404dce244c69c11c0a748d8a266.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "868a0404dce244c69c11c0a748d8a266.jpg", "file_size": 18457, "is_delete": false, "file_type": 1, "original_file_name": "JTSS268FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868a0404dce244c69c11c0a748d8a266.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868a0404dce244c69c11c0a748d8a266.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868a0404dce244c69c11c0a748d8a266.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/868a0404dce244c69c11c0a748d8a266.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/868a0404dce244c69c11c0a748d8a266.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G100WOJW-MI3LaYzJFr6c4twZ8Y=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.702637+00 2025-12-09 10:15:11.702641+00 11380 DL30853#批布枣红 SPMX-20240815306557 \N \N \N 1 \N [{"file_id": "72abb94b-ff81-459e-9b64-1234ef3d935b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a2620547a4649418e8d7be91a723449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a2620547a4649418e8d7be91a723449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a2620547a4649418e8d7be91a723449.jpg", "file_size": 25635, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2620547a4649418e8d7be91a723449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2620547a4649418e8d7be91a723449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a2620547a4649418e8d7be91a723449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a2620547a4649418e8d7be91a723449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a2620547a4649418e8d7be91a723449.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4UAkBnDJbJoZ3p3uZN_GgPYb9o=", "createTime": "2024-08-15 14:52:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.704642+00 2025-12-09 10:15:11.704647+00 11381 0003-A10#LWQ15 SPMX-20240815306565 \N \N \N 1 \N [{"file_id": "f55a42e3-db7e-41b7-91e4-dbc3ba424745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10e5881bb19f482a9b7a98365044131b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10e5881bb19f482a9b7a98365044131b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10e5881bb19f482a9b7a98365044131b.jpg", "file_size": 11630, "is_delete": false, "file_type": 1, "original_file_name": "0003-A10#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e5881bb19f482a9b7a98365044131b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e5881bb19f482a9b7a98365044131b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e5881bb19f482a9b7a98365044131b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10e5881bb19f482a9b7a98365044131b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10e5881bb19f482a9b7a98365044131b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DI5jsCOOHGTAeY-zarFHfIL2QhM=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.706622+00 2025-12-09 10:15:11.706626+00 11382 HT073FWE# SPMX-20240815306568 \N \N \N 1 \N [{"file_id": "427b50b2-3623-402b-bb0d-1c6e969a674e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31779aa5d26743c48f8f699990079d4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31779aa5d26743c48f8f699990079d4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31779aa5d26743c48f8f699990079d4c.jpg", "file_size": 26846, "is_delete": false, "file_type": 1, "original_file_name": "HT073FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31779aa5d26743c48f8f699990079d4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31779aa5d26743c48f8f699990079d4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31779aa5d26743c48f8f699990079d4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31779aa5d26743c48f8f699990079d4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31779aa5d26743c48f8f699990079d4c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tgNKYSzNBwXmLgx8nDnA1kasKS8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.708622+00 2025-12-09 10:15:11.708627+00 11383 DL30853#批布玫红 SPMX-20240815306566 \N \N \N 1 \N [{"file_id": "494a92b2-3f3b-4130-992a-35d3c6b1e2d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf9575ab5a464005a849ea8d643df8dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf9575ab5a464005a849ea8d643df8dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf9575ab5a464005a849ea8d643df8dc.jpg", "file_size": 24590, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9575ab5a464005a849ea8d643df8dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9575ab5a464005a849ea8d643df8dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9575ab5a464005a849ea8d643df8dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf9575ab5a464005a849ea8d643df8dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf9575ab5a464005a849ea8d643df8dc.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aO8xMBSaZHFRfjCwmA3qnjA3wS0=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.710599+00 2025-12-09 10:15:11.710603+00 11384 23-2117#A9-3XL SPMX-20240815306567 \N \N \N 1 \N [{"file_id": "cebfbf84-2c2b-48a6-bf3c-afed81622784", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f22a49bffa9d48d682128d07baac0f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f22a49bffa9d48d682128d07baac0f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f22a49bffa9d48d682128d07baac0f1c.jpg", "file_size": 18762, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22a49bffa9d48d682128d07baac0f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22a49bffa9d48d682128d07baac0f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22a49bffa9d48d682128d07baac0f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f22a49bffa9d48d682128d07baac0f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f22a49bffa9d48d682128d07baac0f1c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JEgr9HE8MVw-9DD_ckjutaqgGM=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.712564+00 2025-12-09 10:15:11.712568+00 11385 LZ1289#背心款2号色 SPMX-20240815306572 \N \N \N 1 \N [{"file_id": "226e4cce-0456-4fe3-836c-b3efd1e8e217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe6d1686a7574f3e9d49de0a6223433c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe6d1686a7574f3e9d49de0a6223433c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe6d1686a7574f3e9d49de0a6223433c.jpg", "file_size": 18906, "is_delete": false, "file_type": 1, "original_file_name": "LZ1289#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6d1686a7574f3e9d49de0a6223433c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6d1686a7574f3e9d49de0a6223433c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe6d1686a7574f3e9d49de0a6223433c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe6d1686a7574f3e9d49de0a6223433c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe6d1686a7574f3e9d49de0a6223433c.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LWlK_Lgo3mHb0SyT3hOQg18Utg=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.714548+00 2025-12-09 10:15:11.714553+00 11386 LZ1289#背心款1号色 SPMX-20240815306561 \N \N \N 1 \N [{"file_id": "66c15512-b471-4be4-a556-fa4f29c9fabd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5445b03075f46239bd8c23330ddd65b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5445b03075f46239bd8c23330ddd65b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5445b03075f46239bd8c23330ddd65b.jpg", "file_size": 19119, "is_delete": false, "file_type": 1, "original_file_name": "LZ1289#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5445b03075f46239bd8c23330ddd65b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5445b03075f46239bd8c23330ddd65b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5445b03075f46239bd8c23330ddd65b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5445b03075f46239bd8c23330ddd65b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5445b03075f46239bd8c23330ddd65b.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOzpwzbqRDqwFRRbbN_kz4auNKc=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.716584+00 2025-12-09 10:15:11.716588+00 11387 8134FWF#长袖 SPMX-20240815306571 \N \N \N 1 \N [{"file_id": "2b24a182-ebf1-421c-8140-e3c17bb25ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9dc05c176484e81a6b2476341218bde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9dc05c176484e81a6b2476341218bde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9dc05c176484e81a6b2476341218bde.jpg", "file_size": 20906, "is_delete": false, "file_type": 1, "original_file_name": "8134FWF#长袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dc05c176484e81a6b2476341218bde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dc05c176484e81a6b2476341218bde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dc05c176484e81a6b2476341218bde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9dc05c176484e81a6b2476341218bde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9dc05c176484e81a6b2476341218bde.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eah0lLo1Tt8UWgqTmigVBkAT7OM=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.718566+00 2025-12-09 10:15:11.71857+00 11388 C429#蓝色 SPMX-20240815306575 \N \N \N 1 \N [{"file_id": "013a0037-118a-4250-8f70-0c16fed16e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41580a75867a41739f9c73ec22936709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41580a75867a41739f9c73ec22936709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41580a75867a41739f9c73ec22936709.jpg", "file_size": 72925, "is_delete": false, "file_type": 1, "original_file_name": "C429#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41580a75867a41739f9c73ec22936709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41580a75867a41739f9c73ec22936709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41580a75867a41739f9c73ec22936709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41580a75867a41739f9c73ec22936709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41580a75867a41739f9c73ec22936709.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9qKl3CVeO5uoC7pm1DR5vyPeRs=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.720602+00 2025-12-09 10:15:11.720607+00 11389 FHXGPK5-004-3 SPMX-20240815306569 \N \N \N 1 \N [{"file_id": "51a5f936-8720-49ee-b449-48988a53eaf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f87688170683492997249c9bc0dc9dbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f87688170683492997249c9bc0dc9dbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f87688170683492997249c9bc0dc9dbe.jpg", "file_size": 28034, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87688170683492997249c9bc0dc9dbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87688170683492997249c9bc0dc9dbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87688170683492997249c9bc0dc9dbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f87688170683492997249c9bc0dc9dbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f87688170683492997249c9bc0dc9dbe.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUg1uLhMcIUvPVAh4a608Tql3VM=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.722641+00 2025-12-09 10:15:11.722646+00 11390 1105#枣红 SPMX-20240815306563 \N \N \N 1 \N [{"file_id": "3b033a5d-b2e2-47ea-b780-aac8bf258808", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b516e1c6f79472792bd01748c2af405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b516e1c6f79472792bd01748c2af405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b516e1c6f79472792bd01748c2af405.jpg", "file_size": 20079, "is_delete": false, "file_type": 1, "original_file_name": "1105#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b516e1c6f79472792bd01748c2af405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b516e1c6f79472792bd01748c2af405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b516e1c6f79472792bd01748c2af405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b516e1c6f79472792bd01748c2af405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b516e1c6f79472792bd01748c2af405.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKjSDdbAfKE2nSvq87xZofKOAX8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.724652+00 2025-12-09 10:15:11.724656+00 11391 1105#湖绿 SPMX-20240815306573 \N \N \N 1 \N [{"file_id": "1190586f-42de-42d6-852a-65dff86a3132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae8f6c25c7fb4a9588016b87080a95a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae8f6c25c7fb4a9588016b87080a95a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae8f6c25c7fb4a9588016b87080a95a4.jpg", "file_size": 19036, "is_delete": false, "file_type": 1, "original_file_name": "1105#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8f6c25c7fb4a9588016b87080a95a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8f6c25c7fb4a9588016b87080a95a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae8f6c25c7fb4a9588016b87080a95a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae8f6c25c7fb4a9588016b87080a95a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae8f6c25c7fb4a9588016b87080a95a4.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0BlXdSPSBwt2UFvn5fCbzbz6-8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.726674+00 2025-12-09 10:15:11.726679+00 11392 0003-A11#LWQ15 SPMX-20240815306576 \N \N \N 1 \N [{"file_id": "4dba3c49-bdac-420b-a30e-0d18d3b53473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134164c1213c47e6a08be4807e4833c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134164c1213c47e6a08be4807e4833c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134164c1213c47e6a08be4807e4833c2.jpg", "file_size": 16704, "is_delete": false, "file_type": 1, "original_file_name": "0003-A11#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134164c1213c47e6a08be4807e4833c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134164c1213c47e6a08be4807e4833c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134164c1213c47e6a08be4807e4833c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134164c1213c47e6a08be4807e4833c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134164c1213c47e6a08be4807e4833c2.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_RXehCl8k77cFEljNkeW1dVi_8=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.728641+00 2025-12-09 10:15:11.728646+00 11393 C429#绿色 SPMX-20240815306562 \N \N \N 1 \N [{"file_id": "e232e674-068a-48f1-b0c6-de6f7eec47ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59430def017744ce9f97cc722679b754.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59430def017744ce9f97cc722679b754.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59430def017744ce9f97cc722679b754.jpg", "file_size": 72385, "is_delete": false, "file_type": 1, "original_file_name": "C429#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59430def017744ce9f97cc722679b754.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59430def017744ce9f97cc722679b754.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59430def017744ce9f97cc722679b754.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59430def017744ce9f97cc722679b754.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59430def017744ce9f97cc722679b754.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DestQimfD_MjYdlMo24zo-G9wGc=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:11.730686+00 2025-12-09 10:15:11.73069+00 11394 JTSS270FW#VS-D3 SPMX-20240815306574 \N \N \N 1 \N [{"file_id": "0c8787f6-b8c4-4dcb-bb30-9ae7d8cf70dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd7d51db368c4f12b16ef9c5569b7abe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd7d51db368c4f12b16ef9c5569b7abe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd7d51db368c4f12b16ef9c5569b7abe.jpg", "file_size": 18667, "is_delete": false, "file_type": 1, "original_file_name": "JTSS270FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7d51db368c4f12b16ef9c5569b7abe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7d51db368c4f12b16ef9c5569b7abe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7d51db368c4f12b16ef9c5569b7abe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd7d51db368c4f12b16ef9c5569b7abe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd7d51db368c4f12b16ef9c5569b7abe.jpg?e=1765361710&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTjrILOfmkWdKY3PEHyg4hGpPVY=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.393156+00 2025-12-09 10:15:12.393164+00 11395 JTSS269FW#VS-D3 SPMX-20240815306564 \N \N \N 1 \N [{"file_id": "fd857de6-7b05-4405-80f2-63e265a5393c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4edcd04236a4e05af99287af6b4e814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4edcd04236a4e05af99287af6b4e814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4edcd04236a4e05af99287af6b4e814.jpg", "file_size": 14278, "is_delete": false, "file_type": 1, "original_file_name": "JTSS269FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4edcd04236a4e05af99287af6b4e814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4edcd04236a4e05af99287af6b4e814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4edcd04236a4e05af99287af6b4e814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4edcd04236a4e05af99287af6b4e814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4edcd04236a4e05af99287af6b4e814.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SXPA_h_URWRODPrR7T_JXs0vKwE=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.39549+00 2025-12-09 10:15:12.395496+00 11396 LJ9982FW#紫M VS-D3 SPMX-20240815306570 \N \N \N 1 \N [{"file_id": "5e14edc7-4f68-4444-a098-60cf0c5b109d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6da059159864162b7cca745cc4e46e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6da059159864162b7cca745cc4e46e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6da059159864162b7cca745cc4e46e7.jpg", "file_size": 14119, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#紫M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6da059159864162b7cca745cc4e46e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6da059159864162b7cca745cc4e46e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6da059159864162b7cca745cc4e46e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6da059159864162b7cca745cc4e46e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6da059159864162b7cca745cc4e46e7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aANsE10fQejUt7ZtxAJDaE7MITI=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.397646+00 2025-12-09 10:15:12.39765+00 11397 C429#黑色 SPMX-20240815306587 \N \N \N 1 \N [{"file_id": "c96d565d-558d-4a3e-93c9-0c6512db5778", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f9b73b41ab8478e8941082392b41bfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f9b73b41ab8478e8941082392b41bfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f9b73b41ab8478e8941082392b41bfd.jpg", "file_size": 66796, "is_delete": false, "file_type": 1, "original_file_name": "C429#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f9b73b41ab8478e8941082392b41bfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f9b73b41ab8478e8941082392b41bfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f9b73b41ab8478e8941082392b41bfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f9b73b41ab8478e8941082392b41bfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f9b73b41ab8478e8941082392b41bfd.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W4iDK0s4u05oX6JA-KO7Y9mMY-U=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.399559+00 2025-12-09 10:15:12.399565+00 11398 DL31023#改前幅大红 SPMX-20240815306586 \N \N \N 1 \N [{"file_id": "0e30f843-9764-4908-8312-cae75f3d1a29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f562f0a3d2074aaa8acf943c52d77ccc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f562f0a3d2074aaa8acf943c52d77ccc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f562f0a3d2074aaa8acf943c52d77ccc.jpg", "file_size": 13016, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f562f0a3d2074aaa8acf943c52d77ccc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f562f0a3d2074aaa8acf943c52d77ccc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f562f0a3d2074aaa8acf943c52d77ccc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f562f0a3d2074aaa8acf943c52d77ccc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f562f0a3d2074aaa8acf943c52d77ccc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CZK5zST5rHJCQs8CHlx5C9ZGPc=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.401381+00 2025-12-09 10:15:12.401387+00 11399 1105#灰色 SPMX-20240815306582 \N \N \N 1 \N [{"file_id": "c117ab13-7eb9-4223-a6d9-69bb0ddac954", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8935a459ff1a418fa6eb129461a4421f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8935a459ff1a418fa6eb129461a4421f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8935a459ff1a418fa6eb129461a4421f.jpg", "file_size": 24175, "is_delete": false, "file_type": 1, "original_file_name": "1105#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8935a459ff1a418fa6eb129461a4421f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8935a459ff1a418fa6eb129461a4421f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8935a459ff1a418fa6eb129461a4421f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8935a459ff1a418fa6eb129461a4421f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8935a459ff1a418fa6eb129461a4421f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z247_QU3eXiO8twRdnv4stNT6Jw=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.403222+00 2025-12-09 10:15:12.403226+00 11400 FHXGPK5-004-5 SPMX-20240815306592 \N \N \N 1 \N [{"file_id": "c38035a7-9cde-4c7e-9a13-bf6146186920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db659318b8324e90a34f5462b13c2107.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db659318b8324e90a34f5462b13c2107.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db659318b8324e90a34f5462b13c2107.jpg", "file_size": 29697, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db659318b8324e90a34f5462b13c2107.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db659318b8324e90a34f5462b13c2107.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db659318b8324e90a34f5462b13c2107.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db659318b8324e90a34f5462b13c2107.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db659318b8324e90a34f5462b13c2107.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_mdpMnHZ_eiIUxAzASUPVcXRVw=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.405228+00 2025-12-09 10:15:12.405233+00 11401 8134FWF#长袖上衣 SPMX-20240815306581 \N \N \N 1 \N [{"file_id": "64bf43d5-6c40-45eb-bc25-7f24e30d6a6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "616326a5774d4354941b6954266f8b89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "616326a5774d4354941b6954266f8b89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "616326a5774d4354941b6954266f8b89.jpg", "file_size": 16398, "is_delete": false, "file_type": 1, "original_file_name": "8134FWF#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616326a5774d4354941b6954266f8b89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616326a5774d4354941b6954266f8b89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/616326a5774d4354941b6954266f8b89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/616326a5774d4354941b6954266f8b89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/616326a5774d4354941b6954266f8b89.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHWbVYi7xhELO1V2-zkrAqND7Jo=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.407251+00 2025-12-09 10:15:12.407256+00 11402 DL30853#批布黄色 SPMX-20240815306577 \N \N \N 1 \N [{"file_id": "568ba29c-32b2-4068-9ad2-70a8cfa33853", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f37da6d8314d4935ac3af8ad2efa86bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f37da6d8314d4935ac3af8ad2efa86bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f37da6d8314d4935ac3af8ad2efa86bb.jpg", "file_size": 23209, "is_delete": false, "file_type": 1, "original_file_name": "DL30853#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37da6d8314d4935ac3af8ad2efa86bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37da6d8314d4935ac3af8ad2efa86bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37da6d8314d4935ac3af8ad2efa86bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f37da6d8314d4935ac3af8ad2efa86bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f37da6d8314d4935ac3af8ad2efa86bb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwM_jIcTBDY2H8hyD8eXWmp5jhM=", "createTime": "2024-08-15 14:52:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.409237+00 2025-12-09 10:15:12.409242+00 11403 JTSS271FW#VS-D3 SPMX-20240815306585 \N \N \N 1 \N [{"file_id": "203b2338-e0f5-47ed-9373-95c218a545f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67afb4199f3c413b87b6a7731f0d104c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67afb4199f3c413b87b6a7731f0d104c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67afb4199f3c413b87b6a7731f0d104c.jpg", "file_size": 27333, "is_delete": false, "file_type": 1, "original_file_name": "JTSS271FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67afb4199f3c413b87b6a7731f0d104c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67afb4199f3c413b87b6a7731f0d104c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67afb4199f3c413b87b6a7731f0d104c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67afb4199f3c413b87b6a7731f0d104c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67afb4199f3c413b87b6a7731f0d104c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cmE47FVi2y15EusZ8LVxm7sxuM=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.411217+00 2025-12-09 10:15:12.411222+00 11404 0003-A11#批布 SPMX-20240815306588 \N \N \N 1 \N [{"file_id": "7d446793-eef1-4021-a2c0-9014f61593ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d43f1da1012b40e4a4b454a00a4da42f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d43f1da1012b40e4a4b454a00a4da42f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d43f1da1012b40e4a4b454a00a4da42f.jpg", "file_size": 12849, "is_delete": false, "file_type": 1, "original_file_name": "0003-A11#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43f1da1012b40e4a4b454a00a4da42f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43f1da1012b40e4a4b454a00a4da42f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43f1da1012b40e4a4b454a00a4da42f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d43f1da1012b40e4a4b454a00a4da42f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d43f1da1012b40e4a4b454a00a4da42f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8c9MM2kJ2ImVSIG-gYya-ZEMvN8=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.413169+00 2025-12-09 10:15:12.413174+00 11405 HT075FW#VS-D3 SPMX-20240815306589 \N \N \N 1 \N [{"file_id": "cb174afe-aac2-4798-a54b-f51ac33895d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe4dc63dcafd4f65a92a1469470f3cd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe4dc63dcafd4f65a92a1469470f3cd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe4dc63dcafd4f65a92a1469470f3cd4.jpg", "file_size": 18241, "is_delete": false, "file_type": 1, "original_file_name": "HT075FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4dc63dcafd4f65a92a1469470f3cd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4dc63dcafd4f65a92a1469470f3cd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe4dc63dcafd4f65a92a1469470f3cd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe4dc63dcafd4f65a92a1469470f3cd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe4dc63dcafd4f65a92a1469470f3cd4.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6g0vsKowGdbGtFJaWSjEMx6w59Q=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.415199+00 2025-12-09 10:15:12.415204+00 11406 FHXGPK5-004-4 SPMX-20240815306579 \N \N \N 1 \N [{"file_id": "06c11bf1-1d4b-4d0f-a486-a5392fc7b58b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b889fa38f31b47c683870910c538dcc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b889fa38f31b47c683870910c538dcc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b889fa38f31b47c683870910c538dcc7.jpg", "file_size": 28197, "is_delete": false, "file_type": 1, "original_file_name": "FHXGPK5-004-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b889fa38f31b47c683870910c538dcc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b889fa38f31b47c683870910c538dcc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b889fa38f31b47c683870910c538dcc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b889fa38f31b47c683870910c538dcc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b889fa38f31b47c683870910c538dcc7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pnUJQAaIw0ulJO911V0aqok0ZM=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.41724+00 2025-12-09 10:15:12.417246+00 11407 8134FWF#长袖匹布 SPMX-20240815306590 \N \N \N 1 \N [{"file_id": "864db4cf-8a82-437a-a522-3275708517a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a87d8c60b9a143f1ad1ed520ec7b762b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a87d8c60b9a143f1ad1ed520ec7b762b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a87d8c60b9a143f1ad1ed520ec7b762b.jpg", "file_size": 8985, "is_delete": false, "file_type": 1, "original_file_name": "8134FWF#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87d8c60b9a143f1ad1ed520ec7b762b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87d8c60b9a143f1ad1ed520ec7b762b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a87d8c60b9a143f1ad1ed520ec7b762b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a87d8c60b9a143f1ad1ed520ec7b762b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a87d8c60b9a143f1ad1ed520ec7b762b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yh1xLoAnyBxnjzBgsX6GjvCJiVM=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.419464+00 2025-12-09 10:15:12.419469+00 11408 HT074FW#VS-D3黄 SPMX-20240815306578 \N \N \N 1 \N [{"file_id": "47830495-2306-4ecd-99c1-6dedd270da08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9085b277eb8349a39d35f4967248eed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9085b277eb8349a39d35f4967248eed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9085b277eb8349a39d35f4967248eed3.jpg", "file_size": 16696, "is_delete": false, "file_type": 1, "original_file_name": "HT074FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9085b277eb8349a39d35f4967248eed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9085b277eb8349a39d35f4967248eed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9085b277eb8349a39d35f4967248eed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9085b277eb8349a39d35f4967248eed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9085b277eb8349a39d35f4967248eed3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PR_FU1PE8t14EwX7xGiFHTMesk=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.42205+00 2025-12-09 10:15:12.422055+00 11409 LJ9982FW#紫S VS-D3 SPMX-20240815306580 \N \N \N 1 \N [{"file_id": "92b9ad09-ca82-43f6-b47a-c65731c8e917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a3844bfc5f44c2f8f32cb025cf8e46e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a3844bfc5f44c2f8f32cb025cf8e46e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a3844bfc5f44c2f8f32cb025cf8e46e.jpg", "file_size": 13569, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#紫S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3844bfc5f44c2f8f32cb025cf8e46e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3844bfc5f44c2f8f32cb025cf8e46e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a3844bfc5f44c2f8f32cb025cf8e46e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a3844bfc5f44c2f8f32cb025cf8e46e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a3844bfc5f44c2f8f32cb025cf8e46e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhhALp8oj-4XdwkZbZu0059YPSQ=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.4243+00 2025-12-09 10:15:12.424305+00 11410 23-2117#A9-4XL SPMX-20240815306583 \N \N \N 1 \N [{"file_id": "a5752d4e-9b65-4d22-ae63-dba0257fa14f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98042baab64049b2b6fc0911f36f6f94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98042baab64049b2b6fc0911f36f6f94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98042baab64049b2b6fc0911f36f6f94.jpg", "file_size": 18441, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98042baab64049b2b6fc0911f36f6f94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98042baab64049b2b6fc0911f36f6f94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98042baab64049b2b6fc0911f36f6f94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98042baab64049b2b6fc0911f36f6f94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98042baab64049b2b6fc0911f36f6f94.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-NYdgPIEdMsNwd4FtFiDUlkt3U=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.426404+00 2025-12-09 10:15:12.426409+00 11411 LZ1289#背心款3号色 SPMX-20240815306584 \N \N \N 1 \N [{"file_id": "1a44dca7-df42-4ff1-a46d-9357ed17a59a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f93d2a2b62943198d2864401d664185.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f93d2a2b62943198d2864401d664185.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f93d2a2b62943198d2864401d664185.jpg", "file_size": 18626, "is_delete": false, "file_type": 1, "original_file_name": "LZ1289#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93d2a2b62943198d2864401d664185.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93d2a2b62943198d2864401d664185.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f93d2a2b62943198d2864401d664185.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f93d2a2b62943198d2864401d664185.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f93d2a2b62943198d2864401d664185.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8kTsG_tt7PoAmdeDX0ZIaJnwVVU=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.428557+00 2025-12-09 10:15:12.428563+00 11412 LJ9982FW#紫XL VS-D3 SPMX-20240815306591 \N \N \N 1 \N [{"file_id": "edcd8bf5-c34c-40b5-9187-afddd2519a71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3c8f0094bfc4a58b89e850d860f56de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3c8f0094bfc4a58b89e850d860f56de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3c8f0094bfc4a58b89e850d860f56de.jpg", "file_size": 13232, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#紫XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c8f0094bfc4a58b89e850d860f56de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c8f0094bfc4a58b89e850d860f56de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3c8f0094bfc4a58b89e850d860f56de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3c8f0094bfc4a58b89e850d860f56de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3c8f0094bfc4a58b89e850d860f56de.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bQ0h0OMl65nge5_HgnhZ6ndYBw=", "createTime": "2024-08-15 14:52:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.430718+00 2025-12-09 10:15:12.430724+00 11413 DL31023#改前幅宝蓝 SPMX-20240815306601 \N \N \N 1 \N [{"file_id": "a35844e8-8d0a-42e5-a0b4-9bc435fe47ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a2f515aaa84fc9917bf316789f41f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a2f515aaa84fc9917bf316789f41f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a2f515aaa84fc9917bf316789f41f4.jpg", "file_size": 15010, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a2f515aaa84fc9917bf316789f41f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a2f515aaa84fc9917bf316789f41f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a2f515aaa84fc9917bf316789f41f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a2f515aaa84fc9917bf316789f41f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a2f515aaa84fc9917bf316789f41f4.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VdnKTxJ0Y4q6AOaTebv7-eTCyDs=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.43262+00 2025-12-09 10:15:12.432625+00 11414 LZ1289#背心款4号色 SPMX-20240815306600 \N \N \N 1 \N [{"file_id": "6e83e796-cbbd-4f44-898b-ec3cd94e6fd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fd508c651df43498459e017fc6fe8a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fd508c651df43498459e017fc6fe8a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fd508c651df43498459e017fc6fe8a5.jpg", "file_size": 18974, "is_delete": false, "file_type": 1, "original_file_name": "LZ1289#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd508c651df43498459e017fc6fe8a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd508c651df43498459e017fc6fe8a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd508c651df43498459e017fc6fe8a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fd508c651df43498459e017fc6fe8a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fd508c651df43498459e017fc6fe8a5.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K2RXb68soaVvMjtfRsXgvk7ahQk=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.434629+00 2025-12-09 10:15:12.434634+00 11415 JTSS271FW#蓝VS-D3 SPMX-20240815306598 \N \N \N 1 \N [{"file_id": "de005b10-9abb-4f62-b1de-30e5406c84b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad542ce82ba040539b6e0291e8c8ee5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad542ce82ba040539b6e0291e8c8ee5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad542ce82ba040539b6e0291e8c8ee5a.jpg", "file_size": 25557, "is_delete": false, "file_type": 1, "original_file_name": "JTSS271FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad542ce82ba040539b6e0291e8c8ee5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad542ce82ba040539b6e0291e8c8ee5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad542ce82ba040539b6e0291e8c8ee5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad542ce82ba040539b6e0291e8c8ee5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad542ce82ba040539b6e0291e8c8ee5a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKDlOOiWk6O5rg9XULko0sTUpSI=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.436367+00 2025-12-09 10:15:12.436371+00 11416 0003-A12#LWQ15 SPMX-20240815306596 \N \N \N 1 \N [{"file_id": "fed03d7d-841d-476e-9071-c315e1611286", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d2cd3b7799448e88d4cea8914638ef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d2cd3b7799448e88d4cea8914638ef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d2cd3b7799448e88d4cea8914638ef0.jpg", "file_size": 9081, "is_delete": false, "file_type": 1, "original_file_name": "0003-A12#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2cd3b7799448e88d4cea8914638ef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2cd3b7799448e88d4cea8914638ef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2cd3b7799448e88d4cea8914638ef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d2cd3b7799448e88d4cea8914638ef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d2cd3b7799448e88d4cea8914638ef0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WCp01OlAdyUc07McnsRoiMYXPt8=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.43831+00 2025-12-09 10:15:12.438315+00 11417 LJ9982FW#绿2XL VS-D3 SPMX-20240815306595 \N \N \N 1 \N [{"file_id": "b9fa81b8-6bb2-48a8-ad6b-0ad692cae49a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12a02e32e53e4aa094574d4e2d99ed17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12a02e32e53e4aa094574d4e2d99ed17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12a02e32e53e4aa094574d4e2d99ed17.jpg", "file_size": 13141, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#绿2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a02e32e53e4aa094574d4e2d99ed17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a02e32e53e4aa094574d4e2d99ed17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a02e32e53e4aa094574d4e2d99ed17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12a02e32e53e4aa094574d4e2d99ed17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12a02e32e53e4aa094574d4e2d99ed17.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHR1yNi8akzTXh-kW-lF1AdwSlY=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.440251+00 2025-12-09 10:15:12.440255+00 11418 FJ#净红色 SPMX-20240815306597 \N \N \N 1 \N [{"file_id": "86dba312-a382-4f26-974a-351daaac51c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a330fa76a98447d3b532422c445e024d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a330fa76a98447d3b532422c445e024d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a330fa76a98447d3b532422c445e024d.jpg", "file_size": 3244, "is_delete": false, "file_type": 1, "original_file_name": "FJ#净红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a330fa76a98447d3b532422c445e024d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a330fa76a98447d3b532422c445e024d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a330fa76a98447d3b532422c445e024d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a330fa76a98447d3b532422c445e024d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a330fa76a98447d3b532422c445e024d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EeYq6bmOYD6a2_OcfV5BXiditsw=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.442558+00 2025-12-09 10:15:12.442563+00 11419 23-2117#A9-领子3XL SPMX-20240815306594 \N \N \N 1 \N [{"file_id": "5b253a35-5a6d-4143-a098-5c048737687b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5974bb0bd25d4130a4450da297656b42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5974bb0bd25d4130a4450da297656b42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5974bb0bd25d4130a4450da297656b42.jpg", "file_size": 12957, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5974bb0bd25d4130a4450da297656b42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5974bb0bd25d4130a4450da297656b42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5974bb0bd25d4130a4450da297656b42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5974bb0bd25d4130a4450da297656b42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5974bb0bd25d4130a4450da297656b42.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sSrq5vfCHD7rClmxMdQ2qrzO_g=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.444905+00 2025-12-09 10:15:12.44491+00 11420 1105#玫红 SPMX-20240815306593 \N \N \N 1 \N [{"file_id": "7aab6cc4-708b-4d04-a4ed-214246884a39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b9620b8932d43768def83e9fa16a145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b9620b8932d43768def83e9fa16a145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b9620b8932d43768def83e9fa16a145.jpg", "file_size": 19499, "is_delete": false, "file_type": 1, "original_file_name": "1105#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9620b8932d43768def83e9fa16a145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9620b8932d43768def83e9fa16a145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9620b8932d43768def83e9fa16a145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b9620b8932d43768def83e9fa16a145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b9620b8932d43768def83e9fa16a145.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9PbcqbpM42ZLZ1HfsrPtRWzZq0=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.447047+00 2025-12-09 10:15:12.447053+00 11421 8134FWF#长袖裤子 SPMX-20240815306602 \N \N \N 1 \N [{"file_id": "6b3c7d00-63ac-4395-9c4d-176860816e43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d3f66a8169c4b758fa2fadd59fe22df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d3f66a8169c4b758fa2fadd59fe22df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d3f66a8169c4b758fa2fadd59fe22df.jpg", "file_size": 12487, "is_delete": false, "file_type": 1, "original_file_name": "8134FWF#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d3f66a8169c4b758fa2fadd59fe22df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d3f66a8169c4b758fa2fadd59fe22df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d3f66a8169c4b758fa2fadd59fe22df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d3f66a8169c4b758fa2fadd59fe22df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d3f66a8169c4b758fa2fadd59fe22df.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjPWyBfMlBZVreNQqkFbj0Jygcs=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.448998+00 2025-12-09 10:15:12.449004+00 11422 HT075FW#VS-D3绿 SPMX-20240815306599 \N \N \N 1 \N [{"file_id": "2c7151be-dda0-459e-8717-021948374853", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdbd9159d4e34fec8c7a74d689c16050.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdbd9159d4e34fec8c7a74d689c16050.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdbd9159d4e34fec8c7a74d689c16050.jpg", "file_size": 18618, "is_delete": false, "file_type": 1, "original_file_name": "HT075FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbd9159d4e34fec8c7a74d689c16050.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbd9159d4e34fec8c7a74d689c16050.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbd9159d4e34fec8c7a74d689c16050.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdbd9159d4e34fec8c7a74d689c16050.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdbd9159d4e34fec8c7a74d689c16050.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kuY7GI18g85yUiBXvE5I40bx_fI=", "createTime": "2024-08-15 14:52:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.450806+00 2025-12-09 10:15:12.450812+00 11423 DL31023#改前幅枣红 SPMX-20240815306615 \N \N \N 1 \N [{"file_id": "77d6a345-8f7d-447e-908e-c3298eb5507c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "353236a830ca47dda8948e69b78fb80e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "353236a830ca47dda8948e69b78fb80e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "353236a830ca47dda8948e69b78fb80e.jpg", "file_size": 14795, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353236a830ca47dda8948e69b78fb80e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353236a830ca47dda8948e69b78fb80e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353236a830ca47dda8948e69b78fb80e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/353236a830ca47dda8948e69b78fb80e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/353236a830ca47dda8948e69b78fb80e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RsBHybRVWgEIWN8rYmEXYmwHrp0=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.452646+00 2025-12-09 10:15:12.452651+00 11424 1105#粉色 SPMX-20240815306614 \N \N \N 1 \N [{"file_id": "7c6d02ff-aae4-41a1-be8d-d6391e1bd83a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f5351f5ee5f48f3b387787c10d36c20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f5351f5ee5f48f3b387787c10d36c20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f5351f5ee5f48f3b387787c10d36c20.jpg", "file_size": 23931, "is_delete": false, "file_type": 1, "original_file_name": "1105#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5351f5ee5f48f3b387787c10d36c20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5351f5ee5f48f3b387787c10d36c20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f5351f5ee5f48f3b387787c10d36c20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f5351f5ee5f48f3b387787c10d36c20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f5351f5ee5f48f3b387787c10d36c20.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9wfj6bZ7J4WjnGwB-PtPikrMtc=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.454662+00 2025-12-09 10:15:12.454667+00 11425 LJ9982FW#绿M VS-D3 SPMX-20240815306616 \N \N \N 1 \N [{"file_id": "8f3d4d36-93d4-474b-824c-f48e0e9ae44a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2e1598ca7bf41e7853815b89a8c4eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2e1598ca7bf41e7853815b89a8c4eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2e1598ca7bf41e7853815b89a8c4eca.jpg", "file_size": 14478, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#绿M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e1598ca7bf41e7853815b89a8c4eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e1598ca7bf41e7853815b89a8c4eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e1598ca7bf41e7853815b89a8c4eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2e1598ca7bf41e7853815b89a8c4eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2e1598ca7bf41e7853815b89a8c4eca.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8tAamB0IVRzjLJEyiulUzdO7sc=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.456792+00 2025-12-09 10:15:12.456799+00 11426 23-2117#A9-领子4XL SPMX-20240815306604 \N \N \N 1 \N [{"file_id": "6a9c32f4-0b21-4dd3-ab5b-69f11706af4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5725098e2bf544e8a723716243575fb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5725098e2bf544e8a723716243575fb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5725098e2bf544e8a723716243575fb2.jpg", "file_size": 13304, "is_delete": false, "file_type": 1, "original_file_name": "23-2117#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5725098e2bf544e8a723716243575fb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5725098e2bf544e8a723716243575fb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5725098e2bf544e8a723716243575fb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5725098e2bf544e8a723716243575fb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5725098e2bf544e8a723716243575fb2.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQ53IBQz_u4pc-NEE2GVCoIWDeY=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.458978+00 2025-12-09 10:15:12.458984+00 11427 LZ1289#背心款5号色 SPMX-20240815306609 \N \N \N 1 \N [{"file_id": "57323a11-7e81-42d6-a3c0-8effd0463c53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89ccb8a726a54071bc0d175becb7df76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89ccb8a726a54071bc0d175becb7df76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89ccb8a726a54071bc0d175becb7df76.jpg", "file_size": 18680, "is_delete": false, "file_type": 1, "original_file_name": "LZ1289#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ccb8a726a54071bc0d175becb7df76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ccb8a726a54071bc0d175becb7df76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89ccb8a726a54071bc0d175becb7df76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89ccb8a726a54071bc0d175becb7df76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89ccb8a726a54071bc0d175becb7df76.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sVSqRyHu_b176MuTpHfeYTpPxw=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.460892+00 2025-12-09 10:15:12.460897+00 11428 8135FWF#长袖 SPMX-20240815306611 \N \N \N 1 \N [{"file_id": "4c362656-1905-485c-9df0-3b283804b027", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1cdf2f95a844fd58ade8effb13932cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1cdf2f95a844fd58ade8effb13932cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1cdf2f95a844fd58ade8effb13932cb.jpg", "file_size": 30000, "is_delete": false, "file_type": 1, "original_file_name": "8135FWF#长袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cdf2f95a844fd58ade8effb13932cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cdf2f95a844fd58ade8effb13932cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cdf2f95a844fd58ade8effb13932cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1cdf2f95a844fd58ade8effb13932cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1cdf2f95a844fd58ade8effb13932cb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBQDj5cS_sf9bkt0SCOrBnuEQ6c=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.462718+00 2025-12-09 10:15:12.462723+00 11429 LJ9982FW#绿L VS-D3 SPMX-20240815306606 \N \N \N 1 \N [{"file_id": "28b18263-1f38-4d13-8604-4ee79a94fe9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5577088de4645a89163a584ed41a821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5577088de4645a89163a584ed41a821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5577088de4645a89163a584ed41a821.jpg", "file_size": 14826, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#绿L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5577088de4645a89163a584ed41a821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5577088de4645a89163a584ed41a821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5577088de4645a89163a584ed41a821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5577088de4645a89163a584ed41a821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5577088de4645a89163a584ed41a821.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6s_Jsc9nVIPHSLcw3QHIfQdMEpU=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.464734+00 2025-12-09 10:15:12.464739+00 11430 FJ#蓝色 SPMX-20240815306613 \N \N \N 1 \N [{"file_id": "b82ce86f-a8b1-4e99-ae77-136ca62a005e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a57ee137fa4c4ccea6e49f0d00fde740.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a57ee137fa4c4ccea6e49f0d00fde740.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a57ee137fa4c4ccea6e49f0d00fde740.jpg", "file_size": 14390, "is_delete": false, "file_type": 1, "original_file_name": "FJ#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57ee137fa4c4ccea6e49f0d00fde740.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57ee137fa4c4ccea6e49f0d00fde740.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a57ee137fa4c4ccea6e49f0d00fde740.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a57ee137fa4c4ccea6e49f0d00fde740.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a57ee137fa4c4ccea6e49f0d00fde740.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpRtcCCrORUCyfAF3FSFiK1W30A=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.466738+00 2025-12-09 10:15:12.466742+00 11431 C430#-原版色#LWQ15 SPMX-20240815306605 \N \N \N 1 \N [{"file_id": "c7e5c565-13e2-4edb-9c82-a5e9f8af07a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ebdf6edc8be403d86b9db971de4013b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ebdf6edc8be403d86b9db971de4013b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ebdf6edc8be403d86b9db971de4013b.jpg", "file_size": 62763, "is_delete": false, "file_type": 1, "original_file_name": "C430#-原版色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebdf6edc8be403d86b9db971de4013b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebdf6edc8be403d86b9db971de4013b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ebdf6edc8be403d86b9db971de4013b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ebdf6edc8be403d86b9db971de4013b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ebdf6edc8be403d86b9db971de4013b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fw4RmWGjQLn1NjgjkKXzsqVPTVQ=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.468792+00 2025-12-09 10:15:12.468797+00 11432 0003-A13#LWQ15 SPMX-20240815306610 \N \N \N 1 \N [{"file_id": "afc72321-b5e1-4f9b-b9de-08848e49eeba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9b5ac277d124b79b5726476959589ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9b5ac277d124b79b5726476959589ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9b5ac277d124b79b5726476959589ae.jpg", "file_size": 13395, "is_delete": false, "file_type": 1, "original_file_name": "0003-A13#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5ac277d124b79b5726476959589ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5ac277d124b79b5726476959589ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5ac277d124b79b5726476959589ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9b5ac277d124b79b5726476959589ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9b5ac277d124b79b5726476959589ae.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sqvVH2BIgBZoC5OrYYO4AK2Zsk8=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.470834+00 2025-12-09 10:15:12.470838+00 11433 1105#白色 SPMX-20240815306603 \N \N \N 1 \N [{"file_id": "214f4718-51fa-449f-8b53-76ce06514371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "913e596085994ce295e35e3043f38d48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "913e596085994ce295e35e3043f38d48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "913e596085994ce295e35e3043f38d48.jpg", "file_size": 28648, "is_delete": false, "file_type": 1, "original_file_name": "1105#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913e596085994ce295e35e3043f38d48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913e596085994ce295e35e3043f38d48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/913e596085994ce295e35e3043f38d48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/913e596085994ce295e35e3043f38d48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/913e596085994ce295e35e3043f38d48.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXmoLpHd8GPZ-gH8bTpvxXkbTFc=", "createTime": "2024-08-15 14:52:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.515329+00 2025-12-09 10:15:12.515334+00 11455 0003-A15#LWQ15 SPMX-20240815306633 \N \N \N 1 \N [{"file_id": "05f433c9-a858-4ea6-a202-c80cb612236f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg", "file_size": 19470, "is_delete": false, "file_type": 1, "original_file_name": "0003-A15#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3529b0d9b3bb4263b3f9cf226c0b7c6a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGHyFiJls2NqMAniq205-p-c-Rk=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.472846+00 2025-12-09 10:15:12.472851+00 11434 DL31023#改前幅彩兰色 SPMX-20240815306607 \N \N \N 1 \N [{"file_id": "646dc480-98eb-4d71-9b84-6f6c9b3acc87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0409c157afa4bf59792a4e936cac0e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0409c157afa4bf59792a4e936cac0e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0409c157afa4bf59792a4e936cac0e8.jpg", "file_size": 15019, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0409c157afa4bf59792a4e936cac0e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0409c157afa4bf59792a4e936cac0e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0409c157afa4bf59792a4e936cac0e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0409c157afa4bf59792a4e936cac0e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0409c157afa4bf59792a4e936cac0e8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VfBcpTyEIxElOanfZUBbipCqSuY=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.47488+00 2025-12-09 10:15:12.474884+00 11435 23-2118#A1-3XL SPMX-20240815306617 \N \N \N 1 \N [{"file_id": "49d79782-7891-4a41-a150-b5812ceebcff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0b2841831364f5aabb37d2809102247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0b2841831364f5aabb37d2809102247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0b2841831364f5aabb37d2809102247.jpg", "file_size": 21843, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b2841831364f5aabb37d2809102247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b2841831364f5aabb37d2809102247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b2841831364f5aabb37d2809102247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0b2841831364f5aabb37d2809102247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0b2841831364f5aabb37d2809102247.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERMXqqf5K3-sltxQwtlCSSorU1g=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.476668+00 2025-12-09 10:15:12.476672+00 11436 JTSS272FW#VS-D3 SPMX-20240815306608 \N \N \N 1 \N [{"file_id": "51e2fa31-a9ca-4d25-bcdb-7d8f984d357f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "808d69d428e94982b074426327713505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "808d69d428e94982b074426327713505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "808d69d428e94982b074426327713505.jpg", "file_size": 16266, "is_delete": false, "file_type": 1, "original_file_name": "JTSS272FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/808d69d428e94982b074426327713505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/808d69d428e94982b074426327713505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/808d69d428e94982b074426327713505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/808d69d428e94982b074426327713505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/808d69d428e94982b074426327713505.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELEGuLGO4EKhOlN_dGn-RUwnOwQ=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.478684+00 2025-12-09 10:15:12.47869+00 11437 HT076FW#VS-D3 SPMX-20240815306612 \N \N \N 1 \N [{"file_id": "79349c35-4b26-418e-8623-7553b00a9337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65b133791a644dbfac9411bcc1a3d38e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65b133791a644dbfac9411bcc1a3d38e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65b133791a644dbfac9411bcc1a3d38e.jpg", "file_size": 16262, "is_delete": false, "file_type": 1, "original_file_name": "HT076FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b133791a644dbfac9411bcc1a3d38e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b133791a644dbfac9411bcc1a3d38e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b133791a644dbfac9411bcc1a3d38e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65b133791a644dbfac9411bcc1a3d38e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65b133791a644dbfac9411bcc1a3d38e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96PzAXCnumBJdrKdK12TtLFC5wc=", "createTime": "2024-08-15 14:52:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.480713+00 2025-12-09 10:15:12.480718+00 11438 LZ128FWF#1号色短袖 SPMX-20240815306618 \N \N \N 1 \N [{"file_id": "48d4542f-d560-43b5-b4ba-2e78010c03df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "618da4cb144243d3b8ad27a92a42e0fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "618da4cb144243d3b8ad27a92a42e0fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "618da4cb144243d3b8ad27a92a42e0fc.jpg", "file_size": 20337, "is_delete": false, "file_type": 1, "original_file_name": "LZ128FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618da4cb144243d3b8ad27a92a42e0fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618da4cb144243d3b8ad27a92a42e0fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618da4cb144243d3b8ad27a92a42e0fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/618da4cb144243d3b8ad27a92a42e0fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/618da4cb144243d3b8ad27a92a42e0fc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHLe_SnwjaavcEOv8KnV41cayPA=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.482751+00 2025-12-09 10:15:12.482756+00 11439 C430#-墨绿#LWQ15 SPMX-20240815306623 \N \N \N 1 \N [{"file_id": "75d94501-bfde-4cc6-af8b-5f4d2022ceb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd126bd69d9846a2a7634ac25324a3b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd126bd69d9846a2a7634ac25324a3b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd126bd69d9846a2a7634ac25324a3b7.jpg", "file_size": 59475, "is_delete": false, "file_type": 1, "original_file_name": "C430#-墨绿#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd126bd69d9846a2a7634ac25324a3b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd126bd69d9846a2a7634ac25324a3b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd126bd69d9846a2a7634ac25324a3b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd126bd69d9846a2a7634ac25324a3b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd126bd69d9846a2a7634ac25324a3b7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLP3NTG_W23XiBuc2qwoxYVnM5c=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.484756+00 2025-12-09 10:15:12.484761+00 11440 FJ001#2XL SPMX-20240815306624 \N \N \N 1 \N [{"file_id": "1cf5ece9-7741-4df7-802a-907c7906ee73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e188a482d5d42f086ec844fae3b16f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e188a482d5d42f086ec844fae3b16f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e188a482d5d42f086ec844fae3b16f3.jpg", "file_size": 21208, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e188a482d5d42f086ec844fae3b16f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e188a482d5d42f086ec844fae3b16f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e188a482d5d42f086ec844fae3b16f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e188a482d5d42f086ec844fae3b16f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e188a482d5d42f086ec844fae3b16f3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4_cSakOaprLFeItqvb_msl3XWc=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.486778+00 2025-12-09 10:15:12.486784+00 11441 JTSS273FW#VS-D3 SPMX-20240815306620 \N \N \N 1 \N [{"file_id": "78144eec-0dde-4051-bbf6-cad3b9532dad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ded9c37c84da440cbc19a057953255ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ded9c37c84da440cbc19a057953255ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ded9c37c84da440cbc19a057953255ca.jpg", "file_size": 18728, "is_delete": false, "file_type": 1, "original_file_name": "JTSS273FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded9c37c84da440cbc19a057953255ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded9c37c84da440cbc19a057953255ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded9c37c84da440cbc19a057953255ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ded9c37c84da440cbc19a057953255ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ded9c37c84da440cbc19a057953255ca.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4W4Q3FVJG-NI7OH73qO-ZOC_Qf4=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.488922+00 2025-12-09 10:15:12.488926+00 11442 0003-A14#LWQ15 SPMX-20240815306621 \N \N \N 1 \N [{"file_id": "47136742-7d3b-4754-9e99-41f77f224950", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ce7057179c45d7b2b34abba431e549.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ce7057179c45d7b2b34abba431e549.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ce7057179c45d7b2b34abba431e549.jpg", "file_size": 11058, "is_delete": false, "file_type": 1, "original_file_name": "0003-A14#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ce7057179c45d7b2b34abba431e549.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ce7057179c45d7b2b34abba431e549.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ce7057179c45d7b2b34abba431e549.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ce7057179c45d7b2b34abba431e549.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ce7057179c45d7b2b34abba431e549.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGkogJBsD1apbfbC4rytTUDXxMA=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.490841+00 2025-12-09 10:15:12.490845+00 11443 LJ9982FW#绿S VS-D3 SPMX-20240815306622 \N \N \N 1 \N [{"file_id": "5e01de75-ccd3-4a94-8789-34c059bd9675", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41c8756aefd446efb058af54ecf86e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41c8756aefd446efb058af54ecf86e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41c8756aefd446efb058af54ecf86e21.jpg", "file_size": 14200, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#绿S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c8756aefd446efb058af54ecf86e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c8756aefd446efb058af54ecf86e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41c8756aefd446efb058af54ecf86e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41c8756aefd446efb058af54ecf86e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41c8756aefd446efb058af54ecf86e21.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIw9ZYvYssNvDNxV-4dMonPbVQ4=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.492905+00 2025-12-09 10:15:12.492909+00 11444 8135FWF#长袖上衣 SPMX-20240815306619 \N \N \N 1 \N [{"file_id": "8561710b-d489-4017-aa4f-67ec53ebe0bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25599eefc1f045b7b01960cb3de9578f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25599eefc1f045b7b01960cb3de9578f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25599eefc1f045b7b01960cb3de9578f.jpg", "file_size": 21273, "is_delete": false, "file_type": 1, "original_file_name": "8135FWF#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25599eefc1f045b7b01960cb3de9578f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25599eefc1f045b7b01960cb3de9578f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25599eefc1f045b7b01960cb3de9578f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25599eefc1f045b7b01960cb3de9578f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25599eefc1f045b7b01960cb3de9578f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IppcYfKyoUvW1rxUZpQ9sCL0vyM=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.494917+00 2025-12-09 10:15:12.494922+00 11445 1105#绿色 SPMX-20240815306627 \N \N \N 1 \N [{"file_id": "f192dc69-2575-438e-af36-cce06cf63ec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f339583e1dc743d6a183c81801a5ac08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f339583e1dc743d6a183c81801a5ac08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f339583e1dc743d6a183c81801a5ac08.jpg", "file_size": 24335, "is_delete": false, "file_type": 1, "original_file_name": "1105#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f339583e1dc743d6a183c81801a5ac08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f339583e1dc743d6a183c81801a5ac08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f339583e1dc743d6a183c81801a5ac08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f339583e1dc743d6a183c81801a5ac08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f339583e1dc743d6a183c81801a5ac08.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6lCftjgYoHdXKhND2pTOm1xr2o=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.497005+00 2025-12-09 10:15:12.497011+00 11446 HT077FW#VS-D3 SPMX-20240815306626 \N \N \N 1 \N [{"file_id": "12a7f8ee-d90f-4f48-ba22-e404d8712d8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "540da42161254cbfb6dfadbd939e5a90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "540da42161254cbfb6dfadbd939e5a90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "540da42161254cbfb6dfadbd939e5a90.jpg", "file_size": 12266, "is_delete": false, "file_type": 1, "original_file_name": "HT077FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540da42161254cbfb6dfadbd939e5a90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540da42161254cbfb6dfadbd939e5a90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540da42161254cbfb6dfadbd939e5a90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/540da42161254cbfb6dfadbd939e5a90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/540da42161254cbfb6dfadbd939e5a90.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L549r9CVjMAEPQaKAQeriyuS2QU=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.499292+00 2025-12-09 10:15:12.499297+00 11447 DL31023#改前幅水红 SPMX-20240815306625 \N \N \N 1 \N [{"file_id": "d9e37465-8c13-44c2-8744-400524dfdaea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9857ba6dbfd5445f93f75e896f9591f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9857ba6dbfd5445f93f75e896f9591f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9857ba6dbfd5445f93f75e896f9591f8.jpg", "file_size": 14438, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9857ba6dbfd5445f93f75e896f9591f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9857ba6dbfd5445f93f75e896f9591f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9857ba6dbfd5445f93f75e896f9591f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9857ba6dbfd5445f93f75e896f9591f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9857ba6dbfd5445f93f75e896f9591f8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBeWLDIBjNPL2-R_VK9VyXK4qXM=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.501378+00 2025-12-09 10:15:12.501384+00 11448 23-2118#A1-3XL领子 SPMX-20240815306628 \N \N \N 1 \N [{"file_id": "538cdbb4-45b5-4f30-8cf2-3f36f8b58632", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e5015e35e204b5c8f14c4cee76e9861.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e5015e35e204b5c8f14c4cee76e9861.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e5015e35e204b5c8f14c4cee76e9861.jpg", "file_size": 13833, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-3XL领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5015e35e204b5c8f14c4cee76e9861.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5015e35e204b5c8f14c4cee76e9861.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5015e35e204b5c8f14c4cee76e9861.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e5015e35e204b5c8f14c4cee76e9861.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e5015e35e204b5c8f14c4cee76e9861.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h1qtC2VQlpshkqlQzPBMbg9YS0U=", "createTime": "2024-08-15 14:52:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.503382+00 2025-12-09 10:15:12.503387+00 11449 LZ128FWF#2号色短袖 SPMX-20240815306630 \N \N \N 1 \N [{"file_id": "ad2a628b-e133-4d54-980a-c3e8b50c3b4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee30b069ff054bd5876bbd9fff0c7009.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee30b069ff054bd5876bbd9fff0c7009.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee30b069ff054bd5876bbd9fff0c7009.jpg", "file_size": 20211, "is_delete": false, "file_type": 1, "original_file_name": "LZ128FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee30b069ff054bd5876bbd9fff0c7009.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee30b069ff054bd5876bbd9fff0c7009.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee30b069ff054bd5876bbd9fff0c7009.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee30b069ff054bd5876bbd9fff0c7009.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee30b069ff054bd5876bbd9fff0c7009.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsS8jniWmlb3bI_h3kjwGPtyAZM=", "createTime": "2024-08-15 14:52:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.505385+00 2025-12-09 10:15:12.505389+00 11450 8135FWF#长袖匹布 SPMX-20240815306629 \N \N \N 1 \N [{"file_id": "273d4092-0152-43dc-8634-835ff8955367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "787de615a067484d8ee0b9c8cb61c5d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "787de615a067484d8ee0b9c8cb61c5d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "787de615a067484d8ee0b9c8cb61c5d7.jpg", "file_size": 14764, "is_delete": false, "file_type": 1, "original_file_name": "8135FWF#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787de615a067484d8ee0b9c8cb61c5d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787de615a067484d8ee0b9c8cb61c5d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787de615a067484d8ee0b9c8cb61c5d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/787de615a067484d8ee0b9c8cb61c5d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/787de615a067484d8ee0b9c8cb61c5d7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MmycyREXxp153gt7AVJiLgAo8yA=", "createTime": "2024-08-15 14:52:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.507357+00 2025-12-09 10:15:12.507362+00 11451 LZ128FWF#3号色短袖 SPMX-20240815306640 \N \N \N 1 \N [{"file_id": "9cd77edc-8532-4718-8310-fb24f545ec6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e184ebee67d14b3e9ee5d8b0e1895ea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e184ebee67d14b3e9ee5d8b0e1895ea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e184ebee67d14b3e9ee5d8b0e1895ea0.jpg", "file_size": 18663, "is_delete": false, "file_type": 1, "original_file_name": "LZ128FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e184ebee67d14b3e9ee5d8b0e1895ea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e184ebee67d14b3e9ee5d8b0e1895ea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e184ebee67d14b3e9ee5d8b0e1895ea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e184ebee67d14b3e9ee5d8b0e1895ea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e184ebee67d14b3e9ee5d8b0e1895ea0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIH6hCcREs2b5-tYe3b-tiRy144=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.509375+00 2025-12-09 10:15:12.50938+00 11452 LJ9982FW#绿XL VS-D3 SPMX-20240815306631 \N \N \N 1 \N [{"file_id": "168d788b-cce3-492b-b2a6-08a6a97b0cc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dec7066393b46769ad88c35c724fd7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dec7066393b46769ad88c35c724fd7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dec7066393b46769ad88c35c724fd7c.jpg", "file_size": 13872, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#绿XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dec7066393b46769ad88c35c724fd7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dec7066393b46769ad88c35c724fd7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dec7066393b46769ad88c35c724fd7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dec7066393b46769ad88c35c724fd7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dec7066393b46769ad88c35c724fd7c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmYgD_eJNBXPq3GwGgL68DAuzI8=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.513353+00 2025-12-09 10:15:12.513358+00 11454 FJ001#3XL SPMX-20240815306635 \N \N \N 1 \N [{"file_id": "99a4c7c7-4039-4001-b5c7-4bdff6886bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa1c900f0bc34301bb416bf30570b006.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa1c900f0bc34301bb416bf30570b006.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa1c900f0bc34301bb416bf30570b006.jpg", "file_size": 19273, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa1c900f0bc34301bb416bf30570b006.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa1c900f0bc34301bb416bf30570b006.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa1c900f0bc34301bb416bf30570b006.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa1c900f0bc34301bb416bf30570b006.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa1c900f0bc34301bb416bf30570b006.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3HiqEw7WGXYYP91N1NFConXGFHY=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.517323+00 2025-12-09 10:15:12.517328+00 11456 8135FWF#长袖裤子 SPMX-20240815306634 \N \N \N 1 \N [{"file_id": "4ad3ca11-8c87-4d95-a00c-8739a96935b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dc45d097eda4753876d43685ddc3c27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dc45d097eda4753876d43685ddc3c27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dc45d097eda4753876d43685ddc3c27.jpg", "file_size": 16150, "is_delete": false, "file_type": 1, "original_file_name": "8135FWF#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc45d097eda4753876d43685ddc3c27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc45d097eda4753876d43685ddc3c27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc45d097eda4753876d43685ddc3c27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dc45d097eda4753876d43685ddc3c27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dc45d097eda4753876d43685ddc3c27.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSOhGiKlQsWOrOzNLQZq0Drtm8o=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.511363+00 2025-12-09 10:15:12.511368+00 11453 23-2118#A1-4XL SPMX-20240815306638 \N \N \N 1 \N [{"file_id": "a461173d-bb66-49b0-838e-e0bdd43dd0b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c606ab8c58c3492e84d3fc215d8a4d5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c606ab8c58c3492e84d3fc215d8a4d5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c606ab8c58c3492e84d3fc215d8a4d5e.jpg", "file_size": 19621, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c606ab8c58c3492e84d3fc215d8a4d5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c606ab8c58c3492e84d3fc215d8a4d5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c606ab8c58c3492e84d3fc215d8a4d5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c606ab8c58c3492e84d3fc215d8a4d5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c606ab8c58c3492e84d3fc215d8a4d5e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRHfO0pMBx4dLX0osLcNzByGHCc=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.521541+00 2025-12-09 10:15:12.521546+00 11457 HT078FW#VS-D3 SPMX-20240815306641 \N \N \N 1 \N [{"file_id": "44d08478-20ff-4370-87ea-dbd836a94ca2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd6d8da1cc09437a9438df7b7c9e4a14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd6d8da1cc09437a9438df7b7c9e4a14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd6d8da1cc09437a9438df7b7c9e4a14.jpg", "file_size": 12226, "is_delete": false, "file_type": 1, "original_file_name": "HT078FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd6d8da1cc09437a9438df7b7c9e4a14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd6d8da1cc09437a9438df7b7c9e4a14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd6d8da1cc09437a9438df7b7c9e4a14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd6d8da1cc09437a9438df7b7c9e4a14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd6d8da1cc09437a9438df7b7c9e4a14.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYeobzKBeUg5jwgrZF6YCtMDqcM=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.523595+00 2025-12-09 10:15:12.523601+00 11458 JTSS274FW#VS-D3 SPMX-20240815306632 \N \N \N 1 \N [{"file_id": "454186c0-f650-4b72-9d82-e0f1cf807898", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74e69c53d47e4ab387c05a4bff6afec3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74e69c53d47e4ab387c05a4bff6afec3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74e69c53d47e4ab387c05a4bff6afec3.jpg", "file_size": 10953, "is_delete": false, "file_type": 1, "original_file_name": "JTSS274FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e69c53d47e4ab387c05a4bff6afec3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e69c53d47e4ab387c05a4bff6afec3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74e69c53d47e4ab387c05a4bff6afec3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74e69c53d47e4ab387c05a4bff6afec3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74e69c53d47e4ab387c05a4bff6afec3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWRPnFmPo70cQhL8HoKNEtYrBRI=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.525731+00 2025-12-09 10:15:12.525736+00 11459 DL31023#改前幅浅粉 SPMX-20240815306636 \N \N \N 1 \N [{"file_id": "ee9a084c-35a7-440b-ad10-67d7bee89b15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87586c3045784e33bbc72632aac45b95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87586c3045784e33bbc72632aac45b95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87586c3045784e33bbc72632aac45b95.jpg", "file_size": 14900, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87586c3045784e33bbc72632aac45b95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87586c3045784e33bbc72632aac45b95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87586c3045784e33bbc72632aac45b95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87586c3045784e33bbc72632aac45b95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87586c3045784e33bbc72632aac45b95.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRT8c9qDy5Xvn_ItwXK5f6Rccls=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.528209+00 2025-12-09 10:15:12.528215+00 11460 HT080FW#vs-d3 SPMX-20240815306651 \N \N \N 1 \N [{"file_id": "19da5dc0-700e-41fd-87eb-e5cc25d7d994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4374ba758434aa1abcec7b54b7c001d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4374ba758434aa1abcec7b54b7c001d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4374ba758434aa1abcec7b54b7c001d.jpg", "file_size": 20633, "is_delete": false, "file_type": 1, "original_file_name": "HT080FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4374ba758434aa1abcec7b54b7c001d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4374ba758434aa1abcec7b54b7c001d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4374ba758434aa1abcec7b54b7c001d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4374ba758434aa1abcec7b54b7c001d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4374ba758434aa1abcec7b54b7c001d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnNToTi65EQ87e7aSllPCCLhSpQ=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.530408+00 2025-12-09 10:15:12.530414+00 11461 JTSS275FW#VS-D3 SPMX-20240815306644 \N \N \N 1 \N [{"file_id": "4b719184-0048-47bd-a510-68f0f2ea459c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d316cdafddd446695870c323c8a5b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d316cdafddd446695870c323c8a5b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d316cdafddd446695870c323c8a5b5b.jpg", "file_size": 8426, "is_delete": false, "file_type": 1, "original_file_name": "JTSS275FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d316cdafddd446695870c323c8a5b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d316cdafddd446695870c323c8a5b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d316cdafddd446695870c323c8a5b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d316cdafddd446695870c323c8a5b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d316cdafddd446695870c323c8a5b5b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zszujuVSMq_mtJ7CutJfl3gVCBA=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.532315+00 2025-12-09 10:15:12.53232+00 11462 C430#-玫红#LWQ15 SPMX-20240815306650 \N \N \N 1 \N [{"file_id": "66debb7e-eb41-423a-af6f-b2b5bdcee5bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf74c52d6544af78c0c152efbd27aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf74c52d6544af78c0c152efbd27aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf74c52d6544af78c0c152efbd27aaa.jpg", "file_size": 57836, "is_delete": false, "file_type": 1, "original_file_name": "C430#-玫红#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf74c52d6544af78c0c152efbd27aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf74c52d6544af78c0c152efbd27aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf74c52d6544af78c0c152efbd27aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf74c52d6544af78c0c152efbd27aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf74c52d6544af78c0c152efbd27aaa.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uPumzQrcvMYHKb_T-QMNpHTTInI=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.534414+00 2025-12-09 10:15:12.534418+00 11463 LJ9982FW#蓝2XL VS-D3 SPMX-20240815306643 \N \N \N 1 \N [{"file_id": "300fe586-b21d-4b74-b779-5339dea6cc63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fa5959c85434898bc9c881ae5852125.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fa5959c85434898bc9c881ae5852125.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fa5959c85434898bc9c881ae5852125.jpg", "file_size": 13178, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#蓝2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa5959c85434898bc9c881ae5852125.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa5959c85434898bc9c881ae5852125.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa5959c85434898bc9c881ae5852125.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fa5959c85434898bc9c881ae5852125.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fa5959c85434898bc9c881ae5852125.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdDi1PVH0jjOm-MsY0kTs3NczrI=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.536317+00 2025-12-09 10:15:12.536322+00 11464 8136FWF#袖子+裤子 SPMX-20240815306645 \N \N \N 1 \N [{"file_id": "0f3c7319-fcfa-49c2-ad22-43a5f4d93169", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25250bfc22234d8b85a9262d7139769c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25250bfc22234d8b85a9262d7139769c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25250bfc22234d8b85a9262d7139769c.jpg", "file_size": 26968, "is_delete": false, "file_type": 1, "original_file_name": "8136FWF#袖子+裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25250bfc22234d8b85a9262d7139769c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25250bfc22234d8b85a9262d7139769c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25250bfc22234d8b85a9262d7139769c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25250bfc22234d8b85a9262d7139769c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25250bfc22234d8b85a9262d7139769c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcOFhvAD69Lp8RiioEOMLmyFHAg=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.539084+00 2025-12-09 10:15:12.539089+00 11465 LJ9982FW#蓝L VS-D3 SPMX-20240815306652 \N \N \N 1 \N [{"file_id": "8a3db762-0185-4308-8637-764d687e08ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a780f9f9e3b54274b31ba6eba3977568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a780f9f9e3b54274b31ba6eba3977568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a780f9f9e3b54274b31ba6eba3977568.jpg", "file_size": 14415, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#蓝L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a780f9f9e3b54274b31ba6eba3977568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a780f9f9e3b54274b31ba6eba3977568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a780f9f9e3b54274b31ba6eba3977568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a780f9f9e3b54274b31ba6eba3977568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a780f9f9e3b54274b31ba6eba3977568.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:allHHbGzWtljS-qS5RLFpFRmnxA=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.541179+00 2025-12-09 10:15:12.541184+00 11466 FJ001#L SPMX-20240815306647 \N \N \N 1 \N [{"file_id": "ea9446ac-b3dd-4266-af7d-56e9f1b6cc71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f7864568294490b9b62111bb73c0ad0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f7864568294490b9b62111bb73c0ad0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f7864568294490b9b62111bb73c0ad0.jpg", "file_size": 21696, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f7864568294490b9b62111bb73c0ad0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f7864568294490b9b62111bb73c0ad0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f7864568294490b9b62111bb73c0ad0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f7864568294490b9b62111bb73c0ad0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f7864568294490b9b62111bb73c0ad0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJr7_-f-ZQ5bcN8EdaoCzkLgXpo=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.543193+00 2025-12-09 10:15:12.543198+00 11467 1105#黑色 SPMX-20240815306642 \N \N \N 1 \N [{"file_id": "18f30234-d5df-4eb8-ad2f-27bdbc3448b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea1890716c6489bb13dfbaa5f1d3958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea1890716c6489bb13dfbaa5f1d3958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea1890716c6489bb13dfbaa5f1d3958.jpg", "file_size": 49024, "is_delete": false, "file_type": 1, "original_file_name": "1105#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1890716c6489bb13dfbaa5f1d3958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1890716c6489bb13dfbaa5f1d3958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1890716c6489bb13dfbaa5f1d3958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea1890716c6489bb13dfbaa5f1d3958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea1890716c6489bb13dfbaa5f1d3958.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Mdfh3h_VsQQEYEjhW2ccCWVtII=", "createTime": "2024-08-15 14:52:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.545329+00 2025-12-09 10:15:12.545334+00 11468 0003-A16#A1 SPMX-20240815306646 \N \N \N 1 \N [{"file_id": "fb6a56a5-8189-4dde-9793-6934e01ada71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e548c0cc40814fbe97c2d706188ad02f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e548c0cc40814fbe97c2d706188ad02f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e548c0cc40814fbe97c2d706188ad02f.jpg", "file_size": 16829, "is_delete": false, "file_type": 1, "original_file_name": "0003-A16#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e548c0cc40814fbe97c2d706188ad02f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e548c0cc40814fbe97c2d706188ad02f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e548c0cc40814fbe97c2d706188ad02f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e548c0cc40814fbe97c2d706188ad02f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e548c0cc40814fbe97c2d706188ad02f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RIUOxKT7zQuKg1lbqGonjEzCWg=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.547408+00 2025-12-09 10:15:12.547413+00 11469 LZ128FWF#4号色短袖 SPMX-20240815306648 \N \N \N 1 \N [{"file_id": "94e7698d-13b9-48a9-84ca-c73358ad7345", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "903fd78bc00447d58dfe7ab39f5458f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "903fd78bc00447d58dfe7ab39f5458f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "903fd78bc00447d58dfe7ab39f5458f7.jpg", "file_size": 19193, "is_delete": false, "file_type": 1, "original_file_name": "LZ128FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903fd78bc00447d58dfe7ab39f5458f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903fd78bc00447d58dfe7ab39f5458f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903fd78bc00447d58dfe7ab39f5458f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/903fd78bc00447d58dfe7ab39f5458f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/903fd78bc00447d58dfe7ab39f5458f7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23Ab8Aj73bfh2vWjJQBC-o_9eu8=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.549487+00 2025-12-09 10:15:12.549492+00 11470 23-2118#A1-4XL领子 SPMX-20240815306649 \N \N \N 1 \N [{"file_id": "87425be0-0810-421a-b8a6-2e74e46e1ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddc98b19bc804cbdbe7580df71fa7e48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddc98b19bc804cbdbe7580df71fa7e48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddc98b19bc804cbdbe7580df71fa7e48.jpg", "file_size": 13849, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-4XL领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc98b19bc804cbdbe7580df71fa7e48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc98b19bc804cbdbe7580df71fa7e48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc98b19bc804cbdbe7580df71fa7e48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddc98b19bc804cbdbe7580df71fa7e48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddc98b19bc804cbdbe7580df71fa7e48.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PmqIukCIKbB8Waasngwtax59NA=", "createTime": "2024-08-15 14:52:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.551349+00 2025-12-09 10:15:12.551353+00 11471 23-2118#A1-领子-3XL SPMX-20240815306658 \N \N \N 1 \N [{"file_id": "321bce4b-7a7d-4d35-9961-9837bf4645fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814955bfb9f94494ac4db1dd23d76e82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814955bfb9f94494ac4db1dd23d76e82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814955bfb9f94494ac4db1dd23d76e82.jpg", "file_size": 13847, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-领子-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814955bfb9f94494ac4db1dd23d76e82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814955bfb9f94494ac4db1dd23d76e82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814955bfb9f94494ac4db1dd23d76e82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814955bfb9f94494ac4db1dd23d76e82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814955bfb9f94494ac4db1dd23d76e82.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wdIpIgiTfz6GPzbT9Q5tzZn6fow=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.553465+00 2025-12-09 10:15:12.55347+00 11472 C430#-黑色#LWQ15 SPMX-20240815306660 \N \N \N 1 \N [{"file_id": "9e5c1cce-d57b-45a1-9865-791d0185ea3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg", "file_size": 57715, "is_delete": false, "file_type": 1, "original_file_name": "C430#-黑色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d7d84bce42d4fd3a2cfa1f75fda3f07.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Te4b1zx0G3DMJS66uIfrOvjLxo=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.555537+00 2025-12-09 10:15:12.555541+00 11473 0003-A16#A2 SPMX-20240815306655 \N \N \N 1 \N [{"file_id": "17b71ccd-a331-4b1c-845b-6e89b414191c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bce20e829a94f52ab300e46a15af6e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bce20e829a94f52ab300e46a15af6e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bce20e829a94f52ab300e46a15af6e0.jpg", "file_size": 16748, "is_delete": false, "file_type": 1, "original_file_name": "0003-A16#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bce20e829a94f52ab300e46a15af6e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bce20e829a94f52ab300e46a15af6e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bce20e829a94f52ab300e46a15af6e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bce20e829a94f52ab300e46a15af6e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bce20e829a94f52ab300e46a15af6e0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hg4qtf5JACwgR3qpdG3rpxyX9w0=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.557635+00 2025-12-09 10:15:12.55764+00 11474 JTSS275FW SPMX-20240815306661 \N \N \N 1 \N [{"file_id": "235a97b9-1950-49d1-8e88-26916da46bb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6323fba36a3451587415be800285c1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6323fba36a3451587415be800285c1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6323fba36a3451587415be800285c1d.jpg", "file_size": 8426, "is_delete": false, "file_type": 1, "original_file_name": "JTSS275FW.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6323fba36a3451587415be800285c1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6323fba36a3451587415be800285c1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6323fba36a3451587415be800285c1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6323fba36a3451587415be800285c1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6323fba36a3451587415be800285c1d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n74omcPphLXqlV6pD_TScIafDW0=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.577587+00 2025-12-09 10:15:12.577592+00 11484 JTSS276FW#VS-D3 SPMX-20240815306672 \N \N \N 1 \N [{"file_id": "971f0854-a3bb-403d-9a42-e46c831b1be8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddcf3423ec554439a6d8e42147b492aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddcf3423ec554439a6d8e42147b492aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddcf3423ec554439a6d8e42147b492aa.jpg", "file_size": 11530, "is_delete": false, "file_type": 1, "original_file_name": "JTSS276FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf3423ec554439a6d8e42147b492aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf3423ec554439a6d8e42147b492aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcf3423ec554439a6d8e42147b492aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddcf3423ec554439a6d8e42147b492aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddcf3423ec554439a6d8e42147b492aa.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teoay4K-1oxckevX6h9HIM3TSDQ=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.559512+00 2025-12-09 10:15:12.559517+00 11475 LZ128FWF#5号色短袖 SPMX-20240815306657 \N \N \N 1 \N [{"file_id": "79d32998-2075-4eed-84d2-97f61c8d3fe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9bf02ad88c84b648aa3ffe7b0bcc181.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9bf02ad88c84b648aa3ffe7b0bcc181.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9bf02ad88c84b648aa3ffe7b0bcc181.jpg", "file_size": 17890, "is_delete": false, "file_type": 1, "original_file_name": "LZ128FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bf02ad88c84b648aa3ffe7b0bcc181.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bf02ad88c84b648aa3ffe7b0bcc181.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bf02ad88c84b648aa3ffe7b0bcc181.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9bf02ad88c84b648aa3ffe7b0bcc181.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9bf02ad88c84b648aa3ffe7b0bcc181.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXt5AjcXrWNohP6O684KgR-VjoI=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.561715+00 2025-12-09 10:15:12.56172+00 11476 FJ001#M SPMX-20240815306659 \N \N \N 1 \N [{"file_id": "17f9473e-0bda-46e0-b4c2-517b23900dcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1bb1d6f574f40c2b66b82766a0d33e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1bb1d6f574f40c2b66b82766a0d33e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1bb1d6f574f40c2b66b82766a0d33e6.jpg", "file_size": 21671, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1bb1d6f574f40c2b66b82766a0d33e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1bb1d6f574f40c2b66b82766a0d33e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1bb1d6f574f40c2b66b82766a0d33e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1bb1d6f574f40c2b66b82766a0d33e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1bb1d6f574f40c2b66b82766a0d33e6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ViSdQRUKG4qZkj9dtvfgSsXFHOc=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.563591+00 2025-12-09 10:15:12.563596+00 11477 DL31023#改前幅深水红 SPMX-20240815306653 \N \N \N 1 \N [{"file_id": "1c5ad97f-6de4-4be4-9126-7b7df5f93bce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6e599c219464aeda130471d5a2e2e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6e599c219464aeda130471d5a2e2e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6e599c219464aeda130471d5a2e2e7a.jpg", "file_size": 43291, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e599c219464aeda130471d5a2e2e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e599c219464aeda130471d5a2e2e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6e599c219464aeda130471d5a2e2e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6e599c219464aeda130471d5a2e2e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6e599c219464aeda130471d5a2e2e7a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6fgGENS76QAZRLffh2rCn5gpWvs=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.565658+00 2025-12-09 10:15:12.565663+00 11478 1106#灰色 SPMX-20240815306656 \N \N \N 1 \N [{"file_id": "3e022063-e3eb-45d0-b00d-df1f00a6d1c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1312fa66e46480e93a3fa8a7336ad08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1312fa66e46480e93a3fa8a7336ad08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1312fa66e46480e93a3fa8a7336ad08.jpg", "file_size": 18429, "is_delete": false, "file_type": 1, "original_file_name": "1106#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1312fa66e46480e93a3fa8a7336ad08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1312fa66e46480e93a3fa8a7336ad08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1312fa66e46480e93a3fa8a7336ad08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1312fa66e46480e93a3fa8a7336ad08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1312fa66e46480e93a3fa8a7336ad08.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PUKLwRUs0VKrYEeb9ua37bb_bQI=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.567521+00 2025-12-09 10:15:12.567527+00 11479 8136FWF#长袖上衣 SPMX-20240815306654 \N \N \N 1 \N [{"file_id": "7f6d013c-ec91-4309-a9df-555183780840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "648958f7913e45d8a6928036fed96d9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "648958f7913e45d8a6928036fed96d9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "648958f7913e45d8a6928036fed96d9c.jpg", "file_size": 25168, "is_delete": false, "file_type": 1, "original_file_name": "8136FWF#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648958f7913e45d8a6928036fed96d9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648958f7913e45d8a6928036fed96d9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648958f7913e45d8a6928036fed96d9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/648958f7913e45d8a6928036fed96d9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/648958f7913e45d8a6928036fed96d9c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZvnIOA2D8YjganzqrugwSkQF1A=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.569595+00 2025-12-09 10:15:12.5696+00 11480 LJ9982FW#蓝M VS-D3 SPMX-20240815306662 \N \N \N 1 \N [{"file_id": "9bc17ea5-6862-454a-9bbf-bcfe5ab44793", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06ef9567151340d682ddccdf0583d8cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06ef9567151340d682ddccdf0583d8cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06ef9567151340d682ddccdf0583d8cd.jpg", "file_size": 14222, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#蓝M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ef9567151340d682ddccdf0583d8cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ef9567151340d682ddccdf0583d8cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06ef9567151340d682ddccdf0583d8cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06ef9567151340d682ddccdf0583d8cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06ef9567151340d682ddccdf0583d8cd.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfbNbUelu5Mn56S6egPMeDLOnuA=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.57165+00 2025-12-09 10:15:12.571655+00 11481 HT081FW#VS-D3 SPMX-20240815306664 \N \N \N 1 \N [{"file_id": "04def416-5cd2-4a43-bd26-5cb2c64fcee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1307efbba4384a5298139201ac090142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1307efbba4384a5298139201ac090142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1307efbba4384a5298139201ac090142.jpg", "file_size": 8824, "is_delete": false, "file_type": 1, "original_file_name": "HT081FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1307efbba4384a5298139201ac090142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1307efbba4384a5298139201ac090142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1307efbba4384a5298139201ac090142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1307efbba4384a5298139201ac090142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1307efbba4384a5298139201ac090142.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-gZgoLIPgvrQJMNag2g5ZhZyqE=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.573481+00 2025-12-09 10:15:12.573486+00 11482 0003-A16#A3 SPMX-20240815306666 \N \N \N 1 \N [{"file_id": "f4817934-966b-480d-afa5-f52ecbf7a30f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fbb4dfb0e8f48dd9787380685e47ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fbb4dfb0e8f48dd9787380685e47ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fbb4dfb0e8f48dd9787380685e47ffb.jpg", "file_size": 17519, "is_delete": false, "file_type": 1, "original_file_name": "0003-A16#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fbb4dfb0e8f48dd9787380685e47ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fbb4dfb0e8f48dd9787380685e47ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fbb4dfb0e8f48dd9787380685e47ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fbb4dfb0e8f48dd9787380685e47ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fbb4dfb0e8f48dd9787380685e47ffb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFq9LTF3W29qqcDW9FDXsxTPAvo=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.575532+00 2025-12-09 10:15:12.575537+00 11483 FJ001#S SPMX-20240815306669 \N \N \N 1 \N [{"file_id": "1ec13802-921c-41c2-a67c-9a74fe59593f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "268e39959c474ca0ae0cb8ed7ff1483f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "268e39959c474ca0ae0cb8ed7ff1483f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "268e39959c474ca0ae0cb8ed7ff1483f.jpg", "file_size": 20785, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268e39959c474ca0ae0cb8ed7ff1483f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268e39959c474ca0ae0cb8ed7ff1483f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/268e39959c474ca0ae0cb8ed7ff1483f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/268e39959c474ca0ae0cb8ed7ff1483f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/268e39959c474ca0ae0cb8ed7ff1483f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNag-S9SiJgmZLW9fvJs2HbhFSw=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.579653+00 2025-12-09 10:15:12.579658+00 11485 DL31023#改前幅玫红 SPMX-20240815306663 \N \N \N 1 \N [{"file_id": "7b98fd23-3483-41b9-b785-03043beaa769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e203c759c91494693762e965eb9d511.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e203c759c91494693762e965eb9d511.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e203c759c91494693762e965eb9d511.jpg", "file_size": 14717, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e203c759c91494693762e965eb9d511.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e203c759c91494693762e965eb9d511.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e203c759c91494693762e965eb9d511.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e203c759c91494693762e965eb9d511.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e203c759c91494693762e965eb9d511.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Avlo-tkEkVE1ZTogAk_zhFuUQq8=", "createTime": "2024-08-15 14:52:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.581712+00 2025-12-09 10:15:12.581717+00 11486 1106#白色 SPMX-20240815306667 \N \N \N 1 \N [{"file_id": "b0f05120-dd6c-43f8-af90-4f70e66cd9df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d66a5d896fde4f6fa9a2c82e5c38fe36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d66a5d896fde4f6fa9a2c82e5c38fe36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d66a5d896fde4f6fa9a2c82e5c38fe36.jpg", "file_size": 20228, "is_delete": false, "file_type": 1, "original_file_name": "1106#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66a5d896fde4f6fa9a2c82e5c38fe36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66a5d896fde4f6fa9a2c82e5c38fe36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66a5d896fde4f6fa9a2c82e5c38fe36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d66a5d896fde4f6fa9a2c82e5c38fe36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d66a5d896fde4f6fa9a2c82e5c38fe36.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgTUj9aF5CWDSO6HuJeduM5zErY=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.583759+00 2025-12-09 10:15:12.583763+00 11487 LZ1290#背心款1号色 SPMX-20240815306668 \N \N \N 1 \N [{"file_id": "411c4746-2add-4bb4-ac15-fdf92d063a07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8508a7d755e41e59885ebf9d53b5231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8508a7d755e41e59885ebf9d53b5231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8508a7d755e41e59885ebf9d53b5231.jpg", "file_size": 20352, "is_delete": false, "file_type": 1, "original_file_name": "LZ1290#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8508a7d755e41e59885ebf9d53b5231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8508a7d755e41e59885ebf9d53b5231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8508a7d755e41e59885ebf9d53b5231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8508a7d755e41e59885ebf9d53b5231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8508a7d755e41e59885ebf9d53b5231.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FC5iaqfa3FP-haCJ11jH2EQ6was=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.585603+00 2025-12-09 10:15:12.585608+00 11488 23-2118#A1-领子-4XL SPMX-20240815306670 \N \N \N 1 \N [{"file_id": "2a329515-a434-4e56-8eb2-05fad5a8c337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70c6b4008adc4536982a10f36eaa6ac4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70c6b4008adc4536982a10f36eaa6ac4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70c6b4008adc4536982a10f36eaa6ac4.jpg", "file_size": 13531, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-领子-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70c6b4008adc4536982a10f36eaa6ac4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70c6b4008adc4536982a10f36eaa6ac4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70c6b4008adc4536982a10f36eaa6ac4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70c6b4008adc4536982a10f36eaa6ac4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70c6b4008adc4536982a10f36eaa6ac4.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71A-aKb62zKtMhHYIU1eWrZPrxw=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.587688+00 2025-12-09 10:15:12.587693+00 11489 C431#-原版色#LWQ15 SPMX-20240815306671 \N \N \N 1 \N [{"file_id": "7d71680c-5b82-4e67-a918-29accb0dad1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40b5b0402a444c658f03386e5e2143b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40b5b0402a444c658f03386e5e2143b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40b5b0402a444c658f03386e5e2143b9.jpg", "file_size": 62029, "is_delete": false, "file_type": 1, "original_file_name": "C431#-原版色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b5b0402a444c658f03386e5e2143b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b5b0402a444c658f03386e5e2143b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b5b0402a444c658f03386e5e2143b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40b5b0402a444c658f03386e5e2143b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40b5b0402a444c658f03386e5e2143b9.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUQDrFKtKvsD1cdghHyyfHjGH6k=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.590093+00 2025-12-09 10:15:12.590097+00 11490 8137#LWQ15 SPMX-20240815306665 \N \N \N 1 \N [{"file_id": "cdf9c32c-062e-4189-9d11-a30f7d18bbd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d75ce35403314267978498bef1039b0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d75ce35403314267978498bef1039b0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d75ce35403314267978498bef1039b0f.jpg", "file_size": 22829, "is_delete": false, "file_type": 1, "original_file_name": "8137#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d75ce35403314267978498bef1039b0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d75ce35403314267978498bef1039b0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d75ce35403314267978498bef1039b0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d75ce35403314267978498bef1039b0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d75ce35403314267978498bef1039b0f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zyg-r5K59dk1aQfD2fiDxTz5UJA=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.592198+00 2025-12-09 10:15:12.592202+00 11491 FJ001#VS-D3 SPMX-20240815306680 \N \N \N 1 \N [{"file_id": "5cc83d86-e9a7-45d1-ab70-fcc0fc6ae822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb7ef43375fc45d7af85d81e84b33f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb7ef43375fc45d7af85d81e84b33f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb7ef43375fc45d7af85d81e84b33f89.jpg", "file_size": 10368, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7ef43375fc45d7af85d81e84b33f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7ef43375fc45d7af85d81e84b33f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7ef43375fc45d7af85d81e84b33f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb7ef43375fc45d7af85d81e84b33f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb7ef43375fc45d7af85d81e84b33f89.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aUwteZsXkFFkQ-GPjuxARzJ96sc=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.594302+00 2025-12-09 10:15:12.594307+00 11492 0003-A16#A4 SPMX-20240815306677 \N \N \N 1 \N [{"file_id": "73c5e5e0-2bc4-47ed-ae5e-ca05e479b366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b2529a1dd543629018f4914dfd2ca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b2529a1dd543629018f4914dfd2ca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b2529a1dd543629018f4914dfd2ca3.jpg", "file_size": 16109, "is_delete": false, "file_type": 1, "original_file_name": "0003-A16#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2529a1dd543629018f4914dfd2ca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2529a1dd543629018f4914dfd2ca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2529a1dd543629018f4914dfd2ca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b2529a1dd543629018f4914dfd2ca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b2529a1dd543629018f4914dfd2ca3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64v_YQ1pDjUMnSldczUoIeCrmSM=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.596416+00 2025-12-09 10:15:12.596421+00 11493 1106#粉色 SPMX-20240815306678 \N \N \N 1 \N [{"file_id": "6320d224-cb3e-4523-b6c9-7d67032c3dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811ccb4309ed48d7957342046cd37c45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811ccb4309ed48d7957342046cd37c45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811ccb4309ed48d7957342046cd37c45.jpg", "file_size": 19146, "is_delete": false, "file_type": 1, "original_file_name": "1106#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811ccb4309ed48d7957342046cd37c45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811ccb4309ed48d7957342046cd37c45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811ccb4309ed48d7957342046cd37c45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811ccb4309ed48d7957342046cd37c45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811ccb4309ed48d7957342046cd37c45.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NPlZB0-bF58-xLYBCQi-vp0X2MA=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.598807+00 2025-12-09 10:15:12.598812+00 11494 LZ1290#背心款2号色 SPMX-20240815306679 \N \N \N 1 \N [{"file_id": "96660365-73b7-4a13-9672-6ece8931f1e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "780b17c0914c4edabe6a624171fefe63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "780b17c0914c4edabe6a624171fefe63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "780b17c0914c4edabe6a624171fefe63.jpg", "file_size": 20358, "is_delete": false, "file_type": 1, "original_file_name": "LZ1290#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/780b17c0914c4edabe6a624171fefe63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/780b17c0914c4edabe6a624171fefe63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/780b17c0914c4edabe6a624171fefe63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/780b17c0914c4edabe6a624171fefe63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/780b17c0914c4edabe6a624171fefe63.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:296d2I15d3GI4mwBrQi3KJBo2LI=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.601072+00 2025-12-09 10:15:12.601076+00 11495 DL31023#改前幅蓝绿 SPMX-20240815306674 \N \N \N 1 \N [{"file_id": "4b475c92-48fd-4614-9fbc-f649aa3b226d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce19b8aa1832434db18a972042e4bfd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce19b8aa1832434db18a972042e4bfd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce19b8aa1832434db18a972042e4bfd6.jpg", "file_size": 14854, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce19b8aa1832434db18a972042e4bfd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce19b8aa1832434db18a972042e4bfd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce19b8aa1832434db18a972042e4bfd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce19b8aa1832434db18a972042e4bfd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce19b8aa1832434db18a972042e4bfd6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TbJz5LAMjdRCVhiLUGMJRLB4q0A=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.603193+00 2025-12-09 10:15:12.603198+00 11496 8137FWF#长袖 SPMX-20240815306675 \N \N \N 1 \N [{"file_id": "cbafa52c-12b0-4ad2-954c-6c3a9ed50f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e309b021c8f4327a36f14c74c9c4ea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e309b021c8f4327a36f14c74c9c4ea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e309b021c8f4327a36f14c74c9c4ea0.jpg", "file_size": 31801, "is_delete": false, "file_type": 1, "original_file_name": "8137FWF#长袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e309b021c8f4327a36f14c74c9c4ea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e309b021c8f4327a36f14c74c9c4ea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e309b021c8f4327a36f14c74c9c4ea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e309b021c8f4327a36f14c74c9c4ea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e309b021c8f4327a36f14c74c9c4ea0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJCmegAn_aKplZJjiuxms4-IIto=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.60531+00 2025-12-09 10:15:12.605315+00 11497 HT082FW#VS-D3 SPMX-20240815306676 \N \N \N 1 \N [{"file_id": "247cbd36-e266-44ba-a6aa-020212e87283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bc81cbcc15c4d68b3eade12d89d79ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bc81cbcc15c4d68b3eade12d89d79ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bc81cbcc15c4d68b3eade12d89d79ab.jpg", "file_size": 15097, "is_delete": false, "file_type": 1, "original_file_name": "HT082FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc81cbcc15c4d68b3eade12d89d79ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc81cbcc15c4d68b3eade12d89d79ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc81cbcc15c4d68b3eade12d89d79ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bc81cbcc15c4d68b3eade12d89d79ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bc81cbcc15c4d68b3eade12d89d79ab.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtP1eqGHWxsTjvAcTzfT5t3fZ7U=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.607141+00 2025-12-09 10:15:12.607146+00 11498 LJ9982FW#蓝S VS-D3 SPMX-20240815306673 \N \N \N 1 \N [{"file_id": "7af55237-b57c-4bf8-afca-3b07eb1ff849", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c009142ff024465b7bf1fbef68faa6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c009142ff024465b7bf1fbef68faa6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c009142ff024465b7bf1fbef68faa6d.jpg", "file_size": 14125, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#蓝S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c009142ff024465b7bf1fbef68faa6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c009142ff024465b7bf1fbef68faa6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c009142ff024465b7bf1fbef68faa6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c009142ff024465b7bf1fbef68faa6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c009142ff024465b7bf1fbef68faa6d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ly8aEzUzHgclQ52ZONmeuRyWGyE=", "createTime": "2024-08-15 14:52:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.608991+00 2025-12-09 10:15:12.608995+00 11499 DL31023#改前幅黄色 SPMX-20240815306685 \N \N \N 1 \N [{"file_id": "bf75a095-dd5f-45c0-8c38-7cf9a8f70072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ab94f66836b4890ae19f16b312ecd64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ab94f66836b4890ae19f16b312ecd64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ab94f66836b4890ae19f16b312ecd64.jpg", "file_size": 14538, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab94f66836b4890ae19f16b312ecd64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab94f66836b4890ae19f16b312ecd64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab94f66836b4890ae19f16b312ecd64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ab94f66836b4890ae19f16b312ecd64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ab94f66836b4890ae19f16b312ecd64.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJDU2xpho8Hqlayyo3RB3G_oAkc=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.610848+00 2025-12-09 10:15:12.610853+00 11500 C431#-墨绿#LWQ15 SPMX-20240815306683 \N \N \N 1 \N [{"file_id": "7089ea8d-7981-4732-8061-1f9adc639a1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd398e0cc13c443b84893972a60c07dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd398e0cc13c443b84893972a60c07dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd398e0cc13c443b84893972a60c07dc.jpg", "file_size": 58013, "is_delete": false, "file_type": 1, "original_file_name": "C431#-墨绿#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd398e0cc13c443b84893972a60c07dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd398e0cc13c443b84893972a60c07dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd398e0cc13c443b84893972a60c07dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd398e0cc13c443b84893972a60c07dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd398e0cc13c443b84893972a60c07dc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4rSUOKcKKd9FbqGtsKfjoJPp_k=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.612913+00 2025-12-09 10:15:12.612917+00 11501 23-2118#A1-领子 SPMX-20240815306682 \N \N \N 1 \N [{"file_id": "e5e6727a-5158-4c85-a809-ae7f58115ee5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cba0a0c4326142bcb90cb440cef283a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cba0a0c4326142bcb90cb440cef283a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cba0a0c4326142bcb90cb440cef283a7.jpg", "file_size": 13350, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0a0c4326142bcb90cb440cef283a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0a0c4326142bcb90cb440cef283a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0a0c4326142bcb90cb440cef283a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cba0a0c4326142bcb90cb440cef283a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cba0a0c4326142bcb90cb440cef283a7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_TuU5dl_-9OAjwrLjLfZ7_myv64=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.614946+00 2025-12-09 10:15:12.614951+00 11502 JTSS277FW#VS-D3 SPMX-20240815306681 \N \N \N 1 \N [{"file_id": "b4878189-13dc-4a36-8370-da0053c96fe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9563b7ae17e04d25a666015573394034.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9563b7ae17e04d25a666015573394034.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9563b7ae17e04d25a666015573394034.jpg", "file_size": 22750, "is_delete": false, "file_type": 1, "original_file_name": "JTSS277FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9563b7ae17e04d25a666015573394034.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9563b7ae17e04d25a666015573394034.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9563b7ae17e04d25a666015573394034.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9563b7ae17e04d25a666015573394034.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9563b7ae17e04d25a666015573394034.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQN1AYK4p8rYBRKZZnpZbH545pY=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.617056+00 2025-12-09 10:15:12.617061+00 11503 8137FWF#长袖上衣 SPMX-20240815306686 \N \N \N 1 \N [{"file_id": "b7c8cfbb-8f5d-4417-94fc-def0d1ec0344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "497d1918db3742e889c2d3d75e6b540f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "497d1918db3742e889c2d3d75e6b540f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "497d1918db3742e889c2d3d75e6b540f.jpg", "file_size": 23167, "is_delete": false, "file_type": 1, "original_file_name": "8137FWF#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497d1918db3742e889c2d3d75e6b540f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497d1918db3742e889c2d3d75e6b540f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/497d1918db3742e889c2d3d75e6b540f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/497d1918db3742e889c2d3d75e6b540f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/497d1918db3742e889c2d3d75e6b540f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv1Aeett2Xnju2RJJ4NHbICsmQY=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.61894+00 2025-12-09 10:15:12.618945+00 11504 LZ1290#背心款3号色 SPMX-20240815306689 \N \N \N 1 \N [{"file_id": "f816d417-754b-4995-bf09-d387bb7e7d31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96f89dceb04d4d55992cd8f4c9d74d3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96f89dceb04d4d55992cd8f4c9d74d3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96f89dceb04d4d55992cd8f4c9d74d3d.jpg", "file_size": 20405, "is_delete": false, "file_type": 1, "original_file_name": "LZ1290#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f89dceb04d4d55992cd8f4c9d74d3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f89dceb04d4d55992cd8f4c9d74d3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f89dceb04d4d55992cd8f4c9d74d3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96f89dceb04d4d55992cd8f4c9d74d3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96f89dceb04d4d55992cd8f4c9d74d3d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQP7N_Mo2Z2FSZazrnnMtdNwyRc=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.621002+00 2025-12-09 10:15:12.621007+00 11505 1106#绿色 SPMX-20240815306690 \N \N \N 1 \N [{"file_id": "a5dfda3a-d931-495c-ad3e-759e87fce162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cd3783979414961a074de354531caa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cd3783979414961a074de354531caa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cd3783979414961a074de354531caa5.jpg", "file_size": 19407, "is_delete": false, "file_type": 1, "original_file_name": "1106#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd3783979414961a074de354531caa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd3783979414961a074de354531caa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd3783979414961a074de354531caa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cd3783979414961a074de354531caa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cd3783979414961a074de354531caa5.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6mph8PGTsWpDDEhzkjvhFt6egU=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.623046+00 2025-12-09 10:15:12.62305+00 11506 LJ9982FW#蓝XL VS-D3 SPMX-20240815306684 \N \N \N 1 \N [{"file_id": "384bcbe2-73cd-45f1-ae12-37164912047e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df5b651919da47fd9cbf962b24e7776c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df5b651919da47fd9cbf962b24e7776c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df5b651919da47fd9cbf962b24e7776c.jpg", "file_size": 13724, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#蓝XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5b651919da47fd9cbf962b24e7776c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5b651919da47fd9cbf962b24e7776c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df5b651919da47fd9cbf962b24e7776c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df5b651919da47fd9cbf962b24e7776c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df5b651919da47fd9cbf962b24e7776c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pj01_ONgxKktOdGbYkOV8iHLXg4=", "createTime": "2024-08-15 14:52:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.624902+00 2025-12-09 10:15:12.624906+00 11507 HT083FW#VS-D3 SPMX-20240815306687 \N \N \N 1 \N [{"file_id": "654ce6a8-7dd0-4fde-8a4c-4dae875a392f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg", "file_size": 19331, "is_delete": false, "file_type": 1, "original_file_name": "HT083FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e84a8ee92b0c483dbb3ed8a3d682c8c9.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxbjxiDdnkVsqwYknXgANze7RVw=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.626961+00 2025-12-09 10:15:12.626965+00 11508 0003-A17#A1 SPMX-20240815306688 \N \N \N 1 \N [{"file_id": "f3ff09c3-fb89-4c17-bcf8-a5d72c2a843c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6e716e19fe44caa8788b78d9e2bf4f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6e716e19fe44caa8788b78d9e2bf4f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6e716e19fe44caa8788b78d9e2bf4f8.jpg", "file_size": 15697, "is_delete": false, "file_type": 1, "original_file_name": "0003-A17#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e716e19fe44caa8788b78d9e2bf4f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e716e19fe44caa8788b78d9e2bf4f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e716e19fe44caa8788b78d9e2bf4f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6e716e19fe44caa8788b78d9e2bf4f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6e716e19fe44caa8788b78d9e2bf4f8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAMixfG6A9k-aRNkYf8QDdi7lEw=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.62898+00 2025-12-09 10:15:12.628984+00 11509 LJ9982FW#藏青2XL VS-D3 SPMX-20240815306695 \N \N \N 1 \N [{"file_id": "5f2492f9-3b1f-47a8-adb7-18d86e12946b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4dc05eb5e084523846ad2391b2edea7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4dc05eb5e084523846ad2391b2edea7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4dc05eb5e084523846ad2391b2edea7.jpg", "file_size": 13848, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#藏青2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc05eb5e084523846ad2391b2edea7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc05eb5e084523846ad2391b2edea7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc05eb5e084523846ad2391b2edea7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4dc05eb5e084523846ad2391b2edea7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4dc05eb5e084523846ad2391b2edea7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dToE4bj715sjhxam8WA7WgRw_nY=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.631043+00 2025-12-09 10:15:12.631048+00 11510 LZ1290#背心款4号色 SPMX-20240815306700 \N \N \N 1 \N [{"file_id": "4949e4ab-8f38-4e97-9ee5-ca4419847734", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a648a176a1949f48d6b5f299618f3ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a648a176a1949f48d6b5f299618f3ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a648a176a1949f48d6b5f299618f3ea.jpg", "file_size": 21177, "is_delete": false, "file_type": 1, "original_file_name": "LZ1290#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a648a176a1949f48d6b5f299618f3ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a648a176a1949f48d6b5f299618f3ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a648a176a1949f48d6b5f299618f3ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a648a176a1949f48d6b5f299618f3ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a648a176a1949f48d6b5f299618f3ea.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVq_ih2-1aGv4OnyNckrHF_3vvY=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.633138+00 2025-12-09 10:15:12.633142+00 11511 8137FWF#长袖匹布 SPMX-20240815306697 \N \N \N 1 \N [{"file_id": "2c3c669e-3937-4eba-b258-2598855d4f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c9afd6304ae4188a5f9b724c0ab35dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c9afd6304ae4188a5f9b724c0ab35dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c9afd6304ae4188a5f9b724c0ab35dc.jpg", "file_size": 12320, "is_delete": false, "file_type": 1, "original_file_name": "8137FWF#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9afd6304ae4188a5f9b724c0ab35dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9afd6304ae4188a5f9b724c0ab35dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9afd6304ae4188a5f9b724c0ab35dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c9afd6304ae4188a5f9b724c0ab35dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c9afd6304ae4188a5f9b724c0ab35dc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSeB67G6HG9soZY-MTkddexqdo8=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.635197+00 2025-12-09 10:15:12.635201+00 11512 JTSS278FW#VS-D3 SPMX-20240815306694 \N \N \N 1 \N [{"file_id": "6c5d8bd7-2168-4575-b709-112bdff95b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47cc3c22074f4dcf91c845351654f267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47cc3c22074f4dcf91c845351654f267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47cc3c22074f4dcf91c845351654f267.jpg", "file_size": 11706, "is_delete": false, "file_type": 1, "original_file_name": "JTSS278FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc3c22074f4dcf91c845351654f267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc3c22074f4dcf91c845351654f267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cc3c22074f4dcf91c845351654f267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47cc3c22074f4dcf91c845351654f267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47cc3c22074f4dcf91c845351654f267.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zf7aNATuHGrU6m0fDBbwKyj7q6o=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.637058+00 2025-12-09 10:15:12.637062+00 11513 23-2118#A1-领子3XL SPMX-20240815306691 \N \N \N 1 \N [{"file_id": "82c454f1-642a-4a3e-9117-9a5180db1683", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78bafef2a68443eb8351895df4ddc4fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78bafef2a68443eb8351895df4ddc4fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78bafef2a68443eb8351895df4ddc4fd.jpg", "file_size": 13804, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78bafef2a68443eb8351895df4ddc4fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78bafef2a68443eb8351895df4ddc4fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78bafef2a68443eb8351895df4ddc4fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78bafef2a68443eb8351895df4ddc4fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78bafef2a68443eb8351895df4ddc4fd.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyCuWLOjieBLsmiVCiQOdXlETv8=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.639382+00 2025-12-09 10:15:12.639389+00 11514 DL31023#改前幅黑色 SPMX-20240815306696 \N \N \N 1 \N [{"file_id": "602c6aa3-2855-44f3-a0b7-05a643ee578f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b8e9814e3ab48eab0f32a2d37b58fe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b8e9814e3ab48eab0f32a2d37b58fe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b8e9814e3ab48eab0f32a2d37b58fe7.jpg", "file_size": 13183, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改前幅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8e9814e3ab48eab0f32a2d37b58fe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8e9814e3ab48eab0f32a2d37b58fe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8e9814e3ab48eab0f32a2d37b58fe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b8e9814e3ab48eab0f32a2d37b58fe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b8e9814e3ab48eab0f32a2d37b58fe7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8dPJQXq6Mrrc0IKBSzMrcD7WGU=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.641823+00 2025-12-09 10:15:12.641828+00 11515 1106#黑色 SPMX-20240815306701 \N \N \N 1 \N [{"file_id": "67365714-5921-4a96-9fcf-58eb19e781e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be62a05ea96142a197f4b4e8672913bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be62a05ea96142a197f4b4e8672913bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be62a05ea96142a197f4b4e8672913bf.jpg", "file_size": 19139, "is_delete": false, "file_type": 1, "original_file_name": "1106#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be62a05ea96142a197f4b4e8672913bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be62a05ea96142a197f4b4e8672913bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be62a05ea96142a197f4b4e8672913bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be62a05ea96142a197f4b4e8672913bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be62a05ea96142a197f4b4e8672913bf.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hcipaAhtk2R31naoWdGvOga5Pog=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.644076+00 2025-12-09 10:15:12.644081+00 11516 23-2118#A1-领子4XL SPMX-20240815306702 \N \N \N 1 \N [{"file_id": "1111c95c-1f73-4ee0-b5b2-052dc3526b71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcd3ef8dc07e4a5a8e08d140512feb2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcd3ef8dc07e4a5a8e08d140512feb2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcd3ef8dc07e4a5a8e08d140512feb2e.jpg", "file_size": 13705, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd3ef8dc07e4a5a8e08d140512feb2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd3ef8dc07e4a5a8e08d140512feb2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd3ef8dc07e4a5a8e08d140512feb2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcd3ef8dc07e4a5a8e08d140512feb2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcd3ef8dc07e4a5a8e08d140512feb2e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ks7RrbA3gXWRB5gz4dPssxSKquw=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.646256+00 2025-12-09 10:15:12.646261+00 11517 FJ001#XL SPMX-20240815306692 \N \N \N 1 \N [{"file_id": "1b4c4850-a9a0-4e0c-8b8e-11c3c935c0af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e4d98f7a3554ed69a1015cc6b807d64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e4d98f7a3554ed69a1015cc6b807d64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e4d98f7a3554ed69a1015cc6b807d64.jpg", "file_size": 22641, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4d98f7a3554ed69a1015cc6b807d64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4d98f7a3554ed69a1015cc6b807d64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4d98f7a3554ed69a1015cc6b807d64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e4d98f7a3554ed69a1015cc6b807d64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e4d98f7a3554ed69a1015cc6b807d64.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGX1vc0Wwx1GIKuM17HErlQEII0=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.648385+00 2025-12-09 10:15:12.648391+00 11518 HT084FW#VS-D3 SPMX-20240815306699 \N \N \N 1 \N [{"file_id": "1d09a17b-496e-4e66-89da-fd907699e092", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3c783401fd440948467f69e5840a7b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3c783401fd440948467f69e5840a7b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3c783401fd440948467f69e5840a7b5.jpg", "file_size": 25618, "is_delete": false, "file_type": 1, "original_file_name": "HT084FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c783401fd440948467f69e5840a7b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c783401fd440948467f69e5840a7b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c783401fd440948467f69e5840a7b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3c783401fd440948467f69e5840a7b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3c783401fd440948467f69e5840a7b5.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_YWuqob1BF4htKU6civzl0jkMlI=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.650266+00 2025-12-09 10:15:12.650272+00 11519 0003-A17#A1色 SPMX-20240815306698 \N \N \N 1 \N [{"file_id": "204d8bd6-22c0-4ea5-8ca6-c085701997e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cab77f235fa842adb2190fddfc550960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cab77f235fa842adb2190fddfc550960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cab77f235fa842adb2190fddfc550960.jpg", "file_size": 15971, "is_delete": false, "file_type": 1, "original_file_name": "0003-A17#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab77f235fa842adb2190fddfc550960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab77f235fa842adb2190fddfc550960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab77f235fa842adb2190fddfc550960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cab77f235fa842adb2190fddfc550960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cab77f235fa842adb2190fddfc550960.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36zHmsxH-qiFCQNVkc7amLlrsHc=", "createTime": "2024-08-15 14:52:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.652085+00 2025-12-09 10:15:12.65209+00 11520 C431#-大白#LWQ15 SPMX-20240815306693 \N \N \N 1 \N [{"file_id": "514b796d-eb0a-4c42-8115-f88db161e194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5344a35f92b4b5d9980695f00923ff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5344a35f92b4b5d9980695f00923ff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5344a35f92b4b5d9980695f00923ff9.jpg", "file_size": 53881, "is_delete": false, "file_type": 1, "original_file_name": "C431#-大白#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5344a35f92b4b5d9980695f00923ff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5344a35f92b4b5d9980695f00923ff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5344a35f92b4b5d9980695f00923ff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5344a35f92b4b5d9980695f00923ff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5344a35f92b4b5d9980695f00923ff9.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVryB41Pfy55rDL_vSMwF0J2KQs=", "createTime": "2024-08-15 14:52:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.654082+00 2025-12-09 10:15:12.654087+00 11521 FJ001#白底 WJC22 SPMX-20240815306704 \N \N \N 1 \N [{"file_id": "d9fb2829-0352-4087-8463-37ae667f6ec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fffac563ced04b638b82d300018a0d1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fffac563ced04b638b82d300018a0d1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fffac563ced04b638b82d300018a0d1f.jpg", "file_size": 15207, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#白底 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffac563ced04b638b82d300018a0d1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffac563ced04b638b82d300018a0d1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffac563ced04b638b82d300018a0d1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fffac563ced04b638b82d300018a0d1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fffac563ced04b638b82d300018a0d1f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRZ5RM42yYr_bV1V7NCdvXMPQHg=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.656005+00 2025-12-09 10:15:12.656009+00 11522 0003-A17#A2 SPMX-20240815306708 \N \N \N 1 \N [{"file_id": "c27d74e5-d7bc-4c96-a4ae-38284da606b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a21acfcdf5144250b500b23086b6bcbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a21acfcdf5144250b500b23086b6bcbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a21acfcdf5144250b500b23086b6bcbb.jpg", "file_size": 16033, "is_delete": false, "file_type": 1, "original_file_name": "0003-A17#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a21acfcdf5144250b500b23086b6bcbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a21acfcdf5144250b500b23086b6bcbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a21acfcdf5144250b500b23086b6bcbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a21acfcdf5144250b500b23086b6bcbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a21acfcdf5144250b500b23086b6bcbb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bmrf-KApzcu6NiYcCXa_daMuHLc=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.658047+00 2025-12-09 10:15:12.658052+00 11523 LJ9982FW#藏青L VS-D3 SPMX-20240815306703 \N \N \N 1 \N [{"file_id": "c5c5dc84-1ca4-4d86-8a87-4031884e256c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20f78d2cc5d1440ab34e5ecace579c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20f78d2cc5d1440ab34e5ecace579c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20f78d2cc5d1440ab34e5ecace579c04.jpg", "file_size": 15348, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#藏青L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f78d2cc5d1440ab34e5ecace579c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f78d2cc5d1440ab34e5ecace579c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f78d2cc5d1440ab34e5ecace579c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20f78d2cc5d1440ab34e5ecace579c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20f78d2cc5d1440ab34e5ecace579c04.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjnPv-Qgbvw0OWT_aOFvzHdC_JQ=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.660093+00 2025-12-09 10:15:12.660097+00 11524 HT085FW#VS-D3 SPMX-20240815306710 \N \N \N 1 \N [{"file_id": "9dc5b535-47bb-4d05-ac64-252ac42a1759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1614cbd93df4c0fa6b5ec8573b85dde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1614cbd93df4c0fa6b5ec8573b85dde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1614cbd93df4c0fa6b5ec8573b85dde.jpg", "file_size": 11217, "is_delete": false, "file_type": 1, "original_file_name": "HT085FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1614cbd93df4c0fa6b5ec8573b85dde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1614cbd93df4c0fa6b5ec8573b85dde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1614cbd93df4c0fa6b5ec8573b85dde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1614cbd93df4c0fa6b5ec8573b85dde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1614cbd93df4c0fa6b5ec8573b85dde.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrpEOdNcOZBTb4QgBt10LeRsHwg=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.662121+00 2025-12-09 10:15:12.662125+00 11525 JTSS279FW#VS-D3 SPMX-20240815306705 \N \N \N 1 \N [{"file_id": "db725795-f092-43d3-acce-de34a8a2e9e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd25adffb0af4fdb94ecab8d6be575b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd25adffb0af4fdb94ecab8d6be575b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd25adffb0af4fdb94ecab8d6be575b6.jpg", "file_size": 12059, "is_delete": false, "file_type": 1, "original_file_name": "JTSS279FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd25adffb0af4fdb94ecab8d6be575b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd25adffb0af4fdb94ecab8d6be575b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd25adffb0af4fdb94ecab8d6be575b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd25adffb0af4fdb94ecab8d6be575b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd25adffb0af4fdb94ecab8d6be575b6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8OtbLfBv5wd4BDdQeOy9s8Id_Q=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.664164+00 2025-12-09 10:15:12.664169+00 11526 DL31023#改批布宝蓝 SPMX-20240815306707 \N \N \N 1 \N [{"file_id": "e9efd2d9-7c93-435d-915e-009cb9f8fc34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6d99fc246954fbf9a45d548a89031e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6d99fc246954fbf9a45d548a89031e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6d99fc246954fbf9a45d548a89031e2.jpg", "file_size": 23027, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d99fc246954fbf9a45d548a89031e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d99fc246954fbf9a45d548a89031e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d99fc246954fbf9a45d548a89031e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6d99fc246954fbf9a45d548a89031e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6d99fc246954fbf9a45d548a89031e2.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h69Nrlgmvv3kmY3UFCy6_yXPZJg=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.666209+00 2025-12-09 10:15:12.666214+00 11527 C431#-玫红#LWQ15 SPMX-20240815306706 \N \N \N 1 \N [{"file_id": "ded76084-939c-4a38-8b2a-395472ebcdca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad005e8299fe4bea8510125168af918d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad005e8299fe4bea8510125168af918d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad005e8299fe4bea8510125168af918d.jpg", "file_size": 57655, "is_delete": false, "file_type": 1, "original_file_name": "C431#-玫红#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad005e8299fe4bea8510125168af918d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad005e8299fe4bea8510125168af918d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad005e8299fe4bea8510125168af918d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad005e8299fe4bea8510125168af918d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad005e8299fe4bea8510125168af918d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7svsoiu-kDZchwLoINC9Irpt0DI=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.668342+00 2025-12-09 10:15:12.668347+00 11528 LZ1290#背心款5号色 SPMX-20240815306711 \N \N \N 1 \N [{"file_id": "1a8c82bf-8f5c-406d-b00f-3667a920879b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d394146b4d294da5988b53703360c03f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d394146b4d294da5988b53703360c03f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d394146b4d294da5988b53703360c03f.jpg", "file_size": 20715, "is_delete": false, "file_type": 1, "original_file_name": "LZ1290#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d394146b4d294da5988b53703360c03f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d394146b4d294da5988b53703360c03f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d394146b4d294da5988b53703360c03f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d394146b4d294da5988b53703360c03f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d394146b4d294da5988b53703360c03f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tmjbLRy4HvG-9WC-xgCGc8JzuE=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.670403+00 2025-12-09 10:15:12.670409+00 11529 23-2118#A10-3XL SPMX-20240815306709 \N \N \N 1 \N [{"file_id": "18626d10-edbe-4dcb-8a3a-255697d09877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33f57430bacb45ecb5897de06f44b7e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33f57430bacb45ecb5897de06f44b7e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33f57430bacb45ecb5897de06f44b7e7.jpg", "file_size": 16334, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f57430bacb45ecb5897de06f44b7e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f57430bacb45ecb5897de06f44b7e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f57430bacb45ecb5897de06f44b7e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33f57430bacb45ecb5897de06f44b7e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33f57430bacb45ecb5897de06f44b7e7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AaPOWs_c5GU-Y3hJZpfYwMQlyNo=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.672495+00 2025-12-09 10:15:12.672499+00 11530 1107#大红 SPMX-20240815306713 \N \N \N 1 \N [{"file_id": "df1ffefa-2fb0-4f3b-8d63-62374b547515", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8957bc5f16074754939678103b59bfd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8957bc5f16074754939678103b59bfd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8957bc5f16074754939678103b59bfd7.jpg", "file_size": 16699, "is_delete": false, "file_type": 1, "original_file_name": "1107#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8957bc5f16074754939678103b59bfd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8957bc5f16074754939678103b59bfd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8957bc5f16074754939678103b59bfd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8957bc5f16074754939678103b59bfd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8957bc5f16074754939678103b59bfd7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8ma_3vPeW6jGZ8Wdp9MAO2yT4g=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.674325+00 2025-12-09 10:15:12.67433+00 11531 8137FWF#长袖裤子 SPMX-20240815306714 \N \N \N 1 \N [{"file_id": "d82ac195-fe80-47a0-91f4-74f9943aa17e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70438e28ebbe44bdbad6052feabbf80a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70438e28ebbe44bdbad6052feabbf80a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70438e28ebbe44bdbad6052feabbf80a.jpg", "file_size": 16625, "is_delete": false, "file_type": 1, "original_file_name": "8137FWF#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70438e28ebbe44bdbad6052feabbf80a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70438e28ebbe44bdbad6052feabbf80a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70438e28ebbe44bdbad6052feabbf80a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70438e28ebbe44bdbad6052feabbf80a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70438e28ebbe44bdbad6052feabbf80a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xvr2ak6IpFt2TZRMLV1qRueQPFM=", "createTime": "2024-08-15 14:52:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.676397+00 2025-12-09 10:15:12.676402+00 11532 1107#粉色 SPMX-20240815306724 \N \N \N 1 \N [{"file_id": "07a744e8-fbcc-4372-aa03-3d187c2f78bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e65c55edc22413098ce9af3b9fa38b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e65c55edc22413098ce9af3b9fa38b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e65c55edc22413098ce9af3b9fa38b9.jpg", "file_size": 17856, "is_delete": false, "file_type": 1, "original_file_name": "1107#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e65c55edc22413098ce9af3b9fa38b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e65c55edc22413098ce9af3b9fa38b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e65c55edc22413098ce9af3b9fa38b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e65c55edc22413098ce9af3b9fa38b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e65c55edc22413098ce9af3b9fa38b9.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kOkTIE3eSDTmXwrn1NJJjSQS28=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.678447+00 2025-12-09 10:15:12.678452+00 11533 C431#-黑色#LWQ15 SPMX-20240815306715 \N \N \N 1 \N [{"file_id": "b58707a3-49fc-4dc5-adb6-580b99cdecb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5abc8417d2444daa9d224754e863358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5abc8417d2444daa9d224754e863358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5abc8417d2444daa9d224754e863358.jpg", "file_size": 56628, "is_delete": false, "file_type": 1, "original_file_name": "C431#-黑色#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5abc8417d2444daa9d224754e863358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5abc8417d2444daa9d224754e863358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5abc8417d2444daa9d224754e863358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5abc8417d2444daa9d224754e863358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5abc8417d2444daa9d224754e863358.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKCxOINjKjm8pSj_9LEfzHyIkB8=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.680469+00 2025-12-09 10:15:12.680474+00 11534 23-2118#A10-4XL SPMX-20240815306721 \N \N \N 1 \N [{"file_id": "10e30989-ee52-42b5-8f2d-c2fb5a9f98e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73af82a19142446baa06b33e732dfa88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73af82a19142446baa06b33e732dfa88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73af82a19142446baa06b33e732dfa88.jpg", "file_size": 15039, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73af82a19142446baa06b33e732dfa88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73af82a19142446baa06b33e732dfa88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73af82a19142446baa06b33e732dfa88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73af82a19142446baa06b33e732dfa88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73af82a19142446baa06b33e732dfa88.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fyWXCgPfm9K0mOi4UEbBOOGF01Y=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.682266+00 2025-12-09 10:15:12.682271+00 11535 LZ1291#背心款1号色 SPMX-20240815306723 \N \N \N 1 \N [{"file_id": "51d9ef91-2f92-4c55-8796-6628d696e889", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98ac54055cbd4685ad99ec763ebe1bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98ac54055cbd4685ad99ec763ebe1bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98ac54055cbd4685ad99ec763ebe1bd8.jpg", "file_size": 17283, "is_delete": false, "file_type": 1, "original_file_name": "LZ1291#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac54055cbd4685ad99ec763ebe1bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac54055cbd4685ad99ec763ebe1bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac54055cbd4685ad99ec763ebe1bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98ac54055cbd4685ad99ec763ebe1bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98ac54055cbd4685ad99ec763ebe1bd8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cielfB0onHcovpjM-XJ8SIw75RQ=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.684312+00 2025-12-09 10:15:12.684317+00 11536 JTSS280FW#VS-D3 SPMX-20240815306716 \N \N \N 1 \N [{"file_id": "6baa02fe-f196-4269-81dd-f8e932181d58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751df8e8fc8944a08bc4bdf4d3316d2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751df8e8fc8944a08bc4bdf4d3316d2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751df8e8fc8944a08bc4bdf4d3316d2b.jpg", "file_size": 8800, "is_delete": false, "file_type": 1, "original_file_name": "JTSS280FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751df8e8fc8944a08bc4bdf4d3316d2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751df8e8fc8944a08bc4bdf4d3316d2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751df8e8fc8944a08bc4bdf4d3316d2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751df8e8fc8944a08bc4bdf4d3316d2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751df8e8fc8944a08bc4bdf4d3316d2b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:96awB2jlt9usjmb06g3Ks1PzJrI=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.686387+00 2025-12-09 10:15:12.686392+00 11537 DL31023#改批布彩兰色 SPMX-20240815306720 \N \N \N 1 \N [{"file_id": "cc190fb2-c641-4c20-bb62-15859f977d05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d3053bc07f441aead441fb17e310527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d3053bc07f441aead441fb17e310527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d3053bc07f441aead441fb17e310527.jpg", "file_size": 23074, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3053bc07f441aead441fb17e310527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3053bc07f441aead441fb17e310527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3053bc07f441aead441fb17e310527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d3053bc07f441aead441fb17e310527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d3053bc07f441aead441fb17e310527.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bO7r3rVhwKMtatg4TDNFKnAHVtA=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.688458+00 2025-12-09 10:15:12.688463+00 11538 0003-A17#A2色 SPMX-20240815306719 \N \N \N 1 \N [{"file_id": "397acb61-fcab-4042-aaf9-b4243c051fa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6263049ed86c420198df3e27f5e2c1d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6263049ed86c420198df3e27f5e2c1d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6263049ed86c420198df3e27f5e2c1d7.jpg", "file_size": 16018, "is_delete": false, "file_type": 1, "original_file_name": "0003-A17#A2色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6263049ed86c420198df3e27f5e2c1d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6263049ed86c420198df3e27f5e2c1d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6263049ed86c420198df3e27f5e2c1d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6263049ed86c420198df3e27f5e2c1d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6263049ed86c420198df3e27f5e2c1d7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAvu06u3obt_BlQ3w8iZen3K2NI=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.690544+00 2025-12-09 10:15:12.690549+00 11539 HT086FW#VS-D3 SPMX-20240815306722 \N \N \N 1 \N [{"file_id": "b060700e-b5e3-4e68-b5bd-657779671d8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aaec5fba10249df9aad454fcdfde3bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aaec5fba10249df9aad454fcdfde3bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aaec5fba10249df9aad454fcdfde3bf.jpg", "file_size": 11289, "is_delete": false, "file_type": 1, "original_file_name": "HT086FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaec5fba10249df9aad454fcdfde3bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaec5fba10249df9aad454fcdfde3bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aaec5fba10249df9aad454fcdfde3bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aaec5fba10249df9aad454fcdfde3bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aaec5fba10249df9aad454fcdfde3bf.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHKWFNIIRBQT9LQNl5RDzvV0Weo=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.692613+00 2025-12-09 10:15:12.692619+00 11540 LJ9982FW#藏青M VS-D3 SPMX-20240815306717 \N \N \N 1 \N [{"file_id": "4fb3d7fe-7866-45c8-9ee9-34eededa36f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4af57c09f7864c1eab0e47b05dd65d73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4af57c09f7864c1eab0e47b05dd65d73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4af57c09f7864c1eab0e47b05dd65d73.jpg", "file_size": 14974, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#藏青M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af57c09f7864c1eab0e47b05dd65d73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af57c09f7864c1eab0e47b05dd65d73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af57c09f7864c1eab0e47b05dd65d73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4af57c09f7864c1eab0e47b05dd65d73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4af57c09f7864c1eab0e47b05dd65d73.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g46gCJL2oePG03CLUJgBe8SRji8=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.694433+00 2025-12-09 10:15:12.694438+00 11541 FJ001#绿底 WJC22 SPMX-20240815306718 \N \N \N 1 \N [{"file_id": "7ccb6861-11c3-4e7f-b02a-baf7acc89c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ecfddb69dd747a3b7186aa877ca2948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ecfddb69dd747a3b7186aa877ca2948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ecfddb69dd747a3b7186aa877ca2948.jpg", "file_size": 13620, "is_delete": false, "file_type": 1, "original_file_name": "FJ001#绿底 WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecfddb69dd747a3b7186aa877ca2948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecfddb69dd747a3b7186aa877ca2948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecfddb69dd747a3b7186aa877ca2948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ecfddb69dd747a3b7186aa877ca2948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ecfddb69dd747a3b7186aa877ca2948.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRGA1mspz2csLw7XSy6fQLHOwfM=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.696481+00 2025-12-09 10:15:12.696486+00 11542 LJ9982FW#藏青XL VS-D3 SPMX-20240815306738 \N \N \N 1 \N [{"file_id": "281ae85b-80d0-411b-8c4f-30938fb5fc80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6b35596486347d7b30385ad8bf5e7f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6b35596486347d7b30385ad8bf5e7f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6b35596486347d7b30385ad8bf5e7f0.jpg", "file_size": 14060, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#藏青XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b35596486347d7b30385ad8bf5e7f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b35596486347d7b30385ad8bf5e7f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6b35596486347d7b30385ad8bf5e7f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6b35596486347d7b30385ad8bf5e7f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6b35596486347d7b30385ad8bf5e7f0.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOoq2ot9S1K_LeuQvCVkuZeCf6I=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.698552+00 2025-12-09 10:15:12.698556+00 11543 FJ001FWE#红VS-D3 SPMX-20240815306739 \N \N \N 1 \N [{"file_id": "a094071f-ed0b-4049-bd83-c425efd2d7b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f66943ec3874e80ab655f5ddcb11f0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f66943ec3874e80ab655f5ddcb11f0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f66943ec3874e80ab655f5ddcb11f0a.jpg", "file_size": 8342, "is_delete": false, "file_type": 1, "original_file_name": "FJ001FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f66943ec3874e80ab655f5ddcb11f0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f66943ec3874e80ab655f5ddcb11f0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f66943ec3874e80ab655f5ddcb11f0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f66943ec3874e80ab655f5ddcb11f0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f66943ec3874e80ab655f5ddcb11f0a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_453sEkbRUwOSuEkG4J1ckSNgs=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.700641+00 2025-12-09 10:15:12.700646+00 11544 LJ9982FW#藏青S VS-D3 SPMX-20240815306727 \N \N \N 1 \N [{"file_id": "2d7ff516-0702-4136-b7db-99b97b667054", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ea964090bde4e429830bbe5a0bac81b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ea964090bde4e429830bbe5a0bac81b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ea964090bde4e429830bbe5a0bac81b.jpg", "file_size": 14622, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#藏青S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ea964090bde4e429830bbe5a0bac81b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ea964090bde4e429830bbe5a0bac81b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ea964090bde4e429830bbe5a0bac81b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ea964090bde4e429830bbe5a0bac81b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ea964090bde4e429830bbe5a0bac81b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVqT0wOUYaCACzwwoSYW96AsSOg=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.702679+00 2025-12-09 10:15:12.702684+00 11545 0003-A17#A3色 SPMX-20240815306730 \N \N \N 1 \N [{"file_id": "dc61c67f-a45c-4e83-8186-065367e81a75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e661f13879a418daad8e67730f70575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e661f13879a418daad8e67730f70575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e661f13879a418daad8e67730f70575.jpg", "file_size": 15175, "is_delete": false, "file_type": 1, "original_file_name": "0003-A17#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e661f13879a418daad8e67730f70575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e661f13879a418daad8e67730f70575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e661f13879a418daad8e67730f70575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e661f13879a418daad8e67730f70575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e661f13879a418daad8e67730f70575.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3b_Fr1EbfDiw62E0921-aRv4xiI=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.704493+00 2025-12-09 10:15:12.704497+00 11546 23-2118#A10-领子3XL SPMX-20240815306732 \N \N \N 1 \N [{"file_id": "96462668-619c-4598-8902-9fd45771d143", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bf3c89e654f4489844380f3eebe6b5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bf3c89e654f4489844380f3eebe6b5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bf3c89e654f4489844380f3eebe6b5a.jpg", "file_size": 11554, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf3c89e654f4489844380f3eebe6b5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf3c89e654f4489844380f3eebe6b5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bf3c89e654f4489844380f3eebe6b5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bf3c89e654f4489844380f3eebe6b5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bf3c89e654f4489844380f3eebe6b5a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K22jLMije9HGiAo9Z4sy29z2K2I=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.706528+00 2025-12-09 10:15:12.706533+00 11547 FJ001FW#VS-D3 SPMX-20240815306728 \N \N \N 1 \N [{"file_id": "12a5e28d-1399-4790-b57f-f446d829a3c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2feb7de4d91a43a89dd631c29483226c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2feb7de4d91a43a89dd631c29483226c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2feb7de4d91a43a89dd631c29483226c.jpg", "file_size": 10688, "is_delete": false, "file_type": 1, "original_file_name": "FJ001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2feb7de4d91a43a89dd631c29483226c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2feb7de4d91a43a89dd631c29483226c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2feb7de4d91a43a89dd631c29483226c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2feb7de4d91a43a89dd631c29483226c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2feb7de4d91a43a89dd631c29483226c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3COQATShBi9V2aOAayWVdH9Tp2I=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.708607+00 2025-12-09 10:15:12.708612+00 11548 HT087FW#VS-D3 SPMX-20240815306733 \N \N \N 1 \N [{"file_id": "82927186-e814-40b5-a4a8-d8b7bd6f2036", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf690a590f774ae9adfdeb85c926fa4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf690a590f774ae9adfdeb85c926fa4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf690a590f774ae9adfdeb85c926fa4f.jpg", "file_size": 11545, "is_delete": false, "file_type": 1, "original_file_name": "HT087FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf690a590f774ae9adfdeb85c926fa4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf690a590f774ae9adfdeb85c926fa4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf690a590f774ae9adfdeb85c926fa4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf690a590f774ae9adfdeb85c926fa4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf690a590f774ae9adfdeb85c926fa4f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2DRwxUdO8kKf0ZA-BAzyWdkSY04=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.710657+00 2025-12-09 10:15:12.710661+00 11549 JTSS282FW#VS-D3 SPMX-20240815306737 \N \N \N 1 \N [{"file_id": "8bceedc1-b10e-4ae2-828b-283730ecb5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "738885e1d0494cbf911a0fbc096fdb02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "738885e1d0494cbf911a0fbc096fdb02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "738885e1d0494cbf911a0fbc096fdb02.jpg", "file_size": 9865, "is_delete": false, "file_type": 1, "original_file_name": "JTSS282FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738885e1d0494cbf911a0fbc096fdb02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738885e1d0494cbf911a0fbc096fdb02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738885e1d0494cbf911a0fbc096fdb02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/738885e1d0494cbf911a0fbc096fdb02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/738885e1d0494cbf911a0fbc096fdb02.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EU4edIWe0l6d3xpX429ZlTmwQYE=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.712708+00 2025-12-09 10:15:12.712713+00 11550 JTSS281FW#VS-D3 SPMX-20240815306726 \N \N \N 1 \N [{"file_id": "0f33be8a-6ae1-4c02-8b50-9bd0d0dcb9a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ced195180cc4c2eb77666057c06a0b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ced195180cc4c2eb77666057c06a0b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ced195180cc4c2eb77666057c06a0b8.jpg", "file_size": 11678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS281FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ced195180cc4c2eb77666057c06a0b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ced195180cc4c2eb77666057c06a0b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ced195180cc4c2eb77666057c06a0b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ced195180cc4c2eb77666057c06a0b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ced195180cc4c2eb77666057c06a0b8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKxsGr494I7ErbQAyMch5Ielimo=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.714754+00 2025-12-09 10:15:12.714759+00 11551 1107#绿色 SPMX-20240815306735 \N \N \N 1 \N [{"file_id": "75d4dba0-fe19-421f-9a17-61cae8a646a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5972628e1464419ebb20040c481a7791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5972628e1464419ebb20040c481a7791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5972628e1464419ebb20040c481a7791.jpg", "file_size": 17491, "is_delete": false, "file_type": 1, "original_file_name": "1107#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5972628e1464419ebb20040c481a7791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5972628e1464419ebb20040c481a7791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5972628e1464419ebb20040c481a7791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5972628e1464419ebb20040c481a7791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5972628e1464419ebb20040c481a7791.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qRkH_nxLXaDo2yTKZbEzy_9fJ3E=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.716566+00 2025-12-09 10:15:12.71657+00 11552 DL31023#改批布彩大红 SPMX-20240815306731 \N \N \N 1 \N [{"file_id": "7a87414a-bdee-454a-9531-8c4aac65d1d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "745c9372a375477a9b3060709558b54b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "745c9372a375477a9b3060709558b54b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "745c9372a375477a9b3060709558b54b.jpg", "file_size": 18674, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布彩大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/745c9372a375477a9b3060709558b54b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/745c9372a375477a9b3060709558b54b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/745c9372a375477a9b3060709558b54b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/745c9372a375477a9b3060709558b54b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/745c9372a375477a9b3060709558b54b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CwKkFRskVULClp4mzrm0yn8LF_Y=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.718624+00 2025-12-09 10:15:12.718629+00 11553 LZ1291#背心款2号色 SPMX-20240815306734 \N \N \N 1 \N [{"file_id": "88a1c9f6-ef65-43ee-8b39-075615ccafe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eec1774dbe3472eb0a7adf0c66c284e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eec1774dbe3472eb0a7adf0c66c284e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eec1774dbe3472eb0a7adf0c66c284e.jpg", "file_size": 16302, "is_delete": false, "file_type": 1, "original_file_name": "LZ1291#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eec1774dbe3472eb0a7adf0c66c284e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eec1774dbe3472eb0a7adf0c66c284e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eec1774dbe3472eb0a7adf0c66c284e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eec1774dbe3472eb0a7adf0c66c284e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eec1774dbe3472eb0a7adf0c66c284e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATRX3H9auXo9tf_HY27Y4J-AiVs=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.720622+00 2025-12-09 10:15:12.720627+00 11554 0003-A18#LWQ15 SPMX-20240815306741 \N \N \N 1 \N [{"file_id": "0f2efc0d-5f17-4d7d-9d5b-6ea10fb84911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e8199f70c28418a845196916d9012d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e8199f70c28418a845196916d9012d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e8199f70c28418a845196916d9012d3.jpg", "file_size": 16269, "is_delete": false, "file_type": 1, "original_file_name": "0003-A18#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8199f70c28418a845196916d9012d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8199f70c28418a845196916d9012d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8199f70c28418a845196916d9012d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e8199f70c28418a845196916d9012d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e8199f70c28418a845196916d9012d3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-DeZha1JIRpO8MbpzhJNM3tAPms=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.722673+00 2025-12-09 10:15:12.722678+00 11555 8138FWF#长袖 SPMX-20240815306725 \N \N \N 1 \N [{"file_id": "46a96844-49a0-4adf-9c73-42e5d14e10fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5421073aaa04c7ca799e82616c878fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5421073aaa04c7ca799e82616c878fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5421073aaa04c7ca799e82616c878fd.jpg", "file_size": 20361, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#长袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5421073aaa04c7ca799e82616c878fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5421073aaa04c7ca799e82616c878fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5421073aaa04c7ca799e82616c878fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5421073aaa04c7ca799e82616c878fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5421073aaa04c7ca799e82616c878fd.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKJRZCRyTuLqHgnJH04hdec--w4=", "createTime": "2024-08-15 14:52:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.724713+00 2025-12-09 10:15:12.724718+00 11556 8138FWF#长袖上衣 SPMX-20240815306736 \N \N \N 1 \N [{"file_id": "83485114-4ad4-4cfc-bb5e-34258481b51e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53432742a6164cc0a7c267db8940f89a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53432742a6164cc0a7c267db8940f89a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53432742a6164cc0a7c267db8940f89a.jpg", "file_size": 15977, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53432742a6164cc0a7c267db8940f89a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53432742a6164cc0a7c267db8940f89a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53432742a6164cc0a7c267db8940f89a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53432742a6164cc0a7c267db8940f89a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53432742a6164cc0a7c267db8940f89a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9fpUnMu2XuMl3tIqlzSUaOvoqg=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.726758+00 2025-12-09 10:15:12.726763+00 11557 C432#玫红 SPMX-20240815306740 \N \N \N 1 \N [{"file_id": "06d379fc-767f-4e48-a1a9-bc4bcdd4cf05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74ecb4fd5c7c4d4396072871ce41d65e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74ecb4fd5c7c4d4396072871ce41d65e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74ecb4fd5c7c4d4396072871ce41d65e.jpg", "file_size": 68858, "is_delete": false, "file_type": 1, "original_file_name": "C432#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ecb4fd5c7c4d4396072871ce41d65e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ecb4fd5c7c4d4396072871ce41d65e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ecb4fd5c7c4d4396072871ce41d65e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74ecb4fd5c7c4d4396072871ce41d65e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74ecb4fd5c7c4d4396072871ce41d65e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zIhGUIP4TtHXIALWTdB6SzdhPts=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.728811+00 2025-12-09 10:15:12.728816+00 11558 C432#大白 SPMX-20240815306729 \N \N \N 1 \N [{"file_id": "245e26df-9e96-4daf-afac-1f81fd33c673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "040e1dda76d449e2bf12fa8df654694f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "040e1dda76d449e2bf12fa8df654694f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "040e1dda76d449e2bf12fa8df654694f.jpg", "file_size": 62699, "is_delete": false, "file_type": 1, "original_file_name": "C432#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040e1dda76d449e2bf12fa8df654694f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040e1dda76d449e2bf12fa8df654694f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040e1dda76d449e2bf12fa8df654694f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/040e1dda76d449e2bf12fa8df654694f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/040e1dda76d449e2bf12fa8df654694f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCG_OiB9DyYROU1-1hBhmpC-0H0=", "createTime": "2024-08-15 14:52:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.730852+00 2025-12-09 10:15:12.730857+00 11559 8138FWF#长袖匹布 SPMX-20240815306746 \N \N \N 1 \N [{"file_id": "4c93122b-0003-4637-a9b5-0a0b4a2a8c95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c54c04fbca24673bf81ce271e9718f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c54c04fbca24673bf81ce271e9718f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c54c04fbca24673bf81ce271e9718f6.jpg", "file_size": 9123, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54c04fbca24673bf81ce271e9718f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54c04fbca24673bf81ce271e9718f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54c04fbca24673bf81ce271e9718f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c54c04fbca24673bf81ce271e9718f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c54c04fbca24673bf81ce271e9718f6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bh1IYx5_hzwAeiMi9ZFnGzagJtU=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.732894+00 2025-12-09 10:15:12.732899+00 11560 23-2118#A10-领子4XL SPMX-20240815306743 \N \N \N 1 \N [{"file_id": "58ee3223-2454-43f3-af9c-0d100af64bdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cb14af2c63d41e6b2cd2aea70b8b67a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cb14af2c63d41e6b2cd2aea70b8b67a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cb14af2c63d41e6b2cd2aea70b8b67a.jpg", "file_size": 11704, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb14af2c63d41e6b2cd2aea70b8b67a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb14af2c63d41e6b2cd2aea70b8b67a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb14af2c63d41e6b2cd2aea70b8b67a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cb14af2c63d41e6b2cd2aea70b8b67a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cb14af2c63d41e6b2cd2aea70b8b67a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYx8PbDtJVzynCNNiZn-gKpGeAc=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.734737+00 2025-12-09 10:15:12.734742+00 11561 HT088FW#VS-D3 SPMX-20240815306744 \N \N \N 1 \N [{"file_id": "4d480567-c0df-4c49-9f60-6b069c31f876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "475fd5728ad54e5e80656d6160f90ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "475fd5728ad54e5e80656d6160f90ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "475fd5728ad54e5e80656d6160f90ce7.jpg", "file_size": 11218, "is_delete": false, "file_type": 1, "original_file_name": "HT088FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475fd5728ad54e5e80656d6160f90ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475fd5728ad54e5e80656d6160f90ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475fd5728ad54e5e80656d6160f90ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/475fd5728ad54e5e80656d6160f90ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/475fd5728ad54e5e80656d6160f90ce7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jChKJRe424GASVsMn-Jd2euYtIM=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.736677+00 2025-12-09 10:15:12.736681+00 11562 JTSS283FW#VS-D3 SPMX-20240815306748 \N \N \N 1 \N [{"file_id": "10d25003-b741-4afc-a1cd-059cb38f85e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f44f52d838204f21979a439e5b5c7902.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f44f52d838204f21979a439e5b5c7902.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f44f52d838204f21979a439e5b5c7902.jpg", "file_size": 9105, "is_delete": false, "file_type": 1, "original_file_name": "JTSS283FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44f52d838204f21979a439e5b5c7902.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44f52d838204f21979a439e5b5c7902.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44f52d838204f21979a439e5b5c7902.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f44f52d838204f21979a439e5b5c7902.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f44f52d838204f21979a439e5b5c7902.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Snzu9nZcMfVh3_zKR1z0Z864oaQ=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.738739+00 2025-12-09 10:15:12.738744+00 11563 1107#蓝色 SPMX-20240815306747 \N \N \N 1 \N [{"file_id": "a2e6868b-9102-46c5-80b1-5fcc39c9774e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c7d3b712b014d478c0868e8a487bb3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c7d3b712b014d478c0868e8a487bb3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c7d3b712b014d478c0868e8a487bb3d.jpg", "file_size": 16762, "is_delete": false, "file_type": 1, "original_file_name": "1107#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7d3b712b014d478c0868e8a487bb3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7d3b712b014d478c0868e8a487bb3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7d3b712b014d478c0868e8a487bb3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c7d3b712b014d478c0868e8a487bb3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c7d3b712b014d478c0868e8a487bb3d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oj2uGCzSYEEyMyI90tVpTNnf3sE=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.740774+00 2025-12-09 10:15:12.740778+00 11564 23-2118#A11-3XL SPMX-20240815306754 \N \N \N 1 \N [{"file_id": "425f8954-2fd9-4e4a-9211-9e2406c85ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d292643d8bd74c65ab04b2933e2fe0fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d292643d8bd74c65ab04b2933e2fe0fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d292643d8bd74c65ab04b2933e2fe0fe.jpg", "file_size": 15247, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d292643d8bd74c65ab04b2933e2fe0fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d292643d8bd74c65ab04b2933e2fe0fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d292643d8bd74c65ab04b2933e2fe0fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d292643d8bd74c65ab04b2933e2fe0fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d292643d8bd74c65ab04b2933e2fe0fe.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ihRupODAU8_l4dxFQs1njD9-rk=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.742749+00 2025-12-09 10:15:12.742754+00 11565 LZ1291#背心款4号色 SPMX-20240815306756 \N \N \N 1 \N [{"file_id": "d9763d88-52e7-487c-8cd9-4f7b627cc4bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b480b5973b34945a16b7ab85522c607.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b480b5973b34945a16b7ab85522c607.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b480b5973b34945a16b7ab85522c607.jpg", "file_size": 17373, "is_delete": false, "file_type": 1, "original_file_name": "LZ1291#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480b5973b34945a16b7ab85522c607.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480b5973b34945a16b7ab85522c607.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b480b5973b34945a16b7ab85522c607.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b480b5973b34945a16b7ab85522c607.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b480b5973b34945a16b7ab85522c607.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZp6X0Z344-NWAI9x6D72GkanL4=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.744784+00 2025-12-09 10:15:12.74479+00 11566 DL31023#改批布彩黑色 SPMX-20240815306742 \N \N \N 1 \N [{"file_id": "e64b2c66-33ac-405d-a420-3edd615fb103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33fe0fe1f80e4a249879d101437953dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33fe0fe1f80e4a249879d101437953dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33fe0fe1f80e4a249879d101437953dc.jpg", "file_size": 18648, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布彩黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe0fe1f80e4a249879d101437953dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe0fe1f80e4a249879d101437953dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe0fe1f80e4a249879d101437953dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33fe0fe1f80e4a249879d101437953dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33fe0fe1f80e4a249879d101437953dc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kIsrSH7Rghs96AVlD04UNpouBO8=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.746827+00 2025-12-09 10:15:12.746832+00 11567 LZ1291#背心款3号色 SPMX-20240815306745 \N \N \N 1 \N [{"file_id": "218fca17-7943-4ffd-9207-a5bcb0d3f680", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b9988cb62b846f3b19e62f6015e69c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b9988cb62b846f3b19e62f6015e69c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b9988cb62b846f3b19e62f6015e69c6.jpg", "file_size": 16895, "is_delete": false, "file_type": 1, "original_file_name": "LZ1291#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9988cb62b846f3b19e62f6015e69c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9988cb62b846f3b19e62f6015e69c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9988cb62b846f3b19e62f6015e69c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b9988cb62b846f3b19e62f6015e69c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b9988cb62b846f3b19e62f6015e69c6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6v4xPRQomCthGpooEBDD7G-AYQs=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.748879+00 2025-12-09 10:15:12.748884+00 11568 LJ9982FW#酒红2XL VS-D3 SPMX-20240815306749 \N \N \N 1 \N [{"file_id": "2bd6d6b0-fcc4-4d8d-9c8c-dceec1acc1c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3301cf70ea04f048db012aabf23fab1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3301cf70ea04f048db012aabf23fab1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3301cf70ea04f048db012aabf23fab1.jpg", "file_size": 13690, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#酒红2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3301cf70ea04f048db012aabf23fab1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3301cf70ea04f048db012aabf23fab1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3301cf70ea04f048db012aabf23fab1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3301cf70ea04f048db012aabf23fab1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3301cf70ea04f048db012aabf23fab1.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLp_UGMNXo4GM82u5XBv4VmO8mI=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.750946+00 2025-12-09 10:15:12.75095+00 11569 FJ001FWE#绿VS-D3 SPMX-20240815306750 \N \N \N 1 \N [{"file_id": "7f83a29e-549e-4fbd-a1a5-60719006e226", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ada69caba5fb48b9a5b7a9b3211d1d2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ada69caba5fb48b9a5b7a9b3211d1d2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ada69caba5fb48b9a5b7a9b3211d1d2a.jpg", "file_size": 8648, "is_delete": false, "file_type": 1, "original_file_name": "FJ001FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada69caba5fb48b9a5b7a9b3211d1d2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada69caba5fb48b9a5b7a9b3211d1d2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada69caba5fb48b9a5b7a9b3211d1d2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ada69caba5fb48b9a5b7a9b3211d1d2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ada69caba5fb48b9a5b7a9b3211d1d2a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTQX0cDTZynm_vomQO2G0P-JUp8=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.752974+00 2025-12-09 10:15:12.752979+00 11570 C432#粉色 SPMX-20240815306751 \N \N \N 1 \N [{"file_id": "71508d71-7573-4359-b2d7-77f7fea1ecc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f50701b3bb49d6bd78a34cc7c7c473.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f50701b3bb49d6bd78a34cc7c7c473.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f50701b3bb49d6bd78a34cc7c7c473.jpg", "file_size": 62494, "is_delete": false, "file_type": 1, "original_file_name": "C432#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f50701b3bb49d6bd78a34cc7c7c473.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f50701b3bb49d6bd78a34cc7c7c473.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f50701b3bb49d6bd78a34cc7c7c473.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f50701b3bb49d6bd78a34cc7c7c473.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f50701b3bb49d6bd78a34cc7c7c473.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wo9bmY8tzlXHRAo6rsVNithoeds=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.755015+00 2025-12-09 10:15:12.755019+00 11571 HT089FW#VS-D3 SPMX-20240815306755 \N \N \N 1 \N [{"file_id": "35918cf7-109c-497f-b50c-54506054ca2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f781386ef2ba4ddcab947a266f5c1020.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f781386ef2ba4ddcab947a266f5c1020.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f781386ef2ba4ddcab947a266f5c1020.jpg", "file_size": 11294, "is_delete": false, "file_type": 1, "original_file_name": "HT089FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f781386ef2ba4ddcab947a266f5c1020.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f781386ef2ba4ddcab947a266f5c1020.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f781386ef2ba4ddcab947a266f5c1020.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f781386ef2ba4ddcab947a266f5c1020.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f781386ef2ba4ddcab947a266f5c1020.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRZ3mkq6ow4tkCn_DAG6tyINJb8=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.757065+00 2025-12-09 10:15:12.757071+00 11572 DL31023#改批布枣红色 SPMX-20240815306752 \N \N \N 1 \N [{"file_id": "d78218ee-eeb1-4323-8c0f-0ab0b47a313f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c50f3c720e54fcd9162b9f70a6ccb84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c50f3c720e54fcd9162b9f70a6ccb84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c50f3c720e54fcd9162b9f70a6ccb84.jpg", "file_size": 23626, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c50f3c720e54fcd9162b9f70a6ccb84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c50f3c720e54fcd9162b9f70a6ccb84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c50f3c720e54fcd9162b9f70a6ccb84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c50f3c720e54fcd9162b9f70a6ccb84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c50f3c720e54fcd9162b9f70a6ccb84.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RM_8tFl4zze8-TJalrJeLXOalMM=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.759164+00 2025-12-09 10:15:12.759168+00 11573 0003-A19#LWQ15 SPMX-20240815306753 \N \N \N 1 \N [{"file_id": "fc2dff1f-cfaf-4dcb-ac2d-6689bce3d261", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "673d9101cb794057a375937185da1e03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "673d9101cb794057a375937185da1e03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "673d9101cb794057a375937185da1e03.jpg", "file_size": 17443, "is_delete": false, "file_type": 1, "original_file_name": "0003-A19#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673d9101cb794057a375937185da1e03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673d9101cb794057a375937185da1e03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673d9101cb794057a375937185da1e03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/673d9101cb794057a375937185da1e03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/673d9101cb794057a375937185da1e03.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQSVvpFtfP4s-Fj8RqpOru5Db2Q=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.761004+00 2025-12-09 10:15:12.76101+00 11574 LJ9982FW#酒红L VS-D3 SPMX-20240815306760 \N \N \N 1 \N [{"file_id": "b7a9920e-00ad-44c1-b319-8692f74f3029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472271d67a5e4c9dba559a9596fdc407.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472271d67a5e4c9dba559a9596fdc407.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472271d67a5e4c9dba559a9596fdc407.jpg", "file_size": 14934, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#酒红L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472271d67a5e4c9dba559a9596fdc407.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472271d67a5e4c9dba559a9596fdc407.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472271d67a5e4c9dba559a9596fdc407.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472271d67a5e4c9dba559a9596fdc407.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472271d67a5e4c9dba559a9596fdc407.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCTVPzkke3AvOd0Ug9gwpjckWuQ=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.763089+00 2025-12-09 10:15:12.763094+00 11575 0003-A20#LWQ15 SPMX-20240815306765 \N \N \N 1 \N [{"file_id": "53b9eb9b-3fb9-4826-b608-54e4371c6da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "707ae286d8ee4c40af38e4ccbeea2d64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "707ae286d8ee4c40af38e4ccbeea2d64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "707ae286d8ee4c40af38e4ccbeea2d64.jpg", "file_size": 22207, "is_delete": false, "file_type": 1, "original_file_name": "0003-A20#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707ae286d8ee4c40af38e4ccbeea2d64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707ae286d8ee4c40af38e4ccbeea2d64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707ae286d8ee4c40af38e4ccbeea2d64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/707ae286d8ee4c40af38e4ccbeea2d64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/707ae286d8ee4c40af38e4ccbeea2d64.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-SVn9ksEy9HM2baoIOxKQh0jDk=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.765141+00 2025-12-09 10:15:12.765146+00 11576 JTSS284FW#VS-D3 SPMX-20240815306759 \N \N \N 1 \N [{"file_id": "94801e37-829f-4269-b198-3cadada8d064", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c90e771ff7f24f15ab37f26dde64b1ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c90e771ff7f24f15ab37f26dde64b1ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c90e771ff7f24f15ab37f26dde64b1ec.jpg", "file_size": 9176, "is_delete": false, "file_type": 1, "original_file_name": "JTSS284FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90e771ff7f24f15ab37f26dde64b1ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90e771ff7f24f15ab37f26dde64b1ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90e771ff7f24f15ab37f26dde64b1ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c90e771ff7f24f15ab37f26dde64b1ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c90e771ff7f24f15ab37f26dde64b1ec.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzojiJKRvOL9sUxVfU2uKlPCgk4=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.767198+00 2025-12-09 10:15:12.767202+00 11577 HT090FW#VS-D3 SPMX-20240815306766 \N \N \N 1 \N [{"file_id": "61bdc408-4d92-4c10-a9a4-2d151a79c1c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16226f894e3f4257bc7f4a6632db878f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16226f894e3f4257bc7f4a6632db878f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16226f894e3f4257bc7f4a6632db878f.jpg", "file_size": 16924, "is_delete": false, "file_type": 1, "original_file_name": "HT090FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16226f894e3f4257bc7f4a6632db878f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16226f894e3f4257bc7f4a6632db878f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16226f894e3f4257bc7f4a6632db878f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16226f894e3f4257bc7f4a6632db878f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16226f894e3f4257bc7f4a6632db878f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hGBKs9GHxWl1xUVTGmxCxehEPBE=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.769005+00 2025-12-09 10:15:12.769009+00 11578 1107FWE#宝蓝下摆 SPMX-20240815306767 \N \N \N 1 \N [{"file_id": "114994b8-d997-472b-b96d-d4aa9a5e72db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0f82b88fa844289becb065c12578494.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0f82b88fa844289becb065c12578494.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0f82b88fa844289becb065c12578494.jpg", "file_size": 17282, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#宝蓝下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f82b88fa844289becb065c12578494.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f82b88fa844289becb065c12578494.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f82b88fa844289becb065c12578494.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0f82b88fa844289becb065c12578494.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0f82b88fa844289becb065c12578494.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGMCIQ7zSXGR_nRYmTdkLQ_TpXE=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.771014+00 2025-12-09 10:15:12.771019+00 11579 DL31023#改批布水红 SPMX-20240815306763 \N \N \N 1 \N [{"file_id": "895238ed-b6f7-4cfb-8c5b-022c6cce0fbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1a82cd38e6f409ab570d64832324874.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1a82cd38e6f409ab570d64832324874.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1a82cd38e6f409ab570d64832324874.jpg", "file_size": 21172, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a82cd38e6f409ab570d64832324874.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a82cd38e6f409ab570d64832324874.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a82cd38e6f409ab570d64832324874.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1a82cd38e6f409ab570d64832324874.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1a82cd38e6f409ab570d64832324874.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2JE_g6KV5wdurj6HjtjhqO_p20=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.77305+00 2025-12-09 10:15:12.773054+00 11580 1107FWE#宝蓝上衣 SPMX-20240815306757 \N \N \N 1 \N [{"file_id": "e31c2e07-955c-425f-b6a3-47dcbf85065e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5771eab11e44320960a47b0aebd6f19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5771eab11e44320960a47b0aebd6f19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5771eab11e44320960a47b0aebd6f19.jpg", "file_size": 25754, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#宝蓝上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5771eab11e44320960a47b0aebd6f19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5771eab11e44320960a47b0aebd6f19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5771eab11e44320960a47b0aebd6f19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5771eab11e44320960a47b0aebd6f19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5771eab11e44320960a47b0aebd6f19.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GEQbTUuhjIoayF-AN3fN5pOWSHo=", "createTime": "2024-08-15 14:52:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.775109+00 2025-12-09 10:15:12.775115+00 11581 23-2118#A11-4XL SPMX-20240815306764 \N \N \N 1 \N [{"file_id": "e09de295-8071-46c1-a202-5365afef0adc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4a8bc51bb3745dcbf1d8d6c77b37176.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4a8bc51bb3745dcbf1d8d6c77b37176.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4a8bc51bb3745dcbf1d8d6c77b37176.jpg", "file_size": 13923, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a8bc51bb3745dcbf1d8d6c77b37176.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a8bc51bb3745dcbf1d8d6c77b37176.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a8bc51bb3745dcbf1d8d6c77b37176.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4a8bc51bb3745dcbf1d8d6c77b37176.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4a8bc51bb3745dcbf1d8d6c77b37176.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l7XiDu6avO_widf5w9yxMgJL5MM=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.777169+00 2025-12-09 10:15:12.777174+00 11582 LZ1291#背心款5号色 SPMX-20240815306769 \N \N \N 1 \N [{"file_id": "796218ee-ccd3-4eb7-8f8a-e90b16bdcf2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c85d3e9f37424322a6042a9fb9f88f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c85d3e9f37424322a6042a9fb9f88f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c85d3e9f37424322a6042a9fb9f88f07.jpg", "file_size": 17606, "is_delete": false, "file_type": 1, "original_file_name": "LZ1291#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85d3e9f37424322a6042a9fb9f88f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85d3e9f37424322a6042a9fb9f88f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85d3e9f37424322a6042a9fb9f88f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c85d3e9f37424322a6042a9fb9f88f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c85d3e9f37424322a6042a9fb9f88f07.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7wrLzG6at79OIR4vkDDY-RXkiQ=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.779254+00 2025-12-09 10:15:12.77926+00 11583 C432#绿色 SPMX-20240815306761 \N \N \N 1 \N [{"file_id": "a69d6c15-afe3-49f0-8579-23866dbcbf27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f9ee5ed459e4851ab26043b2efc8f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f9ee5ed459e4851ab26043b2efc8f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f9ee5ed459e4851ab26043b2efc8f7d.jpg", "file_size": 71010, "is_delete": false, "file_type": 1, "original_file_name": "C432#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9ee5ed459e4851ab26043b2efc8f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9ee5ed459e4851ab26043b2efc8f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f9ee5ed459e4851ab26043b2efc8f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f9ee5ed459e4851ab26043b2efc8f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f9ee5ed459e4851ab26043b2efc8f7d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DN9egBkflRyktCiLr86UPzMd20A=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.781278+00 2025-12-09 10:15:12.781283+00 11584 FJ001FWE#蓝VS-D3 SPMX-20240815306762 \N \N \N 1 \N [{"file_id": "3f53f276-1be7-44a0-93a5-66de5f990a65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4313692f38e84d668e387c93bef8d843.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4313692f38e84d668e387c93bef8d843.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4313692f38e84d668e387c93bef8d843.jpg", "file_size": 8862, "is_delete": false, "file_type": 1, "original_file_name": "FJ001FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4313692f38e84d668e387c93bef8d843.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4313692f38e84d668e387c93bef8d843.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4313692f38e84d668e387c93bef8d843.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4313692f38e84d668e387c93bef8d843.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4313692f38e84d668e387c93bef8d843.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5WDCukM5TWVuLUc7hMYOiP4dMA=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.783089+00 2025-12-09 10:15:12.783094+00 11585 LJ9982FW#酒红M VS-D3 SPMX-20240815306770 \N \N \N 1 \N [{"file_id": "09abddbc-f65d-429f-8a75-698feb0e7d3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52dd6488771b43f987c74efbe35ffa70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52dd6488771b43f987c74efbe35ffa70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52dd6488771b43f987c74efbe35ffa70.jpg", "file_size": 14842, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#酒红M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd6488771b43f987c74efbe35ffa70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd6488771b43f987c74efbe35ffa70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52dd6488771b43f987c74efbe35ffa70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52dd6488771b43f987c74efbe35ffa70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52dd6488771b43f987c74efbe35ffa70.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oz6YfipmfKPd3omqNezBrsNTIw4=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.785021+00 2025-12-09 10:15:12.785026+00 11586 8138FWF#长袖裤子 SPMX-20240815306758 \N \N \N 1 \N [{"file_id": "ae52ee2f-f16b-4295-8317-ecb6f90272d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caa0347ae7264356887720674387161d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caa0347ae7264356887720674387161d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caa0347ae7264356887720674387161d.jpg", "file_size": 12081, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0347ae7264356887720674387161d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0347ae7264356887720674387161d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa0347ae7264356887720674387161d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caa0347ae7264356887720674387161d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caa0347ae7264356887720674387161d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkjgroXYEmOTzvM3pdQw06PHNA0=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.787044+00 2025-12-09 10:15:12.787049+00 11587 8138FWF#黑色长袖上衣 SPMX-20240815306768 \N \N \N 1 \N [{"file_id": "725611dc-c816-4afb-b6cf-6d5f1342b904", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6778aa33719e4e45b80a3f3d5d13aa3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6778aa33719e4e45b80a3f3d5d13aa3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6778aa33719e4e45b80a3f3d5d13aa3d.jpg", "file_size": 17631, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#黑色长袖上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6778aa33719e4e45b80a3f3d5d13aa3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6778aa33719e4e45b80a3f3d5d13aa3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6778aa33719e4e45b80a3f3d5d13aa3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6778aa33719e4e45b80a3f3d5d13aa3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6778aa33719e4e45b80a3f3d5d13aa3d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KvEtMbchoYwsNNncqrvMhrxPmaI=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.789099+00 2025-12-09 10:15:12.789103+00 11588 JTSS285FW#VS-D3 SPMX-20240815306771 \N \N \N 1 \N [{"file_id": "08a899db-737c-4421-922f-a9876cfa3902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "555d95b6781e433f9bbcf1d17f276c7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "555d95b6781e433f9bbcf1d17f276c7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "555d95b6781e433f9bbcf1d17f276c7e.jpg", "file_size": 11855, "is_delete": false, "file_type": 1, "original_file_name": "JTSS285FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555d95b6781e433f9bbcf1d17f276c7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555d95b6781e433f9bbcf1d17f276c7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555d95b6781e433f9bbcf1d17f276c7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/555d95b6781e433f9bbcf1d17f276c7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/555d95b6781e433f9bbcf1d17f276c7e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3Z7AVX8QKDYdUq5cfaPqhPZm94=", "createTime": "2024-08-15 14:52:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.791129+00 2025-12-09 10:15:12.791134+00 11589 C432#黑色 SPMX-20240815306772 \N \N \N 1 \N [{"file_id": "ea23aeb4-d661-47ce-9419-42baa046acfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0e485c4de88491f9861cbd693c001ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0e485c4de88491f9861cbd693c001ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0e485c4de88491f9861cbd693c001ad.jpg", "file_size": 65794, "is_delete": false, "file_type": 1, "original_file_name": "C432#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e485c4de88491f9861cbd693c001ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e485c4de88491f9861cbd693c001ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0e485c4de88491f9861cbd693c001ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0e485c4de88491f9861cbd693c001ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0e485c4de88491f9861cbd693c001ad.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjiIT-FIahwR7WZH_NrU7L2Or6k=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.793161+00 2025-12-09 10:15:12.793165+00 11590 DL31023#改批布浅粉 SPMX-20240815306774 \N \N \N 1 \N [{"file_id": "05b54e6c-668f-453e-b80b-9df442894f65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52e7b1592b024eea8ef523512845d872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52e7b1592b024eea8ef523512845d872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52e7b1592b024eea8ef523512845d872.jpg", "file_size": 21212, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e7b1592b024eea8ef523512845d872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e7b1592b024eea8ef523512845d872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e7b1592b024eea8ef523512845d872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52e7b1592b024eea8ef523512845d872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52e7b1592b024eea8ef523512845d872.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGiRuimM8gFZ9Rf3XLDZlhP0Ppk=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.795205+00 2025-12-09 10:15:12.795211+00 11591 DL31023#改批布深水红 SPMX-20240815306785 \N \N \N 1 \N [{"file_id": "dc152bb8-6eac-4fb0-822a-0fc267a5a158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e43d6b49dce48499d16c4359c9831cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e43d6b49dce48499d16c4359c9831cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e43d6b49dce48499d16c4359c9831cb.jpg", "file_size": 72575, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e43d6b49dce48499d16c4359c9831cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e43d6b49dce48499d16c4359c9831cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e43d6b49dce48499d16c4359c9831cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e43d6b49dce48499d16c4359c9831cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e43d6b49dce48499d16c4359c9831cb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJm0UrEn0RW3j_OihtcdoazOe4k=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.79724+00 2025-12-09 10:15:12.797245+00 11592 HT091FW#VS-D3 SPMX-20240815306776 \N \N \N 1 \N [{"file_id": "5bb55271-3a96-4532-9b54-1c591e7fa586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "198fd2f11f8344c39baad5a6c5132d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "198fd2f11f8344c39baad5a6c5132d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "198fd2f11f8344c39baad5a6c5132d3a.jpg", "file_size": 15670, "is_delete": false, "file_type": 1, "original_file_name": "HT091FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198fd2f11f8344c39baad5a6c5132d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198fd2f11f8344c39baad5a6c5132d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198fd2f11f8344c39baad5a6c5132d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/198fd2f11f8344c39baad5a6c5132d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/198fd2f11f8344c39baad5a6c5132d3a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRnHwKqXVwwB7rbaf7VOOZHwQvQ=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.799327+00 2025-12-09 10:15:12.799333+00 11593 FJ002# SPMX-20240815306783 \N \N \N 1 \N [{"file_id": "b8c40d1f-4eda-47ef-836f-e62198630600", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "543019458f1c4e7ca4ff447afd2fe639.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "543019458f1c4e7ca4ff447afd2fe639.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "543019458f1c4e7ca4ff447afd2fe639.jpg", "file_size": 18795, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/543019458f1c4e7ca4ff447afd2fe639.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/543019458f1c4e7ca4ff447afd2fe639.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/543019458f1c4e7ca4ff447afd2fe639.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/543019458f1c4e7ca4ff447afd2fe639.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/543019458f1c4e7ca4ff447afd2fe639.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hF9J1BwXdWVsC372NWXvjxetxnE=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.80143+00 2025-12-09 10:15:12.801435+00 11594 FJ001FWE#黑VS-D3 SPMX-20240815306773 \N \N \N 1 \N [{"file_id": "48cf2434-50ee-4a0b-a588-e63c904a0fe8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c1246fd528c434bac2f768dd4a5f410.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c1246fd528c434bac2f768dd4a5f410.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c1246fd528c434bac2f768dd4a5f410.jpg", "file_size": 9222, "is_delete": false, "file_type": 1, "original_file_name": "FJ001FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1246fd528c434bac2f768dd4a5f410.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1246fd528c434bac2f768dd4a5f410.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c1246fd528c434bac2f768dd4a5f410.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c1246fd528c434bac2f768dd4a5f410.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c1246fd528c434bac2f768dd4a5f410.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IafssY_btB6HSw9cKvXl2uSFJZk=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.803495+00 2025-12-09 10:15:12.803501+00 11595 LZ1292#背心款1号色 SPMX-20240815306779 \N \N \N 1 \N [{"file_id": "a7eafcaf-62c2-4214-b773-be2cd520fedd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36099d51717d476a9832584b35dfa1da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36099d51717d476a9832584b35dfa1da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36099d51717d476a9832584b35dfa1da.jpg", "file_size": 20124, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36099d51717d476a9832584b35dfa1da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36099d51717d476a9832584b35dfa1da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36099d51717d476a9832584b35dfa1da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36099d51717d476a9832584b35dfa1da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36099d51717d476a9832584b35dfa1da.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxoLCo6sAOBFa0jtIKJ0M4w6wuY=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.805324+00 2025-12-09 10:15:12.805328+00 11596 0003-A21#LWQ15 SPMX-20240815306777 \N \N \N 1 \N [{"file_id": "18dc0977-dbc6-48a4-be09-43a5c9992fbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9950055e2da4115883243e1a7eec75d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9950055e2da4115883243e1a7eec75d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9950055e2da4115883243e1a7eec75d.jpg", "file_size": 18004, "is_delete": false, "file_type": 1, "original_file_name": "0003-A21#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9950055e2da4115883243e1a7eec75d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9950055e2da4115883243e1a7eec75d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9950055e2da4115883243e1a7eec75d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9950055e2da4115883243e1a7eec75d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9950055e2da4115883243e1a7eec75d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7212YjPwpxXM1kkvvJ4FEmheOM=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.807332+00 2025-12-09 10:15:12.807337+00 11597 JTSS286FW#VS-D3 SPMX-20240815306782 \N \N \N 1 \N [{"file_id": "3376ef70-2318-4f6c-9df4-fe404e06f953", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3471733b4f5b4a35a6c6d58d276dbd2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3471733b4f5b4a35a6c6d58d276dbd2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3471733b4f5b4a35a6c6d58d276dbd2d.jpg", "file_size": 11134, "is_delete": false, "file_type": 1, "original_file_name": "JTSS286FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3471733b4f5b4a35a6c6d58d276dbd2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3471733b4f5b4a35a6c6d58d276dbd2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3471733b4f5b4a35a6c6d58d276dbd2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3471733b4f5b4a35a6c6d58d276dbd2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3471733b4f5b4a35a6c6d58d276dbd2d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHjVk6tLx3S2FG_t2PzS6uLO5q0=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.809375+00 2025-12-09 10:15:12.80938+00 11598 C439#大白 SPMX-20240815306784 \N \N \N 1 \N [{"file_id": "f5787e37-94b3-4291-9726-f02c5638f12e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5c4c249341c4cb494738722fdbeb984.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5c4c249341c4cb494738722fdbeb984.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5c4c249341c4cb494738722fdbeb984.jpg", "file_size": 50297, "is_delete": false, "file_type": 1, "original_file_name": "C439#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c4c249341c4cb494738722fdbeb984.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c4c249341c4cb494738722fdbeb984.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5c4c249341c4cb494738722fdbeb984.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5c4c249341c4cb494738722fdbeb984.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5c4c249341c4cb494738722fdbeb984.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xAxnZriP4sPIruJBoaw6vSgGm8=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.811363+00 2025-12-09 10:15:12.811368+00 11599 1107FWE#宝蓝小花腰带 SPMX-20240815306778 \N \N \N 1 \N [{"file_id": "1dcbae49-2701-48e5-8c62-8607b1f77f8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59e0b8cce0744883a064e6296214cefb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59e0b8cce0744883a064e6296214cefb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59e0b8cce0744883a064e6296214cefb.jpg", "file_size": 33892, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#宝蓝小花腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e0b8cce0744883a064e6296214cefb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e0b8cce0744883a064e6296214cefb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e0b8cce0744883a064e6296214cefb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59e0b8cce0744883a064e6296214cefb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59e0b8cce0744883a064e6296214cefb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ft1GTRqBUCQ3hjmYjVcPyeKblRA=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.813368+00 2025-12-09 10:15:12.813373+00 11600 8138FWF#黑色长袖匹布 SPMX-20240815306780 \N \N \N 1 \N [{"file_id": "dca6928f-1f01-40f3-ad72-1ceab4b9d672", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e76534c96b148d0a23c4494898cc884.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e76534c96b148d0a23c4494898cc884.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e76534c96b148d0a23c4494898cc884.jpg", "file_size": 10196, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#黑色长袖匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e76534c96b148d0a23c4494898cc884.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e76534c96b148d0a23c4494898cc884.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e76534c96b148d0a23c4494898cc884.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e76534c96b148d0a23c4494898cc884.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e76534c96b148d0a23c4494898cc884.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VmZ5hb0R6urH6zhEPxvlpJSBvYE=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.815386+00 2025-12-09 10:15:12.815391+00 11601 LJ9982FW#酒红S VS-D3 SPMX-20240815306781 \N \N \N 1 \N [{"file_id": "37302062-afdf-444f-95e2-33726375bf4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a79109a2b91c41b2b9bcef3b33332568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a79109a2b91c41b2b9bcef3b33332568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a79109a2b91c41b2b9bcef3b33332568.jpg", "file_size": 14300, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#酒红S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79109a2b91c41b2b9bcef3b33332568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79109a2b91c41b2b9bcef3b33332568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a79109a2b91c41b2b9bcef3b33332568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a79109a2b91c41b2b9bcef3b33332568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a79109a2b91c41b2b9bcef3b33332568.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lS6McbSzu5Xbv7-Cqf-E5ziRV0=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.817434+00 2025-12-09 10:15:12.81744+00 11602 23-2118#A11-领子3XL SPMX-20240815306775 \N \N \N 1 \N [{"file_id": "882f48f9-7b8c-41c5-8e59-2fa4b16de758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eb614c56b1542198473aa3de4bcfa5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eb614c56b1542198473aa3de4bcfa5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eb614c56b1542198473aa3de4bcfa5e.jpg", "file_size": 12898, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb614c56b1542198473aa3de4bcfa5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb614c56b1542198473aa3de4bcfa5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb614c56b1542198473aa3de4bcfa5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eb614c56b1542198473aa3de4bcfa5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eb614c56b1542198473aa3de4bcfa5e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R723FN53kOGkn6CfRqk-gen6O74=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.819479+00 2025-12-09 10:15:12.819483+00 11603 23-2118#A11-领子4XL SPMX-20240815306786 \N \N \N 1 \N [{"file_id": "0a4de4f0-3cd1-4722-8b56-fc7262ad83c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ca77476b80d45939108c64c8e0660cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ca77476b80d45939108c64c8e0660cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ca77476b80d45939108c64c8e0660cd.jpg", "file_size": 12983, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca77476b80d45939108c64c8e0660cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca77476b80d45939108c64c8e0660cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca77476b80d45939108c64c8e0660cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ca77476b80d45939108c64c8e0660cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ca77476b80d45939108c64c8e0660cd.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TksgVj31RBKozYtpxQaFZNoXMvk=", "createTime": "2024-08-15 14:52:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.821525+00 2025-12-09 10:15:12.82153+00 11604 0003-A23#LWQ15 SPMX-20240815306798 \N \N \N 1 \N [{"file_id": "62c789ac-87bf-40bb-9ae0-50f7ffe1a4cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6af3921ed05442f49a551e9f5a01a58c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6af3921ed05442f49a551e9f5a01a58c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6af3921ed05442f49a551e9f5a01a58c.jpg", "file_size": 12907, "is_delete": false, "file_type": 1, "original_file_name": "0003-A23#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af3921ed05442f49a551e9f5a01a58c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af3921ed05442f49a551e9f5a01a58c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6af3921ed05442f49a551e9f5a01a58c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6af3921ed05442f49a551e9f5a01a58c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6af3921ed05442f49a551e9f5a01a58c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4mGAmYXVIDxJZTxMlCNS-CC9vQ=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.823536+00 2025-12-09 10:15:12.823541+00 11605 LJ9982FW#酒红XL VS-D3 SPMX-20240815306791 \N \N \N 1 \N [{"file_id": "fdb6b3d0-e5db-4c04-bfe5-f71487e53249", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg", "file_size": 13864, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#酒红XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141fbe800c7a4b6ca5bf4e9acd9ea02e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AS1HgH12VWS8Yl-vob7N-Ci_Kbg=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.825553+00 2025-12-09 10:15:12.825558+00 11606 0003-A22#LWQ15 SPMX-20240815306788 \N \N \N 1 \N [{"file_id": "e6ed647c-b9c6-422a-bd1e-f1faafa358b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "367e24341322497db52166ddda3a384c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "367e24341322497db52166ddda3a384c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "367e24341322497db52166ddda3a384c.jpg", "file_size": 15775, "is_delete": false, "file_type": 1, "original_file_name": "0003-A22#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/367e24341322497db52166ddda3a384c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/367e24341322497db52166ddda3a384c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/367e24341322497db52166ddda3a384c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/367e24341322497db52166ddda3a384c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/367e24341322497db52166ddda3a384c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3u4hNqDZ3P-E3Q-gQ74XoBbahQ=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.827574+00 2025-12-09 10:15:12.827578+00 11607 1107FWE#灰色上衣 SPMX-20240815306792 \N \N \N 1 \N [{"file_id": "68f6279a-ec3f-4d18-97e5-dbcde05d71c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a322d0b07f9849f5aeddd31bbb2a3a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a322d0b07f9849f5aeddd31bbb2a3a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a322d0b07f9849f5aeddd31bbb2a3a43.jpg", "file_size": 19401, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#灰色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a322d0b07f9849f5aeddd31bbb2a3a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a322d0b07f9849f5aeddd31bbb2a3a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a322d0b07f9849f5aeddd31bbb2a3a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a322d0b07f9849f5aeddd31bbb2a3a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a322d0b07f9849f5aeddd31bbb2a3a43.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VpKUs8BbuNiLP8bVO4tQc5Iq304=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.829596+00 2025-12-09 10:15:12.829601+00 11608 DL31023#改批布玫红色 SPMX-20240815306796 \N \N \N 1 \N [{"file_id": "977a5b22-d2fb-473c-b996-b1d48ddc9b98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f2064e07a7e431eafa3721388e8fd0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f2064e07a7e431eafa3721388e8fd0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f2064e07a7e431eafa3721388e8fd0e.jpg", "file_size": 22915, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2064e07a7e431eafa3721388e8fd0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2064e07a7e431eafa3721388e8fd0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2064e07a7e431eafa3721388e8fd0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f2064e07a7e431eafa3721388e8fd0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f2064e07a7e431eafa3721388e8fd0e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EivAV5guVbhGY7qVPYOuW6sQPuc=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.831628+00 2025-12-09 10:15:12.831633+00 11609 JTSS287FW#VS-D3 SPMX-20240815306793 \N \N \N 1 \N [{"file_id": "514d08d6-b330-4948-b914-633892da4be4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "940fc99238a94658b2a097efd6ed31c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "940fc99238a94658b2a097efd6ed31c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "940fc99238a94658b2a097efd6ed31c4.jpg", "file_size": 11389, "is_delete": false, "file_type": 1, "original_file_name": "JTSS287FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940fc99238a94658b2a097efd6ed31c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940fc99238a94658b2a097efd6ed31c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940fc99238a94658b2a097efd6ed31c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/940fc99238a94658b2a097efd6ed31c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/940fc99238a94658b2a097efd6ed31c4.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QArTZNYAoVZ1iFILjGdAkIpQ4a4=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.833651+00 2025-12-09 10:15:12.833656+00 11610 HT092FW#VS-D3 SPMX-20240815306787 \N \N \N 1 \N [{"file_id": "1f37c530-ee11-4c27-97cd-3b2f66675e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86b40661b5fd451e98d074b0d9cbca87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86b40661b5fd451e98d074b0d9cbca87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86b40661b5fd451e98d074b0d9cbca87.jpg", "file_size": 11890, "is_delete": false, "file_type": 1, "original_file_name": "HT092FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b40661b5fd451e98d074b0d9cbca87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b40661b5fd451e98d074b0d9cbca87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86b40661b5fd451e98d074b0d9cbca87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86b40661b5fd451e98d074b0d9cbca87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86b40661b5fd451e98d074b0d9cbca87.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SvfhZ7xERHmnVbtmhJY99hatsMc=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.835647+00 2025-12-09 10:15:12.835651+00 11611 FJ002#2XL SPMX-20240815306795 \N \N \N 1 \N [{"file_id": "dc70fa49-fafe-4ea5-993f-361c7fa565cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b13a283ef38427ba1c0509a2a55ee65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b13a283ef38427ba1c0509a2a55ee65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b13a283ef38427ba1c0509a2a55ee65.jpg", "file_size": 23142, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b13a283ef38427ba1c0509a2a55ee65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b13a283ef38427ba1c0509a2a55ee65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b13a283ef38427ba1c0509a2a55ee65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b13a283ef38427ba1c0509a2a55ee65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b13a283ef38427ba1c0509a2a55ee65.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCwdWIaUQ3dxgJnzSWx-jhfC9T0=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.83764+00 2025-12-09 10:15:12.837644+00 11612 HT093FW#粉VS-D3 SPMX-20240815306800 \N \N \N 1 \N [{"file_id": "738a94a4-0e89-42a2-8bae-4ddb8b0b6b71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f58f5de62f864d84b51c9047f00dd794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f58f5de62f864d84b51c9047f00dd794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f58f5de62f864d84b51c9047f00dd794.jpg", "file_size": 20762, "is_delete": false, "file_type": 1, "original_file_name": "HT093FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58f5de62f864d84b51c9047f00dd794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58f5de62f864d84b51c9047f00dd794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58f5de62f864d84b51c9047f00dd794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f58f5de62f864d84b51c9047f00dd794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f58f5de62f864d84b51c9047f00dd794.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2rWP3jdKWOUI52gfNgtypq7qRE=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.839661+00 2025-12-09 10:15:12.839666+00 11613 C439#杏色 SPMX-20240815306794 \N \N \N 1 \N [{"file_id": "3f424592-a7d4-411d-898f-a93611265329", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c68507914f4c4bd582e71afc48403ca1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c68507914f4c4bd582e71afc48403ca1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c68507914f4c4bd582e71afc48403ca1.jpg", "file_size": 48044, "is_delete": false, "file_type": 1, "original_file_name": "C439#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c68507914f4c4bd582e71afc48403ca1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c68507914f4c4bd582e71afc48403ca1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c68507914f4c4bd582e71afc48403ca1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c68507914f4c4bd582e71afc48403ca1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c68507914f4c4bd582e71afc48403ca1.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPmPQTloDrP5N63Ywjf7DtyHeN8=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.841687+00 2025-12-09 10:15:12.841691+00 11614 LZ1292#背心款2号色 SPMX-20240815306789 \N \N \N 1 \N [{"file_id": "c5ebbdc0-9f27-422d-88ad-df73b0cc5b5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4112fcfc78524156a42756db7b608a11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4112fcfc78524156a42756db7b608a11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4112fcfc78524156a42756db7b608a11.jpg", "file_size": 20185, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4112fcfc78524156a42756db7b608a11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4112fcfc78524156a42756db7b608a11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4112fcfc78524156a42756db7b608a11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4112fcfc78524156a42756db7b608a11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4112fcfc78524156a42756db7b608a11.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6tK5nF5gIz16Q72rbjeJUa_QOY=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.843719+00 2025-12-09 10:15:12.843723+00 11615 23-2118#A12-3XL SPMX-20240815306797 \N \N \N 1 \N [{"file_id": "ac5485ba-e45e-467d-b078-3cb3d43891ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e6bdabff404cfe8aa4fba8d9508b10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e6bdabff404cfe8aa4fba8d9508b10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e6bdabff404cfe8aa4fba8d9508b10.jpg", "file_size": 16238, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e6bdabff404cfe8aa4fba8d9508b10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e6bdabff404cfe8aa4fba8d9508b10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e6bdabff404cfe8aa4fba8d9508b10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e6bdabff404cfe8aa4fba8d9508b10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e6bdabff404cfe8aa4fba8d9508b10.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3PvJfaXz6zspQv_WiD4jO_BhTBE=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.845767+00 2025-12-09 10:15:12.845772+00 11616 8138FWF#黑色长袖子 SPMX-20240815306790 \N \N \N 1 \N [{"file_id": "9151d4dd-090b-4d9c-a309-7e58194bc7f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2efe69d12dd4f64aed8f522981453f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2efe69d12dd4f64aed8f522981453f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2efe69d12dd4f64aed8f522981453f7.jpg", "file_size": 21503, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#黑色长袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2efe69d12dd4f64aed8f522981453f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2efe69d12dd4f64aed8f522981453f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2efe69d12dd4f64aed8f522981453f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2efe69d12dd4f64aed8f522981453f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2efe69d12dd4f64aed8f522981453f7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbcTlcMYEgbZz-_xJrItlybt93I=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.847767+00 2025-12-09 10:15:12.847772+00 11617 LZ1292#背心款3号色 SPMX-20240815306799 \N \N \N 1 \N [{"file_id": "048a8f75-1c3a-482f-b99f-320a65b202ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dca6051272ec429f95c94cf5a93f2cc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dca6051272ec429f95c94cf5a93f2cc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dca6051272ec429f95c94cf5a93f2cc7.jpg", "file_size": 19780, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6051272ec429f95c94cf5a93f2cc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6051272ec429f95c94cf5a93f2cc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca6051272ec429f95c94cf5a93f2cc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dca6051272ec429f95c94cf5a93f2cc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dca6051272ec429f95c94cf5a93f2cc7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaCDB1u9TpjNRhvUenAHIgxFCsI=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.850066+00 2025-12-09 10:15:12.85007+00 11618 HT093FW#绿VS-D3 SPMX-20240815306808 \N \N \N 1 \N [{"file_id": "c098c847-4d48-4eb7-a1f6-84ff718f3e8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62e4495490ee4ec5aa5ffdcbfc373229.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62e4495490ee4ec5aa5ffdcbfc373229.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62e4495490ee4ec5aa5ffdcbfc373229.jpg", "file_size": 19400, "is_delete": false, "file_type": 1, "original_file_name": "HT093FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4495490ee4ec5aa5ffdcbfc373229.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4495490ee4ec5aa5ffdcbfc373229.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4495490ee4ec5aa5ffdcbfc373229.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62e4495490ee4ec5aa5ffdcbfc373229.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62e4495490ee4ec5aa5ffdcbfc373229.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnCt6Z8FubG31J_gtNj7cbZY9CM=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.852182+00 2025-12-09 10:15:12.852187+00 11619 FJ002#3XL SPMX-20240815306804 \N \N \N 1 \N [{"file_id": "ab9488d2-f68a-49a4-8da7-cee9f1a4dc5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed6578b9c35141a8ab27b49927083a83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed6578b9c35141a8ab27b49927083a83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed6578b9c35141a8ab27b49927083a83.jpg", "file_size": 22265, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6578b9c35141a8ab27b49927083a83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6578b9c35141a8ab27b49927083a83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6578b9c35141a8ab27b49927083a83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed6578b9c35141a8ab27b49927083a83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed6578b9c35141a8ab27b49927083a83.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iw5dEBwFFxhvd-BnTPAXvBtAdyA=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.854256+00 2025-12-09 10:15:12.854261+00 11620 DL31023#改批布蓝绿色 SPMX-20240815306806 \N \N \N 1 \N [{"file_id": "a9de1cca-404f-420e-aa99-de44d5436b47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf65f363d069440f9a8daab9cb631857.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf65f363d069440f9a8daab9cb631857.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf65f363d069440f9a8daab9cb631857.jpg", "file_size": 22533, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf65f363d069440f9a8daab9cb631857.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf65f363d069440f9a8daab9cb631857.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf65f363d069440f9a8daab9cb631857.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf65f363d069440f9a8daab9cb631857.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf65f363d069440f9a8daab9cb631857.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r5ViFDoL_2OU2nfRpNVaoyNrEgU=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.856322+00 2025-12-09 10:15:12.856327+00 11621 JTSS288FW#VS-D3 SPMX-20240815306805 \N \N \N 1 \N [{"file_id": "3b3c59a7-7b4c-4b1d-9960-e8100ca6a340", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "476a954722314a39b6c91a2f8629761c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "476a954722314a39b6c91a2f8629761c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "476a954722314a39b6c91a2f8629761c.jpg", "file_size": 23369, "is_delete": false, "file_type": 1, "original_file_name": "JTSS288FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476a954722314a39b6c91a2f8629761c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476a954722314a39b6c91a2f8629761c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476a954722314a39b6c91a2f8629761c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/476a954722314a39b6c91a2f8629761c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/476a954722314a39b6c91a2f8629761c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vwbx8NF-mpT4FYOEVn0of2G7vpY=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.858405+00 2025-12-09 10:15:12.858409+00 11622 C439#橙色 SPMX-20240815306807 \N \N \N 1 \N [{"file_id": "aa9f84d1-30f2-480b-8274-66efaba85046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34eb774bcadb40da8ee98db509c343d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34eb774bcadb40da8ee98db509c343d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34eb774bcadb40da8ee98db509c343d6.jpg", "file_size": 58461, "is_delete": false, "file_type": 1, "original_file_name": "C439#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34eb774bcadb40da8ee98db509c343d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34eb774bcadb40da8ee98db509c343d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34eb774bcadb40da8ee98db509c343d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34eb774bcadb40da8ee98db509c343d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34eb774bcadb40da8ee98db509c343d6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzAfX1jKaUSVYxRKRtnXNKp_RDg=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.860572+00 2025-12-09 10:15:12.860577+00 11623 1107FWE#灰色下摆 SPMX-20240815306803 \N \N \N 1 \N [{"file_id": "82887e64-c614-4391-9d1b-4a360c61b9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e02caba41377414ab231b34292947779.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e02caba41377414ab231b34292947779.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e02caba41377414ab231b34292947779.jpg", "file_size": 14106, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#灰色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02caba41377414ab231b34292947779.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02caba41377414ab231b34292947779.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02caba41377414ab231b34292947779.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e02caba41377414ab231b34292947779.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e02caba41377414ab231b34292947779.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxNtGl6dEWdp37OkrGp8XHOSWH0=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.862898+00 2025-12-09 10:15:12.862903+00 11624 LJ9982FW#黄2XL VS-D3 SPMX-20240815306802 \N \N \N 1 \N [{"file_id": "3a6df8d2-1a04-445e-974e-a67c6aac9030", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c318acb9becb496ebd62be8c54ae7e4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c318acb9becb496ebd62be8c54ae7e4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c318acb9becb496ebd62be8c54ae7e4d.jpg", "file_size": 13709, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黄2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c318acb9becb496ebd62be8c54ae7e4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c318acb9becb496ebd62be8c54ae7e4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c318acb9becb496ebd62be8c54ae7e4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c318acb9becb496ebd62be8c54ae7e4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c318acb9becb496ebd62be8c54ae7e4d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZjJK74b-V-BskKsHFULtBkeZfA=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.86515+00 2025-12-09 10:15:12.865155+00 11625 8138FWF#黑色长袖裤子 SPMX-20240815306801 \N \N \N 1 \N [{"file_id": "d9607b54-69c2-4dfb-82ba-a5167817acd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca56e65c6a2f4c80b605bd7cc5539063.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca56e65c6a2f4c80b605bd7cc5539063.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca56e65c6a2f4c80b605bd7cc5539063.jpg", "file_size": 13581, "is_delete": false, "file_type": 1, "original_file_name": "8138FWF#黑色长袖裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca56e65c6a2f4c80b605bd7cc5539063.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca56e65c6a2f4c80b605bd7cc5539063.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca56e65c6a2f4c80b605bd7cc5539063.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca56e65c6a2f4c80b605bd7cc5539063.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca56e65c6a2f4c80b605bd7cc5539063.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2M7MUaPupBfEH0gfCQ1lfIDCMs=", "createTime": "2024-08-15 14:52:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.866973+00 2025-12-09 10:15:12.866978+00 11626 23-2118#A12-4XL SPMX-20240815306809 \N \N \N 1 \N [{"file_id": "9a746310-165d-4ab7-896f-988602f23bed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9733ec99370f4bf28b480a75fb39ff66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9733ec99370f4bf28b480a75fb39ff66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9733ec99370f4bf28b480a75fb39ff66.jpg", "file_size": 14421, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9733ec99370f4bf28b480a75fb39ff66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9733ec99370f4bf28b480a75fb39ff66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9733ec99370f4bf28b480a75fb39ff66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9733ec99370f4bf28b480a75fb39ff66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9733ec99370f4bf28b480a75fb39ff66.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJdOhUiwzRPwNis3ZZW-LdYhwes=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.869057+00 2025-12-09 10:15:12.869062+00 11627 LZ1292#背心款4号色 SPMX-20240815306810 \N \N \N 1 \N [{"file_id": "874cb1a9-a00d-4318-aece-ea1e05cd7a5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c35d3891fc4a09a35607f904b78e8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c35d3891fc4a09a35607f904b78e8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c35d3891fc4a09a35607f904b78e8f.jpg", "file_size": 20019, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c35d3891fc4a09a35607f904b78e8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c35d3891fc4a09a35607f904b78e8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c35d3891fc4a09a35607f904b78e8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c35d3891fc4a09a35607f904b78e8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c35d3891fc4a09a35607f904b78e8f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTgBia6D55nSdvJlEM-PKgJ03vE=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.870851+00 2025-12-09 10:15:12.870856+00 11628 0003-A24#黑色版本LWQ15 SPMX-20240815306811 \N \N \N 1 \N [{"file_id": "13936907-cd99-4ed5-a837-f758d2d160f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc116c28589447aba65a5e9b6e4df28f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc116c28589447aba65a5e9b6e4df28f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc116c28589447aba65a5e9b6e4df28f.jpg", "file_size": 10609, "is_delete": false, "file_type": 1, "original_file_name": "0003-A24#黑色版本LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc116c28589447aba65a5e9b6e4df28f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc116c28589447aba65a5e9b6e4df28f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc116c28589447aba65a5e9b6e4df28f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc116c28589447aba65a5e9b6e4df28f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc116c28589447aba65a5e9b6e4df28f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ILHqUxwd4FzYl8qZif0sBGXDKe0=", "createTime": "2024-08-15 14:52:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.872879+00 2025-12-09 10:15:12.872884+00 11629 C439#玫红 SPMX-20240815306820 \N \N \N 1 \N [{"file_id": "e5916b9a-ff4e-4eb9-9673-69136ed7b126", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b65140961ce744089d3c1bb100c16a49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b65140961ce744089d3c1bb100c16a49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b65140961ce744089d3c1bb100c16a49.jpg", "file_size": 53110, "is_delete": false, "file_type": 1, "original_file_name": "C439#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65140961ce744089d3c1bb100c16a49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65140961ce744089d3c1bb100c16a49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65140961ce744089d3c1bb100c16a49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b65140961ce744089d3c1bb100c16a49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b65140961ce744089d3c1bb100c16a49.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E8CTHiu5wbklF_Ak0_gPFlLjZHY=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.874845+00 2025-12-09 10:15:12.87485+00 11630 LZ1292#背心款号色 SPMX-20240815306823 \N \N \N 1 \N [{"file_id": "92750aff-fe50-4845-9388-93cb7f5a7bb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f79ff6f62814a9298f319751ee865a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f79ff6f62814a9298f319751ee865a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f79ff6f62814a9298f319751ee865a7.jpg", "file_size": 20019, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79ff6f62814a9298f319751ee865a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79ff6f62814a9298f319751ee865a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f79ff6f62814a9298f319751ee865a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f79ff6f62814a9298f319751ee865a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f79ff6f62814a9298f319751ee865a7.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTnza25kXE9V4xinh7GJIRM9syQ=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.876907+00 2025-12-09 10:15:12.876911+00 11631 1107FWE#灰色小花 SPMX-20240815306814 \N \N \N 1 \N [{"file_id": "51ec17f1-9a95-485c-a9cd-0c3da8ec7938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faffe11b41364271b638e12e57df531e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faffe11b41364271b638e12e57df531e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faffe11b41364271b638e12e57df531e.jpg", "file_size": 29837, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#灰色小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faffe11b41364271b638e12e57df531e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faffe11b41364271b638e12e57df531e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faffe11b41364271b638e12e57df531e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faffe11b41364271b638e12e57df531e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faffe11b41364271b638e12e57df531e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9EBTXATRy0pU1R_OruiyjpjXRM=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.87895+00 2025-12-09 10:15:12.878956+00 11632 DL31023#改批布黄色 SPMX-20240815306819 \N \N \N 1 \N [{"file_id": "8a450557-eb7f-46e2-88dd-76275b2d162d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c9fafed36444d588ef38859a594cdcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c9fafed36444d588ef38859a594cdcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c9fafed36444d588ef38859a594cdcb.jpg", "file_size": 21313, "is_delete": false, "file_type": 1, "original_file_name": "DL31023#改批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fafed36444d588ef38859a594cdcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fafed36444d588ef38859a594cdcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fafed36444d588ef38859a594cdcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c9fafed36444d588ef38859a594cdcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c9fafed36444d588ef38859a594cdcb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2105fgHChPC9HqwFLJyCPlPqxks=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.880965+00 2025-12-09 10:15:12.88097+00 11633 FJ002#D SPMX-20240815306821 \N \N \N 1 \N [{"file_id": "d9e9bddd-f6fa-49c6-96f7-231f2a0ed3f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b48e73e70ca4f7a81d817036bcc7e54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b48e73e70ca4f7a81d817036bcc7e54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b48e73e70ca4f7a81d817036bcc7e54.jpg", "file_size": 15615, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b48e73e70ca4f7a81d817036bcc7e54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b48e73e70ca4f7a81d817036bcc7e54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b48e73e70ca4f7a81d817036bcc7e54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b48e73e70ca4f7a81d817036bcc7e54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b48e73e70ca4f7a81d817036bcc7e54.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3yVu7LzUqImVDCO9Ii7u0tK5Ro8=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.882991+00 2025-12-09 10:15:12.882995+00 11634 8139#短裤套装上衣 SPMX-20240815306812 \N \N \N 1 \N [{"file_id": "1f2736a4-6e42-4dba-ac9b-3d7727c915ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d294842c91d34f8797d203375a32b7f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d294842c91d34f8797d203375a32b7f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d294842c91d34f8797d203375a32b7f1.jpg", "file_size": 22521, "is_delete": false, "file_type": 1, "original_file_name": "8139#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d294842c91d34f8797d203375a32b7f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d294842c91d34f8797d203375a32b7f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d294842c91d34f8797d203375a32b7f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d294842c91d34f8797d203375a32b7f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d294842c91d34f8797d203375a32b7f1.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUBxXGDg57GA3VOvVawX0zGyidg=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.885024+00 2025-12-09 10:15:12.885028+00 11635 LJ9982FW#黄L VS-D3 SPMX-20240815306818 \N \N \N 1 \N [{"file_id": "b47227f3-4331-4ee9-81e7-8ccaf55faab1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e9329fd5d4242b5befa9513d1a89f7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e9329fd5d4242b5befa9513d1a89f7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e9329fd5d4242b5befa9513d1a89f7f.jpg", "file_size": 15179, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黄L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9329fd5d4242b5befa9513d1a89f7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9329fd5d4242b5befa9513d1a89f7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9329fd5d4242b5befa9513d1a89f7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e9329fd5d4242b5befa9513d1a89f7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e9329fd5d4242b5befa9513d1a89f7f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wIjn9-MnVhGyuKFdqm8yiuNBPFY=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.887058+00 2025-12-09 10:15:12.887063+00 11636 HT093FW#黑VS-D3 SPMX-20240815306815 \N \N \N 1 \N [{"file_id": "d91cd809-1565-4b79-8697-fe9cfbd999c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c524d65f81844545a1e12569366218b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c524d65f81844545a1e12569366218b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c524d65f81844545a1e12569366218b6.jpg", "file_size": 29939, "is_delete": false, "file_type": 1, "original_file_name": "HT093FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c524d65f81844545a1e12569366218b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c524d65f81844545a1e12569366218b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c524d65f81844545a1e12569366218b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c524d65f81844545a1e12569366218b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c524d65f81844545a1e12569366218b6.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:diFrAiTpXbNmphhuVohRrgn2ock=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.889046+00 2025-12-09 10:15:12.889051+00 11637 JTSS289FW#VS-D3 SPMX-20240815306817 \N \N \N 1 \N [{"file_id": "f697d1a4-83f8-4b53-9a73-75db02b6974b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddcc5fd745914b65a8c02d2f2f3ada92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddcc5fd745914b65a8c02d2f2f3ada92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddcc5fd745914b65a8c02d2f2f3ada92.jpg", "file_size": 16029, "is_delete": false, "file_type": 1, "original_file_name": "JTSS289FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcc5fd745914b65a8c02d2f2f3ada92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcc5fd745914b65a8c02d2f2f3ada92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcc5fd745914b65a8c02d2f2f3ada92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddcc5fd745914b65a8c02d2f2f3ada92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddcc5fd745914b65a8c02d2f2f3ada92.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HdaWtZXp9XJkZIMfI5IFkkU7rBU=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.891094+00 2025-12-09 10:15:12.891099+00 11638 LZ1292#背心款5号色 SPMX-20240815306813 \N \N \N 1 \N [{"file_id": "a7b3e560-0aa2-4609-8d86-da0d70176e4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9c570f719de49409a6facea15b7d98b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9c570f719de49409a6facea15b7d98b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9c570f719de49409a6facea15b7d98b.jpg", "file_size": 19855, "is_delete": false, "file_type": 1, "original_file_name": "LZ1292#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c570f719de49409a6facea15b7d98b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c570f719de49409a6facea15b7d98b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c570f719de49409a6facea15b7d98b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9c570f719de49409a6facea15b7d98b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9c570f719de49409a6facea15b7d98b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGFECDAoy9Y0pRVfkwlwgvoxUAg=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.893136+00 2025-12-09 10:15:12.893141+00 11639 23-2118#A12-领子3XL SPMX-20240815306816 \N \N \N 1 \N [{"file_id": "5faefb0c-b57e-4d55-8e9a-0ab9d0cfe5c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb920a3139e0457d803cd9f4b0670330.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb920a3139e0457d803cd9f4b0670330.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb920a3139e0457d803cd9f4b0670330.jpg", "file_size": 11512, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb920a3139e0457d803cd9f4b0670330.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb920a3139e0457d803cd9f4b0670330.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb920a3139e0457d803cd9f4b0670330.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb920a3139e0457d803cd9f4b0670330.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb920a3139e0457d803cd9f4b0670330.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnsWmVXotfq5HrFg7RwJXJdYvJQ=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.895149+00 2025-12-09 10:15:12.895154+00 11640 0003-A25#LWQ15 SPMX-20240815306822 \N \N \N 1 \N [{"file_id": "7a51d5d0-7e6b-4efc-81aa-61f5560b968c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f1ce9d5e36943ebb08c6efb726c917c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f1ce9d5e36943ebb08c6efb726c917c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f1ce9d5e36943ebb08c6efb726c917c.jpg", "file_size": 19493, "is_delete": false, "file_type": 1, "original_file_name": "0003-A25#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1ce9d5e36943ebb08c6efb726c917c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1ce9d5e36943ebb08c6efb726c917c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f1ce9d5e36943ebb08c6efb726c917c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f1ce9d5e36943ebb08c6efb726c917c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f1ce9d5e36943ebb08c6efb726c917c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZ7A0fmeJ8KvzhbJh-pDg-Kxgt0=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.89719+00 2025-12-09 10:15:12.897195+00 11641 FJ002#L SPMX-20240815306831 \N \N \N 1 \N [{"file_id": "c4c4c350-4965-43c7-8dee-7967949853b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fc85233fd2341628faad553bd6c0dae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fc85233fd2341628faad553bd6c0dae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fc85233fd2341628faad553bd6c0dae.jpg", "file_size": 25440, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc85233fd2341628faad553bd6c0dae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc85233fd2341628faad553bd6c0dae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc85233fd2341628faad553bd6c0dae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fc85233fd2341628faad553bd6c0dae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fc85233fd2341628faad553bd6c0dae.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgqSkZZJfgY-yVvlngzhBCsO4V0=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.899187+00 2025-12-09 10:15:12.899192+00 11642 C439#绿色 SPMX-20240815306830 \N \N \N 1 \N [{"file_id": "549b8920-add6-4ca4-b35e-63d6b8db7698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5db9982d01ba424f92a1537a1364dc64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5db9982d01ba424f92a1537a1364dc64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5db9982d01ba424f92a1537a1364dc64.jpg", "file_size": 50203, "is_delete": false, "file_type": 1, "original_file_name": "C439#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db9982d01ba424f92a1537a1364dc64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db9982d01ba424f92a1537a1364dc64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db9982d01ba424f92a1537a1364dc64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5db9982d01ba424f92a1537a1364dc64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5db9982d01ba424f92a1537a1364dc64.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rz0NxDdvSWgk3L8BcdBSqAhecUw=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.901242+00 2025-12-09 10:15:12.901247+00 11643 DL31023-2#匹布墨绿色 SPMX-20240815306832 \N \N \N 1 \N [{"file_id": "54c80caa-38a4-401d-b01d-315316678f05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3954b7a323db494c8159eeb996bc9dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3954b7a323db494c8159eeb996bc9dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3954b7a323db494c8159eeb996bc9dfb.jpg", "file_size": 22704, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3954b7a323db494c8159eeb996bc9dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3954b7a323db494c8159eeb996bc9dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3954b7a323db494c8159eeb996bc9dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3954b7a323db494c8159eeb996bc9dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3954b7a323db494c8159eeb996bc9dfb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYnex2_gNo3ss1cXUKJQtra_YwQ=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.903037+00 2025-12-09 10:15:12.903042+00 11644 0003-A26#LWQ15 SPMX-20240815306833 \N \N \N 1 \N [{"file_id": "d5de7fea-4eda-42ee-9ed0-37d225b883cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c22233848ea84ae897ddced518f419c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c22233848ea84ae897ddced518f419c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c22233848ea84ae897ddced518f419c3.jpg", "file_size": 27542, "is_delete": false, "file_type": 1, "original_file_name": "0003-A26#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22233848ea84ae897ddced518f419c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22233848ea84ae897ddced518f419c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22233848ea84ae897ddced518f419c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c22233848ea84ae897ddced518f419c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c22233848ea84ae897ddced518f419c3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EyfxkfdR5601ifYkkmioyHcJonE=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.905063+00 2025-12-09 10:15:12.905068+00 11645 HT095FW#VS-D3实色 SPMX-20240815306837 \N \N \N 1 \N [{"file_id": "f4331379-7707-4159-84d6-4370f5477bdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc6b39c2a99c431987624425e5a4289c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc6b39c2a99c431987624425e5a4289c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc6b39c2a99c431987624425e5a4289c.jpg", "file_size": 18329, "is_delete": false, "file_type": 1, "original_file_name": "HT095FW#VS-D3实色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6b39c2a99c431987624425e5a4289c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6b39c2a99c431987624425e5a4289c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6b39c2a99c431987624425e5a4289c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc6b39c2a99c431987624425e5a4289c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc6b39c2a99c431987624425e5a4289c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUNIR3HZpy4DfNefyQFswwRTciM=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.907083+00 2025-12-09 10:15:12.907088+00 11646 1107FWE#红色上衣改 SPMX-20240815306825 \N \N \N 1 \N [{"file_id": "b168c66c-3df8-4054-b08f-cc4682319341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b11fbe4bc73447f7a0c64551e79b65fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b11fbe4bc73447f7a0c64551e79b65fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b11fbe4bc73447f7a0c64551e79b65fc.jpg", "file_size": 24317, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#红色上衣改.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fbe4bc73447f7a0c64551e79b65fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fbe4bc73447f7a0c64551e79b65fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11fbe4bc73447f7a0c64551e79b65fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b11fbe4bc73447f7a0c64551e79b65fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b11fbe4bc73447f7a0c64551e79b65fc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zs5tvW3qr2agDvO6oXXCznK7WC8=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.909127+00 2025-12-09 10:15:12.909132+00 11647 1107FWE#红色下摆改 SPMX-20240815306835 \N \N \N 1 \N [{"file_id": "3c565ab1-3f3d-40c8-a6ad-dc1f91f815da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee1390dfbbc47348148888cbbc3a252.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee1390dfbbc47348148888cbbc3a252.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee1390dfbbc47348148888cbbc3a252.jpg", "file_size": 17231, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#红色下摆改.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1390dfbbc47348148888cbbc3a252.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1390dfbbc47348148888cbbc3a252.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1390dfbbc47348148888cbbc3a252.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee1390dfbbc47348148888cbbc3a252.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee1390dfbbc47348148888cbbc3a252.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzsZsQci6FX7JFER5qAi0V7V304=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.911168+00 2025-12-09 10:15:12.911172+00 11648 23-2118#A12-领子4XL SPMX-20240815306827 \N \N \N 1 \N [{"file_id": "3477d5bb-e23b-418e-8835-debec6f60bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93252544bdb24471b2436381a864b357.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93252544bdb24471b2436381a864b357.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93252544bdb24471b2436381a864b357.jpg", "file_size": 11949, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93252544bdb24471b2436381a864b357.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93252544bdb24471b2436381a864b357.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93252544bdb24471b2436381a864b357.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93252544bdb24471b2436381a864b357.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93252544bdb24471b2436381a864b357.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4mcizBd0o_3LwMX611YO99mE9uc=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.913213+00 2025-12-09 10:15:12.913219+00 11649 8139#短裤套装裤子 SPMX-20240815306834 \N \N \N 1 \N [{"file_id": "f9406ad6-236b-42d7-97fc-79832f287443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da00aa4597b14043b5035644e9c31bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da00aa4597b14043b5035644e9c31bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da00aa4597b14043b5035644e9c31bab.jpg", "file_size": 22217, "is_delete": false, "file_type": 1, "original_file_name": "8139#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da00aa4597b14043b5035644e9c31bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da00aa4597b14043b5035644e9c31bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da00aa4597b14043b5035644e9c31bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da00aa4597b14043b5035644e9c31bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da00aa4597b14043b5035644e9c31bab.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBuo8FmYs-WHPoaIO9uWvsWTN70=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.915235+00 2025-12-09 10:15:12.91524+00 11650 8139#短裤套装匹布 SPMX-20240815306824 \N \N \N 1 \N [{"file_id": "74e4ec67-bb12-4e3c-8733-52730fdcab66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39faa04f7b9d4e9382bf2bf7d04e5209.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39faa04f7b9d4e9382bf2bf7d04e5209.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39faa04f7b9d4e9382bf2bf7d04e5209.jpg", "file_size": 25708, "is_delete": false, "file_type": 1, "original_file_name": "8139#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39faa04f7b9d4e9382bf2bf7d04e5209.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39faa04f7b9d4e9382bf2bf7d04e5209.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39faa04f7b9d4e9382bf2bf7d04e5209.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39faa04f7b9d4e9382bf2bf7d04e5209.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39faa04f7b9d4e9382bf2bf7d04e5209.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-i8l4wBnYdM9wGVW_-v84F7XbQ=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.917284+00 2025-12-09 10:15:12.917289+00 11651 LJ9982FW#黄M VS-D3 SPMX-20240815306829 \N \N \N 1 \N [{"file_id": "ad80b5d8-30a0-4b7c-9ddf-ed1428bde56b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47b08a055a6e494693368e36e68adabe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47b08a055a6e494693368e36e68adabe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47b08a055a6e494693368e36e68adabe.jpg", "file_size": 14490, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黄M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b08a055a6e494693368e36e68adabe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b08a055a6e494693368e36e68adabe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b08a055a6e494693368e36e68adabe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47b08a055a6e494693368e36e68adabe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47b08a055a6e494693368e36e68adabe.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEKztg1_MZKcNXD121sFlDDQ0rY=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.919316+00 2025-12-09 10:15:12.919321+00 11652 LZ1293#背心款1号色 SPMX-20240815306836 \N \N \N 1 \N [{"file_id": "de2c34ab-d9ef-48b1-b4ec-1fb3246bc971", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "756b8509356244f88f493f3fd389e169.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "756b8509356244f88f493f3fd389e169.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "756b8509356244f88f493f3fd389e169.jpg", "file_size": 18065, "is_delete": false, "file_type": 1, "original_file_name": "LZ1293#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756b8509356244f88f493f3fd389e169.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756b8509356244f88f493f3fd389e169.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756b8509356244f88f493f3fd389e169.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/756b8509356244f88f493f3fd389e169.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/756b8509356244f88f493f3fd389e169.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-aj8rwhBLI6LUQrjQVkRDRxPuvw=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.921346+00 2025-12-09 10:15:12.921351+00 11653 JTSS290FW#VS-D3 SPMX-20240815306828 \N \N \N 1 \N [{"file_id": "69f5c49c-4183-4409-8364-58f11b3a5673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b90bf63b86e5410d97aaa62cd39ca469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b90bf63b86e5410d97aaa62cd39ca469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b90bf63b86e5410d97aaa62cd39ca469.jpg", "file_size": 12782, "is_delete": false, "file_type": 1, "original_file_name": "JTSS290FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90bf63b86e5410d97aaa62cd39ca469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90bf63b86e5410d97aaa62cd39ca469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b90bf63b86e5410d97aaa62cd39ca469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b90bf63b86e5410d97aaa62cd39ca469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b90bf63b86e5410d97aaa62cd39ca469.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9UlMKegy2ozpux4QNsXDOHPGWg=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.923347+00 2025-12-09 10:15:12.923352+00 11654 23-2118#A13-3XL SPMX-20240815306838 \N \N \N 1 \N [{"file_id": "96c9be2e-5ec2-41f2-9279-b05c1f688160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed46782c3d3f4fb9964829efaed3c503.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed46782c3d3f4fb9964829efaed3c503.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed46782c3d3f4fb9964829efaed3c503.jpg", "file_size": 17184, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed46782c3d3f4fb9964829efaed3c503.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed46782c3d3f4fb9964829efaed3c503.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed46782c3d3f4fb9964829efaed3c503.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed46782c3d3f4fb9964829efaed3c503.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed46782c3d3f4fb9964829efaed3c503.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zsf3tyouo15RdHwDRhJ6Sp_uTKU=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.925378+00 2025-12-09 10:15:12.925383+00 11655 LJ9982FW#黄S VS-D3 SPMX-20240815306839 \N \N \N 1 \N [{"file_id": "3dc86714-5bb5-40b8-bf3a-4ffe36a18eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5317de1ed58847f38ffac41884d57d8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5317de1ed58847f38ffac41884d57d8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5317de1ed58847f38ffac41884d57d8e.jpg", "file_size": 14443, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黄S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5317de1ed58847f38ffac41884d57d8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5317de1ed58847f38ffac41884d57d8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5317de1ed58847f38ffac41884d57d8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5317de1ed58847f38ffac41884d57d8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5317de1ed58847f38ffac41884d57d8e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8Ouo7I2c2rRYpwGD2zSvPP2eMM=", "createTime": "2024-08-15 14:52:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.92734+00 2025-12-09 10:15:12.927345+00 11656 HT094FW#VS-D3 SPMX-20240815306826 \N \N \N 1 \N [{"file_id": "1ff35032-9dd7-49d3-aa99-8bf200e49566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d25262018d9445c97afbc0963d30a05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d25262018d9445c97afbc0963d30a05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d25262018d9445c97afbc0963d30a05.jpg", "file_size": 14581, "is_delete": false, "file_type": 1, "original_file_name": "HT094FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d25262018d9445c97afbc0963d30a05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d25262018d9445c97afbc0963d30a05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d25262018d9445c97afbc0963d30a05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d25262018d9445c97afbc0963d30a05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d25262018d9445c97afbc0963d30a05.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKH6LKUq82eDuNur0AU5b7iW7jU=", "createTime": "2024-08-15 14:52:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.929237+00 2025-12-09 10:15:12.929241+00 11657 JTSS291FW#VS-D3 SPMX-20240815306840 \N \N \N 1 \N [{"file_id": "b717db8a-8980-4358-b6a2-0b14cf4b27af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7ddbdffca9486b9130dafaa4c020f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7ddbdffca9486b9130dafaa4c020f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7ddbdffca9486b9130dafaa4c020f3.jpg", "file_size": 12226, "is_delete": false, "file_type": 1, "original_file_name": "JTSS291FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7ddbdffca9486b9130dafaa4c020f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7ddbdffca9486b9130dafaa4c020f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7ddbdffca9486b9130dafaa4c020f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7ddbdffca9486b9130dafaa4c020f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7ddbdffca9486b9130dafaa4c020f3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bb44DIhb3NL1tUeMDv27fA5YscY=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.931265+00 2025-12-09 10:15:12.93127+00 11658 FJ002#M SPMX-20240815306841 \N \N \N 1 \N [{"file_id": "6eae0774-00b0-4892-bf9b-d2f0fe575ca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed784cefa24b4adab49ffdef0bd20082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed784cefa24b4adab49ffdef0bd20082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed784cefa24b4adab49ffdef0bd20082.jpg", "file_size": 25256, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed784cefa24b4adab49ffdef0bd20082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed784cefa24b4adab49ffdef0bd20082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed784cefa24b4adab49ffdef0bd20082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed784cefa24b4adab49ffdef0bd20082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed784cefa24b4adab49ffdef0bd20082.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAggrSXgsqwA4UFAadliCspZOWA=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.933296+00 2025-12-09 10:15:12.933301+00 11659 C439#黑色 SPMX-20240815306842 \N \N \N 1 \N [{"file_id": "aa4655fd-32c9-4393-959f-0e047a3618fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbeb91a8b5f2486bb8849cc93969ae0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbeb91a8b5f2486bb8849cc93969ae0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbeb91a8b5f2486bb8849cc93969ae0a.jpg", "file_size": 53600, "is_delete": false, "file_type": 1, "original_file_name": "C439#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbeb91a8b5f2486bb8849cc93969ae0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbeb91a8b5f2486bb8849cc93969ae0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbeb91a8b5f2486bb8849cc93969ae0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbeb91a8b5f2486bb8849cc93969ae0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbeb91a8b5f2486bb8849cc93969ae0a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q54piEhgOW-MBc5f6p3i_kH8mtM=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.935332+00 2025-12-09 10:15:12.935337+00 11660 DL31023-2#匹布彩兰色 SPMX-20240815306843 \N \N \N 1 \N [{"file_id": "55c06ec3-a15f-48ab-8d35-f39aa9320027", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efa9d612a93a40d097eb668cf2dfbcda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efa9d612a93a40d097eb668cf2dfbcda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efa9d612a93a40d097eb668cf2dfbcda.jpg", "file_size": 22939, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa9d612a93a40d097eb668cf2dfbcda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa9d612a93a40d097eb668cf2dfbcda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efa9d612a93a40d097eb668cf2dfbcda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efa9d612a93a40d097eb668cf2dfbcda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efa9d612a93a40d097eb668cf2dfbcda.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6pMwijOZOT8WcgcL5fPuMFOkNs=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.93734+00 2025-12-09 10:15:12.937345+00 11661 HT096FW#VS-D3绿色 SPMX-20240815306855 \N \N \N 1 \N [{"file_id": "64b9975f-b959-4080-b914-1f1f1e642c18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e58313327f34bb6ab696e16e627f393.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e58313327f34bb6ab696e16e627f393.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e58313327f34bb6ab696e16e627f393.jpg", "file_size": 17647, "is_delete": false, "file_type": 1, "original_file_name": "HT096FW#VS-D3绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e58313327f34bb6ab696e16e627f393.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e58313327f34bb6ab696e16e627f393.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e58313327f34bb6ab696e16e627f393.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e58313327f34bb6ab696e16e627f393.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e58313327f34bb6ab696e16e627f393.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTvZU_gS2pD5Z5DM02nI1CEg4RY=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.939384+00 2025-12-09 10:15:12.93939+00 11662 LZ1293#背心款3号色 SPMX-20240815306856 \N \N \N 1 \N [{"file_id": "d9ae1d79-0406-47dd-a4b5-b7fca1b36561", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0fa4d3cb4d046cf9dde9b494e84d592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0fa4d3cb4d046cf9dde9b494e84d592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0fa4d3cb4d046cf9dde9b494e84d592.jpg", "file_size": 18528, "is_delete": false, "file_type": 1, "original_file_name": "LZ1293#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fa4d3cb4d046cf9dde9b494e84d592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fa4d3cb4d046cf9dde9b494e84d592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0fa4d3cb4d046cf9dde9b494e84d592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0fa4d3cb4d046cf9dde9b494e84d592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0fa4d3cb4d046cf9dde9b494e84d592.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q7JyPY8Q54SNfXtAbmUav3L6ZzI=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.941411+00 2025-12-09 10:15:12.941415+00 11663 LJ9982FW#黄XL VS-D3 SPMX-20240815306848 \N \N \N 1 \N [{"file_id": "d57ce4b2-758b-4a43-86c9-d49c5fa9abcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a915de10b79148daa4cc825850a3ad50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a915de10b79148daa4cc825850a3ad50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a915de10b79148daa4cc825850a3ad50.jpg", "file_size": 13950, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黄XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a915de10b79148daa4cc825850a3ad50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a915de10b79148daa4cc825850a3ad50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a915de10b79148daa4cc825850a3ad50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a915de10b79148daa4cc825850a3ad50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a915de10b79148daa4cc825850a3ad50.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-l0vXStH9cw-dCAbBNah5txE4sg=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.943459+00 2025-12-09 10:15:12.943464+00 11664 0003-A27#LWQ15 SPMX-20240815306844 \N \N \N 1 \N [{"file_id": "12d583ca-8330-4bc6-a04d-42ecad07bef7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f776de6caf8c40edbd97c05f1e401f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f776de6caf8c40edbd97c05f1e401f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f776de6caf8c40edbd97c05f1e401f59.jpg", "file_size": 12247, "is_delete": false, "file_type": 1, "original_file_name": "0003-A27#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776de6caf8c40edbd97c05f1e401f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776de6caf8c40edbd97c05f1e401f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f776de6caf8c40edbd97c05f1e401f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f776de6caf8c40edbd97c05f1e401f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f776de6caf8c40edbd97c05f1e401f59.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bRbXsIeBvknQ_DT3Q3f7tEqlQMY=", "createTime": "2024-08-15 14:52:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.945483+00 2025-12-09 10:15:12.945488+00 11665 LZ1293#背心款2号色 SPMX-20240815306845 \N \N \N 1 \N [{"file_id": "f7751c7d-d473-438e-8417-7be5be7511e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6db28f44ce4f4a51898d62e930bdc47b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6db28f44ce4f4a51898d62e930bdc47b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6db28f44ce4f4a51898d62e930bdc47b.jpg", "file_size": 18627, "is_delete": false, "file_type": 1, "original_file_name": "LZ1293#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db28f44ce4f4a51898d62e930bdc47b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db28f44ce4f4a51898d62e930bdc47b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db28f44ce4f4a51898d62e930bdc47b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6db28f44ce4f4a51898d62e930bdc47b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6db28f44ce4f4a51898d62e930bdc47b.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypGD1C9wrDIkFCDvueIjJmHcf-M=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.947566+00 2025-12-09 10:15:12.947571+00 11666 HT095FW#VS-D3粉色 SPMX-20240815306846 \N \N \N 1 \N [{"file_id": "07ab2364-1af4-4799-8151-6a8830b3ef97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a11ff80509a248e49682e95a753519f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a11ff80509a248e49682e95a753519f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a11ff80509a248e49682e95a753519f1.jpg", "file_size": 16985, "is_delete": false, "file_type": 1, "original_file_name": "HT095FW#VS-D3粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11ff80509a248e49682e95a753519f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11ff80509a248e49682e95a753519f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11ff80509a248e49682e95a753519f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a11ff80509a248e49682e95a753519f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a11ff80509a248e49682e95a753519f1.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIWfOAlgRI1iyHODJGOa5JVT758=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.949586+00 2025-12-09 10:15:12.949591+00 11667 8140#短裤套装上衣 SPMX-20240815306851 \N \N \N 1 \N [{"file_id": "bd6ef996-cf61-4b18-bc43-d0f648656fa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "017f0f7c2ca042e59be9f9d3faff57b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "017f0f7c2ca042e59be9f9d3faff57b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "017f0f7c2ca042e59be9f9d3faff57b8.jpg", "file_size": 21691, "is_delete": false, "file_type": 1, "original_file_name": "8140#短裤套装上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017f0f7c2ca042e59be9f9d3faff57b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017f0f7c2ca042e59be9f9d3faff57b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017f0f7c2ca042e59be9f9d3faff57b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/017f0f7c2ca042e59be9f9d3faff57b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/017f0f7c2ca042e59be9f9d3faff57b8.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9AgzgaSgD5T1Y0sPjRh0GPL6PM=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.951641+00 2025-12-09 10:15:12.951646+00 11668 DL31023-2#匹布枣红色 SPMX-20240815306857 \N \N \N 1 \N [{"file_id": "7cbff295-be95-4ae9-982b-be2b146c1173", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b562899ac8284dd2a68cc1cbcf6c707f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b562899ac8284dd2a68cc1cbcf6c707f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b562899ac8284dd2a68cc1cbcf6c707f.jpg", "file_size": 22541, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b562899ac8284dd2a68cc1cbcf6c707f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b562899ac8284dd2a68cc1cbcf6c707f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b562899ac8284dd2a68cc1cbcf6c707f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b562899ac8284dd2a68cc1cbcf6c707f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b562899ac8284dd2a68cc1cbcf6c707f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRnLnxYxgnJKxuxdVpGH9PrkpmE=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.953671+00 2025-12-09 10:15:12.953676+00 11669 23-2118#A13-领子3XL SPMX-20240815306858 \N \N \N 1 \N [{"file_id": "e044d77f-00ed-41c3-9c8f-ada20dbf00e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba443d9b8bc242cab6d97ebc8d75496a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba443d9b8bc242cab6d97ebc8d75496a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba443d9b8bc242cab6d97ebc8d75496a.jpg", "file_size": 12927, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba443d9b8bc242cab6d97ebc8d75496a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba443d9b8bc242cab6d97ebc8d75496a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba443d9b8bc242cab6d97ebc8d75496a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba443d9b8bc242cab6d97ebc8d75496a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba443d9b8bc242cab6d97ebc8d75496a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HRoZB7V4tqWTXhTFjRDmI0V1AM=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.955464+00 2025-12-09 10:15:12.955469+00 11670 C440#兰色 SPMX-20240815306854 \N \N \N 1 \N [{"file_id": "22e5c1d0-23cc-4963-9f66-739b28a1387c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8a451f9222446e1ae58a4cf6c76cc7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8a451f9222446e1ae58a4cf6c76cc7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8a451f9222446e1ae58a4cf6c76cc7a.jpg", "file_size": 42040, "is_delete": false, "file_type": 1, "original_file_name": "C440#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a451f9222446e1ae58a4cf6c76cc7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a451f9222446e1ae58a4cf6c76cc7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a451f9222446e1ae58a4cf6c76cc7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8a451f9222446e1ae58a4cf6c76cc7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8a451f9222446e1ae58a4cf6c76cc7a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8OfcAx1Ww0ftOwEWEQuIWJaCAZQ=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.957515+00 2025-12-09 10:15:12.95752+00 11671 23-2118#A13-4XL SPMX-20240815306847 \N \N \N 1 \N [{"file_id": "4ecffe47-6e09-4f96-a019-330d8b482fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b834521966f4b35a38bd199953f8e63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b834521966f4b35a38bd199953f8e63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b834521966f4b35a38bd199953f8e63.jpg", "file_size": 15783, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b834521966f4b35a38bd199953f8e63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b834521966f4b35a38bd199953f8e63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b834521966f4b35a38bd199953f8e63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b834521966f4b35a38bd199953f8e63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b834521966f4b35a38bd199953f8e63.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-So_oldEFSvZnupted-XLA58taE=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.959656+00 2025-12-09 10:15:12.95966+00 11672 JTSS292FW#VS-D3 SPMX-20240815306849 \N \N \N 1 \N [{"file_id": "264e0ce9-fb73-4962-8695-155f18769a19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a88781a624f143c8864501aef71002da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a88781a624f143c8864501aef71002da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a88781a624f143c8864501aef71002da.jpg", "file_size": 9545, "is_delete": false, "file_type": 1, "original_file_name": "JTSS292FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88781a624f143c8864501aef71002da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88781a624f143c8864501aef71002da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88781a624f143c8864501aef71002da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a88781a624f143c8864501aef71002da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a88781a624f143c8864501aef71002da.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2u5AyVFXTsAlQ45gdguScaeBDMI=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.961746+00 2025-12-09 10:15:12.96175+00 11673 1107FWE#红色小花腰带改 SPMX-20240815306850 \N \N \N 1 \N [{"file_id": "8f1dab4c-ae80-47bf-98fc-3f03d889b45e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c24d42f0d2a24d82ab1a59e4daf24690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c24d42f0d2a24d82ab1a59e4daf24690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c24d42f0d2a24d82ab1a59e4daf24690.jpg", "file_size": 32979, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#红色小花腰带改.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24d42f0d2a24d82ab1a59e4daf24690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24d42f0d2a24d82ab1a59e4daf24690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24d42f0d2a24d82ab1a59e4daf24690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c24d42f0d2a24d82ab1a59e4daf24690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c24d42f0d2a24d82ab1a59e4daf24690.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEknkhnQBZ9jGr5l8RBLu0RQPi0=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.963532+00 2025-12-09 10:15:12.963537+00 11674 0003-A28#LWQ15 SPMX-20240815306852 \N \N \N 1 \N [{"file_id": "fd906110-14c9-4382-99ae-61238b9a2720", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "309721b55463443ca4f4703a36f6579f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "309721b55463443ca4f4703a36f6579f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "309721b55463443ca4f4703a36f6579f.jpg", "file_size": 17545, "is_delete": false, "file_type": 1, "original_file_name": "0003-A28#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309721b55463443ca4f4703a36f6579f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309721b55463443ca4f4703a36f6579f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309721b55463443ca4f4703a36f6579f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/309721b55463443ca4f4703a36f6579f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/309721b55463443ca4f4703a36f6579f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YX-tx56v0hx9ktI_IqXE7s-sOs=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.965541+00 2025-12-09 10:15:12.965544+00 11675 FJ002#XL SPMX-20240815306853 \N \N \N 1 \N [{"file_id": "287a50a6-1bd5-4039-a65d-5e9f77f0f13f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01aa6bd76ae74d7ebd056c1a66c0ba83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01aa6bd76ae74d7ebd056c1a66c0ba83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01aa6bd76ae74d7ebd056c1a66c0ba83.jpg", "file_size": 24461, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aa6bd76ae74d7ebd056c1a66c0ba83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aa6bd76ae74d7ebd056c1a66c0ba83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01aa6bd76ae74d7ebd056c1a66c0ba83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01aa6bd76ae74d7ebd056c1a66c0ba83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01aa6bd76ae74d7ebd056c1a66c0ba83.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:huNzQnPtAC7CjKegJtDboXtY74E=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.967581+00 2025-12-09 10:15:12.967586+00 11676 LJ9982FW#黑2XL VS-D3 SPMX-20240815306861 \N \N \N 1 \N [{"file_id": "ad15d2c0-017c-48a8-bc26-48baea5edd40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ca1f029bec4f3e83555423df340766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ca1f029bec4f3e83555423df340766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ca1f029bec4f3e83555423df340766.jpg", "file_size": 14357, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黑2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca1f029bec4f3e83555423df340766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca1f029bec4f3e83555423df340766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca1f029bec4f3e83555423df340766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ca1f029bec4f3e83555423df340766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ca1f029bec4f3e83555423df340766.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U88dYBewkWLxE0rHlvnHDxUQm6U=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.969584+00 2025-12-09 10:15:12.969588+00 11677 FJ002#灰色3XL SPMX-20240815306864 \N \N \N 1 \N [{"file_id": "88000908-5c72-4f82-b4a8-5d0055e81a66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e44665a9c9140b282293ba275df11fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e44665a9c9140b282293ba275df11fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e44665a9c9140b282293ba275df11fc.jpg", "file_size": 17204, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#灰色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44665a9c9140b282293ba275df11fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44665a9c9140b282293ba275df11fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e44665a9c9140b282293ba275df11fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e44665a9c9140b282293ba275df11fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e44665a9c9140b282293ba275df11fc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6jYhE2W0Hf6jxtkg98NNCpBz6E=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.971855+00 2025-12-09 10:15:12.971861+00 11678 8140#短裤套装匹布 SPMX-20240815306862 \N \N \N 1 \N [{"file_id": "a63c8c60-9ec9-459b-ad02-5073c0404c60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd6ec1b187634e289ad78d61a05e378d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd6ec1b187634e289ad78d61a05e378d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd6ec1b187634e289ad78d61a05e378d.jpg", "file_size": 19241, "is_delete": false, "file_type": 1, "original_file_name": "8140#短裤套装匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6ec1b187634e289ad78d61a05e378d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6ec1b187634e289ad78d61a05e378d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6ec1b187634e289ad78d61a05e378d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd6ec1b187634e289ad78d61a05e378d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd6ec1b187634e289ad78d61a05e378d.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8Kf7a9Jlx1kLIZUZqkeZ6deZHU=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.974131+00 2025-12-09 10:15:12.974136+00 11679 LZ1293#背心款4号色 SPMX-20240815306866 \N \N \N 1 \N [{"file_id": "d3cd556d-4bea-4ebb-a8d4-0e8a479f6d69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54a8398a8fed4fdf8d074ff59a4266e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54a8398a8fed4fdf8d074ff59a4266e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54a8398a8fed4fdf8d074ff59a4266e3.jpg", "file_size": 17935, "is_delete": false, "file_type": 1, "original_file_name": "LZ1293#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a8398a8fed4fdf8d074ff59a4266e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a8398a8fed4fdf8d074ff59a4266e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a8398a8fed4fdf8d074ff59a4266e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54a8398a8fed4fdf8d074ff59a4266e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54a8398a8fed4fdf8d074ff59a4266e3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WOc7ubtoKwqzmH6yzH-rAY28cc=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.976183+00 2025-12-09 10:15:12.976188+00 11680 JTSS293FW#VS-D3 SPMX-20240815306859 \N \N \N 1 \N [{"file_id": "439d7074-20fe-451d-b999-8feedff289c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6cab53a688451daa7be55192c631cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6cab53a688451daa7be55192c631cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6cab53a688451daa7be55192c631cc.jpg", "file_size": 12746, "is_delete": false, "file_type": 1, "original_file_name": "JTSS293FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6cab53a688451daa7be55192c631cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6cab53a688451daa7be55192c631cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6cab53a688451daa7be55192c631cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6cab53a688451daa7be55192c631cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6cab53a688451daa7be55192c631cc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGMgaNN0HEE521IZbk4RH50CjOI=", "createTime": "2024-08-15 14:52:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.97818+00 2025-12-09 10:15:12.978185+00 11681 HT097FW#VS-D3黑色 SPMX-20240815306865 \N \N \N 1 \N [{"file_id": "0f20341b-9568-412b-b75c-65b7d6c75e2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3490cf1eafad4a3eaa9b70aa85b9ca69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3490cf1eafad4a3eaa9b70aa85b9ca69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3490cf1eafad4a3eaa9b70aa85b9ca69.jpg", "file_size": 24800, "is_delete": false, "file_type": 1, "original_file_name": "HT097FW#VS-D3黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3490cf1eafad4a3eaa9b70aa85b9ca69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3490cf1eafad4a3eaa9b70aa85b9ca69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3490cf1eafad4a3eaa9b70aa85b9ca69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3490cf1eafad4a3eaa9b70aa85b9ca69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3490cf1eafad4a3eaa9b70aa85b9ca69.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZlVRZ4z-KE0f7895oqCcRFKeYN0=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.980182+00 2025-12-09 10:15:12.980187+00 11682 DL31023-2#匹布浅咖色 SPMX-20240815306868 \N \N \N 1 \N [{"file_id": "bd8ff069-e73f-4b21-aaa4-89187146571c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7d896ae390f450fa800ed6567ef7cfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7d896ae390f450fa800ed6567ef7cfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7d896ae390f450fa800ed6567ef7cfb.jpg", "file_size": 22310, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布浅咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d896ae390f450fa800ed6567ef7cfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d896ae390f450fa800ed6567ef7cfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d896ae390f450fa800ed6567ef7cfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7d896ae390f450fa800ed6567ef7cfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7d896ae390f450fa800ed6567ef7cfb.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1DhKllUyTlbkCtKef6K0o6De_k=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.982166+00 2025-12-09 10:15:12.982171+00 11683 JTSS294FW#VS-D3 SPMX-20240815306872 \N \N \N 1 \N [{"file_id": "c45a2bce-f139-4625-88d9-bcc8ed48f4dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472115b254384bd79c9f93a28bf94cbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472115b254384bd79c9f93a28bf94cbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472115b254384bd79c9f93a28bf94cbf.jpg", "file_size": 11118, "is_delete": false, "file_type": 1, "original_file_name": "JTSS294FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472115b254384bd79c9f93a28bf94cbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472115b254384bd79c9f93a28bf94cbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472115b254384bd79c9f93a28bf94cbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472115b254384bd79c9f93a28bf94cbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472115b254384bd79c9f93a28bf94cbf.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fSakQp0379lywlw2Bqluy9k-EQU=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.984172+00 2025-12-09 10:15:12.984177+00 11684 23-2118#A13-领子4XL SPMX-20240815306867 \N \N \N 1 \N [{"file_id": "7662a741-0676-48d3-a9d4-134c595c313b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c7b2dffcd9c4120bb3390b7e96ddc13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c7b2dffcd9c4120bb3390b7e96ddc13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c7b2dffcd9c4120bb3390b7e96ddc13.jpg", "file_size": 13068, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7b2dffcd9c4120bb3390b7e96ddc13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7b2dffcd9c4120bb3390b7e96ddc13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7b2dffcd9c4120bb3390b7e96ddc13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c7b2dffcd9c4120bb3390b7e96ddc13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c7b2dffcd9c4120bb3390b7e96ddc13.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2d7ccRhI0OWv86ixQ2SxGtQMZs=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.986196+00 2025-12-09 10:15:12.986201+00 11685 FJ002#灰色M SPMX-20240815306874 \N \N \N 1 \N [{"file_id": "33343c37-2ad9-4951-912a-1772cae55716", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f20d60f00bfb4f3abda2c4978774277a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f20d60f00bfb4f3abda2c4978774277a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f20d60f00bfb4f3abda2c4978774277a.jpg", "file_size": 18621, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#灰色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20d60f00bfb4f3abda2c4978774277a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20d60f00bfb4f3abda2c4978774277a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20d60f00bfb4f3abda2c4978774277a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f20d60f00bfb4f3abda2c4978774277a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f20d60f00bfb4f3abda2c4978774277a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELZzdiiD7KQuHEuHFd93bzGs7ao=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.988194+00 2025-12-09 10:15:12.988199+00 11686 1107FWE#绿色上衣 SPMX-20240815306860 \N \N \N 1 \N [{"file_id": "f0476976-df28-4096-8f39-63b63ec59fe6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ed099e72e54abcbfa860766edb4e1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ed099e72e54abcbfa860766edb4e1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ed099e72e54abcbfa860766edb4e1f.jpg", "file_size": 24165, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#绿色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ed099e72e54abcbfa860766edb4e1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ed099e72e54abcbfa860766edb4e1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ed099e72e54abcbfa860766edb4e1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ed099e72e54abcbfa860766edb4e1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ed099e72e54abcbfa860766edb4e1f.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyEXDqyJGLt5ZHfuBJJoasu_X74=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.990216+00 2025-12-09 10:15:12.990222+00 11687 LJ9982FW#黑L VS-D3 SPMX-20240815306871 \N \N \N 1 \N [{"file_id": "6ec95bae-5997-4607-8071-72bdc083a7ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dce280161a847a1b3439560babcee4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dce280161a847a1b3439560babcee4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dce280161a847a1b3439560babcee4a.jpg", "file_size": 15665, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黑L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dce280161a847a1b3439560babcee4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dce280161a847a1b3439560babcee4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dce280161a847a1b3439560babcee4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dce280161a847a1b3439560babcee4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dce280161a847a1b3439560babcee4a.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EylADTDZlwkiRuVAURahHRbWUbc=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.992266+00 2025-12-09 10:15:12.992272+00 11688 C440#橙色 SPMX-20240815306869 \N \N \N 1 \N [{"file_id": "e51eeb78-ef39-4680-95ef-bcbbe506d46c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1737d6fe83fd45288670d65c24e66e5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1737d6fe83fd45288670d65c24e66e5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1737d6fe83fd45288670d65c24e66e5e.jpg", "file_size": 42497, "is_delete": false, "file_type": 1, "original_file_name": "C440#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1737d6fe83fd45288670d65c24e66e5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1737d6fe83fd45288670d65c24e66e5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1737d6fe83fd45288670d65c24e66e5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1737d6fe83fd45288670d65c24e66e5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1737d6fe83fd45288670d65c24e66e5e.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:glqDhMkwZhpJGDdZqp2qSVr-xCA=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.994259+00 2025-12-09 10:15:12.994265+00 11689 8140#短裤套装裤子 SPMX-20240815306873 \N \N \N 1 \N [{"file_id": "ad67f262-79d1-4944-ad75-f4972652c3cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9788d8f487754e9c8446fcf35417ee00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9788d8f487754e9c8446fcf35417ee00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9788d8f487754e9c8446fcf35417ee00.jpg", "file_size": 20916, "is_delete": false, "file_type": 1, "original_file_name": "8140#短裤套装裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9788d8f487754e9c8446fcf35417ee00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9788d8f487754e9c8446fcf35417ee00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9788d8f487754e9c8446fcf35417ee00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9788d8f487754e9c8446fcf35417ee00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9788d8f487754e9c8446fcf35417ee00.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7BkOhSzi0L1sH9vd3_g7EKZo9x8=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.99628+00 2025-12-09 10:15:12.996285+00 11690 1107FWE#绿色下摆 SPMX-20240815306870 \N \N \N 1 \N [{"file_id": "1f7b7e8f-ff47-4d27-a153-f7036ecccb6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c53c9d38a66449f970230e3325762dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c53c9d38a66449f970230e3325762dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c53c9d38a66449f970230e3325762dc.jpg", "file_size": 17606, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#绿色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c53c9d38a66449f970230e3325762dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c53c9d38a66449f970230e3325762dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c53c9d38a66449f970230e3325762dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c53c9d38a66449f970230e3325762dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c53c9d38a66449f970230e3325762dc.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dpiKffRrccm9ZiWXCTJb4_NtxY=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:12.99827+00 2025-12-09 10:15:12.998276+00 11691 0003-A29#LWQ15 SPMX-20240815306863 \N \N \N 1 \N [{"file_id": "6a3402b5-f315-47ff-9018-81b2f0dbf9d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d473a9a5ad148398328c1b2eaf8d2f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d473a9a5ad148398328c1b2eaf8d2f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d473a9a5ad148398328c1b2eaf8d2f2.jpg", "file_size": 18937, "is_delete": false, "file_type": 1, "original_file_name": "0003-A29#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d473a9a5ad148398328c1b2eaf8d2f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d473a9a5ad148398328c1b2eaf8d2f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d473a9a5ad148398328c1b2eaf8d2f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d473a9a5ad148398328c1b2eaf8d2f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d473a9a5ad148398328c1b2eaf8d2f2.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GED3fAzOiIolsGjw1XIWwXsP5KM=", "createTime": "2024-08-15 14:52:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.000298+00 2025-12-09 10:15:13.000303+00 11692 0003-A3#原版色 SPMX-20240815306875 \N \N \N 1 \N [{"file_id": "1a06cf10-de1b-48b9-a2a8-62e6987aa480", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c6f7796e8344278d5aa3a53ff8dad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c6f7796e8344278d5aa3a53ff8dad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c6f7796e8344278d5aa3a53ff8dad3.jpg", "file_size": 17580, "is_delete": false, "file_type": 1, "original_file_name": "0003-A3#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c6f7796e8344278d5aa3a53ff8dad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c6f7796e8344278d5aa3a53ff8dad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c6f7796e8344278d5aa3a53ff8dad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c6f7796e8344278d5aa3a53ff8dad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c6f7796e8344278d5aa3a53ff8dad3.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4UsvEbMLUKmzD-lg1LyNMwSV6HM=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.002298+00 2025-12-09 10:15:13.002304+00 11693 HT098FW#VS-D3黄色 SPMX-20240815306876 \N \N \N 1 \N [{"file_id": "154a90de-c67a-4963-a40e-a52d1f3d1a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg", "file_size": 17540, "is_delete": false, "file_type": 1, "original_file_name": "HT098FW#VS-D3黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d65c0e0f2c7b4ca49e1d0b83217fb08c.jpg?e=1765361712&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDkI_kZskl9YEFYGbepI6MB4NBs=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.66999+00 2025-12-09 10:15:13.670001+00 11694 LJ9982FW#黑M VS-D3 SPMX-20240815306881 \N \N \N 1 \N [{"file_id": "1abc3be6-bdeb-4fc7-a08f-9924d1b5f12e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80421281da724be980f3b515ac01961e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80421281da724be980f3b515ac01961e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80421281da724be980f3b515ac01961e.jpg", "file_size": 15317, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黑M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80421281da724be980f3b515ac01961e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80421281da724be980f3b515ac01961e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80421281da724be980f3b515ac01961e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80421281da724be980f3b515ac01961e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80421281da724be980f3b515ac01961e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yg7zqKaL3NE_Vs6yffQwynFxKaw=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.672945+00 2025-12-09 10:15:13.672952+00 11695 JTSS295FW#VS-D3 SPMX-20240815306880 \N \N \N 1 \N [{"file_id": "bb107fca-8500-47ce-bdcc-a2692cf9c254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22ee795abdf242a294ead8e0e58ee090.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22ee795abdf242a294ead8e0e58ee090.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22ee795abdf242a294ead8e0e58ee090.jpg", "file_size": 17333, "is_delete": false, "file_type": 1, "original_file_name": "JTSS295FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ee795abdf242a294ead8e0e58ee090.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ee795abdf242a294ead8e0e58ee090.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22ee795abdf242a294ead8e0e58ee090.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22ee795abdf242a294ead8e0e58ee090.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22ee795abdf242a294ead8e0e58ee090.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2pmYOyEbRKv3kodyM1WSaZbynfE=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.675089+00 2025-12-09 10:15:13.675094+00 11696 FJ002#灰色XL SPMX-20240815306885 \N \N \N 1 \N [{"file_id": "d1495c86-cc2f-464a-b64e-0a741191a043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91f88353e6a1490ca6359d7367780b22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91f88353e6a1490ca6359d7367780b22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91f88353e6a1490ca6359d7367780b22.jpg", "file_size": 18558, "is_delete": false, "file_type": 1, "original_file_name": "FJ002#灰色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91f88353e6a1490ca6359d7367780b22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91f88353e6a1490ca6359d7367780b22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91f88353e6a1490ca6359d7367780b22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91f88353e6a1490ca6359d7367780b22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91f88353e6a1490ca6359d7367780b22.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5L2s9JcIRpD9t7jdUIaSCEdw1bY=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.677255+00 2025-12-09 10:15:13.677263+00 11697 HT099FW#VS-D3 SPMX-20240815306886 \N \N \N 1 \N [{"file_id": "f4731b7f-838b-4f07-9df9-d29deaefb50c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e938abfaa7264d429dbbecabc4c90c37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e938abfaa7264d429dbbecabc4c90c37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e938abfaa7264d429dbbecabc4c90c37.jpg", "file_size": 17414, "is_delete": false, "file_type": 1, "original_file_name": "HT099FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e938abfaa7264d429dbbecabc4c90c37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e938abfaa7264d429dbbecabc4c90c37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e938abfaa7264d429dbbecabc4c90c37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e938abfaa7264d429dbbecabc4c90c37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e938abfaa7264d429dbbecabc4c90c37.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCk_HeiNv_UkLGHFagz7kC_JRJY=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.679328+00 2025-12-09 10:15:13.679332+00 11698 0003-A3#红底蓝花 SPMX-20240815306887 \N \N \N 1 \N [{"file_id": "6cc3ff77-a71b-4ac7-9dcf-7eaeb6c7e397", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d31ce997cc244104a40439dd184a420e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d31ce997cc244104a40439dd184a420e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d31ce997cc244104a40439dd184a420e.jpg", "file_size": 17443, "is_delete": false, "file_type": 1, "original_file_name": "0003-A3#红底蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31ce997cc244104a40439dd184a420e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31ce997cc244104a40439dd184a420e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d31ce997cc244104a40439dd184a420e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d31ce997cc244104a40439dd184a420e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d31ce997cc244104a40439dd184a420e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-Exg3lxeb6hdSk7N3UsyhWrsNM=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.681387+00 2025-12-09 10:15:13.681392+00 11699 1107FWE#绿色小花 SPMX-20240815306879 \N \N \N 1 \N [{"file_id": "d23af6f5-ea3f-42e2-8d88-40cd044d0e9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "274094c8ff154fd084a8b9020dfd1caf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "274094c8ff154fd084a8b9020dfd1caf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "274094c8ff154fd084a8b9020dfd1caf.jpg", "file_size": 32702, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#绿色小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/274094c8ff154fd084a8b9020dfd1caf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/274094c8ff154fd084a8b9020dfd1caf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/274094c8ff154fd084a8b9020dfd1caf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/274094c8ff154fd084a8b9020dfd1caf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/274094c8ff154fd084a8b9020dfd1caf.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1KbabUeeOVO0hfdWtUj79KY1CLM=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.683437+00 2025-12-09 10:15:13.683442+00 11700 8141#橘红 SPMX-20240815306884 \N \N \N 1 \N [{"file_id": "7cf069a9-7f71-4dd9-b824-459f0ff81942", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1891371851e34b81b844a278535631b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1891371851e34b81b844a278535631b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1891371851e34b81b844a278535631b5.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "8141#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1891371851e34b81b844a278535631b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1891371851e34b81b844a278535631b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1891371851e34b81b844a278535631b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1891371851e34b81b844a278535631b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1891371851e34b81b844a278535631b5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NbJlP1n5fRXsTYgikt4ws7hces=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.685263+00 2025-12-09 10:15:13.685268+00 11701 LZ1293#背心款5号色 SPMX-20240815306882 \N \N \N 1 \N [{"file_id": "da6f3811-0b0a-4d4c-a80e-850bf9e41434", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81dec6fbb31c481c95d5e8b4fe24f541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81dec6fbb31c481c95d5e8b4fe24f541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81dec6fbb31c481c95d5e8b4fe24f541.jpg", "file_size": 18322, "is_delete": false, "file_type": 1, "original_file_name": "LZ1293#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81dec6fbb31c481c95d5e8b4fe24f541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81dec6fbb31c481c95d5e8b4fe24f541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81dec6fbb31c481c95d5e8b4fe24f541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81dec6fbb31c481c95d5e8b4fe24f541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81dec6fbb31c481c95d5e8b4fe24f541.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RBef7rqE5ZQUfWuQoevI-HHY50o=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.687298+00 2025-12-09 10:15:13.687303+00 11702 C440#玫红 SPMX-20240815306878 \N \N \N 1 \N [{"file_id": "96886c95-fffd-457d-91e1-b4f51fec5aa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "182743aafce44f6c87cf6591f3905a6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "182743aafce44f6c87cf6591f3905a6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "182743aafce44f6c87cf6591f3905a6a.jpg", "file_size": 41490, "is_delete": false, "file_type": 1, "original_file_name": "C440#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182743aafce44f6c87cf6591f3905a6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182743aafce44f6c87cf6591f3905a6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182743aafce44f6c87cf6591f3905a6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/182743aafce44f6c87cf6591f3905a6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/182743aafce44f6c87cf6591f3905a6a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZSlnmI0NlmtvR3rvJ35XqNpGhQ=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.689337+00 2025-12-09 10:15:13.689341+00 11703 DL31023-2#匹布浅蓝绿 SPMX-20240815306883 \N \N \N 1 \N [{"file_id": "4281eff0-3159-4b63-8df6-fb3ff7fa2fc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a41dac3914714a4d8f9b4889968c7692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a41dac3914714a4d8f9b4889968c7692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a41dac3914714a4d8f9b4889968c7692.jpg", "file_size": 22076, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布浅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41dac3914714a4d8f9b4889968c7692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41dac3914714a4d8f9b4889968c7692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41dac3914714a4d8f9b4889968c7692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a41dac3914714a4d8f9b4889968c7692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a41dac3914714a4d8f9b4889968c7692.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgKGxuP188Ojk_VFoAPKLsDTUP4=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.691606+00 2025-12-09 10:15:13.691611+00 11704 23-2118#A2-3XL SPMX-20240815306877 \N \N \N 1 \N [{"file_id": "7bbd2dd0-9e67-4989-8ca9-00d05884f411", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4af955d5af2943b0a66e342f57c314e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4af955d5af2943b0a66e342f57c314e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4af955d5af2943b0a66e342f57c314e2.jpg", "file_size": 19430, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af955d5af2943b0a66e342f57c314e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af955d5af2943b0a66e342f57c314e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af955d5af2943b0a66e342f57c314e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4af955d5af2943b0a66e342f57c314e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4af955d5af2943b0a66e342f57c314e2.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KuIwS4ja6YgzZgvMIVbpNZjPz5s=", "createTime": "2024-08-15 14:52:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.693414+00 2025-12-09 10:15:13.693419+00 11705 1107FWE#黄色上衣 SPMX-20240815306890 \N \N \N 1 \N [{"file_id": "56a88860-1f3b-4a76-b803-3fd0a5619fe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bcc04b7d4b949388ef50f8b8e74ac4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bcc04b7d4b949388ef50f8b8e74ac4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bcc04b7d4b949388ef50f8b8e74ac4e.jpg", "file_size": 19554, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黄色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc04b7d4b949388ef50f8b8e74ac4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc04b7d4b949388ef50f8b8e74ac4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcc04b7d4b949388ef50f8b8e74ac4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bcc04b7d4b949388ef50f8b8e74ac4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bcc04b7d4b949388ef50f8b8e74ac4e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjTcTRQD_aLUuyhQnvIMlfUgWo8=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.695437+00 2025-12-09 10:15:13.695442+00 11706 DL31023-2#匹布深水红 SPMX-20240815306894 \N \N \N 1 \N [{"file_id": "5daafdc1-231e-4dc1-bdf8-312ee1ce6abc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5be111dc4ae4fa8a92715034c7bdccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5be111dc4ae4fa8a92715034c7bdccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5be111dc4ae4fa8a92715034c7bdccf.jpg", "file_size": 22003, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5be111dc4ae4fa8a92715034c7bdccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5be111dc4ae4fa8a92715034c7bdccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5be111dc4ae4fa8a92715034c7bdccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5be111dc4ae4fa8a92715034c7bdccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5be111dc4ae4fa8a92715034c7bdccf.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFMHSKRmKmKiXPyrLcAMlD3DCps=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.697465+00 2025-12-09 10:15:13.69747+00 11707 0003-A30#LWQ15 SPMX-20240815306897 \N \N \N 1 \N [{"file_id": "41619160-0079-467e-a459-396c81a2b913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32b7141fc4314ca1a9a564871857a4a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32b7141fc4314ca1a9a564871857a4a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32b7141fc4314ca1a9a564871857a4a4.jpg", "file_size": 14725, "is_delete": false, "file_type": 1, "original_file_name": "0003-A30#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b7141fc4314ca1a9a564871857a4a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b7141fc4314ca1a9a564871857a4a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b7141fc4314ca1a9a564871857a4a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32b7141fc4314ca1a9a564871857a4a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32b7141fc4314ca1a9a564871857a4a4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crLmD2araCzML7ErXo2kJ_ccva8=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.699586+00 2025-12-09 10:15:13.699592+00 11708 LJ9982FW#黑S VS-D3 SPMX-20240815306893 \N \N \N 1 \N [{"file_id": "fd0d3c8e-78ba-4b74-afb7-95fc2774d819", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31e184e2be574513b43f7c5da53657d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31e184e2be574513b43f7c5da53657d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31e184e2be574513b43f7c5da53657d5.jpg", "file_size": 15086, "is_delete": false, "file_type": 1, "original_file_name": "LJ9982FW#黑S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e184e2be574513b43f7c5da53657d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e184e2be574513b43f7c5da53657d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e184e2be574513b43f7c5da53657d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31e184e2be574513b43f7c5da53657d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31e184e2be574513b43f7c5da53657d5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQlG9g8Uncryne70OXKO-jpOS5Y=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.701408+00 2025-12-09 10:15:13.701413+00 11709 8141#玫红 SPMX-20240815306896 \N \N \N 1 \N [{"file_id": "13c5a85d-b7e5-4f0f-83c9-9879390568d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b8c44569fdc406191be3533069e7558.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b8c44569fdc406191be3533069e7558.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b8c44569fdc406191be3533069e7558.jpg", "file_size": 14622, "is_delete": false, "file_type": 1, "original_file_name": "8141#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8c44569fdc406191be3533069e7558.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8c44569fdc406191be3533069e7558.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8c44569fdc406191be3533069e7558.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b8c44569fdc406191be3533069e7558.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b8c44569fdc406191be3533069e7558.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzD8l3TJ-8tnmDtgQBoPZb0Xtx0=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.703472+00 2025-12-09 10:15:13.703475+00 11710 JTSS296FW#VS-D3 SPMX-20240815306901 \N \N \N 1 \N [{"file_id": "7f398572-d6c5-4e94-927e-c4c2418ca1fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "013e1b2674b24988ba94fbea90afa21b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "013e1b2674b24988ba94fbea90afa21b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "013e1b2674b24988ba94fbea90afa21b.jpg", "file_size": 26494, "is_delete": false, "file_type": 1, "original_file_name": "JTSS296FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013e1b2674b24988ba94fbea90afa21b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013e1b2674b24988ba94fbea90afa21b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013e1b2674b24988ba94fbea90afa21b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/013e1b2674b24988ba94fbea90afa21b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/013e1b2674b24988ba94fbea90afa21b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAClrs4PVo2EM_pAkvbym-8MIuI=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.705453+00 2025-12-09 10:15:13.705457+00 11711 JTSS295FW#VS-D6 SPMX-20240815306892 \N \N \N 1 \N [{"file_id": "7c857a47-67b5-4b35-9362-f809995745d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b550a8d25a348a29a06041d350d4079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b550a8d25a348a29a06041d350d4079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b550a8d25a348a29a06041d350d4079.jpg", "file_size": 17333, "is_delete": false, "file_type": 1, "original_file_name": "JTSS295FW#VS-D6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550a8d25a348a29a06041d350d4079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550a8d25a348a29a06041d350d4079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b550a8d25a348a29a06041d350d4079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b550a8d25a348a29a06041d350d4079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b550a8d25a348a29a06041d350d4079.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lTP_PsyFPLVD2q8P2PtDtYf0-PM=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.707687+00 2025-12-09 10:15:13.707692+00 11712 23-2118#A2-领子-3XL SPMX-20240815306899 \N \N \N 1 \N [{"file_id": "dfed58fe-08ae-461b-9e18-0fc80067fb81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c530018f8f03469b84f0de6d076abca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c530018f8f03469b84f0de6d076abca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c530018f8f03469b84f0de6d076abca6.jpg", "file_size": 13567, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-领子-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530018f8f03469b84f0de6d076abca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530018f8f03469b84f0de6d076abca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530018f8f03469b84f0de6d076abca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c530018f8f03469b84f0de6d076abca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c530018f8f03469b84f0de6d076abca6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5QDKnzPagA3FJeGYyy-occ-mjc=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.709775+00 2025-12-09 10:15:13.70978+00 11713 C440#白色 SPMX-20240815306889 \N \N \N 1 \N [{"file_id": "529e068a-d5a7-4db8-99ba-0d627ba50c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "737cfed055244755842038f4064d8e1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "737cfed055244755842038f4064d8e1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "737cfed055244755842038f4064d8e1c.jpg", "file_size": 40683, "is_delete": false, "file_type": 1, "original_file_name": "C440#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737cfed055244755842038f4064d8e1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737cfed055244755842038f4064d8e1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737cfed055244755842038f4064d8e1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/737cfed055244755842038f4064d8e1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/737cfed055244755842038f4064d8e1c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ynfmEUAC2tFaSrr8M8UwjfpbcKY=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.711596+00 2025-12-09 10:15:13.711601+00 11714 LZ1294#背心款2号色 SPMX-20240815306903 \N \N \N 1 \N [{"file_id": "b743d29b-ae6e-45f4-8bfb-385bac0d5d6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72dc9bdbb9984bebade64702f68d4a3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72dc9bdbb9984bebade64702f68d4a3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72dc9bdbb9984bebade64702f68d4a3d.jpg", "file_size": 18765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1294#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc9bdbb9984bebade64702f68d4a3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc9bdbb9984bebade64702f68d4a3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72dc9bdbb9984bebade64702f68d4a3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72dc9bdbb9984bebade64702f68d4a3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72dc9bdbb9984bebade64702f68d4a3d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQ7yk2SLDvlKEqtIb2Pbn2MaW8E=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.713619+00 2025-12-09 10:15:13.713624+00 11715 23-2118#A2-4XL SPMX-20240815306888 \N \N \N 1 \N [{"file_id": "12554416-9c31-432e-a705-144e7c0013df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4582bf5a304443268286f0e9c1c76267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4582bf5a304443268286f0e9c1c76267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4582bf5a304443268286f0e9c1c76267.jpg", "file_size": 18657, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4582bf5a304443268286f0e9c1c76267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4582bf5a304443268286f0e9c1c76267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4582bf5a304443268286f0e9c1c76267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4582bf5a304443268286f0e9c1c76267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4582bf5a304443268286f0e9c1c76267.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6To_bXoQXavJvsfR65V-8ylvfs=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.715662+00 2025-12-09 10:15:13.715666+00 11716 LZ1294#背心款1号色 SPMX-20240815306891 \N \N \N 1 \N [{"file_id": "134ed3a0-f8a1-48c3-8edc-d8154dac23ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccfb5b507409406a8083b5a9bc02e616.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccfb5b507409406a8083b5a9bc02e616.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccfb5b507409406a8083b5a9bc02e616.jpg", "file_size": 18329, "is_delete": false, "file_type": 1, "original_file_name": "LZ1294#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfb5b507409406a8083b5a9bc02e616.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfb5b507409406a8083b5a9bc02e616.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccfb5b507409406a8083b5a9bc02e616.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccfb5b507409406a8083b5a9bc02e616.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccfb5b507409406a8083b5a9bc02e616.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LEt0yWO-rgxcZhnCCfP5iheQpdk=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.717669+00 2025-12-09 10:15:13.717674+00 11717 1107FWE#黄色下摆 SPMX-20240815306900 \N \N \N 1 \N [{"file_id": "52e3d6a3-3495-4707-85a4-126aa79dfc68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9d2696faff34cdb8a6089d583e44ec1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9d2696faff34cdb8a6089d583e44ec1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9d2696faff34cdb8a6089d583e44ec1.jpg", "file_size": 13520, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黄色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d2696faff34cdb8a6089d583e44ec1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d2696faff34cdb8a6089d583e44ec1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d2696faff34cdb8a6089d583e44ec1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9d2696faff34cdb8a6089d583e44ec1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9d2696faff34cdb8a6089d583e44ec1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zqcdt2rgCeQBGg7AXLhytAIT1Lg=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.721522+00 2025-12-09 10:15:13.721527+00 11719 HT100FW#VS-D3 SPMX-20240815306898 \N \N \N 1 \N [{"file_id": "4d0ecc0f-e41b-4fd6-9c39-475262d5f8aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "706cf00d993e4e5ca46c7148f8dee5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "706cf00d993e4e5ca46c7148f8dee5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "706cf00d993e4e5ca46c7148f8dee5f7.jpg", "file_size": 17646, "is_delete": false, "file_type": 1, "original_file_name": "HT100FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706cf00d993e4e5ca46c7148f8dee5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706cf00d993e4e5ca46c7148f8dee5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706cf00d993e4e5ca46c7148f8dee5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/706cf00d993e4e5ca46c7148f8dee5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/706cf00d993e4e5ca46c7148f8dee5f7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2XZy4Ge9z1Z75tF8dcimLcoygg=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.723541+00 2025-12-09 10:15:13.723545+00 11720 C440#绿色 SPMX-20240815306902 \N \N \N 1 \N [{"file_id": "48a4f071-df46-4cfd-b1dd-77932b555901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03ea2457e19046b984d88210eb6136c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03ea2457e19046b984d88210eb6136c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03ea2457e19046b984d88210eb6136c8.jpg", "file_size": 41080, "is_delete": false, "file_type": 1, "original_file_name": "C440#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ea2457e19046b984d88210eb6136c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ea2457e19046b984d88210eb6136c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ea2457e19046b984d88210eb6136c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03ea2457e19046b984d88210eb6136c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03ea2457e19046b984d88210eb6136c8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wO4_6W31BTXvhyFuDX3aoC7xMOQ=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.719482+00 2025-12-09 10:15:13.719486+00 11718 DL31023-2#匹布玫红色 SPMX-20240815306905 \N \N \N 1 \N [{"file_id": "6592601d-8bbb-4cb3-a7ad-cec68510968b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0801403c927d4043a80fd8bbb09d5d81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0801403c927d4043a80fd8bbb09d5d81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0801403c927d4043a80fd8bbb09d5d81.jpg", "file_size": 21727, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0801403c927d4043a80fd8bbb09d5d81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0801403c927d4043a80fd8bbb09d5d81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0801403c927d4043a80fd8bbb09d5d81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0801403c927d4043a80fd8bbb09d5d81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0801403c927d4043a80fd8bbb09d5d81.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4X3myL8sJ7MTQ2agSMZRm16aYNA=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.727799+00 2025-12-09 10:15:13.727805+00 11721 FJ002FW#VS-D3 SPMX-20240815306895 \N \N \N 1 \N [{"file_id": "17f4bf3a-cbe1-497f-9fad-0bc5d8f6d772", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee267798bdb84f71bd7059b2f496ce6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee267798bdb84f71bd7059b2f496ce6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee267798bdb84f71bd7059b2f496ce6b.jpg", "file_size": 9219, "is_delete": false, "file_type": 1, "original_file_name": "FJ002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee267798bdb84f71bd7059b2f496ce6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee267798bdb84f71bd7059b2f496ce6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee267798bdb84f71bd7059b2f496ce6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee267798bdb84f71bd7059b2f496ce6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee267798bdb84f71bd7059b2f496ce6b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gAD2vfy4dzObbqB4wUOhEHe-LYU=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.72962+00 2025-12-09 10:15:13.729626+00 11722 HT101FW#VS-D3 SPMX-20240815306908 \N \N \N 1 \N [{"file_id": "419b92b5-c724-4ae5-88de-144075d2660e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "544bf7ff4eab47e7a71c91a61664f84c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "544bf7ff4eab47e7a71c91a61664f84c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "544bf7ff4eab47e7a71c91a61664f84c.jpg", "file_size": 10374, "is_delete": false, "file_type": 1, "original_file_name": "HT101FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf7ff4eab47e7a71c91a61664f84c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf7ff4eab47e7a71c91a61664f84c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf7ff4eab47e7a71c91a61664f84c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/544bf7ff4eab47e7a71c91a61664f84c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/544bf7ff4eab47e7a71c91a61664f84c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mOhpP9rqDiH3rrbRR1usiMiLb7A=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.731666+00 2025-12-09 10:15:13.731671+00 11723 0003-A31#LWQ15 SPMX-20240815306909 \N \N \N 1 \N [{"file_id": "6f0f3664-eca3-48ef-852b-fcda00dbf239", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f3d58758fff4e9d81ddc784da204682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f3d58758fff4e9d81ddc784da204682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f3d58758fff4e9d81ddc784da204682.jpg", "file_size": 18914, "is_delete": false, "file_type": 1, "original_file_name": "0003-A31#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3d58758fff4e9d81ddc784da204682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3d58758fff4e9d81ddc784da204682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3d58758fff4e9d81ddc784da204682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f3d58758fff4e9d81ddc784da204682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f3d58758fff4e9d81ddc784da204682.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzZtVL5jBJcWKSCL--HHkupWYPM=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.733738+00 2025-12-09 10:15:13.733743+00 11724 8141#白色 SPMX-20240815306907 \N \N \N 1 \N [{"file_id": "bca415ce-794a-4e07-9b05-823b6a433383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65f2fc2afaa14adcade9997e67d853e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65f2fc2afaa14adcade9997e67d853e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65f2fc2afaa14adcade9997e67d853e7.jpg", "file_size": 15457, "is_delete": false, "file_type": 1, "original_file_name": "8141#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f2fc2afaa14adcade9997e67d853e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f2fc2afaa14adcade9997e67d853e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f2fc2afaa14adcade9997e67d853e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65f2fc2afaa14adcade9997e67d853e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65f2fc2afaa14adcade9997e67d853e7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4D38JDGk9E5wtA4FDqROUuBvMk=", "createTime": "2024-08-15 14:52:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.735825+00 2025-12-09 10:15:13.73583+00 11725 FJ002FWE#VS-D3 SPMX-20240815306906 \N \N \N 1 \N [{"file_id": "edec628d-71b9-464b-b309-11fb8f1c2d01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12b55a7f69a84a46b047e597911eed95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12b55a7f69a84a46b047e597911eed95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12b55a7f69a84a46b047e597911eed95.jpg", "file_size": 9053, "is_delete": false, "file_type": 1, "original_file_name": "FJ002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12b55a7f69a84a46b047e597911eed95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12b55a7f69a84a46b047e597911eed95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12b55a7f69a84a46b047e597911eed95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12b55a7f69a84a46b047e597911eed95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12b55a7f69a84a46b047e597911eed95.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRGUee1KsfaWmeKW6_Szba-ldLg=", "createTime": "2024-08-15 14:52:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.737848+00 2025-12-09 10:15:13.737852+00 11726 23-2118#A2-领子-4XL SPMX-20240815306911 \N \N \N 1 \N [{"file_id": "01cfcc5e-6d40-47d1-8a52-9cd7a16946a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90311b8dfae44dfe8f943a0685dea340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90311b8dfae44dfe8f943a0685dea340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90311b8dfae44dfe8f943a0685dea340.jpg", "file_size": 13547, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-领子-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90311b8dfae44dfe8f943a0685dea340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90311b8dfae44dfe8f943a0685dea340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90311b8dfae44dfe8f943a0685dea340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90311b8dfae44dfe8f943a0685dea340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90311b8dfae44dfe8f943a0685dea340.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04Ob0gIoWQFlg79Kt2gL1WAlDfY=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.747752+00 2025-12-09 10:15:13.747757+00 11731 C440#黑色 SPMX-20240815306915 \N \N \N 1 \N [{"file_id": "338ddd00-d259-4d3a-af9a-bb0f18cbeedf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "014e548e6c2b4622a23b22fb575f5638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "014e548e6c2b4622a23b22fb575f5638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "014e548e6c2b4622a23b22fb575f5638.jpg", "file_size": 42372, "is_delete": false, "file_type": 1, "original_file_name": "C440#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014e548e6c2b4622a23b22fb575f5638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014e548e6c2b4622a23b22fb575f5638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/014e548e6c2b4622a23b22fb575f5638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/014e548e6c2b4622a23b22fb575f5638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/014e548e6c2b4622a23b22fb575f5638.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xY7FtYy4qW37Vle2MPGTnPOLl8=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.739866+00 2025-12-09 10:15:13.73987+00 11727 1107FWE#黄色小花 SPMX-20240815306910 \N \N \N 1 \N [{"file_id": "3864c450-1261-4b8d-9e46-16a9147d71d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a2095669d7f4e5b86e632bf95db876c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a2095669d7f4e5b86e632bf95db876c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a2095669d7f4e5b86e632bf95db876c.jpg", "file_size": 29888, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黄色小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2095669d7f4e5b86e632bf95db876c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2095669d7f4e5b86e632bf95db876c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2095669d7f4e5b86e632bf95db876c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a2095669d7f4e5b86e632bf95db876c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a2095669d7f4e5b86e632bf95db876c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pw-SzQPrspd8KloaTPxIxj6fY8=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.74168+00 2025-12-09 10:15:13.741685+00 11728 LJG001FW#VS-D3 SPMX-20240815306912 \N \N \N 1 \N [{"file_id": "055f9e0f-eebc-4168-9401-9cc2f654cd45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c0e1a649b384df3b861bedc3ad62205.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c0e1a649b384df3b861bedc3ad62205.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c0e1a649b384df3b861bedc3ad62205.jpg", "file_size": 18052, "is_delete": false, "file_type": 1, "original_file_name": "LJG001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0e1a649b384df3b861bedc3ad62205.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0e1a649b384df3b861bedc3ad62205.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0e1a649b384df3b861bedc3ad62205.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c0e1a649b384df3b861bedc3ad62205.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c0e1a649b384df3b861bedc3ad62205.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3f6yU6L7KspC77OPiqN1KQq195Q=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.743689+00 2025-12-09 10:15:13.743693+00 11729 JTSS297FW#VS-D3 SPMX-20240815306913 \N \N \N 1 \N [{"file_id": "c893e680-a153-4199-ab1b-f401e3410e3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "512da4cb459545c486f0e33818d2daca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "512da4cb459545c486f0e33818d2daca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "512da4cb459545c486f0e33818d2daca.jpg", "file_size": 13252, "is_delete": false, "file_type": 1, "original_file_name": "JTSS297FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512da4cb459545c486f0e33818d2daca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512da4cb459545c486f0e33818d2daca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/512da4cb459545c486f0e33818d2daca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/512da4cb459545c486f0e33818d2daca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/512da4cb459545c486f0e33818d2daca.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X7wiEDLUkcaFVGbPUs19OAWpRGs=", "createTime": "2024-08-15 14:52:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.74575+00 2025-12-09 10:15:13.745755+00 11730 LZ1294#背心款3号色 SPMX-20240815306914 \N \N \N 1 \N [{"file_id": "dbbc807e-f7fd-46c4-8d88-b6d09cf41561", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "403507635f2f4cc78a7d6e3647b04f49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "403507635f2f4cc78a7d6e3647b04f49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "403507635f2f4cc78a7d6e3647b04f49.jpg", "file_size": 17022, "is_delete": false, "file_type": 1, "original_file_name": "LZ1294#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403507635f2f4cc78a7d6e3647b04f49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403507635f2f4cc78a7d6e3647b04f49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403507635f2f4cc78a7d6e3647b04f49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/403507635f2f4cc78a7d6e3647b04f49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/403507635f2f4cc78a7d6e3647b04f49.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnUi3JvvIG_O2FAOYdQYqXeq2y4=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.749732+00 2025-12-09 10:15:13.749737+00 11732 DL31023-2#匹布皮粉色 SPMX-20240815306916 \N \N \N 1 \N [{"file_id": "d5afba34-dc54-428a-9f72-80babf4b7196", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2fd5d12d6f345f8bacf8a38dcac1b83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2fd5d12d6f345f8bacf8a38dcac1b83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2fd5d12d6f345f8bacf8a38dcac1b83.jpg", "file_size": 21309, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#匹布皮粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd5d12d6f345f8bacf8a38dcac1b83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd5d12d6f345f8bacf8a38dcac1b83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fd5d12d6f345f8bacf8a38dcac1b83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2fd5d12d6f345f8bacf8a38dcac1b83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2fd5d12d6f345f8bacf8a38dcac1b83.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4YMYJK8xR8IcUI34WLEaMLTkbI=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.751711+00 2025-12-09 10:15:13.751715+00 11733 FJ003# SPMX-20240815306917 \N \N \N 1 \N [{"file_id": "a0dc10b6-2603-465b-a54d-75f50971e2ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784aba08273a46468cd828bd93beda84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784aba08273a46468cd828bd93beda84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784aba08273a46468cd828bd93beda84.jpg", "file_size": 17385, "is_delete": false, "file_type": 1, "original_file_name": "FJ003#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784aba08273a46468cd828bd93beda84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784aba08273a46468cd828bd93beda84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784aba08273a46468cd828bd93beda84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784aba08273a46468cd828bd93beda84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784aba08273a46468cd828bd93beda84.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r-m3IMqbuUfXxcoigqZSipVa0DA=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.753729+00 2025-12-09 10:15:13.753734+00 11734 8141#绿色 SPMX-20240815306918 \N \N \N 1 \N [{"file_id": "1b2308eb-010c-40db-b0e6-bd934bc43bdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdebd50380494514a2ffa3d9f810be01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdebd50380494514a2ffa3d9f810be01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdebd50380494514a2ffa3d9f810be01.jpg", "file_size": 14600, "is_delete": false, "file_type": 1, "original_file_name": "8141#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdebd50380494514a2ffa3d9f810be01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdebd50380494514a2ffa3d9f810be01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdebd50380494514a2ffa3d9f810be01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdebd50380494514a2ffa3d9f810be01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdebd50380494514a2ffa3d9f810be01.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0mQkEMJlkeMRc71HzGPtVPrZQMk=", "createTime": "2024-08-15 14:52:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.755755+00 2025-12-09 10:15:13.75576+00 11735 LJH001FWE#VS-D3 SPMX-20240815306923 \N \N \N 1 \N [{"file_id": "4e87d008-23e2-477e-9f1a-cb3a0702aae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3feffaf466840d0b462af426b96ac71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3feffaf466840d0b462af426b96ac71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3feffaf466840d0b462af426b96ac71.jpg", "file_size": 14580, "is_delete": false, "file_type": 1, "original_file_name": "LJH001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3feffaf466840d0b462af426b96ac71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3feffaf466840d0b462af426b96ac71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3feffaf466840d0b462af426b96ac71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3feffaf466840d0b462af426b96ac71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3feffaf466840d0b462af426b96ac71.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASppS_9JpsBiHsR7qEW-T7G0WIw=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.766461+00 2025-12-09 10:15:13.766465+00 11740 C441#兰色 SPMX-20240815306928 \N \N \N 1 \N [{"file_id": "38e2164a-fd93-4a96-a4db-d2b3a6307256", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a338a11eaecd4c4eb9aeb522d6db420d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a338a11eaecd4c4eb9aeb522d6db420d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a338a11eaecd4c4eb9aeb522d6db420d.jpg", "file_size": 76915, "is_delete": false, "file_type": 1, "original_file_name": "C441#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a338a11eaecd4c4eb9aeb522d6db420d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a338a11eaecd4c4eb9aeb522d6db420d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a338a11eaecd4c4eb9aeb522d6db420d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a338a11eaecd4c4eb9aeb522d6db420d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a338a11eaecd4c4eb9aeb522d6db420d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7DfzwVzUf-uLAiEPBReT4tqfME=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.757803+00 2025-12-09 10:15:13.757807+00 11736 DL31023-2#墨绿色 SPMX-20240815306926 \N \N \N 1 \N [{"file_id": "9d0cffb7-04f6-4705-814c-32bb80ba2cb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad2f6d5354da41a98045231f18d2e5cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad2f6d5354da41a98045231f18d2e5cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad2f6d5354da41a98045231f18d2e5cc.jpg", "file_size": 14966, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2f6d5354da41a98045231f18d2e5cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2f6d5354da41a98045231f18d2e5cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2f6d5354da41a98045231f18d2e5cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad2f6d5354da41a98045231f18d2e5cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad2f6d5354da41a98045231f18d2e5cc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pBC3tRctJDD50VueaY5K4B0HXGI=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.75987+00 2025-12-09 10:15:13.759875+00 11737 1107FWE#黑色上衣 SPMX-20240815306920 \N \N \N 1 \N [{"file_id": "3b4dc379-38c1-417c-aaf2-80ccdcf9e304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2ca40510c8b449c8d420fd6380363c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2ca40510c8b449c8d420fd6380363c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2ca40510c8b449c8d420fd6380363c7.jpg", "file_size": 26309, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黑色上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca40510c8b449c8d420fd6380363c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca40510c8b449c8d420fd6380363c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ca40510c8b449c8d420fd6380363c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2ca40510c8b449c8d420fd6380363c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2ca40510c8b449c8d420fd6380363c7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsWeoQEh3M4truXSvA_cSLmNMqI=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.761937+00 2025-12-09 10:15:13.761942+00 11738 23-2118#A2-领子4XL SPMX-20240815306932 \N \N \N 1 \N [{"file_id": "68656e2e-63ab-406f-8e7c-735057eef09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03ce4f98a5af4531b940699097a055ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03ce4f98a5af4531b940699097a055ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03ce4f98a5af4531b940699097a055ae.jpg", "file_size": 11639, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ce4f98a5af4531b940699097a055ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ce4f98a5af4531b940699097a055ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03ce4f98a5af4531b940699097a055ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03ce4f98a5af4531b940699097a055ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03ce4f98a5af4531b940699097a055ae.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SXSaBhrenzDxvPaNaOFHAwxb7w=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.764178+00 2025-12-09 10:15:13.764184+00 11739 JTSS298FW#VS-D3 SPMX-20240815306924 \N \N \N 1 \N [{"file_id": "e5aa276c-9b8c-4047-8734-78c4494cb697", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f8585d5dda442ada1ddc2a8dd1894cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f8585d5dda442ada1ddc2a8dd1894cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f8585d5dda442ada1ddc2a8dd1894cd.jpg", "file_size": 14317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS298FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8585d5dda442ada1ddc2a8dd1894cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8585d5dda442ada1ddc2a8dd1894cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8585d5dda442ada1ddc2a8dd1894cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f8585d5dda442ada1ddc2a8dd1894cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f8585d5dda442ada1ddc2a8dd1894cd.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3tLZeiLvBiOcz7kWX86AAyeJ6k=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.768328+00 2025-12-09 10:15:13.768333+00 11741 HT102FW#VS-D3 SPMX-20240815306930 \N \N \N 1 \N [{"file_id": "de834a3d-cb7a-441a-9bce-7f74afb0b1a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e8128d50124edfb2392c0c510abdb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e8128d50124edfb2392c0c510abdb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e8128d50124edfb2392c0c510abdb0.jpg", "file_size": 21165, "is_delete": false, "file_type": 1, "original_file_name": "HT102FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8128d50124edfb2392c0c510abdb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8128d50124edfb2392c0c510abdb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8128d50124edfb2392c0c510abdb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e8128d50124edfb2392c0c510abdb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e8128d50124edfb2392c0c510abdb0.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dkzqxe6CTUU7tX-L7MCp2eluC4U=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.770173+00 2025-12-09 10:15:13.770177+00 11742 FJ003#3XL SPMX-20240815306927 \N \N \N 1 \N [{"file_id": "be40747d-2159-4027-ad45-76dfa645ad0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8b127d4cad34a8da2c493fb176c1c38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8b127d4cad34a8da2c493fb176c1c38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8b127d4cad34a8da2c493fb176c1c38.jpg", "file_size": 15237, "is_delete": false, "file_type": 1, "original_file_name": "FJ003#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b127d4cad34a8da2c493fb176c1c38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b127d4cad34a8da2c493fb176c1c38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b127d4cad34a8da2c493fb176c1c38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8b127d4cad34a8da2c493fb176c1c38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8b127d4cad34a8da2c493fb176c1c38.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CM8UmgdHRi6k8Np2p_01WDBWTQ=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.772029+00 2025-12-09 10:15:13.772034+00 11743 1107FWE#黑色下摆 SPMX-20240815306933 \N \N \N 1 \N [{"file_id": "f959a4d0-7dc3-4052-955b-f548ce1f2be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97ab70f805b94443b13637875814f352.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97ab70f805b94443b13637875814f352.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97ab70f805b94443b13637875814f352.jpg", "file_size": 17679, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黑色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ab70f805b94443b13637875814f352.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ab70f805b94443b13637875814f352.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97ab70f805b94443b13637875814f352.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97ab70f805b94443b13637875814f352.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97ab70f805b94443b13637875814f352.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fr4bZp_6HjAVMqo1j-0UfiRWZ1c=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.774359+00 2025-12-09 10:15:13.774363+00 11744 LZ1294#背心款4号色 SPMX-20240815306925 \N \N \N 1 \N [{"file_id": "55ab0df0-c9de-4dd0-9ef5-eed5a9202aff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e378c00bc3f74414b19da5fa6bf7b653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e378c00bc3f74414b19da5fa6bf7b653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e378c00bc3f74414b19da5fa6bf7b653.jpg", "file_size": 17616, "is_delete": false, "file_type": 1, "original_file_name": "LZ1294#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e378c00bc3f74414b19da5fa6bf7b653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e378c00bc3f74414b19da5fa6bf7b653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e378c00bc3f74414b19da5fa6bf7b653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e378c00bc3f74414b19da5fa6bf7b653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e378c00bc3f74414b19da5fa6bf7b653.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WAUQ9WVEn715QI-Fo7sVBSGUd7Q=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.776483+00 2025-12-09 10:15:13.776488+00 11745 8141#黑色 SPMX-20240815306929 \N \N \N 1 \N [{"file_id": "5bed69ce-ceb7-4ee2-84ce-4932cd6f7864", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "017862b973a24429b08146f5d008a64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "017862b973a24429b08146f5d008a64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "017862b973a24429b08146f5d008a64b.jpg", "file_size": 16842, "is_delete": false, "file_type": 1, "original_file_name": "8141#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017862b973a24429b08146f5d008a64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017862b973a24429b08146f5d008a64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/017862b973a24429b08146f5d008a64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/017862b973a24429b08146f5d008a64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/017862b973a24429b08146f5d008a64b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cL_J21VZeNpJPE2Ihv0efV3ocv0=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.778605+00 2025-12-09 10:15:13.778609+00 11746 0003-A32#橙色 SPMX-20240815306921 \N \N \N 1 \N [{"file_id": "e41fbc17-7328-478b-bd87-ea91ddedf782", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89d59c0b2e074404a520dfd03f59e2b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89d59c0b2e074404a520dfd03f59e2b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89d59c0b2e074404a520dfd03f59e2b1.jpg", "file_size": 17224, "is_delete": false, "file_type": 1, "original_file_name": "0003-A32#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d59c0b2e074404a520dfd03f59e2b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d59c0b2e074404a520dfd03f59e2b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d59c0b2e074404a520dfd03f59e2b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89d59c0b2e074404a520dfd03f59e2b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89d59c0b2e074404a520dfd03f59e2b1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35an_sAsyn3TCSNrZntCnD7KsFk=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.780661+00 2025-12-09 10:15:13.780666+00 11747 0003-A32#粉色 SPMX-20240815306931 \N \N \N 1 \N [{"file_id": "1f99f335-f7eb-4437-9924-708a29febb31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eadf06b3102a4d5e88d786c0f624f560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eadf06b3102a4d5e88d786c0f624f560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eadf06b3102a4d5e88d786c0f624f560.jpg", "file_size": 14271, "is_delete": false, "file_type": 1, "original_file_name": "0003-A32#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadf06b3102a4d5e88d786c0f624f560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadf06b3102a4d5e88d786c0f624f560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadf06b3102a4d5e88d786c0f624f560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eadf06b3102a4d5e88d786c0f624f560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eadf06b3102a4d5e88d786c0f624f560.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PaICxAK5J6dqY4LmWtZR9XhY4U8=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.782756+00 2025-12-09 10:15:13.78276+00 11748 HT101FW#红VS-D3 SPMX-20240815306919 \N \N \N 1 \N [{"file_id": "e26cf054-fd45-4acb-b979-c9f1626a4f22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d958113fda1409cac8ca21c2b657467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d958113fda1409cac8ca21c2b657467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d958113fda1409cac8ca21c2b657467.jpg", "file_size": 11223, "is_delete": false, "file_type": 1, "original_file_name": "HT101FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d958113fda1409cac8ca21c2b657467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d958113fda1409cac8ca21c2b657467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d958113fda1409cac8ca21c2b657467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d958113fda1409cac8ca21c2b657467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d958113fda1409cac8ca21c2b657467.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMqu03MmnhZe2QznwfdfZhsQ1nM=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.784873+00 2025-12-09 10:15:13.784877+00 11749 23-2118#A2-领子3XL SPMX-20240815306922 \N \N \N 1 \N [{"file_id": "749d11f8-dd59-459a-8b56-3e93d291c0f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1cd3539cfa24aef96541983315d07f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1cd3539cfa24aef96541983315d07f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1cd3539cfa24aef96541983315d07f6.jpg", "file_size": 11382, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1cd3539cfa24aef96541983315d07f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1cd3539cfa24aef96541983315d07f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1cd3539cfa24aef96541983315d07f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1cd3539cfa24aef96541983315d07f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1cd3539cfa24aef96541983315d07f6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0b9kFUJ7b56r-pz3_Z0wooiZcy8=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.787276+00 2025-12-09 10:15:13.787281+00 11750 LZ1294#背心款5号色 SPMX-20240815306936 \N \N \N 1 \N [{"file_id": "81f15d4d-c389-46c3-a2cc-b9da6f47fb2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae7fd48af064f119706acef60a76f48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae7fd48af064f119706acef60a76f48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae7fd48af064f119706acef60a76f48.jpg", "file_size": 16993, "is_delete": false, "file_type": 1, "original_file_name": "LZ1294#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae7fd48af064f119706acef60a76f48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae7fd48af064f119706acef60a76f48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae7fd48af064f119706acef60a76f48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae7fd48af064f119706acef60a76f48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae7fd48af064f119706acef60a76f48.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-IDVByRiS4d2AMp85q9VWRCNG0=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.789388+00 2025-12-09 10:15:13.789392+00 11751 23-2118#A3-3XL SPMX-20240815306943 \N \N \N 1 \N [{"file_id": "41ca200b-e924-457e-b271-2a7581cbaa22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b62ce54410a439eb28a653b55785c39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b62ce54410a439eb28a653b55785c39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b62ce54410a439eb28a653b55785c39.jpg", "file_size": 18602, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b62ce54410a439eb28a653b55785c39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b62ce54410a439eb28a653b55785c39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b62ce54410a439eb28a653b55785c39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b62ce54410a439eb28a653b55785c39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b62ce54410a439eb28a653b55785c39.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Liw9BsyX_aFmzo6TIyvSi863dM=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.791239+00 2025-12-09 10:15:13.791244+00 11752 C441#墨绿 SPMX-20240815306939 \N \N \N 1 \N [{"file_id": "c83355b2-1fcd-4ff2-a2bf-fae413665572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "816d877db5b64dd4bb7eb550adc31fef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "816d877db5b64dd4bb7eb550adc31fef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "816d877db5b64dd4bb7eb550adc31fef.jpg", "file_size": 82691, "is_delete": false, "file_type": 1, "original_file_name": "C441#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816d877db5b64dd4bb7eb550adc31fef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816d877db5b64dd4bb7eb550adc31fef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816d877db5b64dd4bb7eb550adc31fef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/816d877db5b64dd4bb7eb550adc31fef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/816d877db5b64dd4bb7eb550adc31fef.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdwJGOUL71er4R_rIO3P1cpqx3Q=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.793202+00 2025-12-09 10:15:13.793206+00 11753 JTSS299FW#VS-D3 SPMX-20240815306935 \N \N \N 1 \N [{"file_id": "84616654-2636-46a3-ac23-f803d2153108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d48da682a664a29b0bc34368f5e24fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d48da682a664a29b0bc34368f5e24fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d48da682a664a29b0bc34368f5e24fe.jpg", "file_size": 11799, "is_delete": false, "file_type": 1, "original_file_name": "JTSS299FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d48da682a664a29b0bc34368f5e24fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d48da682a664a29b0bc34368f5e24fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d48da682a664a29b0bc34368f5e24fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d48da682a664a29b0bc34368f5e24fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d48da682a664a29b0bc34368f5e24fe.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ueqHo8gGqp9jfF7PX5exI0ayzs=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.795147+00 2025-12-09 10:15:13.795151+00 11754 LJH003FWE#VS-D3 SPMX-20240815306944 \N \N \N 1 \N [{"file_id": "a1fc0225-a180-49a7-8416-92eb1d3639dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc4378984e947d5954eedee488ce233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc4378984e947d5954eedee488ce233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc4378984e947d5954eedee488ce233.jpg", "file_size": 11441, "is_delete": false, "file_type": 1, "original_file_name": "LJH003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc4378984e947d5954eedee488ce233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc4378984e947d5954eedee488ce233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc4378984e947d5954eedee488ce233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc4378984e947d5954eedee488ce233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc4378984e947d5954eedee488ce233.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bmfR_X-VxzbCozrAD85KxQJGLOc=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.797091+00 2025-12-09 10:15:13.797095+00 11755 DL31023-2#彩兰色 SPMX-20240815306937 \N \N \N 1 \N [{"file_id": "311bbb0b-d194-446c-8f48-c81ed2badd88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7372404d195f49f39cccff96da225a4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7372404d195f49f39cccff96da225a4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7372404d195f49f39cccff96da225a4c.jpg", "file_size": 14799, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372404d195f49f39cccff96da225a4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372404d195f49f39cccff96da225a4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372404d195f49f39cccff96da225a4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7372404d195f49f39cccff96da225a4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7372404d195f49f39cccff96da225a4c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2zj85C0b85og-M2OmkKNGwvNCg=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.799059+00 2025-12-09 10:15:13.799064+00 11756 LJH002FWE#VS-D3 SPMX-20240815306934 \N \N \N 1 \N [{"file_id": "214838b4-fea2-4061-8982-35cec738a1f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bbb8f47875742e385429ad16a4905de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bbb8f47875742e385429ad16a4905de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bbb8f47875742e385429ad16a4905de.jpg", "file_size": 18478, "is_delete": false, "file_type": 1, "original_file_name": "LJH002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb8f47875742e385429ad16a4905de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb8f47875742e385429ad16a4905de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb8f47875742e385429ad16a4905de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bbb8f47875742e385429ad16a4905de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bbb8f47875742e385429ad16a4905de.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJnXx2Az_4N-2jz2tETvsRm_ljg=", "createTime": "2024-08-15 14:52:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.801018+00 2025-12-09 10:15:13.801022+00 11757 8157#WJC22 SPMX-20240815306940 \N \N \N 1 \N [{"file_id": "d4a00444-094a-4237-ad43-65c50421ad2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37933a6d96764aefb68c68bfc2baafd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37933a6d96764aefb68c68bfc2baafd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37933a6d96764aefb68c68bfc2baafd0.jpg", "file_size": 12094, "is_delete": false, "file_type": 1, "original_file_name": "8157#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37933a6d96764aefb68c68bfc2baafd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37933a6d96764aefb68c68bfc2baafd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37933a6d96764aefb68c68bfc2baafd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37933a6d96764aefb68c68bfc2baafd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37933a6d96764aefb68c68bfc2baafd0.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MZipchmUQtDbmy9N6Zy6-IyNiNA=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.803044+00 2025-12-09 10:15:13.803048+00 11758 1107FWE#黑色小花腰带 SPMX-20240815306942 \N \N \N 1 \N [{"file_id": "5093d796-4a28-4a38-8b2a-51b84c991c8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6dd1923d30143c3bf47b04fabf550dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6dd1923d30143c3bf47b04fabf550dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6dd1923d30143c3bf47b04fabf550dc.jpg", "file_size": 33191, "is_delete": false, "file_type": 1, "original_file_name": "1107FWE#黑色小花腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dd1923d30143c3bf47b04fabf550dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dd1923d30143c3bf47b04fabf550dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dd1923d30143c3bf47b04fabf550dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6dd1923d30143c3bf47b04fabf550dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6dd1923d30143c3bf47b04fabf550dc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAc-zKNVdD9ensLJwJVQPDue-_k=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.805016+00 2025-12-09 10:15:13.80502+00 11759 0003-A32#绿色 SPMX-20240815306945 \N \N \N 1 \N [{"file_id": "68d82df1-9244-418d-9701-a70c37f88538", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e47c236e4a154c21aa4989737955fbf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e47c236e4a154c21aa4989737955fbf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e47c236e4a154c21aa4989737955fbf7.jpg", "file_size": 50254, "is_delete": false, "file_type": 1, "original_file_name": "0003-A32#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47c236e4a154c21aa4989737955fbf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47c236e4a154c21aa4989737955fbf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47c236e4a154c21aa4989737955fbf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e47c236e4a154c21aa4989737955fbf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e47c236e4a154c21aa4989737955fbf7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPUO53MPbNOc4PK7P19LCLuTqqo=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.80704+00 2025-12-09 10:15:13.807044+00 11760 HT1030-1#V5 SPMX-20240815306941 \N \N \N 1 \N [{"file_id": "fec923ef-7837-466b-b88d-ff71ad993583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bc10b65961946bf9557e60a7e18c508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bc10b65961946bf9557e60a7e18c508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bc10b65961946bf9557e60a7e18c508.jpg", "file_size": 14077, "is_delete": false, "file_type": 1, "original_file_name": "HT1030-1#V5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc10b65961946bf9557e60a7e18c508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc10b65961946bf9557e60a7e18c508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc10b65961946bf9557e60a7e18c508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bc10b65961946bf9557e60a7e18c508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bc10b65961946bf9557e60a7e18c508.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qG_oxVnyDQpsp7B204EcYZSV07A=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.809021+00 2025-12-09 10:15:13.809025+00 11761 FJ003#M SPMX-20240815306948 \N \N \N 1 \N [{"file_id": "2131c601-2def-43d2-8ccd-fc3d64e8fa61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe3e20b540842ee852a0ccba6ba5257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe3e20b540842ee852a0ccba6ba5257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe3e20b540842ee852a0ccba6ba5257.jpg", "file_size": 16351, "is_delete": false, "file_type": 1, "original_file_name": "FJ003#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe3e20b540842ee852a0ccba6ba5257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe3e20b540842ee852a0ccba6ba5257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe3e20b540842ee852a0ccba6ba5257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe3e20b540842ee852a0ccba6ba5257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe3e20b540842ee852a0ccba6ba5257.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1i216h9pmyFG_zQNyR2KonV9OE=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.810777+00 2025-12-09 10:15:13.810781+00 11762 JTSS300FW#VS-D3 SPMX-20240815306946 \N \N \N 1 \N [{"file_id": "79e75e73-bee4-4579-899d-aa3fb1dfd71d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "448dad8dc9064bbf856dee396d9837ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "448dad8dc9064bbf856dee396d9837ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "448dad8dc9064bbf856dee396d9837ff.jpg", "file_size": 16017, "is_delete": false, "file_type": 1, "original_file_name": "JTSS300FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448dad8dc9064bbf856dee396d9837ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448dad8dc9064bbf856dee396d9837ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/448dad8dc9064bbf856dee396d9837ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/448dad8dc9064bbf856dee396d9837ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/448dad8dc9064bbf856dee396d9837ff.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftVd1O7p2EvNwunP6V7HHH1gI2s=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.812534+00 2025-12-09 10:15:13.812538+00 11763 FJ003#CC SPMX-20240815306938 \N \N \N 1 \N [{"file_id": "3fed1eb4-b92c-4d9f-b6c2-736bd691ae6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83bdaa7a5b4d4c67a34f5a75fc329db1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83bdaa7a5b4d4c67a34f5a75fc329db1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83bdaa7a5b4d4c67a34f5a75fc329db1.jpg", "file_size": 10261, "is_delete": false, "file_type": 1, "original_file_name": "FJ003#CC.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bdaa7a5b4d4c67a34f5a75fc329db1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bdaa7a5b4d4c67a34f5a75fc329db1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bdaa7a5b4d4c67a34f5a75fc329db1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83bdaa7a5b4d4c67a34f5a75fc329db1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83bdaa7a5b4d4c67a34f5a75fc329db1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2fD6xrdRVyZ855vOLhCGAGOTlg=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.814288+00 2025-12-09 10:15:13.814292+00 11764 DL31023-2#枣红 SPMX-20240815306947 \N \N \N 1 \N [{"file_id": "5e247f97-e4e4-4583-ac57-b632f7629e4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f53be44090dd4c3991adc2d79323b368.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f53be44090dd4c3991adc2d79323b368.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f53be44090dd4c3991adc2d79323b368.jpg", "file_size": 14310, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53be44090dd4c3991adc2d79323b368.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53be44090dd4c3991adc2d79323b368.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f53be44090dd4c3991adc2d79323b368.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f53be44090dd4c3991adc2d79323b368.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f53be44090dd4c3991adc2d79323b368.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XoW3XVSF-yOKaMOwIItE9nIEIdc=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.816348+00 2025-12-09 10:15:13.816353+00 11765 LZ1295#背心款1号色 SPMX-20240815306949 \N \N \N 1 \N [{"file_id": "fd5dfde5-8953-4c98-8fea-922258cf8d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba12acad0c13458792d249e3958501d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba12acad0c13458792d249e3958501d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba12acad0c13458792d249e3958501d1.jpg", "file_size": 16491, "is_delete": false, "file_type": 1, "original_file_name": "LZ1295#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba12acad0c13458792d249e3958501d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba12acad0c13458792d249e3958501d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba12acad0c13458792d249e3958501d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba12acad0c13458792d249e3958501d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba12acad0c13458792d249e3958501d1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIT5sZceMopmJQe4TEqaErV6Fc8=", "createTime": "2024-08-15 14:52:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.818504+00 2025-12-09 10:15:13.818509+00 11766 DL31023-2#浅咖色 SPMX-20240815306959 \N \N \N 1 \N [{"file_id": "ba7ad25a-0580-42b1-9acf-f816db093913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14ea0d9b396d46d89682314f3e9e9f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14ea0d9b396d46d89682314f3e9e9f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14ea0d9b396d46d89682314f3e9e9f15.jpg", "file_size": 14791, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#浅咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ea0d9b396d46d89682314f3e9e9f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ea0d9b396d46d89682314f3e9e9f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14ea0d9b396d46d89682314f3e9e9f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14ea0d9b396d46d89682314f3e9e9f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14ea0d9b396d46d89682314f3e9e9f15.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDQmjAoc3PZ41eY5uxw0h9eEB1o=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.820648+00 2025-12-09 10:15:13.820653+00 11767 LZ1295#背心款2号色 SPMX-20240815306961 \N \N \N 1 \N [{"file_id": "f7035293-419a-4b91-afa4-78aaef62c5c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05394976aedb44698005c1bd6053dc01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05394976aedb44698005c1bd6053dc01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05394976aedb44698005c1bd6053dc01.jpg", "file_size": 16666, "is_delete": false, "file_type": 1, "original_file_name": "LZ1295#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05394976aedb44698005c1bd6053dc01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05394976aedb44698005c1bd6053dc01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05394976aedb44698005c1bd6053dc01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05394976aedb44698005c1bd6053dc01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05394976aedb44698005c1bd6053dc01.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMQv4qm38WXFm5q_QsGqrXee_jc=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.822531+00 2025-12-09 10:15:13.822536+00 11768 HT103FW#橘VS-D3 SPMX-20240815306962 \N \N \N 1 \N [{"file_id": "1cb29dfc-7eed-4e53-bf81-cbf23df62207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56375556da8a4777875a30e94249a6a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56375556da8a4777875a30e94249a6a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56375556da8a4777875a30e94249a6a1.jpg", "file_size": 13487, "is_delete": false, "file_type": 1, "original_file_name": "HT103FW#橘VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56375556da8a4777875a30e94249a6a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56375556da8a4777875a30e94249a6a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56375556da8a4777875a30e94249a6a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56375556da8a4777875a30e94249a6a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56375556da8a4777875a30e94249a6a1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZTJuAGGKgKcB3kD7rkkNsxkrHA=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.824637+00 2025-12-09 10:15:13.824642+00 11769 C441#大白 SPMX-20240815306950 \N \N \N 1 \N [{"file_id": "188f3851-3203-46df-a006-0b1736ac8490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e74e4f0f310e45728f99f7891afb4f73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e74e4f0f310e45728f99f7891afb4f73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e74e4f0f310e45728f99f7891afb4f73.jpg", "file_size": 76284, "is_delete": false, "file_type": 1, "original_file_name": "C441#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74e4f0f310e45728f99f7891afb4f73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74e4f0f310e45728f99f7891afb4f73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74e4f0f310e45728f99f7891afb4f73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e74e4f0f310e45728f99f7891afb4f73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e74e4f0f310e45728f99f7891afb4f73.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:We_H428gEb4-qW8Xu-44GdNFmiQ=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.82646+00 2025-12-09 10:15:13.826465+00 11770 111#-杏色 SPMX-20240815306954 \N \N \N 1 \N [{"file_id": "fb8615a7-8995-4c82-b362-7e1926c7c334", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b1317ad6ba9468293e5e648709d155e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b1317ad6ba9468293e5e648709d155e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b1317ad6ba9468293e5e648709d155e.jpg", "file_size": 49464, "is_delete": false, "file_type": 1, "original_file_name": "111#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1317ad6ba9468293e5e648709d155e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1317ad6ba9468293e5e648709d155e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b1317ad6ba9468293e5e648709d155e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b1317ad6ba9468293e5e648709d155e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b1317ad6ba9468293e5e648709d155e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKi2BDv1LVg7iMzia1BlegV2_4k=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.828579+00 2025-12-09 10:15:13.828584+00 11771 FJ003#XL SPMX-20240815306958 \N \N \N 1 \N [{"file_id": "b9744a94-09b1-465f-84a2-d6a51b9c90b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14db2910056a4da293c49897a5f98697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14db2910056a4da293c49897a5f98697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14db2910056a4da293c49897a5f98697.jpg", "file_size": 16108, "is_delete": false, "file_type": 1, "original_file_name": "FJ003#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db2910056a4da293c49897a5f98697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db2910056a4da293c49897a5f98697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14db2910056a4da293c49897a5f98697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14db2910056a4da293c49897a5f98697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14db2910056a4da293c49897a5f98697.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZAlKrsV4NNWRGtswXW2g9nVeWA=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.830669+00 2025-12-09 10:15:13.830674+00 11772 0003-A32#蓝色 SPMX-20240815306957 \N \N \N 1 \N [{"file_id": "2acce16d-785d-43e7-b3c3-a2bd88038df7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "245dd80c80314ad9aecd6457f33402e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "245dd80c80314ad9aecd6457f33402e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "245dd80c80314ad9aecd6457f33402e1.jpg", "file_size": 20291, "is_delete": false, "file_type": 1, "original_file_name": "0003-A32#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245dd80c80314ad9aecd6457f33402e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245dd80c80314ad9aecd6457f33402e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245dd80c80314ad9aecd6457f33402e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/245dd80c80314ad9aecd6457f33402e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/245dd80c80314ad9aecd6457f33402e1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2n9cE6_4U05kMFOjW_g4NeCmwQY=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.832554+00 2025-12-09 10:15:13.832558+00 11773 C441#橙色 SPMX-20240815306960 \N \N \N 1 \N [{"file_id": "db0b7527-2d2a-4cf7-9d1f-18b9273b367e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be52ac6fcc1c4e039a1ba69097eed705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be52ac6fcc1c4e039a1ba69097eed705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be52ac6fcc1c4e039a1ba69097eed705.jpg", "file_size": 89072, "is_delete": false, "file_type": 1, "original_file_name": "C441#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be52ac6fcc1c4e039a1ba69097eed705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be52ac6fcc1c4e039a1ba69097eed705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be52ac6fcc1c4e039a1ba69097eed705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be52ac6fcc1c4e039a1ba69097eed705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be52ac6fcc1c4e039a1ba69097eed705.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KSCWXZUw0KJOze5M3iIhc25JBo=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.834587+00 2025-12-09 10:15:13.834591+00 11774 23-2118#A3-4XL SPMX-20240815306953 \N \N \N 1 \N [{"file_id": "2925163b-1c2f-49c6-a525-60da1fc91bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc46d5acdf644fb8c80c73dcc7bcb41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc46d5acdf644fb8c80c73dcc7bcb41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc46d5acdf644fb8c80c73dcc7bcb41.jpg", "file_size": 16984, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc46d5acdf644fb8c80c73dcc7bcb41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc46d5acdf644fb8c80c73dcc7bcb41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc46d5acdf644fb8c80c73dcc7bcb41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc46d5acdf644fb8c80c73dcc7bcb41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc46d5acdf644fb8c80c73dcc7bcb41.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDALx2oxjQi-8ES4xSopcGtTGV8=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.836668+00 2025-12-09 10:15:13.836672+00 11775 HT1030-2#V5 SPMX-20240815306952 \N \N \N 1 \N [{"file_id": "446afb9e-5295-4059-a121-545b3b754832", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0366c39f0cf34a82a6f23c0e99fff189.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0366c39f0cf34a82a6f23c0e99fff189.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0366c39f0cf34a82a6f23c0e99fff189.jpg", "file_size": 16674, "is_delete": false, "file_type": 1, "original_file_name": "HT1030-2#V5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366c39f0cf34a82a6f23c0e99fff189.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366c39f0cf34a82a6f23c0e99fff189.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0366c39f0cf34a82a6f23c0e99fff189.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0366c39f0cf34a82a6f23c0e99fff189.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0366c39f0cf34a82a6f23c0e99fff189.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:coFbYMXi3CxF6zWwaNuh_Ujw-HY=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.838514+00 2025-12-09 10:15:13.838519+00 11776 8157#桔红色 SPMX-20240815306963 \N \N \N 1 \N [{"file_id": "2bee033f-aaaf-4128-93d5-96615b4d611e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e38edb2ba85d41fda5c3833c321c228e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e38edb2ba85d41fda5c3833c321c228e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e38edb2ba85d41fda5c3833c321c228e.jpg", "file_size": 14710, "is_delete": false, "file_type": 1, "original_file_name": "8157#桔红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38edb2ba85d41fda5c3833c321c228e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38edb2ba85d41fda5c3833c321c228e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38edb2ba85d41fda5c3833c321c228e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e38edb2ba85d41fda5c3833c321c228e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e38edb2ba85d41fda5c3833c321c228e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dq6NqQI21KRT0_iVZ3XDgRkbmeU=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.840634+00 2025-12-09 10:15:13.840638+00 11777 8157#原版色 SPMX-20240815306951 \N \N \N 1 \N [{"file_id": "5b53af96-ea47-479d-8dc6-4b0700c62101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e6e6e4d2334a8190c788e120bd610b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e6e6e4d2334a8190c788e120bd610b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e6e6e4d2334a8190c788e120bd610b.jpg", "file_size": 16349, "is_delete": false, "file_type": 1, "original_file_name": "8157#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e6e6e4d2334a8190c788e120bd610b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e6e6e4d2334a8190c788e120bd610b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e6e6e4d2334a8190c788e120bd610b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e6e6e4d2334a8190c788e120bd610b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e6e6e4d2334a8190c788e120bd610b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLhdEkMNqk98ij_dmmSK6fQRzMo=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.842696+00 2025-12-09 10:15:13.8427+00 11778 JTSS301FW#VS-D3 SPMX-20240815306955 \N \N \N 1 \N [{"file_id": "cb6e8eb3-d4ba-459d-a0e2-9399e9f18714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d28d73ee8f604f439145a63e7af61b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d28d73ee8f604f439145a63e7af61b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d28d73ee8f604f439145a63e7af61b43.jpg", "file_size": 25295, "is_delete": false, "file_type": 1, "original_file_name": "JTSS301FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d28d73ee8f604f439145a63e7af61b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d28d73ee8f604f439145a63e7af61b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d28d73ee8f604f439145a63e7af61b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d28d73ee8f604f439145a63e7af61b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d28d73ee8f604f439145a63e7af61b43.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-To3LOwp0QSI9Pd6M-9iO-VcvKU=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.844563+00 2025-12-09 10:15:13.844568+00 11779 LJH0100-1#1号色 SPMX-20240815306956 \N \N \N 1 \N [{"file_id": "8df91a13-a6c3-4482-a6c5-a012754f7f1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2039d3f964743e188aab4b4263a8a74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2039d3f964743e188aab4b4263a8a74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2039d3f964743e188aab4b4263a8a74.jpg", "file_size": 43159, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-1#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2039d3f964743e188aab4b4263a8a74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2039d3f964743e188aab4b4263a8a74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2039d3f964743e188aab4b4263a8a74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2039d3f964743e188aab4b4263a8a74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2039d3f964743e188aab4b4263a8a74.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhBpiEWyjK-HFJBT3_dKzwwgeNo=", "createTime": "2024-08-15 14:52:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.846614+00 2025-12-09 10:15:13.846618+00 11780 8157#橘色花 SPMX-20240815306974 \N \N \N 1 \N [{"file_id": "a79355fa-4c38-46e7-8884-319f957ac109", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4c4267a533542d68c5f358f7ba94061.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4c4267a533542d68c5f358f7ba94061.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4c4267a533542d68c5f358f7ba94061.jpg", "file_size": 21957, "is_delete": false, "file_type": 1, "original_file_name": "8157#橘色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c4267a533542d68c5f358f7ba94061.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c4267a533542d68c5f358f7ba94061.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4c4267a533542d68c5f358f7ba94061.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4c4267a533542d68c5f358f7ba94061.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4c4267a533542d68c5f358f7ba94061.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgDz75ZdXs1TMIkaBtmEkzd8Xro=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.848719+00 2025-12-09 10:15:13.848723+00 11781 111#-灰色 SPMX-20240815306964 \N \N \N 1 \N [{"file_id": "b0e2354f-2049-473a-8637-be0e3bdcc57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e4611f9764e47f890f08eb4ea9242a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e4611f9764e47f890f08eb4ea9242a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e4611f9764e47f890f08eb4ea9242a6.jpg", "file_size": 59150, "is_delete": false, "file_type": 1, "original_file_name": "111#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4611f9764e47f890f08eb4ea9242a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4611f9764e47f890f08eb4ea9242a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4611f9764e47f890f08eb4ea9242a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e4611f9764e47f890f08eb4ea9242a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e4611f9764e47f890f08eb4ea9242a6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dj1ozY0uyybm3U7iggei11-9CIg=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.850769+00 2025-12-09 10:15:13.850774+00 11782 DL31023-2#浅蓝绿 SPMX-20240815306969 \N \N \N 1 \N [{"file_id": "28d754d6-414c-41c9-a6a7-ea682ce155d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3869f88e90f040d7942164d2786fa0f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3869f88e90f040d7942164d2786fa0f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3869f88e90f040d7942164d2786fa0f8.jpg", "file_size": 14728, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#浅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869f88e90f040d7942164d2786fa0f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869f88e90f040d7942164d2786fa0f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869f88e90f040d7942164d2786fa0f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3869f88e90f040d7942164d2786fa0f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3869f88e90f040d7942164d2786fa0f8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OX7V4QPH3cPXiS9_TEkXfZB5t1A=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.852616+00 2025-12-09 10:15:13.852621+00 11783 C441#玫红 SPMX-20240815306973 \N \N \N 1 \N [{"file_id": "cf4b13f7-fd0b-4276-ae86-4fc7b9005d9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddcd0d7904784505ad1e32686ae1b8ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddcd0d7904784505ad1e32686ae1b8ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddcd0d7904784505ad1e32686ae1b8ee.jpg", "file_size": 79833, "is_delete": false, "file_type": 1, "original_file_name": "C441#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd0d7904784505ad1e32686ae1b8ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd0d7904784505ad1e32686ae1b8ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddcd0d7904784505ad1e32686ae1b8ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddcd0d7904784505ad1e32686ae1b8ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddcd0d7904784505ad1e32686ae1b8ee.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEgK16G0e7ApFIOS1LzbZaRgEK8=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.862871+00 2025-12-09 10:15:13.862877+00 11788 JTSS303FW#VS-D3 SPMX-20240815306975 \N \N \N 1 \N [{"file_id": "5f1e51ea-0623-404a-a958-b6a04db73513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "906f25ff1366485e8e76de08ce380f8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "906f25ff1366485e8e76de08ce380f8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "906f25ff1366485e8e76de08ce380f8c.jpg", "file_size": 10375, "is_delete": false, "file_type": 1, "original_file_name": "JTSS303FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906f25ff1366485e8e76de08ce380f8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906f25ff1366485e8e76de08ce380f8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906f25ff1366485e8e76de08ce380f8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/906f25ff1366485e8e76de08ce380f8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/906f25ff1366485e8e76de08ce380f8c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tnOwyije7y3w52FDuwBp12F0vg=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.854721+00 2025-12-09 10:15:13.854726+00 11784 23-2118#A3-领子3XL SPMX-20240815306965 \N \N \N 1 \N [{"file_id": "021a3f84-a321-4e21-9dcd-17f4b3ad702b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68cf4a91f686422b87bdf9e0ab2f1c0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68cf4a91f686422b87bdf9e0ab2f1c0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68cf4a91f686422b87bdf9e0ab2f1c0d.jpg", "file_size": 11479, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cf4a91f686422b87bdf9e0ab2f1c0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cf4a91f686422b87bdf9e0ab2f1c0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cf4a91f686422b87bdf9e0ab2f1c0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68cf4a91f686422b87bdf9e0ab2f1c0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68cf4a91f686422b87bdf9e0ab2f1c0d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzUi3dc60aMEeeABryk7o2qPt8k=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.856817+00 2025-12-09 10:15:13.856823+00 11785 111#-白色 SPMX-20240815306976 \N \N \N 1 \N [{"file_id": "6df8d2e7-b5a6-4695-a6e9-5539e9bad769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72556d88f33743839ad0e0950efd03e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72556d88f33743839ad0e0950efd03e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72556d88f33743839ad0e0950efd03e8.jpg", "file_size": 51775, "is_delete": false, "file_type": 1, "original_file_name": "111#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72556d88f33743839ad0e0950efd03e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72556d88f33743839ad0e0950efd03e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72556d88f33743839ad0e0950efd03e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72556d88f33743839ad0e0950efd03e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72556d88f33743839ad0e0950efd03e8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-Xv07V_DT9caciXfYA5clm_zGA=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.858683+00 2025-12-09 10:15:13.858687+00 11786 0003-A33#LWQ15 SPMX-20240815306968 \N \N \N 1 \N [{"file_id": "d8727af7-23b9-4a46-b935-8a9d3e0bb477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83db0f58538f4f6a9cb76c6dcd6482ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83db0f58538f4f6a9cb76c6dcd6482ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83db0f58538f4f6a9cb76c6dcd6482ee.jpg", "file_size": 11863, "is_delete": false, "file_type": 1, "original_file_name": "0003-A33#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83db0f58538f4f6a9cb76c6dcd6482ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83db0f58538f4f6a9cb76c6dcd6482ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83db0f58538f4f6a9cb76c6dcd6482ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83db0f58538f4f6a9cb76c6dcd6482ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83db0f58538f4f6a9cb76c6dcd6482ee.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XN0mqfKAM6ECLAcRcysy5cbKxk=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.860773+00 2025-12-09 10:15:13.860778+00 11787 23-2118#A3-领子4XL SPMX-20240815306978 \N \N \N 1 \N [{"file_id": "c626f39f-3f5a-4004-b9b1-6913f16db431", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f325db86c3e4544a239c6fd1218261f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f325db86c3e4544a239c6fd1218261f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f325db86c3e4544a239c6fd1218261f.jpg", "file_size": 11699, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f325db86c3e4544a239c6fd1218261f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f325db86c3e4544a239c6fd1218261f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f325db86c3e4544a239c6fd1218261f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f325db86c3e4544a239c6fd1218261f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f325db86c3e4544a239c6fd1218261f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxYyg_bEqDYR5ubwRzRTFYE0eGo=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.864966+00 2025-12-09 10:15:13.864976+00 11789 LJH0100-1#2号色 SPMX-20240815306966 \N \N \N 1 \N [{"file_id": "38e98964-86cf-4db9-81af-ea135b024434", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc9481725524b61a168e9788a4bfa07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc9481725524b61a168e9788a4bfa07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc9481725524b61a168e9788a4bfa07.jpg", "file_size": 44555, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-1#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc9481725524b61a168e9788a4bfa07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc9481725524b61a168e9788a4bfa07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc9481725524b61a168e9788a4bfa07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc9481725524b61a168e9788a4bfa07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc9481725524b61a168e9788a4bfa07.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bcWi7YBr7T65nVghhQhGLUIQ2NM=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.866879+00 2025-12-09 10:15:13.866884+00 11790 HT103FW#白VS-D3 SPMX-20240815306971 \N \N \N 1 \N [{"file_id": "205d322b-1f92-4945-8b28-d0d76cb2b4f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2093174a933b40b694c59cca3f33016d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2093174a933b40b694c59cca3f33016d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2093174a933b40b694c59cca3f33016d.jpg", "file_size": 12339, "is_delete": false, "file_type": 1, "original_file_name": "HT103FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2093174a933b40b694c59cca3f33016d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2093174a933b40b694c59cca3f33016d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2093174a933b40b694c59cca3f33016d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2093174a933b40b694c59cca3f33016d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2093174a933b40b694c59cca3f33016d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQkEbMQm9IEKQS9PcfGD1W6tJDI=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.868979+00 2025-12-09 10:15:13.868984+00 11791 JTSS302FW#VS-D3 SPMX-20240815306967 \N \N \N 1 \N [{"file_id": "b4430680-0070-4398-933c-0a8ddd1014fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6243b1a99694d3b93d23ef2edefaf42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6243b1a99694d3b93d23ef2edefaf42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6243b1a99694d3b93d23ef2edefaf42.jpg", "file_size": 12361, "is_delete": false, "file_type": 1, "original_file_name": "JTSS302FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243b1a99694d3b93d23ef2edefaf42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243b1a99694d3b93d23ef2edefaf42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243b1a99694d3b93d23ef2edefaf42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6243b1a99694d3b93d23ef2edefaf42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6243b1a99694d3b93d23ef2edefaf42.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LwoufB_3Ds4psJW9wKGx6Oyu7s=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.870814+00 2025-12-09 10:15:13.870818+00 11792 FJ003FW#VS-D3 SPMX-20240815306970 \N \N \N 1 \N [{"file_id": "ec9b1e4e-66b0-498d-b8e7-92dbdb5d6b12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b618813f6d54b22b33d8ce8893dff49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b618813f6d54b22b33d8ce8893dff49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b618813f6d54b22b33d8ce8893dff49.jpg", "file_size": 9300, "is_delete": false, "file_type": 1, "original_file_name": "FJ003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b618813f6d54b22b33d8ce8893dff49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b618813f6d54b22b33d8ce8893dff49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b618813f6d54b22b33d8ce8893dff49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b618813f6d54b22b33d8ce8893dff49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b618813f6d54b22b33d8ce8893dff49.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OUlKkdpNnLw9-SfNWLxtUuKOdxs=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.872912+00 2025-12-09 10:15:13.872917+00 11793 LZ1295#背心款3号色 SPMX-20240815306972 \N \N \N 1 \N [{"file_id": "eed5fac1-711f-4b2d-b1be-238af30081b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "002ab24ab3de410d817c086cc2e67903.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "002ab24ab3de410d817c086cc2e67903.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "002ab24ab3de410d817c086cc2e67903.jpg", "file_size": 16293, "is_delete": false, "file_type": 1, "original_file_name": "LZ1295#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002ab24ab3de410d817c086cc2e67903.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002ab24ab3de410d817c086cc2e67903.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002ab24ab3de410d817c086cc2e67903.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/002ab24ab3de410d817c086cc2e67903.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/002ab24ab3de410d817c086cc2e67903.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2HwWvdRNTp5-bkyeTZ4PLzzwpUk=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.875003+00 2025-12-09 10:15:13.875008+00 11794 LJH0100-1#3号色 SPMX-20240815306977 \N \N \N 1 \N [{"file_id": "6451145f-be66-43ba-ac13-9a0dcca7715d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "254de4d32a01493a8d30c5617c7c3437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "254de4d32a01493a8d30c5617c7c3437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "254de4d32a01493a8d30c5617c7c3437.jpg", "file_size": 43035, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-1#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254de4d32a01493a8d30c5617c7c3437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254de4d32a01493a8d30c5617c7c3437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/254de4d32a01493a8d30c5617c7c3437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/254de4d32a01493a8d30c5617c7c3437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/254de4d32a01493a8d30c5617c7c3437.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:thXz2BfiL7EQ9UeIUEzRvmpXabA=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.876883+00 2025-12-09 10:15:13.876887+00 11795 DL31023-2#深水红 SPMX-20240815306980 \N \N \N 1 \N [{"file_id": "5fee0a90-01e6-4cdd-9e49-7802684a004d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4da2f7137434376856c6ae28b2ffc1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4da2f7137434376856c6ae28b2ffc1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4da2f7137434376856c6ae28b2ffc1b.jpg", "file_size": 14708, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da2f7137434376856c6ae28b2ffc1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da2f7137434376856c6ae28b2ffc1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da2f7137434376856c6ae28b2ffc1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4da2f7137434376856c6ae28b2ffc1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4da2f7137434376856c6ae28b2ffc1b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gq5eBtZDkY3Ao5PYg46lEcNsMI0=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.878955+00 2025-12-09 10:15:13.87896+00 11796 HT103FW#粉VS-D3 SPMX-20240815306982 \N \N \N 1 \N [{"file_id": "3f42341d-0965-4506-9164-4ba3593f6fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b00746a1225e4b2dac9fd96c4a45f016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b00746a1225e4b2dac9fd96c4a45f016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b00746a1225e4b2dac9fd96c4a45f016.jpg", "file_size": 12489, "is_delete": false, "file_type": 1, "original_file_name": "HT103FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00746a1225e4b2dac9fd96c4a45f016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00746a1225e4b2dac9fd96c4a45f016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00746a1225e4b2dac9fd96c4a45f016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b00746a1225e4b2dac9fd96c4a45f016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b00746a1225e4b2dac9fd96c4a45f016.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJF60a1WnuQF32Wjgpv24qlC-lA=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.88099+00 2025-12-09 10:15:13.880994+00 11797 23-2118#A4-3XL SPMX-20240815306989 \N \N \N 1 \N [{"file_id": "4677a120-bb5c-439b-a176-fe4ff87bd3c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cd32e974fbe4d21be967c907b06d5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cd32e974fbe4d21be967c907b06d5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cd32e974fbe4d21be967c907b06d5cb.jpg", "file_size": 18773, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd32e974fbe4d21be967c907b06d5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd32e974fbe4d21be967c907b06d5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd32e974fbe4d21be967c907b06d5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cd32e974fbe4d21be967c907b06d5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cd32e974fbe4d21be967c907b06d5cb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdrXm6V-SSNb_-Q0RHBGsdu1x5A=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.883085+00 2025-12-09 10:15:13.88309+00 11798 FJ003FWE#VS-D3 SPMX-20240815306981 \N \N \N 1 \N [{"file_id": "cafd37c1-4bf7-4f46-9c0c-9738f3b82417", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c19bb29aedfc4507b2ce6bb313ddc50f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c19bb29aedfc4507b2ce6bb313ddc50f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c19bb29aedfc4507b2ce6bb313ddc50f.jpg", "file_size": 17759, "is_delete": false, "file_type": 1, "original_file_name": "FJ003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19bb29aedfc4507b2ce6bb313ddc50f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19bb29aedfc4507b2ce6bb313ddc50f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19bb29aedfc4507b2ce6bb313ddc50f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c19bb29aedfc4507b2ce6bb313ddc50f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c19bb29aedfc4507b2ce6bb313ddc50f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBj7U99-d1ITzi3v8fAXMsjEuhs=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.884897+00 2025-12-09 10:15:13.884901+00 11799 LZ1295#背心款4号色 SPMX-20240815306984 \N \N \N 1 \N [{"file_id": "685b4dc7-1d64-48c1-b59c-0d3314ea727b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b0771f3b4cf4383807d825b97ff3195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b0771f3b4cf4383807d825b97ff3195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b0771f3b4cf4383807d825b97ff3195.jpg", "file_size": 16794, "is_delete": false, "file_type": 1, "original_file_name": "LZ1295#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0771f3b4cf4383807d825b97ff3195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0771f3b4cf4383807d825b97ff3195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0771f3b4cf4383807d825b97ff3195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b0771f3b4cf4383807d825b97ff3195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b0771f3b4cf4383807d825b97ff3195.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7F179iiHAE9K7XY-cR5B1mTdtlU=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.886913+00 2025-12-09 10:15:13.886919+00 11800 111#-黑色 SPMX-20240815306988 \N \N \N 1 \N [{"file_id": "b988a2a6-047c-4a01-b889-141216a4e675", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca0620276ce54e8eb98eb2ecceeac0b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca0620276ce54e8eb98eb2ecceeac0b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca0620276ce54e8eb98eb2ecceeac0b5.jpg", "file_size": 50766, "is_delete": false, "file_type": 1, "original_file_name": "111#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca0620276ce54e8eb98eb2ecceeac0b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca0620276ce54e8eb98eb2ecceeac0b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca0620276ce54e8eb98eb2ecceeac0b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca0620276ce54e8eb98eb2ecceeac0b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca0620276ce54e8eb98eb2ecceeac0b5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IW4KXxRe0b8wMBrAzPc8uqZ2dD0=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.889057+00 2025-12-09 10:15:13.889062+00 11801 JTSS304FW#VS-D3 SPMX-20240815306986 \N \N \N 1 \N [{"file_id": "937db27f-ffa4-4474-bef4-4c48f178cb1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ce595c9395d40868d1989886488fd4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ce595c9395d40868d1989886488fd4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ce595c9395d40868d1989886488fd4c.jpg", "file_size": 12404, "is_delete": false, "file_type": 1, "original_file_name": "JTSS304FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ce595c9395d40868d1989886488fd4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ce595c9395d40868d1989886488fd4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ce595c9395d40868d1989886488fd4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ce595c9395d40868d1989886488fd4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ce595c9395d40868d1989886488fd4c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAwpt7r0TFqEW0ZCq7ZeL_ii4o8=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.891175+00 2025-12-09 10:15:13.891181+00 11802 HT103FW#红VS-D3 SPMX-20240815306991 \N \N \N 1 \N [{"file_id": "9c954384-14eb-4f94-ab9c-b2b17f0d6d7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8976e98821461b93ae0cd7b7ea0c82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8976e98821461b93ae0cd7b7ea0c82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8976e98821461b93ae0cd7b7ea0c82.jpg", "file_size": 12948, "is_delete": false, "file_type": 1, "original_file_name": "HT103FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8976e98821461b93ae0cd7b7ea0c82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8976e98821461b93ae0cd7b7ea0c82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8976e98821461b93ae0cd7b7ea0c82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8976e98821461b93ae0cd7b7ea0c82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8976e98821461b93ae0cd7b7ea0c82.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzaaUaKnvShtNqEMsy-vcoMl7wo=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.893073+00 2025-12-09 10:15:13.893078+00 11803 DL31023-2#玫红色 SPMX-20240815306990 \N \N \N 1 \N [{"file_id": "0f0a6bea-487d-4d3f-91ed-382aaa79be9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9817cb273317464fb46168e77d60b1b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9817cb273317464fb46168e77d60b1b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9817cb273317464fb46168e77d60b1b3.jpg", "file_size": 14636, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9817cb273317464fb46168e77d60b1b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9817cb273317464fb46168e77d60b1b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9817cb273317464fb46168e77d60b1b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9817cb273317464fb46168e77d60b1b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9817cb273317464fb46168e77d60b1b3.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7s61HJYZx2mevywHSDs3VZ0cjc=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.895139+00 2025-12-09 10:15:13.895144+00 11804 LZ1295#背心款5号色 SPMX-20240815306992 \N \N \N 1 \N [{"file_id": "d56a5a6f-9662-4038-90b2-adb2fa126bc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b0158c3efbb43efbc94c8498aa9719a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b0158c3efbb43efbc94c8498aa9719a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b0158c3efbb43efbc94c8498aa9719a.jpg", "file_size": 15145, "is_delete": false, "file_type": 1, "original_file_name": "LZ1295#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0158c3efbb43efbc94c8498aa9719a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0158c3efbb43efbc94c8498aa9719a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b0158c3efbb43efbc94c8498aa9719a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b0158c3efbb43efbc94c8498aa9719a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b0158c3efbb43efbc94c8498aa9719a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVNQARKINEk5teCli1q7jcZlR5Q=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.897016+00 2025-12-09 10:15:13.897021+00 11805 0003-A35#LWQ15 SPMX-20240815306994 \N \N \N 1 \N [{"file_id": "00857b4f-0c4c-483f-a000-db6a5e799bcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5052cabe8821424180f49bc49212dcc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5052cabe8821424180f49bc49212dcc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5052cabe8821424180f49bc49212dcc1.jpg", "file_size": 43011, "is_delete": false, "file_type": 1, "original_file_name": "0003-A35#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5052cabe8821424180f49bc49212dcc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5052cabe8821424180f49bc49212dcc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5052cabe8821424180f49bc49212dcc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5052cabe8821424180f49bc49212dcc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5052cabe8821424180f49bc49212dcc1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7EPOrT7f3mgUqEWwXi7QMRjT33Y=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.899069+00 2025-12-09 10:15:13.899073+00 11806 0003-A34#LWQ15 SPMX-20240815306979 \N \N \N 1 \N [{"file_id": "d7087c9f-d7b7-49a3-b1b2-92da5450519b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef857c4287d40d18ac7b11727bb3836.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef857c4287d40d18ac7b11727bb3836.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef857c4287d40d18ac7b11727bb3836.jpg", "file_size": 20246, "is_delete": false, "file_type": 1, "original_file_name": "0003-A34#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef857c4287d40d18ac7b11727bb3836.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef857c4287d40d18ac7b11727bb3836.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef857c4287d40d18ac7b11727bb3836.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef857c4287d40d18ac7b11727bb3836.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef857c4287d40d18ac7b11727bb3836.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4WdgNvLOKwYMkgdKhUMPDqSaTA=", "createTime": "2024-08-15 14:52:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.90116+00 2025-12-09 10:15:13.901166+00 11807 8157#玫红色 SPMX-20240815306983 \N \N \N 1 \N [{"file_id": "c6a8023b-69fd-4e0e-9b84-7271e560c24c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e5c009dfc59408ba6cadaab88d0e7b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e5c009dfc59408ba6cadaab88d0e7b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e5c009dfc59408ba6cadaab88d0e7b6.jpg", "file_size": 15223, "is_delete": false, "file_type": 1, "original_file_name": "8157#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e5c009dfc59408ba6cadaab88d0e7b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e5c009dfc59408ba6cadaab88d0e7b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e5c009dfc59408ba6cadaab88d0e7b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e5c009dfc59408ba6cadaab88d0e7b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e5c009dfc59408ba6cadaab88d0e7b6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NHP2YjgZWJX7IrwEju_63-niSq4=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.903213+00 2025-12-09 10:15:13.903218+00 11808 FJ004# SPMX-20240815306993 \N \N \N 1 \N [{"file_id": "af07a032-3a01-40d0-b576-1ff19be5e0bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f70afb19cec74b50af050f9c4129160b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f70afb19cec74b50af050f9c4129160b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f70afb19cec74b50af050f9c4129160b.jpg", "file_size": 26893, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70afb19cec74b50af050f9c4129160b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70afb19cec74b50af050f9c4129160b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70afb19cec74b50af050f9c4129160b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f70afb19cec74b50af050f9c4129160b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f70afb19cec74b50af050f9c4129160b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iLlCyCKmn85Wuv4nsyMaYntK3Y=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.905087+00 2025-12-09 10:15:13.905092+00 11809 C441#黑色 SPMX-20240815306985 \N \N \N 1 \N [{"file_id": "1747a42a-f692-4303-b22a-ecbf29d5b8ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2049270ac342476d8d625b9e2fa4a9d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2049270ac342476d8d625b9e2fa4a9d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2049270ac342476d8d625b9e2fa4a9d9.jpg", "file_size": 76462, "is_delete": false, "file_type": 1, "original_file_name": "C441#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2049270ac342476d8d625b9e2fa4a9d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2049270ac342476d8d625b9e2fa4a9d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2049270ac342476d8d625b9e2fa4a9d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2049270ac342476d8d625b9e2fa4a9d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2049270ac342476d8d625b9e2fa4a9d9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BoUfjbh9Lk3JAcoIeZAl90QAfBs=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.90718+00 2025-12-09 10:15:13.907185+00 11810 LJH0100-1#4号色 SPMX-20240815306987 \N \N \N 1 \N [{"file_id": "a3454662-9c34-4f25-84d8-22e6f94bd929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d99704d8a4b4aab8dcfbbbf39063850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d99704d8a4b4aab8dcfbbbf39063850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d99704d8a4b4aab8dcfbbbf39063850.jpg", "file_size": 45354, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-1#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d99704d8a4b4aab8dcfbbbf39063850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d99704d8a4b4aab8dcfbbbf39063850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d99704d8a4b4aab8dcfbbbf39063850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d99704d8a4b4aab8dcfbbbf39063850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d99704d8a4b4aab8dcfbbbf39063850.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvIkXaIvjba44Qk7nyszFtV0JEQ=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.909247+00 2025-12-09 10:15:13.909252+00 11811 8157#绿色 SPMX-20240815306995 \N \N \N 1 \N [{"file_id": "a7969f53-d535-47dd-9a2f-9bf467ea6fd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a79c0c407fe456cae979a835b153b20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a79c0c407fe456cae979a835b153b20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a79c0c407fe456cae979a835b153b20.jpg", "file_size": 14201, "is_delete": false, "file_type": 1, "original_file_name": "8157#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a79c0c407fe456cae979a835b153b20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a79c0c407fe456cae979a835b153b20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a79c0c407fe456cae979a835b153b20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a79c0c407fe456cae979a835b153b20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a79c0c407fe456cae979a835b153b20.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMa9x9HAwS1v70kjc0smpDF7r_0=", "createTime": "2024-08-15 14:52:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.911109+00 2025-12-09 10:15:13.911114+00 11812 C442#兰色 SPMX-20240815306996 \N \N \N 1 \N [{"file_id": "5dce4f81-1548-4354-9646-26e22b4adfb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27aeb13b58ea44acb5bf245611808ce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27aeb13b58ea44acb5bf245611808ce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27aeb13b58ea44acb5bf245611808ce8.jpg", "file_size": 77482, "is_delete": false, "file_type": 1, "original_file_name": "C442#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aeb13b58ea44acb5bf245611808ce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aeb13b58ea44acb5bf245611808ce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aeb13b58ea44acb5bf245611808ce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27aeb13b58ea44acb5bf245611808ce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27aeb13b58ea44acb5bf245611808ce8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfFVfx-bh5IK1Qkb8E713VAhyEw=", "createTime": "2024-08-15 14:52:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.913184+00 2025-12-09 10:15:13.913189+00 11813 DL31023-2#皮粉色 SPMX-20240815307004 \N \N \N 1 \N [{"file_id": "4f6d894b-ceb2-41f7-a139-f592588036c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bab781b9eb474a68a9f4c0a15bcf92c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bab781b9eb474a68a9f4c0a15bcf92c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bab781b9eb474a68a9f4c0a15bcf92c5.jpg", "file_size": 14454, "is_delete": false, "file_type": 1, "original_file_name": "DL31023-2#皮粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab781b9eb474a68a9f4c0a15bcf92c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab781b9eb474a68a9f4c0a15bcf92c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bab781b9eb474a68a9f4c0a15bcf92c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bab781b9eb474a68a9f4c0a15bcf92c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bab781b9eb474a68a9f4c0a15bcf92c5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOFgtO4fqoX5noExd_nTxvefagY=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.915244+00 2025-12-09 10:15:13.915249+00 11814 LZ1296#背心款1号色 SPMX-20240815306998 \N \N \N 1 \N [{"file_id": "d320980b-5409-4a9c-9b99-dc00a694b2d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ad9c4dc36a9439e861cb55f772e03f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ad9c4dc36a9439e861cb55f772e03f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ad9c4dc36a9439e861cb55f772e03f6.jpg", "file_size": 21338, "is_delete": false, "file_type": 1, "original_file_name": "LZ1296#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad9c4dc36a9439e861cb55f772e03f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad9c4dc36a9439e861cb55f772e03f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad9c4dc36a9439e861cb55f772e03f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ad9c4dc36a9439e861cb55f772e03f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ad9c4dc36a9439e861cb55f772e03f6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LeVo-V74no7Ccq03TpfAfu7O6Fs=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.91735+00 2025-12-09 10:15:13.917354+00 11815 111 SPMX-20240815307002 \N \N \N 1 \N [{"file_id": "5b97b77f-c598-41a3-b548-1711da39cc8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e1aa77aeefe4b8d993e2712f07fe867.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e1aa77aeefe4b8d993e2712f07fe867.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e1aa77aeefe4b8d993e2712f07fe867.jpg", "file_size": 116344, "is_delete": false, "file_type": 1, "original_file_name": "111.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1aa77aeefe4b8d993e2712f07fe867.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1aa77aeefe4b8d993e2712f07fe867.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e1aa77aeefe4b8d993e2712f07fe867.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e1aa77aeefe4b8d993e2712f07fe867.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e1aa77aeefe4b8d993e2712f07fe867.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K21CjVrarkAT0Xi7pIiJXURWcc4=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.919177+00 2025-12-09 10:15:13.919182+00 11816 23-2118#A4-4XL SPMX-20240815307003 \N \N \N 1 \N [{"file_id": "9c818d82-ebcf-41af-afc2-21ec4d733d5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2626b8bff74a493aa02f48d7884179a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2626b8bff74a493aa02f48d7884179a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2626b8bff74a493aa02f48d7884179a8.jpg", "file_size": 18147, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2626b8bff74a493aa02f48d7884179a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2626b8bff74a493aa02f48d7884179a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2626b8bff74a493aa02f48d7884179a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2626b8bff74a493aa02f48d7884179a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2626b8bff74a493aa02f48d7884179a8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCio7IjW6gMCN6x1owHHHUrs7Bg=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.921357+00 2025-12-09 10:15:13.921362+00 11817 C442#墨绿 SPMX-20240815307005 \N \N \N 1 \N [{"file_id": "9cf0df4a-ae27-4755-bf97-3264e5ab7523", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9a77d8a7f14419dac814d1f873111ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9a77d8a7f14419dac814d1f873111ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9a77d8a7f14419dac814d1f873111ec.jpg", "file_size": 81473, "is_delete": false, "file_type": 1, "original_file_name": "C442#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a77d8a7f14419dac814d1f873111ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a77d8a7f14419dac814d1f873111ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a77d8a7f14419dac814d1f873111ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9a77d8a7f14419dac814d1f873111ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9a77d8a7f14419dac814d1f873111ec.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-by8Jv6VL5UJ9a7eXWIV3kzXtY=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.923408+00 2025-12-09 10:15:13.923413+00 11818 JTSS305FW#VS-D3 SPMX-20240815306997 \N \N \N 1 \N [{"file_id": "736096a3-521d-49b0-a4f7-237907b96945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7c4258a3f9b44d5b20c34739f55fcd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7c4258a3f9b44d5b20c34739f55fcd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7c4258a3f9b44d5b20c34739f55fcd4.jpg", "file_size": 8711, "is_delete": false, "file_type": 1, "original_file_name": "JTSS305FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c4258a3f9b44d5b20c34739f55fcd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c4258a3f9b44d5b20c34739f55fcd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7c4258a3f9b44d5b20c34739f55fcd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7c4258a3f9b44d5b20c34739f55fcd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7c4258a3f9b44d5b20c34739f55fcd4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3Tjkc2LwBUrSwsLKtmNBmXTgQU=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.925643+00 2025-12-09 10:15:13.925648+00 11819 8157#绿色花 SPMX-20240815307000 \N \N \N 1 \N [{"file_id": "ee4a3416-56f0-4f52-b164-a64c1ceb9367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29083d52300047bd9f7c2f4709adf276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29083d52300047bd9f7c2f4709adf276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29083d52300047bd9f7c2f4709adf276.jpg", "file_size": 22788, "is_delete": false, "file_type": 1, "original_file_name": "8157#绿色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29083d52300047bd9f7c2f4709adf276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29083d52300047bd9f7c2f4709adf276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29083d52300047bd9f7c2f4709adf276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29083d52300047bd9f7c2f4709adf276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29083d52300047bd9f7c2f4709adf276.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rI_OzBJ_F9jDNzsTJVLBQSygr0Q=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.928038+00 2025-12-09 10:15:13.928044+00 11820 0003-A36#LWQ15 SPMX-20240815307006 \N \N \N 1 \N [{"file_id": "fefa579d-5932-4de3-a4f9-fa264f4e3dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "607485a2ee5d48bb875ad0c2f4d9eec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "607485a2ee5d48bb875ad0c2f4d9eec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "607485a2ee5d48bb875ad0c2f4d9eec7.jpg", "file_size": 52210, "is_delete": false, "file_type": 1, "original_file_name": "0003-A36#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607485a2ee5d48bb875ad0c2f4d9eec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607485a2ee5d48bb875ad0c2f4d9eec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607485a2ee5d48bb875ad0c2f4d9eec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/607485a2ee5d48bb875ad0c2f4d9eec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/607485a2ee5d48bb875ad0c2f4d9eec7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZksent3UgrfnU6SJZz3ErD8M78=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.930162+00 2025-12-09 10:15:13.930167+00 11821 FJ004#3XL SPMX-20240815306999 \N \N \N 1 \N [{"file_id": "776b74a5-342f-4ad8-8148-b5ff0c08a50f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "342068110f1d4f3c9c4a8b04c2b29477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "342068110f1d4f3c9c4a8b04c2b29477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "342068110f1d4f3c9c4a8b04c2b29477.jpg", "file_size": 24101, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342068110f1d4f3c9c4a8b04c2b29477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342068110f1d4f3c9c4a8b04c2b29477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/342068110f1d4f3c9c4a8b04c2b29477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/342068110f1d4f3c9c4a8b04c2b29477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/342068110f1d4f3c9c4a8b04c2b29477.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tj9fO5C2GBkAqsWGKFhdwh3XlXE=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.93219+00 2025-12-09 10:15:13.932195+00 11822 HT11#WJC22 SPMX-20240815307007 \N \N \N 1 \N [{"file_id": "cb18d643-52c0-42ce-86cf-4dfd459530db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4869371c5d3d4e2ba17e048ed92bc893.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4869371c5d3d4e2ba17e048ed92bc893.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4869371c5d3d4e2ba17e048ed92bc893.jpg", "file_size": 25437, "is_delete": false, "file_type": 1, "original_file_name": "HT11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4869371c5d3d4e2ba17e048ed92bc893.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4869371c5d3d4e2ba17e048ed92bc893.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4869371c5d3d4e2ba17e048ed92bc893.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4869371c5d3d4e2ba17e048ed92bc893.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4869371c5d3d4e2ba17e048ed92bc893.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2HJFPvQn2muIZCBfed0SIddT3s=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.934295+00 2025-12-09 10:15:13.9343+00 11823 LJH0100-1#紫色 SPMX-20240815307001 \N \N \N 1 \N [{"file_id": "858d798a-2952-4163-bdb0-082dfbfd1061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d2db4c54bd54698935ab3c738c84d19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d2db4c54bd54698935ab3c738c84d19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d2db4c54bd54698935ab3c738c84d19.jpg", "file_size": 41288, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-1#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2db4c54bd54698935ab3c738c84d19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2db4c54bd54698935ab3c738c84d19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2db4c54bd54698935ab3c738c84d19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d2db4c54bd54698935ab3c738c84d19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d2db4c54bd54698935ab3c738c84d19.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zqk6tpB0_rmEsNBP69-Cbzw-1VU=", "createTime": "2024-08-15 14:53:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.937048+00 2025-12-09 10:15:13.937052+00 11824 23-2118#A4-领子3XL SPMX-20240815307014 \N \N \N 1 \N [{"file_id": "33ed004a-ddfb-4e7d-b656-4ccb87e8ad13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccc401ddfb8b437c923117720204bd7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccc401ddfb8b437c923117720204bd7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccc401ddfb8b437c923117720204bd7d.jpg", "file_size": 11452, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc401ddfb8b437c923117720204bd7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc401ddfb8b437c923117720204bd7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc401ddfb8b437c923117720204bd7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccc401ddfb8b437c923117720204bd7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccc401ddfb8b437c923117720204bd7d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XA6EExmFk_T1SUWukA4wGCsSylQ=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.939441+00 2025-12-09 10:15:13.939447+00 11825 FJ004#M SPMX-20240815307011 \N \N \N 1 \N [{"file_id": "8d7140cb-7e1e-417a-8996-27659cc927f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1165de16f77439286a5e0c9fe6f26be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1165de16f77439286a5e0c9fe6f26be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1165de16f77439286a5e0c9fe6f26be.jpg", "file_size": 27443, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1165de16f77439286a5e0c9fe6f26be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1165de16f77439286a5e0c9fe6f26be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1165de16f77439286a5e0c9fe6f26be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1165de16f77439286a5e0c9fe6f26be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1165de16f77439286a5e0c9fe6f26be.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goBoQBC0pFIRE2cJSs8c0FQopkA=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.94161+00 2025-12-09 10:15:13.941614+00 11826 0003-A37#LWQ15 SPMX-20240815307009 \N \N \N 1 \N [{"file_id": "e2ebd3ac-d64d-4767-a9f9-63cf4d407a6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d227678d280428ab287af6f8f1ef95b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d227678d280428ab287af6f8f1ef95b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d227678d280428ab287af6f8f1ef95b.jpg", "file_size": 77617, "is_delete": false, "file_type": 1, "original_file_name": "0003-A37#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d227678d280428ab287af6f8f1ef95b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d227678d280428ab287af6f8f1ef95b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d227678d280428ab287af6f8f1ef95b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d227678d280428ab287af6f8f1ef95b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d227678d280428ab287af6f8f1ef95b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwevzHnqGE630Vt8P3P4VZdIpNM=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.943462+00 2025-12-09 10:15:13.943466+00 11827 1110#WJC22原版 SPMX-20240815307010 \N \N \N 1 \N [{"file_id": "0a4e3b59-9b50-484f-90be-91778ffe22de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65f989ccb7984cbaa93286f922895453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65f989ccb7984cbaa93286f922895453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65f989ccb7984cbaa93286f922895453.jpg", "file_size": 17115, "is_delete": false, "file_type": 1, "original_file_name": "1110#WJC22原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f989ccb7984cbaa93286f922895453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f989ccb7984cbaa93286f922895453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f989ccb7984cbaa93286f922895453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65f989ccb7984cbaa93286f922895453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65f989ccb7984cbaa93286f922895453.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrEYZyLKutmNIhC7vLr2laH_vKc=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.954736+00 2025-12-09 10:15:13.954742+00 11832 HT1140FW#VS-D3 SPMX-20240815307016 \N \N \N 1 \N [{"file_id": "0c169c7d-b0d1-4a6e-bf69-76bd384f0bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c201c8a08a04ef88c04f250a4d38d64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c201c8a08a04ef88c04f250a4d38d64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c201c8a08a04ef88c04f250a4d38d64.jpg", "file_size": 13045, "is_delete": false, "file_type": 1, "original_file_name": "HT1140FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c201c8a08a04ef88c04f250a4d38d64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c201c8a08a04ef88c04f250a4d38d64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c201c8a08a04ef88c04f250a4d38d64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c201c8a08a04ef88c04f250a4d38d64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c201c8a08a04ef88c04f250a4d38d64.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEaVETwra0ZDjWGXXYx55K51JPU=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.945973+00 2025-12-09 10:15:13.945978+00 11828 LZ1296#背心款2号色 SPMX-20240815307015 \N \N \N 1 \N [{"file_id": "7b3662fe-a577-443e-92a1-f433eb421295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a46cf20f329c40dca7722ccd41085fab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a46cf20f329c40dca7722ccd41085fab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a46cf20f329c40dca7722ccd41085fab.jpg", "file_size": 20353, "is_delete": false, "file_type": 1, "original_file_name": "LZ1296#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46cf20f329c40dca7722ccd41085fab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46cf20f329c40dca7722ccd41085fab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46cf20f329c40dca7722ccd41085fab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a46cf20f329c40dca7722ccd41085fab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a46cf20f329c40dca7722ccd41085fab.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30At7OIKzoDJD5swAds1IpaDwCs=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.948328+00 2025-12-09 10:15:13.948333+00 11829 DL31049#前幅大红 SPMX-20240815307013 \N \N \N 1 \N [{"file_id": "b5e3733d-32ed-4f85-8a04-78dbefa145da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e328f1b2b1aa4539bce1d576acafa2fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e328f1b2b1aa4539bce1d576acafa2fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e328f1b2b1aa4539bce1d576acafa2fc.jpg", "file_size": 15808, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e328f1b2b1aa4539bce1d576acafa2fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e328f1b2b1aa4539bce1d576acafa2fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e328f1b2b1aa4539bce1d576acafa2fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e328f1b2b1aa4539bce1d576acafa2fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e328f1b2b1aa4539bce1d576acafa2fc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qa8XKaZ3l7DsNUlpt-MowaKqU38=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.950529+00 2025-12-09 10:15:13.950534+00 11830 JTSS306#VS-D3 SPMX-20240815307008 \N \N \N 1 \N [{"file_id": "8dd62173-0c47-4525-af10-5e3f00028bc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3450c5287ce54205b4b4234c7ae5d767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3450c5287ce54205b4b4234c7ae5d767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3450c5287ce54205b4b4234c7ae5d767.jpg", "file_size": 15596, "is_delete": false, "file_type": 1, "original_file_name": "JTSS306#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3450c5287ce54205b4b4234c7ae5d767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3450c5287ce54205b4b4234c7ae5d767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3450c5287ce54205b4b4234c7ae5d767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3450c5287ce54205b4b4234c7ae5d767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3450c5287ce54205b4b4234c7ae5d767.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vK-KlTmbqVIo-p6JYoGT1bburdM=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.952699+00 2025-12-09 10:15:13.952706+00 11831 LJH0100-10#图片色 SPMX-20240815307012 \N \N \N 1 \N [{"file_id": "b50e2343-c089-4c69-a279-69f770a676fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abe793496dc149fc92171e6bffa12d6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abe793496dc149fc92171e6bffa12d6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abe793496dc149fc92171e6bffa12d6d.jpg", "file_size": 73906, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-10#图片色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe793496dc149fc92171e6bffa12d6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe793496dc149fc92171e6bffa12d6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abe793496dc149fc92171e6bffa12d6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abe793496dc149fc92171e6bffa12d6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abe793496dc149fc92171e6bffa12d6d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-JW9arB3NARerDrAl_lg6mo-buQ=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.956772+00 2025-12-09 10:15:13.956777+00 11833 C442#大白 SPMX-20240815307018 \N \N \N 1 \N [{"file_id": "6c50cb0e-2501-40be-914b-6051c3197f2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4e969bf9ec840b6bc29d43bf035d7f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4e969bf9ec840b6bc29d43bf035d7f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4e969bf9ec840b6bc29d43bf035d7f4.jpg", "file_size": 76275, "is_delete": false, "file_type": 1, "original_file_name": "C442#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e969bf9ec840b6bc29d43bf035d7f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e969bf9ec840b6bc29d43bf035d7f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e969bf9ec840b6bc29d43bf035d7f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4e969bf9ec840b6bc29d43bf035d7f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4e969bf9ec840b6bc29d43bf035d7f4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MmCHJk7W9muj5nfYiiLJboMmk80=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.958885+00 2025-12-09 10:15:13.958891+00 11834 8157#蓝色花 SPMX-20240815307017 \N \N \N 1 \N [{"file_id": "3beaa89f-c793-4361-b79d-d9e561d25a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ca11de1f0d748b79f03f94767954beb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ca11de1f0d748b79f03f94767954beb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ca11de1f0d748b79f03f94767954beb.jpg", "file_size": 21802, "is_delete": false, "file_type": 1, "original_file_name": "8157#蓝色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca11de1f0d748b79f03f94767954beb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca11de1f0d748b79f03f94767954beb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ca11de1f0d748b79f03f94767954beb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ca11de1f0d748b79f03f94767954beb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ca11de1f0d748b79f03f94767954beb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxfgmXcwucMCDLC8r8g8PXz8rGg=", "createTime": "2024-08-15 14:53:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.960967+00 2025-12-09 10:15:13.960973+00 11835 JTSS306FW#VS-D3 SPMX-20240815307019 \N \N \N 1 \N [{"file_id": "7058f56a-f23f-42e5-92ce-beae93f21cbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "079a927779114a4390b662f25354e4b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "079a927779114a4390b662f25354e4b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "079a927779114a4390b662f25354e4b4.jpg", "file_size": 15608, "is_delete": false, "file_type": 1, "original_file_name": "JTSS306FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a927779114a4390b662f25354e4b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a927779114a4390b662f25354e4b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079a927779114a4390b662f25354e4b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/079a927779114a4390b662f25354e4b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/079a927779114a4390b662f25354e4b4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9XS85nRy9HTPH0TdJ06Ww433jY=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.963112+00 2025-12-09 10:15:13.963118+00 11836 8157#青色花 SPMX-20240815307028 \N \N \N 1 \N [{"file_id": "297938dd-5a04-439a-92ef-e06b11187b08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67424207a1e147c8893223aac0f83682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67424207a1e147c8893223aac0f83682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67424207a1e147c8893223aac0f83682.jpg", "file_size": 21819, "is_delete": false, "file_type": 1, "original_file_name": "8157#青色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67424207a1e147c8893223aac0f83682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67424207a1e147c8893223aac0f83682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67424207a1e147c8893223aac0f83682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67424207a1e147c8893223aac0f83682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67424207a1e147c8893223aac0f83682.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZFlKys26Xkt2sxH1YxMvWUrlZoY=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.965141+00 2025-12-09 10:15:13.965147+00 11837 0003-A38#LWQ15 SPMX-20240815307020 \N \N \N 1 \N [{"file_id": "2a3bdbd2-96e7-43e0-8621-b746327ba427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3406ad1f37d144cf91d56d49e1a6dbb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3406ad1f37d144cf91d56d49e1a6dbb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3406ad1f37d144cf91d56d49e1a6dbb3.jpg", "file_size": 42732, "is_delete": false, "file_type": 1, "original_file_name": "0003-A38#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3406ad1f37d144cf91d56d49e1a6dbb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3406ad1f37d144cf91d56d49e1a6dbb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3406ad1f37d144cf91d56d49e1a6dbb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3406ad1f37d144cf91d56d49e1a6dbb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3406ad1f37d144cf91d56d49e1a6dbb3.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyFyFEVKZqKj8Mn6lwpm7t06XgA=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.96715+00 2025-12-09 10:15:13.967155+00 11838 HT1722FW#彩蓝VS-D3 SPMX-20240815307025 \N \N \N 1 \N [{"file_id": "ade2ce0b-fd74-4534-b0ce-f97d5e026cb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4039f44c1c545a28dbc1950a172ef02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4039f44c1c545a28dbc1950a172ef02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4039f44c1c545a28dbc1950a172ef02.jpg", "file_size": 17751, "is_delete": false, "file_type": 1, "original_file_name": "HT1722FW#彩蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4039f44c1c545a28dbc1950a172ef02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4039f44c1c545a28dbc1950a172ef02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4039f44c1c545a28dbc1950a172ef02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4039f44c1c545a28dbc1950a172ef02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4039f44c1c545a28dbc1950a172ef02.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:657OF_hBbEdXPcJ1f7ZUPTjkVzc=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.969432+00 2025-12-09 10:15:13.969437+00 11839 23-2118#A4-领子4XL SPMX-20240815307027 \N \N \N 1 \N [{"file_id": "b670bebc-c79f-4add-8402-3b53473aece1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbf9efb9121d468a9de4882846c5a31a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbf9efb9121d468a9de4882846c5a31a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbf9efb9121d468a9de4882846c5a31a.jpg", "file_size": 11436, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf9efb9121d468a9de4882846c5a31a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf9efb9121d468a9de4882846c5a31a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf9efb9121d468a9de4882846c5a31a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbf9efb9121d468a9de4882846c5a31a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbf9efb9121d468a9de4882846c5a31a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75P9ORLjWRQQI3y2eYpf1bB0AIE=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.971574+00 2025-12-09 10:15:13.971579+00 11840 DL31049#前幅彩兰 SPMX-20240815307024 \N \N \N 1 \N [{"file_id": "77ed3b15-413b-43f5-b919-0b9ced758072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76665ca714104265b1ddaa3903daaf58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76665ca714104265b1ddaa3903daaf58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76665ca714104265b1ddaa3903daaf58.jpg", "file_size": 16390, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76665ca714104265b1ddaa3903daaf58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76665ca714104265b1ddaa3903daaf58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76665ca714104265b1ddaa3903daaf58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76665ca714104265b1ddaa3903daaf58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76665ca714104265b1ddaa3903daaf58.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6olutaok_oN-Tl2EfEOU_AJnUk=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.973875+00 2025-12-09 10:15:13.97388+00 11841 1110#WJC22土黄 SPMX-20240815307021 \N \N \N 1 \N [{"file_id": "1a18f45e-19a4-423a-80ba-4a92c4c130f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ff7d0935cbc4e49a195a34687d54013.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ff7d0935cbc4e49a195a34687d54013.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ff7d0935cbc4e49a195a34687d54013.jpg", "file_size": 17314, "is_delete": false, "file_type": 1, "original_file_name": "1110#WJC22土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7d0935cbc4e49a195a34687d54013.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7d0935cbc4e49a195a34687d54013.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff7d0935cbc4e49a195a34687d54013.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ff7d0935cbc4e49a195a34687d54013.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ff7d0935cbc4e49a195a34687d54013.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IYsP_W0RFwge0vaNpmEBcxHlbSw=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.975995+00 2025-12-09 10:15:13.976+00 11842 LJH0100-10#橘色 SPMX-20240815307022 \N \N \N 1 \N [{"file_id": "470f4cd3-9557-4742-984d-ea75743f5d0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8583c536ed274ba6806bb152171b1b09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8583c536ed274ba6806bb152171b1b09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8583c536ed274ba6806bb152171b1b09.jpg", "file_size": 74150, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-10#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8583c536ed274ba6806bb152171b1b09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8583c536ed274ba6806bb152171b1b09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8583c536ed274ba6806bb152171b1b09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8583c536ed274ba6806bb152171b1b09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8583c536ed274ba6806bb152171b1b09.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnfD0Xf1akEsBXyBAF4RJYVABqo=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.978054+00 2025-12-09 10:15:13.978059+00 11843 FJ004#XL SPMX-20240815307023 \N \N \N 1 \N [{"file_id": "5cecfa5c-d521-4e56-93dd-9744e8470919", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7473f6b61e564d049501821f320b69f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7473f6b61e564d049501821f320b69f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7473f6b61e564d049501821f320b69f2.jpg", "file_size": 26902, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7473f6b61e564d049501821f320b69f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7473f6b61e564d049501821f320b69f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7473f6b61e564d049501821f320b69f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7473f6b61e564d049501821f320b69f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7473f6b61e564d049501821f320b69f2.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVGqaqyLuf0tQHrhDPuKtKgvOew=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.980336+00 2025-12-09 10:15:13.980344+00 11844 LZ1296#背心款3号色 SPMX-20240815307026 \N \N \N 1 \N [{"file_id": "b9596e9a-abeb-4d63-80ba-9043bc635d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "094a96a7a6b741f3a987621db69c4128.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "094a96a7a6b741f3a987621db69c4128.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "094a96a7a6b741f3a987621db69c4128.jpg", "file_size": 21107, "is_delete": false, "file_type": 1, "original_file_name": "LZ1296#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094a96a7a6b741f3a987621db69c4128.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094a96a7a6b741f3a987621db69c4128.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/094a96a7a6b741f3a987621db69c4128.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/094a96a7a6b741f3a987621db69c4128.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/094a96a7a6b741f3a987621db69c4128.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YW5hnh9QIo1rjrKjoT-EQ5U2obQ=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.982751+00 2025-12-09 10:15:13.982758+00 11845 LZ1296#背心款4号色 SPMX-20240815307039 \N \N \N 1 \N [{"file_id": "368f2b0c-abdd-4f3f-9610-3b3d4e1d130c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1b182b7918242e89ac745b81e718916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1b182b7918242e89ac745b81e718916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1b182b7918242e89ac745b81e718916.jpg", "file_size": 21162, "is_delete": false, "file_type": 1, "original_file_name": "LZ1296#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b182b7918242e89ac745b81e718916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b182b7918242e89ac745b81e718916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b182b7918242e89ac745b81e718916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1b182b7918242e89ac745b81e718916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1b182b7918242e89ac745b81e718916.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYWq5x62b73FAi3ymWqD_CXmrjo=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.985221+00 2025-12-09 10:15:13.985228+00 11846 0003-A39#LWQ15 SPMX-20240815307031 \N \N \N 1 \N [{"file_id": "a28b42eb-be27-470d-8e25-0fa0d0f29304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac3666fed70c422d96f200685a6deb7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac3666fed70c422d96f200685a6deb7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac3666fed70c422d96f200685a6deb7c.jpg", "file_size": 49687, "is_delete": false, "file_type": 1, "original_file_name": "0003-A39#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3666fed70c422d96f200685a6deb7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3666fed70c422d96f200685a6deb7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3666fed70c422d96f200685a6deb7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac3666fed70c422d96f200685a6deb7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac3666fed70c422d96f200685a6deb7c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bVcOh0pFEb0SZ7oMxPzuYoJU1M=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.987703+00 2025-12-09 10:15:13.987716+00 11847 1110#WJC22天蓝 SPMX-20240815307032 \N \N \N 1 \N [{"file_id": "6cb8ba52-e976-4cfc-8aac-2cfc9fb281e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg", "file_size": 17757, "is_delete": false, "file_type": 1, "original_file_name": "1110#WJC22天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58e2a5e5075e4eccbc6a7c53c3aeb5dd.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1G8d4_Xci9q1IaOLWDi7XZkp0g=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.98995+00 2025-12-09 10:15:13.989956+00 11848 LJH0100-10#湖蓝色 SPMX-20240815307034 \N \N \N 1 \N [{"file_id": "6ff20119-c0b8-4c97-beb2-585bb71ea693", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb932e995aa245c2bc02d530997116db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb932e995aa245c2bc02d530997116db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb932e995aa245c2bc02d530997116db.jpg", "file_size": 71637, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-10#湖蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb932e995aa245c2bc02d530997116db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb932e995aa245c2bc02d530997116db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb932e995aa245c2bc02d530997116db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb932e995aa245c2bc02d530997116db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb932e995aa245c2bc02d530997116db.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCVYqeLrgVbkewW8oHga92G28PU=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.99223+00 2025-12-09 10:15:13.992236+00 11849 DL31049#前幅枣红 SPMX-20240815307033 \N \N \N 1 \N [{"file_id": "49db40c2-3862-4a27-8a35-ee3060d1c935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg", "file_size": 15708, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d50284b268a4f5d8a84a9ad0f1dcf5b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPNpV5k38xCFhzvzD0ZPW7GkuTM=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.994235+00 2025-12-09 10:15:13.99424+00 11850 JTSS308FW#VS-D3 SPMX-20240815307040 \N \N \N 1 \N [{"file_id": "ce3d0696-c9cd-4841-bf55-3a692ace1bb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7d88e92686042348bde692360f926ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7d88e92686042348bde692360f926ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7d88e92686042348bde692360f926ab.jpg", "file_size": 12447, "is_delete": false, "file_type": 1, "original_file_name": "JTSS308FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d88e92686042348bde692360f926ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d88e92686042348bde692360f926ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d88e92686042348bde692360f926ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7d88e92686042348bde692360f926ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7d88e92686042348bde692360f926ab.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pO3z5vfV0H6cSoKdAYCELpz8ask=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.996252+00 2025-12-09 10:15:13.996258+00 11851 HT1722FW#浅蓝VS-D3 SPMX-20240815307036 \N \N \N 1 \N [{"file_id": "887008ee-1f58-46de-9d6e-7d7a8c7732df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bce92d99698949d3a5074f66ccde1a62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bce92d99698949d3a5074f66ccde1a62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bce92d99698949d3a5074f66ccde1a62.jpg", "file_size": 13379, "is_delete": false, "file_type": 1, "original_file_name": "HT1722FW#浅蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce92d99698949d3a5074f66ccde1a62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce92d99698949d3a5074f66ccde1a62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce92d99698949d3a5074f66ccde1a62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bce92d99698949d3a5074f66ccde1a62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bce92d99698949d3a5074f66ccde1a62.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOOEcLW5VlZI61O_FUXjpZhvD4Q=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:13.998274+00 2025-12-09 10:15:13.998279+00 11852 FJ004#橙 SPMX-20240815307037 \N \N \N 1 \N [{"file_id": "fee28f9b-d437-4b7b-93d1-4c0eb27b7b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65927a2ec6734f6cb6b06dc2edd49e6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65927a2ec6734f6cb6b06dc2edd49e6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65927a2ec6734f6cb6b06dc2edd49e6c.jpg", "file_size": 6681, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65927a2ec6734f6cb6b06dc2edd49e6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65927a2ec6734f6cb6b06dc2edd49e6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65927a2ec6734f6cb6b06dc2edd49e6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65927a2ec6734f6cb6b06dc2edd49e6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65927a2ec6734f6cb6b06dc2edd49e6c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8RZcpeGxm_QGtlXxyAVVVo1PTEw=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.000262+00 2025-12-09 10:15:14.000267+00 11853 8157#黑色 SPMX-20240815307038 \N \N \N 1 \N [{"file_id": "2dcda9b3-54f3-4e38-b89d-b6d4be46622d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d91559755c744ed0ad746a84d5d5ddca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d91559755c744ed0ad746a84d5d5ddca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d91559755c744ed0ad746a84d5d5ddca.jpg", "file_size": 14129, "is_delete": false, "file_type": 1, "original_file_name": "8157#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91559755c744ed0ad746a84d5d5ddca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91559755c744ed0ad746a84d5d5ddca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91559755c744ed0ad746a84d5d5ddca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d91559755c744ed0ad746a84d5d5ddca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d91559755c744ed0ad746a84d5d5ddca.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T-J_VlSeAvsNSJ7MxRLvNfNHLWY=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.002248+00 2025-12-09 10:15:14.002253+00 11854 C442#黑色 SPMX-20240815307041 \N \N \N 1 \N [{"file_id": "b95b9da5-fc80-415d-b827-d97bf0b41376", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca9bc90599054f00b4453063c4b92645.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca9bc90599054f00b4453063c4b92645.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca9bc90599054f00b4453063c4b92645.jpg", "file_size": 76689, "is_delete": false, "file_type": 1, "original_file_name": "C442#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc90599054f00b4453063c4b92645.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc90599054f00b4453063c4b92645.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc90599054f00b4453063c4b92645.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc90599054f00b4453063c4b92645.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca9bc90599054f00b4453063c4b92645.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyYuA8st8ckiEVI8PKpGJZkoWAw=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.004258+00 2025-12-09 10:15:14.004264+00 11855 JTSS307FW#VS-D3 SPMX-20240815307029 \N \N \N 1 \N [{"file_id": "c209a5e7-0e94-4ab6-b17f-45275a2e7e73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bc86a24fb384edeaf9fa6fd989143fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bc86a24fb384edeaf9fa6fd989143fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bc86a24fb384edeaf9fa6fd989143fc.jpg", "file_size": 8929, "is_delete": false, "file_type": 1, "original_file_name": "JTSS307FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc86a24fb384edeaf9fa6fd989143fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc86a24fb384edeaf9fa6fd989143fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc86a24fb384edeaf9fa6fd989143fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bc86a24fb384edeaf9fa6fd989143fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bc86a24fb384edeaf9fa6fd989143fc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVcge9f1RlrzsrPB1Ks0CODKOi0=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.006263+00 2025-12-09 10:15:14.006268+00 11856 C442#玫红 SPMX-20240815307030 \N \N \N 1 \N [{"file_id": "70bbde92-7972-41b0-a8ab-9f555def0f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91744109c6d746feafe8abd3843e542f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91744109c6d746feafe8abd3843e542f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91744109c6d746feafe8abd3843e542f.jpg", "file_size": 82526, "is_delete": false, "file_type": 1, "original_file_name": "C442#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91744109c6d746feafe8abd3843e542f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91744109c6d746feafe8abd3843e542f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91744109c6d746feafe8abd3843e542f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91744109c6d746feafe8abd3843e542f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91744109c6d746feafe8abd3843e542f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6xR6Kqa0I698DcMnuMzw_eR6rw=", "createTime": "2024-08-15 14:53:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.008252+00 2025-12-09 10:15:14.008257+00 11857 23-2118#A5-3XL SPMX-20240815307035 \N \N \N 1 \N [{"file_id": "db20f10e-e401-4457-b16d-c0ff0bc28147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b190937c80f45d1a6b65baf2a572d29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b190937c80f45d1a6b65baf2a572d29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b190937c80f45d1a6b65baf2a572d29.jpg", "file_size": 21924, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b190937c80f45d1a6b65baf2a572d29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b190937c80f45d1a6b65baf2a572d29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b190937c80f45d1a6b65baf2a572d29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b190937c80f45d1a6b65baf2a572d29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b190937c80f45d1a6b65baf2a572d29.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rReKrU0Jc2FanEr1KITktvR_vo=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.010234+00 2025-12-09 10:15:14.010239+00 11858 0003-A4#LWQ15 SPMX-20240815307044 \N \N \N 1 \N [{"file_id": "12454096-2817-4c32-a3e1-b645e65f0715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeb18dc2cd8a4ae5964511753dba7f7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeb18dc2cd8a4ae5964511753dba7f7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeb18dc2cd8a4ae5964511753dba7f7a.jpg", "file_size": 15172, "is_delete": false, "file_type": 1, "original_file_name": "0003-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb18dc2cd8a4ae5964511753dba7f7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb18dc2cd8a4ae5964511753dba7f7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb18dc2cd8a4ae5964511753dba7f7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeb18dc2cd8a4ae5964511753dba7f7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeb18dc2cd8a4ae5964511753dba7f7a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFZ_rq8hYuk3pQSAkLjUS_6Stok=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.0122+00 2025-12-09 10:15:14.012205+00 11859 23-2118#A5-4XL SPMX-20240815307046 \N \N \N 1 \N [{"file_id": "d39bde1f-7e77-4b5b-b1f2-62f9eb5029ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50858a6c04ab4c058a99d2e3c07b3ea7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50858a6c04ab4c058a99d2e3c07b3ea7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50858a6c04ab4c058a99d2e3c07b3ea7.jpg", "file_size": 20429, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50858a6c04ab4c058a99d2e3c07b3ea7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50858a6c04ab4c058a99d2e3c07b3ea7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50858a6c04ab4c058a99d2e3c07b3ea7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50858a6c04ab4c058a99d2e3c07b3ea7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50858a6c04ab4c058a99d2e3c07b3ea7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgCk3Y1VmHGc2r2NKEn0GLy9Y9E=", "createTime": "2024-08-15 14:53:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.014171+00 2025-12-09 10:15:14.014176+00 11860 1110#WJC22玫红 SPMX-20240815307042 \N \N \N 1 \N [{"file_id": "44361aa0-ce88-4e94-b9ab-94e0ad17f672", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01ed33c597c646c3bd90c2fef808d281.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01ed33c597c646c3bd90c2fef808d281.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01ed33c597c646c3bd90c2fef808d281.jpg", "file_size": 17559, "is_delete": false, "file_type": 1, "original_file_name": "1110#WJC22玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ed33c597c646c3bd90c2fef808d281.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ed33c597c646c3bd90c2fef808d281.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ed33c597c646c3bd90c2fef808d281.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01ed33c597c646c3bd90c2fef808d281.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01ed33c597c646c3bd90c2fef808d281.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRrD_GtBH0J9rMPQre5uQikCedg=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.016178+00 2025-12-09 10:15:14.016183+00 11861 DL31049#前幅浅粉 SPMX-20240815307045 \N \N \N 1 \N [{"file_id": "0a11b964-7719-477d-8f16-1968164ab870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d55dfd51d6444a8d8a48884c1ec8464b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d55dfd51d6444a8d8a48884c1ec8464b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d55dfd51d6444a8d8a48884c1ec8464b.jpg", "file_size": 15290, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55dfd51d6444a8d8a48884c1ec8464b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55dfd51d6444a8d8a48884c1ec8464b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55dfd51d6444a8d8a48884c1ec8464b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d55dfd51d6444a8d8a48884c1ec8464b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d55dfd51d6444a8d8a48884c1ec8464b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ea_tJGE-IbWObb_FLXwUz0QY5MA=", "createTime": "2024-08-15 14:53:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.018393+00 2025-12-09 10:15:14.018398+00 11862 LJH0100-10#黄色 SPMX-20240815307047 \N \N \N 1 \N [{"file_id": "a6edd404-fb3c-4d53-950b-43a781c10f2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d687901fd2494db6f45e60debdacf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d687901fd2494db6f45e60debdacf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d687901fd2494db6f45e60debdacf4.jpg", "file_size": 74802, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-10#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d687901fd2494db6f45e60debdacf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d687901fd2494db6f45e60debdacf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d687901fd2494db6f45e60debdacf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d687901fd2494db6f45e60debdacf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d687901fd2494db6f45e60debdacf4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xc9tuGIlI4PPGuD0YPq5l2YUZ8E=", "createTime": "2024-08-15 14:53:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.020365+00 2025-12-09 10:15:14.02037+00 11863 8170FWE#VS-D3 SPMX-20240815307050 \N \N \N 1 \N [{"file_id": "d067ec1d-6968-4da3-acac-bebe0e01b5bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22554922d6214a9a93e81696590af3cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22554922d6214a9a93e81696590af3cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22554922d6214a9a93e81696590af3cd.jpg", "file_size": 16332, "is_delete": false, "file_type": 1, "original_file_name": "8170FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22554922d6214a9a93e81696590af3cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22554922d6214a9a93e81696590af3cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22554922d6214a9a93e81696590af3cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22554922d6214a9a93e81696590af3cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22554922d6214a9a93e81696590af3cd.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KKSK2ACmwGwsShtHWXtNPFZ9bg=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.02235+00 2025-12-09 10:15:14.022355+00 11864 FJ004#黄 SPMX-20240815307049 \N \N \N 1 \N [{"file_id": "866ef69f-6488-4ca1-94b9-2b09a10cbfa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be808795669c4580aab937a2f155777f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be808795669c4580aab937a2f155777f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be808795669c4580aab937a2f155777f.jpg", "file_size": 6027, "is_delete": false, "file_type": 1, "original_file_name": "FJ004#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be808795669c4580aab937a2f155777f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be808795669c4580aab937a2f155777f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be808795669c4580aab937a2f155777f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be808795669c4580aab937a2f155777f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be808795669c4580aab937a2f155777f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2yD69ybTwnv5s4oIUhVL6tFJX-Q=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.024315+00 2025-12-09 10:15:14.024321+00 11865 JTSS309FW#VS-D3 SPMX-20240815307052 \N \N \N 1 \N [{"file_id": "c33af21e-5e10-441c-b88f-51b9cdc63a6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e25ea704196d4a4aad249ec1d5838362.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e25ea704196d4a4aad249ec1d5838362.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e25ea704196d4a4aad249ec1d5838362.jpg", "file_size": 12721, "is_delete": false, "file_type": 1, "original_file_name": "JTSS309FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25ea704196d4a4aad249ec1d5838362.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25ea704196d4a4aad249ec1d5838362.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e25ea704196d4a4aad249ec1d5838362.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e25ea704196d4a4aad249ec1d5838362.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e25ea704196d4a4aad249ec1d5838362.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIvwR9f81O9IybFUjSKXZIckkSk=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.026308+00 2025-12-09 10:15:14.026313+00 11866 23-2118#A5-领子3XL SPMX-20240815307055 \N \N \N 1 \N [{"file_id": "26afd411-449b-4330-b37b-08d7ad5752e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1923c1ad66841c584d9ebe2ec031af4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1923c1ad66841c584d9ebe2ec031af4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1923c1ad66841c584d9ebe2ec031af4.jpg", "file_size": 12955, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1923c1ad66841c584d9ebe2ec031af4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1923c1ad66841c584d9ebe2ec031af4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1923c1ad66841c584d9ebe2ec031af4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1923c1ad66841c584d9ebe2ec031af4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1923c1ad66841c584d9ebe2ec031af4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ethNKrANPE2_JVKULpnxPVv17o=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.028305+00 2025-12-09 10:15:14.02831+00 11867 1110FWF#V5曲线 SPMX-20240815307053 \N \N \N 1 \N [{"file_id": "28723a36-d1d7-4d90-9bf2-95abce8836d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3489884f29874240abed9b973ec8691c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3489884f29874240abed9b973ec8691c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3489884f29874240abed9b973ec8691c.jpg", "file_size": 11162, "is_delete": false, "file_type": 1, "original_file_name": "1110FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3489884f29874240abed9b973ec8691c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3489884f29874240abed9b973ec8691c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3489884f29874240abed9b973ec8691c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3489884f29874240abed9b973ec8691c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3489884f29874240abed9b973ec8691c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAl2z7C24sFJi-FUHylH27j9FT0=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.030341+00 2025-12-09 10:15:14.030346+00 11868 LZ1296#背心款5号色 SPMX-20240815307048 \N \N \N 1 \N [{"file_id": "fe2787af-83a2-45c5-91cd-b683a97221ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a25c4de251eb4442b343bb8a71318904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a25c4de251eb4442b343bb8a71318904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a25c4de251eb4442b343bb8a71318904.jpg", "file_size": 21056, "is_delete": false, "file_type": 1, "original_file_name": "LZ1296#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25c4de251eb4442b343bb8a71318904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25c4de251eb4442b343bb8a71318904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a25c4de251eb4442b343bb8a71318904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a25c4de251eb4442b343bb8a71318904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a25c4de251eb4442b343bb8a71318904.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fKsAgnaATM_j-YOtKVuiNBcTVU=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.032339+00 2025-12-09 10:15:14.032344+00 11869 HT1722FW#玫红VS-D3 SPMX-20240815307051 \N \N \N 1 \N [{"file_id": "791efd0b-74e8-4b3b-8550-ebbbbfe41f8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b235e0d8e77f44f2a813d5e1fb2d939b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b235e0d8e77f44f2a813d5e1fb2d939b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b235e0d8e77f44f2a813d5e1fb2d939b.jpg", "file_size": 16161, "is_delete": false, "file_type": 1, "original_file_name": "HT1722FW#玫红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b235e0d8e77f44f2a813d5e1fb2d939b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b235e0d8e77f44f2a813d5e1fb2d939b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b235e0d8e77f44f2a813d5e1fb2d939b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b235e0d8e77f44f2a813d5e1fb2d939b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b235e0d8e77f44f2a813d5e1fb2d939b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niE3fnYT7awEDsP3cFU-phaem5o=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.034406+00 2025-12-09 10:15:14.034414+00 11870 DL31049#前幅玫红 SPMX-20240815307056 \N \N \N 1 \N [{"file_id": "ec019c11-d6be-40fb-87fc-0142fceeb24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7c894547eb543f8ad4d1d14dd1eb0e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7c894547eb543f8ad4d1d14dd1eb0e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7c894547eb543f8ad4d1d14dd1eb0e9.jpg", "file_size": 15648, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c894547eb543f8ad4d1d14dd1eb0e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c894547eb543f8ad4d1d14dd1eb0e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c894547eb543f8ad4d1d14dd1eb0e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7c894547eb543f8ad4d1d14dd1eb0e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7c894547eb543f8ad4d1d14dd1eb0e9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5y29ouAC0WB5fpdVZQ_-9wAPMQ=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.036361+00 2025-12-09 10:15:14.036366+00 11871 C443#兰色 SPMX-20240815307054 \N \N \N 1 \N [{"file_id": "e014b85b-5659-4df7-91ff-89ac614be8fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f0b8fbbf83b4e6fadfa8386079f3d79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f0b8fbbf83b4e6fadfa8386079f3d79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f0b8fbbf83b4e6fadfa8386079f3d79.jpg", "file_size": 75719, "is_delete": false, "file_type": 1, "original_file_name": "C443#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0b8fbbf83b4e6fadfa8386079f3d79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0b8fbbf83b4e6fadfa8386079f3d79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f0b8fbbf83b4e6fadfa8386079f3d79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f0b8fbbf83b4e6fadfa8386079f3d79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f0b8fbbf83b4e6fadfa8386079f3d79.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tE2qbrut62ZmnvkHw2kxoTTAzlM=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.038469+00 2025-12-09 10:15:14.038473+00 11872 FJ004FW#VS-D3 SPMX-20240815307060 \N \N \N 1 \N [{"file_id": "eb6e65be-893b-4f1a-8495-fcf96e59adc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b31ec93aafc4e8a942e1d7973b8b8b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b31ec93aafc4e8a942e1d7973b8b8b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b31ec93aafc4e8a942e1d7973b8b8b4.jpg", "file_size": 6957, "is_delete": false, "file_type": 1, "original_file_name": "FJ004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b31ec93aafc4e8a942e1d7973b8b8b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b31ec93aafc4e8a942e1d7973b8b8b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b31ec93aafc4e8a942e1d7973b8b8b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b31ec93aafc4e8a942e1d7973b8b8b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b31ec93aafc4e8a942e1d7973b8b8b4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkXeaBfPIfpUTrl18AolHVdfoG0=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.040614+00 2025-12-09 10:15:14.040619+00 11873 0003-A40#LWQ15 SPMX-20240815307057 \N \N \N 1 \N [{"file_id": "7ade35d8-25ec-4f7d-8b5d-b511acfbe01d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea754bb8bd745d2891b11f0af1c9cb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea754bb8bd745d2891b11f0af1c9cb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea754bb8bd745d2891b11f0af1c9cb5.jpg", "file_size": 69243, "is_delete": false, "file_type": 1, "original_file_name": "0003-A40#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea754bb8bd745d2891b11f0af1c9cb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea754bb8bd745d2891b11f0af1c9cb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea754bb8bd745d2891b11f0af1c9cb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea754bb8bd745d2891b11f0af1c9cb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea754bb8bd745d2891b11f0af1c9cb5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Szbh6ShP3FkGq6ISC4V6VSB2Ukg=", "createTime": "2024-08-15 14:53:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.042746+00 2025-12-09 10:15:14.04275+00 11874 FJ004FWE#VS-D3 SPMX-20240815307070 \N \N \N 1 \N [{"file_id": "13dd8cef-2e24-4301-be7f-664a3b1d74ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "481a9cf04f87455c89bdcabdb64e7d84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "481a9cf04f87455c89bdcabdb64e7d84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "481a9cf04f87455c89bdcabdb64e7d84.jpg", "file_size": 10200, "is_delete": false, "file_type": 1, "original_file_name": "FJ004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481a9cf04f87455c89bdcabdb64e7d84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481a9cf04f87455c89bdcabdb64e7d84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/481a9cf04f87455c89bdcabdb64e7d84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/481a9cf04f87455c89bdcabdb64e7d84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/481a9cf04f87455c89bdcabdb64e7d84.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVbfMDFviyDCdy-mxzXpZfpOECg=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.044779+00 2025-12-09 10:15:14.044785+00 11875 LJH0100-11#1号色 SPMX-20240815307058 \N \N \N 1 \N [{"file_id": "19afbe5a-eb3c-4a3c-add3-f605db4abca0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b738cf0216a40df8f562c7b9170e83c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b738cf0216a40df8f562c7b9170e83c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b738cf0216a40df8f562c7b9170e83c.jpg", "file_size": 72261, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b738cf0216a40df8f562c7b9170e83c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b738cf0216a40df8f562c7b9170e83c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b738cf0216a40df8f562c7b9170e83c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b738cf0216a40df8f562c7b9170e83c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b738cf0216a40df8f562c7b9170e83c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdtna8-6BpRg-aclf0G9YeBCjAQ=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.046785+00 2025-12-09 10:15:14.04679+00 11876 JTSS310FW#VS-D3 SPMX-20240815307061 \N \N \N 1 \N [{"file_id": "56cd4030-8812-468a-ad95-3fe76e761eb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0856403e9b5346abb13802943848d32b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0856403e9b5346abb13802943848d32b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0856403e9b5346abb13802943848d32b.jpg", "file_size": 11811, "is_delete": false, "file_type": 1, "original_file_name": "JTSS310FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0856403e9b5346abb13802943848d32b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0856403e9b5346abb13802943848d32b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0856403e9b5346abb13802943848d32b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0856403e9b5346abb13802943848d32b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0856403e9b5346abb13802943848d32b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a52gbjaK3udaJqBBKq1bQEWoNaE=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.048902+00 2025-12-09 10:15:14.048907+00 11877 LZ1297#捆条布 SPMX-20240815307062 \N \N \N 1 \N [{"file_id": "5013952f-718d-4561-ab29-4e4d17ee7ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "603f47cc0d1940538a6127383d4d8911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "603f47cc0d1940538a6127383d4d8911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "603f47cc0d1940538a6127383d4d8911.jpg", "file_size": 20688, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603f47cc0d1940538a6127383d4d8911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603f47cc0d1940538a6127383d4d8911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603f47cc0d1940538a6127383d4d8911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/603f47cc0d1940538a6127383d4d8911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/603f47cc0d1940538a6127383d4d8911.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VV4kmYPTZCSlDSwkcl0ehfVTwEw=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.051009+00 2025-12-09 10:15:14.051014+00 11878 HT1722FW#黑VS-D3 SPMX-20240815307063 \N \N \N 1 \N [{"file_id": "d147fc6d-3b32-4da7-9f4f-daf0d933e044", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbfbbbd2941c4cd199e32e1b01e75c27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbfbbbd2941c4cd199e32e1b01e75c27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbfbbbd2941c4cd199e32e1b01e75c27.jpg", "file_size": 19025, "is_delete": false, "file_type": 1, "original_file_name": "HT1722FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfbbbd2941c4cd199e32e1b01e75c27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfbbbd2941c4cd199e32e1b01e75c27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbfbbbd2941c4cd199e32e1b01e75c27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbfbbbd2941c4cd199e32e1b01e75c27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbfbbbd2941c4cd199e32e1b01e75c27.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9os5UOJqkjD-x4S5yUqkwtbli04=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.053378+00 2025-12-09 10:15:14.053382+00 11879 81716#粉色L SPMX-20240815307069 \N \N \N 1 \N [{"file_id": "ea0896b9-08ff-42e4-9a62-13a9ba4a1a99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffa5b69b104349f984133788b64a98ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffa5b69b104349f984133788b64a98ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffa5b69b104349f984133788b64a98ae.jpg", "file_size": 15725, "is_delete": false, "file_type": 1, "original_file_name": "81716#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa5b69b104349f984133788b64a98ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa5b69b104349f984133788b64a98ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa5b69b104349f984133788b64a98ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffa5b69b104349f984133788b64a98ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffa5b69b104349f984133788b64a98ae.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCEkOyQAu7yaWHAV_T0JUYUzBeI=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.055211+00 2025-12-09 10:15:14.055216+00 11880 1110FWF#V5曲线番禺调色 SPMX-20240815307064 \N \N \N 1 \N [{"file_id": "aaee37e0-ca00-4bad-9d5f-b60bc606b2bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68ecf83f79324f2b97d934ecffa60b55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68ecf83f79324f2b97d934ecffa60b55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68ecf83f79324f2b97d934ecffa60b55.jpg", "file_size": 11812, "is_delete": false, "file_type": 1, "original_file_name": "1110FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ecf83f79324f2b97d934ecffa60b55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ecf83f79324f2b97d934ecffa60b55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ecf83f79324f2b97d934ecffa60b55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68ecf83f79324f2b97d934ecffa60b55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68ecf83f79324f2b97d934ecffa60b55.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8YESwwixHVqFMECX3MNbXJ0wyzQ=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.057274+00 2025-12-09 10:15:14.057278+00 11881 23-2118#A5-领子4XL SPMX-20240815307066 \N \N \N 1 \N [{"file_id": "05808ade-bfb9-499c-8870-095259bfb57a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a62485758bef4702865d8ec5c097aaac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a62485758bef4702865d8ec5c097aaac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a62485758bef4702865d8ec5c097aaac.jpg", "file_size": 12799, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62485758bef4702865d8ec5c097aaac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62485758bef4702865d8ec5c097aaac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62485758bef4702865d8ec5c097aaac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a62485758bef4702865d8ec5c097aaac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a62485758bef4702865d8ec5c097aaac.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiuY1jJ_Yt2Jror_nJvPDx5ioaI=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.059336+00 2025-12-09 10:15:14.059342+00 11882 0003-A40#紫色 SPMX-20240815307068 \N \N \N 1 \N [{"file_id": "29d8b41b-2381-4d1b-8426-510bbb3dac72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab5df11ce49e4a509d75117c3fe18611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab5df11ce49e4a509d75117c3fe18611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab5df11ce49e4a509d75117c3fe18611.jpg", "file_size": 47610, "is_delete": false, "file_type": 1, "original_file_name": "0003-A40#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5df11ce49e4a509d75117c3fe18611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5df11ce49e4a509d75117c3fe18611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab5df11ce49e4a509d75117c3fe18611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab5df11ce49e4a509d75117c3fe18611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab5df11ce49e4a509d75117c3fe18611.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKaY_6u-EhU_XGHeGu0hoLS04Zw=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.061412+00 2025-12-09 10:15:14.061417+00 11883 C443#墨绿 SPMX-20240815307065 \N \N \N 1 \N [{"file_id": "613bb828-68d2-406d-8139-bb0f70d7056b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acfa2e51feb64b9e83ca611da971ab3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acfa2e51feb64b9e83ca611da971ab3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acfa2e51feb64b9e83ca611da971ab3a.jpg", "file_size": 82998, "is_delete": false, "file_type": 1, "original_file_name": "C443#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa2e51feb64b9e83ca611da971ab3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa2e51feb64b9e83ca611da971ab3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa2e51feb64b9e83ca611da971ab3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acfa2e51feb64b9e83ca611da971ab3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acfa2e51feb64b9e83ca611da971ab3a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FpsVg7LN1K03JaqWI6A_jJXJtA=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.06365+00 2025-12-09 10:15:14.063656+00 11884 81716#粉色2XL SPMX-20240815307059 \N \N \N 1 \N [{"file_id": "efdae242-d4e2-4c59-851a-a77ab52baba5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9678e629c694aa796000c8808d14859.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9678e629c694aa796000c8808d14859.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9678e629c694aa796000c8808d14859.jpg", "file_size": 15666, "is_delete": false, "file_type": 1, "original_file_name": "81716#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9678e629c694aa796000c8808d14859.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9678e629c694aa796000c8808d14859.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9678e629c694aa796000c8808d14859.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9678e629c694aa796000c8808d14859.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9678e629c694aa796000c8808d14859.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMquvXYwvSZCwgqUe3Qa55u439k=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.065512+00 2025-12-09 10:15:14.065517+00 11885 DL31049#前幅蓝绿 SPMX-20240815307067 \N \N \N 1 \N [{"file_id": "43d52265-1eb1-4789-b235-84ffdeddb6ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d00b1e06669f4bfb8ade595a249fe586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d00b1e06669f4bfb8ade595a249fe586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d00b1e06669f4bfb8ade595a249fe586.jpg", "file_size": 15898, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00b1e06669f4bfb8ade595a249fe586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00b1e06669f4bfb8ade595a249fe586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00b1e06669f4bfb8ade595a249fe586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d00b1e06669f4bfb8ade595a249fe586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d00b1e06669f4bfb8ade595a249fe586.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D4O4_lSTJ2evEw2wy4ocbtcrz3Y=", "createTime": "2024-08-15 14:53:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.067372+00 2025-12-09 10:15:14.067377+00 11886 JTSS311FW#VS-D3 SPMX-20240815307071 \N \N \N 1 \N [{"file_id": "4b7c7cdf-7582-42ad-a1c0-62d1b310507c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb5e051f02d44217aba99cddd6f61881.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb5e051f02d44217aba99cddd6f61881.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb5e051f02d44217aba99cddd6f61881.jpg", "file_size": 18390, "is_delete": false, "file_type": 1, "original_file_name": "JTSS311FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5e051f02d44217aba99cddd6f61881.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5e051f02d44217aba99cddd6f61881.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5e051f02d44217aba99cddd6f61881.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb5e051f02d44217aba99cddd6f61881.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb5e051f02d44217aba99cddd6f61881.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBCkMLQCnEUs2iKDS3S8t5w0zY4=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.069443+00 2025-12-09 10:15:14.069447+00 11887 FJ005#3XL SPMX-20240815307080 \N \N \N 1 \N [{"file_id": "995c9180-8f55-4e8f-b07e-3792a299525d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d9a3fcf839649a29ba469d6ef708783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d9a3fcf839649a29ba469d6ef708783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d9a3fcf839649a29ba469d6ef708783.jpg", "file_size": 18122, "is_delete": false, "file_type": 1, "original_file_name": "FJ005#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9a3fcf839649a29ba469d6ef708783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9a3fcf839649a29ba469d6ef708783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9a3fcf839649a29ba469d6ef708783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d9a3fcf839649a29ba469d6ef708783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d9a3fcf839649a29ba469d6ef708783.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9ohulfmlNMkIDwFxlhLe-Uw1mM=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.071431+00 2025-12-09 10:15:14.071436+00 11888 1111 SPMX-20240815307074 \N \N \N 1 \N [{"file_id": "2bfb6c53-4245-427e-87c7-96cb80c1c86d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23561c23f3634ad8a119a59ba4290fbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23561c23f3634ad8a119a59ba4290fbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23561c23f3634ad8a119a59ba4290fbd.jpg", "file_size": 116344, "is_delete": false, "file_type": 1, "original_file_name": "1111.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23561c23f3634ad8a119a59ba4290fbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23561c23f3634ad8a119a59ba4290fbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23561c23f3634ad8a119a59ba4290fbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23561c23f3634ad8a119a59ba4290fbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23561c23f3634ad8a119a59ba4290fbd.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JB-s9Kk_1UaA6tYms2ZkMpD8eEQ=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.073459+00 2025-12-09 10:15:14.073464+00 11889 C443#大白 SPMX-20240815307075 \N \N \N 1 \N [{"file_id": "69e8ae03-37f8-46e9-a4e6-82120a0df2ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82af36c8095f48719e1e5a71484f286a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82af36c8095f48719e1e5a71484f286a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82af36c8095f48719e1e5a71484f286a.jpg", "file_size": 78210, "is_delete": false, "file_type": 1, "original_file_name": "C443#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82af36c8095f48719e1e5a71484f286a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82af36c8095f48719e1e5a71484f286a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82af36c8095f48719e1e5a71484f286a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82af36c8095f48719e1e5a71484f286a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82af36c8095f48719e1e5a71484f286a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMwUH7IlPiVkNBzMIr7OqgJCrsw=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.077862+00 2025-12-09 10:15:14.077869+00 11890 DL31049#前幅黄色 SPMX-20240815307078 \N \N \N 1 \N [{"file_id": "2214f7f7-c97a-466e-92fc-9fb2f5ea16fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92ef9a5bc3cf40edabeea279aa0c59a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92ef9a5bc3cf40edabeea279aa0c59a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92ef9a5bc3cf40edabeea279aa0c59a9.jpg", "file_size": 15311, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef9a5bc3cf40edabeea279aa0c59a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef9a5bc3cf40edabeea279aa0c59a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef9a5bc3cf40edabeea279aa0c59a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92ef9a5bc3cf40edabeea279aa0c59a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92ef9a5bc3cf40edabeea279aa0c59a9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:atvgF9eIB2CJEplU9Q9y6dLAfGs=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.079848+00 2025-12-09 10:15:14.079853+00 11891 JTSS312FW#VS-D3 SPMX-20240815307081 \N \N \N 1 \N [{"file_id": "a2b38526-ac26-46e8-b78d-db56c8f7be5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdfdb41cb9b3480894d095d001c7ac0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdfdb41cb9b3480894d095d001c7ac0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdfdb41cb9b3480894d095d001c7ac0c.jpg", "file_size": 10982, "is_delete": false, "file_type": 1, "original_file_name": "JTSS312FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfdb41cb9b3480894d095d001c7ac0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfdb41cb9b3480894d095d001c7ac0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdfdb41cb9b3480894d095d001c7ac0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdfdb41cb9b3480894d095d001c7ac0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdfdb41cb9b3480894d095d001c7ac0c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFSqQD8LKrG2mwy7WTMVCY6OXgw=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.081769+00 2025-12-09 10:15:14.081774+00 11892 HT1724FW#橙VS-D3 SPMX-20240815307077 \N \N \N 1 \N [{"file_id": "31a09a9a-d2c6-4997-9a36-f69f4bc7e4a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53afa4de49c548e7832bec4490025bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53afa4de49c548e7832bec4490025bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53afa4de49c548e7832bec4490025bc7.jpg", "file_size": 15756, "is_delete": false, "file_type": 1, "original_file_name": "HT1724FW#橙VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53afa4de49c548e7832bec4490025bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53afa4de49c548e7832bec4490025bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53afa4de49c548e7832bec4490025bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53afa4de49c548e7832bec4490025bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53afa4de49c548e7832bec4490025bc7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bee4THU5e924nY4A_lnA1oESCEg=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.083712+00 2025-12-09 10:15:14.083717+00 11893 0003-A40#红色 SPMX-20240815307079 \N \N \N 1 \N [{"file_id": "5be98d1d-f605-4b62-b69a-1fd8e43bb79c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "828c187e4d5c405e88dfd1ba1cca7e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "828c187e4d5c405e88dfd1ba1cca7e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "828c187e4d5c405e88dfd1ba1cca7e34.jpg", "file_size": 51645, "is_delete": false, "file_type": 1, "original_file_name": "0003-A40#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c187e4d5c405e88dfd1ba1cca7e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c187e4d5c405e88dfd1ba1cca7e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c187e4d5c405e88dfd1ba1cca7e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/828c187e4d5c405e88dfd1ba1cca7e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/828c187e4d5c405e88dfd1ba1cca7e34.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wWFEoBFUyVZTMUuksOY0mBxm8Ts=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.085578+00 2025-12-09 10:15:14.085583+00 11894 LJH0100-11#2号色 SPMX-20240815307072 \N \N \N 1 \N [{"file_id": "9980228b-e962-4647-b5c4-012d6df1dfe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d45b8b4ca10640978ff62b80302723b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d45b8b4ca10640978ff62b80302723b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d45b8b4ca10640978ff62b80302723b8.jpg", "file_size": 76643, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45b8b4ca10640978ff62b80302723b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45b8b4ca10640978ff62b80302723b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d45b8b4ca10640978ff62b80302723b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d45b8b4ca10640978ff62b80302723b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d45b8b4ca10640978ff62b80302723b8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRteDhhzDrF0Yp8CU8b10uBLQL0=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.087644+00 2025-12-09 10:15:14.087648+00 11895 LZ1297#背心款1号色 SPMX-20240815307076 \N \N \N 1 \N [{"file_id": "dad9dcdf-59b1-42e1-a7af-98547bf27db2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b8e3d9ac19b469db34620fab687b25f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b8e3d9ac19b469db34620fab687b25f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b8e3d9ac19b469db34620fab687b25f.jpg", "file_size": 18296, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8e3d9ac19b469db34620fab687b25f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8e3d9ac19b469db34620fab687b25f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8e3d9ac19b469db34620fab687b25f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b8e3d9ac19b469db34620fab687b25f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b8e3d9ac19b469db34620fab687b25f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w5ONhP4a7GVJqz0oVfL1Xwx4cxw=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.089548+00 2025-12-09 10:15:14.089553+00 11896 81716#粉色M SPMX-20240815307082 \N \N \N 1 \N [{"file_id": "753ed8b8-181a-4f62-8a67-c27886cabd24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca61244842c9498aaae80b3b3a3e9c17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca61244842c9498aaae80b3b3a3e9c17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca61244842c9498aaae80b3b3a3e9c17.jpg", "file_size": 15946, "is_delete": false, "file_type": 1, "original_file_name": "81716#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca61244842c9498aaae80b3b3a3e9c17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca61244842c9498aaae80b3b3a3e9c17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca61244842c9498aaae80b3b3a3e9c17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca61244842c9498aaae80b3b3a3e9c17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca61244842c9498aaae80b3b3a3e9c17.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHhFcs_spS0xNUGhIUXJGVymhws=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.091679+00 2025-12-09 10:15:14.091684+00 11897 LJH0100-11#3号色 SPMX-20240815307083 \N \N \N 1 \N [{"file_id": "294eb56f-5122-4357-a948-1fbbbff44559", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e883092244c49439e8cb9a2cd497802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e883092244c49439e8cb9a2cd497802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e883092244c49439e8cb9a2cd497802.jpg", "file_size": 75332, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e883092244c49439e8cb9a2cd497802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e883092244c49439e8cb9a2cd497802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e883092244c49439e8cb9a2cd497802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e883092244c49439e8cb9a2cd497802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e883092244c49439e8cb9a2cd497802.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZhRhNiZ7T9nq-vBWxAp79xfhp9Q=", "createTime": "2024-08-15 14:53:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.093792+00 2025-12-09 10:15:14.093797+00 11898 81716#粉色S SPMX-20240815307092 \N \N \N 1 \N [{"file_id": "080bb25f-8bee-4ca8-b2f6-0205171c621c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c19c9a950a04803bfbe4420ac56f9bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c19c9a950a04803bfbe4420ac56f9bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c19c9a950a04803bfbe4420ac56f9bc.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "81716#粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c19c9a950a04803bfbe4420ac56f9bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c19c9a950a04803bfbe4420ac56f9bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c19c9a950a04803bfbe4420ac56f9bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c19c9a950a04803bfbe4420ac56f9bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c19c9a950a04803bfbe4420ac56f9bc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Brq2eWfR1I0IiEv7R9gmeqa-StE=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.095676+00 2025-12-09 10:15:14.095682+00 11899 23-2118#A6-4XL SPMX-20240815307084 \N \N \N 1 \N [{"file_id": "a32df8b5-16b5-4406-9830-2e2cb9c66861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1e89d6dd0a44c889adcda5801c5eb3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1e89d6dd0a44c889adcda5801c5eb3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1e89d6dd0a44c889adcda5801c5eb3a.jpg", "file_size": 13900, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e89d6dd0a44c889adcda5801c5eb3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e89d6dd0a44c889adcda5801c5eb3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e89d6dd0a44c889adcda5801c5eb3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1e89d6dd0a44c889adcda5801c5eb3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1e89d6dd0a44c889adcda5801c5eb3a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DTGcVvUbwnizHSdRm8RhqcXhnfw=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.098363+00 2025-12-09 10:15:14.098367+00 11900 0003-A40#蓝色 SPMX-20240815307090 \N \N \N 1 \N [{"file_id": "4b27eb56-ccac-4eb2-8090-99367e015cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "612c7e1b646848b88eeb5de22072bb89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "612c7e1b646848b88eeb5de22072bb89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "612c7e1b646848b88eeb5de22072bb89.jpg", "file_size": 51212, "is_delete": false, "file_type": 1, "original_file_name": "0003-A40#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c7e1b646848b88eeb5de22072bb89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c7e1b646848b88eeb5de22072bb89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c7e1b646848b88eeb5de22072bb89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/612c7e1b646848b88eeb5de22072bb89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/612c7e1b646848b88eeb5de22072bb89.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVlOowjYJlIpM5LMagesmx4RqkY=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.100483+00 2025-12-09 10:15:14.100489+00 11901 C443#玫红 SPMX-20240815307095 \N \N \N 1 \N [{"file_id": "88628beb-583c-4e9a-bf0a-78c08016678b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5a2bee481de45bcbb0866a04bd66ce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5a2bee481de45bcbb0866a04bd66ce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5a2bee481de45bcbb0866a04bd66ce9.jpg", "file_size": 80116, "is_delete": false, "file_type": 1, "original_file_name": "C443#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a2bee481de45bcbb0866a04bd66ce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a2bee481de45bcbb0866a04bd66ce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a2bee481de45bcbb0866a04bd66ce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5a2bee481de45bcbb0866a04bd66ce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5a2bee481de45bcbb0866a04bd66ce9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ev5_B8XSoYlyBEDsftxbShw7jKg=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.10269+00 2025-12-09 10:15:14.102696+00 11902 C443#橙色 SPMX-20240815307085 \N \N \N 1 \N [{"file_id": "6a283a84-14e1-4a54-8499-9f4efc44de26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63c47fbc00384734b435757f34a4c1d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63c47fbc00384734b435757f34a4c1d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63c47fbc00384734b435757f34a4c1d4.jpg", "file_size": 86825, "is_delete": false, "file_type": 1, "original_file_name": "C443#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c47fbc00384734b435757f34a4c1d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c47fbc00384734b435757f34a4c1d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c47fbc00384734b435757f34a4c1d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63c47fbc00384734b435757f34a4c1d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63c47fbc00384734b435757f34a4c1d4.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Z-7Ede3IGtz0uU-DuEWWLjiOU4=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.104959+00 2025-12-09 10:15:14.104965+00 11903 DL31049#批布大红 SPMX-20240815307088 \N \N \N 1 \N [{"file_id": "52f403d9-b024-40d0-8d87-1c90026871ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fcfaa7f6cb842548cff90a576008af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fcfaa7f6cb842548cff90a576008af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fcfaa7f6cb842548cff90a576008af1.jpg", "file_size": 24728, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcfaa7f6cb842548cff90a576008af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcfaa7f6cb842548cff90a576008af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fcfaa7f6cb842548cff90a576008af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fcfaa7f6cb842548cff90a576008af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fcfaa7f6cb842548cff90a576008af1.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FMrVK4tcLL2u3EtZ27lt1rOVdfg=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.106976+00 2025-12-09 10:15:14.106981+00 11904 JTSS313FW#VS-D3 SPMX-20240815307091 \N \N \N 1 \N [{"file_id": "d654b98b-486b-45e1-b183-dd60035d7734", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f5b8370d2e74468a31f98294c7f1499.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f5b8370d2e74468a31f98294c7f1499.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f5b8370d2e74468a31f98294c7f1499.jpg", "file_size": 12732, "is_delete": false, "file_type": 1, "original_file_name": "JTSS313FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5b8370d2e74468a31f98294c7f1499.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5b8370d2e74468a31f98294c7f1499.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5b8370d2e74468a31f98294c7f1499.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f5b8370d2e74468a31f98294c7f1499.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f5b8370d2e74468a31f98294c7f1499.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3p5uGDgDog8fVN0Ii-VJ4-8NYs=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.109027+00 2025-12-09 10:15:14.109032+00 11905 1111111 SPMX-20240815307093 \N \N \N 1 \N [{"file_id": "bdb03e43-cc11-42a1-bff7-f48effe7db80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "826733837ab64ef09a3dc06438c95dc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "826733837ab64ef09a3dc06438c95dc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "826733837ab64ef09a3dc06438c95dc9.jpg", "file_size": 2604003, "is_delete": false, "file_type": 1, "original_file_name": "1111111.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826733837ab64ef09a3dc06438c95dc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826733837ab64ef09a3dc06438c95dc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826733837ab64ef09a3dc06438c95dc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/826733837ab64ef09a3dc06438c95dc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/826733837ab64ef09a3dc06438c95dc9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lHAf33MBgWeJon4s32Mk9moy9I=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.111053+00 2025-12-09 10:15:14.111058+00 11906 HT1724FW#米白VS-D3 SPMX-20240815307086 \N \N \N 1 \N [{"file_id": "e5bd58c3-0ccd-4a41-b046-c9e2fe76325f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "443b97bb48ff4ecea46fb8815477b611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "443b97bb48ff4ecea46fb8815477b611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "443b97bb48ff4ecea46fb8815477b611.jpg", "file_size": 14006, "is_delete": false, "file_type": 1, "original_file_name": "HT1724FW#米白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443b97bb48ff4ecea46fb8815477b611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443b97bb48ff4ecea46fb8815477b611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443b97bb48ff4ecea46fb8815477b611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/443b97bb48ff4ecea46fb8815477b611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/443b97bb48ff4ecea46fb8815477b611.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlKt5LiEYakG-3rUtEzozNssSS8=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.113094+00 2025-12-09 10:15:14.113099+00 11907 LZ1297#背心款2号色 SPMX-20240815307087 \N \N \N 1 \N [{"file_id": "d44e7e93-9c16-435a-84ee-6c9f968735b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1991f943453453ba54f6e76fe03e051.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1991f943453453ba54f6e76fe03e051.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1991f943453453ba54f6e76fe03e051.jpg", "file_size": 18612, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1991f943453453ba54f6e76fe03e051.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1991f943453453ba54f6e76fe03e051.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1991f943453453ba54f6e76fe03e051.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1991f943453453ba54f6e76fe03e051.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1991f943453453ba54f6e76fe03e051.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKi0eXmUrkqQhYLbT2klE4Vm2IM=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.115243+00 2025-12-09 10:15:14.115248+00 11908 FJ005#M SPMX-20240815307089 \N \N \N 1 \N [{"file_id": "7c7c88a8-60cd-468e-b460-39b14e78aac7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d340df57e804ec3bb7fcb2273496967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d340df57e804ec3bb7fcb2273496967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d340df57e804ec3bb7fcb2273496967.jpg", "file_size": 19528, "is_delete": false, "file_type": 1, "original_file_name": "FJ005#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d340df57e804ec3bb7fcb2273496967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d340df57e804ec3bb7fcb2273496967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d340df57e804ec3bb7fcb2273496967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d340df57e804ec3bb7fcb2273496967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d340df57e804ec3bb7fcb2273496967.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_v-358ix50htD1njKB57vFZ7Rvo=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.117267+00 2025-12-09 10:15:14.117272+00 11909 LJH0100-11#4号色 SPMX-20240815307094 \N \N \N 1 \N [{"file_id": "3761b85e-b437-462c-8b32-50201e5c1286", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5892fb1d5f5540ad84dff58706e79db3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5892fb1d5f5540ad84dff58706e79db3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5892fb1d5f5540ad84dff58706e79db3.jpg", "file_size": 74929, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5892fb1d5f5540ad84dff58706e79db3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5892fb1d5f5540ad84dff58706e79db3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5892fb1d5f5540ad84dff58706e79db3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5892fb1d5f5540ad84dff58706e79db3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5892fb1d5f5540ad84dff58706e79db3.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YFB5Z6Ts53YOYloJOTFBLBMjjBM=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.119308+00 2025-12-09 10:15:14.119313+00 11910 0003-A40#黑色 SPMX-20240815307100 \N \N \N 1 \N [{"file_id": "5aff4fa4-91f0-4fb2-b6b1-4bad5a01023f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03e033bec9ca4168a73d188a0bb35623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03e033bec9ca4168a73d188a0bb35623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03e033bec9ca4168a73d188a0bb35623.jpg", "file_size": 45017, "is_delete": false, "file_type": 1, "original_file_name": "0003-A40#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03e033bec9ca4168a73d188a0bb35623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03e033bec9ca4168a73d188a0bb35623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03e033bec9ca4168a73d188a0bb35623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03e033bec9ca4168a73d188a0bb35623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03e033bec9ca4168a73d188a0bb35623.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQnLd8oqVI1kQ0wvMYqhDtHSt30=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.121157+00 2025-12-09 10:15:14.121162+00 11911 1112#WJC22 SPMX-20240815307106 \N \N \N 1 \N [{"file_id": "376dc5ce-70d9-4f09-add8-db2a2a64a303", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880860ed56e84a349573cb7bc11fe98a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880860ed56e84a349573cb7bc11fe98a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880860ed56e84a349573cb7bc11fe98a.jpg", "file_size": 20980, "is_delete": false, "file_type": 1, "original_file_name": "1112#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880860ed56e84a349573cb7bc11fe98a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880860ed56e84a349573cb7bc11fe98a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880860ed56e84a349573cb7bc11fe98a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880860ed56e84a349573cb7bc11fe98a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880860ed56e84a349573cb7bc11fe98a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mFd15v-afuPMbzMitc57lSsbEok=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.123083+00 2025-12-09 10:15:14.123088+00 11912 JTSS314FW#vs-d3 SPMX-20240815307102 \N \N \N 1 \N [{"file_id": "176af3f7-cff1-4735-b148-70011c45f728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef1e1611e2cc43268e0504913f660536.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef1e1611e2cc43268e0504913f660536.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef1e1611e2cc43268e0504913f660536.jpg", "file_size": 12186, "is_delete": false, "file_type": 1, "original_file_name": "JTSS314FW#vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1e1611e2cc43268e0504913f660536.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1e1611e2cc43268e0504913f660536.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef1e1611e2cc43268e0504913f660536.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef1e1611e2cc43268e0504913f660536.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef1e1611e2cc43268e0504913f660536.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9xSb2AJ2RB6a2_YdRnaF1ob7OM=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.125067+00 2025-12-09 10:15:14.125073+00 11913 81716#粉色XL SPMX-20240815307108 \N \N \N 1 \N [{"file_id": "fdfd9f12-eba6-43b4-a2ff-5ff6001a8441", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f5d22ae74154ac4912474888ad44d27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f5d22ae74154ac4912474888ad44d27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f5d22ae74154ac4912474888ad44d27.jpg", "file_size": 15289, "is_delete": false, "file_type": 1, "original_file_name": "81716#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5d22ae74154ac4912474888ad44d27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5d22ae74154ac4912474888ad44d27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5d22ae74154ac4912474888ad44d27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f5d22ae74154ac4912474888ad44d27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f5d22ae74154ac4912474888ad44d27.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMAYVoVEhtEnFdPuJnGvkDSewGc=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.127149+00 2025-12-09 10:15:14.127154+00 11914 LZ1297#背心款4号色 SPMX-20240815307109 \N \N \N 1 \N [{"file_id": "daecbb02-d769-446a-85d1-1d597b43ac81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9768be62602844abbad9cd969305d56f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9768be62602844abbad9cd969305d56f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9768be62602844abbad9cd969305d56f.jpg", "file_size": 18453, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9768be62602844abbad9cd969305d56f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9768be62602844abbad9cd969305d56f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9768be62602844abbad9cd969305d56f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9768be62602844abbad9cd969305d56f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9768be62602844abbad9cd969305d56f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0soe5F0zfY-11Ye6zExMVEZXZk=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.129179+00 2025-12-09 10:15:14.129185+00 11915 C443#黑色 SPMX-20240815307104 \N \N \N 1 \N [{"file_id": "a7372789-c0ff-4882-9cb8-c1737807edfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48def12767ba4f73aae1b95e60194e25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48def12767ba4f73aae1b95e60194e25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48def12767ba4f73aae1b95e60194e25.jpg", "file_size": 79126, "is_delete": false, "file_type": 1, "original_file_name": "C443#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48def12767ba4f73aae1b95e60194e25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48def12767ba4f73aae1b95e60194e25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48def12767ba4f73aae1b95e60194e25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48def12767ba4f73aae1b95e60194e25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48def12767ba4f73aae1b95e60194e25.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMxIn1nVyiz0P0pFtWoIt3QHSUg=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.13122+00 2025-12-09 10:15:14.131226+00 11916 LZ1297#背心款3号色 SPMX-20240815307099 \N \N \N 1 \N [{"file_id": "814008b5-8e07-4d66-841b-86a46ac4041c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "449dc2ac74c14f6c81f47f8733edc357.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "449dc2ac74c14f6c81f47f8733edc357.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "449dc2ac74c14f6c81f47f8733edc357.jpg", "file_size": 18164, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449dc2ac74c14f6c81f47f8733edc357.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449dc2ac74c14f6c81f47f8733edc357.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/449dc2ac74c14f6c81f47f8733edc357.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/449dc2ac74c14f6c81f47f8733edc357.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/449dc2ac74c14f6c81f47f8733edc357.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vZCMBUrfTl6IuOCs8BCi9rNiAVk=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.133257+00 2025-12-09 10:15:14.133263+00 11917 23-2118#A6-领子3XL SPMX-20240815307096 \N \N \N 1 \N [{"file_id": "5f483c85-2eed-48ee-b0a2-b5bd0a9d9e3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d214f87eeb454354bdd74c6f923e2239.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d214f87eeb454354bdd74c6f923e2239.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d214f87eeb454354bdd74c6f923e2239.jpg", "file_size": 13162, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d214f87eeb454354bdd74c6f923e2239.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d214f87eeb454354bdd74c6f923e2239.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d214f87eeb454354bdd74c6f923e2239.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d214f87eeb454354bdd74c6f923e2239.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d214f87eeb454354bdd74c6f923e2239.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLxs5Tp1Lkhw_dN18VpjejHxPhY=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.135319+00 2025-12-09 10:15:14.135324+00 11918 23-2118#A6-领子4XL SPMX-20240815307105 \N \N \N 1 \N [{"file_id": "546fe697-ee91-45e3-b32d-4b3d445afe15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2485c23ce6a489285632ab4c82a5ab7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2485c23ce6a489285632ab4c82a5ab7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2485c23ce6a489285632ab4c82a5ab7.jpg", "file_size": 13142, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2485c23ce6a489285632ab4c82a5ab7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2485c23ce6a489285632ab4c82a5ab7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2485c23ce6a489285632ab4c82a5ab7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2485c23ce6a489285632ab4c82a5ab7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2485c23ce6a489285632ab4c82a5ab7.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlKUgN6Lyby_YDVSWBwm3oqA4Jw=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.137345+00 2025-12-09 10:15:14.13735+00 11919 LJH0100-11#5号色 SPMX-20240815307103 \N \N \N 1 \N [{"file_id": "77fe1be1-2c5f-4525-9852-c5ef6dcc76c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8909e780152c4f2ebd7a94b91489524c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8909e780152c4f2ebd7a94b91489524c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8909e780152c4f2ebd7a94b91489524c.jpg", "file_size": 75322, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8909e780152c4f2ebd7a94b91489524c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8909e780152c4f2ebd7a94b91489524c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8909e780152c4f2ebd7a94b91489524c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8909e780152c4f2ebd7a94b91489524c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8909e780152c4f2ebd7a94b91489524c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHgLnGJpODBH78aQthRDfQyHkg0=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.139373+00 2025-12-09 10:15:14.139378+00 11920 HT1726FW#红VS-D3 SPMX-20240815307107 \N \N \N 1 \N [{"file_id": "14352870-30c1-4609-8179-34b5c5ec09d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03597a4022f24884b01d772078c02e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03597a4022f24884b01d772078c02e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03597a4022f24884b01d772078c02e21.jpg", "file_size": 13166, "is_delete": false, "file_type": 1, "original_file_name": "HT1726FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03597a4022f24884b01d772078c02e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03597a4022f24884b01d772078c02e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03597a4022f24884b01d772078c02e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03597a4022f24884b01d772078c02e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03597a4022f24884b01d772078c02e21.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEDwwX9-uoYUKdXEgHXeUjlpw0k=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.141406+00 2025-12-09 10:15:14.141411+00 11921 FJ005#XL SPMX-20240815307101 \N \N \N 1 \N [{"file_id": "1a7ba94c-312b-43c5-b7a7-b2ffc9fc35e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f23b98fd9964c398621258c9b6b6419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f23b98fd9964c398621258c9b6b6419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f23b98fd9964c398621258c9b6b6419.jpg", "file_size": 19308, "is_delete": false, "file_type": 1, "original_file_name": "FJ005#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f23b98fd9964c398621258c9b6b6419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f23b98fd9964c398621258c9b6b6419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f23b98fd9964c398621258c9b6b6419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f23b98fd9964c398621258c9b6b6419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f23b98fd9964c398621258c9b6b6419.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsPIlcsda8QPCgXNOaZSjfHQEDs=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.143447+00 2025-12-09 10:15:14.143453+00 11922 HT1724FW#黑VS-D3 SPMX-20240815307097 \N \N \N 1 \N [{"file_id": "a5611baf-cfd1-4178-93a4-26faa0d6bda5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "997b8bc561bc4a59b7944c77e17fabfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "997b8bc561bc4a59b7944c77e17fabfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "997b8bc561bc4a59b7944c77e17fabfb.jpg", "file_size": 18515, "is_delete": false, "file_type": 1, "original_file_name": "HT1724FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b8bc561bc4a59b7944c77e17fabfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b8bc561bc4a59b7944c77e17fabfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b8bc561bc4a59b7944c77e17fabfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/997b8bc561bc4a59b7944c77e17fabfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/997b8bc561bc4a59b7944c77e17fabfb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1SWUSaxDoPGLCeOikJQFmxInhrM=", "createTime": "2024-08-15 14:53:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.145476+00 2025-12-09 10:15:14.145481+00 11923 DL31049#批布彩兰 SPMX-20240815307098 \N \N \N 1 \N [{"file_id": "993d1f95-4d08-4ded-93e6-a18f5c70d5af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b9d4cb97a65406595430aaf96b4e05c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b9d4cb97a65406595430aaf96b4e05c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b9d4cb97a65406595430aaf96b4e05c.jpg", "file_size": 26324, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b9d4cb97a65406595430aaf96b4e05c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b9d4cb97a65406595430aaf96b4e05c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b9d4cb97a65406595430aaf96b4e05c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b9d4cb97a65406595430aaf96b4e05c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b9d4cb97a65406595430aaf96b4e05c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWfnyV5rjP2xeuEiP1WlQdJdeBM=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.147497+00 2025-12-09 10:15:14.147502+00 11924 0003-A41#LWQ15 SPMX-20240815307113 \N \N \N 1 \N [{"file_id": "8b06c560-3819-4254-a499-426d562d122f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a4641694f4448a9b7e146b552880c9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a4641694f4448a9b7e146b552880c9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a4641694f4448a9b7e146b552880c9f.jpg", "file_size": 63024, "is_delete": false, "file_type": 1, "original_file_name": "0003-A41#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4641694f4448a9b7e146b552880c9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4641694f4448a9b7e146b552880c9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4641694f4448a9b7e146b552880c9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a4641694f4448a9b7e146b552880c9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a4641694f4448a9b7e146b552880c9f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCdtaYD7Rqv1rK27sKv9AQ4kRNY=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.149547+00 2025-12-09 10:15:14.149552+00 11925 81716#紫色2XL SPMX-20240815307116 \N \N \N 1 \N [{"file_id": "b08f86fc-5c42-4947-a9e3-7481479713ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c90b6853d2724ca3bcf8c08f1cc8eb88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c90b6853d2724ca3bcf8c08f1cc8eb88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c90b6853d2724ca3bcf8c08f1cc8eb88.jpg", "file_size": 14854, "is_delete": false, "file_type": 1, "original_file_name": "81716#紫色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90b6853d2724ca3bcf8c08f1cc8eb88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90b6853d2724ca3bcf8c08f1cc8eb88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90b6853d2724ca3bcf8c08f1cc8eb88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c90b6853d2724ca3bcf8c08f1cc8eb88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c90b6853d2724ca3bcf8c08f1cc8eb88.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRAREH5yx7skhuJPwMnzIMIsrV4=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.151602+00 2025-12-09 10:15:14.151607+00 11926 FJ005#红 SPMX-20240815307112 \N \N \N 1 \N [{"file_id": "6462e1bf-aacc-4b1c-aead-d380a346dca6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "442b2b620d434445b5ed49279b154f80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "442b2b620d434445b5ed49279b154f80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "442b2b620d434445b5ed49279b154f80.jpg", "file_size": 21594, "is_delete": false, "file_type": 1, "original_file_name": "FJ005#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442b2b620d434445b5ed49279b154f80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442b2b620d434445b5ed49279b154f80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/442b2b620d434445b5ed49279b154f80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/442b2b620d434445b5ed49279b154f80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/442b2b620d434445b5ed49279b154f80.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuiJ36hj71JqY4segM6tKltNdYQ=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.153936+00 2025-12-09 10:15:14.153942+00 11927 23-2118#A7-3XL SPMX-20240815307118 \N \N \N 1 \N [{"file_id": "d1329505-ff63-4a43-84fb-83b5e680b70a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34f71a0f00af44349e390a3ee4ae0cbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34f71a0f00af44349e390a3ee4ae0cbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34f71a0f00af44349e390a3ee4ae0cbc.jpg", "file_size": 15092, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f71a0f00af44349e390a3ee4ae0cbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f71a0f00af44349e390a3ee4ae0cbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f71a0f00af44349e390a3ee4ae0cbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34f71a0f00af44349e390a3ee4ae0cbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34f71a0f00af44349e390a3ee4ae0cbc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vkCZokiRpXHHH0qfkmmbMkVcA8s=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.156177+00 2025-12-09 10:15:14.156182+00 11928 LJH0100-11#彩蓝 SPMX-20240815307114 \N \N \N 1 \N [{"file_id": "94c053f6-73c7-4a0f-8f20-b36971b3a1d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a62c90e560194d99b1a3acf5f2ea71e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a62c90e560194d99b1a3acf5f2ea71e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a62c90e560194d99b1a3acf5f2ea71e8.jpg", "file_size": 48897, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62c90e560194d99b1a3acf5f2ea71e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62c90e560194d99b1a3acf5f2ea71e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62c90e560194d99b1a3acf5f2ea71e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a62c90e560194d99b1a3acf5f2ea71e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a62c90e560194d99b1a3acf5f2ea71e8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQ-xL0wH_ff_jXgKb7KTAT1vcfE=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.158407+00 2025-12-09 10:15:14.158413+00 11929 JTSS315FW#VS-D3 SPMX-20240815307111 \N \N \N 1 \N [{"file_id": "f3ff4925-eb2b-4037-ae59-e92899d52803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c07430e0b74e43088e40641e74d3f900.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c07430e0b74e43088e40641e74d3f900.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c07430e0b74e43088e40641e74d3f900.jpg", "file_size": 10967, "is_delete": false, "file_type": 1, "original_file_name": "JTSS315FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07430e0b74e43088e40641e74d3f900.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07430e0b74e43088e40641e74d3f900.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07430e0b74e43088e40641e74d3f900.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c07430e0b74e43088e40641e74d3f900.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c07430e0b74e43088e40641e74d3f900.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Csk4ypxKTMcC5oygQ9pazAO79l0=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.160443+00 2025-12-09 10:15:14.160448+00 11930 DL31049#批布浅粉 SPMX-20240815307122 \N \N \N 1 \N [{"file_id": "06957132-e0b1-47de-ad6b-7dab9fc2ebd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a8b48f78d4a4d85b8a32bacedb7a798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a8b48f78d4a4d85b8a32bacedb7a798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a8b48f78d4a4d85b8a32bacedb7a798.jpg", "file_size": 23161, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8b48f78d4a4d85b8a32bacedb7a798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8b48f78d4a4d85b8a32bacedb7a798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8b48f78d4a4d85b8a32bacedb7a798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a8b48f78d4a4d85b8a32bacedb7a798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a8b48f78d4a4d85b8a32bacedb7a798.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJ86gTPClwNff7zBKjmNzgPk6N0=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.162469+00 2025-12-09 10:15:14.162474+00 11931 HT1726FW#绿VS-D3 SPMX-20240815307121 \N \N \N 1 \N [{"file_id": "32824f26-ad56-4302-bd6e-6140e112001b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7867f076101455099824d48a35fddc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7867f076101455099824d48a35fddc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7867f076101455099824d48a35fddc9.jpg", "file_size": 12882, "is_delete": false, "file_type": 1, "original_file_name": "HT1726FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7867f076101455099824d48a35fddc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7867f076101455099824d48a35fddc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7867f076101455099824d48a35fddc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7867f076101455099824d48a35fddc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7867f076101455099824d48a35fddc9.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQh03IHUSgT2RJCSMhMKRFWZMNM=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.164529+00 2025-12-09 10:15:14.164534+00 11932 1114-1FWE#深蓝底白大圆点 SPMX-20240815307117 \N \N \N 1 \N [{"file_id": "d7152891-1ca1-4adf-9ba5-7412f0fad925", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eb8f8522b614c04b9953c9900a0e759.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eb8f8522b614c04b9953c9900a0e759.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eb8f8522b614c04b9953c9900a0e759.jpg", "file_size": 11636, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#深蓝底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb8f8522b614c04b9953c9900a0e759.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb8f8522b614c04b9953c9900a0e759.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb8f8522b614c04b9953c9900a0e759.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eb8f8522b614c04b9953c9900a0e759.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eb8f8522b614c04b9953c9900a0e759.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0RMExS09hqm_Qx3E-lI2sA5S5Xo=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.166448+00 2025-12-09 10:15:14.166452+00 11933 DL31049#批布枣红 SPMX-20240815307110 \N \N \N 1 \N [{"file_id": "7dd410b8-48fa-430b-ac33-38cd729bb409", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "155933f47b9049e1a78c1ee98873a600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "155933f47b9049e1a78c1ee98873a600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "155933f47b9049e1a78c1ee98873a600.jpg", "file_size": 25088, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/155933f47b9049e1a78c1ee98873a600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/155933f47b9049e1a78c1ee98873a600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/155933f47b9049e1a78c1ee98873a600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/155933f47b9049e1a78c1ee98873a600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/155933f47b9049e1a78c1ee98873a600.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84XOZVYc-WpN5vC5j5K2gL_cXe4=", "createTime": "2024-08-15 14:53:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.168352+00 2025-12-09 10:15:14.168357+00 11934 C445#墨绿 SPMX-20240815307115 \N \N \N 1 \N [{"file_id": "81ec2e12-b15a-4026-a9b9-04637889f9d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b40b5ba715ec42f69e8f3b77fb46096b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b40b5ba715ec42f69e8f3b77fb46096b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b40b5ba715ec42f69e8f3b77fb46096b.jpg", "file_size": 67087, "is_delete": false, "file_type": 1, "original_file_name": "C445#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40b5ba715ec42f69e8f3b77fb46096b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40b5ba715ec42f69e8f3b77fb46096b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40b5ba715ec42f69e8f3b77fb46096b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b40b5ba715ec42f69e8f3b77fb46096b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b40b5ba715ec42f69e8f3b77fb46096b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuwKSAOjLy5lumMiu-PbKmD3wvI=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.170211+00 2025-12-09 10:15:14.170216+00 11935 LZ1297#背心款5号色 SPMX-20240815307119 \N \N \N 1 \N [{"file_id": "84ce143c-30f6-48a0-a60f-e6071d4be38c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15bb20e3075745008192734cf54d15b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15bb20e3075745008192734cf54d15b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15bb20e3075745008192734cf54d15b2.jpg", "file_size": 17800, "is_delete": false, "file_type": 1, "original_file_name": "LZ1297#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15bb20e3075745008192734cf54d15b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15bb20e3075745008192734cf54d15b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15bb20e3075745008192734cf54d15b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15bb20e3075745008192734cf54d15b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15bb20e3075745008192734cf54d15b2.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ksYsz_c4v4Mza8W6TNrEUnVqbzI=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.172317+00 2025-12-09 10:15:14.172322+00 11936 LZ1298#捆条布 SPMX-20240815307132 \N \N \N 1 \N [{"file_id": "c0a98a64-bb2f-40bc-8c43-310e3b6aa6fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66648177329a434ebe4c1e42943950d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66648177329a434ebe4c1e42943950d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66648177329a434ebe4c1e42943950d8.jpg", "file_size": 12478, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66648177329a434ebe4c1e42943950d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66648177329a434ebe4c1e42943950d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66648177329a434ebe4c1e42943950d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66648177329a434ebe4c1e42943950d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66648177329a434ebe4c1e42943950d8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMlufNDBYcYsgkZEqrGG0vZk348=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.174393+00 2025-12-09 10:15:14.174398+00 11937 HT1726FW#蓝VS-D3 SPMX-20240815307128 \N \N \N 1 \N [{"file_id": "f15f771b-8cd3-4782-9642-16d434307161", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2e75dfc4f714a20a5a909a97bf0f731.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2e75dfc4f714a20a5a909a97bf0f731.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2e75dfc4f714a20a5a909a97bf0f731.jpg", "file_size": 14004, "is_delete": false, "file_type": 1, "original_file_name": "HT1726FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e75dfc4f714a20a5a909a97bf0f731.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e75dfc4f714a20a5a909a97bf0f731.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2e75dfc4f714a20a5a909a97bf0f731.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2e75dfc4f714a20a5a909a97bf0f731.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2e75dfc4f714a20a5a909a97bf0f731.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaRbn9R82PVV7UXgqgUYKrHJniE=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.176257+00 2025-12-09 10:15:14.176263+00 11938 FJ005FW#VS-D3 SPMX-20240815307125 \N \N \N 1 \N [{"file_id": "a420e046-f224-4021-9508-3210deed9bb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0561b6efd244dc98db303f3293e2387.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0561b6efd244dc98db303f3293e2387.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0561b6efd244dc98db303f3293e2387.jpg", "file_size": 19309, "is_delete": false, "file_type": 1, "original_file_name": "FJ005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0561b6efd244dc98db303f3293e2387.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0561b6efd244dc98db303f3293e2387.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0561b6efd244dc98db303f3293e2387.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0561b6efd244dc98db303f3293e2387.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0561b6efd244dc98db303f3293e2387.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewOL6hfugwPeoQ-rGgUSHwtl7Vk=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.178324+00 2025-12-09 10:15:14.178329+00 11939 DL31049#批布玫红 SPMX-20240815307129 \N \N \N 1 \N [{"file_id": "7e23eda4-1ea3-420d-b342-16d0285f7150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a5167e242754eb3b4923de1689d94f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a5167e242754eb3b4923de1689d94f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a5167e242754eb3b4923de1689d94f3.jpg", "file_size": 24517, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5167e242754eb3b4923de1689d94f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5167e242754eb3b4923de1689d94f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5167e242754eb3b4923de1689d94f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a5167e242754eb3b4923de1689d94f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a5167e242754eb3b4923de1689d94f3.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Av6rmHg79_O0zJuvi04g7BcoSiI=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.180428+00 2025-12-09 10:15:14.180434+00 11940 JTSS316FW#VS-D3 SPMX-20240815307123 \N \N \N 1 \N [{"file_id": "39545cfd-3975-44b8-8244-ab8ec6a5f835", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20be58cea29846bda7e1782b778fe493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20be58cea29846bda7e1782b778fe493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20be58cea29846bda7e1782b778fe493.jpg", "file_size": 19929, "is_delete": false, "file_type": 1, "original_file_name": "JTSS316FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20be58cea29846bda7e1782b778fe493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20be58cea29846bda7e1782b778fe493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20be58cea29846bda7e1782b778fe493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20be58cea29846bda7e1782b778fe493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20be58cea29846bda7e1782b778fe493.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHyToCy3snOl5ZWg2lOw8ixRFrw=", "createTime": "2024-08-15 14:53:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.182277+00 2025-12-09 10:15:14.182282+00 11941 0003-A422#杏色 SPMX-20240815307124 \N \N \N 1 \N [{"file_id": "3ad3fe73-09e5-417e-beed-b480475e96fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1ca51f5b1cd47e89725d32f9513ba07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1ca51f5b1cd47e89725d32f9513ba07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1ca51f5b1cd47e89725d32f9513ba07.jpg", "file_size": 36707, "is_delete": false, "file_type": 1, "original_file_name": "0003-A422#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ca51f5b1cd47e89725d32f9513ba07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ca51f5b1cd47e89725d32f9513ba07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ca51f5b1cd47e89725d32f9513ba07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1ca51f5b1cd47e89725d32f9513ba07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1ca51f5b1cd47e89725d32f9513ba07.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jth3p6pTifs2FUB93KJaYOZJfYs=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.184375+00 2025-12-09 10:15:14.18438+00 11942 81716#紫色L SPMX-20240815307131 \N \N \N 1 \N [{"file_id": "e56ba60a-c9a2-42be-a2d5-0ec32ccab01b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42f341c0ab8b48a486290da3f91bacbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42f341c0ab8b48a486290da3f91bacbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42f341c0ab8b48a486290da3f91bacbc.jpg", "file_size": 15059, "is_delete": false, "file_type": 1, "original_file_name": "81716#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f341c0ab8b48a486290da3f91bacbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f341c0ab8b48a486290da3f91bacbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f341c0ab8b48a486290da3f91bacbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42f341c0ab8b48a486290da3f91bacbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42f341c0ab8b48a486290da3f91bacbc.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVs5VpF4Qn7iulzFXdtStQ-vOY8=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.186449+00 2025-12-09 10:15:14.186454+00 11943 LJH0100-11#玫红 SPMX-20240815307126 \N \N \N 1 \N [{"file_id": "3d2c21d1-a390-46b0-a3e9-d24343ab9538", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3227d75d7904d0e94c67666cccc2820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3227d75d7904d0e94c67666cccc2820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3227d75d7904d0e94c67666cccc2820.jpg", "file_size": 44285, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3227d75d7904d0e94c67666cccc2820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3227d75d7904d0e94c67666cccc2820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3227d75d7904d0e94c67666cccc2820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3227d75d7904d0e94c67666cccc2820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3227d75d7904d0e94c67666cccc2820.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRw8MkuQ28BX0ZPxEl-Bg7z5iQA=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.188331+00 2025-12-09 10:15:14.188335+00 11944 1114-1FWE#深蓝底白小圆点 SPMX-20240815307130 \N \N \N 1 \N [{"file_id": "be50e3da-284e-403c-86ec-d8212f33d5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df965b78b3404f81afb325f79f52574e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df965b78b3404f81afb325f79f52574e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df965b78b3404f81afb325f79f52574e.jpg", "file_size": 19042, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#深蓝底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df965b78b3404f81afb325f79f52574e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df965b78b3404f81afb325f79f52574e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df965b78b3404f81afb325f79f52574e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df965b78b3404f81afb325f79f52574e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df965b78b3404f81afb325f79f52574e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jrc4EIMkX_zgG22kI3SnHnaQU0=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.190353+00 2025-12-09 10:15:14.190358+00 11945 C445#大白 SPMX-20240815307127 \N \N \N 1 \N [{"file_id": "d0938d6c-57f5-4574-bf97-23609d10bb44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c41dddea5e74df2960a1e27597eb682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c41dddea5e74df2960a1e27597eb682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c41dddea5e74df2960a1e27597eb682.jpg", "file_size": 68903, "is_delete": false, "file_type": 1, "original_file_name": "C445#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c41dddea5e74df2960a1e27597eb682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c41dddea5e74df2960a1e27597eb682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c41dddea5e74df2960a1e27597eb682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c41dddea5e74df2960a1e27597eb682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c41dddea5e74df2960a1e27597eb682.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V3zfBM_myOb0aF83K6JyNeru6RE=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.192449+00 2025-12-09 10:15:14.192454+00 11946 23-2118#A7-4XL SPMX-20240815307133 \N \N \N 1 \N [{"file_id": "e1f43b7d-48ca-4e30-a1d2-e9392aba8fdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61d04a58514c474c81187c9e060a487f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61d04a58514c474c81187c9e060a487f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61d04a58514c474c81187c9e060a487f.jpg", "file_size": 14051, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d04a58514c474c81187c9e060a487f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d04a58514c474c81187c9e060a487f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d04a58514c474c81187c9e060a487f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61d04a58514c474c81187c9e060a487f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61d04a58514c474c81187c9e060a487f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZHZ300EOIlSLZdWUDvw-VIwTRk=", "createTime": "2024-08-15 14:53:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.1945+00 2025-12-09 10:15:14.194504+00 11947 JTSS317FW#VS-D3 SPMX-20240815307134 \N \N \N 1 \N [{"file_id": "bc004dda-84ff-4288-a996-77d184f555af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7574663e5c1b47d691b23f0002a1337d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7574663e5c1b47d691b23f0002a1337d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7574663e5c1b47d691b23f0002a1337d.jpg", "file_size": 11551, "is_delete": false, "file_type": 1, "original_file_name": "JTSS317FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7574663e5c1b47d691b23f0002a1337d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7574663e5c1b47d691b23f0002a1337d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7574663e5c1b47d691b23f0002a1337d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7574663e5c1b47d691b23f0002a1337d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7574663e5c1b47d691b23f0002a1337d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fkfa3e9o2I9Zd0bUQFiGkmd-lU4=", "createTime": "2024-08-15 14:53:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.196389+00 2025-12-09 10:15:14.196394+00 11948 HT187FW#VS-D3净色 SPMX-20240815307136 \N \N \N 1 \N [{"file_id": "f6881d85-63d1-44dd-9409-497dead95787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cf08605e05a44f9a209e4fa44bc2353.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cf08605e05a44f9a209e4fa44bc2353.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cf08605e05a44f9a209e4fa44bc2353.jpg", "file_size": 5398, "is_delete": false, "file_type": 1, "original_file_name": "HT187FW#VS-D3净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf08605e05a44f9a209e4fa44bc2353.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf08605e05a44f9a209e4fa44bc2353.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf08605e05a44f9a209e4fa44bc2353.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cf08605e05a44f9a209e4fa44bc2353.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cf08605e05a44f9a209e4fa44bc2353.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UD7unxqyMjc6UOihmXGFRKpcCx8=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.19849+00 2025-12-09 10:15:14.198495+00 11949 23-2118#A7-领子3XL SPMX-20240815307137 \N \N \N 1 \N [{"file_id": "d1a7d3e9-99a4-4f61-8c97-c427241d95f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "420efbfca7fc482bb2b3b0a934505b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "420efbfca7fc482bb2b3b0a934505b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "420efbfca7fc482bb2b3b0a934505b87.jpg", "file_size": 12020, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420efbfca7fc482bb2b3b0a934505b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420efbfca7fc482bb2b3b0a934505b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420efbfca7fc482bb2b3b0a934505b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/420efbfca7fc482bb2b3b0a934505b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/420efbfca7fc482bb2b3b0a934505b87.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0z2fm4wbs5xqKzTyyIJw7jtKvk8=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.200601+00 2025-12-09 10:15:14.200605+00 11950 LZ1298#背心款1号色 SPMX-20240815307139 \N \N \N 1 \N [{"file_id": "16b701be-e3e6-485c-a1bb-9d7638c4ed2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c631eb12f4d4f418f4434d65e918dcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c631eb12f4d4f418f4434d65e918dcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c631eb12f4d4f418f4434d65e918dcb.jpg", "file_size": 19057, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c631eb12f4d4f418f4434d65e918dcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c631eb12f4d4f418f4434d65e918dcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c631eb12f4d4f418f4434d65e918dcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c631eb12f4d4f418f4434d65e918dcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c631eb12f4d4f418f4434d65e918dcb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIsrPBVOcZ_3NIw94XIK0MeGTOM=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.202445+00 2025-12-09 10:15:14.20245+00 11951 0003-A422#粉色 SPMX-20240815307135 \N \N \N 1 \N [{"file_id": "4102fe39-7e6d-40ce-8a97-d9b67a7d8a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc61a83a36c548a4bc8f15536aa51c2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc61a83a36c548a4bc8f15536aa51c2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc61a83a36c548a4bc8f15536aa51c2b.jpg", "file_size": 37296, "is_delete": false, "file_type": 1, "original_file_name": "0003-A422#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc61a83a36c548a4bc8f15536aa51c2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc61a83a36c548a4bc8f15536aa51c2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc61a83a36c548a4bc8f15536aa51c2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc61a83a36c548a4bc8f15536aa51c2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc61a83a36c548a4bc8f15536aa51c2b.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bAzIAJLPmykCopQ5vC7ToESVzXs=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.204543+00 2025-12-09 10:15:14.204548+00 11952 1114-1FWE#蓝底白大圆点 SPMX-20240815307138 \N \N \N 1 \N [{"file_id": "2b9f562b-705b-45e9-877e-f2f48524383d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4002b2139f704f31b444b2f1a904eab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4002b2139f704f31b444b2f1a904eab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4002b2139f704f31b444b2f1a904eab6.jpg", "file_size": 9969, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#蓝底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4002b2139f704f31b444b2f1a904eab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4002b2139f704f31b444b2f1a904eab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4002b2139f704f31b444b2f1a904eab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4002b2139f704f31b444b2f1a904eab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4002b2139f704f31b444b2f1a904eab6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXM2vzUKRxkGqZ18fQhPo_iAIR8=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.20662+00 2025-12-09 10:15:14.206625+00 11953 FJ005FWE#浅蓝色VS-D3 SPMX-20240815307140 \N \N \N 1 \N [{"file_id": "c11d895d-5c1e-4888-b9ed-e3222203a3c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "570c9c83866143da86ce35f2c1c3ee6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "570c9c83866143da86ce35f2c1c3ee6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "570c9c83866143da86ce35f2c1c3ee6a.jpg", "file_size": 13012, "is_delete": false, "file_type": 1, "original_file_name": "FJ005FWE#浅蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/570c9c83866143da86ce35f2c1c3ee6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/570c9c83866143da86ce35f2c1c3ee6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/570c9c83866143da86ce35f2c1c3ee6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/570c9c83866143da86ce35f2c1c3ee6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/570c9c83866143da86ce35f2c1c3ee6a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3fBbMMjInH7x0JZI3rI0PbCLOnA=", "createTime": "2024-08-15 14:53:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.20849+00 2025-12-09 10:15:14.208495+00 11954 JTSS318FW#VS-D3 SPMX-20240815307145 \N \N \N 1 \N [{"file_id": "9b7deb3b-7e35-4b03-86d8-7f0578329920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b8e673f5d674598811806a84c5c903c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b8e673f5d674598811806a84c5c903c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b8e673f5d674598811806a84c5c903c.jpg", "file_size": 14926, "is_delete": false, "file_type": 1, "original_file_name": "JTSS318FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8e673f5d674598811806a84c5c903c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8e673f5d674598811806a84c5c903c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b8e673f5d674598811806a84c5c903c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b8e673f5d674598811806a84c5c903c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b8e673f5d674598811806a84c5c903c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKXz7eGWt0diLfH6Im6pNCu26wk=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.210562+00 2025-12-09 10:15:14.210567+00 11955 C445#杏色 SPMX-20240815307142 \N \N \N 1 \N [{"file_id": "e751f67a-6f59-4730-a6e9-e572d5a800e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4328fad608bc4520bf3adc7e82fc9116.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4328fad608bc4520bf3adc7e82fc9116.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4328fad608bc4520bf3adc7e82fc9116.jpg", "file_size": 66743, "is_delete": false, "file_type": 1, "original_file_name": "C445#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4328fad608bc4520bf3adc7e82fc9116.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4328fad608bc4520bf3adc7e82fc9116.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4328fad608bc4520bf3adc7e82fc9116.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4328fad608bc4520bf3adc7e82fc9116.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4328fad608bc4520bf3adc7e82fc9116.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lU5StsHXc_QLYFkentJtYVEcCHA=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.212675+00 2025-12-09 10:15:14.21268+00 11956 LJH0100-11#紫色 SPMX-20240815307141 \N \N \N 1 \N [{"file_id": "2f3c928e-5799-4156-9e4e-c6da3e89b4b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c3d7d552e104b1e9b33441c5916a403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c3d7d552e104b1e9b33441c5916a403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c3d7d552e104b1e9b33441c5916a403.jpg", "file_size": 45139, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3d7d552e104b1e9b33441c5916a403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3d7d552e104b1e9b33441c5916a403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3d7d552e104b1e9b33441c5916a403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c3d7d552e104b1e9b33441c5916a403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c3d7d552e104b1e9b33441c5916a403.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_GlYe6XmeFqfl7HSD4_bnSo6_IM=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.214548+00 2025-12-09 10:15:14.214553+00 11957 81716#紫色M SPMX-20240815307144 \N \N \N 1 \N [{"file_id": "74aceda2-b748-40e5-baa2-f5ee449070db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e82aa918905449e7889683e075e5618a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e82aa918905449e7889683e075e5618a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e82aa918905449e7889683e075e5618a.jpg", "file_size": 15633, "is_delete": false, "file_type": 1, "original_file_name": "81716#紫色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82aa918905449e7889683e075e5618a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82aa918905449e7889683e075e5618a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82aa918905449e7889683e075e5618a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e82aa918905449e7889683e075e5618a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e82aa918905449e7889683e075e5618a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIicG83-2mnzCp7uFTIqKqZr9sU=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.216624+00 2025-12-09 10:15:14.216629+00 11958 HT187FW#VS-D3蓝白 SPMX-20240815307146 \N \N \N 1 \N [{"file_id": "c5c3bb92-dec4-45cc-be60-9e99b616dff2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c732c66adade488b8463fb33b82f6adb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c732c66adade488b8463fb33b82f6adb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c732c66adade488b8463fb33b82f6adb.jpg", "file_size": 15454, "is_delete": false, "file_type": 1, "original_file_name": "HT187FW#VS-D3蓝白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c732c66adade488b8463fb33b82f6adb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c732c66adade488b8463fb33b82f6adb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c732c66adade488b8463fb33b82f6adb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c732c66adade488b8463fb33b82f6adb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c732c66adade488b8463fb33b82f6adb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naWtk6VKBCDhq1NpfW5pdJ2M1hg=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.218698+00 2025-12-09 10:15:14.218705+00 11959 DL31049#批布蓝绿 SPMX-20240815307143 \N \N \N 1 \N [{"file_id": "7e11f699-99ab-49d4-b63a-7d99245f40aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aaa0bd507f64329872e5c5f50aa0854.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aaa0bd507f64329872e5c5f50aa0854.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aaa0bd507f64329872e5c5f50aa0854.jpg", "file_size": 25101, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aaa0bd507f64329872e5c5f50aa0854.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aaa0bd507f64329872e5c5f50aa0854.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aaa0bd507f64329872e5c5f50aa0854.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aaa0bd507f64329872e5c5f50aa0854.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aaa0bd507f64329872e5c5f50aa0854.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TrrxZHJeYMTggwdjaHpSU5ordg=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.220563+00 2025-12-09 10:15:14.220568+00 11960 23-2118#A7-领子4XL SPMX-20240815307149 \N \N \N 1 \N [{"file_id": "a1878165-cd5d-4faf-905a-8414bc640968", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a22614e4ae74009ab8244b1f3f57d72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a22614e4ae74009ab8244b1f3f57d72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a22614e4ae74009ab8244b1f3f57d72.jpg", "file_size": 11344, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a22614e4ae74009ab8244b1f3f57d72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a22614e4ae74009ab8244b1f3f57d72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a22614e4ae74009ab8244b1f3f57d72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a22614e4ae74009ab8244b1f3f57d72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a22614e4ae74009ab8244b1f3f57d72.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j57LUhssNVCmUXq3j8nl7p92duM=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.222621+00 2025-12-09 10:15:14.222626+00 11961 0003-A422#青色 SPMX-20240815307150 \N \N \N 1 \N [{"file_id": "ce758dc3-b887-495e-80d8-63c83d9de9dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg", "file_size": 38600, "is_delete": false, "file_type": 1, "original_file_name": "0003-A422#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b97f17450af4a4aaa0ee7b6e4a7fb1e.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tj5hFX5D7x-r43WVB-x1l-mhKUs=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.224696+00 2025-12-09 10:15:14.224701+00 11962 LZ1298#背心款2号色 SPMX-20240815307147 \N \N \N 1 \N [{"file_id": "c2d59b06-49dd-4728-9b00-f5e70695291f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4feddd819af43b9b15936e571f7eb8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4feddd819af43b9b15936e571f7eb8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4feddd819af43b9b15936e571f7eb8d.jpg", "file_size": 18137, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4feddd819af43b9b15936e571f7eb8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4feddd819af43b9b15936e571f7eb8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4feddd819af43b9b15936e571f7eb8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4feddd819af43b9b15936e571f7eb8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4feddd819af43b9b15936e571f7eb8d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYBmToexHvUIMn_ClBfJNGgfnLY=", "createTime": "2024-08-15 14:53:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.226784+00 2025-12-09 10:15:14.226788+00 11963 1114-1FWE#蓝底白小圆点 SPMX-20240815307148 \N \N \N 1 \N [{"file_id": "5f8f18c2-7797-4bf7-a835-fbcf09419974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddba5299a4924b1b8a7da321feea6323.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddba5299a4924b1b8a7da321feea6323.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddba5299a4924b1b8a7da321feea6323.jpg", "file_size": 14623, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#蓝底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddba5299a4924b1b8a7da321feea6323.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddba5299a4924b1b8a7da321feea6323.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddba5299a4924b1b8a7da321feea6323.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddba5299a4924b1b8a7da321feea6323.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddba5299a4924b1b8a7da321feea6323.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFXwJiXq4qZzRrcUci_MlyEEGKY=", "createTime": "2024-08-15 14:53:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.228639+00 2025-12-09 10:15:14.228644+00 11964 LJH0100-11#黑色 SPMX-20240815307151 \N \N \N 1 \N [{"file_id": "a7fd5cae-db83-4dc3-8364-1b64e3a62c0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a121cbecde0e4e12a34f2cfe69ba8cd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a121cbecde0e4e12a34f2cfe69ba8cd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a121cbecde0e4e12a34f2cfe69ba8cd8.jpg", "file_size": 40956, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-11#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a121cbecde0e4e12a34f2cfe69ba8cd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a121cbecde0e4e12a34f2cfe69ba8cd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a121cbecde0e4e12a34f2cfe69ba8cd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a121cbecde0e4e12a34f2cfe69ba8cd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a121cbecde0e4e12a34f2cfe69ba8cd8.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:feIlAdS-pGGBVXmajP9npD-9-Iw=", "createTime": "2024-08-15 14:53:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.23072+00 2025-12-09 10:15:14.230725+00 11965 C445#玫红 SPMX-20240815307157 \N \N \N 1 \N [{"file_id": "c2428881-2df0-45dc-9ae2-d32e0e7a237a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e3e4877502e424aa384f13519ac2b2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e3e4877502e424aa384f13519ac2b2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e3e4877502e424aa384f13519ac2b2c.jpg", "file_size": 67342, "is_delete": false, "file_type": 1, "original_file_name": "C445#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3e4877502e424aa384f13519ac2b2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3e4877502e424aa384f13519ac2b2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3e4877502e424aa384f13519ac2b2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e3e4877502e424aa384f13519ac2b2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e3e4877502e424aa384f13519ac2b2c.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNAdXvK9_9iNJAEQCeeAon1e2OU=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.232785+00 2025-12-09 10:15:14.23279+00 11966 23-2118#A8-3XL SPMX-20240815307160 \N \N \N 1 \N [{"file_id": "b00ca0b9-fb8d-4d25-9cb0-e773639ff9a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec0aab15a6043cfa0d6ee3004f578fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec0aab15a6043cfa0d6ee3004f578fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec0aab15a6043cfa0d6ee3004f578fa.jpg", "file_size": 18192, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec0aab15a6043cfa0d6ee3004f578fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec0aab15a6043cfa0d6ee3004f578fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec0aab15a6043cfa0d6ee3004f578fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec0aab15a6043cfa0d6ee3004f578fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec0aab15a6043cfa0d6ee3004f578fa.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uc96nxuQpHFWlXD8WCXbM09thZw=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.234829+00 2025-12-09 10:15:14.234834+00 11967 LJH0100-12#1号色 SPMX-20240815307163 \N \N \N 1 \N [{"file_id": "2a5f1050-cf6a-4d9e-8856-419c7df2008b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232fd2f3fe2d43558ef1afe9aa73b2c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232fd2f3fe2d43558ef1afe9aa73b2c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232fd2f3fe2d43558ef1afe9aa73b2c5.jpg", "file_size": 70730, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-12#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232fd2f3fe2d43558ef1afe9aa73b2c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232fd2f3fe2d43558ef1afe9aa73b2c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232fd2f3fe2d43558ef1afe9aa73b2c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232fd2f3fe2d43558ef1afe9aa73b2c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232fd2f3fe2d43558ef1afe9aa73b2c5.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNvU4kQTDgcrWVJk_OFs-iq06p8=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.23667+00 2025-12-09 10:15:14.236675+00 11968 JTSS319FW#VS-D3 SPMX-20240815307156 \N \N \N 1 \N [{"file_id": "242abb52-af1a-44a9-9a68-4e62e4ccb45a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26e74282488349619822a9273cd8cc17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26e74282488349619822a9273cd8cc17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26e74282488349619822a9273cd8cc17.jpg", "file_size": 13840, "is_delete": false, "file_type": 1, "original_file_name": "JTSS319FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e74282488349619822a9273cd8cc17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e74282488349619822a9273cd8cc17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e74282488349619822a9273cd8cc17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26e74282488349619822a9273cd8cc17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26e74282488349619822a9273cd8cc17.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MPDQoYxcPusyeViqoA2GtzF2IeQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.238744+00 2025-12-09 10:15:14.238748+00 11969 DL31049#批布黄色 SPMX-20240815307153 \N \N \N 1 \N [{"file_id": "b60122c0-1152-4d45-ac6b-96a1584d51bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "866ba1221cbb440fa5b77f2db04e0c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "866ba1221cbb440fa5b77f2db04e0c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "866ba1221cbb440fa5b77f2db04e0c5a.jpg", "file_size": 23351, "is_delete": false, "file_type": 1, "original_file_name": "DL31049#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866ba1221cbb440fa5b77f2db04e0c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866ba1221cbb440fa5b77f2db04e0c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866ba1221cbb440fa5b77f2db04e0c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/866ba1221cbb440fa5b77f2db04e0c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/866ba1221cbb440fa5b77f2db04e0c5a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U_F0au7Pa_L7kDknhj3SqG_SyiE=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.240945+00 2025-12-09 10:15:14.240951+00 11970 DL31062#前幅亮黄 SPMX-20240815307162 \N \N \N 1 \N [{"file_id": "9130c3e5-e90a-42fd-85f2-f1f7120558af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb36a9b4af6b4b0c96a81f2e207e4869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb36a9b4af6b4b0c96a81f2e207e4869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb36a9b4af6b4b0c96a81f2e207e4869.jpg", "file_size": 14133, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb36a9b4af6b4b0c96a81f2e207e4869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb36a9b4af6b4b0c96a81f2e207e4869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb36a9b4af6b4b0c96a81f2e207e4869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb36a9b4af6b4b0c96a81f2e207e4869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb36a9b4af6b4b0c96a81f2e207e4869.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTcx97HjtBnk4gXi3qD7_qiZAxA=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.243204+00 2025-12-09 10:15:14.243209+00 11971 HT187FW#VS-D3黑白 SPMX-20240815307155 \N \N \N 1 \N [{"file_id": "99f5e53e-c2de-4094-8522-fffef22b90ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75f665a0141443a18013d1f7f8b15c15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75f665a0141443a18013d1f7f8b15c15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75f665a0141443a18013d1f7f8b15c15.jpg", "file_size": 14267, "is_delete": false, "file_type": 1, "original_file_name": "HT187FW#VS-D3黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f665a0141443a18013d1f7f8b15c15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f665a0141443a18013d1f7f8b15c15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f665a0141443a18013d1f7f8b15c15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75f665a0141443a18013d1f7f8b15c15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75f665a0141443a18013d1f7f8b15c15.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q5T9q-WQuL1cwcnC009IgzirJqY=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.245269+00 2025-12-09 10:15:14.245274+00 11972 1114-1FWE#蓝底黑大圆点 SPMX-20240815307159 \N \N \N 1 \N [{"file_id": "c2962302-9b5a-4571-8284-02378222c958", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e201b1e99ec64c0abdee3f852aee7a81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e201b1e99ec64c0abdee3f852aee7a81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e201b1e99ec64c0abdee3f852aee7a81.jpg", "file_size": 10651, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#蓝底黑大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e201b1e99ec64c0abdee3f852aee7a81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e201b1e99ec64c0abdee3f852aee7a81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e201b1e99ec64c0abdee3f852aee7a81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e201b1e99ec64c0abdee3f852aee7a81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e201b1e99ec64c0abdee3f852aee7a81.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPOPIqw8MEdn4LcDgnTAKKcFE2Q=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.247305+00 2025-12-09 10:15:14.247311+00 11973 FJ006#3XL SPMX-20240815307164 \N \N \N 1 \N [{"file_id": "bf38b9f8-aeb3-4cb9-8dcb-fcd6c59b6217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ebfa32efc02420a997ddf28eb79343f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ebfa32efc02420a997ddf28eb79343f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ebfa32efc02420a997ddf28eb79343f.jpg", "file_size": 17261, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebfa32efc02420a997ddf28eb79343f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebfa32efc02420a997ddf28eb79343f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebfa32efc02420a997ddf28eb79343f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ebfa32efc02420a997ddf28eb79343f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ebfa32efc02420a997ddf28eb79343f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKyVc18Ny3HLBfVIqqIruHWKdd4=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.249332+00 2025-12-09 10:15:14.249338+00 11974 HT188FW#VS-D3净色 SPMX-20240815307165 \N \N \N 1 \N [{"file_id": "a1997ea2-d51f-453c-9afa-6e0c5073d606", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d56ea0b9cef44f5819cf41ff27f25ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d56ea0b9cef44f5819cf41ff27f25ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d56ea0b9cef44f5819cf41ff27f25ed.jpg", "file_size": 7644, "is_delete": false, "file_type": 1, "original_file_name": "HT188FW#VS-D3净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d56ea0b9cef44f5819cf41ff27f25ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d56ea0b9cef44f5819cf41ff27f25ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d56ea0b9cef44f5819cf41ff27f25ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d56ea0b9cef44f5819cf41ff27f25ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d56ea0b9cef44f5819cf41ff27f25ed.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6rksUgfMTKZyWLEG_dZfQJfcbQQ=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.251367+00 2025-12-09 10:15:14.251372+00 11975 81716#紫色XL SPMX-20240815307166 \N \N \N 1 \N [{"file_id": "d45a8e29-85c6-461a-b65d-6ed5251975a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f80c8a8829440cb46ce7519176cc91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f80c8a8829440cb46ce7519176cc91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f80c8a8829440cb46ce7519176cc91.jpg", "file_size": 15310, "is_delete": false, "file_type": 1, "original_file_name": "81716#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f80c8a8829440cb46ce7519176cc91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f80c8a8829440cb46ce7519176cc91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f80c8a8829440cb46ce7519176cc91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f80c8a8829440cb46ce7519176cc91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f80c8a8829440cb46ce7519176cc91.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-YaCKA3Pv2Lu_AY0XDJ63ukrfI=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.253728+00 2025-12-09 10:15:14.253733+00 11976 0003-A43#白色 SPMX-20240815307158 \N \N \N 1 \N [{"file_id": "3cd15fc8-7dba-471e-8be2-f777edc58e3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6197fff517ef4b658e49d8fb0b548086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6197fff517ef4b658e49d8fb0b548086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6197fff517ef4b658e49d8fb0b548086.jpg", "file_size": 45490, "is_delete": false, "file_type": 1, "original_file_name": "0003-A43#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6197fff517ef4b658e49d8fb0b548086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6197fff517ef4b658e49d8fb0b548086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6197fff517ef4b658e49d8fb0b548086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6197fff517ef4b658e49d8fb0b548086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6197fff517ef4b658e49d8fb0b548086.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0wzjX2YlwFt4LEKkU7cAw49BYTI=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.25601+00 2025-12-09 10:15:14.256015+00 11977 FJ006#2XL SPMX-20240815307152 \N \N \N 1 \N [{"file_id": "3cd19ffc-bea8-493b-ba35-e5b1a703d7d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d78eec52cf4f328d3276d1751a3ca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d78eec52cf4f328d3276d1751a3ca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d78eec52cf4f328d3276d1751a3ca6.jpg", "file_size": 17870, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d78eec52cf4f328d3276d1751a3ca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d78eec52cf4f328d3276d1751a3ca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d78eec52cf4f328d3276d1751a3ca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d78eec52cf4f328d3276d1751a3ca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d78eec52cf4f328d3276d1751a3ca6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmOacOlNcp7IQ8a1UsjzQsrRUts=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.258255+00 2025-12-09 10:15:14.25826+00 11978 81716#紫色S SPMX-20240815307154 \N \N \N 1 \N [{"file_id": "4b56ee43-78d4-45a6-9adc-71329abf59bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f104787a54746bab08d0bdaf156a0eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f104787a54746bab08d0bdaf156a0eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f104787a54746bab08d0bdaf156a0eb.jpg", "file_size": 15731, "is_delete": false, "file_type": 1, "original_file_name": "81716#紫色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f104787a54746bab08d0bdaf156a0eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f104787a54746bab08d0bdaf156a0eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f104787a54746bab08d0bdaf156a0eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f104787a54746bab08d0bdaf156a0eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f104787a54746bab08d0bdaf156a0eb.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpqwHiw46k0M0N-fydXBxTAuP5w=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.260303+00 2025-12-09 10:15:14.260308+00 11979 LZ1298#背心款3号色 SPMX-20240815307161 \N \N \N 1 \N [{"file_id": "f832889c-d685-480a-b8d1-4ef814e57ef6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9b59c733048475aa4f65de8f3e9f850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9b59c733048475aa4f65de8f3e9f850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9b59c733048475aa4f65de8f3e9f850.jpg", "file_size": 18584, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b59c733048475aa4f65de8f3e9f850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b59c733048475aa4f65de8f3e9f850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b59c733048475aa4f65de8f3e9f850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9b59c733048475aa4f65de8f3e9f850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9b59c733048475aa4f65de8f3e9f850.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSitIOUCaryhId88o6TK7NqVVGU=", "createTime": "2024-08-15 14:53:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.262331+00 2025-12-09 10:15:14.262336+00 11980 23-2118#A8-领子3XL SPMX-20240815307180 \N \N \N 1 \N [{"file_id": "b3558024-2fb0-43a3-80b2-8d07452604ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34925f04802745c69ab086ae483b69df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34925f04802745c69ab086ae483b69df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34925f04802745c69ab086ae483b69df.jpg", "file_size": 13486, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34925f04802745c69ab086ae483b69df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34925f04802745c69ab086ae483b69df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34925f04802745c69ab086ae483b69df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34925f04802745c69ab086ae483b69df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34925f04802745c69ab086ae483b69df.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NvP-JBTl-7sUufqWu-zFo0-fW5g=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.264438+00 2025-12-09 10:15:14.264444+00 11981 LJH0100-12#2号色 SPMX-20240815307174 \N \N \N 1 \N [{"file_id": "c00efbc1-0d15-486a-b87c-a7228e448b6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "612c3a842ee347e491ea2a64fcbf0d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "612c3a842ee347e491ea2a64fcbf0d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "612c3a842ee347e491ea2a64fcbf0d28.jpg", "file_size": 76332, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-12#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c3a842ee347e491ea2a64fcbf0d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c3a842ee347e491ea2a64fcbf0d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/612c3a842ee347e491ea2a64fcbf0d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/612c3a842ee347e491ea2a64fcbf0d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/612c3a842ee347e491ea2a64fcbf0d28.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oG-4rRqFLeBElnrvUTRGRPed89o=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.266487+00 2025-12-09 10:15:14.266493+00 11982 LZ1298#背心款5号色 SPMX-20240815307182 \N \N \N 1 \N [{"file_id": "54c2335b-4d68-4c0b-b740-2dbc7bda9e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33cf2f03e3284476af17a133c03f663f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33cf2f03e3284476af17a133c03f663f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33cf2f03e3284476af17a133c03f663f.jpg", "file_size": 17562, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cf2f03e3284476af17a133c03f663f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cf2f03e3284476af17a133c03f663f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33cf2f03e3284476af17a133c03f663f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33cf2f03e3284476af17a133c03f663f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33cf2f03e3284476af17a133c03f663f.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SejFuWlrVKKZ9x5hPIXB0hP0h1I=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.268526+00 2025-12-09 10:15:14.268532+00 11983 FJ006#L SPMX-20240815307175 \N \N \N 1 \N [{"file_id": "df632475-781d-4f50-a4c3-99f53331ddac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d65f3c571bc47ca91af85632622af0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d65f3c571bc47ca91af85632622af0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d65f3c571bc47ca91af85632622af0d.jpg", "file_size": 18626, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d65f3c571bc47ca91af85632622af0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d65f3c571bc47ca91af85632622af0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d65f3c571bc47ca91af85632622af0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d65f3c571bc47ca91af85632622af0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d65f3c571bc47ca91af85632622af0d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7HWpngepJNV8C8BhIpJOzF6ZPbY=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.270558+00 2025-12-09 10:15:14.270563+00 11984 1114-1FWE#蓝底黑小圆点 SPMX-20240815307169 \N \N \N 1 \N [{"file_id": "ff716dcd-52ee-4b4b-857e-7a6c0ea8c5f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff1ad54662654732b0f88a4a1ecade9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff1ad54662654732b0f88a4a1ecade9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff1ad54662654732b0f88a4a1ecade9a.jpg", "file_size": 17944, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#蓝底黑小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1ad54662654732b0f88a4a1ecade9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1ad54662654732b0f88a4a1ecade9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1ad54662654732b0f88a4a1ecade9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff1ad54662654732b0f88a4a1ecade9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff1ad54662654732b0f88a4a1ecade9a.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHHIERryVA-9xeV-7h3cM1qjBE0=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.272811+00 2025-12-09 10:15:14.272817+00 11985 23-2118#A8-4XL SPMX-20240815307171 \N \N \N 1 \N [{"file_id": "1dbe9901-639e-414f-aa49-1adeb34c02ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02735d07508042d09392ff02acb33e09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02735d07508042d09392ff02acb33e09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02735d07508042d09392ff02acb33e09.jpg", "file_size": 17843, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02735d07508042d09392ff02acb33e09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02735d07508042d09392ff02acb33e09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02735d07508042d09392ff02acb33e09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02735d07508042d09392ff02acb33e09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02735d07508042d09392ff02acb33e09.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cEm21gWH7XlGrY1sY231X8jfys=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.27508+00 2025-12-09 10:15:14.275085+00 11986 C448#231#绿色 SPMX-20240815307179 \N \N \N 1 \N [{"file_id": "601a7777-d55b-4330-ab95-e83025a5b25e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24cd7128b1164c5c94cbafc922933655.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24cd7128b1164c5c94cbafc922933655.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24cd7128b1164c5c94cbafc922933655.jpg", "file_size": 72338, "is_delete": false, "file_type": 1, "original_file_name": "C448#231#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cd7128b1164c5c94cbafc922933655.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cd7128b1164c5c94cbafc922933655.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cd7128b1164c5c94cbafc922933655.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24cd7128b1164c5c94cbafc922933655.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24cd7128b1164c5c94cbafc922933655.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bq-dv_k8skCLXNh-M8KZ45vBZZc=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.277328+00 2025-12-09 10:15:14.277333+00 11987 C445#黑色 SPMX-20240815307168 \N \N \N 1 \N [{"file_id": "1ab37b43-7286-4261-8add-7f2c47027bba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccf7cc37183a48b4b9ed40d4be549e2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccf7cc37183a48b4b9ed40d4be549e2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccf7cc37183a48b4b9ed40d4be549e2d.jpg", "file_size": 74378, "is_delete": false, "file_type": 1, "original_file_name": "C445#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf7cc37183a48b4b9ed40d4be549e2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf7cc37183a48b4b9ed40d4be549e2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccf7cc37183a48b4b9ed40d4be549e2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccf7cc37183a48b4b9ed40d4be549e2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccf7cc37183a48b4b9ed40d4be549e2d.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gtsYfpHHwr3oBLd6e_a2KDEetO8=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.279353+00 2025-12-09 10:15:14.279359+00 11988 DL31062#前幅大红 SPMX-20240815307173 \N \N \N 1 \N [{"file_id": "0899541d-f871-4e90-8461-ed9b62985ca0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9c9d659bbd45b1b73ab5240dce40a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9c9d659bbd45b1b73ab5240dce40a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9c9d659bbd45b1b73ab5240dce40a3.jpg", "file_size": 14431, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9c9d659bbd45b1b73ab5240dce40a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9c9d659bbd45b1b73ab5240dce40a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9c9d659bbd45b1b73ab5240dce40a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9c9d659bbd45b1b73ab5240dce40a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9c9d659bbd45b1b73ab5240dce40a3.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjCvTCiat9jlpdoFV_t_Et2zBig=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.281434+00 2025-12-09 10:15:14.28144+00 11989 JTSS320FW#VS-D3 SPMX-20240815307167 \N \N \N 1 \N [{"file_id": "f91e98a8-e434-4124-83c2-a5349409d532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56956ea99b984af2a445d153ea43bae6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56956ea99b984af2a445d153ea43bae6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56956ea99b984af2a445d153ea43bae6.jpg", "file_size": 16770, "is_delete": false, "file_type": 1, "original_file_name": "JTSS320FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56956ea99b984af2a445d153ea43bae6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56956ea99b984af2a445d153ea43bae6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56956ea99b984af2a445d153ea43bae6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56956ea99b984af2a445d153ea43bae6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56956ea99b984af2a445d153ea43bae6.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MI8oqoGELRTpEN2_OqfkVRdE66w=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.283465+00 2025-12-09 10:15:14.283471+00 11990 JTSS321FW#VS-D3 SPMX-20240815307178 \N \N \N 1 \N [{"file_id": "a23e2d87-bddd-49c3-895e-5be64adabda2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6589d75b6c2e4e5ba4895a5508a55a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6589d75b6c2e4e5ba4895a5508a55a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6589d75b6c2e4e5ba4895a5508a55a60.jpg", "file_size": 10294, "is_delete": false, "file_type": 1, "original_file_name": "JTSS321FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589d75b6c2e4e5ba4895a5508a55a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589d75b6c2e4e5ba4895a5508a55a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589d75b6c2e4e5ba4895a5508a55a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6589d75b6c2e4e5ba4895a5508a55a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6589d75b6c2e4e5ba4895a5508a55a60.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKHVIYRbLk5r1yQSvZURApv72xc=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:14.285504+00 2025-12-09 10:15:14.285509+00 11991 HT188FW#VS-D3白正身 SPMX-20240815307176 \N \N \N 1 \N [{"file_id": "33307101-227f-4a04-b03b-64535f9711cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52d87c84332d43038203c549562719df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52d87c84332d43038203c549562719df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52d87c84332d43038203c549562719df.jpg", "file_size": 14196, "is_delete": false, "file_type": 1, "original_file_name": "HT188FW#VS-D3白正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d87c84332d43038203c549562719df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d87c84332d43038203c549562719df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d87c84332d43038203c549562719df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52d87c84332d43038203c549562719df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52d87c84332d43038203c549562719df.jpg?e=1765361713&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:meucMlBOy1K0rItSh_lF5X8IA9Y=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.039059+00 2025-12-09 10:15:15.039069+00 11992 LZ1298#背心款4号色 SPMX-20240815307170 \N \N \N 1 \N [{"file_id": "508331ac-ce60-43c6-b1d6-750ebd3c6367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3f1f57390d34de485338bfe09f74310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3f1f57390d34de485338bfe09f74310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3f1f57390d34de485338bfe09f74310.jpg", "file_size": 18400, "is_delete": false, "file_type": 1, "original_file_name": "LZ1298#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f1f57390d34de485338bfe09f74310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f1f57390d34de485338bfe09f74310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f1f57390d34de485338bfe09f74310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3f1f57390d34de485338bfe09f74310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3f1f57390d34de485338bfe09f74310.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZUZfholIZfhvmkrHSwshTp7uUc=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.042115+00 2025-12-09 10:15:15.042121+00 11993 0003-A43#黑色 SPMX-20240815307172 \N \N \N 1 \N [{"file_id": "e9d4efaf-9373-4805-9fd3-10e2a84aceeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70f1ed7f923a43ada675bf9ca799ef49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70f1ed7f923a43ada675bf9ca799ef49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70f1ed7f923a43ada675bf9ca799ef49.jpg", "file_size": 40835, "is_delete": false, "file_type": 1, "original_file_name": "0003-A43#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f1ed7f923a43ada675bf9ca799ef49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f1ed7f923a43ada675bf9ca799ef49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70f1ed7f923a43ada675bf9ca799ef49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70f1ed7f923a43ada675bf9ca799ef49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70f1ed7f923a43ada675bf9ca799ef49.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8BxRmxQ4qYQIBBhCI_GLYdmm8k=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.044689+00 2025-12-09 10:15:15.044694+00 11994 81716#绿色2XL SPMX-20240815307177 \N \N \N 1 \N [{"file_id": "0b221448-15a1-4a14-95c7-08bf90f75edf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c87b9ea4b054aafb129ab442173b499.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c87b9ea4b054aafb129ab442173b499.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c87b9ea4b054aafb129ab442173b499.jpg", "file_size": 14790, "is_delete": false, "file_type": 1, "original_file_name": "81716#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c87b9ea4b054aafb129ab442173b499.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c87b9ea4b054aafb129ab442173b499.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c87b9ea4b054aafb129ab442173b499.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c87b9ea4b054aafb129ab442173b499.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c87b9ea4b054aafb129ab442173b499.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8Hrnn7_hpToXdYs877WoC9deEo=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.047089+00 2025-12-09 10:15:15.047094+00 11995 1114-1FWE#黄底白大圆点 SPMX-20240815307181 \N \N \N 1 \N [{"file_id": "2f614651-8202-44bb-a5a2-0c3aa46f0326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d770bd838887463288c560b731673925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d770bd838887463288c560b731673925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d770bd838887463288c560b731673925.jpg", "file_size": 10079, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#黄底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770bd838887463288c560b731673925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770bd838887463288c560b731673925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d770bd838887463288c560b731673925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d770bd838887463288c560b731673925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d770bd838887463288c560b731673925.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8mc2Z9QZhHnjHVhMmv5JovNL9g=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.049391+00 2025-12-09 10:15:15.049396+00 11996 FJ006#M SPMX-20240815307185 \N \N \N 1 \N [{"file_id": "59b4d875-0d01-47e9-b859-943cc20ff208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccc55527bcd24b858b23b3f55b60fee8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccc55527bcd24b858b23b3f55b60fee8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccc55527bcd24b858b23b3f55b60fee8.jpg", "file_size": 18684, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc55527bcd24b858b23b3f55b60fee8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc55527bcd24b858b23b3f55b60fee8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc55527bcd24b858b23b3f55b60fee8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccc55527bcd24b858b23b3f55b60fee8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccc55527bcd24b858b23b3f55b60fee8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yao_xvAoNfzfJyrDs3YRlID_LuQ=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.051453+00 2025-12-09 10:15:15.051458+00 11997 0003-A45#LWQ15 SPMX-20240815307194 \N \N \N 1 \N [{"file_id": "8d566fdd-1e9a-413e-b2e0-fcc143989aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8a3bf35b410444ea57dabff19b558ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8a3bf35b410444ea57dabff19b558ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8a3bf35b410444ea57dabff19b558ca.jpg", "file_size": 67793, "is_delete": false, "file_type": 1, "original_file_name": "0003-A45#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a3bf35b410444ea57dabff19b558ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a3bf35b410444ea57dabff19b558ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a3bf35b410444ea57dabff19b558ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8a3bf35b410444ea57dabff19b558ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8a3bf35b410444ea57dabff19b558ca.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x3vuyzFibJb85BtBrm69RroRaeA=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.053504+00 2025-12-09 10:15:15.053509+00 11998 81716#绿色L SPMX-20240815307188 \N \N \N 1 \N [{"file_id": "b4b29479-8089-48df-8ca0-99fde91a86ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cefe7d072ecb4a029afe7e5dea3e6422.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cefe7d072ecb4a029afe7e5dea3e6422.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cefe7d072ecb4a029afe7e5dea3e6422.jpg", "file_size": 15566, "is_delete": false, "file_type": 1, "original_file_name": "81716#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cefe7d072ecb4a029afe7e5dea3e6422.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cefe7d072ecb4a029afe7e5dea3e6422.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cefe7d072ecb4a029afe7e5dea3e6422.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cefe7d072ecb4a029afe7e5dea3e6422.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cefe7d072ecb4a029afe7e5dea3e6422.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0RyNc0a1kwt-KEvONBdf8ng0tc=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.055563+00 2025-12-09 10:15:15.055568+00 11999 1114-1FWE#黄底白小圆点 SPMX-20240815307193 \N \N \N 1 \N [{"file_id": "f8145e69-cb59-4adb-91b5-000373e7c485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a4a4f63b60545f887a6b64251e5b035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a4a4f63b60545f887a6b64251e5b035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a4a4f63b60545f887a6b64251e5b035.jpg", "file_size": 14487, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWE#黄底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4a4f63b60545f887a6b64251e5b035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4a4f63b60545f887a6b64251e5b035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4a4f63b60545f887a6b64251e5b035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a4a4f63b60545f887a6b64251e5b035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a4a4f63b60545f887a6b64251e5b035.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vxZp0oLdZyt_Z0SxVu7LLUn2ms=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.057628+00 2025-12-09 10:15:15.057633+00 12000 HT188FW#VS-D3白袖口 SPMX-20240815307187 \N \N \N 1 \N [{"file_id": "68098db1-3968-4e52-83ae-b06b58028637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e61ecf987a154f4ea6d00be2c0798a0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e61ecf987a154f4ea6d00be2c0798a0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e61ecf987a154f4ea6d00be2c0798a0b.jpg", "file_size": 8813, "is_delete": false, "file_type": 1, "original_file_name": "HT188FW#VS-D3白袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61ecf987a154f4ea6d00be2c0798a0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61ecf987a154f4ea6d00be2c0798a0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61ecf987a154f4ea6d00be2c0798a0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e61ecf987a154f4ea6d00be2c0798a0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e61ecf987a154f4ea6d00be2c0798a0b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uAXB2ve9Vp-fR5FIeedq2_mmyA=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.059669+00 2025-12-09 10:15:15.059674+00 12001 JTSS322FW#VS-D3 SPMX-20240815307189 \N \N \N 1 \N [{"file_id": "a1052619-3b41-4274-b452-89c6e4186f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac8048dfc48e420ba96172fffe2108e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac8048dfc48e420ba96172fffe2108e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac8048dfc48e420ba96172fffe2108e5.jpg", "file_size": 11342, "is_delete": false, "file_type": 1, "original_file_name": "JTSS322FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8048dfc48e420ba96172fffe2108e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8048dfc48e420ba96172fffe2108e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8048dfc48e420ba96172fffe2108e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac8048dfc48e420ba96172fffe2108e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac8048dfc48e420ba96172fffe2108e5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:em0eRMxVescpU4jbD2fornv0ZQE=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.061523+00 2025-12-09 10:15:15.061528+00 12002 DL31062#前幅彩兰 SPMX-20240815307186 \N \N \N 1 \N [{"file_id": "d751f166-973f-455d-bc4f-cc4c9a5cdf56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d5ea2941ef84e938abf350fda2e465d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d5ea2941ef84e938abf350fda2e465d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d5ea2941ef84e938abf350fda2e465d.jpg", "file_size": 14208, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d5ea2941ef84e938abf350fda2e465d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d5ea2941ef84e938abf350fda2e465d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d5ea2941ef84e938abf350fda2e465d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d5ea2941ef84e938abf350fda2e465d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d5ea2941ef84e938abf350fda2e465d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhEw0KBhWqk268zZqprXWdtAutM=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.063396+00 2025-12-09 10:15:15.063402+00 12003 FJ006#XL SPMX-20240815307196 \N \N \N 1 \N [{"file_id": "25d0587a-cf3a-4c58-a6c6-a400ff0746f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20227fdf98d645fdbd89108775f6e307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20227fdf98d645fdbd89108775f6e307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20227fdf98d645fdbd89108775f6e307.jpg", "file_size": 19106, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20227fdf98d645fdbd89108775f6e307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20227fdf98d645fdbd89108775f6e307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20227fdf98d645fdbd89108775f6e307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20227fdf98d645fdbd89108775f6e307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20227fdf98d645fdbd89108775f6e307.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wfIJtvXW62cc9AAKgLNHhq2WqDc=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.065247+00 2025-12-09 10:15:15.065252+00 12004 0003-A44#LWQ15 SPMX-20240815307183 \N \N \N 1 \N [{"file_id": "e8723208-9b09-4fcf-a787-75a3bdc17858", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "401212172b844d54a21ae8bb68a7ad7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "401212172b844d54a21ae8bb68a7ad7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "401212172b844d54a21ae8bb68a7ad7d.jpg", "file_size": 30422, "is_delete": false, "file_type": 1, "original_file_name": "0003-A44#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401212172b844d54a21ae8bb68a7ad7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401212172b844d54a21ae8bb68a7ad7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401212172b844d54a21ae8bb68a7ad7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/401212172b844d54a21ae8bb68a7ad7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/401212172b844d54a21ae8bb68a7ad7d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5yyAXZJzRWrfCRAtZqLSL0f0Nk=", "createTime": "2024-08-15 14:53:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.067596+00 2025-12-09 10:15:15.067602+00 12005 LJH0100-12#3号色 SPMX-20240815307184 \N \N \N 1 \N [{"file_id": "fc3d96f7-fc2e-4e69-a4c1-386c669379ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b193c04815ab46c2acc07008866a91fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b193c04815ab46c2acc07008866a91fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b193c04815ab46c2acc07008866a91fa.jpg", "file_size": 75276, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-12#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b193c04815ab46c2acc07008866a91fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b193c04815ab46c2acc07008866a91fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b193c04815ab46c2acc07008866a91fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b193c04815ab46c2acc07008866a91fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b193c04815ab46c2acc07008866a91fa.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNcq63-E3tODo6N7nlormDghrjs=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.06982+00 2025-12-09 10:15:15.069826+00 12006 23-2118#A8-领子4XL SPMX-20240815307192 \N \N \N 1 \N [{"file_id": "67f25aa1-82ea-4242-9614-31c1f0a584c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99097a4f69154955a6e5ab9e2676d1aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99097a4f69154955a6e5ab9e2676d1aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99097a4f69154955a6e5ab9e2676d1aa.jpg", "file_size": 13558, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99097a4f69154955a6e5ab9e2676d1aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99097a4f69154955a6e5ab9e2676d1aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99097a4f69154955a6e5ab9e2676d1aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99097a4f69154955a6e5ab9e2676d1aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99097a4f69154955a6e5ab9e2676d1aa.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFpAuLXOhMbW60k1OC7Umq_bOnA=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.072107+00 2025-12-09 10:15:15.072112+00 12007 DL31062#前幅枣红 SPMX-20240815307195 \N \N \N 1 \N [{"file_id": "6b669727-5742-417b-8713-c01b5138a3c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b44bf5f215d148c29e58a5bdb2a91649.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b44bf5f215d148c29e58a5bdb2a91649.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b44bf5f215d148c29e58a5bdb2a91649.jpg", "file_size": 14442, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44bf5f215d148c29e58a5bdb2a91649.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44bf5f215d148c29e58a5bdb2a91649.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b44bf5f215d148c29e58a5bdb2a91649.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b44bf5f215d148c29e58a5bdb2a91649.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b44bf5f215d148c29e58a5bdb2a91649.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWQRz1WDW7IWLAWCHDKlGt6d5rg=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.074169+00 2025-12-09 10:15:15.074173+00 12008 C448#大白 SPMX-20240815307190 \N \N \N 1 \N [{"file_id": "577b5db0-84af-4d0c-b3e8-9d4740ade025", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15026e1c09fb402da6a8cb2b7f8a8d9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15026e1c09fb402da6a8cb2b7f8a8d9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15026e1c09fb402da6a8cb2b7f8a8d9c.jpg", "file_size": 66663, "is_delete": false, "file_type": 1, "original_file_name": "C448#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15026e1c09fb402da6a8cb2b7f8a8d9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15026e1c09fb402da6a8cb2b7f8a8d9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15026e1c09fb402da6a8cb2b7f8a8d9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15026e1c09fb402da6a8cb2b7f8a8d9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15026e1c09fb402da6a8cb2b7f8a8d9c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3G_80TvIZUH4-omRI6WcidrUrY=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.076315+00 2025-12-09 10:15:15.076319+00 12009 LZ1299#捆条布 SPMX-20240815307191 \N \N \N 1 \N [{"file_id": "cc471d5a-e55f-4fe6-a14a-1baa89e69849", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65f65bc3db664bc0a90535d890059140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65f65bc3db664bc0a90535d890059140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65f65bc3db664bc0a90535d890059140.jpg", "file_size": 13188, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f65bc3db664bc0a90535d890059140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f65bc3db664bc0a90535d890059140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f65bc3db664bc0a90535d890059140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65f65bc3db664bc0a90535d890059140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65f65bc3db664bc0a90535d890059140.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWe8PTrYhr8I1PF_K_b_1ZEVHX4=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.078318+00 2025-12-09 10:15:15.078323+00 12010 23-2118#A9-3XL SPMX-20240815307204 \N \N \N 1 \N [{"file_id": "17c47660-ecb1-497e-91f7-c496af741617", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c031091937c848818607e0b1e94b6103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c031091937c848818607e0b1e94b6103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c031091937c848818607e0b1e94b6103.jpg", "file_size": 16821, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c031091937c848818607e0b1e94b6103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c031091937c848818607e0b1e94b6103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c031091937c848818607e0b1e94b6103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c031091937c848818607e0b1e94b6103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c031091937c848818607e0b1e94b6103.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-XLMLM45Z4yeU3s0A1sG2b1jeg=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.080143+00 2025-12-09 10:15:15.080148+00 12011 LJH0100-12#4号色 SPMX-20240815307197 \N \N \N 1 \N [{"file_id": "444db28c-6491-4f80-a169-03f14affd614", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08773f76b270426b8361a23cdc378577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08773f76b270426b8361a23cdc378577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08773f76b270426b8361a23cdc378577.jpg", "file_size": 72032, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-12#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08773f76b270426b8361a23cdc378577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08773f76b270426b8361a23cdc378577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08773f76b270426b8361a23cdc378577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08773f76b270426b8361a23cdc378577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08773f76b270426b8361a23cdc378577.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vuXWaJ970zrWmvorvxUUcYpgAHc=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.082186+00 2025-12-09 10:15:15.08219+00 12012 FJ006#绿 SPMX-20240815307206 \N \N \N 1 \N [{"file_id": "b0cc814a-8f41-4ec9-8b49-62832d60be2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d245aa4b9daa477ebd2e6f37672b4262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d245aa4b9daa477ebd2e6f37672b4262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d245aa4b9daa477ebd2e6f37672b4262.jpg", "file_size": 20808, "is_delete": false, "file_type": 1, "original_file_name": "FJ006#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d245aa4b9daa477ebd2e6f37672b4262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d245aa4b9daa477ebd2e6f37672b4262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d245aa4b9daa477ebd2e6f37672b4262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d245aa4b9daa477ebd2e6f37672b4262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d245aa4b9daa477ebd2e6f37672b4262.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eb0DjvlKculNz3_Lax2Udm5q2u0=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.084179+00 2025-12-09 10:15:15.084183+00 12013 81716#绿色M SPMX-20240815307199 \N \N \N 1 \N [{"file_id": "f0e3dbe2-2849-48f1-aca1-1fc8222564c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdb08589bdfa45488137ab32b5327869.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdb08589bdfa45488137ab32b5327869.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdb08589bdfa45488137ab32b5327869.jpg", "file_size": 17028, "is_delete": false, "file_type": 1, "original_file_name": "81716#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb08589bdfa45488137ab32b5327869.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb08589bdfa45488137ab32b5327869.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb08589bdfa45488137ab32b5327869.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdb08589bdfa45488137ab32b5327869.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdb08589bdfa45488137ab32b5327869.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cj3DbqcYmwpHXHtHL4eyWPc7MK8=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.086235+00 2025-12-09 10:15:15.086239+00 12014 C448#玫红 SPMX-20240815307201 \N \N \N 1 \N [{"file_id": "a574ebcb-489f-469b-b2c2-3b6d459e9200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "582642ae794146319df3fc2a629ae5a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "582642ae794146319df3fc2a629ae5a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "582642ae794146319df3fc2a629ae5a9.jpg", "file_size": 71947, "is_delete": false, "file_type": 1, "original_file_name": "C448#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/582642ae794146319df3fc2a629ae5a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/582642ae794146319df3fc2a629ae5a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/582642ae794146319df3fc2a629ae5a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/582642ae794146319df3fc2a629ae5a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/582642ae794146319df3fc2a629ae5a9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sW_neLO2akRz5UyLA8w5XAvvwqw=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.088322+00 2025-12-09 10:15:15.088326+00 12015 DL31062#前幅水红 SPMX-20240815307207 \N \N \N 1 \N [{"file_id": "b091ef82-86ce-4118-ab02-cf012f79b54c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6ec4296a36410981610f1e644c8b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6ec4296a36410981610f1e644c8b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6ec4296a36410981610f1e644c8b0c.jpg", "file_size": 13805, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6ec4296a36410981610f1e644c8b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6ec4296a36410981610f1e644c8b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6ec4296a36410981610f1e644c8b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6ec4296a36410981610f1e644c8b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6ec4296a36410981610f1e644c8b0c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snqf1A6_4RWC7RbuLnZpOqKf1WM=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.090332+00 2025-12-09 10:15:15.090336+00 12016 1114-1FWF#浅色版本袖子花 SPMX-20240815307205 \N \N \N 1 \N [{"file_id": "121287c9-f879-4ce1-8914-ca8b9d3436cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg", "file_size": 11947, "is_delete": false, "file_type": 1, "original_file_name": "1114-1FWF#浅色版本袖子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac5fe707bf7a4b59a8b8fbd4c46fdaf2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5X_TMnFTITMidzXEfwv9rgLbXAc=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.09234+00 2025-12-09 10:15:15.092344+00 12017 0003-A5#橙色LWQ15 SPMX-20240815307203 \N \N \N 1 \N [{"file_id": "6d254b08-06f5-4885-bdc1-4cd26e159d29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e3169b89f80490eaea8746138ba6b4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e3169b89f80490eaea8746138ba6b4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e3169b89f80490eaea8746138ba6b4e.jpg", "file_size": 6856, "is_delete": false, "file_type": 1, "original_file_name": "0003-A5#橙色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3169b89f80490eaea8746138ba6b4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3169b89f80490eaea8746138ba6b4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3169b89f80490eaea8746138ba6b4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e3169b89f80490eaea8746138ba6b4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e3169b89f80490eaea8746138ba6b4e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lPByKKl5QGbyXAHSDxVja9RiTXc=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.094351+00 2025-12-09 10:15:15.094355+00 12018 JTSS323FW#VS-D3 SPMX-20240815307198 \N \N \N 1 \N [{"file_id": "9054c891-ffab-487c-8e71-dd2423c23ad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c13aa645cf648319460d6f74970c6b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c13aa645cf648319460d6f74970c6b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c13aa645cf648319460d6f74970c6b1.jpg", "file_size": 15218, "is_delete": false, "file_type": 1, "original_file_name": "JTSS323FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13aa645cf648319460d6f74970c6b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13aa645cf648319460d6f74970c6b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c13aa645cf648319460d6f74970c6b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c13aa645cf648319460d6f74970c6b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c13aa645cf648319460d6f74970c6b1.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aG5Um7AXW1WglNvjZ6wkFvNBATs=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.096629+00 2025-12-09 10:15:15.096635+00 12019 HT188FW#VS-D3红正身 SPMX-20240815307200 \N \N \N 1 \N [{"file_id": "a3685e2b-83c7-48be-b674-dc752f03bf04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cf5b82f07c8406889b60c2c71444aab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cf5b82f07c8406889b60c2c71444aab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cf5b82f07c8406889b60c2c71444aab.jpg", "file_size": 16586, "is_delete": false, "file_type": 1, "original_file_name": "HT188FW#VS-D3红正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf5b82f07c8406889b60c2c71444aab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf5b82f07c8406889b60c2c71444aab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf5b82f07c8406889b60c2c71444aab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cf5b82f07c8406889b60c2c71444aab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cf5b82f07c8406889b60c2c71444aab.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pevQVVZnC6LcNTcgOEj_rTRwldM=", "createTime": "2024-08-15 14:53:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.098534+00 2025-12-09 10:15:15.098538+00 12020 LZ1299#背心款1号色 SPMX-20240815307202 \N \N \N 1 \N [{"file_id": "525f9a1d-d19d-4f7a-9880-c7968f639843", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91584496b19e43e19c7279282a9e0732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91584496b19e43e19c7279282a9e0732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91584496b19e43e19c7279282a9e0732.jpg", "file_size": 17744, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91584496b19e43e19c7279282a9e0732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91584496b19e43e19c7279282a9e0732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91584496b19e43e19c7279282a9e0732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91584496b19e43e19c7279282a9e0732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91584496b19e43e19c7279282a9e0732.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrcecdZtVTTF96NbFNFmupQPA2w=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.100351+00 2025-12-09 10:15:15.100355+00 12021 HT188FW#VS-D3红袖口 SPMX-20240815307209 \N \N \N 1 \N [{"file_id": "7fca2244-8adc-4765-9317-42057bdb3d6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e338c74b81614d948d6626bf05d9350a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e338c74b81614d948d6626bf05d9350a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e338c74b81614d948d6626bf05d9350a.jpg", "file_size": 9504, "is_delete": false, "file_type": 1, "original_file_name": "HT188FW#VS-D3红袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e338c74b81614d948d6626bf05d9350a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e338c74b81614d948d6626bf05d9350a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e338c74b81614d948d6626bf05d9350a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e338c74b81614d948d6626bf05d9350a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e338c74b81614d948d6626bf05d9350a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VrxmAmC9QYYIbxVZboV-NyJYPXk=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.102399+00 2025-12-09 10:15:15.102403+00 12022 C448#绿色 SPMX-20240815307211 \N \N \N 1 \N [{"file_id": "b778b1d6-efce-4230-9261-d62429dcd9a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9847f87b2eb4051b4ab010166610f54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9847f87b2eb4051b4ab010166610f54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9847f87b2eb4051b4ab010166610f54.jpg", "file_size": 72540, "is_delete": false, "file_type": 1, "original_file_name": "C448#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9847f87b2eb4051b4ab010166610f54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9847f87b2eb4051b4ab010166610f54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9847f87b2eb4051b4ab010166610f54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9847f87b2eb4051b4ab010166610f54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9847f87b2eb4051b4ab010166610f54.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGieKiP1dmZapMAqhM_OP9ma7lo=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.104379+00 2025-12-09 10:15:15.104383+00 12023 0003-A5#灰色LWQ15 SPMX-20240815307213 \N \N \N 1 \N [{"file_id": "f15fb168-b5d6-4dfe-bea8-be714be4a6a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334d00dfc3d84a42b31a190409202fac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334d00dfc3d84a42b31a190409202fac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334d00dfc3d84a42b31a190409202fac.jpg", "file_size": 6105, "is_delete": false, "file_type": 1, "original_file_name": "0003-A5#灰色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d00dfc3d84a42b31a190409202fac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d00dfc3d84a42b31a190409202fac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d00dfc3d84a42b31a190409202fac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334d00dfc3d84a42b31a190409202fac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334d00dfc3d84a42b31a190409202fac.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfStDRB-OnLni176rtPeY_IVtAk=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.106395+00 2025-12-09 10:15:15.1064+00 12024 LJH0100-12#5号色 SPMX-20240815307212 \N \N \N 1 \N [{"file_id": "66af08f9-404a-4ece-abdb-9d4ddfa08da7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "585c445bbaf84de79ec6dc0ce9d176dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "585c445bbaf84de79ec6dc0ce9d176dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "585c445bbaf84de79ec6dc0ce9d176dc.jpg", "file_size": 74408, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-12#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585c445bbaf84de79ec6dc0ce9d176dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585c445bbaf84de79ec6dc0ce9d176dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/585c445bbaf84de79ec6dc0ce9d176dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/585c445bbaf84de79ec6dc0ce9d176dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/585c445bbaf84de79ec6dc0ce9d176dc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nb07cfzQ7J1AkN5aS-vr4E616-E=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.108386+00 2025-12-09 10:15:15.10839+00 12025 JTSS324FW#VS-D3 SPMX-20240815307208 \N \N \N 1 \N [{"file_id": "5ec2fde2-03fc-4aac-ad32-8cd9c939597b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "203945a87cd34e79bf519e4e2e6d4caa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "203945a87cd34e79bf519e4e2e6d4caa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "203945a87cd34e79bf519e4e2e6d4caa.jpg", "file_size": 12016, "is_delete": false, "file_type": 1, "original_file_name": "JTSS324FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203945a87cd34e79bf519e4e2e6d4caa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203945a87cd34e79bf519e4e2e6d4caa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/203945a87cd34e79bf519e4e2e6d4caa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/203945a87cd34e79bf519e4e2e6d4caa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/203945a87cd34e79bf519e4e2e6d4caa.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-LndHc3UJZPtTiAHsVhDkNwdoKg=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.110465+00 2025-12-09 10:15:15.110469+00 12026 81716#绿色S SPMX-20240815307210 \N \N \N 1 \N [{"file_id": "d1b9a60c-e740-4380-b6ab-3f422d2faf43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9bf78e0d34742769564b80a65a8bfec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9bf78e0d34742769564b80a65a8bfec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9bf78e0d34742769564b80a65a8bfec.jpg", "file_size": 16540, "is_delete": false, "file_type": 1, "original_file_name": "81716#绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bf78e0d34742769564b80a65a8bfec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bf78e0d34742769564b80a65a8bfec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bf78e0d34742769564b80a65a8bfec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9bf78e0d34742769564b80a65a8bfec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9bf78e0d34742769564b80a65a8bfec.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_2VqFPxhn9HoaOVSwU29tTN7k7I=", "createTime": "2024-08-15 14:53:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.112475+00 2025-12-09 10:15:15.112479+00 12027 1114-2FWF#下摆花 SPMX-20240815307214 \N \N \N 1 \N [{"file_id": "be21755d-f7b4-483a-8277-02d7d2e015c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38751bfaf75e4c8db3ec0bf033e55794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38751bfaf75e4c8db3ec0bf033e55794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38751bfaf75e4c8db3ec0bf033e55794.jpg", "file_size": 8361, "is_delete": false, "file_type": 1, "original_file_name": "1114-2FWF#下摆花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38751bfaf75e4c8db3ec0bf033e55794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38751bfaf75e4c8db3ec0bf033e55794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38751bfaf75e4c8db3ec0bf033e55794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38751bfaf75e4c8db3ec0bf033e55794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38751bfaf75e4c8db3ec0bf033e55794.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YpmNE69IIVhlB1Mo9mRj3dBDi18=", "createTime": "2024-08-15 14:53:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.114473+00 2025-12-09 10:15:15.114477+00 12028 LZ1299#背心款2号色 SPMX-20240815307220 \N \N \N 1 \N [{"file_id": "0b5d9129-c495-404a-8878-12c7307b91c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ed2a0f64024b66a04ef320c1639aa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ed2a0f64024b66a04ef320c1639aa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ed2a0f64024b66a04ef320c1639aa7.jpg", "file_size": 17684, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ed2a0f64024b66a04ef320c1639aa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ed2a0f64024b66a04ef320c1639aa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ed2a0f64024b66a04ef320c1639aa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ed2a0f64024b66a04ef320c1639aa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ed2a0f64024b66a04ef320c1639aa7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z98MjNiEWjRqzcmyf2TPe2ANMUs=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.116533+00 2025-12-09 10:15:15.116537+00 12029 FJ006FW#VS-D3 SPMX-20240815307217 \N \N \N 1 \N [{"file_id": "7974b7ca-874e-43bd-bf3d-802f923c420f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfd3e7c94924ff19ed71a5435b1fb89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfd3e7c94924ff19ed71a5435b1fb89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfd3e7c94924ff19ed71a5435b1fb89.jpg", "file_size": 23580, "is_delete": false, "file_type": 1, "original_file_name": "FJ006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd3e7c94924ff19ed71a5435b1fb89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd3e7c94924ff19ed71a5435b1fb89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfd3e7c94924ff19ed71a5435b1fb89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfd3e7c94924ff19ed71a5435b1fb89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfd3e7c94924ff19ed71a5435b1fb89.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLMVD4fd3BOQr2HpLSY2LP0M3qI=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.118593+00 2025-12-09 10:15:15.118597+00 12030 JTSS325FW#VS-D3 SPMX-20240815307216 \N \N \N 1 \N [{"file_id": "66bb90f4-deec-4368-b3d1-db11df5bc874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20173faf3846424586601b3abe282358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20173faf3846424586601b3abe282358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20173faf3846424586601b3abe282358.jpg", "file_size": 6868, "is_delete": false, "file_type": 1, "original_file_name": "JTSS325FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20173faf3846424586601b3abe282358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20173faf3846424586601b3abe282358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20173faf3846424586601b3abe282358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20173faf3846424586601b3abe282358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20173faf3846424586601b3abe282358.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFm6zKiSTD5vgl5EcCFlAo36E-U=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.120597+00 2025-12-09 10:15:15.120601+00 12031 23-2118#A9-4XL SPMX-20240815307218 \N \N \N 1 \N [{"file_id": "101a848e-f704-437c-a919-3ccd70bd8fda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf29b6a2e82b4716a672cfd8ec9b2161.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf29b6a2e82b4716a672cfd8ec9b2161.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf29b6a2e82b4716a672cfd8ec9b2161.jpg", "file_size": 16986, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf29b6a2e82b4716a672cfd8ec9b2161.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf29b6a2e82b4716a672cfd8ec9b2161.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf29b6a2e82b4716a672cfd8ec9b2161.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf29b6a2e82b4716a672cfd8ec9b2161.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf29b6a2e82b4716a672cfd8ec9b2161.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IepPPpzm6FlnRK6D7d9zRdJQ50=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.122811+00 2025-12-09 10:15:15.122817+00 12032 HT192FW#VS-D3正身 SPMX-20240815307221 \N \N \N 1 \N [{"file_id": "2591f981-0f06-4639-b12d-85a6bac1e806", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a376b68f4074e39b8121dc48e7fe8b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a376b68f4074e39b8121dc48e7fe8b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a376b68f4074e39b8121dc48e7fe8b7.jpg", "file_size": 15808, "is_delete": false, "file_type": 1, "original_file_name": "HT192FW#VS-D3正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a376b68f4074e39b8121dc48e7fe8b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a376b68f4074e39b8121dc48e7fe8b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a376b68f4074e39b8121dc48e7fe8b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a376b68f4074e39b8121dc48e7fe8b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a376b68f4074e39b8121dc48e7fe8b7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxI0YWT_uJQgBZoQLBgkxN-4bmI=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.125145+00 2025-12-09 10:15:15.125151+00 12033 JTSS326FW#VS-D3 SPMX-20240815307227 \N \N \N 1 \N [{"file_id": "cc6fe935-56d5-4830-9035-4426a0dd8bb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec3e5f309f5549769b648f0a82d28caf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec3e5f309f5549769b648f0a82d28caf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec3e5f309f5549769b648f0a82d28caf.jpg", "file_size": 14644, "is_delete": false, "file_type": 1, "original_file_name": "JTSS326FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3e5f309f5549769b648f0a82d28caf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3e5f309f5549769b648f0a82d28caf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3e5f309f5549769b648f0a82d28caf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec3e5f309f5549769b648f0a82d28caf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec3e5f309f5549769b648f0a82d28caf.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBQibrRPKZp5v-_Livbw_FPxK3I=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.127619+00 2025-12-09 10:15:15.127624+00 12034 81716#绿色XL SPMX-20240815307223 \N \N \N 1 \N [{"file_id": "c981feea-ab79-4aa8-aad1-3bd420faed22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22aef3fc08ff4d47a66527ca6aaa9b63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22aef3fc08ff4d47a66527ca6aaa9b63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22aef3fc08ff4d47a66527ca6aaa9b63.jpg", "file_size": 15246, "is_delete": false, "file_type": 1, "original_file_name": "81716#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22aef3fc08ff4d47a66527ca6aaa9b63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22aef3fc08ff4d47a66527ca6aaa9b63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22aef3fc08ff4d47a66527ca6aaa9b63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22aef3fc08ff4d47a66527ca6aaa9b63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22aef3fc08ff4d47a66527ca6aaa9b63.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBte9QnlRxrLT0G9VhJa4UNH4YY=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.129863+00 2025-12-09 10:15:15.129867+00 12035 DL31062#前幅浅粉 SPMX-20240815307215 \N \N \N 1 \N [{"file_id": "ae7fd980-5c92-4a5b-9301-c34985c31efd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50a464f0567242629fc39bc3591f36fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50a464f0567242629fc39bc3591f36fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50a464f0567242629fc39bc3591f36fd.jpg", "file_size": 13429, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a464f0567242629fc39bc3591f36fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a464f0567242629fc39bc3591f36fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50a464f0567242629fc39bc3591f36fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50a464f0567242629fc39bc3591f36fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50a464f0567242629fc39bc3591f36fd.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:18XIO-C7FzuXAxqlkCEX0LkeFIc=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.131845+00 2025-12-09 10:15:15.131851+00 12036 LJH0100-13#白色 SPMX-20240815307222 \N \N \N 1 \N [{"file_id": "0ad5abec-8287-4329-81d0-32308bfda1d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5063f896612d4790a577f7582bd4c21a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5063f896612d4790a577f7582bd4c21a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5063f896612d4790a577f7582bd4c21a.jpg", "file_size": 71077, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-13#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5063f896612d4790a577f7582bd4c21a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5063f896612d4790a577f7582bd4c21a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5063f896612d4790a577f7582bd4c21a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5063f896612d4790a577f7582bd4c21a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5063f896612d4790a577f7582bd4c21a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6QxuocDgzouq8ACasfGmwUoDIA=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.133973+00 2025-12-09 10:15:15.133978+00 12037 0003-A5#蓝色LWQ15 SPMX-20240815307225 \N \N \N 1 \N [{"file_id": "8d3dfb1e-6c76-4c06-bc06-ab266e537a96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "511789dfc13d4b189931fc94048dddc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "511789dfc13d4b189931fc94048dddc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "511789dfc13d4b189931fc94048dddc3.jpg", "file_size": 7095, "is_delete": false, "file_type": 1, "original_file_name": "0003-A5#蓝色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511789dfc13d4b189931fc94048dddc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511789dfc13d4b189931fc94048dddc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511789dfc13d4b189931fc94048dddc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/511789dfc13d4b189931fc94048dddc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/511789dfc13d4b189931fc94048dddc3.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o91Z75tpwlM5Hzzk0f2G1XdylQM=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.13593+00 2025-12-09 10:15:15.135935+00 12038 FJ006FWE#VS-D3 SPMX-20240815307228 \N \N \N 1 \N [{"file_id": "be96d657-5d6b-46b3-bb70-301c29311b1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1810640851234df0ae18a6be6d7e5ac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1810640851234df0ae18a6be6d7e5ac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1810640851234df0ae18a6be6d7e5ac8.jpg", "file_size": 11868, "is_delete": false, "file_type": 1, "original_file_name": "FJ006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1810640851234df0ae18a6be6d7e5ac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1810640851234df0ae18a6be6d7e5ac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1810640851234df0ae18a6be6d7e5ac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1810640851234df0ae18a6be6d7e5ac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1810640851234df0ae18a6be6d7e5ac8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WotrfqaKUL7z5FX5m3jlBivVfKg=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.137855+00 2025-12-09 10:15:15.13786+00 12039 DL31062#前幅玫红 SPMX-20240815307226 \N \N \N 1 \N [{"file_id": "1e6e93ba-33e8-4d23-b00a-276ea506194e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d91e6e760da14e96a44d2157b8c31e77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d91e6e760da14e96a44d2157b8c31e77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d91e6e760da14e96a44d2157b8c31e77.jpg", "file_size": 13747, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91e6e760da14e96a44d2157b8c31e77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91e6e760da14e96a44d2157b8c31e77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d91e6e760da14e96a44d2157b8c31e77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d91e6e760da14e96a44d2157b8c31e77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d91e6e760da14e96a44d2157b8c31e77.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KtFIR8XCWZ2f0nVzr9lQl9Fg1o=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.139726+00 2025-12-09 10:15:15.139731+00 12040 C448#蓝色 SPMX-20240815307219 \N \N \N 1 \N [{"file_id": "bede054e-6279-40d1-8201-c72539a7bb51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e924903a8d44496b406b9bef599fa2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e924903a8d44496b406b9bef599fa2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e924903a8d44496b406b9bef599fa2b.jpg", "file_size": 71929, "is_delete": false, "file_type": 1, "original_file_name": "C448#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e924903a8d44496b406b9bef599fa2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e924903a8d44496b406b9bef599fa2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e924903a8d44496b406b9bef599fa2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e924903a8d44496b406b9bef599fa2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e924903a8d44496b406b9bef599fa2b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPdOGRdOn0eNGvQMnBRZvQDttcg=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.141804+00 2025-12-09 10:15:15.141808+00 12041 1114-2FWF#正身乱花 SPMX-20240815307224 \N \N \N 1 \N [{"file_id": "5570636c-533e-482f-97d2-29ad1a76190f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ea02ed199f342539086714fef051574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ea02ed199f342539086714fef051574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ea02ed199f342539086714fef051574.jpg", "file_size": 14487, "is_delete": false, "file_type": 1, "original_file_name": "1114-2FWF#正身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea02ed199f342539086714fef051574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea02ed199f342539086714fef051574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea02ed199f342539086714fef051574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ea02ed199f342539086714fef051574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ea02ed199f342539086714fef051574.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slZUq6f__MuIRkPqlJ0HQXPIZqM=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.143914+00 2025-12-09 10:15:15.143918+00 12042 1114-2FWF#袖子花 SPMX-20240815307234 \N \N \N 1 \N [{"file_id": "01192249-2fad-44b4-ad21-f2f625b76599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7260fb6bbdb84c2dbd583fac5aaab43a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7260fb6bbdb84c2dbd583fac5aaab43a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7260fb6bbdb84c2dbd583fac5aaab43a.jpg", "file_size": 13029, "is_delete": false, "file_type": 1, "original_file_name": "1114-2FWF#袖子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7260fb6bbdb84c2dbd583fac5aaab43a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7260fb6bbdb84c2dbd583fac5aaab43a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7260fb6bbdb84c2dbd583fac5aaab43a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7260fb6bbdb84c2dbd583fac5aaab43a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7260fb6bbdb84c2dbd583fac5aaab43a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naXzwP7p_r_R6OZQHPGewK9QD0E=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.145765+00 2025-12-09 10:15:15.145769+00 12043 HT192FW#VS-D3袖子 SPMX-20240815307231 \N \N \N 1 \N [{"file_id": "691bcdd7-db59-4c20-a9ca-7b09d3b840d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3d36054e3d94c9d9fa334edf6fdd79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3d36054e3d94c9d9fa334edf6fdd79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3d36054e3d94c9d9fa334edf6fdd79f.jpg", "file_size": 17177, "is_delete": false, "file_type": 1, "original_file_name": "HT192FW#VS-D3袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d36054e3d94c9d9fa334edf6fdd79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d36054e3d94c9d9fa334edf6fdd79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3d36054e3d94c9d9fa334edf6fdd79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3d36054e3d94c9d9fa334edf6fdd79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3d36054e3d94c9d9fa334edf6fdd79f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ig-B0YxTWpiHMt69hNDFrNj5JKk=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.147872+00 2025-12-09 10:15:15.147876+00 12044 FJ007# SPMX-20240815307238 \N \N \N 1 \N [{"file_id": "462ebc94-3c16-49eb-8327-f9f036f1a363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84af59f5b8a4479eafdb860a995bf035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84af59f5b8a4479eafdb860a995bf035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84af59f5b8a4479eafdb860a995bf035.jpg", "file_size": 21694, "is_delete": false, "file_type": 1, "original_file_name": "FJ007#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84af59f5b8a4479eafdb860a995bf035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84af59f5b8a4479eafdb860a995bf035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84af59f5b8a4479eafdb860a995bf035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84af59f5b8a4479eafdb860a995bf035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84af59f5b8a4479eafdb860a995bf035.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:901U9ZS3vJGpuhoSxL6RilC6Vfk=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.14993+00 2025-12-09 10:15:15.149935+00 12045 0003-A6#原版色 SPMX-20240815307236 \N \N \N 1 \N [{"file_id": "52709683-9381-4be7-8550-64a6c941e752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "042852a390884734b95c20ad47cbb2dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "042852a390884734b95c20ad47cbb2dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "042852a390884734b95c20ad47cbb2dd.jpg", "file_size": 20020, "is_delete": false, "file_type": 1, "original_file_name": "0003-A6#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042852a390884734b95c20ad47cbb2dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042852a390884734b95c20ad47cbb2dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042852a390884734b95c20ad47cbb2dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/042852a390884734b95c20ad47cbb2dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/042852a390884734b95c20ad47cbb2dd.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YdKseY_DsRK2REK4XSqXrcIwAE4=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.151819+00 2025-12-09 10:15:15.151825+00 12046 LZ1299#背心款3号色 SPMX-20240815307232 \N \N \N 1 \N [{"file_id": "88afbc01-2071-43ff-9cc5-d5316c520526", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137ec28ddb634dc7b8cd53b34f17fde1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137ec28ddb634dc7b8cd53b34f17fde1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137ec28ddb634dc7b8cd53b34f17fde1.jpg", "file_size": 18163, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137ec28ddb634dc7b8cd53b34f17fde1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137ec28ddb634dc7b8cd53b34f17fde1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137ec28ddb634dc7b8cd53b34f17fde1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137ec28ddb634dc7b8cd53b34f17fde1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137ec28ddb634dc7b8cd53b34f17fde1.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wl0Fs_LfKGHLgTk6fEO4i7IRm5Y=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.15391+00 2025-12-09 10:15:15.153915+00 12047 DL31062#前幅蓝绿 SPMX-20240815307237 \N \N \N 1 \N [{"file_id": "b9200675-4069-49ac-92e1-ba473091fd8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5a685b83a41448d9804621f47eaf123.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5a685b83a41448d9804621f47eaf123.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5a685b83a41448d9804621f47eaf123.jpg", "file_size": 14014, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a685b83a41448d9804621f47eaf123.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a685b83a41448d9804621f47eaf123.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a685b83a41448d9804621f47eaf123.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5a685b83a41448d9804621f47eaf123.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5a685b83a41448d9804621f47eaf123.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuFmBtVhVGuDoq-7YT6bNUdHk_Q=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.156+00 2025-12-09 10:15:15.156004+00 12048 81716#黄色2XL SPMX-20240815307235 \N \N \N 1 \N [{"file_id": "69834cf6-36f5-47b5-aadc-8cab4aacabf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89fd4ed4cf674209add113c5e0fdedf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89fd4ed4cf674209add113c5e0fdedf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89fd4ed4cf674209add113c5e0fdedf8.jpg", "file_size": 15985, "is_delete": false, "file_type": 1, "original_file_name": "81716#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd4ed4cf674209add113c5e0fdedf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd4ed4cf674209add113c5e0fdedf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fd4ed4cf674209add113c5e0fdedf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89fd4ed4cf674209add113c5e0fdedf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89fd4ed4cf674209add113c5e0fdedf8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kSJslhT9hFNpee7nXC2UtkHh6pA=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.157858+00 2025-12-09 10:15:15.157863+00 12049 LJH0100-13#蓝色 SPMX-20240815307233 \N \N \N 1 \N [{"file_id": "25724e55-0e78-4d02-8f9c-f654c21a1e3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1972d0130ee146b09f69387790abd37d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1972d0130ee146b09f69387790abd37d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1972d0130ee146b09f69387790abd37d.jpg", "file_size": 73790, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-13#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972d0130ee146b09f69387790abd37d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972d0130ee146b09f69387790abd37d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1972d0130ee146b09f69387790abd37d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1972d0130ee146b09f69387790abd37d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1972d0130ee146b09f69387790abd37d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETIllKygS_pPuyE6Z5T7uLiC9qs=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.159963+00 2025-12-09 10:15:15.159968+00 12050 JTSS327FW#VS-D3 SPMX-20240815307240 \N \N \N 1 \N [{"file_id": "35fc5d62-9f98-49ac-94f8-4ac505a2f785", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80ba65e86d824344b0f6e9a64c619df6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80ba65e86d824344b0f6e9a64c619df6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80ba65e86d824344b0f6e9a64c619df6.jpg", "file_size": 24862, "is_delete": false, "file_type": 1, "original_file_name": "JTSS327FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ba65e86d824344b0f6e9a64c619df6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ba65e86d824344b0f6e9a64c619df6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ba65e86d824344b0f6e9a64c619df6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80ba65e86d824344b0f6e9a64c619df6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80ba65e86d824344b0f6e9a64c619df6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZlMOT0ZBZeLeIuJq_13CBYM_pw=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.162036+00 2025-12-09 10:15:15.16204+00 12051 23-2118#A9-领子4XL SPMX-20240815307239 \N \N \N 1 \N [{"file_id": "05f84dc6-82bb-4d3c-855a-ff17a7a516c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eddd8f93916429a8fad3afce7936b86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eddd8f93916429a8fad3afce7936b86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eddd8f93916429a8fad3afce7936b86.jpg", "file_size": 11532, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eddd8f93916429a8fad3afce7936b86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eddd8f93916429a8fad3afce7936b86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eddd8f93916429a8fad3afce7936b86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eddd8f93916429a8fad3afce7936b86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eddd8f93916429a8fad3afce7936b86.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3UIXcleChM_mHTyKTQE7ZThCalw=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.163893+00 2025-12-09 10:15:15.163898+00 12052 23-2118#A9-领子3XL SPMX-20240815307229 \N \N \N 1 \N [{"file_id": "da66402f-8d65-4a00-9872-d744818b0d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "466301346a95415d8d7b38ce375bd21c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "466301346a95415d8d7b38ce375bd21c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "466301346a95415d8d7b38ce375bd21c.jpg", "file_size": 11552, "is_delete": false, "file_type": 1, "original_file_name": "23-2118#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466301346a95415d8d7b38ce375bd21c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466301346a95415d8d7b38ce375bd21c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466301346a95415d8d7b38ce375bd21c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/466301346a95415d8d7b38ce375bd21c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/466301346a95415d8d7b38ce375bd21c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SYKQzMujt42i7BvDMbFjRa5ZPG4=", "createTime": "2024-08-15 14:53:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.165985+00 2025-12-09 10:15:15.16599+00 12053 C448#黑色 SPMX-20240815307230 \N \N \N 1 \N [{"file_id": "3c817d93-470a-4c35-a983-76ed7b263d17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1221723b47974f289295c6110cf1fe2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1221723b47974f289295c6110cf1fe2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1221723b47974f289295c6110cf1fe2f.jpg", "file_size": 66916, "is_delete": false, "file_type": 1, "original_file_name": "C448#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1221723b47974f289295c6110cf1fe2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1221723b47974f289295c6110cf1fe2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1221723b47974f289295c6110cf1fe2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1221723b47974f289295c6110cf1fe2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1221723b47974f289295c6110cf1fe2f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aY2gqcA2pzoeB_t4c7Hyj9NZ4sg=", "createTime": "2024-08-15 14:53:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.168125+00 2025-12-09 10:15:15.168129+00 12054 C450#166绿色 SPMX-20240815307241 \N \N \N 1 \N [{"file_id": "0871126e-9a84-421a-b2c1-3b6152ab5532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8025c4e68084886aa7447a743e62820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8025c4e68084886aa7447a743e62820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8025c4e68084886aa7447a743e62820.jpg", "file_size": 60135, "is_delete": false, "file_type": 1, "original_file_name": "C450#166绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8025c4e68084886aa7447a743e62820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8025c4e68084886aa7447a743e62820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8025c4e68084886aa7447a743e62820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8025c4e68084886aa7447a743e62820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8025c4e68084886aa7447a743e62820.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7Z6uWn9mL5gMovUtGLFIWyZaTc=", "createTime": "2024-08-15 14:53:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.170016+00 2025-12-09 10:15:15.17002+00 12055 81716#黄色L SPMX-20240815307244 \N \N \N 1 \N [{"file_id": "b1d61f40-3017-4e8d-a5b8-2f2c9ffe9a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b9cd04781944e90b485b56fb1031e1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b9cd04781944e90b485b56fb1031e1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b9cd04781944e90b485b56fb1031e1e.jpg", "file_size": 16718, "is_delete": false, "file_type": 1, "original_file_name": "81716#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9cd04781944e90b485b56fb1031e1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9cd04781944e90b485b56fb1031e1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9cd04781944e90b485b56fb1031e1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b9cd04781944e90b485b56fb1031e1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b9cd04781944e90b485b56fb1031e1e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2-BRNS84Z0T6YOsyXVn-OauJpYM=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.17239+00 2025-12-09 10:15:15.172396+00 12056 LJH0100-13#黄色 SPMX-20240815307250 \N \N \N 1 \N [{"file_id": "9a0769dd-44b5-400c-8d97-c7e711f04045", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba56c9e11b264e39a064a4862b0bdba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba56c9e11b264e39a064a4862b0bdba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba56c9e11b264e39a064a4862b0bdba3.jpg", "file_size": 76535, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-13#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56c9e11b264e39a064a4862b0bdba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56c9e11b264e39a064a4862b0bdba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56c9e11b264e39a064a4862b0bdba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba56c9e11b264e39a064a4862b0bdba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba56c9e11b264e39a064a4862b0bdba3.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufaG_fe7XKuKa1ghVFBrioH_xRk=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.174244+00 2025-12-09 10:15:15.174249+00 12057 HT193FW#VS-D3匹布 SPMX-20240815307242 \N \N \N 1 \N [{"file_id": "c0d6ba23-7bbd-47fb-b459-a6fe06bea110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a337bac665a46c5a6bab072219872e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a337bac665a46c5a6bab072219872e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a337bac665a46c5a6bab072219872e8.jpg", "file_size": 13126, "is_delete": false, "file_type": 1, "original_file_name": "HT193FW#VS-D3匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a337bac665a46c5a6bab072219872e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a337bac665a46c5a6bab072219872e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a337bac665a46c5a6bab072219872e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a337bac665a46c5a6bab072219872e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a337bac665a46c5a6bab072219872e8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jgDGfkjrTADx2HKoM5j0hk74d4=", "createTime": "2024-08-15 14:53:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.176122+00 2025-12-09 10:15:15.176127+00 12058 DL31062#批布亮黄 SPMX-20240815307246 \N \N \N 1 \N [{"file_id": "cc1f3902-61eb-4f01-a800-f6d265041cd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4e80a21b54c40e7869a195106208c1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4e80a21b54c40e7869a195106208c1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4e80a21b54c40e7869a195106208c1b.jpg", "file_size": 19958, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e80a21b54c40e7869a195106208c1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e80a21b54c40e7869a195106208c1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e80a21b54c40e7869a195106208c1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4e80a21b54c40e7869a195106208c1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4e80a21b54c40e7869a195106208c1b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPTxuPYDjwjBOl37yVgAy_d3Ea8=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.178216+00 2025-12-09 10:15:15.178221+00 12059 1114-3FWF#粉色下摆-番禺调色 SPMX-20240815307243 \N \N \N 1 \N [{"file_id": "3717a172-664f-4cd4-a5d5-003edd45159d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfeff790c05d44e1b8e703fdac2143dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfeff790c05d44e1b8e703fdac2143dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfeff790c05d44e1b8e703fdac2143dc.jpg", "file_size": 10267, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色下摆-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfeff790c05d44e1b8e703fdac2143dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfeff790c05d44e1b8e703fdac2143dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfeff790c05d44e1b8e703fdac2143dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfeff790c05d44e1b8e703fdac2143dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfeff790c05d44e1b8e703fdac2143dc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvDGKWiTbea6tSAHRo-LU3ddzcU=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.180089+00 2025-12-09 10:15:15.180094+00 12060 0003-A6#白色 SPMX-20240815307249 \N \N \N 1 \N [{"file_id": "3146bd4a-0f85-4049-a757-7494e195c04f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96513206114a409c8175031f5fedc0be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96513206114a409c8175031f5fedc0be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96513206114a409c8175031f5fedc0be.jpg", "file_size": 21570, "is_delete": false, "file_type": 1, "original_file_name": "0003-A6#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96513206114a409c8175031f5fedc0be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96513206114a409c8175031f5fedc0be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96513206114a409c8175031f5fedc0be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96513206114a409c8175031f5fedc0be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96513206114a409c8175031f5fedc0be.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdTQMS6LS6wsFGp7SraGzpLE0Dg=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.182158+00 2025-12-09 10:15:15.182163+00 12061 JTSS328FW#VS-D3 SPMX-20240815307245 \N \N \N 1 \N [{"file_id": "dd45f0b1-b41b-47b5-88ed-80ef35ae097d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cf108a627614f04a070f3f45a1ef76a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cf108a627614f04a070f3f45a1ef76a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cf108a627614f04a070f3f45a1ef76a.jpg", "file_size": 23199, "is_delete": false, "file_type": 1, "original_file_name": "JTSS328FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf108a627614f04a070f3f45a1ef76a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf108a627614f04a070f3f45a1ef76a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf108a627614f04a070f3f45a1ef76a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cf108a627614f04a070f3f45a1ef76a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cf108a627614f04a070f3f45a1ef76a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f8o62PDvRMRQM_Dq8UjGEMiYQac=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.184166+00 2025-12-09 10:15:15.184172+00 12062 LZ1299#背心款4号色 SPMX-20240815307247 \N \N \N 1 \N [{"file_id": "389d3f91-ec4b-4772-9a37-ac64da2cd99f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4234841e97e744c7bb8f03cf3560e7b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4234841e97e744c7bb8f03cf3560e7b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4234841e97e744c7bb8f03cf3560e7b2.jpg", "file_size": 18174, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4234841e97e744c7bb8f03cf3560e7b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4234841e97e744c7bb8f03cf3560e7b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4234841e97e744c7bb8f03cf3560e7b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4234841e97e744c7bb8f03cf3560e7b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4234841e97e744c7bb8f03cf3560e7b2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wZIx58ogxotXCTUx3oa8rM1YXjs=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.186278+00 2025-12-09 10:15:15.186282+00 12063 1114-3FWF#粉色下摆 SPMX-20240815307253 \N \N \N 1 \N [{"file_id": "0e02233a-0c15-434d-9238-b57fc334f519", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c81224e7a8d46d193d417cf7f9eb91d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c81224e7a8d46d193d417cf7f9eb91d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c81224e7a8d46d193d417cf7f9eb91d.jpg", "file_size": 8889, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81224e7a8d46d193d417cf7f9eb91d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81224e7a8d46d193d417cf7f9eb91d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c81224e7a8d46d193d417cf7f9eb91d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c81224e7a8d46d193d417cf7f9eb91d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c81224e7a8d46d193d417cf7f9eb91d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMFoUYSF4Ao1w0LOhebUrYezpyA=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.188136+00 2025-12-09 10:15:15.188141+00 12064 C450#大白 SPMX-20240815307254 \N \N \N 1 \N [{"file_id": "348621a1-7657-4ffc-bc8d-7333249eb200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b52eeb89f1304684b3efd3963d4eb1c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b52eeb89f1304684b3efd3963d4eb1c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b52eeb89f1304684b3efd3963d4eb1c9.jpg", "file_size": 54682, "is_delete": false, "file_type": 1, "original_file_name": "C450#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52eeb89f1304684b3efd3963d4eb1c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52eeb89f1304684b3efd3963d4eb1c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52eeb89f1304684b3efd3963d4eb1c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b52eeb89f1304684b3efd3963d4eb1c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b52eeb89f1304684b3efd3963d4eb1c9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:seDf9KUFH9OTiVDCCrfrMtkkCH4=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.190205+00 2025-12-09 10:15:15.190209+00 12065 FJ007#3XL SPMX-20240815307248 \N \N \N 1 \N [{"file_id": "7a8b9228-4294-4c2d-a471-1df58ca6c117", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04b43f8c499d471ea2e6eedbefc41305.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04b43f8c499d471ea2e6eedbefc41305.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04b43f8c499d471ea2e6eedbefc41305.jpg", "file_size": 18037, "is_delete": false, "file_type": 1, "original_file_name": "FJ007#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b43f8c499d471ea2e6eedbefc41305.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b43f8c499d471ea2e6eedbefc41305.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b43f8c499d471ea2e6eedbefc41305.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04b43f8c499d471ea2e6eedbefc41305.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04b43f8c499d471ea2e6eedbefc41305.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGQzavSSnz3nYLuuububTWnt2EY=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.192301+00 2025-12-09 10:15:15.192306+00 12066 23-2119#A1-3XL SPMX-20240815307251 \N \N \N 1 \N [{"file_id": "e2e3703b-c6f5-4f58-bb01-6fce2cfecba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43a9a17a56b840efbe2cdb10db770fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43a9a17a56b840efbe2cdb10db770fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43a9a17a56b840efbe2cdb10db770fd0.jpg", "file_size": 18620, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a9a17a56b840efbe2cdb10db770fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a9a17a56b840efbe2cdb10db770fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a9a17a56b840efbe2cdb10db770fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43a9a17a56b840efbe2cdb10db770fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43a9a17a56b840efbe2cdb10db770fd0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM8t8kqex8Eh81iPnztDGJH696Y=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.194198+00 2025-12-09 10:15:15.194204+00 12067 HT193FW#VS-D3正身 SPMX-20240815307252 \N \N \N 1 \N [{"file_id": "ebe4d59b-0def-4091-84ae-85a2b1c4d141", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1058410fe10a4d409025d22183256188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1058410fe10a4d409025d22183256188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1058410fe10a4d409025d22183256188.jpg", "file_size": 16732, "is_delete": false, "file_type": 1, "original_file_name": "HT193FW#VS-D3正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1058410fe10a4d409025d22183256188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1058410fe10a4d409025d22183256188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1058410fe10a4d409025d22183256188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1058410fe10a4d409025d22183256188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1058410fe10a4d409025d22183256188.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FSTXVjKx8HyjT5h7vgJ0X9P9UnU=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.196301+00 2025-12-09 10:15:15.196307+00 12068 LZ1299#背心款5号色 SPMX-20240815307256 \N \N \N 1 \N [{"file_id": "aad63fe8-152d-49db-917a-1171967b6382", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c945ce79ebe84bebb2289b6c641cca59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c945ce79ebe84bebb2289b6c641cca59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c945ce79ebe84bebb2289b6c641cca59.jpg", "file_size": 17048, "is_delete": false, "file_type": 1, "original_file_name": "LZ1299#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c945ce79ebe84bebb2289b6c641cca59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c945ce79ebe84bebb2289b6c641cca59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c945ce79ebe84bebb2289b6c641cca59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c945ce79ebe84bebb2289b6c641cca59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c945ce79ebe84bebb2289b6c641cca59.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvSnXoS0CInGbhisqlyHQPSPWq0=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.198327+00 2025-12-09 10:15:15.198332+00 12069 HT195FW#VS-D3正身 SPMX-20240815307262 \N \N \N 1 \N [{"file_id": "57d97102-4315-4c19-afc8-f6ecde7a2e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6403e737222e42de98d81e0573390ff5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6403e737222e42de98d81e0573390ff5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6403e737222e42de98d81e0573390ff5.jpg", "file_size": 20287, "is_delete": false, "file_type": 1, "original_file_name": "HT195FW#VS-D3正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6403e737222e42de98d81e0573390ff5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6403e737222e42de98d81e0573390ff5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6403e737222e42de98d81e0573390ff5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6403e737222e42de98d81e0573390ff5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6403e737222e42de98d81e0573390ff5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKV01X28RiuJLOaT2xICS8SmggI=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.200202+00 2025-12-09 10:15:15.200207+00 12070 LJH0100-14#RC23 SPMX-20240815307263 \N \N \N 1 \N [{"file_id": "57336eea-a11a-4463-87d8-5b4397d219f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaa5f85eba9d4727b7997571496c539c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaa5f85eba9d4727b7997571496c539c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaa5f85eba9d4727b7997571496c539c.jpg", "file_size": 52780, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-14#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa5f85eba9d4727b7997571496c539c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa5f85eba9d4727b7997571496c539c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa5f85eba9d4727b7997571496c539c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaa5f85eba9d4727b7997571496c539c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaa5f85eba9d4727b7997571496c539c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:13m5oDgxmSqFF7f2SacD-Grm7x8=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.202296+00 2025-12-09 10:15:15.202301+00 12071 1114-3FWF#粉色正身-番禺调色 SPMX-20240815307264 \N \N \N 1 \N [{"file_id": "87135fc2-8a1c-49b1-b8d1-6f22d716b7d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "079214d252d045f09e5c4a6c968196f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "079214d252d045f09e5c4a6c968196f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "079214d252d045f09e5c4a6c968196f4.jpg", "file_size": 19845, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色正身-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079214d252d045f09e5c4a6c968196f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079214d252d045f09e5c4a6c968196f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079214d252d045f09e5c4a6c968196f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/079214d252d045f09e5c4a6c968196f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/079214d252d045f09e5c4a6c968196f4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Soo7hlVQujEP7Cy4DL2RUneUwR0=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.204425+00 2025-12-09 10:15:15.204431+00 12072 JTSS330FW#VS-D3 SPMX-20240815307267 \N \N \N 1 \N [{"file_id": "ce137722-a134-49e8-9fe2-9b0601f5d5f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d3fd55fe42c43778ab6200e780ecac9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d3fd55fe42c43778ab6200e780ecac9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d3fd55fe42c43778ab6200e780ecac9.jpg", "file_size": 15793, "is_delete": false, "file_type": 1, "original_file_name": "JTSS330FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3fd55fe42c43778ab6200e780ecac9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3fd55fe42c43778ab6200e780ecac9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3fd55fe42c43778ab6200e780ecac9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d3fd55fe42c43778ab6200e780ecac9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d3fd55fe42c43778ab6200e780ecac9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ox0XeitzRZ3ROedY6jxhJTZTuQ=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.206318+00 2025-12-09 10:15:15.206323+00 12073 DL31062#批布大红 SPMX-20240815307258 \N \N \N 1 \N [{"file_id": "bafb7087-765e-4a48-a098-1ce88dd86e9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1baf12e190684db2b8da81f44dee2859.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1baf12e190684db2b8da81f44dee2859.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1baf12e190684db2b8da81f44dee2859.jpg", "file_size": 24617, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf12e190684db2b8da81f44dee2859.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf12e190684db2b8da81f44dee2859.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1baf12e190684db2b8da81f44dee2859.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1baf12e190684db2b8da81f44dee2859.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1baf12e190684db2b8da81f44dee2859.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:angFSGhgch6M-_IS2Ip8MRc3F9I=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.208413+00 2025-12-09 10:15:15.208418+00 12074 JTSS329FW#VS-D3 SPMX-20240815307257 \N \N \N 1 \N [{"file_id": "9f1b7803-6fe2-43ba-b85f-736d55b7d11f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a1c70e159c24e9d981b7d0b14bb6494.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a1c70e159c24e9d981b7d0b14bb6494.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a1c70e159c24e9d981b7d0b14bb6494.jpg", "file_size": 15990, "is_delete": false, "file_type": 1, "original_file_name": "JTSS329FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c70e159c24e9d981b7d0b14bb6494.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c70e159c24e9d981b7d0b14bb6494.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c70e159c24e9d981b7d0b14bb6494.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a1c70e159c24e9d981b7d0b14bb6494.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a1c70e159c24e9d981b7d0b14bb6494.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbje3ocwu6upheyN-RyU8VbwVdY=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.210267+00 2025-12-09 10:15:15.210272+00 12075 C450#橙色 SPMX-20240815307265 \N \N \N 1 \N [{"file_id": "7ebd5651-3122-42a6-a825-2a4450ba2fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47d342baed8e4487bf9340d48a079d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47d342baed8e4487bf9340d48a079d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47d342baed8e4487bf9340d48a079d6b.jpg", "file_size": 63164, "is_delete": false, "file_type": 1, "original_file_name": "C450#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d342baed8e4487bf9340d48a079d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d342baed8e4487bf9340d48a079d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47d342baed8e4487bf9340d48a079d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47d342baed8e4487bf9340d48a079d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47d342baed8e4487bf9340d48a079d6b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YazbP2CDDGHUDWbcKiZlSakGhmU=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.212332+00 2025-12-09 10:15:15.212337+00 12076 FJ007#M SPMX-20240815307259 \N \N \N 1 \N [{"file_id": "ff1d742b-5493-46be-b618-c3e21b31745d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ff24f87b9aa4958b504ebe7b4f4d712.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ff24f87b9aa4958b504ebe7b4f4d712.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ff24f87b9aa4958b504ebe7b4f4d712.jpg", "file_size": 19217, "is_delete": false, "file_type": 1, "original_file_name": "FJ007#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff24f87b9aa4958b504ebe7b4f4d712.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff24f87b9aa4958b504ebe7b4f4d712.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff24f87b9aa4958b504ebe7b4f4d712.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ff24f87b9aa4958b504ebe7b4f4d712.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ff24f87b9aa4958b504ebe7b4f4d712.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w5EUVOQ0zB4JHAJBDZ9MH-LbQ8s=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.214404+00 2025-12-09 10:15:15.21441+00 12077 LZ129FWF#1号色短袖 SPMX-20240815307269 \N \N \N 1 \N [{"file_id": "92b43e82-9c66-46e1-85e9-3849db3c746d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2432d545303c48808c1b889857dc3b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2432d545303c48808c1b889857dc3b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2432d545303c48808c1b889857dc3b87.jpg", "file_size": 20100, "is_delete": false, "file_type": 1, "original_file_name": "LZ129FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2432d545303c48808c1b889857dc3b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2432d545303c48808c1b889857dc3b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2432d545303c48808c1b889857dc3b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2432d545303c48808c1b889857dc3b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2432d545303c48808c1b889857dc3b87.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_X2Bo79OWRAj9LL5D7Qft4t0PT0=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.216495+00 2025-12-09 10:15:15.2165+00 12078 81716#黄色M SPMX-20240815307255 \N \N \N 1 \N [{"file_id": "fa008f22-266d-4959-88be-b6cc72a7abb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42738f2794fb4aabaa9069bf0f9259ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42738f2794fb4aabaa9069bf0f9259ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42738f2794fb4aabaa9069bf0f9259ed.jpg", "file_size": 17591, "is_delete": false, "file_type": 1, "original_file_name": "81716#黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42738f2794fb4aabaa9069bf0f9259ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42738f2794fb4aabaa9069bf0f9259ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42738f2794fb4aabaa9069bf0f9259ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42738f2794fb4aabaa9069bf0f9259ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42738f2794fb4aabaa9069bf0f9259ed.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dyp_gK69ordbTyuuW0eaDmOf0fw=", "createTime": "2024-08-15 14:53:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.21835+00 2025-12-09 10:15:15.218355+00 12079 0003-A6#粉色 SPMX-20240815307260 \N \N \N 1 \N [{"file_id": "06ec9ee7-deb8-48b7-8ecf-312af09dd502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1965e22bae0547f58169c78d8bf051e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1965e22bae0547f58169c78d8bf051e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1965e22bae0547f58169c78d8bf051e7.jpg", "file_size": 19060, "is_delete": false, "file_type": 1, "original_file_name": "0003-A6#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965e22bae0547f58169c78d8bf051e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965e22bae0547f58169c78d8bf051e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1965e22bae0547f58169c78d8bf051e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1965e22bae0547f58169c78d8bf051e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1965e22bae0547f58169c78d8bf051e7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FA4GULnw-xF4hH7deaorlcAtkgM=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.220433+00 2025-12-09 10:15:15.220438+00 12080 23-2119#A1-4XL SPMX-20240815307261 \N \N \N 1 \N [{"file_id": "25386765-9ee6-469c-b3a0-01d6dd18600b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72cbd891989b4e75abec7010a1d9146e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72cbd891989b4e75abec7010a1d9146e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72cbd891989b4e75abec7010a1d9146e.jpg", "file_size": 17660, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cbd891989b4e75abec7010a1d9146e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cbd891989b4e75abec7010a1d9146e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cbd891989b4e75abec7010a1d9146e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72cbd891989b4e75abec7010a1d9146e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72cbd891989b4e75abec7010a1d9146e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b18pE_L7IVBD_5DNgQinwE1TAH4=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.222551+00 2025-12-09 10:15:15.222556+00 12081 81716#黄色S SPMX-20240815307266 \N \N \N 1 \N [{"file_id": "8ec907fe-7c09-402a-9e01-f79462a85cf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfff534fd3e742588a282e564500c0dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfff534fd3e742588a282e564500c0dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfff534fd3e742588a282e564500c0dd.jpg", "file_size": 16921, "is_delete": false, "file_type": 1, "original_file_name": "81716#黄色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfff534fd3e742588a282e564500c0dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfff534fd3e742588a282e564500c0dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfff534fd3e742588a282e564500c0dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfff534fd3e742588a282e564500c0dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfff534fd3e742588a282e564500c0dd.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qum0jOZAp2qShpDs3WGax0bjKk=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.224405+00 2025-12-09 10:15:15.224409+00 12082 FJ007#XL SPMX-20240815307268 \N \N \N 1 \N [{"file_id": "1972339e-104b-4a51-a796-58c4d5afc151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc0b5ffa9d740019eab94e68e04a8f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc0b5ffa9d740019eab94e68e04a8f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc0b5ffa9d740019eab94e68e04a8f6.jpg", "file_size": 20260, "is_delete": false, "file_type": 1, "original_file_name": "FJ007#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0b5ffa9d740019eab94e68e04a8f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0b5ffa9d740019eab94e68e04a8f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0b5ffa9d740019eab94e68e04a8f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc0b5ffa9d740019eab94e68e04a8f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc0b5ffa9d740019eab94e68e04a8f6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CLjfybAdKLzfwowd9HAM11U5zSk=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.226487+00 2025-12-09 10:15:15.226492+00 12083 HT195FW#VS-D3领子 SPMX-20240815307272 \N \N \N 1 \N [{"file_id": "03344150-a1db-47b9-93d7-4b4ebdec2161", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2fe5b15152f4f01ae5327ff420c0ebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2fe5b15152f4f01ae5327ff420c0ebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2fe5b15152f4f01ae5327ff420c0ebd.jpg", "file_size": 11300, "is_delete": false, "file_type": 1, "original_file_name": "HT195FW#VS-D3领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2fe5b15152f4f01ae5327ff420c0ebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2fe5b15152f4f01ae5327ff420c0ebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2fe5b15152f4f01ae5327ff420c0ebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2fe5b15152f4f01ae5327ff420c0ebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2fe5b15152f4f01ae5327ff420c0ebd.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8SGWG9pT96WOH9sFOSWIKW0CnQ=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.228544+00 2025-12-09 10:15:15.228548+00 12084 1114-3FWF#粉色正身 SPMX-20240815307275 \N \N \N 1 \N [{"file_id": "e14eb250-02e0-4a5d-ac2e-6f729e7e18fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5eabcaa56b948acb65865367be740bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5eabcaa56b948acb65865367be740bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5eabcaa56b948acb65865367be740bb.jpg", "file_size": 18594, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5eabcaa56b948acb65865367be740bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5eabcaa56b948acb65865367be740bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5eabcaa56b948acb65865367be740bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5eabcaa56b948acb65865367be740bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5eabcaa56b948acb65865367be740bb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kT6SKDKEm_wAPRG3nROZoWT6YxM=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.230422+00 2025-12-09 10:15:15.230427+00 12085 LJH0100-2#枣红 SPMX-20240815307274 \N \N \N 1 \N [{"file_id": "e32fd0f2-f0ec-4dbf-888a-50b6ff8d2c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e618642d8ee41658edbb17bfa0aadfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e618642d8ee41658edbb17bfa0aadfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e618642d8ee41658edbb17bfa0aadfc.jpg", "file_size": 56904, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-2#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e618642d8ee41658edbb17bfa0aadfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e618642d8ee41658edbb17bfa0aadfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e618642d8ee41658edbb17bfa0aadfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e618642d8ee41658edbb17bfa0aadfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e618642d8ee41658edbb17bfa0aadfc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:63WnLOFTiDq8mTuQrLxHHOhQt2A=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.232516+00 2025-12-09 10:15:15.232521+00 12086 DL31062#批布彩兰 SPMX-20240815307273 \N \N \N 1 \N [{"file_id": "584a4e20-8b21-4d69-983d-ff316f45e802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cdf057691c14d8081878b2c1b49bc76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cdf057691c14d8081878b2c1b49bc76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cdf057691c14d8081878b2c1b49bc76.jpg", "file_size": 25533, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdf057691c14d8081878b2c1b49bc76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdf057691c14d8081878b2c1b49bc76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cdf057691c14d8081878b2c1b49bc76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cdf057691c14d8081878b2c1b49bc76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cdf057691c14d8081878b2c1b49bc76.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKIUSK8uBj5NyRkDR-126CPX5Xk=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.234607+00 2025-12-09 10:15:15.234612+00 12087 23-2119#A1-领子3XL SPMX-20240815307271 \N \N \N 1 \N [{"file_id": "c54f310e-62aa-4827-b2b0-83d1aed3e0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4174d0879eaf4ffaaf6c26b0982ceb1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4174d0879eaf4ffaaf6c26b0982ceb1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4174d0879eaf4ffaaf6c26b0982ceb1c.jpg", "file_size": 11790, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4174d0879eaf4ffaaf6c26b0982ceb1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4174d0879eaf4ffaaf6c26b0982ceb1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4174d0879eaf4ffaaf6c26b0982ceb1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4174d0879eaf4ffaaf6c26b0982ceb1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4174d0879eaf4ffaaf6c26b0982ceb1c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKWK2vCIGxFdjhCLmx7BrCMJSFQ=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.236481+00 2025-12-09 10:15:15.236486+00 12088 0003-A6#红色 SPMX-20240815307270 \N \N \N 1 \N [{"file_id": "b1783379-c7c9-432f-a0ba-316ee57082a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c0c62c3c4314ab49d8cb3481065c092.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c0c62c3c4314ab49d8cb3481065c092.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c0c62c3c4314ab49d8cb3481065c092.jpg", "file_size": 20985, "is_delete": false, "file_type": 1, "original_file_name": "0003-A6#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0c62c3c4314ab49d8cb3481065c092.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0c62c3c4314ab49d8cb3481065c092.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c0c62c3c4314ab49d8cb3481065c092.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c0c62c3c4314ab49d8cb3481065c092.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c0c62c3c4314ab49d8cb3481065c092.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZBidtDeWejMhfoKYWszxZMXplQ=", "createTime": "2024-08-15 14:53:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.23862+00 2025-12-09 10:15:15.238626+00 12089 0003-A6#黑色 SPMX-20240815307280 \N \N \N 1 \N [{"file_id": "7c449ae4-b504-436e-9b81-614f9bc31f45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecc7009c94ec41d0a91f2f6af2cdbf75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecc7009c94ec41d0a91f2f6af2cdbf75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecc7009c94ec41d0a91f2f6af2cdbf75.jpg", "file_size": 24139, "is_delete": false, "file_type": 1, "original_file_name": "0003-A6#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc7009c94ec41d0a91f2f6af2cdbf75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc7009c94ec41d0a91f2f6af2cdbf75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc7009c94ec41d0a91f2f6af2cdbf75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecc7009c94ec41d0a91f2f6af2cdbf75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecc7009c94ec41d0a91f2f6af2cdbf75.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJ16edx52pyBVvC1lsrv1MzljBw=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.240751+00 2025-12-09 10:15:15.240756+00 12090 81716#黄色XL SPMX-20240815307276 \N \N \N 1 \N [{"file_id": "fd4da793-92ea-473a-9fd8-9d73572e16a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "112912a4892a4b3ca9d45e27ebff4138.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "112912a4892a4b3ca9d45e27ebff4138.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "112912a4892a4b3ca9d45e27ebff4138.jpg", "file_size": 16329, "is_delete": false, "file_type": 1, "original_file_name": "81716#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112912a4892a4b3ca9d45e27ebff4138.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112912a4892a4b3ca9d45e27ebff4138.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112912a4892a4b3ca9d45e27ebff4138.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/112912a4892a4b3ca9d45e27ebff4138.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/112912a4892a4b3ca9d45e27ebff4138.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FU0ad2yGfhXlJqQDrHGskkwqu2g=", "createTime": "2024-08-15 14:53:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.242615+00 2025-12-09 10:15:15.24262+00 12091 23-2119#A1-领子4XL SPMX-20240815307278 \N \N \N 1 \N [{"file_id": "69a4a190-a755-4c0f-b67e-6fb70d3cf884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a6891626f044ea287ce617416ea05d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a6891626f044ea287ce617416ea05d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a6891626f044ea287ce617416ea05d1.jpg", "file_size": 12063, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6891626f044ea287ce617416ea05d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6891626f044ea287ce617416ea05d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a6891626f044ea287ce617416ea05d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a6891626f044ea287ce617416ea05d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a6891626f044ea287ce617416ea05d1.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztNH06bGJ0QE4EXj__AMrBJJYgQ=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.252564+00 2025-12-09 10:15:15.252569+00 12096 JTSS331FW#VS-D3 SPMX-20240815307277 \N \N \N 1 \N [{"file_id": "2a7c6481-1f8f-4fbd-b905-b887ea5748a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43529a06c64640fab6cc9bb5fb1a52e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43529a06c64640fab6cc9bb5fb1a52e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43529a06c64640fab6cc9bb5fb1a52e8.jpg", "file_size": 21373, "is_delete": false, "file_type": 1, "original_file_name": "JTSS331FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43529a06c64640fab6cc9bb5fb1a52e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43529a06c64640fab6cc9bb5fb1a52e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43529a06c64640fab6cc9bb5fb1a52e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43529a06c64640fab6cc9bb5fb1a52e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43529a06c64640fab6cc9bb5fb1a52e8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kAuJ4bhEJu4TLsdNiSsUVMiQ9hk=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.244692+00 2025-12-09 10:15:15.244696+00 12092 LZ129FWF#2号色短袖 SPMX-20240815307282 \N \N \N 1 \N [{"file_id": "c1ffcdbc-3147-4843-94ac-3118847f97d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "270d43a66f634a32b4492e738de8030f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "270d43a66f634a32b4492e738de8030f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "270d43a66f634a32b4492e738de8030f.jpg", "file_size": 20614, "is_delete": false, "file_type": 1, "original_file_name": "LZ129FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270d43a66f634a32b4492e738de8030f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270d43a66f634a32b4492e738de8030f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/270d43a66f634a32b4492e738de8030f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/270d43a66f634a32b4492e738de8030f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/270d43a66f634a32b4492e738de8030f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cizyKFuBAZK0IvCEQRjQ3tT-mhI=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.246583+00 2025-12-09 10:15:15.246589+00 12093 FJ0076#橘色 SPMX-20240815307279 \N \N \N 1 \N [{"file_id": "8f8b0483-3ae6-476c-ac89-554d68f2a2e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72419a5320574a15886b9227ed2ada0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72419a5320574a15886b9227ed2ada0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72419a5320574a15886b9227ed2ada0d.jpg", "file_size": 7891, "is_delete": false, "file_type": 1, "original_file_name": "FJ0076#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72419a5320574a15886b9227ed2ada0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72419a5320574a15886b9227ed2ada0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72419a5320574a15886b9227ed2ada0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72419a5320574a15886b9227ed2ada0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72419a5320574a15886b9227ed2ada0d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-xtImOhoi5GGPeUd3l_JUG2D-g=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.248658+00 2025-12-09 10:15:15.248663+00 12094 DL31062#批布枣红 SPMX-20240815307281 \N \N \N 1 \N [{"file_id": "ea11576f-c0d6-4d87-8eb8-bceb644f9d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7a37bd9ab164a7f9c9f61bca2c89400.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7a37bd9ab164a7f9c9f61bca2c89400.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7a37bd9ab164a7f9c9f61bca2c89400.jpg", "file_size": 25585, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a37bd9ab164a7f9c9f61bca2c89400.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a37bd9ab164a7f9c9f61bca2c89400.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a37bd9ab164a7f9c9f61bca2c89400.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7a37bd9ab164a7f9c9f61bca2c89400.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7a37bd9ab164a7f9c9f61bca2c89400.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVso9RcnWAhifnYuz0lIzD_hmPY=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.250734+00 2025-12-09 10:15:15.250739+00 12095 HT196FW#VS-D3 SPMX-20240815307283 \N \N \N 1 \N [{"file_id": "af30771d-d45d-4f95-a987-9164b03ce1a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg", "file_size": 13455, "is_delete": false, "file_type": 1, "original_file_name": "HT196FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9aa0e2e3ffa4bc7b4a6ea6457c60ed0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DPGipz3SUS77_pFJX1G-Ou1qlIo=", "createTime": "2024-08-15 14:53:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.254675+00 2025-12-09 10:15:15.25468+00 12097 FJ0076#红色 SPMX-20240815307286 \N \N \N 1 \N [{"file_id": "ad93287c-cc83-4fa0-b114-edcd160b793d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4612d7bcbb644b34a4cfabf12f2da96c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4612d7bcbb644b34a4cfabf12f2da96c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4612d7bcbb644b34a4cfabf12f2da96c.jpg", "file_size": 6963, "is_delete": false, "file_type": 1, "original_file_name": "FJ0076#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4612d7bcbb644b34a4cfabf12f2da96c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4612d7bcbb644b34a4cfabf12f2da96c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4612d7bcbb644b34a4cfabf12f2da96c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4612d7bcbb644b34a4cfabf12f2da96c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4612d7bcbb644b34a4cfabf12f2da96c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-9NgryzdgVVj8ks4EstHaR7oI0=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.256734+00 2025-12-09 10:15:15.256739+00 12098 JTSS332FW#VS-D3 SPMX-20240815307287 \N \N \N 1 \N [{"file_id": "ff997234-a66b-4c2d-8896-3a1e5fec8b1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b37718c8bd7541f481dedc9e6d8ec43d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b37718c8bd7541f481dedc9e6d8ec43d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b37718c8bd7541f481dedc9e6d8ec43d.jpg", "file_size": 9961, "is_delete": false, "file_type": 1, "original_file_name": "JTSS332FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37718c8bd7541f481dedc9e6d8ec43d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37718c8bd7541f481dedc9e6d8ec43d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37718c8bd7541f481dedc9e6d8ec43d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b37718c8bd7541f481dedc9e6d8ec43d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b37718c8bd7541f481dedc9e6d8ec43d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDTT-w_LKGWJH30HaFC1KYU4YMI=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.258749+00 2025-12-09 10:15:15.258754+00 12099 C450#玫红色 SPMX-20240815307284 \N \N \N 1 \N [{"file_id": "514515e7-ec47-43f6-9569-09ec8c080014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b88e9ce63fdf4382a4d2828df71554f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b88e9ce63fdf4382a4d2828df71554f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b88e9ce63fdf4382a4d2828df71554f5.jpg", "file_size": 57594, "is_delete": false, "file_type": 1, "original_file_name": "C450#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88e9ce63fdf4382a4d2828df71554f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88e9ce63fdf4382a4d2828df71554f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b88e9ce63fdf4382a4d2828df71554f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b88e9ce63fdf4382a4d2828df71554f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b88e9ce63fdf4382a4d2828df71554f5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:acsq2riuEmpUS0rMgb3soi8xJRc=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.260818+00 2025-12-09 10:15:15.260822+00 12100 1114-3FWF#粉色袖子花-番禺调色 SPMX-20240815307285 \N \N \N 1 \N [{"file_id": "523066f5-7b03-462d-8183-c6c5af9ad068", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a469560a1184be297f06301ff056f8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a469560a1184be297f06301ff056f8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a469560a1184be297f06301ff056f8a.jpg", "file_size": 12331, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色袖子花-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a469560a1184be297f06301ff056f8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a469560a1184be297f06301ff056f8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a469560a1184be297f06301ff056f8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a469560a1184be297f06301ff056f8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a469560a1184be297f06301ff056f8a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwY7UNYnRuonicJSABej3WuOfgU=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.262674+00 2025-12-09 10:15:15.262679+00 12101 0003-A7#原版色 SPMX-20240815307292 \N \N \N 1 \N [{"file_id": "f46966d7-c9a9-4152-b3ae-920945f39d67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdcc86638b3f4d9f8f27f05f991817ed.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdcc86638b3f4d9f8f27f05f991817ed.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdcc86638b3f4d9f8f27f05f991817ed.bmp", "file_size": 322614, "is_delete": false, "file_type": 1, "original_file_name": "0003-A7#原版色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcc86638b3f4d9f8f27f05f991817ed.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcc86638b3f4d9f8f27f05f991817ed.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcc86638b3f4d9f8f27f05f991817ed.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdcc86638b3f4d9f8f27f05f991817ed.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdcc86638b3f4d9f8f27f05f991817ed.bmp?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6RDynWnFX3irgzwLFQjpEa7Q50=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.264777+00 2025-12-09 10:15:15.264781+00 12102 8177FWE#枣红 SPMX-20240815307291 \N \N \N 1 \N [{"file_id": "a556aa89-b872-4c97-8d17-6f6583e2dedc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d865098264ef44bab391b24be28e24b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d865098264ef44bab391b24be28e24b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d865098264ef44bab391b24be28e24b4.jpg", "file_size": 14599, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d865098264ef44bab391b24be28e24b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d865098264ef44bab391b24be28e24b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d865098264ef44bab391b24be28e24b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d865098264ef44bab391b24be28e24b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d865098264ef44bab391b24be28e24b4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUCFsEFHo0jJW44R_hczYWJhuts=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.266914+00 2025-12-09 10:15:15.26692+00 12103 DL31062#批布水红 SPMX-20240815307289 \N \N \N 1 \N [{"file_id": "14e4ccb6-a478-4906-825e-395ece8e5168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8b8772a924840319b53391665396bf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8b8772a924840319b53391665396bf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8b8772a924840319b53391665396bf9.jpg", "file_size": 18317, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b8772a924840319b53391665396bf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b8772a924840319b53391665396bf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b8772a924840319b53391665396bf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8b8772a924840319b53391665396bf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8b8772a924840319b53391665396bf9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fix9ogFWsAyQn8kZz38K4EcvQvI=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.26906+00 2025-12-09 10:15:15.269065+00 12104 LJH0100-2#橙色 SPMX-20240815307290 \N \N \N 1 \N [{"file_id": "1cd8fd64-b147-4ade-a9ab-29c3ad58a26e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9de10654afe64b74baf6fc747d2a9739.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9de10654afe64b74baf6fc747d2a9739.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9de10654afe64b74baf6fc747d2a9739.jpg", "file_size": 57380, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-2#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9de10654afe64b74baf6fc747d2a9739.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9de10654afe64b74baf6fc747d2a9739.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9de10654afe64b74baf6fc747d2a9739.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9de10654afe64b74baf6fc747d2a9739.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9de10654afe64b74baf6fc747d2a9739.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbn_dasR_OdPCrCeJMLqYUDolq4=", "createTime": "2024-08-15 14:53:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.271135+00 2025-12-09 10:15:15.27114+00 12105 23-2119#A10-3XL SPMX-20240815307288 \N \N \N 1 \N [{"file_id": "0bb15700-6154-4f5f-bea1-492d9893496d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a604753d79584ceba14c42932424d28f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a604753d79584ceba14c42932424d28f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a604753d79584ceba14c42932424d28f.jpg", "file_size": 18117, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a604753d79584ceba14c42932424d28f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a604753d79584ceba14c42932424d28f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a604753d79584ceba14c42932424d28f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a604753d79584ceba14c42932424d28f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a604753d79584ceba14c42932424d28f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hukzheKIfTrN4Jfs___70IP6QOY=", "createTime": "2024-08-15 14:53:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.273213+00 2025-12-09 10:15:15.273218+00 12106 8177FWE#枣红净色 SPMX-20240815307300 \N \N \N 1 \N [{"file_id": "d457215b-cdb0-4985-b136-4947aa5175ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3d7c12c336489081bc6e42e0fc8602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3d7c12c336489081bc6e42e0fc8602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3d7c12c336489081bc6e42e0fc8602.jpg", "file_size": 7479, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d7c12c336489081bc6e42e0fc8602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d7c12c336489081bc6e42e0fc8602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3d7c12c336489081bc6e42e0fc8602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3d7c12c336489081bc6e42e0fc8602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3d7c12c336489081bc6e42e0fc8602.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDvts2keEYzQMAtC-BtpDKyd4eU=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.275259+00 2025-12-09 10:15:15.275264+00 12107 0003-A7#橘色 SPMX-20240815307303 \N \N \N 1 \N [{"file_id": "484d3191-6e2a-47c5-9623-2d481db2ec1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ece75d8a3a84cca9e8fc651ba22706c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ece75d8a3a84cca9e8fc651ba22706c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ece75d8a3a84cca9e8fc651ba22706c.jpg", "file_size": 12626, "is_delete": false, "file_type": 1, "original_file_name": "0003-A7#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ece75d8a3a84cca9e8fc651ba22706c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ece75d8a3a84cca9e8fc651ba22706c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ece75d8a3a84cca9e8fc651ba22706c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ece75d8a3a84cca9e8fc651ba22706c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ece75d8a3a84cca9e8fc651ba22706c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1na7MbFkPldElI82IIhhzdZQQQM=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.277295+00 2025-12-09 10:15:15.2773+00 12108 23-2119#A10-4XL SPMX-20240815307299 \N \N \N 1 \N [{"file_id": "42469062-0e74-4296-b4ed-4e5dd594e54b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0be32dadd034df9a8f28bc2939f7918.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0be32dadd034df9a8f28bc2939f7918.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0be32dadd034df9a8f28bc2939f7918.jpg", "file_size": 16537, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0be32dadd034df9a8f28bc2939f7918.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0be32dadd034df9a8f28bc2939f7918.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0be32dadd034df9a8f28bc2939f7918.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0be32dadd034df9a8f28bc2939f7918.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0be32dadd034df9a8f28bc2939f7918.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N2UPNZ1bmZpuEoyMOl-6lh5yGOs=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.279328+00 2025-12-09 10:15:15.279333+00 12109 JTSS333FW#VS-D3蓝 SPMX-20240815307306 \N \N \N 1 \N [{"file_id": "df8bc89a-16f1-4fde-af95-c0db29d58b49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe7ecab6d30346179657cf308ef2612d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe7ecab6d30346179657cf308ef2612d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe7ecab6d30346179657cf308ef2612d.jpg", "file_size": 13550, "is_delete": false, "file_type": 1, "original_file_name": "JTSS333FW#VS-D3蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7ecab6d30346179657cf308ef2612d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7ecab6d30346179657cf308ef2612d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe7ecab6d30346179657cf308ef2612d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe7ecab6d30346179657cf308ef2612d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe7ecab6d30346179657cf308ef2612d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lr_Aw9c6aq65WZwgjrWKGjwi0Y=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.281388+00 2025-12-09 10:15:15.281394+00 12110 HT19797#粉色 SPMX-20240815307304 \N \N \N 1 \N [{"file_id": "1605c452-f777-4b5d-a8a3-d0d2592922b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58559aad4c3946758a665a4320a51d34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58559aad4c3946758a665a4320a51d34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58559aad4c3946758a665a4320a51d34.jpg", "file_size": 8648, "is_delete": false, "file_type": 1, "original_file_name": "HT19797#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58559aad4c3946758a665a4320a51d34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58559aad4c3946758a665a4320a51d34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58559aad4c3946758a665a4320a51d34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58559aad4c3946758a665a4320a51d34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58559aad4c3946758a665a4320a51d34.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCND8WKN4s2Q_TvQQrpBOGJ6M6A=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.28346+00 2025-12-09 10:15:15.283466+00 12111 C450#黑色 SPMX-20240815307297 \N \N \N 1 \N [{"file_id": "3112536b-4a6b-4b1b-9d64-88dd327b472f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6a26dabf3e42368251ff79f388222f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6a26dabf3e42368251ff79f388222f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6a26dabf3e42368251ff79f388222f.jpg", "file_size": 55516, "is_delete": false, "file_type": 1, "original_file_name": "C450#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a26dabf3e42368251ff79f388222f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a26dabf3e42368251ff79f388222f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6a26dabf3e42368251ff79f388222f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6a26dabf3e42368251ff79f388222f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6a26dabf3e42368251ff79f388222f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6Sm9yJlTWlwSPFYTPF3K0XadX0=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.28577+00 2025-12-09 10:15:15.285776+00 12112 1114-3FWF#粉色袖子花 SPMX-20240815307301 \N \N \N 1 \N [{"file_id": "b188b529-76f1-4ca9-a630-dd9d2a3b29e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23bcde13183f49899b31aad22348673a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23bcde13183f49899b31aad22348673a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23bcde13183f49899b31aad22348673a.jpg", "file_size": 10503, "is_delete": false, "file_type": 1, "original_file_name": "1114-3FWF#粉色袖子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bcde13183f49899b31aad22348673a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bcde13183f49899b31aad22348673a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23bcde13183f49899b31aad22348673a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23bcde13183f49899b31aad22348673a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23bcde13183f49899b31aad22348673a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IooZRUARoKbbqx1HRE-iYtL4LY=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.287928+00 2025-12-09 10:15:15.287934+00 12113 LZ129FWF#3号色短袖 SPMX-20240815307294 \N \N \N 1 \N [{"file_id": "7c11e6ee-4ce4-43f6-844a-2b4800d1d6cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2083f5937b44093b639854f6a86f422.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2083f5937b44093b639854f6a86f422.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2083f5937b44093b639854f6a86f422.jpg", "file_size": 20071, "is_delete": false, "file_type": 1, "original_file_name": "LZ129FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2083f5937b44093b639854f6a86f422.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2083f5937b44093b639854f6a86f422.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2083f5937b44093b639854f6a86f422.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2083f5937b44093b639854f6a86f422.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2083f5937b44093b639854f6a86f422.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPEtnRcfVH1q2ZBUjEofqvK6V9E=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.290217+00 2025-12-09 10:15:15.290223+00 12114 HT196FW#XL SPMX-20240815307293 \N \N \N 1 \N [{"file_id": "455b13ea-092a-4337-97ae-a607379bed0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ada4ccfc7f6473d92c71927411af922.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ada4ccfc7f6473d92c71927411af922.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ada4ccfc7f6473d92c71927411af922.jpg", "file_size": 9552, "is_delete": false, "file_type": 1, "original_file_name": "HT196FW#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada4ccfc7f6473d92c71927411af922.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada4ccfc7f6473d92c71927411af922.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ada4ccfc7f6473d92c71927411af922.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ada4ccfc7f6473d92c71927411af922.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ada4ccfc7f6473d92c71927411af922.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mbXe3K3J8akrkyIbWp9Wxg3msdg=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.292283+00 2025-12-09 10:15:15.292288+00 12115 LZ129FWF#4号色短袖 SPMX-20240815307305 \N \N \N 1 \N [{"file_id": "9ec82f3c-fecb-4e26-8ffc-6df6e4730f19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8785b0d4cfbb4c4ab431983c3716337b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8785b0d4cfbb4c4ab431983c3716337b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8785b0d4cfbb4c4ab431983c3716337b.jpg", "file_size": 19568, "is_delete": false, "file_type": 1, "original_file_name": "LZ129FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8785b0d4cfbb4c4ab431983c3716337b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8785b0d4cfbb4c4ab431983c3716337b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8785b0d4cfbb4c4ab431983c3716337b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8785b0d4cfbb4c4ab431983c3716337b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8785b0d4cfbb4c4ab431983c3716337b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aEe4Eu7fwzvOatucfT1xCmYNs0o=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.294354+00 2025-12-09 10:15:15.29436+00 12116 LJH0100-2#粉色 SPMX-20240815307296 \N \N \N 1 \N [{"file_id": "43cc5f3f-f8ae-49d1-9315-d43783d0e130", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "033af84bf3f743e1a593d515a9f6d053.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "033af84bf3f743e1a593d515a9f6d053.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "033af84bf3f743e1a593d515a9f6d053.jpg", "file_size": 55621, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033af84bf3f743e1a593d515a9f6d053.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033af84bf3f743e1a593d515a9f6d053.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033af84bf3f743e1a593d515a9f6d053.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/033af84bf3f743e1a593d515a9f6d053.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/033af84bf3f743e1a593d515a9f6d053.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_mG4mxL_reYxbwm_vfb87xpb2Q=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.296635+00 2025-12-09 10:15:15.296642+00 12117 DL31062#批布浅粉 SPMX-20240815307302 \N \N \N 1 \N [{"file_id": "be04be7b-dd46-4333-becc-63fc11187328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "611d8c060d3f4c72b303e2b4cacf966d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "611d8c060d3f4c72b303e2b4cacf966d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "611d8c060d3f4c72b303e2b4cacf966d.jpg", "file_size": 16587, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611d8c060d3f4c72b303e2b4cacf966d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611d8c060d3f4c72b303e2b4cacf966d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611d8c060d3f4c72b303e2b4cacf966d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/611d8c060d3f4c72b303e2b4cacf966d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/611d8c060d3f4c72b303e2b4cacf966d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7HDQgjQqYHHgf-6y9P-nPoW5-c=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.299041+00 2025-12-09 10:15:15.299046+00 12118 JTSS333FW#VS-D3粉 SPMX-20240815307295 \N \N \N 1 \N [{"file_id": "3d7d3092-a41a-474a-99ca-74276698a85d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3974329f4cb44179706397693117554.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3974329f4cb44179706397693117554.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3974329f4cb44179706397693117554.jpg", "file_size": 14337, "is_delete": false, "file_type": 1, "original_file_name": "JTSS333FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3974329f4cb44179706397693117554.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3974329f4cb44179706397693117554.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3974329f4cb44179706397693117554.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3974329f4cb44179706397693117554.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3974329f4cb44179706397693117554.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fSN3iyYe3EWas726JjH4wArJ8-c=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.301291+00 2025-12-09 10:15:15.301296+00 12119 FJ0076#蓝黑 SPMX-20240815307298 \N \N \N 1 \N [{"file_id": "370e2e03-b875-4f51-8c26-3bd5b2a6c067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6799666bd8ef440eaa1f6a2145e42e85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6799666bd8ef440eaa1f6a2145e42e85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6799666bd8ef440eaa1f6a2145e42e85.jpg", "file_size": 6921, "is_delete": false, "file_type": 1, "original_file_name": "FJ0076#蓝黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6799666bd8ef440eaa1f6a2145e42e85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6799666bd8ef440eaa1f6a2145e42e85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6799666bd8ef440eaa1f6a2145e42e85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6799666bd8ef440eaa1f6a2145e42e85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6799666bd8ef440eaa1f6a2145e42e85.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:di1I80g_zfwzaITP_mDJBK6_4W8=", "createTime": "2024-08-15 14:53:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.303278+00 2025-12-09 10:15:15.303283+00 12120 LZ129FWF#5号色短袖 SPMX-20240815307315 \N \N \N 1 \N [{"file_id": "9d868e75-112f-4d81-9587-407ae10c1543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d6219a2d63d41188b5f3d119d0f701b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d6219a2d63d41188b5f3d119d0f701b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d6219a2d63d41188b5f3d119d0f701b.jpg", "file_size": 19537, "is_delete": false, "file_type": 1, "original_file_name": "LZ129FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6219a2d63d41188b5f3d119d0f701b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6219a2d63d41188b5f3d119d0f701b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d6219a2d63d41188b5f3d119d0f701b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d6219a2d63d41188b5f3d119d0f701b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d6219a2d63d41188b5f3d119d0f701b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hBaAW2msp1aWh4GxzfxG1Z6PWiM=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.305422+00 2025-12-09 10:15:15.305426+00 12121 HT19797#绿色 SPMX-20240815307314 \N \N \N 1 \N [{"file_id": "77d4616c-b98a-4fa7-965f-e447e114de58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a44e08070ba416398f7b7e4c359fe20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a44e08070ba416398f7b7e4c359fe20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a44e08070ba416398f7b7e4c359fe20.jpg", "file_size": 8123, "is_delete": false, "file_type": 1, "original_file_name": "HT19797#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a44e08070ba416398f7b7e4c359fe20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a44e08070ba416398f7b7e4c359fe20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a44e08070ba416398f7b7e4c359fe20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a44e08070ba416398f7b7e4c359fe20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a44e08070ba416398f7b7e4c359fe20.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQ_xgC6crE8UU532bo2vvfGpGnA=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.307541+00 2025-12-09 10:15:15.307545+00 12122 LJH0100-2#黄色 SPMX-20240815307308 \N \N \N 1 \N [{"file_id": "e47cb540-f6d7-4e51-aae3-4d65b4303086", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2616339be7c4aef8b1340ac6d93d1b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2616339be7c4aef8b1340ac6d93d1b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2616339be7c4aef8b1340ac6d93d1b3.jpg", "file_size": 57159, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2616339be7c4aef8b1340ac6d93d1b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2616339be7c4aef8b1340ac6d93d1b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2616339be7c4aef8b1340ac6d93d1b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2616339be7c4aef8b1340ac6d93d1b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2616339be7c4aef8b1340ac6d93d1b3.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q00yJVs52lzE1V4tXSKzaq762Ks=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.309589+00 2025-12-09 10:15:15.309593+00 12123 C452#大白 SPMX-20240815307309 \N \N \N 1 \N [{"file_id": "0ca4e738-68ba-46f2-9367-4fa991717073", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b5905cd38e8431ea3e41a77507001da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b5905cd38e8431ea3e41a77507001da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b5905cd38e8431ea3e41a77507001da.jpg", "file_size": 51672, "is_delete": false, "file_type": 1, "original_file_name": "C452#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5905cd38e8431ea3e41a77507001da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5905cd38e8431ea3e41a77507001da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5905cd38e8431ea3e41a77507001da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b5905cd38e8431ea3e41a77507001da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b5905cd38e8431ea3e41a77507001da.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxE-ce4txp-AXqe0bxJmgv6qJkE=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.311649+00 2025-12-09 10:15:15.311653+00 12124 23-2119#A10-领子3XL SPMX-20240815307310 \N \N \N 1 \N [{"file_id": "cac4aa29-d15a-43ba-9ef2-a7f361ed90b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c64167006514d28bf756b97f749ed24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c64167006514d28bf756b97f749ed24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c64167006514d28bf756b97f749ed24.jpg", "file_size": 11655, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c64167006514d28bf756b97f749ed24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c64167006514d28bf756b97f749ed24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c64167006514d28bf756b97f749ed24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c64167006514d28bf756b97f749ed24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c64167006514d28bf756b97f749ed24.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0zT87-m3vsulPHQ7YLgBt4FyG8=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.313685+00 2025-12-09 10:15:15.31369+00 12125 FJ0076#黑白 SPMX-20240815307307 \N \N \N 1 \N [{"file_id": "8bbd0f98-d0a6-461b-ad43-cff8d59bd15b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9223c04699f48338ae4f8155fa9228d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9223c04699f48338ae4f8155fa9228d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9223c04699f48338ae4f8155fa9228d.jpg", "file_size": 7249, "is_delete": false, "file_type": 1, "original_file_name": "FJ0076#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9223c04699f48338ae4f8155fa9228d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9223c04699f48338ae4f8155fa9228d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9223c04699f48338ae4f8155fa9228d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9223c04699f48338ae4f8155fa9228d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9223c04699f48338ae4f8155fa9228d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wBTvt0jtuxtwwQ38rnS7v2AhI-A=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.315741+00 2025-12-09 10:15:15.315745+00 12126 23-2119#A10-领子4XL SPMX-20240815307319 \N \N \N 1 \N [{"file_id": "582bec5e-3fa7-44c7-a8f4-2b9a2d5cf468", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7af4b7c7cda349e2a8af4d4f88c93be5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7af4b7c7cda349e2a8af4d4f88c93be5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7af4b7c7cda349e2a8af4d4f88c93be5.jpg", "file_size": 11722, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af4b7c7cda349e2a8af4d4f88c93be5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af4b7c7cda349e2a8af4d4f88c93be5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af4b7c7cda349e2a8af4d4f88c93be5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7af4b7c7cda349e2a8af4d4f88c93be5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7af4b7c7cda349e2a8af4d4f88c93be5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5lIZ26kTjkws41tYuRPkFseeWs=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.317799+00 2025-12-09 10:15:15.317804+00 12127 LJH0100-3#兰色 SPMX-20240815307320 \N \N \N 1 \N [{"file_id": "0892f8aa-a162-46cd-b642-906bf8badda2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4169f0b892444fbcbb6c7d565c69a918.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4169f0b892444fbcbb6c7d565c69a918.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4169f0b892444fbcbb6c7d565c69a918.jpg", "file_size": 74788, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-3#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169f0b892444fbcbb6c7d565c69a918.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169f0b892444fbcbb6c7d565c69a918.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169f0b892444fbcbb6c7d565c69a918.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4169f0b892444fbcbb6c7d565c69a918.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4169f0b892444fbcbb6c7d565c69a918.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yUN3ORGLDd5Fbhmtx9_MW-9BV8=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.32015+00 2025-12-09 10:15:15.320154+00 12128 FJ0077#WJC22 SPMX-20240815307318 \N \N \N 1 \N [{"file_id": "36007d0d-dbcd-4ebb-99b3-3671e7462483", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c56326daa4b143a18e5605c9f47689dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c56326daa4b143a18e5605c9f47689dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c56326daa4b143a18e5605c9f47689dc.jpg", "file_size": 10145, "is_delete": false, "file_type": 1, "original_file_name": "FJ0077#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c56326daa4b143a18e5605c9f47689dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c56326daa4b143a18e5605c9f47689dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c56326daa4b143a18e5605c9f47689dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c56326daa4b143a18e5605c9f47689dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c56326daa4b143a18e5605c9f47689dc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bQeAgrPH2Ny8y2AwKAo4HVBeco=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.322222+00 2025-12-09 10:15:15.322226+00 12129 0003-A7#粉色 SPMX-20240815307316 \N \N \N 1 \N [{"file_id": "24ec685f-ca1a-4198-957e-3c2b46bd8227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f33d812a01944b6480929dd072de8e6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f33d812a01944b6480929dd072de8e6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f33d812a01944b6480929dd072de8e6d.jpg", "file_size": 12608, "is_delete": false, "file_type": 1, "original_file_name": "0003-A7#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f33d812a01944b6480929dd072de8e6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f33d812a01944b6480929dd072de8e6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f33d812a01944b6480929dd072de8e6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f33d812a01944b6480929dd072de8e6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f33d812a01944b6480929dd072de8e6d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lf3vFeWVbNY12gfuApoxOEesGMo=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.324299+00 2025-12-09 10:15:15.324303+00 12130 JTSS334FW#VS-D3 SPMX-20240815307317 \N \N \N 1 \N [{"file_id": "48f8d25d-d51e-44a6-bfee-40b884ef7706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f8a0f895d854dde90906268a28476f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f8a0f895d854dde90906268a28476f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f8a0f895d854dde90906268a28476f5.jpg", "file_size": 13155, "is_delete": false, "file_type": 1, "original_file_name": "JTSS334FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8a0f895d854dde90906268a28476f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8a0f895d854dde90906268a28476f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8a0f895d854dde90906268a28476f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f8a0f895d854dde90906268a28476f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f8a0f895d854dde90906268a28476f5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Phnk_4VbrgHctqsVXrCIFZ9GltY=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.326135+00 2025-12-09 10:15:15.32614+00 12131 1114FWE#白底黄大圆点 SPMX-20240815307311 \N \N \N 1 \N [{"file_id": "4380c1a1-35dd-48ae-909a-522229e95b9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg", "file_size": 9858, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#白底黄大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0c1ab4f35484366b0e3c2ffcf6b97f0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vV-Gj5FzunZccyx_4M--esz_7JY=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.328854+00 2025-12-09 10:15:15.328858+00 12132 8177FWE#绿净色 SPMX-20240815307312 \N \N \N 1 \N [{"file_id": "74a3ca4d-b048-4e40-8a78-44bb752e5c49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6c403b651c246cbaaebb32a70cca556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6c403b651c246cbaaebb32a70cca556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6c403b651c246cbaaebb32a70cca556.jpg", "file_size": 6859, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c403b651c246cbaaebb32a70cca556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c403b651c246cbaaebb32a70cca556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c403b651c246cbaaebb32a70cca556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6c403b651c246cbaaebb32a70cca556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6c403b651c246cbaaebb32a70cca556.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UfpYhElIYgNurtj72JE_P3AXvRQ=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.331521+00 2025-12-09 10:15:15.331526+00 12133 DL31062#批布玫红 SPMX-20240815307313 \N \N \N 1 \N [{"file_id": "e1b90f1b-2cb0-4d2d-8af2-8349d6b24e5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab59e1fe3394450f937a62f2746d5564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab59e1fe3394450f937a62f2746d5564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab59e1fe3394450f937a62f2746d5564.jpg", "file_size": 23082, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab59e1fe3394450f937a62f2746d5564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab59e1fe3394450f937a62f2746d5564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab59e1fe3394450f937a62f2746d5564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab59e1fe3394450f937a62f2746d5564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab59e1fe3394450f937a62f2746d5564.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w9RAIaNiIsiIpfyqQ-89wZcKOhk=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.334186+00 2025-12-09 10:15:15.33419+00 12134 HT19797#黄色 SPMX-20240815307324 \N \N \N 1 \N [{"file_id": "ed8bbe8a-c759-469f-a17f-5cb097ee455c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdc3523ff1ca4d9d900ba60cd14cf28f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdc3523ff1ca4d9d900ba60cd14cf28f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdc3523ff1ca4d9d900ba60cd14cf28f.jpg", "file_size": 8549, "is_delete": false, "file_type": 1, "original_file_name": "HT19797#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3523ff1ca4d9d900ba60cd14cf28f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3523ff1ca4d9d900ba60cd14cf28f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3523ff1ca4d9d900ba60cd14cf28f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdc3523ff1ca4d9d900ba60cd14cf28f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdc3523ff1ca4d9d900ba60cd14cf28f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:koOLTC4NRIER4tdhxlYUouquThs=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.336855+00 2025-12-09 10:15:15.336859+00 12135 JTSS335FW#VS-D3 SPMX-20240815307328 \N \N \N 1 \N [{"file_id": "75525b6f-dc94-4895-9516-9cf31b2f47ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg", "file_size": 10878, "is_delete": false, "file_type": 1, "original_file_name": "JTSS335FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc30ed13fe9c49d4a64af8f9dbef3a5d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAAuMSeHik0QoUE7BU_OaaUTfA4=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.339536+00 2025-12-09 10:15:15.33954+00 12136 0003-A7#蓝色 SPMX-20240815307326 \N \N \N 1 \N [{"file_id": "6fed7335-3e42-461f-80b3-31016490bd20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8f4c40472724fb79d62f3dee592ffbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8f4c40472724fb79d62f3dee592ffbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8f4c40472724fb79d62f3dee592ffbb.jpg", "file_size": 12818, "is_delete": false, "file_type": 1, "original_file_name": "0003-A7#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f4c40472724fb79d62f3dee592ffbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f4c40472724fb79d62f3dee592ffbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f4c40472724fb79d62f3dee592ffbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8f4c40472724fb79d62f3dee592ffbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8f4c40472724fb79d62f3dee592ffbb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxoJdVWozrLiovGxne43GzUHjdE=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.342331+00 2025-12-09 10:15:15.342336+00 12137 DL31062#批布蓝绿 SPMX-20240815307325 \N \N \N 1 \N [{"file_id": "3fa2482b-4322-477c-8f6d-cfc972da6061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf5e1050d0784c8abd0f7fafc637c37a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf5e1050d0784c8abd0f7fafc637c37a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf5e1050d0784c8abd0f7fafc637c37a.jpg", "file_size": 23905, "is_delete": false, "file_type": 1, "original_file_name": "DL31062#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5e1050d0784c8abd0f7fafc637c37a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5e1050d0784c8abd0f7fafc637c37a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5e1050d0784c8abd0f7fafc637c37a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf5e1050d0784c8abd0f7fafc637c37a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf5e1050d0784c8abd0f7fafc637c37a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:No4RzOZ7RB7dSYfhYFJpemv6Ay8=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.345065+00 2025-12-09 10:15:15.34507+00 12138 C452#橙色 SPMX-20240815307331 \N \N \N 1 \N [{"file_id": "452a9af3-4f65-4c97-a14b-f46df357f2e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2f432c77600474aba2ee41d219c7a51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2f432c77600474aba2ee41d219c7a51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2f432c77600474aba2ee41d219c7a51.jpg", "file_size": 59183, "is_delete": false, "file_type": 1, "original_file_name": "C452#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f432c77600474aba2ee41d219c7a51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f432c77600474aba2ee41d219c7a51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f432c77600474aba2ee41d219c7a51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2f432c77600474aba2ee41d219c7a51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2f432c77600474aba2ee41d219c7a51.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ttoVAkyujfOvEXfn9C7v251OWu4=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.347605+00 2025-12-09 10:15:15.347611+00 12139 LZ1300#捆条布 SPMX-20240815307329 \N \N \N 1 \N [{"file_id": "e8faed8b-8dfd-451d-a9e6-6853c49c0821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12d99c175971420299cac7fad3bf7be8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12d99c175971420299cac7fad3bf7be8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12d99c175971420299cac7fad3bf7be8.jpg", "file_size": 11122, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d99c175971420299cac7fad3bf7be8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d99c175971420299cac7fad3bf7be8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d99c175971420299cac7fad3bf7be8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12d99c175971420299cac7fad3bf7be8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12d99c175971420299cac7fad3bf7be8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XU7y5BuwNQSSavTicsODPbgzzUw=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.350015+00 2025-12-09 10:15:15.35002+00 12140 C452#杏色 SPMX-20240815307322 \N \N \N 1 \N [{"file_id": "047515b5-1d13-4b14-91d8-fe2ef74b186b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e883b5843c494982a859693d17265816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e883b5843c494982a859693d17265816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e883b5843c494982a859693d17265816.jpg", "file_size": 50656, "is_delete": false, "file_type": 1, "original_file_name": "C452#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e883b5843c494982a859693d17265816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e883b5843c494982a859693d17265816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e883b5843c494982a859693d17265816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e883b5843c494982a859693d17265816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e883b5843c494982a859693d17265816.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g70_0CTrr8wARDzgBxJAxl2esFI=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.352445+00 2025-12-09 10:15:15.35245+00 12141 1114FWE#绿底白大圆点 SPMX-20240815307332 \N \N \N 1 \N [{"file_id": "f33e43ce-2e2e-4ff9-81ae-f18b2a61030d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e84e53cb4edf4a8ca0e504ce911f2c82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e84e53cb4edf4a8ca0e504ce911f2c82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e84e53cb4edf4a8ca0e504ce911f2c82.jpg", "file_size": 9291, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#绿底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84e53cb4edf4a8ca0e504ce911f2c82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84e53cb4edf4a8ca0e504ce911f2c82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e84e53cb4edf4a8ca0e504ce911f2c82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e84e53cb4edf4a8ca0e504ce911f2c82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e84e53cb4edf4a8ca0e504ce911f2c82.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFXEgSlo0TCH9BUbrK8AsdK9Z_w=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.354864+00 2025-12-09 10:15:15.354869+00 12142 1114FWE#白底黄小圆点 SPMX-20240815307323 \N \N \N 1 \N [{"file_id": "bab754fd-016d-4a45-a8ba-8d1da4ee7204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "848172b0d6004b108783d916fc400d78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "848172b0d6004b108783d916fc400d78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "848172b0d6004b108783d916fc400d78.jpg", "file_size": 14047, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#白底黄小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/848172b0d6004b108783d916fc400d78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/848172b0d6004b108783d916fc400d78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/848172b0d6004b108783d916fc400d78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/848172b0d6004b108783d916fc400d78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/848172b0d6004b108783d916fc400d78.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6cAMDhQlvjZXMH5Mwt_cBq0XKw=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.357003+00 2025-12-09 10:15:15.357008+00 12143 FJ007FW#VS-D3 SPMX-20240815307327 \N \N \N 1 \N [{"file_id": "7eece3bb-94f2-4617-bd8e-4917c9a1b93b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e0ee6cd267d4a9e98acd739b4658aff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e0ee6cd267d4a9e98acd739b4658aff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e0ee6cd267d4a9e98acd739b4658aff.jpg", "file_size": 23393, "is_delete": false, "file_type": 1, "original_file_name": "FJ007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e0ee6cd267d4a9e98acd739b4658aff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e0ee6cd267d4a9e98acd739b4658aff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e0ee6cd267d4a9e98acd739b4658aff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e0ee6cd267d4a9e98acd739b4658aff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e0ee6cd267d4a9e98acd739b4658aff.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3Lmnq83CIjhhN5BoWZxgaJeiZk=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.359445+00 2025-12-09 10:15:15.35945+00 12144 8177FWE#绿色 SPMX-20240815307321 \N \N \N 1 \N [{"file_id": "292e3b2c-36c7-4946-a6c4-6faebcea985a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9c0583cf0a146b5914aa28bfe2e6ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9c0583cf0a146b5914aa28bfe2e6ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9c0583cf0a146b5914aa28bfe2e6ce7.jpg", "file_size": 15877, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c0583cf0a146b5914aa28bfe2e6ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c0583cf0a146b5914aa28bfe2e6ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9c0583cf0a146b5914aa28bfe2e6ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9c0583cf0a146b5914aa28bfe2e6ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9c0583cf0a146b5914aa28bfe2e6ce7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YAJYg7JejDk-0f6_437m83g6lQ=", "createTime": "2024-08-15 14:53:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.361787+00 2025-12-09 10:15:15.361793+00 12145 23-2119#A11-3XL SPMX-20240815307330 \N \N \N 1 \N [{"file_id": "9aa4a0df-2512-4768-b097-a2e4dbc4457a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3eadff3be3e418da4ea23f90c39026a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3eadff3be3e418da4ea23f90c39026a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3eadff3be3e418da4ea23f90c39026a.jpg", "file_size": 16994, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3eadff3be3e418da4ea23f90c39026a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3eadff3be3e418da4ea23f90c39026a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3eadff3be3e418da4ea23f90c39026a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3eadff3be3e418da4ea23f90c39026a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3eadff3be3e418da4ea23f90c39026a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4MUaClQJBdJtSx6sfumNlORHhBY=", "createTime": "2024-08-15 14:53:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.363872+00 2025-12-09 10:15:15.363878+00 12146 JTSS335FW#VS-D3 SPMX-20240815307339 \N \N \N 1 \N [{"file_id": "67d36a94-55a0-438d-93ad-d773c2e09936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "589fad422d3648ddb62b059066ecd436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "589fad422d3648ddb62b059066ecd436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "589fad422d3648ddb62b059066ecd436.jpg", "file_size": 10776, "is_delete": false, "file_type": 1, "original_file_name": "JTSS335FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/589fad422d3648ddb62b059066ecd436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/589fad422d3648ddb62b059066ecd436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/589fad422d3648ddb62b059066ecd436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/589fad422d3648ddb62b059066ecd436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/589fad422d3648ddb62b059066ecd436.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dKgLaSDOJv_ioSyuxqFX3ZHwV38=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.365933+00 2025-12-09 10:15:15.365938+00 12147 HT197FW#VS-D3正身 SPMX-20240815307338 \N \N \N 1 \N [{"file_id": "fe874902-b6e7-4121-8de9-166e6ca9fdfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee6c4c0c662e4a5c886f0544c2169459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee6c4c0c662e4a5c886f0544c2169459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee6c4c0c662e4a5c886f0544c2169459.jpg", "file_size": 10813, "is_delete": false, "file_type": 1, "original_file_name": "HT197FW#VS-D3正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6c4c0c662e4a5c886f0544c2169459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6c4c0c662e4a5c886f0544c2169459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6c4c0c662e4a5c886f0544c2169459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee6c4c0c662e4a5c886f0544c2169459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee6c4c0c662e4a5c886f0544c2169459.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5nbjxDLHycHDGF4XzdoiL18Znc=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.368035+00 2025-12-09 10:15:15.36804+00 12148 DL31063#前幅亮黄 SPMX-20240815307335 \N \N \N 1 \N [{"file_id": "fec3778d-5feb-42e8-b831-b2935f3c9014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9925e4fc72924f96ae4517bc236a28a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9925e4fc72924f96ae4517bc236a28a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9925e4fc72924f96ae4517bc236a28a9.jpg", "file_size": 15439, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9925e4fc72924f96ae4517bc236a28a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9925e4fc72924f96ae4517bc236a28a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9925e4fc72924f96ae4517bc236a28a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9925e4fc72924f96ae4517bc236a28a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9925e4fc72924f96ae4517bc236a28a9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcEGccbuTn5wNz6Wb5D_3xYPeW4=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.370241+00 2025-12-09 10:15:15.370246+00 12149 0003-A8#粉色 SPMX-20240815307336 \N \N \N 1 \N [{"file_id": "4926841f-3012-49ed-bb24-8a0c442d4e8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1cfb98200f44187b5e72facef00f356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1cfb98200f44187b5e72facef00f356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1cfb98200f44187b5e72facef00f356.jpg", "file_size": 12295, "is_delete": false, "file_type": 1, "original_file_name": "0003-A8#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cfb98200f44187b5e72facef00f356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cfb98200f44187b5e72facef00f356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cfb98200f44187b5e72facef00f356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1cfb98200f44187b5e72facef00f356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1cfb98200f44187b5e72facef00f356.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VsQiG01mdDGaQS3PqLjUku7XA1g=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.372566+00 2025-12-09 10:15:15.372571+00 12150 FJ007FWE#VS-D3 SPMX-20240815307337 \N \N \N 1 \N [{"file_id": "9a820718-54fb-4890-a310-0b09e3c5d9d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e8ebfb499214d6c8e3e4e77f072f431.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e8ebfb499214d6c8e3e4e77f072f431.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e8ebfb499214d6c8e3e4e77f072f431.jpg", "file_size": 14039, "is_delete": false, "file_type": 1, "original_file_name": "FJ007FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8ebfb499214d6c8e3e4e77f072f431.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8ebfb499214d6c8e3e4e77f072f431.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e8ebfb499214d6c8e3e4e77f072f431.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e8ebfb499214d6c8e3e4e77f072f431.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e8ebfb499214d6c8e3e4e77f072f431.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j_iiSnRqrtyO27S2GSpvpjRxr_g=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.374862+00 2025-12-09 10:15:15.374868+00 12151 8177FWE#黄净色 SPMX-20240815307333 \N \N \N 1 \N [{"file_id": "357e2afa-7791-4e7f-be64-921081ad0df1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc08f11c31ae4d2394817d26d79c0ad0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc08f11c31ae4d2394817d26d79c0ad0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc08f11c31ae4d2394817d26d79c0ad0.jpg", "file_size": 7247, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc08f11c31ae4d2394817d26d79c0ad0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc08f11c31ae4d2394817d26d79c0ad0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc08f11c31ae4d2394817d26d79c0ad0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc08f11c31ae4d2394817d26d79c0ad0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc08f11c31ae4d2394817d26d79c0ad0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOYIvzNrjD7_s7Rtcu0JkznEFoU=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.37695+00 2025-12-09 10:15:15.376955+00 12152 LJH0100-3#白色 SPMX-20240815307334 \N \N \N 1 \N [{"file_id": "e6c2683f-b945-46a6-ad53-5b4e1313157b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd99111d49741239661e1bf938c9a04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd99111d49741239661e1bf938c9a04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd99111d49741239661e1bf938c9a04.jpg", "file_size": 65055, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-3#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd99111d49741239661e1bf938c9a04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd99111d49741239661e1bf938c9a04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd99111d49741239661e1bf938c9a04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd99111d49741239661e1bf938c9a04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd99111d49741239661e1bf938c9a04.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PusH-_3DkBPaUkP9uUNAAyduyls=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.378997+00 2025-12-09 10:15:15.379002+00 12153 23-2119#A11-4XL SPMX-20240815307341 \N \N \N 1 \N [{"file_id": "352197ec-7de7-43cc-891c-7ae56fd023e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f0a98c87bd64c908e8ef84a59e8b5c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f0a98c87bd64c908e8ef84a59e8b5c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f0a98c87bd64c908e8ef84a59e8b5c0.jpg", "file_size": 16084, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a98c87bd64c908e8ef84a59e8b5c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a98c87bd64c908e8ef84a59e8b5c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a98c87bd64c908e8ef84a59e8b5c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f0a98c87bd64c908e8ef84a59e8b5c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f0a98c87bd64c908e8ef84a59e8b5c0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQJfqsNCn-inI4nbSO_qqfJ_uko=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.381405+00 2025-12-09 10:15:15.381411+00 12154 LZ1300#背心款1号色 SPMX-20240815307344 \N \N \N 1 \N [{"file_id": "ef07ebb1-30a7-4450-8c33-f007ce0ea555", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87c38b278d494854a9038abaf55bc5d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87c38b278d494854a9038abaf55bc5d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87c38b278d494854a9038abaf55bc5d9.jpg", "file_size": 17166, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c38b278d494854a9038abaf55bc5d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c38b278d494854a9038abaf55bc5d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c38b278d494854a9038abaf55bc5d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87c38b278d494854a9038abaf55bc5d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87c38b278d494854a9038abaf55bc5d9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxHQgY_ILdiwWlt3qQaagw20u40=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.383849+00 2025-12-09 10:15:15.383855+00 12155 C452#玫红 SPMX-20240815307342 \N \N \N 1 \N [{"file_id": "cca57266-8ca2-48cc-986f-a7f726cf5331", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a584f2dde2824d1188446e2dc46c4f11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a584f2dde2824d1188446e2dc46c4f11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a584f2dde2824d1188446e2dc46c4f11.jpg", "file_size": 52445, "is_delete": false, "file_type": 1, "original_file_name": "C452#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a584f2dde2824d1188446e2dc46c4f11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a584f2dde2824d1188446e2dc46c4f11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a584f2dde2824d1188446e2dc46c4f11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a584f2dde2824d1188446e2dc46c4f11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a584f2dde2824d1188446e2dc46c4f11.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYF2RgNGTJ-2mxxLP84d-qJ2I_Q=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.386085+00 2025-12-09 10:15:15.386089+00 12156 1114FWE#绿底白小圆点 SPMX-20240815307340 \N \N \N 1 \N [{"file_id": "15f6607c-81df-481a-991e-a3f5af5bf12d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e2444caee7e4649bb8f74f1361deaba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e2444caee7e4649bb8f74f1361deaba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e2444caee7e4649bb8f74f1361deaba.jpg", "file_size": 10406, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#绿底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2444caee7e4649bb8f74f1361deaba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2444caee7e4649bb8f74f1361deaba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2444caee7e4649bb8f74f1361deaba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e2444caee7e4649bb8f74f1361deaba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e2444caee7e4649bb8f74f1361deaba.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6VGXmc5ddubtnyjBOSd0VWfH2A=", "createTime": "2024-08-15 14:53:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.388022+00 2025-12-09 10:15:15.388027+00 12157 DL31063#前幅彩兰 SPMX-20240815307345 \N \N \N 1 \N [{"file_id": "5c104613-02d3-47fc-ba03-1d66ac34a52f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f282d4a9184707a2d974e2c70df740.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f282d4a9184707a2d974e2c70df740.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f282d4a9184707a2d974e2c70df740.jpg", "file_size": 15749, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f282d4a9184707a2d974e2c70df740.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f282d4a9184707a2d974e2c70df740.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f282d4a9184707a2d974e2c70df740.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f282d4a9184707a2d974e2c70df740.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f282d4a9184707a2d974e2c70df740.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qDMhwk3D4pA36HSx7L6Dwc1aN7c=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.390056+00 2025-12-09 10:15:15.390061+00 12158 8177FWE#黄色 SPMX-20240815307343 \N \N \N 1 \N [{"file_id": "0177bbbc-d263-487e-8085-e485eb7e6503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a008cb8f076a4ce2b7283ac6e927c915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a008cb8f076a4ce2b7283ac6e927c915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a008cb8f076a4ce2b7283ac6e927c915.jpg", "file_size": 17547, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a008cb8f076a4ce2b7283ac6e927c915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a008cb8f076a4ce2b7283ac6e927c915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a008cb8f076a4ce2b7283ac6e927c915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a008cb8f076a4ce2b7283ac6e927c915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a008cb8f076a4ce2b7283ac6e927c915.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztKNORar88V9qdG5Z2lQVNWXYyo=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.391981+00 2025-12-09 10:15:15.391985+00 12159 DL31063#前幅枣红 SPMX-20240815307356 \N \N \N 1 \N [{"file_id": "27c0b09b-c129-48b5-9221-cb1ab3f891b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e9f041bc88a4527846283946917a440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e9f041bc88a4527846283946917a440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e9f041bc88a4527846283946917a440.jpg", "file_size": 15772, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e9f041bc88a4527846283946917a440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e9f041bc88a4527846283946917a440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e9f041bc88a4527846283946917a440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e9f041bc88a4527846283946917a440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e9f041bc88a4527846283946917a440.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phDiMNBRndLv_dGd2H4xhBYs6ZQ=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.393883+00 2025-12-09 10:15:15.393888+00 12160 JTSS336FW#VS-D3 SPMX-20240815307348 \N \N \N 1 \N [{"file_id": "5ac1e537-6f26-40f5-9d9e-498c84c6eccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b63cec69fb414a2ebb7c0a409d25e143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b63cec69fb414a2ebb7c0a409d25e143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b63cec69fb414a2ebb7c0a409d25e143.jpg", "file_size": 10487, "is_delete": false, "file_type": 1, "original_file_name": "JTSS336FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63cec69fb414a2ebb7c0a409d25e143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63cec69fb414a2ebb7c0a409d25e143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b63cec69fb414a2ebb7c0a409d25e143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b63cec69fb414a2ebb7c0a409d25e143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b63cec69fb414a2ebb7c0a409d25e143.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oh9ZPGZN-uxnMxcyHd0GBs5FQfI=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.395746+00 2025-12-09 10:15:15.39575+00 12161 LZ1300#背心款2号色 SPMX-20240815307354 \N \N \N 1 \N [{"file_id": "8be58af5-1239-4042-8ac9-af3134b96a84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63e719c63e634ca2b1b43f9d2c2c9b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63e719c63e634ca2b1b43f9d2c2c9b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63e719c63e634ca2b1b43f9d2c2c9b9e.jpg", "file_size": 17011, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e719c63e634ca2b1b43f9d2c2c9b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e719c63e634ca2b1b43f9d2c2c9b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e719c63e634ca2b1b43f9d2c2c9b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63e719c63e634ca2b1b43f9d2c2c9b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63e719c63e634ca2b1b43f9d2c2c9b9e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQ6fkj-Ysdj3hTUJU7SSu5BOsw8=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.397943+00 2025-12-09 10:15:15.397948+00 12162 HT197FW#VS-D3袖子 SPMX-20240815307346 \N \N \N 1 \N [{"file_id": "2f64283f-d085-47a1-a936-f2524db89fec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab9f5ff086714007a07a54af602b19fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab9f5ff086714007a07a54af602b19fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab9f5ff086714007a07a54af602b19fe.jpg", "file_size": 7979, "is_delete": false, "file_type": 1, "original_file_name": "HT197FW#VS-D3袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9f5ff086714007a07a54af602b19fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9f5ff086714007a07a54af602b19fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab9f5ff086714007a07a54af602b19fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab9f5ff086714007a07a54af602b19fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab9f5ff086714007a07a54af602b19fe.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4M-9qyGx2ATu16sa8bbV1lmD2g=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.400102+00 2025-12-09 10:15:15.400106+00 12163 23-2119#A11-领子3XL SPMX-20240815307351 \N \N \N 1 \N [{"file_id": "38f1f750-1c77-4cd8-98ce-9761e7cd8f54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef366b52b60940328f0f53b1aca4732b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef366b52b60940328f0f53b1aca4732b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef366b52b60940328f0f53b1aca4732b.jpg", "file_size": 11476, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef366b52b60940328f0f53b1aca4732b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef366b52b60940328f0f53b1aca4732b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef366b52b60940328f0f53b1aca4732b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef366b52b60940328f0f53b1aca4732b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef366b52b60940328f0f53b1aca4732b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iy0AP-DSWPAvL1ytSsseIJzAylU=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.402033+00 2025-12-09 10:15:15.402038+00 12164 FJ008#3XL SPMX-20240815307350 \N \N \N 1 \N [{"file_id": "0820c7c7-7d37-4e52-b4d3-e73b811d87dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7ac7b642ebc4d978244087bea1338f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7ac7b642ebc4d978244087bea1338f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7ac7b642ebc4d978244087bea1338f6.jpg", "file_size": 22170, "is_delete": false, "file_type": 1, "original_file_name": "FJ008#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ac7b642ebc4d978244087bea1338f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ac7b642ebc4d978244087bea1338f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ac7b642ebc4d978244087bea1338f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7ac7b642ebc4d978244087bea1338f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7ac7b642ebc4d978244087bea1338f6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mxq9NP2Xjh5hkmFRD0EOWECf0_k=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.403896+00 2025-12-09 10:15:15.403901+00 12165 8177FWE#黑净色 SPMX-20240815307353 \N \N \N 1 \N [{"file_id": "a7f5d75e-10cc-4b41-bcbb-fad055912d83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddbcb71229bd4f0fa18d003688d02724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddbcb71229bd4f0fa18d003688d02724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddbcb71229bd4f0fa18d003688d02724.jpg", "file_size": 7108, "is_delete": false, "file_type": 1, "original_file_name": "8177FWE#黑净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbcb71229bd4f0fa18d003688d02724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbcb71229bd4f0fa18d003688d02724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbcb71229bd4f0fa18d003688d02724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddbcb71229bd4f0fa18d003688d02724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddbcb71229bd4f0fa18d003688d02724.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7ofaV0AJ-meTUS2gBhkYX8KLVE=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.406052+00 2025-12-09 10:15:15.406057+00 12166 0003-A8#蓝色 SPMX-20240815307358 \N \N \N 1 \N [{"file_id": "8b13843e-84fd-4622-9f1b-fbaa8e9bd56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dad2487499442669803d675b40c5487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dad2487499442669803d675b40c5487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dad2487499442669803d675b40c5487.jpg", "file_size": 12877, "is_delete": false, "file_type": 1, "original_file_name": "0003-A8#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dad2487499442669803d675b40c5487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dad2487499442669803d675b40c5487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dad2487499442669803d675b40c5487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dad2487499442669803d675b40c5487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dad2487499442669803d675b40c5487.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJETn_3KHIFJlFU3LcCjvVN4Df0=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.407929+00 2025-12-09 10:15:15.407934+00 12167 0003-A8#绿叶子 SPMX-20240815307347 \N \N \N 1 \N [{"file_id": "07c1cb8b-dd8b-406a-9b7e-b55dbb814a47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "529cf92080d84054841888e15046224b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "529cf92080d84054841888e15046224b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "529cf92080d84054841888e15046224b.jpg", "file_size": 14561, "is_delete": false, "file_type": 1, "original_file_name": "0003-A8#绿叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529cf92080d84054841888e15046224b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529cf92080d84054841888e15046224b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529cf92080d84054841888e15046224b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/529cf92080d84054841888e15046224b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/529cf92080d84054841888e15046224b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EGw6ZC1m94IgW49fejhX3Mvb-zk=", "createTime": "2024-08-15 14:53:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.410016+00 2025-12-09 10:15:15.410021+00 12168 LJH0100-3#红色 SPMX-20240815307352 \N \N \N 1 \N [{"file_id": "d1ca913b-286a-40f3-a8d9-a4e02845b23a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91d76fbecdf94be38c064ec49fca4e38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91d76fbecdf94be38c064ec49fca4e38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91d76fbecdf94be38c064ec49fca4e38.jpg", "file_size": 72183, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-3#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d76fbecdf94be38c064ec49fca4e38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d76fbecdf94be38c064ec49fca4e38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d76fbecdf94be38c064ec49fca4e38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91d76fbecdf94be38c064ec49fca4e38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91d76fbecdf94be38c064ec49fca4e38.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jTFME3CHCkRQhc1U98uJhda6Yw=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.411881+00 2025-12-09 10:15:15.411886+00 12169 1114FWE#蓝底白大圆点 SPMX-20240815307349 \N \N \N 1 \N [{"file_id": "d79f2bdf-e9d6-4ea8-b9c8-be0f09f8c0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f0d72092463491086fb18d29a26382d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f0d72092463491086fb18d29a26382d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f0d72092463491086fb18d29a26382d.jpg", "file_size": 10081, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#蓝底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0d72092463491086fb18d29a26382d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0d72092463491086fb18d29a26382d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0d72092463491086fb18d29a26382d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f0d72092463491086fb18d29a26382d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f0d72092463491086fb18d29a26382d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxjtrM3xya6_49EVWPP_wSprVDc=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.413982+00 2025-12-09 10:15:15.413987+00 12170 C452#绿色 SPMX-20240815307355 \N \N \N 1 \N [{"file_id": "5b453227-6519-48c2-91bc-421f93490ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aadc90dbc2d460681fd5802fe1c4275.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aadc90dbc2d460681fd5802fe1c4275.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aadc90dbc2d460681fd5802fe1c4275.jpg", "file_size": 53977, "is_delete": false, "file_type": 1, "original_file_name": "C452#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadc90dbc2d460681fd5802fe1c4275.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadc90dbc2d460681fd5802fe1c4275.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadc90dbc2d460681fd5802fe1c4275.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aadc90dbc2d460681fd5802fe1c4275.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aadc90dbc2d460681fd5802fe1c4275.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUAtfxltj_lyZIaRdED-dXRvM3k=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.416073+00 2025-12-09 10:15:15.416077+00 12171 JTSS337FW#VS-D3 SPMX-20240815307357 \N \N \N 1 \N [{"file_id": "c9f2b3f7-b4c7-427d-88b6-8053d8cdf7db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1563114482384d3aba63b9461189fff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1563114482384d3aba63b9461189fff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1563114482384d3aba63b9461189fff9.jpg", "file_size": 15173, "is_delete": false, "file_type": 1, "original_file_name": "JTSS337FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1563114482384d3aba63b9461189fff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1563114482384d3aba63b9461189fff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1563114482384d3aba63b9461189fff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1563114482384d3aba63b9461189fff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1563114482384d3aba63b9461189fff9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4fX1589-B2mPP3DLb7QATVBL1_M=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.418089+00 2025-12-09 10:15:15.418095+00 12172 1114FWE#蓝底白小圆点 SPMX-20240815307359 \N \N \N 1 \N [{"file_id": "7ab6e440-e4bb-4aeb-9494-f31509bf444b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2418dbdd77742dfa0a0522a97cadb02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2418dbdd77742dfa0a0522a97cadb02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2418dbdd77742dfa0a0522a97cadb02.jpg", "file_size": 14300, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#蓝底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2418dbdd77742dfa0a0522a97cadb02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2418dbdd77742dfa0a0522a97cadb02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2418dbdd77742dfa0a0522a97cadb02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2418dbdd77742dfa0a0522a97cadb02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2418dbdd77742dfa0a0522a97cadb02.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pv3sBUh-WQH570vzJioXIMZ3gXQ=", "createTime": "2024-08-15 14:53:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.420314+00 2025-12-09 10:15:15.420319+00 12173 23-2119#A12-3XL SPMX-20240815307371 \N \N \N 1 \N [{"file_id": "dd2cb22d-186d-44f6-9104-6494491edcec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5bc3cd12dd84ef6add7633c37a96ac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5bc3cd12dd84ef6add7633c37a96ac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5bc3cd12dd84ef6add7633c37a96ac7.jpg", "file_size": 18228, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bc3cd12dd84ef6add7633c37a96ac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bc3cd12dd84ef6add7633c37a96ac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5bc3cd12dd84ef6add7633c37a96ac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5bc3cd12dd84ef6add7633c37a96ac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5bc3cd12dd84ef6add7633c37a96ac7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7s02yMkfj59DxMEWXfuEsT6488=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.422229+00 2025-12-09 10:15:15.422234+00 12174 1114FWE#黑底白小圆点 SPMX-20240815307374 \N \N \N 1 \N [{"file_id": "96d8f64d-4fdb-448d-b0c1-b2f7ad342c0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d80d315dc43a45c0a990a81de13de505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d80d315dc43a45c0a990a81de13de505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d80d315dc43a45c0a990a81de13de505.jpg", "file_size": 17455, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#黑底白小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80d315dc43a45c0a990a81de13de505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80d315dc43a45c0a990a81de13de505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80d315dc43a45c0a990a81de13de505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d80d315dc43a45c0a990a81de13de505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d80d315dc43a45c0a990a81de13de505.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkiq_YHOKJ8CdMVR0erTRtGnB98=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.42412+00 2025-12-09 10:15:15.424125+00 12175 FJ008#M SPMX-20240815307361 \N \N \N 1 \N [{"file_id": "d367dfd0-9ee9-4f38-86b8-b91c3833e164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41bfb8d68c4b408a97ae0e9fe0293dd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41bfb8d68c4b408a97ae0e9fe0293dd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41bfb8d68c4b408a97ae0e9fe0293dd3.jpg", "file_size": 24677, "is_delete": false, "file_type": 1, "original_file_name": "FJ008#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bfb8d68c4b408a97ae0e9fe0293dd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bfb8d68c4b408a97ae0e9fe0293dd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bfb8d68c4b408a97ae0e9fe0293dd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41bfb8d68c4b408a97ae0e9fe0293dd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41bfb8d68c4b408a97ae0e9fe0293dd3.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsrWWeGPI4VEyhH7VlJWaa-c_yw=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.426377+00 2025-12-09 10:15:15.426383+00 12176 8179#原版色 SPMX-20240815307367 \N \N \N 1 \N [{"file_id": "1d2de39b-7a49-48ec-a941-97fd84c6add7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0f535d6807946c1a03c92ef9a0a3697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0f535d6807946c1a03c92ef9a0a3697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0f535d6807946c1a03c92ef9a0a3697.jpg", "file_size": 14993, "is_delete": false, "file_type": 1, "original_file_name": "8179#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f535d6807946c1a03c92ef9a0a3697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f535d6807946c1a03c92ef9a0a3697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0f535d6807946c1a03c92ef9a0a3697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0f535d6807946c1a03c92ef9a0a3697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0f535d6807946c1a03c92ef9a0a3697.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V1LHCx6pF4j2ARlEuwj3zECt5vk=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.428388+00 2025-12-09 10:15:15.428393+00 12177 C452#黑色 SPMX-20240815307369 \N \N \N 1 \N [{"file_id": "aa2481e6-2c3f-4ddb-94c1-dc62e16a291a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b2e8c88cec64a119792602d6f0fde89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b2e8c88cec64a119792602d6f0fde89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b2e8c88cec64a119792602d6f0fde89.jpg", "file_size": 56863, "is_delete": false, "file_type": 1, "original_file_name": "C452#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2e8c88cec64a119792602d6f0fde89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2e8c88cec64a119792602d6f0fde89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2e8c88cec64a119792602d6f0fde89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b2e8c88cec64a119792602d6f0fde89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b2e8c88cec64a119792602d6f0fde89.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDZ8BdwES5wK-rYHW6sHbZa8pO8=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.43036+00 2025-12-09 10:15:15.430365+00 12178 1114FWE#黑底白大圆点 SPMX-20240815307363 \N \N \N 1 \N [{"file_id": "03b401d8-65b5-4e80-8100-8b2295197b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26689158ccd94c75ae8f2e26e92b3666.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26689158ccd94c75ae8f2e26e92b3666.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26689158ccd94c75ae8f2e26e92b3666.jpg", "file_size": 10796, "is_delete": false, "file_type": 1, "original_file_name": "1114FWE#黑底白大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26689158ccd94c75ae8f2e26e92b3666.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26689158ccd94c75ae8f2e26e92b3666.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26689158ccd94c75ae8f2e26e92b3666.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26689158ccd94c75ae8f2e26e92b3666.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26689158ccd94c75ae8f2e26e92b3666.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQwWIul3VgfCOGF7kC6DFBc9Mdk=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.432279+00 2025-12-09 10:15:15.432284+00 12179 JTSS338FW#VS-D3 SPMX-20240815307370 \N \N \N 1 \N [{"file_id": "c2ab2e22-edc1-494a-963a-2d18a1fae15f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f565fd2b1174677b593a15845fc19ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f565fd2b1174677b593a15845fc19ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f565fd2b1174677b593a15845fc19ac.jpg", "file_size": 9349, "is_delete": false, "file_type": 1, "original_file_name": "JTSS338FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f565fd2b1174677b593a15845fc19ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f565fd2b1174677b593a15845fc19ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f565fd2b1174677b593a15845fc19ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f565fd2b1174677b593a15845fc19ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f565fd2b1174677b593a15845fc19ac.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WsGONWdQB7zfKzgWE-Tov-Zmyk=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.434203+00 2025-12-09 10:15:15.434208+00 12180 HT2017#宝蓝 SPMX-20240815307372 \N \N \N 1 \N [{"file_id": "17071c9d-1f39-4ffe-b2be-ddc93ddf3ab1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94e73357220e4553b73db1fdc47a2ab4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94e73357220e4553b73db1fdc47a2ab4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94e73357220e4553b73db1fdc47a2ab4.jpg", "file_size": 15548, "is_delete": false, "file_type": 1, "original_file_name": "HT2017#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94e73357220e4553b73db1fdc47a2ab4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94e73357220e4553b73db1fdc47a2ab4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94e73357220e4553b73db1fdc47a2ab4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94e73357220e4553b73db1fdc47a2ab4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94e73357220e4553b73db1fdc47a2ab4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pidtiZCZMPIeMm5dBYKwpcerOb0=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.436197+00 2025-12-09 10:15:15.436202+00 12181 HT2017#墨绿 SPMX-20240815307362 \N \N \N 1 \N [{"file_id": "d8cf6f6f-a7de-44b0-9086-7bd351a5a203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e33dec2bfd04eb4953027eb592e00ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e33dec2bfd04eb4953027eb592e00ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e33dec2bfd04eb4953027eb592e00ba.jpg", "file_size": 15585, "is_delete": false, "file_type": 1, "original_file_name": "HT2017#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e33dec2bfd04eb4953027eb592e00ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e33dec2bfd04eb4953027eb592e00ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e33dec2bfd04eb4953027eb592e00ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e33dec2bfd04eb4953027eb592e00ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e33dec2bfd04eb4953027eb592e00ba.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KRyIb-9RZ3wVDBQpuMcYIe9BjY=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.43838+00 2025-12-09 10:15:15.438385+00 12182 23-2119#A11-领子4XL SPMX-20240815307360 \N \N \N 1 \N [{"file_id": "f1edfd01-3acf-47c2-b50a-b1c806b312e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f887fb02741649a4806d78805f7ddc67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f887fb02741649a4806d78805f7ddc67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f887fb02741649a4806d78805f7ddc67.jpg", "file_size": 11938, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f887fb02741649a4806d78805f7ddc67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f887fb02741649a4806d78805f7ddc67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f887fb02741649a4806d78805f7ddc67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f887fb02741649a4806d78805f7ddc67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f887fb02741649a4806d78805f7ddc67.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dwbSFPFxLCfxS2pd20zwthojzjo=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.44028+00 2025-12-09 10:15:15.440285+00 12183 LJH0100-3#绿色 SPMX-20240815307368 \N \N \N 1 \N [{"file_id": "355f44d5-aaae-45ce-b172-d36a1778815a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf72d811a93b4f119b41bd814465ff58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf72d811a93b4f119b41bd814465ff58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf72d811a93b4f119b41bd814465ff58.jpg", "file_size": 67552, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf72d811a93b4f119b41bd814465ff58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf72d811a93b4f119b41bd814465ff58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf72d811a93b4f119b41bd814465ff58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf72d811a93b4f119b41bd814465ff58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf72d811a93b4f119b41bd814465ff58.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyqy7Zt3NW6ZkdIxo4BIGw4-AXQ=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.442187+00 2025-12-09 10:15:15.442193+00 12184 FJ008#XL SPMX-20240815307373 \N \N \N 1 \N [{"file_id": "b7e81ac7-2c3b-4f0e-b54d-5b4ff9765b21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c876a8d613044441aa2aa79a07224b4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c876a8d613044441aa2aa79a07224b4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c876a8d613044441aa2aa79a07224b4f.jpg", "file_size": 23939, "is_delete": false, "file_type": 1, "original_file_name": "FJ008#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876a8d613044441aa2aa79a07224b4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876a8d613044441aa2aa79a07224b4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876a8d613044441aa2aa79a07224b4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c876a8d613044441aa2aa79a07224b4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c876a8d613044441aa2aa79a07224b4f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_GQuhBbjiuO85wmND9B1PQ7dmQ=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.444229+00 2025-12-09 10:15:15.444234+00 12185 LZ1300#背心款3号色 SPMX-20240815307366 \N \N \N 1 \N [{"file_id": "17d3785b-8eeb-4c6b-9493-a08be452564d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bafe1a516c2748298d527ae31b7d7853.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bafe1a516c2748298d527ae31b7d7853.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bafe1a516c2748298d527ae31b7d7853.jpg", "file_size": 16714, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bafe1a516c2748298d527ae31b7d7853.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bafe1a516c2748298d527ae31b7d7853.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bafe1a516c2748298d527ae31b7d7853.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bafe1a516c2748298d527ae31b7d7853.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bafe1a516c2748298d527ae31b7d7853.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLz5GEFKSf5QLklH3WXnj2KuuvU=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.446413+00 2025-12-09 10:15:15.446417+00 12186 0003-A9#绿叶子 SPMX-20240815307364 \N \N \N 1 \N [{"file_id": "824f68e7-c269-464d-8e68-4d8de317d5bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea432827d24e4f2f8bce79f86f258e69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea432827d24e4f2f8bce79f86f258e69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea432827d24e4f2f8bce79f86f258e69.jpg", "file_size": 16941, "is_delete": false, "file_type": 1, "original_file_name": "0003-A9#绿叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea432827d24e4f2f8bce79f86f258e69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea432827d24e4f2f8bce79f86f258e69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea432827d24e4f2f8bce79f86f258e69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea432827d24e4f2f8bce79f86f258e69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea432827d24e4f2f8bce79f86f258e69.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YUbQQyonTZl69ECyIG_uz-qWqg=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.44831+00 2025-12-09 10:15:15.448314+00 12187 DL31063#前幅水红 SPMX-20240815307365 \N \N \N 1 \N [{"file_id": "62f8149f-d65b-4ab3-b2fb-94bef6d9c360", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaa5e1d63a594becbb4047cb84bf849a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaa5e1d63a594becbb4047cb84bf849a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaa5e1d63a594becbb4047cb84bf849a.jpg", "file_size": 15764, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa5e1d63a594becbb4047cb84bf849a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa5e1d63a594becbb4047cb84bf849a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa5e1d63a594becbb4047cb84bf849a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaa5e1d63a594becbb4047cb84bf849a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaa5e1d63a594becbb4047cb84bf849a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0McyDd2labBX3h-DQYWFcU_fj8=", "createTime": "2024-08-15 14:53:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.450212+00 2025-12-09 10:15:15.450216+00 12188 JTSS339FW#VS-D3 SPMX-20240815307380 \N \N \N 1 \N [{"file_id": "c213455e-12d0-4221-9376-1a705233c1a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ad414134aa1414c91fafedcc4b3f3c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ad414134aa1414c91fafedcc4b3f3c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ad414134aa1414c91fafedcc4b3f3c2.jpg", "file_size": 10530, "is_delete": false, "file_type": 1, "original_file_name": "JTSS339FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad414134aa1414c91fafedcc4b3f3c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad414134aa1414c91fafedcc4b3f3c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad414134aa1414c91fafedcc4b3f3c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ad414134aa1414c91fafedcc4b3f3c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ad414134aa1414c91fafedcc4b3f3c2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:39nMmgerc9SVi6UI3Scjzm1sizY=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.452257+00 2025-12-09 10:15:15.452262+00 12189 23-2119#A12-4XL SPMX-20240815307381 \N \N \N 1 \N [{"file_id": "1bea513f-83ad-441f-8233-04e5d44e5a58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcbba3fd55b548c2a7ac76e4b717ced1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcbba3fd55b548c2a7ac76e4b717ced1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcbba3fd55b548c2a7ac76e4b717ced1.jpg", "file_size": 17170, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba3fd55b548c2a7ac76e4b717ced1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba3fd55b548c2a7ac76e4b717ced1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba3fd55b548c2a7ac76e4b717ced1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcbba3fd55b548c2a7ac76e4b717ced1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcbba3fd55b548c2a7ac76e4b717ced1.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tS2Pp_-MOD0pNBIO8Bnj7rm26u4=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.454422+00 2025-12-09 10:15:15.454427+00 12190 HT2017#红色 SPMX-20240815307382 \N \N \N 1 \N [{"file_id": "e9bd1a70-5a0f-45d5-9b7e-e177f072f17b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91549e2ca40240b38f624f5a79586c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91549e2ca40240b38f624f5a79586c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91549e2ca40240b38f624f5a79586c5a.jpg", "file_size": 14705, "is_delete": false, "file_type": 1, "original_file_name": "HT2017#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91549e2ca40240b38f624f5a79586c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91549e2ca40240b38f624f5a79586c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91549e2ca40240b38f624f5a79586c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91549e2ca40240b38f624f5a79586c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91549e2ca40240b38f624f5a79586c5a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Un6Z0efAvUjvLCYTORSRhFFTFs=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.456321+00 2025-12-09 10:15:15.456327+00 12191 DL31063#前幅蓝绿 SPMX-20240815307385 \N \N \N 1 \N [{"file_id": "9fd5e672-51b2-497c-bede-a179e276b5b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e4a3996d891458fb50c535f70d1d495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e4a3996d891458fb50c535f70d1d495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e4a3996d891458fb50c535f70d1d495.jpg", "file_size": 15633, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4a3996d891458fb50c535f70d1d495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4a3996d891458fb50c535f70d1d495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4a3996d891458fb50c535f70d1d495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e4a3996d891458fb50c535f70d1d495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e4a3996d891458fb50c535f70d1d495.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Qx6EZmvRk-hgv0xVpeeAuMn_kQ=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.458451+00 2025-12-09 10:15:15.458456+00 12192 1114FWF#下摆花 SPMX-20240815307383 \N \N \N 1 \N [{"file_id": "3dd08d05-33c5-4bfd-8c30-32948cc6f67c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "086f27c100fa4b81919c1730d37d27df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "086f27c100fa4b81919c1730d37d27df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "086f27c100fa4b81919c1730d37d27df.jpg", "file_size": 10913, "is_delete": false, "file_type": 1, "original_file_name": "1114FWF#下摆花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f27c100fa4b81919c1730d37d27df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f27c100fa4b81919c1730d37d27df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f27c100fa4b81919c1730d37d27df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/086f27c100fa4b81919c1730d37d27df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/086f27c100fa4b81919c1730d37d27df.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaTtfTSQjEOk2tQ40uBBXRFfQa0=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.460371+00 2025-12-09 10:15:15.460375+00 12193 LZ1300#背心款4号】色 SPMX-20240815307376 \N \N \N 1 \N [{"file_id": "d1be4dc9-eaa4-4c9b-87b3-a35e0fecbacf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb9453434b504b639828ea1625f23009.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb9453434b504b639828ea1625f23009.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb9453434b504b639828ea1625f23009.jpg", "file_size": 20747, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款4号】色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb9453434b504b639828ea1625f23009.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb9453434b504b639828ea1625f23009.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb9453434b504b639828ea1625f23009.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb9453434b504b639828ea1625f23009.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb9453434b504b639828ea1625f23009.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:28zHcUg3ilNDAT9N04ajojpwBTo=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.462295+00 2025-12-09 10:15:15.4623+00 12194 JTSS340FW#VS-D3 SPMX-20240815307390 \N \N \N 1 \N [{"file_id": "ea008d55-278c-42ed-a5b2-82c6e465253d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02fe3b540c1945a0adab7273535be556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02fe3b540c1945a0adab7273535be556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02fe3b540c1945a0adab7273535be556.jpg", "file_size": 10607, "is_delete": false, "file_type": 1, "original_file_name": "JTSS340FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02fe3b540c1945a0adab7273535be556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02fe3b540c1945a0adab7273535be556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02fe3b540c1945a0adab7273535be556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02fe3b540c1945a0adab7273535be556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02fe3b540c1945a0adab7273535be556.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RD_KWkSXGO2s6Dq_E6kSTzsHHaE=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.464398+00 2025-12-09 10:15:15.464402+00 12195 C453#兰色 SPMX-20240815307379 \N \N \N 1 \N [{"file_id": "53074236-96e9-4dc1-99a5-2dff68ca5c5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372919be08ae43d3890d7ec5ca5debef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372919be08ae43d3890d7ec5ca5debef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372919be08ae43d3890d7ec5ca5debef.jpg", "file_size": 67373, "is_delete": false, "file_type": 1, "original_file_name": "C453#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372919be08ae43d3890d7ec5ca5debef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372919be08ae43d3890d7ec5ca5debef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372919be08ae43d3890d7ec5ca5debef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372919be08ae43d3890d7ec5ca5debef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372919be08ae43d3890d7ec5ca5debef.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OQtGIsqrc-OUBDAgt4_M0GdDik=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.466314+00 2025-12-09 10:15:15.466319+00 12196 LZ1300#背心款4号色 SPMX-20240815307386 \N \N \N 1 \N [{"file_id": "aa9edc09-0104-4d0a-8ac5-1edd65362186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a1c441d20a943a09180f2f5eab981ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a1c441d20a943a09180f2f5eab981ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a1c441d20a943a09180f2f5eab981ae.jpg", "file_size": 17158, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c441d20a943a09180f2f5eab981ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c441d20a943a09180f2f5eab981ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1c441d20a943a09180f2f5eab981ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a1c441d20a943a09180f2f5eab981ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a1c441d20a943a09180f2f5eab981ae.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSqT9hnzOzVs5p1b6zW_bdl8ed4=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.468567+00 2025-12-09 10:15:15.468572+00 12197 DL31063#前幅玫红 SPMX-20240815307375 \N \N \N 1 \N [{"file_id": "6e25bfcc-fcff-4a94-9f6f-2bea83635e54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcb0c73d04b843c38292f82be430ac5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcb0c73d04b843c38292f82be430ac5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcb0c73d04b843c38292f82be430ac5a.jpg", "file_size": 15672, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcb0c73d04b843c38292f82be430ac5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcb0c73d04b843c38292f82be430ac5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcb0c73d04b843c38292f82be430ac5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcb0c73d04b843c38292f82be430ac5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcb0c73d04b843c38292f82be430ac5a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcICywwKxpcneRJrevZ8MLdQryM=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.470527+00 2025-12-09 10:15:15.470532+00 12198 8179#紫色 SPMX-20240815307389 \N \N \N 1 \N [{"file_id": "fa783025-9830-4ddd-9031-8a2228a6f200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f0a7fcfc714121bab39a7767f1f1e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f0a7fcfc714121bab39a7767f1f1e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f0a7fcfc714121bab39a7767f1f1e6.jpg", "file_size": 14012, "is_delete": false, "file_type": 1, "original_file_name": "8179#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f0a7fcfc714121bab39a7767f1f1e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f0a7fcfc714121bab39a7767f1f1e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f0a7fcfc714121bab39a7767f1f1e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f0a7fcfc714121bab39a7767f1f1e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f0a7fcfc714121bab39a7767f1f1e6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3KBzo5MZ6dczn6Kygv3oEg5Ir0=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.472436+00 2025-12-09 10:15:15.472441+00 12199 000387#长袖L SPMX-20240815307388 \N \N \N 1 \N [{"file_id": "8fb472c7-d78e-483d-8fac-1a646e3df812", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ea22645f924bd580f83fe3514b9406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ea22645f924bd580f83fe3514b9406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ea22645f924bd580f83fe3514b9406.jpg", "file_size": 16064, "is_delete": false, "file_type": 1, "original_file_name": "000387#长袖L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ea22645f924bd580f83fe3514b9406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ea22645f924bd580f83fe3514b9406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ea22645f924bd580f83fe3514b9406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ea22645f924bd580f83fe3514b9406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ea22645f924bd580f83fe3514b9406.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6EuaEk3nAZ8OkMs9R43rSsSBLE=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.474343+00 2025-12-09 10:15:15.474347+00 12200 LJH0100-3#黄色 SPMX-20240815307387 \N \N \N 1 \N [{"file_id": "d55a16a2-edd1-4651-a292-a0fffd715817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "516ccbc932bf4a0489d1339815265ff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "516ccbc932bf4a0489d1339815265ff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "516ccbc932bf4a0489d1339815265ff9.jpg", "file_size": 70632, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-3#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516ccbc932bf4a0489d1339815265ff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516ccbc932bf4a0489d1339815265ff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516ccbc932bf4a0489d1339815265ff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/516ccbc932bf4a0489d1339815265ff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/516ccbc932bf4a0489d1339815265ff9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xcrNFkHpnH0wAZ1soDp_tDdHkM=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.476436+00 2025-12-09 10:15:15.476441+00 12201 8179#玫红 SPMX-20240815307378 \N \N \N 1 \N [{"file_id": "adfe24dd-2df6-4f98-8088-7b1641c8406c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c54f8aa3206d46b7a8ac3b28203911ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c54f8aa3206d46b7a8ac3b28203911ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c54f8aa3206d46b7a8ac3b28203911ea.jpg", "file_size": 13426, "is_delete": false, "file_type": 1, "original_file_name": "8179#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54f8aa3206d46b7a8ac3b28203911ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54f8aa3206d46b7a8ac3b28203911ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54f8aa3206d46b7a8ac3b28203911ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c54f8aa3206d46b7a8ac3b28203911ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c54f8aa3206d46b7a8ac3b28203911ea.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lq3JGcQ9c06tUlKvAhL_DvM0xJY=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.47863+00 2025-12-09 10:15:15.478635+00 12202 FJ008FW#VS-D3 SPMX-20240815307384 \N \N \N 1 \N [{"file_id": "f6168a95-5a92-428b-bd1e-1fdf2638af9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd13eba667bc4281af54f80ddabfa10d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd13eba667bc4281af54f80ddabfa10d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd13eba667bc4281af54f80ddabfa10d.jpg", "file_size": 22843, "is_delete": false, "file_type": 1, "original_file_name": "FJ008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd13eba667bc4281af54f80ddabfa10d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd13eba667bc4281af54f80ddabfa10d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd13eba667bc4281af54f80ddabfa10d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd13eba667bc4281af54f80ddabfa10d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd13eba667bc4281af54f80ddabfa10d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R0Y9tt5WxwQHLZaZAKOuZoRHEaY=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.480688+00 2025-12-09 10:15:15.480693+00 12203 C453#原版色 SPMX-20240815307391 \N \N \N 1 \N [{"file_id": "13171cac-8940-4255-893e-698b506f9475", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62e4d3ec67414615921e6010cc9e9c89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62e4d3ec67414615921e6010cc9e9c89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62e4d3ec67414615921e6010cc9e9c89.jpg", "file_size": 80860, "is_delete": false, "file_type": 1, "original_file_name": "C453#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4d3ec67414615921e6010cc9e9c89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4d3ec67414615921e6010cc9e9c89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e4d3ec67414615921e6010cc9e9c89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62e4d3ec67414615921e6010cc9e9c89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62e4d3ec67414615921e6010cc9e9c89.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-j2um8x-oRQaTz4XZ7N9SQ-_HJM=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.482661+00 2025-12-09 10:15:15.482666+00 12204 000387#长袖2XL SPMX-20240815307377 \N \N \N 1 \N [{"file_id": "9e09f6b7-fd0e-4d7e-b873-07ec218689ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d1953d4cb2246a0a18eedd2096a7bdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d1953d4cb2246a0a18eedd2096a7bdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d1953d4cb2246a0a18eedd2096a7bdc.jpg", "file_size": 22535, "is_delete": false, "file_type": 1, "original_file_name": "000387#长袖2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d1953d4cb2246a0a18eedd2096a7bdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d1953d4cb2246a0a18eedd2096a7bdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d1953d4cb2246a0a18eedd2096a7bdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d1953d4cb2246a0a18eedd2096a7bdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d1953d4cb2246a0a18eedd2096a7bdc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EL-4Wb1nUvETE0L1JKgK778Qbc8=", "createTime": "2024-08-15 14:53:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.484588+00 2025-12-09 10:15:15.484593+00 12205 LJH0100-4#兰粉 SPMX-20240815307402 \N \N \N 1 \N [{"file_id": "a926a725-0def-4ea1-a18e-118369ae0d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b24f060cb5ff44c488d0db9d18b5f0ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b24f060cb5ff44c488d0db9d18b5f0ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b24f060cb5ff44c488d0db9d18b5f0ac.jpg", "file_size": 59844, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#兰粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f060cb5ff44c488d0db9d18b5f0ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f060cb5ff44c488d0db9d18b5f0ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b24f060cb5ff44c488d0db9d18b5f0ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b24f060cb5ff44c488d0db9d18b5f0ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b24f060cb5ff44c488d0db9d18b5f0ac.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EniZ_j1wqx-Bb7wE56fapVrBg8=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.494569+00 2025-12-09 10:15:15.494574+00 12210 HT2017#黄色 SPMX-20240815307392 \N \N \N 1 \N [{"file_id": "c8242449-cb31-489f-b8d1-119e1886f4fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8bf7fb0790b47769023a6083c910e52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8bf7fb0790b47769023a6083c910e52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8bf7fb0790b47769023a6083c910e52.jpg", "file_size": 13205, "is_delete": false, "file_type": 1, "original_file_name": "HT2017#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8bf7fb0790b47769023a6083c910e52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8bf7fb0790b47769023a6083c910e52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8bf7fb0790b47769023a6083c910e52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8bf7fb0790b47769023a6083c910e52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8bf7fb0790b47769023a6083c910e52.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6sunfB3IjGzYFjbdmzMW8WgDTow=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.486479+00 2025-12-09 10:15:15.486484+00 12206 23-2119#A12-领子4XL SPMX-20240815307405 \N \N \N 1 \N [{"file_id": "03cd1371-8bd8-4560-80ca-a6650f8f37e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6618947446a84c8c8633de4cf90306fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6618947446a84c8c8633de4cf90306fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6618947446a84c8c8633de4cf90306fc.jpg", "file_size": 11751, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6618947446a84c8c8633de4cf90306fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6618947446a84c8c8633de4cf90306fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6618947446a84c8c8633de4cf90306fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6618947446a84c8c8633de4cf90306fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6618947446a84c8c8633de4cf90306fc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LxbhYM2fgBPy7CvLRv-BZoeNM9A=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.488629+00 2025-12-09 10:15:15.488634+00 12207 DL31063#批布亮黄 SPMX-20240815307396 \N \N \N 1 \N [{"file_id": "e2aa4ff3-5635-40a9-8711-e4b094a55b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24cc215bed174aa3a5edc765a1d53850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24cc215bed174aa3a5edc765a1d53850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24cc215bed174aa3a5edc765a1d53850.jpg", "file_size": 17350, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cc215bed174aa3a5edc765a1d53850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cc215bed174aa3a5edc765a1d53850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cc215bed174aa3a5edc765a1d53850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24cc215bed174aa3a5edc765a1d53850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24cc215bed174aa3a5edc765a1d53850.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjzrAnLoB_enKGEQDJLqgMexGj4=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.490521+00 2025-12-09 10:15:15.490526+00 12208 FJ009# SPMX-20240815307403 \N \N \N 1 \N [{"file_id": "43078877-40b9-4322-b455-a64ac32c5424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9065ad1f065b4be5bbc8ba829376c755.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9065ad1f065b4be5bbc8ba829376c755.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9065ad1f065b4be5bbc8ba829376c755.jpg", "file_size": 20063, "is_delete": false, "file_type": 1, "original_file_name": "FJ009#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9065ad1f065b4be5bbc8ba829376c755.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9065ad1f065b4be5bbc8ba829376c755.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9065ad1f065b4be5bbc8ba829376c755.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9065ad1f065b4be5bbc8ba829376c755.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9065ad1f065b4be5bbc8ba829376c755.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYmRss3wO4Z1b9V-GLa31Ia2bgE=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.492673+00 2025-12-09 10:15:15.492678+00 12209 LZ1300#背心款5号色 SPMX-20240815307398 \N \N \N 1 \N [{"file_id": "6002697e-4db9-4515-83b3-65be5cc544ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d19feb60bd864ae19fd4288fb2089ce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d19feb60bd864ae19fd4288fb2089ce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d19feb60bd864ae19fd4288fb2089ce2.jpg", "file_size": 15965, "is_delete": false, "file_type": 1, "original_file_name": "LZ1300#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d19feb60bd864ae19fd4288fb2089ce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d19feb60bd864ae19fd4288fb2089ce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d19feb60bd864ae19fd4288fb2089ce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d19feb60bd864ae19fd4288fb2089ce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d19feb60bd864ae19fd4288fb2089ce2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-ZPLTJnukU914dhGV8Cmv_c6N8=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.496587+00 2025-12-09 10:15:15.496591+00 12211 HT2019#墨绿 SPMX-20240815307401 \N \N \N 1 \N [{"file_id": "a169f645-38c9-471f-8541-fea06f275de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg", "file_size": 12339, "is_delete": false, "file_type": 1, "original_file_name": "HT2019#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32ca265b36eb4c8a8b00dbf8f49e4b9e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATN44TzxaL1gj9f99PM3M5yaVTY=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.498566+00 2025-12-09 10:15:15.498571+00 12212 JTSS341FW#VS-D3 SPMX-20240815307400 \N \N \N 1 \N [{"file_id": "f7c0809a-e547-403a-a9dc-264dbdc471c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9636bc3f65aa4a1a9c060c0afb446cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9636bc3f65aa4a1a9c060c0afb446cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9636bc3f65aa4a1a9c060c0afb446cea.jpg", "file_size": 27706, "is_delete": false, "file_type": 1, "original_file_name": "JTSS341FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636bc3f65aa4a1a9c060c0afb446cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636bc3f65aa4a1a9c060c0afb446cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636bc3f65aa4a1a9c060c0afb446cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9636bc3f65aa4a1a9c060c0afb446cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9636bc3f65aa4a1a9c060c0afb446cea.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ey1UoftamGshFTuGlG6c7JdOg0=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.500729+00 2025-12-09 10:15:15.500734+00 12213 1114FWF#正身乱花 SPMX-20240815307395 \N \N \N 1 \N [{"file_id": "169829cc-f02e-493f-9f5b-91ed981479eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcbad1af40084f75909f3f2f85c679b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcbad1af40084f75909f3f2f85c679b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcbad1af40084f75909f3f2f85c679b8.jpg", "file_size": 25179, "is_delete": false, "file_type": 1, "original_file_name": "1114FWF#正身乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcbad1af40084f75909f3f2f85c679b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcbad1af40084f75909f3f2f85c679b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcbad1af40084f75909f3f2f85c679b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcbad1af40084f75909f3f2f85c679b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcbad1af40084f75909f3f2f85c679b8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1RvGFSMDQCxalHO94zPUHfdfZf8=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.502664+00 2025-12-09 10:15:15.502669+00 12214 23-2119#A12-领子3XL SPMX-20240815307393 \N \N \N 1 \N [{"file_id": "5ec2da79-cbba-4ddf-842b-10cd3b89b4e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94f59573d1274e788dc7d78013df0ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94f59573d1274e788dc7d78013df0ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94f59573d1274e788dc7d78013df0ffb.jpg", "file_size": 12026, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f59573d1274e788dc7d78013df0ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f59573d1274e788dc7d78013df0ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f59573d1274e788dc7d78013df0ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94f59573d1274e788dc7d78013df0ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94f59573d1274e788dc7d78013df0ffb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZbPgEoubXk9jWN7fyzi6MZ_g50=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.504784+00 2025-12-09 10:15:15.504789+00 12215 FJ008FWE#VS-D3 SPMX-20240815307394 \N \N \N 1 \N [{"file_id": "eb5f0e72-349b-488a-8b7b-47a3f2f258e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35812ac72f1e43a39f171df44454a13a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35812ac72f1e43a39f171df44454a13a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35812ac72f1e43a39f171df44454a13a.jpg", "file_size": 9977, "is_delete": false, "file_type": 1, "original_file_name": "FJ008FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35812ac72f1e43a39f171df44454a13a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35812ac72f1e43a39f171df44454a13a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35812ac72f1e43a39f171df44454a13a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35812ac72f1e43a39f171df44454a13a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35812ac72f1e43a39f171df44454a13a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jy8qb9cuoeQT7tTdu4kkHX2low4=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.506732+00 2025-12-09 10:15:15.506737+00 12216 C453#大白 SPMX-20240815307404 \N \N \N 1 \N [{"file_id": "bf6eb611-669f-4353-8495-ffbaca25e4aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8380c7ed446d4d4cac3b8e6c31d8db35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8380c7ed446d4d4cac3b8e6c31d8db35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8380c7ed446d4d4cac3b8e6c31d8db35.jpg", "file_size": 73110, "is_delete": false, "file_type": 1, "original_file_name": "C453#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8380c7ed446d4d4cac3b8e6c31d8db35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8380c7ed446d4d4cac3b8e6c31d8db35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8380c7ed446d4d4cac3b8e6c31d8db35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8380c7ed446d4d4cac3b8e6c31d8db35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8380c7ed446d4d4cac3b8e6c31d8db35.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9PsUZ8ksZY2-23J_j7YAg1ujlp0=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.508861+00 2025-12-09 10:15:15.508866+00 12217 000387#长袖M SPMX-20240815307397 \N \N \N 1 \N [{"file_id": "de69d453-0228-4bb2-9459-391c44527939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6de27bdfac42f5895d8c5907a8801e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6de27bdfac42f5895d8c5907a8801e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6de27bdfac42f5895d8c5907a8801e.jpg", "file_size": 16019, "is_delete": false, "file_type": 1, "original_file_name": "000387#长袖M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6de27bdfac42f5895d8c5907a8801e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6de27bdfac42f5895d8c5907a8801e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6de27bdfac42f5895d8c5907a8801e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6de27bdfac42f5895d8c5907a8801e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6de27bdfac42f5895d8c5907a8801e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0FDJtS5EXc4WO9YqmM0G_nJwkk=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.51077+00 2025-12-09 10:15:15.510775+00 12218 8179#绿色 SPMX-20240815307399 \N \N \N 1 \N [{"file_id": "8afa4caf-b594-4bbd-a7b8-63ed3bcd920d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db88a5b825334537bc3523f17db197ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db88a5b825334537bc3523f17db197ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db88a5b825334537bc3523f17db197ac.jpg", "file_size": 13448, "is_delete": false, "file_type": 1, "original_file_name": "8179#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db88a5b825334537bc3523f17db197ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db88a5b825334537bc3523f17db197ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db88a5b825334537bc3523f17db197ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db88a5b825334537bc3523f17db197ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db88a5b825334537bc3523f17db197ac.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dt9zDaMCKkXR4_Gp8c4GgQBIzxk=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.513191+00 2025-12-09 10:15:15.513199+00 12219 1114FWF#袖子花 SPMX-20240815307406 \N \N \N 1 \N [{"file_id": "9c9e6b8c-207b-4a90-bb8e-697dc1204b8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f65ca70e6f74e498d9aeb04a0abc40d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f65ca70e6f74e498d9aeb04a0abc40d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f65ca70e6f74e498d9aeb04a0abc40d.jpg", "file_size": 11049, "is_delete": false, "file_type": 1, "original_file_name": "1114FWF#袖子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f65ca70e6f74e498d9aeb04a0abc40d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f65ca70e6f74e498d9aeb04a0abc40d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f65ca70e6f74e498d9aeb04a0abc40d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f65ca70e6f74e498d9aeb04a0abc40d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f65ca70e6f74e498d9aeb04a0abc40d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ij7hH2C2Hud8o1wGXVI34wBhJk4=", "createTime": "2024-08-15 14:53:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.515988+00 2025-12-09 10:15:15.515995+00 12220 C453#橙色 SPMX-20240815307415 \N \N \N 1 \N [{"file_id": "f0b5b377-2f81-4889-a44f-e84c3326b4d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f541ecb60f364bf5ba3b54a3afc300a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f541ecb60f364bf5ba3b54a3afc300a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f541ecb60f364bf5ba3b54a3afc300a2.jpg", "file_size": 83923, "is_delete": false, "file_type": 1, "original_file_name": "C453#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f541ecb60f364bf5ba3b54a3afc300a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f541ecb60f364bf5ba3b54a3afc300a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f541ecb60f364bf5ba3b54a3afc300a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f541ecb60f364bf5ba3b54a3afc300a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f541ecb60f364bf5ba3b54a3afc300a2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4q983MmBrlUQaGwonHMGq-LR_04=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.518698+00 2025-12-09 10:15:15.51871+00 12221 1114FWF#领子花 SPMX-20240815307419 \N \N \N 1 \N [{"file_id": "a9266fbc-9371-49f6-826e-a34745683910", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eccc2d9884446de977292825307862f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eccc2d9884446de977292825307862f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eccc2d9884446de977292825307862f.jpg", "file_size": 9078, "is_delete": false, "file_type": 1, "original_file_name": "1114FWF#领子花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eccc2d9884446de977292825307862f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eccc2d9884446de977292825307862f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eccc2d9884446de977292825307862f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eccc2d9884446de977292825307862f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eccc2d9884446de977292825307862f.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kE364xco970bfmcxrebBu0wVPfc=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.52112+00 2025-12-09 10:15:15.521127+00 12222 8179#黑色 SPMX-20240815307410 \N \N \N 1 \N [{"file_id": "876aff98-4778-41b5-9d97-ca8c92e6b5ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb19b63dc199487eaf92c8d48950ea10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb19b63dc199487eaf92c8d48950ea10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb19b63dc199487eaf92c8d48950ea10.jpg", "file_size": 14767, "is_delete": false, "file_type": 1, "original_file_name": "8179#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb19b63dc199487eaf92c8d48950ea10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb19b63dc199487eaf92c8d48950ea10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb19b63dc199487eaf92c8d48950ea10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb19b63dc199487eaf92c8d48950ea10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb19b63dc199487eaf92c8d48950ea10.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrzus4RH6x_TJZx2fSTFEM7ANIw=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.523315+00 2025-12-09 10:15:15.523322+00 12223 FJ009FWE#VS-D3 SPMX-20240815307414 \N \N \N 1 \N [{"file_id": "aeaefd54-ca00-4b70-a2f1-bc7057dba243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1fcb8f357c14d2899382c68479b71a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1fcb8f357c14d2899382c68479b71a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1fcb8f357c14d2899382c68479b71a8.jpg", "file_size": 14553, "is_delete": false, "file_type": 1, "original_file_name": "FJ009FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fcb8f357c14d2899382c68479b71a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fcb8f357c14d2899382c68479b71a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fcb8f357c14d2899382c68479b71a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1fcb8f357c14d2899382c68479b71a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1fcb8f357c14d2899382c68479b71a8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hEQH7LNtR1kYP1A3B2Lod_gPLg=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.525661+00 2025-12-09 10:15:15.525667+00 12224 23-2119#A13-3XL SPMX-20240815307416 \N \N \N 1 \N [{"file_id": "7edcaa51-9161-4f7e-94c4-947bd3820336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecaf10f96ea44994844b6e285ed84f44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecaf10f96ea44994844b6e285ed84f44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecaf10f96ea44994844b6e285ed84f44.jpg", "file_size": 18530, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf10f96ea44994844b6e285ed84f44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf10f96ea44994844b6e285ed84f44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecaf10f96ea44994844b6e285ed84f44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecaf10f96ea44994844b6e285ed84f44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecaf10f96ea44994844b6e285ed84f44.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sX0jDAQL2r9URBddJAm1VQ5LJJA=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.527957+00 2025-12-09 10:15:15.527962+00 12225 000387#长袖S SPMX-20240815307409 \N \N \N 1 \N [{"file_id": "eea458bf-56ae-4319-a7ea-0507186bc61c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8187384132b74b7798a389672f6e6014.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8187384132b74b7798a389672f6e6014.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8187384132b74b7798a389672f6e6014.jpg", "file_size": 16458, "is_delete": false, "file_type": 1, "original_file_name": "000387#长袖S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187384132b74b7798a389672f6e6014.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187384132b74b7798a389672f6e6014.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187384132b74b7798a389672f6e6014.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8187384132b74b7798a389672f6e6014.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8187384132b74b7798a389672f6e6014.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8VxPYuAphwvpzwEKJrMBtN16fo=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.530291+00 2025-12-09 10:15:15.530296+00 12226 HT20709#墨绿 SPMX-20240815307412 \N \N \N 1 \N [{"file_id": "731db3ac-3ab5-45bd-b9ac-98ae7784f2f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdc8edbe18e44d599dba071c18597bbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdc8edbe18e44d599dba071c18597bbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdc8edbe18e44d599dba071c18597bbb.jpg", "file_size": 15301, "is_delete": false, "file_type": 1, "original_file_name": "HT20709#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc8edbe18e44d599dba071c18597bbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc8edbe18e44d599dba071c18597bbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdc8edbe18e44d599dba071c18597bbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdc8edbe18e44d599dba071c18597bbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdc8edbe18e44d599dba071c18597bbb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-oRW2WGm-Fu9c8vAMIuoXbcaPA=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.532369+00 2025-12-09 10:15:15.532375+00 12227 LJH0100-4#兰色底 SPMX-20240815307413 \N \N \N 1 \N [{"file_id": "1249db63-6fbb-48f2-bd05-d06a459dee1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9353457c3da940a5a5babdbf93d3a3ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9353457c3da940a5a5babdbf93d3a3ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9353457c3da940a5a5babdbf93d3a3ec.jpg", "file_size": 58922, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#兰色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9353457c3da940a5a5babdbf93d3a3ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9353457c3da940a5a5babdbf93d3a3ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9353457c3da940a5a5babdbf93d3a3ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9353457c3da940a5a5babdbf93d3a3ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9353457c3da940a5a5babdbf93d3a3ec.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkK5LToVoUc8st8gKKOwh-NnV_8=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.534577+00 2025-12-09 10:15:15.534583+00 12228 LZ1301#捆条布 SPMX-20240815307408 \N \N \N 1 \N [{"file_id": "450a1322-2475-4de9-8a54-2ba6c62e82b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25501b903d5849bf81aa1fa6189bb4dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25501b903d5849bf81aa1fa6189bb4dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25501b903d5849bf81aa1fa6189bb4dc.jpg", "file_size": 25173, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25501b903d5849bf81aa1fa6189bb4dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25501b903d5849bf81aa1fa6189bb4dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25501b903d5849bf81aa1fa6189bb4dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25501b903d5849bf81aa1fa6189bb4dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25501b903d5849bf81aa1fa6189bb4dc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctAt3wjjl6aFzDaViPoZ-32whJE=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.536905+00 2025-12-09 10:15:15.53691+00 12229 LZ1301#背心款1号色 SPMX-20240815307417 \N \N \N 1 \N [{"file_id": "e3d78b71-0efd-4bfd-b824-fb9656c94bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb55fc05c94c4549930307767bf042f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb55fc05c94c4549930307767bf042f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb55fc05c94c4549930307767bf042f4.jpg", "file_size": 20633, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb55fc05c94c4549930307767bf042f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb55fc05c94c4549930307767bf042f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb55fc05c94c4549930307767bf042f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb55fc05c94c4549930307767bf042f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb55fc05c94c4549930307767bf042f4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htLz6W4mcoSLz6BerrVbtm0Wug4=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.539275+00 2025-12-09 10:15:15.539281+00 12230 DL31063#批布彩兰 SPMX-20240815307407 \N \N \N 1 \N [{"file_id": "90e7a8b3-3390-44a6-baf4-a4219a10342c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0c2f52834cb479e81dfedc575588814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0c2f52834cb479e81dfedc575588814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0c2f52834cb479e81dfedc575588814.jpg", "file_size": 16448, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c2f52834cb479e81dfedc575588814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c2f52834cb479e81dfedc575588814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c2f52834cb479e81dfedc575588814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0c2f52834cb479e81dfedc575588814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0c2f52834cb479e81dfedc575588814.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zi7eDHMN73SvKFC0SxXbG3jHacU=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.541509+00 2025-12-09 10:15:15.541514+00 12231 DL31063#批布枣红 SPMX-20240815307418 \N \N \N 1 \N [{"file_id": "740185f4-2d12-4263-930c-58b6ba374e5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f4c6816743940d48004eab1d4fa332d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f4c6816743940d48004eab1d4fa332d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f4c6816743940d48004eab1d4fa332d.jpg", "file_size": 15702, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4c6816743940d48004eab1d4fa332d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4c6816743940d48004eab1d4fa332d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4c6816743940d48004eab1d4fa332d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f4c6816743940d48004eab1d4fa332d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f4c6816743940d48004eab1d4fa332d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6bgDIbfjpZq5R2Fgcwzz4sbOrM=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.543582+00 2025-12-09 10:15:15.543587+00 12232 JTSS342FW#VS-D3 SPMX-20240815307411 \N \N \N 1 \N [{"file_id": "39406ff4-09e9-4de9-99fb-d0762d0c2619", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9156465d776d4827a6b8017570c373b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9156465d776d4827a6b8017570c373b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9156465d776d4827a6b8017570c373b8.jpg", "file_size": 10678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS342FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9156465d776d4827a6b8017570c373b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9156465d776d4827a6b8017570c373b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9156465d776d4827a6b8017570c373b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9156465d776d4827a6b8017570c373b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9156465d776d4827a6b8017570c373b8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHimtzpYLTWgXzjo6DunUM43cx8=", "createTime": "2024-08-15 14:53:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.545643+00 2025-12-09 10:15:15.545648+00 12233 23-2119#A13-4XL SPMX-20240815307431 \N \N \N 1 \N [{"file_id": "4d32bb3e-c29c-415c-ae10-78619c766477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ab87ebd40e947729e0d9cb5d27daf86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ab87ebd40e947729e0d9cb5d27daf86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ab87ebd40e947729e0d9cb5d27daf86.jpg", "file_size": 17305, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab87ebd40e947729e0d9cb5d27daf86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab87ebd40e947729e0d9cb5d27daf86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab87ebd40e947729e0d9cb5d27daf86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ab87ebd40e947729e0d9cb5d27daf86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ab87ebd40e947729e0d9cb5d27daf86.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iywfsy9CB1R7B2SOSSRg9qIY6WQ=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.547683+00 2025-12-09 10:15:15.547687+00 12234 FJ05XL# SPMX-20240815307424 \N \N \N 1 \N [{"file_id": "e80dfdf2-a5ae-4e30-a0aa-de9e9303feb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0528d9064f4b4e66840ef3c3f61ac92d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0528d9064f4b4e66840ef3c3f61ac92d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0528d9064f4b4e66840ef3c3f61ac92d.jpg", "file_size": 13357, "is_delete": false, "file_type": 1, "original_file_name": "FJ05XL#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0528d9064f4b4e66840ef3c3f61ac92d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0528d9064f4b4e66840ef3c3f61ac92d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0528d9064f4b4e66840ef3c3f61ac92d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0528d9064f4b4e66840ef3c3f61ac92d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0528d9064f4b4e66840ef3c3f61ac92d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghQtoalTEmqyidpEh3pXupAtrVY=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.549914+00 2025-12-09 10:15:15.54992+00 12235 LJH0100-4#兰黄 SPMX-20240815307425 \N \N \N 1 \N [{"file_id": "845cc5ba-b7c0-4b51-965e-512857f06ba5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d69abb2fe1f9425bbaf6604c1700081a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d69abb2fe1f9425bbaf6604c1700081a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d69abb2fe1f9425bbaf6604c1700081a.jpg", "file_size": 56347, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#兰黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69abb2fe1f9425bbaf6604c1700081a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69abb2fe1f9425bbaf6604c1700081a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69abb2fe1f9425bbaf6604c1700081a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d69abb2fe1f9425bbaf6604c1700081a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d69abb2fe1f9425bbaf6604c1700081a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3B36Zp0nxpllQEkAB-Qw0lKFw5U=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.55216+00 2025-12-09 10:15:15.552165+00 12236 0003FWE#女装插肩4XL番禺调色 SPMX-20240815307433 \N \N \N 1 \N [{"file_id": "0f14a3ec-7235-4a3e-84c7-25437f523562", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b7f3c4beac42fc9e2e4896e3d88037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b7f3c4beac42fc9e2e4896e3d88037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b7f3c4beac42fc9e2e4896e3d88037.jpg", "file_size": 19310, "is_delete": false, "file_type": 1, "original_file_name": "0003FWE#女装插肩4XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b7f3c4beac42fc9e2e4896e3d88037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b7f3c4beac42fc9e2e4896e3d88037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b7f3c4beac42fc9e2e4896e3d88037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b7f3c4beac42fc9e2e4896e3d88037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b7f3c4beac42fc9e2e4896e3d88037.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eX4__3sNAJY30FXkHsP_cYZsTos=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.554305+00 2025-12-09 10:15:15.55431+00 12237 8184#WJC22 SPMX-20240815307430 \N \N \N 1 \N [{"file_id": "5c7926f3-657e-4878-b0cb-50a4144ad639", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a081c6f9f529448da325e17f45e5d9fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a081c6f9f529448da325e17f45e5d9fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a081c6f9f529448da325e17f45e5d9fb.jpg", "file_size": 10379, "is_delete": false, "file_type": 1, "original_file_name": "8184#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a081c6f9f529448da325e17f45e5d9fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a081c6f9f529448da325e17f45e5d9fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a081c6f9f529448da325e17f45e5d9fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a081c6f9f529448da325e17f45e5d9fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a081c6f9f529448da325e17f45e5d9fb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UIIiQZXi8QYVMPbUbiVs8t8P74=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.556332+00 2025-12-09 10:15:15.556337+00 12238 000387#长袖XL SPMX-20240815307420 \N \N \N 1 \N [{"file_id": "a235ce57-0564-4bcd-816c-c0ae4852fbb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29d8462f284e4e88b34d39927aa17609.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29d8462f284e4e88b34d39927aa17609.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29d8462f284e4e88b34d39927aa17609.jpg", "file_size": 16762, "is_delete": false, "file_type": 1, "original_file_name": "000387#长袖XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d8462f284e4e88b34d39927aa17609.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d8462f284e4e88b34d39927aa17609.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d8462f284e4e88b34d39927aa17609.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29d8462f284e4e88b34d39927aa17609.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29d8462f284e4e88b34d39927aa17609.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5AnDA_i3Mnjs6yaInPUVHDtb_A=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.558376+00 2025-12-09 10:15:15.558381+00 12239 C453#玫红 SPMX-20240815307428 \N \N \N 1 \N [{"file_id": "93058ef5-8731-4d03-95e8-2d83efa75999", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9da8ba6ac8c246dba4fd512c86e2ebda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9da8ba6ac8c246dba4fd512c86e2ebda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9da8ba6ac8c246dba4fd512c86e2ebda.jpg", "file_size": 80427, "is_delete": false, "file_type": 1, "original_file_name": "C453#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da8ba6ac8c246dba4fd512c86e2ebda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da8ba6ac8c246dba4fd512c86e2ebda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da8ba6ac8c246dba4fd512c86e2ebda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9da8ba6ac8c246dba4fd512c86e2ebda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9da8ba6ac8c246dba4fd512c86e2ebda.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ellronNsTwOCIPXOCxodj35i3NY=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.560284+00 2025-12-09 10:15:15.560289+00 12240 HT20709#白 SPMX-20240815307434 \N \N \N 1 \N [{"file_id": "23473353-806a-4760-93e5-d1a072eae46e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7c22935531c48ea921f9b9e2c779906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7c22935531c48ea921f9b9e2c779906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7c22935531c48ea921f9b9e2c779906.jpg", "file_size": 12809, "is_delete": false, "file_type": 1, "original_file_name": "HT20709#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c22935531c48ea921f9b9e2c779906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c22935531c48ea921f9b9e2c779906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7c22935531c48ea921f9b9e2c779906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7c22935531c48ea921f9b9e2c779906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7c22935531c48ea921f9b9e2c779906.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lvdSBTYM-IDikB1CYVTIjMPQhw=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.562199+00 2025-12-09 10:15:15.562203+00 12241 DL31063#批布水红 SPMX-20240815307426 \N \N \N 1 \N [{"file_id": "2cede4a5-144f-4e42-96ba-6dc69d455b8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c135b169d17c409484bf65f26bfcd047.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c135b169d17c409484bf65f26bfcd047.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c135b169d17c409484bf65f26bfcd047.jpg", "file_size": 14759, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c135b169d17c409484bf65f26bfcd047.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c135b169d17c409484bf65f26bfcd047.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c135b169d17c409484bf65f26bfcd047.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c135b169d17c409484bf65f26bfcd047.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c135b169d17c409484bf65f26bfcd047.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJ2tAl7un21s-G8N_fYGkcky538=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.564114+00 2025-12-09 10:15:15.564118+00 12242 JTSS343FW#VS-D3 SPMX-20240815307422 \N \N \N 1 \N [{"file_id": "c0cca533-da59-4b01-92fd-28f168bd4f5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c89a70f6d4784529903aa2b5d8af9593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c89a70f6d4784529903aa2b5d8af9593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c89a70f6d4784529903aa2b5d8af9593.jpg", "file_size": 22388, "is_delete": false, "file_type": 1, "original_file_name": "JTSS343FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89a70f6d4784529903aa2b5d8af9593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89a70f6d4784529903aa2b5d8af9593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89a70f6d4784529903aa2b5d8af9593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c89a70f6d4784529903aa2b5d8af9593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c89a70f6d4784529903aa2b5d8af9593.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s3lnQwyLQIatkrbbuIzugdcaFbQ=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.566258+00 2025-12-09 10:15:15.566262+00 12243 1115-1FWF#杏色 SPMX-20240815307429 \N \N \N 1 \N [{"file_id": "0c515d7f-0056-4373-9933-b7baaf06aa8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca18a96923d945a5848ac36394e7dc22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca18a96923d945a5848ac36394e7dc22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca18a96923d945a5848ac36394e7dc22.jpg", "file_size": 17818, "is_delete": false, "file_type": 1, "original_file_name": "1115-1FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18a96923d945a5848ac36394e7dc22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18a96923d945a5848ac36394e7dc22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca18a96923d945a5848ac36394e7dc22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca18a96923d945a5848ac36394e7dc22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca18a96923d945a5848ac36394e7dc22.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CQvuax49EvVwzHMEl3gp9-s1MV0=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.568227+00 2025-12-09 10:15:15.568232+00 12244 JTSS344FW#VS-D3 SPMX-20240815307432 \N \N \N 1 \N [{"file_id": "6dda290f-9530-4eb1-9c11-474c9c0bcf3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3a12d1f22db4262815f2f9fc25abcf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3a12d1f22db4262815f2f9fc25abcf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3a12d1f22db4262815f2f9fc25abcf0.jpg", "file_size": 14643, "is_delete": false, "file_type": 1, "original_file_name": "JTSS344FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a12d1f22db4262815f2f9fc25abcf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a12d1f22db4262815f2f9fc25abcf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a12d1f22db4262815f2f9fc25abcf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3a12d1f22db4262815f2f9fc25abcf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3a12d1f22db4262815f2f9fc25abcf0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5QtpFaQE7CiFCnf4W0OK_Tct8k=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.570183+00 2025-12-09 10:15:15.570188+00 12245 LZ1301#背心款2号色 SPMX-20240815307427 \N \N \N 1 \N [{"file_id": "bac69ecc-6828-4496-b51f-a841537a2d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1a10afc8c7e460895a4e3830f429292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1a10afc8c7e460895a4e3830f429292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1a10afc8c7e460895a4e3830f429292.jpg", "file_size": 21081, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1a10afc8c7e460895a4e3830f429292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1a10afc8c7e460895a4e3830f429292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1a10afc8c7e460895a4e3830f429292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1a10afc8c7e460895a4e3830f429292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1a10afc8c7e460895a4e3830f429292.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P9wgD6lEnaU1XsPLjcHAw8jwkZ4=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.572326+00 2025-12-09 10:15:15.572331+00 12246 HT20709#宝蓝 SPMX-20240815307423 \N \N \N 1 \N [{"file_id": "f3142f04-0e8c-4538-996b-861f1f5aed40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c108e3aefe54cb8ae756022f8af44b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c108e3aefe54cb8ae756022f8af44b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c108e3aefe54cb8ae756022f8af44b4.jpg", "file_size": 15066, "is_delete": false, "file_type": 1, "original_file_name": "HT20709#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c108e3aefe54cb8ae756022f8af44b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c108e3aefe54cb8ae756022f8af44b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c108e3aefe54cb8ae756022f8af44b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c108e3aefe54cb8ae756022f8af44b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c108e3aefe54cb8ae756022f8af44b4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2fWcMldn0qn_sdMfkYsRc_znjo=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.574276+00 2025-12-09 10:15:15.574281+00 12247 FJ099#白色 SPMX-20240815307435 \N \N \N 1 \N [{"file_id": "c6083991-769c-4c82-8ab6-7c7511dd164d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdddaf0592744d5b9ac3401c4de75e2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdddaf0592744d5b9ac3401c4de75e2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdddaf0592744d5b9ac3401c4de75e2e.jpg", "file_size": 15332, "is_delete": false, "file_type": 1, "original_file_name": "FJ099#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdddaf0592744d5b9ac3401c4de75e2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdddaf0592744d5b9ac3401c4de75e2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdddaf0592744d5b9ac3401c4de75e2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdddaf0592744d5b9ac3401c4de75e2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdddaf0592744d5b9ac3401c4de75e2e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSKov-ghTW14WggSjoQrxP2VNR8=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.576693+00 2025-12-09 10:15:15.576698+00 12248 8184#RC23 SPMX-20240815307421 \N \N \N 1 \N [{"file_id": "3fc005b9-2587-4eee-a18c-db0606625ee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17c51eb0eb8a4d8386039a56e486db45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17c51eb0eb8a4d8386039a56e486db45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17c51eb0eb8a4d8386039a56e486db45.jpg", "file_size": 36331, "is_delete": false, "file_type": 1, "original_file_name": "8184#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17c51eb0eb8a4d8386039a56e486db45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17c51eb0eb8a4d8386039a56e486db45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17c51eb0eb8a4d8386039a56e486db45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17c51eb0eb8a4d8386039a56e486db45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17c51eb0eb8a4d8386039a56e486db45.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNgcqdYHgDKu_1BKYZnRWbCQaNU=", "createTime": "2024-08-15 14:53:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.578593+00 2025-12-09 10:15:15.578599+00 12249 1115-1FWF#蓝色 SPMX-20240815307441 \N \N \N 1 \N [{"file_id": "2043929e-c8e9-48fc-9cb3-993f4703692a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30bf256c19f44534bed57bf3d18323a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30bf256c19f44534bed57bf3d18323a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30bf256c19f44534bed57bf3d18323a0.jpg", "file_size": 14429, "is_delete": false, "file_type": 1, "original_file_name": "1115-1FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bf256c19f44534bed57bf3d18323a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bf256c19f44534bed57bf3d18323a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bf256c19f44534bed57bf3d18323a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30bf256c19f44534bed57bf3d18323a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30bf256c19f44534bed57bf3d18323a0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqiR1ucWACbCQgHkpBeP_qpfQnM=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.580489+00 2025-12-09 10:15:15.580495+00 12250 HT20709#红 SPMX-20240815307444 \N \N \N 1 \N [{"file_id": "2c2497d7-0e6e-4514-a633-52cfa6c37306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa2832cc7c3045059fc0332f37553b1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa2832cc7c3045059fc0332f37553b1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa2832cc7c3045059fc0332f37553b1b.jpg", "file_size": 14622, "is_delete": false, "file_type": 1, "original_file_name": "HT20709#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2832cc7c3045059fc0332f37553b1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2832cc7c3045059fc0332f37553b1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2832cc7c3045059fc0332f37553b1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa2832cc7c3045059fc0332f37553b1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa2832cc7c3045059fc0332f37553b1b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vFTM3ryIybK790vRFoyy9p_VPFs=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.582378+00 2025-12-09 10:15:15.582383+00 12251 JTSS345FW#VS-D3 SPMX-20240815307443 \N \N \N 1 \N [{"file_id": "f552c058-66ec-47d1-8d09-7446b807cad3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ec1a44e1dda4f08a52f7710c4592718.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ec1a44e1dda4f08a52f7710c4592718.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ec1a44e1dda4f08a52f7710c4592718.jpg", "file_size": 14600, "is_delete": false, "file_type": 1, "original_file_name": "JTSS345FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec1a44e1dda4f08a52f7710c4592718.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec1a44e1dda4f08a52f7710c4592718.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec1a44e1dda4f08a52f7710c4592718.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ec1a44e1dda4f08a52f7710c4592718.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ec1a44e1dda4f08a52f7710c4592718.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ph6UHbOOy6HWfH_eVCGBsXJZHI=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.584285+00 2025-12-09 10:15:15.58429+00 12252 81841#2XL SPMX-20240815307442 \N \N \N 1 \N [{"file_id": "07145aaf-ba15-4a9c-9edb-4e7db3ab38d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65ff2318fec74c43933f2ffa87999da7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65ff2318fec74c43933f2ffa87999da7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65ff2318fec74c43933f2ffa87999da7.jpg", "file_size": 18112, "is_delete": false, "file_type": 1, "original_file_name": "81841#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ff2318fec74c43933f2ffa87999da7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ff2318fec74c43933f2ffa87999da7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ff2318fec74c43933f2ffa87999da7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65ff2318fec74c43933f2ffa87999da7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65ff2318fec74c43933f2ffa87999da7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SaxXUXT3ydSmQG6ImZM-XtFKyF0=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.586411+00 2025-12-09 10:15:15.586416+00 12253 LZ1301#背心款3号色 SPMX-20240815307438 \N \N \N 1 \N [{"file_id": "a3d6de22-7fb0-4211-9f83-168d7b098e2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbc597239f50444fb77f0ada9220b7fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbc597239f50444fb77f0ada9220b7fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbc597239f50444fb77f0ada9220b7fd.jpg", "file_size": 20264, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbc597239f50444fb77f0ada9220b7fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbc597239f50444fb77f0ada9220b7fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbc597239f50444fb77f0ada9220b7fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbc597239f50444fb77f0ada9220b7fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbc597239f50444fb77f0ada9220b7fd.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0BmzsnWXlhViLrZs54hxIo5VI1Y=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.588315+00 2025-12-09 10:15:15.58832+00 12254 23-2119#A13-领子3XL SPMX-20240815307439 \N \N \N 1 \N [{"file_id": "bd250bc5-6b33-41a8-aee1-feb152d163c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5475eb2d05c349008e619593cef280d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5475eb2d05c349008e619593cef280d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5475eb2d05c349008e619593cef280d7.jpg", "file_size": 11701, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475eb2d05c349008e619593cef280d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475eb2d05c349008e619593cef280d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475eb2d05c349008e619593cef280d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5475eb2d05c349008e619593cef280d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5475eb2d05c349008e619593cef280d7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVzNmbtRpHwvLL21Q2YlQqpVD_A=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.590446+00 2025-12-09 10:15:15.590451+00 12255 LJH0100-4#白色底 SPMX-20240815307436 \N \N \N 1 \N [{"file_id": "70b9e360-3dcd-44bd-91cf-cc677430884a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6000f20fa2f44222be5c2eba6b22d79a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6000f20fa2f44222be5c2eba6b22d79a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6000f20fa2f44222be5c2eba6b22d79a.jpg", "file_size": 58179, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#白色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6000f20fa2f44222be5c2eba6b22d79a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6000f20fa2f44222be5c2eba6b22d79a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6000f20fa2f44222be5c2eba6b22d79a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6000f20fa2f44222be5c2eba6b22d79a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6000f20fa2f44222be5c2eba6b22d79a.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTVsLmyGhGJZJq-XNIxUt7NKqEk=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.592381+00 2025-12-09 10:15:15.592386+00 12256 C453#粉色 SPMX-20240815307440 \N \N \N 1 \N [{"file_id": "6e2abb31-aa1f-4a1d-8293-f84b45f7919d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b645866664784dc5ad7288b800731810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b645866664784dc5ad7288b800731810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b645866664784dc5ad7288b800731810.jpg", "file_size": 69700, "is_delete": false, "file_type": 1, "original_file_name": "C453#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b645866664784dc5ad7288b800731810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b645866664784dc5ad7288b800731810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b645866664784dc5ad7288b800731810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b645866664784dc5ad7288b800731810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b645866664784dc5ad7288b800731810.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-axORKq6TYKvZrFKvhvnOYXFl0=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.59429+00 2025-12-09 10:15:15.594294+00 12257 DL31063#批布玫红 SPMX-20240815307437 \N \N \N 1 \N [{"file_id": "4c80401a-1b30-4521-9f7f-d1a971f0c5d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daa0fdf2c82d4f32960f2707eefb3a66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daa0fdf2c82d4f32960f2707eefb3a66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daa0fdf2c82d4f32960f2707eefb3a66.jpg", "file_size": 16616, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0fdf2c82d4f32960f2707eefb3a66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0fdf2c82d4f32960f2707eefb3a66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daa0fdf2c82d4f32960f2707eefb3a66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daa0fdf2c82d4f32960f2707eefb3a66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daa0fdf2c82d4f32960f2707eefb3a66.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hbtt5TkfnGuKGN70KKG4BGooZa0=", "createTime": "2024-08-15 14:53:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.596425+00 2025-12-09 10:15:15.59643+00 12258 0004-1#WJC22 SPMX-20240815307445 \N \N \N 1 \N [{"file_id": "3e11760d-53f0-4dc5-8214-59c870a32c51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6b3ebd5eae0420e8ad816aaec4a8263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6b3ebd5eae0420e8ad816aaec4a8263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6b3ebd5eae0420e8ad816aaec4a8263.jpg", "file_size": 21882, "is_delete": false, "file_type": 1, "original_file_name": "0004-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b3ebd5eae0420e8ad816aaec4a8263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b3ebd5eae0420e8ad816aaec4a8263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b3ebd5eae0420e8ad816aaec4a8263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6b3ebd5eae0420e8ad816aaec4a8263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6b3ebd5eae0420e8ad816aaec4a8263.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFI4Q-OW-lzkq9JcUQmYISKE-UA=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.598376+00 2025-12-09 10:15:15.59838+00 12259 DL31063#批布蓝绿 SPMX-20240815307449 \N \N \N 1 \N [{"file_id": "45b51ce8-6a74-46db-b436-8a123967f54d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea9cc8c04094406fa6b2eae5883df708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea9cc8c04094406fa6b2eae5883df708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea9cc8c04094406fa6b2eae5883df708.jpg", "file_size": 16460, "is_delete": false, "file_type": 1, "original_file_name": "DL31063#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9cc8c04094406fa6b2eae5883df708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9cc8c04094406fa6b2eae5883df708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9cc8c04094406fa6b2eae5883df708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea9cc8c04094406fa6b2eae5883df708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea9cc8c04094406fa6b2eae5883df708.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wHGzn7l57eVYSkC8sQ2Ek-5h4Qo=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.600513+00 2025-12-09 10:15:15.600519+00 12260 FJ099#红色 SPMX-20240815307446 \N \N \N 1 \N [{"file_id": "1621aaba-6cbc-4e59-80c8-ba925a27a95e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb1ff6c263ec47f0befa129c81e7ef4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb1ff6c263ec47f0befa129c81e7ef4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb1ff6c263ec47f0befa129c81e7ef4c.jpg", "file_size": 3398, "is_delete": false, "file_type": 1, "original_file_name": "FJ099#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1ff6c263ec47f0befa129c81e7ef4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1ff6c263ec47f0befa129c81e7ef4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb1ff6c263ec47f0befa129c81e7ef4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb1ff6c263ec47f0befa129c81e7ef4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb1ff6c263ec47f0befa129c81e7ef4c.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSObyb0uB1H_AxilcBiOsosBwRE=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.602421+00 2025-12-09 10:15:15.602425+00 12261 HT20719#墨绿 SPMX-20240815307450 \N \N \N 1 \N [{"file_id": "095ebc66-e66a-4743-801f-17db8711f745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3aca9557acb84f7cb0e50312e05808d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3aca9557acb84f7cb0e50312e05808d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3aca9557acb84f7cb0e50312e05808d7.jpg", "file_size": 12445, "is_delete": false, "file_type": 1, "original_file_name": "HT20719#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aca9557acb84f7cb0e50312e05808d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aca9557acb84f7cb0e50312e05808d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3aca9557acb84f7cb0e50312e05808d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3aca9557acb84f7cb0e50312e05808d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3aca9557acb84f7cb0e50312e05808d7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opcmgSzvReMU4KpZTI6KrKyvA4s=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.604308+00 2025-12-09 10:15:15.604313+00 12262 81841#3XL SPMX-20240815307447 \N \N \N 1 \N [{"file_id": "dd60ca02-bbf0-4e5b-a943-d4fe6ef66be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de6a841c866a4b2f9dd4c4bba00282b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de6a841c866a4b2f9dd4c4bba00282b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de6a841c866a4b2f9dd4c4bba00282b9.jpg", "file_size": 17526, "is_delete": false, "file_type": 1, "original_file_name": "81841#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6a841c866a4b2f9dd4c4bba00282b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6a841c866a4b2f9dd4c4bba00282b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6a841c866a4b2f9dd4c4bba00282b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de6a841c866a4b2f9dd4c4bba00282b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de6a841c866a4b2f9dd4c4bba00282b9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nQqDM5Ethtb9SFfWkj-p5T6Yf7I=", "createTime": "2024-08-15 14:53:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.6064+00 2025-12-09 10:15:15.606405+00 12263 23-2119#A13-领子4XL SPMX-20240815307448 \N \N \N 1 \N [{"file_id": "5ac52fc5-cec8-402f-8558-98b5c09c4be2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbd9306bdc024194b06f0e729e3cf2f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbd9306bdc024194b06f0e729e3cf2f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbd9306bdc024194b06f0e729e3cf2f0.jpg", "file_size": 11733, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd9306bdc024194b06f0e729e3cf2f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd9306bdc024194b06f0e729e3cf2f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd9306bdc024194b06f0e729e3cf2f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbd9306bdc024194b06f0e729e3cf2f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbd9306bdc024194b06f0e729e3cf2f0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_E8AjjuQLfiLlHNLYEJamPUOMnk=", "createTime": "2024-08-15 14:53:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.60851+00 2025-12-09 10:15:15.608515+00 12264 FJ099#蓝色 SPMX-20240815307454 \N \N \N 1 \N [{"file_id": "7e2a13ec-2436-4e80-a110-2712636ba97e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c2fda5b3f66429baebd7adb5d4c3b9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c2fda5b3f66429baebd7adb5d4c3b9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c2fda5b3f66429baebd7adb5d4c3b9b.jpg", "file_size": 15386, "is_delete": false, "file_type": 1, "original_file_name": "FJ099#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2fda5b3f66429baebd7adb5d4c3b9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2fda5b3f66429baebd7adb5d4c3b9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c2fda5b3f66429baebd7adb5d4c3b9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c2fda5b3f66429baebd7adb5d4c3b9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c2fda5b3f66429baebd7adb5d4c3b9b.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uRnpFXSew-uOgO2s0k0t0nEGIC4=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.612549+00 2025-12-09 10:15:15.612554+00 12266 0004-10FWE#枣红条VS-D3 SPMX-20240815307460 \N \N \N 1 \N [{"file_id": "6467a68b-3205-4a11-bae7-fbbcfda9f4c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c082736ca3b4b5787dbc80782dff193.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c082736ca3b4b5787dbc80782dff193.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c082736ca3b4b5787dbc80782dff193.jpg", "file_size": 13828, "is_delete": false, "file_type": 1, "original_file_name": "0004-10FWE#枣红条VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c082736ca3b4b5787dbc80782dff193.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c082736ca3b4b5787dbc80782dff193.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c082736ca3b4b5787dbc80782dff193.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c082736ca3b4b5787dbc80782dff193.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c082736ca3b4b5787dbc80782dff193.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2CuE-ZO1uSnDvuP5drusEDRqkM=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.614453+00 2025-12-09 10:15:15.614458+00 12267 HT20719#宝蓝 SPMX-20240815307455 \N \N \N 1 \N [{"file_id": "bf294fbd-9f8c-4d78-9909-6254187edf96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a233e1a0fb9458f8322d843e41a2ab4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a233e1a0fb9458f8322d843e41a2ab4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a233e1a0fb9458f8322d843e41a2ab4.jpg", "file_size": 13580, "is_delete": false, "file_type": 1, "original_file_name": "HT20719#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a233e1a0fb9458f8322d843e41a2ab4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a233e1a0fb9458f8322d843e41a2ab4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a233e1a0fb9458f8322d843e41a2ab4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a233e1a0fb9458f8322d843e41a2ab4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a233e1a0fb9458f8322d843e41a2ab4.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:APc-33n_jf21aVENKSHr1thROqk=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.610431+00 2025-12-09 10:15:15.610436+00 12265 C453#黑色 SPMX-20240815307458 \N \N \N 1 \N [{"file_id": "58d73598-9792-4dea-a575-33013f875b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db716d49fdc8449fa9db4155467985ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db716d49fdc8449fa9db4155467985ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db716d49fdc8449fa9db4155467985ba.jpg", "file_size": 75622, "is_delete": false, "file_type": 1, "original_file_name": "C453#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db716d49fdc8449fa9db4155467985ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db716d49fdc8449fa9db4155467985ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db716d49fdc8449fa9db4155467985ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db716d49fdc8449fa9db4155467985ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db716d49fdc8449fa9db4155467985ba.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3CF2UjI_ekR9M4HnxUmIvzndf0=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.618695+00 2025-12-09 10:15:15.6187+00 12268 LJH0100-4#红绿 SPMX-20240815307451 \N \N \N 1 \N [{"file_id": "2b24af24-ce96-402f-a850-ee18574465a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49dad0b87f98445ca2fbb3752beb0f3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49dad0b87f98445ca2fbb3752beb0f3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49dad0b87f98445ca2fbb3752beb0f3d.jpg", "file_size": 60926, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#红绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dad0b87f98445ca2fbb3752beb0f3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dad0b87f98445ca2fbb3752beb0f3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dad0b87f98445ca2fbb3752beb0f3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49dad0b87f98445ca2fbb3752beb0f3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49dad0b87f98445ca2fbb3752beb0f3d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URGUiwmFam-uMWLtq7aoOHx9Lyo=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.62072+00 2025-12-09 10:15:15.620725+00 12269 JTSS346FW#VS-D3 SPMX-20240815307456 \N \N \N 1 \N [{"file_id": "a35f9fd6-ec3f-4dba-bffc-b1899aeae715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a206ff0cf4e44e0b2a31d412b0637f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a206ff0cf4e44e0b2a31d412b0637f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a206ff0cf4e44e0b2a31d412b0637f9.jpg", "file_size": 12257, "is_delete": false, "file_type": 1, "original_file_name": "JTSS346FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a206ff0cf4e44e0b2a31d412b0637f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a206ff0cf4e44e0b2a31d412b0637f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a206ff0cf4e44e0b2a31d412b0637f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a206ff0cf4e44e0b2a31d412b0637f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a206ff0cf4e44e0b2a31d412b0637f9.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqMEUYU7BAxcUgvoD4byNWRfASk=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.622626+00 2025-12-09 10:15:15.622631+00 12270 1115-2FWF#杏色 SPMX-20240815307452 \N \N \N 1 \N [{"file_id": "e8310279-f71b-4d6b-a786-979b6f133c7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20c7039bfa954d1e963194cc98ae112e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20c7039bfa954d1e963194cc98ae112e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20c7039bfa954d1e963194cc98ae112e.jpg", "file_size": 22013, "is_delete": false, "file_type": 1, "original_file_name": "1115-2FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c7039bfa954d1e963194cc98ae112e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c7039bfa954d1e963194cc98ae112e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20c7039bfa954d1e963194cc98ae112e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20c7039bfa954d1e963194cc98ae112e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20c7039bfa954d1e963194cc98ae112e.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TpachUYg-reDKEaHzfcesgprTA=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.624493+00 2025-12-09 10:15:15.624497+00 12271 23-2119#A14-3XL SPMX-20240815307459 \N \N \N 1 \N [{"file_id": "2db22b28-a06a-4ae9-b012-4d92bf42f7a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c32df8b099ca41b3a61a4c05a8788a12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c32df8b099ca41b3a61a4c05a8788a12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c32df8b099ca41b3a61a4c05a8788a12.jpg", "file_size": 17534, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A14-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c32df8b099ca41b3a61a4c05a8788a12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c32df8b099ca41b3a61a4c05a8788a12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c32df8b099ca41b3a61a4c05a8788a12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c32df8b099ca41b3a61a4c05a8788a12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c32df8b099ca41b3a61a4c05a8788a12.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGiVbsXG16UImNNa-JtF5ltIfQI=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.626566+00 2025-12-09 10:15:15.626571+00 12272 DL31064#前幅亮黄 SPMX-20240815307461 \N \N \N 1 \N [{"file_id": "656d9b43-610d-41d8-b06a-b73608868338", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12f2cac3c1044694b390f1319d444356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12f2cac3c1044694b390f1319d444356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12f2cac3c1044694b390f1319d444356.jpg", "file_size": 15337, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f2cac3c1044694b390f1319d444356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f2cac3c1044694b390f1319d444356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f2cac3c1044694b390f1319d444356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12f2cac3c1044694b390f1319d444356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12f2cac3c1044694b390f1319d444356.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tcmYl-l7ZKq7AEDOLOWluX_yiA=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.628694+00 2025-12-09 10:15:15.628699+00 12273 LZ1301#背心款4号色 SPMX-20240815307453 \N \N \N 1 \N [{"file_id": "492d04ae-c46c-4446-b10e-d349346642f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21caa96600534775800ac7b37c2ffca5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21caa96600534775800ac7b37c2ffca5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21caa96600534775800ac7b37c2ffca5.jpg", "file_size": 21021, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caa96600534775800ac7b37c2ffca5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caa96600534775800ac7b37c2ffca5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caa96600534775800ac7b37c2ffca5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21caa96600534775800ac7b37c2ffca5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21caa96600534775800ac7b37c2ffca5.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xq5g71XotLcM_WxiTrAk9ryP8Qc=", "createTime": "2024-08-15 14:53:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.630623+00 2025-12-09 10:15:15.630629+00 12274 DL31064#前幅彩兰 SPMX-20240815307468 \N \N \N 1 \N [{"file_id": "bc2a230e-4873-408c-a8b2-6d285573b25d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c575a57a38c444b7b911431584a7e0d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c575a57a38c444b7b911431584a7e0d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c575a57a38c444b7b911431584a7e0d3.jpg", "file_size": 15293, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575a57a38c444b7b911431584a7e0d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575a57a38c444b7b911431584a7e0d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575a57a38c444b7b911431584a7e0d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c575a57a38c444b7b911431584a7e0d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c575a57a38c444b7b911431584a7e0d3.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9u9lNxQFz3nQI47iaBQbiv8KK9M=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.632743+00 2025-12-09 10:15:15.632748+00 12275 JTSS347FW#VS-D3 SPMX-20240815307463 \N \N \N 1 \N [{"file_id": "f7ed3f3d-2ffc-4bc0-a3d3-c97844894cf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea1b9747d814d96a24258753e853216.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea1b9747d814d96a24258753e853216.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea1b9747d814d96a24258753e853216.jpg", "file_size": 12873, "is_delete": false, "file_type": 1, "original_file_name": "JTSS347FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1b9747d814d96a24258753e853216.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1b9747d814d96a24258753e853216.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea1b9747d814d96a24258753e853216.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea1b9747d814d96a24258753e853216.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea1b9747d814d96a24258753e853216.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eGBKTvQwmQtd2tbkBS5VlbyBOx0=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.634608+00 2025-12-09 10:15:15.634613+00 12276 0004-11FWE#VS-D3 SPMX-20240815307464 \N \N \N 1 \N [{"file_id": "2a9c387e-7061-4bea-aa65-b93ff076c114", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc7266a393a74266ac83fd1842327efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc7266a393a74266ac83fd1842327efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc7266a393a74266ac83fd1842327efb.jpg", "file_size": 18401, "is_delete": false, "file_type": 1, "original_file_name": "0004-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7266a393a74266ac83fd1842327efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7266a393a74266ac83fd1842327efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7266a393a74266ac83fd1842327efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc7266a393a74266ac83fd1842327efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc7266a393a74266ac83fd1842327efb.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PozdIic6e2Hh12bJ6dl9EY9E8tQ=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.636728+00 2025-12-09 10:15:15.636732+00 12277 81841#XL SPMX-20240815307469 \N \N \N 1 \N [{"file_id": "92caf4da-f618-4d66-a5dc-ba4a3f4e6b8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60cc1927493e4262ad941f27b7b0fdc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60cc1927493e4262ad941f27b7b0fdc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60cc1927493e4262ad941f27b7b0fdc0.jpg", "file_size": 18155, "is_delete": false, "file_type": 1, "original_file_name": "81841#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cc1927493e4262ad941f27b7b0fdc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cc1927493e4262ad941f27b7b0fdc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cc1927493e4262ad941f27b7b0fdc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60cc1927493e4262ad941f27b7b0fdc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60cc1927493e4262ad941f27b7b0fdc0.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFsV8c9eWvNxHoTVxNpFR_c7jR0=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.638594+00 2025-12-09 10:15:15.638598+00 12278 LZ1301#背心款5号色 SPMX-20240815307465 \N \N \N 1 \N [{"file_id": "5911cbeb-971e-43d5-9b47-486f2cfb9c63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3650c22974ae4cebba899dc891254415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3650c22974ae4cebba899dc891254415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3650c22974ae4cebba899dc891254415.jpg", "file_size": 20666, "is_delete": false, "file_type": 1, "original_file_name": "LZ1301#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3650c22974ae4cebba899dc891254415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3650c22974ae4cebba899dc891254415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3650c22974ae4cebba899dc891254415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3650c22974ae4cebba899dc891254415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3650c22974ae4cebba899dc891254415.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIG7l_gC-PunqpEgTjoUxQJuqMQ=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.64068+00 2025-12-09 10:15:15.640685+00 12279 23-2119#A14-4XL SPMX-20240815307470 \N \N \N 1 \N [{"file_id": "ccb3a2af-87ad-4de5-ab6a-b8c51359160d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e367a59c15df4939ab8c0e3d71251f2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e367a59c15df4939ab8c0e3d71251f2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e367a59c15df4939ab8c0e3d71251f2d.jpg", "file_size": 16162, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A14-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e367a59c15df4939ab8c0e3d71251f2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e367a59c15df4939ab8c0e3d71251f2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e367a59c15df4939ab8c0e3d71251f2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e367a59c15df4939ab8c0e3d71251f2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e367a59c15df4939ab8c0e3d71251f2d.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-PjhUTNwJlQ-Lc3LXDR1V0F3xT4=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.6428+00 2025-12-09 10:15:15.642805+00 12280 C455#兰色 SPMX-20240815307467 \N \N \N 1 \N [{"file_id": "7db71181-2f59-41d9-a3c7-a3e3645e614b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f37d638ef09640dabd9dbb5db5474027.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f37d638ef09640dabd9dbb5db5474027.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f37d638ef09640dabd9dbb5db5474027.jpg", "file_size": 63500, "is_delete": false, "file_type": 1, "original_file_name": "C455#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37d638ef09640dabd9dbb5db5474027.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37d638ef09640dabd9dbb5db5474027.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37d638ef09640dabd9dbb5db5474027.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f37d638ef09640dabd9dbb5db5474027.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f37d638ef09640dabd9dbb5db5474027.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6F_NdLPMgTomhl1hqqlVGWu5Wak=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.64469+00 2025-12-09 10:15:15.644695+00 12281 FJ099#黑色 SPMX-20240815307471 \N \N \N 1 \N [{"file_id": "c05daed6-719b-4f51-ba96-e4b720c1a4d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63c76da3e8854881b6562cd06651e6dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63c76da3e8854881b6562cd06651e6dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63c76da3e8854881b6562cd06651e6dc.jpg", "file_size": 16166, "is_delete": false, "file_type": 1, "original_file_name": "FJ099#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c76da3e8854881b6562cd06651e6dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c76da3e8854881b6562cd06651e6dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c76da3e8854881b6562cd06651e6dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63c76da3e8854881b6562cd06651e6dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63c76da3e8854881b6562cd06651e6dc.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:29cLJmPsc6UXzvBxcqVu0-Meh7Y=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.646789+00 2025-12-09 10:15:15.646794+00 12282 1115-2FWF#灰色 SPMX-20240815307462 \N \N \N 1 \N [{"file_id": "8eeb3a76-3cae-415e-b6db-4faf836bd107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "164d90c4997e4471ad6c7a360a16b6e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "164d90c4997e4471ad6c7a360a16b6e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "164d90c4997e4471ad6c7a360a16b6e6.jpg", "file_size": 21659, "is_delete": false, "file_type": 1, "original_file_name": "1115-2FWF#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164d90c4997e4471ad6c7a360a16b6e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164d90c4997e4471ad6c7a360a16b6e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164d90c4997e4471ad6c7a360a16b6e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/164d90c4997e4471ad6c7a360a16b6e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/164d90c4997e4471ad6c7a360a16b6e6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWsieLotK2L3DNTfnbY4UcPSRdA=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.648649+00 2025-12-09 10:15:15.648654+00 12283 HT20719#白 SPMX-20240815307466 \N \N \N 1 \N [{"file_id": "a9b612f1-2600-4bb9-b115-59f2634e0cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eec58e85609465f8afcfe617182a6e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eec58e85609465f8afcfe617182a6e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eec58e85609465f8afcfe617182a6e6.jpg", "file_size": 12873, "is_delete": false, "file_type": 1, "original_file_name": "HT20719#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eec58e85609465f8afcfe617182a6e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eec58e85609465f8afcfe617182a6e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eec58e85609465f8afcfe617182a6e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eec58e85609465f8afcfe617182a6e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eec58e85609465f8afcfe617182a6e6.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56VQshbt-eUoILVAw4O_jOnEndw=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.650958+00 2025-12-09 10:15:15.650963+00 12284 LJH0100-4#黑色底 SPMX-20240815307472 \N \N \N 1 \N [{"file_id": "f35e10be-64c4-4d2f-b15f-98e6db6d97e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa29ed5426c348c58f8af541370aa7c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa29ed5426c348c58f8af541370aa7c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa29ed5426c348c58f8af541370aa7c8.jpg", "file_size": 60808, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-4#黑色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa29ed5426c348c58f8af541370aa7c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa29ed5426c348c58f8af541370aa7c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa29ed5426c348c58f8af541370aa7c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa29ed5426c348c58f8af541370aa7c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa29ed5426c348c58f8af541370aa7c8.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7aP_6IDUOZeBuNXk66qbqqaTzU=", "createTime": "2024-08-15 14:53:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.652882+00 2025-12-09 10:15:15.652887+00 12285 JTSS348FW#VS-D3 SPMX-20240815307474 \N \N \N 1 \N [{"file_id": "7db01f62-a137-4f74-8f7d-df2c9a9d5b8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21c024eed6d34b83b02dbaadb5df3256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21c024eed6d34b83b02dbaadb5df3256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21c024eed6d34b83b02dbaadb5df3256.jpg", "file_size": 19216, "is_delete": false, "file_type": 1, "original_file_name": "JTSS348FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c024eed6d34b83b02dbaadb5df3256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c024eed6d34b83b02dbaadb5df3256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c024eed6d34b83b02dbaadb5df3256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21c024eed6d34b83b02dbaadb5df3256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21c024eed6d34b83b02dbaadb5df3256.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Irgtf-Mm8v-259RC9kcAs33gXWM=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.654791+00 2025-12-09 10:15:15.654795+00 12286 0004-12FWE#VS-D3 SPMX-20240815307477 \N \N \N 1 \N [{"file_id": "d8770067-72aa-4651-bab3-941da69750eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg", "file_size": 14434, "is_delete": false, "file_type": 1, "original_file_name": "0004-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f30a7b34a4c46e6a0eaa0cb2eec22ba.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpLjD1aD9NUIKsuZ-wRZqKgdPDI=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.656881+00 2025-12-09 10:15:15.656886+00 12287 HT20720FW#VS-D3 SPMX-20240815307476 \N \N \N 1 \N [{"file_id": "438113a1-112a-4748-ab8b-d73b36ff869e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac8e26793f214529b9bc4eb983cd5db7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac8e26793f214529b9bc4eb983cd5db7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac8e26793f214529b9bc4eb983cd5db7.jpg", "file_size": 18456, "is_delete": false, "file_type": 1, "original_file_name": "HT20720FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e26793f214529b9bc4eb983cd5db7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e26793f214529b9bc4eb983cd5db7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e26793f214529b9bc4eb983cd5db7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac8e26793f214529b9bc4eb983cd5db7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac8e26793f214529b9bc4eb983cd5db7.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFIISU96abjIex6vPwge1n1V8YE=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.658768+00 2025-12-09 10:15:15.658773+00 12288 DL31064#前幅枣红 SPMX-20240815307478 \N \N \N 1 \N [{"file_id": "2cf53797-a021-495f-8518-4f4aadcf5868", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aff594ab64384f41b2a9f13a1d6cd0ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aff594ab64384f41b2a9f13a1d6cd0ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aff594ab64384f41b2a9f13a1d6cd0ae.jpg", "file_size": 15219, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff594ab64384f41b2a9f13a1d6cd0ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff594ab64384f41b2a9f13a1d6cd0ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff594ab64384f41b2a9f13a1d6cd0ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aff594ab64384f41b2a9f13a1d6cd0ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aff594ab64384f41b2a9f13a1d6cd0ae.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztvth1thV8Mlww6ytzKgBY6DxcU=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.660965+00 2025-12-09 10:15:15.660971+00 12289 1116#粉黑 SPMX-20240815307473 \N \N \N 1 \N [{"file_id": "39e14ca9-e688-46ce-98e4-5baa0841bb07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2deae63d789a4493916ef1353c5096c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2deae63d789a4493916ef1353c5096c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2deae63d789a4493916ef1353c5096c2.jpg", "file_size": 22534, "is_delete": false, "file_type": 1, "original_file_name": "1116#粉黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deae63d789a4493916ef1353c5096c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deae63d789a4493916ef1353c5096c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deae63d789a4493916ef1353c5096c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2deae63d789a4493916ef1353c5096c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2deae63d789a4493916ef1353c5096c2.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOEBGlmt9VOqqNNUtS5UwGZiKdk=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:15.662896+00 2025-12-09 10:15:15.6629+00 12290 LZ1302#捆条布 SPMX-20240815307479 \N \N \N 1 \N [{"file_id": "2f300996-dd05-4dcd-985f-40ab53410ae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47b3af8695284f1cb14190f0a8bae625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47b3af8695284f1cb14190f0a8bae625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47b3af8695284f1cb14190f0a8bae625.jpg", "file_size": 11867, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b3af8695284f1cb14190f0a8bae625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b3af8695284f1cb14190f0a8bae625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b3af8695284f1cb14190f0a8bae625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47b3af8695284f1cb14190f0a8bae625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47b3af8695284f1cb14190f0a8bae625.jpg?e=1765361714&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vA37znFnIySxCDpa6l4upZDkmdA=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.403663+00 2025-12-09 10:15:16.403675+00 12291 81848#2XL SPMX-20240815307481 \N \N \N 1 \N [{"file_id": "8884d08d-915d-472b-ae23-c8e8b8772a0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ecca67079eb4b48b7993a5fe6f6076f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ecca67079eb4b48b7993a5fe6f6076f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ecca67079eb4b48b7993a5fe6f6076f.jpg", "file_size": 17970, "is_delete": false, "file_type": 1, "original_file_name": "81848#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecca67079eb4b48b7993a5fe6f6076f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecca67079eb4b48b7993a5fe6f6076f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecca67079eb4b48b7993a5fe6f6076f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ecca67079eb4b48b7993a5fe6f6076f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ecca67079eb4b48b7993a5fe6f6076f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_SGDcZM9W5Pt_BEYqIan1vHEKs=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.406608+00 2025-12-09 10:15:16.406614+00 12292 23-2119#A14-领子3XL SPMX-20240815307480 \N \N \N 1 \N [{"file_id": "a8dd1b88-bf03-42fe-9d82-a7260a5bf46d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7785da675f4e4d7095b45ef30f16b984.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7785da675f4e4d7095b45ef30f16b984.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7785da675f4e4d7095b45ef30f16b984.jpg", "file_size": 11422, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A14-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7785da675f4e4d7095b45ef30f16b984.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7785da675f4e4d7095b45ef30f16b984.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7785da675f4e4d7095b45ef30f16b984.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7785da675f4e4d7095b45ef30f16b984.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7785da675f4e4d7095b45ef30f16b984.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btycVcyG3sbyBO7TIBjJ7m98-bI=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.409107+00 2025-12-09 10:15:16.409113+00 12293 C455#大白 SPMX-20240815307475 \N \N \N 1 \N [{"file_id": "0ac5397e-e3a2-49a9-8509-749541737ab6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6029c06d286645cb9bf24e939dc35092.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6029c06d286645cb9bf24e939dc35092.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6029c06d286645cb9bf24e939dc35092.jpg", "file_size": 50548, "is_delete": false, "file_type": 1, "original_file_name": "C455#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6029c06d286645cb9bf24e939dc35092.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6029c06d286645cb9bf24e939dc35092.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6029c06d286645cb9bf24e939dc35092.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6029c06d286645cb9bf24e939dc35092.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6029c06d286645cb9bf24e939dc35092.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3U-gMsG-eSgozRmJ-zeFZI_XVng=", "createTime": "2024-08-15 14:53:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.411585+00 2025-12-09 10:15:16.411591+00 12294 LJH0100-5#4号色 SPMX-20240815307486 \N \N \N 1 \N [{"file_id": "eb4a9fdd-0a15-4df6-a6a7-6c14a4a967ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29f42fc0b8c14593a6aa51043d29bf8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29f42fc0b8c14593a6aa51043d29bf8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29f42fc0b8c14593a6aa51043d29bf8e.jpg", "file_size": 58799, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-5#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f42fc0b8c14593a6aa51043d29bf8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f42fc0b8c14593a6aa51043d29bf8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f42fc0b8c14593a6aa51043d29bf8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29f42fc0b8c14593a6aa51043d29bf8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29f42fc0b8c14593a6aa51043d29bf8e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vekMrpxsZXqvaLxixA6c46qLrks=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.413923+00 2025-12-09 10:15:16.413929+00 12295 LZ1302#背心款1号色 SPMX-20240815307490 \N \N \N 1 \N [{"file_id": "0713f04e-6ac5-4ef4-9a8b-e32271a299c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg", "file_size": 17314, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ca7e670b6cc4ffba3388fa6c14cf5a0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:siYVSSbDbqZjS3UplnaDol4kWaI=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.415989+00 2025-12-09 10:15:16.415995+00 12296 FJ10266#RC23 SPMX-20240815307484 \N \N \N 1 \N [{"file_id": "6aa84076-5c2f-4542-90f0-2f76af2f4153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "826fd1aebe174cf7b0e4097e68ca1a50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "826fd1aebe174cf7b0e4097e68ca1a50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "826fd1aebe174cf7b0e4097e68ca1a50.jpg", "file_size": 43260, "is_delete": false, "file_type": 1, "original_file_name": "FJ10266#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826fd1aebe174cf7b0e4097e68ca1a50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826fd1aebe174cf7b0e4097e68ca1a50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/826fd1aebe174cf7b0e4097e68ca1a50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/826fd1aebe174cf7b0e4097e68ca1a50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/826fd1aebe174cf7b0e4097e68ca1a50.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXaMsf3cFhzD7IjzPFXSkW1L8iA=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.418026+00 2025-12-09 10:15:16.418031+00 12297 HT20721FW#VS-D3 SPMX-20240815307488 \N \N \N 1 \N [{"file_id": "709c4b83-b7b8-4d6e-a2a2-3ce674e3fe36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2728a6affa4a43b9b35f828ba8ad71bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2728a6affa4a43b9b35f828ba8ad71bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2728a6affa4a43b9b35f828ba8ad71bd.jpg", "file_size": 14189, "is_delete": false, "file_type": 1, "original_file_name": "HT20721FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2728a6affa4a43b9b35f828ba8ad71bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2728a6affa4a43b9b35f828ba8ad71bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2728a6affa4a43b9b35f828ba8ad71bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2728a6affa4a43b9b35f828ba8ad71bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2728a6affa4a43b9b35f828ba8ad71bd.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lrStiV1pmhLLCPV4DuOZhsVj0g=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.420148+00 2025-12-09 10:15:16.420155+00 12298 0004-13FWE#VS-D3 SPMX-20240815307485 \N \N \N 1 \N [{"file_id": "213ac24d-e6a7-421e-8bb0-67d75eb13095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbce888b8b5b4d3eb2f3085949abcd10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbce888b8b5b4d3eb2f3085949abcd10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbce888b8b5b4d3eb2f3085949abcd10.jpg", "file_size": 6183, "is_delete": false, "file_type": 1, "original_file_name": "0004-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbce888b8b5b4d3eb2f3085949abcd10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbce888b8b5b4d3eb2f3085949abcd10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbce888b8b5b4d3eb2f3085949abcd10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbce888b8b5b4d3eb2f3085949abcd10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbce888b8b5b4d3eb2f3085949abcd10.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a11DTychC-ql-3h23AAvb574ABU=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.422381+00 2025-12-09 10:15:16.422387+00 12299 JTSS350FW#VS-D3 SPMX-20240815307493 \N \N \N 1 \N [{"file_id": "668fac94-7533-4e41-b159-b41eda65128f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880cca39b5fe4d2aa9bc8f398afc1075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880cca39b5fe4d2aa9bc8f398afc1075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880cca39b5fe4d2aa9bc8f398afc1075.jpg", "file_size": 12250, "is_delete": false, "file_type": 1, "original_file_name": "JTSS350FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880cca39b5fe4d2aa9bc8f398afc1075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880cca39b5fe4d2aa9bc8f398afc1075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880cca39b5fe4d2aa9bc8f398afc1075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880cca39b5fe4d2aa9bc8f398afc1075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880cca39b5fe4d2aa9bc8f398afc1075.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0ggImNmmHO_HV3l6zouoa2k-tc=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.424526+00 2025-12-09 10:15:16.424531+00 12300 DL31064#前幅水红 SPMX-20240815307489 \N \N \N 1 \N [{"file_id": "498c3c6f-cbbc-4f59-a836-4b8220d472dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daafbf8bdedd406d9e9257323667e3cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daafbf8bdedd406d9e9257323667e3cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daafbf8bdedd406d9e9257323667e3cc.jpg", "file_size": 14977, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daafbf8bdedd406d9e9257323667e3cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daafbf8bdedd406d9e9257323667e3cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daafbf8bdedd406d9e9257323667e3cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daafbf8bdedd406d9e9257323667e3cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daafbf8bdedd406d9e9257323667e3cc.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRutPWMhS9l_PV_XsyMfWfm4XRQ=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.426663+00 2025-12-09 10:15:16.426668+00 12301 23-2119#A14-领子4XL SPMX-20240815307491 \N \N \N 1 \N [{"file_id": "ff75adf3-4a06-4fea-b3eb-d3e503080f7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3989b431733d4a479dd97cf0b080a304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3989b431733d4a479dd97cf0b080a304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3989b431733d4a479dd97cf0b080a304.jpg", "file_size": 11687, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A14-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3989b431733d4a479dd97cf0b080a304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3989b431733d4a479dd97cf0b080a304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3989b431733d4a479dd97cf0b080a304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3989b431733d4a479dd97cf0b080a304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3989b431733d4a479dd97cf0b080a304.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyUn30Eg7OkN4VzU4zfbX2JhvJ0=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.428788+00 2025-12-09 10:15:16.428793+00 12302 81848#3XL SPMX-20240815307492 \N \N \N 1 \N [{"file_id": "3b0b87eb-c8f2-4535-9dbf-480ab4aae328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57701c38f29240e280fca5dcc14a1679.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57701c38f29240e280fca5dcc14a1679.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57701c38f29240e280fca5dcc14a1679.jpg", "file_size": 18202, "is_delete": false, "file_type": 1, "original_file_name": "81848#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57701c38f29240e280fca5dcc14a1679.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57701c38f29240e280fca5dcc14a1679.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57701c38f29240e280fca5dcc14a1679.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57701c38f29240e280fca5dcc14a1679.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57701c38f29240e280fca5dcc14a1679.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oha4bK5H2KCToxWAVg72oRGu1S4=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.431127+00 2025-12-09 10:15:16.431133+00 12303 C455#玫红 SPMX-20240815307487 \N \N \N 1 \N [{"file_id": "6fe9d82b-a9b3-4df5-bd00-e5079549f6e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "403eff9da3244d36ae0935447c61755c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "403eff9da3244d36ae0935447c61755c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "403eff9da3244d36ae0935447c61755c.jpg", "file_size": 58711, "is_delete": false, "file_type": 1, "original_file_name": "C455#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403eff9da3244d36ae0935447c61755c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403eff9da3244d36ae0935447c61755c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403eff9da3244d36ae0935447c61755c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/403eff9da3244d36ae0935447c61755c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/403eff9da3244d36ae0935447c61755c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4HzQh3NWA8bNFsFmErdtD1iM9rE=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.433168+00 2025-12-09 10:15:16.433173+00 12304 FJ1056FW#2XL SPMX-20240815307495 \N \N \N 1 \N [{"file_id": "c8bb36b1-c39a-4b0d-b0f7-f56fbbf97cb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d5e0887ce83423bbe851a16266a60d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d5e0887ce83423bbe851a16266a60d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d5e0887ce83423bbe851a16266a60d7.jpg", "file_size": 11141, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5e0887ce83423bbe851a16266a60d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5e0887ce83423bbe851a16266a60d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5e0887ce83423bbe851a16266a60d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d5e0887ce83423bbe851a16266a60d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d5e0887ce83423bbe851a16266a60d7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7X0m4D--GltVa8pPVQqq4SdB3mY=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.435139+00 2025-12-09 10:15:16.435144+00 12305 1116#绿黑 SPMX-20240815307482 \N \N \N 1 \N [{"file_id": "060ba298-1055-406a-864b-c127771d243a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a673f769b91e428a95ae04a3ee65ab76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a673f769b91e428a95ae04a3ee65ab76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a673f769b91e428a95ae04a3ee65ab76.jpg", "file_size": 22521, "is_delete": false, "file_type": 1, "original_file_name": "1116#绿黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a673f769b91e428a95ae04a3ee65ab76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a673f769b91e428a95ae04a3ee65ab76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a673f769b91e428a95ae04a3ee65ab76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a673f769b91e428a95ae04a3ee65ab76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a673f769b91e428a95ae04a3ee65ab76.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HIG38-I-L-Yk7bb1twTnRVEGuKY=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.437062+00 2025-12-09 10:15:16.437066+00 12306 JTSS349FW#VS-D3 SPMX-20240815307483 \N \N \N 1 \N [{"file_id": "726913b0-f731-4c20-bd7b-8cf0eac227ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef92718c36ff4df0bfe375c43d9b4246.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef92718c36ff4df0bfe375c43d9b4246.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef92718c36ff4df0bfe375c43d9b4246.jpg", "file_size": 14104, "is_delete": false, "file_type": 1, "original_file_name": "JTSS349FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef92718c36ff4df0bfe375c43d9b4246.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef92718c36ff4df0bfe375c43d9b4246.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef92718c36ff4df0bfe375c43d9b4246.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef92718c36ff4df0bfe375c43d9b4246.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef92718c36ff4df0bfe375c43d9b4246.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiAdWhLgojOlaCifORqsvtQZfhg=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.438961+00 2025-12-09 10:15:16.438966+00 12307 1116#黑白 SPMX-20240815307494 \N \N \N 1 \N [{"file_id": "74635f43-5cc2-4445-8180-57352211145b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0377aabce68c409e86d173d1b1ff95cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0377aabce68c409e86d173d1b1ff95cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0377aabce68c409e86d173d1b1ff95cb.jpg", "file_size": 26779, "is_delete": false, "file_type": 1, "original_file_name": "1116#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0377aabce68c409e86d173d1b1ff95cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0377aabce68c409e86d173d1b1ff95cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0377aabce68c409e86d173d1b1ff95cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0377aabce68c409e86d173d1b1ff95cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0377aabce68c409e86d173d1b1ff95cb.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bIQWjibvPH29QkIiITt5lxavpag=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.441119+00 2025-12-09 10:15:16.441124+00 12308 LJH0100-5#兰色底 SPMX-20240815307498 \N \N \N 1 \N [{"file_id": "741d2740-2d84-401a-ad65-e27b02ada911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2937bcb89de401fb23881152ceba2f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2937bcb89de401fb23881152ceba2f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2937bcb89de401fb23881152ceba2f3.jpg", "file_size": 60483, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-5#兰色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2937bcb89de401fb23881152ceba2f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2937bcb89de401fb23881152ceba2f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2937bcb89de401fb23881152ceba2f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2937bcb89de401fb23881152ceba2f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2937bcb89de401fb23881152ceba2f3.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DopMrcwXKJOh0-OCjEGjAU0OYp0=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.443088+00 2025-12-09 10:15:16.443093+00 12309 23-2119#A15-3XL SPMX-20240815307502 \N \N \N 1 \N [{"file_id": "5f50534f-ba28-46bd-b156-ea42c0acebd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f16875cc38143a09029f5c65325f1fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f16875cc38143a09029f5c65325f1fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f16875cc38143a09029f5c65325f1fa.jpg", "file_size": 19818, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A15-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f16875cc38143a09029f5c65325f1fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f16875cc38143a09029f5c65325f1fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f16875cc38143a09029f5c65325f1fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f16875cc38143a09029f5c65325f1fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f16875cc38143a09029f5c65325f1fa.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-A-LynPxtPU8TzWG24LaJYxlIc=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.444983+00 2025-12-09 10:15:16.444988+00 12310 LZ1302#背心款2号色 SPMX-20240815307501 \N \N \N 1 \N [{"file_id": "5822869f-6e26-484b-8feb-f49b094ad88a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f2ba70f407a430aba9818c9cd5ac20e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f2ba70f407a430aba9818c9cd5ac20e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f2ba70f407a430aba9818c9cd5ac20e.jpg", "file_size": 18249, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ba70f407a430aba9818c9cd5ac20e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ba70f407a430aba9818c9cd5ac20e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ba70f407a430aba9818c9cd5ac20e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f2ba70f407a430aba9818c9cd5ac20e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f2ba70f407a430aba9818c9cd5ac20e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gye3BxkHylu5uXS3OrYhcmdObmM=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.446863+00 2025-12-09 10:15:16.446869+00 12311 JTSS351FW#VS-D3 SPMX-20240815307504 \N \N \N 1 \N [{"file_id": "3e08a5a9-3d79-4077-b782-7e836af1e293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f083a48eda58448bbf181a44a15f4819.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f083a48eda58448bbf181a44a15f4819.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f083a48eda58448bbf181a44a15f4819.jpg", "file_size": 11005, "is_delete": false, "file_type": 1, "original_file_name": "JTSS351FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f083a48eda58448bbf181a44a15f4819.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f083a48eda58448bbf181a44a15f4819.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f083a48eda58448bbf181a44a15f4819.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f083a48eda58448bbf181a44a15f4819.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f083a48eda58448bbf181a44a15f4819.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-_cpyYp8DIA2rfJjGJHEnbImGls=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.448811+00 2025-12-09 10:15:16.448815+00 12312 HT20722FW#VS-D3 SPMX-20240815307499 \N \N \N 1 \N [{"file_id": "48780e8d-070a-4eda-ae07-cd6337425f37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b322357aa174391b1398a99c48d4121.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b322357aa174391b1398a99c48d4121.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b322357aa174391b1398a99c48d4121.jpg", "file_size": 13897, "is_delete": false, "file_type": 1, "original_file_name": "HT20722FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b322357aa174391b1398a99c48d4121.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b322357aa174391b1398a99c48d4121.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b322357aa174391b1398a99c48d4121.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b322357aa174391b1398a99c48d4121.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b322357aa174391b1398a99c48d4121.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fbVTWOZhR7CqRoTKY78svdE9XFs=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.450922+00 2025-12-09 10:15:16.450927+00 12313 0004-14FWE#VS-D3 SPMX-20240815307496 \N \N \N 1 \N [{"file_id": "c75a0fc4-3943-4bb1-93c8-200ec70f7acf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eb72c2f84e74a41bfc426b3a7d74707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eb72c2f84e74a41bfc426b3a7d74707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eb72c2f84e74a41bfc426b3a7d74707.jpg", "file_size": 11377, "is_delete": false, "file_type": 1, "original_file_name": "0004-14FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb72c2f84e74a41bfc426b3a7d74707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb72c2f84e74a41bfc426b3a7d74707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb72c2f84e74a41bfc426b3a7d74707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eb72c2f84e74a41bfc426b3a7d74707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eb72c2f84e74a41bfc426b3a7d74707.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqjWLCZu1MbRsWO7i-NDrB23Ruo=", "createTime": "2024-08-15 14:53:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.452811+00 2025-12-09 10:15:16.452816+00 12314 0004-14FWE#墨绿 SPMX-20240815307505 \N \N \N 1 \N [{"file_id": "eec5c4e9-2081-4e85-846c-42916dc058b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "700b83da5332428d970ee69f1f91179d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "700b83da5332428d970ee69f1f91179d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "700b83da5332428d970ee69f1f91179d.jpg", "file_size": 15403, "is_delete": false, "file_type": 1, "original_file_name": "0004-14FWE#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b83da5332428d970ee69f1f91179d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b83da5332428d970ee69f1f91179d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/700b83da5332428d970ee69f1f91179d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/700b83da5332428d970ee69f1f91179d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/700b83da5332428d970ee69f1f91179d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9SC07ZsdIQ71IocJOu5pZGi9if4=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.454945+00 2025-12-09 10:15:16.45495+00 12315 C455#绿色 SPMX-20240815307500 \N \N \N 1 \N [{"file_id": "3f81f2c4-e35e-4d20-859d-c3e85aa0035f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "789b77f8970844d18f08c41385338aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "789b77f8970844d18f08c41385338aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "789b77f8970844d18f08c41385338aa4.jpg", "file_size": 58082, "is_delete": false, "file_type": 1, "original_file_name": "C455#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789b77f8970844d18f08c41385338aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789b77f8970844d18f08c41385338aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/789b77f8970844d18f08c41385338aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/789b77f8970844d18f08c41385338aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/789b77f8970844d18f08c41385338aa4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ku9ZeBvXkDZqGIw9irubMqqjUKM=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.45685+00 2025-12-09 10:15:16.456856+00 12316 1117FWF#V5曲线 SPMX-20240815307506 \N \N \N 1 \N [{"file_id": "18336bf6-30d4-411f-8fa9-3d2aa78ee499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a63f10771c524a2490ea76caa8bea1d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a63f10771c524a2490ea76caa8bea1d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a63f10771c524a2490ea76caa8bea1d4.jpg", "file_size": 28005, "is_delete": false, "file_type": 1, "original_file_name": "1117FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63f10771c524a2490ea76caa8bea1d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63f10771c524a2490ea76caa8bea1d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63f10771c524a2490ea76caa8bea1d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a63f10771c524a2490ea76caa8bea1d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a63f10771c524a2490ea76caa8bea1d4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nYeXV7mplIzFzYuIJQ1PuOv5fw=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.458978+00 2025-12-09 10:15:16.458982+00 12317 81848#L SPMX-20240815307503 \N \N \N 1 \N [{"file_id": "b31e42fb-8013-465b-a16a-402f17ba6c28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "075c666d188f4625a6492bdc2f690944.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "075c666d188f4625a6492bdc2f690944.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "075c666d188f4625a6492bdc2f690944.jpg", "file_size": 17637, "is_delete": false, "file_type": 1, "original_file_name": "81848#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075c666d188f4625a6492bdc2f690944.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075c666d188f4625a6492bdc2f690944.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/075c666d188f4625a6492bdc2f690944.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/075c666d188f4625a6492bdc2f690944.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/075c666d188f4625a6492bdc2f690944.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZGlJZQnNuMjEYX6XbMyHEuyqIA=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.460856+00 2025-12-09 10:15:16.460862+00 12318 DL31064#前幅玫红 SPMX-20240815307497 \N \N \N 1 \N [{"file_id": "1a8de80c-7e21-4d21-913a-abd6ca562c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "339807d35726461db9d2ad15a78423c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "339807d35726461db9d2ad15a78423c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "339807d35726461db9d2ad15a78423c6.jpg", "file_size": 14941, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339807d35726461db9d2ad15a78423c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339807d35726461db9d2ad15a78423c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339807d35726461db9d2ad15a78423c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/339807d35726461db9d2ad15a78423c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/339807d35726461db9d2ad15a78423c6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E09wUuhC2LTr2ZzgOf6uDRxZxNo=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.471261+00 2025-12-09 10:15:16.471266+00 12323 23-2119#A15-4XL SPMX-20240815307513 \N \N \N 1 \N [{"file_id": "bc39fc44-dbec-4a4c-b391-c63358a228bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a1f218e2b98496384ea2e1ef7e25d17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a1f218e2b98496384ea2e1ef7e25d17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a1f218e2b98496384ea2e1ef7e25d17.jpg", "file_size": 18708, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A15-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1f218e2b98496384ea2e1ef7e25d17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1f218e2b98496384ea2e1ef7e25d17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1f218e2b98496384ea2e1ef7e25d17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a1f218e2b98496384ea2e1ef7e25d17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a1f218e2b98496384ea2e1ef7e25d17.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIdF-kweFpXl2dzl6JHl2g4X12U=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.462972+00 2025-12-09 10:15:16.462977+00 12319 LZ1302#背心款3号色 SPMX-20240815307514 \N \N \N 1 \N [{"file_id": "cb49a705-424a-4eef-bffb-13571f5fde60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8afbdaf7346d480db24bdec7b209efe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8afbdaf7346d480db24bdec7b209efe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8afbdaf7346d480db24bdec7b209efe2.jpg", "file_size": 17601, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afbdaf7346d480db24bdec7b209efe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afbdaf7346d480db24bdec7b209efe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afbdaf7346d480db24bdec7b209efe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8afbdaf7346d480db24bdec7b209efe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8afbdaf7346d480db24bdec7b209efe2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWtdgzVydSFj2DUuNtD3-VOWu2U=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.464869+00 2025-12-09 10:15:16.464874+00 12320 FJ1056FW#2XL黄色 SPMX-20240815307507 \N \N \N 1 \N [{"file_id": "10910e9a-b541-4a99-a55d-6f60cc88cc59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28498ac2528640d5a6ed21dc93c783e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28498ac2528640d5a6ed21dc93c783e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28498ac2528640d5a6ed21dc93c783e2.jpg", "file_size": 14908, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#2XL黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28498ac2528640d5a6ed21dc93c783e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28498ac2528640d5a6ed21dc93c783e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28498ac2528640d5a6ed21dc93c783e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28498ac2528640d5a6ed21dc93c783e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28498ac2528640d5a6ed21dc93c783e2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRIO20ihZwtpknRE3pzvMnHZUjA=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.467034+00 2025-12-09 10:15:16.467039+00 12321 81848#XL SPMX-20240815307510 \N \N \N 1 \N [{"file_id": "4f7f6f40-313b-4da0-ab16-9cce279f3607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9177db997d7b42ccabf6d4d0de4c6f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9177db997d7b42ccabf6d4d0de4c6f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9177db997d7b42ccabf6d4d0de4c6f43.jpg", "file_size": 18263, "is_delete": false, "file_type": 1, "original_file_name": "81848#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9177db997d7b42ccabf6d4d0de4c6f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9177db997d7b42ccabf6d4d0de4c6f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9177db997d7b42ccabf6d4d0de4c6f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9177db997d7b42ccabf6d4d0de4c6f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9177db997d7b42ccabf6d4d0de4c6f43.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vjGcC6usqDIDg9HLvMr0qa3XiM=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.469065+00 2025-12-09 10:15:16.46907+00 12322 LJH0100-5#白色底 SPMX-20240815307508 \N \N \N 1 \N [{"file_id": "14453f41-ee44-4842-822a-0d79d47cd43f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "793627f13865409eb2c499a8d44ad68e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "793627f13865409eb2c499a8d44ad68e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "793627f13865409eb2c499a8d44ad68e.jpg", "file_size": 56429, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-5#白色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793627f13865409eb2c499a8d44ad68e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793627f13865409eb2c499a8d44ad68e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/793627f13865409eb2c499a8d44ad68e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/793627f13865409eb2c499a8d44ad68e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/793627f13865409eb2c499a8d44ad68e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnudH6195Jf4-8-DzjL53VxQwhw=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.473241+00 2025-12-09 10:15:16.473246+00 12324 DL31064#前幅蓝绿 SPMX-20240815307511 \N \N \N 1 \N [{"file_id": "95abc457-57bf-4e57-940e-3461744dd25c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "909a78b595d144ebb1f816e4edc23ef4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "909a78b595d144ebb1f816e4edc23ef4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "909a78b595d144ebb1f816e4edc23ef4.jpg", "file_size": 15113, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909a78b595d144ebb1f816e4edc23ef4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909a78b595d144ebb1f816e4edc23ef4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909a78b595d144ebb1f816e4edc23ef4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/909a78b595d144ebb1f816e4edc23ef4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/909a78b595d144ebb1f816e4edc23ef4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVOCc44sM_uGKvKkGwSdV48Luqs=", "createTime": "2024-08-15 14:53:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.475212+00 2025-12-09 10:15:16.475216+00 12325 HT20723FW#VS-D3 SPMX-20240815307509 \N \N \N 1 \N [{"file_id": "f753060d-a691-40a5-a3e3-ec4f7e47eac4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72948a082c0948a1b73f4636d8cac3b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72948a082c0948a1b73f4636d8cac3b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72948a082c0948a1b73f4636d8cac3b0.jpg", "file_size": 14901, "is_delete": false, "file_type": 1, "original_file_name": "HT20723FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72948a082c0948a1b73f4636d8cac3b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72948a082c0948a1b73f4636d8cac3b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72948a082c0948a1b73f4636d8cac3b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72948a082c0948a1b73f4636d8cac3b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72948a082c0948a1b73f4636d8cac3b0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKfJDPUI6DBumkZtxKwlHxclHFM=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.477126+00 2025-12-09 10:15:16.477131+00 12326 JTSS352FW#VS-D3 SPMX-20240815307512 \N \N \N 1 \N [{"file_id": "b2b321a6-26e5-4247-a512-c553b52c3dfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c07d473d0d740da9377a0aa227cca3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c07d473d0d740da9377a0aa227cca3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c07d473d0d740da9377a0aa227cca3c.jpg", "file_size": 14394, "is_delete": false, "file_type": 1, "original_file_name": "JTSS352FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c07d473d0d740da9377a0aa227cca3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c07d473d0d740da9377a0aa227cca3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c07d473d0d740da9377a0aa227cca3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c07d473d0d740da9377a0aa227cca3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c07d473d0d740da9377a0aa227cca3c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Al8y3eSnDtUo8LRDDG7_xnR42kM=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.479047+00 2025-12-09 10:15:16.479052+00 12327 23-2119#A15-领子3XL SPMX-20240815307524 \N \N \N 1 \N [{"file_id": "25437488-9ba9-4d11-adfd-fb0aeb95e087", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb026debde614ff08e90dbda811e0530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb026debde614ff08e90dbda811e0530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb026debde614ff08e90dbda811e0530.jpg", "file_size": 11888, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A15-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb026debde614ff08e90dbda811e0530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb026debde614ff08e90dbda811e0530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb026debde614ff08e90dbda811e0530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb026debde614ff08e90dbda811e0530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb026debde614ff08e90dbda811e0530.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QojD-WR1LERQHBvyaok4BCuAyAU=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.481243+00 2025-12-09 10:15:16.481248+00 12328 0004-14FWE#黄色 SPMX-20240815307528 \N \N \N 1 \N [{"file_id": "87e8b22d-2e9f-4cdb-a063-829ed4f267cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9500fd4ae4fd4c41be9299eb5df91ca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9500fd4ae4fd4c41be9299eb5df91ca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9500fd4ae4fd4c41be9299eb5df91ca6.jpg", "file_size": 19561, "is_delete": false, "file_type": 1, "original_file_name": "0004-14FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9500fd4ae4fd4c41be9299eb5df91ca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9500fd4ae4fd4c41be9299eb5df91ca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9500fd4ae4fd4c41be9299eb5df91ca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9500fd4ae4fd4c41be9299eb5df91ca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9500fd4ae4fd4c41be9299eb5df91ca6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSM9gVU02QnCUlvUmI5dF07vkXs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.483189+00 2025-12-09 10:15:16.483194+00 12329 HT20724FW#VS-D3 SPMX-20240815307521 \N \N \N 1 \N [{"file_id": "9e667339-850d-4784-b141-e30f17000861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e3bff1be34f435db3856c14c1649621.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e3bff1be34f435db3856c14c1649621.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e3bff1be34f435db3856c14c1649621.jpg", "file_size": 26708, "is_delete": false, "file_type": 1, "original_file_name": "HT20724FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3bff1be34f435db3856c14c1649621.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3bff1be34f435db3856c14c1649621.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3bff1be34f435db3856c14c1649621.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e3bff1be34f435db3856c14c1649621.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e3bff1be34f435db3856c14c1649621.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inmruZ8oZvSRdoVLwPEGR71WxYs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.485107+00 2025-12-09 10:15:16.485112+00 12330 0004-14FWE#白色 SPMX-20240815307516 \N \N \N 1 \N [{"file_id": "9139ad25-5a9b-42e3-9098-03b0b1eeb597", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c0639fbcfd24597a5c2f7d2657913a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c0639fbcfd24597a5c2f7d2657913a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c0639fbcfd24597a5c2f7d2657913a7.jpg", "file_size": 18770, "is_delete": false, "file_type": 1, "original_file_name": "0004-14FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0639fbcfd24597a5c2f7d2657913a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0639fbcfd24597a5c2f7d2657913a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0639fbcfd24597a5c2f7d2657913a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c0639fbcfd24597a5c2f7d2657913a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c0639fbcfd24597a5c2f7d2657913a7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRwyjLk7V5d6Y0vOzfLFRMulKNI=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.487231+00 2025-12-09 10:15:16.487236+00 12331 JTSS353FW#VS-D3 SPMX-20240815307522 \N \N \N 1 \N [{"file_id": "8da45e91-71c5-425b-aa17-592759ced777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98b53463c4e6438ca9d6caa0ec35bdc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98b53463c4e6438ca9d6caa0ec35bdc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98b53463c4e6438ca9d6caa0ec35bdc5.jpg", "file_size": 12146, "is_delete": false, "file_type": 1, "original_file_name": "JTSS353FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b53463c4e6438ca9d6caa0ec35bdc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b53463c4e6438ca9d6caa0ec35bdc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b53463c4e6438ca9d6caa0ec35bdc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98b53463c4e6438ca9d6caa0ec35bdc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98b53463c4e6438ca9d6caa0ec35bdc5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEHWYm80goo4X-OlQAHL5L-ff5c=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.489173+00 2025-12-09 10:15:16.489178+00 12332 C456#大红 SPMX-20240815307529 \N \N \N 1 \N [{"file_id": "7276cc9a-874b-48ac-bad0-ade38faf065a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5967054b1310467ea06b2ed1dc110682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5967054b1310467ea06b2ed1dc110682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5967054b1310467ea06b2ed1dc110682.jpg", "file_size": 64596, "is_delete": false, "file_type": 1, "original_file_name": "C456#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5967054b1310467ea06b2ed1dc110682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5967054b1310467ea06b2ed1dc110682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5967054b1310467ea06b2ed1dc110682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5967054b1310467ea06b2ed1dc110682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5967054b1310467ea06b2ed1dc110682.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ROrfVeBscYqS8EKKkzzyNemBlHk=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.491126+00 2025-12-09 10:15:16.491132+00 12333 FJ1056FW#3XL SPMX-20240815307517 \N \N \N 1 \N [{"file_id": "040049a6-a74a-4316-bd07-a98e84666a95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5090f200eb5440c5950205bfc59dc4f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5090f200eb5440c5950205bfc59dc4f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5090f200eb5440c5950205bfc59dc4f6.jpg", "file_size": 10976, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5090f200eb5440c5950205bfc59dc4f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5090f200eb5440c5950205bfc59dc4f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5090f200eb5440c5950205bfc59dc4f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5090f200eb5440c5950205bfc59dc4f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5090f200eb5440c5950205bfc59dc4f6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PQfN9TD4HZ1-Hi-_BUi_BdGMxDY=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.493359+00 2025-12-09 10:15:16.493365+00 12334 LZ1302#背心款4号色 SPMX-20240815307525 \N \N \N 1 \N [{"file_id": "08dabcf6-49de-4d39-aca7-dd43c2912d3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a5937c6da104e52831b564673037265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a5937c6da104e52831b564673037265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a5937c6da104e52831b564673037265.jpg", "file_size": 18185, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5937c6da104e52831b564673037265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5937c6da104e52831b564673037265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5937c6da104e52831b564673037265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a5937c6da104e52831b564673037265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a5937c6da104e52831b564673037265.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZIqGFYP5jjhGs9ZTdYko5Ed2U4=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.495333+00 2025-12-09 10:15:16.495338+00 12335 1118FWF#V5曲线 SPMX-20240815307518 \N \N \N 1 \N [{"file_id": "36c4906a-99d2-4337-a5bc-c36519eaab1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd76d1082f174ed3946553624780c8e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd76d1082f174ed3946553624780c8e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd76d1082f174ed3946553624780c8e6.jpg", "file_size": 27299, "is_delete": false, "file_type": 1, "original_file_name": "1118FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd76d1082f174ed3946553624780c8e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd76d1082f174ed3946553624780c8e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd76d1082f174ed3946553624780c8e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd76d1082f174ed3946553624780c8e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd76d1082f174ed3946553624780c8e6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wkvzb3RMrvO3zykiZhL7d2QpJA=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.497255+00 2025-12-09 10:15:16.49726+00 12336 81849#WJC22 SPMX-20240815307520 \N \N \N 1 \N [{"file_id": "9e559f98-1c5d-41c2-8fc8-e9ac3363f6b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "044e29302ed545458f084a842712c614.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "044e29302ed545458f084a842712c614.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "044e29302ed545458f084a842712c614.jpg", "file_size": 23286, "is_delete": false, "file_type": 1, "original_file_name": "81849#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044e29302ed545458f084a842712c614.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044e29302ed545458f084a842712c614.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044e29302ed545458f084a842712c614.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/044e29302ed545458f084a842712c614.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/044e29302ed545458f084a842712c614.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXNlQSrzqO2bt-pSwTHZqXKK_-I=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.499192+00 2025-12-09 10:15:16.499197+00 12337 FJ1056FW#L SPMX-20240815307526 \N \N \N 1 \N [{"file_id": "3e1cc263-8f6d-4425-b2da-289df2620f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55f5b3cd680345aa9cbf2929cd190b31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55f5b3cd680345aa9cbf2929cd190b31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55f5b3cd680345aa9cbf2929cd190b31.jpg", "file_size": 11619, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5b3cd680345aa9cbf2929cd190b31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5b3cd680345aa9cbf2929cd190b31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f5b3cd680345aa9cbf2929cd190b31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55f5b3cd680345aa9cbf2929cd190b31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55f5b3cd680345aa9cbf2929cd190b31.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mEueYTEcqdB88dXsXAKggjTH-FE=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.501309+00 2025-12-09 10:15:16.501314+00 12338 C455#黑色 SPMX-20240815307515 \N \N \N 1 \N [{"file_id": "e5555f51-741e-4bce-9696-84d3f9078305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "036f6751a43747e6aee52a6964d92fac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "036f6751a43747e6aee52a6964d92fac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "036f6751a43747e6aee52a6964d92fac.jpg", "file_size": 51802, "is_delete": false, "file_type": 1, "original_file_name": "C455#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036f6751a43747e6aee52a6964d92fac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036f6751a43747e6aee52a6964d92fac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/036f6751a43747e6aee52a6964d92fac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/036f6751a43747e6aee52a6964d92fac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/036f6751a43747e6aee52a6964d92fac.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSxzXQFTIogfZAStl45N6oJ8scg=", "createTime": "2024-08-15 14:53:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.503399+00 2025-12-09 10:15:16.503404+00 12339 DL31064#批布亮黄 SPMX-20240815307523 \N \N \N 1 \N [{"file_id": "abcbe28c-acd1-4998-a456-673b1606e497", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6224bc50bf7443db8fa5bc299fccfc05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6224bc50bf7443db8fa5bc299fccfc05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6224bc50bf7443db8fa5bc299fccfc05.jpg", "file_size": 19551, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6224bc50bf7443db8fa5bc299fccfc05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6224bc50bf7443db8fa5bc299fccfc05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6224bc50bf7443db8fa5bc299fccfc05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6224bc50bf7443db8fa5bc299fccfc05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6224bc50bf7443db8fa5bc299fccfc05.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1GX6Aj-QvR2b0AamwahCUVqxVs=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.505605+00 2025-12-09 10:15:16.505609+00 12340 1119#WJC22 SPMX-20240815307527 \N \N \N 1 \N [{"file_id": "d621f14b-832f-4fff-9fb3-103f7aafd393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e6c1922a12c4eeaa681a4075f53dd3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e6c1922a12c4eeaa681a4075f53dd3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e6c1922a12c4eeaa681a4075f53dd3a.jpg", "file_size": 20181, "is_delete": false, "file_type": 1, "original_file_name": "1119#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6c1922a12c4eeaa681a4075f53dd3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6c1922a12c4eeaa681a4075f53dd3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e6c1922a12c4eeaa681a4075f53dd3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e6c1922a12c4eeaa681a4075f53dd3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e6c1922a12c4eeaa681a4075f53dd3a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gC_46v26YTM89-76kC8uOYxWkBw=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.507538+00 2025-12-09 10:15:16.507543+00 12341 LJH0100-5#黑色底 SPMX-20240815307519 \N \N \N 1 \N [{"file_id": "c11d8bdd-8b0b-4a93-896d-d0a6ffeb3ffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc162e88948843e1b6a60fa080607832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc162e88948843e1b6a60fa080607832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc162e88948843e1b6a60fa080607832.jpg", "file_size": 59579, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-5#黑色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc162e88948843e1b6a60fa080607832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc162e88948843e1b6a60fa080607832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc162e88948843e1b6a60fa080607832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc162e88948843e1b6a60fa080607832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc162e88948843e1b6a60fa080607832.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:si6H02pdjULUCJ-NqlPIq6aBRxM=", "createTime": "2024-08-15 14:53:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.509455+00 2025-12-09 10:15:16.50946+00 12342 HT20725FW#VS-D3 SPMX-20240815307531 \N \N \N 1 \N [{"file_id": "23ae7ae3-af74-414e-a1b6-8e422cb204b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11146fbc11f14241afe2fe31597fb886.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11146fbc11f14241afe2fe31597fb886.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11146fbc11f14241afe2fe31597fb886.jpg", "file_size": 14330, "is_delete": false, "file_type": 1, "original_file_name": "HT20725FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11146fbc11f14241afe2fe31597fb886.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11146fbc11f14241afe2fe31597fb886.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11146fbc11f14241afe2fe31597fb886.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11146fbc11f14241afe2fe31597fb886.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11146fbc11f14241afe2fe31597fb886.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMr2uCFLeOVefmWYsabqjDlfapg=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.51137+00 2025-12-09 10:15:16.511375+00 12343 1119FWE#红色 SPMX-20240815307539 \N \N \N 1 \N [{"file_id": "0305202c-19fa-4779-9aaf-5df68d794241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "052c6e82b5e641398857f934d58f9249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "052c6e82b5e641398857f934d58f9249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "052c6e82b5e641398857f934d58f9249.jpg", "file_size": 20533, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052c6e82b5e641398857f934d58f9249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052c6e82b5e641398857f934d58f9249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052c6e82b5e641398857f934d58f9249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/052c6e82b5e641398857f934d58f9249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/052c6e82b5e641398857f934d58f9249.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eLJqTEjETPT9sYcfp9ryLXdR6d0=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.51327+00 2025-12-09 10:15:16.513275+00 12344 LJH0100-6#RC23 SPMX-20240815307532 \N \N \N 1 \N [{"file_id": "32f493e4-b437-473b-8211-aad96fe45784", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7134282739741da83591517e4450ceb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7134282739741da83591517e4450ceb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7134282739741da83591517e4450ceb.jpg", "file_size": 57400, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7134282739741da83591517e4450ceb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7134282739741da83591517e4450ceb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7134282739741da83591517e4450ceb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7134282739741da83591517e4450ceb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7134282739741da83591517e4450ceb.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwmgPtic2DVj6Kk8SaqjtGiXWaI=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.515382+00 2025-12-09 10:15:16.515386+00 12345 LZ1302#背心款5号色 SPMX-20240815307536 \N \N \N 1 \N [{"file_id": "adb403e3-bb22-4fda-b337-71c185d03bc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53c1825c2d494a8b962b251bc0492949.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53c1825c2d494a8b962b251bc0492949.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53c1825c2d494a8b962b251bc0492949.jpg", "file_size": 17704, "is_delete": false, "file_type": 1, "original_file_name": "LZ1302#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c1825c2d494a8b962b251bc0492949.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c1825c2d494a8b962b251bc0492949.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c1825c2d494a8b962b251bc0492949.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53c1825c2d494a8b962b251bc0492949.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53c1825c2d494a8b962b251bc0492949.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqRejBlPyuPpX8DitiWrSa-oaz0=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.517324+00 2025-12-09 10:15:16.517329+00 12346 FJ1056FW#L黄色 SPMX-20240815307534 \N \N \N 1 \N [{"file_id": "64dd1a40-9c87-491f-a9d9-d7c5c6768074", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2df2bae256914cd4a61a9725ee74fce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2df2bae256914cd4a61a9725ee74fce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2df2bae256914cd4a61a9725ee74fce2.jpg", "file_size": 16103, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#L黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df2bae256914cd4a61a9725ee74fce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df2bae256914cd4a61a9725ee74fce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df2bae256914cd4a61a9725ee74fce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2df2bae256914cd4a61a9725ee74fce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2df2bae256914cd4a61a9725ee74fce2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qo-B8tK-LzRN91YrKu3QKzwGV54=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.519438+00 2025-12-09 10:15:16.519442+00 12347 C456#玫戏 SPMX-20240815307541 \N \N \N 1 \N [{"file_id": "af201faf-0d44-4de7-aeec-207f1c91bf9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "709552cf49ff4c8c82923f8debfbd3a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "709552cf49ff4c8c82923f8debfbd3a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "709552cf49ff4c8c82923f8debfbd3a0.jpg", "file_size": 59844, "is_delete": false, "file_type": 1, "original_file_name": "C456#玫戏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709552cf49ff4c8c82923f8debfbd3a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709552cf49ff4c8c82923f8debfbd3a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709552cf49ff4c8c82923f8debfbd3a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/709552cf49ff4c8c82923f8debfbd3a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/709552cf49ff4c8c82923f8debfbd3a0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdCal76E-lyd2lbZYb3chymLBSc=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.521339+00 2025-12-09 10:15:16.521344+00 12348 JTSS355FW#VS-D3 SPMX-20240815307543 \N \N \N 1 \N [{"file_id": "dd7c493d-8aab-460a-b1c2-e6822b164bec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fd965b7c8fc467a8319d5485836f2ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fd965b7c8fc467a8319d5485836f2ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fd965b7c8fc467a8319d5485836f2ff.jpg", "file_size": 10349, "is_delete": false, "file_type": 1, "original_file_name": "JTSS355FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd965b7c8fc467a8319d5485836f2ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd965b7c8fc467a8319d5485836f2ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd965b7c8fc467a8319d5485836f2ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fd965b7c8fc467a8319d5485836f2ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fd965b7c8fc467a8319d5485836f2ff.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CGclzlnACnXvEIJpSmtaFmKwvs=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.523468+00 2025-12-09 10:15:16.523473+00 12349 8186FWE#枣红2XL SPMX-20240815307530 \N \N \N 1 \N [{"file_id": "d6b3162a-b307-4df1-bdad-321981c5d033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f88b01db6e24d4489a1e292c63738c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f88b01db6e24d4489a1e292c63738c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f88b01db6e24d4489a1e292c63738c1.jpg", "file_size": 21394, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#枣红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f88b01db6e24d4489a1e292c63738c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f88b01db6e24d4489a1e292c63738c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f88b01db6e24d4489a1e292c63738c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f88b01db6e24d4489a1e292c63738c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f88b01db6e24d4489a1e292c63738c1.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swrDLjY641lqFSVDlRKg5Z1QDJA=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.525395+00 2025-12-09 10:15:16.525401+00 12350 23-2119#A15-领子4XL SPMX-20240815307535 \N \N \N 1 \N [{"file_id": "3b2e7510-0720-496e-b5ba-789186bf4855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff3e48028a5f4d8f9e4db4cf7158abbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff3e48028a5f4d8f9e4db4cf7158abbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff3e48028a5f4d8f9e4db4cf7158abbc.jpg", "file_size": 11830, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A15-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff3e48028a5f4d8f9e4db4cf7158abbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff3e48028a5f4d8f9e4db4cf7158abbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff3e48028a5f4d8f9e4db4cf7158abbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff3e48028a5f4d8f9e4db4cf7158abbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff3e48028a5f4d8f9e4db4cf7158abbc.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ye4fVplBg5w2OMUZAAmwFFOWii8=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.527569+00 2025-12-09 10:15:16.527574+00 12351 8186FWE#枣红L SPMX-20240815307540 \N \N \N 1 \N [{"file_id": "9faca0b8-3ed3-4540-b3f7-a98839efdde7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ccf269dba934795a9e556c0647cd8f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ccf269dba934795a9e556c0647cd8f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ccf269dba934795a9e556c0647cd8f1.jpg", "file_size": 21406, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccf269dba934795a9e556c0647cd8f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccf269dba934795a9e556c0647cd8f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ccf269dba934795a9e556c0647cd8f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ccf269dba934795a9e556c0647cd8f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ccf269dba934795a9e556c0647cd8f1.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xd-AepKEWsSzTu43-rfNYgRKqEo=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.529457+00 2025-12-09 10:15:16.529462+00 12352 JTSS354FW#VS-D3 SPMX-20240815307533 \N \N \N 1 \N [{"file_id": "96908794-40c2-4a19-8b27-4d48562f6655", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6ded3e7243640899ad68c08ceb46c7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6ded3e7243640899ad68c08ceb46c7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6ded3e7243640899ad68c08ceb46c7b.jpg", "file_size": 13397, "is_delete": false, "file_type": 1, "original_file_name": "JTSS354FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ded3e7243640899ad68c08ceb46c7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ded3e7243640899ad68c08ceb46c7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ded3e7243640899ad68c08ceb46c7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6ded3e7243640899ad68c08ceb46c7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6ded3e7243640899ad68c08ceb46c7b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:41JwEMlKb8TrozSQPFQBPU_8gl4=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.531355+00 2025-12-09 10:15:16.53136+00 12353 HT2112FWE#净色 SPMX-20240815307542 \N \N \N 1 \N [{"file_id": "3186a7c0-bf48-40ed-8462-68f5a0c895b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1abcbeeb768428baf606cb8525738dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1abcbeeb768428baf606cb8525738dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1abcbeeb768428baf606cb8525738dd.jpg", "file_size": 5666, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1abcbeeb768428baf606cb8525738dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1abcbeeb768428baf606cb8525738dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1abcbeeb768428baf606cb8525738dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1abcbeeb768428baf606cb8525738dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1abcbeeb768428baf606cb8525738dd.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqXaweeeMhPxtrIZGCSz4YJHOTE=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.533499+00 2025-12-09 10:15:16.533505+00 12354 0004-14FWE#黑色 SPMX-20240815307538 \N \N \N 1 \N [{"file_id": "52066ddf-9533-47a5-9488-528d0a75d34a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e300efcb4da4497ac58c9df9e143bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e300efcb4da4497ac58c9df9e143bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e300efcb4da4497ac58c9df9e143bc6.jpg", "file_size": 16573, "is_delete": false, "file_type": 1, "original_file_name": "0004-14FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e300efcb4da4497ac58c9df9e143bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e300efcb4da4497ac58c9df9e143bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e300efcb4da4497ac58c9df9e143bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e300efcb4da4497ac58c9df9e143bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e300efcb4da4497ac58c9df9e143bc6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2GsJId7BnJ1jHVvyQrTbGZoaBI=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.535414+00 2025-12-09 10:15:16.535419+00 12355 DL31064#批布彩兰 SPMX-20240815307537 \N \N \N 1 \N [{"file_id": "7ba958e3-93fc-47d2-909f-36e5faf1f08e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43e53dc7ddb9461a9ed3c27ca03d2f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43e53dc7ddb9461a9ed3c27ca03d2f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43e53dc7ddb9461a9ed3c27ca03d2f07.jpg", "file_size": 19039, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e53dc7ddb9461a9ed3c27ca03d2f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e53dc7ddb9461a9ed3c27ca03d2f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43e53dc7ddb9461a9ed3c27ca03d2f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43e53dc7ddb9461a9ed3c27ca03d2f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43e53dc7ddb9461a9ed3c27ca03d2f07.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJFhCRXpHP1FepX07TZ6IuqYRA0=", "createTime": "2024-08-15 14:53:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.537518+00 2025-12-09 10:15:16.537523+00 12356 23-2119#A2-3XL SPMX-20240815307546 \N \N \N 1 \N [{"file_id": "6d45222c-3745-4a68-b10b-0a0b660e0a7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a3274365e8a4911a2c489f9e37d0b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a3274365e8a4911a2c489f9e37d0b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a3274365e8a4911a2c489f9e37d0b7d.jpg", "file_size": 19414, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3274365e8a4911a2c489f9e37d0b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3274365e8a4911a2c489f9e37d0b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3274365e8a4911a2c489f9e37d0b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a3274365e8a4911a2c489f9e37d0b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a3274365e8a4911a2c489f9e37d0b7d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c82JSvWZy3q3i4LYR21aKfagx3I=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.539382+00 2025-12-09 10:15:16.539387+00 12357 LJH0100-7#白色 SPMX-20240815307544 \N \N \N 1 \N [{"file_id": "29012175-07c2-422e-8fa2-36303c2756da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9542d6ad57546f4ace0fb3a65029d04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9542d6ad57546f4ace0fb3a65029d04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9542d6ad57546f4ace0fb3a65029d04.jpg", "file_size": 66360, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-7#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9542d6ad57546f4ace0fb3a65029d04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9542d6ad57546f4ace0fb3a65029d04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9542d6ad57546f4ace0fb3a65029d04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9542d6ad57546f4ace0fb3a65029d04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9542d6ad57546f4ace0fb3a65029d04.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5OnQ0S-_E5H8VZWxL_n-PDaVWw=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.541525+00 2025-12-09 10:15:16.54153+00 12358 DL31064#批布枣红 SPMX-20240815307545 \N \N \N 1 \N [{"file_id": "df8b84de-40d1-466a-8eba-7a2afdf1d8e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "453c0a47fd774cd6a4758cef7da9dbef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "453c0a47fd774cd6a4758cef7da9dbef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "453c0a47fd774cd6a4758cef7da9dbef.jpg", "file_size": 19091, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/453c0a47fd774cd6a4758cef7da9dbef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/453c0a47fd774cd6a4758cef7da9dbef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/453c0a47fd774cd6a4758cef7da9dbef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/453c0a47fd774cd6a4758cef7da9dbef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/453c0a47fd774cd6a4758cef7da9dbef.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9HHSJGmflAfzTIQ_OmDHmfxjSk=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.543671+00 2025-12-09 10:15:16.543676+00 12359 C456#玫红 SPMX-20240815307552 \N \N \N 1 \N [{"file_id": "200b5787-3dd1-479f-8290-6365f47fac1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e3b08a09008414986d148bcb8555334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e3b08a09008414986d148bcb8555334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e3b08a09008414986d148bcb8555334.jpg", "file_size": 59844, "is_delete": false, "file_type": 1, "original_file_name": "C456#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3b08a09008414986d148bcb8555334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3b08a09008414986d148bcb8555334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3b08a09008414986d148bcb8555334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e3b08a09008414986d148bcb8555334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e3b08a09008414986d148bcb8555334.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKldXTSDXZ9wqJfK_ZAFBCvCJug=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.545586+00 2025-12-09 10:15:16.545591+00 12360 1119FWE#绿色 SPMX-20240815307559 \N \N \N 1 \N [{"file_id": "3e2161a1-b517-4ed8-92e6-ad1e381f4eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cdb18cb3cbe4af0812624e2b589664a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cdb18cb3cbe4af0812624e2b589664a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cdb18cb3cbe4af0812624e2b589664a.jpg", "file_size": 20122, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cdb18cb3cbe4af0812624e2b589664a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cdb18cb3cbe4af0812624e2b589664a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cdb18cb3cbe4af0812624e2b589664a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cdb18cb3cbe4af0812624e2b589664a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cdb18cb3cbe4af0812624e2b589664a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nd22o6aIrigXqPMBiTSKbUydbMY=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.547476+00 2025-12-09 10:15:16.547482+00 12361 DL31064#批布水红 SPMX-20240815307555 \N \N \N 1 \N [{"file_id": "89945562-6729-4bf5-9d73-6e790d00be41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95e78e6a39fb487b81915307dceaf133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95e78e6a39fb487b81915307dceaf133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95e78e6a39fb487b81915307dceaf133.jpg", "file_size": 18629, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e78e6a39fb487b81915307dceaf133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e78e6a39fb487b81915307dceaf133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e78e6a39fb487b81915307dceaf133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95e78e6a39fb487b81915307dceaf133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95e78e6a39fb487b81915307dceaf133.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5R7WWW3AjIo-CwV3xUE7jMN3Zs=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.54961+00 2025-12-09 10:15:16.549615+00 12362 FJ1056FW#M SPMX-20240815307549 \N \N \N 1 \N [{"file_id": "82a075b0-91f6-4c00-96a1-6851af53fd8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c885de2d7674188bb8d14a4832335b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c885de2d7674188bb8d14a4832335b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c885de2d7674188bb8d14a4832335b5.jpg", "file_size": 12104, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c885de2d7674188bb8d14a4832335b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c885de2d7674188bb8d14a4832335b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c885de2d7674188bb8d14a4832335b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c885de2d7674188bb8d14a4832335b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c885de2d7674188bb8d14a4832335b5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vGXiMZPD5XBs9gjyvfj9rmIk88=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.551493+00 2025-12-09 10:15:16.551498+00 12363 HT2112FWE#正身2XL SPMX-20240815307554 \N \N \N 1 \N [{"file_id": "66169f97-7b90-4641-a51f-53c551e45032", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae66da1e8ec24d8080566ed001d288ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae66da1e8ec24d8080566ed001d288ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae66da1e8ec24d8080566ed001d288ce.jpg", "file_size": 16556, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#正身2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66da1e8ec24d8080566ed001d288ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66da1e8ec24d8080566ed001d288ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae66da1e8ec24d8080566ed001d288ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae66da1e8ec24d8080566ed001d288ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae66da1e8ec24d8080566ed001d288ce.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHrJ9gpqESg9FPPHMa0BPED6GPY=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.553771+00 2025-12-09 10:15:16.553777+00 12364 0004-15FWE#粉色 SPMX-20240815307550 \N \N \N 1 \N [{"file_id": "a60fa1aa-5fa8-4dcc-a35a-9cbcd4a3f9e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "005153a16251428680a22b5d3ef42984.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "005153a16251428680a22b5d3ef42984.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "005153a16251428680a22b5d3ef42984.jpg", "file_size": 6218, "is_delete": false, "file_type": 1, "original_file_name": "0004-15FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005153a16251428680a22b5d3ef42984.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005153a16251428680a22b5d3ef42984.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005153a16251428680a22b5d3ef42984.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/005153a16251428680a22b5d3ef42984.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/005153a16251428680a22b5d3ef42984.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tncQDp61VYe2nsqw--V2Pisg0pk=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.556674+00 2025-12-09 10:15:16.556681+00 12365 23-2119#A2-4XL SPMX-20240815307557 \N \N \N 1 \N [{"file_id": "e7122fe2-959b-45fb-8e9a-8a7397632251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fac51bf4f3df485ba4f7f321463b5201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fac51bf4f3df485ba4f7f321463b5201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fac51bf4f3df485ba4f7f321463b5201.jpg", "file_size": 18468, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac51bf4f3df485ba4f7f321463b5201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac51bf4f3df485ba4f7f321463b5201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac51bf4f3df485ba4f7f321463b5201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fac51bf4f3df485ba4f7f321463b5201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fac51bf4f3df485ba4f7f321463b5201.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nvoKew7C82p_lkpqE0CI0TMhdtg=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.559358+00 2025-12-09 10:15:16.559365+00 12366 8186FWE#枣红XL SPMX-20240815307551 \N \N \N 1 \N [{"file_id": "7facbbdc-f96e-4b24-98ea-97989b29bbbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05b532fe48c34be2a734ab8615fd9afd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05b532fe48c34be2a734ab8615fd9afd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05b532fe48c34be2a734ab8615fd9afd.jpg", "file_size": 21198, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b532fe48c34be2a734ab8615fd9afd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b532fe48c34be2a734ab8615fd9afd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b532fe48c34be2a734ab8615fd9afd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05b532fe48c34be2a734ab8615fd9afd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05b532fe48c34be2a734ab8615fd9afd.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CT1QK7yXojvTrBGqsTlkJoGcaVU=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.561929+00 2025-12-09 10:15:16.561934+00 12367 LJH0100-7#绿色 SPMX-20240815307558 \N \N \N 1 \N [{"file_id": "96f05836-7cfc-41a4-81b8-58fcaa33559f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "921a297c4c3647cd92884acebae720e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "921a297c4c3647cd92884acebae720e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "921a297c4c3647cd92884acebae720e3.jpg", "file_size": 64263, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-7#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921a297c4c3647cd92884acebae720e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921a297c4c3647cd92884acebae720e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921a297c4c3647cd92884acebae720e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/921a297c4c3647cd92884acebae720e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/921a297c4c3647cd92884acebae720e3.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ulGBBrxnbaLow6ys6bgT5jmzhA=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.564252+00 2025-12-09 10:15:16.564258+00 12368 1119FWE#红色净色 SPMX-20240815307548 \N \N \N 1 \N [{"file_id": "f337e4ca-ed6f-4e58-bd24-428113757e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "846e654bcd954ded9022fda3e33ec493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "846e654bcd954ded9022fda3e33ec493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "846e654bcd954ded9022fda3e33ec493.jpg", "file_size": 8702, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#红色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/846e654bcd954ded9022fda3e33ec493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/846e654bcd954ded9022fda3e33ec493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/846e654bcd954ded9022fda3e33ec493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/846e654bcd954ded9022fda3e33ec493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/846e654bcd954ded9022fda3e33ec493.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bPpmCrxQtdQbjE9Is2bXQB-RvoM=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.56674+00 2025-12-09 10:15:16.566746+00 12369 LZ1303#捆条布 SPMX-20240815307547 \N \N \N 1 \N [{"file_id": "de8238ed-ca33-4277-bad7-251bf1b4fc82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2fe5ba239e540cf8be7d97a921b3677.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2fe5ba239e540cf8be7d97a921b3677.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2fe5ba239e540cf8be7d97a921b3677.jpg", "file_size": 22353, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2fe5ba239e540cf8be7d97a921b3677.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2fe5ba239e540cf8be7d97a921b3677.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2fe5ba239e540cf8be7d97a921b3677.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2fe5ba239e540cf8be7d97a921b3677.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2fe5ba239e540cf8be7d97a921b3677.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RTZDAG3D9w7i1je4xrt-fHh_Fns=", "createTime": "2024-08-15 14:53:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.569246+00 2025-12-09 10:15:16.56925+00 12370 JTSS356FW#VS-D3 SPMX-20240815307553 \N \N \N 1 \N [{"file_id": "006dde08-f85c-4d53-ab11-828174ab4662", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6922da9e1cda4c34a8529a7ac2cb11c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6922da9e1cda4c34a8529a7ac2cb11c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6922da9e1cda4c34a8529a7ac2cb11c2.jpg", "file_size": 13761, "is_delete": false, "file_type": 1, "original_file_name": "JTSS356FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6922da9e1cda4c34a8529a7ac2cb11c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6922da9e1cda4c34a8529a7ac2cb11c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6922da9e1cda4c34a8529a7ac2cb11c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6922da9e1cda4c34a8529a7ac2cb11c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6922da9e1cda4c34a8529a7ac2cb11c2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8V1JbacClqPLBq9zB0PUKoAzdD0=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.571788+00 2025-12-09 10:15:16.571793+00 12371 LZ1303#背心款1号色 SPMX-20240815307556 \N \N \N 1 \N [{"file_id": "27da23e3-c683-4928-baf2-6a90c96cf152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b0ee7e7230e4b279360e197dfc961d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b0ee7e7230e4b279360e197dfc961d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b0ee7e7230e4b279360e197dfc961d0.jpg", "file_size": 19044, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0ee7e7230e4b279360e197dfc961d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0ee7e7230e4b279360e197dfc961d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0ee7e7230e4b279360e197dfc961d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b0ee7e7230e4b279360e197dfc961d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b0ee7e7230e4b279360e197dfc961d0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QyUY4WEZaxtitMKglL0cJ4FnSFU=", "createTime": "2024-08-15 14:53:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.574281+00 2025-12-09 10:15:16.574286+00 12372 8186FWE#绿色2XL SPMX-20240815307562 \N \N \N 1 \N [{"file_id": "fc0398ea-ef5f-4826-97af-86ad8750d9cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79c4e869c8b34635b8c21f84341f1546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79c4e869c8b34635b8c21f84341f1546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79c4e869c8b34635b8c21f84341f1546.jpg", "file_size": 20751, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c4e869c8b34635b8c21f84341f1546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c4e869c8b34635b8c21f84341f1546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c4e869c8b34635b8c21f84341f1546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79c4e869c8b34635b8c21f84341f1546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79c4e869c8b34635b8c21f84341f1546.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUbkRGjEam7r_v_tb7zwN3hZDPs=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.576828+00 2025-12-09 10:15:16.576833+00 12373 0004-15FWE#蓝色 SPMX-20240815307563 \N \N \N 1 \N [{"file_id": "8175c937-34a1-43a2-aac6-f805d62efc16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "778f86666ebd45d78d5f37d821650483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "778f86666ebd45d78d5f37d821650483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "778f86666ebd45d78d5f37d821650483.jpg", "file_size": 6276, "is_delete": false, "file_type": 1, "original_file_name": "0004-15FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778f86666ebd45d78d5f37d821650483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778f86666ebd45d78d5f37d821650483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/778f86666ebd45d78d5f37d821650483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/778f86666ebd45d78d5f37d821650483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/778f86666ebd45d78d5f37d821650483.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWc6BgbdowneDqHS5GwBMKnf0tk=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.579402+00 2025-12-09 10:15:16.579407+00 12374 FJ1056FW#XL SPMX-20240815307571 \N \N \N 1 \N [{"file_id": "1386bbd8-c11a-4647-bde7-f6b99fa921d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a29abc7decb14328bbd907f5e9b6e873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a29abc7decb14328bbd907f5e9b6e873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a29abc7decb14328bbd907f5e9b6e873.jpg", "file_size": 11284, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29abc7decb14328bbd907f5e9b6e873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29abc7decb14328bbd907f5e9b6e873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29abc7decb14328bbd907f5e9b6e873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a29abc7decb14328bbd907f5e9b6e873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a29abc7decb14328bbd907f5e9b6e873.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h6n_d7TWsflDQrMYygC351riQic=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.581679+00 2025-12-09 10:15:16.581685+00 12375 FJ1056FW#S SPMX-20240815307560 \N \N \N 1 \N [{"file_id": "893c7f59-2c96-45c3-881c-3a747a0d31f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cee04c8308b24b46b40a4872d584c0b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cee04c8308b24b46b40a4872d584c0b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cee04c8308b24b46b40a4872d584c0b5.jpg", "file_size": 12104, "is_delete": false, "file_type": 1, "original_file_name": "FJ1056FW#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee04c8308b24b46b40a4872d584c0b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee04c8308b24b46b40a4872d584c0b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee04c8308b24b46b40a4872d584c0b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cee04c8308b24b46b40a4872d584c0b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cee04c8308b24b46b40a4872d584c0b5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VxXvbfgI9CSQqgjj7HKfzJwNlQc=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.583954+00 2025-12-09 10:15:16.583961+00 12376 HT2112FWE#正身L SPMX-20240815307566 \N \N \N 1 \N [{"file_id": "fd435233-fa8a-438a-b281-f292a857d57d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e3455ada7924f988b0b7e72ca03bc5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e3455ada7924f988b0b7e72ca03bc5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e3455ada7924f988b0b7e72ca03bc5f.jpg", "file_size": 17760, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3455ada7924f988b0b7e72ca03bc5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3455ada7924f988b0b7e72ca03bc5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3455ada7924f988b0b7e72ca03bc5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e3455ada7924f988b0b7e72ca03bc5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e3455ada7924f988b0b7e72ca03bc5f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6u6BtHY4HPGAuI-8DrhPbYMYUE8=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.589242+00 2025-12-09 10:15:16.589252+00 12377 LJH0100-7#黑色 SPMX-20240815307570 \N \N \N 1 \N [{"file_id": "0eeaf22a-8414-471e-a462-66a89af2ed03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c185fd9f05a4b59b62d25539c5103e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c185fd9f05a4b59b62d25539c5103e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c185fd9f05a4b59b62d25539c5103e9.jpg", "file_size": 65108, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-7#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c185fd9f05a4b59b62d25539c5103e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c185fd9f05a4b59b62d25539c5103e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c185fd9f05a4b59b62d25539c5103e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c185fd9f05a4b59b62d25539c5103e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c185fd9f05a4b59b62d25539c5103e9.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cKXRRhXT61W7oBLZbSxyRDCZR0Y=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.591979+00 2025-12-09 10:15:16.591986+00 12378 JTSS356FW#VS-D3大 SPMX-20240815307564 \N \N \N 1 \N [{"file_id": "ff8718d0-2233-4083-88fb-e12c3cfcf4c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12765195bfc64cc2a852a9b5e1772016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12765195bfc64cc2a852a9b5e1772016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12765195bfc64cc2a852a9b5e1772016.jpg", "file_size": 13761, "is_delete": false, "file_type": 1, "original_file_name": "JTSS356FW#VS-D3大.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12765195bfc64cc2a852a9b5e1772016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12765195bfc64cc2a852a9b5e1772016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12765195bfc64cc2a852a9b5e1772016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12765195bfc64cc2a852a9b5e1772016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12765195bfc64cc2a852a9b5e1772016.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMtyK0NofozzDR68PsiA4y6d_l4=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.594558+00 2025-12-09 10:15:16.594565+00 12379 LZ1303#背心款2号色 SPMX-20240815307567 \N \N \N 1 \N [{"file_id": "8e773e88-4611-4e28-93fa-e706296c7786", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af9d6b08b97f45f18de590d0a37862d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af9d6b08b97f45f18de590d0a37862d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af9d6b08b97f45f18de590d0a37862d0.jpg", "file_size": 19242, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9d6b08b97f45f18de590d0a37862d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9d6b08b97f45f18de590d0a37862d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af9d6b08b97f45f18de590d0a37862d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af9d6b08b97f45f18de590d0a37862d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af9d6b08b97f45f18de590d0a37862d0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYmMJ3oiLeD40LQcXpO6jDgB1Oo=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.597048+00 2025-12-09 10:15:16.597055+00 12380 1119FWE#绿色净色 SPMX-20240815307568 \N \N \N 1 \N [{"file_id": "76ab631b-e56d-4415-a0c5-a6e7e3cda75a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37f82df05f3048aaa9edb72b4dfd86f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37f82df05f3048aaa9edb72b4dfd86f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37f82df05f3048aaa9edb72b4dfd86f3.jpg", "file_size": 8137, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f82df05f3048aaa9edb72b4dfd86f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f82df05f3048aaa9edb72b4dfd86f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f82df05f3048aaa9edb72b4dfd86f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37f82df05f3048aaa9edb72b4dfd86f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37f82df05f3048aaa9edb72b4dfd86f3.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z218bGdVwtm_nZzyCx7m3qfn7Dw=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.599456+00 2025-12-09 10:15:16.599461+00 12381 23-2119#A2-领子3XL SPMX-20240815307569 \N \N \N 1 \N [{"file_id": "4d0bd842-31a2-46d8-a8e2-c9ebf10c9c97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ad40e45e93499893415d94b3a6190a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ad40e45e93499893415d94b3a6190a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ad40e45e93499893415d94b3a6190a.jpg", "file_size": 11534, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad40e45e93499893415d94b3a6190a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad40e45e93499893415d94b3a6190a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ad40e45e93499893415d94b3a6190a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ad40e45e93499893415d94b3a6190a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ad40e45e93499893415d94b3a6190a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3UV6_9tz3lGtXUe2Lyxb6zYbZU=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.60181+00 2025-12-09 10:15:16.601815+00 12382 C456#白底黑 SPMX-20240815307561 \N \N \N 1 \N [{"file_id": "239db82d-b449-4307-935e-9f091cefebf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e039ee6c8c724edfa5b6d0b0bbb4b388.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e039ee6c8c724edfa5b6d0b0bbb4b388.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e039ee6c8c724edfa5b6d0b0bbb4b388.jpg", "file_size": 57866, "is_delete": false, "file_type": 1, "original_file_name": "C456#白底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e039ee6c8c724edfa5b6d0b0bbb4b388.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e039ee6c8c724edfa5b6d0b0bbb4b388.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e039ee6c8c724edfa5b6d0b0bbb4b388.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e039ee6c8c724edfa5b6d0b0bbb4b388.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e039ee6c8c724edfa5b6d0b0bbb4b388.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8VNer0tfEnVuNeIeOOpkVy8hGw=", "createTime": "2024-08-15 14:53:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.604121+00 2025-12-09 10:15:16.604127+00 12383 JTSS357FW#VS-D3 SPMX-20240815307572 \N \N \N 1 \N [{"file_id": "4b86f960-5420-4997-a2bf-2232fff48dde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70cec00b5bbf45238e1d5c17d8dc3b83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70cec00b5bbf45238e1d5c17d8dc3b83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70cec00b5bbf45238e1d5c17d8dc3b83.jpg", "file_size": 14671, "is_delete": false, "file_type": 1, "original_file_name": "JTSS357FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cec00b5bbf45238e1d5c17d8dc3b83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cec00b5bbf45238e1d5c17d8dc3b83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cec00b5bbf45238e1d5c17d8dc3b83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70cec00b5bbf45238e1d5c17d8dc3b83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70cec00b5bbf45238e1d5c17d8dc3b83.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6yYmVsDueaIiLJazBSLsTM45tk=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.60643+00 2025-12-09 10:15:16.606436+00 12384 1119FWE#蓝色 SPMX-20240815307580 \N \N \N 1 \N [{"file_id": "15eb297c-e3bb-4f54-ae9a-deedfc55a042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b8ba01ef5be454dba9118c335933743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b8ba01ef5be454dba9118c335933743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b8ba01ef5be454dba9118c335933743.jpg", "file_size": 21767, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8ba01ef5be454dba9118c335933743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8ba01ef5be454dba9118c335933743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8ba01ef5be454dba9118c335933743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b8ba01ef5be454dba9118c335933743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b8ba01ef5be454dba9118c335933743.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvFBg6CSJH3mIpIHrDZNQAyblcc=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.608511+00 2025-12-09 10:15:16.608517+00 12385 HT2112FWE#正身M SPMX-20240815307575 \N \N \N 1 \N [{"file_id": "45df7075-3ebc-4e3c-a740-e4e94a467bce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1338119c07e7432486204d8c2ee50207.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1338119c07e7432486204d8c2ee50207.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1338119c07e7432486204d8c2ee50207.jpg", "file_size": 17476, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1338119c07e7432486204d8c2ee50207.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1338119c07e7432486204d8c2ee50207.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1338119c07e7432486204d8c2ee50207.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1338119c07e7432486204d8c2ee50207.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1338119c07e7432486204d8c2ee50207.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uscSR94FuqO9_nXCTu_H11CLzoc=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.610872+00 2025-12-09 10:15:16.610878+00 12386 8186FWE#绿色XL SPMX-20240815307584 \N \N \N 1 \N [{"file_id": "bc64896a-60e5-44f4-9306-ebb787e2b4da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9d0078ee6ad411a9b3314474bc4437f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9d0078ee6ad411a9b3314474bc4437f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9d0078ee6ad411a9b3314474bc4437f.jpg", "file_size": 20456, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d0078ee6ad411a9b3314474bc4437f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d0078ee6ad411a9b3314474bc4437f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d0078ee6ad411a9b3314474bc4437f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9d0078ee6ad411a9b3314474bc4437f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9d0078ee6ad411a9b3314474bc4437f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgzBbUYhHVW9HWrYYL9HVVRbFCA=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.613165+00 2025-12-09 10:15:16.61317+00 12387 C456#黑底白 SPMX-20240815307585 \N \N \N 1 \N [{"file_id": "f022aedd-86ad-431f-a966-516d2e40dc25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6209ad6f4576420fbff91d1af5795f96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6209ad6f4576420fbff91d1af5795f96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6209ad6f4576420fbff91d1af5795f96.jpg", "file_size": 57553, "is_delete": false, "file_type": 1, "original_file_name": "C456#黑底白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6209ad6f4576420fbff91d1af5795f96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6209ad6f4576420fbff91d1af5795f96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6209ad6f4576420fbff91d1af5795f96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6209ad6f4576420fbff91d1af5795f96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6209ad6f4576420fbff91d1af5795f96.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quQeZFy4THeF_-QVCUP87kM95jw=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.615464+00 2025-12-09 10:15:16.61547+00 12388 8186FWE#绿色L SPMX-20240815307574 \N \N \N 1 \N [{"file_id": "c20ff949-7bd2-4019-b1e1-c4462fa852fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a3412281294597a58316f50092c4c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a3412281294597a58316f50092c4c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a3412281294597a58316f50092c4c8.jpg", "file_size": 21046, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a3412281294597a58316f50092c4c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a3412281294597a58316f50092c4c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a3412281294597a58316f50092c4c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a3412281294597a58316f50092c4c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a3412281294597a58316f50092c4c8.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxAwGuhThhjEZcPyhcB1_cMkXkg=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.617542+00 2025-12-09 10:15:16.617548+00 12389 DL31064#批布蓝绿 SPMX-20240815307576 \N \N \N 1 \N [{"file_id": "40088e2a-018e-4446-9429-4ccfd87e32b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e93c4e6e1574288bfafe954a2e5bc4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e93c4e6e1574288bfafe954a2e5bc4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e93c4e6e1574288bfafe954a2e5bc4d.jpg", "file_size": 18861, "is_delete": false, "file_type": 1, "original_file_name": "DL31064#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e93c4e6e1574288bfafe954a2e5bc4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e93c4e6e1574288bfafe954a2e5bc4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e93c4e6e1574288bfafe954a2e5bc4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e93c4e6e1574288bfafe954a2e5bc4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e93c4e6e1574288bfafe954a2e5bc4d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2geU7xWEgQJapG13axvzI1ciEYg=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.619623+00 2025-12-09 10:15:16.619629+00 12390 23-2119#A2-领子4XL SPMX-20240815307579 \N \N \N 1 \N [{"file_id": "d00fd111-4516-4cf4-8b55-f5ef583befe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf7c1a9222d64588a71989ba9a03d358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf7c1a9222d64588a71989ba9a03d358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf7c1a9222d64588a71989ba9a03d358.jpg", "file_size": 11475, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7c1a9222d64588a71989ba9a03d358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7c1a9222d64588a71989ba9a03d358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7c1a9222d64588a71989ba9a03d358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf7c1a9222d64588a71989ba9a03d358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf7c1a9222d64588a71989ba9a03d358.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9HYS46elub7jx_UsKfrhB_VjDA=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.621973+00 2025-12-09 10:15:16.621978+00 12391 HT2112FWE#正身XL SPMX-20240815307586 \N \N \N 1 \N [{"file_id": "a05f4a53-4025-4d6b-ac78-e2fd04b9a4ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a63a3768b05c4bd0a9bdf11bc8fa2337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a63a3768b05c4bd0a9bdf11bc8fa2337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a63a3768b05c4bd0a9bdf11bc8fa2337.jpg", "file_size": 18103, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63a3768b05c4bd0a9bdf11bc8fa2337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63a3768b05c4bd0a9bdf11bc8fa2337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63a3768b05c4bd0a9bdf11bc8fa2337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a63a3768b05c4bd0a9bdf11bc8fa2337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a63a3768b05c4bd0a9bdf11bc8fa2337.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxzXJ9dGBy0lMXiSMrNJ8npBjiI=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.624309+00 2025-12-09 10:15:16.624315+00 12392 0004-16FWE#宝蓝色 SPMX-20240815307578 \N \N \N 1 \N [{"file_id": "e9b341a5-e489-4d50-b179-f1e3d75c83ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2d1c1457b9648aeb74026bd6e8ae72c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2d1c1457b9648aeb74026bd6e8ae72c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2d1c1457b9648aeb74026bd6e8ae72c.jpg", "file_size": 18356, "is_delete": false, "file_type": 1, "original_file_name": "0004-16FWE#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d1c1457b9648aeb74026bd6e8ae72c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d1c1457b9648aeb74026bd6e8ae72c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d1c1457b9648aeb74026bd6e8ae72c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2d1c1457b9648aeb74026bd6e8ae72c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2d1c1457b9648aeb74026bd6e8ae72c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xe-mbPRNZxJwlYjSqs3UnkWbsFc=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.626392+00 2025-12-09 10:15:16.626398+00 12393 FJ10781A1#红色雪花 SPMX-20240815307582 \N \N \N 1 \N [{"file_id": "e7341934-7a08-4ec9-adc9-af19721815d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg", "file_size": 53718, "is_delete": false, "file_type": 1, "original_file_name": "FJ10781A1#红色雪花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d7b0b7393f24ed7b42fe9c1b3dc3d36.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPWnsYtLrQiOrZP1gYIYvMbv7iY=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.628491+00 2025-12-09 10:15:16.628497+00 12394 C456#绿色 SPMX-20240815307573 \N \N \N 1 \N [{"file_id": "b3dd3290-eff8-4071-b4a6-f477c546bdc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3c3dd9b831f42b2a79fcc32f8d059f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3c3dd9b831f42b2a79fcc32f8d059f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3c3dd9b831f42b2a79fcc32f8d059f8.jpg", "file_size": 62280, "is_delete": false, "file_type": 1, "original_file_name": "C456#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c3dd9b831f42b2a79fcc32f8d059f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c3dd9b831f42b2a79fcc32f8d059f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3c3dd9b831f42b2a79fcc32f8d059f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3c3dd9b831f42b2a79fcc32f8d059f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3c3dd9b831f42b2a79fcc32f8d059f8.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwI2Dipc45Tw5fEUBZNMjHpVCZs=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.630578+00 2025-12-09 10:15:16.630583+00 12395 LJH0100-8#1号色 SPMX-20240815307581 \N \N \N 1 \N [{"file_id": "e567015a-7a30-46bd-9bc3-8a616acd9238", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f75b3f594f6243ecb677ec70e44458f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f75b3f594f6243ecb677ec70e44458f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f75b3f594f6243ecb677ec70e44458f2.jpg", "file_size": 45684, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-8#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75b3f594f6243ecb677ec70e44458f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75b3f594f6243ecb677ec70e44458f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75b3f594f6243ecb677ec70e44458f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f75b3f594f6243ecb677ec70e44458f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f75b3f594f6243ecb677ec70e44458f2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1UHMmOxbRBvYexV8CtJuoxhBho=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.63269+00 2025-12-09 10:15:16.632696+00 12396 LZ1303#背心款3号色 SPMX-20240815307577 \N \N \N 1 \N [{"file_id": "8ba4e588-f6c1-4829-883e-643c53889075", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de7091832f864b16a47a3131e0a62eff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de7091832f864b16a47a3131e0a62eff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de7091832f864b16a47a3131e0a62eff.jpg", "file_size": 18703, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7091832f864b16a47a3131e0a62eff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7091832f864b16a47a3131e0a62eff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7091832f864b16a47a3131e0a62eff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de7091832f864b16a47a3131e0a62eff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de7091832f864b16a47a3131e0a62eff.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4CLUE-40pGUe4zDESmMuxcvRDw=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.634829+00 2025-12-09 10:15:16.634834+00 12397 JTSS357FW#VS-D3小 SPMX-20240815307583 \N \N \N 1 \N [{"file_id": "09ab60e7-b78d-42b1-9954-bcd710380c5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a4d6543689f48e49554a47c3433f92a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a4d6543689f48e49554a47c3433f92a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a4d6543689f48e49554a47c3433f92a.jpg", "file_size": 15058, "is_delete": false, "file_type": 1, "original_file_name": "JTSS357FW#VS-D3小.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4d6543689f48e49554a47c3433f92a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4d6543689f48e49554a47c3433f92a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4d6543689f48e49554a47c3433f92a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a4d6543689f48e49554a47c3433f92a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a4d6543689f48e49554a47c3433f92a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mBPB6qwrRcEKrTGVOb8yHf1o6Y=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.63715+00 2025-12-09 10:15:16.637156+00 12398 DL31067#大红前幅定位裁 SPMX-20240815307587 \N \N \N 1 \N [{"file_id": "564889ea-8776-403a-adcb-a068747f9cc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9390a5d9e044d64b9f48ddbf4693a69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9390a5d9e044d64b9f48ddbf4693a69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9390a5d9e044d64b9f48ddbf4693a69.jpg", "file_size": 16844, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#大红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9390a5d9e044d64b9f48ddbf4693a69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9390a5d9e044d64b9f48ddbf4693a69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9390a5d9e044d64b9f48ddbf4693a69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9390a5d9e044d64b9f48ddbf4693a69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9390a5d9e044d64b9f48ddbf4693a69.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:glPPpEb8ZPG3Ou-xuHl0SVOmioQ=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.639453+00 2025-12-09 10:15:16.639458+00 12399 LZ1303#背心款4号色 SPMX-20240815307588 \N \N \N 1 \N [{"file_id": "9bcd11e1-c13c-4c68-a1af-c9eb734cc80e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240a4c8f680243e8ae8ac100dc0713e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240a4c8f680243e8ae8ac100dc0713e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240a4c8f680243e8ae8ac100dc0713e8.jpg", "file_size": 19504, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240a4c8f680243e8ae8ac100dc0713e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240a4c8f680243e8ae8ac100dc0713e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240a4c8f680243e8ae8ac100dc0713e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240a4c8f680243e8ae8ac100dc0713e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240a4c8f680243e8ae8ac100dc0713e8.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nInaNMuDXHthOz-elf_ecjkfnrk=", "createTime": "2024-08-15 14:53:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.641572+00 2025-12-09 10:15:16.641578+00 12400 LJH0100-8#2号色 SPMX-20240815307593 \N \N \N 1 \N [{"file_id": "abbf8002-8414-44ac-8679-3c266a005041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9af47d59df14197b8bd7cb6ea874f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9af47d59df14197b8bd7cb6ea874f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9af47d59df14197b8bd7cb6ea874f42.jpg", "file_size": 47853, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-8#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9af47d59df14197b8bd7cb6ea874f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9af47d59df14197b8bd7cb6ea874f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9af47d59df14197b8bd7cb6ea874f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9af47d59df14197b8bd7cb6ea874f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9af47d59df14197b8bd7cb6ea874f42.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rE_gjl1pjY8ctiKqV0vqc35OkJ8=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.643914+00 2025-12-09 10:15:16.64392+00 12401 LZ1303#背心款5号色 SPMX-20240815307597 \N \N \N 1 \N [{"file_id": "f9a58081-de10-4507-b7aa-6edbaa763f00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c1b7f4a452d4dfdb81fc9c14a6be731.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c1b7f4a452d4dfdb81fc9c14a6be731.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c1b7f4a452d4dfdb81fc9c14a6be731.jpg", "file_size": 18686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1303#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b7f4a452d4dfdb81fc9c14a6be731.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b7f4a452d4dfdb81fc9c14a6be731.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b7f4a452d4dfdb81fc9c14a6be731.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c1b7f4a452d4dfdb81fc9c14a6be731.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c1b7f4a452d4dfdb81fc9c14a6be731.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9ZzIot1D_Edh6p4xSErQ2C7oqc=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.646247+00 2025-12-09 10:15:16.646252+00 12402 HT2112FWE#领口2XL SPMX-20240815307594 \N \N \N 1 \N [{"file_id": "79e976ca-52c5-43d6-8e2f-42c7a70ac92c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4bdbbfbd433475298b5ca792af0bf96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4bdbbfbd433475298b5ca792af0bf96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4bdbbfbd433475298b5ca792af0bf96.jpg", "file_size": 6556, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#领口2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bdbbfbd433475298b5ca792af0bf96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bdbbfbd433475298b5ca792af0bf96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bdbbfbd433475298b5ca792af0bf96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4bdbbfbd433475298b5ca792af0bf96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4bdbbfbd433475298b5ca792af0bf96.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qr3HQX_tFVt8bc1jWwqSTzVe6xo=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.648317+00 2025-12-09 10:15:16.648322+00 12403 JTSS358FW#VS-D3 SPMX-20240815307592 \N \N \N 1 \N [{"file_id": "9b1ad936-fe92-407f-a785-63cf6fd92de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22981dc9f7ff4f049a45253c315e7f97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22981dc9f7ff4f049a45253c315e7f97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22981dc9f7ff4f049a45253c315e7f97.jpg", "file_size": 15962, "is_delete": false, "file_type": 1, "original_file_name": "JTSS358FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22981dc9f7ff4f049a45253c315e7f97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22981dc9f7ff4f049a45253c315e7f97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22981dc9f7ff4f049a45253c315e7f97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22981dc9f7ff4f049a45253c315e7f97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22981dc9f7ff4f049a45253c315e7f97.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_h2JqfRqlHdmoPrkM1dK1MCf9AU=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.650499+00 2025-12-09 10:15:16.650504+00 12404 FJ10781B1#红色拐杖 SPMX-20240815307596 \N \N \N 1 \N [{"file_id": "01e2821a-fbd6-41cd-bba2-c6a482748c85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "834066183b7b4746babf19a0f812a330.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "834066183b7b4746babf19a0f812a330.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "834066183b7b4746babf19a0f812a330.jpg", "file_size": 43472, "is_delete": false, "file_type": 1, "original_file_name": "FJ10781B1#红色拐杖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834066183b7b4746babf19a0f812a330.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834066183b7b4746babf19a0f812a330.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834066183b7b4746babf19a0f812a330.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/834066183b7b4746babf19a0f812a330.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/834066183b7b4746babf19a0f812a330.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qo3Ns0bEwyEvzlE1lE_-Rfis6xw=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.652384+00 2025-12-09 10:15:16.652388+00 12405 0004-16FWE#深红色 SPMX-20240815307589 \N \N \N 1 \N [{"file_id": "ad7ba5d9-7436-4b51-bfd8-c1218d843eb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55150aca9a7b4278a27f94fb840d711f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55150aca9a7b4278a27f94fb840d711f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55150aca9a7b4278a27f94fb840d711f.jpg", "file_size": 18444, "is_delete": false, "file_type": 1, "original_file_name": "0004-16FWE#深红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55150aca9a7b4278a27f94fb840d711f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55150aca9a7b4278a27f94fb840d711f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55150aca9a7b4278a27f94fb840d711f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55150aca9a7b4278a27f94fb840d711f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55150aca9a7b4278a27f94fb840d711f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xfJCa2BZdUC5lapdvCocnLPPLys=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.654538+00 2025-12-09 10:15:16.654544+00 12406 DL31067#大红批布 SPMX-20240815307598 \N \N \N 1 \N [{"file_id": "ac10bee0-bc08-40f5-bd93-1d38c568d188", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "835ee8d78c614a3ab0b9596b8e0000e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "835ee8d78c614a3ab0b9596b8e0000e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "835ee8d78c614a3ab0b9596b8e0000e5.jpg", "file_size": 22735, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#大红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ee8d78c614a3ab0b9596b8e0000e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ee8d78c614a3ab0b9596b8e0000e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835ee8d78c614a3ab0b9596b8e0000e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/835ee8d78c614a3ab0b9596b8e0000e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/835ee8d78c614a3ab0b9596b8e0000e5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQGx0Yy1bDdofxamUqtHkym3GOE=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.656477+00 2025-12-09 10:15:16.656482+00 12407 23-2119#A3-3XL SPMX-20240815307590 \N \N \N 1 \N [{"file_id": "5630431c-fd16-4e7f-8127-bc9a2345ae5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4b51245ce8847e0912042989125e575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4b51245ce8847e0912042989125e575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4b51245ce8847e0912042989125e575.jpg", "file_size": 15714, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b51245ce8847e0912042989125e575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b51245ce8847e0912042989125e575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b51245ce8847e0912042989125e575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4b51245ce8847e0912042989125e575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4b51245ce8847e0912042989125e575.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fq4jpBspKshKIiWOWU0c_8sG1GU=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.658415+00 2025-12-09 10:15:16.658421+00 12408 1119FWE#蓝色净色 SPMX-20240815307591 \N \N \N 1 \N [{"file_id": "2ff3aecb-9c02-4055-b078-1d85e472772c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a20cafab1e8441d1a106d73db6ec7108.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a20cafab1e8441d1a106d73db6ec7108.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a20cafab1e8441d1a106d73db6ec7108.jpg", "file_size": 9199, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20cafab1e8441d1a106d73db6ec7108.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20cafab1e8441d1a106d73db6ec7108.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20cafab1e8441d1a106d73db6ec7108.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a20cafab1e8441d1a106d73db6ec7108.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a20cafab1e8441d1a106d73db6ec7108.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWDnAKjdQzUSesLsg7JZ3Tlfeuc=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.66055+00 2025-12-09 10:15:16.660555+00 12409 8186FWE#金黄2XL SPMX-20240815307595 \N \N \N 1 \N [{"file_id": "bd1edca7-21ef-41b3-9d2e-848418956de4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0acbaeb56246d59e7c96b4d09c5528.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0acbaeb56246d59e7c96b4d09c5528.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0acbaeb56246d59e7c96b4d09c5528.jpg", "file_size": 20411, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#金黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0acbaeb56246d59e7c96b4d09c5528.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0acbaeb56246d59e7c96b4d09c5528.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0acbaeb56246d59e7c96b4d09c5528.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0acbaeb56246d59e7c96b4d09c5528.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0acbaeb56246d59e7c96b4d09c5528.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MzWZmZ1EkcE-PZYiuOHX8_zkzcc=", "createTime": "2024-08-15 14:53:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.662474+00 2025-12-09 10:15:16.662479+00 12410 FJ10781C1#小雪人印花 SPMX-20240815307609 \N \N \N 1 \N [{"file_id": "2cdefdc4-3fc5-4ace-a3aa-40e93ebbac01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a63265b22c64a2ab82051b8da0b0ef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a63265b22c64a2ab82051b8da0b0ef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a63265b22c64a2ab82051b8da0b0ef7.jpg", "file_size": 55920, "is_delete": false, "file_type": 1, "original_file_name": "FJ10781C1#小雪人印花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a63265b22c64a2ab82051b8da0b0ef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a63265b22c64a2ab82051b8da0b0ef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a63265b22c64a2ab82051b8da0b0ef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a63265b22c64a2ab82051b8da0b0ef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a63265b22c64a2ab82051b8da0b0ef7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NDsjCpvl_J10bDpVGFW1XwhxuVQ=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.664599+00 2025-12-09 10:15:16.664604+00 12411 23-2119#A3-4XL SPMX-20240815307599 \N \N \N 1 \N [{"file_id": "f71fca65-f17d-46d1-8bff-16f0f8dc3926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80d40751c28e4e49969cff133d9e3909.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80d40751c28e4e49969cff133d9e3909.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80d40751c28e4e49969cff133d9e3909.jpg", "file_size": 14589, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d40751c28e4e49969cff133d9e3909.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d40751c28e4e49969cff133d9e3909.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d40751c28e4e49969cff133d9e3909.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80d40751c28e4e49969cff133d9e3909.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80d40751c28e4e49969cff133d9e3909.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3IMTHRQx9NUXFtJVAQEEJiYkDOE=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.666531+00 2025-12-09 10:15:16.666535+00 12412 JTSS359FW#VS-D3 SPMX-20240815307603 \N \N \N 1 \N [{"file_id": "e8925a38-2bf7-45e6-93d8-5c16135d892e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97756ad478fa4cd3a4e85edd6d495100.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97756ad478fa4cd3a4e85edd6d495100.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97756ad478fa4cd3a4e85edd6d495100.jpg", "file_size": 16508, "is_delete": false, "file_type": 1, "original_file_name": "JTSS359FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97756ad478fa4cd3a4e85edd6d495100.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97756ad478fa4cd3a4e85edd6d495100.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97756ad478fa4cd3a4e85edd6d495100.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97756ad478fa4cd3a4e85edd6d495100.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97756ad478fa4cd3a4e85edd6d495100.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbJ9VD1znFUHqN3yxX4uBZWzRNY=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.668438+00 2025-12-09 10:15:16.668443+00 12413 0004-16FWE#白色 SPMX-20240815307600 \N \N \N 1 \N [{"file_id": "49c4aa3e-5248-4da3-97d6-82ffeda87751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg", "file_size": 19214, "is_delete": false, "file_type": 1, "original_file_name": "0004-16FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4452c8d4ac8c4acb8e6a27e7e01d3b61.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8DX7HZaZa2HUo5jxtwuj-OGPsMs=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.670514+00 2025-12-09 10:15:16.670519+00 12414 C499#231绿色 SPMX-20240815307602 \N \N \N 1 \N [{"file_id": "a41d27ef-c95f-4b74-92aa-baee18b78f38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0002be1faaa443c1b004d92b89ef5dbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0002be1faaa443c1b004d92b89ef5dbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0002be1faaa443c1b004d92b89ef5dbc.jpg", "file_size": 81209, "is_delete": false, "file_type": 1, "original_file_name": "C499#231绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0002be1faaa443c1b004d92b89ef5dbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0002be1faaa443c1b004d92b89ef5dbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0002be1faaa443c1b004d92b89ef5dbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0002be1faaa443c1b004d92b89ef5dbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0002be1faaa443c1b004d92b89ef5dbc.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWJjp010o21VfaaxTxzHWlKLcl0=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.672859+00 2025-12-09 10:15:16.672864+00 12415 LJH0100-9#红色 SPMX-20240815307607 \N \N \N 1 \N [{"file_id": "e782cf15-36d0-481e-b928-e2aa6a8acf20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40a3402ab28a4a8d8b40581659906c86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40a3402ab28a4a8d8b40581659906c86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40a3402ab28a4a8d8b40581659906c86.jpg", "file_size": 38163, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-9#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a3402ab28a4a8d8b40581659906c86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a3402ab28a4a8d8b40581659906c86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a3402ab28a4a8d8b40581659906c86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40a3402ab28a4a8d8b40581659906c86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40a3402ab28a4a8d8b40581659906c86.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPGSI3u3BypHPLLm8wgibVGhgEg=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.674981+00 2025-12-09 10:15:16.674987+00 12416 DL31067#彩兰前幅定位裁 SPMX-20240815307605 \N \N \N 1 \N [{"file_id": "eea4c29d-10f4-4a29-a39f-a6536965ebc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb36ff3ad86f4b99877b4d4431fb2a24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb36ff3ad86f4b99877b4d4431fb2a24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb36ff3ad86f4b99877b4d4431fb2a24.jpg", "file_size": 15768, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#彩兰前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb36ff3ad86f4b99877b4d4431fb2a24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb36ff3ad86f4b99877b4d4431fb2a24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb36ff3ad86f4b99877b4d4431fb2a24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb36ff3ad86f4b99877b4d4431fb2a24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb36ff3ad86f4b99877b4d4431fb2a24.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37peEC8kg0oL_aOqBIGuGYp-rWU=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.677088+00 2025-12-09 10:15:16.677093+00 12417 HT2112FWE#领口L SPMX-20240815307606 \N \N \N 1 \N [{"file_id": "982da28f-4042-4554-88e0-8224861465bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b3fd1d612a479b84ea62deb35320b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b3fd1d612a479b84ea62deb35320b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b3fd1d612a479b84ea62deb35320b9.jpg", "file_size": 6372, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#领口L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b3fd1d612a479b84ea62deb35320b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b3fd1d612a479b84ea62deb35320b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b3fd1d612a479b84ea62deb35320b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b3fd1d612a479b84ea62deb35320b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b3fd1d612a479b84ea62deb35320b9.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCdiAZaxn6Vzh87EWpZPY-aobxs=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.679414+00 2025-12-09 10:15:16.679419+00 12418 1119FWE#黄色 SPMX-20240815307601 \N \N \N 1 \N [{"file_id": "98199073-8203-41e8-bb80-73d73477e80d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a386c2f3714545aea05c55e27d47b1c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a386c2f3714545aea05c55e27d47b1c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a386c2f3714545aea05c55e27d47b1c1.jpg", "file_size": 18992, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a386c2f3714545aea05c55e27d47b1c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a386c2f3714545aea05c55e27d47b1c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a386c2f3714545aea05c55e27d47b1c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a386c2f3714545aea05c55e27d47b1c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a386c2f3714545aea05c55e27d47b1c1.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dp9vZlUpMNumKaA4ohITTB5b7cs=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.681722+00 2025-12-09 10:15:16.681728+00 12419 LZ1304#捆条布 SPMX-20240815307608 \N \N \N 1 \N [{"file_id": "c91170db-1515-43ff-bc23-a2a5524062ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67bc7225e2ef4eaea20386896a07590e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67bc7225e2ef4eaea20386896a07590e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67bc7225e2ef4eaea20386896a07590e.jpg", "file_size": 25774, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bc7225e2ef4eaea20386896a07590e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bc7225e2ef4eaea20386896a07590e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67bc7225e2ef4eaea20386896a07590e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67bc7225e2ef4eaea20386896a07590e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67bc7225e2ef4eaea20386896a07590e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ysavEzMKBYctVXZDOI9_ebBHHY=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.684032+00 2025-12-09 10:15:16.684037+00 12420 8186FWE#金黄L SPMX-20240815307604 \N \N \N 1 \N [{"file_id": "b3cebcee-4a60-4cb3-9f01-fbc77c81008a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75dc1d94564f487cb23181a640a5bb00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75dc1d94564f487cb23181a640a5bb00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75dc1d94564f487cb23181a640a5bb00.jpg", "file_size": 20888, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#金黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dc1d94564f487cb23181a640a5bb00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dc1d94564f487cb23181a640a5bb00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dc1d94564f487cb23181a640a5bb00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75dc1d94564f487cb23181a640a5bb00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75dc1d94564f487cb23181a640a5bb00.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5QIVWfTClGYuXD3nI6hO-vMERo=", "createTime": "2024-08-15 14:54:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.686144+00 2025-12-09 10:15:16.686149+00 12421 23-2119#A3-领子3XL SPMX-20240815307610 \N \N \N 1 \N [{"file_id": "94bafd00-b5be-4e75-bd2c-c4ba51de2d44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f42e7ac34f45179b0313309b2bae86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f42e7ac34f45179b0313309b2bae86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f42e7ac34f45179b0313309b2bae86.jpg", "file_size": 11637, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f42e7ac34f45179b0313309b2bae86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f42e7ac34f45179b0313309b2bae86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f42e7ac34f45179b0313309b2bae86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f42e7ac34f45179b0313309b2bae86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f42e7ac34f45179b0313309b2bae86.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x1iZBMx9Ke_UNOuj39O0awQ_Pd0=", "createTime": "2024-08-15 14:54:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.688461+00 2025-12-09 10:15:16.688467+00 12422 DL31067#彩兰批布 SPMX-20240815307612 \N \N \N 1 \N [{"file_id": "008ec911-e981-44b8-9eb6-1c66f6f79517", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82c380574fef426f8ad8f733248212c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82c380574fef426f8ad8f733248212c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82c380574fef426f8ad8f733248212c0.jpg", "file_size": 23045, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#彩兰批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c380574fef426f8ad8f733248212c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c380574fef426f8ad8f733248212c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c380574fef426f8ad8f733248212c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82c380574fef426f8ad8f733248212c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82c380574fef426f8ad8f733248212c0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZQHKbreyKypXiTR3jOB_qUtot8=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.690791+00 2025-12-09 10:15:16.690797+00 12423 FJ1078B1#红色拐杖 SPMX-20240815307621 \N \N \N 1 \N [{"file_id": "8f269e4a-b27e-4ff1-8d4b-7d4d9b84eb71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c941512d0a84b64a9b934f57cece069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c941512d0a84b64a9b934f57cece069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c941512d0a84b64a9b934f57cece069.jpg", "file_size": 44039, "is_delete": false, "file_type": 1, "original_file_name": "FJ1078B1#红色拐杖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c941512d0a84b64a9b934f57cece069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c941512d0a84b64a9b934f57cece069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c941512d0a84b64a9b934f57cece069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c941512d0a84b64a9b934f57cece069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c941512d0a84b64a9b934f57cece069.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyXCMvsKIVUIFwCAoJ8wiwN0zkk=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.693129+00 2025-12-09 10:15:16.693135+00 12424 C499#大白 SPMX-20240815307611 \N \N \N 1 \N [{"file_id": "04fa073a-2db8-4c6c-a926-919346784717", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b32c65887f7b4b12beb4bd7fecb464c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b32c65887f7b4b12beb4bd7fecb464c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b32c65887f7b4b12beb4bd7fecb464c1.jpg", "file_size": 76420, "is_delete": false, "file_type": 1, "original_file_name": "C499#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c65887f7b4b12beb4bd7fecb464c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c65887f7b4b12beb4bd7fecb464c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b32c65887f7b4b12beb4bd7fecb464c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b32c65887f7b4b12beb4bd7fecb464c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b32c65887f7b4b12beb4bd7fecb464c1.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LIVnd3YAwFifII09m4bPo1YNN0=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.69525+00 2025-12-09 10:15:16.695255+00 12425 HT2112FWE#领口M SPMX-20240815307619 \N \N \N 1 \N [{"file_id": "bdbf9292-a276-4e09-bd8f-acd7f571f0f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d023c296660b4961b0ef3808f1659195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d023c296660b4961b0ef3808f1659195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d023c296660b4961b0ef3808f1659195.jpg", "file_size": 6627, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#领口M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d023c296660b4961b0ef3808f1659195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d023c296660b4961b0ef3808f1659195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d023c296660b4961b0ef3808f1659195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d023c296660b4961b0ef3808f1659195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d023c296660b4961b0ef3808f1659195.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0G400Nk2UPBZAOY16NU8-xh1T8=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.697551+00 2025-12-09 10:15:16.697556+00 12426 23-2119#A3-领子4XL SPMX-20240815307620 \N \N \N 1 \N [{"file_id": "abeb7eb2-7fc7-4525-a9f4-fb4234c1d594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63e27005709b40a5b6fc02d8e308738f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63e27005709b40a5b6fc02d8e308738f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63e27005709b40a5b6fc02d8e308738f.jpg", "file_size": 11624, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27005709b40a5b6fc02d8e308738f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27005709b40a5b6fc02d8e308738f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27005709b40a5b6fc02d8e308738f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63e27005709b40a5b6fc02d8e308738f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63e27005709b40a5b6fc02d8e308738f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wlYf1o6Gw_O4Od0vFpDlg_uoOo=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.699909+00 2025-12-09 10:15:16.699914+00 12427 LJH0100-9#绿色 SPMX-20240815307617 \N \N \N 1 \N [{"file_id": "e610e1fe-e160-454e-ab48-b0125acdb13a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg", "file_size": 38415, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-9#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf43f8ba0eee4edc9c05e3d78f8ba7d3.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhybeu7hIGwMWJ_p_86okPMBoLc=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.702217+00 2025-12-09 10:15:16.702222+00 12428 LZ1304#背心款1号色 SPMX-20240815307618 \N \N \N 1 \N [{"file_id": "d2c36581-491d-4e9e-b88d-72606a800ecf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6516626b9a5048a59fa0c7314b2de038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6516626b9a5048a59fa0c7314b2de038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6516626b9a5048a59fa0c7314b2de038.jpg", "file_size": 21661, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6516626b9a5048a59fa0c7314b2de038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6516626b9a5048a59fa0c7314b2de038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6516626b9a5048a59fa0c7314b2de038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6516626b9a5048a59fa0c7314b2de038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6516626b9a5048a59fa0c7314b2de038.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLmyADelNnsLy9ywUri5fjzvRZk=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.704596+00 2025-12-09 10:15:16.704602+00 12429 0004-16FWE#黄色 SPMX-20240815307614 \N \N \N 1 \N [{"file_id": "22801e36-3c7d-4c24-a7d8-81e6038802a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c36868fcfb81441a92b42e2683276f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c36868fcfb81441a92b42e2683276f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c36868fcfb81441a92b42e2683276f42.jpg", "file_size": 19434, "is_delete": false, "file_type": 1, "original_file_name": "0004-16FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36868fcfb81441a92b42e2683276f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36868fcfb81441a92b42e2683276f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36868fcfb81441a92b42e2683276f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c36868fcfb81441a92b42e2683276f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c36868fcfb81441a92b42e2683276f42.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKIyfszNhFYSwkq-sKJwa1J5XlI=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.706904+00 2025-12-09 10:15:16.706913+00 12430 JTSS360FW#VS-D3 SPMX-20240815307615 \N \N \N 1 \N [{"file_id": "9bbdf7b2-9052-4087-b7a8-74ebe756bb06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a91b1129169144578db827b331132c80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a91b1129169144578db827b331132c80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a91b1129169144578db827b331132c80.jpg", "file_size": 13312, "is_delete": false, "file_type": 1, "original_file_name": "JTSS360FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b1129169144578db827b331132c80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b1129169144578db827b331132c80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91b1129169144578db827b331132c80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a91b1129169144578db827b331132c80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a91b1129169144578db827b331132c80.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXhI01oyC5IWuaLsNM6bEJ3b5IM=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.709198+00 2025-12-09 10:15:16.709204+00 12431 1119FWE#黄色净色 SPMX-20240815307616 \N \N \N 1 \N [{"file_id": "1c6a72c5-70cf-4ab2-beb2-d84721a76da7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be05dce8ced14d7f861079441995bfa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be05dce8ced14d7f861079441995bfa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be05dce8ced14d7f861079441995bfa4.jpg", "file_size": 8047, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#黄色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be05dce8ced14d7f861079441995bfa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be05dce8ced14d7f861079441995bfa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be05dce8ced14d7f861079441995bfa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be05dce8ced14d7f861079441995bfa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be05dce8ced14d7f861079441995bfa4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlGBojhQemPeaNE3P87v9YKfnuQ=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.711334+00 2025-12-09 10:15:16.71134+00 12432 8186FWE#金黄XL SPMX-20240815307613 \N \N \N 1 \N [{"file_id": "14a0fec0-b124-486e-8a40-a7d70a2029c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d4111d76f444f23b74a8350fed97dee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d4111d76f444f23b74a8350fed97dee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d4111d76f444f23b74a8350fed97dee.jpg", "file_size": 20400, "is_delete": false, "file_type": 1, "original_file_name": "8186FWE#金黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4111d76f444f23b74a8350fed97dee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4111d76f444f23b74a8350fed97dee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4111d76f444f23b74a8350fed97dee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d4111d76f444f23b74a8350fed97dee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d4111d76f444f23b74a8350fed97dee.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTkqNYyugNkegsIdIDIuJyddmlw=", "createTime": "2024-08-15 14:54:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.713694+00 2025-12-09 10:15:16.713699+00 12433 C499#宝蓝色 SPMX-20240815307622 \N \N \N 1 \N [{"file_id": "10e2487c-a76b-4b43-a36c-ba01cdc6fffc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21caecd0361e4b4db91f5c235ce06fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21caecd0361e4b4db91f5c235ce06fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21caecd0361e4b4db91f5c235ce06fe9.jpg", "file_size": 83815, "is_delete": false, "file_type": 1, "original_file_name": "C499#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caecd0361e4b4db91f5c235ce06fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caecd0361e4b4db91f5c235ce06fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21caecd0361e4b4db91f5c235ce06fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21caecd0361e4b4db91f5c235ce06fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21caecd0361e4b4db91f5c235ce06fe9.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJ_xdKBrpci0PO3KX9m83s6XjR4=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.716079+00 2025-12-09 10:15:16.716085+00 12434 HT2112FWE#领口XL SPMX-20240815307628 \N \N \N 1 \N [{"file_id": "902b4605-312b-4193-95d1-64e568bb8a54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f79b29937704f69a421a353882067b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f79b29937704f69a421a353882067b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f79b29937704f69a421a353882067b6.jpg", "file_size": 6736, "is_delete": false, "file_type": 1, "original_file_name": "HT2112FWE#领口XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f79b29937704f69a421a353882067b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f79b29937704f69a421a353882067b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f79b29937704f69a421a353882067b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f79b29937704f69a421a353882067b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f79b29937704f69a421a353882067b6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAhjCU80DZNX58_6ATPF2cqV2cs=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.718196+00 2025-12-09 10:15:16.718202+00 12435 LZ1304#背心款2号色 SPMX-20240815307629 \N \N \N 1 \N [{"file_id": "f61637c8-71b2-4385-82fc-c5a0a8611c4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg", "file_size": 20753, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/235e1c05dd2a4fb4a6cdbf8d32a181ac.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZcnaW9Eun-vSmsbiHvsPnRoZzQ=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.72029+00 2025-12-09 10:15:16.720296+00 12436 DL31067#枣红批布 SPMX-20240815307635 \N \N \N 1 \N [{"file_id": "6f41dbca-49b0-423b-aa26-35ea0a6f44f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63b75fd3ed1f4b74852a29c6173d49b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63b75fd3ed1f4b74852a29c6173d49b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63b75fd3ed1f4b74852a29c6173d49b2.jpg", "file_size": 22975, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#枣红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b75fd3ed1f4b74852a29c6173d49b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b75fd3ed1f4b74852a29c6173d49b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b75fd3ed1f4b74852a29c6173d49b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63b75fd3ed1f4b74852a29c6173d49b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63b75fd3ed1f4b74852a29c6173d49b2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXip1XgqMRoEcUGPyeVkY07Df3I=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.72239+00 2025-12-09 10:15:16.722396+00 12437 DL31067#枣红前幅定位裁 SPMX-20240815307623 \N \N \N 1 \N [{"file_id": "e1498d48-eeb5-403e-bea1-4c9031966d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1efd028ad7d241a0bb8b66a5b3c13c03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1efd028ad7d241a0bb8b66a5b3c13c03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1efd028ad7d241a0bb8b66a5b3c13c03.jpg", "file_size": 15828, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#枣红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efd028ad7d241a0bb8b66a5b3c13c03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efd028ad7d241a0bb8b66a5b3c13c03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1efd028ad7d241a0bb8b66a5b3c13c03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1efd028ad7d241a0bb8b66a5b3c13c03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1efd028ad7d241a0bb8b66a5b3c13c03.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfyr5lybkyC-8o8PjVjG0eigxFU=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.724759+00 2025-12-09 10:15:16.724765+00 12438 FJ10791B1#黑底黄雪人 SPMX-20240815307632 \N \N \N 1 \N [{"file_id": "c005e522-20d8-48af-ab6e-00e747ffe3b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cde805ce3c824f838c2cf8cb230e7bea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cde805ce3c824f838c2cf8cb230e7bea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cde805ce3c824f838c2cf8cb230e7bea.jpg", "file_size": 39129, "is_delete": false, "file_type": 1, "original_file_name": "FJ10791B1#黑底黄雪人.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde805ce3c824f838c2cf8cb230e7bea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde805ce3c824f838c2cf8cb230e7bea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde805ce3c824f838c2cf8cb230e7bea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cde805ce3c824f838c2cf8cb230e7bea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cde805ce3c824f838c2cf8cb230e7bea.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHvqv7zCcbqnb-_i3fc1ni1u58M=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.727016+00 2025-12-09 10:15:16.727021+00 12439 1119FWE#黑色 SPMX-20240815307627 \N \N \N 1 \N [{"file_id": "e5f74b6f-9ad4-470a-93f9-b974bc4ce11f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73df2e43449c4bbab6fdb90cf6f55300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73df2e43449c4bbab6fdb90cf6f55300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73df2e43449c4bbab6fdb90cf6f55300.jpg", "file_size": 22016, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df2e43449c4bbab6fdb90cf6f55300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df2e43449c4bbab6fdb90cf6f55300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73df2e43449c4bbab6fdb90cf6f55300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73df2e43449c4bbab6fdb90cf6f55300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73df2e43449c4bbab6fdb90cf6f55300.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RaPXOmMaBaoy-pMkz-NoZgffjiA=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.729317+00 2025-12-09 10:15:16.729322+00 12440 LJH0100-A1#A1色 SPMX-20240815307630 \N \N \N 1 \N [{"file_id": "0f86874d-6aaa-477c-a5b1-9a55ff026132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aeded96f58e4993967bc2ea3e0adab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aeded96f58e4993967bc2ea3e0adab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aeded96f58e4993967bc2ea3e0adab0.jpg", "file_size": 68545, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A1#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aeded96f58e4993967bc2ea3e0adab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aeded96f58e4993967bc2ea3e0adab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aeded96f58e4993967bc2ea3e0adab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aeded96f58e4993967bc2ea3e0adab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aeded96f58e4993967bc2ea3e0adab0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KsFeLBaJSBM8pBdOO6vcmGk-IbU=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.731435+00 2025-12-09 10:15:16.73144+00 12441 0004-1FWF#宝蓝-V5曲线 SPMX-20240815307634 \N \N \N 1 \N [{"file_id": "f155ef6a-2dc9-4f5c-a439-4326d3d0564b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f92a09f3b28e4384a9ea20f9021a72fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f92a09f3b28e4384a9ea20f9021a72fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f92a09f3b28e4384a9ea20f9021a72fc.jpg", "file_size": 22797, "is_delete": false, "file_type": 1, "original_file_name": "0004-1FWF#宝蓝-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92a09f3b28e4384a9ea20f9021a72fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92a09f3b28e4384a9ea20f9021a72fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92a09f3b28e4384a9ea20f9021a72fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f92a09f3b28e4384a9ea20f9021a72fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f92a09f3b28e4384a9ea20f9021a72fc.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B473sPK4ifCrdJou0eFw9d46JAU=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.733533+00 2025-12-09 10:15:16.733538+00 12442 8187#大红 SPMX-20240815307626 \N \N \N 1 \N [{"file_id": "01ee28bd-0bac-4019-a8fe-ab073ff3cf56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5f95031cd6d421b9a3751da9346ab6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5f95031cd6d421b9a3751da9346ab6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5f95031cd6d421b9a3751da9346ab6f.jpg", "file_size": 13693, "is_delete": false, "file_type": 1, "original_file_name": "8187#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f95031cd6d421b9a3751da9346ab6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f95031cd6d421b9a3751da9346ab6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f95031cd6d421b9a3751da9346ab6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5f95031cd6d421b9a3751da9346ab6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5f95031cd6d421b9a3751da9346ab6f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZWWk3InRr2sND-8reqfpl2jTB0=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.735925+00 2025-12-09 10:15:16.735931+00 12443 23-2119#A4-3XL SPMX-20240815307631 \N \N \N 1 \N [{"file_id": "020a7f57-2a17-4f9b-b420-0aa7e401e676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "046bf08fbcbb45bd994f9f9a2260c65e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "046bf08fbcbb45bd994f9f9a2260c65e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "046bf08fbcbb45bd994f9f9a2260c65e.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046bf08fbcbb45bd994f9f9a2260c65e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046bf08fbcbb45bd994f9f9a2260c65e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046bf08fbcbb45bd994f9f9a2260c65e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/046bf08fbcbb45bd994f9f9a2260c65e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/046bf08fbcbb45bd994f9f9a2260c65e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_cXsI7077KwbFf7KiaJrGDDhNk=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.738181+00 2025-12-09 10:15:16.738187+00 12444 JTSS361FW#VS-D3 SPMX-20240815307625 \N \N \N 1 \N [{"file_id": "24ad5192-2f9f-4653-98bd-e828cd388bb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6327b87f94d04bfebc6f3487c463e40d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6327b87f94d04bfebc6f3487c463e40d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6327b87f94d04bfebc6f3487c463e40d.jpg", "file_size": 16119, "is_delete": false, "file_type": 1, "original_file_name": "JTSS361FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b87f94d04bfebc6f3487c463e40d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b87f94d04bfebc6f3487c463e40d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6327b87f94d04bfebc6f3487c463e40d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6327b87f94d04bfebc6f3487c463e40d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6327b87f94d04bfebc6f3487c463e40d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXrPfY_dcJBE7o8_lBhYZ24Kf0I=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.740508+00 2025-12-09 10:15:16.740514+00 12445 C499#玫红色 SPMX-20240815307633 \N \N \N 1 \N [{"file_id": "b5a74771-97bc-427e-a944-8b93481bbb36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bd0acf46dba489aa2f7437e0de8ad40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bd0acf46dba489aa2f7437e0de8ad40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bd0acf46dba489aa2f7437e0de8ad40.jpg", "file_size": 78347, "is_delete": false, "file_type": 1, "original_file_name": "C499#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd0acf46dba489aa2f7437e0de8ad40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd0acf46dba489aa2f7437e0de8ad40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bd0acf46dba489aa2f7437e0de8ad40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bd0acf46dba489aa2f7437e0de8ad40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bd0acf46dba489aa2f7437e0de8ad40.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRaOyAQdgAFiB2z85y9JNN4qkMs=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.742889+00 2025-12-09 10:15:16.742895+00 12446 0004-1FWE#VS-D3 SPMX-20240815307624 \N \N \N 1 \N [{"file_id": "415b0e3d-785f-4860-ab27-2a167ea5cc29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b816483ed5d4a5a9a3e74e21589c178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b816483ed5d4a5a9a3e74e21589c178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b816483ed5d4a5a9a3e74e21589c178.jpg", "file_size": 14222, "is_delete": false, "file_type": 1, "original_file_name": "0004-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b816483ed5d4a5a9a3e74e21589c178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b816483ed5d4a5a9a3e74e21589c178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b816483ed5d4a5a9a3e74e21589c178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b816483ed5d4a5a9a3e74e21589c178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b816483ed5d4a5a9a3e74e21589c178.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHS9_b2-kvL1XpUr41LQ99fvMXg=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.745221+00 2025-12-09 10:15:16.745226+00 12447 1119FWE#黑色净色 SPMX-20240815307638 \N \N \N 1 \N [{"file_id": "1db25f54-3e0a-4c31-8a76-4a57f74c077f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba455760f0e343d98e5b820d19086c5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba455760f0e343d98e5b820d19086c5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba455760f0e343d98e5b820d19086c5c.jpg", "file_size": 8471, "is_delete": false, "file_type": 1, "original_file_name": "1119FWE#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455760f0e343d98e5b820d19086c5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455760f0e343d98e5b820d19086c5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba455760f0e343d98e5b820d19086c5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba455760f0e343d98e5b820d19086c5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba455760f0e343d98e5b820d19086c5c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NwkyNOhZFRqGvMG6fBXtEkyZes8=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.747515+00 2025-12-09 10:15:16.74752+00 12448 HT2113FWE#白2XL SPMX-20240815307639 \N \N \N 1 \N [{"file_id": "8c813758-3d6d-4fdd-9e45-905b51215a55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c056f1b1bf2e451d93b4e07a9b8a905e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c056f1b1bf2e451d93b4e07a9b8a905e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c056f1b1bf2e451d93b4e07a9b8a905e.jpg", "file_size": 15483, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056f1b1bf2e451d93b4e07a9b8a905e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056f1b1bf2e451d93b4e07a9b8a905e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056f1b1bf2e451d93b4e07a9b8a905e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c056f1b1bf2e451d93b4e07a9b8a905e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c056f1b1bf2e451d93b4e07a9b8a905e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNwVMlUQAk6IMrPQCzO1RparPtE=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.749632+00 2025-12-09 10:15:16.749638+00 12449 JTSS362FW#卡其VS-D3 SPMX-20240815307636 \N \N \N 1 \N [{"file_id": "f4ff6135-3b0b-4ede-93c3-a18a289198b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "503e622faf4a4387a7278095e6bc651e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "503e622faf4a4387a7278095e6bc651e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "503e622faf4a4387a7278095e6bc651e.jpg", "file_size": 17560, "is_delete": false, "file_type": 1, "original_file_name": "JTSS362FW#卡其VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503e622faf4a4387a7278095e6bc651e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503e622faf4a4387a7278095e6bc651e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503e622faf4a4387a7278095e6bc651e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/503e622faf4a4387a7278095e6bc651e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/503e622faf4a4387a7278095e6bc651e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mimCQJfuimpR2f24Sz0hUbDrpkg=", "createTime": "2024-08-15 14:54:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.751977+00 2025-12-09 10:15:16.751982+00 12450 8187#彩兰 SPMX-20240815307637 \N \N \N 1 \N [{"file_id": "a9378c33-7c77-4edc-9ce7-739c8d89b512", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74676dda65094343bccbd33da787c54a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74676dda65094343bccbd33da787c54a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74676dda65094343bccbd33da787c54a.jpg", "file_size": 13736, "is_delete": false, "file_type": 1, "original_file_name": "8187#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74676dda65094343bccbd33da787c54a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74676dda65094343bccbd33da787c54a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74676dda65094343bccbd33da787c54a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74676dda65094343bccbd33da787c54a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74676dda65094343bccbd33da787c54a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BpdMIMKB_LyLC-YucD9Ws0Ws2gQ=", "createTime": "2024-08-15 14:54:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.754288+00 2025-12-09 10:15:16.754293+00 12451 112#-杏色 SPMX-20240815307644 \N \N \N 1 \N [{"file_id": "89188bfd-6760-4ac1-8f91-2e1382d7b56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c982a26a96ec40b1951ef9aaa41c4112.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c982a26a96ec40b1951ef9aaa41c4112.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c982a26a96ec40b1951ef9aaa41c4112.jpg", "file_size": 43768, "is_delete": false, "file_type": 1, "original_file_name": "112#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c982a26a96ec40b1951ef9aaa41c4112.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c982a26a96ec40b1951ef9aaa41c4112.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c982a26a96ec40b1951ef9aaa41c4112.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c982a26a96ec40b1951ef9aaa41c4112.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c982a26a96ec40b1951ef9aaa41c4112.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-KEzs1gZUGYeUMeK6LdqJOZV8c=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.756381+00 2025-12-09 10:15:16.756387+00 12452 DL31067#水红前幅定位裁 SPMX-20240815307645 \N \N \N 1 \N [{"file_id": "2a830f0a-6c11-4ee7-a568-0685c0d80a3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0af9453373e34aedb532f530fdb10230.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0af9453373e34aedb532f530fdb10230.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0af9453373e34aedb532f530fdb10230.jpg", "file_size": 15446, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#水红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af9453373e34aedb532f530fdb10230.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af9453373e34aedb532f530fdb10230.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af9453373e34aedb532f530fdb10230.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0af9453373e34aedb532f530fdb10230.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0af9453373e34aedb532f530fdb10230.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iAW5g8u7AB6E1J65H-RFZdm32co=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.758512+00 2025-12-09 10:15:16.758518+00 12453 LZ1304#背心款3号色 SPMX-20240815307641 \N \N \N 1 \N [{"file_id": "4c75cb14-1ce4-478a-8b29-1328b1471df2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg", "file_size": 20759, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21f156c6eae74d5ca65f1b1e6ff6ea3c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-JdMveiJ0u-XtsZ3rIRmtoXF-MM=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.760763+00 2025-12-09 10:15:16.760769+00 12454 0004-1FWF#白色-V5曲线 SPMX-20240815307642 \N \N \N 1 \N [{"file_id": "c3f3add8-02dd-4f68-92c9-c8d0afeed50d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320b4198a4b24ef9aa112513750c37fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320b4198a4b24ef9aa112513750c37fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320b4198a4b24ef9aa112513750c37fe.jpg", "file_size": 19617, "is_delete": false, "file_type": 1, "original_file_name": "0004-1FWF#白色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4198a4b24ef9aa112513750c37fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4198a4b24ef9aa112513750c37fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320b4198a4b24ef9aa112513750c37fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320b4198a4b24ef9aa112513750c37fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320b4198a4b24ef9aa112513750c37fe.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbAnJEX2nnfEJdaQfgLhdH3vNgM=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.763232+00 2025-12-09 10:15:16.763237+00 12455 LJH0100-A1#A2色 SPMX-20240815307643 \N \N \N 1 \N [{"file_id": "27b5d6bf-659e-4fe0-aad0-efe125a80251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd699fdb712e4ac3b2618f34ebdf30b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd699fdb712e4ac3b2618f34ebdf30b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd699fdb712e4ac3b2618f34ebdf30b9.jpg", "file_size": 65167, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A1#A2色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd699fdb712e4ac3b2618f34ebdf30b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd699fdb712e4ac3b2618f34ebdf30b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd699fdb712e4ac3b2618f34ebdf30b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd699fdb712e4ac3b2618f34ebdf30b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd699fdb712e4ac3b2618f34ebdf30b9.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DcNIbJyhkfxrk3TRGhdZgwqikNI=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.765566+00 2025-12-09 10:15:16.76557+00 12456 23-2119#A4-4XL SPMX-20240815307640 \N \N \N 1 \N [{"file_id": "d060a844-ba2b-4e4d-a994-1536f48850e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa034e67a83a45e3953891b4f09e772e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa034e67a83a45e3953891b4f09e772e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa034e67a83a45e3953891b4f09e772e.jpg", "file_size": 15276, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa034e67a83a45e3953891b4f09e772e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa034e67a83a45e3953891b4f09e772e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa034e67a83a45e3953891b4f09e772e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa034e67a83a45e3953891b4f09e772e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa034e67a83a45e3953891b4f09e772e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mAX-D9o3DghBqFSjF2g38jiFGY=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.76755+00 2025-12-09 10:15:16.767555+00 12457 112#-灰色 SPMX-20240815307654 \N \N \N 1 \N [{"file_id": "5c09a0b9-6927-4555-b8ed-46ca7bd96396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ee782a6e5be435281921adf4ece01c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ee782a6e5be435281921adf4ece01c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ee782a6e5be435281921adf4ece01c5.jpg", "file_size": 57297, "is_delete": false, "file_type": 1, "original_file_name": "112#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee782a6e5be435281921adf4ece01c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee782a6e5be435281921adf4ece01c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ee782a6e5be435281921adf4ece01c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ee782a6e5be435281921adf4ece01c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ee782a6e5be435281921adf4ece01c5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMGq0JZ8PN3SaANAJ7yxXCaiijg=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.769465+00 2025-12-09 10:15:16.76947+00 12458 C499#黑色 SPMX-20240815307649 \N \N \N 1 \N [{"file_id": "9522e606-40f1-481a-be56-bc9ba641778a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f8ebb538f0248589c8fb2f376b9cbe6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f8ebb538f0248589c8fb2f376b9cbe6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f8ebb538f0248589c8fb2f376b9cbe6.jpg", "file_size": 77984, "is_delete": false, "file_type": 1, "original_file_name": "C499#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8ebb538f0248589c8fb2f376b9cbe6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8ebb538f0248589c8fb2f376b9cbe6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f8ebb538f0248589c8fb2f376b9cbe6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f8ebb538f0248589c8fb2f376b9cbe6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f8ebb538f0248589c8fb2f376b9cbe6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9KPy3J-llJa_mt4mRv54Jbx8Gg=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.771372+00 2025-12-09 10:15:16.771378+00 12459 HT2113FWE#白M SPMX-20240815307657 \N \N \N 1 \N [{"file_id": "078eb65e-72a0-4399-a5ac-55cb12a28f2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546f4fc3f0de4442ba842b568b87910d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546f4fc3f0de4442ba842b568b87910d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546f4fc3f0de4442ba842b568b87910d.jpg", "file_size": 16712, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f4fc3f0de4442ba842b568b87910d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f4fc3f0de4442ba842b568b87910d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546f4fc3f0de4442ba842b568b87910d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546f4fc3f0de4442ba842b568b87910d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546f4fc3f0de4442ba842b568b87910d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDxhAASVXbdP31thnZlxr93V_PY=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.773317+00 2025-12-09 10:15:16.773322+00 12460 JTSS363FW#VS-D3 SPMX-20240815307661 \N \N \N 1 \N [{"file_id": "4034d729-02fc-4b2b-8133-636322996daf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88e3e86138a743f588adb24b482f1625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88e3e86138a743f588adb24b482f1625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88e3e86138a743f588adb24b482f1625.jpg", "file_size": 12461, "is_delete": false, "file_type": 1, "original_file_name": "JTSS363FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e3e86138a743f588adb24b482f1625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e3e86138a743f588adb24b482f1625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e3e86138a743f588adb24b482f1625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88e3e86138a743f588adb24b482f1625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88e3e86138a743f588adb24b482f1625.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwBeP5cdr4kNj2aVscv5Nsvkoa8=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.775454+00 2025-12-09 10:15:16.775459+00 12461 LJH0100-A1#A3色 SPMX-20240815307655 \N \N \N 1 \N [{"file_id": "5fd8ebe7-3307-4bb8-9d47-af0139057fad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51b86268aae646d2992a8ce8b2977bce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51b86268aae646d2992a8ce8b2977bce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51b86268aae646d2992a8ce8b2977bce.jpg", "file_size": 65472, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A1#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b86268aae646d2992a8ce8b2977bce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b86268aae646d2992a8ce8b2977bce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b86268aae646d2992a8ce8b2977bce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51b86268aae646d2992a8ce8b2977bce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51b86268aae646d2992a8ce8b2977bce.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eFgQnnK3F1ShTzWVTEhuPJWYtNo=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.777392+00 2025-12-09 10:15:16.777397+00 12462 HT2113FWE#白L SPMX-20240815307648 \N \N \N 1 \N [{"file_id": "256c12a8-d680-4d49-8117-1dc48e67e2e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5acff2abd78f45acaa2bb9bbe6a5f34d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5acff2abd78f45acaa2bb9bbe6a5f34d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5acff2abd78f45acaa2bb9bbe6a5f34d.jpg", "file_size": 15421, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acff2abd78f45acaa2bb9bbe6a5f34d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acff2abd78f45acaa2bb9bbe6a5f34d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acff2abd78f45acaa2bb9bbe6a5f34d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5acff2abd78f45acaa2bb9bbe6a5f34d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5acff2abd78f45acaa2bb9bbe6a5f34d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DWTPKja1v6-oUEIBEYyOWzc9-Pg=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.779298+00 2025-12-09 10:15:16.779303+00 12463 FJ11800A1-1#LWQ15 SPMX-20240815307656 \N \N \N 1 \N [{"file_id": "32f6c2fd-8fc5-4f03-8eaf-289718832421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edca65fc63bb4d0ba627897ea579de20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edca65fc63bb4d0ba627897ea579de20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edca65fc63bb4d0ba627897ea579de20.jpg", "file_size": 38783, "is_delete": false, "file_type": 1, "original_file_name": "FJ11800A1-1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edca65fc63bb4d0ba627897ea579de20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edca65fc63bb4d0ba627897ea579de20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edca65fc63bb4d0ba627897ea579de20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edca65fc63bb4d0ba627897ea579de20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edca65fc63bb4d0ba627897ea579de20.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:58qCcluZUH1Eo6wW_hE997YhsXY=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.781407+00 2025-12-09 10:15:16.781412+00 12464 23-2119#A4-领子3XL SPMX-20240815307652 \N \N \N 1 \N [{"file_id": "054aa162-7ed9-4cc0-b419-fb053e9e7322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6efffe24841444dba7afe7fb3f5f4c0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6efffe24841444dba7afe7fb3f5f4c0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6efffe24841444dba7afe7fb3f5f4c0c.jpg", "file_size": 11814, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efffe24841444dba7afe7fb3f5f4c0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efffe24841444dba7afe7fb3f5f4c0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efffe24841444dba7afe7fb3f5f4c0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6efffe24841444dba7afe7fb3f5f4c0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6efffe24841444dba7afe7fb3f5f4c0c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yB100XKINPI9sAsKbLPQ3CYvZOI=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.783359+00 2025-12-09 10:15:16.783364+00 12465 8187#玫红 SPMX-20240815307647 \N \N \N 1 \N [{"file_id": "3ffceb3f-3426-4b09-8fd0-39229677d56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16ddd352f293446892bb50f74f527144.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16ddd352f293446892bb50f74f527144.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16ddd352f293446892bb50f74f527144.jpg", "file_size": 12730, "is_delete": false, "file_type": 1, "original_file_name": "8187#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ddd352f293446892bb50f74f527144.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ddd352f293446892bb50f74f527144.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ddd352f293446892bb50f74f527144.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16ddd352f293446892bb50f74f527144.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16ddd352f293446892bb50f74f527144.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cV5wsadtOIVpVa390XlbZsfPVyI=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.785551+00 2025-12-09 10:15:16.785556+00 12466 DL31067#水红批布 SPMX-20240815307659 \N \N \N 1 \N [{"file_id": "9ac21bc0-5981-4bfe-9bfb-08c19989abbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3902f1bdf2f0434ea0747fd040c3fa8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3902f1bdf2f0434ea0747fd040c3fa8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3902f1bdf2f0434ea0747fd040c3fa8f.jpg", "file_size": 20505, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#水红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3902f1bdf2f0434ea0747fd040c3fa8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3902f1bdf2f0434ea0747fd040c3fa8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3902f1bdf2f0434ea0747fd040c3fa8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3902f1bdf2f0434ea0747fd040c3fa8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3902f1bdf2f0434ea0747fd040c3fa8f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZOtCN_ivZUSEFLAv4aucjZqnR8=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.787507+00 2025-12-09 10:15:16.787512+00 12467 JTSS362FW#绿VS-D3 SPMX-20240815307650 \N \N \N 1 \N [{"file_id": "051646fe-408c-47db-ae52-c008f4dfa786", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5d845a8c07c4008ab96f59e7c30a90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5d845a8c07c4008ab96f59e7c30a90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5d845a8c07c4008ab96f59e7c30a90e.jpg", "file_size": 17165, "is_delete": false, "file_type": 1, "original_file_name": "JTSS362FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d845a8c07c4008ab96f59e7c30a90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d845a8c07c4008ab96f59e7c30a90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5d845a8c07c4008ab96f59e7c30a90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5d845a8c07c4008ab96f59e7c30a90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5d845a8c07c4008ab96f59e7c30a90e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Klg8FNyq4HPzwTDhOkRP9bFZHe8=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.789448+00 2025-12-09 10:15:16.789453+00 12468 8187#紫色 SPMX-20240815307658 \N \N \N 1 \N [{"file_id": "5b0f22e7-a4cf-4962-a28c-7e6e05fda669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "238f572a3dbd4bd094a8ae504d71c3d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "238f572a3dbd4bd094a8ae504d71c3d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "238f572a3dbd4bd094a8ae504d71c3d5.jpg", "file_size": 11922, "is_delete": false, "file_type": 1, "original_file_name": "8187#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238f572a3dbd4bd094a8ae504d71c3d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238f572a3dbd4bd094a8ae504d71c3d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238f572a3dbd4bd094a8ae504d71c3d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/238f572a3dbd4bd094a8ae504d71c3d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/238f572a3dbd4bd094a8ae504d71c3d5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7J9dgpGFGprN9j64CLYotImGChU=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.791607+00 2025-12-09 10:15:16.791612+00 12469 LZ1304#背心款4号色 SPMX-20240815307651 \N \N \N 1 \N [{"file_id": "636170ae-c4de-4b64-a5c1-aeb85fb84a5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1644aea8bfe44a7a3972f6c8e388b69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1644aea8bfe44a7a3972f6c8e388b69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1644aea8bfe44a7a3972f6c8e388b69.jpg", "file_size": 20786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1644aea8bfe44a7a3972f6c8e388b69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1644aea8bfe44a7a3972f6c8e388b69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1644aea8bfe44a7a3972f6c8e388b69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1644aea8bfe44a7a3972f6c8e388b69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1644aea8bfe44a7a3972f6c8e388b69.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXC5WyiQfnNhVdhu2LduV1_-Ve0=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.793586+00 2025-12-09 10:15:16.793591+00 12470 C5 SPMX-20240815307660 \N \N \N 1 \N [{"file_id": "e2c8c8fb-015b-4cff-a295-bffd17e8bfd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80da19c4dc0f4f41ab718ce3f07032ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80da19c4dc0f4f41ab718ce3f07032ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80da19c4dc0f4f41ab718ce3f07032ba.jpg", "file_size": 56635, "is_delete": false, "file_type": 1, "original_file_name": "C5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80da19c4dc0f4f41ab718ce3f07032ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80da19c4dc0f4f41ab718ce3f07032ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80da19c4dc0f4f41ab718ce3f07032ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80da19c4dc0f4f41ab718ce3f07032ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80da19c4dc0f4f41ab718ce3f07032ba.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gAePHdhK7sDvwSzyx7oCl6mHt_I=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.795536+00 2025-12-09 10:15:16.795542+00 12471 0004-1FWF#黄色-V5曲线 SPMX-20240815307653 \N \N \N 1 \N [{"file_id": "1761fb23-78b8-45c3-9886-a1b281ab0495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "febbfdb8e534408cad42cae2786fa227.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "febbfdb8e534408cad42cae2786fa227.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "febbfdb8e534408cad42cae2786fa227.jpg", "file_size": 20063, "is_delete": false, "file_type": 1, "original_file_name": "0004-1FWF#黄色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/febbfdb8e534408cad42cae2786fa227.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/febbfdb8e534408cad42cae2786fa227.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/febbfdb8e534408cad42cae2786fa227.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/febbfdb8e534408cad42cae2786fa227.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/febbfdb8e534408cad42cae2786fa227.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VYyDegtTP2sR0iFhmKd4etaPAz0=", "createTime": "2024-08-15 14:54:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.79745+00 2025-12-09 10:15:16.797455+00 12472 FJ10791C1#绿底圣诞老人 SPMX-20240815307646 \N \N \N 1 \N [{"file_id": "00bb9800-f8b8-452b-b7cc-6534fef80db8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "713244d4ae064ef6ad48217eeff9cc64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "713244d4ae064ef6ad48217eeff9cc64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "713244d4ae064ef6ad48217eeff9cc64.jpg", "file_size": 35164, "is_delete": false, "file_type": 1, "original_file_name": "FJ10791C1#绿底圣诞老人.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713244d4ae064ef6ad48217eeff9cc64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713244d4ae064ef6ad48217eeff9cc64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713244d4ae064ef6ad48217eeff9cc64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/713244d4ae064ef6ad48217eeff9cc64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/713244d4ae064ef6ad48217eeff9cc64.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUEfoVWDimFq1CoA1EcJsEGqqZg=", "createTime": "2024-08-15 14:54:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.799613+00 2025-12-09 10:15:16.799619+00 12473 8187#绿色 SPMX-20240815307670 \N \N \N 1 \N [{"file_id": "02917b0e-bd6f-4d07-baab-1c2d276dcbc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84929fda4e1d45a0ac88baba8c85b300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84929fda4e1d45a0ac88baba8c85b300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84929fda4e1d45a0ac88baba8c85b300.jpg", "file_size": 12867, "is_delete": false, "file_type": 1, "original_file_name": "8187#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84929fda4e1d45a0ac88baba8c85b300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84929fda4e1d45a0ac88baba8c85b300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84929fda4e1d45a0ac88baba8c85b300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84929fda4e1d45a0ac88baba8c85b300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84929fda4e1d45a0ac88baba8c85b300.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:caZOn1BIRJs2LctsaiVzBOqH8Vw=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.801538+00 2025-12-09 10:15:16.801543+00 12474 0004-1FWF#黑色-V5曲线 SPMX-20240815307665 \N \N \N 1 \N [{"file_id": "c31a1c1d-cef3-4fe5-9cda-6752b371cbad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18d58c1722804be2a1632a09c9aa0315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18d58c1722804be2a1632a09c9aa0315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18d58c1722804be2a1632a09c9aa0315.jpg", "file_size": 22789, "is_delete": false, "file_type": 1, "original_file_name": "0004-1FWF#黑色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d58c1722804be2a1632a09c9aa0315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d58c1722804be2a1632a09c9aa0315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d58c1722804be2a1632a09c9aa0315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18d58c1722804be2a1632a09c9aa0315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18d58c1722804be2a1632a09c9aa0315.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b70y1ngMAsJZ65ADTTGz3T5ROe8=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.803451+00 2025-12-09 10:15:16.803456+00 12475 112#-黑色 SPMX-20240815307675 \N \N \N 1 \N [{"file_id": "0902e592-cecd-4ea8-aeb0-fc55bb2a5a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea2e5a518b1f48ac8486f3807842092e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea2e5a518b1f48ac8486f3807842092e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea2e5a518b1f48ac8486f3807842092e.jpg", "file_size": 44714, "is_delete": false, "file_type": 1, "original_file_name": "112#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2e5a518b1f48ac8486f3807842092e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2e5a518b1f48ac8486f3807842092e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2e5a518b1f48ac8486f3807842092e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea2e5a518b1f48ac8486f3807842092e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea2e5a518b1f48ac8486f3807842092e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vRYWLi4rLXfiSk6sp866rU-r9E4=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.805626+00 2025-12-09 10:15:16.805631+00 12476 LJH0100-A2#原版粉底绿 SPMX-20240815307666 \N \N \N 1 \N [{"file_id": "87c6f99f-dbcd-4601-bfbf-ac8a4ccdd3ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cccfcef670f4c9398c7bfa99675a78a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cccfcef670f4c9398c7bfa99675a78a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cccfcef670f4c9398c7bfa99675a78a.jpg", "file_size": 68424, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A2#原版粉底绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cccfcef670f4c9398c7bfa99675a78a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cccfcef670f4c9398c7bfa99675a78a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cccfcef670f4c9398c7bfa99675a78a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cccfcef670f4c9398c7bfa99675a78a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cccfcef670f4c9398c7bfa99675a78a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dlr2R2LynYkaLzeuimUhlEhCdaw=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.807544+00 2025-12-09 10:15:16.807549+00 12477 JTSS364FW#VS-D3 SPMX-20240815307673 \N \N \N 1 \N [{"file_id": "03828cd1-2478-461b-a43e-0fb3442f363f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d410858450064261977be9e37fea36e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d410858450064261977be9e37fea36e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d410858450064261977be9e37fea36e2.jpg", "file_size": 14172, "is_delete": false, "file_type": 1, "original_file_name": "JTSS364FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410858450064261977be9e37fea36e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410858450064261977be9e37fea36e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410858450064261977be9e37fea36e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d410858450064261977be9e37fea36e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d410858450064261977be9e37fea36e2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTkDAd_E7h6tBlB-7S1MAnXm_Nk=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.80971+00 2025-12-09 10:15:16.809716+00 12478 112#-白色 SPMX-20240815307664 \N \N \N 1 \N [{"file_id": "d67a38b7-66a5-44eb-b94d-72d44abb5b4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "057d31f19db54f37b181e7dd2709dd5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "057d31f19db54f37b181e7dd2709dd5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "057d31f19db54f37b181e7dd2709dd5c.jpg", "file_size": 44657, "is_delete": false, "file_type": 1, "original_file_name": "112#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057d31f19db54f37b181e7dd2709dd5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057d31f19db54f37b181e7dd2709dd5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/057d31f19db54f37b181e7dd2709dd5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/057d31f19db54f37b181e7dd2709dd5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/057d31f19db54f37b181e7dd2709dd5c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTMARCY8cZYcQ2gRcCHbpVwDadk=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.811614+00 2025-12-09 10:15:16.811619+00 12479 DL31067#浅蓝绿前幅定位裁 SPMX-20240815307669 \N \N \N 1 \N [{"file_id": "fd5a5585-f9c4-4e2d-bf61-b22cd33c4591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5afbcc0f937a4508a7327beb32c44ddf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5afbcc0f937a4508a7327beb32c44ddf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5afbcc0f937a4508a7327beb32c44ddf.jpg", "file_size": 15962, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#浅蓝绿前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afbcc0f937a4508a7327beb32c44ddf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afbcc0f937a4508a7327beb32c44ddf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afbcc0f937a4508a7327beb32c44ddf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5afbcc0f937a4508a7327beb32c44ddf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5afbcc0f937a4508a7327beb32c44ddf.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RCtu340lUwGpZp8Nu3lZaw4O2M=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.81354+00 2025-12-09 10:15:16.813545+00 12480 23-2119#A4-领子4XL SPMX-20240815307663 \N \N \N 1 \N [{"file_id": "ce8e26c7-f1dd-44f8-9b60-34825e2501ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg", "file_size": 11402, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d6104a6a5ca4fd4840e5e3ee8277a3f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgX2Fs5iisOL_3Z-kLeR55i63l4=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.815654+00 2025-12-09 10:15:16.81566+00 12481 LZ1304#背心款5号色 SPMX-20240815307662 \N \N \N 1 \N [{"file_id": "7beb32ac-eaca-4e6f-aeee-d005ab7fed6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "283c05a5f59b4744a2ed8e49873ed2a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "283c05a5f59b4744a2ed8e49873ed2a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "283c05a5f59b4744a2ed8e49873ed2a2.jpg", "file_size": 20747, "is_delete": false, "file_type": 1, "original_file_name": "LZ1304#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283c05a5f59b4744a2ed8e49873ed2a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283c05a5f59b4744a2ed8e49873ed2a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283c05a5f59b4744a2ed8e49873ed2a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/283c05a5f59b4744a2ed8e49873ed2a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/283c05a5f59b4744a2ed8e49873ed2a2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kY3yfOjRWatJsECBdU8GW0KSWWw=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.817588+00 2025-12-09 10:15:16.817592+00 12482 HT2113FWE#白XL SPMX-20240815307668 \N \N \N 1 \N [{"file_id": "a71bceff-2719-46b6-a282-cd9b6d29b318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "295fbba144724b4f8d5e14346960b438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "295fbba144724b4f8d5e14346960b438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "295fbba144724b4f8d5e14346960b438.jpg", "file_size": 15514, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295fbba144724b4f8d5e14346960b438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295fbba144724b4f8d5e14346960b438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295fbba144724b4f8d5e14346960b438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/295fbba144724b4f8d5e14346960b438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/295fbba144724b4f8d5e14346960b438.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n34pi64nUeiu0AIB09IRbz2F7Cg=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.819702+00 2025-12-09 10:15:16.81971+00 12483 23-2119#A5-3XL SPMX-20240815307672 \N \N \N 1 \N [{"file_id": "c9458329-de09-4469-bb4e-9633bae3a057", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ca7c819f3f34b90bfdda31f00cd0b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ca7c819f3f34b90bfdda31f00cd0b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ca7c819f3f34b90bfdda31f00cd0b6e.jpg", "file_size": 17284, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca7c819f3f34b90bfdda31f00cd0b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca7c819f3f34b90bfdda31f00cd0b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca7c819f3f34b90bfdda31f00cd0b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ca7c819f3f34b90bfdda31f00cd0b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ca7c819f3f34b90bfdda31f00cd0b6e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2gLc5BjrHxzhD42XaX4DhbwCp-I=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.821777+00 2025-12-09 10:15:16.821782+00 12484 LJH0100-A2#黑底红 SPMX-20240815307677 \N \N \N 1 \N [{"file_id": "71f0cddc-5d43-4659-b6f7-86002b14647d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08be728f689448f5b1ff675571c6285b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08be728f689448f5b1ff675571c6285b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08be728f689448f5b1ff675571c6285b.jpg", "file_size": 74191, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A2#黑底红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08be728f689448f5b1ff675571c6285b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08be728f689448f5b1ff675571c6285b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08be728f689448f5b1ff675571c6285b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08be728f689448f5b1ff675571c6285b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08be728f689448f5b1ff675571c6285b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSCFRyh0TXjNCrCiVui-WzwEY3o=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.82406+00 2025-12-09 10:15:16.824067+00 12485 FJ11800A1-2#LWQ15 SPMX-20240815307667 \N \N \N 1 \N [{"file_id": "5b32be5b-3bb0-4399-ba37-9145b445c23e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92bf843dfe454389bf4839d167770c01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92bf843dfe454389bf4839d167770c01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92bf843dfe454389bf4839d167770c01.jpg", "file_size": 31931, "is_delete": false, "file_type": 1, "original_file_name": "FJ11800A1-2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bf843dfe454389bf4839d167770c01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bf843dfe454389bf4839d167770c01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bf843dfe454389bf4839d167770c01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92bf843dfe454389bf4839d167770c01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92bf843dfe454389bf4839d167770c01.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hsT1bvO0LVzg3ftgMxLtTrr_DeM=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.826367+00 2025-12-09 10:15:16.826373+00 12486 0004-2#WJC22 SPMX-20240815307676 \N \N \N 1 \N [{"file_id": "5c5655a8-b7ed-4d73-b156-6bd5037e9987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28b6151bbb0f4369981f4e67aa5d469e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28b6151bbb0f4369981f4e67aa5d469e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28b6151bbb0f4369981f4e67aa5d469e.jpg", "file_size": 18154, "is_delete": false, "file_type": 1, "original_file_name": "0004-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b6151bbb0f4369981f4e67aa5d469e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b6151bbb0f4369981f4e67aa5d469e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b6151bbb0f4369981f4e67aa5d469e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28b6151bbb0f4369981f4e67aa5d469e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28b6151bbb0f4369981f4e67aa5d469e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsjKq7JoUYYU8ffH2aqin9GHkJg=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.828729+00 2025-12-09 10:15:16.828734+00 12487 C5023# SPMX-20240815307671 \N \N \N 1 \N [{"file_id": "ce1dabc0-d525-4e56-be31-4f3f2bcbb990", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg", "file_size": 10073, "is_delete": false, "file_type": 1, "original_file_name": "C5023#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/604ac1c7b3c547c2b5a6c5a03aea9c4f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdpep1eVDn7NjCRnq-nb5m4btQY=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.830888+00 2025-12-09 10:15:16.830892+00 12488 LZ1305#捆条布 SPMX-20240815307674 \N \N \N 1 \N [{"file_id": "168b9f2a-985a-483a-a2c5-acb199a8acde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a5014f486af42a5babbe5cd9c2a77b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a5014f486af42a5babbe5cd9c2a77b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a5014f486af42a5babbe5cd9c2a77b7.jpg", "file_size": 29222, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5014f486af42a5babbe5cd9c2a77b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5014f486af42a5babbe5cd9c2a77b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5014f486af42a5babbe5cd9c2a77b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a5014f486af42a5babbe5cd9c2a77b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a5014f486af42a5babbe5cd9c2a77b7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckK_rm3TRaZxGnv1O_xA08N08Eg=", "createTime": "2024-08-15 14:54:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.832774+00 2025-12-09 10:15:16.832779+00 12489 DL31067#浅蓝绿批布 SPMX-20240815307679 \N \N \N 1 \N [{"file_id": "0f132605-18f1-4262-b65d-7786e908b6d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33c36440c0f44e8e8214c4dca86e2c64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33c36440c0f44e8e8214c4dca86e2c64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33c36440c0f44e8e8214c4dca86e2c64.jpg", "file_size": 21751, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#浅蓝绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c36440c0f44e8e8214c4dca86e2c64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c36440c0f44e8e8214c4dca86e2c64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c36440c0f44e8e8214c4dca86e2c64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33c36440c0f44e8e8214c4dca86e2c64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33c36440c0f44e8e8214c4dca86e2c64.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NtmAeSintTlALsSGx-fCom6uwrM=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.834783+00 2025-12-09 10:15:16.834788+00 12490 HT2113FWE#白领2XL SPMX-20240815307681 \N \N \N 1 \N [{"file_id": "4f833c14-a104-495d-9850-5ab1edea3e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "004eea7b8181447a91406c74cd71a58b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "004eea7b8181447a91406c74cd71a58b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "004eea7b8181447a91406c74cd71a58b.jpg", "file_size": 5036, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白领2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/004eea7b8181447a91406c74cd71a58b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/004eea7b8181447a91406c74cd71a58b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/004eea7b8181447a91406c74cd71a58b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/004eea7b8181447a91406c74cd71a58b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/004eea7b8181447a91406c74cd71a58b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIf0bt8HR6wxy1yPTpwS5bZVQdI=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.836985+00 2025-12-09 10:15:16.83699+00 12491 C5158# SPMX-20240815307680 \N \N \N 1 \N [{"file_id": "80cd22d8-ae5b-4011-bd29-e6be7c2655e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a446c52c393a4c8c99deea142257f906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a446c52c393a4c8c99deea142257f906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a446c52c393a4c8c99deea142257f906.jpg", "file_size": 11315, "is_delete": false, "file_type": 1, "original_file_name": "C5158#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a446c52c393a4c8c99deea142257f906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a446c52c393a4c8c99deea142257f906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a446c52c393a4c8c99deea142257f906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a446c52c393a4c8c99deea142257f906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a446c52c393a4c8c99deea142257f906.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YHsK0ALxD01g48mk-2Vt6hF_5M=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.838906+00 2025-12-09 10:15:16.838911+00 12492 81872#2XL SPMX-20240815307682 \N \N \N 1 \N [{"file_id": "413dd713-316a-4284-8ea2-2ac7448dd15b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d957d6c2b2e14bf58f86db8f6e7b4230.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d957d6c2b2e14bf58f86db8f6e7b4230.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d957d6c2b2e14bf58f86db8f6e7b4230.jpg", "file_size": 20428, "is_delete": false, "file_type": 1, "original_file_name": "81872#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957d6c2b2e14bf58f86db8f6e7b4230.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957d6c2b2e14bf58f86db8f6e7b4230.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957d6c2b2e14bf58f86db8f6e7b4230.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d957d6c2b2e14bf58f86db8f6e7b4230.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d957d6c2b2e14bf58f86db8f6e7b4230.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j132YNX-gXiN2Y1moZ0tU5bKXZ0=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.840784+00 2025-12-09 10:15:16.840789+00 12493 FJ11800A1-3#LWQ15 SPMX-20240815307678 \N \N \N 1 \N [{"file_id": "1d1c5bac-cd33-451f-81c9-97c2902ef885", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64cb9da4e4cf4b81be90c327703817d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64cb9da4e4cf4b81be90c327703817d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64cb9da4e4cf4b81be90c327703817d3.jpg", "file_size": 43111, "is_delete": false, "file_type": 1, "original_file_name": "FJ11800A1-3#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cb9da4e4cf4b81be90c327703817d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cb9da4e4cf4b81be90c327703817d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cb9da4e4cf4b81be90c327703817d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64cb9da4e4cf4b81be90c327703817d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64cb9da4e4cf4b81be90c327703817d3.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBtcNp6nekHk69sqyHLtOb_vbOk=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.843008+00 2025-12-09 10:15:16.843014+00 12494 JTSS365FW#VS-D3 SPMX-20240815307683 \N \N \N 1 \N [{"file_id": "4495f626-22c7-4a7a-835a-74453e585630", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6be21d6126942928d5901451d30aa5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6be21d6126942928d5901451d30aa5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6be21d6126942928d5901451d30aa5f.jpg", "file_size": 12411, "is_delete": false, "file_type": 1, "original_file_name": "JTSS365FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6be21d6126942928d5901451d30aa5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6be21d6126942928d5901451d30aa5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6be21d6126942928d5901451d30aa5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6be21d6126942928d5901451d30aa5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6be21d6126942928d5901451d30aa5f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HN_nmgeGTBmqbs4c2XG2V8ivGpI=", "createTime": "2024-08-15 14:54:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.845332+00 2025-12-09 10:15:16.845337+00 12495 C53-2#-10A SPMX-20240815307688 \N \N \N 1 \N [{"file_id": "044c65a1-aacf-44ff-b450-1d59ba128a0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2b72fa55e7e44aa8249d73d0fd32832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2b72fa55e7e44aa8249d73d0fd32832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2b72fa55e7e44aa8249d73d0fd32832.jpg", "file_size": 19661, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-10A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b72fa55e7e44aa8249d73d0fd32832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b72fa55e7e44aa8249d73d0fd32832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2b72fa55e7e44aa8249d73d0fd32832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2b72fa55e7e44aa8249d73d0fd32832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2b72fa55e7e44aa8249d73d0fd32832.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aowIJIN_DiAa5mJPONoE0Moixu4=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.847919+00 2025-12-09 10:15:16.847924+00 12496 1120FWF#原版蓝 SPMX-20240815307685 \N \N \N 1 \N [{"file_id": "e0a6b430-c0fb-4c0c-9443-ca1d17da58fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "260f0edb8224428da8e10d5c3563218c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "260f0edb8224428da8e10d5c3563218c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "260f0edb8224428da8e10d5c3563218c.jpg", "file_size": 14927, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#原版蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260f0edb8224428da8e10d5c3563218c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260f0edb8224428da8e10d5c3563218c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260f0edb8224428da8e10d5c3563218c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/260f0edb8224428da8e10d5c3563218c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/260f0edb8224428da8e10d5c3563218c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vf0Y7EFNHVJVXbbNeW-83g508cM=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.850293+00 2025-12-09 10:15:16.850298+00 12497 0004-2FWE#VS-D3 SPMX-20240815307684 \N \N \N 1 \N [{"file_id": "b7702607-44e3-4075-810e-4b540bff4c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8de76b95aa464e10a8b0e98211dfc5ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8de76b95aa464e10a8b0e98211dfc5ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8de76b95aa464e10a8b0e98211dfc5ba.jpg", "file_size": 17502, "is_delete": false, "file_type": 1, "original_file_name": "0004-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8de76b95aa464e10a8b0e98211dfc5ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8de76b95aa464e10a8b0e98211dfc5ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8de76b95aa464e10a8b0e98211dfc5ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8de76b95aa464e10a8b0e98211dfc5ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8de76b95aa464e10a8b0e98211dfc5ba.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V3MoF0-lOUebUq0zrwmW7soWH0U=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.852471+00 2025-12-09 10:15:16.852476+00 12498 LZ1305#背心款1号色 SPMX-20240815307686 \N \N \N 1 \N [{"file_id": "24aceb50-7ca8-4337-bedb-16a4676991d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aede254e71294f4f93ebd3db70c41b60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aede254e71294f4f93ebd3db70c41b60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aede254e71294f4f93ebd3db70c41b60.jpg", "file_size": 21343, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aede254e71294f4f93ebd3db70c41b60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aede254e71294f4f93ebd3db70c41b60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aede254e71294f4f93ebd3db70c41b60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aede254e71294f4f93ebd3db70c41b60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aede254e71294f4f93ebd3db70c41b60.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bUJsJgW1A3WbzmbSaYCaXA5D64Y=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.854896+00 2025-12-09 10:15:16.854901+00 12499 23-2119#A5-4XL SPMX-20240815307687 \N \N \N 1 \N [{"file_id": "c98525d3-9b05-4365-94a9-98378b33729f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7a7a4b94b7140d0befeb79a8639608e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7a7a4b94b7140d0befeb79a8639608e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7a7a4b94b7140d0befeb79a8639608e.jpg", "file_size": 15240, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a7a4b94b7140d0befeb79a8639608e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a7a4b94b7140d0befeb79a8639608e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a7a4b94b7140d0befeb79a8639608e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7a7a4b94b7140d0befeb79a8639608e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7a7a4b94b7140d0befeb79a8639608e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1itd9pdm6T9L9OOjYpXUKaaMOpg=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.857347+00 2025-12-09 10:15:16.857351+00 12500 LZ1305#背心款2号色 SPMX-20240815307696 \N \N \N 1 \N [{"file_id": "e48eb101-ecdb-47e1-9908-3f9b94acc0a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1620cfa79b854ce1a572d2da0ac2c82d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1620cfa79b854ce1a572d2da0ac2c82d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1620cfa79b854ce1a572d2da0ac2c82d.jpg", "file_size": 20803, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620cfa79b854ce1a572d2da0ac2c82d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620cfa79b854ce1a572d2da0ac2c82d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1620cfa79b854ce1a572d2da0ac2c82d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1620cfa79b854ce1a572d2da0ac2c82d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1620cfa79b854ce1a572d2da0ac2c82d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxGTptEQjtbs8QXnaJlAPpzA_Ks=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.859556+00 2025-12-09 10:15:16.859561+00 12501 0004-2FWF#V5曲线 SPMX-20240815307697 \N \N \N 1 \N [{"file_id": "6cbc9cbd-52a3-4eb7-8ff7-e9f266429f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9808881f70eb4d6a9cf5954f67d00129.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9808881f70eb4d6a9cf5954f67d00129.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9808881f70eb4d6a9cf5954f67d00129.jpg", "file_size": 22149, "is_delete": false, "file_type": 1, "original_file_name": "0004-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9808881f70eb4d6a9cf5954f67d00129.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9808881f70eb4d6a9cf5954f67d00129.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9808881f70eb4d6a9cf5954f67d00129.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9808881f70eb4d6a9cf5954f67d00129.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9808881f70eb4d6a9cf5954f67d00129.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cSOHw7aujVxW4Lmisn2KCjfv58Q=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.861549+00 2025-12-09 10:15:16.861554+00 12502 HT2113FWE#白领M SPMX-20240815307700 \N \N \N 1 \N [{"file_id": "2e3a2124-0e51-4b8f-86ce-4d1442a5b6ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760afcfb2f1944f0847f7dd1a152ed66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760afcfb2f1944f0847f7dd1a152ed66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760afcfb2f1944f0847f7dd1a152ed66.jpg", "file_size": 5034, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白领M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760afcfb2f1944f0847f7dd1a152ed66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760afcfb2f1944f0847f7dd1a152ed66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760afcfb2f1944f0847f7dd1a152ed66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760afcfb2f1944f0847f7dd1a152ed66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760afcfb2f1944f0847f7dd1a152ed66.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BqkApVa_xas5plyuusyVN9q4q5k=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.863664+00 2025-12-09 10:15:16.863669+00 12503 81872#4XL SPMX-20240815307703 \N \N \N 1 \N [{"file_id": "590b3242-11c0-4237-8d15-a220e02ae74c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28a349836d04459e80e6ca658429d55b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28a349836d04459e80e6ca658429d55b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28a349836d04459e80e6ca658429d55b.jpg", "file_size": 19605, "is_delete": false, "file_type": 1, "original_file_name": "81872#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a349836d04459e80e6ca658429d55b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a349836d04459e80e6ca658429d55b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a349836d04459e80e6ca658429d55b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28a349836d04459e80e6ca658429d55b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28a349836d04459e80e6ca658429d55b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7HheNYNz-z13OVt0NGbVWmI4fg=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.865799+00 2025-12-09 10:15:16.865804+00 12504 DL31067#深水红前幅定位裁 SPMX-20240815307692 \N \N \N 1 \N [{"file_id": "63d508e5-1221-4c16-adc7-53a6edfa807f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce6794df3085413daaa0896800f5007d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce6794df3085413daaa0896800f5007d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce6794df3085413daaa0896800f5007d.jpg", "file_size": 15969, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#深水红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6794df3085413daaa0896800f5007d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6794df3085413daaa0896800f5007d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6794df3085413daaa0896800f5007d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce6794df3085413daaa0896800f5007d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce6794df3085413daaa0896800f5007d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVGljEj8kAhQj5SlLiLNWb93bnE=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.867896+00 2025-12-09 10:15:16.867901+00 12505 1120FWF#原版蓝批布 SPMX-20240815307695 \N \N \N 1 \N [{"file_id": "c40f58ae-2a05-40f2-9ee2-fbbf31017834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea70499c62344057abe7465e1dac07b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea70499c62344057abe7465e1dac07b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea70499c62344057abe7465e1dac07b0.jpg", "file_size": 12287, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#原版蓝批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea70499c62344057abe7465e1dac07b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea70499c62344057abe7465e1dac07b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea70499c62344057abe7465e1dac07b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea70499c62344057abe7465e1dac07b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea70499c62344057abe7465e1dac07b0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QusDGo3UfBIB3jf95up31vmN8ls=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.870027+00 2025-12-09 10:15:16.870032+00 12506 23-2119#A5-领子3XL SPMX-20240815307698 \N \N \N 1 \N [{"file_id": "58f02d1b-71af-4ef9-936d-a2031f99b2c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f790baef88e94262947e39c3fea6aa25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f790baef88e94262947e39c3fea6aa25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f790baef88e94262947e39c3fea6aa25.jpg", "file_size": 11491, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f790baef88e94262947e39c3fea6aa25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f790baef88e94262947e39c3fea6aa25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f790baef88e94262947e39c3fea6aa25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f790baef88e94262947e39c3fea6aa25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f790baef88e94262947e39c3fea6aa25.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPIYudf16OG9VQAqygT7WGTpnQI=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.871916+00 2025-12-09 10:15:16.871921+00 12507 81872#3XL SPMX-20240815307693 \N \N \N 1 \N [{"file_id": "d99ae3bc-8abb-4c76-b930-d6652351cb82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfcfa43fc6254a52a27878450841567a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfcfa43fc6254a52a27878450841567a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfcfa43fc6254a52a27878450841567a.jpg", "file_size": 20683, "is_delete": false, "file_type": 1, "original_file_name": "81872#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcfa43fc6254a52a27878450841567a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcfa43fc6254a52a27878450841567a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcfa43fc6254a52a27878450841567a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfcfa43fc6254a52a27878450841567a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfcfa43fc6254a52a27878450841567a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7gK6zHmngKxc02likc3qdJVTRIk=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.874097+00 2025-12-09 10:15:16.874102+00 12508 C53-2#-11A SPMX-20240815307699 \N \N \N 1 \N [{"file_id": "7d2bdcc0-09d5-41c6-9983-56adb7b115ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c15818d2cbc843149fe2eef5230036ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c15818d2cbc843149fe2eef5230036ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c15818d2cbc843149fe2eef5230036ca.jpg", "file_size": 13417, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-11A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15818d2cbc843149fe2eef5230036ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15818d2cbc843149fe2eef5230036ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15818d2cbc843149fe2eef5230036ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c15818d2cbc843149fe2eef5230036ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c15818d2cbc843149fe2eef5230036ca.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lzw82wX8rxQhEcDMvust_4G_k2A=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.87599+00 2025-12-09 10:15:16.875995+00 12509 FJ11957C1#RC23 SPMX-20240815307701 \N \N \N 1 \N [{"file_id": "9ad75546-7c57-40e3-a4da-27ab46499c54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00cc9a0960bc4042b1026e8747270e8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00cc9a0960bc4042b1026e8747270e8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00cc9a0960bc4042b1026e8747270e8b.jpg", "file_size": 29096, "is_delete": false, "file_type": 1, "original_file_name": "FJ11957C1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00cc9a0960bc4042b1026e8747270e8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00cc9a0960bc4042b1026e8747270e8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00cc9a0960bc4042b1026e8747270e8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00cc9a0960bc4042b1026e8747270e8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00cc9a0960bc4042b1026e8747270e8b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdJlTBG_3RGt3DypIhUCg7SFNGo=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.87811+00 2025-12-09 10:15:16.878115+00 12510 HT2113FWE#白领L SPMX-20240815307691 \N \N \N 1 \N [{"file_id": "321c5034-07e0-4abb-9291-78baad62f0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d2dfa8f40784d7b84612a417bbd2760.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d2dfa8f40784d7b84612a417bbd2760.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d2dfa8f40784d7b84612a417bbd2760.jpg", "file_size": 5161, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白领L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2dfa8f40784d7b84612a417bbd2760.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2dfa8f40784d7b84612a417bbd2760.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d2dfa8f40784d7b84612a417bbd2760.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d2dfa8f40784d7b84612a417bbd2760.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d2dfa8f40784d7b84612a417bbd2760.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YSA8XKYNm8RfZpw7fS0svDsyvE=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.880013+00 2025-12-09 10:15:16.880018+00 12511 LJH0100-A3#橙色 SPMX-20240815307689 \N \N \N 1 \N [{"file_id": "60bdf6be-ea65-4e5b-bbd6-63e068ccf38b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d2d21b6d15485cac05fa90526ba9cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d2d21b6d15485cac05fa90526ba9cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d2d21b6d15485cac05fa90526ba9cc.jpg", "file_size": 76360, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A3#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2d21b6d15485cac05fa90526ba9cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2d21b6d15485cac05fa90526ba9cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d2d21b6d15485cac05fa90526ba9cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d2d21b6d15485cac05fa90526ba9cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d2d21b6d15485cac05fa90526ba9cc.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2nahc3gteYpE5QZxDruWWe-7O8=", "createTime": "2024-08-15 14:54:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.882118+00 2025-12-09 10:15:16.882123+00 12512 LJH0100-A3#黑色 SPMX-20240815307702 \N \N \N 1 \N [{"file_id": "917051d2-0c37-474c-92d9-e5c73e81d140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a5156bad9af44c681c2007601e51a8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a5156bad9af44c681c2007601e51a8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a5156bad9af44c681c2007601e51a8f.jpg", "file_size": 76834, "is_delete": false, "file_type": 1, "original_file_name": "LJH0100-A3#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5156bad9af44c681c2007601e51a8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5156bad9af44c681c2007601e51a8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5156bad9af44c681c2007601e51a8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a5156bad9af44c681c2007601e51a8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a5156bad9af44c681c2007601e51a8f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL00hV8SwcfdoXQoCLqCmr5hkDQ=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.884055+00 2025-12-09 10:15:16.88406+00 12513 FJ11957B1#RC23 SPMX-20240815307690 \N \N \N 1 \N [{"file_id": "e8635dd6-e10a-482a-868e-88d184dc4aba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5abea41893964cd18b2f34959eb1da38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5abea41893964cd18b2f34959eb1da38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5abea41893964cd18b2f34959eb1da38.jpg", "file_size": 34988, "is_delete": false, "file_type": 1, "original_file_name": "FJ11957B1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abea41893964cd18b2f34959eb1da38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abea41893964cd18b2f34959eb1da38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abea41893964cd18b2f34959eb1da38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5abea41893964cd18b2f34959eb1da38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5abea41893964cd18b2f34959eb1da38.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hBVK7aa815_LVBIhDmnhui15VhE=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.886173+00 2025-12-09 10:15:16.886178+00 12514 JTSS366FW#VS-D3 SPMX-20240815307694 \N \N \N 1 \N [{"file_id": "335f1a6d-a41b-44d6-86da-cf41b0626d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72d8dcbe9fc461ea05c3b12721287ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72d8dcbe9fc461ea05c3b12721287ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72d8dcbe9fc461ea05c3b12721287ad.jpg", "file_size": 11564, "is_delete": false, "file_type": 1, "original_file_name": "JTSS366FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72d8dcbe9fc461ea05c3b12721287ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72d8dcbe9fc461ea05c3b12721287ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72d8dcbe9fc461ea05c3b12721287ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72d8dcbe9fc461ea05c3b12721287ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72d8dcbe9fc461ea05c3b12721287ad.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SQz1f8OGb8bUY4q6EMhaQTA74EE=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.88807+00 2025-12-09 10:15:16.888075+00 12515 DL31067#深水红批布 SPMX-20240815307704 \N \N \N 1 \N [{"file_id": "86508f4d-e6d9-477e-a00d-993d20219c45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcaeb65c0ef343349b678548d1c85c44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcaeb65c0ef343349b678548d1c85c44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcaeb65c0ef343349b678548d1c85c44.jpg", "file_size": 21984, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#深水红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcaeb65c0ef343349b678548d1c85c44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcaeb65c0ef343349b678548d1c85c44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcaeb65c0ef343349b678548d1c85c44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcaeb65c0ef343349b678548d1c85c44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcaeb65c0ef343349b678548d1c85c44.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5EFF5RY_NQdSnK7lXJdPecfF4ts=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.89022+00 2025-12-09 10:15:16.890224+00 12516 1120FWF#橙色 SPMX-20240815307706 \N \N \N 1 \N [{"file_id": "4e15f4bd-f8fe-4c54-8273-d7087258a6dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52fd4a0db5a24e1a815f588582bed312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52fd4a0db5a24e1a815f588582bed312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52fd4a0db5a24e1a815f588582bed312.jpg", "file_size": 15668, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd4a0db5a24e1a815f588582bed312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd4a0db5a24e1a815f588582bed312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52fd4a0db5a24e1a815f588582bed312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52fd4a0db5a24e1a815f588582bed312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52fd4a0db5a24e1a815f588582bed312.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLBcyk-nx0uERRkKbLX8XWrpfnQ=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.892156+00 2025-12-09 10:15:16.892161+00 12517 0004-3FWE#L SPMX-20240815307710 \N \N \N 1 \N [{"file_id": "d8320732-3014-45ff-ad0b-dbbfe8b5c5cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ca2488c0e2b4dada642b470ebabee78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ca2488c0e2b4dada642b470ebabee78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ca2488c0e2b4dada642b470ebabee78.jpg", "file_size": 23423, "is_delete": false, "file_type": 1, "original_file_name": "0004-3FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca2488c0e2b4dada642b470ebabee78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca2488c0e2b4dada642b470ebabee78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca2488c0e2b4dada642b470ebabee78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ca2488c0e2b4dada642b470ebabee78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ca2488c0e2b4dada642b470ebabee78.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9r8EydLqI5Ixq0GFJav8w4xGAQg=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.894345+00 2025-12-09 10:15:16.89435+00 12518 HT2113FWE#白领XL SPMX-20240815307709 \N \N \N 1 \N [{"file_id": "5b5eb225-ecb3-423a-b27e-90b8ed40cc50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b98beea0efad4d6097dc417cf78490fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b98beea0efad4d6097dc417cf78490fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b98beea0efad4d6097dc417cf78490fb.jpg", "file_size": 5010, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#白领XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b98beea0efad4d6097dc417cf78490fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b98beea0efad4d6097dc417cf78490fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b98beea0efad4d6097dc417cf78490fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b98beea0efad4d6097dc417cf78490fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b98beea0efad4d6097dc417cf78490fb.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZ_VYyHvv11T3TikmhVfoLvxvDU=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.896263+00 2025-12-09 10:15:16.896268+00 12519 23-2119#A5-领子4XL SPMX-20240815307711 \N \N \N 1 \N [{"file_id": "4addc625-350d-44e4-9255-47df57f4da66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9475c8f318354ad9bc9b48660ec7836e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9475c8f318354ad9bc9b48660ec7836e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9475c8f318354ad9bc9b48660ec7836e.jpg", "file_size": 11781, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9475c8f318354ad9bc9b48660ec7836e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9475c8f318354ad9bc9b48660ec7836e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9475c8f318354ad9bc9b48660ec7836e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9475c8f318354ad9bc9b48660ec7836e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9475c8f318354ad9bc9b48660ec7836e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMrV0wX21ycN-Bajz0peJiFo8A8=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.898165+00 2025-12-09 10:15:16.898169+00 12520 C53-2#-12A SPMX-20240815307707 \N \N \N 1 \N [{"file_id": "39157697-9e55-4034-9c1a-17a3a98afcd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3ea9b43350540509b8087ddc68a76a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3ea9b43350540509b8087ddc68a76a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3ea9b43350540509b8087ddc68a76a5.jpg", "file_size": 21181, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-12A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ea9b43350540509b8087ddc68a76a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ea9b43350540509b8087ddc68a76a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ea9b43350540509b8087ddc68a76a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3ea9b43350540509b8087ddc68a76a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3ea9b43350540509b8087ddc68a76a5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6C-biE5NK77-J2IgzRV_o-_L-E=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.900303+00 2025-12-09 10:15:16.900308+00 12521 FJ13581#乱花 SPMX-20240815307713 \N \N \N 1 \N [{"file_id": "4abfe0fb-f8b2-4898-9f66-1b8f077c813c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6897177e3094dfa83b1934212dba021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6897177e3094dfa83b1934212dba021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6897177e3094dfa83b1934212dba021.jpg", "file_size": 72245, "is_delete": false, "file_type": 1, "original_file_name": "FJ13581#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6897177e3094dfa83b1934212dba021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6897177e3094dfa83b1934212dba021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6897177e3094dfa83b1934212dba021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6897177e3094dfa83b1934212dba021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6897177e3094dfa83b1934212dba021.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YddZnGbeC1ZTd3Hd1k-UkGlVzQ4=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.902215+00 2025-12-09 10:15:16.902221+00 12522 1120FWF#橙色批布 SPMX-20240815307717 \N \N \N 1 \N [{"file_id": "9a658374-7769-4688-8f75-1577c439c589", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73336dfcc9b64aacb68689a36edf1c52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73336dfcc9b64aacb68689a36edf1c52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73336dfcc9b64aacb68689a36edf1c52.jpg", "file_size": 11213, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#橙色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73336dfcc9b64aacb68689a36edf1c52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73336dfcc9b64aacb68689a36edf1c52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73336dfcc9b64aacb68689a36edf1c52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73336dfcc9b64aacb68689a36edf1c52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73336dfcc9b64aacb68689a36edf1c52.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WO6SNc6hIIXX5dpu1HJeqdYSsAg=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.904338+00 2025-12-09 10:15:16.904343+00 12523 JTSS368FW#VS-D3 SPMX-20240815307714 \N \N \N 1 \N [{"file_id": "cc26e4ec-5f74-48d0-a4a4-9a464ead6265", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46344c63515a4cbfbd49da48cb810d21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46344c63515a4cbfbd49da48cb810d21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46344c63515a4cbfbd49da48cb810d21.jpg", "file_size": 13925, "is_delete": false, "file_type": 1, "original_file_name": "JTSS368FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46344c63515a4cbfbd49da48cb810d21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46344c63515a4cbfbd49da48cb810d21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46344c63515a4cbfbd49da48cb810d21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46344c63515a4cbfbd49da48cb810d21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46344c63515a4cbfbd49da48cb810d21.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXPW9Gc1aplivO95OVr74N_q0Zc=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.906259+00 2025-12-09 10:15:16.906265+00 12524 LJH0663-A16#匹布 SPMX-20240815307712 \N \N \N 1 \N [{"file_id": "f1ed0dd1-a99e-47fc-8d55-619c32b59fdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "950c892382524107bb5634ddfab99783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "950c892382524107bb5634ddfab99783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "950c892382524107bb5634ddfab99783.jpg", "file_size": 50149, "is_delete": false, "file_type": 1, "original_file_name": "LJH0663-A16#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950c892382524107bb5634ddfab99783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950c892382524107bb5634ddfab99783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950c892382524107bb5634ddfab99783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/950c892382524107bb5634ddfab99783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/950c892382524107bb5634ddfab99783.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkW5PEqOlAmszmdTm9b9_TMWf-U=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.90841+00 2025-12-09 10:15:16.908415+00 12525 JTSS367FW#VS-D3 SPMX-20240815307705 \N \N \N 1 \N [{"file_id": "d7043fb2-b4d8-4209-9632-c1daea813fa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "642f8e06f4c745bfa43e2b1d7d9a215c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "642f8e06f4c745bfa43e2b1d7d9a215c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "642f8e06f4c745bfa43e2b1d7d9a215c.jpg", "file_size": 14615, "is_delete": false, "file_type": 1, "original_file_name": "JTSS367FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642f8e06f4c745bfa43e2b1d7d9a215c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642f8e06f4c745bfa43e2b1d7d9a215c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642f8e06f4c745bfa43e2b1d7d9a215c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/642f8e06f4c745bfa43e2b1d7d9a215c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/642f8e06f4c745bfa43e2b1d7d9a215c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fozzK_8OmA5OW8URFixnKdUt7-g=", "createTime": "2024-08-15 14:54:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.910341+00 2025-12-09 10:15:16.910346+00 12526 81872#XL SPMX-20240815307716 \N \N \N 1 \N [{"file_id": "84ac0522-f6e8-462a-8100-d7b7ce37d2d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10c717d41625430b8f23ff25c0a75495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10c717d41625430b8f23ff25c0a75495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10c717d41625430b8f23ff25c0a75495.jpg", "file_size": 20903, "is_delete": false, "file_type": 1, "original_file_name": "81872#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c717d41625430b8f23ff25c0a75495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c717d41625430b8f23ff25c0a75495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c717d41625430b8f23ff25c0a75495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10c717d41625430b8f23ff25c0a75495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10c717d41625430b8f23ff25c0a75495.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9JdpaoZEgmjqjyT3qnTUjJ3izU=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.912259+00 2025-12-09 10:15:16.912264+00 12527 LZ1305#背心款3号色 SPMX-20240815307708 \N \N \N 1 \N [{"file_id": "7a758cea-b4de-46dd-ad95-0c391679235c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eae06d17e62149f3bb2b45a9adc86981.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eae06d17e62149f3bb2b45a9adc86981.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eae06d17e62149f3bb2b45a9adc86981.jpg", "file_size": 20457, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae06d17e62149f3bb2b45a9adc86981.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae06d17e62149f3bb2b45a9adc86981.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae06d17e62149f3bb2b45a9adc86981.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eae06d17e62149f3bb2b45a9adc86981.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eae06d17e62149f3bb2b45a9adc86981.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZtYpcY7pl_IuRXRXEjh7TiUC6nw=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.914389+00 2025-12-09 10:15:16.914393+00 12528 DL31067#玫红前幅定位裁 SPMX-20240815307715 \N \N \N 1 \N [{"file_id": "fc5a84e7-35e9-4429-bdf0-6485fe9d85b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6760b30dd352407d98d18fa6227d886d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6760b30dd352407d98d18fa6227d886d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6760b30dd352407d98d18fa6227d886d.jpg", "file_size": 15888, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#玫红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6760b30dd352407d98d18fa6227d886d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6760b30dd352407d98d18fa6227d886d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6760b30dd352407d98d18fa6227d886d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6760b30dd352407d98d18fa6227d886d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6760b30dd352407d98d18fa6227d886d.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dYFQ1Q6Q-rthQwafLNU2cTrH-U=", "createTime": "2024-08-15 14:54:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.916264+00 2025-12-09 10:15:16.916268+00 12529 0004-3FWE#M SPMX-20240815307719 \N \N \N 1 \N [{"file_id": "b8503da9-c225-4b28-b620-6612c0855e2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f978744ff23e45538cb27244e227e0da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f978744ff23e45538cb27244e227e0da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f978744ff23e45538cb27244e227e0da.jpg", "file_size": 23169, "is_delete": false, "file_type": 1, "original_file_name": "0004-3FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f978744ff23e45538cb27244e227e0da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f978744ff23e45538cb27244e227e0da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f978744ff23e45538cb27244e227e0da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f978744ff23e45538cb27244e227e0da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f978744ff23e45538cb27244e227e0da.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zY_7WYzK-lAGd85flVkXM4aqfms=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.918404+00 2025-12-09 10:15:16.918409+00 12530 HT2113FWE#黑L SPMX-20240815307729 \N \N \N 1 \N [{"file_id": "d3888e7e-3758-4832-bd1d-3cea3866c48c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765b7aa42e8f4dda8fb7e864a83c4925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765b7aa42e8f4dda8fb7e864a83c4925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765b7aa42e8f4dda8fb7e864a83c4925.jpg", "file_size": 18351, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765b7aa42e8f4dda8fb7e864a83c4925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765b7aa42e8f4dda8fb7e864a83c4925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765b7aa42e8f4dda8fb7e864a83c4925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765b7aa42e8f4dda8fb7e864a83c4925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765b7aa42e8f4dda8fb7e864a83c4925.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_nrNn9Nn6RHxcU5_9KAAG03V24c=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.920339+00 2025-12-09 10:15:16.920344+00 12531 FJ13581#格子 SPMX-20240815307727 \N \N \N 1 \N [{"file_id": "61a5a588-dd37-4528-b572-51a1d03f820d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8022d3c1163c411ab0db5d33cda8ded7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8022d3c1163c411ab0db5d33cda8ded7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8022d3c1163c411ab0db5d33cda8ded7.jpg", "file_size": 15250, "is_delete": false, "file_type": 1, "original_file_name": "FJ13581#格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8022d3c1163c411ab0db5d33cda8ded7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8022d3c1163c411ab0db5d33cda8ded7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8022d3c1163c411ab0db5d33cda8ded7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8022d3c1163c411ab0db5d33cda8ded7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8022d3c1163c411ab0db5d33cda8ded7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hycqzqbfrnCMe11xoJaWlc-GeM=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.922476+00 2025-12-09 10:15:16.922481+00 12532 DL31067#玫红批布 SPMX-20240815307725 \N \N \N 1 \N [{"file_id": "4d123433-474d-4a8c-942c-a77ce12a47ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65b018710c4943d3bfa369c48cdd5594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65b018710c4943d3bfa369c48cdd5594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65b018710c4943d3bfa369c48cdd5594.jpg", "file_size": 22832, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#玫红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b018710c4943d3bfa369c48cdd5594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b018710c4943d3bfa369c48cdd5594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b018710c4943d3bfa369c48cdd5594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65b018710c4943d3bfa369c48cdd5594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65b018710c4943d3bfa369c48cdd5594.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u9UHrShIvfFZ75WGrpvJf8hyx3Y=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.924367+00 2025-12-09 10:15:16.924372+00 12533 1120FWF#浅紫色 SPMX-20240815307726 \N \N \N 1 \N [{"file_id": "06dd239d-277e-43ce-baa9-2371c7fbb106", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a2f0e1ed034577b4d169a63503dfd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a2f0e1ed034577b4d169a63503dfd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a2f0e1ed034577b4d169a63503dfd0.jpg", "file_size": 14843, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#浅紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a2f0e1ed034577b4d169a63503dfd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a2f0e1ed034577b4d169a63503dfd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a2f0e1ed034577b4d169a63503dfd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a2f0e1ed034577b4d169a63503dfd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a2f0e1ed034577b4d169a63503dfd0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G4yPI6shLdTcFyXb7h8cqb7HOYo=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.926521+00 2025-12-09 10:15:16.926526+00 12534 C53-2#-13A SPMX-20240815307724 \N \N \N 1 \N [{"file_id": "de364368-09cf-44df-aca6-ae4451ff2c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57e06faf565e4199a6ada6be951cd34e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57e06faf565e4199a6ada6be951cd34e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57e06faf565e4199a6ada6be951cd34e.jpg", "file_size": 24285, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-13A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e06faf565e4199a6ada6be951cd34e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e06faf565e4199a6ada6be951cd34e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57e06faf565e4199a6ada6be951cd34e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57e06faf565e4199a6ada6be951cd34e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57e06faf565e4199a6ada6be951cd34e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uaAkYbeHnYdPt0NVWER7v0Y7EjU=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.928446+00 2025-12-09 10:15:16.928451+00 12535 81876#白色2XL SPMX-20240815307728 \N \N \N 1 \N [{"file_id": "bc0fe1e7-425e-47d7-bfab-9d64e568e774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e785e89150c4883ae85ea1aaf57087c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e785e89150c4883ae85ea1aaf57087c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e785e89150c4883ae85ea1aaf57087c.jpg", "file_size": 20085, "is_delete": false, "file_type": 1, "original_file_name": "81876#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e785e89150c4883ae85ea1aaf57087c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e785e89150c4883ae85ea1aaf57087c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e785e89150c4883ae85ea1aaf57087c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e785e89150c4883ae85ea1aaf57087c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e785e89150c4883ae85ea1aaf57087c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3KXlWMcwf_-lNDSQ6YGkyUECT_A=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.93062+00 2025-12-09 10:15:16.930625+00 12536 LZ1305#背心款4号色 SPMX-20240815307720 \N \N \N 1 \N [{"file_id": "b2b8d4c1-8af3-4a74-9cde-1f3e29a2721f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c3ac49dd334dbeae67fa97e99357c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c3ac49dd334dbeae67fa97e99357c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c3ac49dd334dbeae67fa97e99357c4.jpg", "file_size": 20750, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c3ac49dd334dbeae67fa97e99357c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c3ac49dd334dbeae67fa97e99357c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c3ac49dd334dbeae67fa97e99357c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c3ac49dd334dbeae67fa97e99357c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c3ac49dd334dbeae67fa97e99357c4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdMMJuUwKy5LWpIhQyWTMWrMAkw=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.932531+00 2025-12-09 10:15:16.932536+00 12537 JTSS369FW#VS-D3 SPMX-20240815307723 \N \N \N 1 \N [{"file_id": "29c19d8a-d56a-4076-bf70-0090ced394f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c13b20795f43d492409f0b7d72de8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c13b20795f43d492409f0b7d72de8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c13b20795f43d492409f0b7d72de8b.jpg", "file_size": 12456, "is_delete": false, "file_type": 1, "original_file_name": "JTSS369FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c13b20795f43d492409f0b7d72de8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c13b20795f43d492409f0b7d72de8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c13b20795f43d492409f0b7d72de8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c13b20795f43d492409f0b7d72de8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c13b20795f43d492409f0b7d72de8b.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XiH439PSC1QVPXRZ3NO9w46MmwI=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.9346+00 2025-12-09 10:15:16.934605+00 12538 HT2113FWE#黑2XL SPMX-20240815307718 \N \N \N 1 \N [{"file_id": "7db7849e-f1cd-4d92-b123-33203db1732c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fb7bb98c5f64f548ed0b43d44987c20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fb7bb98c5f64f548ed0b43d44987c20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fb7bb98c5f64f548ed0b43d44987c20.jpg", "file_size": 18022, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb7bb98c5f64f548ed0b43d44987c20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb7bb98c5f64f548ed0b43d44987c20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fb7bb98c5f64f548ed0b43d44987c20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fb7bb98c5f64f548ed0b43d44987c20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fb7bb98c5f64f548ed0b43d44987c20.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:So5yFGWaZoE5zap_Viu1EUAMtB4=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.936811+00 2025-12-09 10:15:16.936816+00 12539 23-2119#A6-3XL SPMX-20240815307721 \N \N \N 1 \N [{"file_id": "d4cf3aa6-7e71-46eb-b7b5-cdba91fe07ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg", "file_size": 20124, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6cf5ac28d6f46ee8c7ca5db4a344a02.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DNyrSnP367J795DCfPoyBe-srNY=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.938717+00 2025-12-09 10:15:16.938722+00 12540 LJH0663-A16#双边定位 SPMX-20240815307722 \N \N \N 1 \N [{"file_id": "1f27ba0a-957c-409b-9349-18c3fbf8f33a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "750cfd2c2b10415c959e8b01676a0c6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "750cfd2c2b10415c959e8b01676a0c6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "750cfd2c2b10415c959e8b01676a0c6f.jpg", "file_size": 27362, "is_delete": false, "file_type": 1, "original_file_name": "LJH0663-A16#双边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cfd2c2b10415c959e8b01676a0c6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cfd2c2b10415c959e8b01676a0c6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750cfd2c2b10415c959e8b01676a0c6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/750cfd2c2b10415c959e8b01676a0c6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/750cfd2c2b10415c959e8b01676a0c6f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_dhzHvJ8Mj2Z72bgY5-I-zBIRc=", "createTime": "2024-08-15 14:54:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.940598+00 2025-12-09 10:15:16.940603+00 12541 LJH1000#兰粉 SPMX-20240815307737 \N \N \N 1 \N [{"file_id": "19cd79b2-4154-429d-b009-6d82bab449cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fac2ad60072439595620b5b72d7467e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fac2ad60072439595620b5b72d7467e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fac2ad60072439595620b5b72d7467e.jpg", "file_size": 55523, "is_delete": false, "file_type": 1, "original_file_name": "LJH1000#兰粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fac2ad60072439595620b5b72d7467e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fac2ad60072439595620b5b72d7467e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fac2ad60072439595620b5b72d7467e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fac2ad60072439595620b5b72d7467e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fac2ad60072439595620b5b72d7467e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CPk4oZnAvOwX42vuepsWTwnq2e0=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.942496+00 2025-12-09 10:15:16.9425+00 12542 LZ1305#背心款5号色 SPMX-20240815307732 \N \N \N 1 \N [{"file_id": "22f4803e-f7a7-41b9-921d-2e2aae085b06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb59e113458a459a8997d15a21302dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb59e113458a459a8997d15a21302dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb59e113458a459a8997d15a21302dd9.jpg", "file_size": 20962, "is_delete": false, "file_type": 1, "original_file_name": "LZ1305#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb59e113458a459a8997d15a21302dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb59e113458a459a8997d15a21302dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb59e113458a459a8997d15a21302dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb59e113458a459a8997d15a21302dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb59e113458a459a8997d15a21302dd9.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlhksYPek9frZWbkl4FRTcensX4=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.944679+00 2025-12-09 10:15:16.944685+00 12543 JTSS370FW#VS-D3 SPMX-20240815307733 \N \N \N 1 \N [{"file_id": "97def1b1-d7f7-4084-bec3-f16a5715605c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f11485a7ecb49e49d808b8c2737b804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f11485a7ecb49e49d808b8c2737b804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f11485a7ecb49e49d808b8c2737b804.jpg", "file_size": 12057, "is_delete": false, "file_type": 1, "original_file_name": "JTSS370FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f11485a7ecb49e49d808b8c2737b804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f11485a7ecb49e49d808b8c2737b804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f11485a7ecb49e49d808b8c2737b804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f11485a7ecb49e49d808b8c2737b804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f11485a7ecb49e49d808b8c2737b804.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBOBoupv13yKEofYM97-trNGlcg=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.946598+00 2025-12-09 10:15:16.946603+00 12544 FJ13581#樱桃 SPMX-20240815307736 \N \N \N 1 \N [{"file_id": "5881fa38-3fee-440a-a9d7-5f8065b71d53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db8b8cc9d64b48deaa871a37dc276da0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db8b8cc9d64b48deaa871a37dc276da0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db8b8cc9d64b48deaa871a37dc276da0.jpg", "file_size": 70658, "is_delete": false, "file_type": 1, "original_file_name": "FJ13581#樱桃.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8b8cc9d64b48deaa871a37dc276da0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8b8cc9d64b48deaa871a37dc276da0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db8b8cc9d64b48deaa871a37dc276da0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db8b8cc9d64b48deaa871a37dc276da0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db8b8cc9d64b48deaa871a37dc276da0.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eb_u9A-owuh7_BW7swGg2Q99VxM=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.948855+00 2025-12-09 10:15:16.94886+00 12545 1120FWF#浅紫色批布 SPMX-20240815307738 \N \N \N 1 \N [{"file_id": "2af4799f-c419-4fe6-98f5-2b36ce12194a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e4076e86d864f6facdbe823379e290a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e4076e86d864f6facdbe823379e290a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e4076e86d864f6facdbe823379e290a.jpg", "file_size": 11310, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#浅紫色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4076e86d864f6facdbe823379e290a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4076e86d864f6facdbe823379e290a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4076e86d864f6facdbe823379e290a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e4076e86d864f6facdbe823379e290a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e4076e86d864f6facdbe823379e290a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7DAmAcrCTUPkWM6jPVG14eMP5k=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.950766+00 2025-12-09 10:15:16.95077+00 12546 HT2113FWE#黑M SPMX-20240815307740 \N \N \N 1 \N [{"file_id": "01513328-1982-49dd-b021-2d24184b111d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4af66114737348378304cede82692d04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4af66114737348378304cede82692d04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4af66114737348378304cede82692d04.jpg", "file_size": 19275, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af66114737348378304cede82692d04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af66114737348378304cede82692d04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af66114737348378304cede82692d04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4af66114737348378304cede82692d04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4af66114737348378304cede82692d04.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdrgIVDRQlevyBA2um3D1KvgS48=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.952758+00 2025-12-09 10:15:16.952763+00 12547 C53-2#-14A SPMX-20240815307734 \N \N \N 1 \N [{"file_id": "a06be517-5925-4f33-b2e0-79d01b52bb4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efdcd944338445d0b843188f69ab2dc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efdcd944338445d0b843188f69ab2dc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efdcd944338445d0b843188f69ab2dc7.jpg", "file_size": 24450, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-14A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdcd944338445d0b843188f69ab2dc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdcd944338445d0b843188f69ab2dc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdcd944338445d0b843188f69ab2dc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efdcd944338445d0b843188f69ab2dc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efdcd944338445d0b843188f69ab2dc7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Lh1sb9GahvTgd8qeYJUYy0lNJo=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.954787+00 2025-12-09 10:15:16.954791+00 12548 81876#白色3XL SPMX-20240815307735 \N \N \N 1 \N [{"file_id": "3ff38830-beef-4683-955b-7074c47bc80e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29197f92a4204d3a9adabe04d8f6c4a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29197f92a4204d3a9adabe04d8f6c4a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29197f92a4204d3a9adabe04d8f6c4a2.jpg", "file_size": 20405, "is_delete": false, "file_type": 1, "original_file_name": "81876#白色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29197f92a4204d3a9adabe04d8f6c4a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29197f92a4204d3a9adabe04d8f6c4a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29197f92a4204d3a9adabe04d8f6c4a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29197f92a4204d3a9adabe04d8f6c4a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29197f92a4204d3a9adabe04d8f6c4a2.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcPpuD6vs8jSXIw-p0CHHnffziI=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.956786+00 2025-12-09 10:15:16.956791+00 12549 DL31067#蓝绿前幅定位裁 SPMX-20240815307739 \N \N \N 1 \N [{"file_id": "91c680ac-b450-490a-b2ec-f7e83f0a6e98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea2c88f0c2624514af08d97cb3b61209.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea2c88f0c2624514af08d97cb3b61209.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea2c88f0c2624514af08d97cb3b61209.jpg", "file_size": 15511, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#蓝绿前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2c88f0c2624514af08d97cb3b61209.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2c88f0c2624514af08d97cb3b61209.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2c88f0c2624514af08d97cb3b61209.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea2c88f0c2624514af08d97cb3b61209.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea2c88f0c2624514af08d97cb3b61209.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgKnvDFR6gPZJGnCnY-lOvTZScg=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.958721+00 2025-12-09 10:15:16.958726+00 12550 0004-3FWE#VS-D3 SPMX-20240815307730 \N \N \N 1 \N [{"file_id": "295559ff-5d9c-49b2-9684-cd769fd69c39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac2c13b462294afb99721c57a83e5e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac2c13b462294afb99721c57a83e5e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac2c13b462294afb99721c57a83e5e2a.jpg", "file_size": 17900, "is_delete": false, "file_type": 1, "original_file_name": "0004-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2c13b462294afb99721c57a83e5e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2c13b462294afb99721c57a83e5e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2c13b462294afb99721c57a83e5e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac2c13b462294afb99721c57a83e5e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac2c13b462294afb99721c57a83e5e2a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yqqyl8nPfCa6qH036WWku-pj60Y=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.960668+00 2025-12-09 10:15:16.960674+00 12551 23-2119#A6-领子3XL SPMX-20240815307742 \N \N \N 1 \N [{"file_id": "4facea5a-6c0d-4a44-965a-3b84f2aa910c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6de17144d2e41e89fb255db9755e6d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6de17144d2e41e89fb255db9755e6d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6de17144d2e41e89fb255db9755e6d8.jpg", "file_size": 13959, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6de17144d2e41e89fb255db9755e6d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6de17144d2e41e89fb255db9755e6d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6de17144d2e41e89fb255db9755e6d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6de17144d2e41e89fb255db9755e6d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6de17144d2e41e89fb255db9755e6d8.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJICi4slgZjh-YAolwgsccPTjDM=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.962987+00 2025-12-09 10:15:16.962992+00 12552 23-2119#A6-4XL SPMX-20240815307731 \N \N \N 1 \N [{"file_id": "1aa61caf-a13c-4b15-bec7-ca93c934552b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e28280dbf6d4616adb9e89ff4cc13c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e28280dbf6d4616adb9e89ff4cc13c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e28280dbf6d4616adb9e89ff4cc13c6.jpg", "file_size": 18004, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28280dbf6d4616adb9e89ff4cc13c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28280dbf6d4616adb9e89ff4cc13c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28280dbf6d4616adb9e89ff4cc13c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e28280dbf6d4616adb9e89ff4cc13c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e28280dbf6d4616adb9e89ff4cc13c6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyZsa_zx9tKjNSsl365fhCWbHCo=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.965315+00 2025-12-09 10:15:16.965321+00 12553 0004-3FWF#V5曲线 SPMX-20240815307741 \N \N \N 1 \N [{"file_id": "04d931f6-731f-4a77-ab88-7979eff03cb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97645e55ffc447848296d7b8d3c7607a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97645e55ffc447848296d7b8d3c7607a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97645e55ffc447848296d7b8d3c7607a.jpg", "file_size": 8266, "is_delete": false, "file_type": 1, "original_file_name": "0004-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97645e55ffc447848296d7b8d3c7607a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97645e55ffc447848296d7b8d3c7607a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97645e55ffc447848296d7b8d3c7607a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97645e55ffc447848296d7b8d3c7607a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97645e55ffc447848296d7b8d3c7607a.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HoKNiioai4jdMUbCio9t0WHXL4=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.967727+00 2025-12-09 10:15:16.967733+00 12554 0004-4#WJC22 SPMX-20240815307752 \N \N \N 1 \N [{"file_id": "e3d1e4aa-aad3-4c05-a63a-474ceab2d230", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c49b93ed3564f7bb94dca539a2912f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c49b93ed3564f7bb94dca539a2912f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c49b93ed3564f7bb94dca539a2912f4.jpg", "file_size": 13968, "is_delete": false, "file_type": 1, "original_file_name": "0004-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c49b93ed3564f7bb94dca539a2912f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c49b93ed3564f7bb94dca539a2912f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c49b93ed3564f7bb94dca539a2912f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c49b93ed3564f7bb94dca539a2912f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c49b93ed3564f7bb94dca539a2912f4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDrYzWaBJYMD6NnIqxzN14c-3b0=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.970066+00 2025-12-09 10:15:16.970072+00 12555 LZ1306#捆条布 SPMX-20240815307743 \N \N \N 1 \N [{"file_id": "2c02416b-75ba-4adc-913f-b2f5abe44ce8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "327bdb1fd800434da29700d88998b007.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "327bdb1fd800434da29700d88998b007.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "327bdb1fd800434da29700d88998b007.jpg", "file_size": 17612, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327bdb1fd800434da29700d88998b007.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327bdb1fd800434da29700d88998b007.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327bdb1fd800434da29700d88998b007.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/327bdb1fd800434da29700d88998b007.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/327bdb1fd800434da29700d88998b007.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZQI6d5Te7Qi-C6xw_EhAiM681o=", "createTime": "2024-08-15 14:54:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.972158+00 2025-12-09 10:15:16.972164+00 12556 1120FWF#紫色批布 SPMX-20240815307758 \N \N \N 1 \N [{"file_id": "772d7fb8-c3b3-4864-b4b3-b8c176a5b6f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85f9ece85c1f4036866d75ef18460131.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85f9ece85c1f4036866d75ef18460131.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85f9ece85c1f4036866d75ef18460131.jpg", "file_size": 11816, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#紫色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9ece85c1f4036866d75ef18460131.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9ece85c1f4036866d75ef18460131.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9ece85c1f4036866d75ef18460131.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85f9ece85c1f4036866d75ef18460131.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85f9ece85c1f4036866d75ef18460131.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pecq-9G7vGavxxmaFw5WhvMb-XI=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.974295+00 2025-12-09 10:15:16.974301+00 12557 FJ13772A1#RC23 SPMX-20240815307747 \N \N \N 1 \N [{"file_id": "0942ff5a-4db2-40cf-a6a7-e8b8db711d61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a66d10c56c2d4c0bbaeac5e453548344.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a66d10c56c2d4c0bbaeac5e453548344.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a66d10c56c2d4c0bbaeac5e453548344.jpg", "file_size": 18975, "is_delete": false, "file_type": 1, "original_file_name": "FJ13772A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66d10c56c2d4c0bbaeac5e453548344.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66d10c56c2d4c0bbaeac5e453548344.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66d10c56c2d4c0bbaeac5e453548344.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a66d10c56c2d4c0bbaeac5e453548344.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a66d10c56c2d4c0bbaeac5e453548344.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Qhel8U4oqdbR7R53Uldj-nvUk8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.976541+00 2025-12-09 10:15:16.976546+00 12558 DL31067#蓝绿批布 SPMX-20240815307749 \N \N \N 1 \N [{"file_id": "6049a583-bffb-421e-92d1-eca83dbbc54b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd5d85e0a1664778a3a5355ace16f412.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd5d85e0a1664778a3a5355ace16f412.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd5d85e0a1664778a3a5355ace16f412.jpg", "file_size": 21610, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#蓝绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5d85e0a1664778a3a5355ace16f412.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5d85e0a1664778a3a5355ace16f412.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5d85e0a1664778a3a5355ace16f412.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd5d85e0a1664778a3a5355ace16f412.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd5d85e0a1664778a3a5355ace16f412.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIVDRV9f6RGqk3YzNetsLtWpyXg=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.978715+00 2025-12-09 10:15:16.97872+00 12559 C53-2#-15A SPMX-20240815307746 \N \N \N 1 \N [{"file_id": "ee7a58a5-c006-4d0f-b994-5ebe039cc085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b662b3643c1474186a2aa47aa523aad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b662b3643c1474186a2aa47aa523aad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b662b3643c1474186a2aa47aa523aad.jpg", "file_size": 29560, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-15A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b662b3643c1474186a2aa47aa523aad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b662b3643c1474186a2aa47aa523aad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b662b3643c1474186a2aa47aa523aad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b662b3643c1474186a2aa47aa523aad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b662b3643c1474186a2aa47aa523aad.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQbO_NMYRKLkIdd2pRq1q3K9R8g=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.980844+00 2025-12-09 10:15:16.98085+00 12560 DL31067#黄色前幅定位裁 SPMX-20240815307757 \N \N \N 1 \N [{"file_id": "f158e92a-6940-4693-baf4-feca07e379bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53c7c22c2f37452aa3e26fd6ee9555a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53c7c22c2f37452aa3e26fd6ee9555a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53c7c22c2f37452aa3e26fd6ee9555a1.jpg", "file_size": 15775, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#黄色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c7c22c2f37452aa3e26fd6ee9555a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c7c22c2f37452aa3e26fd6ee9555a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c7c22c2f37452aa3e26fd6ee9555a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53c7c22c2f37452aa3e26fd6ee9555a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53c7c22c2f37452aa3e26fd6ee9555a1.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LX3Et8eZe7leqadqVC9xI4qP7Pw=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.982991+00 2025-12-09 10:15:16.982996+00 12561 23-2119#A6-领子4XL SPMX-20240815307753 \N \N \N 1 \N [{"file_id": "9715a64b-46fc-4e14-b486-c7c0e718a67c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e02683e2ff2342a4806edf4574289334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e02683e2ff2342a4806edf4574289334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e02683e2ff2342a4806edf4574289334.jpg", "file_size": 13994, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02683e2ff2342a4806edf4574289334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02683e2ff2342a4806edf4574289334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e02683e2ff2342a4806edf4574289334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e02683e2ff2342a4806edf4574289334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e02683e2ff2342a4806edf4574289334.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bp4eF6SuuGxCIJ4tFBq1RLxwEcU=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.98493+00 2025-12-09 10:15:16.984936+00 12562 JTSS371FW#VS-D3 SPMX-20240815307744 \N \N \N 1 \N [{"file_id": "c42c019c-7d03-4dfd-9e7b-3072ed53a4bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35d0b6f1588c480e9b6fe14db5b23396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35d0b6f1588c480e9b6fe14db5b23396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35d0b6f1588c480e9b6fe14db5b23396.jpg", "file_size": 15261, "is_delete": false, "file_type": 1, "original_file_name": "JTSS371FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d0b6f1588c480e9b6fe14db5b23396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d0b6f1588c480e9b6fe14db5b23396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d0b6f1588c480e9b6fe14db5b23396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35d0b6f1588c480e9b6fe14db5b23396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35d0b6f1588c480e9b6fe14db5b23396.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6CzAZ7pxVyZRpsZC8VPhcA5re8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.986892+00 2025-12-09 10:15:16.986897+00 12563 1120FWF#紫色 SPMX-20240815307748 \N \N \N 1 \N [{"file_id": "59eed67d-812b-4e41-b61f-32b8524ed42a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68981da53ac74d649aafca2c70ed62e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68981da53ac74d649aafca2c70ed62e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68981da53ac74d649aafca2c70ed62e5.jpg", "file_size": 15445, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68981da53ac74d649aafca2c70ed62e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68981da53ac74d649aafca2c70ed62e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68981da53ac74d649aafca2c70ed62e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68981da53ac74d649aafca2c70ed62e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68981da53ac74d649aafca2c70ed62e5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWRwxqrM1yKWUYrTrHNcS2yUFWI=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.989058+00 2025-12-09 10:15:16.989062+00 12564 LJH1000#兰黄 SPMX-20240815307750 \N \N \N 1 \N [{"file_id": "681bf83e-8237-4f4c-acd6-71b3659ebee2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ef63657b0cf49a5bbda5a10e16eb2ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ef63657b0cf49a5bbda5a10e16eb2ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ef63657b0cf49a5bbda5a10e16eb2ea.jpg", "file_size": 50994, "is_delete": false, "file_type": 1, "original_file_name": "LJH1000#兰黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef63657b0cf49a5bbda5a10e16eb2ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef63657b0cf49a5bbda5a10e16eb2ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef63657b0cf49a5bbda5a10e16eb2ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ef63657b0cf49a5bbda5a10e16eb2ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ef63657b0cf49a5bbda5a10e16eb2ea.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-CBoOeX_qUWQ2nv_uLrLRPW433k=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.990966+00 2025-12-09 10:15:16.990971+00 12565 81876#白色XL SPMX-20240815307745 \N \N \N 1 \N [{"file_id": "5e56085d-9b71-481a-9346-229f30414058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83d872c605d34aa2a67c6fb4d57c853f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83d872c605d34aa2a67c6fb4d57c853f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83d872c605d34aa2a67c6fb4d57c853f.jpg", "file_size": 18926, "is_delete": false, "file_type": 1, "original_file_name": "81876#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d872c605d34aa2a67c6fb4d57c853f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d872c605d34aa2a67c6fb4d57c853f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d872c605d34aa2a67c6fb4d57c853f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83d872c605d34aa2a67c6fb4d57c853f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83d872c605d34aa2a67c6fb4d57c853f.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrKIBUQwHPwvO9zomtJ-nbnNVtA=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.992917+00 2025-12-09 10:15:16.992922+00 12566 JTSS372FW#VS-D3 SPMX-20240815307755 \N \N \N 1 \N [{"file_id": "de45ade2-5d8a-4ad3-b53f-65187c4d8753", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0026d5be364b4e3cb9d92c40d9ed740e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0026d5be364b4e3cb9d92c40d9ed740e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0026d5be364b4e3cb9d92c40d9ed740e.jpg", "file_size": 13237, "is_delete": false, "file_type": 1, "original_file_name": "JTSS372FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026d5be364b4e3cb9d92c40d9ed740e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026d5be364b4e3cb9d92c40d9ed740e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0026d5be364b4e3cb9d92c40d9ed740e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0026d5be364b4e3cb9d92c40d9ed740e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0026d5be364b4e3cb9d92c40d9ed740e.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EX1VkxxMPqfIcNqXKAbffm1mFe8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.995102+00 2025-12-09 10:15:16.995108+00 12567 81876#黄色2XL SPMX-20240815307756 \N \N \N 1 \N [{"file_id": "eb9f0b69-88e5-425f-b61c-10e0dff7685e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f94d2a4256e54d959a85c08fa8974214.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f94d2a4256e54d959a85c08fa8974214.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f94d2a4256e54d959a85c08fa8974214.jpg", "file_size": 20987, "is_delete": false, "file_type": 1, "original_file_name": "81876#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94d2a4256e54d959a85c08fa8974214.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94d2a4256e54d959a85c08fa8974214.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94d2a4256e54d959a85c08fa8974214.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f94d2a4256e54d959a85c08fa8974214.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f94d2a4256e54d959a85c08fa8974214.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHbkkW82KNuc0nINuQom1s2t4mc=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.997065+00 2025-12-09 10:15:16.99707+00 12568 HT2113FWE#黑XL SPMX-20240815307751 \N \N \N 1 \N [{"file_id": "601705a3-1927-4a37-9316-dfc7c024c5ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38041cf8d2d74c12bd5439c37954ac39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38041cf8d2d74c12bd5439c37954ac39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38041cf8d2d74c12bd5439c37954ac39.jpg", "file_size": 18453, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38041cf8d2d74c12bd5439c37954ac39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38041cf8d2d74c12bd5439c37954ac39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38041cf8d2d74c12bd5439c37954ac39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38041cf8d2d74c12bd5439c37954ac39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38041cf8d2d74c12bd5439c37954ac39.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBMsXD-4mQTDDegO74NRzXTDJR8=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:16.999016+00 2025-12-09 10:15:16.999021+00 12569 LZ1306#背心款1号色 SPMX-20240815307754 \N \N \N 1 \N [{"file_id": "460a6433-4f38-44b8-ae5a-07c04601835d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eb339f73c2643e4a0e35f33e78fd35c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eb339f73c2643e4a0e35f33e78fd35c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eb339f73c2643e4a0e35f33e78fd35c.jpg", "file_size": 18917, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb339f73c2643e4a0e35f33e78fd35c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb339f73c2643e4a0e35f33e78fd35c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb339f73c2643e4a0e35f33e78fd35c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eb339f73c2643e4a0e35f33e78fd35c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eb339f73c2643e4a0e35f33e78fd35c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jgvjb7Flk6y3aS-6wsamSO5F_9Q=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.001158+00 2025-12-09 10:15:17.001163+00 12570 81876#黄色3XL SPMX-20240815307767 \N \N \N 1 \N [{"file_id": "af585974-baae-4853-ba0b-b380598b6fb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97a9223c4f2a448d8445f0359ef69d92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97a9223c4f2a448d8445f0359ef69d92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97a9223c4f2a448d8445f0359ef69d92.jpg", "file_size": 20994, "is_delete": false, "file_type": 1, "original_file_name": "81876#黄色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a9223c4f2a448d8445f0359ef69d92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a9223c4f2a448d8445f0359ef69d92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97a9223c4f2a448d8445f0359ef69d92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97a9223c4f2a448d8445f0359ef69d92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97a9223c4f2a448d8445f0359ef69d92.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-991NNzxezjVHfymxEXiWjOWVNU=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.003062+00 2025-12-09 10:15:17.003067+00 12571 FJ13778A1#RC23 SPMX-20240815307761 \N \N \N 1 \N [{"file_id": "88d7f981-e3e4-410b-9e5f-7f1be40b6bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19da96f368b14d5d8c9596b464b9c307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19da96f368b14d5d8c9596b464b9c307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19da96f368b14d5d8c9596b464b9c307.jpg", "file_size": 18483, "is_delete": false, "file_type": 1, "original_file_name": "FJ13778A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19da96f368b14d5d8c9596b464b9c307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19da96f368b14d5d8c9596b464b9c307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19da96f368b14d5d8c9596b464b9c307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19da96f368b14d5d8c9596b464b9c307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19da96f368b14d5d8c9596b464b9c307.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eGlZr7V3WNJ6aH4jvDaIn7KP0LI=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.005028+00 2025-12-09 10:15:17.005033+00 12572 LZ1306#背心款2号色 SPMX-20240815307765 \N \N \N 1 \N [{"file_id": "a1179fcc-ba49-49e4-8809-fb96054060fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e772e502c216453d83c51d1a88c7091c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e772e502c216453d83c51d1a88c7091c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e772e502c216453d83c51d1a88c7091c.jpg", "file_size": 18410, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e772e502c216453d83c51d1a88c7091c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e772e502c216453d83c51d1a88c7091c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e772e502c216453d83c51d1a88c7091c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e772e502c216453d83c51d1a88c7091c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e772e502c216453d83c51d1a88c7091c.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nt6WQvcFnnLOQFGAKTLZ9vS4YKU=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.007175+00 2025-12-09 10:15:17.00718+00 12573 C53-2#-16A SPMX-20240815307759 \N \N \N 1 \N [{"file_id": "aaf19adb-f914-4a15-8e31-57179e252a05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37fd9dc0bae0479d9ce5d143e06fc046.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37fd9dc0bae0479d9ce5d143e06fc046.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37fd9dc0bae0479d9ce5d143e06fc046.jpg", "file_size": 30329, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-16A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd9dc0bae0479d9ce5d143e06fc046.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd9dc0bae0479d9ce5d143e06fc046.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd9dc0bae0479d9ce5d143e06fc046.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37fd9dc0bae0479d9ce5d143e06fc046.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37fd9dc0bae0479d9ce5d143e06fc046.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ljKlKn96P4CW645CDxnq_KVw7I=", "createTime": "2024-08-15 14:54:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.009115+00 2025-12-09 10:15:17.009119+00 12574 DL31067#黄色批布 SPMX-20240815307768 \N \N \N 1 \N [{"file_id": "a871b297-a3f1-410f-82fe-fb0b17e69f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a5f57ce10084ff19f8cbd34a2dceb89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a5f57ce10084ff19f8cbd34a2dceb89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a5f57ce10084ff19f8cbd34a2dceb89.jpg", "file_size": 21028, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#黄色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f57ce10084ff19f8cbd34a2dceb89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f57ce10084ff19f8cbd34a2dceb89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f57ce10084ff19f8cbd34a2dceb89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a5f57ce10084ff19f8cbd34a2dceb89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a5f57ce10084ff19f8cbd34a2dceb89.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0Xo7IaVzoXGrordCoRekvYT-ts=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.011031+00 2025-12-09 10:15:17.011036+00 12575 LJH1000#红绿 SPMX-20240815307760 \N \N \N 1 \N [{"file_id": "245e2771-564a-4e35-a8b9-f232517e84ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8283c39f01a48d0a0f36251ecd0a4a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8283c39f01a48d0a0f36251ecd0a4a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8283c39f01a48d0a0f36251ecd0a4a8.jpg", "file_size": 55943, "is_delete": false, "file_type": 1, "original_file_name": "LJH1000#红绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8283c39f01a48d0a0f36251ecd0a4a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8283c39f01a48d0a0f36251ecd0a4a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8283c39f01a48d0a0f36251ecd0a4a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8283c39f01a48d0a0f36251ecd0a4a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8283c39f01a48d0a0f36251ecd0a4a8.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qji0YLnnTKMBRwso_Y1LkdKZVm8=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.01324+00 2025-12-09 10:15:17.013244+00 12576 HT2113FWE#黑领2XL SPMX-20240815307763 \N \N \N 1 \N [{"file_id": "64b6d078-6b9f-4939-b157-17d580e7d18d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "522d0f11b1434c12b5902533a7f8d375.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "522d0f11b1434c12b5902533a7f8d375.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "522d0f11b1434c12b5902533a7f8d375.jpg", "file_size": 5740, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑领2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d0f11b1434c12b5902533a7f8d375.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d0f11b1434c12b5902533a7f8d375.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522d0f11b1434c12b5902533a7f8d375.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/522d0f11b1434c12b5902533a7f8d375.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/522d0f11b1434c12b5902533a7f8d375.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHpetdq2H1pP-CzxwkUWeu6Hags=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.015185+00 2025-12-09 10:15:17.01519+00 12577 0004-4FWE#L SPMX-20240815307762 \N \N \N 1 \N [{"file_id": "e55689c9-3cbd-4307-bc8f-cf0988abff4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "123b550c985f4b889e76302e864dec63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "123b550c985f4b889e76302e864dec63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "123b550c985f4b889e76302e864dec63.jpg", "file_size": 23712, "is_delete": false, "file_type": 1, "original_file_name": "0004-4FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123b550c985f4b889e76302e864dec63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123b550c985f4b889e76302e864dec63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/123b550c985f4b889e76302e864dec63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/123b550c985f4b889e76302e864dec63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/123b550c985f4b889e76302e864dec63.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lmvisn0TgWvhaum3FmUG-Hs_D4c=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.017092+00 2025-12-09 10:15:17.017097+00 12578 1120FWF#黄色 SPMX-20240815307770 \N \N \N 1 \N [{"file_id": "14c05f81-ec2f-4b4d-82e3-8b179b6bb872", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08bda89d1b4a40d193a240b736dde066.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08bda89d1b4a40d193a240b736dde066.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08bda89d1b4a40d193a240b736dde066.jpg", "file_size": 15272, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bda89d1b4a40d193a240b736dde066.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bda89d1b4a40d193a240b736dde066.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08bda89d1b4a40d193a240b736dde066.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08bda89d1b4a40d193a240b736dde066.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08bda89d1b4a40d193a240b736dde066.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSD5m7EiMAU1qiskbyx-83dy584=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.019235+00 2025-12-09 10:15:17.01924+00 12579 23-2119#A7-3XL SPMX-20240815307764 \N \N \N 1 \N [{"file_id": "e71b4953-e9c8-4594-99a4-401be9268673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "586c1cbdce1a4a20bf9d956c97d07400.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "586c1cbdce1a4a20bf9d956c97d07400.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "586c1cbdce1a4a20bf9d956c97d07400.jpg", "file_size": 17909, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586c1cbdce1a4a20bf9d956c97d07400.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586c1cbdce1a4a20bf9d956c97d07400.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586c1cbdce1a4a20bf9d956c97d07400.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/586c1cbdce1a4a20bf9d956c97d07400.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/586c1cbdce1a4a20bf9d956c97d07400.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5xONcsx2o0i3AWF3spTkY0oLUc=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.021135+00 2025-12-09 10:15:17.02114+00 12580 JTSS373FW#VS-D3 SPMX-20240815307766 \N \N \N 1 \N [{"file_id": "0cc8f850-6599-4ee5-a2fa-953fc68d31d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4cef2965bff4d5990864f1d0e764c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4cef2965bff4d5990864f1d0e764c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4cef2965bff4d5990864f1d0e764c14.jpg", "file_size": 14025, "is_delete": false, "file_type": 1, "original_file_name": "JTSS373FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cef2965bff4d5990864f1d0e764c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cef2965bff4d5990864f1d0e764c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4cef2965bff4d5990864f1d0e764c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4cef2965bff4d5990864f1d0e764c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4cef2965bff4d5990864f1d0e764c14.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txRfvefMSOO0EVNfuZLiqe5Weno=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.023304+00 2025-12-09 10:15:17.02331+00 12581 C53-2#-1A SPMX-20240815307769 \N \N \N 1 \N [{"file_id": "99ae9f5c-2549-479b-9a92-6543da5f1893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f72964376794ec3ab88d747a3aa05c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f72964376794ec3ab88d747a3aa05c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f72964376794ec3ab88d747a3aa05c6.jpg", "file_size": 15529, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-1A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f72964376794ec3ab88d747a3aa05c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f72964376794ec3ab88d747a3aa05c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f72964376794ec3ab88d747a3aa05c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f72964376794ec3ab88d747a3aa05c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f72964376794ec3ab88d747a3aa05c6.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGAkDMV4QrbR43mgn4QbymXm8qk=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.025192+00 2025-12-09 10:15:17.025196+00 12582 0004-4FWE#M SPMX-20240815307773 \N \N \N 1 \N [{"file_id": "f14f0a0d-fc55-46eb-a2d8-fd6da7a8fa9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0201fa823314531877fdffb6a5e3047.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0201fa823314531877fdffb6a5e3047.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0201fa823314531877fdffb6a5e3047.jpg", "file_size": 23961, "is_delete": false, "file_type": 1, "original_file_name": "0004-4FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0201fa823314531877fdffb6a5e3047.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0201fa823314531877fdffb6a5e3047.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0201fa823314531877fdffb6a5e3047.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0201fa823314531877fdffb6a5e3047.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0201fa823314531877fdffb6a5e3047.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LsNwSBntGQGahgj07BkDu12XOug=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.027359+00 2025-12-09 10:15:17.027364+00 12583 FKDK-023-1-批布 SPMX-20240815307775 \N \N \N 1 \N [{"file_id": "c1516349-59f0-4829-bc97-3a4487d2046d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32058a42d884411e90fdaa7873d05ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32058a42d884411e90fdaa7873d05ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32058a42d884411e90fdaa7873d05ee5.jpg", "file_size": 54834, "is_delete": false, "file_type": 1, "original_file_name": "FKDK-023-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32058a42d884411e90fdaa7873d05ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32058a42d884411e90fdaa7873d05ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32058a42d884411e90fdaa7873d05ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32058a42d884411e90fdaa7873d05ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32058a42d884411e90fdaa7873d05ee5.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTVv3NfItipZRHyEMR3kHDaP1DA=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.029283+00 2025-12-09 10:15:17.029288+00 12584 1120FWF#黄色批布 SPMX-20240815307781 \N \N \N 1 \N [{"file_id": "c67e01e1-c6bf-401d-a283-75c0ec0b8de8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg", "file_size": 12089, "is_delete": false, "file_type": 1, "original_file_name": "1120FWF#黄色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec9d0fb4ff044f4a9a1a5e21666e85a4.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAc-iWTf7Ae9cO8-wvZGPZR1MyE=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.031213+00 2025-12-09 10:15:17.031218+00 12585 23-2119#A7-领子3XL SPMX-20240815307782 \N \N \N 1 \N [{"file_id": "77401cfa-1873-42b1-a372-56a5945e56e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf9f6100765341d9a2815eeb77a486e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf9f6100765341d9a2815eeb77a486e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf9f6100765341d9a2815eeb77a486e7.jpg", "file_size": 11496, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9f6100765341d9a2815eeb77a486e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9f6100765341d9a2815eeb77a486e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf9f6100765341d9a2815eeb77a486e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf9f6100765341d9a2815eeb77a486e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf9f6100765341d9a2815eeb77a486e7.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ikf3cOeAEEMMaySThb-4_xqii90=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.033457+00 2025-12-09 10:15:17.033462+00 12586 HT2113FWE#黑领M SPMX-20240815307785 \N \N \N 1 \N [{"file_id": "2415d2cc-cb2c-47a4-bee4-d74fbfca9819", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "769e43762c564c3e9491eda87110ddac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "769e43762c564c3e9491eda87110ddac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "769e43762c564c3e9491eda87110ddac.jpg", "file_size": 5769, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑领M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e43762c564c3e9491eda87110ddac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e43762c564c3e9491eda87110ddac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e43762c564c3e9491eda87110ddac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/769e43762c564c3e9491eda87110ddac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/769e43762c564c3e9491eda87110ddac.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-rcz0734fDuXnFUEcqpCKrb8lA=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.035396+00 2025-12-09 10:15:17.035401+00 12587 FKDK-023-2-批布 SPMX-20240815307786 \N \N \N 1 \N [{"file_id": "512ae41d-0956-4835-b0e7-b0948ba74bed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76e507d092044c3da8ff3aa7d655da94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76e507d092044c3da8ff3aa7d655da94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76e507d092044c3da8ff3aa7d655da94.jpg", "file_size": 55351, "is_delete": false, "file_type": 1, "original_file_name": "FKDK-023-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e507d092044c3da8ff3aa7d655da94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e507d092044c3da8ff3aa7d655da94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e507d092044c3da8ff3aa7d655da94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76e507d092044c3da8ff3aa7d655da94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76e507d092044c3da8ff3aa7d655da94.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TYUajfJDeUvaXbBtWhyJzdkDPp0=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.037322+00 2025-12-09 10:15:17.037326+00 12588 81876#黄色XL SPMX-20240815307776 \N \N \N 1 \N [{"file_id": "6a627b0b-fc6a-4d89-bbe5-7baf27977084", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25499e2b9f4f4e5db027f5770c827c95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25499e2b9f4f4e5db027f5770c827c95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25499e2b9f4f4e5db027f5770c827c95.jpg", "file_size": 19655, "is_delete": false, "file_type": 1, "original_file_name": "81876#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25499e2b9f4f4e5db027f5770c827c95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25499e2b9f4f4e5db027f5770c827c95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25499e2b9f4f4e5db027f5770c827c95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25499e2b9f4f4e5db027f5770c827c95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25499e2b9f4f4e5db027f5770c827c95.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55FiljjfntML4khPXEBq9XnZjeQ=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.039247+00 2025-12-09 10:15:17.039257+00 12589 JTSS374FW#VS-D3 SPMX-20240815307777 \N \N \N 1 \N [{"file_id": "16341d5c-fbde-444a-878e-969573bd7890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12fad7e639fb4dd3bb9a97fb1a64d409.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12fad7e639fb4dd3bb9a97fb1a64d409.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12fad7e639fb4dd3bb9a97fb1a64d409.jpg", "file_size": 15759, "is_delete": false, "file_type": 1, "original_file_name": "JTSS374FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fad7e639fb4dd3bb9a97fb1a64d409.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fad7e639fb4dd3bb9a97fb1a64d409.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fad7e639fb4dd3bb9a97fb1a64d409.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12fad7e639fb4dd3bb9a97fb1a64d409.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12fad7e639fb4dd3bb9a97fb1a64d409.jpg?e=1765361716&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5qeEHNdeyJ04X5K5_xnJzNZFD8=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.67764+00 2025-12-09 10:15:17.677651+00 12590 HT2113FWE#黑领L SPMX-20240815307774 \N \N \N 1 \N [{"file_id": "36dee6ab-8612-4bca-856b-a123d1b0939b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef9785f5cdc84762a2dc87ec5074e99d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef9785f5cdc84762a2dc87ec5074e99d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef9785f5cdc84762a2dc87ec5074e99d.jpg", "file_size": 5966, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑领L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9785f5cdc84762a2dc87ec5074e99d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9785f5cdc84762a2dc87ec5074e99d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9785f5cdc84762a2dc87ec5074e99d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef9785f5cdc84762a2dc87ec5074e99d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef9785f5cdc84762a2dc87ec5074e99d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bv6iH2Gzy_3-FfAvusN0OV_HVhg=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.680268+00 2025-12-09 10:15:17.680274+00 12591 LZ1306#背心款3号色 SPMX-20240815307778 \N \N \N 1 \N [{"file_id": "67c8d6d7-b15d-4e0a-be1f-6cc7be2b5a39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "929fa2117ec34411a785e9b56f5b95a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "929fa2117ec34411a785e9b56f5b95a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "929fa2117ec34411a785e9b56f5b95a3.jpg", "file_size": 17857, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929fa2117ec34411a785e9b56f5b95a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929fa2117ec34411a785e9b56f5b95a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929fa2117ec34411a785e9b56f5b95a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/929fa2117ec34411a785e9b56f5b95a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/929fa2117ec34411a785e9b56f5b95a3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nCOPCKFiOONXuDPPnFvRzyrlz8=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.682518+00 2025-12-09 10:15:17.682522+00 12592 LJH11184#黄色 SPMX-20240815307784 \N \N \N 1 \N [{"file_id": "1ace39c4-f713-40a5-acb8-e6e3b48cf0bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31c85c003b6f40f4add0cc779acebd63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31c85c003b6f40f4add0cc779acebd63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31c85c003b6f40f4add0cc779acebd63.jpg", "file_size": 47983, "is_delete": false, "file_type": 1, "original_file_name": "LJH11184#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c85c003b6f40f4add0cc779acebd63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c85c003b6f40f4add0cc779acebd63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31c85c003b6f40f4add0cc779acebd63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31c85c003b6f40f4add0cc779acebd63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31c85c003b6f40f4add0cc779acebd63.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GISJXhPHvRk_Gb-VxJhnDWHTjB0=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.684836+00 2025-12-09 10:15:17.684841+00 12593 23-2119#A7-4XL SPMX-20240815307772 \N \N \N 1 \N [{"file_id": "25585ee0-de40-43aa-b00a-79245e698aa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e2ba4e17a044322b1a11f495c00efed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e2ba4e17a044322b1a11f495c00efed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e2ba4e17a044322b1a11f495c00efed.jpg", "file_size": 17218, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2ba4e17a044322b1a11f495c00efed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2ba4e17a044322b1a11f495c00efed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2ba4e17a044322b1a11f495c00efed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e2ba4e17a044322b1a11f495c00efed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e2ba4e17a044322b1a11f495c00efed.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxmg2kNth0MDWp4cxm1JnYuVhoI=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.687041+00 2025-12-09 10:15:17.687047+00 12594 0004-4FWE#VS-D3 SPMX-20240815307783 \N \N \N 1 \N [{"file_id": "b510a9c3-5e5b-40ee-b899-75c9a79a4f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caabc2c0147e4a09b8640735a18dede8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caabc2c0147e4a09b8640735a18dede8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caabc2c0147e4a09b8640735a18dede8.jpg", "file_size": 23450, "is_delete": false, "file_type": 1, "original_file_name": "0004-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caabc2c0147e4a09b8640735a18dede8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caabc2c0147e4a09b8640735a18dede8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caabc2c0147e4a09b8640735a18dede8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caabc2c0147e4a09b8640735a18dede8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caabc2c0147e4a09b8640735a18dede8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbgMoDXy05jyrL3BNmKJ-WL5ffk=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.689194+00 2025-12-09 10:15:17.689199+00 12595 DL31067#黑色前幅定位裁 SPMX-20240815307779 \N \N \N 1 \N [{"file_id": "a06201f7-509b-4aec-922c-12de89a6eb90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b4412d0bc7e46d3b0f0ac5770d54c68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b4412d0bc7e46d3b0f0ac5770d54c68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b4412d0bc7e46d3b0f0ac5770d54c68.jpg", "file_size": 15559, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#黑色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4412d0bc7e46d3b0f0ac5770d54c68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4412d0bc7e46d3b0f0ac5770d54c68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4412d0bc7e46d3b0f0ac5770d54c68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b4412d0bc7e46d3b0f0ac5770d54c68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b4412d0bc7e46d3b0f0ac5770d54c68.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P0d8IQQJS7RogJjQDSMmip4CnEg=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.691137+00 2025-12-09 10:15:17.691147+00 12596 C53-2#-2A SPMX-20240815307780 \N \N \N 1 \N [{"file_id": "55e19f0c-22a9-4228-aa1b-fe408d74e586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "315debac60f247359ec9ad6650476188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "315debac60f247359ec9ad6650476188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "315debac60f247359ec9ad6650476188.jpg", "file_size": 13443, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-2A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315debac60f247359ec9ad6650476188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315debac60f247359ec9ad6650476188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315debac60f247359ec9ad6650476188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/315debac60f247359ec9ad6650476188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/315debac60f247359ec9ad6650476188.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2Q5PAkSFb_hzo6mDqHW2R7Ia9c=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.693083+00 2025-12-09 10:15:17.693088+00 12597 LJH11184#白色 SPMX-20240815307771 \N \N \N 1 \N [{"file_id": "5469816f-05c6-443d-af8e-f37b5b54ee87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff1142838c0d44eeae8baa5d9ec12a4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff1142838c0d44eeae8baa5d9ec12a4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff1142838c0d44eeae8baa5d9ec12a4f.jpg", "file_size": 47278, "is_delete": false, "file_type": 1, "original_file_name": "LJH11184#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1142838c0d44eeae8baa5d9ec12a4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1142838c0d44eeae8baa5d9ec12a4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1142838c0d44eeae8baa5d9ec12a4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff1142838c0d44eeae8baa5d9ec12a4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff1142838c0d44eeae8baa5d9ec12a4f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3dBwNCjgCGKuL_dVZv08CrI-2fI=", "createTime": "2024-08-15 14:54:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.695349+00 2025-12-09 10:15:17.695354+00 12598 81876#黑色2XL SPMX-20240815307788 \N \N \N 1 \N [{"file_id": "25ecf4dc-8ddb-46b3-9ea4-8cd4fec9e421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5de4e6f5cc94e88be79dcd6733cc590.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5de4e6f5cc94e88be79dcd6733cc590.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5de4e6f5cc94e88be79dcd6733cc590.jpg", "file_size": 21179, "is_delete": false, "file_type": 1, "original_file_name": "81876#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5de4e6f5cc94e88be79dcd6733cc590.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5de4e6f5cc94e88be79dcd6733cc590.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5de4e6f5cc94e88be79dcd6733cc590.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5de4e6f5cc94e88be79dcd6733cc590.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5de4e6f5cc94e88be79dcd6733cc590.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5ICd4ZMSXRZB3DGLM_uD7SZn44=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.697328+00 2025-12-09 10:15:17.697333+00 12599 C53-2#-3A SPMX-20240815307790 \N \N \N 1 \N [{"file_id": "f4f3427f-b0b4-4665-8e0a-d5900fd8164a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48677d1642ba49a5a548403ff1de694c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48677d1642ba49a5a548403ff1de694c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48677d1642ba49a5a548403ff1de694c.jpg", "file_size": 10062, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-3A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48677d1642ba49a5a548403ff1de694c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48677d1642ba49a5a548403ff1de694c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48677d1642ba49a5a548403ff1de694c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48677d1642ba49a5a548403ff1de694c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48677d1642ba49a5a548403ff1de694c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5OapmRPHy-ygM1HlwoLgnsmHzP0=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.699297+00 2025-12-09 10:15:17.699302+00 12600 FKDK-023-3-批布 SPMX-20240815307795 \N \N \N 1 \N [{"file_id": "cc84b683-40d7-4846-bfc1-cb3575f500e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34a889a4f6f144f7aaabdda744f440a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34a889a4f6f144f7aaabdda744f440a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34a889a4f6f144f7aaabdda744f440a5.jpg", "file_size": 51762, "is_delete": false, "file_type": 1, "original_file_name": "FKDK-023-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a889a4f6f144f7aaabdda744f440a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a889a4f6f144f7aaabdda744f440a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a889a4f6f144f7aaabdda744f440a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34a889a4f6f144f7aaabdda744f440a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34a889a4f6f144f7aaabdda744f440a5.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHeLLEt6nPpU45eH6UYN1Tw1oMU=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.720596+00 2025-12-09 10:15:17.720602+00 12609 LJH11184#黑色 SPMX-20240815307798 \N \N \N 1 \N [{"file_id": "745ab708-52fd-487a-863f-160afca10b58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "549ffd1c55e441618267a2dd482094ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "549ffd1c55e441618267a2dd482094ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "549ffd1c55e441618267a2dd482094ec.jpg", "file_size": 50350, "is_delete": false, "file_type": 1, "original_file_name": "LJH11184#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549ffd1c55e441618267a2dd482094ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549ffd1c55e441618267a2dd482094ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549ffd1c55e441618267a2dd482094ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/549ffd1c55e441618267a2dd482094ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/549ffd1c55e441618267a2dd482094ec.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cw53QeIPbu-b3cerMHHNDQTFLaY=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.701248+00 2025-12-09 10:15:17.701253+00 12601 DL31067#黑色批布 SPMX-20240815307791 \N \N \N 1 \N [{"file_id": "2fdc5ab9-e1cb-4554-acf0-d78c59b094f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c33f65c696c4581ba0e48886f8ac98b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c33f65c696c4581ba0e48886f8ac98b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c33f65c696c4581ba0e48886f8ac98b.jpg", "file_size": 23180, "is_delete": false, "file_type": 1, "original_file_name": "DL31067#黑色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c33f65c696c4581ba0e48886f8ac98b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c33f65c696c4581ba0e48886f8ac98b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c33f65c696c4581ba0e48886f8ac98b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c33f65c696c4581ba0e48886f8ac98b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c33f65c696c4581ba0e48886f8ac98b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EKa9ojuKnLxVmYdcBLzByacXuY=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.703203+00 2025-12-09 10:15:17.703208+00 12602 81876#黑色3XL SPMX-20240815307796 \N \N \N 1 \N [{"file_id": "38deb353-44e3-4072-a377-b8bbb2d36c9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6f5bfb9fbed43ad8d772ad2d0de943e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6f5bfb9fbed43ad8d772ad2d0de943e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6f5bfb9fbed43ad8d772ad2d0de943e.jpg", "file_size": 20445, "is_delete": false, "file_type": 1, "original_file_name": "81876#黑色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5bfb9fbed43ad8d772ad2d0de943e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5bfb9fbed43ad8d772ad2d0de943e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f5bfb9fbed43ad8d772ad2d0de943e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6f5bfb9fbed43ad8d772ad2d0de943e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6f5bfb9fbed43ad8d772ad2d0de943e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1M-hczs85zYGR1NgJFs_FNRPaY=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.705357+00 2025-12-09 10:15:17.705362+00 12603 JTSS375FW#VS-D3 SPMX-20240815307787 \N \N \N 1 \N [{"file_id": "a5404e38-a4f6-43e0-8e38-c4ddb32ab8f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11694d3de9294465a6b681dc15fc66f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11694d3de9294465a6b681dc15fc66f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11694d3de9294465a6b681dc15fc66f6.jpg", "file_size": 14766, "is_delete": false, "file_type": 1, "original_file_name": "JTSS375FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11694d3de9294465a6b681dc15fc66f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11694d3de9294465a6b681dc15fc66f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11694d3de9294465a6b681dc15fc66f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11694d3de9294465a6b681dc15fc66f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11694d3de9294465a6b681dc15fc66f6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9e11QElR1gJ2nFd6uOvchCcULXY=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.708001+00 2025-12-09 10:15:17.708008+00 12604 0004-4FWF#V5曲线 SPMX-20240815307793 \N \N \N 1 \N [{"file_id": "15950a13-a240-4908-95d7-b86e973dbef6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37395d5b82524755acac20116a33ee78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37395d5b82524755acac20116a33ee78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37395d5b82524755acac20116a33ee78.jpg", "file_size": 9326, "is_delete": false, "file_type": 1, "original_file_name": "0004-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37395d5b82524755acac20116a33ee78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37395d5b82524755acac20116a33ee78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37395d5b82524755acac20116a33ee78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37395d5b82524755acac20116a33ee78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37395d5b82524755acac20116a33ee78.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5oXN4aF9gIFhA4T3cGt20yjUm_g=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.711102+00 2025-12-09 10:15:17.711107+00 12605 23-2119#A7-领子4XL SPMX-20240815307794 \N \N \N 1 \N [{"file_id": "b8fe2457-7df1-444d-b969-0dd9bacaadca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86969dcd07804e43b8ee261a54df10e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86969dcd07804e43b8ee261a54df10e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86969dcd07804e43b8ee261a54df10e6.jpg", "file_size": 12138, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86969dcd07804e43b8ee261a54df10e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86969dcd07804e43b8ee261a54df10e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86969dcd07804e43b8ee261a54df10e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86969dcd07804e43b8ee261a54df10e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86969dcd07804e43b8ee261a54df10e6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GM_mmAtXqqWxt_1G0QOPC5bR-38=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.71411+00 2025-12-09 10:15:17.714116+00 12606 LZ1306#背心款4号色 SPMX-20240815307789 \N \N \N 1 \N [{"file_id": "8f684ad3-137b-48ca-8a2a-863a36a3ef2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cebdb4c5a0542f8a6380ee309689e1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cebdb4c5a0542f8a6380ee309689e1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cebdb4c5a0542f8a6380ee309689e1b.jpg", "file_size": 18636, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cebdb4c5a0542f8a6380ee309689e1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cebdb4c5a0542f8a6380ee309689e1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cebdb4c5a0542f8a6380ee309689e1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cebdb4c5a0542f8a6380ee309689e1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cebdb4c5a0542f8a6380ee309689e1b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzXC5Fs6ZWDrnfKJvqd9dW98-EE=", "createTime": "2024-08-15 14:54:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.716563+00 2025-12-09 10:15:17.716569+00 12607 1122#彩兰定位裁 SPMX-20240815307792 \N \N \N 1 \N [{"file_id": "8bc0246f-d91e-4f4e-9935-9efd139598fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b14c75f8ed9451eb9c07339d8570551.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b14c75f8ed9451eb9c07339d8570551.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b14c75f8ed9451eb9c07339d8570551.jpg", "file_size": 18305, "is_delete": false, "file_type": 1, "original_file_name": "1122#彩兰定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b14c75f8ed9451eb9c07339d8570551.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b14c75f8ed9451eb9c07339d8570551.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b14c75f8ed9451eb9c07339d8570551.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b14c75f8ed9451eb9c07339d8570551.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b14c75f8ed9451eb9c07339d8570551.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pi4O9gubINIlqjgsf60GZZgo6mM=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.718559+00 2025-12-09 10:15:17.718564+00 12608 C53-2#-4A SPMX-20240815307799 \N \N \N 1 \N [{"file_id": "d22a63e3-f874-47fc-99f1-ac3eebc016de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02f6514baa99440a8b9f095ea644c654.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02f6514baa99440a8b9f095ea644c654.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02f6514baa99440a8b9f095ea644c654.jpg", "file_size": 13955, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-4A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f6514baa99440a8b9f095ea644c654.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f6514baa99440a8b9f095ea644c654.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f6514baa99440a8b9f095ea644c654.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02f6514baa99440a8b9f095ea644c654.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02f6514baa99440a8b9f095ea644c654.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Z5Jquhpynz0BJoAOlSdulAEBpg=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.722537+00 2025-12-09 10:15:17.722542+00 12610 HT2113FWE#黑领XL SPMX-20240815307797 \N \N \N 1 \N [{"file_id": "22351a98-4643-4e08-b7ae-8c80ba484a38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "375185fca78140c592aa51a60705180a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "375185fca78140c592aa51a60705180a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "375185fca78140c592aa51a60705180a.jpg", "file_size": 6039, "is_delete": false, "file_type": 1, "original_file_name": "HT2113FWE#黑领XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375185fca78140c592aa51a60705180a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375185fca78140c592aa51a60705180a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375185fca78140c592aa51a60705180a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/375185fca78140c592aa51a60705180a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/375185fca78140c592aa51a60705180a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOIswIEvHQu1rAto04AeSOegg74=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.72449+00 2025-12-09 10:15:17.724494+00 12611 JTSS376FW#VS-D3 SPMX-20240815307800 \N \N \N 1 \N [{"file_id": "4d27dc4f-4c48-4b81-9450-eabe06197590", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac2ab8dd9285422bbef929537b2c8aab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac2ab8dd9285422bbef929537b2c8aab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac2ab8dd9285422bbef929537b2c8aab.jpg", "file_size": 14184, "is_delete": false, "file_type": 1, "original_file_name": "JTSS376FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2ab8dd9285422bbef929537b2c8aab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2ab8dd9285422bbef929537b2c8aab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2ab8dd9285422bbef929537b2c8aab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac2ab8dd9285422bbef929537b2c8aab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac2ab8dd9285422bbef929537b2c8aab.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqMuCw0A3YfrM771NAPxCz9miDE=", "createTime": "2024-08-15 14:54:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.726394+00 2025-12-09 10:15:17.726399+00 12612 LZ1306#背心款5号色 SPMX-20240815307802 \N \N \N 1 \N [{"file_id": "3f52eb82-7ae1-4234-b7a4-0c1a60bb3a27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfe465fddeef4b66902d0518736dfb6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfe465fddeef4b66902d0518736dfb6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfe465fddeef4b66902d0518736dfb6f.jpg", "file_size": 17994, "is_delete": false, "file_type": 1, "original_file_name": "LZ1306#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe465fddeef4b66902d0518736dfb6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe465fddeef4b66902d0518736dfb6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe465fddeef4b66902d0518736dfb6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfe465fddeef4b66902d0518736dfb6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfe465fddeef4b66902d0518736dfb6f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATvGuuj6Yv0i2ccq5yRQ94pMvkQ=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.728326+00 2025-12-09 10:15:17.72833+00 12613 JTSS377FW#VS-D3 SPMX-20240815307805 \N \N \N 1 \N [{"file_id": "bf5a7434-e282-4233-85db-f5bf47874bc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b73336d289941169901fbc4d0ac42cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b73336d289941169901fbc4d0ac42cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b73336d289941169901fbc4d0ac42cf.jpg", "file_size": 12610, "is_delete": false, "file_type": 1, "original_file_name": "JTSS377FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b73336d289941169901fbc4d0ac42cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b73336d289941169901fbc4d0ac42cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b73336d289941169901fbc4d0ac42cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b73336d289941169901fbc4d0ac42cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b73336d289941169901fbc4d0ac42cf.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6LzDW-gHV2lpvunuenDSj1oaWU=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.730475+00 2025-12-09 10:15:17.73048+00 12614 1122#粉色定位裁 SPMX-20240815307804 \N \N \N 1 \N [{"file_id": "66f86f75-e5a0-46fe-ad12-0e647c48e5b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510d26e901f64dca8c58d770b13930e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510d26e901f64dca8c58d770b13930e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510d26e901f64dca8c58d770b13930e3.jpg", "file_size": 17468, "is_delete": false, "file_type": 1, "original_file_name": "1122#粉色定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510d26e901f64dca8c58d770b13930e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510d26e901f64dca8c58d770b13930e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510d26e901f64dca8c58d770b13930e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510d26e901f64dca8c58d770b13930e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510d26e901f64dca8c58d770b13930e3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2W-WhwJwd7CJjYho0cT1oagsbFM=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.732421+00 2025-12-09 10:15:17.732426+00 12615 HT21155FWE#字母 SPMX-20240815307803 \N \N \N 1 \N [{"file_id": "29971741-bb2b-49f5-b9ba-81f56e43ed3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88e493cc3b634334b25bb838c0f47dc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88e493cc3b634334b25bb838c0f47dc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88e493cc3b634334b25bb838c0f47dc0.jpg", "file_size": 12172, "is_delete": false, "file_type": 1, "original_file_name": "HT21155FWE#字母.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e493cc3b634334b25bb838c0f47dc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e493cc3b634334b25bb838c0f47dc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88e493cc3b634334b25bb838c0f47dc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88e493cc3b634334b25bb838c0f47dc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88e493cc3b634334b25bb838c0f47dc0.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGyg14imONOSuOPkva3t4E1ny8g=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.734557+00 2025-12-09 10:15:17.734563+00 12616 DL31068#前幅大红 SPMX-20240815307801 \N \N \N 1 \N [{"file_id": "4649a387-9609-45d6-9d8c-ccfff55ba899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a933a32e4a20478b9d348fe4d57cd65a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a933a32e4a20478b9d348fe4d57cd65a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a933a32e4a20478b9d348fe4d57cd65a.jpg", "file_size": 15495, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933a32e4a20478b9d348fe4d57cd65a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933a32e4a20478b9d348fe4d57cd65a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a933a32e4a20478b9d348fe4d57cd65a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a933a32e4a20478b9d348fe4d57cd65a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a933a32e4a20478b9d348fe4d57cd65a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRukJCcGnyv7jprvYq7N2pE275s=", "createTime": "2024-08-15 14:54:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.736489+00 2025-12-09 10:15:17.736494+00 12617 LJH1271#A1绿色 SPMX-20240815307806 \N \N \N 1 \N [{"file_id": "991f54a6-f764-48b3-a1cc-416e93305b3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a0d17b1cc04dbfb9247d76f54b6a35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a0d17b1cc04dbfb9247d76f54b6a35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a0d17b1cc04dbfb9247d76f54b6a35.jpg", "file_size": 33550, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A1绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a0d17b1cc04dbfb9247d76f54b6a35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a0d17b1cc04dbfb9247d76f54b6a35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a0d17b1cc04dbfb9247d76f54b6a35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a0d17b1cc04dbfb9247d76f54b6a35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a0d17b1cc04dbfb9247d76f54b6a35.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pj2xBULZMxonAWUbfZX6yOjXggU=", "createTime": "2024-08-15 14:54:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.738404+00 2025-12-09 10:15:17.738409+00 12618 C53-2#-5A SPMX-20240815307807 \N \N \N 1 \N [{"file_id": "4510c1e0-6589-4144-a123-566f9d09584b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "629f8fc1484d4d5f80d8aec8dc97cae2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "629f8fc1484d4d5f80d8aec8dc97cae2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "629f8fc1484d4d5f80d8aec8dc97cae2.jpg", "file_size": 25975, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-5A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629f8fc1484d4d5f80d8aec8dc97cae2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629f8fc1484d4d5f80d8aec8dc97cae2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629f8fc1484d4d5f80d8aec8dc97cae2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/629f8fc1484d4d5f80d8aec8dc97cae2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/629f8fc1484d4d5f80d8aec8dc97cae2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7o6q6MgmQxBwN1s09a9LLJ4WelA=", "createTime": "2024-08-15 14:54:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.740845+00 2025-12-09 10:15:17.74085+00 12619 HT21155FWE#红白条 SPMX-20240815307819 \N \N \N 1 \N [{"file_id": "de7e13a4-2b00-4c3e-8026-79f25355d16b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "494032b7ece94807847cfff048318c54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "494032b7ece94807847cfff048318c54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "494032b7ece94807847cfff048318c54.jpg", "file_size": 8052, "is_delete": false, "file_type": 1, "original_file_name": "HT21155FWE#红白条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494032b7ece94807847cfff048318c54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494032b7ece94807847cfff048318c54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494032b7ece94807847cfff048318c54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/494032b7ece94807847cfff048318c54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/494032b7ece94807847cfff048318c54.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpQF5Iff-TJRk1CkzTGJEMnX6s4=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.743068+00 2025-12-09 10:15:17.743073+00 12620 81876#黑色XL SPMX-20240815307812 \N \N \N 1 \N [{"file_id": "b774d94e-df2a-4eaf-a8d8-af9c92418e3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b42e8ff68b31479d90cbb32cb8e92a4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b42e8ff68b31479d90cbb32cb8e92a4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b42e8ff68b31479d90cbb32cb8e92a4e.jpg", "file_size": 19861, "is_delete": false, "file_type": 1, "original_file_name": "81876#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42e8ff68b31479d90cbb32cb8e92a4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42e8ff68b31479d90cbb32cb8e92a4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42e8ff68b31479d90cbb32cb8e92a4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b42e8ff68b31479d90cbb32cb8e92a4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b42e8ff68b31479d90cbb32cb8e92a4e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZmjwO6omWW2S30Kl5mGIxab_swc=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.745505+00 2025-12-09 10:15:17.74551+00 12621 LZ1307#捆条布 SPMX-20240815307814 \N \N \N 1 \N [{"file_id": "68010102-0164-4dfd-85cf-e0b6ac7de938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4578c53d9ddc43d693dcee9d15f120e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4578c53d9ddc43d693dcee9d15f120e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4578c53d9ddc43d693dcee9d15f120e8.jpg", "file_size": 14047, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4578c53d9ddc43d693dcee9d15f120e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4578c53d9ddc43d693dcee9d15f120e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4578c53d9ddc43d693dcee9d15f120e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4578c53d9ddc43d693dcee9d15f120e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4578c53d9ddc43d693dcee9d15f120e8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VpAs--GAZGIPQOWSpiXs4htGU-k=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.76563+00 2025-12-09 10:15:17.765635+00 12630 23-2119#A8-3XL SPMX-20240815307808 \N \N \N 1 \N [{"file_id": "45bbdaf7-e3dd-4cab-aba7-ddffd7d3bef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361c60dcd3794f3cb392018875a9c39a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361c60dcd3794f3cb392018875a9c39a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361c60dcd3794f3cb392018875a9c39a.jpg", "file_size": 19469, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361c60dcd3794f3cb392018875a9c39a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361c60dcd3794f3cb392018875a9c39a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361c60dcd3794f3cb392018875a9c39a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361c60dcd3794f3cb392018875a9c39a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361c60dcd3794f3cb392018875a9c39a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ErpCVwuCN2P3vsHfNR4vhI9cE4=", "createTime": "2024-08-15 14:54:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.747943+00 2025-12-09 10:15:17.747949+00 12622 1122#黄色定位裁 SPMX-20240815307809 \N \N \N 1 \N [{"file_id": "1615d5f4-234e-4ce0-a211-e14585aca44c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13ba63e142c74b028634fe5066116033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13ba63e142c74b028634fe5066116033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13ba63e142c74b028634fe5066116033.jpg", "file_size": 17356, "is_delete": false, "file_type": 1, "original_file_name": "1122#黄色定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ba63e142c74b028634fe5066116033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ba63e142c74b028634fe5066116033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13ba63e142c74b028634fe5066116033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13ba63e142c74b028634fe5066116033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13ba63e142c74b028634fe5066116033.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:te7DXV6egPkte7eauEMgjAIVLp4=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.75017+00 2025-12-09 10:15:17.750175+00 12623 JTSS378FW#VS-D3 SPMX-20240815307818 \N \N \N 1 \N [{"file_id": "5b9ded09-1204-400e-bdc7-beffb6fb3af6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ee34b027d3445ebbc7638f231b1987.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ee34b027d3445ebbc7638f231b1987.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ee34b027d3445ebbc7638f231b1987.jpg", "file_size": 16319, "is_delete": false, "file_type": 1, "original_file_name": "JTSS378FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ee34b027d3445ebbc7638f231b1987.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ee34b027d3445ebbc7638f231b1987.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ee34b027d3445ebbc7638f231b1987.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ee34b027d3445ebbc7638f231b1987.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ee34b027d3445ebbc7638f231b1987.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJotorZF0XAE0wXve9tKS_7w75g=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.752592+00 2025-12-09 10:15:17.752597+00 12624 23-2119#A8-4XL SPMX-20240815307820 \N \N \N 1 \N [{"file_id": "2d239456-0388-4761-b665-b2e633c1facd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c578d20311fe46fca2271ab4a54af625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c578d20311fe46fca2271ab4a54af625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c578d20311fe46fca2271ab4a54af625.jpg", "file_size": 18123, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c578d20311fe46fca2271ab4a54af625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c578d20311fe46fca2271ab4a54af625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c578d20311fe46fca2271ab4a54af625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c578d20311fe46fca2271ab4a54af625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c578d20311fe46fca2271ab4a54af625.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wE8RGGeBkFyYa1oNBOws1fNReQ=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.75489+00 2025-12-09 10:15:17.754895+00 12625 C53-2#-6A SPMX-20240815307815 \N \N \N 1 \N [{"file_id": "e6d420bd-3dd9-45a5-b952-a8428917a650", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6fc1f470fec4a3388a02fd529c8e250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6fc1f470fec4a3388a02fd529c8e250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6fc1f470fec4a3388a02fd529c8e250.jpg", "file_size": 21775, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-6A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc1f470fec4a3388a02fd529c8e250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc1f470fec4a3388a02fd529c8e250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc1f470fec4a3388a02fd529c8e250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6fc1f470fec4a3388a02fd529c8e250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6fc1f470fec4a3388a02fd529c8e250.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ft6i0lIwqMbLVg8vWyLYSWJUKtk=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.767755+00 2025-12-09 10:15:17.767761+00 12631 1123#补数M SPMX-20240815307821 \N \N \N 1 \N [{"file_id": "69ef5e59-3651-41d8-8513-517fea05019b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg", "file_size": 18818, "is_delete": false, "file_type": 1, "original_file_name": "1123#补数M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cd9ab3bd11b47d7882e6e7b20e36bfc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HyE6EChcdex2hUBq7hg_Wgj504=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.757143+00 2025-12-09 10:15:17.757148+00 12626 DL31068#前幅彩兰 SPMX-20240815307816 \N \N \N 1 \N [{"file_id": "3c6f4cb8-206e-463b-944c-43ffe6c1aca7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ad8380773b44af09a5e44dbcb24b238.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ad8380773b44af09a5e44dbcb24b238.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ad8380773b44af09a5e44dbcb24b238.jpg", "file_size": 15835, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ad8380773b44af09a5e44dbcb24b238.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ad8380773b44af09a5e44dbcb24b238.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ad8380773b44af09a5e44dbcb24b238.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ad8380773b44af09a5e44dbcb24b238.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ad8380773b44af09a5e44dbcb24b238.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGXmSuthPfP75amPv1YtbqkLcRY=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.75934+00 2025-12-09 10:15:17.759346+00 12627 HT21155FWE#条子 SPMX-20240815307810 \N \N \N 1 \N [{"file_id": "e39ed2f4-dba0-4d52-a236-a8556ef91581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8fc675fdef545b8a788978a72462b77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8fc675fdef545b8a788978a72462b77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8fc675fdef545b8a788978a72462b77.jpg", "file_size": 8594, "is_delete": false, "file_type": 1, "original_file_name": "HT21155FWE#条子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fc675fdef545b8a788978a72462b77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fc675fdef545b8a788978a72462b77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fc675fdef545b8a788978a72462b77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8fc675fdef545b8a788978a72462b77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8fc675fdef545b8a788978a72462b77.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:289QJOX032U_X_lvnRDtJZLLkOI=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.761527+00 2025-12-09 10:15:17.761532+00 12628 0004-5FWE#L SPMX-20240815307813 \N \N \N 1 \N [{"file_id": "6adb9c20-77eb-4f97-958c-40c8529d5768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d703ef160fe84e9d85e5ddc03065761f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d703ef160fe84e9d85e5ddc03065761f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d703ef160fe84e9d85e5ddc03065761f.jpg", "file_size": 22032, "is_delete": false, "file_type": 1, "original_file_name": "0004-5FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d703ef160fe84e9d85e5ddc03065761f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d703ef160fe84e9d85e5ddc03065761f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d703ef160fe84e9d85e5ddc03065761f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d703ef160fe84e9d85e5ddc03065761f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d703ef160fe84e9d85e5ddc03065761f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V6Jne8lan3wMinsKeh4Av1ayOTI=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.763706+00 2025-12-09 10:15:17.763711+00 12629 LJH1271#A1蓝色 SPMX-20240815307817 \N \N \N 1 \N [{"file_id": "0a48ffe2-a6d3-4475-b240-f4923b510a08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4a31f6c0d5446bbb89bef80d58a93bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4a31f6c0d5446bbb89bef80d58a93bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4a31f6c0d5446bbb89bef80d58a93bd.jpg", "file_size": 33639, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A1蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a31f6c0d5446bbb89bef80d58a93bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a31f6c0d5446bbb89bef80d58a93bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a31f6c0d5446bbb89bef80d58a93bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4a31f6c0d5446bbb89bef80d58a93bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4a31f6c0d5446bbb89bef80d58a93bd.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPK-GL3dgOGDK5-tcSyvaBeu0dw=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.76969+00 2025-12-09 10:15:17.769695+00 12632 FKDK4-023-1-批布 SPMX-20240815307811 \N \N \N 1 \N [{"file_id": "76dab8f2-72d5-47d3-b730-4e66a2a24d72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3eb6a05a15a40ddb527074b8b2fe94f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3eb6a05a15a40ddb527074b8b2fe94f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3eb6a05a15a40ddb527074b8b2fe94f.jpg", "file_size": 55658, "is_delete": false, "file_type": 1, "original_file_name": "FKDK4-023-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3eb6a05a15a40ddb527074b8b2fe94f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3eb6a05a15a40ddb527074b8b2fe94f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3eb6a05a15a40ddb527074b8b2fe94f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3eb6a05a15a40ddb527074b8b2fe94f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3eb6a05a15a40ddb527074b8b2fe94f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdELHbnwQcOT8CXh2SGu1M3AU14=", "createTime": "2024-08-15 14:54:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.771879+00 2025-12-09 10:15:17.771884+00 12633 HT21155FWE#蓝底 SPMX-20240815307828 \N \N \N 1 \N [{"file_id": "2323efaf-66e4-48c3-a0a1-4c59a79e7ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef6dfcfa4c774c259b51a71c7276b51a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef6dfcfa4c774c259b51a71c7276b51a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef6dfcfa4c774c259b51a71c7276b51a.jpg", "file_size": 10392, "is_delete": false, "file_type": 1, "original_file_name": "HT21155FWE#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6dfcfa4c774c259b51a71c7276b51a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6dfcfa4c774c259b51a71c7276b51a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef6dfcfa4c774c259b51a71c7276b51a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef6dfcfa4c774c259b51a71c7276b51a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef6dfcfa4c774c259b51a71c7276b51a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4q6xYjZc8scs0A8yoG2UA46iNM=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.773831+00 2025-12-09 10:15:17.773838+00 12634 81881#2XL SPMX-20240815307825 \N \N \N 1 \N [{"file_id": "4cad676c-40db-4ee3-8ddd-2976d49bcabc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cae4848cf5941d893a6f07ec9d93b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cae4848cf5941d893a6f07ec9d93b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cae4848cf5941d893a6f07ec9d93b6e.jpg", "file_size": 22974, "is_delete": false, "file_type": 1, "original_file_name": "81881#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cae4848cf5941d893a6f07ec9d93b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cae4848cf5941d893a6f07ec9d93b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cae4848cf5941d893a6f07ec9d93b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cae4848cf5941d893a6f07ec9d93b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cae4848cf5941d893a6f07ec9d93b6e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oX0X-cMRBMrIzjwp1IBV3Wtl86s=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.77597+00 2025-12-09 10:15:17.775976+00 12635 JTSS379FW#VS-D3 SPMX-20240815307829 \N \N \N 1 \N [{"file_id": "1d8195f3-11c5-44f9-87c1-b2ebe1557b2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aeb55bf790d44e298e767ea2057e584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aeb55bf790d44e298e767ea2057e584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aeb55bf790d44e298e767ea2057e584.jpg", "file_size": 18485, "is_delete": false, "file_type": 1, "original_file_name": "JTSS379FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aeb55bf790d44e298e767ea2057e584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aeb55bf790d44e298e767ea2057e584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aeb55bf790d44e298e767ea2057e584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aeb55bf790d44e298e767ea2057e584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aeb55bf790d44e298e767ea2057e584.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uxT4C665zuiu79UDRFC-Njhr_I=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.785828+00 2025-12-09 10:15:17.785833+00 12640 C53-2#-7A SPMX-20240815307823 \N \N \N 1 \N [{"file_id": "ce7142f0-8103-4e58-93f8-eeef039caf07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95fe840f9c6c4f899822fcd9f973b06a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95fe840f9c6c4f899822fcd9f973b06a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95fe840f9c6c4f899822fcd9f973b06a.jpg", "file_size": 15155, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-7A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fe840f9c6c4f899822fcd9f973b06a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fe840f9c6c4f899822fcd9f973b06a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fe840f9c6c4f899822fcd9f973b06a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95fe840f9c6c4f899822fcd9f973b06a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95fe840f9c6c4f899822fcd9f973b06a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJlY5IO3kNvueS2lqccjUfB1Z5g=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.777967+00 2025-12-09 10:15:17.777972+00 12636 LJH1271#A2墨绿色 SPMX-20240815307832 \N \N \N 1 \N [{"file_id": "a5214b59-230f-4945-8ba2-2415771f3c87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c6971aa2708413e866579ae2b9c88e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c6971aa2708413e866579ae2b9c88e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c6971aa2708413e866579ae2b9c88e1.jpg", "file_size": 44376, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A2墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c6971aa2708413e866579ae2b9c88e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c6971aa2708413e866579ae2b9c88e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c6971aa2708413e866579ae2b9c88e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c6971aa2708413e866579ae2b9c88e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c6971aa2708413e866579ae2b9c88e1.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6ORHqQuJvFs5VCQwdq_AWfqrX0=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.779948+00 2025-12-09 10:15:17.779953+00 12637 0004-5FWE#M SPMX-20240815307824 \N \N \N 1 \N [{"file_id": "b5f4ea08-f941-454c-ad0c-f07d092f52af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d623ffcd4c8b435a8bb3ec599e7a36e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d623ffcd4c8b435a8bb3ec599e7a36e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d623ffcd4c8b435a8bb3ec599e7a36e1.jpg", "file_size": 22673, "is_delete": false, "file_type": 1, "original_file_name": "0004-5FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d623ffcd4c8b435a8bb3ec599e7a36e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d623ffcd4c8b435a8bb3ec599e7a36e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d623ffcd4c8b435a8bb3ec599e7a36e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d623ffcd4c8b435a8bb3ec599e7a36e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d623ffcd4c8b435a8bb3ec599e7a36e1.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CT14pGSdick5Q6I4WJ8WsGsdnaI=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.781894+00 2025-12-09 10:15:17.781899+00 12638 DL31068#前幅枣红 SPMX-20240815307822 \N \N \N 1 \N [{"file_id": "6c1230d7-2001-4571-a0f1-6793b324786c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc40abb5848842779536aef466c07c6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc40abb5848842779536aef466c07c6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc40abb5848842779536aef466c07c6a.jpg", "file_size": 15909, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc40abb5848842779536aef466c07c6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc40abb5848842779536aef466c07c6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc40abb5848842779536aef466c07c6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc40abb5848842779536aef466c07c6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc40abb5848842779536aef466c07c6a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hu-j9ik_i1vP_n7Zo0oHRrleaSI=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.783842+00 2025-12-09 10:15:17.783848+00 12639 FKDK4-023-2-批布 SPMX-20240815307827 \N \N \N 1 \N [{"file_id": "dd83748c-46e6-4d60-a098-b9e6f8b4da1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e3c09c67d54425992a33d834c690d59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e3c09c67d54425992a33d834c690d59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e3c09c67d54425992a33d834c690d59.jpg", "file_size": 56665, "is_delete": false, "file_type": 1, "original_file_name": "FKDK4-023-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3c09c67d54425992a33d834c690d59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3c09c67d54425992a33d834c690d59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3c09c67d54425992a33d834c690d59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e3c09c67d54425992a33d834c690d59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e3c09c67d54425992a33d834c690d59.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KUbWKR4kX-LPHKil2EfUKqB09g=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.788009+00 2025-12-09 10:15:17.788014+00 12641 23-2119#A8-领子3XL SPMX-20240815307830 \N \N \N 1 \N [{"file_id": "33911078-c630-4e05-b342-b46d1eeb74ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "724569638a0a4749ba631cb448f0ad24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "724569638a0a4749ba631cb448f0ad24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "724569638a0a4749ba631cb448f0ad24.jpg", "file_size": 11751, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724569638a0a4749ba631cb448f0ad24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724569638a0a4749ba631cb448f0ad24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724569638a0a4749ba631cb448f0ad24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/724569638a0a4749ba631cb448f0ad24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/724569638a0a4749ba631cb448f0ad24.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:auLpWIPqbftO_5pxo4dGecJ2BCE=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.78997+00 2025-12-09 10:15:17.789975+00 12642 1125#亮黄色WJC22 SPMX-20240815307831 \N \N \N 1 \N [{"file_id": "a1abdd02-2f12-435e-97ed-7b64070949a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f5a722036d44882b3206e9bf0fb6ad2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f5a722036d44882b3206e9bf0fb6ad2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f5a722036d44882b3206e9bf0fb6ad2.jpg", "file_size": 12953, "is_delete": false, "file_type": 1, "original_file_name": "1125#亮黄色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5a722036d44882b3206e9bf0fb6ad2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5a722036d44882b3206e9bf0fb6ad2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5a722036d44882b3206e9bf0fb6ad2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f5a722036d44882b3206e9bf0fb6ad2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f5a722036d44882b3206e9bf0fb6ad2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKfmRYMxiztFNuXSMhKyU9dDhWQ=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.791909+00 2025-12-09 10:15:17.791914+00 12643 LZ1307#背心款1号色 SPMX-20240815307826 \N \N \N 1 \N [{"file_id": "599d9f1d-da2a-42bd-9b6d-1be473bb5fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a9bf9b82d6445f39b4039e1f2a565fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a9bf9b82d6445f39b4039e1f2a565fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a9bf9b82d6445f39b4039e1f2a565fc.jpg", "file_size": 16735, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9bf9b82d6445f39b4039e1f2a565fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9bf9b82d6445f39b4039e1f2a565fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9bf9b82d6445f39b4039e1f2a565fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a9bf9b82d6445f39b4039e1f2a565fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a9bf9b82d6445f39b4039e1f2a565fc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rKzA6zcxjlPFkOS3zAmbLfTiioI=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.793835+00 2025-12-09 10:15:17.79384+00 12644 81881#3XL SPMX-20240815307836 \N \N \N 1 \N [{"file_id": "ea30234e-7191-4d0d-9368-2a50f856bb15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "247f2ea77be74f8e882c7dbc1485bb44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "247f2ea77be74f8e882c7dbc1485bb44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "247f2ea77be74f8e882c7dbc1485bb44.jpg", "file_size": 23074, "is_delete": false, "file_type": 1, "original_file_name": "81881#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247f2ea77be74f8e882c7dbc1485bb44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247f2ea77be74f8e882c7dbc1485bb44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247f2ea77be74f8e882c7dbc1485bb44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/247f2ea77be74f8e882c7dbc1485bb44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/247f2ea77be74f8e882c7dbc1485bb44.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FwVtHgXLeI75x6G0QY2KTiuIkg8=", "createTime": "2024-08-15 14:54:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.795984+00 2025-12-09 10:15:17.795989+00 12645 C53-2#-8A SPMX-20240815307834 \N \N \N 1 \N [{"file_id": "7164f8f2-5931-4fee-bcd5-e26fd3b99441", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d045c1899d340dc8aea26e293b8b147.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d045c1899d340dc8aea26e293b8b147.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d045c1899d340dc8aea26e293b8b147.jpg", "file_size": 23206, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-8A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d045c1899d340dc8aea26e293b8b147.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d045c1899d340dc8aea26e293b8b147.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d045c1899d340dc8aea26e293b8b147.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d045c1899d340dc8aea26e293b8b147.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d045c1899d340dc8aea26e293b8b147.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gkpMLPN1V38JF1ivxaoNg2_gDw=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.797976+00 2025-12-09 10:15:17.797981+00 12646 LZ1307#背心款2号色 SPMX-20240815307837 \N \N \N 1 \N [{"file_id": "27c788df-db75-4582-bf81-b7f21c824715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e356ee1e1eb4884ad36485ac22c6fbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e356ee1e1eb4884ad36485ac22c6fbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e356ee1e1eb4884ad36485ac22c6fbc.jpg", "file_size": 16096, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e356ee1e1eb4884ad36485ac22c6fbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e356ee1e1eb4884ad36485ac22c6fbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e356ee1e1eb4884ad36485ac22c6fbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e356ee1e1eb4884ad36485ac22c6fbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e356ee1e1eb4884ad36485ac22c6fbc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zaBqsKadiGSToPvutJn8P9UgUA4=", "createTime": "2024-08-15 14:54:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.799941+00 2025-12-09 10:15:17.799947+00 12647 0004-5FWE#VS-D3 SPMX-20240815307835 \N \N \N 1 \N [{"file_id": "39cdee76-5ed7-49c8-8043-b13a74ff72a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a79799039984e14926c1ea45386b258.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a79799039984e14926c1ea45386b258.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a79799039984e14926c1ea45386b258.jpg", "file_size": 20058, "is_delete": false, "file_type": 1, "original_file_name": "0004-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a79799039984e14926c1ea45386b258.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a79799039984e14926c1ea45386b258.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a79799039984e14926c1ea45386b258.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a79799039984e14926c1ea45386b258.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a79799039984e14926c1ea45386b258.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mO9z_sBM-u32PYHCrmDXPPBCkw=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.802108+00 2025-12-09 10:15:17.802113+00 12648 DL31068#前幅玫红 SPMX-20240815307833 \N \N \N 1 \N [{"file_id": "940f3963-321b-49c4-9a5c-c4d07564ad6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f8dcb3893e340e39f61a6ee329a3b6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f8dcb3893e340e39f61a6ee329a3b6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f8dcb3893e340e39f61a6ee329a3b6c.jpg", "file_size": 15365, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8dcb3893e340e39f61a6ee329a3b6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8dcb3893e340e39f61a6ee329a3b6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8dcb3893e340e39f61a6ee329a3b6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f8dcb3893e340e39f61a6ee329a3b6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f8dcb3893e340e39f61a6ee329a3b6c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K2R01HBbObsVUZ72Ps-qZMKjYHo=", "createTime": "2024-08-15 14:54:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.804027+00 2025-12-09 10:15:17.804032+00 12649 81881#4XL SPMX-20240815307848 \N \N \N 1 \N [{"file_id": "59d4cc0c-ba80-42dc-b8fe-82881d9595f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d527d8c927af413d9a50c41a0093bcb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d527d8c927af413d9a50c41a0093bcb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d527d8c927af413d9a50c41a0093bcb0.jpg", "file_size": 17147, "is_delete": false, "file_type": 1, "original_file_name": "81881#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d527d8c927af413d9a50c41a0093bcb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d527d8c927af413d9a50c41a0093bcb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d527d8c927af413d9a50c41a0093bcb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d527d8c927af413d9a50c41a0093bcb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d527d8c927af413d9a50c41a0093bcb0.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogjLHwDZZvQAGqRf78yeVMrhgG4=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.806005+00 2025-12-09 10:15:17.806011+00 12650 23-2119#A8-领子4XL SPMX-20240815307838 \N \N \N 1 \N [{"file_id": "879e83b3-41e5-4a3c-a3be-53ff9f8ef543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3869c0f81cde4f7abd4fa3f5f09f5f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3869c0f81cde4f7abd4fa3f5f09f5f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3869c0f81cde4f7abd4fa3f5f09f5f74.jpg", "file_size": 12523, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869c0f81cde4f7abd4fa3f5f09f5f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869c0f81cde4f7abd4fa3f5f09f5f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3869c0f81cde4f7abd4fa3f5f09f5f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3869c0f81cde4f7abd4fa3f5f09f5f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3869c0f81cde4f7abd4fa3f5f09f5f74.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6xpdlbLgz6_WPrnwH0B66sFWA8=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.80815+00 2025-12-09 10:15:17.808155+00 12651 JTSS380FW#VS-D3 SPMX-20240815307843 \N \N \N 1 \N [{"file_id": "dad5c3e4-3764-49f3-8b37-96d04314351f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b132346e488449ddaeae6eef7e6a4bf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b132346e488449ddaeae6eef7e6a4bf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b132346e488449ddaeae6eef7e6a4bf7.jpg", "file_size": 16076, "is_delete": false, "file_type": 1, "original_file_name": "JTSS380FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b132346e488449ddaeae6eef7e6a4bf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b132346e488449ddaeae6eef7e6a4bf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b132346e488449ddaeae6eef7e6a4bf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b132346e488449ddaeae6eef7e6a4bf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b132346e488449ddaeae6eef7e6a4bf7.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJUKxzYdJdYZy-NKmRim_QWfpPw=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.810082+00 2025-12-09 10:15:17.810087+00 12652 C53-2#-9A SPMX-20240815307847 \N \N \N 1 \N [{"file_id": "945bd369-fc01-49b1-bf9e-7d5297b0fd30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deda181f31a84753a66cd869779ae27f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deda181f31a84753a66cd869779ae27f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deda181f31a84753a66cd869779ae27f.jpg", "file_size": 21735, "is_delete": false, "file_type": 1, "original_file_name": "C53-2#-9A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deda181f31a84753a66cd869779ae27f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deda181f31a84753a66cd869779ae27f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deda181f31a84753a66cd869779ae27f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deda181f31a84753a66cd869779ae27f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deda181f31a84753a66cd869779ae27f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFUIU4mTN7MTLmgkyGnvJXVrAt0=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.82821+00 2025-12-09 10:15:17.828219+00 12661 FKDK4-024-1-批布 SPMX-20240815307853 \N \N \N 1 \N [{"file_id": "25b812bb-e1a4-4c64-9fa2-828a75b1faa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e20a33fd2ee44c6b104bdc44e2490c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e20a33fd2ee44c6b104bdc44e2490c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e20a33fd2ee44c6b104bdc44e2490c2.jpg", "file_size": 41817, "is_delete": false, "file_type": 1, "original_file_name": "FKDK4-024-1-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20a33fd2ee44c6b104bdc44e2490c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20a33fd2ee44c6b104bdc44e2490c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20a33fd2ee44c6b104bdc44e2490c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e20a33fd2ee44c6b104bdc44e2490c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e20a33fd2ee44c6b104bdc44e2490c2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uXSYZMybEsOZdtnPgLhPqBgB1go=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.812025+00 2025-12-09 10:15:17.81203+00 12653 LZ1307#背心款3号色 SPMX-20240815307846 \N \N \N 1 \N [{"file_id": "f51cf774-50fa-4325-8dab-790ce2759b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68160a22ff1343e394059481f11cfd24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68160a22ff1343e394059481f11cfd24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68160a22ff1343e394059481f11cfd24.jpg", "file_size": 16070, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68160a22ff1343e394059481f11cfd24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68160a22ff1343e394059481f11cfd24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68160a22ff1343e394059481f11cfd24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68160a22ff1343e394059481f11cfd24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68160a22ff1343e394059481f11cfd24.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SZQmB0VZ_t_pd3DnW31QgIYFObw=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.814221+00 2025-12-09 10:15:17.814226+00 12654 HT2155FWE#红白条 SPMX-20240815307842 \N \N \N 1 \N [{"file_id": "055cb432-3aa4-48b0-9735-1b3c6e32bc0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "131387fd04554eef987564cd2f1ba21d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "131387fd04554eef987564cd2f1ba21d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "131387fd04554eef987564cd2f1ba21d.jpg", "file_size": 8008, "is_delete": false, "file_type": 1, "original_file_name": "HT2155FWE#红白条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131387fd04554eef987564cd2f1ba21d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131387fd04554eef987564cd2f1ba21d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131387fd04554eef987564cd2f1ba21d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/131387fd04554eef987564cd2f1ba21d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/131387fd04554eef987564cd2f1ba21d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JmpF6ezSZqUpF7xsdJyHvFAI4j4=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.816192+00 2025-12-09 10:15:17.816197+00 12655 DL31068#前幅蓝绿 SPMX-20240815307841 \N \N \N 1 \N [{"file_id": "7fec6487-b97e-41c6-acb2-99d01afde067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "855393e077a7456ea7e9c2c7bdffbc3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "855393e077a7456ea7e9c2c7bdffbc3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "855393e077a7456ea7e9c2c7bdffbc3d.jpg", "file_size": 15917, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855393e077a7456ea7e9c2c7bdffbc3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855393e077a7456ea7e9c2c7bdffbc3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855393e077a7456ea7e9c2c7bdffbc3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/855393e077a7456ea7e9c2c7bdffbc3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/855393e077a7456ea7e9c2c7bdffbc3d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qPXPLs2pmWCJB4hzlex1r_dGg0=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.818176+00 2025-12-09 10:15:17.818181+00 12656 FKDK4-023-3-批布 SPMX-20240815307839 \N \N \N 1 \N [{"file_id": "fbba7d0b-e2ee-4bfb-809b-382e8a8ca189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8545009198342e6ab4ced37c657345f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8545009198342e6ab4ced37c657345f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8545009198342e6ab4ced37c657345f.jpg", "file_size": 50914, "is_delete": false, "file_type": 1, "original_file_name": "FKDK4-023-3-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8545009198342e6ab4ced37c657345f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8545009198342e6ab4ced37c657345f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8545009198342e6ab4ced37c657345f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8545009198342e6ab4ced37c657345f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8545009198342e6ab4ced37c657345f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hULtaZblylN4idU9hU0MuIJhsKw=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.820124+00 2025-12-09 10:15:17.820129+00 12657 0004-5FWF#大圆点 SPMX-20240815307840 \N \N \N 1 \N [{"file_id": "5ec99a3b-ed30-4507-ad81-b7e4b18f7541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f1f4ba1679b4e249f368c8106ef4c42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f1f4ba1679b4e249f368c8106ef4c42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f1f4ba1679b4e249f368c8106ef4c42.jpg", "file_size": 11841, "is_delete": false, "file_type": 1, "original_file_name": "0004-5FWF#大圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1f4ba1679b4e249f368c8106ef4c42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1f4ba1679b4e249f368c8106ef4c42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f1f4ba1679b4e249f368c8106ef4c42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f1f4ba1679b4e249f368c8106ef4c42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f1f4ba1679b4e249f368c8106ef4c42.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yo2MTmCpDugOVDguAHAEZ-by0Fg=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.822114+00 2025-12-09 10:15:17.82212+00 12658 1125#原版色WJC22 SPMX-20240815307845 \N \N \N 1 \N [{"file_id": "3635c518-05a2-4b69-9494-e2a45be2ddf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8b8aebb8d984769932403ae9f3a3dbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8b8aebb8d984769932403ae9f3a3dbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8b8aebb8d984769932403ae9f3a3dbd.jpg", "file_size": 12553, "is_delete": false, "file_type": 1, "original_file_name": "1125#原版色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b8aebb8d984769932403ae9f3a3dbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b8aebb8d984769932403ae9f3a3dbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b8aebb8d984769932403ae9f3a3dbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8b8aebb8d984769932403ae9f3a3dbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8b8aebb8d984769932403ae9f3a3dbd.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDSjpYe2EyWPEDgPHAZPZyDiGOg=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.824302+00 2025-12-09 10:15:17.824307+00 12659 LJH1271#A2彩蓝色 SPMX-20240815307844 \N \N \N 1 \N [{"file_id": "9b0c43fc-c7a0-4417-952a-627afa0f0321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4bcf2bee8844ee383df252dd085b762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4bcf2bee8844ee383df252dd085b762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4bcf2bee8844ee383df252dd085b762.jpg", "file_size": 44566, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A2彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4bcf2bee8844ee383df252dd085b762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4bcf2bee8844ee383df252dd085b762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4bcf2bee8844ee383df252dd085b762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4bcf2bee8844ee383df252dd085b762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4bcf2bee8844ee383df252dd085b762.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQRABF8ycrA1imSl_nIwqr8gsIw=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.826265+00 2025-12-09 10:15:17.826271+00 12660 23-2119#A9-3XL SPMX-20240815307849 \N \N \N 1 \N [{"file_id": "487de053-80c4-4299-b61e-869406f8df27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b96dfbdf94c947dba8fa8dc6f779e136.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b96dfbdf94c947dba8fa8dc6f779e136.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b96dfbdf94c947dba8fa8dc6f779e136.jpg", "file_size": 14955, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96dfbdf94c947dba8fa8dc6f779e136.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96dfbdf94c947dba8fa8dc6f779e136.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96dfbdf94c947dba8fa8dc6f779e136.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b96dfbdf94c947dba8fa8dc6f779e136.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b96dfbdf94c947dba8fa8dc6f779e136.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7lc6keIvWN0LDnlgmD71j1RkEQ=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.830196+00 2025-12-09 10:15:17.830201+00 12662 DL31068#前幅黄色 SPMX-20240815307852 \N \N \N 1 \N [{"file_id": "ce985e5f-fea4-4d28-99e9-6c1911390900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83741445f98a4959b2ef33afbed624cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83741445f98a4959b2ef33afbed624cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83741445f98a4959b2ef33afbed624cf.jpg", "file_size": 15124, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83741445f98a4959b2ef33afbed624cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83741445f98a4959b2ef33afbed624cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83741445f98a4959b2ef33afbed624cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83741445f98a4959b2ef33afbed624cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83741445f98a4959b2ef33afbed624cf.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KJj3AwlW1z8F9jv7O0R0tdVPn6o=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.832156+00 2025-12-09 10:15:17.832161+00 12663 LZ1307#背心款4号色 SPMX-20240815307857 \N \N \N 1 \N [{"file_id": "820678c4-2da1-4772-bb06-78409302d698", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fd4be442b524f949ababe521d024f5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fd4be442b524f949ababe521d024f5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fd4be442b524f949ababe521d024f5e.jpg", "file_size": 16269, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4be442b524f949ababe521d024f5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4be442b524f949ababe521d024f5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd4be442b524f949ababe521d024f5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fd4be442b524f949ababe521d024f5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fd4be442b524f949ababe521d024f5e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TevLHewKUi-r0SgRTeAaWZ9Qj0=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.83434+00 2025-12-09 10:15:17.834345+00 12664 23-2119#A9-4XL SPMX-20240815307859 \N \N \N 1 \N [{"file_id": "684d933a-4000-4926-bc7c-d5c03b6a44a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0608e76a52b4492e89545c39ca7093cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0608e76a52b4492e89545c39ca7093cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0608e76a52b4492e89545c39ca7093cf.jpg", "file_size": 14264, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0608e76a52b4492e89545c39ca7093cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0608e76a52b4492e89545c39ca7093cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0608e76a52b4492e89545c39ca7093cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0608e76a52b4492e89545c39ca7093cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0608e76a52b4492e89545c39ca7093cf.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mmEKir6RUJSHLgZAVxnb8FeybY=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.836281+00 2025-12-09 10:15:17.836285+00 12665 JTSS382FW#VS-D3 SPMX-20240815307862 \N \N \N 1 \N [{"file_id": "e35e3f5f-ec7c-4c8c-acee-03bf37a1574c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b85028f9ee3c4ee49c37605074403ded.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b85028f9ee3c4ee49c37605074403ded.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b85028f9ee3c4ee49c37605074403ded.jpg", "file_size": 10000, "is_delete": false, "file_type": 1, "original_file_name": "JTSS382FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85028f9ee3c4ee49c37605074403ded.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85028f9ee3c4ee49c37605074403ded.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b85028f9ee3c4ee49c37605074403ded.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b85028f9ee3c4ee49c37605074403ded.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b85028f9ee3c4ee49c37605074403ded.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Gave5cuclgVtA1POuZn8MdmzGY=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.838223+00 2025-12-09 10:15:17.838229+00 12666 HT2220FW#紫蓝 VS-D3 SPMX-20240815307854 \N \N \N 1 \N [{"file_id": "137f2a42-e124-4988-a8ab-34fec629205f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "631324cdae8847cf82bd256fedd46205.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "631324cdae8847cf82bd256fedd46205.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "631324cdae8847cf82bd256fedd46205.jpg", "file_size": 17265, "is_delete": false, "file_type": 1, "original_file_name": "HT2220FW#紫蓝 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631324cdae8847cf82bd256fedd46205.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631324cdae8847cf82bd256fedd46205.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631324cdae8847cf82bd256fedd46205.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/631324cdae8847cf82bd256fedd46205.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/631324cdae8847cf82bd256fedd46205.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMiFFpirymQjV1rX5gLxcapYTZA=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.84048+00 2025-12-09 10:15:17.840485+00 12667 1125#枣红色WJC22 SPMX-20240815307856 \N \N \N 1 \N [{"file_id": "a1513150-8a79-4e5c-ab2d-0dbef34962e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9bd22ba7bc045d29ad50bd25510c63c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9bd22ba7bc045d29ad50bd25510c63c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9bd22ba7bc045d29ad50bd25510c63c.jpg", "file_size": 10383, "is_delete": false, "file_type": 1, "original_file_name": "1125#枣红色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bd22ba7bc045d29ad50bd25510c63c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bd22ba7bc045d29ad50bd25510c63c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9bd22ba7bc045d29ad50bd25510c63c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9bd22ba7bc045d29ad50bd25510c63c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9bd22ba7bc045d29ad50bd25510c63c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjnXA__WswDN8TR-Hmy6BX6Cj2M=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.842448+00 2025-12-09 10:15:17.842453+00 12668 0004-6FWE#VS-D3 SPMX-20240815307860 \N \N \N 1 \N [{"file_id": "f37ad438-7d12-40f4-a094-568b38921225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6acf0c2d96524fd495bf876454f1c1e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6acf0c2d96524fd495bf876454f1c1e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6acf0c2d96524fd495bf876454f1c1e6.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "0004-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6acf0c2d96524fd495bf876454f1c1e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6acf0c2d96524fd495bf876454f1c1e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6acf0c2d96524fd495bf876454f1c1e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6acf0c2d96524fd495bf876454f1c1e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6acf0c2d96524fd495bf876454f1c1e6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtQsRSqaMM_d49qpKqOSkUdLzcM=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.844445+00 2025-12-09 10:15:17.844451+00 12669 DL31068#前幅黑色 SPMX-20240815307863 \N \N \N 1 \N [{"file_id": "70c41ead-5c5d-48b1-8e0b-c9aef0fdafe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a916b868e23f474896d863acc7d9ecdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a916b868e23f474896d863acc7d9ecdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a916b868e23f474896d863acc7d9ecdc.jpg", "file_size": 16200, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#前幅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a916b868e23f474896d863acc7d9ecdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a916b868e23f474896d863acc7d9ecdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a916b868e23f474896d863acc7d9ecdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a916b868e23f474896d863acc7d9ecdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a916b868e23f474896d863acc7d9ecdc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81vLgMHkSIMi_RtdZlQRjerXjLU=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.846382+00 2025-12-09 10:15:17.846386+00 12670 81881#XL SPMX-20240815307858 \N \N \N 1 \N [{"file_id": "068de70a-951e-41b4-ab40-b401606a425a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8597357ae6e4af3b16f861085cf7e98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8597357ae6e4af3b16f861085cf7e98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8597357ae6e4af3b16f861085cf7e98.jpg", "file_size": 22107, "is_delete": false, "file_type": 1, "original_file_name": "81881#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8597357ae6e4af3b16f861085cf7e98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8597357ae6e4af3b16f861085cf7e98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8597357ae6e4af3b16f861085cf7e98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8597357ae6e4af3b16f861085cf7e98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8597357ae6e4af3b16f861085cf7e98.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vM771MjG39Kj8_sezc01m3lwTi4=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.848339+00 2025-12-09 10:15:17.848344+00 12671 C6 SPMX-20240815307861 \N \N \N 1 \N [{"file_id": "ee8a0003-e947-47da-b001-d06ca24de5f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "683e3d6bbd45452da7402459c4cad25d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "683e3d6bbd45452da7402459c4cad25d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "683e3d6bbd45452da7402459c4cad25d.jpg", "file_size": 49759, "is_delete": false, "file_type": 1, "original_file_name": "C6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683e3d6bbd45452da7402459c4cad25d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683e3d6bbd45452da7402459c4cad25d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683e3d6bbd45452da7402459c4cad25d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/683e3d6bbd45452da7402459c4cad25d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/683e3d6bbd45452da7402459c4cad25d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9MaMPiCrfE8Ft4-gNRwodoE8oI=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.850298+00 2025-12-09 10:15:17.850302+00 12672 JTSS381FW#VS-D3 SPMX-20240815307851 \N \N \N 1 \N [{"file_id": "96c3b4f9-2f73-40ca-a9b4-8d4b026bbc90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74bfd9f393d5419185c3de6a32386934.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74bfd9f393d5419185c3de6a32386934.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74bfd9f393d5419185c3de6a32386934.jpg", "file_size": 15839, "is_delete": false, "file_type": 1, "original_file_name": "JTSS381FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfd9f393d5419185c3de6a32386934.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfd9f393d5419185c3de6a32386934.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfd9f393d5419185c3de6a32386934.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74bfd9f393d5419185c3de6a32386934.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74bfd9f393d5419185c3de6a32386934.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpQv7psNjpsGVaZ44yHQ-OwCdTc=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.852492+00 2025-12-09 10:15:17.852497+00 12673 FKDK4-024-2-批布 SPMX-20240815307865 \N \N \N 1 \N [{"file_id": "7727c3d4-c3c2-4e31-9622-bc1306ed65dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f5ce0421a54ae0983a3c721d68c1f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f5ce0421a54ae0983a3c721d68c1f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f5ce0421a54ae0983a3c721d68c1f9.jpg", "file_size": 43671, "is_delete": false, "file_type": 1, "original_file_name": "FKDK4-024-2-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f5ce0421a54ae0983a3c721d68c1f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f5ce0421a54ae0983a3c721d68c1f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f5ce0421a54ae0983a3c721d68c1f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f5ce0421a54ae0983a3c721d68c1f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f5ce0421a54ae0983a3c721d68c1f9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IkIDMto6_ztd_8pDv1UoHEl22p4=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.854416+00 2025-12-09 10:15:17.854421+00 12674 LJH1271#A3宝蓝色 SPMX-20240815307855 \N \N \N 1 \N [{"file_id": "0ade75a5-b9c2-4760-9ebb-41bcfb26397a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14ec2ee1c4742f68eaccce2cf8227e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14ec2ee1c4742f68eaccce2cf8227e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14ec2ee1c4742f68eaccce2cf8227e9.jpg", "file_size": 33600, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A3宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14ec2ee1c4742f68eaccce2cf8227e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14ec2ee1c4742f68eaccce2cf8227e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14ec2ee1c4742f68eaccce2cf8227e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14ec2ee1c4742f68eaccce2cf8227e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14ec2ee1c4742f68eaccce2cf8227e9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:018wZ_gdEkZa_vR9IApCeVysq7s=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.856357+00 2025-12-09 10:15:17.856362+00 12675 HT2220FW#红蓝 vs-d3 SPMX-20240815307864 \N \N \N 1 \N [{"file_id": "57db1a99-b718-4907-a62c-0c705b4767ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56b4c0d354fc4bfcba754e575b4af3fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56b4c0d354fc4bfcba754e575b4af3fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56b4c0d354fc4bfcba754e575b4af3fc.jpg", "file_size": 19604, "is_delete": false, "file_type": 1, "original_file_name": "HT2220FW#红蓝 vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b4c0d354fc4bfcba754e575b4af3fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b4c0d354fc4bfcba754e575b4af3fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b4c0d354fc4bfcba754e575b4af3fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56b4c0d354fc4bfcba754e575b4af3fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56b4c0d354fc4bfcba754e575b4af3fc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9L9QtWiN1kliqHi-dbtWMUiwQf0=", "createTime": "2024-08-15 14:54:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.858313+00 2025-12-09 10:15:17.858318+00 12676 0004-5FWF#小圆点 SPMX-20240815307850 \N \N \N 1 \N [{"file_id": "0f8e9871-edf2-43fa-8dfb-58561045793a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1462765235f34511ba5233ebfb19dd1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1462765235f34511ba5233ebfb19dd1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1462765235f34511ba5233ebfb19dd1f.jpg", "file_size": 8283, "is_delete": false, "file_type": 1, "original_file_name": "0004-5FWF#小圆点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1462765235f34511ba5233ebfb19dd1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1462765235f34511ba5233ebfb19dd1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1462765235f34511ba5233ebfb19dd1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1462765235f34511ba5233ebfb19dd1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1462765235f34511ba5233ebfb19dd1f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3t8vxl0YoNCgzoTGpGSzebbH8Y=", "createTime": "2024-08-15 14:54:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.860467+00 2025-12-09 10:15:17.860472+00 12677 1125FWF#V5曲线 SPMX-20240815307866 \N \N \N 1 \N [{"file_id": "ed0031ae-ca6e-4778-8974-935e6f3998c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb084ca59ca74ab4ae3d627f65482103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb084ca59ca74ab4ae3d627f65482103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb084ca59ca74ab4ae3d627f65482103.jpg", "file_size": 26311, "is_delete": false, "file_type": 1, "original_file_name": "1125FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb084ca59ca74ab4ae3d627f65482103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb084ca59ca74ab4ae3d627f65482103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb084ca59ca74ab4ae3d627f65482103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb084ca59ca74ab4ae3d627f65482103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb084ca59ca74ab4ae3d627f65482103.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PU64G34cPf_B2ivPDpUyyHTB0oc=", "createTime": "2024-08-15 14:54:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.86247+00 2025-12-09 10:15:17.862476+00 12678 C7 SPMX-20240815307871 \N \N \N 1 \N [{"file_id": "5a678dc5-a18b-444b-a1f8-5a47cd0bbb1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78889edbc39043b3802bf44b5c0e35c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78889edbc39043b3802bf44b5c0e35c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78889edbc39043b3802bf44b5c0e35c8.jpg", "file_size": 47087, "is_delete": false, "file_type": 1, "original_file_name": "C7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78889edbc39043b3802bf44b5c0e35c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78889edbc39043b3802bf44b5c0e35c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78889edbc39043b3802bf44b5c0e35c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78889edbc39043b3802bf44b5c0e35c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78889edbc39043b3802bf44b5c0e35c8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YZeUIr7qzsh-c0-vx1lScU8MyE=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.872628+00 2025-12-09 10:15:17.872634+00 12683 JTSS383FW#VS-D3 SPMX-20240815307872 \N \N \N 1 \N [{"file_id": "a1b1cb8f-e6fb-488b-b90a-8838d114b008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03dfbe597e4c455c9ebf2aa0e8df596e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03dfbe597e4c455c9ebf2aa0e8df596e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03dfbe597e4c455c9ebf2aa0e8df596e.jpg", "file_size": 9163, "is_delete": false, "file_type": 1, "original_file_name": "JTSS383FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03dfbe597e4c455c9ebf2aa0e8df596e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03dfbe597e4c455c9ebf2aa0e8df596e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03dfbe597e4c455c9ebf2aa0e8df596e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03dfbe597e4c455c9ebf2aa0e8df596e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03dfbe597e4c455c9ebf2aa0e8df596e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aieGWWnLJecBqZq6qxSBq-CIktQ=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.864453+00 2025-12-09 10:15:17.864458+00 12679 23-2119#A9-领子3XL SPMX-20240815307876 \N \N \N 1 \N [{"file_id": "eda7b47b-449a-40e3-b37e-041b82df42b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc50fa03677e4d7d938f85ebbcfe1c71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc50fa03677e4d7d938f85ebbcfe1c71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc50fa03677e4d7d938f85ebbcfe1c71.jpg", "file_size": 11773, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc50fa03677e4d7d938f85ebbcfe1c71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc50fa03677e4d7d938f85ebbcfe1c71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc50fa03677e4d7d938f85ebbcfe1c71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc50fa03677e4d7d938f85ebbcfe1c71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc50fa03677e4d7d938f85ebbcfe1c71.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uISi_LQVM3kKSO8spTKgiXLil7Q=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.866487+00 2025-12-09 10:15:17.866492+00 12680 LJH1271#A3湖蓝色 SPMX-20240815307867 \N \N \N 1 \N [{"file_id": "64665b2f-f6a1-4ac8-87a9-18c769abc361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b5321a015fe4c09bc4735528fb2a90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b5321a015fe4c09bc4735528fb2a90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b5321a015fe4c09bc4735528fb2a90e.jpg", "file_size": 33651, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A3湖蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5321a015fe4c09bc4735528fb2a90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5321a015fe4c09bc4735528fb2a90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b5321a015fe4c09bc4735528fb2a90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b5321a015fe4c09bc4735528fb2a90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b5321a015fe4c09bc4735528fb2a90e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LL8rQSh1t5K0eVr-Vl-Th9GH5I4=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.868486+00 2025-12-09 10:15:17.86849+00 12681 LZ1307#背心款5号色 SPMX-20240815307869 \N \N \N 1 \N [{"file_id": "2f77d9f3-a13f-4373-b70a-740ce65f8cf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ced292d4047469088c20cda0ddb5f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ced292d4047469088c20cda0ddb5f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ced292d4047469088c20cda0ddb5f7d.jpg", "file_size": 15928, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ced292d4047469088c20cda0ddb5f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ced292d4047469088c20cda0ddb5f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ced292d4047469088c20cda0ddb5f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ced292d4047469088c20cda0ddb5f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ced292d4047469088c20cda0ddb5f7d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gBS3jG51wf8g5D2-_NqtAsgwPI=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.87068+00 2025-12-09 10:15:17.870685+00 12682 DL31068#批布大红 SPMX-20240815307873 \N \N \N 1 \N [{"file_id": "82e9d4ad-deb5-42a7-9f99-afca354b61b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cb68ff3a68b4711a3d0921bbc60e4ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cb68ff3a68b4711a3d0921bbc60e4ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cb68ff3a68b4711a3d0921bbc60e4ea.jpg", "file_size": 24527, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb68ff3a68b4711a3d0921bbc60e4ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb68ff3a68b4711a3d0921bbc60e4ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb68ff3a68b4711a3d0921bbc60e4ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cb68ff3a68b4711a3d0921bbc60e4ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cb68ff3a68b4711a3d0921bbc60e4ea.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iSVWb3hbiemTk3YbtDj3aJycVs=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.874658+00 2025-12-09 10:15:17.874662+00 12684 HT2220FW#绿 VS-D3 SPMX-20240815307874 \N \N \N 1 \N [{"file_id": "6ebee13e-8276-4966-a00a-3ef6f21c4799", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b770d3510bc44205baffb57822e5361f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b770d3510bc44205baffb57822e5361f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b770d3510bc44205baffb57822e5361f.jpg", "file_size": 17741, "is_delete": false, "file_type": 1, "original_file_name": "HT2220FW#绿 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b770d3510bc44205baffb57822e5361f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b770d3510bc44205baffb57822e5361f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b770d3510bc44205baffb57822e5361f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b770d3510bc44205baffb57822e5361f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b770d3510bc44205baffb57822e5361f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7H8RtyRDBtQyzQGb-5Z-bgdbxY=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.876675+00 2025-12-09 10:15:17.876681+00 12685 FLB001FWE#VS-D3 SPMX-20240815307875 \N \N \N 1 \N [{"file_id": "a2913c0a-6c75-4126-9017-280ec5980dd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06880c6f4cd74ea09130caf2483413eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06880c6f4cd74ea09130caf2483413eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06880c6f4cd74ea09130caf2483413eb.jpg", "file_size": 6341, "is_delete": false, "file_type": 1, "original_file_name": "FLB001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06880c6f4cd74ea09130caf2483413eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06880c6f4cd74ea09130caf2483413eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06880c6f4cd74ea09130caf2483413eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06880c6f4cd74ea09130caf2483413eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06880c6f4cd74ea09130caf2483413eb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:de5g7DQpuJHdJBP_gKMyb9JxHc4=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.878642+00 2025-12-09 10:15:17.878647+00 12686 1127#灰色 SPMX-20240815307877 \N \N \N 1 \N [{"file_id": "d952f1d1-6196-4f95-8d1e-93cd8e0f747f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1015667ad6ba48aea6534147c72dfa0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1015667ad6ba48aea6534147c72dfa0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1015667ad6ba48aea6534147c72dfa0e.jpg", "file_size": 21475, "is_delete": false, "file_type": 1, "original_file_name": "1127#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1015667ad6ba48aea6534147c72dfa0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1015667ad6ba48aea6534147c72dfa0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1015667ad6ba48aea6534147c72dfa0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1015667ad6ba48aea6534147c72dfa0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1015667ad6ba48aea6534147c72dfa0e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odKniW2_K6Wu9WvfEAGg_koYSjo=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.880577+00 2025-12-09 10:15:17.880582+00 12687 81890#红色2XL SPMX-20240815307868 \N \N \N 1 \N [{"file_id": "e9e2ce95-0df8-4fdf-8f7e-728c428d5154", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97d34927c2cd484bba4bb6dc44142f1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97d34927c2cd484bba4bb6dc44142f1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97d34927c2cd484bba4bb6dc44142f1c.jpg", "file_size": 25732, "is_delete": false, "file_type": 1, "original_file_name": "81890#红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d34927c2cd484bba4bb6dc44142f1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d34927c2cd484bba4bb6dc44142f1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d34927c2cd484bba4bb6dc44142f1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97d34927c2cd484bba4bb6dc44142f1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97d34927c2cd484bba4bb6dc44142f1c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5sk2Hzb0jlTTxYMaN43TbV6lxY=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.882552+00 2025-12-09 10:15:17.882556+00 12688 0004-7FWE#VS-D3 SPMX-20240815307878 \N \N \N 1 \N [{"file_id": "1b8c7021-2941-409e-b92e-298743b3b01a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8dd3021a5542dd9cf30722eddcc694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8dd3021a5542dd9cf30722eddcc694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8dd3021a5542dd9cf30722eddcc694.jpg", "file_size": 15725, "is_delete": false, "file_type": 1, "original_file_name": "0004-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8dd3021a5542dd9cf30722eddcc694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8dd3021a5542dd9cf30722eddcc694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8dd3021a5542dd9cf30722eddcc694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8dd3021a5542dd9cf30722eddcc694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8dd3021a5542dd9cf30722eddcc694.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDKZn0r_AafgoqE5YvPOl0D3GNE=", "createTime": "2024-08-15 14:54:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.884649+00 2025-12-09 10:15:17.884654+00 12689 81890#红色XL SPMX-20240815307889 \N \N \N 1 \N [{"file_id": "5c5b989d-ce30-42a8-9abd-6c55a6677531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf972d09d9ce4489b8f4d6d839905446.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf972d09d9ce4489b8f4d6d839905446.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf972d09d9ce4489b8f4d6d839905446.jpg", "file_size": 25597, "is_delete": false, "file_type": 1, "original_file_name": "81890#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf972d09d9ce4489b8f4d6d839905446.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf972d09d9ce4489b8f4d6d839905446.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf972d09d9ce4489b8f4d6d839905446.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf972d09d9ce4489b8f4d6d839905446.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf972d09d9ce4489b8f4d6d839905446.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVas6YR1hWXe_Ztw2yMNo8mr7XQ=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.886863+00 2025-12-09 10:15:17.886868+00 12690 JTSS384FW#VS-D3 SPMX-20240815307882 \N \N \N 1 \N [{"file_id": "3c4a8562-9839-4e09-9c6b-26978dc2a00c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fc67b2472c746e286f568297b208c8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fc67b2472c746e286f568297b208c8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fc67b2472c746e286f568297b208c8f.jpg", "file_size": 9175, "is_delete": false, "file_type": 1, "original_file_name": "JTSS384FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc67b2472c746e286f568297b208c8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc67b2472c746e286f568297b208c8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc67b2472c746e286f568297b208c8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fc67b2472c746e286f568297b208c8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fc67b2472c746e286f568297b208c8f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I42x455Quv0chmL4Zu-mVv6t_FA=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.888815+00 2025-12-09 10:15:17.88882+00 12691 DL31068#批布彩兰 SPMX-20240815307885 \N \N \N 1 \N [{"file_id": "bf81402e-a872-44d8-a4aa-4a18ec72d6d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eac6b648f6f347109e3440526a993963.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eac6b648f6f347109e3440526a993963.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eac6b648f6f347109e3440526a993963.jpg", "file_size": 25728, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eac6b648f6f347109e3440526a993963.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eac6b648f6f347109e3440526a993963.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eac6b648f6f347109e3440526a993963.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eac6b648f6f347109e3440526a993963.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eac6b648f6f347109e3440526a993963.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_D2InjZd4n5RRYBbGqtnz8JaG4E=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.890746+00 2025-12-09 10:15:17.890751+00 12692 1127#粉色 SPMX-20240815307888 \N \N \N 1 \N [{"file_id": "5095c5cb-21a8-41c2-ab02-05084962130b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6e4816777c248a2b6c551dd9290ea40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6e4816777c248a2b6c551dd9290ea40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6e4816777c248a2b6c551dd9290ea40.jpg", "file_size": 16937, "is_delete": false, "file_type": 1, "original_file_name": "1127#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e4816777c248a2b6c551dd9290ea40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e4816777c248a2b6c551dd9290ea40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e4816777c248a2b6c551dd9290ea40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6e4816777c248a2b6c551dd9290ea40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6e4816777c248a2b6c551dd9290ea40.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8M5_7nGH8qK9bJQaiBzQMssOgg=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.892689+00 2025-12-09 10:15:17.892694+00 12693 LJH1271#A4宝蓝色 SPMX-20240815307880 \N \N \N 1 \N [{"file_id": "c71b020b-937b-41a6-aa3c-2bed0332bd7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efae2d5a8f6c4e768fbc0199db5f5973.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efae2d5a8f6c4e768fbc0199db5f5973.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efae2d5a8f6c4e768fbc0199db5f5973.jpg", "file_size": 47519, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A4宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efae2d5a8f6c4e768fbc0199db5f5973.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efae2d5a8f6c4e768fbc0199db5f5973.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efae2d5a8f6c4e768fbc0199db5f5973.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efae2d5a8f6c4e768fbc0199db5f5973.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efae2d5a8f6c4e768fbc0199db5f5973.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FJz1jdn61Iz7ausZyteVJvmESVo=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.894698+00 2025-12-09 10:15:17.894706+00 12694 23-2119#A9-领子4XL SPMX-20240815307884 \N \N \N 1 \N [{"file_id": "370649bf-2927-4e88-a0e5-ad5ac3b39129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abd016070ef24a6fb1ec9e11dcfb7378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abd016070ef24a6fb1ec9e11dcfb7378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abd016070ef24a6fb1ec9e11dcfb7378.jpg", "file_size": 11753, "is_delete": false, "file_type": 1, "original_file_name": "23-2119#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd016070ef24a6fb1ec9e11dcfb7378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd016070ef24a6fb1ec9e11dcfb7378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd016070ef24a6fb1ec9e11dcfb7378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abd016070ef24a6fb1ec9e11dcfb7378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abd016070ef24a6fb1ec9e11dcfb7378.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vlpX9H9WKwp9ZjYSUx_ldBD56A=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.897049+00 2025-12-09 10:15:17.897054+00 12695 C70#数码花2兰色 SPMX-20240815307887 \N \N \N 1 \N [{"file_id": "eeb3ae1c-2b93-48c6-af74-75fa72d2d555", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7515d6990b4c63906b52e71965c361.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7515d6990b4c63906b52e71965c361.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7515d6990b4c63906b52e71965c361.jpg", "file_size": 20234, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7515d6990b4c63906b52e71965c361.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7515d6990b4c63906b52e71965c361.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7515d6990b4c63906b52e71965c361.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7515d6990b4c63906b52e71965c361.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7515d6990b4c63906b52e71965c361.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IscYQPSo-b4YBxpU18ZSIQqC8GI=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.899019+00 2025-12-09 10:15:17.899024+00 12696 LJH1271#A4灰色 SPMX-20240815307892 \N \N \N 1 \N [{"file_id": "d96fd031-1574-40e3-af35-990670646ccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg", "file_size": 43225, "is_delete": false, "file_type": 1, "original_file_name": "LJH1271#A4灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31edbeb0cea4a9cb89ee0a476b9fcb3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYGK8HhxV5-eC64ONiTPQP7PhEI=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.901072+00 2025-12-09 10:15:17.901077+00 12697 0004-8FWE#浅蓝VS-D3 SPMX-20240815307890 \N \N \N 1 \N [{"file_id": "bb155421-e880-4711-bc62-0bd6776aa8e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37d88485ff724ab29eb277dd0f4aa2b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37d88485ff724ab29eb277dd0f4aa2b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37d88485ff724ab29eb277dd0f4aa2b8.jpg", "file_size": 21615, "is_delete": false, "file_type": 1, "original_file_name": "0004-8FWE#浅蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d88485ff724ab29eb277dd0f4aa2b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d88485ff724ab29eb277dd0f4aa2b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d88485ff724ab29eb277dd0f4aa2b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37d88485ff724ab29eb277dd0f4aa2b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37d88485ff724ab29eb277dd0f4aa2b8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aRNfvxUUJP6zRFSeRM3Q7IrmdP4=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.903093+00 2025-12-09 10:15:17.903098+00 12698 LZ1307#背心款号色 SPMX-20240815307881 \N \N \N 1 \N [{"file_id": "8e8a1fad-0a3d-4871-8098-61d2d6ab2b14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85d18e9eb9934d4bab6bef8e6409d7ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85d18e9eb9934d4bab6bef8e6409d7ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85d18e9eb9934d4bab6bef8e6409d7ca.jpg", "file_size": 16070, "is_delete": false, "file_type": 1, "original_file_name": "LZ1307#背心款号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d18e9eb9934d4bab6bef8e6409d7ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d18e9eb9934d4bab6bef8e6409d7ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d18e9eb9934d4bab6bef8e6409d7ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85d18e9eb9934d4bab6bef8e6409d7ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85d18e9eb9934d4bab6bef8e6409d7ca.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l2fyfqGMmoSQ3A0xAhGu1DpDUUk=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.905087+00 2025-12-09 10:15:17.905092+00 12699 81890#红色3XL SPMX-20240815307879 \N \N \N 1 \N [{"file_id": "372d011e-89de-4f53-af67-13dc35ef1771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d72eb998217444cadd6321084031558.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d72eb998217444cadd6321084031558.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d72eb998217444cadd6321084031558.jpg", "file_size": 25658, "is_delete": false, "file_type": 1, "original_file_name": "81890#红色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d72eb998217444cadd6321084031558.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d72eb998217444cadd6321084031558.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d72eb998217444cadd6321084031558.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d72eb998217444cadd6321084031558.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d72eb998217444cadd6321084031558.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77bjUZlJWkNw57aTZhYEnx0YQlw=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.907034+00 2025-12-09 10:15:17.907038+00 12700 HT2232FWE#橙 SPMX-20240815307883 \N \N \N 1 \N [{"file_id": "06fde30e-6236-4a96-99f1-2bd38718db2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4c3a23045e548aab4c12d2008acf7ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4c3a23045e548aab4c12d2008acf7ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4c3a23045e548aab4c12d2008acf7ae.jpg", "file_size": 14733, "is_delete": false, "file_type": 1, "original_file_name": "HT2232FWE#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c3a23045e548aab4c12d2008acf7ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c3a23045e548aab4c12d2008acf7ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c3a23045e548aab4c12d2008acf7ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4c3a23045e548aab4c12d2008acf7ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4c3a23045e548aab4c12d2008acf7ae.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6p0w7svbUK1XdGdS41mwhbT60oc=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.90901+00 2025-12-09 10:15:17.909015+00 12701 FM001#白色 SPMX-20240815307886 \N \N \N 1 \N [{"file_id": "1263d8db-0143-46d6-b1c5-6cac3e1e74ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c91c41475f34b58a9524aa525e72137.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c91c41475f34b58a9524aa525e72137.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c91c41475f34b58a9524aa525e72137.jpg", "file_size": 18730, "is_delete": false, "file_type": 1, "original_file_name": "FM001#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91c41475f34b58a9524aa525e72137.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91c41475f34b58a9524aa525e72137.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c91c41475f34b58a9524aa525e72137.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c91c41475f34b58a9524aa525e72137.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c91c41475f34b58a9524aa525e72137.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcRslSQ6mGM1dgkIxNqnjyVjwa8=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.910948+00 2025-12-09 10:15:17.910953+00 12702 LZ1308#捆条布 SPMX-20240815307891 \N \N \N 1 \N [{"file_id": "ceefcff3-aef2-4c34-ab91-9c49661eb9f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39678ee9c83b4440a84f26f565e65f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39678ee9c83b4440a84f26f565e65f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39678ee9c83b4440a84f26f565e65f1a.jpg", "file_size": 20862, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39678ee9c83b4440a84f26f565e65f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39678ee9c83b4440a84f26f565e65f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39678ee9c83b4440a84f26f565e65f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39678ee9c83b4440a84f26f565e65f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39678ee9c83b4440a84f26f565e65f1a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cODu5Q1e1HtfdmYoDV77SXcgPgs=", "createTime": "2024-08-15 14:54:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.912899+00 2025-12-09 10:15:17.912904+00 12703 FM001#紫色 SPMX-20240815307898 \N \N \N 1 \N [{"file_id": "cbadfcd1-d24f-41f5-bda0-9e920e7b8429", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg", "file_size": 15885, "is_delete": false, "file_type": 1, "original_file_name": "FM001#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54dc5aa9c48f42f4b8dd6216ee4c7a0e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vzct-snJeB0cGSrwZ_UMNJWeiGM=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.914914+00 2025-12-09 10:15:17.91492+00 12704 0004-8FWE#深蓝VS-D3 SPMX-20240815307901 \N \N \N 1 \N [{"file_id": "1cdb6d23-aea4-410a-b355-683fdb1808a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4072050bb27e4e68a02913b1eb6d3602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4072050bb27e4e68a02913b1eb6d3602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4072050bb27e4e68a02913b1eb6d3602.jpg", "file_size": 21090, "is_delete": false, "file_type": 1, "original_file_name": "0004-8FWE#深蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4072050bb27e4e68a02913b1eb6d3602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4072050bb27e4e68a02913b1eb6d3602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4072050bb27e4e68a02913b1eb6d3602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4072050bb27e4e68a02913b1eb6d3602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4072050bb27e4e68a02913b1eb6d3602.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3rJQFNcvQ7xOJFQIgT1tn5Ixoc=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.916896+00 2025-12-09 10:15:17.916901+00 12705 DL31068#批布枣红 SPMX-20240815307895 \N \N \N 1 \N [{"file_id": "80fb080d-5fcb-4ba6-b791-2fa9d7944132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5beb7279a67445558063dd3665d819e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5beb7279a67445558063dd3665d819e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5beb7279a67445558063dd3665d819e6.jpg", "file_size": 24429, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5beb7279a67445558063dd3665d819e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5beb7279a67445558063dd3665d819e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5beb7279a67445558063dd3665d819e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5beb7279a67445558063dd3665d819e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5beb7279a67445558063dd3665d819e6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRebLUGlAci_YIgVHqeL3oukRZc=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.918883+00 2025-12-09 10:15:17.918888+00 12706 23-2120#A1-3XL SPMX-20240815307897 \N \N \N 1 \N [{"file_id": "33603cd3-9529-4886-8f00-a47f35689ad9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24683363e6834e79aee47d4554ec4ed5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24683363e6834e79aee47d4554ec4ed5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24683363e6834e79aee47d4554ec4ed5.jpg", "file_size": 15300, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24683363e6834e79aee47d4554ec4ed5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24683363e6834e79aee47d4554ec4ed5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24683363e6834e79aee47d4554ec4ed5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24683363e6834e79aee47d4554ec4ed5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24683363e6834e79aee47d4554ec4ed5.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_mFxDE4-SJUz9ttLSrE84mDz5k=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.920826+00 2025-12-09 10:15:17.920831+00 12707 1127#绿色 SPMX-20240815307899 \N \N \N 1 \N [{"file_id": "24ec9f38-dbf1-4509-b56b-3ff265c840a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "039438b842774fa3bf9711c635614a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "039438b842774fa3bf9711c635614a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "039438b842774fa3bf9711c635614a97.jpg", "file_size": 23641, "is_delete": false, "file_type": 1, "original_file_name": "1127#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039438b842774fa3bf9711c635614a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039438b842774fa3bf9711c635614a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039438b842774fa3bf9711c635614a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/039438b842774fa3bf9711c635614a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/039438b842774fa3bf9711c635614a97.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tV9SK3NV0WVV12-vZBe8BHoIoWs=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.92313+00 2025-12-09 10:15:17.923135+00 12708 C70#数码花2玫红 SPMX-20240815307900 \N \N \N 1 \N [{"file_id": "9334a287-627a-4d95-bdc7-1237badaa0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a3963c31a45434f9f8c04df8ada5292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a3963c31a45434f9f8c04df8ada5292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a3963c31a45434f9f8c04df8ada5292.jpg", "file_size": 20334, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3963c31a45434f9f8c04df8ada5292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3963c31a45434f9f8c04df8ada5292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3963c31a45434f9f8c04df8ada5292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a3963c31a45434f9f8c04df8ada5292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a3963c31a45434f9f8c04df8ada5292.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqZAQU7GC-Fn0kNhNijt_XYVYXY=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.925227+00 2025-12-09 10:15:17.925232+00 12709 LJH1290#彩兰 SPMX-20240815307905 \N \N \N 1 \N [{"file_id": "9f211116-d615-4001-9e8d-da31960723ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b083acdd4673461ba97d25d664659637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b083acdd4673461ba97d25d664659637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b083acdd4673461ba97d25d664659637.jpg", "file_size": 37204, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b083acdd4673461ba97d25d664659637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b083acdd4673461ba97d25d664659637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b083acdd4673461ba97d25d664659637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b083acdd4673461ba97d25d664659637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b083acdd4673461ba97d25d664659637.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZVGsxkQMwhC3LEllxchiHFF_50=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.92724+00 2025-12-09 10:15:17.927247+00 12710 JTSS385FW#VS-D3 SPMX-20240815307893 \N \N \N 1 \N [{"file_id": "67db093f-7bd4-4109-b1fe-a4d3c5b90f3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52978faba485403c896902f86dfbb47c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52978faba485403c896902f86dfbb47c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52978faba485403c896902f86dfbb47c.jpg", "file_size": 14847, "is_delete": false, "file_type": 1, "original_file_name": "JTSS385FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52978faba485403c896902f86dfbb47c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52978faba485403c896902f86dfbb47c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52978faba485403c896902f86dfbb47c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52978faba485403c896902f86dfbb47c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52978faba485403c896902f86dfbb47c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lPVlvTJQZYosEf2ksIm1HirfDMU=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.929259+00 2025-12-09 10:15:17.929265+00 12711 HT2232FWE#蓝 SPMX-20240815307904 \N \N \N 1 \N [{"file_id": "be480173-647c-426e-aa01-48d6de5762ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee4a21839b4e4d7891e0192151be2087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee4a21839b4e4d7891e0192151be2087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee4a21839b4e4d7891e0192151be2087.jpg", "file_size": 13912, "is_delete": false, "file_type": 1, "original_file_name": "HT2232FWE#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4a21839b4e4d7891e0192151be2087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4a21839b4e4d7891e0192151be2087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4a21839b4e4d7891e0192151be2087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee4a21839b4e4d7891e0192151be2087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee4a21839b4e4d7891e0192151be2087.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-axy1dLOzjrpRrL7ICCuVf3tlk=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.931257+00 2025-12-09 10:15:17.931261+00 12712 HT2232FWE#绿 SPMX-20240815307894 \N \N \N 1 \N [{"file_id": "593d80cf-fac8-41e2-b264-bcfbf4d246b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3439e3e04cea4af2957a3414299a7584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3439e3e04cea4af2957a3414299a7584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3439e3e04cea4af2957a3414299a7584.jpg", "file_size": 14724, "is_delete": false, "file_type": 1, "original_file_name": "HT2232FWE#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3439e3e04cea4af2957a3414299a7584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3439e3e04cea4af2957a3414299a7584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3439e3e04cea4af2957a3414299a7584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3439e3e04cea4af2957a3414299a7584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3439e3e04cea4af2957a3414299a7584.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rDFkch5M_NVvumRlJL1tl8dvwx4=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.958536+00 2025-12-09 10:15:17.958542+00 12725 23-2120#A1-4XL SPMX-20240815307908 \N \N \N 1 \N [{"file_id": "69a2b054-db72-4d3b-8123-f02387fba01c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdbb70329c0446d788982dd96bb99c71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdbb70329c0446d788982dd96bb99c71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdbb70329c0446d788982dd96bb99c71.jpg", "file_size": 14398, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbb70329c0446d788982dd96bb99c71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbb70329c0446d788982dd96bb99c71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbb70329c0446d788982dd96bb99c71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdbb70329c0446d788982dd96bb99c71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdbb70329c0446d788982dd96bb99c71.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNmiJiULrJsrGAj6sjz2YVGjdaU=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.933248+00 2025-12-09 10:15:17.933253+00 12713 LZ1308#背心款1号色 SPMX-20240815307902 \N \N \N 1 \N [{"file_id": "1b3551d8-ac46-401d-bf57-124dfa0adc04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d930ebced6b427da11a19d56a9b6265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d930ebced6b427da11a19d56a9b6265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d930ebced6b427da11a19d56a9b6265.jpg", "file_size": 18334, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d930ebced6b427da11a19d56a9b6265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d930ebced6b427da11a19d56a9b6265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d930ebced6b427da11a19d56a9b6265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d930ebced6b427da11a19d56a9b6265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d930ebced6b427da11a19d56a9b6265.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4ZM4AJvjzmsXGdsreLarBWKFWQ=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.935189+00 2025-12-09 10:15:17.935194+00 12714 JTSS386FW#VS-D3 SPMX-20240815307903 \N \N \N 1 \N [{"file_id": "84796f03-5e7f-4ffa-ad83-ec902a39d0f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd594b26608e447688c82faecd605058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd594b26608e447688c82faecd605058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd594b26608e447688c82faecd605058.jpg", "file_size": 11246, "is_delete": false, "file_type": 1, "original_file_name": "JTSS386FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd594b26608e447688c82faecd605058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd594b26608e447688c82faecd605058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd594b26608e447688c82faecd605058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd594b26608e447688c82faecd605058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd594b26608e447688c82faecd605058.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vrjYXNaMSZZEk9u1Eo0TtdPh5JU=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.937123+00 2025-12-09 10:15:17.937128+00 12715 81890#黄色2XL SPMX-20240815307896 \N \N \N 1 \N [{"file_id": "216eed8d-9351-4951-9641-523b35c10fd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d4171f508f24aabb9ec742eeec3ff39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d4171f508f24aabb9ec742eeec3ff39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d4171f508f24aabb9ec742eeec3ff39.jpg", "file_size": 25176, "is_delete": false, "file_type": 1, "original_file_name": "81890#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4171f508f24aabb9ec742eeec3ff39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4171f508f24aabb9ec742eeec3ff39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4171f508f24aabb9ec742eeec3ff39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d4171f508f24aabb9ec742eeec3ff39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d4171f508f24aabb9ec742eeec3ff39.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQbHvst29CNaecSMDSlz84N-HuA=", "createTime": "2024-08-15 14:54:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.939068+00 2025-12-09 10:15:17.939074+00 12716 HT247FW#白VS-D3 SPMX-20240815307914 \N \N \N 1 \N [{"file_id": "33882466-ad6a-4988-a096-7d13505a798e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20838c34a4d54d9eb9acd9f715be557f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20838c34a4d54d9eb9acd9f715be557f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20838c34a4d54d9eb9acd9f715be557f.jpg", "file_size": 10505, "is_delete": false, "file_type": 1, "original_file_name": "HT247FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20838c34a4d54d9eb9acd9f715be557f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20838c34a4d54d9eb9acd9f715be557f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20838c34a4d54d9eb9acd9f715be557f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20838c34a4d54d9eb9acd9f715be557f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20838c34a4d54d9eb9acd9f715be557f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7bvY9PyoKS7Sa1SAHoWINlyuL4=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.941043+00 2025-12-09 10:15:17.941048+00 12717 C70#数码花2白色 SPMX-20240815307912 \N \N \N 1 \N [{"file_id": "4c1f2a50-446c-4382-ba53-9fdf39019bbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "437b73b3c97b46a181905d51ca1267da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "437b73b3c97b46a181905d51ca1267da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "437b73b3c97b46a181905d51ca1267da.jpg", "file_size": 21790, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437b73b3c97b46a181905d51ca1267da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437b73b3c97b46a181905d51ca1267da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437b73b3c97b46a181905d51ca1267da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/437b73b3c97b46a181905d51ca1267da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/437b73b3c97b46a181905d51ca1267da.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:89QT2YKdgrQ42cTYP52vGRiDsbc=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.943003+00 2025-12-09 10:15:17.943008+00 12718 LZ1308#背心款2号色 SPMX-20240815307915 \N \N \N 1 \N [{"file_id": "8cb541e0-69df-48b9-a1f3-51f10c9cb810", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f91db67439644dcbd14673565c47ea5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f91db67439644dcbd14673565c47ea5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f91db67439644dcbd14673565c47ea5.jpg", "file_size": 17766, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f91db67439644dcbd14673565c47ea5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f91db67439644dcbd14673565c47ea5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f91db67439644dcbd14673565c47ea5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f91db67439644dcbd14673565c47ea5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f91db67439644dcbd14673565c47ea5.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E95pBQAbQVf4DrThxv-pGdnxntQ=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.944969+00 2025-12-09 10:15:17.944974+00 12719 23-2120#A1-领子3XL SPMX-20240815307919 \N \N \N 1 \N [{"file_id": "9f9a3f05-ed4c-4211-9950-ab50ee516eb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "348975fe6d40485eabfed933bf721c5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "348975fe6d40485eabfed933bf721c5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "348975fe6d40485eabfed933bf721c5d.jpg", "file_size": 11395, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348975fe6d40485eabfed933bf721c5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348975fe6d40485eabfed933bf721c5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348975fe6d40485eabfed933bf721c5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/348975fe6d40485eabfed933bf721c5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/348975fe6d40485eabfed933bf721c5d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_3USf8IlQIc17INtVcEZJ_3ZaQ=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.947133+00 2025-12-09 10:15:17.947137+00 12720 FM001#黑色 SPMX-20240815307920 \N \N \N 1 \N [{"file_id": "8d8bd66e-fcab-4314-abf6-ee0f5216abed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71679841b6e5418ea7099cae6dabebd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71679841b6e5418ea7099cae6dabebd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71679841b6e5418ea7099cae6dabebd2.jpg", "file_size": 19672, "is_delete": false, "file_type": 1, "original_file_name": "FM001#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679841b6e5418ea7099cae6dabebd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679841b6e5418ea7099cae6dabebd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679841b6e5418ea7099cae6dabebd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71679841b6e5418ea7099cae6dabebd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71679841b6e5418ea7099cae6dabebd2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJ749YbOX9p2jugzks7sAIiM_SI=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.949381+00 2025-12-09 10:15:17.949387+00 12721 DL31068#批布玫红 SPMX-20240815307906 \N \N \N 1 \N [{"file_id": "1abc3787-a248-4206-97a1-e81f5912d3f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc35a8a4c3b9453a8e3da917613de85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc35a8a4c3b9453a8e3da917613de85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc35a8a4c3b9453a8e3da917613de85c.jpg", "file_size": 24087, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc35a8a4c3b9453a8e3da917613de85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc35a8a4c3b9453a8e3da917613de85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc35a8a4c3b9453a8e3da917613de85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc35a8a4c3b9453a8e3da917613de85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc35a8a4c3b9453a8e3da917613de85c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R1AUZXQgPrpyuisDU0hBD0QzOWs=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.95168+00 2025-12-09 10:15:17.951686+00 12722 LJH1290#玫红 SPMX-20240815307916 \N \N \N 1 \N [{"file_id": "bcd095f5-9115-4223-9d9a-0f320eef36db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5d52cf7f8dc441db954fc6249bb0c4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5d52cf7f8dc441db954fc6249bb0c4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5d52cf7f8dc441db954fc6249bb0c4a.jpg", "file_size": 35310, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d52cf7f8dc441db954fc6249bb0c4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d52cf7f8dc441db954fc6249bb0c4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5d52cf7f8dc441db954fc6249bb0c4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5d52cf7f8dc441db954fc6249bb0c4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5d52cf7f8dc441db954fc6249bb0c4a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edG1PdYZiqPEIgX5_LSZOAVJSNk=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.9541+00 2025-12-09 10:15:17.954107+00 12723 DL31068#批布蓝绿 SPMX-20240815307917 \N \N \N 1 \N [{"file_id": "79849cf4-8205-4fa0-aee6-b3f7bbdb3e9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e884eff0da30405e90d2017fedff41d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e884eff0da30405e90d2017fedff41d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e884eff0da30405e90d2017fedff41d9.jpg", "file_size": 25295, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884eff0da30405e90d2017fedff41d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884eff0da30405e90d2017fedff41d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e884eff0da30405e90d2017fedff41d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e884eff0da30405e90d2017fedff41d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e884eff0da30405e90d2017fedff41d9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACDzW790tyOE0zx0JvnUDjXlI24=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.95642+00 2025-12-09 10:15:17.956426+00 12724 0004-8FWE#黄色VS-D3 SPMX-20240815307921 \N \N \N 1 \N [{"file_id": "5ed9b319-bf2d-4789-bd28-4b4d2c80aabe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e44e04df9d9f499b8e2238b92abfa9ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e44e04df9d9f499b8e2238b92abfa9ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e44e04df9d9f499b8e2238b92abfa9ee.jpg", "file_size": 22057, "is_delete": false, "file_type": 1, "original_file_name": "0004-8FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44e04df9d9f499b8e2238b92abfa9ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44e04df9d9f499b8e2238b92abfa9ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44e04df9d9f499b8e2238b92abfa9ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e44e04df9d9f499b8e2238b92abfa9ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e44e04df9d9f499b8e2238b92abfa9ee.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0x9_J1mse2Y7hTftajE6Aotd6c=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.960932+00 2025-12-09 10:15:17.960938+00 12726 0004-8FWE#白色VS-D3 SPMX-20240815307910 \N \N \N 1 \N [{"file_id": "268d945d-3530-42f3-88d5-a4416338990a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e737fabdf97e4802a2ac740638385b90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e737fabdf97e4802a2ac740638385b90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e737fabdf97e4802a2ac740638385b90.jpg", "file_size": 21048, "is_delete": false, "file_type": 1, "original_file_name": "0004-8FWE#白色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e737fabdf97e4802a2ac740638385b90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e737fabdf97e4802a2ac740638385b90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e737fabdf97e4802a2ac740638385b90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e737fabdf97e4802a2ac740638385b90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e737fabdf97e4802a2ac740638385b90.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kjzVMo1t5WOSfzwjDRxzeAg2Ko=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.963307+00 2025-12-09 10:15:17.963313+00 12727 1127#黑色 SPMX-20240815307911 \N \N \N 1 \N [{"file_id": "bf2560c6-1c24-4cb1-aa79-b87ba4fc7878", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea16352229c143c4b99d6e3c7b9c072b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea16352229c143c4b99d6e3c7b9c072b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea16352229c143c4b99d6e3c7b9c072b.jpg", "file_size": 26542, "is_delete": false, "file_type": 1, "original_file_name": "1127#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea16352229c143c4b99d6e3c7b9c072b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea16352229c143c4b99d6e3c7b9c072b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea16352229c143c4b99d6e3c7b9c072b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea16352229c143c4b99d6e3c7b9c072b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea16352229c143c4b99d6e3c7b9c072b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lBMmEW0GApTnlVMihdJqG9AKxI=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.965444+00 2025-12-09 10:15:17.96545+00 12728 FM001#绿色 SPMX-20240815307909 \N \N \N 1 \N [{"file_id": "9df75fd0-bcd5-4148-a83a-a6dcee262644", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edc1afc4395144aa8658fa12dc2ffc87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edc1afc4395144aa8658fa12dc2ffc87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edc1afc4395144aa8658fa12dc2ffc87.jpg", "file_size": 15917, "is_delete": false, "file_type": 1, "original_file_name": "FM001#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc1afc4395144aa8658fa12dc2ffc87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc1afc4395144aa8658fa12dc2ffc87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc1afc4395144aa8658fa12dc2ffc87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edc1afc4395144aa8658fa12dc2ffc87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edc1afc4395144aa8658fa12dc2ffc87.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2qMpENjQxMZDlsXG9LBxC6_0B_A=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.967574+00 2025-12-09 10:15:17.96758+00 12729 81890#黄色3XL SPMX-20240815307907 \N \N \N 1 \N [{"file_id": "99cd9d94-5b7c-4489-9b4b-0ec21ca759d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be1afca644564b09ba956dc2f2bfb133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be1afca644564b09ba956dc2f2bfb133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be1afca644564b09ba956dc2f2bfb133.jpg", "file_size": 24803, "is_delete": false, "file_type": 1, "original_file_name": "81890#黄色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1afca644564b09ba956dc2f2bfb133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1afca644564b09ba956dc2f2bfb133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1afca644564b09ba956dc2f2bfb133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be1afca644564b09ba956dc2f2bfb133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be1afca644564b09ba956dc2f2bfb133.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2-X-UaU-D4thb6bJIU0GuMiwJc=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.970028+00 2025-12-09 10:15:17.970034+00 12730 JTSS387FW#VS-D3 SPMX-20240815307913 \N \N \N 1 \N [{"file_id": "41b11ce9-eb8f-4600-ab15-cdcafe6a5907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cefa47086d44c5ba61b19fcecbc9cf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cefa47086d44c5ba61b19fcecbc9cf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cefa47086d44c5ba61b19fcecbc9cf9.jpg", "file_size": 17137, "is_delete": false, "file_type": 1, "original_file_name": "JTSS387FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cefa47086d44c5ba61b19fcecbc9cf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cefa47086d44c5ba61b19fcecbc9cf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cefa47086d44c5ba61b19fcecbc9cf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cefa47086d44c5ba61b19fcecbc9cf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cefa47086d44c5ba61b19fcecbc9cf9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8O22jW8T3Qs0Xq861CIQjeVFCg=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.972414+00 2025-12-09 10:15:17.972419+00 12731 81890#黄色XL SPMX-20240815307918 \N \N \N 1 \N [{"file_id": "ec1ac0bf-6c5a-402c-9591-a02a0b9d017c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b13e9f30380409eb2f6c95e189d8505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b13e9f30380409eb2f6c95e189d8505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b13e9f30380409eb2f6c95e189d8505.jpg", "file_size": 24370, "is_delete": false, "file_type": 1, "original_file_name": "81890#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b13e9f30380409eb2f6c95e189d8505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b13e9f30380409eb2f6c95e189d8505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b13e9f30380409eb2f6c95e189d8505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b13e9f30380409eb2f6c95e189d8505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b13e9f30380409eb2f6c95e189d8505.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeaCqh9HIrCx654JzMlxbCWS5rA=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.974574+00 2025-12-09 10:15:17.97458+00 12732 DL31068#批布黄色 SPMX-20240815307928 \N \N \N 1 \N [{"file_id": "90833a9a-78b7-46c0-a467-9a40d1704c7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7932f8288b2d439f8ef21d75ac93b310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7932f8288b2d439f8ef21d75ac93b310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7932f8288b2d439f8ef21d75ac93b310.jpg", "file_size": 23202, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7932f8288b2d439f8ef21d75ac93b310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7932f8288b2d439f8ef21d75ac93b310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7932f8288b2d439f8ef21d75ac93b310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7932f8288b2d439f8ef21d75ac93b310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7932f8288b2d439f8ef21d75ac93b310.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zx57u9CaWP27Q7TDTqQlqI5yDco=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.976739+00 2025-12-09 10:15:17.976744+00 12733 HT247FW#红VS-D3 SPMX-20240815307922 \N \N \N 1 \N [{"file_id": "49fcb907-96d3-4adf-832c-94447b28a403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b0b9ee6c39241848439a9cb0151d2a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b0b9ee6c39241848439a9cb0151d2a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b0b9ee6c39241848439a9cb0151d2a9.jpg", "file_size": 12928, "is_delete": false, "file_type": 1, "original_file_name": "HT247FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0b9ee6c39241848439a9cb0151d2a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0b9ee6c39241848439a9cb0151d2a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0b9ee6c39241848439a9cb0151d2a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b0b9ee6c39241848439a9cb0151d2a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b0b9ee6c39241848439a9cb0151d2a9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QdcVc2HK1p_zmJoR7cDEsdOr16k=", "createTime": "2024-08-15 14:54:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.979148+00 2025-12-09 10:15:17.979154+00 12734 113#-杏色 SPMX-20240815307924 \N \N \N 1 \N [{"file_id": "d28f8187-978e-437a-acc0-9f05a02c4881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d0f1b318d7c4998aaf97a665636f74e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d0f1b318d7c4998aaf97a665636f74e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d0f1b318d7c4998aaf97a665636f74e.jpg", "file_size": 46513, "is_delete": false, "file_type": 1, "original_file_name": "113#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0f1b318d7c4998aaf97a665636f74e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0f1b318d7c4998aaf97a665636f74e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0f1b318d7c4998aaf97a665636f74e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d0f1b318d7c4998aaf97a665636f74e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d0f1b318d7c4998aaf97a665636f74e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUY9GYfhJJD-_4qvvnvOwFLugPY=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.981531+00 2025-12-09 10:15:17.981537+00 12735 81895#匹布 SPMX-20240815307930 \N \N \N 1 \N [{"file_id": "39736d7f-2cd0-425c-988d-72d0b992000e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92dd9cfa416b4158bec227ed66d593d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92dd9cfa416b4158bec227ed66d593d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92dd9cfa416b4158bec227ed66d593d4.jpg", "file_size": 24198, "is_delete": false, "file_type": 1, "original_file_name": "81895#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dd9cfa416b4158bec227ed66d593d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dd9cfa416b4158bec227ed66d593d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dd9cfa416b4158bec227ed66d593d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92dd9cfa416b4158bec227ed66d593d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92dd9cfa416b4158bec227ed66d593d4.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6x8oKQfRsjaIZnZCBfa9DCJLSWg=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.983667+00 2025-12-09 10:15:17.983673+00 12736 LZ1308#背心款3号色 SPMX-20240815307926 \N \N \N 1 \N [{"file_id": "b7e830ec-bf4f-4236-89aa-2522c21cd5f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b4eeac53254103b659cf2b5b2648ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b4eeac53254103b659cf2b5b2648ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b4eeac53254103b659cf2b5b2648ad.jpg", "file_size": 17255, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b4eeac53254103b659cf2b5b2648ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b4eeac53254103b659cf2b5b2648ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b4eeac53254103b659cf2b5b2648ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b4eeac53254103b659cf2b5b2648ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b4eeac53254103b659cf2b5b2648ad.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3i56B9npHhLFexBhm4mOqo0QYQ=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.98579+00 2025-12-09 10:15:17.985795+00 12737 0004-9FWE#浅蓝VS-D3 SPMX-20240815307932 \N \N \N 1 \N [{"file_id": "cf282c87-ed77-4d3f-9421-605ccbdf5ad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aad215a81cfa40b78b37d64d30638036.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aad215a81cfa40b78b37d64d30638036.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aad215a81cfa40b78b37d64d30638036.jpg", "file_size": 16754, "is_delete": false, "file_type": 1, "original_file_name": "0004-9FWE#浅蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad215a81cfa40b78b37d64d30638036.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad215a81cfa40b78b37d64d30638036.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad215a81cfa40b78b37d64d30638036.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aad215a81cfa40b78b37d64d30638036.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aad215a81cfa40b78b37d64d30638036.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OgBN8BheFrafW28UDOeDpuBcHtY=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.988144+00 2025-12-09 10:15:17.988149+00 12738 FM002#大红 SPMX-20240815307931 \N \N \N 1 \N [{"file_id": "b1781b4d-6f32-4112-b586-0a0ca5a18f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31a197ba40bc49d99524aa91ab487de2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31a197ba40bc49d99524aa91ab487de2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31a197ba40bc49d99524aa91ab487de2.jpg", "file_size": 17923, "is_delete": false, "file_type": 1, "original_file_name": "FM002#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a197ba40bc49d99524aa91ab487de2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a197ba40bc49d99524aa91ab487de2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a197ba40bc49d99524aa91ab487de2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31a197ba40bc49d99524aa91ab487de2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31a197ba40bc49d99524aa91ab487de2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l6cQDaBNxc-C_rs9FIBo_tzUaUQ=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.990499+00 2025-12-09 10:15:17.990504+00 12739 LJH1290#绿色 SPMX-20240815307927 \N \N \N 1 \N [{"file_id": "c2cc6a22-a67c-4653-a5b1-cd39186e0d85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2228ed9af18342678318067582eafc0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2228ed9af18342678318067582eafc0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2228ed9af18342678318067582eafc0b.jpg", "file_size": 37098, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2228ed9af18342678318067582eafc0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2228ed9af18342678318067582eafc0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2228ed9af18342678318067582eafc0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2228ed9af18342678318067582eafc0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2228ed9af18342678318067582eafc0b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3KhS7w7o5AmmuZ32zwdUJFD2yI=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.992627+00 2025-12-09 10:15:17.992632+00 12740 113#-深杏 SPMX-20240815307935 \N \N \N 1 \N [{"file_id": "a88d585c-80ea-4046-86f2-cdcba4f6bfe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f968c1f4e14048b09cffe38ec194e43b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f968c1f4e14048b09cffe38ec194e43b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f968c1f4e14048b09cffe38ec194e43b.jpg", "file_size": 45784, "is_delete": false, "file_type": 1, "original_file_name": "113#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f968c1f4e14048b09cffe38ec194e43b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f968c1f4e14048b09cffe38ec194e43b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f968c1f4e14048b09cffe38ec194e43b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f968c1f4e14048b09cffe38ec194e43b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f968c1f4e14048b09cffe38ec194e43b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWiSqawWIQyOB6JupTX-RbHoxgQ=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.994765+00 2025-12-09 10:15:17.994771+00 12741 HT247FW#蓝VS-D3 SPMX-20240815307936 \N \N \N 1 \N [{"file_id": "e00c0065-63b1-4a90-89c2-a561363afa9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce17b85e72e24d719c37d53ea233a842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce17b85e72e24d719c37d53ea233a842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce17b85e72e24d719c37d53ea233a842.jpg", "file_size": 12793, "is_delete": false, "file_type": 1, "original_file_name": "HT247FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce17b85e72e24d719c37d53ea233a842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce17b85e72e24d719c37d53ea233a842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce17b85e72e24d719c37d53ea233a842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce17b85e72e24d719c37d53ea233a842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce17b85e72e24d719c37d53ea233a842.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:neFGFTwP1QmSGzoQWZoEW1Z9BpE=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.996903+00 2025-12-09 10:15:17.996908+00 12742 C70#数码花2黄色 SPMX-20240815307937 \N \N \N 1 \N [{"file_id": "2ed683c1-1e2f-4de2-9ed4-92ecb8bee1de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cf043de5a3c4806b35b610b5c143296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cf043de5a3c4806b35b610b5c143296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cf043de5a3c4806b35b610b5c143296.jpg", "file_size": 20932, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf043de5a3c4806b35b610b5c143296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf043de5a3c4806b35b610b5c143296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cf043de5a3c4806b35b610b5c143296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cf043de5a3c4806b35b610b5c143296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cf043de5a3c4806b35b610b5c143296.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbmZMSYljEI2IQoP351_saIIkps=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:17.999139+00 2025-12-09 10:15:17.999145+00 12743 C70#数码花2粉色 SPMX-20240815307925 \N \N \N 1 \N [{"file_id": "c28526db-3a4a-481a-8d24-c7a08ee0f34a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg", "file_size": 20504, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee0bfd5f9c1e4f0682fce4015f5e4b02.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TFmLUGunszkamIyo8NemIUxkJE=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.001496+00 2025-12-09 10:15:18.001501+00 12744 JTSS388FW#VS-D3 SPMX-20240815307923 \N \N \N 1 \N [{"file_id": "3be04585-e825-47e0-8c9b-351233b8486c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7dbbd2b5f1e441193c1e77492479e85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7dbbd2b5f1e441193c1e77492479e85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7dbbd2b5f1e441193c1e77492479e85.jpg", "file_size": 13731, "is_delete": false, "file_type": 1, "original_file_name": "JTSS388FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dbbd2b5f1e441193c1e77492479e85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dbbd2b5f1e441193c1e77492479e85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7dbbd2b5f1e441193c1e77492479e85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7dbbd2b5f1e441193c1e77492479e85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7dbbd2b5f1e441193c1e77492479e85.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUAsusXXHUz-0x-TK2rVOBdhvd0=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.003879+00 2025-12-09 10:15:18.003884+00 12745 23-2120#A1-领子4XL SPMX-20240815307929 \N \N \N 1 \N [{"file_id": "a6973235-7a03-4284-ae4a-9c3a68ac6d06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195922f432ee42f1917d1075b000042e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195922f432ee42f1917d1075b000042e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195922f432ee42f1917d1075b000042e.jpg", "file_size": 11755, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195922f432ee42f1917d1075b000042e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195922f432ee42f1917d1075b000042e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195922f432ee42f1917d1075b000042e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195922f432ee42f1917d1075b000042e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195922f432ee42f1917d1075b000042e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBY-yNdAiVF5WwhDU8zYX0PAh5Y=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.005989+00 2025-12-09 10:15:18.005994+00 12746 JTSS389FW#VS-D3 SPMX-20240815307933 \N \N \N 1 \N [{"file_id": "f8b8b452-ce9d-4b17-8e15-349452d8c9d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eedb9b3f459243679302079ed9cd48cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eedb9b3f459243679302079ed9cd48cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eedb9b3f459243679302079ed9cd48cb.jpg", "file_size": 8576, "is_delete": false, "file_type": 1, "original_file_name": "JTSS389FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedb9b3f459243679302079ed9cd48cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedb9b3f459243679302079ed9cd48cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedb9b3f459243679302079ed9cd48cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eedb9b3f459243679302079ed9cd48cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eedb9b3f459243679302079ed9cd48cb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsTQaE6VvlSyXBC75jmLFOLHjdY=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.008611+00 2025-12-09 10:15:18.008616+00 12747 LZ1308#背心款4号色 SPMX-20240815307934 \N \N \N 1 \N [{"file_id": "41e13bdd-57d5-4f01-a129-c2f665b34632", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd026a32d9b948228640f5d9cccc1364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd026a32d9b948228640f5d9cccc1364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd026a32d9b948228640f5d9cccc1364.jpg", "file_size": 17686, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd026a32d9b948228640f5d9cccc1364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd026a32d9b948228640f5d9cccc1364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd026a32d9b948228640f5d9cccc1364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd026a32d9b948228640f5d9cccc1364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd026a32d9b948228640f5d9cccc1364.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJ5cGsQHufJLirR4Ojq1eaIbz3E=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.011291+00 2025-12-09 10:15:18.011296+00 12748 0004-9FWE#深蓝VS-D3 SPMX-20240815307943 \N \N \N 1 \N [{"file_id": "e2355bae-7e5d-45ae-b1aa-02677653806b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b6ab0d6e8e9416280ffe24d75723e16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b6ab0d6e8e9416280ffe24d75723e16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b6ab0d6e8e9416280ffe24d75723e16.jpg", "file_size": 18609, "is_delete": false, "file_type": 1, "original_file_name": "0004-9FWE#深蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6ab0d6e8e9416280ffe24d75723e16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6ab0d6e8e9416280ffe24d75723e16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6ab0d6e8e9416280ffe24d75723e16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b6ab0d6e8e9416280ffe24d75723e16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b6ab0d6e8e9416280ffe24d75723e16.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrvqqF3a_-CatXreQXNkedmr02Q=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.013922+00 2025-12-09 10:15:18.013927+00 12749 DL31068#批布黑色 SPMX-20240815307941 \N \N \N 1 \N [{"file_id": "02b21766-bbf3-4cf7-a3cd-70eeecbfedad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35ca6edf56ed4dcfba330cd53ae23eec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35ca6edf56ed4dcfba330cd53ae23eec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35ca6edf56ed4dcfba330cd53ae23eec.jpg", "file_size": 27212, "is_delete": false, "file_type": 1, "original_file_name": "DL31068#批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ca6edf56ed4dcfba330cd53ae23eec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ca6edf56ed4dcfba330cd53ae23eec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ca6edf56ed4dcfba330cd53ae23eec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35ca6edf56ed4dcfba330cd53ae23eec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35ca6edf56ed4dcfba330cd53ae23eec.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIV__H6I8F-i6oeaSi72IaUy7GI=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.016344+00 2025-12-09 10:15:18.01635+00 12750 FM002#橘红 SPMX-20240815307942 \N \N \N 1 \N [{"file_id": "bf050ffc-96e0-49cf-92b6-5bdeef3ceaa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e152fae6b0114f2c827b3c6655cdcb80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e152fae6b0114f2c827b3c6655cdcb80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e152fae6b0114f2c827b3c6655cdcb80.jpg", "file_size": 17841, "is_delete": false, "file_type": 1, "original_file_name": "FM002#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e152fae6b0114f2c827b3c6655cdcb80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e152fae6b0114f2c827b3c6655cdcb80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e152fae6b0114f2c827b3c6655cdcb80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e152fae6b0114f2c827b3c6655cdcb80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e152fae6b0114f2c827b3c6655cdcb80.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgbNaxlC4C8R10_aiXCqKQQGbIs=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.019047+00 2025-12-09 10:15:18.019053+00 12751 0004-9FWE#白色VS-D3 SPMX-20240815307953 \N \N \N 1 \N [{"file_id": "4a33507a-41d2-4a29-bef7-020bb0ed13e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2989c70176e84c06a7b2c7995320537e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2989c70176e84c06a7b2c7995320537e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2989c70176e84c06a7b2c7995320537e.jpg", "file_size": 16709, "is_delete": false, "file_type": 1, "original_file_name": "0004-9FWE#白色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2989c70176e84c06a7b2c7995320537e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2989c70176e84c06a7b2c7995320537e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2989c70176e84c06a7b2c7995320537e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2989c70176e84c06a7b2c7995320537e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2989c70176e84c06a7b2c7995320537e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WjsLllW866rPegW8lyqXkJIrjc=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.021837+00 2025-12-09 10:15:18.021843+00 12752 23-2120#A10-4XL SPMX-20240815307950 \N \N \N 1 \N [{"file_id": "4039ae08-97e7-4a16-b249-58bec6b89f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1e68c15b7c148e8b2bab0eb8316edd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1e68c15b7c148e8b2bab0eb8316edd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1e68c15b7c148e8b2bab0eb8316edd1.jpg", "file_size": 17791, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e68c15b7c148e8b2bab0eb8316edd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e68c15b7c148e8b2bab0eb8316edd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e68c15b7c148e8b2bab0eb8316edd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1e68c15b7c148e8b2bab0eb8316edd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1e68c15b7c148e8b2bab0eb8316edd1.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_aav-vnnj5SyPoSh0YJqG-M_F4=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.024393+00 2025-12-09 10:15:18.024398+00 12753 LJH1290-9#白色 SPMX-20240815307952 \N \N \N 1 \N [{"file_id": "27bdd63d-8a8a-4b1c-b393-189f56a5888e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "effb97e1aa7e4571969c09a3e808c946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "effb97e1aa7e4571969c09a3e808c946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "effb97e1aa7e4571969c09a3e808c946.jpg", "file_size": 51439, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290-9#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/effb97e1aa7e4571969c09a3e808c946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/effb97e1aa7e4571969c09a3e808c946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/effb97e1aa7e4571969c09a3e808c946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/effb97e1aa7e4571969c09a3e808c946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/effb97e1aa7e4571969c09a3e808c946.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fa0fGeUYJ-MNe9AhG-43e_fyCiw=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.027054+00 2025-12-09 10:15:18.02706+00 12754 LJH1290#黄色 SPMX-20240815307939 \N \N \N 1 \N [{"file_id": "80cd78a7-a3f8-402f-a655-ad941f369872", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "033d08a5962447f3bd1a9c1d8677a675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "033d08a5962447f3bd1a9c1d8677a675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "033d08a5962447f3bd1a9c1d8677a675.jpg", "file_size": 39563, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033d08a5962447f3bd1a9c1d8677a675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033d08a5962447f3bd1a9c1d8677a675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/033d08a5962447f3bd1a9c1d8677a675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/033d08a5962447f3bd1a9c1d8677a675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/033d08a5962447f3bd1a9c1d8677a675.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcthq5njNCvgWm3IK8vmzJUE1xg=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.029623+00 2025-12-09 10:15:18.029629+00 12755 DL31070#定位亮黄 SPMX-20240815307949 \N \N \N 1 \N [{"file_id": "247c6684-c1ed-4463-9a88-0758c41d86ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "344ffc2c98a8410b8201aa8605f1b998.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "344ffc2c98a8410b8201aa8605f1b998.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "344ffc2c98a8410b8201aa8605f1b998.jpg", "file_size": 13435, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344ffc2c98a8410b8201aa8605f1b998.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344ffc2c98a8410b8201aa8605f1b998.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344ffc2c98a8410b8201aa8605f1b998.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/344ffc2c98a8410b8201aa8605f1b998.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/344ffc2c98a8410b8201aa8605f1b998.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2pd3ggVKeD5f-gde8WuMNZJQvE0=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.031985+00 2025-12-09 10:15:18.031991+00 12756 113#-灰色 SPMX-20240815307946 \N \N \N 1 \N [{"file_id": "231baf63-479d-4f1d-b1c1-65708b74822b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b87b837432f44fb1abe4d1d7bfdad550.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b87b837432f44fb1abe4d1d7bfdad550.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b87b837432f44fb1abe4d1d7bfdad550.jpg", "file_size": 60444, "is_delete": false, "file_type": 1, "original_file_name": "113#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87b837432f44fb1abe4d1d7bfdad550.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87b837432f44fb1abe4d1d7bfdad550.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b87b837432f44fb1abe4d1d7bfdad550.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b87b837432f44fb1abe4d1d7bfdad550.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b87b837432f44fb1abe4d1d7bfdad550.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-cW-EONjZlupxqpNsy6niEVq4E=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.034096+00 2025-12-09 10:15:18.034101+00 12757 81909#2XL SPMX-20240815307940 \N \N \N 1 \N [{"file_id": "8644e7b7-1b06-4c39-bbdb-7de4c9d40c45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "599a1d5b4e8b4007aa52086d4299b18f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "599a1d5b4e8b4007aa52086d4299b18f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "599a1d5b4e8b4007aa52086d4299b18f.jpg", "file_size": 14900, "is_delete": false, "file_type": 1, "original_file_name": "81909#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599a1d5b4e8b4007aa52086d4299b18f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599a1d5b4e8b4007aa52086d4299b18f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599a1d5b4e8b4007aa52086d4299b18f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/599a1d5b4e8b4007aa52086d4299b18f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/599a1d5b4e8b4007aa52086d4299b18f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xXCDp_dObHL-A1pKPmOp7ycIOWw=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.036059+00 2025-12-09 10:15:18.036064+00 12758 JTSS390FW#VS-D3 SPMX-20240815307944 \N \N \N 1 \N [{"file_id": "2496cc77-81eb-47bd-aa73-1d3707c11b0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd139a31d09d437c87d04484d9bb7fe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd139a31d09d437c87d04484d9bb7fe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd139a31d09d437c87d04484d9bb7fe8.jpg", "file_size": 9722, "is_delete": false, "file_type": 1, "original_file_name": "JTSS390FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd139a31d09d437c87d04484d9bb7fe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd139a31d09d437c87d04484d9bb7fe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd139a31d09d437c87d04484d9bb7fe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd139a31d09d437c87d04484d9bb7fe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd139a31d09d437c87d04484d9bb7fe8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:or2nc00212Yj6GAVUUJ89-G5ZIQ=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.038135+00 2025-12-09 10:15:18.038141+00 12759 81909#3XL SPMX-20240815307951 \N \N \N 1 \N [{"file_id": "5546cc8d-e5da-42eb-94b6-95a5eb2f8257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be7cca61a89d48dd9ef8a9b4c3248c1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be7cca61a89d48dd9ef8a9b4c3248c1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be7cca61a89d48dd9ef8a9b4c3248c1e.jpg", "file_size": 14518, "is_delete": false, "file_type": 1, "original_file_name": "81909#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7cca61a89d48dd9ef8a9b4c3248c1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7cca61a89d48dd9ef8a9b4c3248c1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be7cca61a89d48dd9ef8a9b4c3248c1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be7cca61a89d48dd9ef8a9b4c3248c1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be7cca61a89d48dd9ef8a9b4c3248c1e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jaLoRJQZ65jmfCL6dn-zCKHqcu8=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.040261+00 2025-12-09 10:15:18.040266+00 12760 FM002#浅蓝色 SPMX-20240815307954 \N \N \N 1 \N [{"file_id": "43f0b98a-446c-4b40-998a-0ccc20e64ba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39577801445647fb995c7ca64826a329.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39577801445647fb995c7ca64826a329.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39577801445647fb995c7ca64826a329.jpg", "file_size": 16818, "is_delete": false, "file_type": 1, "original_file_name": "FM002#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39577801445647fb995c7ca64826a329.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39577801445647fb995c7ca64826a329.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39577801445647fb995c7ca64826a329.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39577801445647fb995c7ca64826a329.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39577801445647fb995c7ca64826a329.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vqYTRdqTCYCpXsqOcWz831Y9NQ=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.042995+00 2025-12-09 10:15:18.043003+00 12761 JTSS391FW#VS-D3 SPMX-20240815307955 \N \N \N 1 \N [{"file_id": "58c6ae28-64b8-4039-bb98-4131a6b4b952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784a18b39d3e456abb9069fc6ebd4c83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784a18b39d3e456abb9069fc6ebd4c83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784a18b39d3e456abb9069fc6ebd4c83.jpg", "file_size": 9172, "is_delete": false, "file_type": 1, "original_file_name": "JTSS391FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784a18b39d3e456abb9069fc6ebd4c83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784a18b39d3e456abb9069fc6ebd4c83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784a18b39d3e456abb9069fc6ebd4c83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784a18b39d3e456abb9069fc6ebd4c83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784a18b39d3e456abb9069fc6ebd4c83.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DefdX2DYndbYmXOFQ9Zmg9wIuPQ=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.046226+00 2025-12-09 10:15:18.046233+00 12762 LZ1308#背心款5号色 SPMX-20240815307945 \N \N \N 1 \N [{"file_id": "d7ee62a5-1817-4f10-8b99-265a75e2981b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3f399db8d6a45dea5f3b653f84a3d9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3f399db8d6a45dea5f3b653f84a3d9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3f399db8d6a45dea5f3b653f84a3d9a.jpg", "file_size": 18020, "is_delete": false, "file_type": 1, "original_file_name": "LZ1308#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f399db8d6a45dea5f3b653f84a3d9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f399db8d6a45dea5f3b653f84a3d9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f399db8d6a45dea5f3b653f84a3d9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3f399db8d6a45dea5f3b653f84a3d9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3f399db8d6a45dea5f3b653f84a3d9a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZID2RgpkkhOyM7ado6-qg5YUlvM=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.049497+00 2025-12-09 10:15:18.049506+00 12763 C70#数码花2黑色 SPMX-20240815307948 \N \N \N 1 \N [{"file_id": "3f85b006-748f-420f-bdc7-4a4b4a7345bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59b4c5ede89f4ed29bd282537f4bd245.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59b4c5ede89f4ed29bd282537f4bd245.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59b4c5ede89f4ed29bd282537f4bd245.jpg", "file_size": 22977, "is_delete": false, "file_type": 1, "original_file_name": "C70#数码花2黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b4c5ede89f4ed29bd282537f4bd245.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b4c5ede89f4ed29bd282537f4bd245.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b4c5ede89f4ed29bd282537f4bd245.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59b4c5ede89f4ed29bd282537f4bd245.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59b4c5ede89f4ed29bd282537f4bd245.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:74kU6bAUEQcStGCkdY6fQ4r1LtU=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.052992+00 2025-12-09 10:15:18.053001+00 12764 23-2120#A10-3XL SPMX-20240815307938 \N \N \N 1 \N [{"file_id": "d566675f-586e-4465-a3e4-52ad7b7e0903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d7918b2a5494c5b8123b5278b928449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d7918b2a5494c5b8123b5278b928449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d7918b2a5494c5b8123b5278b928449.jpg", "file_size": 18728, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7918b2a5494c5b8123b5278b928449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7918b2a5494c5b8123b5278b928449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d7918b2a5494c5b8123b5278b928449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d7918b2a5494c5b8123b5278b928449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d7918b2a5494c5b8123b5278b928449.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nt27M9UDsxrhVZRrqYW6BF61Yys=", "createTime": "2024-08-15 14:54:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.056498+00 2025-12-09 10:15:18.056507+00 12765 HT247FW#黄VS-D3 SPMX-20240815307947 \N \N \N 1 \N [{"file_id": "916b6a3e-347f-4325-a473-7a80b16119ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80662daf9e994e19bcdee7c6d6a587fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80662daf9e994e19bcdee7c6d6a587fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80662daf9e994e19bcdee7c6d6a587fe.jpg", "file_size": 12945, "is_delete": false, "file_type": 1, "original_file_name": "HT247FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80662daf9e994e19bcdee7c6d6a587fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80662daf9e994e19bcdee7c6d6a587fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80662daf9e994e19bcdee7c6d6a587fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80662daf9e994e19bcdee7c6d6a587fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80662daf9e994e19bcdee7c6d6a587fe.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QwLR6rkMDJdGgcwQVvc4iir9dhY=", "createTime": "2024-08-15 14:54:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.060008+00 2025-12-09 10:15:18.060018+00 12766 81909#4XL SPMX-20240815307961 \N \N \N 1 \N [{"file_id": "75342322-793f-4bb2-aa97-4442c8014f69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751788511e864827970b875f6894a4b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751788511e864827970b875f6894a4b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751788511e864827970b875f6894a4b6.jpg", "file_size": 14413, "is_delete": false, "file_type": 1, "original_file_name": "81909#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751788511e864827970b875f6894a4b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751788511e864827970b875f6894a4b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751788511e864827970b875f6894a4b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751788511e864827970b875f6894a4b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751788511e864827970b875f6894a4b6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n47I5gSdcvjy10QUQd3hhzkaB3A=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.063563+00 2025-12-09 10:15:18.063573+00 12767 23-2120#A10-领子3XL SPMX-20240815307957 \N \N \N 1 \N [{"file_id": "ab0f50f3-9018-4bca-b6d4-240e4a1e0906", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf73d91d87a74cb9b26d45c98f9ebd65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf73d91d87a74cb9b26d45c98f9ebd65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf73d91d87a74cb9b26d45c98f9ebd65.jpg", "file_size": 11513, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf73d91d87a74cb9b26d45c98f9ebd65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf73d91d87a74cb9b26d45c98f9ebd65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf73d91d87a74cb9b26d45c98f9ebd65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf73d91d87a74cb9b26d45c98f9ebd65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf73d91d87a74cb9b26d45c98f9ebd65.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w56sn3yIO-n216FbCJt8Ioj9ykA=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.067067+00 2025-12-09 10:15:18.067077+00 12768 LZ1309#捆条布 SPMX-20240815307956 \N \N \N 1 \N [{"file_id": "67cc364a-b519-461e-8e9d-c49ea3072f1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8673d68772034a1fbe1010d7d57619cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8673d68772034a1fbe1010d7d57619cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8673d68772034a1fbe1010d7d57619cb.jpg", "file_size": 22236, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8673d68772034a1fbe1010d7d57619cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8673d68772034a1fbe1010d7d57619cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8673d68772034a1fbe1010d7d57619cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8673d68772034a1fbe1010d7d57619cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8673d68772034a1fbe1010d7d57619cb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xacD5qQ1fynJPJvI9M9sK99MHgQ=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.070659+00 2025-12-09 10:15:18.070666+00 12769 LJH1290-9#粉色 SPMX-20240815307962 \N \N \N 1 \N [{"file_id": "c2237624-3ed2-400e-a389-d7080f3f8be2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "703280e27ca1455287ee28f1f093207e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "703280e27ca1455287ee28f1f093207e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "703280e27ca1455287ee28f1f093207e.jpg", "file_size": 49193, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290-9#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703280e27ca1455287ee28f1f093207e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703280e27ca1455287ee28f1f093207e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703280e27ca1455287ee28f1f093207e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/703280e27ca1455287ee28f1f093207e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/703280e27ca1455287ee28f1f093207e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEpwd5aTiHq11PnAc_spBqIPzhg=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.073735+00 2025-12-09 10:15:18.073742+00 12770 C70花38#白色LWQ15 SPMX-20240815307966 \N \N \N 1 \N [{"file_id": "2a4196ce-9e60-4e6f-9747-8aa4cc49c74f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80c8b4d5fc7e44b78fe77e139f4f44bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80c8b4d5fc7e44b78fe77e139f4f44bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80c8b4d5fc7e44b78fe77e139f4f44bb.jpg", "file_size": 16727, "is_delete": false, "file_type": 1, "original_file_name": "C70花38#白色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c8b4d5fc7e44b78fe77e139f4f44bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c8b4d5fc7e44b78fe77e139f4f44bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c8b4d5fc7e44b78fe77e139f4f44bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80c8b4d5fc7e44b78fe77e139f4f44bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80c8b4d5fc7e44b78fe77e139f4f44bb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFb6TX_QzIq4m6FlkxG775NPkog=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.076571+00 2025-12-09 10:15:18.076577+00 12771 113#-白色 SPMX-20240815307959 \N \N \N 1 \N [{"file_id": "aa168e92-f042-449d-8989-5fdff239379c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09dee9697e30465088eabf33b929c033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09dee9697e30465088eabf33b929c033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09dee9697e30465088eabf33b929c033.jpg", "file_size": 43882, "is_delete": false, "file_type": 1, "original_file_name": "113#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dee9697e30465088eabf33b929c033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dee9697e30465088eabf33b929c033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dee9697e30465088eabf33b929c033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09dee9697e30465088eabf33b929c033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09dee9697e30465088eabf33b929c033.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TsmGO0vnp2z3Syp8P0vnm4aRy4Y=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.079157+00 2025-12-09 10:15:18.079162+00 12772 0004-9FWE#黄色VS-D3 SPMX-20240815307964 \N \N \N 1 \N [{"file_id": "7f33d168-64a3-4f67-adbd-e1e01c33ad6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7370b653d07740ff8ccb6b3408b79153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7370b653d07740ff8ccb6b3408b79153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7370b653d07740ff8ccb6b3408b79153.jpg", "file_size": 18159, "is_delete": false, "file_type": 1, "original_file_name": "0004-9FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7370b653d07740ff8ccb6b3408b79153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7370b653d07740ff8ccb6b3408b79153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7370b653d07740ff8ccb6b3408b79153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7370b653d07740ff8ccb6b3408b79153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7370b653d07740ff8ccb6b3408b79153.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZnHAwljUGhlIWkSbzoRt0AK9V9Y=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.081484+00 2025-12-09 10:15:18.081489+00 12773 DL31070#定位大红 SPMX-20240815307960 \N \N \N 1 \N [{"file_id": "8f942d8d-54ae-4221-8153-b823de33fe8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "707461f6ccfd4801a6c830405971d703.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "707461f6ccfd4801a6c830405971d703.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "707461f6ccfd4801a6c830405971d703.jpg", "file_size": 13980, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707461f6ccfd4801a6c830405971d703.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707461f6ccfd4801a6c830405971d703.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/707461f6ccfd4801a6c830405971d703.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/707461f6ccfd4801a6c830405971d703.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/707461f6ccfd4801a6c830405971d703.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZyyRNezaQanE0nsfYHLQb6Lbog=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.084223+00 2025-12-09 10:15:18.084228+00 12774 FM002#玫红 SPMX-20240815307965 \N \N \N 1 \N [{"file_id": "87b13565-ce6c-409e-b571-90f1c90b2764", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e19c377ef2e9448ba9aedb0ef0da88e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e19c377ef2e9448ba9aedb0ef0da88e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e19c377ef2e9448ba9aedb0ef0da88e6.jpg", "file_size": 17170, "is_delete": false, "file_type": 1, "original_file_name": "FM002#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19c377ef2e9448ba9aedb0ef0da88e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19c377ef2e9448ba9aedb0ef0da88e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e19c377ef2e9448ba9aedb0ef0da88e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e19c377ef2e9448ba9aedb0ef0da88e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e19c377ef2e9448ba9aedb0ef0da88e6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vofR7baGAl4NhcGOYqzIWGZLSCs=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.087189+00 2025-12-09 10:15:18.087195+00 12775 JTSS392FW#VS-D3 SPMX-20240815307963 \N \N \N 1 \N [{"file_id": "65483396-feff-4f68-a407-b15f99492255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dafc4d5f969429295e9a6bc108df98b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dafc4d5f969429295e9a6bc108df98b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dafc4d5f969429295e9a6bc108df98b.jpg", "file_size": 10341, "is_delete": false, "file_type": 1, "original_file_name": "JTSS392FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dafc4d5f969429295e9a6bc108df98b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dafc4d5f969429295e9a6bc108df98b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dafc4d5f969429295e9a6bc108df98b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dafc4d5f969429295e9a6bc108df98b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dafc4d5f969429295e9a6bc108df98b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RsfU2PzGKUTOtY2nUnMDjvn511I=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.090327+00 2025-12-09 10:15:18.090331+00 12776 HT248FW#VS-D3 SPMX-20240815307958 \N \N \N 1 \N [{"file_id": "4f9b6226-4291-4bb5-a79e-001e56ecd4ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5da08e7f2b2246e48b3834978d5005f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5da08e7f2b2246e48b3834978d5005f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5da08e7f2b2246e48b3834978d5005f7.jpg", "file_size": 20698, "is_delete": false, "file_type": 1, "original_file_name": "HT248FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da08e7f2b2246e48b3834978d5005f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da08e7f2b2246e48b3834978d5005f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da08e7f2b2246e48b3834978d5005f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5da08e7f2b2246e48b3834978d5005f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5da08e7f2b2246e48b3834978d5005f7.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WVLnRFLNu1SwpLusZyodWMAYvo0=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.093347+00 2025-12-09 10:15:18.093354+00 12777 23-2120#A10-领子4XL SPMX-20240815307968 \N \N \N 1 \N [{"file_id": "e579cb0e-2c8f-4513-bd5a-0802afbeec57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad82a6d89cdd4879825b25eb301d339c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad82a6d89cdd4879825b25eb301d339c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad82a6d89cdd4879825b25eb301d339c.jpg", "file_size": 11515, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82a6d89cdd4879825b25eb301d339c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82a6d89cdd4879825b25eb301d339c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad82a6d89cdd4879825b25eb301d339c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad82a6d89cdd4879825b25eb301d339c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad82a6d89cdd4879825b25eb301d339c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfeCwuAZyULtZ7l0fLWnjIPnFZM=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.096418+00 2025-12-09 10:15:18.096423+00 12778 LZ1309#背心款1号色 SPMX-20240815307969 \N \N \N 1 \N [{"file_id": "0074209c-665c-47a0-93a3-315131948521", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3973db7620644b85894552d72b8aeba8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3973db7620644b85894552d72b8aeba8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3973db7620644b85894552d72b8aeba8.jpg", "file_size": 19897, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3973db7620644b85894552d72b8aeba8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3973db7620644b85894552d72b8aeba8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3973db7620644b85894552d72b8aeba8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3973db7620644b85894552d72b8aeba8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3973db7620644b85894552d72b8aeba8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8w8m3CiDQLlVTutM8JZS1DLJ49U=", "createTime": "2024-08-15 14:54:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.098787+00 2025-12-09 10:15:18.098792+00 12779 HT249FW#VS-D3 SPMX-20240815307967 \N \N \N 1 \N [{"file_id": "9a1e3ef6-cc62-409d-bb9e-60a019315da7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f182b05e310d4eb0b6fb43e84e5381bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f182b05e310d4eb0b6fb43e84e5381bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f182b05e310d4eb0b6fb43e84e5381bb.jpg", "file_size": 17538, "is_delete": false, "file_type": 1, "original_file_name": "HT249FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f182b05e310d4eb0b6fb43e84e5381bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f182b05e310d4eb0b6fb43e84e5381bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f182b05e310d4eb0b6fb43e84e5381bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f182b05e310d4eb0b6fb43e84e5381bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f182b05e310d4eb0b6fb43e84e5381bb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_sPZvVRz_Axuxmm8rrK_smY6XMw=", "createTime": "2024-08-15 14:54:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.101037+00 2025-12-09 10:15:18.101044+00 12780 23-2120#A11-3XL SPMX-20240815307977 \N \N \N 1 \N [{"file_id": "ab7c1d37-58fa-41f2-a9ea-3222e80b0a59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7fd4d6003ad41bb9328c183a206901c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7fd4d6003ad41bb9328c183a206901c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7fd4d6003ad41bb9328c183a206901c.jpg", "file_size": 20495, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fd4d6003ad41bb9328c183a206901c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fd4d6003ad41bb9328c183a206901c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fd4d6003ad41bb9328c183a206901c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7fd4d6003ad41bb9328c183a206901c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7fd4d6003ad41bb9328c183a206901c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmdF2T1bLVQWdBrRRBcAqMXBPcY=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.10344+00 2025-12-09 10:15:18.103445+00 12781 113#-黑色 SPMX-20240815307971 \N \N \N 1 \N [{"file_id": "a3b269dc-cf0e-4142-b4d0-a6c49fe7b777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e827e14569e4e7fb6a13b0773a93976.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e827e14569e4e7fb6a13b0773a93976.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e827e14569e4e7fb6a13b0773a93976.jpg", "file_size": 45295, "is_delete": false, "file_type": 1, "original_file_name": "113#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e827e14569e4e7fb6a13b0773a93976.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e827e14569e4e7fb6a13b0773a93976.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e827e14569e4e7fb6a13b0773a93976.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e827e14569e4e7fb6a13b0773a93976.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e827e14569e4e7fb6a13b0773a93976.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:scYlMGFnTUozCbKfcGH4RZbgo_c=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.105483+00 2025-12-09 10:15:18.105488+00 12782 JTSS393FW#VS-D3 SPMX-20240815307973 \N \N \N 1 \N [{"file_id": "2b14ab68-b5a3-4077-af7c-6e2b82952919", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae45d5e0ecbe4389b0a51a469b648f6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae45d5e0ecbe4389b0a51a469b648f6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae45d5e0ecbe4389b0a51a469b648f6a.jpg", "file_size": 12902, "is_delete": false, "file_type": 1, "original_file_name": "JTSS393FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae45d5e0ecbe4389b0a51a469b648f6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae45d5e0ecbe4389b0a51a469b648f6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae45d5e0ecbe4389b0a51a469b648f6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae45d5e0ecbe4389b0a51a469b648f6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae45d5e0ecbe4389b0a51a469b648f6a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8O_-uz99utHfRitr59IOZfETSfI=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.10748+00 2025-12-09 10:15:18.107485+00 12783 DL31070#定位彩兰 SPMX-20240815307980 \N \N \N 1 \N [{"file_id": "092f6c48-b1dc-4260-a772-80081d09fba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adaf8265c7894271be66b0e1734bb91a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adaf8265c7894271be66b0e1734bb91a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adaf8265c7894271be66b0e1734bb91a.jpg", "file_size": 14521, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaf8265c7894271be66b0e1734bb91a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaf8265c7894271be66b0e1734bb91a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaf8265c7894271be66b0e1734bb91a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adaf8265c7894271be66b0e1734bb91a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adaf8265c7894271be66b0e1734bb91a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfCwE5Ycg_Xl-bFa599uV7OPjZo=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.10943+00 2025-12-09 10:15:18.109435+00 12784 C70花38#粉色LWQ15 SPMX-20240815307978 \N \N \N 1 \N [{"file_id": "31cd14ac-9f92-47ed-af5d-3dc7e1d8a796", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfccd51cf4fd4bf7ba618d0588f90f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfccd51cf4fd4bf7ba618d0588f90f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfccd51cf4fd4bf7ba618d0588f90f43.jpg", "file_size": 16191, "is_delete": false, "file_type": 1, "original_file_name": "C70花38#粉色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfccd51cf4fd4bf7ba618d0588f90f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfccd51cf4fd4bf7ba618d0588f90f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfccd51cf4fd4bf7ba618d0588f90f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfccd51cf4fd4bf7ba618d0588f90f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfccd51cf4fd4bf7ba618d0588f90f43.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fBiDdQLfCoCl10Cinpv0OAdNAW0=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.11142+00 2025-12-09 10:15:18.111424+00 12785 FM002#蓝绿 SPMX-20240815307982 \N \N \N 1 \N [{"file_id": "789713b9-7afa-4733-9c12-d1a2f445c645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ebd7c520f9b445d87d35c2d936b8ad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ebd7c520f9b445d87d35c2d936b8ad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ebd7c520f9b445d87d35c2d936b8ad3.jpg", "file_size": 16779, "is_delete": false, "file_type": 1, "original_file_name": "FM002#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd7c520f9b445d87d35c2d936b8ad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd7c520f9b445d87d35c2d936b8ad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd7c520f9b445d87d35c2d936b8ad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ebd7c520f9b445d87d35c2d936b8ad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ebd7c520f9b445d87d35c2d936b8ad3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bsKZs7vdGu1OTKu85HMhvZsZehA=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.113358+00 2025-12-09 10:15:18.113363+00 12786 0005-1#WJC22 SPMX-20240815307975 \N \N \N 1 \N [{"file_id": "68f1eded-3573-4ddc-b807-80084ebe060b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7aa5fa848c54e8f96f3570a8cf21d5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7aa5fa848c54e8f96f3570a8cf21d5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7aa5fa848c54e8f96f3570a8cf21d5b.jpg", "file_size": 17155, "is_delete": false, "file_type": 1, "original_file_name": "0005-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa5fa848c54e8f96f3570a8cf21d5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa5fa848c54e8f96f3570a8cf21d5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa5fa848c54e8f96f3570a8cf21d5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7aa5fa848c54e8f96f3570a8cf21d5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7aa5fa848c54e8f96f3570a8cf21d5b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAEg5SJKvdlHWRSYGh0zEVnJRM0=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.115316+00 2025-12-09 10:15:18.115321+00 12787 FM002#紫色 SPMX-20240815307970 \N \N \N 1 \N [{"file_id": "2bd859a0-8027-4a36-b6dc-b500e3369849", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67d61dfa33ba48acabd8a4927a33a9de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67d61dfa33ba48acabd8a4927a33a9de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67d61dfa33ba48acabd8a4927a33a9de.jpg", "file_size": 18499, "is_delete": false, "file_type": 1, "original_file_name": "FM002#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d61dfa33ba48acabd8a4927a33a9de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d61dfa33ba48acabd8a4927a33a9de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d61dfa33ba48acabd8a4927a33a9de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67d61dfa33ba48acabd8a4927a33a9de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67d61dfa33ba48acabd8a4927a33a9de.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lu55CBtpiwvFpG7VdnmpmEXQ5ok=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.126191+00 2025-12-09 10:15:18.126196+00 12792 1131#彩兰 SPMX-20240815307981 \N \N \N 1 \N [{"file_id": "4f195bf1-8879-4981-bab3-c6389c24ab56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92276ae0d8f044f5adf98e8b355fd6c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92276ae0d8f044f5adf98e8b355fd6c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92276ae0d8f044f5adf98e8b355fd6c3.jpg", "file_size": 26113, "is_delete": false, "file_type": 1, "original_file_name": "1131#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92276ae0d8f044f5adf98e8b355fd6c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92276ae0d8f044f5adf98e8b355fd6c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92276ae0d8f044f5adf98e8b355fd6c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92276ae0d8f044f5adf98e8b355fd6c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92276ae0d8f044f5adf98e8b355fd6c3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64GMmyklFWuIZHeoyqvGtEhdEHM=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.117268+00 2025-12-09 10:15:18.117273+00 12788 LZ1309#背心款2号色 SPMX-20240815307972 \N \N \N 1 \N [{"file_id": "2cb8dea5-e973-48f0-9522-6ef0a7a00b1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "287439a34de0496a98ff11584af74baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "287439a34de0496a98ff11584af74baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "287439a34de0496a98ff11584af74baa.jpg", "file_size": 19643, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287439a34de0496a98ff11584af74baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287439a34de0496a98ff11584af74baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287439a34de0496a98ff11584af74baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/287439a34de0496a98ff11584af74baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/287439a34de0496a98ff11584af74baa.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OA_cvuR-2HHbINar9grT9mvpWKE=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.119487+00 2025-12-09 10:15:18.119491+00 12789 81909#XL SPMX-20240815307976 \N \N \N 1 \N [{"file_id": "1c70af4f-bb5c-42e2-9bb3-a993e5420200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12784987aa1e4a6388db558e55abd88c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12784987aa1e4a6388db558e55abd88c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12784987aa1e4a6388db558e55abd88c.jpg", "file_size": 15208, "is_delete": false, "file_type": 1, "original_file_name": "81909#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12784987aa1e4a6388db558e55abd88c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12784987aa1e4a6388db558e55abd88c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12784987aa1e4a6388db558e55abd88c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12784987aa1e4a6388db558e55abd88c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12784987aa1e4a6388db558e55abd88c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Crz3VjKGihr4hWs-I01LPkdLZ0s=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.121467+00 2025-12-09 10:15:18.121472+00 12790 LJH1290-9#绿色 SPMX-20240815307979 \N \N \N 1 \N [{"file_id": "bedd48fd-8b2f-4c28-9164-61675a23dea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f4a87e50c546758afcb0d2179a48f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f4a87e50c546758afcb0d2179a48f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f4a87e50c546758afcb0d2179a48f3.jpg", "file_size": 36541, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290-9#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f4a87e50c546758afcb0d2179a48f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f4a87e50c546758afcb0d2179a48f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f4a87e50c546758afcb0d2179a48f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f4a87e50c546758afcb0d2179a48f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f4a87e50c546758afcb0d2179a48f3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhCGPPMXzFEP7jMCU_TxQvXhB0M=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.123872+00 2025-12-09 10:15:18.123877+00 12791 HT324FWE#前幅VS-D3 SPMX-20240815307974 \N \N \N 1 \N [{"file_id": "2f85f81e-261b-40c1-9090-39be5c74d15b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "771f7a8dace54c27adc1606694e996ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "771f7a8dace54c27adc1606694e996ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "771f7a8dace54c27adc1606694e996ab.jpg", "file_size": 14563, "is_delete": false, "file_type": 1, "original_file_name": "HT324FWE#前幅VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771f7a8dace54c27adc1606694e996ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771f7a8dace54c27adc1606694e996ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771f7a8dace54c27adc1606694e996ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/771f7a8dace54c27adc1606694e996ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/771f7a8dace54c27adc1606694e996ab.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wHXK5GVDayQQUtOoSE64SnRTMI=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.128342+00 2025-12-09 10:15:18.128347+00 12793 23-2120#A11-4XL SPMX-20240815307988 \N \N \N 1 \N [{"file_id": "90347157-0f1f-471a-925f-3f1e2614d02f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a856efb53c9443c783ad6a5eb0243fb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a856efb53c9443c783ad6a5eb0243fb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a856efb53c9443c783ad6a5eb0243fb2.jpg", "file_size": 19828, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a856efb53c9443c783ad6a5eb0243fb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a856efb53c9443c783ad6a5eb0243fb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a856efb53c9443c783ad6a5eb0243fb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a856efb53c9443c783ad6a5eb0243fb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a856efb53c9443c783ad6a5eb0243fb2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g2XCEbVQfyHaJ9f_54SzmTFgmWY=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.130461+00 2025-12-09 10:15:18.130465+00 12794 1131#枣红 SPMX-20240815307992 \N \N \N 1 \N [{"file_id": "a1635a13-1fe2-4b59-b5f9-e85c6b4c9795", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f12a6e92746d480fb3d63a9d80616df9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f12a6e92746d480fb3d63a9d80616df9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f12a6e92746d480fb3d63a9d80616df9.jpg", "file_size": 22464, "is_delete": false, "file_type": 1, "original_file_name": "1131#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a6e92746d480fb3d63a9d80616df9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a6e92746d480fb3d63a9d80616df9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a6e92746d480fb3d63a9d80616df9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f12a6e92746d480fb3d63a9d80616df9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f12a6e92746d480fb3d63a9d80616df9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEp99dTPqphaZhsY5Vlni5YyCRw=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.132328+00 2025-12-09 10:15:18.132332+00 12795 C70花38#黄色LWQ15 SPMX-20240815307996 \N \N \N 1 \N [{"file_id": "00672008-2bfc-480e-b8da-e4fcee012359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137c381aa8fa4a3fa11f0a66977ef26f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137c381aa8fa4a3fa11f0a66977ef26f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137c381aa8fa4a3fa11f0a66977ef26f.jpg", "file_size": 16853, "is_delete": false, "file_type": 1, "original_file_name": "C70花38#黄色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c381aa8fa4a3fa11f0a66977ef26f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c381aa8fa4a3fa11f0a66977ef26f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c381aa8fa4a3fa11f0a66977ef26f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137c381aa8fa4a3fa11f0a66977ef26f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137c381aa8fa4a3fa11f0a66977ef26f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0x-N7ZSdK63WYQjYCrBbKR6EDo=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.134409+00 2025-12-09 10:15:18.134413+00 12796 LZ1309#背心款4号色 SPMX-20240815307993 \N \N \N 1 \N [{"file_id": "5c674545-c1fe-4f09-b6ec-3fec17cc9164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53d47eca76cb4aae85d85dcf5d87e141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53d47eca76cb4aae85d85dcf5d87e141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53d47eca76cb4aae85d85dcf5d87e141.jpg", "file_size": 20235, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53d47eca76cb4aae85d85dcf5d87e141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53d47eca76cb4aae85d85dcf5d87e141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53d47eca76cb4aae85d85dcf5d87e141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53d47eca76cb4aae85d85dcf5d87e141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53d47eca76cb4aae85d85dcf5d87e141.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbCf_7WaOIoNauyq63OG2QCSuIQ=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.136275+00 2025-12-09 10:15:18.136279+00 12797 FM002#蓝色 SPMX-20240815307994 \N \N \N 1 \N [{"file_id": "e8ecffa5-0a04-4e58-b8ca-2351a5caa91a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "241e040b803142a9a9ad7270b8689a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "241e040b803142a9a9ad7270b8689a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "241e040b803142a9a9ad7270b8689a56.jpg", "file_size": 19040, "is_delete": false, "file_type": 1, "original_file_name": "FM002#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241e040b803142a9a9ad7270b8689a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241e040b803142a9a9ad7270b8689a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241e040b803142a9a9ad7270b8689a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/241e040b803142a9a9ad7270b8689a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/241e040b803142a9a9ad7270b8689a56.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZnxyr_wyoidDh_uIYJE5xIodME=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.138373+00 2025-12-09 10:15:18.138377+00 12798 LJH1290-9#蓝色 SPMX-20240815307991 \N \N \N 1 \N [{"file_id": "0666d45a-a1f5-4a73-8849-6c02f07b9e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f912868ebfbf4974a873e7b8e436284c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f912868ebfbf4974a873e7b8e436284c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f912868ebfbf4974a873e7b8e436284c.jpg", "file_size": 39629, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290-9#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f912868ebfbf4974a873e7b8e436284c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f912868ebfbf4974a873e7b8e436284c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f912868ebfbf4974a873e7b8e436284c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f912868ebfbf4974a873e7b8e436284c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f912868ebfbf4974a873e7b8e436284c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiefjI3JI0afLZnWCblfitZ3N4I=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.140458+00 2025-12-09 10:15:18.140462+00 12799 JTSS394FW#VS-D3 SPMX-20240815307985 \N \N \N 1 \N [{"file_id": "a77b1b58-d6cc-42a7-a35e-e36e432c58c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfecac15f38f4d94a6d580280a0e5e57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfecac15f38f4d94a6d580280a0e5e57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfecac15f38f4d94a6d580280a0e5e57.jpg", "file_size": 12670, "is_delete": false, "file_type": 1, "original_file_name": "JTSS394FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfecac15f38f4d94a6d580280a0e5e57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfecac15f38f4d94a6d580280a0e5e57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfecac15f38f4d94a6d580280a0e5e57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfecac15f38f4d94a6d580280a0e5e57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfecac15f38f4d94a6d580280a0e5e57.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q36FjVSE1Dh30LC23GS07yzmpxI=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.1423+00 2025-12-09 10:15:18.142304+00 12800 0005-10#灰白 SPMX-20240815307989 \N \N \N 1 \N [{"file_id": "fed1bbe4-c261-4411-9c73-bd4a5c709162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0f02ebb6d54473eb1cf7026354fba52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0f02ebb6d54473eb1cf7026354fba52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0f02ebb6d54473eb1cf7026354fba52.jpg", "file_size": 6279, "is_delete": false, "file_type": 1, "original_file_name": "0005-10#灰白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f02ebb6d54473eb1cf7026354fba52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f02ebb6d54473eb1cf7026354fba52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f02ebb6d54473eb1cf7026354fba52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0f02ebb6d54473eb1cf7026354fba52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0f02ebb6d54473eb1cf7026354fba52.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5sp-I_uAbIgQd0x35MFnMIw83k=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.144389+00 2025-12-09 10:15:18.144393+00 12801 JTSS395FW#VS-D3 SPMX-20240815307995 \N \N \N 1 \N [{"file_id": "2a130f3d-d6ed-45f0-a262-1b798e408c62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc04999c3e7d4019b56e7f68bb14d201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc04999c3e7d4019b56e7f68bb14d201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc04999c3e7d4019b56e7f68bb14d201.jpg", "file_size": 14528, "is_delete": false, "file_type": 1, "original_file_name": "JTSS395FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc04999c3e7d4019b56e7f68bb14d201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc04999c3e7d4019b56e7f68bb14d201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc04999c3e7d4019b56e7f68bb14d201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc04999c3e7d4019b56e7f68bb14d201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc04999c3e7d4019b56e7f68bb14d201.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:859VbZ4IiFpxeVM2t1kYhGk4-5o=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.146466+00 2025-12-09 10:15:18.14647+00 12802 LZ1309#背心款3号色 SPMX-20240815307983 \N \N \N 1 \N [{"file_id": "f369e124-f117-4ad7-b114-9b7d0df0757f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8048e92ea3034e62a72b8e7aee5775b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8048e92ea3034e62a72b8e7aee5775b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8048e92ea3034e62a72b8e7aee5775b6.jpg", "file_size": 18934, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048e92ea3034e62a72b8e7aee5775b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048e92ea3034e62a72b8e7aee5775b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8048e92ea3034e62a72b8e7aee5775b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8048e92ea3034e62a72b8e7aee5775b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8048e92ea3034e62a72b8e7aee5775b6.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8chtMcLId9ud4qv04-MREpnTeM=", "createTime": "2024-08-15 14:54:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.148552+00 2025-12-09 10:15:18.148557+00 12803 81909#领子袖口门筒 SPMX-20240815307987 \N \N \N 1 \N [{"file_id": "03349311-6d38-449c-99d4-2c64d42df9f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "015f419dfe924534965b18b6f03c9a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "015f419dfe924534965b18b6f03c9a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "015f419dfe924534965b18b6f03c9a56.jpg", "file_size": 15584, "is_delete": false, "file_type": 1, "original_file_name": "81909#领子袖口门筒.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015f419dfe924534965b18b6f03c9a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015f419dfe924534965b18b6f03c9a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015f419dfe924534965b18b6f03c9a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/015f419dfe924534965b18b6f03c9a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/015f419dfe924534965b18b6f03c9a56.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RovKBoL7vtgrTBWTinqisTXK6I=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.150428+00 2025-12-09 10:15:18.150432+00 12804 DL31070#定位浅粉 SPMX-20240815307990 \N \N \N 1 \N [{"file_id": "ee9a192e-9a0f-4668-b92c-0ece1cc132ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "089950537704487eb0ca1d6f8f3ff20f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "089950537704487eb0ca1d6f8f3ff20f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "089950537704487eb0ca1d6f8f3ff20f.jpg", "file_size": 12960, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089950537704487eb0ca1d6f8f3ff20f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089950537704487eb0ca1d6f8f3ff20f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089950537704487eb0ca1d6f8f3ff20f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/089950537704487eb0ca1d6f8f3ff20f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/089950537704487eb0ca1d6f8f3ff20f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVhO7rK4mNhKcJzdOZACodoH8Yg=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.152516+00 2025-12-09 10:15:18.152521+00 12805 HT324FWE#后幅VS-D3 SPMX-20240815307984 \N \N \N 1 \N [{"file_id": "564cec26-2f64-4bd6-863e-4a0f18b81993", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f6c3118498145e7a8b163555af32579.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f6c3118498145e7a8b163555af32579.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f6c3118498145e7a8b163555af32579.jpg", "file_size": 9660, "is_delete": false, "file_type": 1, "original_file_name": "HT324FWE#后幅VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6c3118498145e7a8b163555af32579.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6c3118498145e7a8b163555af32579.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f6c3118498145e7a8b163555af32579.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f6c3118498145e7a8b163555af32579.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f6c3118498145e7a8b163555af32579.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d62Nj1hq8iBCdW8aulonlkNcIik=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.154594+00 2025-12-09 10:15:18.154598+00 12806 C70花38#蓝色LWQ15 SPMX-20240815307986 \N \N \N 1 \N [{"file_id": "94aa4deb-cd9b-44b2-b5e0-df224f1c8da1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1949193ddb94fe49d904cab76fbbf0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1949193ddb94fe49d904cab76fbbf0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1949193ddb94fe49d904cab76fbbf0d.jpg", "file_size": 16670, "is_delete": false, "file_type": 1, "original_file_name": "C70花38#蓝色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1949193ddb94fe49d904cab76fbbf0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1949193ddb94fe49d904cab76fbbf0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1949193ddb94fe49d904cab76fbbf0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1949193ddb94fe49d904cab76fbbf0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1949193ddb94fe49d904cab76fbbf0d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PtlLdh1UD2xj4ZASNSLQ-RcEFoQ=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.156647+00 2025-12-09 10:15:18.156652+00 12807 HT3328#兰色 SPMX-20240815307999 \N \N \N 1 \N [{"file_id": "b377774e-e5bb-4339-ac66-34aa603aa664", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "211e3dde6add4921aec220a25f6297ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "211e3dde6add4921aec220a25f6297ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "211e3dde6add4921aec220a25f6297ee.jpg", "file_size": 69990, "is_delete": false, "file_type": 1, "original_file_name": "HT3328#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211e3dde6add4921aec220a25f6297ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211e3dde6add4921aec220a25f6297ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/211e3dde6add4921aec220a25f6297ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/211e3dde6add4921aec220a25f6297ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/211e3dde6add4921aec220a25f6297ee.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xlT5eaCMnvjPntE65jARIZ3Kmn4=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.158531+00 2025-12-09 10:15:18.158536+00 12808 JTSS396FW#VS-D3 SPMX-20240815308007 \N \N \N 1 \N [{"file_id": "b4ebe166-b41c-401d-9b9a-aff6e6b60182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3249fdcedfb49df9b4eb4d436e29b50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3249fdcedfb49df9b4eb4d436e29b50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3249fdcedfb49df9b4eb4d436e29b50.jpg", "file_size": 17111, "is_delete": false, "file_type": 1, "original_file_name": "JTSS396FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3249fdcedfb49df9b4eb4d436e29b50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3249fdcedfb49df9b4eb4d436e29b50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3249fdcedfb49df9b4eb4d436e29b50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3249fdcedfb49df9b4eb4d436e29b50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3249fdcedfb49df9b4eb4d436e29b50.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0lCg1KEkVFnDszJlq-yaw9J2aE=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.160646+00 2025-12-09 10:15:18.160651+00 12809 0005-10#粉黄 SPMX-20240815307998 \N \N \N 1 \N [{"file_id": "7698e43a-08db-4830-b051-d6885dab6170", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef2f64bd0e6c40c2989d6534c26b2872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef2f64bd0e6c40c2989d6534c26b2872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef2f64bd0e6c40c2989d6534c26b2872.jpg", "file_size": 6461, "is_delete": false, "file_type": 1, "original_file_name": "0005-10#粉黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2f64bd0e6c40c2989d6534c26b2872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2f64bd0e6c40c2989d6534c26b2872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2f64bd0e6c40c2989d6534c26b2872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef2f64bd0e6c40c2989d6534c26b2872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef2f64bd0e6c40c2989d6534c26b2872.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wmc-8MSQG599g1FfT3gY1hwa8Zs=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.162519+00 2025-12-09 10:15:18.162524+00 12810 FM002#金黄 SPMX-20240815308004 \N \N \N 1 \N [{"file_id": "d36c6cdd-2174-4854-86ce-3faa386aa31e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fe2ed6c1d274e318b8babe772b76673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fe2ed6c1d274e318b8babe772b76673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fe2ed6c1d274e318b8babe772b76673.jpg", "file_size": 16180, "is_delete": false, "file_type": 1, "original_file_name": "FM002#金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe2ed6c1d274e318b8babe772b76673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe2ed6c1d274e318b8babe772b76673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe2ed6c1d274e318b8babe772b76673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fe2ed6c1d274e318b8babe772b76673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fe2ed6c1d274e318b8babe772b76673.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZH05icWU_GGolOwRyyO5QLAqVs=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.164633+00 2025-12-09 10:15:18.164638+00 12811 23-2120#A11-领子3XL SPMX-20240815307997 \N \N \N 1 \N [{"file_id": "52b3a32e-390d-43ea-af48-3fe6b345ab06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6999fe17df77479ba5f461a0d2b22685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6999fe17df77479ba5f461a0d2b22685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6999fe17df77479ba5f461a0d2b22685.jpg", "file_size": 11712, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6999fe17df77479ba5f461a0d2b22685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6999fe17df77479ba5f461a0d2b22685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6999fe17df77479ba5f461a0d2b22685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6999fe17df77479ba5f461a0d2b22685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6999fe17df77479ba5f461a0d2b22685.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fjn0q7Kjbo9H53BqFfpPlZXGWwM=", "createTime": "2024-08-15 14:54:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.166509+00 2025-12-09 10:15:18.166513+00 12812 LZ1309#背心款5号色 SPMX-20240815308005 \N \N \N 1 \N [{"file_id": "14f02db4-51d9-443f-9261-5c17bd652e9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87f2d47bce1c40e38074af5a9b889ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87f2d47bce1c40e38074af5a9b889ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87f2d47bce1c40e38074af5a9b889ce7.jpg", "file_size": 19598, "is_delete": false, "file_type": 1, "original_file_name": "LZ1309#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f2d47bce1c40e38074af5a9b889ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f2d47bce1c40e38074af5a9b889ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f2d47bce1c40e38074af5a9b889ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87f2d47bce1c40e38074af5a9b889ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87f2d47bce1c40e38074af5a9b889ce7.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arxPqmsvYNF2pVNlhCoqUS2plrE=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.168605+00 2025-12-09 10:15:18.168609+00 12813 1131#湖绿 SPMX-20240815308003 \N \N \N 1 \N [{"file_id": "b060261f-6f8a-42d5-a218-72b42e8fd69a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84787292c04e40eb8ab07fff7670db94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84787292c04e40eb8ab07fff7670db94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84787292c04e40eb8ab07fff7670db94.jpg", "file_size": 24114, "is_delete": false, "file_type": 1, "original_file_name": "1131#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84787292c04e40eb8ab07fff7670db94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84787292c04e40eb8ab07fff7670db94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84787292c04e40eb8ab07fff7670db94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84787292c04e40eb8ab07fff7670db94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84787292c04e40eb8ab07fff7670db94.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GpLS0ZYQfIeANK6utx9XtMWiTm8=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.170833+00 2025-12-09 10:15:18.170839+00 12814 DL31070#定位玫红 SPMX-20240815308000 \N \N \N 1 \N [{"file_id": "4a6f00bd-98af-4345-9e7e-edac6d9c08bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3f42f31e2654562a5c055d6ac1da3e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3f42f31e2654562a5c055d6ac1da3e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3f42f31e2654562a5c055d6ac1da3e8.jpg", "file_size": 14025, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f42f31e2654562a5c055d6ac1da3e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f42f31e2654562a5c055d6ac1da3e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f42f31e2654562a5c055d6ac1da3e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3f42f31e2654562a5c055d6ac1da3e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3f42f31e2654562a5c055d6ac1da3e8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKrTQnCBNrYyzuAn7O9kXzdOaBQ=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.173042+00 2025-12-09 10:15:18.173048+00 12815 8199#A1 SPMX-20240815308001 \N \N \N 1 \N [{"file_id": "64a7e0ee-6505-4ac2-a190-948ab364254b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e2dedc8d3f34d33938d4e368a3ade10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e2dedc8d3f34d33938d4e368a3ade10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e2dedc8d3f34d33938d4e368a3ade10.jpg", "file_size": 16421, "is_delete": false, "file_type": 1, "original_file_name": "8199#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2dedc8d3f34d33938d4e368a3ade10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2dedc8d3f34d33938d4e368a3ade10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2dedc8d3f34d33938d4e368a3ade10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e2dedc8d3f34d33938d4e368a3ade10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e2dedc8d3f34d33938d4e368a3ade10.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5r0O1zbjxvHIn4C0NNru0bmRdbE=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.175195+00 2025-12-09 10:15:18.175201+00 12816 LJH1290-9#黑色 SPMX-20240815308002 \N \N \N 1 \N [{"file_id": "b87faa03-1a52-4251-b4d1-30d0be270efc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fb429d18ca54972a5707247776093a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fb429d18ca54972a5707247776093a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fb429d18ca54972a5707247776093a2.jpg", "file_size": 44555, "is_delete": false, "file_type": 1, "original_file_name": "LJH1290-9#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb429d18ca54972a5707247776093a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb429d18ca54972a5707247776093a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb429d18ca54972a5707247776093a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fb429d18ca54972a5707247776093a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fb429d18ca54972a5707247776093a2.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IhHg4n09MulmyRODZdqctfNbrDQ=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.177595+00 2025-12-09 10:15:18.177601+00 12817 C70花38#黑色LWQ15 SPMX-20240815308006 \N \N \N 1 \N [{"file_id": "0cbc3288-58fe-4068-a4f7-9d0977525176", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24b7941e3cea4af59b741b6ab5198302.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24b7941e3cea4af59b741b6ab5198302.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24b7941e3cea4af59b741b6ab5198302.jpg", "file_size": 17466, "is_delete": false, "file_type": 1, "original_file_name": "C70花38#黑色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b7941e3cea4af59b741b6ab5198302.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b7941e3cea4af59b741b6ab5198302.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24b7941e3cea4af59b741b6ab5198302.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24b7941e3cea4af59b741b6ab5198302.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24b7941e3cea4af59b741b6ab5198302.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PG_PCd_KfpdQpNtXx9IadkEIhos=", "createTime": "2024-08-15 14:54:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.179957+00 2025-12-09 10:15:18.179963+00 12818 LJH1298-2#玫红色 SPMX-20240815308008 \N \N \N 1 \N [{"file_id": "d5260670-5991-417b-97b1-f96874769ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec2b66c2ac234ea0a3cbb889b3354c4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec2b66c2ac234ea0a3cbb889b3354c4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec2b66c2ac234ea0a3cbb889b3354c4c.jpg", "file_size": 58976, "is_delete": false, "file_type": 1, "original_file_name": "LJH1298-2#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2b66c2ac234ea0a3cbb889b3354c4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2b66c2ac234ea0a3cbb889b3354c4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2b66c2ac234ea0a3cbb889b3354c4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec2b66c2ac234ea0a3cbb889b3354c4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec2b66c2ac234ea0a3cbb889b3354c4c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6dTKxBMUD9q1DNjNUeyGqXRNnU=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.182091+00 2025-12-09 10:15:18.182097+00 12819 JTSS397FW#VS-D3 SPMX-20240815308011 \N \N \N 1 \N [{"file_id": "31264e7f-987b-400e-b76b-1265ad150d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bf152450da34169b33d222f5541e180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bf152450da34169b33d222f5541e180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bf152450da34169b33d222f5541e180.jpg", "file_size": 9620, "is_delete": false, "file_type": 1, "original_file_name": "JTSS397FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf152450da34169b33d222f5541e180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf152450da34169b33d222f5541e180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf152450da34169b33d222f5541e180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bf152450da34169b33d222f5541e180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bf152450da34169b33d222f5541e180.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KX4cCFCDBz3kzz2I1WDPPnpNl18=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.184367+00 2025-12-09 10:15:18.184372+00 12820 8199#A2 SPMX-20240815308009 \N \N \N 1 \N [{"file_id": "ac7e0a57-c857-47e5-8504-9b71b03e9730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f4078b19fac424b9a30f367072d578f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f4078b19fac424b9a30f367072d578f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f4078b19fac424b9a30f367072d578f.jpg", "file_size": 17164, "is_delete": false, "file_type": 1, "original_file_name": "8199#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4078b19fac424b9a30f367072d578f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4078b19fac424b9a30f367072d578f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4078b19fac424b9a30f367072d578f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f4078b19fac424b9a30f367072d578f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f4078b19fac424b9a30f367072d578f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wf8qqRSksCMlj-5-0gjn_mfBQF8=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.186552+00 2025-12-09 10:15:18.186557+00 12821 DL31070#定位蓝绿 SPMX-20240815308012 \N \N \N 1 \N [{"file_id": "2f176296-e189-48db-b87a-ec575d90cd92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9bcbc403bd24d35a6024de755d0480c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9bcbc403bd24d35a6024de755d0480c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9bcbc403bd24d35a6024de755d0480c.jpg", "file_size": 13968, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#定位蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bcbc403bd24d35a6024de755d0480c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bcbc403bd24d35a6024de755d0480c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bcbc403bd24d35a6024de755d0480c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9bcbc403bd24d35a6024de755d0480c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9bcbc403bd24d35a6024de755d0480c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cv-q77yRy8EOkWkcVFSToDvZJO8=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.188711+00 2025-12-09 10:15:18.188716+00 12822 HT3328#原版色 SPMX-20240815308014 \N \N \N 1 \N [{"file_id": "d5d4aedc-0b9b-4640-90b9-b6dfda073371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d65c3c9ea8ac41fab1a31b9305e3427c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d65c3c9ea8ac41fab1a31b9305e3427c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d65c3c9ea8ac41fab1a31b9305e3427c.jpg", "file_size": 66192, "is_delete": false, "file_type": 1, "original_file_name": "HT3328#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c3c9ea8ac41fab1a31b9305e3427c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c3c9ea8ac41fab1a31b9305e3427c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65c3c9ea8ac41fab1a31b9305e3427c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d65c3c9ea8ac41fab1a31b9305e3427c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d65c3c9ea8ac41fab1a31b9305e3427c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7860QuUtubRJoHZ97UuKsluSCak=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.190863+00 2025-12-09 10:15:18.190867+00 12823 1131#粉 SPMX-20240815308013 \N \N \N 1 \N [{"file_id": "f4ba98d6-da09-4f48-b98a-33fc3f82a1d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66bad081efc54cfa8e9579948298ad40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66bad081efc54cfa8e9579948298ad40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66bad081efc54cfa8e9579948298ad40.jpg", "file_size": 22898, "is_delete": false, "file_type": 1, "original_file_name": "1131#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bad081efc54cfa8e9579948298ad40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bad081efc54cfa8e9579948298ad40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bad081efc54cfa8e9579948298ad40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66bad081efc54cfa8e9579948298ad40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66bad081efc54cfa8e9579948298ad40.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEW0axSCjwLC1NyqW1DrIS0pkC8=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.192762+00 2025-12-09 10:15:18.192767+00 12824 23-2120#A11-领子4XL SPMX-20240815308010 \N \N \N 1 \N [{"file_id": "7e4d2944-ab72-4dc8-864f-21d697c59d1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db4be61e27484409aec8a81546722de0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db4be61e27484409aec8a81546722de0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db4be61e27484409aec8a81546722de0.jpg", "file_size": 11574, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4be61e27484409aec8a81546722de0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4be61e27484409aec8a81546722de0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db4be61e27484409aec8a81546722de0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db4be61e27484409aec8a81546722de0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db4be61e27484409aec8a81546722de0.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E16wkuP-lTC6cUNi_C5WjJ2Spyg=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.194933+00 2025-12-09 10:15:18.194937+00 12825 23-2120#A12-3XL SPMX-20240815308021 \N \N \N 1 \N [{"file_id": "1c4656da-e668-483c-b38c-f4a27207253e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg", "file_size": 17960, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4abd0abcd5c84340ab6e6a38ef4f9ee8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzDns1XbYltu8QCLe9bnyWf3vNs=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.196843+00 2025-12-09 10:15:18.196848+00 12826 8199#A3 SPMX-20240815308019 \N \N \N 1 \N [{"file_id": "d7e5ad85-cfc9-4476-8587-a80ae8769e9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c86645dda3b49199c5ab05e8d1444b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c86645dda3b49199c5ab05e8d1444b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c86645dda3b49199c5ab05e8d1444b4.jpg", "file_size": 16383, "is_delete": false, "file_type": 1, "original_file_name": "8199#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c86645dda3b49199c5ab05e8d1444b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c86645dda3b49199c5ab05e8d1444b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c86645dda3b49199c5ab05e8d1444b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c86645dda3b49199c5ab05e8d1444b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c86645dda3b49199c5ab05e8d1444b4.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7s7npV9sIufSE0JzLvI3CtiCufc=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.198949+00 2025-12-09 10:15:18.198954+00 12827 DL31070#批布亮黄 SPMX-20240815308022 \N \N \N 1 \N [{"file_id": "176f0b1b-0f50-4220-9420-0ad42fc6c7d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f055db6e6524dde919de61e07025444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f055db6e6524dde919de61e07025444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f055db6e6524dde919de61e07025444.jpg", "file_size": 20510, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f055db6e6524dde919de61e07025444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f055db6e6524dde919de61e07025444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f055db6e6524dde919de61e07025444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f055db6e6524dde919de61e07025444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f055db6e6524dde919de61e07025444.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AmShHa9gZcPwNRAh90kPx0C7uzQ=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.200871+00 2025-12-09 10:15:18.200876+00 12828 FM003#原版色 SPMX-20240815308016 \N \N \N 1 \N [{"file_id": "e998e78e-9910-4eee-9072-aa181f0214b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dce320ad75e74f7d82f66a00238da624.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dce320ad75e74f7d82f66a00238da624.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dce320ad75e74f7d82f66a00238da624.jpg", "file_size": 18575, "is_delete": false, "file_type": 1, "original_file_name": "FM003#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce320ad75e74f7d82f66a00238da624.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce320ad75e74f7d82f66a00238da624.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce320ad75e74f7d82f66a00238da624.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dce320ad75e74f7d82f66a00238da624.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dce320ad75e74f7d82f66a00238da624.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0zl6QlkJgivTfeAOmeVLCnDKxE=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.20305+00 2025-12-09 10:15:18.203055+00 12829 C730FWF#前后幅袖子L SPMX-20240815308018 \N \N \N 1 \N [{"file_id": "00ab35d1-a6ba-433d-b257-1bb6136e357e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cec814640664125b82662deb2841221.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cec814640664125b82662deb2841221.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cec814640664125b82662deb2841221.jpg", "file_size": 19379, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#前后幅袖子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cec814640664125b82662deb2841221.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cec814640664125b82662deb2841221.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cec814640664125b82662deb2841221.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cec814640664125b82662deb2841221.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cec814640664125b82662deb2841221.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izpPyTpgiqk74GNS_Lh_LyM-WeY=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.204954+00 2025-12-09 10:15:18.204959+00 12830 JTSS398FW#VS-D3 SPMX-20240815308024 \N \N \N 1 \N [{"file_id": "cbea4831-28df-47a1-87a9-043e55afdca3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc0dc569575e4d80b08def613e7140e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc0dc569575e4d80b08def613e7140e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc0dc569575e4d80b08def613e7140e5.jpg", "file_size": 13031, "is_delete": false, "file_type": 1, "original_file_name": "JTSS398FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc0dc569575e4d80b08def613e7140e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc0dc569575e4d80b08def613e7140e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc0dc569575e4d80b08def613e7140e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc0dc569575e4d80b08def613e7140e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc0dc569575e4d80b08def613e7140e5.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvMPJXF1Zu98zlzx7DV744ikpc0=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.206843+00 2025-12-09 10:15:18.206848+00 12831 LZ130FWF#1号色短袖 SPMX-20240815308015 \N \N \N 1 \N [{"file_id": "2ccc9026-79a6-4c22-ad1c-167c5fc07341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "938e16080c2449189fccf8b514a0cd12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "938e16080c2449189fccf8b514a0cd12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "938e16080c2449189fccf8b514a0cd12.jpg", "file_size": 18802, "is_delete": false, "file_type": 1, "original_file_name": "LZ130FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938e16080c2449189fccf8b514a0cd12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938e16080c2449189fccf8b514a0cd12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938e16080c2449189fccf8b514a0cd12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/938e16080c2449189fccf8b514a0cd12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/938e16080c2449189fccf8b514a0cd12.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Yr1wfGuZgAig6X1l5l-w_f3QSU=", "createTime": "2024-08-15 14:54:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.208969+00 2025-12-09 10:15:18.208973+00 12832 C730FWF#前后幅袖子M SPMX-20240815308028 \N \N \N 1 \N [{"file_id": "f1e154ef-3e75-46ea-af6e-a65fec423676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9fe0b65733643ea836bd7f3e8b15669.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9fe0b65733643ea836bd7f3e8b15669.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9fe0b65733643ea836bd7f3e8b15669.jpg", "file_size": 20761, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#前后幅袖子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0b65733643ea836bd7f3e8b15669.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0b65733643ea836bd7f3e8b15669.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0b65733643ea836bd7f3e8b15669.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0b65733643ea836bd7f3e8b15669.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0b65733643ea836bd7f3e8b15669.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-EgBqtbyl775tFmD4U0Y3POarY=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.211096+00 2025-12-09 10:15:18.211101+00 12833 0005-10FWF#杏色 SPMX-20240815308025 \N \N \N 1 \N [{"file_id": "0324d46c-ce5b-4b30-b2c6-ac0217c2a7cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7440586b0c3d491ea5b7813aa68596b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7440586b0c3d491ea5b7813aa68596b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7440586b0c3d491ea5b7813aa68596b9.jpg", "file_size": 15820, "is_delete": false, "file_type": 1, "original_file_name": "0005-10FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7440586b0c3d491ea5b7813aa68596b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7440586b0c3d491ea5b7813aa68596b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7440586b0c3d491ea5b7813aa68596b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7440586b0c3d491ea5b7813aa68596b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7440586b0c3d491ea5b7813aa68596b9.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdsyTNzwKdwIrPqZy_IX8iDVOJg=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.213005+00 2025-12-09 10:15:18.21301+00 12834 1131#藏青 SPMX-20240815308020 \N \N \N 1 \N [{"file_id": "d87e0b62-10ce-4c98-9682-727592f4a7f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a6a311fae6f4ba0878569e3a1a42c1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a6a311fae6f4ba0878569e3a1a42c1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a6a311fae6f4ba0878569e3a1a42c1b.jpg", "file_size": 26707, "is_delete": false, "file_type": 1, "original_file_name": "1131#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a6a311fae6f4ba0878569e3a1a42c1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a6a311fae6f4ba0878569e3a1a42c1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a6a311fae6f4ba0878569e3a1a42c1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a6a311fae6f4ba0878569e3a1a42c1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a6a311fae6f4ba0878569e3a1a42c1b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKXZR_wc0Ar-aDzJ7mAWy6Dc7Bg=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.214882+00 2025-12-09 10:15:18.214886+00 12835 HT3328#绿红色 SPMX-20240815308026 \N \N \N 1 \N [{"file_id": "69975e4d-bf84-4de6-9a78-36f03b7d7bc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19fac33bac30400c86318d050fc3d0c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19fac33bac30400c86318d050fc3d0c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19fac33bac30400c86318d050fc3d0c8.jpg", "file_size": 68439, "is_delete": false, "file_type": 1, "original_file_name": "HT3328#绿红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fac33bac30400c86318d050fc3d0c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fac33bac30400c86318d050fc3d0c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fac33bac30400c86318d050fc3d0c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19fac33bac30400c86318d050fc3d0c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19fac33bac30400c86318d050fc3d0c8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VzKxSvSmei5euScz4bPgPbcV_k=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.217003+00 2025-12-09 10:15:18.217007+00 12836 LZ130FWF#2号色短袖 SPMX-20240815308027 \N \N \N 1 \N [{"file_id": "7ff068da-0f21-4dc2-b78c-cffb3b33102f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2200446cad784b688a56c60727d9149a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2200446cad784b688a56c60727d9149a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2200446cad784b688a56c60727d9149a.jpg", "file_size": 19196, "is_delete": false, "file_type": 1, "original_file_name": "LZ130FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2200446cad784b688a56c60727d9149a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2200446cad784b688a56c60727d9149a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2200446cad784b688a56c60727d9149a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2200446cad784b688a56c60727d9149a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2200446cad784b688a56c60727d9149a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1n8cnMpPyl3QenrfIDI-G0zmt6g=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.219144+00 2025-12-09 10:15:18.219149+00 12837 FM003#绿色 SPMX-20240815308029 \N \N \N 1 \N [{"file_id": "6bf82b54-cd91-4523-ab2e-b30415fc07c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3588f9513449b78d7c54cfc917f5d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3588f9513449b78d7c54cfc917f5d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3588f9513449b78d7c54cfc917f5d3.jpg", "file_size": 19541, "is_delete": false, "file_type": 1, "original_file_name": "FM003#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3588f9513449b78d7c54cfc917f5d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3588f9513449b78d7c54cfc917f5d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3588f9513449b78d7c54cfc917f5d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3588f9513449b78d7c54cfc917f5d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3588f9513449b78d7c54cfc917f5d3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLo70_N4Q2zlB9_ToddsU5hw-7E=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.221058+00 2025-12-09 10:15:18.221062+00 12838 0005-10#蓝红 SPMX-20240815308017 \N \N \N 1 \N [{"file_id": "0c8388d4-ea45-4c08-9394-6a4648b09f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cab4fc81dd334dfea1057a808fef98af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cab4fc81dd334dfea1057a808fef98af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cab4fc81dd334dfea1057a808fef98af.jpg", "file_size": 6980, "is_delete": false, "file_type": 1, "original_file_name": "0005-10#蓝红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab4fc81dd334dfea1057a808fef98af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab4fc81dd334dfea1057a808fef98af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab4fc81dd334dfea1057a808fef98af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cab4fc81dd334dfea1057a808fef98af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cab4fc81dd334dfea1057a808fef98af.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aD1ML8HQD_azXWM8Ovv3K9KlXYo=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.22318+00 2025-12-09 10:15:18.223184+00 12839 LJH1298-2#蓝色 SPMX-20240815308023 \N \N \N 1 \N [{"file_id": "04b7a38b-f203-4aef-9850-3aba6219f9b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a68318294524177b3f1b088225c0aca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a68318294524177b3f1b088225c0aca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a68318294524177b3f1b088225c0aca.jpg", "file_size": 61892, "is_delete": false, "file_type": 1, "original_file_name": "LJH1298-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a68318294524177b3f1b088225c0aca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a68318294524177b3f1b088225c0aca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a68318294524177b3f1b088225c0aca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a68318294524177b3f1b088225c0aca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a68318294524177b3f1b088225c0aca.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyPP7sfdxRf9hmIzBdP1ue70HG0=", "createTime": "2024-08-15 14:54:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.22505+00 2025-12-09 10:15:18.225054+00 12840 0005-10FWF#杏色番禺调色 SPMX-20240815308036 \N \N \N 1 \N [{"file_id": "31359e3a-10e8-41bc-af6a-417eb204a2a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd84530fb06f4dd6a08eb588f46ca86a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd84530fb06f4dd6a08eb588f46ca86a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd84530fb06f4dd6a08eb588f46ca86a.jpg", "file_size": 16678, "is_delete": false, "file_type": 1, "original_file_name": "0005-10FWF#杏色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd84530fb06f4dd6a08eb588f46ca86a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd84530fb06f4dd6a08eb588f46ca86a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd84530fb06f4dd6a08eb588f46ca86a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd84530fb06f4dd6a08eb588f46ca86a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd84530fb06f4dd6a08eb588f46ca86a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03JyagSjVpdZPD4ICoPJN6MV6is=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.227264+00 2025-12-09 10:15:18.227268+00 12841 8199#A4 SPMX-20240815308030 \N \N \N 1 \N [{"file_id": "29d0d1f5-1c8d-4313-9e08-7d4b41e90438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "885b36671716497586762919df2b49d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "885b36671716497586762919df2b49d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "885b36671716497586762919df2b49d8.jpg", "file_size": 17264, "is_delete": false, "file_type": 1, "original_file_name": "8199#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885b36671716497586762919df2b49d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885b36671716497586762919df2b49d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885b36671716497586762919df2b49d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/885b36671716497586762919df2b49d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/885b36671716497586762919df2b49d8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HP4g9rvm3qVqOg2BeBc639qECBU=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.229396+00 2025-12-09 10:15:18.229401+00 12842 FM003#蓝色 SPMX-20240815308040 \N \N \N 1 \N [{"file_id": "cb1b9054-172b-4745-a915-3be2319a066c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf5a976703cd47f29b42a8ed53ae1da4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf5a976703cd47f29b42a8ed53ae1da4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf5a976703cd47f29b42a8ed53ae1da4.jpg", "file_size": 21378, "is_delete": false, "file_type": 1, "original_file_name": "FM003#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5a976703cd47f29b42a8ed53ae1da4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5a976703cd47f29b42a8ed53ae1da4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf5a976703cd47f29b42a8ed53ae1da4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf5a976703cd47f29b42a8ed53ae1da4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf5a976703cd47f29b42a8ed53ae1da4.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9UVyJaMLoJkGFjDdkHgCrv2eX4=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.231534+00 2025-12-09 10:15:18.231539+00 12843 1132#红色 SPMX-20240815308043 \N \N \N 1 \N [{"file_id": "14a5258b-4f6a-4a45-baa4-f33a274defe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "847bed1456924abc8aa6f3bd34217958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "847bed1456924abc8aa6f3bd34217958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "847bed1456924abc8aa6f3bd34217958.jpg", "file_size": 19022, "is_delete": false, "file_type": 1, "original_file_name": "1132#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847bed1456924abc8aa6f3bd34217958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847bed1456924abc8aa6f3bd34217958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847bed1456924abc8aa6f3bd34217958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/847bed1456924abc8aa6f3bd34217958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/847bed1456924abc8aa6f3bd34217958.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n38P7wZzBwyp95EdFyCXOmhKFyw=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.233654+00 2025-12-09 10:15:18.233659+00 12844 23-2120#A12-4XL SPMX-20240815308031 \N \N \N 1 \N [{"file_id": "84b0b523-02da-4f80-849d-047cc30574f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30fd06f3766b4075ae70f2459c477117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30fd06f3766b4075ae70f2459c477117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30fd06f3766b4075ae70f2459c477117.jpg", "file_size": 18557, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fd06f3766b4075ae70f2459c477117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fd06f3766b4075ae70f2459c477117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fd06f3766b4075ae70f2459c477117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30fd06f3766b4075ae70f2459c477117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30fd06f3766b4075ae70f2459c477117.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qK64di5tHZ9q_hZz92zVFhmLqlc=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.236019+00 2025-12-09 10:15:18.236025+00 12845 LJH1298-2#黄色 SPMX-20240815308033 \N \N \N 1 \N [{"file_id": "a5e31acb-4a69-46d5-996b-d92bb690d365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43cf65db70a74713b310cbdfce9ca6c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43cf65db70a74713b310cbdfce9ca6c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43cf65db70a74713b310cbdfce9ca6c3.jpg", "file_size": 63085, "is_delete": false, "file_type": 1, "original_file_name": "LJH1298-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf65db70a74713b310cbdfce9ca6c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf65db70a74713b310cbdfce9ca6c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43cf65db70a74713b310cbdfce9ca6c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43cf65db70a74713b310cbdfce9ca6c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43cf65db70a74713b310cbdfce9ca6c3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Am62AArb-_saRr00l4wfS0OguI=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.238304+00 2025-12-09 10:15:18.238309+00 12846 JTSS399FW#VS-D3 SPMX-20240815308035 \N \N \N 1 \N [{"file_id": "de617fb0-9d70-457e-8141-445f76432a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bfeba5ec02d481582e81af3c5fe4de3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bfeba5ec02d481582e81af3c5fe4de3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bfeba5ec02d481582e81af3c5fe4de3.jpg", "file_size": 18236, "is_delete": false, "file_type": 1, "original_file_name": "JTSS399FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfeba5ec02d481582e81af3c5fe4de3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfeba5ec02d481582e81af3c5fe4de3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfeba5ec02d481582e81af3c5fe4de3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bfeba5ec02d481582e81af3c5fe4de3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bfeba5ec02d481582e81af3c5fe4de3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ZEXZsfcN7bSA_rLWPFRuQB431Y=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.240647+00 2025-12-09 10:15:18.240652+00 12847 LZ130FWF#3号色短袖 SPMX-20240815308038 \N \N \N 1 \N [{"file_id": "32991d5b-d972-43ec-80e1-c29ffc99a80d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06b7c48d4cc7491da9b291cbfa96eccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06b7c48d4cc7491da9b291cbfa96eccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06b7c48d4cc7491da9b291cbfa96eccd.jpg", "file_size": 19902, "is_delete": false, "file_type": 1, "original_file_name": "LZ130FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b7c48d4cc7491da9b291cbfa96eccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b7c48d4cc7491da9b291cbfa96eccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b7c48d4cc7491da9b291cbfa96eccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06b7c48d4cc7491da9b291cbfa96eccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06b7c48d4cc7491da9b291cbfa96eccd.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLPqLcPYoWHGLyHBCtI4bkCxXLs=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.242762+00 2025-12-09 10:15:18.242767+00 12848 23-2120#A12-领子3XL SPMX-20240815308042 \N \N \N 1 \N [{"file_id": "611b0c8a-856f-4ccd-8ce7-48ac1af3d8c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60e2bd0af2ea497182b2df75ad1acc5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60e2bd0af2ea497182b2df75ad1acc5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60e2bd0af2ea497182b2df75ad1acc5b.jpg", "file_size": 11582, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e2bd0af2ea497182b2df75ad1acc5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e2bd0af2ea497182b2df75ad1acc5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e2bd0af2ea497182b2df75ad1acc5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60e2bd0af2ea497182b2df75ad1acc5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60e2bd0af2ea497182b2df75ad1acc5b.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBcevZt04O985BlJZS1GbFGWid8=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.245155+00 2025-12-09 10:15:18.24516+00 12849 8199#A5 SPMX-20240815308041 \N \N \N 1 \N [{"file_id": "79a930d7-25c8-4bb8-8aa9-a9a6cb8898fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f30fc4ee8dc34b658112eb6f107e21c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f30fc4ee8dc34b658112eb6f107e21c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f30fc4ee8dc34b658112eb6f107e21c4.jpg", "file_size": 16128, "is_delete": false, "file_type": 1, "original_file_name": "8199#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30fc4ee8dc34b658112eb6f107e21c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30fc4ee8dc34b658112eb6f107e21c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30fc4ee8dc34b658112eb6f107e21c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f30fc4ee8dc34b658112eb6f107e21c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f30fc4ee8dc34b658112eb6f107e21c4.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXATAhLBH0nIClP-ddpT1F6sScU=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.247536+00 2025-12-09 10:15:18.247541+00 12850 DL31070#批布大红 SPMX-20240815308034 \N \N \N 1 \N [{"file_id": "62d11340-4ac0-48f7-8c2c-1e6a21417058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a0bee8c1ac4ef8a2451885e5ce3f56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a0bee8c1ac4ef8a2451885e5ce3f56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a0bee8c1ac4ef8a2451885e5ce3f56.jpg", "file_size": 21216, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a0bee8c1ac4ef8a2451885e5ce3f56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a0bee8c1ac4ef8a2451885e5ce3f56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a0bee8c1ac4ef8a2451885e5ce3f56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a0bee8c1ac4ef8a2451885e5ce3f56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a0bee8c1ac4ef8a2451885e5ce3f56.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gixUWqjf9OgC3tpTDpkBB5Ki88=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.249669+00 2025-12-09 10:15:18.249674+00 12851 1131#黑色 SPMX-20240815308032 \N \N \N 1 \N [{"file_id": "30bb8009-acaa-4498-9cf3-0d9685e647d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5765047ad32443acad7945e5e7c4dca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5765047ad32443acad7945e5e7c4dca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5765047ad32443acad7945e5e7c4dca8.jpg", "file_size": 27543, "is_delete": false, "file_type": 1, "original_file_name": "1131#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5765047ad32443acad7945e5e7c4dca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5765047ad32443acad7945e5e7c4dca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5765047ad32443acad7945e5e7c4dca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5765047ad32443acad7945e5e7c4dca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5765047ad32443acad7945e5e7c4dca8.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxWgbcP7halrV4MIWjY2ZX61sRM=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.251818+00 2025-12-09 10:15:18.251824+00 12852 HT3328#绿色 SPMX-20240815308039 \N \N \N 1 \N [{"file_id": "4b83a140-8189-4492-ae4d-5f3ab0e6de02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3895ff01b3344a06a884149e21754c0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3895ff01b3344a06a884149e21754c0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3895ff01b3344a06a884149e21754c0d.jpg", "file_size": 68091, "is_delete": false, "file_type": 1, "original_file_name": "HT3328#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3895ff01b3344a06a884149e21754c0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3895ff01b3344a06a884149e21754c0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3895ff01b3344a06a884149e21754c0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3895ff01b3344a06a884149e21754c0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3895ff01b3344a06a884149e21754c0d.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqPN2STzFQVa-HRsPQk2xDRBCy4=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.254177+00 2025-12-09 10:15:18.254182+00 12853 C730FWF#前后幅袖子S SPMX-20240815308037 \N \N \N 1 \N [{"file_id": "e11a7f6a-6f27-45b0-a6fe-d25a9f860b38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10477dbf17c54b609455ec330b099f92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10477dbf17c54b609455ec330b099f92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10477dbf17c54b609455ec330b099f92.jpg", "file_size": 21098, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#前后幅袖子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10477dbf17c54b609455ec330b099f92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10477dbf17c54b609455ec330b099f92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10477dbf17c54b609455ec330b099f92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10477dbf17c54b609455ec330b099f92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10477dbf17c54b609455ec330b099f92.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:accmozaa9-bN8QVNL5C507-S2cs=", "createTime": "2024-08-15 14:54:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.256515+00 2025-12-09 10:15:18.25652+00 12854 C730FWF#前后幅袖子XL SPMX-20240815308049 \N \N \N 1 \N [{"file_id": "fe6e7b1b-9dac-4bb2-a24d-852854fa1486", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6569cc7ff37649bcbdb16b332f21e578.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6569cc7ff37649bcbdb16b332f21e578.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6569cc7ff37649bcbdb16b332f21e578.jpg", "file_size": 18755, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#前后幅袖子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569cc7ff37649bcbdb16b332f21e578.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569cc7ff37649bcbdb16b332f21e578.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569cc7ff37649bcbdb16b332f21e578.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6569cc7ff37649bcbdb16b332f21e578.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6569cc7ff37649bcbdb16b332f21e578.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faWVoS_7ydNEvW_gp0Iqfq8XUdY=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.258644+00 2025-12-09 10:15:18.258649+00 12855 HT3329#原版色 SPMX-20240815308050 \N \N \N 1 \N [{"file_id": "bf3fb939-f580-4f01-99f9-53f950c980c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64e935d7270f41d7bcdf632abe26595a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64e935d7270f41d7bcdf632abe26595a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64e935d7270f41d7bcdf632abe26595a.jpg", "file_size": 64779, "is_delete": false, "file_type": 1, "original_file_name": "HT3329#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64e935d7270f41d7bcdf632abe26595a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64e935d7270f41d7bcdf632abe26595a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64e935d7270f41d7bcdf632abe26595a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64e935d7270f41d7bcdf632abe26595a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64e935d7270f41d7bcdf632abe26595a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGzoC8G11PWiu__AUxDq0zXtnHA=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.26079+00 2025-12-09 10:15:18.260795+00 12856 23-2120#A12-领子4XL SPMX-20240815308053 \N \N \N 1 \N [{"file_id": "237677f4-155c-4450-921e-d8920b6fc2bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0ee3230bb8f47cf92aa627c1d8e7741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0ee3230bb8f47cf92aa627c1d8e7741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0ee3230bb8f47cf92aa627c1d8e7741.jpg", "file_size": 11651, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ee3230bb8f47cf92aa627c1d8e7741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ee3230bb8f47cf92aa627c1d8e7741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ee3230bb8f47cf92aa627c1d8e7741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0ee3230bb8f47cf92aa627c1d8e7741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0ee3230bb8f47cf92aa627c1d8e7741.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ip8PNTamCpWDceldeLV5z3RyFqY=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.262931+00 2025-12-09 10:15:18.262937+00 12857 0005-10FWF#蓝色 SPMX-20240815308045 \N \N \N 1 \N [{"file_id": "8ddf3431-b016-4563-9cb1-3a396c0cdb23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f461c31d6a4ac18f7555657d26653f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f461c31d6a4ac18f7555657d26653f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f461c31d6a4ac18f7555657d26653f.jpg", "file_size": 15611, "is_delete": false, "file_type": 1, "original_file_name": "0005-10FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f461c31d6a4ac18f7555657d26653f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f461c31d6a4ac18f7555657d26653f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f461c31d6a4ac18f7555657d26653f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f461c31d6a4ac18f7555657d26653f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f461c31d6a4ac18f7555657d26653f.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e92HkUj2XTB6r9FGgRVnQyLeIOo=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.265318+00 2025-12-09 10:15:18.265324+00 12858 LZ130FWF#4号色短袖 SPMX-20240815308048 \N \N \N 1 \N [{"file_id": "7602f9aa-6e62-4ddf-ad71-b3ae11a07ed2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc2730ccf8204c3da8c710d94e840014.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc2730ccf8204c3da8c710d94e840014.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc2730ccf8204c3da8c710d94e840014.jpg", "file_size": 20371, "is_delete": false, "file_type": 1, "original_file_name": "LZ130FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2730ccf8204c3da8c710d94e840014.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2730ccf8204c3da8c710d94e840014.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2730ccf8204c3da8c710d94e840014.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc2730ccf8204c3da8c710d94e840014.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc2730ccf8204c3da8c710d94e840014.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzbRqlmjUGvk8fje9COhjw0JRy8=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.267679+00 2025-12-09 10:15:18.267685+00 12859 8199FWF#WJC22 SPMX-20240815308052 \N \N \N 1 \N [{"file_id": "9b98ee40-df05-4b2e-b7e4-8fa80597f144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "164c9d7e76ff474a9bbfeafefff85092.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "164c9d7e76ff474a9bbfeafefff85092.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "164c9d7e76ff474a9bbfeafefff85092.jpg", "file_size": 11755, "is_delete": false, "file_type": 1, "original_file_name": "8199FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164c9d7e76ff474a9bbfeafefff85092.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164c9d7e76ff474a9bbfeafefff85092.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164c9d7e76ff474a9bbfeafefff85092.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/164c9d7e76ff474a9bbfeafefff85092.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/164c9d7e76ff474a9bbfeafefff85092.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dmQMjDKN8cthvKxXnUE2MA99AoM=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.269825+00 2025-12-09 10:15:18.26983+00 12860 LJH1329#蓝色 SPMX-20240815308056 \N \N \N 1 \N [{"file_id": "54949de0-d6ad-4149-9e0b-d03c56a8dcb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33a73a0f60154a80aaa02b89e7d8b477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33a73a0f60154a80aaa02b89e7d8b477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33a73a0f60154a80aaa02b89e7d8b477.jpg", "file_size": 69341, "is_delete": false, "file_type": 1, "original_file_name": "LJH1329#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33a73a0f60154a80aaa02b89e7d8b477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33a73a0f60154a80aaa02b89e7d8b477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33a73a0f60154a80aaa02b89e7d8b477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33a73a0f60154a80aaa02b89e7d8b477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33a73a0f60154a80aaa02b89e7d8b477.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHNv0ojRDZnZNN6iheTHFvxiJYM=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.271963+00 2025-12-09 10:15:18.271969+00 12861 LJH1329#绿色 SPMX-20240815308044 \N \N \N 1 \N [{"file_id": "fe7c537a-5714-40db-9db6-3e8e7b070f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2d070e5561b450cbb61327ea240aad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2d070e5561b450cbb61327ea240aad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2d070e5561b450cbb61327ea240aad3.jpg", "file_size": 69201, "is_delete": false, "file_type": 1, "original_file_name": "LJH1329#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d070e5561b450cbb61327ea240aad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d070e5561b450cbb61327ea240aad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d070e5561b450cbb61327ea240aad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2d070e5561b450cbb61327ea240aad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2d070e5561b450cbb61327ea240aad3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRiG8Y3FeaFauFdOV11B-KOba0s=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.274329+00 2025-12-09 10:15:18.274335+00 12862 DL31070#批布彩兰 SPMX-20240815308047 \N \N \N 1 \N [{"file_id": "9db86246-2418-4c09-a0b9-97238921ceee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53e6138f3da34622ab1af4f6b8d1e6d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53e6138f3da34622ab1af4f6b8d1e6d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53e6138f3da34622ab1af4f6b8d1e6d3.jpg", "file_size": 22021, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e6138f3da34622ab1af4f6b8d1e6d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e6138f3da34622ab1af4f6b8d1e6d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e6138f3da34622ab1af4f6b8d1e6d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53e6138f3da34622ab1af4f6b8d1e6d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53e6138f3da34622ab1af4f6b8d1e6d3.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zc5fGbOmJELiX8t6LZ8ujz4mdTc=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.27663+00 2025-12-09 10:15:18.276635+00 12863 0005-10FWF#蓝色番禺调色 SPMX-20240815308058 \N \N \N 1 \N [{"file_id": "d15a5222-8981-4864-a93b-7e17d7cbb199", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7218eb187601438789322ceef077c35c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7218eb187601438789322ceef077c35c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7218eb187601438789322ceef077c35c.jpg", "file_size": 16831, "is_delete": false, "file_type": 1, "original_file_name": "0005-10FWF#蓝色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7218eb187601438789322ceef077c35c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7218eb187601438789322ceef077c35c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7218eb187601438789322ceef077c35c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7218eb187601438789322ceef077c35c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7218eb187601438789322ceef077c35c.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuA60hzn-rFpEke2J01tkC54bZA=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.278974+00 2025-12-09 10:15:18.278983+00 12864 FM003#金黄 SPMX-20240815308051 \N \N \N 1 \N [{"file_id": "c2f72f62-1c82-4758-8348-b6a48625c637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1613f90ed00f411b94ef3da36c1c7115.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1613f90ed00f411b94ef3da36c1c7115.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1613f90ed00f411b94ef3da36c1c7115.jpg", "file_size": 19642, "is_delete": false, "file_type": 1, "original_file_name": "FM003#金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613f90ed00f411b94ef3da36c1c7115.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613f90ed00f411b94ef3da36c1c7115.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1613f90ed00f411b94ef3da36c1c7115.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1613f90ed00f411b94ef3da36c1c7115.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1613f90ed00f411b94ef3da36c1c7115.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FhAeBGntWCtx4RgVxyEqBYPeyE=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.281378+00 2025-12-09 10:15:18.281383+00 12865 JTSS400FW#VS-D3 SPMX-20240815308046 \N \N \N 1 \N [{"file_id": "61aa2f63-6447-435e-9945-2ddabc200c44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d73d4b609704a3d95bd1665a6dc8e03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d73d4b609704a3d95bd1665a6dc8e03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d73d4b609704a3d95bd1665a6dc8e03.jpg", "file_size": 10339, "is_delete": false, "file_type": 1, "original_file_name": "JTSS400FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d73d4b609704a3d95bd1665a6dc8e03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d73d4b609704a3d95bd1665a6dc8e03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d73d4b609704a3d95bd1665a6dc8e03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d73d4b609704a3d95bd1665a6dc8e03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d73d4b609704a3d95bd1665a6dc8e03.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbYOqLxJEDehdjE9OTRqaWHWMy8=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.283839+00 2025-12-09 10:15:18.283844+00 12866 1132#蓝色 SPMX-20240815308054 \N \N \N 1 \N [{"file_id": "0c38bd2c-db61-4f7e-aae4-44dcfc4a52a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "900cc303fc884ca69fe6aac6f341a1cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "900cc303fc884ca69fe6aac6f341a1cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "900cc303fc884ca69fe6aac6f341a1cc.jpg", "file_size": 18500, "is_delete": false, "file_type": 1, "original_file_name": "1132#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900cc303fc884ca69fe6aac6f341a1cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900cc303fc884ca69fe6aac6f341a1cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/900cc303fc884ca69fe6aac6f341a1cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/900cc303fc884ca69fe6aac6f341a1cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/900cc303fc884ca69fe6aac6f341a1cc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8zInm3sDIxOEX3fadamaU-BRrA=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.285992+00 2025-12-09 10:15:18.285997+00 12867 JTSS401FW#VS-D3 SPMX-20240815308057 \N \N \N 1 \N [{"file_id": "f1130c62-6f5f-4d58-8a2d-8a9b25e1e25d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c637395c1fec45318157c643879597cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c637395c1fec45318157c643879597cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c637395c1fec45318157c643879597cc.jpg", "file_size": 11884, "is_delete": false, "file_type": 1, "original_file_name": "JTSS401FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637395c1fec45318157c643879597cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637395c1fec45318157c643879597cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637395c1fec45318157c643879597cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c637395c1fec45318157c643879597cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c637395c1fec45318157c643879597cc.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KG21_GN3DdwtXwrIptUMhhrWGQ=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.288072+00 2025-12-09 10:15:18.288076+00 12868 LZ130FWF#5号色短袖 SPMX-20240815308055 \N \N \N 1 \N [{"file_id": "8d71aa14-837c-4b12-9490-b103bb902ff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc15b004da548d8ab8f332802017449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc15b004da548d8ab8f332802017449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc15b004da548d8ab8f332802017449.jpg", "file_size": 18789, "is_delete": false, "file_type": 1, "original_file_name": "LZ130FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc15b004da548d8ab8f332802017449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc15b004da548d8ab8f332802017449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc15b004da548d8ab8f332802017449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc15b004da548d8ab8f332802017449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc15b004da548d8ab8f332802017449.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vyYwNAAOKDJjD9bpDiJkwFE5s4=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.290084+00 2025-12-09 10:15:18.290089+00 12869 DL31070#批布浅粉 SPMX-20240815308059 \N \N \N 1 \N [{"file_id": "46224235-1ff2-4eb9-86d5-990a48830c96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b08a790e456346cba4a45bcc4a67d7d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b08a790e456346cba4a45bcc4a67d7d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b08a790e456346cba4a45bcc4a67d7d5.jpg", "file_size": 19490, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08a790e456346cba4a45bcc4a67d7d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08a790e456346cba4a45bcc4a67d7d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08a790e456346cba4a45bcc4a67d7d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b08a790e456346cba4a45bcc4a67d7d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b08a790e456346cba4a45bcc4a67d7d5.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YUxDto5NJS3Dinqj9yP3WhbPo5E=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.292108+00 2025-12-09 10:15:18.292113+00 12870 8207#桔红 SPMX-20240815308063 \N \N \N 1 \N [{"file_id": "0a7d0270-2980-422a-9b02-7083197bd24d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba87b6da20534be89f32844b5a495248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba87b6da20534be89f32844b5a495248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba87b6da20534be89f32844b5a495248.jpg", "file_size": 9579, "is_delete": false, "file_type": 1, "original_file_name": "8207#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba87b6da20534be89f32844b5a495248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba87b6da20534be89f32844b5a495248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba87b6da20534be89f32844b5a495248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba87b6da20534be89f32844b5a495248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba87b6da20534be89f32844b5a495248.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfP-SnfavOIVBjS0XVFaGI1l-yA=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.294176+00 2025-12-09 10:15:18.294181+00 12871 LZ1310#捆条布 SPMX-20240815308066 \N \N \N 1 \N [{"file_id": "568d27a9-488a-4fc9-8051-391dd2edf4de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b42f6970c8874036804f55b612f223c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b42f6970c8874036804f55b612f223c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b42f6970c8874036804f55b612f223c0.jpg", "file_size": 12503, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42f6970c8874036804f55b612f223c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42f6970c8874036804f55b612f223c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b42f6970c8874036804f55b612f223c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b42f6970c8874036804f55b612f223c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b42f6970c8874036804f55b612f223c0.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ew3s40LQ2w4OgK2g4AiCvqrSaEk=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.296448+00 2025-12-09 10:15:18.296454+00 12872 C730FWF#门禁L SPMX-20240815308060 \N \N \N 1 \N [{"file_id": "f6acdbfd-1372-423c-b9c7-9417183175cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09616775543f47f2a264c7e4ed698ea1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09616775543f47f2a264c7e4ed698ea1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09616775543f47f2a264c7e4ed698ea1.jpg", "file_size": 16720, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#门禁L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09616775543f47f2a264c7e4ed698ea1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09616775543f47f2a264c7e4ed698ea1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09616775543f47f2a264c7e4ed698ea1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09616775543f47f2a264c7e4ed698ea1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09616775543f47f2a264c7e4ed698ea1.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F6y0UorY8lL8xp9wazQcnqE4RNc=", "createTime": "2024-08-15 14:54:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.298533+00 2025-12-09 10:15:18.298537+00 12873 23-2120#A13-3XL SPMX-20240815308065 \N \N \N 1 \N [{"file_id": "375efff1-600f-4266-8ea1-4be22255e4d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8d5d72cacf4a4fae7dc940898b54e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8d5d72cacf4a4fae7dc940898b54e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8d5d72cacf4a4fae7dc940898b54e0.jpg", "file_size": 18164, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8d5d72cacf4a4fae7dc940898b54e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8d5d72cacf4a4fae7dc940898b54e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8d5d72cacf4a4fae7dc940898b54e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8d5d72cacf4a4fae7dc940898b54e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8d5d72cacf4a4fae7dc940898b54e0.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xw90hVjCvWLpgepzObAhis9iskA=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.300678+00 2025-12-09 10:15:18.300684+00 12874 1132#黑色 SPMX-20240815308064 \N \N \N 1 \N [{"file_id": "3111b408-8c77-459c-aa04-db6aa4931bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdafa203848e4068bd8a7efa6c1a7eda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdafa203848e4068bd8a7efa6c1a7eda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdafa203848e4068bd8a7efa6c1a7eda.jpg", "file_size": 19289, "is_delete": false, "file_type": 1, "original_file_name": "1132#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdafa203848e4068bd8a7efa6c1a7eda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdafa203848e4068bd8a7efa6c1a7eda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdafa203848e4068bd8a7efa6c1a7eda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdafa203848e4068bd8a7efa6c1a7eda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdafa203848e4068bd8a7efa6c1a7eda.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HgVUnWfgE-rBdDhlPUTTPpCcc1M=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.303131+00 2025-12-09 10:15:18.303136+00 12875 0005-11#WJC22 SPMX-20240815308068 \N \N \N 1 \N [{"file_id": "b75ebc65-d737-4472-9c56-ad28e10a2a67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cdc338676c1406ab1bd24e0ae7d7c59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cdc338676c1406ab1bd24e0ae7d7c59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cdc338676c1406ab1bd24e0ae7d7c59.jpg", "file_size": 16571, "is_delete": false, "file_type": 1, "original_file_name": "0005-11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cdc338676c1406ab1bd24e0ae7d7c59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cdc338676c1406ab1bd24e0ae7d7c59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cdc338676c1406ab1bd24e0ae7d7c59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cdc338676c1406ab1bd24e0ae7d7c59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cdc338676c1406ab1bd24e0ae7d7c59.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uud9Ht0f97GqTxq9mxdv4HIR4O0=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.305363+00 2025-12-09 10:15:18.305368+00 12876 LJH1329#黄色 SPMX-20240815308069 \N \N \N 1 \N [{"file_id": "e8adabfb-5699-48b8-8de8-41ae92707347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9566ba9c81e49308ea7cf9da1d1b2dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9566ba9c81e49308ea7cf9da1d1b2dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9566ba9c81e49308ea7cf9da1d1b2dd.jpg", "file_size": 66692, "is_delete": false, "file_type": 1, "original_file_name": "LJH1329#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9566ba9c81e49308ea7cf9da1d1b2dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9566ba9c81e49308ea7cf9da1d1b2dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9566ba9c81e49308ea7cf9da1d1b2dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9566ba9c81e49308ea7cf9da1d1b2dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9566ba9c81e49308ea7cf9da1d1b2dd.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rwYNdoFOR30pLI9xAWQuZIGVb9k=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.307798+00 2025-12-09 10:15:18.307802+00 12877 C730FWF#门禁M SPMX-20240815308071 \N \N \N 1 \N [{"file_id": "65661c0a-0ebd-4765-b2f5-d2ef731405ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ac4a93a40fe40a3afc47165deadf7bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ac4a93a40fe40a3afc47165deadf7bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ac4a93a40fe40a3afc47165deadf7bb.jpg", "file_size": 16581, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#门禁M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac4a93a40fe40a3afc47165deadf7bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac4a93a40fe40a3afc47165deadf7bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ac4a93a40fe40a3afc47165deadf7bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ac4a93a40fe40a3afc47165deadf7bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ac4a93a40fe40a3afc47165deadf7bb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:678P0gC_-4L1i8xs-dPRRl69Zuw=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.309979+00 2025-12-09 10:15:18.309983+00 12878 8207#玫红 SPMX-20240815308073 \N \N \N 1 \N [{"file_id": "26e61e25-c548-4230-9249-4e6fba3cac02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f9e5f770894a7fb0239257ddbccc65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f9e5f770894a7fb0239257ddbccc65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f9e5f770894a7fb0239257ddbccc65.jpg", "file_size": 10103, "is_delete": false, "file_type": 1, "original_file_name": "8207#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9e5f770894a7fb0239257ddbccc65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9e5f770894a7fb0239257ddbccc65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f9e5f770894a7fb0239257ddbccc65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f9e5f770894a7fb0239257ddbccc65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f9e5f770894a7fb0239257ddbccc65.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCUohRrbPv0I2aiExWpmKZqTC3E=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.312247+00 2025-12-09 10:15:18.312251+00 12879 FM004#大红 SPMX-20240815308072 \N \N \N 1 \N [{"file_id": "8160659e-d842-4f06-9f76-7267cc2ac352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20fcf6a16935416299a8c30ad8131119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20fcf6a16935416299a8c30ad8131119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20fcf6a16935416299a8c30ad8131119.jpg", "file_size": 17718, "is_delete": false, "file_type": 1, "original_file_name": "FM004#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20fcf6a16935416299a8c30ad8131119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20fcf6a16935416299a8c30ad8131119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20fcf6a16935416299a8c30ad8131119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20fcf6a16935416299a8c30ad8131119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20fcf6a16935416299a8c30ad8131119.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PrL6Iiuhq_3TkqRCl4S__TaYsFI=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.314515+00 2025-12-09 10:15:18.314519+00 12880 23-2120#A13-4XL SPMX-20240815308074 \N \N \N 1 \N [{"file_id": "3f179b0b-196c-4424-81d9-b983a959269d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d27bc56f8aa847a89fad6530946906de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d27bc56f8aa847a89fad6530946906de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d27bc56f8aa847a89fad6530946906de.jpg", "file_size": 17975, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27bc56f8aa847a89fad6530946906de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27bc56f8aa847a89fad6530946906de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27bc56f8aa847a89fad6530946906de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d27bc56f8aa847a89fad6530946906de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d27bc56f8aa847a89fad6530946906de.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ph0p5var3ZhrsZlKPttJtIBDsCs=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.316951+00 2025-12-09 10:15:18.316955+00 12881 JTSS402FW#VS-D3 SPMX-20240815308067 \N \N \N 1 \N [{"file_id": "023ffce7-dc37-46b4-bc2e-3446242f3fcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1373b0460feb4e5a9d5efb4e73b18956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1373b0460feb4e5a9d5efb4e73b18956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1373b0460feb4e5a9d5efb4e73b18956.jpg", "file_size": 10922, "is_delete": false, "file_type": 1, "original_file_name": "JTSS402FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b0460feb4e5a9d5efb4e73b18956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b0460feb4e5a9d5efb4e73b18956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1373b0460feb4e5a9d5efb4e73b18956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1373b0460feb4e5a9d5efb4e73b18956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1373b0460feb4e5a9d5efb4e73b18956.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpdlLFtB-5PNlcR9HSdhWauZv4s=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.319133+00 2025-12-09 10:15:18.319138+00 12882 HT3329#红色 SPMX-20240815308061 \N \N \N 1 \N [{"file_id": "9331a87f-9db8-4db8-a1f1-c9cc80f0f907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aad966e196ba483a8791436fe493197a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aad966e196ba483a8791436fe493197a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aad966e196ba483a8791436fe493197a.jpg", "file_size": 67610, "is_delete": false, "file_type": 1, "original_file_name": "HT3329#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad966e196ba483a8791436fe493197a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad966e196ba483a8791436fe493197a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aad966e196ba483a8791436fe493197a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aad966e196ba483a8791436fe493197a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aad966e196ba483a8791436fe493197a.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-xMJytDClUvV_2Xa2Pt_kFyYSo=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.321076+00 2025-12-09 10:15:18.321082+00 12883 FM004#原版色 SPMX-20240815308062 \N \N \N 1 \N [{"file_id": "2dd06407-9858-4911-8712-f59a95f11295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18bf6e8c851e4c8694b28fc7a3a04725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18bf6e8c851e4c8694b28fc7a3a04725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18bf6e8c851e4c8694b28fc7a3a04725.jpg", "file_size": 16866, "is_delete": false, "file_type": 1, "original_file_name": "FM004#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bf6e8c851e4c8694b28fc7a3a04725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bf6e8c851e4c8694b28fc7a3a04725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bf6e8c851e4c8694b28fc7a3a04725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18bf6e8c851e4c8694b28fc7a3a04725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18bf6e8c851e4c8694b28fc7a3a04725.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GDHq-ZKYqEDsm8eWLFIXo9Yjn-A=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.32319+00 2025-12-09 10:15:18.323195+00 12884 DL31070#批布玫红 SPMX-20240815308070 \N \N \N 1 \N [{"file_id": "aef325dc-9984-49c9-8c0e-49ade81fb02d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd38702d36ff4339b87efc4d1e61a00e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd38702d36ff4339b87efc4d1e61a00e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd38702d36ff4339b87efc4d1e61a00e.jpg", "file_size": 20878, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd38702d36ff4339b87efc4d1e61a00e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd38702d36ff4339b87efc4d1e61a00e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd38702d36ff4339b87efc4d1e61a00e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd38702d36ff4339b87efc4d1e61a00e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd38702d36ff4339b87efc4d1e61a00e.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3cDJXTobjsr_6Q70GRjoJyUZf0=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.325233+00 2025-12-09 10:15:18.325238+00 12885 8207#白色 SPMX-20240815308080 \N \N \N 1 \N [{"file_id": "1942d5c1-4d36-4a36-bdfe-8ef6277af15c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4557873cbe8641d8871d000004852e75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4557873cbe8641d8871d000004852e75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4557873cbe8641d8871d000004852e75.jpg", "file_size": 9178, "is_delete": false, "file_type": 1, "original_file_name": "8207#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4557873cbe8641d8871d000004852e75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4557873cbe8641d8871d000004852e75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4557873cbe8641d8871d000004852e75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4557873cbe8641d8871d000004852e75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4557873cbe8641d8871d000004852e75.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iCLz8DPyNnuCIgR5RGej0rN6LrE=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.327242+00 2025-12-09 10:15:18.327247+00 12886 LZ1310#背心款1号色 SPMX-20240815308076 \N \N \N 1 \N [{"file_id": "27d00ca0-716a-4c97-b982-8464335d7784", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d1c6957dc8d4d018cd8fade49ef8a69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d1c6957dc8d4d018cd8fade49ef8a69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d1c6957dc8d4d018cd8fade49ef8a69.jpg", "file_size": 18285, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1c6957dc8d4d018cd8fade49ef8a69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1c6957dc8d4d018cd8fade49ef8a69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1c6957dc8d4d018cd8fade49ef8a69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d1c6957dc8d4d018cd8fade49ef8a69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d1c6957dc8d4d018cd8fade49ef8a69.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1tx4htehtuN5aZlupKnTIYQ5Ok=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.329247+00 2025-12-09 10:15:18.329252+00 12887 LZ1310#背心款2号色 SPMX-20240815308087 \N \N \N 1 \N [{"file_id": "c874e92f-19d6-43dd-9bb7-3c338562978d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c0db91cf08541ee8ae4bb9cd358e452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c0db91cf08541ee8ae4bb9cd358e452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c0db91cf08541ee8ae4bb9cd358e452.jpg", "file_size": 18005, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0db91cf08541ee8ae4bb9cd358e452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0db91cf08541ee8ae4bb9cd358e452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0db91cf08541ee8ae4bb9cd358e452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c0db91cf08541ee8ae4bb9cd358e452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c0db91cf08541ee8ae4bb9cd358e452.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGzJCPQ3c5AmogGo07Og3BQMn0M=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.331225+00 2025-12-09 10:15:18.33123+00 12888 1132FWF#V5曲线 SPMX-20240815308075 \N \N \N 1 \N [{"file_id": "efa21a78-6cee-452a-b348-06ec1fa5be08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "444b5b8fec5e48f89b511f929484dcdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "444b5b8fec5e48f89b511f929484dcdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "444b5b8fec5e48f89b511f929484dcdb.jpg", "file_size": 27560, "is_delete": false, "file_type": 1, "original_file_name": "1132FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444b5b8fec5e48f89b511f929484dcdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444b5b8fec5e48f89b511f929484dcdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444b5b8fec5e48f89b511f929484dcdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/444b5b8fec5e48f89b511f929484dcdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/444b5b8fec5e48f89b511f929484dcdb.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4ComTyJfIlyFeU7krTl6rCWMIg=", "createTime": "2024-08-15 14:54:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.333266+00 2025-12-09 10:15:18.33327+00 12889 HT3329#绿色 SPMX-20240815308077 \N \N \N 1 \N [{"file_id": "bd88df31-2443-4d53-b992-34495cd2d21b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85eb0014508743bc9cb5b8c2a90e8939.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85eb0014508743bc9cb5b8c2a90e8939.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85eb0014508743bc9cb5b8c2a90e8939.jpg", "file_size": 67406, "is_delete": false, "file_type": 1, "original_file_name": "HT3329#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85eb0014508743bc9cb5b8c2a90e8939.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85eb0014508743bc9cb5b8c2a90e8939.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85eb0014508743bc9cb5b8c2a90e8939.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85eb0014508743bc9cb5b8c2a90e8939.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85eb0014508743bc9cb5b8c2a90e8939.jpg?e=1765361717&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p9_h4Q8XyX_seALnC-D9Bgo3Lm0=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.992329+00 2025-12-09 10:15:18.992339+00 12890 FM004#彩蓝 SPMX-20240815308082 \N \N \N 1 \N [{"file_id": "2d6c1a89-db32-4766-b644-ea230d71f6f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "048dfcaf90584e9dbc428114cbd2b384.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "048dfcaf90584e9dbc428114cbd2b384.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "048dfcaf90584e9dbc428114cbd2b384.jpg", "file_size": 17432, "is_delete": false, "file_type": 1, "original_file_name": "FM004#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048dfcaf90584e9dbc428114cbd2b384.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048dfcaf90584e9dbc428114cbd2b384.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048dfcaf90584e9dbc428114cbd2b384.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/048dfcaf90584e9dbc428114cbd2b384.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/048dfcaf90584e9dbc428114cbd2b384.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhoDFCN-17zg6Fr1vMC-VgZ2kuU=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.995603+00 2025-12-09 10:15:18.995608+00 12891 23-2120#A13-领子3XL SPMX-20240815308084 \N \N \N 1 \N [{"file_id": "005aed18-b1b3-4e21-b269-830195cb18cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f57a0f3a9a24443e9b7f1112415a12a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f57a0f3a9a24443e9b7f1112415a12a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f57a0f3a9a24443e9b7f1112415a12a7.jpg", "file_size": 11764, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f57a0f3a9a24443e9b7f1112415a12a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f57a0f3a9a24443e9b7f1112415a12a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f57a0f3a9a24443e9b7f1112415a12a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f57a0f3a9a24443e9b7f1112415a12a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f57a0f3a9a24443e9b7f1112415a12a7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AFidVIHw1aNeOXQCJNpNmuo_aTY=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:18.997952+00 2025-12-09 10:15:18.997959+00 12892 0005-11FWF#天蓝 SPMX-20240815308079 \N \N \N 1 \N [{"file_id": "415d2532-8550-44a5-946f-b6830fca94aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77a6c8fae7194474b42040736a034505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77a6c8fae7194474b42040736a034505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77a6c8fae7194474b42040736a034505.jpg", "file_size": 13217, "is_delete": false, "file_type": 1, "original_file_name": "0005-11FWF#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a6c8fae7194474b42040736a034505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a6c8fae7194474b42040736a034505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a6c8fae7194474b42040736a034505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77a6c8fae7194474b42040736a034505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77a6c8fae7194474b42040736a034505.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyTNM_McEzRln8p-hBRKv1Nyx4A=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.000193+00 2025-12-09 10:15:19.000197+00 12893 LJH1369#桔色 SPMX-20240815308083 \N \N \N 1 \N [{"file_id": "643c8d0a-0d91-44da-ade2-14e8be4a8f1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ac20347c938499998aa836f039dc565.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ac20347c938499998aa836f039dc565.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ac20347c938499998aa836f039dc565.jpg", "file_size": 53561, "is_delete": false, "file_type": 1, "original_file_name": "LJH1369#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac20347c938499998aa836f039dc565.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac20347c938499998aa836f039dc565.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac20347c938499998aa836f039dc565.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ac20347c938499998aa836f039dc565.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ac20347c938499998aa836f039dc565.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbIMslCSQ0eiU9WduBIc9gPpnD8=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.00214+00 2025-12-09 10:15:19.002144+00 12894 1133#灰色 SPMX-20240815308086 \N \N \N 1 \N [{"file_id": "46c3ead6-9ea9-4feb-94eb-6b90203bb8e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18fec4bd01504656bb7766ff186e5ff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18fec4bd01504656bb7766ff186e5ff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18fec4bd01504656bb7766ff186e5ff7.jpg", "file_size": 17981, "is_delete": false, "file_type": 1, "original_file_name": "1133#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fec4bd01504656bb7766ff186e5ff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fec4bd01504656bb7766ff186e5ff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fec4bd01504656bb7766ff186e5ff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18fec4bd01504656bb7766ff186e5ff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18fec4bd01504656bb7766ff186e5ff7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XPfjSyXrpJDPyll7kO8N9CXz5pM=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.004047+00 2025-12-09 10:15:19.004051+00 12895 DL31080#定位亮黄 SPMX-20240815308088 \N \N \N 1 \N [{"file_id": "e8642590-3f4b-4e42-a8e2-d918900d6a61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "061becdb1dcf4a01972f3cec8dd351f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "061becdb1dcf4a01972f3cec8dd351f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "061becdb1dcf4a01972f3cec8dd351f2.jpg", "file_size": 14326, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061becdb1dcf4a01972f3cec8dd351f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061becdb1dcf4a01972f3cec8dd351f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061becdb1dcf4a01972f3cec8dd351f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/061becdb1dcf4a01972f3cec8dd351f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/061becdb1dcf4a01972f3cec8dd351f2.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lnTKX4gDC8xYt7ShsS6vAu6TA0=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.005915+00 2025-12-09 10:15:19.005919+00 12896 DL31070#批布蓝绿 SPMX-20240815308078 \N \N \N 1 \N [{"file_id": "5ff8ed32-51ff-4b8a-83c8-7a1e1167c46b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34074acd5d734d1caf771af05e86a07a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34074acd5d734d1caf771af05e86a07a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34074acd5d734d1caf771af05e86a07a.jpg", "file_size": 21167, "is_delete": false, "file_type": 1, "original_file_name": "DL31070#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34074acd5d734d1caf771af05e86a07a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34074acd5d734d1caf771af05e86a07a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34074acd5d734d1caf771af05e86a07a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34074acd5d734d1caf771af05e86a07a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34074acd5d734d1caf771af05e86a07a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FJnhii7wI5KvnBxyCi3Eif4wqfQ=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.008052+00 2025-12-09 10:15:19.008056+00 12897 JTSS403FW#VS-D3 SPMX-20240815308081 \N \N \N 1 \N [{"file_id": "e625d5f4-2381-4908-81b5-7615badeaa6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16402e448c7f48a7aafbb6893bc1f1ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16402e448c7f48a7aafbb6893bc1f1ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16402e448c7f48a7aafbb6893bc1f1ef.jpg", "file_size": 16131, "is_delete": false, "file_type": 1, "original_file_name": "JTSS403FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16402e448c7f48a7aafbb6893bc1f1ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16402e448c7f48a7aafbb6893bc1f1ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16402e448c7f48a7aafbb6893bc1f1ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16402e448c7f48a7aafbb6893bc1f1ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16402e448c7f48a7aafbb6893bc1f1ef.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-VoaKsiE8-FlukMDiONUYtFo1Mg=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.009919+00 2025-12-09 10:15:19.009923+00 12898 C730FWF#门禁S SPMX-20240815308085 \N \N \N 1 \N [{"file_id": "4c1dbbec-28b3-4fc6-8308-f1250300bb1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b7ae800b7744765b89ff453d67c125e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b7ae800b7744765b89ff453d67c125e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b7ae800b7744765b89ff453d67c125e.jpg", "file_size": 16429, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#门禁S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b7ae800b7744765b89ff453d67c125e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b7ae800b7744765b89ff453d67c125e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b7ae800b7744765b89ff453d67c125e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b7ae800b7744765b89ff453d67c125e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b7ae800b7744765b89ff453d67c125e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkB4rDDsT4LWDlqf9jgub0viuVs=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.012017+00 2025-12-09 10:15:19.012021+00 12899 0005-11FWF#玫红 SPMX-20240815308090 \N \N \N 1 \N [{"file_id": "422bc407-f3db-47bf-9795-5b4cf6c42dd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0322ac079967468790c19ba05254f9a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0322ac079967468790c19ba05254f9a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0322ac079967468790c19ba05254f9a3.jpg", "file_size": 13949, "is_delete": false, "file_type": 1, "original_file_name": "0005-11FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0322ac079967468790c19ba05254f9a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0322ac079967468790c19ba05254f9a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0322ac079967468790c19ba05254f9a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0322ac079967468790c19ba05254f9a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0322ac079967468790c19ba05254f9a3.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DCDEErgO6RmgaREaobyK1OXlxM=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.013872+00 2025-12-09 10:15:19.013876+00 12900 LZ1310#背心款3号色 SPMX-20240815308099 \N \N \N 1 \N [{"file_id": "499501de-892c-4885-aa1c-a4872f81e2f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784c2cdcbbe94f7388d17ac56c4fcf6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784c2cdcbbe94f7388d17ac56c4fcf6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784c2cdcbbe94f7388d17ac56c4fcf6d.jpg", "file_size": 17432, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784c2cdcbbe94f7388d17ac56c4fcf6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784c2cdcbbe94f7388d17ac56c4fcf6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784c2cdcbbe94f7388d17ac56c4fcf6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784c2cdcbbe94f7388d17ac56c4fcf6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784c2cdcbbe94f7388d17ac56c4fcf6d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHTvxc8ghA4ToDAjpnNOAF3aubw=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.015969+00 2025-12-09 10:15:19.015973+00 12901 C730FWF#门禁XL SPMX-20240815308095 \N \N \N 1 \N [{"file_id": "252a725d-6954-4fca-8789-997e99701556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646ce9ad2a2541a190c72e0c659083cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646ce9ad2a2541a190c72e0c659083cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646ce9ad2a2541a190c72e0c659083cc.jpg", "file_size": 17145, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#门禁XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646ce9ad2a2541a190c72e0c659083cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646ce9ad2a2541a190c72e0c659083cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646ce9ad2a2541a190c72e0c659083cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646ce9ad2a2541a190c72e0c659083cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646ce9ad2a2541a190c72e0c659083cc.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Djb3nXFx4dSLRxJ6dn4eOWK7Zc=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.018044+00 2025-12-09 10:15:19.018048+00 12902 1133#粉色 SPMX-20240815308096 \N \N \N 1 \N [{"file_id": "b4d1e0ec-1e38-40bd-8b86-57d78b7f08b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd31b40fa79d418fbe31a8ad766f15ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd31b40fa79d418fbe31a8ad766f15ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd31b40fa79d418fbe31a8ad766f15ad.jpg", "file_size": 16728, "is_delete": false, "file_type": 1, "original_file_name": "1133#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd31b40fa79d418fbe31a8ad766f15ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd31b40fa79d418fbe31a8ad766f15ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd31b40fa79d418fbe31a8ad766f15ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd31b40fa79d418fbe31a8ad766f15ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd31b40fa79d418fbe31a8ad766f15ad.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1DgK4Eb8g3kuzrRNsWveZXKKGY=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.019905+00 2025-12-09 10:15:19.019909+00 12903 JTSS404FW#VS-D3 SPMX-20240815308093 \N \N \N 1 \N [{"file_id": "d02f795c-1b5f-4e9a-9212-c0020253e5e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2886ecca4ae4bc6b8e80ee982e532e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2886ecca4ae4bc6b8e80ee982e532e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2886ecca4ae4bc6b8e80ee982e532e8.jpg", "file_size": 11871, "is_delete": false, "file_type": 1, "original_file_name": "JTSS404FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2886ecca4ae4bc6b8e80ee982e532e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2886ecca4ae4bc6b8e80ee982e532e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2886ecca4ae4bc6b8e80ee982e532e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2886ecca4ae4bc6b8e80ee982e532e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2886ecca4ae4bc6b8e80ee982e532e8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJGrttVcbcVtNHTTcZq-MuFTZuw=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.021967+00 2025-12-09 10:15:19.021972+00 12904 LJH1369#红色 SPMX-20240815308094 \N \N \N 1 \N [{"file_id": "f3a9daf7-0cd5-4761-8bb8-311d0d071baf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "637e32320cdd4ec795b8b1d4e2f98599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "637e32320cdd4ec795b8b1d4e2f98599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "637e32320cdd4ec795b8b1d4e2f98599.jpg", "file_size": 55190, "is_delete": false, "file_type": 1, "original_file_name": "LJH1369#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637e32320cdd4ec795b8b1d4e2f98599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637e32320cdd4ec795b8b1d4e2f98599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637e32320cdd4ec795b8b1d4e2f98599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/637e32320cdd4ec795b8b1d4e2f98599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/637e32320cdd4ec795b8b1d4e2f98599.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSKm7hECegMPM7GzoiPaGgbI4Tk=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.024091+00 2025-12-09 10:15:19.024096+00 12905 HT3329#黄色 SPMX-20240815308089 \N \N \N 1 \N [{"file_id": "bd63f688-63d3-42ce-9742-3057ba224a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a36fa30afbf94fcc80fa2e93977feb02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a36fa30afbf94fcc80fa2e93977feb02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a36fa30afbf94fcc80fa2e93977feb02.jpg", "file_size": 68880, "is_delete": false, "file_type": 1, "original_file_name": "HT3329#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36fa30afbf94fcc80fa2e93977feb02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36fa30afbf94fcc80fa2e93977feb02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36fa30afbf94fcc80fa2e93977feb02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a36fa30afbf94fcc80fa2e93977feb02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a36fa30afbf94fcc80fa2e93977feb02.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd440NyNXHPHfTsfEczil99kCCA=", "createTime": "2024-08-15 14:54:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.025996+00 2025-12-09 10:15:19.026+00 12906 23-2120#A13-领子4XL SPMX-20240815308098 \N \N \N 1 \N [{"file_id": "93f6eadc-5eff-4332-a908-58ec40c42d6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2309413e71a849489e9512bc30fbe741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2309413e71a849489e9512bc30fbe741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2309413e71a849489e9512bc30fbe741.jpg", "file_size": 11391, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2309413e71a849489e9512bc30fbe741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2309413e71a849489e9512bc30fbe741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2309413e71a849489e9512bc30fbe741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2309413e71a849489e9512bc30fbe741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2309413e71a849489e9512bc30fbe741.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TCRy6ghZ82n6ZdHjj0hsD7oEdjA=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.028238+00 2025-12-09 10:15:19.028245+00 12907 DL31080#定位大红 SPMX-20240815308097 \N \N \N 1 \N [{"file_id": "259db6fd-fff7-4cbe-aa43-ef8ffcf82611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d22122dd458423cb8b30c6a4315a7a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d22122dd458423cb8b30c6a4315a7a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d22122dd458423cb8b30c6a4315a7a8.jpg", "file_size": 14407, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d22122dd458423cb8b30c6a4315a7a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d22122dd458423cb8b30c6a4315a7a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d22122dd458423cb8b30c6a4315a7a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d22122dd458423cb8b30c6a4315a7a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d22122dd458423cb8b30c6a4315a7a8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NnHBnkl-CROOMbenscdJVMLf1M=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.030635+00 2025-12-09 10:15:19.03064+00 12908 FM004#枣红 SPMX-20240815308092 \N \N \N 1 \N [{"file_id": "37fab785-a8b9-4403-9995-ba3249a558ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ff31f0dbc834aeab5a8ef74406efca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ff31f0dbc834aeab5a8ef74406efca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ff31f0dbc834aeab5a8ef74406efca4.jpg", "file_size": 17741, "is_delete": false, "file_type": 1, "original_file_name": "FM004#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff31f0dbc834aeab5a8ef74406efca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff31f0dbc834aeab5a8ef74406efca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff31f0dbc834aeab5a8ef74406efca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ff31f0dbc834aeab5a8ef74406efca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ff31f0dbc834aeab5a8ef74406efca4.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vbDW1GGXfDWeqSJiofRUBi8pGYU=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.03284+00 2025-12-09 10:15:19.032845+00 12909 8207#绿色 SPMX-20240815308091 \N \N \N 1 \N [{"file_id": "e2b12e43-9619-44a8-bdc1-65174f634b4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89513e8f27af4df7822c5948a5ceab61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89513e8f27af4df7822c5948a5ceab61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89513e8f27af4df7822c5948a5ceab61.jpg", "file_size": 10198, "is_delete": false, "file_type": 1, "original_file_name": "8207#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89513e8f27af4df7822c5948a5ceab61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89513e8f27af4df7822c5948a5ceab61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89513e8f27af4df7822c5948a5ceab61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89513e8f27af4df7822c5948a5ceab61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89513e8f27af4df7822c5948a5ceab61.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKBjl65xlIt1EBWnhweQFQo6hoY=", "createTime": "2024-08-15 14:54:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.034977+00 2025-12-09 10:15:19.034981+00 12910 0005-11FWF#绿色 SPMX-20240815308100 \N \N \N 1 \N [{"file_id": "76d5aec3-88b9-4d4e-afc6-19d9e28550f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2e691d668854b20bd361ea5ef7a5284.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2e691d668854b20bd361ea5ef7a5284.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2e691d668854b20bd361ea5ef7a5284.jpg", "file_size": 12892, "is_delete": false, "file_type": 1, "original_file_name": "0005-11FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e691d668854b20bd361ea5ef7a5284.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e691d668854b20bd361ea5ef7a5284.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e691d668854b20bd361ea5ef7a5284.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2e691d668854b20bd361ea5ef7a5284.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2e691d668854b20bd361ea5ef7a5284.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axFEXInCGVwfdC65aBe6vALjZkw=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.03707+00 2025-12-09 10:15:19.037075+00 12911 HT3330#兰色 SPMX-20240815308104 \N \N \N 1 \N [{"file_id": "4d7d2571-d2de-4d26-949f-891952b5aa8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f867ca88cb5488fa4c3774db8dbff12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f867ca88cb5488fa4c3774db8dbff12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f867ca88cb5488fa4c3774db8dbff12.jpg", "file_size": 81910, "is_delete": false, "file_type": 1, "original_file_name": "HT3330#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f867ca88cb5488fa4c3774db8dbff12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f867ca88cb5488fa4c3774db8dbff12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f867ca88cb5488fa4c3774db8dbff12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f867ca88cb5488fa4c3774db8dbff12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f867ca88cb5488fa4c3774db8dbff12.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xsI4IFb3A79TRCXG0DGWx4pGCJk=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.039148+00 2025-12-09 10:15:19.039152+00 12912 8207#黑色 SPMX-20240815308101 \N \N \N 1 \N [{"file_id": "5e5ade20-d4a5-43b6-aab4-cac8a590c968", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95fd0ad8160649f7a5ab5e91710c1ba9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95fd0ad8160649f7a5ab5e91710c1ba9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95fd0ad8160649f7a5ab5e91710c1ba9.jpg", "file_size": 10688, "is_delete": false, "file_type": 1, "original_file_name": "8207#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fd0ad8160649f7a5ab5e91710c1ba9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fd0ad8160649f7a5ab5e91710c1ba9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95fd0ad8160649f7a5ab5e91710c1ba9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95fd0ad8160649f7a5ab5e91710c1ba9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95fd0ad8160649f7a5ab5e91710c1ba9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2khE_0KiXIRb137EKVo65fOXl8=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.04124+00 2025-12-09 10:15:19.041244+00 12913 DL31080#定位彩兰 SPMX-20240815308102 \N \N \N 1 \N [{"file_id": "d37434d9-ac73-4e7a-b604-356ff95806f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93eac7b90731409981870bfa83fe5424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93eac7b90731409981870bfa83fe5424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93eac7b90731409981870bfa83fe5424.jpg", "file_size": 14250, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93eac7b90731409981870bfa83fe5424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93eac7b90731409981870bfa83fe5424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93eac7b90731409981870bfa83fe5424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93eac7b90731409981870bfa83fe5424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93eac7b90731409981870bfa83fe5424.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CmzvzH-ulaMw6zXUmO6ENN3_Slw=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.043115+00 2025-12-09 10:15:19.043119+00 12914 C730FWF#领子袖口净色 SPMX-20240815308103 \N \N \N 1 \N [{"file_id": "26e9600c-e3f9-4cde-8d37-793082a6d2f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "477a7dd6f83b4870846e326baafb11e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "477a7dd6f83b4870846e326baafb11e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "477a7dd6f83b4870846e326baafb11e8.jpg", "file_size": 4817, "is_delete": false, "file_type": 1, "original_file_name": "C730FWF#领子袖口净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477a7dd6f83b4870846e326baafb11e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477a7dd6f83b4870846e326baafb11e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477a7dd6f83b4870846e326baafb11e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/477a7dd6f83b4870846e326baafb11e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/477a7dd6f83b4870846e326baafb11e8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3EKKG-skNE1yLa6WBdlBbO1HH8=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.045176+00 2025-12-09 10:15:19.04518+00 12915 1133#绿色 SPMX-20240815308108 \N \N \N 1 \N [{"file_id": "88f9017b-9656-4ade-ad40-c5e93fbbc107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f99e1660443745619b395c1587aacea1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f99e1660443745619b395c1587aacea1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f99e1660443745619b395c1587aacea1.jpg", "file_size": 16307, "is_delete": false, "file_type": 1, "original_file_name": "1133#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99e1660443745619b395c1587aacea1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99e1660443745619b395c1587aacea1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f99e1660443745619b395c1587aacea1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f99e1660443745619b395c1587aacea1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f99e1660443745619b395c1587aacea1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g__0fl6BJvinzA-BnRf20HCSfws=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.047243+00 2025-12-09 10:15:19.047247+00 12916 JTSS405FW#VS-D3 SPMX-20240815308106 \N \N \N 1 \N [{"file_id": "9d962826-4df3-48ef-8f3e-a9cede0dc77b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1084d9aa77714d3b8553809453944e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1084d9aa77714d3b8553809453944e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1084d9aa77714d3b8553809453944e21.jpg", "file_size": 14257, "is_delete": false, "file_type": 1, "original_file_name": "JTSS405FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1084d9aa77714d3b8553809453944e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1084d9aa77714d3b8553809453944e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1084d9aa77714d3b8553809453944e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1084d9aa77714d3b8553809453944e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1084d9aa77714d3b8553809453944e21.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z81nbQLV5tM2YcdxQQhhQoJYlcw=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.049106+00 2025-12-09 10:15:19.04911+00 12917 FM004#玫红 SPMX-20240815308107 \N \N \N 1 \N [{"file_id": "179be772-7c4d-475f-b746-c9d32a058003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef817a381e36418d8503bc65d100f73d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef817a381e36418d8503bc65d100f73d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef817a381e36418d8503bc65d100f73d.jpg", "file_size": 17237, "is_delete": false, "file_type": 1, "original_file_name": "FM004#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef817a381e36418d8503bc65d100f73d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef817a381e36418d8503bc65d100f73d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef817a381e36418d8503bc65d100f73d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef817a381e36418d8503bc65d100f73d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef817a381e36418d8503bc65d100f73d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoYqODO1yV-KLv7lcR7Cq6eg4D0=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.051205+00 2025-12-09 10:15:19.05121+00 12918 23-2120#A14-3XL SPMX-20240815308105 \N \N \N 1 \N [{"file_id": "3ba3714d-a938-415e-8218-b14fafca8353", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa3d7437ae104528872f3b96955a9875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa3d7437ae104528872f3b96955a9875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa3d7437ae104528872f3b96955a9875.jpg", "file_size": 15454, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A14-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa3d7437ae104528872f3b96955a9875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa3d7437ae104528872f3b96955a9875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa3d7437ae104528872f3b96955a9875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa3d7437ae104528872f3b96955a9875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa3d7437ae104528872f3b96955a9875.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqj4WxaEmjg2feqQqikdYXotYCU=", "createTime": "2024-08-15 14:54:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.053257+00 2025-12-09 10:15:19.053261+00 12919 LZ1310#背心款4号色 SPMX-20240815308109 \N \N \N 1 \N [{"file_id": "254af24a-59b1-4864-8524-3eef6941d671", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aefcbd0275b4abda51162890d9c6167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aefcbd0275b4abda51162890d9c6167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aefcbd0275b4abda51162890d9c6167.jpg", "file_size": 18182, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aefcbd0275b4abda51162890d9c6167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aefcbd0275b4abda51162890d9c6167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aefcbd0275b4abda51162890d9c6167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aefcbd0275b4abda51162890d9c6167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aefcbd0275b4abda51162890d9c6167.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f0ajF81IGHU-4s5j1Ep7opo9Ahg=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.055342+00 2025-12-09 10:15:19.055347+00 12920 0005-12#WJC22番禺调色 SPMX-20240815308110 \N \N \N 1 \N [{"file_id": "f147e947-04c2-417f-843b-8609ce8aa9ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80014d0fdf474d57aa47cb3d4d6cd08d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80014d0fdf474d57aa47cb3d4d6cd08d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80014d0fdf474d57aa47cb3d4d6cd08d.jpg", "file_size": 21246, "is_delete": false, "file_type": 1, "original_file_name": "0005-12#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80014d0fdf474d57aa47cb3d4d6cd08d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80014d0fdf474d57aa47cb3d4d6cd08d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80014d0fdf474d57aa47cb3d4d6cd08d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80014d0fdf474d57aa47cb3d4d6cd08d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80014d0fdf474d57aa47cb3d4d6cd08d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3VHScQrR3VUICkG9bslL49v2Ls=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.057218+00 2025-12-09 10:15:19.057222+00 12921 LJH1369#黄色 SPMX-20240815308111 \N \N \N 1 \N [{"file_id": "df26014a-0cd8-4a0b-abbb-9e2fc80751bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e49945cb2b341fa9c8d5ac0f68f1d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e49945cb2b341fa9c8d5ac0f68f1d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e49945cb2b341fa9c8d5ac0f68f1d28.jpg", "file_size": 53522, "is_delete": false, "file_type": 1, "original_file_name": "LJH1369#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e49945cb2b341fa9c8d5ac0f68f1d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e49945cb2b341fa9c8d5ac0f68f1d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e49945cb2b341fa9c8d5ac0f68f1d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e49945cb2b341fa9c8d5ac0f68f1d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e49945cb2b341fa9c8d5ac0f68f1d28.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47oSVgq3dAFXkysSonJ_8opFRHY=", "createTime": "2024-08-15 14:54:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.059334+00 2025-12-09 10:15:19.059338+00 12922 JTSS406FW#VS-D3 SPMX-20240815308117 \N \N \N 1 \N [{"file_id": "cd07ba50-54a4-4749-8372-f0231f92eae3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "886635eebcfb4143a9a32f91f12af798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "886635eebcfb4143a9a32f91f12af798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "886635eebcfb4143a9a32f91f12af798.jpg", "file_size": 15617, "is_delete": false, "file_type": 1, "original_file_name": "JTSS406FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/886635eebcfb4143a9a32f91f12af798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/886635eebcfb4143a9a32f91f12af798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/886635eebcfb4143a9a32f91f12af798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/886635eebcfb4143a9a32f91f12af798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/886635eebcfb4143a9a32f91f12af798.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pc-FWC4CitLB6jV92AW5ukueD74=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.061191+00 2025-12-09 10:15:19.061195+00 12923 8226-2#湖绿色 SPMX-20240815308114 \N \N \N 1 \N [{"file_id": "3c80d26f-48de-4a19-83d1-fe7e3a955e21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f21241508fad4202ae130ac875c17d7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f21241508fad4202ae130ac875c17d7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f21241508fad4202ae130ac875c17d7b.jpg", "file_size": 19091, "is_delete": false, "file_type": 1, "original_file_name": "8226-2#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21241508fad4202ae130ac875c17d7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21241508fad4202ae130ac875c17d7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f21241508fad4202ae130ac875c17d7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f21241508fad4202ae130ac875c17d7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f21241508fad4202ae130ac875c17d7b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFs_SBV3FSq4YxOsnuQ4xAX_8DA=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.063291+00 2025-12-09 10:15:19.063295+00 12924 23-2120#A14-4XL SPMX-20240815308112 \N \N \N 1 \N [{"file_id": "0f3c6e30-1a0f-45b9-8483-a4afbcd5ca28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbe7fcda14914000ae2e717673d8946b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbe7fcda14914000ae2e717673d8946b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbe7fcda14914000ae2e717673d8946b.jpg", "file_size": 14323, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A14-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe7fcda14914000ae2e717673d8946b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe7fcda14914000ae2e717673d8946b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe7fcda14914000ae2e717673d8946b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbe7fcda14914000ae2e717673d8946b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbe7fcda14914000ae2e717673d8946b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aeE9kJ5NswU8aXp1rR5zUsaZ7x0=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.065345+00 2025-12-09 10:15:19.065349+00 12925 FM004#粉色 SPMX-20240815308115 \N \N \N 1 \N [{"file_id": "95e73d7e-96af-478b-b89d-277a3f8c6d58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98262e91fea74864afedbce433544f86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98262e91fea74864afedbce433544f86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98262e91fea74864afedbce433544f86.jpg", "file_size": 16497, "is_delete": false, "file_type": 1, "original_file_name": "FM004#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98262e91fea74864afedbce433544f86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98262e91fea74864afedbce433544f86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98262e91fea74864afedbce433544f86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98262e91fea74864afedbce433544f86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98262e91fea74864afedbce433544f86.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1sAcn5cnFnMeRv02bkg580efrpM=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.067431+00 2025-12-09 10:15:19.067435+00 12926 DL31080#定位浅粉 SPMX-20240815308118 \N \N \N 1 \N [{"file_id": "e645c6b3-a0b4-4ddb-a619-9e331e20ae2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cd4621974ed4db5adeef4af0c45ab31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cd4621974ed4db5adeef4af0c45ab31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cd4621974ed4db5adeef4af0c45ab31.jpg", "file_size": 14068, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd4621974ed4db5adeef4af0c45ab31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd4621974ed4db5adeef4af0c45ab31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd4621974ed4db5adeef4af0c45ab31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cd4621974ed4db5adeef4af0c45ab31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cd4621974ed4db5adeef4af0c45ab31.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Qb7Wi3oLXbr0OWsj7w-kwqhjto=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.069326+00 2025-12-09 10:15:19.06933+00 12927 LJH1523#橙色 SPMX-20240815308122 \N \N \N 1 \N [{"file_id": "a313b254-48c3-40bb-a53d-bc22e7b53f53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9146dadc41f43d8b06ae4ed0bdd1af9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9146dadc41f43d8b06ae4ed0bdd1af9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9146dadc41f43d8b06ae4ed0bdd1af9.jpg", "file_size": 47932, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9146dadc41f43d8b06ae4ed0bdd1af9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9146dadc41f43d8b06ae4ed0bdd1af9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9146dadc41f43d8b06ae4ed0bdd1af9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9146dadc41f43d8b06ae4ed0bdd1af9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9146dadc41f43d8b06ae4ed0bdd1af9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-6iWPK1wqduTt3j949ufj3Ly5k=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.071396+00 2025-12-09 10:15:19.0714+00 12928 C732FWE#正身L SPMX-20240815308113 \N \N \N 1 \N [{"file_id": "3cbc9133-4af1-47fe-834d-85d69667c8b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7c1a50e1be948ac9448a77cad88e7f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7c1a50e1be948ac9448a77cad88e7f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7c1a50e1be948ac9448a77cad88e7f9.jpg", "file_size": 19121, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c1a50e1be948ac9448a77cad88e7f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c1a50e1be948ac9448a77cad88e7f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c1a50e1be948ac9448a77cad88e7f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7c1a50e1be948ac9448a77cad88e7f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7c1a50e1be948ac9448a77cad88e7f9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0YP_2ahbkXH5thN4X4XluXwjYzM=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.073507+00 2025-12-09 10:15:19.073511+00 12929 1133#黑色 SPMX-20240815308116 \N \N \N 1 \N [{"file_id": "3c8a5454-904d-4c3e-9d7d-a4bde7362909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d73558f535db45969009d6ecd6948a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d73558f535db45969009d6ecd6948a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d73558f535db45969009d6ecd6948a97.jpg", "file_size": 11731, "is_delete": false, "file_type": 1, "original_file_name": "1133#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73558f535db45969009d6ecd6948a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73558f535db45969009d6ecd6948a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73558f535db45969009d6ecd6948a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d73558f535db45969009d6ecd6948a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d73558f535db45969009d6ecd6948a97.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLkCbA74tRWw2ZHELL2FlXe22pA=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.075364+00 2025-12-09 10:15:19.075368+00 12930 LZ1310#背心款5号色 SPMX-20240815308121 \N \N \N 1 \N [{"file_id": "19f4e76a-5278-4bd0-a6ec-dcf15c7c0467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e426ec541440b9b2d6f7b593df3ab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e426ec541440b9b2d6f7b593df3ab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e426ec541440b9b2d6f7b593df3ab6.jpg", "file_size": 17524, "is_delete": false, "file_type": 1, "original_file_name": "LZ1310#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e426ec541440b9b2d6f7b593df3ab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e426ec541440b9b2d6f7b593df3ab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e426ec541440b9b2d6f7b593df3ab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e426ec541440b9b2d6f7b593df3ab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e426ec541440b9b2d6f7b593df3ab6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UC_YLMY6cpTliKK0Yman9YQ85dI=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.077531+00 2025-12-09 10:15:19.077536+00 12931 HT3330#原版色 SPMX-20240815308119 \N \N \N 1 \N [{"file_id": "f8c80f84-c80e-4f57-bb1e-342e73e2e365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a83594dd2c8d4756be1246d396ba073c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a83594dd2c8d4756be1246d396ba073c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a83594dd2c8d4756be1246d396ba073c.jpg", "file_size": 81643, "is_delete": false, "file_type": 1, "original_file_name": "HT3330#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83594dd2c8d4756be1246d396ba073c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83594dd2c8d4756be1246d396ba073c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83594dd2c8d4756be1246d396ba073c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a83594dd2c8d4756be1246d396ba073c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a83594dd2c8d4756be1246d396ba073c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V959nr5-uA39_qkgtYTyVYTSbbg=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.079883+00 2025-12-09 10:15:19.079888+00 12932 C732FWE#正身M SPMX-20240815308124 \N \N \N 1 \N [{"file_id": "95bbd991-8b49-4809-9d6e-f7ff832fc973", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1defa1c1aa594900b323b73c941e9d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1defa1c1aa594900b323b73c941e9d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1defa1c1aa594900b323b73c941e9d42.jpg", "file_size": 17167, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1defa1c1aa594900b323b73c941e9d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1defa1c1aa594900b323b73c941e9d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1defa1c1aa594900b323b73c941e9d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1defa1c1aa594900b323b73c941e9d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1defa1c1aa594900b323b73c941e9d42.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50I9fOVYqOuSWy1WOwyX3A8Z2Ds=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.081804+00 2025-12-09 10:15:19.081809+00 12933 0005-12FWF#V5曲线 SPMX-20240815308120 \N \N \N 1 \N [{"file_id": "b6469076-3bc9-49a0-8453-7bc86bab2876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f64450d800e434693011920e27cbc77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f64450d800e434693011920e27cbc77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f64450d800e434693011920e27cbc77.jpg", "file_size": 9117, "is_delete": false, "file_type": 1, "original_file_name": "0005-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f64450d800e434693011920e27cbc77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f64450d800e434693011920e27cbc77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f64450d800e434693011920e27cbc77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f64450d800e434693011920e27cbc77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f64450d800e434693011920e27cbc77.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:peDtRQXUJJEtfPb6OG-PaRhO8N0=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.083678+00 2025-12-09 10:15:19.083682+00 12934 23-2120#A14-领子3XL SPMX-20240815308123 \N \N \N 1 \N [{"file_id": "0a964395-52e2-4b2e-b9eb-cd359da58916", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe2bc5327ce436a9b399bf0d8959d3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe2bc5327ce436a9b399bf0d8959d3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe2bc5327ce436a9b399bf0d8959d3d.jpg", "file_size": 11435, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A14-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe2bc5327ce436a9b399bf0d8959d3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe2bc5327ce436a9b399bf0d8959d3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe2bc5327ce436a9b399bf0d8959d3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe2bc5327ce436a9b399bf0d8959d3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe2bc5327ce436a9b399bf0d8959d3d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMjmN1ZJz2EQoACFKS_49bXtm5A=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.085591+00 2025-12-09 10:15:19.085595+00 12935 8226-2#玫红色 SPMX-20240815308125 \N \N \N 1 \N [{"file_id": "9452b33e-9343-464c-8307-32bdf3240c04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33955b3e5fa14e28bbe00aab59641b76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33955b3e5fa14e28bbe00aab59641b76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33955b3e5fa14e28bbe00aab59641b76.jpg", "file_size": 19601, "is_delete": false, "file_type": 1, "original_file_name": "8226-2#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33955b3e5fa14e28bbe00aab59641b76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33955b3e5fa14e28bbe00aab59641b76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33955b3e5fa14e28bbe00aab59641b76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33955b3e5fa14e28bbe00aab59641b76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33955b3e5fa14e28bbe00aab59641b76.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zsR1NH2bXqUavRwRpY1PlDAn6Nc=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.087808+00 2025-12-09 10:15:19.087814+00 12936 DL31080#定位玫红 SPMX-20240815308127 \N \N \N 1 \N [{"file_id": "5e73de59-183a-4062-b3ea-dfbc92ebf6d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8943ab3f1eca4831b3f242deabd4fe78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8943ab3f1eca4831b3f242deabd4fe78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8943ab3f1eca4831b3f242deabd4fe78.jpg", "file_size": 14057, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8943ab3f1eca4831b3f242deabd4fe78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8943ab3f1eca4831b3f242deabd4fe78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8943ab3f1eca4831b3f242deabd4fe78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8943ab3f1eca4831b3f242deabd4fe78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8943ab3f1eca4831b3f242deabd4fe78.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8jbTrJAREBENdL1tD327CoiprI=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.089978+00 2025-12-09 10:15:19.089984+00 12937 JTSS407FW#VS-D3 SPMX-20240815308130 \N \N \N 1 \N [{"file_id": "e272ff27-1951-42fb-a4f1-82513390a503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ee53aa9445e4811a8af8f8f195b5394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ee53aa9445e4811a8af8f8f195b5394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ee53aa9445e4811a8af8f8f195b5394.jpg", "file_size": 10368, "is_delete": false, "file_type": 1, "original_file_name": "JTSS407FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee53aa9445e4811a8af8f8f195b5394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee53aa9445e4811a8af8f8f195b5394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee53aa9445e4811a8af8f8f195b5394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ee53aa9445e4811a8af8f8f195b5394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ee53aa9445e4811a8af8f8f195b5394.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qDm-NMSPBl-YuaxRR98eXy4QQ50=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.09201+00 2025-12-09 10:15:19.092015+00 12938 LZ1311#背心款1号色 SPMX-20240815308140 \N \N \N 1 \N [{"file_id": "768ede39-37b9-4b7e-8cbe-4156f8590a77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "902852bd5e2142f39c903a1d244f7cf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "902852bd5e2142f39c903a1d244f7cf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "902852bd5e2142f39c903a1d244f7cf1.jpg", "file_size": 15126, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902852bd5e2142f39c903a1d244f7cf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902852bd5e2142f39c903a1d244f7cf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902852bd5e2142f39c903a1d244f7cf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/902852bd5e2142f39c903a1d244f7cf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/902852bd5e2142f39c903a1d244f7cf1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:94d1fGDnpy-hROYG6VNrVqH-HBY=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.094056+00 2025-12-09 10:15:19.094062+00 12939 HT3330#绿色 SPMX-20240815308131 \N \N \N 1 \N [{"file_id": "29a8dd97-27e5-4443-bce1-12e1a777738b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b88bdb293d44399091c9c6331ef0c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b88bdb293d44399091c9c6331ef0c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b88bdb293d44399091c9c6331ef0c5.jpg", "file_size": 77020, "is_delete": false, "file_type": 1, "original_file_name": "HT3330#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b88bdb293d44399091c9c6331ef0c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b88bdb293d44399091c9c6331ef0c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b88bdb293d44399091c9c6331ef0c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b88bdb293d44399091c9c6331ef0c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b88bdb293d44399091c9c6331ef0c5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oqrba9TJUMq-fFhrXPrFq3N-Kf8=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.096053+00 2025-12-09 10:15:19.096059+00 12940 0005-13#WJC22 SPMX-20240815308133 \N \N \N 1 \N [{"file_id": "26ddc812-eae7-4709-96da-048b5ed51c7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48530be148ad4e3dbc4c2ac248e0d4f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48530be148ad4e3dbc4c2ac248e0d4f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48530be148ad4e3dbc4c2ac248e0d4f5.jpg", "file_size": 9832, "is_delete": false, "file_type": 1, "original_file_name": "0005-13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48530be148ad4e3dbc4c2ac248e0d4f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48530be148ad4e3dbc4c2ac248e0d4f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48530be148ad4e3dbc4c2ac248e0d4f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48530be148ad4e3dbc4c2ac248e0d4f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48530be148ad4e3dbc4c2ac248e0d4f5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YahD7PMDzVPfEmnWlvxXi0ybbsc=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.098045+00 2025-12-09 10:15:19.098051+00 12941 8226-2#黄色 SPMX-20240815308138 \N \N \N 1 \N [{"file_id": "b151b463-fa37-4339-8067-a3a6477a10a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c9412336e98439d926d0e0ae9360ede.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c9412336e98439d926d0e0ae9360ede.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c9412336e98439d926d0e0ae9360ede.jpg", "file_size": 21413, "is_delete": false, "file_type": 1, "original_file_name": "8226-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c9412336e98439d926d0e0ae9360ede.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c9412336e98439d926d0e0ae9360ede.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c9412336e98439d926d0e0ae9360ede.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c9412336e98439d926d0e0ae9360ede.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c9412336e98439d926d0e0ae9360ede.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XVU1-WF5rmFm5yrYe-css0ZK1g=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.099992+00 2025-12-09 10:15:19.099997+00 12942 DL31080#定位蓝绿 SPMX-20240815308134 \N \N \N 1 \N [{"file_id": "ccd0eff0-f600-4039-a5c0-09810133386e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efea7cee443a45268b3aa0910f8e9e6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efea7cee443a45268b3aa0910f8e9e6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efea7cee443a45268b3aa0910f8e9e6f.jpg", "file_size": 14698, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#定位蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efea7cee443a45268b3aa0910f8e9e6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efea7cee443a45268b3aa0910f8e9e6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efea7cee443a45268b3aa0910f8e9e6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efea7cee443a45268b3aa0910f8e9e6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efea7cee443a45268b3aa0910f8e9e6f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yq_S-23Fqq_YZxqpt_TS2Lkbju4=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.101981+00 2025-12-09 10:15:19.101987+00 12943 FM004#黄色 SPMX-20240815308126 \N \N \N 1 \N [{"file_id": "4c5ae5dc-e8bd-4d82-97db-11ae1a7860ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74b43c0e2b5c4efeb7debf75a69b30e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74b43c0e2b5c4efeb7debf75a69b30e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74b43c0e2b5c4efeb7debf75a69b30e5.jpg", "file_size": 16886, "is_delete": false, "file_type": 1, "original_file_name": "FM004#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b43c0e2b5c4efeb7debf75a69b30e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b43c0e2b5c4efeb7debf75a69b30e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b43c0e2b5c4efeb7debf75a69b30e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74b43c0e2b5c4efeb7debf75a69b30e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74b43c0e2b5c4efeb7debf75a69b30e5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:58kDjh1AD_2Iub7qd6B3G4xGawY=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.103995+00 2025-12-09 10:15:19.104001+00 12944 1135#军绿 SPMX-20240815308128 \N \N \N 1 \N [{"file_id": "c30e3bab-a2c8-414d-8177-1d3b325ec54d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e34afd0e1b534cee8a8f301e801f4c88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e34afd0e1b534cee8a8f301e801f4c88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e34afd0e1b534cee8a8f301e801f4c88.jpg", "file_size": 16324, "is_delete": false, "file_type": 1, "original_file_name": "1135#军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34afd0e1b534cee8a8f301e801f4c88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34afd0e1b534cee8a8f301e801f4c88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e34afd0e1b534cee8a8f301e801f4c88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e34afd0e1b534cee8a8f301e801f4c88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e34afd0e1b534cee8a8f301e801f4c88.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_6-rXmU0AjbQ1qQwAnzwtb-dZs=", "createTime": "2024-08-15 14:54:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.106055+00 2025-12-09 10:15:19.106061+00 12945 23-2120#A14-领子4XL SPMX-20240815308135 \N \N \N 1 \N [{"file_id": "b3c138af-8c52-4114-984b-d811ff395126", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9a66ea0dd6e4ace98e1456bb2615d5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9a66ea0dd6e4ace98e1456bb2615d5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9a66ea0dd6e4ace98e1456bb2615d5c.jpg", "file_size": 11597, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A14-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a66ea0dd6e4ace98e1456bb2615d5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a66ea0dd6e4ace98e1456bb2615d5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a66ea0dd6e4ace98e1456bb2615d5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9a66ea0dd6e4ace98e1456bb2615d5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9a66ea0dd6e4ace98e1456bb2615d5c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:532giJitW3n2n9O8L-7gC-YOvn0=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.108038+00 2025-12-09 10:15:19.108043+00 12946 LJH1523#玫红 SPMX-20240815308132 \N \N \N 1 \N [{"file_id": "58ee8d06-9844-4c24-a87a-aefe307ae32f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a82d382b25544f6823b872bb47cb36a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a82d382b25544f6823b872bb47cb36a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a82d382b25544f6823b872bb47cb36a.jpg", "file_size": 48868, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a82d382b25544f6823b872bb47cb36a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a82d382b25544f6823b872bb47cb36a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a82d382b25544f6823b872bb47cb36a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a82d382b25544f6823b872bb47cb36a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a82d382b25544f6823b872bb47cb36a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:42kd2fqvUt8Xgpe-yh0gbYRpDTo=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.110055+00 2025-12-09 10:15:19.11006+00 12947 1135#粉黑 SPMX-20240815308137 \N \N \N 1 \N [{"file_id": "7db0d4f8-a207-41a8-9d5c-631d82fe5182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00411688577f4db7b8a1a4d37b6d8d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00411688577f4db7b8a1a4d37b6d8d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00411688577f4db7b8a1a4d37b6d8d46.jpg", "file_size": 14266, "is_delete": false, "file_type": 1, "original_file_name": "1135#粉黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00411688577f4db7b8a1a4d37b6d8d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00411688577f4db7b8a1a4d37b6d8d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00411688577f4db7b8a1a4d37b6d8d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00411688577f4db7b8a1a4d37b6d8d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00411688577f4db7b8a1a4d37b6d8d46.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o1Gb0uwU8P2zci9wgQMbnxF1_vc=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.112042+00 2025-12-09 10:15:19.112048+00 12948 FM005#大红 SPMX-20240815308136 \N \N \N 1 \N [{"file_id": "ab5ea991-8cbb-4bb6-b1ec-e3943746c5e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e52bce3707947d0b04f16328510ac6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e52bce3707947d0b04f16328510ac6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e52bce3707947d0b04f16328510ac6b.jpg", "file_size": 21561, "is_delete": false, "file_type": 1, "original_file_name": "FM005#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e52bce3707947d0b04f16328510ac6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e52bce3707947d0b04f16328510ac6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e52bce3707947d0b04f16328510ac6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e52bce3707947d0b04f16328510ac6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e52bce3707947d0b04f16328510ac6b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3AD7IXkwPihAjfzAPF3EGQrzUnE=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.114024+00 2025-12-09 10:15:19.114029+00 12949 LZ1311#捆条布 SPMX-20240815308129 \N \N \N 1 \N [{"file_id": "85be396c-74c3-4109-a233-5da61058c725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df469c830d4f4eb8bcd11cb96830630a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df469c830d4f4eb8bcd11cb96830630a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df469c830d4f4eb8bcd11cb96830630a.jpg", "file_size": 10642, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df469c830d4f4eb8bcd11cb96830630a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df469c830d4f4eb8bcd11cb96830630a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df469c830d4f4eb8bcd11cb96830630a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df469c830d4f4eb8bcd11cb96830630a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df469c830d4f4eb8bcd11cb96830630a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UbDrOxRJHm9WDxylsrFaerArBbs=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.116005+00 2025-12-09 10:15:19.116011+00 12950 C732FWE#正身S SPMX-20240815308139 \N \N \N 1 \N [{"file_id": "871eb0f6-7f15-40cb-bc0d-6f158cb13790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d54ac00ef58d4228809bc79298326c16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d54ac00ef58d4228809bc79298326c16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d54ac00ef58d4228809bc79298326c16.jpg", "file_size": 17538, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#正身S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54ac00ef58d4228809bc79298326c16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54ac00ef58d4228809bc79298326c16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d54ac00ef58d4228809bc79298326c16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d54ac00ef58d4228809bc79298326c16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d54ac00ef58d4228809bc79298326c16.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nkyZEJyIpeJsZVF82euOHOI0mBo=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.118004+00 2025-12-09 10:15:19.118008+00 12951 HT3330#黄色 SPMX-20240815308142 \N \N \N 1 \N [{"file_id": "34e07830-a3df-4abb-be27-acc7c94e6f20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7481486ae15e4cb3b940ecb5879aceee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7481486ae15e4cb3b940ecb5879aceee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7481486ae15e4cb3b940ecb5879aceee.jpg", "file_size": 79992, "is_delete": false, "file_type": 1, "original_file_name": "HT3330#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481486ae15e4cb3b940ecb5879aceee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481486ae15e4cb3b940ecb5879aceee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7481486ae15e4cb3b940ecb5879aceee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7481486ae15e4cb3b940ecb5879aceee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7481486ae15e4cb3b940ecb5879aceee.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFEAxd4V6wa5e_wlS-iOKF7V-NU=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.120261+00 2025-12-09 10:15:19.120267+00 12952 23-2120#A2-3XL SPMX-20240815308149 \N \N \N 1 \N [{"file_id": "52e5b2f1-3de9-4fb4-adae-24d725a9903d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23842caa1660457f8e9396eb40ff9fa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23842caa1660457f8e9396eb40ff9fa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23842caa1660457f8e9396eb40ff9fa6.jpg", "file_size": 20594, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23842caa1660457f8e9396eb40ff9fa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23842caa1660457f8e9396eb40ff9fa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23842caa1660457f8e9396eb40ff9fa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23842caa1660457f8e9396eb40ff9fa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23842caa1660457f8e9396eb40ff9fa6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSVEVNk9TzmV-jSUJwsXB2AvHfU=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.122687+00 2025-12-09 10:15:19.122693+00 12953 LZ1311#背心款2号色 SPMX-20240815308151 \N \N \N 1 \N [{"file_id": "08275806-ab01-457a-8423-da03a954f24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55603a9db8a94945816380788f0636b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55603a9db8a94945816380788f0636b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55603a9db8a94945816380788f0636b9.jpg", "file_size": 15225, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55603a9db8a94945816380788f0636b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55603a9db8a94945816380788f0636b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55603a9db8a94945816380788f0636b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55603a9db8a94945816380788f0636b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55603a9db8a94945816380788f0636b9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODspbf-UACtMNgj99-Cw94M7eWs=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.125052+00 2025-12-09 10:15:19.125058+00 12954 DL31080#批布亮黄 SPMX-20240815308145 \N \N \N 1 \N [{"file_id": "37522766-0d99-4925-abcf-109a476250ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "622c5979a3a946669fd793c9d7491be2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "622c5979a3a946669fd793c9d7491be2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "622c5979a3a946669fd793c9d7491be2.jpg", "file_size": 27169, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622c5979a3a946669fd793c9d7491be2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622c5979a3a946669fd793c9d7491be2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622c5979a3a946669fd793c9d7491be2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/622c5979a3a946669fd793c9d7491be2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/622c5979a3a946669fd793c9d7491be2.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhnkVo2l6eEs_rcat4MGBfz9DHs=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.127213+00 2025-12-09 10:15:19.127218+00 12955 1135#酒红 SPMX-20240815308147 \N \N \N 1 \N [{"file_id": "1a5d0d90-2d5a-43a7-9468-e890fb7bc5af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd51397ee2e64acf86341912eaa7b577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd51397ee2e64acf86341912eaa7b577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd51397ee2e64acf86341912eaa7b577.jpg", "file_size": 11199, "is_delete": false, "file_type": 1, "original_file_name": "1135#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd51397ee2e64acf86341912eaa7b577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd51397ee2e64acf86341912eaa7b577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd51397ee2e64acf86341912eaa7b577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd51397ee2e64acf86341912eaa7b577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd51397ee2e64acf86341912eaa7b577.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCGOTKAjBPWxWXEgct3No1RiknM=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.129409+00 2025-12-09 10:15:19.129415+00 12956 LJH1523#红色 SPMX-20240815308154 \N \N \N 1 \N [{"file_id": "28868690-56b0-4758-9a89-5413decc206e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6549688de6ae4d2d99404b4bd16d3f7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6549688de6ae4d2d99404b4bd16d3f7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6549688de6ae4d2d99404b4bd16d3f7a.jpg", "file_size": 51459, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6549688de6ae4d2d99404b4bd16d3f7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6549688de6ae4d2d99404b4bd16d3f7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6549688de6ae4d2d99404b4bd16d3f7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6549688de6ae4d2d99404b4bd16d3f7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6549688de6ae4d2d99404b4bd16d3f7a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q2PjfJKeqjOimlV8bkdKYDRtR-Y=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.131837+00 2025-12-09 10:15:19.131843+00 12957 JTSS408FW#VS-D3 SPMX-20240815308141 \N \N \N 1 \N [{"file_id": "f4b07613-eaaf-45f2-ac6a-c8f49265af8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63c1d328cfd2456d8e251d74587771c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63c1d328cfd2456d8e251d74587771c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63c1d328cfd2456d8e251d74587771c8.jpg", "file_size": 19054, "is_delete": false, "file_type": 1, "original_file_name": "JTSS408FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c1d328cfd2456d8e251d74587771c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c1d328cfd2456d8e251d74587771c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c1d328cfd2456d8e251d74587771c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63c1d328cfd2456d8e251d74587771c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63c1d328cfd2456d8e251d74587771c8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6_ktvxYvDKeLAANKJWbLfW6GG5A=", "createTime": "2024-08-15 14:54:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.134229+00 2025-12-09 10:15:19.134235+00 12958 8234#LWQ15 SPMX-20240815308150 \N \N \N 1 \N [{"file_id": "3f952b6d-2e18-40d2-9694-55dc440486d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6e18478a6445beadc05279e659f0e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6e18478a6445beadc05279e659f0e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6e18478a6445beadc05279e659f0e9.jpg", "file_size": 32608, "is_delete": false, "file_type": 1, "original_file_name": "8234#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6e18478a6445beadc05279e659f0e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6e18478a6445beadc05279e659f0e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6e18478a6445beadc05279e659f0e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6e18478a6445beadc05279e659f0e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6e18478a6445beadc05279e659f0e9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mt_gie99VYZTJYfPpJWyPmGZRp8=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.136367+00 2025-12-09 10:15:19.136372+00 12959 JTSS409FW#VS-D3 SPMX-20240815308155 \N \N \N 1 \N [{"file_id": "6793a1d2-8524-4bb4-b81d-71d217f256a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4685ad4a453c45188cd210a72e950d75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4685ad4a453c45188cd210a72e950d75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4685ad4a453c45188cd210a72e950d75.jpg", "file_size": 23917, "is_delete": false, "file_type": 1, "original_file_name": "JTSS409FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4685ad4a453c45188cd210a72e950d75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4685ad4a453c45188cd210a72e950d75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4685ad4a453c45188cd210a72e950d75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4685ad4a453c45188cd210a72e950d75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4685ad4a453c45188cd210a72e950d75.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLlc4neL_rhSRZjLImYDlHS3au4=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.138806+00 2025-12-09 10:15:19.138812+00 12960 C732FWE#正身XL SPMX-20240815308148 \N \N \N 1 \N [{"file_id": "fbd06a03-2112-446b-86e2-84b7c33fa24a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13bd3edab8ca47ff9bc34aaecdb527b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13bd3edab8ca47ff9bc34aaecdb527b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13bd3edab8ca47ff9bc34aaecdb527b9.jpg", "file_size": 18130, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd3edab8ca47ff9bc34aaecdb527b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd3edab8ca47ff9bc34aaecdb527b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd3edab8ca47ff9bc34aaecdb527b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13bd3edab8ca47ff9bc34aaecdb527b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13bd3edab8ca47ff9bc34aaecdb527b9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gX9IL7kJhtRsrnMK_lkiQs7JM6E=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.141195+00 2025-12-09 10:15:19.141204+00 12961 LJH1523#白色 SPMX-20240815308144 \N \N \N 1 \N [{"file_id": "d999ce34-86fa-4b41-a8f8-2ac123387503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f189def78b1b4488b6a3d87eedfc539d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f189def78b1b4488b6a3d87eedfc539d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f189def78b1b4488b6a3d87eedfc539d.jpg", "file_size": 54061, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f189def78b1b4488b6a3d87eedfc539d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f189def78b1b4488b6a3d87eedfc539d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f189def78b1b4488b6a3d87eedfc539d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f189def78b1b4488b6a3d87eedfc539d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f189def78b1b4488b6a3d87eedfc539d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdERcP5uvD_KH-Y9OYZwe5SMjow=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.143347+00 2025-12-09 10:15:19.143353+00 12962 FM005#彩蓝 SPMX-20240815308146 \N \N \N 1 \N [{"file_id": "3f0e070c-163c-4cd3-a775-6de97c84a0a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e45574deed4038bf7a632f31342b31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e45574deed4038bf7a632f31342b31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e45574deed4038bf7a632f31342b31.jpg", "file_size": 23100, "is_delete": false, "file_type": 1, "original_file_name": "FM005#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e45574deed4038bf7a632f31342b31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e45574deed4038bf7a632f31342b31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e45574deed4038bf7a632f31342b31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e45574deed4038bf7a632f31342b31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e45574deed4038bf7a632f31342b31.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZmaLGaZTbHV9G9ucrNmtIpyThXw=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.145488+00 2025-12-09 10:15:19.145494+00 12963 0005-14#WJC22 SPMX-20240815308152 \N \N \N 1 \N [{"file_id": "d9b66abf-8d7c-4c61-b036-d16c7dd0e719", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69478b8dfe034b4e963d4e2d2050a6fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69478b8dfe034b4e963d4e2d2050a6fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69478b8dfe034b4e963d4e2d2050a6fe.jpg", "file_size": 7083, "is_delete": false, "file_type": 1, "original_file_name": "0005-14#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69478b8dfe034b4e963d4e2d2050a6fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69478b8dfe034b4e963d4e2d2050a6fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69478b8dfe034b4e963d4e2d2050a6fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69478b8dfe034b4e963d4e2d2050a6fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69478b8dfe034b4e963d4e2d2050a6fe.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StNDjvtwczEntRkyxl5TCsuIHGc=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.147868+00 2025-12-09 10:15:19.147874+00 12964 0005-13FWF#V5曲线 SPMX-20240815308143 \N \N \N 1 \N [{"file_id": "e0af4f3e-c87c-41ec-a3f2-6a5ea4852a00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c049c3d2a984cd2960c3bf59b0601f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c049c3d2a984cd2960c3bf59b0601f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c049c3d2a984cd2960c3bf59b0601f3.jpg", "file_size": 20925, "is_delete": false, "file_type": 1, "original_file_name": "0005-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c049c3d2a984cd2960c3bf59b0601f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c049c3d2a984cd2960c3bf59b0601f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c049c3d2a984cd2960c3bf59b0601f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c049c3d2a984cd2960c3bf59b0601f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c049c3d2a984cd2960c3bf59b0601f3.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CSWCgt_yYPgxDyWlFEPdW4gqZEo=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.150148+00 2025-12-09 10:15:19.150154+00 12965 HT3331#兰色 SPMX-20240815308153 \N \N \N 1 \N [{"file_id": "c9e00a9b-b895-4723-b935-dfa4d2f8aab2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98e64b20be6c412d9d158086daa29d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98e64b20be6c412d9d158086daa29d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98e64b20be6c412d9d158086daa29d8b.jpg", "file_size": 64848, "is_delete": false, "file_type": 1, "original_file_name": "HT3331#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98e64b20be6c412d9d158086daa29d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98e64b20be6c412d9d158086daa29d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98e64b20be6c412d9d158086daa29d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98e64b20be6c412d9d158086daa29d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98e64b20be6c412d9d158086daa29d8b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mS7wdtq3_uWWyL5GziF-IFRNlAc=", "createTime": "2024-08-15 14:54:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.152546+00 2025-12-09 10:15:19.152552+00 12966 DL31080#批布大红 SPMX-20240815308156 \N \N \N 1 \N [{"file_id": "a4ee7b50-d65a-4291-8645-471684c1f9ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e30426cd06884862bab9d0703ce3e559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e30426cd06884862bab9d0703ce3e559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e30426cd06884862bab9d0703ce3e559.jpg", "file_size": 29316, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30426cd06884862bab9d0703ce3e559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30426cd06884862bab9d0703ce3e559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30426cd06884862bab9d0703ce3e559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e30426cd06884862bab9d0703ce3e559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e30426cd06884862bab9d0703ce3e559.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mFpWs8-OPnf0CdqHEzHtm0Q--A=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.154929+00 2025-12-09 10:15:19.154934+00 12967 JTSS410FW#VS-D3 SPMX-20240815308159 \N \N \N 1 \N [{"file_id": "a481acd8-a6d3-4087-a3f5-135fdf686108", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a15397b0aa8d479084bd6a15993ee5e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a15397b0aa8d479084bd6a15993ee5e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a15397b0aa8d479084bd6a15993ee5e4.jpg", "file_size": 24905, "is_delete": false, "file_type": 1, "original_file_name": "JTSS410FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15397b0aa8d479084bd6a15993ee5e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15397b0aa8d479084bd6a15993ee5e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a15397b0aa8d479084bd6a15993ee5e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a15397b0aa8d479084bd6a15993ee5e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a15397b0aa8d479084bd6a15993ee5e4.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOvzTCyDTA6B6F61Dp8bK_5PSBc=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.157295+00 2025-12-09 10:15:19.157301+00 12968 LJH1523#绿色 SPMX-20240815308166 \N \N \N 1 \N [{"file_id": "84a36028-77b2-45da-919e-81ae52347cda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14e5ede3da9748e5b11d953aa879c6ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14e5ede3da9748e5b11d953aa879c6ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14e5ede3da9748e5b11d953aa879c6ec.jpg", "file_size": 47644, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e5ede3da9748e5b11d953aa879c6ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e5ede3da9748e5b11d953aa879c6ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e5ede3da9748e5b11d953aa879c6ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14e5ede3da9748e5b11d953aa879c6ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14e5ede3da9748e5b11d953aa879c6ec.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:paJk-N0e7fLrps_hnI6jmjXr86E=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.159441+00 2025-12-09 10:15:19.159447+00 12969 LZ1311#背心款3号色 SPMX-20240815308164 \N \N \N 1 \N [{"file_id": "681fb41f-6b28-48c4-8000-b8e18aefc582", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6e4d8fe2cd64df1878524e7ed948071.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6e4d8fe2cd64df1878524e7ed948071.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6e4d8fe2cd64df1878524e7ed948071.jpg", "file_size": 16003, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6e4d8fe2cd64df1878524e7ed948071.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6e4d8fe2cd64df1878524e7ed948071.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6e4d8fe2cd64df1878524e7ed948071.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6e4d8fe2cd64df1878524e7ed948071.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6e4d8fe2cd64df1878524e7ed948071.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7z6pZ2E3kqDhxh1R067vNcA4Pw=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.161607+00 2025-12-09 10:15:19.161612+00 12970 C732FWE#门筒L SPMX-20240815308168 \N \N \N 1 \N [{"file_id": "e45cf9f7-6f3d-45a3-b80e-8c65fdbb757a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7d1a7d5afa3463a85123411e1aa8022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7d1a7d5afa3463a85123411e1aa8022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7d1a7d5afa3463a85123411e1aa8022.jpg", "file_size": 23265, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#门筒L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d1a7d5afa3463a85123411e1aa8022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d1a7d5afa3463a85123411e1aa8022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7d1a7d5afa3463a85123411e1aa8022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7d1a7d5afa3463a85123411e1aa8022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7d1a7d5afa3463a85123411e1aa8022.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4j6DaWvETRxNCCrljJDyjDBVu7Q=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.163924+00 2025-12-09 10:15:19.163929+00 12971 C732FWE#袖米色批布 SPMX-20240815308158 \N \N \N 1 \N [{"file_id": "8098f5bf-88fe-4aa0-b052-1c88e737349b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06d85dcfb93a49819dc40ee19acae9f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06d85dcfb93a49819dc40ee19acae9f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06d85dcfb93a49819dc40ee19acae9f6.jpg", "file_size": 6502, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#袖米色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d85dcfb93a49819dc40ee19acae9f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d85dcfb93a49819dc40ee19acae9f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d85dcfb93a49819dc40ee19acae9f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06d85dcfb93a49819dc40ee19acae9f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06d85dcfb93a49819dc40ee19acae9f6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWko-7-RSVmY4aa3OTXeyki6EUo=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.166317+00 2025-12-09 10:15:19.166322+00 12972 0005-14FWF#V5曲线 SPMX-20240815308162 \N \N \N 1 \N [{"file_id": "5a3debe8-b468-45f9-8a32-216aff3acba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe080ff9b02a4075a1f34325dbe60b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe080ff9b02a4075a1f34325dbe60b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe080ff9b02a4075a1f34325dbe60b87.jpg", "file_size": 11705, "is_delete": false, "file_type": 1, "original_file_name": "0005-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe080ff9b02a4075a1f34325dbe60b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe080ff9b02a4075a1f34325dbe60b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe080ff9b02a4075a1f34325dbe60b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe080ff9b02a4075a1f34325dbe60b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe080ff9b02a4075a1f34325dbe60b87.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taj-GEtBeVeeq0TxRaz7egXjrfw=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.1687+00 2025-12-09 10:15:19.16871+00 12973 HT3331#原版色 SPMX-20240815308165 \N \N \N 1 \N [{"file_id": "6b52f30c-2a55-4f3c-a838-ac03f5137b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12dff35cd65b417499c28bce4de329b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12dff35cd65b417499c28bce4de329b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12dff35cd65b417499c28bce4de329b9.jpg", "file_size": 61257, "is_delete": false, "file_type": 1, "original_file_name": "HT3331#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12dff35cd65b417499c28bce4de329b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12dff35cd65b417499c28bce4de329b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12dff35cd65b417499c28bce4de329b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12dff35cd65b417499c28bce4de329b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12dff35cd65b417499c28bce4de329b9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OIvNB4RDt-WYYLH32IpgX86uP_k=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.171093+00 2025-12-09 10:15:19.171098+00 12974 23-2120#A2-4XL SPMX-20240815308160 \N \N \N 1 \N [{"file_id": "3add2d26-c603-47f5-ad8d-9eef882be24b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5f9f30f13874c00883ce2ff83b64abf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5f9f30f13874c00883ce2ff83b64abf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5f9f30f13874c00883ce2ff83b64abf.jpg", "file_size": 19289, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f9f30f13874c00883ce2ff83b64abf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f9f30f13874c00883ce2ff83b64abf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f9f30f13874c00883ce2ff83b64abf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5f9f30f13874c00883ce2ff83b64abf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5f9f30f13874c00883ce2ff83b64abf.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5wAI_LXQP1bj0ti6Fss86Wqdx0=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.173456+00 2025-12-09 10:15:19.173462+00 12975 DL31080#批布彩兰 SPMX-20240815308167 \N \N \N 1 \N [{"file_id": "b52b6453-aefc-4946-8f23-a0104a9c49b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4d93c42a0c84298ae3db51a338aff2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4d93c42a0c84298ae3db51a338aff2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4d93c42a0c84298ae3db51a338aff2d.jpg", "file_size": 26917, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d93c42a0c84298ae3db51a338aff2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d93c42a0c84298ae3db51a338aff2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d93c42a0c84298ae3db51a338aff2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4d93c42a0c84298ae3db51a338aff2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4d93c42a0c84298ae3db51a338aff2d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8zEOky0ZaqDw0lgEk98T3DLUT8=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.175617+00 2025-12-09 10:15:19.175623+00 12976 1135#黑白 SPMX-20240815308157 \N \N \N 1 \N [{"file_id": "86088bdc-0862-4709-8b42-0f49bb36346b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a26bb2eed094cd08edb35f99c8c8025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a26bb2eed094cd08edb35f99c8c8025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a26bb2eed094cd08edb35f99c8c8025.jpg", "file_size": 14700, "is_delete": false, "file_type": 1, "original_file_name": "1135#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a26bb2eed094cd08edb35f99c8c8025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a26bb2eed094cd08edb35f99c8c8025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a26bb2eed094cd08edb35f99c8c8025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a26bb2eed094cd08edb35f99c8c8025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a26bb2eed094cd08edb35f99c8c8025.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bOtVmwP3CplhpIn-Jgc4nXm0vPk=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.177797+00 2025-12-09 10:15:19.177802+00 12977 8235# SPMX-20240815308163 \N \N \N 1 \N [{"file_id": "c5e8b8e2-b1c3-4b6d-ab3b-2d5b19b85bb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6174e96cc8b04e61b85000123e645327.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6174e96cc8b04e61b85000123e645327.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6174e96cc8b04e61b85000123e645327.jpg", "file_size": 16067, "is_delete": false, "file_type": 1, "original_file_name": "8235#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174e96cc8b04e61b85000123e645327.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174e96cc8b04e61b85000123e645327.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174e96cc8b04e61b85000123e645327.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6174e96cc8b04e61b85000123e645327.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6174e96cc8b04e61b85000123e645327.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPD76VfpG7BUgTwXGfbudOqkEHE=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.180195+00 2025-12-09 10:15:19.1802+00 12978 FM005#枣红 SPMX-20240815308161 \N \N \N 1 \N [{"file_id": "3b91bcf9-8784-4482-aa06-22bf297f67bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a018d3db617c4d87a0cc7b710d1e7c45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a018d3db617c4d87a0cc7b710d1e7c45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a018d3db617c4d87a0cc7b710d1e7c45.jpg", "file_size": 21767, "is_delete": false, "file_type": 1, "original_file_name": "FM005#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a018d3db617c4d87a0cc7b710d1e7c45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a018d3db617c4d87a0cc7b710d1e7c45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a018d3db617c4d87a0cc7b710d1e7c45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a018d3db617c4d87a0cc7b710d1e7c45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a018d3db617c4d87a0cc7b710d1e7c45.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAmNS0aPH3vYi2QcZyEU5AdX-UI=", "createTime": "2024-08-15 14:54:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.182623+00 2025-12-09 10:15:19.182629+00 12979 DL31080#批布浅粉 SPMX-20240815308177 \N \N \N 1 \N [{"file_id": "25d33f02-7621-47a9-9b31-8a2676498e9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "253bfd27816c4d75a73ff91ad643be74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "253bfd27816c4d75a73ff91ad643be74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "253bfd27816c4d75a73ff91ad643be74.jpg", "file_size": 27226, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253bfd27816c4d75a73ff91ad643be74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253bfd27816c4d75a73ff91ad643be74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253bfd27816c4d75a73ff91ad643be74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/253bfd27816c4d75a73ff91ad643be74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/253bfd27816c4d75a73ff91ad643be74.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R-NxtmeJdz8OgGpWsysyeNlOUZE=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.18477+00 2025-12-09 10:15:19.184775+00 12980 23-2120#A2-小领子4XL SPMX-20240815308178 \N \N \N 1 \N [{"file_id": "cd69ab87-0655-4f46-b93e-d33115c4ccf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "835b70aef7864e57bcd44e78cb6f56af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "835b70aef7864e57bcd44e78cb6f56af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "835b70aef7864e57bcd44e78cb6f56af.jpg", "file_size": 9133, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-小领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835b70aef7864e57bcd44e78cb6f56af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835b70aef7864e57bcd44e78cb6f56af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/835b70aef7864e57bcd44e78cb6f56af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/835b70aef7864e57bcd44e78cb6f56af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/835b70aef7864e57bcd44e78cb6f56af.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ARoZFpB_3us8Mca06ZbHlNrzV-4=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.187134+00 2025-12-09 10:15:19.18714+00 12981 FM005#粉色 SPMX-20240815308172 \N \N \N 1 \N [{"file_id": "bb664e7e-edf1-48ac-ade0-c000b3301eb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3063fbcd17c549749d9c1348ff46011f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3063fbcd17c549749d9c1348ff46011f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3063fbcd17c549749d9c1348ff46011f.jpg", "file_size": 15883, "is_delete": false, "file_type": 1, "original_file_name": "FM005#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063fbcd17c549749d9c1348ff46011f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063fbcd17c549749d9c1348ff46011f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063fbcd17c549749d9c1348ff46011f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3063fbcd17c549749d9c1348ff46011f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3063fbcd17c549749d9c1348ff46011f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-7uOd8JKUpg2lDnDmTf0eu35cI=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.189483+00 2025-12-09 10:15:19.189489+00 12982 JTSS411FW#VS-D3 SPMX-20240815308173 \N \N \N 1 \N [{"file_id": "73740471-8b7c-416f-9da4-f77ade7ee244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f7898a7b0845b1864736c2708d7801.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f7898a7b0845b1864736c2708d7801.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f7898a7b0845b1864736c2708d7801.jpg", "file_size": 13875, "is_delete": false, "file_type": 1, "original_file_name": "JTSS411FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f7898a7b0845b1864736c2708d7801.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f7898a7b0845b1864736c2708d7801.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f7898a7b0845b1864736c2708d7801.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f7898a7b0845b1864736c2708d7801.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f7898a7b0845b1864736c2708d7801.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mL2V5JkiuoefD0oUSmhi8oGWX8=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.191665+00 2025-12-09 10:15:19.19167+00 12983 11358#咖啡色 SPMX-20240815308170 \N \N \N 1 \N [{"file_id": "ac17bdf5-e184-4cc1-842e-04cdeb035b48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e28f42901cc3458bba7be50b3602e593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e28f42901cc3458bba7be50b3602e593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e28f42901cc3458bba7be50b3602e593.jpg", "file_size": 15100, "is_delete": false, "file_type": 1, "original_file_name": "11358#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28f42901cc3458bba7be50b3602e593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28f42901cc3458bba7be50b3602e593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28f42901cc3458bba7be50b3602e593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e28f42901cc3458bba7be50b3602e593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e28f42901cc3458bba7be50b3602e593.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bz2Z3diGTKThRhyyDtaB1vHyZ8s=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.193826+00 2025-12-09 10:15:19.193832+00 12984 0005-15#彩蓝 SPMX-20240815308174 \N \N \N 1 \N [{"file_id": "82560a4c-eb07-4868-a29d-5cb7c6c92290", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13b504e47bb9491cafd57e387fd9956c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13b504e47bb9491cafd57e387fd9956c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13b504e47bb9491cafd57e387fd9956c.jpg", "file_size": 8476, "is_delete": false, "file_type": 1, "original_file_name": "0005-15#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13b504e47bb9491cafd57e387fd9956c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13b504e47bb9491cafd57e387fd9956c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13b504e47bb9491cafd57e387fd9956c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13b504e47bb9491cafd57e387fd9956c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13b504e47bb9491cafd57e387fd9956c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uarqrqEyyFaacV2wljf1s2fuFkQ=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.196269+00 2025-12-09 10:15:19.196274+00 12985 824-2FWE#VS-D3 SPMX-20240815308180 \N \N \N 1 \N [{"file_id": "246c9134-f0a2-435c-821d-06984549fdaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7852a83f7542209f7c138bb1ce8c3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7852a83f7542209f7c138bb1ce8c3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7852a83f7542209f7c138bb1ce8c3f.jpg", "file_size": 24750, "is_delete": false, "file_type": 1, "original_file_name": "824-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7852a83f7542209f7c138bb1ce8c3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7852a83f7542209f7c138bb1ce8c3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7852a83f7542209f7c138bb1ce8c3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7852a83f7542209f7c138bb1ce8c3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7852a83f7542209f7c138bb1ce8c3f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qrkcx1nAKUawTVaDpNnHQ7z0TpE=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.198642+00 2025-12-09 10:15:19.198647+00 12986 11359#黑色 SPMX-20240815308179 \N \N \N 1 \N [{"file_id": "b1ab0c1a-2191-4509-b269-d80a6d9aa9b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12e53a808554c90a548b64428565230.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12e53a808554c90a548b64428565230.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12e53a808554c90a548b64428565230.jpg", "file_size": 15088, "is_delete": false, "file_type": 1, "original_file_name": "11359#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12e53a808554c90a548b64428565230.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12e53a808554c90a548b64428565230.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12e53a808554c90a548b64428565230.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12e53a808554c90a548b64428565230.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12e53a808554c90a548b64428565230.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdUP3XI4Xkf2fydjVAbAQn8dWLc=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.200795+00 2025-12-09 10:15:19.2008+00 12987 HT3331#红色 SPMX-20240815308175 \N \N \N 1 \N [{"file_id": "e23d1f6f-2551-4216-be8d-cbadf55341e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6db4a8fc39a94e1191e964746b7ea3ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6db4a8fc39a94e1191e964746b7ea3ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6db4a8fc39a94e1191e964746b7ea3ca.jpg", "file_size": 68146, "is_delete": false, "file_type": 1, "original_file_name": "HT3331#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db4a8fc39a94e1191e964746b7ea3ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db4a8fc39a94e1191e964746b7ea3ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db4a8fc39a94e1191e964746b7ea3ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6db4a8fc39a94e1191e964746b7ea3ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6db4a8fc39a94e1191e964746b7ea3ca.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbqEQ6HdiPtvZ_mRI47V7MN5b78=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.20329+00 2025-12-09 10:15:19.203296+00 12988 824-1FWE#VS-D3 SPMX-20240815308171 \N \N \N 1 \N [{"file_id": "432661c7-eae1-4f60-8cba-5c7e34c136d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4fc1d12575a44b3bcaa0fb5959d6925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4fc1d12575a44b3bcaa0fb5959d6925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4fc1d12575a44b3bcaa0fb5959d6925.jpg", "file_size": 19448, "is_delete": false, "file_type": 1, "original_file_name": "824-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fc1d12575a44b3bcaa0fb5959d6925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fc1d12575a44b3bcaa0fb5959d6925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fc1d12575a44b3bcaa0fb5959d6925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4fc1d12575a44b3bcaa0fb5959d6925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4fc1d12575a44b3bcaa0fb5959d6925.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2qLOwYQQCmbyJynQCDzIdVdZGWU=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.205686+00 2025-12-09 10:15:19.205692+00 12989 LJH1523#黄色 SPMX-20240815308176 \N \N \N 1 \N [{"file_id": "29736294-3b7d-4fe3-bf6d-bd0876779781", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08a6034986da4f53ae7fb2b65dca49ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08a6034986da4f53ae7fb2b65dca49ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08a6034986da4f53ae7fb2b65dca49ed.jpg", "file_size": 49326, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6034986da4f53ae7fb2b65dca49ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6034986da4f53ae7fb2b65dca49ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a6034986da4f53ae7fb2b65dca49ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08a6034986da4f53ae7fb2b65dca49ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08a6034986da4f53ae7fb2b65dca49ed.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEOF11RsW2VwI9DaBT9a8YkKJ5s=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.207834+00 2025-12-09 10:15:19.20784+00 12990 23-2120#A2-大领子4XL SPMX-20240815308169 \N \N \N 1 \N [{"file_id": "098f5187-e30d-42a7-b428-6c7934a6c19f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6d6c153e0442cd8bbd7e6430c9bc93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6d6c153e0442cd8bbd7e6430c9bc93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6d6c153e0442cd8bbd7e6430c9bc93.jpg", "file_size": 8441, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-大领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d6c153e0442cd8bbd7e6430c9bc93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d6c153e0442cd8bbd7e6430c9bc93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d6c153e0442cd8bbd7e6430c9bc93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6d6c153e0442cd8bbd7e6430c9bc93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6d6c153e0442cd8bbd7e6430c9bc93.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5N-2Mi6cDgoGC5Cnsg23XBe-KM=", "createTime": "2024-08-15 14:54:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.210018+00 2025-12-09 10:15:19.210024+00 12991 JTSS412FW#VS-D3 SPMX-20240815308184 \N \N \N 1 \N [{"file_id": "d09a2fa6-e52d-4573-b479-15d3661073a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2e3faad2710415c904f3bc606190af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2e3faad2710415c904f3bc606190af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2e3faad2710415c904f3bc606190af2.jpg", "file_size": 16075, "is_delete": false, "file_type": 1, "original_file_name": "JTSS412FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e3faad2710415c904f3bc606190af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e3faad2710415c904f3bc606190af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e3faad2710415c904f3bc606190af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2e3faad2710415c904f3bc606190af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2e3faad2710415c904f3bc606190af2.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeuanGNNx03EprLYMAW7vsHAkk4=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.21243+00 2025-12-09 10:15:19.212435+00 12992 LJH1523#黑色 SPMX-20240815308187 \N \N \N 1 \N [{"file_id": "03c275f3-40f8-4ec6-a3b0-5b292ec9d037", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10f91252150144f7862216bda122ac1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10f91252150144f7862216bda122ac1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10f91252150144f7862216bda122ac1e.jpg", "file_size": 56630, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f91252150144f7862216bda122ac1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f91252150144f7862216bda122ac1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10f91252150144f7862216bda122ac1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10f91252150144f7862216bda122ac1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10f91252150144f7862216bda122ac1e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FX2d0bggXMXeBu2Mxn9PNqBFgbs=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.214853+00 2025-12-09 10:15:19.214858+00 12993 FM005#黄色 SPMX-20240815308196 \N \N \N 1 \N [{"file_id": "ca43f406-f08f-4221-aed3-4b5e419a9db7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a3ab5b7d9764949bfccbd994c5f80c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a3ab5b7d9764949bfccbd994c5f80c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a3ab5b7d9764949bfccbd994c5f80c7.jpg", "file_size": 17450, "is_delete": false, "file_type": 1, "original_file_name": "FM005#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a3ab5b7d9764949bfccbd994c5f80c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a3ab5b7d9764949bfccbd994c5f80c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a3ab5b7d9764949bfccbd994c5f80c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a3ab5b7d9764949bfccbd994c5f80c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a3ab5b7d9764949bfccbd994c5f80c7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0NP1wFBC_AzkKB2dl0knuwXbcs=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.217002+00 2025-12-09 10:15:19.217007+00 12994 FM005#酒红 SPMX-20240815308182 \N \N \N 1 \N [{"file_id": "e3c749c8-6c7f-463e-83ce-e5042ff797ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8a7d25945a446438cb42ab9d5cedaa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8a7d25945a446438cb42ab9d5cedaa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8a7d25945a446438cb42ab9d5cedaa9.jpg", "file_size": 22359, "is_delete": false, "file_type": 1, "original_file_name": "FM005#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a7d25945a446438cb42ab9d5cedaa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a7d25945a446438cb42ab9d5cedaa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a7d25945a446438cb42ab9d5cedaa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8a7d25945a446438cb42ab9d5cedaa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8a7d25945a446438cb42ab9d5cedaa9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIO89nPxA0vxQHfXKSB9NxU4BqI=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.22848+00 2025-12-09 10:15:19.228485+00 12999 HT3331#黄色 SPMX-20240815308186 \N \N \N 1 \N [{"file_id": "663755f8-c662-48e1-9321-e159ade021ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a5206d19bfa41b6a9507ad2c9c12858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a5206d19bfa41b6a9507ad2c9c12858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a5206d19bfa41b6a9507ad2c9c12858.jpg", "file_size": 73572, "is_delete": false, "file_type": 1, "original_file_name": "HT3331#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5206d19bfa41b6a9507ad2c9c12858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5206d19bfa41b6a9507ad2c9c12858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5206d19bfa41b6a9507ad2c9c12858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a5206d19bfa41b6a9507ad2c9c12858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a5206d19bfa41b6a9507ad2c9c12858.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgixqB-Jwv7kQv6Os3p-XMs4VaI=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.219398+00 2025-12-09 10:15:19.219403+00 12995 LZ1311#背心款4号色 SPMX-20240815308183 \N \N \N 1 \N [{"file_id": "682d9d63-4463-4467-8daf-c172d50696bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "758c2e862f324430811efab63fa1968c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "758c2e862f324430811efab63fa1968c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "758c2e862f324430811efab63fa1968c.jpg", "file_size": 15980, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/758c2e862f324430811efab63fa1968c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/758c2e862f324430811efab63fa1968c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/758c2e862f324430811efab63fa1968c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/758c2e862f324430811efab63fa1968c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/758c2e862f324430811efab63fa1968c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iE-aXA6pLxZxK9XmpDmvRNGWTzI=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.221801+00 2025-12-09 10:15:19.221806+00 12996 0005-15#枣红 SPMX-20240815308185 \N \N \N 1 \N [{"file_id": "f23c64ca-98ee-4779-9004-285abb95f349", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc75e05afcd84710a5976771c055a999.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc75e05afcd84710a5976771c055a999.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc75e05afcd84710a5976771c055a999.jpg", "file_size": 8823, "is_delete": false, "file_type": 1, "original_file_name": "0005-15#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc75e05afcd84710a5976771c055a999.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc75e05afcd84710a5976771c055a999.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc75e05afcd84710a5976771c055a999.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc75e05afcd84710a5976771c055a999.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc75e05afcd84710a5976771c055a999.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1b31zLxpcIMEk18RgUjKUMy2Cc=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.223944+00 2025-12-09 10:15:19.223949+00 12997 23-2120#A2-领子3XL SPMX-20240815308189 \N \N \N 1 \N [{"file_id": "ef9f0713-1116-40bc-a429-045efb66ccc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a690a27891b410381cf66dce23586ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a690a27891b410381cf66dce23586ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a690a27891b410381cf66dce23586ea.jpg", "file_size": 13319, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a690a27891b410381cf66dce23586ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a690a27891b410381cf66dce23586ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a690a27891b410381cf66dce23586ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a690a27891b410381cf66dce23586ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a690a27891b410381cf66dce23586ea.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yipdF6fl234TM2yZbXj8aAR1pd8=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.226095+00 2025-12-09 10:15:19.2261+00 12998 C732FWE#门筒M SPMX-20240815308181 \N \N \N 1 \N [{"file_id": "b6d8a1f3-fa4a-4405-bde7-82d1c818ac66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e7baf92ed064eeaaba377a7b6543c95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e7baf92ed064eeaaba377a7b6543c95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e7baf92ed064eeaaba377a7b6543c95.jpg", "file_size": 22660, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#门筒M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7baf92ed064eeaaba377a7b6543c95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7baf92ed064eeaaba377a7b6543c95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7baf92ed064eeaaba377a7b6543c95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e7baf92ed064eeaaba377a7b6543c95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e7baf92ed064eeaaba377a7b6543c95.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcEeTfq5hdU6YAb7b32e51akN54=", "createTime": "2024-08-15 14:54:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.230866+00 2025-12-09 10:15:19.230871+00 13000 DL31080#批布玫红 SPMX-20240815308188 \N \N \N 1 \N [{"file_id": "f911a0d7-00b0-41c8-a72c-8db42d335eec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7f7c4d31854f2e815748d08f5fda9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7f7c4d31854f2e815748d08f5fda9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7f7c4d31854f2e815748d08f5fda9d.jpg", "file_size": 26579, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7f7c4d31854f2e815748d08f5fda9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7f7c4d31854f2e815748d08f5fda9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7f7c4d31854f2e815748d08f5fda9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7f7c4d31854f2e815748d08f5fda9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7f7c4d31854f2e815748d08f5fda9d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yd2aXYz7mOAXPOUrPtZl6EW4cDM=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.233099+00 2025-12-09 10:15:19.233105+00 13001 C732FWE#门筒S SPMX-20240815308194 \N \N \N 1 \N [{"file_id": "1043aa14-daef-452f-b0e4-6c8e4d8deed5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0694668b47543459032992c6710220e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0694668b47543459032992c6710220e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0694668b47543459032992c6710220e.jpg", "file_size": 22973, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#门筒S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0694668b47543459032992c6710220e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0694668b47543459032992c6710220e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0694668b47543459032992c6710220e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0694668b47543459032992c6710220e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0694668b47543459032992c6710220e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DsBL5m8JZm8B-8kzGDQ7rJBzX7E=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.235548+00 2025-12-09 10:15:19.235553+00 13002 LZ1311#背心款5号色 SPMX-20240815308195 \N \N \N 1 \N [{"file_id": "9d6f008d-69cf-4fbb-94d8-0ed64468be71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30754f5d39b641d0a4aeaee425b82828.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30754f5d39b641d0a4aeaee425b82828.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30754f5d39b641d0a4aeaee425b82828.jpg", "file_size": 15408, "is_delete": false, "file_type": 1, "original_file_name": "LZ1311#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30754f5d39b641d0a4aeaee425b82828.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30754f5d39b641d0a4aeaee425b82828.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30754f5d39b641d0a4aeaee425b82828.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30754f5d39b641d0a4aeaee425b82828.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30754f5d39b641d0a4aeaee425b82828.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z34PfFfZlcLS_RD4AfxbEk35Csg=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.238251+00 2025-12-09 10:15:19.238256+00 13003 HT3332#原版色 SPMX-20240815308197 \N \N \N 1 \N [{"file_id": "7b54e57e-2bd4-4e59-8bbc-f5cab4b3777b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de18c23a965d445380c76bb97be30e17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de18c23a965d445380c76bb97be30e17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de18c23a965d445380c76bb97be30e17.jpg", "file_size": 78275, "is_delete": false, "file_type": 1, "original_file_name": "HT3332#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de18c23a965d445380c76bb97be30e17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de18c23a965d445380c76bb97be30e17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de18c23a965d445380c76bb97be30e17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de18c23a965d445380c76bb97be30e17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de18c23a965d445380c76bb97be30e17.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:usuz-45vtdvxi8TfpDfqi4QLxnA=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.240924+00 2025-12-09 10:15:19.24093+00 13004 1137#VS-D3 SPMX-20240815308191 \N \N \N 1 \N [{"file_id": "58e565c0-cfb9-4785-ac6a-77dc0f0ed352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fadf622f49704fcd8e4267b11b1d2e5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fadf622f49704fcd8e4267b11b1d2e5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fadf622f49704fcd8e4267b11b1d2e5f.jpg", "file_size": 19702, "is_delete": false, "file_type": 1, "original_file_name": "1137#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadf622f49704fcd8e4267b11b1d2e5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadf622f49704fcd8e4267b11b1d2e5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadf622f49704fcd8e4267b11b1d2e5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fadf622f49704fcd8e4267b11b1d2e5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fadf622f49704fcd8e4267b11b1d2e5f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:919MPwP4S_uo8AQnCbRbbQF5wsE=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.243381+00 2025-12-09 10:15:19.243386+00 13005 0005-15#枣红净色 SPMX-20240815308193 \N \N \N 1 \N [{"file_id": "5b7a2398-5aca-4dc7-8596-eda153cc44f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5459c74e8804b3a8e7bcfe01bea7f7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5459c74e8804b3a8e7bcfe01bea7f7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5459c74e8804b3a8e7bcfe01bea7f7a.jpg", "file_size": 7367, "is_delete": false, "file_type": 1, "original_file_name": "0005-15#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5459c74e8804b3a8e7bcfe01bea7f7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5459c74e8804b3a8e7bcfe01bea7f7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5459c74e8804b3a8e7bcfe01bea7f7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5459c74e8804b3a8e7bcfe01bea7f7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5459c74e8804b3a8e7bcfe01bea7f7a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3q53_xiiRPgZm88ktyS_eMh81E=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.246042+00 2025-12-09 10:15:19.246047+00 13006 824-3FWE#VS-D3 SPMX-20240815308192 \N \N \N 1 \N [{"file_id": "21c93742-e4a1-4a33-a26b-8f3d5fc0beef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66b855f8cf3843d0b0d76e05d759ed06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66b855f8cf3843d0b0d76e05d759ed06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66b855f8cf3843d0b0d76e05d759ed06.jpg", "file_size": 21448, "is_delete": false, "file_type": 1, "original_file_name": "824-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66b855f8cf3843d0b0d76e05d759ed06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66b855f8cf3843d0b0d76e05d759ed06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66b855f8cf3843d0b0d76e05d759ed06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66b855f8cf3843d0b0d76e05d759ed06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66b855f8cf3843d0b0d76e05d759ed06.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wwpyd4vlwFeAmoKXGg_f50C5yfo=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.248572+00 2025-12-09 10:15:19.248577+00 13007 JTSS413FW#VS-D3 SPMX-20240815308198 \N \N \N 1 \N [{"file_id": "74dbe466-6195-42a6-8b45-06a6ffbe3e74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce957430b6eb4d098196c430c831bdb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce957430b6eb4d098196c430c831bdb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce957430b6eb4d098196c430c831bdb1.jpg", "file_size": 13190, "is_delete": false, "file_type": 1, "original_file_name": "JTSS413FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce957430b6eb4d098196c430c831bdb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce957430b6eb4d098196c430c831bdb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce957430b6eb4d098196c430c831bdb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce957430b6eb4d098196c430c831bdb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce957430b6eb4d098196c430c831bdb1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltl6AieMlsDXNzfDlm2_rMKqqUc=", "createTime": "2024-08-15 14:55:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.251324+00 2025-12-09 10:15:19.251329+00 13008 FM006#原版色 SPMX-20240815308207 \N \N \N 1 \N [{"file_id": "e2e54a5e-768c-4c35-acde-bd2abec86249", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a71c10c2db8b4ce79e0b8ca7d3141623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a71c10c2db8b4ce79e0b8ca7d3141623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a71c10c2db8b4ce79e0b8ca7d3141623.jpg", "file_size": 16765, "is_delete": false, "file_type": 1, "original_file_name": "FM006#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71c10c2db8b4ce79e0b8ca7d3141623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71c10c2db8b4ce79e0b8ca7d3141623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71c10c2db8b4ce79e0b8ca7d3141623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a71c10c2db8b4ce79e0b8ca7d3141623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a71c10c2db8b4ce79e0b8ca7d3141623.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlaZGyKKV-4M8bzuB8b1d6RZGD0=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.254002+00 2025-12-09 10:15:19.254007+00 13009 8246#LWQ15 SPMX-20240815308203 \N \N \N 1 \N [{"file_id": "4968308a-3cb3-4fa1-aff0-69822019fca8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8a332e5140140a89b6883c345c64a7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8a332e5140140a89b6883c345c64a7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8a332e5140140a89b6883c345c64a7d.jpg", "file_size": 13778, "is_delete": false, "file_type": 1, "original_file_name": "8246#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a332e5140140a89b6883c345c64a7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a332e5140140a89b6883c345c64a7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a332e5140140a89b6883c345c64a7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8a332e5140140a89b6883c345c64a7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8a332e5140140a89b6883c345c64a7d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NSQ-fabBQtyBxGkJeKBMy3nRIFM=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.256479+00 2025-12-09 10:15:19.256484+00 13010 23-2120#A2-领子4XL SPMX-20240815308201 \N \N \N 1 \N [{"file_id": "dcfe56f6-c544-4524-8a4d-7094171d0943", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75a996f278ca48a9ac57f30e5e2914ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75a996f278ca48a9ac57f30e5e2914ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75a996f278ca48a9ac57f30e5e2914ff.jpg", "file_size": 13497, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a996f278ca48a9ac57f30e5e2914ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a996f278ca48a9ac57f30e5e2914ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75a996f278ca48a9ac57f30e5e2914ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75a996f278ca48a9ac57f30e5e2914ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75a996f278ca48a9ac57f30e5e2914ff.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fjp6JjTDnQ3Dryg2nLwNSALmAAg=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.258864+00 2025-12-09 10:15:19.258869+00 13011 DL31080#批布蓝绿 SPMX-20240815308199 \N \N \N 1 \N [{"file_id": "60671f48-40f1-45e5-8c76-32f8fafeda8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0a1e1916e9e44dc97e7fd75f2dcc469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0a1e1916e9e44dc97e7fd75f2dcc469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0a1e1916e9e44dc97e7fd75f2dcc469.jpg", "file_size": 29809, "is_delete": false, "file_type": 1, "original_file_name": "DL31080#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a1e1916e9e44dc97e7fd75f2dcc469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a1e1916e9e44dc97e7fd75f2dcc469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a1e1916e9e44dc97e7fd75f2dcc469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0a1e1916e9e44dc97e7fd75f2dcc469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0a1e1916e9e44dc97e7fd75f2dcc469.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pjtD5Ah4YQwDQRpFXgHrSil2Pgw=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.261243+00 2025-12-09 10:15:19.261248+00 13012 LJH1523-1#玫红 SPMX-20240815308200 \N \N \N 1 \N [{"file_id": "96f04e9b-c493-43ee-9498-b14ebb5fe75f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "531d86186c10436eb2628fbd13057629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "531d86186c10436eb2628fbd13057629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "531d86186c10436eb2628fbd13057629.jpg", "file_size": 49729, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-1#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531d86186c10436eb2628fbd13057629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531d86186c10436eb2628fbd13057629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531d86186c10436eb2628fbd13057629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/531d86186c10436eb2628fbd13057629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/531d86186c10436eb2628fbd13057629.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyID91WL8tyIKZlJkYg27TJjBzk=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.263391+00 2025-12-09 10:15:19.2634+00 13013 0005-15#湖绿 SPMX-20240815308204 \N \N \N 1 \N [{"file_id": "4538eaae-b06b-4195-bfcc-03e6c09e7f2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e926b7adf31f4d99bea642bd02d3d572.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e926b7adf31f4d99bea642bd02d3d572.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e926b7adf31f4d99bea642bd02d3d572.jpg", "file_size": 8205, "is_delete": false, "file_type": 1, "original_file_name": "0005-15#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e926b7adf31f4d99bea642bd02d3d572.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e926b7adf31f4d99bea642bd02d3d572.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e926b7adf31f4d99bea642bd02d3d572.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e926b7adf31f4d99bea642bd02d3d572.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e926b7adf31f4d99bea642bd02d3d572.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UeFFfG3EPDasj-us_wr3if2dq_g=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.265735+00 2025-12-09 10:15:19.26574+00 13014 LZ1312#捆条布 SPMX-20240815308206 \N \N \N 1 \N [{"file_id": "7704580a-66f3-4141-b4f2-6d52d950b0e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f03f096140a416f8a684cf78b27c3cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f03f096140a416f8a684cf78b27c3cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f03f096140a416f8a684cf78b27c3cd.jpg", "file_size": 25900, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f03f096140a416f8a684cf78b27c3cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f03f096140a416f8a684cf78b27c3cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f03f096140a416f8a684cf78b27c3cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f03f096140a416f8a684cf78b27c3cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f03f096140a416f8a684cf78b27c3cd.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6uiCIA0Gel42YXru7HtWsvCEcA=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.268142+00 2025-12-09 10:15:19.268148+00 13015 DL31081#前幅墨绿色 SPMX-20240815308210 \N \N \N 1 \N [{"file_id": "3dcd4fe4-9f1c-4f07-9458-88ba607d0b29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a96b23d044d94c54b407e17de973dd49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a96b23d044d94c54b407e17de973dd49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a96b23d044d94c54b407e17de973dd49.jpg", "file_size": 15019, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96b23d044d94c54b407e17de973dd49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96b23d044d94c54b407e17de973dd49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96b23d044d94c54b407e17de973dd49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a96b23d044d94c54b407e17de973dd49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a96b23d044d94c54b407e17de973dd49.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SROQg2PO_SNqJge8Xs2dHOcREgA=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.270296+00 2025-12-09 10:15:19.270302+00 13016 114#-杏色 SPMX-20240815308202 \N \N \N 1 \N [{"file_id": "9867c0d7-85d6-45c3-871f-98d110261ae3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14878e03b954ca09677a281a6dc3266.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14878e03b954ca09677a281a6dc3266.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14878e03b954ca09677a281a6dc3266.jpg", "file_size": 46949, "is_delete": false, "file_type": 1, "original_file_name": "114#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14878e03b954ca09677a281a6dc3266.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14878e03b954ca09677a281a6dc3266.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14878e03b954ca09677a281a6dc3266.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14878e03b954ca09677a281a6dc3266.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14878e03b954ca09677a281a6dc3266.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:toigdITMEj7JRXqNg5zpei90ycU=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.272441+00 2025-12-09 10:15:19.272446+00 13017 JTSS414FW#VS-D3 SPMX-20240815308208 \N \N \N 1 \N [{"file_id": "b34f8222-d412-4176-bc57-c50d597006f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d3d298196f146ff87b40fd1706ad371.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d3d298196f146ff87b40fd1706ad371.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d3d298196f146ff87b40fd1706ad371.jpg", "file_size": 28512, "is_delete": false, "file_type": 1, "original_file_name": "JTSS414FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3d298196f146ff87b40fd1706ad371.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3d298196f146ff87b40fd1706ad371.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3d298196f146ff87b40fd1706ad371.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d3d298196f146ff87b40fd1706ad371.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d3d298196f146ff87b40fd1706ad371.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JnKI-Q_yLwPNSDVyjwQz2e3PmY=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.274824+00 2025-12-09 10:15:19.274829+00 13018 HT3332#红色 SPMX-20240815308209 \N \N \N 1 \N [{"file_id": "ac30cb40-f6bc-4504-a043-062a5f9117ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg", "file_size": 77946, "is_delete": false, "file_type": 1, "original_file_name": "HT3332#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a8a4fa5e30f42cba7bf0a7ce9539bba.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ndWalLNNNaUAUArUeDBImGvWnEY=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.277169+00 2025-12-09 10:15:19.277174+00 13019 C732FWE#门筒XL SPMX-20240815308205 \N \N \N 1 \N [{"file_id": "87a364b2-f700-4c95-a908-3bc39a541d07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2d7cafaba64a24baab955bfd965ce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2d7cafaba64a24baab955bfd965ce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2d7cafaba64a24baab955bfd965ce2.jpg", "file_size": 23048, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#门筒XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2d7cafaba64a24baab955bfd965ce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2d7cafaba64a24baab955bfd965ce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2d7cafaba64a24baab955bfd965ce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2d7cafaba64a24baab955bfd965ce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2d7cafaba64a24baab955bfd965ce2.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73N1XJe3GumMF7ZF6Ev8gkzx6z0=", "createTime": "2024-08-15 14:55:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.279314+00 2025-12-09 10:15:19.27932+00 13020 DL31081#前幅大红 SPMX-20240815308220 \N \N \N 1 \N [{"file_id": "3c95175d-6f83-4b86-8e4c-ff98490710e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3342591fd29e4574bf543ff77d260b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3342591fd29e4574bf543ff77d260b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3342591fd29e4574bf543ff77d260b9c.jpg", "file_size": 14955, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342591fd29e4574bf543ff77d260b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342591fd29e4574bf543ff77d260b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3342591fd29e4574bf543ff77d260b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3342591fd29e4574bf543ff77d260b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3342591fd29e4574bf543ff77d260b9c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDamURXd8IluiyJw8LO9Gie4m-4=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.281488+00 2025-12-09 10:15:19.281494+00 13021 HT3332#绿色 SPMX-20240815308221 \N \N \N 1 \N [{"file_id": "8b1f26e9-ef0d-4e71-975b-73c6ca4c5f65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bdb591ac00e4a38942a3cc8cfad49c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bdb591ac00e4a38942a3cc8cfad49c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bdb591ac00e4a38942a3cc8cfad49c9.jpg", "file_size": 76965, "is_delete": false, "file_type": 1, "original_file_name": "HT3332#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdb591ac00e4a38942a3cc8cfad49c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdb591ac00e4a38942a3cc8cfad49c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdb591ac00e4a38942a3cc8cfad49c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bdb591ac00e4a38942a3cc8cfad49c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bdb591ac00e4a38942a3cc8cfad49c9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xM9bozVYaezScksnvqmZ4bd1aV4=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.283944+00 2025-12-09 10:15:19.283949+00 13022 LJH1523-1#红色 SPMX-20240815308215 \N \N \N 1 \N [{"file_id": "6e1a650b-48bc-4274-ba8c-bf8adb222489", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0091604dc804a09b40bda1448beb797.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0091604dc804a09b40bda1448beb797.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0091604dc804a09b40bda1448beb797.jpg", "file_size": 53149, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0091604dc804a09b40bda1448beb797.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0091604dc804a09b40bda1448beb797.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0091604dc804a09b40bda1448beb797.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0091604dc804a09b40bda1448beb797.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0091604dc804a09b40bda1448beb797.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3B--qLWjNQhRucSnUsaEFvnuPng=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.286331+00 2025-12-09 10:15:19.286337+00 13023 0005-16#绿色 SPMX-20240815308214 \N \N \N 1 \N [{"file_id": "4170a5ad-2e8d-4978-a8f8-a8623aabc71b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "393a06f391f84f2d8bfce73910c5b5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "393a06f391f84f2d8bfce73910c5b5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "393a06f391f84f2d8bfce73910c5b5f7.jpg", "file_size": 9056, "is_delete": false, "file_type": 1, "original_file_name": "0005-16#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393a06f391f84f2d8bfce73910c5b5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393a06f391f84f2d8bfce73910c5b5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/393a06f391f84f2d8bfce73910c5b5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/393a06f391f84f2d8bfce73910c5b5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/393a06f391f84f2d8bfce73910c5b5f7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rdj7iG_i0-P_D-Yq0Nen_CAkB_g=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.28885+00 2025-12-09 10:15:19.288856+00 13024 LZ1312#背心款1号色 SPMX-20240815308217 \N \N \N 1 \N [{"file_id": "e09deb22-37f1-4769-9f4e-ccfd14391733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg", "file_size": 21174, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac76adf9bcc1445ca72a6c9ee61a9bb8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7uR3uRI9_mJpLiqnCcBAVB9lCc=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.291383+00 2025-12-09 10:15:19.291388+00 13025 23-2120#A3-4XL SPMX-20240815308222 \N \N \N 1 \N [{"file_id": "428e98b8-8912-4858-bf66-b7eeefa170b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "189b46e181d546c7bb2174a89bac2274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "189b46e181d546c7bb2174a89bac2274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "189b46e181d546c7bb2174a89bac2274.jpg", "file_size": 17218, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189b46e181d546c7bb2174a89bac2274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189b46e181d546c7bb2174a89bac2274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189b46e181d546c7bb2174a89bac2274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/189b46e181d546c7bb2174a89bac2274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/189b46e181d546c7bb2174a89bac2274.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFsz4w5wgm7Btbg_921Sd9tLKVU=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.293464+00 2025-12-09 10:15:19.293469+00 13026 824FWE#VS-D3 SPMX-20240815308212 \N \N \N 1 \N [{"file_id": "ac4cd69c-eed7-45e5-aba0-459a60739de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cc27e2334d645bea06a8d1a434c2d6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cc27e2334d645bea06a8d1a434c2d6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cc27e2334d645bea06a8d1a434c2d6f.jpg", "file_size": 19875, "is_delete": false, "file_type": 1, "original_file_name": "824FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc27e2334d645bea06a8d1a434c2d6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc27e2334d645bea06a8d1a434c2d6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cc27e2334d645bea06a8d1a434c2d6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cc27e2334d645bea06a8d1a434c2d6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cc27e2334d645bea06a8d1a434c2d6f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C8i5QUqLcgESRcjo9TzLGW3t7Eg=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.295494+00 2025-12-09 10:15:19.2955+00 13027 114#-深杏 SPMX-20240815308213 \N \N \N 1 \N [{"file_id": "64043cdd-40be-4cc5-816d-4a571cb1e248", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a3b9ddc20e34651ba4265dbaa1b5c30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a3b9ddc20e34651ba4265dbaa1b5c30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a3b9ddc20e34651ba4265dbaa1b5c30.jpg", "file_size": 49076, "is_delete": false, "file_type": 1, "original_file_name": "114#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b9ddc20e34651ba4265dbaa1b5c30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b9ddc20e34651ba4265dbaa1b5c30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3b9ddc20e34651ba4265dbaa1b5c30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a3b9ddc20e34651ba4265dbaa1b5c30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a3b9ddc20e34651ba4265dbaa1b5c30.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ox9U4rO2KAFRiPYD4UqZXT6E7vc=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.297547+00 2025-12-09 10:15:19.297553+00 13028 JTSS415FW#VS-D3 SPMX-20240815308219 \N \N \N 1 \N [{"file_id": "ed1c99af-4299-4ca7-a271-41ac68f4dd31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b6696009374c15882f20965395fe32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b6696009374c15882f20965395fe32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b6696009374c15882f20965395fe32.jpg", "file_size": 15806, "is_delete": false, "file_type": 1, "original_file_name": "JTSS415FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6696009374c15882f20965395fe32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6696009374c15882f20965395fe32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6696009374c15882f20965395fe32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b6696009374c15882f20965395fe32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b6696009374c15882f20965395fe32.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1xEisgWrqWltfo79AlcOJM8VA0=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.308238+00 2025-12-09 10:15:19.308243+00 13033 LJH1523-1#绿色 SPMX-20240815308227 \N \N \N 1 \N [{"file_id": "ce593747-ba46-4f06-a9d0-70b03d7ee4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbaefaa452254b608797b8c3897096ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbaefaa452254b608797b8c3897096ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbaefaa452254b608797b8c3897096ce.jpg", "file_size": 49199, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbaefaa452254b608797b8c3897096ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbaefaa452254b608797b8c3897096ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbaefaa452254b608797b8c3897096ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbaefaa452254b608797b8c3897096ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbaefaa452254b608797b8c3897096ce.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LjiZPgnVLM3JFoSmeojUn51xqsQ=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.299568+00 2025-12-09 10:15:19.299573+00 13029 C732FWE#领蓝色批布 SPMX-20240815308216 \N \N \N 1 \N [{"file_id": "9cd960e2-b136-42a5-8cc0-f77bd8fa0254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7648138aa5c04186812768ede77b11d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7648138aa5c04186812768ede77b11d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7648138aa5c04186812768ede77b11d9.jpg", "file_size": 7434, "is_delete": false, "file_type": 1, "original_file_name": "C732FWE#领蓝色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648138aa5c04186812768ede77b11d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648138aa5c04186812768ede77b11d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648138aa5c04186812768ede77b11d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7648138aa5c04186812768ede77b11d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7648138aa5c04186812768ede77b11d9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYf0jxb1vC2PTIegDUQhQYl7GxA=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.301573+00 2025-12-09 10:15:19.301579+00 13030 FM006#大红 SPMX-20240815308218 \N \N \N 1 \N [{"file_id": "ebcb9c35-ea54-4d08-85ed-8142fffc87af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caad7bcb92804eb08d2b06d9b21dfb24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caad7bcb92804eb08d2b06d9b21dfb24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caad7bcb92804eb08d2b06d9b21dfb24.jpg", "file_size": 16911, "is_delete": false, "file_type": 1, "original_file_name": "FM006#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caad7bcb92804eb08d2b06d9b21dfb24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caad7bcb92804eb08d2b06d9b21dfb24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caad7bcb92804eb08d2b06d9b21dfb24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caad7bcb92804eb08d2b06d9b21dfb24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caad7bcb92804eb08d2b06d9b21dfb24.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpTZeAKQOZA2N7aBFrM3uHNU7wg=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.30367+00 2025-12-09 10:15:19.303675+00 13031 23-2120#A3-3XL SPMX-20240815308211 \N \N \N 1 \N [{"file_id": "ddbb835c-291c-4289-b298-044b25647bd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb93149192a2426fb35a99a6379ab7a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb93149192a2426fb35a99a6379ab7a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb93149192a2426fb35a99a6379ab7a8.jpg", "file_size": 18929, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb93149192a2426fb35a99a6379ab7a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb93149192a2426fb35a99a6379ab7a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb93149192a2426fb35a99a6379ab7a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb93149192a2426fb35a99a6379ab7a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb93149192a2426fb35a99a6379ab7a8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j1hH9oXOrCm-5WjL-9A831ewZGQ=", "createTime": "2024-08-15 14:55:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.306017+00 2025-12-09 10:15:19.306023+00 13032 LJH1523-1#黄色 SPMX-20240815308238 \N \N \N 1 \N [{"file_id": "f98c8004-c915-417d-b0e3-972fc7935b70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03a58249ae474a478bcfd90ab8b452a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03a58249ae474a478bcfd90ab8b452a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03a58249ae474a478bcfd90ab8b452a1.jpg", "file_size": 52311, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a58249ae474a478bcfd90ab8b452a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a58249ae474a478bcfd90ab8b452a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a58249ae474a478bcfd90ab8b452a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03a58249ae474a478bcfd90ab8b452a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03a58249ae474a478bcfd90ab8b452a1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9GjrFoAGDN9zQ9fJlL8c9uhTFU=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.310433+00 2025-12-09 10:15:19.310438+00 13034 HT3333#原版色 SPMX-20240815308233 \N \N \N 1 \N [{"file_id": "f2bb8a2c-1a2f-4670-8e21-e720b6852bb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5001b75d7c2419098fb737712ddfb0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5001b75d7c2419098fb737712ddfb0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5001b75d7c2419098fb737712ddfb0e.jpg", "file_size": 89613, "is_delete": false, "file_type": 1, "original_file_name": "HT3333#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5001b75d7c2419098fb737712ddfb0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5001b75d7c2419098fb737712ddfb0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5001b75d7c2419098fb737712ddfb0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5001b75d7c2419098fb737712ddfb0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5001b75d7c2419098fb737712ddfb0e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFbp4-GauN5t5VNXCAMawOHILdU=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.312445+00 2025-12-09 10:15:19.31245+00 13035 0005-16#蓝色 SPMX-20240815308223 \N \N \N 1 \N [{"file_id": "b28ef267-ea31-43f7-8d3e-b752b0f81838", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fa16528c28b429baec9c265efcb716f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fa16528c28b429baec9c265efcb716f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fa16528c28b429baec9c265efcb716f.jpg", "file_size": 8926, "is_delete": false, "file_type": 1, "original_file_name": "0005-16#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa16528c28b429baec9c265efcb716f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa16528c28b429baec9c265efcb716f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fa16528c28b429baec9c265efcb716f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fa16528c28b429baec9c265efcb716f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fa16528c28b429baec9c265efcb716f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukxbbbMEumli1dPCcBu-2RhpHKg=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.314447+00 2025-12-09 10:15:19.314452+00 13036 114#-灰色 SPMX-20240815308225 \N \N \N 1 \N [{"file_id": "25272550-ca72-47f4-9f69-61d27247d668", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a89c73394c56496d9de4952c5f6b900a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a89c73394c56496d9de4952c5f6b900a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a89c73394c56496d9de4952c5f6b900a.jpg", "file_size": 59603, "is_delete": false, "file_type": 1, "original_file_name": "114#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89c73394c56496d9de4952c5f6b900a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89c73394c56496d9de4952c5f6b900a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a89c73394c56496d9de4952c5f6b900a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a89c73394c56496d9de4952c5f6b900a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a89c73394c56496d9de4952c5f6b900a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJEt87Z-0wMiypGvpnUxCDoYGic=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.316446+00 2025-12-09 10:15:19.316451+00 13037 C735#袖口门筒领子M SPMX-20240815308235 \N \N \N 1 \N [{"file_id": "a967094c-cb3c-439d-96dd-04caaf47bfa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2208a5cf65b14776a93afb7879c6aca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2208a5cf65b14776a93afb7879c6aca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2208a5cf65b14776a93afb7879c6aca0.jpg", "file_size": 14420, "is_delete": false, "file_type": 1, "original_file_name": "C735#袖口门筒领子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208a5cf65b14776a93afb7879c6aca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208a5cf65b14776a93afb7879c6aca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208a5cf65b14776a93afb7879c6aca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2208a5cf65b14776a93afb7879c6aca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2208a5cf65b14776a93afb7879c6aca0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NT31AjkRMIuzJdJJQk_pAAJP-6s=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.318454+00 2025-12-09 10:15:19.318459+00 13038 8251# SPMX-20240815308224 \N \N \N 1 \N [{"file_id": "a2467a24-d787-4c44-8a45-c405642a44b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80931072135e4545ae314b3c2a238ac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80931072135e4545ae314b3c2a238ac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80931072135e4545ae314b3c2a238ac7.jpg", "file_size": 13996, "is_delete": false, "file_type": 1, "original_file_name": "8251#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80931072135e4545ae314b3c2a238ac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80931072135e4545ae314b3c2a238ac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80931072135e4545ae314b3c2a238ac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80931072135e4545ae314b3c2a238ac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80931072135e4545ae314b3c2a238ac7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSm_quBZKRFScsnd5IMBKsRo0VE=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.320449+00 2025-12-09 10:15:19.320454+00 13039 FM006#彩蓝 SPMX-20240815308230 \N \N \N 1 \N [{"file_id": "1da109d3-477d-4657-997e-b82aab11269c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1516580454db4644b19a1f37b6e43f29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1516580454db4644b19a1f37b6e43f29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1516580454db4644b19a1f37b6e43f29.jpg", "file_size": 16411, "is_delete": false, "file_type": 1, "original_file_name": "FM006#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516580454db4644b19a1f37b6e43f29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516580454db4644b19a1f37b6e43f29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1516580454db4644b19a1f37b6e43f29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1516580454db4644b19a1f37b6e43f29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1516580454db4644b19a1f37b6e43f29.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNOMHaVlieH5nNEaWoDqrgcM1Kg=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.322462+00 2025-12-09 10:15:19.322467+00 13040 JTSS416FW#VS-D3 SPMX-20240815308231 \N \N \N 1 \N [{"file_id": "488566ac-035f-4041-81cb-95350050c6bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785cdadaf3184e2b8ad22d459d9753c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785cdadaf3184e2b8ad22d459d9753c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785cdadaf3184e2b8ad22d459d9753c6.jpg", "file_size": 19111, "is_delete": false, "file_type": 1, "original_file_name": "JTSS416FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785cdadaf3184e2b8ad22d459d9753c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785cdadaf3184e2b8ad22d459d9753c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785cdadaf3184e2b8ad22d459d9753c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785cdadaf3184e2b8ad22d459d9753c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785cdadaf3184e2b8ad22d459d9753c6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnpeDEBYxw82NhGaeApjtWOxVyw=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.324522+00 2025-12-09 10:15:19.324527+00 13041 23-2120#A3-领子3XL SPMX-20240815308232 \N \N \N 1 \N [{"file_id": "5cc23380-3bc1-49ab-869d-2c58c62fbb87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a33667dd94164525a04d2d2c0f2f92f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a33667dd94164525a04d2d2c0f2f92f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a33667dd94164525a04d2d2c0f2f92f0.jpg", "file_size": 11533, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33667dd94164525a04d2d2c0f2f92f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33667dd94164525a04d2d2c0f2f92f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33667dd94164525a04d2d2c0f2f92f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a33667dd94164525a04d2d2c0f2f92f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a33667dd94164525a04d2d2c0f2f92f0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgaFXroMT7G2La1ET9htZ9Av6BI=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.326516+00 2025-12-09 10:15:19.326521+00 13042 114#-白色 SPMX-20240815308236 \N \N \N 1 \N [{"file_id": "825c573d-e9ed-49e5-b8de-483e42faa438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fdacd8568e44fcf871903aaea81369f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fdacd8568e44fcf871903aaea81369f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fdacd8568e44fcf871903aaea81369f.jpg", "file_size": 49826, "is_delete": false, "file_type": 1, "original_file_name": "114#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdacd8568e44fcf871903aaea81369f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdacd8568e44fcf871903aaea81369f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdacd8568e44fcf871903aaea81369f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fdacd8568e44fcf871903aaea81369f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fdacd8568e44fcf871903aaea81369f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrB20zQhdOEk8kI4AJGrViN0tq8=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.328486+00 2025-12-09 10:15:19.328491+00 13043 0005-16#黑色净色 SPMX-20240815308234 \N \N \N 1 \N [{"file_id": "05ba8b0c-1a7c-42c7-ab50-9ce2e891c48d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c3fcdd52ee947b1a8597ff0765efd70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c3fcdd52ee947b1a8597ff0765efd70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c3fcdd52ee947b1a8597ff0765efd70.jpg", "file_size": 7970, "is_delete": false, "file_type": 1, "original_file_name": "0005-16#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3fcdd52ee947b1a8597ff0765efd70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3fcdd52ee947b1a8597ff0765efd70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3fcdd52ee947b1a8597ff0765efd70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c3fcdd52ee947b1a8597ff0765efd70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c3fcdd52ee947b1a8597ff0765efd70.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3TMQbZxUE1dL4K4bLnHX9SboPPM=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.330504+00 2025-12-09 10:15:19.33051+00 13044 82819-1FWE#杏净色 SPMX-20240815308237 \N \N \N 1 \N [{"file_id": "f7865c3d-d4c3-4060-891c-dc866a2eda7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6fda8a781294f3693e41ab507909163.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6fda8a781294f3693e41ab507909163.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6fda8a781294f3693e41ab507909163.jpg", "file_size": 7839, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#杏净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fda8a781294f3693e41ab507909163.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fda8a781294f3693e41ab507909163.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6fda8a781294f3693e41ab507909163.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6fda8a781294f3693e41ab507909163.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6fda8a781294f3693e41ab507909163.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMmNkrEYnAa-GrVkx6HGmxHzlck=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.33249+00 2025-12-09 10:15:19.332495+00 13045 C735#袖口门筒领子L SPMX-20240815308226 \N \N \N 1 \N [{"file_id": "ebdfe6e7-92d5-4b07-be68-04ee47886b35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b75e13950f21457e9816a7d755093e5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b75e13950f21457e9816a7d755093e5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b75e13950f21457e9816a7d755093e5b.jpg", "file_size": 14466, "is_delete": false, "file_type": 1, "original_file_name": "C735#袖口门筒领子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e13950f21457e9816a7d755093e5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e13950f21457e9816a7d755093e5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e13950f21457e9816a7d755093e5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b75e13950f21457e9816a7d755093e5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b75e13950f21457e9816a7d755093e5b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UjqwJWMQOkjzg3iNwvLBFWPm2dU=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.334487+00 2025-12-09 10:15:19.334493+00 13046 LZ1312#背心款2号色 SPMX-20240815308228 \N \N \N 1 \N [{"file_id": "07c9ee5c-028d-4ba7-be67-76eac57a360f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca7e6db7de1a46a486cd701a260e4ba1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca7e6db7de1a46a486cd701a260e4ba1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca7e6db7de1a46a486cd701a260e4ba1.jpg", "file_size": 20410, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7e6db7de1a46a486cd701a260e4ba1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7e6db7de1a46a486cd701a260e4ba1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7e6db7de1a46a486cd701a260e4ba1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca7e6db7de1a46a486cd701a260e4ba1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca7e6db7de1a46a486cd701a260e4ba1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:waus1b25L1Z9TZiqw32zDIUCyvA=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.336669+00 2025-12-09 10:15:19.336674+00 13047 DL31081#前幅彩兰色 SPMX-20240815308229 \N \N \N 1 \N [{"file_id": "267588df-15e7-4aff-beff-2a438e3824b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8394807add4342fb94f83cbd546cf4ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8394807add4342fb94f83cbd546cf4ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8394807add4342fb94f83cbd546cf4ff.jpg", "file_size": 15184, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8394807add4342fb94f83cbd546cf4ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8394807add4342fb94f83cbd546cf4ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8394807add4342fb94f83cbd546cf4ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8394807add4342fb94f83cbd546cf4ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8394807add4342fb94f83cbd546cf4ff.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGlSNrhzM-xnHe5WbLNOBWndLY8=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.338707+00 2025-12-09 10:15:19.338712+00 13048 23-2120#A4-3XL SPMX-20240815308254 \N \N \N 1 \N [{"file_id": "0f9496b0-8164-4e58-9fb1-64c9b9652421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1a0d408350641a89b0f9c0164149b72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1a0d408350641a89b0f9c0164149b72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1a0d408350641a89b0f9c0164149b72.jpg", "file_size": 15770, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a0d408350641a89b0f9c0164149b72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a0d408350641a89b0f9c0164149b72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a0d408350641a89b0f9c0164149b72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1a0d408350641a89b0f9c0164149b72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1a0d408350641a89b0f9c0164149b72.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kpnzF_XjNRfjgY_eOxo7_wVOBHM=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.340697+00 2025-12-09 10:15:19.340702+00 13049 FM006#枣红 SPMX-20240815308240 \N \N \N 1 \N [{"file_id": "dfc9cb02-952e-4fb2-83c1-5045781841a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947404fb167c46acb74376f06ec511e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947404fb167c46acb74376f06ec511e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947404fb167c46acb74376f06ec511e6.jpg", "file_size": 17127, "is_delete": false, "file_type": 1, "original_file_name": "FM006#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947404fb167c46acb74376f06ec511e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947404fb167c46acb74376f06ec511e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947404fb167c46acb74376f06ec511e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947404fb167c46acb74376f06ec511e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947404fb167c46acb74376f06ec511e6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s5wXA1O0sdDSK15Hv3ebP2grgCE=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.342662+00 2025-12-09 10:15:19.342667+00 13050 LJH1523-2#杏色 SPMX-20240815308251 \N \N \N 1 \N [{"file_id": "6160c2bf-a83d-47fb-945a-04aeb991677f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d89d4dcc30e84a30b3225c8c8a567a01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d89d4dcc30e84a30b3225c8c8a567a01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d89d4dcc30e84a30b3225c8c8a567a01.jpg", "file_size": 75214, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-2#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d4dcc30e84a30b3225c8c8a567a01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d4dcc30e84a30b3225c8c8a567a01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d89d4dcc30e84a30b3225c8c8a567a01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d89d4dcc30e84a30b3225c8c8a567a01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d89d4dcc30e84a30b3225c8c8a567a01.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2iZ7EfUe5-ygfxoETsoD3_eoD3I=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.344657+00 2025-12-09 10:15:19.344662+00 13051 JTSS418FW#VS-D3 SPMX-20240815308252 \N \N \N 1 \N [{"file_id": "54ac131b-637c-4db7-ac99-049e6b60ff33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c4721da891c46a8bfb9f232215b698b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c4721da891c46a8bfb9f232215b698b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c4721da891c46a8bfb9f232215b698b.jpg", "file_size": 18781, "is_delete": false, "file_type": 1, "original_file_name": "JTSS418FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4721da891c46a8bfb9f232215b698b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4721da891c46a8bfb9f232215b698b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4721da891c46a8bfb9f232215b698b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c4721da891c46a8bfb9f232215b698b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c4721da891c46a8bfb9f232215b698b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuU9_rdsJXqE1OHStdI7mAb1-z8=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.346695+00 2025-12-09 10:15:19.3467+00 13052 DL31081#前幅浅粉色 SPMX-20240815308253 \N \N \N 1 \N [{"file_id": "c10b9a0b-6672-4d87-b066-e0c65f9479d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3afd47cf8c1a41d7bacf9c24d52f5f29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3afd47cf8c1a41d7bacf9c24d52f5f29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3afd47cf8c1a41d7bacf9c24d52f5f29.jpg", "file_size": 13574, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3afd47cf8c1a41d7bacf9c24d52f5f29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3afd47cf8c1a41d7bacf9c24d52f5f29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3afd47cf8c1a41d7bacf9c24d52f5f29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3afd47cf8c1a41d7bacf9c24d52f5f29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3afd47cf8c1a41d7bacf9c24d52f5f29.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Z9iZ36GqtGwwJgmDQctKwXnU1U=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.348679+00 2025-12-09 10:15:19.348684+00 13053 82819-1FWE#杏单边定位 SPMX-20240815308248 \N \N \N 1 \N [{"file_id": "1c2a116f-7ede-46b5-bc2e-393ed7d8fa20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ffa9706312479eab5442e1ea161e8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ffa9706312479eab5442e1ea161e8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ffa9706312479eab5442e1ea161e8b.jpg", "file_size": 7973, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#杏单边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ffa9706312479eab5442e1ea161e8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ffa9706312479eab5442e1ea161e8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ffa9706312479eab5442e1ea161e8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ffa9706312479eab5442e1ea161e8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ffa9706312479eab5442e1ea161e8b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAUV9vE1h_B1kN4akQqfZ_hmAz0=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.350645+00 2025-12-09 10:15:19.35065+00 13054 LZ1312#背心款3号色 SPMX-20240815308239 \N \N \N 1 \N [{"file_id": "9cbc99d9-f1db-47de-ae4a-c764881e7187", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8feb4a453f446c79b8584ae625eae3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8feb4a453f446c79b8584ae625eae3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8feb4a453f446c79b8584ae625eae3e.jpg", "file_size": 19488, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8feb4a453f446c79b8584ae625eae3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8feb4a453f446c79b8584ae625eae3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8feb4a453f446c79b8584ae625eae3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8feb4a453f446c79b8584ae625eae3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8feb4a453f446c79b8584ae625eae3e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87k6u0JsAjodigD3fDt-KO-GMYE=", "createTime": "2024-08-15 14:55:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.352583+00 2025-12-09 10:15:19.352589+00 13055 DL31081#前幅枣红色 SPMX-20240815308241 \N \N \N 1 \N [{"file_id": "afe80cc5-615a-42a5-a4b2-cdab31e1826a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baedb59617f5406cab89844f75a8a09d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baedb59617f5406cab89844f75a8a09d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baedb59617f5406cab89844f75a8a09d.jpg", "file_size": 14698, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baedb59617f5406cab89844f75a8a09d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baedb59617f5406cab89844f75a8a09d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baedb59617f5406cab89844f75a8a09d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baedb59617f5406cab89844f75a8a09d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baedb59617f5406cab89844f75a8a09d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_MESSWWoiRWOYlcpcTqGDaOmCe8=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.354839+00 2025-12-09 10:15:19.354844+00 13056 23-2120#A3-领子4XL SPMX-20240815308243 \N \N \N 1 \N [{"file_id": "e97af8a3-0166-442a-b963-71267e12e0ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "170a3dc9efc24702b7b9933b7d2f14e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "170a3dc9efc24702b7b9933b7d2f14e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "170a3dc9efc24702b7b9933b7d2f14e5.jpg", "file_size": 11694, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/170a3dc9efc24702b7b9933b7d2f14e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/170a3dc9efc24702b7b9933b7d2f14e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/170a3dc9efc24702b7b9933b7d2f14e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/170a3dc9efc24702b7b9933b7d2f14e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/170a3dc9efc24702b7b9933b7d2f14e5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R0FHu9uxDV0WBWg3CeqPLCz0BCk=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.356821+00 2025-12-09 10:15:19.356826+00 13057 C735#袖口门筒领子S SPMX-20240815308247 \N \N \N 1 \N [{"file_id": "81db925c-2a6c-41d1-9e01-1092c029d1fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c292f2ea6f43476f8d291e651b05c0bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c292f2ea6f43476f8d291e651b05c0bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c292f2ea6f43476f8d291e651b05c0bc.jpg", "file_size": 14251, "is_delete": false, "file_type": 1, "original_file_name": "C735#袖口门筒领子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c292f2ea6f43476f8d291e651b05c0bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c292f2ea6f43476f8d291e651b05c0bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c292f2ea6f43476f8d291e651b05c0bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c292f2ea6f43476f8d291e651b05c0bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c292f2ea6f43476f8d291e651b05c0bc.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTi8TETlKkjnGwqw-kIEq2fC88Q=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.358804+00 2025-12-09 10:15:19.358809+00 13058 114#-黑色 SPMX-20240815308246 \N \N \N 1 \N [{"file_id": "80c00a06-14b2-4b85-85e7-58f5b92e1f34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7071c02cdfbc4aaaabf843d39414a70c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7071c02cdfbc4aaaabf843d39414a70c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7071c02cdfbc4aaaabf843d39414a70c.jpg", "file_size": 49628, "is_delete": false, "file_type": 1, "original_file_name": "114#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7071c02cdfbc4aaaabf843d39414a70c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7071c02cdfbc4aaaabf843d39414a70c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7071c02cdfbc4aaaabf843d39414a70c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7071c02cdfbc4aaaabf843d39414a70c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7071c02cdfbc4aaaabf843d39414a70c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRS8ZiWM28ov1E67SDhSI9yxVu0=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.360756+00 2025-12-09 10:15:19.360761+00 13059 0005-17#桔色净色 SPMX-20240815308244 \N \N \N 1 \N [{"file_id": "124c381c-7f4b-439c-bb84-74fa066c91b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62fa551668914fa4909e5bfe178b6ae8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62fa551668914fa4909e5bfe178b6ae8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62fa551668914fa4909e5bfe178b6ae8.jpg", "file_size": 9564, "is_delete": false, "file_type": 1, "original_file_name": "0005-17#桔色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fa551668914fa4909e5bfe178b6ae8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fa551668914fa4909e5bfe178b6ae8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fa551668914fa4909e5bfe178b6ae8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62fa551668914fa4909e5bfe178b6ae8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62fa551668914fa4909e5bfe178b6ae8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-8P4v5N5qEo6tWHJrBj8XIY0qY=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.362763+00 2025-12-09 10:15:19.362767+00 13060 JTSS417FW#VS-D3 SPMX-20240815308242 \N \N \N 1 \N [{"file_id": "67a2cdd3-8742-4fe7-98a7-c7352ce15238", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45f7e879477a4a8681786487818ca5e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45f7e879477a4a8681786487818ca5e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45f7e879477a4a8681786487818ca5e4.jpg", "file_size": 14134, "is_delete": false, "file_type": 1, "original_file_name": "JTSS417FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f7e879477a4a8681786487818ca5e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f7e879477a4a8681786487818ca5e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45f7e879477a4a8681786487818ca5e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45f7e879477a4a8681786487818ca5e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45f7e879477a4a8681786487818ca5e4.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KQJANoOSTcWOQnxI2YMVLgR9_WA=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.36476+00 2025-12-09 10:15:19.364767+00 13061 HT3333#紫色 SPMX-20240815308245 \N \N \N 1 \N [{"file_id": "3b8bca87-b2a6-4c80-9c98-5141fe339389", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c22246638194e438fd867831eab16e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c22246638194e438fd867831eab16e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c22246638194e438fd867831eab16e5.jpg", "file_size": 84596, "is_delete": false, "file_type": 1, "original_file_name": "HT3333#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c22246638194e438fd867831eab16e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c22246638194e438fd867831eab16e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c22246638194e438fd867831eab16e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c22246638194e438fd867831eab16e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c22246638194e438fd867831eab16e5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bqKtuItwuFGWri5cfPVtFELXq7E=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.366786+00 2025-12-09 10:15:19.366791+00 13062 FM006#玫红 SPMX-20240815308249 \N \N \N 1 \N [{"file_id": "b3b3168e-941d-4289-a5da-62b5a921396e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1b5d400a604441286a9e5ea957065d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1b5d400a604441286a9e5ea957065d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1b5d400a604441286a9e5ea957065d1.jpg", "file_size": 17278, "is_delete": false, "file_type": 1, "original_file_name": "FM006#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b5d400a604441286a9e5ea957065d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b5d400a604441286a9e5ea957065d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b5d400a604441286a9e5ea957065d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1b5d400a604441286a9e5ea957065d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1b5d400a604441286a9e5ea957065d1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaLsEv9PttX4siutJEEs0sCcC5Y=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.368809+00 2025-12-09 10:15:19.368814+00 13063 LZ1312#背心款4号色 SPMX-20240815308250 \N \N \N 1 \N [{"file_id": "25ca53c8-0c7e-4aa0-91f6-6df231419f26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "417fe2b5e6644acf95c6649fdcd605a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "417fe2b5e6644acf95c6649fdcd605a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "417fe2b5e6644acf95c6649fdcd605a0.jpg", "file_size": 19998, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417fe2b5e6644acf95c6649fdcd605a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417fe2b5e6644acf95c6649fdcd605a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417fe2b5e6644acf95c6649fdcd605a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/417fe2b5e6644acf95c6649fdcd605a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/417fe2b5e6644acf95c6649fdcd605a0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vu3y7NwXVjl1gNbjsfIC87e26xw=", "createTime": "2024-08-15 14:55:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.370804+00 2025-12-09 10:15:19.370809+00 13064 0005-17#桔色条 SPMX-20240815308256 \N \N \N 1 \N [{"file_id": "b58f0084-aca6-4f6f-be40-945684f6cc71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60975cf87b574231ad901dde06ac6281.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60975cf87b574231ad901dde06ac6281.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60975cf87b574231ad901dde06ac6281.jpg", "file_size": 10241, "is_delete": false, "file_type": 1, "original_file_name": "0005-17#桔色条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60975cf87b574231ad901dde06ac6281.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60975cf87b574231ad901dde06ac6281.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60975cf87b574231ad901dde06ac6281.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60975cf87b574231ad901dde06ac6281.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60975cf87b574231ad901dde06ac6281.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLRq2TM107IXtCUT15fmjKYbHS0=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.372784+00 2025-12-09 10:15:19.37279+00 13065 JTSS419FW#VS-D3 SPMX-20240815308264 \N \N \N 1 \N [{"file_id": "4e9a7acc-36f7-44d3-bd68-e2573b0097d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72b9f406b2dc469ab31fb904f094edd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72b9f406b2dc469ab31fb904f094edd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72b9f406b2dc469ab31fb904f094edd9.jpg", "file_size": 18491, "is_delete": false, "file_type": 1, "original_file_name": "JTSS419FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72b9f406b2dc469ab31fb904f094edd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72b9f406b2dc469ab31fb904f094edd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72b9f406b2dc469ab31fb904f094edd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72b9f406b2dc469ab31fb904f094edd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72b9f406b2dc469ab31fb904f094edd9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9lmIX00wtUoggwnVoMWMNa_bhvQ=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.374748+00 2025-12-09 10:15:19.374753+00 13066 C735#袖口门筒领子XL SPMX-20240815308258 \N \N \N 1 \N [{"file_id": "448fe71c-577d-4e49-9504-7f8019c1cd4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6147ea3775f54f169c18f21ce2816831.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6147ea3775f54f169c18f21ce2816831.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6147ea3775f54f169c18f21ce2816831.jpg", "file_size": 14409, "is_delete": false, "file_type": 1, "original_file_name": "C735#袖口门筒领子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6147ea3775f54f169c18f21ce2816831.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6147ea3775f54f169c18f21ce2816831.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6147ea3775f54f169c18f21ce2816831.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6147ea3775f54f169c18f21ce2816831.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6147ea3775f54f169c18f21ce2816831.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0O85naWThlB9T2H2iD3tl5pmCA=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.376962+00 2025-12-09 10:15:19.376967+00 13067 HT3333#绿色 SPMX-20240815308257 \N \N \N 1 \N [{"file_id": "6bd94c80-c6ab-4531-ac28-4cc3354331ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "239b95f36ed0445bbcc17be19e8a7218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "239b95f36ed0445bbcc17be19e8a7218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "239b95f36ed0445bbcc17be19e8a7218.jpg", "file_size": 84276, "is_delete": false, "file_type": 1, "original_file_name": "HT3333#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239b95f36ed0445bbcc17be19e8a7218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239b95f36ed0445bbcc17be19e8a7218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/239b95f36ed0445bbcc17be19e8a7218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/239b95f36ed0445bbcc17be19e8a7218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/239b95f36ed0445bbcc17be19e8a7218.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WbtnnRF6g8UurAmqSLL6llNre4M=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.378963+00 2025-12-09 10:15:19.378968+00 13068 82819-1FWE#粉净色 SPMX-20240815308259 \N \N \N 1 \N [{"file_id": "2e4d6b3e-4803-4332-9a76-5cf44fb55ea2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acfa9bab18b240c9bed26010e8f0dd9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acfa9bab18b240c9bed26010e8f0dd9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acfa9bab18b240c9bed26010e8f0dd9a.jpg", "file_size": 7770, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa9bab18b240c9bed26010e8f0dd9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa9bab18b240c9bed26010e8f0dd9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acfa9bab18b240c9bed26010e8f0dd9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acfa9bab18b240c9bed26010e8f0dd9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acfa9bab18b240c9bed26010e8f0dd9a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSG73zQxopMx8dRPXmj_Cu8lMo8=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.381004+00 2025-12-09 10:15:19.38101+00 13069 LZ1312#背心款5号色 SPMX-20240815308260 \N \N \N 1 \N [{"file_id": "119f9bad-595a-4b89-a150-13e9d23c3eb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49c0ab57bfa44e52b6698a43cccd7736.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49c0ab57bfa44e52b6698a43cccd7736.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49c0ab57bfa44e52b6698a43cccd7736.jpg", "file_size": 19963, "is_delete": false, "file_type": 1, "original_file_name": "LZ1312#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c0ab57bfa44e52b6698a43cccd7736.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c0ab57bfa44e52b6698a43cccd7736.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c0ab57bfa44e52b6698a43cccd7736.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49c0ab57bfa44e52b6698a43cccd7736.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49c0ab57bfa44e52b6698a43cccd7736.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGh7wLhMloHhkXdcJ-d7C1Mr5W0=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.383025+00 2025-12-09 10:15:19.38303+00 13070 FM006#黄色 SPMX-20240815308261 \N \N \N 1 \N [{"file_id": "02f6a451-4b97-4a62-bf3a-2137d9f09e61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1c110c777654022b418861b04610075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1c110c777654022b418861b04610075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1c110c777654022b418861b04610075.jpg", "file_size": 14934, "is_delete": false, "file_type": 1, "original_file_name": "FM006#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c110c777654022b418861b04610075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c110c777654022b418861b04610075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1c110c777654022b418861b04610075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1c110c777654022b418861b04610075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1c110c777654022b418861b04610075.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJXAZdDUEN_wo1Wkv43elL1wCqQ=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.385051+00 2025-12-09 10:15:19.385056+00 13071 1147#墨绿 SPMX-20240815308267 \N \N \N 1 \N [{"file_id": "464e9600-3aea-4f2b-a341-ab5c0e0722db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddbb23ecc5764c1e91eb5c5005127f2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddbb23ecc5764c1e91eb5c5005127f2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddbb23ecc5764c1e91eb5c5005127f2a.jpg", "file_size": 22652, "is_delete": false, "file_type": 1, "original_file_name": "1147#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbb23ecc5764c1e91eb5c5005127f2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbb23ecc5764c1e91eb5c5005127f2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddbb23ecc5764c1e91eb5c5005127f2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddbb23ecc5764c1e91eb5c5005127f2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddbb23ecc5764c1e91eb5c5005127f2a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dF9j0sc2E1bcYAXyF0SxiaDWOU=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.387044+00 2025-12-09 10:15:19.387049+00 13072 DL31081#前幅深水红 SPMX-20240815308262 \N \N \N 1 \N [{"file_id": "e7df9678-9415-4baf-9e1d-00474d2cfcf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdebd70fac0b42aebd1fc16e153e4f8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdebd70fac0b42aebd1fc16e153e4f8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdebd70fac0b42aebd1fc16e153e4f8d.jpg", "file_size": 14363, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebd70fac0b42aebd1fc16e153e4f8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebd70fac0b42aebd1fc16e153e4f8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebd70fac0b42aebd1fc16e153e4f8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdebd70fac0b42aebd1fc16e153e4f8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdebd70fac0b42aebd1fc16e153e4f8d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnV96pyI4ZzHWBZaJ_lc4pS2QAI=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.389041+00 2025-12-09 10:15:19.389046+00 13073 82819-1FWE#粉单边定位 SPMX-20240815308268 \N \N \N 1 \N [{"file_id": "a1b614b2-ae98-48e1-9942-1a4669ed3989", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce6a877967d4924ab7f2dda988aea19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce6a877967d4924ab7f2dda988aea19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce6a877967d4924ab7f2dda988aea19.jpg", "file_size": 7962, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#粉单边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6a877967d4924ab7f2dda988aea19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6a877967d4924ab7f2dda988aea19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce6a877967d4924ab7f2dda988aea19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce6a877967d4924ab7f2dda988aea19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce6a877967d4924ab7f2dda988aea19.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lWGoM_dJXCIax3uO4X7-KI1YPWo=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.390989+00 2025-12-09 10:15:19.390994+00 13074 23-2120#A4-4XL SPMX-20240815308263 \N \N \N 1 \N [{"file_id": "f8c1d571-dd3b-49c5-802a-a1b75364e3bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a653fe825aa04503a5cd550e44ae005d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a653fe825aa04503a5cd550e44ae005d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a653fe825aa04503a5cd550e44ae005d.jpg", "file_size": 14243, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a653fe825aa04503a5cd550e44ae005d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a653fe825aa04503a5cd550e44ae005d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a653fe825aa04503a5cd550e44ae005d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a653fe825aa04503a5cd550e44ae005d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a653fe825aa04503a5cd550e44ae005d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ea9FeiXVbs5IeBL5xtApH8_zv7w=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.392975+00 2025-12-09 10:15:19.392981+00 13075 LJH1523-2#桔色 SPMX-20240815308265 \N \N \N 1 \N [{"file_id": "187229c9-cdef-43d3-84b9-707024bccf83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa178680596c477ea606350c41438cc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa178680596c477ea606350c41438cc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa178680596c477ea606350c41438cc2.jpg", "file_size": 75880, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-2#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa178680596c477ea606350c41438cc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa178680596c477ea606350c41438cc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa178680596c477ea606350c41438cc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa178680596c477ea606350c41438cc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa178680596c477ea606350c41438cc2.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:keDBxmuwIOB9st4WR6HgB2CR_F8=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.394997+00 2025-12-09 10:15:19.395002+00 13076 11404#WJC22 SPMX-20240815308255 \N \N \N 1 \N [{"file_id": "13796cf6-49a8-43a4-a96f-7b94129f9cce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c99feec721474d4f95cbad5cbdf7b5b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c99feec721474d4f95cbad5cbdf7b5b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c99feec721474d4f95cbad5cbdf7b5b7.jpg", "file_size": 17400, "is_delete": false, "file_type": 1, "original_file_name": "11404#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c99feec721474d4f95cbad5cbdf7b5b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c99feec721474d4f95cbad5cbdf7b5b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c99feec721474d4f95cbad5cbdf7b5b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c99feec721474d4f95cbad5cbdf7b5b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c99feec721474d4f95cbad5cbdf7b5b7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3cZTN9y2u5dP48REJ5oPdV5_X4E=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.397003+00 2025-12-09 10:15:19.397008+00 13077 0005-17#蓝色净色 SPMX-20240815308266 \N \N \N 1 \N [{"file_id": "eb8af61b-2c66-4a06-bfab-3e416809bd27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81cd478dfb0741fd98ce5d57423ddbc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81cd478dfb0741fd98ce5d57423ddbc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81cd478dfb0741fd98ce5d57423ddbc7.jpg", "file_size": 9151, "is_delete": false, "file_type": 1, "original_file_name": "0005-17#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cd478dfb0741fd98ce5d57423ddbc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cd478dfb0741fd98ce5d57423ddbc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81cd478dfb0741fd98ce5d57423ddbc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81cd478dfb0741fd98ce5d57423ddbc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81cd478dfb0741fd98ce5d57423ddbc7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Qeft3-s45D5Dj8bNYtB56nxmPM=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.399342+00 2025-12-09 10:15:19.399349+00 13078 C735FWF#正身L SPMX-20240815308270 \N \N \N 1 \N [{"file_id": "aea1ebe5-b127-4eab-914d-d190d19b10d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94b1a9b6e06c40b89e4cbff2ee5f5658.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94b1a9b6e06c40b89e4cbff2ee5f5658.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94b1a9b6e06c40b89e4cbff2ee5f5658.jpg", "file_size": 16378, "is_delete": false, "file_type": 1, "original_file_name": "C735FWF#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b1a9b6e06c40b89e4cbff2ee5f5658.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b1a9b6e06c40b89e4cbff2ee5f5658.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94b1a9b6e06c40b89e4cbff2ee5f5658.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94b1a9b6e06c40b89e4cbff2ee5f5658.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94b1a9b6e06c40b89e4cbff2ee5f5658.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbVDoXMHfJ0ppplxlmLpsaMtTEE=", "createTime": "2024-08-15 14:55:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.401449+00 2025-12-09 10:15:19.401455+00 13079 HT3333#黄色 SPMX-20240815308269 \N \N \N 1 \N [{"file_id": "d5090e59-39df-44b1-bbe8-36b144b52c75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg", "file_size": 84829, "is_delete": false, "file_type": 1, "original_file_name": "HT3333#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f4dbf39c5ac4a6386d6ebb9dbfb5daa.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WuPVNR_LL7qPDNFKd9VZ9xf9MI0=", "createTime": "2024-08-15 14:55:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.403741+00 2025-12-09 10:15:19.403747+00 13080 HT3334#原版色 SPMX-20240815308280 \N \N \N 1 \N [{"file_id": "5cd4c15b-478d-40f3-b47b-b3524aa38680", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e65f64c3b724fcba864605f8e956e7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e65f64c3b724fcba864605f8e956e7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e65f64c3b724fcba864605f8e956e7e.jpg", "file_size": 66887, "is_delete": false, "file_type": 1, "original_file_name": "HT3334#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e65f64c3b724fcba864605f8e956e7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e65f64c3b724fcba864605f8e956e7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e65f64c3b724fcba864605f8e956e7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e65f64c3b724fcba864605f8e956e7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e65f64c3b724fcba864605f8e956e7e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SEuL2E7jS_aIw3cYJy0lxjtk4ns=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.405962+00 2025-12-09 10:15:19.405967+00 13081 23-2120#A4-领子3XL SPMX-20240815308272 \N \N \N 1 \N [{"file_id": "901ca339-687d-4d91-b44f-1756563bb6da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70abbf1790284b0f91de7dbb3896c3d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70abbf1790284b0f91de7dbb3896c3d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70abbf1790284b0f91de7dbb3896c3d4.jpg", "file_size": 13524, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70abbf1790284b0f91de7dbb3896c3d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70abbf1790284b0f91de7dbb3896c3d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70abbf1790284b0f91de7dbb3896c3d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70abbf1790284b0f91de7dbb3896c3d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70abbf1790284b0f91de7dbb3896c3d4.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0X9O1k8a4p2aFhNGHqN3IH1xwyw=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.408172+00 2025-12-09 10:15:19.408177+00 13082 FM007#大红 SPMX-20240815308271 \N \N \N 1 \N [{"file_id": "441f3947-a490-48c8-983b-60d2e93f5a4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82c5dc6fa1c749f398b659373fd306d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82c5dc6fa1c749f398b659373fd306d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82c5dc6fa1c749f398b659373fd306d6.jpg", "file_size": 16842, "is_delete": false, "file_type": 1, "original_file_name": "FM007#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c5dc6fa1c749f398b659373fd306d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c5dc6fa1c749f398b659373fd306d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c5dc6fa1c749f398b659373fd306d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82c5dc6fa1c749f398b659373fd306d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82c5dc6fa1c749f398b659373fd306d6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owSs0QlBtSm57p1F7Xo-JVF2svM=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.410158+00 2025-12-09 10:15:19.410163+00 13083 LZ1313#捆条布 SPMX-20240815308274 \N \N \N 1 \N [{"file_id": "d64d94c4-8c82-4ad6-9aa7-4c06a279ddb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a429a0193394ec496a9c177d9a15bbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a429a0193394ec496a9c177d9a15bbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a429a0193394ec496a9c177d9a15bbb.jpg", "file_size": 11287, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a429a0193394ec496a9c177d9a15bbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a429a0193394ec496a9c177d9a15bbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a429a0193394ec496a9c177d9a15bbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a429a0193394ec496a9c177d9a15bbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a429a0193394ec496a9c177d9a15bbb.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XC1OVIE3xp3bzqSHytWRPBhx1uA=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.412144+00 2025-12-09 10:15:19.412149+00 13084 82819-1FWE#紫净色 SPMX-20240815308276 \N \N \N 1 \N [{"file_id": "135b88c5-9356-4f76-8829-3d03d3491ac2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e9fd652115b4687a130c7587b55a613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e9fd652115b4687a130c7587b55a613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e9fd652115b4687a130c7587b55a613.jpg", "file_size": 7765, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#紫净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e9fd652115b4687a130c7587b55a613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e9fd652115b4687a130c7587b55a613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e9fd652115b4687a130c7587b55a613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e9fd652115b4687a130c7587b55a613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e9fd652115b4687a130c7587b55a613.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVuAVFpemFfjnO30Hlz9AFB2eeU=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.414301+00 2025-12-09 10:15:19.414306+00 13085 1147#枣红 SPMX-20240815308278 \N \N \N 1 \N [{"file_id": "bef28bef-71d4-44f4-848c-76a8340bedf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf114c4f9f3041ec8e4fac044c7c4301.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf114c4f9f3041ec8e4fac044c7c4301.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf114c4f9f3041ec8e4fac044c7c4301.jpg", "file_size": 21634, "is_delete": false, "file_type": 1, "original_file_name": "1147#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf114c4f9f3041ec8e4fac044c7c4301.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf114c4f9f3041ec8e4fac044c7c4301.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf114c4f9f3041ec8e4fac044c7c4301.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf114c4f9f3041ec8e4fac044c7c4301.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf114c4f9f3041ec8e4fac044c7c4301.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:npavAeQfTaIAYuil8ZuefsYeBD8=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.416486+00 2025-12-09 10:15:19.416492+00 13086 C735FWF#正身M SPMX-20240815308277 \N \N \N 1 \N [{"file_id": "fa65d722-2a7e-46d5-89a8-f5633f6bddd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "480073da53314031bd1f1c9f1fca9d84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "480073da53314031bd1f1c9f1fca9d84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "480073da53314031bd1f1c9f1fca9d84.jpg", "file_size": 16817, "is_delete": false, "file_type": 1, "original_file_name": "C735FWF#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480073da53314031bd1f1c9f1fca9d84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480073da53314031bd1f1c9f1fca9d84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480073da53314031bd1f1c9f1fca9d84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/480073da53314031bd1f1c9f1fca9d84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/480073da53314031bd1f1c9f1fca9d84.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BXBNHuhJzmml774YdzV9JMUn8M=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.418932+00 2025-12-09 10:15:19.418937+00 13087 DL31081#前幅玫红色 SPMX-20240815308275 \N \N \N 1 \N [{"file_id": "85c82bb9-d327-4b53-a39f-1a28ff61fe46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a875c9003a14a66b200362610a43bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a875c9003a14a66b200362610a43bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a875c9003a14a66b200362610a43bd8.jpg", "file_size": 14423, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a875c9003a14a66b200362610a43bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a875c9003a14a66b200362610a43bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a875c9003a14a66b200362610a43bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a875c9003a14a66b200362610a43bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a875c9003a14a66b200362610a43bd8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBRjzhK1_B7NKJvcPJlWxK7MDuA=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.421374+00 2025-12-09 10:15:19.421379+00 13088 0005-17#蓝色条 SPMX-20240815308279 \N \N \N 1 \N [{"file_id": "20b33c9f-c988-496a-9748-4671f0d4376b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "421847ddbd224968b07abbad75619598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "421847ddbd224968b07abbad75619598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "421847ddbd224968b07abbad75619598.jpg", "file_size": 9755, "is_delete": false, "file_type": 1, "original_file_name": "0005-17#蓝色条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421847ddbd224968b07abbad75619598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421847ddbd224968b07abbad75619598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421847ddbd224968b07abbad75619598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/421847ddbd224968b07abbad75619598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/421847ddbd224968b07abbad75619598.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZYWEC6QhAJr8-zKf85KraqZeg4=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.423556+00 2025-12-09 10:15:19.423562+00 13089 LJH1523-2#黄色 SPMX-20240815308273 \N \N \N 1 \N [{"file_id": "e22fb341-c670-4d06-86c8-fcc1877be55f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f62d3d9b3b4998b132954e879b12f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f62d3d9b3b4998b132954e879b12f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f62d3d9b3b4998b132954e879b12f8.jpg", "file_size": 76067, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f62d3d9b3b4998b132954e879b12f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f62d3d9b3b4998b132954e879b12f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f62d3d9b3b4998b132954e879b12f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f62d3d9b3b4998b132954e879b12f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f62d3d9b3b4998b132954e879b12f8.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkq_6GSzkkac69b2MR2OrA6h3uE=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.425961+00 2025-12-09 10:15:19.425966+00 13090 1147#粉色 SPMX-20240815308289 \N \N \N 1 \N [{"file_id": "989ba1a4-1874-4c8d-ab90-6e93e3e67bfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50e681fc343c4757b7cf1dc6303e0a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50e681fc343c4757b7cf1dc6303e0a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50e681fc343c4757b7cf1dc6303e0a56.jpg", "file_size": 25308, "is_delete": false, "file_type": 1, "original_file_name": "1147#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e681fc343c4757b7cf1dc6303e0a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e681fc343c4757b7cf1dc6303e0a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e681fc343c4757b7cf1dc6303e0a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50e681fc343c4757b7cf1dc6303e0a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50e681fc343c4757b7cf1dc6303e0a56.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pfjRL7lc10R_rCfQwCh9FuelDXM=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.428342+00 2025-12-09 10:15:19.428348+00 13091 FM007#彩兰 SPMX-20240815308282 \N \N \N 1 \N [{"file_id": "efa6933b-20f4-4f01-9b49-ac205cb7fe85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16f28cce40eb4828a26372c84ae034e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16f28cce40eb4828a26372c84ae034e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16f28cce40eb4828a26372c84ae034e4.jpg", "file_size": 15696, "is_delete": false, "file_type": 1, "original_file_name": "FM007#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16f28cce40eb4828a26372c84ae034e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16f28cce40eb4828a26372c84ae034e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16f28cce40eb4828a26372c84ae034e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16f28cce40eb4828a26372c84ae034e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16f28cce40eb4828a26372c84ae034e4.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7c1-LLlSymzXyA-urTmXxZ1Nsfg=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.43053+00 2025-12-09 10:15:19.430536+00 13092 82819-1FWE#紫单边定位 SPMX-20240815308290 \N \N \N 1 \N [{"file_id": "ea3c3c61-9a82-4d2b-95e1-781303538f59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c4158ef235d4bc9826277ee492cc405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c4158ef235d4bc9826277ee492cc405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c4158ef235d4bc9826277ee492cc405.jpg", "file_size": 8121, "is_delete": false, "file_type": 1, "original_file_name": "82819-1FWE#紫单边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4158ef235d4bc9826277ee492cc405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4158ef235d4bc9826277ee492cc405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4158ef235d4bc9826277ee492cc405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c4158ef235d4bc9826277ee492cc405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c4158ef235d4bc9826277ee492cc405.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7nWe_c2Tyn-2cUkfywUzw7WWtA=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.432697+00 2025-12-09 10:15:19.432702+00 13093 LZ1313#背心款1号色 SPMX-20240815308285 \N \N \N 1 \N [{"file_id": "00b62d94-fc7d-416a-b8e6-7a6ad3230cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b643172bbab44016a7284b5beb19f608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b643172bbab44016a7284b5beb19f608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b643172bbab44016a7284b5beb19f608.jpg", "file_size": 16528, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643172bbab44016a7284b5beb19f608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643172bbab44016a7284b5beb19f608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643172bbab44016a7284b5beb19f608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b643172bbab44016a7284b5beb19f608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b643172bbab44016a7284b5beb19f608.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wjLZ0ytTgA_qWPDXYJO67blrgk=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.435084+00 2025-12-09 10:15:19.435089+00 13094 23-2120#A4-领子4XL SPMX-20240815308284 \N \N \N 1 \N [{"file_id": "8829a81d-539b-4b6d-81cb-f37d82a7e9e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf619199b4da49d89cbd393ab18860a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf619199b4da49d89cbd393ab18860a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf619199b4da49d89cbd393ab18860a5.jpg", "file_size": 13291, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf619199b4da49d89cbd393ab18860a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf619199b4da49d89cbd393ab18860a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf619199b4da49d89cbd393ab18860a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf619199b4da49d89cbd393ab18860a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf619199b4da49d89cbd393ab18860a5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AzIPAriTcXvQKGNUwoEdniSXjlw=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.43742+00 2025-12-09 10:15:19.437425+00 13095 0005-18#橙色 SPMX-20240815308286 \N \N \N 1 \N [{"file_id": "4fdc6231-130d-44ef-9490-b79f2c67756a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg", "file_size": 11631, "is_delete": false, "file_type": 1, "original_file_name": "0005-18#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c8e5bc61e0d4f51bd183cc4cbf218fa.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWJKKCh0tZCRTKxjg9wlMP3CBzk=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.439589+00 2025-12-09 10:15:19.439594+00 13096 JTSS420FW#VS-D3 SPMX-20240815308281 \N \N \N 1 \N [{"file_id": "e631f072-1d91-4cc6-bed6-2d2bc063ac27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c81f0e831248484784b563a90e22d9ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c81f0e831248484784b563a90e22d9ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c81f0e831248484784b563a90e22d9ce.jpg", "file_size": 11943, "is_delete": false, "file_type": 1, "original_file_name": "JTSS420FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81f0e831248484784b563a90e22d9ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81f0e831248484784b563a90e22d9ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c81f0e831248484784b563a90e22d9ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c81f0e831248484784b563a90e22d9ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c81f0e831248484784b563a90e22d9ce.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j94ZC46RlvPkrI_ELrj147kYSwA=", "createTime": "2024-08-15 14:55:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.441727+00 2025-12-09 10:15:19.441733+00 13097 C735FWF#正身S SPMX-20240815308288 \N \N \N 1 \N [{"file_id": "42b2b01c-63fc-4d69-8769-6c3cbef15eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d19a1c4604f4dc58cee6269ccc555f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d19a1c4604f4dc58cee6269ccc555f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d19a1c4604f4dc58cee6269ccc555f3.jpg", "file_size": 17202, "is_delete": false, "file_type": 1, "original_file_name": "C735FWF#正身S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d19a1c4604f4dc58cee6269ccc555f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d19a1c4604f4dc58cee6269ccc555f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d19a1c4604f4dc58cee6269ccc555f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d19a1c4604f4dc58cee6269ccc555f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d19a1c4604f4dc58cee6269ccc555f3.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LkoqV7j5jOgXcfCSlLFwAQ1eEs=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.444103+00 2025-12-09 10:15:19.444108+00 13098 HT3334#红色 SPMX-20240815308291 \N \N \N 1 \N [{"file_id": "1de815c4-c7e4-49be-af07-2cb8142f6612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb21ac2ebb984f44ad96412052e30921.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb21ac2ebb984f44ad96412052e30921.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb21ac2ebb984f44ad96412052e30921.jpg", "file_size": 66261, "is_delete": false, "file_type": 1, "original_file_name": "HT3334#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb21ac2ebb984f44ad96412052e30921.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb21ac2ebb984f44ad96412052e30921.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb21ac2ebb984f44ad96412052e30921.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb21ac2ebb984f44ad96412052e30921.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb21ac2ebb984f44ad96412052e30921.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pxWmJAhUqdK0e27lAABXg-2WyE=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.467639+00 2025-12-09 10:15:19.467646+00 13103 0005-18#绿色 SPMX-20240815308298 \N \N \N 1 \N [{"file_id": "d03b1065-f923-46c3-82fa-7c85a4781d29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e282033a83bc4652b373a11f6ecbd3bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e282033a83bc4652b373a11f6ecbd3bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e282033a83bc4652b373a11f6ecbd3bc.jpg", "file_size": 12932, "is_delete": false, "file_type": 1, "original_file_name": "0005-18#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e282033a83bc4652b373a11f6ecbd3bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e282033a83bc4652b373a11f6ecbd3bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e282033a83bc4652b373a11f6ecbd3bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e282033a83bc4652b373a11f6ecbd3bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e282033a83bc4652b373a11f6ecbd3bc.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2EoIS7a_O6UfBdUxpCjFh8kEuc=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.446478+00 2025-12-09 10:15:19.446484+00 13099 DL31081#前幅蓝绿色 SPMX-20240815308283 \N \N \N 1 \N [{"file_id": "c96b915a-a4ed-46eb-8480-505d112f661b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b93c54f042c34cb584f9522286c05eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b93c54f042c34cb584f9522286c05eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b93c54f042c34cb584f9522286c05eca.jpg", "file_size": 15240, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c54f042c34cb584f9522286c05eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c54f042c34cb584f9522286c05eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c54f042c34cb584f9522286c05eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b93c54f042c34cb584f9522286c05eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b93c54f042c34cb584f9522286c05eca.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkvxjyhFzQsQVPZKJn9tmZPm6nc=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.448668+00 2025-12-09 10:15:19.448674+00 13100 LJH1523-8#大红 SPMX-20240815308287 \N \N \N 1 \N [{"file_id": "2d7b1016-8422-44fd-8366-b3d723ef11f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00d7de07e62640ff9c6da62997fbf47d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00d7de07e62640ff9c6da62997fbf47d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00d7de07e62640ff9c6da62997fbf47d.jpg", "file_size": 66105, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-8#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d7de07e62640ff9c6da62997fbf47d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d7de07e62640ff9c6da62997fbf47d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00d7de07e62640ff9c6da62997fbf47d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00d7de07e62640ff9c6da62997fbf47d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00d7de07e62640ff9c6da62997fbf47d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUCU2f5qv07YL8tLGsBOUkxXidU=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.450819+00 2025-12-09 10:15:19.450825+00 13101 23-2120#A5-3XL SPMX-20240815308294 \N \N \N 1 \N [{"file_id": "fbe8e219-e3cd-42f1-be78-6bf021faf6b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67651bd571d84fc7834af22379035369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67651bd571d84fc7834af22379035369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67651bd571d84fc7834af22379035369.jpg", "file_size": 15778, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67651bd571d84fc7834af22379035369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67651bd571d84fc7834af22379035369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67651bd571d84fc7834af22379035369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67651bd571d84fc7834af22379035369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67651bd571d84fc7834af22379035369.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ubdv3I2wT3sEueqOv2GH-IBYL64=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.464907+00 2025-12-09 10:15:19.464913+00 13102 JTSS421FW#VS-D3 SPMX-20240815308292 \N \N \N 1 \N [{"file_id": "b5e70dba-a596-49ab-aa00-23dec2e1d7ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814e2976c2e441179ce7756cad9b240d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814e2976c2e441179ce7756cad9b240d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814e2976c2e441179ce7756cad9b240d.jpg", "file_size": 18644, "is_delete": false, "file_type": 1, "original_file_name": "JTSS421FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814e2976c2e441179ce7756cad9b240d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814e2976c2e441179ce7756cad9b240d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814e2976c2e441179ce7756cad9b240d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814e2976c2e441179ce7756cad9b240d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814e2976c2e441179ce7756cad9b240d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0aF24lzR70YqGuULD7Q1aF1Y50=", "createTime": "2024-08-15 14:55:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.470169+00 2025-12-09 10:15:19.470175+00 13104 JTSS422FW#VS-D3 SPMX-20240815308302 \N \N \N 1 \N [{"file_id": "4600780a-a4d0-45cf-9f65-5280d720009b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d1fa78df447468c9ba3f7dabb39ccdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d1fa78df447468c9ba3f7dabb39ccdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d1fa78df447468c9ba3f7dabb39ccdf.jpg", "file_size": 23026, "is_delete": false, "file_type": 1, "original_file_name": "JTSS422FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1fa78df447468c9ba3f7dabb39ccdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1fa78df447468c9ba3f7dabb39ccdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d1fa78df447468c9ba3f7dabb39ccdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d1fa78df447468c9ba3f7dabb39ccdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d1fa78df447468c9ba3f7dabb39ccdf.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qG8LHAl4zf74vsBBjYsyNSkQBQ=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.472644+00 2025-12-09 10:15:19.472649+00 13105 LJH1523-8#橙色 SPMX-20240815308296 \N \N \N 1 \N [{"file_id": "3a70b35e-475b-445c-a889-ede6adafa07f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89c4c72e60e84f4497618679ca8c2370.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89c4c72e60e84f4497618679ca8c2370.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89c4c72e60e84f4497618679ca8c2370.jpg", "file_size": 67924, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-8#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c4c72e60e84f4497618679ca8c2370.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c4c72e60e84f4497618679ca8c2370.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89c4c72e60e84f4497618679ca8c2370.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89c4c72e60e84f4497618679ca8c2370.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89c4c72e60e84f4497618679ca8c2370.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yhgmb_t0EhNYgfEt67WBoTyEtic=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.475065+00 2025-12-09 10:15:19.475071+00 13106 HT3334#绿色 SPMX-20240815308303 \N \N \N 1 \N [{"file_id": "ab8d9a2a-e2c6-4456-aa5e-69545cbb479f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ff39473f37a47c5af5286d0ee54a1a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ff39473f37a47c5af5286d0ee54a1a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ff39473f37a47c5af5286d0ee54a1a3.jpg", "file_size": 66899, "is_delete": false, "file_type": 1, "original_file_name": "HT3334#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff39473f37a47c5af5286d0ee54a1a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff39473f37a47c5af5286d0ee54a1a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ff39473f37a47c5af5286d0ee54a1a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ff39473f37a47c5af5286d0ee54a1a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ff39473f37a47c5af5286d0ee54a1a3.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fetsmG2BADoFztSAMSQ-UGYdTQU=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.477425+00 2025-12-09 10:15:19.477431+00 13107 C735FWF#正身XL SPMX-20240815308300 \N \N \N 1 \N [{"file_id": "c85b4280-f08a-44b8-a302-0b8a0e1800f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9ef15f5169046b39b668bb2b59caa83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9ef15f5169046b39b668bb2b59caa83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9ef15f5169046b39b668bb2b59caa83.jpg", "file_size": 16045, "is_delete": false, "file_type": 1, "original_file_name": "C735FWF#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ef15f5169046b39b668bb2b59caa83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ef15f5169046b39b668bb2b59caa83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ef15f5169046b39b668bb2b59caa83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9ef15f5169046b39b668bb2b59caa83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9ef15f5169046b39b668bb2b59caa83.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-mmiXa0HYNsuCkQnnr_T59kvz-I=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.479818+00 2025-12-09 10:15:19.479824+00 13108 FM007#枣红 SPMX-20240815308293 \N \N \N 1 \N [{"file_id": "db506a52-a0f1-4c7d-8dff-415a97b04833", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "873fc34c8fca4014846e178bc333b44b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "873fc34c8fca4014846e178bc333b44b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "873fc34c8fca4014846e178bc333b44b.jpg", "file_size": 17209, "is_delete": false, "file_type": 1, "original_file_name": "FM007#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fc34c8fca4014846e178bc333b44b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fc34c8fca4014846e178bc333b44b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873fc34c8fca4014846e178bc333b44b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/873fc34c8fca4014846e178bc333b44b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/873fc34c8fca4014846e178bc333b44b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ttG1iFG4RQ7w-hBzGulvM2EH_mE=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.482025+00 2025-12-09 10:15:19.482031+00 13109 LZ1313#背心款2号色 SPMX-20240815308297 \N \N \N 1 \N [{"file_id": "d7e49ea3-962e-4700-b6f0-e48ced756dd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae357a971e6e4a879a2e2f17b98fd4c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae357a971e6e4a879a2e2f17b98fd4c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae357a971e6e4a879a2e2f17b98fd4c9.jpg", "file_size": 17209, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae357a971e6e4a879a2e2f17b98fd4c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae357a971e6e4a879a2e2f17b98fd4c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae357a971e6e4a879a2e2f17b98fd4c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae357a971e6e4a879a2e2f17b98fd4c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae357a971e6e4a879a2e2f17b98fd4c9.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNYrdvGStKWmxtRTFUgJFr8uij8=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.48448+00 2025-12-09 10:15:19.484486+00 13110 DL31081#前幅黄色 SPMX-20240815308295 \N \N \N 1 \N [{"file_id": "a759c269-752a-4638-a0c8-1e2347e7af71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7f8a97bdd1c40828ffe854d8601b609.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7f8a97bdd1c40828ffe854d8601b609.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7f8a97bdd1c40828ffe854d8601b609.jpg", "file_size": 13848, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f8a97bdd1c40828ffe854d8601b609.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f8a97bdd1c40828ffe854d8601b609.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f8a97bdd1c40828ffe854d8601b609.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7f8a97bdd1c40828ffe854d8601b609.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7f8a97bdd1c40828ffe854d8601b609.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ifdz3rp2X0cP_yQKD72PXruJ88E=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.486884+00 2025-12-09 10:15:19.486889+00 13111 1147#黄色 SPMX-20240815308299 \N \N \N 1 \N [{"file_id": "e62ce856-660f-4458-b92c-e375b77ec1a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cff31c2b147546a98bc04edaebd7203b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cff31c2b147546a98bc04edaebd7203b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cff31c2b147546a98bc04edaebd7203b.jpg", "file_size": 25933, "is_delete": false, "file_type": 1, "original_file_name": "1147#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff31c2b147546a98bc04edaebd7203b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff31c2b147546a98bc04edaebd7203b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cff31c2b147546a98bc04edaebd7203b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cff31c2b147546a98bc04edaebd7203b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cff31c2b147546a98bc04edaebd7203b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hI_A9qvbs1fo_r946Ara-Bl2ZSI=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.489029+00 2025-12-09 10:15:19.489034+00 13112 8297#10 SPMX-20240815308301 \N \N \N 1 \N [{"file_id": "fa28c367-466b-40d8-817f-a1975bb1504f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02c16eab42e24ca0bc5664bc11a44b98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02c16eab42e24ca0bc5664bc11a44b98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02c16eab42e24ca0bc5664bc11a44b98.jpg", "file_size": 7941, "is_delete": false, "file_type": 1, "original_file_name": "8297#10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c16eab42e24ca0bc5664bc11a44b98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c16eab42e24ca0bc5664bc11a44b98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c16eab42e24ca0bc5664bc11a44b98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02c16eab42e24ca0bc5664bc11a44b98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02c16eab42e24ca0bc5664bc11a44b98.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31blt-HqfHK7GuHjACfYeOc_8t8=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.491441+00 2025-12-09 10:15:19.491447+00 13113 1148FWF#V5曲线 SPMX-20240815308311 \N \N \N 1 \N [{"file_id": "eb9e3cb9-d3a6-4529-8685-c847af40bfef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60bbbcdb285d49babed668b1d200680d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60bbbcdb285d49babed668b1d200680d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60bbbcdb285d49babed668b1d200680d.jpg", "file_size": 22156, "is_delete": false, "file_type": 1, "original_file_name": "1148FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bbbcdb285d49babed668b1d200680d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bbbcdb285d49babed668b1d200680d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60bbbcdb285d49babed668b1d200680d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60bbbcdb285d49babed668b1d200680d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60bbbcdb285d49babed668b1d200680d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2nGvlkldMmDI36FYUpT6i11rWNI=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.493904+00 2025-12-09 10:15:19.493909+00 13114 DL31081#批布墨绿色 SPMX-20240815308307 \N \N \N 1 \N [{"file_id": "a7b3d9c1-86cc-4605-aee2-bac48f8cde03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "982d81980dab4ad2ab83df4a8da38fa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "982d81980dab4ad2ab83df4a8da38fa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "982d81980dab4ad2ab83df4a8da38fa7.jpg", "file_size": 16470, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982d81980dab4ad2ab83df4a8da38fa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982d81980dab4ad2ab83df4a8da38fa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982d81980dab4ad2ab83df4a8da38fa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/982d81980dab4ad2ab83df4a8da38fa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/982d81980dab4ad2ab83df4a8da38fa7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IpN_xQT5iOyY_Ge4JlI7KpK76r4=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.496107+00 2025-12-09 10:15:19.496117+00 13115 C767FWF#正身L SPMX-20240815308310 \N \N \N 1 \N [{"file_id": "fa638120-e5b2-4a1e-a184-35492c1c6b8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7905849aa570433bb5afb11b241db69f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7905849aa570433bb5afb11b241db69f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7905849aa570433bb5afb11b241db69f.jpg", "file_size": 18279, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905849aa570433bb5afb11b241db69f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905849aa570433bb5afb11b241db69f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905849aa570433bb5afb11b241db69f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7905849aa570433bb5afb11b241db69f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7905849aa570433bb5afb11b241db69f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7V0JlKyQudeMsfRd_iZRicpMMpA=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.49852+00 2025-12-09 10:15:19.49853+00 13116 0005-19#橘色 SPMX-20240815308308 \N \N \N 1 \N [{"file_id": "a0c090f3-8187-4514-99b7-d257f43c8f44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4373fc7c0b814e28a05bd7c679b53657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4373fc7c0b814e28a05bd7c679b53657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4373fc7c0b814e28a05bd7c679b53657.jpg", "file_size": 12181, "is_delete": false, "file_type": 1, "original_file_name": "0005-19#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4373fc7c0b814e28a05bd7c679b53657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4373fc7c0b814e28a05bd7c679b53657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4373fc7c0b814e28a05bd7c679b53657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4373fc7c0b814e28a05bd7c679b53657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4373fc7c0b814e28a05bd7c679b53657.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVoUv02AFw3HEtPEUqBP51-D6fI=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.500928+00 2025-12-09 10:15:19.500934+00 13117 FM007#白色 SPMX-20240815308314 \N \N \N 1 \N [{"file_id": "9bc3919a-8339-4931-a94d-5f0e6b19abc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eef75c68f5b4cb8a75b54ae05f77e1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eef75c68f5b4cb8a75b54ae05f77e1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eef75c68f5b4cb8a75b54ae05f77e1c.jpg", "file_size": 15569, "is_delete": false, "file_type": 1, "original_file_name": "FM007#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eef75c68f5b4cb8a75b54ae05f77e1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eef75c68f5b4cb8a75b54ae05f77e1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eef75c68f5b4cb8a75b54ae05f77e1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eef75c68f5b4cb8a75b54ae05f77e1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eef75c68f5b4cb8a75b54ae05f77e1c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oIjsH4fSDasXppLVwe12AkY8YW4=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.503183+00 2025-12-09 10:15:19.503189+00 13118 23-2120#A5-领子3XL SPMX-20240815308316 \N \N \N 1 \N [{"file_id": "126367a0-17b6-4c85-9c10-e83cdee5d8cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "026b3f08b7f0449c8a7a21151cebd343.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "026b3f08b7f0449c8a7a21151cebd343.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "026b3f08b7f0449c8a7a21151cebd343.jpg", "file_size": 11649, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026b3f08b7f0449c8a7a21151cebd343.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026b3f08b7f0449c8a7a21151cebd343.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/026b3f08b7f0449c8a7a21151cebd343.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/026b3f08b7f0449c8a7a21151cebd343.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/026b3f08b7f0449c8a7a21151cebd343.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnbjVzTyRCd6-cFnmQPwowVp3Zo=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.505631+00 2025-12-09 10:15:19.505636+00 13119 23-2120#A5-4XL SPMX-20240815308305 \N \N \N 1 \N [{"file_id": "52a3bd0a-ec72-4489-9247-0fd173dd8e2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a62df1fea34445088791418503bc162.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a62df1fea34445088791418503bc162.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a62df1fea34445088791418503bc162.jpg", "file_size": 15227, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a62df1fea34445088791418503bc162.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a62df1fea34445088791418503bc162.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a62df1fea34445088791418503bc162.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a62df1fea34445088791418503bc162.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a62df1fea34445088791418503bc162.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5efb8ugkMy1cfGU6pTJ13aGgaS4=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.508095+00 2025-12-09 10:15:19.5081+00 13120 8297#10号 SPMX-20240815308312 \N \N \N 1 \N [{"file_id": "f7aefd5d-2031-4260-8e66-4f551a9d8d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c184643c552d4e2f9de2de6c333cd79d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c184643c552d4e2f9de2de6c333cd79d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c184643c552d4e2f9de2de6c333cd79d.jpg", "file_size": 7405, "is_delete": false, "file_type": 1, "original_file_name": "8297#10号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c184643c552d4e2f9de2de6c333cd79d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c184643c552d4e2f9de2de6c333cd79d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c184643c552d4e2f9de2de6c333cd79d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c184643c552d4e2f9de2de6c333cd79d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c184643c552d4e2f9de2de6c333cd79d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:djCDyvv5XcX5TG3xbc9ypy_ljVA=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.510274+00 2025-12-09 10:15:19.51028+00 13121 JTSS423FW#VS-D3 SPMX-20240815308313 \N \N \N 1 \N [{"file_id": "1d2f989d-9e8a-4da9-86ad-aa5276772eec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg", "file_size": 17917, "is_delete": false, "file_type": 1, "original_file_name": "JTSS423FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f3d0eacb6b4e32a46b21f1bb1f9377.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qxqxw68ZiPtjlzrtqJnLikuph6Y=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.512642+00 2025-12-09 10:15:19.512647+00 13122 LZ1313#背心款3号色 SPMX-20240815308306 \N \N \N 1 \N [{"file_id": "45762a75-448a-4392-96a4-b7ac7ace5996", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c7e17d60546471e9a68dac184e0159e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c7e17d60546471e9a68dac184e0159e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c7e17d60546471e9a68dac184e0159e.jpg", "file_size": 16169, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7e17d60546471e9a68dac184e0159e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7e17d60546471e9a68dac184e0159e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7e17d60546471e9a68dac184e0159e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c7e17d60546471e9a68dac184e0159e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c7e17d60546471e9a68dac184e0159e.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AhQaLBRv0ECGKey8NOl7-07NK6Y=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.515076+00 2025-12-09 10:15:19.515081+00 13123 HT3334#黄色 SPMX-20240815308315 \N \N \N 1 \N [{"file_id": "f30d08ca-fc0d-4670-8e1c-3ae6846bdd6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1d035dcfdb4435997cfbeb1e1de2804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1d035dcfdb4435997cfbeb1e1de2804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1d035dcfdb4435997cfbeb1e1de2804.jpg", "file_size": 65872, "is_delete": false, "file_type": 1, "original_file_name": "HT3334#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d035dcfdb4435997cfbeb1e1de2804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d035dcfdb4435997cfbeb1e1de2804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d035dcfdb4435997cfbeb1e1de2804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1d035dcfdb4435997cfbeb1e1de2804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1d035dcfdb4435997cfbeb1e1de2804.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JeYdohaKeg_POKro4SpmzcbsXAQ=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.517283+00 2025-12-09 10:15:19.517288+00 13124 FM007#玫红 SPMX-20240815308304 \N \N \N 1 \N [{"file_id": "c24bdfdf-3654-4138-be7b-e59fc74c70ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3637157c3f694004811b80bd364c96d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3637157c3f694004811b80bd364c96d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3637157c3f694004811b80bd364c96d6.jpg", "file_size": 15846, "is_delete": false, "file_type": 1, "original_file_name": "FM007#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3637157c3f694004811b80bd364c96d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3637157c3f694004811b80bd364c96d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3637157c3f694004811b80bd364c96d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3637157c3f694004811b80bd364c96d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3637157c3f694004811b80bd364c96d6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6pcqenPglSvD1NX4Jvv72VAZeg=", "createTime": "2024-08-15 14:55:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.519913+00 2025-12-09 10:15:19.519919+00 13125 LJH1523-8#绿色 SPMX-20240815308309 \N \N \N 1 \N [{"file_id": "8fc637fd-ea5e-4f66-8e2b-5331bbbc0790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce12f2a7aed941d5a92346e26e1e662b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce12f2a7aed941d5a92346e26e1e662b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce12f2a7aed941d5a92346e26e1e662b.jpg", "file_size": 59471, "is_delete": false, "file_type": 1, "original_file_name": "LJH1523-8#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12f2a7aed941d5a92346e26e1e662b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12f2a7aed941d5a92346e26e1e662b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12f2a7aed941d5a92346e26e1e662b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce12f2a7aed941d5a92346e26e1e662b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce12f2a7aed941d5a92346e26e1e662b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aB_mCARwoBTEhh1UyK2L4REDVsk=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.522652+00 2025-12-09 10:15:19.522657+00 13126 LZ1313#背心款4号色 SPMX-20240815308317 \N \N \N 1 \N [{"file_id": "d4cd71dc-7781-474c-a10b-e3571110a63d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f73ff04a9194c49b01d04f452abe268.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f73ff04a9194c49b01d04f452abe268.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f73ff04a9194c49b01d04f452abe268.jpg", "file_size": 17734, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f73ff04a9194c49b01d04f452abe268.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f73ff04a9194c49b01d04f452abe268.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f73ff04a9194c49b01d04f452abe268.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f73ff04a9194c49b01d04f452abe268.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f73ff04a9194c49b01d04f452abe268.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pIW7aeLD3xHR6lA0Hh1LpKpJQy4=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.525372+00 2025-12-09 10:15:19.525378+00 13127 0005-19#黑色 SPMX-20240815308329 \N \N \N 1 \N [{"file_id": "fbeb817c-5d6a-4f89-bb4b-862e33727fc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6abca93b3674e77b84f243bc14201fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6abca93b3674e77b84f243bc14201fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6abca93b3674e77b84f243bc14201fb.jpg", "file_size": 11229, "is_delete": false, "file_type": 1, "original_file_name": "0005-19#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6abca93b3674e77b84f243bc14201fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6abca93b3674e77b84f243bc14201fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6abca93b3674e77b84f243bc14201fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6abca93b3674e77b84f243bc14201fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6abca93b3674e77b84f243bc14201fb.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x1JYhK3fs1Znv_Jm203LKuKsy3A=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.528082+00 2025-12-09 10:15:19.528088+00 13128 8297#11号 SPMX-20240815308324 \N \N \N 1 \N [{"file_id": "28334619-1328-4b41-8b03-e82f6c8f19f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed678f69915d4e5d8c36d56746d376d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed678f69915d4e5d8c36d56746d376d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed678f69915d4e5d8c36d56746d376d0.jpg", "file_size": 7338, "is_delete": false, "file_type": 1, "original_file_name": "8297#11号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed678f69915d4e5d8c36d56746d376d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed678f69915d4e5d8c36d56746d376d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed678f69915d4e5d8c36d56746d376d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed678f69915d4e5d8c36d56746d376d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed678f69915d4e5d8c36d56746d376d0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjtDEasz9_sEwwc1ECt9HZ5mZM4=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.530554+00 2025-12-09 10:15:19.530559+00 13129 LJH1528#宝蓝 SPMX-20240815308319 \N \N \N 1 \N [{"file_id": "eada6e8e-d102-40cd-86ae-54b017f39b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44297c42ba18460b8012de94fcb615cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44297c42ba18460b8012de94fcb615cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44297c42ba18460b8012de94fcb615cd.jpg", "file_size": 45039, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44297c42ba18460b8012de94fcb615cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44297c42ba18460b8012de94fcb615cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44297c42ba18460b8012de94fcb615cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44297c42ba18460b8012de94fcb615cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44297c42ba18460b8012de94fcb615cd.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7uZk5T8bDQP3tFMyTBnRPRs7lA=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.533319+00 2025-12-09 10:15:19.533324+00 13130 C767FWF#正身S SPMX-20240815308330 \N \N \N 1 \N [{"file_id": "0cb869a5-a800-4b4a-9d67-9e9445aedb9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7945f0cdb34431c88f5631a81f8f8d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7945f0cdb34431c88f5631a81f8f8d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7945f0cdb34431c88f5631a81f8f8d6.jpg", "file_size": 13007, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#正身S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7945f0cdb34431c88f5631a81f8f8d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7945f0cdb34431c88f5631a81f8f8d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7945f0cdb34431c88f5631a81f8f8d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7945f0cdb34431c88f5631a81f8f8d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7945f0cdb34431c88f5631a81f8f8d6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_x7JyrDJkdZEqvcEd9BPnH7l-s=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.535787+00 2025-12-09 10:15:19.535792+00 13131 DL31081#批布彩兰色 SPMX-20240815308331 \N \N \N 1 \N [{"file_id": "5b02ff6d-d820-45f7-8fb2-4e401b038ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35db661ff65c4003a2dbe3e44c563ba1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35db661ff65c4003a2dbe3e44c563ba1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35db661ff65c4003a2dbe3e44c563ba1.jpg", "file_size": 16834, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35db661ff65c4003a2dbe3e44c563ba1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35db661ff65c4003a2dbe3e44c563ba1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35db661ff65c4003a2dbe3e44c563ba1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35db661ff65c4003a2dbe3e44c563ba1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35db661ff65c4003a2dbe3e44c563ba1.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRLRBgT-fNuAAmQT7kOJSQeBDls=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.538483+00 2025-12-09 10:15:19.538488+00 13132 JTSS424FW#VS-D3 SPMX-20240815308323 \N \N \N 1 \N [{"file_id": "fb58193b-f1e3-4419-abf0-4fa893c4e855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "466a72ba52ed44caa250d42b5cc8d9df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "466a72ba52ed44caa250d42b5cc8d9df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "466a72ba52ed44caa250d42b5cc8d9df.jpg", "file_size": 14025, "is_delete": false, "file_type": 1, "original_file_name": "JTSS424FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466a72ba52ed44caa250d42b5cc8d9df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466a72ba52ed44caa250d42b5cc8d9df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466a72ba52ed44caa250d42b5cc8d9df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/466a72ba52ed44caa250d42b5cc8d9df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/466a72ba52ed44caa250d42b5cc8d9df.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpt1b-0j_kdzgg1vtASvfWrHTvI=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.540872+00 2025-12-09 10:15:19.540877+00 13133 HT3335#兰色 SPMX-20240815308325 \N \N \N 1 \N [{"file_id": "944d6843-0c8c-4653-ab48-2fef1763c88a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5a10deaf9634bedaa219b883ddf6a96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5a10deaf9634bedaa219b883ddf6a96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5a10deaf9634bedaa219b883ddf6a96.jpg", "file_size": 45713, "is_delete": false, "file_type": 1, "original_file_name": "HT3335#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a10deaf9634bedaa219b883ddf6a96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a10deaf9634bedaa219b883ddf6a96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a10deaf9634bedaa219b883ddf6a96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5a10deaf9634bedaa219b883ddf6a96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5a10deaf9634bedaa219b883ddf6a96.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bsA1V-L0Mplk-SEhPNrQrHUH4Qs=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.543267+00 2025-12-09 10:15:19.543273+00 13134 FM007#粉色 SPMX-20240815308327 \N \N \N 1 \N [{"file_id": "d351c333-7673-423a-b3fa-596b128f8755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f83c8eec4e9d46919fea1b33bbf197b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f83c8eec4e9d46919fea1b33bbf197b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f83c8eec4e9d46919fea1b33bbf197b0.jpg", "file_size": 14797, "is_delete": false, "file_type": 1, "original_file_name": "FM007#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83c8eec4e9d46919fea1b33bbf197b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83c8eec4e9d46919fea1b33bbf197b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83c8eec4e9d46919fea1b33bbf197b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f83c8eec4e9d46919fea1b33bbf197b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f83c8eec4e9d46919fea1b33bbf197b0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLB0Yapegeco7s7AmKPb-rZe_Vo=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.545434+00 2025-12-09 10:15:19.54544+00 13135 115#-深杏 SPMX-20240815308333 \N \N \N 1 \N [{"file_id": "c9b7c51c-a724-40c9-ad0b-3cb5cdc3cb24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dc131850acb48e39106bf7e7cb8f5fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dc131850acb48e39106bf7e7cb8f5fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dc131850acb48e39106bf7e7cb8f5fa.jpg", "file_size": 41091, "is_delete": false, "file_type": 1, "original_file_name": "115#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc131850acb48e39106bf7e7cb8f5fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc131850acb48e39106bf7e7cb8f5fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dc131850acb48e39106bf7e7cb8f5fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dc131850acb48e39106bf7e7cb8f5fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dc131850acb48e39106bf7e7cb8f5fa.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5nhzTt2E4w36Q3CN7ynP4uW938=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.54788+00 2025-12-09 10:15:19.547886+00 13136 DL31081#批布大红 SPMX-20240815308320 \N \N \N 1 \N [{"file_id": "ad47e4d1-bdf5-4e69-b6f4-8144f3863110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5e71f151ad3438c83857fe72f4b1ef5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5e71f151ad3438c83857fe72f4b1ef5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5e71f151ad3438c83857fe72f4b1ef5.jpg", "file_size": 15579, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e71f151ad3438c83857fe72f4b1ef5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e71f151ad3438c83857fe72f4b1ef5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5e71f151ad3438c83857fe72f4b1ef5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5e71f151ad3438c83857fe72f4b1ef5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5e71f151ad3438c83857fe72f4b1ef5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KReI2P7UN8lhXPLdPNWNlVcMGM=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.550278+00 2025-12-09 10:15:19.550283+00 13137 0005-19#蓝色番禺调色 SPMX-20240815308321 \N \N \N 1 \N [{"file_id": "40c0e401-4b30-40ad-84b1-650ce945d668", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bb7366150ec40348dda6fd80650a550.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bb7366150ec40348dda6fd80650a550.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bb7366150ec40348dda6fd80650a550.jpg", "file_size": 12404, "is_delete": false, "file_type": 1, "original_file_name": "0005-19#蓝色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bb7366150ec40348dda6fd80650a550.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bb7366150ec40348dda6fd80650a550.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bb7366150ec40348dda6fd80650a550.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bb7366150ec40348dda6fd80650a550.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bb7366150ec40348dda6fd80650a550.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-VP82gmOuxPcNEQ2zpeC6xOH_7w=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.552458+00 2025-12-09 10:15:19.552463+00 13138 C767FWF#正身M SPMX-20240815308318 \N \N \N 1 \N [{"file_id": "5270b150-a164-4a5b-95cf-1a9635127160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08ab60e1d92a47adbbc50bee1e132016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08ab60e1d92a47adbbc50bee1e132016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08ab60e1d92a47adbbc50bee1e132016.jpg", "file_size": 18420, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ab60e1d92a47adbbc50bee1e132016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ab60e1d92a47adbbc50bee1e132016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ab60e1d92a47adbbc50bee1e132016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08ab60e1d92a47adbbc50bee1e132016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08ab60e1d92a47adbbc50bee1e132016.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcILsOIqfKidfLu0qarEYnses98=", "createTime": "2024-08-15 14:55:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.554919+00 2025-12-09 10:15:19.554925+00 13139 23-2120#A5-领子4XL SPMX-20240815308326 \N \N \N 1 \N [{"file_id": "e0e99bb6-d4c0-4c0a-ab74-4113d08213aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbea5b8b7e4340b6a36bcc2b3547e48c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbea5b8b7e4340b6a36bcc2b3547e48c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbea5b8b7e4340b6a36bcc2b3547e48c.jpg", "file_size": 11561, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbea5b8b7e4340b6a36bcc2b3547e48c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbea5b8b7e4340b6a36bcc2b3547e48c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbea5b8b7e4340b6a36bcc2b3547e48c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbea5b8b7e4340b6a36bcc2b3547e48c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbea5b8b7e4340b6a36bcc2b3547e48c.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LHsbTvT0uHHOh9-qVM_ouBHC-Y=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.557324+00 2025-12-09 10:15:19.557329+00 13140 LZ1313#背心款5号色 SPMX-20240815308328 \N \N \N 1 \N [{"file_id": "3c4ff27d-b476-4ddc-b8e0-904ba6560610", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e53c39078a154f47a5356069df4faeed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e53c39078a154f47a5356069df4faeed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e53c39078a154f47a5356069df4faeed.jpg", "file_size": 18403, "is_delete": false, "file_type": 1, "original_file_name": "LZ1313#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53c39078a154f47a5356069df4faeed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53c39078a154f47a5356069df4faeed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53c39078a154f47a5356069df4faeed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e53c39078a154f47a5356069df4faeed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e53c39078a154f47a5356069df4faeed.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tf5-0uET-B-EmG8KqTgNjFfZ20=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.559505+00 2025-12-09 10:15:19.55951+00 13141 115#-杏色 SPMX-20240815308322 \N \N \N 1 \N [{"file_id": "093e7660-a9d3-4d78-a8c2-f747fa874800", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3ee315feb2042458f6e12e7c7bcc5d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3ee315feb2042458f6e12e7c7bcc5d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3ee315feb2042458f6e12e7c7bcc5d7.jpg", "file_size": 44696, "is_delete": false, "file_type": 1, "original_file_name": "115#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ee315feb2042458f6e12e7c7bcc5d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ee315feb2042458f6e12e7c7bcc5d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ee315feb2042458f6e12e7c7bcc5d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3ee315feb2042458f6e12e7c7bcc5d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3ee315feb2042458f6e12e7c7bcc5d7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRTxf_UxlwawWDBUmR5DwKY2FRw=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.561675+00 2025-12-09 10:15:19.561681+00 13142 LJH1528#玫红 SPMX-20240815308332 \N \N \N 1 \N [{"file_id": "9f87ff0f-f0a3-4076-b475-c21729ea845b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aed495562fd24f639c37b6efaaed86e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aed495562fd24f639c37b6efaaed86e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aed495562fd24f639c37b6efaaed86e6.jpg", "file_size": 48565, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed495562fd24f639c37b6efaaed86e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed495562fd24f639c37b6efaaed86e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed495562fd24f639c37b6efaaed86e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aed495562fd24f639c37b6efaaed86e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aed495562fd24f639c37b6efaaed86e6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYxChpYjjQw1YccqL1lJ3dPr_Hw=", "createTime": "2024-08-15 14:55:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.564107+00 2025-12-09 10:15:19.564112+00 13143 HT3335#原版色 SPMX-20240815308334 \N \N \N 1 \N [{"file_id": "4a71aa0e-5b65-4631-b02d-be0dd08b966e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca19fb481178461cb63568d1b9859c79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca19fb481178461cb63568d1b9859c79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca19fb481178461cb63568d1b9859c79.jpg", "file_size": 39722, "is_delete": false, "file_type": 1, "original_file_name": "HT3335#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca19fb481178461cb63568d1b9859c79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca19fb481178461cb63568d1b9859c79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca19fb481178461cb63568d1b9859c79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca19fb481178461cb63568d1b9859c79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca19fb481178461cb63568d1b9859c79.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b-Bw2cltvs6SrapfP1xjCxU0fYo=", "createTime": "2024-08-15 14:55:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.566584+00 2025-12-09 10:15:19.566589+00 13144 JTSS425FW#VS-D3 SPMX-20240815308335 \N \N \N 1 \N [{"file_id": "e86e6ec1-34a0-4915-80e4-5d9c11ccd987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e6ec6ce771e4616afc414650bf894a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e6ec6ce771e4616afc414650bf894a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e6ec6ce771e4616afc414650bf894a7.jpg", "file_size": 19949, "is_delete": false, "file_type": 1, "original_file_name": "JTSS425FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec6ce771e4616afc414650bf894a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec6ce771e4616afc414650bf894a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec6ce771e4616afc414650bf894a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec6ce771e4616afc414650bf894a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e6ec6ce771e4616afc414650bf894a7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_kkfRwnlaistyv6jLwXSA34gL9Y=", "createTime": "2024-08-15 14:55:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.569059+00 2025-12-09 10:15:19.569064+00 13145 8297#60号 SPMX-20240815308336 \N \N \N 1 \N [{"file_id": "a03f84de-74eb-453f-80bf-a149e4b009d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0caaf35d9b684b87a10c291dea8f4463.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0caaf35d9b684b87a10c291dea8f4463.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0caaf35d9b684b87a10c291dea8f4463.jpg", "file_size": 7260, "is_delete": false, "file_type": 1, "original_file_name": "8297#60号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caaf35d9b684b87a10c291dea8f4463.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caaf35d9b684b87a10c291dea8f4463.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caaf35d9b684b87a10c291dea8f4463.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0caaf35d9b684b87a10c291dea8f4463.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0caaf35d9b684b87a10c291dea8f4463.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evRtIhwKtn39CXnpsx4k97m6ano=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.571482+00 2025-12-09 10:15:19.571487+00 13146 FM007#黄色 SPMX-20240815308337 \N \N \N 1 \N [{"file_id": "39bd1860-af52-4a46-866e-5daa7c446c1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52201662a2754381ac4fbfd5ed995bce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52201662a2754381ac4fbfd5ed995bce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52201662a2754381ac4fbfd5ed995bce.jpg", "file_size": 15553, "is_delete": false, "file_type": 1, "original_file_name": "FM007#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52201662a2754381ac4fbfd5ed995bce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52201662a2754381ac4fbfd5ed995bce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52201662a2754381ac4fbfd5ed995bce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52201662a2754381ac4fbfd5ed995bce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52201662a2754381ac4fbfd5ed995bce.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHsti4-HBuHu3WFsYO1d12mMbPA=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.57367+00 2025-12-09 10:15:19.573675+00 13147 LZ1314#上身3号色 SPMX-20240815308339 \N \N \N 1 \N [{"file_id": "2bb5a4e5-2c45-4d6d-b01d-6cea1b769bf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb17fe8306f4789a888d1f1c8c96b26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb17fe8306f4789a888d1f1c8c96b26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb17fe8306f4789a888d1f1c8c96b26.jpg", "file_size": 18210, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb17fe8306f4789a888d1f1c8c96b26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb17fe8306f4789a888d1f1c8c96b26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb17fe8306f4789a888d1f1c8c96b26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb17fe8306f4789a888d1f1c8c96b26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb17fe8306f4789a888d1f1c8c96b26.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P01VOkTB46EQeITMfr4c0KpYVrw=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.576088+00 2025-12-09 10:15:19.576093+00 13148 23-2120#A6-3XL SPMX-20240815308338 \N \N \N 1 \N [{"file_id": "f0098ef6-f10a-4924-acc0-d97ed0d2cfea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372416d13a79426ca3ac875d3337e550.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372416d13a79426ca3ac875d3337e550.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372416d13a79426ca3ac875d3337e550.jpg", "file_size": 15810, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372416d13a79426ca3ac875d3337e550.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372416d13a79426ca3ac875d3337e550.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372416d13a79426ca3ac875d3337e550.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372416d13a79426ca3ac875d3337e550.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372416d13a79426ca3ac875d3337e550.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBdYzbNSASundZcnwKmTGh7HefU=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.578526+00 2025-12-09 10:15:19.578531+00 13149 8297#66号 SPMX-20240815308347 \N \N \N 1 \N [{"file_id": "a9121cad-8944-4113-ba62-b8768d345aef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfa27b91a9e8408e8e4667290ac40500.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfa27b91a9e8408e8e4667290ac40500.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfa27b91a9e8408e8e4667290ac40500.jpg", "file_size": 7649, "is_delete": false, "file_type": 1, "original_file_name": "8297#66号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa27b91a9e8408e8e4667290ac40500.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa27b91a9e8408e8e4667290ac40500.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa27b91a9e8408e8e4667290ac40500.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfa27b91a9e8408e8e4667290ac40500.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfa27b91a9e8408e8e4667290ac40500.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAAmkn8ZshKeru-6x08WSNCwoLc=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.580778+00 2025-12-09 10:15:19.580787+00 13150 DL31081#批布枣红色 SPMX-20240815308341 \N \N \N 1 \N [{"file_id": "b2877424-b17e-4e00-a461-53abedfae8b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a81127d6aa439c8d5e210e437d2d76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a81127d6aa439c8d5e210e437d2d76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a81127d6aa439c8d5e210e437d2d76.jpg", "file_size": 16233, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a81127d6aa439c8d5e210e437d2d76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a81127d6aa439c8d5e210e437d2d76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a81127d6aa439c8d5e210e437d2d76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a81127d6aa439c8d5e210e437d2d76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a81127d6aa439c8d5e210e437d2d76.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wack8a0BgdT8JOAeUoLGKmHzEOM=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.583255+00 2025-12-09 10:15:19.583261+00 13151 C767FWF#正身XL SPMX-20240815308344 \N \N \N 1 \N [{"file_id": "dfe78a5a-b77e-45d4-83e2-1b3d93b467dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae360ed269634da4b5ccd4c7ea6ef471.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae360ed269634da4b5ccd4c7ea6ef471.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae360ed269634da4b5ccd4c7ea6ef471.jpg", "file_size": 12582, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae360ed269634da4b5ccd4c7ea6ef471.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae360ed269634da4b5ccd4c7ea6ef471.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae360ed269634da4b5ccd4c7ea6ef471.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae360ed269634da4b5ccd4c7ea6ef471.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae360ed269634da4b5ccd4c7ea6ef471.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2owoKpn9LcBqp5tT5R-nWUTgNzA=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.585711+00 2025-12-09 10:15:19.585717+00 13152 LJH1528#红色 SPMX-20240815308340 \N \N \N 1 \N [{"file_id": "39a38cac-9602-41fe-a64f-807c178c8b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "058a34821d424a4c83f47a7190eecc30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "058a34821d424a4c83f47a7190eecc30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "058a34821d424a4c83f47a7190eecc30.jpg", "file_size": 48850, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058a34821d424a4c83f47a7190eecc30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058a34821d424a4c83f47a7190eecc30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058a34821d424a4c83f47a7190eecc30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/058a34821d424a4c83f47a7190eecc30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/058a34821d424a4c83f47a7190eecc30.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qo5wDMhcrSSKg49Hba8jk3TykIg=", "createTime": "2024-08-15 14:55:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.587916+00 2025-12-09 10:15:19.587922+00 13153 JTSS426FW#VS-D SPMX-20240815308345 \N \N \N 1 \N [{"file_id": "38fefc71-6c53-4bd3-bf75-9cd90fd97cb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "313c8f3b322d46528764bcb20884aa9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "313c8f3b322d46528764bcb20884aa9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "313c8f3b322d46528764bcb20884aa9b.jpg", "file_size": 13386, "is_delete": false, "file_type": 1, "original_file_name": "JTSS426FW#VS-D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313c8f3b322d46528764bcb20884aa9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313c8f3b322d46528764bcb20884aa9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313c8f3b322d46528764bcb20884aa9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/313c8f3b322d46528764bcb20884aa9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/313c8f3b322d46528764bcb20884aa9b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUxUDnyNK2MZ79GbwZCRCRJxNQ8=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.590331+00 2025-12-09 10:15:19.590337+00 13154 115#-灰色 SPMX-20240815308346 \N \N \N 1 \N [{"file_id": "4de379c0-9e80-4846-afde-ffea8d4a85d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef4a84c2fee54599b4857d0e44926508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef4a84c2fee54599b4857d0e44926508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef4a84c2fee54599b4857d0e44926508.jpg", "file_size": 57546, "is_delete": false, "file_type": 1, "original_file_name": "115#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4a84c2fee54599b4857d0e44926508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4a84c2fee54599b4857d0e44926508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4a84c2fee54599b4857d0e44926508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef4a84c2fee54599b4857d0e44926508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef4a84c2fee54599b4857d0e44926508.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4E19tdL7fIojCwUawIVB-lDaJg=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.592715+00 2025-12-09 10:15:19.59272+00 13155 0005-1FWE#VS-D3 SPMX-20240815308343 \N \N \N 1 \N [{"file_id": "9d4b78b4-d153-42da-ba67-7c8404e62163", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e716d6befed4843aebf4f440dbd141a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e716d6befed4843aebf4f440dbd141a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e716d6befed4843aebf4f440dbd141a.jpg", "file_size": 19193, "is_delete": false, "file_type": 1, "original_file_name": "0005-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e716d6befed4843aebf4f440dbd141a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e716d6befed4843aebf4f440dbd141a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e716d6befed4843aebf4f440dbd141a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e716d6befed4843aebf4f440dbd141a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e716d6befed4843aebf4f440dbd141a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQuuYgoBbiVWH4NDUAK9KzlEQXk=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.594912+00 2025-12-09 10:15:19.594918+00 13156 HT3335#红色 SPMX-20240815308342 \N \N \N 1 \N [{"file_id": "97527fe4-53d7-4f8c-ad88-cffbde7c99fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "490287f1e99b4d31961fa3d8e7d82bd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "490287f1e99b4d31961fa3d8e7d82bd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "490287f1e99b4d31961fa3d8e7d82bd0.jpg", "file_size": 42295, "is_delete": false, "file_type": 1, "original_file_name": "HT3335#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490287f1e99b4d31961fa3d8e7d82bd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490287f1e99b4d31961fa3d8e7d82bd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490287f1e99b4d31961fa3d8e7d82bd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/490287f1e99b4d31961fa3d8e7d82bd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/490287f1e99b4d31961fa3d8e7d82bd0.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0rq6CGA3vvw36fJ9b_u_Q7so350=", "createTime": "2024-08-15 14:55:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.597297+00 2025-12-09 10:15:19.597303+00 13157 HT3335#黄色 SPMX-20240815308352 \N \N \N 1 \N [{"file_id": "d4b96557-b0dd-4a78-bb0d-8e33aeca9c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bf7d7e824644c41bdc9f688961e379a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bf7d7e824644c41bdc9f688961e379a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bf7d7e824644c41bdc9f688961e379a.jpg", "file_size": 41735, "is_delete": false, "file_type": 1, "original_file_name": "HT3335#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf7d7e824644c41bdc9f688961e379a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf7d7e824644c41bdc9f688961e379a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf7d7e824644c41bdc9f688961e379a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bf7d7e824644c41bdc9f688961e379a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bf7d7e824644c41bdc9f688961e379a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpIzgYTxMGOm_w2i9I-58Gm9eB4=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.599696+00 2025-12-09 10:15:19.599702+00 13158 LJH1528#绿色 SPMX-20240815308349 \N \N \N 1 \N [{"file_id": "e501fa3c-b55c-470c-9231-26bb8cf37b6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "321649119d4c4c3c8795794296e4e07d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "321649119d4c4c3c8795794296e4e07d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "321649119d4c4c3c8795794296e4e07d.jpg", "file_size": 49377, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/321649119d4c4c3c8795794296e4e07d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/321649119d4c4c3c8795794296e4e07d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/321649119d4c4c3c8795794296e4e07d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/321649119d4c4c3c8795794296e4e07d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/321649119d4c4c3c8795794296e4e07d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_N9MK88Goz2hdzdrvS6hmEAWtqA=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.601934+00 2025-12-09 10:15:19.601939+00 13159 0005-1FWF#V5曲线 SPMX-20240815308351 \N \N \N 1 \N [{"file_id": "127e20f9-f82c-4590-aca7-0f97c2a78f5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7321115158a84756bba85744c382f7a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7321115158a84756bba85744c382f7a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7321115158a84756bba85744c382f7a6.jpg", "file_size": 14919, "is_delete": false, "file_type": 1, "original_file_name": "0005-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321115158a84756bba85744c382f7a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321115158a84756bba85744c382f7a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7321115158a84756bba85744c382f7a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7321115158a84756bba85744c382f7a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7321115158a84756bba85744c382f7a6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RqMLMy5EXpR8gKThz3yMhOWgvtQ=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.604377+00 2025-12-09 10:15:19.604383+00 13160 DL31081#批布浅粉色 SPMX-20240815308348 \N \N \N 1 \N [{"file_id": "588761b4-be80-40b7-9fa5-d3e9577503d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cae8174853c4e7196f1bc77da1296a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cae8174853c4e7196f1bc77da1296a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cae8174853c4e7196f1bc77da1296a7.jpg", "file_size": 15510, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cae8174853c4e7196f1bc77da1296a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cae8174853c4e7196f1bc77da1296a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cae8174853c4e7196f1bc77da1296a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cae8174853c4e7196f1bc77da1296a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cae8174853c4e7196f1bc77da1296a7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kf5lrtadvOXl9FsRorWNdkADkqo=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.606834+00 2025-12-09 10:15:19.60684+00 13161 FM008#土黄 SPMX-20240815308353 \N \N \N 1 \N [{"file_id": "f7b93032-3625-4f3f-a93c-66d2a156bfd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39db1ec730374725b70259a0c8893315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39db1ec730374725b70259a0c8893315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39db1ec730374725b70259a0c8893315.jpg", "file_size": 17471, "is_delete": false, "file_type": 1, "original_file_name": "FM008#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39db1ec730374725b70259a0c8893315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39db1ec730374725b70259a0c8893315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39db1ec730374725b70259a0c8893315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39db1ec730374725b70259a0c8893315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39db1ec730374725b70259a0c8893315.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Kr9ZfuZKeXFiBulomTnDpyHgy8=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.608992+00 2025-12-09 10:15:19.608997+00 13162 23-2120#A6-4XL SPMX-20240815308355 \N \N \N 1 \N [{"file_id": "943feb06-d4c0-49fc-ae35-ef2797fb2e73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83185270d0da4c599fd6347818a64646.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83185270d0da4c599fd6347818a64646.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83185270d0da4c599fd6347818a64646.jpg", "file_size": 14482, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83185270d0da4c599fd6347818a64646.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83185270d0da4c599fd6347818a64646.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83185270d0da4c599fd6347818a64646.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83185270d0da4c599fd6347818a64646.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83185270d0da4c599fd6347818a64646.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuui88m8R1toWvOVoZgbwNXAxVk=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.611416+00 2025-12-09 10:15:19.611422+00 13163 JTSS426FW#VS-D3 SPMX-20240815308356 \N \N \N 1 \N [{"file_id": "3425dd9e-e0bd-4cf0-a7a3-f5ede0da4fc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4e413f96bc140ad975d92d539644441.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4e413f96bc140ad975d92d539644441.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4e413f96bc140ad975d92d539644441.jpg", "file_size": 13386, "is_delete": false, "file_type": 1, "original_file_name": "JTSS426FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e413f96bc140ad975d92d539644441.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e413f96bc140ad975d92d539644441.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e413f96bc140ad975d92d539644441.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4e413f96bc140ad975d92d539644441.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4e413f96bc140ad975d92d539644441.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjOf2JuWXJNOf7s8D80baUqaLH8=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.613804+00 2025-12-09 10:15:19.61381+00 13164 C767FWF#补数L SPMX-20240815308350 \N \N \N 1 \N [{"file_id": "96fa6b22-4cad-4a83-ac45-0e492edfa51d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "256a87d2f58144b9b8322043e9341c5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "256a87d2f58144b9b8322043e9341c5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "256a87d2f58144b9b8322043e9341c5b.jpg", "file_size": 21690, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#补数L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256a87d2f58144b9b8322043e9341c5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256a87d2f58144b9b8322043e9341c5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256a87d2f58144b9b8322043e9341c5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/256a87d2f58144b9b8322043e9341c5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/256a87d2f58144b9b8322043e9341c5b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rtt3Q_82qlqDcm0DxkFJ4uaPbX0=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.616012+00 2025-12-09 10:15:19.616018+00 13165 LZ1314#上身4号色 SPMX-20240815308354 \N \N \N 1 \N [{"file_id": "38cb9b3d-05c0-47f8-acbf-34a39ad407ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11d0378dd6f34f94813702744b64471b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11d0378dd6f34f94813702744b64471b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11d0378dd6f34f94813702744b64471b.jpg", "file_size": 18900, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d0378dd6f34f94813702744b64471b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d0378dd6f34f94813702744b64471b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d0378dd6f34f94813702744b64471b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11d0378dd6f34f94813702744b64471b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11d0378dd6f34f94813702744b64471b.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ak8Qo_waZqaAWQYUzDGrRMFdKi4=", "createTime": "2024-08-15 14:55:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.618413+00 2025-12-09 10:15:19.618418+00 13166 8297#6号 SPMX-20240815308358 \N \N \N 1 \N [{"file_id": "589ff730-d50b-4625-985a-50057a3af37f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23383a3cc5884a74a00d1f5f79c6157f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23383a3cc5884a74a00d1f5f79c6157f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23383a3cc5884a74a00d1f5f79c6157f.jpg", "file_size": 7384, "is_delete": false, "file_type": 1, "original_file_name": "8297#6号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23383a3cc5884a74a00d1f5f79c6157f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23383a3cc5884a74a00d1f5f79c6157f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23383a3cc5884a74a00d1f5f79c6157f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23383a3cc5884a74a00d1f5f79c6157f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23383a3cc5884a74a00d1f5f79c6157f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r1Wylt8CE8laTVP5wEFabPDfleQ=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.620867+00 2025-12-09 10:15:19.620872+00 13167 115#-白色 SPMX-20240815308359 \N \N \N 1 \N [{"file_id": "64cc754f-752e-46ae-b4c9-996b27416d8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0759dd0fba4045c285aff59ead42473a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0759dd0fba4045c285aff59ead42473a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0759dd0fba4045c285aff59ead42473a.jpg", "file_size": 46964, "is_delete": false, "file_type": 1, "original_file_name": "115#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759dd0fba4045c285aff59ead42473a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759dd0fba4045c285aff59ead42473a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759dd0fba4045c285aff59ead42473a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0759dd0fba4045c285aff59ead42473a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0759dd0fba4045c285aff59ead42473a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRm7ChakxkTeMfMcmlhyqwRG4Vw=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.623128+00 2025-12-09 10:15:19.623134+00 13168 LJH1528#蓝色 SPMX-20240815308357 \N \N \N 1 \N [{"file_id": "f5d38d28-f23a-4746-9271-0c6d1735c12b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2d5e6836de84434889bcc95eeb73fff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2d5e6836de84434889bcc95eeb73fff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2d5e6836de84434889bcc95eeb73fff.jpg", "file_size": 51794, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d5e6836de84434889bcc95eeb73fff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d5e6836de84434889bcc95eeb73fff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d5e6836de84434889bcc95eeb73fff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2d5e6836de84434889bcc95eeb73fff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2d5e6836de84434889bcc95eeb73fff.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4EquUcSneZOyBkN9PyquzNJ1tQ=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.62558+00 2025-12-09 10:15:19.625586+00 13169 DL31081#批布深水红 SPMX-20240815308360 \N \N \N 1 \N [{"file_id": "c5e324ce-7367-4463-a44f-1c109744d9e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d998784fa25d4e19835261d8d7138cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d998784fa25d4e19835261d8d7138cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d998784fa25d4e19835261d8d7138cb6.jpg", "file_size": 16254, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d998784fa25d4e19835261d8d7138cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d998784fa25d4e19835261d8d7138cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d998784fa25d4e19835261d8d7138cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d998784fa25d4e19835261d8d7138cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d998784fa25d4e19835261d8d7138cb6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIolZF8Od3BZnMNa4dOEj29XlXI=", "createTime": "2024-08-15 14:55:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.628002+00 2025-12-09 10:15:19.628007+00 13170 JTSS427FW#VS-D3 SPMX-20240815308367 \N \N \N 1 \N [{"file_id": "ba7e5ac9-8df1-443d-8733-42cfa72b151f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d202e46e6f0b4b58967391c79557b9e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d202e46e6f0b4b58967391c79557b9e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d202e46e6f0b4b58967391c79557b9e7.jpg", "file_size": 13357, "is_delete": false, "file_type": 1, "original_file_name": "JTSS427FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d202e46e6f0b4b58967391c79557b9e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d202e46e6f0b4b58967391c79557b9e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d202e46e6f0b4b58967391c79557b9e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d202e46e6f0b4b58967391c79557b9e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d202e46e6f0b4b58967391c79557b9e7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpSpZxOoy0Rkb6tT-SGoW8Am_d8=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.630172+00 2025-12-09 10:15:19.630178+00 13171 DL31081#批布玫红色 SPMX-20240815308370 \N \N \N 1 \N [{"file_id": "4ad1e6bf-6371-4ba2-a7cd-d3da8e1d35a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a65621fb5de459f9c37952028054282.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a65621fb5de459f9c37952028054282.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a65621fb5de459f9c37952028054282.jpg", "file_size": 15771, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a65621fb5de459f9c37952028054282.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a65621fb5de459f9c37952028054282.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a65621fb5de459f9c37952028054282.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a65621fb5de459f9c37952028054282.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a65621fb5de459f9c37952028054282.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6BlG29TFE9siHHltZOTAS4rGd0=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.632604+00 2025-12-09 10:15:19.63261+00 13172 FM008#彩兰 SPMX-20240815308362 \N \N \N 1 \N [{"file_id": "cd8f846f-401e-41f1-a056-6661ca45cb5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "440859e9d6e64627ad23369eaf7c608d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "440859e9d6e64627ad23369eaf7c608d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "440859e9d6e64627ad23369eaf7c608d.jpg", "file_size": 15657, "is_delete": false, "file_type": 1, "original_file_name": "FM008#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440859e9d6e64627ad23369eaf7c608d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440859e9d6e64627ad23369eaf7c608d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440859e9d6e64627ad23369eaf7c608d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/440859e9d6e64627ad23369eaf7c608d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/440859e9d6e64627ad23369eaf7c608d.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1XFH74xToioS5g6N0QoCADMDCU=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.635061+00 2025-12-09 10:15:19.635067+00 13173 0005-1FWF#白色-V5曲线 SPMX-20240815308371 \N \N \N 1 \N [{"file_id": "1242fe49-9d35-40fb-ac60-849183c9d25b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01117e3fd772438488bf331a4926c250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01117e3fd772438488bf331a4926c250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01117e3fd772438488bf331a4926c250.jpg", "file_size": 15984, "is_delete": false, "file_type": 1, "original_file_name": "0005-1FWF#白色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01117e3fd772438488bf331a4926c250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01117e3fd772438488bf331a4926c250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01117e3fd772438488bf331a4926c250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01117e3fd772438488bf331a4926c250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01117e3fd772438488bf331a4926c250.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihB7wVH7J45nMDcfNdi7UHhL6lY=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.637279+00 2025-12-09 10:15:19.637285+00 13174 LZ1314#上身5号色 SPMX-20240815308365 \N \N \N 1 \N [{"file_id": "1baca9b3-7893-4c0d-bd8f-48d8b5aeabbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "856633918a064b55a45f9e00fbd820ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "856633918a064b55a45f9e00fbd820ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "856633918a064b55a45f9e00fbd820ea.jpg", "file_size": 17229, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856633918a064b55a45f9e00fbd820ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856633918a064b55a45f9e00fbd820ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856633918a064b55a45f9e00fbd820ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/856633918a064b55a45f9e00fbd820ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/856633918a064b55a45f9e00fbd820ea.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y65suLdL2b_3QX_qckIuOwcfXzI=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.639677+00 2025-12-09 10:15:19.639682+00 13175 115#-黑色 SPMX-20240815308369 \N \N \N 1 \N [{"file_id": "9cc77e55-585e-4aec-aa71-dbca153eab60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d13ae04a057437d8287014fff5b8eb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d13ae04a057437d8287014fff5b8eb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d13ae04a057437d8287014fff5b8eb5.jpg", "file_size": 42182, "is_delete": false, "file_type": 1, "original_file_name": "115#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d13ae04a057437d8287014fff5b8eb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d13ae04a057437d8287014fff5b8eb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d13ae04a057437d8287014fff5b8eb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d13ae04a057437d8287014fff5b8eb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d13ae04a057437d8287014fff5b8eb5.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nNwnOyH9RN1yhhkbhpG1wxL4rc=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.642094+00 2025-12-09 10:15:19.642099+00 13176 C767FWF#补数M SPMX-20240815308361 \N \N \N 1 \N [{"file_id": "71f3cbf6-b104-4ea4-9e30-fe0fe7f6c341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b47e107e76a41d4a8e45cec28348c66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b47e107e76a41d4a8e45cec28348c66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b47e107e76a41d4a8e45cec28348c66.jpg", "file_size": 22099, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#补数M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b47e107e76a41d4a8e45cec28348c66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b47e107e76a41d4a8e45cec28348c66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b47e107e76a41d4a8e45cec28348c66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b47e107e76a41d4a8e45cec28348c66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b47e107e76a41d4a8e45cec28348c66.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nJSmqBwdEizMJB1mEJLLDSLrjw=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.644271+00 2025-12-09 10:15:19.644276+00 13177 HT3336#兰色 SPMX-20240815308363 \N \N \N 1 \N [{"file_id": "57b5bc28-194e-4bfb-9d77-cbeb12dc4634", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e33df82044406384a8487d8fbc2dc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e33df82044406384a8487d8fbc2dc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e33df82044406384a8487d8fbc2dc6.jpg", "file_size": 63307, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e33df82044406384a8487d8fbc2dc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e33df82044406384a8487d8fbc2dc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e33df82044406384a8487d8fbc2dc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e33df82044406384a8487d8fbc2dc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e33df82044406384a8487d8fbc2dc6.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UILMSBR7XYceR21bzGamqffgjbg=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.646644+00 2025-12-09 10:15:19.64665+00 13178 8305#橘色花 SPMX-20240815308366 \N \N \N 1 \N [{"file_id": "d25e1bc8-c078-4e16-85b4-16e626dccb28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50343bc0f5174662959eb2271034f728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50343bc0f5174662959eb2271034f728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50343bc0f5174662959eb2271034f728.jpg", "file_size": 19507, "is_delete": false, "file_type": 1, "original_file_name": "8305#橘色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50343bc0f5174662959eb2271034f728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50343bc0f5174662959eb2271034f728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50343bc0f5174662959eb2271034f728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50343bc0f5174662959eb2271034f728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50343bc0f5174662959eb2271034f728.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oz4Zye4raRRSucKDoanK8g8ouks=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.64906+00 2025-12-09 10:15:19.649065+00 13179 23-2120#A6-领子3XL SPMX-20240815308368 \N \N \N 1 \N [{"file_id": "dc59a6d7-81ab-4271-8f38-5fae77e0c6f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3094db9c912f4ac5ad22dce6a981e734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3094db9c912f4ac5ad22dce6a981e734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3094db9c912f4ac5ad22dce6a981e734.jpg", "file_size": 11733, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3094db9c912f4ac5ad22dce6a981e734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3094db9c912f4ac5ad22dce6a981e734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3094db9c912f4ac5ad22dce6a981e734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3094db9c912f4ac5ad22dce6a981e734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3094db9c912f4ac5ad22dce6a981e734.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpJ99_tMAXZcogppPv4YXjn6ARU=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.651244+00 2025-12-09 10:15:19.651249+00 13180 LJH1528#黑色 SPMX-20240815308364 \N \N \N 1 \N [{"file_id": "e445e0ec-4a72-4c70-b70d-73de76a29315", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "695f0d3698354a52b477aec89a703e44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "695f0d3698354a52b477aec89a703e44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "695f0d3698354a52b477aec89a703e44.jpg", "file_size": 43679, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/695f0d3698354a52b477aec89a703e44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/695f0d3698354a52b477aec89a703e44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/695f0d3698354a52b477aec89a703e44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/695f0d3698354a52b477aec89a703e44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/695f0d3698354a52b477aec89a703e44.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEttgAoJCAMXif2_ZJ4YVIJeeo4=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.653679+00 2025-12-09 10:15:19.653684+00 13181 JTSS428FW#VS-D3 SPMX-20240815308377 \N \N \N 1 \N [{"file_id": "9de62889-fbfe-424c-aa66-ce729a7b2fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17b3501048d04754a45f2832cbebb5c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17b3501048d04754a45f2832cbebb5c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17b3501048d04754a45f2832cbebb5c7.jpg", "file_size": 21530, "is_delete": false, "file_type": 1, "original_file_name": "JTSS428FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3501048d04754a45f2832cbebb5c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3501048d04754a45f2832cbebb5c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17b3501048d04754a45f2832cbebb5c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17b3501048d04754a45f2832cbebb5c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17b3501048d04754a45f2832cbebb5c7.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMpCgH46qBKbstfTR1QxB5jsjA4=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.656099+00 2025-12-09 10:15:19.656104+00 13182 DL31081#批布蓝绿色 SPMX-20240815308375 \N \N \N 1 \N [{"file_id": "fad42a4e-ab07-4a74-a810-f494a8b6bb75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "566b29aafd1340ccb88f01921c19d99f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "566b29aafd1340ccb88f01921c19d99f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "566b29aafd1340ccb88f01921c19d99f.jpg", "file_size": 16390, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566b29aafd1340ccb88f01921c19d99f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566b29aafd1340ccb88f01921c19d99f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566b29aafd1340ccb88f01921c19d99f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/566b29aafd1340ccb88f01921c19d99f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/566b29aafd1340ccb88f01921c19d99f.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPvOT-7XPV1ni_2UMtH3qOAJVUE=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.658261+00 2025-12-09 10:15:19.658266+00 13183 HT3336#原版色 SPMX-20240815308374 \N \N \N 1 \N [{"file_id": "b428d665-14a2-4442-9ace-90c18f030e82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "056857549de9407ca287d31d05170160.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "056857549de9407ca287d31d05170160.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "056857549de9407ca287d31d05170160.jpg", "file_size": 59550, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056857549de9407ca287d31d05170160.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056857549de9407ca287d31d05170160.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056857549de9407ca287d31d05170160.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/056857549de9407ca287d31d05170160.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/056857549de9407ca287d31d05170160.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Nif1pnU_rT3OmREYItvZuO9t7w=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.660424+00 2025-12-09 10:15:19.660429+00 13184 C767FWF#补数S SPMX-20240815308372 \N \N \N 1 \N [{"file_id": "2aca1394-de34-4816-a48c-9c8fcc9e4586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9677cf25f7a141b08eed5ab772954780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9677cf25f7a141b08eed5ab772954780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9677cf25f7a141b08eed5ab772954780.jpg", "file_size": 21541, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#补数S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677cf25f7a141b08eed5ab772954780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677cf25f7a141b08eed5ab772954780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9677cf25f7a141b08eed5ab772954780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9677cf25f7a141b08eed5ab772954780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9677cf25f7a141b08eed5ab772954780.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oiMqUlBWrKgQ3jk6ScCJ9v8smaA=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.662873+00 2025-12-09 10:15:19.662879+00 13185 LZ1314#捆条布 SPMX-20240815308376 \N \N \N 1 \N [{"file_id": "4aabd110-4589-4e56-a912-db1e1c34f1b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1416392c01e44029aea03407b8ae369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1416392c01e44029aea03407b8ae369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1416392c01e44029aea03407b8ae369.jpg", "file_size": 10824, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1416392c01e44029aea03407b8ae369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1416392c01e44029aea03407b8ae369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1416392c01e44029aea03407b8ae369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1416392c01e44029aea03407b8ae369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1416392c01e44029aea03407b8ae369.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EfMqVCi_pC9LntZ86jUffrw9Z_g=", "createTime": "2024-08-15 14:55:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.665314+00 2025-12-09 10:15:19.665319+00 13186 FM008#枣红 SPMX-20240815308373 \N \N \N 1 \N [{"file_id": "80855e03-11e5-43ab-935d-3c09f81bf2ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "962d394acd5f43bf94f80126d0c00126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "962d394acd5f43bf94f80126d0c00126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "962d394acd5f43bf94f80126d0c00126.jpg", "file_size": 15475, "is_delete": false, "file_type": 1, "original_file_name": "FM008#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962d394acd5f43bf94f80126d0c00126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962d394acd5f43bf94f80126d0c00126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962d394acd5f43bf94f80126d0c00126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/962d394acd5f43bf94f80126d0c00126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/962d394acd5f43bf94f80126d0c00126.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rilcFCc2ULKHz_-SIx01ezPg0Gg=", "createTime": "2024-08-15 14:55:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.667998+00 2025-12-09 10:15:19.668005+00 13187 FM008#玫红 SPMX-20240815308384 \N \N \N 1 \N [{"file_id": "0a857873-0242-4d7a-8b61-fa02f832215d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7009ad5c30884e43b64bebee53514894.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7009ad5c30884e43b64bebee53514894.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7009ad5c30884e43b64bebee53514894.jpg", "file_size": 14365, "is_delete": false, "file_type": 1, "original_file_name": "FM008#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009ad5c30884e43b64bebee53514894.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009ad5c30884e43b64bebee53514894.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009ad5c30884e43b64bebee53514894.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7009ad5c30884e43b64bebee53514894.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7009ad5c30884e43b64bebee53514894.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CG2K0maoldpGXwF8ydfYx9ZU68k=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.670658+00 2025-12-09 10:15:19.670665+00 13188 LJH1528-3#红色 SPMX-20240815308381 \N \N \N 1 \N [{"file_id": "a7abc634-2ef7-4260-8757-4056ed813448", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dfa656d496446bba0991529059ea873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dfa656d496446bba0991529059ea873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dfa656d496446bba0991529059ea873.jpg", "file_size": 16324, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528-3#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa656d496446bba0991529059ea873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa656d496446bba0991529059ea873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfa656d496446bba0991529059ea873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dfa656d496446bba0991529059ea873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dfa656d496446bba0991529059ea873.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qD9mbS6TO5YDsW5hou4pG1hpFdc=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:19.673422+00 2025-12-09 10:15:19.673428+00 13189 1156-1FWE#宝蓝 SPMX-20240815308378 \N \N \N 1 \N [{"file_id": "c61e6c91-cc8b-4fdd-b814-37825f6bce2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd819f7688ea48419da0d7b2a2b2578a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd819f7688ea48419da0d7b2a2b2578a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd819f7688ea48419da0d7b2a2b2578a.jpg", "file_size": 18453, "is_delete": false, "file_type": 1, "original_file_name": "1156-1FWE#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd819f7688ea48419da0d7b2a2b2578a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd819f7688ea48419da0d7b2a2b2578a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd819f7688ea48419da0d7b2a2b2578a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd819f7688ea48419da0d7b2a2b2578a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd819f7688ea48419da0d7b2a2b2578a.jpg?e=1765361718&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DZv7yCMuplrm5lEmXrJyyZXn-s=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.338436+00 2025-12-09 10:15:20.338449+00 13190 8305#红色花 SPMX-20240815308380 \N \N \N 1 \N [{"file_id": "2fbc7929-ef69-42bb-99df-41cf92e2fa20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82e0fa28fd8742898b84c1650a652cf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82e0fa28fd8742898b84c1650a652cf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82e0fa28fd8742898b84c1650a652cf6.jpg", "file_size": 19848, "is_delete": false, "file_type": 1, "original_file_name": "8305#红色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e0fa28fd8742898b84c1650a652cf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e0fa28fd8742898b84c1650a652cf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82e0fa28fd8742898b84c1650a652cf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82e0fa28fd8742898b84c1650a652cf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82e0fa28fd8742898b84c1650a652cf6.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rv_vNtZO-KyQ5jX8JgkvhQ9BDfo=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.342427+00 2025-12-09 10:15:20.342437+00 13191 JTSS429FW#VS-D3 SPMX-20240815308383 \N \N \N 1 \N [{"file_id": "2f0f8a1c-fa0d-43f1-a843-e36078ba6352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daf2cf9c2d174b4fab69b67141dfe7dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daf2cf9c2d174b4fab69b67141dfe7dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daf2cf9c2d174b4fab69b67141dfe7dd.jpg", "file_size": 12473, "is_delete": false, "file_type": 1, "original_file_name": "JTSS429FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf2cf9c2d174b4fab69b67141dfe7dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf2cf9c2d174b4fab69b67141dfe7dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf2cf9c2d174b4fab69b67141dfe7dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daf2cf9c2d174b4fab69b67141dfe7dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daf2cf9c2d174b4fab69b67141dfe7dd.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:da058bGaenN8dhMEHZl5dkJUTXA=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.345036+00 2025-12-09 10:15:20.345042+00 13192 C767FWF#补数XL SPMX-20240815308385 \N \N \N 1 \N [{"file_id": "959b554b-91d8-4331-bba1-60c7250215d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77aa50b1895749f69a840373544d5190.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77aa50b1895749f69a840373544d5190.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77aa50b1895749f69a840373544d5190.jpg", "file_size": 23358, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa50b1895749f69a840373544d5190.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa50b1895749f69a840373544d5190.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa50b1895749f69a840373544d5190.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77aa50b1895749f69a840373544d5190.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77aa50b1895749f69a840373544d5190.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8R4zU1fD1nlNerG-Hvx4mL8iMmQ=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.347436+00 2025-12-09 10:15:20.347442+00 13193 23-2120#A6-领子4XL SPMX-20240815308379 \N \N \N 1 \N [{"file_id": "4c845161-910e-4c4c-aad5-50e4c9e82c52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5998f47f73c4ef6bb6b3d99faad448e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5998f47f73c4ef6bb6b3d99faad448e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5998f47f73c4ef6bb6b3d99faad448e.jpg", "file_size": 11869, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5998f47f73c4ef6bb6b3d99faad448e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5998f47f73c4ef6bb6b3d99faad448e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5998f47f73c4ef6bb6b3d99faad448e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5998f47f73c4ef6bb6b3d99faad448e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5998f47f73c4ef6bb6b3d99faad448e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avdoh7xDUbQjBoPlQhffMyap-lo=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.349876+00 2025-12-09 10:15:20.349882+00 13194 LZ1314#背心款1号色 SPMX-20240815308386 \N \N \N 1 \N [{"file_id": "2215e6d9-805e-422c-8d36-bdab3a54a688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31a7b82a212744468db5c972f3ce23e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31a7b82a212744468db5c972f3ce23e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31a7b82a212744468db5c972f3ce23e9.jpg", "file_size": 17897, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a7b82a212744468db5c972f3ce23e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a7b82a212744468db5c972f3ce23e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31a7b82a212744468db5c972f3ce23e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31a7b82a212744468db5c972f3ce23e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31a7b82a212744468db5c972f3ce23e9.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_5XVTHdDfPQthJemaLXzNkaQ7w=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.352226+00 2025-12-09 10:15:20.352232+00 13195 DL31081#批布黄色 SPMX-20240815308387 \N \N \N 1 \N [{"file_id": "9a481b1d-81b6-4478-b8e1-175602195723", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e47ce6bfec42738f8393ac70b30378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e47ce6bfec42738f8393ac70b30378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e47ce6bfec42738f8393ac70b30378.jpg", "file_size": 15542, "is_delete": false, "file_type": 1, "original_file_name": "DL31081#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47ce6bfec42738f8393ac70b30378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47ce6bfec42738f8393ac70b30378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e47ce6bfec42738f8393ac70b30378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e47ce6bfec42738f8393ac70b30378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e47ce6bfec42738f8393ac70b30378.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52IV7FMSClV_KFfHui28cN6uYNM=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.354547+00 2025-12-09 10:15:20.354552+00 13196 0005-2#WJC22 SPMX-20240815308382 \N \N \N 1 \N [{"file_id": "dd482481-efbe-45cf-96ce-2c84b27bed8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f12944d3e4314d71bb0cdee6d1a400db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f12944d3e4314d71bb0cdee6d1a400db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f12944d3e4314d71bb0cdee6d1a400db.jpg", "file_size": 17700, "is_delete": false, "file_type": 1, "original_file_name": "0005-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12944d3e4314d71bb0cdee6d1a400db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12944d3e4314d71bb0cdee6d1a400db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12944d3e4314d71bb0cdee6d1a400db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f12944d3e4314d71bb0cdee6d1a400db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f12944d3e4314d71bb0cdee6d1a400db.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sAlQ2-uTM1LVf67lhHbySXn-CxY=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.356958+00 2025-12-09 10:15:20.356963+00 13197 C767FWF#领袖门筒L SPMX-20240815308396 \N \N \N 1 \N [{"file_id": "1a2eff71-0f6e-44ae-bae6-a709f35a0a7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "579bb5edc62344d2943223e84b534383.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "579bb5edc62344d2943223e84b534383.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "579bb5edc62344d2943223e84b534383.jpg", "file_size": 17907, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#领袖门筒L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579bb5edc62344d2943223e84b534383.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579bb5edc62344d2943223e84b534383.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579bb5edc62344d2943223e84b534383.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/579bb5edc62344d2943223e84b534383.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/579bb5edc62344d2943223e84b534383.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0aqFzL40sjF5M6PpxeGY0xZZ5_I=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.359312+00 2025-12-09 10:15:20.359317+00 13198 1156-1FWE#黑色 SPMX-20240815308401 \N \N \N 1 \N [{"file_id": "9a5b0198-a525-4a47-a9f2-bc18867d8dfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffed57f4302d4e6da1b659492ebcb38f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffed57f4302d4e6da1b659492ebcb38f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffed57f4302d4e6da1b659492ebcb38f.jpg", "file_size": 17316, "is_delete": false, "file_type": 1, "original_file_name": "1156-1FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed57f4302d4e6da1b659492ebcb38f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed57f4302d4e6da1b659492ebcb38f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed57f4302d4e6da1b659492ebcb38f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffed57f4302d4e6da1b659492ebcb38f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffed57f4302d4e6da1b659492ebcb38f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2JoNQ1dM0kHChkXVA4r-PNusvA=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.361417+00 2025-12-09 10:15:20.361422+00 13199 JTSS430FW#VS-D3 SPMX-20240815308392 \N \N \N 1 \N [{"file_id": "51df60e7-c245-4eb8-9f7f-1b44afa8f61a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd5528864e1844ca9c5d2ef348eac279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd5528864e1844ca9c5d2ef348eac279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd5528864e1844ca9c5d2ef348eac279.jpg", "file_size": 8971, "is_delete": false, "file_type": 1, "original_file_name": "JTSS430FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5528864e1844ca9c5d2ef348eac279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5528864e1844ca9c5d2ef348eac279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5528864e1844ca9c5d2ef348eac279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd5528864e1844ca9c5d2ef348eac279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd5528864e1844ca9c5d2ef348eac279.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_jfOhqYA6_eojmF5PriRmpq2f4=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.36353+00 2025-12-09 10:15:20.363535+00 13200 HT3336#橘色 SPMX-20240815308388 \N \N \N 1 \N [{"file_id": "a15f747f-97b7-4496-9e30-d7952823fcd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c493450a104e2fb3d1312f4540374a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c493450a104e2fb3d1312f4540374a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c493450a104e2fb3d1312f4540374a.jpg", "file_size": 60932, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c493450a104e2fb3d1312f4540374a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c493450a104e2fb3d1312f4540374a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c493450a104e2fb3d1312f4540374a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c493450a104e2fb3d1312f4540374a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c493450a104e2fb3d1312f4540374a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FiWZJhPIQFdhxwxuFt4nsTipVE4=", "createTime": "2024-08-15 14:55:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.365643+00 2025-12-09 10:15:20.365648+00 13201 LJH1528-3#绿色 SPMX-20240815308393 \N \N \N 1 \N [{"file_id": "080447c5-0f39-4803-877f-32c0578255ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg", "file_size": 15128, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528-3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b870c6fa0e74b669a2bbb4cfeda0b0c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1CX3rahK9VIPD953HkVf-5r2c4=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.368046+00 2025-12-09 10:15:20.368051+00 13202 HT3336#绿色 SPMX-20240815308399 \N \N \N 1 \N [{"file_id": "e6f99e4d-cedc-4abe-a7e4-9256fe2c3d16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "740fa8a590fb4040ae9f77e7860f187e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "740fa8a590fb4040ae9f77e7860f187e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "740fa8a590fb4040ae9f77e7860f187e.jpg", "file_size": 55701, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740fa8a590fb4040ae9f77e7860f187e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740fa8a590fb4040ae9f77e7860f187e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740fa8a590fb4040ae9f77e7860f187e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/740fa8a590fb4040ae9f77e7860f187e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/740fa8a590fb4040ae9f77e7860f187e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMiRLbBABW4of8rKwHXMDEEJn-o=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.370397+00 2025-12-09 10:15:20.370402+00 13203 0005-20#WJC22 SPMX-20240815308394 \N \N \N 1 \N [{"file_id": "834c668e-5e0e-4041-acda-12b4ccc1b25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d965f2d800df4645acb72a6ee21eb01a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d965f2d800df4645acb72a6ee21eb01a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d965f2d800df4645acb72a6ee21eb01a.jpg", "file_size": 14870, "is_delete": false, "file_type": 1, "original_file_name": "0005-20#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d965f2d800df4645acb72a6ee21eb01a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d965f2d800df4645acb72a6ee21eb01a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d965f2d800df4645acb72a6ee21eb01a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d965f2d800df4645acb72a6ee21eb01a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d965f2d800df4645acb72a6ee21eb01a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7eBHQSvvkmn2lRlS1UxGNVG46kE=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.372543+00 2025-12-09 10:15:20.372548+00 13204 1156-1FWE#白色 SPMX-20240815308390 \N \N \N 1 \N [{"file_id": "f3275858-4913-4e6a-aaba-ea1de1c54177", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb106d31b7b46888f20f24bbd91a2d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb106d31b7b46888f20f24bbd91a2d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb106d31b7b46888f20f24bbd91a2d3.jpg", "file_size": 14388, "is_delete": false, "file_type": 1, "original_file_name": "1156-1FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb106d31b7b46888f20f24bbd91a2d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb106d31b7b46888f20f24bbd91a2d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb106d31b7b46888f20f24bbd91a2d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb106d31b7b46888f20f24bbd91a2d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb106d31b7b46888f20f24bbd91a2d3.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tcZFIX-KGfnoEO6zlWxhW7mENo8=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.394572+00 2025-12-09 10:15:20.394577+00 13214 8318FWE#红 SPMX-20240815308402 \N \N \N 1 \N [{"file_id": "05769f88-132e-47e0-9428-1fecc9ce6cb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba5ba6e92cf94aad96fde8dbbe939416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba5ba6e92cf94aad96fde8dbbe939416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba5ba6e92cf94aad96fde8dbbe939416.jpg", "file_size": 10649, "is_delete": false, "file_type": 1, "original_file_name": "8318FWE#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba5ba6e92cf94aad96fde8dbbe939416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba5ba6e92cf94aad96fde8dbbe939416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba5ba6e92cf94aad96fde8dbbe939416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba5ba6e92cf94aad96fde8dbbe939416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba5ba6e92cf94aad96fde8dbbe939416.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_BxpzAeZZ2nY690q2HYLK602mY=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.374694+00 2025-12-09 10:15:20.374699+00 13205 LZ1314#背心款2号色 SPMX-20240815308397 \N \N \N 1 \N [{"file_id": "23660129-0ad2-402e-93f3-39cc62177842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7372d0a4f1d745dfa9bbd1c95ff75886.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7372d0a4f1d745dfa9bbd1c95ff75886.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7372d0a4f1d745dfa9bbd1c95ff75886.jpg", "file_size": 17590, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372d0a4f1d745dfa9bbd1c95ff75886.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372d0a4f1d745dfa9bbd1c95ff75886.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7372d0a4f1d745dfa9bbd1c95ff75886.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7372d0a4f1d745dfa9bbd1c95ff75886.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7372d0a4f1d745dfa9bbd1c95ff75886.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKvxA8Wqq7GqdHUKH5rWkyvnUtw=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.377235+00 2025-12-09 10:15:20.377241+00 13206 23-2120#A7-3XL SPMX-20240815308389 \N \N \N 1 \N [{"file_id": "623b2b9e-b249-4f80-a1a1-7a6301c4cb34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84ed4713c4724ed198387c9eb33c7d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84ed4713c4724ed198387c9eb33c7d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84ed4713c4724ed198387c9eb33c7d8f.jpg", "file_size": 18358, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed4713c4724ed198387c9eb33c7d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed4713c4724ed198387c9eb33c7d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed4713c4724ed198387c9eb33c7d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84ed4713c4724ed198387c9eb33c7d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84ed4713c4724ed198387c9eb33c7d8f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVW8GZt1FrRZma-y0nB8cZtwCg0=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.379436+00 2025-12-09 10:15:20.37944+00 13207 8307#WJC22 SPMX-20240815308391 \N \N \N 1 \N [{"file_id": "cf1ab56c-df51-4e08-86b9-008396202951", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1871c6cd25ca4819936ab1570d8ffb12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1871c6cd25ca4819936ab1570d8ffb12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1871c6cd25ca4819936ab1570d8ffb12.jpg", "file_size": 20607, "is_delete": false, "file_type": 1, "original_file_name": "8307#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871c6cd25ca4819936ab1570d8ffb12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871c6cd25ca4819936ab1570d8ffb12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871c6cd25ca4819936ab1570d8ffb12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1871c6cd25ca4819936ab1570d8ffb12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1871c6cd25ca4819936ab1570d8ffb12.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zrVTMzcT78cePgaGcRwBmsPDeXc=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.381478+00 2025-12-09 10:15:20.381484+00 13208 23-2120#A7-4XL SPMX-20240815308400 \N \N \N 1 \N [{"file_id": "d70f5d2b-5cce-4481-8c23-5314c6a87a08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e1e9c3b672d487aaff5ba7df81dd764.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e1e9c3b672d487aaff5ba7df81dd764.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e1e9c3b672d487aaff5ba7df81dd764.jpg", "file_size": 16955, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e9c3b672d487aaff5ba7df81dd764.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e9c3b672d487aaff5ba7df81dd764.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1e9c3b672d487aaff5ba7df81dd764.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e1e9c3b672d487aaff5ba7df81dd764.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e1e9c3b672d487aaff5ba7df81dd764.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ej59blMNojilGMq8mhW4o_WvgYA=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.38353+00 2025-12-09 10:15:20.383536+00 13209 FM008#粉色 SPMX-20240815308395 \N \N \N 1 \N [{"file_id": "a04bef72-13c0-4344-ab77-f4477f57fe8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cf583d23e3b4b9a98e0b342150bec90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cf583d23e3b4b9a98e0b342150bec90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cf583d23e3b4b9a98e0b342150bec90.jpg", "file_size": 17189, "is_delete": false, "file_type": 1, "original_file_name": "FM008#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf583d23e3b4b9a98e0b342150bec90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf583d23e3b4b9a98e0b342150bec90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cf583d23e3b4b9a98e0b342150bec90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cf583d23e3b4b9a98e0b342150bec90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cf583d23e3b4b9a98e0b342150bec90.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2T1pEvbmP3LMlMWde1yL49M_DI=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.385728+00 2025-12-09 10:15:20.385733+00 13210 DL31082#前幅大红 SPMX-20240815308398 \N \N \N 1 \N [{"file_id": "ced406f4-6890-4949-a341-500662e74b91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78033b94fde04ad29e0874d957ba0038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78033b94fde04ad29e0874d957ba0038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78033b94fde04ad29e0874d957ba0038.jpg", "file_size": 14380, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78033b94fde04ad29e0874d957ba0038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78033b94fde04ad29e0874d957ba0038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78033b94fde04ad29e0874d957ba0038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78033b94fde04ad29e0874d957ba0038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78033b94fde04ad29e0874d957ba0038.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xv1wOFqP9O4qYkPceM-tU3VLZ4s=", "createTime": "2024-08-15 14:55:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.387866+00 2025-12-09 10:15:20.387871+00 13211 LZ1314#背心款3号色 SPMX-20240815308408 \N \N \N 1 \N [{"file_id": "9f7a0fbe-02d7-4c07-89a0-f7a6f01683d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "640320cf4cb445769f3e40678c979809.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "640320cf4cb445769f3e40678c979809.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "640320cf4cb445769f3e40678c979809.jpg", "file_size": 17812, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640320cf4cb445769f3e40678c979809.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640320cf4cb445769f3e40678c979809.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640320cf4cb445769f3e40678c979809.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/640320cf4cb445769f3e40678c979809.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/640320cf4cb445769f3e40678c979809.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRagj6_xNd63PnoteWvMa1aCkJ0=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.39017+00 2025-12-09 10:15:20.390176+00 13212 23-2120#A7-领子3XL SPMX-20240815308410 \N \N \N 1 \N [{"file_id": "913e6bb8-3a26-4bbc-8c33-1b64fc87102a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32b5dddefbf64f6f885fa665d5bb8ef5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32b5dddefbf64f6f885fa665d5bb8ef5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32b5dddefbf64f6f885fa665d5bb8ef5.jpg", "file_size": 11426, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b5dddefbf64f6f885fa665d5bb8ef5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b5dddefbf64f6f885fa665d5bb8ef5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b5dddefbf64f6f885fa665d5bb8ef5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32b5dddefbf64f6f885fa665d5bb8ef5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32b5dddefbf64f6f885fa665d5bb8ef5.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OknseQV2ZxGfw_YY5VuYubDpOB8=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.392318+00 2025-12-09 10:15:20.392323+00 13213 DL31082#前幅彩兰 SPMX-20240815308412 \N \N \N 1 \N [{"file_id": "e364121c-a85d-4c44-bccb-5f1c11641bb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcfca7eeab96441f99508566aa49e955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcfca7eeab96441f99508566aa49e955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcfca7eeab96441f99508566aa49e955.jpg", "file_size": 14616, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfca7eeab96441f99508566aa49e955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfca7eeab96441f99508566aa49e955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcfca7eeab96441f99508566aa49e955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcfca7eeab96441f99508566aa49e955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcfca7eeab96441f99508566aa49e955.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86_EsFK04169gEjVhGa-98WHE1o=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.396569+00 2025-12-09 10:15:20.396574+00 13215 0005-21#WJC22 SPMX-20240815308406 \N \N \N 1 \N [{"file_id": "0dcb223a-a659-4c49-b307-8e400a7e929e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93cce0fd685b41a7b069fd3ec54d193f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93cce0fd685b41a7b069fd3ec54d193f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93cce0fd685b41a7b069fd3ec54d193f.jpg", "file_size": 11147, "is_delete": false, "file_type": 1, "original_file_name": "0005-21#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93cce0fd685b41a7b069fd3ec54d193f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93cce0fd685b41a7b069fd3ec54d193f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93cce0fd685b41a7b069fd3ec54d193f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93cce0fd685b41a7b069fd3ec54d193f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93cce0fd685b41a7b069fd3ec54d193f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PDXXSTgygKE85SQEEZ2J-AOM0Q=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.398627+00 2025-12-09 10:15:20.398633+00 13216 FM009#土黄 SPMX-20240815308407 \N \N \N 1 \N [{"file_id": "7f4757b1-5354-4239-b9c1-f88b5127041b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44f06bbdcbaf4697998278022d330249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44f06bbdcbaf4697998278022d330249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44f06bbdcbaf4697998278022d330249.jpg", "file_size": 17839, "is_delete": false, "file_type": 1, "original_file_name": "FM009#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f06bbdcbaf4697998278022d330249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f06bbdcbaf4697998278022d330249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f06bbdcbaf4697998278022d330249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44f06bbdcbaf4697998278022d330249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44f06bbdcbaf4697998278022d330249.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2RAFFhYIrHY-bsSQ_TU5KdYQtx8=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.400848+00 2025-12-09 10:15:20.400853+00 13217 JTSS431FW#VS-D3 SPMX-20240815308403 \N \N \N 1 \N [{"file_id": "80281387-1af7-45c6-905c-6bc2f8f47a3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d6dc3c1c56c48c899598dae1c5fae3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d6dc3c1c56c48c899598dae1c5fae3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d6dc3c1c56c48c899598dae1c5fae3e.jpg", "file_size": 10737, "is_delete": false, "file_type": 1, "original_file_name": "JTSS431FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6dc3c1c56c48c899598dae1c5fae3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6dc3c1c56c48c899598dae1c5fae3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6dc3c1c56c48c899598dae1c5fae3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d6dc3c1c56c48c899598dae1c5fae3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d6dc3c1c56c48c899598dae1c5fae3e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJsZihna-GBHlmxEyuzJfjRJ1mY=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.402883+00 2025-12-09 10:15:20.402889+00 13218 1157#WJC22 SPMX-20240815308413 \N \N \N 1 \N [{"file_id": "0afd3e8f-78a5-4452-9033-23a500547bad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c920d91b7300488b87d9f88d4d6dc72a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c920d91b7300488b87d9f88d4d6dc72a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c920d91b7300488b87d9f88d4d6dc72a.jpg", "file_size": 26684, "is_delete": false, "file_type": 1, "original_file_name": "1157#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c920d91b7300488b87d9f88d4d6dc72a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c920d91b7300488b87d9f88d4d6dc72a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c920d91b7300488b87d9f88d4d6dc72a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c920d91b7300488b87d9f88d4d6dc72a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c920d91b7300488b87d9f88d4d6dc72a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4uLggdrz17ePB3b18-_EqDeKqtA=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.405003+00 2025-12-09 10:15:20.405009+00 13219 LJH1528-3#蓝色 SPMX-20240815308404 \N \N \N 1 \N [{"file_id": "20ef7f11-3bfe-4424-a544-37feec569c71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffd92515f5684cb3b678a9bdc365b2a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffd92515f5684cb3b678a9bdc365b2a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffd92515f5684cb3b678a9bdc365b2a4.jpg", "file_size": 14563, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528-3#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd92515f5684cb3b678a9bdc365b2a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd92515f5684cb3b678a9bdc365b2a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd92515f5684cb3b678a9bdc365b2a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffd92515f5684cb3b678a9bdc365b2a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffd92515f5684cb3b678a9bdc365b2a4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAGZrbdIRaKWaRPkMwd80jAZGIY=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.407281+00 2025-12-09 10:15:20.407286+00 13220 HT3336#青色 SPMX-20240815308411 \N \N \N 1 \N [{"file_id": "f9efe88d-ee4b-44e0-b8ea-a1db634cf2cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fddf9b394dc40769f3ff3a692ad40a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fddf9b394dc40769f3ff3a692ad40a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fddf9b394dc40769f3ff3a692ad40a7.jpg", "file_size": 60223, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fddf9b394dc40769f3ff3a692ad40a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fddf9b394dc40769f3ff3a692ad40a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fddf9b394dc40769f3ff3a692ad40a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fddf9b394dc40769f3ff3a692ad40a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fddf9b394dc40769f3ff3a692ad40a7.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6O23ubfMllYP4tG20p-eX5NnWXg=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.409533+00 2025-12-09 10:15:20.409539+00 13221 JTSS432FW#VS-D3 SPMX-20240815308414 \N \N \N 1 \N [{"file_id": "a67e6b0f-e164-4be9-ba65-7db85daa748b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d4dae352aa349fd8cf75ff12d4fdb9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d4dae352aa349fd8cf75ff12d4fdb9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d4dae352aa349fd8cf75ff12d4fdb9b.jpg", "file_size": 17736, "is_delete": false, "file_type": 1, "original_file_name": "JTSS432FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4dae352aa349fd8cf75ff12d4fdb9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4dae352aa349fd8cf75ff12d4fdb9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d4dae352aa349fd8cf75ff12d4fdb9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d4dae352aa349fd8cf75ff12d4fdb9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d4dae352aa349fd8cf75ff12d4fdb9b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrKgllKvKttOH8RBvI-jdwt-YtM=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.411732+00 2025-12-09 10:15:20.411737+00 13222 C767FWF#领袖门筒M SPMX-20240815308405 \N \N \N 1 \N [{"file_id": "ca8ee547-ee21-4261-8c9a-40a2893bb8fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d017a57a53643ccadeb487a075f5d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d017a57a53643ccadeb487a075f5d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d017a57a53643ccadeb487a075f5d50.jpg", "file_size": 18320, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#领袖门筒M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d017a57a53643ccadeb487a075f5d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d017a57a53643ccadeb487a075f5d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d017a57a53643ccadeb487a075f5d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d017a57a53643ccadeb487a075f5d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d017a57a53643ccadeb487a075f5d50.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXYPNHQdVueKEhrhnUUuE5tivs4=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.413733+00 2025-12-09 10:15:20.413738+00 13223 LJH1535#皮红 SPMX-20240815308426 \N \N \N 1 \N [{"file_id": "cfd04bae-f0b9-424c-a8aa-ae57cd2f3467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b81f7242e5b445658be67a9d623e8967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b81f7242e5b445658be67a9d623e8967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b81f7242e5b445658be67a9d623e8967.jpg", "file_size": 62445, "is_delete": false, "file_type": 1, "original_file_name": "LJH1535#皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81f7242e5b445658be67a9d623e8967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81f7242e5b445658be67a9d623e8967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81f7242e5b445658be67a9d623e8967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b81f7242e5b445658be67a9d623e8967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b81f7242e5b445658be67a9d623e8967.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWrsK-YrkGqrdxuMDkdqO-EcA7M=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.415688+00 2025-12-09 10:15:20.415692+00 13224 LJH1528-3#黑色 SPMX-20240815308415 \N \N \N 1 \N [{"file_id": "6a36cb02-2c29-4ef0-911e-c3bdd6d3c88e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccdf4c43ad704472844c1755b2dea435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccdf4c43ad704472844c1755b2dea435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccdf4c43ad704472844c1755b2dea435.jpg", "file_size": 16091, "is_delete": false, "file_type": 1, "original_file_name": "LJH1528-3#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdf4c43ad704472844c1755b2dea435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdf4c43ad704472844c1755b2dea435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdf4c43ad704472844c1755b2dea435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccdf4c43ad704472844c1755b2dea435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccdf4c43ad704472844c1755b2dea435.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6AkxU2xb8aKPbSYzsfBL14Dm2Vo=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.4177+00 2025-12-09 10:15:20.417713+00 13225 HT3336#黄色 SPMX-20240815308424 \N \N \N 1 \N [{"file_id": "26be72be-f448-423a-a905-ac5d5013f48a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add6bb3fa01c4a06bfa5055337e87b7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add6bb3fa01c4a06bfa5055337e87b7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add6bb3fa01c4a06bfa5055337e87b7f.jpg", "file_size": 59111, "is_delete": false, "file_type": 1, "original_file_name": "HT3336#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add6bb3fa01c4a06bfa5055337e87b7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add6bb3fa01c4a06bfa5055337e87b7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add6bb3fa01c4a06bfa5055337e87b7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add6bb3fa01c4a06bfa5055337e87b7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add6bb3fa01c4a06bfa5055337e87b7f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlA16V-OxPB9RqakAd7owvTo60Y=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.419706+00 2025-12-09 10:15:20.419711+00 13226 LZ1314#背心款4号色 SPMX-20240815308420 \N \N \N 1 \N [{"file_id": "c0368eb0-c380-4f4b-9d03-86a4e945cc05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e313d623d73f42b586dd996e279a8ad2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e313d623d73f42b586dd996e279a8ad2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e313d623d73f42b586dd996e279a8ad2.jpg", "file_size": 17869, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e313d623d73f42b586dd996e279a8ad2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e313d623d73f42b586dd996e279a8ad2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e313d623d73f42b586dd996e279a8ad2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e313d623d73f42b586dd996e279a8ad2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e313d623d73f42b586dd996e279a8ad2.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gp4bdyYAFFX6Qzc01kHQrOtM-Ss=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.421735+00 2025-12-09 10:15:20.421739+00 13227 8318FWE#红净色 SPMX-20240815308416 \N \N \N 1 \N [{"file_id": "55359c1e-21bc-4d44-93d5-32ec524a823f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "441d6c1bb1ad4aa09aade75a3186959f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "441d6c1bb1ad4aa09aade75a3186959f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "441d6c1bb1ad4aa09aade75a3186959f.jpg", "file_size": 8511, "is_delete": false, "file_type": 1, "original_file_name": "8318FWE#红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441d6c1bb1ad4aa09aade75a3186959f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441d6c1bb1ad4aa09aade75a3186959f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441d6c1bb1ad4aa09aade75a3186959f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/441d6c1bb1ad4aa09aade75a3186959f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/441d6c1bb1ad4aa09aade75a3186959f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pNShnm1FqJc-qOC5CcMgaPt7r8k=", "createTime": "2024-08-15 14:55:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.423722+00 2025-12-09 10:15:20.423727+00 13228 1157#斑马纹 SPMX-20240815308422 \N \N \N 1 \N [{"file_id": "6635d9e8-260b-4023-91a8-d785df1175ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "553325be89ff4219ac8f3585fb4fb778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "553325be89ff4219ac8f3585fb4fb778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "553325be89ff4219ac8f3585fb4fb778.jpg", "file_size": 26986, "is_delete": false, "file_type": 1, "original_file_name": "1157#斑马纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553325be89ff4219ac8f3585fb4fb778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553325be89ff4219ac8f3585fb4fb778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553325be89ff4219ac8f3585fb4fb778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/553325be89ff4219ac8f3585fb4fb778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/553325be89ff4219ac8f3585fb4fb778.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P4Hg1XDveSlCdqUBAe-vy99iihA=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.425756+00 2025-12-09 10:15:20.425761+00 13229 JTSS433FW#VS-D3 SPMX-20240815308425 \N \N \N 1 \N [{"file_id": "bbe3393c-8d3b-4a7d-a4b8-e9f63be4cdca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c30aa0f67fb4740a4ff2e3aa207cb56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c30aa0f67fb4740a4ff2e3aa207cb56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c30aa0f67fb4740a4ff2e3aa207cb56.jpg", "file_size": 19308, "is_delete": false, "file_type": 1, "original_file_name": "JTSS433FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c30aa0f67fb4740a4ff2e3aa207cb56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c30aa0f67fb4740a4ff2e3aa207cb56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c30aa0f67fb4740a4ff2e3aa207cb56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c30aa0f67fb4740a4ff2e3aa207cb56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c30aa0f67fb4740a4ff2e3aa207cb56.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JMmOLeHsatnJDOG8091WvrMHeAw=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.427774+00 2025-12-09 10:15:20.42778+00 13230 C767FWF#领袖门筒S SPMX-20240815308417 \N \N \N 1 \N [{"file_id": "e84ca449-ed5e-458d-a379-94325e86f332", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d05aa1da2264968a47a8d5cb07042fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d05aa1da2264968a47a8d5cb07042fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d05aa1da2264968a47a8d5cb07042fa.jpg", "file_size": 18148, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#领袖门筒S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d05aa1da2264968a47a8d5cb07042fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d05aa1da2264968a47a8d5cb07042fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d05aa1da2264968a47a8d5cb07042fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d05aa1da2264968a47a8d5cb07042fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d05aa1da2264968a47a8d5cb07042fa.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CXNpA0zkrFRUczsacyDsd1BgDoI=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.429819+00 2025-12-09 10:15:20.429823+00 13231 DL31082#前幅玫红 SPMX-20240815308423 \N \N \N 1 \N [{"file_id": "afac6686-9be5-4d03-ab50-f98e44f5bae1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2dba8b9b8d44392bbea38e9f88bb001.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2dba8b9b8d44392bbea38e9f88bb001.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2dba8b9b8d44392bbea38e9f88bb001.jpg", "file_size": 15032, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2dba8b9b8d44392bbea38e9f88bb001.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2dba8b9b8d44392bbea38e9f88bb001.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2dba8b9b8d44392bbea38e9f88bb001.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2dba8b9b8d44392bbea38e9f88bb001.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2dba8b9b8d44392bbea38e9f88bb001.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvgsVNe5Fa2bqY2Umdx8OLrnUUI=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.431815+00 2025-12-09 10:15:20.43182+00 13232 FM009#大红 SPMX-20240815308418 \N \N \N 1 \N [{"file_id": "d08a9f18-0b18-41b4-8439-bee1b13e5e88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "366ab86eeda54ed0b7e5fc0865f9b1cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "366ab86eeda54ed0b7e5fc0865f9b1cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "366ab86eeda54ed0b7e5fc0865f9b1cb.jpg", "file_size": 18772, "is_delete": false, "file_type": 1, "original_file_name": "FM009#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366ab86eeda54ed0b7e5fc0865f9b1cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366ab86eeda54ed0b7e5fc0865f9b1cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366ab86eeda54ed0b7e5fc0865f9b1cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/366ab86eeda54ed0b7e5fc0865f9b1cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/366ab86eeda54ed0b7e5fc0865f9b1cb.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNPisXUMt4Xqw0hr9IDmEPeuugw=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.433833+00 2025-12-09 10:15:20.433837+00 13233 8319FWE#VS-D3 SPMX-20240815308427 \N \N \N 1 \N [{"file_id": "0f482eb4-571e-4dfa-af4e-91048d10672f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57eab62acfe645d5865103a24276ac2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57eab62acfe645d5865103a24276ac2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57eab62acfe645d5865103a24276ac2d.jpg", "file_size": 17374, "is_delete": false, "file_type": 1, "original_file_name": "8319FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57eab62acfe645d5865103a24276ac2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57eab62acfe645d5865103a24276ac2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57eab62acfe645d5865103a24276ac2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57eab62acfe645d5865103a24276ac2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57eab62acfe645d5865103a24276ac2d.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbGwVPoEn6s46HdQe3eWd-ainHI=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.43582+00 2025-12-09 10:15:20.435826+00 13234 0005-21#粉色 SPMX-20240815308419 \N \N \N 1 \N [{"file_id": "b9d9628a-b50a-4846-ba64-94bac2ec608a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7674f182f79b4972bbb1e4ea5a747c00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7674f182f79b4972bbb1e4ea5a747c00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7674f182f79b4972bbb1e4ea5a747c00.jpg", "file_size": 11434, "is_delete": false, "file_type": 1, "original_file_name": "0005-21#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7674f182f79b4972bbb1e4ea5a747c00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7674f182f79b4972bbb1e4ea5a747c00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7674f182f79b4972bbb1e4ea5a747c00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7674f182f79b4972bbb1e4ea5a747c00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7674f182f79b4972bbb1e4ea5a747c00.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CpEw8bkOtSFokxwMvDOvpk5hgZU=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.437867+00 2025-12-09 10:15:20.437872+00 13235 23-2120#A7-领子4XL SPMX-20240815308421 \N \N \N 1 \N [{"file_id": "40d64d21-6a3e-4e7b-a058-4db9d6d03d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e68236a963f2443fbf5572cded05ed0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e68236a963f2443fbf5572cded05ed0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e68236a963f2443fbf5572cded05ed0e.jpg", "file_size": 11391, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68236a963f2443fbf5572cded05ed0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68236a963f2443fbf5572cded05ed0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68236a963f2443fbf5572cded05ed0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e68236a963f2443fbf5572cded05ed0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e68236a963f2443fbf5572cded05ed0e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnC1IOIyHqgbZ1OwtCz4OCAoBGg=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.448165+00 2025-12-09 10:15:20.448171+00 13240 23-2120#A8-3XL SPMX-20240815308433 \N \N \N 1 \N [{"file_id": "bd6f609d-ac64-4a0c-81f9-3c9c4fa97986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bfb13ec168a4055b1d7ca4817c04c25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bfb13ec168a4055b1d7ca4817c04c25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bfb13ec168a4055b1d7ca4817c04c25.jpg", "file_size": 19425, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfb13ec168a4055b1d7ca4817c04c25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfb13ec168a4055b1d7ca4817c04c25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfb13ec168a4055b1d7ca4817c04c25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bfb13ec168a4055b1d7ca4817c04c25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bfb13ec168a4055b1d7ca4817c04c25.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vb3EU9sQbSZLQi4MwRtTE8wChdc=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.439865+00 2025-12-09 10:15:20.43987+00 13236 C767FWF#领袖门筒XL SPMX-20240815308428 \N \N \N 1 \N [{"file_id": "27557882-f560-490f-85f9-6ed32587997e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a1d48a3d55447beb0525606424eef62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a1d48a3d55447beb0525606424eef62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a1d48a3d55447beb0525606424eef62.jpg", "file_size": 18297, "is_delete": false, "file_type": 1, "original_file_name": "C767FWF#领袖门筒XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1d48a3d55447beb0525606424eef62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1d48a3d55447beb0525606424eef62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a1d48a3d55447beb0525606424eef62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a1d48a3d55447beb0525606424eef62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a1d48a3d55447beb0525606424eef62.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyivkQrjrAwScorwMB3P7ZtX58Q=", "createTime": "2024-08-15 14:55:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.44211+00 2025-12-09 10:15:20.442114+00 13237 116#-杏色 SPMX-20240815308430 \N \N \N 1 \N [{"file_id": "b935fd2d-3abd-4253-b7b4-ebee79f49892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3e2427507f840fd8ed70aea9eed0773.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3e2427507f840fd8ed70aea9eed0773.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3e2427507f840fd8ed70aea9eed0773.jpg", "file_size": 41630, "is_delete": false, "file_type": 1, "original_file_name": "116#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3e2427507f840fd8ed70aea9eed0773.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3e2427507f840fd8ed70aea9eed0773.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3e2427507f840fd8ed70aea9eed0773.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3e2427507f840fd8ed70aea9eed0773.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3e2427507f840fd8ed70aea9eed0773.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pQHUESnodvQrGElHlKvESneJ04=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.444121+00 2025-12-09 10:15:20.444126+00 13238 FM009#彩兰 SPMX-20240815308431 \N \N \N 1 \N [{"file_id": "a5d81145-dfd3-41af-b1f3-6cdb77ee1360", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9fe8937a74644e6a77d402ac6f21c41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9fe8937a74644e6a77d402ac6f21c41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9fe8937a74644e6a77d402ac6f21c41.jpg", "file_size": 18840, "is_delete": false, "file_type": 1, "original_file_name": "FM009#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe8937a74644e6a77d402ac6f21c41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe8937a74644e6a77d402ac6f21c41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe8937a74644e6a77d402ac6f21c41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9fe8937a74644e6a77d402ac6f21c41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9fe8937a74644e6a77d402ac6f21c41.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDozTLTskaPB1zyxH5ih4zGtpe4=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.446119+00 2025-12-09 10:15:20.446124+00 13239 DL31082#前幅蓝绿 SPMX-20240815308432 \N \N \N 1 \N [{"file_id": "b1685fb3-fa67-4aff-8f88-249995659365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "864b9ae5406747fe8eb8e843f1e88a83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "864b9ae5406747fe8eb8e843f1e88a83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "864b9ae5406747fe8eb8e843f1e88a83.jpg", "file_size": 14592, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864b9ae5406747fe8eb8e843f1e88a83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864b9ae5406747fe8eb8e843f1e88a83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864b9ae5406747fe8eb8e843f1e88a83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/864b9ae5406747fe8eb8e843f1e88a83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/864b9ae5406747fe8eb8e843f1e88a83.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bodlvrt4sEmQ7dRq-jTuqlKM9QI=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.450205+00 2025-12-09 10:15:20.45021+00 13241 LZ1314#背心款5号色 SPMX-20240815308429 \N \N \N 1 \N [{"file_id": "73562b80-6c4c-4742-9f92-36b1225eb215", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a9677165ee47fcac3c52f5e7ae55be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a9677165ee47fcac3c52f5e7ae55be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a9677165ee47fcac3c52f5e7ae55be.jpg", "file_size": 16365, "is_delete": false, "file_type": 1, "original_file_name": "LZ1314#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a9677165ee47fcac3c52f5e7ae55be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a9677165ee47fcac3c52f5e7ae55be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a9677165ee47fcac3c52f5e7ae55be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a9677165ee47fcac3c52f5e7ae55be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a9677165ee47fcac3c52f5e7ae55be.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wNb5jYcHEL0ayMkpjkiEwB9Gc0=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.452261+00 2025-12-09 10:15:20.452267+00 13242 8321FWE#红色2XL VS-D3 SPMX-20240815308438 \N \N \N 1 \N [{"file_id": "507520a2-a3c3-4e9a-8bbf-addffa9728a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0dddb5120e04db9a2a15ae1d3145961.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0dddb5120e04db9a2a15ae1d3145961.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0dddb5120e04db9a2a15ae1d3145961.jpg", "file_size": 8854, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#红色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dddb5120e04db9a2a15ae1d3145961.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dddb5120e04db9a2a15ae1d3145961.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dddb5120e04db9a2a15ae1d3145961.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0dddb5120e04db9a2a15ae1d3145961.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0dddb5120e04db9a2a15ae1d3145961.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MCCGG0VJWJyuuPKzrtkH3vWddo8=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.454261+00 2025-12-09 10:15:20.454267+00 13243 LZ1315#捆条布 SPMX-20240815308440 \N \N \N 1 \N [{"file_id": "2b180f1c-aa12-4cc3-8733-1fe19b8c1536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79c22ea3b5f84129ab27bae39561d10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79c22ea3b5f84129ab27bae39561d10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79c22ea3b5f84129ab27bae39561d10a.jpg", "file_size": 10234, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c22ea3b5f84129ab27bae39561d10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c22ea3b5f84129ab27bae39561d10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c22ea3b5f84129ab27bae39561d10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79c22ea3b5f84129ab27bae39561d10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79c22ea3b5f84129ab27bae39561d10a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4qPZ-wd1AIRtLcRa0veJWLNMeFE=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.456256+00 2025-12-09 10:15:20.456266+00 13244 HT3337#红色 SPMX-20240815308446 \N \N \N 1 \N [{"file_id": "0e2dc3ae-4637-40b1-87cc-58988c10ed4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f805de3b2d74c94b212749db1f25354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f805de3b2d74c94b212749db1f25354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f805de3b2d74c94b212749db1f25354.jpg", "file_size": 40604, "is_delete": false, "file_type": 1, "original_file_name": "HT3337#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f805de3b2d74c94b212749db1f25354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f805de3b2d74c94b212749db1f25354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f805de3b2d74c94b212749db1f25354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f805de3b2d74c94b212749db1f25354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f805de3b2d74c94b212749db1f25354.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKxD3LVjA_aEHluPOY0uLMjrcAM=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.458238+00 2025-12-09 10:15:20.458243+00 13245 HT3337#原版色 SPMX-20240815308435 \N \N \N 1 \N [{"file_id": "35131ff6-2453-48fc-8a16-334183458bcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6896c77da40140ab94b83761c59501aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6896c77da40140ab94b83761c59501aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6896c77da40140ab94b83761c59501aa.jpg", "file_size": 41309, "is_delete": false, "file_type": 1, "original_file_name": "HT3337#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896c77da40140ab94b83761c59501aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896c77da40140ab94b83761c59501aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6896c77da40140ab94b83761c59501aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6896c77da40140ab94b83761c59501aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6896c77da40140ab94b83761c59501aa.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiYrWGm6euZubs744fXrceZ0Vpo=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.46027+00 2025-12-09 10:15:20.460276+00 13246 JTSS434FW#VS-D3 SPMX-20240815308437 \N \N \N 1 \N [{"file_id": "1b209ed1-7ba6-4139-8d69-659085fb5af1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3cd20ba2ac742568dc681434c5201a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3cd20ba2ac742568dc681434c5201a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3cd20ba2ac742568dc681434c5201a8.jpg", "file_size": 10221, "is_delete": false, "file_type": 1, "original_file_name": "JTSS434FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cd20ba2ac742568dc681434c5201a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cd20ba2ac742568dc681434c5201a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cd20ba2ac742568dc681434c5201a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3cd20ba2ac742568dc681434c5201a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3cd20ba2ac742568dc681434c5201a8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tua41tpioCNe4i3ZNMVMIfQvjho=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.462244+00 2025-12-09 10:15:20.462249+00 13247 116#-灰色 SPMX-20240815308441 \N \N \N 1 \N [{"file_id": "d48827ed-71b5-4ceb-b532-e80d93642b22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a316b1c39afa4788a95cf64577a9b1fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a316b1c39afa4788a95cf64577a9b1fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a316b1c39afa4788a95cf64577a9b1fb.jpg", "file_size": 54348, "is_delete": false, "file_type": 1, "original_file_name": "116#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a316b1c39afa4788a95cf64577a9b1fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a316b1c39afa4788a95cf64577a9b1fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a316b1c39afa4788a95cf64577a9b1fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a316b1c39afa4788a95cf64577a9b1fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a316b1c39afa4788a95cf64577a9b1fb.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-JN1tOLxrtXsmbd16wVnmzkrMwg=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.464232+00 2025-12-09 10:15:20.464237+00 13248 C77#墨绿底 SPMX-20240815308442 \N \N \N 1 \N [{"file_id": "fd659d6a-4f84-4ea3-aa5e-8b936d88eba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80e5e159fc92421ab45f870805c9892b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80e5e159fc92421ab45f870805c9892b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80e5e159fc92421ab45f870805c9892b.jpg", "file_size": 16739, "is_delete": false, "file_type": 1, "original_file_name": "C77#墨绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5e159fc92421ab45f870805c9892b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5e159fc92421ab45f870805c9892b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5e159fc92421ab45f870805c9892b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80e5e159fc92421ab45f870805c9892b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80e5e159fc92421ab45f870805c9892b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0_mfcVQFtGlkx08Nxu8cfwnUnI=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.476778+00 2025-12-09 10:15:20.476783+00 13254 0005-21#黄色 SPMX-20240815308434 \N \N \N 1 \N [{"file_id": "98dd26da-312d-4c86-9f9a-1fe42f434a86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f4c5c59a6254268aa93096ad89f3f90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f4c5c59a6254268aa93096ad89f3f90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f4c5c59a6254268aa93096ad89f3f90.jpg", "file_size": 11751, "is_delete": false, "file_type": 1, "original_file_name": "0005-21#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4c5c59a6254268aa93096ad89f3f90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4c5c59a6254268aa93096ad89f3f90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4c5c59a6254268aa93096ad89f3f90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f4c5c59a6254268aa93096ad89f3f90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f4c5c59a6254268aa93096ad89f3f90.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAuQtdySZsf1iFT79dUowaYOXcM=", "createTime": "2024-08-15 14:55:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.466215+00 2025-12-09 10:15:20.46622+00 13249 DL31082#前幅黄色 SPMX-20240815308443 \N \N \N 1 \N [{"file_id": "7ced1177-58ef-431d-bb03-7cb422986028", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebb3c8572ba14f6bb09d14e317572912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebb3c8572ba14f6bb09d14e317572912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebb3c8572ba14f6bb09d14e317572912.jpg", "file_size": 14128, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb3c8572ba14f6bb09d14e317572912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb3c8572ba14f6bb09d14e317572912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb3c8572ba14f6bb09d14e317572912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebb3c8572ba14f6bb09d14e317572912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebb3c8572ba14f6bb09d14e317572912.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s41ZkHJKcC6jSs2AaPCnqki8-uY=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.46826+00 2025-12-09 10:15:20.468265+00 13250 JTSS435FW#VS-D3 SPMX-20240815308447 \N \N \N 1 \N [{"file_id": "7a233d40-43e9-4155-8df3-e21cbfa53b72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "489e34d285c54146a5e46f52b1551620.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "489e34d285c54146a5e46f52b1551620.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "489e34d285c54146a5e46f52b1551620.jpg", "file_size": 13316, "is_delete": false, "file_type": 1, "original_file_name": "JTSS435FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489e34d285c54146a5e46f52b1551620.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489e34d285c54146a5e46f52b1551620.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489e34d285c54146a5e46f52b1551620.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/489e34d285c54146a5e46f52b1551620.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/489e34d285c54146a5e46f52b1551620.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QzPh1ePDTHKk4ipP1embKmgwUgs=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.470258+00 2025-12-09 10:15:20.470263+00 13251 0005-22#彩蓝 SPMX-20240815308445 \N \N \N 1 \N [{"file_id": "51fe7bd8-1bdb-4ddd-afb3-9c35d618ec69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4254d21559c42f8ac6634dd425943bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4254d21559c42f8ac6634dd425943bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4254d21559c42f8ac6634dd425943bd.jpg", "file_size": 20072, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4254d21559c42f8ac6634dd425943bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4254d21559c42f8ac6634dd425943bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4254d21559c42f8ac6634dd425943bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4254d21559c42f8ac6634dd425943bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4254d21559c42f8ac6634dd425943bd.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDY471k_CxmYsqnxu77M6drqUFY=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.472235+00 2025-12-09 10:15:20.47224+00 13252 LJH1535#粉色 SPMX-20240815308436 \N \N \N 1 \N [{"file_id": "dc45033c-5aee-47ca-b88d-624e8b8520b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0649591ec0d04a519897ab2cdbab7e99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0649591ec0d04a519897ab2cdbab7e99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0649591ec0d04a519897ab2cdbab7e99.jpg", "file_size": 65954, "is_delete": false, "file_type": 1, "original_file_name": "LJH1535#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0649591ec0d04a519897ab2cdbab7e99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0649591ec0d04a519897ab2cdbab7e99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0649591ec0d04a519897ab2cdbab7e99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0649591ec0d04a519897ab2cdbab7e99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0649591ec0d04a519897ab2cdbab7e99.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlGcYIfxE-IfsabWrXutMFsW3go=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.474485+00 2025-12-09 10:15:20.47449+00 13253 23-2120#A8-4XL SPMX-20240815308444 \N \N \N 1 \N [{"file_id": "a80214e2-153d-437f-8332-a463146b4ac0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7efe2b3b1d884e08b656b960f7d4bbbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7efe2b3b1d884e08b656b960f7d4bbbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7efe2b3b1d884e08b656b960f7d4bbbe.jpg", "file_size": 17961, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efe2b3b1d884e08b656b960f7d4bbbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efe2b3b1d884e08b656b960f7d4bbbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efe2b3b1d884e08b656b960f7d4bbbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7efe2b3b1d884e08b656b960f7d4bbbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7efe2b3b1d884e08b656b960f7d4bbbe.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAHmP306zQ-RWsODlqDAZNq3H00=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.479391+00 2025-12-09 10:15:20.479397+00 13255 FM009#枣红 SPMX-20240815308439 \N \N \N 1 \N [{"file_id": "98c201fd-b20a-40bb-a8e6-ed329cad6a5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ecb7a1a6d4344a99f448c460b1c0925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ecb7a1a6d4344a99f448c460b1c0925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ecb7a1a6d4344a99f448c460b1c0925.jpg", "file_size": 18865, "is_delete": false, "file_type": 1, "original_file_name": "FM009#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecb7a1a6d4344a99f448c460b1c0925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecb7a1a6d4344a99f448c460b1c0925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ecb7a1a6d4344a99f448c460b1c0925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ecb7a1a6d4344a99f448c460b1c0925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ecb7a1a6d4344a99f448c460b1c0925.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4ZZC-Eur4cg_TUUHqN-2yy5KrY=", "createTime": "2024-08-15 14:55:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.481816+00 2025-12-09 10:15:20.481823+00 13256 HT3337#绿色 SPMX-20240815308456 \N \N \N 1 \N [{"file_id": "7897d7f5-3d63-4869-8dc3-db89f807613c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30e1e36d0902465fa7847afd95de18d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30e1e36d0902465fa7847afd95de18d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30e1e36d0902465fa7847afd95de18d3.jpg", "file_size": 39941, "is_delete": false, "file_type": 1, "original_file_name": "HT3337#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e1e36d0902465fa7847afd95de18d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e1e36d0902465fa7847afd95de18d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e1e36d0902465fa7847afd95de18d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30e1e36d0902465fa7847afd95de18d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30e1e36d0902465fa7847afd95de18d3.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6nbSyat-lcFzmnx5f6iIqZJ1ec=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.484473+00 2025-12-09 10:15:20.484479+00 13257 JTSS436FW#VS-D3 SPMX-20240815308457 \N \N \N 1 \N [{"file_id": "0360cbfc-9144-4611-a8d5-6ae3cd931bba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fd01f21889a4a7db045c0cd54bb713c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fd01f21889a4a7db045c0cd54bb713c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fd01f21889a4a7db045c0cd54bb713c.jpg", "file_size": 10902, "is_delete": false, "file_type": 1, "original_file_name": "JTSS436FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd01f21889a4a7db045c0cd54bb713c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd01f21889a4a7db045c0cd54bb713c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd01f21889a4a7db045c0cd54bb713c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fd01f21889a4a7db045c0cd54bb713c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fd01f21889a4a7db045c0cd54bb713c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fc3uvI9DDTiLQIp1-cih5YhtVyI=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.486878+00 2025-12-09 10:15:20.486884+00 13258 8321FWE#红色3XL VS-D3 SPMX-20240815308450 \N \N \N 1 \N [{"file_id": "5535139a-deaf-4566-ad78-b4a9ce7792a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78331da9fecb41d4a995232ad0fbb924.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78331da9fecb41d4a995232ad0fbb924.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78331da9fecb41d4a995232ad0fbb924.jpg", "file_size": 9441, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#红色3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78331da9fecb41d4a995232ad0fbb924.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78331da9fecb41d4a995232ad0fbb924.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78331da9fecb41d4a995232ad0fbb924.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78331da9fecb41d4a995232ad0fbb924.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78331da9fecb41d4a995232ad0fbb924.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Mx7dgYAN_wRHFaVj57xHvnFc1A=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.489415+00 2025-12-09 10:15:20.48942+00 13259 DL31082#前幅黑色 SPMX-20240815308455 \N \N \N 1 \N [{"file_id": "8d579b97-95e3-4abc-9d68-b1828a7d2e93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b0e38e2f59e4359b3a8b8835f625ca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b0e38e2f59e4359b3a8b8835f625ca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b0e38e2f59e4359b3a8b8835f625ca3.jpg", "file_size": 15412, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#前幅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0e38e2f59e4359b3a8b8835f625ca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0e38e2f59e4359b3a8b8835f625ca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0e38e2f59e4359b3a8b8835f625ca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b0e38e2f59e4359b3a8b8835f625ca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b0e38e2f59e4359b3a8b8835f625ca3.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZsRg3qCiY9CBBDvsM1hEKFu964=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.491779+00 2025-12-09 10:15:20.491783+00 13260 FM009#玫红 SPMX-20240815308453 \N \N \N 1 \N [{"file_id": "bbfa63fb-b40f-485f-9eb4-98e5179e4f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "525ae7b00c8f4cd7b8f4ad423fd7d338.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "525ae7b00c8f4cd7b8f4ad423fd7d338.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "525ae7b00c8f4cd7b8f4ad423fd7d338.jpg", "file_size": 18902, "is_delete": false, "file_type": 1, "original_file_name": "FM009#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525ae7b00c8f4cd7b8f4ad423fd7d338.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525ae7b00c8f4cd7b8f4ad423fd7d338.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/525ae7b00c8f4cd7b8f4ad423fd7d338.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/525ae7b00c8f4cd7b8f4ad423fd7d338.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/525ae7b00c8f4cd7b8f4ad423fd7d338.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvP4F5VCNeRKnsyQHdlX4BC_1b8=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.493941+00 2025-12-09 10:15:20.493946+00 13261 0005-22#彩蓝后服袖子 SPMX-20240815308458 \N \N \N 1 \N [{"file_id": "7f455d5e-478b-4fd0-beca-58ef20c8a157", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9e235853efb49d0b952d54b7a2c49e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9e235853efb49d0b952d54b7a2c49e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9e235853efb49d0b952d54b7a2c49e1.jpg", "file_size": 10261, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#彩蓝后服袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9e235853efb49d0b952d54b7a2c49e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9e235853efb49d0b952d54b7a2c49e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9e235853efb49d0b952d54b7a2c49e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9e235853efb49d0b952d54b7a2c49e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9e235853efb49d0b952d54b7a2c49e1.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaBUNU6KoR8kKm-Dyl9eHeirpFs=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.496177+00 2025-12-09 10:15:20.496182+00 13262 23-2120#A8-领子3XL SPMX-20240815308454 \N \N \N 1 \N [{"file_id": "b31dea11-47cb-4dc2-aad6-10cac5c0723e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81377971ab1c4abca74fba035626f12d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81377971ab1c4abca74fba035626f12d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81377971ab1c4abca74fba035626f12d.jpg", "file_size": 13292, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81377971ab1c4abca74fba035626f12d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81377971ab1c4abca74fba035626f12d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81377971ab1c4abca74fba035626f12d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81377971ab1c4abca74fba035626f12d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81377971ab1c4abca74fba035626f12d.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5k1Run-LTQsTmd0f0wWIEpP11A=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.498432+00 2025-12-09 10:15:20.498438+00 13263 LJH1535#黑色 SPMX-20240815308449 \N \N \N 1 \N [{"file_id": "6d753ff5-a734-4c95-953c-be440e776dd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca48dba78dda4946963097e67913490c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca48dba78dda4946963097e67913490c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca48dba78dda4946963097e67913490c.jpg", "file_size": 70094, "is_delete": false, "file_type": 1, "original_file_name": "LJH1535#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48dba78dda4946963097e67913490c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48dba78dda4946963097e67913490c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca48dba78dda4946963097e67913490c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca48dba78dda4946963097e67913490c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca48dba78dda4946963097e67913490c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pv0STNUOSguXL0FrTvE1jXtLEpU=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.500483+00 2025-12-09 10:15:20.500488+00 13264 C77#宝兰底 SPMX-20240815308459 \N \N \N 1 \N [{"file_id": "c5ac74da-20f5-41bb-b063-db7bda88ecbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59a85c9a546148d89a768b3388fc706a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59a85c9a546148d89a768b3388fc706a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59a85c9a546148d89a768b3388fc706a.jpg", "file_size": 16768, "is_delete": false, "file_type": 1, "original_file_name": "C77#宝兰底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a85c9a546148d89a768b3388fc706a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a85c9a546148d89a768b3388fc706a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59a85c9a546148d89a768b3388fc706a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59a85c9a546148d89a768b3388fc706a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59a85c9a546148d89a768b3388fc706a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRDzqziPnmM7ZA-nSzwKFrpxCL8=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.50248+00 2025-12-09 10:15:20.502485+00 13265 C77#大白底 SPMX-20240815308448 \N \N \N 1 \N [{"file_id": "d778ccbc-21fd-4e2a-bcf7-1b4e1ccccd0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed86a1e830184ce7b9f5ef07fbccfc8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed86a1e830184ce7b9f5ef07fbccfc8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed86a1e830184ce7b9f5ef07fbccfc8c.jpg", "file_size": 14266, "is_delete": false, "file_type": 1, "original_file_name": "C77#大白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed86a1e830184ce7b9f5ef07fbccfc8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed86a1e830184ce7b9f5ef07fbccfc8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed86a1e830184ce7b9f5ef07fbccfc8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed86a1e830184ce7b9f5ef07fbccfc8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed86a1e830184ce7b9f5ef07fbccfc8c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0flHKfrUygWYAOi78RfaQXqlxI=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.504449+00 2025-12-09 10:15:20.504454+00 13266 116#-白色 SPMX-20240815308451 \N \N \N 1 \N [{"file_id": "bc8a0171-a575-4a28-b9a4-f5cd67363924", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f3dc79662594748b603b76c62de22a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f3dc79662594748b603b76c62de22a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f3dc79662594748b603b76c62de22a5.jpg", "file_size": 40683, "is_delete": false, "file_type": 1, "original_file_name": "116#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f3dc79662594748b603b76c62de22a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f3dc79662594748b603b76c62de22a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f3dc79662594748b603b76c62de22a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f3dc79662594748b603b76c62de22a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f3dc79662594748b603b76c62de22a5.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUQ5LLsF20qWkJqj-VOiq2MDygo=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.506708+00 2025-12-09 10:15:20.506716+00 13267 LZ1315#背心款1号色 SPMX-20240815308452 \N \N \N 1 \N [{"file_id": "fa38ba36-ca29-4962-a904-c33c7bd456b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74adc98c8dfd499db3f80ea75959278a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74adc98c8dfd499db3f80ea75959278a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74adc98c8dfd499db3f80ea75959278a.jpg", "file_size": 18545, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74adc98c8dfd499db3f80ea75959278a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74adc98c8dfd499db3f80ea75959278a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74adc98c8dfd499db3f80ea75959278a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74adc98c8dfd499db3f80ea75959278a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74adc98c8dfd499db3f80ea75959278a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7pT1R5flUfpEzzDXe1U4Gvj_44Y=", "createTime": "2024-08-15 14:55:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.509183+00 2025-12-09 10:15:20.509189+00 13268 LJH1679#玫红 SPMX-20240815308461 \N \N \N 1 \N [{"file_id": "da8119b5-0611-4df9-92c5-930bfdb0b587", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6740acc9197f468da224c45e1b853db6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6740acc9197f468da224c45e1b853db6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6740acc9197f468da224c45e1b853db6.jpg", "file_size": 77633, "is_delete": false, "file_type": 1, "original_file_name": "LJH1679#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6740acc9197f468da224c45e1b853db6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6740acc9197f468da224c45e1b853db6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6740acc9197f468da224c45e1b853db6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6740acc9197f468da224c45e1b853db6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6740acc9197f468da224c45e1b853db6.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6GtkU2Y2K1OoKMyh5esahF0BP4=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.511483+00 2025-12-09 10:15:20.511488+00 13269 DL31082#批布大红 SPMX-20240815308466 \N \N \N 1 \N [{"file_id": "e83e0200-d78e-4796-8618-cb035172d078", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f595badf34b14ea4867898eee1677343.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f595badf34b14ea4867898eee1677343.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f595badf34b14ea4867898eee1677343.jpg", "file_size": 18700, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f595badf34b14ea4867898eee1677343.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f595badf34b14ea4867898eee1677343.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f595badf34b14ea4867898eee1677343.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f595badf34b14ea4867898eee1677343.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f595badf34b14ea4867898eee1677343.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-MQ0lwqq7WfAMRE2gLHisgVyn5I=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.513482+00 2025-12-09 10:15:20.513487+00 13270 HT3337#黄色 SPMX-20240815308467 \N \N \N 1 \N [{"file_id": "90bed5a9-863d-4f89-be25-42c4b1d8b6ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1ad326d4ae74a5db749bf96d02e587b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1ad326d4ae74a5db749bf96d02e587b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1ad326d4ae74a5db749bf96d02e587b.jpg", "file_size": 39767, "is_delete": false, "file_type": 1, "original_file_name": "HT3337#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ad326d4ae74a5db749bf96d02e587b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ad326d4ae74a5db749bf96d02e587b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ad326d4ae74a5db749bf96d02e587b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1ad326d4ae74a5db749bf96d02e587b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1ad326d4ae74a5db749bf96d02e587b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJ6C69myM0wHzdlJm49OCK6flNk=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.515465+00 2025-12-09 10:15:20.515469+00 13271 C77#橙底 SPMX-20240815308469 \N \N \N 1 \N [{"file_id": "7d318fff-9572-4158-aaaa-18240159d55e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0862bece4e14fdea33ea4859fd3231a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0862bece4e14fdea33ea4859fd3231a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0862bece4e14fdea33ea4859fd3231a.jpg", "file_size": 14858, "is_delete": false, "file_type": 1, "original_file_name": "C77#橙底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0862bece4e14fdea33ea4859fd3231a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0862bece4e14fdea33ea4859fd3231a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0862bece4e14fdea33ea4859fd3231a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0862bece4e14fdea33ea4859fd3231a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0862bece4e14fdea33ea4859fd3231a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHbWnkJGhxzQsAywbM17rBbcNrA=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.517492+00 2025-12-09 10:15:20.517497+00 13272 0005-22#橘色 SPMX-20240815308470 \N \N \N 1 \N [{"file_id": "e353d3aa-ffa4-4edf-bd2a-02c6e03d0c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "961247985dc649c5bb1b279aa871d0f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "961247985dc649c5bb1b279aa871d0f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "961247985dc649c5bb1b279aa871d0f4.jpg", "file_size": 18586, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961247985dc649c5bb1b279aa871d0f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961247985dc649c5bb1b279aa871d0f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/961247985dc649c5bb1b279aa871d0f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/961247985dc649c5bb1b279aa871d0f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/961247985dc649c5bb1b279aa871d0f4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkkrLPJpnBpOiAUQqt9k3-Stfi0=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.519459+00 2025-12-09 10:15:20.519464+00 13273 116#-黑色 SPMX-20240815308464 \N \N \N 1 \N [{"file_id": "2417a310-dc9c-41f5-9d75-52cb7686d688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "106d9bb50f3040e2910640c1fd2ff486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "106d9bb50f3040e2910640c1fd2ff486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "106d9bb50f3040e2910640c1fd2ff486.jpg", "file_size": 43007, "is_delete": false, "file_type": 1, "original_file_name": "116#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106d9bb50f3040e2910640c1fd2ff486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106d9bb50f3040e2910640c1fd2ff486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106d9bb50f3040e2910640c1fd2ff486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/106d9bb50f3040e2910640c1fd2ff486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/106d9bb50f3040e2910640c1fd2ff486.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBpyLqmjsFAhdKussLVIAwJaGIw=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.521489+00 2025-12-09 10:15:20.521493+00 13274 23-2120#A8-领子4XL SPMX-20240815308463 \N \N \N 1 \N [{"file_id": "1f8abad2-51d0-4df2-a02f-b4a370d15810", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04baee54ff524195845bd476fcb45112.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04baee54ff524195845bd476fcb45112.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04baee54ff524195845bd476fcb45112.jpg", "file_size": 13839, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04baee54ff524195845bd476fcb45112.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04baee54ff524195845bd476fcb45112.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04baee54ff524195845bd476fcb45112.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04baee54ff524195845bd476fcb45112.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04baee54ff524195845bd476fcb45112.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8BUqBobNxCQOHICMYS_d1mKLrM=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.523469+00 2025-12-09 10:15:20.523475+00 13275 JTSS437FW#VS-D3 SPMX-20240815308468 \N \N \N 1 \N [{"file_id": "4ed6121e-aaca-4fff-bc84-6b7d1fd2550f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f878d071f2ab434f8427bf3242f7e9fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f878d071f2ab434f8427bf3242f7e9fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f878d071f2ab434f8427bf3242f7e9fc.jpg", "file_size": 12344, "is_delete": false, "file_type": 1, "original_file_name": "JTSS437FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f878d071f2ab434f8427bf3242f7e9fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f878d071f2ab434f8427bf3242f7e9fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f878d071f2ab434f8427bf3242f7e9fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f878d071f2ab434f8427bf3242f7e9fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f878d071f2ab434f8427bf3242f7e9fc.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXwo27dY6TyYeVDQZmopQadHgKk=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.525494+00 2025-12-09 10:15:20.525499+00 13276 LZ1315#背心款2号色 SPMX-20240815308462 \N \N \N 1 \N [{"file_id": "4d0f7fec-14fc-45fa-a578-87db532278e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg", "file_size": 17618, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec7c41d8cebc43cebb2e0c96fdc2cd57.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfWUdqkaGp46XBDPN5985ZsrjHs=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.527783+00 2025-12-09 10:15:20.527789+00 13277 8321FWE#红色4XL VS-D3 SPMX-20240815308460 \N \N \N 1 \N [{"file_id": "04d10951-fcc0-4582-99f4-73593e919757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cac08253f9341f995a901dcfde1da80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cac08253f9341f995a901dcfde1da80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cac08253f9341f995a901dcfde1da80.jpg", "file_size": 9372, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#红色4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cac08253f9341f995a901dcfde1da80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cac08253f9341f995a901dcfde1da80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cac08253f9341f995a901dcfde1da80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cac08253f9341f995a901dcfde1da80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cac08253f9341f995a901dcfde1da80.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qufhY3uEAsQc4nKRthIEVIBxS68=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.529847+00 2025-12-09 10:15:20.529852+00 13278 FM009#粉色 SPMX-20240815308465 \N \N \N 1 \N [{"file_id": "2eb8b989-9ea7-4c22-a8e8-242927f28453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27f6c59200414b958ebfb7b86bb0197e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27f6c59200414b958ebfb7b86bb0197e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27f6c59200414b958ebfb7b86bb0197e.jpg", "file_size": 16629, "is_delete": false, "file_type": 1, "original_file_name": "FM009#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f6c59200414b958ebfb7b86bb0197e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f6c59200414b958ebfb7b86bb0197e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f6c59200414b958ebfb7b86bb0197e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27f6c59200414b958ebfb7b86bb0197e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27f6c59200414b958ebfb7b86bb0197e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Drsz9V3d3KwG7TtR7UPcCSnJ5BQ=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.531833+00 2025-12-09 10:15:20.531838+00 13279 DL31082#批布彩兰 SPMX-20240815308474 \N \N \N 1 \N [{"file_id": "87d22ddc-e513-46bc-85a5-6e1fc3d54929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a3dbd911cb9494a8e204869bfd0931f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a3dbd911cb9494a8e204869bfd0931f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a3dbd911cb9494a8e204869bfd0931f.jpg", "file_size": 18616, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3dbd911cb9494a8e204869bfd0931f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3dbd911cb9494a8e204869bfd0931f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3dbd911cb9494a8e204869bfd0931f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a3dbd911cb9494a8e204869bfd0931f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a3dbd911cb9494a8e204869bfd0931f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTXzZZB_dWolfrvbtVr1yQyF8Ks=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.533794+00 2025-12-09 10:15:20.533799+00 13280 116-4#WJC22 SPMX-20240815308477 \N \N \N 1 \N [{"file_id": "f2fdc918-4341-4f6c-b958-18a36a3bd02c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3731c66c75147a6a4c85eea9b693b56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3731c66c75147a6a4c85eea9b693b56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3731c66c75147a6a4c85eea9b693b56.jpg", "file_size": 9593, "is_delete": false, "file_type": 1, "original_file_name": "116-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3731c66c75147a6a4c85eea9b693b56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3731c66c75147a6a4c85eea9b693b56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3731c66c75147a6a4c85eea9b693b56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3731c66c75147a6a4c85eea9b693b56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3731c66c75147a6a4c85eea9b693b56.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PAFpQhSvRhwR_JqxRybrSqeb97M=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.535782+00 2025-12-09 10:15:20.535788+00 13281 HT3339#深蓝色 SPMX-20240815308478 \N \N \N 1 \N [{"file_id": "0eb6a172-8e8e-4d6b-96d1-f142c469898d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b35cad55c6b4c11a9776b1eb222d9f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b35cad55c6b4c11a9776b1eb222d9f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b35cad55c6b4c11a9776b1eb222d9f3.jpg", "file_size": 60578, "is_delete": false, "file_type": 1, "original_file_name": "HT3339#深蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b35cad55c6b4c11a9776b1eb222d9f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b35cad55c6b4c11a9776b1eb222d9f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b35cad55c6b4c11a9776b1eb222d9f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b35cad55c6b4c11a9776b1eb222d9f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b35cad55c6b4c11a9776b1eb222d9f3.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FwwuBSLTQx32niPWlvUhaP508SY=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.537816+00 2025-12-09 10:15:20.537821+00 13282 8321FWE#红色5XL VS-D3 SPMX-20240815308475 \N \N \N 1 \N [{"file_id": "e50e9dc4-1e86-41f4-8c9f-3b610f2e3db5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "747999f0560e43eb9b9cdb812df9a9e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "747999f0560e43eb9b9cdb812df9a9e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "747999f0560e43eb9b9cdb812df9a9e8.jpg", "file_size": 9047, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#红色5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747999f0560e43eb9b9cdb812df9a9e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747999f0560e43eb9b9cdb812df9a9e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747999f0560e43eb9b9cdb812df9a9e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/747999f0560e43eb9b9cdb812df9a9e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/747999f0560e43eb9b9cdb812df9a9e8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jcnw2_uWBtLz9wyxvkmWGlpvvw=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.540248+00 2025-12-09 10:15:20.540254+00 13283 JTSS437FW#VS-S3 SPMX-20240815308479 \N \N \N 1 \N [{"file_id": "f296421f-46a5-4708-814c-a20525a3561d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc9280e72b454f5f90ba72046b3e04c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc9280e72b454f5f90ba72046b3e04c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc9280e72b454f5f90ba72046b3e04c4.jpg", "file_size": 12344, "is_delete": false, "file_type": 1, "original_file_name": "JTSS437FW#VS-S3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9280e72b454f5f90ba72046b3e04c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9280e72b454f5f90ba72046b3e04c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9280e72b454f5f90ba72046b3e04c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc9280e72b454f5f90ba72046b3e04c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc9280e72b454f5f90ba72046b3e04c4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHndOf1GV2xH4o5KiYYJMLRbODg=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.54265+00 2025-12-09 10:15:20.542656+00 13284 C77#黑底 SPMX-20240815308480 \N \N \N 1 \N [{"file_id": "8e6d60ae-ff49-430e-b387-6b8025fd4c07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83b22e701f1a41d187be39b5f4a69cc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83b22e701f1a41d187be39b5f4a69cc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83b22e701f1a41d187be39b5f4a69cc5.jpg", "file_size": 16468, "is_delete": false, "file_type": 1, "original_file_name": "C77#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b22e701f1a41d187be39b5f4a69cc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b22e701f1a41d187be39b5f4a69cc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83b22e701f1a41d187be39b5f4a69cc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83b22e701f1a41d187be39b5f4a69cc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83b22e701f1a41d187be39b5f4a69cc5.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBp1DelthiBWOL9DqvlXV8yqBLw=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.544799+00 2025-12-09 10:15:20.544804+00 13285 LJH1679#红色 SPMX-20240815308471 \N \N \N 1 \N [{"file_id": "bd980028-d168-4236-98a6-bc27c7748130", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93f0d11b788946bbb32d5fb154189fee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93f0d11b788946bbb32d5fb154189fee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93f0d11b788946bbb32d5fb154189fee.jpg", "file_size": 74160, "is_delete": false, "file_type": 1, "original_file_name": "LJH1679#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f0d11b788946bbb32d5fb154189fee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f0d11b788946bbb32d5fb154189fee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f0d11b788946bbb32d5fb154189fee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93f0d11b788946bbb32d5fb154189fee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93f0d11b788946bbb32d5fb154189fee.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IM8bkgH8dSEZNAgehHFfnUPJyLU=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.546917+00 2025-12-09 10:15:20.546922+00 13286 LZ1315#背心款3号色 SPMX-20240815308472 \N \N \N 1 \N [{"file_id": "569afa44-1c33-4a85-ac28-8992ee19568c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb1737ecd4e4f3c898c593a2f38168b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb1737ecd4e4f3c898c593a2f38168b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb1737ecd4e4f3c898c593a2f38168b.jpg", "file_size": 18768, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb1737ecd4e4f3c898c593a2f38168b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb1737ecd4e4f3c898c593a2f38168b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb1737ecd4e4f3c898c593a2f38168b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb1737ecd4e4f3c898c593a2f38168b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb1737ecd4e4f3c898c593a2f38168b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rn8d_O9xr3Guan-sgK-TkuDB1Xo=", "createTime": "2024-08-15 14:55:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.548948+00 2025-12-09 10:15:20.548953+00 13287 FM010#大红 SPMX-20240815308473 \N \N \N 1 \N [{"file_id": "730a0603-9b55-4c7e-bcb0-62e258091560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg", "file_size": 15782, "is_delete": false, "file_type": 1, "original_file_name": "FM010#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22a2c0fb74db4c0fa3fb7da63c2d58f8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDTx5Ei_v1qy4sp1-XkwUoYbNEI=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.550948+00 2025-12-09 10:15:20.550953+00 13288 23-2120#A9-3XL SPMX-20240815308476 \N \N \N 1 \N [{"file_id": "243e1566-526a-46e9-a427-16cd937ab598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5fcf7bc2adc47fd8e88442ec78a3f99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5fcf7bc2adc47fd8e88442ec78a3f99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5fcf7bc2adc47fd8e88442ec78a3f99.jpg", "file_size": 19082, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fcf7bc2adc47fd8e88442ec78a3f99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fcf7bc2adc47fd8e88442ec78a3f99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5fcf7bc2adc47fd8e88442ec78a3f99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5fcf7bc2adc47fd8e88442ec78a3f99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5fcf7bc2adc47fd8e88442ec78a3f99.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ga9yYatshOcH3UoW9b7lwHvMS34=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.552973+00 2025-12-09 10:15:20.552978+00 13289 FM010#大红净色 SPMX-20240815308483 \N \N \N 1 \N [{"file_id": "186cc1b5-ebd5-4578-b8c2-802aaef22258", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4268b6ac89a4e5c8545ff01a4267539.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4268b6ac89a4e5c8545ff01a4267539.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4268b6ac89a4e5c8545ff01a4267539.jpg", "file_size": 7284, "is_delete": false, "file_type": 1, "original_file_name": "FM010#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4268b6ac89a4e5c8545ff01a4267539.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4268b6ac89a4e5c8545ff01a4267539.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4268b6ac89a4e5c8545ff01a4267539.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4268b6ac89a4e5c8545ff01a4267539.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4268b6ac89a4e5c8545ff01a4267539.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDHYg1-JwFMfQhBk4e4F-0jv8N0=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.554986+00 2025-12-09 10:15:20.554991+00 13290 LZ1315#背心款4号色 SPMX-20240815308482 \N \N \N 1 \N [{"file_id": "622f6759-be44-40c7-9639-39193948994e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cb081cbd05e4853afdbf5e0b29a654a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cb081cbd05e4853afdbf5e0b29a654a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cb081cbd05e4853afdbf5e0b29a654a.jpg", "file_size": 18240, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb081cbd05e4853afdbf5e0b29a654a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb081cbd05e4853afdbf5e0b29a654a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb081cbd05e4853afdbf5e0b29a654a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cb081cbd05e4853afdbf5e0b29a654a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cb081cbd05e4853afdbf5e0b29a654a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aghHa5RqJuBVrd-P0wuWlwLxVm8=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.557036+00 2025-12-09 10:15:20.557042+00 13291 8321FWE#红色XL VS-D3 SPMX-20240815308485 \N \N \N 1 \N [{"file_id": "ed0d36a7-7d11-4742-be79-290c23c3433b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef884c612c794fd0b2164ba3b7967f49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef884c612c794fd0b2164ba3b7967f49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef884c612c794fd0b2164ba3b7967f49.jpg", "file_size": 8760, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#红色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef884c612c794fd0b2164ba3b7967f49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef884c612c794fd0b2164ba3b7967f49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef884c612c794fd0b2164ba3b7967f49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef884c612c794fd0b2164ba3b7967f49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef884c612c794fd0b2164ba3b7967f49.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBzcO5DUFfH9D1Ry6fdSaXPPkqs=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.559019+00 2025-12-09 10:15:20.559024+00 13292 C8 SPMX-20240815308491 \N \N \N 1 \N [{"file_id": "f78410f9-754d-4402-845c-32d70fe14c43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8646f57f3ab2404598f72194a666329d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8646f57f3ab2404598f72194a666329d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8646f57f3ab2404598f72194a666329d.jpg", "file_size": 49796, "is_delete": false, "file_type": 1, "original_file_name": "C8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646f57f3ab2404598f72194a666329d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646f57f3ab2404598f72194a666329d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646f57f3ab2404598f72194a666329d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8646f57f3ab2404598f72194a666329d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8646f57f3ab2404598f72194a666329d.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vt1M42v_N0WK69gGRrkoDAz00Jg=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.561036+00 2025-12-09 10:15:20.561041+00 13293 LJH1687#咖色 SPMX-20240815308484 \N \N \N 1 \N [{"file_id": "bc2c3c2e-16a0-4b63-ae55-b102ad7b74ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbbe01bfb1364778bd790518fbc0b6f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbbe01bfb1364778bd790518fbc0b6f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbbe01bfb1364778bd790518fbc0b6f8.jpg", "file_size": 38055, "is_delete": false, "file_type": 1, "original_file_name": "LJH1687#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbe01bfb1364778bd790518fbc0b6f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbe01bfb1364778bd790518fbc0b6f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbe01bfb1364778bd790518fbc0b6f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbbe01bfb1364778bd790518fbc0b6f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbbe01bfb1364778bd790518fbc0b6f8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wSqGZ-oJaHo3hJYKUT-uZAOB2BY=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.563029+00 2025-12-09 10:15:20.563034+00 13294 116-5#黑白 SPMX-20240815308487 \N \N \N 1 \N [{"file_id": "cbb41cd7-b0dd-4e8a-9a1c-127f95f302ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b91bae702834aa4a824c59c54a45724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b91bae702834aa4a824c59c54a45724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b91bae702834aa4a824c59c54a45724.jpg", "file_size": 7100, "is_delete": false, "file_type": 1, "original_file_name": "116-5#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b91bae702834aa4a824c59c54a45724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b91bae702834aa4a824c59c54a45724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b91bae702834aa4a824c59c54a45724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b91bae702834aa4a824c59c54a45724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b91bae702834aa4a824c59c54a45724.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9eD8LCtaacg5ggLHf1l7Vg41cs=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.565057+00 2025-12-09 10:15:20.565063+00 13295 JTSS438FW#VS-D3 SPMX-20240815308489 \N \N \N 1 \N [{"file_id": "1ba9a6c4-cde3-47a4-bd40-dc37495f64dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4707ac1a49a477ca23397c380f49769.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4707ac1a49a477ca23397c380f49769.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4707ac1a49a477ca23397c380f49769.jpg", "file_size": 17072, "is_delete": false, "file_type": 1, "original_file_name": "JTSS438FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4707ac1a49a477ca23397c380f49769.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4707ac1a49a477ca23397c380f49769.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4707ac1a49a477ca23397c380f49769.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4707ac1a49a477ca23397c380f49769.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4707ac1a49a477ca23397c380f49769.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Lt1uojWWzi5IbIxYk0RGAdTlEE=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.567068+00 2025-12-09 10:15:20.567074+00 13296 HT3339#玫红色 SPMX-20240815308490 \N \N \N 1 \N [{"file_id": "50e1838b-ac4e-442c-be69-72fb17e7897e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a65591bd6dda4e368ae8500509beeb09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a65591bd6dda4e368ae8500509beeb09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a65591bd6dda4e368ae8500509beeb09.jpg", "file_size": 64443, "is_delete": false, "file_type": 1, "original_file_name": "HT3339#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65591bd6dda4e368ae8500509beeb09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65591bd6dda4e368ae8500509beeb09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65591bd6dda4e368ae8500509beeb09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a65591bd6dda4e368ae8500509beeb09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a65591bd6dda4e368ae8500509beeb09.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfGWV_FHy6dkjZQXPWzNbGAOkd4=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.569068+00 2025-12-09 10:15:20.569074+00 13297 DL31082#批布玫红 SPMX-20240815308486 \N \N \N 1 \N [{"file_id": "ba1c637c-6918-4fb0-b4f7-0a31d12391a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00dc871af3e04fdab61ee04d7301ab60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00dc871af3e04fdab61ee04d7301ab60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00dc871af3e04fdab61ee04d7301ab60.jpg", "file_size": 17939, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc871af3e04fdab61ee04d7301ab60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc871af3e04fdab61ee04d7301ab60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc871af3e04fdab61ee04d7301ab60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00dc871af3e04fdab61ee04d7301ab60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00dc871af3e04fdab61ee04d7301ab60.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7jA8gaj4l9dwq35Evyuo2-XDTw=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.571138+00 2025-12-09 10:15:20.571143+00 13298 0005-22#绿色 SPMX-20240815308492 \N \N \N 1 \N [{"file_id": "eed47efe-2fcb-4f2f-a786-58a9af3d2d8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "584e2b0d60c94c12805f1df929c395f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "584e2b0d60c94c12805f1df929c395f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "584e2b0d60c94c12805f1df929c395f2.jpg", "file_size": 19112, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584e2b0d60c94c12805f1df929c395f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584e2b0d60c94c12805f1df929c395f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584e2b0d60c94c12805f1df929c395f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/584e2b0d60c94c12805f1df929c395f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/584e2b0d60c94c12805f1df929c395f2.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNU_fjSk4FZXW-qbyzuxk7WVOzY=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.573203+00 2025-12-09 10:15:20.573208+00 13299 LZ1315#背心款5号色 SPMX-20240815308493 \N \N \N 1 \N [{"file_id": "755c09ff-879f-4a33-a56c-3c669d69503e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0a19645f01542edad86602d30865264.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0a19645f01542edad86602d30865264.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0a19645f01542edad86602d30865264.jpg", "file_size": 18975, "is_delete": false, "file_type": 1, "original_file_name": "LZ1315#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a19645f01542edad86602d30865264.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a19645f01542edad86602d30865264.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a19645f01542edad86602d30865264.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0a19645f01542edad86602d30865264.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0a19645f01542edad86602d30865264.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPgEvD76eh8cig92_X5H1MRay7s=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.575271+00 2025-12-09 10:15:20.575276+00 13300 0005-22#橘色后服袖子 SPMX-20240815308481 \N \N \N 1 \N [{"file_id": "ab670cfe-44af-43e3-937f-e370353e6b38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70101357379f43459d7098ffc70d6798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70101357379f43459d7098ffc70d6798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70101357379f43459d7098ffc70d6798.jpg", "file_size": 10348, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#橘色后服袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70101357379f43459d7098ffc70d6798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70101357379f43459d7098ffc70d6798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70101357379f43459d7098ffc70d6798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70101357379f43459d7098ffc70d6798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70101357379f43459d7098ffc70d6798.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASUHqux8VblON_5-6dXcnOoY9RE=", "createTime": "2024-08-15 14:55:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.577772+00 2025-12-09 10:15:20.577777+00 13301 23-2120#A9-4XL SPMX-20240815308488 \N \N \N 1 \N [{"file_id": "2090cd8a-9fea-4c66-a747-897c32ef120f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f285b1e4cd94810a4a68eac6b06f395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f285b1e4cd94810a4a68eac6b06f395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f285b1e4cd94810a4a68eac6b06f395.jpg", "file_size": 18113, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f285b1e4cd94810a4a68eac6b06f395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f285b1e4cd94810a4a68eac6b06f395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f285b1e4cd94810a4a68eac6b06f395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f285b1e4cd94810a4a68eac6b06f395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f285b1e4cd94810a4a68eac6b06f395.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mi6BePHaA3WlOQJYaK3RqHcL8rQ=", "createTime": "2024-08-15 14:55:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.579985+00 2025-12-09 10:15:20.57999+00 13302 8321FWE#绿色2XL VS-D3 SPMX-20240815308495 \N \N \N 1 \N [{"file_id": "06ede03f-066b-4f1d-91f8-3d695085ae0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6e70818bee14e9ca73bfbda43974451.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6e70818bee14e9ca73bfbda43974451.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6e70818bee14e9ca73bfbda43974451.jpg", "file_size": 10084, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#绿色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e70818bee14e9ca73bfbda43974451.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e70818bee14e9ca73bfbda43974451.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6e70818bee14e9ca73bfbda43974451.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6e70818bee14e9ca73bfbda43974451.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6e70818bee14e9ca73bfbda43974451.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPFWZ-U-FRMor6u1FdQS2LXveyY=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.581957+00 2025-12-09 10:15:20.581961+00 13303 FM010#姜黄 SPMX-20240815308494 \N \N \N 1 \N [{"file_id": "3f4fbb88-456b-4c71-a094-b501ff743c98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba367263d0b4708bf8b6e361abab03c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba367263d0b4708bf8b6e361abab03c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba367263d0b4708bf8b6e361abab03c.jpg", "file_size": 15703, "is_delete": false, "file_type": 1, "original_file_name": "FM010#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba367263d0b4708bf8b6e361abab03c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba367263d0b4708bf8b6e361abab03c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba367263d0b4708bf8b6e361abab03c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba367263d0b4708bf8b6e361abab03c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba367263d0b4708bf8b6e361abab03c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MoP_0Ts4gVgx4bkocb2ec4aNgVI=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.583886+00 2025-12-09 10:15:20.58389+00 13304 LJH1687#红色 SPMX-20240815308496 \N \N \N 1 \N [{"file_id": "61076aa8-172f-4055-9481-bffb5e0765be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b35a65488e9d414bbaf563ba443cc01f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b35a65488e9d414bbaf563ba443cc01f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b35a65488e9d414bbaf563ba443cc01f.jpg", "file_size": 28871, "is_delete": false, "file_type": 1, "original_file_name": "LJH1687#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35a65488e9d414bbaf563ba443cc01f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35a65488e9d414bbaf563ba443cc01f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b35a65488e9d414bbaf563ba443cc01f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b35a65488e9d414bbaf563ba443cc01f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b35a65488e9d414bbaf563ba443cc01f.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5XjPYdL1m6DjwaqWTWIh3XRfjg=", "createTime": "2024-08-15 14:55:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.585848+00 2025-12-09 10:15:20.585853+00 13305 0005-22#绿色后服袖子 SPMX-20240815308500 \N \N \N 1 \N [{"file_id": "b4cceb1f-103d-4675-8b0b-6f3445e82714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80a4526f115c4eeaaa77f5efec1484db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80a4526f115c4eeaaa77f5efec1484db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80a4526f115c4eeaaa77f5efec1484db.jpg", "file_size": 9680, "is_delete": false, "file_type": 1, "original_file_name": "0005-22#绿色后服袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a4526f115c4eeaaa77f5efec1484db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a4526f115c4eeaaa77f5efec1484db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a4526f115c4eeaaa77f5efec1484db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80a4526f115c4eeaaa77f5efec1484db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80a4526f115c4eeaaa77f5efec1484db.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWBatOw3JRX4KmCZ2isloEHKtB8=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.587935+00 2025-12-09 10:15:20.587939+00 13306 116-6#WJC22 SPMX-20240815308498 \N \N \N 1 \N [{"file_id": "11f67f86-5404-4d20-9db7-b26f68bd453f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "202a9c054df44dadb04e00c3711a76c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "202a9c054df44dadb04e00c3711a76c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "202a9c054df44dadb04e00c3711a76c0.jpg", "file_size": 8907, "is_delete": false, "file_type": 1, "original_file_name": "116-6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202a9c054df44dadb04e00c3711a76c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202a9c054df44dadb04e00c3711a76c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202a9c054df44dadb04e00c3711a76c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/202a9c054df44dadb04e00c3711a76c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/202a9c054df44dadb04e00c3711a76c0.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AE-2sCnDOMVWSDLfbvP908azhh4=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.589849+00 2025-12-09 10:15:20.589853+00 13307 JTSS439FW#VS-D3 SPMX-20240815308499 \N \N \N 1 \N [{"file_id": "f673a40b-25fe-4b43-9237-67f11c0b9bc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a0c4876f2114f17a544e3bf0e78cf2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a0c4876f2114f17a544e3bf0e78cf2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a0c4876f2114f17a544e3bf0e78cf2b.jpg", "file_size": 8549, "is_delete": false, "file_type": 1, "original_file_name": "JTSS439FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c4876f2114f17a544e3bf0e78cf2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c4876f2114f17a544e3bf0e78cf2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c4876f2114f17a544e3bf0e78cf2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a0c4876f2114f17a544e3bf0e78cf2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a0c4876f2114f17a544e3bf0e78cf2b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9FTVk_KZzh20kgJJ67a59NKWlY=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.591956+00 2025-12-09 10:15:20.59196+00 13308 FM010#姜黄净色 SPMX-20240815308505 \N \N \N 1 \N [{"file_id": "0a733f78-dbdd-4bb8-b74b-5dd8a3e19634", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84da43698b44056a5765993367b8a7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84da43698b44056a5765993367b8a7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84da43698b44056a5765993367b8a7d.jpg", "file_size": 7400, "is_delete": false, "file_type": 1, "original_file_name": "FM010#姜黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84da43698b44056a5765993367b8a7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84da43698b44056a5765993367b8a7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84da43698b44056a5765993367b8a7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84da43698b44056a5765993367b8a7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84da43698b44056a5765993367b8a7d.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSkcAG5driZzmtuUrZorAnjbsI8=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.593844+00 2025-12-09 10:15:20.593848+00 13309 DL31082#批布黄色 SPMX-20240815308507 \N \N \N 1 \N [{"file_id": "3121c6d9-bcc3-4b04-a979-2f6a8188a453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "621dfd59f79441d59142cec890e50791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "621dfd59f79441d59142cec890e50791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "621dfd59f79441d59142cec890e50791.jpg", "file_size": 18145, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621dfd59f79441d59142cec890e50791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621dfd59f79441d59142cec890e50791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621dfd59f79441d59142cec890e50791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/621dfd59f79441d59142cec890e50791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/621dfd59f79441d59142cec890e50791.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JsN13xBVx7OfB8Zexrzy865P0Do=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.59602+00 2025-12-09 10:15:20.596024+00 13310 0005-23#图片色 SPMX-20240815308511 \N \N \N 1 \N [{"file_id": "996b7884-28dc-4c2f-aff2-16642c6a9f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "989311afe4f04da5a604ea0a667ade8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "989311afe4f04da5a604ea0a667ade8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "989311afe4f04da5a604ea0a667ade8d.jpg", "file_size": 14870, "is_delete": false, "file_type": 1, "original_file_name": "0005-23#图片色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989311afe4f04da5a604ea0a667ade8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989311afe4f04da5a604ea0a667ade8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989311afe4f04da5a604ea0a667ade8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/989311afe4f04da5a604ea0a667ade8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/989311afe4f04da5a604ea0a667ade8d.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rypsfb84p2yq1vunPBdjDJFvagQ=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.597959+00 2025-12-09 10:15:20.597963+00 13311 LJH1687#黑色 SPMX-20240815308508 \N \N \N 1 \N [{"file_id": "9dbd65df-4cb0-459c-840a-418c3849f898", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82653abc19024e4abc98902c9c100622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82653abc19024e4abc98902c9c100622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82653abc19024e4abc98902c9c100622.jpg", "file_size": 29561, "is_delete": false, "file_type": 1, "original_file_name": "LJH1687#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82653abc19024e4abc98902c9c100622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82653abc19024e4abc98902c9c100622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82653abc19024e4abc98902c9c100622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82653abc19024e4abc98902c9c100622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82653abc19024e4abc98902c9c100622.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEQJsLIiAMyKcJMvGaw520MBDDE=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.600067+00 2025-12-09 10:15:20.600071+00 13312 C8020#L SPMX-20240815308501 \N \N \N 1 \N [{"file_id": "4f57ccd6-82cd-452b-992d-84fc40983aed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b96ad5b0bb246208357ac06d5a8b30c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b96ad5b0bb246208357ac06d5a8b30c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b96ad5b0bb246208357ac06d5a8b30c.jpg", "file_size": 20512, "is_delete": false, "file_type": 1, "original_file_name": "C8020#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b96ad5b0bb246208357ac06d5a8b30c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b96ad5b0bb246208357ac06d5a8b30c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b96ad5b0bb246208357ac06d5a8b30c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b96ad5b0bb246208357ac06d5a8b30c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b96ad5b0bb246208357ac06d5a8b30c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ft8JzqWgMGrl8sf79801uySPn3o=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.601953+00 2025-12-09 10:15:20.601957+00 13313 C8020#M SPMX-20240815308512 \N \N \N 1 \N [{"file_id": "3b3aec3a-233e-4378-9207-f18536f75da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6de2e36af6974bfe8ff9399713af6041.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6de2e36af6974bfe8ff9399713af6041.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6de2e36af6974bfe8ff9399713af6041.jpg", "file_size": 20965, "is_delete": false, "file_type": 1, "original_file_name": "C8020#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de2e36af6974bfe8ff9399713af6041.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de2e36af6974bfe8ff9399713af6041.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de2e36af6974bfe8ff9399713af6041.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6de2e36af6974bfe8ff9399713af6041.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6de2e36af6974bfe8ff9399713af6041.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rT9zXRQ_2_kFAumlSCejYTucXAk=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.604067+00 2025-12-09 10:15:20.604071+00 13314 LZ1316#捆条布 SPMX-20240815308504 \N \N \N 1 \N [{"file_id": "699abb3c-5409-40c6-b42a-a1a19608b5eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f9f31184cf44fd7b4b508211a25b26c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f9f31184cf44fd7b4b508211a25b26c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f9f31184cf44fd7b4b508211a25b26c.jpg", "file_size": 10659, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f31184cf44fd7b4b508211a25b26c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f31184cf44fd7b4b508211a25b26c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9f31184cf44fd7b4b508211a25b26c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f9f31184cf44fd7b4b508211a25b26c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f9f31184cf44fd7b4b508211a25b26c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JILWQEiGqyFchlZT44QNUgg1FqA=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.605958+00 2025-12-09 10:15:20.605963+00 13315 23-2120#A9-领子3XL SPMX-20240815308503 \N \N \N 1 \N [{"file_id": "90a67684-d59f-4e4c-9872-3ccad51185b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ff00cf75cff4e198d4aaea6b52e3b3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ff00cf75cff4e198d4aaea6b52e3b3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ff00cf75cff4e198d4aaea6b52e3b3e.jpg", "file_size": 11404, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff00cf75cff4e198d4aaea6b52e3b3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff00cf75cff4e198d4aaea6b52e3b3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff00cf75cff4e198d4aaea6b52e3b3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ff00cf75cff4e198d4aaea6b52e3b3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ff00cf75cff4e198d4aaea6b52e3b3e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_2BgKLBWF7rVNKqRJPcOlzOeWY=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.608104+00 2025-12-09 10:15:20.608109+00 13316 8321FWE#绿色3XL VS-D3 SPMX-20240815308506 \N \N \N 1 \N [{"file_id": "a3854f8e-8fc0-4f9f-948c-b4407b2f56a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77759d8fc91b453c931c19de69ebed8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77759d8fc91b453c931c19de69ebed8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77759d8fc91b453c931c19de69ebed8c.jpg", "file_size": 9907, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#绿色3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77759d8fc91b453c931c19de69ebed8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77759d8fc91b453c931c19de69ebed8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77759d8fc91b453c931c19de69ebed8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77759d8fc91b453c931c19de69ebed8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77759d8fc91b453c931c19de69ebed8c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPLLavCzX3yK9bFXJ_ECTO4xCLk=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.609985+00 2025-12-09 10:15:20.609989+00 13317 116-6#绿色净色 SPMX-20240815308509 \N \N \N 1 \N [{"file_id": "928e5f98-5098-4ec8-b286-09e092c19095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cddca96a5de34a4daa033c1d07a0b04b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cddca96a5de34a4daa033c1d07a0b04b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cddca96a5de34a4daa033c1d07a0b04b.jpg", "file_size": 7203, "is_delete": false, "file_type": 1, "original_file_name": "116-6#绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddca96a5de34a4daa033c1d07a0b04b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddca96a5de34a4daa033c1d07a0b04b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cddca96a5de34a4daa033c1d07a0b04b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cddca96a5de34a4daa033c1d07a0b04b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cddca96a5de34a4daa033c1d07a0b04b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p4wJOLGGldf_yYOxWCtmt_T6sLg=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.61213+00 2025-12-09 10:15:20.612135+00 13318 JTSS440FW#VS-D3 SPMX-20240815308510 \N \N \N 1 \N [{"file_id": "547a1e21-acfe-41f9-a376-bfe951572ce2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49dc23e1fb9a4348a378e8bfc4b251f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49dc23e1fb9a4348a378e8bfc4b251f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49dc23e1fb9a4348a378e8bfc4b251f7.jpg", "file_size": 19439, "is_delete": false, "file_type": 1, "original_file_name": "JTSS440FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dc23e1fb9a4348a378e8bfc4b251f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dc23e1fb9a4348a378e8bfc4b251f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49dc23e1fb9a4348a378e8bfc4b251f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49dc23e1fb9a4348a378e8bfc4b251f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49dc23e1fb9a4348a378e8bfc4b251f7.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPYdsHRgPESkPE0YlW-75BTrGWM=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.614+00 2025-12-09 10:15:20.614005+00 13319 HT3339#绿色 SPMX-20240815308502 \N \N \N 1 \N [{"file_id": "499746e6-7a1d-4997-99f9-3e8ca0ea960d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dfea50de16a44edaa57c84c17c4f29b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dfea50de16a44edaa57c84c17c4f29b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dfea50de16a44edaa57c84c17c4f29b.jpg", "file_size": 67154, "is_delete": false, "file_type": 1, "original_file_name": "HT3339#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfea50de16a44edaa57c84c17c4f29b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfea50de16a44edaa57c84c17c4f29b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dfea50de16a44edaa57c84c17c4f29b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dfea50de16a44edaa57c84c17c4f29b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dfea50de16a44edaa57c84c17c4f29b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjrkUR2B9QnA9e-wRQ-wsrFlwMo=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.616144+00 2025-12-09 10:15:20.616148+00 13320 DL31082#批布蓝绿 SPMX-20240815308497 \N \N \N 1 \N [{"file_id": "e0dbddac-88c7-49bc-920f-c4990e353804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48d8f0d7be4c48348428a9d82c2ca0ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48d8f0d7be4c48348428a9d82c2ca0ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48d8f0d7be4c48348428a9d82c2ca0ff.jpg", "file_size": 18695, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d8f0d7be4c48348428a9d82c2ca0ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d8f0d7be4c48348428a9d82c2ca0ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48d8f0d7be4c48348428a9d82c2ca0ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48d8f0d7be4c48348428a9d82c2ca0ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48d8f0d7be4c48348428a9d82c2ca0ff.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifH8jxw4IHT6791n_shz4Kh7AVE=", "createTime": "2024-08-15 14:55:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.618015+00 2025-12-09 10:15:20.618019+00 13321 DL31082#批布黑色 SPMX-20240815308518 \N \N \N 1 \N [{"file_id": "89f27b97-26cd-4368-a459-30c2d600e74b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79f84f5698b04f15a0a2d35b8b232faa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79f84f5698b04f15a0a2d35b8b232faa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79f84f5698b04f15a0a2d35b8b232faa.jpg", "file_size": 19715, "is_delete": false, "file_type": 1, "original_file_name": "DL31082#批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79f84f5698b04f15a0a2d35b8b232faa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79f84f5698b04f15a0a2d35b8b232faa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79f84f5698b04f15a0a2d35b8b232faa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79f84f5698b04f15a0a2d35b8b232faa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79f84f5698b04f15a0a2d35b8b232faa.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLelacFHmosa4ytMh_mev47yJD8=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.620195+00 2025-12-09 10:15:20.6202+00 13322 FM010#酒红 SPMX-20240815308525 \N \N \N 1 \N [{"file_id": "07d8492b-df8f-4c7e-a298-dd6a1d293101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4482ab214905441da36459d248b50ed3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4482ab214905441da36459d248b50ed3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4482ab214905441da36459d248b50ed3.jpg", "file_size": 15562, "is_delete": false, "file_type": 1, "original_file_name": "FM010#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4482ab214905441da36459d248b50ed3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4482ab214905441da36459d248b50ed3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4482ab214905441da36459d248b50ed3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4482ab214905441da36459d248b50ed3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4482ab214905441da36459d248b50ed3.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wSBoGaRsVetpliItCt5wS78RlHg=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.62238+00 2025-12-09 10:15:20.622384+00 13323 116-7#WJC22 SPMX-20240815308519 \N \N \N 1 \N [{"file_id": "75a0ad8e-a6b5-4e7c-8c40-d072f244af38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e10c737f46184a9295824604dc026a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e10c737f46184a9295824604dc026a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e10c737f46184a9295824604dc026a59.jpg", "file_size": 6732, "is_delete": false, "file_type": 1, "original_file_name": "116-7#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10c737f46184a9295824604dc026a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10c737f46184a9295824604dc026a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10c737f46184a9295824604dc026a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e10c737f46184a9295824604dc026a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e10c737f46184a9295824604dc026a59.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKB_quBshE5570p7Ei9Yqx1d7h4=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.624318+00 2025-12-09 10:15:20.624322+00 13324 LZ1316#背心款2号色 SPMX-20240815308524 \N \N \N 1 \N [{"file_id": "5f8c8f7b-12d1-4880-92e0-6bef52561a8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11d45068bbc8449d99415af80141b3eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11d45068bbc8449d99415af80141b3eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11d45068bbc8449d99415af80141b3eb.jpg", "file_size": 16860, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d45068bbc8449d99415af80141b3eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d45068bbc8449d99415af80141b3eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d45068bbc8449d99415af80141b3eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11d45068bbc8449d99415af80141b3eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11d45068bbc8449d99415af80141b3eb.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFrZ84jFs-FvtyL_L2s3_Z69gbg=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.626238+00 2025-12-09 10:15:20.626242+00 13325 JTSS441FW#VS-D3 SPMX-20240815308520 \N \N \N 1 \N [{"file_id": "80d7e21c-52a4-430c-beba-30fabb2ba54a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1131fda84174f788c795519c8da10d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1131fda84174f788c795519c8da10d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1131fda84174f788c795519c8da10d8.jpg", "file_size": 10174, "is_delete": false, "file_type": 1, "original_file_name": "JTSS441FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1131fda84174f788c795519c8da10d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1131fda84174f788c795519c8da10d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1131fda84174f788c795519c8da10d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1131fda84174f788c795519c8da10d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1131fda84174f788c795519c8da10d8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22AiC9CzpPcy8q5M4EsLJMsUKIY=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.6281+00 2025-12-09 10:15:20.628103+00 13326 23-2121#A1-3XL SPMX-20240815308526 \N \N \N 1 \N [{"file_id": "3b907ef9-0b28-4ff4-bf80-5dbf4dea3ad9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc55c4187c2f408fb602396789584eea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc55c4187c2f408fb602396789584eea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc55c4187c2f408fb602396789584eea.jpg", "file_size": 14300, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc55c4187c2f408fb602396789584eea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc55c4187c2f408fb602396789584eea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc55c4187c2f408fb602396789584eea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc55c4187c2f408fb602396789584eea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc55c4187c2f408fb602396789584eea.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWD1JbHayzwMqdbB8kXU6mZM5qY=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.630213+00 2025-12-09 10:15:20.630217+00 13327 8321FWE#绿色5XL VS-D3 SPMX-20240815308527 \N \N \N 1 \N [{"file_id": "e79ef866-f4a5-4b27-932a-a034c693ad98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ec11af33df4f569699567282fbe456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ec11af33df4f569699567282fbe456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ec11af33df4f569699567282fbe456.jpg", "file_size": 9935, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#绿色5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec11af33df4f569699567282fbe456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec11af33df4f569699567282fbe456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ec11af33df4f569699567282fbe456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ec11af33df4f569699567282fbe456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ec11af33df4f569699567282fbe456.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AumoZTErdfBM9EuXtCTZL8hFw-4=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.632303+00 2025-12-09 10:15:20.632307+00 13328 HT3339#蓝色 SPMX-20240815308515 \N \N \N 1 \N [{"file_id": "437652ec-c188-4d3c-978c-9b524aa2c556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45192787cfee4b278894963d977fa67a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45192787cfee4b278894963d977fa67a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45192787cfee4b278894963d977fa67a.jpg", "file_size": 64852, "is_delete": false, "file_type": 1, "original_file_name": "HT3339#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45192787cfee4b278894963d977fa67a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45192787cfee4b278894963d977fa67a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45192787cfee4b278894963d977fa67a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45192787cfee4b278894963d977fa67a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45192787cfee4b278894963d977fa67a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyO0YwOZN3_lKeUA1K1D5A4chKY=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.634214+00 2025-12-09 10:15:20.634219+00 13329 LJH1705#玫红 SPMX-20240815308523 \N \N \N 1 \N [{"file_id": "6d4ea786-f1d0-4279-88f8-5a8af5f41688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08db042ebd3f48079a223a66dd1a421c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08db042ebd3f48079a223a66dd1a421c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08db042ebd3f48079a223a66dd1a421c.jpg", "file_size": 66826, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db042ebd3f48079a223a66dd1a421c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db042ebd3f48079a223a66dd1a421c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db042ebd3f48079a223a66dd1a421c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08db042ebd3f48079a223a66dd1a421c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08db042ebd3f48079a223a66dd1a421c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1avFM6yMqmU2R78bPjTRQMcrMs=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.63632+00 2025-12-09 10:15:20.636324+00 13330 LZ1316#背心款1号色 SPMX-20240815308513 \N \N \N 1 \N [{"file_id": "cc3f0a05-7871-4f33-a8ec-a11171dffcd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cad7af2ee1c4cdea0505a4aaaff687a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cad7af2ee1c4cdea0505a4aaaff687a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cad7af2ee1c4cdea0505a4aaaff687a.jpg", "file_size": 16821, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cad7af2ee1c4cdea0505a4aaaff687a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cad7af2ee1c4cdea0505a4aaaff687a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cad7af2ee1c4cdea0505a4aaaff687a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cad7af2ee1c4cdea0505a4aaaff687a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cad7af2ee1c4cdea0505a4aaaff687a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ef-oGkxi4EZHSZFx5-rS8hOAexk=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.638207+00 2025-12-09 10:15:20.638212+00 13331 0005-23#大货颜色 SPMX-20240815308521 \N \N \N 1 \N [{"file_id": "e4517996-fc6b-4b66-923b-5fd4de018216", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18af5a4878864e769b8462c42b5fb0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18af5a4878864e769b8462c42b5fb0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18af5a4878864e769b8462c42b5fb0a4.jpg", "file_size": 12889, "is_delete": false, "file_type": 1, "original_file_name": "0005-23#大货颜色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18af5a4878864e769b8462c42b5fb0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18af5a4878864e769b8462c42b5fb0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18af5a4878864e769b8462c42b5fb0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18af5a4878864e769b8462c42b5fb0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18af5a4878864e769b8462c42b5fb0a4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDq6Whe4rIigdCrFekwS2NLmcFY=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.64033+00 2025-12-09 10:15:20.640334+00 13332 8321FWE#绿色4XL VS-D3 SPMX-20240815308517 \N \N \N 1 \N [{"file_id": "dee7f9c4-1ffd-433e-8e64-c1bf2eb388a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0e29946c7984fd6b0720e05dfffe383.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0e29946c7984fd6b0720e05dfffe383.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0e29946c7984fd6b0720e05dfffe383.jpg", "file_size": 10332, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#绿色4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e29946c7984fd6b0720e05dfffe383.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e29946c7984fd6b0720e05dfffe383.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0e29946c7984fd6b0720e05dfffe383.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0e29946c7984fd6b0720e05dfffe383.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0e29946c7984fd6b0720e05dfffe383.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6YX_hPt4KDdmHyO0vwdvc7hl98=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.642239+00 2025-12-09 10:15:20.642244+00 13333 23-2120#A9-领子4XL SPMX-20240815308516 \N \N \N 1 \N [{"file_id": "599d6488-ba25-4681-9363-7f4d8cc5986f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c4e36e9a9734fba8f1004804068b310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c4e36e9a9734fba8f1004804068b310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c4e36e9a9734fba8f1004804068b310.jpg", "file_size": 11303, "is_delete": false, "file_type": 1, "original_file_name": "23-2120#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4e36e9a9734fba8f1004804068b310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4e36e9a9734fba8f1004804068b310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4e36e9a9734fba8f1004804068b310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c4e36e9a9734fba8f1004804068b310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c4e36e9a9734fba8f1004804068b310.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WoeCaUQZwDVOHzWMVTLbZWi7UBQ=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.644494+00 2025-12-09 10:15:20.644499+00 13334 C8020#S SPMX-20240815308522 \N \N \N 1 \N [{"file_id": "d50bd31f-1659-4f2b-a822-8e09a9478df8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5a7d0029cbe4008af69706d85ff0f31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5a7d0029cbe4008af69706d85ff0f31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5a7d0029cbe4008af69706d85ff0f31.jpg", "file_size": 21246, "is_delete": false, "file_type": 1, "original_file_name": "C8020#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a7d0029cbe4008af69706d85ff0f31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a7d0029cbe4008af69706d85ff0f31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a7d0029cbe4008af69706d85ff0f31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5a7d0029cbe4008af69706d85ff0f31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5a7d0029cbe4008af69706d85ff0f31.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVXsNSsk0FdmogJ5pQUNwfgdWZM=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.646643+00 2025-12-09 10:15:20.646648+00 13335 FM010#粉色 SPMX-20240815308514 \N \N \N 1 \N [{"file_id": "c8756779-d691-4ea1-b70c-81b5f6d76e9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f2a6c4eea52468dad474e90246ebc40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f2a6c4eea52468dad474e90246ebc40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f2a6c4eea52468dad474e90246ebc40.jpg", "file_size": 15019, "is_delete": false, "file_type": 1, "original_file_name": "FM010#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2a6c4eea52468dad474e90246ebc40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2a6c4eea52468dad474e90246ebc40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2a6c4eea52468dad474e90246ebc40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f2a6c4eea52468dad474e90246ebc40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f2a6c4eea52468dad474e90246ebc40.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bcmov0kydtAB3_D140OEk6rLDKQ=", "createTime": "2024-08-15 14:55:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.648669+00 2025-12-09 10:15:20.648676+00 13336 DL31083#前幅亮黄 SPMX-20240815308528 \N \N \N 1 \N [{"file_id": "a54fad5f-e23d-49b7-8708-fdb4777ef529", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78eef3977d2c4212b1b68255aa3cb35a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78eef3977d2c4212b1b68255aa3cb35a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78eef3977d2c4212b1b68255aa3cb35a.jpg", "file_size": 12748, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78eef3977d2c4212b1b68255aa3cb35a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78eef3977d2c4212b1b68255aa3cb35a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78eef3977d2c4212b1b68255aa3cb35a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78eef3977d2c4212b1b68255aa3cb35a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78eef3977d2c4212b1b68255aa3cb35a.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2QfGwdgvdQHpNDGcO3-X-x7C9Q=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.650618+00 2025-12-09 10:15:20.650622+00 13337 116-7#蓝色净色 SPMX-20240815308529 \N \N \N 1 \N [{"file_id": "23a57736-629a-4b29-b2a6-d9f0d5fa6779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c98e71a92dc54b9fb7006521f905b767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c98e71a92dc54b9fb7006521f905b767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c98e71a92dc54b9fb7006521f905b767.jpg", "file_size": 7262, "is_delete": false, "file_type": 1, "original_file_name": "116-7#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e71a92dc54b9fb7006521f905b767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e71a92dc54b9fb7006521f905b767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98e71a92dc54b9fb7006521f905b767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c98e71a92dc54b9fb7006521f905b767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c98e71a92dc54b9fb7006521f905b767.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFk8iR88C5Pw164lQlIDp6bIBHU=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.652533+00 2025-12-09 10:15:20.652538+00 13338 JTSS442FW#VS-D3 SPMX-20240815308531 \N \N \N 1 \N [{"file_id": "9d7faabe-543c-42d6-a673-e497b60c7bbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4302af2bfc6f4c9e9421161849c00317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4302af2bfc6f4c9e9421161849c00317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4302af2bfc6f4c9e9421161849c00317.jpg", "file_size": 13292, "is_delete": false, "file_type": 1, "original_file_name": "JTSS442FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4302af2bfc6f4c9e9421161849c00317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4302af2bfc6f4c9e9421161849c00317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4302af2bfc6f4c9e9421161849c00317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4302af2bfc6f4c9e9421161849c00317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4302af2bfc6f4c9e9421161849c00317.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2CMO1h0jbvuzi_FoACccT9XQRk=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.654427+00 2025-12-09 10:15:20.654431+00 13339 0005-23#粉净色 SPMX-20240815308534 \N \N \N 1 \N [{"file_id": "906704c0-7d28-405e-bc09-c4c9c58a5179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f202d4ab353b4260a33c67b52a48e1c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f202d4ab353b4260a33c67b52a48e1c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f202d4ab353b4260a33c67b52a48e1c4.jpg", "file_size": 7209, "is_delete": false, "file_type": 1, "original_file_name": "0005-23#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f202d4ab353b4260a33c67b52a48e1c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f202d4ab353b4260a33c67b52a48e1c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f202d4ab353b4260a33c67b52a48e1c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f202d4ab353b4260a33c67b52a48e1c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f202d4ab353b4260a33c67b52a48e1c4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tl1xCYBfuegH35rsRbgMP-e4kp4=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.65633+00 2025-12-09 10:15:20.656334+00 13340 HT3340#兰色 SPMX-20240815308530 \N \N \N 1 \N [{"file_id": "e513daa2-0cdf-4dbf-9851-16f459ab8bcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "addf5bd081e141adbdf77bce6a3d2ab8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "addf5bd081e141adbdf77bce6a3d2ab8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "addf5bd081e141adbdf77bce6a3d2ab8.jpg", "file_size": 67602, "is_delete": false, "file_type": 1, "original_file_name": "HT3340#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addf5bd081e141adbdf77bce6a3d2ab8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addf5bd081e141adbdf77bce6a3d2ab8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addf5bd081e141adbdf77bce6a3d2ab8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/addf5bd081e141adbdf77bce6a3d2ab8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/addf5bd081e141adbdf77bce6a3d2ab8.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0zTmYfVgedy0B6TM9rLjrHyYL0=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.658446+00 2025-12-09 10:15:20.65845+00 13341 C8020#XL SPMX-20240815308532 \N \N \N 1 \N [{"file_id": "bf6cff39-9ced-490e-9ed3-fc3468526981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e7b968437424898966f4c96a4f3be44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e7b968437424898966f4c96a4f3be44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e7b968437424898966f4c96a4f3be44.jpg", "file_size": 20987, "is_delete": false, "file_type": 1, "original_file_name": "C8020#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7b968437424898966f4c96a4f3be44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7b968437424898966f4c96a4f3be44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7b968437424898966f4c96a4f3be44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e7b968437424898966f4c96a4f3be44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e7b968437424898966f4c96a4f3be44.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnhwaogsYpbduwZ0tOeKH9VgLmU=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.66034+00 2025-12-09 10:15:20.660345+00 13342 FM010#酒红净色 SPMX-20240815308533 \N \N \N 1 \N [{"file_id": "a03ebb2f-48c0-47b4-a513-2cba018c94c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c26fbe0c5794433accce2cc6d33d5d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c26fbe0c5794433accce2cc6d33d5d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c26fbe0c5794433accce2cc6d33d5d4.jpg", "file_size": 7372, "is_delete": false, "file_type": 1, "original_file_name": "FM010#酒红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c26fbe0c5794433accce2cc6d33d5d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c26fbe0c5794433accce2cc6d33d5d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c26fbe0c5794433accce2cc6d33d5d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c26fbe0c5794433accce2cc6d33d5d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c26fbe0c5794433accce2cc6d33d5d4.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5UMmt1dbiBxIMzfgDkbiMg110o=", "createTime": "2024-08-15 14:55:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.662478+00 2025-12-09 10:15:20.662482+00 13343 23-2121#A1-4XL SPMX-20240815308536 \N \N \N 1 \N [{"file_id": "7a8c956d-bcac-490a-95df-4edb39cb037e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "725f42b19f464f7198e9892fef281ca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "725f42b19f464f7198e9892fef281ca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "725f42b19f464f7198e9892fef281ca9.jpg", "file_size": 12708, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/725f42b19f464f7198e9892fef281ca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/725f42b19f464f7198e9892fef281ca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/725f42b19f464f7198e9892fef281ca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/725f42b19f464f7198e9892fef281ca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/725f42b19f464f7198e9892fef281ca9.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hpAWW93WTVMLU-secNQd72olhRc=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.664344+00 2025-12-09 10:15:20.664349+00 13344 JTSS443FW#VS-D3 SPMX-20240815308539 \N \N \N 1 \N [{"file_id": "b893736a-10c0-4cff-a137-4752197e3455", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080db15f454e4a56b8b529234e2a2016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080db15f454e4a56b8b529234e2a2016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080db15f454e4a56b8b529234e2a2016.jpg", "file_size": 13231, "is_delete": false, "file_type": 1, "original_file_name": "JTSS443FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080db15f454e4a56b8b529234e2a2016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080db15f454e4a56b8b529234e2a2016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080db15f454e4a56b8b529234e2a2016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080db15f454e4a56b8b529234e2a2016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080db15f454e4a56b8b529234e2a2016.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZI59FcyLZ9U9cwAOYTjWpOOQeE=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.666456+00 2025-12-09 10:15:20.66646+00 13345 HT3340#原版色 SPMX-20240815308541 \N \N \N 1 \N [{"file_id": "c78725ae-f3e6-47ef-b6b2-3ec96755a5e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e43e0e89615465aa1ab43cd4275e2ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e43e0e89615465aa1ab43cd4275e2ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e43e0e89615465aa1ab43cd4275e2ba.jpg", "file_size": 62139, "is_delete": false, "file_type": 1, "original_file_name": "HT3340#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e43e0e89615465aa1ab43cd4275e2ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e43e0e89615465aa1ab43cd4275e2ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e43e0e89615465aa1ab43cd4275e2ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e43e0e89615465aa1ab43cd4275e2ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e43e0e89615465aa1ab43cd4275e2ba.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMw5zylcwRtz_eoIwHI3jUwNEtw=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.670879+00 2025-12-09 10:15:20.670884+00 13347 116-8#WJC22 SPMX-20240815308542 \N \N \N 1 \N [{"file_id": "8f442a52-0c3f-4420-b71f-14345d034235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a561720a01dd44868a263977f6d2c81c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a561720a01dd44868a263977f6d2c81c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a561720a01dd44868a263977f6d2c81c.jpg", "file_size": 5708, "is_delete": false, "file_type": 1, "original_file_name": "116-8#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a561720a01dd44868a263977f6d2c81c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a561720a01dd44868a263977f6d2c81c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a561720a01dd44868a263977f6d2c81c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a561720a01dd44868a263977f6d2c81c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a561720a01dd44868a263977f6d2c81c.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tzrbst0aRLUkT4GAsck7DvRfUDs=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.680681+00 2025-12-09 10:15:20.680685+00 13351 FM011#枣红 SPMX-20240815308545 \N \N \N 1 \N [{"file_id": "63a6728a-9138-4873-b872-84a8573a1465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c3b2034bd6849f1b8a309bc267275b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c3b2034bd6849f1b8a309bc267275b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c3b2034bd6849f1b8a309bc267275b6.jpg", "file_size": 16767, "is_delete": false, "file_type": 1, "original_file_name": "FM011#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3b2034bd6849f1b8a309bc267275b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3b2034bd6849f1b8a309bc267275b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c3b2034bd6849f1b8a309bc267275b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c3b2034bd6849f1b8a309bc267275b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c3b2034bd6849f1b8a309bc267275b6.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHuTyDIbip_2a03kQ6wdbpeq6ts=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.682592+00 2025-12-09 10:15:20.682596+00 13352 0005-24#彩兰 SPMX-20240815308547 \N \N \N 1 \N [{"file_id": "843e8d4d-23be-4546-bc4a-8a169eb2876e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d911baf7da24e2c8d127e0388edb765.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d911baf7da24e2c8d127e0388edb765.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d911baf7da24e2c8d127e0388edb765.jpg", "file_size": 12666, "is_delete": false, "file_type": 1, "original_file_name": "0005-24#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d911baf7da24e2c8d127e0388edb765.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d911baf7da24e2c8d127e0388edb765.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d911baf7da24e2c8d127e0388edb765.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d911baf7da24e2c8d127e0388edb765.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d911baf7da24e2c8d127e0388edb765.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6yYO2bR7wn81jfzEzlLt0DXOIgs=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.668721+00 2025-12-09 10:15:20.668726+00 13346 LZ1316#背心款3号色 SPMX-20240815308537 \N \N \N 1 \N [{"file_id": "29150f2c-1c0e-4f78-a7fa-c774239001b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ecc61a5b76a488cb19c09710352354e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ecc61a5b76a488cb19c09710352354e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ecc61a5b76a488cb19c09710352354e.jpg", "file_size": 17854, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecc61a5b76a488cb19c09710352354e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecc61a5b76a488cb19c09710352354e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecc61a5b76a488cb19c09710352354e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ecc61a5b76a488cb19c09710352354e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ecc61a5b76a488cb19c09710352354e.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hn-zz_5sZZh-KNNES4FT604t7MM=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.674908+00 2025-12-09 10:15:20.674913+00 13348 DL31083#前幅墨绿 SPMX-20240815308538 \N \N \N 1 \N [{"file_id": "b299615d-b28d-4c7c-bc32-2341c24dc998", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5a88e0c1ce54563ae77d542b1804b85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5a88e0c1ce54563ae77d542b1804b85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5a88e0c1ce54563ae77d542b1804b85.jpg", "file_size": 12888, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a88e0c1ce54563ae77d542b1804b85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a88e0c1ce54563ae77d542b1804b85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a88e0c1ce54563ae77d542b1804b85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5a88e0c1ce54563ae77d542b1804b85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5a88e0c1ce54563ae77d542b1804b85.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fW_r7CkaYrgZTGHgDBEgVf9Z4TQ=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.676844+00 2025-12-09 10:15:20.676848+00 13349 8321FWE#绿色XL VS-D3 SPMX-20240815308540 \N \N \N 1 \N [{"file_id": "474cfddb-c2c3-4fdc-841c-523f6e8bf05c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e64eb8392a946f9be8957c2727d1dfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e64eb8392a946f9be8957c2727d1dfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e64eb8392a946f9be8957c2727d1dfc.jpg", "file_size": 9547, "is_delete": false, "file_type": 1, "original_file_name": "8321FWE#绿色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e64eb8392a946f9be8957c2727d1dfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e64eb8392a946f9be8957c2727d1dfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e64eb8392a946f9be8957c2727d1dfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e64eb8392a946f9be8957c2727d1dfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e64eb8392a946f9be8957c2727d1dfc.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LnX9hO-1aNyuxIetn-fM4fRNfwg=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.678799+00 2025-12-09 10:15:20.678803+00 13350 C8020#袖口L SPMX-20240815308543 \N \N \N 1 \N [{"file_id": "a560c894-8f88-4923-bee7-d868e9a4ac25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "049ed32119a94139be88fd81b3a30954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "049ed32119a94139be88fd81b3a30954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "049ed32119a94139be88fd81b3a30954.jpg", "file_size": 9304, "is_delete": false, "file_type": 1, "original_file_name": "C8020#袖口L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ed32119a94139be88fd81b3a30954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ed32119a94139be88fd81b3a30954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049ed32119a94139be88fd81b3a30954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/049ed32119a94139be88fd81b3a30954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/049ed32119a94139be88fd81b3a30954.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ch4COHZFdp31-AJfCY-3sfILqCs=", "createTime": "2024-08-15 14:55:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.684728+00 2025-12-09 10:15:20.684732+00 13353 DL31083#前幅彩兰 SPMX-20240815308549 \N \N \N 1 \N [{"file_id": "c6a3e318-2601-49e3-a70d-a8dc00845c08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "132f6cabd38a4d27a9e8b229f73ea708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "132f6cabd38a4d27a9e8b229f73ea708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "132f6cabd38a4d27a9e8b229f73ea708.jpg", "file_size": 12953, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132f6cabd38a4d27a9e8b229f73ea708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132f6cabd38a4d27a9e8b229f73ea708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/132f6cabd38a4d27a9e8b229f73ea708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/132f6cabd38a4d27a9e8b229f73ea708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/132f6cabd38a4d27a9e8b229f73ea708.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21mDfKbjye6eWH5OdJ5w5NUyBos=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.686669+00 2025-12-09 10:15:20.686673+00 13354 116-9#WJC22 SPMX-20240815308552 \N \N \N 1 \N [{"file_id": "d89dbb93-0115-4556-b47f-c4f0ec5ce6c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b4ed32330847bd96fda5001eed99e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b4ed32330847bd96fda5001eed99e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b4ed32330847bd96fda5001eed99e0.jpg", "file_size": 19336, "is_delete": false, "file_type": 1, "original_file_name": "116-9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b4ed32330847bd96fda5001eed99e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b4ed32330847bd96fda5001eed99e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b4ed32330847bd96fda5001eed99e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b4ed32330847bd96fda5001eed99e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b4ed32330847bd96fda5001eed99e0.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zttlLpKQQUBtEnMtdMsunaS2ns=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.688801+00 2025-12-09 10:15:20.688806+00 13355 23-2121#A1-领子3XL SPMX-20240815308546 \N \N \N 1 \N [{"file_id": "b2d30ccc-942a-418b-9aa9-c9845c3ce40d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "619b9b62c52146649bb475fc4e34ed73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "619b9b62c52146649bb475fc4e34ed73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "619b9b62c52146649bb475fc4e34ed73.jpg", "file_size": 12485, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619b9b62c52146649bb475fc4e34ed73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619b9b62c52146649bb475fc4e34ed73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/619b9b62c52146649bb475fc4e34ed73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/619b9b62c52146649bb475fc4e34ed73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/619b9b62c52146649bb475fc4e34ed73.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhbeb0xWGnNjK6t5PlYLi3JcWbw=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.690765+00 2025-12-09 10:15:20.690768+00 13356 LZ1316#背心款4号色 SPMX-20240815308550 \N \N \N 1 \N [{"file_id": "b9b268a3-725d-4f54-b2bd-dbf691cd58fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "165f718b272d4d2f8ac4c6b78c8c0c46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "165f718b272d4d2f8ac4c6b78c8c0c46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "165f718b272d4d2f8ac4c6b78c8c0c46.jpg", "file_size": 18118, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165f718b272d4d2f8ac4c6b78c8c0c46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165f718b272d4d2f8ac4c6b78c8c0c46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165f718b272d4d2f8ac4c6b78c8c0c46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/165f718b272d4d2f8ac4c6b78c8c0c46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/165f718b272d4d2f8ac4c6b78c8c0c46.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ih4yvQYkBEw3KSxF3vLHtQlXzKs=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.692797+00 2025-12-09 10:15:20.692803+00 13357 LJH1705#黑色 SPMX-20240815308555 \N \N \N 1 \N [{"file_id": "b2dca600-7f41-4e23-8389-43574270ed3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "305c3ad97a7e46648a4f6b3394b92965.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "305c3ad97a7e46648a4f6b3394b92965.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "305c3ad97a7e46648a4f6b3394b92965.jpg", "file_size": 61108, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305c3ad97a7e46648a4f6b3394b92965.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305c3ad97a7e46648a4f6b3394b92965.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305c3ad97a7e46648a4f6b3394b92965.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/305c3ad97a7e46648a4f6b3394b92965.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/305c3ad97a7e46648a4f6b3394b92965.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6u1cBCeYkW0SQjfMhoaHy9wThG8=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.695165+00 2025-12-09 10:15:20.695169+00 13358 FM011#桔红 SPMX-20240815308556 \N \N \N 1 \N [{"file_id": "e4dd5059-a7af-41f5-bff0-b09af6c31e86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2434af0f3c224849a3b8cac30136c20b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2434af0f3c224849a3b8cac30136c20b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2434af0f3c224849a3b8cac30136c20b.jpg", "file_size": 16148, "is_delete": false, "file_type": 1, "original_file_name": "FM011#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2434af0f3c224849a3b8cac30136c20b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2434af0f3c224849a3b8cac30136c20b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2434af0f3c224849a3b8cac30136c20b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2434af0f3c224849a3b8cac30136c20b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2434af0f3c224849a3b8cac30136c20b.jpg?e=1765361719&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w_JXzsOSVxOJDHbq4WWwkkTqcG4=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.697109+00 2025-12-09 10:15:20.697113+00 13359 8322FWE#2XL VS-D3 SPMX-20240815308553 \N \N \N 1 \N [{"file_id": "0da7b445-73ff-4a65-8f6f-92b892040bfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42f1b2787961439a80babab62f730a32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42f1b2787961439a80babab62f730a32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42f1b2787961439a80babab62f730a32.jpg", "file_size": 18520, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f1b2787961439a80babab62f730a32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f1b2787961439a80babab62f730a32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f1b2787961439a80babab62f730a32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42f1b2787961439a80babab62f730a32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42f1b2787961439a80babab62f730a32.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBtUwf4bhbEhIjFyF0-bRDFJ_Dg=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.699106+00 2025-12-09 10:15:20.699111+00 13360 JTSS444FW#VS-D3 SPMX-20240815308548 \N \N \N 1 \N [{"file_id": "d3401d6f-1935-4215-bb5b-0449ab921726", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ba0bfd3b4f14262a76a624044d86ed0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ba0bfd3b4f14262a76a624044d86ed0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ba0bfd3b4f14262a76a624044d86ed0.jpg", "file_size": 17013, "is_delete": false, "file_type": 1, "original_file_name": "JTSS444FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba0bfd3b4f14262a76a624044d86ed0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba0bfd3b4f14262a76a624044d86ed0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba0bfd3b4f14262a76a624044d86ed0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ba0bfd3b4f14262a76a624044d86ed0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ba0bfd3b4f14262a76a624044d86ed0.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFdSvmxZiwWNZ6f0EsTbhb5kdco=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.701376+00 2025-12-09 10:15:20.701381+00 13361 HT3340#黄色 SPMX-20240815308551 \N \N \N 1 \N [{"file_id": "93c17e32-1bf6-4d7c-a714-e3a5d237a2cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9791cc36897c4bada829199264f8d9eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9791cc36897c4bada829199264f8d9eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9791cc36897c4bada829199264f8d9eb.jpg", "file_size": 56491, "is_delete": false, "file_type": 1, "original_file_name": "HT3340#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9791cc36897c4bada829199264f8d9eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9791cc36897c4bada829199264f8d9eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9791cc36897c4bada829199264f8d9eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9791cc36897c4bada829199264f8d9eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9791cc36897c4bada829199264f8d9eb.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LzNKjqZZs5CtLjzk-CrXUycvy0=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.703948+00 2025-12-09 10:15:20.703955+00 13362 LJH1705#黄色 SPMX-20240815308544 \N \N \N 1 \N [{"file_id": "65a35fa1-2fba-4d61-bfe2-040d355dde08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a22bf44c4ab34cbb949d5ec77c1d78b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a22bf44c4ab34cbb949d5ec77c1d78b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a22bf44c4ab34cbb949d5ec77c1d78b8.jpg", "file_size": 61999, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22bf44c4ab34cbb949d5ec77c1d78b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22bf44c4ab34cbb949d5ec77c1d78b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22bf44c4ab34cbb949d5ec77c1d78b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a22bf44c4ab34cbb949d5ec77c1d78b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a22bf44c4ab34cbb949d5ec77c1d78b8.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EKOEtrJ9he4iQPmKbT34MuvVjvg=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.706293+00 2025-12-09 10:15:20.706297+00 13363 C8020#袖口M SPMX-20240815308554 \N \N \N 1 \N [{"file_id": "8ab0bdce-a060-4ae7-94ff-e0a6e9bc24a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8205a1706714feb93f317205bad7a78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8205a1706714feb93f317205bad7a78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8205a1706714feb93f317205bad7a78.jpg", "file_size": 9737, "is_delete": false, "file_type": 1, "original_file_name": "C8020#袖口M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8205a1706714feb93f317205bad7a78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8205a1706714feb93f317205bad7a78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8205a1706714feb93f317205bad7a78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8205a1706714feb93f317205bad7a78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8205a1706714feb93f317205bad7a78.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zr1wpOjBGEqfAsXRH9j-TfoXwNw=", "createTime": "2024-08-15 14:55:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.708315+00 2025-12-09 10:15:20.708322+00 13364 FM011#玫红 SPMX-20240815308566 \N \N \N 1 \N [{"file_id": "fbd00224-d3f4-4b45-afe2-9a9bc19d0c42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7e5725239904f7486e354a82c3332c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7e5725239904f7486e354a82c3332c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7e5725239904f7486e354a82c3332c3.jpg", "file_size": 16634, "is_delete": false, "file_type": 1, "original_file_name": "FM011#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e5725239904f7486e354a82c3332c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e5725239904f7486e354a82c3332c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e5725239904f7486e354a82c3332c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7e5725239904f7486e354a82c3332c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7e5725239904f7486e354a82c3332c3.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDpbB9_T42v9pZO8t-2kNWfhqww=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.710641+00 2025-12-09 10:15:20.710646+00 13365 HT3341#兰色 SPMX-20240815308563 \N \N \N 1 \N [{"file_id": "5c4c3803-4963-4839-8d23-85e168ed9728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd712f92628641979efa2d5bc8ec7086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd712f92628641979efa2d5bc8ec7086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd712f92628641979efa2d5bc8ec7086.jpg", "file_size": 87748, "is_delete": false, "file_type": 1, "original_file_name": "HT3341#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd712f92628641979efa2d5bc8ec7086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd712f92628641979efa2d5bc8ec7086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd712f92628641979efa2d5bc8ec7086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd712f92628641979efa2d5bc8ec7086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd712f92628641979efa2d5bc8ec7086.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DKUO4P7a5xfEm7wPYUsRWdKasM=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.712868+00 2025-12-09 10:15:20.712873+00 13366 C8020#袖口S SPMX-20240815308567 \N \N \N 1 \N [{"file_id": "a3919900-26c3-4337-8e81-3eedd5991669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38257cb3ff7444a4924be86f66f1b2d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38257cb3ff7444a4924be86f66f1b2d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38257cb3ff7444a4924be86f66f1b2d2.jpg", "file_size": 9453, "is_delete": false, "file_type": 1, "original_file_name": "C8020#袖口S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38257cb3ff7444a4924be86f66f1b2d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38257cb3ff7444a4924be86f66f1b2d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38257cb3ff7444a4924be86f66f1b2d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38257cb3ff7444a4924be86f66f1b2d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38257cb3ff7444a4924be86f66f1b2d2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wI42oJDCWhvPwggLKFcc9y34qdE=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.7151+00 2025-12-09 10:15:20.715105+00 13367 8322FWE#3XL VS-D3 SPMX-20240815308565 \N \N \N 1 \N [{"file_id": "563bb533-4b30-4446-85a0-4a6477698093", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3198132c78884a24b9f51e275073f26d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3198132c78884a24b9f51e275073f26d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3198132c78884a24b9f51e275073f26d.jpg", "file_size": 18188, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3198132c78884a24b9f51e275073f26d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3198132c78884a24b9f51e275073f26d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3198132c78884a24b9f51e275073f26d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3198132c78884a24b9f51e275073f26d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3198132c78884a24b9f51e275073f26d.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ChktwP6MRlcjOGOFDdj7hertZgs=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.71724+00 2025-12-09 10:15:20.717246+00 13368 23-2121#A1-领子4XL SPMX-20240815308560 \N \N \N 1 \N [{"file_id": "630a4fee-709b-4207-bdfc-918971ed4a74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472da8e1620546c4b2c19a67c11c064c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472da8e1620546c4b2c19a67c11c064c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472da8e1620546c4b2c19a67c11c064c.jpg", "file_size": 12666, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472da8e1620546c4b2c19a67c11c064c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472da8e1620546c4b2c19a67c11c064c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472da8e1620546c4b2c19a67c11c064c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472da8e1620546c4b2c19a67c11c064c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472da8e1620546c4b2c19a67c11c064c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNz8d5mBjE8uMIitjpGmN1QRi4Y=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.719423+00 2025-12-09 10:15:20.719427+00 13369 LJH1705-10#卡其色 SPMX-20240815308564 \N \N \N 1 \N [{"file_id": "6c42adf6-e62f-48aa-bac7-2ff1eb85fd15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "932926b107914d53b7b1ddc838b1ab38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "932926b107914d53b7b1ddc838b1ab38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "932926b107914d53b7b1ddc838b1ab38.jpg", "file_size": 57121, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#卡其色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932926b107914d53b7b1ddc838b1ab38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932926b107914d53b7b1ddc838b1ab38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932926b107914d53b7b1ddc838b1ab38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/932926b107914d53b7b1ddc838b1ab38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/932926b107914d53b7b1ddc838b1ab38.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdS7V92i7Af4nveSAtQkTrdM0Ic=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.721652+00 2025-12-09 10:15:20.721657+00 13370 0005-24#黄色 SPMX-20240815308558 \N \N \N 1 \N [{"file_id": "902a5489-aaea-4d32-a647-4dddf2c3d6a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc921ae3e86c48a9ab6336a51771931c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc921ae3e86c48a9ab6336a51771931c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc921ae3e86c48a9ab6336a51771931c.jpg", "file_size": 12294, "is_delete": false, "file_type": 1, "original_file_name": "0005-24#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc921ae3e86c48a9ab6336a51771931c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc921ae3e86c48a9ab6336a51771931c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc921ae3e86c48a9ab6336a51771931c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc921ae3e86c48a9ab6336a51771931c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc921ae3e86c48a9ab6336a51771931c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56W5soAMm1IRZ8Q91viVzIOTk98=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.723801+00 2025-12-09 10:15:20.723806+00 13371 LZ1316#背心款5号色 SPMX-20240815308561 \N \N \N 1 \N [{"file_id": "c5e58605-2fe7-4481-b462-0c45bc55695b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b28f7fa56ca14cda93af804c9907af43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b28f7fa56ca14cda93af804c9907af43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b28f7fa56ca14cda93af804c9907af43.jpg", "file_size": 18709, "is_delete": false, "file_type": 1, "original_file_name": "LZ1316#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b28f7fa56ca14cda93af804c9907af43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b28f7fa56ca14cda93af804c9907af43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b28f7fa56ca14cda93af804c9907af43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b28f7fa56ca14cda93af804c9907af43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b28f7fa56ca14cda93af804c9907af43.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcqCna-2af80_4s_XKapNc01qp4=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.72597+00 2025-12-09 10:15:20.725975+00 13372 116-9#条子批布 SPMX-20240815308562 \N \N \N 1 \N [{"file_id": "0470344c-5f6d-4691-bbfb-b6a003c27e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc4053f9e89a41d3a43390c037fdc6fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc4053f9e89a41d3a43390c037fdc6fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc4053f9e89a41d3a43390c037fdc6fd.jpg", "file_size": 9281, "is_delete": false, "file_type": 1, "original_file_name": "116-9#条子批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4053f9e89a41d3a43390c037fdc6fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4053f9e89a41d3a43390c037fdc6fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc4053f9e89a41d3a43390c037fdc6fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc4053f9e89a41d3a43390c037fdc6fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc4053f9e89a41d3a43390c037fdc6fd.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpWIzkg4Yt2Rj_gdCAdr0o7wmeQ=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.728323+00 2025-12-09 10:15:20.728329+00 13373 JTSS445FW#VS-D3 SPMX-20240815308557 \N \N \N 1 \N [{"file_id": "b9618219-e836-4d19-b3fc-edc032a3899f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfdf5812fee439fa5ca5f0432c073ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfdf5812fee439fa5ca5f0432c073ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfdf5812fee439fa5ca5f0432c073ea.jpg", "file_size": 15878, "is_delete": false, "file_type": 1, "original_file_name": "JTSS445FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfdf5812fee439fa5ca5f0432c073ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfdf5812fee439fa5ca5f0432c073ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfdf5812fee439fa5ca5f0432c073ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfdf5812fee439fa5ca5f0432c073ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfdf5812fee439fa5ca5f0432c073ea.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0rKDaJCDSSrC2ym1gtPOGCQNEg=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.730509+00 2025-12-09 10:15:20.730515+00 13374 DL31083#前幅枣红 SPMX-20240815308559 \N \N \N 1 \N [{"file_id": "f5798407-e1b1-4b72-9a29-8a22ae288029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6ff05d6a6e04f56857179e99d413c31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6ff05d6a6e04f56857179e99d413c31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6ff05d6a6e04f56857179e99d413c31.jpg", "file_size": 12507, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ff05d6a6e04f56857179e99d413c31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ff05d6a6e04f56857179e99d413c31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6ff05d6a6e04f56857179e99d413c31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6ff05d6a6e04f56857179e99d413c31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6ff05d6a6e04f56857179e99d413c31.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N5A-HFJbR1j8XHIpBsQw9Gak5Vo=", "createTime": "2024-08-15 14:55:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.73281+00 2025-12-09 10:15:20.732815+00 13375 C8020#袖口XL SPMX-20240815308573 \N \N \N 1 \N [{"file_id": "7b5ee65c-0682-4a36-b144-9eea8dd36ca2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d031db29e4db48e8980b37f982265c4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d031db29e4db48e8980b37f982265c4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d031db29e4db48e8980b37f982265c4f.jpg", "file_size": 9893, "is_delete": false, "file_type": 1, "original_file_name": "C8020#袖口XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d031db29e4db48e8980b37f982265c4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d031db29e4db48e8980b37f982265c4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d031db29e4db48e8980b37f982265c4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d031db29e4db48e8980b37f982265c4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d031db29e4db48e8980b37f982265c4f.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tDlMaZ7ufj272tQ64DzZ8JMyI80=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.735022+00 2025-12-09 10:15:20.735027+00 13376 JTSS446FW#VS-D3 SPMX-20240815308569 \N \N \N 1 \N [{"file_id": "2158616a-b8a0-40be-b56c-3a4cae5c0e6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31a91f0473e4c1b9a7bdeca0b8c613b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31a91f0473e4c1b9a7bdeca0b8c613b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31a91f0473e4c1b9a7bdeca0b8c613b.jpg", "file_size": 6043, "is_delete": false, "file_type": 1, "original_file_name": "JTSS446FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a91f0473e4c1b9a7bdeca0b8c613b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a91f0473e4c1b9a7bdeca0b8c613b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a91f0473e4c1b9a7bdeca0b8c613b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31a91f0473e4c1b9a7bdeca0b8c613b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31a91f0473e4c1b9a7bdeca0b8c613b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wBId5zQ2yEIlle7sXN85x2w2_Os=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.737299+00 2025-12-09 10:15:20.737305+00 13377 LZ1317#捆条布 SPMX-20240815308571 \N \N \N 1 \N [{"file_id": "4bcdf27c-d0e9-4fe2-bf10-65dcb87d690e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c17cd98457f34011a2cd5e1505713bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c17cd98457f34011a2cd5e1505713bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c17cd98457f34011a2cd5e1505713bd3.jpg", "file_size": 19173, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17cd98457f34011a2cd5e1505713bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17cd98457f34011a2cd5e1505713bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17cd98457f34011a2cd5e1505713bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c17cd98457f34011a2cd5e1505713bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c17cd98457f34011a2cd5e1505713bd3.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wKdol2SLLpqdC6eFrik_d2rbUtw=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.739648+00 2025-12-09 10:15:20.739653+00 13378 23-2121#A2-方块花 SPMX-20240815308568 \N \N \N 1 \N [{"file_id": "d1f9348c-e424-4c98-8f05-aa768a9cb850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d57f5811890422d87ca226b9233ba44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d57f5811890422d87ca226b9233ba44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d57f5811890422d87ca226b9233ba44.jpg", "file_size": 19079, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A2-方块花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d57f5811890422d87ca226b9233ba44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d57f5811890422d87ca226b9233ba44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d57f5811890422d87ca226b9233ba44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d57f5811890422d87ca226b9233ba44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d57f5811890422d87ca226b9233ba44.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCbj0G50X4Za6tEdqiQgpRQlS4E=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.742201+00 2025-12-09 10:15:20.742206+00 13379 0005-25#彩兰 SPMX-20240815308572 \N \N \N 1 \N [{"file_id": "aaa285a9-1af2-4f7b-905d-ec0d258059ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bbcb175e8e64413b93a48964495fbb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bbcb175e8e64413b93a48964495fbb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bbcb175e8e64413b93a48964495fbb9.jpg", "file_size": 7338, "is_delete": false, "file_type": 1, "original_file_name": "0005-25#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bbcb175e8e64413b93a48964495fbb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bbcb175e8e64413b93a48964495fbb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bbcb175e8e64413b93a48964495fbb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bbcb175e8e64413b93a48964495fbb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bbcb175e8e64413b93a48964495fbb9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxDTACZSEaLTyxwIDy30LEiTAZM=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.745106+00 2025-12-09 10:15:20.745112+00 13380 HT3341#原版色 SPMX-20240815308575 \N \N \N 1 \N [{"file_id": "b92485c9-09fa-415f-9361-9cddc95aee61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73d17ea7d9c2476d9689dd7ccf306d85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73d17ea7d9c2476d9689dd7ccf306d85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73d17ea7d9c2476d9689dd7ccf306d85.jpg", "file_size": 84894, "is_delete": false, "file_type": 1, "original_file_name": "HT3341#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d17ea7d9c2476d9689dd7ccf306d85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d17ea7d9c2476d9689dd7ccf306d85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d17ea7d9c2476d9689dd7ccf306d85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73d17ea7d9c2476d9689dd7ccf306d85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73d17ea7d9c2476d9689dd7ccf306d85.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uHAQitnkfDUJIqQVzmmzksSpZew=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.747882+00 2025-12-09 10:15:20.747888+00 13381 DL31083#前幅浅粉 SPMX-20240815308570 \N \N \N 1 \N [{"file_id": "21e284cf-d564-434c-a7af-1cf57110d1ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fee2ab34b00f4bfd8207f01b901ece7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fee2ab34b00f4bfd8207f01b901ece7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fee2ab34b00f4bfd8207f01b901ece7a.jpg", "file_size": 12244, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee2ab34b00f4bfd8207f01b901ece7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee2ab34b00f4bfd8207f01b901ece7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee2ab34b00f4bfd8207f01b901ece7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fee2ab34b00f4bfd8207f01b901ece7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fee2ab34b00f4bfd8207f01b901ece7a.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFmPGBWw0yjpDBTAkVVfcdttprk=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.750623+00 2025-12-09 10:15:20.750629+00 13382 1163#斑马纹 SPMX-20240815308574 \N \N \N 1 \N [{"file_id": "c3ddb97e-1cad-4d89-83ba-c6c5e6f4c229", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "217646d67ffd4812b59565dfb989bcd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "217646d67ffd4812b59565dfb989bcd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "217646d67ffd4812b59565dfb989bcd9.jpg", "file_size": 23459, "is_delete": false, "file_type": 1, "original_file_name": "1163#斑马纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/217646d67ffd4812b59565dfb989bcd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/217646d67ffd4812b59565dfb989bcd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/217646d67ffd4812b59565dfb989bcd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/217646d67ffd4812b59565dfb989bcd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/217646d67ffd4812b59565dfb989bcd9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRGcdBVsCn2AZLA1k_BOzWPvRP8=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.753381+00 2025-12-09 10:15:20.753387+00 13383 FM011#粉色 SPMX-20240815308576 \N \N \N 1 \N [{"file_id": "bc04cf8e-7ed0-4d69-b3e6-b71b02acbbd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfec394e58d943e3ab8e00ea205eeba6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfec394e58d943e3ab8e00ea205eeba6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfec394e58d943e3ab8e00ea205eeba6.jpg", "file_size": 12966, "is_delete": false, "file_type": 1, "original_file_name": "FM011#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfec394e58d943e3ab8e00ea205eeba6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfec394e58d943e3ab8e00ea205eeba6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfec394e58d943e3ab8e00ea205eeba6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfec394e58d943e3ab8e00ea205eeba6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfec394e58d943e3ab8e00ea205eeba6.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:temTknvoxhUdRq5YWX8rVNlwtrU=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.756175+00 2025-12-09 10:15:20.75618+00 13384 LZ1317#背心款1号色 SPMX-20240815308580 \N \N \N 1 \N [{"file_id": "ba7e6ec3-3d52-426b-985f-c007920b282e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3decb450bd224c099935ef2a9016e385.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3decb450bd224c099935ef2a9016e385.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3decb450bd224c099935ef2a9016e385.jpg", "file_size": 18680, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3decb450bd224c099935ef2a9016e385.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3decb450bd224c099935ef2a9016e385.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3decb450bd224c099935ef2a9016e385.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3decb450bd224c099935ef2a9016e385.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3decb450bd224c099935ef2a9016e385.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l2nkyx47cQXpFTYs-cGmKwdRcbk=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.759069+00 2025-12-09 10:15:20.759075+00 13385 C808#玫红色 SPMX-20240815308585 \N \N \N 1 \N [{"file_id": "7ce2f230-970f-4f21-8b9b-461f48640f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6243fdf33ef04049a037e7cac5186a4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6243fdf33ef04049a037e7cac5186a4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6243fdf33ef04049a037e7cac5186a4a.jpg", "file_size": 21947, "is_delete": false, "file_type": 1, "original_file_name": "C808#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6243fdf33ef04049a037e7cac5186a4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6243fdf33ef04049a037e7cac5186a4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6243fdf33ef04049a037e7cac5186a4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6243fdf33ef04049a037e7cac5186a4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6243fdf33ef04049a037e7cac5186a4a.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLDCYlxELSvAwln1iJYb_uEYPKo=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.761883+00 2025-12-09 10:15:20.761889+00 13386 JTSS448FW#VS-D3 SPMX-20240815308591 \N \N \N 1 \N [{"file_id": "c49e4078-fac3-441d-97dc-99ecdc2e0ea9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b614f35484e74fe5b807232b4756c6de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b614f35484e74fe5b807232b4756c6de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b614f35484e74fe5b807232b4756c6de.jpg", "file_size": 10070, "is_delete": false, "file_type": 1, "original_file_name": "JTSS448FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614f35484e74fe5b807232b4756c6de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614f35484e74fe5b807232b4756c6de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b614f35484e74fe5b807232b4756c6de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b614f35484e74fe5b807232b4756c6de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b614f35484e74fe5b807232b4756c6de.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IsjwyxZdoqqidUgXF5S5ilZ2RDQ=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.764569+00 2025-12-09 10:15:20.764575+00 13387 8322FWE#5XL VS-D3 SPMX-20240815308586 \N \N \N 1 \N [{"file_id": "281080df-5552-4dea-badb-7f497f4fb972", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4a8a59951a14d4c83941bdb63c64fa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4a8a59951a14d4c83941bdb63c64fa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4a8a59951a14d4c83941bdb63c64fa4.jpg", "file_size": 17359, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a8a59951a14d4c83941bdb63c64fa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a8a59951a14d4c83941bdb63c64fa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a8a59951a14d4c83941bdb63c64fa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4a8a59951a14d4c83941bdb63c64fa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4a8a59951a14d4c83941bdb63c64fa4.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nHDNnfM_SIzred2EHj5HYwmIqQQ=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.766814+00 2025-12-09 10:15:20.766819+00 13388 0005-25#黑色 SPMX-20240815308592 \N \N \N 1 \N [{"file_id": "6bb797ae-b2c5-40af-881f-a3c9598c8c32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65c9a3a99dd2442cb39cdd231fb0871c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65c9a3a99dd2442cb39cdd231fb0871c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65c9a3a99dd2442cb39cdd231fb0871c.jpg", "file_size": 7063, "is_delete": false, "file_type": 1, "original_file_name": "0005-25#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c9a3a99dd2442cb39cdd231fb0871c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c9a3a99dd2442cb39cdd231fb0871c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65c9a3a99dd2442cb39cdd231fb0871c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65c9a3a99dd2442cb39cdd231fb0871c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65c9a3a99dd2442cb39cdd231fb0871c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqlhuPquPzcAx9DGFv_mrDybWng=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.769364+00 2025-12-09 10:15:20.76937+00 13389 HT3341#绿色 SPMX-20240815308590 \N \N \N 1 \N [{"file_id": "4af4d10b-2e78-4cb2-8f28-f8c2eb96bdfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "931f195aea4b4d1587762878b272db47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "931f195aea4b4d1587762878b272db47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "931f195aea4b4d1587762878b272db47.jpg", "file_size": 84871, "is_delete": false, "file_type": 1, "original_file_name": "HT3341#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931f195aea4b4d1587762878b272db47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931f195aea4b4d1587762878b272db47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931f195aea4b4d1587762878b272db47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/931f195aea4b4d1587762878b272db47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/931f195aea4b4d1587762878b272db47.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SX2fa_YR4f2XWrQI5hKANP7r93A=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.771737+00 2025-12-09 10:15:20.771742+00 13390 8322FWE#4XL VS-D3 SPMX-20240815308577 \N \N \N 1 \N [{"file_id": "42de4c2c-ffba-4f72-9fbf-62bfecf021d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "104e6e9727e44cb1b0902eb6f310fa12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "104e6e9727e44cb1b0902eb6f310fa12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "104e6e9727e44cb1b0902eb6f310fa12.jpg", "file_size": 17602, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e6e9727e44cb1b0902eb6f310fa12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e6e9727e44cb1b0902eb6f310fa12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104e6e9727e44cb1b0902eb6f310fa12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/104e6e9727e44cb1b0902eb6f310fa12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/104e6e9727e44cb1b0902eb6f310fa12.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g0KqWce9vRWMfnq279wPybuZFvQ=", "createTime": "2024-08-15 14:55:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.77382+00 2025-12-09 10:15:20.773826+00 13391 DL31083#前幅玫红 SPMX-20240815308583 \N \N \N 1 \N [{"file_id": "eaea7a06-e934-4b9d-a2bf-699b842ffca1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44b8788b6b5c48ea8a7981290a251459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44b8788b6b5c48ea8a7981290a251459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44b8788b6b5c48ea8a7981290a251459.jpg", "file_size": 12457, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b8788b6b5c48ea8a7981290a251459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b8788b6b5c48ea8a7981290a251459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b8788b6b5c48ea8a7981290a251459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44b8788b6b5c48ea8a7981290a251459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44b8788b6b5c48ea8a7981290a251459.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tOfvEeB5JNQpV-YWhjVT7RgMgJ4=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.776132+00 2025-12-09 10:15:20.776137+00 13392 FM011#蓝色 SPMX-20240815308584 \N \N \N 1 \N [{"file_id": "bee76042-353a-441b-9045-6028c2278edf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e164da6b8cfa4f71b800b46744423bd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e164da6b8cfa4f71b800b46744423bd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e164da6b8cfa4f71b800b46744423bd0.jpg", "file_size": 17061, "is_delete": false, "file_type": 1, "original_file_name": "FM011#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e164da6b8cfa4f71b800b46744423bd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e164da6b8cfa4f71b800b46744423bd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e164da6b8cfa4f71b800b46744423bd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e164da6b8cfa4f71b800b46744423bd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e164da6b8cfa4f71b800b46744423bd0.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCsZGMyvT07vrXitYsLurb3_ewc=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.778404+00 2025-12-09 10:15:20.778409+00 13393 23-2121#A4-3XL SPMX-20240815308588 \N \N \N 1 \N [{"file_id": "54e32c13-5df6-41f9-9f8b-005f8381d560", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1962cf5cba4d4e6e8500abb6099c4bda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1962cf5cba4d4e6e8500abb6099c4bda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1962cf5cba4d4e6e8500abb6099c4bda.jpg", "file_size": 15162, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1962cf5cba4d4e6e8500abb6099c4bda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1962cf5cba4d4e6e8500abb6099c4bda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1962cf5cba4d4e6e8500abb6099c4bda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1962cf5cba4d4e6e8500abb6099c4bda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1962cf5cba4d4e6e8500abb6099c4bda.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3gKtjK7iu5I7_93mUV-hamhi1U=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.780699+00 2025-12-09 10:15:20.780712+00 13394 JTSS447FW#VS-D3 SPMX-20240815308581 \N \N \N 1 \N [{"file_id": "20ee362f-3adc-4fce-93b0-4b59833b7c8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f68b3861b443413893454f0cdcf8e955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f68b3861b443413893454f0cdcf8e955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f68b3861b443413893454f0cdcf8e955.jpg", "file_size": 14538, "is_delete": false, "file_type": 1, "original_file_name": "JTSS447FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68b3861b443413893454f0cdcf8e955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68b3861b443413893454f0cdcf8e955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68b3861b443413893454f0cdcf8e955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f68b3861b443413893454f0cdcf8e955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f68b3861b443413893454f0cdcf8e955.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nZSzijZ_glGA11xPS870USCCSM=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.782752+00 2025-12-09 10:15:20.782758+00 13395 23-2121#A3-字母LV SPMX-20240815308579 \N \N \N 1 \N [{"file_id": "11114824-0acd-4a29-86ab-ca341d05b2ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "042d3dbabe4940bc8ebf03e1d078ef60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "042d3dbabe4940bc8ebf03e1d078ef60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "042d3dbabe4940bc8ebf03e1d078ef60.jpg", "file_size": 10579, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A3-字母LV.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042d3dbabe4940bc8ebf03e1d078ef60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042d3dbabe4940bc8ebf03e1d078ef60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042d3dbabe4940bc8ebf03e1d078ef60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/042d3dbabe4940bc8ebf03e1d078ef60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/042d3dbabe4940bc8ebf03e1d078ef60.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_towNt4qyZ1nvng1wDBwnqIgFE=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.784787+00 2025-12-09 10:15:20.784792+00 13396 0005-25#黄色 SPMX-20240815308582 \N \N \N 1 \N [{"file_id": "8c9c5f13-2d32-4032-a6fb-414b9af3bbc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a192a67c8a034f2099cc1f15974405c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a192a67c8a034f2099cc1f15974405c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a192a67c8a034f2099cc1f15974405c0.jpg", "file_size": 7358, "is_delete": false, "file_type": 1, "original_file_name": "0005-25#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a192a67c8a034f2099cc1f15974405c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a192a67c8a034f2099cc1f15974405c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a192a67c8a034f2099cc1f15974405c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a192a67c8a034f2099cc1f15974405c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a192a67c8a034f2099cc1f15974405c0.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5iZbdTekY-TYfrt34gKHshb1u4=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.786921+00 2025-12-09 10:15:20.786926+00 13397 LJH1705-10#红色 SPMX-20240815308589 \N \N \N 1 \N [{"file_id": "a1029eb3-ac2f-4d6a-a555-ba4571a78267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72ea5d344e76450385bda8f1b302c4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72ea5d344e76450385bda8f1b302c4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72ea5d344e76450385bda8f1b302c4e6.jpg", "file_size": 62369, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ea5d344e76450385bda8f1b302c4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ea5d344e76450385bda8f1b302c4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ea5d344e76450385bda8f1b302c4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72ea5d344e76450385bda8f1b302c4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72ea5d344e76450385bda8f1b302c4e6.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PtMHKQC44ltfjZdTrOtnSjN0vJw=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.78923+00 2025-12-09 10:15:20.789236+00 13398 LJH1705-10#宝蓝色 SPMX-20240815308578 \N \N \N 1 \N [{"file_id": "129995d4-e87c-4f5a-a535-1ae379cf5565", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1168eab695cb47fb946db34b72e7e9f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1168eab695cb47fb946db34b72e7e9f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1168eab695cb47fb946db34b72e7e9f4.jpg", "file_size": 60474, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1168eab695cb47fb946db34b72e7e9f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1168eab695cb47fb946db34b72e7e9f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1168eab695cb47fb946db34b72e7e9f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1168eab695cb47fb946db34b72e7e9f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1168eab695cb47fb946db34b72e7e9f4.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yj2ohYwBGqwpZ4rrcYjOPaDGn6c=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.791415+00 2025-12-09 10:15:20.79142+00 13399 1166FWF#粉色 SPMX-20240815308587 \N \N \N 1 \N [{"file_id": "e74ae0d3-2ae7-4f2c-9715-99c4de0d2840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34888b3cda954ff79d5e6ca287e87b56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34888b3cda954ff79d5e6ca287e87b56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34888b3cda954ff79d5e6ca287e87b56.jpg", "file_size": 26489, "is_delete": false, "file_type": 1, "original_file_name": "1166FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34888b3cda954ff79d5e6ca287e87b56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34888b3cda954ff79d5e6ca287e87b56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34888b3cda954ff79d5e6ca287e87b56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34888b3cda954ff79d5e6ca287e87b56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34888b3cda954ff79d5e6ca287e87b56.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iOx6dsKLzswXQcO2FEa4HyNiGfw=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.793644+00 2025-12-09 10:15:20.793649+00 13400 LZ1317#背心款3号色 SPMX-20240815308601 \N \N \N 1 \N [{"file_id": "479290d9-8a74-44c9-a4d3-e3888be3b535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15af521edeec4acfacadaca361332a50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15af521edeec4acfacadaca361332a50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15af521edeec4acfacadaca361332a50.jpg", "file_size": 19520, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15af521edeec4acfacadaca361332a50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15af521edeec4acfacadaca361332a50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15af521edeec4acfacadaca361332a50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15af521edeec4acfacadaca361332a50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15af521edeec4acfacadaca361332a50.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3iurQgIIIdXnP4bvzlIke12Ia9E=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.795714+00 2025-12-09 10:15:20.795719+00 13401 HT3342#原版色 SPMX-20240815308604 \N \N \N 1 \N [{"file_id": "ffa3f08c-4072-4bd1-8701-4bad4f4870d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd99166e3204fbd87f6d47e04f0b782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd99166e3204fbd87f6d47e04f0b782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd99166e3204fbd87f6d47e04f0b782.jpg", "file_size": 72353, "is_delete": false, "file_type": 1, "original_file_name": "HT3342#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd99166e3204fbd87f6d47e04f0b782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd99166e3204fbd87f6d47e04f0b782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd99166e3204fbd87f6d47e04f0b782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd99166e3204fbd87f6d47e04f0b782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd99166e3204fbd87f6d47e04f0b782.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpepZlqtT9x1uUYn5SAb6kjkcWg=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.797788+00 2025-12-09 10:15:20.797794+00 13402 1166FWF#紫色 SPMX-20240815308605 \N \N \N 1 \N [{"file_id": "edf7e419-27a9-4ca5-a8a2-45a87b82d587", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d39362cad30247e38fb78745d37a6f3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d39362cad30247e38fb78745d37a6f3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d39362cad30247e38fb78745d37a6f3b.jpg", "file_size": 26241, "is_delete": false, "file_type": 1, "original_file_name": "1166FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39362cad30247e38fb78745d37a6f3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39362cad30247e38fb78745d37a6f3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d39362cad30247e38fb78745d37a6f3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d39362cad30247e38fb78745d37a6f3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d39362cad30247e38fb78745d37a6f3b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wz9Um7ysUbYhw9p00_WR71Non-0=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.799832+00 2025-12-09 10:15:20.799837+00 13403 DL31083#前幅蓝绿 SPMX-20240815308603 \N \N \N 1 \N [{"file_id": "8dc520ff-a910-4ade-8fce-6498db4505c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20a5048d19d74d01bfbd854c747b9b06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20a5048d19d74d01bfbd854c747b9b06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20a5048d19d74d01bfbd854c747b9b06.jpg", "file_size": 13343, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a5048d19d74d01bfbd854c747b9b06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a5048d19d74d01bfbd854c747b9b06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a5048d19d74d01bfbd854c747b9b06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20a5048d19d74d01bfbd854c747b9b06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20a5048d19d74d01bfbd854c747b9b06.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQMZKIn5N9jlDkl6zsY0VUwJ8mc=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.801842+00 2025-12-09 10:15:20.801847+00 13404 JTSS449FW#VS-D3 SPMX-20240815308598 \N \N \N 1 \N [{"file_id": "0fbd9313-42a5-42f9-9999-d4318d5eeedf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg", "file_size": 11477, "is_delete": false, "file_type": 1, "original_file_name": "JTSS449FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf39d2aa33794afc9aa7c5ad42ee0ddc.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZwW81bSEYMT-FfL6BmZ3uW-v8u8=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.803852+00 2025-12-09 10:15:20.803857+00 13405 8322FWE#L VS-D3 SPMX-20240815308597 \N \N \N 1 \N [{"file_id": "6a959571-de9a-48ad-bfd0-b82cb30f6d44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b9ce04147434727b0567de2c6afacc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b9ce04147434727b0567de2c6afacc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b9ce04147434727b0567de2c6afacc3.jpg", "file_size": 19444, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9ce04147434727b0567de2c6afacc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9ce04147434727b0567de2c6afacc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b9ce04147434727b0567de2c6afacc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b9ce04147434727b0567de2c6afacc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b9ce04147434727b0567de2c6afacc3.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtAYUJ4cl-zjOXnuwAUvoL8TjSQ=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.805906+00 2025-12-09 10:15:20.805912+00 13406 23-2121#A4-4XL SPMX-20240815308596 \N \N \N 1 \N [{"file_id": "8017b979-6250-413d-ad60-50b09eab66ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb3df4ba16ca444f8a03496659f7fedc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb3df4ba16ca444f8a03496659f7fedc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb3df4ba16ca444f8a03496659f7fedc.jpg", "file_size": 14740, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb3df4ba16ca444f8a03496659f7fedc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb3df4ba16ca444f8a03496659f7fedc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb3df4ba16ca444f8a03496659f7fedc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb3df4ba16ca444f8a03496659f7fedc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb3df4ba16ca444f8a03496659f7fedc.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U56rnuMzKxujj5i0-7ZQYUxYYC4=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.808075+00 2025-12-09 10:15:20.80808+00 13407 FM011#黄色 SPMX-20240815308595 \N \N \N 1 \N [{"file_id": "21dae62f-f6c7-4c83-b206-261f09dbcab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3535fec48e4944e0a1e9b9750fe78a13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3535fec48e4944e0a1e9b9750fe78a13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3535fec48e4944e0a1e9b9750fe78a13.jpg", "file_size": 14841, "is_delete": false, "file_type": 1, "original_file_name": "FM011#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535fec48e4944e0a1e9b9750fe78a13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535fec48e4944e0a1e9b9750fe78a13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3535fec48e4944e0a1e9b9750fe78a13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3535fec48e4944e0a1e9b9750fe78a13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3535fec48e4944e0a1e9b9750fe78a13.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Xc97F2fRwJPj5pWiXk_vOEtoqA=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.810443+00 2025-12-09 10:15:20.810449+00 13408 LJH1705-10#绿色 SPMX-20240815308600 \N \N \N 1 \N [{"file_id": "4e444dba-b71f-4875-ab77-32a5ea6814e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1611694b4004be88ee392f948ba7839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1611694b4004be88ee392f948ba7839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1611694b4004be88ee392f948ba7839.jpg", "file_size": 54032, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1611694b4004be88ee392f948ba7839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1611694b4004be88ee392f948ba7839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1611694b4004be88ee392f948ba7839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1611694b4004be88ee392f948ba7839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1611694b4004be88ee392f948ba7839.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qy1mHfYekGXs7hTgeKrm6FbiH1w=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.821657+00 2025-12-09 10:15:20.821663+00 13413 C8086FWE#VS-D3 SPMX-20240815308609 \N \N \N 1 \N [{"file_id": "3be5b5bf-8887-4e5a-95c8-7e26ce1f62c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b037b2f49434e7e88197345ee2613f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b037b2f49434e7e88197345ee2613f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b037b2f49434e7e88197345ee2613f6.jpg", "file_size": 13964, "is_delete": false, "file_type": 1, "original_file_name": "C8086FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b037b2f49434e7e88197345ee2613f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b037b2f49434e7e88197345ee2613f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b037b2f49434e7e88197345ee2613f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b037b2f49434e7e88197345ee2613f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b037b2f49434e7e88197345ee2613f6.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQQ55sMz_zLarZYg-kxOHg3uKwc=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.812698+00 2025-12-09 10:15:20.812708+00 13409 LZ1317#背心款2号色 SPMX-20240815308594 \N \N \N 1 \N [{"file_id": "8b07c06a-d754-4d8d-bce7-b4cc5e075355", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0d757e55ac4fb58e1434d28389cd6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0d757e55ac4fb58e1434d28389cd6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0d757e55ac4fb58e1434d28389cd6d.jpg", "file_size": 18945, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0d757e55ac4fb58e1434d28389cd6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0d757e55ac4fb58e1434d28389cd6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0d757e55ac4fb58e1434d28389cd6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0d757e55ac4fb58e1434d28389cd6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0d757e55ac4fb58e1434d28389cd6d.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xvui_6eVHjzSxHizqIYqByFpZDY=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.815047+00 2025-12-09 10:15:20.815053+00 13410 0005-26#前幅 SPMX-20240815308602 \N \N \N 1 \N [{"file_id": "461f6da9-7d3c-4167-8e9e-9ee11ff27e7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "586098e73ae04cc4b44f19beb09dc3e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "586098e73ae04cc4b44f19beb09dc3e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "586098e73ae04cc4b44f19beb09dc3e9.jpg", "file_size": 14523, "is_delete": false, "file_type": 1, "original_file_name": "0005-26#前幅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586098e73ae04cc4b44f19beb09dc3e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586098e73ae04cc4b44f19beb09dc3e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/586098e73ae04cc4b44f19beb09dc3e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/586098e73ae04cc4b44f19beb09dc3e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/586098e73ae04cc4b44f19beb09dc3e9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_81FI5s7jqsizr4TPK10-Fjg7as=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.817222+00 2025-12-09 10:15:20.817227+00 13411 DL31083#前幅红色 SPMX-20240815308593 \N \N \N 1 \N [{"file_id": "8f89d4e8-8bd2-4003-870a-912e90c499fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c381d2cad84492c8e64b8e8054775e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c381d2cad84492c8e64b8e8054775e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c381d2cad84492c8e64b8e8054775e7.jpg", "file_size": 14953, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#前幅红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c381d2cad84492c8e64b8e8054775e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c381d2cad84492c8e64b8e8054775e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c381d2cad84492c8e64b8e8054775e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c381d2cad84492c8e64b8e8054775e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c381d2cad84492c8e64b8e8054775e7.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXCJgiQMEj5-iMB0U3aLpKhIXnk=", "createTime": "2024-08-15 14:55:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.819372+00 2025-12-09 10:15:20.819378+00 13412 C808#蓝色 SPMX-20240815308599 \N \N \N 1 \N [{"file_id": "5897a645-3c5f-42fa-ab73-ed82536d1d52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d550cea8ddf94375b6a53fe0507f04f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d550cea8ddf94375b6a53fe0507f04f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d550cea8ddf94375b6a53fe0507f04f8.jpg", "file_size": 22242, "is_delete": false, "file_type": 1, "original_file_name": "C808#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d550cea8ddf94375b6a53fe0507f04f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d550cea8ddf94375b6a53fe0507f04f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d550cea8ddf94375b6a53fe0507f04f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d550cea8ddf94375b6a53fe0507f04f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d550cea8ddf94375b6a53fe0507f04f8.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gq19KMPyucFEe2JYIs2Hmnloefw=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.823832+00 2025-12-09 10:15:20.823837+00 13414 FM012#枣红配杏色 SPMX-20240815308606 \N \N \N 1 \N [{"file_id": "255e21f5-fd04-45ab-a0e4-9ca92eced6ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c54dd0bb3ed44b989adb371b0506595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c54dd0bb3ed44b989adb371b0506595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c54dd0bb3ed44b989adb371b0506595.jpg", "file_size": 11490, "is_delete": false, "file_type": 1, "original_file_name": "FM012#枣红配杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54dd0bb3ed44b989adb371b0506595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54dd0bb3ed44b989adb371b0506595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c54dd0bb3ed44b989adb371b0506595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c54dd0bb3ed44b989adb371b0506595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c54dd0bb3ed44b989adb371b0506595.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KtrbXTMwCiyi628PdSI3kEJYdo=", "createTime": "2024-08-15 14:55:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.827897+00 2025-12-09 10:15:20.827903+00 13416 8322FWE#XL VS-D3 SPMX-20240815308612 \N \N \N 1 \N [{"file_id": "6cba9c6e-40d5-4cd1-9a86-2196e9e37690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cc1ec1aa3034821b496889d3c9e6c0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cc1ec1aa3034821b496889d3c9e6c0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cc1ec1aa3034821b496889d3c9e6c0b.jpg", "file_size": 19107, "is_delete": false, "file_type": 1, "original_file_name": "8322FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cc1ec1aa3034821b496889d3c9e6c0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cc1ec1aa3034821b496889d3c9e6c0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cc1ec1aa3034821b496889d3c9e6c0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cc1ec1aa3034821b496889d3c9e6c0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cc1ec1aa3034821b496889d3c9e6c0b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Z4gdqx8GcNSa8XevMzgtP1W-zY=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.829916+00 2025-12-09 10:15:20.829922+00 13417 LZ1317#背心款4号色 SPMX-20240815308610 \N \N \N 1 \N [{"file_id": "e78b95fb-51ec-4b34-a01f-0b633bb84f13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47ee14ff175e4ce1b03b9ac6c1184015.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47ee14ff175e4ce1b03b9ac6c1184015.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47ee14ff175e4ce1b03b9ac6c1184015.jpg", "file_size": 19461, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ee14ff175e4ce1b03b9ac6c1184015.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ee14ff175e4ce1b03b9ac6c1184015.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ee14ff175e4ce1b03b9ac6c1184015.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47ee14ff175e4ce1b03b9ac6c1184015.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47ee14ff175e4ce1b03b9ac6c1184015.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5EV5Je0h_oTW0h6S1I16u8sYDo=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.831942+00 2025-12-09 10:15:20.831947+00 13418 23-2121#A4-领子3XL SPMX-20240815308607 \N \N \N 1 \N [{"file_id": "b722b4ed-0cc7-466a-9da3-4bb9eec48d81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68f21cdcfb884179a8014581c1534935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68f21cdcfb884179a8014581c1534935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68f21cdcfb884179a8014581c1534935.jpg", "file_size": 13500, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f21cdcfb884179a8014581c1534935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f21cdcfb884179a8014581c1534935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f21cdcfb884179a8014581c1534935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68f21cdcfb884179a8014581c1534935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68f21cdcfb884179a8014581c1534935.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QeI_-0MV2mN9b0wy_Fw8OeLcF2k=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.833979+00 2025-12-09 10:15:20.833984+00 13419 JTSS450FW#VS-D3 SPMX-20240815308608 \N \N \N 1 \N [{"file_id": "a2e46882-ab93-4ec4-807a-74c8e4d58dd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa0bb1632c7f4843b3082cce400925b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa0bb1632c7f4843b3082cce400925b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa0bb1632c7f4843b3082cce400925b2.jpg", "file_size": 19631, "is_delete": false, "file_type": 1, "original_file_name": "JTSS450FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0bb1632c7f4843b3082cce400925b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0bb1632c7f4843b3082cce400925b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa0bb1632c7f4843b3082cce400925b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa0bb1632c7f4843b3082cce400925b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa0bb1632c7f4843b3082cce400925b2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHkqY9NDnBUleSgL0NmHkWJ11Qk=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.825886+00 2025-12-09 10:15:20.825891+00 13415 LJH1705-10#蓝色 SPMX-20240815308614 \N \N \N 1 \N [{"file_id": "bb403d07-2be6-4979-a57c-32f9e2a2d0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eff40bb01ae40dcaf0bfc49ba9112e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eff40bb01ae40dcaf0bfc49ba9112e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eff40bb01ae40dcaf0bfc49ba9112e8.jpg", "file_size": 59431, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eff40bb01ae40dcaf0bfc49ba9112e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eff40bb01ae40dcaf0bfc49ba9112e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eff40bb01ae40dcaf0bfc49ba9112e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eff40bb01ae40dcaf0bfc49ba9112e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eff40bb01ae40dcaf0bfc49ba9112e8.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pZkflYXAqb2lSC9Dg54635vbFs=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.838228+00 2025-12-09 10:15:20.838235+00 13420 DL31083#批布亮黄 SPMX-20240815308611 \N \N \N 1 \N [{"file_id": "c6f6ed4a-2610-4b8d-bd24-2b216d64fad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9190a6dc538d4d75966863a93b44b514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9190a6dc538d4d75966863a93b44b514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9190a6dc538d4d75966863a93b44b514.jpg", "file_size": 18955, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190a6dc538d4d75966863a93b44b514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190a6dc538d4d75966863a93b44b514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9190a6dc538d4d75966863a93b44b514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9190a6dc538d4d75966863a93b44b514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9190a6dc538d4d75966863a93b44b514.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mIgwefrxtYdk7uAAFcmzqbhyHH8=", "createTime": "2024-08-15 14:55:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.840301+00 2025-12-09 10:15:20.840307+00 13421 LZ1317#背心款5号色 SPMX-20240815308618 \N \N \N 1 \N [{"file_id": "2b50d77f-1c20-4b6d-8b86-5a87421de774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "424a60762f834f91a3891d928d19c811.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "424a60762f834f91a3891d928d19c811.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "424a60762f834f91a3891d928d19c811.jpg", "file_size": 18379, "is_delete": false, "file_type": 1, "original_file_name": "LZ1317#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424a60762f834f91a3891d928d19c811.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424a60762f834f91a3891d928d19c811.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424a60762f834f91a3891d928d19c811.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/424a60762f834f91a3891d928d19c811.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/424a60762f834f91a3891d928d19c811.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0j06ioLAf6FL0I49BaKZbK0Az8=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.842655+00 2025-12-09 10:15:20.84266+00 13422 1166FWF#绿色 SPMX-20240815308616 \N \N \N 1 \N [{"file_id": "6df8bf9c-8f04-494a-a308-fd5f069fa694", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b114fc7544094c55a1e2abc4ea745dd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b114fc7544094c55a1e2abc4ea745dd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b114fc7544094c55a1e2abc4ea745dd5.jpg", "file_size": 26924, "is_delete": false, "file_type": 1, "original_file_name": "1166FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b114fc7544094c55a1e2abc4ea745dd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b114fc7544094c55a1e2abc4ea745dd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b114fc7544094c55a1e2abc4ea745dd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b114fc7544094c55a1e2abc4ea745dd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b114fc7544094c55a1e2abc4ea745dd5.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nsYBH9LsLHF_X7z_k_SZKtsZek=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.845167+00 2025-12-09 10:15:20.845171+00 13423 JTSS460FW#VS-D3 SPMX-20240815308617 \N \N \N 1 \N [{"file_id": "f66a6346-84ed-4800-9824-551e42a66179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be1b1b1b53784890805c51b616a8bec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be1b1b1b53784890805c51b616a8bec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be1b1b1b53784890805c51b616a8bec9.jpg", "file_size": 11374, "is_delete": false, "file_type": 1, "original_file_name": "JTSS460FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1b1b1b53784890805c51b616a8bec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1b1b1b53784890805c51b616a8bec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be1b1b1b53784890805c51b616a8bec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be1b1b1b53784890805c51b616a8bec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be1b1b1b53784890805c51b616a8bec9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpxXA-nXd1sYKXnHRMazt_qZmuI=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.847193+00 2025-12-09 10:15:20.847198+00 13424 23-2121#A4-领子4XL SPMX-20240815308619 \N \N \N 1 \N [{"file_id": "e63847c7-ace5-4848-89e6-e9cf05891a27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dc0cf9ef891443ab5e04f31f66be5a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dc0cf9ef891443ab5e04f31f66be5a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dc0cf9ef891443ab5e04f31f66be5a0.jpg", "file_size": 13744, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc0cf9ef891443ab5e04f31f66be5a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc0cf9ef891443ab5e04f31f66be5a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dc0cf9ef891443ab5e04f31f66be5a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dc0cf9ef891443ab5e04f31f66be5a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dc0cf9ef891443ab5e04f31f66be5a0.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gczieYdjXFY-Ody68vjb_eVeq4=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.849144+00 2025-12-09 10:15:20.849148+00 13425 LJH1705-10#黑色 SPMX-20240815308620 \N \N \N 1 \N [{"file_id": "b58cbc1f-0a36-4393-86ba-aed3102e1f1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cfa20abfa7845008fadda69a678d8c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cfa20abfa7845008fadda69a678d8c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cfa20abfa7845008fadda69a678d8c9.jpg", "file_size": 52075, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-10#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfa20abfa7845008fadda69a678d8c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfa20abfa7845008fadda69a678d8c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cfa20abfa7845008fadda69a678d8c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cfa20abfa7845008fadda69a678d8c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cfa20abfa7845008fadda69a678d8c9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8tVSEDMBwXZV9K3KY9STtT5U7c=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.851096+00 2025-12-09 10:15:20.8511+00 13426 C820#WJC22 SPMX-20240815308621 \N \N \N 1 \N [{"file_id": "174786bc-e567-466b-b514-bc5365953e10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08276cba9094497fa62787380d2dabdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08276cba9094497fa62787380d2dabdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08276cba9094497fa62787380d2dabdf.jpg", "file_size": 22312, "is_delete": false, "file_type": 1, "original_file_name": "C820#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08276cba9094497fa62787380d2dabdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08276cba9094497fa62787380d2dabdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08276cba9094497fa62787380d2dabdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08276cba9094497fa62787380d2dabdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08276cba9094497fa62787380d2dabdf.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:97i7kg9ggEfYErdK2-nQpk9-_KE=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.853011+00 2025-12-09 10:15:20.853016+00 13427 0005-26#纯条子 SPMX-20240815308615 \N \N \N 1 \N [{"file_id": "e25c5341-dfb6-47f3-b592-16d3b36adfc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a0c0822467f4785b91641efa7c59762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a0c0822467f4785b91641efa7c59762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a0c0822467f4785b91641efa7c59762.jpg", "file_size": 9934, "is_delete": false, "file_type": 1, "original_file_name": "0005-26#纯条子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0c0822467f4785b91641efa7c59762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0c0822467f4785b91641efa7c59762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0c0822467f4785b91641efa7c59762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a0c0822467f4785b91641efa7c59762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a0c0822467f4785b91641efa7c59762.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ugomz6F32FMHtHN2YLkxDM-5lZo=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.854949+00 2025-12-09 10:15:20.854953+00 13428 8323FWE#VS-D3 SPMX-20240815308622 \N \N \N 1 \N [{"file_id": "b9139247-3257-496e-b7a4-c058e65531c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a38e73f8d40044018c2a066bce96a487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a38e73f8d40044018c2a066bce96a487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a38e73f8d40044018c2a066bce96a487.jpg", "file_size": 18610, "is_delete": false, "file_type": 1, "original_file_name": "8323FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38e73f8d40044018c2a066bce96a487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38e73f8d40044018c2a066bce96a487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38e73f8d40044018c2a066bce96a487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a38e73f8d40044018c2a066bce96a487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a38e73f8d40044018c2a066bce96a487.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHHvzidKph5aO_lAYEcsth78-lI=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.857062+00 2025-12-09 10:15:20.857065+00 13429 JTSS461FW#VS-D3 SPMX-20240815308628 \N \N \N 1 \N [{"file_id": "9425e747-8d2e-43c8-8698-df33b3af42a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78aafa0a97034d11998078b016d0a5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78aafa0a97034d11998078b016d0a5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78aafa0a97034d11998078b016d0a5cb.jpg", "file_size": 9148, "is_delete": false, "file_type": 1, "original_file_name": "JTSS461FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aafa0a97034d11998078b016d0a5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aafa0a97034d11998078b016d0a5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78aafa0a97034d11998078b016d0a5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78aafa0a97034d11998078b016d0a5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78aafa0a97034d11998078b016d0a5cb.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0dXDk9RXI2nehKiwsI8nKrmk110=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.858977+00 2025-12-09 10:15:20.858981+00 13430 LZ1318#捆条布 SPMX-20240815308629 \N \N \N 1 \N [{"file_id": "69437c74-8cae-421f-b5a0-501e3c3984f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e388f800cb324c2bac5d23fb4cd83eee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e388f800cb324c2bac5d23fb4cd83eee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e388f800cb324c2bac5d23fb4cd83eee.jpg", "file_size": 8043, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e388f800cb324c2bac5d23fb4cd83eee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e388f800cb324c2bac5d23fb4cd83eee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e388f800cb324c2bac5d23fb4cd83eee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e388f800cb324c2bac5d23fb4cd83eee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e388f800cb324c2bac5d23fb4cd83eee.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yICAvdjWuIWEoR8gWMuoJKNimjM=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.861117+00 2025-12-09 10:15:20.861121+00 13431 8326FWE#红 VS-D3 SPMX-20240815308630 \N \N \N 1 \N [{"file_id": "cf3dacbf-f85c-4bf6-8f2f-9bb85fca199d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fddceba809504b6a9f0381eae185b650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fddceba809504b6a9f0381eae185b650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fddceba809504b6a9f0381eae185b650.jpg", "file_size": 10424, "is_delete": false, "file_type": 1, "original_file_name": "8326FWE#红 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddceba809504b6a9f0381eae185b650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddceba809504b6a9f0381eae185b650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddceba809504b6a9f0381eae185b650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fddceba809504b6a9f0381eae185b650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fddceba809504b6a9f0381eae185b650.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qKb-bI5g_-1rHZHIA8sF--rrS_M=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.863029+00 2025-12-09 10:15:20.863033+00 13432 FM012#黑色配杏色 SPMX-20240815308623 \N \N \N 1 \N [{"file_id": "798c53e2-b585-40e5-8922-405b6d542721", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86f67ce5eda04913a02833272f0f4d4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86f67ce5eda04913a02833272f0f4d4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86f67ce5eda04913a02833272f0f4d4c.jpg", "file_size": 11134, "is_delete": false, "file_type": 1, "original_file_name": "FM012#黑色配杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f67ce5eda04913a02833272f0f4d4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f67ce5eda04913a02833272f0f4d4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f67ce5eda04913a02833272f0f4d4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86f67ce5eda04913a02833272f0f4d4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86f67ce5eda04913a02833272f0f4d4c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gY6H01lPrCxIqRSr-L8ta11rszo=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.864934+00 2025-12-09 10:15:20.864938+00 13433 DL31083#批布墨绿 SPMX-20240815308624 \N \N \N 1 \N [{"file_id": "f432b684-b2b5-4083-8f3b-86b0b23e36d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b07383be3244fc1a8292d23f153f153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b07383be3244fc1a8292d23f153f153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b07383be3244fc1a8292d23f153f153.jpg", "file_size": 19476, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b07383be3244fc1a8292d23f153f153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b07383be3244fc1a8292d23f153f153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b07383be3244fc1a8292d23f153f153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b07383be3244fc1a8292d23f153f153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b07383be3244fc1a8292d23f153f153.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8dno7PyqdNPCOXU9ub3HPepO9o=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.867094+00 2025-12-09 10:15:20.867098+00 13434 LJH1705-3#彩兰 SPMX-20240815308631 \N \N \N 1 \N [{"file_id": "54cec111-0f6c-417b-98e5-a0b84359c8b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85aa98b58cbb4f27a957fc906601b74f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85aa98b58cbb4f27a957fc906601b74f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85aa98b58cbb4f27a957fc906601b74f.jpg", "file_size": 37066, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-3#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85aa98b58cbb4f27a957fc906601b74f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85aa98b58cbb4f27a957fc906601b74f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85aa98b58cbb4f27a957fc906601b74f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85aa98b58cbb4f27a957fc906601b74f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85aa98b58cbb4f27a957fc906601b74f.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkyjutBfTluvQdDfgnjQSuknLYM=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.869009+00 2025-12-09 10:15:20.869013+00 13435 HT3342#绿色 SPMX-20240815308625 \N \N \N 1 \N [{"file_id": "a1d4b0ed-b7f6-4807-9f0b-f640064fd13e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7881d71066a440e69a41be617bfb9ef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7881d71066a440e69a41be617bfb9ef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7881d71066a440e69a41be617bfb9ef0.jpg", "file_size": 72634, "is_delete": false, "file_type": 1, "original_file_name": "HT3342#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7881d71066a440e69a41be617bfb9ef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7881d71066a440e69a41be617bfb9ef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7881d71066a440e69a41be617bfb9ef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7881d71066a440e69a41be617bfb9ef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7881d71066a440e69a41be617bfb9ef0.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJaro5ZYaL0NPZMN8BU3yAb6C40=", "createTime": "2024-08-15 14:55:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.87117+00 2025-12-09 10:15:20.871174+00 13436 0005-28#WJC22 SPMX-20240815308626 \N \N \N 1 \N [{"file_id": "840c5a13-5f25-43c8-a984-8bface906cf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb3c791550849e7969f5551acc8e816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb3c791550849e7969f5551acc8e816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb3c791550849e7969f5551acc8e816.jpg", "file_size": 15269, "is_delete": false, "file_type": 1, "original_file_name": "0005-28#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb3c791550849e7969f5551acc8e816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb3c791550849e7969f5551acc8e816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb3c791550849e7969f5551acc8e816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb3c791550849e7969f5551acc8e816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb3c791550849e7969f5551acc8e816.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkwoSY3RfBKY58xDB20tpC3xEp4=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.87307+00 2025-12-09 10:15:20.873074+00 13437 1166FWF#酒红 SPMX-20240815308627 \N \N \N 1 \N [{"file_id": "1e185ddc-c44e-496e-b64f-c1d9593e8ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a236fa8f367942ff940d59a2dbe573f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a236fa8f367942ff940d59a2dbe573f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a236fa8f367942ff940d59a2dbe573f7.jpg", "file_size": 26526, "is_delete": false, "file_type": 1, "original_file_name": "1166FWF#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a236fa8f367942ff940d59a2dbe573f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a236fa8f367942ff940d59a2dbe573f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a236fa8f367942ff940d59a2dbe573f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a236fa8f367942ff940d59a2dbe573f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a236fa8f367942ff940d59a2dbe573f7.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oz6mnu7Gp7t5dF5De4U4eBNdMDM=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.875198+00 2025-12-09 10:15:20.875202+00 13438 23-2121#A5白色3XL SPMX-20240815308632 \N \N \N 1 \N [{"file_id": "69e8c307-0e27-4d42-ac96-d75b4eba5168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f20f38b8c78d428d93074a862ded5c81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f20f38b8c78d428d93074a862ded5c81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f20f38b8c78d428d93074a862ded5c81.jpg", "file_size": 14006, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5白色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20f38b8c78d428d93074a862ded5c81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20f38b8c78d428d93074a862ded5c81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f20f38b8c78d428d93074a862ded5c81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f20f38b8c78d428d93074a862ded5c81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f20f38b8c78d428d93074a862ded5c81.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:me5lUBKN77-Cd4ouUCj_BB0j_Fw=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.877084+00 2025-12-09 10:15:20.877088+00 13439 JTSS462FW#VS-D3 SPMX-20240815308639 \N \N \N 1 \N [{"file_id": "6c4928ea-918f-41c7-8232-2b18909660f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b05c780489945ccb1e43f307c94f0c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b05c780489945ccb1e43f307c94f0c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b05c780489945ccb1e43f307c94f0c1.jpg", "file_size": 12694, "is_delete": false, "file_type": 1, "original_file_name": "JTSS462FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b05c780489945ccb1e43f307c94f0c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b05c780489945ccb1e43f307c94f0c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b05c780489945ccb1e43f307c94f0c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b05c780489945ccb1e43f307c94f0c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b05c780489945ccb1e43f307c94f0c1.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xM5wUAsPDw71b1W4IKKdGFutiag=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.879238+00 2025-12-09 10:15:20.879242+00 13440 LJH1705-3#玫红 SPMX-20240815308641 \N \N \N 1 \N [{"file_id": "2789f336-ed22-4327-84a9-58cf5fbb7168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c5bc8004e3477e8dd650fccf4d0b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c5bc8004e3477e8dd650fccf4d0b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c5bc8004e3477e8dd650fccf4d0b84.jpg", "file_size": 36950, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-3#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c5bc8004e3477e8dd650fccf4d0b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c5bc8004e3477e8dd650fccf4d0b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c5bc8004e3477e8dd650fccf4d0b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c5bc8004e3477e8dd650fccf4d0b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c5bc8004e3477e8dd650fccf4d0b84.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3t2Mq-cqNaECaAvqNJPTFl2WYsE=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.881172+00 2025-12-09 10:15:20.881177+00 13441 8326FWE#红 SPMX-20240815308642 \N \N \N 1 \N [{"file_id": "c05c1419-15bc-4d9d-a892-20d5d4b5276c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d672c980982f4c40a7043d238ebcf861.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d672c980982f4c40a7043d238ebcf861.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d672c980982f4c40a7043d238ebcf861.jpg", "file_size": 8602, "is_delete": false, "file_type": 1, "original_file_name": "8326FWE#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d672c980982f4c40a7043d238ebcf861.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d672c980982f4c40a7043d238ebcf861.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d672c980982f4c40a7043d238ebcf861.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d672c980982f4c40a7043d238ebcf861.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d672c980982f4c40a7043d238ebcf861.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJWH9lxitI9BjmAbdTeA0TnD_M4=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.883296+00 2025-12-09 10:15:20.8833+00 13442 FM012#黑色配白色 SPMX-20240815308635 \N \N \N 1 \N [{"file_id": "aa3b68bf-5c73-43bc-822c-563f7d84a693", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40911bc3aef488e91867dfcc869e4f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40911bc3aef488e91867dfcc869e4f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40911bc3aef488e91867dfcc869e4f2.jpg", "file_size": 11479, "is_delete": false, "file_type": 1, "original_file_name": "FM012#黑色配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40911bc3aef488e91867dfcc869e4f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40911bc3aef488e91867dfcc869e4f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40911bc3aef488e91867dfcc869e4f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40911bc3aef488e91867dfcc869e4f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40911bc3aef488e91867dfcc869e4f2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSph7vlYpymawTzmhw4GoN0I6Ls=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.885179+00 2025-12-09 10:15:20.885184+00 13443 LZ1318#背心款1号色 SPMX-20240815308640 \N \N \N 1 \N [{"file_id": "1ae5aa70-008c-413d-83b5-43b7f0a5beaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg", "file_size": 17284, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8dc1ac7ed5b4ff491296fbc6f8ad815.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yo1MlMcRviaesUPQD_WshFb8uDQ=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.887471+00 2025-12-09 10:15:20.887476+00 13444 DL31083#批布彩兰 SPMX-20240815308634 \N \N \N 1 \N [{"file_id": "bfb4e437-0d61-466b-87da-06b307be8255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddfc9c06330a42619b17c44136229ac1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddfc9c06330a42619b17c44136229ac1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddfc9c06330a42619b17c44136229ac1.jpg", "file_size": 19291, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddfc9c06330a42619b17c44136229ac1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddfc9c06330a42619b17c44136229ac1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddfc9c06330a42619b17c44136229ac1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddfc9c06330a42619b17c44136229ac1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddfc9c06330a42619b17c44136229ac1.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TOWk17SgtTJdm2peYLBnKxBMtHU=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.889643+00 2025-12-09 10:15:20.889648+00 13445 0005-29#彩蓝 SPMX-20240815308637 \N \N \N 1 \N [{"file_id": "34c49a68-108b-4764-97ff-b34dbd2284a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8b756a77f79433bb88777cbd5c501e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8b756a77f79433bb88777cbd5c501e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8b756a77f79433bb88777cbd5c501e1.jpg", "file_size": 8888, "is_delete": false, "file_type": 1, "original_file_name": "0005-29#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b756a77f79433bb88777cbd5c501e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b756a77f79433bb88777cbd5c501e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b756a77f79433bb88777cbd5c501e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8b756a77f79433bb88777cbd5c501e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8b756a77f79433bb88777cbd5c501e1.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c967bPdBo38ad-x8jHbggEAEEgY=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.891765+00 2025-12-09 10:15:20.89177+00 13446 HT3342#黄绿色 SPMX-20240815308638 \N \N \N 1 \N [{"file_id": "304e9f11-afd3-4222-8070-1743a53d8697", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cea1194c1d82400492ff0458a10d1fae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cea1194c1d82400492ff0458a10d1fae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cea1194c1d82400492ff0458a10d1fae.jpg", "file_size": 75255, "is_delete": false, "file_type": 1, "original_file_name": "HT3342#黄绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea1194c1d82400492ff0458a10d1fae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea1194c1d82400492ff0458a10d1fae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea1194c1d82400492ff0458a10d1fae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cea1194c1d82400492ff0458a10d1fae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cea1194c1d82400492ff0458a10d1fae.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K702vI13TGm9-R9_wX0a_EqeCeo=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.894071+00 2025-12-09 10:15:20.894077+00 13447 1166FWF#黄色 SPMX-20240815308636 \N \N \N 1 \N [{"file_id": "82aaecf1-773a-406e-8d45-497807623a3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "185f635a8d144078bf66212d5059286c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "185f635a8d144078bf66212d5059286c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "185f635a8d144078bf66212d5059286c.jpg", "file_size": 26780, "is_delete": false, "file_type": 1, "original_file_name": "1166FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/185f635a8d144078bf66212d5059286c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/185f635a8d144078bf66212d5059286c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/185f635a8d144078bf66212d5059286c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/185f635a8d144078bf66212d5059286c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/185f635a8d144078bf66212d5059286c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RiBPKNkWNKLSa4Tgn3ns8ciD_Hw=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.896439+00 2025-12-09 10:15:20.896444+00 13448 23-2121#A5白色4XL SPMX-20240815308643 \N \N \N 1 \N [{"file_id": "98fdb90d-506d-465a-b38f-0efc54c26388", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b9ac43e79ff475f921d53d93390d4e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b9ac43e79ff475f921d53d93390d4e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b9ac43e79ff475f921d53d93390d4e3.jpg", "file_size": 13111, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5白色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b9ac43e79ff475f921d53d93390d4e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b9ac43e79ff475f921d53d93390d4e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b9ac43e79ff475f921d53d93390d4e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b9ac43e79ff475f921d53d93390d4e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b9ac43e79ff475f921d53d93390d4e3.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lprPqDtG_Um1QBy7bxz559VZ2RM=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.898686+00 2025-12-09 10:15:20.898691+00 13449 C851#WJC22 SPMX-20240815308633 \N \N \N 1 \N [{"file_id": "118975bf-c4d5-4dea-91d6-eca42d227ef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f57d6f910f548aaa7e2ded779585ab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f57d6f910f548aaa7e2ded779585ab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f57d6f910f548aaa7e2ded779585ab2.jpg", "file_size": 22002, "is_delete": false, "file_type": 1, "original_file_name": "C851#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f57d6f910f548aaa7e2ded779585ab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f57d6f910f548aaa7e2ded779585ab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f57d6f910f548aaa7e2ded779585ab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f57d6f910f548aaa7e2ded779585ab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f57d6f910f548aaa7e2ded779585ab2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPzHsnQmIuAa010am7wOEYRlG-k=", "createTime": "2024-08-15 14:55:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.900635+00 2025-12-09 10:15:20.900639+00 13450 23-2121#A5黑白通用领子3XL SPMX-20240815308654 \N \N \N 1 \N [{"file_id": "f46ba700-4ced-4245-8aa9-f92e18c642ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4a36c221aec4ab38fa0ec2e29249fff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4a36c221aec4ab38fa0ec2e29249fff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4a36c221aec4ab38fa0ec2e29249fff.jpg", "file_size": 13799, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5黑白通用领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a36c221aec4ab38fa0ec2e29249fff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a36c221aec4ab38fa0ec2e29249fff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a36c221aec4ab38fa0ec2e29249fff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4a36c221aec4ab38fa0ec2e29249fff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4a36c221aec4ab38fa0ec2e29249fff.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L44TXgYXiXmEsUZ0UdxOen9_IRk=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.902568+00 2025-12-09 10:15:20.902572+00 13451 FM012#黑色配红色 SPMX-20240815308655 \N \N \N 1 \N [{"file_id": "bc01da7c-19d1-4efa-bfb1-25b638beaa10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab417bc930e54738b774bf7417b4ad79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab417bc930e54738b774bf7417b4ad79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab417bc930e54738b774bf7417b4ad79.jpg", "file_size": 11192, "is_delete": false, "file_type": 1, "original_file_name": "FM012#黑色配红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab417bc930e54738b774bf7417b4ad79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab417bc930e54738b774bf7417b4ad79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab417bc930e54738b774bf7417b4ad79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab417bc930e54738b774bf7417b4ad79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab417bc930e54738b774bf7417b4ad79.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYeKntr7bmaQv6lmdmMYUU3n-80=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.904502+00 2025-12-09 10:15:20.904506+00 13452 116A#-20875#-橙色 SPMX-20240815308656 \N \N \N 1 \N [{"file_id": "8d365c93-de40-4fee-be7f-b7d2e095977a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ec60c03b6de42588b071b9f22ee5a40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ec60c03b6de42588b071b9f22ee5a40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ec60c03b6de42588b071b9f22ee5a40.jpg", "file_size": 63422, "is_delete": false, "file_type": 1, "original_file_name": "116A#-20875#-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec60c03b6de42588b071b9f22ee5a40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec60c03b6de42588b071b9f22ee5a40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ec60c03b6de42588b071b9f22ee5a40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ec60c03b6de42588b071b9f22ee5a40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ec60c03b6de42588b071b9f22ee5a40.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DtwsHYRhYWYA__l8FlA9RP_WBQ=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.906448+00 2025-12-09 10:15:20.906453+00 13453 LZ1318#背心款2号色 SPMX-20240815308650 \N \N \N 1 \N [{"file_id": "a9cb3e3d-2bf9-44e6-8fa7-0b9de7ca3985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b3a316cf328479d9d677f775f59f17a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b3a316cf328479d9d677f775f59f17a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b3a316cf328479d9d677f775f59f17a.jpg", "file_size": 17457, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3a316cf328479d9d677f775f59f17a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3a316cf328479d9d677f775f59f17a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3a316cf328479d9d677f775f59f17a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b3a316cf328479d9d677f775f59f17a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b3a316cf328479d9d677f775f59f17a.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDt3udwuKDPBqDOPa5DXp4_U-M0=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.908368+00 2025-12-09 10:15:20.908372+00 13454 JTSS463FW#VS-D3 SPMX-20240815308652 \N \N \N 1 \N [{"file_id": "b352e620-3d22-4b72-9231-0822356b99af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3871c07a4f64193954890cc3844b9de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3871c07a4f64193954890cc3844b9de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3871c07a4f64193954890cc3844b9de.jpg", "file_size": 12422, "is_delete": false, "file_type": 1, "original_file_name": "JTSS463FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3871c07a4f64193954890cc3844b9de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3871c07a4f64193954890cc3844b9de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3871c07a4f64193954890cc3844b9de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3871c07a4f64193954890cc3844b9de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3871c07a4f64193954890cc3844b9de.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGN6ha78OPLja6D6YBT0VmnyJnQ=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.910505+00 2025-12-09 10:15:20.91051+00 13455 HT3343#橙色 SPMX-20240815308648 \N \N \N 1 \N [{"file_id": "62d3a238-438e-4663-b28a-8c1eaf88bf2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73c03db8136f4e1bab7763ac1b962120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73c03db8136f4e1bab7763ac1b962120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73c03db8136f4e1bab7763ac1b962120.jpg", "file_size": 21121, "is_delete": false, "file_type": 1, "original_file_name": "HT3343#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c03db8136f4e1bab7763ac1b962120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c03db8136f4e1bab7763ac1b962120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c03db8136f4e1bab7763ac1b962120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73c03db8136f4e1bab7763ac1b962120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73c03db8136f4e1bab7763ac1b962120.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:maJH66w70VJL9ZPMXCIL0JW5Omc=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.912442+00 2025-12-09 10:15:20.912446+00 13456 0005-29#彩蓝领净色 SPMX-20240815308649 \N \N \N 1 \N [{"file_id": "fab13e2c-67cf-478a-89de-068f496c976d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1109447b04c4aabb5cb8f280593db04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1109447b04c4aabb5cb8f280593db04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1109447b04c4aabb5cb8f280593db04.jpg", "file_size": 7584, "is_delete": false, "file_type": 1, "original_file_name": "0005-29#彩蓝领净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1109447b04c4aabb5cb8f280593db04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1109447b04c4aabb5cb8f280593db04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1109447b04c4aabb5cb8f280593db04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1109447b04c4aabb5cb8f280593db04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1109447b04c4aabb5cb8f280593db04.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XM8gAWhfJt30SzvLORa1G-RIs5g=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.914365+00 2025-12-09 10:15:20.914369+00 13457 DL31083#批布枣红 SPMX-20240815308644 \N \N \N 1 \N [{"file_id": "b54a389f-3cde-4103-ab18-977dc74545a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "640cb19cea504b2688d42051ad4e1030.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "640cb19cea504b2688d42051ad4e1030.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "640cb19cea504b2688d42051ad4e1030.jpg", "file_size": 19633, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640cb19cea504b2688d42051ad4e1030.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640cb19cea504b2688d42051ad4e1030.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/640cb19cea504b2688d42051ad4e1030.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/640cb19cea504b2688d42051ad4e1030.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/640cb19cea504b2688d42051ad4e1030.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5yRtPbp1l62lxvoVZ3YtdC087E=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.918411+00 2025-12-09 10:15:20.918415+00 13459 C856-1#WJC22 SPMX-20240815308645 \N \N \N 1 \N [{"file_id": "e15c45ba-0cb0-4723-b034-c777db72912f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1719ee24ebdb4a77aae565d8dc3dbb50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1719ee24ebdb4a77aae565d8dc3dbb50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1719ee24ebdb4a77aae565d8dc3dbb50.jpg", "file_size": 14714, "is_delete": false, "file_type": 1, "original_file_name": "C856-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1719ee24ebdb4a77aae565d8dc3dbb50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1719ee24ebdb4a77aae565d8dc3dbb50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1719ee24ebdb4a77aae565d8dc3dbb50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1719ee24ebdb4a77aae565d8dc3dbb50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1719ee24ebdb4a77aae565d8dc3dbb50.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_tAxQcWXPXbEhoPYRXUS_zICUA=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.916503+00 2025-12-09 10:15:20.916507+00 13458 FM012#黑色配粉色 SPMX-20240815308647 \N \N \N 1 \N [{"file_id": "2c242965-8d19-462b-beb2-3d9a7ede3b83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd34b4bf87004d3db407419509da08a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd34b4bf87004d3db407419509da08a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd34b4bf87004d3db407419509da08a7.jpg", "file_size": 11427, "is_delete": false, "file_type": 1, "original_file_name": "FM012#黑色配粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd34b4bf87004d3db407419509da08a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd34b4bf87004d3db407419509da08a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd34b4bf87004d3db407419509da08a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd34b4bf87004d3db407419509da08a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd34b4bf87004d3db407419509da08a7.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5OsdII899IhLlkLlancqnQCqZI=", "createTime": "2024-08-15 14:55:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.922724+00 2025-12-09 10:15:20.922729+00 13460 8326FWE#红净色 SPMX-20240815308653 \N \N \N 1 \N [{"file_id": "1b9e0efd-f6f8-4d02-ab15-f124d0faaf0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30b646f9a4c444308488d26078ba219d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30b646f9a4c444308488d26078ba219d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30b646f9a4c444308488d26078ba219d.jpg", "file_size": 8623, "is_delete": false, "file_type": 1, "original_file_name": "8326FWE#红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b646f9a4c444308488d26078ba219d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b646f9a4c444308488d26078ba219d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b646f9a4c444308488d26078ba219d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30b646f9a4c444308488d26078ba219d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30b646f9a4c444308488d26078ba219d.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eFCYeA5uWniJ-6x0MpADGpDiPrM=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.924659+00 2025-12-09 10:15:20.924663+00 13461 C859FWF#袖口L SPMX-20240815308657 \N \N \N 1 \N [{"file_id": "5d1570f0-65cd-4314-a086-62fd4d238c46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0a106c0d9f243bfbad2a3b5ca803a7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0a106c0d9f243bfbad2a3b5ca803a7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0a106c0d9f243bfbad2a3b5ca803a7a.jpg", "file_size": 14437, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#袖口L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0a106c0d9f243bfbad2a3b5ca803a7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0a106c0d9f243bfbad2a3b5ca803a7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0a106c0d9f243bfbad2a3b5ca803a7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0a106c0d9f243bfbad2a3b5ca803a7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0a106c0d9f243bfbad2a3b5ca803a7a.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMjY9t_AodhGnmu5Cjljlh2pGVU=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.926583+00 2025-12-09 10:15:20.926586+00 13462 LJH1705-3#绿色 SPMX-20240815308651 \N \N \N 1 \N [{"file_id": "60754710-79dd-4594-8d25-0c17662e1355", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14d20628e36b4fe787ac4042739cf512.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14d20628e36b4fe787ac4042739cf512.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14d20628e36b4fe787ac4042739cf512.jpg", "file_size": 36612, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d20628e36b4fe787ac4042739cf512.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d20628e36b4fe787ac4042739cf512.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d20628e36b4fe787ac4042739cf512.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14d20628e36b4fe787ac4042739cf512.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14d20628e36b4fe787ac4042739cf512.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anRgJbJcMziLAPGmJjtLrwMcokE=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.928494+00 2025-12-09 10:15:20.928498+00 13463 DL31083#批布玫红 SPMX-20240815308671 \N \N \N 1 \N [{"file_id": "9ce8bab1-4a4e-4cf2-a2d1-1d0e1be2d3b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea2a43a42e47464e92a4364418b2ddba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea2a43a42e47464e92a4364418b2ddba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea2a43a42e47464e92a4364418b2ddba.jpg", "file_size": 18641, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a43a42e47464e92a4364418b2ddba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a43a42e47464e92a4364418b2ddba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a43a42e47464e92a4364418b2ddba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea2a43a42e47464e92a4364418b2ddba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea2a43a42e47464e92a4364418b2ddba.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BEAsTf4SY-lAt1LmNCSEhYouGU=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.930645+00 2025-12-09 10:15:20.93065+00 13464 23-2121#A5黑白通用领子4XL SPMX-20240815308666 \N \N \N 1 \N [{"file_id": "661a749e-ca2b-4cc4-8d79-812bc16f73e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8efc97f53704ddd888c3d736cbf9fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8efc97f53704ddd888c3d736cbf9fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8efc97f53704ddd888c3d736cbf9fd8.jpg", "file_size": 14322, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5黑白通用领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8efc97f53704ddd888c3d736cbf9fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8efc97f53704ddd888c3d736cbf9fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8efc97f53704ddd888c3d736cbf9fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8efc97f53704ddd888c3d736cbf9fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8efc97f53704ddd888c3d736cbf9fd8.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoHmU7ooF9XG78xHKrHFwfMQcJY=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.93255+00 2025-12-09 10:15:20.932555+00 13465 C859FWF#袖口M SPMX-20240815308667 \N \N \N 1 \N [{"file_id": "7eb3dd33-ac18-4360-b186-d1aef2d8cb66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf9797f72cfa4bacb1b855ca3cbd1b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf9797f72cfa4bacb1b855ca3cbd1b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf9797f72cfa4bacb1b855ca3cbd1b87.jpg", "file_size": 14287, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#袖口M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9797f72cfa4bacb1b855ca3cbd1b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9797f72cfa4bacb1b855ca3cbd1b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9797f72cfa4bacb1b855ca3cbd1b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf9797f72cfa4bacb1b855ca3cbd1b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf9797f72cfa4bacb1b855ca3cbd1b87.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eAV_tPl8_Ir6cTu7j-y6u8Skdj0=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.934698+00 2025-12-09 10:15:20.934702+00 13466 0005-29#枣红领净色 SPMX-20240815308669 \N \N \N 1 \N [{"file_id": "e43036cf-e344-476a-b4aa-eb0e852c5d5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0a54d7d076e40b0ae5f991626de0315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0a54d7d076e40b0ae5f991626de0315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0a54d7d076e40b0ae5f991626de0315.jpg", "file_size": 7758, "is_delete": false, "file_type": 1, "original_file_name": "0005-29#枣红领净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a54d7d076e40b0ae5f991626de0315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a54d7d076e40b0ae5f991626de0315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a54d7d076e40b0ae5f991626de0315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0a54d7d076e40b0ae5f991626de0315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0a54d7d076e40b0ae5f991626de0315.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nu_nX6qedmgwPjhuSKurXr_7OxU=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.936613+00 2025-12-09 10:15:20.936617+00 13467 HT3343#蓝色 SPMX-20240815308660 \N \N \N 1 \N [{"file_id": "aed33246-94df-4a1b-b686-f098dc1a36d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70001c7e272645e68311b7b99c05426b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70001c7e272645e68311b7b99c05426b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70001c7e272645e68311b7b99c05426b.jpg", "file_size": 20650, "is_delete": false, "file_type": 1, "original_file_name": "HT3343#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70001c7e272645e68311b7b99c05426b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70001c7e272645e68311b7b99c05426b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70001c7e272645e68311b7b99c05426b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70001c7e272645e68311b7b99c05426b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70001c7e272645e68311b7b99c05426b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vE034K4RHkEy1SOimzXBYSSCr6w=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.93863+00 2025-12-09 10:15:20.938636+00 13468 LJH1705-3#黄色 SPMX-20240815308662 \N \N \N 1 \N [{"file_id": "89d51527-74c8-49ab-b136-68960d821881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7acf678898ef4dd687d8032b2a8a45fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7acf678898ef4dd687d8032b2a8a45fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7acf678898ef4dd687d8032b2a8a45fe.jpg", "file_size": 38815, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-3#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7acf678898ef4dd687d8032b2a8a45fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7acf678898ef4dd687d8032b2a8a45fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7acf678898ef4dd687d8032b2a8a45fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7acf678898ef4dd687d8032b2a8a45fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7acf678898ef4dd687d8032b2a8a45fe.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9_trKAbDTyi3po3--3-y2shVOo=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.941079+00 2025-12-09 10:15:20.941084+00 13469 8327#前幅L SPMX-20240815308664 \N \N \N 1 \N [{"file_id": "28258b92-2051-433f-b699-f29fbe22eef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e620b4b2a9c401ab39afcd8e827583c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e620b4b2a9c401ab39afcd8e827583c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e620b4b2a9c401ab39afcd8e827583c.jpg", "file_size": 15557, "is_delete": false, "file_type": 1, "original_file_name": "8327#前幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e620b4b2a9c401ab39afcd8e827583c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e620b4b2a9c401ab39afcd8e827583c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e620b4b2a9c401ab39afcd8e827583c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e620b4b2a9c401ab39afcd8e827583c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e620b4b2a9c401ab39afcd8e827583c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzAzvSexUprRphDfh2-vQuf964w=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.943455+00 2025-12-09 10:15:20.94346+00 13470 FM013#上身原版色配米白 SPMX-20240815308665 \N \N \N 1 \N [{"file_id": "1e45e217-b2b9-4b03-bda3-b2733f1e416b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77eb6c1a16e44439989b528c13c432bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77eb6c1a16e44439989b528c13c432bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77eb6c1a16e44439989b528c13c432bf.jpg", "file_size": 14378, "is_delete": false, "file_type": 1, "original_file_name": "FM013#上身原版色配米白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eb6c1a16e44439989b528c13c432bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eb6c1a16e44439989b528c13c432bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eb6c1a16e44439989b528c13c432bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77eb6c1a16e44439989b528c13c432bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77eb6c1a16e44439989b528c13c432bf.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aF-u6O_BdERpDTEEaldcu2EqTt0=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.945753+00 2025-12-09 10:15:20.945758+00 13471 LZ1318#背心款4号色 SPMX-20240815308670 \N \N \N 1 \N [{"file_id": "2fefc9cc-5798-4cde-b0c2-fa5c32af3f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "375bd36cc4b64dd9921219a0f31abad2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "375bd36cc4b64dd9921219a0f31abad2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "375bd36cc4b64dd9921219a0f31abad2.jpg", "file_size": 17282, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375bd36cc4b64dd9921219a0f31abad2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375bd36cc4b64dd9921219a0f31abad2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375bd36cc4b64dd9921219a0f31abad2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/375bd36cc4b64dd9921219a0f31abad2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/375bd36cc4b64dd9921219a0f31abad2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQxPZe1B2CD8XTUu4rmPbcbc6og=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.948026+00 2025-12-09 10:15:20.948032+00 13472 JTSS464FW#VS-D3 SPMX-20240815308663 \N \N \N 1 \N [{"file_id": "95108341-b441-4ca2-b1ce-3cb46c081989", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25eabb3dc4ec4622b508c66fda88c3ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25eabb3dc4ec4622b508c66fda88c3ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25eabb3dc4ec4622b508c66fda88c3ae.jpg", "file_size": 14071, "is_delete": false, "file_type": 1, "original_file_name": "JTSS464FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25eabb3dc4ec4622b508c66fda88c3ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25eabb3dc4ec4622b508c66fda88c3ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25eabb3dc4ec4622b508c66fda88c3ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25eabb3dc4ec4622b508c66fda88c3ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25eabb3dc4ec4622b508c66fda88c3ae.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VADnknBfEaQd4pIFVNvmJQ1mOXY=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.950077+00 2025-12-09 10:15:20.950082+00 13473 0005-29#枣红 SPMX-20240815308659 \N \N \N 1 \N [{"file_id": "1bf7165d-fa77-4b64-97d7-654730d12c7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25b857823a9449b4b98caf0b6cdc36a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25b857823a9449b4b98caf0b6cdc36a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25b857823a9449b4b98caf0b6cdc36a4.jpg", "file_size": 8402, "is_delete": false, "file_type": 1, "original_file_name": "0005-29#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b857823a9449b4b98caf0b6cdc36a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b857823a9449b4b98caf0b6cdc36a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b857823a9449b4b98caf0b6cdc36a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25b857823a9449b4b98caf0b6cdc36a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25b857823a9449b4b98caf0b6cdc36a4.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZqLK3iie77YTC8hr_zWrrkDAA4Q=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.952142+00 2025-12-09 10:15:20.952147+00 13474 LZ1318#背心款3号色 SPMX-20240815308661 \N \N \N 1 \N [{"file_id": "3ca915e0-f241-471a-83df-5183c18b883d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5716d81a3d19471ca7d0c249148eebb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5716d81a3d19471ca7d0c249148eebb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5716d81a3d19471ca7d0c249148eebb2.jpg", "file_size": 18042, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5716d81a3d19471ca7d0c249148eebb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5716d81a3d19471ca7d0c249148eebb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5716d81a3d19471ca7d0c249148eebb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5716d81a3d19471ca7d0c249148eebb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5716d81a3d19471ca7d0c249148eebb2.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_bhDJbQ6EHAsZNQ-xtHfcRbRN4=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.95451+00 2025-12-09 10:15:20.954515+00 13475 HT3345#绿色 SPMX-20240815308672 \N \N \N 1 \N [{"file_id": "c89c169c-f94a-4c95-b8a1-9f81b1c43a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c376269cd01c43fe81978e559b0b251c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c376269cd01c43fe81978e559b0b251c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c376269cd01c43fe81978e559b0b251c.jpg", "file_size": 84651, "is_delete": false, "file_type": 1, "original_file_name": "HT3345#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c376269cd01c43fe81978e559b0b251c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c376269cd01c43fe81978e559b0b251c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c376269cd01c43fe81978e559b0b251c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c376269cd01c43fe81978e559b0b251c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c376269cd01c43fe81978e559b0b251c.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWwvRda8Ak4spjPHAW_0BmjCOtg=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.956683+00 2025-12-09 10:15:20.956689+00 13476 LJH1705-4#彩蓝 SPMX-20240815308673 \N \N \N 1 \N [{"file_id": "9a787cd3-a76c-41c6-8223-5b3826eb4870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60c0d831c30a4ddabc2bb94e1e51c441.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60c0d831c30a4ddabc2bb94e1e51c441.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60c0d831c30a4ddabc2bb94e1e51c441.jpg", "file_size": 62453, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-4#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c0d831c30a4ddabc2bb94e1e51c441.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c0d831c30a4ddabc2bb94e1e51c441.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60c0d831c30a4ddabc2bb94e1e51c441.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60c0d831c30a4ddabc2bb94e1e51c441.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60c0d831c30a4ddabc2bb94e1e51c441.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4n68o5lvD1vCuYJKJO33SXDIW4=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.958959+00 2025-12-09 10:15:20.958964+00 13477 8327#前幅M SPMX-20240815308674 \N \N \N 1 \N [{"file_id": "fa4824f8-8351-4b1f-884c-c921248d7a66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ac2278854f944a7b3df36e89a15ca2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ac2278854f944a7b3df36e89a15ca2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ac2278854f944a7b3df36e89a15ca2a.jpg", "file_size": 15502, "is_delete": false, "file_type": 1, "original_file_name": "8327#前幅M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ac2278854f944a7b3df36e89a15ca2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ac2278854f944a7b3df36e89a15ca2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ac2278854f944a7b3df36e89a15ca2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ac2278854f944a7b3df36e89a15ca2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ac2278854f944a7b3df36e89a15ca2a.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1idSQdd2ALtQM4JHbBt8zU2eaXw=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.961039+00 2025-12-09 10:15:20.961045+00 13478 DL31083#批布浅粉 SPMX-20240815308658 \N \N \N 1 \N [{"file_id": "ff5225e3-379e-44a5-9cca-b32a6018e1ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1906e48ee8f4a299a1a890d878122c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1906e48ee8f4a299a1a890d878122c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1906e48ee8f4a299a1a890d878122c9.jpg", "file_size": 18555, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1906e48ee8f4a299a1a890d878122c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1906e48ee8f4a299a1a890d878122c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1906e48ee8f4a299a1a890d878122c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1906e48ee8f4a299a1a890d878122c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1906e48ee8f4a299a1a890d878122c9.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3h2LdRSZP8y6fItDg9jdTXQVdLU=", "createTime": "2024-08-15 14:55:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.963096+00 2025-12-09 10:15:20.963102+00 13479 116A#-20875#-紫色 SPMX-20240815308668 \N \N \N 1 \N [{"file_id": "ead657c2-7736-4c0c-bceb-eaf2564123b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0decce87c7e64b94a9a75c666a73316b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0decce87c7e64b94a9a75c666a73316b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0decce87c7e64b94a9a75c666a73316b.jpg", "file_size": 63586, "is_delete": false, "file_type": 1, "original_file_name": "116A#-20875#-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decce87c7e64b94a9a75c666a73316b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decce87c7e64b94a9a75c666a73316b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decce87c7e64b94a9a75c666a73316b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0decce87c7e64b94a9a75c666a73316b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0decce87c7e64b94a9a75c666a73316b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6yOAKyf56Cur2q3DqLXPZhFyrao=", "createTime": "2024-08-15 14:55:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.96517+00 2025-12-09 10:15:20.965175+00 13480 C859FWF#袖口S SPMX-20240815308677 \N \N \N 1 \N [{"file_id": "cecd1c46-ddea-43c9-a5cc-2fd48d1916b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1f9843b3d0e4a6fb86f886a32ce8adb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1f9843b3d0e4a6fb86f886a32ce8adb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1f9843b3d0e4a6fb86f886a32ce8adb.jpg", "file_size": 14329, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#袖口S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f9843b3d0e4a6fb86f886a32ce8adb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f9843b3d0e4a6fb86f886a32ce8adb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f9843b3d0e4a6fb86f886a32ce8adb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1f9843b3d0e4a6fb86f886a32ce8adb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1f9843b3d0e4a6fb86f886a32ce8adb.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XG-O4rOos5pneSNBhwqBoNKWenM=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.967232+00 2025-12-09 10:15:20.967237+00 13481 HT3345#蓝色 SPMX-20240815308685 \N \N \N 1 \N [{"file_id": "aabf82f5-6631-49bc-96df-5580ab44d494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fab9ea3feb343b5ae2c37037d3e9f9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fab9ea3feb343b5ae2c37037d3e9f9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fab9ea3feb343b5ae2c37037d3e9f9b.jpg", "file_size": 85830, "is_delete": false, "file_type": 1, "original_file_name": "HT3345#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fab9ea3feb343b5ae2c37037d3e9f9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fab9ea3feb343b5ae2c37037d3e9f9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fab9ea3feb343b5ae2c37037d3e9f9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fab9ea3feb343b5ae2c37037d3e9f9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fab9ea3feb343b5ae2c37037d3e9f9b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wr-X-RxybFv9g_-ybPv3Q-khUQw=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.969279+00 2025-12-09 10:15:20.969285+00 13482 DL31083#批布红色 SPMX-20240815308682 \N \N \N 1 \N [{"file_id": "6a6221e3-faf8-403d-a4cc-a2834a0ab485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4259d22d6da44ed494ccd3a6336db12b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4259d22d6da44ed494ccd3a6336db12b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4259d22d6da44ed494ccd3a6336db12b.jpg", "file_size": 23682, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4259d22d6da44ed494ccd3a6336db12b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4259d22d6da44ed494ccd3a6336db12b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4259d22d6da44ed494ccd3a6336db12b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4259d22d6da44ed494ccd3a6336db12b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4259d22d6da44ed494ccd3a6336db12b.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BVvFzGUaeWCmUFJ_n6yFOCmiRrk=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.971653+00 2025-12-09 10:15:20.971658+00 13483 FM013#上身彩蓝配白色 SPMX-20240815308676 \N \N \N 1 \N [{"file_id": "69f5f581-206b-4341-ade7-ed2fb9239efa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d5a65279d9f43209efac2a90b7d9e13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d5a65279d9f43209efac2a90b7d9e13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d5a65279d9f43209efac2a90b7d9e13.jpg", "file_size": 17424, "is_delete": false, "file_type": 1, "original_file_name": "FM013#上身彩蓝配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d5a65279d9f43209efac2a90b7d9e13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d5a65279d9f43209efac2a90b7d9e13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d5a65279d9f43209efac2a90b7d9e13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d5a65279d9f43209efac2a90b7d9e13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d5a65279d9f43209efac2a90b7d9e13.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YL9nYTyz2gwHfOXGgDnFfGuMnDg=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.973949+00 2025-12-09 10:15:20.973954+00 13484 LZ1318#背心款5号色 SPMX-20240815308679 \N \N \N 1 \N [{"file_id": "c1c3b73e-f090-46c6-ab7f-213198332ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5368203e5a0490a92bca45310319380.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5368203e5a0490a92bca45310319380.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5368203e5a0490a92bca45310319380.jpg", "file_size": 17710, "is_delete": false, "file_type": 1, "original_file_name": "LZ1318#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5368203e5a0490a92bca45310319380.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5368203e5a0490a92bca45310319380.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5368203e5a0490a92bca45310319380.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5368203e5a0490a92bca45310319380.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5368203e5a0490a92bca45310319380.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBU5GY9lJm0LmFZMJMN2FbYuGhQ=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.976191+00 2025-12-09 10:15:20.976197+00 13485 0005-2FWE#咖啡色 SPMX-20240815308680 \N \N \N 1 \N [{"file_id": "c9bced12-2887-469c-938b-637f3126c1a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "374503cc7ea646c0ab056c44f87a6b00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "374503cc7ea646c0ab056c44f87a6b00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "374503cc7ea646c0ab056c44f87a6b00.jpg", "file_size": 11073, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWE#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374503cc7ea646c0ab056c44f87a6b00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374503cc7ea646c0ab056c44f87a6b00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374503cc7ea646c0ab056c44f87a6b00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/374503cc7ea646c0ab056c44f87a6b00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/374503cc7ea646c0ab056c44f87a6b00.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQP_PsCsgXMwcqq0cnaNyj5WuDg=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:20.978258+00 2025-12-09 10:15:20.978264+00 13486 LJH1705-4#玫红 SPMX-20240815308684 \N \N \N 1 \N [{"file_id": "ee7b6e43-6f89-4099-88aa-fdf1ad1d897a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df230bab52004f6f966e2326b16afba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df230bab52004f6f966e2326b16afba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df230bab52004f6f966e2326b16afba4.jpg", "file_size": 61292, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-4#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df230bab52004f6f966e2326b16afba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df230bab52004f6f966e2326b16afba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df230bab52004f6f966e2326b16afba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df230bab52004f6f966e2326b16afba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df230bab52004f6f966e2326b16afba4.jpg?e=1765361720&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDJzmQUyc0rhp9KQ3b8rj-vO5xY=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.702108+00 2025-12-09 10:15:21.702119+00 13487 JTSS465FW#VS-D3 SPMX-20240815308675 \N \N \N 1 \N [{"file_id": "6c768539-78ad-465a-9351-3b754cd3c6d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c455d1f4af341e49a6258b1c0055c57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c455d1f4af341e49a6258b1c0055c57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c455d1f4af341e49a6258b1c0055c57.jpg", "file_size": 13171, "is_delete": false, "file_type": 1, "original_file_name": "JTSS465FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c455d1f4af341e49a6258b1c0055c57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c455d1f4af341e49a6258b1c0055c57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c455d1f4af341e49a6258b1c0055c57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c455d1f4af341e49a6258b1c0055c57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c455d1f4af341e49a6258b1c0055c57.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WV2QCWqcXCTA7kDQhpJgp_83OLo=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.705814+00 2025-12-09 10:15:21.705826+00 13488 23-2121#A5黑色3XL SPMX-20240815308678 \N \N \N 1 \N [{"file_id": "0f440acd-9e8a-4c2e-93cb-d119f3dbbfc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c521743d94e4d4ca6e6a3072fdf34b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c521743d94e4d4ca6e6a3072fdf34b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c521743d94e4d4ca6e6a3072fdf34b8.jpg", "file_size": 15686, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5黑色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c521743d94e4d4ca6e6a3072fdf34b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c521743d94e4d4ca6e6a3072fdf34b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c521743d94e4d4ca6e6a3072fdf34b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c521743d94e4d4ca6e6a3072fdf34b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c521743d94e4d4ca6e6a3072fdf34b8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsT0o_wFD3HhQO2-pnGq-R0r4u0=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.709006+00 2025-12-09 10:15:21.709016+00 13489 FM013#上身桔红配白色 SPMX-20240815308686 \N \N \N 1 \N [{"file_id": "e03d6c30-1bd5-4855-87a2-cf010af8509f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a7a1e2e374d4691b162598256a488dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a7a1e2e374d4691b162598256a488dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a7a1e2e374d4691b162598256a488dd.jpg", "file_size": 17257, "is_delete": false, "file_type": 1, "original_file_name": "FM013#上身桔红配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7a1e2e374d4691b162598256a488dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7a1e2e374d4691b162598256a488dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a7a1e2e374d4691b162598256a488dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a7a1e2e374d4691b162598256a488dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a7a1e2e374d4691b162598256a488dd.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KD63yy012nn5UyqFmM8gXtH_MFw=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.711569+00 2025-12-09 10:15:21.711575+00 13490 C859FWF#袖口XL SPMX-20240815308689 \N \N \N 1 \N [{"file_id": "bc6aa9c1-5c2b-41ea-95e9-002cbfef84f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a003275a4c641059594db07dc8b0922.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a003275a4c641059594db07dc8b0922.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a003275a4c641059594db07dc8b0922.jpg", "file_size": 14881, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#袖口XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a003275a4c641059594db07dc8b0922.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a003275a4c641059594db07dc8b0922.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a003275a4c641059594db07dc8b0922.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a003275a4c641059594db07dc8b0922.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a003275a4c641059594db07dc8b0922.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NYwMeajWyvNOD3McRw24xGEzqnM=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.714056+00 2025-12-09 10:15:21.714061+00 13491 23-2121#A5黑色4XL SPMX-20240815308690 \N \N \N 1 \N [{"file_id": "79b9d35d-f4a7-4f0b-9460-69812558ed95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c584963e8844816ba22b498f940a47d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c584963e8844816ba22b498f940a47d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c584963e8844816ba22b498f940a47d.jpg", "file_size": 14867, "is_delete": false, "file_type": 1, "original_file_name": "23-2121#A5黑色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c584963e8844816ba22b498f940a47d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c584963e8844816ba22b498f940a47d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c584963e8844816ba22b498f940a47d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c584963e8844816ba22b498f940a47d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c584963e8844816ba22b498f940a47d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDdEFQdIZgBZuGXd3f7AuG8AfO8=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.716255+00 2025-12-09 10:15:21.71626+00 13492 116A#-20875#-蓝色 SPMX-20240815308681 \N \N \N 1 \N [{"file_id": "c1288be6-d38e-4f02-9f62-32d2460f6d70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec802ceb89f24619b4c1cef5fcb01e12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec802ceb89f24619b4c1cef5fcb01e12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec802ceb89f24619b4c1cef5fcb01e12.jpg", "file_size": 64031, "is_delete": false, "file_type": 1, "original_file_name": "116A#-20875#-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec802ceb89f24619b4c1cef5fcb01e12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec802ceb89f24619b4c1cef5fcb01e12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec802ceb89f24619b4c1cef5fcb01e12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec802ceb89f24619b4c1cef5fcb01e12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec802ceb89f24619b4c1cef5fcb01e12.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUnM6TG9v90JMbIKyAUjINvbOkE=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.718661+00 2025-12-09 10:15:21.718667+00 13493 JTSS466FW#VS-D3 SPMX-20240815308687 \N \N \N 1 \N [{"file_id": "00be89c0-f765-4582-8a1a-bdb743560f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c2c740c89ce48feb98ae67ee8be564f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c2c740c89ce48feb98ae67ee8be564f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c2c740c89ce48feb98ae67ee8be564f.jpg", "file_size": 12056, "is_delete": false, "file_type": 1, "original_file_name": "JTSS466FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2c740c89ce48feb98ae67ee8be564f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2c740c89ce48feb98ae67ee8be564f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c2c740c89ce48feb98ae67ee8be564f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c2c740c89ce48feb98ae67ee8be564f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c2c740c89ce48feb98ae67ee8be564f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OhRC7OEs5r9PF9pZkmsCBxrVcmc=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.721117+00 2025-12-09 10:15:21.721122+00 13494 8327#前幅S SPMX-20240815308688 \N \N \N 1 \N [{"file_id": "ce0cb53c-6389-4ef1-b08c-c7b5c1c32f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27de5d77cf8046b5a09aee3e130c4e66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27de5d77cf8046b5a09aee3e130c4e66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27de5d77cf8046b5a09aee3e130c4e66.jpg", "file_size": 15708, "is_delete": false, "file_type": 1, "original_file_name": "8327#前幅S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27de5d77cf8046b5a09aee3e130c4e66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27de5d77cf8046b5a09aee3e130c4e66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27de5d77cf8046b5a09aee3e130c4e66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27de5d77cf8046b5a09aee3e130c4e66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27de5d77cf8046b5a09aee3e130c4e66.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2QMbhCBrpXseQ3bvu7yF8Pt1S6I=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.723614+00 2025-12-09 10:15:21.723619+00 13495 LZ1319#捆条布 SPMX-20240815308691 \N \N \N 1 \N [{"file_id": "d4b726a6-ae09-4924-a2f4-736c763ece07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14a522c6532c4b21b88ae7261f253897.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14a522c6532c4b21b88ae7261f253897.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14a522c6532c4b21b88ae7261f253897.jpg", "file_size": 7112, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a522c6532c4b21b88ae7261f253897.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a522c6532c4b21b88ae7261f253897.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a522c6532c4b21b88ae7261f253897.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14a522c6532c4b21b88ae7261f253897.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14a522c6532c4b21b88ae7261f253897.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgxQUSanEhUBpqOdqPWa-h-iHlI=", "createTime": "2024-08-15 14:55:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.725986+00 2025-12-09 10:15:21.725991+00 13496 DL31083#批布蓝绿 SPMX-20240815308693 \N \N \N 1 \N [{"file_id": "7ddc0fc9-36e5-45c4-8b4c-d88a377142b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63c4e8be4c384487a857e28243cf2824.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63c4e8be4c384487a857e28243cf2824.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63c4e8be4c384487a857e28243cf2824.jpg", "file_size": 19109, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c4e8be4c384487a857e28243cf2824.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c4e8be4c384487a857e28243cf2824.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c4e8be4c384487a857e28243cf2824.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63c4e8be4c384487a857e28243cf2824.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63c4e8be4c384487a857e28243cf2824.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRin52Pp0JhBNL8YVdNXvvGOkqc=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.728192+00 2025-12-09 10:15:21.728197+00 13497 LJH1705-4#绿色 SPMX-20240815308695 \N \N \N 1 \N [{"file_id": "e9829e6f-9eab-434a-989a-2aee14ded371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12a92a359334892b7990c71388aa9dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12a92a359334892b7990c71388aa9dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12a92a359334892b7990c71388aa9dc.jpg", "file_size": 64400, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-4#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12a92a359334892b7990c71388aa9dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12a92a359334892b7990c71388aa9dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12a92a359334892b7990c71388aa9dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12a92a359334892b7990c71388aa9dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12a92a359334892b7990c71388aa9dc.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zo7_jXU_gXcW9yLPZ4txZcvBry0=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.730659+00 2025-12-09 10:15:21.730664+00 13498 0005-2FWE#咖啡色番禺调色 SPMX-20240815308692 \N \N \N 1 \N [{"file_id": "04abc897-28f2-464a-91e2-c1157cc166c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da8cf2cd79e04f8c9daad38cbb7c3b85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da8cf2cd79e04f8c9daad38cbb7c3b85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da8cf2cd79e04f8c9daad38cbb7c3b85.jpg", "file_size": 12252, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWE#咖啡色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cf2cd79e04f8c9daad38cbb7c3b85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cf2cd79e04f8c9daad38cbb7c3b85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cf2cd79e04f8c9daad38cbb7c3b85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da8cf2cd79e04f8c9daad38cbb7c3b85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da8cf2cd79e04f8c9daad38cbb7c3b85.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N7jQqpk6nc4IctImzdtguxWnU6k=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.733123+00 2025-12-09 10:15:21.733129+00 13499 116A#-粉色-20875#-玫红 SPMX-20240815308694 \N \N \N 1 \N [{"file_id": "573a6071-32f6-4bcd-9f87-189b3fd51f4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e05f9b634ca94810a44c046b8d0053a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e05f9b634ca94810a44c046b8d0053a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e05f9b634ca94810a44c046b8d0053a1.jpg", "file_size": 66220, "is_delete": false, "file_type": 1, "original_file_name": "116A#-粉色-20875#-玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f9b634ca94810a44c046b8d0053a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f9b634ca94810a44c046b8d0053a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f9b634ca94810a44c046b8d0053a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e05f9b634ca94810a44c046b8d0053a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e05f9b634ca94810a44c046b8d0053a1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qSlHvZA1W9CctEt8NzgYIQChXSo=", "createTime": "2024-08-15 14:55:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.735321+00 2025-12-09 10:15:21.735326+00 13500 C859FWF#门襟L SPMX-20240815308696 \N \N \N 1 \N [{"file_id": "b98010fb-97ad-4ef2-a1eb-477c9c41644e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8d0fddfc0304f829abf7a2726cae5e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8d0fddfc0304f829abf7a2726cae5e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8d0fddfc0304f829abf7a2726cae5e5.jpg", "file_size": 25069, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#门襟L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d0fddfc0304f829abf7a2726cae5e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d0fddfc0304f829abf7a2726cae5e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d0fddfc0304f829abf7a2726cae5e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8d0fddfc0304f829abf7a2726cae5e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8d0fddfc0304f829abf7a2726cae5e5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZUdXzuAg3DC0DJ2_xPg_blvvCE=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.737778+00 2025-12-09 10:15:21.737784+00 13501 8327#前幅XL SPMX-20240815308697 \N \N \N 1 \N [{"file_id": "222a0311-0cff-4e2b-9063-e6178394f52f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64735410ca004ad7ae9511de14958c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64735410ca004ad7ae9511de14958c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64735410ca004ad7ae9511de14958c32.jpg", "file_size": 15151, "is_delete": false, "file_type": 1, "original_file_name": "8327#前幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64735410ca004ad7ae9511de14958c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64735410ca004ad7ae9511de14958c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64735410ca004ad7ae9511de14958c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64735410ca004ad7ae9511de14958c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64735410ca004ad7ae9511de14958c32.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdZESD0t4NXJ7RbfsBbcq-wxifA=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.740285+00 2025-12-09 10:15:21.74029+00 13502 23-2122#A1-3XL SPMX-20240815308698 \N \N \N 1 \N [{"file_id": "bc3afd7c-1366-4a73-a890-7eb89c69e222", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53f616837cc645e99504a3f20fc26c06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53f616837cc645e99504a3f20fc26c06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53f616837cc645e99504a3f20fc26c06.jpg", "file_size": 13693, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f616837cc645e99504a3f20fc26c06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f616837cc645e99504a3f20fc26c06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53f616837cc645e99504a3f20fc26c06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53f616837cc645e99504a3f20fc26c06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53f616837cc645e99504a3f20fc26c06.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bZ-k_k-Yu0yiZ_k3zIIoDIRjm0=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.74316+00 2025-12-09 10:15:21.743166+00 13503 HT3346#27号果绿 SPMX-20240815308700 \N \N \N 1 \N [{"file_id": "52d93fb2-e884-4391-8444-3fe4d4089f16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a475669ccb1e462f94178e5a65fa57fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a475669ccb1e462f94178e5a65fa57fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a475669ccb1e462f94178e5a65fa57fb.jpg", "file_size": 57040, "is_delete": false, "file_type": 1, "original_file_name": "HT3346#27号果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a475669ccb1e462f94178e5a65fa57fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a475669ccb1e462f94178e5a65fa57fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a475669ccb1e462f94178e5a65fa57fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a475669ccb1e462f94178e5a65fa57fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a475669ccb1e462f94178e5a65fa57fb.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRkMwKpYQ7dHzLgPeVjb8wLjfdU=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.746021+00 2025-12-09 10:15:21.746029+00 13504 FM013#上身豆粉配白色 SPMX-20240815308699 \N \N \N 1 \N [{"file_id": "62ce5cd4-855b-447e-bc85-95405a5c68b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2be38fd8dfda4f09afaa18e551ab54a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2be38fd8dfda4f09afaa18e551ab54a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2be38fd8dfda4f09afaa18e551ab54a7.jpg", "file_size": 15089, "is_delete": false, "file_type": 1, "original_file_name": "FM013#上身豆粉配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be38fd8dfda4f09afaa18e551ab54a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be38fd8dfda4f09afaa18e551ab54a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be38fd8dfda4f09afaa18e551ab54a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2be38fd8dfda4f09afaa18e551ab54a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2be38fd8dfda4f09afaa18e551ab54a7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzKCeOcVcprC_9L22_Z6aSjjuOI=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.749177+00 2025-12-09 10:15:21.749183+00 13505 0005-2FWE#杏色 SPMX-20240815308704 \N \N \N 1 \N [{"file_id": "e6bb8667-cf34-401d-98aa-79cdf6a51c40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3578383d6d93447d8b8008153bf988fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3578383d6d93447d8b8008153bf988fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3578383d6d93447d8b8008153bf988fe.jpg", "file_size": 10072, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWE#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3578383d6d93447d8b8008153bf988fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3578383d6d93447d8b8008153bf988fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3578383d6d93447d8b8008153bf988fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3578383d6d93447d8b8008153bf988fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3578383d6d93447d8b8008153bf988fe.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pmj3iC0dkI099ulypQoL7toGgW8=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.751411+00 2025-12-09 10:15:21.751415+00 13506 LZ1319#背心款1号色 SPMX-20240815308703 \N \N \N 1 \N [{"file_id": "f967975c-9ff8-4cd7-b537-3580875de7c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2818cff98ba489f8ac178c47588ea6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2818cff98ba489f8ac178c47588ea6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2818cff98ba489f8ac178c47588ea6c.jpg", "file_size": 14821, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2818cff98ba489f8ac178c47588ea6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2818cff98ba489f8ac178c47588ea6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2818cff98ba489f8ac178c47588ea6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2818cff98ba489f8ac178c47588ea6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2818cff98ba489f8ac178c47588ea6c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxh4nKgnbUzzVPoqxWnQ_Gu-7Xk=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.753815+00 2025-12-09 10:15:21.75382+00 13507 C859FWF#门襟M SPMX-20240815308707 \N \N \N 1 \N [{"file_id": "526c5623-bd15-4a58-bb24-fb50e9155bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68f05dfbc1154416bd31de9d13bc2590.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68f05dfbc1154416bd31de9d13bc2590.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68f05dfbc1154416bd31de9d13bc2590.jpg", "file_size": 25191, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#门襟M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f05dfbc1154416bd31de9d13bc2590.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f05dfbc1154416bd31de9d13bc2590.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f05dfbc1154416bd31de9d13bc2590.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68f05dfbc1154416bd31de9d13bc2590.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68f05dfbc1154416bd31de9d13bc2590.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:roWmTNq9w_MRXzTEqplwkdkihvI=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.75602+00 2025-12-09 10:15:21.756024+00 13508 116A#-黑色-20875#-彩兰 SPMX-20240815308701 \N \N \N 1 \N [{"file_id": "2a720c0d-91d3-4a0e-8837-7b14ad1140fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82a6b9f43e124b83ae6a3c77a82c8e97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82a6b9f43e124b83ae6a3c77a82c8e97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82a6b9f43e124b83ae6a3c77a82c8e97.jpg", "file_size": 64209, "is_delete": false, "file_type": 1, "original_file_name": "116A#-黑色-20875#-彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a6b9f43e124b83ae6a3c77a82c8e97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a6b9f43e124b83ae6a3c77a82c8e97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a6b9f43e124b83ae6a3c77a82c8e97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82a6b9f43e124b83ae6a3c77a82c8e97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82a6b9f43e124b83ae6a3c77a82c8e97.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3VpALdMTxSqwSgLLGgVYzAW2qE=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.758221+00 2025-12-09 10:15:21.758231+00 13509 23-2122#A1-4XL SPMX-20240815308710 \N \N \N 1 \N [{"file_id": "541ba397-2bc7-4660-acab-2d5b6135ced5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "798cc7959e6e47acad141f5363b40f9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "798cc7959e6e47acad141f5363b40f9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "798cc7959e6e47acad141f5363b40f9e.jpg", "file_size": 12671, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798cc7959e6e47acad141f5363b40f9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798cc7959e6e47acad141f5363b40f9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798cc7959e6e47acad141f5363b40f9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/798cc7959e6e47acad141f5363b40f9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/798cc7959e6e47acad141f5363b40f9e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ysql_5UpZCqaSUUuwpyynzcLp_A=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.760194+00 2025-12-09 10:15:21.760199+00 13510 FM013#上身酒红配白色 SPMX-20240815308708 \N \N \N 1 \N [{"file_id": "02dc8b1d-f681-4745-8c25-557153dfcae7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ecf775e466d417bbd884e5abc0a8477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ecf775e466d417bbd884e5abc0a8477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ecf775e466d417bbd884e5abc0a8477.jpg", "file_size": 16306, "is_delete": false, "file_type": 1, "original_file_name": "FM013#上身酒红配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf775e466d417bbd884e5abc0a8477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf775e466d417bbd884e5abc0a8477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf775e466d417bbd884e5abc0a8477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ecf775e466d417bbd884e5abc0a8477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ecf775e466d417bbd884e5abc0a8477.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T2aQFKLO0mWdYRAAbyMspxrYTws=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.762169+00 2025-12-09 10:15:21.762174+00 13511 JTSS467FW#VS-D3 SPMX-20240815308702 \N \N \N 1 \N [{"file_id": "3f4f7c41-65c3-4ed5-879f-0677c86c5180", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84d4cd59ec964c6e9a8ad27062ec20d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84d4cd59ec964c6e9a8ad27062ec20d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84d4cd59ec964c6e9a8ad27062ec20d8.jpg", "file_size": 20358, "is_delete": false, "file_type": 1, "original_file_name": "JTSS467FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d4cd59ec964c6e9a8ad27062ec20d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d4cd59ec964c6e9a8ad27062ec20d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d4cd59ec964c6e9a8ad27062ec20d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84d4cd59ec964c6e9a8ad27062ec20d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84d4cd59ec964c6e9a8ad27062ec20d8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4hhnxwgWq9viplYkjo_E-uO-nEQ=", "createTime": "2024-08-15 14:55:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.764318+00 2025-12-09 10:15:21.764325+00 13512 DL31083#批布蓝绿地 SPMX-20240815308705 \N \N \N 1 \N [{"file_id": "de3ecdee-fede-4b0f-9ac2-eadd543e3e43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da423e83693441cdb561def16eab8b7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da423e83693441cdb561def16eab8b7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da423e83693441cdb561def16eab8b7b.jpg", "file_size": 19109, "is_delete": false, "file_type": 1, "original_file_name": "DL31083#批布蓝绿地.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da423e83693441cdb561def16eab8b7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da423e83693441cdb561def16eab8b7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da423e83693441cdb561def16eab8b7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da423e83693441cdb561def16eab8b7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da423e83693441cdb561def16eab8b7b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IU34Evrshzi4F4rIHlo62wLOvXw=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.766507+00 2025-12-09 10:15:21.766513+00 13513 LJH1705-4#黄色 SPMX-20240815308706 \N \N \N 1 \N [{"file_id": "00d602ae-b1f4-4256-b3ef-7b51f69d714e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a912e21ba08f4d8cbd7f1d8f70d41090.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a912e21ba08f4d8cbd7f1d8f70d41090.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a912e21ba08f4d8cbd7f1d8f70d41090.jpg", "file_size": 59470, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-4#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a912e21ba08f4d8cbd7f1d8f70d41090.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a912e21ba08f4d8cbd7f1d8f70d41090.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a912e21ba08f4d8cbd7f1d8f70d41090.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a912e21ba08f4d8cbd7f1d8f70d41090.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a912e21ba08f4d8cbd7f1d8f70d41090.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fbFucAMklRgSGNNlZCpfaalXGs=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.768503+00 2025-12-09 10:15:21.768508+00 13514 8327#后幅L SPMX-20240815308709 \N \N \N 1 \N [{"file_id": "948c40f7-11dd-4d08-9e71-f93453f217dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eaf0c4326ae49bca86df56e942fe5ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eaf0c4326ae49bca86df56e942fe5ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eaf0c4326ae49bca86df56e942fe5ac.jpg", "file_size": 15278, "is_delete": false, "file_type": 1, "original_file_name": "8327#后幅L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eaf0c4326ae49bca86df56e942fe5ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eaf0c4326ae49bca86df56e942fe5ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eaf0c4326ae49bca86df56e942fe5ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eaf0c4326ae49bca86df56e942fe5ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eaf0c4326ae49bca86df56e942fe5ac.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylLqPnVYel0AsF_bhpCifFrDXFU=", "createTime": "2024-08-15 14:55:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.770456+00 2025-12-09 10:15:21.770461+00 13515 LZ1319#背心款2号色 SPMX-20240815308711 \N \N \N 1 \N [{"file_id": "3ae336a3-8087-454e-8167-a704a9761e29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21c38019db9e4d58985b8f3d7959d8a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21c38019db9e4d58985b8f3d7959d8a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21c38019db9e4d58985b8f3d7959d8a4.jpg", "file_size": 14808, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c38019db9e4d58985b8f3d7959d8a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c38019db9e4d58985b8f3d7959d8a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c38019db9e4d58985b8f3d7959d8a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21c38019db9e4d58985b8f3d7959d8a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21c38019db9e4d58985b8f3d7959d8a4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:388yp5opQiGkTyGEZrC1PXV3Aj4=", "createTime": "2024-08-15 14:55:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.77259+00 2025-12-09 10:15:21.772595+00 13516 FM013#下身原版色配米白 SPMX-20240815308715 \N \N \N 1 \N [{"file_id": "9f4f060a-1af4-451f-97bc-10815628f0fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2791f9a37a4dc787c8590b4b0e4fb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2791f9a37a4dc787c8590b4b0e4fb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2791f9a37a4dc787c8590b4b0e4fb2.jpg", "file_size": 10422, "is_delete": false, "file_type": 1, "original_file_name": "FM013#下身原版色配米白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2791f9a37a4dc787c8590b4b0e4fb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2791f9a37a4dc787c8590b4b0e4fb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2791f9a37a4dc787c8590b4b0e4fb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2791f9a37a4dc787c8590b4b0e4fb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2791f9a37a4dc787c8590b4b0e4fb2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hctrNKxZZUIghqYbD7py8QLcZNY=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.775148+00 2025-12-09 10:15:21.775154+00 13517 0005-2FWE#杏色番禺调色 SPMX-20240815308712 \N \N \N 1 \N [{"file_id": "decb714a-af42-4e10-83d6-0f99f5c0be8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dce155bf71e44afd950c005a86494273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dce155bf71e44afd950c005a86494273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dce155bf71e44afd950c005a86494273.jpg", "file_size": 11283, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWE#杏色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce155bf71e44afd950c005a86494273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce155bf71e44afd950c005a86494273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce155bf71e44afd950c005a86494273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dce155bf71e44afd950c005a86494273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dce155bf71e44afd950c005a86494273.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oeMzcBxE9vA09HgATbTEBp344M0=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.777848+00 2025-12-09 10:15:21.777853+00 13518 8327#后幅M SPMX-20240815308720 \N \N \N 1 \N [{"file_id": "974d3c16-0363-4415-ba40-2b1675f0ee8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg", "file_size": 16081, "is_delete": false, "file_type": 1, "original_file_name": "8327#后幅M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b7756bfaaf54fe5b80c21d0a71bc8b6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afXoiNlKln6QEDsuEI3N0NxNDjA=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.780328+00 2025-12-09 10:15:21.780333+00 13519 C859FWF#门襟S SPMX-20240815308718 \N \N \N 1 \N [{"file_id": "c33d3497-9338-4c29-b237-c9ccc724229b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6afaf1abc7cc4886aa193828e14d9b03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6afaf1abc7cc4886aa193828e14d9b03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6afaf1abc7cc4886aa193828e14d9b03.jpg", "file_size": 25028, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#门襟S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afaf1abc7cc4886aa193828e14d9b03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afaf1abc7cc4886aa193828e14d9b03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afaf1abc7cc4886aa193828e14d9b03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6afaf1abc7cc4886aa193828e14d9b03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6afaf1abc7cc4886aa193828e14d9b03.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_2gv-F4Yzhq6BtldMWpbiFAhKc=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.782764+00 2025-12-09 10:15:21.782771+00 13520 LZ1319#背心款3号色 SPMX-20240815308722 \N \N \N 1 \N [{"file_id": "f89f5960-94a3-4ef7-a375-5e2da8b80819", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "078f27ad7f354f708f8b92308f1acc84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "078f27ad7f354f708f8b92308f1acc84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "078f27ad7f354f708f8b92308f1acc84.jpg", "file_size": 15122, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078f27ad7f354f708f8b92308f1acc84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078f27ad7f354f708f8b92308f1acc84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078f27ad7f354f708f8b92308f1acc84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/078f27ad7f354f708f8b92308f1acc84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/078f27ad7f354f708f8b92308f1acc84.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j2dZHxGpsdwEZAu_N-inEspaGbI=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.785116+00 2025-12-09 10:15:21.785121+00 13521 HT3346#64号咖色 SPMX-20240815308716 \N \N \N 1 \N [{"file_id": "70ec9ae1-4a1d-47a9-9a0f-c7271ca29a6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4cb94f771ec41c2ae67ac89d36f199e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4cb94f771ec41c2ae67ac89d36f199e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4cb94f771ec41c2ae67ac89d36f199e.jpg", "file_size": 58825, "is_delete": false, "file_type": 1, "original_file_name": "HT3346#64号咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4cb94f771ec41c2ae67ac89d36f199e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4cb94f771ec41c2ae67ac89d36f199e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4cb94f771ec41c2ae67ac89d36f199e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4cb94f771ec41c2ae67ac89d36f199e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4cb94f771ec41c2ae67ac89d36f199e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X4AxI4NSPZHYn2de0ImYispRHro=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.787397+00 2025-12-09 10:15:21.787402+00 13522 DL31124-1#-批布 SPMX-20240815308717 \N \N \N 1 \N [{"file_id": "ed6f01e6-f7f0-4ee0-8686-88ecac456ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg", "file_size": 6774, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#-批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd1c80e7b2d4f5db5b3449c3b5d7e5a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u29IBGgcQjZgzgs_fQhepRicLys=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.789433+00 2025-12-09 10:15:21.789438+00 13523 116A#枣红 SPMX-20240815308713 \N \N \N 1 \N [{"file_id": "8c086e07-ec52-494a-91ec-97dd8d8bc881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26fde141500f4a08857423699c121c23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26fde141500f4a08857423699c121c23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26fde141500f4a08857423699c121c23.jpg", "file_size": 63047, "is_delete": false, "file_type": 1, "original_file_name": "116A#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fde141500f4a08857423699c121c23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fde141500f4a08857423699c121c23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fde141500f4a08857423699c121c23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26fde141500f4a08857423699c121c23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26fde141500f4a08857423699c121c23.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQQ4v49PMqWc2MkeHR3ebGzT4QI=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.791634+00 2025-12-09 10:15:21.79164+00 13524 JTSS468FW#VS-D3 SPMX-20240815308714 \N \N \N 1 \N [{"file_id": "e9c40809-19b0-4db4-b344-d707b9bf5613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76a3c24b70e649268b411883b7c21734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76a3c24b70e649268b411883b7c21734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76a3c24b70e649268b411883b7c21734.jpg", "file_size": 10727, "is_delete": false, "file_type": 1, "original_file_name": "JTSS468FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a3c24b70e649268b411883b7c21734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a3c24b70e649268b411883b7c21734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76a3c24b70e649268b411883b7c21734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76a3c24b70e649268b411883b7c21734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76a3c24b70e649268b411883b7c21734.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UcbL79uy2TMLUduzZjJDeV-IQs=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.793788+00 2025-12-09 10:15:21.793792+00 13525 23-2122#A1-领子3XL SPMX-20240815308719 \N \N \N 1 \N [{"file_id": "5d1ad168-0786-4271-9ddb-f97081fe3732", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eb70efa882748d19b01321d43b5dd33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eb70efa882748d19b01321d43b5dd33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eb70efa882748d19b01321d43b5dd33.jpg", "file_size": 11630, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb70efa882748d19b01321d43b5dd33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb70efa882748d19b01321d43b5dd33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb70efa882748d19b01321d43b5dd33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eb70efa882748d19b01321d43b5dd33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eb70efa882748d19b01321d43b5dd33.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1XU6sjQs0JzKlNp08_xbg7YMKCY=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.795942+00 2025-12-09 10:15:21.795946+00 13526 LJH1705-5#原版 SPMX-20240815308721 \N \N \N 1 \N [{"file_id": "85e20bfd-7086-4861-8fe2-fce915fdbd75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e28044945c5d4923ae6687914208ed5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e28044945c5d4923ae6687914208ed5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e28044945c5d4923ae6687914208ed5a.jpg", "file_size": 67653, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-5#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28044945c5d4923ae6687914208ed5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28044945c5d4923ae6687914208ed5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28044945c5d4923ae6687914208ed5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e28044945c5d4923ae6687914208ed5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e28044945c5d4923ae6687914208ed5a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Ka5gJfxgvJ2-X9JOCW2WLl8SVw=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.798136+00 2025-12-09 10:15:21.79814+00 13527 JTSS469FW#VS-D3 SPMX-20240815308727 \N \N \N 1 \N [{"file_id": "c2432733-fba4-4f4f-bc43-2033d9beff8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9e4603dcd12402b93b8d05bdee76399.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9e4603dcd12402b93b8d05bdee76399.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9e4603dcd12402b93b8d05bdee76399.jpg", "file_size": 11803, "is_delete": false, "file_type": 1, "original_file_name": "JTSS469FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e4603dcd12402b93b8d05bdee76399.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e4603dcd12402b93b8d05bdee76399.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e4603dcd12402b93b8d05bdee76399.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9e4603dcd12402b93b8d05bdee76399.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9e4603dcd12402b93b8d05bdee76399.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PdtaIRxvPb0wjBEVRT4YjPNzSuc=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.800296+00 2025-12-09 10:15:21.8003+00 13528 8327#后幅S SPMX-20240815308731 \N \N \N 1 \N [{"file_id": "95a66b54-3303-4692-ba2c-ed749db414a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7894632dbf7478bb2ad4b494a126fb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7894632dbf7478bb2ad4b494a126fb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7894632dbf7478bb2ad4b494a126fb7.jpg", "file_size": 15868, "is_delete": false, "file_type": 1, "original_file_name": "8327#后幅S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7894632dbf7478bb2ad4b494a126fb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7894632dbf7478bb2ad4b494a126fb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7894632dbf7478bb2ad4b494a126fb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7894632dbf7478bb2ad4b494a126fb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7894632dbf7478bb2ad4b494a126fb7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCOkJ8JIuitTtEDDUiyvy9bpSvk=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.802442+00 2025-12-09 10:15:21.802447+00 13529 LJH1705-5#绿色 SPMX-20240815308733 \N \N \N 1 \N [{"file_id": "6c08fb66-1e7c-40b2-b0be-d9418dca934f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aca118e988740c6bb27f3bfa1382575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aca118e988740c6bb27f3bfa1382575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aca118e988740c6bb27f3bfa1382575.jpg", "file_size": 71390, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-5#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aca118e988740c6bb27f3bfa1382575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aca118e988740c6bb27f3bfa1382575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aca118e988740c6bb27f3bfa1382575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aca118e988740c6bb27f3bfa1382575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aca118e988740c6bb27f3bfa1382575.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AzRp1L-1bMYFeyjfrkgKp5WEFzQ=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.80438+00 2025-12-09 10:15:21.804384+00 13530 DL31124-1#亮黄后幅定位裁 SPMX-20240815308728 \N \N \N 1 \N [{"file_id": "6a4991a5-30c5-4986-8a80-bc00b6191818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8876d014b65487e99b87bc0649e9ab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8876d014b65487e99b87bc0649e9ab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8876d014b65487e99b87bc0649e9ab6.jpg", "file_size": 11518, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#亮黄后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8876d014b65487e99b87bc0649e9ab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8876d014b65487e99b87bc0649e9ab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8876d014b65487e99b87bc0649e9ab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8876d014b65487e99b87bc0649e9ab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8876d014b65487e99b87bc0649e9ab6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jrgNKWZn6LJYCRtiLocFq6YZ4k=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.806305+00 2025-12-09 10:15:21.806309+00 13531 23-2122#A1-领子4XL SPMX-20240815308730 \N \N \N 1 \N [{"file_id": "799bf79a-8f05-4c98-8e07-bbdd5e9fb537", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8199673725f042a6b4b29f803f108cad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8199673725f042a6b4b29f803f108cad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8199673725f042a6b4b29f803f108cad.jpg", "file_size": 11922, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199673725f042a6b4b29f803f108cad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199673725f042a6b4b29f803f108cad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8199673725f042a6b4b29f803f108cad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8199673725f042a6b4b29f803f108cad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8199673725f042a6b4b29f803f108cad.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:74JjQVL-st5X2rMvd6kEBAWwOXM=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.808458+00 2025-12-09 10:15:21.808462+00 13532 LZ1319#背心款4号色 SPMX-20240815308732 \N \N \N 1 \N [{"file_id": "1f22e008-ab0f-41fe-bda6-59f1455ca8c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2160ae9261045818febce1a75125e49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2160ae9261045818febce1a75125e49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2160ae9261045818febce1a75125e49.jpg", "file_size": 14943, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2160ae9261045818febce1a75125e49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2160ae9261045818febce1a75125e49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2160ae9261045818febce1a75125e49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2160ae9261045818febce1a75125e49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2160ae9261045818febce1a75125e49.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gATHTIbTT5xSoPZPXCPuJuWQASI=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.810376+00 2025-12-09 10:15:21.81038+00 13533 0005-2FWF#V5曲线 SPMX-20240815308723 \N \N \N 1 \N [{"file_id": "f16182bf-c301-4c34-b297-62dc305a3b95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64c8f3cb443148308554e68022131505.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64c8f3cb443148308554e68022131505.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64c8f3cb443148308554e68022131505.jpg", "file_size": 14107, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c8f3cb443148308554e68022131505.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c8f3cb443148308554e68022131505.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c8f3cb443148308554e68022131505.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64c8f3cb443148308554e68022131505.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64c8f3cb443148308554e68022131505.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELCwnP7YyvKe_SYBE4Ah9ovLCzw=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.812634+00 2025-12-09 10:15:21.81264+00 13534 C859FWF#门襟XL SPMX-20240815308726 \N \N \N 1 \N [{"file_id": "2784f0fb-2671-4aef-8ec3-59ba1d41a491", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a32839cd21004bc2b94def724d44464d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a32839cd21004bc2b94def724d44464d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a32839cd21004bc2b94def724d44464d.jpg", "file_size": 25808, "is_delete": false, "file_type": 1, "original_file_name": "C859FWF#门襟XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32839cd21004bc2b94def724d44464d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32839cd21004bc2b94def724d44464d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32839cd21004bc2b94def724d44464d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a32839cd21004bc2b94def724d44464d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a32839cd21004bc2b94def724d44464d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlO8oQfPEhmU-_uxjPc37eQbRsM=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.814748+00 2025-12-09 10:15:21.814754+00 13535 116A#橙色 SPMX-20240815308724 \N \N \N 1 \N [{"file_id": "71a6ea9c-b45e-4da5-a09c-8792cfb14d00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "597cbcf5f7544a799ad0a7be554593bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "597cbcf5f7544a799ad0a7be554593bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "597cbcf5f7544a799ad0a7be554593bc.jpg", "file_size": 57229, "is_delete": false, "file_type": 1, "original_file_name": "116A#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597cbcf5f7544a799ad0a7be554593bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597cbcf5f7544a799ad0a7be554593bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597cbcf5f7544a799ad0a7be554593bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/597cbcf5f7544a799ad0a7be554593bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/597cbcf5f7544a799ad0a7be554593bc.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_miFrlCF5m42GrlXkXK1_TbEJc=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.816797+00 2025-12-09 10:15:21.816802+00 13536 FM013#下身彩蓝配白 SPMX-20240815308725 \N \N \N 1 \N [{"file_id": "0895e80b-704b-4cc8-8320-70fb44d47d42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "824a1100e0ff438c978712dcba509ad2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "824a1100e0ff438c978712dcba509ad2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "824a1100e0ff438c978712dcba509ad2.jpg", "file_size": 12028, "is_delete": false, "file_type": 1, "original_file_name": "FM013#下身彩蓝配白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824a1100e0ff438c978712dcba509ad2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824a1100e0ff438c978712dcba509ad2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824a1100e0ff438c978712dcba509ad2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/824a1100e0ff438c978712dcba509ad2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/824a1100e0ff438c978712dcba509ad2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpTdPeJOAvSdAcv-ot5ZEJFY220=", "createTime": "2024-08-15 14:55:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.818792+00 2025-12-09 10:15:21.818797+00 13537 HT3347#红色 SPMX-20240815308729 \N \N \N 1 \N [{"file_id": "e54f5e26-7fd9-404f-aa74-b91907563f4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae42c7aea4134b87bde5f5c70b8fbb12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae42c7aea4134b87bde5f5c70b8fbb12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae42c7aea4134b87bde5f5c70b8fbb12.jpg", "file_size": 47754, "is_delete": false, "file_type": 1, "original_file_name": "HT3347#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae42c7aea4134b87bde5f5c70b8fbb12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae42c7aea4134b87bde5f5c70b8fbb12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae42c7aea4134b87bde5f5c70b8fbb12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae42c7aea4134b87bde5f5c70b8fbb12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae42c7aea4134b87bde5f5c70b8fbb12.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tHFvAyZvzjNGROm4yVf_NYtGG4=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.82081+00 2025-12-09 10:15:21.820814+00 13538 JTSS470FW#VS-D3 SPMX-20240815308739 \N \N \N 1 \N [{"file_id": "c0f09cf5-0c67-4382-ae0a-f9c579a36f14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed4cf585b6554ff39cd43f87ddbb4b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed4cf585b6554ff39cd43f87ddbb4b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed4cf585b6554ff39cd43f87ddbb4b19.jpg", "file_size": 12316, "is_delete": false, "file_type": 1, "original_file_name": "JTSS470FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4cf585b6554ff39cd43f87ddbb4b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4cf585b6554ff39cd43f87ddbb4b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed4cf585b6554ff39cd43f87ddbb4b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed4cf585b6554ff39cd43f87ddbb4b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed4cf585b6554ff39cd43f87ddbb4b19.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuM4eVAimyFrSgcDULVc3O5PSUI=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.822821+00 2025-12-09 10:15:21.822826+00 13539 LJH1705-5#蓝色 SPMX-20240815308743 \N \N \N 1 \N [{"file_id": "5ffddb27-7722-486f-a2a9-285fb0b23f02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11f99e67148434f8f0d883ce07d2bc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11f99e67148434f8f0d883ce07d2bc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11f99e67148434f8f0d883ce07d2bc8.jpg", "file_size": 69250, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-5#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11f99e67148434f8f0d883ce07d2bc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11f99e67148434f8f0d883ce07d2bc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11f99e67148434f8f0d883ce07d2bc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11f99e67148434f8f0d883ce07d2bc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11f99e67148434f8f0d883ce07d2bc8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uBDgkVK4cqI9wya_pWDWCgwWHdk=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.824837+00 2025-12-09 10:15:21.824842+00 13540 DL31124-1#亮黄批布 SPMX-20240815308737 \N \N \N 1 \N [{"file_id": "9035576c-96b5-487f-9729-2e1329abfd71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "986bac096f3a46a5a32533499c472813.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "986bac096f3a46a5a32533499c472813.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "986bac096f3a46a5a32533499c472813.jpg", "file_size": 8208, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#亮黄批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986bac096f3a46a5a32533499c472813.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986bac096f3a46a5a32533499c472813.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986bac096f3a46a5a32533499c472813.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/986bac096f3a46a5a32533499c472813.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/986bac096f3a46a5a32533499c472813.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zIu38euWFGqHjsmncwIXA_3XM-M=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.826852+00 2025-12-09 10:15:21.826857+00 13541 0005-2FWF#V5曲线番禺调色 SPMX-20240815308735 \N \N \N 1 \N [{"file_id": "01b2213c-778e-454c-bc27-a7f1152c8b96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e419a3c8f70442ab88961f43b8f7bd87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e419a3c8f70442ab88961f43b8f7bd87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e419a3c8f70442ab88961f43b8f7bd87.jpg", "file_size": 15517, "is_delete": false, "file_type": 1, "original_file_name": "0005-2FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e419a3c8f70442ab88961f43b8f7bd87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e419a3c8f70442ab88961f43b8f7bd87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e419a3c8f70442ab88961f43b8f7bd87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e419a3c8f70442ab88961f43b8f7bd87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e419a3c8f70442ab88961f43b8f7bd87.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvHU80bY6jOTpMTarzy6xjTKhFs=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.829093+00 2025-12-09 10:15:21.829101+00 13542 0005-3#WJC22 SPMX-20240815308747 \N \N \N 1 \N [{"file_id": "d62d4620-e892-4673-9e14-e5c890a3f11a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a46f7756904a43709a9e2e97da9b9919.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a46f7756904a43709a9e2e97da9b9919.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a46f7756904a43709a9e2e97da9b9919.jpg", "file_size": 14240, "is_delete": false, "file_type": 1, "original_file_name": "0005-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46f7756904a43709a9e2e97da9b9919.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46f7756904a43709a9e2e97da9b9919.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a46f7756904a43709a9e2e97da9b9919.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a46f7756904a43709a9e2e97da9b9919.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a46f7756904a43709a9e2e97da9b9919.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAm0ysx0R9xPOm5FwArrC66OWgc=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.831499+00 2025-12-09 10:15:21.831504+00 13543 116A#粉色 SPMX-20240815308736 \N \N \N 1 \N [{"file_id": "7fc33bd1-8019-4c3c-b645-6eaf52b78e8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9f87790787243068919b90c517ce860.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9f87790787243068919b90c517ce860.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9f87790787243068919b90c517ce860.jpg", "file_size": 58755, "is_delete": false, "file_type": 1, "original_file_name": "116A#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f87790787243068919b90c517ce860.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f87790787243068919b90c517ce860.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f87790787243068919b90c517ce860.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9f87790787243068919b90c517ce860.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9f87790787243068919b90c517ce860.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heeGva3lJg-dtwd2FvJZElvWxSE=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.834042+00 2025-12-09 10:15:21.834048+00 13544 23-2122#A2-3XL SPMX-20240815308740 \N \N \N 1 \N [{"file_id": "5204c15c-a73a-4c45-848d-96ad4565d045", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d04c9e3bc09443ffaf5bf899ed6f1887.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d04c9e3bc09443ffaf5bf899ed6f1887.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d04c9e3bc09443ffaf5bf899ed6f1887.jpg", "file_size": 15243, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d04c9e3bc09443ffaf5bf899ed6f1887.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d04c9e3bc09443ffaf5bf899ed6f1887.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d04c9e3bc09443ffaf5bf899ed6f1887.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d04c9e3bc09443ffaf5bf899ed6f1887.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d04c9e3bc09443ffaf5bf899ed6f1887.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2csGvPqbzzReno53sNUI1NxpQyI=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.836505+00 2025-12-09 10:15:21.836511+00 13545 8327#后幅XL SPMX-20240815308741 \N \N \N 1 \N [{"file_id": "3f0c1017-ab76-4940-8a8c-4430628748dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eae0ba00496438088c4941b6c658203.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eae0ba00496438088c4941b6c658203.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eae0ba00496438088c4941b6c658203.jpg", "file_size": 15226, "is_delete": false, "file_type": 1, "original_file_name": "8327#后幅XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eae0ba00496438088c4941b6c658203.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eae0ba00496438088c4941b6c658203.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eae0ba00496438088c4941b6c658203.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eae0ba00496438088c4941b6c658203.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eae0ba00496438088c4941b6c658203.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MNnQdh6ZyOHfAWDmFJ29Tx1n7Y=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.870746+00 2025-12-09 10:15:21.870751+00 13559 8328FWE#红 VS-D3 SPMX-20240815308762 \N \N \N 1 \N [{"file_id": "e4ce3db4-4047-451e-b796-aecd5bcde5e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a396005c2b9343be931c12864ec752f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a396005c2b9343be931c12864ec752f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a396005c2b9343be931c12864ec752f4.jpg", "file_size": 9861, "is_delete": false, "file_type": 1, "original_file_name": "8328FWE#红 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a396005c2b9343be931c12864ec752f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a396005c2b9343be931c12864ec752f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a396005c2b9343be931c12864ec752f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a396005c2b9343be931c12864ec752f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a396005c2b9343be931c12864ec752f4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kj9fCMbc7b6bjquPXw324VrjeOY=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.838978+00 2025-12-09 10:15:21.838984+00 13546 FM013#下身桔红配白色 SPMX-20240815308734 \N \N \N 1 \N [{"file_id": "cb808da1-15cf-4253-8a9c-bdd090f19690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca35d9679d8945d787d2c4c153f82418.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca35d9679d8945d787d2c4c153f82418.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca35d9679d8945d787d2c4c153f82418.jpg", "file_size": 12503, "is_delete": false, "file_type": 1, "original_file_name": "FM013#下身桔红配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca35d9679d8945d787d2c4c153f82418.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca35d9679d8945d787d2c4c153f82418.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca35d9679d8945d787d2c4c153f82418.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca35d9679d8945d787d2c4c153f82418.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca35d9679d8945d787d2c4c153f82418.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w0IYpvaafAKKD-8N62Lb1ZKnZWU=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.841225+00 2025-12-09 10:15:21.841231+00 13547 HT3347#绿色 SPMX-20240815308742 \N \N \N 1 \N [{"file_id": "604eca60-1d7a-4391-9cb6-8210e1bd6875", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e27ecdaa1b814c09a0111a873eeab682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e27ecdaa1b814c09a0111a873eeab682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e27ecdaa1b814c09a0111a873eeab682.jpg", "file_size": 48271, "is_delete": false, "file_type": 1, "original_file_name": "HT3347#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27ecdaa1b814c09a0111a873eeab682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27ecdaa1b814c09a0111a873eeab682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27ecdaa1b814c09a0111a873eeab682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e27ecdaa1b814c09a0111a873eeab682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e27ecdaa1b814c09a0111a873eeab682.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QG3mD4FnkrNwtACv712I5yj7WYk=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.84366+00 2025-12-09 10:15:21.843666+00 13548 LZ1319#背心款5号色 SPMX-20240815308744 \N \N \N 1 \N [{"file_id": "8b51438d-53ab-49d7-93c3-f095786c465b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ada28013f340c59130db0799722b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ada28013f340c59130db0799722b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ada28013f340c59130db0799722b6e.jpg", "file_size": 15031, "is_delete": false, "file_type": 1, "original_file_name": "LZ1319#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ada28013f340c59130db0799722b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ada28013f340c59130db0799722b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ada28013f340c59130db0799722b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ada28013f340c59130db0799722b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ada28013f340c59130db0799722b6e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbr4L09x_fOmwhrbh2jnZcvHS6Q=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.846075+00 2025-12-09 10:15:21.846081+00 13549 FM013#下身豆粉配白色 SPMX-20240815308745 \N \N \N 1 \N [{"file_id": "51c78ae2-61ab-49d0-b456-5019637a9b4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13988313f2524c4fbc96fcfc0fe09fcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13988313f2524c4fbc96fcfc0fe09fcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13988313f2524c4fbc96fcfc0fe09fcf.jpg", "file_size": 10817, "is_delete": false, "file_type": 1, "original_file_name": "FM013#下身豆粉配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13988313f2524c4fbc96fcfc0fe09fcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13988313f2524c4fbc96fcfc0fe09fcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13988313f2524c4fbc96fcfc0fe09fcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13988313f2524c4fbc96fcfc0fe09fcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13988313f2524c4fbc96fcfc0fe09fcf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KN1IJ7GvsSpwU5rTX4IXgu--2cM=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.84861+00 2025-12-09 10:15:21.848616+00 13550 DL31124-1#天蓝后幅定位裁 SPMX-20240815308746 \N \N \N 1 \N [{"file_id": "e80b59bb-413b-4f06-a3ff-4bf34f6218a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02999eb8faea4dbebe25d212839689c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02999eb8faea4dbebe25d212839689c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02999eb8faea4dbebe25d212839689c7.jpg", "file_size": 11481, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#天蓝后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02999eb8faea4dbebe25d212839689c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02999eb8faea4dbebe25d212839689c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02999eb8faea4dbebe25d212839689c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02999eb8faea4dbebe25d212839689c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02999eb8faea4dbebe25d212839689c7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fztywz26L4toHOEjhx-k-kyf_8M=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.851147+00 2025-12-09 10:15:21.851152+00 13551 C9 SPMX-20240815308738 \N \N \N 1 \N [{"file_id": "ccecaff8-82f7-4b41-a92b-fdbce836eb1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8df48e91bab249efa3ed67229b5a3cb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8df48e91bab249efa3ed67229b5a3cb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8df48e91bab249efa3ed67229b5a3cb3.jpg", "file_size": 55352, "is_delete": false, "file_type": 1, "original_file_name": "C9.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df48e91bab249efa3ed67229b5a3cb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df48e91bab249efa3ed67229b5a3cb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df48e91bab249efa3ed67229b5a3cb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8df48e91bab249efa3ed67229b5a3cb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8df48e91bab249efa3ed67229b5a3cb3.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0AoCpTb4rOWc4PtJhzbvBdfmi_A=", "createTime": "2024-08-15 14:55:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.853695+00 2025-12-09 10:15:21.853701+00 13552 23-2122#A2-领子3XL SPMX-20240815308761 \N \N \N 1 \N [{"file_id": "a3464a9a-89fc-427c-8b88-5883d4ce9a93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d3ea05585a1412dbde55e731b3c6c6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d3ea05585a1412dbde55e731b3c6c6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d3ea05585a1412dbde55e731b3c6c6e.jpg", "file_size": 12878, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d3ea05585a1412dbde55e731b3c6c6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d3ea05585a1412dbde55e731b3c6c6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d3ea05585a1412dbde55e731b3c6c6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d3ea05585a1412dbde55e731b3c6c6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d3ea05585a1412dbde55e731b3c6c6e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9uIoBqpVbkpdEfrkZQLHuHcfvFg=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.856184+00 2025-12-09 10:15:21.856189+00 13553 C9029#L SPMX-20240815308763 \N \N \N 1 \N [{"file_id": "8c84e762-9aa9-4319-a8ff-1613b01ac077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89f69a82411e4d808c38b236f2f0d7ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89f69a82411e4d808c38b236f2f0d7ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89f69a82411e4d808c38b236f2f0d7ab.jpg", "file_size": 15960, "is_delete": false, "file_type": 1, "original_file_name": "C9029#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f69a82411e4d808c38b236f2f0d7ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f69a82411e4d808c38b236f2f0d7ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89f69a82411e4d808c38b236f2f0d7ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89f69a82411e4d808c38b236f2f0d7ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89f69a82411e4d808c38b236f2f0d7ab.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_bWC_VjOIOkhiliVZf5hj49m_U=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.858656+00 2025-12-09 10:15:21.858662+00 13554 LZ131FWF#2号色短袖 SPMX-20240815308764 \N \N \N 1 \N [{"file_id": "9c1a7b65-0903-43ab-987f-1adb3c92811b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27aef9a470d648c581dc1fca84950bd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27aef9a470d648c581dc1fca84950bd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27aef9a470d648c581dc1fca84950bd5.jpg", "file_size": 20667, "is_delete": false, "file_type": 1, "original_file_name": "LZ131FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aef9a470d648c581dc1fca84950bd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aef9a470d648c581dc1fca84950bd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27aef9a470d648c581dc1fca84950bd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27aef9a470d648c581dc1fca84950bd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27aef9a470d648c581dc1fca84950bd5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DpCE32ABMmCi-3DQ9mcq_pQDzKI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.861159+00 2025-12-09 10:15:21.861164+00 13555 HT3348-1#原版色 SPMX-20240815308753 \N \N \N 1 \N [{"file_id": "3a393fa6-a5af-4d4b-9a87-4be687706937", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b8ae90ac61c4ede8b7d76499f740119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b8ae90ac61c4ede8b7d76499f740119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b8ae90ac61c4ede8b7d76499f740119.jpg", "file_size": 41276, "is_delete": false, "file_type": 1, "original_file_name": "HT3348-1#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8ae90ac61c4ede8b7d76499f740119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8ae90ac61c4ede8b7d76499f740119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8ae90ac61c4ede8b7d76499f740119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b8ae90ac61c4ede8b7d76499f740119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b8ae90ac61c4ede8b7d76499f740119.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-GneSCaG0k-5DJjWQKTmR2IyrI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.863379+00 2025-12-09 10:15:21.863385+00 13556 116A#蓝色 SPMX-20240815308760 \N \N \N 1 \N [{"file_id": "7396cccd-20ea-4fe2-87f9-d1b0af0341ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e06dab74ce8f46a5b7ccfda0767c459f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e06dab74ce8f46a5b7ccfda0767c459f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e06dab74ce8f46a5b7ccfda0767c459f.jpg", "file_size": 60865, "is_delete": false, "file_type": 1, "original_file_name": "116A#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e06dab74ce8f46a5b7ccfda0767c459f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e06dab74ce8f46a5b7ccfda0767c459f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e06dab74ce8f46a5b7ccfda0767c459f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e06dab74ce8f46a5b7ccfda0767c459f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e06dab74ce8f46a5b7ccfda0767c459f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u9T6xGr7pfsk9je3iOaXhBE-ZnI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.865809+00 2025-12-09 10:15:21.865815+00 13557 23-2122#A2-4XL SPMX-20240815308750 \N \N \N 1 \N [{"file_id": "0965e0ce-4efa-4757-9621-29d7bb6fd8a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e515d44551ff4004b00a0af54948a1ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e515d44551ff4004b00a0af54948a1ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e515d44551ff4004b00a0af54948a1ca.jpg", "file_size": 14178, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e515d44551ff4004b00a0af54948a1ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e515d44551ff4004b00a0af54948a1ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e515d44551ff4004b00a0af54948a1ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e515d44551ff4004b00a0af54948a1ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e515d44551ff4004b00a0af54948a1ca.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPwWa8p6LvNraf8PGZLbXG5Iki8=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.868269+00 2025-12-09 10:15:21.868275+00 13558 0005-31#WJC22 SPMX-20240815308758 \N \N \N 1 \N [{"file_id": "9a7ed9a3-a993-4494-b5a6-c03397968cc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f169b2e2402455eb133c640834a3993.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f169b2e2402455eb133c640834a3993.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f169b2e2402455eb133c640834a3993.jpg", "file_size": 12912, "is_delete": false, "file_type": 1, "original_file_name": "0005-31#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f169b2e2402455eb133c640834a3993.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f169b2e2402455eb133c640834a3993.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f169b2e2402455eb133c640834a3993.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f169b2e2402455eb133c640834a3993.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f169b2e2402455eb133c640834a3993.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_-vfFrk1v-x6o-AwFElmsY3-2M=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.8732+00 2025-12-09 10:15:21.873205+00 13560 116A#紫色 SPMX-20240815308749 \N \N \N 1 \N [{"file_id": "99116b6a-a2dd-4e08-8f9f-e498ce207c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "571a7255a9034dd089f8d2ef224830e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "571a7255a9034dd089f8d2ef224830e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "571a7255a9034dd089f8d2ef224830e1.jpg", "file_size": 60704, "is_delete": false, "file_type": 1, "original_file_name": "116A#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/571a7255a9034dd089f8d2ef224830e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/571a7255a9034dd089f8d2ef224830e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/571a7255a9034dd089f8d2ef224830e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/571a7255a9034dd089f8d2ef224830e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/571a7255a9034dd089f8d2ef224830e1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IckUXlmkf1aCS-EaxZ2pYFUm384=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.875431+00 2025-12-09 10:15:21.875436+00 13561 8327FWE#VS-D3 SPMX-20240815308751 \N \N \N 1 \N [{"file_id": "747ac678-0613-48e1-a39f-ab087f3fd231", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7212e0a419e470c89dcefe7535a6c22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7212e0a419e470c89dcefe7535a6c22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7212e0a419e470c89dcefe7535a6c22.jpg", "file_size": 22691, "is_delete": false, "file_type": 1, "original_file_name": "8327FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7212e0a419e470c89dcefe7535a6c22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7212e0a419e470c89dcefe7535a6c22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7212e0a419e470c89dcefe7535a6c22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7212e0a419e470c89dcefe7535a6c22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7212e0a419e470c89dcefe7535a6c22.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQs0fz28VymTuU4MFywAd--Kw-w=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.877908+00 2025-12-09 10:15:21.877913+00 13562 FM013#下身酒红配白色 SPMX-20240815308756 \N \N \N 1 \N [{"file_id": "4d583eb8-2f70-4c0a-9883-364313939ddf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bb9d3a64e114244ba371d0990ff36ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bb9d3a64e114244ba371d0990ff36ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bb9d3a64e114244ba371d0990ff36ed.jpg", "file_size": 11808, "is_delete": false, "file_type": 1, "original_file_name": "FM013#下身酒红配白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb9d3a64e114244ba371d0990ff36ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb9d3a64e114244ba371d0990ff36ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb9d3a64e114244ba371d0990ff36ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bb9d3a64e114244ba371d0990ff36ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bb9d3a64e114244ba371d0990ff36ed.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzaBhCujHAJNIjR3NsdNY_tT9uc=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.880322+00 2025-12-09 10:15:21.880327+00 13563 C9017#WJC22 SPMX-20240815308752 \N \N \N 1 \N [{"file_id": "7177f813-7402-41eb-85ba-be9ccc5b8044", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e262bc70d8d4f4c97c88c6fb3279480.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e262bc70d8d4f4c97c88c6fb3279480.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e262bc70d8d4f4c97c88c6fb3279480.jpg", "file_size": 11763, "is_delete": false, "file_type": 1, "original_file_name": "C9017#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e262bc70d8d4f4c97c88c6fb3279480.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e262bc70d8d4f4c97c88c6fb3279480.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e262bc70d8d4f4c97c88c6fb3279480.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e262bc70d8d4f4c97c88c6fb3279480.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e262bc70d8d4f4c97c88c6fb3279480.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67-rLj1W_pe-yx4LoD-qSkmN0xk=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.882686+00 2025-12-09 10:15:21.882691+00 13564 DL31124-1#天蓝批布 SPMX-20240815308757 \N \N \N 1 \N [{"file_id": "c98d2a24-031c-406a-9674-f4c3a5bb776f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98ac5bd8688447a39f8f2506bd9374e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98ac5bd8688447a39f8f2506bd9374e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98ac5bd8688447a39f8f2506bd9374e7.jpg", "file_size": 8005, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#天蓝批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac5bd8688447a39f8f2506bd9374e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac5bd8688447a39f8f2506bd9374e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98ac5bd8688447a39f8f2506bd9374e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98ac5bd8688447a39f8f2506bd9374e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98ac5bd8688447a39f8f2506bd9374e7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkK8-dGbkzS-XN_e0gy0G93hwBc=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.88509+00 2025-12-09 10:15:21.885095+00 13565 LJH1705-5#黄色 SPMX-20240815308754 \N \N \N 1 \N [{"file_id": "1c50c6b7-39e6-4871-b9ef-0d253df2b166", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b81a6386f2e849a8979938f47d7e67d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b81a6386f2e849a8979938f47d7e67d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b81a6386f2e849a8979938f47d7e67d2.jpg", "file_size": 64436, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-5#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81a6386f2e849a8979938f47d7e67d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81a6386f2e849a8979938f47d7e67d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81a6386f2e849a8979938f47d7e67d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b81a6386f2e849a8979938f47d7e67d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b81a6386f2e849a8979938f47d7e67d2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQmjWnUBAkFOdKAtDUWiIm7zrH0=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.887352+00 2025-12-09 10:15:21.887356+00 13566 JTSS471FW#VS-D3 SPMX-20240815308748 \N \N \N 1 \N [{"file_id": "16c24038-ecfc-4ad8-93cc-b988c23d4f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b4d195d0d394333b67fd5e8826632e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b4d195d0d394333b67fd5e8826632e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b4d195d0d394333b67fd5e8826632e8.jpg", "file_size": 14815, "is_delete": false, "file_type": 1, "original_file_name": "JTSS471FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4d195d0d394333b67fd5e8826632e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4d195d0d394333b67fd5e8826632e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4d195d0d394333b67fd5e8826632e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b4d195d0d394333b67fd5e8826632e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b4d195d0d394333b67fd5e8826632e8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYCv2c-ky-QdBBRe0c8eVvMFeRA=", "createTime": "2024-08-15 14:55:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.889331+00 2025-12-09 10:15:21.889336+00 13567 LZ131FWF#1号色短袖 SPMX-20240815308755 \N \N \N 1 \N [{"file_id": "dfb0f844-4969-4fad-83c2-bddcfa0bcae0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f401ea2c419b4ec0b41b7e732dc30d36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f401ea2c419b4ec0b41b7e732dc30d36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f401ea2c419b4ec0b41b7e732dc30d36.jpg", "file_size": 19780, "is_delete": false, "file_type": 1, "original_file_name": "LZ131FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401ea2c419b4ec0b41b7e732dc30d36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401ea2c419b4ec0b41b7e732dc30d36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f401ea2c419b4ec0b41b7e732dc30d36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f401ea2c419b4ec0b41b7e732dc30d36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f401ea2c419b4ec0b41b7e732dc30d36.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0Ija38s0VdR8JgFYa5A8hJndv8=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.891295+00 2025-12-09 10:15:21.891299+00 13568 JTSS472FW#VS-D3 SPMX-20240815308759 \N \N \N 1 \N [{"file_id": "ba3326d2-b990-4c7e-bed1-03cf0c994fed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d9a95f8b7154dba9d81c8f1a32f0350.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d9a95f8b7154dba9d81c8f1a32f0350.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d9a95f8b7154dba9d81c8f1a32f0350.jpg", "file_size": 13584, "is_delete": false, "file_type": 1, "original_file_name": "JTSS472FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9a95f8b7154dba9d81c8f1a32f0350.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9a95f8b7154dba9d81c8f1a32f0350.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9a95f8b7154dba9d81c8f1a32f0350.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d9a95f8b7154dba9d81c8f1a32f0350.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d9a95f8b7154dba9d81c8f1a32f0350.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUbTylXT46J6oUFFfcCkfpI1-BI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.893257+00 2025-12-09 10:15:21.893261+00 13569 LJH1705-51#-白色 SPMX-20240815308767 \N \N \N 1 \N [{"file_id": "ad1af717-0321-4ad0-aad8-9c554a5e8aca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee48ca65bd2b4053997d8bafcf15402e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee48ca65bd2b4053997d8bafcf15402e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee48ca65bd2b4053997d8bafcf15402e.jpg", "file_size": 68837, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-51#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48ca65bd2b4053997d8bafcf15402e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48ca65bd2b4053997d8bafcf15402e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee48ca65bd2b4053997d8bafcf15402e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee48ca65bd2b4053997d8bafcf15402e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee48ca65bd2b4053997d8bafcf15402e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dz1aX_IGlBXjuPcjfLFswIYlEhg=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.895214+00 2025-12-09 10:15:21.895219+00 13570 FM013#原版净色 SPMX-20240815308765 \N \N \N 1 \N [{"file_id": "2833fc40-4930-41e8-a178-a347a666d69c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c35c759a1274699a2990758b55bbfa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c35c759a1274699a2990758b55bbfa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c35c759a1274699a2990758b55bbfa1.jpg", "file_size": 7046, "is_delete": false, "file_type": 1, "original_file_name": "FM013#原版净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35c759a1274699a2990758b55bbfa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35c759a1274699a2990758b55bbfa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35c759a1274699a2990758b55bbfa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c35c759a1274699a2990758b55bbfa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c35c759a1274699a2990758b55bbfa1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gE11El31GxlZSZlOnSl-9umUjA=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.897205+00 2025-12-09 10:15:21.897209+00 13571 HT3349#原版色 SPMX-20240815308766 \N \N \N 1 \N [{"file_id": "14e9aaac-b547-4176-a22b-92c4038a01f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a29aa1a04f4bc1954e0e2703a8943c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a29aa1a04f4bc1954e0e2703a8943c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a29aa1a04f4bc1954e0e2703a8943c.jpg", "file_size": 72999, "is_delete": false, "file_type": 1, "original_file_name": "HT3349#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a29aa1a04f4bc1954e0e2703a8943c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a29aa1a04f4bc1954e0e2703a8943c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a29aa1a04f4bc1954e0e2703a8943c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a29aa1a04f4bc1954e0e2703a8943c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a29aa1a04f4bc1954e0e2703a8943c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngQuubGpJXVmD4XpzESBffcCFdI=", "createTime": "2024-08-15 14:55:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.899159+00 2025-12-09 10:15:21.899164+00 13572 JTSS473FW#VS-D3 SPMX-20240815308769 \N \N \N 1 \N [{"file_id": "f1064319-2420-4a24-939d-f6e57f942bf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "373203433efc49ac8239303952ac4889.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "373203433efc49ac8239303952ac4889.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "373203433efc49ac8239303952ac4889.jpg", "file_size": 10584, "is_delete": false, "file_type": 1, "original_file_name": "JTSS473FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373203433efc49ac8239303952ac4889.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373203433efc49ac8239303952ac4889.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/373203433efc49ac8239303952ac4889.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/373203433efc49ac8239303952ac4889.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/373203433efc49ac8239303952ac4889.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UkqqXVHy84ivu8FoeuPubUJlVHI=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.90119+00 2025-12-09 10:15:21.901195+00 13573 23-2122#A2-领子4XL SPMX-20240815308770 \N \N \N 1 \N [{"file_id": "0fa877e4-df05-48f3-a662-e08547af70c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9d74f230eb9485e9c6cb9dcf63edc39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9d74f230eb9485e9c6cb9dcf63edc39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9d74f230eb9485e9c6cb9dcf63edc39.jpg", "file_size": 13287, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d74f230eb9485e9c6cb9dcf63edc39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d74f230eb9485e9c6cb9dcf63edc39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9d74f230eb9485e9c6cb9dcf63edc39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9d74f230eb9485e9c6cb9dcf63edc39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9d74f230eb9485e9c6cb9dcf63edc39.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NHktlWvDG_S-m-8lLhOJvGynTUE=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.903364+00 2025-12-09 10:15:21.903368+00 13574 DL31124-1#彩兰批布 SPMX-20240815308768 \N \N \N 1 \N [{"file_id": "3a5c0915-e073-4850-bc2e-c95286989617", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d436f4c27ba84b30b1389d92abb67e84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d436f4c27ba84b30b1389d92abb67e84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d436f4c27ba84b30b1389d92abb67e84.jpg", "file_size": 7811, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#彩兰批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d436f4c27ba84b30b1389d92abb67e84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d436f4c27ba84b30b1389d92abb67e84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d436f4c27ba84b30b1389d92abb67e84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d436f4c27ba84b30b1389d92abb67e84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d436f4c27ba84b30b1389d92abb67e84.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFGP_qt1jVhtgKEyIPW3GxkImEw=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.905305+00 2025-12-09 10:15:21.90531+00 13575 0005-33#WJC22 SPMX-20240815308772 \N \N \N 1 \N [{"file_id": "8fc4a887-79a5-4fcd-8206-17746e5f97c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7905d1ae30764904b53d473a2210da2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7905d1ae30764904b53d473a2210da2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7905d1ae30764904b53d473a2210da2f.jpg", "file_size": 25612, "is_delete": false, "file_type": 1, "original_file_name": "0005-33#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905d1ae30764904b53d473a2210da2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905d1ae30764904b53d473a2210da2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7905d1ae30764904b53d473a2210da2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7905d1ae30764904b53d473a2210da2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7905d1ae30764904b53d473a2210da2f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GlvxR4QWv6ZVoSI3Kem5BWBWiiU=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.907234+00 2025-12-09 10:15:21.907238+00 13576 116A#黑色 SPMX-20240815308771 \N \N \N 1 \N [{"file_id": "efa4e268-d188-4c68-bda0-5295528f0d79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25a06f05cf704aaa89d59db51679dd82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25a06f05cf704aaa89d59db51679dd82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25a06f05cf704aaa89d59db51679dd82.jpg", "file_size": 60855, "is_delete": false, "file_type": 1, "original_file_name": "116A#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a06f05cf704aaa89d59db51679dd82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a06f05cf704aaa89d59db51679dd82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a06f05cf704aaa89d59db51679dd82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25a06f05cf704aaa89d59db51679dd82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25a06f05cf704aaa89d59db51679dd82.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m340YDEU57_j58QupHyRCQh8QZ8=", "createTime": "2024-08-15 14:55:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.909211+00 2025-12-09 10:15:21.909216+00 13577 DL31124-1#彩蓝后幅定位裁 SPMX-20240815308774 \N \N \N 1 \N [{"file_id": "a84aec18-7f88-4b23-bdef-03d9ae43018d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e601af8d474c4da6915050ad7b6f1728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e601af8d474c4da6915050ad7b6f1728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e601af8d474c4da6915050ad7b6f1728.jpg", "file_size": 12046, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#彩蓝后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601af8d474c4da6915050ad7b6f1728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601af8d474c4da6915050ad7b6f1728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601af8d474c4da6915050ad7b6f1728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e601af8d474c4da6915050ad7b6f1728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e601af8d474c4da6915050ad7b6f1728.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwxgpH8CcgS7bYvlkaYRxH6WZ34=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.911365+00 2025-12-09 10:15:21.911369+00 13578 LZ131FWF#3号色短袖 SPMX-20240815308773 \N \N \N 1 \N [{"file_id": "fc5fecd7-b881-4d68-9ee6-113074c189b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bea66d6200544fa1a460de4d5e9939fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bea66d6200544fa1a460de4d5e9939fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bea66d6200544fa1a460de4d5e9939fc.jpg", "file_size": 20342, "is_delete": false, "file_type": 1, "original_file_name": "LZ131FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea66d6200544fa1a460de4d5e9939fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea66d6200544fa1a460de4d5e9939fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea66d6200544fa1a460de4d5e9939fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bea66d6200544fa1a460de4d5e9939fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bea66d6200544fa1a460de4d5e9939fc.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFrd9pEEecdzEHuxqQ1Y_ct17I8=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.913311+00 2025-12-09 10:15:21.913316+00 13579 C9029#M SPMX-20240815308775 \N \N \N 1 \N [{"file_id": "7b874a46-a108-4766-a45f-6e39f3106b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ada1b699f3674048b6e4dd397b91484a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ada1b699f3674048b6e4dd397b91484a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ada1b699f3674048b6e4dd397b91484a.jpg", "file_size": 16077, "is_delete": false, "file_type": 1, "original_file_name": "C9029#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada1b699f3674048b6e4dd397b91484a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada1b699f3674048b6e4dd397b91484a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ada1b699f3674048b6e4dd397b91484a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ada1b699f3674048b6e4dd397b91484a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ada1b699f3674048b6e4dd397b91484a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:el2vI1cmoS-_TYA9V9iWBjZiSQY=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.915215+00 2025-12-09 10:15:21.91522+00 13580 FM013#彩兰净色 SPMX-20240815308776 \N \N \N 1 \N [{"file_id": "5badbbdb-c3dd-4b3c-876b-da2c1ebcd06d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a2bea73520342e9a784b1caf806fcf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a2bea73520342e9a784b1caf806fcf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a2bea73520342e9a784b1caf806fcf5.jpg", "file_size": 7785, "is_delete": false, "file_type": 1, "original_file_name": "FM013#彩兰净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2bea73520342e9a784b1caf806fcf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2bea73520342e9a784b1caf806fcf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2bea73520342e9a784b1caf806fcf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a2bea73520342e9a784b1caf806fcf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a2bea73520342e9a784b1caf806fcf5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4ujS6xCUfaw4_OKHUJKvn1yrK8=", "createTime": "2024-08-15 14:55:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.917389+00 2025-12-09 10:15:21.917393+00 13581 23-2122#A3白色-3XL SPMX-20240815308778 \N \N \N 1 \N [{"file_id": "c8f762f3-1e3b-40f3-8d70-83b88eed7fe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "572f4eef42d44f6a8d421a11bbd80f5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "572f4eef42d44f6a8d421a11bbd80f5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "572f4eef42d44f6a8d421a11bbd80f5c.jpg", "file_size": 13622, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3白色-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f4eef42d44f6a8d421a11bbd80f5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f4eef42d44f6a8d421a11bbd80f5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f4eef42d44f6a8d421a11bbd80f5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/572f4eef42d44f6a8d421a11bbd80f5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/572f4eef42d44f6a8d421a11bbd80f5c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAxEMduffAX89AjDZu98KVvxBvU=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.919308+00 2025-12-09 10:15:21.919313+00 13582 JTSS474FW#VS-D3 SPMX-20240815308779 \N \N \N 1 \N [{"file_id": "f850e488-54d9-42be-b75c-1295567badb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bacc5073c67f4c7686408b9bf60af1ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bacc5073c67f4c7686408b9bf60af1ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bacc5073c67f4c7686408b9bf60af1ad.jpg", "file_size": 9917, "is_delete": false, "file_type": 1, "original_file_name": "JTSS474FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacc5073c67f4c7686408b9bf60af1ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacc5073c67f4c7686408b9bf60af1ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacc5073c67f4c7686408b9bf60af1ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bacc5073c67f4c7686408b9bf60af1ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bacc5073c67f4c7686408b9bf60af1ad.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Zb-LiR-S9mGrQnTaWtKXzAWChU=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.921248+00 2025-12-09 10:15:21.921253+00 13583 8328FWE#红净色 SPMX-20240815308780 \N \N \N 1 \N [{"file_id": "9f66d4aa-a651-42d6-8db9-c44abce36745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "360af9e9bae64b2fae9620ec8d3314ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "360af9e9bae64b2fae9620ec8d3314ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "360af9e9bae64b2fae9620ec8d3314ec.jpg", "file_size": 9278, "is_delete": false, "file_type": 1, "original_file_name": "8328FWE#红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360af9e9bae64b2fae9620ec8d3314ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360af9e9bae64b2fae9620ec8d3314ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360af9e9bae64b2fae9620ec8d3314ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/360af9e9bae64b2fae9620ec8d3314ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/360af9e9bae64b2fae9620ec8d3314ec.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUhTw-7y_f4KJAaxA-enlGruof8=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.923408+00 2025-12-09 10:15:21.923413+00 13584 0005-34#WJC22 SPMX-20240815308777 \N \N \N 1 \N [{"file_id": "81582aaa-3a5b-4526-bba0-0e2c108b22f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7e35c6c106149f68c76aa62de1944f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7e35c6c106149f68c76aa62de1944f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7e35c6c106149f68c76aa62de1944f4.jpg", "file_size": 24504, "is_delete": false, "file_type": 1, "original_file_name": "0005-34#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e35c6c106149f68c76aa62de1944f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e35c6c106149f68c76aa62de1944f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e35c6c106149f68c76aa62de1944f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7e35c6c106149f68c76aa62de1944f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7e35c6c106149f68c76aa62de1944f4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izDlVRJBKBDah-qeicI6zrJwQuA=", "createTime": "2024-08-15 14:56:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.925357+00 2025-12-09 10:15:21.925361+00 13585 DL31124-1#浅粉后幅定位裁 SPMX-20240815308783 \N \N \N 1 \N [{"file_id": "c897a4ca-a82f-4a13-9843-9bfbd703ffcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bfbfe6f5b464c1da8127fdfa06ff217.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bfbfe6f5b464c1da8127fdfa06ff217.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bfbfe6f5b464c1da8127fdfa06ff217.jpg", "file_size": 11347, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#浅粉后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfbfe6f5b464c1da8127fdfa06ff217.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfbfe6f5b464c1da8127fdfa06ff217.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfbfe6f5b464c1da8127fdfa06ff217.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bfbfe6f5b464c1da8127fdfa06ff217.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bfbfe6f5b464c1da8127fdfa06ff217.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOtBxkSjwH41UeA8ROLlKSOwWkk=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.927301+00 2025-12-09 10:15:21.927305+00 13586 FM013#桔红净色 SPMX-20240815308782 \N \N \N 1 \N [{"file_id": "41744eaf-3a54-4b9d-8e7f-cd6324775049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d21a7b7d6441c0ae131a0f1cb870c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d21a7b7d6441c0ae131a0f1cb870c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d21a7b7d6441c0ae131a0f1cb870c7.jpg", "file_size": 7601, "is_delete": false, "file_type": 1, "original_file_name": "FM013#桔红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d21a7b7d6441c0ae131a0f1cb870c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d21a7b7d6441c0ae131a0f1cb870c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d21a7b7d6441c0ae131a0f1cb870c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d21a7b7d6441c0ae131a0f1cb870c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d21a7b7d6441c0ae131a0f1cb870c7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cp_MzEiVpYxB1OF1DWigPQVG2wY=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.929435+00 2025-12-09 10:15:21.929439+00 13587 117#-杏色 SPMX-20240815308781 \N \N \N 1 \N [{"file_id": "ca183042-1cc5-4128-a6af-c721679996cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9eb8cdfc0720489698eb88898b32326d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9eb8cdfc0720489698eb88898b32326d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9eb8cdfc0720489698eb88898b32326d.jpg", "file_size": 41218, "is_delete": false, "file_type": 1, "original_file_name": "117#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb8cdfc0720489698eb88898b32326d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb8cdfc0720489698eb88898b32326d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9eb8cdfc0720489698eb88898b32326d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9eb8cdfc0720489698eb88898b32326d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9eb8cdfc0720489698eb88898b32326d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0uXXWrnASyWScDE2Dr8tUyGBAQ=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.931385+00 2025-12-09 10:15:21.931389+00 13588 HT3349#原重叠色 SPMX-20240815308787 \N \N \N 1 \N [{"file_id": "75e0ebdd-d412-4e60-aaae-5c78738d52ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9aa78bfcc20541e5adb33c17b9bae80f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9aa78bfcc20541e5adb33c17b9bae80f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9aa78bfcc20541e5adb33c17b9bae80f.jpg", "file_size": 72999, "is_delete": false, "file_type": 1, "original_file_name": "HT3349#原重叠色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aa78bfcc20541e5adb33c17b9bae80f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aa78bfcc20541e5adb33c17b9bae80f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aa78bfcc20541e5adb33c17b9bae80f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9aa78bfcc20541e5adb33c17b9bae80f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9aa78bfcc20541e5adb33c17b9bae80f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ImV80b0pynMzSm55JEqMqPSMCAw=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.933315+00 2025-12-09 10:15:21.933319+00 13589 C9029#XL SPMX-20240815308797 \N \N \N 1 \N [{"file_id": "2a153fe1-34fb-43d8-8983-eed8e84a854f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5562eb8b64846f38ec41ef08796a7e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5562eb8b64846f38ec41ef08796a7e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5562eb8b64846f38ec41ef08796a7e7.jpg", "file_size": 16523, "is_delete": false, "file_type": 1, "original_file_name": "C9029#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5562eb8b64846f38ec41ef08796a7e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5562eb8b64846f38ec41ef08796a7e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5562eb8b64846f38ec41ef08796a7e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5562eb8b64846f38ec41ef08796a7e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5562eb8b64846f38ec41ef08796a7e7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jYtYOnN0DYfs9690PJd1H4A3H_Y=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.935473+00 2025-12-09 10:15:21.935477+00 13590 JTSS476FW#VS-D3 SPMX-20240815308796 \N \N \N 1 \N [{"file_id": "dd3fc82a-a812-4d84-88f2-33d91d48db6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69a511f022dd4ed1b7b806d7e3752ffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69a511f022dd4ed1b7b806d7e3752ffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69a511f022dd4ed1b7b806d7e3752ffd.jpg", "file_size": 9476, "is_delete": false, "file_type": 1, "original_file_name": "JTSS476FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a511f022dd4ed1b7b806d7e3752ffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a511f022dd4ed1b7b806d7e3752ffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a511f022dd4ed1b7b806d7e3752ffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69a511f022dd4ed1b7b806d7e3752ffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69a511f022dd4ed1b7b806d7e3752ffd.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3Ex761bsIX2ED3K8awr2POLrH8=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.937374+00 2025-12-09 10:15:21.937378+00 13591 8329FWE#VS-D3 SPMX-20240815308791 \N \N \N 1 \N [{"file_id": "1b976269-3a76-42e4-97c0-3f5d6583bc58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7660aec94abc4e7ba423524f5873ded9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7660aec94abc4e7ba423524f5873ded9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7660aec94abc4e7ba423524f5873ded9.jpg", "file_size": 19125, "is_delete": false, "file_type": 1, "original_file_name": "8329FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7660aec94abc4e7ba423524f5873ded9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7660aec94abc4e7ba423524f5873ded9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7660aec94abc4e7ba423524f5873ded9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7660aec94abc4e7ba423524f5873ded9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7660aec94abc4e7ba423524f5873ded9.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZECDyLTgkldhaW1aJ_ffrE1w8c=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.967098+00 2025-12-09 10:15:21.967104+00 13605 FM013#豆粉净色 SPMX-20240815308793 \N \N \N 1 \N [{"file_id": "1a033f25-b513-4e1e-bbeb-5dfa0905d737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c934e5055b24ed0bede15d4e3e0b4a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c934e5055b24ed0bede15d4e3e0b4a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c934e5055b24ed0bede15d4e3e0b4a7.jpg", "file_size": 7127, "is_delete": false, "file_type": 1, "original_file_name": "FM013#豆粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c934e5055b24ed0bede15d4e3e0b4a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c934e5055b24ed0bede15d4e3e0b4a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c934e5055b24ed0bede15d4e3e0b4a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c934e5055b24ed0bede15d4e3e0b4a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c934e5055b24ed0bede15d4e3e0b4a7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALBuQ9LCuZEaqBpETdUDwp9EXu0=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.939536+00 2025-12-09 10:15:21.93954+00 13592 23-2122#A3白色-4XL SPMX-20240815308790 \N \N \N 1 \N [{"file_id": "f269c4a8-08ce-48c1-9d12-de3ecd448a53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16d7abb9186342469940a6da6a68b975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16d7abb9186342469940a6da6a68b975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16d7abb9186342469940a6da6a68b975.jpg", "file_size": 12705, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3白色-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d7abb9186342469940a6da6a68b975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d7abb9186342469940a6da6a68b975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16d7abb9186342469940a6da6a68b975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16d7abb9186342469940a6da6a68b975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16d7abb9186342469940a6da6a68b975.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJ2eNXOSA2oMTY4tIGdUnkHsC2g=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.941468+00 2025-12-09 10:15:21.941472+00 13593 0005-35#彩兰LWQ15 SPMX-20240815308784 \N \N \N 1 \N [{"file_id": "c24811a0-1087-4e01-ae9d-617d375826e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28a5322b3ce3482d96b1358ec57a116e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28a5322b3ce3482d96b1358ec57a116e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28a5322b3ce3482d96b1358ec57a116e.jpg", "file_size": 13168, "is_delete": false, "file_type": 1, "original_file_name": "0005-35#彩兰LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a5322b3ce3482d96b1358ec57a116e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a5322b3ce3482d96b1358ec57a116e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a5322b3ce3482d96b1358ec57a116e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28a5322b3ce3482d96b1358ec57a116e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28a5322b3ce3482d96b1358ec57a116e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZXkk_2bjBJqlNIP065y1lzS4_hc=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.943417+00 2025-12-09 10:15:21.943421+00 13594 DL31124-1#浅粉批布 SPMX-20240815308794 \N \N \N 1 \N [{"file_id": "b07ff3d3-deca-42c8-911a-9101d3f0fcd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d7175c70a4f416a87aed0278e6996f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d7175c70a4f416a87aed0278e6996f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d7175c70a4f416a87aed0278e6996f5.jpg", "file_size": 8123, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#浅粉批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7175c70a4f416a87aed0278e6996f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7175c70a4f416a87aed0278e6996f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7175c70a4f416a87aed0278e6996f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d7175c70a4f416a87aed0278e6996f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d7175c70a4f416a87aed0278e6996f5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QU5Y43flxhS4UZXW3G6gOYOIz_Y=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.945586+00 2025-12-09 10:15:21.94559+00 13595 LJH1705-51#-绿色 SPMX-20240815308800 \N \N \N 1 \N [{"file_id": "38c64188-8e66-4bb6-8009-e346c0945a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5328abb57e042cb97027b39d9035d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5328abb57e042cb97027b39d9035d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5328abb57e042cb97027b39d9035d42.jpg", "file_size": 66556, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-51#-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5328abb57e042cb97027b39d9035d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5328abb57e042cb97027b39d9035d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5328abb57e042cb97027b39d9035d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5328abb57e042cb97027b39d9035d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5328abb57e042cb97027b39d9035d42.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rk3IensvMUBseeBQnaFsCFd9TXQ=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.947662+00 2025-12-09 10:15:21.947666+00 13596 LZ131FWF#5号色短袖 SPMX-20240815308801 \N \N \N 1 \N [{"file_id": "b1bb9103-d5f3-4f48-a924-b814cf4f3c26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c39ae30b33c4141ac8304d5c83ce1c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c39ae30b33c4141ac8304d5c83ce1c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c39ae30b33c4141ac8304d5c83ce1c6.jpg", "file_size": 20203, "is_delete": false, "file_type": 1, "original_file_name": "LZ131FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39ae30b33c4141ac8304d5c83ce1c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39ae30b33c4141ac8304d5c83ce1c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39ae30b33c4141ac8304d5c83ce1c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c39ae30b33c4141ac8304d5c83ce1c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c39ae30b33c4141ac8304d5c83ce1c6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9eb8PUIyA9NUWbjBDBcFgvYHAA=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.949847+00 2025-12-09 10:15:21.949853+00 13597 LJH1705-51#-红色 SPMX-20240815308786 \N \N \N 1 \N [{"file_id": "fd3bfe40-20a6-4a9b-b96d-5cef3ae6bde7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa8a64af9241493b92d1af47d4f958db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa8a64af9241493b92d1af47d4f958db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa8a64af9241493b92d1af47d4f958db.jpg", "file_size": 72882, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-51#-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8a64af9241493b92d1af47d4f958db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8a64af9241493b92d1af47d4f958db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8a64af9241493b92d1af47d4f958db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa8a64af9241493b92d1af47d4f958db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa8a64af9241493b92d1af47d4f958db.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54Ni6PYD_q2K8aM7ndTP8DgZ05g=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.952038+00 2025-12-09 10:15:21.952044+00 13598 117#-深杏 SPMX-20240815308792 \N \N \N 1 \N [{"file_id": "be68b978-367e-4346-b940-5377d803265a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9e98fae9e4141c988ec9a3bc047669d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9e98fae9e4141c988ec9a3bc047669d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9e98fae9e4141c988ec9a3bc047669d.jpg", "file_size": 43047, "is_delete": false, "file_type": 1, "original_file_name": "117#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e98fae9e4141c988ec9a3bc047669d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e98fae9e4141c988ec9a3bc047669d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e98fae9e4141c988ec9a3bc047669d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9e98fae9e4141c988ec9a3bc047669d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9e98fae9e4141c988ec9a3bc047669d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ul_73835ywrmqPEpG8JJUEAjAwI=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.954398+00 2025-12-09 10:15:21.954403+00 13599 JTSS475FW#VS-D3 SPMX-20240815308785 \N \N \N 1 \N [{"file_id": "dc86c4f9-cda4-4757-b0dd-1f39868757ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5db83ca3e96046d7bf959bfb5ea0c385.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5db83ca3e96046d7bf959bfb5ea0c385.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5db83ca3e96046d7bf959bfb5ea0c385.jpg", "file_size": 12749, "is_delete": false, "file_type": 1, "original_file_name": "JTSS475FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db83ca3e96046d7bf959bfb5ea0c385.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db83ca3e96046d7bf959bfb5ea0c385.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5db83ca3e96046d7bf959bfb5ea0c385.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5db83ca3e96046d7bf959bfb5ea0c385.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5db83ca3e96046d7bf959bfb5ea0c385.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HSs-j6XC4oucUIl9Ddq12ZRaCUI=", "createTime": "2024-08-15 14:56:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.956653+00 2025-12-09 10:15:21.956659+00 13600 C9029#S SPMX-20240815308788 \N \N \N 1 \N [{"file_id": "ad76fabc-25f7-43c3-b554-427d005727c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f85ec3e526a4a67b947eef036aa34c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f85ec3e526a4a67b947eef036aa34c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f85ec3e526a4a67b947eef036aa34c5.jpg", "file_size": 15764, "is_delete": false, "file_type": 1, "original_file_name": "C9029#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f85ec3e526a4a67b947eef036aa34c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f85ec3e526a4a67b947eef036aa34c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f85ec3e526a4a67b947eef036aa34c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f85ec3e526a4a67b947eef036aa34c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f85ec3e526a4a67b947eef036aa34c5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPQe-Acrtu0CELIO-5nPTnefxsk=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.958923+00 2025-12-09 10:15:21.958928+00 13601 0005-35#彩兰净色 SPMX-20240815308795 \N \N \N 1 \N [{"file_id": "8bf0f4cf-a906-4e44-8a1c-45db47639044", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bce8c53fae6d4318a2c5690fa242f483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bce8c53fae6d4318a2c5690fa242f483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bce8c53fae6d4318a2c5690fa242f483.jpg", "file_size": 7913, "is_delete": false, "file_type": 1, "original_file_name": "0005-35#彩兰净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce8c53fae6d4318a2c5690fa242f483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce8c53fae6d4318a2c5690fa242f483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce8c53fae6d4318a2c5690fa242f483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bce8c53fae6d4318a2c5690fa242f483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bce8c53fae6d4318a2c5690fa242f483.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3zIn9kQ59126yKf8NNeYDEZl9k=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.960979+00 2025-12-09 10:15:21.960985+00 13602 8332FWE#VS-D3 SPMX-20240815308798 \N \N \N 1 \N [{"file_id": "ba2b7d5a-0929-4ed4-a89a-12e4721f7f2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8657f5baf2fa4db6a3fab4986b2e1a7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8657f5baf2fa4db6a3fab4986b2e1a7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8657f5baf2fa4db6a3fab4986b2e1a7f.jpg", "file_size": 13466, "is_delete": false, "file_type": 1, "original_file_name": "8332FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8657f5baf2fa4db6a3fab4986b2e1a7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8657f5baf2fa4db6a3fab4986b2e1a7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8657f5baf2fa4db6a3fab4986b2e1a7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8657f5baf2fa4db6a3fab4986b2e1a7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8657f5baf2fa4db6a3fab4986b2e1a7f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMz1lp54Oa30HAbk5wL7EN82YtQ=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.963032+00 2025-12-09 10:15:21.963038+00 13603 23-2122#A3白色-领子3XL SPMX-20240815308799 \N \N \N 1 \N [{"file_id": "f1b1ac37-9c9c-4ff9-b907-5543ea5f7b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2a9dedd6ec1439d8f52db31e8865d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2a9dedd6ec1439d8f52db31e8865d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2a9dedd6ec1439d8f52db31e8865d6b.jpg", "file_size": 11624, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3白色-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a9dedd6ec1439d8f52db31e8865d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a9dedd6ec1439d8f52db31e8865d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2a9dedd6ec1439d8f52db31e8865d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2a9dedd6ec1439d8f52db31e8865d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2a9dedd6ec1439d8f52db31e8865d6b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fle64w219AHGuZm_hNee3uvlePo=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.965071+00 2025-12-09 10:15:21.965076+00 13604 LZ131FWF#4号色短袖 SPMX-20240815308789 \N \N \N 1 \N [{"file_id": "565612f0-7b1b-48c0-9f1e-8955ad97f5f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac793785f2f04d25bee0927a90a5d716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac793785f2f04d25bee0927a90a5d716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac793785f2f04d25bee0927a90a5d716.jpg", "file_size": 19685, "is_delete": false, "file_type": 1, "original_file_name": "LZ131FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac793785f2f04d25bee0927a90a5d716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac793785f2f04d25bee0927a90a5d716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac793785f2f04d25bee0927a90a5d716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac793785f2f04d25bee0927a90a5d716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac793785f2f04d25bee0927a90a5d716.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aO9IijPOUdTjIfgavvOEFQq4pwE=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.969154+00 2025-12-09 10:15:21.96916+00 13606 117#-灰色 SPMX-20240815308803 \N \N \N 1 \N [{"file_id": "b37e88fe-399d-4ec0-a306-1fb6d9ca2b1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56e456d2d6a443809aedeaa4fd6f9820.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56e456d2d6a443809aedeaa4fd6f9820.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56e456d2d6a443809aedeaa4fd6f9820.jpg", "file_size": 55628, "is_delete": false, "file_type": 1, "original_file_name": "117#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e456d2d6a443809aedeaa4fd6f9820.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e456d2d6a443809aedeaa4fd6f9820.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e456d2d6a443809aedeaa4fd6f9820.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56e456d2d6a443809aedeaa4fd6f9820.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56e456d2d6a443809aedeaa4fd6f9820.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIO_qUUC2S5yWrda_inTDHUTDi0=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.971455+00 2025-12-09 10:15:21.971461+00 13607 HT3349#绿色 SPMX-20240815308802 \N \N \N 1 \N [{"file_id": "2f225320-c6bd-48d5-862f-2d623974ffc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73ffa28c63a9411eac5149b9ceca415c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73ffa28c63a9411eac5149b9ceca415c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73ffa28c63a9411eac5149b9ceca415c.jpg", "file_size": 71788, "is_delete": false, "file_type": 1, "original_file_name": "HT3349#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73ffa28c63a9411eac5149b9ceca415c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73ffa28c63a9411eac5149b9ceca415c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73ffa28c63a9411eac5149b9ceca415c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73ffa28c63a9411eac5149b9ceca415c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73ffa28c63a9411eac5149b9ceca415c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IeJpiZQbsXMoVzeXwU3lftdVmbU=", "createTime": "2024-08-15 14:56:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.973806+00 2025-12-09 10:15:21.973811+00 13608 DL31124-1#玫红后幅定位裁 SPMX-20240815308805 \N \N \N 1 \N [{"file_id": "0e5d330c-2352-49b7-b6be-34fe5394e423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32c8401dcfc142b09b1f78c010a3a1e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32c8401dcfc142b09b1f78c010a3a1e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32c8401dcfc142b09b1f78c010a3a1e0.jpg", "file_size": 11724, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#玫红后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c8401dcfc142b09b1f78c010a3a1e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c8401dcfc142b09b1f78c010a3a1e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32c8401dcfc142b09b1f78c010a3a1e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32c8401dcfc142b09b1f78c010a3a1e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32c8401dcfc142b09b1f78c010a3a1e0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Oc8RsodnT8zb-8cVxHjtrxXq-c=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.975996+00 2025-12-09 10:15:21.976001+00 13609 FM013#豆腐粉净色 SPMX-20240815308804 \N \N \N 1 \N [{"file_id": "2f1db5f6-3a4f-48ee-b508-e4d7ba8ef141", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "300d4ad88e7c474cb6c3159a2cfb3331.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "300d4ad88e7c474cb6c3159a2cfb3331.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "300d4ad88e7c474cb6c3159a2cfb3331.jpg", "file_size": 7039, "is_delete": false, "file_type": 1, "original_file_name": "FM013#豆腐粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300d4ad88e7c474cb6c3159a2cfb3331.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300d4ad88e7c474cb6c3159a2cfb3331.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300d4ad88e7c474cb6c3159a2cfb3331.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/300d4ad88e7c474cb6c3159a2cfb3331.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/300d4ad88e7c474cb6c3159a2cfb3331.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kDxHPmChvugAB_HS01SzprMcEl0=", "createTime": "2024-08-15 14:56:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.977986+00 2025-12-09 10:15:21.97799+00 13610 LJH1705-51#-黑色 SPMX-20240815308810 \N \N \N 1 \N [{"file_id": "04139d50-52a4-4b65-b0e5-4cee4b42558b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba6250b095704613bae664a761625193.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba6250b095704613bae664a761625193.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba6250b095704613bae664a761625193.jpg", "file_size": 65649, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-51#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6250b095704613bae664a761625193.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6250b095704613bae664a761625193.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6250b095704613bae664a761625193.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba6250b095704613bae664a761625193.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba6250b095704613bae664a761625193.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwGtNHvP9dNhbh5JlB--RXhl9Tw=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.979989+00 2025-12-09 10:15:21.979993+00 13611 FM013#酒红净色 SPMX-20240815308811 \N \N \N 1 \N [{"file_id": "d17dbc70-56ae-475a-9673-4eaa70aee579", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1db1932ad4143c0998050688a5e0482.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1db1932ad4143c0998050688a5e0482.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1db1932ad4143c0998050688a5e0482.jpg", "file_size": 7287, "is_delete": false, "file_type": 1, "original_file_name": "FM013#酒红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1db1932ad4143c0998050688a5e0482.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1db1932ad4143c0998050688a5e0482.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1db1932ad4143c0998050688a5e0482.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1db1932ad4143c0998050688a5e0482.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1db1932ad4143c0998050688a5e0482.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYKveNGWvFmMeIldcMmOHt6khmY=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.981982+00 2025-12-09 10:15:21.981986+00 13612 C907#正身L SPMX-20240815308809 \N \N \N 1 \N [{"file_id": "e17a2056-2868-43b4-b47c-598879fe68bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5875da9134947b4a762d298ad352e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5875da9134947b4a762d298ad352e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5875da9134947b4a762d298ad352e46.jpg", "file_size": 12259, "is_delete": false, "file_type": 1, "original_file_name": "C907#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5875da9134947b4a762d298ad352e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5875da9134947b4a762d298ad352e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5875da9134947b4a762d298ad352e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5875da9134947b4a762d298ad352e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5875da9134947b4a762d298ad352e46.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RqPNE3jOybwK3xTMvJDUYcntkn0=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.983912+00 2025-12-09 10:15:21.983916+00 13613 HT3350#白色2XL SPMX-20240815308812 \N \N \N 1 \N [{"file_id": "a3ed06af-b72d-4c5e-abde-8b8dd1579112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07af78e94c1d4c268d04443376c0a37b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07af78e94c1d4c268d04443376c0a37b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07af78e94c1d4c268d04443376c0a37b.jpg", "file_size": 53211, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07af78e94c1d4c268d04443376c0a37b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07af78e94c1d4c268d04443376c0a37b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07af78e94c1d4c268d04443376c0a37b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07af78e94c1d4c268d04443376c0a37b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07af78e94c1d4c268d04443376c0a37b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fi22nUMa8Jg2ptp0ax8FzNntZNk=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.985853+00 2025-12-09 10:15:21.985857+00 13614 0005-35#桔色 SPMX-20240815308806 \N \N \N 1 \N [{"file_id": "6c0d8c0e-4ed7-4120-ae81-4b290e2af22b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97595dbd44b54617b3cae9b2bb6eaf47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97595dbd44b54617b3cae9b2bb6eaf47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97595dbd44b54617b3cae9b2bb6eaf47.jpg", "file_size": 16963, "is_delete": false, "file_type": 1, "original_file_name": "0005-35#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97595dbd44b54617b3cae9b2bb6eaf47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97595dbd44b54617b3cae9b2bb6eaf47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97595dbd44b54617b3cae9b2bb6eaf47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97595dbd44b54617b3cae9b2bb6eaf47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97595dbd44b54617b3cae9b2bb6eaf47.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFEhgYtRP-vC6QJ4ahJYx1-opV0=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.987784+00 2025-12-09 10:15:21.987789+00 13615 8332FWE#VS-D3番禺调色 SPMX-20240815308808 \N \N \N 1 \N [{"file_id": "feb452e6-c1d9-4372-9ca6-a29ec2abef6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd4a5604f8664415a62bd9000797ad7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd4a5604f8664415a62bd9000797ad7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd4a5604f8664415a62bd9000797ad7b.jpg", "file_size": 15531, "is_delete": false, "file_type": 1, "original_file_name": "8332FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4a5604f8664415a62bd9000797ad7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4a5604f8664415a62bd9000797ad7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd4a5604f8664415a62bd9000797ad7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd4a5604f8664415a62bd9000797ad7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd4a5604f8664415a62bd9000797ad7b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3qeM7UnZSpT0xjsPbCSJ8KcXJQ=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.990085+00 2025-12-09 10:15:21.990089+00 13616 JTSS477FW#VS-D3 SPMX-20240815308807 \N \N \N 1 \N [{"file_id": "c6d6e300-5a64-4e33-aa6f-758f3fc6fc9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eb2d0baa5054c60ad0ad934ed9c9841.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eb2d0baa5054c60ad0ad934ed9c9841.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eb2d0baa5054c60ad0ad934ed9c9841.jpg", "file_size": 16163, "is_delete": false, "file_type": 1, "original_file_name": "JTSS477FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb2d0baa5054c60ad0ad934ed9c9841.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb2d0baa5054c60ad0ad934ed9c9841.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb2d0baa5054c60ad0ad934ed9c9841.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eb2d0baa5054c60ad0ad934ed9c9841.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eb2d0baa5054c60ad0ad934ed9c9841.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMWU2RocIyhyQLAoKPD13mgKNZk=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.992358+00 2025-12-09 10:15:21.992363+00 13617 0005-35#桔色净色 SPMX-20240815308815 \N \N \N 1 \N [{"file_id": "c2f3e567-c00a-44e6-a159-bc514d6a32a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c39c50798ba748b58c30efc55e5abda0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c39c50798ba748b58c30efc55e5abda0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c39c50798ba748b58c30efc55e5abda0.jpg", "file_size": 7840, "is_delete": false, "file_type": 1, "original_file_name": "0005-35#桔色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39c50798ba748b58c30efc55e5abda0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39c50798ba748b58c30efc55e5abda0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c39c50798ba748b58c30efc55e5abda0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c39c50798ba748b58c30efc55e5abda0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c39c50798ba748b58c30efc55e5abda0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U08unm9xPW_fekcdXLtm-Me7QgM=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.994925+00 2025-12-09 10:15:21.99493+00 13618 FM016#原版色 SPMX-20240815308821 \N \N \N 1 \N [{"file_id": "f4e9bbe9-6697-45c1-8a3e-b09b3c47699c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cfe0f5b10384a3881c749e0d27263ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cfe0f5b10384a3881c749e0d27263ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cfe0f5b10384a3881c749e0d27263ed.jpg", "file_size": 31141, "is_delete": false, "file_type": 1, "original_file_name": "FM016#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cfe0f5b10384a3881c749e0d27263ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cfe0f5b10384a3881c749e0d27263ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cfe0f5b10384a3881c749e0d27263ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cfe0f5b10384a3881c749e0d27263ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cfe0f5b10384a3881c749e0d27263ed.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyWnED8-VG-k0kdQ9CsuuXgAWwg=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.997301+00 2025-12-09 10:15:21.997306+00 13619 C907#正身M SPMX-20240815308820 \N \N \N 1 \N [{"file_id": "6db9bfaa-687e-48c8-b363-5ad98d00ae43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "689f51e0e3db45ff8058ae4a65a06e9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "689f51e0e3db45ff8058ae4a65a06e9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "689f51e0e3db45ff8058ae4a65a06e9b.jpg", "file_size": 12724, "is_delete": false, "file_type": 1, "original_file_name": "C907#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689f51e0e3db45ff8058ae4a65a06e9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689f51e0e3db45ff8058ae4a65a06e9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689f51e0e3db45ff8058ae4a65a06e9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/689f51e0e3db45ff8058ae4a65a06e9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/689f51e0e3db45ff8058ae4a65a06e9b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgbLr_M720kiQx3hXwSLY3EyWeM=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:21.999393+00 2025-12-09 10:15:21.999398+00 13620 LZ1320#背心款1号色 SPMX-20240815308823 \N \N \N 1 \N [{"file_id": "7ca7597a-526f-4e28-936f-28afe9350584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e10c987a31c4cd8962cad635e6d4b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e10c987a31c4cd8962cad635e6d4b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e10c987a31c4cd8962cad635e6d4b3b.jpg", "file_size": 19064, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e10c987a31c4cd8962cad635e6d4b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e10c987a31c4cd8962cad635e6d4b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e10c987a31c4cd8962cad635e6d4b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e10c987a31c4cd8962cad635e6d4b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e10c987a31c4cd8962cad635e6d4b3b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3zg2Hyfp29bavKwYuWNjGNfH9Q8=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.001673+00 2025-12-09 10:15:22.001678+00 13621 LZ1320#捆条布 SPMX-20240815308814 \N \N \N 1 \N [{"file_id": "99b31660-bf15-487e-8b61-d38ebfce6ff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb79db7c3e524997bcd0f628dae1f53e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb79db7c3e524997bcd0f628dae1f53e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb79db7c3e524997bcd0f628dae1f53e.jpg", "file_size": 21099, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb79db7c3e524997bcd0f628dae1f53e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb79db7c3e524997bcd0f628dae1f53e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb79db7c3e524997bcd0f628dae1f53e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb79db7c3e524997bcd0f628dae1f53e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb79db7c3e524997bcd0f628dae1f53e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0XLaxC-FQ9MmC8Zaxm-YfrLXvs=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.003883+00 2025-12-09 10:15:22.003887+00 13622 LJH1705-52#白色 SPMX-20240815308825 \N \N \N 1 \N [{"file_id": "cceb0376-e55c-4f36-be0f-1b51bc42db55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d6a0cedc3354320b5dc7a259aa6c601.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d6a0cedc3354320b5dc7a259aa6c601.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d6a0cedc3354320b5dc7a259aa6c601.jpg", "file_size": 51526, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6a0cedc3354320b5dc7a259aa6c601.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6a0cedc3354320b5dc7a259aa6c601.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d6a0cedc3354320b5dc7a259aa6c601.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d6a0cedc3354320b5dc7a259aa6c601.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d6a0cedc3354320b5dc7a259aa6c601.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lq1zNWJwtBgiMWNJ0JDY0sr9iX0=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.006188+00 2025-12-09 10:15:22.006193+00 13623 23-2122#A3白色-领子4XL SPMX-20240815308813 \N \N \N 1 \N [{"file_id": "a48bd1f7-aaa6-4e3d-952d-4b9eb09986cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebbea5dec3a74e188ae44a817a63ef0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebbea5dec3a74e188ae44a817a63ef0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebbea5dec3a74e188ae44a817a63ef0a.jpg", "file_size": 11619, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3白色-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbea5dec3a74e188ae44a817a63ef0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbea5dec3a74e188ae44a817a63ef0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebbea5dec3a74e188ae44a817a63ef0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebbea5dec3a74e188ae44a817a63ef0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebbea5dec3a74e188ae44a817a63ef0a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBk-j7K2OC9F_wjvisvvwcviKYc=", "createTime": "2024-08-15 14:56:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.008364+00 2025-12-09 10:15:22.00837+00 13624 23-2122#A3绿色-3XL SPMX-20240815308822 \N \N \N 1 \N [{"file_id": "f8f52d62-893d-41da-acd7-c896dcace4fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320a17555aea4fb7bff28c1e8ab18ed4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320a17555aea4fb7bff28c1e8ab18ed4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320a17555aea4fb7bff28c1e8ab18ed4.jpg", "file_size": 14845, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3绿色-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a17555aea4fb7bff28c1e8ab18ed4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a17555aea4fb7bff28c1e8ab18ed4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a17555aea4fb7bff28c1e8ab18ed4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320a17555aea4fb7bff28c1e8ab18ed4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320a17555aea4fb7bff28c1e8ab18ed4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VAlnrQpatXfpgh3Ak40Et4a1oA=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.010405+00 2025-12-09 10:15:22.010409+00 13625 HT3350#白色L SPMX-20240815308824 \N \N \N 1 \N [{"file_id": "4a352749-632f-4bb5-b38c-6f1a5105d213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "521961063b3b4151971136da953bf811.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "521961063b3b4151971136da953bf811.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "521961063b3b4151971136da953bf811.jpg", "file_size": 56816, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521961063b3b4151971136da953bf811.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521961063b3b4151971136da953bf811.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521961063b3b4151971136da953bf811.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/521961063b3b4151971136da953bf811.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/521961063b3b4151971136da953bf811.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVl7JktXjv1oXFq3R5d6bokan5g=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.012696+00 2025-12-09 10:15:22.012701+00 13626 8333FWE#VS-D3 SPMX-20240815308819 \N \N \N 1 \N [{"file_id": "f31345bf-3286-4aad-8d24-1944d558ede7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e23ce304b2b44faea6928523ddfa0e7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e23ce304b2b44faea6928523ddfa0e7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e23ce304b2b44faea6928523ddfa0e7e.jpg", "file_size": 27444, "is_delete": false, "file_type": 1, "original_file_name": "8333FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23ce304b2b44faea6928523ddfa0e7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23ce304b2b44faea6928523ddfa0e7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e23ce304b2b44faea6928523ddfa0e7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e23ce304b2b44faea6928523ddfa0e7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e23ce304b2b44faea6928523ddfa0e7e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:puGOhJlE-jeY3EkgSA---zQGqm0=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.015677+00 2025-12-09 10:15:22.015682+00 13627 DL31124-1#玫红批布 SPMX-20240815308817 \N \N \N 1 \N [{"file_id": "5f4f1491-c6d9-4c00-b4e1-a00b60b49939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7fb6fcf80c243a2a6a2bc185b095308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7fb6fcf80c243a2a6a2bc185b095308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7fb6fcf80c243a2a6a2bc185b095308.jpg", "file_size": 7998, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#玫红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb6fcf80c243a2a6a2bc185b095308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb6fcf80c243a2a6a2bc185b095308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb6fcf80c243a2a6a2bc185b095308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7fb6fcf80c243a2a6a2bc185b095308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7fb6fcf80c243a2a6a2bc185b095308.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rw655TVWoAyYERf9vz1FPWf8g5s=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.018465+00 2025-12-09 10:15:22.018471+00 13628 117#-白色 SPMX-20240815308816 \N \N \N 1 \N [{"file_id": "2aad924f-b841-4adb-89a1-ae80dc863861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f76b2a1999c4356b170f8c4806e27b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f76b2a1999c4356b170f8c4806e27b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f76b2a1999c4356b170f8c4806e27b5.jpg", "file_size": 41471, "is_delete": false, "file_type": 1, "original_file_name": "117#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f76b2a1999c4356b170f8c4806e27b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f76b2a1999c4356b170f8c4806e27b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f76b2a1999c4356b170f8c4806e27b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f76b2a1999c4356b170f8c4806e27b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f76b2a1999c4356b170f8c4806e27b5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1lBUpqyZsqvJ1_4bXcZlkXWD80=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.02119+00 2025-12-09 10:15:22.021195+00 13629 JTSS478FW#VS-D3 SPMX-20240815308818 \N \N \N 1 \N [{"file_id": "fc651e2e-ae91-4960-94e7-3b9a1d406514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a014fa26d1c44328be7f3ae113a2877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a014fa26d1c44328be7f3ae113a2877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a014fa26d1c44328be7f3ae113a2877.jpg", "file_size": 22086, "is_delete": false, "file_type": 1, "original_file_name": "JTSS478FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a014fa26d1c44328be7f3ae113a2877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a014fa26d1c44328be7f3ae113a2877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a014fa26d1c44328be7f3ae113a2877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a014fa26d1c44328be7f3ae113a2877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a014fa26d1c44328be7f3ae113a2877.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtK_blt12zpP9cX3nlHJYSd24Uk=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.023745+00 2025-12-09 10:15:22.02375+00 13630 DL31124-1#蓝绿后幅定位裁 SPMX-20240815308826 \N \N \N 1 \N [{"file_id": "8c1ad83b-7540-41ae-a234-41cf3c096a7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c5e18e39f764fea80864842fca191d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c5e18e39f764fea80864842fca191d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c5e18e39f764fea80864842fca191d5.jpg", "file_size": 11464, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#蓝绿后幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5e18e39f764fea80864842fca191d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5e18e39f764fea80864842fca191d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5e18e39f764fea80864842fca191d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c5e18e39f764fea80864842fca191d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c5e18e39f764fea80864842fca191d5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEbj5DuwccIJQGIwhxWBy6-HyM8=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.026314+00 2025-12-09 10:15:22.02632+00 13631 JTSS479FW#VS-D3 SPMX-20240815308828 \N \N \N 1 \N [{"file_id": "2ce39b15-f498-479d-9154-e081cd3cb03e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7152ab0436f47388247422793ea357e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7152ab0436f47388247422793ea357e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7152ab0436f47388247422793ea357e.jpg", "file_size": 12977, "is_delete": false, "file_type": 1, "original_file_name": "JTSS479FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7152ab0436f47388247422793ea357e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7152ab0436f47388247422793ea357e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7152ab0436f47388247422793ea357e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7152ab0436f47388247422793ea357e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7152ab0436f47388247422793ea357e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5Jx-UHtRg6k0n-kKtDLfTAMzCQ=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.028713+00 2025-12-09 10:15:22.028719+00 13632 0005-36#蓝色渐变 SPMX-20240815308827 \N \N \N 1 \N [{"file_id": "15d6f35c-6c6f-4047-9fb1-90c4497cb5c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e12b1e8674849f78d3834ffce97d291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e12b1e8674849f78d3834ffce97d291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e12b1e8674849f78d3834ffce97d291.jpg", "file_size": 11000, "is_delete": false, "file_type": 1, "original_file_name": "0005-36#蓝色渐变.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e12b1e8674849f78d3834ffce97d291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e12b1e8674849f78d3834ffce97d291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e12b1e8674849f78d3834ffce97d291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e12b1e8674849f78d3834ffce97d291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e12b1e8674849f78d3834ffce97d291.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZKgDaIcSvziCAuP9qinudzLrWI=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.03123+00 2025-12-09 10:15:22.031235+00 13633 117#-黑色 SPMX-20240815308829 \N \N \N 1 \N [{"file_id": "56ec160e-545f-4752-a54d-7ec32f94a023", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c55323a09b34ec9af2cc2464fc59ca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c55323a09b34ec9af2cc2464fc59ca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c55323a09b34ec9af2cc2464fc59ca8.jpg", "file_size": 41049, "is_delete": false, "file_type": 1, "original_file_name": "117#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55323a09b34ec9af2cc2464fc59ca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55323a09b34ec9af2cc2464fc59ca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c55323a09b34ec9af2cc2464fc59ca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c55323a09b34ec9af2cc2464fc59ca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c55323a09b34ec9af2cc2464fc59ca8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hSXYoHKEMq9utV-gNIfdxhPen4=", "createTime": "2024-08-15 14:56:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.033272+00 2025-12-09 10:15:22.033278+00 13634 8334FWE#番禺调色 SPMX-20240815308841 \N \N \N 1 \N [{"file_id": "625e33a5-3414-4a8a-941e-20d699e9639c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a7a0619548d44d0b0cf0401d4af9a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a7a0619548d44d0b0cf0401d4af9a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a7a0619548d44d0b0cf0401d4af9a56.jpg", "file_size": 30125, "is_delete": false, "file_type": 1, "original_file_name": "8334FWE#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a0619548d44d0b0cf0401d4af9a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a0619548d44d0b0cf0401d4af9a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a0619548d44d0b0cf0401d4af9a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a7a0619548d44d0b0cf0401d4af9a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a7a0619548d44d0b0cf0401d4af9a56.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6rxpdRxO7zc39d4IO-HiqOx1xc=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.0353+00 2025-12-09 10:15:22.035305+00 13635 C907#正身XL SPMX-20240815308843 \N \N \N 1 \N [{"file_id": "c866167d-0b62-4462-940d-22deb7760583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fc2a1b96fdd485e9f630fa7b35b4128.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fc2a1b96fdd485e9f630fa7b35b4128.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fc2a1b96fdd485e9f630fa7b35b4128.jpg", "file_size": 11975, "is_delete": false, "file_type": 1, "original_file_name": "C907#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2a1b96fdd485e9f630fa7b35b4128.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2a1b96fdd485e9f630fa7b35b4128.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc2a1b96fdd485e9f630fa7b35b4128.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fc2a1b96fdd485e9f630fa7b35b4128.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fc2a1b96fdd485e9f630fa7b35b4128.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_KKRU8wnXH1YqcS4ythkYiKC1g=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.037408+00 2025-12-09 10:15:22.037414+00 13636 DL31124-1#蓝绿批布 SPMX-20240815308837 \N \N \N 1 \N [{"file_id": "a6aea384-09a6-431f-8522-2184039e69db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c527002f152745ddb728e01700cb15b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c527002f152745ddb728e01700cb15b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c527002f152745ddb728e01700cb15b4.jpg", "file_size": 8047, "is_delete": false, "file_type": 1, "original_file_name": "DL31124-1#蓝绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c527002f152745ddb728e01700cb15b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c527002f152745ddb728e01700cb15b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c527002f152745ddb728e01700cb15b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c527002f152745ddb728e01700cb15b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c527002f152745ddb728e01700cb15b4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUHkGtO63cONhJ_ygXcaK6Lif4g=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.039475+00 2025-12-09 10:15:22.039481+00 13637 C907#正身S SPMX-20240815308832 \N \N \N 1 \N [{"file_id": "7a4c8399-8bf2-45fd-a89e-dec0d616c227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5444a9c525284f62ada1228c651db36b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5444a9c525284f62ada1228c651db36b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5444a9c525284f62ada1228c651db36b.jpg", "file_size": 12722, "is_delete": false, "file_type": 1, "original_file_name": "C907#正身S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5444a9c525284f62ada1228c651db36b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5444a9c525284f62ada1228c651db36b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5444a9c525284f62ada1228c651db36b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5444a9c525284f62ada1228c651db36b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5444a9c525284f62ada1228c651db36b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTwHRjwH5EE7yjTmnhEzlKnWCaQ=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.041531+00 2025-12-09 10:15:22.041536+00 13638 FM016#桔红 SPMX-20240815308842 \N \N \N 1 \N [{"file_id": "805d5d8e-c41d-43ad-ac32-7694fd3316a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea29102b572441f1bb7ac6c18b8dffa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea29102b572441f1bb7ac6c18b8dffa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea29102b572441f1bb7ac6c18b8dffa0.jpg", "file_size": 31119, "is_delete": false, "file_type": 1, "original_file_name": "FM016#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea29102b572441f1bb7ac6c18b8dffa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea29102b572441f1bb7ac6c18b8dffa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea29102b572441f1bb7ac6c18b8dffa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea29102b572441f1bb7ac6c18b8dffa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea29102b572441f1bb7ac6c18b8dffa0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:puZgUs1LaD8TbZlm4tJbC1-lml0=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.043738+00 2025-12-09 10:15:22.043744+00 13639 LJH1705-52#粉色 SPMX-20240815308834 \N \N \N 1 \N [{"file_id": "9488d8d3-8764-48a7-bc3c-a46007ae6b92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6db3c8f3822c45c08d89872c5f22bea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6db3c8f3822c45c08d89872c5f22bea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6db3c8f3822c45c08d89872c5f22bea0.jpg", "file_size": 48527, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db3c8f3822c45c08d89872c5f22bea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db3c8f3822c45c08d89872c5f22bea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6db3c8f3822c45c08d89872c5f22bea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6db3c8f3822c45c08d89872c5f22bea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6db3c8f3822c45c08d89872c5f22bea0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FozadydgAqXO_iSpNyEv4TNTxhQ=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.046114+00 2025-12-09 10:15:22.04612+00 13640 0005-37#WJC22 SPMX-20240815308838 \N \N \N 1 \N [{"file_id": "7fc11a76-bebf-4a51-b528-8ed1091281d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33f40d75fe724f41b7bedd86ac9d65cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33f40d75fe724f41b7bedd86ac9d65cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33f40d75fe724f41b7bedd86ac9d65cf.jpg", "file_size": 21029, "is_delete": false, "file_type": 1, "original_file_name": "0005-37#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f40d75fe724f41b7bedd86ac9d65cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f40d75fe724f41b7bedd86ac9d65cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33f40d75fe724f41b7bedd86ac9d65cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33f40d75fe724f41b7bedd86ac9d65cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33f40d75fe724f41b7bedd86ac9d65cf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFBwXfPHnqr-tKiFyYtYhXCR83I=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.048411+00 2025-12-09 10:15:22.048416+00 13641 HT3350#白色XL SPMX-20240815308836 \N \N \N 1 \N [{"file_id": "bdc49f62-e709-4916-99ac-26e5633955b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8824eb02bb9849feb2fdcabd358964aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8824eb02bb9849feb2fdcabd358964aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8824eb02bb9849feb2fdcabd358964aa.jpg", "file_size": 55614, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824eb02bb9849feb2fdcabd358964aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824eb02bb9849feb2fdcabd358964aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824eb02bb9849feb2fdcabd358964aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8824eb02bb9849feb2fdcabd358964aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8824eb02bb9849feb2fdcabd358964aa.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C_a_C4uFGOdinSgkl2wsTOl1Mxo=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.050457+00 2025-12-09 10:15:22.050462+00 13642 LZ1320#背心款2号色 SPMX-20240815308833 \N \N \N 1 \N [{"file_id": "f1d1f308-03bc-4b3b-a508-e630c6ac9400", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7eefd527464d919b86ee84db453f3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7eefd527464d919b86ee84db453f3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7eefd527464d919b86ee84db453f3c.jpg", "file_size": 18393, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7eefd527464d919b86ee84db453f3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7eefd527464d919b86ee84db453f3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7eefd527464d919b86ee84db453f3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7eefd527464d919b86ee84db453f3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7eefd527464d919b86ee84db453f3c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5s0KnebuvLKzyW3mNzxeGBoKCM=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.052504+00 2025-12-09 10:15:22.05251+00 13643 8334FWE#VS-D3 SPMX-20240815308830 \N \N \N 1 \N [{"file_id": "84fe9dc7-ad93-46fe-908a-d5162141eba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c462684295bc49a69e44becd3b2b3ed8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c462684295bc49a69e44becd3b2b3ed8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c462684295bc49a69e44becd3b2b3ed8.jpg", "file_size": 26980, "is_delete": false, "file_type": 1, "original_file_name": "8334FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c462684295bc49a69e44becd3b2b3ed8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c462684295bc49a69e44becd3b2b3ed8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c462684295bc49a69e44becd3b2b3ed8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c462684295bc49a69e44becd3b2b3ed8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c462684295bc49a69e44becd3b2b3ed8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wCIQkETKNe04XE8H63ctJ4ENDKs=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.05455+00 2025-12-09 10:15:22.054555+00 13644 FM016#彩蓝 SPMX-20240815308831 \N \N \N 1 \N [{"file_id": "c419425b-5fcf-4fc9-8c72-185d65cb73e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfb4412097044c1c920fabdc71664705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfb4412097044c1c920fabdc71664705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfb4412097044c1c920fabdc71664705.jpg", "file_size": 27988, "is_delete": false, "file_type": 1, "original_file_name": "FM016#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb4412097044c1c920fabdc71664705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb4412097044c1c920fabdc71664705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfb4412097044c1c920fabdc71664705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfb4412097044c1c920fabdc71664705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfb4412097044c1c920fabdc71664705.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Nt6Qz368cVZACbeo8VOHMjEXKI=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.056644+00 2025-12-09 10:15:22.056649+00 13645 23-2122#A3绿色-4XL SPMX-20240815308835 \N \N \N 1 \N [{"file_id": "b9c5dc69-6308-4d53-ad37-db9659643918", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd83377efde643a7b71f3b0bd576e7de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd83377efde643a7b71f3b0bd576e7de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd83377efde643a7b71f3b0bd576e7de.jpg", "file_size": 14229, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3绿色-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd83377efde643a7b71f3b0bd576e7de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd83377efde643a7b71f3b0bd576e7de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd83377efde643a7b71f3b0bd576e7de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd83377efde643a7b71f3b0bd576e7de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd83377efde643a7b71f3b0bd576e7de.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h8uuoXrjE82YhDCzZyF_GJ7ANzk=", "createTime": "2024-08-15 14:56:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.058686+00 2025-12-09 10:15:22.058691+00 13646 1170#WJC22 SPMX-20240815308840 \N \N \N 1 \N [{"file_id": "41ccd5ea-4359-4c43-8035-42f85362da2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "769a8169f2ef46288d0c05b9ca12255d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "769a8169f2ef46288d0c05b9ca12255d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "769a8169f2ef46288d0c05b9ca12255d.jpg", "file_size": 15035, "is_delete": false, "file_type": 1, "original_file_name": "1170#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769a8169f2ef46288d0c05b9ca12255d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769a8169f2ef46288d0c05b9ca12255d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769a8169f2ef46288d0c05b9ca12255d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/769a8169f2ef46288d0c05b9ca12255d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/769a8169f2ef46288d0c05b9ca12255d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ghrmLtjHaECamwRJmDDe1OIuRM=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.060719+00 2025-12-09 10:15:22.060724+00 13647 JTSS480FW#VS-D3 SPMX-20240815308839 \N \N \N 1 \N [{"file_id": "1b841b09-766a-4d0a-a064-cca477359c19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd7671e1e1a64465ac2722b3b1b695da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd7671e1e1a64465ac2722b3b1b695da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd7671e1e1a64465ac2722b3b1b695da.jpg", "file_size": 10400, "is_delete": false, "file_type": 1, "original_file_name": "JTSS480FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7671e1e1a64465ac2722b3b1b695da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7671e1e1a64465ac2722b3b1b695da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7671e1e1a64465ac2722b3b1b695da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd7671e1e1a64465ac2722b3b1b695da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd7671e1e1a64465ac2722b3b1b695da.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leQM1w3M10NjIZkM-zWiSuUFMGg=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.091053+00 2025-12-09 10:15:22.091057+00 13660 HT3350#黑色L SPMX-20240815308855 \N \N \N 1 \N [{"file_id": "83847636-380b-4b0d-9d8e-61828b2cd397", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13cea8df8a4e4fe7b1933d06f57aca6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13cea8df8a4e4fe7b1933d06f57aca6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13cea8df8a4e4fe7b1933d06f57aca6f.jpg", "file_size": 55200, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13cea8df8a4e4fe7b1933d06f57aca6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13cea8df8a4e4fe7b1933d06f57aca6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13cea8df8a4e4fe7b1933d06f57aca6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13cea8df8a4e4fe7b1933d06f57aca6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13cea8df8a4e4fe7b1933d06f57aca6f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:To5xzuCT4KpYVdEY_KfwfloaKCE=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.062757+00 2025-12-09 10:15:22.062762+00 13648 23-2122#A3绿色-领子3XL SPMX-20240815308848 \N \N \N 1 \N [{"file_id": "f3f4d777-2222-419b-9306-d783621cff92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0993a99e0ae947879bb0ad6e42606fd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0993a99e0ae947879bb0ad6e42606fd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0993a99e0ae947879bb0ad6e42606fd9.jpg", "file_size": 13453, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3绿色-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0993a99e0ae947879bb0ad6e42606fd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0993a99e0ae947879bb0ad6e42606fd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0993a99e0ae947879bb0ad6e42606fd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0993a99e0ae947879bb0ad6e42606fd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0993a99e0ae947879bb0ad6e42606fd9.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEKCogeUR8utr6IywtT6ljY-BwE=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.06483+00 2025-12-09 10:15:22.064835+00 13649 HT3350#黑色2XL SPMX-20240815308846 \N \N \N 1 \N [{"file_id": "e7f3f0c3-54f7-42d0-a41c-2fc9e49e88ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5324aa6a525146f8b535393912c04e2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5324aa6a525146f8b535393912c04e2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5324aa6a525146f8b535393912c04e2c.jpg", "file_size": 52821, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324aa6a525146f8b535393912c04e2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324aa6a525146f8b535393912c04e2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5324aa6a525146f8b535393912c04e2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5324aa6a525146f8b535393912c04e2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5324aa6a525146f8b535393912c04e2c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5TAejfWAaCfpzQENXzlwiUdnRE=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.066846+00 2025-12-09 10:15:22.066851+00 13650 LJH1705-52#红色 SPMX-20240815308844 \N \N \N 1 \N [{"file_id": "1bcbd0d2-ce0d-4e1c-9b9c-5b1e78e37179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49cf5ff7a1fe4c978494760a6ab4ac6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49cf5ff7a1fe4c978494760a6ab4ac6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49cf5ff7a1fe4c978494760a6ab4ac6f.jpg", "file_size": 49352, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49cf5ff7a1fe4c978494760a6ab4ac6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49cf5ff7a1fe4c978494760a6ab4ac6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49cf5ff7a1fe4c978494760a6ab4ac6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49cf5ff7a1fe4c978494760a6ab4ac6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49cf5ff7a1fe4c978494760a6ab4ac6f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFFDovbEvaxaW5Fvk7f89pOHiuQ=", "createTime": "2024-08-15 14:56:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.068877+00 2025-12-09 10:15:22.068882+00 13651 DL31125#亮黄批布 SPMX-20240815308847 \N \N \N 1 \N [{"file_id": "e824c296-632e-4481-bccf-b95350e80954", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9181dfa963b4b41a55a1e5fabb6c38b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9181dfa963b4b41a55a1e5fabb6c38b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9181dfa963b4b41a55a1e5fabb6c38b.jpg", "file_size": 17608, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#亮黄批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9181dfa963b4b41a55a1e5fabb6c38b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9181dfa963b4b41a55a1e5fabb6c38b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9181dfa963b4b41a55a1e5fabb6c38b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9181dfa963b4b41a55a1e5fabb6c38b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9181dfa963b4b41a55a1e5fabb6c38b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rnl4MYCYEdMPEx-fvZ1C17CFE8A=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.071214+00 2025-12-09 10:15:22.07122+00 13652 LZ1320#背心款3号色 SPMX-20240815308845 \N \N \N 1 \N [{"file_id": "cdfec5ad-989c-4fc0-9652-9e8ddf3130f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0988d6814744c8a00fe3950ab7fe8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0988d6814744c8a00fe3950ab7fe8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0988d6814744c8a00fe3950ab7fe8b.jpg", "file_size": 18216, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0988d6814744c8a00fe3950ab7fe8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0988d6814744c8a00fe3950ab7fe8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0988d6814744c8a00fe3950ab7fe8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0988d6814744c8a00fe3950ab7fe8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0988d6814744c8a00fe3950ab7fe8b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ptOrBtAdEDhTi3bIoeNi1Re9iu0=", "createTime": "2024-08-15 14:56:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.073481+00 2025-12-09 10:15:22.073486+00 13653 JTSS481FW#VS-D3 SPMX-20240815308852 \N \N \N 1 \N [{"file_id": "51b41d41-85be-428c-bae5-70e39abd9d86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0130f8330c1a43d88f33257a5c0f7bed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0130f8330c1a43d88f33257a5c0f7bed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0130f8330c1a43d88f33257a5c0f7bed.jpg", "file_size": 26516, "is_delete": false, "file_type": 1, "original_file_name": "JTSS481FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0130f8330c1a43d88f33257a5c0f7bed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0130f8330c1a43d88f33257a5c0f7bed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0130f8330c1a43d88f33257a5c0f7bed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0130f8330c1a43d88f33257a5c0f7bed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0130f8330c1a43d88f33257a5c0f7bed.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVaQZBybAxjugauVhl-8litwhaY=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.075991+00 2025-12-09 10:15:22.075997+00 13654 8335FWE#VS-D3 SPMX-20240815308853 \N \N \N 1 \N [{"file_id": "d51fb2ca-4775-423c-89be-8807f3170101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb7ed9679c54f45a7f71ccea63f9a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb7ed9679c54f45a7f71ccea63f9a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb7ed9679c54f45a7f71ccea63f9a56.jpg", "file_size": 13202, "is_delete": false, "file_type": 1, "original_file_name": "8335FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb7ed9679c54f45a7f71ccea63f9a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb7ed9679c54f45a7f71ccea63f9a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb7ed9679c54f45a7f71ccea63f9a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb7ed9679c54f45a7f71ccea63f9a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb7ed9679c54f45a7f71ccea63f9a56.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rAR61Y4wi0TO05K9xkkr02tBwtQ=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.078418+00 2025-12-09 10:15:22.078425+00 13655 23-2122#A3绿色-领子4XL SPMX-20240815308850 \N \N \N 1 \N [{"file_id": "33b3b89b-f8ba-4449-8d2d-71f12ba11a9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0aab0016f08f4db785508378bef60b63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0aab0016f08f4db785508378bef60b63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0aab0016f08f4db785508378bef60b63.jpg", "file_size": 13387, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A3绿色-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aab0016f08f4db785508378bef60b63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aab0016f08f4db785508378bef60b63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0aab0016f08f4db785508378bef60b63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0aab0016f08f4db785508378bef60b63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0aab0016f08f4db785508378bef60b63.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YM4gb4aT4ePPNt0FHnFOoE-g0LY=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.080753+00 2025-12-09 10:15:22.08076+00 13656 DL31125#兰绿批布 SPMX-20240815308851 \N \N \N 1 \N [{"file_id": "8e8d0b43-fbff-4074-aecf-68848395bd9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e380a630776f4f4e89186092c71d132e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e380a630776f4f4e89186092c71d132e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e380a630776f4f4e89186092c71d132e.jpg", "file_size": 17341, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#兰绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e380a630776f4f4e89186092c71d132e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e380a630776f4f4e89186092c71d132e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e380a630776f4f4e89186092c71d132e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e380a630776f4f4e89186092c71d132e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e380a630776f4f4e89186092c71d132e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5TP2P7VJXLiVj-mYeQiN6IelUcM=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.084308+00 2025-12-09 10:15:22.084313+00 13657 0005-38#WJC22 SPMX-20240815308849 \N \N \N 1 \N [{"file_id": "4fff0b22-6d29-485d-9596-03ef41e55d9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75dd4ec62eb94a4a8ae0c12eed6d4147.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75dd4ec62eb94a4a8ae0c12eed6d4147.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75dd4ec62eb94a4a8ae0c12eed6d4147.jpg", "file_size": 10661, "is_delete": false, "file_type": 1, "original_file_name": "0005-38#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd4ec62eb94a4a8ae0c12eed6d4147.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd4ec62eb94a4a8ae0c12eed6d4147.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75dd4ec62eb94a4a8ae0c12eed6d4147.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75dd4ec62eb94a4a8ae0c12eed6d4147.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75dd4ec62eb94a4a8ae0c12eed6d4147.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gj2EtRk5NIFNv95JgczdZfAIT0c=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.086674+00 2025-12-09 10:15:22.086679+00 13658 8335FWE#VS-D3番禺调色 SPMX-20240815308862 \N \N \N 1 \N [{"file_id": "22ada56c-55f4-4589-b085-ef7ced5e4583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54833550bb6842fd911780a42539f560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54833550bb6842fd911780a42539f560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54833550bb6842fd911780a42539f560.jpg", "file_size": 13851, "is_delete": false, "file_type": 1, "original_file_name": "8335FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54833550bb6842fd911780a42539f560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54833550bb6842fd911780a42539f560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54833550bb6842fd911780a42539f560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54833550bb6842fd911780a42539f560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54833550bb6842fd911780a42539f560.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPa7q-0PEYJnbQn6m1vzf5h7AFk=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.088973+00 2025-12-09 10:15:22.088978+00 13659 HT3350#黑色XL SPMX-20240815308866 \N \N \N 1 \N [{"file_id": "cf883295-827f-405d-9257-ba3dd64edde7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e249483236ba44638ee55a9c2032d7d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e249483236ba44638ee55a9c2032d7d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e249483236ba44638ee55a9c2032d7d3.jpg", "file_size": 53952, "is_delete": false, "file_type": 1, "original_file_name": "HT3350#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e249483236ba44638ee55a9c2032d7d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e249483236ba44638ee55a9c2032d7d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e249483236ba44638ee55a9c2032d7d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e249483236ba44638ee55a9c2032d7d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e249483236ba44638ee55a9c2032d7d3.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEtJrm8fwjJMUWCajTMxlpZk3AY=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.093055+00 2025-12-09 10:15:22.09306+00 13661 LZ1320#背心款5号色 SPMX-20240815308867 \N \N \N 1 \N [{"file_id": "33049176-8c2e-4a75-8a0a-37f07821dc78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d53867170d345f985d8af1855a5eab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d53867170d345f985d8af1855a5eab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d53867170d345f985d8af1855a5eab0.jpg", "file_size": 17880, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d53867170d345f985d8af1855a5eab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d53867170d345f985d8af1855a5eab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d53867170d345f985d8af1855a5eab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d53867170d345f985d8af1855a5eab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d53867170d345f985d8af1855a5eab0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzpjVlo_EOsilxvEiy0idIH_3SY=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.095242+00 2025-12-09 10:15:22.095247+00 13662 C907#袖口门筒领子M SPMX-20240815308868 \N \N \N 1 \N [{"file_id": "d9ab18f6-02aa-434e-ad97-56b5afa83e8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a2f188dc21244e29b23306c38ba3a3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a2f188dc21244e29b23306c38ba3a3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a2f188dc21244e29b23306c38ba3a3a.jpg", "file_size": 21325, "is_delete": false, "file_type": 1, "original_file_name": "C907#袖口门筒领子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2f188dc21244e29b23306c38ba3a3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2f188dc21244e29b23306c38ba3a3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a2f188dc21244e29b23306c38ba3a3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a2f188dc21244e29b23306c38ba3a3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a2f188dc21244e29b23306c38ba3a3a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jun5QarD4P6NV2UTTSKoxtPy77g=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.09752+00 2025-12-09 10:15:22.097526+00 13663 C907#袖口门筒领子L SPMX-20240815308856 \N \N \N 1 \N [{"file_id": "65e05be2-b3cf-4495-8d4d-e1668d5ffd4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01ea40c444984061b2bda93f7074c5c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01ea40c444984061b2bda93f7074c5c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01ea40c444984061b2bda93f7074c5c7.jpg", "file_size": 20903, "is_delete": false, "file_type": 1, "original_file_name": "C907#袖口门筒领子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ea40c444984061b2bda93f7074c5c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ea40c444984061b2bda93f7074c5c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01ea40c444984061b2bda93f7074c5c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01ea40c444984061b2bda93f7074c5c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01ea40c444984061b2bda93f7074c5c7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RGzq1XF91gHmQk5QaDhrWtevGA=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.09976+00 2025-12-09 10:15:22.099765+00 13664 DL31125#前幅亮黄 SPMX-20240815308864 \N \N \N 1 \N [{"file_id": "01402ad7-700c-4ea5-bff6-39725603bd51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67a4951f246241e3ba9f31189fa3bc81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67a4951f246241e3ba9f31189fa3bc81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67a4951f246241e3ba9f31189fa3bc81.jpg", "file_size": 15319, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67a4951f246241e3ba9f31189fa3bc81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67a4951f246241e3ba9f31189fa3bc81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67a4951f246241e3ba9f31189fa3bc81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67a4951f246241e3ba9f31189fa3bc81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67a4951f246241e3ba9f31189fa3bc81.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r39bVhydYOpTzAiK6d8BJ2rjsSI=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.101806+00 2025-12-09 10:15:22.101811+00 13665 23-2122#A4-3XL SPMX-20240815308861 \N \N \N 1 \N [{"file_id": "96482172-7157-4f01-86d8-9d309768983d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "236a1b0276e7415bacd6659ff2a37d19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "236a1b0276e7415bacd6659ff2a37d19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "236a1b0276e7415bacd6659ff2a37d19.jpg", "file_size": 15031, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236a1b0276e7415bacd6659ff2a37d19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236a1b0276e7415bacd6659ff2a37d19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/236a1b0276e7415bacd6659ff2a37d19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/236a1b0276e7415bacd6659ff2a37d19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/236a1b0276e7415bacd6659ff2a37d19.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k3v4uusCl8KQEj84OZbWpdDJqsk=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.103853+00 2025-12-09 10:15:22.103858+00 13666 LZ1320#背心款4号色 SPMX-20240815308857 \N \N \N 1 \N [{"file_id": "eb4c1617-9369-4fb9-ad47-c14fdba078e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e786d36263b4d7698a904ada3a4e1c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e786d36263b4d7698a904ada3a4e1c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e786d36263b4d7698a904ada3a4e1c3.jpg", "file_size": 17869, "is_delete": false, "file_type": 1, "original_file_name": "LZ1320#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e786d36263b4d7698a904ada3a4e1c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e786d36263b4d7698a904ada3a4e1c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e786d36263b4d7698a904ada3a4e1c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e786d36263b4d7698a904ada3a4e1c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e786d36263b4d7698a904ada3a4e1c3.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_LDVRwQxUrCEaffn0zf_cXu0kM=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.105883+00 2025-12-09 10:15:22.105888+00 13667 1170.1165.1164#斑马纹 SPMX-20240815308865 \N \N \N 1 \N [{"file_id": "3f7aabea-4df5-472f-9fa1-34ff73406893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6c4215fb704178b79871e3485c8504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6c4215fb704178b79871e3485c8504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6c4215fb704178b79871e3485c8504.jpg", "file_size": 27149, "is_delete": false, "file_type": 1, "original_file_name": "1170.1165.1164#斑马纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c4215fb704178b79871e3485c8504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c4215fb704178b79871e3485c8504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6c4215fb704178b79871e3485c8504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6c4215fb704178b79871e3485c8504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6c4215fb704178b79871e3485c8504.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JD5YPutnIJoIm2heVtv71z6vvsU=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.107915+00 2025-12-09 10:15:22.10792+00 13668 FM017#WJC22 SPMX-20240815308870 \N \N \N 1 \N [{"file_id": "5fcd5ab4-f075-4c51-95ba-249f59df1657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "866996ced880449ca2ada23cce7c0b80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "866996ced880449ca2ada23cce7c0b80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "866996ced880449ca2ada23cce7c0b80.jpg", "file_size": 28195, "is_delete": false, "file_type": 1, "original_file_name": "FM017#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866996ced880449ca2ada23cce7c0b80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866996ced880449ca2ada23cce7c0b80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866996ced880449ca2ada23cce7c0b80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/866996ced880449ca2ada23cce7c0b80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/866996ced880449ca2ada23cce7c0b80.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vflTnjxNXf5ge6i4emOIHocUx-Y=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.109963+00 2025-12-09 10:15:22.109968+00 13669 JTSS482FW#VS-D3 SPMX-20240815308863 \N \N \N 1 \N [{"file_id": "cd88f113-e68d-4350-b50a-dc950978f1c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b336e42f507e44a39512a3afef0b0404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b336e42f507e44a39512a3afef0b0404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b336e42f507e44a39512a3afef0b0404.jpg", "file_size": 166433, "is_delete": false, "file_type": 1, "original_file_name": "JTSS482FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336e42f507e44a39512a3afef0b0404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336e42f507e44a39512a3afef0b0404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b336e42f507e44a39512a3afef0b0404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b336e42f507e44a39512a3afef0b0404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b336e42f507e44a39512a3afef0b0404.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AfbqQgxAd1a1YFlIePKkCdI9c9c=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.112058+00 2025-12-09 10:15:22.112062+00 13670 FM016#玫红 SPMX-20240815308858 \N \N \N 1 \N [{"file_id": "e01661f8-5d00-490a-92f2-ecb582a48c56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eec5a3d5034940b5bd32d205966b4dd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eec5a3d5034940b5bd32d205966b4dd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eec5a3d5034940b5bd32d205966b4dd0.jpg", "file_size": 26131, "is_delete": false, "file_type": 1, "original_file_name": "FM016#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec5a3d5034940b5bd32d205966b4dd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec5a3d5034940b5bd32d205966b4dd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec5a3d5034940b5bd32d205966b4dd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eec5a3d5034940b5bd32d205966b4dd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eec5a3d5034940b5bd32d205966b4dd0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVfkYpVJNn_Ht1Q5rrVHmuoIwjU=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.11408+00 2025-12-09 10:15:22.114085+00 13671 1170#斑马纹 SPMX-20240815308854 \N \N \N 1 \N [{"file_id": "f7f55576-d8cf-43c0-8440-32195035c861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d33cf83cf5ea42718441535e78c87e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d33cf83cf5ea42718441535e78c87e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d33cf83cf5ea42718441535e78c87e06.jpg", "file_size": 26572, "is_delete": false, "file_type": 1, "original_file_name": "1170#斑马纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33cf83cf5ea42718441535e78c87e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33cf83cf5ea42718441535e78c87e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33cf83cf5ea42718441535e78c87e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d33cf83cf5ea42718441535e78c87e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d33cf83cf5ea42718441535e78c87e06.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uCuUEm5dQ6ia-JPST0keLr1V50w=", "createTime": "2024-08-15 14:56:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.116112+00 2025-12-09 10:15:22.116117+00 13672 0005-39#WJC22 SPMX-20240815308860 \N \N \N 1 \N [{"file_id": "30870a20-9840-4cb0-b69b-062913b60e04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa5c99d10bca46a394988f12ed73a089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa5c99d10bca46a394988f12ed73a089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa5c99d10bca46a394988f12ed73a089.jpg", "file_size": 9420, "is_delete": false, "file_type": 1, "original_file_name": "0005-39#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5c99d10bca46a394988f12ed73a089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5c99d10bca46a394988f12ed73a089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa5c99d10bca46a394988f12ed73a089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa5c99d10bca46a394988f12ed73a089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa5c99d10bca46a394988f12ed73a089.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bgf5lsRqHv61hi8uqI68d_xh9V0=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.118144+00 2025-12-09 10:15:22.118149+00 13673 LJH1705-52#蓝色 SPMX-20240815308859 \N \N \N 1 \N [{"file_id": "f7773e9b-af7d-421a-ab5c-6c7d460ad493", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ce5e977004647109c0b5158bb034daf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ce5e977004647109c0b5158bb034daf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ce5e977004647109c0b5158bb034daf.jpg", "file_size": 51080, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce5e977004647109c0b5158bb034daf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce5e977004647109c0b5158bb034daf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ce5e977004647109c0b5158bb034daf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ce5e977004647109c0b5158bb034daf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ce5e977004647109c0b5158bb034daf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYpeZUn5LokrsSTRECIwdZDKoMc=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.120183+00 2025-12-09 10:15:22.120188+00 13674 0005-3FWE#VS-D3 SPMX-20240815308869 \N \N \N 1 \N [{"file_id": "9074840e-e729-4832-b5b0-50d765add708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbc39166ab114b3a866d8f2058d9194f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbc39166ab114b3a866d8f2058d9194f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbc39166ab114b3a866d8f2058d9194f.jpg", "file_size": 22990, "is_delete": false, "file_type": 1, "original_file_name": "0005-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc39166ab114b3a866d8f2058d9194f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc39166ab114b3a866d8f2058d9194f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc39166ab114b3a866d8f2058d9194f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbc39166ab114b3a866d8f2058d9194f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbc39166ab114b3a866d8f2058d9194f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3en1osXKh69R4fqe8m23DuW0Pc=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.122244+00 2025-12-09 10:15:22.122249+00 13675 C907#袖口门筒领子S SPMX-20240815308878 \N \N \N 1 \N [{"file_id": "562b1d68-b59c-43af-8a2e-16b3771549bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b610e1e3e7554a17a5a83709bd649f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b610e1e3e7554a17a5a83709bd649f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b610e1e3e7554a17a5a83709bd649f1a.jpg", "file_size": 21974, "is_delete": false, "file_type": 1, "original_file_name": "C907#袖口门筒领子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b610e1e3e7554a17a5a83709bd649f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b610e1e3e7554a17a5a83709bd649f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b610e1e3e7554a17a5a83709bd649f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b610e1e3e7554a17a5a83709bd649f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b610e1e3e7554a17a5a83709bd649f1a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:20SOOz4DLsR_WgcWmpZlTXDm7wI=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.124279+00 2025-12-09 10:15:22.124284+00 13676 LZ1321#捆条布 SPMX-20240815308879 \N \N \N 1 \N [{"file_id": "67f7b244-1b5d-48d5-8830-ee0055fe29f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c90761729d234cc58fbb3edb18e8c037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c90761729d234cc58fbb3edb18e8c037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c90761729d234cc58fbb3edb18e8c037.jpg", "file_size": 14985, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90761729d234cc58fbb3edb18e8c037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90761729d234cc58fbb3edb18e8c037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90761729d234cc58fbb3edb18e8c037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c90761729d234cc58fbb3edb18e8c037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c90761729d234cc58fbb3edb18e8c037.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRyKyTs1bHV4BDiv0bAHkxOEr4A=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.126313+00 2025-12-09 10:15:22.126318+00 13677 8336FWE#3XL SPMX-20240815308883 \N \N \N 1 \N [{"file_id": "9b06b7cf-6228-441a-8cab-a29da6c2713e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7a5480a25234173b17c8d9cde58a9cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7a5480a25234173b17c8d9cde58a9cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7a5480a25234173b17c8d9cde58a9cf.jpg", "file_size": 12004, "is_delete": false, "file_type": 1, "original_file_name": "8336FWE#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a5480a25234173b17c8d9cde58a9cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a5480a25234173b17c8d9cde58a9cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a5480a25234173b17c8d9cde58a9cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7a5480a25234173b17c8d9cde58a9cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7a5480a25234173b17c8d9cde58a9cf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03HiRfoL_c6VeGx-a4rkKN1id3I=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.128355+00 2025-12-09 10:15:22.12836+00 13678 DL31125#前幅兰绿 SPMX-20240815308875 \N \N \N 1 \N [{"file_id": "b27450f2-f8d4-4bc3-96c5-bab89aecc96e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05b43a5d9dd34f47826cf9b0325676cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05b43a5d9dd34f47826cf9b0325676cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05b43a5d9dd34f47826cf9b0325676cf.jpg", "file_size": 16218, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43a5d9dd34f47826cf9b0325676cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43a5d9dd34f47826cf9b0325676cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43a5d9dd34f47826cf9b0325676cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05b43a5d9dd34f47826cf9b0325676cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05b43a5d9dd34f47826cf9b0325676cf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i60PcDxzZjz1z_ZjcTL0gRxTPTI=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.130665+00 2025-12-09 10:15:22.13067+00 13679 DL31125#前幅墨绿 SPMX-20240815308885 \N \N \N 1 \N [{"file_id": "89aa0ed4-d12e-4a17-b8e2-ba56fd3fcfbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "656fc957459d4ede87c0331eabf7531e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "656fc957459d4ede87c0331eabf7531e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "656fc957459d4ede87c0331eabf7531e.jpg", "file_size": 16203, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656fc957459d4ede87c0331eabf7531e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656fc957459d4ede87c0331eabf7531e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656fc957459d4ede87c0331eabf7531e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/656fc957459d4ede87c0331eabf7531e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/656fc957459d4ede87c0331eabf7531e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NADgjF27vPUuvM0aURLBCS2sOmw=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.132949+00 2025-12-09 10:15:22.132954+00 13680 HT3388#3号色 SPMX-20240815308876 \N \N \N 1 \N [{"file_id": "d7a58c43-1ca8-4c36-b370-0453dbca8536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2153629cce794d4383c09e0f971b209f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2153629cce794d4383c09e0f971b209f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2153629cce794d4383c09e0f971b209f.jpg", "file_size": 66025, "is_delete": false, "file_type": 1, "original_file_name": "HT3388#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2153629cce794d4383c09e0f971b209f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2153629cce794d4383c09e0f971b209f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2153629cce794d4383c09e0f971b209f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2153629cce794d4383c09e0f971b209f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2153629cce794d4383c09e0f971b209f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4H-1Y07fyBg3CmK1S7w4upjeMyw=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.135229+00 2025-12-09 10:15:22.135234+00 13681 1171#-橙色RC23 SPMX-20240815308877 \N \N \N 1 \N [{"file_id": "9710111e-d2f9-46c8-b730-24c93f31979a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "121e225b835e493a89bab52195af17cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "121e225b835e493a89bab52195af17cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "121e225b835e493a89bab52195af17cf.jpg", "file_size": 17855, "is_delete": false, "file_type": 1, "original_file_name": "1171#-橙色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121e225b835e493a89bab52195af17cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121e225b835e493a89bab52195af17cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121e225b835e493a89bab52195af17cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/121e225b835e493a89bab52195af17cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/121e225b835e493a89bab52195af17cf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJYf1ZYsH6XUBrgWHrQApvw3EaU=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.137245+00 2025-12-09 10:15:22.13725+00 13682 23-2122#A4-4XL SPMX-20240815308873 \N \N \N 1 \N [{"file_id": "353a2c86-96be-40bc-81d0-ac1203de250b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c4b7cd26f834a0d9992a26366b3d4fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c4b7cd26f834a0d9992a26366b3d4fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c4b7cd26f834a0d9992a26366b3d4fd.jpg", "file_size": 13919, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b7cd26f834a0d9992a26366b3d4fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b7cd26f834a0d9992a26366b3d4fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b7cd26f834a0d9992a26366b3d4fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c4b7cd26f834a0d9992a26366b3d4fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c4b7cd26f834a0d9992a26366b3d4fd.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_hdtDhpP3JNgXbm3nIEQb0tlhEI=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.139285+00 2025-12-09 10:15:22.13929+00 13683 JTSS483FW#VS-D3 SPMX-20240815308874 \N \N \N 1 \N [{"file_id": "b704901c-0f39-4591-af72-fc44b1f8df18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "096fd1de5f1a469c8244597dfff4f9d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "096fd1de5f1a469c8244597dfff4f9d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "096fd1de5f1a469c8244597dfff4f9d4.jpg", "file_size": 26727, "is_delete": false, "file_type": 1, "original_file_name": "JTSS483FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096fd1de5f1a469c8244597dfff4f9d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096fd1de5f1a469c8244597dfff4f9d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096fd1de5f1a469c8244597dfff4f9d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/096fd1de5f1a469c8244597dfff4f9d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/096fd1de5f1a469c8244597dfff4f9d4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49SMZnpH7QsZdhaZ4w9-ZrQzXnw=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.141328+00 2025-12-09 10:15:22.141333+00 13684 23-2122#A4-领子3XL SPMX-20240815308884 \N \N \N 1 \N [{"file_id": "ca7656f7-2fbf-4352-9d16-ab709f5f9ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e3a13bbc3c3443cb0c7dcb94b84522e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e3a13bbc3c3443cb0c7dcb94b84522e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e3a13bbc3c3443cb0c7dcb94b84522e.jpg", "file_size": 13220, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3a13bbc3c3443cb0c7dcb94b84522e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3a13bbc3c3443cb0c7dcb94b84522e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3a13bbc3c3443cb0c7dcb94b84522e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e3a13bbc3c3443cb0c7dcb94b84522e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e3a13bbc3c3443cb0c7dcb94b84522e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eABP8p-Sl4myA8CB1v_BNfqVPzg=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.143356+00 2025-12-09 10:15:22.143361+00 13685 JTSS484FW#VS-D3 SPMX-20240815308886 \N \N \N 1 \N [{"file_id": "32bacf47-008c-48e4-9d7f-36e3cbffae67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abfc05a4302b4a11975dd05babbb8cb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abfc05a4302b4a11975dd05babbb8cb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abfc05a4302b4a11975dd05babbb8cb4.jpg", "file_size": 19059, "is_delete": false, "file_type": 1, "original_file_name": "JTSS484FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfc05a4302b4a11975dd05babbb8cb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfc05a4302b4a11975dd05babbb8cb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfc05a4302b4a11975dd05babbb8cb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abfc05a4302b4a11975dd05babbb8cb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abfc05a4302b4a11975dd05babbb8cb4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bUol9_BY8HSy11yb2TUs4gRnzE=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.145361+00 2025-12-09 10:15:22.145366+00 13686 8336FWE#2XL SPMX-20240815308872 \N \N \N 1 \N [{"file_id": "95fcd17b-e5d8-4676-b65a-2e922a4fe8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d81074a22de429399c4d44b29ebb445.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d81074a22de429399c4d44b29ebb445.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d81074a22de429399c4d44b29ebb445.jpg", "file_size": 12030, "is_delete": false, "file_type": 1, "original_file_name": "8336FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81074a22de429399c4d44b29ebb445.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81074a22de429399c4d44b29ebb445.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81074a22de429399c4d44b29ebb445.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d81074a22de429399c4d44b29ebb445.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d81074a22de429399c4d44b29ebb445.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOjOX_bm_cyKx9qb8yrMWnBa-vU=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.147434+00 2025-12-09 10:15:22.147439+00 13687 LJH1705-52#黄色 SPMX-20240815308871 \N \N \N 1 \N [{"file_id": "97385bcb-ed44-4b4c-ae3c-135366f9ffa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361107b3ae03445da5c822ad4541317e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361107b3ae03445da5c822ad4541317e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361107b3ae03445da5c822ad4541317e.jpg", "file_size": 52808, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361107b3ae03445da5c822ad4541317e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361107b3ae03445da5c822ad4541317e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361107b3ae03445da5c822ad4541317e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361107b3ae03445da5c822ad4541317e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361107b3ae03445da5c822ad4541317e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0y4_ZoCI_ifA-3jmcuw-EV_qvM=", "createTime": "2024-08-15 14:56:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.149476+00 2025-12-09 10:15:22.149481+00 13688 0005-3FWF#V5曲线 SPMX-20240815308881 \N \N \N 1 \N [{"file_id": "0c146053-fa3f-4252-a868-c5669d04b1ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dba138fbe474c73a25ef4992ce124c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dba138fbe474c73a25ef4992ce124c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dba138fbe474c73a25ef4992ce124c3.jpg", "file_size": 14203, "is_delete": false, "file_type": 1, "original_file_name": "0005-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dba138fbe474c73a25ef4992ce124c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dba138fbe474c73a25ef4992ce124c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dba138fbe474c73a25ef4992ce124c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dba138fbe474c73a25ef4992ce124c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dba138fbe474c73a25ef4992ce124c3.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfal5nMxRR7EitWkxQZIpz0fSKc=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.151546+00 2025-12-09 10:15:22.151551+00 13689 FM021#165版本灰色 SPMX-20240815308880 \N \N \N 1 \N [{"file_id": "b05e02e2-419a-49ca-a85a-3d5ff0afe7e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4df00e5e24ed46198cb1c3185e2d44df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4df00e5e24ed46198cb1c3185e2d44df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4df00e5e24ed46198cb1c3185e2d44df.jpg", "file_size": 20729, "is_delete": false, "file_type": 1, "original_file_name": "FM021#165版本灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df00e5e24ed46198cb1c3185e2d44df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df00e5e24ed46198cb1c3185e2d44df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4df00e5e24ed46198cb1c3185e2d44df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4df00e5e24ed46198cb1c3185e2d44df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4df00e5e24ed46198cb1c3185e2d44df.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m1dLV8no6kzgfa5sZVY14nzj2VY=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.154458+00 2025-12-09 10:15:22.154464+00 13690 LJH1705-52#黑色 SPMX-20240815308882 \N \N \N 1 \N [{"file_id": "fe877c3e-8b29-4bcb-a596-d66b6ef40d01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9cab88c8e404bb5b0e9693d92ac2d1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9cab88c8e404bb5b0e9693d92ac2d1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9cab88c8e404bb5b0e9693d92ac2d1e.jpg", "file_size": 49741, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-52#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cab88c8e404bb5b0e9693d92ac2d1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cab88c8e404bb5b0e9693d92ac2d1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cab88c8e404bb5b0e9693d92ac2d1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9cab88c8e404bb5b0e9693d92ac2d1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9cab88c8e404bb5b0e9693d92ac2d1e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRB2MnAkI5MoQDFtnr1UDrGKf1U=", "createTime": "2024-08-15 14:56:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.157131+00 2025-12-09 10:15:22.157136+00 13691 0005-4#WJC22 SPMX-20240815308889 \N \N \N 1 \N [{"file_id": "532496be-f593-41d4-9162-9397280631ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "062573dbd57b4b299dd7342d988b3803.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "062573dbd57b4b299dd7342d988b3803.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "062573dbd57b4b299dd7342d988b3803.jpg", "file_size": 8060, "is_delete": false, "file_type": 1, "original_file_name": "0005-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062573dbd57b4b299dd7342d988b3803.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062573dbd57b4b299dd7342d988b3803.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/062573dbd57b4b299dd7342d988b3803.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/062573dbd57b4b299dd7342d988b3803.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/062573dbd57b4b299dd7342d988b3803.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rb1CPMfqF1ib_wrsFOawaje0M1I=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.159476+00 2025-12-09 10:15:22.15948+00 13692 HT3388#兰色 SPMX-20240815308888 \N \N \N 1 \N [{"file_id": "87f04554-1483-4032-976f-c7f4ff05b941", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0cfb3b3388f487da47fe8f1893f8cc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0cfb3b3388f487da47fe8f1893f8cc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0cfb3b3388f487da47fe8f1893f8cc3.jpg", "file_size": 66259, "is_delete": false, "file_type": 1, "original_file_name": "HT3388#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0cfb3b3388f487da47fe8f1893f8cc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0cfb3b3388f487da47fe8f1893f8cc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0cfb3b3388f487da47fe8f1893f8cc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0cfb3b3388f487da47fe8f1893f8cc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0cfb3b3388f487da47fe8f1893f8cc3.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gGiauq866V2XLMll0e9WGuUDp2c=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.161553+00 2025-12-09 10:15:22.161558+00 13693 C907#袖口门筒领子XL SPMX-20240815308887 \N \N \N 1 \N [{"file_id": "e75093fe-cc9c-4235-8931-2345e9c72f65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2893a03155cd4934b31fd9a836501b3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2893a03155cd4934b31fd9a836501b3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2893a03155cd4934b31fd9a836501b3a.jpg", "file_size": 21094, "is_delete": false, "file_type": 1, "original_file_name": "C907#袖口门筒领子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2893a03155cd4934b31fd9a836501b3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2893a03155cd4934b31fd9a836501b3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2893a03155cd4934b31fd9a836501b3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2893a03155cd4934b31fd9a836501b3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2893a03155cd4934b31fd9a836501b3a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uJsgnqK-kMgci3Paub336OM8cQ=", "createTime": "2024-08-15 14:56:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.163687+00 2025-12-09 10:15:22.163692+00 13694 FM021#165版本紫色 SPMX-20240815308891 \N \N \N 1 \N [{"file_id": "789c9203-d720-468c-bd69-cbe2868be9fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "569e46edfe4944848cd04061f930233a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "569e46edfe4944848cd04061f930233a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "569e46edfe4944848cd04061f930233a.jpg", "file_size": 20426, "is_delete": false, "file_type": 1, "original_file_name": "FM021#165版本紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569e46edfe4944848cd04061f930233a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569e46edfe4944848cd04061f930233a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569e46edfe4944848cd04061f930233a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/569e46edfe4944848cd04061f930233a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/569e46edfe4944848cd04061f930233a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:78quQGWhWlmJBxqVWEvAc1Gj8-Y=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.165959+00 2025-12-09 10:15:22.165963+00 13695 JTSS485FW#VS-D3 SPMX-20240815308890 \N \N \N 1 \N [{"file_id": "3c206264-d676-4413-81b3-18814cfb6536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg", "file_size": 8241, "is_delete": false, "file_type": 1, "original_file_name": "JTSS485FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f64c60a31ea34fe9bb79a2ebfaa1ceff.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2ZXdXdxMydrbrGrot0375d3EdA=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.168205+00 2025-12-09 10:15:22.168209+00 13696 LZ1321#背心款1号色 SPMX-20240815308892 \N \N \N 1 \N [{"file_id": "9b0a8af1-bd09-4716-bf24-69d25a8b67d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b79a82cc152a40489f3ddfeaa3054453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b79a82cc152a40489f3ddfeaa3054453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b79a82cc152a40489f3ddfeaa3054453.jpg", "file_size": 18483, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79a82cc152a40489f3ddfeaa3054453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79a82cc152a40489f3ddfeaa3054453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b79a82cc152a40489f3ddfeaa3054453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b79a82cc152a40489f3ddfeaa3054453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b79a82cc152a40489f3ddfeaa3054453.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UdxpmHljVFJIeg-H0TV_RkUeKzE=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.170413+00 2025-12-09 10:15:22.170417+00 13697 LJH1705-6#A1色 SPMX-20240815308893 \N \N \N 1 \N [{"file_id": "a03514cb-2837-45f7-a41a-36684b868eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6332d4264e14b4e89cc76f54eb443f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6332d4264e14b4e89cc76f54eb443f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6332d4264e14b4e89cc76f54eb443f6.jpg", "file_size": 70573, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-6#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6332d4264e14b4e89cc76f54eb443f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6332d4264e14b4e89cc76f54eb443f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6332d4264e14b4e89cc76f54eb443f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6332d4264e14b4e89cc76f54eb443f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6332d4264e14b4e89cc76f54eb443f6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t6UL1mhDuiAsuUjXjfhVMCQWxuE=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.172417+00 2025-12-09 10:15:22.172421+00 13698 1171#-白色RC23 SPMX-20240815308909 \N \N \N 1 \N [{"file_id": "dcacdd1a-b22f-487e-8628-b599e1e6ce4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f029781ee09c4ab39b3d7fe6a4a901c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f029781ee09c4ab39b3d7fe6a4a901c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f029781ee09c4ab39b3d7fe6a4a901c4.jpg", "file_size": 19456, "is_delete": false, "file_type": 1, "original_file_name": "1171#-白色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f029781ee09c4ab39b3d7fe6a4a901c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f029781ee09c4ab39b3d7fe6a4a901c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f029781ee09c4ab39b3d7fe6a4a901c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f029781ee09c4ab39b3d7fe6a4a901c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f029781ee09c4ab39b3d7fe6a4a901c4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4eHPVGbWp0IL1Anz7MIrI2S4Vo=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.174442+00 2025-12-09 10:15:22.174447+00 13699 FM021#165版本红色 SPMX-20240815308901 \N \N \N 1 \N [{"file_id": "45b368db-c8ac-40c7-922a-035cb150f430", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38b56007e2fc47588fe986daf16e073c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38b56007e2fc47588fe986daf16e073c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38b56007e2fc47588fe986daf16e073c.jpg", "file_size": 20090, "is_delete": false, "file_type": 1, "original_file_name": "FM021#165版本红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b56007e2fc47588fe986daf16e073c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b56007e2fc47588fe986daf16e073c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b56007e2fc47588fe986daf16e073c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38b56007e2fc47588fe986daf16e073c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38b56007e2fc47588fe986daf16e073c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQ5jhVGK9H5VVv2Qus49O70RsRk=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.176475+00 2025-12-09 10:15:22.176479+00 13700 8336FWE#5XL SPMX-20240815308906 \N \N \N 1 \N [{"file_id": "441e8f76-4ee7-4077-89e4-f31ee3170faa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40e0f46e7913497eb0a1553e1bce18aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40e0f46e7913497eb0a1553e1bce18aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40e0f46e7913497eb0a1553e1bce18aa.jpg", "file_size": 12120, "is_delete": false, "file_type": 1, "original_file_name": "8336FWE#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e0f46e7913497eb0a1553e1bce18aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e0f46e7913497eb0a1553e1bce18aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e0f46e7913497eb0a1553e1bce18aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40e0f46e7913497eb0a1553e1bce18aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40e0f46e7913497eb0a1553e1bce18aa.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcXiHlbEd5GIdXZU-jjTr1uxv8I=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.178431+00 2025-12-09 10:15:22.178435+00 13701 0005-40#WJC22 SPMX-20240815308898 \N \N \N 1 \N [{"file_id": "9b736867-c739-4fe1-a64e-f69e605334dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8e3e68390cf49238aeeb581812a329a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8e3e68390cf49238aeeb581812a329a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8e3e68390cf49238aeeb581812a329a.jpg", "file_size": 21508, "is_delete": false, "file_type": 1, "original_file_name": "0005-40#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e3e68390cf49238aeeb581812a329a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e3e68390cf49238aeeb581812a329a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e3e68390cf49238aeeb581812a329a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8e3e68390cf49238aeeb581812a329a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8e3e68390cf49238aeeb581812a329a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKIXw211DAWoty5JLOB2J8lUvLs=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.182374+00 2025-12-09 10:15:22.182378+00 13703 8336FWE#4XL SPMX-20240815308896 \N \N \N 1 \N [{"file_id": "6e58ffe9-79f6-44d7-a347-826de8f725ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "182aa8071c394f2e86504dea5f2eeeb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "182aa8071c394f2e86504dea5f2eeeb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "182aa8071c394f2e86504dea5f2eeeb2.jpg", "file_size": 12385, "is_delete": false, "file_type": 1, "original_file_name": "8336FWE#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182aa8071c394f2e86504dea5f2eeeb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182aa8071c394f2e86504dea5f2eeeb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182aa8071c394f2e86504dea5f2eeeb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/182aa8071c394f2e86504dea5f2eeeb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/182aa8071c394f2e86504dea5f2eeeb2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGkqDAyqxlFKXWXCB3V3P2_LX-Q=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.184388+00 2025-12-09 10:15:22.184393+00 13704 1171#-浅粉RC23 SPMX-20240815308894 \N \N \N 1 \N [{"file_id": "b7bb45b5-6735-4ad5-9c70-2de083e529a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee52e964eaad42d69d62209e6be81a7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee52e964eaad42d69d62209e6be81a7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee52e964eaad42d69d62209e6be81a7b.jpg", "file_size": 18163, "is_delete": false, "file_type": 1, "original_file_name": "1171#-浅粉RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee52e964eaad42d69d62209e6be81a7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee52e964eaad42d69d62209e6be81a7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee52e964eaad42d69d62209e6be81a7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee52e964eaad42d69d62209e6be81a7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee52e964eaad42d69d62209e6be81a7b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HwF0o9F854bMWpKciaBQUhHLCN8=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.186394+00 2025-12-09 10:15:22.186398+00 13705 DL31125#前幅大红 SPMX-20240815308895 \N \N \N 1 \N [{"file_id": "d8aab116-e661-422d-9f4e-0e295f495835", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0db4088648994df5a6f0994c646d9ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0db4088648994df5a6f0994c646d9ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0db4088648994df5a6f0994c646d9ed9.jpg", "file_size": 16372, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db4088648994df5a6f0994c646d9ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db4088648994df5a6f0994c646d9ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0db4088648994df5a6f0994c646d9ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0db4088648994df5a6f0994c646d9ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0db4088648994df5a6f0994c646d9ed9.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TP5lVM1Mxa_HLk6hFBrbHAzKcLE=", "createTime": "2024-08-15 14:56:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.188424+00 2025-12-09 10:15:22.188428+00 13706 C9082#L SPMX-20240815308899 \N \N \N 1 \N [{"file_id": "ca2243a3-e386-4245-b167-db159929bb7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee3fe4ce67184b47a05ef4d349df2c09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee3fe4ce67184b47a05ef4d349df2c09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee3fe4ce67184b47a05ef4d349df2c09.jpg", "file_size": 24181, "is_delete": false, "file_type": 1, "original_file_name": "C9082#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3fe4ce67184b47a05ef4d349df2c09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3fe4ce67184b47a05ef4d349df2c09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3fe4ce67184b47a05ef4d349df2c09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee3fe4ce67184b47a05ef4d349df2c09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee3fe4ce67184b47a05ef4d349df2c09.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdP1Ra7yV_k-NK1SH3nFeZwrV6A=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.190614+00 2025-12-09 10:15:22.190619+00 13707 HT3388#原版色 SPMX-20240815308900 \N \N \N 1 \N [{"file_id": "7ce7e54f-6888-4701-8cd2-e7fcab27ef6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2008544513e74d3dae8af774f7548c90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2008544513e74d3dae8af774f7548c90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2008544513e74d3dae8af774f7548c90.jpg", "file_size": 67596, "is_delete": false, "file_type": 1, "original_file_name": "HT3388#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2008544513e74d3dae8af774f7548c90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2008544513e74d3dae8af774f7548c90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2008544513e74d3dae8af774f7548c90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2008544513e74d3dae8af774f7548c90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2008544513e74d3dae8af774f7548c90.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:57fLS9yYQB0XBel9D3wE-QNnhn4=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.19274+00 2025-12-09 10:15:22.192744+00 13708 LZ1321#背心款2号色 SPMX-20240815308904 \N \N \N 1 \N [{"file_id": "e63c1639-6efc-4da7-860e-c4eec1037ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3df1e6e754d84b7799ed3310054155df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3df1e6e754d84b7799ed3310054155df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3df1e6e754d84b7799ed3310054155df.jpg", "file_size": 17586, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1e6e754d84b7799ed3310054155df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1e6e754d84b7799ed3310054155df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1e6e754d84b7799ed3310054155df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3df1e6e754d84b7799ed3310054155df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3df1e6e754d84b7799ed3310054155df.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-o801T_P7CjGYkbwOt4c2iTwo2E=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.194786+00 2025-12-09 10:15:22.194791+00 13709 23-2122#A4-领子4XL SPMX-20240815308897 \N \N \N 1 \N [{"file_id": "3ff7ea88-446f-4c7e-8cb7-f9fb1f5e4e5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "910fc1f8b9a74520a1ebb26aac780519.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "910fc1f8b9a74520a1ebb26aac780519.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "910fc1f8b9a74520a1ebb26aac780519.jpg", "file_size": 13358, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910fc1f8b9a74520a1ebb26aac780519.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910fc1f8b9a74520a1ebb26aac780519.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/910fc1f8b9a74520a1ebb26aac780519.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/910fc1f8b9a74520a1ebb26aac780519.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/910fc1f8b9a74520a1ebb26aac780519.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HOMSQggKq4GWQ9TsnLdhIBPeho=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.196772+00 2025-12-09 10:15:22.196776+00 13710 JTSS486FW#VS-D3 SPMX-20240815308902 \N \N \N 1 \N [{"file_id": "0a7503cd-af0b-4a59-a60b-f0e997c87bed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6f8c2c28974c22972982b233808d1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6f8c2c28974c22972982b233808d1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6f8c2c28974c22972982b233808d1e.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "JTSS486FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6f8c2c28974c22972982b233808d1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6f8c2c28974c22972982b233808d1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6f8c2c28974c22972982b233808d1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6f8c2c28974c22972982b233808d1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6f8c2c28974c22972982b233808d1e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqkxJG_vQmG1OZiNgzlYhHcXx-M=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.198809+00 2025-12-09 10:15:22.198814+00 13711 LJH1705-6#A2色 SPMX-20240815308903 \N \N \N 1 \N [{"file_id": "faadca9e-c4d5-4c9d-ab3c-761a6cb712c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51e8a46deecf423fb0a968e5f4817ec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51e8a46deecf423fb0a968e5f4817ec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51e8a46deecf423fb0a968e5f4817ec9.jpg", "file_size": 66629, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-6#A2色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e8a46deecf423fb0a968e5f4817ec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e8a46deecf423fb0a968e5f4817ec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e8a46deecf423fb0a968e5f4817ec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51e8a46deecf423fb0a968e5f4817ec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51e8a46deecf423fb0a968e5f4817ec9.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9gpdDMCorUVOarNhbIsUsHAJFs=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.201394+00 2025-12-09 10:15:22.2014+00 13712 DL31125#前幅彩兰色 SPMX-20240815308905 \N \N \N 1 \N [{"file_id": "b71be6cd-9298-4213-900d-020bf8847339", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec2c024d3e6e4d34b0ffa86a439107b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec2c024d3e6e4d34b0ffa86a439107b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec2c024d3e6e4d34b0ffa86a439107b1.jpg", "file_size": 16151, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2c024d3e6e4d34b0ffa86a439107b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2c024d3e6e4d34b0ffa86a439107b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2c024d3e6e4d34b0ffa86a439107b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec2c024d3e6e4d34b0ffa86a439107b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec2c024d3e6e4d34b0ffa86a439107b1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0VXdYj71zQxFMqme9ezUozvdk8=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.180407+00 2025-12-09 10:15:22.180412+00 13702 23-2122#A5白色-3XL SPMX-20240815308908 \N \N \N 1 \N [{"file_id": "0b8bcbac-22bd-4d0f-a568-84e4263a9f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61dcb63e88dc4e7ebb3190981e1847e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61dcb63e88dc4e7ebb3190981e1847e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61dcb63e88dc4e7ebb3190981e1847e0.jpg", "file_size": 13668, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5白色-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dcb63e88dc4e7ebb3190981e1847e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dcb63e88dc4e7ebb3190981e1847e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dcb63e88dc4e7ebb3190981e1847e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61dcb63e88dc4e7ebb3190981e1847e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61dcb63e88dc4e7ebb3190981e1847e0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9QRfF6iALnLYNWu7YNBvRZ9F7o4=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.205922+00 2025-12-09 10:15:22.205927+00 13713 DL31125#前幅枣红 SPMX-20240815308921 \N \N \N 1 \N [{"file_id": "3c6999f0-a6a5-43ab-b58d-32b6c990f50c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b72f05fa7564ea48c327c02eb113efd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b72f05fa7564ea48c327c02eb113efd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b72f05fa7564ea48c327c02eb113efd.jpg", "file_size": 16543, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72f05fa7564ea48c327c02eb113efd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72f05fa7564ea48c327c02eb113efd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72f05fa7564ea48c327c02eb113efd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b72f05fa7564ea48c327c02eb113efd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b72f05fa7564ea48c327c02eb113efd.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W4Y1CNt-9FUyzkGyUQoT9Oe-1HM=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.2083+00 2025-12-09 10:15:22.208304+00 13714 8336FWE#XL SPMX-20240815308915 \N \N \N 1 \N [{"file_id": "78074ee1-4b84-41bd-b7f1-dd0db837c14c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85f9d77606e34b18afa710afe2a507dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85f9d77606e34b18afa710afe2a507dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85f9d77606e34b18afa710afe2a507dd.jpg", "file_size": 11852, "is_delete": false, "file_type": 1, "original_file_name": "8336FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9d77606e34b18afa710afe2a507dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9d77606e34b18afa710afe2a507dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9d77606e34b18afa710afe2a507dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85f9d77606e34b18afa710afe2a507dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85f9d77606e34b18afa710afe2a507dd.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hcOlXWUKoFDCbeEJJ7wBGRzJlhA=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.210561+00 2025-12-09 10:15:22.210566+00 13715 23-2122#A5白色-4XL SPMX-20240815308917 \N \N \N 1 \N [{"file_id": "4c6a74d5-2fe7-4f62-8e19-7219c5c277b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39a942785b5c42e3b520e911668b18c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39a942785b5c42e3b520e911668b18c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39a942785b5c42e3b520e911668b18c6.jpg", "file_size": 12706, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5白色-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a942785b5c42e3b520e911668b18c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a942785b5c42e3b520e911668b18c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39a942785b5c42e3b520e911668b18c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39a942785b5c42e3b520e911668b18c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39a942785b5c42e3b520e911668b18c6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K12hulk93bXud2H-rqsQHe6xdjM=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.213208+00 2025-12-09 10:15:22.213214+00 13716 LJH1705-6#A3色 SPMX-20240815308916 \N \N \N 1 \N [{"file_id": "642f6a13-2202-4081-8876-f379d8097052", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be2afa6b1084355842088cb3d1c356e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be2afa6b1084355842088cb3d1c356e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be2afa6b1084355842088cb3d1c356e.jpg", "file_size": 67634, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-6#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be2afa6b1084355842088cb3d1c356e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be2afa6b1084355842088cb3d1c356e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be2afa6b1084355842088cb3d1c356e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be2afa6b1084355842088cb3d1c356e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be2afa6b1084355842088cb3d1c356e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:01IN3NeIcsKMnCYO1k2HlP50W6I=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.215616+00 2025-12-09 10:15:22.215621+00 13717 HT3388#绿花兰 SPMX-20240815308912 \N \N \N 1 \N [{"file_id": "acf0c877-453d-4453-95c3-966d7cbd228a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg", "file_size": 62480, "is_delete": false, "file_type": 1, "original_file_name": "HT3388#绿花兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be0e0bb0fbdc4b5cb3a441f4b0b817b8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9htgG4dFndeDJkvC-kPgYPGrKDc=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.218079+00 2025-12-09 10:15:22.218085+00 13718 FM021#灰色 SPMX-20240815308911 \N \N \N 1 \N [{"file_id": "491b062f-58c6-4cf4-9d9b-ff18b3e24731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f387ef60caf4a5d958c4c83b3c9ca44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f387ef60caf4a5d958c4c83b3c9ca44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f387ef60caf4a5d958c4c83b3c9ca44.jpg", "file_size": 19546, "is_delete": false, "file_type": 1, "original_file_name": "FM021#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f387ef60caf4a5d958c4c83b3c9ca44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f387ef60caf4a5d958c4c83b3c9ca44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f387ef60caf4a5d958c4c83b3c9ca44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f387ef60caf4a5d958c4c83b3c9ca44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f387ef60caf4a5d958c4c83b3c9ca44.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khU8DKgLYkudKgq0kZpWVT09qhU=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.220599+00 2025-12-09 10:15:22.220605+00 13719 C9082#S SPMX-20240815308920 \N \N \N 1 \N [{"file_id": "a9f325e3-899d-45e7-99b6-2adc7c49a68c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fd456470397467d9de5649d91391548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fd456470397467d9de5649d91391548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fd456470397467d9de5649d91391548.jpg", "file_size": 26802, "is_delete": false, "file_type": 1, "original_file_name": "C9082#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd456470397467d9de5649d91391548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd456470397467d9de5649d91391548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd456470397467d9de5649d91391548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fd456470397467d9de5649d91391548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fd456470397467d9de5649d91391548.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NNnaO0gtDcEmCEzpfajczPz5q0=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.223051+00 2025-12-09 10:15:22.223057+00 13720 C9082#M SPMX-20240815308910 \N \N \N 1 \N [{"file_id": "d6f4e61a-a222-485c-8b5a-cc31d6028473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcedf02e358b40199451747ba3a47cf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcedf02e358b40199451747ba3a47cf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcedf02e358b40199451747ba3a47cf2.jpg", "file_size": 23979, "is_delete": false, "file_type": 1, "original_file_name": "C9082#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedf02e358b40199451747ba3a47cf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedf02e358b40199451747ba3a47cf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcedf02e358b40199451747ba3a47cf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcedf02e358b40199451747ba3a47cf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcedf02e358b40199451747ba3a47cf2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YrA6EizDjAgVsUIqXwwk-69vMGI=", "createTime": "2024-08-15 14:56:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.225525+00 2025-12-09 10:15:22.22553+00 13721 LZ1321#背心款3号色 SPMX-20240815308914 \N \N \N 1 \N [{"file_id": "8cb42a30-a18b-4b58-91e8-6703e50d2c0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b17bffee554009b02626554c09e9e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b17bffee554009b02626554c09e9e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b17bffee554009b02626554c09e9e8.jpg", "file_size": 17709, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b17bffee554009b02626554c09e9e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b17bffee554009b02626554c09e9e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b17bffee554009b02626554c09e9e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b17bffee554009b02626554c09e9e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b17bffee554009b02626554c09e9e8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Xp26W2vANm9LXogOEdpOuncqOc=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.228015+00 2025-12-09 10:15:22.22802+00 13722 0005-42#彩蓝 SPMX-20240815308918 \N \N \N 1 \N [{"file_id": "036be268-3fcd-4a06-af49-5fcf1051590d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "404b06b5308d4d03936feb8500c655a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "404b06b5308d4d03936feb8500c655a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "404b06b5308d4d03936feb8500c655a4.jpg", "file_size": 11837, "is_delete": false, "file_type": 1, "original_file_name": "0005-42#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404b06b5308d4d03936feb8500c655a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404b06b5308d4d03936feb8500c655a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404b06b5308d4d03936feb8500c655a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/404b06b5308d4d03936feb8500c655a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/404b06b5308d4d03936feb8500c655a4.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1OInYhDGAIkAWmmCW8Bx65lvh4=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.230527+00 2025-12-09 10:15:22.230532+00 13723 JTSS487FW#VS-D3 SPMX-20240815308913 \N \N \N 1 \N [{"file_id": "21701438-fc8f-454c-841c-3bcbf2434b85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "873b08e351fe44e98f272c74c7e10481.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "873b08e351fe44e98f272c74c7e10481.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "873b08e351fe44e98f272c74c7e10481.jpg", "file_size": 12780, "is_delete": false, "file_type": 1, "original_file_name": "JTSS487FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873b08e351fe44e98f272c74c7e10481.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873b08e351fe44e98f272c74c7e10481.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/873b08e351fe44e98f272c74c7e10481.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/873b08e351fe44e98f272c74c7e10481.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/873b08e351fe44e98f272c74c7e10481.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:upw4UII-vRdv8tZU4tGqv8SuJHs=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.232997+00 2025-12-09 10:15:22.233002+00 13724 1171#-黄色RC23 SPMX-20240815308919 \N \N \N 1 \N [{"file_id": "f5303bcc-1307-40d3-86bc-e303f1e5dac6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f34595466a24ad7a893196c810073db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f34595466a24ad7a893196c810073db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f34595466a24ad7a893196c810073db.jpg", "file_size": 19796, "is_delete": false, "file_type": 1, "original_file_name": "1171#-黄色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f34595466a24ad7a893196c810073db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f34595466a24ad7a893196c810073db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f34595466a24ad7a893196c810073db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f34595466a24ad7a893196c810073db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f34595466a24ad7a893196c810073db.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjxVIoG_FOdpEl0Ylg3-U1hf7PU=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.235279+00 2025-12-09 10:15:22.235285+00 13725 FM021#紫色 SPMX-20240815308922 \N \N \N 1 \N [{"file_id": "0274ea05-b07a-4d0a-85d5-8db8d7476524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "344f77c0879a4e10bac7e6d12f88e1b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "344f77c0879a4e10bac7e6d12f88e1b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "344f77c0879a4e10bac7e6d12f88e1b1.jpg", "file_size": 19088, "is_delete": false, "file_type": 1, "original_file_name": "FM021#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344f77c0879a4e10bac7e6d12f88e1b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344f77c0879a4e10bac7e6d12f88e1b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344f77c0879a4e10bac7e6d12f88e1b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/344f77c0879a4e10bac7e6d12f88e1b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/344f77c0879a4e10bac7e6d12f88e1b1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXJS66o-VOaORD0f0sTMl3gEX-s=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.237749+00 2025-12-09 10:15:22.237754+00 13726 23-2122#A5白色-领子3XL SPMX-20240815308928 \N \N \N 1 \N [{"file_id": "fef82edd-baa6-4172-afeb-6bd35a711f76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "049793300d37453f933241c84af94b4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "049793300d37453f933241c84af94b4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "049793300d37453f933241c84af94b4d.jpg", "file_size": 12113, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5白色-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049793300d37453f933241c84af94b4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049793300d37453f933241c84af94b4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049793300d37453f933241c84af94b4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/049793300d37453f933241c84af94b4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/049793300d37453f933241c84af94b4d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CPYv-bvK49XCbeQilvHoQTbP5aE=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.240222+00 2025-12-09 10:15:22.240227+00 13727 JTSS488FW#VS-D3 SPMX-20240815308924 \N \N \N 1 \N [{"file_id": "c5aedb6f-8e02-40f0-839c-fbfb6a3855dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a77e3a9fda4a03b64b6a42df30014a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a77e3a9fda4a03b64b6a42df30014a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a77e3a9fda4a03b64b6a42df30014a.jpg", "file_size": 19108, "is_delete": false, "file_type": 1, "original_file_name": "JTSS488FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a77e3a9fda4a03b64b6a42df30014a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a77e3a9fda4a03b64b6a42df30014a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a77e3a9fda4a03b64b6a42df30014a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a77e3a9fda4a03b64b6a42df30014a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a77e3a9fda4a03b64b6a42df30014a.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4FqzLfLIdOTCM7g7l3e7qBFhSs=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.242684+00 2025-12-09 10:15:22.24269+00 13728 1171#FWF SPMX-20240815308930 \N \N \N 1 \N [{"file_id": "d1d8feec-0946-4efd-951b-08ca11dd0bef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb739d7fae234ebdaca0c65aa864f200.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb739d7fae234ebdaca0c65aa864f200.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb739d7fae234ebdaca0c65aa864f200.jpg", "file_size": 25128, "is_delete": false, "file_type": 1, "original_file_name": "1171#FWF.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb739d7fae234ebdaca0c65aa864f200.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb739d7fae234ebdaca0c65aa864f200.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb739d7fae234ebdaca0c65aa864f200.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb739d7fae234ebdaca0c65aa864f200.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb739d7fae234ebdaca0c65aa864f200.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JdUT-YAUzy7qIthiswEgPq2qDrs=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.245231+00 2025-12-09 10:15:22.245237+00 13729 HT4426#原版色 SPMX-20240815308936 \N \N \N 1 \N [{"file_id": "4dcbb1c2-9087-45a2-98b1-75608bc52571", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dfe124a338c416a9d86e4659804039f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dfe124a338c416a9d86e4659804039f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dfe124a338c416a9d86e4659804039f.jpg", "file_size": 64507, "is_delete": false, "file_type": 1, "original_file_name": "HT4426#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe124a338c416a9d86e4659804039f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe124a338c416a9d86e4659804039f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe124a338c416a9d86e4659804039f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dfe124a338c416a9d86e4659804039f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dfe124a338c416a9d86e4659804039f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHouVJ5SlXfIMGFkcbWVnfi77fk=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.247718+00 2025-12-09 10:15:22.247724+00 13730 JTSS489FW#VS-D3 SPMX-20240815308934 \N \N \N 1 \N [{"file_id": "52c0e484-a29f-47ee-b15b-309a09703263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d499350b811e498db0ddd4d1655e372c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d499350b811e498db0ddd4d1655e372c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d499350b811e498db0ddd4d1655e372c.jpg", "file_size": 16775, "is_delete": false, "file_type": 1, "original_file_name": "JTSS489FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d499350b811e498db0ddd4d1655e372c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d499350b811e498db0ddd4d1655e372c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d499350b811e498db0ddd4d1655e372c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d499350b811e498db0ddd4d1655e372c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d499350b811e498db0ddd4d1655e372c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTqzWqFIeu5XMN4AmmE-ccRTFP4=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.250191+00 2025-12-09 10:15:22.250197+00 13731 LZ1321#背心款4号色 SPMX-20240815308923 \N \N \N 1 \N [{"file_id": "31229c6e-1e86-499c-8216-5db427df0c6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0588e2976a404f3fa050b9021e110492.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0588e2976a404f3fa050b9021e110492.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0588e2976a404f3fa050b9021e110492.jpg", "file_size": 17883, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0588e2976a404f3fa050b9021e110492.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0588e2976a404f3fa050b9021e110492.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0588e2976a404f3fa050b9021e110492.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0588e2976a404f3fa050b9021e110492.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0588e2976a404f3fa050b9021e110492.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_WeiZj6DqE5Y6OJSA-dqO86C8r4=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.252637+00 2025-12-09 10:15:22.252643+00 13732 HT3388#蓝色 SPMX-20240815308925 \N \N \N 1 \N [{"file_id": "5e942ae8-9069-4a7c-81eb-cc17595ad363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1635e04e3bec4e67a4fdbd6bec88a47f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1635e04e3bec4e67a4fdbd6bec88a47f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1635e04e3bec4e67a4fdbd6bec88a47f.jpg", "file_size": 66471, "is_delete": false, "file_type": 1, "original_file_name": "HT3388#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635e04e3bec4e67a4fdbd6bec88a47f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635e04e3bec4e67a4fdbd6bec88a47f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1635e04e3bec4e67a4fdbd6bec88a47f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1635e04e3bec4e67a4fdbd6bec88a47f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1635e04e3bec4e67a4fdbd6bec88a47f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swTx0IVrnf7FN48mUVeMbonvcfI=", "createTime": "2024-08-15 14:56:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.25517+00 2025-12-09 10:15:22.255175+00 13733 0005-42#彩蓝匹布条子 SPMX-20240815308929 \N \N \N 1 \N [{"file_id": "f1121552-07c5-44ac-bf4d-4be9edebd14e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fefd91f47704b2983a390d80a7ecf40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fefd91f47704b2983a390d80a7ecf40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fefd91f47704b2983a390d80a7ecf40.jpg", "file_size": 8115, "is_delete": false, "file_type": 1, "original_file_name": "0005-42#彩蓝匹布条子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fefd91f47704b2983a390d80a7ecf40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fefd91f47704b2983a390d80a7ecf40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fefd91f47704b2983a390d80a7ecf40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fefd91f47704b2983a390d80a7ecf40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fefd91f47704b2983a390d80a7ecf40.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mR16iFEQY-RU513mwN9aqN5VIk=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.257416+00 2025-12-09 10:15:22.257421+00 13734 FM021#红色 SPMX-20240815308933 \N \N \N 1 \N [{"file_id": "f98fc921-bc0c-4d45-912a-ca51310ceff7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aca5acd5a8b344dabe02d5d621c1d85f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aca5acd5a8b344dabe02d5d621c1d85f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aca5acd5a8b344dabe02d5d621c1d85f.jpg", "file_size": 20578, "is_delete": false, "file_type": 1, "original_file_name": "FM021#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aca5acd5a8b344dabe02d5d621c1d85f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aca5acd5a8b344dabe02d5d621c1d85f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aca5acd5a8b344dabe02d5d621c1d85f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aca5acd5a8b344dabe02d5d621c1d85f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aca5acd5a8b344dabe02d5d621c1d85f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dBFo9CHaS3LK84M7BPeF654Fk3U=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.260087+00 2025-12-09 10:15:22.260093+00 13735 23-2122#A5白色-领子4XL SPMX-20240815308938 \N \N \N 1 \N [{"file_id": "2f146adb-cd35-4bc7-888a-239ca628ea70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d400e3b96de4c4f968cbf53b2c153f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d400e3b96de4c4f968cbf53b2c153f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d400e3b96de4c4f968cbf53b2c153f0.jpg", "file_size": 11720, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5白色-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d400e3b96de4c4f968cbf53b2c153f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d400e3b96de4c4f968cbf53b2c153f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d400e3b96de4c4f968cbf53b2c153f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d400e3b96de4c4f968cbf53b2c153f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d400e3b96de4c4f968cbf53b2c153f0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffwnYiszHHl3TRmp6siS-kbxfYY=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.262546+00 2025-12-09 10:15:22.262552+00 13736 C9082#XL SPMX-20240815308932 \N \N \N 1 \N [{"file_id": "2b389488-3f93-4990-b3fc-1209276f80cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "864a46c2316b4f38b2ecb88474aeb3aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "864a46c2316b4f38b2ecb88474aeb3aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "864a46c2316b4f38b2ecb88474aeb3aa.jpg", "file_size": 25447, "is_delete": false, "file_type": 1, "original_file_name": "C9082#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864a46c2316b4f38b2ecb88474aeb3aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864a46c2316b4f38b2ecb88474aeb3aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/864a46c2316b4f38b2ecb88474aeb3aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/864a46c2316b4f38b2ecb88474aeb3aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/864a46c2316b4f38b2ecb88474aeb3aa.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDzxYrez4LK9j46lvRBLOUWKo7w=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.265001+00 2025-12-09 10:15:22.265007+00 13737 8337FWE#VS-D3番禺调色 SPMX-20240815308939 \N \N \N 1 \N [{"file_id": "353fc6a6-5903-48cf-a696-4f4352e18dd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf996025fda4d0cacd7103b5826e5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf996025fda4d0cacd7103b5826e5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf996025fda4d0cacd7103b5826e5e0.jpg", "file_size": 8934, "is_delete": false, "file_type": 1, "original_file_name": "8337FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf996025fda4d0cacd7103b5826e5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf996025fda4d0cacd7103b5826e5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf996025fda4d0cacd7103b5826e5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf996025fda4d0cacd7103b5826e5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf996025fda4d0cacd7103b5826e5e0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gNwoKV30mJuiIdvHpR2R8ln2H4=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.267322+00 2025-12-09 10:15:22.267327+00 13738 0005-42#玫红 SPMX-20240815308937 \N \N \N 1 \N [{"file_id": "12239d35-6302-4fcb-a44a-1438bbc623d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9422d0c465b1482c9159e5dfd2fde90d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9422d0c465b1482c9159e5dfd2fde90d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9422d0c465b1482c9159e5dfd2fde90d.jpg", "file_size": 10673, "is_delete": false, "file_type": 1, "original_file_name": "0005-42#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9422d0c465b1482c9159e5dfd2fde90d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9422d0c465b1482c9159e5dfd2fde90d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9422d0c465b1482c9159e5dfd2fde90d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9422d0c465b1482c9159e5dfd2fde90d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9422d0c465b1482c9159e5dfd2fde90d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfg-iX6pgkXUOUZNBwK8wF4vR_o=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.26943+00 2025-12-09 10:15:22.269435+00 13739 LJH1705-63#A1色 SPMX-20240815308927 \N \N \N 1 \N [{"file_id": "f8592bed-d45a-4581-bb24-b540bdc2f707", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15ef1a5e1ab84c6fae2db5000554a9b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15ef1a5e1ab84c6fae2db5000554a9b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15ef1a5e1ab84c6fae2db5000554a9b6.jpg", "file_size": 69421, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-63#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ef1a5e1ab84c6fae2db5000554a9b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ef1a5e1ab84c6fae2db5000554a9b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ef1a5e1ab84c6fae2db5000554a9b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15ef1a5e1ab84c6fae2db5000554a9b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15ef1a5e1ab84c6fae2db5000554a9b6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jextO03gnhpBj6VtnjLXALxNGk0=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.271767+00 2025-12-09 10:15:22.271772+00 13740 DL31125#前幅浅粉 SPMX-20240815308931 \N \N \N 1 \N [{"file_id": "623ec247-3ee2-4c47-94b3-182d53903f2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f46b40d298b4035872e35196b0eff14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f46b40d298b4035872e35196b0eff14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f46b40d298b4035872e35196b0eff14.jpg", "file_size": 15147, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f46b40d298b4035872e35196b0eff14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f46b40d298b4035872e35196b0eff14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f46b40d298b4035872e35196b0eff14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f46b40d298b4035872e35196b0eff14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f46b40d298b4035872e35196b0eff14.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_kfZ25GKuZmXE5Jfu4yGTOWkMY=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.27411+00 2025-12-09 10:15:22.274116+00 13741 8337FWE#VS-D3 SPMX-20240815308926 \N \N \N 1 \N [{"file_id": "d196c83c-e115-4600-a8ff-4d8af465831d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b292d905ced345c4a13e7b5584785342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b292d905ced345c4a13e7b5584785342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b292d905ced345c4a13e7b5584785342.jpg", "file_size": 8204, "is_delete": false, "file_type": 1, "original_file_name": "8337FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b292d905ced345c4a13e7b5584785342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b292d905ced345c4a13e7b5584785342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b292d905ced345c4a13e7b5584785342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b292d905ced345c4a13e7b5584785342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b292d905ced345c4a13e7b5584785342.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-nCGNp-xetOrafqnxvP8OvVhTI=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.276388+00 2025-12-09 10:15:22.276393+00 13742 LZ1321#背心款5号色 SPMX-20240815308935 \N \N \N 1 \N [{"file_id": "b6f535b3-0525-4923-9b94-8156f654dcfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "771d526ad89145c888d4bffb02ed1021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "771d526ad89145c888d4bffb02ed1021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "771d526ad89145c888d4bffb02ed1021.jpg", "file_size": 17009, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771d526ad89145c888d4bffb02ed1021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771d526ad89145c888d4bffb02ed1021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771d526ad89145c888d4bffb02ed1021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/771d526ad89145c888d4bffb02ed1021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/771d526ad89145c888d4bffb02ed1021.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_Mc1cd6KuGw5VN29Xo624ql7ow=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.27848+00 2025-12-09 10:15:22.278485+00 13743 23-2122#A5绿色-3XL SPMX-20240815308949 \N \N \N 1 \N [{"file_id": "71c3a95f-97d6-4763-874b-3c1b09e73e08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a645f65541e4cfb9586c9f24968ba99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a645f65541e4cfb9586c9f24968ba99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a645f65541e4cfb9586c9f24968ba99.jpg", "file_size": 15587, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5绿色-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a645f65541e4cfb9586c9f24968ba99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a645f65541e4cfb9586c9f24968ba99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a645f65541e4cfb9586c9f24968ba99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a645f65541e4cfb9586c9f24968ba99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a645f65541e4cfb9586c9f24968ba99.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n2AHaeYeASYJTGSdlsgNkatUlSs=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.280566+00 2025-12-09 10:15:22.280572+00 13744 LJH1705-63#A2色 SPMX-20240815308940 \N \N \N 1 \N [{"file_id": "52ef6d43-35a5-476f-bd8c-ea9457b4d10e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e6b627a0ec74af5bc13151eea47b05c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e6b627a0ec74af5bc13151eea47b05c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e6b627a0ec74af5bc13151eea47b05c.jpg", "file_size": 64852, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-63#A2色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6b627a0ec74af5bc13151eea47b05c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6b627a0ec74af5bc13151eea47b05c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6b627a0ec74af5bc13151eea47b05c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e6b627a0ec74af5bc13151eea47b05c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e6b627a0ec74af5bc13151eea47b05c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tEuEk9feaQlvjRxarcj3ji74yc=", "createTime": "2024-08-15 14:56:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.282843+00 2025-12-09 10:15:22.282849+00 13745 C9082#灰色M码 SPMX-20240815308952 \N \N \N 1 \N [{"file_id": "2121488e-8377-45b8-8145-22f47dbb7606", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d6a123680f54306b45f9bb1cb4f2daf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d6a123680f54306b45f9bb1cb4f2daf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d6a123680f54306b45f9bb1cb4f2daf.jpg", "file_size": 21765, "is_delete": false, "file_type": 1, "original_file_name": "C9082#灰色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6a123680f54306b45f9bb1cb4f2daf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6a123680f54306b45f9bb1cb4f2daf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d6a123680f54306b45f9bb1cb4f2daf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d6a123680f54306b45f9bb1cb4f2daf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d6a123680f54306b45f9bb1cb4f2daf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rs5d31E-t52PZ3XLSGQZ6HGdXMw=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.285142+00 2025-12-09 10:15:22.285147+00 13746 LZ1322#捆条布 SPMX-20240815308956 \N \N \N 1 \N [{"file_id": "f92a1614-3585-4c86-b5d4-2f7960c73909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ad4c6a459ea4da79404b149bf7c4c4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ad4c6a459ea4da79404b149bf7c4c4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ad4c6a459ea4da79404b149bf7c4c4d.jpg", "file_size": 7685, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad4c6a459ea4da79404b149bf7c4c4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad4c6a459ea4da79404b149bf7c4c4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad4c6a459ea4da79404b149bf7c4c4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ad4c6a459ea4da79404b149bf7c4c4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ad4c6a459ea4da79404b149bf7c4c4d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0oIiM2KFwVxAUdJB94tEq6KYjQ=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.287464+00 2025-12-09 10:15:22.287469+00 13747 1172#RC23 SPMX-20240815308951 \N \N \N 1 \N [{"file_id": "2d7efe77-8967-4344-8978-6287b734b69d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e28ad75144c147aead28fabd1ba6ff15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e28ad75144c147aead28fabd1ba6ff15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e28ad75144c147aead28fabd1ba6ff15.jpg", "file_size": 47513, "is_delete": false, "file_type": 1, "original_file_name": "1172#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28ad75144c147aead28fabd1ba6ff15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28ad75144c147aead28fabd1ba6ff15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28ad75144c147aead28fabd1ba6ff15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e28ad75144c147aead28fabd1ba6ff15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e28ad75144c147aead28fabd1ba6ff15.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdzJFuu-Sm9jI71ABpvtL7J8ieg=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.289576+00 2025-12-09 10:15:22.289581+00 13748 8338FWE#VS-D3 SPMX-20240815308950 \N \N \N 1 \N [{"file_id": "77a77a8f-38b5-41bd-99e7-b887436636d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b346fc1b10c402497e8f56fc38222f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b346fc1b10c402497e8f56fc38222f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b346fc1b10c402497e8f56fc38222f2.jpg", "file_size": 24898, "is_delete": false, "file_type": 1, "original_file_name": "8338FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b346fc1b10c402497e8f56fc38222f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b346fc1b10c402497e8f56fc38222f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b346fc1b10c402497e8f56fc38222f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b346fc1b10c402497e8f56fc38222f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b346fc1b10c402497e8f56fc38222f2.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LhZmMm_Yx4p7wM4p3xf-1kJkEA=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.29203+00 2025-12-09 10:15:22.292036+00 13749 DL31125#前幅玫红 SPMX-20240815308942 \N \N \N 1 \N [{"file_id": "94114a27-60b4-42d7-ba2b-c64b51b6f511", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "776640c74e884df3873276debc42401f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "776640c74e884df3873276debc42401f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "776640c74e884df3873276debc42401f.jpg", "file_size": 16252, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776640c74e884df3873276debc42401f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776640c74e884df3873276debc42401f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/776640c74e884df3873276debc42401f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/776640c74e884df3873276debc42401f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/776640c74e884df3873276debc42401f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1Nnzv4GfIQEWeEv2MjoxS3N2z0=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.294405+00 2025-12-09 10:15:22.29441+00 13750 C9082#灰色L码 SPMX-20240815308943 \N \N \N 1 \N [{"file_id": "37132f6f-a78f-4c17-a6f9-296a6d2c446d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4a33fadf80d4d9dbed19cf280ae2972.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4a33fadf80d4d9dbed19cf280ae2972.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4a33fadf80d4d9dbed19cf280ae2972.jpg", "file_size": 21539, "is_delete": false, "file_type": 1, "original_file_name": "C9082#灰色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a33fadf80d4d9dbed19cf280ae2972.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a33fadf80d4d9dbed19cf280ae2972.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a33fadf80d4d9dbed19cf280ae2972.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4a33fadf80d4d9dbed19cf280ae2972.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4a33fadf80d4d9dbed19cf280ae2972.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_Afgo4AYTKqNZHXtvqB5TU2uzM=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.296524+00 2025-12-09 10:15:22.29653+00 13751 JTSS491FW#VS-D3 SPMX-20240815308955 \N \N \N 1 \N [{"file_id": "ccc55cd4-5fa6-498f-a553-14f5bd200df8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "990d1234d8774adea0a72b118c245566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "990d1234d8774adea0a72b118c245566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "990d1234d8774adea0a72b118c245566.jpg", "file_size": 8728, "is_delete": false, "file_type": 1, "original_file_name": "JTSS491FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990d1234d8774adea0a72b118c245566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990d1234d8774adea0a72b118c245566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990d1234d8774adea0a72b118c245566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/990d1234d8774adea0a72b118c245566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/990d1234d8774adea0a72b118c245566.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_e-E2xakktbq73zimMJxWKT63E=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.298622+00 2025-12-09 10:15:22.298627+00 13752 0005-42#玫红匹布条子 SPMX-20240815308948 \N \N \N 1 \N [{"file_id": "c9e6cb2e-a7ac-4887-9879-e672b37e2a90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dadb483b1614b289c256ce0282b5018.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dadb483b1614b289c256ce0282b5018.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dadb483b1614b289c256ce0282b5018.jpg", "file_size": 9435, "is_delete": false, "file_type": 1, "original_file_name": "0005-42#玫红匹布条子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dadb483b1614b289c256ce0282b5018.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dadb483b1614b289c256ce0282b5018.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dadb483b1614b289c256ce0282b5018.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dadb483b1614b289c256ce0282b5018.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dadb483b1614b289c256ce0282b5018.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sWlvPpoZxU73IVPglNfoZIGc8RY=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.301359+00 2025-12-09 10:15:22.301365+00 13753 1171FWF#V5曲线 SPMX-20240815308941 \N \N \N 1 \N [{"file_id": "b4f8be9f-49e7-4f5d-bbb0-5c9bd8da41ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3fc834e63394fbeab34c8ef78540be1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3fc834e63394fbeab34c8ef78540be1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3fc834e63394fbeab34c8ef78540be1.jpg", "file_size": 11022, "is_delete": false, "file_type": 1, "original_file_name": "1171FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3fc834e63394fbeab34c8ef78540be1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3fc834e63394fbeab34c8ef78540be1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3fc834e63394fbeab34c8ef78540be1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3fc834e63394fbeab34c8ef78540be1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3fc834e63394fbeab34c8ef78540be1.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrM4vKdemSvNlAuwejqfASUm9T4=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.304022+00 2025-12-09 10:15:22.304027+00 13754 HT5060#WJC22 SPMX-20240815308947 \N \N \N 1 \N [{"file_id": "f611ddb3-b135-4cdb-8f83-e5d36085bc5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1944493c6a074dd0a19726b8d8628a05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1944493c6a074dd0a19726b8d8628a05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1944493c6a074dd0a19726b8d8628a05.jpg", "file_size": 16955, "is_delete": false, "file_type": 1, "original_file_name": "HT5060#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1944493c6a074dd0a19726b8d8628a05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1944493c6a074dd0a19726b8d8628a05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1944493c6a074dd0a19726b8d8628a05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1944493c6a074dd0a19726b8d8628a05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1944493c6a074dd0a19726b8d8628a05.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77nwjTAKhpfg5v244bZDYtvrYew=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.306643+00 2025-12-09 10:15:22.306649+00 13755 DL31125#墨绿批布 SPMX-20240815308953 \N \N \N 1 \N [{"file_id": "c71e4a9e-aee1-453c-9de0-44475e0a694d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c78169f3d4f848dca52d793824cdc34f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c78169f3d4f848dca52d793824cdc34f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c78169f3d4f848dca52d793824cdc34f.jpg", "file_size": 18790, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#墨绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c78169f3d4f848dca52d793824cdc34f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c78169f3d4f848dca52d793824cdc34f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c78169f3d4f848dca52d793824cdc34f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c78169f3d4f848dca52d793824cdc34f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c78169f3d4f848dca52d793824cdc34f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFE0UCXusArW8es6ND9EqyuXmy0=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.309029+00 2025-12-09 10:15:22.309034+00 13756 JTSS490FW#VS-D3 SPMX-20240815308945 \N \N \N 1 \N [{"file_id": "adde78b0-25ff-44fc-93dd-c8ea63c75f8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c94ce5b34834056b0d782551f8e25c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c94ce5b34834056b0d782551f8e25c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c94ce5b34834056b0d782551f8e25c7.jpg", "file_size": 15932, "is_delete": false, "file_type": 1, "original_file_name": "JTSS490FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c94ce5b34834056b0d782551f8e25c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c94ce5b34834056b0d782551f8e25c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c94ce5b34834056b0d782551f8e25c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c94ce5b34834056b0d782551f8e25c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c94ce5b34834056b0d782551f8e25c7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z479pnCLXfiEta2Vs1xLgYTEFC0=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.311695+00 2025-12-09 10:15:22.311701+00 13757 LJH1705-63#A3色 SPMX-20240815308954 \N \N \N 1 \N [{"file_id": "363029c5-363d-48e3-b15e-8ed1613c3dc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4861ab5d45314858aace8186d3779b37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4861ab5d45314858aace8186d3779b37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4861ab5d45314858aace8186d3779b37.jpg", "file_size": 65657, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-63#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4861ab5d45314858aace8186d3779b37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4861ab5d45314858aace8186d3779b37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4861ab5d45314858aace8186d3779b37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4861ab5d45314858aace8186d3779b37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4861ab5d45314858aace8186d3779b37.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hH2ovVYH6voI5R_88T0WFVmbnfg=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.314409+00 2025-12-09 10:15:22.314415+00 13758 LZ1321#背心款号色 SPMX-20240815308946 \N \N \N 1 \N [{"file_id": "e679f66a-0da7-4741-9148-7312b3392b94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "772e9f3091f946af9bcfa1dff1210d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "772e9f3091f946af9bcfa1dff1210d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "772e9f3091f946af9bcfa1dff1210d46.jpg", "file_size": 17586, "is_delete": false, "file_type": 1, "original_file_name": "LZ1321#背心款号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/772e9f3091f946af9bcfa1dff1210d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/772e9f3091f946af9bcfa1dff1210d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/772e9f3091f946af9bcfa1dff1210d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/772e9f3091f946af9bcfa1dff1210d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/772e9f3091f946af9bcfa1dff1210d46.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UctkEJAQOIiKbvYUqzLVfwto0RM=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.316965+00 2025-12-09 10:15:22.31697+00 13759 FM028#原版色WJC22 SPMX-20240815308944 \N \N \N 1 \N [{"file_id": "52e534fc-22b9-4308-8c5f-05b2c2f53a12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d07c0eb2ed4c498e8f77605f799176b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d07c0eb2ed4c498e8f77605f799176b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d07c0eb2ed4c498e8f77605f799176b7.jpg", "file_size": 16446, "is_delete": false, "file_type": 1, "original_file_name": "FM028#原版色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c0eb2ed4c498e8f77605f799176b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c0eb2ed4c498e8f77605f799176b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d07c0eb2ed4c498e8f77605f799176b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d07c0eb2ed4c498e8f77605f799176b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d07c0eb2ed4c498e8f77605f799176b7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2hedelxlCbmWb0XlZg4z3cUlXBc=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.319539+00 2025-12-09 10:15:22.319545+00 13760 C9082#灰色S码 SPMX-20240815308961 \N \N \N 1 \N [{"file_id": "1fe7d710-e8d4-4810-a1e2-b02e8c6b3fe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5fc5812a1984134bf81cd35cdf8b378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5fc5812a1984134bf81cd35cdf8b378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5fc5812a1984134bf81cd35cdf8b378.jpg", "file_size": 23407, "is_delete": false, "file_type": 1, "original_file_name": "C9082#灰色S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fc5812a1984134bf81cd35cdf8b378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fc5812a1984134bf81cd35cdf8b378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5fc5812a1984134bf81cd35cdf8b378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5fc5812a1984134bf81cd35cdf8b378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5fc5812a1984134bf81cd35cdf8b378.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J-VGYoDC-PPv3PZQB5ZBd44SgXg=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.321637+00 2025-12-09 10:15:22.321643+00 13761 HT5061#WJC22 SPMX-20240815308958 \N \N \N 1 \N [{"file_id": "cdc93f00-05a5-4e31-930a-1dba905bdd0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "304c758ed1da4db595b1047d8ee71872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "304c758ed1da4db595b1047d8ee71872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "304c758ed1da4db595b1047d8ee71872.jpg", "file_size": 25541, "is_delete": false, "file_type": 1, "original_file_name": "HT5061#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304c758ed1da4db595b1047d8ee71872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304c758ed1da4db595b1047d8ee71872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304c758ed1da4db595b1047d8ee71872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/304c758ed1da4db595b1047d8ee71872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/304c758ed1da4db595b1047d8ee71872.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LF0B8YFenkc2tCwud_yMLOrkDCQ=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.323723+00 2025-12-09 10:15:22.323728+00 13762 LJH1705-7#咖色 SPMX-20240815308964 \N \N \N 1 \N [{"file_id": "70e3e789-d051-42eb-a712-e0d066c271df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd05a7b145da415e9fd85d9627bbf6d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd05a7b145da415e9fd85d9627bbf6d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd05a7b145da415e9fd85d9627bbf6d7.jpg", "file_size": 36497, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-7#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd05a7b145da415e9fd85d9627bbf6d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd05a7b145da415e9fd85d9627bbf6d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd05a7b145da415e9fd85d9627bbf6d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd05a7b145da415e9fd85d9627bbf6d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd05a7b145da415e9fd85d9627bbf6d7.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L27WR590m0TKi9Q4bhYzWtOn4ho=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.325778+00 2025-12-09 10:15:22.325783+00 13763 HT5063#WJC22 SPMX-20240815308969 \N \N \N 1 \N [{"file_id": "4f5d8f7b-34e1-45f7-9828-54cefdd4bb75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21929d62917d4835a64f0fb8ba619edf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21929d62917d4835a64f0fb8ba619edf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21929d62917d4835a64f0fb8ba619edf.jpg", "file_size": 13576, "is_delete": false, "file_type": 1, "original_file_name": "HT5063#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21929d62917d4835a64f0fb8ba619edf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21929d62917d4835a64f0fb8ba619edf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21929d62917d4835a64f0fb8ba619edf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21929d62917d4835a64f0fb8ba619edf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21929d62917d4835a64f0fb8ba619edf.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKMXuIWj9vGwP7ZIp1TsdN6UcYY=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.327814+00 2025-12-09 10:15:22.327819+00 13764 FM028#彩兰色WJC22 SPMX-20240815308968 \N \N \N 1 \N [{"file_id": "7de5448d-f8a1-4a20-a3d5-0c9c7590e6a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce810fac7004be0bda88875a28e1844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce810fac7004be0bda88875a28e1844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce810fac7004be0bda88875a28e1844.jpg", "file_size": 19656, "is_delete": false, "file_type": 1, "original_file_name": "FM028#彩兰色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce810fac7004be0bda88875a28e1844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce810fac7004be0bda88875a28e1844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce810fac7004be0bda88875a28e1844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce810fac7004be0bda88875a28e1844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce810fac7004be0bda88875a28e1844.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwJKTeBjs_k4DH5l3E3FcWjTT7w=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.329874+00 2025-12-09 10:15:22.329879+00 13765 JTSS492FW#VS-D3 SPMX-20240815308967 \N \N \N 1 \N [{"file_id": "745a5be6-6eb8-466f-a067-b9602907c429", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg", "file_size": 18986, "is_delete": false, "file_type": 1, "original_file_name": "JTSS492FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfdbcec918e549a1a5fb58b3bf0eb6fa.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ABh_oYKCLMIJuSMR44C7gmhnqAs=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.332218+00 2025-12-09 10:15:22.332224+00 13766 DL31125#大红批布 SPMX-20240815308963 \N \N \N 1 \N [{"file_id": "917b72a4-dad7-41f4-a098-17949176a84b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54afeb73a8184360964151a5d814cb43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54afeb73a8184360964151a5d814cb43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54afeb73a8184360964151a5d814cb43.jpg", "file_size": 17909, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#大红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54afeb73a8184360964151a5d814cb43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54afeb73a8184360964151a5d814cb43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54afeb73a8184360964151a5d814cb43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54afeb73a8184360964151a5d814cb43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54afeb73a8184360964151a5d814cb43.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dfaw5IoOI43zaxH7-MnuVkCU5V4=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.334487+00 2025-12-09 10:15:22.334493+00 13767 LZ1322#背心款1号色 SPMX-20240815308965 \N \N \N 1 \N [{"file_id": "1c56ded2-f4fe-43ae-bf9e-3eeb04dbb205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ff48d60563e4e09814a31b8a2d7f48d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ff48d60563e4e09814a31b8a2d7f48d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ff48d60563e4e09814a31b8a2d7f48d.jpg", "file_size": 17133, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff48d60563e4e09814a31b8a2d7f48d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff48d60563e4e09814a31b8a2d7f48d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff48d60563e4e09814a31b8a2d7f48d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ff48d60563e4e09814a31b8a2d7f48d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ff48d60563e4e09814a31b8a2d7f48d.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rnKbjX6TX1p-sOUqywjSGF9r2ZY=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.336793+00 2025-12-09 10:15:22.336798+00 13768 1176#卡其 SPMX-20240815308966 \N \N \N 1 \N [{"file_id": "dea1edc9-9db3-4bbb-96c6-c5f784b9e88c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "697f5bfd425945219ef10860f647d5b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "697f5bfd425945219ef10860f647d5b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "697f5bfd425945219ef10860f647d5b6.jpg", "file_size": 16326, "is_delete": false, "file_type": 1, "original_file_name": "1176#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697f5bfd425945219ef10860f647d5b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697f5bfd425945219ef10860f647d5b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697f5bfd425945219ef10860f647d5b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/697f5bfd425945219ef10860f647d5b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/697f5bfd425945219ef10860f647d5b6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULmDvB8HCGQJFqdtPfS5RFzjwsg=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.338841+00 2025-12-09 10:15:22.338846+00 13769 23-2122#A5绿色-4XL SPMX-20240815308960 \N \N \N 1 \N [{"file_id": "0aeb36e6-37c2-46c1-ba52-5240ee7f0930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "797ee509082d423fa9a44dddb525b29e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "797ee509082d423fa9a44dddb525b29e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "797ee509082d423fa9a44dddb525b29e.jpg", "file_size": 14775, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5绿色-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ee509082d423fa9a44dddb525b29e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ee509082d423fa9a44dddb525b29e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797ee509082d423fa9a44dddb525b29e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/797ee509082d423fa9a44dddb525b29e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/797ee509082d423fa9a44dddb525b29e.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7b2GdHiFDilvq34lpD3fXHCwvM=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.34095+00 2025-12-09 10:15:22.340955+00 13770 FM028#大红色WJC22 SPMX-20240815308957 \N \N \N 1 \N [{"file_id": "3fc16a4f-b5dd-4595-b473-cec9cd63571f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18e8429c442d4dbabc8e88e4f061ce61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18e8429c442d4dbabc8e88e4f061ce61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18e8429c442d4dbabc8e88e4f061ce61.jpg", "file_size": 19644, "is_delete": false, "file_type": 1, "original_file_name": "FM028#大红色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e8429c442d4dbabc8e88e4f061ce61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e8429c442d4dbabc8e88e4f061ce61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e8429c442d4dbabc8e88e4f061ce61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18e8429c442d4dbabc8e88e4f061ce61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18e8429c442d4dbabc8e88e4f061ce61.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqxNvSwMh6dd9RT7gAnj-fTqrBY=", "createTime": "2024-08-15 14:56:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.343282+00 2025-12-09 10:15:22.343287+00 13771 0005-43#WJC22 SPMX-20240815308959 \N \N \N 1 \N [{"file_id": "0aaf8915-226c-4b44-9625-f48e58004fa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc5aa944eba54c528115e2c5b6e73cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc5aa944eba54c528115e2c5b6e73cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc5aa944eba54c528115e2c5b6e73cb6.jpg", "file_size": 14639, "is_delete": false, "file_type": 1, "original_file_name": "0005-43#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5aa944eba54c528115e2c5b6e73cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5aa944eba54c528115e2c5b6e73cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc5aa944eba54c528115e2c5b6e73cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc5aa944eba54c528115e2c5b6e73cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc5aa944eba54c528115e2c5b6e73cb6.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzzApzvjrwBndWHLdANagD1AUQ8=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.345579+00 2025-12-09 10:15:22.345584+00 13772 8339FWE#VS-D3 SPMX-20240815308962 \N \N \N 1 \N [{"file_id": "5f36e0d7-24af-491f-b555-b20b86f3f5e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d6422fe0f794682974e8f638cf8cce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d6422fe0f794682974e8f638cf8cce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d6422fe0f794682974e8f638cf8cce9.jpg", "file_size": 18006, "is_delete": false, "file_type": 1, "original_file_name": "8339FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6422fe0f794682974e8f638cf8cce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6422fe0f794682974e8f638cf8cce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6422fe0f794682974e8f638cf8cce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d6422fe0f794682974e8f638cf8cce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d6422fe0f794682974e8f638cf8cce9.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:31c72PQ67bYQCxxZ1v5XAYM_0t4=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.347848+00 2025-12-09 10:15:22.347852+00 13773 0005-44#WJC22 SPMX-20240815308970 \N \N \N 1 \N [{"file_id": "68d3e185-7a57-4625-b323-4fecfc214cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42dfd23c603f49d2add29dc552414645.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42dfd23c603f49d2add29dc552414645.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42dfd23c603f49d2add29dc552414645.jpg", "file_size": 13689, "is_delete": false, "file_type": 1, "original_file_name": "0005-44#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42dfd23c603f49d2add29dc552414645.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42dfd23c603f49d2add29dc552414645.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42dfd23c603f49d2add29dc552414645.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42dfd23c603f49d2add29dc552414645.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42dfd23c603f49d2add29dc552414645.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QcNLHdZiK5QX-wpWVrgPiyB8A2M=", "createTime": "2024-08-15 14:56:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.34993+00 2025-12-09 10:15:22.349934+00 13774 DL31125#彩兰色批布 SPMX-20240815308972 \N \N \N 1 \N [{"file_id": "33159981-3067-470a-b5d9-ffced5c3cc0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "241783af5c3848e887afc1cb026b9fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "241783af5c3848e887afc1cb026b9fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "241783af5c3848e887afc1cb026b9fa8.jpg", "file_size": 18500, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#彩兰色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241783af5c3848e887afc1cb026b9fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241783af5c3848e887afc1cb026b9fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241783af5c3848e887afc1cb026b9fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/241783af5c3848e887afc1cb026b9fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/241783af5c3848e887afc1cb026b9fa8.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWjF1F6bRlPgy_caXdOzv-Se188=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.351985+00 2025-12-09 10:15:22.35199+00 13775 8342FWF#红色 V5曲线 SPMX-20240815308974 \N \N \N 1 \N [{"file_id": "577b5459-1906-453d-a516-cc5f3b469cc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90d387bf236645388f9eec54818500c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90d387bf236645388f9eec54818500c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90d387bf236645388f9eec54818500c0.jpg", "file_size": 16352, "is_delete": false, "file_type": 1, "original_file_name": "8342FWF#红色 V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d387bf236645388f9eec54818500c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d387bf236645388f9eec54818500c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90d387bf236645388f9eec54818500c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90d387bf236645388f9eec54818500c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90d387bf236645388f9eec54818500c0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJd6tnq31dZyY2TFmy-JoQpcFi8=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.354059+00 2025-12-09 10:15:22.354064+00 13776 HT5064#WJC22 SPMX-20240815308980 \N \N \N 1 \N [{"file_id": "ce0723c6-e44a-49d4-98f5-3bd5f30453e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25a77c4912f64c56947e11d778b33432.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25a77c4912f64c56947e11d778b33432.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25a77c4912f64c56947e11d778b33432.jpg", "file_size": 11865, "is_delete": false, "file_type": 1, "original_file_name": "HT5064#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a77c4912f64c56947e11d778b33432.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a77c4912f64c56947e11d778b33432.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25a77c4912f64c56947e11d778b33432.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25a77c4912f64c56947e11d778b33432.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25a77c4912f64c56947e11d778b33432.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRX6t_LOGu2JC8-HBkVLIA0BdUE=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.356373+00 2025-12-09 10:15:22.356378+00 13777 FM028#浅紫色WJC22 SPMX-20240815308982 \N \N \N 1 \N [{"file_id": "ad0107cc-b268-42ec-868e-92a6c47c7f3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2143a17c05e4a7981b2826ebc12a1e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2143a17c05e4a7981b2826ebc12a1e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2143a17c05e4a7981b2826ebc12a1e0.jpg", "file_size": 16071, "is_delete": false, "file_type": 1, "original_file_name": "FM028#浅紫色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2143a17c05e4a7981b2826ebc12a1e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2143a17c05e4a7981b2826ebc12a1e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2143a17c05e4a7981b2826ebc12a1e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2143a17c05e4a7981b2826ebc12a1e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2143a17c05e4a7981b2826ebc12a1e0.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tQTn9UarF6Gprp1QzQ4_-xMDsmE=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.358615+00 2025-12-09 10:15:22.35862+00 13778 C9082#灰色XL码 SPMX-20240815308977 \N \N \N 1 \N [{"file_id": "bb4d380e-8ddf-4e2a-871e-144a621e996f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d437d35255344d2abc0a934f0484a93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d437d35255344d2abc0a934f0484a93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d437d35255344d2abc0a934f0484a93.jpg", "file_size": 21809, "is_delete": false, "file_type": 1, "original_file_name": "C9082#灰色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d437d35255344d2abc0a934f0484a93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d437d35255344d2abc0a934f0484a93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d437d35255344d2abc0a934f0484a93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d437d35255344d2abc0a934f0484a93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d437d35255344d2abc0a934f0484a93.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HG3KXC3T5TA-4MQaltVVUzwC7OU=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.3609+00 2025-12-09 10:15:22.360905+00 13779 1176#灰色 SPMX-20240815308975 \N \N \N 1 \N [{"file_id": "392fab0a-5c5c-4114-9595-ad00a1cfe386", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1748fa4cadcc44348257cb78787ccc3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1748fa4cadcc44348257cb78787ccc3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1748fa4cadcc44348257cb78787ccc3f.jpg", "file_size": 14223, "is_delete": false, "file_type": 1, "original_file_name": "1176#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1748fa4cadcc44348257cb78787ccc3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1748fa4cadcc44348257cb78787ccc3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1748fa4cadcc44348257cb78787ccc3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1748fa4cadcc44348257cb78787ccc3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1748fa4cadcc44348257cb78787ccc3f.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIgXqItW_WcYMPhtFyCCnAHs8gA=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.362941+00 2025-12-09 10:15:22.362945+00 13780 JTSS493FW#VS-D3 SPMX-20240815308979 \N \N \N 1 \N [{"file_id": "33b3f2ca-ad6c-41e8-bdfc-51ebb528f126", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6401d52a2c14aa9bbe0d087938a4799.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6401d52a2c14aa9bbe0d087938a4799.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6401d52a2c14aa9bbe0d087938a4799.jpg", "file_size": 13640, "is_delete": false, "file_type": 1, "original_file_name": "JTSS493FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6401d52a2c14aa9bbe0d087938a4799.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6401d52a2c14aa9bbe0d087938a4799.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6401d52a2c14aa9bbe0d087938a4799.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6401d52a2c14aa9bbe0d087938a4799.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6401d52a2c14aa9bbe0d087938a4799.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5W3IJejpu8tG59n4v2xajXzNnCQ=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.365011+00 2025-12-09 10:15:22.365016+00 13781 23-2122#A5绿色-领子4XL SPMX-20240815308981 \N \N \N 1 \N [{"file_id": "e58655e1-eee3-46d5-a872-2789d921ffe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa681c6267744d7385586d627a23c23b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa681c6267744d7385586d627a23c23b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa681c6267744d7385586d627a23c23b.jpg", "file_size": 13451, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5绿色-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa681c6267744d7385586d627a23c23b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa681c6267744d7385586d627a23c23b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa681c6267744d7385586d627a23c23b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa681c6267744d7385586d627a23c23b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa681c6267744d7385586d627a23c23b.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uwAHw5h34OOqz_3wIK-BNqTk-s=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.367103+00 2025-12-09 10:15:22.367109+00 13782 LJH1705-7#黑色 SPMX-20240815308973 \N \N \N 1 \N [{"file_id": "a3c0895b-b2d1-4b4d-8b10-fa0664aa3dcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33fe6ffb962b4f88a8e3b851e2c7b04c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33fe6ffb962b4f88a8e3b851e2c7b04c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33fe6ffb962b4f88a8e3b851e2c7b04c.jpg", "file_size": 36062, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-7#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe6ffb962b4f88a8e3b851e2c7b04c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe6ffb962b4f88a8e3b851e2c7b04c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fe6ffb962b4f88a8e3b851e2c7b04c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33fe6ffb962b4f88a8e3b851e2c7b04c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33fe6ffb962b4f88a8e3b851e2c7b04c.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRpU3oT5_aaE5vZT2bq1dEkAtpc=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.369568+00 2025-12-09 10:15:22.369574+00 13783 LZ1322#背心款2号色 SPMX-20240815308976 \N \N \N 1 \N [{"file_id": "ca0e65d9-59bd-4506-96f7-1323f4096a36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36686432fed34540aaa669f1bbafc822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36686432fed34540aaa669f1bbafc822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36686432fed34540aaa669f1bbafc822.jpg", "file_size": 15765, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36686432fed34540aaa669f1bbafc822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36686432fed34540aaa669f1bbafc822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36686432fed34540aaa669f1bbafc822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36686432fed34540aaa669f1bbafc822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36686432fed34540aaa669f1bbafc822.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBOk-xi4LT_8jBf_jG0V_WNRgc4=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.372345+00 2025-12-09 10:15:22.372351+00 13784 23-2122#A5绿色-领子3XL SPMX-20240815308971 \N \N \N 1 \N [{"file_id": "65c44b62-5664-47e5-b245-7b53b0170161", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc3dafe83c7c4a5984db5c146a75d956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc3dafe83c7c4a5984db5c146a75d956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc3dafe83c7c4a5984db5c146a75d956.jpg", "file_size": 13943, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A5绿色-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3dafe83c7c4a5984db5c146a75d956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3dafe83c7c4a5984db5c146a75d956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3dafe83c7c4a5984db5c146a75d956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc3dafe83c7c4a5984db5c146a75d956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc3dafe83c7c4a5984db5c146a75d956.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-G3pov4sc3_4SxqffI6hXYzt-Pc=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:22.374853+00 2025-12-09 10:15:22.374858+00 13785 0005-45#WJC22 SPMX-20240815308978 \N \N \N 1 \N [{"file_id": "0ff17126-54b1-4714-a997-ceb94e860059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5793d14c5ae43bcb8b723b3eb8191e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5793d14c5ae43bcb8b723b3eb8191e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5793d14c5ae43bcb8b723b3eb8191e5.jpg", "file_size": 8319, "is_delete": false, "file_type": 1, "original_file_name": "0005-45#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5793d14c5ae43bcb8b723b3eb8191e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5793d14c5ae43bcb8b723b3eb8191e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5793d14c5ae43bcb8b723b3eb8191e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5793d14c5ae43bcb8b723b3eb8191e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5793d14c5ae43bcb8b723b3eb8191e5.jpg?e=1765361721&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naUGMfOVhbiboQotVQuoNXHYo0I=", "createTime": "2024-08-15 14:56:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.115461+00 2025-12-09 10:15:23.115469+00 13786 HT5065#WJC22 SPMX-20240815308989 \N \N \N 1 \N [{"file_id": "63d3244c-e2ea-43f1-b9f2-c06e24df91e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c417ddf22ab4b9f93bf8562d75681fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c417ddf22ab4b9f93bf8562d75681fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c417ddf22ab4b9f93bf8562d75681fe.jpg", "file_size": 12755, "is_delete": false, "file_type": 1, "original_file_name": "HT5065#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c417ddf22ab4b9f93bf8562d75681fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c417ddf22ab4b9f93bf8562d75681fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c417ddf22ab4b9f93bf8562d75681fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c417ddf22ab4b9f93bf8562d75681fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c417ddf22ab4b9f93bf8562d75681fe.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BloYG3ahJcU2g1Yn_8SDuZttVaE=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.118916+00 2025-12-09 10:15:23.118922+00 13787 LZ1322#背心款4号色 SPMX-20240815308995 \N \N \N 1 \N [{"file_id": "9d1a27a3-b62f-4d45-9ae8-be7a88e0ac4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg", "file_size": 15295, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d2027bfb36b4a8c8fe2f9f1a0d55b1f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPa25W_PScTFBNh2J4-VD8_mXWw=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.121349+00 2025-12-09 10:15:23.121354+00 13788 23-2122#A6-3XL SPMX-20240815308993 \N \N \N 1 \N [{"file_id": "bf815211-efd4-4e73-86f6-14f370a49086", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad533ac07e4f46c898c846db0c3c90ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad533ac07e4f46c898c846db0c3c90ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad533ac07e4f46c898c846db0c3c90ba.jpg", "file_size": 15906, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad533ac07e4f46c898c846db0c3c90ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad533ac07e4f46c898c846db0c3c90ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad533ac07e4f46c898c846db0c3c90ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad533ac07e4f46c898c846db0c3c90ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad533ac07e4f46c898c846db0c3c90ba.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBxGgg6Ob4k9XW6eIXJ5tF-iISI=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.123764+00 2025-12-09 10:15:23.123769+00 13789 1176#玫红 SPMX-20240815308985 \N \N \N 1 \N [{"file_id": "2d2f90d2-3d35-4f1b-a3aa-5b91860cc03d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8f3a73f912c4631b470b60173710f55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8f3a73f912c4631b470b60173710f55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8f3a73f912c4631b470b60173710f55.jpg", "file_size": 17381, "is_delete": false, "file_type": 1, "original_file_name": "1176#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3a73f912c4631b470b60173710f55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3a73f912c4631b470b60173710f55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f3a73f912c4631b470b60173710f55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8f3a73f912c4631b470b60173710f55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8f3a73f912c4631b470b60173710f55.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8avCCiEehB3abam1uE5_lvhftY=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.12583+00 2025-12-09 10:15:23.125836+00 13790 FM028#玫红色WJC22 SPMX-20240815308992 \N \N \N 1 \N [{"file_id": "71d817f3-531c-40b2-aa69-719ad3e585a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eedd5391cf914cecac7371b7a9a08a12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eedd5391cf914cecac7371b7a9a08a12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eedd5391cf914cecac7371b7a9a08a12.jpg", "file_size": 18540, "is_delete": false, "file_type": 1, "original_file_name": "FM028#玫红色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedd5391cf914cecac7371b7a9a08a12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedd5391cf914cecac7371b7a9a08a12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eedd5391cf914cecac7371b7a9a08a12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eedd5391cf914cecac7371b7a9a08a12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eedd5391cf914cecac7371b7a9a08a12.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o875LRxuTSbTBhzOf2rXGlaOZJw=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.128211+00 2025-12-09 10:15:23.128216+00 13791 JTSS494FW#粉VS-D3 SPMX-20240815308988 \N \N \N 1 \N [{"file_id": "a7da8b0b-3f46-408a-bd08-cdabc1ac79df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6657ad50b6d46e8b1f41569d054e26b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6657ad50b6d46e8b1f41569d054e26b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6657ad50b6d46e8b1f41569d054e26b.jpg", "file_size": 12996, "is_delete": false, "file_type": 1, "original_file_name": "JTSS494FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6657ad50b6d46e8b1f41569d054e26b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6657ad50b6d46e8b1f41569d054e26b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6657ad50b6d46e8b1f41569d054e26b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6657ad50b6d46e8b1f41569d054e26b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6657ad50b6d46e8b1f41569d054e26b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXkolMMYaIudROUf6n5VPHBOb_I=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.130473+00 2025-12-09 10:15:23.130478+00 13792 DL31125#批布亮黄 SPMX-20240815308987 \N \N \N 1 \N [{"file_id": "e822465c-b316-4642-8a0b-1116861f5135", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89186c482866456bb6068ebd74e306fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89186c482866456bb6068ebd74e306fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89186c482866456bb6068ebd74e306fa.jpg", "file_size": 17762, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89186c482866456bb6068ebd74e306fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89186c482866456bb6068ebd74e306fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89186c482866456bb6068ebd74e306fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89186c482866456bb6068ebd74e306fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89186c482866456bb6068ebd74e306fa.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qeMrWCtJYWkc-nWCGRT4M4Uq3b4=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.132733+00 2025-12-09 10:15:23.132737+00 13793 C925FWF#L SPMX-20240815308990 \N \N \N 1 \N [{"file_id": "8cffad24-e020-4e93-95c9-c908391e1fdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38ac3c39a9ee4ea6805d6108bed3f455.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38ac3c39a9ee4ea6805d6108bed3f455.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38ac3c39a9ee4ea6805d6108bed3f455.jpg", "file_size": 12658, "is_delete": false, "file_type": 1, "original_file_name": "C925FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ac3c39a9ee4ea6805d6108bed3f455.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ac3c39a9ee4ea6805d6108bed3f455.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ac3c39a9ee4ea6805d6108bed3f455.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38ac3c39a9ee4ea6805d6108bed3f455.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38ac3c39a9ee4ea6805d6108bed3f455.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDz4-M_75qbVSJ8OZJIl8KNbtW8=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.13478+00 2025-12-09 10:15:23.134785+00 13794 0005-47#桔色 SPMX-20240815308991 \N \N \N 1 \N [{"file_id": "f41e45ef-0eca-4d9e-9574-d716ce76a8a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c97ff469629d41dcafb41c08b869b292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c97ff469629d41dcafb41c08b869b292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c97ff469629d41dcafb41c08b869b292.jpg", "file_size": 14104, "is_delete": false, "file_type": 1, "original_file_name": "0005-47#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97ff469629d41dcafb41c08b869b292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97ff469629d41dcafb41c08b869b292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97ff469629d41dcafb41c08b869b292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c97ff469629d41dcafb41c08b869b292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c97ff469629d41dcafb41c08b869b292.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AW5z-tm7L-oZO4CfU08ZzGb-UxU=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.136867+00 2025-12-09 10:15:23.136872+00 13795 8342FWF#黄色 V5曲线 SPMX-20240815308986 \N \N \N 1 \N [{"file_id": "d8cc38ba-fdcd-4538-b958-6ff5ff726f67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd9db79bd39b4cd6903f8635003a84d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd9db79bd39b4cd6903f8635003a84d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd9db79bd39b4cd6903f8635003a84d3.jpg", "file_size": 22301, "is_delete": false, "file_type": 1, "original_file_name": "8342FWF#黄色 V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd9db79bd39b4cd6903f8635003a84d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd9db79bd39b4cd6903f8635003a84d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd9db79bd39b4cd6903f8635003a84d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd9db79bd39b4cd6903f8635003a84d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd9db79bd39b4cd6903f8635003a84d3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xv1LQJHhgzpl6pDkn4QvPyoNlkY=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.138916+00 2025-12-09 10:15:23.138922+00 13796 LJH1705-9#-彩蓝 SPMX-20240815308994 \N \N \N 1 \N [{"file_id": "cb751e21-77e0-46b2-a796-21685e7532e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad92f28a25e141cd8c85210815babc19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad92f28a25e141cd8c85210815babc19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad92f28a25e141cd8c85210815babc19.jpg", "file_size": 64732, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#-彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad92f28a25e141cd8c85210815babc19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad92f28a25e141cd8c85210815babc19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad92f28a25e141cd8c85210815babc19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad92f28a25e141cd8c85210815babc19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad92f28a25e141cd8c85210815babc19.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2JJ4cjR4wSPXGXhK-Ohr5sste38=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.140974+00 2025-12-09 10:15:23.14098+00 13797 LJH1705-73#咖色 SPMX-20240815308983 \N \N \N 1 \N [{"file_id": "e8c5c988-4f05-400c-acb8-97d0eb2bfd51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e63111c110bd47b09a631ca787f0180d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e63111c110bd47b09a631ca787f0180d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e63111c110bd47b09a631ca787f0180d.jpg", "file_size": 32272, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-73#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63111c110bd47b09a631ca787f0180d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63111c110bd47b09a631ca787f0180d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63111c110bd47b09a631ca787f0180d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e63111c110bd47b09a631ca787f0180d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e63111c110bd47b09a631ca787f0180d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DNFOgPUkKH3DXBq8mFscr_EOWGA=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.143317+00 2025-12-09 10:15:23.143323+00 13798 LZ1322#背心款3号色 SPMX-20240815308984 \N \N \N 1 \N [{"file_id": "d02f0b1c-bc70-454a-855e-101a8b93fba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffeb9546059b47ba849bed9bc502b8d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffeb9546059b47ba849bed9bc502b8d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffeb9546059b47ba849bed9bc502b8d8.jpg", "file_size": 16507, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeb9546059b47ba849bed9bc502b8d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeb9546059b47ba849bed9bc502b8d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffeb9546059b47ba849bed9bc502b8d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffeb9546059b47ba849bed9bc502b8d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffeb9546059b47ba849bed9bc502b8d8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QmcOu7v_bShHm4uYjPhJbhFpzgY=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.145655+00 2025-12-09 10:15:23.145662+00 13799 1176#绿色 SPMX-20240815309001 \N \N \N 1 \N [{"file_id": "29c2c1f9-ba1c-4200-954d-62c4ab900da6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4725f7377ec8496fb395a1284a6b90d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4725f7377ec8496fb395a1284a6b90d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4725f7377ec8496fb395a1284a6b90d7.jpg", "file_size": 18866, "is_delete": false, "file_type": 1, "original_file_name": "1176#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725f7377ec8496fb395a1284a6b90d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725f7377ec8496fb395a1284a6b90d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725f7377ec8496fb395a1284a6b90d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4725f7377ec8496fb395a1284a6b90d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4725f7377ec8496fb395a1284a6b90d7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMypsnwookz_6D9AKf67xV1yFWw=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.147966+00 2025-12-09 10:15:23.147971+00 13800 JTSS494FW#黑VS-D3 SPMX-20240815308997 \N \N \N 1 \N [{"file_id": "3c650600-8b90-4657-868f-ef602be8c7a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8030bdbc73e74dbe922ae52153cb1764.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8030bdbc73e74dbe922ae52153cb1764.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8030bdbc73e74dbe922ae52153cb1764.jpg", "file_size": 13380, "is_delete": false, "file_type": 1, "original_file_name": "JTSS494FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8030bdbc73e74dbe922ae52153cb1764.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8030bdbc73e74dbe922ae52153cb1764.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8030bdbc73e74dbe922ae52153cb1764.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8030bdbc73e74dbe922ae52153cb1764.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8030bdbc73e74dbe922ae52153cb1764.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YGSIdn3tTJZ6cFfWoalGRRlRhg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.150164+00 2025-12-09 10:15:23.150171+00 13801 8346FWF#V5曲线 SPMX-20240815308998 \N \N \N 1 \N [{"file_id": "8edaf6f6-3cb4-4693-a5f5-f5015d7ff591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b8495ad7d954f9ea56eba031016b778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b8495ad7d954f9ea56eba031016b778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b8495ad7d954f9ea56eba031016b778.jpg", "file_size": 16527, "is_delete": false, "file_type": 1, "original_file_name": "8346FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8495ad7d954f9ea56eba031016b778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8495ad7d954f9ea56eba031016b778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b8495ad7d954f9ea56eba031016b778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b8495ad7d954f9ea56eba031016b778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b8495ad7d954f9ea56eba031016b778.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KOek2on2QtQ4Uud9o3z6gb3NqU=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.152751+00 2025-12-09 10:15:23.152755+00 13802 C925FWF#M SPMX-20240815309002 \N \N \N 1 \N [{"file_id": "aebaaf77-47cb-4df6-951d-1362763af736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2f3ab7105534723bb6df7572dffa753.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2f3ab7105534723bb6df7572dffa753.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2f3ab7105534723bb6df7572dffa753.jpg", "file_size": 12375, "is_delete": false, "file_type": 1, "original_file_name": "C925FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f3ab7105534723bb6df7572dffa753.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f3ab7105534723bb6df7572dffa753.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f3ab7105534723bb6df7572dffa753.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2f3ab7105534723bb6df7572dffa753.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2f3ab7105534723bb6df7572dffa753.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xxBH4xL3QwhPoAtIhK6di1Zzoc=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.15504+00 2025-12-09 10:15:23.155044+00 13803 1176#酒红 SPMX-20240815309010 \N \N \N 1 \N [{"file_id": "a9f34a15-cca7-454e-8242-d6a188f57754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af66a3527e814b8584d63b123b2fb0fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af66a3527e814b8584d63b123b2fb0fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af66a3527e814b8584d63b123b2fb0fb.jpg", "file_size": 20352, "is_delete": false, "file_type": 1, "original_file_name": "1176#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af66a3527e814b8584d63b123b2fb0fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af66a3527e814b8584d63b123b2fb0fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af66a3527e814b8584d63b123b2fb0fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af66a3527e814b8584d63b123b2fb0fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af66a3527e814b8584d63b123b2fb0fb.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pvQr3zNpSX2UMByC13Uy50liJMc=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.157021+00 2025-12-09 10:15:23.157025+00 13804 DL31125#批布浅粉 SPMX-20240815309011 \N \N \N 1 \N [{"file_id": "82e6c842-df23-4e3a-8615-f63c545ece64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdaedf3be0d0449384a2df22717756e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdaedf3be0d0449384a2df22717756e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdaedf3be0d0449384a2df22717756e0.jpg", "file_size": 16374, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaedf3be0d0449384a2df22717756e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaedf3be0d0449384a2df22717756e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaedf3be0d0449384a2df22717756e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdaedf3be0d0449384a2df22717756e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdaedf3be0d0449384a2df22717756e0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xy5Hes3JfgD6MfQ2IF62MILLvA4=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.158971+00 2025-12-09 10:15:23.158975+00 13805 LZ1322#背心款5号色 SPMX-20240815309005 \N \N \N 1 \N [{"file_id": "a8e0c55e-ec36-4df7-be90-d1ee62dccd20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c4c2f63cc9d4511b36a5965d53e331d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c4c2f63cc9d4511b36a5965d53e331d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c4c2f63cc9d4511b36a5965d53e331d.jpg", "file_size": 15572, "is_delete": false, "file_type": 1, "original_file_name": "LZ1322#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4c2f63cc9d4511b36a5965d53e331d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4c2f63cc9d4511b36a5965d53e331d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4c2f63cc9d4511b36a5965d53e331d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c4c2f63cc9d4511b36a5965d53e331d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c4c2f63cc9d4511b36a5965d53e331d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sc3ctWVkdbPXXZz2TxRc84AhOVA=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.160915+00 2025-12-09 10:15:23.16092+00 13806 8349FWF#V5曲线 SPMX-20240815309009 \N \N \N 1 \N [{"file_id": "4c29a53c-926b-4167-a6db-00a563e452ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5c35e68713f4736930a206b3b913c5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5c35e68713f4736930a206b3b913c5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5c35e68713f4736930a206b3b913c5f.jpg", "file_size": 19760, "is_delete": false, "file_type": 1, "original_file_name": "8349FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c35e68713f4736930a206b3b913c5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c35e68713f4736930a206b3b913c5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c35e68713f4736930a206b3b913c5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5c35e68713f4736930a206b3b913c5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5c35e68713f4736930a206b3b913c5f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9XXAD7HxT_2M4c2tI6_2W5yFJg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.162897+00 2025-12-09 10:15:23.162902+00 13807 HT5066#绿色 SPMX-20240815308999 \N \N \N 1 \N [{"file_id": "b6543cf1-e459-4327-bdbd-e7db1f0b2ef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e89c251a35ea447b84af18e283dcd0a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e89c251a35ea447b84af18e283dcd0a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e89c251a35ea447b84af18e283dcd0a0.jpg", "file_size": 21356, "is_delete": false, "file_type": 1, "original_file_name": "HT5066#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89c251a35ea447b84af18e283dcd0a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89c251a35ea447b84af18e283dcd0a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89c251a35ea447b84af18e283dcd0a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e89c251a35ea447b84af18e283dcd0a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e89c251a35ea447b84af18e283dcd0a0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JIJ7HVJOjN02YkJhLMAZaAsEBAw=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.164842+00 2025-12-09 10:15:23.164847+00 13808 0005-47#蓝色 SPMX-20240815309000 \N \N \N 1 \N [{"file_id": "903a37a6-f9a5-4b18-9830-0589aa431dd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e0569a1289f47afa0efae95337cf7ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e0569a1289f47afa0efae95337cf7ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e0569a1289f47afa0efae95337cf7ed.jpg", "file_size": 14857, "is_delete": false, "file_type": 1, "original_file_name": "0005-47#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0569a1289f47afa0efae95337cf7ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0569a1289f47afa0efae95337cf7ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0569a1289f47afa0efae95337cf7ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e0569a1289f47afa0efae95337cf7ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e0569a1289f47afa0efae95337cf7ed.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AD6jkAU27bQ-AHr2Cl1HkRIfLGU=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.16679+00 2025-12-09 10:15:23.166795+00 13809 DL31125#批布枣红 SPMX-20240815308996 \N \N \N 1 \N [{"file_id": "5db38a62-fedd-4730-9f8c-3d0a458fca6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59e87007c1754bf3825dd4892d61a7e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59e87007c1754bf3825dd4892d61a7e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59e87007c1754bf3825dd4892d61a7e7.jpg", "file_size": 18022, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e87007c1754bf3825dd4892d61a7e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e87007c1754bf3825dd4892d61a7e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e87007c1754bf3825dd4892d61a7e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59e87007c1754bf3825dd4892d61a7e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59e87007c1754bf3825dd4892d61a7e7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1rHqn7HhA8z-HMGbq-acf_wIUc=", "createTime": "2024-08-15 14:56:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.168796+00 2025-12-09 10:15:23.168802+00 13810 JTSS495FW#VS-D3 SPMX-20240815309007 \N \N \N 1 \N [{"file_id": "c802bd97-6b1c-4716-be6d-50bf8f359576", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0235a63313b4fcd8056ef9ffc0b92dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0235a63313b4fcd8056ef9ffc0b92dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0235a63313b4fcd8056ef9ffc0b92dc.jpg", "file_size": 18092, "is_delete": false, "file_type": 1, "original_file_name": "JTSS495FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0235a63313b4fcd8056ef9ffc0b92dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0235a63313b4fcd8056ef9ffc0b92dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0235a63313b4fcd8056ef9ffc0b92dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0235a63313b4fcd8056ef9ffc0b92dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0235a63313b4fcd8056ef9ffc0b92dc.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzM-Gu-79bSJfYbr3UA7kGGZH1g=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.171139+00 2025-12-09 10:15:23.171144+00 13811 FM029#原版色 SPMX-20240815309003 \N \N \N 1 \N [{"file_id": "cc0ccd8b-6452-4ee7-b03f-8bac0fcb9060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07fb4a0b85b049fcaeb67d6595237f98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07fb4a0b85b049fcaeb67d6595237f98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07fb4a0b85b049fcaeb67d6595237f98.jpg", "file_size": 16450, "is_delete": false, "file_type": 1, "original_file_name": "FM029#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4a0b85b049fcaeb67d6595237f98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4a0b85b049fcaeb67d6595237f98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07fb4a0b85b049fcaeb67d6595237f98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07fb4a0b85b049fcaeb67d6595237f98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07fb4a0b85b049fcaeb67d6595237f98.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-B0Qo0uNmGQfplDVitPPYLHL-yg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.173114+00 2025-12-09 10:15:23.173118+00 13812 23-2122#A6-4XL SPMX-20240815309004 \N \N \N 1 \N [{"file_id": "22c3a5b5-f36a-401d-932c-144bfc80468f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff7494e6506f4dbda3984eeaeb7f2979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff7494e6506f4dbda3984eeaeb7f2979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff7494e6506f4dbda3984eeaeb7f2979.jpg", "file_size": 14874, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7494e6506f4dbda3984eeaeb7f2979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7494e6506f4dbda3984eeaeb7f2979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7494e6506f4dbda3984eeaeb7f2979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff7494e6506f4dbda3984eeaeb7f2979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff7494e6506f4dbda3984eeaeb7f2979.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8bKAz4sqsGJHeVQ6c82p18eWEQ=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.175095+00 2025-12-09 10:15:23.175099+00 13813 LJH1705-9#-橙色 SPMX-20240815309006 \N \N \N 1 \N [{"file_id": "a2c7488d-cc6e-4aba-8609-bb90bcf264dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff66130a1a9645349308e6a921dde776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff66130a1a9645349308e6a921dde776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff66130a1a9645349308e6a921dde776.jpg", "file_size": 66962, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff66130a1a9645349308e6a921dde776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff66130a1a9645349308e6a921dde776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff66130a1a9645349308e6a921dde776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff66130a1a9645349308e6a921dde776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff66130a1a9645349308e6a921dde776.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJqqX--l_u857F-YmZTjYQ4dVVg=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.177045+00 2025-12-09 10:15:23.177049+00 13814 HT5066#蓝色 SPMX-20240815309008 \N \N \N 1 \N [{"file_id": "196a722f-7ddb-481d-8048-9dff7c6ac444", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f928cfbd326b464bbf3ddb7fa44701b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f928cfbd326b464bbf3ddb7fa44701b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f928cfbd326b464bbf3ddb7fa44701b8.jpg", "file_size": 24749, "is_delete": false, "file_type": 1, "original_file_name": "HT5066#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f928cfbd326b464bbf3ddb7fa44701b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f928cfbd326b464bbf3ddb7fa44701b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f928cfbd326b464bbf3ddb7fa44701b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f928cfbd326b464bbf3ddb7fa44701b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f928cfbd326b464bbf3ddb7fa44701b8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7l6k5GuK6g419hgi4eypDj79kU=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.178998+00 2025-12-09 10:15:23.179002+00 13815 FM029#原版色净色 SPMX-20240815309014 \N \N \N 1 \N [{"file_id": "53f8613e-22bd-4f5a-b99a-cbde01248189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f54670a487034670bfdda1771fc05105.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f54670a487034670bfdda1771fc05105.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f54670a487034670bfdda1771fc05105.jpg", "file_size": 7206, "is_delete": false, "file_type": 1, "original_file_name": "FM029#原版色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54670a487034670bfdda1771fc05105.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54670a487034670bfdda1771fc05105.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54670a487034670bfdda1771fc05105.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f54670a487034670bfdda1771fc05105.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f54670a487034670bfdda1771fc05105.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Wjy0D3R75FV7Y22I2hvGsFqcYI=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.181113+00 2025-12-09 10:15:23.181118+00 13816 LJH1705-9#-蓝色 SPMX-20240815309018 \N \N \N 1 \N [{"file_id": "f102f8c5-2b26-4412-a987-4381bc33a64c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "531a45a5bf214f2b8d9b5a1feb559834.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "531a45a5bf214f2b8d9b5a1feb559834.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "531a45a5bf214f2b8d9b5a1feb559834.jpg", "file_size": 67754, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a45a5bf214f2b8d9b5a1feb559834.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a45a5bf214f2b8d9b5a1feb559834.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/531a45a5bf214f2b8d9b5a1feb559834.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/531a45a5bf214f2b8d9b5a1feb559834.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/531a45a5bf214f2b8d9b5a1feb559834.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3NhQgGYOZCxf7JnBDYpXIWoP8E=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.183246+00 2025-12-09 10:15:23.183251+00 13817 0005-48#桔色 SPMX-20240815309022 \N \N \N 1 \N [{"file_id": "f2dabb85-54bc-409e-b5f2-645b55016f4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b57d802464f41a6b0c1d94c88e5c0a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b57d802464f41a6b0c1d94c88e5c0a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b57d802464f41a6b0c1d94c88e5c0a6.jpg", "file_size": 11897, "is_delete": false, "file_type": 1, "original_file_name": "0005-48#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b57d802464f41a6b0c1d94c88e5c0a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b57d802464f41a6b0c1d94c88e5c0a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b57d802464f41a6b0c1d94c88e5c0a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b57d802464f41a6b0c1d94c88e5c0a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b57d802464f41a6b0c1d94c88e5c0a6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BgX0eqsQv9rKKCVusrN6GMNugzg=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.185356+00 2025-12-09 10:15:23.185361+00 13818 LZ1323#捆条布 SPMX-20240815309016 \N \N \N 1 \N [{"file_id": "69347538-63b3-4ac2-b7d7-ec91063867d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36633e29b32745d7abfaabe299efaa29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36633e29b32745d7abfaabe299efaa29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36633e29b32745d7abfaabe299efaa29.jpg", "file_size": 11176, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36633e29b32745d7abfaabe299efaa29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36633e29b32745d7abfaabe299efaa29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36633e29b32745d7abfaabe299efaa29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36633e29b32745d7abfaabe299efaa29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36633e29b32745d7abfaabe299efaa29.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lpn8nKMJ65LlKPfHZ-jU_BWTtIw=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.187697+00 2025-12-09 10:15:23.187702+00 13819 23-2122#A6-领子4XL SPMX-20240815309025 \N \N \N 1 \N [{"file_id": "b17e9a06-c363-4b20-ad82-803817b456a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a5e6e8740149f393a8040eb9b85cc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a5e6e8740149f393a8040eb9b85cc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a5e6e8740149f393a8040eb9b85cc4.jpg", "file_size": 11669, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5e6e8740149f393a8040eb9b85cc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5e6e8740149f393a8040eb9b85cc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a5e6e8740149f393a8040eb9b85cc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a5e6e8740149f393a8040eb9b85cc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a5e6e8740149f393a8040eb9b85cc4.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fJebUKnWxLKCHahfFv9PoJbUAg=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.190049+00 2025-12-09 10:15:23.190056+00 13820 C925FWF#S SPMX-20240815309012 \N \N \N 1 \N [{"file_id": "e3e6f674-6335-477b-92a0-ca46d2e9e124", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6f5bf547a884b3caafb0cec03ab45f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6f5bf547a884b3caafb0cec03ab45f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6f5bf547a884b3caafb0cec03ab45f1.jpg", "file_size": 12195, "is_delete": false, "file_type": 1, "original_file_name": "C925FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f5bf547a884b3caafb0cec03ab45f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f5bf547a884b3caafb0cec03ab45f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f5bf547a884b3caafb0cec03ab45f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6f5bf547a884b3caafb0cec03ab45f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6f5bf547a884b3caafb0cec03ab45f1.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrBElAPJUmOIIVSHDllK8fA0ETo=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.192074+00 2025-12-09 10:15:23.192078+00 13821 JTSS496FW#VS-D3 SPMX-20240815309017 \N \N \N 1 \N [{"file_id": "b9aa0f26-59ce-42c0-afb3-acb896883307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "104ee02321be4b14be665bcadf1c50e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "104ee02321be4b14be665bcadf1c50e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "104ee02321be4b14be665bcadf1c50e3.jpg", "file_size": 23750, "is_delete": false, "file_type": 1, "original_file_name": "JTSS496FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104ee02321be4b14be665bcadf1c50e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104ee02321be4b14be665bcadf1c50e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/104ee02321be4b14be665bcadf1c50e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/104ee02321be4b14be665bcadf1c50e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/104ee02321be4b14be665bcadf1c50e3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBnKTLHb84BRMTFmwucU23VRKF4=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.194264+00 2025-12-09 10:15:23.194269+00 13822 HT5066#黑白 SPMX-20240815309021 \N \N \N 1 \N [{"file_id": "1af533ac-5fe7-47a6-8aea-440243ffa25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9a2ad48c8e240c491f58d7d4d7812ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9a2ad48c8e240c491f58d7d4d7812ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9a2ad48c8e240c491f58d7d4d7812ed.jpg", "file_size": 24074, "is_delete": false, "file_type": 1, "original_file_name": "HT5066#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a2ad48c8e240c491f58d7d4d7812ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a2ad48c8e240c491f58d7d4d7812ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a2ad48c8e240c491f58d7d4d7812ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9a2ad48c8e240c491f58d7d4d7812ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9a2ad48c8e240c491f58d7d4d7812ed.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHMVwxMceL8iXYNu7lNlqR9qGXs=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.196395+00 2025-12-09 10:15:23.196401+00 13823 0005-48#彩兰 SPMX-20240815309013 \N \N \N 1 \N [{"file_id": "5940fdfd-37d4-4c6a-97bf-5563bbe7e3a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15ca18f0de954c218a8a72ce3064223d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15ca18f0de954c218a8a72ce3064223d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15ca18f0de954c218a8a72ce3064223d.jpg", "file_size": 12215, "is_delete": false, "file_type": 1, "original_file_name": "0005-48#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ca18f0de954c218a8a72ce3064223d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ca18f0de954c218a8a72ce3064223d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ca18f0de954c218a8a72ce3064223d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15ca18f0de954c218a8a72ce3064223d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15ca18f0de954c218a8a72ce3064223d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NSXX9blhDQ4-t-Um69LwsOFyHuE=", "createTime": "2024-08-15 14:56:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.198756+00 2025-12-09 10:15:23.198761+00 13824 8350FWF#V5曲线 SPMX-20240815309019 \N \N \N 1 \N [{"file_id": "fc45d698-f199-44b5-b2ed-647fa3fe3fcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c26cda27fb6f41eaad05f543c86637a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c26cda27fb6f41eaad05f543c86637a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c26cda27fb6f41eaad05f543c86637a4.jpg", "file_size": 11157, "is_delete": false, "file_type": 1, "original_file_name": "8350FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26cda27fb6f41eaad05f543c86637a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26cda27fb6f41eaad05f543c86637a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c26cda27fb6f41eaad05f543c86637a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c26cda27fb6f41eaad05f543c86637a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c26cda27fb6f41eaad05f543c86637a4.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPWaZhRr9pJTgSeHPs3aIU12_qg=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.201045+00 2025-12-09 10:15:23.20105+00 13825 23-2122#A6-领子3XL SPMX-20240815309015 \N \N \N 1 \N [{"file_id": "343cd766-6064-459e-94c9-4852945cba28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90fdca5167754c6f915aec09ce119300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90fdca5167754c6f915aec09ce119300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90fdca5167754c6f915aec09ce119300.jpg", "file_size": 11975, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fdca5167754c6f915aec09ce119300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fdca5167754c6f915aec09ce119300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90fdca5167754c6f915aec09ce119300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90fdca5167754c6f915aec09ce119300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90fdca5167754c6f915aec09ce119300.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5QWi3KzkAmSVJzcuKiOppIqMIM=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.20333+00 2025-12-09 10:15:23.203335+00 13826 C925FWF#XL SPMX-20240815309024 \N \N \N 1 \N [{"file_id": "2abaf32c-657b-4a6d-9b09-410942f9abae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41244fa32e2144508a1e7f066e7816de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41244fa32e2144508a1e7f066e7816de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41244fa32e2144508a1e7f066e7816de.jpg", "file_size": 13127, "is_delete": false, "file_type": 1, "original_file_name": "C925FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41244fa32e2144508a1e7f066e7816de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41244fa32e2144508a1e7f066e7816de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41244fa32e2144508a1e7f066e7816de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41244fa32e2144508a1e7f066e7816de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41244fa32e2144508a1e7f066e7816de.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gk2VKCc7ucquDzM1anDxCpaW9-k=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.205426+00 2025-12-09 10:15:23.205432+00 13827 1176#黑色 SPMX-20240815309020 \N \N \N 1 \N [{"file_id": "9236a8e7-d0a3-4165-8705-f6b321325b85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698c0f8fa7b944caa5abbc08a7f3606f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698c0f8fa7b944caa5abbc08a7f3606f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698c0f8fa7b944caa5abbc08a7f3606f.jpg", "file_size": 20520, "is_delete": false, "file_type": 1, "original_file_name": "1176#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c0f8fa7b944caa5abbc08a7f3606f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c0f8fa7b944caa5abbc08a7f3606f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698c0f8fa7b944caa5abbc08a7f3606f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698c0f8fa7b944caa5abbc08a7f3606f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698c0f8fa7b944caa5abbc08a7f3606f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mNrTjwOv3OaXrC6ZNdrP0CZ-7f4=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.218501+00 2025-12-09 10:15:23.218506+00 13833 LJH1705-9#白色 SPMX-20240815309031 \N \N \N 1 \N [{"file_id": "c7da7bf1-46bc-4ebb-baa9-2bdc3e891647", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1925f5c24284f32aa4cac059771606e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1925f5c24284f32aa4cac059771606e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1925f5c24284f32aa4cac059771606e.jpg", "file_size": 69836, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1925f5c24284f32aa4cac059771606e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1925f5c24284f32aa4cac059771606e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1925f5c24284f32aa4cac059771606e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1925f5c24284f32aa4cac059771606e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1925f5c24284f32aa4cac059771606e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFa3tKZrGcTydvhQ6I2SVvVFqxQ=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.207479+00 2025-12-09 10:15:23.207483+00 13828 DL31125#批布玫红 SPMX-20240815309023 \N \N \N 1 \N [{"file_id": "229a7ae0-1989-42cf-89e2-11751718f6db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d0666dc88d94c42a418509219637bf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d0666dc88d94c42a418509219637bf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d0666dc88d94c42a418509219637bf2.jpg", "file_size": 17275, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0666dc88d94c42a418509219637bf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0666dc88d94c42a418509219637bf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0666dc88d94c42a418509219637bf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d0666dc88d94c42a418509219637bf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d0666dc88d94c42a418509219637bf2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvqfgPMEV4zqemXf2_N-Iaxzeag=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.209888+00 2025-12-09 10:15:23.209893+00 13829 HT5067#WJC22 SPMX-20240815309030 \N \N \N 1 \N [{"file_id": "3b9db152-2170-4e86-b9b8-ba589778c176", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eff8da845fb44a5bda0db3a2fdfcfbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eff8da845fb44a5bda0db3a2fdfcfbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eff8da845fb44a5bda0db3a2fdfcfbf.jpg", "file_size": 13772, "is_delete": false, "file_type": 1, "original_file_name": "HT5067#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff8da845fb44a5bda0db3a2fdfcfbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff8da845fb44a5bda0db3a2fdfcfbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff8da845fb44a5bda0db3a2fdfcfbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eff8da845fb44a5bda0db3a2fdfcfbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eff8da845fb44a5bda0db3a2fdfcfbf.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJJ9N3syfqesyr6gG8IGfC_Lshs=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.212208+00 2025-12-09 10:15:23.212212+00 13830 C926#L SPMX-20240815309034 \N \N \N 1 \N [{"file_id": "575db337-29c2-4933-816f-b5f03000fd40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eadce6e5e4c4b8aa21b5226ecb3c398.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eadce6e5e4c4b8aa21b5226ecb3c398.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eadce6e5e4c4b8aa21b5226ecb3c398.jpg", "file_size": 12855, "is_delete": false, "file_type": 1, "original_file_name": "C926#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eadce6e5e4c4b8aa21b5226ecb3c398.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eadce6e5e4c4b8aa21b5226ecb3c398.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eadce6e5e4c4b8aa21b5226ecb3c398.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eadce6e5e4c4b8aa21b5226ecb3c398.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eadce6e5e4c4b8aa21b5226ecb3c398.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjBkF9m0DwxPhdDz9tsXNkVhAL4=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.214299+00 2025-12-09 10:15:23.214305+00 13831 0005-49#大红-LW浅15 SPMX-20240815309032 \N \N \N 1 \N [{"file_id": "a61ed5b5-f618-4f71-9e63-ceb41dab8f1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f07c42b04784cfea978622d35c1696a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f07c42b04784cfea978622d35c1696a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f07c42b04784cfea978622d35c1696a.jpg", "file_size": 13647, "is_delete": false, "file_type": 1, "original_file_name": "0005-49#大红-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f07c42b04784cfea978622d35c1696a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f07c42b04784cfea978622d35c1696a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f07c42b04784cfea978622d35c1696a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f07c42b04784cfea978622d35c1696a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f07c42b04784cfea978622d35c1696a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsa_x8QyrZi_cgRE0SAm-4dWEZM=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.216444+00 2025-12-09 10:15:23.21645+00 13832 JTSS497FW#VS-D3 SPMX-20240815309027 \N \N \N 1 \N [{"file_id": "826c1693-b9a0-4115-9742-4c3a574d069c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d35495416cf434e889aef97d935d10b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d35495416cf434e889aef97d935d10b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d35495416cf434e889aef97d935d10b.jpg", "file_size": 10628, "is_delete": false, "file_type": 1, "original_file_name": "JTSS497FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d35495416cf434e889aef97d935d10b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d35495416cf434e889aef97d935d10b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d35495416cf434e889aef97d935d10b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d35495416cf434e889aef97d935d10b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d35495416cf434e889aef97d935d10b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FxQ2xCAF65n3cAKELR4W5oFzv0Q=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.220557+00 2025-12-09 10:15:23.220563+00 13834 8351FWF#WJC22 SPMX-20240815309028 \N \N \N 1 \N [{"file_id": "656f0f89-af89-4ff4-9b59-f6677b34fc75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54c2a4d57d4d4babb49623badbaf020a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54c2a4d57d4d4babb49623badbaf020a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54c2a4d57d4d4babb49623badbaf020a.jpg", "file_size": 17400, "is_delete": false, "file_type": 1, "original_file_name": "8351FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c2a4d57d4d4babb49623badbaf020a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c2a4d57d4d4babb49623badbaf020a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c2a4d57d4d4babb49623badbaf020a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54c2a4d57d4d4babb49623badbaf020a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54c2a4d57d4d4babb49623badbaf020a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRM_OfKwp_-kEPSGKDikGUvt8_s=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.222945+00 2025-12-09 10:15:23.22295+00 13835 DL31125#枣红批布 SPMX-20240815309033 \N \N \N 1 \N [{"file_id": "b87a9313-345c-4faa-a4cb-4d1537d54ba0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21a81b2a0e514815b893bcde4d732181.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21a81b2a0e514815b893bcde4d732181.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21a81b2a0e514815b893bcde4d732181.jpg", "file_size": 17997, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#枣红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a81b2a0e514815b893bcde4d732181.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a81b2a0e514815b893bcde4d732181.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a81b2a0e514815b893bcde4d732181.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21a81b2a0e514815b893bcde4d732181.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21a81b2a0e514815b893bcde4d732181.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jA-jCxl-SyFFq-NMYb1v2L27Gk=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.225236+00 2025-12-09 10:15:23.225242+00 13836 FM029#大红 SPMX-20240815309026 \N \N \N 1 \N [{"file_id": "e2813bf3-9384-43b2-8c83-ee46f6e56f68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c9658a229274424a3bce9f742f0d4c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c9658a229274424a3bce9f742f0d4c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c9658a229274424a3bce9f742f0d4c5.jpg", "file_size": 15165, "is_delete": false, "file_type": 1, "original_file_name": "FM029#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9658a229274424a3bce9f742f0d4c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9658a229274424a3bce9f742f0d4c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9658a229274424a3bce9f742f0d4c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c9658a229274424a3bce9f742f0d4c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c9658a229274424a3bce9f742f0d4c5.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N2aX2-WPeIwXLlvgnlCCkhTCcVw=", "createTime": "2024-08-15 14:56:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.227516+00 2025-12-09 10:15:23.22752+00 13837 LZ1323#背心款1号色 SPMX-20240815309029 \N \N \N 1 \N [{"file_id": "e4436c25-4ab6-4826-bae2-700218cb5d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31d22e2ddd4a436a999c907a2000d385.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31d22e2ddd4a436a999c907a2000d385.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31d22e2ddd4a436a999c907a2000d385.jpg", "file_size": 16982, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d22e2ddd4a436a999c907a2000d385.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d22e2ddd4a436a999c907a2000d385.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d22e2ddd4a436a999c907a2000d385.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31d22e2ddd4a436a999c907a2000d385.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31d22e2ddd4a436a999c907a2000d385.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jC0a1tUofHNlehn12Dr-xmmSr70=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.22955+00 2025-12-09 10:15:23.229555+00 13838 FM029#大红净色 SPMX-20240815309037 \N \N \N 1 \N [{"file_id": "caed26de-3979-460b-bd50-f0b243235225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38465335d46f4ca5b6d8c03ded966933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38465335d46f4ca5b6d8c03ded966933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38465335d46f4ca5b6d8c03ded966933.jpg", "file_size": 8077, "is_delete": false, "file_type": 1, "original_file_name": "FM029#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38465335d46f4ca5b6d8c03ded966933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38465335d46f4ca5b6d8c03ded966933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38465335d46f4ca5b6d8c03ded966933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38465335d46f4ca5b6d8c03ded966933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38465335d46f4ca5b6d8c03ded966933.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LtyoXJ57v-b84ICXPOi6_u1paWs=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.231636+00 2025-12-09 10:15:23.231642+00 13839 23-2122#A7-3XL SPMX-20240815309036 \N \N \N 1 \N [{"file_id": "ea56b804-d56d-485f-a333-0434eb339a84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "865ada1507e244318c46603bfa22d22c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "865ada1507e244318c46603bfa22d22c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "865ada1507e244318c46603bfa22d22c.jpg", "file_size": 14562, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/865ada1507e244318c46603bfa22d22c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/865ada1507e244318c46603bfa22d22c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/865ada1507e244318c46603bfa22d22c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/865ada1507e244318c46603bfa22d22c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/865ada1507e244318c46603bfa22d22c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBTMJ3cO4Hh6C9DqTOxVrRqS0OY=", "createTime": "2024-08-15 14:56:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.233751+00 2025-12-09 10:15:23.233757+00 13840 HT5068#WJC22 SPMX-20240815309040 \N \N \N 1 \N [{"file_id": "2293acff-b851-45e5-b222-61140e7caa08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1201e3561941402783f1e179198ef4e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1201e3561941402783f1e179198ef4e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1201e3561941402783f1e179198ef4e0.jpg", "file_size": 24276, "is_delete": false, "file_type": 1, "original_file_name": "HT5068#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1201e3561941402783f1e179198ef4e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1201e3561941402783f1e179198ef4e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1201e3561941402783f1e179198ef4e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1201e3561941402783f1e179198ef4e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1201e3561941402783f1e179198ef4e0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gIsLiDE4l-Ixc0oQXWtI3dJ4iIU=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.236002+00 2025-12-09 10:15:23.236007+00 13841 23-2122#A7-4XL SPMX-20240815309044 \N \N \N 1 \N [{"file_id": "93329c2e-ab02-4514-bb71-f9bceca8b18e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c7eedc57e65416bab15f32fdd09da52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c7eedc57e65416bab15f32fdd09da52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c7eedc57e65416bab15f32fdd09da52.jpg", "file_size": 13725, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c7eedc57e65416bab15f32fdd09da52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c7eedc57e65416bab15f32fdd09da52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c7eedc57e65416bab15f32fdd09da52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c7eedc57e65416bab15f32fdd09da52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c7eedc57e65416bab15f32fdd09da52.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJfoR1bMAub9p2QUpU6DQakY1xw=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.238337+00 2025-12-09 10:15:23.238343+00 13842 DL31125#浅粉批布 SPMX-20240815309045 \N \N \N 1 \N [{"file_id": "b8d047d5-94eb-463a-b90e-70f697bbdbac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cc197de0fe8410fad8b7f62c188d2be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cc197de0fe8410fad8b7f62c188d2be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cc197de0fe8410fad8b7f62c188d2be.jpg", "file_size": 16869, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#浅粉批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc197de0fe8410fad8b7f62c188d2be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc197de0fe8410fad8b7f62c188d2be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc197de0fe8410fad8b7f62c188d2be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cc197de0fe8410fad8b7f62c188d2be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cc197de0fe8410fad8b7f62c188d2be.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFwPzVObLIpr0RNmfRNhMT0mvDE=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.240693+00 2025-12-09 10:15:23.240698+00 13843 JTSS498FW#VS-D3 SPMX-20240815309038 \N \N \N 1 \N [{"file_id": "2d66f6f0-cb0e-4bd1-acef-b026d980143d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2565c84eeb06473088ef97188fb86a8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2565c84eeb06473088ef97188fb86a8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2565c84eeb06473088ef97188fb86a8b.jpg", "file_size": 6190, "is_delete": false, "file_type": 1, "original_file_name": "JTSS498FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2565c84eeb06473088ef97188fb86a8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2565c84eeb06473088ef97188fb86a8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2565c84eeb06473088ef97188fb86a8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2565c84eeb06473088ef97188fb86a8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2565c84eeb06473088ef97188fb86a8b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2R4FUTjwLontjNJTrkHDxrjgqtU=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.243397+00 2025-12-09 10:15:23.243402+00 13844 8353FWF#2XL SPMX-20240815309039 \N \N \N 1 \N [{"file_id": "114b62b3-2230-411a-9d68-1b72b9d6c12d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb42669c3d14fcb819831ece9e4fe3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb42669c3d14fcb819831ece9e4fe3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb42669c3d14fcb819831ece9e4fe3d.jpg", "file_size": 17595, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb42669c3d14fcb819831ece9e4fe3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb42669c3d14fcb819831ece9e4fe3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb42669c3d14fcb819831ece9e4fe3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb42669c3d14fcb819831ece9e4fe3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb42669c3d14fcb819831ece9e4fe3d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgFEEtQrohXIrY5SQEZkTRXr5GI=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.245685+00 2025-12-09 10:15:23.24569+00 13845 FM029#姜黄 SPMX-20240815309047 \N \N \N 1 \N [{"file_id": "2f610da9-f602-44fe-a035-bb461777acaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dca5562ccd8b4086af6d4a195961ad58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dca5562ccd8b4086af6d4a195961ad58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dca5562ccd8b4086af6d4a195961ad58.jpg", "file_size": 16545, "is_delete": false, "file_type": 1, "original_file_name": "FM029#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca5562ccd8b4086af6d4a195961ad58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca5562ccd8b4086af6d4a195961ad58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca5562ccd8b4086af6d4a195961ad58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dca5562ccd8b4086af6d4a195961ad58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dca5562ccd8b4086af6d4a195961ad58.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6SzRc7c5gPpA72BhJN9t3UEE44=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.248121+00 2025-12-09 10:15:23.248125+00 13846 C926#M SPMX-20240815309041 \N \N \N 1 \N [{"file_id": "38c65b77-9c40-49d2-a775-0df2eb3a75bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bab568431c14b3791ce4998852cf4b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bab568431c14b3791ce4998852cf4b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bab568431c14b3791ce4998852cf4b0.jpg", "file_size": 13065, "is_delete": false, "file_type": 1, "original_file_name": "C926#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab568431c14b3791ce4998852cf4b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab568431c14b3791ce4998852cf4b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab568431c14b3791ce4998852cf4b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bab568431c14b3791ce4998852cf4b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bab568431c14b3791ce4998852cf4b0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtG7_N4DPEP1lcBsZdh3LLTIzLM=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.250506+00 2025-12-09 10:15:23.250511+00 13847 0005-49#大红净色-LW浅15 SPMX-20240815309043 \N \N \N 1 \N [{"file_id": "a2ad6651-602c-4ac3-93dc-037dc924eca8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e665a7c2d11045c285698006d0476595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e665a7c2d11045c285698006d0476595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e665a7c2d11045c285698006d0476595.jpg", "file_size": 10312, "is_delete": false, "file_type": 1, "original_file_name": "0005-49#大红净色-LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e665a7c2d11045c285698006d0476595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e665a7c2d11045c285698006d0476595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e665a7c2d11045c285698006d0476595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e665a7c2d11045c285698006d0476595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e665a7c2d11045c285698006d0476595.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sqCgRGHG9wqzvUUxWCQc8X6s4u4=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.252736+00 2025-12-09 10:15:23.25274+00 13848 LZ1323#背心款2号色 SPMX-20240815309046 \N \N \N 1 \N [{"file_id": "25fe538e-7270-4b7d-b612-f47a785682b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5351d64c1b440da9d8440cd0fb491b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5351d64c1b440da9d8440cd0fb491b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5351d64c1b440da9d8440cd0fb491b0.jpg", "file_size": 17075, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5351d64c1b440da9d8440cd0fb491b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5351d64c1b440da9d8440cd0fb491b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5351d64c1b440da9d8440cd0fb491b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5351d64c1b440da9d8440cd0fb491b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5351d64c1b440da9d8440cd0fb491b0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5VNMC2tuf98o-fUvJdCJsNZAQ0=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.254752+00 2025-12-09 10:15:23.254757+00 13849 LJH1705-9#红色 SPMX-20240815309042 \N \N \N 1 \N [{"file_id": "c8c34ec4-84e5-4fec-a4bf-1864ad62f184", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "853982e472a74bc29b3b6efa7c4278ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "853982e472a74bc29b3b6efa7c4278ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "853982e472a74bc29b3b6efa7c4278ca.jpg", "file_size": 74725, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853982e472a74bc29b3b6efa7c4278ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853982e472a74bc29b3b6efa7c4278ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853982e472a74bc29b3b6efa7c4278ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/853982e472a74bc29b3b6efa7c4278ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/853982e472a74bc29b3b6efa7c4278ca.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJv0X7TT0nJ6W_z6N7ZUMUWz7r0=", "createTime": "2024-08-15 14:56:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.256741+00 2025-12-09 10:15:23.256746+00 13850 DL31125#玫红批布 SPMX-20240815309055 \N \N \N 1 \N [{"file_id": "4aadd777-ca6b-4872-b3fb-66f634db7e60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6733fb6251b4ba58624e15ab486acfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6733fb6251b4ba58624e15ab486acfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6733fb6251b4ba58624e15ab486acfa.jpg", "file_size": 17803, "is_delete": false, "file_type": 1, "original_file_name": "DL31125#玫红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6733fb6251b4ba58624e15ab486acfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6733fb6251b4ba58624e15ab486acfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6733fb6251b4ba58624e15ab486acfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6733fb6251b4ba58624e15ab486acfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6733fb6251b4ba58624e15ab486acfa.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUyfHvurQaz81OA7YoUihvlfh0A=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.258691+00 2025-12-09 10:15:23.258695+00 13851 LZ1323#背心款3号色 SPMX-20240815309060 \N \N \N 1 \N [{"file_id": "601579bd-3267-47a7-910c-321b89b81298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "721f18fee97a4856bcb9aa42f4b232f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "721f18fee97a4856bcb9aa42f4b232f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "721f18fee97a4856bcb9aa42f4b232f3.jpg", "file_size": 17105, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f18fee97a4856bcb9aa42f4b232f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f18fee97a4856bcb9aa42f4b232f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f18fee97a4856bcb9aa42f4b232f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/721f18fee97a4856bcb9aa42f4b232f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/721f18fee97a4856bcb9aa42f4b232f3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F6HAmu6o2IByQMJ358MSbxPlPBM=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.260638+00 2025-12-09 10:15:23.260642+00 13852 C926#S SPMX-20240815309053 \N \N \N 1 \N [{"file_id": "1c29df8e-ba49-44a4-a46a-9c0de33c69ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "328668b5176b41648a45bbe14c9b99c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "328668b5176b41648a45bbe14c9b99c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "328668b5176b41648a45bbe14c9b99c5.jpg", "file_size": 12631, "is_delete": false, "file_type": 1, "original_file_name": "C926#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/328668b5176b41648a45bbe14c9b99c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/328668b5176b41648a45bbe14c9b99c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/328668b5176b41648a45bbe14c9b99c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/328668b5176b41648a45bbe14c9b99c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/328668b5176b41648a45bbe14c9b99c5.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFTuH6jGclTVV-FEIO6dZhdgn1w=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.262745+00 2025-12-09 10:15:23.26275+00 13853 23-2122#A7-领子3XL SPMX-20240815309056 \N \N \N 1 \N [{"file_id": "2ad76212-96c0-4ace-bda1-adc9de8bf139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88b8d771b4ff4c899b90db640e5a76bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88b8d771b4ff4c899b90db640e5a76bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88b8d771b4ff4c899b90db640e5a76bd.jpg", "file_size": 14232, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88b8d771b4ff4c899b90db640e5a76bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88b8d771b4ff4c899b90db640e5a76bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88b8d771b4ff4c899b90db640e5a76bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88b8d771b4ff4c899b90db640e5a76bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88b8d771b4ff4c899b90db640e5a76bd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wsLsRizPSVwqbSKJ39ji9yHu_8w=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.264892+00 2025-12-09 10:15:23.264898+00 13854 JTSS500FW#VS-D3 SPMX-20240815309058 \N \N \N 1 \N [{"file_id": "c313e23b-df20-4b99-aab8-9b00e7a7173d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e9d65567ab445ae9bfa3e3ac4c76d65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e9d65567ab445ae9bfa3e3ac4c76d65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e9d65567ab445ae9bfa3e3ac4c76d65.jpg", "file_size": 10096, "is_delete": false, "file_type": 1, "original_file_name": "JTSS500FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9d65567ab445ae9bfa3e3ac4c76d65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9d65567ab445ae9bfa3e3ac4c76d65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9d65567ab445ae9bfa3e3ac4c76d65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e9d65567ab445ae9bfa3e3ac4c76d65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e9d65567ab445ae9bfa3e3ac4c76d65.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UP_2xiAH1NlnuTbLdBF_CyHdBbs=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.267295+00 2025-12-09 10:15:23.2673+00 13855 FM029#姜黄净色 SPMX-20240815309057 \N \N \N 1 \N [{"file_id": "5832b69d-f651-49ed-9c3c-69d46eefbac3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d98b06d95274a0a889993e9ad755a06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d98b06d95274a0a889993e9ad755a06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d98b06d95274a0a889993e9ad755a06.jpg", "file_size": 7802, "is_delete": false, "file_type": 1, "original_file_name": "FM029#姜黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d98b06d95274a0a889993e9ad755a06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d98b06d95274a0a889993e9ad755a06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d98b06d95274a0a889993e9ad755a06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d98b06d95274a0a889993e9ad755a06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d98b06d95274a0a889993e9ad755a06.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfCVhh2OrgNeM2kaqjsbEsPZcPI=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.269606+00 2025-12-09 10:15:23.269612+00 13856 JTSS499FW#VS-D3 SPMX-20240815309049 \N \N \N 1 \N [{"file_id": "f61401dd-7ceb-478f-b0c1-6e10bd14ecf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fd4b87fceb641bc9a57e4ec972665b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fd4b87fceb641bc9a57e4ec972665b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fd4b87fceb641bc9a57e4ec972665b3.jpg", "file_size": 10111, "is_delete": false, "file_type": 1, "original_file_name": "JTSS499FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4b87fceb641bc9a57e4ec972665b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4b87fceb641bc9a57e4ec972665b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4b87fceb641bc9a57e4ec972665b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fd4b87fceb641bc9a57e4ec972665b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fd4b87fceb641bc9a57e4ec972665b3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4IvQRjoU9wA8SQuiLEAR_vDRzv4=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.271695+00 2025-12-09 10:15:23.2717+00 13857 8353FWF#2XL番禺调色 SPMX-20240815309048 \N \N \N 1 \N [{"file_id": "aa1de6b0-25ef-4e0f-9c9c-a8a682e62bb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5bacb48cb394d719c4afaed4ad9ae1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5bacb48cb394d719c4afaed4ad9ae1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5bacb48cb394d719c4afaed4ad9ae1f.jpg", "file_size": 17405, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#2XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bacb48cb394d719c4afaed4ad9ae1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bacb48cb394d719c4afaed4ad9ae1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5bacb48cb394d719c4afaed4ad9ae1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5bacb48cb394d719c4afaed4ad9ae1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5bacb48cb394d719c4afaed4ad9ae1f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pH6ZU7wjAzo4mSZT9bUhnmg2Fug=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.27382+00 2025-12-09 10:15:23.273825+00 13858 117A#橙色 SPMX-20240815309050 \N \N \N 1 \N [{"file_id": "0a4d4129-4567-447d-bcb0-d968e5cada8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd57c3623684f41a2560c97f2cabaa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd57c3623684f41a2560c97f2cabaa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd57c3623684f41a2560c97f2cabaa2.jpg", "file_size": 66629, "is_delete": false, "file_type": 1, "original_file_name": "117A#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57c3623684f41a2560c97f2cabaa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57c3623684f41a2560c97f2cabaa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57c3623684f41a2560c97f2cabaa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd57c3623684f41a2560c97f2cabaa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd57c3623684f41a2560c97f2cabaa2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-nBCPJcEygPoWvwCQ2V3KoR1ZA=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.27593+00 2025-12-09 10:15:23.275935+00 13859 0005-4FWF#V5曲线 SPMX-20240815309052 \N \N \N 1 \N [{"file_id": "bec51c04-7d09-4ec8-95e0-0a695786e7d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0930d3b1243447c4b165d842cfe6db2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0930d3b1243447c4b165d842cfe6db2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0930d3b1243447c4b165d842cfe6db2f.jpg", "file_size": 7700, "is_delete": false, "file_type": 1, "original_file_name": "0005-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0930d3b1243447c4b165d842cfe6db2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0930d3b1243447c4b165d842cfe6db2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0930d3b1243447c4b165d842cfe6db2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0930d3b1243447c4b165d842cfe6db2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0930d3b1243447c4b165d842cfe6db2f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfV5ozy6g3YfxlANpBKBiw3TytQ=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.278046+00 2025-12-09 10:15:23.278051+00 13860 117A#紫色 SPMX-20240815309061 \N \N \N 1 \N [{"file_id": "1c29349d-a749-424b-87e0-2007021dea91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "516e692e37eb4f948e5fe117aea4f7d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "516e692e37eb4f948e5fe117aea4f7d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "516e692e37eb4f948e5fe117aea4f7d5.jpg", "file_size": 70400, "is_delete": false, "file_type": 1, "original_file_name": "117A#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516e692e37eb4f948e5fe117aea4f7d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516e692e37eb4f948e5fe117aea4f7d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/516e692e37eb4f948e5fe117aea4f7d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/516e692e37eb4f948e5fe117aea4f7d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/516e692e37eb4f948e5fe117aea4f7d5.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNYG8i7-kkR_e3B-BbBVTBCq-3E=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.280388+00 2025-12-09 10:15:23.280394+00 13861 LJH1705-9#绿色 SPMX-20240815309054 \N \N \N 1 \N [{"file_id": "a3936092-ea73-4b01-a0a5-eb3e61a9041d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13633675d2214f84a1a4bb8095626dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13633675d2214f84a1a4bb8095626dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13633675d2214f84a1a4bb8095626dd9.jpg", "file_size": 67379, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13633675d2214f84a1a4bb8095626dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13633675d2214f84a1a4bb8095626dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13633675d2214f84a1a4bb8095626dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13633675d2214f84a1a4bb8095626dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13633675d2214f84a1a4bb8095626dd9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxqeALFmcdeT9Q8Q-_0eQsMLeOs=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.282724+00 2025-12-09 10:15:23.282729+00 13862 HT5069#绿底 SPMX-20240815309062 \N \N \N 1 \N [{"file_id": "0c956629-fef9-48a6-9e6a-3f4e9b01ce1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbebda5b558246f18964221501099481.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbebda5b558246f18964221501099481.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbebda5b558246f18964221501099481.jpg", "file_size": 16254, "is_delete": false, "file_type": 1, "original_file_name": "HT5069#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbebda5b558246f18964221501099481.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbebda5b558246f18964221501099481.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbebda5b558246f18964221501099481.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbebda5b558246f18964221501099481.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbebda5b558246f18964221501099481.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-3waRVQGW_1ziV1DXvgUlBSYye0=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.285063+00 2025-12-09 10:15:23.285069+00 13863 HT5069#深蓝底 SPMX-20240815309051 \N \N \N 1 \N [{"file_id": "69faaa6b-2233-453b-845f-ddd6d73d9436", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79487d4c6e374d3182117307bbec47ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79487d4c6e374d3182117307bbec47ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79487d4c6e374d3182117307bbec47ce.jpg", "file_size": 17647, "is_delete": false, "file_type": 1, "original_file_name": "HT5069#深蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79487d4c6e374d3182117307bbec47ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79487d4c6e374d3182117307bbec47ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79487d4c6e374d3182117307bbec47ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79487d4c6e374d3182117307bbec47ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79487d4c6e374d3182117307bbec47ce.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hva8eEpZotAMrn5iLvdA0mlgYZ0=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.287428+00 2025-12-09 10:15:23.287433+00 13864 8353FWF#3XL SPMX-20240815309059 \N \N \N 1 \N [{"file_id": "ec5a02fa-4ea2-4aaa-a6dd-e2a6d32de432", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c24df4aa5d94aebb88b41deed99ffd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c24df4aa5d94aebb88b41deed99ffd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c24df4aa5d94aebb88b41deed99ffd2.jpg", "file_size": 17574, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c24df4aa5d94aebb88b41deed99ffd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c24df4aa5d94aebb88b41deed99ffd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c24df4aa5d94aebb88b41deed99ffd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c24df4aa5d94aebb88b41deed99ffd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c24df4aa5d94aebb88b41deed99ffd2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gNg39NQgOKJ-uRseEe2cL1_YNIw=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.299101+00 2025-12-09 10:15:23.299106+00 13869 0005-50#WJC22 SPMX-20240815309073 \N \N \N 1 \N [{"file_id": "0a8ef671-ea36-4991-a59a-0f6479b7db86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5f5e574ca684ceab86a5dffef15d19e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5f5e574ca684ceab86a5dffef15d19e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5f5e574ca684ceab86a5dffef15d19e.jpg", "file_size": 14468, "is_delete": false, "file_type": 1, "original_file_name": "0005-50#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f5e574ca684ceab86a5dffef15d19e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f5e574ca684ceab86a5dffef15d19e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f5e574ca684ceab86a5dffef15d19e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5f5e574ca684ceab86a5dffef15d19e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5f5e574ca684ceab86a5dffef15d19e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPrVPIRPvuNhk2XYLx4cVmR8ciM=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.289765+00 2025-12-09 10:15:23.289771+00 13865 DL31125-3#前幅彩兰色 SPMX-20240815309066 \N \N \N 1 \N [{"file_id": "fc8c9871-b506-484b-8da6-8c6a8f905708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d11d700ce8747faaf5647b61438b514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d11d700ce8747faaf5647b61438b514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d11d700ce8747faaf5647b61438b514.jpg", "file_size": 16150, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d11d700ce8747faaf5647b61438b514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d11d700ce8747faaf5647b61438b514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d11d700ce8747faaf5647b61438b514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d11d700ce8747faaf5647b61438b514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d11d700ce8747faaf5647b61438b514.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LcbDFuKt8jhQKqfhJfUTS5X-xCM=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.292167+00 2025-12-09 10:15:23.292177+00 13866 8353FWF#3XL番禺调色 SPMX-20240815309068 \N \N \N 1 \N [{"file_id": "adc2461c-384c-4b2f-bcb1-ef95c9adc72f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b787740eca574a0c82406cdc548f00e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b787740eca574a0c82406cdc548f00e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b787740eca574a0c82406cdc548f00e3.jpg", "file_size": 17620, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#3XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787740eca574a0c82406cdc548f00e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787740eca574a0c82406cdc548f00e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787740eca574a0c82406cdc548f00e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b787740eca574a0c82406cdc548f00e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b787740eca574a0c82406cdc548f00e3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znPGKSK5QZcu_viQ0A6YW59HOMU=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.294599+00 2025-12-09 10:15:23.294605+00 13867 JTSS501FW#VS-D3 SPMX-20240815309071 \N \N \N 1 \N [{"file_id": "8ce47578-2e90-4285-8601-14dda258a8c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a773573660ee4acba78aa9c953fe642b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a773573660ee4acba78aa9c953fe642b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a773573660ee4acba78aa9c953fe642b.jpg", "file_size": 13989, "is_delete": false, "file_type": 1, "original_file_name": "JTSS501FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a773573660ee4acba78aa9c953fe642b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a773573660ee4acba78aa9c953fe642b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a773573660ee4acba78aa9c953fe642b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a773573660ee4acba78aa9c953fe642b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a773573660ee4acba78aa9c953fe642b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMJLo2KnCDFV5gipZk69f0pnm0c=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.29698+00 2025-12-09 10:15:23.296985+00 13868 FM029#浅紫 SPMX-20240815309069 \N \N \N 1 \N [{"file_id": "a63ce1ce-6bbc-47a7-a455-ed1ce2b241bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb67126eb5904db38e4b86ddd1e84364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb67126eb5904db38e4b86ddd1e84364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb67126eb5904db38e4b86ddd1e84364.jpg", "file_size": 15989, "is_delete": false, "file_type": 1, "original_file_name": "FM029#浅紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb67126eb5904db38e4b86ddd1e84364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb67126eb5904db38e4b86ddd1e84364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb67126eb5904db38e4b86ddd1e84364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb67126eb5904db38e4b86ddd1e84364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb67126eb5904db38e4b86ddd1e84364.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NQJ4TkvIrsndh_KPzCuUOouRz4=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.301268+00 2025-12-09 10:15:23.301274+00 13870 C928#A1 SPMX-20240815309075 \N \N \N 1 \N [{"file_id": "7f0dee90-a953-46f3-adcb-8a71756c6851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc3886d947d42828c2a8d47800d39a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc3886d947d42828c2a8d47800d39a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc3886d947d42828c2a8d47800d39a9.jpg", "file_size": 9888, "is_delete": false, "file_type": 1, "original_file_name": "C928#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc3886d947d42828c2a8d47800d39a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc3886d947d42828c2a8d47800d39a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc3886d947d42828c2a8d47800d39a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc3886d947d42828c2a8d47800d39a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc3886d947d42828c2a8d47800d39a9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwJmJ8W61ofma-e_RySPF8zQMEE=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.303684+00 2025-12-09 10:15:23.303689+00 13871 0005-5#WJC22 SPMX-20240815309063 \N \N \N 1 \N [{"file_id": "9c50e173-434d-448a-9b69-cd81ad773ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ed1a00e32ae47a48a5cc1165b1d1db4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ed1a00e32ae47a48a5cc1165b1d1db4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ed1a00e32ae47a48a5cc1165b1d1db4.jpg", "file_size": 9044, "is_delete": false, "file_type": 1, "original_file_name": "0005-5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed1a00e32ae47a48a5cc1165b1d1db4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed1a00e32ae47a48a5cc1165b1d1db4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ed1a00e32ae47a48a5cc1165b1d1db4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ed1a00e32ae47a48a5cc1165b1d1db4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ed1a00e32ae47a48a5cc1165b1d1db4.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ra1VkAqSTPsK_VgIf9SLBlq214=", "createTime": "2024-08-15 14:56:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.30605+00 2025-12-09 10:15:23.306056+00 13872 117A#绿色 SPMX-20240815309074 \N \N \N 1 \N [{"file_id": "f6647881-f482-4384-b627-550cce798f2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e722a664553246d0b071dbd6c5c3cbb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e722a664553246d0b071dbd6c5c3cbb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e722a664553246d0b071dbd6c5c3cbb3.jpg", "file_size": 64330, "is_delete": false, "file_type": 1, "original_file_name": "117A#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e722a664553246d0b071dbd6c5c3cbb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e722a664553246d0b071dbd6c5c3cbb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e722a664553246d0b071dbd6c5c3cbb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e722a664553246d0b071dbd6c5c3cbb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e722a664553246d0b071dbd6c5c3cbb3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hX6IQJYQKBV7Aj2OVpMsvF04tJ0=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.308154+00 2025-12-09 10:15:23.308159+00 13873 C926#XL SPMX-20240815309064 \N \N \N 1 \N [{"file_id": "df732c87-22ef-4dcc-a1a7-c8370c0fe836", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c1e1e5b56744f9b9150f77a37588a86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c1e1e5b56744f9b9150f77a37588a86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c1e1e5b56744f9b9150f77a37588a86.jpg", "file_size": 13503, "is_delete": false, "file_type": 1, "original_file_name": "C926#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1e1e5b56744f9b9150f77a37588a86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1e1e5b56744f9b9150f77a37588a86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c1e1e5b56744f9b9150f77a37588a86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c1e1e5b56744f9b9150f77a37588a86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c1e1e5b56744f9b9150f77a37588a86.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6pCG1Hl8lL4F_7N78wmbnulYGQ=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.310259+00 2025-12-09 10:15:23.310264+00 13874 LZ1323#背心款4号色 SPMX-20240815309070 \N \N \N 1 \N [{"file_id": "5517d8b8-3ac3-4f9c-bc39-7da53dcc4cad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2272d279f9d0441381af559fa39a5a1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2272d279f9d0441381af559fa39a5a1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2272d279f9d0441381af559fa39a5a1b.jpg", "file_size": 17089, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2272d279f9d0441381af559fa39a5a1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2272d279f9d0441381af559fa39a5a1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2272d279f9d0441381af559fa39a5a1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2272d279f9d0441381af559fa39a5a1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2272d279f9d0441381af559fa39a5a1b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIAjHTE7q3AJ1zuSO7nijCBzaq4=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.312687+00 2025-12-09 10:15:23.312693+00 13875 HT5069#蓝底 SPMX-20240815309072 \N \N \N 1 \N [{"file_id": "d74d1562-0e7e-4f43-abe5-bbf6a24b167d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1bd29e2869148a9aa8178b45fca220f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1bd29e2869148a9aa8178b45fca220f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1bd29e2869148a9aa8178b45fca220f.jpg", "file_size": 16803, "is_delete": false, "file_type": 1, "original_file_name": "HT5069#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1bd29e2869148a9aa8178b45fca220f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1bd29e2869148a9aa8178b45fca220f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1bd29e2869148a9aa8178b45fca220f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1bd29e2869148a9aa8178b45fca220f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1bd29e2869148a9aa8178b45fca220f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_z5Qx7W6nRlG9MRo5AIpOqrIWHs=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.315048+00 2025-12-09 10:15:23.315053+00 13876 LJH1705-9#黑色 SPMX-20240815309065 \N \N \N 1 \N [{"file_id": "1670eeab-bc92-40b1-89ed-42b16cb30679", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c38099f05fd84c87840680c3f9865eb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c38099f05fd84c87840680c3f9865eb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c38099f05fd84c87840680c3f9865eb3.jpg", "file_size": 66430, "is_delete": false, "file_type": 1, "original_file_name": "LJH1705-9#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c38099f05fd84c87840680c3f9865eb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c38099f05fd84c87840680c3f9865eb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c38099f05fd84c87840680c3f9865eb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c38099f05fd84c87840680c3f9865eb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c38099f05fd84c87840680c3f9865eb3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tG97Yxs0Wdlj6gojmCFCzqsMuYw=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.317137+00 2025-12-09 10:15:23.317143+00 13877 23-2122#A7-领子4XL SPMX-20240815309067 \N \N \N 1 \N [{"file_id": "53d0d825-0462-48f6-a259-8f7792987e1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0699b899d04f49639f2071fa8ad73e84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0699b899d04f49639f2071fa8ad73e84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0699b899d04f49639f2071fa8ad73e84.jpg", "file_size": 14477, "is_delete": false, "file_type": 1, "original_file_name": "23-2122#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0699b899d04f49639f2071fa8ad73e84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0699b899d04f49639f2071fa8ad73e84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0699b899d04f49639f2071fa8ad73e84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0699b899d04f49639f2071fa8ad73e84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0699b899d04f49639f2071fa8ad73e84.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A1UxQonzwnOp4byWjedvSfAeMb0=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.319207+00 2025-12-09 10:15:23.319212+00 13878 HT5069#酒红底 SPMX-20240815309082 \N \N \N 1 \N [{"file_id": "89a2a28e-1942-45d8-8b81-fbc4a40864c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2672165665b4ce28e0a7638561a6675.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2672165665b4ce28e0a7638561a6675.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2672165665b4ce28e0a7638561a6675.jpg", "file_size": 18633, "is_delete": false, "file_type": 1, "original_file_name": "HT5069#酒红底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2672165665b4ce28e0a7638561a6675.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2672165665b4ce28e0a7638561a6675.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2672165665b4ce28e0a7638561a6675.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2672165665b4ce28e0a7638561a6675.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2672165665b4ce28e0a7638561a6675.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIgZqxQlAphsP08lQFXAp0NKFU4=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.321288+00 2025-12-09 10:15:23.321293+00 13879 23-2123#A1-4XL SPMX-20240815309089 \N \N \N 1 \N [{"file_id": "6ec3cb2e-19fb-4877-a033-bb8c8f43b58a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebb2e6fc15ea46228e396fe7b3b88330.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebb2e6fc15ea46228e396fe7b3b88330.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebb2e6fc15ea46228e396fe7b3b88330.jpg", "file_size": 11749, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb2e6fc15ea46228e396fe7b3b88330.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb2e6fc15ea46228e396fe7b3b88330.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb2e6fc15ea46228e396fe7b3b88330.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebb2e6fc15ea46228e396fe7b3b88330.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebb2e6fc15ea46228e396fe7b3b88330.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gcaak-Vy3KXIdPnhPiQrWk7xVis=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.323438+00 2025-12-09 10:15:23.323443+00 13880 0005-51#彩蓝 SPMX-20240815309085 \N \N \N 1 \N [{"file_id": "61f780a6-6dce-435b-b1a6-06a316eba2fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9912c5d3e0748fc97257ce5c9e5bc89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9912c5d3e0748fc97257ce5c9e5bc89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9912c5d3e0748fc97257ce5c9e5bc89.jpg", "file_size": 15586, "is_delete": false, "file_type": 1, "original_file_name": "0005-51#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9912c5d3e0748fc97257ce5c9e5bc89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9912c5d3e0748fc97257ce5c9e5bc89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9912c5d3e0748fc97257ce5c9e5bc89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9912c5d3e0748fc97257ce5c9e5bc89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9912c5d3e0748fc97257ce5c9e5bc89.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uhLPs94J3Lb1iCgxvs2Jc8rTnI=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.326063+00 2025-12-09 10:15:23.326069+00 13881 117A#蓝色 SPMX-20240815309086 \N \N \N 1 \N [{"file_id": "59206ff6-3aa3-4885-bec1-77f4079853b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2cc8b6b242b487bb9742810fc00e9c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2cc8b6b242b487bb9742810fc00e9c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2cc8b6b242b487bb9742810fc00e9c2.jpg", "file_size": 68959, "is_delete": false, "file_type": 1, "original_file_name": "117A#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2cc8b6b242b487bb9742810fc00e9c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2cc8b6b242b487bb9742810fc00e9c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2cc8b6b242b487bb9742810fc00e9c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2cc8b6b242b487bb9742810fc00e9c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2cc8b6b242b487bb9742810fc00e9c2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2FRSHo_x_wP8FJIR9zFZ5x9Xmk=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.328472+00 2025-12-09 10:15:23.328477+00 13882 DL31125-3#前幅枣红 SPMX-20240815309078 \N \N \N 1 \N [{"file_id": "0630fb6b-f46c-4a15-a362-56a98035ce00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1da7026708a472199aa3dfc855cd5cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1da7026708a472199aa3dfc855cd5cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1da7026708a472199aa3dfc855cd5cf.jpg", "file_size": 15686, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1da7026708a472199aa3dfc855cd5cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1da7026708a472199aa3dfc855cd5cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1da7026708a472199aa3dfc855cd5cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1da7026708a472199aa3dfc855cd5cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1da7026708a472199aa3dfc855cd5cf.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0cfroh94KWzAkEZeBaI7Zv6iUs=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.331049+00 2025-12-09 10:15:23.331055+00 13883 JTSS502FW#VS-D3 SPMX-20240815309081 \N \N \N 1 \N [{"file_id": "81d605a0-cc01-462c-b08c-462904cbd143", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe43df675614e91bbd7d1c91527fc1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe43df675614e91bbd7d1c91527fc1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe43df675614e91bbd7d1c91527fc1e.jpg", "file_size": 7238, "is_delete": false, "file_type": 1, "original_file_name": "JTSS502FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe43df675614e91bbd7d1c91527fc1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe43df675614e91bbd7d1c91527fc1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe43df675614e91bbd7d1c91527fc1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe43df675614e91bbd7d1c91527fc1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe43df675614e91bbd7d1c91527fc1e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOTqX99kTvZ-BeorzUin6lV-ifU=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.333429+00 2025-12-09 10:15:23.333434+00 13884 LJH1717#A1色 SPMX-20240815309076 \N \N \N 1 \N [{"file_id": "e91d15d8-2ccd-4f68-a2a4-743c4a6e558e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "962a920e9c254eabb20e74469d753b06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "962a920e9c254eabb20e74469d753b06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "962a920e9c254eabb20e74469d753b06.jpg", "file_size": 49555, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962a920e9c254eabb20e74469d753b06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962a920e9c254eabb20e74469d753b06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962a920e9c254eabb20e74469d753b06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/962a920e9c254eabb20e74469d753b06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/962a920e9c254eabb20e74469d753b06.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEw4Tpu59fh0ise6u2lfkWIxIlE=", "createTime": "2024-08-15 14:56:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.336046+00 2025-12-09 10:15:23.336051+00 13885 C928#A2 SPMX-20240815309084 \N \N \N 1 \N [{"file_id": "6c28b859-02be-4464-9c73-185a2abd50e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "787ec86732604f3a8fc42bd3d40e79b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "787ec86732604f3a8fc42bd3d40e79b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "787ec86732604f3a8fc42bd3d40e79b2.jpg", "file_size": 10295, "is_delete": false, "file_type": 1, "original_file_name": "C928#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787ec86732604f3a8fc42bd3d40e79b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787ec86732604f3a8fc42bd3d40e79b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/787ec86732604f3a8fc42bd3d40e79b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/787ec86732604f3a8fc42bd3d40e79b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/787ec86732604f3a8fc42bd3d40e79b2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgYZ09FTqCDoVcPGyJ3t4Kgsrg4=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.338678+00 2025-12-09 10:15:23.338684+00 13886 8353FWF#4XL SPMX-20240815309080 \N \N \N 1 \N [{"file_id": "1fec064b-a684-49f3-8c0f-cddb191a8255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c97de40f512542a9979c4794475469b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c97de40f512542a9979c4794475469b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c97de40f512542a9979c4794475469b6.jpg", "file_size": 17640, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97de40f512542a9979c4794475469b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97de40f512542a9979c4794475469b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97de40f512542a9979c4794475469b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c97de40f512542a9979c4794475469b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c97de40f512542a9979c4794475469b6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ITf7gafEIvzk4gkEgZmpayk4fzo=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.341238+00 2025-12-09 10:15:23.341243+00 13887 23-2123#A1-3XL SPMX-20240815309077 \N \N \N 1 \N [{"file_id": "a66af90d-4f7d-4f77-b885-082a58667d11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9af251024404bb2b808fc933de924de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9af251024404bb2b808fc933de924de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9af251024404bb2b808fc933de924de.jpg", "file_size": 12580, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9af251024404bb2b808fc933de924de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9af251024404bb2b808fc933de924de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9af251024404bb2b808fc933de924de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9af251024404bb2b808fc933de924de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9af251024404bb2b808fc933de924de.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IV9ZckcBJBLnaUU28_cxOtN7GM=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.343602+00 2025-12-09 10:15:23.343607+00 13888 FM029#粉色 SPMX-20240815309090 \N \N \N 1 \N [{"file_id": "794122a6-e70e-49db-8737-ea8ffe005a52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3f83233582c413b8b183384bd1347ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3f83233582c413b8b183384bd1347ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3f83233582c413b8b183384bd1347ea.jpg", "file_size": 16439, "is_delete": false, "file_type": 1, "original_file_name": "FM029#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f83233582c413b8b183384bd1347ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f83233582c413b8b183384bd1347ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f83233582c413b8b183384bd1347ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3f83233582c413b8b183384bd1347ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3f83233582c413b8b183384bd1347ea.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3-vQvJMqI-sZwUH60nr-lC-MyQ=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.345919+00 2025-12-09 10:15:23.345924+00 13889 DL31125-3#前幅浅粉 SPMX-20240815309087 \N \N \N 1 \N [{"file_id": "ab3bb7ff-e14e-4dc2-a00c-ae1e46ed45b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff81ceab05bb4873bd58afaaa71db75e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff81ceab05bb4873bd58afaaa71db75e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff81ceab05bb4873bd58afaaa71db75e.jpg", "file_size": 14193, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81ceab05bb4873bd58afaaa71db75e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81ceab05bb4873bd58afaaa71db75e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81ceab05bb4873bd58afaaa71db75e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff81ceab05bb4873bd58afaaa71db75e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff81ceab05bb4873bd58afaaa71db75e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVrxv8cBbOuMB0U07A11sjI1plQ=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.348198+00 2025-12-09 10:15:23.348203+00 13890 LJH1717#A3色 SPMX-20240815309088 \N \N \N 1 \N [{"file_id": "47793c42-7d54-4111-96b7-c69ceca3e6e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0114445924d74cb1a335a6f963c506dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0114445924d74cb1a335a6f963c506dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0114445924d74cb1a335a6f963c506dd.jpg", "file_size": 50744, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0114445924d74cb1a335a6f963c506dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0114445924d74cb1a335a6f963c506dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0114445924d74cb1a335a6f963c506dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0114445924d74cb1a335a6f963c506dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0114445924d74cb1a335a6f963c506dd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HArc5UGuRA5sJW_6Ly3hXgMsBSg=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.350289+00 2025-12-09 10:15:23.350295+00 13891 FM029#浅紫净色 SPMX-20240815309079 \N \N \N 1 \N [{"file_id": "9ec8c841-8b90-41fd-9497-a0d486027d15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1255d56ff704c81afdd384022cddde7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1255d56ff704c81afdd384022cddde7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1255d56ff704c81afdd384022cddde7.jpg", "file_size": 6917, "is_delete": false, "file_type": 1, "original_file_name": "FM029#浅紫净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1255d56ff704c81afdd384022cddde7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1255d56ff704c81afdd384022cddde7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1255d56ff704c81afdd384022cddde7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1255d56ff704c81afdd384022cddde7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1255d56ff704c81afdd384022cddde7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZxbdgI_6c3d3dH6GfEKzbLN0Q0=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.352361+00 2025-12-09 10:15:23.352366+00 13892 LZ1323#背心款5号色 SPMX-20240815309083 \N \N \N 1 \N [{"file_id": "74e49c25-f404-4e89-9b91-b75a2144650f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "503285b14a6f4aa4b5a2cf9ff3ec918b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "503285b14a6f4aa4b5a2cf9ff3ec918b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "503285b14a6f4aa4b5a2cf9ff3ec918b.jpg", "file_size": 16848, "is_delete": false, "file_type": 1, "original_file_name": "LZ1323#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503285b14a6f4aa4b5a2cf9ff3ec918b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503285b14a6f4aa4b5a2cf9ff3ec918b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503285b14a6f4aa4b5a2cf9ff3ec918b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/503285b14a6f4aa4b5a2cf9ff3ec918b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/503285b14a6f4aa4b5a2cf9ff3ec918b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wimrPh0Q9atGhZxIPjLWjqUANxs=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.354456+00 2025-12-09 10:15:23.354461+00 13893 DL31125-3#前幅玫红 SPMX-20240815309100 \N \N \N 1 \N [{"file_id": "e13dcb3a-cdab-4e87-993e-9f9cf42e4d41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "827a5eacbe204e90bd07d29568140035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "827a5eacbe204e90bd07d29568140035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "827a5eacbe204e90bd07d29568140035.jpg", "file_size": 15143, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827a5eacbe204e90bd07d29568140035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827a5eacbe204e90bd07d29568140035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/827a5eacbe204e90bd07d29568140035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/827a5eacbe204e90bd07d29568140035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/827a5eacbe204e90bd07d29568140035.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-j7g_96pU7kYkFFcLeyhDlVSGbE=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.356579+00 2025-12-09 10:15:23.356584+00 13894 HT5069#黄底 SPMX-20240815309092 \N \N \N 1 \N [{"file_id": "b712ddb8-32be-4ccf-8642-eda6838a1c52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "230a3782ce4846aabfca836c3bbdaffe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "230a3782ce4846aabfca836c3bbdaffe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "230a3782ce4846aabfca836c3bbdaffe.jpg", "file_size": 15633, "is_delete": false, "file_type": 1, "original_file_name": "HT5069#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230a3782ce4846aabfca836c3bbdaffe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230a3782ce4846aabfca836c3bbdaffe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230a3782ce4846aabfca836c3bbdaffe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/230a3782ce4846aabfca836c3bbdaffe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/230a3782ce4846aabfca836c3bbdaffe.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6i4Sz1tR06WcezOf_L5lgPBcpk=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.358957+00 2025-12-09 10:15:23.358963+00 13895 0005-51#深绿 SPMX-20240815309096 \N \N \N 1 \N [{"file_id": "4a0ef788-3d9f-46e2-ab23-c9b8572e28bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "291dbd51f5b34c61b623b6c629eb7b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "291dbd51f5b34c61b623b6c629eb7b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "291dbd51f5b34c61b623b6c629eb7b43.jpg", "file_size": 14526, "is_delete": false, "file_type": 1, "original_file_name": "0005-51#深绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291dbd51f5b34c61b623b6c629eb7b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291dbd51f5b34c61b623b6c629eb7b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291dbd51f5b34c61b623b6c629eb7b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/291dbd51f5b34c61b623b6c629eb7b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/291dbd51f5b34c61b623b6c629eb7b43.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-hZKimojQoWD8ydkjQPd1rMZ5MY=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.361283+00 2025-12-09 10:15:23.361288+00 13896 JTSS503FW#绿VS-D3 SPMX-20240815309104 \N \N \N 1 \N [{"file_id": "2f062a2d-063a-487b-bc64-8b3c7d3cbc00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07ae69a7116c40c9bb0368605b2bd4aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07ae69a7116c40c9bb0368605b2bd4aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07ae69a7116c40c9bb0368605b2bd4aa.jpg", "file_size": 10898, "is_delete": false, "file_type": 1, "original_file_name": "JTSS503FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ae69a7116c40c9bb0368605b2bd4aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ae69a7116c40c9bb0368605b2bd4aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ae69a7116c40c9bb0368605b2bd4aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07ae69a7116c40c9bb0368605b2bd4aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07ae69a7116c40c9bb0368605b2bd4aa.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VX4wYMM9mDigOhj90_ly4gRu-M=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.363577+00 2025-12-09 10:15:23.363582+00 13897 8353FWF#4XL番禺调色 SPMX-20240815309091 \N \N \N 1 \N [{"file_id": "bcccaf6c-f5fa-437c-82dc-77ef2b42ade3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb623bfafff44593aecacb7748b761e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb623bfafff44593aecacb7748b761e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb623bfafff44593aecacb7748b761e9.jpg", "file_size": 17667, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#4XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb623bfafff44593aecacb7748b761e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb623bfafff44593aecacb7748b761e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb623bfafff44593aecacb7748b761e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb623bfafff44593aecacb7748b761e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb623bfafff44593aecacb7748b761e9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8fFR_3qdaVD_AqjHpjNd0b2MOU=", "createTime": "2024-08-15 14:56:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.365694+00 2025-12-09 10:15:23.365699+00 13898 JTSS503FW#玫红VS-D3 SPMX-20240815309093 \N \N \N 1 \N [{"file_id": "1ec34eec-18d1-449c-85db-24018d022e8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e962d5fec85a45dbb4928b0d790b07e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e962d5fec85a45dbb4928b0d790b07e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e962d5fec85a45dbb4928b0d790b07e6.jpg", "file_size": 11018, "is_delete": false, "file_type": 1, "original_file_name": "JTSS503FW#玫红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e962d5fec85a45dbb4928b0d790b07e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e962d5fec85a45dbb4928b0d790b07e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e962d5fec85a45dbb4928b0d790b07e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e962d5fec85a45dbb4928b0d790b07e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e962d5fec85a45dbb4928b0d790b07e6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oDHXhIPi0kn5p1qiNOERHsT6SGA=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.368055+00 2025-12-09 10:15:23.36806+00 13899 23-2123#A1-领子3XL SPMX-20240815309099 \N \N \N 1 \N [{"file_id": "7acbe9c3-61e0-4a41-8400-989fed673363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4209c123168549bb8f24fdf77384086d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4209c123168549bb8f24fdf77384086d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4209c123168549bb8f24fdf77384086d.jpg", "file_size": 11538, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4209c123168549bb8f24fdf77384086d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4209c123168549bb8f24fdf77384086d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4209c123168549bb8f24fdf77384086d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4209c123168549bb8f24fdf77384086d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4209c123168549bb8f24fdf77384086d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XwTn66MarkAMXt6IS_yTWRMpP0=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.370389+00 2025-12-09 10:15:23.370394+00 13900 C928#A3 SPMX-20240815309095 \N \N \N 1 \N [{"file_id": "a288894c-1d8f-42ba-bc79-1132bf3b53f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8b1b0991f7460bb6cc1932d3e4795c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8b1b0991f7460bb6cc1932d3e4795c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8b1b0991f7460bb6cc1932d3e4795c.jpg", "file_size": 9117, "is_delete": false, "file_type": 1, "original_file_name": "C928#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8b1b0991f7460bb6cc1932d3e4795c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8b1b0991f7460bb6cc1932d3e4795c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8b1b0991f7460bb6cc1932d3e4795c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8b1b0991f7460bb6cc1932d3e4795c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8b1b0991f7460bb6cc1932d3e4795c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdVH9u_WNwD5YA_lyOG2sz-CFGg=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.372502+00 2025-12-09 10:15:23.372508+00 13901 LZ1324#捆条布 SPMX-20240815309094 \N \N \N 1 \N [{"file_id": "f1046531-c583-4fdb-9e27-e9c0f3d14432", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926f5729d3e34c24a1151e1395f8fb05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926f5729d3e34c24a1151e1395f8fb05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926f5729d3e34c24a1151e1395f8fb05.jpg", "file_size": 7428, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926f5729d3e34c24a1151e1395f8fb05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926f5729d3e34c24a1151e1395f8fb05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926f5729d3e34c24a1151e1395f8fb05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926f5729d3e34c24a1151e1395f8fb05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926f5729d3e34c24a1151e1395f8fb05.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eK3_JBoaz2ck02hVVxprWAB-Opk=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.374614+00 2025-12-09 10:15:23.374619+00 13902 117A#黑色 SPMX-20240815309097 \N \N \N 1 \N [{"file_id": "e6c14c49-dc2c-402e-bc5b-a0064faa7b2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74d3b5b73fdd43eb8aa28011125cd665.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74d3b5b73fdd43eb8aa28011125cd665.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74d3b5b73fdd43eb8aa28011125cd665.jpg", "file_size": 70681, "is_delete": false, "file_type": 1, "original_file_name": "117A#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d3b5b73fdd43eb8aa28011125cd665.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d3b5b73fdd43eb8aa28011125cd665.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74d3b5b73fdd43eb8aa28011125cd665.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74d3b5b73fdd43eb8aa28011125cd665.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74d3b5b73fdd43eb8aa28011125cd665.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kQZJzVwXVvjxkttaFpTIVoUjP8=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.376721+00 2025-12-09 10:15:23.376726+00 13903 LJH1717#A4色 SPMX-20240815309098 \N \N \N 1 \N [{"file_id": "1935e8d1-d23a-46bc-86f4-c7e387f99b30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ae029c475e84acd84f03b759f2acb2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ae029c475e84acd84f03b759f2acb2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ae029c475e84acd84f03b759f2acb2c.jpg", "file_size": 45695, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717#A4色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae029c475e84acd84f03b759f2acb2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae029c475e84acd84f03b759f2acb2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae029c475e84acd84f03b759f2acb2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ae029c475e84acd84f03b759f2acb2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ae029c475e84acd84f03b759f2acb2c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goz08OdApAAOYGh8LYAP9Xp5NmE=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.378797+00 2025-12-09 10:15:23.378802+00 13904 LZ1324#背心款1号色 SPMX-20240815309103 \N \N \N 1 \N [{"file_id": "44aaab95-ba39-4354-89eb-c0b5b2e39ec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4d4a8addd6f473690c505eab0da623c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4d4a8addd6f473690c505eab0da623c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4d4a8addd6f473690c505eab0da623c.jpg", "file_size": 16489, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d4a8addd6f473690c505eab0da623c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d4a8addd6f473690c505eab0da623c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d4a8addd6f473690c505eab0da623c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4d4a8addd6f473690c505eab0da623c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4d4a8addd6f473690c505eab0da623c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9ygulArgF4H4H9N9dgnn3BFkgU=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.381116+00 2025-12-09 10:15:23.381121+00 13905 C928#A4 SPMX-20240815309105 \N \N \N 1 \N [{"file_id": "623f1309-6383-456c-b375-b544f55167a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947956fa9b054ffabac84ffed5fee2cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947956fa9b054ffabac84ffed5fee2cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947956fa9b054ffabac84ffed5fee2cd.jpg", "file_size": 9808, "is_delete": false, "file_type": 1, "original_file_name": "C928#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947956fa9b054ffabac84ffed5fee2cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947956fa9b054ffabac84ffed5fee2cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947956fa9b054ffabac84ffed5fee2cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947956fa9b054ffabac84ffed5fee2cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947956fa9b054ffabac84ffed5fee2cd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jlklRkC7w3DDujncYvZUpFkK27w=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.383411+00 2025-12-09 10:15:23.383416+00 13906 FM029#粉色净色 SPMX-20240815309101 \N \N \N 1 \N [{"file_id": "4c334ce0-0d53-433c-a5b1-87a56b96dc2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f68246a2785e49babb4982791fa3ced2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f68246a2785e49babb4982791fa3ced2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f68246a2785e49babb4982791fa3ced2.jpg", "file_size": 7415, "is_delete": false, "file_type": 1, "original_file_name": "FM029#粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68246a2785e49babb4982791fa3ced2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68246a2785e49babb4982791fa3ced2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68246a2785e49babb4982791fa3ced2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f68246a2785e49babb4982791fa3ced2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f68246a2785e49babb4982791fa3ced2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p5aJuSRz2oYMSY15g4xuyaC7bCA=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.385768+00 2025-12-09 10:15:23.385772+00 13907 8353FWF#5XL SPMX-20240815309102 \N \N \N 1 \N [{"file_id": "aefd15ff-c96d-4f49-ac48-72d446051b1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f98290ab90e4892b28a9819273ad030.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f98290ab90e4892b28a9819273ad030.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f98290ab90e4892b28a9819273ad030.jpg", "file_size": 18322, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f98290ab90e4892b28a9819273ad030.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f98290ab90e4892b28a9819273ad030.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f98290ab90e4892b28a9819273ad030.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f98290ab90e4892b28a9819273ad030.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f98290ab90e4892b28a9819273ad030.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RV1QLztXcgTEZ1EkwHPvsg_8aPc=", "createTime": "2024-08-15 14:56:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.387875+00 2025-12-09 10:15:23.387881+00 13908 0005-51#蓝色 SPMX-20240815309116 \N \N \N 1 \N [{"file_id": "925ca5b2-609f-42d5-84ca-2501efc097a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14fc67a066304d20bf42f4eb5443e725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14fc67a066304d20bf42f4eb5443e725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14fc67a066304d20bf42f4eb5443e725.jpg", "file_size": 14169, "is_delete": false, "file_type": 1, "original_file_name": "0005-51#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14fc67a066304d20bf42f4eb5443e725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14fc67a066304d20bf42f4eb5443e725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14fc67a066304d20bf42f4eb5443e725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14fc67a066304d20bf42f4eb5443e725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14fc67a066304d20bf42f4eb5443e725.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jB3NVK7W_BCFZSkGlKL3MKh7LHE=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.390197+00 2025-12-09 10:15:23.390202+00 13909 0005-51#白色 SPMX-20240815309106 \N \N \N 1 \N [{"file_id": "45805d3f-6455-4f30-aa93-ecf457e97825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b94cbf40a9d4b7eb088fc070ff86763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b94cbf40a9d4b7eb088fc070ff86763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b94cbf40a9d4b7eb088fc070ff86763.jpg", "file_size": 14713, "is_delete": false, "file_type": 1, "original_file_name": "0005-51#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b94cbf40a9d4b7eb088fc070ff86763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b94cbf40a9d4b7eb088fc070ff86763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b94cbf40a9d4b7eb088fc070ff86763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b94cbf40a9d4b7eb088fc070ff86763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b94cbf40a9d4b7eb088fc070ff86763.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MK6NAekN1dP7rIQCzSNGfttNG9A=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.392489+00 2025-12-09 10:15:23.392494+00 13910 DL31125-3#前幅蓝绿 SPMX-20240815309108 \N \N \N 1 \N [{"file_id": "83ce7c6f-6cb3-41bb-af42-9014f701bea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0a38cae5d3445dca371bbd5b08146ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0a38cae5d3445dca371bbd5b08146ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0a38cae5d3445dca371bbd5b08146ba.jpg", "file_size": 15693, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a38cae5d3445dca371bbd5b08146ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a38cae5d3445dca371bbd5b08146ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0a38cae5d3445dca371bbd5b08146ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0a38cae5d3445dca371bbd5b08146ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0a38cae5d3445dca371bbd5b08146ba.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v2kthC9LSefvuqXusA0mwD00VOw=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.394869+00 2025-12-09 10:15:23.394874+00 13911 118#-杏色 SPMX-20240815309111 \N \N \N 1 \N [{"file_id": "8bdefaed-4ac2-42b5-965b-f6d51f85838d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd1f9a3b0a0b4aac82fe4191c590031c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd1f9a3b0a0b4aac82fe4191c590031c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd1f9a3b0a0b4aac82fe4191c590031c.jpg", "file_size": 41042, "is_delete": false, "file_type": 1, "original_file_name": "118#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd1f9a3b0a0b4aac82fe4191c590031c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd1f9a3b0a0b4aac82fe4191c590031c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd1f9a3b0a0b4aac82fe4191c590031c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd1f9a3b0a0b4aac82fe4191c590031c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd1f9a3b0a0b4aac82fe4191c590031c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpm2Pu1-VrnzGJBba-h1QlOBj3o=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.397294+00 2025-12-09 10:15:23.397299+00 13912 8353FWF#5XL番禺调色 SPMX-20240815309113 \N \N \N 1 \N [{"file_id": "42af3f92-41a8-4910-b4de-5086b0a2aa0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c516b6e44ea4772a6901b9fac6383c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c516b6e44ea4772a6901b9fac6383c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c516b6e44ea4772a6901b9fac6383c3.jpg", "file_size": 18215, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#5XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c516b6e44ea4772a6901b9fac6383c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c516b6e44ea4772a6901b9fac6383c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c516b6e44ea4772a6901b9fac6383c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c516b6e44ea4772a6901b9fac6383c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c516b6e44ea4772a6901b9fac6383c3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGJMAFhNvW8Ti_UL12UaZe0EiuU=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.399619+00 2025-12-09 10:15:23.399624+00 13913 LZ1324#背心款2号色 SPMX-20240815309115 \N \N \N 1 \N [{"file_id": "6cd0808a-21a6-4994-8f94-9475c0698982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4194139c0d604d5ea998f4072ab099cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4194139c0d604d5ea998f4072ab099cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4194139c0d604d5ea998f4072ab099cd.jpg", "file_size": 15580, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4194139c0d604d5ea998f4072ab099cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4194139c0d604d5ea998f4072ab099cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4194139c0d604d5ea998f4072ab099cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4194139c0d604d5ea998f4072ab099cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4194139c0d604d5ea998f4072ab099cd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_vCJPqtr5H88FA3POkPNCoT0yg=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.402307+00 2025-12-09 10:15:23.402313+00 13914 DL31125-3#前幅黄色 SPMX-20240815309118 \N \N \N 1 \N [{"file_id": "26eb9c17-9a55-4672-8e63-03a7f2addd10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "381d0dc876a946f8ba165df4b249ef97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "381d0dc876a946f8ba165df4b249ef97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "381d0dc876a946f8ba165df4b249ef97.jpg", "file_size": 14388, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381d0dc876a946f8ba165df4b249ef97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381d0dc876a946f8ba165df4b249ef97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/381d0dc876a946f8ba165df4b249ef97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/381d0dc876a946f8ba165df4b249ef97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/381d0dc876a946f8ba165df4b249ef97.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxN5bj4iSltrH2IJ4Eh39Ioge80=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.404742+00 2025-12-09 10:15:23.404748+00 13915 LJH1717#原版色 SPMX-20240815309109 \N \N \N 1 \N [{"file_id": "3dba6a3e-593a-4b20-95e9-974330d94cc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c83c8d303e5c4e46b29dab72e43f2737.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c83c8d303e5c4e46b29dab72e43f2737.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c83c8d303e5c4e46b29dab72e43f2737.jpg", "file_size": 49178, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c8d303e5c4e46b29dab72e43f2737.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c8d303e5c4e46b29dab72e43f2737.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83c8d303e5c4e46b29dab72e43f2737.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c83c8d303e5c4e46b29dab72e43f2737.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c83c8d303e5c4e46b29dab72e43f2737.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OzAvQEhJuaOGtntmVw9rw0lYaTM=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.406929+00 2025-12-09 10:15:23.406935+00 13916 23-2123#A1-领子4XL SPMX-20240815309110 \N \N \N 1 \N [{"file_id": "874d1388-e061-4c27-8647-610b4677ad5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9abcf657680747458df22202a1c6bec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9abcf657680747458df22202a1c6bec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9abcf657680747458df22202a1c6bec7.jpg", "file_size": 11701, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abcf657680747458df22202a1c6bec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abcf657680747458df22202a1c6bec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9abcf657680747458df22202a1c6bec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9abcf657680747458df22202a1c6bec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9abcf657680747458df22202a1c6bec7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkWKB1aa9hbevLCXbnHUv5dhGF0=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.409024+00 2025-12-09 10:15:23.409029+00 13917 HT5070#小花朵 SPMX-20240815309117 \N \N \N 1 \N [{"file_id": "f6724b1e-47b6-4cc5-88f1-10ec45d61925", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c029b936ecb0401aa7e6bf15d6520d8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c029b936ecb0401aa7e6bf15d6520d8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c029b936ecb0401aa7e6bf15d6520d8a.jpg", "file_size": 19479, "is_delete": false, "file_type": 1, "original_file_name": "HT5070#小花朵.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c029b936ecb0401aa7e6bf15d6520d8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c029b936ecb0401aa7e6bf15d6520d8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c029b936ecb0401aa7e6bf15d6520d8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c029b936ecb0401aa7e6bf15d6520d8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c029b936ecb0401aa7e6bf15d6520d8a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nu7sIZN_joo09UscCq3V8lgaCQM=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.411332+00 2025-12-09 10:15:23.411337+00 13918 FM031#浅紫 SPMX-20240815309112 \N \N \N 1 \N [{"file_id": "d0f50060-442e-4dca-845d-56dceb6b086e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c7f58ba5a284c93819c92f12935c46f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c7f58ba5a284c93819c92f12935c46f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c7f58ba5a284c93819c92f12935c46f.jpg", "file_size": 10429, "is_delete": false, "file_type": 1, "original_file_name": "FM031#浅紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7f58ba5a284c93819c92f12935c46f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7f58ba5a284c93819c92f12935c46f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7f58ba5a284c93819c92f12935c46f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c7f58ba5a284c93819c92f12935c46f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c7f58ba5a284c93819c92f12935c46f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKBTpwbo8I63CwWkF2Tk0SPWk0I=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.413665+00 2025-12-09 10:15:23.41367+00 13919 C928#A5 SPMX-20240815309114 \N \N \N 1 \N [{"file_id": "37bd7f56-7b6b-4b14-926f-5c1d93363586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a5fa1caf5f34ae9b162a69b848c7c4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a5fa1caf5f34ae9b162a69b848c7c4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a5fa1caf5f34ae9b162a69b848c7c4e.jpg", "file_size": 9731, "is_delete": false, "file_type": 1, "original_file_name": "C928#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5fa1caf5f34ae9b162a69b848c7c4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5fa1caf5f34ae9b162a69b848c7c4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5fa1caf5f34ae9b162a69b848c7c4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a5fa1caf5f34ae9b162a69b848c7c4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a5fa1caf5f34ae9b162a69b848c7c4e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQ20HRum2ktkDwKv5FffkAXJa6I=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.415988+00 2025-12-09 10:15:23.415993+00 13920 HT5070#大花朵 SPMX-20240815309107 \N \N \N 1 \N [{"file_id": "7beb6dc3-8dde-4578-be7c-cc6064297042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f8275362364e2d924fd44522eb5f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f8275362364e2d924fd44522eb5f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f8275362364e2d924fd44522eb5f74.jpg", "file_size": 19764, "is_delete": false, "file_type": 1, "original_file_name": "HT5070#大花朵.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f8275362364e2d924fd44522eb5f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f8275362364e2d924fd44522eb5f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f8275362364e2d924fd44522eb5f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f8275362364e2d924fd44522eb5f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f8275362364e2d924fd44522eb5f74.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9p9V2sGo0TVq8DDni33hNwWbVnE=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.418125+00 2025-12-09 10:15:23.41813+00 13921 118#-灰色 SPMX-20240815309119 \N \N \N 1 \N [{"file_id": "94c8626a-50e1-424e-a6bb-8e37181350f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4dc0114c001442f9061845994f198ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4dc0114c001442f9061845994f198ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4dc0114c001442f9061845994f198ea.jpg", "file_size": 55234, "is_delete": false, "file_type": 1, "original_file_name": "118#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc0114c001442f9061845994f198ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc0114c001442f9061845994f198ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4dc0114c001442f9061845994f198ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4dc0114c001442f9061845994f198ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4dc0114c001442f9061845994f198ea.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qlZGly9HkS_mJyIYcitHgC1lFR8=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.420448+00 2025-12-09 10:15:23.420453+00 13922 JTSS503FW#黑VS-D3 SPMX-20240815309120 \N \N \N 1 \N [{"file_id": "da8e442f-f841-48f8-8c1d-2218335bf8ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94ec29468ba74935939cc0005cc171ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94ec29468ba74935939cc0005cc171ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94ec29468ba74935939cc0005cc171ca.jpg", "file_size": 11601, "is_delete": false, "file_type": 1, "original_file_name": "JTSS503FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec29468ba74935939cc0005cc171ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec29468ba74935939cc0005cc171ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ec29468ba74935939cc0005cc171ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94ec29468ba74935939cc0005cc171ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94ec29468ba74935939cc0005cc171ca.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j38090KgbT3mUbonUQcFX8HcZJ0=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.42275+00 2025-12-09 10:15:23.422754+00 13923 C928#A6 SPMX-20240815309124 \N \N \N 1 \N [{"file_id": "2baf04a1-19f5-4112-b4e1-518241faf1fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4c493b4e53d46c0bbbb83b11b6f38a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4c493b4e53d46c0bbbb83b11b6f38a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4c493b4e53d46c0bbbb83b11b6f38a6.jpg", "file_size": 10066, "is_delete": false, "file_type": 1, "original_file_name": "C928#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c493b4e53d46c0bbbb83b11b6f38a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c493b4e53d46c0bbbb83b11b6f38a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4c493b4e53d46c0bbbb83b11b6f38a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4c493b4e53d46c0bbbb83b11b6f38a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4c493b4e53d46c0bbbb83b11b6f38a6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nImG66AFL7HosWleaJgMTLsW-cU=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.424806+00 2025-12-09 10:15:23.424811+00 13924 C929#A1 SPMX-20240815309132 \N \N \N 1 \N [{"file_id": "737337f4-1cf5-425f-900f-0ee4027efc34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d14dcfbe37c24a21aeda48bb4252a643.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d14dcfbe37c24a21aeda48bb4252a643.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d14dcfbe37c24a21aeda48bb4252a643.jpg", "file_size": 15829, "is_delete": false, "file_type": 1, "original_file_name": "C929#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14dcfbe37c24a21aeda48bb4252a643.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14dcfbe37c24a21aeda48bb4252a643.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14dcfbe37c24a21aeda48bb4252a643.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d14dcfbe37c24a21aeda48bb4252a643.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d14dcfbe37c24a21aeda48bb4252a643.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2SSElny-n2-Z8uXVZS1WAOHK6o=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.426878+00 2025-12-09 10:15:23.426883+00 13925 LJH1717-2#2号色 SPMX-20240815309131 \N \N \N 1 \N [{"file_id": "68bd9066-8d76-47c5-91e8-1a57305a328c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147e2f7df5b947429aa2537c22d52a36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147e2f7df5b947429aa2537c22d52a36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147e2f7df5b947429aa2537c22d52a36.jpg", "file_size": 61163, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147e2f7df5b947429aa2537c22d52a36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147e2f7df5b947429aa2537c22d52a36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147e2f7df5b947429aa2537c22d52a36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147e2f7df5b947429aa2537c22d52a36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147e2f7df5b947429aa2537c22d52a36.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j27_j-Zi823D3DRaHzkHX0vw_FI=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.428977+00 2025-12-09 10:15:23.428983+00 13926 118#-白色 SPMX-20240815309130 \N \N \N 1 \N [{"file_id": "e9e8ba33-4808-40a9-8a6e-6a9218de1e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "603adcfe21b44ec7af7799b249f8dfa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "603adcfe21b44ec7af7799b249f8dfa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "603adcfe21b44ec7af7799b249f8dfa9.jpg", "file_size": 41659, "is_delete": false, "file_type": 1, "original_file_name": "118#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603adcfe21b44ec7af7799b249f8dfa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603adcfe21b44ec7af7799b249f8dfa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/603adcfe21b44ec7af7799b249f8dfa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/603adcfe21b44ec7af7799b249f8dfa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/603adcfe21b44ec7af7799b249f8dfa9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CczEPm-TVq4-h3uFhj_HnkYRL74=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.431057+00 2025-12-09 10:15:23.431062+00 13927 23-2123#A10-3XL SPMX-20240815309122 \N \N \N 1 \N [{"file_id": "df9c0541-6e39-4a45-a804-e026c17513c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eca896a7fc844ff8bf03fe8761779c37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eca896a7fc844ff8bf03fe8761779c37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eca896a7fc844ff8bf03fe8761779c37.jpg", "file_size": 24840, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca896a7fc844ff8bf03fe8761779c37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca896a7fc844ff8bf03fe8761779c37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca896a7fc844ff8bf03fe8761779c37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eca896a7fc844ff8bf03fe8761779c37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eca896a7fc844ff8bf03fe8761779c37.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_hqLXkx35eyLLxULa-fXWweRvc=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.433122+00 2025-12-09 10:15:23.433127+00 13928 8353FWF#L SPMX-20240815309125 \N \N \N 1 \N [{"file_id": "0f1be76b-e2ce-4d77-8c85-555ff5ff3250", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54bef680a6e344cd829caba8f0e0005a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54bef680a6e344cd829caba8f0e0005a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54bef680a6e344cd829caba8f0e0005a.jpg", "file_size": 16969, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54bef680a6e344cd829caba8f0e0005a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54bef680a6e344cd829caba8f0e0005a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54bef680a6e344cd829caba8f0e0005a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54bef680a6e344cd829caba8f0e0005a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54bef680a6e344cd829caba8f0e0005a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_G5cp_P1RWCqG9gfKoyBq_xY6E=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.435203+00 2025-12-09 10:15:23.435208+00 13929 FM031#白色 SPMX-20240815309121 \N \N \N 1 \N [{"file_id": "79f7497f-1bf5-408e-88d2-1583f565cc9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "990563a97f3c446f8a118581c65ec582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "990563a97f3c446f8a118581c65ec582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "990563a97f3c446f8a118581c65ec582.jpg", "file_size": 10243, "is_delete": false, "file_type": 1, "original_file_name": "FM031#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990563a97f3c446f8a118581c65ec582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990563a97f3c446f8a118581c65ec582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/990563a97f3c446f8a118581c65ec582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/990563a97f3c446f8a118581c65ec582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/990563a97f3c446f8a118581c65ec582.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bxXJMHDYXYJuPzO_rljEVXYlBS0=", "createTime": "2024-08-15 14:56:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.43755+00 2025-12-09 10:15:23.437556+00 13930 DL31125-3#批布彩兰色 SPMX-20240815309127 \N \N \N 1 \N [{"file_id": "157e070c-175c-4cbc-b4f2-d1599c8d4c99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af426f8f93e542deaf7f4744caa7c111.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af426f8f93e542deaf7f4744caa7c111.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af426f8f93e542deaf7f4744caa7c111.jpg", "file_size": 17766, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af426f8f93e542deaf7f4744caa7c111.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af426f8f93e542deaf7f4744caa7c111.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af426f8f93e542deaf7f4744caa7c111.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af426f8f93e542deaf7f4744caa7c111.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af426f8f93e542deaf7f4744caa7c111.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n6ma4iTW6w_NQ8g39V8Rt4dXEig=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.439775+00 2025-12-09 10:15:23.439781+00 13931 0005-52#LWQ15 SPMX-20240815309128 \N \N \N 1 \N [{"file_id": "c0e07b10-380f-4ab7-8ff3-e4484dcee3b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42b7cd733ccf4b15ba907d89ebd9ef67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42b7cd733ccf4b15ba907d89ebd9ef67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42b7cd733ccf4b15ba907d89ebd9ef67.jpg", "file_size": 19720, "is_delete": false, "file_type": 1, "original_file_name": "0005-52#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b7cd733ccf4b15ba907d89ebd9ef67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b7cd733ccf4b15ba907d89ebd9ef67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b7cd733ccf4b15ba907d89ebd9ef67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42b7cd733ccf4b15ba907d89ebd9ef67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42b7cd733ccf4b15ba907d89ebd9ef67.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQdrO3aBiAYw6Cv3ldHvD_st50c=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.442068+00 2025-12-09 10:15:23.442073+00 13932 JTSS504FW#紫VS-D3 SPMX-20240815309129 \N \N \N 1 \N [{"file_id": "3e21d466-7bc2-4a66-849d-b86707d853ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eed01c874164462eb3180b5e032774d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eed01c874164462eb3180b5e032774d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eed01c874164462eb3180b5e032774d5.jpg", "file_size": 13667, "is_delete": false, "file_type": 1, "original_file_name": "JTSS504FW#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed01c874164462eb3180b5e032774d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed01c874164462eb3180b5e032774d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed01c874164462eb3180b5e032774d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eed01c874164462eb3180b5e032774d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eed01c874164462eb3180b5e032774d5.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqzYbackJewHOyIsYvc4H_dp3kI=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.444161+00 2025-12-09 10:15:23.444166+00 13933 LJH1717-2#1号色 SPMX-20240815309123 \N \N \N 1 \N [{"file_id": "7ed4941e-590b-4466-8cb8-7c75f083c467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d587092cda35468bbfa45f84ce10aaaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d587092cda35468bbfa45f84ce10aaaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d587092cda35468bbfa45f84ce10aaaf.jpg", "file_size": 61335, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d587092cda35468bbfa45f84ce10aaaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d587092cda35468bbfa45f84ce10aaaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d587092cda35468bbfa45f84ce10aaaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d587092cda35468bbfa45f84ce10aaaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d587092cda35468bbfa45f84ce10aaaf.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgtFjBSvrRuRGGIY60yG9UqXJHk=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.446271+00 2025-12-09 10:15:23.446277+00 13934 LZ1324#背心款3号色 SPMX-20240815309126 \N \N \N 1 \N [{"file_id": "09402fd1-5a54-47a4-b79f-1eaa67ed2eb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5bb9a9761cf4a83aa1ca703bff4d74a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5bb9a9761cf4a83aa1ca703bff4d74a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5bb9a9761cf4a83aa1ca703bff4d74a.jpg", "file_size": 16359, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bb9a9761cf4a83aa1ca703bff4d74a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bb9a9761cf4a83aa1ca703bff4d74a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bb9a9761cf4a83aa1ca703bff4d74a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5bb9a9761cf4a83aa1ca703bff4d74a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5bb9a9761cf4a83aa1ca703bff4d74a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQtwGnHpoG_5DAI4-qW86WBD0Y4=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.448616+00 2025-12-09 10:15:23.448621+00 13935 8353FWF#L番禺调色 SPMX-20240815309136 \N \N \N 1 \N [{"file_id": "a35070f3-aeaf-4742-a733-6befa5af15aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45aedd2a9c224948820c2168fad87c94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45aedd2a9c224948820c2168fad87c94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45aedd2a9c224948820c2168fad87c94.jpg", "file_size": 16600, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#L番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45aedd2a9c224948820c2168fad87c94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45aedd2a9c224948820c2168fad87c94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45aedd2a9c224948820c2168fad87c94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45aedd2a9c224948820c2168fad87c94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45aedd2a9c224948820c2168fad87c94.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hZDpoB1SUVLqC-vS4TibuVx4N9g=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.450954+00 2025-12-09 10:15:23.45096+00 13936 118#-黑色 SPMX-20240815309140 \N \N \N 1 \N [{"file_id": "718049da-9f13-43bf-afd4-1c4df4116ccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg", "file_size": 42186, "is_delete": false, "file_type": 1, "original_file_name": "118#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88fcaf2c1efd44e8ab3bb4a39f1916d8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ii4Wc7yqoUOh3PDPlxjfWqH7Kwo=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.453257+00 2025-12-09 10:15:23.453262+00 13937 FM031#酒红色 SPMX-20240815309142 \N \N \N 1 \N [{"file_id": "3f677de9-85f6-42f4-9ce9-cc1184164439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2ae3d2a0dd6460dbf3217e51084fd09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2ae3d2a0dd6460dbf3217e51084fd09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2ae3d2a0dd6460dbf3217e51084fd09.jpg", "file_size": 10446, "is_delete": false, "file_type": 1, "original_file_name": "FM031#酒红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae3d2a0dd6460dbf3217e51084fd09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae3d2a0dd6460dbf3217e51084fd09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae3d2a0dd6460dbf3217e51084fd09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2ae3d2a0dd6460dbf3217e51084fd09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2ae3d2a0dd6460dbf3217e51084fd09.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjHInC1tt8b3f25kuu7diPSBcO8=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.455364+00 2025-12-09 10:15:23.455369+00 13938 C929#A2 SPMX-20240815309144 \N \N \N 1 \N [{"file_id": "29247548-36b8-4fdc-9226-15944570f1fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0caeb7d6cf5749b4a262dbce8fda9a58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0caeb7d6cf5749b4a262dbce8fda9a58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0caeb7d6cf5749b4a262dbce8fda9a58.jpg", "file_size": 13009, "is_delete": false, "file_type": 1, "original_file_name": "C929#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caeb7d6cf5749b4a262dbce8fda9a58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caeb7d6cf5749b4a262dbce8fda9a58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caeb7d6cf5749b4a262dbce8fda9a58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0caeb7d6cf5749b4a262dbce8fda9a58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0caeb7d6cf5749b4a262dbce8fda9a58.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiWanpXNnpmVPwjtIxNJw51DS9w=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.457711+00 2025-12-09 10:15:23.457717+00 13939 FM031#粉色 SPMX-20240815309134 \N \N \N 1 \N [{"file_id": "067afafb-648e-4c02-8181-9ba6826b34bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1025221c24ba43a2949aefbbfee2ee0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1025221c24ba43a2949aefbbfee2ee0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1025221c24ba43a2949aefbbfee2ee0d.jpg", "file_size": 10595, "is_delete": false, "file_type": 1, "original_file_name": "FM031#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1025221c24ba43a2949aefbbfee2ee0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1025221c24ba43a2949aefbbfee2ee0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1025221c24ba43a2949aefbbfee2ee0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1025221c24ba43a2949aefbbfee2ee0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1025221c24ba43a2949aefbbfee2ee0d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDQ3L0Z0nLpkm_JNdbVX0iklhJA=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.460028+00 2025-12-09 10:15:23.460033+00 13940 DL31125-3#批布浅粉 SPMX-20240815309146 \N \N \N 1 \N [{"file_id": "c3f8c80d-8a38-4478-9a04-3ae7793dc6b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a74ba2ef95324a6bb908f15e38b8b412.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a74ba2ef95324a6bb908f15e38b8b412.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a74ba2ef95324a6bb908f15e38b8b412.jpg", "file_size": 15873, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a74ba2ef95324a6bb908f15e38b8b412.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a74ba2ef95324a6bb908f15e38b8b412.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a74ba2ef95324a6bb908f15e38b8b412.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a74ba2ef95324a6bb908f15e38b8b412.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a74ba2ef95324a6bb908f15e38b8b412.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mURPETN3aazDIb3fpwNqBPXVGAc=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.462142+00 2025-12-09 10:15:23.462148+00 13941 JTSS504FW#红VS-D3 SPMX-20240815309139 \N \N \N 1 \N [{"file_id": "80f85886-7ab2-4b6f-ba32-16cc55cbb60d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c388ed1890284cd581581c01d158877a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c388ed1890284cd581581c01d158877a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c388ed1890284cd581581c01d158877a.jpg", "file_size": 13493, "is_delete": false, "file_type": 1, "original_file_name": "JTSS504FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c388ed1890284cd581581c01d158877a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c388ed1890284cd581581c01d158877a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c388ed1890284cd581581c01d158877a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c388ed1890284cd581581c01d158877a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c388ed1890284cd581581c01d158877a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHrsoCBxdXTZDmJtIksSK3YVvHM=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.464207+00 2025-12-09 10:15:23.464212+00 13942 0005-52#WJC22 SPMX-20240815309138 \N \N \N 1 \N [{"file_id": "909a45d4-69ec-48d1-af1f-c642e31b00d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg", "file_size": 20000, "is_delete": false, "file_type": 1, "original_file_name": "0005-52#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b3a3d253e854c7a8ea3a3a7e8b5ed68.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i4WvbubqnALrafAb4hmjkGlpIGQ=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.466293+00 2025-12-09 10:15:23.466298+00 13943 8353FWF#XL SPMX-20240815309145 \N \N \N 1 \N [{"file_id": "f935d8fb-4dc3-4317-864e-63c92d40fc88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "245f489be0cc4933b853802f14f6d584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "245f489be0cc4933b853802f14f6d584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "245f489be0cc4933b853802f14f6d584.jpg", "file_size": 17207, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245f489be0cc4933b853802f14f6d584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245f489be0cc4933b853802f14f6d584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245f489be0cc4933b853802f14f6d584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/245f489be0cc4933b853802f14f6d584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/245f489be0cc4933b853802f14f6d584.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cw2BiQSYEM69QjfxFhAX-lCL6EM=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.468413+00 2025-12-09 10:15:23.468418+00 13944 LJH1717-2#3号色 SPMX-20240815309143 \N \N \N 1 \N [{"file_id": "6ec49270-6e38-48f8-b05e-7905e500be68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beb176460bf943c4be286ce361830dbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beb176460bf943c4be286ce361830dbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beb176460bf943c4be286ce361830dbe.jpg", "file_size": 62106, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb176460bf943c4be286ce361830dbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb176460bf943c4be286ce361830dbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb176460bf943c4be286ce361830dbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beb176460bf943c4be286ce361830dbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beb176460bf943c4be286ce361830dbe.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMt6JseTwNpyk9LcItt9wJx-BWU=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.470766+00 2025-12-09 10:15:23.470771+00 13945 23-2123#A10-4XL SPMX-20240815309135 \N \N \N 1 \N [{"file_id": "f5c3ebc4-cf33-4cb8-b919-b3b2042bb985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daae1d1471e14b4a835d7bf7776311ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daae1d1471e14b4a835d7bf7776311ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daae1d1471e14b4a835d7bf7776311ee.jpg", "file_size": 23111, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daae1d1471e14b4a835d7bf7776311ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daae1d1471e14b4a835d7bf7776311ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daae1d1471e14b4a835d7bf7776311ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daae1d1471e14b4a835d7bf7776311ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daae1d1471e14b4a835d7bf7776311ee.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HEMhofU8Dl1Vpf5H4gZXjXvaez8=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.473069+00 2025-12-09 10:15:23.473075+00 13946 LZ1324#背心款5号色 SPMX-20240815309141 \N \N \N 1 \N [{"file_id": "0729d15b-d4a6-4d73-a182-12f9e4b8c802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "979f0106d6d84e5eb28c6004ce83974a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "979f0106d6d84e5eb28c6004ce83974a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "979f0106d6d84e5eb28c6004ce83974a.jpg", "file_size": 16108, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979f0106d6d84e5eb28c6004ce83974a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979f0106d6d84e5eb28c6004ce83974a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979f0106d6d84e5eb28c6004ce83974a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/979f0106d6d84e5eb28c6004ce83974a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/979f0106d6d84e5eb28c6004ce83974a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfbDf0DWyQp4RpmDbE4X4yhuvc8=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.475373+00 2025-12-09 10:15:23.475378+00 13947 DL31125-3#批布枣红 SPMX-20240815309137 \N \N \N 1 \N [{"file_id": "33bb0423-a855-434c-8ce4-30c258bb307b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f345427b34b44c0284617910c7e66f19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f345427b34b44c0284617910c7e66f19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f345427b34b44c0284617910c7e66f19.jpg", "file_size": 16776, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f345427b34b44c0284617910c7e66f19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f345427b34b44c0284617910c7e66f19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f345427b34b44c0284617910c7e66f19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f345427b34b44c0284617910c7e66f19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f345427b34b44c0284617910c7e66f19.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhGcOjU0wb9cuK8Yw8KejdUvGNE=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.477488+00 2025-12-09 10:15:23.477493+00 13948 23-2123#A10-领子3XL SPMX-20240815309147 \N \N \N 1 \N [{"file_id": "89be4444-b158-4fd1-bf55-1b6f31f2b1e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "485552b5ef2c48b2baeae7f3cfe64dec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "485552b5ef2c48b2baeae7f3cfe64dec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "485552b5ef2c48b2baeae7f3cfe64dec.jpg", "file_size": 16017, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485552b5ef2c48b2baeae7f3cfe64dec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485552b5ef2c48b2baeae7f3cfe64dec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/485552b5ef2c48b2baeae7f3cfe64dec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/485552b5ef2c48b2baeae7f3cfe64dec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/485552b5ef2c48b2baeae7f3cfe64dec.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHZyMJRkpVqznbuRpa5GDABAV88=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.479863+00 2025-12-09 10:15:23.479869+00 13949 LZ1324#背心款4号色 SPMX-20240815309133 \N \N \N 1 \N [{"file_id": "73fe9a27-8f12-4d11-8baa-b1a749667d30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8e029ee85a5495b8fe4cbde8d519a46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8e029ee85a5495b8fe4cbde8d519a46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8e029ee85a5495b8fe4cbde8d519a46.jpg", "file_size": 15929, "is_delete": false, "file_type": 1, "original_file_name": "LZ1324#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e029ee85a5495b8fe4cbde8d519a46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e029ee85a5495b8fe4cbde8d519a46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e029ee85a5495b8fe4cbde8d519a46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8e029ee85a5495b8fe4cbde8d519a46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8e029ee85a5495b8fe4cbde8d519a46.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fI3Fppv40DvUr3_1EFEItoHJJE=", "createTime": "2024-08-15 14:56:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.482155+00 2025-12-09 10:15:23.482161+00 13950 JTSS504FW#蓝VS-D3 SPMX-20240815309149 \N \N \N 1 \N [{"file_id": "6c291bfa-d374-432e-a213-fae67dc0cf86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30c3eae397fb49c3b0c80a1f8af7a7b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30c3eae397fb49c3b0c80a1f8af7a7b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30c3eae397fb49c3b0c80a1f8af7a7b0.jpg", "file_size": 13370, "is_delete": false, "file_type": 1, "original_file_name": "JTSS504FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c3eae397fb49c3b0c80a1f8af7a7b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c3eae397fb49c3b0c80a1f8af7a7b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c3eae397fb49c3b0c80a1f8af7a7b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30c3eae397fb49c3b0c80a1f8af7a7b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30c3eae397fb49c3b0c80a1f8af7a7b0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rNUFof5wcCkB8HuyKtIZzvotew=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.484457+00 2025-12-09 10:15:23.484463+00 13951 118-1#WJC22 SPMX-20240815309162 \N \N \N 1 \N [{"file_id": "9a0fcb99-41f3-44dd-a557-4a0f49f5f971", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6a74ee368844e3fa2225006a150d016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6a74ee368844e3fa2225006a150d016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6a74ee368844e3fa2225006a150d016.jpg", "file_size": 18508, "is_delete": false, "file_type": 1, "original_file_name": "118-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a74ee368844e3fa2225006a150d016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a74ee368844e3fa2225006a150d016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6a74ee368844e3fa2225006a150d016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6a74ee368844e3fa2225006a150d016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6a74ee368844e3fa2225006a150d016.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8_aDDNd2Qu6UK6FQvroSNRvcoaU=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.486552+00 2025-12-09 10:15:23.486558+00 13952 LZ1325#捆条布 SPMX-20240815309152 \N \N \N 1 \N [{"file_id": "61c92b12-0695-4762-9206-f452a9c3213f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f961b90886e3440d9db2d81d97d01c60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f961b90886e3440d9db2d81d97d01c60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f961b90886e3440d9db2d81d97d01c60.jpg", "file_size": 17915, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f961b90886e3440d9db2d81d97d01c60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f961b90886e3440d9db2d81d97d01c60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f961b90886e3440d9db2d81d97d01c60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f961b90886e3440d9db2d81d97d01c60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f961b90886e3440d9db2d81d97d01c60.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KM-Y9rxKQvqo_jGoZTm_LfZn70=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.48881+00 2025-12-09 10:15:23.488816+00 13953 FM031#黑色 SPMX-20240815309153 \N \N \N 1 \N [{"file_id": "61393ccf-bf57-429f-99b1-d4def67b68fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f7d93333ffa4773b7b3c6187d061552.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f7d93333ffa4773b7b3c6187d061552.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f7d93333ffa4773b7b3c6187d061552.jpg", "file_size": 10580, "is_delete": false, "file_type": 1, "original_file_name": "FM031#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7d93333ffa4773b7b3c6187d061552.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7d93333ffa4773b7b3c6187d061552.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f7d93333ffa4773b7b3c6187d061552.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f7d93333ffa4773b7b3c6187d061552.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f7d93333ffa4773b7b3c6187d061552.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhPRDM3x-IqCzyyViNX29LiEDV4=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.491135+00 2025-12-09 10:15:23.49114+00 13954 0005-5FWE#-2 SPMX-20240815309161 \N \N \N 1 \N [{"file_id": "eabe2f52-5bb7-45d8-83c0-6e789905fbf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36acff1b8a6c4b7e8d666cb1da2950e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36acff1b8a6c4b7e8d666cb1da2950e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36acff1b8a6c4b7e8d666cb1da2950e1.jpg", "file_size": 9612, "is_delete": false, "file_type": 1, "original_file_name": "0005-5FWE#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36acff1b8a6c4b7e8d666cb1da2950e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36acff1b8a6c4b7e8d666cb1da2950e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36acff1b8a6c4b7e8d666cb1da2950e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36acff1b8a6c4b7e8d666cb1da2950e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36acff1b8a6c4b7e8d666cb1da2950e1.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61Tfnx0z9XmLd2WmaA7p2aVJkeM=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.49343+00 2025-12-09 10:15:23.493435+00 13955 HT5071-1#WJC22 SPMX-20240815309148 \N \N \N 1 \N [{"file_id": "1ba9cc6e-6d48-4fb1-aee5-530d31f6a583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb29953b00744e29b6b615f25eda600d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb29953b00744e29b6b615f25eda600d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb29953b00744e29b6b615f25eda600d.jpg", "file_size": 17328, "is_delete": false, "file_type": 1, "original_file_name": "HT5071-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb29953b00744e29b6b615f25eda600d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb29953b00744e29b6b615f25eda600d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb29953b00744e29b6b615f25eda600d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb29953b00744e29b6b615f25eda600d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb29953b00744e29b6b615f25eda600d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1kSqzQOObdtjko_Dq_jbojQXaWM=", "createTime": "2024-08-15 14:56:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.495647+00 2025-12-09 10:15:23.495653+00 13956 23-2123#A10-领子4XL SPMX-20240815309158 \N \N \N 1 \N [{"file_id": "6ae45ee0-309e-4a2b-8f3c-233cbf28106a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a9546a6457e445ca36f71988a430b33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a9546a6457e445ca36f71988a430b33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a9546a6457e445ca36f71988a430b33.jpg", "file_size": 16184, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a9546a6457e445ca36f71988a430b33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a9546a6457e445ca36f71988a430b33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a9546a6457e445ca36f71988a430b33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a9546a6457e445ca36f71988a430b33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a9546a6457e445ca36f71988a430b33.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qu-Z4SPP73UoByuErSCKqatLgrs=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.498006+00 2025-12-09 10:15:23.498011+00 13957 HT5071-2#WJC22 SPMX-20240815309159 \N \N \N 1 \N [{"file_id": "98e3cda5-d2d7-4c81-9b39-baf262827b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1208b526bc24b40ad7d35ba930aab0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1208b526bc24b40ad7d35ba930aab0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1208b526bc24b40ad7d35ba930aab0b.jpg", "file_size": 18860, "is_delete": false, "file_type": 1, "original_file_name": "HT5071-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1208b526bc24b40ad7d35ba930aab0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1208b526bc24b40ad7d35ba930aab0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1208b526bc24b40ad7d35ba930aab0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1208b526bc24b40ad7d35ba930aab0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1208b526bc24b40ad7d35ba930aab0b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inRHV1-YCp94ShJSf9nTzCbwt6U=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.500419+00 2025-12-09 10:15:23.500425+00 13958 JTSS505FW#红VS-D3 SPMX-20240815309160 \N \N \N 1 \N [{"file_id": "9378681d-b03c-4906-b6e8-79ef4fc3402f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55da99bfe1de4fdcbffa6edf79324583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55da99bfe1de4fdcbffa6edf79324583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55da99bfe1de4fdcbffa6edf79324583.jpg", "file_size": 10835, "is_delete": false, "file_type": 1, "original_file_name": "JTSS505FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da99bfe1de4fdcbffa6edf79324583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da99bfe1de4fdcbffa6edf79324583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55da99bfe1de4fdcbffa6edf79324583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55da99bfe1de4fdcbffa6edf79324583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55da99bfe1de4fdcbffa6edf79324583.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RgupqPDq2k6FmO3m34pbrAXkWu0=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.502546+00 2025-12-09 10:15:23.502552+00 13959 8353FWF#XL番禺调色 SPMX-20240815309157 \N \N \N 1 \N [{"file_id": "c244b8d8-02e0-44d4-986c-d66b9baaa72f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "113f6c9ed3a54da09ba2867c52fee7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "113f6c9ed3a54da09ba2867c52fee7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "113f6c9ed3a54da09ba2867c52fee7ff.jpg", "file_size": 17028, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113f6c9ed3a54da09ba2867c52fee7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113f6c9ed3a54da09ba2867c52fee7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113f6c9ed3a54da09ba2867c52fee7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/113f6c9ed3a54da09ba2867c52fee7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/113f6c9ed3a54da09ba2867c52fee7ff.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSQBz0EnmUUwiaF9tH3IsmgxmaA=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.504654+00 2025-12-09 10:15:23.504659+00 13960 0005-5FWE#-1 SPMX-20240815309150 \N \N \N 1 \N [{"file_id": "73ae738b-f315-4643-80d0-b19ced5f548e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9757974ab21e4ffd8d1718fae061fe86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9757974ab21e4ffd8d1718fae061fe86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9757974ab21e4ffd8d1718fae061fe86.jpg", "file_size": 9777, "is_delete": false, "file_type": 1, "original_file_name": "0005-5FWE#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9757974ab21e4ffd8d1718fae061fe86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9757974ab21e4ffd8d1718fae061fe86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9757974ab21e4ffd8d1718fae061fe86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9757974ab21e4ffd8d1718fae061fe86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9757974ab21e4ffd8d1718fae061fe86.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CME92qS5o4UeiqtbwrgMBOxTjmE=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.506781+00 2025-12-09 10:15:23.506786+00 13961 118#WJC22 SPMX-20240815309151 \N \N \N 1 \N [{"file_id": "d02f3c1e-b9ce-45bb-ac74-f7c8b55b4775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "628b493ffaf94bc9aaf05820f31d37c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "628b493ffaf94bc9aaf05820f31d37c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "628b493ffaf94bc9aaf05820f31d37c3.jpg", "file_size": 12331, "is_delete": false, "file_type": 1, "original_file_name": "118#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628b493ffaf94bc9aaf05820f31d37c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628b493ffaf94bc9aaf05820f31d37c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628b493ffaf94bc9aaf05820f31d37c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/628b493ffaf94bc9aaf05820f31d37c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/628b493ffaf94bc9aaf05820f31d37c3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JCL4KsE2MHJtW4NXlMJFhpTUa2I=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.509117+00 2025-12-09 10:15:23.509122+00 13962 DL31125-3#批布玫红 SPMX-20240815309155 \N \N \N 1 \N [{"file_id": "925b6a95-e293-49af-b374-8f0e27e8ea82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a45ee8c872a4ac19ece5628caf45c3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a45ee8c872a4ac19ece5628caf45c3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a45ee8c872a4ac19ece5628caf45c3c.jpg", "file_size": 16777, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a45ee8c872a4ac19ece5628caf45c3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a45ee8c872a4ac19ece5628caf45c3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a45ee8c872a4ac19ece5628caf45c3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a45ee8c872a4ac19ece5628caf45c3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a45ee8c872a4ac19ece5628caf45c3c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GePF-W1posrjVQxYlbfogsAwQIs=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.511501+00 2025-12-09 10:15:23.511507+00 13963 LJH1717-2#A1色 SPMX-20240815309154 \N \N \N 1 \N [{"file_id": "14995a4b-c3f1-41f2-a2ee-5dfd03584754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a079b292bb22452593b8b31388357c73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a079b292bb22452593b8b31388357c73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a079b292bb22452593b8b31388357c73.jpg", "file_size": 53004, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#A1色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079b292bb22452593b8b31388357c73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079b292bb22452593b8b31388357c73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a079b292bb22452593b8b31388357c73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a079b292bb22452593b8b31388357c73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a079b292bb22452593b8b31388357c73.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2JtJVIE-BDKlsx6A5VWglfTnzU=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.513725+00 2025-12-09 10:15:23.513731+00 13964 C929#A3 SPMX-20240815309156 \N \N \N 1 \N [{"file_id": "fc606d19-62ec-47d4-92bf-9a89db4e3e21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57ec4beabac0460ca85825af84731b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57ec4beabac0460ca85825af84731b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57ec4beabac0460ca85825af84731b3b.jpg", "file_size": 13259, "is_delete": false, "file_type": 1, "original_file_name": "C929#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ec4beabac0460ca85825af84731b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ec4beabac0460ca85825af84731b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57ec4beabac0460ca85825af84731b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57ec4beabac0460ca85825af84731b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57ec4beabac0460ca85825af84731b3b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i22OImZhrKb9-PO-iZu2XZk2PpY=", "createTime": "2024-08-15 14:56:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.516175+00 2025-12-09 10:15:23.51618+00 13965 FM032#彩兰 SPMX-20240815309164 \N \N \N 1 \N [{"file_id": "e401c3dd-4bac-4698-8aa7-e9476578b8dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d7113f02877452586021dd6cc49528c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d7113f02877452586021dd6cc49528c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d7113f02877452586021dd6cc49528c.jpg", "file_size": 19438, "is_delete": false, "file_type": 1, "original_file_name": "FM032#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7113f02877452586021dd6cc49528c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7113f02877452586021dd6cc49528c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7113f02877452586021dd6cc49528c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d7113f02877452586021dd6cc49528c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d7113f02877452586021dd6cc49528c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsFzkHnhNPBMfGCtZC-tkCBpAmk=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.518536+00 2025-12-09 10:15:23.518542+00 13966 0005-5FWE#-3 SPMX-20240815309171 \N \N \N 1 \N [{"file_id": "8862dc50-3463-4bf2-ae90-bf8b55ee481c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b75bc4360c40579283cc4dd598c738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b75bc4360c40579283cc4dd598c738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b75bc4360c40579283cc4dd598c738.jpg", "file_size": 9702, "is_delete": false, "file_type": 1, "original_file_name": "0005-5FWE#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b75bc4360c40579283cc4dd598c738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b75bc4360c40579283cc4dd598c738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b75bc4360c40579283cc4dd598c738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b75bc4360c40579283cc4dd598c738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b75bc4360c40579283cc4dd598c738.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9Wl1S0rZoV6Vm5Pb0KaKz9RSy0=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.520669+00 2025-12-09 10:15:23.520675+00 13967 23-2123#A11-3XL SPMX-20240815309168 \N \N \N 1 \N [{"file_id": "a4863742-ef68-4812-9449-7b038b5dfc32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a116984f40d4572aab58ff126133e3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a116984f40d4572aab58ff126133e3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a116984f40d4572aab58ff126133e3c.jpg", "file_size": 16856, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a116984f40d4572aab58ff126133e3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a116984f40d4572aab58ff126133e3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a116984f40d4572aab58ff126133e3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a116984f40d4572aab58ff126133e3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a116984f40d4572aab58ff126133e3c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4AqzC931odmsQI3RUQyCFY7eMQ=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.522759+00 2025-12-09 10:15:23.522764+00 13968 118-2#WJC22 SPMX-20240815309173 \N \N \N 1 \N [{"file_id": "b65e8942-0767-44f3-bcf4-3744a3fe06f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2e9735b8d0049bb9663151ca425ec73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2e9735b8d0049bb9663151ca425ec73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2e9735b8d0049bb9663151ca425ec73.jpg", "file_size": 12631, "is_delete": false, "file_type": 1, "original_file_name": "118-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9735b8d0049bb9663151ca425ec73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9735b8d0049bb9663151ca425ec73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e9735b8d0049bb9663151ca425ec73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2e9735b8d0049bb9663151ca425ec73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2e9735b8d0049bb9663151ca425ec73.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-kdQa52s92maTWcHATHDK38QvA=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.52485+00 2025-12-09 10:15:23.524855+00 13969 LJH1717-2#A3色 SPMX-20240815309174 \N \N \N 1 \N [{"file_id": "410ff949-63ae-491f-9fc2-e3fc18bce262", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "983e745badec4451a0983ad400399163.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "983e745badec4451a0983ad400399163.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "983e745badec4451a0983ad400399163.jpg", "file_size": 52292, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#A3色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983e745badec4451a0983ad400399163.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983e745badec4451a0983ad400399163.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983e745badec4451a0983ad400399163.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/983e745badec4451a0983ad400399163.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/983e745badec4451a0983ad400399163.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMcfXnL0MZHjTJmtF5tYD6EQJgA=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.527419+00 2025-12-09 10:15:23.527426+00 13970 8353FWF#乱花 SPMX-20240815309172 \N \N \N 1 \N [{"file_id": "5a5ba7b6-bbd2-4666-b6ee-9475bc41450c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6545803b82c64a5aad07c6bded5478d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6545803b82c64a5aad07c6bded5478d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6545803b82c64a5aad07c6bded5478d2.jpg", "file_size": 9535, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545803b82c64a5aad07c6bded5478d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545803b82c64a5aad07c6bded5478d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6545803b82c64a5aad07c6bded5478d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6545803b82c64a5aad07c6bded5478d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6545803b82c64a5aad07c6bded5478d2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hk0k-8fJ_43UcHEyW_TwLlU7X20=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.529971+00 2025-12-09 10:15:23.529977+00 13971 DL31125-3#批布蓝绿 SPMX-20240815309166 \N \N \N 1 \N [{"file_id": "af016fb8-d269-47e4-8a4e-108a6a07dab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97364cfac69a4885a07d6da7050319b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97364cfac69a4885a07d6da7050319b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97364cfac69a4885a07d6da7050319b9.jpg", "file_size": 17049, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97364cfac69a4885a07d6da7050319b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97364cfac69a4885a07d6da7050319b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97364cfac69a4885a07d6da7050319b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97364cfac69a4885a07d6da7050319b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97364cfac69a4885a07d6da7050319b9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uT-qlgurM5UVhyqHr5_HRqBYQL0=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.532462+00 2025-12-09 10:15:23.532468+00 13972 FM032#桔色 SPMX-20240815309175 \N \N \N 1 \N [{"file_id": "5003c5d6-869d-4630-a646-e1eb093e63f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ac070148dbd4015965d79257feffae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ac070148dbd4015965d79257feffae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ac070148dbd4015965d79257feffae3.jpg", "file_size": 17893, "is_delete": false, "file_type": 1, "original_file_name": "FM032#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac070148dbd4015965d79257feffae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac070148dbd4015965d79257feffae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac070148dbd4015965d79257feffae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ac070148dbd4015965d79257feffae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ac070148dbd4015965d79257feffae3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YDVZ98Mk-kVlszWugrCXMiZi4f4=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.534859+00 2025-12-09 10:15:23.534865+00 13973 C929#A4 SPMX-20240815309167 \N \N \N 1 \N [{"file_id": "182e6ccc-76ec-49bd-93ce-c4536244d0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daf33db1188047759e9ad0ebf6af2a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daf33db1188047759e9ad0ebf6af2a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daf33db1188047759e9ad0ebf6af2a60.jpg", "file_size": 16941, "is_delete": false, "file_type": 1, "original_file_name": "C929#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf33db1188047759e9ad0ebf6af2a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf33db1188047759e9ad0ebf6af2a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daf33db1188047759e9ad0ebf6af2a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daf33db1188047759e9ad0ebf6af2a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daf33db1188047759e9ad0ebf6af2a60.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZstY7ZwlN-6WThhOGnj6-cTPfkA=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.537401+00 2025-12-09 10:15:23.537407+00 13974 C929#A5 SPMX-20240815309176 \N \N \N 1 \N [{"file_id": "26688e90-272f-4766-be0f-c3d52e70cf25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0120c5b9a9d7419c92a804713599544b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0120c5b9a9d7419c92a804713599544b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0120c5b9a9d7419c92a804713599544b.jpg", "file_size": 14818, "is_delete": false, "file_type": 1, "original_file_name": "C929#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0120c5b9a9d7419c92a804713599544b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0120c5b9a9d7419c92a804713599544b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0120c5b9a9d7419c92a804713599544b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0120c5b9a9d7419c92a804713599544b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0120c5b9a9d7419c92a804713599544b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ve0BZQPi61WS9DkdtoM1OjOFhE=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.539873+00 2025-12-09 10:15:23.539878+00 13975 JTSS505FW#绿VS-D3 SPMX-20240815309169 \N \N \N 1 \N [{"file_id": "bb657964-3b7a-425b-961c-1fd71c2fa6e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2940724ac89d4538b703efabe315a9d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2940724ac89d4538b703efabe315a9d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2940724ac89d4538b703efabe315a9d9.jpg", "file_size": 11155, "is_delete": false, "file_type": 1, "original_file_name": "JTSS505FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940724ac89d4538b703efabe315a9d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940724ac89d4538b703efabe315a9d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940724ac89d4538b703efabe315a9d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2940724ac89d4538b703efabe315a9d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2940724ac89d4538b703efabe315a9d9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSo9L1oYHe1HyT5GJyoFv6XzGLI=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.54243+00 2025-12-09 10:15:23.542436+00 13976 HT5071-3#WJC22 SPMX-20240815309170 \N \N \N 1 \N [{"file_id": "82e9a947-5823-447c-9621-f6d4cbd89fa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fed14ceb8ada42c495ab203706e7fefb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fed14ceb8ada42c495ab203706e7fefb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fed14ceb8ada42c495ab203706e7fefb.jpg", "file_size": 17820, "is_delete": false, "file_type": 1, "original_file_name": "HT5071-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed14ceb8ada42c495ab203706e7fefb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed14ceb8ada42c495ab203706e7fefb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed14ceb8ada42c495ab203706e7fefb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fed14ceb8ada42c495ab203706e7fefb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fed14ceb8ada42c495ab203706e7fefb.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:44_MQEKJlicobUpKwP73tTBMr-Q=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.544952+00 2025-12-09 10:15:23.544957+00 13977 LZ1325#背心款1号色 SPMX-20240815309165 \N \N \N 1 \N [{"file_id": "388a5524-de9d-4697-9bd7-4c83ce7b5a6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d6bbd89e3e04c20a4879321187f7ee1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d6bbd89e3e04c20a4879321187f7ee1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d6bbd89e3e04c20a4879321187f7ee1.jpg", "file_size": 16991, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6bbd89e3e04c20a4879321187f7ee1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6bbd89e3e04c20a4879321187f7ee1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6bbd89e3e04c20a4879321187f7ee1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d6bbd89e3e04c20a4879321187f7ee1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d6bbd89e3e04c20a4879321187f7ee1.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uV53dmRkLBGcEug02r_nI7_ejPk=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.547458+00 2025-12-09 10:15:23.547464+00 13978 LJH1717-2#A2色 SPMX-20240815309163 \N \N \N 1 \N [{"file_id": "0a0e8f77-c2ce-4498-b623-073fec555917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9a8587e7f484f7cbf7f5bf13c6d6656.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9a8587e7f484f7cbf7f5bf13c6d6656.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9a8587e7f484f7cbf7f5bf13c6d6656.jpg", "file_size": 50019, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#A2色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8587e7f484f7cbf7f5bf13c6d6656.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8587e7f484f7cbf7f5bf13c6d6656.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8587e7f484f7cbf7f5bf13c6d6656.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9a8587e7f484f7cbf7f5bf13c6d6656.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9a8587e7f484f7cbf7f5bf13c6d6656.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zieZV1U-oUvKbhC5nmj6ieB4_8=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.549856+00 2025-12-09 10:15:23.549862+00 13979 23-2123#A11-4XL SPMX-20240815309179 \N \N \N 1 \N [{"file_id": "39f1fd13-ee3c-4c76-bee6-c2fb178bbb4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76c7f4e8579148e4bc9d20dff17e4f0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76c7f4e8579148e4bc9d20dff17e4f0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76c7f4e8579148e4bc9d20dff17e4f0c.jpg", "file_size": 15362, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c7f4e8579148e4bc9d20dff17e4f0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c7f4e8579148e4bc9d20dff17e4f0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c7f4e8579148e4bc9d20dff17e4f0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76c7f4e8579148e4bc9d20dff17e4f0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76c7f4e8579148e4bc9d20dff17e4f0c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQ6EVjfFWix3wyF4M7bzP2SJurU=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.55213+00 2025-12-09 10:15:23.552136+00 13980 0005-5FWE#-4 SPMX-20240815309180 \N \N \N 1 \N [{"file_id": "2231aff8-0b62-4498-a347-65c4c21e2d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31851e2bbd544e7c96b4df7ace2b9201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31851e2bbd544e7c96b4df7ace2b9201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31851e2bbd544e7c96b4df7ace2b9201.jpg", "file_size": 9517, "is_delete": false, "file_type": 1, "original_file_name": "0005-5FWE#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31851e2bbd544e7c96b4df7ace2b9201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31851e2bbd544e7c96b4df7ace2b9201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31851e2bbd544e7c96b4df7ace2b9201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31851e2bbd544e7c96b4df7ace2b9201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31851e2bbd544e7c96b4df7ace2b9201.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pxMd6sujpT333kTx4F6sfmIay2o=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.554631+00 2025-12-09 10:15:23.554637+00 13981 LJH1717-2#A4色 SPMX-20240815309185 \N \N \N 1 \N [{"file_id": "3bf8a86a-1941-41fb-b4c7-d87fd5b4f364", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80e54e6341424a45913bd44fbdd105cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80e54e6341424a45913bd44fbdd105cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80e54e6341424a45913bd44fbdd105cd.jpg", "file_size": 48260, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#A4色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e54e6341424a45913bd44fbdd105cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e54e6341424a45913bd44fbdd105cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e54e6341424a45913bd44fbdd105cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80e54e6341424a45913bd44fbdd105cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80e54e6341424a45913bd44fbdd105cd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vD29lQjwaY0E6NsYvGAfEtyEEEQ=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.557129+00 2025-12-09 10:15:23.557135+00 13982 HT5071-4#WJC22 SPMX-20240815309182 \N \N \N 1 \N [{"file_id": "85e2e70e-d7a8-4d4e-9d0a-50a534c55734", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7558b83c0d8416db555196397ae794c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7558b83c0d8416db555196397ae794c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7558b83c0d8416db555196397ae794c.jpg", "file_size": 18732, "is_delete": false, "file_type": 1, "original_file_name": "HT5071-4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7558b83c0d8416db555196397ae794c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7558b83c0d8416db555196397ae794c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7558b83c0d8416db555196397ae794c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7558b83c0d8416db555196397ae794c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7558b83c0d8416db555196397ae794c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ySJRyDuerR_rBHdVAL1-QuvztaI=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.559637+00 2025-12-09 10:15:23.559642+00 13983 JTSS505FW#黑VS-D3 SPMX-20240815309181 \N \N \N 1 \N [{"file_id": "1c2fa37a-7f76-4461-bca3-50090f28f23b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52c692deb70148a7990562db4cadb77e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52c692deb70148a7990562db4cadb77e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52c692deb70148a7990562db4cadb77e.jpg", "file_size": 11649, "is_delete": false, "file_type": 1, "original_file_name": "JTSS505FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c692deb70148a7990562db4cadb77e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c692deb70148a7990562db4cadb77e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c692deb70148a7990562db4cadb77e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52c692deb70148a7990562db4cadb77e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52c692deb70148a7990562db4cadb77e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTh_psU_Ypgcw14izBRS4x0iLL4=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.562127+00 2025-12-09 10:15:23.562133+00 13984 DL31125-3#批布黄色 SPMX-20240815309178 \N \N \N 1 \N [{"file_id": "563aa7d3-9f2d-4bde-bf73-3ee73020536c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2f784a9e7564065baa495b6ec8b17a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2f784a9e7564065baa495b6ec8b17a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2f784a9e7564065baa495b6ec8b17a8.jpg", "file_size": 16421, "is_delete": false, "file_type": 1, "original_file_name": "DL31125-3#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f784a9e7564065baa495b6ec8b17a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f784a9e7564065baa495b6ec8b17a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f784a9e7564065baa495b6ec8b17a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2f784a9e7564065baa495b6ec8b17a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2f784a9e7564065baa495b6ec8b17a8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mY4H8K9if3H9zrxjIwkbiu4BR4c=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.564663+00 2025-12-09 10:15:23.564668+00 13985 8353FWF#乱花番禺调色 SPMX-20240815309183 \N \N \N 1 \N [{"file_id": "a6b1c418-f42a-4773-b53c-6d38ecf62eda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "128a33f3ba114cf9891516aac91138b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "128a33f3ba114cf9891516aac91138b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "128a33f3ba114cf9891516aac91138b7.jpg", "file_size": 9798, "is_delete": false, "file_type": 1, "original_file_name": "8353FWF#乱花番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128a33f3ba114cf9891516aac91138b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128a33f3ba114cf9891516aac91138b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/128a33f3ba114cf9891516aac91138b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/128a33f3ba114cf9891516aac91138b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/128a33f3ba114cf9891516aac91138b7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXWd8trWIPPcTZDpSsovzlrACco=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.567187+00 2025-12-09 10:15:23.567193+00 13986 118-3#WJC22 SPMX-20240815309184 \N \N \N 1 \N [{"file_id": "8ce0b414-ce74-4dc4-9845-19ebdfd293c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a1099ba42bd4f03b50900aa6fba53f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a1099ba42bd4f03b50900aa6fba53f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a1099ba42bd4f03b50900aa6fba53f6.jpg", "file_size": 11367, "is_delete": false, "file_type": 1, "original_file_name": "118-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1099ba42bd4f03b50900aa6fba53f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1099ba42bd4f03b50900aa6fba53f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a1099ba42bd4f03b50900aa6fba53f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a1099ba42bd4f03b50900aa6fba53f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a1099ba42bd4f03b50900aa6fba53f6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkLvsVzghPjczRD6d6Xlicd4tXg=", "createTime": "2024-08-15 14:56:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.569726+00 2025-12-09 10:15:23.569731+00 13987 LZ1325#背心款2号色 SPMX-20240815309177 \N \N \N 1 \N [{"file_id": "eb729f1f-ae38-45dc-82fe-86dcad320dbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg", "file_size": 17320, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c57fc70bee9c4ce2aaabaed63c8d7d3f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zpEyrIacbZQKrxjo-b6n9e0E34=", "createTime": "2024-08-15 14:56:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.572175+00 2025-12-09 10:15:23.57218+00 13988 8354FWF#2XL SPMX-20240815309192 \N \N \N 1 \N [{"file_id": "d190d8de-ab93-4449-9698-f50dd641f9ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56d21f6f33274c5b8cce9847023b0cbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56d21f6f33274c5b8cce9847023b0cbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56d21f6f33274c5b8cce9847023b0cbd.jpg", "file_size": 17653, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d21f6f33274c5b8cce9847023b0cbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d21f6f33274c5b8cce9847023b0cbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d21f6f33274c5b8cce9847023b0cbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56d21f6f33274c5b8cce9847023b0cbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56d21f6f33274c5b8cce9847023b0cbd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTioX4ASQ9TNXmBPBCv6gyLd_58=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.574699+00 2025-12-09 10:15:23.574711+00 13989 HT5072#橘色 SPMX-20240815309193 \N \N \N 1 \N [{"file_id": "cd847b3d-b1b8-417a-bf18-a90ec6cc80b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0600de7e4a24e3b9332676e547f88f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0600de7e4a24e3b9332676e547f88f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0600de7e4a24e3b9332676e547f88f6.jpg", "file_size": 11795, "is_delete": false, "file_type": 1, "original_file_name": "HT5072#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0600de7e4a24e3b9332676e547f88f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0600de7e4a24e3b9332676e547f88f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0600de7e4a24e3b9332676e547f88f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0600de7e4a24e3b9332676e547f88f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0600de7e4a24e3b9332676e547f88f6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxd9vY3MX7IxsS9Do0FfrsVky-s=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.577218+00 2025-12-09 10:15:23.577223+00 13990 LJH1717-2#原版色 SPMX-20240815309195 \N \N \N 1 \N [{"file_id": "67d84d58-8f9f-47ee-8989-f0bcc7281355", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "336552aeefbd4cbaaf55205fbe4ae152.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "336552aeefbd4cbaaf55205fbe4ae152.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "336552aeefbd4cbaaf55205fbe4ae152.jpg", "file_size": 47589, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336552aeefbd4cbaaf55205fbe4ae152.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336552aeefbd4cbaaf55205fbe4ae152.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336552aeefbd4cbaaf55205fbe4ae152.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/336552aeefbd4cbaaf55205fbe4ae152.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/336552aeefbd4cbaaf55205fbe4ae152.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_O1xqsU_WARM2EbrDXIIjA1GOjo=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.579744+00 2025-12-09 10:15:23.57975+00 13991 C929#A6 SPMX-20240815309188 \N \N \N 1 \N [{"file_id": "0d49e1a8-2092-401f-9218-1c3a848185e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1040993b6f14ec5a49ab7dcb79225fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1040993b6f14ec5a49ab7dcb79225fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1040993b6f14ec5a49ab7dcb79225fc.jpg", "file_size": 16392, "is_delete": false, "file_type": 1, "original_file_name": "C929#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1040993b6f14ec5a49ab7dcb79225fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1040993b6f14ec5a49ab7dcb79225fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1040993b6f14ec5a49ab7dcb79225fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1040993b6f14ec5a49ab7dcb79225fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1040993b6f14ec5a49ab7dcb79225fc.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4BBy43Au49iw5O64iOS86u_mQ0=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.582253+00 2025-12-09 10:15:23.582259+00 13992 FM032#粉色 SPMX-20240815309186 \N \N \N 1 \N [{"file_id": "5f596f68-0945-4231-a5c0-8d45ff153318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd160e5f334a4c97b0ff4a64606f9585.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd160e5f334a4c97b0ff4a64606f9585.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd160e5f334a4c97b0ff4a64606f9585.jpg", "file_size": 17291, "is_delete": false, "file_type": 1, "original_file_name": "FM032#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd160e5f334a4c97b0ff4a64606f9585.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd160e5f334a4c97b0ff4a64606f9585.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd160e5f334a4c97b0ff4a64606f9585.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd160e5f334a4c97b0ff4a64606f9585.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd160e5f334a4c97b0ff4a64606f9585.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fTGOFZp08lfkxH0Ry8Sh-54ZjM=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.584764+00 2025-12-09 10:15:23.58477+00 13993 DL31128-2#上身原版色 SPMX-20240815309189 \N \N \N 1 \N [{"file_id": "112bd82f-43bf-49c1-9136-6ee3cebd4fc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "466889aefab74f708332c8eb22d23d45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "466889aefab74f708332c8eb22d23d45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "466889aefab74f708332c8eb22d23d45.jpg", "file_size": 14638, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#上身原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466889aefab74f708332c8eb22d23d45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466889aefab74f708332c8eb22d23d45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/466889aefab74f708332c8eb22d23d45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/466889aefab74f708332c8eb22d23d45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/466889aefab74f708332c8eb22d23d45.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwHCQbaSg6Sww2zlzKfnsdWqSyQ=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.587293+00 2025-12-09 10:15:23.587299+00 13994 0005-5FWF#V5曲线 SPMX-20240815309190 \N \N \N 1 \N [{"file_id": "2253e9b0-a885-4052-a5de-638f01483afe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d98433a793a64ac7aed7042dc5023b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d98433a793a64ac7aed7042dc5023b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d98433a793a64ac7aed7042dc5023b64.jpg", "file_size": 10563, "is_delete": false, "file_type": 1, "original_file_name": "0005-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98433a793a64ac7aed7042dc5023b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98433a793a64ac7aed7042dc5023b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98433a793a64ac7aed7042dc5023b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d98433a793a64ac7aed7042dc5023b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d98433a793a64ac7aed7042dc5023b64.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bLsEv4rGe2L0GFTBbsqXTs19vDs=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.589825+00 2025-12-09 10:15:23.589831+00 13995 1185FWE#绿色2XL SPMX-20240815309194 \N \N \N 1 \N [{"file_id": "f1f2b4dd-6b9e-4931-97d6-4d49af914a23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89a30eea4294423b90a4558fb5967e6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89a30eea4294423b90a4558fb5967e6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89a30eea4294423b90a4558fb5967e6e.jpg", "file_size": 19183, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a30eea4294423b90a4558fb5967e6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a30eea4294423b90a4558fb5967e6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a30eea4294423b90a4558fb5967e6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89a30eea4294423b90a4558fb5967e6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89a30eea4294423b90a4558fb5967e6e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTODiwSxq1qktwndu0H6OgvZ-ek=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.592325+00 2025-12-09 10:15:23.59233+00 13996 LZ1325#背心款3号色 SPMX-20240815309187 \N \N \N 1 \N [{"file_id": "180f2d87-8d25-42a6-8703-17902611b9b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9f5838fa8fd430f88f622fae4aeb16b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9f5838fa8fd430f88f622fae4aeb16b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9f5838fa8fd430f88f622fae4aeb16b.jpg", "file_size": 16624, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f5838fa8fd430f88f622fae4aeb16b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f5838fa8fd430f88f622fae4aeb16b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f5838fa8fd430f88f622fae4aeb16b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9f5838fa8fd430f88f622fae4aeb16b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9f5838fa8fd430f88f622fae4aeb16b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hfQlQJyAGSEsnnbPtYV-NDXL26c=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.594858+00 2025-12-09 10:15:23.594864+00 13997 JTSS506FW#墨绿VS-D3 SPMX-20240815309196 \N \N \N 1 \N [{"file_id": "5a8f4530-5467-4beb-95d1-f3d6c2d8f9e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38262e7e61b74e3994ad09cb2fb035ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38262e7e61b74e3994ad09cb2fb035ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38262e7e61b74e3994ad09cb2fb035ff.jpg", "file_size": 11822, "is_delete": false, "file_type": 1, "original_file_name": "JTSS506FW#墨绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38262e7e61b74e3994ad09cb2fb035ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38262e7e61b74e3994ad09cb2fb035ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38262e7e61b74e3994ad09cb2fb035ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38262e7e61b74e3994ad09cb2fb035ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38262e7e61b74e3994ad09cb2fb035ff.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:euJggibVw3-ttfswVFezzWANG64=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.597309+00 2025-12-09 10:15:23.597314+00 13998 23-2123#A11-领子3XL SPMX-20240815309191 \N \N \N 1 \N [{"file_id": "509fb261-e5ab-4b9d-9d96-f4cf30d1104a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f01569a4c66341c69dd926fd3de61097.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f01569a4c66341c69dd926fd3de61097.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f01569a4c66341c69dd926fd3de61097.jpg", "file_size": 12816, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01569a4c66341c69dd926fd3de61097.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01569a4c66341c69dd926fd3de61097.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01569a4c66341c69dd926fd3de61097.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f01569a4c66341c69dd926fd3de61097.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f01569a4c66341c69dd926fd3de61097.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmmgOtsqXEvPCvUD3OrZWjpkOko=", "createTime": "2024-08-15 14:56:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.599414+00 2025-12-09 10:15:23.59942+00 13999 HT5072#绿色 SPMX-20240815309204 \N \N \N 1 \N [{"file_id": "6cb0f8fe-6a86-463e-b687-f0dabb901208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b92dcaf68923455d8b7d07e1ced5e7b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b92dcaf68923455d8b7d07e1ced5e7b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b92dcaf68923455d8b7d07e1ced5e7b6.jpg", "file_size": 11904, "is_delete": false, "file_type": 1, "original_file_name": "HT5072#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92dcaf68923455d8b7d07e1ced5e7b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92dcaf68923455d8b7d07e1ced5e7b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92dcaf68923455d8b7d07e1ced5e7b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b92dcaf68923455d8b7d07e1ced5e7b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b92dcaf68923455d8b7d07e1ced5e7b6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLuhzlB5L7BcfwafIQRRZrzQmAM=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.601846+00 2025-12-09 10:15:23.601852+00 14000 1185FWE#绿色4XL SPMX-20240815309205 \N \N \N 1 \N [{"file_id": "36014c6b-8b8a-480e-ac46-1a473e884981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b7c22a64e644b3ba98d73e508322fff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b7c22a64e644b3ba98d73e508322fff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b7c22a64e644b3ba98d73e508322fff.jpg", "file_size": 18004, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#绿色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b7c22a64e644b3ba98d73e508322fff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b7c22a64e644b3ba98d73e508322fff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b7c22a64e644b3ba98d73e508322fff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b7c22a64e644b3ba98d73e508322fff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b7c22a64e644b3ba98d73e508322fff.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gFK4Sm0-MQFj40PazBgLNgUoqcQ=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.60418+00 2025-12-09 10:15:23.604186+00 14001 DL31128-2#上身墨绿 SPMX-20240815309202 \N \N \N 1 \N [{"file_id": "d7680ae4-85c6-4bd5-b82f-9588e1fa4803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "042dc148dd534595894eb4c1a01cb391.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "042dc148dd534595894eb4c1a01cb391.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "042dc148dd534595894eb4c1a01cb391.jpg", "file_size": 14653, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042dc148dd534595894eb4c1a01cb391.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042dc148dd534595894eb4c1a01cb391.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042dc148dd534595894eb4c1a01cb391.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/042dc148dd534595894eb4c1a01cb391.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/042dc148dd534595894eb4c1a01cb391.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lCgTvQ01nCyiP8j88zgY3BHt-xU=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.606304+00 2025-12-09 10:15:23.606309+00 14002 23-2123#A11-领子4XL SPMX-20240815309203 \N \N \N 1 \N [{"file_id": "bf2a6aca-91ca-41a4-ba0d-a25726f06629", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "635fcb121ee8492ca8dabff2fa7f98c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "635fcb121ee8492ca8dabff2fa7f98c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "635fcb121ee8492ca8dabff2fa7f98c1.jpg", "file_size": 13403, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/635fcb121ee8492ca8dabff2fa7f98c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/635fcb121ee8492ca8dabff2fa7f98c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/635fcb121ee8492ca8dabff2fa7f98c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/635fcb121ee8492ca8dabff2fa7f98c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/635fcb121ee8492ca8dabff2fa7f98c1.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0prYRHr85GMC-owa_-AAE4vfN8=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.608394+00 2025-12-09 10:15:23.6084+00 14003 0005-6#WJC22 SPMX-20240815309200 \N \N \N 1 \N [{"file_id": "695f8a28-918d-4476-99d7-b6634ec2d266", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea6666f623384efeb4504d65acc250c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea6666f623384efeb4504d65acc250c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea6666f623384efeb4504d65acc250c9.jpg", "file_size": 15134, "is_delete": false, "file_type": 1, "original_file_name": "0005-6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6666f623384efeb4504d65acc250c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6666f623384efeb4504d65acc250c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea6666f623384efeb4504d65acc250c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea6666f623384efeb4504d65acc250c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea6666f623384efeb4504d65acc250c9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qu5ZOL2YE_lggVOi2YlXQsiIHfU=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.610504+00 2025-12-09 10:15:23.61051+00 14004 C929FWF#L SPMX-20240815309199 \N \N \N 1 \N [{"file_id": "bc5261cd-51db-4566-b46b-f1c9b114b592", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca1aa74eadec44498e459cc211328ee4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca1aa74eadec44498e459cc211328ee4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca1aa74eadec44498e459cc211328ee4.jpg", "file_size": 13132, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca1aa74eadec44498e459cc211328ee4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca1aa74eadec44498e459cc211328ee4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca1aa74eadec44498e459cc211328ee4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca1aa74eadec44498e459cc211328ee4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca1aa74eadec44498e459cc211328ee4.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4ECq2xxbelITwhEXD2ZS4YHDe4=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.612918+00 2025-12-09 10:15:23.612924+00 14005 FM032#红色 SPMX-20240815309197 \N \N \N 1 \N [{"file_id": "79da26df-45a4-4455-b139-edf4894ca55a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2001b9cacab244e29181102f477709a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2001b9cacab244e29181102f477709a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2001b9cacab244e29181102f477709a0.jpg", "file_size": 17982, "is_delete": false, "file_type": 1, "original_file_name": "FM032#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2001b9cacab244e29181102f477709a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2001b9cacab244e29181102f477709a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2001b9cacab244e29181102f477709a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2001b9cacab244e29181102f477709a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2001b9cacab244e29181102f477709a0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTGAYx98DhDWFG4k1ruD3Dj0-AI=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.615201+00 2025-12-09 10:15:23.615206+00 14006 FM032#黄色 SPMX-20240815309208 \N \N \N 1 \N [{"file_id": "cf649840-542d-4f8d-878b-6a36e4ed2efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b210de17536841e3a788552ce6113e50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b210de17536841e3a788552ce6113e50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b210de17536841e3a788552ce6113e50.jpg", "file_size": 17938, "is_delete": false, "file_type": 1, "original_file_name": "FM032#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210de17536841e3a788552ce6113e50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210de17536841e3a788552ce6113e50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210de17536841e3a788552ce6113e50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b210de17536841e3a788552ce6113e50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b210de17536841e3a788552ce6113e50.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_NHGMl-gdaFXTSfB147S4K33lHE=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.617551+00 2025-12-09 10:15:23.617557+00 14007 LZ1325#背心款4号色 SPMX-20240815309198 \N \N \N 1 \N [{"file_id": "600529bf-bef9-416d-9c14-1fdb7555a4e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08fb97c29d004b8abc3a412287081b42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08fb97c29d004b8abc3a412287081b42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08fb97c29d004b8abc3a412287081b42.jpg", "file_size": 17170, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fb97c29d004b8abc3a412287081b42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fb97c29d004b8abc3a412287081b42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fb97c29d004b8abc3a412287081b42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08fb97c29d004b8abc3a412287081b42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08fb97c29d004b8abc3a412287081b42.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsXS6JWrP3K-nUhA8Mub-6-dIko=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.619951+00 2025-12-09 10:15:23.619957+00 14008 JTSS506FW#紫VS-D3 SPMX-20240815309207 \N \N \N 1 \N [{"file_id": "99aa52f0-21af-45b9-b1a9-a9611e9da464", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b6cb0ae347e444a830a434c97ecabd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b6cb0ae347e444a830a434c97ecabd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b6cb0ae347e444a830a434c97ecabd9.jpg", "file_size": 12524, "is_delete": false, "file_type": 1, "original_file_name": "JTSS506FW#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6cb0ae347e444a830a434c97ecabd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6cb0ae347e444a830a434c97ecabd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6cb0ae347e444a830a434c97ecabd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b6cb0ae347e444a830a434c97ecabd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b6cb0ae347e444a830a434c97ecabd9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ka5KJ3S1_spAxNXPOKmIxGWHEaU=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.622576+00 2025-12-09 10:15:23.622581+00 14009 8354FWF#3XL SPMX-20240815309201 \N \N \N 1 \N [{"file_id": "90de66f0-95af-4512-9361-cfd7e590e4de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce1f9f1a1f64fe59a35c291ea9d663e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce1f9f1a1f64fe59a35c291ea9d663e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce1f9f1a1f64fe59a35c291ea9d663e.jpg", "file_size": 17461, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce1f9f1a1f64fe59a35c291ea9d663e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce1f9f1a1f64fe59a35c291ea9d663e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce1f9f1a1f64fe59a35c291ea9d663e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce1f9f1a1f64fe59a35c291ea9d663e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce1f9f1a1f64fe59a35c291ea9d663e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Oq2qcfdBR3KcAY6F5dvTENYwDM=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.624944+00 2025-12-09 10:15:23.624949+00 14010 LJH1717-2#彩兰色 SPMX-20240815309206 \N \N \N 1 \N [{"file_id": "3f79fbac-6483-4ac8-af3c-a7b4f86f88ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61ecd246fd664882a9aa61af41a96647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61ecd246fd664882a9aa61af41a96647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61ecd246fd664882a9aa61af41a96647.jpg", "file_size": 72377, "is_delete": false, "file_type": 1, "original_file_name": "LJH1717-2#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61ecd246fd664882a9aa61af41a96647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61ecd246fd664882a9aa61af41a96647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61ecd246fd664882a9aa61af41a96647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61ecd246fd664882a9aa61af41a96647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61ecd246fd664882a9aa61af41a96647.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3akhBG5QL_gZa8776h-JAdBx8YA=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.627622+00 2025-12-09 10:15:23.627627+00 14011 LZ1325#背心款5号色 SPMX-20240815309210 \N \N \N 1 \N [{"file_id": "e318dfba-97f7-40ed-b2ef-7ccfe7e9d2b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg", "file_size": 16872, "is_delete": false, "file_type": 1, "original_file_name": "LZ1325#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e7eab85ba034aa9a5f14f6fb9ecf34c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmdIOU0Ygean7PdsZFBW5wN88qc=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.630302+00 2025-12-09 10:15:23.630307+00 14012 C929FWF#M SPMX-20240815309209 \N \N \N 1 \N [{"file_id": "ed39c51a-4c5f-4b7d-8879-274cc6ff2817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d72e91976e2c4a80b8b5520140a1ade2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d72e91976e2c4a80b8b5520140a1ade2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d72e91976e2c4a80b8b5520140a1ade2.jpg", "file_size": 13107, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72e91976e2c4a80b8b5520140a1ade2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72e91976e2c4a80b8b5520140a1ade2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d72e91976e2c4a80b8b5520140a1ade2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d72e91976e2c4a80b8b5520140a1ade2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d72e91976e2c4a80b8b5520140a1ade2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zut5xXxSlw_rlkX0oXl5d0PVtC8=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.632895+00 2025-12-09 10:15:23.6329+00 14013 0005-6#WJC22番禺调色 SPMX-20240815309211 \N \N \N 1 \N [{"file_id": "b18747ba-da95-4937-a2be-30a45c6cf0d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cee5d3a047b74c7597127b4ada92e5a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cee5d3a047b74c7597127b4ada92e5a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cee5d3a047b74c7597127b4ada92e5a6.jpg", "file_size": 16729, "is_delete": false, "file_type": 1, "original_file_name": "0005-6#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee5d3a047b74c7597127b4ada92e5a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee5d3a047b74c7597127b4ada92e5a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cee5d3a047b74c7597127b4ada92e5a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cee5d3a047b74c7597127b4ada92e5a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cee5d3a047b74c7597127b4ada92e5a6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odbcG9jm_jm5OgTRPLDw_xi7qWk=", "createTime": "2024-08-15 14:56:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.635595+00 2025-12-09 10:15:23.635601+00 14014 8354FWF#4XL SPMX-20240815309214 \N \N \N 1 \N [{"file_id": "e27e254f-971f-49f6-b56a-ceed3fd42d3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1974cfb68992465a9f42fb00fc470690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1974cfb68992465a9f42fb00fc470690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1974cfb68992465a9f42fb00fc470690.jpg", "file_size": 17465, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1974cfb68992465a9f42fb00fc470690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1974cfb68992465a9f42fb00fc470690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1974cfb68992465a9f42fb00fc470690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1974cfb68992465a9f42fb00fc470690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1974cfb68992465a9f42fb00fc470690.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99HJzt_XMVYvByQc5jz_Z79r9k0=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.63803+00 2025-12-09 10:15:23.638035+00 14015 1185FWE#绿色L SPMX-20240815309213 \N \N \N 1 \N [{"file_id": "39897af6-65b7-4cbf-9fed-df0118929c2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b48e18487d4e70ab33e9f3e4922d11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b48e18487d4e70ab33e9f3e4922d11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b48e18487d4e70ab33e9f3e4922d11.jpg", "file_size": 18087, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b48e18487d4e70ab33e9f3e4922d11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b48e18487d4e70ab33e9f3e4922d11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b48e18487d4e70ab33e9f3e4922d11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b48e18487d4e70ab33e9f3e4922d11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b48e18487d4e70ab33e9f3e4922d11.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYlxdM89pnOhjwdNtGzerdVCWM0=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.640636+00 2025-12-09 10:15:23.640641+00 14016 23-2123#A12-3XL SPMX-20240815309212 \N \N \N 1 \N [{"file_id": "d0427915-d698-4321-b85e-bd23f35f5ba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfca6f634dd34b5b8a2709cdb9c59224.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfca6f634dd34b5b8a2709cdb9c59224.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfca6f634dd34b5b8a2709cdb9c59224.jpg", "file_size": 16350, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfca6f634dd34b5b8a2709cdb9c59224.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfca6f634dd34b5b8a2709cdb9c59224.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfca6f634dd34b5b8a2709cdb9c59224.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfca6f634dd34b5b8a2709cdb9c59224.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfca6f634dd34b5b8a2709cdb9c59224.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPitVjlHkv-41qwQmB4LF8erhos=", "createTime": "2024-08-15 14:56:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.642711+00 2025-12-09 10:15:23.642717+00 14017 JTSS506FW#紫红VS-D3 SPMX-20240815309223 \N \N \N 1 \N [{"file_id": "91c2e616-d721-4f8c-87c5-dc030ce82de4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f508fa91fde64cec83f29ea3f139fe67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f508fa91fde64cec83f29ea3f139fe67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f508fa91fde64cec83f29ea3f139fe67.jpg", "file_size": 12543, "is_delete": false, "file_type": 1, "original_file_name": "JTSS506FW#紫红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f508fa91fde64cec83f29ea3f139fe67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f508fa91fde64cec83f29ea3f139fe67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f508fa91fde64cec83f29ea3f139fe67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f508fa91fde64cec83f29ea3f139fe67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f508fa91fde64cec83f29ea3f139fe67.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RzOgNglEIAQVzR87ijwos4GIngk=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.644801+00 2025-12-09 10:15:23.644806+00 14018 C929FWF#S SPMX-20240815309215 \N \N \N 1 \N [{"file_id": "3113e103-4ca7-439a-aea6-aa26363c99c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg", "file_size": 12810, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1b2d1bfd9d448b2bbbb066ec8b4b4e6.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ45N_RmN6XHAv72H9FPgm-i4hQ=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.647147+00 2025-12-09 10:15:23.647152+00 14019 LJH1718#玫红 SPMX-20240815309219 \N \N \N 1 \N [{"file_id": "4b4b8704-7b7e-4225-bf19-a4b4ce4dc097", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7e4d9982e4342878a1c8c03f38d6039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7e4d9982e4342878a1c8c03f38d6039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7e4d9982e4342878a1c8c03f38d6039.jpg", "file_size": 50517, "is_delete": false, "file_type": 1, "original_file_name": "LJH1718#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e4d9982e4342878a1c8c03f38d6039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e4d9982e4342878a1c8c03f38d6039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e4d9982e4342878a1c8c03f38d6039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7e4d9982e4342878a1c8c03f38d6039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7e4d9982e4342878a1c8c03f38d6039.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B34NEaFgG3PokKw5kVSN52N49VA=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.649472+00 2025-12-09 10:15:23.649477+00 14020 1185FWE#绿色XL SPMX-20240815309221 \N \N \N 1 \N [{"file_id": "4e0520c4-5cf2-49fe-9368-3d940b6650b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87527fd6bfbc4f229430bdeed0af12c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87527fd6bfbc4f229430bdeed0af12c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87527fd6bfbc4f229430bdeed0af12c8.jpg", "file_size": 18492, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87527fd6bfbc4f229430bdeed0af12c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87527fd6bfbc4f229430bdeed0af12c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87527fd6bfbc4f229430bdeed0af12c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87527fd6bfbc4f229430bdeed0af12c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87527fd6bfbc4f229430bdeed0af12c8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kpmYFWfyl_1ktAzc2XPgzXWJps0=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.65172+00 2025-12-09 10:15:23.651725+00 14021 DL31128-2#上身彩兰 SPMX-20240815309218 \N \N \N 1 \N [{"file_id": "fcf7d5cb-f684-4abc-8e88-66b1a3a5e6b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c7c1cad6e245e7a2350b1e53e2ace3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c7c1cad6e245e7a2350b1e53e2ace3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c7c1cad6e245e7a2350b1e53e2ace3.jpg", "file_size": 14907, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#上身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c7c1cad6e245e7a2350b1e53e2ace3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c7c1cad6e245e7a2350b1e53e2ace3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c7c1cad6e245e7a2350b1e53e2ace3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c7c1cad6e245e7a2350b1e53e2ace3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c7c1cad6e245e7a2350b1e53e2ace3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihLyflIl_pBExXI8GGSj6amrvzU=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.653815+00 2025-12-09 10:15:23.65382+00 14022 LZ1326#捆条布 SPMX-20240815309216 \N \N \N 1 \N [{"file_id": "edf691ef-8f60-4279-8c20-9b17b1a7948b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50e125a03b684cdc8b8a3c183547e5e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50e125a03b684cdc8b8a3c183547e5e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50e125a03b684cdc8b8a3c183547e5e7.jpg", "file_size": 22763, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e125a03b684cdc8b8a3c183547e5e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e125a03b684cdc8b8a3c183547e5e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50e125a03b684cdc8b8a3c183547e5e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50e125a03b684cdc8b8a3c183547e5e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50e125a03b684cdc8b8a3c183547e5e7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zf9Gw83Tt1mOSauUoS68MTKQ3yc=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.655884+00 2025-12-09 10:15:23.655889+00 14023 HT5072#黄色 SPMX-20240815309217 \N \N \N 1 \N [{"file_id": "358b05bc-5724-48ce-9bd8-e2476054e9ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47f4baa4113b4d7d9791c56be610b7cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47f4baa4113b4d7d9791c56be610b7cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47f4baa4113b4d7d9791c56be610b7cd.jpg", "file_size": 13120, "is_delete": false, "file_type": 1, "original_file_name": "HT5072#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f4baa4113b4d7d9791c56be610b7cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f4baa4113b4d7d9791c56be610b7cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f4baa4113b4d7d9791c56be610b7cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47f4baa4113b4d7d9791c56be610b7cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47f4baa4113b4d7d9791c56be610b7cd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHGJgUqJS8sNf7RlQ1R1fjq1zw8=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.658278+00 2025-12-09 10:15:23.658284+00 14024 23-2123#A12-4XL SPMX-20240815309225 \N \N \N 1 \N [{"file_id": "1bd2b535-2d7f-4d4e-9c09-a0ac8a42cac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "845ea8cd80df48f8aaa5c86a2cabac36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "845ea8cd80df48f8aaa5c86a2cabac36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "845ea8cd80df48f8aaa5c86a2cabac36.jpg", "file_size": 14784, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/845ea8cd80df48f8aaa5c86a2cabac36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/845ea8cd80df48f8aaa5c86a2cabac36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/845ea8cd80df48f8aaa5c86a2cabac36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/845ea8cd80df48f8aaa5c86a2cabac36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/845ea8cd80df48f8aaa5c86a2cabac36.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:walxcR98mHs_H3aQKg1HzjAKcOo=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.660568+00 2025-12-09 10:15:23.660573+00 14025 FM033#彩兰 SPMX-20240815309222 \N \N \N 1 \N [{"file_id": "9c2a32b1-5df3-4dec-819d-ff45b38a9ff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7941b3dacf1e42c28c5ff4884181f05a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7941b3dacf1e42c28c5ff4884181f05a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7941b3dacf1e42c28c5ff4884181f05a.jpg", "file_size": 19461, "is_delete": false, "file_type": 1, "original_file_name": "FM033#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7941b3dacf1e42c28c5ff4884181f05a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7941b3dacf1e42c28c5ff4884181f05a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7941b3dacf1e42c28c5ff4884181f05a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7941b3dacf1e42c28c5ff4884181f05a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7941b3dacf1e42c28c5ff4884181f05a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLfBUWgNZ5FbD2kG8tF5mt2rl1I=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.662669+00 2025-12-09 10:15:23.662674+00 14026 0005-6FWF#V5曲线番禺调色 SPMX-20240815309220 \N \N \N 1 \N [{"file_id": "546e8ef1-ac26-45fc-8223-0826eab8a1c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03b38a8743bf491ea9bef7fed8c05768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03b38a8743bf491ea9bef7fed8c05768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03b38a8743bf491ea9bef7fed8c05768.jpg", "file_size": 14299, "is_delete": false, "file_type": 1, "original_file_name": "0005-6FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03b38a8743bf491ea9bef7fed8c05768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03b38a8743bf491ea9bef7fed8c05768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03b38a8743bf491ea9bef7fed8c05768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03b38a8743bf491ea9bef7fed8c05768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03b38a8743bf491ea9bef7fed8c05768.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10Wf0ScftqBcxmTJYEEenrQIs1c=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.664723+00 2025-12-09 10:15:23.664728+00 14027 8354FWF#5XL SPMX-20240815309224 \N \N \N 1 \N [{"file_id": "719b58c7-1fc6-4410-9382-a721322e6c4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0783d3165b84c0087bfcc384d5c62c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0783d3165b84c0087bfcc384d5c62c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0783d3165b84c0087bfcc384d5c62c9.jpg", "file_size": 16367, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0783d3165b84c0087bfcc384d5c62c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0783d3165b84c0087bfcc384d5c62c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0783d3165b84c0087bfcc384d5c62c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0783d3165b84c0087bfcc384d5c62c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0783d3165b84c0087bfcc384d5c62c9.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Q3OtI7_zG6Jy5C00sFrLtVCIHA=", "createTime": "2024-08-15 14:56:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.666817+00 2025-12-09 10:15:23.666823+00 14028 8354FWF#L SPMX-20240815309235 \N \N \N 1 \N [{"file_id": "400c7293-35db-44f9-bea1-bb67bfbfff9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb4039dd52f44f8ead1446476b6b4d5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb4039dd52f44f8ead1446476b6b4d5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb4039dd52f44f8ead1446476b6b4d5e.jpg", "file_size": 17640, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4039dd52f44f8ead1446476b6b4d5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4039dd52f44f8ead1446476b6b4d5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4039dd52f44f8ead1446476b6b4d5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb4039dd52f44f8ead1446476b6b4d5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb4039dd52f44f8ead1446476b6b4d5e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNbwN0ee4-r64KSExww3_js0FLk=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.668916+00 2025-12-09 10:15:23.668921+00 14029 FM033#桔色 SPMX-20240815309230 \N \N \N 1 \N [{"file_id": "9c5d7935-0168-44c4-b352-f6a674d84aa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a42ac87755c4d92863651eea6b95e5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a42ac87755c4d92863651eea6b95e5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a42ac87755c4d92863651eea6b95e5c.jpg", "file_size": 17854, "is_delete": false, "file_type": 1, "original_file_name": "FM033#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a42ac87755c4d92863651eea6b95e5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a42ac87755c4d92863651eea6b95e5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a42ac87755c4d92863651eea6b95e5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a42ac87755c4d92863651eea6b95e5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a42ac87755c4d92863651eea6b95e5c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_Pi1w0arsTUgMusSBJTLtYhG5M=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.671028+00 2025-12-09 10:15:23.671034+00 14030 1185FWE#豆沙2XL SPMX-20240815309229 \N \N \N 1 \N [{"file_id": "6d130cc2-a985-4ea2-b67a-e1228d1a8d03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01579a714c2a437087dbe2121a90606c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01579a714c2a437087dbe2121a90606c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01579a714c2a437087dbe2121a90606c.jpg", "file_size": 19112, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#豆沙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01579a714c2a437087dbe2121a90606c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01579a714c2a437087dbe2121a90606c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01579a714c2a437087dbe2121a90606c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01579a714c2a437087dbe2121a90606c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01579a714c2a437087dbe2121a90606c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yMwBcBuMhX2Xe6ZqXgQZVers2Ig=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.673328+00 2025-12-09 10:15:23.673334+00 14031 DL31128-2#上身紫色 SPMX-20240815309231 \N \N \N 1 \N [{"file_id": "2f8c84c4-2aa7-410e-936b-7525e27e4eab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f11c3ebf29f54294bb06125c0cc6c0c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f11c3ebf29f54294bb06125c0cc6c0c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f11c3ebf29f54294bb06125c0cc6c0c3.jpg", "file_size": 14796, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#上身紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11c3ebf29f54294bb06125c0cc6c0c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11c3ebf29f54294bb06125c0cc6c0c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f11c3ebf29f54294bb06125c0cc6c0c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f11c3ebf29f54294bb06125c0cc6c0c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f11c3ebf29f54294bb06125c0cc6c0c3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6k2jjSW-gazqLWUpiaDjT_OPqTc=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.675511+00 2025-12-09 10:15:23.675516+00 14032 HT5073#WJC22 SPMX-20240815309226 \N \N \N 1 \N [{"file_id": "8331445d-94b3-46fc-a8b4-4e4a0be42b6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "202d3bce5efd44009418efdb9562d3fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "202d3bce5efd44009418efdb9562d3fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "202d3bce5efd44009418efdb9562d3fa.jpg", "file_size": 25053, "is_delete": false, "file_type": 1, "original_file_name": "HT5073#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202d3bce5efd44009418efdb9562d3fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202d3bce5efd44009418efdb9562d3fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202d3bce5efd44009418efdb9562d3fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/202d3bce5efd44009418efdb9562d3fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/202d3bce5efd44009418efdb9562d3fa.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdk45J0X5JlwTebp4RuwtDuYXqU=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.677891+00 2025-12-09 10:15:23.677896+00 14033 LZ1326#背心款1号色 SPMX-20240815309232 \N \N \N 1 \N [{"file_id": "d44d91c0-d783-4623-96c6-2359ad782632", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01dd415fc59548d5a05a1a226aebe383.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01dd415fc59548d5a05a1a226aebe383.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01dd415fc59548d5a05a1a226aebe383.jpg", "file_size": 18485, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd415fc59548d5a05a1a226aebe383.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd415fc59548d5a05a1a226aebe383.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01dd415fc59548d5a05a1a226aebe383.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01dd415fc59548d5a05a1a226aebe383.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01dd415fc59548d5a05a1a226aebe383.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DngWChWk8pNDXkCRz2NXbM4iFYI=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.680002+00 2025-12-09 10:15:23.680007+00 14034 23-2123#A12-领子3XL SPMX-20240815309236 \N \N \N 1 \N [{"file_id": "5a2bec67-36ad-40b4-b5e5-84cf3c411a4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c801708a6af34569afd9e680468f372c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c801708a6af34569afd9e680468f372c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c801708a6af34569afd9e680468f372c.jpg", "file_size": 13381, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801708a6af34569afd9e680468f372c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801708a6af34569afd9e680468f372c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801708a6af34569afd9e680468f372c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c801708a6af34569afd9e680468f372c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c801708a6af34569afd9e680468f372c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oPl7s9Ng_SxD0eFjr8O0bYnqV-A=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.68213+00 2025-12-09 10:15:23.682135+00 14035 LJH1718#绿色 SPMX-20240815309228 \N \N \N 1 \N [{"file_id": "4df4d908-18f8-4052-95b5-c9d6a90f11e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "091daee8f3824d23b02ee40687709717.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "091daee8f3824d23b02ee40687709717.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "091daee8f3824d23b02ee40687709717.jpg", "file_size": 64542, "is_delete": false, "file_type": 1, "original_file_name": "LJH1718#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091daee8f3824d23b02ee40687709717.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091daee8f3824d23b02ee40687709717.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091daee8f3824d23b02ee40687709717.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/091daee8f3824d23b02ee40687709717.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/091daee8f3824d23b02ee40687709717.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KGeaGLGyG3YONp28cxGiaQUWgA=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.684444+00 2025-12-09 10:15:23.684449+00 14036 JTSS507FW#绿VS-D3 SPMX-20240815309233 \N \N \N 1 \N [{"file_id": "1baa9ce3-5fe3-499d-bfff-f2c8e6aecc54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "138b7c6b59a24d6894fa6c351c4a8096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "138b7c6b59a24d6894fa6c351c4a8096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "138b7c6b59a24d6894fa6c351c4a8096.jpg", "file_size": 14711, "is_delete": false, "file_type": 1, "original_file_name": "JTSS507FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138b7c6b59a24d6894fa6c351c4a8096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138b7c6b59a24d6894fa6c351c4a8096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138b7c6b59a24d6894fa6c351c4a8096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/138b7c6b59a24d6894fa6c351c4a8096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/138b7c6b59a24d6894fa6c351c4a8096.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAXGh87pS8s3-3cOvzjTmsLk-ZE=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.6868+00 2025-12-09 10:15:23.686806+00 14037 C929FWF#XL SPMX-20240815309227 \N \N \N 1 \N [{"file_id": "73119455-c879-4f27-8627-e1e27f22bc97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10d7c2b18b1347fe9231cb191b27728f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10d7c2b18b1347fe9231cb191b27728f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10d7c2b18b1347fe9231cb191b27728f.jpg", "file_size": 13241, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7c2b18b1347fe9231cb191b27728f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7c2b18b1347fe9231cb191b27728f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7c2b18b1347fe9231cb191b27728f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10d7c2b18b1347fe9231cb191b27728f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10d7c2b18b1347fe9231cb191b27728f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMTn_vqZQ8JPrn1dVN8232l2v_U=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.688883+00 2025-12-09 10:15:23.688887+00 14038 0005-7#WJC22 SPMX-20240815309234 \N \N \N 1 \N [{"file_id": "d27996ed-8a3d-42a0-8bca-abc1db0ea539", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b751b32f60141bb9c967bf151008e76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b751b32f60141bb9c967bf151008e76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b751b32f60141bb9c967bf151008e76.jpg", "file_size": 13250, "is_delete": false, "file_type": 1, "original_file_name": "0005-7#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b751b32f60141bb9c967bf151008e76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b751b32f60141bb9c967bf151008e76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b751b32f60141bb9c967bf151008e76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b751b32f60141bb9c967bf151008e76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b751b32f60141bb9c967bf151008e76.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UlFxWWKVEF9Yx6pTvVWZfwPLEPg=", "createTime": "2024-08-15 14:56:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.690987+00 2025-12-09 10:15:23.690992+00 14039 C929FWF#袖口 SPMX-20240815309238 \N \N \N 1 \N [{"file_id": "efc7b7d3-c90f-4295-aa9b-a6cafa8adf47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2426b1cbe47246929bf1f5a415547b54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2426b1cbe47246929bf1f5a415547b54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2426b1cbe47246929bf1f5a415547b54.jpg", "file_size": 13653, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2426b1cbe47246929bf1f5a415547b54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2426b1cbe47246929bf1f5a415547b54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2426b1cbe47246929bf1f5a415547b54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2426b1cbe47246929bf1f5a415547b54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2426b1cbe47246929bf1f5a415547b54.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owD_lZGQycbx4s17NU_WLaIUZFQ=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.693072+00 2025-12-09 10:15:23.693077+00 14040 23-2123#A12-领子4XL SPMX-20240815309248 \N \N \N 1 \N [{"file_id": "4a409849-7add-4d13-927a-7227771ae029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7331e68b0b640449cabcd5888d9c537.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7331e68b0b640449cabcd5888d9c537.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7331e68b0b640449cabcd5888d9c537.jpg", "file_size": 13541, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7331e68b0b640449cabcd5888d9c537.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7331e68b0b640449cabcd5888d9c537.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7331e68b0b640449cabcd5888d9c537.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7331e68b0b640449cabcd5888d9c537.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7331e68b0b640449cabcd5888d9c537.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlvy650N4XFMESaO0MpHjjm2Gok=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.695252+00 2025-12-09 10:15:23.695257+00 14041 JTSS507FW#蓝VS-D3 SPMX-20240815309242 \N \N \N 1 \N [{"file_id": "767302f4-d0b0-4ff7-ba71-63d79b30159c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b82fb376326148df95feef983e00d456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b82fb376326148df95feef983e00d456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b82fb376326148df95feef983e00d456.jpg", "file_size": 15723, "is_delete": false, "file_type": 1, "original_file_name": "JTSS507FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82fb376326148df95feef983e00d456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82fb376326148df95feef983e00d456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b82fb376326148df95feef983e00d456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b82fb376326148df95feef983e00d456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b82fb376326148df95feef983e00d456.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odQ-iTjtEqM0DqXUg8zXsSW3tgk=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.697625+00 2025-12-09 10:15:23.697631+00 14042 1185FWE#豆沙4XL SPMX-20240815309243 \N \N \N 1 \N [{"file_id": "71d5d188-9481-40d7-bca1-6b3a61055c1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f87c986be42942c7b2be4b6ce90cd862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f87c986be42942c7b2be4b6ce90cd862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f87c986be42942c7b2be4b6ce90cd862.jpg", "file_size": 17842, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#豆沙4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87c986be42942c7b2be4b6ce90cd862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87c986be42942c7b2be4b6ce90cd862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87c986be42942c7b2be4b6ce90cd862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f87c986be42942c7b2be4b6ce90cd862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f87c986be42942c7b2be4b6ce90cd862.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdEszySSweRtodRgRAk2fnZFZrs=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.699968+00 2025-12-09 10:15:23.699973+00 14043 8354FWF#XL SPMX-20240815309240 \N \N \N 1 \N [{"file_id": "bf59a0d4-b9ed-413e-aae3-e7998f71f4d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "013b6d36af7c4c1dba5243806148b26a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "013b6d36af7c4c1dba5243806148b26a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "013b6d36af7c4c1dba5243806148b26a.jpg", "file_size": 17962, "is_delete": false, "file_type": 1, "original_file_name": "8354FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013b6d36af7c4c1dba5243806148b26a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013b6d36af7c4c1dba5243806148b26a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013b6d36af7c4c1dba5243806148b26a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/013b6d36af7c4c1dba5243806148b26a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/013b6d36af7c4c1dba5243806148b26a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-GN7_elwSMiwo-KhxYc9eRBcDo=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.702114+00 2025-12-09 10:15:23.70212+00 14044 DL31128-2#下摆原版色 SPMX-20240815309245 \N \N \N 1 \N [{"file_id": "d977d086-2e9d-4bd2-9b1c-e17eadbd8fe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d82426e5dbde48f8ad370262e30840b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d82426e5dbde48f8ad370262e30840b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d82426e5dbde48f8ad370262e30840b8.jpg", "file_size": 22852, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#下摆原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82426e5dbde48f8ad370262e30840b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82426e5dbde48f8ad370262e30840b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82426e5dbde48f8ad370262e30840b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d82426e5dbde48f8ad370262e30840b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d82426e5dbde48f8ad370262e30840b8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjVxP0breL61kRoDfbuEljfMMzM=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.704216+00 2025-12-09 10:15:23.704221+00 14045 LJH1718#黑色 SPMX-20240815309249 \N \N \N 1 \N [{"file_id": "e7e9fe28-2bd7-46ec-bc5a-366eecaca5df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14328d79926a482d94afc92ab13fcb5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14328d79926a482d94afc92ab13fcb5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14328d79926a482d94afc92ab13fcb5f.jpg", "file_size": 64803, "is_delete": false, "file_type": 1, "original_file_name": "LJH1718#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14328d79926a482d94afc92ab13fcb5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14328d79926a482d94afc92ab13fcb5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14328d79926a482d94afc92ab13fcb5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14328d79926a482d94afc92ab13fcb5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14328d79926a482d94afc92ab13fcb5f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvLV7GOxV8CMhg6I5UFyMcWyHy0=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.706635+00 2025-12-09 10:15:23.706642+00 14046 HT5074#WJC22 SPMX-20240815309237 \N \N \N 1 \N [{"file_id": "389926c3-d498-45d3-96f6-c16c096c34d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ab7fc2014df4a3b98f239c1222a497f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ab7fc2014df4a3b98f239c1222a497f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ab7fc2014df4a3b98f239c1222a497f.jpg", "file_size": 30438, "is_delete": false, "file_type": 1, "original_file_name": "HT5074#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab7fc2014df4a3b98f239c1222a497f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab7fc2014df4a3b98f239c1222a497f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ab7fc2014df4a3b98f239c1222a497f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ab7fc2014df4a3b98f239c1222a497f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ab7fc2014df4a3b98f239c1222a497f.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9LLoxyXlDaX1yDxOUY-s8JAc8o=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.708971+00 2025-12-09 10:15:23.708976+00 14047 LZ1326#背心款2号色 SPMX-20240815309244 \N \N \N 1 \N [{"file_id": "fbd63bab-172b-4f1e-8b1e-b42ecfee3347", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a752c603a34d4508bb13277c061e4279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a752c603a34d4508bb13277c061e4279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a752c603a34d4508bb13277c061e4279.jpg", "file_size": 18489, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752c603a34d4508bb13277c061e4279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752c603a34d4508bb13277c061e4279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752c603a34d4508bb13277c061e4279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a752c603a34d4508bb13277c061e4279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a752c603a34d4508bb13277c061e4279.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbdHAYJzdZ47ui4ViIvJhwHqOmA=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.711077+00 2025-12-09 10:15:23.711082+00 14048 0005-7#WJC22番禺调色 SPMX-20240815309246 \N \N \N 1 \N [{"file_id": "e0e499ce-9052-4412-8f01-a26598fac3ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16e6ad813cb54943b36b64e0cde7e8de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16e6ad813cb54943b36b64e0cde7e8de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16e6ad813cb54943b36b64e0cde7e8de.jpg", "file_size": 13774, "is_delete": false, "file_type": 1, "original_file_name": "0005-7#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e6ad813cb54943b36b64e0cde7e8de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e6ad813cb54943b36b64e0cde7e8de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e6ad813cb54943b36b64e0cde7e8de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16e6ad813cb54943b36b64e0cde7e8de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16e6ad813cb54943b36b64e0cde7e8de.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ev2S1j2gx2lVK8FX655LI577_28=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.713176+00 2025-12-09 10:15:23.713181+00 14049 FM033#粉色 SPMX-20240815309241 \N \N \N 1 \N [{"file_id": "fa4763a0-9034-4289-aba0-b99e22603033", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef97317c12e349ec9fb45e40b88a6948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef97317c12e349ec9fb45e40b88a6948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef97317c12e349ec9fb45e40b88a6948.jpg", "file_size": 16965, "is_delete": false, "file_type": 1, "original_file_name": "FM033#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef97317c12e349ec9fb45e40b88a6948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef97317c12e349ec9fb45e40b88a6948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef97317c12e349ec9fb45e40b88a6948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef97317c12e349ec9fb45e40b88a6948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef97317c12e349ec9fb45e40b88a6948.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXm_aTQu9hjuguEv_3OiR0oRBBY=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.715272+00 2025-12-09 10:15:23.715278+00 14050 LJH1718#蓝色 SPMX-20240815309239 \N \N \N 1 \N [{"file_id": "7aaaf125-f927-40c2-8e12-1ebb6fe42a7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "307c9294d4d644b4bc686393af13c8f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "307c9294d4d644b4bc686393af13c8f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "307c9294d4d644b4bc686393af13c8f2.jpg", "file_size": 62937, "is_delete": false, "file_type": 1, "original_file_name": "LJH1718#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307c9294d4d644b4bc686393af13c8f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307c9294d4d644b4bc686393af13c8f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307c9294d4d644b4bc686393af13c8f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/307c9294d4d644b4bc686393af13c8f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/307c9294d4d644b4bc686393af13c8f2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oDq84CdQarINnDK1s8ZUlmoa0V0=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.717341+00 2025-12-09 10:15:23.717347+00 14051 HT5075#WJC22 SPMX-20240815309247 \N \N \N 1 \N [{"file_id": "3ecdd990-1a92-4e8c-80b9-da75a91729b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d95a7380ac83458792b88d221842b463.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d95a7380ac83458792b88d221842b463.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d95a7380ac83458792b88d221842b463.jpg", "file_size": 12377, "is_delete": false, "file_type": 1, "original_file_name": "HT5075#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95a7380ac83458792b88d221842b463.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95a7380ac83458792b88d221842b463.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95a7380ac83458792b88d221842b463.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d95a7380ac83458792b88d221842b463.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d95a7380ac83458792b88d221842b463.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m5UyRMED4PMiI19r4R15iZlHeLA=", "createTime": "2024-08-15 14:56:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.719699+00 2025-12-09 10:15:23.719709+00 14052 0005-7FWF#粉色 SPMX-20240815309257 \N \N \N 1 \N [{"file_id": "de38aa03-7f6f-4b6c-8b53-69abd75d0c41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "921b93fb41884eb2bcacf11a02bc4e65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "921b93fb41884eb2bcacf11a02bc4e65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "921b93fb41884eb2bcacf11a02bc4e65.jpg", "file_size": 10022, "is_delete": false, "file_type": 1, "original_file_name": "0005-7FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921b93fb41884eb2bcacf11a02bc4e65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921b93fb41884eb2bcacf11a02bc4e65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/921b93fb41884eb2bcacf11a02bc4e65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/921b93fb41884eb2bcacf11a02bc4e65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/921b93fb41884eb2bcacf11a02bc4e65.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:diJk62_vteEkCjt1Ywe25xcvn-I=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.731066+00 2025-12-09 10:15:23.731071+00 14057 JTSS508FW#VS-D3 SPMX-20240815309252 \N \N \N 1 \N [{"file_id": "276abc05-51c0-4d9b-a5d9-0aaca964c730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbba9c48e30d448eb80ce544dc9aad03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbba9c48e30d448eb80ce544dc9aad03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbba9c48e30d448eb80ce544dc9aad03.jpg", "file_size": 14656, "is_delete": false, "file_type": 1, "original_file_name": "JTSS508FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbba9c48e30d448eb80ce544dc9aad03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbba9c48e30d448eb80ce544dc9aad03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbba9c48e30d448eb80ce544dc9aad03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbba9c48e30d448eb80ce544dc9aad03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbba9c48e30d448eb80ce544dc9aad03.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vx7niPNhlTE6XLOoD5MSxEgQyCU=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.722016+00 2025-12-09 10:15:23.722022+00 14053 LZ1326#背心款3号色 SPMX-20240815309258 \N \N \N 1 \N [{"file_id": "46790e92-da34-405d-99d3-cbd6551cd804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7349a46daa8e4e7698a1aa2d5a049435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7349a46daa8e4e7698a1aa2d5a049435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7349a46daa8e4e7698a1aa2d5a049435.jpg", "file_size": 18524, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349a46daa8e4e7698a1aa2d5a049435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349a46daa8e4e7698a1aa2d5a049435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349a46daa8e4e7698a1aa2d5a049435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7349a46daa8e4e7698a1aa2d5a049435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7349a46daa8e4e7698a1aa2d5a049435.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCahxSRupyd4Sgk7HwnC7bTIC-s=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.724333+00 2025-12-09 10:15:23.724338+00 14054 C929FWF#袖子 SPMX-20240815309250 \N \N \N 1 \N [{"file_id": "8165605d-a11f-4bd9-8b5d-ea0a00807dca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2983a046eb240f8a6dbc08e8e8507ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2983a046eb240f8a6dbc08e8e8507ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2983a046eb240f8a6dbc08e8e8507ed.jpg", "file_size": 5604, "is_delete": false, "file_type": 1, "original_file_name": "C929FWF#袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2983a046eb240f8a6dbc08e8e8507ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2983a046eb240f8a6dbc08e8e8507ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2983a046eb240f8a6dbc08e8e8507ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2983a046eb240f8a6dbc08e8e8507ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2983a046eb240f8a6dbc08e8e8507ed.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PovETa1jlPzN2jRApcc1ryB8VFc=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.726424+00 2025-12-09 10:15:23.726429+00 14055 LJH1731-1#天蓝 SPMX-20240815309260 \N \N \N 1 \N [{"file_id": "cf732d61-9c98-4b2c-95d4-7fe5887d403c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e3531fd05d48138a9418dfd6e37632.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e3531fd05d48138a9418dfd6e37632.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e3531fd05d48138a9418dfd6e37632.jpg", "file_size": 42761, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-1#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e3531fd05d48138a9418dfd6e37632.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e3531fd05d48138a9418dfd6e37632.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e3531fd05d48138a9418dfd6e37632.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e3531fd05d48138a9418dfd6e37632.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e3531fd05d48138a9418dfd6e37632.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3OrdFaWnYPKaOIP_Ci_T6MVzKV4=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.728754+00 2025-12-09 10:15:23.728759+00 14056 C930#土黄 SPMX-20240815309261 \N \N \N 1 \N [{"file_id": "291f6a56-15a1-4a6d-81aa-0983bcfc1955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adf1d2f66a7e40638db3ab121cb9f777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adf1d2f66a7e40638db3ab121cb9f777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adf1d2f66a7e40638db3ab121cb9f777.jpg", "file_size": 17063, "is_delete": false, "file_type": 1, "original_file_name": "C930#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf1d2f66a7e40638db3ab121cb9f777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf1d2f66a7e40638db3ab121cb9f777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf1d2f66a7e40638db3ab121cb9f777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adf1d2f66a7e40638db3ab121cb9f777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adf1d2f66a7e40638db3ab121cb9f777.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkn1CJpMP4UmdRdn59RGvgfkIYM=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.733339+00 2025-12-09 10:15:23.733344+00 14058 HT5076#WJC22 SPMX-20240815309255 \N \N \N 1 \N [{"file_id": "26f4d091-d383-4ecb-b205-7229a692efac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d861f6497650401dbe478575c8153462.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d861f6497650401dbe478575c8153462.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d861f6497650401dbe478575c8153462.jpg", "file_size": 18257, "is_delete": false, "file_type": 1, "original_file_name": "HT5076#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d861f6497650401dbe478575c8153462.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d861f6497650401dbe478575c8153462.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d861f6497650401dbe478575c8153462.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d861f6497650401dbe478575c8153462.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d861f6497650401dbe478575c8153462.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9Arxma7qStdz2LZMpoKi2Yzswk=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.735452+00 2025-12-09 10:15:23.735458+00 14059 8355FWF#2XL SPMX-20240815309251 \N \N \N 1 \N [{"file_id": "dae6daea-09ab-431c-8ef2-bc6e4019c043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dba966d1504943fd892c5c2c009b5e84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dba966d1504943fd892c5c2c009b5e84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dba966d1504943fd892c5c2c009b5e84.jpg", "file_size": 19989, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba966d1504943fd892c5c2c009b5e84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba966d1504943fd892c5c2c009b5e84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba966d1504943fd892c5c2c009b5e84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dba966d1504943fd892c5c2c009b5e84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dba966d1504943fd892c5c2c009b5e84.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:icLpqlAp4VIeh2PGj6rthWi_eSw=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.737825+00 2025-12-09 10:15:23.73783+00 14060 FM033#红色 SPMX-20240815309254 \N \N \N 1 \N [{"file_id": "90c86fe1-b79a-459e-a28e-d657023ac158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ece840eb62d64254a4afb5d2c8bb3276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ece840eb62d64254a4afb5d2c8bb3276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ece840eb62d64254a4afb5d2c8bb3276.jpg", "file_size": 18081, "is_delete": false, "file_type": 1, "original_file_name": "FM033#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece840eb62d64254a4afb5d2c8bb3276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece840eb62d64254a4afb5d2c8bb3276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece840eb62d64254a4afb5d2c8bb3276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ece840eb62d64254a4afb5d2c8bb3276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ece840eb62d64254a4afb5d2c8bb3276.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q76EoC59ahWdQokvudU4AzmQc_Y=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.740142+00 2025-12-09 10:15:23.740147+00 14061 1185FWE#豆沙L SPMX-20240815309256 \N \N \N 1 \N [{"file_id": "5556b697-d786-46fb-8eb1-91c556cb0441", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d5438981bd444ef81f753b9d3ac909a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d5438981bd444ef81f753b9d3ac909a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d5438981bd444ef81f753b9d3ac909a.jpg", "file_size": 18236, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#豆沙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5438981bd444ef81f753b9d3ac909a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5438981bd444ef81f753b9d3ac909a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5438981bd444ef81f753b9d3ac909a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d5438981bd444ef81f753b9d3ac909a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d5438981bd444ef81f753b9d3ac909a.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nf8sXGYNKQxCdiepoucG_Q1BHU0=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.742428+00 2025-12-09 10:15:23.742433+00 14062 DL31128-2#下摆墨绿 SPMX-20240815309253 \N \N \N 1 \N [{"file_id": "18426930-1603-4e50-8267-5e4ad90c82ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7da7fa8eca91498b92e62eb1e6354567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7da7fa8eca91498b92e62eb1e6354567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7da7fa8eca91498b92e62eb1e6354567.jpg", "file_size": 23174, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da7fa8eca91498b92e62eb1e6354567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da7fa8eca91498b92e62eb1e6354567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7da7fa8eca91498b92e62eb1e6354567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7da7fa8eca91498b92e62eb1e6354567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7da7fa8eca91498b92e62eb1e6354567.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tz-9Am0qf71ChxTeurM-OyiQExE=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.744518+00 2025-12-09 10:15:23.744524+00 14063 23-2123#A13-3XL SPMX-20240815309259 \N \N \N 1 \N [{"file_id": "5202e826-1b40-4c12-9c4a-d654314daf9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f0290e91fd046159faa1ef5d5dc5bdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f0290e91fd046159faa1ef5d5dc5bdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f0290e91fd046159faa1ef5d5dc5bdd.jpg", "file_size": 16638, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0290e91fd046159faa1ef5d5dc5bdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0290e91fd046159faa1ef5d5dc5bdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f0290e91fd046159faa1ef5d5dc5bdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f0290e91fd046159faa1ef5d5dc5bdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f0290e91fd046159faa1ef5d5dc5bdd.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdMVV_Gj_o4de2NO_tB5i_5j9Qs=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.746918+00 2025-12-09 10:15:23.746924+00 14064 FM033#黄色 SPMX-20240815309265 \N \N \N 1 \N [{"file_id": "84789483-adf0-4c30-901e-9757834b0f38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5827b516ca8e482a91138195ca41ba04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5827b516ca8e482a91138195ca41ba04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5827b516ca8e482a91138195ca41ba04.jpg", "file_size": 17971, "is_delete": false, "file_type": 1, "original_file_name": "FM033#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5827b516ca8e482a91138195ca41ba04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5827b516ca8e482a91138195ca41ba04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5827b516ca8e482a91138195ca41ba04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5827b516ca8e482a91138195ca41ba04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5827b516ca8e482a91138195ca41ba04.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6e5Zyq6JIXETQACyBTJX2Ectklw=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.749134+00 2025-12-09 10:15:23.749139+00 14065 0005-7FWF#蓝色 SPMX-20240815309269 \N \N \N 1 \N [{"file_id": "25208705-f54f-43a1-a67e-724963b50fe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eda5165e926c4d32801e48caa2438ec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eda5165e926c4d32801e48caa2438ec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eda5165e926c4d32801e48caa2438ec7.jpg", "file_size": 11149, "is_delete": false, "file_type": 1, "original_file_name": "0005-7FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda5165e926c4d32801e48caa2438ec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda5165e926c4d32801e48caa2438ec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda5165e926c4d32801e48caa2438ec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eda5165e926c4d32801e48caa2438ec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eda5165e926c4d32801e48caa2438ec7.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kkcTwflxOW7R0L16X83VXXKtg2I=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.75148+00 2025-12-09 10:15:23.751486+00 14066 LJH1731-1#白色 SPMX-20240815309271 \N \N \N 1 \N [{"file_id": "08e0673f-7496-41b8-b700-8b60d99d3f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6231935aeca43f58692203157284e84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6231935aeca43f58692203157284e84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6231935aeca43f58692203157284e84.jpg", "file_size": 40925, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-1#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6231935aeca43f58692203157284e84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6231935aeca43f58692203157284e84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6231935aeca43f58692203157284e84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6231935aeca43f58692203157284e84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6231935aeca43f58692203157284e84.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xySs9bn3YJHIlI4x_4i833Na_0U=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.753585+00 2025-12-09 10:15:23.753591+00 14067 JTSS510FW#VS-D3 SPMX-20240815309273 \N \N \N 1 \N [{"file_id": "cf74a889-ba82-44b5-8117-c8a6d487e2a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6f28aa430a44901972b521efd4cddcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6f28aa430a44901972b521efd4cddcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6f28aa430a44901972b521efd4cddcb.jpg", "file_size": 16170, "is_delete": false, "file_type": 1, "original_file_name": "JTSS510FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6f28aa430a44901972b521efd4cddcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6f28aa430a44901972b521efd4cddcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6f28aa430a44901972b521efd4cddcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6f28aa430a44901972b521efd4cddcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6f28aa430a44901972b521efd4cddcb.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbKqsu0LM0dSITNWL45uosiydr8=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.756001+00 2025-12-09 10:15:23.756007+00 14068 C930#土黄净色 SPMX-20240815309272 \N \N \N 1 \N [{"file_id": "a81b86bf-d3ca-4086-b4cd-65164f7b8fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f606f7d5384762855431d0c537dd5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f606f7d5384762855431d0c537dd5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f606f7d5384762855431d0c537dd5b.jpg", "file_size": 7616, "is_delete": false, "file_type": 1, "original_file_name": "C930#土黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f606f7d5384762855431d0c537dd5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f606f7d5384762855431d0c537dd5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f606f7d5384762855431d0c537dd5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f606f7d5384762855431d0c537dd5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f606f7d5384762855431d0c537dd5b.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlreRBipk0duOR-QqI8KNuzL8y4=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.758853+00 2025-12-09 10:15:23.758858+00 14069 HT5078#WJC22 SPMX-20240815309267 \N \N \N 1 \N [{"file_id": "209d15c1-3ef6-4cb2-b804-e0dbeaf9697f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83212f76bc814c078a79420cb89e110e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83212f76bc814c078a79420cb89e110e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83212f76bc814c078a79420cb89e110e.jpg", "file_size": 27773, "is_delete": false, "file_type": 1, "original_file_name": "HT5078#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83212f76bc814c078a79420cb89e110e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83212f76bc814c078a79420cb89e110e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83212f76bc814c078a79420cb89e110e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83212f76bc814c078a79420cb89e110e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83212f76bc814c078a79420cb89e110e.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0tjdDVWkKyTFaKaPcgVp33HVBDk=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.761247+00 2025-12-09 10:15:23.761251+00 14070 8355FWF#3XL SPMX-20240815309262 \N \N \N 1 \N [{"file_id": "767cfa88-74cd-48f9-af7c-74bc4ad42b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0829e17c3484c67853b61613baf20d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0829e17c3484c67853b61613baf20d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0829e17c3484c67853b61613baf20d0.jpg", "file_size": 20212, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0829e17c3484c67853b61613baf20d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0829e17c3484c67853b61613baf20d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0829e17c3484c67853b61613baf20d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0829e17c3484c67853b61613baf20d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0829e17c3484c67853b61613baf20d0.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IU3vJuN-SK5U80OcF4zIv9iGu9E=", "createTime": "2024-08-15 14:56:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.763524+00 2025-12-09 10:15:23.763528+00 14071 1185FWE#豆沙XL SPMX-20240815309266 \N \N \N 1 \N [{"file_id": "ea8b2d1f-46ac-4fa8-8d5d-686ea7f83502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6c667738b7a4cd8a641d3986ecdde15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6c667738b7a4cd8a641d3986ecdde15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6c667738b7a4cd8a641d3986ecdde15.jpg", "file_size": 18383, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#豆沙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c667738b7a4cd8a641d3986ecdde15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c667738b7a4cd8a641d3986ecdde15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c667738b7a4cd8a641d3986ecdde15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6c667738b7a4cd8a641d3986ecdde15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6c667738b7a4cd8a641d3986ecdde15.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALuZzvps394ZlYz0zf_zUWeDnGw=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.765642+00 2025-12-09 10:15:23.765647+00 14072 23-2123#A13-4XL SPMX-20240815309270 \N \N \N 1 \N [{"file_id": "7c5a9992-19e6-47ed-9f6d-84c31a46a8b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c104b8f6892486f94631335822a3460.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c104b8f6892486f94631335822a3460.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c104b8f6892486f94631335822a3460.jpg", "file_size": 15879, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c104b8f6892486f94631335822a3460.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c104b8f6892486f94631335822a3460.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c104b8f6892486f94631335822a3460.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c104b8f6892486f94631335822a3460.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c104b8f6892486f94631335822a3460.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kLrQXnlyBCXqQsDXdZRVW4EpFQ=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.767812+00 2025-12-09 10:15:23.767819+00 14073 LZ1326#背心款4号色 SPMX-20240815309268 \N \N \N 1 \N [{"file_id": "c33fd501-9adc-4704-aeb8-02cb12e8c9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ff384a7286e4d5ebcf19ced31898c1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ff384a7286e4d5ebcf19ced31898c1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ff384a7286e4d5ebcf19ced31898c1d.jpg", "file_size": 17580, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff384a7286e4d5ebcf19ced31898c1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff384a7286e4d5ebcf19ced31898c1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff384a7286e4d5ebcf19ced31898c1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ff384a7286e4d5ebcf19ced31898c1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ff384a7286e4d5ebcf19ced31898c1d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkS1nJ51yx7L6k7aqYIWWWiRjUc=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.770208+00 2025-12-09 10:15:23.770213+00 14074 DL31128-2#下摆彩兰 SPMX-20240815309264 \N \N \N 1 \N [{"file_id": "c96b9093-6523-4107-890d-b9528d7901f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3730fc66f399453f8916a45da32324a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3730fc66f399453f8916a45da32324a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3730fc66f399453f8916a45da32324a2.jpg", "file_size": 23137, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3730fc66f399453f8916a45da32324a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3730fc66f399453f8916a45da32324a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3730fc66f399453f8916a45da32324a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3730fc66f399453f8916a45da32324a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3730fc66f399453f8916a45da32324a2.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5JRUzNfO0JO4IXENDRl1DITWG0=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.772515+00 2025-12-09 10:15:23.77252+00 14075 JTSS509FW#VS-D3 SPMX-20240815309263 \N \N \N 1 \N [{"file_id": "5a65b9a2-eac8-46b3-a6a7-b4c006e7ed91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "333a8702ab624097a64c1c89d91ad567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "333a8702ab624097a64c1c89d91ad567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "333a8702ab624097a64c1c89d91ad567.jpg", "file_size": 15824, "is_delete": false, "file_type": 1, "original_file_name": "JTSS509FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333a8702ab624097a64c1c89d91ad567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333a8702ab624097a64c1c89d91ad567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/333a8702ab624097a64c1c89d91ad567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/333a8702ab624097a64c1c89d91ad567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/333a8702ab624097a64c1c89d91ad567.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwB0Uv9CFoQ1fiGA72zWWBCgHPc=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.774596+00 2025-12-09 10:15:23.774601+00 14076 JTSS511FW#VS-D3 SPMX-20240815309284 \N \N \N 1 \N [{"file_id": "5bf17508-cfbd-424f-b304-8b01645fd5be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4b8d16b5305465f81071572e51be8b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4b8d16b5305465f81071572e51be8b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4b8d16b5305465f81071572e51be8b8.jpg", "file_size": 14547, "is_delete": false, "file_type": 1, "original_file_name": "JTSS511FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b8d16b5305465f81071572e51be8b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b8d16b5305465f81071572e51be8b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b8d16b5305465f81071572e51be8b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4b8d16b5305465f81071572e51be8b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4b8d16b5305465f81071572e51be8b8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:czvm7pmjm3fmK_wn3wtbrzjEcuc=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.776676+00 2025-12-09 10:15:23.776681+00 14077 FM034#彩兰 SPMX-20240815309289 \N \N \N 1 \N [{"file_id": "5d290844-235f-474c-8f3a-bd021db89ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69ae7a74a1bc4c738f73c49371505d74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69ae7a74a1bc4c738f73c49371505d74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69ae7a74a1bc4c738f73c49371505d74.jpg", "file_size": 16839, "is_delete": false, "file_type": 1, "original_file_name": "FM034#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ae7a74a1bc4c738f73c49371505d74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ae7a74a1bc4c738f73c49371505d74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69ae7a74a1bc4c738f73c49371505d74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69ae7a74a1bc4c738f73c49371505d74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69ae7a74a1bc4c738f73c49371505d74.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7lohZBoetBO9yWlYnnEq_HFTzw=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.778749+00 2025-12-09 10:15:23.778754+00 14078 DL31128-2#下摆紫色 SPMX-20240815309275 \N \N \N 1 \N [{"file_id": "28065013-cf6a-4500-8da9-355f64ea2a2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb089c509a994f9bb66daf7329d8bef8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb089c509a994f9bb66daf7329d8bef8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb089c509a994f9bb66daf7329d8bef8.jpg", "file_size": 23089, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#下摆紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb089c509a994f9bb66daf7329d8bef8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb089c509a994f9bb66daf7329d8bef8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb089c509a994f9bb66daf7329d8bef8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb089c509a994f9bb66daf7329d8bef8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb089c509a994f9bb66daf7329d8bef8.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnKg75x7MTHOSuLuD3iBwDfUdfc=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.78083+00 2025-12-09 10:15:23.780835+00 14079 1185FWE#黄色2XL SPMX-20240815309276 \N \N \N 1 \N [{"file_id": "8d0224fb-dd61-4c42-b72d-5388707193d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a71ffe72efb404fb5bf4f3cb3074495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a71ffe72efb404fb5bf4f3cb3074495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a71ffe72efb404fb5bf4f3cb3074495.jpg", "file_size": 19465, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a71ffe72efb404fb5bf4f3cb3074495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a71ffe72efb404fb5bf4f3cb3074495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a71ffe72efb404fb5bf4f3cb3074495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a71ffe72efb404fb5bf4f3cb3074495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a71ffe72efb404fb5bf4f3cb3074495.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUOwzSzq1FgpV1R1wh7e0FkeQ-g=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.783186+00 2025-12-09 10:15:23.783191+00 14080 HT5079#橙色 SPMX-20240815309280 \N \N \N 1 \N [{"file_id": "9bc65d15-e0cc-46f2-b964-c20254ca61d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a84ffebaba5478db918f9998194af96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a84ffebaba5478db918f9998194af96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a84ffebaba5478db918f9998194af96.jpg", "file_size": 13226, "is_delete": false, "file_type": 1, "original_file_name": "HT5079#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a84ffebaba5478db918f9998194af96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a84ffebaba5478db918f9998194af96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a84ffebaba5478db918f9998194af96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a84ffebaba5478db918f9998194af96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a84ffebaba5478db918f9998194af96.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4RAzU53pjZnzpON8pe3w4kWdtg=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.78544+00 2025-12-09 10:15:23.785446+00 14081 C930#大 SPMX-20240815309282 \N \N \N 1 \N [{"file_id": "61083933-ba10-4a8a-ac04-8b2d57b718e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac115e768abe4d4e8d05b464475ce2a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac115e768abe4d4e8d05b464475ce2a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac115e768abe4d4e8d05b464475ce2a3.jpg", "file_size": 8430, "is_delete": false, "file_type": 1, "original_file_name": "C930#大.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac115e768abe4d4e8d05b464475ce2a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac115e768abe4d4e8d05b464475ce2a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac115e768abe4d4e8d05b464475ce2a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac115e768abe4d4e8d05b464475ce2a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac115e768abe4d4e8d05b464475ce2a3.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXfWn2u2QWSw3hliKGu8Uj1_NBs=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.787708+00 2025-12-09 10:15:23.787713+00 14082 1185FWE#黄色4XL SPMX-20240815309288 \N \N \N 1 \N [{"file_id": "c1340324-2cc0-4dbb-aa70-be28b79c0a67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b7634eacc0f47489837459ca03fda1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b7634eacc0f47489837459ca03fda1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b7634eacc0f47489837459ca03fda1c.jpg", "file_size": 17997, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#黄色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7634eacc0f47489837459ca03fda1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7634eacc0f47489837459ca03fda1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b7634eacc0f47489837459ca03fda1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b7634eacc0f47489837459ca03fda1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b7634eacc0f47489837459ca03fda1c.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYhSUswcZVZuYOMXaYHc4UZJCJE=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.789798+00 2025-12-09 10:15:23.789804+00 14083 23-2123#A13-领子4XL SPMX-20240815309290 \N \N \N 1 \N [{"file_id": "0462ca0a-da6f-4593-b068-945386b6c3cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08f1a18d1665446194e2f6adb44aee6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08f1a18d1665446194e2f6adb44aee6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08f1a18d1665446194e2f6adb44aee6d.jpg", "file_size": 14034, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f1a18d1665446194e2f6adb44aee6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f1a18d1665446194e2f6adb44aee6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f1a18d1665446194e2f6adb44aee6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08f1a18d1665446194e2f6adb44aee6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08f1a18d1665446194e2f6adb44aee6d.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DEB3sVFbu5Z1_WnIdN5iV-oA3Y=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.791853+00 2025-12-09 10:15:23.791858+00 14084 8355FWF#4XL SPMX-20240815309274 \N \N \N 1 \N [{"file_id": "09002915-14c5-4d12-8556-3280297a4349", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e329206497d74ea5a2fdb463e8b932ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e329206497d74ea5a2fdb463e8b932ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e329206497d74ea5a2fdb463e8b932ed.jpg", "file_size": 20017, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e329206497d74ea5a2fdb463e8b932ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e329206497d74ea5a2fdb463e8b932ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e329206497d74ea5a2fdb463e8b932ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e329206497d74ea5a2fdb463e8b932ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e329206497d74ea5a2fdb463e8b932ed.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pJO64GS7AyATClU4QDqHPiRQw_g=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:23.794276+00 2025-12-09 10:15:23.794281+00 14085 LZ1327#捆条布 SPMX-20240815309291 \N \N \N 1 \N [{"file_id": "ca14057c-26ac-43f6-88e4-dc5f9febbfb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e9727d61992404abdfdf4e33757c208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e9727d61992404abdfdf4e33757c208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e9727d61992404abdfdf4e33757c208.jpg", "file_size": 11485, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9727d61992404abdfdf4e33757c208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9727d61992404abdfdf4e33757c208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9727d61992404abdfdf4e33757c208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e9727d61992404abdfdf4e33757c208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e9727d61992404abdfdf4e33757c208.jpg?e=1765361722&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5l3b2K-iNbFqeLEn4D38lJZ2Sug=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.437131+00 2025-12-09 10:15:24.437143+00 14086 LZ1326#背心款5号色 SPMX-20240815309281 \N \N \N 1 \N [{"file_id": "6141581d-3ec3-4acd-a300-43eaf2df5fbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ebd56a50eed4c89bcdd09b1df07b467.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ebd56a50eed4c89bcdd09b1df07b467.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ebd56a50eed4c89bcdd09b1df07b467.jpg", "file_size": 18664, "is_delete": false, "file_type": 1, "original_file_name": "LZ1326#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebd56a50eed4c89bcdd09b1df07b467.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebd56a50eed4c89bcdd09b1df07b467.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ebd56a50eed4c89bcdd09b1df07b467.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ebd56a50eed4c89bcdd09b1df07b467.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ebd56a50eed4c89bcdd09b1df07b467.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dqn1cN3Q29RKzHv-I9oyboRXJtY=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.440897+00 2025-12-09 10:15:24.440906+00 14087 0005-8FWF#桔色 SPMX-20240815309287 \N \N \N 1 \N [{"file_id": "eae9e83b-6de0-408a-89bb-c4541b954645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b68cef31684241b8996d0aec620b7303.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b68cef31684241b8996d0aec620b7303.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b68cef31684241b8996d0aec620b7303.jpg", "file_size": 7455, "is_delete": false, "file_type": 1, "original_file_name": "0005-8FWF#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cef31684241b8996d0aec620b7303.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cef31684241b8996d0aec620b7303.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68cef31684241b8996d0aec620b7303.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b68cef31684241b8996d0aec620b7303.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b68cef31684241b8996d0aec620b7303.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffUOLt9hYwgHN0Wqes9bJ9DiqOs=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.44363+00 2025-12-09 10:15:24.443635+00 14088 FM034#大红 SPMX-20240815309279 \N \N \N 1 \N [{"file_id": "b206bb9a-f943-454d-85bd-4c4db6739600", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39cfdadefe904272930ead330ee0f910.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39cfdadefe904272930ead330ee0f910.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39cfdadefe904272930ead330ee0f910.jpg", "file_size": 16207, "is_delete": false, "file_type": 1, "original_file_name": "FM034#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39cfdadefe904272930ead330ee0f910.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39cfdadefe904272930ead330ee0f910.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39cfdadefe904272930ead330ee0f910.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39cfdadefe904272930ead330ee0f910.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39cfdadefe904272930ead330ee0f910.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aowMckoYd3lm-3vC7Sah9m7A4I=", "createTime": "2024-08-15 14:56:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.446305+00 2025-12-09 10:15:24.446311+00 14089 DL31128-2#烧花通用彩兰 SPMX-20240815309285 \N \N \N 1 \N [{"file_id": "e3ae16f1-86a8-4eed-8da5-c111f0546e74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfa3feb165b54b59b6a3648bc7ca32fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfa3feb165b54b59b6a3648bc7ca32fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfa3feb165b54b59b6a3648bc7ca32fb.jpg", "file_size": 19689, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#烧花通用彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa3feb165b54b59b6a3648bc7ca32fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa3feb165b54b59b6a3648bc7ca32fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfa3feb165b54b59b6a3648bc7ca32fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfa3feb165b54b59b6a3648bc7ca32fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfa3feb165b54b59b6a3648bc7ca32fb.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvdpwtO1n0T2XCBDsg-aP7l_yrw=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.448767+00 2025-12-09 10:15:24.448772+00 14090 8355FWF#5XL SPMX-20240815309286 \N \N \N 1 \N [{"file_id": "9b98558b-8022-4bf9-96b3-d32b579f904c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8cbeb711b3c4baa8e84651824d6dce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8cbeb711b3c4baa8e84651824d6dce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8cbeb711b3c4baa8e84651824d6dce0.jpg", "file_size": 19793, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8cbeb711b3c4baa8e84651824d6dce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8cbeb711b3c4baa8e84651824d6dce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8cbeb711b3c4baa8e84651824d6dce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8cbeb711b3c4baa8e84651824d6dce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8cbeb711b3c4baa8e84651824d6dce0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zN42s-nfi0AjO-1OhOuMWz_46aE=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.45105+00 2025-12-09 10:15:24.451055+00 14091 23-2123#A13-领子3XL SPMX-20240815309278 \N \N \N 1 \N [{"file_id": "b2a008e4-6a2c-4b34-b3b9-8e97919c4eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5328f5162c174338b5eb9071ffe7c0ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5328f5162c174338b5eb9071ffe7c0ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5328f5162c174338b5eb9071ffe7c0ce.jpg", "file_size": 13607, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5328f5162c174338b5eb9071ffe7c0ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5328f5162c174338b5eb9071ffe7c0ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5328f5162c174338b5eb9071ffe7c0ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5328f5162c174338b5eb9071ffe7c0ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5328f5162c174338b5eb9071ffe7c0ce.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReO9G04E2WwenaYeDh1RMrQN9B4=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.453342+00 2025-12-09 10:15:24.453348+00 14092 LJH1731-1#绿色 SPMX-20240815309283 \N \N \N 1 \N [{"file_id": "cae747cf-b0c6-41f4-9537-da0b3b6390ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f30e8c6c146740a5a5c956c6773b9edc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f30e8c6c146740a5a5c956c6773b9edc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f30e8c6c146740a5a5c956c6773b9edc.jpg", "file_size": 39234, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30e8c6c146740a5a5c956c6773b9edc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30e8c6c146740a5a5c956c6773b9edc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f30e8c6c146740a5a5c956c6773b9edc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f30e8c6c146740a5a5c956c6773b9edc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f30e8c6c146740a5a5c956c6773b9edc.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_d4YS8IxTSYGGK1NzZP0QVELpI=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.455602+00 2025-12-09 10:15:24.455607+00 14093 0005-8#小5条 SPMX-20240815309277 \N \N \N 1 \N [{"file_id": "3138eace-ed20-4faf-88a9-a0f6648c20a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f04b212b059e463995d10b7243ad7e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f04b212b059e463995d10b7243ad7e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f04b212b059e463995d10b7243ad7e8a.jpg", "file_size": 7819, "is_delete": false, "file_type": 1, "original_file_name": "0005-8#小5条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04b212b059e463995d10b7243ad7e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04b212b059e463995d10b7243ad7e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04b212b059e463995d10b7243ad7e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f04b212b059e463995d10b7243ad7e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f04b212b059e463995d10b7243ad7e8a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZ9tznWTy0VtEbUVVz5OD6aFoHo=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.457753+00 2025-12-09 10:15:24.457758+00 14094 C930#大红 SPMX-20240815309292 \N \N \N 1 \N [{"file_id": "67a06b57-d362-4ec6-b137-a347d8276336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d73831beeb147d5afd5690afbccb42e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d73831beeb147d5afd5690afbccb42e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d73831beeb147d5afd5690afbccb42e.jpg", "file_size": 17702, "is_delete": false, "file_type": 1, "original_file_name": "C930#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d73831beeb147d5afd5690afbccb42e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d73831beeb147d5afd5690afbccb42e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d73831beeb147d5afd5690afbccb42e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d73831beeb147d5afd5690afbccb42e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d73831beeb147d5afd5690afbccb42e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u8Fu8P_Q8nWpnK7JvIk1pmI5mWs=", "createTime": "2024-08-15 14:56:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.459861+00 2025-12-09 10:15:24.459867+00 14095 LJH1731-1#黑色 SPMX-20240815309294 \N \N \N 1 \N [{"file_id": "91341dc4-5a97-471b-98ee-d466c4650003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "118dc64ba73e4e339e2ddd9436fad653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "118dc64ba73e4e339e2ddd9436fad653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "118dc64ba73e4e339e2ddd9436fad653.jpg", "file_size": 43910, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/118dc64ba73e4e339e2ddd9436fad653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/118dc64ba73e4e339e2ddd9436fad653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/118dc64ba73e4e339e2ddd9436fad653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/118dc64ba73e4e339e2ddd9436fad653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/118dc64ba73e4e339e2ddd9436fad653.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhkKoFTEAXOvHdCAaXVROZJYTks=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.462184+00 2025-12-09 10:15:24.462189+00 14096 8355FWF#L SPMX-20240815309296 \N \N \N 1 \N [{"file_id": "ab42921c-3bd4-4366-bc6f-d16ed1ea70b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39f78f7c428d482eb99f2dbce21b3ee4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39f78f7c428d482eb99f2dbce21b3ee4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39f78f7c428d482eb99f2dbce21b3ee4.jpg", "file_size": 19452, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f78f7c428d482eb99f2dbce21b3ee4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f78f7c428d482eb99f2dbce21b3ee4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f78f7c428d482eb99f2dbce21b3ee4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39f78f7c428d482eb99f2dbce21b3ee4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39f78f7c428d482eb99f2dbce21b3ee4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDfKBhV0EhUCYSP447c01att1lE=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.474312+00 2025-12-09 10:15:24.474317+00 14101 0005-8FWF#绿色 SPMX-20240815309298 \N \N \N 1 \N [{"file_id": "57a7495a-3a3d-4d98-8671-ccee65b8e03f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f01223f01db34df0811b4ac222fce080.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f01223f01db34df0811b4ac222fce080.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f01223f01db34df0811b4ac222fce080.jpg", "file_size": 7189, "is_delete": false, "file_type": 1, "original_file_name": "0005-8FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01223f01db34df0811b4ac222fce080.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01223f01db34df0811b4ac222fce080.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f01223f01db34df0811b4ac222fce080.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f01223f01db34df0811b4ac222fce080.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f01223f01db34df0811b4ac222fce080.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LmXM8mAJu-qdW_-Pi6GCsowpJwc=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.464474+00 2025-12-09 10:15:24.46448+00 14097 DL31128-2#烧花通码原版色 SPMX-20240815309297 \N \N \N 1 \N [{"file_id": "23d0187b-6c90-4e81-a757-f8ff898cc312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c51a2d08756f4f7e87c67449bd49c119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c51a2d08756f4f7e87c67449bd49c119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c51a2d08756f4f7e87c67449bd49c119.jpg", "file_size": 18650, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#烧花通码原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51a2d08756f4f7e87c67449bd49c119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51a2d08756f4f7e87c67449bd49c119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51a2d08756f4f7e87c67449bd49c119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c51a2d08756f4f7e87c67449bd49c119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c51a2d08756f4f7e87c67449bd49c119.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnoBY08Oh65Kadbo-5YeLmgLgDg=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.466841+00 2025-12-09 10:15:24.466846+00 14098 LZ1327#背心款1号色 SPMX-20240815309304 \N \N \N 1 \N [{"file_id": "7df5d8ce-9eb1-46c1-a29a-61c43577e99b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29dab2f0bbb44564b919800c2833a3e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29dab2f0bbb44564b919800c2833a3e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29dab2f0bbb44564b919800c2833a3e0.jpg", "file_size": 16762, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dab2f0bbb44564b919800c2833a3e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dab2f0bbb44564b919800c2833a3e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dab2f0bbb44564b919800c2833a3e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29dab2f0bbb44564b919800c2833a3e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29dab2f0bbb44564b919800c2833a3e0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a_Kh0XB0YlMAL_H0hNtCYFVqHsc=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.46922+00 2025-12-09 10:15:24.469226+00 14099 JTSS512FW#VS-D3 SPMX-20240815309295 \N \N \N 1 \N [{"file_id": "6349bb59-698d-4d3a-a478-12d15bb78230", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab066f66395c480e88d1881a59008b37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab066f66395c480e88d1881a59008b37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab066f66395c480e88d1881a59008b37.jpg", "file_size": 17830, "is_delete": false, "file_type": 1, "original_file_name": "JTSS512FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab066f66395c480e88d1881a59008b37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab066f66395c480e88d1881a59008b37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab066f66395c480e88d1881a59008b37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab066f66395c480e88d1881a59008b37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab066f66395c480e88d1881a59008b37.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tukasruxl5Gfe1xNgB5BrSI-3DU=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.471844+00 2025-12-09 10:15:24.471849+00 14100 23-2123#A2-3XL SPMX-20240815309302 \N \N \N 1 \N [{"file_id": "8521b4f2-327d-4b82-9717-dfe3346577ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdadf0d6909c4a78bf5e15675bb3e341.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdadf0d6909c4a78bf5e15675bb3e341.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdadf0d6909c4a78bf5e15675bb3e341.jpg", "file_size": 16070, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdadf0d6909c4a78bf5e15675bb3e341.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdadf0d6909c4a78bf5e15675bb3e341.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdadf0d6909c4a78bf5e15675bb3e341.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdadf0d6909c4a78bf5e15675bb3e341.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdadf0d6909c4a78bf5e15675bb3e341.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8rVz5hwNcO2huJZG2c6Fa0Naqo=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.476579+00 2025-12-09 10:15:24.476583+00 14102 HT5080#WJC22 SPMX-20240815309293 \N \N \N 1 \N [{"file_id": "e6088a95-9426-4b3d-b2b2-3e4da8bf32f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d16e768260c4f61b1fa0820354220be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d16e768260c4f61b1fa0820354220be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d16e768260c4f61b1fa0820354220be.jpg", "file_size": 21323, "is_delete": false, "file_type": 1, "original_file_name": "HT5080#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16e768260c4f61b1fa0820354220be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16e768260c4f61b1fa0820354220be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16e768260c4f61b1fa0820354220be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d16e768260c4f61b1fa0820354220be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d16e768260c4f61b1fa0820354220be.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LjTsPA1PtFCa26PVomyU-lrvAeQ=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.478613+00 2025-12-09 10:15:24.478617+00 14103 LJH1731-2#红色 SPMX-20240815309305 \N \N \N 1 \N [{"file_id": "01252e51-8444-4494-8d66-b955f178cee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0b54a89cabf43b38f2d9ba42e25e032.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0b54a89cabf43b38f2d9ba42e25e032.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0b54a89cabf43b38f2d9ba42e25e032.jpg", "file_size": 54635, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-2#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b54a89cabf43b38f2d9ba42e25e032.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b54a89cabf43b38f2d9ba42e25e032.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0b54a89cabf43b38f2d9ba42e25e032.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0b54a89cabf43b38f2d9ba42e25e032.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0b54a89cabf43b38f2d9ba42e25e032.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oZYW3AMKPEZHQQLN_aww06VKKiA=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.48062+00 2025-12-09 10:15:24.480624+00 14104 HT5081#WJC22 SPMX-20240815309306 \N \N \N 1 \N [{"file_id": "524155a3-d2c4-42b0-942a-8f0dbe7b5fc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32ce84fae97d41dcaaa9546d58491924.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32ce84fae97d41dcaaa9546d58491924.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32ce84fae97d41dcaaa9546d58491924.jpg", "file_size": 16036, "is_delete": false, "file_type": 1, "original_file_name": "HT5081#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ce84fae97d41dcaaa9546d58491924.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ce84fae97d41dcaaa9546d58491924.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ce84fae97d41dcaaa9546d58491924.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32ce84fae97d41dcaaa9546d58491924.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32ce84fae97d41dcaaa9546d58491924.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oa9VQNVXymt4_oVEOXJOAtcERBw=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.482606+00 2025-12-09 10:15:24.48261+00 14105 C930#大红净色 SPMX-20240815309303 \N \N \N 1 \N [{"file_id": "f08c180d-5855-4e40-a610-dc32ac5e8d92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0711fe05055f484388db3a990432d0b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0711fe05055f484388db3a990432d0b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0711fe05055f484388db3a990432d0b3.jpg", "file_size": 8173, "is_delete": false, "file_type": 1, "original_file_name": "C930#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0711fe05055f484388db3a990432d0b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0711fe05055f484388db3a990432d0b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0711fe05055f484388db3a990432d0b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0711fe05055f484388db3a990432d0b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0711fe05055f484388db3a990432d0b3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYfE7qrT7o8ThNutLu1MGz3ks-w=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.48459+00 2025-12-09 10:15:24.484594+00 14106 1185FWE#黄色L SPMX-20240815309299 \N \N \N 1 \N [{"file_id": "c82f5160-5ed3-4051-9c03-e114e089744b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "568e7a6301944ad5a83f7313c2a11b90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "568e7a6301944ad5a83f7313c2a11b90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "568e7a6301944ad5a83f7313c2a11b90.jpg", "file_size": 18711, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e7a6301944ad5a83f7313c2a11b90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e7a6301944ad5a83f7313c2a11b90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568e7a6301944ad5a83f7313c2a11b90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/568e7a6301944ad5a83f7313c2a11b90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/568e7a6301944ad5a83f7313c2a11b90.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7YdGWl4oV4q5v3olU-IwnuPpyyE=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.486558+00 2025-12-09 10:15:24.486562+00 14107 FM034#橘红 SPMX-20240815309301 \N \N \N 1 \N [{"file_id": "931571c0-341c-4e95-a6fe-36bd3f61669f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c966673ee45d431993f515f2c518124f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c966673ee45d431993f515f2c518124f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c966673ee45d431993f515f2c518124f.jpg", "file_size": 16172, "is_delete": false, "file_type": 1, "original_file_name": "FM034#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c966673ee45d431993f515f2c518124f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c966673ee45d431993f515f2c518124f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c966673ee45d431993f515f2c518124f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c966673ee45d431993f515f2c518124f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c966673ee45d431993f515f2c518124f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nwVfjR4RNti2aJEnQcLZkxga9o=", "createTime": "2024-08-15 14:56:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.488793+00 2025-12-09 10:15:24.488797+00 14108 8355FWF#XL SPMX-20240815309307 \N \N \N 1 \N [{"file_id": "a6751879-35bb-45c6-ae5b-2c50783f5983", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96f33976a7944088846b2684667224d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96f33976a7944088846b2684667224d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96f33976a7944088846b2684667224d5.jpg", "file_size": 20075, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f33976a7944088846b2684667224d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f33976a7944088846b2684667224d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f33976a7944088846b2684667224d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96f33976a7944088846b2684667224d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96f33976a7944088846b2684667224d5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qF_JbJpisimIQ88x9kXegFehxQo=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.490771+00 2025-12-09 10:15:24.490775+00 14109 DL31128-2#烧花通码墨绿 SPMX-20240815309308 \N \N \N 1 \N [{"file_id": "ccab5cea-0cd0-4a3d-a7c5-dff553c0917f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436cbeba515d4ad4bd987fb80a40a603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436cbeba515d4ad4bd987fb80a40a603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436cbeba515d4ad4bd987fb80a40a603.jpg", "file_size": 19853, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#烧花通码墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436cbeba515d4ad4bd987fb80a40a603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436cbeba515d4ad4bd987fb80a40a603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436cbeba515d4ad4bd987fb80a40a603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436cbeba515d4ad4bd987fb80a40a603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436cbeba515d4ad4bd987fb80a40a603.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PZ6lbuk5McYtNIh729AgomORXc=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.492767+00 2025-12-09 10:15:24.49277+00 14110 JTSS513FW#VS-D3 SPMX-20240815309310 \N \N \N 1 \N [{"file_id": "3d3ff79c-15ad-4980-9961-c90fb6ca98a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg", "file_size": 22332, "is_delete": false, "file_type": 1, "original_file_name": "JTSS513FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1d6598f1c9a4a4ab6c7b9cf5bb7beee.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khZul_kR6utXaEppkfMRV5y7hsc=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.494736+00 2025-12-09 10:15:24.494739+00 14111 FM034#橘黄 SPMX-20240815309309 \N \N \N 1 \N [{"file_id": "474f04da-7845-44d3-a09e-591dad18ffe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93a64831de234d81a1b5cde969ee8720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93a64831de234d81a1b5cde969ee8720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93a64831de234d81a1b5cde969ee8720.jpg", "file_size": 14464, "is_delete": false, "file_type": 1, "original_file_name": "FM034#橘黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a64831de234d81a1b5cde969ee8720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a64831de234d81a1b5cde969ee8720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93a64831de234d81a1b5cde969ee8720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93a64831de234d81a1b5cde969ee8720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93a64831de234d81a1b5cde969ee8720.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TA8_RCfiaOWcHx976Muca1_1LX0=", "createTime": "2024-08-15 14:56:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.496739+00 2025-12-09 10:15:24.496743+00 14112 23-2123#A2-4XL SPMX-20240815309313 \N \N \N 1 \N [{"file_id": "ec3b0360-d3a5-45ca-8af3-b5ab0fcb72de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef96873427af4323be1cf33eaac65f3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef96873427af4323be1cf33eaac65f3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef96873427af4323be1cf33eaac65f3a.jpg", "file_size": 15677, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef96873427af4323be1cf33eaac65f3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef96873427af4323be1cf33eaac65f3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef96873427af4323be1cf33eaac65f3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef96873427af4323be1cf33eaac65f3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef96873427af4323be1cf33eaac65f3a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzYhjYux-gPif4S-AZSC7DCmjuQ=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.49876+00 2025-12-09 10:15:24.498765+00 14113 LJH1731-2#绿色 SPMX-20240815309312 \N \N \N 1 \N [{"file_id": "f54c63a9-fa08-4951-99ed-33b12138ebf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3986c32794943a49523ff439b9743ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3986c32794943a49523ff439b9743ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3986c32794943a49523ff439b9743ec.jpg", "file_size": 42292, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3986c32794943a49523ff439b9743ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3986c32794943a49523ff439b9743ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3986c32794943a49523ff439b9743ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3986c32794943a49523ff439b9743ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3986c32794943a49523ff439b9743ec.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bRJ9HJWXObfQLEuiwLrRdvV_6FY=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.500792+00 2025-12-09 10:15:24.500796+00 14114 1185FWE#黄色XL SPMX-20240815309311 \N \N \N 1 \N [{"file_id": "8acdf09a-0c28-4d82-b8c3-43b10532c2c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb073d2114bf44f49516adefea561cc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb073d2114bf44f49516adefea561cc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb073d2114bf44f49516adefea561cc0.jpg", "file_size": 18867, "is_delete": false, "file_type": 1, "original_file_name": "1185FWE#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb073d2114bf44f49516adefea561cc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb073d2114bf44f49516adefea561cc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb073d2114bf44f49516adefea561cc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb073d2114bf44f49516adefea561cc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb073d2114bf44f49516adefea561cc0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3x4Yh78r_gvaxE0TRWC2f4pjGA=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.510828+00 2025-12-09 10:15:24.510833+00 14119 JTSS514FW#VS-D3 SPMX-20240815309320 \N \N \N 1 \N [{"file_id": "ab9a81b3-d05b-4032-8736-da666486c725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6bbf1e94e124f58a960376a74fbb479.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6bbf1e94e124f58a960376a74fbb479.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6bbf1e94e124f58a960376a74fbb479.jpg", "file_size": 10597, "is_delete": false, "file_type": 1, "original_file_name": "JTSS514FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6bbf1e94e124f58a960376a74fbb479.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6bbf1e94e124f58a960376a74fbb479.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6bbf1e94e124f58a960376a74fbb479.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6bbf1e94e124f58a960376a74fbb479.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6bbf1e94e124f58a960376a74fbb479.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRz1bqeyKKfNtHBJkirFJkmXkt8=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.502804+00 2025-12-09 10:15:24.502809+00 14115 DL31128-2#烧花通码彩兰 SPMX-20240815309319 \N \N \N 1 \N [{"file_id": "dfdefdb5-24a8-4a9c-9754-e229dee36e97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4154abb807854d56bec6131cf9ef73fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4154abb807854d56bec6131cf9ef73fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4154abb807854d56bec6131cf9ef73fc.jpg", "file_size": 19650, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#烧花通码彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4154abb807854d56bec6131cf9ef73fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4154abb807854d56bec6131cf9ef73fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4154abb807854d56bec6131cf9ef73fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4154abb807854d56bec6131cf9ef73fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4154abb807854d56bec6131cf9ef73fc.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9LNlB-IIjJPFPbzpbL5DnDrP28=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.504806+00 2025-12-09 10:15:24.504811+00 14116 LJH1731-2#蓝色 SPMX-20240815309323 \N \N \N 1 \N [{"file_id": "bbd4c5d5-9eec-4e61-8338-bdaae5e0a399", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a29314cc4b6142aea3f41e600669eb86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a29314cc4b6142aea3f41e600669eb86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a29314cc4b6142aea3f41e600669eb86.jpg", "file_size": 60935, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29314cc4b6142aea3f41e600669eb86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29314cc4b6142aea3f41e600669eb86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29314cc4b6142aea3f41e600669eb86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a29314cc4b6142aea3f41e600669eb86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a29314cc4b6142aea3f41e600669eb86.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5FhlIH0OPiVvlXncCQ9D3u5yQ_U=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.506808+00 2025-12-09 10:15:24.506812+00 14117 0005-8FWF#蓝色 SPMX-20240815309317 \N \N \N 1 \N [{"file_id": "529ad93d-6d27-41cb-b009-eb6196fd820d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "106922c499ef4ec3b4a61ecbd5f95508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "106922c499ef4ec3b4a61ecbd5f95508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "106922c499ef4ec3b4a61ecbd5f95508.jpg", "file_size": 7122, "is_delete": false, "file_type": 1, "original_file_name": "0005-8FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106922c499ef4ec3b4a61ecbd5f95508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106922c499ef4ec3b4a61ecbd5f95508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106922c499ef4ec3b4a61ecbd5f95508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/106922c499ef4ec3b4a61ecbd5f95508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/106922c499ef4ec3b4a61ecbd5f95508.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7uhKR7cUF9Kfs7053RhQeqyyzg=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.508788+00 2025-12-09 10:15:24.508793+00 14118 1187SK#VS-D3 SPMX-20240815309321 \N \N \N 1 \N [{"file_id": "d65e3559-82d1-4513-a833-c0de5ff7826a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "167e6b55973f4647854b91872e91c8b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "167e6b55973f4647854b91872e91c8b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "167e6b55973f4647854b91872e91c8b0.jpg", "file_size": 17829, "is_delete": false, "file_type": 1, "original_file_name": "1187SK#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e6b55973f4647854b91872e91c8b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e6b55973f4647854b91872e91c8b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e6b55973f4647854b91872e91c8b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/167e6b55973f4647854b91872e91c8b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/167e6b55973f4647854b91872e91c8b0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPNz8clGOoynm1QJ1IemxM1XoXg=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.512869+00 2025-12-09 10:15:24.512874+00 14120 C930#橙色 SPMX-20240815309314 \N \N \N 1 \N [{"file_id": "f5cb8a46-cf41-419c-815e-240ce42affb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7713872959b4e43a53d9b5921ee7df2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7713872959b4e43a53d9b5921ee7df2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7713872959b4e43a53d9b5921ee7df2.jpg", "file_size": 17895, "is_delete": false, "file_type": 1, "original_file_name": "C930#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7713872959b4e43a53d9b5921ee7df2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7713872959b4e43a53d9b5921ee7df2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7713872959b4e43a53d9b5921ee7df2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7713872959b4e43a53d9b5921ee7df2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7713872959b4e43a53d9b5921ee7df2.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MC9oa6xWEzpieWnhEyyKj7uMsN4=", "createTime": "2024-08-15 14:56:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.515129+00 2025-12-09 10:15:24.515134+00 14121 LZ1327#背心款2号色 SPMX-20240815309316 \N \N \N 1 \N [{"file_id": "9a3bf0b8-8fc2-45dc-b9e8-c38c847c8ff4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c168b273f90f48539fd95c80066c3d52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c168b273f90f48539fd95c80066c3d52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c168b273f90f48539fd95c80066c3d52.jpg", "file_size": 17178, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168b273f90f48539fd95c80066c3d52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168b273f90f48539fd95c80066c3d52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168b273f90f48539fd95c80066c3d52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c168b273f90f48539fd95c80066c3d52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c168b273f90f48539fd95c80066c3d52.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPjaOdvQ5Qx1onwCP6gg5ZHjQnM=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.517248+00 2025-12-09 10:15:24.517253+00 14122 23-2123#A2-领子3XL SPMX-20240815309324 \N \N \N 1 \N [{"file_id": "743a180c-a069-495e-b152-9d2350f17ca5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3a08fd58894562a689bd1ed44965aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3a08fd58894562a689bd1ed44965aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3a08fd58894562a689bd1ed44965aa.jpg", "file_size": 11677, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3a08fd58894562a689bd1ed44965aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3a08fd58894562a689bd1ed44965aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3a08fd58894562a689bd1ed44965aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3a08fd58894562a689bd1ed44965aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3a08fd58894562a689bd1ed44965aa.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9u4rmTNVWO9-TE2sHGeuA7UPkw=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.519675+00 2025-12-09 10:15:24.51968+00 14123 HT5082#WJC22 SPMX-20240815309315 \N \N \N 1 \N [{"file_id": "155a1040-d9bf-4d30-9058-282ac20cc928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7493468775746d8b7db9ab2b37fd13a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7493468775746d8b7db9ab2b37fd13a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7493468775746d8b7db9ab2b37fd13a.jpg", "file_size": 27337, "is_delete": false, "file_type": 1, "original_file_name": "HT5082#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7493468775746d8b7db9ab2b37fd13a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7493468775746d8b7db9ab2b37fd13a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7493468775746d8b7db9ab2b37fd13a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7493468775746d8b7db9ab2b37fd13a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7493468775746d8b7db9ab2b37fd13a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8_IKHBV8r1t-_zFign02ZBgQoY=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.52192+00 2025-12-09 10:15:24.521924+00 14124 8355FWF#匹布 SPMX-20240815309318 \N \N \N 1 \N [{"file_id": "e9e1c93a-b8bc-45cc-bdf0-0556a6249582", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f425b1fc60cc458da430f60648d453e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f425b1fc60cc458da430f60648d453e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f425b1fc60cc458da430f60648d453e3.jpg", "file_size": 24951, "is_delete": false, "file_type": 1, "original_file_name": "8355FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f425b1fc60cc458da430f60648d453e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f425b1fc60cc458da430f60648d453e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f425b1fc60cc458da430f60648d453e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f425b1fc60cc458da430f60648d453e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f425b1fc60cc458da430f60648d453e3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wOV4ktXHyIX28tZOsTUiGY608A0=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.523928+00 2025-12-09 10:15:24.523932+00 14125 FM034#黑色 SPMX-20240815309322 \N \N \N 1 \N [{"file_id": "eec19971-c6a0-45f9-9bb5-58813dcb5902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeecdc72f48d4e10b647483e7dce3e5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeecdc72f48d4e10b647483e7dce3e5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeecdc72f48d4e10b647483e7dce3e5a.jpg", "file_size": 16612, "is_delete": false, "file_type": 1, "original_file_name": "FM034#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeecdc72f48d4e10b647483e7dce3e5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeecdc72f48d4e10b647483e7dce3e5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeecdc72f48d4e10b647483e7dce3e5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeecdc72f48d4e10b647483e7dce3e5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeecdc72f48d4e10b647483e7dce3e5a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oSn-TmFhhWGdL9XuF5kHW2Lbom8=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.525917+00 2025-12-09 10:15:24.525921+00 14126 DL31128-2#烧花通码紫色 SPMX-20240815309329 \N \N \N 1 \N [{"file_id": "4df335c2-3660-4c7d-8441-6de42a8014f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "639c7df8743744879159c7f7d98eb2da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "639c7df8743744879159c7f7d98eb2da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "639c7df8743744879159c7f7d98eb2da.jpg", "file_size": 19731, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#烧花通码紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639c7df8743744879159c7f7d98eb2da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639c7df8743744879159c7f7d98eb2da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639c7df8743744879159c7f7d98eb2da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/639c7df8743744879159c7f7d98eb2da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/639c7df8743744879159c7f7d98eb2da.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGLOzl0Mo7R0CYVR70xCX_6A9z4=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.527922+00 2025-12-09 10:15:24.527927+00 14127 0005-9#WJC22 SPMX-20240815309328 \N \N \N 1 \N [{"file_id": "842a40c5-0593-4232-9067-dcbdc1ee34cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b481bd75cfdc47e7a210f30e9a656973.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b481bd75cfdc47e7a210f30e9a656973.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b481bd75cfdc47e7a210f30e9a656973.jpg", "file_size": 11517, "is_delete": false, "file_type": 1, "original_file_name": "0005-9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b481bd75cfdc47e7a210f30e9a656973.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b481bd75cfdc47e7a210f30e9a656973.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b481bd75cfdc47e7a210f30e9a656973.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b481bd75cfdc47e7a210f30e9a656973.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b481bd75cfdc47e7a210f30e9a656973.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bXG5nWCHkLEj8o-ElWnq5Y9jLqY=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.529965+00 2025-12-09 10:15:24.529969+00 14128 FM035#大红 SPMX-20240815309334 \N \N \N 1 \N [{"file_id": "c05270fc-8215-4a66-8da9-3ebc9a279f25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ba441453f5a44029b0a6a6576c01a3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ba441453f5a44029b0a6a6576c01a3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ba441453f5a44029b0a6a6576c01a3d.jpg", "file_size": 15873, "is_delete": false, "file_type": 1, "original_file_name": "FM035#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba441453f5a44029b0a6a6576c01a3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba441453f5a44029b0a6a6576c01a3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ba441453f5a44029b0a6a6576c01a3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ba441453f5a44029b0a6a6576c01a3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ba441453f5a44029b0a6a6576c01a3d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75-YetjSJwoyHgJQ4jcade-foXc=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.53203+00 2025-12-09 10:15:24.532034+00 14129 C930#橙色净色 SPMX-20240815309326 \N \N \N 1 \N [{"file_id": "f6a4e2ad-8367-4e5f-b80e-5213d9f6b9a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82b4b3a5dbca47668bdf3fa21197c720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82b4b3a5dbca47668bdf3fa21197c720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82b4b3a5dbca47668bdf3fa21197c720.jpg", "file_size": 8281, "is_delete": false, "file_type": 1, "original_file_name": "C930#橙色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b4b3a5dbca47668bdf3fa21197c720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b4b3a5dbca47668bdf3fa21197c720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b4b3a5dbca47668bdf3fa21197c720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82b4b3a5dbca47668bdf3fa21197c720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82b4b3a5dbca47668bdf3fa21197c720.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGBlZ2Gs8PueaRqQLlwjX3klM-w=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.534049+00 2025-12-09 10:15:24.534054+00 14130 LJH1731-2#黄色 SPMX-20240815309333 \N \N \N 1 \N [{"file_id": "ab92ec39-d438-4d03-9265-bc26ecc24e16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg", "file_size": 62777, "is_delete": false, "file_type": 1, "original_file_name": "LJH1731-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa8acc58e3cc4ce8b5a064dcdd6d9376.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KamqsbC7ys5wle0DqHGnNAQSnWo=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.536363+00 2025-12-09 10:15:24.536368+00 14131 23-2123#A2-领子4XL SPMX-20240815309335 \N \N \N 1 \N [{"file_id": "35c345ef-0018-4b96-9759-3ae720b76de3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6d44c4185d44fa585d09849cd558995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6d44c4185d44fa585d09849cd558995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6d44c4185d44fa585d09849cd558995.jpg", "file_size": 11976, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d44c4185d44fa585d09849cd558995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d44c4185d44fa585d09849cd558995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d44c4185d44fa585d09849cd558995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6d44c4185d44fa585d09849cd558995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6d44c4185d44fa585d09849cd558995.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vgYjIMgWq3ZDkH7h7wt7jlD_9Q=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.538968+00 2025-12-09 10:15:24.538973+00 14132 JTSS515FW#VS-D3 SPMX-20240815309331 \N \N \N 1 \N [{"file_id": "42864cec-94d6-47b5-9200-0fd54544e3c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f641c24cede4ff99f97479bac54f823.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f641c24cede4ff99f97479bac54f823.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f641c24cede4ff99f97479bac54f823.jpg", "file_size": 9217, "is_delete": false, "file_type": 1, "original_file_name": "JTSS515FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f641c24cede4ff99f97479bac54f823.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f641c24cede4ff99f97479bac54f823.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f641c24cede4ff99f97479bac54f823.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f641c24cede4ff99f97479bac54f823.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f641c24cede4ff99f97479bac54f823.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xon_VpH11whh55cFFS_w2H3htz8=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.541487+00 2025-12-09 10:15:24.541492+00 14133 1188FWE#VS-D3 SPMX-20240815309332 \N \N \N 1 \N [{"file_id": "66d2af70-d1de-42d2-acc4-a4f23e7b26b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebb489e9680442fab8f1fafa6ccba060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebb489e9680442fab8f1fafa6ccba060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebb489e9680442fab8f1fafa6ccba060.jpg", "file_size": 11245, "is_delete": false, "file_type": 1, "original_file_name": "1188FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb489e9680442fab8f1fafa6ccba060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb489e9680442fab8f1fafa6ccba060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb489e9680442fab8f1fafa6ccba060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebb489e9680442fab8f1fafa6ccba060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebb489e9680442fab8f1fafa6ccba060.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7duuPf0clkeVIxVYbgTsCodzQEQ=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.544335+00 2025-12-09 10:15:24.54434+00 14134 HT5083#姜黄 SPMX-20240815309325 \N \N \N 1 \N [{"file_id": "6409bda8-c4ef-4fe2-a550-9b0a3248a1f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b442e4c6249646409fd2b0dc2a6379b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b442e4c6249646409fd2b0dc2a6379b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b442e4c6249646409fd2b0dc2a6379b0.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "HT5083#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b442e4c6249646409fd2b0dc2a6379b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b442e4c6249646409fd2b0dc2a6379b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b442e4c6249646409fd2b0dc2a6379b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b442e4c6249646409fd2b0dc2a6379b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b442e4c6249646409fd2b0dc2a6379b0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJHaYl8xZtaqGcXFa_9vJFd5j5A=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.547205+00 2025-12-09 10:15:24.547211+00 14135 LZ1327#背心款3号色 SPMX-20240815309327 \N \N \N 1 \N [{"file_id": "80956e7e-832e-4404-b712-58498843e861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e71912bf8bdd40299a9f8da0c76eec44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e71912bf8bdd40299a9f8da0c76eec44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e71912bf8bdd40299a9f8da0c76eec44.jpg", "file_size": 18165, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e71912bf8bdd40299a9f8da0c76eec44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e71912bf8bdd40299a9f8da0c76eec44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e71912bf8bdd40299a9f8da0c76eec44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e71912bf8bdd40299a9f8da0c76eec44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e71912bf8bdd40299a9f8da0c76eec44.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Unz6dapbwng86hX6YdW-QZtM9pQ=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.55012+00 2025-12-09 10:15:24.550126+00 14136 8360FWF#米咖 SPMX-20240815309330 \N \N \N 1 \N [{"file_id": "80875a55-7bae-4863-8bec-eada7877a543", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a9c779f1ce14a2798cfedae750d2d8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a9c779f1ce14a2798cfedae750d2d8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a9c779f1ce14a2798cfedae750d2d8a.jpg", "file_size": 16840, "is_delete": false, "file_type": 1, "original_file_name": "8360FWF#米咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9c779f1ce14a2798cfedae750d2d8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9c779f1ce14a2798cfedae750d2d8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a9c779f1ce14a2798cfedae750d2d8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a9c779f1ce14a2798cfedae750d2d8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a9c779f1ce14a2798cfedae750d2d8a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ET8Z9Fqv9QHzB5lDTv64yC4O718=", "createTime": "2024-08-15 14:56:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.552952+00 2025-12-09 10:15:24.552957+00 14137 HT5083#宝蓝 SPMX-20240815309336 \N \N \N 1 \N [{"file_id": "2a74ed23-b210-4324-8ff7-4894b75ee530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "579a21e8543044689f5b7eb85633b6ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "579a21e8543044689f5b7eb85633b6ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "579a21e8543044689f5b7eb85633b6ca.jpg", "file_size": 21279, "is_delete": false, "file_type": 1, "original_file_name": "HT5083#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579a21e8543044689f5b7eb85633b6ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579a21e8543044689f5b7eb85633b6ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579a21e8543044689f5b7eb85633b6ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/579a21e8543044689f5b7eb85633b6ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/579a21e8543044689f5b7eb85633b6ca.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAbxV0aosw02iaHyrb0USjif904=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.555786+00 2025-12-09 10:15:24.555791+00 14138 DL31128-2#袖子原版色 SPMX-20240815309341 \N \N \N 1 \N [{"file_id": "308985c1-b04a-4113-948b-a5eb1b13e9d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b37a5251fad8426a860c8867efff42fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b37a5251fad8426a860c8867efff42fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b37a5251fad8426a860c8867efff42fe.jpg", "file_size": 15627, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#袖子原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37a5251fad8426a860c8867efff42fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37a5251fad8426a860c8867efff42fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b37a5251fad8426a860c8867efff42fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b37a5251fad8426a860c8867efff42fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b37a5251fad8426a860c8867efff42fe.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQdEoJgyIXU63AGlnDr1fPLCMHE=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.558329+00 2025-12-09 10:15:24.558335+00 14139 FM035#彩兰 SPMX-20240815309344 \N \N \N 1 \N [{"file_id": "68ffb30e-3993-4c1b-acbd-72da83deae42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4abec003d49f47068ea5551080e44f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4abec003d49f47068ea5551080e44f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4abec003d49f47068ea5551080e44f0e.jpg", "file_size": 17037, "is_delete": false, "file_type": 1, "original_file_name": "FM035#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abec003d49f47068ea5551080e44f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abec003d49f47068ea5551080e44f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abec003d49f47068ea5551080e44f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4abec003d49f47068ea5551080e44f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4abec003d49f47068ea5551080e44f0e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPQQoCr56yw39V4jnJEqKUuIOGU=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.560667+00 2025-12-09 10:15:24.560673+00 14140 23-2123#A3-3XL SPMX-20240815309347 \N \N \N 1 \N [{"file_id": "40b1ff7a-75fe-49f9-890e-219dc0cee49b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f679febdbe8746748c33a73ef9339735.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f679febdbe8746748c33a73ef9339735.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f679febdbe8746748c33a73ef9339735.jpg", "file_size": 15732, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f679febdbe8746748c33a73ef9339735.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f679febdbe8746748c33a73ef9339735.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f679febdbe8746748c33a73ef9339735.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f679febdbe8746748c33a73ef9339735.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f679febdbe8746748c33a73ef9339735.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUwNLiDUHTLSAsbi7PFCw05UuwM=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.563226+00 2025-12-09 10:15:24.563232+00 14141 LZ1327#背心款5号色 SPMX-20240815309350 \N \N \N 1 \N [{"file_id": "aec4a36d-6bce-4848-a0cb-500e733ce52b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e27bed0a36e423aa61f1ca503d75c45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e27bed0a36e423aa61f1ca503d75c45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e27bed0a36e423aa61f1ca503d75c45.jpg", "file_size": 16905, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e27bed0a36e423aa61f1ca503d75c45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e27bed0a36e423aa61f1ca503d75c45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e27bed0a36e423aa61f1ca503d75c45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e27bed0a36e423aa61f1ca503d75c45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e27bed0a36e423aa61f1ca503d75c45.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkxyL0iy5GBYZmWU-a3jjmi7EOs=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.565812+00 2025-12-09 10:15:24.565818+00 14142 HT5083#红色 SPMX-20240815309348 \N \N \N 1 \N [{"file_id": "cdf7a80b-6880-4e75-a784-7266535ae4c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87ba077a709e415b8aa41623b9f85c2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87ba077a709e415b8aa41623b9f85c2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87ba077a709e415b8aa41623b9f85c2b.jpg", "file_size": 21162, "is_delete": false, "file_type": 1, "original_file_name": "HT5083#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba077a709e415b8aa41623b9f85c2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba077a709e415b8aa41623b9f85c2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ba077a709e415b8aa41623b9f85c2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87ba077a709e415b8aa41623b9f85c2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87ba077a709e415b8aa41623b9f85c2b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gka7Y2cyg6SWedW3Vztm0GIS92U=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.568376+00 2025-12-09 10:15:24.568382+00 14143 8360FWF#绿色 SPMX-20240815309349 \N \N \N 1 \N [{"file_id": "90c9953d-3ee4-41d4-b10b-92fc7325308c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f096d6973684961894b397fb1a90542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f096d6973684961894b397fb1a90542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f096d6973684961894b397fb1a90542.jpg", "file_size": 16616, "is_delete": false, "file_type": 1, "original_file_name": "8360FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f096d6973684961894b397fb1a90542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f096d6973684961894b397fb1a90542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f096d6973684961894b397fb1a90542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f096d6973684961894b397fb1a90542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f096d6973684961894b397fb1a90542.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GAIDCIXho4AsMmJ8eWHjuv3VYxg=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.570937+00 2025-12-09 10:15:24.570942+00 14144 C930#湖绿 SPMX-20240815309340 \N \N \N 1 \N [{"file_id": "46d3020a-5c6e-4e5d-bfe4-7459ee83410f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "633e59c68b8449ac9468a15f27c1f733.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "633e59c68b8449ac9468a15f27c1f733.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "633e59c68b8449ac9468a15f27c1f733.jpg", "file_size": 16781, "is_delete": false, "file_type": 1, "original_file_name": "C930#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633e59c68b8449ac9468a15f27c1f733.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633e59c68b8449ac9468a15f27c1f733.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633e59c68b8449ac9468a15f27c1f733.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/633e59c68b8449ac9468a15f27c1f733.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/633e59c68b8449ac9468a15f27c1f733.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmqmgFzfDdlHnoNf0QFFbWS2mwo=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.573477+00 2025-12-09 10:15:24.573483+00 14145 0005-9FWF#V5曲线 SPMX-20240815309346 \N \N \N 1 \N [{"file_id": "9ba1298e-5027-45a4-a152-f95364b75d72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ee9a71cd251477b9c16c693e9770a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ee9a71cd251477b9c16c693e9770a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ee9a71cd251477b9c16c693e9770a07.jpg", "file_size": 18299, "is_delete": false, "file_type": 1, "original_file_name": "0005-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee9a71cd251477b9c16c693e9770a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee9a71cd251477b9c16c693e9770a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ee9a71cd251477b9c16c693e9770a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ee9a71cd251477b9c16c693e9770a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ee9a71cd251477b9c16c693e9770a07.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_7TiWo7TRHO4dPKJo35FGYTGm0=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.576128+00 2025-12-09 10:15:24.576134+00 14146 JTSS516FW#VS-D3 SPMX-20240815309342 \N \N \N 1 \N [{"file_id": "5d4a1f7f-21dd-43e9-aa30-64c7199860f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bb0d7c3d2034c549176b681d36ffc12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bb0d7c3d2034c549176b681d36ffc12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bb0d7c3d2034c549176b681d36ffc12.jpg", "file_size": 10658, "is_delete": false, "file_type": 1, "original_file_name": "JTSS516FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb0d7c3d2034c549176b681d36ffc12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb0d7c3d2034c549176b681d36ffc12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bb0d7c3d2034c549176b681d36ffc12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bb0d7c3d2034c549176b681d36ffc12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bb0d7c3d2034c549176b681d36ffc12.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r93kzMDEYKvlCtyDLoSN23a3Tgs=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.578689+00 2025-12-09 10:15:24.578695+00 14147 119#-杏色 SPMX-20240815309345 \N \N \N 1 \N [{"file_id": "6467e89b-9009-4466-bbef-aed41077d508", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "960971b38ba149248d3e1f0886474720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "960971b38ba149248d3e1f0886474720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "960971b38ba149248d3e1f0886474720.jpg", "file_size": 50837, "is_delete": false, "file_type": 1, "original_file_name": "119#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960971b38ba149248d3e1f0886474720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960971b38ba149248d3e1f0886474720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/960971b38ba149248d3e1f0886474720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/960971b38ba149248d3e1f0886474720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/960971b38ba149248d3e1f0886474720.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAsKuXS5vshkr9PE4nNVVCnx-8A=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.581276+00 2025-12-09 10:15:24.581282+00 14148 8360FWF#米咖番禺调色 SPMX-20240815309337 \N \N \N 1 \N [{"file_id": "0bc06278-6837-423c-a142-da2a10e2c505", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83cba41f7b394d51bce40d2565606460.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83cba41f7b394d51bce40d2565606460.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83cba41f7b394d51bce40d2565606460.jpg", "file_size": 17198, "is_delete": false, "file_type": 1, "original_file_name": "8360FWF#米咖番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cba41f7b394d51bce40d2565606460.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cba41f7b394d51bce40d2565606460.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cba41f7b394d51bce40d2565606460.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83cba41f7b394d51bce40d2565606460.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83cba41f7b394d51bce40d2565606460.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBiSEI0in-hRZ88X03kIdxhVYKY=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.58383+00 2025-12-09 10:15:24.583836+00 14149 C930#湖绿净色 SPMX-20240815309351 \N \N \N 1 \N [{"file_id": "4c1c6070-aff4-4880-a57f-8df3d7baffad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a148091d11e74004b7fccd95ddeddf51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a148091d11e74004b7fccd95ddeddf51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a148091d11e74004b7fccd95ddeddf51.jpg", "file_size": 8439, "is_delete": false, "file_type": 1, "original_file_name": "C930#湖绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a148091d11e74004b7fccd95ddeddf51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a148091d11e74004b7fccd95ddeddf51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a148091d11e74004b7fccd95ddeddf51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a148091d11e74004b7fccd95ddeddf51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a148091d11e74004b7fccd95ddeddf51.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsuGYousbAF9REi1oknWSxBDW40=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.586428+00 2025-12-09 10:15:24.586433+00 14150 LZ1327#背心款4号色 SPMX-20240815309339 \N \N \N 1 \N [{"file_id": "350e490d-1fbe-426b-aaa0-9993e7ccba02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73e6b9cc9ed2445498e65a3d096a49ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73e6b9cc9ed2445498e65a3d096a49ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73e6b9cc9ed2445498e65a3d096a49ee.jpg", "file_size": 17193, "is_delete": false, "file_type": 1, "original_file_name": "LZ1327#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6b9cc9ed2445498e65a3d096a49ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6b9cc9ed2445498e65a3d096a49ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6b9cc9ed2445498e65a3d096a49ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73e6b9cc9ed2445498e65a3d096a49ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73e6b9cc9ed2445498e65a3d096a49ee.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfG2gDVzTNaO4etCIEkLkbpHpqs=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.588963+00 2025-12-09 10:15:24.588969+00 14151 0005-9#WJC22番禺调色 SPMX-20240815309338 \N \N \N 1 \N [{"file_id": "b19ab3de-478b-4e40-a52a-30128f9d409c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a010a1031ed045779513f9c4427cdc41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a010a1031ed045779513f9c4427cdc41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a010a1031ed045779513f9c4427cdc41.jpg", "file_size": 12844, "is_delete": false, "file_type": 1, "original_file_name": "0005-9#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a010a1031ed045779513f9c4427cdc41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a010a1031ed045779513f9c4427cdc41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a010a1031ed045779513f9c4427cdc41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a010a1031ed045779513f9c4427cdc41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a010a1031ed045779513f9c4427cdc41.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tX8NCqqchC4Nb86RgYv4cHfBQA=", "createTime": "2024-08-15 14:56:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.591503+00 2025-12-09 10:15:24.591509+00 14152 LJH1732-1#原版色 SPMX-20240815309343 \N \N \N 1 \N [{"file_id": "888aa15a-10f1-4080-8351-28f097558de4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751c154b31544fe8b05888ecd6ad004e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751c154b31544fe8b05888ecd6ad004e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751c154b31544fe8b05888ecd6ad004e.jpg", "file_size": 35647, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-1#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c154b31544fe8b05888ecd6ad004e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c154b31544fe8b05888ecd6ad004e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c154b31544fe8b05888ecd6ad004e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751c154b31544fe8b05888ecd6ad004e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751c154b31544fe8b05888ecd6ad004e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvyjcHKrp_JzdkoRZsPLC2imz9w=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.594072+00 2025-12-09 10:15:24.594078+00 14153 C930#粉红 SPMX-20240815309357 \N \N \N 1 \N [{"file_id": "6aa151bd-cea7-418d-ab7d-726706bba2de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df47d5fcbad84a2689c789994e1927b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df47d5fcbad84a2689c789994e1927b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df47d5fcbad84a2689c789994e1927b4.jpg", "file_size": 17140, "is_delete": false, "file_type": 1, "original_file_name": "C930#粉红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df47d5fcbad84a2689c789994e1927b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df47d5fcbad84a2689c789994e1927b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df47d5fcbad84a2689c789994e1927b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df47d5fcbad84a2689c789994e1927b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df47d5fcbad84a2689c789994e1927b4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-m-8HETdKKD8Z_19SzyKV7HkIk=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.596654+00 2025-12-09 10:15:24.59666+00 14154 JTSS517FW#VS-D3 SPMX-20240815309354 \N \N \N 1 \N [{"file_id": "e27818d6-93ca-4bdf-8dea-1239726bf625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e59de2848c8045568d1949b298f506e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e59de2848c8045568d1949b298f506e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e59de2848c8045568d1949b298f506e6.jpg", "file_size": 12911, "is_delete": false, "file_type": 1, "original_file_name": "JTSS517FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59de2848c8045568d1949b298f506e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59de2848c8045568d1949b298f506e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59de2848c8045568d1949b298f506e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e59de2848c8045568d1949b298f506e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e59de2848c8045568d1949b298f506e6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ls3-Vw_B3wCwzze_3KDg6rcVOFA=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.599018+00 2025-12-09 10:15:24.599023+00 14155 DL31128-2#袖子墨绿 SPMX-20240815309352 \N \N \N 1 \N [{"file_id": "2dd44e8f-4aca-4024-a920-2e9785d70d4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdd2b8e9c79744f589aa743ca2c2e56d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdd2b8e9c79744f589aa743ca2c2e56d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdd2b8e9c79744f589aa743ca2c2e56d.jpg", "file_size": 15735, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#袖子墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd2b8e9c79744f589aa743ca2c2e56d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd2b8e9c79744f589aa743ca2c2e56d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd2b8e9c79744f589aa743ca2c2e56d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdd2b8e9c79744f589aa743ca2c2e56d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdd2b8e9c79744f589aa743ca2c2e56d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KZaFTfIgLSrwGNFBdBof8t_RVo=", "createTime": "2024-08-15 14:56:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.601576+00 2025-12-09 10:15:24.601582+00 14156 119#-深杏 SPMX-20240815309358 \N \N \N 1 \N [{"file_id": "03ab5a8e-3597-498c-8bfc-071ca604c9c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3beac082d7294d18a9638210ae44b015.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3beac082d7294d18a9638210ae44b015.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3beac082d7294d18a9638210ae44b015.jpg", "file_size": 51200, "is_delete": false, "file_type": 1, "original_file_name": "119#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3beac082d7294d18a9638210ae44b015.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3beac082d7294d18a9638210ae44b015.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3beac082d7294d18a9638210ae44b015.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3beac082d7294d18a9638210ae44b015.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3beac082d7294d18a9638210ae44b015.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cEFW38weTUB9bm3KaMOzwPu4WE=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.604092+00 2025-12-09 10:15:24.604098+00 14157 LZ1328#捆条布 SPMX-20240815309363 \N \N \N 1 \N [{"file_id": "4bedeb51-1a5a-44ac-946c-942b0b073d32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc534b33671f4b69b243a2d5032815bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc534b33671f4b69b243a2d5032815bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc534b33671f4b69b243a2d5032815bb.jpg", "file_size": 22390, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc534b33671f4b69b243a2d5032815bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc534b33671f4b69b243a2d5032815bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc534b33671f4b69b243a2d5032815bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc534b33671f4b69b243a2d5032815bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc534b33671f4b69b243a2d5032815bb.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IRqWrqKknAL2P1Emj3P8_mMRSng=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.606646+00 2025-12-09 10:15:24.606651+00 14158 LJH1732-1#墨绿 SPMX-20240815309353 \N \N \N 1 \N [{"file_id": "d4d7bb9f-da0a-4ec8-9e06-1d1cd3c2ee87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6c1fdb7a38c48e8abef832c79174415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6c1fdb7a38c48e8abef832c79174415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6c1fdb7a38c48e8abef832c79174415.jpg", "file_size": 34574, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-1#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c1fdb7a38c48e8abef832c79174415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c1fdb7a38c48e8abef832c79174415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c1fdb7a38c48e8abef832c79174415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6c1fdb7a38c48e8abef832c79174415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6c1fdb7a38c48e8abef832c79174415.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJ6off3POa6mIVZM9tUwDy6ZBxU=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.609201+00 2025-12-09 10:15:24.609206+00 14159 23-2123#A3-4XL SPMX-20240815309361 \N \N \N 1 \N [{"file_id": "d687d927-b4e5-445b-909f-bb99907ca0dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a06cd060dd0c4afb90bdb9182e7ac108.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a06cd060dd0c4afb90bdb9182e7ac108.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a06cd060dd0c4afb90bdb9182e7ac108.jpg", "file_size": 15079, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06cd060dd0c4afb90bdb9182e7ac108.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06cd060dd0c4afb90bdb9182e7ac108.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06cd060dd0c4afb90bdb9182e7ac108.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a06cd060dd0c4afb90bdb9182e7ac108.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a06cd060dd0c4afb90bdb9182e7ac108.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g54cjnESSOn6rWwUigfMH5KNSdA=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.611745+00 2025-12-09 10:15:24.61175+00 14160 8360FWF#绿色番禺调色 SPMX-20240815309355 \N \N \N 1 \N [{"file_id": "a3eafb75-c7e1-45ac-acee-73a01db73499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4679b1a29aa04d0a91fca7165e73e633.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4679b1a29aa04d0a91fca7165e73e633.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4679b1a29aa04d0a91fca7165e73e633.jpg", "file_size": 16758, "is_delete": false, "file_type": 1, "original_file_name": "8360FWF#绿色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4679b1a29aa04d0a91fca7165e73e633.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4679b1a29aa04d0a91fca7165e73e633.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4679b1a29aa04d0a91fca7165e73e633.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4679b1a29aa04d0a91fca7165e73e633.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4679b1a29aa04d0a91fca7165e73e633.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ho17rjoN1hMN0QI7TSR_0W9S_5M=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.614075+00 2025-12-09 10:15:24.614081+00 14161 0006-10FWE#VS-D3番禺调色 SPMX-20240815309360 \N \N \N 1 \N [{"file_id": "996b6cef-f999-467c-9ee3-3017e88875bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "809e7561ef2b4ad18ebd73137ca04706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "809e7561ef2b4ad18ebd73137ca04706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "809e7561ef2b4ad18ebd73137ca04706.jpg", "file_size": 10672, "is_delete": false, "file_type": 1, "original_file_name": "0006-10FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809e7561ef2b4ad18ebd73137ca04706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809e7561ef2b4ad18ebd73137ca04706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809e7561ef2b4ad18ebd73137ca04706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/809e7561ef2b4ad18ebd73137ca04706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/809e7561ef2b4ad18ebd73137ca04706.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5Pu2punu02gpOtxxrIoBCqlv08=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.616612+00 2025-12-09 10:15:24.616617+00 14162 DL31128-2#袖子彩兰 SPMX-20240815309362 \N \N \N 1 \N [{"file_id": "cf567065-bc96-4cb1-8403-e0b500d56631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7799b87fa6f34d4999dc4fe2f900a0ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7799b87fa6f34d4999dc4fe2f900a0ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7799b87fa6f34d4999dc4fe2f900a0ba.jpg", "file_size": 15594, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7799b87fa6f34d4999dc4fe2f900a0ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7799b87fa6f34d4999dc4fe2f900a0ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7799b87fa6f34d4999dc4fe2f900a0ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7799b87fa6f34d4999dc4fe2f900a0ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7799b87fa6f34d4999dc4fe2f900a0ba.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKRnLYuFFfJWardrCME5Y1O3KE0=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.619242+00 2025-12-09 10:15:24.619247+00 14163 FM035#橘红 SPMX-20240815309356 \N \N \N 1 \N [{"file_id": "8f7a01f6-5ff7-4586-ac81-897265ad700e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2224a05041df44fa8d228598a5b278e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2224a05041df44fa8d228598a5b278e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2224a05041df44fa8d228598a5b278e7.jpg", "file_size": 16104, "is_delete": false, "file_type": 1, "original_file_name": "FM035#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2224a05041df44fa8d228598a5b278e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2224a05041df44fa8d228598a5b278e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2224a05041df44fa8d228598a5b278e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2224a05041df44fa8d228598a5b278e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2224a05041df44fa8d228598a5b278e7.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPFbou3i0BlicfKHjkyiFGwGgJA=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.621805+00 2025-12-09 10:15:24.62181+00 14164 HT5083#黑色 SPMX-20240815309359 \N \N \N 1 \N [{"file_id": "723727f9-3b6d-44ca-b155-79adf9bc8c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae1c2836092a4eebbdb26bfcf89806ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae1c2836092a4eebbdb26bfcf89806ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae1c2836092a4eebbdb26bfcf89806ce.jpg", "file_size": 20492, "is_delete": false, "file_type": 1, "original_file_name": "HT5083#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1c2836092a4eebbdb26bfcf89806ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1c2836092a4eebbdb26bfcf89806ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae1c2836092a4eebbdb26bfcf89806ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae1c2836092a4eebbdb26bfcf89806ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae1c2836092a4eebbdb26bfcf89806ce.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hFIrTQEUDvI7ciyTEsDX0gLA0sY=", "createTime": "2024-08-15 14:56:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.624342+00 2025-12-09 10:15:24.624348+00 14165 LJH1732-1#蓝色 SPMX-20240815309375 \N \N \N 1 \N [{"file_id": "d3597fef-951d-4b9b-8b81-7b860023bf52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aec539f5434f4c3392fd0dad9247be97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aec539f5434f4c3392fd0dad9247be97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aec539f5434f4c3392fd0dad9247be97.jpg", "file_size": 37451, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec539f5434f4c3392fd0dad9247be97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec539f5434f4c3392fd0dad9247be97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aec539f5434f4c3392fd0dad9247be97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aec539f5434f4c3392fd0dad9247be97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aec539f5434f4c3392fd0dad9247be97.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jvm48Qu_NkOj_OPAjJXXYhKfTQg=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.626912+00 2025-12-09 10:15:24.626917+00 14166 HT5084#WJC22 SPMX-20240815309368 \N \N \N 1 \N [{"file_id": "b5227727-c139-4885-9d0a-06eb18537bf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c46dd4dd2041416c8c5d1b87eb940dc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c46dd4dd2041416c8c5d1b87eb940dc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c46dd4dd2041416c8c5d1b87eb940dc2.jpg", "file_size": 9485, "is_delete": false, "file_type": 1, "original_file_name": "HT5084#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c46dd4dd2041416c8c5d1b87eb940dc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c46dd4dd2041416c8c5d1b87eb940dc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c46dd4dd2041416c8c5d1b87eb940dc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c46dd4dd2041416c8c5d1b87eb940dc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c46dd4dd2041416c8c5d1b87eb940dc2.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0pAutGpkkH2i-lrr0b3obvKFHw=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.629248+00 2025-12-09 10:15:24.629254+00 14167 8361FWF#V5曲线番禺调色 SPMX-20240815309378 \N \N \N 1 \N [{"file_id": "5b8ac093-0537-40e8-8c41-59679b94fe89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "777566b76db04c36907249fd589c84e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "777566b76db04c36907249fd589c84e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "777566b76db04c36907249fd589c84e0.jpg", "file_size": 17164, "is_delete": false, "file_type": 1, "original_file_name": "8361FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777566b76db04c36907249fd589c84e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777566b76db04c36907249fd589c84e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777566b76db04c36907249fd589c84e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/777566b76db04c36907249fd589c84e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/777566b76db04c36907249fd589c84e0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPE4omPKbfu210XBIJ3MyFa9dHg=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.631842+00 2025-12-09 10:15:24.631848+00 14168 LJH1732-1#绿色 SPMX-20240815309365 \N \N \N 1 \N [{"file_id": "36c9dc50-f731-4e19-8c57-24b59696c4ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b05aba5299e4422cae86d67a76e88123.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b05aba5299e4422cae86d67a76e88123.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b05aba5299e4422cae86d67a76e88123.jpg", "file_size": 32638, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05aba5299e4422cae86d67a76e88123.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05aba5299e4422cae86d67a76e88123.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b05aba5299e4422cae86d67a76e88123.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b05aba5299e4422cae86d67a76e88123.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b05aba5299e4422cae86d67a76e88123.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:daHXHvoDKIpi7xbm818az7QG3Yk=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.634445+00 2025-12-09 10:15:24.634451+00 14169 23-2123#A3-领子3XL SPMX-20240815309372 \N \N \N 1 \N [{"file_id": "c8e99d54-e164-4a1b-a337-9b1aa4427811", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab43071bfa87441d8ea6379e22ce9f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab43071bfa87441d8ea6379e22ce9f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab43071bfa87441d8ea6379e22ce9f95.jpg", "file_size": 13368, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071bfa87441d8ea6379e22ce9f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071bfa87441d8ea6379e22ce9f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab43071bfa87441d8ea6379e22ce9f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab43071bfa87441d8ea6379e22ce9f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab43071bfa87441d8ea6379e22ce9f95.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KOSIhK8ASemywDnJjPFJPtjdLA=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.637148+00 2025-12-09 10:15:24.637153+00 14170 8361FWF#V5曲线 SPMX-20240815309366 \N \N \N 1 \N [{"file_id": "6c6820f8-8f53-4398-bf15-25708274479f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "588b88d58c2841c9bb62cfe96741b771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "588b88d58c2841c9bb62cfe96741b771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "588b88d58c2841c9bb62cfe96741b771.jpg", "file_size": 16604, "is_delete": false, "file_type": 1, "original_file_name": "8361FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588b88d58c2841c9bb62cfe96741b771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588b88d58c2841c9bb62cfe96741b771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588b88d58c2841c9bb62cfe96741b771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/588b88d58c2841c9bb62cfe96741b771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/588b88d58c2841c9bb62cfe96741b771.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HkkwsgoA3FmoWL-zvlyV3f41Y3Q=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.63956+00 2025-12-09 10:15:24.639565+00 14171 DL31128-2#袖子紫色 SPMX-20240815309373 \N \N \N 1 \N [{"file_id": "40f7dc1f-02b3-48cd-9e9a-f122f9bf1ba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56bc76cb1e394689b8373ddaff1dcfc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56bc76cb1e394689b8373ddaff1dcfc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56bc76cb1e394689b8373ddaff1dcfc9.jpg", "file_size": 15544, "is_delete": false, "file_type": 1, "original_file_name": "DL31128-2#袖子紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc76cb1e394689b8373ddaff1dcfc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc76cb1e394689b8373ddaff1dcfc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc76cb1e394689b8373ddaff1dcfc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56bc76cb1e394689b8373ddaff1dcfc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56bc76cb1e394689b8373ddaff1dcfc9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SjsbFtQ3IPan1KnxKGfh4roZ1nU=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.642016+00 2025-12-09 10:15:24.64202+00 14172 C930#蓝色 SPMX-20240815309377 \N \N \N 1 \N [{"file_id": "e72486b7-723a-4f33-9750-6361c5e1e3fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8557044031c647f980d793a2d09762b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8557044031c647f980d793a2d09762b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8557044031c647f980d793a2d09762b4.jpg", "file_size": 17214, "is_delete": false, "file_type": 1, "original_file_name": "C930#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8557044031c647f980d793a2d09762b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8557044031c647f980d793a2d09762b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8557044031c647f980d793a2d09762b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8557044031c647f980d793a2d09762b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8557044031c647f980d793a2d09762b4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mbVEE4giS1Km_3yGPiBtbACmiI=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.644252+00 2025-12-09 10:15:24.644257+00 14173 0006-10FWE#VS-D3龙潭调色 SPMX-20240815309369 \N \N \N 1 \N [{"file_id": "4e7acce9-4078-4f98-93a8-80d4c28ddf2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d27b64e0d88e45a58402fe2cace48197.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d27b64e0d88e45a58402fe2cace48197.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d27b64e0d88e45a58402fe2cace48197.jpg", "file_size": 9854, "is_delete": false, "file_type": 1, "original_file_name": "0006-10FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27b64e0d88e45a58402fe2cace48197.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27b64e0d88e45a58402fe2cace48197.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27b64e0d88e45a58402fe2cace48197.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d27b64e0d88e45a58402fe2cace48197.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d27b64e0d88e45a58402fe2cace48197.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRrZJXykkds8YsTPzU-JwxZU5dY=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.647001+00 2025-12-09 10:15:24.647007+00 14174 JTSS519FW#VS-D3 SPMX-20240815309376 \N \N \N 1 \N [{"file_id": "5b9d7242-172a-4ce5-8d1c-9e702c0c7003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3cd0e0a1188498c8aa80cf6f72abfb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3cd0e0a1188498c8aa80cf6f72abfb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3cd0e0a1188498c8aa80cf6f72abfb8.jpg", "file_size": 22669, "is_delete": false, "file_type": 1, "original_file_name": "JTSS519FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cd0e0a1188498c8aa80cf6f72abfb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cd0e0a1188498c8aa80cf6f72abfb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3cd0e0a1188498c8aa80cf6f72abfb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3cd0e0a1188498c8aa80cf6f72abfb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3cd0e0a1188498c8aa80cf6f72abfb8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04rHDnBbuUED3P1vsRLUYf_RAu0=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.64953+00 2025-12-09 10:15:24.649536+00 14175 JTSS518FW#VS-D3 SPMX-20240815309364 \N \N \N 1 \N [{"file_id": "3461f14c-12dc-43dc-a6fa-4788ae2b2816", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26a21e94bee94619b3d06cee6aac1b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26a21e94bee94619b3d06cee6aac1b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26a21e94bee94619b3d06cee6aac1b6e.jpg", "file_size": 10401, "is_delete": false, "file_type": 1, "original_file_name": "JTSS518FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a21e94bee94619b3d06cee6aac1b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a21e94bee94619b3d06cee6aac1b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26a21e94bee94619b3d06cee6aac1b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26a21e94bee94619b3d06cee6aac1b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26a21e94bee94619b3d06cee6aac1b6e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jn9qdAGgVSrt0ASkhtifVkEP94Y=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.651903+00 2025-12-09 10:15:24.651908+00 14176 LZ1328#背心款1号色 SPMX-20240815309374 \N \N \N 1 \N [{"file_id": "ae10e327-f5ff-44a5-b587-de4a19079866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b64ba6d6014a4c3bb73688b0699cc215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b64ba6d6014a4c3bb73688b0699cc215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b64ba6d6014a4c3bb73688b0699cc215.jpg", "file_size": 18165, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ba6d6014a4c3bb73688b0699cc215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ba6d6014a4c3bb73688b0699cc215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ba6d6014a4c3bb73688b0699cc215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b64ba6d6014a4c3bb73688b0699cc215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b64ba6d6014a4c3bb73688b0699cc215.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9b6jcugKm4LTJRKwSi9bPkcLCk=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.654004+00 2025-12-09 10:15:24.654008+00 14177 119#-灰色 SPMX-20240815309370 \N \N \N 1 \N [{"file_id": "2d0f8fcf-5d5e-45dd-8b13-99627bdbf73a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9b5aef96ab84293b07c246a9f4b7e00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9b5aef96ab84293b07c246a9f4b7e00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9b5aef96ab84293b07c246a9f4b7e00.jpg", "file_size": 62150, "is_delete": false, "file_type": 1, "original_file_name": "119#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5aef96ab84293b07c246a9f4b7e00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5aef96ab84293b07c246a9f4b7e00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b5aef96ab84293b07c246a9f4b7e00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9b5aef96ab84293b07c246a9f4b7e00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9b5aef96ab84293b07c246a9f4b7e00.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qvIpFlyiogWGt7mnCAssMk1BN8=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.656097+00 2025-12-09 10:15:24.656101+00 14178 HT5085#WJC22 SPMX-20240815309379 \N \N \N 1 \N [{"file_id": "8129fb6e-9dbb-4cb4-b695-1f07cc27376f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82c7ac28005a4a11ae17d8556702b064.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82c7ac28005a4a11ae17d8556702b064.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82c7ac28005a4a11ae17d8556702b064.jpg", "file_size": 18100, "is_delete": false, "file_type": 1, "original_file_name": "HT5085#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c7ac28005a4a11ae17d8556702b064.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c7ac28005a4a11ae17d8556702b064.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82c7ac28005a4a11ae17d8556702b064.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82c7ac28005a4a11ae17d8556702b064.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82c7ac28005a4a11ae17d8556702b064.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmDU5lR43urk2XOpd0FUFpg0gr0=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.658159+00 2025-12-09 10:15:24.658163+00 14179 FM035#橘黄 SPMX-20240815309371 \N \N \N 1 \N [{"file_id": "a5c51bb1-8a93-40e8-8ba3-f77fc24b2390", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "608229deff664203aa2423b1deb2488f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "608229deff664203aa2423b1deb2488f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "608229deff664203aa2423b1deb2488f.jpg", "file_size": 14339, "is_delete": false, "file_type": 1, "original_file_name": "FM035#橘黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608229deff664203aa2423b1deb2488f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608229deff664203aa2423b1deb2488f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608229deff664203aa2423b1deb2488f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/608229deff664203aa2423b1deb2488f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/608229deff664203aa2423b1deb2488f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVYEyh8VkgRJ18jIltDu7ncYYVc=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.66025+00 2025-12-09 10:15:24.660254+00 14180 C930#粉红净色 SPMX-20240815309367 \N \N \N 1 \N [{"file_id": "c58e9bd2-52ac-4f09-ba35-ad7e339bf4b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4376b691367343d4b051dcd993dfe604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4376b691367343d4b051dcd993dfe604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4376b691367343d4b051dcd993dfe604.jpg", "file_size": 8199, "is_delete": false, "file_type": 1, "original_file_name": "C930#粉红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4376b691367343d4b051dcd993dfe604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4376b691367343d4b051dcd993dfe604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4376b691367343d4b051dcd993dfe604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4376b691367343d4b051dcd993dfe604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4376b691367343d4b051dcd993dfe604.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9WwWdlicbOzqJF987Eb1AwNKOc=", "createTime": "2024-08-15 14:56:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.6623+00 2025-12-09 10:15:24.662305+00 14181 HT5086#WJC22 SPMX-20240815309384 \N \N \N 1 \N [{"file_id": "d1955ea8-34d2-48cd-b4ed-4b46ccf3dd11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc76c7a025d44b3b186932f54d753a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc76c7a025d44b3b186932f54d753a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc76c7a025d44b3b186932f54d753a8.jpg", "file_size": 20262, "is_delete": false, "file_type": 1, "original_file_name": "HT5086#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc76c7a025d44b3b186932f54d753a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc76c7a025d44b3b186932f54d753a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc76c7a025d44b3b186932f54d753a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc76c7a025d44b3b186932f54d753a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc76c7a025d44b3b186932f54d753a8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RpsUuzDk_D5dUx8lZTLwfHiXB2w=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.664661+00 2025-12-09 10:15:24.664665+00 14182 DL31132#前幅亮黄 SPMX-20240815309383 \N \N \N 1 \N [{"file_id": "44d9365a-f54f-45fd-a6af-297c0971ff89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d647f7dde5104987b7656046798a3946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d647f7dde5104987b7656046798a3946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d647f7dde5104987b7656046798a3946.jpg", "file_size": 14127, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#前幅亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d647f7dde5104987b7656046798a3946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d647f7dde5104987b7656046798a3946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d647f7dde5104987b7656046798a3946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d647f7dde5104987b7656046798a3946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d647f7dde5104987b7656046798a3946.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2J56e4BO8Ss7xPyKPGRSczrimkc=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.666987+00 2025-12-09 10:15:24.666992+00 14183 C930#蓝色净色 SPMX-20240815309385 \N \N \N 1 \N [{"file_id": "2b32eed3-8314-4d1e-b0ec-02e8f610e4da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c4ca7a1048c468a934b7fbf85716a89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c4ca7a1048c468a934b7fbf85716a89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c4ca7a1048c468a934b7fbf85716a89.jpg", "file_size": 8294, "is_delete": false, "file_type": 1, "original_file_name": "C930#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4ca7a1048c468a934b7fbf85716a89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4ca7a1048c468a934b7fbf85716a89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c4ca7a1048c468a934b7fbf85716a89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c4ca7a1048c468a934b7fbf85716a89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c4ca7a1048c468a934b7fbf85716a89.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ppVVQ3demZ44izga2PARJtlFORs=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.669127+00 2025-12-09 10:15:24.669131+00 14184 FM035#黑色 SPMX-20240815309380 \N \N \N 1 \N [{"file_id": "67b0de8e-837a-41b8-ae83-5215e18663b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16e7a080660e4ba0a280ed2c62c1a547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16e7a080660e4ba0a280ed2c62c1a547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16e7a080660e4ba0a280ed2c62c1a547.jpg", "file_size": 16422, "is_delete": false, "file_type": 1, "original_file_name": "FM035#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e7a080660e4ba0a280ed2c62c1a547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e7a080660e4ba0a280ed2c62c1a547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16e7a080660e4ba0a280ed2c62c1a547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16e7a080660e4ba0a280ed2c62c1a547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16e7a080660e4ba0a280ed2c62c1a547.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-g5nLWSTxD22UKwO4dr5i4dhhPI=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.671296+00 2025-12-09 10:15:24.6713+00 14185 0006-11FWE#VS-D3番禺调色 SPMX-20240815309382 \N \N \N 1 \N [{"file_id": "3e383168-4d5e-4a80-82a7-ff3071704f2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28c2f238888646c19c7116e28a240b72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28c2f238888646c19c7116e28a240b72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28c2f238888646c19c7116e28a240b72.jpg", "file_size": 18909, "is_delete": false, "file_type": 1, "original_file_name": "0006-11FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c2f238888646c19c7116e28a240b72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c2f238888646c19c7116e28a240b72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28c2f238888646c19c7116e28a240b72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28c2f238888646c19c7116e28a240b72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28c2f238888646c19c7116e28a240b72.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R9dg8TYrFiPLXIDswOlADCklZug=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.67339+00 2025-12-09 10:15:24.673394+00 14186 119#-白色 SPMX-20240815309381 \N \N \N 1 \N [{"file_id": "879c7bb4-09dd-4782-b131-97470217bd39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a5406223bd447986e8d97bdc3c9b17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a5406223bd447986e8d97bdc3c9b17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a5406223bd447986e8d97bdc3c9b17.jpg", "file_size": 54004, "is_delete": false, "file_type": 1, "original_file_name": "119#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a5406223bd447986e8d97bdc3c9b17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a5406223bd447986e8d97bdc3c9b17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a5406223bd447986e8d97bdc3c9b17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a5406223bd447986e8d97bdc3c9b17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a5406223bd447986e8d97bdc3c9b17.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLsX2JhJNg-B-DKABKg2Sm_872I=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.675719+00 2025-12-09 10:15:24.675723+00 14187 JTSS520FW#VS-D3 SPMX-20240815309387 \N \N \N 1 \N [{"file_id": "afb9a379-6d41-4ffe-a657-dce74d05e805", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dfbc47db5624629b84ab382f15c36c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dfbc47db5624629b84ab382f15c36c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dfbc47db5624629b84ab382f15c36c8.jpg", "file_size": 17583, "is_delete": false, "file_type": 1, "original_file_name": "JTSS520FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfbc47db5624629b84ab382f15c36c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfbc47db5624629b84ab382f15c36c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dfbc47db5624629b84ab382f15c36c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dfbc47db5624629b84ab382f15c36c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dfbc47db5624629b84ab382f15c36c8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gd6Jw7rTXYIPW4HgOIHLLWJamfE=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.67802+00 2025-12-09 10:15:24.678025+00 14188 23-2123#A3-领子4XL SPMX-20240815309389 \N \N \N 1 \N [{"file_id": "dff57d61-fbc9-48e1-ad4c-c3487dba16fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c93bba8343bc45e09b4998a5019447ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c93bba8343bc45e09b4998a5019447ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c93bba8343bc45e09b4998a5019447ef.jpg", "file_size": 13358, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93bba8343bc45e09b4998a5019447ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93bba8343bc45e09b4998a5019447ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93bba8343bc45e09b4998a5019447ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c93bba8343bc45e09b4998a5019447ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c93bba8343bc45e09b4998a5019447ef.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VN-PD26c-SGhxerSSptqvWw4p4=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.680305+00 2025-12-09 10:15:24.680309+00 14189 0006-11FWE#VS-D3龙潭调色 SPMX-20240815309394 \N \N \N 1 \N [{"file_id": "62a69b7c-50b2-43bb-821b-78a90e16cbb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38e4415d495c456a96828a23a5b45afa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38e4415d495c456a96828a23a5b45afa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38e4415d495c456a96828a23a5b45afa.jpg", "file_size": 18400, "is_delete": false, "file_type": 1, "original_file_name": "0006-11FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e4415d495c456a96828a23a5b45afa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e4415d495c456a96828a23a5b45afa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38e4415d495c456a96828a23a5b45afa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38e4415d495c456a96828a23a5b45afa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38e4415d495c456a96828a23a5b45afa.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8h2F6B9WX1wZ5K-SimfAcaI4UWI=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.682386+00 2025-12-09 10:15:24.68239+00 14190 119#-黑色 SPMX-20240815309395 \N \N \N 1 \N [{"file_id": "8a97504a-f618-4e00-8b89-b585db4c951e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a0c4d6fb6a44435a7f823114347ebd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a0c4d6fb6a44435a7f823114347ebd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a0c4d6fb6a44435a7f823114347ebd8.jpg", "file_size": 52051, "is_delete": false, "file_type": 1, "original_file_name": "119#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0c4d6fb6a44435a7f823114347ebd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0c4d6fb6a44435a7f823114347ebd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0c4d6fb6a44435a7f823114347ebd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a0c4d6fb6a44435a7f823114347ebd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a0c4d6fb6a44435a7f823114347ebd8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pyuKSs9tRDxTchIoKb3JTd2Ekxw=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.684456+00 2025-12-09 10:15:24.68446+00 14191 HT5087#WJC22 SPMX-20240815309396 \N \N \N 1 \N [{"file_id": "9297b329-f2bd-4d35-88cb-b0b7ab3aac72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b66ab0fe0ca548ffac2dafc202176219.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b66ab0fe0ca548ffac2dafc202176219.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b66ab0fe0ca548ffac2dafc202176219.jpg", "file_size": 24010, "is_delete": false, "file_type": 1, "original_file_name": "HT5087#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b66ab0fe0ca548ffac2dafc202176219.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b66ab0fe0ca548ffac2dafc202176219.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b66ab0fe0ca548ffac2dafc202176219.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b66ab0fe0ca548ffac2dafc202176219.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b66ab0fe0ca548ffac2dafc202176219.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIpXwsKGg2Ne5e7XwjapvNmJHX4=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.686828+00 2025-12-09 10:15:24.686832+00 14192 8362FWF#V5曲线 SPMX-20240815309390 \N \N \N 1 \N [{"file_id": "0283d2f4-1e11-478c-ad50-1858cc469c8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "504aeb9f35244c72ac6014446c4848c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "504aeb9f35244c72ac6014446c4848c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "504aeb9f35244c72ac6014446c4848c7.jpg", "file_size": 11741, "is_delete": false, "file_type": 1, "original_file_name": "8362FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504aeb9f35244c72ac6014446c4848c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504aeb9f35244c72ac6014446c4848c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504aeb9f35244c72ac6014446c4848c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/504aeb9f35244c72ac6014446c4848c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/504aeb9f35244c72ac6014446c4848c7.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LhfZUCnn6jDRNUdoFlCfKmgklUY=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.689151+00 2025-12-09 10:15:24.689156+00 14193 837-A141#枣红 SPMX-20240815309399 \N \N \N 1 \N [{"file_id": "635c37d3-e04c-45f5-91bc-1f1afb00047d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "218233f86520447fb88e96695dc05810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "218233f86520447fb88e96695dc05810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "218233f86520447fb88e96695dc05810.jpg", "file_size": 16342, "is_delete": false, "file_type": 1, "original_file_name": "837-A141#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218233f86520447fb88e96695dc05810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218233f86520447fb88e96695dc05810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218233f86520447fb88e96695dc05810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/218233f86520447fb88e96695dc05810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/218233f86520447fb88e96695dc05810.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:woA-lxVGylg1rdfx3hexyfX2lps=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.699985+00 2025-12-09 10:15:24.69999+00 14198 FMWM852#红色 SPMX-20240815309391 \N \N \N 1 \N [{"file_id": "c8eacd69-266d-4a34-820b-c4bc3cccd5b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09be8b5712d54a5691d05503b34c824c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09be8b5712d54a5691d05503b34c824c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09be8b5712d54a5691d05503b34c824c.jpg", "file_size": 15345, "is_delete": false, "file_type": 1, "original_file_name": "FMWM852#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09be8b5712d54a5691d05503b34c824c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09be8b5712d54a5691d05503b34c824c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09be8b5712d54a5691d05503b34c824c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09be8b5712d54a5691d05503b34c824c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09be8b5712d54a5691d05503b34c824c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGUG_DYmecVwDtnjgWRRfuJO4ws=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.691243+00 2025-12-09 10:15:24.691248+00 14194 DL31132#前幅彩兰 SPMX-20240815309393 \N \N \N 1 \N [{"file_id": "6552810e-fdd7-4fce-a38c-397b3404e2e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d01846c2e42149cf9fb035eb92468676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d01846c2e42149cf9fb035eb92468676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d01846c2e42149cf9fb035eb92468676.jpg", "file_size": 14677, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01846c2e42149cf9fb035eb92468676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01846c2e42149cf9fb035eb92468676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01846c2e42149cf9fb035eb92468676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d01846c2e42149cf9fb035eb92468676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d01846c2e42149cf9fb035eb92468676.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dy77ARIliXrrLeXQiX0V4B6OY28=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.693377+00 2025-12-09 10:15:24.693382+00 14195 C933#A1 SPMX-20240815309398 \N \N \N 1 \N [{"file_id": "d756fba7-14dc-4c00-b3f7-53f2aa5ea535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0965f52b389c45c4b8ee0750d0c7a39b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0965f52b389c45c4b8ee0750d0c7a39b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0965f52b389c45c4b8ee0750d0c7a39b.jpg", "file_size": 10571, "is_delete": false, "file_type": 1, "original_file_name": "C933#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0965f52b389c45c4b8ee0750d0c7a39b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0965f52b389c45c4b8ee0750d0c7a39b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0965f52b389c45c4b8ee0750d0c7a39b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0965f52b389c45c4b8ee0750d0c7a39b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0965f52b389c45c4b8ee0750d0c7a39b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rk5W9BVBExEGHkuuc-gIKjKfw9A=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.695439+00 2025-12-09 10:15:24.695444+00 14196 LJH1732-2#原版色 SPMX-20240815309392 \N \N \N 1 \N [{"file_id": "cfcf376e-cc28-4ae2-b7a2-585c02f33cbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36cea1c5eaba42be9664cdecdad97274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36cea1c5eaba42be9664cdecdad97274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36cea1c5eaba42be9664cdecdad97274.jpg", "file_size": 57877, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-2#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cea1c5eaba42be9664cdecdad97274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cea1c5eaba42be9664cdecdad97274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cea1c5eaba42be9664cdecdad97274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36cea1c5eaba42be9664cdecdad97274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36cea1c5eaba42be9664cdecdad97274.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqjIPKwykskBha_XeOhgg_lnCHQ=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.6975+00 2025-12-09 10:15:24.697505+00 14197 LZ1328#背心款2号色 SPMX-20240815309388 \N \N \N 1 \N [{"file_id": "2c14b75e-bdd3-4daa-ba7a-a2a9278b532e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51b2de555fac45ad897b9fa36418f771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51b2de555fac45ad897b9fa36418f771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51b2de555fac45ad897b9fa36418f771.jpg", "file_size": 18415, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b2de555fac45ad897b9fa36418f771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b2de555fac45ad897b9fa36418f771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b2de555fac45ad897b9fa36418f771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51b2de555fac45ad897b9fa36418f771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51b2de555fac45ad897b9fa36418f771.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7lLhkMRLDS2vXY52HY80Wg2upc=", "createTime": "2024-08-15 14:56:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.702463+00 2025-12-09 10:15:24.702469+00 14199 JTSS521FW#VS-D3 SPMX-20240815309397 \N \N \N 1 \N [{"file_id": "684c4dcc-b0b4-49d9-80ec-a26499a50365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c493c3276804df0b8d11551af97250e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c493c3276804df0b8d11551af97250e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c493c3276804df0b8d11551af97250e.jpg", "file_size": 26077, "is_delete": false, "file_type": 1, "original_file_name": "JTSS521FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c493c3276804df0b8d11551af97250e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c493c3276804df0b8d11551af97250e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c493c3276804df0b8d11551af97250e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c493c3276804df0b8d11551af97250e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c493c3276804df0b8d11551af97250e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u46D3CEcVI0n13hjnarImp1r1wI=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.704696+00 2025-12-09 10:15:24.704701+00 14200 23-2123#A4-3XL SPMX-20240815309400 \N \N \N 1 \N [{"file_id": "1a72cb00-4782-4209-bec9-80589e5430d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8d03d66b76b437e9c104cfc3122141b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8d03d66b76b437e9c104cfc3122141b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8d03d66b76b437e9c104cfc3122141b.jpg", "file_size": 13533, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d03d66b76b437e9c104cfc3122141b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d03d66b76b437e9c104cfc3122141b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d03d66b76b437e9c104cfc3122141b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8d03d66b76b437e9c104cfc3122141b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8d03d66b76b437e9c104cfc3122141b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KWVajuMoT0uO7e5BAWf4BIA5Vmk=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.707112+00 2025-12-09 10:15:24.707118+00 14201 DL31132#前幅水红 SPMX-20240815309403 \N \N \N 1 \N [{"file_id": "cf000948-1810-4f78-8938-e0c512554139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eda34221c4a54109b9c0f1caaf704765.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eda34221c4a54109b9c0f1caaf704765.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eda34221c4a54109b9c0f1caaf704765.jpg", "file_size": 14019, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda34221c4a54109b9c0f1caaf704765.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda34221c4a54109b9c0f1caaf704765.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda34221c4a54109b9c0f1caaf704765.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eda34221c4a54109b9c0f1caaf704765.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eda34221c4a54109b9c0f1caaf704765.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7vORGqmKy-qJU_3B9n2i3yJQZA=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.709501+00 2025-12-09 10:15:24.709506+00 14202 FMWM852#绿色 SPMX-20240815309402 \N \N \N 1 \N [{"file_id": "4885845d-a9ff-4432-af3f-d2587d2ba821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "929d7d57369149b5b80699a2159f63a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "929d7d57369149b5b80699a2159f63a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "929d7d57369149b5b80699a2159f63a1.jpg", "file_size": 12938, "is_delete": false, "file_type": 1, "original_file_name": "FMWM852#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929d7d57369149b5b80699a2159f63a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929d7d57369149b5b80699a2159f63a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/929d7d57369149b5b80699a2159f63a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/929d7d57369149b5b80699a2159f63a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/929d7d57369149b5b80699a2159f63a1.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yVJC483ZXTXdD8m7AOn_yfVKyxs=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.711653+00 2025-12-09 10:15:24.711658+00 14203 23-2123#A4-4XL SPMX-20240815309410 \N \N \N 1 \N [{"file_id": "c8d9613b-40a4-4899-8d58-ab3d024c052d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e6cee6a6e64dd09e720b02c4f858c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e6cee6a6e64dd09e720b02c4f858c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e6cee6a6e64dd09e720b02c4f858c5.jpg", "file_size": 12380, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e6cee6a6e64dd09e720b02c4f858c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e6cee6a6e64dd09e720b02c4f858c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e6cee6a6e64dd09e720b02c4f858c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e6cee6a6e64dd09e720b02c4f858c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e6cee6a6e64dd09e720b02c4f858c5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AP9tHqASWQvkf1kecMaA6Korps=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.71408+00 2025-12-09 10:15:24.714087+00 14204 LJH1732-2#桔色 SPMX-20240815309405 \N \N \N 1 \N [{"file_id": "04b9cca8-9c66-4641-ab42-3400a0e64671", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "501b88fafa3549d1b71c1108b1162cc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "501b88fafa3549d1b71c1108b1162cc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "501b88fafa3549d1b71c1108b1162cc5.jpg", "file_size": 56989, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-2#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501b88fafa3549d1b71c1108b1162cc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501b88fafa3549d1b71c1108b1162cc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501b88fafa3549d1b71c1108b1162cc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/501b88fafa3549d1b71c1108b1162cc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/501b88fafa3549d1b71c1108b1162cc5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YrJ9pLEcZ690W_twynsbEy5J0Xk=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.716497+00 2025-12-09 10:15:24.716503+00 14205 JTSS522FW#VS-D3 SPMX-20240815309408 \N \N \N 1 \N [{"file_id": "b5feec18-054c-4f67-94a0-9d8c4f99501e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94bd008e97b34e2f8cad19af6b212300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94bd008e97b34e2f8cad19af6b212300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94bd008e97b34e2f8cad19af6b212300.jpg", "file_size": 10548, "is_delete": false, "file_type": 1, "original_file_name": "JTSS522FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94bd008e97b34e2f8cad19af6b212300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94bd008e97b34e2f8cad19af6b212300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94bd008e97b34e2f8cad19af6b212300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94bd008e97b34e2f8cad19af6b212300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94bd008e97b34e2f8cad19af6b212300.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MoUNyX8A3dZGFFxWqHyPDkOLLtY=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.718648+00 2025-12-09 10:15:24.718655+00 14206 837-A141#橙色 SPMX-20240815309411 \N \N \N 1 \N [{"file_id": "6bccf509-146b-4588-9b18-6a8f98f61b16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "539cab900934466d9fe22e5587edef58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "539cab900934466d9fe22e5587edef58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "539cab900934466d9fe22e5587edef58.jpg", "file_size": 16958, "is_delete": false, "file_type": 1, "original_file_name": "837-A141#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cab900934466d9fe22e5587edef58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cab900934466d9fe22e5587edef58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cab900934466d9fe22e5587edef58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/539cab900934466d9fe22e5587edef58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/539cab900934466d9fe22e5587edef58.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xHvb2q7MjVIzM9RV9-AnMi8AY98=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.721085+00 2025-12-09 10:15:24.721091+00 14207 1190#LWQ15 SPMX-20240815309407 \N \N \N 1 \N [{"file_id": "6fe70b52-c775-4bf0-a509-06b440186cd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dade6dc5aa93471ca9a13b3b5de9aee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dade6dc5aa93471ca9a13b3b5de9aee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dade6dc5aa93471ca9a13b3b5de9aee9.jpg", "file_size": 20867, "is_delete": false, "file_type": 1, "original_file_name": "1190#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade6dc5aa93471ca9a13b3b5de9aee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade6dc5aa93471ca9a13b3b5de9aee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade6dc5aa93471ca9a13b3b5de9aee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dade6dc5aa93471ca9a13b3b5de9aee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dade6dc5aa93471ca9a13b3b5de9aee9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wN-v6bl9_42Q0hcK76jrCxHjECM=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.723422+00 2025-12-09 10:15:24.723429+00 14208 HT5088# SPMX-20240815309406 \N \N \N 1 \N [{"file_id": "cebb5a42-28d5-4da2-adfe-a1da7b01d71e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62f3171170a94ed882a5143ceffa6172.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62f3171170a94ed882a5143ceffa6172.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62f3171170a94ed882a5143ceffa6172.jpg", "file_size": 18705, "is_delete": false, "file_type": 1, "original_file_name": "HT5088#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f3171170a94ed882a5143ceffa6172.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f3171170a94ed882a5143ceffa6172.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62f3171170a94ed882a5143ceffa6172.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62f3171170a94ed882a5143ceffa6172.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62f3171170a94ed882a5143ceffa6172.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoNwW8CmIiHLJpyp9PxY5DPcoVE=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.725763+00 2025-12-09 10:15:24.725769+00 14209 C933#A2 SPMX-20240815309409 \N \N \N 1 \N [{"file_id": "34530c77-8606-4e54-b75a-89d846519195", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6fe3698aa0413fabe5fa32d7063214.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6fe3698aa0413fabe5fa32d7063214.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6fe3698aa0413fabe5fa32d7063214.jpg", "file_size": 10315, "is_delete": false, "file_type": 1, "original_file_name": "C933#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6fe3698aa0413fabe5fa32d7063214.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6fe3698aa0413fabe5fa32d7063214.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6fe3698aa0413fabe5fa32d7063214.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6fe3698aa0413fabe5fa32d7063214.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6fe3698aa0413fabe5fa32d7063214.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6pkjFrhvfxcW6HsszX5aB5BehS8=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.728192+00 2025-12-09 10:15:24.728198+00 14210 0006-11FWF#V5曲线 SPMX-20240815309404 \N \N \N 1 \N [{"file_id": "06fad37f-9f9e-495f-9093-fe43a2074885", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f58866dba77c48b585ab12409c13561d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f58866dba77c48b585ab12409c13561d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f58866dba77c48b585ab12409c13561d.jpg", "file_size": 19192, "is_delete": false, "file_type": 1, "original_file_name": "0006-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58866dba77c48b585ab12409c13561d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58866dba77c48b585ab12409c13561d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f58866dba77c48b585ab12409c13561d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f58866dba77c48b585ab12409c13561d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f58866dba77c48b585ab12409c13561d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oXCUc_M3HJOOhIqTwQED-ULGfOw=", "createTime": "2024-08-15 14:56:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.730551+00 2025-12-09 10:15:24.730557+00 14211 LZ1328#背心款3号色 SPMX-20240815309401 \N \N \N 1 \N [{"file_id": "82dbae91-36dc-45a9-ab69-622d7b28c083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "604fdc1abcf943e6a25c267625c364e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "604fdc1abcf943e6a25c267625c364e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "604fdc1abcf943e6a25c267625c364e6.jpg", "file_size": 18235, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604fdc1abcf943e6a25c267625c364e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604fdc1abcf943e6a25c267625c364e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604fdc1abcf943e6a25c267625c364e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/604fdc1abcf943e6a25c267625c364e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/604fdc1abcf943e6a25c267625c364e6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79BvoFMxKOmfEBFW3E__6-BEskM=", "createTime": "2024-08-15 14:56:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.73268+00 2025-12-09 10:15:24.732686+00 14212 1190-1FWE#VS-D3 SPMX-20240815309415 \N \N \N 1 \N [{"file_id": "1fd8c6ae-4dac-40e4-b685-4a7d231b09f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e95da053169c4c9c812dd2960e042b63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e95da053169c4c9c812dd2960e042b63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e95da053169c4c9c812dd2960e042b63.jpg", "file_size": 28032, "is_delete": false, "file_type": 1, "original_file_name": "1190-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95da053169c4c9c812dd2960e042b63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95da053169c4c9c812dd2960e042b63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95da053169c4c9c812dd2960e042b63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e95da053169c4c9c812dd2960e042b63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e95da053169c4c9c812dd2960e042b63.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVIR5J7pzzmNfVcHBWpR9_I8kck=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.734798+00 2025-12-09 10:15:24.734803+00 14213 C933#A3 SPMX-20240815309420 \N \N \N 1 \N [{"file_id": "a31d98c0-247d-40ad-bc24-33aa75df1b14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "340bceba8b08429d8d9f5ccaf701d687.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "340bceba8b08429d8d9f5ccaf701d687.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "340bceba8b08429d8d9f5ccaf701d687.jpg", "file_size": 10334, "is_delete": false, "file_type": 1, "original_file_name": "C933#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340bceba8b08429d8d9f5ccaf701d687.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340bceba8b08429d8d9f5ccaf701d687.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/340bceba8b08429d8d9f5ccaf701d687.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/340bceba8b08429d8d9f5ccaf701d687.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/340bceba8b08429d8d9f5ccaf701d687.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xx67BK2I1rk5JfDbaoEvbBHCfHc=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.737238+00 2025-12-09 10:15:24.737244+00 14214 HT5088#黄色 SPMX-20240815309418 \N \N \N 1 \N [{"file_id": "2ffc35f1-1352-4440-b6fb-38c9a316e043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c753e63c1bfc458eb6e5691ba5706dc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c753e63c1bfc458eb6e5691ba5706dc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c753e63c1bfc458eb6e5691ba5706dc3.jpg", "file_size": 18785, "is_delete": false, "file_type": 1, "original_file_name": "HT5088#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c753e63c1bfc458eb6e5691ba5706dc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c753e63c1bfc458eb6e5691ba5706dc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c753e63c1bfc458eb6e5691ba5706dc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c753e63c1bfc458eb6e5691ba5706dc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c753e63c1bfc458eb6e5691ba5706dc3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ua9-k6Hikc_D5t71T_3x3gxOTiA=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.739619+00 2025-12-09 10:15:24.739625+00 14215 837-A141#玫红 SPMX-20240815309419 \N \N \N 1 \N [{"file_id": "3dde1e0d-3aaa-41fe-9d27-9e8f0c2cd493", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2b67fdee8c94605b8a8a5e326fe763d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2b67fdee8c94605b8a8a5e326fe763d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2b67fdee8c94605b8a8a5e326fe763d.jpg", "file_size": 15812, "is_delete": false, "file_type": 1, "original_file_name": "837-A141#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b67fdee8c94605b8a8a5e326fe763d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b67fdee8c94605b8a8a5e326fe763d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2b67fdee8c94605b8a8a5e326fe763d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2b67fdee8c94605b8a8a5e326fe763d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2b67fdee8c94605b8a8a5e326fe763d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPC4lYYp0wmCQ3oEeV0yqIzdok0=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.741803+00 2025-12-09 10:15:24.741809+00 14216 23-2123#A4-领子3XL SPMX-20240815309421 \N \N \N 1 \N [{"file_id": "b812f46b-2c4e-4f8d-b218-6c59d2359118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e63dbb5e26c40848e18948b7450f3b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e63dbb5e26c40848e18948b7450f3b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e63dbb5e26c40848e18948b7450f3b9.jpg", "file_size": 11394, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e63dbb5e26c40848e18948b7450f3b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e63dbb5e26c40848e18948b7450f3b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e63dbb5e26c40848e18948b7450f3b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e63dbb5e26c40848e18948b7450f3b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e63dbb5e26c40848e18948b7450f3b9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZSfpg3JXLTpCbyF5yS5C755yQg=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.752985+00 2025-12-09 10:15:24.752991+00 14221 LJH1732-2#玫红 SPMX-20240815309413 \N \N \N 1 \N [{"file_id": "5d33d94a-e6d0-4254-a50a-2ed4a37ca182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "642241ceab9b4bab874c6f3029e85c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "642241ceab9b4bab874c6f3029e85c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "642241ceab9b4bab874c6f3029e85c56.jpg", "file_size": 60761, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-2#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642241ceab9b4bab874c6f3029e85c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642241ceab9b4bab874c6f3029e85c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642241ceab9b4bab874c6f3029e85c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/642241ceab9b4bab874c6f3029e85c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/642241ceab9b4bab874c6f3029e85c56.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uI6YxODOYhYOJkSVGMMtXuXniUg=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.743982+00 2025-12-09 10:15:24.743987+00 14217 DL31132#前幅浅粉 SPMX-20240815309412 \N \N \N 1 \N [{"file_id": "1c1a821d-c339-4dbe-8982-e668ae7a0111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg", "file_size": 14133, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#前幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ea6efb0ae8f4abf903a93c5ed9d72c4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dKxNEA0p06CZ-Fpzf3bIQ6yqZdQ=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.746445+00 2025-12-09 10:15:24.74645+00 14218 FMWM852#黑色 SPMX-20240815309414 \N \N \N 1 \N [{"file_id": "67035aae-2efd-40e0-b95d-37561a7bde01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42a4090e968145d48d32a4ba24b5efb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42a4090e968145d48d32a4ba24b5efb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42a4090e968145d48d32a4ba24b5efb5.jpg", "file_size": 13195, "is_delete": false, "file_type": 1, "original_file_name": "FMWM852#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a4090e968145d48d32a4ba24b5efb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a4090e968145d48d32a4ba24b5efb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42a4090e968145d48d32a4ba24b5efb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42a4090e968145d48d32a4ba24b5efb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42a4090e968145d48d32a4ba24b5efb5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kmNAVvb23aYyRUB0PyK5u5TRa6E=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.748726+00 2025-12-09 10:15:24.748732+00 14219 LZ1328#背心款4号色 SPMX-20240815309416 \N \N \N 1 \N [{"file_id": "62e06701-8f1a-42fe-a8b1-d78be5bb288b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f7221b41d6742c09b836be8edd7bec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f7221b41d6742c09b836be8edd7bec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f7221b41d6742c09b836be8edd7bec2.jpg", "file_size": 18721, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7221b41d6742c09b836be8edd7bec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7221b41d6742c09b836be8edd7bec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7221b41d6742c09b836be8edd7bec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f7221b41d6742c09b836be8edd7bec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f7221b41d6742c09b836be8edd7bec2.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5dOtzioMW3Fmz_1ghTR2kL7Mahw=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.750851+00 2025-12-09 10:15:24.750856+00 14220 JTSS523FW#VS-D3 SPMX-20240815309422 \N \N \N 1 \N [{"file_id": "dfd9bb2a-68cd-4fd4-a5c3-55b5ce1e60a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aef1aac3dc5a429589456787e9f2bb2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aef1aac3dc5a429589456787e9f2bb2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aef1aac3dc5a429589456787e9f2bb2e.jpg", "file_size": 9721, "is_delete": false, "file_type": 1, "original_file_name": "JTSS523FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1aac3dc5a429589456787e9f2bb2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1aac3dc5a429589456787e9f2bb2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1aac3dc5a429589456787e9f2bb2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aef1aac3dc5a429589456787e9f2bb2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aef1aac3dc5a429589456787e9f2bb2e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AxXwKZvQ3LOlFMmNMe_bHxptQHw=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.755361+00 2025-12-09 10:15:24.755367+00 14222 0006-12FWF#V5曲线 SPMX-20240815309417 \N \N \N 1 \N [{"file_id": "3d1387a3-b51b-450a-8580-7aebf93ea270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cef228b9d9604865810abcf635f5216a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cef228b9d9604865810abcf635f5216a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cef228b9d9604865810abcf635f5216a.jpg", "file_size": 18561, "is_delete": false, "file_type": 1, "original_file_name": "0006-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef228b9d9604865810abcf635f5216a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef228b9d9604865810abcf635f5216a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cef228b9d9604865810abcf635f5216a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cef228b9d9604865810abcf635f5216a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cef228b9d9604865810abcf635f5216a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MN8t0SIDOjwVkCWlnQaVRpzBrc=", "createTime": "2024-08-15 14:56:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.757781+00 2025-12-09 10:15:24.757786+00 14223 0006-13FWE#VS-D3 SPMX-20240815309427 \N \N \N 1 \N [{"file_id": "6c4eb6d1-1c96-4262-83d1-e65fb672f259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8196576cfe2d447ab035a8a731b89bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8196576cfe2d447ab035a8a731b89bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8196576cfe2d447ab035a8a731b89bb0.jpg", "file_size": 13199, "is_delete": false, "file_type": 1, "original_file_name": "0006-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8196576cfe2d447ab035a8a731b89bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8196576cfe2d447ab035a8a731b89bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8196576cfe2d447ab035a8a731b89bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8196576cfe2d447ab035a8a731b89bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8196576cfe2d447ab035a8a731b89bb0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtSmnh15pEMnGst22BiSKgpbpGQ=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.759926+00 2025-12-09 10:15:24.759931+00 14224 1190FWE#VS-D3 SPMX-20240815309426 \N \N \N 1 \N [{"file_id": "2ace8be1-55d4-48a5-816f-6f3b8b465d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad77c795b83d4c1498ef466a465cc37a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad77c795b83d4c1498ef466a465cc37a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad77c795b83d4c1498ef466a465cc37a.jpg", "file_size": 19960, "is_delete": false, "file_type": 1, "original_file_name": "1190FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad77c795b83d4c1498ef466a465cc37a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad77c795b83d4c1498ef466a465cc37a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad77c795b83d4c1498ef466a465cc37a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad77c795b83d4c1498ef466a465cc37a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad77c795b83d4c1498ef466a465cc37a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gt2M1YoPW0nleTs4J30ClyM5784=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.762055+00 2025-12-09 10:15:24.76206+00 14225 LJH1732-2#绿色 SPMX-20240815309424 \N \N \N 1 \N [{"file_id": "04295ccc-a4d9-4654-9bf3-3cf4baf781ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8731dd1e9caa466eb4750cb032da1038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8731dd1e9caa466eb4750cb032da1038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8731dd1e9caa466eb4750cb032da1038.jpg", "file_size": 59481, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731dd1e9caa466eb4750cb032da1038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731dd1e9caa466eb4750cb032da1038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731dd1e9caa466eb4750cb032da1038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8731dd1e9caa466eb4750cb032da1038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8731dd1e9caa466eb4750cb032da1038.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ho4OV65N1F0xDx1YPbumvsZvxpU=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.764726+00 2025-12-09 10:15:24.764737+00 14226 DL31132#前幅蓝绿 SPMX-20240815309425 \N \N \N 1 \N [{"file_id": "172f75df-5350-4cf1-8e1b-94f1e4db6b62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "220d1f9d64a043bd98c8be5b64129cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "220d1f9d64a043bd98c8be5b64129cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "220d1f9d64a043bd98c8be5b64129cb6.jpg", "file_size": 14440, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/220d1f9d64a043bd98c8be5b64129cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/220d1f9d64a043bd98c8be5b64129cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/220d1f9d64a043bd98c8be5b64129cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/220d1f9d64a043bd98c8be5b64129cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/220d1f9d64a043bd98c8be5b64129cb6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Az2DGG8dsFqehMGqzvWGqlGJuc=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.767522+00 2025-12-09 10:15:24.767529+00 14227 FND1819FWE#绿色 SPMX-20240815309423 \N \N \N 1 \N [{"file_id": "0680fe7e-af28-4a52-8058-5fd8d035d8e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbcb17a2cbe14052967d7066552a6c50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbcb17a2cbe14052967d7066552a6c50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbcb17a2cbe14052967d7066552a6c50.jpg", "file_size": 14159, "is_delete": false, "file_type": 1, "original_file_name": "FND1819FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbcb17a2cbe14052967d7066552a6c50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbcb17a2cbe14052967d7066552a6c50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbcb17a2cbe14052967d7066552a6c50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbcb17a2cbe14052967d7066552a6c50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbcb17a2cbe14052967d7066552a6c50.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rw9uLv8YF_Xv6ea5h-RQXZxkUY4=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.770067+00 2025-12-09 10:15:24.770074+00 14228 HT5089# SPMX-20240815309428 \N \N \N 1 \N [{"file_id": "0158f0a9-c3c7-47b0-aca1-d5cea474c059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81c4156587b9423faa77964d9391fe47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81c4156587b9423faa77964d9391fe47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81c4156587b9423faa77964d9391fe47.jpg", "file_size": 11305, "is_delete": false, "file_type": 1, "original_file_name": "HT5089#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81c4156587b9423faa77964d9391fe47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81c4156587b9423faa77964d9391fe47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81c4156587b9423faa77964d9391fe47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81c4156587b9423faa77964d9391fe47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81c4156587b9423faa77964d9391fe47.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQU-zRWePme40BUWDUGnnX_9nTQ=", "createTime": "2024-08-15 14:57:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.7726+00 2025-12-09 10:15:24.772605+00 14229 LZ1328#背心款5号色 SPMX-20240815309429 \N \N \N 1 \N [{"file_id": "50f0531f-a9eb-4583-8d98-273b2c9b6139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3e8dfbd5632400f890341be56d0d7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3e8dfbd5632400f890341be56d0d7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3e8dfbd5632400f890341be56d0d7ff.jpg", "file_size": 18411, "is_delete": false, "file_type": 1, "original_file_name": "LZ1328#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e8dfbd5632400f890341be56d0d7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e8dfbd5632400f890341be56d0d7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e8dfbd5632400f890341be56d0d7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3e8dfbd5632400f890341be56d0d7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3e8dfbd5632400f890341be56d0d7ff.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDqtrdjcbaIf0EXs84oZbGFVte8=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.774921+00 2025-12-09 10:15:24.774928+00 14230 JTSS524FW#VS-D3 SPMX-20240815309431 \N \N \N 1 \N [{"file_id": "f8f88d75-86fa-44c5-9c5a-03fa5482042e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3141a0bd78b43b7ae12f5658e92f9d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3141a0bd78b43b7ae12f5658e92f9d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3141a0bd78b43b7ae12f5658e92f9d8.jpg", "file_size": 12051, "is_delete": false, "file_type": 1, "original_file_name": "JTSS524FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3141a0bd78b43b7ae12f5658e92f9d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3141a0bd78b43b7ae12f5658e92f9d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3141a0bd78b43b7ae12f5658e92f9d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3141a0bd78b43b7ae12f5658e92f9d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3141a0bd78b43b7ae12f5658e92f9d8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gchrr8deoDBPxZhegXlwJGuiRQU=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.776991+00 2025-12-09 10:15:24.776996+00 14231 C933#A4 SPMX-20240815309432 \N \N \N 1 \N [{"file_id": "e11cea8d-c2e5-469b-ac38-fce7aea2d60d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fdee595818e42d19f6a7fae158b082f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fdee595818e42d19f6a7fae158b082f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fdee595818e42d19f6a7fae158b082f.jpg", "file_size": 10397, "is_delete": false, "file_type": 1, "original_file_name": "C933#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fdee595818e42d19f6a7fae158b082f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fdee595818e42d19f6a7fae158b082f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fdee595818e42d19f6a7fae158b082f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fdee595818e42d19f6a7fae158b082f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fdee595818e42d19f6a7fae158b082f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0adgCanYlb_SSTGsIS-dEXOeGbI=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.779007+00 2025-12-09 10:15:24.779011+00 14232 837-A141#黄 SPMX-20240815309430 \N \N \N 1 \N [{"file_id": "7ea6e32e-1e38-4a48-b47a-0c8ba074a87d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd013f7dd52748adb0d5002b7d7bf332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd013f7dd52748adb0d5002b7d7bf332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd013f7dd52748adb0d5002b7d7bf332.jpg", "file_size": 16925, "is_delete": false, "file_type": 1, "original_file_name": "837-A141#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd013f7dd52748adb0d5002b7d7bf332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd013f7dd52748adb0d5002b7d7bf332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd013f7dd52748adb0d5002b7d7bf332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd013f7dd52748adb0d5002b7d7bf332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd013f7dd52748adb0d5002b7d7bf332.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enORLA0UQB6d6nLxWAESkR6MX8U=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.781007+00 2025-12-09 10:15:24.781012+00 14233 23-2123#A4-领子4XL SPMX-20240815309433 \N \N \N 1 \N [{"file_id": "415a7885-2a59-4b19-8107-45e330ff10c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "435f30b9fc304aff8111c01dd7b4e1e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "435f30b9fc304aff8111c01dd7b4e1e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "435f30b9fc304aff8111c01dd7b4e1e4.jpg", "file_size": 11710, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435f30b9fc304aff8111c01dd7b4e1e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435f30b9fc304aff8111c01dd7b4e1e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/435f30b9fc304aff8111c01dd7b4e1e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/435f30b9fc304aff8111c01dd7b4e1e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/435f30b9fc304aff8111c01dd7b4e1e4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ee8te-sQIvXavi12z25gnzP3Z2k=", "createTime": "2024-08-15 14:57:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.782991+00 2025-12-09 10:15:24.782995+00 14234 LZ1329#捆条布 SPMX-20240815309442 \N \N \N 1 \N [{"file_id": "18189739-9b08-4281-a542-e42ec1b56ada", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2126746453f7434cba08a8a120eec1a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2126746453f7434cba08a8a120eec1a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2126746453f7434cba08a8a120eec1a7.jpg", "file_size": 17423, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126746453f7434cba08a8a120eec1a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126746453f7434cba08a8a120eec1a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2126746453f7434cba08a8a120eec1a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2126746453f7434cba08a8a120eec1a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2126746453f7434cba08a8a120eec1a7.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bhKldC5UAiknY8py9hKpKgC-hY=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.784984+00 2025-12-09 10:15:24.784989+00 14235 837-A141#黑 SPMX-20240815309439 \N \N \N 1 \N [{"file_id": "9452ac21-c997-452e-bdd9-0bc7f9e1a5f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d2cf255610048a09d0a457939f44d21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d2cf255610048a09d0a457939f44d21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d2cf255610048a09d0a457939f44d21.jpg", "file_size": 19189, "is_delete": false, "file_type": 1, "original_file_name": "837-A141#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2cf255610048a09d0a457939f44d21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2cf255610048a09d0a457939f44d21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d2cf255610048a09d0a457939f44d21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d2cf255610048a09d0a457939f44d21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d2cf255610048a09d0a457939f44d21.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7qk9szF5_IR3Zzktzd0xbpFUAA=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.78699+00 2025-12-09 10:15:24.786994+00 14236 JTSS525FW#VS-D3 SPMX-20240815309441 \N \N \N 1 \N [{"file_id": "366eaf84-0286-4eb2-a715-ea6fcb42cd50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cb3c7fa52e94b179705935ff776539c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cb3c7fa52e94b179705935ff776539c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cb3c7fa52e94b179705935ff776539c.jpg", "file_size": 19928, "is_delete": false, "file_type": 1, "original_file_name": "JTSS525FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb3c7fa52e94b179705935ff776539c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb3c7fa52e94b179705935ff776539c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb3c7fa52e94b179705935ff776539c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cb3c7fa52e94b179705935ff776539c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cb3c7fa52e94b179705935ff776539c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrptMkCkjeesD9SxLhh1TwiTfxg=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.788983+00 2025-12-09 10:15:24.788987+00 14237 LJH1734#粉色 SPMX-20240815309445 \N \N \N 1 \N [{"file_id": "e8b3ca47-bedc-49a7-a0ef-7d5f0a7c3da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "515d1cdcc9f84961a4cad3d377d0ed9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "515d1cdcc9f84961a4cad3d377d0ed9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "515d1cdcc9f84961a4cad3d377d0ed9b.jpg", "file_size": 52024, "is_delete": false, "file_type": 1, "original_file_name": "LJH1734#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515d1cdcc9f84961a4cad3d377d0ed9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515d1cdcc9f84961a4cad3d377d0ed9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515d1cdcc9f84961a4cad3d377d0ed9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/515d1cdcc9f84961a4cad3d377d0ed9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/515d1cdcc9f84961a4cad3d377d0ed9b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHg2ctG71Fs94vlxglfWwpS5Z6g=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.791015+00 2025-12-09 10:15:24.79102+00 14238 FND1819FWE#蓝色 SPMX-20240815309440 \N \N \N 1 \N [{"file_id": "14677d98-064f-48f8-b1d6-747a5d394d3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64c80f170cef4b69a6f09a1d5edd4a0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64c80f170cef4b69a6f09a1d5edd4a0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64c80f170cef4b69a6f09a1d5edd4a0d.jpg", "file_size": 13684, "is_delete": false, "file_type": 1, "original_file_name": "FND1819FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c80f170cef4b69a6f09a1d5edd4a0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c80f170cef4b69a6f09a1d5edd4a0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c80f170cef4b69a6f09a1d5edd4a0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64c80f170cef4b69a6f09a1d5edd4a0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64c80f170cef4b69a6f09a1d5edd4a0d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM58HUApNWpiZjzaKkFya98FdoQ=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.793388+00 2025-12-09 10:15:24.793393+00 14239 23-2123#A5-3XL SPMX-20240815309443 \N \N \N 1 \N [{"file_id": "b795a64c-862f-486c-83df-ef0b0981bdba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69aca2a8813e4bcfb445bfdd9fddb635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69aca2a8813e4bcfb445bfdd9fddb635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69aca2a8813e4bcfb445bfdd9fddb635.jpg", "file_size": 19941, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69aca2a8813e4bcfb445bfdd9fddb635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69aca2a8813e4bcfb445bfdd9fddb635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69aca2a8813e4bcfb445bfdd9fddb635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69aca2a8813e4bcfb445bfdd9fddb635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69aca2a8813e4bcfb445bfdd9fddb635.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kEHRb-hWyqJDg6J1ElYdYwPoSI4=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.795751+00 2025-12-09 10:15:24.795755+00 14240 C933#A5 SPMX-20240815309444 \N \N \N 1 \N [{"file_id": "5fe72eb2-517e-414e-8d9a-f65d7fb225f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba1a99d10854859ad8b4229f579bbfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba1a99d10854859ad8b4229f579bbfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba1a99d10854859ad8b4229f579bbfc.jpg", "file_size": 10138, "is_delete": false, "file_type": 1, "original_file_name": "C933#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1a99d10854859ad8b4229f579bbfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1a99d10854859ad8b4229f579bbfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1a99d10854859ad8b4229f579bbfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba1a99d10854859ad8b4229f579bbfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba1a99d10854859ad8b4229f579bbfc.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5Y4LNo2_a2m1fXSB2_MuR_Hy14=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.798+00 2025-12-09 10:15:24.798005+00 14241 LJH1732-2#蓝色 SPMX-20240815309434 \N \N \N 1 \N [{"file_id": "195ba5c4-170a-4930-837a-76891d8fe43f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7b35dd5af4e4adc93480701e2a0a267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7b35dd5af4e4adc93480701e2a0a267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7b35dd5af4e4adc93480701e2a0a267.jpg", "file_size": 60801, "is_delete": false, "file_type": 1, "original_file_name": "LJH1732-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b35dd5af4e4adc93480701e2a0a267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b35dd5af4e4adc93480701e2a0a267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b35dd5af4e4adc93480701e2a0a267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7b35dd5af4e4adc93480701e2a0a267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7b35dd5af4e4adc93480701e2a0a267.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lpq1zgmVwPBKXlunrUwIICS6Boo=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.800142+00 2025-12-09 10:15:24.800146+00 14242 1191FWE#VS-D3 SPMX-20240815309447 \N \N \N 1 \N [{"file_id": "c9e5c4dd-8264-4918-83a0-aa615318b8c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fccd70a40e740e9a8590f3a97efe022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fccd70a40e740e9a8590f3a97efe022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fccd70a40e740e9a8590f3a97efe022.jpg", "file_size": 15603, "is_delete": false, "file_type": 1, "original_file_name": "1191FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fccd70a40e740e9a8590f3a97efe022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fccd70a40e740e9a8590f3a97efe022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fccd70a40e740e9a8590f3a97efe022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fccd70a40e740e9a8590f3a97efe022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fccd70a40e740e9a8590f3a97efe022.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbKjqz6x8PWAcs8YtfpZ5KBeCMs=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.802284+00 2025-12-09 10:15:24.802289+00 14243 HT6200FW#VS-D3 SPMX-20240815309435 \N \N \N 1 \N [{"file_id": "00c4d492-77ef-4c3d-88c0-5556ef135021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74c10f42ac124b81a7a76a5b743333cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74c10f42ac124b81a7a76a5b743333cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74c10f42ac124b81a7a76a5b743333cf.jpg", "file_size": 20923, "is_delete": false, "file_type": 1, "original_file_name": "HT6200FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c10f42ac124b81a7a76a5b743333cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c10f42ac124b81a7a76a5b743333cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74c10f42ac124b81a7a76a5b743333cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74c10f42ac124b81a7a76a5b743333cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74c10f42ac124b81a7a76a5b743333cf.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SXhHmq7T0o6IYMAaTKlvsQ4DLs=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.804384+00 2025-12-09 10:15:24.804388+00 14244 DL31132#批布亮黄 SPMX-20240815309436 \N \N \N 1 \N [{"file_id": "89da5ef8-ae59-47bd-a580-a47aef9e6fff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a5bb95bbc444bddb6fe28ae8ae15c95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a5bb95bbc444bddb6fe28ae8ae15c95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a5bb95bbc444bddb6fe28ae8ae15c95.jpg", "file_size": 23635, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5bb95bbc444bddb6fe28ae8ae15c95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5bb95bbc444bddb6fe28ae8ae15c95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5bb95bbc444bddb6fe28ae8ae15c95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a5bb95bbc444bddb6fe28ae8ae15c95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a5bb95bbc444bddb6fe28ae8ae15c95.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNa40_UwFxmwheBLyja4GfoTwzI=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.806742+00 2025-12-09 10:15:24.806747+00 14245 1191-KA#VS-D3 SPMX-20240815309437 \N \N \N 1 \N [{"file_id": "d5fe5eb3-310d-4f0c-b00c-ad5523ba190b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cbb083c151140b6830100b9e55974c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cbb083c151140b6830100b9e55974c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cbb083c151140b6830100b9e55974c0.jpg", "file_size": 58783, "is_delete": false, "file_type": 1, "original_file_name": "1191-KA#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb083c151140b6830100b9e55974c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb083c151140b6830100b9e55974c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb083c151140b6830100b9e55974c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cbb083c151140b6830100b9e55974c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cbb083c151140b6830100b9e55974c0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OebmREiPX7vtnlXRbCN5vRL9meY=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.809137+00 2025-12-09 10:15:24.809141+00 14246 0006-13FWE#番禺调色 SPMX-20240815309438 \N \N \N 1 \N [{"file_id": "1e8daa3b-afc1-4fa5-b168-064849f13bd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "634d5474f6164a03957563b7d8843866.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "634d5474f6164a03957563b7d8843866.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "634d5474f6164a03957563b7d8843866.jpg", "file_size": 13595, "is_delete": false, "file_type": 1, "original_file_name": "0006-13FWE#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634d5474f6164a03957563b7d8843866.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634d5474f6164a03957563b7d8843866.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/634d5474f6164a03957563b7d8843866.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/634d5474f6164a03957563b7d8843866.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/634d5474f6164a03957563b7d8843866.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UYZphbA6k52ot--2KzTTm_G8fk=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.811284+00 2025-12-09 10:15:24.811289+00 14247 HT6200FW#VS-D3捆条 SPMX-20240815309446 \N \N \N 1 \N [{"file_id": "025d4d53-2a03-4454-9d29-31917ebbd8e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0c83a4264684b18bc67289240f091c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0c83a4264684b18bc67289240f091c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0c83a4264684b18bc67289240f091c5.jpg", "file_size": 8067, "is_delete": false, "file_type": 1, "original_file_name": "HT6200FW#VS-D3捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0c83a4264684b18bc67289240f091c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0c83a4264684b18bc67289240f091c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0c83a4264684b18bc67289240f091c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0c83a4264684b18bc67289240f091c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0c83a4264684b18bc67289240f091c5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZkvtbK6rpuFd5nrt6bNnCgIoKM=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.813437+00 2025-12-09 10:15:24.813442+00 14248 DL31132#批布彩兰 SPMX-20240815309448 \N \N \N 1 \N [{"file_id": "df8577c8-9441-441d-bbc4-0e2ad0fae06d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "360cc4225f8c4cbeb97ceb4a4e63be89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "360cc4225f8c4cbeb97ceb4a4e63be89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "360cc4225f8c4cbeb97ceb4a4e63be89.jpg", "file_size": 24065, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360cc4225f8c4cbeb97ceb4a4e63be89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360cc4225f8c4cbeb97ceb4a4e63be89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/360cc4225f8c4cbeb97ceb4a4e63be89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/360cc4225f8c4cbeb97ceb4a4e63be89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/360cc4225f8c4cbeb97ceb4a4e63be89.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vC1Zddv5RtBsVvck3RS7IFA13hc=", "createTime": "2024-08-15 14:57:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.815773+00 2025-12-09 10:15:24.815777+00 14249 LZ1329#背心款1号色 SPMX-20240815309454 \N \N \N 1 \N [{"file_id": "a717aff3-d5fd-453e-bfe6-03227f526d82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e91159eb48404e1f8cb49758287e278f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e91159eb48404e1f8cb49758287e278f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e91159eb48404e1f8cb49758287e278f.jpg", "file_size": 17635, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91159eb48404e1f8cb49758287e278f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91159eb48404e1f8cb49758287e278f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91159eb48404e1f8cb49758287e278f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e91159eb48404e1f8cb49758287e278f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e91159eb48404e1f8cb49758287e278f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwW37zpeLvZL4sHwrTXGSmMbwaw=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.818076+00 2025-12-09 10:15:24.818081+00 14250 837-A142#枣红 SPMX-20240815309460 \N \N \N 1 \N [{"file_id": "f5dfb928-b1cc-4033-990f-6c84fc00f497", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55f92eb285ed46c8ad3bdbe4f2cd964f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55f92eb285ed46c8ad3bdbe4f2cd964f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55f92eb285ed46c8ad3bdbe4f2cd964f.jpg", "file_size": 14649, "is_delete": false, "file_type": 1, "original_file_name": "837-A142#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f92eb285ed46c8ad3bdbe4f2cd964f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f92eb285ed46c8ad3bdbe4f2cd964f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f92eb285ed46c8ad3bdbe4f2cd964f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55f92eb285ed46c8ad3bdbe4f2cd964f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55f92eb285ed46c8ad3bdbe4f2cd964f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2PoOKVPbLCisc3z_iuNdY0OvhU=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.820131+00 2025-12-09 10:15:24.820135+00 14251 JTSS526FW#VS-D3 SPMX-20240815309450 \N \N \N 1 \N [{"file_id": "034e486a-f215-4078-8ea4-013b3126a792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59e4202fcab74055bda12f7131305d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59e4202fcab74055bda12f7131305d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59e4202fcab74055bda12f7131305d0e.jpg", "file_size": 11901, "is_delete": false, "file_type": 1, "original_file_name": "JTSS526FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e4202fcab74055bda12f7131305d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e4202fcab74055bda12f7131305d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e4202fcab74055bda12f7131305d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59e4202fcab74055bda12f7131305d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59e4202fcab74055bda12f7131305d0e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iOR3nhRUrCgLrQYmISrV2Nrdzjs=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.822155+00 2025-12-09 10:15:24.82216+00 14252 HT6206#XL红 SPMX-20240815309457 \N \N \N 1 \N [{"file_id": "3066427d-c80a-4bef-a297-f74ac181d690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9061d407525b47a38a56816c03a1cb1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9061d407525b47a38a56816c03a1cb1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9061d407525b47a38a56816c03a1cb1e.jpg", "file_size": 13395, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#XL红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9061d407525b47a38a56816c03a1cb1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9061d407525b47a38a56816c03a1cb1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9061d407525b47a38a56816c03a1cb1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9061d407525b47a38a56816c03a1cb1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9061d407525b47a38a56816c03a1cb1e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pn1SKR2EXreTe8z9uJlBvqigZVs=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.824494+00 2025-12-09 10:15:24.8245+00 14253 FND1819FWE#金黄色 SPMX-20240815309451 \N \N \N 1 \N [{"file_id": "a88a2909-13a7-4d01-925f-50a0e06217db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ebd2dc0a494f43b6598ad3513e12f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ebd2dc0a494f43b6598ad3513e12f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ebd2dc0a494f43b6598ad3513e12f3.jpg", "file_size": 15104, "is_delete": false, "file_type": 1, "original_file_name": "FND1819FWE#金黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ebd2dc0a494f43b6598ad3513e12f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ebd2dc0a494f43b6598ad3513e12f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ebd2dc0a494f43b6598ad3513e12f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ebd2dc0a494f43b6598ad3513e12f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ebd2dc0a494f43b6598ad3513e12f3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qtHHGdX77oR1bdx-TgG6T58ssGw=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.827019+00 2025-12-09 10:15:24.827025+00 14254 DL31132#批布水红 SPMX-20240815309458 \N \N \N 1 \N [{"file_id": "87fc2a1b-0ca1-4e13-99be-2fa74675d8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c576ee20d2d94252b8e2a35433c34d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c576ee20d2d94252b8e2a35433c34d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c576ee20d2d94252b8e2a35433c34d86.jpg", "file_size": 23167, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c576ee20d2d94252b8e2a35433c34d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c576ee20d2d94252b8e2a35433c34d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c576ee20d2d94252b8e2a35433c34d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c576ee20d2d94252b8e2a35433c34d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c576ee20d2d94252b8e2a35433c34d86.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHMKRW77CHhhXxRKQKg7gmJO8SI=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.829439+00 2025-12-09 10:15:24.829443+00 14255 FND1929FWE#妈妈装-大红 SPMX-20240815309461 \N \N \N 1 \N [{"file_id": "a626e2d5-75f7-4609-9139-b0d4633476b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5f3ed7fe2954b5283888e91df489632.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5f3ed7fe2954b5283888e91df489632.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5f3ed7fe2954b5283888e91df489632.jpg", "file_size": 20300, "is_delete": false, "file_type": 1, "original_file_name": "FND1929FWE#妈妈装-大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f3ed7fe2954b5283888e91df489632.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f3ed7fe2954b5283888e91df489632.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5f3ed7fe2954b5283888e91df489632.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5f3ed7fe2954b5283888e91df489632.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5f3ed7fe2954b5283888e91df489632.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kvcJmyy0mQ4vP09lu0r0XQBuqI=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.831559+00 2025-12-09 10:15:24.831565+00 14256 23-2123#A5-4XL SPMX-20240815309452 \N \N \N 1 \N [{"file_id": "517ede2f-d663-4fc2-9419-bdf436906c43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6310efb1ea874dd8b602ebd4c0e01554.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6310efb1ea874dd8b602ebd4c0e01554.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6310efb1ea874dd8b602ebd4c0e01554.jpg", "file_size": 17911, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6310efb1ea874dd8b602ebd4c0e01554.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6310efb1ea874dd8b602ebd4c0e01554.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6310efb1ea874dd8b602ebd4c0e01554.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6310efb1ea874dd8b602ebd4c0e01554.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6310efb1ea874dd8b602ebd4c0e01554.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y11EtKQR9Vsfu5_dtUSxwatwrq4=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.833974+00 2025-12-09 10:15:24.833979+00 14257 LJH1734#红色 SPMX-20240815309456 \N \N \N 1 \N [{"file_id": "5c7210af-edd0-441b-a9fa-92261c42c53a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96535d5b298438980ec25649bba8fbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96535d5b298438980ec25649bba8fbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96535d5b298438980ec25649bba8fbf.jpg", "file_size": 59895, "is_delete": false, "file_type": 1, "original_file_name": "LJH1734#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96535d5b298438980ec25649bba8fbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96535d5b298438980ec25649bba8fbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96535d5b298438980ec25649bba8fbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96535d5b298438980ec25649bba8fbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96535d5b298438980ec25649bba8fbf.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkQOtCZydVCFeKEZdKqp3T1KyPU=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.836372+00 2025-12-09 10:15:24.836378+00 14258 LZ1329#背心款2号色 SPMX-20240815309463 \N \N \N 1 \N [{"file_id": "c225b312-b897-47ac-800b-4ca7247ada8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f96922e5e4f48869d23b268f080db20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f96922e5e4f48869d23b268f080db20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f96922e5e4f48869d23b268f080db20.jpg", "file_size": 17729, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f96922e5e4f48869d23b268f080db20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f96922e5e4f48869d23b268f080db20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f96922e5e4f48869d23b268f080db20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f96922e5e4f48869d23b268f080db20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f96922e5e4f48869d23b268f080db20.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RIQ-xmOlNHWkzm3wVRDlj8owams=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.838918+00 2025-12-09 10:15:24.838924+00 14259 23-2123#A5-领子3XL SPMX-20240815309464 \N \N \N 1 \N [{"file_id": "6fcdfa59-1386-4714-9295-3b71474432b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99f6a435b08a4245877bf1abf539550d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99f6a435b08a4245877bf1abf539550d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99f6a435b08a4245877bf1abf539550d.jpg", "file_size": 13356, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99f6a435b08a4245877bf1abf539550d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99f6a435b08a4245877bf1abf539550d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99f6a435b08a4245877bf1abf539550d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99f6a435b08a4245877bf1abf539550d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99f6a435b08a4245877bf1abf539550d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6Lrkjg0Z7qNyVPuV77-a1dFjls=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.841625+00 2025-12-09 10:15:24.841631+00 14260 C933#A6 SPMX-20240815309455 \N \N \N 1 \N [{"file_id": "2e8acae6-a1f7-4a32-ab32-ada4c00d2f14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f13e840faa0435ab79dca6e885411ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f13e840faa0435ab79dca6e885411ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f13e840faa0435ab79dca6e885411ba.jpg", "file_size": 10756, "is_delete": false, "file_type": 1, "original_file_name": "C933#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f13e840faa0435ab79dca6e885411ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f13e840faa0435ab79dca6e885411ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f13e840faa0435ab79dca6e885411ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f13e840faa0435ab79dca6e885411ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f13e840faa0435ab79dca6e885411ba.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IsF0W_2kMCqiRhXN2ICtmpywB2I=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.844328+00 2025-12-09 10:15:24.844333+00 14261 JTSS527FW#VS-D3 SPMX-20240815309462 \N \N \N 1 \N [{"file_id": "829865ed-4d16-4dec-8965-ac0c30695f30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "928e06f11f454bffafd154a9738c9153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "928e06f11f454bffafd154a9738c9153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "928e06f11f454bffafd154a9738c9153.jpg", "file_size": 9033, "is_delete": false, "file_type": 1, "original_file_name": "JTSS527FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928e06f11f454bffafd154a9738c9153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928e06f11f454bffafd154a9738c9153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/928e06f11f454bffafd154a9738c9153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/928e06f11f454bffafd154a9738c9153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/928e06f11f454bffafd154a9738c9153.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6MmdUm4yMq1ZTGoymJHGB4FciM=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.847028+00 2025-12-09 10:15:24.847035+00 14262 1191FWE#黄色 SPMX-20240815309459 \N \N \N 1 \N [{"file_id": "258b0aca-7238-46e8-972d-4642d5655eab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f54829327bbc439aad8aef2cfeda7d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f54829327bbc439aad8aef2cfeda7d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f54829327bbc439aad8aef2cfeda7d8b.jpg", "file_size": 16771, "is_delete": false, "file_type": 1, "original_file_name": "1191FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54829327bbc439aad8aef2cfeda7d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54829327bbc439aad8aef2cfeda7d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54829327bbc439aad8aef2cfeda7d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f54829327bbc439aad8aef2cfeda7d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f54829327bbc439aad8aef2cfeda7d8b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYqqEA-ZKlRFSo7bWVUBI4U54bQ=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.849697+00 2025-12-09 10:15:24.849703+00 14263 837-A142#彩蓝 SPMX-20240815309449 \N \N \N 1 \N [{"file_id": "47569936-65e6-4180-9f66-35c2e110f357", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73b839ed96c845b2ab3d06fbe1e86ca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73b839ed96c845b2ab3d06fbe1e86ca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73b839ed96c845b2ab3d06fbe1e86ca9.jpg", "file_size": 16010, "is_delete": false, "file_type": 1, "original_file_name": "837-A142#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b839ed96c845b2ab3d06fbe1e86ca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b839ed96c845b2ab3d06fbe1e86ca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b839ed96c845b2ab3d06fbe1e86ca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73b839ed96c845b2ab3d06fbe1e86ca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73b839ed96c845b2ab3d06fbe1e86ca9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o6_0kXDxFdmOkJFKK2lysh1n90I=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.852662+00 2025-12-09 10:15:24.85267+00 14264 0006-13FWF#V5曲线 SPMX-20240815309453 \N \N \N 1 \N [{"file_id": "0693aee6-c64b-4530-936a-078af1103c64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a4a94caf63475e9b5edaee552598e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a4a94caf63475e9b5edaee552598e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a4a94caf63475e9b5edaee552598e3.jpg", "file_size": 18715, "is_delete": false, "file_type": 1, "original_file_name": "0006-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a4a94caf63475e9b5edaee552598e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a4a94caf63475e9b5edaee552598e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a4a94caf63475e9b5edaee552598e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a4a94caf63475e9b5edaee552598e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a4a94caf63475e9b5edaee552598e3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQTnVbRII9i1BTGDpSbO1uFYq1I=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.85614+00 2025-12-09 10:15:24.856147+00 14265 DL31132#批布浅粉 SPMX-20240815309468 \N \N \N 1 \N [{"file_id": "1c285196-e486-4ced-b6cc-a149445376c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "629a5abcbd00434aa49e0b9bae5cd0a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "629a5abcbd00434aa49e0b9bae5cd0a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "629a5abcbd00434aa49e0b9bae5cd0a1.jpg", "file_size": 23514, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629a5abcbd00434aa49e0b9bae5cd0a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629a5abcbd00434aa49e0b9bae5cd0a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629a5abcbd00434aa49e0b9bae5cd0a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/629a5abcbd00434aa49e0b9bae5cd0a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/629a5abcbd00434aa49e0b9bae5cd0a1.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_LeA1xEsZb_yzGdg7rHynjwDFc=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.860099+00 2025-12-09 10:15:24.860103+00 14266 LJH1734#蓝色 SPMX-20240815309477 \N \N \N 1 \N [{"file_id": "594e022b-2bf5-4438-93a5-e35a8605efec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cda5c1b923aa44f9a99c53997c2a3810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cda5c1b923aa44f9a99c53997c2a3810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cda5c1b923aa44f9a99c53997c2a3810.jpg", "file_size": 57824, "is_delete": false, "file_type": 1, "original_file_name": "LJH1734#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda5c1b923aa44f9a99c53997c2a3810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda5c1b923aa44f9a99c53997c2a3810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda5c1b923aa44f9a99c53997c2a3810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cda5c1b923aa44f9a99c53997c2a3810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cda5c1b923aa44f9a99c53997c2a3810.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFjFGKLHFl0TVZEL3_JUcPIqCPU=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.863113+00 2025-12-09 10:15:24.86312+00 14267 0006-14FWF#V5曲线 SPMX-20240815309466 \N \N \N 1 \N [{"file_id": "f0d48adb-6400-4c7c-9882-60f9dd0a3455", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf2046cad114f5b885e3a971639ad01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf2046cad114f5b885e3a971639ad01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf2046cad114f5b885e3a971639ad01.jpg", "file_size": 12714, "is_delete": false, "file_type": 1, "original_file_name": "0006-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf2046cad114f5b885e3a971639ad01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf2046cad114f5b885e3a971639ad01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf2046cad114f5b885e3a971639ad01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf2046cad114f5b885e3a971639ad01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf2046cad114f5b885e3a971639ad01.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcpFpWtgqC20VzaSAF_uWxpMaXc=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.865646+00 2025-12-09 10:15:24.865651+00 14268 C938#土黄L SPMX-20240815309465 \N \N \N 1 \N [{"file_id": "1008f0b4-6d34-43d3-98d8-2f5682dc5312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b178e227e74d76abc640343c076b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b178e227e74d76abc640343c076b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b178e227e74d76abc640343c076b04.jpg", "file_size": 24859, "is_delete": false, "file_type": 1, "original_file_name": "C938#土黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b178e227e74d76abc640343c076b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b178e227e74d76abc640343c076b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b178e227e74d76abc640343c076b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b178e227e74d76abc640343c076b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b178e227e74d76abc640343c076b04.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5nAbk7m_ROgm5ZGCpsFLRWbUfLg=", "createTime": "2024-08-15 14:57:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.867814+00 2025-12-09 10:15:24.867818+00 14269 HT6206#XL蓝 SPMX-20240815309469 \N \N \N 1 \N [{"file_id": "6c2fe3c6-6f96-44c4-bc81-a79fc0c0ea14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98a80abda2074ca3ad38f96a2655a044.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98a80abda2074ca3ad38f96a2655a044.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98a80abda2074ca3ad38f96a2655a044.jpg", "file_size": 13847, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#XL蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a80abda2074ca3ad38f96a2655a044.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a80abda2074ca3ad38f96a2655a044.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a80abda2074ca3ad38f96a2655a044.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98a80abda2074ca3ad38f96a2655a044.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98a80abda2074ca3ad38f96a2655a044.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gH-95pUQsjw4d66nlhTtfvoLy50=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.870143+00 2025-12-09 10:15:24.870147+00 14270 FND1929FWE#妈妈装-黑色 SPMX-20240815309473 \N \N \N 1 \N [{"file_id": "b6b6fcd6-1d01-45f6-86f5-6e7b93cedfdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "547c4b3ca57648a8bc8be640570203c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "547c4b3ca57648a8bc8be640570203c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "547c4b3ca57648a8bc8be640570203c8.jpg", "file_size": 20003, "is_delete": false, "file_type": 1, "original_file_name": "FND1929FWE#妈妈装-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/547c4b3ca57648a8bc8be640570203c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/547c4b3ca57648a8bc8be640570203c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/547c4b3ca57648a8bc8be640570203c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/547c4b3ca57648a8bc8be640570203c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/547c4b3ca57648a8bc8be640570203c8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3nzJFQ6VTJBZN8ocA3ucsHg_RE=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.872407+00 2025-12-09 10:15:24.872412+00 14271 JTSS528FW#VS-D3 SPMX-20240815309471 \N \N \N 1 \N [{"file_id": "2f6d3d63-b596-4d86-8754-e996aa72079f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5a584f10e0b48369d7d2b970698a447.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5a584f10e0b48369d7d2b970698a447.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5a584f10e0b48369d7d2b970698a447.jpg", "file_size": 8788, "is_delete": false, "file_type": 1, "original_file_name": "JTSS528FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a584f10e0b48369d7d2b970698a447.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a584f10e0b48369d7d2b970698a447.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a584f10e0b48369d7d2b970698a447.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5a584f10e0b48369d7d2b970698a447.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5a584f10e0b48369d7d2b970698a447.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wz7QIdacdMfxMHfVUBKTfdaVu98=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.874642+00 2025-12-09 10:15:24.874645+00 14272 C938#土黄XL SPMX-20240815309475 \N \N \N 1 \N [{"file_id": "e58bfbe1-abdc-4480-9c3f-fecfe393aaa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d3a025a34a04a818cbdb962d9585800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d3a025a34a04a818cbdb962d9585800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d3a025a34a04a818cbdb962d9585800.jpg", "file_size": 25211, "is_delete": false, "file_type": 1, "original_file_name": "C938#土黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3a025a34a04a818cbdb962d9585800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3a025a34a04a818cbdb962d9585800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3a025a34a04a818cbdb962d9585800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d3a025a34a04a818cbdb962d9585800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d3a025a34a04a818cbdb962d9585800.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z73muSo2P2CfYLfB5H1xLU4q4VE=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.876619+00 2025-12-09 10:15:24.876623+00 14273 LZ1329#背心款3号色 SPMX-20240815309474 \N \N \N 1 \N [{"file_id": "bee4703d-66f3-4691-9f78-43565fb8522d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba860b343db64167a3e1ec27edb8130d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba860b343db64167a3e1ec27edb8130d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba860b343db64167a3e1ec27edb8130d.jpg", "file_size": 18124, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba860b343db64167a3e1ec27edb8130d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba860b343db64167a3e1ec27edb8130d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba860b343db64167a3e1ec27edb8130d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba860b343db64167a3e1ec27edb8130d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba860b343db64167a3e1ec27edb8130d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5LmNOYVO_Dy4tyHUT4W_Dep9ds=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.878631+00 2025-12-09 10:15:24.878634+00 14274 23-2123#A5-领子4XL SPMX-20240815309476 \N \N \N 1 \N [{"file_id": "f8411eb2-220e-4e07-9e74-a4e5fe3ed7c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "400dba4ceb2d434eb559d45dfbda4b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "400dba4ceb2d434eb559d45dfbda4b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "400dba4ceb2d434eb559d45dfbda4b1f.jpg", "file_size": 13653, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400dba4ceb2d434eb559d45dfbda4b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400dba4ceb2d434eb559d45dfbda4b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400dba4ceb2d434eb559d45dfbda4b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/400dba4ceb2d434eb559d45dfbda4b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/400dba4ceb2d434eb559d45dfbda4b1f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_vUPRsK4Ztcu0L2l4-T6is7Tyc=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.880617+00 2025-12-09 10:15:24.880621+00 14275 837-A142#橙色 SPMX-20240815309472 \N \N \N 1 \N [{"file_id": "3a1a6c2b-43e9-4cff-bc3b-d7d89fae4fa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bac0d680f6049e690e31fb5e28f1a16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bac0d680f6049e690e31fb5e28f1a16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bac0d680f6049e690e31fb5e28f1a16.jpg", "file_size": 14370, "is_delete": false, "file_type": 1, "original_file_name": "837-A142#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bac0d680f6049e690e31fb5e28f1a16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bac0d680f6049e690e31fb5e28f1a16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bac0d680f6049e690e31fb5e28f1a16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bac0d680f6049e690e31fb5e28f1a16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bac0d680f6049e690e31fb5e28f1a16.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEJlNEc_uXJl6C1fmioofRGkVIg=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.882827+00 2025-12-09 10:15:24.882833+00 14276 LJH1734#绿色 SPMX-20240815309467 \N \N \N 1 \N [{"file_id": "ed585e3c-4772-49ce-b588-24706e9673d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e84555d6278415392e3ccd242fc2bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e84555d6278415392e3ccd242fc2bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e84555d6278415392e3ccd242fc2bb0.jpg", "file_size": 54089, "is_delete": false, "file_type": 1, "original_file_name": "LJH1734#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e84555d6278415392e3ccd242fc2bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e84555d6278415392e3ccd242fc2bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e84555d6278415392e3ccd242fc2bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e84555d6278415392e3ccd242fc2bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e84555d6278415392e3ccd242fc2bb0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1JTFwtHDLE56CkQZ1vLZMlGTuA=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.884879+00 2025-12-09 10:15:24.884883+00 14277 1191FWE#黑色 SPMX-20240815309470 \N \N \N 1 \N [{"file_id": "950e512d-eb10-4d9f-9ba7-21a7d36b86f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8e6c823323c4402934d4af960d0ba31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8e6c823323c4402934d4af960d0ba31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8e6c823323c4402934d4af960d0ba31.jpg", "file_size": 16048, "is_delete": false, "file_type": 1, "original_file_name": "1191FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e6c823323c4402934d4af960d0ba31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e6c823323c4402934d4af960d0ba31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e6c823323c4402934d4af960d0ba31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8e6c823323c4402934d4af960d0ba31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8e6c823323c4402934d4af960d0ba31.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9k6ljAXUSV19JUJUrGnSUj9ei4=", "createTime": "2024-08-15 14:57:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.886929+00 2025-12-09 10:15:24.886934+00 14278 FND2068FWE#妈妈装-红色 SPMX-20240815309488 \N \N \N 1 \N [{"file_id": "ce0a2b33-ee81-48c7-b3f4-7483abb2e766", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4812bd14c9324be9b1f1101eb45709ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4812bd14c9324be9b1f1101eb45709ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4812bd14c9324be9b1f1101eb45709ed.jpg", "file_size": 19591, "is_delete": false, "file_type": 1, "original_file_name": "FND2068FWE#妈妈装-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4812bd14c9324be9b1f1101eb45709ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4812bd14c9324be9b1f1101eb45709ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4812bd14c9324be9b1f1101eb45709ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4812bd14c9324be9b1f1101eb45709ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4812bd14c9324be9b1f1101eb45709ed.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjZyVM4ZRp5SKtwu9NY8IAd29M8=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.888935+00 2025-12-09 10:15:24.888939+00 14279 1191SK# SPMX-20240815309485 \N \N \N 1 \N [{"file_id": "a354bcb4-d029-4b0f-bc50-50266604ac98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2330871d479248af9c4572ca8f813c8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2330871d479248af9c4572ca8f813c8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2330871d479248af9c4572ca8f813c8a.jpg", "file_size": 57763, "is_delete": false, "file_type": 1, "original_file_name": "1191SK#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2330871d479248af9c4572ca8f813c8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2330871d479248af9c4572ca8f813c8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2330871d479248af9c4572ca8f813c8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2330871d479248af9c4572ca8f813c8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2330871d479248af9c4572ca8f813c8a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q7r6PaaaPHcWS3YNwOvm30o_Xs8=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.890902+00 2025-12-09 10:15:24.890906+00 14280 0006-15FWE#VS-D3 SPMX-20240815309478 \N \N \N 1 \N [{"file_id": "74315603-6e2f-4695-b294-375791d45cb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5906904fc3324f23afcda7dd322bc6f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5906904fc3324f23afcda7dd322bc6f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5906904fc3324f23afcda7dd322bc6f7.jpg", "file_size": 12078, "is_delete": false, "file_type": 1, "original_file_name": "0006-15FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5906904fc3324f23afcda7dd322bc6f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5906904fc3324f23afcda7dd322bc6f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5906904fc3324f23afcda7dd322bc6f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5906904fc3324f23afcda7dd322bc6f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5906904fc3324f23afcda7dd322bc6f7.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BMmtYR0a29dM1jccXogx8kRnZ_0=", "createTime": "2024-08-15 14:57:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.893099+00 2025-12-09 10:15:24.893105+00 14281 0006-15FWF#V5曲线 SPMX-20240815309489 \N \N \N 1 \N [{"file_id": "fef28403-4f91-4dec-8d06-1b35fd110194", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77952159e59d410a8d14befd345033db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77952159e59d410a8d14befd345033db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77952159e59d410a8d14befd345033db.jpg", "file_size": 24130, "is_delete": false, "file_type": 1, "original_file_name": "0006-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77952159e59d410a8d14befd345033db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77952159e59d410a8d14befd345033db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77952159e59d410a8d14befd345033db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77952159e59d410a8d14befd345033db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77952159e59d410a8d14befd345033db.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxOTTc4YRM8aEAbuuBJARo5LodM=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.895667+00 2025-12-09 10:15:24.895672+00 14282 DL31132#批布蓝绿 SPMX-20240815309482 \N \N \N 1 \N [{"file_id": "9a886b2d-df15-49f9-be6e-3d9d20a71939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a059742fb2294d6ba43bfb4a7b61c953.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a059742fb2294d6ba43bfb4a7b61c953.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a059742fb2294d6ba43bfb4a7b61c953.jpg", "file_size": 23896, "is_delete": false, "file_type": 1, "original_file_name": "DL31132#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a059742fb2294d6ba43bfb4a7b61c953.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a059742fb2294d6ba43bfb4a7b61c953.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a059742fb2294d6ba43bfb4a7b61c953.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a059742fb2294d6ba43bfb4a7b61c953.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a059742fb2294d6ba43bfb4a7b61c953.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s0Znc-gacn7tHTqS7V3QH_q0TQ8=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.898147+00 2025-12-09 10:15:24.898152+00 14283 23-2123#A5净色领子 SPMX-20240815309487 \N \N \N 1 \N [{"file_id": "b67603b8-d292-46ef-8997-2988d2f98da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "839f519b689d48baa4f880fadab22672.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "839f519b689d48baa4f880fadab22672.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "839f519b689d48baa4f880fadab22672.jpg", "file_size": 6964, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A5净色领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839f519b689d48baa4f880fadab22672.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839f519b689d48baa4f880fadab22672.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/839f519b689d48baa4f880fadab22672.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/839f519b689d48baa4f880fadab22672.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/839f519b689d48baa4f880fadab22672.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QVJd8Tbyd8uJ75bF2MrXk5MDNFU=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.900522+00 2025-12-09 10:15:24.900527+00 14284 LJH1744#上摆彩兰 SPMX-20240815309490 \N \N \N 1 \N [{"file_id": "e24031f9-7552-4c50-a71b-f15f794d83f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a92d3acc007d43bd9461ff11a9718256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a92d3acc007d43bd9461ff11a9718256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a92d3acc007d43bd9461ff11a9718256.jpg", "file_size": 85002, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#上摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92d3acc007d43bd9461ff11a9718256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92d3acc007d43bd9461ff11a9718256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a92d3acc007d43bd9461ff11a9718256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a92d3acc007d43bd9461ff11a9718256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a92d3acc007d43bd9461ff11a9718256.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbmZ1AacAqL8t-kHOFkrcTGvfGY=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.90285+00 2025-12-09 10:15:24.902855+00 14285 LJH1734#黄色 SPMX-20240815309479 \N \N \N 1 \N [{"file_id": "46a69c4c-041c-4b25-a6ef-f611e7b749fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd6777e9a704c4891b945b00627b65f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd6777e9a704c4891b945b00627b65f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd6777e9a704c4891b945b00627b65f.jpg", "file_size": 58614, "is_delete": false, "file_type": 1, "original_file_name": "LJH1734#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6777e9a704c4891b945b00627b65f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6777e9a704c4891b945b00627b65f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6777e9a704c4891b945b00627b65f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd6777e9a704c4891b945b00627b65f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd6777e9a704c4891b945b00627b65f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_NDYu6jvuUksL-UzoN25ZtJlR4=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.904943+00 2025-12-09 10:15:24.904948+00 14286 837-A142#黄 SPMX-20240815309484 \N \N \N 1 \N [{"file_id": "f613b320-a296-4fdf-8848-8e7263d9bf6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17a9c964bf8b49caa5d6f764bf32ed61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17a9c964bf8b49caa5d6f764bf32ed61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17a9c964bf8b49caa5d6f764bf32ed61.jpg", "file_size": 13078, "is_delete": false, "file_type": 1, "original_file_name": "837-A142#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a9c964bf8b49caa5d6f764bf32ed61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a9c964bf8b49caa5d6f764bf32ed61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a9c964bf8b49caa5d6f764bf32ed61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17a9c964bf8b49caa5d6f764bf32ed61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17a9c964bf8b49caa5d6f764bf32ed61.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7fc9KDHJw6BLgt8naoIM5_LXgo=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.907114+00 2025-12-09 10:15:24.907119+00 14287 HT6206#XL黑 SPMX-20240815309480 \N \N \N 1 \N [{"file_id": "e96f6b93-2132-4e2c-8165-d4525085ca53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "834c01beb77d44dabaf88bfa31dd5ca8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "834c01beb77d44dabaf88bfa31dd5ca8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "834c01beb77d44dabaf88bfa31dd5ca8.jpg", "file_size": 13599, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834c01beb77d44dabaf88bfa31dd5ca8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834c01beb77d44dabaf88bfa31dd5ca8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/834c01beb77d44dabaf88bfa31dd5ca8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/834c01beb77d44dabaf88bfa31dd5ca8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/834c01beb77d44dabaf88bfa31dd5ca8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWqwIXt8ojn5L9vNbUqjuZ9Z17A=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.909532+00 2025-12-09 10:15:24.909538+00 14288 JTSS529FW#VS-D3 SPMX-20240815309481 \N \N \N 1 \N [{"file_id": "9dd49827-8611-41f0-821c-2aab99a621d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fed6645e3cb345928553b0a1a085960e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fed6645e3cb345928553b0a1a085960e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fed6645e3cb345928553b0a1a085960e.jpg", "file_size": 7538, "is_delete": false, "file_type": 1, "original_file_name": "JTSS529FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed6645e3cb345928553b0a1a085960e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed6645e3cb345928553b0a1a085960e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed6645e3cb345928553b0a1a085960e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fed6645e3cb345928553b0a1a085960e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fed6645e3cb345928553b0a1a085960e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWwk4JuoI4hZABM-KbiuuCdMC4Q=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.929642+00 2025-12-09 10:15:24.929647+00 14297 C938#墨绿L SPMX-20240815309494 \N \N \N 1 \N [{"file_id": "1dd12bee-c45f-49d2-b015-840ddf0276bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3a9da6dc3584818853c0faf0d2420c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3a9da6dc3584818853c0faf0d2420c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3a9da6dc3584818853c0faf0d2420c1.jpg", "file_size": 23952, "is_delete": false, "file_type": 1, "original_file_name": "C938#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a9da6dc3584818853c0faf0d2420c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a9da6dc3584818853c0faf0d2420c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a9da6dc3584818853c0faf0d2420c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3a9da6dc3584818853c0faf0d2420c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3a9da6dc3584818853c0faf0d2420c1.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaJxSh5WABd-1Q2Td83bngX4P8Q=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.911898+00 2025-12-09 10:15:24.911904+00 14289 C938#土黄领袖补数XL SPMX-20240815309483 \N \N \N 1 \N [{"file_id": "0df71b2c-900f-4a76-9648-94889d89ab3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64ce315e4c764f2b802965f4a110b86d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64ce315e4c764f2b802965f4a110b86d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64ce315e4c764f2b802965f4a110b86d.jpg", "file_size": 13824, "is_delete": false, "file_type": 1, "original_file_name": "C938#土黄领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64ce315e4c764f2b802965f4a110b86d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64ce315e4c764f2b802965f4a110b86d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64ce315e4c764f2b802965f4a110b86d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64ce315e4c764f2b802965f4a110b86d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64ce315e4c764f2b802965f4a110b86d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdNpMcUzz8X9-vVkZ8fBEqCErXo=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.914046+00 2025-12-09 10:15:24.914051+00 14290 LZ1329#背心款4号色 SPMX-20240815309486 \N \N \N 1 \N [{"file_id": "3d10c4c5-eab1-4a9a-9aa7-2cc8d2e7351a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ae7affe13440a7b4a97417e2c6c576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ae7affe13440a7b4a97417e2c6c576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ae7affe13440a7b4a97417e2c6c576.jpg", "file_size": 17326, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ae7affe13440a7b4a97417e2c6c576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ae7affe13440a7b4a97417e2c6c576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ae7affe13440a7b4a97417e2c6c576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ae7affe13440a7b4a97417e2c6c576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ae7affe13440a7b4a97417e2c6c576.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X16tn-1nzylLSQjBLgdhRjc7Fq8=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.916182+00 2025-12-09 10:15:24.916189+00 14291 HT6206#净色红 SPMX-20240815309491 \N \N \N 1 \N [{"file_id": "c8af3d7c-50c5-44d6-956a-785a95cafe08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg", "file_size": 4704, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#净色红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3d1140a0cc14e2fbd95db2ac5f84e9f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tyx6cLe9CAW1Ayza5lxZoIut7wU=", "createTime": "2024-08-15 14:57:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.918554+00 2025-12-09 10:15:24.91856+00 14292 FND2068FWE#妈妈装-绿色 SPMX-20240815309499 \N \N \N 1 \N [{"file_id": "66ed4762-2eef-486b-9ab8-e02f43f82eaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5e9fc5428354cdf9cc0bddf9af47a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5e9fc5428354cdf9cc0bddf9af47a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5e9fc5428354cdf9cc0bddf9af47a1d.jpg", "file_size": 19798, "is_delete": false, "file_type": 1, "original_file_name": "FND2068FWE#妈妈装-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e9fc5428354cdf9cc0bddf9af47a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e9fc5428354cdf9cc0bddf9af47a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e9fc5428354cdf9cc0bddf9af47a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5e9fc5428354cdf9cc0bddf9af47a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5e9fc5428354cdf9cc0bddf9af47a1d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBtPcMWUSrzK0NUqG_uLeqeoakM=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.920903+00 2025-12-09 10:15:24.920908+00 14293 DL31134#下摆批布23#浅粉 SPMX-20240815309498 \N \N \N 1 \N [{"file_id": "47f0ff5f-7cc5-4df6-b4fd-af5e7559c461", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f7795a23a9247a595c422db80b87a24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f7795a23a9247a595c422db80b87a24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f7795a23a9247a595c422db80b87a24.jpg", "file_size": 15196, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布23#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f7795a23a9247a595c422db80b87a24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f7795a23a9247a595c422db80b87a24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f7795a23a9247a595c422db80b87a24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f7795a23a9247a595c422db80b87a24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f7795a23a9247a595c422db80b87a24.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:95XFmPbeGiuktBcBQ0H_xMJ3trA=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.923023+00 2025-12-09 10:15:24.923028+00 14294 0006-16FWE#VS-D3 SPMX-20240815309496 \N \N \N 1 \N [{"file_id": "5bc3972b-a2d2-4610-9c5f-f078f5e9850a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e3daa6773784f86a82d233b14a9d878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e3daa6773784f86a82d233b14a9d878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e3daa6773784f86a82d233b14a9d878.jpg", "file_size": 7022, "is_delete": false, "file_type": 1, "original_file_name": "0006-16FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3daa6773784f86a82d233b14a9d878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3daa6773784f86a82d233b14a9d878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3daa6773784f86a82d233b14a9d878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e3daa6773784f86a82d233b14a9d878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e3daa6773784f86a82d233b14a9d878.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNl4tfVw49Abslm7_hWA_zIOBDk=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.925121+00 2025-12-09 10:15:24.925126+00 14295 837-A142#黑 SPMX-20240815309493 \N \N \N 1 \N [{"file_id": "c2022e2a-df0f-440a-b6b5-f01c44cb1e6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "517b0e428648426dbca404aae83afcd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "517b0e428648426dbca404aae83afcd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "517b0e428648426dbca404aae83afcd4.jpg", "file_size": 14805, "is_delete": false, "file_type": 1, "original_file_name": "837-A142#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517b0e428648426dbca404aae83afcd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517b0e428648426dbca404aae83afcd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517b0e428648426dbca404aae83afcd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/517b0e428648426dbca404aae83afcd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/517b0e428648426dbca404aae83afcd4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70JI86m4RLIzqdcouw5MJt50hB0=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.927237+00 2025-12-09 10:15:24.927243+00 14296 LJH1744#上摆桔色 SPMX-20240815309500 \N \N \N 1 \N [{"file_id": "ac678084-bdaa-4f08-8bf7-e69abf57cbcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5811471b8a264528bf49c6ffc3db66d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5811471b8a264528bf49c6ffc3db66d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5811471b8a264528bf49c6ffc3db66d0.jpg", "file_size": 80006, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#上摆桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5811471b8a264528bf49c6ffc3db66d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5811471b8a264528bf49c6ffc3db66d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5811471b8a264528bf49c6ffc3db66d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5811471b8a264528bf49c6ffc3db66d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5811471b8a264528bf49c6ffc3db66d0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GjKo0aDtSVit1xNA2uuVOYtd6Vg=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.931977+00 2025-12-09 10:15:24.931982+00 14298 1191SK#VS-D3 SPMX-20240815309492 \N \N \N 1 \N [{"file_id": "e1e29684-85c1-42b7-a8fa-b31d485df103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "371a9f04d70d44798d4e3981d421e44c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "371a9f04d70d44798d4e3981d421e44c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "371a9f04d70d44798d4e3981d421e44c.jpg", "file_size": 17219, "is_delete": false, "file_type": 1, "original_file_name": "1191SK#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371a9f04d70d44798d4e3981d421e44c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371a9f04d70d44798d4e3981d421e44c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371a9f04d70d44798d4e3981d421e44c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/371a9f04d70d44798d4e3981d421e44c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/371a9f04d70d44798d4e3981d421e44c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:guqGn9FBIlyVbp06lEYNUh-YMQQ=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.934129+00 2025-12-09 10:15:24.934135+00 14299 JTSS530FW#VS-D3 SPMX-20240815309497 \N \N \N 1 \N [{"file_id": "5bbfe568-6cbd-4e9b-9c0f-31de2a7b5b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bb353bff8994872982d67a35927a5e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bb353bff8994872982d67a35927a5e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bb353bff8994872982d67a35927a5e5.jpg", "file_size": 14376, "is_delete": false, "file_type": 1, "original_file_name": "JTSS530FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bb353bff8994872982d67a35927a5e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bb353bff8994872982d67a35927a5e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bb353bff8994872982d67a35927a5e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bb353bff8994872982d67a35927a5e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bb353bff8994872982d67a35927a5e5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7d7EJ5cSH1EYtogJBi0dpYcJlY=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.936206+00 2025-12-09 10:15:24.936211+00 14300 23-2123#A6-3XL SPMX-20240815309501 \N \N \N 1 \N [{"file_id": "60e1fc4f-9121-4df8-ad96-7a560af8e786", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "623e11f46d044ef09cc3bcf7869740d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "623e11f46d044ef09cc3bcf7869740d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "623e11f46d044ef09cc3bcf7869740d6.jpg", "file_size": 17632, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e11f46d044ef09cc3bcf7869740d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e11f46d044ef09cc3bcf7869740d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e11f46d044ef09cc3bcf7869740d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/623e11f46d044ef09cc3bcf7869740d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/623e11f46d044ef09cc3bcf7869740d6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBS-Q7EHKgQknsJ6flo5O9vhIUc=", "createTime": "2024-08-15 14:57:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.93834+00 2025-12-09 10:15:24.938345+00 14301 FND2068FWE#妈妈装-金黄 SPMX-20240815309506 \N \N \N 1 \N [{"file_id": "7de8d29d-0ed8-43f6-88ac-90d5de3978da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7178c5f04ef94a16ae796bd9901ba559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7178c5f04ef94a16ae796bd9901ba559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7178c5f04ef94a16ae796bd9901ba559.jpg", "file_size": 20111, "is_delete": false, "file_type": 1, "original_file_name": "FND2068FWE#妈妈装-金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7178c5f04ef94a16ae796bd9901ba559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7178c5f04ef94a16ae796bd9901ba559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7178c5f04ef94a16ae796bd9901ba559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7178c5f04ef94a16ae796bd9901ba559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7178c5f04ef94a16ae796bd9901ba559.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phPFNMTL4xSvfzm4y6qccdsz0Qc=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.940725+00 2025-12-09 10:15:24.940731+00 14302 DL31134#下摆批布29#蓝绿 SPMX-20240815309508 \N \N \N 1 \N [{"file_id": "cec61cd4-9349-4df1-844d-16c5cc4ce1e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg", "file_size": 15374, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布29#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8b4c4081b74f4aa8d2b8040c1a35d3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ozF7kqOB1AJ4pfgjfOqUVMH1_0=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.943108+00 2025-12-09 10:15:24.943114+00 14303 LZ132FWF#1号色短袖 SPMX-20240815309513 \N \N \N 1 \N [{"file_id": "769a6ff2-dcfa-4a7a-9c8f-0bb6c5b7edc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c16e27495cd4d51a3a0a766ddca3594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c16e27495cd4d51a3a0a766ddca3594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c16e27495cd4d51a3a0a766ddca3594.jpg", "file_size": 16497, "is_delete": false, "file_type": 1, "original_file_name": "LZ132FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c16e27495cd4d51a3a0a766ddca3594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c16e27495cd4d51a3a0a766ddca3594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c16e27495cd4d51a3a0a766ddca3594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c16e27495cd4d51a3a0a766ddca3594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c16e27495cd4d51a3a0a766ddca3594.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3K03GpSDA6XiLyiXdRnDBmraJc=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.945202+00 2025-12-09 10:15:24.945207+00 14304 1194FWF#V5曲线 SPMX-20240815309504 \N \N \N 1 \N [{"file_id": "32d27fbc-281d-43de-a0ea-27fb1fb811da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26cec6bd29bf498c8b65797efeaa9f3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26cec6bd29bf498c8b65797efeaa9f3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26cec6bd29bf498c8b65797efeaa9f3b.jpg", "file_size": 22934, "is_delete": false, "file_type": 1, "original_file_name": "1194FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cec6bd29bf498c8b65797efeaa9f3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cec6bd29bf498c8b65797efeaa9f3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cec6bd29bf498c8b65797efeaa9f3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26cec6bd29bf498c8b65797efeaa9f3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26cec6bd29bf498c8b65797efeaa9f3b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f886qy8bAHS1hz3iDhbovY-Rspw=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.947319+00 2025-12-09 10:15:24.947324+00 14305 JTSS531FW#VS-D3 SPMX-20240815309507 \N \N \N 1 \N [{"file_id": "c752da6e-3f2c-41fe-a09e-b87543703107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a3664c02ac4bd793b2d24e6b33be35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a3664c02ac4bd793b2d24e6b33be35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a3664c02ac4bd793b2d24e6b33be35.jpg", "file_size": 5795, "is_delete": false, "file_type": 1, "original_file_name": "JTSS531FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a3664c02ac4bd793b2d24e6b33be35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a3664c02ac4bd793b2d24e6b33be35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a3664c02ac4bd793b2d24e6b33be35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a3664c02ac4bd793b2d24e6b33be35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a3664c02ac4bd793b2d24e6b33be35.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpLi3uO37fPOwoCYiHvQnLWw7Zk=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.949441+00 2025-12-09 10:15:24.949448+00 14306 0006-16FWF#V5曲线 SPMX-20240815309512 \N \N \N 1 \N [{"file_id": "d5fe1815-da01-4fca-8f5c-b32cccdc8ed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg", "file_size": 21695, "is_delete": false, "file_type": 1, "original_file_name": "0006-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be6f98d1fdd4b49a93ac6f1b27a1b87.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4zkhIl_HxM0urvtj2TrvLBpQdZE=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.951852+00 2025-12-09 10:15:24.951858+00 14307 C938#墨绿XL SPMX-20240815309509 \N \N \N 1 \N [{"file_id": "a890032a-1335-48af-9a2a-512bd1c757a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c0346fc817c4d32b2816b99a9ee5871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c0346fc817c4d32b2816b99a9ee5871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c0346fc817c4d32b2816b99a9ee5871.jpg", "file_size": 24645, "is_delete": false, "file_type": 1, "original_file_name": "C938#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0346fc817c4d32b2816b99a9ee5871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0346fc817c4d32b2816b99a9ee5871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c0346fc817c4d32b2816b99a9ee5871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c0346fc817c4d32b2816b99a9ee5871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c0346fc817c4d32b2816b99a9ee5871.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yowJT6cXh4oquWHbLemgAg6Hmes=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.954356+00 2025-12-09 10:15:24.954363+00 14308 LZ1329#背心款5号色 SPMX-20240815309503 \N \N \N 1 \N [{"file_id": "9a4c2dcb-9bf1-4eca-a62e-f5ea29484696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c22e89e8db7740c593f3c6bd89e939b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c22e89e8db7740c593f3c6bd89e939b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c22e89e8db7740c593f3c6bd89e939b1.jpg", "file_size": 16071, "is_delete": false, "file_type": 1, "original_file_name": "LZ1329#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22e89e8db7740c593f3c6bd89e939b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22e89e8db7740c593f3c6bd89e939b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c22e89e8db7740c593f3c6bd89e939b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c22e89e8db7740c593f3c6bd89e939b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c22e89e8db7740c593f3c6bd89e939b1.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MRJlA79u5UMv_uVqj3Qb6EFTRZs=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.956504+00 2025-12-09 10:15:24.95651+00 14309 HT6206#净色黑 SPMX-20240815309510 \N \N \N 1 \N [{"file_id": "80cb7194-6a5d-4902-a373-93d27cd9b251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b956dc0458e4492ba191f7c216cfc19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b956dc0458e4492ba191f7c216cfc19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b956dc0458e4492ba191f7c216cfc19.jpg", "file_size": 4102, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#净色黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b956dc0458e4492ba191f7c216cfc19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b956dc0458e4492ba191f7c216cfc19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b956dc0458e4492ba191f7c216cfc19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b956dc0458e4492ba191f7c216cfc19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b956dc0458e4492ba191f7c216cfc19.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UVn6KREeDc5ziaSREQYjcwGPtGM=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.95886+00 2025-12-09 10:15:24.958866+00 14310 LJH1744#上摆红色 SPMX-20240815309511 \N \N \N 1 \N [{"file_id": "d08c4278-c430-41ae-8ce1-532c2e3777af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63d8a82718084ae9b8019894fb1af47d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63d8a82718084ae9b8019894fb1af47d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63d8a82718084ae9b8019894fb1af47d.jpg", "file_size": 84360, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#上摆红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63d8a82718084ae9b8019894fb1af47d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63d8a82718084ae9b8019894fb1af47d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63d8a82718084ae9b8019894fb1af47d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63d8a82718084ae9b8019894fb1af47d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63d8a82718084ae9b8019894fb1af47d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1s15K3ZK9NgP2RD0ClrE3ADj-gM=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.961194+00 2025-12-09 10:15:24.961199+00 14311 23-2123#A6-4XL SPMX-20240815309514 \N \N \N 1 \N [{"file_id": "faa1fefb-8bfe-4f89-b3ac-04cc00a2a203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96f8ec6280154db2b169cfade52005d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96f8ec6280154db2b169cfade52005d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96f8ec6280154db2b169cfade52005d5.jpg", "file_size": 15666, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f8ec6280154db2b169cfade52005d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f8ec6280154db2b169cfade52005d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f8ec6280154db2b169cfade52005d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96f8ec6280154db2b169cfade52005d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96f8ec6280154db2b169cfade52005d5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WDVoji67lEPZgpuMmE71Eh6_x6Q=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.963295+00 2025-12-09 10:15:24.963301+00 14312 HT6206#净色蓝 SPMX-20240815309502 \N \N \N 1 \N [{"file_id": "cdbdc95e-66b7-4ffa-9402-7d16e2a253d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e38438863ae14f65a3bcd99ecc837b2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e38438863ae14f65a3bcd99ecc837b2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e38438863ae14f65a3bcd99ecc837b2c.jpg", "file_size": 4855, "is_delete": false, "file_type": 1, "original_file_name": "HT6206#净色蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38438863ae14f65a3bcd99ecc837b2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38438863ae14f65a3bcd99ecc837b2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e38438863ae14f65a3bcd99ecc837b2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e38438863ae14f65a3bcd99ecc837b2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e38438863ae14f65a3bcd99ecc837b2c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7EQjTZ7a2immTkiLvlfpDq92FU=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.965416+00 2025-12-09 10:15:24.965421+00 14313 837-A88#橙色 SPMX-20240815309505 \N \N \N 1 \N [{"file_id": "8a497fe8-23b4-4599-8a9d-6917800d8c10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d5c75a22f9f4c63b473c693c91525b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d5c75a22f9f4c63b473c693c91525b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d5c75a22f9f4c63b473c693c91525b6.jpg", "file_size": 16001, "is_delete": false, "file_type": 1, "original_file_name": "837-A88#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5c75a22f9f4c63b473c693c91525b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5c75a22f9f4c63b473c693c91525b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5c75a22f9f4c63b473c693c91525b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d5c75a22f9f4c63b473c693c91525b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d5c75a22f9f4c63b473c693c91525b6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxfWV3lYEBosdV4x9YLlSf1lof0=", "createTime": "2024-08-15 14:57:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.967539+00 2025-12-09 10:15:24.967545+00 14314 C938#墨绿领袖补数XL SPMX-20240815309517 \N \N \N 1 \N [{"file_id": "f4394712-4f09-4ba1-9346-7c1f3b932a30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e303c0d56a27476db7cca6512672fe0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e303c0d56a27476db7cca6512672fe0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e303c0d56a27476db7cca6512672fe0e.jpg", "file_size": 14240, "is_delete": false, "file_type": 1, "original_file_name": "C938#墨绿领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e303c0d56a27476db7cca6512672fe0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e303c0d56a27476db7cca6512672fe0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e303c0d56a27476db7cca6512672fe0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e303c0d56a27476db7cca6512672fe0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e303c0d56a27476db7cca6512672fe0e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hzCUllPFl2Oyy8PvoIf9Sf4Akc=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.969947+00 2025-12-09 10:15:24.969953+00 14315 FND2068FWE#妈妈装-黑色 SPMX-20240815309520 \N \N \N 1 \N [{"file_id": "10ea3c04-5f07-478f-9227-2165db317556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cc2cc603591475fa8658eedbbd1e32e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cc2cc603591475fa8658eedbbd1e32e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cc2cc603591475fa8658eedbbd1e32e.jpg", "file_size": 20790, "is_delete": false, "file_type": 1, "original_file_name": "FND2068FWE#妈妈装-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc2cc603591475fa8658eedbbd1e32e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc2cc603591475fa8658eedbbd1e32e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc2cc603591475fa8658eedbbd1e32e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cc2cc603591475fa8658eedbbd1e32e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cc2cc603591475fa8658eedbbd1e32e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CuxLc9RhWaFzGfWioZe-dZ3y0aE=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.972303+00 2025-12-09 10:15:24.972309+00 14316 JTSS532FW#VS-D3 SPMX-20240815309521 \N \N \N 1 \N [{"file_id": "702a7940-8c95-49c1-a2fd-9b986757564d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "246e52911a444ecc9f406ae42ab54699.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "246e52911a444ecc9f406ae42ab54699.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "246e52911a444ecc9f406ae42ab54699.jpg", "file_size": 7671, "is_delete": false, "file_type": 1, "original_file_name": "JTSS532FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e52911a444ecc9f406ae42ab54699.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e52911a444ecc9f406ae42ab54699.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246e52911a444ecc9f406ae42ab54699.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/246e52911a444ecc9f406ae42ab54699.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/246e52911a444ecc9f406ae42ab54699.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGPRZVD5RETvckopcLjXmHPWiWw=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.974394+00 2025-12-09 10:15:24.9744+00 14317 23-2123#A6-领子3XL SPMX-20240815309518 \N \N \N 1 \N [{"file_id": "ef4b92b9-4dd3-432d-91ce-a2f916b6ff7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61e4513fb1b841a2a62def9356a36c17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61e4513fb1b841a2a62def9356a36c17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61e4513fb1b841a2a62def9356a36c17.jpg", "file_size": 13493, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e4513fb1b841a2a62def9356a36c17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e4513fb1b841a2a62def9356a36c17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e4513fb1b841a2a62def9356a36c17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61e4513fb1b841a2a62def9356a36c17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61e4513fb1b841a2a62def9356a36c17.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WFC6yAs9DjNXHgEIqZc-0oOdLz0=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.976527+00 2025-12-09 10:15:24.976533+00 14318 837-A88#黑色 SPMX-20240815309516 \N \N \N 1 \N [{"file_id": "a9500a1b-097a-45b5-977c-ce400849ea49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "319a3286fe174b9e9eafe6cc21287f9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "319a3286fe174b9e9eafe6cc21287f9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "319a3286fe174b9e9eafe6cc21287f9c.jpg", "file_size": 17190, "is_delete": false, "file_type": 1, "original_file_name": "837-A88#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319a3286fe174b9e9eafe6cc21287f9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319a3286fe174b9e9eafe6cc21287f9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319a3286fe174b9e9eafe6cc21287f9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/319a3286fe174b9e9eafe6cc21287f9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/319a3286fe174b9e9eafe6cc21287f9c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CLtxZEyNQzPS_zYJleJluVJw18=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.978676+00 2025-12-09 10:15:24.978683+00 14319 LZ132FWF#2号色短袖 SPMX-20240815309525 \N \N \N 1 \N [{"file_id": "872ea7d3-359e-485b-8220-23e1344a9e14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05921e57d38a4174a5d0e7037f8209d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05921e57d38a4174a5d0e7037f8209d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05921e57d38a4174a5d0e7037f8209d3.jpg", "file_size": 16074, "is_delete": false, "file_type": 1, "original_file_name": "LZ132FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05921e57d38a4174a5d0e7037f8209d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05921e57d38a4174a5d0e7037f8209d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05921e57d38a4174a5d0e7037f8209d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05921e57d38a4174a5d0e7037f8209d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05921e57d38a4174a5d0e7037f8209d3.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nf5RM7cuv44E15FvO6mBnB3viOc=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.981039+00 2025-12-09 10:15:24.981045+00 14320 LJH1744#上摆黑色 SPMX-20240815309523 \N \N \N 1 \N [{"file_id": "3a1d08e4-5763-4526-9765-baf9e087d4c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a787fee0749440e98d88d8039203023a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a787fee0749440e98d88d8039203023a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a787fee0749440e98d88d8039203023a.jpg", "file_size": 80446, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#上摆黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787fee0749440e98d88d8039203023a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787fee0749440e98d88d8039203023a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787fee0749440e98d88d8039203023a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a787fee0749440e98d88d8039203023a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a787fee0749440e98d88d8039203023a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bdx9owOUx-8ELLxcdge9XdqYR-0=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.983363+00 2025-12-09 10:15:24.983369+00 14321 HT6239FW#袖口38码 SPMX-20240815309522 \N \N \N 1 \N [{"file_id": "cf5f2d11-16d3-4d9c-bb15-2f85f4c37326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09e372f1262b4236b6759df53c57f74b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09e372f1262b4236b6759df53c57f74b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09e372f1262b4236b6759df53c57f74b.jpg", "file_size": 7695, "is_delete": false, "file_type": 1, "original_file_name": "HT6239FW#袖口38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e372f1262b4236b6759df53c57f74b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e372f1262b4236b6759df53c57f74b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e372f1262b4236b6759df53c57f74b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09e372f1262b4236b6759df53c57f74b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09e372f1262b4236b6759df53c57f74b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VU979V4JyBnD9w9s1l_DqXHUpQ=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.985502+00 2025-12-09 10:15:24.985507+00 14322 DL31134#下摆批布4#彩兰 SPMX-20240815309519 \N \N \N 1 \N [{"file_id": "2fdf2c39-2f29-4b1d-a8db-ccc5a75e1572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "527a12d501b04e3491ee5b8778149e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "527a12d501b04e3491ee5b8778149e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "527a12d501b04e3491ee5b8778149e0c.jpg", "file_size": 15613, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布4#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a12d501b04e3491ee5b8778149e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a12d501b04e3491ee5b8778149e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527a12d501b04e3491ee5b8778149e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/527a12d501b04e3491ee5b8778149e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/527a12d501b04e3491ee5b8778149e0c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QbZkrPoyzM0Gy5lZGT-YpCaA_k=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.987663+00 2025-12-09 10:15:24.987669+00 14323 1195-KA#RC23 SPMX-20240815309515 \N \N \N 1 \N [{"file_id": "86c98165-1a7d-4e58-b8e5-04eb96f7975f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37aaa7ec0bb74ca5b910403ca502f7cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37aaa7ec0bb74ca5b910403ca502f7cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37aaa7ec0bb74ca5b910403ca502f7cf.jpg", "file_size": 39960, "is_delete": false, "file_type": 1, "original_file_name": "1195-KA#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aaa7ec0bb74ca5b910403ca502f7cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aaa7ec0bb74ca5b910403ca502f7cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aaa7ec0bb74ca5b910403ca502f7cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37aaa7ec0bb74ca5b910403ca502f7cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37aaa7ec0bb74ca5b910403ca502f7cf.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9flvz6P50ut6Gs4Hwf9lmO5-4P0=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.989795+00 2025-12-09 10:15:24.9898+00 14324 0006-17FWE#VS-D3 SPMX-20240815309524 \N \N \N 1 \N [{"file_id": "58140804-86d3-4369-bde2-f708f7453d3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "887c6ee8dbd64a6b8260e0a42293e67e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "887c6ee8dbd64a6b8260e0a42293e67e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "887c6ee8dbd64a6b8260e0a42293e67e.jpg", "file_size": 12935, "is_delete": false, "file_type": 1, "original_file_name": "0006-17FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c6ee8dbd64a6b8260e0a42293e67e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c6ee8dbd64a6b8260e0a42293e67e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/887c6ee8dbd64a6b8260e0a42293e67e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/887c6ee8dbd64a6b8260e0a42293e67e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/887c6ee8dbd64a6b8260e0a42293e67e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQfGsPaPay3PfuprPJlomqmrGAk=", "createTime": "2024-08-15 14:57:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.99211+00 2025-12-09 10:15:24.992116+00 14325 DL31134#下摆批布5#玫红 SPMX-20240815309529 \N \N \N 1 \N [{"file_id": "93d41f1d-e7d5-455a-8f5f-edb5d91c8fd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a685e4ab54e402e9e92b2fca93ac3d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a685e4ab54e402e9e92b2fca93ac3d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a685e4ab54e402e9e92b2fca93ac3d0.jpg", "file_size": 15199, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a685e4ab54e402e9e92b2fca93ac3d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a685e4ab54e402e9e92b2fca93ac3d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a685e4ab54e402e9e92b2fca93ac3d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a685e4ab54e402e9e92b2fca93ac3d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a685e4ab54e402e9e92b2fca93ac3d0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwcwm0-daFGC3jIOe7Rt8iHlg2w=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.994433+00 2025-12-09 10:15:24.994437+00 14326 C938#白色L SPMX-20240815309531 \N \N \N 1 \N [{"file_id": "7047cbc6-63f5-4cf5-aa66-0d99206bbd0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9cfde0dabe842bf8e07bbe8b28dd668.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9cfde0dabe842bf8e07bbe8b28dd668.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9cfde0dabe842bf8e07bbe8b28dd668.jpg", "file_size": 24711, "is_delete": false, "file_type": 1, "original_file_name": "C938#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cfde0dabe842bf8e07bbe8b28dd668.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cfde0dabe842bf8e07bbe8b28dd668.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cfde0dabe842bf8e07bbe8b28dd668.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9cfde0dabe842bf8e07bbe8b28dd668.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9cfde0dabe842bf8e07bbe8b28dd668.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6jGXXBg003qzMS7k2leTas2BZs=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.996586+00 2025-12-09 10:15:24.996592+00 14327 0006-17FWF#V5曲线 SPMX-20240815309534 \N \N \N 1 \N [{"file_id": "ad1874d4-b400-4f79-811c-5902926a77f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3a3bd4a0f0e4d718a9750547e3d0154.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3a3bd4a0f0e4d718a9750547e3d0154.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3a3bd4a0f0e4d718a9750547e3d0154.jpg", "file_size": 19118, "is_delete": false, "file_type": 1, "original_file_name": "0006-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a3bd4a0f0e4d718a9750547e3d0154.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a3bd4a0f0e4d718a9750547e3d0154.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a3bd4a0f0e4d718a9750547e3d0154.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3a3bd4a0f0e4d718a9750547e3d0154.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3a3bd4a0f0e4d718a9750547e3d0154.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KcgYuBZj2z_m_YXYQ0eI1tmIAYs=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:24.998683+00 2025-12-09 10:15:24.998688+00 14328 1197FWF#V5曲线 SPMX-20240815309527 \N \N \N 1 \N [{"file_id": "f997e811-22e2-4e31-ad7c-c373829b520d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "437688bd35d84183b85ba98934d1c28a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "437688bd35d84183b85ba98934d1c28a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "437688bd35d84183b85ba98934d1c28a.jpg", "file_size": 22907, "is_delete": false, "file_type": 1, "original_file_name": "1197FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437688bd35d84183b85ba98934d1c28a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437688bd35d84183b85ba98934d1c28a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437688bd35d84183b85ba98934d1c28a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/437688bd35d84183b85ba98934d1c28a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/437688bd35d84183b85ba98934d1c28a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2077TJCSC_qzNA0HNxr8x_01P0=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.00083+00 2025-12-09 10:15:25.000836+00 14329 JTSS533FW#VS-D3 SPMX-20240815309532 \N \N \N 1 \N [{"file_id": "5683c948-b366-40cd-aa22-ea3bed824c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c88cf112bfa44126ab84b827ffc5dcd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c88cf112bfa44126ab84b827ffc5dcd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c88cf112bfa44126ab84b827ffc5dcd2.jpg", "file_size": 20389, "is_delete": false, "file_type": 1, "original_file_name": "JTSS533FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88cf112bfa44126ab84b827ffc5dcd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88cf112bfa44126ab84b827ffc5dcd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c88cf112bfa44126ab84b827ffc5dcd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c88cf112bfa44126ab84b827ffc5dcd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c88cf112bfa44126ab84b827ffc5dcd2.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ia6WiOSzKFj7kWnCRXjNxPo86Ck=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.003208+00 2025-12-09 10:15:25.003214+00 14330 FND2077FWE#妈妈装-大红 SPMX-20240815309530 \N \N \N 1 \N [{"file_id": "a19f5785-0c6a-425c-9f4b-154b2bec7711", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd93f44e77a0489aa4e8379303502570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd93f44e77a0489aa4e8379303502570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd93f44e77a0489aa4e8379303502570.jpg", "file_size": 18675, "is_delete": false, "file_type": 1, "original_file_name": "FND2077FWE#妈妈装-大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd93f44e77a0489aa4e8379303502570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd93f44e77a0489aa4e8379303502570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd93f44e77a0489aa4e8379303502570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd93f44e77a0489aa4e8379303502570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd93f44e77a0489aa4e8379303502570.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxoHeGPt5QDRLZGo8RV5FmSlmw0=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.005634+00 2025-12-09 10:15:25.00564+00 14331 LZ132FWF#3号色短袖 SPMX-20240815309535 \N \N \N 1 \N [{"file_id": "c1d35f19-fcf9-4aae-8875-3bfeb990b502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "996722264de64205aa9da11d3dd2cb65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "996722264de64205aa9da11d3dd2cb65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "996722264de64205aa9da11d3dd2cb65.jpg", "file_size": 17149, "is_delete": false, "file_type": 1, "original_file_name": "LZ132FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996722264de64205aa9da11d3dd2cb65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996722264de64205aa9da11d3dd2cb65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996722264de64205aa9da11d3dd2cb65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/996722264de64205aa9da11d3dd2cb65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/996722264de64205aa9da11d3dd2cb65.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSUFXdu8Eo1V-DCh2SuoLhybf0A=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.007781+00 2025-12-09 10:15:25.007787+00 14332 HT6239FW#袖口40码 SPMX-20240815309533 \N \N \N 1 \N [{"file_id": "31d4eb95-8e75-4fb2-b6d1-f6f18d3eeb52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfddf8735b514a9f871f7b13fb5e99a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfddf8735b514a9f871f7b13fb5e99a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfddf8735b514a9f871f7b13fb5e99a5.jpg", "file_size": 7967, "is_delete": false, "file_type": 1, "original_file_name": "HT6239FW#袖口40码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfddf8735b514a9f871f7b13fb5e99a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfddf8735b514a9f871f7b13fb5e99a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfddf8735b514a9f871f7b13fb5e99a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfddf8735b514a9f871f7b13fb5e99a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfddf8735b514a9f871f7b13fb5e99a5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuTRZ4cRLPC5EhLP-IKU05awSCE=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.009894+00 2025-12-09 10:15:25.0099+00 14333 1198FWF#V5曲线 SPMX-20240815309536 \N \N \N 1 \N [{"file_id": "d09bef97-fafd-48df-89d8-e89d1bbdf9f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71dc8871946141619a05398bcd799a7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71dc8871946141619a05398bcd799a7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71dc8871946141619a05398bcd799a7e.jpg", "file_size": 19384, "is_delete": false, "file_type": 1, "original_file_name": "1198FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71dc8871946141619a05398bcd799a7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71dc8871946141619a05398bcd799a7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71dc8871946141619a05398bcd799a7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71dc8871946141619a05398bcd799a7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71dc8871946141619a05398bcd799a7e.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ja9lxz9TySYt0WqrImGnddWjjVs=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.01226+00 2025-12-09 10:15:25.012266+00 14334 23-2123#A6-领子4XL SPMX-20240815309528 \N \N \N 1 \N [{"file_id": "3c2080cd-2d53-4412-b286-7993e8a5e42b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e599b2d7fae40a4af0b42832c547850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e599b2d7fae40a4af0b42832c547850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e599b2d7fae40a4af0b42832c547850.jpg", "file_size": 13627, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e599b2d7fae40a4af0b42832c547850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e599b2d7fae40a4af0b42832c547850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e599b2d7fae40a4af0b42832c547850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e599b2d7fae40a4af0b42832c547850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e599b2d7fae40a4af0b42832c547850.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XAqP-LEXXB5MMVheC3V4dMguJvw=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.014631+00 2025-12-09 10:15:25.014637+00 14335 8381#2XL领子袖口 SPMX-20240815309526 \N \N \N 1 \N [{"file_id": "e6311baa-a08d-470b-a8fa-f11f66234847", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0fd2ce3db3546149d3a4001c54994f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0fd2ce3db3546149d3a4001c54994f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0fd2ce3db3546149d3a4001c54994f9.jpg", "file_size": 9765, "is_delete": false, "file_type": 1, "original_file_name": "8381#2XL领子袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd2ce3db3546149d3a4001c54994f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd2ce3db3546149d3a4001c54994f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fd2ce3db3546149d3a4001c54994f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0fd2ce3db3546149d3a4001c54994f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0fd2ce3db3546149d3a4001c54994f9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CfnW_ihn-PyKXuhgi0cXCv7v1Y0=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.016794+00 2025-12-09 10:15:25.0168+00 14336 LJH1744#袖子批布彩兰 SPMX-20240815309537 \N \N \N 1 \N [{"file_id": "7093c1bd-185c-4c7b-abcf-9dbdc1c8b8fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "378b01dcc5f94011b79177e8749f5731.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "378b01dcc5f94011b79177e8749f5731.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "378b01dcc5f94011b79177e8749f5731.jpg", "file_size": 54458, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#袖子批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378b01dcc5f94011b79177e8749f5731.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378b01dcc5f94011b79177e8749f5731.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/378b01dcc5f94011b79177e8749f5731.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/378b01dcc5f94011b79177e8749f5731.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/378b01dcc5f94011b79177e8749f5731.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZBbljYyCPWthkGCUcen-GGgzIs=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.018909+00 2025-12-09 10:15:25.018916+00 14337 FND2077FWE#妈妈装-天蓝 SPMX-20240815309539 \N \N \N 1 \N [{"file_id": "83d9949e-2ad7-4d46-9d11-e31c5a2dfd38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b212821e28ed40b78fa2b0d568232357.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b212821e28ed40b78fa2b0d568232357.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b212821e28ed40b78fa2b0d568232357.jpg", "file_size": 18824, "is_delete": false, "file_type": 1, "original_file_name": "FND2077FWE#妈妈装-天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b212821e28ed40b78fa2b0d568232357.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b212821e28ed40b78fa2b0d568232357.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b212821e28ed40b78fa2b0d568232357.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b212821e28ed40b78fa2b0d568232357.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b212821e28ed40b78fa2b0d568232357.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ClFTgiGD_3WREXKg21KcwCEhTSg=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.021004+00 2025-12-09 10:15:25.02101+00 14338 23-2123#A7-3XL SPMX-20240815309540 \N \N \N 1 \N [{"file_id": "7914d0ee-81c1-4765-9bd1-7a4c9cb70999", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76b57d3acff94688a54703231c3db500.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76b57d3acff94688a54703231c3db500.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76b57d3acff94688a54703231c3db500.jpg", "file_size": 16124, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b57d3acff94688a54703231c3db500.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b57d3acff94688a54703231c3db500.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b57d3acff94688a54703231c3db500.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76b57d3acff94688a54703231c3db500.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76b57d3acff94688a54703231c3db500.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQqL41l-YfeP-qGkxEdK01UixA0=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.023455+00 2025-12-09 10:15:25.023462+00 14339 8381#L领子袖口 SPMX-20240815309538 \N \N \N 1 \N [{"file_id": "e4d77dac-dc9b-4357-8033-2f12c178cf88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb5ebefe45c84d6c85a3823c8f90784c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb5ebefe45c84d6c85a3823c8f90784c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb5ebefe45c84d6c85a3823c8f90784c.jpg", "file_size": 9745, "is_delete": false, "file_type": 1, "original_file_name": "8381#L领子袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5ebefe45c84d6c85a3823c8f90784c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5ebefe45c84d6c85a3823c8f90784c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5ebefe45c84d6c85a3823c8f90784c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb5ebefe45c84d6c85a3823c8f90784c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb5ebefe45c84d6c85a3823c8f90784c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:apXWJruDAXjWty9LzeLUxir48U4=", "createTime": "2024-08-15 14:57:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.025814+00 2025-12-09 10:15:25.02582+00 14340 C938#白色XL SPMX-20240815309541 \N \N \N 1 \N [{"file_id": "eb6cb919-17ae-49c6-838a-54970a0364bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2e718e565d4443b9e23a3a77e6ab530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2e718e565d4443b9e23a3a77e6ab530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2e718e565d4443b9e23a3a77e6ab530.jpg", "file_size": 24983, "is_delete": false, "file_type": 1, "original_file_name": "C938#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e718e565d4443b9e23a3a77e6ab530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e718e565d4443b9e23a3a77e6ab530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2e718e565d4443b9e23a3a77e6ab530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2e718e565d4443b9e23a3a77e6ab530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2e718e565d4443b9e23a3a77e6ab530.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTA3h-xuq-1WFMmrEc6zDZHTgRI=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.02793+00 2025-12-09 10:15:25.027936+00 14341 JTSS534FW#VS-D3 SPMX-20240815309545 \N \N \N 1 \N [{"file_id": "cc4df46b-4a23-42b7-a0bc-bfe28dcedc88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7711b8ef42ed4398a6b0329fe49f5a82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7711b8ef42ed4398a6b0329fe49f5a82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7711b8ef42ed4398a6b0329fe49f5a82.jpg", "file_size": 10726, "is_delete": false, "file_type": 1, "original_file_name": "JTSS534FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7711b8ef42ed4398a6b0329fe49f5a82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7711b8ef42ed4398a6b0329fe49f5a82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7711b8ef42ed4398a6b0329fe49f5a82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7711b8ef42ed4398a6b0329fe49f5a82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7711b8ef42ed4398a6b0329fe49f5a82.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RbLTBlTBhvs1Y9UEI1dWmSZdMv8=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.048513+00 2025-12-09 10:15:25.048519+00 14350 8381#M领子袖口 SPMX-20240815309549 \N \N \N 1 \N [{"file_id": "d3978314-e5f8-4d89-90eb-c53c013974ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "228f4b2aa3234298adbda659dc5c8b27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "228f4b2aa3234298adbda659dc5c8b27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "228f4b2aa3234298adbda659dc5c8b27.jpg", "file_size": 10228, "is_delete": false, "file_type": 1, "original_file_name": "8381#M领子袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228f4b2aa3234298adbda659dc5c8b27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228f4b2aa3234298adbda659dc5c8b27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228f4b2aa3234298adbda659dc5c8b27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/228f4b2aa3234298adbda659dc5c8b27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/228f4b2aa3234298adbda659dc5c8b27.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HAa2YHJHf8AlJbcb6v4LIFLWYcM=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.030037+00 2025-12-09 10:15:25.030043+00 14342 LJH1744#袖子批布桔色 SPMX-20240815309550 \N \N \N 1 \N [{"file_id": "fb735870-64e7-48fe-ab47-9e6d860ba89f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdce92873b7f4621913d21a4a61786d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdce92873b7f4621913d21a4a61786d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdce92873b7f4621913d21a4a61786d1.jpg", "file_size": 52006, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#袖子批布桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce92873b7f4621913d21a4a61786d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce92873b7f4621913d21a4a61786d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdce92873b7f4621913d21a4a61786d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdce92873b7f4621913d21a4a61786d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdce92873b7f4621913d21a4a61786d1.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4cBoidgE0sNNgrC-kaZ_X6TCJkM=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.032445+00 2025-12-09 10:15:25.032451+00 14343 FND2077FWE#妈妈装-橙色 SPMX-20240815309547 \N \N \N 1 \N [{"file_id": "a7e5a7bc-0449-4c4d-bbdc-22e2e964106b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1de7e38d91d448c38534a7eaa289d261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1de7e38d91d448c38534a7eaa289d261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1de7e38d91d448c38534a7eaa289d261.jpg", "file_size": 18299, "is_delete": false, "file_type": 1, "original_file_name": "FND2077FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7e38d91d448c38534a7eaa289d261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7e38d91d448c38534a7eaa289d261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7e38d91d448c38534a7eaa289d261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1de7e38d91d448c38534a7eaa289d261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1de7e38d91d448c38534a7eaa289d261.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cktd7R8Oj7M4Y9gJXlHz1e247zg=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.034689+00 2025-12-09 10:15:25.034694+00 14344 DL31134#下摆批布8#亮黄 SPMX-20240815309543 \N \N \N 1 \N [{"file_id": "ff76a94b-0274-4924-835f-bc24fceb1eac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41bcc7947b704b1eaf616724461261e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41bcc7947b704b1eaf616724461261e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41bcc7947b704b1eaf616724461261e0.jpg", "file_size": 14924, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布8#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bcc7947b704b1eaf616724461261e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bcc7947b704b1eaf616724461261e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bcc7947b704b1eaf616724461261e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41bcc7947b704b1eaf616724461261e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41bcc7947b704b1eaf616724461261e0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g93wAXH5m67Xqnb1Lfl1q7MptFQ=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.037036+00 2025-12-09 10:15:25.037041+00 14345 1199FWE#VS-D3 SPMX-20240815309548 \N \N \N 1 \N [{"file_id": "c04e3a5c-f43b-4c4c-90bf-a66af3c603f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4350398659b64343980158c6a964cf43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4350398659b64343980158c6a964cf43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4350398659b64343980158c6a964cf43.jpg", "file_size": 16366, "is_delete": false, "file_type": 1, "original_file_name": "1199FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350398659b64343980158c6a964cf43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350398659b64343980158c6a964cf43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4350398659b64343980158c6a964cf43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4350398659b64343980158c6a964cf43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4350398659b64343980158c6a964cf43.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CR_3Pz4zv5UEbdDU98QrvsOuR0Q=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.039155+00 2025-12-09 10:15:25.03916+00 14346 0006-17FWF#番禺调色 SPMX-20240815309542 \N \N \N 1 \N [{"file_id": "3be769c8-a1b3-4fad-8b36-5ede6c7ee841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e464a5f4091c464f8aef1e9998dc35f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e464a5f4091c464f8aef1e9998dc35f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e464a5f4091c464f8aef1e9998dc35f5.jpg", "file_size": 20341, "is_delete": false, "file_type": 1, "original_file_name": "0006-17FWF#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e464a5f4091c464f8aef1e9998dc35f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e464a5f4091c464f8aef1e9998dc35f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e464a5f4091c464f8aef1e9998dc35f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e464a5f4091c464f8aef1e9998dc35f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e464a5f4091c464f8aef1e9998dc35f5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sSJSUEynCCBtC-GX1KY4Py_2p6g=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.041602+00 2025-12-09 10:15:25.041607+00 14347 HT6239FW#袖口42码 SPMX-20240815309544 \N \N \N 1 \N [{"file_id": "3b91dbb6-3fe6-4288-ac12-f437cafdb3f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c876cbd1ead446e18e23d83cd454c830.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c876cbd1ead446e18e23d83cd454c830.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c876cbd1ead446e18e23d83cd454c830.jpg", "file_size": 7869, "is_delete": false, "file_type": 1, "original_file_name": "HT6239FW#袖口42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876cbd1ead446e18e23d83cd454c830.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876cbd1ead446e18e23d83cd454c830.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c876cbd1ead446e18e23d83cd454c830.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c876cbd1ead446e18e23d83cd454c830.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c876cbd1ead446e18e23d83cd454c830.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zYiOTlzVJSy-Pq0Q7gWAZNiWfw=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.043992+00 2025-12-09 10:15:25.043997+00 14348 LZ132FWF#4号色短袖 SPMX-20240815309546 \N \N \N 1 \N [{"file_id": "5614a640-40c9-4e22-a78f-cb645448ff98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ed1927cd3a04617a19fd17bd9cfe3f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ed1927cd3a04617a19fd17bd9cfe3f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ed1927cd3a04617a19fd17bd9cfe3f5.jpg", "file_size": 18075, "is_delete": false, "file_type": 1, "original_file_name": "LZ132FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed1927cd3a04617a19fd17bd9cfe3f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed1927cd3a04617a19fd17bd9cfe3f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed1927cd3a04617a19fd17bd9cfe3f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ed1927cd3a04617a19fd17bd9cfe3f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ed1927cd3a04617a19fd17bd9cfe3f5.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nrOW08WrhrP9VmUsQ6ke0-JKgsA=", "createTime": "2024-08-15 14:57:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.046122+00 2025-12-09 10:15:25.046128+00 14349 23-2123#A7-4XL SPMX-20240815309551 \N \N \N 1 \N [{"file_id": "f1dc21c9-d139-4787-bc9e-faaafef72269", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9e0499db2794214ba0759e947cb68f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9e0499db2794214ba0759e947cb68f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9e0499db2794214ba0759e947cb68f8.jpg", "file_size": 14735, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e0499db2794214ba0759e947cb68f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e0499db2794214ba0759e947cb68f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9e0499db2794214ba0759e947cb68f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9e0499db2794214ba0759e947cb68f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9e0499db2794214ba0759e947cb68f8.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTzORrOez8BinCLyZIIDSwNTMwY=", "createTime": "2024-08-15 14:57:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.050854+00 2025-12-09 10:15:25.05086+00 14351 LZ132FWF#5号色短袖 SPMX-20240815309557 \N \N \N 1 \N [{"file_id": "dcb7fbf8-fc87-41ce-bd2b-4348f6babf73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d42e2613958f46208c84e407dc195dc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d42e2613958f46208c84e407dc195dc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d42e2613958f46208c84e407dc195dc9.jpg", "file_size": 16997, "is_delete": false, "file_type": 1, "original_file_name": "LZ132FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42e2613958f46208c84e407dc195dc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42e2613958f46208c84e407dc195dc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42e2613958f46208c84e407dc195dc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d42e2613958f46208c84e407dc195dc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d42e2613958f46208c84e407dc195dc9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_T2G0B26FF0x-UETSKNDWDHKIk=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.053001+00 2025-12-09 10:15:25.053006+00 14352 23-2123#A7-领子3XL SPMX-20240815309561 \N \N \N 1 \N [{"file_id": "45e5d9af-7a95-44fb-8395-ecd0d6ce4137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceb5f2af3d5440f79fc68dfd29cb3523.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceb5f2af3d5440f79fc68dfd29cb3523.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceb5f2af3d5440f79fc68dfd29cb3523.jpg", "file_size": 13297, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb5f2af3d5440f79fc68dfd29cb3523.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb5f2af3d5440f79fc68dfd29cb3523.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceb5f2af3d5440f79fc68dfd29cb3523.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceb5f2af3d5440f79fc68dfd29cb3523.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceb5f2af3d5440f79fc68dfd29cb3523.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYW-HibH_e3PWhHq4Z0nRZuaHsg=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.055111+00 2025-12-09 10:15:25.055117+00 14353 LJH1744#袖子批布红色 SPMX-20240815309562 \N \N \N 1 \N [{"file_id": "c3700e46-90d0-4279-b79b-f92d0501081e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82ef7ac0f49b4fe6963ae5c74dd79e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82ef7ac0f49b4fe6963ae5c74dd79e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82ef7ac0f49b4fe6963ae5c74dd79e86.jpg", "file_size": 53891, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#袖子批布红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ef7ac0f49b4fe6963ae5c74dd79e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ef7ac0f49b4fe6963ae5c74dd79e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82ef7ac0f49b4fe6963ae5c74dd79e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82ef7ac0f49b4fe6963ae5c74dd79e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82ef7ac0f49b4fe6963ae5c74dd79e86.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6GRdHSZwlVojEoH0DJHWQFaKDVk=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.057254+00 2025-12-09 10:15:25.05726+00 14354 HT6239FW#袖口44码 SPMX-20240815309552 \N \N \N 1 \N [{"file_id": "3cb1cf59-823c-42d3-a987-773a70212ab1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8711720e21d14b37a68047c7e1454cff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8711720e21d14b37a68047c7e1454cff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8711720e21d14b37a68047c7e1454cff.jpg", "file_size": 7811, "is_delete": false, "file_type": 1, "original_file_name": "HT6239FW#袖口44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8711720e21d14b37a68047c7e1454cff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8711720e21d14b37a68047c7e1454cff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8711720e21d14b37a68047c7e1454cff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8711720e21d14b37a68047c7e1454cff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8711720e21d14b37a68047c7e1454cff.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8OoUR-0xkW5zrOISDJi3397H6E=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.059625+00 2025-12-09 10:15:25.05963+00 14355 DL31134#下摆批布9#枣红 SPMX-20240815309556 \N \N \N 1 \N [{"file_id": "2bc7fd15-36da-492a-abc8-effc760d3cfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "297b1f2a4fab4b3c95d5398960192e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "297b1f2a4fab4b3c95d5398960192e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "297b1f2a4fab4b3c95d5398960192e0c.jpg", "file_size": 15171, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#下摆批布9#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297b1f2a4fab4b3c95d5398960192e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297b1f2a4fab4b3c95d5398960192e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/297b1f2a4fab4b3c95d5398960192e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/297b1f2a4fab4b3c95d5398960192e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/297b1f2a4fab4b3c95d5398960192e0c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0PeTyahBigmidmlmEO59jh24lc=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.061901+00 2025-12-09 10:15:25.061906+00 14356 8381#S领子袖口 SPMX-20240815309560 \N \N \N 1 \N [{"file_id": "fa5edaa1-4136-4100-87d8-0fb233ce84ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d596eda893014fb9987d966948affb2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d596eda893014fb9987d966948affb2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d596eda893014fb9987d966948affb2a.jpg", "file_size": 10034, "is_delete": false, "file_type": 1, "original_file_name": "8381#S领子袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d596eda893014fb9987d966948affb2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d596eda893014fb9987d966948affb2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d596eda893014fb9987d966948affb2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d596eda893014fb9987d966948affb2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d596eda893014fb9987d966948affb2a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1aNMmZHXj6QunbIFNxur6sCaNA=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.064177+00 2025-12-09 10:15:25.064183+00 14357 1199FWF#V5曲线-番禺A37 SPMX-20240815309559 \N \N \N 1 \N [{"file_id": "67310c8f-0f30-45cf-a41b-c32927ce55ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7581ce3d15a4811b7bb2bfac89e3661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7581ce3d15a4811b7bb2bfac89e3661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7581ce3d15a4811b7bb2bfac89e3661.jpg", "file_size": 13999, "is_delete": false, "file_type": 1, "original_file_name": "1199FWF#V5曲线-番禺A37.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7581ce3d15a4811b7bb2bfac89e3661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7581ce3d15a4811b7bb2bfac89e3661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7581ce3d15a4811b7bb2bfac89e3661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7581ce3d15a4811b7bb2bfac89e3661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7581ce3d15a4811b7bb2bfac89e3661.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fcw48myH-bqYwJQ6BPmtbgR0PfM=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.066268+00 2025-12-09 10:15:25.066273+00 14358 0006-18FWE#VS-D3 SPMX-20240815309553 \N \N \N 1 \N [{"file_id": "7743f1f0-cbe1-4da8-9e3b-83c00ffb6503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70380a2811e54dd39c1eb1e798e32bfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70380a2811e54dd39c1eb1e798e32bfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70380a2811e54dd39c1eb1e798e32bfe.jpg", "file_size": 27408, "is_delete": false, "file_type": 1, "original_file_name": "0006-18FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70380a2811e54dd39c1eb1e798e32bfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70380a2811e54dd39c1eb1e798e32bfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70380a2811e54dd39c1eb1e798e32bfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70380a2811e54dd39c1eb1e798e32bfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70380a2811e54dd39c1eb1e798e32bfe.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqgVHBdrXducQF5Lrogvz6M5U5o=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.068697+00 2025-12-09 10:15:25.068706+00 14359 C938#白色领袖补数XL SPMX-20240815309554 \N \N \N 1 \N [{"file_id": "81e04751-471e-4ed3-9e77-e14cd26d6255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60ec773ae5ed4916af6c5fed4bf5b0c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60ec773ae5ed4916af6c5fed4bf5b0c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60ec773ae5ed4916af6c5fed4bf5b0c0.jpg", "file_size": 14701, "is_delete": false, "file_type": 1, "original_file_name": "C938#白色领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ec773ae5ed4916af6c5fed4bf5b0c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ec773ae5ed4916af6c5fed4bf5b0c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ec773ae5ed4916af6c5fed4bf5b0c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60ec773ae5ed4916af6c5fed4bf5b0c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60ec773ae5ed4916af6c5fed4bf5b0c0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zzd-4irqMHfAnoJBuzGqma28aOQ=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.071066+00 2025-12-09 10:15:25.071072+00 14360 JTSS535FW#VS-D3 SPMX-20240815309555 \N \N \N 1 \N [{"file_id": "a652ac3a-88c8-4428-a106-0e4e23038110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c833ec2b1b804d60b205c82f9b582f9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c833ec2b1b804d60b205c82f9b582f9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c833ec2b1b804d60b205c82f9b582f9b.jpg", "file_size": 7249, "is_delete": false, "file_type": 1, "original_file_name": "JTSS535FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c833ec2b1b804d60b205c82f9b582f9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c833ec2b1b804d60b205c82f9b582f9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c833ec2b1b804d60b205c82f9b582f9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c833ec2b1b804d60b205c82f9b582f9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c833ec2b1b804d60b205c82f9b582f9b.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ky6flevPWeWHOdAxXrmr9f2O5m4=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.073226+00 2025-12-09 10:15:25.073233+00 14361 HT6239FW#袖口46码 SPMX-20240815309563 \N \N \N 1 \N [{"file_id": "246099b4-a260-4a93-89a7-1091ae123cae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b3490359ca54990b3987b81f93af5dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b3490359ca54990b3987b81f93af5dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b3490359ca54990b3987b81f93af5dd.jpg", "file_size": 7584, "is_delete": false, "file_type": 1, "original_file_name": "HT6239FW#袖口46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3490359ca54990b3987b81f93af5dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3490359ca54990b3987b81f93af5dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3490359ca54990b3987b81f93af5dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b3490359ca54990b3987b81f93af5dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b3490359ca54990b3987b81f93af5dd.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrLwlqzmzIWR0YbdCDJNyYp10hs=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.075306+00 2025-12-09 10:15:25.075312+00 14362 FND2077FWE#妈妈装-绿色 SPMX-20240815309558 \N \N \N 1 \N [{"file_id": "d384e5d6-1d97-41ab-92ea-0005212de3af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bff26b215a0249d08c89b5182bf9b8e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bff26b215a0249d08c89b5182bf9b8e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bff26b215a0249d08c89b5182bf9b8e6.jpg", "file_size": 18606, "is_delete": false, "file_type": 1, "original_file_name": "FND2077FWE#妈妈装-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff26b215a0249d08c89b5182bf9b8e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff26b215a0249d08c89b5182bf9b8e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff26b215a0249d08c89b5182bf9b8e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bff26b215a0249d08c89b5182bf9b8e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bff26b215a0249d08c89b5182bf9b8e6.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MttTjwZehb2Zr7FhPqqd40oyM6A=", "createTime": "2024-08-15 14:57:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.077421+00 2025-12-09 10:15:25.077427+00 14363 FND2209FWE#妈妈装-橙色 SPMX-20240815309569 \N \N \N 1 \N [{"file_id": "a7d24f3b-eda4-428a-bfa0-98582968324e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf86986bfd2d4a1c83267ec706ba63c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf86986bfd2d4a1c83267ec706ba63c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf86986bfd2d4a1c83267ec706ba63c4.jpg", "file_size": 28530, "is_delete": false, "file_type": 1, "original_file_name": "FND2209FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf86986bfd2d4a1c83267ec706ba63c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf86986bfd2d4a1c83267ec706ba63c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf86986bfd2d4a1c83267ec706ba63c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf86986bfd2d4a1c83267ec706ba63c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf86986bfd2d4a1c83267ec706ba63c4.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ebh9I3L1yugs5JHPHngPnhuF51o=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.079796+00 2025-12-09 10:15:25.079802+00 14364 23-2123#A7-领子4XL SPMX-20240815309571 \N \N \N 1 \N [{"file_id": "6e08cebc-6273-4ee2-ad41-61158e4053a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd832db24222441785a3d5e39d226267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd832db24222441785a3d5e39d226267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd832db24222441785a3d5e39d226267.jpg", "file_size": 13071, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd832db24222441785a3d5e39d226267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd832db24222441785a3d5e39d226267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd832db24222441785a3d5e39d226267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd832db24222441785a3d5e39d226267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd832db24222441785a3d5e39d226267.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wl1bjqelkrVAfyl5gbGYvWlr-xE=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.082136+00 2025-12-09 10:15:25.082142+00 14365 0006-18FWF#V5曲线 SPMX-20240815309565 \N \N \N 1 \N [{"file_id": "50181e01-b920-4118-9f2b-b6c674e0d20b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0559e97cce7649f9ad9e87046fb2e6a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0559e97cce7649f9ad9e87046fb2e6a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0559e97cce7649f9ad9e87046fb2e6a0.jpg", "file_size": 21613, "is_delete": false, "file_type": 1, "original_file_name": "0006-18FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0559e97cce7649f9ad9e87046fb2e6a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0559e97cce7649f9ad9e87046fb2e6a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0559e97cce7649f9ad9e87046fb2e6a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0559e97cce7649f9ad9e87046fb2e6a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0559e97cce7649f9ad9e87046fb2e6a0.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCtq1_QADIqbiFGERoew4g7Akq4=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.084264+00 2025-12-09 10:15:25.084271+00 14366 8381#XL领子袖口 SPMX-20240815309570 \N \N \N 1 \N [{"file_id": "f6b6816c-c71f-4146-912f-e84570451b67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "454948848832400a85dd61ad7c8900f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "454948848832400a85dd61ad7c8900f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "454948848832400a85dd61ad7c8900f9.jpg", "file_size": 10091, "is_delete": false, "file_type": 1, "original_file_name": "8381#XL领子袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454948848832400a85dd61ad7c8900f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454948848832400a85dd61ad7c8900f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454948848832400a85dd61ad7c8900f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/454948848832400a85dd61ad7c8900f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/454948848832400a85dd61ad7c8900f9.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtXo0reiEpr0JW30TVTdhuJw-ag=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.086356+00 2025-12-09 10:15:25.086362+00 14367 JTSS537FW#VS-D3 SPMX-20240815309575 \N \N \N 1 \N [{"file_id": "e3310c61-71c9-4314-adfe-ee1dfc9cc051", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1e994f2e544effa09a3cb043031d52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1e994f2e544effa09a3cb043031d52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1e994f2e544effa09a3cb043031d52.jpg", "file_size": 21585, "is_delete": false, "file_type": 1, "original_file_name": "JTSS537FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1e994f2e544effa09a3cb043031d52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1e994f2e544effa09a3cb043031d52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1e994f2e544effa09a3cb043031d52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1e994f2e544effa09a3cb043031d52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1e994f2e544effa09a3cb043031d52.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kW2a8ivYlKUKPaUaGyEdypHxEc=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.088491+00 2025-12-09 10:15:25.088497+00 14368 DL31134#前幅29#蓝绿 SPMX-20240815309576 \N \N \N 1 \N [{"file_id": "7c3ff4f8-c300-4cb4-bded-ad5d3576a413", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240f572fe6b94667972c289839db933a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240f572fe6b94667972c289839db933a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240f572fe6b94667972c289839db933a.jpg", "file_size": 13794, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#前幅29#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240f572fe6b94667972c289839db933a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240f572fe6b94667972c289839db933a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240f572fe6b94667972c289839db933a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240f572fe6b94667972c289839db933a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240f572fe6b94667972c289839db933a.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9YodjrPx-2wWRatKCtF8akO82W0=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.091021+00 2025-12-09 10:15:25.091027+00 14369 JTSS536FW#VS-D3 SPMX-20240815309564 \N \N \N 1 \N [{"file_id": "4a29fb7d-1b88-4c2c-a272-0d9dac8ae382", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c34a831d8951443fbfaaed7ddf8f90ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c34a831d8951443fbfaaed7ddf8f90ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c34a831d8951443fbfaaed7ddf8f90ed.jpg", "file_size": 9923, "is_delete": false, "file_type": 1, "original_file_name": "JTSS536FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34a831d8951443fbfaaed7ddf8f90ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34a831d8951443fbfaaed7ddf8f90ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c34a831d8951443fbfaaed7ddf8f90ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c34a831d8951443fbfaaed7ddf8f90ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c34a831d8951443fbfaaed7ddf8f90ed.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udBU0bC5P9nnlOuqSDS958hwSdk=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.093426+00 2025-12-09 10:15:25.093432+00 14370 DL31134#前幅23#浅粉 SPMX-20240815309566 \N \N \N 1 \N [{"file_id": "da87c26d-4b48-40b6-ace7-ba8eddcd6cfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg", "file_size": 12519, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#前幅23#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e9640d3249a7b7c4ecbe0ab1f419.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNJNJd5YMXX6xmCzv2GDt_KReIQ=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.095546+00 2025-12-09 10:15:25.095551+00 14371 LJH1744#袖子批布黑色 SPMX-20240815309573 \N \N \N 1 \N [{"file_id": "26de45fe-e79a-4ee5-ad2f-09824ec7e3fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67877a8ce2a04878a50023969d443d60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67877a8ce2a04878a50023969d443d60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67877a8ce2a04878a50023969d443d60.jpg", "file_size": 51450, "is_delete": false, "file_type": 1, "original_file_name": "LJH1744#袖子批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67877a8ce2a04878a50023969d443d60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67877a8ce2a04878a50023969d443d60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67877a8ce2a04878a50023969d443d60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67877a8ce2a04878a50023969d443d60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67877a8ce2a04878a50023969d443d60.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifIby1YRW5up_icdYqTc82gFWz8=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.097902+00 2025-12-09 10:15:25.097907+00 14372 C938#红色L SPMX-20240815309567 \N \N \N 1 \N [{"file_id": "13c5d77d-413d-4e8f-b0a7-cd2770ac6a77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d8bb96edb164f489e089fb119650e28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d8bb96edb164f489e089fb119650e28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d8bb96edb164f489e089fb119650e28.jpg", "file_size": 24456, "is_delete": false, "file_type": 1, "original_file_name": "C938#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8bb96edb164f489e089fb119650e28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8bb96edb164f489e089fb119650e28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d8bb96edb164f489e089fb119650e28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d8bb96edb164f489e089fb119650e28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d8bb96edb164f489e089fb119650e28.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-A9suIcTapNWc6yKG2nyBRyQWs=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.100329+00 2025-12-09 10:15:25.100338+00 14373 LZ133 SPMX-20240815309568 \N \N \N 1 \N [{"file_id": "21e4bb59-44ef-476e-acbf-05512205deb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg", "file_size": 20923, "is_delete": false, "file_type": 1, "original_file_name": "LZ133.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ceb7edd804c4ba6a0d31e1bb4da0e80.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LDj7rYn4I8PDNgofn1MeocY5pqM=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.102866+00 2025-12-09 10:15:25.102871+00 14374 1199FWF#V5曲线 SPMX-20240815309572 \N \N \N 1 \N [{"file_id": "cea0ba12-0795-40e7-9f67-d0c2b01f3f42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cbe0b0d8f704be7a35215afbd0372ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cbe0b0d8f704be7a35215afbd0372ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cbe0b0d8f704be7a35215afbd0372ca.jpg", "file_size": 15704, "is_delete": false, "file_type": 1, "original_file_name": "1199FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbe0b0d8f704be7a35215afbd0372ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbe0b0d8f704be7a35215afbd0372ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbe0b0d8f704be7a35215afbd0372ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cbe0b0d8f704be7a35215afbd0372ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cbe0b0d8f704be7a35215afbd0372ca.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hcWULR5dpjF57tFJxECXlBV-NX4=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.105607+00 2025-12-09 10:15:25.105613+00 14375 HT6258FW#38码 SPMX-20240815309574 \N \N \N 1 \N [{"file_id": "9707f7b2-50cb-4cc2-aa57-cc32982c6227", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "713da60418b64d459fab1e6e8291cabd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "713da60418b64d459fab1e6e8291cabd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "713da60418b64d459fab1e6e8291cabd.jpg", "file_size": 21156, "is_delete": false, "file_type": 1, "original_file_name": "HT6258FW#38码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713da60418b64d459fab1e6e8291cabd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713da60418b64d459fab1e6e8291cabd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/713da60418b64d459fab1e6e8291cabd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/713da60418b64d459fab1e6e8291cabd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/713da60418b64d459fab1e6e8291cabd.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dxlagnOF5MroDSz7Y0lC1X2Yro=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.108198+00 2025-12-09 10:15:25.108204+00 14376 0006-19FWE#VS-D3 SPMX-20240815309577 \N \N \N 1 \N [{"file_id": "0649642f-535b-4b24-a9f9-69bfb3ebf752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70e8a5b8dd874050a3bcda36aa0c5abc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70e8a5b8dd874050a3bcda36aa0c5abc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70e8a5b8dd874050a3bcda36aa0c5abc.jpg", "file_size": 19135, "is_delete": false, "file_type": 1, "original_file_name": "0006-19FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a5b8dd874050a3bcda36aa0c5abc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a5b8dd874050a3bcda36aa0c5abc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70e8a5b8dd874050a3bcda36aa0c5abc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70e8a5b8dd874050a3bcda36aa0c5abc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70e8a5b8dd874050a3bcda36aa0c5abc.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whzP7gCreAhPSz4fqVCJfQsAeiQ=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.110593+00 2025-12-09 10:15:25.110598+00 14377 LZ1330#捆条布 SPMX-20240815309579 \N \N \N 1 \N [{"file_id": "86e9c99c-d8c0-43f5-9804-d54ab5c9e524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e57a21ac744328813a0f08cf39096c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e57a21ac744328813a0f08cf39096c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e57a21ac744328813a0f08cf39096c.jpg", "file_size": 14777, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e57a21ac744328813a0f08cf39096c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e57a21ac744328813a0f08cf39096c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e57a21ac744328813a0f08cf39096c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e57a21ac744328813a0f08cf39096c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e57a21ac744328813a0f08cf39096c.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgKQZqQu2Xau8Y5fG_onRQDLeDI=", "createTime": "2024-08-15 14:57:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.113572+00 2025-12-09 10:15:25.113578+00 14378 FND2209FWE#妈妈装-绿色 SPMX-20240815309578 \N \N \N 1 \N [{"file_id": "f753a1ca-dd4a-4c62-8a88-0cbb1710d791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c96148eb45d14f3b9a949af27c10d584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c96148eb45d14f3b9a949af27c10d584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c96148eb45d14f3b9a949af27c10d584.jpg", "file_size": 30728, "is_delete": false, "file_type": 1, "original_file_name": "FND2209FWE#妈妈装-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96148eb45d14f3b9a949af27c10d584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96148eb45d14f3b9a949af27c10d584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c96148eb45d14f3b9a949af27c10d584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c96148eb45d14f3b9a949af27c10d584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c96148eb45d14f3b9a949af27c10d584.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-NLbAvEX8mrhrP4hKWFbbBJ9Uk=", "createTime": "2024-08-15 14:57:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.115764+00 2025-12-09 10:15:25.11577+00 14379 C938#红色XL SPMX-20240815309580 \N \N \N 1 \N [{"file_id": "299968e7-ffd9-40f9-98ff-58f6a5dbbfc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7d17cc9f6b74623b54aa41b7cc71d5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7d17cc9f6b74623b54aa41b7cc71d5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7d17cc9f6b74623b54aa41b7cc71d5f.jpg", "file_size": 24768, "is_delete": false, "file_type": 1, "original_file_name": "C938#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7d17cc9f6b74623b54aa41b7cc71d5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7d17cc9f6b74623b54aa41b7cc71d5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7d17cc9f6b74623b54aa41b7cc71d5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7d17cc9f6b74623b54aa41b7cc71d5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7d17cc9f6b74623b54aa41b7cc71d5f.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yG5TC-nNVxGPbMMy4cK7u5JhIr4=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.118156+00 2025-12-09 10:15:25.118161+00 14380 8381#匹布 SPMX-20240815309582 \N \N \N 1 \N [{"file_id": "331bc21b-207d-44d6-8b65-23289a2cef7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06a0377b6ef9495fa98231d9f7ea62d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06a0377b6ef9495fa98231d9f7ea62d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06a0377b6ef9495fa98231d9f7ea62d7.jpg", "file_size": 11969, "is_delete": false, "file_type": 1, "original_file_name": "8381#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0377b6ef9495fa98231d9f7ea62d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0377b6ef9495fa98231d9f7ea62d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06a0377b6ef9495fa98231d9f7ea62d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06a0377b6ef9495fa98231d9f7ea62d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06a0377b6ef9495fa98231d9f7ea62d7.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yqyiwo0zL7kdvaUQR8Rxg6gSLKc=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.120553+00 2025-12-09 10:15:25.120559+00 14381 LJH1769#天兰 SPMX-20240815309581 \N \N \N 1 \N [{"file_id": "92e1b12f-3580-46e2-83b5-8873d6893ffe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beed22c861494ead91a08d018b335a2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beed22c861494ead91a08d018b335a2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beed22c861494ead91a08d018b335a2d.jpg", "file_size": 41602, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beed22c861494ead91a08d018b335a2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beed22c861494ead91a08d018b335a2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beed22c861494ead91a08d018b335a2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beed22c861494ead91a08d018b335a2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beed22c861494ead91a08d018b335a2d.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnroEwG_BzyLCmEOdNMlM4G-2vA=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.122674+00 2025-12-09 10:15:25.12268+00 14382 23-2123#A8-3XL SPMX-20240815309583 \N \N \N 1 \N [{"file_id": "f862c146-b1eb-43aa-9c4c-a69940c1906d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c88e00f1ff4454c8f8289f0720d8932.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c88e00f1ff4454c8f8289f0720d8932.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c88e00f1ff4454c8f8289f0720d8932.jpg", "file_size": 23865, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c88e00f1ff4454c8f8289f0720d8932.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c88e00f1ff4454c8f8289f0720d8932.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c88e00f1ff4454c8f8289f0720d8932.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c88e00f1ff4454c8f8289f0720d8932.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c88e00f1ff4454c8f8289f0720d8932.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EFTJAidliEBgr4OoynHBqlSGKM=", "createTime": "2024-08-15 14:57:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.127499+00 2025-12-09 10:15:25.127505+00 14384 0006-19FWF#V5曲线 SPMX-20240815309590 \N \N \N 1 \N [{"file_id": "a687913e-2c31-4b69-8522-906f33b2d21e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dfeb9e46b4942b4a27357e77cbf9934.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dfeb9e46b4942b4a27357e77cbf9934.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dfeb9e46b4942b4a27357e77cbf9934.jpg", "file_size": 16952, "is_delete": false, "file_type": 1, "original_file_name": "0006-19FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb9e46b4942b4a27357e77cbf9934.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb9e46b4942b4a27357e77cbf9934.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb9e46b4942b4a27357e77cbf9934.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb9e46b4942b4a27357e77cbf9934.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb9e46b4942b4a27357e77cbf9934.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6B5RrWkKoQjzkW0mC6xVGBzQD8=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.129637+00 2025-12-09 10:15:25.129643+00 14385 LZ1330#背心款1号色 SPMX-20240815309589 \N \N \N 1 \N [{"file_id": "9db1057b-55d2-4745-8224-44cfff8158ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b8215736584f9bbd61210c379c6462.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b8215736584f9bbd61210c379c6462.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b8215736584f9bbd61210c379c6462.jpg", "file_size": 18271, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b8215736584f9bbd61210c379c6462.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b8215736584f9bbd61210c379c6462.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b8215736584f9bbd61210c379c6462.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b8215736584f9bbd61210c379c6462.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b8215736584f9bbd61210c379c6462.jpg?e=1765361724&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMSEhihoaq00MTFzGcQO-JqPwhs=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.125124+00 2025-12-09 10:15:25.125131+00 14383 FND2209FWE#妈妈装-金黄 SPMX-20240815309588 \N \N \N 1 \N [{"file_id": "47a935a9-dd23-4399-a852-dc8b3c22dd92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d694f3a976dc46b3a671574e7beb3b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d694f3a976dc46b3a671574e7beb3b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d694f3a976dc46b3a671574e7beb3b6e.jpg", "file_size": 31978, "is_delete": false, "file_type": 1, "original_file_name": "FND2209FWE#妈妈装-金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694f3a976dc46b3a671574e7beb3b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694f3a976dc46b3a671574e7beb3b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d694f3a976dc46b3a671574e7beb3b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d694f3a976dc46b3a671574e7beb3b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d694f3a976dc46b3a671574e7beb3b6e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:11fmRfkl3iprkU9QYoS-dyMFmq8=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.74732+00 2025-12-09 10:15:25.74733+00 14386 1199SK#VS-D3 SPMX-20240815309585 \N \N \N 1 \N [{"file_id": "38cd8bb9-d5ff-4f15-9cf7-63843c586c2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bfacede98ea4a1181ebaaad1021759b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bfacede98ea4a1181ebaaad1021759b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bfacede98ea4a1181ebaaad1021759b.jpg", "file_size": 16002, "is_delete": false, "file_type": 1, "original_file_name": "1199SK#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfacede98ea4a1181ebaaad1021759b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfacede98ea4a1181ebaaad1021759b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bfacede98ea4a1181ebaaad1021759b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bfacede98ea4a1181ebaaad1021759b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bfacede98ea4a1181ebaaad1021759b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76Zlc2CNHi5cN8qX7TSSm0UK3Es=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.510624+00 2025-12-09 10:15:37.51063+00 16804 LZ1360#1号色 SPMX-20240815312020 \N \N \N 1 \N [{"file_id": "8781c194-5b4c-4871-ad47-b69e498f6a8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f3a81cc027c45799e420d0db73b9d35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f3a81cc027c45799e420d0db73b9d35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f3a81cc027c45799e420d0db73b9d35.jpg", "file_size": 14112, "is_delete": false, "file_type": 1, "original_file_name": "LZ1360#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3a81cc027c45799e420d0db73b9d35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3a81cc027c45799e420d0db73b9d35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f3a81cc027c45799e420d0db73b9d35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f3a81cc027c45799e420d0db73b9d35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f3a81cc027c45799e420d0db73b9d35.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8pEmceq4hV8jaBGJ9naW-tgMrk=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.753508+00 2025-12-09 10:15:25.753515+00 14387 JTSS538FW#VS-D3 SPMX-20240815309586 \N \N \N 1 \N [{"file_id": "afc8c3f0-20e8-4667-a76a-135f7b142902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d100153ec6e40d8ae9e312b23ecdb41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d100153ec6e40d8ae9e312b23ecdb41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d100153ec6e40d8ae9e312b23ecdb41.jpg", "file_size": 11764, "is_delete": false, "file_type": 1, "original_file_name": "JTSS538FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d100153ec6e40d8ae9e312b23ecdb41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d100153ec6e40d8ae9e312b23ecdb41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d100153ec6e40d8ae9e312b23ecdb41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d100153ec6e40d8ae9e312b23ecdb41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d100153ec6e40d8ae9e312b23ecdb41.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_bzsznQVRbbbZ6-LnLGLBMxcHs=", "createTime": "2024-08-15 14:57:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.756349+00 2025-12-09 10:15:25.756355+00 14388 23-2123#A8-领子3XL SPMX-20240815309602 \N \N \N 1 \N [{"file_id": "5cbee4fe-5a81-4e9d-b8d9-2dbad2378740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3177c979e559411d8e7b479dc08cc44b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3177c979e559411d8e7b479dc08cc44b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3177c979e559411d8e7b479dc08cc44b.jpg", "file_size": 16698, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3177c979e559411d8e7b479dc08cc44b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3177c979e559411d8e7b479dc08cc44b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3177c979e559411d8e7b479dc08cc44b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3177c979e559411d8e7b479dc08cc44b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3177c979e559411d8e7b479dc08cc44b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tN24v5gcYF7IGX8A9efhcNq4k4A=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.759177+00 2025-12-09 10:15:25.759182+00 14389 0006-1FWE#VS-D3 SPMX-20240815309601 \N \N \N 1 \N [{"file_id": "5ac3d031-b3d7-4c06-81fe-744534e959ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cfb0c89a0ec458da361b4be9ab7d2a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cfb0c89a0ec458da361b4be9ab7d2a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cfb0c89a0ec458da361b4be9ab7d2a0.jpg", "file_size": 14427, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfb0c89a0ec458da361b4be9ab7d2a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfb0c89a0ec458da361b4be9ab7d2a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfb0c89a0ec458da361b4be9ab7d2a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cfb0c89a0ec458da361b4be9ab7d2a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cfb0c89a0ec458da361b4be9ab7d2a0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZyDkm76yWiaMRNSs_Y78eUDbLQ=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.761953+00 2025-12-09 10:15:25.761958+00 14390 C938#红色领袖补数XL SPMX-20240815309596 \N \N \N 1 \N [{"file_id": "4bd5211f-94f5-403c-8f66-f5eeeb83011e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c257dd78225445fb9bf830ebd4af66a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c257dd78225445fb9bf830ebd4af66a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c257dd78225445fb9bf830ebd4af66a.jpg", "file_size": 14197, "is_delete": false, "file_type": 1, "original_file_name": "C938#红色领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c257dd78225445fb9bf830ebd4af66a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c257dd78225445fb9bf830ebd4af66a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c257dd78225445fb9bf830ebd4af66a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c257dd78225445fb9bf830ebd4af66a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c257dd78225445fb9bf830ebd4af66a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wPinyUOXWuMKm_s2VQWZoY0VIA=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.764715+00 2025-12-09 10:15:25.76472+00 14391 23-2123#A8-4XL SPMX-20240815309593 \N \N \N 1 \N [{"file_id": "402c0c86-7e0e-4cfc-a09a-efe2f08a0965", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4a940b8d87247a5b5c009b30e213e51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4a940b8d87247a5b5c009b30e213e51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4a940b8d87247a5b5c009b30e213e51.jpg", "file_size": 23007, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a940b8d87247a5b5c009b30e213e51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a940b8d87247a5b5c009b30e213e51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4a940b8d87247a5b5c009b30e213e51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4a940b8d87247a5b5c009b30e213e51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4a940b8d87247a5b5c009b30e213e51.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LIhg6PjJ6lt4O72ge7RV24uBrw4=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.767485+00 2025-12-09 10:15:25.76749+00 14392 FND2209FWE#妈妈装-黑色 SPMX-20240815309599 \N \N \N 1 \N [{"file_id": "b57ed674-5029-4e27-a488-f0049c3c574b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f7239139ee428d9ef10fb10eaaa845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f7239139ee428d9ef10fb10eaaa845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f7239139ee428d9ef10fb10eaaa845.jpg", "file_size": 29036, "is_delete": false, "file_type": 1, "original_file_name": "FND2209FWE#妈妈装-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f7239139ee428d9ef10fb10eaaa845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f7239139ee428d9ef10fb10eaaa845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f7239139ee428d9ef10fb10eaaa845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f7239139ee428d9ef10fb10eaaa845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f7239139ee428d9ef10fb10eaaa845.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7UYA8igGsoNZ12EI4aleGGUhEg=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.769981+00 2025-12-09 10:15:25.769986+00 14393 HT6258FW#40码 SPMX-20240815309594 \N \N \N 1 \N [{"file_id": "f95b5945-b724-4175-95c7-b119c0a5f16c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "574deb2d2ea44fafa7e199ac08e9cc86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "574deb2d2ea44fafa7e199ac08e9cc86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "574deb2d2ea44fafa7e199ac08e9cc86.jpg", "file_size": 21638, "is_delete": false, "file_type": 1, "original_file_name": "HT6258FW#40码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574deb2d2ea44fafa7e199ac08e9cc86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574deb2d2ea44fafa7e199ac08e9cc86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574deb2d2ea44fafa7e199ac08e9cc86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/574deb2d2ea44fafa7e199ac08e9cc86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/574deb2d2ea44fafa7e199ac08e9cc86.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9t1qGA_LGiUEfiMCh07POhJd8M=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.772436+00 2025-12-09 10:15:25.772441+00 14394 HT6258FW#42码 SPMX-20240815309603 \N \N \N 1 \N [{"file_id": "0e3c4274-a297-4561-bc74-c5524084802d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d96c2ff012e4110a6451a003c07cf34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d96c2ff012e4110a6451a003c07cf34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d96c2ff012e4110a6451a003c07cf34.jpg", "file_size": 20230, "is_delete": false, "file_type": 1, "original_file_name": "HT6258FW#42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d96c2ff012e4110a6451a003c07cf34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d96c2ff012e4110a6451a003c07cf34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d96c2ff012e4110a6451a003c07cf34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d96c2ff012e4110a6451a003c07cf34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d96c2ff012e4110a6451a003c07cf34.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2TOSFOvDHoMVxihXuokWGd5wkvE=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.775204+00 2025-12-09 10:15:25.775209+00 14395 LZ1330#背心款2号色 SPMX-20240815309598 \N \N \N 1 \N [{"file_id": "a10872e9-2917-4daa-a9be-cd9eea270278", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22fc0c0f2ff34d67828b500597584269.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22fc0c0f2ff34d67828b500597584269.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22fc0c0f2ff34d67828b500597584269.jpg", "file_size": 18114, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0c0f2ff34d67828b500597584269.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0c0f2ff34d67828b500597584269.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22fc0c0f2ff34d67828b500597584269.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22fc0c0f2ff34d67828b500597584269.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22fc0c0f2ff34d67828b500597584269.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0O0pl2X7sR_W9yIqnIiKoVsweA=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.777744+00 2025-12-09 10:15:25.777749+00 14396 JTSS539FW#VS-D3 SPMX-20240815309595 \N \N \N 1 \N [{"file_id": "4d8701ae-ba01-4a8f-ab8c-6e4a67db69f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "221a0c08a21d488ba0d695d1bf766896.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "221a0c08a21d488ba0d695d1bf766896.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "221a0c08a21d488ba0d695d1bf766896.jpg", "file_size": 10073, "is_delete": false, "file_type": 1, "original_file_name": "JTSS539FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221a0c08a21d488ba0d695d1bf766896.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221a0c08a21d488ba0d695d1bf766896.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/221a0c08a21d488ba0d695d1bf766896.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/221a0c08a21d488ba0d695d1bf766896.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/221a0c08a21d488ba0d695d1bf766896.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jtBdyJb5jVjkVmGGfxibfR6hLYQ=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.780202+00 2025-12-09 10:15:25.780208+00 14397 8381#领条匹布 SPMX-20240815309591 \N \N \N 1 \N [{"file_id": "89dc0820-e6ea-4cfb-a2c7-ea595db5fb8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "272f77ffca544e72afde05512fa4993c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "272f77ffca544e72afde05512fa4993c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "272f77ffca544e72afde05512fa4993c.jpg", "file_size": 14390, "is_delete": false, "file_type": 1, "original_file_name": "8381#领条匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272f77ffca544e72afde05512fa4993c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272f77ffca544e72afde05512fa4993c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/272f77ffca544e72afde05512fa4993c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/272f77ffca544e72afde05512fa4993c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/272f77ffca544e72afde05512fa4993c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EiOcETeV1rr_AirbOUE9umAEVCE=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.782639+00 2025-12-09 10:15:25.782644+00 14398 LJH1769#彩兰 SPMX-20240815309592 \N \N \N 1 \N [{"file_id": "7735b61f-2922-4dda-a1cc-ca77bd0e9e95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a82c943115419eba518f38a78f2925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a82c943115419eba518f38a78f2925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a82c943115419eba518f38a78f2925.jpg", "file_size": 44138, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a82c943115419eba518f38a78f2925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a82c943115419eba518f38a78f2925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a82c943115419eba518f38a78f2925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a82c943115419eba518f38a78f2925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a82c943115419eba518f38a78f2925.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vW595OiNA1t0yCfqnIdW5jnGLxM=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.785332+00 2025-12-09 10:15:25.785337+00 14399 12-3G31#大红2XL SPMX-20240815309597 \N \N \N 1 \N [{"file_id": "8928bd74-65cc-4c94-b8b8-63a36c8c7fe6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg", "file_size": 17772, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#大红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a6ca0bd595a4b9e8a258dfe8859fb7a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5SIXiwMdD0ZbJiiqTUG6ZzKUDs=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.787826+00 2025-12-09 10:15:25.787831+00 14400 DL31134#前幅5#玫红 SPMX-20240815309600 \N \N \N 1 \N [{"file_id": "9bcea074-d7db-4f02-82a3-d96257502131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "863997eddb074490a5e118505ca0c9ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "863997eddb074490a5e118505ca0c9ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "863997eddb074490a5e118505ca0c9ca.jpg", "file_size": 13190, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#前幅5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863997eddb074490a5e118505ca0c9ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863997eddb074490a5e118505ca0c9ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/863997eddb074490a5e118505ca0c9ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/863997eddb074490a5e118505ca0c9ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/863997eddb074490a5e118505ca0c9ca.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TlkzbC_I38Ecmrp43VXqf6B490=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.79019+00 2025-12-09 10:15:25.790195+00 14401 8381FWF#WJC22 SPMX-20240815309604 \N \N \N 1 \N [{"file_id": "7f098d95-c5de-4d91-908f-5a4c10586599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg", "file_size": 20235, "is_delete": false, "file_type": 1, "original_file_name": "8381FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccbb3bcfbb0a4418b13457ca0ddbc30e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iATjT1No7pGMEkh7Vi3jnDB-2Bc=", "createTime": "2024-08-15 14:57:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.792501+00 2025-12-09 10:15:25.792506+00 14402 12-3G31#大红L SPMX-20240815309606 \N \N \N 1 \N [{"file_id": "50a7d63a-c932-4d92-a526-80023a3372b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46c712b111d84b71b14b621c238b577c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46c712b111d84b71b14b621c238b577c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46c712b111d84b71b14b621c238b577c.jpg", "file_size": 17543, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#大红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c712b111d84b71b14b621c238b577c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c712b111d84b71b14b621c238b577c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46c712b111d84b71b14b621c238b577c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46c712b111d84b71b14b621c238b577c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46c712b111d84b71b14b621c238b577c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:erFKqLxstiiSJ2tCqp47RMNmMko=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.794617+00 2025-12-09 10:15:25.794623+00 14403 C938#蓝色XL SPMX-20240815309615 \N \N \N 1 \N [{"file_id": "b1974d0c-b241-4985-96c8-a3c83f7dfeef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e47c291f534257b1978e24ee487d94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e47c291f534257b1978e24ee487d94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e47c291f534257b1978e24ee487d94.jpg", "file_size": 24026, "is_delete": false, "file_type": 1, "original_file_name": "C938#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e47c291f534257b1978e24ee487d94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e47c291f534257b1978e24ee487d94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e47c291f534257b1978e24ee487d94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e47c291f534257b1978e24ee487d94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e47c291f534257b1978e24ee487d94.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxtMqpsfz8dkuxSFhWTDFGpLoaE=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.796772+00 2025-12-09 10:15:25.796777+00 14404 HT6258FW#44码 SPMX-20240815309616 \N \N \N 1 \N [{"file_id": "9d933d38-99af-4f64-9081-52b8950ce3e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cabbb1234f844ea9ef0b7cde74d2ed8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cabbb1234f844ea9ef0b7cde74d2ed8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cabbb1234f844ea9ef0b7cde74d2ed8.jpg", "file_size": 18351, "is_delete": false, "file_type": 1, "original_file_name": "HT6258FW#44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cabbb1234f844ea9ef0b7cde74d2ed8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cabbb1234f844ea9ef0b7cde74d2ed8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cabbb1234f844ea9ef0b7cde74d2ed8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cabbb1234f844ea9ef0b7cde74d2ed8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cabbb1234f844ea9ef0b7cde74d2ed8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gifllVmaaymdBvKMdWwyMM1fYv8=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.799138+00 2025-12-09 10:15:25.799144+00 14405 DL31134#前幅8#亮黄 SPMX-20240815309609 \N \N \N 1 \N [{"file_id": "dc9fb4a9-6f1c-469c-985e-0f9e48146c68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38f88f71defb4a96b074be4016d9c8c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38f88f71defb4a96b074be4016d9c8c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38f88f71defb4a96b074be4016d9c8c1.jpg", "file_size": 12721, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#前幅8#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f88f71defb4a96b074be4016d9c8c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f88f71defb4a96b074be4016d9c8c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f88f71defb4a96b074be4016d9c8c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38f88f71defb4a96b074be4016d9c8c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38f88f71defb4a96b074be4016d9c8c1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FqGHmxqHDRptmbFwvhtePVRIm4=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.801505+00 2025-12-09 10:15:25.80151+00 14406 23-2123#A8-领子4XL SPMX-20240815309613 \N \N \N 1 \N [{"file_id": "b7e25b78-783f-4b3c-a0ef-c6929254aad2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a69d78693744014b1a3d1c75282090d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a69d78693744014b1a3d1c75282090d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a69d78693744014b1a3d1c75282090d.jpg", "file_size": 16792, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a69d78693744014b1a3d1c75282090d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a69d78693744014b1a3d1c75282090d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a69d78693744014b1a3d1c75282090d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a69d78693744014b1a3d1c75282090d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a69d78693744014b1a3d1c75282090d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wkLYdqoDuDPQVMJRC6P_nRr08VA=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.803756+00 2025-12-09 10:15:25.803762+00 14407 C938#蓝色L SPMX-20240815309605 \N \N \N 1 \N [{"file_id": "b5e6846f-aa5d-4697-9636-594642157c5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87a11fb338764a4f9326281760711c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87a11fb338764a4f9326281760711c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87a11fb338764a4f9326281760711c8e.jpg", "file_size": 23881, "is_delete": false, "file_type": 1, "original_file_name": "C938#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87a11fb338764a4f9326281760711c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87a11fb338764a4f9326281760711c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87a11fb338764a4f9326281760711c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87a11fb338764a4f9326281760711c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87a11fb338764a4f9326281760711c8e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tjdFKfch67Xlnmhx-wUEt4PaNI=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.806219+00 2025-12-09 10:15:25.806225+00 14408 LZ1330#背心款4号色 SPMX-20240815309617 \N \N \N 1 \N [{"file_id": "f3bdbc53-384e-482b-9176-981456be5f93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18c9da82f38445069822246ec3ff28ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18c9da82f38445069822246ec3ff28ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18c9da82f38445069822246ec3ff28ec.jpg", "file_size": 18406, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c9da82f38445069822246ec3ff28ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c9da82f38445069822246ec3ff28ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c9da82f38445069822246ec3ff28ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18c9da82f38445069822246ec3ff28ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18c9da82f38445069822246ec3ff28ec.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zH2ZcYHpTWpVIncxM6w7zRkstnw=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.808638+00 2025-12-09 10:15:25.808643+00 14409 12-3G31#大红M SPMX-20240815309618 \N \N \N 1 \N [{"file_id": "dcff22d4-9172-48e6-8048-d4dd9a0b3cb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cac06c0f71e4f4eb6a9366f048b874a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cac06c0f71e4f4eb6a9366f048b874a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cac06c0f71e4f4eb6a9366f048b874a.jpg", "file_size": 16922, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#大红M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac06c0f71e4f4eb6a9366f048b874a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac06c0f71e4f4eb6a9366f048b874a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac06c0f71e4f4eb6a9366f048b874a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cac06c0f71e4f4eb6a9366f048b874a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cac06c0f71e4f4eb6a9366f048b874a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYjpLOcnj7FKZQFBBP_JUqVDsq4=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.81076+00 2025-12-09 10:15:25.810766+00 14410 8385#WJC22 SPMX-20240815309614 \N \N \N 1 \N [{"file_id": "8dac9337-b1d0-4bc6-a27c-6231c37f864f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf5484ce68641598ddc8f1df4f164c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf5484ce68641598ddc8f1df4f164c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf5484ce68641598ddc8f1df4f164c3.jpg", "file_size": 25993, "is_delete": false, "file_type": 1, "original_file_name": "8385#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf5484ce68641598ddc8f1df4f164c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf5484ce68641598ddc8f1df4f164c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf5484ce68641598ddc8f1df4f164c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf5484ce68641598ddc8f1df4f164c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf5484ce68641598ddc8f1df4f164c3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SaZllsLgwYl-VxMrRsEZ25uhUZo=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.812878+00 2025-12-09 10:15:25.812884+00 14411 LZ1330#背心款3号色 SPMX-20240815309607 \N \N \N 1 \N [{"file_id": "7f692a9b-7b67-4e04-90c8-b26453140f6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "174d5443c1e44c4baa96d63aede6e625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "174d5443c1e44c4baa96d63aede6e625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "174d5443c1e44c4baa96d63aede6e625.jpg", "file_size": 17761, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174d5443c1e44c4baa96d63aede6e625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174d5443c1e44c4baa96d63aede6e625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/174d5443c1e44c4baa96d63aede6e625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/174d5443c1e44c4baa96d63aede6e625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/174d5443c1e44c4baa96d63aede6e625.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqw1bxv-srARSoZ-4jQSJfkjvg8=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.815273+00 2025-12-09 10:15:25.815279+00 14412 LJH1769#红色 SPMX-20240815309608 \N \N \N 1 \N [{"file_id": "0593bf80-a7c3-4299-b4ea-8ccba4dcf968", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195c27c0632d4b46837e7ab0228451ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195c27c0632d4b46837e7ab0228451ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195c27c0632d4b46837e7ab0228451ce.jpg", "file_size": 43632, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c27c0632d4b46837e7ab0228451ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c27c0632d4b46837e7ab0228451ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195c27c0632d4b46837e7ab0228451ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195c27c0632d4b46837e7ab0228451ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195c27c0632d4b46837e7ab0228451ce.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CowALTl2e_wXsNvbM7cPSqnUEx8=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.817614+00 2025-12-09 10:15:25.81762+00 14413 FND2FWE#番禺调色VS-D3 SPMX-20240815309610 \N \N \N 1 \N [{"file_id": "8dd146aa-af26-42ff-b678-25d30b7a7cf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72583ba422064bcda259112675f150e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72583ba422064bcda259112675f150e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72583ba422064bcda259112675f150e9.jpg", "file_size": 19031, "is_delete": false, "file_type": 1, "original_file_name": "FND2FWE#番禺调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72583ba422064bcda259112675f150e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72583ba422064bcda259112675f150e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72583ba422064bcda259112675f150e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72583ba422064bcda259112675f150e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72583ba422064bcda259112675f150e9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gAb5dQYVWl-vkDKUcGGZOLL3_gM=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.81997+00 2025-12-09 10:15:25.819976+00 14414 JTSS540FW#VS-D3 SPMX-20240815309612 \N \N \N 1 \N [{"file_id": "713c7c15-ca98-40b7-a579-a6f12cbef8c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ab2a12f76447e8a85f9d8d08bdb139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ab2a12f76447e8a85f9d8d08bdb139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ab2a12f76447e8a85f9d8d08bdb139.jpg", "file_size": 12474, "is_delete": false, "file_type": 1, "original_file_name": "JTSS540FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ab2a12f76447e8a85f9d8d08bdb139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ab2a12f76447e8a85f9d8d08bdb139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ab2a12f76447e8a85f9d8d08bdb139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ab2a12f76447e8a85f9d8d08bdb139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ab2a12f76447e8a85f9d8d08bdb139.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wj76W46CjOxL5v_Q8dmpIwnHhFA=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.822304+00 2025-12-09 10:15:25.82231+00 14415 0006-1FWF#V5曲线 SPMX-20240815309611 \N \N \N 1 \N [{"file_id": "88fb62c6-bd6b-4258-b157-98b146df9572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e123a61abaae41b3a3c55808c75b7ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e123a61abaae41b3a3c55808c75b7ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e123a61abaae41b3a3c55808c75b7ce3.jpg", "file_size": 22362, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e123a61abaae41b3a3c55808c75b7ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e123a61abaae41b3a3c55808c75b7ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e123a61abaae41b3a3c55808c75b7ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e123a61abaae41b3a3c55808c75b7ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e123a61abaae41b3a3c55808c75b7ce3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgTQ9JdJexNQL0wKhlOZ5BanUV4=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.824685+00 2025-12-09 10:15:25.824691+00 14416 DL31134#前幅9#枣红 SPMX-20240815309620 \N \N \N 1 \N [{"file_id": "3a919291-1d20-4be5-a3aa-ab2b3de22587", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e4cfca15794bcfac119e45cfb74c64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e4cfca15794bcfac119e45cfb74c64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e4cfca15794bcfac119e45cfb74c64.jpg", "file_size": 13670, "is_delete": false, "file_type": 1, "original_file_name": "DL31134#前幅9#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e4cfca15794bcfac119e45cfb74c64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e4cfca15794bcfac119e45cfb74c64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e4cfca15794bcfac119e45cfb74c64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e4cfca15794bcfac119e45cfb74c64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e4cfca15794bcfac119e45cfb74c64.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KZHPOhhHABOgfQZGkJaQnTBSldg=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.826806+00 2025-12-09 10:15:25.826811+00 14417 LJH1769#绿色 SPMX-20240815309621 \N \N \N 1 \N [{"file_id": "520c1f1c-833b-4b0f-b513-e3f689b4d4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ffaae421c6c4d6eaa06886bc4337148.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ffaae421c6c4d6eaa06886bc4337148.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ffaae421c6c4d6eaa06886bc4337148.jpg", "file_size": 44164, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffaae421c6c4d6eaa06886bc4337148.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffaae421c6c4d6eaa06886bc4337148.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffaae421c6c4d6eaa06886bc4337148.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ffaae421c6c4d6eaa06886bc4337148.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ffaae421c6c4d6eaa06886bc4337148.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:alrQFIfyUogiEvwMDokKep9ATA8=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.828935+00 2025-12-09 10:15:25.82894+00 14418 8388#WJC22 SPMX-20240815309625 \N \N \N 1 \N [{"file_id": "9f09c4d3-4114-4d8c-9c6e-5d22fd9fdbe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aae2f34e9dc64775a387c438fb239d17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aae2f34e9dc64775a387c438fb239d17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aae2f34e9dc64775a387c438fb239d17.jpg", "file_size": 16052, "is_delete": false, "file_type": 1, "original_file_name": "8388#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae2f34e9dc64775a387c438fb239d17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae2f34e9dc64775a387c438fb239d17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae2f34e9dc64775a387c438fb239d17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aae2f34e9dc64775a387c438fb239d17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aae2f34e9dc64775a387c438fb239d17.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cn8f6s1LKsRQsN65J6w1DiwbbvY=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.850144+00 2025-12-09 10:15:25.850151+00 14427 23-2123#A9-4XL SPMX-20240815309634 \N \N \N 1 \N [{"file_id": "576ea3b8-76d3-4daa-9567-5207d28ad3c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3acf1930735c45f68ce5c7502cd2fc01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3acf1930735c45f68ce5c7502cd2fc01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3acf1930735c45f68ce5c7502cd2fc01.jpg", "file_size": 11569, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3acf1930735c45f68ce5c7502cd2fc01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3acf1930735c45f68ce5c7502cd2fc01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3acf1930735c45f68ce5c7502cd2fc01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3acf1930735c45f68ce5c7502cd2fc01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3acf1930735c45f68ce5c7502cd2fc01.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wjnmHjMyO352GlrO0UHoJ3COhng=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.831037+00 2025-12-09 10:15:25.831046+00 14419 FND2FWE#龙潭调色VS-D3 SPMX-20240815309619 \N \N \N 1 \N [{"file_id": "1b5b9dbb-6956-4d7c-b83e-4b47c3e5b3f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c24871a822f146d8874395fd2148a007.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c24871a822f146d8874395fd2148a007.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c24871a822f146d8874395fd2148a007.jpg", "file_size": 19477, "is_delete": false, "file_type": 1, "original_file_name": "FND2FWE#龙潭调色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24871a822f146d8874395fd2148a007.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24871a822f146d8874395fd2148a007.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24871a822f146d8874395fd2148a007.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c24871a822f146d8874395fd2148a007.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c24871a822f146d8874395fd2148a007.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BAwYcTBXTt5OFq6-NgzloUUXQW4=", "createTime": "2024-08-15 14:57:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.833428+00 2025-12-09 10:15:25.833434+00 14420 FND3016FWE#妈妈装白色 SPMX-20240815309629 \N \N \N 1 \N [{"file_id": "28430cc9-8f23-4d53-abcc-1a371fab538e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdf6dd79309645cd9ff4009141249477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdf6dd79309645cd9ff4009141249477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdf6dd79309645cd9ff4009141249477.jpg", "file_size": 15993, "is_delete": false, "file_type": 1, "original_file_name": "FND3016FWE#妈妈装白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf6dd79309645cd9ff4009141249477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf6dd79309645cd9ff4009141249477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf6dd79309645cd9ff4009141249477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdf6dd79309645cd9ff4009141249477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdf6dd79309645cd9ff4009141249477.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5ekPECaWAAw2j69ybYG5UXulRg=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.835841+00 2025-12-09 10:15:25.835847+00 14421 LZ1330#背心款5号色 SPMX-20240815309628 \N \N \N 1 \N [{"file_id": "dc333aa9-c1b4-4181-9764-744b017ba24e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d864eccc7654db3a588bc81008dcf68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d864eccc7654db3a588bc81008dcf68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d864eccc7654db3a588bc81008dcf68.jpg", "file_size": 17671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1330#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d864eccc7654db3a588bc81008dcf68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d864eccc7654db3a588bc81008dcf68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d864eccc7654db3a588bc81008dcf68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d864eccc7654db3a588bc81008dcf68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d864eccc7654db3a588bc81008dcf68.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFZPthOmhEDNLUDqLFPmyHjWEfk=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.837984+00 2025-12-09 10:15:25.83799+00 14422 0006-1FWF#黄2XL SPMX-20240815309624 \N \N \N 1 \N [{"file_id": "1f75bd71-dd9a-4d21-a4d1-6ac5bf282a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "963fbd6b129641c3b69b1dcdcf73c8c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "963fbd6b129641c3b69b1dcdcf73c8c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "963fbd6b129641c3b69b1dcdcf73c8c2.jpg", "file_size": 19997, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963fbd6b129641c3b69b1dcdcf73c8c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963fbd6b129641c3b69b1dcdcf73c8c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963fbd6b129641c3b69b1dcdcf73c8c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/963fbd6b129641c3b69b1dcdcf73c8c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/963fbd6b129641c3b69b1dcdcf73c8c2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4QZqgmAXh5_Tt7Au2SNvfkXaMU=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.840158+00 2025-12-09 10:15:25.840163+00 14423 C938#蓝色领袖补数XL SPMX-20240815309627 \N \N \N 1 \N [{"file_id": "5dffe915-1052-43a3-be47-eb9058afa55c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04b64494c9c84b3ca4499b3a73a72b08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04b64494c9c84b3ca4499b3a73a72b08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04b64494c9c84b3ca4499b3a73a72b08.jpg", "file_size": 14287, "is_delete": false, "file_type": 1, "original_file_name": "C938#蓝色领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b64494c9c84b3ca4499b3a73a72b08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b64494c9c84b3ca4499b3a73a72b08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04b64494c9c84b3ca4499b3a73a72b08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04b64494c9c84b3ca4499b3a73a72b08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04b64494c9c84b3ca4499b3a73a72b08.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOhXP0C-JZk4oIgOsRo_rlReAxY=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.842519+00 2025-12-09 10:15:25.842525+00 14424 23-2123#A9-3XL SPMX-20240815309623 \N \N \N 1 \N [{"file_id": "dd80f4e3-24ab-48c8-83d2-4916e6ef56fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ea6e15a3b0a45b6b52cc59b92c56544.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ea6e15a3b0a45b6b52cc59b92c56544.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ea6e15a3b0a45b6b52cc59b92c56544.jpg", "file_size": 12128, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea6e15a3b0a45b6b52cc59b92c56544.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea6e15a3b0a45b6b52cc59b92c56544.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ea6e15a3b0a45b6b52cc59b92c56544.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ea6e15a3b0a45b6b52cc59b92c56544.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ea6e15a3b0a45b6b52cc59b92c56544.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0YDRNQXp7yHV8jtQ5a-RoLFrF4=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.845045+00 2025-12-09 10:15:25.845052+00 14425 HT6258FW#46码 SPMX-20240815309626 \N \N \N 1 \N [{"file_id": "d85e88bb-7951-4df0-8e72-ce916bde95d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4ebeb73b9ee41e68746884ed1cea1f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4ebeb73b9ee41e68746884ed1cea1f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4ebeb73b9ee41e68746884ed1cea1f7.jpg", "file_size": 17998, "is_delete": false, "file_type": 1, "original_file_name": "HT6258FW#46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ebeb73b9ee41e68746884ed1cea1f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ebeb73b9ee41e68746884ed1cea1f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ebeb73b9ee41e68746884ed1cea1f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4ebeb73b9ee41e68746884ed1cea1f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4ebeb73b9ee41e68746884ed1cea1f7.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPmOolvwQJNNaB_HuWzPxYdF5Qc=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.847617+00 2025-12-09 10:15:25.847621+00 14426 JTSS541FW#VS-D3 SPMX-20240815309622 \N \N \N 1 \N [{"file_id": "29e4dd3c-3f2e-4387-9e10-25df34c8466d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8db37032b1844ee791e37e08278d6b98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8db37032b1844ee791e37e08278d6b98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8db37032b1844ee791e37e08278d6b98.jpg", "file_size": 15212, "is_delete": false, "file_type": 1, "original_file_name": "JTSS541FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db37032b1844ee791e37e08278d6b98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db37032b1844ee791e37e08278d6b98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db37032b1844ee791e37e08278d6b98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8db37032b1844ee791e37e08278d6b98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8db37032b1844ee791e37e08278d6b98.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymXVg0HXX6c0GNsMmY2DLDFwBzM=", "createTime": "2024-08-15 14:57:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.852553+00 2025-12-09 10:15:25.852559+00 14428 JTSS542FW#VS-D3 SPMX-20240815309631 \N \N \N 1 \N [{"file_id": "64aa13fd-92a6-4088-ac5c-cb45bcd0e10c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62fe0474b5db427281a8aa13a8ea396d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62fe0474b5db427281a8aa13a8ea396d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62fe0474b5db427281a8aa13a8ea396d.jpg", "file_size": 18351, "is_delete": false, "file_type": 1, "original_file_name": "JTSS542FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fe0474b5db427281a8aa13a8ea396d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fe0474b5db427281a8aa13a8ea396d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fe0474b5db427281a8aa13a8ea396d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62fe0474b5db427281a8aa13a8ea396d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62fe0474b5db427281a8aa13a8ea396d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lE_5it5aGi9Lk6z8kc1wtotPXFE=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.855083+00 2025-12-09 10:15:25.855088+00 14429 HT666FW#浅蓝VS-D3 SPMX-20240815309635 \N \N \N 1 \N [{"file_id": "c2fc8517-ab69-4b7e-b5b5-55f5c6233688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ef3fe281d7943209181101c35d010eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ef3fe281d7943209181101c35d010eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ef3fe281d7943209181101c35d010eb.jpg", "file_size": 8929, "is_delete": false, "file_type": 1, "original_file_name": "HT666FW#浅蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef3fe281d7943209181101c35d010eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef3fe281d7943209181101c35d010eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ef3fe281d7943209181101c35d010eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ef3fe281d7943209181101c35d010eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ef3fe281d7943209181101c35d010eb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JuHVlS4urrx8c1hn37mYbPvN2U=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.858413+00 2025-12-09 10:15:25.858419+00 14430 FND3016FWE#妈妈装粉色 SPMX-20240815309636 \N \N \N 1 \N [{"file_id": "17732974-9eae-4e6b-bc9a-8671a246d54d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26c750e256e547b58e1be040093ebdb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26c750e256e547b58e1be040093ebdb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26c750e256e547b58e1be040093ebdb2.jpg", "file_size": 15982, "is_delete": false, "file_type": 1, "original_file_name": "FND3016FWE#妈妈装粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26c750e256e547b58e1be040093ebdb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26c750e256e547b58e1be040093ebdb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26c750e256e547b58e1be040093ebdb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26c750e256e547b58e1be040093ebdb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26c750e256e547b58e1be040093ebdb2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lC-KnFUSosIs6U6uOs0HOqJ7ROE=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.860954+00 2025-12-09 10:15:25.860959+00 14431 DL31147#墨绿 SPMX-20240815309632 \N \N \N 1 \N [{"file_id": "a095afd9-d189-4199-8600-904ab87b3b67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg", "file_size": 21906, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfb97ad0c2fb412ca1b9515fe8a1eccb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGDoj7gW95I3eQ0WAoAagkZxu_I=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.863398+00 2025-12-09 10:15:25.863404+00 14432 12-3G31#大红XL SPMX-20240815309630 \N \N \N 1 \N [{"file_id": "5be5b625-d749-499e-aed9-8f55bc26662f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0b8873db78d45c4bf9f23e3356a2b1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0b8873db78d45c4bf9f23e3356a2b1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0b8873db78d45c4bf9f23e3356a2b1b.jpg", "file_size": 17342, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#大红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8873db78d45c4bf9f23e3356a2b1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8873db78d45c4bf9f23e3356a2b1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b8873db78d45c4bf9f23e3356a2b1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0b8873db78d45c4bf9f23e3356a2b1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0b8873db78d45c4bf9f23e3356a2b1b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z25G0Ses_ofK4mWCVHmFTQtJCFA=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.865888+00 2025-12-09 10:15:25.865894+00 14433 LJH1769#黄色 SPMX-20240815309633 \N \N \N 1 \N [{"file_id": "509492ef-65e7-4222-ac55-7853d92bf3c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68a43ba1e2e648d191b62ab113f4020e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68a43ba1e2e648d191b62ab113f4020e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68a43ba1e2e648d191b62ab113f4020e.jpg", "file_size": 44424, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a43ba1e2e648d191b62ab113f4020e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a43ba1e2e648d191b62ab113f4020e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a43ba1e2e648d191b62ab113f4020e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68a43ba1e2e648d191b62ab113f4020e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68a43ba1e2e648d191b62ab113f4020e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tPMB1ljvHAXI1zNGRsEpthq4iX4=", "createTime": "2024-08-15 14:57:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.868261+00 2025-12-09 10:15:25.868267+00 14434 23-2123#A9-领子3XL SPMX-20240815309648 \N \N \N 1 \N [{"file_id": "eed1986a-94aa-4928-ad72-6a9528e31070", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "956463b2afc6414f884604dc559a1d7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "956463b2afc6414f884604dc559a1d7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "956463b2afc6414f884604dc559a1d7f.jpg", "file_size": 11823, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956463b2afc6414f884604dc559a1d7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956463b2afc6414f884604dc559a1d7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956463b2afc6414f884604dc559a1d7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/956463b2afc6414f884604dc559a1d7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/956463b2afc6414f884604dc559a1d7f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1ble8Ot9PGsfvSiOxnyml4Gytuw=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.870663+00 2025-12-09 10:15:25.870669+00 14435 JTSS543FW#VS-D3 SPMX-20240815309642 \N \N \N 1 \N [{"file_id": "4e183c37-ba22-4f41-8beb-bd6547d6935c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebde621b6a614663ae680a2afcc0b72d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebde621b6a614663ae680a2afcc0b72d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebde621b6a614663ae680a2afcc0b72d.jpg", "file_size": 15115, "is_delete": false, "file_type": 1, "original_file_name": "JTSS543FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde621b6a614663ae680a2afcc0b72d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde621b6a614663ae680a2afcc0b72d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde621b6a614663ae680a2afcc0b72d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebde621b6a614663ae680a2afcc0b72d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebde621b6a614663ae680a2afcc0b72d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCFnlk9FHiqvf3E3QguncnNeAdA=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.873075+00 2025-12-09 10:15:25.873081+00 14436 0006-1FWF#黄3XL SPMX-20240815309638 \N \N \N 1 \N [{"file_id": "421c80dc-e509-45db-92a7-a54d25062134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2cc44620394eb48e5705227f1fc5a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2cc44620394eb48e5705227f1fc5a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2cc44620394eb48e5705227f1fc5a6.jpg", "file_size": 21531, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2cc44620394eb48e5705227f1fc5a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2cc44620394eb48e5705227f1fc5a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2cc44620394eb48e5705227f1fc5a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2cc44620394eb48e5705227f1fc5a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2cc44620394eb48e5705227f1fc5a6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVcNecFRmMql-5gCpD7hhKYAhAY=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.875355+00 2025-12-09 10:15:25.875361+00 14437 LZ1331#捆条布 SPMX-20240815309639 \N \N \N 1 \N [{"file_id": "c8284dfa-7b26-46d5-8fff-af3407a4e508", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc661df0ea894091bdd47c370d635114.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc661df0ea894091bdd47c370d635114.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc661df0ea894091bdd47c370d635114.jpg", "file_size": 14422, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc661df0ea894091bdd47c370d635114.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc661df0ea894091bdd47c370d635114.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc661df0ea894091bdd47c370d635114.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc661df0ea894091bdd47c370d635114.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc661df0ea894091bdd47c370d635114.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJl_pPUkuXOXuuQ7OWr9-IOSG64=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.877772+00 2025-12-09 10:15:25.877778+00 14438 HT666FW#深蓝VS-D3 SPMX-20240815309643 \N \N \N 1 \N [{"file_id": "2e3bdd43-b885-49e6-905e-05aebf10e4cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a982f3029f4928be065b9031bdea12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a982f3029f4928be065b9031bdea12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a982f3029f4928be065b9031bdea12.jpg", "file_size": 11480, "is_delete": false, "file_type": 1, "original_file_name": "HT666FW#深蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a982f3029f4928be065b9031bdea12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a982f3029f4928be065b9031bdea12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a982f3029f4928be065b9031bdea12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a982f3029f4928be065b9031bdea12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a982f3029f4928be065b9031bdea12.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkS3DoZGFoyoLoSCK_xgWk1bhy8=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.88019+00 2025-12-09 10:15:25.880196+00 14439 LZ1331#背心款1号色 SPMX-20240815309650 \N \N \N 1 \N [{"file_id": "c4e0be8b-32f8-4f5b-9bc3-da28225367cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b6c804b707c4573baa9ae3956233a00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b6c804b707c4573baa9ae3956233a00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b6c804b707c4573baa9ae3956233a00.jpg", "file_size": 17349, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6c804b707c4573baa9ae3956233a00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6c804b707c4573baa9ae3956233a00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6c804b707c4573baa9ae3956233a00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b6c804b707c4573baa9ae3956233a00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b6c804b707c4573baa9ae3956233a00.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PI5GC_lfFuq9KPN1TmIPSNudNM=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.882364+00 2025-12-09 10:15:25.88237+00 14440 8389#WJC22 SPMX-20240815309637 \N \N \N 1 \N [{"file_id": "5c840a9e-ec83-49fb-a832-7093930b8633", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1db9739aa6d45b6b0b431d76986ea2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1db9739aa6d45b6b0b431d76986ea2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1db9739aa6d45b6b0b431d76986ea2e.jpg", "file_size": 20661, "is_delete": false, "file_type": 1, "original_file_name": "8389#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1db9739aa6d45b6b0b431d76986ea2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1db9739aa6d45b6b0b431d76986ea2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1db9739aa6d45b6b0b431d76986ea2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1db9739aa6d45b6b0b431d76986ea2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1db9739aa6d45b6b0b431d76986ea2e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SrYWSxwMuvw4VODb6vTuxGwmeo=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.884845+00 2025-12-09 10:15:25.884852+00 14441 LJH1769#黑色 SPMX-20240815309644 \N \N \N 1 \N [{"file_id": "059fb27d-caab-4be3-a35b-634881f85dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1d7bbdf3f444315a9d0e49c79e263ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1d7bbdf3f444315a9d0e49c79e263ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1d7bbdf3f444315a9d0e49c79e263ad.jpg", "file_size": 34682, "is_delete": false, "file_type": 1, "original_file_name": "LJH1769#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1d7bbdf3f444315a9d0e49c79e263ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1d7bbdf3f444315a9d0e49c79e263ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1d7bbdf3f444315a9d0e49c79e263ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1d7bbdf3f444315a9d0e49c79e263ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1d7bbdf3f444315a9d0e49c79e263ad.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjcvRfbuPwPMEPX7WeDBD0_hWjA=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.887256+00 2025-12-09 10:15:25.887262+00 14442 DL31147#墨绿雪纺 SPMX-20240815309646 \N \N \N 1 \N [{"file_id": "b74f7ac5-0450-4ae6-9f2f-6653b8ce8dc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "318067827dc74c87895a614d917a9716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "318067827dc74c87895a614d917a9716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "318067827dc74c87895a614d917a9716.jpg", "file_size": 21801, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#墨绿雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318067827dc74c87895a614d917a9716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318067827dc74c87895a614d917a9716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318067827dc74c87895a614d917a9716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/318067827dc74c87895a614d917a9716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/318067827dc74c87895a614d917a9716.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVve4jNalUFV7PTwCUM2DtLz0Ro=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.889454+00 2025-12-09 10:15:25.88946+00 14443 12-3G31#宝蓝L SPMX-20240815309652 \N \N \N 1 \N [{"file_id": "fb781705-fdac-4585-8f77-8cc865c434c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82f420f6efd446c181dacc83cf2fa03d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82f420f6efd446c181dacc83cf2fa03d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82f420f6efd446c181dacc83cf2fa03d.jpg", "file_size": 18126, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#宝蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82f420f6efd446c181dacc83cf2fa03d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82f420f6efd446c181dacc83cf2fa03d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82f420f6efd446c181dacc83cf2fa03d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82f420f6efd446c181dacc83cf2fa03d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82f420f6efd446c181dacc83cf2fa03d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oh10TMhQxAvKH1ZbOmSe4sKEzrU=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.891842+00 2025-12-09 10:15:25.891848+00 14444 0006-1FWF#黄L SPMX-20240815309647 \N \N \N 1 \N [{"file_id": "a20f31b3-9081-462a-8e6e-803def54f567", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c80692eb304eb8818351bd6a175d26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c80692eb304eb8818351bd6a175d26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c80692eb304eb8818351bd6a175d26.jpg", "file_size": 18284, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c80692eb304eb8818351bd6a175d26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c80692eb304eb8818351bd6a175d26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c80692eb304eb8818351bd6a175d26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c80692eb304eb8818351bd6a175d26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c80692eb304eb8818351bd6a175d26.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vG_fmjxeVET7lA-8Ex56AlG6HdY=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.894241+00 2025-12-09 10:15:25.894246+00 14445 FND3016FWE#妈妈装绿色 SPMX-20240815309645 \N \N \N 1 \N [{"file_id": "665c2258-750d-4003-9ddb-da2c04136d55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f452b69444849caaa223fd244ec67d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f452b69444849caaa223fd244ec67d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f452b69444849caaa223fd244ec67d8.jpg", "file_size": 16308, "is_delete": false, "file_type": 1, "original_file_name": "FND3016FWE#妈妈装绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f452b69444849caaa223fd244ec67d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f452b69444849caaa223fd244ec67d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f452b69444849caaa223fd244ec67d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f452b69444849caaa223fd244ec67d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f452b69444849caaa223fd244ec67d8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:et-YkcrI_4MqxCcGWbuexstjNaE=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.896797+00 2025-12-09 10:15:25.896804+00 14446 C938#黑色XL SPMX-20240815309651 \N \N \N 1 \N [{"file_id": "a7cbad7d-6c0c-417a-84de-8e8e9d9a7a03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e2d7a5307204514abbd9083eedf7cd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e2d7a5307204514abbd9083eedf7cd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e2d7a5307204514abbd9083eedf7cd7.jpg", "file_size": 24336, "is_delete": false, "file_type": 1, "original_file_name": "C938#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2d7a5307204514abbd9083eedf7cd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2d7a5307204514abbd9083eedf7cd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2d7a5307204514abbd9083eedf7cd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e2d7a5307204514abbd9083eedf7cd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e2d7a5307204514abbd9083eedf7cd7.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6qSuKDAKVprniMNJqdCoTdDVBnY=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.899689+00 2025-12-09 10:15:25.899696+00 14447 C938#黑色L SPMX-20240815309640 \N \N \N 1 \N [{"file_id": "a7953da7-b74e-403a-9f6a-b19ba448edb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3c4bb5159cb4584a028fcd800fe920a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3c4bb5159cb4584a028fcd800fe920a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3c4bb5159cb4584a028fcd800fe920a.jpg", "file_size": 24138, "is_delete": false, "file_type": 1, "original_file_name": "C938#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c4bb5159cb4584a028fcd800fe920a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c4bb5159cb4584a028fcd800fe920a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c4bb5159cb4584a028fcd800fe920a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3c4bb5159cb4584a028fcd800fe920a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3c4bb5159cb4584a028fcd800fe920a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nnrYAuWqAmgemN7nkqfUq1rDfNw=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.902481+00 2025-12-09 10:15:25.902487+00 14448 12-3G31#宝蓝2XL SPMX-20240815309641 \N \N \N 1 \N [{"file_id": "5562e1c9-c8d9-4844-b1ec-569f84b2d681", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edea1ef3985f4aa29b803e9a22a6aea6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edea1ef3985f4aa29b803e9a22a6aea6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edea1ef3985f4aa29b803e9a22a6aea6.jpg", "file_size": 18271, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#宝蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edea1ef3985f4aa29b803e9a22a6aea6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edea1ef3985f4aa29b803e9a22a6aea6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edea1ef3985f4aa29b803e9a22a6aea6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edea1ef3985f4aa29b803e9a22a6aea6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edea1ef3985f4aa29b803e9a22a6aea6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ah-w2Cpp187CmcqXeIMgcxYRASk=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.905039+00 2025-12-09 10:15:25.905044+00 14449 8390#WJC22 SPMX-20240815309649 \N \N \N 1 \N [{"file_id": "9cc82fe3-4529-461d-a5ce-8440f9352719", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8db2bf14f60414b83ff3cbc4cb92059.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8db2bf14f60414b83ff3cbc4cb92059.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8db2bf14f60414b83ff3cbc4cb92059.jpg", "file_size": 12070, "is_delete": false, "file_type": 1, "original_file_name": "8390#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8db2bf14f60414b83ff3cbc4cb92059.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8db2bf14f60414b83ff3cbc4cb92059.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8db2bf14f60414b83ff3cbc4cb92059.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8db2bf14f60414b83ff3cbc4cb92059.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8db2bf14f60414b83ff3cbc4cb92059.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uliX4ZgCdbO1Q1vYCos5M2Of78w=", "createTime": "2024-08-15 14:57:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.907641+00 2025-12-09 10:15:25.907647+00 14450 FND3016FWE#妈妈装金黄色 SPMX-20240815309656 \N \N \N 1 \N [{"file_id": "c0878740-1b64-4921-955e-07c4538eb16d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f455edc88cc44a0ab718a0ccd8d9024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f455edc88cc44a0ab718a0ccd8d9024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f455edc88cc44a0ab718a0ccd8d9024.jpg", "file_size": 17132, "is_delete": false, "file_type": 1, "original_file_name": "FND3016FWE#妈妈装金黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f455edc88cc44a0ab718a0ccd8d9024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f455edc88cc44a0ab718a0ccd8d9024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f455edc88cc44a0ab718a0ccd8d9024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f455edc88cc44a0ab718a0ccd8d9024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f455edc88cc44a0ab718a0ccd8d9024.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AK-VGRm-J-3IPIDRnRzWIX80jMA=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.910197+00 2025-12-09 10:15:25.910203+00 14451 0006-1FWF#黄M SPMX-20240815309660 \N \N \N 1 \N [{"file_id": "9fa637e8-3071-4709-b1c7-4ebc582be1c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5061ef907abb496688aa4fa601eaa8b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5061ef907abb496688aa4fa601eaa8b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5061ef907abb496688aa4fa601eaa8b9.jpg", "file_size": 19589, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061ef907abb496688aa4fa601eaa8b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061ef907abb496688aa4fa601eaa8b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5061ef907abb496688aa4fa601eaa8b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5061ef907abb496688aa4fa601eaa8b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5061ef907abb496688aa4fa601eaa8b9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_4TbfSrpd2eBvqm1vHs2OMSLG5w=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.912686+00 2025-12-09 10:15:25.912691+00 14452 JTSS544FW#VS-D3 SPMX-20240815309653 \N \N \N 1 \N [{"file_id": "40ef97d0-f16f-4fec-9d1b-77279295c963", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14f285edce2449a7a3b68ba777d92a7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14f285edce2449a7a3b68ba777d92a7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14f285edce2449a7a3b68ba777d92a7d.jpg", "file_size": 18637, "is_delete": false, "file_type": 1, "original_file_name": "JTSS544FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f285edce2449a7a3b68ba777d92a7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f285edce2449a7a3b68ba777d92a7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14f285edce2449a7a3b68ba777d92a7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14f285edce2449a7a3b68ba777d92a7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14f285edce2449a7a3b68ba777d92a7d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCvEohNzhrueW92dL7lVvNKRtj8=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.915207+00 2025-12-09 10:15:25.915213+00 14453 8397#WJC22 SPMX-20240815309659 \N \N \N 1 \N [{"file_id": "4b3e7b20-c471-44e6-924c-b6474848dfb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff367fbd8fee4fd587876b5d58c8b2a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff367fbd8fee4fd587876b5d58c8b2a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff367fbd8fee4fd587876b5d58c8b2a2.jpg", "file_size": 15838, "is_delete": false, "file_type": 1, "original_file_name": "8397#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff367fbd8fee4fd587876b5d58c8b2a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff367fbd8fee4fd587876b5d58c8b2a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff367fbd8fee4fd587876b5d58c8b2a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff367fbd8fee4fd587876b5d58c8b2a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff367fbd8fee4fd587876b5d58c8b2a2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:faNYwytiH4Yz-BwQs9yO3tGomQ0=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.917721+00 2025-12-09 10:15:25.917725+00 14454 12-3G31#宝蓝M SPMX-20240815309662 \N \N \N 1 \N [{"file_id": "0d401f9d-3689-49c1-adce-2e268e0cfdf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f62966c8c094107b84e269f1554257d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f62966c8c094107b84e269f1554257d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f62966c8c094107b84e269f1554257d.jpg", "file_size": 17882, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#宝蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f62966c8c094107b84e269f1554257d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f62966c8c094107b84e269f1554257d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f62966c8c094107b84e269f1554257d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f62966c8c094107b84e269f1554257d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f62966c8c094107b84e269f1554257d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJqStjmFlP_1QN6Il1OC348cjh4=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.920251+00 2025-12-09 10:15:25.920257+00 14455 JTSS545FW#VS-D3 SPMX-20240815309664 \N \N \N 1 \N [{"file_id": "905d769e-3bc3-4d45-9f1d-b3ca3e4ebf0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8da4e8f7dfdf4f6a8079afef01b8ad63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8da4e8f7dfdf4f6a8079afef01b8ad63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8da4e8f7dfdf4f6a8079afef01b8ad63.jpg", "file_size": 11160, "is_delete": false, "file_type": 1, "original_file_name": "JTSS545FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da4e8f7dfdf4f6a8079afef01b8ad63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da4e8f7dfdf4f6a8079afef01b8ad63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da4e8f7dfdf4f6a8079afef01b8ad63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8da4e8f7dfdf4f6a8079afef01b8ad63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8da4e8f7dfdf4f6a8079afef01b8ad63.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsczV2Blo94G_LhcUzXcoTzh9ao=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.922848+00 2025-12-09 10:15:25.922853+00 14456 LZ1331#背心款2号色 SPMX-20240815309663 \N \N \N 1 \N [{"file_id": "a2ab7438-6757-42ba-bd33-a6f19d57b393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb97ff536650465d8920b42db77fdc10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb97ff536650465d8920b42db77fdc10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb97ff536650465d8920b42db77fdc10.jpg", "file_size": 16990, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb97ff536650465d8920b42db77fdc10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb97ff536650465d8920b42db77fdc10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb97ff536650465d8920b42db77fdc10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb97ff536650465d8920b42db77fdc10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb97ff536650465d8920b42db77fdc10.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcQkdnxgd7hJ7Abo5UfHOmYRsGQ=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.925403+00 2025-12-09 10:15:25.925409+00 14457 HT666FW#黑VS-D3 SPMX-20240815309665 \N \N \N 1 \N [{"file_id": "ed7a6969-e0f8-458c-a942-6a2d56c075aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc2c241b59254022bbb49e70068ba0b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc2c241b59254022bbb49e70068ba0b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc2c241b59254022bbb49e70068ba0b6.jpg", "file_size": 14101, "is_delete": false, "file_type": 1, "original_file_name": "HT666FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c241b59254022bbb49e70068ba0b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c241b59254022bbb49e70068ba0b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc2c241b59254022bbb49e70068ba0b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc2c241b59254022bbb49e70068ba0b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc2c241b59254022bbb49e70068ba0b6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFsWFqaUvLxaE-uj3ZkkGzu9to4=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.928274+00 2025-12-09 10:15:25.928282+00 14458 HT666FW#粉VS-D3 SPMX-20240815309654 \N \N \N 1 \N [{"file_id": "439a637e-f088-4c8f-91ca-d1dbb7a41153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bdd1b6098024b40a966a148523c1e9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bdd1b6098024b40a966a148523c1e9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bdd1b6098024b40a966a148523c1e9d.jpg", "file_size": 8762, "is_delete": false, "file_type": 1, "original_file_name": "HT666FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdd1b6098024b40a966a148523c1e9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdd1b6098024b40a966a148523c1e9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bdd1b6098024b40a966a148523c1e9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bdd1b6098024b40a966a148523c1e9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bdd1b6098024b40a966a148523c1e9d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-UI2OC09flSjisbHvDMf9wl9pYE=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.931007+00 2025-12-09 10:15:25.931013+00 14459 DL31147#彩兰 SPMX-20240815309655 \N \N \N 1 \N [{"file_id": "2485b6ed-69b6-4c3f-a8d9-f9f6c8776218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e417227c73f46149770db1393bcf7f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e417227c73f46149770db1393bcf7f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e417227c73f46149770db1393bcf7f8.jpg", "file_size": 22415, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e417227c73f46149770db1393bcf7f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e417227c73f46149770db1393bcf7f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e417227c73f46149770db1393bcf7f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e417227c73f46149770db1393bcf7f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e417227c73f46149770db1393bcf7f8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YsGQB6nZV7gxMxe_ovzEwqAiejE=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.933522+00 2025-12-09 10:15:25.93353+00 14460 23-2123#A9-领子4XL SPMX-20240815309658 \N \N \N 1 \N [{"file_id": "5f5a3a3c-28a6-4a30-93d2-79a32c496b70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58f1b14d9ac7416f82344b3205b1a067.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58f1b14d9ac7416f82344b3205b1a067.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58f1b14d9ac7416f82344b3205b1a067.jpg", "file_size": 12366, "is_delete": false, "file_type": 1, "original_file_name": "23-2123#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58f1b14d9ac7416f82344b3205b1a067.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58f1b14d9ac7416f82344b3205b1a067.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58f1b14d9ac7416f82344b3205b1a067.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58f1b14d9ac7416f82344b3205b1a067.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58f1b14d9ac7416f82344b3205b1a067.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRoO7bD-__yNNnT05w3esqiDiM4=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.936339+00 2025-12-09 10:15:25.936347+00 14461 C938#黑色领袖补数XL SPMX-20240815309661 \N \N \N 1 \N [{"file_id": "38532f64-e022-4ab3-bece-1617a59d5e52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c51c438093e44d8098b9c6467b9e5257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c51c438093e44d8098b9c6467b9e5257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c51c438093e44d8098b9c6467b9e5257.jpg", "file_size": 13855, "is_delete": false, "file_type": 1, "original_file_name": "C938#黑色领袖补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51c438093e44d8098b9c6467b9e5257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51c438093e44d8098b9c6467b9e5257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c51c438093e44d8098b9c6467b9e5257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c51c438093e44d8098b9c6467b9e5257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c51c438093e44d8098b9c6467b9e5257.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dHtPO2Krm7yqt6iK5mzeM4ZmfH8=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.939272+00 2025-12-09 10:15:25.93928+00 14462 DL31147#彩兰雪纺 SPMX-20240815309666 \N \N \N 1 \N [{"file_id": "5f6700ae-8e14-4212-88f7-fdab53d31e71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c017f89fc7b49e58fde2b343e31c9f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c017f89fc7b49e58fde2b343e31c9f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c017f89fc7b49e58fde2b343e31c9f1.jpg", "file_size": 22636, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#彩兰雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c017f89fc7b49e58fde2b343e31c9f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c017f89fc7b49e58fde2b343e31c9f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c017f89fc7b49e58fde2b343e31c9f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c017f89fc7b49e58fde2b343e31c9f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c017f89fc7b49e58fde2b343e31c9f1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBFuH1aijCB93NWuhx4_El-UGVQ=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.941876+00 2025-12-09 10:15:25.941881+00 14463 LJH1781-1#彩兰 SPMX-20240815309657 \N \N \N 1 \N [{"file_id": "fc2d503f-8dc3-4552-8ad2-de7f2c93bf79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d53bc935251f4fba89b4b2f83514ce1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d53bc935251f4fba89b4b2f83514ce1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d53bc935251f4fba89b4b2f83514ce1b.jpg", "file_size": 38118, "is_delete": false, "file_type": 1, "original_file_name": "LJH1781-1#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d53bc935251f4fba89b4b2f83514ce1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d53bc935251f4fba89b4b2f83514ce1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d53bc935251f4fba89b4b2f83514ce1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d53bc935251f4fba89b4b2f83514ce1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d53bc935251f4fba89b4b2f83514ce1b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vs5Cxh0X2eWQ3c-_xvHzIxkMfWE=", "createTime": "2024-08-15 14:57:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.944365+00 2025-12-09 10:15:25.944371+00 14464 FND4050FWE#橙色 VS-D3 SPMX-20240815309668 \N \N \N 1 \N [{"file_id": "4be77195-9e42-4913-8845-3fb988acf56a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "479a7ddc80264562af7b51b6393d3fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "479a7ddc80264562af7b51b6393d3fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "479a7ddc80264562af7b51b6393d3fb8.jpg", "file_size": 12880, "is_delete": false, "file_type": 1, "original_file_name": "FND4050FWE#橙色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479a7ddc80264562af7b51b6393d3fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479a7ddc80264562af7b51b6393d3fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/479a7ddc80264562af7b51b6393d3fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/479a7ddc80264562af7b51b6393d3fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/479a7ddc80264562af7b51b6393d3fb8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:miXkiZQAmcWLtugqwTGXqQq7Cjg=", "createTime": "2024-08-15 14:57:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.946872+00 2025-12-09 10:15:25.946877+00 14465 23-2124#A2-3XL SPMX-20240815309667 \N \N \N 1 \N [{"file_id": "3602f0c5-6f61-449d-bd38-f6e33a5c25b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eca7afb554446b4ab49d2da775cc5ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eca7afb554446b4ab49d2da775cc5ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eca7afb554446b4ab49d2da775cc5ed.jpg", "file_size": 13701, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca7afb554446b4ab49d2da775cc5ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca7afb554446b4ab49d2da775cc5ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca7afb554446b4ab49d2da775cc5ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eca7afb554446b4ab49d2da775cc5ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eca7afb554446b4ab49d2da775cc5ed.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNoJthkbRJveH9mO91B45Ow8aVA=", "createTime": "2024-08-15 14:57:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.949325+00 2025-12-09 10:15:25.949331+00 14466 JTSS546FW#VS-D3 SPMX-20240815309671 \N \N \N 1 \N [{"file_id": "ea0d7677-bccf-413a-a35b-bf1de6434125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9b23f0baa974691ac2d903ac1714cbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9b23f0baa974691ac2d903ac1714cbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9b23f0baa974691ac2d903ac1714cbd.jpg", "file_size": 12779, "is_delete": false, "file_type": 1, "original_file_name": "JTSS546FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9b23f0baa974691ac2d903ac1714cbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9b23f0baa974691ac2d903ac1714cbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9b23f0baa974691ac2d903ac1714cbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9b23f0baa974691ac2d903ac1714cbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9b23f0baa974691ac2d903ac1714cbd.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THFvsoB9GihoJuKjml0aydZ3xt0=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.951835+00 2025-12-09 10:15:25.951841+00 14467 839FWF#土黄 SPMX-20240815309675 \N \N \N 1 \N [{"file_id": "0478b25b-8435-4b8b-b60b-c26b6797ffc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1434456991c74ce08f6a9dde7ad7f83c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1434456991c74ce08f6a9dde7ad7f83c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1434456991c74ce08f6a9dde7ad7f83c.jpg", "file_size": 14895, "is_delete": false, "file_type": 1, "original_file_name": "839FWF#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1434456991c74ce08f6a9dde7ad7f83c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1434456991c74ce08f6a9dde7ad7f83c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1434456991c74ce08f6a9dde7ad7f83c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1434456991c74ce08f6a9dde7ad7f83c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1434456991c74ce08f6a9dde7ad7f83c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bVcK--5kTBoFTOREkf_Sc4qrTA=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.954261+00 2025-12-09 10:15:25.954266+00 14468 DL31147#枣红 SPMX-20240815309678 \N \N \N 1 \N [{"file_id": "5f283c5b-dddc-4834-82ab-8bd1054a81d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1e6949a01184096bd79e2cbdea2daee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1e6949a01184096bd79e2cbdea2daee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1e6949a01184096bd79e2cbdea2daee.jpg", "file_size": 22806, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6949a01184096bd79e2cbdea2daee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6949a01184096bd79e2cbdea2daee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1e6949a01184096bd79e2cbdea2daee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1e6949a01184096bd79e2cbdea2daee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1e6949a01184096bd79e2cbdea2daee.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrZHSwGiwmktHFASGSn3MZkQkbg=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.956632+00 2025-12-09 10:15:25.956637+00 14469 23-2124#A2-4XL SPMX-20240815309677 \N \N \N 1 \N [{"file_id": "b3f85766-bbfe-4c30-b253-a72b915bcfda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c609dfefca04038865fbfc189c12ebb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c609dfefca04038865fbfc189c12ebb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c609dfefca04038865fbfc189c12ebb.jpg", "file_size": 13362, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c609dfefca04038865fbfc189c12ebb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c609dfefca04038865fbfc189c12ebb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c609dfefca04038865fbfc189c12ebb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c609dfefca04038865fbfc189c12ebb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c609dfefca04038865fbfc189c12ebb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLuqYylQ_R4H_JP19c1TuxesEBE=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.958866+00 2025-12-09 10:15:25.958872+00 14470 JTSS547FW#VS-D3 SPMX-20240815309682 \N \N \N 1 \N [{"file_id": "010ac0e5-af1e-4445-89fd-922d56b00ded", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa28e9f0f04f4ac3a671121368fea565.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa28e9f0f04f4ac3a671121368fea565.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa28e9f0f04f4ac3a671121368fea565.jpg", "file_size": 15792, "is_delete": false, "file_type": 1, "original_file_name": "JTSS547FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa28e9f0f04f4ac3a671121368fea565.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa28e9f0f04f4ac3a671121368fea565.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa28e9f0f04f4ac3a671121368fea565.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa28e9f0f04f4ac3a671121368fea565.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa28e9f0f04f4ac3a671121368fea565.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3C25XfTEhc-ez0CnWD68NNxhUA=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.961302+00 2025-12-09 10:15:25.961308+00 14471 12-3G31#彩蓝2XL SPMX-20240815309683 \N \N \N 1 \N [{"file_id": "9ffa3473-a150-4ef2-ae78-378712967fb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caa286a61c3f467aa7b7f3d5b823e1a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caa286a61c3f467aa7b7f3d5b823e1a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caa286a61c3f467aa7b7f3d5b823e1a1.jpg", "file_size": 18202, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#彩蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa286a61c3f467aa7b7f3d5b823e1a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa286a61c3f467aa7b7f3d5b823e1a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caa286a61c3f467aa7b7f3d5b823e1a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caa286a61c3f467aa7b7f3d5b823e1a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caa286a61c3f467aa7b7f3d5b823e1a1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jeiio6_TgFTIcidKtE805pnNkYg=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.963714+00 2025-12-09 10:15:25.963719+00 14472 LZ1331#背心款3号色 SPMX-20240815309673 \N \N \N 1 \N [{"file_id": "c5391e4f-602e-44d3-9c8c-05d29147ac22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3f123b5e93e4737ab22dadd4db91d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3f123b5e93e4737ab22dadd4db91d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3f123b5e93e4737ab22dadd4db91d0e.jpg", "file_size": 17076, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f123b5e93e4737ab22dadd4db91d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f123b5e93e4737ab22dadd4db91d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3f123b5e93e4737ab22dadd4db91d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3f123b5e93e4737ab22dadd4db91d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3f123b5e93e4737ab22dadd4db91d0e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SAPahSZVBqg_-ZNaSk6C9XVMJx4=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.965882+00 2025-12-09 10:15:25.965887+00 14473 LJH1781-1#玫红 SPMX-20240815309672 \N \N \N 1 \N [{"file_id": "3673980a-4f2e-4708-a293-5a47e62a8249", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "458e5a21750c410b8c3662c6a6fd00b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "458e5a21750c410b8c3662c6a6fd00b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "458e5a21750c410b8c3662c6a6fd00b2.jpg", "file_size": 36086, "is_delete": false, "file_type": 1, "original_file_name": "LJH1781-1#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458e5a21750c410b8c3662c6a6fd00b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458e5a21750c410b8c3662c6a6fd00b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458e5a21750c410b8c3662c6a6fd00b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/458e5a21750c410b8c3662c6a6fd00b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/458e5a21750c410b8c3662c6a6fd00b2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHb31M_U7kG7TxmFOJJmcLc64aE=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.968067+00 2025-12-09 10:15:25.968072+00 14474 C939#土黄L SPMX-20240815309669 \N \N \N 1 \N [{"file_id": "247c7b97-9f8c-4c47-99ea-1bd3474cade3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d47c92e3760a41949831c5cf0bac4172.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d47c92e3760a41949831c5cf0bac4172.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d47c92e3760a41949831c5cf0bac4172.jpg", "file_size": 21146, "is_delete": false, "file_type": 1, "original_file_name": "C939#土黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c92e3760a41949831c5cf0bac4172.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c92e3760a41949831c5cf0bac4172.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47c92e3760a41949831c5cf0bac4172.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d47c92e3760a41949831c5cf0bac4172.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d47c92e3760a41949831c5cf0bac4172.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeSI-_gD0Kbv52Ag-Tswj4kPQ7g=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.97048+00 2025-12-09 10:15:25.970486+00 14475 0006-1FWF#黄XL SPMX-20240815309680 \N \N \N 1 \N [{"file_id": "d4a6af2d-36a4-4ff1-bc21-3764367b70f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "735daedb40744ba19b24825794d940b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "735daedb40744ba19b24825794d940b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "735daedb40744ba19b24825794d940b8.jpg", "file_size": 19162, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735daedb40744ba19b24825794d940b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735daedb40744ba19b24825794d940b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735daedb40744ba19b24825794d940b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/735daedb40744ba19b24825794d940b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/735daedb40744ba19b24825794d940b8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMOTplesgsVcgQ5yBL2F-yM3vUs=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.972808+00 2025-12-09 10:15:25.972813+00 14476 HT6848FWE#正身2XL SPMX-20240815309679 \N \N \N 1 \N [{"file_id": "5dcec8f4-25ba-4f30-ba3a-6dba99843103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02ce0f9fae16475894cd2881aafca267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02ce0f9fae16475894cd2881aafca267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02ce0f9fae16475894cd2881aafca267.jpg", "file_size": 15544, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#正身2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02ce0f9fae16475894cd2881aafca267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02ce0f9fae16475894cd2881aafca267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02ce0f9fae16475894cd2881aafca267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02ce0f9fae16475894cd2881aafca267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02ce0f9fae16475894cd2881aafca267.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULv-Jo3-RwNA7OlM2w77MeN7cSE=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.974993+00 2025-12-09 10:15:25.974998+00 14477 0006-1FWF#黄S SPMX-20240815309670 \N \N \N 1 \N [{"file_id": "21477f10-3ce3-48d8-97ab-02f96b5275d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fe05e7ed64747b294e56740bf13e259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fe05e7ed64747b294e56740bf13e259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fe05e7ed64747b294e56740bf13e259.jpg", "file_size": 19807, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe05e7ed64747b294e56740bf13e259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe05e7ed64747b294e56740bf13e259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe05e7ed64747b294e56740bf13e259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fe05e7ed64747b294e56740bf13e259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fe05e7ed64747b294e56740bf13e259.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQXAEfb29zAXzinB6H6N1IXmips=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.977441+00 2025-12-09 10:15:25.977447+00 14478 12-3G31#宝蓝XL SPMX-20240815309674 \N \N \N 1 \N [{"file_id": "c3deb862-d7fa-48fb-b254-b2272bea40e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg", "file_size": 18155, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#宝蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82aa6e78771342f0b8f5ef8ba0f1d4a3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UfR-7Uxv3cGtAKsmPOQlUp98c_c=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.979855+00 2025-12-09 10:15:25.979861+00 14479 FND4050FWE#绿色 VS-D3 SPMX-20240815309676 \N \N \N 1 \N [{"file_id": "e030de58-0253-44f1-9e2d-76f5c881f4af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "431b6049004b4df2a67302db6c66363e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "431b6049004b4df2a67302db6c66363e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "431b6049004b4df2a67302db6c66363e.jpg", "file_size": 13228, "is_delete": false, "file_type": 1, "original_file_name": "FND4050FWE#绿色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431b6049004b4df2a67302db6c66363e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431b6049004b4df2a67302db6c66363e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431b6049004b4df2a67302db6c66363e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/431b6049004b4df2a67302db6c66363e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/431b6049004b4df2a67302db6c66363e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0cLF9NfFUEeTSrpj4x_o6SbhLo=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.982066+00 2025-12-09 10:15:25.982071+00 14480 C939#土黄XL SPMX-20240815309681 \N \N \N 1 \N [{"file_id": "16e5392a-bc3a-41d0-ad3e-e94388faa088", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b210b5f7a7b743f0a6ad8dbe6d67158e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b210b5f7a7b743f0a6ad8dbe6d67158e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b210b5f7a7b743f0a6ad8dbe6d67158e.jpg", "file_size": 21551, "is_delete": false, "file_type": 1, "original_file_name": "C939#土黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210b5f7a7b743f0a6ad8dbe6d67158e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210b5f7a7b743f0a6ad8dbe6d67158e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b210b5f7a7b743f0a6ad8dbe6d67158e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b210b5f7a7b743f0a6ad8dbe6d67158e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b210b5f7a7b743f0a6ad8dbe6d67158e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lp3sBHlSxmeVJ-cmO5yh4tOLseU=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.984464+00 2025-12-09 10:15:25.98447+00 14481 FND4050FWE#黄色 VS-D3 SPMX-20240815309694 \N \N \N 1 \N [{"file_id": "eeee6526-2b13-4f39-a415-41d039a3e516", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f6f61505d664f4392026997aa1104f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f6f61505d664f4392026997aa1104f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f6f61505d664f4392026997aa1104f5.jpg", "file_size": 13934, "is_delete": false, "file_type": 1, "original_file_name": "FND4050FWE#黄色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6f61505d664f4392026997aa1104f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6f61505d664f4392026997aa1104f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f6f61505d664f4392026997aa1104f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f6f61505d664f4392026997aa1104f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f6f61505d664f4392026997aa1104f5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZKcjLFhnfjft9EkBCQopZ0dxaoU=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.986886+00 2025-12-09 10:15:25.986891+00 14482 839FWF#藏青 SPMX-20240815309698 \N \N \N 1 \N [{"file_id": "8a792a23-f8b2-4b26-aa42-a84738e85e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "677383d0e2074dcdab60d84018fb42e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "677383d0e2074dcdab60d84018fb42e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "677383d0e2074dcdab60d84018fb42e0.jpg", "file_size": 15956, "is_delete": false, "file_type": 1, "original_file_name": "839FWF#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677383d0e2074dcdab60d84018fb42e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677383d0e2074dcdab60d84018fb42e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/677383d0e2074dcdab60d84018fb42e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/677383d0e2074dcdab60d84018fb42e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/677383d0e2074dcdab60d84018fb42e0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGN-bbQy5ro19oij5EP0O0llmgs=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.989061+00 2025-12-09 10:15:25.989067+00 14483 LJH1781-1#绿色 SPMX-20240815309686 \N \N \N 1 \N [{"file_id": "bf00f99f-7801-4e99-ba39-f03d5a11a8e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f12c5a397fe4518b6feb39d020b739a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f12c5a397fe4518b6feb39d020b739a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f12c5a397fe4518b6feb39d020b739a.jpg", "file_size": 36770, "is_delete": false, "file_type": 1, "original_file_name": "LJH1781-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f12c5a397fe4518b6feb39d020b739a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f12c5a397fe4518b6feb39d020b739a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f12c5a397fe4518b6feb39d020b739a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f12c5a397fe4518b6feb39d020b739a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f12c5a397fe4518b6feb39d020b739a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOoLSIj2vMWK93_KJfcRmFN67Pg=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.991507+00 2025-12-09 10:15:25.991513+00 14484 LZ1331#背心款5号色 SPMX-20240815309696 \N \N \N 1 \N [{"file_id": "29b94039-240d-43b9-9e22-129d5e55d2c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "637b9c22ba134d0f87de0936719449b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "637b9c22ba134d0f87de0936719449b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "637b9c22ba134d0f87de0936719449b1.jpg", "file_size": 16439, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b9c22ba134d0f87de0936719449b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b9c22ba134d0f87de0936719449b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/637b9c22ba134d0f87de0936719449b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/637b9c22ba134d0f87de0936719449b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/637b9c22ba134d0f87de0936719449b1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vff67AhqNgonBippk72T89J4OG0=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.993909+00 2025-12-09 10:15:25.993914+00 14485 23-2124#A2-领子3XL SPMX-20240815309689 \N \N \N 1 \N [{"file_id": "4b66b242-a2cc-4fb1-a7d6-1a1f330a8814", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "338cb1d60c454c6b80c863aae229d041.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "338cb1d60c454c6b80c863aae229d041.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "338cb1d60c454c6b80c863aae229d041.jpg", "file_size": 13569, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338cb1d60c454c6b80c863aae229d041.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338cb1d60c454c6b80c863aae229d041.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338cb1d60c454c6b80c863aae229d041.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/338cb1d60c454c6b80c863aae229d041.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/338cb1d60c454c6b80c863aae229d041.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLDkNDZ0hqy4nUwG0yr4-GdOJPk=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.996118+00 2025-12-09 10:15:25.996124+00 14486 LZ1331#背心款4号色 SPMX-20240815309685 \N \N \N 1 \N [{"file_id": "2bb56ba7-2211-42f6-aced-dff9323fbc1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a0c341314bd44a092aa49c00b7fdb7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a0c341314bd44a092aa49c00b7fdb7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a0c341314bd44a092aa49c00b7fdb7d.jpg", "file_size": 15963, "is_delete": false, "file_type": 1, "original_file_name": "LZ1331#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0c341314bd44a092aa49c00b7fdb7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0c341314bd44a092aa49c00b7fdb7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0c341314bd44a092aa49c00b7fdb7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a0c341314bd44a092aa49c00b7fdb7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a0c341314bd44a092aa49c00b7fdb7d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bPVHEXowsF9SpxfFMnQQ1nlSpZA=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:25.998579+00 2025-12-09 10:15:25.998585+00 14487 HT6848FWE#正身3XL SPMX-20240815309690 \N \N \N 1 \N [{"file_id": "746880c4-286f-415d-941c-855e2f918b62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40ab5b400d8e456e83a6c4b7959f77fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40ab5b400d8e456e83a6c4b7959f77fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40ab5b400d8e456e83a6c4b7959f77fe.jpg", "file_size": 16157, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#正身3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ab5b400d8e456e83a6c4b7959f77fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ab5b400d8e456e83a6c4b7959f77fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40ab5b400d8e456e83a6c4b7959f77fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40ab5b400d8e456e83a6c4b7959f77fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40ab5b400d8e456e83a6c4b7959f77fe.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjXIZlwiDSdT_rNxqnyddfb5g68=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.001036+00 2025-12-09 10:15:26.001041+00 14488 12-3G31#彩蓝L SPMX-20240815309697 \N \N \N 1 \N [{"file_id": "43a57bfc-6084-479e-b6f6-aca301e4879e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f2d5c99d35437999cb0dddbac10fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f2d5c99d35437999cb0dddbac10fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f2d5c99d35437999cb0dddbac10fe9.jpg", "file_size": 18070, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f2d5c99d35437999cb0dddbac10fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f2d5c99d35437999cb0dddbac10fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f2d5c99d35437999cb0dddbac10fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f2d5c99d35437999cb0dddbac10fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f2d5c99d35437999cb0dddbac10fe9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6j0EZ1Ccjb6zPjP1ca9KClr37cg=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.003226+00 2025-12-09 10:15:26.003232+00 14489 DL31147#枣红雪纺 SPMX-20240815309688 \N \N \N 1 \N [{"file_id": "aa1cf51e-0dbe-43c6-b025-2206804ca899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg", "file_size": 22782, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#枣红雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d26e21a7a3a4b06995bbe5a0b3ca2f3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsXX_mNVZz-LjRLRa53QYWT3tXc=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.005739+00 2025-12-09 10:15:26.005745+00 14490 JTSS548FW#VS-D3 SPMX-20240815309693 \N \N \N 1 \N [{"file_id": "ea1db0db-4857-4e55-8fed-c1d0c2a286e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a0c88acbe241ea8213a807e5418ce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a0c88acbe241ea8213a807e5418ce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a0c88acbe241ea8213a807e5418ce9.jpg", "file_size": 10595, "is_delete": false, "file_type": 1, "original_file_name": "JTSS548FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a0c88acbe241ea8213a807e5418ce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a0c88acbe241ea8213a807e5418ce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a0c88acbe241ea8213a807e5418ce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a0c88acbe241ea8213a807e5418ce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a0c88acbe241ea8213a807e5418ce9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rX_4YBe6P1fqPptM72o2LNcjI4A=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.008173+00 2025-12-09 10:15:26.008178+00 14491 C939#墨绿L SPMX-20240815309692 \N \N \N 1 \N [{"file_id": "f965f6e6-3291-491e-9f2c-5d6d4ab0cd68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4af1c7bba8a413db9e610922d733ea9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4af1c7bba8a413db9e610922d733ea9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4af1c7bba8a413db9e610922d733ea9.jpg", "file_size": 22932, "is_delete": false, "file_type": 1, "original_file_name": "C939#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4af1c7bba8a413db9e610922d733ea9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4af1c7bba8a413db9e610922d733ea9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4af1c7bba8a413db9e610922d733ea9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4af1c7bba8a413db9e610922d733ea9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4af1c7bba8a413db9e610922d733ea9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CA5rVcmFVsKc0Xvs_THpDBpWnJM=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.010378+00 2025-12-09 10:15:26.010384+00 14492 0006-1FWF#黄捆条 SPMX-20240815309691 \N \N \N 1 \N [{"file_id": "21c63dc2-4929-4ad9-b9da-7ef8868a0a79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69766f79754e4a6c81f344ca11f595a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69766f79754e4a6c81f344ca11f595a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69766f79754e4a6c81f344ca11f595a2.jpg", "file_size": 11885, "is_delete": false, "file_type": 1, "original_file_name": "0006-1FWF#黄捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69766f79754e4a6c81f344ca11f595a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69766f79754e4a6c81f344ca11f595a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69766f79754e4a6c81f344ca11f595a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69766f79754e4a6c81f344ca11f595a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69766f79754e4a6c81f344ca11f595a2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpmIfuqcgf4cjqiAmM3ZJf57xNE=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.012765+00 2025-12-09 10:15:26.012771+00 14493 FND4050FWE#蓝色 VS-D3 SPMX-20240815309687 \N \N \N 1 \N [{"file_id": "783ef06d-f542-4b86-8b7b-573ea8e1b810", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf0f25f37aed468689097ed620189548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf0f25f37aed468689097ed620189548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf0f25f37aed468689097ed620189548.jpg", "file_size": 13919, "is_delete": false, "file_type": 1, "original_file_name": "FND4050FWE#蓝色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0f25f37aed468689097ed620189548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0f25f37aed468689097ed620189548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0f25f37aed468689097ed620189548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf0f25f37aed468689097ed620189548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf0f25f37aed468689097ed620189548.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhX_KW_asXizZi5RTuv3yxdlNB8=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.015146+00 2025-12-09 10:15:26.015152+00 14494 LJH1781-1#黄色 SPMX-20240815309695 \N \N \N 1 \N [{"file_id": "b8bde9dc-df45-4aa0-ab34-633cd5ac41bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f86c156e3b5d43ef913d6d67598b269f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f86c156e3b5d43ef913d6d67598b269f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f86c156e3b5d43ef913d6d67598b269f.jpg", "file_size": 38250, "is_delete": false, "file_type": 1, "original_file_name": "LJH1781-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86c156e3b5d43ef913d6d67598b269f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86c156e3b5d43ef913d6d67598b269f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86c156e3b5d43ef913d6d67598b269f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f86c156e3b5d43ef913d6d67598b269f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f86c156e3b5d43ef913d6d67598b269f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6KlFl4qSAYfaBsx1GNjgb9-Sop0=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.017359+00 2025-12-09 10:15:26.017365+00 14495 839FWF#枣红 SPMX-20240815309684 \N \N \N 1 \N [{"file_id": "7b2654a1-7b10-4289-849c-78f5a063d23e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a542c7c7d524d87bae0b758cf0a60e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a542c7c7d524d87bae0b758cf0a60e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a542c7c7d524d87bae0b758cf0a60e5.jpg", "file_size": 15219, "is_delete": false, "file_type": 1, "original_file_name": "839FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a542c7c7d524d87bae0b758cf0a60e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a542c7c7d524d87bae0b758cf0a60e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a542c7c7d524d87bae0b758cf0a60e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a542c7c7d524d87bae0b758cf0a60e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a542c7c7d524d87bae0b758cf0a60e5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8DVaS_LnbpYu8kM1TeufoH-TbE=", "createTime": "2024-08-15 14:57:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.019785+00 2025-12-09 10:15:26.019789+00 14496 LZ1332#捆条布 SPMX-20240815309708 \N \N \N 1 \N [{"file_id": "219b3892-6ec4-40f2-b66e-3388430ffdb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1048149016c74ef98e3ebb095e2b5aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1048149016c74ef98e3ebb095e2b5aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1048149016c74ef98e3ebb095e2b5aa4.jpg", "file_size": 25992, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048149016c74ef98e3ebb095e2b5aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048149016c74ef98e3ebb095e2b5aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1048149016c74ef98e3ebb095e2b5aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1048149016c74ef98e3ebb095e2b5aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1048149016c74ef98e3ebb095e2b5aa4.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNCZrF41mAxQxHvx4Y8GgaGTWXk=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.022199+00 2025-12-09 10:15:26.022205+00 14497 JTSS549FW#VS-D3 SPMX-20240815309705 \N \N \N 1 \N [{"file_id": "2faf6c03-a664-48b9-99cd-b010c71308ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b84ef4992b954040ae5be188986c1b2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b84ef4992b954040ae5be188986c1b2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b84ef4992b954040ae5be188986c1b2f.jpg", "file_size": 28496, "is_delete": false, "file_type": 1, "original_file_name": "JTSS549FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84ef4992b954040ae5be188986c1b2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84ef4992b954040ae5be188986c1b2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84ef4992b954040ae5be188986c1b2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b84ef4992b954040ae5be188986c1b2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b84ef4992b954040ae5be188986c1b2f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Id83H1cK-pXZcF7erWuFnRMvQPc=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.024359+00 2025-12-09 10:15:26.024365+00 14498 12-3G31#彩蓝M SPMX-20240815309707 \N \N \N 1 \N [{"file_id": "91c9acd3-febc-435f-a7d4-6e1cc27c555b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08439632c7924802b6b6c438b721f5f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08439632c7924802b6b6c438b721f5f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08439632c7924802b6b6c438b721f5f2.jpg", "file_size": 18080, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#彩蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08439632c7924802b6b6c438b721f5f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08439632c7924802b6b6c438b721f5f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08439632c7924802b6b6c438b721f5f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08439632c7924802b6b6c438b721f5f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08439632c7924802b6b6c438b721f5f2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gfw-6UOFBBbYNQ4-XZEK8LVRCwM=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.026779+00 2025-12-09 10:15:26.026785+00 14499 HT6848FWE#正身L SPMX-20240815309702 \N \N \N 1 \N [{"file_id": "36b27847-791c-426c-97e4-f98e0c2e9e38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg", "file_size": 15959, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6754eee3bce94a3a9d8b7c5e6a0f0d31.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VuQl-t0zjKjiBBz3ZV8Ke0dNT2s=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.029403+00 2025-12-09 10:15:26.029408+00 14500 C939#墨绿XL SPMX-20240815309704 \N \N \N 1 \N [{"file_id": "463b23e0-2100-4dbb-bc9d-502b05ce780c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6061b60d58104a8fb87a523b801dd1c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6061b60d58104a8fb87a523b801dd1c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6061b60d58104a8fb87a523b801dd1c8.jpg", "file_size": 23111, "is_delete": false, "file_type": 1, "original_file_name": "C939#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6061b60d58104a8fb87a523b801dd1c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6061b60d58104a8fb87a523b801dd1c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6061b60d58104a8fb87a523b801dd1c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6061b60d58104a8fb87a523b801dd1c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6061b60d58104a8fb87a523b801dd1c8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ap8hU_e_AmkD1fZS2CoEHxXpBsc=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.031797+00 2025-12-09 10:15:26.031803+00 14501 DL31147#浅粉 SPMX-20240815309699 \N \N \N 1 \N [{"file_id": "0f70a3a7-7cdd-4b84-a425-92d28ab50e4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2571b7efc12547fbb5ecba5f41dbd42a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2571b7efc12547fbb5ecba5f41dbd42a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2571b7efc12547fbb5ecba5f41dbd42a.jpg", "file_size": 22233, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2571b7efc12547fbb5ecba5f41dbd42a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2571b7efc12547fbb5ecba5f41dbd42a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2571b7efc12547fbb5ecba5f41dbd42a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2571b7efc12547fbb5ecba5f41dbd42a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2571b7efc12547fbb5ecba5f41dbd42a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jBb_VPSSyFAZsOpSxJgrLJnMbU=", "createTime": "2024-08-15 14:57:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.034214+00 2025-12-09 10:15:26.034219+00 14502 LJH1783#红色 SPMX-20240815309706 \N \N \N 1 \N [{"file_id": "ad15fbc0-cf59-4483-b882-3648a665e6cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23a853caf2694044a254339f21cd77ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23a853caf2694044a254339f21cd77ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23a853caf2694044a254339f21cd77ec.jpg", "file_size": 73022, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a853caf2694044a254339f21cd77ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a853caf2694044a254339f21cd77ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23a853caf2694044a254339f21cd77ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23a853caf2694044a254339f21cd77ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23a853caf2694044a254339f21cd77ec.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9w2Hd7lXvoEB9OxDMW_btJjxFGw=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.036408+00 2025-12-09 10:15:26.036413+00 14503 839FWF#豆沙 SPMX-20240815309709 \N \N \N 1 \N [{"file_id": "43d3cffb-ef56-48ed-9f41-53cc200cf421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40cc79fa463426e99496c9855d45da9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40cc79fa463426e99496c9855d45da9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40cc79fa463426e99496c9855d45da9.jpg", "file_size": 13874, "is_delete": false, "file_type": 1, "original_file_name": "839FWF#豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40cc79fa463426e99496c9855d45da9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40cc79fa463426e99496c9855d45da9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40cc79fa463426e99496c9855d45da9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40cc79fa463426e99496c9855d45da9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40cc79fa463426e99496c9855d45da9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VxaMhnNB_Do9BiuM1J3ZrJzcEY=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.038562+00 2025-12-09 10:15:26.038567+00 14504 23-2124#A2-领子4XL SPMX-20240815309701 \N \N \N 1 \N [{"file_id": "cd8e856b-2eff-436a-b5aa-ea7413897c68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11c0d8fcd22f40d193f98d70986f49d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11c0d8fcd22f40d193f98d70986f49d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11c0d8fcd22f40d193f98d70986f49d0.jpg", "file_size": 13413, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c0d8fcd22f40d193f98d70986f49d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c0d8fcd22f40d193f98d70986f49d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11c0d8fcd22f40d193f98d70986f49d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11c0d8fcd22f40d193f98d70986f49d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11c0d8fcd22f40d193f98d70986f49d0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ye2PiYS06PVYbzS1nMuIWys7s78=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.040968+00 2025-12-09 10:15:26.040974+00 14505 FND4054FWE# SPMX-20240815309703 \N \N \N 1 \N [{"file_id": "7f2960df-52c0-4b47-be8c-5a4042dd872b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7755e4d9b4e14838ba2bf45dfc3561de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7755e4d9b4e14838ba2bf45dfc3561de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7755e4d9b4e14838ba2bf45dfc3561de.jpg", "file_size": 26466, "is_delete": false, "file_type": 1, "original_file_name": "FND4054FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7755e4d9b4e14838ba2bf45dfc3561de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7755e4d9b4e14838ba2bf45dfc3561de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7755e4d9b4e14838ba2bf45dfc3561de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7755e4d9b4e14838ba2bf45dfc3561de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7755e4d9b4e14838ba2bf45dfc3561de.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qL9deo3coOSu5itl5ZcatBeydjo=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.043443+00 2025-12-09 10:15:26.04345+00 14506 23-2124#A3-3XL SPMX-20240815309710 \N \N \N 1 \N [{"file_id": "d79e156e-65f3-46c5-8d01-d28c081498a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3063088e03ce4d90bf22fc1aef0b859b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3063088e03ce4d90bf22fc1aef0b859b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3063088e03ce4d90bf22fc1aef0b859b.jpg", "file_size": 15071, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063088e03ce4d90bf22fc1aef0b859b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063088e03ce4d90bf22fc1aef0b859b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3063088e03ce4d90bf22fc1aef0b859b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3063088e03ce4d90bf22fc1aef0b859b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3063088e03ce4d90bf22fc1aef0b859b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rlj-P1Gqw9VV5twA9Fck_YGIS40=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.045594+00 2025-12-09 10:15:26.045599+00 14507 HT6848FWE#正身M SPMX-20240815309712 \N \N \N 1 \N [{"file_id": "5bb0cbbd-985a-4269-9060-b304d85ca3fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0eef89806a04eae97396bba977de09a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0eef89806a04eae97396bba977de09a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0eef89806a04eae97396bba977de09a.jpg", "file_size": 16348, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0eef89806a04eae97396bba977de09a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0eef89806a04eae97396bba977de09a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0eef89806a04eae97396bba977de09a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0eef89806a04eae97396bba977de09a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0eef89806a04eae97396bba977de09a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxSfJoKydblOqfxyUpts-N774j4=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.048041+00 2025-12-09 10:15:26.048046+00 14508 0006-20FWE#VS-D3 SPMX-20240815309700 \N \N \N 1 \N [{"file_id": "8c54af86-7208-4ebb-adbd-72999d848746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80c24f59e5414a79adc2471c8489fd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80c24f59e5414a79adc2471c8489fd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80c24f59e5414a79adc2471c8489fd38.jpg", "file_size": 11187, "is_delete": false, "file_type": 1, "original_file_name": "0006-20FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c24f59e5414a79adc2471c8489fd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c24f59e5414a79adc2471c8489fd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80c24f59e5414a79adc2471c8489fd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80c24f59e5414a79adc2471c8489fd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80c24f59e5414a79adc2471c8489fd38.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBQOoSCclXK9ByG3yxg3NtmPi_c=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.050458+00 2025-12-09 10:15:26.050463+00 14509 DL31147#浅粉雪纺 SPMX-20240815309711 \N \N \N 1 \N [{"file_id": "2dca1c60-b1fa-40a4-916e-22d3e5d39772", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb120dec981d4210b164bbf4a18d5871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb120dec981d4210b164bbf4a18d5871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb120dec981d4210b164bbf4a18d5871.jpg", "file_size": 21817, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#浅粉雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb120dec981d4210b164bbf4a18d5871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb120dec981d4210b164bbf4a18d5871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb120dec981d4210b164bbf4a18d5871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb120dec981d4210b164bbf4a18d5871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb120dec981d4210b164bbf4a18d5871.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqzzfDfwfn8ASdA9MGl44dWEwXs=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.052649+00 2025-12-09 10:15:26.052654+00 14510 0006-20FWF#V5曲线 SPMX-20240815309713 \N \N \N 1 \N [{"file_id": "4d7314a6-eb8d-49ba-9001-5ce9cedb24af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd6db83631084898a7ce688be372bdc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd6db83631084898a7ce688be372bdc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd6db83631084898a7ce688be372bdc7.jpg", "file_size": 26702, "is_delete": false, "file_type": 1, "original_file_name": "0006-20FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6db83631084898a7ce688be372bdc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6db83631084898a7ce688be372bdc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd6db83631084898a7ce688be372bdc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd6db83631084898a7ce688be372bdc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd6db83631084898a7ce688be372bdc7.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X70HyNRHoJqTcwcjcrZPKiIQd4w=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.055043+00 2025-12-09 10:15:26.055048+00 14511 C939#白色L SPMX-20240815309714 \N \N \N 1 \N [{"file_id": "9a406e82-55f7-4ed1-8bf1-72e60c0c44a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddd64870572d4ec8a2328221d8d7105a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddd64870572d4ec8a2328221d8d7105a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddd64870572d4ec8a2328221d8d7105a.jpg", "file_size": 21405, "is_delete": false, "file_type": 1, "original_file_name": "C939#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd64870572d4ec8a2328221d8d7105a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd64870572d4ec8a2328221d8d7105a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd64870572d4ec8a2328221d8d7105a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddd64870572d4ec8a2328221d8d7105a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddd64870572d4ec8a2328221d8d7105a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:adudI8mgpfvmG12HjS5rlSKCTZg=", "createTime": "2024-08-15 14:57:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.057418+00 2025-12-09 10:15:26.057424+00 14512 LZ1332#背心款1号色 SPMX-20240815309717 \N \N \N 1 \N [{"file_id": "c0b62c07-1d71-4a0f-a339-b1901c5afe58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9d0f3345e2142abb57d907ea9876133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9d0f3345e2142abb57d907ea9876133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9d0f3345e2142abb57d907ea9876133.jpg", "file_size": 19705, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d0f3345e2142abb57d907ea9876133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d0f3345e2142abb57d907ea9876133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d0f3345e2142abb57d907ea9876133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9d0f3345e2142abb57d907ea9876133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9d0f3345e2142abb57d907ea9876133.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QcwDFYbkM6LZkZo--ivrwYze7s=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.0599+00 2025-12-09 10:15:26.059906+00 14513 12-3G31#彩蓝XL SPMX-20240815309719 \N \N \N 1 \N [{"file_id": "854195c2-31ce-489d-bcce-65ad4e3b9da2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "646e85b8935245238f6941112fdfacb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "646e85b8935245238f6941112fdfacb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "646e85b8935245238f6941112fdfacb5.jpg", "file_size": 17849, "is_delete": false, "file_type": 1, "original_file_name": "12-3G31#彩蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646e85b8935245238f6941112fdfacb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646e85b8935245238f6941112fdfacb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/646e85b8935245238f6941112fdfacb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/646e85b8935245238f6941112fdfacb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/646e85b8935245238f6941112fdfacb5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXfuIt3W6JB2kWTDC-3WmujgK-U=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.062579+00 2025-12-09 10:15:26.062585+00 14514 LJH1783#绿色 SPMX-20240815309718 \N \N \N 1 \N [{"file_id": "156be5a5-ce1d-4d15-904e-78f7060fdf3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fba17bd558824c65857e190fa66d6096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fba17bd558824c65857e190fa66d6096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fba17bd558824c65857e190fa66d6096.jpg", "file_size": 69377, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba17bd558824c65857e190fa66d6096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba17bd558824c65857e190fa66d6096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba17bd558824c65857e190fa66d6096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fba17bd558824c65857e190fa66d6096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fba17bd558824c65857e190fa66d6096.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:haQ1ZNj8A59Gzq1Pika8Z7tk4q4=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.065308+00 2025-12-09 10:15:26.065313+00 14515 JTSS550FW#VS-D3 SPMX-20240815309715 \N \N \N 1 \N [{"file_id": "633e7122-a241-4ac0-9953-a9ffc43946c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95f0a42f2bd840cba05cfad990de4091.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95f0a42f2bd840cba05cfad990de4091.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95f0a42f2bd840cba05cfad990de4091.jpg", "file_size": 22469, "is_delete": false, "file_type": 1, "original_file_name": "JTSS550FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f0a42f2bd840cba05cfad990de4091.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f0a42f2bd840cba05cfad990de4091.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f0a42f2bd840cba05cfad990de4091.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95f0a42f2bd840cba05cfad990de4091.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95f0a42f2bd840cba05cfad990de4091.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3zai-6XE_g1Kq0Bc94A5jYcZO4=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.067983+00 2025-12-09 10:15:26.067989+00 14516 FND4120FWE#妈妈装-天蓝 SPMX-20240815309716 \N \N \N 1 \N [{"file_id": "7f9a340a-6f70-4459-ad71-ca9f55c62022", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e26e9073b721420db77c9506868efbcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e26e9073b721420db77c9506868efbcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e26e9073b721420db77c9506868efbcb.jpg", "file_size": 18259, "is_delete": false, "file_type": 1, "original_file_name": "FND4120FWE#妈妈装-天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26e9073b721420db77c9506868efbcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26e9073b721420db77c9506868efbcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26e9073b721420db77c9506868efbcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e26e9073b721420db77c9506868efbcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e26e9073b721420db77c9506868efbcb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZjq67-RbGM5XFOcTgn8TNnU-n4=", "createTime": "2024-08-15 14:57:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.070654+00 2025-12-09 10:15:26.07066+00 14517 HT6848FWE#正身XL SPMX-20240815309727 \N \N \N 1 \N [{"file_id": "d0a77dda-6eea-4142-83fd-3b2f3814c507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a12d3c0911d41e8bd777e1aa9d42e6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a12d3c0911d41e8bd777e1aa9d42e6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a12d3c0911d41e8bd777e1aa9d42e6b.jpg", "file_size": 15759, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a12d3c0911d41e8bd777e1aa9d42e6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a12d3c0911d41e8bd777e1aa9d42e6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a12d3c0911d41e8bd777e1aa9d42e6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a12d3c0911d41e8bd777e1aa9d42e6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a12d3c0911d41e8bd777e1aa9d42e6b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ovxTyhHf7D1BGcq9vaDM1xGn91k=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.073126+00 2025-12-09 10:15:26.073131+00 14518 LZ1332#背心款2号色 SPMX-20240815309728 \N \N \N 1 \N [{"file_id": "1122f885-06cb-4f4f-99cc-85d37519d4e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96bd212079a24c3e9deff987358bedc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96bd212079a24c3e9deff987358bedc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96bd212079a24c3e9deff987358bedc5.jpg", "file_size": 19269, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bd212079a24c3e9deff987358bedc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bd212079a24c3e9deff987358bedc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96bd212079a24c3e9deff987358bedc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96bd212079a24c3e9deff987358bedc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96bd212079a24c3e9deff987358bedc5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52TPdssDXVe0_O5ZKyLyjMw265E=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.075857+00 2025-12-09 10:15:26.075863+00 14519 0006-21FWE#VS-D3 SPMX-20240815309723 \N \N \N 1 \N [{"file_id": "3cdbefbf-dd62-4b2a-bc8f-11b7bb11599b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e93918e793f544a787052d7777e2321b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e93918e793f544a787052d7777e2321b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e93918e793f544a787052d7777e2321b.jpg", "file_size": 21012, "is_delete": false, "file_type": 1, "original_file_name": "0006-21FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e93918e793f544a787052d7777e2321b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e93918e793f544a787052d7777e2321b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e93918e793f544a787052d7777e2321b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e93918e793f544a787052d7777e2321b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e93918e793f544a787052d7777e2321b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghpplsrvHZ0Hx3sYRVHlIjefJcM=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.078558+00 2025-12-09 10:15:26.078565+00 14520 8401#枣红色 SPMX-20240815309720 \N \N \N 1 \N [{"file_id": "28ab005e-501e-460b-b066-6428c229b143", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31b3d8190de44cfbbd5db3eb3c582db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31b3d8190de44cfbbd5db3eb3c582db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31b3d8190de44cfbbd5db3eb3c582db.jpg", "file_size": 27137, "is_delete": false, "file_type": 1, "original_file_name": "8401#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31b3d8190de44cfbbd5db3eb3c582db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31b3d8190de44cfbbd5db3eb3c582db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31b3d8190de44cfbbd5db3eb3c582db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31b3d8190de44cfbbd5db3eb3c582db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31b3d8190de44cfbbd5db3eb3c582db.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJ-bI9ljy5ZwRVLdJ73ZhTnOqXc=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.080778+00 2025-12-09 10:15:26.080784+00 14521 FND4120FWE#妈妈装-橙色 SPMX-20240815309724 \N \N \N 1 \N [{"file_id": "a85a6645-d1d0-4b1f-8a49-17cf436e293b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c2ef84ef239426bbfdcd0f072093034.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c2ef84ef239426bbfdcd0f072093034.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c2ef84ef239426bbfdcd0f072093034.jpg", "file_size": 17735, "is_delete": false, "file_type": 1, "original_file_name": "FND4120FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2ef84ef239426bbfdcd0f072093034.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2ef84ef239426bbfdcd0f072093034.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2ef84ef239426bbfdcd0f072093034.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c2ef84ef239426bbfdcd0f072093034.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c2ef84ef239426bbfdcd0f072093034.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHGbVJeG6Md7xojeX9M5SxqO19I=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.083182+00 2025-12-09 10:15:26.083187+00 14522 23-2124#A3-4XL SPMX-20240815309721 \N \N \N 1 \N [{"file_id": "680f27ad-e9b9-4dfe-a5b8-6f9de4434681", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae200f1da3c84ddd8eb9f474b7946612.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae200f1da3c84ddd8eb9f474b7946612.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae200f1da3c84ddd8eb9f474b7946612.jpg", "file_size": 14348, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae200f1da3c84ddd8eb9f474b7946612.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae200f1da3c84ddd8eb9f474b7946612.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae200f1da3c84ddd8eb9f474b7946612.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae200f1da3c84ddd8eb9f474b7946612.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae200f1da3c84ddd8eb9f474b7946612.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--OWJbaliMNMKgTItiR2MryVMRY=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.085573+00 2025-12-09 10:15:26.085579+00 14523 JTSS551FW#VS-D3 SPMX-20240815309722 \N \N \N 1 \N [{"file_id": "19b1f3b4-666c-4977-b321-cbcd654b652e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c42e7647252947c7a32f2fdf3425e93c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c42e7647252947c7a32f2fdf3425e93c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c42e7647252947c7a32f2fdf3425e93c.jpg", "file_size": 10204, "is_delete": false, "file_type": 1, "original_file_name": "JTSS551FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42e7647252947c7a32f2fdf3425e93c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42e7647252947c7a32f2fdf3425e93c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42e7647252947c7a32f2fdf3425e93c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c42e7647252947c7a32f2fdf3425e93c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c42e7647252947c7a32f2fdf3425e93c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd_Lgsp4whJQ8b1qtIG2lNIO1CA=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.087726+00 2025-12-09 10:15:26.087731+00 14524 C939#白色XL SPMX-20240815309729 \N \N \N 1 \N [{"file_id": "4bab321a-0048-466b-a8b4-623b4fe3ae9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8b5366813d64b998bf11f982af1ccc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8b5366813d64b998bf11f982af1ccc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8b5366813d64b998bf11f982af1ccc2.jpg", "file_size": 21744, "is_delete": false, "file_type": 1, "original_file_name": "C939#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b5366813d64b998bf11f982af1ccc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b5366813d64b998bf11f982af1ccc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b5366813d64b998bf11f982af1ccc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8b5366813d64b998bf11f982af1ccc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8b5366813d64b998bf11f982af1ccc2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LnR7oU4kg69Rkwu8btQnlWXcY4=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.089924+00 2025-12-09 10:15:26.08993+00 14525 120#-杏色 SPMX-20240815309730 \N \N \N 1 \N [{"file_id": "fae724a1-ba1f-42b7-802d-033dd670f5dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f723e5adaa418ab6a01989cb2c2a90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f723e5adaa418ab6a01989cb2c2a90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f723e5adaa418ab6a01989cb2c2a90.jpg", "file_size": 50924, "is_delete": false, "file_type": 1, "original_file_name": "120#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f723e5adaa418ab6a01989cb2c2a90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f723e5adaa418ab6a01989cb2c2a90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f723e5adaa418ab6a01989cb2c2a90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f723e5adaa418ab6a01989cb2c2a90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f723e5adaa418ab6a01989cb2c2a90.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MVvYte_XN6N4jtIsZpvTQT2T9o=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.092426+00 2025-12-09 10:15:26.092431+00 14526 LJH1783#蓝色 SPMX-20240815309726 \N \N \N 1 \N [{"file_id": "3adf8475-2b30-42cf-a86a-9b80425e74ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d139c3a1fb4b2ab06fadce715e7f0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d139c3a1fb4b2ab06fadce715e7f0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d139c3a1fb4b2ab06fadce715e7f0b.jpg", "file_size": 69659, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d139c3a1fb4b2ab06fadce715e7f0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d139c3a1fb4b2ab06fadce715e7f0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d139c3a1fb4b2ab06fadce715e7f0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d139c3a1fb4b2ab06fadce715e7f0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d139c3a1fb4b2ab06fadce715e7f0b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hc1UB-7UyKnxO4Lq0ygupNeeNWE=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.094935+00 2025-12-09 10:15:26.094941+00 14527 DL31147#玫红 SPMX-20240815309725 \N \N \N 1 \N [{"file_id": "4ad834fa-715e-4993-8036-e40b6dd97b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b00510ec53fb47a0beb1dda8cbfd6ac5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b00510ec53fb47a0beb1dda8cbfd6ac5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b00510ec53fb47a0beb1dda8cbfd6ac5.jpg", "file_size": 22580, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00510ec53fb47a0beb1dda8cbfd6ac5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00510ec53fb47a0beb1dda8cbfd6ac5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b00510ec53fb47a0beb1dda8cbfd6ac5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b00510ec53fb47a0beb1dda8cbfd6ac5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b00510ec53fb47a0beb1dda8cbfd6ac5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIMf3r0cLowzxQlKYTUKcxkhftM=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.097592+00 2025-12-09 10:15:26.097598+00 14528 8401#枣红色头巾匹布 SPMX-20240815309731 \N \N \N 1 \N [{"file_id": "67445f6a-e179-4cfc-9e06-57abec7ada49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1f45e199bec4d9689ec309a0ae4bde6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1f45e199bec4d9689ec309a0ae4bde6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1f45e199bec4d9689ec309a0ae4bde6.jpg", "file_size": 25576, "is_delete": false, "file_type": 1, "original_file_name": "8401#枣红色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f45e199bec4d9689ec309a0ae4bde6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f45e199bec4d9689ec309a0ae4bde6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f45e199bec4d9689ec309a0ae4bde6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1f45e199bec4d9689ec309a0ae4bde6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1f45e199bec4d9689ec309a0ae4bde6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIsga_AKnzs0X1xZA3_OgwMGIdc=", "createTime": "2024-08-15 14:57:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.100116+00 2025-12-09 10:15:26.100122+00 14529 23-2124#A3-领子3XL SPMX-20240815309732 \N \N \N 1 \N [{"file_id": "05e135ba-1a4d-4dab-9432-1a328516a088", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52ea2fa9c89548a38c69f406c0e37036.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52ea2fa9c89548a38c69f406c0e37036.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52ea2fa9c89548a38c69f406c0e37036.jpg", "file_size": 13365, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ea2fa9c89548a38c69f406c0e37036.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ea2fa9c89548a38c69f406c0e37036.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ea2fa9c89548a38c69f406c0e37036.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52ea2fa9c89548a38c69f406c0e37036.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52ea2fa9c89548a38c69f406c0e37036.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAep_kl8od8v9FedaPH_E_JfvjU=", "createTime": "2024-08-15 14:57:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.102633+00 2025-12-09 10:15:26.10264+00 14530 FND4120FWE#妈妈装-深蓝 SPMX-20240815309733 \N \N \N 1 \N [{"file_id": "179af13f-51bd-4d2d-8587-4474bb2f5a1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20aa545bc93849b7bf4367d407825baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20aa545bc93849b7bf4367d407825baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20aa545bc93849b7bf4367d407825baa.jpg", "file_size": 18396, "is_delete": false, "file_type": 1, "original_file_name": "FND4120FWE#妈妈装-深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aa545bc93849b7bf4367d407825baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aa545bc93849b7bf4367d407825baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20aa545bc93849b7bf4367d407825baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20aa545bc93849b7bf4367d407825baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20aa545bc93849b7bf4367d407825baa.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L-r9jywDakPQbGKV537LJQQz520=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.105282+00 2025-12-09 10:15:26.105288+00 14531 DL31147#玫红雪纺 SPMX-20240815309738 \N \N \N 1 \N [{"file_id": "3c429868-cc0b-4687-90cf-a1961c390d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd41d080739442b0919306bf5d6de710.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd41d080739442b0919306bf5d6de710.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd41d080739442b0919306bf5d6de710.jpg", "file_size": 22605, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#玫红雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd41d080739442b0919306bf5d6de710.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd41d080739442b0919306bf5d6de710.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd41d080739442b0919306bf5d6de710.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd41d080739442b0919306bf5d6de710.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd41d080739442b0919306bf5d6de710.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pvb9MvPJn0RgpnLg_D8JBZmmX2k=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.107879+00 2025-12-09 10:15:26.107886+00 14532 C939#红色L SPMX-20240815309735 \N \N \N 1 \N [{"file_id": "85819fd5-6490-47f0-a6c1-56a9b8800b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bff492f1c4054b26adc9d4a2979cc35a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bff492f1c4054b26adc9d4a2979cc35a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bff492f1c4054b26adc9d4a2979cc35a.jpg", "file_size": 22577, "is_delete": false, "file_type": 1, "original_file_name": "C939#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff492f1c4054b26adc9d4a2979cc35a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff492f1c4054b26adc9d4a2979cc35a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bff492f1c4054b26adc9d4a2979cc35a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bff492f1c4054b26adc9d4a2979cc35a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bff492f1c4054b26adc9d4a2979cc35a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nIu6WlREYz2hLuvGQQ7Ae-NWBVk=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.11049+00 2025-12-09 10:15:26.110496+00 14533 HT6848FWE#袖口领子2XL SPMX-20240815309734 \N \N \N 1 \N [{"file_id": "d8bfef13-5a03-472c-b5cc-525db6d28333", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c4fba3547f94b7da924feb10ca48e9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c4fba3547f94b7da924feb10ca48e9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c4fba3547f94b7da924feb10ca48e9b.jpg", "file_size": 19378, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#袖口领子2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4fba3547f94b7da924feb10ca48e9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4fba3547f94b7da924feb10ca48e9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c4fba3547f94b7da924feb10ca48e9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c4fba3547f94b7da924feb10ca48e9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c4fba3547f94b7da924feb10ca48e9b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcqEJyuS5xzV7OnlTP8e4sb7eVk=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.113236+00 2025-12-09 10:15:26.113242+00 14534 23-2124#A3-领子4XL SPMX-20240815309742 \N \N \N 1 \N [{"file_id": "07693c71-8251-4032-8371-56588d0a3034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d1ef32f6f3c4807972071fd6d8d481c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d1ef32f6f3c4807972071fd6d8d481c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d1ef32f6f3c4807972071fd6d8d481c.jpg", "file_size": 13807, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ef32f6f3c4807972071fd6d8d481c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ef32f6f3c4807972071fd6d8d481c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ef32f6f3c4807972071fd6d8d481c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d1ef32f6f3c4807972071fd6d8d481c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d1ef32f6f3c4807972071fd6d8d481c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QdKDtxniN5OHa6F6DAoFDS1sFeA=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.115852+00 2025-12-09 10:15:26.115858+00 14535 JTSS552FW#VS-D3 SPMX-20240815309736 \N \N \N 1 \N [{"file_id": "045f69ec-6f4c-40d9-85d6-281576ef6b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a5ffb5380854eb299cb8acbc1b6c1ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a5ffb5380854eb299cb8acbc1b6c1ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a5ffb5380854eb299cb8acbc1b6c1ac.jpg", "file_size": 22420, "is_delete": false, "file_type": 1, "original_file_name": "JTSS552FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5ffb5380854eb299cb8acbc1b6c1ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5ffb5380854eb299cb8acbc1b6c1ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5ffb5380854eb299cb8acbc1b6c1ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a5ffb5380854eb299cb8acbc1b6c1ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a5ffb5380854eb299cb8acbc1b6c1ac.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-kHz1Padi1jgW1Irt_k5ZHSFNk=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.11852+00 2025-12-09 10:15:26.118525+00 14536 LJH1783#黄色 SPMX-20240815309740 \N \N \N 1 \N [{"file_id": "a8b9a7d1-350f-438a-a0a7-e9bf536f338e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c78879738764244b6c65427af79b7bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c78879738764244b6c65427af79b7bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c78879738764244b6c65427af79b7bc.jpg", "file_size": 69042, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c78879738764244b6c65427af79b7bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c78879738764244b6c65427af79b7bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c78879738764244b6c65427af79b7bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c78879738764244b6c65427af79b7bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c78879738764244b6c65427af79b7bc.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvTtPY7XyIaZ9b-YxxukmWoIkl0=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.121112+00 2025-12-09 10:15:26.121117+00 14537 120#-灰色 SPMX-20240815309741 \N \N \N 1 \N [{"file_id": "5cc25731-e502-4daf-80c4-8b43849dc270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67709cf78e274360b47b780a338a2c9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67709cf78e274360b47b780a338a2c9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67709cf78e274360b47b780a338a2c9b.jpg", "file_size": 60988, "is_delete": false, "file_type": 1, "original_file_name": "120#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67709cf78e274360b47b780a338a2c9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67709cf78e274360b47b780a338a2c9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67709cf78e274360b47b780a338a2c9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67709cf78e274360b47b780a338a2c9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67709cf78e274360b47b780a338a2c9b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WHxtn1zV1Gqb1xzREnv656_Nc-Q=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.123714+00 2025-12-09 10:15:26.123719+00 14538 0006-21FWF#V5曲线 SPMX-20240815309737 \N \N \N 1 \N [{"file_id": "40032da8-5916-4665-a028-c1390dfd03d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccbb0428212a4f74bc3fd80fbf20684f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccbb0428212a4f74bc3fd80fbf20684f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccbb0428212a4f74bc3fd80fbf20684f.jpg", "file_size": 26936, "is_delete": false, "file_type": 1, "original_file_name": "0006-21FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb0428212a4f74bc3fd80fbf20684f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb0428212a4f74bc3fd80fbf20684f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccbb0428212a4f74bc3fd80fbf20684f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccbb0428212a4f74bc3fd80fbf20684f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccbb0428212a4f74bc3fd80fbf20684f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nl6peOrzxI7-iiCq-WQMws514Aw=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.126262+00 2025-12-09 10:15:26.126268+00 14539 LZ1332#背心款3号色 SPMX-20240815309739 \N \N \N 1 \N [{"file_id": "3728ef61-a59b-4046-b005-2853b9863908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3b989887190470aab39a20919c62e51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3b989887190470aab39a20919c62e51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3b989887190470aab39a20919c62e51.jpg", "file_size": 19566, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b989887190470aab39a20919c62e51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b989887190470aab39a20919c62e51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b989887190470aab39a20919c62e51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3b989887190470aab39a20919c62e51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3b989887190470aab39a20919c62e51.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cyxd-naHtGNqeFNeDhHwTYnGlos=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.128785+00 2025-12-09 10:15:26.12879+00 14540 8401#橙色 SPMX-20240815309743 \N \N \N 1 \N [{"file_id": "c7416929-eb17-4877-a6bb-d9250547d903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6de9401dec8f48c7916dc93a1587ddc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6de9401dec8f48c7916dc93a1587ddc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6de9401dec8f48c7916dc93a1587ddc1.jpg", "file_size": 25402, "is_delete": false, "file_type": 1, "original_file_name": "8401#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de9401dec8f48c7916dc93a1587ddc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de9401dec8f48c7916dc93a1587ddc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de9401dec8f48c7916dc93a1587ddc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6de9401dec8f48c7916dc93a1587ddc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6de9401dec8f48c7916dc93a1587ddc1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2dA3MGJg-NZdkR7CuXA1NbdWD1U=", "createTime": "2024-08-15 14:57:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.131357+00 2025-12-09 10:15:26.131362+00 14541 23-2124#A4-3XL SPMX-20240815309750 \N \N \N 1 \N [{"file_id": "559c47d3-7b5f-4b87-8657-580cc7e6402f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "629bc50b091e4b05800bb23c6a4ee8d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "629bc50b091e4b05800bb23c6a4ee8d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "629bc50b091e4b05800bb23c6a4ee8d3.jpg", "file_size": 23662, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629bc50b091e4b05800bb23c6a4ee8d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629bc50b091e4b05800bb23c6a4ee8d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629bc50b091e4b05800bb23c6a4ee8d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/629bc50b091e4b05800bb23c6a4ee8d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/629bc50b091e4b05800bb23c6a4ee8d3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JVmE4_v0QZp0UapZAWxFNL9N3Ws=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.133951+00 2025-12-09 10:15:26.133957+00 14542 LJH1783-2#红色 SPMX-20240815309754 \N \N \N 1 \N [{"file_id": "b6d91213-1271-4dec-bcf1-9f33f1ae836d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29082b27d76e47f1af110216a1b22f16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29082b27d76e47f1af110216a1b22f16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29082b27d76e47f1af110216a1b22f16.jpg", "file_size": 71512, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783-2#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29082b27d76e47f1af110216a1b22f16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29082b27d76e47f1af110216a1b22f16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29082b27d76e47f1af110216a1b22f16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29082b27d76e47f1af110216a1b22f16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29082b27d76e47f1af110216a1b22f16.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Su8BAGauGtRbcFJTXm2d44WNyR8=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.136513+00 2025-12-09 10:15:26.136518+00 14543 JTSS553FW#白VS-D3 SPMX-20240815309748 \N \N \N 1 \N [{"file_id": "aaadab92-6de3-4344-8b84-df2587c436eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0e3bfbdae2549968865d98407f5c953.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0e3bfbdae2549968865d98407f5c953.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0e3bfbdae2549968865d98407f5c953.jpg", "file_size": 14901, "is_delete": false, "file_type": 1, "original_file_name": "JTSS553FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e3bfbdae2549968865d98407f5c953.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e3bfbdae2549968865d98407f5c953.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e3bfbdae2549968865d98407f5c953.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0e3bfbdae2549968865d98407f5c953.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0e3bfbdae2549968865d98407f5c953.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvrdQe-UqxAhYp2bHzk3Vo2xG9k=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.139089+00 2025-12-09 10:15:26.139095+00 14544 DL31147#皮粉 SPMX-20240815309749 \N \N \N 1 \N [{"file_id": "052009f5-0759-4534-9ba0-84f43b82ffba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "620c495799d84123aaffd113d07bfc29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "620c495799d84123aaffd113d07bfc29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "620c495799d84123aaffd113d07bfc29.jpg", "file_size": 22756, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#皮粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620c495799d84123aaffd113d07bfc29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620c495799d84123aaffd113d07bfc29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620c495799d84123aaffd113d07bfc29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/620c495799d84123aaffd113d07bfc29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/620c495799d84123aaffd113d07bfc29.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJSof87LcvCOOuFOSwFJfF9Y-14=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.141692+00 2025-12-09 10:15:26.141698+00 14545 120#-白色 SPMX-20240815309752 \N \N \N 1 \N [{"file_id": "5acf98da-faf1-4bb8-9115-8a28c3060304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "997b7551bb954efd8b9a89500dea3596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "997b7551bb954efd8b9a89500dea3596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "997b7551bb954efd8b9a89500dea3596.jpg", "file_size": 47642, "is_delete": false, "file_type": 1, "original_file_name": "120#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b7551bb954efd8b9a89500dea3596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b7551bb954efd8b9a89500dea3596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b7551bb954efd8b9a89500dea3596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/997b7551bb954efd8b9a89500dea3596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/997b7551bb954efd8b9a89500dea3596.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yKVnT2JwwKQ5MtCOQWVQaMzyM0A=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.144284+00 2025-12-09 10:15:26.144289+00 14546 C939#红色XL SPMX-20240815309746 \N \N \N 1 \N [{"file_id": "7fab11c6-b7c8-4afb-b007-0c3c276cce86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg", "file_size": 22690, "is_delete": false, "file_type": 1, "original_file_name": "C939#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f0fab6bbe2f4b04a86b3b4a3e6b0e37.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R9XxW-AZj32Qb6GoFb-iWP6V6hY=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.146881+00 2025-12-09 10:15:26.146887+00 14547 FND4120FWE#妈妈装-紫色 SPMX-20240815309745 \N \N \N 1 \N [{"file_id": "2c737ec6-1470-4ea4-a433-0a0c8775fa1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a41d9191be434786a906df93c5284115.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a41d9191be434786a906df93c5284115.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a41d9191be434786a906df93c5284115.jpg", "file_size": 18765, "is_delete": false, "file_type": 1, "original_file_name": "FND4120FWE#妈妈装-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41d9191be434786a906df93c5284115.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41d9191be434786a906df93c5284115.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41d9191be434786a906df93c5284115.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a41d9191be434786a906df93c5284115.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a41d9191be434786a906df93c5284115.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aLnS-GMNIRe_eEkY4OF07EcTiOU=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.149483+00 2025-12-09 10:15:26.149489+00 14548 HT6848FWE#袖口领子L SPMX-20240815309753 \N \N \N 1 \N [{"file_id": "b4cc0145-5f7a-42b0-acbb-73186593af25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1df7147747a47b3a455f909d0e7f720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1df7147747a47b3a455f909d0e7f720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1df7147747a47b3a455f909d0e7f720.jpg", "file_size": 18586, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#袖口领子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1df7147747a47b3a455f909d0e7f720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1df7147747a47b3a455f909d0e7f720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1df7147747a47b3a455f909d0e7f720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1df7147747a47b3a455f909d0e7f720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1df7147747a47b3a455f909d0e7f720.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KFm6IzAzYl5f5x8KnieG4FlNAws=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.1521+00 2025-12-09 10:15:26.152106+00 14549 LZ1332#背心款4号色 SPMX-20240815309751 \N \N \N 1 \N [{"file_id": "8909c0f3-7e1a-4b83-8909-61c63623bf9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68a2fb9264be47cd9a63ee75d33208c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68a2fb9264be47cd9a63ee75d33208c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68a2fb9264be47cd9a63ee75d33208c2.jpg", "file_size": 19614, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a2fb9264be47cd9a63ee75d33208c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a2fb9264be47cd9a63ee75d33208c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a2fb9264be47cd9a63ee75d33208c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68a2fb9264be47cd9a63ee75d33208c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68a2fb9264be47cd9a63ee75d33208c2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_dZLf0-ySV2XT53YzwU4G0g5zME=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.154622+00 2025-12-09 10:15:26.154628+00 14550 HT6848FWE#袖口领子3XL SPMX-20240815309744 \N \N \N 1 \N [{"file_id": "1eab0881-26b5-4a7f-b9a1-c356ce0098a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8f58ecf6cf24bd999e456010c11ab1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8f58ecf6cf24bd999e456010c11ab1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8f58ecf6cf24bd999e456010c11ab1a.jpg", "file_size": 18639, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#袖口领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f58ecf6cf24bd999e456010c11ab1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f58ecf6cf24bd999e456010c11ab1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f58ecf6cf24bd999e456010c11ab1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8f58ecf6cf24bd999e456010c11ab1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8f58ecf6cf24bd999e456010c11ab1a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RASMHbSZquRbHscY2YgqdMBT64w=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.15724+00 2025-12-09 10:15:26.157245+00 14551 0006-22FWE#VS-D3 SPMX-20240815309747 \N \N \N 1 \N [{"file_id": "39cb040a-f35b-4727-a2a5-c4b56f209a0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6b1971abc7e42ec9e924b86806b28ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6b1971abc7e42ec9e924b86806b28ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6b1971abc7e42ec9e924b86806b28ad.jpg", "file_size": 12429, "is_delete": false, "file_type": 1, "original_file_name": "0006-22FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b1971abc7e42ec9e924b86806b28ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b1971abc7e42ec9e924b86806b28ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b1971abc7e42ec9e924b86806b28ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6b1971abc7e42ec9e924b86806b28ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6b1971abc7e42ec9e924b86806b28ad.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAncfFDi6aR9APX8r-XFbdlhOT0=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.159858+00 2025-12-09 10:15:26.159864+00 14552 C939#蓝色L SPMX-20240815309756 \N \N \N 1 \N [{"file_id": "7642e17c-190a-456f-9819-7c99b073998c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2afbb96f493b415f84582a0f4396a922.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2afbb96f493b415f84582a0f4396a922.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2afbb96f493b415f84582a0f4396a922.jpg", "file_size": 22800, "is_delete": false, "file_type": 1, "original_file_name": "C939#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb96f493b415f84582a0f4396a922.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb96f493b415f84582a0f4396a922.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb96f493b415f84582a0f4396a922.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2afbb96f493b415f84582a0f4396a922.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2afbb96f493b415f84582a0f4396a922.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvPJIafahxiJtdGbDe0IK_wj95A=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.162435+00 2025-12-09 10:15:26.162441+00 14553 FND4120FWE#妈妈装-黄色 SPMX-20240815309757 \N \N \N 1 \N [{"file_id": "def02020-a2df-450f-b29f-eddfbb33e706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11a1b64ae1a04b1a90d62689ae2b2e8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11a1b64ae1a04b1a90d62689ae2b2e8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11a1b64ae1a04b1a90d62689ae2b2e8b.jpg", "file_size": 19012, "is_delete": false, "file_type": 1, "original_file_name": "FND4120FWE#妈妈装-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a1b64ae1a04b1a90d62689ae2b2e8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a1b64ae1a04b1a90d62689ae2b2e8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11a1b64ae1a04b1a90d62689ae2b2e8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11a1b64ae1a04b1a90d62689ae2b2e8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11a1b64ae1a04b1a90d62689ae2b2e8b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dkhPfCO7dYp-HuezP0BlFl1YwQ=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.164983+00 2025-12-09 10:15:26.164989+00 14554 0006-22FWF#蓝白 SPMX-20240815309758 \N \N \N 1 \N [{"file_id": "1304465a-c35b-4a53-b1a0-27023081668e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e888db12bfd94d24a10a29cb55d7fb8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e888db12bfd94d24a10a29cb55d7fb8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e888db12bfd94d24a10a29cb55d7fb8d.jpg", "file_size": 10570, "is_delete": false, "file_type": 1, "original_file_name": "0006-22FWF#蓝白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e888db12bfd94d24a10a29cb55d7fb8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e888db12bfd94d24a10a29cb55d7fb8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e888db12bfd94d24a10a29cb55d7fb8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e888db12bfd94d24a10a29cb55d7fb8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e888db12bfd94d24a10a29cb55d7fb8d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hH1JIeiP_L386xN-8JPT91nakY=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.167435+00 2025-12-09 10:15:26.167441+00 14555 8401#橙色头巾匹布 SPMX-20240815309755 \N \N \N 1 \N [{"file_id": "d70d2698-1fca-4678-b801-12b3d1488837", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6bd8c8bfd0342488ea0ad185eade663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6bd8c8bfd0342488ea0ad185eade663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6bd8c8bfd0342488ea0ad185eade663.jpg", "file_size": 24006, "is_delete": false, "file_type": 1, "original_file_name": "8401#橙色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bd8c8bfd0342488ea0ad185eade663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bd8c8bfd0342488ea0ad185eade663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bd8c8bfd0342488ea0ad185eade663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6bd8c8bfd0342488ea0ad185eade663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6bd8c8bfd0342488ea0ad185eade663.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tivbROoef6ydnRvEeHWKL7DUg-8=", "createTime": "2024-08-15 14:57:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.170071+00 2025-12-09 10:15:26.170077+00 14556 DL31147#紫玫红 SPMX-20240815309770 \N \N \N 1 \N [{"file_id": "b0f1868f-d1ca-4fc8-96a1-d6d4e50f31c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6751cf584ea4a7292cc14e19d69e8de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6751cf584ea4a7292cc14e19d69e8de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6751cf584ea4a7292cc14e19d69e8de.jpg", "file_size": 22650, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#紫玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6751cf584ea4a7292cc14e19d69e8de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6751cf584ea4a7292cc14e19d69e8de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6751cf584ea4a7292cc14e19d69e8de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6751cf584ea4a7292cc14e19d69e8de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6751cf584ea4a7292cc14e19d69e8de.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bc6C7U_JqDSlcmlWIl88cpa_ONY=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.172632+00 2025-12-09 10:15:26.172638+00 14557 JTSS554FW#VS-D3 SPMX-20240815309771 \N \N \N 1 \N [{"file_id": "a771f184-10f5-46ee-b0ff-facc0e87e3c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eba01c30de34770a7708304f7668aea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eba01c30de34770a7708304f7668aea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eba01c30de34770a7708304f7668aea.jpg", "file_size": 13335, "is_delete": false, "file_type": 1, "original_file_name": "JTSS554FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eba01c30de34770a7708304f7668aea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eba01c30de34770a7708304f7668aea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eba01c30de34770a7708304f7668aea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eba01c30de34770a7708304f7668aea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eba01c30de34770a7708304f7668aea.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pBi-R_oNGXcpFopLbNX8Es8RXE=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.175213+00 2025-12-09 10:15:26.175219+00 14558 LZ1332#背心款5号色 SPMX-20240815309761 \N \N \N 1 \N [{"file_id": "07b041ad-9a03-41f4-b30d-be720c18aa2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7edc55b84bf34f2d921de66ea3bddb26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7edc55b84bf34f2d921de66ea3bddb26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7edc55b84bf34f2d921de66ea3bddb26.jpg", "file_size": 19568, "is_delete": false, "file_type": 1, "original_file_name": "LZ1332#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edc55b84bf34f2d921de66ea3bddb26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edc55b84bf34f2d921de66ea3bddb26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edc55b84bf34f2d921de66ea3bddb26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7edc55b84bf34f2d921de66ea3bddb26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7edc55b84bf34f2d921de66ea3bddb26.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NMJHor3SzKTGhs3Ts_uGIDLcvQ=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.177816+00 2025-12-09 10:15:26.177821+00 14559 0006-22FWF#黑白 SPMX-20240815309767 \N \N \N 1 \N [{"file_id": "23c9fcbb-ba49-4bab-9f7c-def35dcfa63f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1e8a50a98a741c09b6d3b40640bcee8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1e8a50a98a741c09b6d3b40640bcee8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1e8a50a98a741c09b6d3b40640bcee8.jpg", "file_size": 9698, "is_delete": false, "file_type": 1, "original_file_name": "0006-22FWF#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e8a50a98a741c09b6d3b40640bcee8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e8a50a98a741c09b6d3b40640bcee8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e8a50a98a741c09b6d3b40640bcee8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1e8a50a98a741c09b6d3b40640bcee8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1e8a50a98a741c09b6d3b40640bcee8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GymDd07SV_0AGucH-w6Ku_uxLm8=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.180392+00 2025-12-09 10:15:26.180398+00 14560 HT6848FWE#袖口领子M SPMX-20240815309764 \N \N \N 1 \N [{"file_id": "cdb86b55-66a8-4f6e-a5b8-682e485757b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3efea9ded5a745d7a1ba46315e21c627.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3efea9ded5a745d7a1ba46315e21c627.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3efea9ded5a745d7a1ba46315e21c627.jpg", "file_size": 17881, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#袖口领子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efea9ded5a745d7a1ba46315e21c627.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efea9ded5a745d7a1ba46315e21c627.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3efea9ded5a745d7a1ba46315e21c627.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3efea9ded5a745d7a1ba46315e21c627.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3efea9ded5a745d7a1ba46315e21c627.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edNoJe91sdrRuU9b0R9iVND7sh4=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.183003+00 2025-12-09 10:15:26.183009+00 14561 C939#蓝色XL SPMX-20240815309765 \N \N \N 1 \N [{"file_id": "3dae8b17-89df-4f99-a258-d75e202b5369", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f9055fa04d3428dacd512bd7822a84e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f9055fa04d3428dacd512bd7822a84e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f9055fa04d3428dacd512bd7822a84e.jpg", "file_size": 22885, "is_delete": false, "file_type": 1, "original_file_name": "C939#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f9055fa04d3428dacd512bd7822a84e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f9055fa04d3428dacd512bd7822a84e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f9055fa04d3428dacd512bd7822a84e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f9055fa04d3428dacd512bd7822a84e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f9055fa04d3428dacd512bd7822a84e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVF9cXrTLwKxv-rX6XhjO3hYLJ8=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.185563+00 2025-12-09 10:15:26.185569+00 14562 8401#蓝色 SPMX-20240815309766 \N \N \N 1 \N [{"file_id": "cafd5590-73c6-4f82-83d0-a5477e60664b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2267d167eb74e2cbd8e7d7c728c6bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2267d167eb74e2cbd8e7d7c728c6bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2267d167eb74e2cbd8e7d7c728c6bc6.jpg", "file_size": 27499, "is_delete": false, "file_type": 1, "original_file_name": "8401#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2267d167eb74e2cbd8e7d7c728c6bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2267d167eb74e2cbd8e7d7c728c6bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2267d167eb74e2cbd8e7d7c728c6bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2267d167eb74e2cbd8e7d7c728c6bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2267d167eb74e2cbd8e7d7c728c6bc6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkKza0WfycCNkusahxu1O6xt4Yk=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.188159+00 2025-12-09 10:15:26.188165+00 14563 120#-黑色 SPMX-20240815309763 \N \N \N 1 \N [{"file_id": "55824c67-cf68-47bf-98cd-a3bde3dc3ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03a3fe38785f460f8264bcaf16ef58a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03a3fe38785f460f8264bcaf16ef58a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03a3fe38785f460f8264bcaf16ef58a9.jpg", "file_size": 49661, "is_delete": false, "file_type": 1, "original_file_name": "120#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a3fe38785f460f8264bcaf16ef58a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a3fe38785f460f8264bcaf16ef58a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03a3fe38785f460f8264bcaf16ef58a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03a3fe38785f460f8264bcaf16ef58a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03a3fe38785f460f8264bcaf16ef58a9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHiDe3So_SwQkTle58rWXRDsclY=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.190674+00 2025-12-09 10:15:26.190681+00 14564 LJH1783-2#绿色 SPMX-20240815309769 \N \N \N 1 \N [{"file_id": "58c36491-0766-441a-af5f-a792ee2bdf50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8955960315394d26801a9f558367e307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8955960315394d26801a9f558367e307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8955960315394d26801a9f558367e307.jpg", "file_size": 72021, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8955960315394d26801a9f558367e307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8955960315394d26801a9f558367e307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8955960315394d26801a9f558367e307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8955960315394d26801a9f558367e307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8955960315394d26801a9f558367e307.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9KXz22jzt2Wq9ZXLH_lc3BsEeI=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.193243+00 2025-12-09 10:15:26.193249+00 14565 23-2124#A4-4XL SPMX-20240815309762 \N \N \N 1 \N [{"file_id": "34813637-e1b4-4774-904a-264ca0446c45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dee92ea7e32c47549d53b52b01cd2711.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dee92ea7e32c47549d53b52b01cd2711.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dee92ea7e32c47549d53b52b01cd2711.jpg", "file_size": 22127, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee92ea7e32c47549d53b52b01cd2711.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee92ea7e32c47549d53b52b01cd2711.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee92ea7e32c47549d53b52b01cd2711.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dee92ea7e32c47549d53b52b01cd2711.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dee92ea7e32c47549d53b52b01cd2711.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQHRpUE4E0Mpldjnpu3LV32mslk=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.206462+00 2025-12-09 10:15:26.206467+00 14570 C939#黑色XL SPMX-20240815309786 \N \N \N 1 \N [{"file_id": "e5ee7fe9-8a7e-40c5-9536-abc4a3af67db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2baed268ce442bebc373340f61b2a29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2baed268ce442bebc373340f61b2a29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2baed268ce442bebc373340f61b2a29.jpg", "file_size": 23536, "is_delete": false, "file_type": 1, "original_file_name": "C939#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2baed268ce442bebc373340f61b2a29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2baed268ce442bebc373340f61b2a29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2baed268ce442bebc373340f61b2a29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2baed268ce442bebc373340f61b2a29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2baed268ce442bebc373340f61b2a29.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FM3yQNbF2DPatb6ehituU4g4bE=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.195824+00 2025-12-09 10:15:26.195829+00 14566 FND4122FWE#妈妈装-橙色 SPMX-20240815309768 \N \N \N 1 \N [{"file_id": "82246720-b05d-4df6-91fe-c68218b63721", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07684f5198eb4bf7ad9608cf4588728a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07684f5198eb4bf7ad9608cf4588728a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07684f5198eb4bf7ad9608cf4588728a.jpg", "file_size": 16478, "is_delete": false, "file_type": 1, "original_file_name": "FND4122FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07684f5198eb4bf7ad9608cf4588728a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07684f5198eb4bf7ad9608cf4588728a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07684f5198eb4bf7ad9608cf4588728a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07684f5198eb4bf7ad9608cf4588728a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07684f5198eb4bf7ad9608cf4588728a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmhYmwaa5HAxJWxVHYtCM_9qH8U=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.198401+00 2025-12-09 10:15:26.198411+00 14567 JTSS553FW#粉VS-D3 SPMX-20240815309759 \N \N \N 1 \N [{"file_id": "072ff51b-fe0b-4c9d-8727-56a27f6a2b2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9536693a2464b8184f2e5da398a45e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9536693a2464b8184f2e5da398a45e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9536693a2464b8184f2e5da398a45e0.jpg", "file_size": 13999, "is_delete": false, "file_type": 1, "original_file_name": "JTSS553FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9536693a2464b8184f2e5da398a45e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9536693a2464b8184f2e5da398a45e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9536693a2464b8184f2e5da398a45e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9536693a2464b8184f2e5da398a45e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9536693a2464b8184f2e5da398a45e0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2zB8eyflLTaBEjXA48MUDu04fo=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.200976+00 2025-12-09 10:15:26.200983+00 14568 DL31147#皮粉雪纺 SPMX-20240815309760 \N \N \N 1 \N [{"file_id": "636b2278-b94e-485c-bf87-82cb574d2bc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d9ca6ed5df740de8e183fc6ebad418f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d9ca6ed5df740de8e183fc6ebad418f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d9ca6ed5df740de8e183fc6ebad418f.jpg", "file_size": 22009, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#皮粉雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9ca6ed5df740de8e183fc6ebad418f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9ca6ed5df740de8e183fc6ebad418f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9ca6ed5df740de8e183fc6ebad418f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d9ca6ed5df740de8e183fc6ebad418f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d9ca6ed5df740de8e183fc6ebad418f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-v7lYlJCej4kghpceokUAVPVX7I=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.203569+00 2025-12-09 10:15:26.203574+00 14569 C939#黑色L SPMX-20240815309776 \N \N \N 1 \N [{"file_id": "c7a48d95-1f39-4e8d-b619-f4f6b08b5066", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dcca4e6b35842b0abb734c4d01414b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dcca4e6b35842b0abb734c4d01414b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dcca4e6b35842b0abb734c4d01414b0.jpg", "file_size": 22827, "is_delete": false, "file_type": 1, "original_file_name": "C939#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcca4e6b35842b0abb734c4d01414b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcca4e6b35842b0abb734c4d01414b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcca4e6b35842b0abb734c4d01414b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dcca4e6b35842b0abb734c4d01414b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dcca4e6b35842b0abb734c4d01414b0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfkPsYKCgZvjc-eGRaNYWRqTxCo=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.209081+00 2025-12-09 10:15:26.209087+00 14571 0006-23FWE#VS-D3 SPMX-20240815309777 \N \N \N 1 \N [{"file_id": "87b6ce76-88bb-4e90-b97a-77032b515c29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "753bfd0235eb4b1ca8114a5cc538b0f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "753bfd0235eb4b1ca8114a5cc538b0f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "753bfd0235eb4b1ca8114a5cc538b0f2.jpg", "file_size": 17697, "is_delete": false, "file_type": 1, "original_file_name": "0006-23FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/753bfd0235eb4b1ca8114a5cc538b0f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/753bfd0235eb4b1ca8114a5cc538b0f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/753bfd0235eb4b1ca8114a5cc538b0f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/753bfd0235eb4b1ca8114a5cc538b0f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/753bfd0235eb4b1ca8114a5cc538b0f2.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PkTETRuIXYu_FcuNuUWlkvB1ZS4=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.211701+00 2025-12-09 10:15:26.211711+00 14572 120-1-长袖#天蓝 SPMX-20240815309781 \N \N \N 1 \N [{"file_id": "ce6128e2-61fd-4a98-b282-768fcbd9285b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "566565b7668340b2863aa84941d0ce1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "566565b7668340b2863aa84941d0ce1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "566565b7668340b2863aa84941d0ce1a.jpg", "file_size": 18440, "is_delete": false, "file_type": 1, "original_file_name": "120-1-长袖#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566565b7668340b2863aa84941d0ce1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566565b7668340b2863aa84941d0ce1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/566565b7668340b2863aa84941d0ce1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/566565b7668340b2863aa84941d0ce1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/566565b7668340b2863aa84941d0ce1a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUPebvSnkdiDdco1aQLkEDf4IX4=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.214277+00 2025-12-09 10:15:26.214282+00 14573 23-2124#A4-领子4XL SPMX-20240815309785 \N \N \N 1 \N [{"file_id": "7c3f3b3d-32bc-4e30-a387-2f234c0b96b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c455b8ffa7764a408d8242a77bb6573d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c455b8ffa7764a408d8242a77bb6573d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c455b8ffa7764a408d8242a77bb6573d.jpg", "file_size": 16671, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c455b8ffa7764a408d8242a77bb6573d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c455b8ffa7764a408d8242a77bb6573d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c455b8ffa7764a408d8242a77bb6573d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c455b8ffa7764a408d8242a77bb6573d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c455b8ffa7764a408d8242a77bb6573d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2CJ3lgo6xqGMGWZHZ3KukogZh8=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.216846+00 2025-12-09 10:15:26.216852+00 14574 LZ1333#捆条布 SPMX-20240815309772 \N \N \N 1 \N [{"file_id": "416ada19-80a4-40a5-a9c3-ff70cc0e3914", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f05ad5d9ee724371ac4e5b5236175827.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f05ad5d9ee724371ac4e5b5236175827.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f05ad5d9ee724371ac4e5b5236175827.jpg", "file_size": 20841, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05ad5d9ee724371ac4e5b5236175827.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05ad5d9ee724371ac4e5b5236175827.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05ad5d9ee724371ac4e5b5236175827.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f05ad5d9ee724371ac4e5b5236175827.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f05ad5d9ee724371ac4e5b5236175827.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EGMDHwVQzN2YHadsGT4PDI4VoB0=", "createTime": "2024-08-15 14:57:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.219438+00 2025-12-09 10:15:26.219444+00 14575 23-2124#A4-领子3XL SPMX-20240815309773 \N \N \N 1 \N [{"file_id": "8dbb99f9-f7c8-4a23-9c33-9f0644081aef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "accbb97d16be470987f0bdbc74cd02e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "accbb97d16be470987f0bdbc74cd02e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "accbb97d16be470987f0bdbc74cd02e7.jpg", "file_size": 16710, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accbb97d16be470987f0bdbc74cd02e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accbb97d16be470987f0bdbc74cd02e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accbb97d16be470987f0bdbc74cd02e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/accbb97d16be470987f0bdbc74cd02e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/accbb97d16be470987f0bdbc74cd02e7.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQOItdSwmcXdd8_4b1wIbjZJz0M=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.222231+00 2025-12-09 10:15:26.222238+00 14576 LJH1783-2#蓝色 SPMX-20240815309779 \N \N \N 1 \N [{"file_id": "6a4b2790-2a88-46ea-966d-1083c5342436", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4c64b2819bc40af9ecff8ea2dc392f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4c64b2819bc40af9ecff8ea2dc392f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4c64b2819bc40af9ecff8ea2dc392f1.jpg", "file_size": 69716, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c64b2819bc40af9ecff8ea2dc392f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c64b2819bc40af9ecff8ea2dc392f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4c64b2819bc40af9ecff8ea2dc392f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4c64b2819bc40af9ecff8ea2dc392f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4c64b2819bc40af9ecff8ea2dc392f1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_KqAJ_-_GlTLvb68lgHndE_VW4=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.224824+00 2025-12-09 10:15:26.22483+00 14577 8401#蓝色头巾匹布 SPMX-20240815309780 \N \N \N 1 \N [{"file_id": "0b233471-6318-40fa-9a71-7039a8f4fb46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0759f48b16a24812b9d6b03fc2c18304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0759f48b16a24812b9d6b03fc2c18304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0759f48b16a24812b9d6b03fc2c18304.jpg", "file_size": 24952, "is_delete": false, "file_type": 1, "original_file_name": "8401#蓝色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759f48b16a24812b9d6b03fc2c18304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759f48b16a24812b9d6b03fc2c18304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0759f48b16a24812b9d6b03fc2c18304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0759f48b16a24812b9d6b03fc2c18304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0759f48b16a24812b9d6b03fc2c18304.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DtTt6KcFG-ODQfUPjGv1uSHhiBQ=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.227283+00 2025-12-09 10:15:26.227289+00 14578 JTSS555FW#VS-D3 SPMX-20240815309783 \N \N \N 1 \N [{"file_id": "ea266bc8-efd2-4fbc-9153-4a501f15b7c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee1f0cfeb924a89baadff11d930f50d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee1f0cfeb924a89baadff11d930f50d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee1f0cfeb924a89baadff11d930f50d.jpg", "file_size": 12133, "is_delete": false, "file_type": 1, "original_file_name": "JTSS555FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1f0cfeb924a89baadff11d930f50d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1f0cfeb924a89baadff11d930f50d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee1f0cfeb924a89baadff11d930f50d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee1f0cfeb924a89baadff11d930f50d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee1f0cfeb924a89baadff11d930f50d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XkLvi8s9xWSZr4dYjMQsySBQxu4=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.229711+00 2025-12-09 10:15:26.229719+00 14579 FND4122FWE#妈妈装-紫色 SPMX-20240815309778 \N \N \N 1 \N [{"file_id": "faa13b20-4b54-4f3a-8149-79fdfd01d0d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51219ea776414bd880bd97b98a480574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51219ea776414bd880bd97b98a480574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51219ea776414bd880bd97b98a480574.jpg", "file_size": 16037, "is_delete": false, "file_type": 1, "original_file_name": "FND4122FWE#妈妈装-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51219ea776414bd880bd97b98a480574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51219ea776414bd880bd97b98a480574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51219ea776414bd880bd97b98a480574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51219ea776414bd880bd97b98a480574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51219ea776414bd880bd97b98a480574.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOGK5xxsHKiNKNd56xEHitaqOoE=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.231951+00 2025-12-09 10:15:26.231957+00 14580 120-1-长袖#大红 SPMX-20240815309774 \N \N \N 1 \N [{"file_id": "6bc46d82-1a66-49ba-bc0b-a1b3777ee5aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86afc86c04d549dba2476e5963b9c037.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86afc86c04d549dba2476e5963b9c037.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86afc86c04d549dba2476e5963b9c037.jpg", "file_size": 18378, "is_delete": false, "file_type": 1, "original_file_name": "120-1-长袖#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86afc86c04d549dba2476e5963b9c037.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86afc86c04d549dba2476e5963b9c037.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86afc86c04d549dba2476e5963b9c037.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86afc86c04d549dba2476e5963b9c037.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86afc86c04d549dba2476e5963b9c037.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCBVsPCMr9VSHSrK4CDiyVTfHyo=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.234354+00 2025-12-09 10:15:26.234359+00 14581 DL31147#紫玫红雪纺 SPMX-20240815309784 \N \N \N 1 \N [{"file_id": "ee897c55-d3e8-4789-ad1c-6d96735b795c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36694580048e4497943d1c276747d3cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36694580048e4497943d1c276747d3cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36694580048e4497943d1c276747d3cc.jpg", "file_size": 22359, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#紫玫红雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36694580048e4497943d1c276747d3cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36694580048e4497943d1c276747d3cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36694580048e4497943d1c276747d3cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36694580048e4497943d1c276747d3cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36694580048e4497943d1c276747d3cc.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eM_5WMliLJdn_a9tMNzGg5BjL0E=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.236756+00 2025-12-09 10:15:26.236762+00 14582 0006-23FWF#V5曲线 SPMX-20240815309787 \N \N \N 1 \N [{"file_id": "52b5386a-9f6d-4da5-bf73-73e2a9f81e29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aaa4a32c0e5401b88f5a7ecf84e0928.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aaa4a32c0e5401b88f5a7ecf84e0928.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aaa4a32c0e5401b88f5a7ecf84e0928.jpg", "file_size": 12839, "is_delete": false, "file_type": 1, "original_file_name": "0006-23FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa4a32c0e5401b88f5a7ecf84e0928.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa4a32c0e5401b88f5a7ecf84e0928.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa4a32c0e5401b88f5a7ecf84e0928.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aaa4a32c0e5401b88f5a7ecf84e0928.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aaa4a32c0e5401b88f5a7ecf84e0928.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vq8czKej913_t3RSBdv8Hri_TZI=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.238921+00 2025-12-09 10:15:26.238925+00 14583 HT6848FWE#袖口领子XL SPMX-20240815309775 \N \N \N 1 \N [{"file_id": "0e26ed2b-1a6d-4ee3-8f26-74da141b4a45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d929fe416e86424fa12fd9ed5ff2fd66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d929fe416e86424fa12fd9ed5ff2fd66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d929fe416e86424fa12fd9ed5ff2fd66.jpg", "file_size": 19038, "is_delete": false, "file_type": 1, "original_file_name": "HT6848FWE#袖口领子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d929fe416e86424fa12fd9ed5ff2fd66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d929fe416e86424fa12fd9ed5ff2fd66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d929fe416e86424fa12fd9ed5ff2fd66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d929fe416e86424fa12fd9ed5ff2fd66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d929fe416e86424fa12fd9ed5ff2fd66.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnOrwO3LTM0ByPp6psV3Y0k5CwA=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.241351+00 2025-12-09 10:15:26.241356+00 14584 LZ1333#背心款1号色 SPMX-20240815309782 \N \N \N 1 \N [{"file_id": "12fec717-c686-4390-946c-e2d8be314bb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37ef4b928f9b47f48affc401a4356c18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37ef4b928f9b47f48affc401a4356c18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37ef4b928f9b47f48affc401a4356c18.jpg", "file_size": 19992, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ef4b928f9b47f48affc401a4356c18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ef4b928f9b47f48affc401a4356c18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37ef4b928f9b47f48affc401a4356c18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37ef4b928f9b47f48affc401a4356c18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37ef4b928f9b47f48affc401a4356c18.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3E-BdjjA3cMzyVLbkIMrlPchCDc=", "createTime": "2024-08-15 14:57:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.243751+00 2025-12-09 10:15:26.243756+00 14585 LZ1333#背心款2号色 SPMX-20240815309794 \N \N \N 1 \N [{"file_id": "2b623721-3aa6-4559-872f-4caf0f10f151", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52b662b4246e47d5a142bf77d2e43801.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52b662b4246e47d5a142bf77d2e43801.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52b662b4246e47d5a142bf77d2e43801.jpg", "file_size": 19866, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b662b4246e47d5a142bf77d2e43801.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b662b4246e47d5a142bf77d2e43801.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52b662b4246e47d5a142bf77d2e43801.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52b662b4246e47d5a142bf77d2e43801.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52b662b4246e47d5a142bf77d2e43801.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jBd7g2ubVb3W4Z9OTXVCYS4l1Es=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.245903+00 2025-12-09 10:15:26.245908+00 14586 DL31147#蓝绿色 SPMX-20240815309793 \N \N \N 1 \N [{"file_id": "ed05c2af-9c66-455c-b4cc-8602801459bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d0dda04ae694b7da5e42561e75409a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d0dda04ae694b7da5e42561e75409a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d0dda04ae694b7da5e42561e75409a5.jpg", "file_size": 22316, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0dda04ae694b7da5e42561e75409a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0dda04ae694b7da5e42561e75409a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0dda04ae694b7da5e42561e75409a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d0dda04ae694b7da5e42561e75409a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d0dda04ae694b7da5e42561e75409a5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rPfgGxN8PXr1vJn_aoVHQy8hNTw=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.24839+00 2025-12-09 10:15:26.248395+00 14587 23-2124#A5-3XL SPMX-20240815309796 \N \N \N 1 \N [{"file_id": "fa4f2ce6-0e71-49e8-9d97-070ba6ae638c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da573323df6f45d6aaa69451785f930b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da573323df6f45d6aaa69451785f930b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da573323df6f45d6aaa69451785f930b.jpg", "file_size": 18506, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da573323df6f45d6aaa69451785f930b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da573323df6f45d6aaa69451785f930b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da573323df6f45d6aaa69451785f930b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da573323df6f45d6aaa69451785f930b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da573323df6f45d6aaa69451785f930b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JY9KXS5cRmqCva9YM4PT6M2tGFA=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.250912+00 2025-12-09 10:15:26.250918+00 14588 HT8135-1FW#38 SPMX-20240815309801 \N \N \N 1 \N [{"file_id": "a596b634-da4e-4b30-bede-a9ce1d4a2b57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c12226289e0e4e30b97f9033fa8d24de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c12226289e0e4e30b97f9033fa8d24de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c12226289e0e4e30b97f9033fa8d24de.jpg", "file_size": 10630, "is_delete": false, "file_type": 1, "original_file_name": "HT8135-1FW#38.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12226289e0e4e30b97f9033fa8d24de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12226289e0e4e30b97f9033fa8d24de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c12226289e0e4e30b97f9033fa8d24de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c12226289e0e4e30b97f9033fa8d24de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c12226289e0e4e30b97f9033fa8d24de.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B7jO2SoRNVAQUl0OSVpehSqq90Y=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.253651+00 2025-12-09 10:15:26.253656+00 14589 120-1-长袖#玫红 SPMX-20240815309791 \N \N \N 1 \N [{"file_id": "dcdaba9a-4221-4c69-a4a8-131a5f5c6af5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e07c4aa7468140bbb4c05d8c96d18af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e07c4aa7468140bbb4c05d8c96d18af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e07c4aa7468140bbb4c05d8c96d18af1.jpg", "file_size": 17580, "is_delete": false, "file_type": 1, "original_file_name": "120-1-长袖#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07c4aa7468140bbb4c05d8c96d18af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07c4aa7468140bbb4c05d8c96d18af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07c4aa7468140bbb4c05d8c96d18af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e07c4aa7468140bbb4c05d8c96d18af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e07c4aa7468140bbb4c05d8c96d18af1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QIXugpa3ud3HD_HcXHuqtKUEYCM=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.256394+00 2025-12-09 10:15:26.256399+00 14590 JTSS556FW#VS-D3 SPMX-20240815309792 \N \N \N 1 \N [{"file_id": "d894120a-04c2-47cf-9d51-7cf2a2f4c967", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab5828f050a4a339e3af9c89c80226b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab5828f050a4a339e3af9c89c80226b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab5828f050a4a339e3af9c89c80226b.jpg", "file_size": 7505, "is_delete": false, "file_type": 1, "original_file_name": "JTSS556FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab5828f050a4a339e3af9c89c80226b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab5828f050a4a339e3af9c89c80226b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab5828f050a4a339e3af9c89c80226b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab5828f050a4a339e3af9c89c80226b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab5828f050a4a339e3af9c89c80226b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3XrXW6PMQuOZC3H-bC4YSfVA3NA=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.258932+00 2025-12-09 10:15:26.258937+00 14591 8401#黄色头巾匹布 SPMX-20240815309800 \N \N \N 1 \N [{"file_id": "46e9a881-fe8c-4547-a00a-a68e44c6ee64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2f90a12c22f41b490a48568f341cc02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2f90a12c22f41b490a48568f341cc02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2f90a12c22f41b490a48568f341cc02.jpg", "file_size": 23027, "is_delete": false, "file_type": 1, "original_file_name": "8401#黄色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f90a12c22f41b490a48568f341cc02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f90a12c22f41b490a48568f341cc02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f90a12c22f41b490a48568f341cc02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2f90a12c22f41b490a48568f341cc02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2f90a12c22f41b490a48568f341cc02.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nbp-tI5GoMm1dik195vNexWjhHY=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.261951+00 2025-12-09 10:15:26.261957+00 14592 0006-24FWF#V5曲线 SPMX-20240815309797 \N \N \N 1 \N [{"file_id": "afb47505-587d-481c-8952-0fd093cf5c55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db748faba2b744db920c3123be54eb56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db748faba2b744db920c3123be54eb56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db748faba2b744db920c3123be54eb56.jpg", "file_size": 13178, "is_delete": false, "file_type": 1, "original_file_name": "0006-24FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db748faba2b744db920c3123be54eb56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db748faba2b744db920c3123be54eb56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db748faba2b744db920c3123be54eb56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db748faba2b744db920c3123be54eb56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db748faba2b744db920c3123be54eb56.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5hFdNE6IVlRD2SDkMSrJC90Ndg=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.264692+00 2025-12-09 10:15:26.264697+00 14593 LJH1783-2#黄色 SPMX-20240815309795 \N \N \N 1 \N [{"file_id": "ff11369b-ca99-4d20-a6df-e7ac82cd0948", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5241264748040898924bc8c8fbc3e40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5241264748040898924bc8c8fbc3e40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5241264748040898924bc8c8fbc3e40.jpg", "file_size": 72001, "is_delete": false, "file_type": 1, "original_file_name": "LJH1783-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5241264748040898924bc8c8fbc3e40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5241264748040898924bc8c8fbc3e40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5241264748040898924bc8c8fbc3e40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5241264748040898924bc8c8fbc3e40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5241264748040898924bc8c8fbc3e40.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnyMaPo0NCuPAG3IGI59oZeBlyE=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.267666+00 2025-12-09 10:15:26.267675+00 14594 8401#黄色 SPMX-20240815309790 \N \N \N 1 \N [{"file_id": "e2f7d617-62bf-44ba-8509-e5948cdaef80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bcc610a1fcd4ba39a84de37fbc067d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bcc610a1fcd4ba39a84de37fbc067d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bcc610a1fcd4ba39a84de37fbc067d6.jpg", "file_size": 23239, "is_delete": false, "file_type": 1, "original_file_name": "8401#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bcc610a1fcd4ba39a84de37fbc067d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bcc610a1fcd4ba39a84de37fbc067d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bcc610a1fcd4ba39a84de37fbc067d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bcc610a1fcd4ba39a84de37fbc067d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bcc610a1fcd4ba39a84de37fbc067d6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eCDcoIv0ltcW_pnNR8uDAiUvsVE=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.270739+00 2025-12-09 10:15:26.270748+00 14595 FND4123FWE#妈妈装-橙色 SPMX-20240815309799 \N \N \N 1 \N [{"file_id": "6f73b0ad-1b88-404b-880f-149dbfd0e999", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95e2ce3a609049da8bda468a5f923e69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95e2ce3a609049da8bda468a5f923e69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95e2ce3a609049da8bda468a5f923e69.jpg", "file_size": 18341, "is_delete": false, "file_type": 1, "original_file_name": "FND4123FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e2ce3a609049da8bda468a5f923e69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e2ce3a609049da8bda468a5f923e69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95e2ce3a609049da8bda468a5f923e69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95e2ce3a609049da8bda468a5f923e69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95e2ce3a609049da8bda468a5f923e69.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSH4ncAuvpz4_lNSvJQptSJ5Nuw=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.273826+00 2025-12-09 10:15:26.273835+00 14596 C940#土黄L SPMX-20240815309798 \N \N \N 1 \N [{"file_id": "3cbd558b-7cbe-4646-9137-b679cdaa4ca5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4e09dd7f45148368920b1d66b72ecdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4e09dd7f45148368920b1d66b72ecdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4e09dd7f45148368920b1d66b72ecdf.jpg", "file_size": 25557, "is_delete": false, "file_type": 1, "original_file_name": "C940#土黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e09dd7f45148368920b1d66b72ecdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e09dd7f45148368920b1d66b72ecdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4e09dd7f45148368920b1d66b72ecdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4e09dd7f45148368920b1d66b72ecdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4e09dd7f45148368920b1d66b72ecdf.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0A6FMrGM0fr1Zk86DEP7608bpc=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.276926+00 2025-12-09 10:15:26.276937+00 14597 HT8-9四面弹打板VS-D3 SPMX-20240815309789 \N \N \N 1 \N [{"file_id": "30f220b6-8e25-4d30-8c4e-451990f0d8a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d9b3bb2bc6549e797821373d34b00db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d9b3bb2bc6549e797821373d34b00db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d9b3bb2bc6549e797821373d34b00db.jpg", "file_size": 281478, "is_delete": false, "file_type": 1, "original_file_name": "HT8-9四面弹打板VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9b3bb2bc6549e797821373d34b00db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9b3bb2bc6549e797821373d34b00db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9b3bb2bc6549e797821373d34b00db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d9b3bb2bc6549e797821373d34b00db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d9b3bb2bc6549e797821373d34b00db.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPzo3vLiAHEI-v0Mk-EvAyot_UE=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.279752+00 2025-12-09 10:15:26.279758+00 14598 FND4122FWE#妈妈装-蓝色 SPMX-20240815309788 \N \N \N 1 \N [{"file_id": "d175b8e6-8a12-4633-be10-d95deec5cba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d66fdfd88c4d451c90e692334d903417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d66fdfd88c4d451c90e692334d903417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d66fdfd88c4d451c90e692334d903417.jpg", "file_size": 16297, "is_delete": false, "file_type": 1, "original_file_name": "FND4122FWE#妈妈装-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66fdfd88c4d451c90e692334d903417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66fdfd88c4d451c90e692334d903417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66fdfd88c4d451c90e692334d903417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d66fdfd88c4d451c90e692334d903417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d66fdfd88c4d451c90e692334d903417.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBoE8vPqAWyVx3QThieWTvVMLjo=", "createTime": "2024-08-15 14:57:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.282355+00 2025-12-09 10:15:26.28236+00 14599 120-1-长袖#绿色 SPMX-20240815309802 \N \N \N 1 \N [{"file_id": "89f30f66-1438-43c0-ae60-8a8cf8f978b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d11b77ca67143aab0c3d2ff107c0261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d11b77ca67143aab0c3d2ff107c0261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d11b77ca67143aab0c3d2ff107c0261.jpg", "file_size": 18279, "is_delete": false, "file_type": 1, "original_file_name": "120-1-长袖#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d11b77ca67143aab0c3d2ff107c0261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d11b77ca67143aab0c3d2ff107c0261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d11b77ca67143aab0c3d2ff107c0261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d11b77ca67143aab0c3d2ff107c0261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d11b77ca67143aab0c3d2ff107c0261.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KoKXTj3K2xCroXDhfpIQUbSB7gk=", "createTime": "2024-08-15 14:57:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.284882+00 2025-12-09 10:15:26.284887+00 14600 HT8135-1FW#40 SPMX-20240815309809 \N \N \N 1 \N [{"file_id": "845a3e26-e3cf-4f4c-87eb-ba22bec0686f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42f5715c53f04aa782ce627ab9cbf2e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42f5715c53f04aa782ce627ab9cbf2e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42f5715c53f04aa782ce627ab9cbf2e4.jpg", "file_size": 11190, "is_delete": false, "file_type": 1, "original_file_name": "HT8135-1FW#40.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f5715c53f04aa782ce627ab9cbf2e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f5715c53f04aa782ce627ab9cbf2e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f5715c53f04aa782ce627ab9cbf2e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42f5715c53f04aa782ce627ab9cbf2e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42f5715c53f04aa782ce627ab9cbf2e4.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsnflCPgKZi6GeVb1hHzxZAwPBs=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.287367+00 2025-12-09 10:15:26.287372+00 14601 84115#原版色 SPMX-20240815309811 \N \N \N 1 \N [{"file_id": "e0d0bede-98ea-4aad-964e-81191e9843d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b134d9084f445599087ec6d3fd8716e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b134d9084f445599087ec6d3fd8716e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b134d9084f445599087ec6d3fd8716e.jpg", "file_size": 11894, "is_delete": false, "file_type": 1, "original_file_name": "84115#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b134d9084f445599087ec6d3fd8716e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b134d9084f445599087ec6d3fd8716e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b134d9084f445599087ec6d3fd8716e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b134d9084f445599087ec6d3fd8716e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b134d9084f445599087ec6d3fd8716e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qiKn3TzH8WGzE8s9juRn2YsvZVI=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.28986+00 2025-12-09 10:15:26.289866+00 14602 LJH1788#绿粉 SPMX-20240815309808 \N \N \N 1 \N [{"file_id": "8cd5f290-45ac-4c29-80bc-9a9415bb1d18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78c55ef918b84b18a776a566aa547140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78c55ef918b84b18a776a566aa547140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78c55ef918b84b18a776a566aa547140.jpg", "file_size": 58276, "is_delete": false, "file_type": 1, "original_file_name": "LJH1788#绿粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c55ef918b84b18a776a566aa547140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c55ef918b84b18a776a566aa547140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c55ef918b84b18a776a566aa547140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78c55ef918b84b18a776a566aa547140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78c55ef918b84b18a776a566aa547140.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Us4UhCxPAiy-Cl5RHFIYwR4lPNE=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.292339+00 2025-12-09 10:15:26.292343+00 14603 120-1FWE#咖啡色VS-D3 SPMX-20240815309813 \N \N \N 1 \N [{"file_id": "b0bac7ab-6fb6-412d-86b8-bce8158bd714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b896603e21f49c1adcf2de6ed181a21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b896603e21f49c1adcf2de6ed181a21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b896603e21f49c1adcf2de6ed181a21.jpg", "file_size": 20213, "is_delete": false, "file_type": 1, "original_file_name": "120-1FWE#咖啡色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b896603e21f49c1adcf2de6ed181a21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b896603e21f49c1adcf2de6ed181a21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b896603e21f49c1adcf2de6ed181a21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b896603e21f49c1adcf2de6ed181a21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b896603e21f49c1adcf2de6ed181a21.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8fsIgV4u0R4D21Zj9s_69R0vng=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.294763+00 2025-12-09 10:15:26.294769+00 14604 DL31147#黄色 SPMX-20240815309814 \N \N \N 1 \N [{"file_id": "d51bd484-4092-491c-afaa-8e55fbfeb1e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b1ddfa21ea843c191094d255f61624d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b1ddfa21ea843c191094d255f61624d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b1ddfa21ea843c191094d255f61624d.jpg", "file_size": 23013, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1ddfa21ea843c191094d255f61624d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1ddfa21ea843c191094d255f61624d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1ddfa21ea843c191094d255f61624d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b1ddfa21ea843c191094d255f61624d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b1ddfa21ea843c191094d255f61624d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pG0AM4x3pU7tFHv4rDhnFjzLU-E=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.297321+00 2025-12-09 10:15:26.297327+00 14605 DL31147#蓝绿色雪纺 SPMX-20240815309803 \N \N \N 1 \N [{"file_id": "84aa5da1-f409-484f-bc03-d11345a6c7aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ddaf504f4b4e8587b572c08c186dfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ddaf504f4b4e8587b572c08c186dfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ddaf504f4b4e8587b572c08c186dfa.jpg", "file_size": 22539, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#蓝绿色雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ddaf504f4b4e8587b572c08c186dfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ddaf504f4b4e8587b572c08c186dfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ddaf504f4b4e8587b572c08c186dfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ddaf504f4b4e8587b572c08c186dfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ddaf504f4b4e8587b572c08c186dfa.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-wC2MEkdHwzMyxO2YOStZPcR9Q=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.299782+00 2025-12-09 10:15:26.299787+00 14606 JTSS557FW#VS-D3 SPMX-20240815309804 \N \N \N 1 \N [{"file_id": "8fc0a0a3-9fd0-4d5d-bfaf-96d76d57debb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a406355962194dfe9f958a8880bb65ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a406355962194dfe9f958a8880bb65ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a406355962194dfe9f958a8880bb65ed.jpg", "file_size": 14125, "is_delete": false, "file_type": 1, "original_file_name": "JTSS557FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a406355962194dfe9f958a8880bb65ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a406355962194dfe9f958a8880bb65ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a406355962194dfe9f958a8880bb65ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a406355962194dfe9f958a8880bb65ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a406355962194dfe9f958a8880bb65ed.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLm01_4u4pIVD0Rsr5y5RPILMkk=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.302147+00 2025-12-09 10:15:26.302151+00 14607 0006-24FWF#咖色番禺调色 SPMX-20240815309805 \N \N \N 1 \N [{"file_id": "2bc43ad1-3e06-4636-ba16-c8768bd519ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d251da2bc7b941a5964bd10091aec899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d251da2bc7b941a5964bd10091aec899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d251da2bc7b941a5964bd10091aec899.jpg", "file_size": 13370, "is_delete": false, "file_type": 1, "original_file_name": "0006-24FWF#咖色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d251da2bc7b941a5964bd10091aec899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d251da2bc7b941a5964bd10091aec899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d251da2bc7b941a5964bd10091aec899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d251da2bc7b941a5964bd10091aec899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d251da2bc7b941a5964bd10091aec899.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fwj0Sue-Ba6aK0yi8MVHUg-yNaE=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.304256+00 2025-12-09 10:15:26.30426+00 14608 JTSS558FW#VS-D3 SPMX-20240815309815 \N \N \N 1 \N [{"file_id": "4dfc1ce9-ee08-4d3e-9fee-c20566bfab63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c5627ebcf0c4cf68f381e56b67008d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c5627ebcf0c4cf68f381e56b67008d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c5627ebcf0c4cf68f381e56b67008d5.jpg", "file_size": 28903, "is_delete": false, "file_type": 1, "original_file_name": "JTSS558FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5627ebcf0c4cf68f381e56b67008d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5627ebcf0c4cf68f381e56b67008d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c5627ebcf0c4cf68f381e56b67008d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c5627ebcf0c4cf68f381e56b67008d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c5627ebcf0c4cf68f381e56b67008d5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MX7qmblpoELMSN3RPPQymN4rOs=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.306322+00 2025-12-09 10:15:26.306326+00 14609 23-2124#A5-4XL SPMX-20240815309807 \N \N \N 1 \N [{"file_id": "9eb01472-9775-419f-9806-d2e29e9490c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb133db6875b482f92fe5b11f8aa0ef1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb133db6875b482f92fe5b11f8aa0ef1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb133db6875b482f92fe5b11f8aa0ef1.jpg", "file_size": 17782, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb133db6875b482f92fe5b11f8aa0ef1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb133db6875b482f92fe5b11f8aa0ef1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb133db6875b482f92fe5b11f8aa0ef1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb133db6875b482f92fe5b11f8aa0ef1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb133db6875b482f92fe5b11f8aa0ef1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rF7iGQgqwnJmEbdwR6eUcct-JqE=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.308394+00 2025-12-09 10:15:26.308398+00 14610 C940#土黄XL SPMX-20240815309810 \N \N \N 1 \N [{"file_id": "16e5ed7d-fbca-4526-b219-cfcb5c37c041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b29d4bb79d48bda51b562b30e6e4a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b29d4bb79d48bda51b562b30e6e4a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b29d4bb79d48bda51b562b30e6e4a8.jpg", "file_size": 26211, "is_delete": false, "file_type": 1, "original_file_name": "C940#土黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b29d4bb79d48bda51b562b30e6e4a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b29d4bb79d48bda51b562b30e6e4a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b29d4bb79d48bda51b562b30e6e4a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b29d4bb79d48bda51b562b30e6e4a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b29d4bb79d48bda51b562b30e6e4a8.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTOfDE57SEs9kJ_42lKILNN4Fhk=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.310796+00 2025-12-09 10:15:26.310802+00 14611 FND4123FWE#妈妈装-蓝色 SPMX-20240815309812 \N \N \N 1 \N [{"file_id": "86915a90-a128-49b8-a4da-d61fa9ffb473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c998b4fad6949a6b581dcbed3c58a68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c998b4fad6949a6b581dcbed3c58a68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c998b4fad6949a6b581dcbed3c58a68.jpg", "file_size": 18312, "is_delete": false, "file_type": 1, "original_file_name": "FND4123FWE#妈妈装-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c998b4fad6949a6b581dcbed3c58a68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c998b4fad6949a6b581dcbed3c58a68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c998b4fad6949a6b581dcbed3c58a68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c998b4fad6949a6b581dcbed3c58a68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c998b4fad6949a6b581dcbed3c58a68.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNAOAZAi1oB_IrIODsp4BWIo1zA=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.313351+00 2025-12-09 10:15:26.313357+00 14612 LZ1333#背心款3号色 SPMX-20240815309806 \N \N \N 1 \N [{"file_id": "648c0105-d71b-4706-bebb-386357231b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df154ec7f7134cb18a67f2acc6cb9676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df154ec7f7134cb18a67f2acc6cb9676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df154ec7f7134cb18a67f2acc6cb9676.jpg", "file_size": 19560, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df154ec7f7134cb18a67f2acc6cb9676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df154ec7f7134cb18a67f2acc6cb9676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df154ec7f7134cb18a67f2acc6cb9676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df154ec7f7134cb18a67f2acc6cb9676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df154ec7f7134cb18a67f2acc6cb9676.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v-d30LpYmEgXw4VQQZ-XMBOJu0s=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.315633+00 2025-12-09 10:15:26.315639+00 14613 LZ1333#背心款4号色 SPMX-20240815309822 \N \N \N 1 \N [{"file_id": "91e30d49-1f7e-4eba-a98a-11978a5342bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7371589d9d74a03bc6b6cea1d3594df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7371589d9d74a03bc6b6cea1d3594df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7371589d9d74a03bc6b6cea1d3594df.jpg", "file_size": 19463, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7371589d9d74a03bc6b6cea1d3594df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7371589d9d74a03bc6b6cea1d3594df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7371589d9d74a03bc6b6cea1d3594df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7371589d9d74a03bc6b6cea1d3594df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7371589d9d74a03bc6b6cea1d3594df.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mr8iLULTBDVxFvG8Qz6ZGQZla4c=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.318225+00 2025-12-09 10:15:26.318231+00 14614 120-1FWE#黑色VS-D3 SPMX-20240815309823 \N \N \N 1 \N [{"file_id": "94aaa790-3afd-4d2d-914c-99edb316d0b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7e1c36a555c4e078959eba8b2e40fea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7e1c36a555c4e078959eba8b2e40fea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7e1c36a555c4e078959eba8b2e40fea.jpg", "file_size": 24376, "is_delete": false, "file_type": 1, "original_file_name": "120-1FWE#黑色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e1c36a555c4e078959eba8b2e40fea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e1c36a555c4e078959eba8b2e40fea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7e1c36a555c4e078959eba8b2e40fea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7e1c36a555c4e078959eba8b2e40fea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7e1c36a555c4e078959eba8b2e40fea.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:495nb_bmNQNEvzezG6HXV6l52zQ=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.320706+00 2025-12-09 10:15:26.320713+00 14615 C940#墨绿L SPMX-20240815309819 \N \N \N 1 \N [{"file_id": "a7a51250-c5e5-41f6-b4be-6d7f3a3afd70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f6ad0a0159b4de7b49a7d557fe0f117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f6ad0a0159b4de7b49a7d557fe0f117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f6ad0a0159b4de7b49a7d557fe0f117.jpg", "file_size": 27519, "is_delete": false, "file_type": 1, "original_file_name": "C940#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f6ad0a0159b4de7b49a7d557fe0f117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f6ad0a0159b4de7b49a7d557fe0f117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f6ad0a0159b4de7b49a7d557fe0f117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f6ad0a0159b4de7b49a7d557fe0f117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f6ad0a0159b4de7b49a7d557fe0f117.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rW3dzNxo-hPqnIisRGiKthTHUko=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.323204+00 2025-12-09 10:15:26.32321+00 14616 LJH1791#1号色 SPMX-20240815309824 \N \N \N 1 \N [{"file_id": "d40a1dd5-291f-4a87-834f-28bf66255e6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "738f49fb555347a1b9b385f29524ed3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "738f49fb555347a1b9b385f29524ed3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "738f49fb555347a1b9b385f29524ed3b.jpg", "file_size": 79837, "is_delete": false, "file_type": 1, "original_file_name": "LJH1791#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738f49fb555347a1b9b385f29524ed3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738f49fb555347a1b9b385f29524ed3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/738f49fb555347a1b9b385f29524ed3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/738f49fb555347a1b9b385f29524ed3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/738f49fb555347a1b9b385f29524ed3b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EN52108FXH4XmWbm5ItRWeEiLws=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.32562+00 2025-12-09 10:15:26.325626+00 14617 0006-25FWE#VS-D3番禺调色 SPMX-20240815309828 \N \N \N 1 \N [{"file_id": "0fcc3329-d018-4b73-9db7-0ef22917fbee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d876f007ff904146847b369b8f635c64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d876f007ff904146847b369b8f635c64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d876f007ff904146847b369b8f635c64.jpg", "file_size": 20568, "is_delete": false, "file_type": 1, "original_file_name": "0006-25FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d876f007ff904146847b369b8f635c64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d876f007ff904146847b369b8f635c64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d876f007ff904146847b369b8f635c64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d876f007ff904146847b369b8f635c64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d876f007ff904146847b369b8f635c64.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yYqD-vJu8jVLeFh1NtDLvzkrhk=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.328042+00 2025-12-09 10:15:26.328047+00 14618 84115#土黄 SPMX-20240815309821 \N \N \N 1 \N [{"file_id": "5850130f-df50-4bd6-aaf7-09e89239c7de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a217a3cdda7471fa6bfa8d5b197f7c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a217a3cdda7471fa6bfa8d5b197f7c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a217a3cdda7471fa6bfa8d5b197f7c9.jpg", "file_size": 12336, "is_delete": false, "file_type": 1, "original_file_name": "84115#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a217a3cdda7471fa6bfa8d5b197f7c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a217a3cdda7471fa6bfa8d5b197f7c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a217a3cdda7471fa6bfa8d5b197f7c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a217a3cdda7471fa6bfa8d5b197f7c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a217a3cdda7471fa6bfa8d5b197f7c9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GS4mQl_ZqX2dl2wcO-PjO2gagVs=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.330436+00 2025-12-09 10:15:26.330441+00 14619 0006-24FWF#黑白番禺调色 SPMX-20240815309816 \N \N \N 1 \N [{"file_id": "45b359cc-f8a9-46c9-9e33-3c8651bf1c52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3003f9510804fec89c3a9cc8fd993df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3003f9510804fec89c3a9cc8fd993df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3003f9510804fec89c3a9cc8fd993df.jpg", "file_size": 12682, "is_delete": false, "file_type": 1, "original_file_name": "0006-24FWF#黑白番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3003f9510804fec89c3a9cc8fd993df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3003f9510804fec89c3a9cc8fd993df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3003f9510804fec89c3a9cc8fd993df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3003f9510804fec89c3a9cc8fd993df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3003f9510804fec89c3a9cc8fd993df.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxImbC44DBWplDvcDdpzNgAuIO4=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.332663+00 2025-12-09 10:15:26.332669+00 14620 HT8135-1FW#42 SPMX-20240815309818 \N \N \N 1 \N [{"file_id": "a0e44cdc-e469-4544-9d31-5cba5cd7452a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e56d9604a3e4e5792cfc7cc648e1aa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e56d9604a3e4e5792cfc7cc648e1aa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e56d9604a3e4e5792cfc7cc648e1aa4.jpg", "file_size": 11602, "is_delete": false, "file_type": 1, "original_file_name": "HT8135-1FW#42.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e56d9604a3e4e5792cfc7cc648e1aa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e56d9604a3e4e5792cfc7cc648e1aa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e56d9604a3e4e5792cfc7cc648e1aa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e56d9604a3e4e5792cfc7cc648e1aa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e56d9604a3e4e5792cfc7cc648e1aa4.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTuBHVj0q6buawpydufhKxcJwXA=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.335103+00 2025-12-09 10:15:26.33511+00 14621 23-2124#A5-领子4XL SPMX-20240815309827 \N \N \N 1 \N [{"file_id": "17eac8c4-461a-465e-b733-7e25939eb6d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9adf19f14f045a6b365c0e234795bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9adf19f14f045a6b365c0e234795bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9adf19f14f045a6b365c0e234795bff.jpg", "file_size": 13666, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf19f14f045a6b365c0e234795bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf19f14f045a6b365c0e234795bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9adf19f14f045a6b365c0e234795bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9adf19f14f045a6b365c0e234795bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9adf19f14f045a6b365c0e234795bff.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uX6oFvkeQOfvOAFMU72cxnmhJPc=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.337493+00 2025-12-09 10:15:26.337498+00 14622 HT8135-1FW#44 SPMX-20240815309829 \N \N \N 1 \N [{"file_id": "373ae6be-a9d2-4c7e-bf1b-7515d4299348", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffbd1b5809f943d1bcf8a12c18b608db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffbd1b5809f943d1bcf8a12c18b608db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffbd1b5809f943d1bcf8a12c18b608db.jpg", "file_size": 12302, "is_delete": false, "file_type": 1, "original_file_name": "HT8135-1FW#44.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffbd1b5809f943d1bcf8a12c18b608db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffbd1b5809f943d1bcf8a12c18b608db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffbd1b5809f943d1bcf8a12c18b608db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffbd1b5809f943d1bcf8a12c18b608db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffbd1b5809f943d1bcf8a12c18b608db.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rh17AiXDTKILZ-6kLVUzMz68I0A=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.339699+00 2025-12-09 10:15:26.339709+00 14623 23-2124#A5-领子3XL SPMX-20240815309817 \N \N \N 1 \N [{"file_id": "54ec70be-3469-43fc-98a5-b7e72f22f0b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d937eee80ef84618955cd80513814b56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d937eee80ef84618955cd80513814b56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d937eee80ef84618955cd80513814b56.jpg", "file_size": 12965, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d937eee80ef84618955cd80513814b56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d937eee80ef84618955cd80513814b56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d937eee80ef84618955cd80513814b56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d937eee80ef84618955cd80513814b56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d937eee80ef84618955cd80513814b56.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3si1E14hIwm3JJr1GEykFAKS3k=", "createTime": "2024-08-15 14:57:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.342165+00 2025-12-09 10:15:26.342171+00 14624 JTSS559FW#VS-D3 SPMX-20240815309826 \N \N \N 1 \N [{"file_id": "63fb37c1-2562-40ac-b5c4-6cd10f0ac0fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "180389d853d240da89472fe0b85cf47e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "180389d853d240da89472fe0b85cf47e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "180389d853d240da89472fe0b85cf47e.jpg", "file_size": 17568, "is_delete": false, "file_type": 1, "original_file_name": "JTSS559FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180389d853d240da89472fe0b85cf47e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180389d853d240da89472fe0b85cf47e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180389d853d240da89472fe0b85cf47e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/180389d853d240da89472fe0b85cf47e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/180389d853d240da89472fe0b85cf47e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gz-BHQWnfZOsLLnwQr5a2jcu2oo=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.344602+00 2025-12-09 10:15:26.344608+00 14625 FND4123FWE#妈妈装-黄色 SPMX-20240815309820 \N \N \N 1 \N [{"file_id": "b1628ae0-119a-4ce7-8398-5a651c05410d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ebea9554c0c4e8daf1aed810c731196.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ebea9554c0c4e8daf1aed810c731196.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ebea9554c0c4e8daf1aed810c731196.jpg", "file_size": 18083, "is_delete": false, "file_type": 1, "original_file_name": "FND4123FWE#妈妈装-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebea9554c0c4e8daf1aed810c731196.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebea9554c0c4e8daf1aed810c731196.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebea9554c0c4e8daf1aed810c731196.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ebea9554c0c4e8daf1aed810c731196.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ebea9554c0c4e8daf1aed810c731196.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kHVQMkf2-snBXhLiol90m_QPtU=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.34683+00 2025-12-09 10:15:26.346835+00 14626 C940#墨绿XL SPMX-20240815309830 \N \N \N 1 \N [{"file_id": "eed672c6-b077-44a0-86a3-d838ba54b842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "056611c55f0f4d8d963a5a47a80c5fd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "056611c55f0f4d8d963a5a47a80c5fd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "056611c55f0f4d8d963a5a47a80c5fd1.jpg", "file_size": 27910, "is_delete": false, "file_type": 1, "original_file_name": "C940#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056611c55f0f4d8d963a5a47a80c5fd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056611c55f0f4d8d963a5a47a80c5fd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056611c55f0f4d8d963a5a47a80c5fd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/056611c55f0f4d8d963a5a47a80c5fd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/056611c55f0f4d8d963a5a47a80c5fd1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZUYLDzaRMyeQEPjCvqp-mSwYRo=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.349259+00 2025-12-09 10:15:26.349265+00 14627 DL31147#黄色雪纺 SPMX-20240815309825 \N \N \N 1 \N [{"file_id": "cc117fa5-365f-420c-a611-f6f2408a9ae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c7ebb13e664bf98995ed4ab49163c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c7ebb13e664bf98995ed4ab49163c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c7ebb13e664bf98995ed4ab49163c1.jpg", "file_size": 23167, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#黄色雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c7ebb13e664bf98995ed4ab49163c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c7ebb13e664bf98995ed4ab49163c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c7ebb13e664bf98995ed4ab49163c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c7ebb13e664bf98995ed4ab49163c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c7ebb13e664bf98995ed4ab49163c1.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmChMGn4rq9UcOWRnmzCeVORofY=", "createTime": "2024-08-15 14:57:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.351688+00 2025-12-09 10:15:26.351694+00 14628 JTSS560FW#VS-D3 SPMX-20240815309834 \N \N \N 1 \N [{"file_id": "867beb58-d912-4ada-8ca4-294ad029feb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75fa7ae28c464cd5992cf32c0c84125e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75fa7ae28c464cd5992cf32c0c84125e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75fa7ae28c464cd5992cf32c0c84125e.jpg", "file_size": 24799, "is_delete": false, "file_type": 1, "original_file_name": "JTSS560FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa7ae28c464cd5992cf32c0c84125e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa7ae28c464cd5992cf32c0c84125e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa7ae28c464cd5992cf32c0c84125e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75fa7ae28c464cd5992cf32c0c84125e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75fa7ae28c464cd5992cf32c0c84125e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cwZTK-nZxbjimYPJeSRW45wIrWE=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.354184+00 2025-12-09 10:15:26.35419+00 14629 0006-25FWE#VS-D3龙潭调色 SPMX-20240815309835 \N \N \N 1 \N [{"file_id": "b01175dc-dd26-4823-90d0-f3dd46e7fdaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fa78876d01a47fe90e4694267aadb42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fa78876d01a47fe90e4694267aadb42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fa78876d01a47fe90e4694267aadb42.jpg", "file_size": 19794, "is_delete": false, "file_type": 1, "original_file_name": "0006-25FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa78876d01a47fe90e4694267aadb42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa78876d01a47fe90e4694267aadb42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fa78876d01a47fe90e4694267aadb42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fa78876d01a47fe90e4694267aadb42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fa78876d01a47fe90e4694267aadb42.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZd9aCJS4eyp4KjWZA-I1fPzoIU=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.356595+00 2025-12-09 10:15:26.3566+00 14630 LZ1333#背心款5号色 SPMX-20240815309833 \N \N \N 1 \N [{"file_id": "1d80d267-7a10-4cf1-9475-0418f8c6ebf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0dad4c757a64be2b161b536e7d052f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0dad4c757a64be2b161b536e7d052f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0dad4c757a64be2b161b536e7d052f4.jpg", "file_size": 19679, "is_delete": false, "file_type": 1, "original_file_name": "LZ1333#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dad4c757a64be2b161b536e7d052f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dad4c757a64be2b161b536e7d052f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0dad4c757a64be2b161b536e7d052f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0dad4c757a64be2b161b536e7d052f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0dad4c757a64be2b161b536e7d052f4.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Q0sECIUZGecEAx5uLt9Uts4Mhs=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.358767+00 2025-12-09 10:15:26.358773+00 14631 84115#红色 SPMX-20240815309836 \N \N \N 1 \N [{"file_id": "ef7ebc42-cf8e-49db-a861-581b16e3f6de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0d519c847074ebb9d0d9bd054908dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0d519c847074ebb9d0d9bd054908dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0d519c847074ebb9d0d9bd054908dcd.jpg", "file_size": 11897, "is_delete": false, "file_type": 1, "original_file_name": "84115#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d519c847074ebb9d0d9bd054908dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d519c847074ebb9d0d9bd054908dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0d519c847074ebb9d0d9bd054908dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0d519c847074ebb9d0d9bd054908dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0d519c847074ebb9d0d9bd054908dcd.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p12jPckn2YO4-0GoxidEumNCPic=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.361226+00 2025-12-09 10:15:26.361232+00 14632 LJH1791#2号色 SPMX-20240815309837 \N \N \N 1 \N [{"file_id": "af4b3835-fd96-48d7-8f84-881e8ed142b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1f348aa61984780b2ffd4e159d112ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1f348aa61984780b2ffd4e159d112ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1f348aa61984780b2ffd4e159d112ff.jpg", "file_size": 81056, "is_delete": false, "file_type": 1, "original_file_name": "LJH1791#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1f348aa61984780b2ffd4e159d112ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1f348aa61984780b2ffd4e159d112ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1f348aa61984780b2ffd4e159d112ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1f348aa61984780b2ffd4e159d112ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1f348aa61984780b2ffd4e159d112ff.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vldKjKwoFgyjf0HEC8jnAAqWYW8=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.363575+00 2025-12-09 10:15:26.363581+00 14633 C940#白色L SPMX-20240815309840 \N \N \N 1 \N [{"file_id": "b25eade2-c77e-4b02-aa65-e88c38a231b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "480076b571c9473ebf8fbaea3f1177ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "480076b571c9473ebf8fbaea3f1177ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "480076b571c9473ebf8fbaea3f1177ce.jpg", "file_size": 28267, "is_delete": false, "file_type": 1, "original_file_name": "C940#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480076b571c9473ebf8fbaea3f1177ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480076b571c9473ebf8fbaea3f1177ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480076b571c9473ebf8fbaea3f1177ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/480076b571c9473ebf8fbaea3f1177ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/480076b571c9473ebf8fbaea3f1177ce.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-pXGO8LQF4WN26gMiWyAlXnU8CY=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.365805+00 2025-12-09 10:15:26.365811+00 14634 120-短袖#大红 SPMX-20240815309831 \N \N \N 1 \N [{"file_id": "677e93de-f7df-4b79-803c-a9c858da4809", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb006eeb8e4d4d7287150a62bcfd8f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb006eeb8e4d4d7287150a62bcfd8f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb006eeb8e4d4d7287150a62bcfd8f95.jpg", "file_size": 18251, "is_delete": false, "file_type": 1, "original_file_name": "120-短袖#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb006eeb8e4d4d7287150a62bcfd8f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb006eeb8e4d4d7287150a62bcfd8f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb006eeb8e4d4d7287150a62bcfd8f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb006eeb8e4d4d7287150a62bcfd8f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb006eeb8e4d4d7287150a62bcfd8f95.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngWPvOcxEO5-zXWzDPQLAwEWZRM=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.368262+00 2025-12-09 10:15:26.368267+00 14635 HT8135-1FW#72 SPMX-20240815309838 \N \N \N 1 \N [{"file_id": "3cb31663-94bd-4a68-8db7-5c723c03c594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79656e45177d4c1192af1429715ab531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79656e45177d4c1192af1429715ab531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79656e45177d4c1192af1429715ab531.jpg", "file_size": 11369, "is_delete": false, "file_type": 1, "original_file_name": "HT8135-1FW#72.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79656e45177d4c1192af1429715ab531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79656e45177d4c1192af1429715ab531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79656e45177d4c1192af1429715ab531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79656e45177d4c1192af1429715ab531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79656e45177d4c1192af1429715ab531.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDqnm9pQ9jbOWlV3sGT_KMGlDks=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.37068+00 2025-12-09 10:15:26.370686+00 14636 FND4125FWE#妈妈装-咖啡 SPMX-20240815309832 \N \N \N 1 \N [{"file_id": "215e98bc-4fdc-4172-abce-1483388c2b27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3193c8bccfee41dfb9c616d724a4c249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3193c8bccfee41dfb9c616d724a4c249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3193c8bccfee41dfb9c616d724a4c249.jpg", "file_size": 19842, "is_delete": false, "file_type": 1, "original_file_name": "FND4125FWE#妈妈装-咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3193c8bccfee41dfb9c616d724a4c249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3193c8bccfee41dfb9c616d724a4c249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3193c8bccfee41dfb9c616d724a4c249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3193c8bccfee41dfb9c616d724a4c249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3193c8bccfee41dfb9c616d724a4c249.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0KTodDTN3b3LXNjdCT1oo5V97yk=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.373641+00 2025-12-09 10:15:26.373647+00 14637 DL31147#黑色 SPMX-20240815309839 \N \N \N 1 \N [{"file_id": "5d9a3f92-8750-44e5-b8cf-afc4fe63fd8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03070d9b61ac4503ada18eea8ec94db5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03070d9b61ac4503ada18eea8ec94db5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03070d9b61ac4503ada18eea8ec94db5.jpg", "file_size": 22495, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03070d9b61ac4503ada18eea8ec94db5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03070d9b61ac4503ada18eea8ec94db5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03070d9b61ac4503ada18eea8ec94db5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03070d9b61ac4503ada18eea8ec94db5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03070d9b61ac4503ada18eea8ec94db5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lw5oMyBp3xi3vKlHH2ewkfwcDVo=", "createTime": "2024-08-15 14:57:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.376183+00 2025-12-09 10:15:26.376189+00 14638 0006-25FWF#V5曲线 SPMX-20240815309846 \N \N \N 1 \N [{"file_id": "e64d0017-dd6a-4947-93c5-99ec6f625413", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b84548f4a6e4f51a5d15fbcec339f6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b84548f4a6e4f51a5d15fbcec339f6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b84548f4a6e4f51a5d15fbcec339f6d.jpg", "file_size": 20042, "is_delete": false, "file_type": 1, "original_file_name": "0006-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b84548f4a6e4f51a5d15fbcec339f6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b84548f4a6e4f51a5d15fbcec339f6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b84548f4a6e4f51a5d15fbcec339f6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b84548f4a6e4f51a5d15fbcec339f6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b84548f4a6e4f51a5d15fbcec339f6d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:po-7bcN5QdHrQNwcXnG2EImGUJA=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.378576+00 2025-12-09 10:15:26.378581+00 14639 84121#白色 SPMX-20240815309845 \N \N \N 1 \N [{"file_id": "b98afdbb-169f-4c07-bf09-a4f13ac96eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a07535a2124e3f856bbf8a0a62a269.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a07535a2124e3f856bbf8a0a62a269.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a07535a2124e3f856bbf8a0a62a269.jpg", "file_size": 19503, "is_delete": false, "file_type": 1, "original_file_name": "84121#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a07535a2124e3f856bbf8a0a62a269.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a07535a2124e3f856bbf8a0a62a269.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a07535a2124e3f856bbf8a0a62a269.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a07535a2124e3f856bbf8a0a62a269.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a07535a2124e3f856bbf8a0a62a269.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gHWb7UNeNcbnREAUuXyZJuHWB8=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.380964+00 2025-12-09 10:15:26.380969+00 14640 LJH1791#3号色 SPMX-20240815309847 \N \N \N 1 \N [{"file_id": "b5db2383-737c-4567-b912-d50159b14ac5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b2e73733b2464fbfa12e470867e020.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b2e73733b2464fbfa12e470867e020.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b2e73733b2464fbfa12e470867e020.jpg", "file_size": 79136, "is_delete": false, "file_type": 1, "original_file_name": "LJH1791#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2e73733b2464fbfa12e470867e020.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2e73733b2464fbfa12e470867e020.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b2e73733b2464fbfa12e470867e020.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b2e73733b2464fbfa12e470867e020.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b2e73733b2464fbfa12e470867e020.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9e26USuVC_tskpEcYBvwpObwOA=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.383874+00 2025-12-09 10:15:26.383879+00 14641 LZ1334#捆条布 SPMX-20240815309848 \N \N \N 1 \N [{"file_id": "40d2bab0-6862-41c6-9eb0-2ea0c749b579", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2211989a41a49c28faa7f8501605ec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2211989a41a49c28faa7f8501605ec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2211989a41a49c28faa7f8501605ec9.jpg", "file_size": 20923, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2211989a41a49c28faa7f8501605ec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2211989a41a49c28faa7f8501605ec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2211989a41a49c28faa7f8501605ec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2211989a41a49c28faa7f8501605ec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2211989a41a49c28faa7f8501605ec9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l19CW1Iuqm8iK8fFHk0PMGPw11c=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.386792+00 2025-12-09 10:15:26.386798+00 14642 JTSS561FW#VS-D3 SPMX-20240815309844 \N \N \N 1 \N [{"file_id": "328b7e0e-a489-4259-a43a-4519688b6612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6a98a8ff57e442dad1e93778d45c763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6a98a8ff57e442dad1e93778d45c763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6a98a8ff57e442dad1e93778d45c763.jpg", "file_size": 25275, "is_delete": false, "file_type": 1, "original_file_name": "JTSS561FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a98a8ff57e442dad1e93778d45c763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a98a8ff57e442dad1e93778d45c763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a98a8ff57e442dad1e93778d45c763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6a98a8ff57e442dad1e93778d45c763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6a98a8ff57e442dad1e93778d45c763.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PkSpKRQE6KaEnLRMZu4gsgYrvvc=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.389275+00 2025-12-09 10:15:26.38928+00 14643 FND4125FWE#妈妈装-橙色 SPMX-20240815309842 \N \N \N 1 \N [{"file_id": "49368dad-b42e-4465-862a-7f4d3115313e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10a963612673488880587d7e2e0a64e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10a963612673488880587d7e2e0a64e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10a963612673488880587d7e2e0a64e0.jpg", "file_size": 20506, "is_delete": false, "file_type": 1, "original_file_name": "FND4125FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a963612673488880587d7e2e0a64e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a963612673488880587d7e2e0a64e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a963612673488880587d7e2e0a64e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10a963612673488880587d7e2e0a64e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10a963612673488880587d7e2e0a64e0.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdWZuYwoYrKaUJ1bVRL2q0FOKJA=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.391963+00 2025-12-09 10:15:26.391969+00 14644 23-2124#灰色A1-3XL SPMX-20240815309841 \N \N \N 1 \N [{"file_id": "df031976-a350-4360-8df6-a002c120eb5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc9c8e58505042ac9495dfddb7b0e2ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc9c8e58505042ac9495dfddb7b0e2ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc9c8e58505042ac9495dfddb7b0e2ce.jpg", "file_size": 21085, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#灰色A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9c8e58505042ac9495dfddb7b0e2ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9c8e58505042ac9495dfddb7b0e2ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9c8e58505042ac9495dfddb7b0e2ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc9c8e58505042ac9495dfddb7b0e2ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc9c8e58505042ac9495dfddb7b0e2ce.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYV9VKubAhPgtFJb9PDel8msbMA=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.394475+00 2025-12-09 10:15:26.394481+00 14645 120-短袖#天蓝 SPMX-20240815309843 \N \N \N 1 \N [{"file_id": "16100f6b-bf01-4e2c-924a-eb827691abe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b61ceaf664214db7beb860c3e8261486.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b61ceaf664214db7beb860c3e8261486.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b61ceaf664214db7beb860c3e8261486.jpg", "file_size": 18164, "is_delete": false, "file_type": 1, "original_file_name": "120-短袖#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ceaf664214db7beb860c3e8261486.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ceaf664214db7beb860c3e8261486.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61ceaf664214db7beb860c3e8261486.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b61ceaf664214db7beb860c3e8261486.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b61ceaf664214db7beb860c3e8261486.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pa18t_cAuloDjoI4ZrAILXyl7nE=", "createTime": "2024-08-15 14:57:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.397207+00 2025-12-09 10:15:26.397214+00 14646 JTSS562FW#VS-D3 SPMX-20240815309851 \N \N \N 1 \N [{"file_id": "c09fc2ff-7d99-41fd-8f92-9a74be586570", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c95c213d7c554ca59c36f8a0e8e2b39d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c95c213d7c554ca59c36f8a0e8e2b39d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c95c213d7c554ca59c36f8a0e8e2b39d.jpg", "file_size": 12985, "is_delete": false, "file_type": 1, "original_file_name": "JTSS562FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c213d7c554ca59c36f8a0e8e2b39d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c213d7c554ca59c36f8a0e8e2b39d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c95c213d7c554ca59c36f8a0e8e2b39d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c95c213d7c554ca59c36f8a0e8e2b39d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c95c213d7c554ca59c36f8a0e8e2b39d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2dzH5er_Db9lnt941St3pw7DUFc=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.399886+00 2025-12-09 10:15:26.399891+00 14647 LJH1791#4号色 SPMX-20240815309856 \N \N \N 1 \N [{"file_id": "ee6526bf-2bfb-425f-b67d-e91d14ae43ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5714567ac6d49e2a2d932ef1f43f594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5714567ac6d49e2a2d932ef1f43f594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5714567ac6d49e2a2d932ef1f43f594.jpg", "file_size": 78561, "is_delete": false, "file_type": 1, "original_file_name": "LJH1791#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5714567ac6d49e2a2d932ef1f43f594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5714567ac6d49e2a2d932ef1f43f594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5714567ac6d49e2a2d932ef1f43f594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5714567ac6d49e2a2d932ef1f43f594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5714567ac6d49e2a2d932ef1f43f594.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLMHHlJPXBEfS0D0EkN7m28tlVA=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.402383+00 2025-12-09 10:15:26.402389+00 14648 DL31147#黑色雪纺 SPMX-20240815309853 \N \N \N 1 \N [{"file_id": "276e6071-9aeb-49cc-be6c-65a5dc4efbf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c57acc5b54334fe0bc1afbc64a3b9ae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c57acc5b54334fe0bc1afbc64a3b9ae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c57acc5b54334fe0bc1afbc64a3b9ae3.jpg", "file_size": 23069, "is_delete": false, "file_type": 1, "original_file_name": "DL31147#黑色雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57acc5b54334fe0bc1afbc64a3b9ae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57acc5b54334fe0bc1afbc64a3b9ae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57acc5b54334fe0bc1afbc64a3b9ae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c57acc5b54334fe0bc1afbc64a3b9ae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c57acc5b54334fe0bc1afbc64a3b9ae3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzRt9uKgqB0mezXZM6ohHcs5FCs=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.405457+00 2025-12-09 10:15:26.405466+00 14649 0006-26FWE#VS-D3 SPMX-20240815309854 \N \N \N 1 \N [{"file_id": "1bfd0dd9-8981-41af-81c9-7d7de516b144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "385d7fb3824842638ae38f5863c03dce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "385d7fb3824842638ae38f5863c03dce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "385d7fb3824842638ae38f5863c03dce.jpg", "file_size": 14544, "is_delete": false, "file_type": 1, "original_file_name": "0006-26FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385d7fb3824842638ae38f5863c03dce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385d7fb3824842638ae38f5863c03dce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385d7fb3824842638ae38f5863c03dce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/385d7fb3824842638ae38f5863c03dce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/385d7fb3824842638ae38f5863c03dce.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cB0_Wejc9k9rglNOvQ1LpZrHZs=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.408317+00 2025-12-09 10:15:26.408323+00 14650 120-短袖#玫红 SPMX-20240815309852 \N \N \N 1 \N [{"file_id": "abadcfa3-5ced-4a80-bde8-ed500353fad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c68d66bb3014c62a04b9e03f982fe0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c68d66bb3014c62a04b9e03f982fe0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c68d66bb3014c62a04b9e03f982fe0b.jpg", "file_size": 17926, "is_delete": false, "file_type": 1, "original_file_name": "120-短袖#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c68d66bb3014c62a04b9e03f982fe0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c68d66bb3014c62a04b9e03f982fe0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c68d66bb3014c62a04b9e03f982fe0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c68d66bb3014c62a04b9e03f982fe0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c68d66bb3014c62a04b9e03f982fe0b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMKaVdV87df_6he6z8hTR1x--ok=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.410948+00 2025-12-09 10:15:26.410953+00 14651 C940#白色XL SPMX-20240815309849 \N \N \N 1 \N [{"file_id": "6c8b56d4-5431-481d-aded-7e718972a8a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d26fd35819044f5ead40baf0bfaa0c15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d26fd35819044f5ead40baf0bfaa0c15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d26fd35819044f5ead40baf0bfaa0c15.jpg", "file_size": 28520, "is_delete": false, "file_type": 1, "original_file_name": "C940#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26fd35819044f5ead40baf0bfaa0c15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26fd35819044f5ead40baf0bfaa0c15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d26fd35819044f5ead40baf0bfaa0c15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d26fd35819044f5ead40baf0bfaa0c15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d26fd35819044f5ead40baf0bfaa0c15.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jq1gXUqY0Hazk5GzyPEDa9RFtwo=", "createTime": "2024-08-15 14:57:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.413512+00 2025-12-09 10:15:26.413517+00 14652 FND4125FWE#妈妈装-金黄 SPMX-20240815309855 \N \N \N 1 \N [{"file_id": "7c8a3486-70d4-4156-a614-419a2cf82cc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae76756d4c74ebf956ed0e473bded8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae76756d4c74ebf956ed0e473bded8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae76756d4c74ebf956ed0e473bded8d.jpg", "file_size": 20061, "is_delete": false, "file_type": 1, "original_file_name": "FND4125FWE#妈妈装-金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae76756d4c74ebf956ed0e473bded8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae76756d4c74ebf956ed0e473bded8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae76756d4c74ebf956ed0e473bded8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae76756d4c74ebf956ed0e473bded8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae76756d4c74ebf956ed0e473bded8d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDVkE_Lx3O9vyduP6ubLi7oQSHA=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.41614+00 2025-12-09 10:15:26.416145+00 14653 84121#黄色 SPMX-20240815309850 \N \N \N 1 \N [{"file_id": "22550048-1082-47a3-ac3e-3a36220c3d85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31be76cac5a24b0babf82bbbaa1be117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31be76cac5a24b0babf82bbbaa1be117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31be76cac5a24b0babf82bbbaa1be117.jpg", "file_size": 19587, "is_delete": false, "file_type": 1, "original_file_name": "84121#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31be76cac5a24b0babf82bbbaa1be117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31be76cac5a24b0babf82bbbaa1be117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31be76cac5a24b0babf82bbbaa1be117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31be76cac5a24b0babf82bbbaa1be117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31be76cac5a24b0babf82bbbaa1be117.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_R5cR0wnyX5FXP6JLC_00eJcS4=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.418776+00 2025-12-09 10:15:26.418786+00 14654 120-短袖#绿色 SPMX-20240815309862 \N \N \N 1 \N [{"file_id": "e4edcb2b-37c6-43b2-8d7c-243008304d97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92995236466f4ae299d1e7cc78e6a87d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92995236466f4ae299d1e7cc78e6a87d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92995236466f4ae299d1e7cc78e6a87d.jpg", "file_size": 17861, "is_delete": false, "file_type": 1, "original_file_name": "120-短袖#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92995236466f4ae299d1e7cc78e6a87d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92995236466f4ae299d1e7cc78e6a87d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92995236466f4ae299d1e7cc78e6a87d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92995236466f4ae299d1e7cc78e6a87d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92995236466f4ae299d1e7cc78e6a87d.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HWg4MV6qJzfz-uVI8od2HzaNTXU=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.42136+00 2025-12-09 10:15:26.421366+00 14655 LZ1334#背心款1号色 SPMX-20240815309857 \N \N \N 1 \N [{"file_id": "e728c7cf-9a76-40bc-a6c3-c28a13b1035e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a110d32464e4804bc1f8b61ab1ca19c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a110d32464e4804bc1f8b61ab1ca19c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a110d32464e4804bc1f8b61ab1ca19c.jpg", "file_size": 19998, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a110d32464e4804bc1f8b61ab1ca19c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a110d32464e4804bc1f8b61ab1ca19c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a110d32464e4804bc1f8b61ab1ca19c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a110d32464e4804bc1f8b61ab1ca19c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a110d32464e4804bc1f8b61ab1ca19c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bC57xRJA1qJlFeA7YiruzrpNbus=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.423836+00 2025-12-09 10:15:26.423841+00 14656 JTSS563FW#VS-D3 SPMX-20240815309863 \N \N \N 1 \N [{"file_id": "c58419a0-ce1b-41aa-b3b6-8b4d7b1a2204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "611c0eb768af4a7eb313006c248e893e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "611c0eb768af4a7eb313006c248e893e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "611c0eb768af4a7eb313006c248e893e.jpg", "file_size": 12158, "is_delete": false, "file_type": 1, "original_file_name": "JTSS563FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611c0eb768af4a7eb313006c248e893e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611c0eb768af4a7eb313006c248e893e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/611c0eb768af4a7eb313006c248e893e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/611c0eb768af4a7eb313006c248e893e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/611c0eb768af4a7eb313006c248e893e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h1aOm7ucFW_49OPeFldcHU_cZ6I=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.426495+00 2025-12-09 10:15:26.426501+00 14657 HTA01#原版色 SPMX-20240815309859 \N \N \N 1 \N [{"file_id": "20b35df8-62d4-47d4-8522-59c4231ad127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d957297e1cde42a3a098f6a652b52f5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d957297e1cde42a3a098f6a652b52f5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d957297e1cde42a3a098f6a652b52f5a.jpg", "file_size": 82677, "is_delete": false, "file_type": 1, "original_file_name": "HTA01#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957297e1cde42a3a098f6a652b52f5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957297e1cde42a3a098f6a652b52f5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d957297e1cde42a3a098f6a652b52f5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d957297e1cde42a3a098f6a652b52f5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d957297e1cde42a3a098f6a652b52f5a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8m883YQ4f_rRUuVggl-ZDpPeyE=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.429107+00 2025-12-09 10:15:26.429112+00 14658 LZ1334#背心款2号色 SPMX-20240815309866 \N \N \N 1 \N [{"file_id": "c68776bf-5713-4bfd-ae4c-1d43a5d9401a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26fdda676e5948dc94b67a00609d08c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26fdda676e5948dc94b67a00609d08c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26fdda676e5948dc94b67a00609d08c5.jpg", "file_size": 19386, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fdda676e5948dc94b67a00609d08c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fdda676e5948dc94b67a00609d08c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26fdda676e5948dc94b67a00609d08c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26fdda676e5948dc94b67a00609d08c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26fdda676e5948dc94b67a00609d08c5.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esDpMcy6GM7H71y5zd1NOonzKIs=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.431912+00 2025-12-09 10:15:26.431923+00 14659 0006-26FWF#V5曲线 SPMX-20240815309865 \N \N \N 1 \N [{"file_id": "b86dd4db-0168-4b48-bbaa-5ba159538e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3d6a0b0408d42b0a944809ef8c896bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3d6a0b0408d42b0a944809ef8c896bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3d6a0b0408d42b0a944809ef8c896bb.jpg", "file_size": 6983, "is_delete": false, "file_type": 1, "original_file_name": "0006-26FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d6a0b0408d42b0a944809ef8c896bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d6a0b0408d42b0a944809ef8c896bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d6a0b0408d42b0a944809ef8c896bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3d6a0b0408d42b0a944809ef8c896bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3d6a0b0408d42b0a944809ef8c896bb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S2vfaecC420YAOoWv4fLh1QcWgM=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.434546+00 2025-12-09 10:15:26.434551+00 14660 23-2124#灰色A1-4XL SPMX-20240815309858 \N \N \N 1 \N [{"file_id": "690e636b-c250-4bd2-95c3-70d68f796f91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc8b0c3a215c4d88850f9df80cf0bb9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc8b0c3a215c4d88850f9df80cf0bb9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc8b0c3a215c4d88850f9df80cf0bb9e.jpg", "file_size": 18927, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#灰色A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8b0c3a215c4d88850f9df80cf0bb9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8b0c3a215c4d88850f9df80cf0bb9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8b0c3a215c4d88850f9df80cf0bb9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc8b0c3a215c4d88850f9df80cf0bb9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc8b0c3a215c4d88850f9df80cf0bb9e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Lq5Z1H6DnZSna2A_8RKXRJGDSo=", "createTime": "2024-08-15 14:57:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.437095+00 2025-12-09 10:15:26.437101+00 14661 84121#黑色 SPMX-20240815309861 \N \N \N 1 \N [{"file_id": "e99c9d0e-cdb3-4613-88a8-c4b629a7ee95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9d1a50f30cb40019e2b6f93d51f3556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9d1a50f30cb40019e2b6f93d51f3556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9d1a50f30cb40019e2b6f93d51f3556.jpg", "file_size": 19854, "is_delete": false, "file_type": 1, "original_file_name": "84121#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d1a50f30cb40019e2b6f93d51f3556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d1a50f30cb40019e2b6f93d51f3556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9d1a50f30cb40019e2b6f93d51f3556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9d1a50f30cb40019e2b6f93d51f3556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9d1a50f30cb40019e2b6f93d51f3556.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCBKsCp_ew4KKf4X7EUP5XNy__Q=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.439604+00 2025-12-09 10:15:26.439611+00 14662 LJH1795#玫红色 SPMX-20240815309864 \N \N \N 1 \N [{"file_id": "09d0bfbc-07b9-4e06-a487-48ca657ba56f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "121023f6a077479d9056ae4be5e66e59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "121023f6a077479d9056ae4be5e66e59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "121023f6a077479d9056ae4be5e66e59.jpg", "file_size": 71249, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121023f6a077479d9056ae4be5e66e59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121023f6a077479d9056ae4be5e66e59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121023f6a077479d9056ae4be5e66e59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/121023f6a077479d9056ae4be5e66e59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/121023f6a077479d9056ae4be5e66e59.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVIA9Oxi07xnRU4X4P6SJ9fpYA8=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.442031+00 2025-12-09 10:15:26.442036+00 14663 C940#红色L SPMX-20240815309860 \N \N \N 1 \N [{"file_id": "6f87fa73-3681-43f5-b50a-bf9c0c4f82ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f67e5ff61cca40d5ae4b66c61ff18962.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f67e5ff61cca40d5ae4b66c61ff18962.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f67e5ff61cca40d5ae4b66c61ff18962.jpg", "file_size": 26935, "is_delete": false, "file_type": 1, "original_file_name": "C940#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67e5ff61cca40d5ae4b66c61ff18962.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67e5ff61cca40d5ae4b66c61ff18962.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67e5ff61cca40d5ae4b66c61ff18962.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f67e5ff61cca40d5ae4b66c61ff18962.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f67e5ff61cca40d5ae4b66c61ff18962.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:It7B-zucO6OWqzisvyooAd5TDlo=", "createTime": "2024-08-15 14:57:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.444447+00 2025-12-09 10:15:26.444452+00 14664 C940#红色XL SPMX-20240815309871 \N \N \N 1 \N [{"file_id": "a488f930-e58f-42dc-984f-9be622cb5e84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg", "file_size": 26970, "is_delete": false, "file_type": 1, "original_file_name": "C940#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab7d53d9cd24dd7b990d0c1ea2c8bbe.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2wQHTOw8kDhog-VpTjhOY3Kc7k=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.446846+00 2025-12-09 10:15:26.446852+00 14665 84129#浅蓝 SPMX-20240815309872 \N \N \N 1 \N [{"file_id": "24099cf7-9b82-4ce6-bdcd-8e4fae73b765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0e1314868094c18be4815074a46ea27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0e1314868094c18be4815074a46ea27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0e1314868094c18be4815074a46ea27.jpg", "file_size": 17458, "is_delete": false, "file_type": 1, "original_file_name": "84129#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e1314868094c18be4815074a46ea27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e1314868094c18be4815074a46ea27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0e1314868094c18be4815074a46ea27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0e1314868094c18be4815074a46ea27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0e1314868094c18be4815074a46ea27.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_DnsaSLbkh-o17SU0FrV0xfuZE=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.449312+00 2025-12-09 10:15:26.449317+00 14666 23-2124#灰色A1-领子4XL SPMX-20240815309881 \N \N \N 1 \N [{"file_id": "a8667804-a8cd-4c87-bd46-108facc9f4bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a42bd7b9ed59499a877955a32efc3213.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a42bd7b9ed59499a877955a32efc3213.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a42bd7b9ed59499a877955a32efc3213.jpg", "file_size": 14864, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#灰色A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a42bd7b9ed59499a877955a32efc3213.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a42bd7b9ed59499a877955a32efc3213.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a42bd7b9ed59499a877955a32efc3213.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a42bd7b9ed59499a877955a32efc3213.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a42bd7b9ed59499a877955a32efc3213.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yD9GmNgLuNn6gBQI3GbmtXdwGcQ=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.451488+00 2025-12-09 10:15:26.451494+00 14667 LZ1334#背心款3号色 SPMX-20240815309876 \N \N \N 1 \N [{"file_id": "26b15877-3fda-45e8-8ce4-60046e511db9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfbe20a9c05c46cab671cb3a41c0144f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfbe20a9c05c46cab671cb3a41c0144f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfbe20a9c05c46cab671cb3a41c0144f.jpg", "file_size": 19985, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbe20a9c05c46cab671cb3a41c0144f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbe20a9c05c46cab671cb3a41c0144f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbe20a9c05c46cab671cb3a41c0144f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfbe20a9c05c46cab671cb3a41c0144f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfbe20a9c05c46cab671cb3a41c0144f.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eWBlW2YA6GLwjNRcRA2UEPnspk=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.453979+00 2025-12-09 10:15:26.453984+00 14668 LJH1795#紫色 SPMX-20240815309874 \N \N \N 1 \N [{"file_id": "e1aae4a4-490e-425a-9aa0-126cca343765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7205756e1169416c92122b80c5118c6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7205756e1169416c92122b80c5118c6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7205756e1169416c92122b80c5118c6a.jpg", "file_size": 69809, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7205756e1169416c92122b80c5118c6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7205756e1169416c92122b80c5118c6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7205756e1169416c92122b80c5118c6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7205756e1169416c92122b80c5118c6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7205756e1169416c92122b80c5118c6a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sepBuUw_-Ydx-hS_NKF4-4Qe1l4=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.456457+00 2025-12-09 10:15:26.456463+00 14669 FND4126FWE#妈妈装咖啡色 SPMX-20240815309879 \N \N \N 1 \N [{"file_id": "ae5d8562-ffdc-4e06-9d03-f9d755671abb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eca2717b14f24c61a6a1a9769ee328bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eca2717b14f24c61a6a1a9769ee328bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eca2717b14f24c61a6a1a9769ee328bb.jpg", "file_size": 16207, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca2717b14f24c61a6a1a9769ee328bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca2717b14f24c61a6a1a9769ee328bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca2717b14f24c61a6a1a9769ee328bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eca2717b14f24c61a6a1a9769ee328bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eca2717b14f24c61a6a1a9769ee328bb.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKLvGwFQgUCwObhgjzWBZhvymwk=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.459047+00 2025-12-09 10:15:26.459052+00 14670 HTA01#彩蓝色 SPMX-20240815309867 \N \N \N 1 \N [{"file_id": "0981b914-1081-4d7d-9efc-b13d1e65bc9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1743dad1dda4da9a477ce7f8c452331.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1743dad1dda4da9a477ce7f8c452331.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1743dad1dda4da9a477ce7f8c452331.jpg", "file_size": 81025, "is_delete": false, "file_type": 1, "original_file_name": "HTA01#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1743dad1dda4da9a477ce7f8c452331.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1743dad1dda4da9a477ce7f8c452331.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1743dad1dda4da9a477ce7f8c452331.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1743dad1dda4da9a477ce7f8c452331.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1743dad1dda4da9a477ce7f8c452331.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1ZCaX5P-Lj8L7r_7bgQmEjyCLM=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.461474+00 2025-12-09 10:15:26.46148+00 14671 DL31157#上身亮黄 SPMX-20240815309868 \N \N \N 1 \N [{"file_id": "8fa1d977-f4d6-4cee-9bec-3f34be4f82c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd847e05e2f4982bba7ba9309d875b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd847e05e2f4982bba7ba9309d875b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd847e05e2f4982bba7ba9309d875b3.jpg", "file_size": 15396, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd847e05e2f4982bba7ba9309d875b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd847e05e2f4982bba7ba9309d875b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd847e05e2f4982bba7ba9309d875b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd847e05e2f4982bba7ba9309d875b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd847e05e2f4982bba7ba9309d875b3.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8QgTP6m3cVcC61vDXw1pJsP5y0=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.463689+00 2025-12-09 10:15:26.463694+00 14672 JTSS564FW#VS-D3 SPMX-20240815309873 \N \N \N 1 \N [{"file_id": "fc6766ea-e244-4630-9097-5dd8c3df8ae1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb926bda27ca485ba4e25dc32b481401.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb926bda27ca485ba4e25dc32b481401.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb926bda27ca485ba4e25dc32b481401.jpg", "file_size": 17734, "is_delete": false, "file_type": 1, "original_file_name": "JTSS564FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb926bda27ca485ba4e25dc32b481401.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb926bda27ca485ba4e25dc32b481401.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb926bda27ca485ba4e25dc32b481401.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb926bda27ca485ba4e25dc32b481401.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb926bda27ca485ba4e25dc32b481401.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:im8ZQqCDuoRCuPTq437tQ0awfjo=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.466131+00 2025-12-09 10:15:26.466136+00 14673 C940#蓝色L SPMX-20240815309880 \N \N \N 1 \N [{"file_id": "44d14681-66c3-4d49-a815-44823910e2f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4731d5f80c9b4de683ef56d7ca7a4d92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4731d5f80c9b4de683ef56d7ca7a4d92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4731d5f80c9b4de683ef56d7ca7a4d92.jpg", "file_size": 26365, "is_delete": false, "file_type": 1, "original_file_name": "C940#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731d5f80c9b4de683ef56d7ca7a4d92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731d5f80c9b4de683ef56d7ca7a4d92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4731d5f80c9b4de683ef56d7ca7a4d92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4731d5f80c9b4de683ef56d7ca7a4d92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4731d5f80c9b4de683ef56d7ca7a4d92.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPYnR8Xx5DKvdIlRJyju6BvnkXQ=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.468576+00 2025-12-09 10:15:26.468581+00 14674 84129#白色 SPMX-20240815309883 \N \N \N 1 \N [{"file_id": "c7b06afa-2575-4789-97ed-efc5b5a1bc77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e332faaae94b63bf6716ddef49dbb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e332faaae94b63bf6716ddef49dbb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e332faaae94b63bf6716ddef49dbb9.jpg", "file_size": 18652, "is_delete": false, "file_type": 1, "original_file_name": "84129#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e332faaae94b63bf6716ddef49dbb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e332faaae94b63bf6716ddef49dbb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e332faaae94b63bf6716ddef49dbb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e332faaae94b63bf6716ddef49dbb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e332faaae94b63bf6716ddef49dbb9.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hoVIGELrzkzWWzv0bpy4i5EwQg=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.470983+00 2025-12-09 10:15:26.470989+00 14675 23-2124#灰色A1-领子3XL SPMX-20240815309870 \N \N \N 1 \N [{"file_id": "1eb62ce7-2a1e-439a-8aff-036d10138a50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab553e54f7124ac4ae859e9466e955e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab553e54f7124ac4ae859e9466e955e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab553e54f7124ac4ae859e9466e955e6.jpg", "file_size": 14705, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#灰色A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab553e54f7124ac4ae859e9466e955e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab553e54f7124ac4ae859e9466e955e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab553e54f7124ac4ae859e9466e955e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab553e54f7124ac4ae859e9466e955e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab553e54f7124ac4ae859e9466e955e6.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7DZup9nmVGX271TQE52sxrsctlo=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.473374+00 2025-12-09 10:15:26.473379+00 14676 FND4125FWE#妈妈装-黑色 SPMX-20240815309869 \N \N \N 1 \N [{"file_id": "1126ba6b-bc5c-4445-a918-6f44176188d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb7117e527784182b942588306519fd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb7117e527784182b942588306519fd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb7117e527784182b942588306519fd7.jpg", "file_size": 21349, "is_delete": false, "file_type": 1, "original_file_name": "FND4125FWE#妈妈装-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7117e527784182b942588306519fd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7117e527784182b942588306519fd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb7117e527784182b942588306519fd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb7117e527784182b942588306519fd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb7117e527784182b942588306519fd7.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWbXvnnqCsOBsJFrz0sS5pS1M9k=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.475549+00 2025-12-09 10:15:26.475554+00 14677 12010#彩兰 SPMX-20240815309875 \N \N \N 1 \N [{"file_id": "733c3c50-1c03-4f16-a1f3-8bdedd04ed6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3d23cf110b3488d8aefcc91b7a35b3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3d23cf110b3488d8aefcc91b7a35b3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3d23cf110b3488d8aefcc91b7a35b3a.jpg", "file_size": 18473, "is_delete": false, "file_type": 1, "original_file_name": "12010#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d23cf110b3488d8aefcc91b7a35b3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d23cf110b3488d8aefcc91b7a35b3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3d23cf110b3488d8aefcc91b7a35b3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3d23cf110b3488d8aefcc91b7a35b3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3d23cf110b3488d8aefcc91b7a35b3a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDH01MbCAD_MHpr_w42clb16XOw=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.47775+00 2025-12-09 10:15:26.477756+00 14678 0006-27FWE#VS-D3番禺调色 SPMX-20240815309877 \N \N \N 1 \N [{"file_id": "99f57b38-8453-45f7-aa33-dbb4b96aa2a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "191a1a60f62149b09c8b76d4be89f967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "191a1a60f62149b09c8b76d4be89f967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "191a1a60f62149b09c8b76d4be89f967.jpg", "file_size": 23114, "is_delete": false, "file_type": 1, "original_file_name": "0006-27FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191a1a60f62149b09c8b76d4be89f967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191a1a60f62149b09c8b76d4be89f967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191a1a60f62149b09c8b76d4be89f967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/191a1a60f62149b09c8b76d4be89f967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/191a1a60f62149b09c8b76d4be89f967.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DhXj1J0btmCLv7xbvM4uSt3LdqE=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.480157+00 2025-12-09 10:15:26.480162+00 14679 DL31157#上身墨绿 SPMX-20240815309878 \N \N \N 1 \N [{"file_id": "d90e0bc2-ef42-444e-ac48-b91bfceab371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9936797d6f804976acf4b5a190142e83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9936797d6f804976acf4b5a190142e83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9936797d6f804976acf4b5a190142e83.jpg", "file_size": 15697, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9936797d6f804976acf4b5a190142e83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9936797d6f804976acf4b5a190142e83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9936797d6f804976acf4b5a190142e83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9936797d6f804976acf4b5a190142e83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9936797d6f804976acf4b5a190142e83.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BoPO8Tfhg34gtrGbKkwMWc7AAAk=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.482561+00 2025-12-09 10:15:26.482567+00 14680 HTA01#黄色 SPMX-20240815309882 \N \N \N 1 \N [{"file_id": "4e07fd82-f083-4607-b45b-2d93c896bdb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34bea701c2824f7bbb6f596e6b42945e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34bea701c2824f7bbb6f596e6b42945e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34bea701c2824f7bbb6f596e6b42945e.jpg", "file_size": 72210, "is_delete": false, "file_type": 1, "original_file_name": "HTA01#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bea701c2824f7bbb6f596e6b42945e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bea701c2824f7bbb6f596e6b42945e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bea701c2824f7bbb6f596e6b42945e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34bea701c2824f7bbb6f596e6b42945e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34bea701c2824f7bbb6f596e6b42945e.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U5uI00bakm1edw8vFB7SjULIu6E=", "createTime": "2024-08-15 14:57:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.48477+00 2025-12-09 10:15:26.484775+00 14681 0006-27FWE#VS-D3龙潭调色 SPMX-20240815309887 \N \N \N 1 \N [{"file_id": "72f992de-bb41-414f-9fbb-b837dad94f8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07ab8b5cec8b4a878606d1de7a66e79c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07ab8b5cec8b4a878606d1de7a66e79c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07ab8b5cec8b4a878606d1de7a66e79c.jpg", "file_size": 24313, "is_delete": false, "file_type": 1, "original_file_name": "0006-27FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ab8b5cec8b4a878606d1de7a66e79c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ab8b5cec8b4a878606d1de7a66e79c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ab8b5cec8b4a878606d1de7a66e79c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07ab8b5cec8b4a878606d1de7a66e79c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07ab8b5cec8b4a878606d1de7a66e79c.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W03dAIV0L6fg5pfJjJxX8H79lUM=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.487389+00 2025-12-09 10:15:26.487395+00 14682 LZ1334#背心款4号色 SPMX-20240815309888 \N \N \N 1 \N [{"file_id": "6685a3d8-ea5c-4eb1-9793-cdfeec816b68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73c72ddffe28452e92f65344201d258a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73c72ddffe28452e92f65344201d258a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73c72ddffe28452e92f65344201d258a.jpg", "file_size": 20281, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c72ddffe28452e92f65344201d258a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c72ddffe28452e92f65344201d258a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73c72ddffe28452e92f65344201d258a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73c72ddffe28452e92f65344201d258a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73c72ddffe28452e92f65344201d258a.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQ4ZqVA0zTbJ9B-q7woRgZ51hzo=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:26.489836+00 2025-12-09 10:15:26.489841+00 14683 23-2124#蓝色A1-3XL SPMX-20240815309891 \N \N \N 1 \N [{"file_id": "521f2387-dc01-478c-8e9c-efcd4bb9fe7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb4618cf05d540f6aace6d940800ce7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb4618cf05d540f6aace6d940800ce7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb4618cf05d540f6aace6d940800ce7b.jpg", "file_size": 21020, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#蓝色A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4618cf05d540f6aace6d940800ce7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4618cf05d540f6aace6d940800ce7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4618cf05d540f6aace6d940800ce7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb4618cf05d540f6aace6d940800ce7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb4618cf05d540f6aace6d940800ce7b.jpg?e=1765361725&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8TZ8O2QXwU4LTcyKL5xTSdNhjs=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.13339+00 2025-12-09 10:15:27.133402+00 14684 HTA02#原版色 SPMX-20240815309893 \N \N \N 1 \N [{"file_id": "1ea9cfd8-d30a-4663-a4dc-55f86d0641e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3871fd827171460eb203dcaa418a51fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3871fd827171460eb203dcaa418a51fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3871fd827171460eb203dcaa418a51fb.jpg", "file_size": 28909, "is_delete": false, "file_type": 1, "original_file_name": "HTA02#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3871fd827171460eb203dcaa418a51fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3871fd827171460eb203dcaa418a51fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3871fd827171460eb203dcaa418a51fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3871fd827171460eb203dcaa418a51fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3871fd827171460eb203dcaa418a51fb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHaqTjNam6DZVcIElwSbVvBPcbs=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.137228+00 2025-12-09 10:15:27.13724+00 14685 0006-27FWF#V5曲线 SPMX-20240815309897 \N \N \N 1 \N [{"file_id": "c1853ee7-21aa-4d8d-80d7-989d0bad677f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ab2ecd01dc344aa80455fb60c8c8c46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ab2ecd01dc344aa80455fb60c8c8c46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ab2ecd01dc344aa80455fb60c8c8c46.jpg", "file_size": 8595, "is_delete": false, "file_type": 1, "original_file_name": "0006-27FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab2ecd01dc344aa80455fb60c8c8c46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab2ecd01dc344aa80455fb60c8c8c46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ab2ecd01dc344aa80455fb60c8c8c46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ab2ecd01dc344aa80455fb60c8c8c46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ab2ecd01dc344aa80455fb60c8c8c46.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s2aupG24aUnRsO8uCXzU9RxgRbg=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.139969+00 2025-12-09 10:15:27.139975+00 14686 C940#蓝色XL SPMX-20240815309892 \N \N \N 1 \N [{"file_id": "92cdb6b7-4ece-4810-8bb5-7893ac2add79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78debd7fb90d4c43bb309588e92d6935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78debd7fb90d4c43bb309588e92d6935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78debd7fb90d4c43bb309588e92d6935.jpg", "file_size": 26791, "is_delete": false, "file_type": 1, "original_file_name": "C940#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78debd7fb90d4c43bb309588e92d6935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78debd7fb90d4c43bb309588e92d6935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78debd7fb90d4c43bb309588e92d6935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78debd7fb90d4c43bb309588e92d6935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78debd7fb90d4c43bb309588e92d6935.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ApNBCVool_yzAVRE4xzp1lmiEfo=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.142635+00 2025-12-09 10:15:27.142641+00 14687 12010#玫红 SPMX-20240815309895 \N \N \N 1 \N [{"file_id": "257c5361-7132-4f7c-9a67-e00eb2a6f282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2da34d8bf044f9f9a03f86e1c647009.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2da34d8bf044f9f9a03f86e1c647009.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2da34d8bf044f9f9a03f86e1c647009.jpg", "file_size": 17489, "is_delete": false, "file_type": 1, "original_file_name": "12010#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2da34d8bf044f9f9a03f86e1c647009.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2da34d8bf044f9f9a03f86e1c647009.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2da34d8bf044f9f9a03f86e1c647009.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2da34d8bf044f9f9a03f86e1c647009.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2da34d8bf044f9f9a03f86e1c647009.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unEAC0g6NlRe07lsx6ZYkt6x4jc=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.145172+00 2025-12-09 10:15:27.145179+00 14688 JTSS565FW#VS-D3 SPMX-20240815309885 \N \N \N 1 \N [{"file_id": "0b8dd6af-0e2a-4e97-b882-25ada5304c5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "957246cbb43e4e109c0f55289c473bf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "957246cbb43e4e109c0f55289c473bf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "957246cbb43e4e109c0f55289c473bf3.jpg", "file_size": 10692, "is_delete": false, "file_type": 1, "original_file_name": "JTSS565FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957246cbb43e4e109c0f55289c473bf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957246cbb43e4e109c0f55289c473bf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957246cbb43e4e109c0f55289c473bf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/957246cbb43e4e109c0f55289c473bf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/957246cbb43e4e109c0f55289c473bf3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b3Oto6EOtJH1jwE14r4-bXVBjSg=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.147612+00 2025-12-09 10:15:27.147617+00 14689 FND4126FWE#妈妈装橙色 SPMX-20240815309889 \N \N \N 1 \N [{"file_id": "4cfb35f5-0206-44e8-8c49-94f92efe4879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "684dffdf86754e6297d84cc6b59818d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "684dffdf86754e6297d84cc6b59818d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "684dffdf86754e6297d84cc6b59818d0.jpg", "file_size": 16120, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684dffdf86754e6297d84cc6b59818d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684dffdf86754e6297d84cc6b59818d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684dffdf86754e6297d84cc6b59818d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/684dffdf86754e6297d84cc6b59818d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/684dffdf86754e6297d84cc6b59818d0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9JV8A9BmYwX4X3MVuhcU-oxd1Fo=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.149885+00 2025-12-09 10:15:27.149891+00 14690 12010#枣红 SPMX-20240815309884 \N \N \N 1 \N [{"file_id": "ff517404-3743-41b0-a0c4-8a1704066a15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141994c703f343c2a9eae31565de8e79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141994c703f343c2a9eae31565de8e79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141994c703f343c2a9eae31565de8e79.jpg", "file_size": 19314, "is_delete": false, "file_type": 1, "original_file_name": "12010#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141994c703f343c2a9eae31565de8e79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141994c703f343c2a9eae31565de8e79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141994c703f343c2a9eae31565de8e79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141994c703f343c2a9eae31565de8e79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141994c703f343c2a9eae31565de8e79.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bcdMrj5z0tMFlFQ3DEC1lFZ2AqM=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.152312+00 2025-12-09 10:15:27.152318+00 14691 84129#黄色 SPMX-20240815309894 \N \N \N 1 \N [{"file_id": "13c8c9c7-5f0a-4115-8b37-8ed0554e09d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955e819c287546d1835c1c743ae5a9ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955e819c287546d1835c1c743ae5a9ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955e819c287546d1835c1c743ae5a9ed.jpg", "file_size": 18894, "is_delete": false, "file_type": 1, "original_file_name": "84129#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e819c287546d1835c1c743ae5a9ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e819c287546d1835c1c743ae5a9ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955e819c287546d1835c1c743ae5a9ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955e819c287546d1835c1c743ae5a9ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955e819c287546d1835c1c743ae5a9ed.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ij213q6X83mq_kRoKjt9b-IcPfg=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.15471+00 2025-12-09 10:15:27.154716+00 14692 JTSS566FW#VS-D3 SPMX-20240815309896 \N \N \N 1 \N [{"file_id": "2f280906-b67a-4174-b0e3-f9bf7975bc63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9d44bc34cc34092b419ff2f0235cd25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9d44bc34cc34092b419ff2f0235cd25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9d44bc34cc34092b419ff2f0235cd25.jpg", "file_size": 29771, "is_delete": false, "file_type": 1, "original_file_name": "JTSS566FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d44bc34cc34092b419ff2f0235cd25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d44bc34cc34092b419ff2f0235cd25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d44bc34cc34092b419ff2f0235cd25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9d44bc34cc34092b419ff2f0235cd25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9d44bc34cc34092b419ff2f0235cd25.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DWzZDSYbjFzYIk40mF1UKZx3qsw=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.156888+00 2025-12-09 10:15:27.156894+00 14693 LJH1795#绿色 SPMX-20240815309886 \N \N \N 1 \N [{"file_id": "4f5c5f7a-8333-4a14-8dc9-af18f72e5686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b16cd0d4ac84941986cea9b57b0ce1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b16cd0d4ac84941986cea9b57b0ce1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b16cd0d4ac84941986cea9b57b0ce1b.jpg", "file_size": 70238, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16cd0d4ac84941986cea9b57b0ce1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16cd0d4ac84941986cea9b57b0ce1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b16cd0d4ac84941986cea9b57b0ce1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b16cd0d4ac84941986cea9b57b0ce1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b16cd0d4ac84941986cea9b57b0ce1b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgQ0-VF7-18OTG9QZB5zpwGH-08=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.159353+00 2025-12-09 10:15:27.159358+00 14694 DL31157#上身天蓝 SPMX-20240815309890 \N \N \N 1 \N [{"file_id": "8bc9824b-6c13-4617-83a5-ade3da0db0ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6666f478f3ac4034976cf59545510f8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6666f478f3ac4034976cf59545510f8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6666f478f3ac4034976cf59545510f8f.jpg", "file_size": 15199, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6666f478f3ac4034976cf59545510f8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6666f478f3ac4034976cf59545510f8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6666f478f3ac4034976cf59545510f8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6666f478f3ac4034976cf59545510f8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6666f478f3ac4034976cf59545510f8f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmwzL4q2bcwqbQYMNB7YZPM0mnE=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.161771+00 2025-12-09 10:15:27.161777+00 14695 LJH1795#蓝色 SPMX-20240815309898 \N \N \N 1 \N [{"file_id": "c520ed2c-1beb-4931-ba25-035b658c9299", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcc4bd28f11f4d2e879c18d1f7720ba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcc4bd28f11f4d2e879c18d1f7720ba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcc4bd28f11f4d2e879c18d1f7720ba4.jpg", "file_size": 74067, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc4bd28f11f4d2e879c18d1f7720ba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc4bd28f11f4d2e879c18d1f7720ba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc4bd28f11f4d2e879c18d1f7720ba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcc4bd28f11f4d2e879c18d1f7720ba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcc4bd28f11f4d2e879c18d1f7720ba4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sD0Ica4S9DH_Tn227dH6BGmtwcs=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.164104+00 2025-12-09 10:15:27.164111+00 14696 23-2124#蓝色A1-领子3XL SPMX-20240815309911 \N \N \N 1 \N [{"file_id": "6e078c4e-dd4d-4628-9ed5-a420746776c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "055d39d49eb64f81a44ffac5a1570bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "055d39d49eb64f81a44ffac5a1570bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "055d39d49eb64f81a44ffac5a1570bb0.jpg", "file_size": 15160, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#蓝色A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055d39d49eb64f81a44ffac5a1570bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055d39d49eb64f81a44ffac5a1570bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055d39d49eb64f81a44ffac5a1570bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/055d39d49eb64f81a44ffac5a1570bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/055d39d49eb64f81a44ffac5a1570bb0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r2IAfeZceYBwiz1dZ6pcKZlDCDw=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.166575+00 2025-12-09 10:15:27.16658+00 14697 FND4126FWE#妈妈装短款-咖啡色 SPMX-20240815309899 \N \N \N 1 \N [{"file_id": "9885e7a5-174f-420e-a825-b76d5e1613dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c0b4f38a48547508567930723f1cb6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c0b4f38a48547508567930723f1cb6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c0b4f38a48547508567930723f1cb6a.jpg", "file_size": 15995, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装短款-咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0b4f38a48547508567930723f1cb6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0b4f38a48547508567930723f1cb6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0b4f38a48547508567930723f1cb6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c0b4f38a48547508567930723f1cb6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c0b4f38a48547508567930723f1cb6a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFKEs3xU84nVU1y59CAt3v27QsA=", "createTime": "2024-08-15 14:57:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.169226+00 2025-12-09 10:15:27.169233+00 14698 JTSS567FW#VS-D3 SPMX-20240815309906 \N \N \N 1 \N [{"file_id": "f10f7394-cbb0-49fd-a69d-e64efa80a235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee068ee113d14bf681df96629f696536.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee068ee113d14bf681df96629f696536.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee068ee113d14bf681df96629f696536.jpg", "file_size": 15307, "is_delete": false, "file_type": 1, "original_file_name": "JTSS567FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee068ee113d14bf681df96629f696536.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee068ee113d14bf681df96629f696536.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee068ee113d14bf681df96629f696536.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee068ee113d14bf681df96629f696536.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee068ee113d14bf681df96629f696536.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mvpasQt66_dKQy8K5rd5CA2SLc=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.171629+00 2025-12-09 10:15:27.171634+00 14699 0006-28FWE#VS-D3 SPMX-20240815309910 \N \N \N 1 \N [{"file_id": "181270f3-a10c-41a0-a402-88225c2b1a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee687854b3b4162af88e0e62569fecd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee687854b3b4162af88e0e62569fecd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee687854b3b4162af88e0e62569fecd.jpg", "file_size": 12490, "is_delete": false, "file_type": 1, "original_file_name": "0006-28FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee687854b3b4162af88e0e62569fecd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee687854b3b4162af88e0e62569fecd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee687854b3b4162af88e0e62569fecd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee687854b3b4162af88e0e62569fecd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee687854b3b4162af88e0e62569fecd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DYXp2axo5u31-ttNyw5PearHPiM=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.174018+00 2025-12-09 10:15:27.174023+00 14700 84131#橘色 SPMX-20240815309907 \N \N \N 1 \N [{"file_id": "c21f4cb7-9e89-4963-be95-73985effc4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78f2c80e9fe247eb92a62407bd477962.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78f2c80e9fe247eb92a62407bd477962.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78f2c80e9fe247eb92a62407bd477962.jpg", "file_size": 13465, "is_delete": false, "file_type": 1, "original_file_name": "84131#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f2c80e9fe247eb92a62407bd477962.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f2c80e9fe247eb92a62407bd477962.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78f2c80e9fe247eb92a62407bd477962.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78f2c80e9fe247eb92a62407bd477962.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78f2c80e9fe247eb92a62407bd477962.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5o8J3Ft-tK_2vURy2suZMtkC7A=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.176433+00 2025-12-09 10:15:27.176439+00 14701 LZ1335#捆条布 SPMX-20240815309909 \N \N \N 1 \N [{"file_id": "8f748236-ac03-41f5-bc50-71acc9cc4153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebfc5d59b6954d7cb4695bc85711dd95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebfc5d59b6954d7cb4695bc85711dd95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebfc5d59b6954d7cb4695bc85711dd95.jpg", "file_size": 8476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfc5d59b6954d7cb4695bc85711dd95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfc5d59b6954d7cb4695bc85711dd95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfc5d59b6954d7cb4695bc85711dd95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebfc5d59b6954d7cb4695bc85711dd95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebfc5d59b6954d7cb4695bc85711dd95.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAW1QmcVTxZYKZcPCFm3SlDdsow=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.178872+00 2025-12-09 10:15:27.178878+00 14702 LZ1334#背心款5号色 SPMX-20240815309900 \N \N \N 1 \N [{"file_id": "efb96ad5-e788-44b8-9521-b6e9711083e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78b1d72e3c3f4df588d5ea1304f97e57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78b1d72e3c3f4df588d5ea1304f97e57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78b1d72e3c3f4df588d5ea1304f97e57.jpg", "file_size": 20193, "is_delete": false, "file_type": 1, "original_file_name": "LZ1334#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b1d72e3c3f4df588d5ea1304f97e57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b1d72e3c3f4df588d5ea1304f97e57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78b1d72e3c3f4df588d5ea1304f97e57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78b1d72e3c3f4df588d5ea1304f97e57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78b1d72e3c3f4df588d5ea1304f97e57.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stNCu9ylOkfwBK3WKJfqnycpoVI=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.181058+00 2025-12-09 10:15:27.181063+00 14703 DL31157#上身彩兰 SPMX-20240815309901 \N \N \N 1 \N [{"file_id": "5a306961-d7fb-40da-aed0-af31512f4696", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg", "file_size": 15508, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b5a6a4b8bba4ab2a2bbf6bd54c750b1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wZe1zSIXl8U3Vz9hUcGpzyvgF2s=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.183467+00 2025-12-09 10:15:27.183473+00 14704 12010#虾红 SPMX-20240815309905 \N \N \N 1 \N [{"file_id": "9da39ea8-5266-4e26-9bc4-65e6c5079ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3397755d8bf349f88b40f71925f3b23e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3397755d8bf349f88b40f71925f3b23e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3397755d8bf349f88b40f71925f3b23e.jpg", "file_size": 18702, "is_delete": false, "file_type": 1, "original_file_name": "12010#虾红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3397755d8bf349f88b40f71925f3b23e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3397755d8bf349f88b40f71925f3b23e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3397755d8bf349f88b40f71925f3b23e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3397755d8bf349f88b40f71925f3b23e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3397755d8bf349f88b40f71925f3b23e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heM_Plz6m_qT0b9AZRvmAo4NjCM=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.185847+00 2025-12-09 10:15:27.185852+00 14705 HTA02#彩蓝色 SPMX-20240815309904 \N \N \N 1 \N [{"file_id": "14e4fdaa-fb21-41ee-8e1f-f44cca8cbf77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8a9a41c965b49efbd0c6754b7880e52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8a9a41c965b49efbd0c6754b7880e52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8a9a41c965b49efbd0c6754b7880e52.jpg", "file_size": 33101, "is_delete": false, "file_type": 1, "original_file_name": "HTA02#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9a41c965b49efbd0c6754b7880e52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9a41c965b49efbd0c6754b7880e52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8a9a41c965b49efbd0c6754b7880e52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8a9a41c965b49efbd0c6754b7880e52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8a9a41c965b49efbd0c6754b7880e52.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifyfGWuqax5M0JI7hZPzZeBwwEs=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.188032+00 2025-12-09 10:15:27.188038+00 14706 LJH1795-1#4号色 SPMX-20240815309908 \N \N \N 1 \N [{"file_id": "3e7efc8a-f1a8-4951-80c7-437a9ddc43c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "624ddc6c98a649a68c29fc1da70d2e92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "624ddc6c98a649a68c29fc1da70d2e92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "624ddc6c98a649a68c29fc1da70d2e92.jpg", "file_size": 58820, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795-1#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ddc6c98a649a68c29fc1da70d2e92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ddc6c98a649a68c29fc1da70d2e92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ddc6c98a649a68c29fc1da70d2e92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/624ddc6c98a649a68c29fc1da70d2e92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/624ddc6c98a649a68c29fc1da70d2e92.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NC6Ha5yC_s_CwhGSapCZFaz56qc=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.190459+00 2025-12-09 10:15:27.190464+00 14707 DL31157#上身浅粉 SPMX-20240815309912 \N \N \N 1 \N [{"file_id": "9c2bfbe1-65bc-4a52-96ce-9cf61c726d61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1939a13d71447d1babb5ddca0d76bb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1939a13d71447d1babb5ddca0d76bb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1939a13d71447d1babb5ddca0d76bb2.jpg", "file_size": 15482, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1939a13d71447d1babb5ddca0d76bb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1939a13d71447d1babb5ddca0d76bb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1939a13d71447d1babb5ddca0d76bb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1939a13d71447d1babb5ddca0d76bb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1939a13d71447d1babb5ddca0d76bb2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odMG6MEHKHDfu7oS-toDukod9bk=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.192856+00 2025-12-09 10:15:27.192862+00 14708 FND4126FWE#妈妈装短款-橙色 SPMX-20240815309913 \N \N \N 1 \N [{"file_id": "ac1e3d0d-fb91-4164-b334-804fdab18c0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e126a97929e64601bfb4d93ff45e57b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e126a97929e64601bfb4d93ff45e57b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e126a97929e64601bfb4d93ff45e57b1.jpg", "file_size": 16025, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装短款-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e126a97929e64601bfb4d93ff45e57b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e126a97929e64601bfb4d93ff45e57b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e126a97929e64601bfb4d93ff45e57b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e126a97929e64601bfb4d93ff45e57b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e126a97929e64601bfb4d93ff45e57b1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4bnS0ms5B2TsMdif5xzkXCu5c7A=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.195039+00 2025-12-09 10:15:27.195045+00 14709 23-2124#蓝色A1-4XL SPMX-20240815309902 \N \N \N 1 \N [{"file_id": "3338f55c-cb78-4fc1-b503-92a9fcc7607c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e66904273240498718e717b3a6edfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e66904273240498718e717b3a6edfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e66904273240498718e717b3a6edfd.jpg", "file_size": 19339, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#蓝色A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e66904273240498718e717b3a6edfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e66904273240498718e717b3a6edfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e66904273240498718e717b3a6edfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e66904273240498718e717b3a6edfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e66904273240498718e717b3a6edfd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X1rR9gDvxlHZebYFq_UVPETF4aE=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.197302+00 2025-12-09 10:15:27.197308+00 14710 HTA03#原版色 SPMX-20240815309927 \N \N \N 1 \N [{"file_id": "317923f2-11ca-4db0-b362-aabe3e851133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg", "file_size": 69020, "is_delete": false, "file_type": 1, "original_file_name": "HTA03#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bf5ab833f8d4b8e89f6bdf6d25125c1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ibd-o5BTQj2Jo4udXcmH2fXTylU=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.199744+00 2025-12-09 10:15:27.199749+00 14711 LJH1795-1#兰色底 SPMX-20240815309917 \N \N \N 1 \N [{"file_id": "6fcd331a-5cb8-45bc-b629-ee46f4a63c40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39bb4c0a0356423d8a0e6ed10d2d40e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39bb4c0a0356423d8a0e6ed10d2d40e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39bb4c0a0356423d8a0e6ed10d2d40e0.jpg", "file_size": 61528, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795-1#兰色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bb4c0a0356423d8a0e6ed10d2d40e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bb4c0a0356423d8a0e6ed10d2d40e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bb4c0a0356423d8a0e6ed10d2d40e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39bb4c0a0356423d8a0e6ed10d2d40e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39bb4c0a0356423d8a0e6ed10d2d40e0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k7At_IggkQwQ0e7-FL-MkcKlaq4=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.202202+00 2025-12-09 10:15:27.202207+00 14712 FND4126FWE#妈妈装短款-红色 SPMX-20240815309922 \N \N \N 1 \N [{"file_id": "44d0d1be-5d62-431b-b8a5-086d425a3438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ffa29ce49524f35b836919d56c999e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ffa29ce49524f35b836919d56c999e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ffa29ce49524f35b836919d56c999e0.jpg", "file_size": 16020, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装短款-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ffa29ce49524f35b836919d56c999e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ffa29ce49524f35b836919d56c999e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ffa29ce49524f35b836919d56c999e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ffa29ce49524f35b836919d56c999e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ffa29ce49524f35b836919d56c999e0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uxg752tn0oi505Oa1hoOhHlUaO0=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.204631+00 2025-12-09 10:15:27.204638+00 14713 C941#土黄L SPMX-20240815309928 \N \N \N 1 \N [{"file_id": "82ea818d-e69f-41b4-82e6-74b5a8e44efd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a22a42b981498194b26a1367727144.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a22a42b981498194b26a1367727144.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a22a42b981498194b26a1367727144.jpg", "file_size": 25698, "is_delete": false, "file_type": 1, "original_file_name": "C941#土黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a22a42b981498194b26a1367727144.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a22a42b981498194b26a1367727144.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a22a42b981498194b26a1367727144.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a22a42b981498194b26a1367727144.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a22a42b981498194b26a1367727144.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVXjP9g5FsZegq1SneHiLQSr4Vg=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.207128+00 2025-12-09 10:15:27.207134+00 14714 23-2124#蓝色A1-领子4XL SPMX-20240815309923 \N \N \N 1 \N [{"file_id": "4f1493e3-4f49-4d67-ad59-84f78ec235e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b01158d29cc485ca6b9e660cfc4b7d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b01158d29cc485ca6b9e660cfc4b7d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b01158d29cc485ca6b9e660cfc4b7d0.jpg", "file_size": 15163, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#蓝色A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b01158d29cc485ca6b9e660cfc4b7d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b01158d29cc485ca6b9e660cfc4b7d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b01158d29cc485ca6b9e660cfc4b7d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b01158d29cc485ca6b9e660cfc4b7d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b01158d29cc485ca6b9e660cfc4b7d0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRffCleyE2ozZ7i-NNm7Iv6Yx4A=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.20936+00 2025-12-09 10:15:27.209366+00 14715 12011#彩兰 SPMX-20240815309914 \N \N \N 1 \N [{"file_id": "9678a6c4-d68a-46b4-92b9-ca39aca75e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f46aad1eaa6a44d7b19ee274f676e55d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f46aad1eaa6a44d7b19ee274f676e55d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f46aad1eaa6a44d7b19ee274f676e55d.jpg", "file_size": 17881, "is_delete": false, "file_type": 1, "original_file_name": "12011#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46aad1eaa6a44d7b19ee274f676e55d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46aad1eaa6a44d7b19ee274f676e55d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f46aad1eaa6a44d7b19ee274f676e55d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f46aad1eaa6a44d7b19ee274f676e55d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f46aad1eaa6a44d7b19ee274f676e55d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yy9LAvzpTdDoDl_q2XfpGs9djqM=", "createTime": "2024-08-15 14:57:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.212064+00 2025-12-09 10:15:27.21207+00 14716 JTSS568FW#VS-D3 SPMX-20240815309915 \N \N \N 1 \N [{"file_id": "043954e6-b4c5-4ae2-b273-4683f0038523", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "326959a5bac24b7f97f7d128f404a021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "326959a5bac24b7f97f7d128f404a021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "326959a5bac24b7f97f7d128f404a021.jpg", "file_size": 21462, "is_delete": false, "file_type": 1, "original_file_name": "JTSS568FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326959a5bac24b7f97f7d128f404a021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326959a5bac24b7f97f7d128f404a021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326959a5bac24b7f97f7d128f404a021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/326959a5bac24b7f97f7d128f404a021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/326959a5bac24b7f97f7d128f404a021.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JcvhKQyOcIX0gPvOBf49EaV-chs=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.214594+00 2025-12-09 10:15:27.2146+00 14717 HTA02#牛黄 SPMX-20240815309916 \N \N \N 1 \N [{"file_id": "1b72bbb0-c853-4e80-9f96-3407019d1b60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f8298c8ace146db823075a5c562c0ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f8298c8ace146db823075a5c562c0ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f8298c8ace146db823075a5c562c0ef.jpg", "file_size": 27213, "is_delete": false, "file_type": 1, "original_file_name": "HTA02#牛黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8298c8ace146db823075a5c562c0ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8298c8ace146db823075a5c562c0ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8298c8ace146db823075a5c562c0ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f8298c8ace146db823075a5c562c0ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f8298c8ace146db823075a5c562c0ef.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiFfnuTWAcXb1lq0ijQOMVWoW6w=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.217079+00 2025-12-09 10:15:27.217085+00 14718 C940#黑色XL SPMX-20240815309919 \N \N \N 1 \N [{"file_id": "d6ace8c9-c7c7-4182-a909-d31a0da69936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d9019e5a68b4f05a20675fcdac41997.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d9019e5a68b4f05a20675fcdac41997.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d9019e5a68b4f05a20675fcdac41997.jpg", "file_size": 29500, "is_delete": false, "file_type": 1, "original_file_name": "C940#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9019e5a68b4f05a20675fcdac41997.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9019e5a68b4f05a20675fcdac41997.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9019e5a68b4f05a20675fcdac41997.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d9019e5a68b4f05a20675fcdac41997.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d9019e5a68b4f05a20675fcdac41997.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZO6_k5vYrpubxI-tmSCDQKac3lY=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.219261+00 2025-12-09 10:15:27.219271+00 14719 LZ1335#背心款1号色 SPMX-20240815309920 \N \N \N 1 \N [{"file_id": "4d808615-5744-4982-9f8b-3d61ee786315", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "554a9815b2d346b8ba0034d922048586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "554a9815b2d346b8ba0034d922048586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "554a9815b2d346b8ba0034d922048586.jpg", "file_size": 12971, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a9815b2d346b8ba0034d922048586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a9815b2d346b8ba0034d922048586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a9815b2d346b8ba0034d922048586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/554a9815b2d346b8ba0034d922048586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/554a9815b2d346b8ba0034d922048586.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vi9yjd8cXGyCrM1I3-y9iao0i68=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.22173+00 2025-12-09 10:15:27.221735+00 14720 JTSS569FW#卡其VS-D3 SPMX-20240815309926 \N \N \N 1 \N [{"file_id": "9359de7d-4bda-4b20-9e73-28deeefbe334", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "465046e593a44179b0c63361effb8e22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "465046e593a44179b0c63361effb8e22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "465046e593a44179b0c63361effb8e22.jpg", "file_size": 16731, "is_delete": false, "file_type": 1, "original_file_name": "JTSS569FW#卡其VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465046e593a44179b0c63361effb8e22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465046e593a44179b0c63361effb8e22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465046e593a44179b0c63361effb8e22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/465046e593a44179b0c63361effb8e22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/465046e593a44179b0c63361effb8e22.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osgGdSpfKWoYnBCBcu-OilmhGZQ=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.224134+00 2025-12-09 10:15:27.224139+00 14721 12011#枣红 SPMX-20240815309925 \N \N \N 1 \N [{"file_id": "b01902ac-5095-4d4e-a9ab-3626d55d6116", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8db725d138c848efaa41e106d22790ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8db725d138c848efaa41e106d22790ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8db725d138c848efaa41e106d22790ab.jpg", "file_size": 17908, "is_delete": false, "file_type": 1, "original_file_name": "12011#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db725d138c848efaa41e106d22790ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db725d138c848efaa41e106d22790ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db725d138c848efaa41e106d22790ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8db725d138c848efaa41e106d22790ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8db725d138c848efaa41e106d22790ab.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EY3dyl1f6QEA9qsrwYF1AtsSkM4=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.226345+00 2025-12-09 10:15:27.226351+00 14722 DL31157#上身玫红 SPMX-20240815309924 \N \N \N 1 \N [{"file_id": "420017aa-af98-4c94-9fd9-9d1db4451c16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f9c3d91f3944744a718626475d585bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f9c3d91f3944744a718626475d585bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f9c3d91f3944744a718626475d585bf.jpg", "file_size": 15216, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#上身玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9c3d91f3944744a718626475d585bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9c3d91f3944744a718626475d585bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9c3d91f3944744a718626475d585bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f9c3d91f3944744a718626475d585bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f9c3d91f3944744a718626475d585bf.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:toLDpdHcsiRFRQBuisK3mgPsMV4=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.228694+00 2025-12-09 10:15:27.228699+00 14723 84131#白色 SPMX-20240815309918 \N \N \N 1 \N [{"file_id": "afb0be84-abac-4eb2-93f3-3a7d23f276c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c34a4d0372645f39cd0ab180455498c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c34a4d0372645f39cd0ab180455498c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c34a4d0372645f39cd0ab180455498c.jpg", "file_size": 13742, "is_delete": false, "file_type": 1, "original_file_name": "84131#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c34a4d0372645f39cd0ab180455498c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c34a4d0372645f39cd0ab180455498c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c34a4d0372645f39cd0ab180455498c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c34a4d0372645f39cd0ab180455498c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c34a4d0372645f39cd0ab180455498c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2r0uCGV5wI_lrmXVt4QSmwq9Kk=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.231255+00 2025-12-09 10:15:27.231262+00 14724 0006-28FWF#红色 SPMX-20240815309921 \N \N \N 1 \N [{"file_id": "4aaa1de1-d506-435d-a1fa-90c26b0651c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5383b0902aeb42c1a3af2c9a773f62b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5383b0902aeb42c1a3af2c9a773f62b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5383b0902aeb42c1a3af2c9a773f62b2.jpg", "file_size": 12543, "is_delete": false, "file_type": 1, "original_file_name": "0006-28FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5383b0902aeb42c1a3af2c9a773f62b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5383b0902aeb42c1a3af2c9a773f62b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5383b0902aeb42c1a3af2c9a773f62b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5383b0902aeb42c1a3af2c9a773f62b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5383b0902aeb42c1a3af2c9a773f62b2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUqGR33jRwgWRQ9X1AeTPXu_hk8=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.233484+00 2025-12-09 10:15:27.23349+00 14725 HTA03#牛黄色 SPMX-20240815309939 \N \N \N 1 \N [{"file_id": "e4e41cff-6001-4bce-866c-d8948e068f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "879e74e7121441b2a06a859a1ea3b1ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "879e74e7121441b2a06a859a1ea3b1ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "879e74e7121441b2a06a859a1ea3b1ca.jpg", "file_size": 60457, "is_delete": false, "file_type": 1, "original_file_name": "HTA03#牛黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/879e74e7121441b2a06a859a1ea3b1ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/879e74e7121441b2a06a859a1ea3b1ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/879e74e7121441b2a06a859a1ea3b1ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/879e74e7121441b2a06a859a1ea3b1ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/879e74e7121441b2a06a859a1ea3b1ca.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c_wsQ7OU5HKWUQvbPwL68EtHoFg=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.23596+00 2025-12-09 10:15:27.235966+00 14726 0006-29FWE#VS-D3 SPMX-20240815309943 \N \N \N 1 \N [{"file_id": "6095e88c-073f-48dd-9ff1-94a305d5cbcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27dc52327811421695145eb99a828b04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27dc52327811421695145eb99a828b04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27dc52327811421695145eb99a828b04.jpg", "file_size": 21076, "is_delete": false, "file_type": 1, "original_file_name": "0006-29FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27dc52327811421695145eb99a828b04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27dc52327811421695145eb99a828b04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27dc52327811421695145eb99a828b04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27dc52327811421695145eb99a828b04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27dc52327811421695145eb99a828b04.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xCLM7h-yMBAir15IDGVrxMDyag=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.238374+00 2025-12-09 10:15:27.23838+00 14727 FND4126FWE#妈妈装长款-大红 SPMX-20240815309944 \N \N \N 1 \N [{"file_id": "09fe393e-b7db-465f-b09f-1397774b658e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60d98abfe96540f585d572a4420279a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60d98abfe96540f585d572a4420279a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60d98abfe96540f585d572a4420279a2.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装长款-大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60d98abfe96540f585d572a4420279a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60d98abfe96540f585d572a4420279a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60d98abfe96540f585d572a4420279a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60d98abfe96540f585d572a4420279a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60d98abfe96540f585d572a4420279a2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X1OfrU51TQ6qJ7LXnZ_HY0YmtaI=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.240592+00 2025-12-09 10:15:27.240598+00 14728 FND4126FWE#妈妈装短款-黑色 SPMX-20240815309934 \N \N \N 1 \N [{"file_id": "4cb22379-f1aa-4cb8-990e-d80345182c58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b06d3e20358048659eff763ad378e477.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b06d3e20358048659eff763ad378e477.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b06d3e20358048659eff763ad378e477.jpg", "file_size": 17108, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装短款-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b06d3e20358048659eff763ad378e477.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b06d3e20358048659eff763ad378e477.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b06d3e20358048659eff763ad378e477.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b06d3e20358048659eff763ad378e477.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b06d3e20358048659eff763ad378e477.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:777HElZrUXOFmwzl7BfYea0hVwE=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.243018+00 2025-12-09 10:15:27.243024+00 14729 C941#土黄XL SPMX-20240815309941 \N \N \N 1 \N [{"file_id": "1dca7ae8-052e-45ac-ba17-697425c9a73e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6770ae4689b460c8bcdd239e203f583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6770ae4689b460c8bcdd239e203f583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6770ae4689b460c8bcdd239e203f583.jpg", "file_size": 25490, "is_delete": false, "file_type": 1, "original_file_name": "C941#土黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6770ae4689b460c8bcdd239e203f583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6770ae4689b460c8bcdd239e203f583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6770ae4689b460c8bcdd239e203f583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6770ae4689b460c8bcdd239e203f583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6770ae4689b460c8bcdd239e203f583.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yEDEKIX_oO_TsMBN933hq0FUlDo=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.245468+00 2025-12-09 10:15:27.245473+00 14730 LZ1335#背心款3号色 SPMX-20240815309940 \N \N \N 1 \N [{"file_id": "2118c145-581d-4610-8f1f-ee1bcf2d61dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce6fd01a4cb148638d1b1f4c8628755e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce6fd01a4cb148638d1b1f4c8628755e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce6fd01a4cb148638d1b1f4c8628755e.jpg", "file_size": 13050, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6fd01a4cb148638d1b1f4c8628755e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6fd01a4cb148638d1b1f4c8628755e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6fd01a4cb148638d1b1f4c8628755e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce6fd01a4cb148638d1b1f4c8628755e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce6fd01a4cb148638d1b1f4c8628755e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnoEO0mCBsL7PQ1poyVvruW7ks4=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.247869+00 2025-12-09 10:15:27.247875+00 14731 LJH1795-1#白色底 SPMX-20240815309929 \N \N \N 1 \N [{"file_id": "9667fce5-4f77-4a16-8033-66b4a9025761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a235c836c9004f4c8e6e48af27f75c9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a235c836c9004f4c8e6e48af27f75c9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a235c836c9004f4c8e6e48af27f75c9d.jpg", "file_size": 59116, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795-1#白色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a235c836c9004f4c8e6e48af27f75c9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a235c836c9004f4c8e6e48af27f75c9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a235c836c9004f4c8e6e48af27f75c9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a235c836c9004f4c8e6e48af27f75c9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a235c836c9004f4c8e6e48af27f75c9d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBfbwynPja9wfr6JeglQQAM86-Q=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.250308+00 2025-12-09 10:15:27.250313+00 14732 LJH1795-1#黑色底 SPMX-20240815309942 \N \N \N 1 \N [{"file_id": "43080444-3257-4e82-a794-4b7f9167c688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac3d0c7f9345476baf3f7e584b833da8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac3d0c7f9345476baf3f7e584b833da8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac3d0c7f9345476baf3f7e584b833da8.jpg", "file_size": 61544, "is_delete": false, "file_type": 1, "original_file_name": "LJH1795-1#黑色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d0c7f9345476baf3f7e584b833da8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d0c7f9345476baf3f7e584b833da8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3d0c7f9345476baf3f7e584b833da8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac3d0c7f9345476baf3f7e584b833da8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac3d0c7f9345476baf3f7e584b833da8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tCF8VtcVG59wXxmjk2jlsy2ftfs=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.252484+00 2025-12-09 10:15:27.25249+00 14733 12011#玫红 SPMX-20240815309936 \N \N \N 1 \N [{"file_id": "eea31449-a944-4cd0-9b0b-1ac6be167507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8a74132fd5c465293bc313efc332a28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8a74132fd5c465293bc313efc332a28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8a74132fd5c465293bc313efc332a28.jpg", "file_size": 17420, "is_delete": false, "file_type": 1, "original_file_name": "12011#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a74132fd5c465293bc313efc332a28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a74132fd5c465293bc313efc332a28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8a74132fd5c465293bc313efc332a28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8a74132fd5c465293bc313efc332a28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8a74132fd5c465293bc313efc332a28.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7z2ZWnoNZ8B1m7Uw03v6oxSATnc=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.254963+00 2025-12-09 10:15:27.254968+00 14734 84131#红色 SPMX-20240815309930 \N \N \N 1 \N [{"file_id": "334ba665-9c8b-40eb-bca6-a38f47f3fc0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faa0e619b6254e9ea11a89e874af5f2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faa0e619b6254e9ea11a89e874af5f2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faa0e619b6254e9ea11a89e874af5f2a.jpg", "file_size": 14366, "is_delete": false, "file_type": 1, "original_file_name": "84131#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa0e619b6254e9ea11a89e874af5f2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa0e619b6254e9ea11a89e874af5f2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa0e619b6254e9ea11a89e874af5f2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faa0e619b6254e9ea11a89e874af5f2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faa0e619b6254e9ea11a89e874af5f2a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvN77TnrIFyopT3lkRwCHjUYyms=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.257412+00 2025-12-09 10:15:27.257418+00 14735 12011#虾红 SPMX-20240815309947 \N \N \N 1 \N [{"file_id": "7193c284-9164-4502-bb8d-e949cfdce83b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b4ccf38a8924c4ba7df7625e80074a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b4ccf38a8924c4ba7df7625e80074a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b4ccf38a8924c4ba7df7625e80074a4.jpg", "file_size": 16333, "is_delete": false, "file_type": 1, "original_file_name": "12011#虾红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4ccf38a8924c4ba7df7625e80074a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4ccf38a8924c4ba7df7625e80074a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b4ccf38a8924c4ba7df7625e80074a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b4ccf38a8924c4ba7df7625e80074a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b4ccf38a8924c4ba7df7625e80074a4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNCj7S2brW3GizaMjMAIdHvcAI4=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.259761+00 2025-12-09 10:15:27.259767+00 14736 DL31157#下摆墨绿 SPMX-20240815309945 \N \N \N 1 \N [{"file_id": "1afa58f4-d9fc-4047-995d-29c5590da1ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d81ba06081144ad8a868160b6fdefff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d81ba06081144ad8a868160b6fdefff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d81ba06081144ad8a868160b6fdefff7.jpg", "file_size": 24708, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81ba06081144ad8a868160b6fdefff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81ba06081144ad8a868160b6fdefff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81ba06081144ad8a868160b6fdefff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d81ba06081144ad8a868160b6fdefff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d81ba06081144ad8a868160b6fdefff7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPDHhP30BUlVSBFYh9RWaSN1bYY=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.273048+00 2025-12-09 10:15:27.273053+00 14741 JTSS569FW#黑VS-D3 SPMX-20240815309937 \N \N \N 1 \N [{"file_id": "ddecc346-ee7e-4fb0-937b-17f32a03e541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cab37fbd0bdf46b6b76165e5dbc10bdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cab37fbd0bdf46b6b76165e5dbc10bdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cab37fbd0bdf46b6b76165e5dbc10bdc.jpg", "file_size": 18032, "is_delete": false, "file_type": 1, "original_file_name": "JTSS569FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab37fbd0bdf46b6b76165e5dbc10bdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab37fbd0bdf46b6b76165e5dbc10bdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab37fbd0bdf46b6b76165e5dbc10bdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cab37fbd0bdf46b6b76165e5dbc10bdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cab37fbd0bdf46b6b76165e5dbc10bdc.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_FrVMpn5Dx9n8Z7OP-S1OacHC7s=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.262124+00 2025-12-09 10:15:27.26213+00 14737 23-2124#黄色A1-4XL SPMX-20240815309946 \N \N \N 1 \N [{"file_id": "6ddc77c2-d909-4f4f-ad8d-faceefb0f818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7af0be1cc85c469ebcc5be1f00ab1e33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7af0be1cc85c469ebcc5be1f00ab1e33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7af0be1cc85c469ebcc5be1f00ab1e33.jpg", "file_size": 19303, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#黄色A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af0be1cc85c469ebcc5be1f00ab1e33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af0be1cc85c469ebcc5be1f00ab1e33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af0be1cc85c469ebcc5be1f00ab1e33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7af0be1cc85c469ebcc5be1f00ab1e33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7af0be1cc85c469ebcc5be1f00ab1e33.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tpSOvwiuLnBHshG3GzB5U6whSQg=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.264585+00 2025-12-09 10:15:27.264589+00 14738 0006-28FWF#黑色 SPMX-20240815309932 \N \N \N 1 \N [{"file_id": "fd2ac937-5c9d-433e-8251-16465b624ba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e2933beab646d89c708506b064e32b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e2933beab646d89c708506b064e32b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e2933beab646d89c708506b064e32b.jpg", "file_size": 13414, "is_delete": false, "file_type": 1, "original_file_name": "0006-28FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e2933beab646d89c708506b064e32b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e2933beab646d89c708506b064e32b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e2933beab646d89c708506b064e32b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e2933beab646d89c708506b064e32b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e2933beab646d89c708506b064e32b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cin-rXA729npbkqRQTtfx_dQqAo=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.266798+00 2025-12-09 10:15:27.266804+00 14739 DL31157#下摆亮黄 SPMX-20240815309935 \N \N \N 1 \N [{"file_id": "04dc03f5-6c0a-4754-8475-d54ba85635b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4894152aeb5494cab0d8c9a4c530de8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4894152aeb5494cab0d8c9a4c530de8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4894152aeb5494cab0d8c9a4c530de8.jpg", "file_size": 25159, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4894152aeb5494cab0d8c9a4c530de8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4894152aeb5494cab0d8c9a4c530de8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4894152aeb5494cab0d8c9a4c530de8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4894152aeb5494cab0d8c9a4c530de8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4894152aeb5494cab0d8c9a4c530de8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCp6g-2LCmSTVIY2CMbftdc1E0I=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.269614+00 2025-12-09 10:15:27.269619+00 14740 23-2124#黄色A1-3XL SPMX-20240815309933 \N \N \N 1 \N [{"file_id": "acf69020-43c3-47be-a563-05ee670264cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed6b4cbacb824fee9921aa819d1fad79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed6b4cbacb824fee9921aa819d1fad79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed6b4cbacb824fee9921aa819d1fad79.jpg", "file_size": 20533, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#黄色A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6b4cbacb824fee9921aa819d1fad79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6b4cbacb824fee9921aa819d1fad79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed6b4cbacb824fee9921aa819d1fad79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed6b4cbacb824fee9921aa819d1fad79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed6b4cbacb824fee9921aa819d1fad79.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ln1SglKMKYHRKyG8xkMGu7dsPvs=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.276049+00 2025-12-09 10:15:27.276053+00 14742 LZ1335#背心款2号色 SPMX-20240815309931 \N \N \N 1 \N [{"file_id": "27127c3a-e9ef-49d9-a4fd-fc504ba5267f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9aa5b3f103c4952a7d70e6daf5647a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9aa5b3f103c4952a7d70e6daf5647a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9aa5b3f103c4952a7d70e6daf5647a7.jpg", "file_size": 13321, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9aa5b3f103c4952a7d70e6daf5647a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9aa5b3f103c4952a7d70e6daf5647a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9aa5b3f103c4952a7d70e6daf5647a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9aa5b3f103c4952a7d70e6daf5647a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9aa5b3f103c4952a7d70e6daf5647a7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bR4nW2bs-k22ok9UXgkFe2Jy-fk=", "createTime": "2024-08-15 14:57:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.278723+00 2025-12-09 10:15:27.278729+00 14743 84131#黄色 SPMX-20240815309938 \N \N \N 1 \N [{"file_id": "2a132964-07ca-421f-a0e8-2dd2a5b868d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4efcd4a4be9d4685a8d25c0022f3c91f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4efcd4a4be9d4685a8d25c0022f3c91f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4efcd4a4be9d4685a8d25c0022f3c91f.jpg", "file_size": 12105, "is_delete": false, "file_type": 1, "original_file_name": "84131#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efcd4a4be9d4685a8d25c0022f3c91f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efcd4a4be9d4685a8d25c0022f3c91f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efcd4a4be9d4685a8d25c0022f3c91f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4efcd4a4be9d4685a8d25c0022f3c91f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4efcd4a4be9d4685a8d25c0022f3c91f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YPAenQv5HOCAPW-xIyq2TNVW_Yc=", "createTime": "2024-08-15 14:57:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.281254+00 2025-12-09 10:15:27.28126+00 14744 HTA03#绿色 SPMX-20240815309952 \N \N \N 1 \N [{"file_id": "d88c0e32-cecb-4781-8e0f-dfd76c2149b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4208e9ca5ca04b6381f6bc384edc5382.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4208e9ca5ca04b6381f6bc384edc5382.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4208e9ca5ca04b6381f6bc384edc5382.jpg", "file_size": 64659, "is_delete": false, "file_type": 1, "original_file_name": "HTA03#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4208e9ca5ca04b6381f6bc384edc5382.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4208e9ca5ca04b6381f6bc384edc5382.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4208e9ca5ca04b6381f6bc384edc5382.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4208e9ca5ca04b6381f6bc384edc5382.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4208e9ca5ca04b6381f6bc384edc5382.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bajld5rPgH_Lmt-wHQVcfhVgX6w=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.28372+00 2025-12-09 10:15:27.283726+00 14745 12016#土黄 SPMX-20240815309957 \N \N \N 1 \N [{"file_id": "5a62440b-d9fb-4a37-9889-74924d0e68b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab243bb3a6514d5f8fb3a817a19f66bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab243bb3a6514d5f8fb3a817a19f66bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab243bb3a6514d5f8fb3a817a19f66bd.jpg", "file_size": 10282, "is_delete": false, "file_type": 1, "original_file_name": "12016#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab243bb3a6514d5f8fb3a817a19f66bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab243bb3a6514d5f8fb3a817a19f66bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab243bb3a6514d5f8fb3a817a19f66bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab243bb3a6514d5f8fb3a817a19f66bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab243bb3a6514d5f8fb3a817a19f66bd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjd0k7EIfNMEqJEVN-DS2Nod_bk=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.286236+00 2025-12-09 10:15:27.286243+00 14746 DL31157#下摆天蓝 SPMX-20240815309956 \N \N \N 1 \N [{"file_id": "2d302f09-4e70-48cc-b8ad-34618e3bfd1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebedd71285c4492887ee6654880f53c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebedd71285c4492887ee6654880f53c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebedd71285c4492887ee6654880f53c8.jpg", "file_size": 25145, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebedd71285c4492887ee6654880f53c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebedd71285c4492887ee6654880f53c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebedd71285c4492887ee6654880f53c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebedd71285c4492887ee6654880f53c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebedd71285c4492887ee6654880f53c8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o821qFlPqcbAMN9StdbAettxJBU=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.28877+00 2025-12-09 10:15:27.288776+00 14747 LZ1335#背心款4号色 SPMX-20240815309954 \N \N \N 1 \N [{"file_id": "c0a8430d-a1e4-4dc2-9164-e8804e91b032", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f62bf1fe8b14266877f8a25d8a9f573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f62bf1fe8b14266877f8a25d8a9f573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f62bf1fe8b14266877f8a25d8a9f573.jpg", "file_size": 13410, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f62bf1fe8b14266877f8a25d8a9f573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f62bf1fe8b14266877f8a25d8a9f573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f62bf1fe8b14266877f8a25d8a9f573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f62bf1fe8b14266877f8a25d8a9f573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f62bf1fe8b14266877f8a25d8a9f573.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGnQHeRDefde2oxnx7avyJMm0ZM=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.291384+00 2025-12-09 10:15:27.29139+00 14748 23-2124#黄色A1-领子3XL SPMX-20240815309958 \N \N \N 1 \N [{"file_id": "24247ccf-a680-439e-8c64-f6a672a7cbe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "901d6bb7d2644a028b4733fbcd69debe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "901d6bb7d2644a028b4733fbcd69debe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "901d6bb7d2644a028b4733fbcd69debe.jpg", "file_size": 15055, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#黄色A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/901d6bb7d2644a028b4733fbcd69debe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/901d6bb7d2644a028b4733fbcd69debe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/901d6bb7d2644a028b4733fbcd69debe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/901d6bb7d2644a028b4733fbcd69debe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/901d6bb7d2644a028b4733fbcd69debe.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3qTqbGKbUYmeApWKUaUJtfzUDM=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.294005+00 2025-12-09 10:15:27.294011+00 14749 JTSS571FW#VS-D3 SPMX-20240815309959 \N \N \N 1 \N [{"file_id": "8e45a0b3-0070-4d86-aff4-e7e87ad36900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "622a3e917ad8480187d1756dc69e6cff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "622a3e917ad8480187d1756dc69e6cff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "622a3e917ad8480187d1756dc69e6cff.jpg", "file_size": 17855, "is_delete": false, "file_type": 1, "original_file_name": "JTSS571FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622a3e917ad8480187d1756dc69e6cff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622a3e917ad8480187d1756dc69e6cff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622a3e917ad8480187d1756dc69e6cff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/622a3e917ad8480187d1756dc69e6cff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/622a3e917ad8480187d1756dc69e6cff.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJquPVVZoDZQWIPjUg_3RzsIROs=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.296597+00 2025-12-09 10:15:27.296607+00 14750 84179#橙色 SPMX-20240815309949 \N \N \N 1 \N [{"file_id": "936acb8e-cba9-48e6-ae7a-f4ddc29f3d3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4566a5a62bb941d28a39d8ad15db973a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4566a5a62bb941d28a39d8ad15db973a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4566a5a62bb941d28a39d8ad15db973a.jpg", "file_size": 18473, "is_delete": false, "file_type": 1, "original_file_name": "84179#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566a5a62bb941d28a39d8ad15db973a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566a5a62bb941d28a39d8ad15db973a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566a5a62bb941d28a39d8ad15db973a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4566a5a62bb941d28a39d8ad15db973a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4566a5a62bb941d28a39d8ad15db973a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9rgE6YYl5owSZAfTvkExjpb3XMU=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.299099+00 2025-12-09 10:15:27.299105+00 14751 FND4126FWE#妈妈装长款-大红色 SPMX-20240815309955 \N \N \N 1 \N [{"file_id": "8b71aafa-8ef3-4d03-ba17-5f3f195a23a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed291fc323d34fefafb75d2309ef0083.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed291fc323d34fefafb75d2309ef0083.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed291fc323d34fefafb75d2309ef0083.jpg", "file_size": 15610, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装长款-大红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed291fc323d34fefafb75d2309ef0083.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed291fc323d34fefafb75d2309ef0083.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed291fc323d34fefafb75d2309ef0083.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed291fc323d34fefafb75d2309ef0083.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed291fc323d34fefafb75d2309ef0083.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afBlwu4fJdAsFvCvA_DnjMGu44A=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.301579+00 2025-12-09 10:15:27.301584+00 14752 LJH1801#彩蓝色 SPMX-20240815309950 \N \N \N 1 \N [{"file_id": "0d941f35-aeef-4060-894a-3d16ef2cc38c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b23d4cb62cf48f9918f0a3664cd2fe5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b23d4cb62cf48f9918f0a3664cd2fe5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b23d4cb62cf48f9918f0a3664cd2fe5.jpg", "file_size": 21528, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b23d4cb62cf48f9918f0a3664cd2fe5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b23d4cb62cf48f9918f0a3664cd2fe5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b23d4cb62cf48f9918f0a3664cd2fe5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b23d4cb62cf48f9918f0a3664cd2fe5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b23d4cb62cf48f9918f0a3664cd2fe5.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gr85WD0MolNf9PvGy-zJXki5-Y8=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.304132+00 2025-12-09 10:15:27.304137+00 14753 JTSS570FW#VS-D3 SPMX-20240815309948 \N \N \N 1 \N [{"file_id": "9d065e78-5aba-4f86-87b5-515cc113a532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "238a33eaa82a463f9520f8f3aec8a159.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "238a33eaa82a463f9520f8f3aec8a159.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "238a33eaa82a463f9520f8f3aec8a159.jpg", "file_size": 18653, "is_delete": false, "file_type": 1, "original_file_name": "JTSS570FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238a33eaa82a463f9520f8f3aec8a159.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238a33eaa82a463f9520f8f3aec8a159.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238a33eaa82a463f9520f8f3aec8a159.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/238a33eaa82a463f9520f8f3aec8a159.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/238a33eaa82a463f9520f8f3aec8a159.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJMFXuQg2_HXPaIrOcfKJchqMlw=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.306674+00 2025-12-09 10:15:27.306681+00 14754 C941#墨绿L SPMX-20240815309951 \N \N \N 1 \N [{"file_id": "07bcaf30-fb03-4a56-8f6d-3a91dc9d080f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab728bc8660b4a48b21a8e70bfdb2db8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab728bc8660b4a48b21a8e70bfdb2db8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab728bc8660b4a48b21a8e70bfdb2db8.jpg", "file_size": 25233, "is_delete": false, "file_type": 1, "original_file_name": "C941#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab728bc8660b4a48b21a8e70bfdb2db8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab728bc8660b4a48b21a8e70bfdb2db8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab728bc8660b4a48b21a8e70bfdb2db8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab728bc8660b4a48b21a8e70bfdb2db8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab728bc8660b4a48b21a8e70bfdb2db8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Sm_0AP8mYs3Y7-0OTaxUAWnSkA=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.30925+00 2025-12-09 10:15:27.309257+00 14755 0006-29FWF#V5曲线 SPMX-20240815309953 \N \N \N 1 \N [{"file_id": "487921e5-4e4f-4818-8fa1-ad2de68e582e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ef47145b11048b1b0e4513cafbb0ad9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ef47145b11048b1b0e4513cafbb0ad9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ef47145b11048b1b0e4513cafbb0ad9.jpg", "file_size": 10132, "is_delete": false, "file_type": 1, "original_file_name": "0006-29FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef47145b11048b1b0e4513cafbb0ad9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef47145b11048b1b0e4513cafbb0ad9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef47145b11048b1b0e4513cafbb0ad9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ef47145b11048b1b0e4513cafbb0ad9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ef47145b11048b1b0e4513cafbb0ad9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrwEaf0s21WYYf63DbgUg0dnuvc=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.31177+00 2025-12-09 10:15:27.311776+00 14756 FND4126FWE#妈妈装长款-黑色 SPMX-20240815309966 \N \N \N 1 \N [{"file_id": "b00ff82f-fa51-4579-b9ee-923e70069106", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "655215638378471e816468084f0aaca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "655215638378471e816468084f0aaca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "655215638378471e816468084f0aaca2.jpg", "file_size": 16298, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装长款-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/655215638378471e816468084f0aaca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/655215638378471e816468084f0aaca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/655215638378471e816468084f0aaca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/655215638378471e816468084f0aaca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/655215638378471e816468084f0aaca2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6N14AoMjH7JylIlwTgI6IFMNFFI=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.314388+00 2025-12-09 10:15:27.314394+00 14757 LJH1801#粉色 SPMX-20240815309962 \N \N \N 1 \N [{"file_id": "c1331a10-dc55-4215-9abc-938c386430cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f47dd8ee3b914851b3e66e59064ae22a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f47dd8ee3b914851b3e66e59064ae22a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f47dd8ee3b914851b3e66e59064ae22a.jpg", "file_size": 20632, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f47dd8ee3b914851b3e66e59064ae22a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f47dd8ee3b914851b3e66e59064ae22a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f47dd8ee3b914851b3e66e59064ae22a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f47dd8ee3b914851b3e66e59064ae22a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f47dd8ee3b914851b3e66e59064ae22a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UhIoL0Ghwit5XHYsjPQIeSZd2qg=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.316878+00 2025-12-09 10:15:27.316884+00 14758 0006-29FWF#V5曲线番禺调色 SPMX-20240815309963 \N \N \N 1 \N [{"file_id": "2325e4e2-68f2-4ce2-8613-7ad2a58f2ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32776a0924f4419b8e75e08604a0636e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32776a0924f4419b8e75e08604a0636e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32776a0924f4419b8e75e08604a0636e.jpg", "file_size": 9988, "is_delete": false, "file_type": 1, "original_file_name": "0006-29FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32776a0924f4419b8e75e08604a0636e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32776a0924f4419b8e75e08604a0636e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32776a0924f4419b8e75e08604a0636e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32776a0924f4419b8e75e08604a0636e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32776a0924f4419b8e75e08604a0636e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3iZUSrUAPHegC8i0l2qHO64m3h4=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.319126+00 2025-12-09 10:15:27.319132+00 14759 LZ1336#上身1号色 SPMX-20240815309974 \N \N \N 1 \N [{"file_id": "bc282e1b-451c-467d-a249-b3708d82f6f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f391712870564610b37228763347b033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f391712870564610b37228763347b033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f391712870564610b37228763347b033.jpg", "file_size": 17078, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f391712870564610b37228763347b033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f391712870564610b37228763347b033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f391712870564610b37228763347b033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f391712870564610b37228763347b033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f391712870564610b37228763347b033.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFIZe14Pm9ybYRsvr2ss9E9E8Ng=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.321548+00 2025-12-09 10:15:27.321553+00 14760 84179#蓝色 SPMX-20240815309960 \N \N \N 1 \N [{"file_id": "5e890b97-a83d-410b-acb7-81ee68cdd81f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b5d25f459454662add1d9324dac7570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b5d25f459454662add1d9324dac7570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b5d25f459454662add1d9324dac7570.jpg", "file_size": 19922, "is_delete": false, "file_type": 1, "original_file_name": "84179#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5d25f459454662add1d9324dac7570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5d25f459454662add1d9324dac7570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b5d25f459454662add1d9324dac7570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b5d25f459454662add1d9324dac7570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b5d25f459454662add1d9324dac7570.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ex_NLheH82o0p3X36fYe_hxmNf8=", "createTime": "2024-08-15 14:57:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.323991+00 2025-12-09 10:15:27.323998+00 14761 0006-2FWE#VS-D3 SPMX-20240815309973 \N \N \N 1 \N [{"file_id": "336590a6-6d0a-4340-bd5d-33b18530a75a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e0183c17a1640bcab368a1058be06cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e0183c17a1640bcab368a1058be06cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e0183c17a1640bcab368a1058be06cd.jpg", "file_size": 7246, "is_delete": false, "file_type": 1, "original_file_name": "0006-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0183c17a1640bcab368a1058be06cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0183c17a1640bcab368a1058be06cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0183c17a1640bcab368a1058be06cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e0183c17a1640bcab368a1058be06cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e0183c17a1640bcab368a1058be06cd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GyEt1cg8kePt4BMaWoPBd8pdD3E=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.326203+00 2025-12-09 10:15:27.326209+00 14762 12016#彩兰 SPMX-20240815309968 \N \N \N 1 \N [{"file_id": "e4743301-31ab-4584-8081-8b3e5239c66c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2de9cc81dca64965bb1dca2ed433f402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2de9cc81dca64965bb1dca2ed433f402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2de9cc81dca64965bb1dca2ed433f402.jpg", "file_size": 11752, "is_delete": false, "file_type": 1, "original_file_name": "12016#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2de9cc81dca64965bb1dca2ed433f402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2de9cc81dca64965bb1dca2ed433f402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2de9cc81dca64965bb1dca2ed433f402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2de9cc81dca64965bb1dca2ed433f402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2de9cc81dca64965bb1dca2ed433f402.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:puP9B9HfT6j5MKeLNZyoVJGQg0A=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.328648+00 2025-12-09 10:15:27.328654+00 14763 84179#黄色 SPMX-20240815309970 \N \N \N 1 \N [{"file_id": "da3f86ba-28ea-48a2-aec8-c8834ab7aade", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1223a49ec0004205b9507d5d8a43bac7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1223a49ec0004205b9507d5d8a43bac7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1223a49ec0004205b9507d5d8a43bac7.jpg", "file_size": 18711, "is_delete": false, "file_type": 1, "original_file_name": "84179#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1223a49ec0004205b9507d5d8a43bac7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1223a49ec0004205b9507d5d8a43bac7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1223a49ec0004205b9507d5d8a43bac7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1223a49ec0004205b9507d5d8a43bac7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1223a49ec0004205b9507d5d8a43bac7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsyPR3Sj3uWfqBeXJYE9JRTMikk=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.331086+00 2025-12-09 10:15:27.331091+00 14764 HTA05#原版宝蓝色 SPMX-20240815309967 \N \N \N 1 \N [{"file_id": "0570faa9-4f59-4bb9-985d-675f6e3e4d59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c7d8df3cc8e49e3999ea6170a33b02d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c7d8df3cc8e49e3999ea6170a33b02d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c7d8df3cc8e49e3999ea6170a33b02d.jpg", "file_size": 42209, "is_delete": false, "file_type": 1, "original_file_name": "HTA05#原版宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c7d8df3cc8e49e3999ea6170a33b02d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c7d8df3cc8e49e3999ea6170a33b02d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c7d8df3cc8e49e3999ea6170a33b02d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c7d8df3cc8e49e3999ea6170a33b02d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c7d8df3cc8e49e3999ea6170a33b02d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8x1yfpH0FaiNOHWLBvV-CPewBtw=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.333287+00 2025-12-09 10:15:27.333293+00 14765 LZ1335#背心款5号色 SPMX-20240815309964 \N \N \N 1 \N [{"file_id": "a53df820-76d1-4360-9774-e8c345e5e63d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23af7e340ff44b66b13a95719ea9423a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23af7e340ff44b66b13a95719ea9423a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23af7e340ff44b66b13a95719ea9423a.jpg", "file_size": 13700, "is_delete": false, "file_type": 1, "original_file_name": "LZ1335#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af7e340ff44b66b13a95719ea9423a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af7e340ff44b66b13a95719ea9423a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af7e340ff44b66b13a95719ea9423a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23af7e340ff44b66b13a95719ea9423a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23af7e340ff44b66b13a95719ea9423a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e86L7vIjuGuyqy9ZOauQUxiAn-c=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.335666+00 2025-12-09 10:15:27.335672+00 14766 C941#墨绿XL SPMX-20240815309961 \N \N \N 1 \N [{"file_id": "884abb24-5b3b-49f0-b026-a82e9bb77bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg", "file_size": 25309, "is_delete": false, "file_type": 1, "original_file_name": "C941#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b19ca1b7ffc4c8ebb6a7165ac7f692a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_9WukXhNffEPBe7Nf0bVnLxyiYM=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.33814+00 2025-12-09 10:15:27.338145+00 14767 DL31157#下摆彩兰 SPMX-20240815309965 \N \N \N 1 \N [{"file_id": "ec0ec7a5-41d0-4359-8a13-17defccf5f45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f672c0d6215480b829b19f2523b2e7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f672c0d6215480b829b19f2523b2e7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f672c0d6215480b829b19f2523b2e7e.jpg", "file_size": 25021, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f672c0d6215480b829b19f2523b2e7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f672c0d6215480b829b19f2523b2e7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f672c0d6215480b829b19f2523b2e7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f672c0d6215480b829b19f2523b2e7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f672c0d6215480b829b19f2523b2e7e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kbyrk9hLgHEpKhe4PyGk3fv65ZE=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.340322+00 2025-12-09 10:15:27.340328+00 14768 23-2124#黄色A1-领子4XL SPMX-20240815309969 \N \N \N 1 \N [{"file_id": "10ff2ef6-2d0f-4bb2-9f57-6220b5c14a52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea39dc9c0c74425fba9756f931924deb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea39dc9c0c74425fba9756f931924deb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea39dc9c0c74425fba9756f931924deb.jpg", "file_size": 14735, "is_delete": false, "file_type": 1, "original_file_name": "23-2124#黄色A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea39dc9c0c74425fba9756f931924deb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea39dc9c0c74425fba9756f931924deb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea39dc9c0c74425fba9756f931924deb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea39dc9c0c74425fba9756f931924deb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea39dc9c0c74425fba9756f931924deb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ieg8qdc5kuO8QvzuTxE7ih60KQ=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.343076+00 2025-12-09 10:15:27.343082+00 14769 JTSS572FW#VS-D3 SPMX-20240815309971 \N \N \N 1 \N [{"file_id": "9106c98b-e703-479b-9de0-28d5ad30c9ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd2b67fc429949d2959ef41022ccf742.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd2b67fc429949d2959ef41022ccf742.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd2b67fc429949d2959ef41022ccf742.jpg", "file_size": 18787, "is_delete": false, "file_type": 1, "original_file_name": "JTSS572FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2b67fc429949d2959ef41022ccf742.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2b67fc429949d2959ef41022ccf742.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2b67fc429949d2959ef41022ccf742.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd2b67fc429949d2959ef41022ccf742.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd2b67fc429949d2959ef41022ccf742.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPwFBJelMJciYznxwV0r2P5KxrA=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.34557+00 2025-12-09 10:15:27.345576+00 14770 LJH1801#红色 SPMX-20240815309972 \N \N \N 1 \N [{"file_id": "678ad5c7-4952-44dc-af42-ef4b75e2a1c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46b8e59b674c4d1ebf1c916dd5974b78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46b8e59b674c4d1ebf1c916dd5974b78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46b8e59b674c4d1ebf1c916dd5974b78.jpg", "file_size": 19976, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b8e59b674c4d1ebf1c916dd5974b78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b8e59b674c4d1ebf1c916dd5974b78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b8e59b674c4d1ebf1c916dd5974b78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46b8e59b674c4d1ebf1c916dd5974b78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46b8e59b674c4d1ebf1c916dd5974b78.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D04hoUB3Ey8nwgi4NBOJnylNFW4=", "createTime": "2024-08-15 14:57:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.348329+00 2025-12-09 10:15:27.348334+00 14771 0006-2FWF#V5曲线 SPMX-20240815309985 \N \N \N 1 \N [{"file_id": "a10e5217-df5c-49c1-8867-8b0ee735a523", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f255a5803b424f66b075823f1af7c358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f255a5803b424f66b075823f1af7c358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f255a5803b424f66b075823f1af7c358.jpg", "file_size": 21704, "is_delete": false, "file_type": 1, "original_file_name": "0006-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f255a5803b424f66b075823f1af7c358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f255a5803b424f66b075823f1af7c358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f255a5803b424f66b075823f1af7c358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f255a5803b424f66b075823f1af7c358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f255a5803b424f66b075823f1af7c358.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrvpNlGmXWjFxfSzPt6ajNnyqV4=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.351046+00 2025-12-09 10:15:27.351052+00 14772 LZ1336#上身2号色 SPMX-20240815309984 \N \N \N 1 \N [{"file_id": "c78ad002-6c22-45dc-8539-d8948a21e8c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8287c245944acfbea56bf94a25567e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8287c245944acfbea56bf94a25567e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8287c245944acfbea56bf94a25567e.jpg", "file_size": 17628, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8287c245944acfbea56bf94a25567e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8287c245944acfbea56bf94a25567e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8287c245944acfbea56bf94a25567e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8287c245944acfbea56bf94a25567e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8287c245944acfbea56bf94a25567e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:087ESYW3tD7q0LQH-S55grPnbcM=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.353787+00 2025-12-09 10:15:27.353793+00 14773 DL31157#下摆浅粉 SPMX-20240815309977 \N \N \N 1 \N [{"file_id": "6b5a2412-91ad-4328-b370-2e961facb627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebe1baeaa2484c8893aad704ed7c25e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebe1baeaa2484c8893aad704ed7c25e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebe1baeaa2484c8893aad704ed7c25e6.jpg", "file_size": 25439, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe1baeaa2484c8893aad704ed7c25e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe1baeaa2484c8893aad704ed7c25e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe1baeaa2484c8893aad704ed7c25e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebe1baeaa2484c8893aad704ed7c25e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebe1baeaa2484c8893aad704ed7c25e6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdOaC4F-x586wXmZ3rSHM8o7ShQ=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.35646+00 2025-12-09 10:15:27.356465+00 14774 12016#玫红 SPMX-20240815309989 \N \N \N 1 \N [{"file_id": "91eb6138-4abe-4e08-81b6-3c38d3c2c99e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff43714c93844ac987813b823bc5f804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff43714c93844ac987813b823bc5f804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff43714c93844ac987813b823bc5f804.jpg", "file_size": 10696, "is_delete": false, "file_type": 1, "original_file_name": "12016#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff43714c93844ac987813b823bc5f804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff43714c93844ac987813b823bc5f804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff43714c93844ac987813b823bc5f804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff43714c93844ac987813b823bc5f804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff43714c93844ac987813b823bc5f804.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bu4lG2j9C4pyV1iyWBPjwLSrZpM=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.359224+00 2025-12-09 10:15:27.359229+00 14775 FND4126FWE#妈妈装黑色 SPMX-20240815309975 \N \N \N 1 \N [{"file_id": "72c3e599-1d18-4633-b9bf-a0f35f7878b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf635d255d664e20a2b5306c0122c5e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf635d255d664e20a2b5306c0122c5e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf635d255d664e20a2b5306c0122c5e2.jpg", "file_size": 17519, "is_delete": false, "file_type": 1, "original_file_name": "FND4126FWE#妈妈装黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf635d255d664e20a2b5306c0122c5e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf635d255d664e20a2b5306c0122c5e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf635d255d664e20a2b5306c0122c5e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf635d255d664e20a2b5306c0122c5e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf635d255d664e20a2b5306c0122c5e2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ZFG9yYCD2ABkXqF6FdHm_npbrE=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.36174+00 2025-12-09 10:15:27.361746+00 14776 HTA05#牛黄 SPMX-20240815309978 \N \N \N 1 \N [{"file_id": "5e0606c4-d98e-403a-817c-1be837913d9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8575c366c744ee28f0d94f70be96b74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8575c366c744ee28f0d94f70be96b74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8575c366c744ee28f0d94f70be96b74.jpg", "file_size": 43713, "is_delete": false, "file_type": 1, "original_file_name": "HTA05#牛黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8575c366c744ee28f0d94f70be96b74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8575c366c744ee28f0d94f70be96b74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8575c366c744ee28f0d94f70be96b74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8575c366c744ee28f0d94f70be96b74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8575c366c744ee28f0d94f70be96b74.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyfN3DVPM91N73U1piQj_dT6sBY=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.364125+00 2025-12-09 10:15:27.364131+00 14777 84179#黑色 SPMX-20240815309980 \N \N \N 1 \N [{"file_id": "00c123d1-9bd0-4790-92f9-bb0a3ddd4730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c5053d2e5ff4693903b6932d5772d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c5053d2e5ff4693903b6932d5772d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c5053d2e5ff4693903b6932d5772d6b.jpg", "file_size": 20542, "is_delete": false, "file_type": 1, "original_file_name": "84179#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5053d2e5ff4693903b6932d5772d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5053d2e5ff4693903b6932d5772d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5053d2e5ff4693903b6932d5772d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c5053d2e5ff4693903b6932d5772d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c5053d2e5ff4693903b6932d5772d6b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePQ5qsjD6KRXq3qtX6lzjrcA3C0=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.36633+00 2025-12-09 10:15:27.366335+00 14778 DL31157#下摆玫红 SPMX-20240815309986 \N \N \N 1 \N [{"file_id": "71160f30-6632-47da-bc5f-c2273fbbd3e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef5f92b49854660b62cdfe8c1ed8d4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef5f92b49854660b62cdfe8c1ed8d4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef5f92b49854660b62cdfe8c1ed8d4e.jpg", "file_size": 24680, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#下摆玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef5f92b49854660b62cdfe8c1ed8d4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef5f92b49854660b62cdfe8c1ed8d4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef5f92b49854660b62cdfe8c1ed8d4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef5f92b49854660b62cdfe8c1ed8d4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef5f92b49854660b62cdfe8c1ed8d4e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wB_GtgK_mDYOw11ZtJ50ZOfwXOU=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.368553+00 2025-12-09 10:15:27.368559+00 14779 HTA05#红色 SPMX-20240815309990 \N \N \N 1 \N [{"file_id": "8bab3f0e-23ba-4391-9513-501baed14292", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0edb40c49d324b94abda290972c58f63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0edb40c49d324b94abda290972c58f63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0edb40c49d324b94abda290972c58f63.jpg", "file_size": 49086, "is_delete": false, "file_type": 1, "original_file_name": "HTA05#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edb40c49d324b94abda290972c58f63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edb40c49d324b94abda290972c58f63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edb40c49d324b94abda290972c58f63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0edb40c49d324b94abda290972c58f63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0edb40c49d324b94abda290972c58f63.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkCdlCv_Ty_ua41GKA8DZ1kSz6w=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.370984+00 2025-12-09 10:15:27.370989+00 14780 12016#枣红 SPMX-20240815309979 \N \N \N 1 \N [{"file_id": "196d6938-1f27-424e-a8d8-8cc923f1fdc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b785bafecb5f446ab9ae68631a5f5ea3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b785bafecb5f446ab9ae68631a5f5ea3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b785bafecb5f446ab9ae68631a5f5ea3.jpg", "file_size": 11820, "is_delete": false, "file_type": 1, "original_file_name": "12016#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b785bafecb5f446ab9ae68631a5f5ea3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b785bafecb5f446ab9ae68631a5f5ea3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b785bafecb5f446ab9ae68631a5f5ea3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b785bafecb5f446ab9ae68631a5f5ea3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b785bafecb5f446ab9ae68631a5f5ea3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvpCEb47nXn3Eo_RIMFnQBkm5fc=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.373445+00 2025-12-09 10:15:27.373451+00 14781 C941#白色L SPMX-20240815309976 \N \N \N 1 \N [{"file_id": "19b9a393-a629-4407-a1b3-4955717f6be6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67f7f72c6f9e4e1a97e15f0dce447eb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67f7f72c6f9e4e1a97e15f0dce447eb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67f7f72c6f9e4e1a97e15f0dce447eb2.jpg", "file_size": 26239, "is_delete": false, "file_type": 1, "original_file_name": "C941#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f7f72c6f9e4e1a97e15f0dce447eb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f7f72c6f9e4e1a97e15f0dce447eb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f7f72c6f9e4e1a97e15f0dce447eb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67f7f72c6f9e4e1a97e15f0dce447eb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67f7f72c6f9e4e1a97e15f0dce447eb2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnqfVlwD7z4GyslbuJfa6lQUYBA=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.375964+00 2025-12-09 10:15:27.375969+00 14782 JTSS573FW#VS-D3 SPMX-20240815309981 \N \N \N 1 \N [{"file_id": "b9e59749-cf64-44c5-b174-155a0a2f22ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b6376de7f654ec6baf501a82f3a678c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b6376de7f654ec6baf501a82f3a678c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b6376de7f654ec6baf501a82f3a678c.jpg", "file_size": 9413, "is_delete": false, "file_type": 1, "original_file_name": "JTSS573FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6376de7f654ec6baf501a82f3a678c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6376de7f654ec6baf501a82f3a678c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b6376de7f654ec6baf501a82f3a678c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b6376de7f654ec6baf501a82f3a678c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b6376de7f654ec6baf501a82f3a678c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmsWK4LyNriV43MHK_g9MxA9-VQ=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.378366+00 2025-12-09 10:15:27.378372+00 14783 LJH1801-2#图片色 SPMX-20240815309982 \N \N \N 1 \N [{"file_id": "07a53479-2325-4574-89e5-8ec560eebe0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe2288756d464bc6a35274f1af59ee90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe2288756d464bc6a35274f1af59ee90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe2288756d464bc6a35274f1af59ee90.jpg", "file_size": 70577, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-2#图片色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2288756d464bc6a35274f1af59ee90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2288756d464bc6a35274f1af59ee90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2288756d464bc6a35274f1af59ee90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe2288756d464bc6a35274f1af59ee90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe2288756d464bc6a35274f1af59ee90.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xXIW-Zrk_0PLIe4mciQTcbcDizM=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.38065+00 2025-12-09 10:15:27.380656+00 14784 C941#白色XL SPMX-20240815309988 \N \N \N 1 \N [{"file_id": "7078dec8-5299-44e6-8b92-143b97ee4775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5843d17e61b64cdeb512c6fe8ab42207.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5843d17e61b64cdeb512c6fe8ab42207.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5843d17e61b64cdeb512c6fe8ab42207.jpg", "file_size": 26316, "is_delete": false, "file_type": 1, "original_file_name": "C941#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5843d17e61b64cdeb512c6fe8ab42207.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5843d17e61b64cdeb512c6fe8ab42207.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5843d17e61b64cdeb512c6fe8ab42207.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5843d17e61b64cdeb512c6fe8ab42207.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5843d17e61b64cdeb512c6fe8ab42207.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cvDDBGTBlVqm2uttq4U6EvPgbQ0=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.383003+00 2025-12-09 10:15:27.383009+00 14785 FND4127FWE#妈妈装-大红 SPMX-20240815309987 \N \N \N 1 \N [{"file_id": "b8599999-9c1e-480a-af40-21933138846e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a00472a2baa54d18935c466a0d819946.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a00472a2baa54d18935c466a0d819946.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a00472a2baa54d18935c466a0d819946.jpg", "file_size": 17020, "is_delete": false, "file_type": 1, "original_file_name": "FND4127FWE#妈妈装-大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00472a2baa54d18935c466a0d819946.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00472a2baa54d18935c466a0d819946.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a00472a2baa54d18935c466a0d819946.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a00472a2baa54d18935c466a0d819946.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a00472a2baa54d18935c466a0d819946.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Q5JcTrVCo18SEDlkrCwE6vBgzQ=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.385536+00 2025-12-09 10:15:27.385542+00 14786 23-2126#A1-3XL SPMX-20240815309983 \N \N \N 1 \N [{"file_id": "26892584-a6bd-4770-9b00-87d8491ccd3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af7c57ef783f491e8d3fbd28fa7fe598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af7c57ef783f491e8d3fbd28fa7fe598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af7c57ef783f491e8d3fbd28fa7fe598.jpg", "file_size": 16308, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7c57ef783f491e8d3fbd28fa7fe598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7c57ef783f491e8d3fbd28fa7fe598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7c57ef783f491e8d3fbd28fa7fe598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af7c57ef783f491e8d3fbd28fa7fe598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af7c57ef783f491e8d3fbd28fa7fe598.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqBooAiSGYjUlxBmm3h8wwF3f8s=", "createTime": "2024-08-15 14:57:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.388026+00 2025-12-09 10:15:27.388032+00 14787 12016#虾粉 SPMX-20240815309996 \N \N \N 1 \N [{"file_id": "d93a6b6e-982c-4ffc-aa8d-11b410b3f572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cfa5969b7a048d881a31b33a55b35c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cfa5969b7a048d881a31b33a55b35c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cfa5969b7a048d881a31b33a55b35c6.jpg", "file_size": 9126, "is_delete": false, "file_type": 1, "original_file_name": "12016#虾粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa5969b7a048d881a31b33a55b35c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa5969b7a048d881a31b33a55b35c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa5969b7a048d881a31b33a55b35c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cfa5969b7a048d881a31b33a55b35c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cfa5969b7a048d881a31b33a55b35c6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bm7gAzPDmlTVDay-SmA6YrYHiaQ=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.390469+00 2025-12-09 10:15:27.390475+00 14788 HTA07#原版色 SPMX-20240815310001 \N \N \N 1 \N [{"file_id": "465f85cb-b1be-442a-9cf5-a48fb432664f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97b42f2e26c541fc8325be3b4219d1e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97b42f2e26c541fc8325be3b4219d1e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97b42f2e26c541fc8325be3b4219d1e7.jpg", "file_size": 34618, "is_delete": false, "file_type": 1, "original_file_name": "HTA07#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b42f2e26c541fc8325be3b4219d1e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b42f2e26c541fc8325be3b4219d1e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b42f2e26c541fc8325be3b4219d1e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97b42f2e26c541fc8325be3b4219d1e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97b42f2e26c541fc8325be3b4219d1e7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZKSOINMbeO4x_8cYAp-XPFEekHM=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.392646+00 2025-12-09 10:15:27.392651+00 14789 23-2126#A1-4XL SPMX-20240815309995 \N \N \N 1 \N [{"file_id": "02810384-a1ea-4b23-9de7-1d17f6903b6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33fc27ec66e648debd520ea226ba06b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33fc27ec66e648debd520ea226ba06b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33fc27ec66e648debd520ea226ba06b4.jpg", "file_size": 15570, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fc27ec66e648debd520ea226ba06b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fc27ec66e648debd520ea226ba06b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fc27ec66e648debd520ea226ba06b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33fc27ec66e648debd520ea226ba06b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33fc27ec66e648debd520ea226ba06b4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcEl8Xkd8fkKbdqdRredNYxnoV8=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.395385+00 2025-12-09 10:15:27.395391+00 14790 DL31157#袖子亮黄 SPMX-20240815310000 \N \N \N 1 \N [{"file_id": "a2779148-6a0c-4f8e-8544-cab2fb70cd6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dfd9b15e4424e2189f277e9195ca4f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dfd9b15e4424e2189f277e9195ca4f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dfd9b15e4424e2189f277e9195ca4f8.jpg", "file_size": 15805, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfd9b15e4424e2189f277e9195ca4f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfd9b15e4424e2189f277e9195ca4f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dfd9b15e4424e2189f277e9195ca4f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dfd9b15e4424e2189f277e9195ca4f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dfd9b15e4424e2189f277e9195ca4f8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6E6PZBXDiG9k-tZCEgRiu05NxOY=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.39799+00 2025-12-09 10:15:27.397996+00 14791 C941#红色L SPMX-20240815309998 \N \N \N 1 \N [{"file_id": "35e4b867-efce-4070-94ea-f41ac77db4b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "747c21da31a744f099898229d79d0795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "747c21da31a744f099898229d79d0795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "747c21da31a744f099898229d79d0795.jpg", "file_size": 23910, "is_delete": false, "file_type": 1, "original_file_name": "C941#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747c21da31a744f099898229d79d0795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747c21da31a744f099898229d79d0795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/747c21da31a744f099898229d79d0795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/747c21da31a744f099898229d79d0795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/747c21da31a744f099898229d79d0795.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dglo0GmYNwAPqKr09QKs4neIWGE=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.40055+00 2025-12-09 10:15:27.400556+00 14792 FND4127FWE#妈妈装-黑色 SPMX-20240815309999 \N \N \N 1 \N [{"file_id": "b5147b9d-edbf-4c5c-902d-b6f89d2850c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a303febb736464abf78447947abca4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a303febb736464abf78447947abca4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a303febb736464abf78447947abca4d.jpg", "file_size": 16803, "is_delete": false, "file_type": 1, "original_file_name": "FND4127FWE#妈妈装-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a303febb736464abf78447947abca4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a303febb736464abf78447947abca4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a303febb736464abf78447947abca4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a303febb736464abf78447947abca4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a303febb736464abf78447947abca4d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bh1Yv2QK7WJAgB-Mf45gbfxmZf4=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.403225+00 2025-12-09 10:15:27.403231+00 14793 JTSS574FW#VS-D3 SPMX-20240815309992 \N \N \N 1 \N [{"file_id": "cc6c4e48-eee8-4bb3-81b1-71980b86aebc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cc8707de92e4e159d0a3e6ef1485770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cc8707de92e4e159d0a3e6ef1485770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cc8707de92e4e159d0a3e6ef1485770.jpg", "file_size": 14667, "is_delete": false, "file_type": 1, "original_file_name": "JTSS574FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8707de92e4e159d0a3e6ef1485770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8707de92e4e159d0a3e6ef1485770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8707de92e4e159d0a3e6ef1485770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cc8707de92e4e159d0a3e6ef1485770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cc8707de92e4e159d0a3e6ef1485770.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yC0KRUL_VkAJ8WAXmVr1f2yAiLI=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.405784+00 2025-12-09 10:15:27.405789+00 14794 LZ1336#上身3号色 SPMX-20240815309993 \N \N \N 1 \N [{"file_id": "aeee84ef-d387-4e2a-aaf1-5fc8808c5aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f93cb016b41455fa4f6360f57fc69e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f93cb016b41455fa4f6360f57fc69e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f93cb016b41455fa4f6360f57fc69e2.jpg", "file_size": 17685, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f93cb016b41455fa4f6360f57fc69e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f93cb016b41455fa4f6360f57fc69e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f93cb016b41455fa4f6360f57fc69e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f93cb016b41455fa4f6360f57fc69e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f93cb016b41455fa4f6360f57fc69e2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pGjvOXUQUiJYXSpXYpoT7m8pqVo=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.408395+00 2025-12-09 10:15:27.408402+00 14795 0006-2FWF#V5曲线番禺调色 SPMX-20240815309997 \N \N \N 1 \N [{"file_id": "ecf1c7a9-3ddf-4613-91f2-3a9c2a7746b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e075cb5fd29145c196bc0d860bfd6bdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e075cb5fd29145c196bc0d860bfd6bdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e075cb5fd29145c196bc0d860bfd6bdc.jpg", "file_size": 22375, "is_delete": false, "file_type": 1, "original_file_name": "0006-2FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e075cb5fd29145c196bc0d860bfd6bdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e075cb5fd29145c196bc0d860bfd6bdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e075cb5fd29145c196bc0d860bfd6bdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e075cb5fd29145c196bc0d860bfd6bdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e075cb5fd29145c196bc0d860bfd6bdc.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4aBlVZ6Y51zIIkXzwaGS5vOuSo=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.410919+00 2025-12-09 10:15:27.410925+00 14796 84210#原版色 SPMX-20240815309991 \N \N \N 1 \N [{"file_id": "3dd85a94-914a-46ea-8865-9281ad513c04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b40318445c604396b18b4dada44a41c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b40318445c604396b18b4dada44a41c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b40318445c604396b18b4dada44a41c2.jpg", "file_size": 15319, "is_delete": false, "file_type": 1, "original_file_name": "84210#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40318445c604396b18b4dada44a41c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40318445c604396b18b4dada44a41c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40318445c604396b18b4dada44a41c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b40318445c604396b18b4dada44a41c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b40318445c604396b18b4dada44a41c2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ym4Lfpt1Yc4uJ8T-z8OZr9BPSs8=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.413571+00 2025-12-09 10:15:27.413577+00 14797 LJH1801-2#橘色 SPMX-20240815309994 \N \N \N 1 \N [{"file_id": "5db936a7-4d6d-4873-a194-2362e172656e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "836ffbb0621c4b1a80b28122e2385307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "836ffbb0621c4b1a80b28122e2385307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "836ffbb0621c4b1a80b28122e2385307.jpg", "file_size": 72563, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-2#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836ffbb0621c4b1a80b28122e2385307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836ffbb0621c4b1a80b28122e2385307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836ffbb0621c4b1a80b28122e2385307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/836ffbb0621c4b1a80b28122e2385307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/836ffbb0621c4b1a80b28122e2385307.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-tKbm0yHf2eTGEBnW651Tr9-so=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.416159+00 2025-12-09 10:15:27.416165+00 14798 84210#白色 SPMX-20240815310002 \N \N \N 1 \N [{"file_id": "f76184d3-af7e-4289-9914-f00427ae461f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5338cb40b0d54cf2b2defd16822a2afd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5338cb40b0d54cf2b2defd16822a2afd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5338cb40b0d54cf2b2defd16822a2afd.jpg", "file_size": 14315, "is_delete": false, "file_type": 1, "original_file_name": "84210#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5338cb40b0d54cf2b2defd16822a2afd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5338cb40b0d54cf2b2defd16822a2afd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5338cb40b0d54cf2b2defd16822a2afd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5338cb40b0d54cf2b2defd16822a2afd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5338cb40b0d54cf2b2defd16822a2afd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWyAycdBkQNHng6hOJChMDL7-Fs=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.418791+00 2025-12-09 10:15:27.418796+00 14799 0006-30FWE#VS-D3 SPMX-20240815310008 \N \N \N 1 \N [{"file_id": "7c9ed4c2-46f0-4181-9deb-03a5f42b8981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c615afd60343bdba6c06c4faf5ce23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c615afd60343bdba6c06c4faf5ce23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c615afd60343bdba6c06c4faf5ce23.jpg", "file_size": 30444, "is_delete": false, "file_type": 1, "original_file_name": "0006-30FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c615afd60343bdba6c06c4faf5ce23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c615afd60343bdba6c06c4faf5ce23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c615afd60343bdba6c06c4faf5ce23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c615afd60343bdba6c06c4faf5ce23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c615afd60343bdba6c06c4faf5ce23.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ohTGPQKqBcGHE9AITr1u7uj6Poo=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.421433+00 2025-12-09 10:15:27.421439+00 14800 DL31157#袖子墨绿 SPMX-20240815310010 \N \N \N 1 \N [{"file_id": "db768097-235b-4614-a7bb-b458352988c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9330fcbf46bf4c59bc2e2a444835b58e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9330fcbf46bf4c59bc2e2a444835b58e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9330fcbf46bf4c59bc2e2a444835b58e.jpg", "file_size": 15552, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9330fcbf46bf4c59bc2e2a444835b58e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9330fcbf46bf4c59bc2e2a444835b58e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9330fcbf46bf4c59bc2e2a444835b58e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9330fcbf46bf4c59bc2e2a444835b58e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9330fcbf46bf4c59bc2e2a444835b58e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEJDsvTiwVgJmPKA3NYSXpY85Tc=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.424003+00 2025-12-09 10:15:27.424008+00 14801 HTA07#红色 SPMX-20240815310013 \N \N \N 1 \N [{"file_id": "c3eaaec0-6fc1-427b-b26f-584e25361cdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3992202cfe9b4e4db75137bd39378d2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3992202cfe9b4e4db75137bd39378d2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3992202cfe9b4e4db75137bd39378d2d.jpg", "file_size": 31975, "is_delete": false, "file_type": 1, "original_file_name": "HTA07#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3992202cfe9b4e4db75137bd39378d2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3992202cfe9b4e4db75137bd39378d2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3992202cfe9b4e4db75137bd39378d2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3992202cfe9b4e4db75137bd39378d2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3992202cfe9b4e4db75137bd39378d2d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XadfF4jeFflHnoz7q6GoqvyviEQ=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.426624+00 2025-12-09 10:15:27.42663+00 14802 84210#黄色 SPMX-20240815310014 \N \N \N 1 \N [{"file_id": "e48e2944-6717-4630-9aa0-ccf2deb29a9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6202893172984503ba450f215cd25628.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6202893172984503ba450f215cd25628.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6202893172984503ba450f215cd25628.jpg", "file_size": 14193, "is_delete": false, "file_type": 1, "original_file_name": "84210#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6202893172984503ba450f215cd25628.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6202893172984503ba450f215cd25628.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6202893172984503ba450f215cd25628.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6202893172984503ba450f215cd25628.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6202893172984503ba450f215cd25628.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2V_1elmtjVRpPQMAUCqWDt9iHzU=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.429186+00 2025-12-09 10:15:27.429196+00 14803 LZ1336#上身5号色 SPMX-20240815310015 \N \N \N 1 \N [{"file_id": "34d53317-859a-49e0-a5ab-5ca9cfc1cc1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f523304266c4d259c42ff282f713f96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f523304266c4d259c42ff282f713f96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f523304266c4d259c42ff282f713f96.jpg", "file_size": 17906, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f523304266c4d259c42ff282f713f96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f523304266c4d259c42ff282f713f96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f523304266c4d259c42ff282f713f96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f523304266c4d259c42ff282f713f96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f523304266c4d259c42ff282f713f96.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1q5hvzobpKyQYonPvXY8Kpyyhao=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.431792+00 2025-12-09 10:15:27.431798+00 14804 23-2126#A1-领子3XL SPMX-20240815310005 \N \N \N 1 \N [{"file_id": "6c2b610c-9825-4b51-9644-f4da9ccadd16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "762870f3b7dd44239ce7cc751aacd4aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "762870f3b7dd44239ce7cc751aacd4aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "762870f3b7dd44239ce7cc751aacd4aa.jpg", "file_size": 14600, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762870f3b7dd44239ce7cc751aacd4aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762870f3b7dd44239ce7cc751aacd4aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762870f3b7dd44239ce7cc751aacd4aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/762870f3b7dd44239ce7cc751aacd4aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/762870f3b7dd44239ce7cc751aacd4aa.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBGbGIpCoBe_3RLL3V3IykR0jpo=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.434384+00 2025-12-09 10:15:27.43439+00 14805 1201FWF#黑白链条 SPMX-20240815310007 \N \N \N 1 \N [{"file_id": "5956a839-fca0-438f-a41e-c90a04e3275e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "324a1fe0eb544ed5a9ab0e93897eb9e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "324a1fe0eb544ed5a9ab0e93897eb9e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "324a1fe0eb544ed5a9ab0e93897eb9e9.jpg", "file_size": 14910, "is_delete": false, "file_type": 1, "original_file_name": "1201FWF#黑白链条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324a1fe0eb544ed5a9ab0e93897eb9e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324a1fe0eb544ed5a9ab0e93897eb9e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/324a1fe0eb544ed5a9ab0e93897eb9e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/324a1fe0eb544ed5a9ab0e93897eb9e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/324a1fe0eb544ed5a9ab0e93897eb9e9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9zsrX2IBcJ_ERjsge7AiqfFi2U=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.436945+00 2025-12-09 10:15:27.43695+00 14806 FND4136FWE#橙色 SPMX-20240815310011 \N \N \N 1 \N [{"file_id": "7dbb9f81-57cb-4028-bf53-97a0f439c004", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "383b6e0b42fc4a2eb4b9ff49339073ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "383b6e0b42fc4a2eb4b9ff49339073ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "383b6e0b42fc4a2eb4b9ff49339073ef.jpg", "file_size": 12583, "is_delete": false, "file_type": 1, "original_file_name": "FND4136FWE#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383b6e0b42fc4a2eb4b9ff49339073ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383b6e0b42fc4a2eb4b9ff49339073ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383b6e0b42fc4a2eb4b9ff49339073ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/383b6e0b42fc4a2eb4b9ff49339073ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/383b6e0b42fc4a2eb4b9ff49339073ef.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNOWoQCQyI-wJCgSYCVC2Rz6uL4=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.439561+00 2025-12-09 10:15:27.439566+00 14807 LZ1336#上身4号色 SPMX-20240815310004 \N \N \N 1 \N [{"file_id": "5f1f5faa-8d98-4435-9fa4-bf8e35cf9818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6f45d4f450847dda30313f063986b08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6f45d4f450847dda30313f063986b08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6f45d4f450847dda30313f063986b08.jpg", "file_size": 17628, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f45d4f450847dda30313f063986b08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f45d4f450847dda30313f063986b08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f45d4f450847dda30313f063986b08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6f45d4f450847dda30313f063986b08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6f45d4f450847dda30313f063986b08.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRVrAWVQJ2zXb4ka58kynS-cuUc=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.442167+00 2025-12-09 10:15:27.442173+00 14808 C941#红色XL SPMX-20240815310009 \N \N \N 1 \N [{"file_id": "e1283642-e25f-46a5-b309-a9a764f1ebc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea1e5e64e5de4fbd96f9116650822261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea1e5e64e5de4fbd96f9116650822261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea1e5e64e5de4fbd96f9116650822261.jpg", "file_size": 24124, "is_delete": false, "file_type": 1, "original_file_name": "C941#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1e5e64e5de4fbd96f9116650822261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1e5e64e5de4fbd96f9116650822261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1e5e64e5de4fbd96f9116650822261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea1e5e64e5de4fbd96f9116650822261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea1e5e64e5de4fbd96f9116650822261.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2TuSOeORXdJbDUl41O1j7xk3_go=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.444795+00 2025-12-09 10:15:27.444801+00 14809 JTSS576FW#VS-D3 SPMX-20240815310012 \N \N \N 1 \N [{"file_id": "41ddd6bf-db63-49ea-86ba-e0822744a9cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30fe27b692c147dd9caf802d7af49776.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30fe27b692c147dd9caf802d7af49776.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30fe27b692c147dd9caf802d7af49776.jpg", "file_size": 21209, "is_delete": false, "file_type": 1, "original_file_name": "JTSS576FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fe27b692c147dd9caf802d7af49776.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fe27b692c147dd9caf802d7af49776.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fe27b692c147dd9caf802d7af49776.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30fe27b692c147dd9caf802d7af49776.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30fe27b692c147dd9caf802d7af49776.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CHkS-t7enzXOFZEO-UixhDw-kk=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.44742+00 2025-12-09 10:15:27.447426+00 14810 23-2126#A1-领子4XL SPMX-20240815310016 \N \N \N 1 \N [{"file_id": "96c9a72a-afc0-4e06-8c4e-6efdd418a364", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eb3d8971be64994a0ff510b66647452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eb3d8971be64994a0ff510b66647452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eb3d8971be64994a0ff510b66647452.jpg", "file_size": 14666, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb3d8971be64994a0ff510b66647452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb3d8971be64994a0ff510b66647452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eb3d8971be64994a0ff510b66647452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eb3d8971be64994a0ff510b66647452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eb3d8971be64994a0ff510b66647452.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwmMW0en_D1C8OjOMhXKXRU4cqM=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.450012+00 2025-12-09 10:15:27.450018+00 14811 JTSS575FW#VS-D3 SPMX-20240815310003 \N \N \N 1 \N [{"file_id": "24c98487-1e87-418b-860c-e0dba7a4e49f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65f587301242424ca897e366acca1e39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65f587301242424ca897e366acca1e39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65f587301242424ca897e366acca1e39.jpg", "file_size": 25408, "is_delete": false, "file_type": 1, "original_file_name": "JTSS575FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f587301242424ca897e366acca1e39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f587301242424ca897e366acca1e39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65f587301242424ca897e366acca1e39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65f587301242424ca897e366acca1e39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65f587301242424ca897e366acca1e39.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xh9ecQTh5n2o2hH7Msp5gLnVHI8=", "createTime": "2024-08-15 14:57:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.452631+00 2025-12-09 10:15:27.452636+00 14812 LJH1801-2#湖蓝色 SPMX-20240815310006 \N \N \N 1 \N [{"file_id": "4633b65c-a329-4735-80b1-8a3c13d120e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0f2f2791de44c30a73e042e00c47f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0f2f2791de44c30a73e042e00c47f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0f2f2791de44c30a73e042e00c47f15.jpg", "file_size": 70500, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-2#湖蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2f2791de44c30a73e042e00c47f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2f2791de44c30a73e042e00c47f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2f2791de44c30a73e042e00c47f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0f2f2791de44c30a73e042e00c47f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0f2f2791de44c30a73e042e00c47f15.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yx6nxNwgHzqkzHzgQTgPZ_4p3m0=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.455257+00 2025-12-09 10:15:27.455267+00 14813 C941#绿色L SPMX-20240815310026 \N \N \N 1 \N [{"file_id": "63bfb245-183c-4ed2-ab81-15ca616d02c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3b0182b4e594414844e39d0c802f825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3b0182b4e594414844e39d0c802f825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3b0182b4e594414844e39d0c802f825.jpg", "file_size": 26354, "is_delete": false, "file_type": 1, "original_file_name": "C941#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b0182b4e594414844e39d0c802f825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b0182b4e594414844e39d0c802f825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3b0182b4e594414844e39d0c802f825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3b0182b4e594414844e39d0c802f825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3b0182b4e594414844e39d0c802f825.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iJybOF8MN1izxGTukg1SCVct6jE=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.457841+00 2025-12-09 10:15:27.457846+00 14814 1203-2FWF#卡其 SPMX-20240815310017 \N \N \N 1 \N [{"file_id": "95837062-22dc-4da2-a71f-176842994f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c547dddda8584eb88ac94bf84cdf8468.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c547dddda8584eb88ac94bf84cdf8468.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c547dddda8584eb88ac94bf84cdf8468.jpg", "file_size": 12925, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c547dddda8584eb88ac94bf84cdf8468.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c547dddda8584eb88ac94bf84cdf8468.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c547dddda8584eb88ac94bf84cdf8468.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c547dddda8584eb88ac94bf84cdf8468.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c547dddda8584eb88ac94bf84cdf8468.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y2FERmfAmNuggGJL-qgza5mMyas=", "createTime": "2024-08-15 14:57:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.460453+00 2025-12-09 10:15:27.460459+00 14815 FND4136FWE#紫色 SPMX-20240815310022 \N \N \N 1 \N [{"file_id": "44541427-e953-4ffc-862f-987ef02547cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df854b3e877e4a3bbe4ac0d46a6c6635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df854b3e877e4a3bbe4ac0d46a6c6635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df854b3e877e4a3bbe4ac0d46a6c6635.jpg", "file_size": 12021, "is_delete": false, "file_type": 1, "original_file_name": "FND4136FWE#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df854b3e877e4a3bbe4ac0d46a6c6635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df854b3e877e4a3bbe4ac0d46a6c6635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df854b3e877e4a3bbe4ac0d46a6c6635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df854b3e877e4a3bbe4ac0d46a6c6635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df854b3e877e4a3bbe4ac0d46a6c6635.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swxGsdchhDLgw8GzNH7l_6xN-Xo=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.463118+00 2025-12-09 10:15:27.463123+00 14816 0006-30FWF#黑V5曲线 SPMX-20240815310019 \N \N \N 1 \N [{"file_id": "51df9dd0-7cd5-466e-acc2-23750dae9293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fab46dcb297e4310bdbe5572918f7b59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fab46dcb297e4310bdbe5572918f7b59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fab46dcb297e4310bdbe5572918f7b59.jpg", "file_size": 10052, "is_delete": false, "file_type": 1, "original_file_name": "0006-30FWF#黑V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab46dcb297e4310bdbe5572918f7b59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab46dcb297e4310bdbe5572918f7b59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab46dcb297e4310bdbe5572918f7b59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fab46dcb297e4310bdbe5572918f7b59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fab46dcb297e4310bdbe5572918f7b59.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9dVbCrBK51dKW4ncXNxAMnRSW5k=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.465744+00 2025-12-09 10:15:27.46575+00 14817 JTSS578FW#VS-D3 SPMX-20240815310029 \N \N \N 1 \N [{"file_id": "49b2d480-2146-4526-8c1e-d5c9492a6fd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d87c22f635944366b500742b80b88ff2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d87c22f635944366b500742b80b88ff2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d87c22f635944366b500742b80b88ff2.jpg", "file_size": 18227, "is_delete": false, "file_type": 1, "original_file_name": "JTSS578FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d87c22f635944366b500742b80b88ff2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d87c22f635944366b500742b80b88ff2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d87c22f635944366b500742b80b88ff2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d87c22f635944366b500742b80b88ff2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d87c22f635944366b500742b80b88ff2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pm4HNQbDrj0fklBOGHSKAly9oYw=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.468331+00 2025-12-09 10:15:27.468336+00 14818 DL31157#袖子天蓝 SPMX-20240815310020 \N \N \N 1 \N [{"file_id": "f4495c36-e1f5-4463-8ca2-85a3c1a52e93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d463f0d5ba3e4bf1ada5bdb4a1391748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d463f0d5ba3e4bf1ada5bdb4a1391748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d463f0d5ba3e4bf1ada5bdb4a1391748.jpg", "file_size": 15540, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463f0d5ba3e4bf1ada5bdb4a1391748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463f0d5ba3e4bf1ada5bdb4a1391748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463f0d5ba3e4bf1ada5bdb4a1391748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d463f0d5ba3e4bf1ada5bdb4a1391748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d463f0d5ba3e4bf1ada5bdb4a1391748.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L3RWu4FuJ_9VhbN1Fc58uh3u4_A=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.470911+00 2025-12-09 10:15:27.470916+00 14819 84211#原版色 SPMX-20240815310024 \N \N \N 1 \N [{"file_id": "4006d549-1e7d-48dd-abf7-b03f5a6f8908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4c52807ae3047468e45b596e08cd1fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4c52807ae3047468e45b596e08cd1fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4c52807ae3047468e45b596e08cd1fb.jpg", "file_size": 17491, "is_delete": false, "file_type": 1, "original_file_name": "84211#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c52807ae3047468e45b596e08cd1fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c52807ae3047468e45b596e08cd1fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c52807ae3047468e45b596e08cd1fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4c52807ae3047468e45b596e08cd1fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4c52807ae3047468e45b596e08cd1fb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2JnSEFl7UhlUsDpCHfLbZt4qAs=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.473488+00 2025-12-09 10:15:27.473494+00 14820 JTSS577FW#VS-D3 SPMX-20240815310021 \N \N \N 1 \N [{"file_id": "95e5eef9-063d-4b57-bff4-8dc396978e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63b0988103d04f2981e0674562da7cb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63b0988103d04f2981e0674562da7cb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63b0988103d04f2981e0674562da7cb0.jpg", "file_size": 12275, "is_delete": false, "file_type": 1, "original_file_name": "JTSS577FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b0988103d04f2981e0674562da7cb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b0988103d04f2981e0674562da7cb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b0988103d04f2981e0674562da7cb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63b0988103d04f2981e0674562da7cb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63b0988103d04f2981e0674562da7cb0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lo4qs1V-1ijB_MFFSY4DB0VmfPU=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.476133+00 2025-12-09 10:15:27.476138+00 14821 1203-2FWF#彩蓝 SPMX-20240815310028 \N \N \N 1 \N [{"file_id": "6a7caedd-5125-471b-8da6-e8e8ecc69f0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94d88041ed67495faf09560dc2979c07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94d88041ed67495faf09560dc2979c07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94d88041ed67495faf09560dc2979c07.jpg", "file_size": 13912, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d88041ed67495faf09560dc2979c07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d88041ed67495faf09560dc2979c07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94d88041ed67495faf09560dc2979c07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94d88041ed67495faf09560dc2979c07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94d88041ed67495faf09560dc2979c07.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CGNo7VSkqZVwVIlvMipLZ_VkZW4=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.47873+00 2025-12-09 10:15:27.478736+00 14822 LZ1336#童装T1号色 SPMX-20240815310025 \N \N \N 1 \N [{"file_id": "cc02bc35-0779-478c-a110-a944a6ec5479", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb76ec9e91f24ff190eab10c25a6549e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb76ec9e91f24ff190eab10c25a6549e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb76ec9e91f24ff190eab10c25a6549e.jpg", "file_size": 19679, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb76ec9e91f24ff190eab10c25a6549e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb76ec9e91f24ff190eab10c25a6549e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb76ec9e91f24ff190eab10c25a6549e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb76ec9e91f24ff190eab10c25a6549e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb76ec9e91f24ff190eab10c25a6549e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vRDKkN-7O_CItjjIXCYV3qNXd8=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.481325+00 2025-12-09 10:15:27.481335+00 14823 HTA07#蓝色 SPMX-20240815310023 \N \N \N 1 \N [{"file_id": "c0453bbe-8c3e-4e6c-9fd7-4c247c046eb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e2da6607fde4b099fdb92ff4e37e130.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e2da6607fde4b099fdb92ff4e37e130.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e2da6607fde4b099fdb92ff4e37e130.jpg", "file_size": 34972, "is_delete": false, "file_type": 1, "original_file_name": "HTA07#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e2da6607fde4b099fdb92ff4e37e130.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e2da6607fde4b099fdb92ff4e37e130.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e2da6607fde4b099fdb92ff4e37e130.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e2da6607fde4b099fdb92ff4e37e130.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e2da6607fde4b099fdb92ff4e37e130.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6SjKA_PaaIVDw9pEE7qYh6ibKgg=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.483933+00 2025-12-09 10:15:27.483943+00 14824 LJH1801-2#黄色 SPMX-20240815310018 \N \N \N 1 \N [{"file_id": "8d5d4973-47f7-4b05-983b-15558e45f124", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "528132b6596247cfa77905401d9f09ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "528132b6596247cfa77905401d9f09ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "528132b6596247cfa77905401d9f09ec.jpg", "file_size": 72506, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528132b6596247cfa77905401d9f09ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528132b6596247cfa77905401d9f09ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528132b6596247cfa77905401d9f09ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/528132b6596247cfa77905401d9f09ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/528132b6596247cfa77905401d9f09ec.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCGkHfJeiRD1KI8SOq8NVkCZs68=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.486541+00 2025-12-09 10:15:27.486551+00 14825 23-2126#A2-3XL SPMX-20240815310027 \N \N \N 1 \N [{"file_id": "06a1f8e6-ffbf-4e08-8023-dc670a6ba4e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0c09ffd17034d68be54a135d599f96e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0c09ffd17034d68be54a135d599f96e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0c09ffd17034d68be54a135d599f96e.jpg", "file_size": 16153, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c09ffd17034d68be54a135d599f96e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c09ffd17034d68be54a135d599f96e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c09ffd17034d68be54a135d599f96e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0c09ffd17034d68be54a135d599f96e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0c09ffd17034d68be54a135d599f96e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7utWMy9nf7dwCBH_k5_okVzE7z0=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.489129+00 2025-12-09 10:15:27.489134+00 14826 LZ1336#童装T2号色 SPMX-20240815310037 \N \N \N 1 \N [{"file_id": "8304dc19-88e3-4535-9ef4-f8750c08b6dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "638036c0ed3948a0b2863cc1524d6c4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "638036c0ed3948a0b2863cc1524d6c4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "638036c0ed3948a0b2863cc1524d6c4f.jpg", "file_size": 19399, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638036c0ed3948a0b2863cc1524d6c4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638036c0ed3948a0b2863cc1524d6c4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638036c0ed3948a0b2863cc1524d6c4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/638036c0ed3948a0b2863cc1524d6c4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/638036c0ed3948a0b2863cc1524d6c4f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxajyikgUrMFgBWry2veL-qbG_U=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.491716+00 2025-12-09 10:15:27.491722+00 14827 LJH1801-4#粉色 SPMX-20240815310030 \N \N \N 1 \N [{"file_id": "eea90f49-24c5-4697-8765-b26d19b6411f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c28135a941d41e7a49222816c09a073.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c28135a941d41e7a49222816c09a073.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c28135a941d41e7a49222816c09a073.jpg", "file_size": 58405, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-4#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c28135a941d41e7a49222816c09a073.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c28135a941d41e7a49222816c09a073.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c28135a941d41e7a49222816c09a073.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c28135a941d41e7a49222816c09a073.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c28135a941d41e7a49222816c09a073.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KGCS7D2Tvaqi-nmQPvQfhcHi5ek=", "createTime": "2024-08-15 14:57:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.494312+00 2025-12-09 10:15:27.494318+00 14828 DL31157#袖子彩兰 SPMX-20240815310031 \N \N \N 1 \N [{"file_id": "aede5603-11d9-4fb0-8829-c82b193c72c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb85bbc739b42fdafb2dbcb2ef3379f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb85bbc739b42fdafb2dbcb2ef3379f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb85bbc739b42fdafb2dbcb2ef3379f.jpg", "file_size": 15523, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb85bbc739b42fdafb2dbcb2ef3379f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb85bbc739b42fdafb2dbcb2ef3379f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb85bbc739b42fdafb2dbcb2ef3379f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb85bbc739b42fdafb2dbcb2ef3379f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb85bbc739b42fdafb2dbcb2ef3379f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbmMOrzXB8yjMjQW5yJW1rlZfWg=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.497027+00 2025-12-09 10:15:27.497033+00 14829 0006-31FWF#V5曲线 SPMX-20240815310035 \N \N \N 1 \N [{"file_id": "105c50f8-69e5-4579-8c4f-d60f44546dd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0361dcf430a24f52a3a3ec81b3ef67fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0361dcf430a24f52a3a3ec81b3ef67fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0361dcf430a24f52a3a3ec81b3ef67fb.jpg", "file_size": 21411, "is_delete": false, "file_type": 1, "original_file_name": "0006-31FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0361dcf430a24f52a3a3ec81b3ef67fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0361dcf430a24f52a3a3ec81b3ef67fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0361dcf430a24f52a3a3ec81b3ef67fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0361dcf430a24f52a3a3ec81b3ef67fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0361dcf430a24f52a3a3ec81b3ef67fb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kiSlWi458rUwcRlPZZt7dEWssfs=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.499641+00 2025-12-09 10:15:27.499646+00 14830 C941#绿色XL SPMX-20240815310036 \N \N \N 1 \N [{"file_id": "89d24648-66fd-4ced-a4b0-62dad91ee566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fc190eea21d444d96cc877587b9cc0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fc190eea21d444d96cc877587b9cc0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fc190eea21d444d96cc877587b9cc0d.jpg", "file_size": 25603, "is_delete": false, "file_type": 1, "original_file_name": "C941#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc190eea21d444d96cc877587b9cc0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc190eea21d444d96cc877587b9cc0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fc190eea21d444d96cc877587b9cc0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fc190eea21d444d96cc877587b9cc0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fc190eea21d444d96cc877587b9cc0d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_w0jpaBG8XgzBjZPQ53NLUZ6qU=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.502235+00 2025-12-09 10:15:27.502241+00 14831 23-2126#A2-4XL SPMX-20240815310038 \N \N \N 1 \N [{"file_id": "8b46da05-7d95-422e-99cd-7bbf2659de4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75115fe7c71844c59a94f963de092a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75115fe7c71844c59a94f963de092a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75115fe7c71844c59a94f963de092a9b.jpg", "file_size": 15213, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75115fe7c71844c59a94f963de092a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75115fe7c71844c59a94f963de092a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75115fe7c71844c59a94f963de092a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75115fe7c71844c59a94f963de092a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75115fe7c71844c59a94f963de092a9b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-kzYsXGDtowdD5jJRYsOD0i8F7I=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.504825+00 2025-12-09 10:15:27.504831+00 14832 84211#彩兰 SPMX-20240815310032 \N \N \N 1 \N [{"file_id": "1b63cc33-b801-4c26-9645-a0c00c9e7207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c35b3103ff264427a0817f8eed6b31bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c35b3103ff264427a0817f8eed6b31bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c35b3103ff264427a0817f8eed6b31bb.jpg", "file_size": 17223, "is_delete": false, "file_type": 1, "original_file_name": "84211#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35b3103ff264427a0817f8eed6b31bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35b3103ff264427a0817f8eed6b31bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c35b3103ff264427a0817f8eed6b31bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c35b3103ff264427a0817f8eed6b31bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c35b3103ff264427a0817f8eed6b31bb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jg0pN0b_b_4eGUmnwUOneTKTyY=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.507532+00 2025-12-09 10:15:27.507538+00 14833 HTA07FWE#玫红改版VS-D3 SPMX-20240815310033 \N \N \N 1 \N [{"file_id": "672e2ac7-ff5f-4851-8fca-785774166a6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bf739d968e94cd4826c4eb3c2e911ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bf739d968e94cd4826c4eb3c2e911ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bf739d968e94cd4826c4eb3c2e911ad.jpg", "file_size": 11042, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#玫红改版VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf739d968e94cd4826c4eb3c2e911ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf739d968e94cd4826c4eb3c2e911ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf739d968e94cd4826c4eb3c2e911ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bf739d968e94cd4826c4eb3c2e911ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bf739d968e94cd4826c4eb3c2e911ad.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HbWP5gXV4-OJKhTyoNTKZTBoaE4=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.510288+00 2025-12-09 10:15:27.510294+00 14834 FND4136FWE#蓝色 SPMX-20240815310034 \N \N \N 1 \N [{"file_id": "f79e7ef5-de34-475d-b4e4-fce4715acfa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cdd702c666a4d2cb12677dd9c9d3c38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cdd702c666a4d2cb12677dd9c9d3c38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cdd702c666a4d2cb12677dd9c9d3c38.jpg", "file_size": 12629, "is_delete": false, "file_type": 1, "original_file_name": "FND4136FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cdd702c666a4d2cb12677dd9c9d3c38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cdd702c666a4d2cb12677dd9c9d3c38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cdd702c666a4d2cb12677dd9c9d3c38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cdd702c666a4d2cb12677dd9c9d3c38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cdd702c666a4d2cb12677dd9c9d3c38.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KO2s6Dx5YK31GXrENRiPZpi3Twg=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.51294+00 2025-12-09 10:15:27.512946+00 14835 LJH1801-4#绿色 SPMX-20240815310040 \N \N \N 1 \N [{"file_id": "218f4260-cc24-46e2-bbe5-756c159dd884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b85692c31324288be3062749da5a273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b85692c31324288be3062749da5a273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b85692c31324288be3062749da5a273.jpg", "file_size": 67053, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-4#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b85692c31324288be3062749da5a273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b85692c31324288be3062749da5a273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b85692c31324288be3062749da5a273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b85692c31324288be3062749da5a273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b85692c31324288be3062749da5a273.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Y2H1692ljH_xRYBWU6J3DnuiRY=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.515547+00 2025-12-09 10:15:27.515553+00 14836 JTSS579FW#VS-D3 SPMX-20240815310041 \N \N \N 1 \N [{"file_id": "7a471c46-0c54-4ab6-a39d-ae28967d0cde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ad483ec981c4029aee922b8ae94ad03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ad483ec981c4029aee922b8ae94ad03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ad483ec981c4029aee922b8ae94ad03.jpg", "file_size": 22731, "is_delete": false, "file_type": 1, "original_file_name": "JTSS579FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad483ec981c4029aee922b8ae94ad03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad483ec981c4029aee922b8ae94ad03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad483ec981c4029aee922b8ae94ad03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ad483ec981c4029aee922b8ae94ad03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ad483ec981c4029aee922b8ae94ad03.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mDB1hs34pJWrS5sc7UJP4QhJvg=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.518187+00 2025-12-09 10:15:27.518192+00 14837 1203-2FWF#枣红 SPMX-20240815310039 \N \N \N 1 \N [{"file_id": "14a95429-81f5-4ac8-af99-a560bcdd383a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28b0deb283544b218e9bb2033e5b5fb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28b0deb283544b218e9bb2033e5b5fb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28b0deb283544b218e9bb2033e5b5fb3.jpg", "file_size": 13890, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b0deb283544b218e9bb2033e5b5fb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b0deb283544b218e9bb2033e5b5fb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b0deb283544b218e9bb2033e5b5fb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28b0deb283544b218e9bb2033e5b5fb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28b0deb283544b218e9bb2033e5b5fb3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wbOaMs1-bWOArx5DfnmAYvdtlG0=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.520938+00 2025-12-09 10:15:27.520944+00 14838 HTA07FWE#粉色 SPMX-20240815310046 \N \N \N 1 \N [{"file_id": "079633c9-2656-46eb-a99a-a5b7fc949668", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a551d3ce6bc43d3aef040a11da92040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a551d3ce6bc43d3aef040a11da92040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a551d3ce6bc43d3aef040a11da92040.jpg", "file_size": 9407, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a551d3ce6bc43d3aef040a11da92040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a551d3ce6bc43d3aef040a11da92040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a551d3ce6bc43d3aef040a11da92040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a551d3ce6bc43d3aef040a11da92040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a551d3ce6bc43d3aef040a11da92040.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i6vrkByGWqOy4mj60AvHWV5b8Q8=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.523597+00 2025-12-09 10:15:27.523603+00 14839 84211#红色 SPMX-20240815310052 \N \N \N 1 \N [{"file_id": "0facd3ec-3cca-497c-a005-07ca2ce99271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c10c6916c6a1419b950970a9f02025a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c10c6916c6a1419b950970a9f02025a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c10c6916c6a1419b950970a9f02025a9.jpg", "file_size": 16879, "is_delete": false, "file_type": 1, "original_file_name": "84211#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c6916c6a1419b950970a9f02025a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c6916c6a1419b950970a9f02025a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10c6916c6a1419b950970a9f02025a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c10c6916c6a1419b950970a9f02025a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c10c6916c6a1419b950970a9f02025a9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WE1ZpiTISzavn4RWZbRsKzi9ZmA=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.526194+00 2025-12-09 10:15:27.5262+00 14840 0006-32FWE#VS-D3 SPMX-20240815310047 \N \N \N 1 \N [{"file_id": "68d60c2f-81f5-4493-b037-e5f2872e5cb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd769bf1db114f85a56fc4f5d0670f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd769bf1db114f85a56fc4f5d0670f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd769bf1db114f85a56fc4f5d0670f7d.jpg", "file_size": 28163, "is_delete": false, "file_type": 1, "original_file_name": "0006-32FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd769bf1db114f85a56fc4f5d0670f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd769bf1db114f85a56fc4f5d0670f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd769bf1db114f85a56fc4f5d0670f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd769bf1db114f85a56fc4f5d0670f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd769bf1db114f85a56fc4f5d0670f7d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWlJpHtt6skXpVSfCp9VaWFmneI=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.52885+00 2025-12-09 10:15:27.528856+00 14841 LJH1801-4#黑色 SPMX-20240815310050 \N \N \N 1 \N [{"file_id": "81110d20-36e1-41e7-92c5-afd0e5d4e200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14228605aded435da0c2801e7cc211a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14228605aded435da0c2801e7cc211a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14228605aded435da0c2801e7cc211a0.jpg", "file_size": 61781, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-4#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14228605aded435da0c2801e7cc211a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14228605aded435da0c2801e7cc211a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14228605aded435da0c2801e7cc211a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14228605aded435da0c2801e7cc211a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14228605aded435da0c2801e7cc211a0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_7UKQUUj8p0x9C3fEv_No1aDtU=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.531498+00 2025-12-09 10:15:27.531504+00 14842 FND4136FWE#黑色 SPMX-20240815310054 \N \N \N 1 \N [{"file_id": "29fc6f23-36c1-4ab2-9d95-d1d3cd5a824c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96f13bf8266542e99e4bf33676f6c44d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96f13bf8266542e99e4bf33676f6c44d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96f13bf8266542e99e4bf33676f6c44d.jpg", "file_size": 13267, "is_delete": false, "file_type": 1, "original_file_name": "FND4136FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f13bf8266542e99e4bf33676f6c44d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f13bf8266542e99e4bf33676f6c44d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f13bf8266542e99e4bf33676f6c44d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96f13bf8266542e99e4bf33676f6c44d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96f13bf8266542e99e4bf33676f6c44d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:raMdsc46u82Sl4EJxo7kbrngWEw=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.534122+00 2025-12-09 10:15:27.534128+00 14843 FND4136FWE#黄色 SPMX-20240815310045 \N \N \N 1 \N [{"file_id": "e8c03d35-fde0-4293-9cd1-e42b898ad30e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d017f8d8f6c4d958aad9d83c005f73d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d017f8d8f6c4d958aad9d83c005f73d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d017f8d8f6c4d958aad9d83c005f73d.jpg", "file_size": 12292, "is_delete": false, "file_type": 1, "original_file_name": "FND4136FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d017f8d8f6c4d958aad9d83c005f73d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d017f8d8f6c4d958aad9d83c005f73d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d017f8d8f6c4d958aad9d83c005f73d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d017f8d8f6c4d958aad9d83c005f73d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d017f8d8f6c4d958aad9d83c005f73d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2V-TZLRk6gcyoU_6W-N5Un3NaGA=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.536726+00 2025-12-09 10:15:27.536732+00 14844 84211#白色 SPMX-20240815310042 \N \N \N 1 \N [{"file_id": "e14afd02-2b2c-430e-8914-94862a8ee1ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "374c145ae7564c29899fbcb03787b162.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "374c145ae7564c29899fbcb03787b162.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "374c145ae7564c29899fbcb03787b162.jpg", "file_size": 16473, "is_delete": false, "file_type": 1, "original_file_name": "84211#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374c145ae7564c29899fbcb03787b162.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374c145ae7564c29899fbcb03787b162.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/374c145ae7564c29899fbcb03787b162.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/374c145ae7564c29899fbcb03787b162.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/374c145ae7564c29899fbcb03787b162.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fx5AeQMele4av14-yyq3aKjqXfE=", "createTime": "2024-08-15 14:57:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.539299+00 2025-12-09 10:15:27.539304+00 14845 LZ1336#童装T4号色 SPMX-20240815310053 \N \N \N 1 \N [{"file_id": "dd093342-c6de-4cd6-a16a-392a012f0695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2525510be5f4f8b8335654021343def.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2525510be5f4f8b8335654021343def.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2525510be5f4f8b8335654021343def.jpg", "file_size": 20275, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2525510be5f4f8b8335654021343def.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2525510be5f4f8b8335654021343def.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2525510be5f4f8b8335654021343def.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2525510be5f4f8b8335654021343def.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2525510be5f4f8b8335654021343def.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgEXZxOCx2oU8DIf3Zsm7upnwqE=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.541883+00 2025-12-09 10:15:27.541888+00 14846 1203-2FWF#湖绿色 SPMX-20240815310048 \N \N \N 1 \N [{"file_id": "1a7315c0-b905-4ced-88ea-a12bd22a00f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54fc8d41b39149fc918c4fe246c585c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54fc8d41b39149fc918c4fe246c585c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54fc8d41b39149fc918c4fe246c585c1.jpg", "file_size": 8913, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc8d41b39149fc918c4fe246c585c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc8d41b39149fc918c4fe246c585c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54fc8d41b39149fc918c4fe246c585c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54fc8d41b39149fc918c4fe246c585c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54fc8d41b39149fc918c4fe246c585c1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:St-T981-G0l6DC1DnakFuJ2_nt4=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.544462+00 2025-12-09 10:15:27.544468+00 14847 23-2126#A2-领子3XL SPMX-20240815310049 \N \N \N 1 \N [{"file_id": "ba2a7fe9-87ef-47d6-acbf-ffbe53175c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fe456aeefdd47aeb156e4770d4b5690.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fe456aeefdd47aeb156e4770d4b5690.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fe456aeefdd47aeb156e4770d4b5690.jpg", "file_size": 12241, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe456aeefdd47aeb156e4770d4b5690.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe456aeefdd47aeb156e4770d4b5690.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe456aeefdd47aeb156e4770d4b5690.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fe456aeefdd47aeb156e4770d4b5690.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fe456aeefdd47aeb156e4770d4b5690.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wvY6tOhchVJoiLplbO_0P9e8ilQ=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.54698+00 2025-12-09 10:15:27.546985+00 14848 JTSS580FW#VS-D3 SPMX-20240815310051 \N \N \N 1 \N [{"file_id": "486ab2e2-a852-4339-8ff9-6e9d0255a603", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78663cb36097475db88920ccfd8d83c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78663cb36097475db88920ccfd8d83c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78663cb36097475db88920ccfd8d83c4.jpg", "file_size": 24345, "is_delete": false, "file_type": 1, "original_file_name": "JTSS580FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78663cb36097475db88920ccfd8d83c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78663cb36097475db88920ccfd8d83c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78663cb36097475db88920ccfd8d83c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78663cb36097475db88920ccfd8d83c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78663cb36097475db88920ccfd8d83c4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Afr4fqqrC4S_jVk5eBm--80-eLI=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.549597+00 2025-12-09 10:15:27.549603+00 14849 LZ1336#童装T3号色 SPMX-20240815310044 \N \N \N 1 \N [{"file_id": "aa59e4a2-539f-4c45-a70b-b574c6d16920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18bfb57256014ccf98b6c5f2101f5b7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18bfb57256014ccf98b6c5f2101f5b7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18bfb57256014ccf98b6c5f2101f5b7b.jpg", "file_size": 20031, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bfb57256014ccf98b6c5f2101f5b7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bfb57256014ccf98b6c5f2101f5b7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bfb57256014ccf98b6c5f2101f5b7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18bfb57256014ccf98b6c5f2101f5b7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18bfb57256014ccf98b6c5f2101f5b7b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJOci-_4IVxhTmjGwNBc2Km4jf0=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.552215+00 2025-12-09 10:15:27.55222+00 14850 0006-32FWF#V5曲线 SPMX-20240815310058 \N \N \N 1 \N [{"file_id": "c1c067b0-257a-4d15-87fd-7d7e2445142b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc71e86a32134af3a421f7b62c7a5210.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc71e86a32134af3a421f7b62c7a5210.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc71e86a32134af3a421f7b62c7a5210.jpg", "file_size": 12233, "is_delete": false, "file_type": 1, "original_file_name": "0006-32FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc71e86a32134af3a421f7b62c7a5210.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc71e86a32134af3a421f7b62c7a5210.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc71e86a32134af3a421f7b62c7a5210.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc71e86a32134af3a421f7b62c7a5210.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc71e86a32134af3a421f7b62c7a5210.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T3Zh0QHPIXUYYyRcG2n4dFw0mtU=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.554719+00 2025-12-09 10:15:27.554724+00 14851 8422#WJC22 SPMX-20240815310063 \N \N \N 1 \N [{"file_id": "8ba331a2-b434-411d-bda0-f72c81fd75d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f72da76fad9a4599827e3ed43ab57e35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f72da76fad9a4599827e3ed43ab57e35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f72da76fad9a4599827e3ed43ab57e35.jpg", "file_size": 11307, "is_delete": false, "file_type": 1, "original_file_name": "8422#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72da76fad9a4599827e3ed43ab57e35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72da76fad9a4599827e3ed43ab57e35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72da76fad9a4599827e3ed43ab57e35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f72da76fad9a4599827e3ed43ab57e35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f72da76fad9a4599827e3ed43ab57e35.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Swx5nVZtLvz6IUTl-0EurIPIXJk=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.557307+00 2025-12-09 10:15:27.557312+00 14852 LZ1336#童装T5号色 SPMX-20240815310062 \N \N \N 1 \N [{"file_id": "ab5468a9-8369-4613-a300-72f6f2f92866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36bc161549e84e588e12a2f7d58b688f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36bc161549e84e588e12a2f7d58b688f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36bc161549e84e588e12a2f7d58b688f.jpg", "file_size": 20720, "is_delete": false, "file_type": 1, "original_file_name": "LZ1336#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36bc161549e84e588e12a2f7d58b688f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36bc161549e84e588e12a2f7d58b688f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36bc161549e84e588e12a2f7d58b688f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36bc161549e84e588e12a2f7d58b688f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36bc161549e84e588e12a2f7d58b688f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TOCp1SiDvdHkm3nTi9yZdsbMnWc=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.559973+00 2025-12-09 10:15:27.559979+00 14853 JTSS581FW#VS-D3 SPMX-20240815310061 \N \N \N 1 \N [{"file_id": "6ea6fe0b-df6c-4186-a229-62b72bfe84fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78a1988fe70a49678c9d1a68d49a1ee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78a1988fe70a49678c9d1a68d49a1ee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78a1988fe70a49678c9d1a68d49a1ee9.jpg", "file_size": 18144, "is_delete": false, "file_type": 1, "original_file_name": "JTSS581FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a1988fe70a49678c9d1a68d49a1ee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a1988fe70a49678c9d1a68d49a1ee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a1988fe70a49678c9d1a68d49a1ee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78a1988fe70a49678c9d1a68d49a1ee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78a1988fe70a49678c9d1a68d49a1ee9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwUhfFpEdhwRlHra3P-gWtRZjPU=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.562559+00 2025-12-09 10:15:27.562565+00 14854 HTA07FWE#紫改版VS-D3 SPMX-20240815310055 \N \N \N 1 \N [{"file_id": "ec1d4675-6637-418d-bdd9-90ca5f59583f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af4d2ed4d5544385b61e30c9d0f0dbfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af4d2ed4d5544385b61e30c9d0f0dbfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af4d2ed4d5544385b61e30c9d0f0dbfd.jpg", "file_size": 11497, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#紫改版VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af4d2ed4d5544385b61e30c9d0f0dbfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af4d2ed4d5544385b61e30c9d0f0dbfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af4d2ed4d5544385b61e30c9d0f0dbfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af4d2ed4d5544385b61e30c9d0f0dbfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af4d2ed4d5544385b61e30c9d0f0dbfd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1dYi6898Dfh_B_0qattvwHoL3Y=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.565135+00 2025-12-09 10:15:27.56514+00 14855 LJH1801-5#彩蓝色 SPMX-20240815310060 \N \N \N 1 \N [{"file_id": "0a40fd0e-cbaa-4d58-89db-9e898823ea17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae049dfcedee437b9182ae9e163add8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae049dfcedee437b9182ae9e163add8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae049dfcedee437b9182ae9e163add8a.jpg", "file_size": 58042, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-5#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae049dfcedee437b9182ae9e163add8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae049dfcedee437b9182ae9e163add8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae049dfcedee437b9182ae9e163add8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae049dfcedee437b9182ae9e163add8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae049dfcedee437b9182ae9e163add8a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ya7JRpJd3_fNMOCfx2hnyTAuYbQ=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.567738+00 2025-12-09 10:15:27.567744+00 14856 C941#蓝色XL SPMX-20240815310056 \N \N \N 1 \N [{"file_id": "3d482fb1-734b-4034-9056-ba9c7467ae42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "526e2f6eabcf486b8b3bc502451f8bb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "526e2f6eabcf486b8b3bc502451f8bb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "526e2f6eabcf486b8b3bc502451f8bb2.jpg", "file_size": 25368, "is_delete": false, "file_type": 1, "original_file_name": "C941#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e2f6eabcf486b8b3bc502451f8bb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e2f6eabcf486b8b3bc502451f8bb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e2f6eabcf486b8b3bc502451f8bb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/526e2f6eabcf486b8b3bc502451f8bb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/526e2f6eabcf486b8b3bc502451f8bb2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5kB8Rw-0nobeyhAZkRAkZZG5fV0=", "createTime": "2024-08-15 14:58:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.570398+00 2025-12-09 10:15:27.570404+00 14857 23-2126#A2-领子4XL SPMX-20240815310057 \N \N \N 1 \N [{"file_id": "61a4338e-2b6e-44fb-8e7a-f0005d4857c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31e6e1a611eb4c559e3e5af463a05bf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31e6e1a611eb4c559e3e5af463a05bf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31e6e1a611eb4c559e3e5af463a05bf4.jpg", "file_size": 12174, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e6e1a611eb4c559e3e5af463a05bf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e6e1a611eb4c559e3e5af463a05bf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e6e1a611eb4c559e3e5af463a05bf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31e6e1a611eb4c559e3e5af463a05bf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31e6e1a611eb4c559e3e5af463a05bf4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ytmq78eSLKCT9bvBLeUQi5bay0g=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.572992+00 2025-12-09 10:15:27.572998+00 14858 DL31157#袖子浅粉 SPMX-20240815310064 \N \N \N 1 \N [{"file_id": "3042d88f-b703-46f8-b6ec-f7fbe41ea22f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49e189d2c4564db28db9a76f1f85acec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49e189d2c4564db28db9a76f1f85acec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49e189d2c4564db28db9a76f1f85acec.jpg", "file_size": 15628, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e189d2c4564db28db9a76f1f85acec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e189d2c4564db28db9a76f1f85acec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e189d2c4564db28db9a76f1f85acec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49e189d2c4564db28db9a76f1f85acec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49e189d2c4564db28db9a76f1f85acec.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRC7RGOi2MxCV2iOMcVv94LxKh0=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.575618+00 2025-12-09 10:15:27.575624+00 14859 C952#LWQ15 SPMX-20240815310068 \N \N \N 1 \N [{"file_id": "396899ad-4026-466b-8356-c4eb9c021af3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e2aec162706430b9531e8cc88e397ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e2aec162706430b9531e8cc88e397ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e2aec162706430b9531e8cc88e397ba.jpg", "file_size": 21468, "is_delete": false, "file_type": 1, "original_file_name": "C952#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2aec162706430b9531e8cc88e397ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2aec162706430b9531e8cc88e397ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2aec162706430b9531e8cc88e397ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e2aec162706430b9531e8cc88e397ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e2aec162706430b9531e8cc88e397ba.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzpZvHjBp3uJPYf-Z2O8n4zEbpo=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.578219+00 2025-12-09 10:15:27.578225+00 14860 HTA07FWE#紫色 SPMX-20240815310065 \N \N \N 1 \N [{"file_id": "2f6ce7d3-9b41-4574-a62e-7502a222fe95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0afb33aa40d945ccba2cb1d9d168240a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0afb33aa40d945ccba2cb1d9d168240a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0afb33aa40d945ccba2cb1d9d168240a.jpg", "file_size": 9419, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb33aa40d945ccba2cb1d9d168240a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb33aa40d945ccba2cb1d9d168240a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb33aa40d945ccba2cb1d9d168240a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0afb33aa40d945ccba2cb1d9d168240a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0afb33aa40d945ccba2cb1d9d168240a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x31OqvpkZCDrmkp-c1btzDB4ls0=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.580798+00 2025-12-09 10:15:27.580804+00 14861 1203-2FWF#湖绿色捆条 SPMX-20240815310059 \N \N \N 1 \N [{"file_id": "6a35ffa8-fa37-46fd-8ada-0b7282876792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f005697e42c84a1eb74bce0470d8a541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f005697e42c84a1eb74bce0470d8a541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f005697e42c84a1eb74bce0470d8a541.jpg", "file_size": 8660, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#湖绿色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f005697e42c84a1eb74bce0470d8a541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f005697e42c84a1eb74bce0470d8a541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f005697e42c84a1eb74bce0470d8a541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f005697e42c84a1eb74bce0470d8a541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f005697e42c84a1eb74bce0470d8a541.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4VUqP6-0s2W4G97cAVCXnVVtwI=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.583411+00 2025-12-09 10:15:27.583418+00 14862 23-2126#A3-3XL SPMX-20240815310066 \N \N \N 1 \N [{"file_id": "de21a49a-b4c5-403f-bc22-425a83fba193", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfa29b148d184195834ea5f4eee37dce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfa29b148d184195834ea5f4eee37dce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfa29b148d184195834ea5f4eee37dce.jpg", "file_size": 19108, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa29b148d184195834ea5f4eee37dce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa29b148d184195834ea5f4eee37dce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa29b148d184195834ea5f4eee37dce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfa29b148d184195834ea5f4eee37dce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfa29b148d184195834ea5f4eee37dce.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GznNOy_AkHcDF6A86JQOExLj-Qk=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.586566+00 2025-12-09 10:15:27.586573+00 14863 FND4157FWE#妈妈装咖啡净色 SPMX-20240815310067 \N \N \N 1 \N [{"file_id": "d8fad4e8-4c13-4784-a22e-f1cc5ff9aeb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc756f5d1020498aa4b7c4af9ea5ff76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc756f5d1020498aa4b7c4af9ea5ff76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc756f5d1020498aa4b7c4af9ea5ff76.jpg", "file_size": 6968, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#妈妈装咖啡净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc756f5d1020498aa4b7c4af9ea5ff76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc756f5d1020498aa4b7c4af9ea5ff76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc756f5d1020498aa4b7c4af9ea5ff76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc756f5d1020498aa4b7c4af9ea5ff76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc756f5d1020498aa4b7c4af9ea5ff76.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DM0qR8vZJmTUkL1X9FOqKabzVOo=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.589111+00 2025-12-09 10:15:27.589117+00 14864 1203-2FWF#粉色 SPMX-20240815310069 \N \N \N 1 \N [{"file_id": "7276d1a9-a4de-443f-8c69-aec3aa008f17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3929a4724b44f59abc9df30b5685d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3929a4724b44f59abc9df30b5685d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3929a4724b44f59abc9df30b5685d7.jpg", "file_size": 12971, "is_delete": false, "file_type": 1, "original_file_name": "1203-2FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3929a4724b44f59abc9df30b5685d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3929a4724b44f59abc9df30b5685d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3929a4724b44f59abc9df30b5685d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3929a4724b44f59abc9df30b5685d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3929a4724b44f59abc9df30b5685d7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JQYTIthSmQaJ0gB_HKYBBHYbBjI=", "createTime": "2024-08-15 14:58:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.591381+00 2025-12-09 10:15:27.591385+00 14865 8469-1#枣红色 SPMX-20240815310073 \N \N \N 1 \N [{"file_id": "785d6633-c7c0-4a99-894d-e166ed6042b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg", "file_size": 26624, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2a1c6032cfa49128c3c7fbc3ba9cd66.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oL-v0HZgGtQDZGsR9s5B1V-VNdk=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.593925+00 2025-12-09 10:15:27.593931+00 14866 FND4157FWE#妈妈装咖啡色 SPMX-20240815310078 \N \N \N 1 \N [{"file_id": "1946d6b1-7853-4290-b54c-747ff73ab54c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7e05b12f9341248a6c1ea549fa3684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7e05b12f9341248a6c1ea549fa3684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7e05b12f9341248a6c1ea549fa3684.jpg", "file_size": 16649, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#妈妈装咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7e05b12f9341248a6c1ea549fa3684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7e05b12f9341248a6c1ea549fa3684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7e05b12f9341248a6c1ea549fa3684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7e05b12f9341248a6c1ea549fa3684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7e05b12f9341248a6c1ea549fa3684.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRlxhxHZPGsjo3HBjixE5DCk6nw=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.596462+00 2025-12-09 10:15:27.596467+00 14867 23-2126#A3-4XL SPMX-20240815310080 \N \N \N 1 \N [{"file_id": "63190bd9-ce47-44d8-9b11-435f7e122395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84e133afb2d47eaaf8b65fe2753b221.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84e133afb2d47eaaf8b65fe2753b221.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84e133afb2d47eaaf8b65fe2753b221.jpg", "file_size": 17973, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84e133afb2d47eaaf8b65fe2753b221.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84e133afb2d47eaaf8b65fe2753b221.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84e133afb2d47eaaf8b65fe2753b221.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84e133afb2d47eaaf8b65fe2753b221.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84e133afb2d47eaaf8b65fe2753b221.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99nXPD0_foV8HUUskQDcpduRElA=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.598864+00 2025-12-09 10:15:27.598869+00 14868 DL31157#袖子玫红 SPMX-20240815310074 \N \N \N 1 \N [{"file_id": "1e776bba-367c-4728-88c1-777e48c10bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bcdb9bd8ffd4497b86281f65c42d574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bcdb9bd8ffd4497b86281f65c42d574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bcdb9bd8ffd4497b86281f65c42d574.jpg", "file_size": 15375, "is_delete": false, "file_type": 1, "original_file_name": "DL31157#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcdb9bd8ffd4497b86281f65c42d574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcdb9bd8ffd4497b86281f65c42d574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcdb9bd8ffd4497b86281f65c42d574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bcdb9bd8ffd4497b86281f65c42d574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bcdb9bd8ffd4497b86281f65c42d574.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FnsiJczNY8Fwz6Tz_2bDCZdzes=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.601258+00 2025-12-09 10:15:27.601262+00 14869 LJH1801-5#绿色 SPMX-20240815310070 \N \N \N 1 \N [{"file_id": "29d90227-e424-460d-ab37-1f46848588f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "940313e1fa7149278c099aed0a87215c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "940313e1fa7149278c099aed0a87215c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "940313e1fa7149278c099aed0a87215c.jpg", "file_size": 57349, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-5#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940313e1fa7149278c099aed0a87215c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940313e1fa7149278c099aed0a87215c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/940313e1fa7149278c099aed0a87215c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/940313e1fa7149278c099aed0a87215c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/940313e1fa7149278c099aed0a87215c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hFmlRJPdrzZD1iojfQZCE5w4TQ=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.603413+00 2025-12-09 10:15:27.603417+00 14870 HTA07FWE#绿改版VS-D3 SPMX-20240815310076 \N \N \N 1 \N [{"file_id": "116ae53d-a1c7-44e2-a9b8-bd9402329855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be12cab2099d4e38aa66301b096be877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be12cab2099d4e38aa66301b096be877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be12cab2099d4e38aa66301b096be877.jpg", "file_size": 11457, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#绿改版VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be12cab2099d4e38aa66301b096be877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be12cab2099d4e38aa66301b096be877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be12cab2099d4e38aa66301b096be877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be12cab2099d4e38aa66301b096be877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be12cab2099d4e38aa66301b096be877.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASOWfp1IpiivQFymPmfQzgIyuA8=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.605788+00 2025-12-09 10:15:27.605793+00 14871 1203-3FWF#捆条 SPMX-20240815310079 \N \N \N 1 \N [{"file_id": "5a8af568-e11d-464b-8ad6-84395878270a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42f2deff68c5455a93f0193d29c485c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42f2deff68c5455a93f0193d29c485c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42f2deff68c5455a93f0193d29c485c4.jpg", "file_size": 8451, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f2deff68c5455a93f0193d29c485c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f2deff68c5455a93f0193d29c485c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42f2deff68c5455a93f0193d29c485c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42f2deff68c5455a93f0193d29c485c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42f2deff68c5455a93f0193d29c485c4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lr1nWqhaashqpAC1NYJfBZF5SHE=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.608167+00 2025-12-09 10:15:27.608172+00 14872 LZ1337#上身1号色 SPMX-20240815310075 \N \N \N 1 \N [{"file_id": "9b62313f-80b5-47f6-bb71-2c2c08116251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f8f745529c8458c9e362eaffbae24a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f8f745529c8458c9e362eaffbae24a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f8f745529c8458c9e362eaffbae24a9.jpg", "file_size": 16061, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8f745529c8458c9e362eaffbae24a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8f745529c8458c9e362eaffbae24a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f8f745529c8458c9e362eaffbae24a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f8f745529c8458c9e362eaffbae24a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f8f745529c8458c9e362eaffbae24a9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bNLLDmhPMEXuGy1Hw8ff8KcTZCE=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.610537+00 2025-12-09 10:15:27.610543+00 14873 JTSS582FW#VS-D3 SPMX-20240815310071 \N \N \N 1 \N [{"file_id": "c014dbd1-27c6-4b0a-b9a6-71b382aedb53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "953336ec62db4f67ac564f2cfd61834f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "953336ec62db4f67ac564f2cfd61834f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "953336ec62db4f67ac564f2cfd61834f.jpg", "file_size": 17601, "is_delete": false, "file_type": 1, "original_file_name": "JTSS582FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953336ec62db4f67ac564f2cfd61834f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953336ec62db4f67ac564f2cfd61834f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/953336ec62db4f67ac564f2cfd61834f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/953336ec62db4f67ac564f2cfd61834f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/953336ec62db4f67ac564f2cfd61834f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5CXgRvAgUeo0cGHZCMBd_4dVW8=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.613069+00 2025-12-09 10:15:27.613074+00 14874 0006-33FWF#V5曲线 SPMX-20240815310081 \N \N \N 1 \N [{"file_id": "e3e4ba80-bbcd-476c-9d18-7e91991a7abd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "621914153fa64537a8d20241cfa4ff00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "621914153fa64537a8d20241cfa4ff00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "621914153fa64537a8d20241cfa4ff00.jpg", "file_size": 17392, "is_delete": false, "file_type": 1, "original_file_name": "0006-33FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621914153fa64537a8d20241cfa4ff00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621914153fa64537a8d20241cfa4ff00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621914153fa64537a8d20241cfa4ff00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/621914153fa64537a8d20241cfa4ff00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/621914153fa64537a8d20241cfa4ff00.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBGCSk1HoKY2gL7Ftktnjz_LyM0=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.615516+00 2025-12-09 10:15:27.615522+00 14875 0006-33FWE#VS-D3 SPMX-20240815310072 \N \N \N 1 \N [{"file_id": "ae949c7e-958e-4687-b0e0-1399afc46127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f5ebd8b7a874be8851b14226676d3ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f5ebd8b7a874be8851b14226676d3ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f5ebd8b7a874be8851b14226676d3ab.jpg", "file_size": 13157, "is_delete": false, "file_type": 1, "original_file_name": "0006-33FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f5ebd8b7a874be8851b14226676d3ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f5ebd8b7a874be8851b14226676d3ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f5ebd8b7a874be8851b14226676d3ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f5ebd8b7a874be8851b14226676d3ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f5ebd8b7a874be8851b14226676d3ab.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ajmejch3fGaT_xVVJx5IWuNLsg=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.617955+00 2025-12-09 10:15:27.617961+00 14876 C953#LWQ15 SPMX-20240815310077 \N \N \N 1 \N [{"file_id": "c5138c95-6464-42af-9b48-fca4fbfbdc8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be87952fa24e47e2a23b47a2edfc59f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be87952fa24e47e2a23b47a2edfc59f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be87952fa24e47e2a23b47a2edfc59f7.jpg", "file_size": 12295, "is_delete": false, "file_type": 1, "original_file_name": "C953#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be87952fa24e47e2a23b47a2edfc59f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be87952fa24e47e2a23b47a2edfc59f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be87952fa24e47e2a23b47a2edfc59f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be87952fa24e47e2a23b47a2edfc59f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be87952fa24e47e2a23b47a2edfc59f7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zd68g6SdyFhwNt7QeyrY4nNwKkU=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.6204+00 2025-12-09 10:15:27.620405+00 14877 LJH1801-7#彩蓝 SPMX-20240815310082 \N \N \N 1 \N [{"file_id": "61355891-20f6-47f7-95cf-a5aee01962d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0686478f23084b50bb0e786f4cfb3b09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0686478f23084b50bb0e786f4cfb3b09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0686478f23084b50bb0e786f4cfb3b09.jpg", "file_size": 60472, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0686478f23084b50bb0e786f4cfb3b09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0686478f23084b50bb0e786f4cfb3b09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0686478f23084b50bb0e786f4cfb3b09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0686478f23084b50bb0e786f4cfb3b09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0686478f23084b50bb0e786f4cfb3b09.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-T9DzW7QsCNkFIJIYooR6Pxi1g0=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.622951+00 2025-12-09 10:15:27.622957+00 14878 CABF-08# SPMX-20240815310095 \N \N \N 1 \N [{"file_id": "63ce1dc7-9c02-4f18-a315-740d4718a2d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbca1b10f0454d17a16db235617740c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbca1b10f0454d17a16db235617740c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbca1b10f0454d17a16db235617740c0.jpg", "file_size": 17077, "is_delete": false, "file_type": 1, "original_file_name": "CABF-08#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbca1b10f0454d17a16db235617740c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbca1b10f0454d17a16db235617740c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbca1b10f0454d17a16db235617740c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbca1b10f0454d17a16db235617740c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbca1b10f0454d17a16db235617740c0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RsUCqa9lGaSOQyclb6x4dH9Fwto=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.625354+00 2025-12-09 10:15:27.625359+00 14879 8469-1#枣红色头巾匹布 SPMX-20240815310085 \N \N \N 1 \N [{"file_id": "5965b255-706e-41c8-9f60-7d9cb5765292", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73b3c436b31f4501b9f804e5b463b9f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73b3c436b31f4501b9f804e5b463b9f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73b3c436b31f4501b9f804e5b463b9f9.jpg", "file_size": 25759, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#枣红色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3c436b31f4501b9f804e5b463b9f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3c436b31f4501b9f804e5b463b9f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3c436b31f4501b9f804e5b463b9f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73b3c436b31f4501b9f804e5b463b9f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73b3c436b31f4501b9f804e5b463b9f9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMCX9r5AKixCHI9vlii6yx_STFI=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.627556+00 2025-12-09 10:15:27.627561+00 14880 JTSS584FW#VS-D3 SPMX-20240815310094 \N \N \N 1 \N [{"file_id": "93ab6c11-29bb-4bd3-a273-b02301787e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb0c582f558341fa810d76db4f5b202a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb0c582f558341fa810d76db4f5b202a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb0c582f558341fa810d76db4f5b202a.jpg", "file_size": 22508, "is_delete": false, "file_type": 1, "original_file_name": "JTSS584FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0c582f558341fa810d76db4f5b202a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0c582f558341fa810d76db4f5b202a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0c582f558341fa810d76db4f5b202a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb0c582f558341fa810d76db4f5b202a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb0c582f558341fa810d76db4f5b202a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwS9Zfe46vegihtT0ycihZChimc=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.629962+00 2025-12-09 10:15:27.629967+00 14881 0006-34FWE#VS-D3 SPMX-20240815310091 \N \N \N 1 \N [{"file_id": "13101fb3-39c4-408c-944f-2101a0f34b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93c2d4f54ea34bd58f1f21f7b03832db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93c2d4f54ea34bd58f1f21f7b03832db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93c2d4f54ea34bd58f1f21f7b03832db.jpg", "file_size": 7249, "is_delete": false, "file_type": 1, "original_file_name": "0006-34FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c2d4f54ea34bd58f1f21f7b03832db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c2d4f54ea34bd58f1f21f7b03832db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c2d4f54ea34bd58f1f21f7b03832db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93c2d4f54ea34bd58f1f21f7b03832db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93c2d4f54ea34bd58f1f21f7b03832db.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OKv9rs5irme_AuQJV29U0kkywYg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.632372+00 2025-12-09 10:15:27.632377+00 14882 8469-1#橙色 SPMX-20240815310096 \N \N \N 1 \N [{"file_id": "cf5fb208-f6e8-4956-b1df-991413610814", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b61e832e6c4f4e0096f99744989dd2f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b61e832e6c4f4e0096f99744989dd2f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b61e832e6c4f4e0096f99744989dd2f7.jpg", "file_size": 25333, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61e832e6c4f4e0096f99744989dd2f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61e832e6c4f4e0096f99744989dd2f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b61e832e6c4f4e0096f99744989dd2f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b61e832e6c4f4e0096f99744989dd2f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b61e832e6c4f4e0096f99744989dd2f7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vYRxR9_LwQOw7ugVAdq5lIKE3E=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.634543+00 2025-12-09 10:15:27.634548+00 14883 LZ1337#上身3号色 SPMX-20240815310097 \N \N \N 1 \N [{"file_id": "1f84ff74-28fb-4ad8-b1f8-1489b3ad3574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg", "file_size": 16580, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4422e1cb2cb4e9bb173bd8bd93bba1c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvelYh7x0gof6DIirFBbkVT7fQA=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.637012+00 2025-12-09 10:15:27.637017+00 14884 FND4157FWE#妈妈装橙净色 SPMX-20240815310088 \N \N \N 1 \N [{"file_id": "14c9943b-22e6-49aa-90e0-c4dbf6e4af9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bb164a3c0014fa981db1c94fe079a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bb164a3c0014fa981db1c94fe079a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bb164a3c0014fa981db1c94fe079a59.jpg", "file_size": 6334, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#妈妈装橙净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb164a3c0014fa981db1c94fe079a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb164a3c0014fa981db1c94fe079a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb164a3c0014fa981db1c94fe079a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bb164a3c0014fa981db1c94fe079a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bb164a3c0014fa981db1c94fe079a59.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HiYPf6pRC68zvsEiyAtbJrccRYQ=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.639398+00 2025-12-09 10:15:27.639403+00 14885 DL31212#玫红 SPMX-20240815310084 \N \N \N 1 \N [{"file_id": "2f0e4596-a18e-4579-aa5a-9d06e2fcec9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b255e8fb347147c680a81410049bf072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b255e8fb347147c680a81410049bf072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b255e8fb347147c680a81410049bf072.jpg", "file_size": 8067, "is_delete": false, "file_type": 1, "original_file_name": "DL31212#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255e8fb347147c680a81410049bf072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255e8fb347147c680a81410049bf072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b255e8fb347147c680a81410049bf072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b255e8fb347147c680a81410049bf072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b255e8fb347147c680a81410049bf072.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGYWkszPrVaHUgIAlI5FeLQr1mg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.641588+00 2025-12-09 10:15:27.641593+00 14886 LZ1337#上身2号色 SPMX-20240815310086 \N \N \N 1 \N [{"file_id": "b2d91ed6-b449-41f8-8d7c-0fead016bcf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0de0965802e6424e97e90ff395b8dd72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0de0965802e6424e97e90ff395b8dd72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0de0965802e6424e97e90ff395b8dd72.jpg", "file_size": 15803, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de0965802e6424e97e90ff395b8dd72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de0965802e6424e97e90ff395b8dd72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de0965802e6424e97e90ff395b8dd72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0de0965802e6424e97e90ff395b8dd72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0de0965802e6424e97e90ff395b8dd72.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:umtiCxAgis1ut16HTBXuZHb3_Bw=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.644023+00 2025-12-09 10:15:27.644029+00 14887 CABF-02# SPMX-20240815310087 \N \N \N 1 \N [{"file_id": "8ba75194-77e4-4c7b-9e23-ef0deeb96ac3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35494c404cbb48f59502a7c2162e9b3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35494c404cbb48f59502a7c2162e9b3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35494c404cbb48f59502a7c2162e9b3e.jpg", "file_size": 11598, "is_delete": false, "file_type": 1, "original_file_name": "CABF-02#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35494c404cbb48f59502a7c2162e9b3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35494c404cbb48f59502a7c2162e9b3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35494c404cbb48f59502a7c2162e9b3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35494c404cbb48f59502a7c2162e9b3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35494c404cbb48f59502a7c2162e9b3e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrIiBjTG-HWycxrWkp0vsCXTyVI=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.646435+00 2025-12-09 10:15:27.64644+00 14888 LJH1801-7#桔色 SPMX-20240815310093 \N \N \N 1 \N [{"file_id": "89f73545-76a5-4b61-a175-bd7608229bfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcaa67ef45da421ea89a52eac9e1c605.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcaa67ef45da421ea89a52eac9e1c605.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcaa67ef45da421ea89a52eac9e1c605.jpg", "file_size": 60081, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa67ef45da421ea89a52eac9e1c605.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa67ef45da421ea89a52eac9e1c605.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcaa67ef45da421ea89a52eac9e1c605.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcaa67ef45da421ea89a52eac9e1c605.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcaa67ef45da421ea89a52eac9e1c605.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Twf6lGHozn3oRzvK9CkBcQjqVA=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.648631+00 2025-12-09 10:15:27.648636+00 14889 JTSS583FW#VS-D3 SPMX-20240815310083 \N \N \N 1 \N [{"file_id": "41e02313-9eee-4a97-a7d4-6ede31ab8342", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57bd7fed076944e1afc34e44b7f6d7c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57bd7fed076944e1afc34e44b7f6d7c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57bd7fed076944e1afc34e44b7f6d7c8.jpg", "file_size": 23448, "is_delete": false, "file_type": 1, "original_file_name": "JTSS583FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bd7fed076944e1afc34e44b7f6d7c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bd7fed076944e1afc34e44b7f6d7c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57bd7fed076944e1afc34e44b7f6d7c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57bd7fed076944e1afc34e44b7f6d7c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57bd7fed076944e1afc34e44b7f6d7c8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Szow5_CR8frRD0cYn9KFauAI4vM=", "createTime": "2024-08-15 14:58:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.651129+00 2025-12-09 10:15:27.651134+00 14890 DL31214#彩兰 SPMX-20240815310092 \N \N \N 1 \N [{"file_id": "8c99005f-ed3e-469a-a159-f14c56766172", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59c596a7cf0347de94580c86f7255b72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59c596a7cf0347de94580c86f7255b72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59c596a7cf0347de94580c86f7255b72.jpg", "file_size": 24946, "is_delete": false, "file_type": 1, "original_file_name": "DL31214#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c596a7cf0347de94580c86f7255b72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c596a7cf0347de94580c86f7255b72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c596a7cf0347de94580c86f7255b72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59c596a7cf0347de94580c86f7255b72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59c596a7cf0347de94580c86f7255b72.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QmuE4iSXxJkD1HOJmEK6x79aheo=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.653583+00 2025-12-09 10:15:27.653589+00 14891 23-2126#A3-领子3XL SPMX-20240815310089 \N \N \N 1 \N [{"file_id": "4a67cd92-64ef-4f1b-b063-bcb61b3aa1b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5db6c4995174b73bfb0aee4e960478f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5db6c4995174b73bfb0aee4e960478f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5db6c4995174b73bfb0aee4e960478f.jpg", "file_size": 12205, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5db6c4995174b73bfb0aee4e960478f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5db6c4995174b73bfb0aee4e960478f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5db6c4995174b73bfb0aee4e960478f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5db6c4995174b73bfb0aee4e960478f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5db6c4995174b73bfb0aee4e960478f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePwwg3onGL4--ops7HLExQwe2jM=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.655783+00 2025-12-09 10:15:27.655789+00 14892 1203-3FWF#枣红 SPMX-20240815310090 \N \N \N 1 \N [{"file_id": "e0e1523e-f48c-417a-8f00-7d23e49237d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c448e0ca748f4c1299b37ea7e44f0f4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c448e0ca748f4c1299b37ea7e44f0f4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c448e0ca748f4c1299b37ea7e44f0f4c.jpg", "file_size": 8847, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c448e0ca748f4c1299b37ea7e44f0f4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c448e0ca748f4c1299b37ea7e44f0f4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c448e0ca748f4c1299b37ea7e44f0f4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c448e0ca748f4c1299b37ea7e44f0f4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c448e0ca748f4c1299b37ea7e44f0f4c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UybORuDAfrbK143odv00qDK7xxg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.65827+00 2025-12-09 10:15:27.658276+00 14893 FND4157FWE#妈妈装橙色 SPMX-20240815310098 \N \N \N 1 \N [{"file_id": "a75800ae-4cd3-4c86-9f11-3d9457656443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955943757b9e4918b4d2559215ee5b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955943757b9e4918b4d2559215ee5b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955943757b9e4918b4d2559215ee5b43.jpg", "file_size": 17367, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#妈妈装橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955943757b9e4918b4d2559215ee5b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955943757b9e4918b4d2559215ee5b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955943757b9e4918b4d2559215ee5b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955943757b9e4918b4d2559215ee5b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955943757b9e4918b4d2559215ee5b43.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVPE0HVfM2cQah9CQ7UPwabzpBg=", "createTime": "2024-08-15 14:58:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.660681+00 2025-12-09 10:15:27.660687+00 14894 LJH1801-7#玫红 SPMX-20240815310103 \N \N \N 1 \N [{"file_id": "f0779a8b-9792-4a77-bcfc-d29dd5476b70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b60f89daa314fd99bc3d1e627e578ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b60f89daa314fd99bc3d1e627e578ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b60f89daa314fd99bc3d1e627e578ff.jpg", "file_size": 76514, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b60f89daa314fd99bc3d1e627e578ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b60f89daa314fd99bc3d1e627e578ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b60f89daa314fd99bc3d1e627e578ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b60f89daa314fd99bc3d1e627e578ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b60f89daa314fd99bc3d1e627e578ff.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GAPhdz1jCzw2IrjosTa4q1Q-3DA=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.662922+00 2025-12-09 10:15:27.662927+00 14895 1203-3FWF#湖绿色 SPMX-20240815310109 \N \N \N 1 \N [{"file_id": "162ea099-e2ec-456c-b44a-29a0222218dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ee74092d4664eab8469e9c6479de780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ee74092d4664eab8469e9c6479de780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ee74092d4664eab8469e9c6479de780.jpg", "file_size": 8946, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee74092d4664eab8469e9c6479de780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee74092d4664eab8469e9c6479de780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ee74092d4664eab8469e9c6479de780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ee74092d4664eab8469e9c6479de780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ee74092d4664eab8469e9c6479de780.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QXbfz1IyMk1F4jNTh0-TJNIkVPk=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.665264+00 2025-12-09 10:15:27.665269+00 14896 FND4157FWE#妈妈装黑色 SPMX-20240815310110 \N \N \N 1 \N [{"file_id": "9d8ae1a4-95ac-4ceb-a0ae-c36dda8f1f2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "395badd02b6548098a9256ea666e7bad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "395badd02b6548098a9256ea666e7bad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "395badd02b6548098a9256ea666e7bad.jpg", "file_size": 18234, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#妈妈装黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395badd02b6548098a9256ea666e7bad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395badd02b6548098a9256ea666e7bad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395badd02b6548098a9256ea666e7bad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/395badd02b6548098a9256ea666e7bad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/395badd02b6548098a9256ea666e7bad.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yD9iAe94X8MoRSWO08CARRMs6cg=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.668019+00 2025-12-09 10:15:27.668025+00 14897 0006-35FWE#VS-D3 SPMX-20240815310112 \N \N \N 1 \N [{"file_id": "b6a26e26-4bc3-4bc8-b857-3a521342c218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e1863c2bca47aaa707bac4bb5ffd60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e1863c2bca47aaa707bac4bb5ffd60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e1863c2bca47aaa707bac4bb5ffd60.jpg", "file_size": 11967, "is_delete": false, "file_type": 1, "original_file_name": "0006-35FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e1863c2bca47aaa707bac4bb5ffd60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e1863c2bca47aaa707bac4bb5ffd60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e1863c2bca47aaa707bac4bb5ffd60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e1863c2bca47aaa707bac4bb5ffd60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e1863c2bca47aaa707bac4bb5ffd60.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-5AmdpB9QX6uZJU5ZpGLGlaTY8=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.670748+00 2025-12-09 10:15:27.670754+00 14898 JTSS585FW#VS-D3 SPMX-20240815310108 \N \N \N 1 \N [{"file_id": "a2e520ee-c717-49b2-befd-ff434e54684a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c50995bbdf045db91db355ffab21802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c50995bbdf045db91db355ffab21802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c50995bbdf045db91db355ffab21802.jpg", "file_size": 11356, "is_delete": false, "file_type": 1, "original_file_name": "JTSS585FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c50995bbdf045db91db355ffab21802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c50995bbdf045db91db355ffab21802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c50995bbdf045db91db355ffab21802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c50995bbdf045db91db355ffab21802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c50995bbdf045db91db355ffab21802.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aM90gk2YgCD6cgI_W2wnnvNRhvA=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.673227+00 2025-12-09 10:15:27.673232+00 14899 23-2126#A3-领子4XL SPMX-20240815310100 \N \N \N 1 \N [{"file_id": "c50a71f9-ba0b-4f08-aec0-8ef8315311a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4ea01aad5a341748ac136b69cfdb18a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4ea01aad5a341748ac136b69cfdb18a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4ea01aad5a341748ac136b69cfdb18a.jpg", "file_size": 12337, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ea01aad5a341748ac136b69cfdb18a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ea01aad5a341748ac136b69cfdb18a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4ea01aad5a341748ac136b69cfdb18a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4ea01aad5a341748ac136b69cfdb18a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4ea01aad5a341748ac136b69cfdb18a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h1pGACHiN7BeH7UGzvWcEDHmB0g=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.67593+00 2025-12-09 10:15:27.675935+00 14900 LZ1337#上身4号色 SPMX-20240815310107 \N \N \N 1 \N [{"file_id": "c7882e6c-26a1-4dd7-8029-9374c4492494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc6ecc7c43fe400cb8edadaa957cbe30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc6ecc7c43fe400cb8edadaa957cbe30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc6ecc7c43fe400cb8edadaa957cbe30.jpg", "file_size": 14974, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6ecc7c43fe400cb8edadaa957cbe30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6ecc7c43fe400cb8edadaa957cbe30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6ecc7c43fe400cb8edadaa957cbe30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc6ecc7c43fe400cb8edadaa957cbe30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc6ecc7c43fe400cb8edadaa957cbe30.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sw7xaWfzfYrtSFTLAq2YPXY4lYA=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.678659+00 2025-12-09 10:15:27.678665+00 14901 DL31224#前幅兰绿2XL SPMX-20240815310102 \N \N \N 1 \N [{"file_id": "1a81ca9c-6cdb-4fce-86c2-50a19cfb5c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3b9f0249aa64a48b11770c828ee598d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3b9f0249aa64a48b11770c828ee598d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3b9f0249aa64a48b11770c828ee598d.jpg", "file_size": 17145, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅兰绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b9f0249aa64a48b11770c828ee598d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b9f0249aa64a48b11770c828ee598d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3b9f0249aa64a48b11770c828ee598d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3b9f0249aa64a48b11770c828ee598d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3b9f0249aa64a48b11770c828ee598d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bQw_M2rZ0oXNfIMWdhVdolPSw88=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.68115+00 2025-12-09 10:15:27.681157+00 14902 0006-34FWF#V5曲线 SPMX-20240815310101 \N \N \N 1 \N [{"file_id": "183ab1e9-ee28-4f22-b6f4-ecde6dd3bdef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73704c34d46d4e088c12e4de99945e2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73704c34d46d4e088c12e4de99945e2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73704c34d46d4e088c12e4de99945e2b.jpg", "file_size": 17538, "is_delete": false, "file_type": 1, "original_file_name": "0006-34FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73704c34d46d4e088c12e4de99945e2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73704c34d46d4e088c12e4de99945e2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73704c34d46d4e088c12e4de99945e2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73704c34d46d4e088c12e4de99945e2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73704c34d46d4e088c12e4de99945e2b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wweJ1B0DggXEcIFUkHR9A1ECD1Y=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.683884+00 2025-12-09 10:15:27.68389+00 14903 CABF-19# SPMX-20240815310104 \N \N \N 1 \N [{"file_id": "c33dd445-9b71-4baa-a3de-74cac0f71e96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf4627508c5940c195de9c3a4b81898d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf4627508c5940c195de9c3a4b81898d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf4627508c5940c195de9c3a4b81898d.jpg", "file_size": 23527, "is_delete": false, "file_type": 1, "original_file_name": "CABF-19#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4627508c5940c195de9c3a4b81898d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4627508c5940c195de9c3a4b81898d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4627508c5940c195de9c3a4b81898d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf4627508c5940c195de9c3a4b81898d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf4627508c5940c195de9c3a4b81898d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTb8LOJDCKYq7oGAewMVetPsS7Y=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.686648+00 2025-12-09 10:15:27.686654+00 14904 8469-1#橙色头巾匹布 SPMX-20240815310106 \N \N \N 1 \N [{"file_id": "0115534e-9df6-4055-b808-658362c4f6fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e59f43b1704043d9810c99b33ee3e2c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e59f43b1704043d9810c99b33ee3e2c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e59f43b1704043d9810c99b33ee3e2c9.jpg", "file_size": 25150, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#橙色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59f43b1704043d9810c99b33ee3e2c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59f43b1704043d9810c99b33ee3e2c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e59f43b1704043d9810c99b33ee3e2c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e59f43b1704043d9810c99b33ee3e2c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e59f43b1704043d9810c99b33ee3e2c9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggUFPBRbg2vaYozy4ftKeVaGBfc=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.689128+00 2025-12-09 10:15:27.689134+00 14905 HTA07FWE#绿色 SPMX-20240815310105 \N \N \N 1 \N [{"file_id": "ee223460-349b-4d9c-be94-49ceaea7fba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd60362df07142129be05f1e941531a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd60362df07142129be05f1e941531a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd60362df07142129be05f1e941531a1.jpg", "file_size": 9069, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd60362df07142129be05f1e941531a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd60362df07142129be05f1e941531a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd60362df07142129be05f1e941531a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd60362df07142129be05f1e941531a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd60362df07142129be05f1e941531a1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnkmM03XlJh7_Mp4_BHRMRn6GBc=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.691539+00 2025-12-09 10:15:27.691545+00 14906 1203-3FWF#枣红捆条 SPMX-20240815310099 \N \N \N 1 \N [{"file_id": "85f9a479-995f-4260-b83a-35a0c045e498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39258c4cc084b26bf9370dfa94a4d38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39258c4cc084b26bf9370dfa94a4d38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39258c4cc084b26bf9370dfa94a4d38.jpg", "file_size": 8401, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#枣红捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39258c4cc084b26bf9370dfa94a4d38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39258c4cc084b26bf9370dfa94a4d38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39258c4cc084b26bf9370dfa94a4d38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39258c4cc084b26bf9370dfa94a4d38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39258c4cc084b26bf9370dfa94a4d38.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejB31cW5-ILZHeSEH2uhhy5DdN8=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.693991+00 2025-12-09 10:15:27.693997+00 14907 23-2126#A4-3XL SPMX-20240815310111 \N \N \N 1 \N [{"file_id": "88be1cac-758d-47e5-a32a-991f5da9782b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db012b44c0ab4ab99b505d065118e95a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db012b44c0ab4ab99b505d065118e95a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db012b44c0ab4ab99b505d065118e95a.jpg", "file_size": 16160, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db012b44c0ab4ab99b505d065118e95a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db012b44c0ab4ab99b505d065118e95a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db012b44c0ab4ab99b505d065118e95a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db012b44c0ab4ab99b505d065118e95a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db012b44c0ab4ab99b505d065118e95a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T9OJfieD59KIwxQrwcS3bpjsFAY=", "createTime": "2024-08-15 14:58:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.696474+00 2025-12-09 10:15:27.696481+00 14908 0006-35FWF#V5曲线 SPMX-20240815310121 \N \N \N 1 \N [{"file_id": "83d66463-5476-4a75-b833-b74a5f8aae6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c2b76d90f8f413f92b871eb55dec3dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c2b76d90f8f413f92b871eb55dec3dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c2b76d90f8f413f92b871eb55dec3dd.jpg", "file_size": 22216, "is_delete": false, "file_type": 1, "original_file_name": "0006-35FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2b76d90f8f413f92b871eb55dec3dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2b76d90f8f413f92b871eb55dec3dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c2b76d90f8f413f92b871eb55dec3dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c2b76d90f8f413f92b871eb55dec3dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c2b76d90f8f413f92b871eb55dec3dd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkIXmSyQgjjn-cv5hNF43DOsVEM=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.698958+00 2025-12-09 10:15:27.698963+00 14909 LZ1337#上身5号色 SPMX-20240815310118 \N \N \N 1 \N [{"file_id": "3c5405bd-33ee-4453-b455-bd22e475b410", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc850d3aa7d049a0aed94efa398fcbff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc850d3aa7d049a0aed94efa398fcbff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc850d3aa7d049a0aed94efa398fcbff.jpg", "file_size": 16083, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc850d3aa7d049a0aed94efa398fcbff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc850d3aa7d049a0aed94efa398fcbff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc850d3aa7d049a0aed94efa398fcbff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc850d3aa7d049a0aed94efa398fcbff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc850d3aa7d049a0aed94efa398fcbff.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNKCjDuvhcjaS8Dub5-eZF-dMY4=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.701228+00 2025-12-09 10:15:27.701235+00 14910 CABF-22# SPMX-20240815310115 \N \N \N 1 \N [{"file_id": "1233337e-65ef-4653-a47b-46ec5b897165", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0c84235e1c142fe9870b0facdd49b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0c84235e1c142fe9870b0facdd49b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0c84235e1c142fe9870b0facdd49b94.jpg", "file_size": 17886, "is_delete": false, "file_type": 1, "original_file_name": "CABF-22#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c84235e1c142fe9870b0facdd49b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c84235e1c142fe9870b0facdd49b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0c84235e1c142fe9870b0facdd49b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0c84235e1c142fe9870b0facdd49b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0c84235e1c142fe9870b0facdd49b94.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5SQ9Pur8AYE5aylV_RLmJOtrcuk=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.703657+00 2025-12-09 10:15:27.703663+00 14911 FND4157FWE#少女装长裙黑色 SPMX-20240815310122 \N \N \N 1 \N [{"file_id": "6da5aa7e-02b6-40a9-9984-ceb86265378d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e20c5fcad0cf4cf7a812090a8b2fcae6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e20c5fcad0cf4cf7a812090a8b2fcae6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e20c5fcad0cf4cf7a812090a8b2fcae6.jpg", "file_size": 18192, "is_delete": false, "file_type": 1, "original_file_name": "FND4157FWE#少女装长裙黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20c5fcad0cf4cf7a812090a8b2fcae6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20c5fcad0cf4cf7a812090a8b2fcae6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20c5fcad0cf4cf7a812090a8b2fcae6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e20c5fcad0cf4cf7a812090a8b2fcae6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e20c5fcad0cf4cf7a812090a8b2fcae6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QluMh49GIIdELNQOenCbcgmkXFY=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.706182+00 2025-12-09 10:15:27.706189+00 14912 JTSS586FW#VS-D3 SPMX-20240815310120 \N \N \N 1 \N [{"file_id": "6c182445-4524-4a93-a5f8-9083f8351898", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae274514fcba41639d8fafdbf80b9817.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae274514fcba41639d8fafdbf80b9817.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae274514fcba41639d8fafdbf80b9817.jpg", "file_size": 6265, "is_delete": false, "file_type": 1, "original_file_name": "JTSS586FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae274514fcba41639d8fafdbf80b9817.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae274514fcba41639d8fafdbf80b9817.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae274514fcba41639d8fafdbf80b9817.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae274514fcba41639d8fafdbf80b9817.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae274514fcba41639d8fafdbf80b9817.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdkkZz80WetHmLLhUfEsBmf24gc=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.708702+00 2025-12-09 10:15:27.708711+00 14913 23-2126#A4-4XL SPMX-20240815310123 \N \N \N 1 \N [{"file_id": "947b0cc1-2f93-4d6f-bb89-3b9b06e362d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "764971ce2c7c4b90940e0f12018b463f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "764971ce2c7c4b90940e0f12018b463f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "764971ce2c7c4b90940e0f12018b463f.jpg", "file_size": 14971, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764971ce2c7c4b90940e0f12018b463f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764971ce2c7c4b90940e0f12018b463f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/764971ce2c7c4b90940e0f12018b463f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/764971ce2c7c4b90940e0f12018b463f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/764971ce2c7c4b90940e0f12018b463f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKcNV9oXcuVBezUtXlWhFOPRw_0=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.711429+00 2025-12-09 10:15:27.711434+00 14914 DL31224#前幅兰绿XL SPMX-20240815310124 \N \N \N 1 \N [{"file_id": "075c7d8e-bc7f-4ba2-8704-38d2fdf776a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31afa34cac274de6a0734086f15b920b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31afa34cac274de6a0734086f15b920b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31afa34cac274de6a0734086f15b920b.jpg", "file_size": 16741, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅兰绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31afa34cac274de6a0734086f15b920b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31afa34cac274de6a0734086f15b920b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31afa34cac274de6a0734086f15b920b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31afa34cac274de6a0734086f15b920b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31afa34cac274de6a0734086f15b920b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgnYDT5bLnp5TlAS8wfpom6Pog0=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.713984+00 2025-12-09 10:15:27.713991+00 14915 8469-1#蓝色 SPMX-20240815310117 \N \N \N 1 \N [{"file_id": "200a3cb3-07d8-4b04-84f6-fdf6e5306e90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "620846a3d2fb46a587806c49b3a3c940.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "620846a3d2fb46a587806c49b3a3c940.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "620846a3d2fb46a587806c49b3a3c940.jpg", "file_size": 27042, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620846a3d2fb46a587806c49b3a3c940.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620846a3d2fb46a587806c49b3a3c940.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/620846a3d2fb46a587806c49b3a3c940.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/620846a3d2fb46a587806c49b3a3c940.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/620846a3d2fb46a587806c49b3a3c940.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:geYhG-AVZNIpHxD-1O-lWOaAPWQ=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.716477+00 2025-12-09 10:15:27.716484+00 14916 LZ1337#匹布 SPMX-20240815310128 \N \N \N 1 \N [{"file_id": "f4d8b5c6-0886-477f-8481-b8f704817c87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ebd1517337c4a208ddd42d1eaffd4d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ebd1517337c4a208ddd42d1eaffd4d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ebd1517337c4a208ddd42d1eaffd4d7.jpg", "file_size": 19244, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd1517337c4a208ddd42d1eaffd4d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd1517337c4a208ddd42d1eaffd4d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ebd1517337c4a208ddd42d1eaffd4d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ebd1517337c4a208ddd42d1eaffd4d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ebd1517337c4a208ddd42d1eaffd4d7.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sf8OsaXdROU5y8mrIPggHaeb7o0=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.718854+00 2025-12-09 10:15:27.718859+00 14917 HTA07FWE#黄改版VS-D3 SPMX-20240815310116 \N \N \N 1 \N [{"file_id": "ea12675b-da05-4231-8b58-f8e3b64d12a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be32808a61234afab4a46b17b7fb9b53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be32808a61234afab4a46b17b7fb9b53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be32808a61234afab4a46b17b7fb9b53.jpg", "file_size": 12121, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#黄改版VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be32808a61234afab4a46b17b7fb9b53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be32808a61234afab4a46b17b7fb9b53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be32808a61234afab4a46b17b7fb9b53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be32808a61234afab4a46b17b7fb9b53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be32808a61234afab4a46b17b7fb9b53.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8L9FiCRzVcs4oe-J4kIRotsZPaM=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.721353+00 2025-12-09 10:15:27.721358+00 14918 CABF-32# SPMX-20240815310127 \N \N \N 1 \N [{"file_id": "a27d2650-ab8c-4791-8cc9-360f0091b5db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08a76c2e896c45408c5058d8c3a7dd10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08a76c2e896c45408c5058d8c3a7dd10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08a76c2e896c45408c5058d8c3a7dd10.jpg", "file_size": 19455, "is_delete": false, "file_type": 1, "original_file_name": "CABF-32#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a76c2e896c45408c5058d8c3a7dd10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a76c2e896c45408c5058d8c3a7dd10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a76c2e896c45408c5058d8c3a7dd10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08a76c2e896c45408c5058d8c3a7dd10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08a76c2e896c45408c5058d8c3a7dd10.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrAmPUF9eCBkX0rVk7tqDhmgOhI=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.723818+00 2025-12-09 10:15:27.723824+00 14919 LJH1801-7#白色 SPMX-20240815310125 \N \N \N 1 \N [{"file_id": "e917df38-18ce-4a29-bd21-488a918cc77a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ce315152a64a75970d4d53ab010262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ce315152a64a75970d4d53ab010262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ce315152a64a75970d4d53ab010262.jpg", "file_size": 73328, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ce315152a64a75970d4d53ab010262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ce315152a64a75970d4d53ab010262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ce315152a64a75970d4d53ab010262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ce315152a64a75970d4d53ab010262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ce315152a64a75970d4d53ab010262.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehaUR2QZJbR81jlCRo7DStlgaDs=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.726263+00 2025-12-09 10:15:27.72627+00 14920 DL31224#前幅兰绿L SPMX-20240815310113 \N \N \N 1 \N [{"file_id": "b42fc1d3-e5cd-4d3d-8197-73c22065d60c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce2f7e6a89b8451ab7874e3947522f68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce2f7e6a89b8451ab7874e3947522f68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce2f7e6a89b8451ab7874e3947522f68.jpg", "file_size": 16461, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅兰绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2f7e6a89b8451ab7874e3947522f68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2f7e6a89b8451ab7874e3947522f68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2f7e6a89b8451ab7874e3947522f68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce2f7e6a89b8451ab7874e3947522f68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce2f7e6a89b8451ab7874e3947522f68.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IiLmzhODd9dRxTjjut8LFJ-1c5k=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.728731+00 2025-12-09 10:15:27.728737+00 14921 LJH1801-7#玫红色 SPMX-20240815310114 \N \N \N 1 \N [{"file_id": "4c54fd0d-a81b-43f9-871d-61495ce7c0b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "639ea172c18a45a59cae451dc0d1ac17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "639ea172c18a45a59cae451dc0d1ac17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "639ea172c18a45a59cae451dc0d1ac17.jpg", "file_size": 61557, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639ea172c18a45a59cae451dc0d1ac17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639ea172c18a45a59cae451dc0d1ac17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639ea172c18a45a59cae451dc0d1ac17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/639ea172c18a45a59cae451dc0d1ac17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/639ea172c18a45a59cae451dc0d1ac17.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiv6rJukM1oC0UE5kvCvGVgrkFA=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.731234+00 2025-12-09 10:15:27.73124+00 14922 1203-3FWF#湖绿色捆条 SPMX-20240815310119 \N \N \N 1 \N [{"file_id": "0a007739-e785-45e9-aaaa-4e5f1ce102c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "662061c11dec43fc9b2dca6360b0ec9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "662061c11dec43fc9b2dca6360b0ec9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "662061c11dec43fc9b2dca6360b0ec9e.jpg", "file_size": 8572, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#湖绿色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662061c11dec43fc9b2dca6360b0ec9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662061c11dec43fc9b2dca6360b0ec9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662061c11dec43fc9b2dca6360b0ec9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/662061c11dec43fc9b2dca6360b0ec9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/662061c11dec43fc9b2dca6360b0ec9e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J6fglHA4gWMRIKjb40CCpQnswak=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.733693+00 2025-12-09 10:15:27.733698+00 14923 8469-1#蓝色头巾匹布 SPMX-20240815310126 \N \N \N 1 \N [{"file_id": "ee4fe47f-1011-4ae5-850f-55de6e6b2706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b1c96da45d74af4bd023e9b900ee29c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b1c96da45d74af4bd023e9b900ee29c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b1c96da45d74af4bd023e9b900ee29c.jpg", "file_size": 24860, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#蓝色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1c96da45d74af4bd023e9b900ee29c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1c96da45d74af4bd023e9b900ee29c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b1c96da45d74af4bd023e9b900ee29c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b1c96da45d74af4bd023e9b900ee29c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b1c96da45d74af4bd023e9b900ee29c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPK2H52GUID5ww29sw4e1LPGo1w=", "createTime": "2024-08-15 14:58:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.736149+00 2025-12-09 10:15:27.736155+00 14924 0006-36FWE#VS-D3 SPMX-20240815310130 \N \N \N 1 \N [{"file_id": "5b864890-29bc-4e50-9f3a-4873c3b1aa89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1daa815a4bc42f2bb37f0987db591a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1daa815a4bc42f2bb37f0987db591a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1daa815a4bc42f2bb37f0987db591a3.jpg", "file_size": 12839, "is_delete": false, "file_type": 1, "original_file_name": "0006-36FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1daa815a4bc42f2bb37f0987db591a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1daa815a4bc42f2bb37f0987db591a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1daa815a4bc42f2bb37f0987db591a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1daa815a4bc42f2bb37f0987db591a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1daa815a4bc42f2bb37f0987db591a3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQs4aUYQx9-qLDONNbXE14Ak-kw=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.738372+00 2025-12-09 10:15:27.738377+00 14925 FND4158FWE#少女装黑色 SPMX-20240815310135 \N \N \N 1 \N [{"file_id": "1c740be5-83dc-449d-95e1-27befb878be9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "668ed02f051e47abbb2fa0d8041051b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "668ed02f051e47abbb2fa0d8041051b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "668ed02f051e47abbb2fa0d8041051b6.jpg", "file_size": 16446, "is_delete": false, "file_type": 1, "original_file_name": "FND4158FWE#少女装黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ed02f051e47abbb2fa0d8041051b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ed02f051e47abbb2fa0d8041051b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668ed02f051e47abbb2fa0d8041051b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/668ed02f051e47abbb2fa0d8041051b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/668ed02f051e47abbb2fa0d8041051b6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTjcbpJ5SEUmkliuiGO0F8N-yWY=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.740887+00 2025-12-09 10:15:27.740892+00 14926 HTA07FWE#黄色 SPMX-20240815310134 \N \N \N 1 \N [{"file_id": "15dc4a5f-ae7a-463c-a4ff-0e58a9287cc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc7700924da34a89969804e45c9fd4c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc7700924da34a89969804e45c9fd4c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc7700924da34a89969804e45c9fd4c3.jpg", "file_size": 9858, "is_delete": false, "file_type": 1, "original_file_name": "HTA07FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7700924da34a89969804e45c9fd4c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7700924da34a89969804e45c9fd4c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7700924da34a89969804e45c9fd4c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc7700924da34a89969804e45c9fd4c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc7700924da34a89969804e45c9fd4c3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DOrlBYGYjvJwe3yOmkFqk3JQv3w=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.74334+00 2025-12-09 10:15:27.743346+00 14927 JTSS587FW#VS-D3 SPMX-20240815310131 \N \N \N 1 \N [{"file_id": "ebe9f8df-04d4-4c8f-9eaa-0f3709f40a3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3a657f4216e4acc8f22ec20bde5fc9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3a657f4216e4acc8f22ec20bde5fc9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3a657f4216e4acc8f22ec20bde5fc9c.jpg", "file_size": 18005, "is_delete": false, "file_type": 1, "original_file_name": "JTSS587FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a657f4216e4acc8f22ec20bde5fc9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a657f4216e4acc8f22ec20bde5fc9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a657f4216e4acc8f22ec20bde5fc9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3a657f4216e4acc8f22ec20bde5fc9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3a657f4216e4acc8f22ec20bde5fc9c.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G5z9LCHYqCsL_x8tMhBcgjRFAT4=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.745861+00 2025-12-09 10:15:27.745867+00 14928 23-2126#A4-领子3XL SPMX-20240815310132 \N \N \N 1 \N [{"file_id": "faa3d1ad-d075-43e3-957c-c662c8bb3a28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b035d439e348d09fb5c70e82a58818.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b035d439e348d09fb5c70e82a58818.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b035d439e348d09fb5c70e82a58818.jpg", "file_size": 13985, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b035d439e348d09fb5c70e82a58818.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b035d439e348d09fb5c70e82a58818.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b035d439e348d09fb5c70e82a58818.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b035d439e348d09fb5c70e82a58818.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b035d439e348d09fb5c70e82a58818.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UpVcs1hNKpekwwTeS6OgR15ewCk=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.748258+00 2025-12-09 10:15:27.748264+00 14929 DL31224#前幅彩兰2XL SPMX-20240815310133 \N \N \N 1 \N [{"file_id": "38bf9366-ad76-46bf-9b9a-cc1ca9b35553", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4bb69df1e4e40fd989021075eefa1ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4bb69df1e4e40fd989021075eefa1ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4bb69df1e4e40fd989021075eefa1ff.jpg", "file_size": 17041, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bb69df1e4e40fd989021075eefa1ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bb69df1e4e40fd989021075eefa1ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bb69df1e4e40fd989021075eefa1ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4bb69df1e4e40fd989021075eefa1ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4bb69df1e4e40fd989021075eefa1ff.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4zoLWG893ZIF3YRrj2nMoo7FuI=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.750531+00 2025-12-09 10:15:27.750536+00 14930 1203-3FWF#黄色 SPMX-20240815310129 \N \N \N 1 \N [{"file_id": "5f42cfdd-07eb-4902-ab49-f059b37c6c78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b9cb34845b24752bd1e4f06e322df0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b9cb34845b24752bd1e4f06e322df0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b9cb34845b24752bd1e4f06e322df0d.jpg", "file_size": 8492, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9cb34845b24752bd1e4f06e322df0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9cb34845b24752bd1e4f06e322df0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9cb34845b24752bd1e4f06e322df0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b9cb34845b24752bd1e4f06e322df0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b9cb34845b24752bd1e4f06e322df0d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwDTKzuXTuW4DKnUqbSSyEAOVN8=", "createTime": "2024-08-15 14:58:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.753041+00 2025-12-09 10:15:27.753047+00 14931 LZ1337#童装T1号色 SPMX-20240815310140 \N \N \N 1 \N [{"file_id": "7d6c9bcc-a39d-485e-ba87-2a8929c6b902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "045e4364a87541c3b165d2fc3b8a1dda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "045e4364a87541c3b165d2fc3b8a1dda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "045e4364a87541c3b165d2fc3b8a1dda.jpg", "file_size": 17671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045e4364a87541c3b165d2fc3b8a1dda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045e4364a87541c3b165d2fc3b8a1dda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045e4364a87541c3b165d2fc3b8a1dda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/045e4364a87541c3b165d2fc3b8a1dda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/045e4364a87541c3b165d2fc3b8a1dda.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zkbK49bgxYxKMLAj4fRe5kF3VQ=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.755508+00 2025-12-09 10:15:27.755513+00 14932 JTSS588FW#VS-D3 SPMX-20240815310145 \N \N \N 1 \N [{"file_id": "50af450b-7e3e-4cb5-a76c-abbb1e429d32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "157e993785b344e1aa90d9794d6528a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "157e993785b344e1aa90d9794d6528a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "157e993785b344e1aa90d9794d6528a3.jpg", "file_size": 16008, "is_delete": false, "file_type": 1, "original_file_name": "JTSS588FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157e993785b344e1aa90d9794d6528a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157e993785b344e1aa90d9794d6528a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/157e993785b344e1aa90d9794d6528a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/157e993785b344e1aa90d9794d6528a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/157e993785b344e1aa90d9794d6528a3.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bI0W2rmId82bfBZ91ahyg-uf0Zo=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.757939+00 2025-12-09 10:15:27.757944+00 14933 0006-36FWF#V5曲线 SPMX-20240815310142 \N \N \N 1 \N [{"file_id": "7ca2f769-2aed-4cf7-a00d-5e9b632c724b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5917505bb7db43299a0b96185f2d056e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5917505bb7db43299a0b96185f2d056e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5917505bb7db43299a0b96185f2d056e.jpg", "file_size": 13482, "is_delete": false, "file_type": 1, "original_file_name": "0006-36FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5917505bb7db43299a0b96185f2d056e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5917505bb7db43299a0b96185f2d056e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5917505bb7db43299a0b96185f2d056e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5917505bb7db43299a0b96185f2d056e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5917505bb7db43299a0b96185f2d056e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TnzlMfcO7Dk9SfX5N4oM_LjpwLs=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.760441+00 2025-12-09 10:15:27.760447+00 14934 DL31224#前幅彩兰L SPMX-20240815310143 \N \N \N 1 \N [{"file_id": "383e7194-5e24-4f61-a13c-a151cc022e0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7027cf1effa64b248272cdf027631139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7027cf1effa64b248272cdf027631139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7027cf1effa64b248272cdf027631139.jpg", "file_size": 16263, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7027cf1effa64b248272cdf027631139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7027cf1effa64b248272cdf027631139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7027cf1effa64b248272cdf027631139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7027cf1effa64b248272cdf027631139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7027cf1effa64b248272cdf027631139.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mk5YqIbUqnt1JGJUAK0Ro3h_BnE=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.763021+00 2025-12-09 10:15:27.763027+00 14935 1203-3FWF#黄色捆条 SPMX-20240815310137 \N \N \N 1 \N [{"file_id": "7db34d42-ff7e-433f-8def-d105dddfd461", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "988309a03a5e48faa4ca125a9234f17a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "988309a03a5e48faa4ca125a9234f17a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "988309a03a5e48faa4ca125a9234f17a.jpg", "file_size": 8555, "is_delete": false, "file_type": 1, "original_file_name": "1203-3FWF#黄色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988309a03a5e48faa4ca125a9234f17a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988309a03a5e48faa4ca125a9234f17a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988309a03a5e48faa4ca125a9234f17a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/988309a03a5e48faa4ca125a9234f17a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/988309a03a5e48faa4ca125a9234f17a.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYHmLCHpvaAgpg9GdZb-00iQtys=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.765457+00 2025-12-09 10:15:27.765462+00 14936 FND4158FWE#黑色 VS-D3 SPMX-20240815310141 \N \N \N 1 \N [{"file_id": "57ca462f-8160-4b3a-b7b3-b6871ed92bc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3710ef7373b4a7492e2ceeb3211f871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3710ef7373b4a7492e2ceeb3211f871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3710ef7373b4a7492e2ceeb3211f871.jpg", "file_size": 16409, "is_delete": false, "file_type": 1, "original_file_name": "FND4158FWE#黑色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3710ef7373b4a7492e2ceeb3211f871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3710ef7373b4a7492e2ceeb3211f871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3710ef7373b4a7492e2ceeb3211f871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3710ef7373b4a7492e2ceeb3211f871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3710ef7373b4a7492e2ceeb3211f871.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDjVnFZjB2lvzCZTS13cufP9rrI=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.76802+00 2025-12-09 10:15:27.768025+00 14937 8469-1#黄色 SPMX-20240815310139 \N \N \N 1 \N [{"file_id": "97b54078-b6d0-4be2-ac96-a826b020744a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce76c932be5349d3ab7702435b29e87f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce76c932be5349d3ab7702435b29e87f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce76c932be5349d3ab7702435b29e87f.jpg", "file_size": 22121, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76c932be5349d3ab7702435b29e87f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76c932be5349d3ab7702435b29e87f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76c932be5349d3ab7702435b29e87f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce76c932be5349d3ab7702435b29e87f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce76c932be5349d3ab7702435b29e87f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pzu30faA2WIpj99Z8UwnOtXjXUE=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.770506+00 2025-12-09 10:15:27.770512+00 14938 HTA11#原版色 SPMX-20240815310144 \N \N \N 1 \N [{"file_id": "3e2c6cc5-d716-46d2-98f4-14bf26fe8f35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5cae4aa2344418cbcdef910648769d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5cae4aa2344418cbcdef910648769d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5cae4aa2344418cbcdef910648769d6.jpg", "file_size": 70337, "is_delete": false, "file_type": 1, "original_file_name": "HTA11#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cae4aa2344418cbcdef910648769d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cae4aa2344418cbcdef910648769d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5cae4aa2344418cbcdef910648769d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5cae4aa2344418cbcdef910648769d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5cae4aa2344418cbcdef910648769d6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SaYlk-y7-Tm-HlWEC8uSmVfkAA=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.773009+00 2025-12-09 10:15:27.773015+00 14939 LJH1801-7#紫色 SPMX-20240815310136 \N \N \N 1 \N [{"file_id": "09343bca-47c3-4400-9ea9-5814a71b0272", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "376e2f38af374678a1ec517e836f06fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "376e2f38af374678a1ec517e836f06fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "376e2f38af374678a1ec517e836f06fa.jpg", "file_size": 76182, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376e2f38af374678a1ec517e836f06fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376e2f38af374678a1ec517e836f06fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/376e2f38af374678a1ec517e836f06fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/376e2f38af374678a1ec517e836f06fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/376e2f38af374678a1ec517e836f06fa.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLYrDgLoPqN03qLZHnL2Y2-eVVY=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.775467+00 2025-12-09 10:15:27.775473+00 14940 CABF-35# SPMX-20240815310138 \N \N \N 1 \N [{"file_id": "64a57087-1a83-4d8e-aad2-958007af5c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac59a075e84e4958aca32f15741835c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac59a075e84e4958aca32f15741835c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac59a075e84e4958aca32f15741835c8.jpg", "file_size": 21158, "is_delete": false, "file_type": 1, "original_file_name": "CABF-35#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac59a075e84e4958aca32f15741835c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac59a075e84e4958aca32f15741835c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac59a075e84e4958aca32f15741835c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac59a075e84e4958aca32f15741835c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac59a075e84e4958aca32f15741835c8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9os0VZGRoD7EWYZo0olGtxtT5w=", "createTime": "2024-08-15 14:58:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.78759+00 2025-12-09 10:15:27.787595+00 14945 LJH1801-7#红色 SPMX-20240815310149 \N \N \N 1 \N [{"file_id": "4a281eb9-695e-4d6d-b8c9-a1781afaf06f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abf0284537244bfe97588cfc771d903b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abf0284537244bfe97588cfc771d903b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abf0284537244bfe97588cfc771d903b.jpg", "file_size": 79761, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf0284537244bfe97588cfc771d903b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf0284537244bfe97588cfc771d903b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf0284537244bfe97588cfc771d903b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abf0284537244bfe97588cfc771d903b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abf0284537244bfe97588cfc771d903b.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DEcV7phFXYNrRVqrLJanHdNHwGs=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.777679+00 2025-12-09 10:15:27.777685+00 14941 8469-1#黄色头巾匹布 SPMX-20240815310153 \N \N \N 1 \N [{"file_id": "03bac362-26dc-43c0-b224-e08b13676daf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "560e983e8d3c4af4b5aefb147a2c95a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "560e983e8d3c4af4b5aefb147a2c95a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "560e983e8d3c4af4b5aefb147a2c95a2.jpg", "file_size": 23598, "is_delete": false, "file_type": 1, "original_file_name": "8469-1#黄色头巾匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e983e8d3c4af4b5aefb147a2c95a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e983e8d3c4af4b5aefb147a2c95a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560e983e8d3c4af4b5aefb147a2c95a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/560e983e8d3c4af4b5aefb147a2c95a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/560e983e8d3c4af4b5aefb147a2c95a2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jTKnBxgBl21O3KFYN_nUG-FAH0=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.780187+00 2025-12-09 10:15:27.780193+00 14942 1206FWF#V5曲线 SPMX-20240815310147 \N \N \N 1 \N [{"file_id": "8bdedfb6-b900-43a8-a403-35f81b1d8db5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b176849d879a4c9a857bf1bf85c4b6d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b176849d879a4c9a857bf1bf85c4b6d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b176849d879a4c9a857bf1bf85c4b6d6.jpg", "file_size": 16947, "is_delete": false, "file_type": 1, "original_file_name": "1206FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b176849d879a4c9a857bf1bf85c4b6d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b176849d879a4c9a857bf1bf85c4b6d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b176849d879a4c9a857bf1bf85c4b6d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b176849d879a4c9a857bf1bf85c4b6d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b176849d879a4c9a857bf1bf85c4b6d6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jggLPSz9MMJZsw66TKhgIgsIqUU=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.782672+00 2025-12-09 10:15:27.782677+00 14943 DL31224#前幅彩兰XL SPMX-20240815310154 \N \N \N 1 \N [{"file_id": "00cbc0d1-d6ef-406e-bbe6-72f1f0dfd471", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0fdb4a055834cd48ed2810f16267e7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0fdb4a055834cd48ed2810f16267e7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0fdb4a055834cd48ed2810f16267e7f.jpg", "file_size": 16478, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fdb4a055834cd48ed2810f16267e7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fdb4a055834cd48ed2810f16267e7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fdb4a055834cd48ed2810f16267e7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0fdb4a055834cd48ed2810f16267e7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0fdb4a055834cd48ed2810f16267e7f.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qHGKwEo0tdNHiWU5XNC4kSXrTA0=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.785152+00 2025-12-09 10:15:27.785157+00 14944 CABF-36# SPMX-20240815310148 \N \N \N 1 \N [{"file_id": "236c19ea-aea0-4584-97b0-12fe5ae2e31e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "363f373076b54e56b8eec7ddda8942c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "363f373076b54e56b8eec7ddda8942c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "363f373076b54e56b8eec7ddda8942c5.jpg", "file_size": 13192, "is_delete": false, "file_type": 1, "original_file_name": "CABF-36#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363f373076b54e56b8eec7ddda8942c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363f373076b54e56b8eec7ddda8942c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363f373076b54e56b8eec7ddda8942c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/363f373076b54e56b8eec7ddda8942c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/363f373076b54e56b8eec7ddda8942c5.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EwA8qByoobnKSLfJQJT2O06PMI=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.79091+00 2025-12-09 10:15:27.790917+00 14946 23-2126#A4-领子4XL SPMX-20240815310146 \N \N \N 1 \N [{"file_id": "1184e04d-4f6d-420c-9118-cbdcb47215e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dc8f9eefa1d4ee49451c53e434862cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dc8f9eefa1d4ee49451c53e434862cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dc8f9eefa1d4ee49451c53e434862cf.jpg", "file_size": 14197, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc8f9eefa1d4ee49451c53e434862cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc8f9eefa1d4ee49451c53e434862cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc8f9eefa1d4ee49451c53e434862cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dc8f9eefa1d4ee49451c53e434862cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dc8f9eefa1d4ee49451c53e434862cf.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:louJ-C0ZnGkzQjFAYbsIdjQImFY=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.794474+00 2025-12-09 10:15:27.79448+00 14947 LZ1337#童装T2号色 SPMX-20240815310155 \N \N \N 1 \N [{"file_id": "77875e8c-826a-45f7-8b44-3155d8b81694", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf4b9f0f411c429d8b8df9c5b804d943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf4b9f0f411c429d8b8df9c5b804d943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf4b9f0f411c429d8b8df9c5b804d943.jpg", "file_size": 18815, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4b9f0f411c429d8b8df9c5b804d943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4b9f0f411c429d8b8df9c5b804d943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4b9f0f411c429d8b8df9c5b804d943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf4b9f0f411c429d8b8df9c5b804d943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf4b9f0f411c429d8b8df9c5b804d943.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_TWFrcX7vZ8QIB_vYbamJXYbsU=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.797269+00 2025-12-09 10:15:27.797273+00 14948 0006-37FWE#VS-D3 SPMX-20240815310152 \N \N \N 1 \N [{"file_id": "65cd4357-13e3-49a7-8aca-3caf78a29ede", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dde89c9a31464fa49ec85a00fbd9f0eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dde89c9a31464fa49ec85a00fbd9f0eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dde89c9a31464fa49ec85a00fbd9f0eb.jpg", "file_size": 20366, "is_delete": false, "file_type": 1, "original_file_name": "0006-37FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dde89c9a31464fa49ec85a00fbd9f0eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dde89c9a31464fa49ec85a00fbd9f0eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dde89c9a31464fa49ec85a00fbd9f0eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dde89c9a31464fa49ec85a00fbd9f0eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dde89c9a31464fa49ec85a00fbd9f0eb.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQ2To_Iiyg9oWYQNIFP5eyLpCeg=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.799569+00 2025-12-09 10:15:27.799574+00 14949 FND6FWE#妈妈装-咖啡色 SPMX-20240815310151 \N \N \N 1 \N [{"file_id": "c2766b15-6305-4068-bfae-7a52631a702f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93272d5101c94280b4d94e525ed833d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93272d5101c94280b4d94e525ed833d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93272d5101c94280b4d94e525ed833d9.jpg", "file_size": 20594, "is_delete": false, "file_type": 1, "original_file_name": "FND6FWE#妈妈装-咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93272d5101c94280b4d94e525ed833d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93272d5101c94280b4d94e525ed833d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93272d5101c94280b4d94e525ed833d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93272d5101c94280b4d94e525ed833d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93272d5101c94280b4d94e525ed833d9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:52Tv6B6qzpoE2VTMZjxEyuJDSzE=", "createTime": "2024-08-15 14:58:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.801672+00 2025-12-09 10:15:27.801678+00 14950 LJH1801-7#绿色 SPMX-20240815310162 \N \N \N 1 \N [{"file_id": "855bb9fd-3b77-488b-81bb-ec33495d5004", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5477e535a44a41c6a6241695341ccc48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5477e535a44a41c6a6241695341ccc48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5477e535a44a41c6a6241695341ccc48.jpg", "file_size": 72166, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-7#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5477e535a44a41c6a6241695341ccc48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5477e535a44a41c6a6241695341ccc48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5477e535a44a41c6a6241695341ccc48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5477e535a44a41c6a6241695341ccc48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5477e535a44a41c6a6241695341ccc48.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLmQPqYuEdt7MiHd95nn1JPvSZo=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.803854+00 2025-12-09 10:15:27.803858+00 14951 JTSS589FW#VS-D3 SPMX-20240815310156 \N \N \N 1 \N [{"file_id": "6a618a7b-e170-45c7-8bd0-794f90373e88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af2ec80b11de450192486c57f4dfe573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af2ec80b11de450192486c57f4dfe573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af2ec80b11de450192486c57f4dfe573.jpg", "file_size": 7136, "is_delete": false, "file_type": 1, "original_file_name": "JTSS589FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ec80b11de450192486c57f4dfe573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ec80b11de450192486c57f4dfe573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af2ec80b11de450192486c57f4dfe573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af2ec80b11de450192486c57f4dfe573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af2ec80b11de450192486c57f4dfe573.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anKue2P8Md-hnUuEM4Lb_ihn4SE=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.806166+00 2025-12-09 10:15:27.80617+00 14952 0006-37FWF#灰色 SPMX-20240815310166 \N \N \N 1 \N [{"file_id": "d6d79509-96a5-4df1-aa44-ecab02287eb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5251c8d8e60f4c5d920eef83f2010d95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5251c8d8e60f4c5d920eef83f2010d95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5251c8d8e60f4c5d920eef83f2010d95.jpg", "file_size": 14801, "is_delete": false, "file_type": 1, "original_file_name": "0006-37FWF#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5251c8d8e60f4c5d920eef83f2010d95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5251c8d8e60f4c5d920eef83f2010d95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5251c8d8e60f4c5d920eef83f2010d95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5251c8d8e60f4c5d920eef83f2010d95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5251c8d8e60f4c5d920eef83f2010d95.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rj_equOg2RgiByw5MDIU52lOZXs=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.80848+00 2025-12-09 10:15:27.808485+00 14953 HTA11#彩蓝 SPMX-20240815310157 \N \N \N 1 \N [{"file_id": "4fa85504-6007-44b7-8d8e-ffd951db8a76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d69b9909f20474ea18847f40cc9bb45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d69b9909f20474ea18847f40cc9bb45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d69b9909f20474ea18847f40cc9bb45.jpg", "file_size": 70811, "is_delete": false, "file_type": 1, "original_file_name": "HTA11#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69b9909f20474ea18847f40cc9bb45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69b9909f20474ea18847f40cc9bb45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69b9909f20474ea18847f40cc9bb45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d69b9909f20474ea18847f40cc9bb45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d69b9909f20474ea18847f40cc9bb45.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J3g9y4GhOObT0tY12fKq9UTLpEA=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.810791+00 2025-12-09 10:15:27.810796+00 14954 FND6FWE#妈妈装-橙色 SPMX-20240815310158 \N \N \N 1 \N [{"file_id": "55f9449c-6dad-48b5-8f94-f827445ee8ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce030c85b5f6472988a7fa7e8c2cf663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce030c85b5f6472988a7fa7e8c2cf663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce030c85b5f6472988a7fa7e8c2cf663.jpg", "file_size": 20454, "is_delete": false, "file_type": 1, "original_file_name": "FND6FWE#妈妈装-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce030c85b5f6472988a7fa7e8c2cf663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce030c85b5f6472988a7fa7e8c2cf663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce030c85b5f6472988a7fa7e8c2cf663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce030c85b5f6472988a7fa7e8c2cf663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce030c85b5f6472988a7fa7e8c2cf663.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tAynU10x8zM5CQoMq-2xhhpoIys=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.812896+00 2025-12-09 10:15:27.8129+00 14955 84910##白色 SPMX-20240815310161 \N \N \N 1 \N [{"file_id": "14dcf24d-df0d-40bd-9b80-dcc833bf7682", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "638c91f210f64334866d2c9df8ea61f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "638c91f210f64334866d2c9df8ea61f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "638c91f210f64334866d2c9df8ea61f1.jpg", "file_size": 76015, "is_delete": false, "file_type": 1, "original_file_name": "84910##白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638c91f210f64334866d2c9df8ea61f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638c91f210f64334866d2c9df8ea61f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/638c91f210f64334866d2c9df8ea61f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/638c91f210f64334866d2c9df8ea61f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/638c91f210f64334866d2c9df8ea61f1.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VB1QeTMPrhhVj47DGF57iGqrlHY=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.815217+00 2025-12-09 10:15:27.815221+00 14956 DL31224#前幅枣红2XL SPMX-20240815310163 \N \N \N 1 \N [{"file_id": "3a2c9cef-b79e-4dbc-9918-0ae0dcca1712", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510174dec54c45f6936b819613415017.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510174dec54c45f6936b819613415017.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510174dec54c45f6936b819613415017.jpg", "file_size": 17083, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅枣红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510174dec54c45f6936b819613415017.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510174dec54c45f6936b819613415017.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510174dec54c45f6936b819613415017.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510174dec54c45f6936b819613415017.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510174dec54c45f6936b819613415017.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OehoAhkM1dmlCuC3tGl-EeWaDwo=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.817581+00 2025-12-09 10:15:27.817585+00 14957 LZ1337#童装T3号色 SPMX-20240815310164 \N \N \N 1 \N [{"file_id": "167a9929-8165-47f3-994c-61db20448ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e52642a41147ffa238f9bb95ad77fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e52642a41147ffa238f9bb95ad77fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e52642a41147ffa238f9bb95ad77fd.jpg", "file_size": 18768, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e52642a41147ffa238f9bb95ad77fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e52642a41147ffa238f9bb95ad77fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e52642a41147ffa238f9bb95ad77fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e52642a41147ffa238f9bb95ad77fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e52642a41147ffa238f9bb95ad77fd.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yyr-ti2qrjXQaUn1qD5VJ6WUIJ0=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.820032+00 2025-12-09 10:15:27.820037+00 14958 JTSS590FW#粉VS-D3 SPMX-20240815310167 \N \N \N 1 \N [{"file_id": "a8963919-0524-4fda-8bb9-ce82f00513a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg", "file_size": 17056, "is_delete": false, "file_type": 1, "original_file_name": "JTSS590FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bfce6dfb3ea42ed8ee8b4d97e9a224d.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4JIfshCJYiTRX7_07y37A6TwAIs=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.822573+00 2025-12-09 10:15:27.822579+00 14959 1207FWF#V5曲线 SPMX-20240815310165 \N \N \N 1 \N [{"file_id": "fff731df-be5c-4bba-a842-24822bf72a8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6df8773ea96b45c4bad93dc24d6a7d09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6df8773ea96b45c4bad93dc24d6a7d09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6df8773ea96b45c4bad93dc24d6a7d09.jpg", "file_size": 12739, "is_delete": false, "file_type": 1, "original_file_name": "1207FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df8773ea96b45c4bad93dc24d6a7d09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df8773ea96b45c4bad93dc24d6a7d09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6df8773ea96b45c4bad93dc24d6a7d09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6df8773ea96b45c4bad93dc24d6a7d09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6df8773ea96b45c4bad93dc24d6a7d09.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J168AoabfO-Hoj_QMdcVKfSq1Mg=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.82514+00 2025-12-09 10:15:27.825147+00 14960 HTA11#绿色 SPMX-20240815310168 \N \N \N 1 \N [{"file_id": "f4c4b314-d2a7-45b6-b2fe-328c9a61c88e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f3bf39c4c10434e98d68658338bb2d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f3bf39c4c10434e98d68658338bb2d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f3bf39c4c10434e98d68658338bb2d8.jpg", "file_size": 68689, "is_delete": false, "file_type": 1, "original_file_name": "HTA11#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3bf39c4c10434e98d68658338bb2d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3bf39c4c10434e98d68658338bb2d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f3bf39c4c10434e98d68658338bb2d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f3bf39c4c10434e98d68658338bb2d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f3bf39c4c10434e98d68658338bb2d8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcD8zCeAUIquLG83gd4nJpbH57c=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.827625+00 2025-12-09 10:15:27.82763+00 14961 23-2126#A5-3XL SPMX-20240815310159 \N \N \N 1 \N [{"file_id": "b3eca360-cac7-4a80-8631-d0cb6e3ccf26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a09e4b90bcb4f9f9cce974235d85411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a09e4b90bcb4f9f9cce974235d85411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a09e4b90bcb4f9f9cce974235d85411.jpg", "file_size": 18258, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a09e4b90bcb4f9f9cce974235d85411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a09e4b90bcb4f9f9cce974235d85411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a09e4b90bcb4f9f9cce974235d85411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a09e4b90bcb4f9f9cce974235d85411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a09e4b90bcb4f9f9cce974235d85411.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NPchPm_L_wP0DTqXJwKIVUtBts=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.830099+00 2025-12-09 10:15:27.830106+00 14962 CABF-37# SPMX-20240815310160 \N \N \N 1 \N [{"file_id": "f2bf3292-3d13-4e53-a0cc-2f978cde9ea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60162d1433d44d63a3f665a000248e78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60162d1433d44d63a3f665a000248e78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60162d1433d44d63a3f665a000248e78.jpg", "file_size": 12441, "is_delete": false, "file_type": 1, "original_file_name": "CABF-37#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60162d1433d44d63a3f665a000248e78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60162d1433d44d63a3f665a000248e78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60162d1433d44d63a3f665a000248e78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60162d1433d44d63a3f665a000248e78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60162d1433d44d63a3f665a000248e78.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8xl6q_XsPEtsL87miwKR-potgWM=", "createTime": "2024-08-15 14:58:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.832537+00 2025-12-09 10:15:27.832543+00 14963 DL31224#前幅枣红L SPMX-20240815310174 \N \N \N 1 \N [{"file_id": "fd12fc3c-36c4-4d5c-b3a8-0f8a3da8aa36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a41a561f6e242c7aa7b208ea975c3f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a41a561f6e242c7aa7b208ea975c3f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a41a561f6e242c7aa7b208ea975c3f0.jpg", "file_size": 16211, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41a561f6e242c7aa7b208ea975c3f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41a561f6e242c7aa7b208ea975c3f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41a561f6e242c7aa7b208ea975c3f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a41a561f6e242c7aa7b208ea975c3f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a41a561f6e242c7aa7b208ea975c3f0.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUPyHEaAfd2MrpbjczCL9tXHfXk=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.834995+00 2025-12-09 10:15:27.835001+00 14964 23-2126#A5-4XL SPMX-20240815310169 \N \N \N 1 \N [{"file_id": "892f5b6a-ab8b-454f-b058-4f7e0014c327", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a98d3f07f69e4424806fc3809ea22df6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a98d3f07f69e4424806fc3809ea22df6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a98d3f07f69e4424806fc3809ea22df6.jpg", "file_size": 17492, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98d3f07f69e4424806fc3809ea22df6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98d3f07f69e4424806fc3809ea22df6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98d3f07f69e4424806fc3809ea22df6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a98d3f07f69e4424806fc3809ea22df6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a98d3f07f69e4424806fc3809ea22df6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-bjfVU4N8YeUgjON2QdBxlER1Q=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.837473+00 2025-12-09 10:15:27.837479+00 14965 0006-37FWF#黄色 SPMX-20240815310178 \N \N \N 1 \N [{"file_id": "f87ea71c-5e5f-43dd-9d2c-2297ac8838db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f03f24923f4fd79856a77c34fef5a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f03f24923f4fd79856a77c34fef5a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f03f24923f4fd79856a77c34fef5a9.jpg", "file_size": 17428, "is_delete": false, "file_type": 1, "original_file_name": "0006-37FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f03f24923f4fd79856a77c34fef5a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f03f24923f4fd79856a77c34fef5a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f03f24923f4fd79856a77c34fef5a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f03f24923f4fd79856a77c34fef5a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f03f24923f4fd79856a77c34fef5a9.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DU3l0pX4GtN8DiLB10LW0mcS014=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.839903+00 2025-12-09 10:15:27.839909+00 14966 FND6FWE#妈妈装-蓝色 SPMX-20240815310170 \N \N \N 1 \N [{"file_id": "977db1e1-f460-49d5-bca6-eb599ed7c17a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81a9fece38eb46f482ece9b8103462c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81a9fece38eb46f482ece9b8103462c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81a9fece38eb46f482ece9b8103462c4.jpg", "file_size": 20269, "is_delete": false, "file_type": 1, "original_file_name": "FND6FWE#妈妈装-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a9fece38eb46f482ece9b8103462c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a9fece38eb46f482ece9b8103462c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a9fece38eb46f482ece9b8103462c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81a9fece38eb46f482ece9b8103462c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81a9fece38eb46f482ece9b8103462c4.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrpM6DvIzVLIi_td5QBiqHP62w0=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.842101+00 2025-12-09 10:15:27.842106+00 14967 HTA15#原版色 SPMX-20240815310180 \N \N \N 1 \N [{"file_id": "d3635ea9-2da1-4aab-80f7-1222be38fe91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f7a8b3d74244a7891ed3960822d1277.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f7a8b3d74244a7891ed3960822d1277.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f7a8b3d74244a7891ed3960822d1277.jpg", "file_size": 40553, "is_delete": false, "file_type": 1, "original_file_name": "HTA15#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7a8b3d74244a7891ed3960822d1277.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7a8b3d74244a7891ed3960822d1277.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7a8b3d74244a7891ed3960822d1277.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f7a8b3d74244a7891ed3960822d1277.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f7a8b3d74244a7891ed3960822d1277.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdisM3owVubLw2622k4RPTYPoVA=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.844546+00 2025-12-09 10:15:27.844552+00 14968 LJH1801-9#兰色 SPMX-20240815310173 \N \N \N 1 \N [{"file_id": "dd0d4a85-74a3-4041-8901-16567be31890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2be182e1235e42b88e9226fe0d2e5c0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2be182e1235e42b88e9226fe0d2e5c0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2be182e1235e42b88e9226fe0d2e5c0e.jpg", "file_size": 67531, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-9#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be182e1235e42b88e9226fe0d2e5c0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be182e1235e42b88e9226fe0d2e5c0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be182e1235e42b88e9226fe0d2e5c0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2be182e1235e42b88e9226fe0d2e5c0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2be182e1235e42b88e9226fe0d2e5c0e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pQPXhITeQL8b3ZJGErnEySgDZI=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.846971+00 2025-12-09 10:15:27.846976+00 14969 23-2126#A5-领子3XL SPMX-20240815310179 \N \N \N 1 \N [{"file_id": "d3259d73-ccee-4617-aaf1-2de84d38b32e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c180249285447ffa875de273a292952.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c180249285447ffa875de273a292952.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c180249285447ffa875de273a292952.jpg", "file_size": 13527, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c180249285447ffa875de273a292952.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c180249285447ffa875de273a292952.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c180249285447ffa875de273a292952.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c180249285447ffa875de273a292952.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c180249285447ffa875de273a292952.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IhvQzfmeXlGXtS8EfEpvbMlEI8o=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.849171+00 2025-12-09 10:15:27.849177+00 14970 1208FWF#土黄 SPMX-20240815310177 \N \N \N 1 \N [{"file_id": "a94d2fe1-12d6-4395-9106-6ad55eb5f56c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f2f9d7798d9498aa3ab28f24cc4593e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f2f9d7798d9498aa3ab28f24cc4593e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f2f9d7798d9498aa3ab28f24cc4593e.jpg", "file_size": 17914, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2f9d7798d9498aa3ab28f24cc4593e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2f9d7798d9498aa3ab28f24cc4593e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f2f9d7798d9498aa3ab28f24cc4593e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f2f9d7798d9498aa3ab28f24cc4593e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f2f9d7798d9498aa3ab28f24cc4593e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4YVNWouDLy4tjQ4iHVTn0Lx5z8=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.851566+00 2025-12-09 10:15:27.851572+00 14971 CABF-38# SPMX-20240815310171 \N \N \N 1 \N [{"file_id": "319dcedb-7a9b-4164-8049-edf3a9a74ab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e908828b92f4bc58339792abd07ead2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e908828b92f4bc58339792abd07ead2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e908828b92f4bc58339792abd07ead2.jpg", "file_size": 19321, "is_delete": false, "file_type": 1, "original_file_name": "CABF-38#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e908828b92f4bc58339792abd07ead2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e908828b92f4bc58339792abd07ead2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e908828b92f4bc58339792abd07ead2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e908828b92f4bc58339792abd07ead2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e908828b92f4bc58339792abd07ead2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h25T4ry4Na2rxkP3wvL_axp8src=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.854057+00 2025-12-09 10:15:27.854062+00 14972 84910#白色 SPMX-20240815310172 \N \N \N 1 \N [{"file_id": "e1374e0a-277d-4016-a085-8c9317a15a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dfeb111201242e68ffd708501ec7d08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dfeb111201242e68ffd708501ec7d08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dfeb111201242e68ffd708501ec7d08.jpg", "file_size": 74807, "is_delete": false, "file_type": 1, "original_file_name": "84910#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb111201242e68ffd708501ec7d08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb111201242e68ffd708501ec7d08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb111201242e68ffd708501ec7d08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb111201242e68ffd708501ec7d08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dfeb111201242e68ffd708501ec7d08.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruuDvY-zGyPF5sXPcJtc5X4iWZE=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.856746+00 2025-12-09 10:15:27.856752+00 14973 LZ1337#童装T4号色 SPMX-20240815310175 \N \N \N 1 \N [{"file_id": "efb1cd81-bb85-41c7-9f37-5b482c8d0072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c2bd4fbb4bb4044bd0518aa3600dcec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c2bd4fbb4bb4044bd0518aa3600dcec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c2bd4fbb4bb4044bd0518aa3600dcec.jpg", "file_size": 16359, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c2bd4fbb4bb4044bd0518aa3600dcec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c2bd4fbb4bb4044bd0518aa3600dcec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c2bd4fbb4bb4044bd0518aa3600dcec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c2bd4fbb4bb4044bd0518aa3600dcec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c2bd4fbb4bb4044bd0518aa3600dcec.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nL8wwf5ewGgijj6lUjIJ79ldJKU=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.859133+00 2025-12-09 10:15:27.859138+00 14974 JTSS590FW#黄VS-D3 SPMX-20240815310176 \N \N \N 1 \N [{"file_id": "eb0e6713-d119-4ab2-bf89-ea2345752afe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ee564d14e94c9c873c1943fa686163.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ee564d14e94c9c873c1943fa686163.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ee564d14e94c9c873c1943fa686163.jpg", "file_size": 17884, "is_delete": false, "file_type": 1, "original_file_name": "JTSS590FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee564d14e94c9c873c1943fa686163.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee564d14e94c9c873c1943fa686163.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ee564d14e94c9c873c1943fa686163.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ee564d14e94c9c873c1943fa686163.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ee564d14e94c9c873c1943fa686163.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkNNGCAJlMdGwvBxRrC3aSPNF2g=", "createTime": "2024-08-15 14:58:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.861222+00 2025-12-09 10:15:27.861227+00 14975 DL31224#前幅枣红XL SPMX-20240815310183 \N \N \N 1 \N [{"file_id": "e2b55047-bc0e-4f10-af4e-bdbcfc773529", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f93e890be7b04be7a437a99649f91472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f93e890be7b04be7a437a99649f91472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f93e890be7b04be7a437a99649f91472.jpg", "file_size": 16873, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93e890be7b04be7a437a99649f91472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93e890be7b04be7a437a99649f91472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f93e890be7b04be7a437a99649f91472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f93e890be7b04be7a437a99649f91472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f93e890be7b04be7a437a99649f91472.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IcZrS277D7Wum4NTtbtr9Rwcm-c=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.863548+00 2025-12-09 10:15:27.863553+00 14976 CABF-40# SPMX-20240815310182 \N \N \N 1 \N [{"file_id": "24b2b059-00dc-4fdc-9324-046aca42c0fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43720ce7b4a241ca8b60965e47c193f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43720ce7b4a241ca8b60965e47c193f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43720ce7b4a241ca8b60965e47c193f8.jpg", "file_size": 14309, "is_delete": false, "file_type": 1, "original_file_name": "CABF-40#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43720ce7b4a241ca8b60965e47c193f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43720ce7b4a241ca8b60965e47c193f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43720ce7b4a241ca8b60965e47c193f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43720ce7b4a241ca8b60965e47c193f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43720ce7b4a241ca8b60965e47c193f8.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7YA7UfTVPfB4UqMJq0PpH24JGw=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.865831+00 2025-12-09 10:15:27.865834+00 14977 JTSS591FW#VS-D3 SPMX-20240815310185 \N \N \N 1 \N [{"file_id": "578d8726-a333-4629-a714-c53f6204fc97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "255b70b4c0134bdf881056738bd20631.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "255b70b4c0134bdf881056738bd20631.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "255b70b4c0134bdf881056738bd20631.jpg", "file_size": 11501, "is_delete": false, "file_type": 1, "original_file_name": "JTSS591FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255b70b4c0134bdf881056738bd20631.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255b70b4c0134bdf881056738bd20631.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255b70b4c0134bdf881056738bd20631.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/255b70b4c0134bdf881056738bd20631.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/255b70b4c0134bdf881056738bd20631.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:erTz5-A_fbfXqJiKcyU1lFFJZCI=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.868158+00 2025-12-09 10:15:27.868163+00 14978 DL31224#前幅浅粉2XL SPMX-20240815310193 \N \N \N 1 \N [{"file_id": "7c093ebc-4838-45b7-9a35-394cc9aa4b25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52d95a586ad341af906b11805cf17026.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52d95a586ad341af906b11805cf17026.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52d95a586ad341af906b11805cf17026.jpg", "file_size": 16450, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅浅粉2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d95a586ad341af906b11805cf17026.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d95a586ad341af906b11805cf17026.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d95a586ad341af906b11805cf17026.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52d95a586ad341af906b11805cf17026.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52d95a586ad341af906b11805cf17026.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRc0hdvtdt1iASiYIsFv9a_7ols=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.870217+00 2025-12-09 10:15:27.870222+00 14979 0006-38FWE#VS-D3 SPMX-20240815310189 \N \N \N 1 \N [{"file_id": "ae01d047-9ebf-4908-a997-aaff77e267ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35fd81d72faa475e8866838df22fee9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35fd81d72faa475e8866838df22fee9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35fd81d72faa475e8866838df22fee9e.jpg", "file_size": 19765, "is_delete": false, "file_type": 1, "original_file_name": "0006-38FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fd81d72faa475e8866838df22fee9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fd81d72faa475e8866838df22fee9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fd81d72faa475e8866838df22fee9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35fd81d72faa475e8866838df22fee9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35fd81d72faa475e8866838df22fee9e.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkq9Vt0GWvtd_dvIC7N4o2IC6Og=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.872273+00 2025-12-09 10:15:27.872277+00 14980 84910#粉色 SPMX-20240815310186 \N \N \N 1 \N [{"file_id": "63ee2197-619a-4324-b0a2-ff10e07a69cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ad0775d994b4a2cb0cf5805960c1ac2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ad0775d994b4a2cb0cf5805960c1ac2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ad0775d994b4a2cb0cf5805960c1ac2.jpg", "file_size": 73102, "is_delete": false, "file_type": 1, "original_file_name": "84910#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad0775d994b4a2cb0cf5805960c1ac2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad0775d994b4a2cb0cf5805960c1ac2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad0775d994b4a2cb0cf5805960c1ac2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ad0775d994b4a2cb0cf5805960c1ac2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ad0775d994b4a2cb0cf5805960c1ac2.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X54YQpUY_Nrf0lDTmsukdnFmrBI=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.874349+00 2025-12-09 10:15:27.874353+00 14981 FND6FWE#妈妈装-金黄 SPMX-20240815310181 \N \N \N 1 \N [{"file_id": "ff3b4102-1091-4e31-a3e7-a39d1d364274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "244ced85e27e4afea72e003573303e04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "244ced85e27e4afea72e003573303e04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "244ced85e27e4afea72e003573303e04.jpg", "file_size": 20031, "is_delete": false, "file_type": 1, "original_file_name": "FND6FWE#妈妈装-金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244ced85e27e4afea72e003573303e04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244ced85e27e4afea72e003573303e04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/244ced85e27e4afea72e003573303e04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/244ced85e27e4afea72e003573303e04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/244ced85e27e4afea72e003573303e04.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMpdqYwcQCKMthkdIRBEYDhDNcM=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.876651+00 2025-12-09 10:15:27.876655+00 14982 CABF-41# SPMX-20240815310192 \N \N \N 1 \N [{"file_id": "e4ed4f92-2f82-4c9f-8284-cac8f4210fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb4d9697850940beac1dbc15b7e7e6c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb4d9697850940beac1dbc15b7e7e6c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb4d9697850940beac1dbc15b7e7e6c6.jpg", "file_size": 13981, "is_delete": false, "file_type": 1, "original_file_name": "CABF-41#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d9697850940beac1dbc15b7e7e6c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d9697850940beac1dbc15b7e7e6c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4d9697850940beac1dbc15b7e7e6c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb4d9697850940beac1dbc15b7e7e6c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb4d9697850940beac1dbc15b7e7e6c6.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cKiMVi63bBHT7Xw9M-4XwEVKx4=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:27.87882+00 2025-12-09 10:15:27.878824+00 14983 23-2126#A5-领子4XL SPMX-20240815310190 \N \N \N 1 \N [{"file_id": "1d454396-ee5f-4e07-9b90-1f65d68b0c76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59fda2968e7c4058b7576daf0bd32e03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59fda2968e7c4058b7576daf0bd32e03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59fda2968e7c4058b7576daf0bd32e03.jpg", "file_size": 13550, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59fda2968e7c4058b7576daf0bd32e03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59fda2968e7c4058b7576daf0bd32e03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59fda2968e7c4058b7576daf0bd32e03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59fda2968e7c4058b7576daf0bd32e03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59fda2968e7c4058b7576daf0bd32e03.jpg?e=1765361726&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ApUV68nIsBlyoHRWRWsMULoMCKk=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.477437+00 2025-12-09 10:15:28.477449+00 14984 LJH1801-9#粉色 SPMX-20240815310184 \N \N \N 1 \N [{"file_id": "121206a1-7fc5-4137-9ecd-f4f40444b925", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80a8d16c2d754932880a629c73bd20b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80a8d16c2d754932880a629c73bd20b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80a8d16c2d754932880a629c73bd20b3.jpg", "file_size": 66616, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-9#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8d16c2d754932880a629c73bd20b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8d16c2d754932880a629c73bd20b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80a8d16c2d754932880a629c73bd20b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80a8d16c2d754932880a629c73bd20b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80a8d16c2d754932880a629c73bd20b3.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZAcOgj4xU7_ntQqBB_riLw_k7k=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.486766+00 2025-12-09 10:15:28.486778+00 14985 JTSS592FW#VS-D3 SPMX-20240815310194 \N \N \N 1 \N [{"file_id": "8fcc9bae-cf2e-461a-82c9-62f6500cc850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77df945f48fd4c9e85c93688a2517a21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77df945f48fd4c9e85c93688a2517a21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77df945f48fd4c9e85c93688a2517a21.jpg", "file_size": 9401, "is_delete": false, "file_type": 1, "original_file_name": "JTSS592FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77df945f48fd4c9e85c93688a2517a21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77df945f48fd4c9e85c93688a2517a21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77df945f48fd4c9e85c93688a2517a21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77df945f48fd4c9e85c93688a2517a21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77df945f48fd4c9e85c93688a2517a21.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6261hVz-zEW-megcrYu7qrCoEso=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.489645+00 2025-12-09 10:15:28.489651+00 14986 1208FWF#墨绿 SPMX-20240815310188 \N \N \N 1 \N [{"file_id": "81ba1f77-ad27-414f-bca0-e7bdb6342f14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa4d3ded9afe4dc1b23a751c858f6caa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa4d3ded9afe4dc1b23a751c858f6caa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa4d3ded9afe4dc1b23a751c858f6caa.jpg", "file_size": 17227, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4d3ded9afe4dc1b23a751c858f6caa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4d3ded9afe4dc1b23a751c858f6caa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa4d3ded9afe4dc1b23a751c858f6caa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa4d3ded9afe4dc1b23a751c858f6caa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa4d3ded9afe4dc1b23a751c858f6caa.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kf7jfFdODBjcq2N_F-sINh5JWcg=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.492488+00 2025-12-09 10:15:28.492494+00 14987 LZ1337#童装T5号色 SPMX-20240815310187 \N \N \N 1 \N [{"file_id": "571def34-6849-4135-ae53-dc4b1d5a0ba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fec30b06c9e444248e75bf32fa80dd01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fec30b06c9e444248e75bf32fa80dd01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fec30b06c9e444248e75bf32fa80dd01.jpg", "file_size": 17289, "is_delete": false, "file_type": 1, "original_file_name": "LZ1337#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec30b06c9e444248e75bf32fa80dd01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec30b06c9e444248e75bf32fa80dd01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec30b06c9e444248e75bf32fa80dd01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fec30b06c9e444248e75bf32fa80dd01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fec30b06c9e444248e75bf32fa80dd01.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9wYoyQlSz_PBC-0Q9VD3WxZNON0=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.495001+00 2025-12-09 10:15:28.495007+00 14988 HTA15#彩蓝 SPMX-20240815310191 \N \N \N 1 \N [{"file_id": "4919c028-99e4-4f56-91c6-8006e37d9510", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f43d435cc49f48d8a27d6c48f015a4dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f43d435cc49f48d8a27d6c48f015a4dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f43d435cc49f48d8a27d6c48f015a4dd.jpg", "file_size": 41627, "is_delete": false, "file_type": 1, "original_file_name": "HTA15#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43d435cc49f48d8a27d6c48f015a4dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43d435cc49f48d8a27d6c48f015a4dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43d435cc49f48d8a27d6c48f015a4dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f43d435cc49f48d8a27d6c48f015a4dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f43d435cc49f48d8a27d6c48f015a4dd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xY13jAG3x88U9pCOH5vQ04ZIe8=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.49748+00 2025-12-09 10:15:28.497486+00 14989 LZ1338#上身1号色 SPMX-20240815310197 \N \N \N 1 \N [{"file_id": "9de6487b-26b8-4658-af00-513a2857e7b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b91c777fbdd4bfa94739d8fce023245.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b91c777fbdd4bfa94739d8fce023245.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b91c777fbdd4bfa94739d8fce023245.jpg", "file_size": 19297, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91c777fbdd4bfa94739d8fce023245.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91c777fbdd4bfa94739d8fce023245.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91c777fbdd4bfa94739d8fce023245.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b91c777fbdd4bfa94739d8fce023245.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b91c777fbdd4bfa94739d8fce023245.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pSENvLO6r9-mWOL1Ev4I5fLTaDA=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.499914+00 2025-12-09 10:15:28.499919+00 14990 0006-38FWF#粉色 SPMX-20240815310198 \N \N \N 1 \N [{"file_id": "035ff782-ff63-448d-a0cd-511d9543cd88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee53a3e22f8446469a64c7023fc99225.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee53a3e22f8446469a64c7023fc99225.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee53a3e22f8446469a64c7023fc99225.jpg", "file_size": 18549, "is_delete": false, "file_type": 1, "original_file_name": "0006-38FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee53a3e22f8446469a64c7023fc99225.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee53a3e22f8446469a64c7023fc99225.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee53a3e22f8446469a64c7023fc99225.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee53a3e22f8446469a64c7023fc99225.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee53a3e22f8446469a64c7023fc99225.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aUb7p0BSNzwk5006AHXG4-OWm1I=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.502083+00 2025-12-09 10:15:28.502088+00 14991 23-2126#A6-3XL SPMX-20240815310201 \N \N \N 1 \N [{"file_id": "9c585f66-50c7-4c0d-a272-125af9ffa02c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c9e4d932b034116ad2651da9972dcb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c9e4d932b034116ad2651da9972dcb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c9e4d932b034116ad2651da9972dcb0.jpg", "file_size": 18522, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9e4d932b034116ad2651da9972dcb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9e4d932b034116ad2651da9972dcb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9e4d932b034116ad2651da9972dcb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c9e4d932b034116ad2651da9972dcb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c9e4d932b034116ad2651da9972dcb0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4y1YUa4arPw1oboxB-s7tf_62t4=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.504536+00 2025-12-09 10:15:28.504541+00 14992 84910#绿色 SPMX-20240815310199 \N \N \N 1 \N [{"file_id": "e64b9826-a367-426a-a48d-954d81e20dd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2835fcf38dc741608e806ebdaebf198a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2835fcf38dc741608e806ebdaebf198a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2835fcf38dc741608e806ebdaebf198a.jpg", "file_size": 72200, "is_delete": false, "file_type": 1, "original_file_name": "84910#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2835fcf38dc741608e806ebdaebf198a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2835fcf38dc741608e806ebdaebf198a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2835fcf38dc741608e806ebdaebf198a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2835fcf38dc741608e806ebdaebf198a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2835fcf38dc741608e806ebdaebf198a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQvwE3FDXD7xiKwhjbZhHMj6lXs=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.507+00 2025-12-09 10:15:28.507006+00 14993 23-2126#A6-4XL SPMX-20240815310210 \N \N \N 1 \N [{"file_id": "576e8243-3c61-4f98-9b90-197cb1f56e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe89bf2ae5074d419db5d8640bb4d530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe89bf2ae5074d419db5d8640bb4d530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe89bf2ae5074d419db5d8640bb4d530.jpg", "file_size": 17160, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe89bf2ae5074d419db5d8640bb4d530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe89bf2ae5074d419db5d8640bb4d530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe89bf2ae5074d419db5d8640bb4d530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe89bf2ae5074d419db5d8640bb4d530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe89bf2ae5074d419db5d8640bb4d530.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KiOqC2L0PKDPR362pE8sRVum7-U=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.509312+00 2025-12-09 10:15:28.509318+00 14994 JTSS593FW#VS-D3 SPMX-20240815310205 \N \N \N 1 \N [{"file_id": "f12be1f5-b59b-4d84-a703-9c8801ec22de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ea03cba720d4cd28a03a175ce0de877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ea03cba720d4cd28a03a175ce0de877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ea03cba720d4cd28a03a175ce0de877.jpg", "file_size": 6736, "is_delete": false, "file_type": 1, "original_file_name": "JTSS593FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea03cba720d4cd28a03a175ce0de877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea03cba720d4cd28a03a175ce0de877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea03cba720d4cd28a03a175ce0de877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ea03cba720d4cd28a03a175ce0de877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ea03cba720d4cd28a03a175ce0de877.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vSAxi3LTogtHNIA1nZTHuahO7w=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.511904+00 2025-12-09 10:15:28.511911+00 14995 0006-38FWF#蓝色 SPMX-20240815310211 \N \N \N 1 \N [{"file_id": "9fc40fd3-5971-42a4-9652-68275d07a17c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f8fbade928a45ce8d9cf9180ec5fa31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f8fbade928a45ce8d9cf9180ec5fa31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f8fbade928a45ce8d9cf9180ec5fa31.jpg", "file_size": 20923, "is_delete": false, "file_type": 1, "original_file_name": "0006-38FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8fbade928a45ce8d9cf9180ec5fa31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8fbade928a45ce8d9cf9180ec5fa31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8fbade928a45ce8d9cf9180ec5fa31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f8fbade928a45ce8d9cf9180ec5fa31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f8fbade928a45ce8d9cf9180ec5fa31.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZQOkjSJzcm-nSSXAu_UJapGoA0=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.514945+00 2025-12-09 10:15:28.51495+00 14996 HTA15#牛黄 SPMX-20240815310203 \N \N \N 1 \N [{"file_id": "5b725d3d-610a-41ef-aab9-261d3acdb642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c47c0aa79c4de4a4936681af45f3ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c47c0aa79c4de4a4936681af45f3ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c47c0aa79c4de4a4936681af45f3ae.jpg", "file_size": 40766, "is_delete": false, "file_type": 1, "original_file_name": "HTA15#牛黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c47c0aa79c4de4a4936681af45f3ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c47c0aa79c4de4a4936681af45f3ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c47c0aa79c4de4a4936681af45f3ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c47c0aa79c4de4a4936681af45f3ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c47c0aa79c4de4a4936681af45f3ae.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYruKJOtl-LhrGJw8eh7T0QCOqo=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.517678+00 2025-12-09 10:15:28.517683+00 14997 FOB13#2XL SPMX-20240815310195 \N \N \N 1 \N [{"file_id": "0cd0fc4a-2bfc-4263-94ce-e07c8fcb2743", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f700092921e348ec8634fc2b2b5e08b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f700092921e348ec8634fc2b2b5e08b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f700092921e348ec8634fc2b2b5e08b2.jpg", "file_size": 63639, "is_delete": false, "file_type": 1, "original_file_name": "FOB13#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f700092921e348ec8634fc2b2b5e08b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f700092921e348ec8634fc2b2b5e08b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f700092921e348ec8634fc2b2b5e08b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f700092921e348ec8634fc2b2b5e08b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f700092921e348ec8634fc2b2b5e08b2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbnRXkhZqTsh2FRIwXiGYcnvECg=", "createTime": "2024-08-15 14:58:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.520171+00 2025-12-09 10:15:28.520177+00 14998 LJH1801-9#紫色 SPMX-20240815310200 \N \N \N 1 \N [{"file_id": "e2c63fc9-639f-4949-92fe-a2631b3f5e3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78ee421f7d5542f3aff0015d7f92654b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78ee421f7d5542f3aff0015d7f92654b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78ee421f7d5542f3aff0015d7f92654b.jpg", "file_size": 63066, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-9#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ee421f7d5542f3aff0015d7f92654b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ee421f7d5542f3aff0015d7f92654b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ee421f7d5542f3aff0015d7f92654b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78ee421f7d5542f3aff0015d7f92654b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78ee421f7d5542f3aff0015d7f92654b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQyDkMibmk-Sarz9UGLO9C8c95E=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.522764+00 2025-12-09 10:15:28.52277+00 14999 CABF-42# SPMX-20240815310202 \N \N \N 1 \N [{"file_id": "668413dc-a201-486d-9bea-b60b71232f30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14dff8ba8f7542bbbec39c30f4c58a70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14dff8ba8f7542bbbec39c30f4c58a70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14dff8ba8f7542bbbec39c30f4c58a70.jpg", "file_size": 23979, "is_delete": false, "file_type": 1, "original_file_name": "CABF-42#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dff8ba8f7542bbbec39c30f4c58a70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dff8ba8f7542bbbec39c30f4c58a70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dff8ba8f7542bbbec39c30f4c58a70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14dff8ba8f7542bbbec39c30f4c58a70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14dff8ba8f7542bbbec39c30f4c58a70.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sddoHlfgnz6p-Rx7IrbKgBobUhA=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.525249+00 2025-12-09 10:15:28.525254+00 15000 LZ1338#上身2号色 SPMX-20240815310207 \N \N \N 1 \N [{"file_id": "8ab6110f-68f3-4705-9d91-4f3c69ea526d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3557c83b65744b08998c80c540125fcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3557c83b65744b08998c80c540125fcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3557c83b65744b08998c80c540125fcd.jpg", "file_size": 18287, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3557c83b65744b08998c80c540125fcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3557c83b65744b08998c80c540125fcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3557c83b65744b08998c80c540125fcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3557c83b65744b08998c80c540125fcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3557c83b65744b08998c80c540125fcd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFe3lU3uIPzirx2RbgCBNkCw7yc=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.52767+00 2025-12-09 10:15:28.527675+00 15001 DL31224#前幅浅粉L SPMX-20240815310204 \N \N \N 1 \N [{"file_id": "87f52614-6a4e-400b-b210-efd7939b6733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "145454d98bf34732addcbada783f176a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "145454d98bf34732addcbada783f176a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "145454d98bf34732addcbada783f176a.jpg", "file_size": 16169, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅浅粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145454d98bf34732addcbada783f176a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145454d98bf34732addcbada783f176a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/145454d98bf34732addcbada783f176a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/145454d98bf34732addcbada783f176a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/145454d98bf34732addcbada783f176a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MncF6CjQv1tfKx9TaDQI4qVvYOs=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.530329+00 2025-12-09 10:15:28.530335+00 15002 1208FWF#彩兰 SPMX-20240815310196 \N \N \N 1 \N [{"file_id": "ea511cb3-06a1-4734-9b9e-422a552e0072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09163181553c4176b71c79d492183911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09163181553c4176b71c79d492183911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09163181553c4176b71c79d492183911.jpg", "file_size": 18653, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09163181553c4176b71c79d492183911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09163181553c4176b71c79d492183911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09163181553c4176b71c79d492183911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09163181553c4176b71c79d492183911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09163181553c4176b71c79d492183911.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lMtYeYohh1Vf1lXjZX0-htZQXHM=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.533045+00 2025-12-09 10:15:28.533051+00 15003 84910#蓝色 SPMX-20240815310209 \N \N \N 1 \N [{"file_id": "0f2e56d7-e1ad-4e34-a16b-b844d4615def", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ffeafcebaf54f6490ba6762ce4cf810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ffeafcebaf54f6490ba6762ce4cf810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ffeafcebaf54f6490ba6762ce4cf810.jpg", "file_size": 75756, "is_delete": false, "file_type": 1, "original_file_name": "84910#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffeafcebaf54f6490ba6762ce4cf810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffeafcebaf54f6490ba6762ce4cf810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffeafcebaf54f6490ba6762ce4cf810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ffeafcebaf54f6490ba6762ce4cf810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ffeafcebaf54f6490ba6762ce4cf810.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbbcFrFBP12iLfeerJLMLiP0XAc=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.535485+00 2025-12-09 10:15:28.535491+00 15004 1208FWF#湖绿 SPMX-20240815310206 \N \N \N 1 \N [{"file_id": "09d90099-e851-4a34-9857-a43bef521659", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f07cd8cb470401dba410643a1a5a777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f07cd8cb470401dba410643a1a5a777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f07cd8cb470401dba410643a1a5a777.jpg", "file_size": 17602, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f07cd8cb470401dba410643a1a5a777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f07cd8cb470401dba410643a1a5a777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f07cd8cb470401dba410643a1a5a777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f07cd8cb470401dba410643a1a5a777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f07cd8cb470401dba410643a1a5a777.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHC7cj4mT3Bzu7fow-yvcQoxaeU=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.537967+00 2025-12-09 10:15:28.537973+00 15005 FOB13#L SPMX-20240815310208 \N \N \N 1 \N [{"file_id": "f927d7aa-7229-4a1f-806b-fb975e636d5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2e09731346d45c6b506624c192e2ca7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2e09731346d45c6b506624c192e2ca7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2e09731346d45c6b506624c192e2ca7.jpg", "file_size": 59778, "is_delete": false, "file_type": 1, "original_file_name": "FOB13#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e09731346d45c6b506624c192e2ca7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e09731346d45c6b506624c192e2ca7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e09731346d45c6b506624c192e2ca7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2e09731346d45c6b506624c192e2ca7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2e09731346d45c6b506624c192e2ca7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NuV3TTIHUPAIoBRJ-X97THEVm3A=", "createTime": "2024-08-15 14:58:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.540417+00 2025-12-09 10:15:28.540423+00 15006 CABF-43# SPMX-20240815310214 \N \N \N 1 \N [{"file_id": "38e0214f-f02b-40e8-aa25-5fe7b8e64bcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97389785aea64fc096382efa84d8ac90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97389785aea64fc096382efa84d8ac90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97389785aea64fc096382efa84d8ac90.jpg", "file_size": 12928, "is_delete": false, "file_type": 1, "original_file_name": "CABF-43#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97389785aea64fc096382efa84d8ac90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97389785aea64fc096382efa84d8ac90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97389785aea64fc096382efa84d8ac90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97389785aea64fc096382efa84d8ac90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97389785aea64fc096382efa84d8ac90.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVXCuh815j7NYx5nCDn_a2JTDM0=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.542842+00 2025-12-09 10:15:28.542848+00 15007 DL31224#前幅浅粉XL SPMX-20240815310215 \N \N \N 1 \N [{"file_id": "7fbd7275-6338-456e-913c-8485d38ae85b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8534691cfefb4ab099cd38db05da4ef8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8534691cfefb4ab099cd38db05da4ef8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8534691cfefb4ab099cd38db05da4ef8.jpg", "file_size": 16426, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅浅粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8534691cfefb4ab099cd38db05da4ef8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8534691cfefb4ab099cd38db05da4ef8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8534691cfefb4ab099cd38db05da4ef8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8534691cfefb4ab099cd38db05da4ef8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8534691cfefb4ab099cd38db05da4ef8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwNQ-GiVEzB6ml_XcRWviPSXX8A=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.545321+00 2025-12-09 10:15:28.545326+00 15008 85001#10码+12码 SPMX-20240815310217 \N \N \N 1 \N [{"file_id": "c37ee865-c72e-4c88-beb3-fe49a2e364fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61b9a917de954ff0bbfa3c0c642c4f47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61b9a917de954ff0bbfa3c0c642c4f47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61b9a917de954ff0bbfa3c0c642c4f47.jpg", "file_size": 17054, "is_delete": false, "file_type": 1, "original_file_name": "85001#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61b9a917de954ff0bbfa3c0c642c4f47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61b9a917de954ff0bbfa3c0c642c4f47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61b9a917de954ff0bbfa3c0c642c4f47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61b9a917de954ff0bbfa3c0c642c4f47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61b9a917de954ff0bbfa3c0c642c4f47.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sB0fGG-XNh0-Pn2_6rAuvBhZmDM=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.547596+00 2025-12-09 10:15:28.547602+00 15009 HTFWE#橙 SPMX-20240815310212 \N \N \N 1 \N [{"file_id": "e44439e7-9afc-42dd-b806-c84415c77b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eba927873d274187a254192bce2db179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eba927873d274187a254192bce2db179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eba927873d274187a254192bce2db179.jpg", "file_size": 14257, "is_delete": false, "file_type": 1, "original_file_name": "HTFWE#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eba927873d274187a254192bce2db179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eba927873d274187a254192bce2db179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eba927873d274187a254192bce2db179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eba927873d274187a254192bce2db179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eba927873d274187a254192bce2db179.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7qJfXfLH4vpbvbitFYc8W5fRmc=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.550026+00 2025-12-09 10:15:28.550031+00 15010 JTSS594FW#VS-D3 SPMX-20240815310216 \N \N \N 1 \N [{"file_id": "47f4d271-151e-4e38-aaa8-ba1c4b09c5e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "231d68e47d20484484aee18e395b1518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "231d68e47d20484484aee18e395b1518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "231d68e47d20484484aee18e395b1518.jpg", "file_size": 10124, "is_delete": false, "file_type": 1, "original_file_name": "JTSS594FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231d68e47d20484484aee18e395b1518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231d68e47d20484484aee18e395b1518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231d68e47d20484484aee18e395b1518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/231d68e47d20484484aee18e395b1518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/231d68e47d20484484aee18e395b1518.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xHRFWVeoSOu45zO1nhsBz4stXGg=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.552509+00 2025-12-09 10:15:28.552514+00 15011 LJH1801-9#绿色 SPMX-20240815310213 \N \N \N 1 \N [{"file_id": "f3f2565b-eb8d-4f1e-b184-1a56b58cff2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eea5b54e350c4689823f38440bb33018.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eea5b54e350c4689823f38440bb33018.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eea5b54e350c4689823f38440bb33018.jpg", "file_size": 65937, "is_delete": false, "file_type": 1, "original_file_name": "LJH1801-9#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eea5b54e350c4689823f38440bb33018.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eea5b54e350c4689823f38440bb33018.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eea5b54e350c4689823f38440bb33018.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eea5b54e350c4689823f38440bb33018.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eea5b54e350c4689823f38440bb33018.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyQjwzPCquapuXZ0kYlejKll4iY=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.55501+00 2025-12-09 10:15:28.555017+00 15012 FOB13#M SPMX-20240815310218 \N \N \N 1 \N [{"file_id": "2bd1693d-57e7-4161-a4aa-b82b4685502a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6225dc8e0dc243d3b29bec87a500fc07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6225dc8e0dc243d3b29bec87a500fc07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6225dc8e0dc243d3b29bec87a500fc07.jpg", "file_size": 60202, "is_delete": false, "file_type": 1, "original_file_name": "FOB13#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6225dc8e0dc243d3b29bec87a500fc07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6225dc8e0dc243d3b29bec87a500fc07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6225dc8e0dc243d3b29bec87a500fc07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6225dc8e0dc243d3b29bec87a500fc07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6225dc8e0dc243d3b29bec87a500fc07.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rqrljf5xCslrzfzv00q41dxjAQ=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.55748+00 2025-12-09 10:15:28.557485+00 15013 DL31224#前幅玫红2XL SPMX-20240815310226 \N \N \N 1 \N [{"file_id": "7d83383b-6cd1-460b-ae80-17223cec00fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8ff017b146e43c7bd9a8bb9005567c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8ff017b146e43c7bd9a8bb9005567c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8ff017b146e43c7bd9a8bb9005567c9.jpg", "file_size": 17213, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅玫红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ff017b146e43c7bd9a8bb9005567c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ff017b146e43c7bd9a8bb9005567c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ff017b146e43c7bd9a8bb9005567c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8ff017b146e43c7bd9a8bb9005567c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8ff017b146e43c7bd9a8bb9005567c9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JI7vnAL29IK7C34v5IBze87ONw=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.559947+00 2025-12-09 10:15:28.559953+00 15014 1208FWF#紫色 SPMX-20240815310234 \N \N \N 1 \N [{"file_id": "3cc8324e-2a2d-41cf-bc2d-de400d7e0f43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "849ef5efd7e845ed90d2edd21f4ba705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "849ef5efd7e845ed90d2edd21f4ba705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "849ef5efd7e845ed90d2edd21f4ba705.jpg", "file_size": 17422, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/849ef5efd7e845ed90d2edd21f4ba705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/849ef5efd7e845ed90d2edd21f4ba705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/849ef5efd7e845ed90d2edd21f4ba705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/849ef5efd7e845ed90d2edd21f4ba705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/849ef5efd7e845ed90d2edd21f4ba705.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kY560HoZ7D7bXLGLnQK_Bf36cCM=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.562393+00 2025-12-09 10:15:28.562398+00 15015 23-2126#A6-领子3XL SPMX-20240815310221 \N \N \N 1 \N [{"file_id": "7c463dfc-28a7-446d-879f-ac713e281ac3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfe0af5dcf7d472dbe1d84e26566e4c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfe0af5dcf7d472dbe1d84e26566e4c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfe0af5dcf7d472dbe1d84e26566e4c3.jpg", "file_size": 12743, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0af5dcf7d472dbe1d84e26566e4c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0af5dcf7d472dbe1d84e26566e4c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe0af5dcf7d472dbe1d84e26566e4c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfe0af5dcf7d472dbe1d84e26566e4c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfe0af5dcf7d472dbe1d84e26566e4c3.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSMP-cmgAT5xulIi7RTyZMaaXvY=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.564652+00 2025-12-09 10:15:28.564658+00 15016 JTSS595FW#VS-D3 SPMX-20240815310227 \N \N \N 1 \N [{"file_id": "124fc75c-e460-403c-890f-dae59bbece9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffad6b90e6ad4338a40976319c0d09fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffad6b90e6ad4338a40976319c0d09fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffad6b90e6ad4338a40976319c0d09fd.jpg", "file_size": 8608, "is_delete": false, "file_type": 1, "original_file_name": "JTSS595FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad6b90e6ad4338a40976319c0d09fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad6b90e6ad4338a40976319c0d09fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffad6b90e6ad4338a40976319c0d09fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffad6b90e6ad4338a40976319c0d09fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffad6b90e6ad4338a40976319c0d09fd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxcZZ3hpq_CVN-Wo43eyTLiqzZY=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.567074+00 2025-12-09 10:15:28.56708+00 15017 FOB13#S SPMX-20240815310230 \N \N \N 1 \N [{"file_id": "26ca9811-2fe3-42b7-87cd-64be9816d99e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg", "file_size": 56572, "is_delete": false, "file_type": 1, "original_file_name": "FOB13#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b4c8abddfe94d6c9b2db49f5e06b3ee.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvwZZLgEw-JvN-LnebiLMUUK0wA=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.569551+00 2025-12-09 10:15:28.569557+00 15018 23-2126#A6-领子4XL SPMX-20240815310231 \N \N \N 1 \N [{"file_id": "b2874940-93d9-46d2-8231-e484d7ec5ea3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a60d9339d0854a27a46c9acd9c521405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a60d9339d0854a27a46c9acd9c521405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a60d9339d0854a27a46c9acd9c521405.jpg", "file_size": 12520, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60d9339d0854a27a46c9acd9c521405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60d9339d0854a27a46c9acd9c521405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60d9339d0854a27a46c9acd9c521405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a60d9339d0854a27a46c9acd9c521405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a60d9339d0854a27a46c9acd9c521405.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qyiGoIDRqDesZTU6FnjLGL6skIQ=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.572062+00 2025-12-09 10:15:28.572068+00 15019 CABF-49# SPMX-20240815310232 \N \N \N 1 \N [{"file_id": "a9277f68-6954-41f7-a0b7-1578ac3a74e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4284b80d3b6433e9b04c8f7defe5fb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4284b80d3b6433e9b04c8f7defe5fb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4284b80d3b6433e9b04c8f7defe5fb5.jpg", "file_size": 16952, "is_delete": false, "file_type": 1, "original_file_name": "CABF-49#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4284b80d3b6433e9b04c8f7defe5fb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4284b80d3b6433e9b04c8f7defe5fb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4284b80d3b6433e9b04c8f7defe5fb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4284b80d3b6433e9b04c8f7defe5fb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4284b80d3b6433e9b04c8f7defe5fb5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pw9j6saynVNTtQQgiCNg8UyKN_c=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.574526+00 2025-12-09 10:15:28.574532+00 15020 85001#14码 SPMX-20240815310228 \N \N \N 1 \N [{"file_id": "b60383b1-17c0-459e-9c44-a079d9d36f23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a5c5f628b974f7fa617693065f4df26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a5c5f628b974f7fa617693065f4df26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a5c5f628b974f7fa617693065f4df26.jpg", "file_size": 16090, "is_delete": false, "file_type": 1, "original_file_name": "85001#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5c5f628b974f7fa617693065f4df26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5c5f628b974f7fa617693065f4df26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a5c5f628b974f7fa617693065f4df26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a5c5f628b974f7fa617693065f4df26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a5c5f628b974f7fa617693065f4df26.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ash1kIYH2W1NVM41hgPsuz-SAtE=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.57681+00 2025-12-09 10:15:28.576816+00 15021 0006-39FWF#V5曲线 SPMX-20240815310233 \N \N \N 1 \N [{"file_id": "ce9dfedc-3e58-4bbd-9f45-b4541742850b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bfd691d11764bafaeb4b27f63759b6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bfd691d11764bafaeb4b27f63759b6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bfd691d11764bafaeb4b27f63759b6c.jpg", "file_size": 12973, "is_delete": false, "file_type": 1, "original_file_name": "0006-39FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfd691d11764bafaeb4b27f63759b6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfd691d11764bafaeb4b27f63759b6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bfd691d11764bafaeb4b27f63759b6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bfd691d11764bafaeb4b27f63759b6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bfd691d11764bafaeb4b27f63759b6c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:armz7Tn79vUdEJSsJclLb68Bt8I=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.579279+00 2025-12-09 10:15:28.579284+00 15022 HTFWE#蓝 SPMX-20240815310235 \N \N \N 1 \N [{"file_id": "41155e88-d88b-4440-8ebd-73e934999be5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfe1501db3cc4b49a1d6742754875ccc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfe1501db3cc4b49a1d6742754875ccc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfe1501db3cc4b49a1d6742754875ccc.jpg", "file_size": 13406, "is_delete": false, "file_type": 1, "original_file_name": "HTFWE#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe1501db3cc4b49a1d6742754875ccc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe1501db3cc4b49a1d6742754875ccc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe1501db3cc4b49a1d6742754875ccc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfe1501db3cc4b49a1d6742754875ccc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfe1501db3cc4b49a1d6742754875ccc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2luwAydkPiMRPD5zLGsbyIefNL0=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.581735+00 2025-12-09 10:15:28.581741+00 15023 1208FWF#粉色 SPMX-20240815310222 \N \N \N 1 \N [{"file_id": "1549a12a-c483-4890-9668-96e30db6f910", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4908be534cb4f4b83e2245aabed5787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4908be534cb4f4b83e2245aabed5787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4908be534cb4f4b83e2245aabed5787.jpg", "file_size": 16590, "is_delete": false, "file_type": 1, "original_file_name": "1208FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4908be534cb4f4b83e2245aabed5787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4908be534cb4f4b83e2245aabed5787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4908be534cb4f4b83e2245aabed5787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4908be534cb4f4b83e2245aabed5787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4908be534cb4f4b83e2245aabed5787.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3rMaCJW3317qZacxL9IKvhBZQo=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.584752+00 2025-12-09 10:15:28.584758+00 15024 CABF-46# SPMX-20240815310225 \N \N \N 1 \N [{"file_id": "36878bf4-d91f-4711-b733-4fb47326e10e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21294b003b2b4998b86b5bdd3b03cedb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21294b003b2b4998b86b5bdd3b03cedb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21294b003b2b4998b86b5bdd3b03cedb.jpg", "file_size": 23877, "is_delete": false, "file_type": 1, "original_file_name": "CABF-46#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21294b003b2b4998b86b5bdd3b03cedb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21294b003b2b4998b86b5bdd3b03cedb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21294b003b2b4998b86b5bdd3b03cedb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21294b003b2b4998b86b5bdd3b03cedb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21294b003b2b4998b86b5bdd3b03cedb.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wRkf6dNTdgGdgdEeT-olxRx0zg=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.587219+00 2025-12-09 10:15:28.587226+00 15025 HTFWE#绿 SPMX-20240815310220 \N \N \N 1 \N [{"file_id": "82aa34e0-e277-4cd0-89b6-1ecb03dec470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e8636e49704450fbedf1a209197cafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e8636e49704450fbedf1a209197cafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e8636e49704450fbedf1a209197cafd.jpg", "file_size": 14149, "is_delete": false, "file_type": 1, "original_file_name": "HTFWE#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8636e49704450fbedf1a209197cafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8636e49704450fbedf1a209197cafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e8636e49704450fbedf1a209197cafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e8636e49704450fbedf1a209197cafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e8636e49704450fbedf1a209197cafd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHcZdRn7h3ABkSAiRTBCvPrGkOU=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.589681+00 2025-12-09 10:15:28.589686+00 15026 0006-39FWE#VS-D3 SPMX-20240815310223 \N \N \N 1 \N [{"file_id": "83597ca9-ed2a-4a68-a0c0-2efd0468fdd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30a1ad7b94dd4126a54681ab962eaf10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30a1ad7b94dd4126a54681ab962eaf10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30a1ad7b94dd4126a54681ab962eaf10.jpg", "file_size": 13549, "is_delete": false, "file_type": 1, "original_file_name": "0006-39FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a1ad7b94dd4126a54681ab962eaf10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a1ad7b94dd4126a54681ab962eaf10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30a1ad7b94dd4126a54681ab962eaf10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30a1ad7b94dd4126a54681ab962eaf10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30a1ad7b94dd4126a54681ab962eaf10.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bR1JfiMQvi35hHI4qU3bdPOcqhE=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.591928+00 2025-12-09 10:15:28.591933+00 15027 LJH1811-2#绿底 SPMX-20240815310224 \N \N \N 1 \N [{"file_id": "5e57cea1-0e7b-4a38-ba59-370d68c21041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5c595a4921a4619ae0895621e5e634d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5c595a4921a4619ae0895621e5e634d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5c595a4921a4619ae0895621e5e634d.jpg", "file_size": 53777, "is_delete": false, "file_type": 1, "original_file_name": "LJH1811-2#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c595a4921a4619ae0895621e5e634d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c595a4921a4619ae0895621e5e634d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c595a4921a4619ae0895621e5e634d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5c595a4921a4619ae0895621e5e634d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5c595a4921a4619ae0895621e5e634d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxNEHZFsT7GiBDEWL5cI-su-7c8=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.594364+00 2025-12-09 10:15:28.59437+00 15028 LZ1338#上身4号色 SPMX-20240815310229 \N \N \N 1 \N [{"file_id": "02f2f0c9-2baa-4ddc-bf8c-f17a43b422ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f11dd827a8840359a33fbabcc605eb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f11dd827a8840359a33fbabcc605eb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f11dd827a8840359a33fbabcc605eb6.jpg", "file_size": 18171, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f11dd827a8840359a33fbabcc605eb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f11dd827a8840359a33fbabcc605eb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f11dd827a8840359a33fbabcc605eb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f11dd827a8840359a33fbabcc605eb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f11dd827a8840359a33fbabcc605eb6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:miRjQTQz2mBb7wxZU0xdP-6zCIQ=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.596851+00 2025-12-09 10:15:28.596857+00 15029 LZ1338#上身3号色 SPMX-20240815310219 \N \N \N 1 \N [{"file_id": "8a784c8c-86df-4acc-a822-0087b5261544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cead0866aab1437d9c22a3e409b567fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cead0866aab1437d9c22a3e409b567fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cead0866aab1437d9c22a3e409b567fc.jpg", "file_size": 17820, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cead0866aab1437d9c22a3e409b567fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cead0866aab1437d9c22a3e409b567fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cead0866aab1437d9c22a3e409b567fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cead0866aab1437d9c22a3e409b567fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cead0866aab1437d9c22a3e409b567fc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k6UgQiwo3VlqkOscMRy-tDvEBr4=", "createTime": "2024-08-15 14:58:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.599348+00 2025-12-09 10:15:28.599354+00 15030 LJH1811-2#黄底 SPMX-20240815310236 \N \N \N 1 \N [{"file_id": "b710e63e-4f3f-4b3f-abb2-1ffc63f6e447", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef5e406b843645928064042859801018.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef5e406b843645928064042859801018.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef5e406b843645928064042859801018.jpg", "file_size": 55378, "is_delete": false, "file_type": 1, "original_file_name": "LJH1811-2#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e406b843645928064042859801018.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e406b843645928064042859801018.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e406b843645928064042859801018.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef5e406b843645928064042859801018.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef5e406b843645928064042859801018.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37UgEVQs9PCCNXJeiqBV29hhA80=", "createTime": "2024-08-15 14:58:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.601842+00 2025-12-09 10:15:28.601848+00 15031 85001#4码+8码 SPMX-20240815310242 \N \N \N 1 \N [{"file_id": "7e91f637-995c-4338-9791-5ec6bd0d3b1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "862f3e80279c4f3c9de3350d6b971e4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "862f3e80279c4f3c9de3350d6b971e4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "862f3e80279c4f3c9de3350d6b971e4e.jpg", "file_size": 16723, "is_delete": false, "file_type": 1, "original_file_name": "85001#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862f3e80279c4f3c9de3350d6b971e4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862f3e80279c4f3c9de3350d6b971e4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/862f3e80279c4f3c9de3350d6b971e4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/862f3e80279c4f3c9de3350d6b971e4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/862f3e80279c4f3c9de3350d6b971e4e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htso1u1F7rXhUE-O4uWe34gCxEM=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.604304+00 2025-12-09 10:15:28.60431+00 15032 FOB13#XL SPMX-20240815310241 \N \N \N 1 \N [{"file_id": "a8fae4cd-6f66-4a2d-8bea-d51a0fa50857", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f39dea9da470494cadfca21102c0c452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f39dea9da470494cadfca21102c0c452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f39dea9da470494cadfca21102c0c452.jpg", "file_size": 58317, "is_delete": false, "file_type": 1, "original_file_name": "FOB13#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39dea9da470494cadfca21102c0c452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39dea9da470494cadfca21102c0c452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39dea9da470494cadfca21102c0c452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f39dea9da470494cadfca21102c0c452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f39dea9da470494cadfca21102c0c452.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEBybuCuJaVy5ZVTDRFnusgAYB4=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.606852+00 2025-12-09 10:15:28.606858+00 15033 DL31224#前幅玫红XL SPMX-20240815310244 \N \N \N 1 \N [{"file_id": "fc63947f-0096-455c-9c0e-c2646bcc1adb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38c99002c58a47d38cb31992a8d6b96d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38c99002c58a47d38cb31992a8d6b96d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38c99002c58a47d38cb31992a8d6b96d.jpg", "file_size": 16761, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅玫红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c99002c58a47d38cb31992a8d6b96d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c99002c58a47d38cb31992a8d6b96d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38c99002c58a47d38cb31992a8d6b96d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38c99002c58a47d38cb31992a8d6b96d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38c99002c58a47d38cb31992a8d6b96d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oyhh3qeun66yY1UCyXIWoPQQBto=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.609404+00 2025-12-09 10:15:28.60941+00 15034 JTSS596FW#VS-D3 SPMX-20240815310238 \N \N \N 1 \N [{"file_id": "18e29c4d-7a2b-4acd-a913-942ca3f9776f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "296213d0c3db418bb85200c9884b2ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "296213d0c3db418bb85200c9884b2ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "296213d0c3db418bb85200c9884b2ffb.jpg", "file_size": 9890, "is_delete": false, "file_type": 1, "original_file_name": "JTSS596FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296213d0c3db418bb85200c9884b2ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296213d0c3db418bb85200c9884b2ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296213d0c3db418bb85200c9884b2ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/296213d0c3db418bb85200c9884b2ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/296213d0c3db418bb85200c9884b2ffb.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aoZkgtpCkR7_A7KoTlPGwwy1c00=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.611958+00 2025-12-09 10:15:28.611964+00 15035 LJH1823#86号蓝色 SPMX-20240815310246 \N \N \N 1 \N [{"file_id": "c486cf64-1ad6-4b94-b0b2-a9010e7c7ede", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d47608e13f9b4100bfd1b97e4aeb5246.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d47608e13f9b4100bfd1b97e4aeb5246.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d47608e13f9b4100bfd1b97e4aeb5246.jpg", "file_size": 70808, "is_delete": false, "file_type": 1, "original_file_name": "LJH1823#86号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47608e13f9b4100bfd1b97e4aeb5246.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47608e13f9b4100bfd1b97e4aeb5246.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47608e13f9b4100bfd1b97e4aeb5246.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d47608e13f9b4100bfd1b97e4aeb5246.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d47608e13f9b4100bfd1b97e4aeb5246.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBc2D6xROvXIntyijJNTCCC0l9M=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.614657+00 2025-12-09 10:15:28.614663+00 15036 120FWE#咖啡色VS-D3 SPMX-20240815310243 \N \N \N 1 \N [{"file_id": "65502f5c-079e-4128-a035-500df0a0b773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10c38b4b53404138b0a1f92f5159e975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10c38b4b53404138b0a1f92f5159e975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10c38b4b53404138b0a1f92f5159e975.jpg", "file_size": 13566, "is_delete": false, "file_type": 1, "original_file_name": "120FWE#咖啡色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c38b4b53404138b0a1f92f5159e975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c38b4b53404138b0a1f92f5159e975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c38b4b53404138b0a1f92f5159e975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10c38b4b53404138b0a1f92f5159e975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10c38b4b53404138b0a1f92f5159e975.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPnXrKeek3lTwvwwUwOH6o24xGo=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.617202+00 2025-12-09 10:15:28.617207+00 15037 CABF-56# SPMX-20240815310247 \N \N \N 1 \N [{"file_id": "469545c3-f101-4f49-9c1d-d7b94fd2a6bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8187d2e1da0d4433b6b33907c24d038e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8187d2e1da0d4433b6b33907c24d038e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8187d2e1da0d4433b6b33907c24d038e.jpg", "file_size": 10316, "is_delete": false, "file_type": 1, "original_file_name": "CABF-56#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187d2e1da0d4433b6b33907c24d038e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187d2e1da0d4433b6b33907c24d038e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8187d2e1da0d4433b6b33907c24d038e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8187d2e1da0d4433b6b33907c24d038e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8187d2e1da0d4433b6b33907c24d038e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uy0jakLgOgE2jXV_Ulju0h8FUXg=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.619747+00 2025-12-09 10:15:28.619752+00 15038 DL31224#前幅玫红L SPMX-20240815310237 \N \N \N 1 \N [{"file_id": "5992c93c-da42-4670-8799-811a0878e020", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db61a517f5ef4173b793ac590c94ec25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db61a517f5ef4173b793ac590c94ec25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db61a517f5ef4173b793ac590c94ec25.jpg", "file_size": 16221, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅玫红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db61a517f5ef4173b793ac590c94ec25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db61a517f5ef4173b793ac590c94ec25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db61a517f5ef4173b793ac590c94ec25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db61a517f5ef4173b793ac590c94ec25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db61a517f5ef4173b793ac590c94ec25.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBHzrx-V2HaEEOU8L7VFJ2Gt2gc=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.622195+00 2025-12-09 10:15:28.6222+00 15039 23-2126#A7-3XL SPMX-20240815310240 \N \N \N 1 \N [{"file_id": "328450e1-40d0-4dca-8196-1790866afe37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f4107c71d7f4bdebae5e20ecc1ff74b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f4107c71d7f4bdebae5e20ecc1ff74b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f4107c71d7f4bdebae5e20ecc1ff74b.jpg", "file_size": 20076, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4107c71d7f4bdebae5e20ecc1ff74b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4107c71d7f4bdebae5e20ecc1ff74b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f4107c71d7f4bdebae5e20ecc1ff74b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f4107c71d7f4bdebae5e20ecc1ff74b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f4107c71d7f4bdebae5e20ecc1ff74b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFrG2QvoS9oIsjZfrR2p5Jy0LHw=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.624672+00 2025-12-09 10:15:28.624678+00 15040 JTSS597FW#VS-D3 SPMX-20240815310249 \N \N \N 1 \N [{"file_id": "c77e5a97-3f80-4414-87c7-635dd5747d55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "598dc1f5c35a4a6ca7466d036315f069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "598dc1f5c35a4a6ca7466d036315f069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "598dc1f5c35a4a6ca7466d036315f069.jpg", "file_size": 10209, "is_delete": false, "file_type": 1, "original_file_name": "JTSS597FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/598dc1f5c35a4a6ca7466d036315f069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/598dc1f5c35a4a6ca7466d036315f069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/598dc1f5c35a4a6ca7466d036315f069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/598dc1f5c35a4a6ca7466d036315f069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/598dc1f5c35a4a6ca7466d036315f069.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJvjGUjBX9Vm3n8hLmzMfrWbMrc=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.639597+00 2025-12-09 10:15:28.639602+00 15046 LJH1823-1#玫红 SPMX-20240815310260 \N \N \N 1 \N [{"file_id": "321b564d-c366-467f-a2e8-59c423d7c7e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74cad41262914aa9a0ab299c8ae45eb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74cad41262914aa9a0ab299c8ae45eb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74cad41262914aa9a0ab299c8ae45eb8.jpg", "file_size": 65235, "is_delete": false, "file_type": 1, "original_file_name": "LJH1823-1#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74cad41262914aa9a0ab299c8ae45eb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74cad41262914aa9a0ab299c8ae45eb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74cad41262914aa9a0ab299c8ae45eb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74cad41262914aa9a0ab299c8ae45eb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74cad41262914aa9a0ab299c8ae45eb8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqX2N1pp8aMY2mKlpWJxgslXDKk=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.627145+00 2025-12-09 10:15:28.627151+00 15041 LZ1338#上身5号色 SPMX-20240815310239 \N \N \N 1 \N [{"file_id": "11d87548-2617-466f-b40b-cb94d96067ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a91a7ca8734836a197bf61dc0be8a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a91a7ca8734836a197bf61dc0be8a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a91a7ca8734836a197bf61dc0be8a1.jpg", "file_size": 17619, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a91a7ca8734836a197bf61dc0be8a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a91a7ca8734836a197bf61dc0be8a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a91a7ca8734836a197bf61dc0be8a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a91a7ca8734836a197bf61dc0be8a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a91a7ca8734836a197bf61dc0be8a1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6XbQFRpb_BdQTRf4EwJoSyEKok=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.62965+00 2025-12-09 10:15:28.629656+00 15042 0006-3FWE#VS-D3 SPMX-20240815310245 \N \N \N 1 \N [{"file_id": "78c19e52-b586-4269-8ffa-e240885f9956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ffc3f6e606b41e19129fdea022fe2d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ffc3f6e606b41e19129fdea022fe2d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ffc3f6e606b41e19129fdea022fe2d6.jpg", "file_size": 21194, "is_delete": false, "file_type": 1, "original_file_name": "0006-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffc3f6e606b41e19129fdea022fe2d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffc3f6e606b41e19129fdea022fe2d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffc3f6e606b41e19129fdea022fe2d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ffc3f6e606b41e19129fdea022fe2d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ffc3f6e606b41e19129fdea022fe2d6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzxldSkgchX41tWTdwAjr2EMs5Q=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.632118+00 2025-12-09 10:15:28.632123+00 15043 HTJ550402FW#L SPMX-20240815310248 \N \N \N 1 \N [{"file_id": "8858abf3-809e-4e12-b20b-ea33365e6982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02f0eb63070d44c489200cbfe7be3a65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02f0eb63070d44c489200cbfe7be3a65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02f0eb63070d44c489200cbfe7be3a65.jpg", "file_size": 11579, "is_delete": false, "file_type": 1, "original_file_name": "HTJ550402FW#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f0eb63070d44c489200cbfe7be3a65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f0eb63070d44c489200cbfe7be3a65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f0eb63070d44c489200cbfe7be3a65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02f0eb63070d44c489200cbfe7be3a65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02f0eb63070d44c489200cbfe7be3a65.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyQDQFRD2kKHGZh5xPPGcWx3PPA=", "createTime": "2024-08-15 14:58:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.634557+00 2025-12-09 10:15:28.634563+00 15044 120FWE#黑色VS-D3 SPMX-20240815310255 \N \N \N 1 \N [{"file_id": "e755615c-88da-4c4c-89b3-7a591e9de644", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b3b91133c14c47beead1561f95601b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b3b91133c14c47beead1561f95601b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b3b91133c14c47beead1561f95601b.jpg", "file_size": 14952, "is_delete": false, "file_type": 1, "original_file_name": "120FWE#黑色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b3b91133c14c47beead1561f95601b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b3b91133c14c47beead1561f95601b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b3b91133c14c47beead1561f95601b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b3b91133c14c47beead1561f95601b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b3b91133c14c47beead1561f95601b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wF7qu377Dm0iT8nlizYPMewakfg=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.637083+00 2025-12-09 10:15:28.637089+00 15045 FR10#WJC22 SPMX-20240815310253 \N \N \N 1 \N [{"file_id": "bb5131ec-9ae4-4cfc-b782-ca6ad50f2a8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b64089228f54a61b81e3cd94fa5fbd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b64089228f54a61b81e3cd94fa5fbd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b64089228f54a61b81e3cd94fa5fbd7.jpg", "file_size": 20730, "is_delete": false, "file_type": 1, "original_file_name": "FR10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b64089228f54a61b81e3cd94fa5fbd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b64089228f54a61b81e3cd94fa5fbd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b64089228f54a61b81e3cd94fa5fbd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b64089228f54a61b81e3cd94fa5fbd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b64089228f54a61b81e3cd94fa5fbd7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68gmgsD9GOQeBltdLKV2qIDp2lY=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.642046+00 2025-12-09 10:15:28.642052+00 15047 JTSS598FW#VS-D3 SPMX-20240815310258 \N \N \N 1 \N [{"file_id": "3b29eefe-bfd0-482f-8d6d-ca2f76a7d1e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "539cd390c7df45e7a01cf2a7c24518ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "539cd390c7df45e7a01cf2a7c24518ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "539cd390c7df45e7a01cf2a7c24518ac.jpg", "file_size": 10449, "is_delete": false, "file_type": 1, "original_file_name": "JTSS598FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cd390c7df45e7a01cf2a7c24518ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cd390c7df45e7a01cf2a7c24518ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/539cd390c7df45e7a01cf2a7c24518ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/539cd390c7df45e7a01cf2a7c24518ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/539cd390c7df45e7a01cf2a7c24518ac.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aN5pbRwfbMqXISygBdWKMc2MHck=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.644379+00 2025-12-09 10:15:28.644385+00 15048 DL31224#前幅黄色2XL SPMX-20240815310254 \N \N \N 1 \N [{"file_id": "2f9a87ba-b7d1-4c37-a226-2d48dab739c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de766e0c3c9047dcb70300b2d4694e48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de766e0c3c9047dcb70300b2d4694e48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de766e0c3c9047dcb70300b2d4694e48.jpg", "file_size": 17114, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de766e0c3c9047dcb70300b2d4694e48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de766e0c3c9047dcb70300b2d4694e48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de766e0c3c9047dcb70300b2d4694e48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de766e0c3c9047dcb70300b2d4694e48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de766e0c3c9047dcb70300b2d4694e48.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAQd0LuH1clJq9FQ159kow0VM9U=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.646838+00 2025-12-09 10:15:28.646849+00 15049 0006-3FWF#V5曲线 SPMX-20240815310257 \N \N \N 1 \N [{"file_id": "3341691b-1e58-4b44-aa60-f4619352b081", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff81a768b0844c00b43afb4b5d3262bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff81a768b0844c00b43afb4b5d3262bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff81a768b0844c00b43afb4b5d3262bd.jpg", "file_size": 17320, "is_delete": false, "file_type": 1, "original_file_name": "0006-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81a768b0844c00b43afb4b5d3262bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81a768b0844c00b43afb4b5d3262bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff81a768b0844c00b43afb4b5d3262bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff81a768b0844c00b43afb4b5d3262bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff81a768b0844c00b43afb4b5d3262bd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YReXDuk0zHWgqNMNFA4wB6YAUHc=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.649477+00 2025-12-09 10:15:28.649488+00 15050 23-2126#A7-4XL SPMX-20240815310250 \N \N \N 1 \N [{"file_id": "818eaf8e-d2de-4880-aebe-746b10e5a371", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "781417927c174671a11a51ab0434786c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "781417927c174671a11a51ab0434786c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "781417927c174671a11a51ab0434786c.jpg", "file_size": 19290, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781417927c174671a11a51ab0434786c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781417927c174671a11a51ab0434786c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/781417927c174671a11a51ab0434786c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/781417927c174671a11a51ab0434786c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/781417927c174671a11a51ab0434786c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fs6sTvO1E7eJ4TINiT2BjGlP8E8=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.652035+00 2025-12-09 10:15:28.652041+00 15051 HTJ550402FW#M SPMX-20240815310259 \N \N \N 1 \N [{"file_id": "6f740486-c8f4-4f58-bc98-e4d27014417d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c612089c4b374a039d52b0745ba6ae13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c612089c4b374a039d52b0745ba6ae13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c612089c4b374a039d52b0745ba6ae13.jpg", "file_size": 12410, "is_delete": false, "file_type": 1, "original_file_name": "HTJ550402FW#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c612089c4b374a039d52b0745ba6ae13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c612089c4b374a039d52b0745ba6ae13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c612089c4b374a039d52b0745ba6ae13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c612089c4b374a039d52b0745ba6ae13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c612089c4b374a039d52b0745ba6ae13.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AaVw50GJHeJS_vshuLMhgpcAYQ=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.654565+00 2025-12-09 10:15:28.654572+00 15052 LZ1338#匹布 SPMX-20240815310251 \N \N \N 1 \N [{"file_id": "fe940831-0c76-49e7-a43c-ac5c10e83744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d33bdcf6568b4f85b32bbeffbc314254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d33bdcf6568b4f85b32bbeffbc314254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d33bdcf6568b4f85b32bbeffbc314254.jpg", "file_size": 17769, "is_delete": false, "file_type": 1, "original_file_name": "LZ1338#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bdcf6568b4f85b32bbeffbc314254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bdcf6568b4f85b32bbeffbc314254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33bdcf6568b4f85b32bbeffbc314254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d33bdcf6568b4f85b32bbeffbc314254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d33bdcf6568b4f85b32bbeffbc314254.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_brk-IGKBZUOGDZT408yUZJiWk=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.657015+00 2025-12-09 10:15:28.657021+00 15053 85001#6码 SPMX-20240815310252 \N \N \N 1 \N [{"file_id": "c104963e-10b9-450d-98b6-cbc217ec3e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00763a53130342c6960bfed9ace4509e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00763a53130342c6960bfed9ace4509e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00763a53130342c6960bfed9ace4509e.jpg", "file_size": 16724, "is_delete": false, "file_type": 1, "original_file_name": "85001#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00763a53130342c6960bfed9ace4509e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00763a53130342c6960bfed9ace4509e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00763a53130342c6960bfed9ace4509e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00763a53130342c6960bfed9ace4509e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00763a53130342c6960bfed9ace4509e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R5Gw_w63cyoEtM10JK7zpzrttE4=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.659376+00 2025-12-09 10:15:28.659381+00 15054 CAS24-03# SPMX-20240815310256 \N \N \N 1 \N [{"file_id": "f5a0a65c-de75-4d5d-90ab-07415bc271ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d7dedbaa0bc43a9ae419d3ddafc427b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d7dedbaa0bc43a9ae419d3ddafc427b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d7dedbaa0bc43a9ae419d3ddafc427b.jpg", "file_size": 41787, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-03#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7dedbaa0bc43a9ae419d3ddafc427b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7dedbaa0bc43a9ae419d3ddafc427b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7dedbaa0bc43a9ae419d3ddafc427b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d7dedbaa0bc43a9ae419d3ddafc427b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d7dedbaa0bc43a9ae419d3ddafc427b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mnsr-xshDTXUdAkt32ptzAS9kE=", "createTime": "2024-08-15 14:58:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.661733+00 2025-12-09 10:15:28.661738+00 15055 HTJ550402FW#S SPMX-20240815310270 \N \N \N 1 \N [{"file_id": "37ffd465-c1ee-47af-9757-b14183056294", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3c6623a593445089ca312b51e1d46f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3c6623a593445089ca312b51e1d46f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3c6623a593445089ca312b51e1d46f.jpg", "file_size": 13147, "is_delete": false, "file_type": 1, "original_file_name": "HTJ550402FW#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c6623a593445089ca312b51e1d46f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c6623a593445089ca312b51e1d46f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3c6623a593445089ca312b51e1d46f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3c6623a593445089ca312b51e1d46f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3c6623a593445089ca312b51e1d46f.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HyesmlG4G2bqxepRey68tgfCyGc=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.664143+00 2025-12-09 10:15:28.664149+00 15056 JTSS599FW#VS-D3 SPMX-20240815310266 \N \N \N 1 \N [{"file_id": "a76e1da7-fac8-48f6-ad88-064e67f0bac7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "841d6c8fcbe2487caf6e4765bc758b6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "841d6c8fcbe2487caf6e4765bc758b6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "841d6c8fcbe2487caf6e4765bc758b6d.jpg", "file_size": 16678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS599FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841d6c8fcbe2487caf6e4765bc758b6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841d6c8fcbe2487caf6e4765bc758b6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841d6c8fcbe2487caf6e4765bc758b6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/841d6c8fcbe2487caf6e4765bc758b6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/841d6c8fcbe2487caf6e4765bc758b6d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rVfkdPsyN97g7pWzKwfvzpHbmA=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.666397+00 2025-12-09 10:15:28.666403+00 15057 DL31224#前幅黄色L SPMX-20240815310269 \N \N \N 1 \N [{"file_id": "8f9a92ad-f5f4-4395-a63e-9d618c5edb16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf47b1587d3c49ada1b354a5bbf048fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf47b1587d3c49ada1b354a5bbf048fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf47b1587d3c49ada1b354a5bbf048fe.jpg", "file_size": 16506, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47b1587d3c49ada1b354a5bbf048fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47b1587d3c49ada1b354a5bbf048fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47b1587d3c49ada1b354a5bbf048fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf47b1587d3c49ada1b354a5bbf048fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf47b1587d3c49ada1b354a5bbf048fe.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAiH39M1ou6dtpAVXaKwFW--EmU=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.668858+00 2025-12-09 10:15:28.668863+00 15058 85002#10码+12码 SPMX-20240815310272 \N \N \N 1 \N [{"file_id": "adb1e874-02ec-4746-9cd1-1c8cc9c75b5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "947c162fa8d247a6b44bcb6e222b6be0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "947c162fa8d247a6b44bcb6e222b6be0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "947c162fa8d247a6b44bcb6e222b6be0.jpg", "file_size": 18679, "is_delete": false, "file_type": 1, "original_file_name": "85002#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947c162fa8d247a6b44bcb6e222b6be0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947c162fa8d247a6b44bcb6e222b6be0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/947c162fa8d247a6b44bcb6e222b6be0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/947c162fa8d247a6b44bcb6e222b6be0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/947c162fa8d247a6b44bcb6e222b6be0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O68WqvwoOGFtagQ_uYWZSJoCMZg=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.671358+00 2025-12-09 10:15:28.671363+00 15059 23-2126#A7-领子3XL SPMX-20240815310262 \N \N \N 1 \N [{"file_id": "a61ed196-1d05-4fb8-b198-5d21d04354fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa834fe5c73a45f09a6cfb18c37537a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa834fe5c73a45f09a6cfb18c37537a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa834fe5c73a45f09a6cfb18c37537a0.jpg", "file_size": 12994, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa834fe5c73a45f09a6cfb18c37537a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa834fe5c73a45f09a6cfb18c37537a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa834fe5c73a45f09a6cfb18c37537a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa834fe5c73a45f09a6cfb18c37537a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa834fe5c73a45f09a6cfb18c37537a0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjRJEphyffM4UVfydEtrncdywIA=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.673832+00 2025-12-09 10:15:28.673837+00 15060 85001#乱花 SPMX-20240815310261 \N \N \N 1 \N [{"file_id": "10a228f5-5eba-496e-ba96-1ce6a3864a7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg", "file_size": 4029, "is_delete": false, "file_type": 1, "original_file_name": "85001#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e67cc00f3a9a4b9ca9f2bb47f564b0db.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ts0TojRrtRZL_yCjAmz0Qdmq14Q=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.67635+00 2025-12-09 10:15:28.676357+00 15061 LZ1339#上身1号色 SPMX-20240815310263 \N \N \N 1 \N [{"file_id": "310ac671-c8ea-4864-8153-caa9192ffea5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66f3a6711a334a548131aa05f62a82c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66f3a6711a334a548131aa05f62a82c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66f3a6711a334a548131aa05f62a82c4.jpg", "file_size": 19368, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f3a6711a334a548131aa05f62a82c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f3a6711a334a548131aa05f62a82c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f3a6711a334a548131aa05f62a82c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66f3a6711a334a548131aa05f62a82c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66f3a6711a334a548131aa05f62a82c4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4QIRXINGOzNbC45g-wvPo2TrO8g=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.67889+00 2025-12-09 10:15:28.678896+00 15062 FR10318#主色17码 SPMX-20240815310265 \N \N \N 1 \N [{"file_id": "fc49aee6-075d-41f4-bf07-2763d0241947", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "502e67cb704a4d75997b49abc4b2c5db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "502e67cb704a4d75997b49abc4b2c5db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "502e67cb704a4d75997b49abc4b2c5db.jpg", "file_size": 55118, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色17码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502e67cb704a4d75997b49abc4b2c5db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502e67cb704a4d75997b49abc4b2c5db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502e67cb704a4d75997b49abc4b2c5db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/502e67cb704a4d75997b49abc4b2c5db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/502e67cb704a4d75997b49abc4b2c5db.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3tQ7r7xwP6uq4bpnJryx6iCREE=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.681344+00 2025-12-09 10:15:28.68135+00 15063 121#-杏色 SPMX-20240815310264 \N \N \N 1 \N [{"file_id": "7a8f2fdd-c390-453b-8416-27ce3302109b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2524a5a6dd6475a8409619016111d9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2524a5a6dd6475a8409619016111d9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2524a5a6dd6475a8409619016111d9e.jpg", "file_size": 44038, "is_delete": false, "file_type": 1, "original_file_name": "121#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2524a5a6dd6475a8409619016111d9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2524a5a6dd6475a8409619016111d9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2524a5a6dd6475a8409619016111d9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2524a5a6dd6475a8409619016111d9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2524a5a6dd6475a8409619016111d9e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xpp8YfuyuSs1aDaMwKfAxYWOlk=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.683555+00 2025-12-09 10:15:28.683561+00 15064 LJH1823-1#黄色 SPMX-20240815310271 \N \N \N 1 \N [{"file_id": "a480d5e4-8663-4d6f-8f6c-8dc77d4b2b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "047f54e44c834837ba0fae39cb4d7604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "047f54e44c834837ba0fae39cb4d7604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "047f54e44c834837ba0fae39cb4d7604.jpg", "file_size": 71636, "is_delete": false, "file_type": 1, "original_file_name": "LJH1823-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047f54e44c834837ba0fae39cb4d7604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047f54e44c834837ba0fae39cb4d7604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047f54e44c834837ba0fae39cb4d7604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/047f54e44c834837ba0fae39cb4d7604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/047f54e44c834837ba0fae39cb4d7604.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LYnbPAG8T2v2uADkQ-zE3-U29Fw=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.685918+00 2025-12-09 10:15:28.685923+00 15065 0006-40FWE#VS-D3 SPMX-20240815310268 \N \N \N 1 \N [{"file_id": "26d59b74-44da-44e6-ad44-e44f5fcfeef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "992989b2c06244cfa5625606035185bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "992989b2c06244cfa5625606035185bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "992989b2c06244cfa5625606035185bd.jpg", "file_size": 17677, "is_delete": false, "file_type": 1, "original_file_name": "0006-40FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/992989b2c06244cfa5625606035185bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/992989b2c06244cfa5625606035185bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/992989b2c06244cfa5625606035185bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/992989b2c06244cfa5625606035185bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/992989b2c06244cfa5625606035185bd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-KVg-s7h5AcUWHPU1qVLgW-6oQ=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.688378+00 2025-12-09 10:15:28.688384+00 15066 CAS24-04# SPMX-20240815310267 \N \N \N 1 \N [{"file_id": "ade3738b-3f9c-4afe-8910-25ea8caca20c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44f33787f22a41a49d00855d1aea8a48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44f33787f22a41a49d00855d1aea8a48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44f33787f22a41a49d00855d1aea8a48.jpg", "file_size": 64189, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-04#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f33787f22a41a49d00855d1aea8a48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f33787f22a41a49d00855d1aea8a48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f33787f22a41a49d00855d1aea8a48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44f33787f22a41a49d00855d1aea8a48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44f33787f22a41a49d00855d1aea8a48.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrnixM7cUeDGUzZ_5UQQ786BFuQ=", "createTime": "2024-08-15 14:58:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.690592+00 2025-12-09 10:15:28.690598+00 15067 23-2126#A7-领子4XL SPMX-20240815310277 \N \N \N 1 \N [{"file_id": "3b939627-817c-4e03-8234-a3f93af161a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4ec04a3225b40a6b1b384d156fbb0d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4ec04a3225b40a6b1b384d156fbb0d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4ec04a3225b40a6b1b384d156fbb0d3.jpg", "file_size": 13194, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ec04a3225b40a6b1b384d156fbb0d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ec04a3225b40a6b1b384d156fbb0d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ec04a3225b40a6b1b384d156fbb0d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4ec04a3225b40a6b1b384d156fbb0d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4ec04a3225b40a6b1b384d156fbb0d3.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k4wyvJPG50a7IZFOTwnIHwQA9eg=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.692968+00 2025-12-09 10:15:28.692974+00 15068 CAS24-12# SPMX-20240815310274 \N \N \N 1 \N [{"file_id": "8d1e785b-11fb-4c8d-9702-de1ffbeca702", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8fd768e9a2640c8a7a1d1333f886920.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8fd768e9a2640c8a7a1d1333f886920.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8fd768e9a2640c8a7a1d1333f886920.jpg", "file_size": 36732, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-12#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fd768e9a2640c8a7a1d1333f886920.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fd768e9a2640c8a7a1d1333f886920.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8fd768e9a2640c8a7a1d1333f886920.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8fd768e9a2640c8a7a1d1333f886920.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8fd768e9a2640c8a7a1d1333f886920.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A1rsEz1NwHu4C2_0-cUM4q10m8o=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.695308+00 2025-12-09 10:15:28.695313+00 15069 DL31224#前幅黄色XL SPMX-20240815310278 \N \N \N 1 \N [{"file_id": "4f6c93a3-547f-4d13-9ab2-88e48f8f8c8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b6b05d90e284b5aaf6389b1f45b5df5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b6b05d90e284b5aaf6389b1f45b5df5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b6b05d90e284b5aaf6389b1f45b5df5.jpg", "file_size": 16634, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#前幅黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b6b05d90e284b5aaf6389b1f45b5df5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b6b05d90e284b5aaf6389b1f45b5df5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b6b05d90e284b5aaf6389b1f45b5df5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b6b05d90e284b5aaf6389b1f45b5df5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b6b05d90e284b5aaf6389b1f45b5df5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kSGei92NE9XeM8yyx5pVzgVGZfU=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.697602+00 2025-12-09 10:15:28.697608+00 15070 LZ1339#上身2号色 SPMX-20240815310273 \N \N \N 1 \N [{"file_id": "3ac5448c-fc0f-4ddd-956c-3b4b9823807e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c3a49f8ab2c40f7801605ca9e6057f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c3a49f8ab2c40f7801605ca9e6057f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c3a49f8ab2c40f7801605ca9e6057f2.jpg", "file_size": 18534, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3a49f8ab2c40f7801605ca9e6057f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3a49f8ab2c40f7801605ca9e6057f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3a49f8ab2c40f7801605ca9e6057f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c3a49f8ab2c40f7801605ca9e6057f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c3a49f8ab2c40f7801605ca9e6057f2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKS8w0nNC47g-7yj8yZtvdy2gAI=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.700067+00 2025-12-09 10:15:28.700072+00 15071 JTSS600FW#VS-D3 SPMX-20240815310275 \N \N \N 1 \N [{"file_id": "dcfc61cd-0aaa-48ae-8252-0e637063b90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "573824c3445447e980346b17cf0fc362.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "573824c3445447e980346b17cf0fc362.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "573824c3445447e980346b17cf0fc362.jpg", "file_size": 18115, "is_delete": false, "file_type": 1, "original_file_name": "JTSS600FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/573824c3445447e980346b17cf0fc362.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/573824c3445447e980346b17cf0fc362.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/573824c3445447e980346b17cf0fc362.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/573824c3445447e980346b17cf0fc362.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/573824c3445447e980346b17cf0fc362.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_lA6qdGd64TqVDMDzNdroZw-r0=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.702495+00 2025-12-09 10:15:28.702501+00 15072 0006-40FWE#番禺调色 SPMX-20240815310276 \N \N \N 1 \N [{"file_id": "187d181c-4416-44ff-a253-0d782b781ddb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5299299aad0649d989538c5160e27359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5299299aad0649d989538c5160e27359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5299299aad0649d989538c5160e27359.jpg", "file_size": 18995, "is_delete": false, "file_type": 1, "original_file_name": "0006-40FWE#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5299299aad0649d989538c5160e27359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5299299aad0649d989538c5160e27359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5299299aad0649d989538c5160e27359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5299299aad0649d989538c5160e27359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5299299aad0649d989538c5160e27359.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIgfgcL2J3zeU55tuRuBAe8RLTc=", "createTime": "2024-08-15 14:58:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.70476+00 2025-12-09 10:15:28.704765+00 15073 LJH1823-1#黑色 SPMX-20240815310280 \N \N \N 1 \N [{"file_id": "ce044955-e211-455b-b124-8b4f0691c326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b2a3485e83468c81f27f077cc077c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b2a3485e83468c81f27f077cc077c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b2a3485e83468c81f27f077cc077c7.jpg", "file_size": 62857, "is_delete": false, "file_type": 1, "original_file_name": "LJH1823-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2a3485e83468c81f27f077cc077c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2a3485e83468c81f27f077cc077c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2a3485e83468c81f27f077cc077c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b2a3485e83468c81f27f077cc077c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b2a3485e83468c81f27f077cc077c7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q4Yvq_Vt9ujjdVhGiUvkp5COEW8=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.707242+00 2025-12-09 10:15:28.707248+00 15074 121#-灰色 SPMX-20240815310279 \N \N \N 1 \N [{"file_id": "06c02d83-3c5a-4dd9-bb76-1cf59207a4b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9ff2fd3ea2c436e813b0962f5468f1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9ff2fd3ea2c436e813b0962f5468f1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9ff2fd3ea2c436e813b0962f5468f1b.jpg", "file_size": 56042, "is_delete": false, "file_type": 1, "original_file_name": "121#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ff2fd3ea2c436e813b0962f5468f1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ff2fd3ea2c436e813b0962f5468f1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ff2fd3ea2c436e813b0962f5468f1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9ff2fd3ea2c436e813b0962f5468f1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9ff2fd3ea2c436e813b0962f5468f1b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GpK4q3XjJ1kai1rPl1wXJWNyTc=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.709688+00 2025-12-09 10:15:28.709693+00 15075 HTJ550402FW#XL SPMX-20240815310281 \N \N \N 1 \N [{"file_id": "b0e0c63c-382b-4476-bba4-118a9b6e7ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9948d3e453a8461b9325351793c6f787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9948d3e453a8461b9325351793c6f787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9948d3e453a8461b9325351793c6f787.jpg", "file_size": 12671, "is_delete": false, "file_type": 1, "original_file_name": "HTJ550402FW#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9948d3e453a8461b9325351793c6f787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9948d3e453a8461b9325351793c6f787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9948d3e453a8461b9325351793c6f787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9948d3e453a8461b9325351793c6f787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9948d3e453a8461b9325351793c6f787.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPGf6lzF_qwgSR0DMDDSXCLrCw0=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.712199+00 2025-12-09 10:15:28.712206+00 15076 121#-白色 SPMX-20240815310290 \N \N \N 1 \N [{"file_id": "c5c6f58d-2119-4452-b073-9797b5ef1498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e31904d72e42adbaa79a68d15ad8a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e31904d72e42adbaa79a68d15ad8a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e31904d72e42adbaa79a68d15ad8a6.jpg", "file_size": 45009, "is_delete": false, "file_type": 1, "original_file_name": "121#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e31904d72e42adbaa79a68d15ad8a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e31904d72e42adbaa79a68d15ad8a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e31904d72e42adbaa79a68d15ad8a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e31904d72e42adbaa79a68d15ad8a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e31904d72e42adbaa79a68d15ad8a6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKJt0JfTbkGLzFJlWlm4jLCgHa0=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.714917+00 2025-12-09 10:15:28.714923+00 15077 LJH1828#咖色 SPMX-20240815310291 \N \N \N 1 \N [{"file_id": "9a7cbe76-ff72-41a4-8504-ea48a4f68db7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d545168400740c09f3235d12cefe167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d545168400740c09f3235d12cefe167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d545168400740c09f3235d12cefe167.jpg", "file_size": 75055, "is_delete": false, "file_type": 1, "original_file_name": "LJH1828#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d545168400740c09f3235d12cefe167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d545168400740c09f3235d12cefe167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d545168400740c09f3235d12cefe167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d545168400740c09f3235d12cefe167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d545168400740c09f3235d12cefe167.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WmO-pXjBgMeaAjFC8Lm2BaUcJGI=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.71745+00 2025-12-09 10:15:28.717456+00 15078 DL31224#后幅兰绿 SPMX-20240815310284 \N \N \N 1 \N [{"file_id": "2acf48ad-9e3f-4cf9-88e8-381f68a739fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff7d194d6b6e4315a22bb4a43d73ff92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff7d194d6b6e4315a22bb4a43d73ff92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff7d194d6b6e4315a22bb4a43d73ff92.jpg", "file_size": 12990, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7d194d6b6e4315a22bb4a43d73ff92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7d194d6b6e4315a22bb4a43d73ff92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7d194d6b6e4315a22bb4a43d73ff92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff7d194d6b6e4315a22bb4a43d73ff92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff7d194d6b6e4315a22bb4a43d73ff92.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvTITZsQAt8nyGDdGmUhJ9TCX68=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.720042+00 2025-12-09 10:15:28.720048+00 15079 0006-40FWF#V5曲线 SPMX-20240815310286 \N \N \N 1 \N [{"file_id": "47cb520f-1703-4b1a-b1f5-8e3239c5ab8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0763cad85231497c9f006fa1cebf2cbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0763cad85231497c9f006fa1cebf2cbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0763cad85231497c9f006fa1cebf2cbb.jpg", "file_size": 18017, "is_delete": false, "file_type": 1, "original_file_name": "0006-40FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0763cad85231497c9f006fa1cebf2cbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0763cad85231497c9f006fa1cebf2cbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0763cad85231497c9f006fa1cebf2cbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0763cad85231497c9f006fa1cebf2cbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0763cad85231497c9f006fa1cebf2cbb.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nk9_x95loisrud684lDqSZOQocc=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.722477+00 2025-12-09 10:15:28.722482+00 15080 23-2126#A8-3XL SPMX-20240815310288 \N \N \N 1 \N [{"file_id": "16cfb25b-d858-4720-9c07-9179862be60d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e65b56448b34947b3401583813d799b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e65b56448b34947b3401583813d799b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e65b56448b34947b3401583813d799b.jpg", "file_size": 15600, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e65b56448b34947b3401583813d799b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e65b56448b34947b3401583813d799b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e65b56448b34947b3401583813d799b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e65b56448b34947b3401583813d799b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e65b56448b34947b3401583813d799b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8Q_wRNyj2USHyy63o2DNcK9nLg=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.724786+00 2025-12-09 10:15:28.724792+00 15081 JTSS601FW#VS-D3 SPMX-20240815310289 \N \N \N 1 \N [{"file_id": "17d1d607-c82e-47e6-9dfa-58316d3377e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88cf36be14fc4a289c5064d68613f395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88cf36be14fc4a289c5064d68613f395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88cf36be14fc4a289c5064d68613f395.jpg", "file_size": 8016, "is_delete": false, "file_type": 1, "original_file_name": "JTSS601FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88cf36be14fc4a289c5064d68613f395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88cf36be14fc4a289c5064d68613f395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88cf36be14fc4a289c5064d68613f395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88cf36be14fc4a289c5064d68613f395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88cf36be14fc4a289c5064d68613f395.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RS08xv-wjCqIQByvyTwkmcz0zO0=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.727313+00 2025-12-09 10:15:28.727319+00 15082 FR10318#主色17码配件 SPMX-20240815310283 \N \N \N 1 \N [{"file_id": "bfb74f4c-576b-4c09-a19a-8c5185fafbb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93004fdf05c74a2b98b1629136b1856a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93004fdf05c74a2b98b1629136b1856a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93004fdf05c74a2b98b1629136b1856a.jpg", "file_size": 52202, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色17码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93004fdf05c74a2b98b1629136b1856a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93004fdf05c74a2b98b1629136b1856a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93004fdf05c74a2b98b1629136b1856a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93004fdf05c74a2b98b1629136b1856a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93004fdf05c74a2b98b1629136b1856a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cggUOrFrkXYpyjYgTK_DPiJSPbU=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.729814+00 2025-12-09 10:15:28.729821+00 15083 LZ1339#上身3号色 SPMX-20240815310285 \N \N \N 1 \N [{"file_id": "6b809f08-7e85-46f8-8763-30495398cf88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5287f017e4494bf3aab912c54ef41ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5287f017e4494bf3aab912c54ef41ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5287f017e4494bf3aab912c54ef41ed9.jpg", "file_size": 18487, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5287f017e4494bf3aab912c54ef41ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5287f017e4494bf3aab912c54ef41ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5287f017e4494bf3aab912c54ef41ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5287f017e4494bf3aab912c54ef41ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5287f017e4494bf3aab912c54ef41ed9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gfG_MFQvzpyFxF0ad1NrWuP1vI=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.732292+00 2025-12-09 10:15:28.732297+00 15084 CAS24-17# SPMX-20240815310287 \N \N \N 1 \N [{"file_id": "d850d173-38be-45f5-b9b9-70cc8029c843", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a78bb29ec6d46dd903ad7f295ea7b85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a78bb29ec6d46dd903ad7f295ea7b85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a78bb29ec6d46dd903ad7f295ea7b85.jpg", "file_size": 59923, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-17#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a78bb29ec6d46dd903ad7f295ea7b85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a78bb29ec6d46dd903ad7f295ea7b85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a78bb29ec6d46dd903ad7f295ea7b85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a78bb29ec6d46dd903ad7f295ea7b85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a78bb29ec6d46dd903ad7f295ea7b85.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAtBy0JxI9zqEs1C9zZJHgYDPnA=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.73481+00 2025-12-09 10:15:28.734816+00 15085 85002#14码 SPMX-20240815310282 \N \N \N 1 \N [{"file_id": "c571cf4d-0698-4cfd-872a-99e5aefff9c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49c41ee7f7814803b766fe06498f8057.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49c41ee7f7814803b766fe06498f8057.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49c41ee7f7814803b766fe06498f8057.jpg", "file_size": 17470, "is_delete": false, "file_type": 1, "original_file_name": "85002#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c41ee7f7814803b766fe06498f8057.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c41ee7f7814803b766fe06498f8057.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49c41ee7f7814803b766fe06498f8057.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49c41ee7f7814803b766fe06498f8057.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49c41ee7f7814803b766fe06498f8057.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgJg-Vbjh9ZtZPoK5f12eMcKmn8=", "createTime": "2024-08-15 14:58:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.737287+00 2025-12-09 10:15:28.737292+00 15086 0006-41FWE#VS-D3 SPMX-20240815310294 \N \N \N 1 \N [{"file_id": "4c1ea70c-156d-4f87-afcb-9cb24d26a363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ba84385159f425b9f7100aa84f41a20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ba84385159f425b9f7100aa84f41a20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ba84385159f425b9f7100aa84f41a20.jpg", "file_size": 16730, "is_delete": false, "file_type": 1, "original_file_name": "0006-41FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba84385159f425b9f7100aa84f41a20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba84385159f425b9f7100aa84f41a20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba84385159f425b9f7100aa84f41a20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ba84385159f425b9f7100aa84f41a20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ba84385159f425b9f7100aa84f41a20.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L3PJpzZAr84JqBvkh3j9EVd7xDY=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.739836+00 2025-12-09 10:15:28.739841+00 15087 LZ1339#上身4号色 SPMX-20240815310299 \N \N \N 1 \N [{"file_id": "c931ab4e-753a-476c-a3b1-11faf34053a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0f19c2ff9e74db0bb827d737041b401.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0f19c2ff9e74db0bb827d737041b401.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0f19c2ff9e74db0bb827d737041b401.jpg", "file_size": 18183, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f19c2ff9e74db0bb827d737041b401.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f19c2ff9e74db0bb827d737041b401.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f19c2ff9e74db0bb827d737041b401.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0f19c2ff9e74db0bb827d737041b401.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0f19c2ff9e74db0bb827d737041b401.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KJb_0XdH2sm1Z6s3vwXYCM5REVc=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.742399+00 2025-12-09 10:15:28.742405+00 15088 JTSS602FW#VS-D3 SPMX-20240815310300 \N \N \N 1 \N [{"file_id": "f2d9d667-cb09-48e9-9a36-d551736496a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "364c6a052534456fb91efcd615d3f4f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "364c6a052534456fb91efcd615d3f4f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "364c6a052534456fb91efcd615d3f4f7.jpg", "file_size": 22065, "is_delete": false, "file_type": 1, "original_file_name": "JTSS602FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364c6a052534456fb91efcd615d3f4f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364c6a052534456fb91efcd615d3f4f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364c6a052534456fb91efcd615d3f4f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/364c6a052534456fb91efcd615d3f4f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/364c6a052534456fb91efcd615d3f4f7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VHa-09aFNwa5F53FQe14gf0Ic9Y=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.744921+00 2025-12-09 10:15:28.744926+00 15089 CAS24-2# SPMX-20240815310298 \N \N \N 1 \N [{"file_id": "b8bbdee3-ae37-405e-955b-d08838086fd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cb674db47fc4435a45c2696852eb576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cb674db47fc4435a45c2696852eb576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cb674db47fc4435a45c2696852eb576.jpg", "file_size": 51371, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-2#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb674db47fc4435a45c2696852eb576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb674db47fc4435a45c2696852eb576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb674db47fc4435a45c2696852eb576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cb674db47fc4435a45c2696852eb576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cb674db47fc4435a45c2696852eb576.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LF3fwosX2lSB9MWEq2PPL6kgG_w=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.7474+00 2025-12-09 10:15:28.747406+00 15090 LJH1828#杏色 SPMX-20240815310302 \N \N \N 1 \N [{"file_id": "85c98321-41a3-42a4-8df3-e054f96a86e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e6e608c362f46d7b9bdf07462a64d8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e6e608c362f46d7b9bdf07462a64d8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e6e608c362f46d7b9bdf07462a64d8e.jpg", "file_size": 76282, "is_delete": false, "file_type": 1, "original_file_name": "LJH1828#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6e608c362f46d7b9bdf07462a64d8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6e608c362f46d7b9bdf07462a64d8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6e608c362f46d7b9bdf07462a64d8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e6e608c362f46d7b9bdf07462a64d8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e6e608c362f46d7b9bdf07462a64d8e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSG_UCS0kItDK5nCb4rXX6FJaDw=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.749873+00 2025-12-09 10:15:28.749878+00 15091 HW002FWE#VS-D3 SPMX-20240815310303 \N \N \N 1 \N [{"file_id": "6c915b17-9251-4172-8bda-5d6eeecd0a35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e770c5884c1d4ffa9fece19cafcdff1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e770c5884c1d4ffa9fece19cafcdff1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e770c5884c1d4ffa9fece19cafcdff1b.jpg", "file_size": 16246, "is_delete": false, "file_type": 1, "original_file_name": "HW002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e770c5884c1d4ffa9fece19cafcdff1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e770c5884c1d4ffa9fece19cafcdff1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e770c5884c1d4ffa9fece19cafcdff1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e770c5884c1d4ffa9fece19cafcdff1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e770c5884c1d4ffa9fece19cafcdff1b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j65e0Wn09lChDkY2d9r6ITQv9WM=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.752131+00 2025-12-09 10:15:28.752136+00 15092 HW001FWE#VS-D3 SPMX-20240815310292 \N \N \N 1 \N [{"file_id": "b76db24a-8611-4da3-a027-065c13bb8bee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "166dffd1ce5e47b9a0767be3ca2cc817.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "166dffd1ce5e47b9a0767be3ca2cc817.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "166dffd1ce5e47b9a0767be3ca2cc817.jpg", "file_size": 27968, "is_delete": false, "file_type": 1, "original_file_name": "HW001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166dffd1ce5e47b9a0767be3ca2cc817.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166dffd1ce5e47b9a0767be3ca2cc817.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166dffd1ce5e47b9a0767be3ca2cc817.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/166dffd1ce5e47b9a0767be3ca2cc817.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/166dffd1ce5e47b9a0767be3ca2cc817.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LoD8B-6ScIZ-TceKT9AZxCKRPdM=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.754599+00 2025-12-09 10:15:28.754605+00 15093 DL31224#后幅枣红 SPMX-20240815310305 \N \N \N 1 \N [{"file_id": "a51fe025-eee4-4d32-924a-5908d3355a84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "938a4718e5c444f4998efb1b85e61c6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "938a4718e5c444f4998efb1b85e61c6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "938a4718e5c444f4998efb1b85e61c6f.jpg", "file_size": 13217, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938a4718e5c444f4998efb1b85e61c6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938a4718e5c444f4998efb1b85e61c6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938a4718e5c444f4998efb1b85e61c6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/938a4718e5c444f4998efb1b85e61c6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/938a4718e5c444f4998efb1b85e61c6f.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NbHwtFUxmkcDQNtfGcXiIK3iLqM=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.757107+00 2025-12-09 10:15:28.757113+00 15094 121#-黑色 SPMX-20240815310301 \N \N \N 1 \N [{"file_id": "3d5a6502-2461-4c09-9930-02fc9eb2ab06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c74b680148ef4e53976991a5daad6f44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c74b680148ef4e53976991a5daad6f44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c74b680148ef4e53976991a5daad6f44.jpg", "file_size": 43905, "is_delete": false, "file_type": 1, "original_file_name": "121#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c74b680148ef4e53976991a5daad6f44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c74b680148ef4e53976991a5daad6f44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c74b680148ef4e53976991a5daad6f44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c74b680148ef4e53976991a5daad6f44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c74b680148ef4e53976991a5daad6f44.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDVr0LE9gP-zxprDz25UYePycsQ=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.759536+00 2025-12-09 10:15:28.759542+00 15095 23-2126#A8-4XL SPMX-20240815310297 \N \N \N 1 \N [{"file_id": "1401d84d-9d5a-4f89-9249-d2c52723ddc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e5ff935d8794374b856102a1ec75ebe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e5ff935d8794374b856102a1ec75ebe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e5ff935d8794374b856102a1ec75ebe.jpg", "file_size": 15051, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ff935d8794374b856102a1ec75ebe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ff935d8794374b856102a1ec75ebe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ff935d8794374b856102a1ec75ebe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e5ff935d8794374b856102a1ec75ebe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e5ff935d8794374b856102a1ec75ebe.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:801Apl2ssiur_1VSsfTFzm4sHGA=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.762072+00 2025-12-09 10:15:28.762078+00 15096 85002#4码+8码 SPMX-20240815310295 \N \N \N 1 \N [{"file_id": "99ca5c58-597a-40b8-be7f-d8a4742cf846", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9c4d87391064d4fa7e634c618b114dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9c4d87391064d4fa7e634c618b114dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9c4d87391064d4fa7e634c618b114dc.jpg", "file_size": 18688, "is_delete": false, "file_type": 1, "original_file_name": "85002#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c4d87391064d4fa7e634c618b114dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c4d87391064d4fa7e634c618b114dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c4d87391064d4fa7e634c618b114dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9c4d87391064d4fa7e634c618b114dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9c4d87391064d4fa7e634c618b114dc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOROoSOdRhmg_37MdJJuz58fko8=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.764561+00 2025-12-09 10:15:28.764567+00 15097 0006-41FWE#番禺调色 SPMX-20240815310304 \N \N \N 1 \N [{"file_id": "84bbf8e4-b5f0-4197-b183-cf860e9b25a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dddd768162794e6c80e949f3a9bde61c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dddd768162794e6c80e949f3a9bde61c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dddd768162794e6c80e949f3a9bde61c.jpg", "file_size": 17657, "is_delete": false, "file_type": 1, "original_file_name": "0006-41FWE#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddd768162794e6c80e949f3a9bde61c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddd768162794e6c80e949f3a9bde61c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddd768162794e6c80e949f3a9bde61c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dddd768162794e6c80e949f3a9bde61c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dddd768162794e6c80e949f3a9bde61c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQohvCxCRZ9itFQLQVJndHehKEY=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.767093+00 2025-12-09 10:15:28.767098+00 15098 FR10318#主色18码 SPMX-20240815310296 \N \N \N 1 \N [{"file_id": "85d79934-d32a-4628-b0cc-8f7e48a3c81a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e03f80598cda470db4c7eb99a82d56b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e03f80598cda470db4c7eb99a82d56b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e03f80598cda470db4c7eb99a82d56b5.jpg", "file_size": 56819, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色18码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f80598cda470db4c7eb99a82d56b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f80598cda470db4c7eb99a82d56b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03f80598cda470db4c7eb99a82d56b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e03f80598cda470db4c7eb99a82d56b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e03f80598cda470db4c7eb99a82d56b5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_8ifcIANw1VCytoP2WQt23dWJE=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.769551+00 2025-12-09 10:15:28.769556+00 15099 DL31224#后幅彩兰 SPMX-20240815310293 \N \N \N 1 \N [{"file_id": "1093afdf-6d6f-4f9f-9f0f-ce01d105188a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f01ed7b0db9421883d9e9605c127ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f01ed7b0db9421883d9e9605c127ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f01ed7b0db9421883d9e9605c127ef6.jpg", "file_size": 13702, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f01ed7b0db9421883d9e9605c127ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f01ed7b0db9421883d9e9605c127ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f01ed7b0db9421883d9e9605c127ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f01ed7b0db9421883d9e9605c127ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f01ed7b0db9421883d9e9605c127ef6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4S5p4ej8gB7_T_fA3iGWTVuDZ4=", "createTime": "2024-08-15 14:58:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.77206+00 2025-12-09 10:15:28.772065+00 15100 0006-41FWF#V5曲线 SPMX-20240815310314 \N \N \N 1 \N [{"file_id": "ef315f8e-72a7-4f90-a50e-7396ce39df74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d46e57744f44228934b370786db0450.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d46e57744f44228934b370786db0450.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d46e57744f44228934b370786db0450.jpg", "file_size": 22116, "is_delete": false, "file_type": 1, "original_file_name": "0006-41FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46e57744f44228934b370786db0450.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46e57744f44228934b370786db0450.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d46e57744f44228934b370786db0450.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d46e57744f44228934b370786db0450.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d46e57744f44228934b370786db0450.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7MCZW88ydVZiQf-GSPVg0fUwDI8=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.774607+00 2025-12-09 10:15:28.774613+00 15101 FR10318#主色19码 SPMX-20240815310320 \N \N \N 1 \N [{"file_id": "9e42cbb5-33a2-4e63-8c7b-f353c2f9f6c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3ccc3a5a77e44568c62ee16e5902c98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3ccc3a5a77e44568c62ee16e5902c98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3ccc3a5a77e44568c62ee16e5902c98.jpg", "file_size": 54442, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色19码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3ccc3a5a77e44568c62ee16e5902c98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3ccc3a5a77e44568c62ee16e5902c98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3ccc3a5a77e44568c62ee16e5902c98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3ccc3a5a77e44568c62ee16e5902c98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3ccc3a5a77e44568c62ee16e5902c98.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwkAmZISyarvRdY8ME8c5EXNmvw=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.77719+00 2025-12-09 10:15:28.777196+00 15102 LJH1828#白色 SPMX-20240815310315 \N \N \N 1 \N [{"file_id": "2478f1c1-7677-49b1-bc23-ce36b996a949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06fb6832256945c196ccb0a40516c5ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06fb6832256945c196ccb0a40516c5ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06fb6832256945c196ccb0a40516c5ec.jpg", "file_size": 69893, "is_delete": false, "file_type": 1, "original_file_name": "LJH1828#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06fb6832256945c196ccb0a40516c5ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06fb6832256945c196ccb0a40516c5ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06fb6832256945c196ccb0a40516c5ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06fb6832256945c196ccb0a40516c5ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06fb6832256945c196ccb0a40516c5ec.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3fbUhrbOou6rM_ujD2cn_88HqY=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.779633+00 2025-12-09 10:15:28.779638+00 15103 CAS24-20# SPMX-20240815310310 \N \N \N 1 \N [{"file_id": "f0fa5d3b-4eb1-4ff2-9171-099c168902e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7e67d4327914289831cc39a43cf61cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7e67d4327914289831cc39a43cf61cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7e67d4327914289831cc39a43cf61cd.jpg", "file_size": 60844, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-20#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e67d4327914289831cc39a43cf61cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e67d4327914289831cc39a43cf61cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e67d4327914289831cc39a43cf61cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7e67d4327914289831cc39a43cf61cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7e67d4327914289831cc39a43cf61cd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjntsQd-v2gRrVcZAdqWlNHHcao=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.782131+00 2025-12-09 10:15:28.782137+00 15104 85002#乱花 SPMX-20240815310316 \N \N \N 1 \N [{"file_id": "dc6e9c66-38ec-4007-a63a-b95e4299d133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a0359dcf77e4e9583b51561cb2bdc76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a0359dcf77e4e9583b51561cb2bdc76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a0359dcf77e4e9583b51561cb2bdc76.jpg", "file_size": 5015, "is_delete": false, "file_type": 1, "original_file_name": "85002#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0359dcf77e4e9583b51561cb2bdc76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0359dcf77e4e9583b51561cb2bdc76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0359dcf77e4e9583b51561cb2bdc76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a0359dcf77e4e9583b51561cb2bdc76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a0359dcf77e4e9583b51561cb2bdc76.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02_H-wXk3elxTONvPhAz49DIu1A=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.784678+00 2025-12-09 10:15:28.784684+00 15105 DL31224#后幅浅粉 SPMX-20240815310317 \N \N \N 1 \N [{"file_id": "31f4cddf-fdb3-480a-996f-5ca6c60dbc63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f10da84add64ae097bf4fcf26cab4a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f10da84add64ae097bf4fcf26cab4a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f10da84add64ae097bf4fcf26cab4a1.jpg", "file_size": 12412, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f10da84add64ae097bf4fcf26cab4a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f10da84add64ae097bf4fcf26cab4a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f10da84add64ae097bf4fcf26cab4a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f10da84add64ae097bf4fcf26cab4a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f10da84add64ae097bf4fcf26cab4a1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaCUZaiW-Pt_CfV4qEnoIeVYWc0=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.787217+00 2025-12-09 10:15:28.787226+00 15106 23-2126#A8-领子4XL SPMX-20240815310318 \N \N \N 1 \N [{"file_id": "6320809b-43a2-475a-a0d7-d383365bff67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cc1b61121e44c5e910d0215481c6bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cc1b61121e44c5e910d0215481c6bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cc1b61121e44c5e910d0215481c6bab.jpg", "file_size": 12762, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc1b61121e44c5e910d0215481c6bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc1b61121e44c5e910d0215481c6bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc1b61121e44c5e910d0215481c6bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cc1b61121e44c5e910d0215481c6bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cc1b61121e44c5e910d0215481c6bab.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p-ozhDDohoaP8ubMWtDwscbJv4k=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.789716+00 2025-12-09 10:15:28.789722+00 15107 85002#6码 SPMX-20240815310306 \N \N \N 1 \N [{"file_id": "de90490b-7872-4f29-be49-1fdfc5d62460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87e15cfc4ec8445d9ab77b5d40723b54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87e15cfc4ec8445d9ab77b5d40723b54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87e15cfc4ec8445d9ab77b5d40723b54.jpg", "file_size": 18093, "is_delete": false, "file_type": 1, "original_file_name": "85002#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e15cfc4ec8445d9ab77b5d40723b54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e15cfc4ec8445d9ab77b5d40723b54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e15cfc4ec8445d9ab77b5d40723b54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87e15cfc4ec8445d9ab77b5d40723b54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87e15cfc4ec8445d9ab77b5d40723b54.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lA4_8i2SGfIFG4neC-qSzdX7ivg=", "createTime": "2024-08-15 14:58:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.792216+00 2025-12-09 10:15:28.792222+00 15108 LZ1339#匹布 SPMX-20240815310319 \N \N \N 1 \N [{"file_id": "91c40989-ea63-4454-9d8e-3ba33d48414c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cc0296b1d264e38a17508467611932a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cc0296b1d264e38a17508467611932a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cc0296b1d264e38a17508467611932a.jpg", "file_size": 23906, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc0296b1d264e38a17508467611932a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc0296b1d264e38a17508467611932a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cc0296b1d264e38a17508467611932a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cc0296b1d264e38a17508467611932a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cc0296b1d264e38a17508467611932a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Subyp9Y2bMP6J0NLbh7C-qd-0Uo=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.794799+00 2025-12-09 10:15:28.794804+00 15109 LZ1339#上身5号色 SPMX-20240815310309 \N \N \N 1 \N [{"file_id": "8d3f3687-c83e-42e5-8102-181988543387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38bb63aa04e14649ae89227560c69a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38bb63aa04e14649ae89227560c69a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38bb63aa04e14649ae89227560c69a85.jpg", "file_size": 18021, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb63aa04e14649ae89227560c69a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb63aa04e14649ae89227560c69a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38bb63aa04e14649ae89227560c69a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38bb63aa04e14649ae89227560c69a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38bb63aa04e14649ae89227560c69a85.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGamT016Eu-m2OA2hx4TyJFEISQ=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.797354+00 2025-12-09 10:15:28.79736+00 15110 FR10318#主色18码配件 SPMX-20240815310308 \N \N \N 1 \N [{"file_id": "6febcb1d-6cc6-45eb-9062-c67b9ee32d18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "966944dd30064a63bd062458d66a89d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "966944dd30064a63bd062458d66a89d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "966944dd30064a63bd062458d66a89d8.jpg", "file_size": 61946, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色18码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966944dd30064a63bd062458d66a89d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966944dd30064a63bd062458d66a89d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/966944dd30064a63bd062458d66a89d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/966944dd30064a63bd062458d66a89d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/966944dd30064a63bd062458d66a89d8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1c21wtUW1Shfwn8qLU5q_ImWMEk=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.800687+00 2025-12-09 10:15:28.800694+00 15111 23-2126#A8-领子3XL SPMX-20240815310307 \N \N \N 1 \N [{"file_id": "7d5841a0-8607-40e5-beec-11bee1df8701", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07dc2f2c6efc4f04a10759cfa292bde0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07dc2f2c6efc4f04a10759cfa292bde0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07dc2f2c6efc4f04a10759cfa292bde0.jpg", "file_size": 12213, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07dc2f2c6efc4f04a10759cfa292bde0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07dc2f2c6efc4f04a10759cfa292bde0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07dc2f2c6efc4f04a10759cfa292bde0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07dc2f2c6efc4f04a10759cfa292bde0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07dc2f2c6efc4f04a10759cfa292bde0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bn2EGbGD5hCBfIcCQfcqLQZwaY0=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.804111+00 2025-12-09 10:15:28.804116+00 15112 1210#VS-D3 SPMX-20240815310312 \N \N \N 1 \N [{"file_id": "579ec6f2-9146-4887-9a79-11fc6dbca346", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c947deaea5384be7a0cff8c0737d80c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c947deaea5384be7a0cff8c0737d80c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c947deaea5384be7a0cff8c0737d80c0.jpg", "file_size": 31290, "is_delete": false, "file_type": 1, "original_file_name": "1210#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c947deaea5384be7a0cff8c0737d80c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c947deaea5384be7a0cff8c0737d80c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c947deaea5384be7a0cff8c0737d80c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c947deaea5384be7a0cff8c0737d80c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c947deaea5384be7a0cff8c0737d80c0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6x6gMHZu9shUrwHSWc6KIafBQws=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.80757+00 2025-12-09 10:15:28.807575+00 15113 JTSS603FW#VS-D3 SPMX-20240815310311 \N \N \N 1 \N [{"file_id": "7dc01131-c2a8-4cc4-92d8-85ac195d78f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d73ea87cfe429093f698cb0999db8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d73ea87cfe429093f698cb0999db8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d73ea87cfe429093f698cb0999db8b.jpg", "file_size": 9279, "is_delete": false, "file_type": 1, "original_file_name": "JTSS603FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d73ea87cfe429093f698cb0999db8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d73ea87cfe429093f698cb0999db8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d73ea87cfe429093f698cb0999db8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d73ea87cfe429093f698cb0999db8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d73ea87cfe429093f698cb0999db8b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HEYRFBsKtXlMFm3qrGXYkfHSCOE=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.810319+00 2025-12-09 10:15:28.810324+00 15114 HW003FWE#VS-D3 SPMX-20240815310313 \N \N \N 1 \N [{"file_id": "869c051c-ca71-47a8-bdca-4870431d0759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b030e03667a54322ad8bc8a3cfbe7939.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b030e03667a54322ad8bc8a3cfbe7939.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b030e03667a54322ad8bc8a3cfbe7939.jpg", "file_size": 29572, "is_delete": false, "file_type": 1, "original_file_name": "HW003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b030e03667a54322ad8bc8a3cfbe7939.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b030e03667a54322ad8bc8a3cfbe7939.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b030e03667a54322ad8bc8a3cfbe7939.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b030e03667a54322ad8bc8a3cfbe7939.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b030e03667a54322ad8bc8a3cfbe7939.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iiox7uJsRnADLXrbzM_FFhqBL2g=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.812613+00 2025-12-09 10:15:28.812618+00 15115 JTSS604FW#VS-D3 SPMX-20240815310322 \N \N \N 1 \N [{"file_id": "e3053129-428b-43bf-b030-1d85205d3b3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c525403d4b742f69695c4babcc3a826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c525403d4b742f69695c4babcc3a826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c525403d4b742f69695c4babcc3a826.jpg", "file_size": 13949, "is_delete": false, "file_type": 1, "original_file_name": "JTSS604FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c525403d4b742f69695c4babcc3a826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c525403d4b742f69695c4babcc3a826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c525403d4b742f69695c4babcc3a826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c525403d4b742f69695c4babcc3a826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c525403d4b742f69695c4babcc3a826.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UG4eqweSWTndM-mfX8CQ9DJg5GQ=", "createTime": "2024-08-15 14:58:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.815193+00 2025-12-09 10:15:28.815199+00 15116 CAS24-22# SPMX-20240815310321 \N \N \N 1 \N [{"file_id": "e54d3d72-296d-4105-bd78-af15aa461d0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3889ddcf4db74d2c8cf3d21d77b799d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3889ddcf4db74d2c8cf3d21d77b799d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3889ddcf4db74d2c8cf3d21d77b799d8.jpg", "file_size": 51371, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-22#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3889ddcf4db74d2c8cf3d21d77b799d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3889ddcf4db74d2c8cf3d21d77b799d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3889ddcf4db74d2c8cf3d21d77b799d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3889ddcf4db74d2c8cf3d21d77b799d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3889ddcf4db74d2c8cf3d21d77b799d8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYpqNHxfnfT8ByDFfhaCjQhHxs8=", "createTime": "2024-08-15 14:58:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.817749+00 2025-12-09 10:15:28.817756+00 15117 JTSS605FW#蓝VS-D3 SPMX-20240815310326 \N \N \N 1 \N [{"file_id": "364882fe-088c-487f-9d4e-5597e4072e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb2b403335f2465098ac3f803465e4c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb2b403335f2465098ac3f803465e4c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb2b403335f2465098ac3f803465e4c1.jpg", "file_size": 17159, "is_delete": false, "file_type": 1, "original_file_name": "JTSS605FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2b403335f2465098ac3f803465e4c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2b403335f2465098ac3f803465e4c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb2b403335f2465098ac3f803465e4c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb2b403335f2465098ac3f803465e4c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb2b403335f2465098ac3f803465e4c1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fmU-MYHhRaPHecFmFDJPYyIiL0=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.820273+00 2025-12-09 10:15:28.820278+00 15118 HW004FWE#VS-D3 SPMX-20240815310325 \N \N \N 1 \N [{"file_id": "14c61b18-259f-45fa-95ec-511ab19206db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ee9bbb38cad4cd881fe3ec5854ecc10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ee9bbb38cad4cd881fe3ec5854ecc10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ee9bbb38cad4cd881fe3ec5854ecc10.jpg", "file_size": 13747, "is_delete": false, "file_type": 1, "original_file_name": "HW004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9bbb38cad4cd881fe3ec5854ecc10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9bbb38cad4cd881fe3ec5854ecc10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9bbb38cad4cd881fe3ec5854ecc10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ee9bbb38cad4cd881fe3ec5854ecc10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ee9bbb38cad4cd881fe3ec5854ecc10.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGWyT0WnCav1aPSTjXZlsQ1LVvE=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.822736+00 2025-12-09 10:15:28.822742+00 15119 1212#L SPMX-20240815310323 \N \N \N 1 \N [{"file_id": "7aad5454-0aa5-4775-9a80-e6c8427a640a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34c7acd9b6194fbd9fb5f4492e9b1d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34c7acd9b6194fbd9fb5f4492e9b1d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34c7acd9b6194fbd9fb5f4492e9b1d28.jpg", "file_size": 18738, "is_delete": false, "file_type": 1, "original_file_name": "1212#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7acd9b6194fbd9fb5f4492e9b1d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7acd9b6194fbd9fb5f4492e9b1d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7acd9b6194fbd9fb5f4492e9b1d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34c7acd9b6194fbd9fb5f4492e9b1d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34c7acd9b6194fbd9fb5f4492e9b1d28.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRzTajoMcAbxy3RljCFlqOVrx5o=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.825195+00 2025-12-09 10:15:28.825201+00 15120 FR10318#主色19码配件 SPMX-20240815310324 \N \N \N 1 \N [{"file_id": "d78a4186-ef23-432c-81d7-cd9df592fcca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0496246334d34300aaaff37cd66fcf5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0496246334d34300aaaff37cd66fcf5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0496246334d34300aaaff37cd66fcf5e.jpg", "file_size": 63562, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色19码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0496246334d34300aaaff37cd66fcf5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0496246334d34300aaaff37cd66fcf5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0496246334d34300aaaff37cd66fcf5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0496246334d34300aaaff37cd66fcf5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0496246334d34300aaaff37cd66fcf5e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYlf_K6nnNMzUbcqH5Wh0KYUaQU=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.827659+00 2025-12-09 10:15:28.827665+00 15121 23-2126#A9-3XL SPMX-20240815310328 \N \N \N 1 \N [{"file_id": "eb5d1c48-cd31-49ac-9b3a-5466ad2a845a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30ac48d5307947a08bf8656e0b7a0e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30ac48d5307947a08bf8656e0b7a0e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30ac48d5307947a08bf8656e0b7a0e46.jpg", "file_size": 20104, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ac48d5307947a08bf8656e0b7a0e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ac48d5307947a08bf8656e0b7a0e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ac48d5307947a08bf8656e0b7a0e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30ac48d5307947a08bf8656e0b7a0e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30ac48d5307947a08bf8656e0b7a0e46.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGRLn0rL6t8t7cgIm8COWVdcpAg=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.830153+00 2025-12-09 10:15:28.830158+00 15122 85003#14码 SPMX-20240815310337 \N \N \N 1 \N [{"file_id": "ae58ccc1-db63-4b4a-8374-860f23630ec8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de8ebde810af41038b326ad9a603eaa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de8ebde810af41038b326ad9a603eaa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de8ebde810af41038b326ad9a603eaa2.jpg", "file_size": 14571, "is_delete": false, "file_type": 1, "original_file_name": "85003#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8ebde810af41038b326ad9a603eaa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8ebde810af41038b326ad9a603eaa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8ebde810af41038b326ad9a603eaa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de8ebde810af41038b326ad9a603eaa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de8ebde810af41038b326ad9a603eaa2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBv9RTPbwzKxbkBityoxRkzSdXo=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.832591+00 2025-12-09 10:15:28.832596+00 15123 HW23882FWE#2XL SPMX-20240815310335 \N \N \N 1 \N [{"file_id": "390cfb8c-de1a-49f3-9393-516a37e7049a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb83c676f7847df80215ddd0e29a098.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb83c676f7847df80215ddd0e29a098.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb83c676f7847df80215ddd0e29a098.jpg", "file_size": 20819, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb83c676f7847df80215ddd0e29a098.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb83c676f7847df80215ddd0e29a098.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb83c676f7847df80215ddd0e29a098.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb83c676f7847df80215ddd0e29a098.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb83c676f7847df80215ddd0e29a098.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:waOds3ARqcO175XXbsZZCZ6lemQ=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.835053+00 2025-12-09 10:15:28.835059+00 15124 0006-42FWE#VS-D3 SPMX-20240815310330 \N \N \N 1 \N [{"file_id": "ff8d963a-9cb7-4ef8-95b6-3a0b1c8b1060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80d8cdcbbd144ebb8f04ae930e8226b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80d8cdcbbd144ebb8f04ae930e8226b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80d8cdcbbd144ebb8f04ae930e8226b0.jpg", "file_size": 22303, "is_delete": false, "file_type": 1, "original_file_name": "0006-42FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d8cdcbbd144ebb8f04ae930e8226b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d8cdcbbd144ebb8f04ae930e8226b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d8cdcbbd144ebb8f04ae930e8226b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80d8cdcbbd144ebb8f04ae930e8226b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80d8cdcbbd144ebb8f04ae930e8226b0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QH6g220Can0JZe3Y_m3sg_mqhDc=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.837452+00 2025-12-09 10:15:28.837457+00 15125 1212#M SPMX-20240815310334 \N \N \N 1 \N [{"file_id": "ad4d43e7-7aa6-4f48-9fcd-ac3e28f0f5d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47fba0f71b4d43c5a959f1afbd93e2a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47fba0f71b4d43c5a959f1afbd93e2a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47fba0f71b4d43c5a959f1afbd93e2a6.jpg", "file_size": 18230, "is_delete": false, "file_type": 1, "original_file_name": "1212#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fba0f71b4d43c5a959f1afbd93e2a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fba0f71b4d43c5a959f1afbd93e2a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47fba0f71b4d43c5a959f1afbd93e2a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47fba0f71b4d43c5a959f1afbd93e2a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47fba0f71b4d43c5a959f1afbd93e2a6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VOp8PCepN0_qp80iEl1xDRnoaMs=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.839667+00 2025-12-09 10:15:28.839673+00 15126 JTSS605FW#黄VS-D3 SPMX-20240815310338 \N \N \N 1 \N [{"file_id": "5393fbd3-cc73-4b1d-9c85-006a3ed8b6a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47ac7fa666b844b587164ab7ed5941f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47ac7fa666b844b587164ab7ed5941f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47ac7fa666b844b587164ab7ed5941f0.jpg", "file_size": 17383, "is_delete": false, "file_type": 1, "original_file_name": "JTSS605FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ac7fa666b844b587164ab7ed5941f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ac7fa666b844b587164ab7ed5941f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ac7fa666b844b587164ab7ed5941f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47ac7fa666b844b587164ab7ed5941f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47ac7fa666b844b587164ab7ed5941f0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:641KPdhZoIa2EGBAciZkZC_da4g=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.84218+00 2025-12-09 10:15:28.842185+00 15127 LZ1339#童装T1号色 SPMX-20240815310332 \N \N \N 1 \N [{"file_id": "28da4126-038a-43b1-a919-7fe3db5dbbb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b17f6cdf72fb46038bd8a0d4434ce597.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b17f6cdf72fb46038bd8a0d4434ce597.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b17f6cdf72fb46038bd8a0d4434ce597.jpg", "file_size": 23616, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17f6cdf72fb46038bd8a0d4434ce597.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17f6cdf72fb46038bd8a0d4434ce597.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17f6cdf72fb46038bd8a0d4434ce597.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b17f6cdf72fb46038bd8a0d4434ce597.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b17f6cdf72fb46038bd8a0d4434ce597.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xA7u7DgI6gSbUvwgcY4IxTtSYQ0=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.844633+00 2025-12-09 10:15:28.844639+00 15128 LJH1828#黑色 SPMX-20240815310333 \N \N \N 1 \N [{"file_id": "c63bc21b-8a54-4f30-ae08-4c990af05207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a07af34aac64a2da63f52e73b18e77e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a07af34aac64a2da63f52e73b18e77e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a07af34aac64a2da63f52e73b18e77e.jpg", "file_size": 77647, "is_delete": false, "file_type": 1, "original_file_name": "LJH1828#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a07af34aac64a2da63f52e73b18e77e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a07af34aac64a2da63f52e73b18e77e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a07af34aac64a2da63f52e73b18e77e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a07af34aac64a2da63f52e73b18e77e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a07af34aac64a2da63f52e73b18e77e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sW-5BbFu8y873gbGzrxpMVD6ZdQ=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.847142+00 2025-12-09 10:15:28.847148+00 15129 CAS24-31# SPMX-20240815310340 \N \N \N 1 \N [{"file_id": "c7535fc4-7231-43bc-8c18-4b67d1d993bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "010ef935fcc14dc297e19db5b71962b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "010ef935fcc14dc297e19db5b71962b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "010ef935fcc14dc297e19db5b71962b1.jpg", "file_size": 51553, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-31#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010ef935fcc14dc297e19db5b71962b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010ef935fcc14dc297e19db5b71962b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/010ef935fcc14dc297e19db5b71962b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/010ef935fcc14dc297e19db5b71962b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/010ef935fcc14dc297e19db5b71962b1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0RKNHRea8RiO1EqZd-WAEQw_z1Y=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.849533+00 2025-12-09 10:15:28.849538+00 15130 DL31224#后幅玫红 SPMX-20240815310331 \N \N \N 1 \N [{"file_id": "ef645cc8-5846-4019-be91-467bf340d63e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c769d0a44ab4c8a8aa901485f3f84f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c769d0a44ab4c8a8aa901485f3f84f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c769d0a44ab4c8a8aa901485f3f84f7.jpg", "file_size": 12998, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c769d0a44ab4c8a8aa901485f3f84f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c769d0a44ab4c8a8aa901485f3f84f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c769d0a44ab4c8a8aa901485f3f84f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c769d0a44ab4c8a8aa901485f3f84f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c769d0a44ab4c8a8aa901485f3f84f7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6Io19CUAaoBa1mEd5FgJmhdVEI=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.851771+00 2025-12-09 10:15:28.851777+00 15131 FR10318#主色20码 SPMX-20240815310336 \N \N \N 1 \N [{"file_id": "c300893a-ac61-42fe-8a3b-e49d65ded663", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea786f2803f340ef8531526e3c7dd196.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea786f2803f340ef8531526e3c7dd196.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea786f2803f340ef8531526e3c7dd196.jpg", "file_size": 53709, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色20码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea786f2803f340ef8531526e3c7dd196.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea786f2803f340ef8531526e3c7dd196.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea786f2803f340ef8531526e3c7dd196.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea786f2803f340ef8531526e3c7dd196.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea786f2803f340ef8531526e3c7dd196.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EW0Ys-qd5FQAeGvJyr6S30assLM=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.854204+00 2025-12-09 10:15:28.85421+00 15132 23-2126#A9-4XL SPMX-20240815310339 \N \N \N 1 \N [{"file_id": "8ca80301-1ad7-4ef9-93f7-b138cd300403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a5e0d66b9d546769d46b1ed40531cdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a5e0d66b9d546769d46b1ed40531cdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a5e0d66b9d546769d46b1ed40531cdc.jpg", "file_size": 19310, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5e0d66b9d546769d46b1ed40531cdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5e0d66b9d546769d46b1ed40531cdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a5e0d66b9d546769d46b1ed40531cdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a5e0d66b9d546769d46b1ed40531cdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a5e0d66b9d546769d46b1ed40531cdc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVEbOSba_Ft4Dz9tkmme6XssW1c=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.856642+00 2025-12-09 10:15:28.856648+00 15133 85003#10码+12码 SPMX-20240815310327 \N \N \N 1 \N [{"file_id": "38e1cbdf-a6c7-4dc4-bb7a-716b13476ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99017067b4e544469784c1c900900543.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99017067b4e544469784c1c900900543.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99017067b4e544469784c1c900900543.jpg", "file_size": 16614, "is_delete": false, "file_type": 1, "original_file_name": "85003#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99017067b4e544469784c1c900900543.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99017067b4e544469784c1c900900543.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99017067b4e544469784c1c900900543.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99017067b4e544469784c1c900900543.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99017067b4e544469784c1c900900543.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1XZpflSnAIsLpBRh7n1-gg_5dg=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.858928+00 2025-12-09 10:15:28.858934+00 15134 CAS24-30# SPMX-20240815310329 \N \N \N 1 \N [{"file_id": "12a72e81-cbc5-4053-9896-405ccf7c00af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66500809f9ee46ca84981b208191d725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66500809f9ee46ca84981b208191d725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66500809f9ee46ca84981b208191d725.jpg", "file_size": 43318, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-30#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66500809f9ee46ca84981b208191d725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66500809f9ee46ca84981b208191d725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66500809f9ee46ca84981b208191d725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66500809f9ee46ca84981b208191d725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66500809f9ee46ca84981b208191d725.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_z1zhE6PpPcqRGQhlHAfC4GCMc=", "createTime": "2024-08-15 14:58:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.861385+00 2025-12-09 10:15:28.861391+00 15135 LZ1339#童装T2号色 SPMX-20240815310341 \N \N \N 1 \N [{"file_id": "1828c3eb-9637-427b-af32-f20c1396299e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae4886bade0948999ed751f7b8762cb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae4886bade0948999ed751f7b8762cb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae4886bade0948999ed751f7b8762cb9.jpg", "file_size": 22070, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4886bade0948999ed751f7b8762cb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4886bade0948999ed751f7b8762cb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4886bade0948999ed751f7b8762cb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae4886bade0948999ed751f7b8762cb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae4886bade0948999ed751f7b8762cb9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gAwg9rOwEBK_U4FZcmSuRMU0fso=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.863824+00 2025-12-09 10:15:28.86383+00 15136 85003#4码+8码 SPMX-20240815310347 \N \N \N 1 \N [{"file_id": "2b1096c3-a2ef-4d95-ac9a-e25b51e2e4cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c533b1ce328472d92eec2abe40a4fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c533b1ce328472d92eec2abe40a4fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c533b1ce328472d92eec2abe40a4fe9.jpg", "file_size": 16681, "is_delete": false, "file_type": 1, "original_file_name": "85003#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c533b1ce328472d92eec2abe40a4fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c533b1ce328472d92eec2abe40a4fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c533b1ce328472d92eec2abe40a4fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c533b1ce328472d92eec2abe40a4fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c533b1ce328472d92eec2abe40a4fe9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ri4vHP0NU8Y2BhlwfDL04mzcYOM=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.866262+00 2025-12-09 10:15:28.866267+00 15137 23-2126#A9-领子3XL SPMX-20240815310349 \N \N \N 1 \N [{"file_id": "17296264-a06d-40a5-9f8f-7a655f290b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdea06eb68534fcc9c834825bd00ddac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdea06eb68534fcc9c834825bd00ddac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdea06eb68534fcc9c834825bd00ddac.jpg", "file_size": 12136, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdea06eb68534fcc9c834825bd00ddac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdea06eb68534fcc9c834825bd00ddac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdea06eb68534fcc9c834825bd00ddac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdea06eb68534fcc9c834825bd00ddac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdea06eb68534fcc9c834825bd00ddac.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_nAQoNGu5O9hPRT53QKi-rHeS0k=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.868808+00 2025-12-09 10:15:28.868813+00 15138 FR10318#主色20码配件 SPMX-20240815310348 \N \N \N 1 \N [{"file_id": "51ef1ed6-ed5e-499c-8be2-34472f94a50e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "484390c382af469dadc88c2fceaa867b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "484390c382af469dadc88c2fceaa867b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "484390c382af469dadc88c2fceaa867b.jpg", "file_size": 61504, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色20码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484390c382af469dadc88c2fceaa867b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484390c382af469dadc88c2fceaa867b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484390c382af469dadc88c2fceaa867b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/484390c382af469dadc88c2fceaa867b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/484390c382af469dadc88c2fceaa867b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhoiEa84vx6GF3iaMAe2zn1zKGM=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.871262+00 2025-12-09 10:15:28.871267+00 15139 0006-42FWF#V5曲线 SPMX-20240815310342 \N \N \N 1 \N [{"file_id": "a16a1944-cb67-4605-a72e-bcac517e13ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dece5342388c4a16abcf524f393cbc27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dece5342388c4a16abcf524f393cbc27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dece5342388c4a16abcf524f393cbc27.jpg", "file_size": 17222, "is_delete": false, "file_type": 1, "original_file_name": "0006-42FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dece5342388c4a16abcf524f393cbc27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dece5342388c4a16abcf524f393cbc27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dece5342388c4a16abcf524f393cbc27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dece5342388c4a16abcf524f393cbc27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dece5342388c4a16abcf524f393cbc27.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AFnEN9xLLYyUmPXmuez-tFy4sdc=", "createTime": "2024-08-15 14:58:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.873744+00 2025-12-09 10:15:28.87375+00 15140 HW23882FWE#3XL SPMX-20240815310346 \N \N \N 1 \N [{"file_id": "77ad51f5-28ba-4215-b6d0-8a654bd57de4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7677ede2b09b49759e76a9b4edc6334e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7677ede2b09b49759e76a9b4edc6334e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7677ede2b09b49759e76a9b4edc6334e.jpg", "file_size": 21217, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7677ede2b09b49759e76a9b4edc6334e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7677ede2b09b49759e76a9b4edc6334e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7677ede2b09b49759e76a9b4edc6334e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7677ede2b09b49759e76a9b4edc6334e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7677ede2b09b49759e76a9b4edc6334e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYbdllKTNs0uC3c18KYrSB-Nr6k=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.875961+00 2025-12-09 10:15:28.875966+00 15141 LJH1830#玫红 SPMX-20240815310345 \N \N \N 1 \N [{"file_id": "ffc15e08-3ba2-4cf8-a261-f2e990a15c2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "592df0a2013d477ebcd69fd9524729e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "592df0a2013d477ebcd69fd9524729e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "592df0a2013d477ebcd69fd9524729e9.jpg", "file_size": 66817, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592df0a2013d477ebcd69fd9524729e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592df0a2013d477ebcd69fd9524729e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592df0a2013d477ebcd69fd9524729e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/592df0a2013d477ebcd69fd9524729e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/592df0a2013d477ebcd69fd9524729e9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1pHFwOTvMOjlecC1UXNYIcuau0=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.878509+00 2025-12-09 10:15:28.878515+00 15142 DL31224#后幅黄色 SPMX-20240815310343 \N \N \N 1 \N [{"file_id": "25090ac3-9fec-4d1a-8727-886575228aca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b183552ac8cb48f4bdf215f8aef1abef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b183552ac8cb48f4bdf215f8aef1abef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b183552ac8cb48f4bdf215f8aef1abef.jpg", "file_size": 12705, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#后幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b183552ac8cb48f4bdf215f8aef1abef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b183552ac8cb48f4bdf215f8aef1abef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b183552ac8cb48f4bdf215f8aef1abef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b183552ac8cb48f4bdf215f8aef1abef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b183552ac8cb48f4bdf215f8aef1abef.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WsT40V07RWRFg0KLqAs1CL_7kdU=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.880963+00 2025-12-09 10:15:28.880968+00 15143 1212#S SPMX-20240815310344 \N \N \N 1 \N [{"file_id": "8c9a1d79-44e0-4a6b-8cf3-c939af23db86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8fe1269541549cd8b1a61536d7e5ad7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8fe1269541549cd8b1a61536d7e5ad7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8fe1269541549cd8b1a61536d7e5ad7.jpg", "file_size": 18189, "is_delete": false, "file_type": 1, "original_file_name": "1212#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fe1269541549cd8b1a61536d7e5ad7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fe1269541549cd8b1a61536d7e5ad7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8fe1269541549cd8b1a61536d7e5ad7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8fe1269541549cd8b1a61536d7e5ad7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8fe1269541549cd8b1a61536d7e5ad7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oo0XeueBmr5oL2T3t0ZHV-VOhec=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.883423+00 2025-12-09 10:15:28.883429+00 15144 JTSS606FW#VS-D3 SPMX-20240815310350 \N \N \N 1 \N [{"file_id": "547195c8-7764-4e61-acb1-52953fc79d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5ec9ec154694ded8d64da94a0b4a0ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5ec9ec154694ded8d64da94a0b4a0ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5ec9ec154694ded8d64da94a0b4a0ed.jpg", "file_size": 11606, "is_delete": false, "file_type": 1, "original_file_name": "JTSS606FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec9ec154694ded8d64da94a0b4a0ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec9ec154694ded8d64da94a0b4a0ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ec9ec154694ded8d64da94a0b4a0ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5ec9ec154694ded8d64da94a0b4a0ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5ec9ec154694ded8d64da94a0b4a0ed.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YvUDNmYcz_JSDzTo9mbbAed4Lc=", "createTime": "2024-08-15 14:58:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.886167+00 2025-12-09 10:15:28.886172+00 15145 LJH1830#红色 SPMX-20240815310354 \N \N \N 1 \N [{"file_id": "f084dd4a-8d09-4a77-9f14-03c861d61959", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "021dbc92d3614dab8c332cfd34300d4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "021dbc92d3614dab8c332cfd34300d4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "021dbc92d3614dab8c332cfd34300d4a.jpg", "file_size": 72921, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021dbc92d3614dab8c332cfd34300d4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021dbc92d3614dab8c332cfd34300d4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021dbc92d3614dab8c332cfd34300d4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/021dbc92d3614dab8c332cfd34300d4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/021dbc92d3614dab8c332cfd34300d4a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUDm1DUKpYBzbR0A-xFLPVXmyKs=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.888917+00 2025-12-09 10:15:28.888923+00 15146 1212#XL SPMX-20240815310356 \N \N \N 1 \N [{"file_id": "f2511d87-a117-4849-a8e2-a33ea8616f9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbc5dc09de404d7cacc9ee9e4654ce39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbc5dc09de404d7cacc9ee9e4654ce39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbc5dc09de404d7cacc9ee9e4654ce39.jpg", "file_size": 17651, "is_delete": false, "file_type": 1, "original_file_name": "1212#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc5dc09de404d7cacc9ee9e4654ce39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc5dc09de404d7cacc9ee9e4654ce39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbc5dc09de404d7cacc9ee9e4654ce39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbc5dc09de404d7cacc9ee9e4654ce39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbc5dc09de404d7cacc9ee9e4654ce39.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_2mLG7oaIzWG4v-l60QssOA2KA=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.891746+00 2025-12-09 10:15:28.891752+00 15147 85003#6码 SPMX-20240815310361 \N \N \N 1 \N [{"file_id": "5354e4c7-c384-4196-99c4-06c30bbff438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6dc471af35a4b4c9d81f21781c09550.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6dc471af35a4b4c9d81f21781c09550.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6dc471af35a4b4c9d81f21781c09550.jpg", "file_size": 15485, "is_delete": false, "file_type": 1, "original_file_name": "85003#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dc471af35a4b4c9d81f21781c09550.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dc471af35a4b4c9d81f21781c09550.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6dc471af35a4b4c9d81f21781c09550.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6dc471af35a4b4c9d81f21781c09550.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6dc471af35a4b4c9d81f21781c09550.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2ZHMQQ3-GLEyk622HbfyX-o8FI=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.894485+00 2025-12-09 10:15:28.894491+00 15148 DL31224#批布兰绿 SPMX-20240815310357 \N \N \N 1 \N [{"file_id": "be36d151-f1fb-4796-8cb6-216ae2c5ffc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af07e97f66b4480a996c9afcd7c088a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af07e97f66b4480a996c9afcd7c088a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af07e97f66b4480a996c9afcd7c088a6.jpg", "file_size": 14669, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af07e97f66b4480a996c9afcd7c088a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af07e97f66b4480a996c9afcd7c088a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af07e97f66b4480a996c9afcd7c088a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af07e97f66b4480a996c9afcd7c088a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af07e97f66b4480a996c9afcd7c088a6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:65tkkdIiHLuk69et4ugcH103GWk=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.897257+00 2025-12-09 10:15:28.897262+00 15149 CAS24-32# SPMX-20240815310351 \N \N \N 1 \N [{"file_id": "9dd86419-a1a1-46b0-8887-14081c608fee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abdeb2626c3248e58dfa285f1e04a1aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abdeb2626c3248e58dfa285f1e04a1aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abdeb2626c3248e58dfa285f1e04a1aa.jpg", "file_size": 28290, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-32#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdeb2626c3248e58dfa285f1e04a1aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdeb2626c3248e58dfa285f1e04a1aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abdeb2626c3248e58dfa285f1e04a1aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abdeb2626c3248e58dfa285f1e04a1aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abdeb2626c3248e58dfa285f1e04a1aa.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7en3yxwN7U9m3U7QkSim9Su3-mo=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.900009+00 2025-12-09 10:15:28.900016+00 15150 HW23882FWE#L SPMX-20240815310355 \N \N \N 1 \N [{"file_id": "2d1d0405-b40b-4c42-ab9d-8026ef825dcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8b92ef60f514364a60599a55be96f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8b92ef60f514364a60599a55be96f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8b92ef60f514364a60599a55be96f41.jpg", "file_size": 21153, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b92ef60f514364a60599a55be96f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b92ef60f514364a60599a55be96f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b92ef60f514364a60599a55be96f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8b92ef60f514364a60599a55be96f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8b92ef60f514364a60599a55be96f41.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eydeu49crm5Ls9_GfYSy64VLYQs=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.902802+00 2025-12-09 10:15:28.902808+00 15151 0006-43FWE#VS-D3 SPMX-20240815310352 \N \N \N 1 \N [{"file_id": "5567439b-2492-419c-bbb5-767e066666ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27b1aaa3dd2c458cb1708fa3861183e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27b1aaa3dd2c458cb1708fa3861183e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27b1aaa3dd2c458cb1708fa3861183e4.jpg", "file_size": 22595, "is_delete": false, "file_type": 1, "original_file_name": "0006-43FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27b1aaa3dd2c458cb1708fa3861183e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27b1aaa3dd2c458cb1708fa3861183e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27b1aaa3dd2c458cb1708fa3861183e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27b1aaa3dd2c458cb1708fa3861183e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27b1aaa3dd2c458cb1708fa3861183e4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgQhcET61FCmT5klT-zPya_UfWc=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.905578+00 2025-12-09 10:15:28.905584+00 15152 FR10318#主色净色 SPMX-20240815310360 \N \N \N 1 \N [{"file_id": "2293f9c2-f128-49b6-9b7e-b99a9e89d9c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dbd2d5ff4c64aac8b16de059a530c2a.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dbd2d5ff4c64aac8b16de059a530c2a.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dbd2d5ff4c64aac8b16de059a530c2a.bmp", "file_size": 13103, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色净色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbd2d5ff4c64aac8b16de059a530c2a.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbd2d5ff4c64aac8b16de059a530c2a.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbd2d5ff4c64aac8b16de059a530c2a.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dbd2d5ff4c64aac8b16de059a530c2a.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dbd2d5ff4c64aac8b16de059a530c2a.bmp?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sejVZKy_r6h4lLZKzDi1z-9utbU=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.908047+00 2025-12-09 10:15:28.908053+00 15153 JTSS607FW#VS-D3 SPMX-20240815310358 \N \N \N 1 \N [{"file_id": "2e9116c5-ca90-452e-bd93-2175b6dfc8f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1765cc2394a4f3f95d454740cbb878c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1765cc2394a4f3f95d454740cbb878c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1765cc2394a4f3f95d454740cbb878c.jpg", "file_size": 14232, "is_delete": false, "file_type": 1, "original_file_name": "JTSS607FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1765cc2394a4f3f95d454740cbb878c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1765cc2394a4f3f95d454740cbb878c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1765cc2394a4f3f95d454740cbb878c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1765cc2394a4f3f95d454740cbb878c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1765cc2394a4f3f95d454740cbb878c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ikf4kYCWUv3hs3vXPwBe94dK7ew=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.910291+00 2025-12-09 10:15:28.910296+00 15154 23-2126#A9-领子4XL SPMX-20240815310353 \N \N \N 1 \N [{"file_id": "a471f866-0cdf-4945-a2f9-1cfcbbca2914", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7280868b3d87434396553dae07c9cc3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7280868b3d87434396553dae07c9cc3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7280868b3d87434396553dae07c9cc3a.jpg", "file_size": 12155, "is_delete": false, "file_type": 1, "original_file_name": "23-2126#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7280868b3d87434396553dae07c9cc3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7280868b3d87434396553dae07c9cc3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7280868b3d87434396553dae07c9cc3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7280868b3d87434396553dae07c9cc3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7280868b3d87434396553dae07c9cc3a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n2RKiRYc_3Ei76gfyzYoiEJFzpw=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.91275+00 2025-12-09 10:15:28.912756+00 15155 LZ1339#童装T3号色 SPMX-20240815310359 \N \N \N 1 \N [{"file_id": "6a8683cb-ca6f-4dd6-ac7d-3f371488138b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f95bf16bc4714ae1a0e79be9d80f01ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f95bf16bc4714ae1a0e79be9d80f01ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f95bf16bc4714ae1a0e79be9d80f01ff.jpg", "file_size": 21614, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95bf16bc4714ae1a0e79be9d80f01ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95bf16bc4714ae1a0e79be9d80f01ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95bf16bc4714ae1a0e79be9d80f01ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f95bf16bc4714ae1a0e79be9d80f01ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f95bf16bc4714ae1a0e79be9d80f01ff.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Q6aaGVT5eEY-Z6ArORgepSqCTk=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.915278+00 2025-12-09 10:15:28.915284+00 15156 0006-43FWF#V5曲线 SPMX-20240815310363 \N \N \N 1 \N [{"file_id": "99a2dee0-b2fc-4ae3-8b49-0226fb86cde3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9aea282007d4392a65ce2b802aa747b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9aea282007d4392a65ce2b802aa747b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9aea282007d4392a65ce2b802aa747b.jpg", "file_size": 19595, "is_delete": false, "file_type": 1, "original_file_name": "0006-43FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9aea282007d4392a65ce2b802aa747b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9aea282007d4392a65ce2b802aa747b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9aea282007d4392a65ce2b802aa747b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9aea282007d4392a65ce2b802aa747b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9aea282007d4392a65ce2b802aa747b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1HIbeTQVHvMX7kYONlSgq0lqls=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.917757+00 2025-12-09 10:15:28.917763+00 15157 23-305#A1-3XL SPMX-20240815310368 \N \N \N 1 \N [{"file_id": "fb7d084c-9efc-4f1a-9300-f4c2aa93f3ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "735cd1c986c344d799e882dcbb968976.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "735cd1c986c344d799e882dcbb968976.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "735cd1c986c344d799e882dcbb968976.jpg", "file_size": 24994, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd1c986c344d799e882dcbb968976.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd1c986c344d799e882dcbb968976.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd1c986c344d799e882dcbb968976.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/735cd1c986c344d799e882dcbb968976.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/735cd1c986c344d799e882dcbb968976.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XWzYxUGMxwJXXonZ147Ja6AGVI=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.920205+00 2025-12-09 10:15:28.92021+00 15158 CAS24-33# SPMX-20240815310362 \N \N \N 1 \N [{"file_id": "37749567-bb86-4922-8705-1d4fa9c7dc0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eda9b14ab8ad4b58a1d90779375ba1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eda9b14ab8ad4b58a1d90779375ba1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eda9b14ab8ad4b58a1d90779375ba1dd.jpg", "file_size": 30492, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-33#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda9b14ab8ad4b58a1d90779375ba1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda9b14ab8ad4b58a1d90779375ba1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eda9b14ab8ad4b58a1d90779375ba1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eda9b14ab8ad4b58a1d90779375ba1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eda9b14ab8ad4b58a1d90779375ba1dd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YElQkCdQCPGbyXFLI-jJmuvMDjQ=", "createTime": "2024-08-15 14:58:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.922837+00 2025-12-09 10:15:28.922844+00 15159 LZ1339#童装T4号色 SPMX-20240815310367 \N \N \N 1 \N [{"file_id": "99258d43-c76a-4259-b975-c85041e89a0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c36c7e444383420dae45d09d573457e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c36c7e444383420dae45d09d573457e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c36c7e444383420dae45d09d573457e2.jpg", "file_size": 21873, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36c7e444383420dae45d09d573457e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36c7e444383420dae45d09d573457e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36c7e444383420dae45d09d573457e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c36c7e444383420dae45d09d573457e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c36c7e444383420dae45d09d573457e2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LaIZrqQ30Y2KnaMtzn2YSitkQe8=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.925949+00 2025-12-09 10:15:28.925954+00 15160 1212#正身 SPMX-20240815310366 \N \N \N 1 \N [{"file_id": "5b6ecf9b-5986-4c82-bf61-989adedeab71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffb712074d9a4245a77567992d4094f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffb712074d9a4245a77567992d4094f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffb712074d9a4245a77567992d4094f2.jpg", "file_size": 12707, "is_delete": false, "file_type": 1, "original_file_name": "1212#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb712074d9a4245a77567992d4094f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb712074d9a4245a77567992d4094f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb712074d9a4245a77567992d4094f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffb712074d9a4245a77567992d4094f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffb712074d9a4245a77567992d4094f2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rvyazn6yePdwsRpKxT9Wp7KsNHM=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.928473+00 2025-12-09 10:15:28.928478+00 15161 85003#乱花 SPMX-20240815310370 \N \N \N 1 \N [{"file_id": "9021d4a1-8496-4300-ab63-ebfe89ceae68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "816f110afe9a4976ad3477c5249873bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "816f110afe9a4976ad3477c5249873bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "816f110afe9a4976ad3477c5249873bc.jpg", "file_size": 4577, "is_delete": false, "file_type": 1, "original_file_name": "85003#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816f110afe9a4976ad3477c5249873bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816f110afe9a4976ad3477c5249873bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816f110afe9a4976ad3477c5249873bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/816f110afe9a4976ad3477c5249873bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/816f110afe9a4976ad3477c5249873bc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3r_thikgVJXiET4egouDkvazF_c=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.930867+00 2025-12-09 10:15:28.930871+00 15162 CAS24-35# SPMX-20240815310373 \N \N \N 1 \N [{"file_id": "c9f81cb9-5fd9-49a2-be33-cabee1d70f8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40a4a62688364ae793ed586d0dbb9400.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40a4a62688364ae793ed586d0dbb9400.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40a4a62688364ae793ed586d0dbb9400.jpg", "file_size": 51189, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-35#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a4a62688364ae793ed586d0dbb9400.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a4a62688364ae793ed586d0dbb9400.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a4a62688364ae793ed586d0dbb9400.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40a4a62688364ae793ed586d0dbb9400.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40a4a62688364ae793ed586d0dbb9400.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rL-FG4eMikTd8YwzyEN5MJrQ5fY=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.933204+00 2025-12-09 10:15:28.933209+00 15163 JTSS608FW#VS-D3 SPMX-20240815310371 \N \N \N 1 \N [{"file_id": "fc5e65e8-f0a8-4a33-b827-11c4ddae7c64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f0dac113a124d1b9310f2a90d12f25b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f0dac113a124d1b9310f2a90d12f25b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f0dac113a124d1b9310f2a90d12f25b.jpg", "file_size": 16159, "is_delete": false, "file_type": 1, "original_file_name": "JTSS608FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0dac113a124d1b9310f2a90d12f25b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0dac113a124d1b9310f2a90d12f25b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0dac113a124d1b9310f2a90d12f25b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f0dac113a124d1b9310f2a90d12f25b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f0dac113a124d1b9310f2a90d12f25b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:azKEXR1MMCIIiwPv6z68bYtOY2M=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.935297+00 2025-12-09 10:15:28.935301+00 15164 LJH1830#绿色 SPMX-20240815310364 \N \N \N 1 \N [{"file_id": "3c0262cc-00aa-42fb-949e-034e01049842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22c56032f78f48b59cbccef3492ed648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22c56032f78f48b59cbccef3492ed648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22c56032f78f48b59cbccef3492ed648.jpg", "file_size": 71270, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c56032f78f48b59cbccef3492ed648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c56032f78f48b59cbccef3492ed648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22c56032f78f48b59cbccef3492ed648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22c56032f78f48b59cbccef3492ed648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22c56032f78f48b59cbccef3492ed648.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZ2-TNgd-neVVLK2UtqLI27C_PM=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.9377+00 2025-12-09 10:15:28.937706+00 15165 DL31224#批布彩兰 SPMX-20240815310369 \N \N \N 1 \N [{"file_id": "7bebbd45-0cd3-4d46-b90d-be56c49ce2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19296ba73e2043f5b9d12f1cbd0b675e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19296ba73e2043f5b9d12f1cbd0b675e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19296ba73e2043f5b9d12f1cbd0b675e.jpg", "file_size": 13287, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19296ba73e2043f5b9d12f1cbd0b675e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19296ba73e2043f5b9d12f1cbd0b675e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19296ba73e2043f5b9d12f1cbd0b675e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19296ba73e2043f5b9d12f1cbd0b675e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19296ba73e2043f5b9d12f1cbd0b675e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KJmheLhlRkZdW_a_YwuFxDA9Sts=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.940012+00 2025-12-09 10:15:28.940016+00 15166 0006-44FWE#VS-D3 SPMX-20240815310374 \N \N \N 1 \N [{"file_id": "da9a21b9-c8bf-4d50-9501-2e695455f866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53c0b50f0f0242839263359a6c1576f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53c0b50f0f0242839263359a6c1576f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53c0b50f0f0242839263359a6c1576f8.jpg", "file_size": 9853, "is_delete": false, "file_type": 1, "original_file_name": "0006-44FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c0b50f0f0242839263359a6c1576f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c0b50f0f0242839263359a6c1576f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53c0b50f0f0242839263359a6c1576f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53c0b50f0f0242839263359a6c1576f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53c0b50f0f0242839263359a6c1576f8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4blY2eQWwdTmM8vsB1laA9jYLc=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.94218+00 2025-12-09 10:15:28.942186+00 15167 HW23882FWE#M SPMX-20240815310365 \N \N \N 1 \N [{"file_id": "6c716beb-a484-44af-8540-7f638c6722e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8321653ad663458a843550efe62e5ae4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8321653ad663458a843550efe62e5ae4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8321653ad663458a843550efe62e5ae4.jpg", "file_size": 21232, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321653ad663458a843550efe62e5ae4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321653ad663458a843550efe62e5ae4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321653ad663458a843550efe62e5ae4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8321653ad663458a843550efe62e5ae4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8321653ad663458a843550efe62e5ae4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xDt9xNT4ez3LNy4PN1YrSXdeXwU=", "createTime": "2024-08-15 14:58:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.944608+00 2025-12-09 10:15:28.944614+00 15168 FR10318#主色配件17码 SPMX-20240815310375 \N \N \N 1 \N [{"file_id": "2c4818e4-4f03-428c-841a-0d0a77b1551f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e8f813d64d545b4849771fbde501ec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e8f813d64d545b4849771fbde501ec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e8f813d64d545b4849771fbde501ec7.jpg", "file_size": 48880, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色配件17码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8f813d64d545b4849771fbde501ec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8f813d64d545b4849771fbde501ec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e8f813d64d545b4849771fbde501ec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e8f813d64d545b4849771fbde501ec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e8f813d64d545b4849771fbde501ec7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgimYQsvvXww9-WvwyaFhs8M_LI=", "createTime": "2024-08-15 14:58:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.94717+00 2025-12-09 10:15:28.947175+00 15169 DL31224#批布枣红 SPMX-20240815310384 \N \N \N 1 \N [{"file_id": "3d5ea579-b6ea-4ae2-8bc6-e2fe300463c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f069511584264367902534901e9d3175.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f069511584264367902534901e9d3175.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f069511584264367902534901e9d3175.jpg", "file_size": 12952, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f069511584264367902534901e9d3175.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f069511584264367902534901e9d3175.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f069511584264367902534901e9d3175.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f069511584264367902534901e9d3175.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f069511584264367902534901e9d3175.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bTd5kpim_fo8hNzJxuCT9pv6sTc=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.949604+00 2025-12-09 10:15:28.94961+00 15170 LJH1830#蓝色 SPMX-20240815310378 \N \N \N 1 \N [{"file_id": "812a675d-2708-4e21-b655-b88da9b85420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ffa2344d3fd4660a4c407eb68a68801.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ffa2344d3fd4660a4c407eb68a68801.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ffa2344d3fd4660a4c407eb68a68801.jpg", "file_size": 73698, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffa2344d3fd4660a4c407eb68a68801.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffa2344d3fd4660a4c407eb68a68801.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffa2344d3fd4660a4c407eb68a68801.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ffa2344d3fd4660a4c407eb68a68801.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ffa2344d3fd4660a4c407eb68a68801.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTwMCHx-kagwL8vdU85iAKHjUKU=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.952029+00 2025-12-09 10:15:28.952035+00 15171 JTSS609FW#VS-D3 SPMX-20240815310383 \N \N \N 1 \N [{"file_id": "bec61b15-fcb3-4712-a292-b54f499e915b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c574e64381ae48ac9d0a1d9782f1dd1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c574e64381ae48ac9d0a1d9782f1dd1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c574e64381ae48ac9d0a1d9782f1dd1f.jpg", "file_size": 11542, "is_delete": false, "file_type": 1, "original_file_name": "JTSS609FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c574e64381ae48ac9d0a1d9782f1dd1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c574e64381ae48ac9d0a1d9782f1dd1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c574e64381ae48ac9d0a1d9782f1dd1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c574e64381ae48ac9d0a1d9782f1dd1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c574e64381ae48ac9d0a1d9782f1dd1f.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6SEF9dZg7Qo6MrdcbISLBdaJCbE=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.954469+00 2025-12-09 10:15:28.954474+00 15172 23-305#A1-4XL SPMX-20240815310379 \N \N \N 1 \N [{"file_id": "3017374d-587e-4897-b878-e659d1eb4404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5f1a17972744d288148ac7408ff43a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5f1a17972744d288148ac7408ff43a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5f1a17972744d288148ac7408ff43a4.jpg", "file_size": 23516, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f1a17972744d288148ac7408ff43a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f1a17972744d288148ac7408ff43a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f1a17972744d288148ac7408ff43a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5f1a17972744d288148ac7408ff43a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5f1a17972744d288148ac7408ff43a4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dz16AcfEk2EDdfpUNHt1NF7g7jI=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.957076+00 2025-12-09 10:15:28.957083+00 15173 LZ1339#童装T5号色 SPMX-20240815310385 \N \N \N 1 \N [{"file_id": "4e09eff7-86b5-4d14-82be-1388358ac469", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0938394abd24d8086e8e6973195a3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0938394abd24d8086e8e6973195a3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0938394abd24d8086e8e6973195a3a6.jpg", "file_size": 20949, "is_delete": false, "file_type": 1, "original_file_name": "LZ1339#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0938394abd24d8086e8e6973195a3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0938394abd24d8086e8e6973195a3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0938394abd24d8086e8e6973195a3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0938394abd24d8086e8e6973195a3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0938394abd24d8086e8e6973195a3a6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yPBQRc6CILYl9Jyp4gRZEKHK6To=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.959595+00 2025-12-09 10:15:28.959601+00 15174 85004#10码+12码 SPMX-20240815310380 \N \N \N 1 \N [{"file_id": "535b9e43-4948-432b-82e2-84fb32602aa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a7a5829fe094f65bcf961dfc9ff80b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a7a5829fe094f65bcf961dfc9ff80b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a7a5829fe094f65bcf961dfc9ff80b1.jpg", "file_size": 19007, "is_delete": false, "file_type": 1, "original_file_name": "85004#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a5829fe094f65bcf961dfc9ff80b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a5829fe094f65bcf961dfc9ff80b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7a5829fe094f65bcf961dfc9ff80b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a7a5829fe094f65bcf961dfc9ff80b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a7a5829fe094f65bcf961dfc9ff80b1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UgxOMDBrUt4CXf2A7fpYw-BO8LM=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.962126+00 2025-12-09 10:15:28.962132+00 15175 HW23882FWE#S SPMX-20240815310376 \N \N \N 1 \N [{"file_id": "6027896a-e7e7-49d5-8574-20e91b0dd73a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c50a9d805e184bdcabdf4821142934ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c50a9d805e184bdcabdf4821142934ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c50a9d805e184bdcabdf4821142934ff.jpg", "file_size": 20110, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50a9d805e184bdcabdf4821142934ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50a9d805e184bdcabdf4821142934ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50a9d805e184bdcabdf4821142934ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c50a9d805e184bdcabdf4821142934ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c50a9d805e184bdcabdf4821142934ff.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFJ0zimokggTi2nCpJ_UGPNL5os=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.964566+00 2025-12-09 10:15:28.964572+00 15176 1218FWF#V5曲线 SPMX-20240815310377 \N \N \N 1 \N [{"file_id": "38d37218-d0f9-4f86-83b2-ccd717ae56ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a10d3b4729d64d00a6b0dbedcb055259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a10d3b4729d64d00a6b0dbedcb055259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a10d3b4729d64d00a6b0dbedcb055259.jpg", "file_size": 17566, "is_delete": false, "file_type": 1, "original_file_name": "1218FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10d3b4729d64d00a6b0dbedcb055259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10d3b4729d64d00a6b0dbedcb055259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10d3b4729d64d00a6b0dbedcb055259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a10d3b4729d64d00a6b0dbedcb055259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a10d3b4729d64d00a6b0dbedcb055259.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXNLCkOlfHPiB12xGnCDpXuSqoI=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.967027+00 2025-12-09 10:15:28.967033+00 15177 0006-44FWE#番禺文件 SPMX-20240815310381 \N \N \N 1 \N [{"file_id": "20f37bca-4103-4289-9074-8da986da33df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9c3343532bb4a30b48ec71021f8bc64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9c3343532bb4a30b48ec71021f8bc64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9c3343532bb4a30b48ec71021f8bc64.jpg", "file_size": 11477, "is_delete": false, "file_type": 1, "original_file_name": "0006-44FWE#番禺文件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c3343532bb4a30b48ec71021f8bc64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c3343532bb4a30b48ec71021f8bc64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c3343532bb4a30b48ec71021f8bc64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9c3343532bb4a30b48ec71021f8bc64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9c3343532bb4a30b48ec71021f8bc64.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbyYSyOSXdner7bNs19fzlrXTNM=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.969504+00 2025-12-09 10:15:28.969511+00 15178 CAS24-36# SPMX-20240815310382 \N \N \N 1 \N [{"file_id": "2e56d799-4161-4dd3-80c6-7f4d35c1cb7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a9e37ccee254c2aa40192feefb3f014.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a9e37ccee254c2aa40192feefb3f014.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a9e37ccee254c2aa40192feefb3f014.jpg", "file_size": 37449, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-36#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9e37ccee254c2aa40192feefb3f014.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9e37ccee254c2aa40192feefb3f014.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9e37ccee254c2aa40192feefb3f014.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a9e37ccee254c2aa40192feefb3f014.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a9e37ccee254c2aa40192feefb3f014.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1UjUq5eDm5qNInAvWLgMh5LzHfE=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.971769+00 2025-12-09 10:15:28.971775+00 15179 23-305#A1-领子3XL SPMX-20240815310392 \N \N \N 1 \N [{"file_id": "469e5f3e-ad3b-43f3-8ac7-6203081806b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1280a91faff47d6bffee9e06529344c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1280a91faff47d6bffee9e06529344c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1280a91faff47d6bffee9e06529344c.jpg", "file_size": 17713, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1280a91faff47d6bffee9e06529344c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1280a91faff47d6bffee9e06529344c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1280a91faff47d6bffee9e06529344c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1280a91faff47d6bffee9e06529344c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1280a91faff47d6bffee9e06529344c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBVohnGajtxKvASwIcOwvgvW-Ok=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.974246+00 2025-12-09 10:15:28.974252+00 15180 85004#4码+8码 SPMX-20240815310398 \N \N \N 1 \N [{"file_id": "bcc0e237-2616-4897-9205-458a2f0081a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "674b7b7c6dbe474eafab9acac568236b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "674b7b7c6dbe474eafab9acac568236b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "674b7b7c6dbe474eafab9acac568236b.jpg", "file_size": 19296, "is_delete": false, "file_type": 1, "original_file_name": "85004#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674b7b7c6dbe474eafab9acac568236b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674b7b7c6dbe474eafab9acac568236b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/674b7b7c6dbe474eafab9acac568236b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/674b7b7c6dbe474eafab9acac568236b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/674b7b7c6dbe474eafab9acac568236b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGIqH616xmMkvhB1RhxkDyuz7nU=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.976747+00 2025-12-09 10:15:28.976753+00 15181 CAS24-38# SPMX-20240815310396 \N \N \N 1 \N [{"file_id": "24a5662a-9716-4106-b16e-7ac3b97841f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be0d63bb09444b195cfa9668a8932a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be0d63bb09444b195cfa9668a8932a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be0d63bb09444b195cfa9668a8932a5.jpg", "file_size": 65723, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-38#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be0d63bb09444b195cfa9668a8932a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be0d63bb09444b195cfa9668a8932a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be0d63bb09444b195cfa9668a8932a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be0d63bb09444b195cfa9668a8932a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be0d63bb09444b195cfa9668a8932a5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ktflb2PvOSZ4MNqGPxVLW337ltc=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.979236+00 2025-12-09 10:15:28.979242+00 15182 LZ133FWF#1号色短袖 SPMX-20240815310394 \N \N \N 1 \N [{"file_id": "00a47435-b9c8-4693-8220-462fb15f104e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d9d6a697596404f8364097c05915d94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d9d6a697596404f8364097c05915d94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d9d6a697596404f8364097c05915d94.jpg", "file_size": 20564, "is_delete": false, "file_type": 1, "original_file_name": "LZ133FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9d6a697596404f8364097c05915d94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9d6a697596404f8364097c05915d94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9d6a697596404f8364097c05915d94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d9d6a697596404f8364097c05915d94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d9d6a697596404f8364097c05915d94.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wu0ZUjZoFqUROoz0bPUpqi52QnE=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.981719+00 2025-12-09 10:15:28.981724+00 15183 122#-深杏 SPMX-20240815310399 \N \N \N 1 \N [{"file_id": "ef62ead2-6503-4df3-9a64-ea3ba0c9fc47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d064469e8f44419bbbf11390b7b7b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d064469e8f44419bbbf11390b7b7b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d064469e8f44419bbbf11390b7b7b43.jpg", "file_size": 54071, "is_delete": false, "file_type": 1, "original_file_name": "122#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d064469e8f44419bbbf11390b7b7b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d064469e8f44419bbbf11390b7b7b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d064469e8f44419bbbf11390b7b7b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d064469e8f44419bbbf11390b7b7b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d064469e8f44419bbbf11390b7b7b43.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vl8ptzwH6-WKaQoTWr1iRccPfYI=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.013612+00 2025-12-09 10:15:29.013619+00 15196 23-305#A10-3XL SPMX-20240815310412 \N \N \N 1 \N [{"file_id": "bde044ad-18a9-4473-9499-7e703a7b0a8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc326b206a694480b5d2166587e57989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc326b206a694480b5d2166587e57989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc326b206a694480b5d2166587e57989.jpg", "file_size": 20105, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A10-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc326b206a694480b5d2166587e57989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc326b206a694480b5d2166587e57989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc326b206a694480b5d2166587e57989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc326b206a694480b5d2166587e57989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc326b206a694480b5d2166587e57989.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0TVhM-OLslnjyTTzMUoujeZW64=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.984196+00 2025-12-09 10:15:28.984201+00 15184 0006-44FWF#V5曲线 SPMX-20240815310391 \N \N \N 1 \N [{"file_id": "94d36843-f1c6-4323-af9d-8df069bbf9ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f74d857664fe4f93a4bed357517db7e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f74d857664fe4f93a4bed357517db7e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f74d857664fe4f93a4bed357517db7e6.jpg", "file_size": 21234, "is_delete": false, "file_type": 1, "original_file_name": "0006-44FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74d857664fe4f93a4bed357517db7e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74d857664fe4f93a4bed357517db7e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74d857664fe4f93a4bed357517db7e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f74d857664fe4f93a4bed357517db7e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f74d857664fe4f93a4bed357517db7e6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iU2BOGtFrxUQudO572mLRkZ9nKg=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.986671+00 2025-12-09 10:15:28.986677+00 15185 HW23882FWE#XL SPMX-20240815310389 \N \N \N 1 \N [{"file_id": "ea09d3fe-750f-44e2-a287-325686815690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da8c64be4d564138990d1abce0d666cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da8c64be4d564138990d1abce0d666cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da8c64be4d564138990d1abce0d666cf.jpg", "file_size": 21215, "is_delete": false, "file_type": 1, "original_file_name": "HW23882FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8c64be4d564138990d1abce0d666cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8c64be4d564138990d1abce0d666cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8c64be4d564138990d1abce0d666cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da8c64be4d564138990d1abce0d666cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da8c64be4d564138990d1abce0d666cf.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAiHo9LiXFdHHsn5fbyQKhrjidM=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.989247+00 2025-12-09 10:15:28.989254+00 15186 122#-杏色 SPMX-20240815310386 \N \N \N 1 \N [{"file_id": "23288fdd-40a2-403a-90e9-606a4fc8cd62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e25f4c004b3411bb504e0394f79a39a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e25f4c004b3411bb504e0394f79a39a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e25f4c004b3411bb504e0394f79a39a.jpg", "file_size": 54048, "is_delete": false, "file_type": 1, "original_file_name": "122#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e25f4c004b3411bb504e0394f79a39a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e25f4c004b3411bb504e0394f79a39a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e25f4c004b3411bb504e0394f79a39a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e25f4c004b3411bb504e0394f79a39a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e25f4c004b3411bb504e0394f79a39a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKdyekW-sfQbGFSzweM40AoDMuY=", "createTime": "2024-08-15 14:58:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.991728+00 2025-12-09 10:15:28.991733+00 15187 LJH1830#黄色 SPMX-20240815310390 \N \N \N 1 \N [{"file_id": "d5fc1b50-75fb-4c4f-b96c-3feab791f3d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae779b5b2e842e690567f0616faa127.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae779b5b2e842e690567f0616faa127.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae779b5b2e842e690567f0616faa127.jpg", "file_size": 69268, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae779b5b2e842e690567f0616faa127.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae779b5b2e842e690567f0616faa127.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae779b5b2e842e690567f0616faa127.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae779b5b2e842e690567f0616faa127.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae779b5b2e842e690567f0616faa127.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YjwgGr1KftNrqwlaaO9etHb1BeU=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.016451+00 2025-12-09 10:15:29.016458+00 15197 0006-45FWF#黑底 SPMX-20240815310413 \N \N \N 1 \N [{"file_id": "e45b372a-209c-42b1-96de-d20a856d6177", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84dc17f8bc3d41fea4bc44567a98b6e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84dc17f8bc3d41fea4bc44567a98b6e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84dc17f8bc3d41fea4bc44567a98b6e7.jpg", "file_size": 21117, "is_delete": false, "file_type": 1, "original_file_name": "0006-45FWF#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dc17f8bc3d41fea4bc44567a98b6e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dc17f8bc3d41fea4bc44567a98b6e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dc17f8bc3d41fea4bc44567a98b6e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84dc17f8bc3d41fea4bc44567a98b6e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84dc17f8bc3d41fea4bc44567a98b6e7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6Xi3eTxKIP3Y1x8L3PFuEIKwfo=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.994229+00 2025-12-09 10:15:28.994234+00 15188 DL31224#批布浅粉 SPMX-20240815310395 \N \N \N 1 \N [{"file_id": "b3884515-55ff-463d-add2-46d39fbd296f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "345261f072bc496a9b4e9012761e9692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "345261f072bc496a9b4e9012761e9692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "345261f072bc496a9b4e9012761e9692.jpg", "file_size": 16355, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/345261f072bc496a9b4e9012761e9692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/345261f072bc496a9b4e9012761e9692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/345261f072bc496a9b4e9012761e9692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/345261f072bc496a9b4e9012761e9692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/345261f072bc496a9b4e9012761e9692.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Br7ZyliPsruaB1bhT4dwP-B63l0=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.996668+00 2025-12-09 10:15:28.996674+00 15189 JTSS610FW#VS-D3 SPMX-20240815310393 \N \N \N 1 \N [{"file_id": "9da37b3c-efcd-4a08-bc67-8965b861caed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25150fc7e67c4584acf942db363735e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25150fc7e67c4584acf942db363735e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25150fc7e67c4584acf942db363735e4.jpg", "file_size": 12730, "is_delete": false, "file_type": 1, "original_file_name": "JTSS610FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25150fc7e67c4584acf942db363735e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25150fc7e67c4584acf942db363735e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25150fc7e67c4584acf942db363735e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25150fc7e67c4584acf942db363735e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25150fc7e67c4584acf942db363735e4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NWbt-qhcN2sXoqn5pJlQ5lpBccw=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:28.99889+00 2025-12-09 10:15:28.998896+00 15190 FR10318#主色配件19码 SPMX-20240815310397 \N \N \N 1 \N [{"file_id": "37df5d1e-f794-4189-880f-8e47014f697f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "169feea0246d4df092aaf3e933aade74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "169feea0246d4df092aaf3e933aade74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "169feea0246d4df092aaf3e933aade74.jpg", "file_size": 60535, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色配件19码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/169feea0246d4df092aaf3e933aade74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/169feea0246d4df092aaf3e933aade74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/169feea0246d4df092aaf3e933aade74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/169feea0246d4df092aaf3e933aade74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/169feea0246d4df092aaf3e933aade74.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3HYkBLR0OGqhdA2T4WH5vGOwlc=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.001366+00 2025-12-09 10:15:29.001372+00 15191 HW359680FWE#2XL SPMX-20240815310400 \N \N \N 1 \N [{"file_id": "684cc85a-9713-4b8c-bf88-07fd62c85373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9365a86504d4d8186b2f6369e80a525.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9365a86504d4d8186b2f6369e80a525.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9365a86504d4d8186b2f6369e80a525.jpg", "file_size": 13538, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9365a86504d4d8186b2f6369e80a525.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9365a86504d4d8186b2f6369e80a525.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9365a86504d4d8186b2f6369e80a525.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9365a86504d4d8186b2f6369e80a525.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9365a86504d4d8186b2f6369e80a525.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwScd9MgqUnu-SscGHTBC_QdKgQ=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.003811+00 2025-12-09 10:15:29.003816+00 15192 FR10318#主色配件18码 SPMX-20240815310387 \N \N \N 1 \N [{"file_id": "420d6531-0256-4023-ab9b-217f5cb7e2a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b242bda6e13440749569a9ba7c7cb1e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b242bda6e13440749569a9ba7c7cb1e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b242bda6e13440749569a9ba7c7cb1e6.jpg", "file_size": 59840, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色配件18码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b242bda6e13440749569a9ba7c7cb1e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b242bda6e13440749569a9ba7c7cb1e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b242bda6e13440749569a9ba7c7cb1e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b242bda6e13440749569a9ba7c7cb1e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b242bda6e13440749569a9ba7c7cb1e6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-a3ur9F_g1VaxGfWZlDU9_svI8=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.006358+00 2025-12-09 10:15:29.006363+00 15193 85004#14码 SPMX-20240815310388 \N \N \N 1 \N [{"file_id": "2a205e71-0e15-49b4-b8ad-87fe9334bd7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bddbfcc100414b98a385f616c5698e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bddbfcc100414b98a385f616c5698e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bddbfcc100414b98a385f616c5698e86.jpg", "file_size": 17984, "is_delete": false, "file_type": 1, "original_file_name": "85004#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bddbfcc100414b98a385f616c5698e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bddbfcc100414b98a385f616c5698e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bddbfcc100414b98a385f616c5698e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bddbfcc100414b98a385f616c5698e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bddbfcc100414b98a385f616c5698e86.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mO7fTGYDZhBW7puzZP0OxziYrlw=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.00883+00 2025-12-09 10:15:29.008836+00 15194 122#-灰色 SPMX-20240815310411 \N \N \N 1 \N [{"file_id": "bfd6ebc1-3446-46bc-a61f-8f0ad9cdbd25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg", "file_size": 60754, "is_delete": false, "file_type": 1, "original_file_name": "122#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b0d1fd3ae9b4b68b8d17e4794d3ac21.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNmaeLz8E1OFC_7hptaMj9WsffE=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.01109+00 2025-12-09 10:15:29.011095+00 15195 0006-45FWE#VS-D3 SPMX-20240815310401 \N \N \N 1 \N [{"file_id": "03c08831-b644-4778-ae3e-4e88c1b2defa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07291d8aa6994a6ca82e1ca56ced1c40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07291d8aa6994a6ca82e1ca56ced1c40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07291d8aa6994a6ca82e1ca56ced1c40.jpg", "file_size": 16138, "is_delete": false, "file_type": 1, "original_file_name": "0006-45FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07291d8aa6994a6ca82e1ca56ced1c40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07291d8aa6994a6ca82e1ca56ced1c40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07291d8aa6994a6ca82e1ca56ced1c40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07291d8aa6994a6ca82e1ca56ced1c40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07291d8aa6994a6ca82e1ca56ced1c40.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjEm3-GuqJYV3mv1NyMrQz_YcVQ=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.019452+00 2025-12-09 10:15:29.019459+00 15198 FR10318#主色配件20码 SPMX-20240815310408 \N \N \N 1 \N [{"file_id": "80aba544-f3b2-425b-aa14-e1ff9476594e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a8111d6b0a14016bc56f49967d3fb0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a8111d6b0a14016bc56f49967d3fb0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a8111d6b0a14016bc56f49967d3fb0c.jpg", "file_size": 58507, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#主色配件20码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8111d6b0a14016bc56f49967d3fb0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8111d6b0a14016bc56f49967d3fb0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a8111d6b0a14016bc56f49967d3fb0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a8111d6b0a14016bc56f49967d3fb0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a8111d6b0a14016bc56f49967d3fb0c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAlbiR6_0bYX9_Hk9VaKW1xMJgA=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.022123+00 2025-12-09 10:15:29.022128+00 15199 HW359680FWE#L SPMX-20240815310409 \N \N \N 1 \N [{"file_id": "567ad5ea-1240-4feb-a30c-eb54ff3b5c3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06510794b5a04c7ba6c176bfe5adfbe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06510794b5a04c7ba6c176bfe5adfbe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06510794b5a04c7ba6c176bfe5adfbe7.jpg", "file_size": 12594, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06510794b5a04c7ba6c176bfe5adfbe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06510794b5a04c7ba6c176bfe5adfbe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06510794b5a04c7ba6c176bfe5adfbe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06510794b5a04c7ba6c176bfe5adfbe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06510794b5a04c7ba6c176bfe5adfbe7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gvf_QJ0qGIMHSMxOE8NUjX84HQ4=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.024734+00 2025-12-09 10:15:29.024741+00 15200 JTSS611FW#VS-D3 SPMX-20240815310403 \N \N \N 1 \N [{"file_id": "b240555d-6dea-4497-af15-c37fcb79c780", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2727b00b563848b2affb60ca835e9807.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2727b00b563848b2affb60ca835e9807.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2727b00b563848b2affb60ca835e9807.jpg", "file_size": 16278, "is_delete": false, "file_type": 1, "original_file_name": "JTSS611FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2727b00b563848b2affb60ca835e9807.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2727b00b563848b2affb60ca835e9807.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2727b00b563848b2affb60ca835e9807.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2727b00b563848b2affb60ca835e9807.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2727b00b563848b2affb60ca835e9807.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7texnpigimERVvaABNu3kSy63I=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.027231+00 2025-12-09 10:15:29.027237+00 15201 DL31224#批布玫红 SPMX-20240815310406 \N \N \N 1 \N [{"file_id": "4a64cdab-bd5f-454e-9cf7-2470b4b1b2d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76912f3cd78e4309812c6e3715513f2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76912f3cd78e4309812c6e3715513f2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76912f3cd78e4309812c6e3715513f2c.jpg", "file_size": 14984, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76912f3cd78e4309812c6e3715513f2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76912f3cd78e4309812c6e3715513f2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76912f3cd78e4309812c6e3715513f2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76912f3cd78e4309812c6e3715513f2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76912f3cd78e4309812c6e3715513f2c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfoHiB74FHI6JqIYvfYX6TTbrgc=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.029716+00 2025-12-09 10:15:29.029721+00 15202 85004#6码 SPMX-20240815310410 \N \N \N 1 \N [{"file_id": "eb0b0ce3-6972-4450-8ecc-b20e07f47a79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70119c850bce4e2784100d4736ca31a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70119c850bce4e2784100d4736ca31a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70119c850bce4e2784100d4736ca31a7.jpg", "file_size": 18327, "is_delete": false, "file_type": 1, "original_file_name": "85004#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70119c850bce4e2784100d4736ca31a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70119c850bce4e2784100d4736ca31a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70119c850bce4e2784100d4736ca31a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70119c850bce4e2784100d4736ca31a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70119c850bce4e2784100d4736ca31a7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ejArcaNCDnFx6tZDzFnSD4gkdMA=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.033149+00 2025-12-09 10:15:29.033156+00 15203 DL31224#批布黄色 SPMX-20240815310415 \N \N \N 1 \N [{"file_id": "c6e0e2d2-dbd3-4bc8-a2bd-d160f455851b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7be62d6a5354a5787490122d49d7d24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7be62d6a5354a5787490122d49d7d24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7be62d6a5354a5787490122d49d7d24.jpg", "file_size": 17564, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7be62d6a5354a5787490122d49d7d24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7be62d6a5354a5787490122d49d7d24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7be62d6a5354a5787490122d49d7d24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7be62d6a5354a5787490122d49d7d24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7be62d6a5354a5787490122d49d7d24.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_10madeaqf2QDV1I2wDKBhJK8Y=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.036723+00 2025-12-09 10:15:29.036729+00 15204 23-305#A1-领子4XL SPMX-20240815310402 \N \N \N 1 \N [{"file_id": "d0142441-477c-4e72-9c27-2e8d2ed86625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dcdd844dccd4fa78d8815d26937ea3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dcdd844dccd4fa78d8815d26937ea3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dcdd844dccd4fa78d8815d26937ea3a.jpg", "file_size": 17472, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcdd844dccd4fa78d8815d26937ea3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcdd844dccd4fa78d8815d26937ea3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcdd844dccd4fa78d8815d26937ea3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dcdd844dccd4fa78d8815d26937ea3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dcdd844dccd4fa78d8815d26937ea3a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHUgzBgdmWwfLYehp35ZS4uJ8ds=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.040139+00 2025-12-09 10:15:29.040146+00 15205 LZ133FWF#2号色短袖 SPMX-20240815310404 \N \N \N 1 \N [{"file_id": "3431fe18-bf4a-4653-99e8-14b8ef2408e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f48774e71ff4aa1866aba1eb5a80af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f48774e71ff4aa1866aba1eb5a80af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f48774e71ff4aa1866aba1eb5a80af2.jpg", "file_size": 19376, "is_delete": false, "file_type": 1, "original_file_name": "LZ133FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f48774e71ff4aa1866aba1eb5a80af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f48774e71ff4aa1866aba1eb5a80af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f48774e71ff4aa1866aba1eb5a80af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f48774e71ff4aa1866aba1eb5a80af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f48774e71ff4aa1866aba1eb5a80af2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZGqj16qE4vPbGkvxUeTxhdA5T-A=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.043097+00 2025-12-09 10:15:29.043103+00 15206 LJH1830#黑色 SPMX-20240815310405 \N \N \N 1 \N [{"file_id": "e22603d3-8901-4042-86be-a4557989b741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86662e96a9fa4b179b0d6332c0b6976d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86662e96a9fa4b179b0d6332c0b6976d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86662e96a9fa4b179b0d6332c0b6976d.jpg", "file_size": 51617, "is_delete": false, "file_type": 1, "original_file_name": "LJH1830#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86662e96a9fa4b179b0d6332c0b6976d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86662e96a9fa4b179b0d6332c0b6976d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86662e96a9fa4b179b0d6332c0b6976d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86662e96a9fa4b179b0d6332c0b6976d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86662e96a9fa4b179b0d6332c0b6976d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdIlLESs3-N9S43hnEqvdiAzLRQ=", "createTime": "2024-08-15 14:58:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.04609+00 2025-12-09 10:15:29.046097+00 15207 JTSS612FW#VS-D3 SPMX-20240815310414 \N \N \N 1 \N [{"file_id": "7a2e380f-fd3e-472f-b083-116ffce03ad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68de482944704dfe9247d964c3fab06f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68de482944704dfe9247d964c3fab06f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68de482944704dfe9247d964c3fab06f.jpg", "file_size": 17907, "is_delete": false, "file_type": 1, "original_file_name": "JTSS612FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68de482944704dfe9247d964c3fab06f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68de482944704dfe9247d964c3fab06f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68de482944704dfe9247d964c3fab06f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68de482944704dfe9247d964c3fab06f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68de482944704dfe9247d964c3fab06f.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_o9hzoq8QCtaV0YrwG6GnuIjq30=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.048821+00 2025-12-09 10:15:29.048829+00 15208 CAS24-39# SPMX-20240815310407 \N \N \N 1 \N [{"file_id": "b60d3880-580a-4b83-825b-3c678d73bd22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef8291fb9b574badbfa5be864ef2a2c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef8291fb9b574badbfa5be864ef2a2c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef8291fb9b574badbfa5be864ef2a2c1.jpg", "file_size": 38024, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-39#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8291fb9b574badbfa5be864ef2a2c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8291fb9b574badbfa5be864ef2a2c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef8291fb9b574badbfa5be864ef2a2c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef8291fb9b574badbfa5be864ef2a2c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef8291fb9b574badbfa5be864ef2a2c1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAtrL_tNtE9iT2eprCiLWp8OTE8=", "createTime": "2024-08-15 14:58:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.051339+00 2025-12-09 10:15:29.051344+00 15209 JTSS613FW#VS-D3 SPMX-20240815310425 \N \N \N 1 \N [{"file_id": "2f958b9c-5ef6-4110-8a60-57a87e8f667e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "877b35a8fecb44c79e6047f5136cd5a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "877b35a8fecb44c79e6047f5136cd5a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "877b35a8fecb44c79e6047f5136cd5a5.jpg", "file_size": 11913, "is_delete": false, "file_type": 1, "original_file_name": "JTSS613FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877b35a8fecb44c79e6047f5136cd5a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877b35a8fecb44c79e6047f5136cd5a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/877b35a8fecb44c79e6047f5136cd5a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/877b35a8fecb44c79e6047f5136cd5a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/877b35a8fecb44c79e6047f5136cd5a5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNGXfNYP6oQS-QXakOjrhWapvn0=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.053862+00 2025-12-09 10:15:29.053868+00 15210 LJH1831#彩兰 SPMX-20240815310428 \N \N \N 1 \N [{"file_id": "f0645085-08a3-40bd-ae9b-773ba806736e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e55eaae92d64da3b5478f00d6a7581c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e55eaae92d64da3b5478f00d6a7581c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e55eaae92d64da3b5478f00d6a7581c.jpg", "file_size": 61324, "is_delete": false, "file_type": 1, "original_file_name": "LJH1831#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55eaae92d64da3b5478f00d6a7581c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55eaae92d64da3b5478f00d6a7581c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e55eaae92d64da3b5478f00d6a7581c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e55eaae92d64da3b5478f00d6a7581c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e55eaae92d64da3b5478f00d6a7581c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luG8-DJpiqvlqt592kSUKAZh_cw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.05632+00 2025-12-09 10:15:29.056326+00 15211 0006-45FWF#黑底番禺调色 SPMX-20240815310423 \N \N \N 1 \N [{"file_id": "99fd983a-f374-4563-9f26-b6e1911b9807", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6b975550c334f82b83ae38f261ce9c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6b975550c334f82b83ae38f261ce9c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6b975550c334f82b83ae38f261ce9c8.jpg", "file_size": 11812, "is_delete": false, "file_type": 1, "original_file_name": "0006-45FWF#黑底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b975550c334f82b83ae38f261ce9c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b975550c334f82b83ae38f261ce9c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b975550c334f82b83ae38f261ce9c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6b975550c334f82b83ae38f261ce9c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6b975550c334f82b83ae38f261ce9c8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BchLZUsWInYRtvAnstOCSIV14Qc=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.058804+00 2025-12-09 10:15:29.058809+00 15212 LZ133FWF#4号色短袖 SPMX-20240815310427 \N \N \N 1 \N [{"file_id": "0a7688c7-2562-48a2-a580-ddb6ae0f8d95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27323b0dd39c43a2afb9149b0c3f618e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27323b0dd39c43a2afb9149b0c3f618e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27323b0dd39c43a2afb9149b0c3f618e.jpg", "file_size": 19299, "is_delete": false, "file_type": 1, "original_file_name": "LZ133FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27323b0dd39c43a2afb9149b0c3f618e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27323b0dd39c43a2afb9149b0c3f618e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27323b0dd39c43a2afb9149b0c3f618e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27323b0dd39c43a2afb9149b0c3f618e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27323b0dd39c43a2afb9149b0c3f618e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leEHeH8dZrBf9Nhb2kFdHxdYIPY=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.061317+00 2025-12-09 10:15:29.061322+00 15213 CAS24-41# SPMX-20240815310417 \N \N \N 1 \N [{"file_id": "d457ebc8-e3cb-48ec-be31-52fc4b761c84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195fcee883534933ae67463e219aa95a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195fcee883534933ae67463e219aa95a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195fcee883534933ae67463e219aa95a.jpg", "file_size": 48428, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-41#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195fcee883534933ae67463e219aa95a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195fcee883534933ae67463e219aa95a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195fcee883534933ae67463e219aa95a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195fcee883534933ae67463e219aa95a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195fcee883534933ae67463e219aa95a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8_RSZRHb_Pe7NzsW3avQmsO26A=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.063785+00 2025-12-09 10:15:29.063791+00 15214 FR10318#图片蓝色17码 SPMX-20240815310419 \N \N \N 1 \N [{"file_id": "9854073e-02ae-4134-bda9-8922f448224e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dca7ba17fc84b609419da89caececbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dca7ba17fc84b609419da89caececbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dca7ba17fc84b609419da89caececbb.jpg", "file_size": 55333, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色17码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dca7ba17fc84b609419da89caececbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dca7ba17fc84b609419da89caececbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dca7ba17fc84b609419da89caececbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dca7ba17fc84b609419da89caececbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dca7ba17fc84b609419da89caececbb.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FAZMVzRUn6ArOg1QMzLoUACjv4=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.066227+00 2025-12-09 10:15:29.066233+00 15215 85004#乱花 SPMX-20240815310421 \N \N \N 1 \N [{"file_id": "4007999c-8f6e-4593-aab6-b823e5f145b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a9fc99e8e084b6d9978c8eef3fe86cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a9fc99e8e084b6d9978c8eef3fe86cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a9fc99e8e084b6d9978c8eef3fe86cc.jpg", "file_size": 5898, "is_delete": false, "file_type": 1, "original_file_name": "85004#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fc99e8e084b6d9978c8eef3fe86cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fc99e8e084b6d9978c8eef3fe86cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9fc99e8e084b6d9978c8eef3fe86cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a9fc99e8e084b6d9978c8eef3fe86cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a9fc99e8e084b6d9978c8eef3fe86cc.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:junaf66L8YOznRQYHJupGh-fts4=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.068471+00 2025-12-09 10:15:29.068477+00 15216 122#-白色 SPMX-20240815310424 \N \N \N 1 \N [{"file_id": "d208bfb0-f2b2-42f6-90ad-d1ed05e0fc5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0326f6b4ee1f4391bb998f05bf4962e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0326f6b4ee1f4391bb998f05bf4962e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0326f6b4ee1f4391bb998f05bf4962e4.jpg", "file_size": 52832, "is_delete": false, "file_type": 1, "original_file_name": "122#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0326f6b4ee1f4391bb998f05bf4962e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0326f6b4ee1f4391bb998f05bf4962e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0326f6b4ee1f4391bb998f05bf4962e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0326f6b4ee1f4391bb998f05bf4962e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0326f6b4ee1f4391bb998f05bf4962e4.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:53HkvIAFlx9McGzRF4NblgnYHrg=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.070957+00 2025-12-09 10:15:29.070962+00 15217 23-305#A10-4XL SPMX-20240815310422 \N \N \N 1 \N [{"file_id": "76227239-ed6f-4970-8297-fae32dd3fe59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ad693bb3e454f65a2ceca9abe026596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ad693bb3e454f65a2ceca9abe026596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ad693bb3e454f65a2ceca9abe026596.jpg", "file_size": 19153, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A10-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ad693bb3e454f65a2ceca9abe026596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ad693bb3e454f65a2ceca9abe026596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ad693bb3e454f65a2ceca9abe026596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ad693bb3e454f65a2ceca9abe026596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ad693bb3e454f65a2ceca9abe026596.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kbcUUwmDkGtlm5-n5ZpGzSGKhf4=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.073367+00 2025-12-09 10:15:29.073373+00 15218 LZ133FWF#3号色短袖 SPMX-20240815310416 \N \N \N 1 \N [{"file_id": "13414166-271f-4c08-9f34-70d38593465b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "600a0e4af4414a82b2e466f74f2b3f3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "600a0e4af4414a82b2e466f74f2b3f3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "600a0e4af4414a82b2e466f74f2b3f3d.jpg", "file_size": 19137, "is_delete": false, "file_type": 1, "original_file_name": "LZ133FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600a0e4af4414a82b2e466f74f2b3f3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600a0e4af4414a82b2e466f74f2b3f3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600a0e4af4414a82b2e466f74f2b3f3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/600a0e4af4414a82b2e466f74f2b3f3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/600a0e4af4414a82b2e466f74f2b3f3d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yE7bB6X5wrCdhrDyD-fRaB2CCRY=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.075832+00 2025-12-09 10:15:29.075838+00 15219 LJH1831#天兰 SPMX-20240815310418 \N \N \N 1 \N [{"file_id": "d8e818d3-3843-4003-b1ca-46146d7a0f00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a62a19c8fdcf4d80b21f10b238f24670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a62a19c8fdcf4d80b21f10b238f24670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a62a19c8fdcf4d80b21f10b238f24670.jpg", "file_size": 61237, "is_delete": false, "file_type": 1, "original_file_name": "LJH1831#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62a19c8fdcf4d80b21f10b238f24670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62a19c8fdcf4d80b21f10b238f24670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62a19c8fdcf4d80b21f10b238f24670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a62a19c8fdcf4d80b21f10b238f24670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a62a19c8fdcf4d80b21f10b238f24670.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LssfByKUjayxphf83M2ZkA-qrf8=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.078307+00 2025-12-09 10:15:29.078313+00 15220 HW359680FWE#M SPMX-20240815310420 \N \N \N 1 \N [{"file_id": "98fdcc7a-58a3-467d-af00-c180735ea6cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22df65f0cdeb479c8f4f47e25f959f3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22df65f0cdeb479c8f4f47e25f959f3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22df65f0cdeb479c8f4f47e25f959f3b.jpg", "file_size": 13018, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22df65f0cdeb479c8f4f47e25f959f3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22df65f0cdeb479c8f4f47e25f959f3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22df65f0cdeb479c8f4f47e25f959f3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22df65f0cdeb479c8f4f47e25f959f3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22df65f0cdeb479c8f4f47e25f959f3b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZhGXQpanIfR9ospOPEEBN-8gZY=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.080599+00 2025-12-09 10:15:29.080604+00 15221 DL31224#袖子兰绿 SPMX-20240815310426 \N \N \N 1 \N [{"file_id": "13f379af-483d-4121-8e1f-5baea0995042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23d266d2e1994b81b7a2567fc51caf00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23d266d2e1994b81b7a2567fc51caf00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23d266d2e1994b81b7a2567fc51caf00.jpg", "file_size": 13095, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d266d2e1994b81b7a2567fc51caf00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d266d2e1994b81b7a2567fc51caf00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d266d2e1994b81b7a2567fc51caf00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23d266d2e1994b81b7a2567fc51caf00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23d266d2e1994b81b7a2567fc51caf00.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HrI4sJM7ZHzJBxg8tfHlIqeI2y4=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.083049+00 2025-12-09 10:15:29.083054+00 15222 HW359680FWE#XL SPMX-20240815310442 \N \N \N 1 \N [{"file_id": "e0b21135-9e44-4397-accb-0e8def8a9049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bda53580e74e48d6ae0e58b9ae6cb1e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bda53580e74e48d6ae0e58b9ae6cb1e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bda53580e74e48d6ae0e58b9ae6cb1e7.jpg", "file_size": 13213, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda53580e74e48d6ae0e58b9ae6cb1e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda53580e74e48d6ae0e58b9ae6cb1e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda53580e74e48d6ae0e58b9ae6cb1e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bda53580e74e48d6ae0e58b9ae6cb1e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bda53580e74e48d6ae0e58b9ae6cb1e7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9v2GxY-UjZzC6p2Eusc-OnH9iwo=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.085584+00 2025-12-09 10:15:29.08559+00 15223 FR10318#图片蓝色18码 SPMX-20240815310430 \N \N \N 1 \N [{"file_id": "1a364181-547f-4c47-ad84-9198d08bfacb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe75422221df4574b017f97b385ea636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe75422221df4574b017f97b385ea636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe75422221df4574b017f97b385ea636.jpg", "file_size": 54691, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色18码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe75422221df4574b017f97b385ea636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe75422221df4574b017f97b385ea636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe75422221df4574b017f97b385ea636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe75422221df4574b017f97b385ea636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe75422221df4574b017f97b385ea636.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJ-3IgKyv56GGDtg6VUmYxBOdrw=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.088063+00 2025-12-09 10:15:29.088068+00 15224 LZ133FWF#5号色短袖 SPMX-20240815310435 \N \N \N 1 \N [{"file_id": "9c37a2e0-bbd7-44a1-8001-3612b5d9c2f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "000ee90e8a6a435bb6248896f0f39c24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "000ee90e8a6a435bb6248896f0f39c24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "000ee90e8a6a435bb6248896f0f39c24.jpg", "file_size": 20616, "is_delete": false, "file_type": 1, "original_file_name": "LZ133FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/000ee90e8a6a435bb6248896f0f39c24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/000ee90e8a6a435bb6248896f0f39c24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/000ee90e8a6a435bb6248896f0f39c24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/000ee90e8a6a435bb6248896f0f39c24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/000ee90e8a6a435bb6248896f0f39c24.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ujn2DZIO6fhAay_BPaQBNCFBPuI=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.090573+00 2025-12-09 10:15:29.090579+00 15225 FR10318#图片蓝色19码 SPMX-20240815310443 \N \N \N 1 \N [{"file_id": "ee10e480-601f-4d0b-8447-62882d84432f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5cf84066a5442ffb71668d51b5bd1fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5cf84066a5442ffb71668d51b5bd1fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5cf84066a5442ffb71668d51b5bd1fd.jpg", "file_size": 56574, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色19码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cf84066a5442ffb71668d51b5bd1fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cf84066a5442ffb71668d51b5bd1fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cf84066a5442ffb71668d51b5bd1fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5cf84066a5442ffb71668d51b5bd1fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5cf84066a5442ffb71668d51b5bd1fd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbvGPzJl79nAuCE9dpbTreJwZbs=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.093055+00 2025-12-09 10:15:29.093061+00 15226 0006-46FWE#VS-D3 SPMX-20240815310433 \N \N \N 1 \N [{"file_id": "e0c97b5f-18d6-47c7-b33b-e1315ced3fb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7324969a7ff4a4996c8f83c624ef715.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7324969a7ff4a4996c8f83c624ef715.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7324969a7ff4a4996c8f83c624ef715.jpg", "file_size": 11836, "is_delete": false, "file_type": 1, "original_file_name": "0006-46FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7324969a7ff4a4996c8f83c624ef715.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7324969a7ff4a4996c8f83c624ef715.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7324969a7ff4a4996c8f83c624ef715.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7324969a7ff4a4996c8f83c624ef715.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7324969a7ff4a4996c8f83c624ef715.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5---N8qsNrPMFHtW1dVPgKG6Bew=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.095599+00 2025-12-09 10:15:29.095606+00 15227 LJH1831#红色 SPMX-20240815310439 \N \N \N 1 \N [{"file_id": "2b871bc6-275e-4841-bbd9-0d50a468e569", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329d11a59a844d89a0bada0b390d96ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329d11a59a844d89a0bada0b390d96ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329d11a59a844d89a0bada0b390d96ae.jpg", "file_size": 60297, "is_delete": false, "file_type": 1, "original_file_name": "LJH1831#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329d11a59a844d89a0bada0b390d96ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329d11a59a844d89a0bada0b390d96ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329d11a59a844d89a0bada0b390d96ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329d11a59a844d89a0bada0b390d96ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329d11a59a844d89a0bada0b390d96ae.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PscjkVPlg8eMC3VTV7lJaUEijsU=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.098211+00 2025-12-09 10:15:29.098217+00 15228 0006-46FWE#VS-D3番禺调色 SPMX-20240815310444 \N \N \N 1 \N [{"file_id": "f4a3d4e9-5fa1-4a5f-a9f5-28deeeff2541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1ec682610c242bea72cf3875b66630d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1ec682610c242bea72cf3875b66630d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1ec682610c242bea72cf3875b66630d.jpg", "file_size": 13388, "is_delete": false, "file_type": 1, "original_file_name": "0006-46FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec682610c242bea72cf3875b66630d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec682610c242bea72cf3875b66630d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec682610c242bea72cf3875b66630d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1ec682610c242bea72cf3875b66630d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1ec682610c242bea72cf3875b66630d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrbQwCxD24tUgnr9TGZkTK0v6JM=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.100725+00 2025-12-09 10:15:29.10073+00 15229 HW359680FWE#S SPMX-20240815310432 \N \N \N 1 \N [{"file_id": "ade936c2-e154-4eff-8dfd-d33611e685a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09d47d7510f547e1b71d52ceec50a2a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09d47d7510f547e1b71d52ceec50a2a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09d47d7510f547e1b71d52ceec50a2a2.jpg", "file_size": 12467, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d47d7510f547e1b71d52ceec50a2a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d47d7510f547e1b71d52ceec50a2a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d47d7510f547e1b71d52ceec50a2a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09d47d7510f547e1b71d52ceec50a2a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09d47d7510f547e1b71d52ceec50a2a2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fa3BP51VgUEfQOzyAsrk4H1xWTk=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.103181+00 2025-12-09 10:15:29.103186+00 15230 85005#14码 SPMX-20240815310440 \N \N \N 1 \N [{"file_id": "d9669fb1-44ec-4f30-9fec-9290e1792631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d076d93e051406690300659e1188545.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d076d93e051406690300659e1188545.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d076d93e051406690300659e1188545.jpg", "file_size": 16270, "is_delete": false, "file_type": 1, "original_file_name": "85005#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d076d93e051406690300659e1188545.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d076d93e051406690300659e1188545.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d076d93e051406690300659e1188545.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d076d93e051406690300659e1188545.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d076d93e051406690300659e1188545.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uu1uWqgzfV3OLUXfxb2F2-sNgc=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.105637+00 2025-12-09 10:15:29.105643+00 15231 23-305#A10-领子3XL SPMX-20240815310434 \N \N \N 1 \N [{"file_id": "2446a4db-9f6f-4fd0-9314-e1719acb7428", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba56351af8424b24b844344c547f6a0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba56351af8424b24b844344c547f6a0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba56351af8424b24b844344c547f6a0e.jpg", "file_size": 12884, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A10-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56351af8424b24b844344c547f6a0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56351af8424b24b844344c547f6a0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba56351af8424b24b844344c547f6a0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba56351af8424b24b844344c547f6a0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba56351af8424b24b844344c547f6a0e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qLjGO0A_uhRCPeFLlZK7hk96XZ0=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.108137+00 2025-12-09 10:15:29.108143+00 15232 DL31224#袖子彩兰 SPMX-20240815310437 \N \N \N 1 \N [{"file_id": "9da12e62-8dc8-4608-98f9-5944cc03c3bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9f7e4bd654a4350a3fc0e7b40cc758e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9f7e4bd654a4350a3fc0e7b40cc758e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9f7e4bd654a4350a3fc0e7b40cc758e.jpg", "file_size": 13570, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f7e4bd654a4350a3fc0e7b40cc758e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f7e4bd654a4350a3fc0e7b40cc758e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f7e4bd654a4350a3fc0e7b40cc758e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9f7e4bd654a4350a3fc0e7b40cc758e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9f7e4bd654a4350a3fc0e7b40cc758e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juUi-9BbjY7zu98DBAYwt0UgqRw=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.110727+00 2025-12-09 10:15:29.110733+00 15233 85005#10码+12码 SPMX-20240815310429 \N \N \N 1 \N [{"file_id": "6efe6d8e-0f99-476f-8c7a-42efbf13ae92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff4b2327eed4c53b9b0b8393c183fd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff4b2327eed4c53b9b0b8393c183fd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff4b2327eed4c53b9b0b8393c183fd3.jpg", "file_size": 18270, "is_delete": false, "file_type": 1, "original_file_name": "85005#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4b2327eed4c53b9b0b8393c183fd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4b2327eed4c53b9b0b8393c183fd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff4b2327eed4c53b9b0b8393c183fd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff4b2327eed4c53b9b0b8393c183fd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff4b2327eed4c53b9b0b8393c183fd3.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgx3_NxVYgifOVC40c-3Zm5m8hc=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.113231+00 2025-12-09 10:15:29.113238+00 15234 CASS-W1#WJC22 SPMX-20240815310441 \N \N \N 1 \N [{"file_id": "24a9640e-d986-4b26-881e-b96f2bf3471f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232deaef2d924a84b94389a019f7adb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232deaef2d924a84b94389a019f7adb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232deaef2d924a84b94389a019f7adb5.jpg", "file_size": 11454, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232deaef2d924a84b94389a019f7adb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232deaef2d924a84b94389a019f7adb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232deaef2d924a84b94389a019f7adb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232deaef2d924a84b94389a019f7adb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232deaef2d924a84b94389a019f7adb5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SpbSjJH3He1XPgMeSkEVSsNLhI=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.115756+00 2025-12-09 10:15:29.115761+00 15235 CAS24-44# SPMX-20240815310431 \N \N \N 1 \N [{"file_id": "9ae86797-7aca-48cf-a5f4-f4f932175062", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d19519f50c94f95baced845eca11804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d19519f50c94f95baced845eca11804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d19519f50c94f95baced845eca11804.jpg", "file_size": 26242, "is_delete": false, "file_type": 1, "original_file_name": "CAS24-44#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d19519f50c94f95baced845eca11804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d19519f50c94f95baced845eca11804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d19519f50c94f95baced845eca11804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d19519f50c94f95baced845eca11804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d19519f50c94f95baced845eca11804.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U8C4AzUcBfjvMU2zlw6xf-4La7M=", "createTime": "2024-08-15 14:58:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.118322+00 2025-12-09 10:15:29.118329+00 15236 JTSS614FW#红VS-D3 SPMX-20240815310436 \N \N \N 1 \N [{"file_id": "8476bff2-3448-41d1-ac4a-26d0ccfd485b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4335be862394e1b869eee059d3f5edb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4335be862394e1b869eee059d3f5edb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4335be862394e1b869eee059d3f5edb.jpg", "file_size": 11122, "is_delete": false, "file_type": 1, "original_file_name": "JTSS614FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4335be862394e1b869eee059d3f5edb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4335be862394e1b869eee059d3f5edb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4335be862394e1b869eee059d3f5edb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4335be862394e1b869eee059d3f5edb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4335be862394e1b869eee059d3f5edb.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fl61E8Hzqd4AhliV_z7XpjRdW64=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.120803+00 2025-12-09 10:15:29.120809+00 15237 122#-黑色 SPMX-20240815310438 \N \N \N 1 \N [{"file_id": "719d318e-f3de-4a66-96ad-4d1c18dc3515", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80446b9fe41647af9d6e45378b4d0d58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80446b9fe41647af9d6e45378b4d0d58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80446b9fe41647af9d6e45378b4d0d58.jpg", "file_size": 49280, "is_delete": false, "file_type": 1, "original_file_name": "122#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80446b9fe41647af9d6e45378b4d0d58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80446b9fe41647af9d6e45378b4d0d58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80446b9fe41647af9d6e45378b4d0d58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80446b9fe41647af9d6e45378b4d0d58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80446b9fe41647af9d6e45378b4d0d58.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5QU-hO6QqDul10wl2mY0gz9x0gA=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.12329+00 2025-12-09 10:15:29.123297+00 15238 LJH1831#绿色 SPMX-20240815310451 \N \N \N 1 \N [{"file_id": "9ea0511c-7ca5-4e9e-8ca3-5ea5625fcb2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1fd2fe48cff4186a0b85d70e2ea567c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1fd2fe48cff4186a0b85d70e2ea567c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1fd2fe48cff4186a0b85d70e2ea567c.jpg", "file_size": 60174, "is_delete": false, "file_type": 1, "original_file_name": "LJH1831#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fd2fe48cff4186a0b85d70e2ea567c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fd2fe48cff4186a0b85d70e2ea567c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1fd2fe48cff4186a0b85d70e2ea567c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1fd2fe48cff4186a0b85d70e2ea567c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1fd2fe48cff4186a0b85d70e2ea567c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwCM60sXRpr-GTT_RLa58ItNxi8=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.125836+00 2025-12-09 10:15:29.125842+00 15239 JTSS614FW#黑VS-D3 SPMX-20240815310447 \N \N \N 1 \N [{"file_id": "b4b63526-4210-49da-856f-0c751196c979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "108932a91f234af48891905951d3505d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "108932a91f234af48891905951d3505d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "108932a91f234af48891905951d3505d.jpg", "file_size": 10738, "is_delete": false, "file_type": 1, "original_file_name": "JTSS614FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/108932a91f234af48891905951d3505d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/108932a91f234af48891905951d3505d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/108932a91f234af48891905951d3505d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/108932a91f234af48891905951d3505d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/108932a91f234af48891905951d3505d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Ux7S78tw8NUz15sR2xTqmv3qr4=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.128261+00 2025-12-09 10:15:29.128267+00 15240 85005#4码+8码 SPMX-20240815310449 \N \N \N 1 \N [{"file_id": "06c2c42b-7875-44a9-9dc8-ebc6c0e546f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad5fa46d285341579dedb8b356d93f0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad5fa46d285341579dedb8b356d93f0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad5fa46d285341579dedb8b356d93f0d.jpg", "file_size": 17717, "is_delete": false, "file_type": 1, "original_file_name": "85005#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fa46d285341579dedb8b356d93f0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fa46d285341579dedb8b356d93f0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad5fa46d285341579dedb8b356d93f0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad5fa46d285341579dedb8b356d93f0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad5fa46d285341579dedb8b356d93f0d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjO-UOyAhDI83M5F_ftv-YoztNI=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.140831+00 2025-12-09 10:15:29.140837+00 15245 1220#RC23 SPMX-20240815310450 \N \N \N 1 \N [{"file_id": "408a3285-bed1-453e-ac67-fdd84a6bf07a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2c412e4a2684882ab183aed29ebd365.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2c412e4a2684882ab183aed29ebd365.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2c412e4a2684882ab183aed29ebd365.jpg", "file_size": 45049, "is_delete": false, "file_type": 1, "original_file_name": "1220#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c412e4a2684882ab183aed29ebd365.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c412e4a2684882ab183aed29ebd365.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c412e4a2684882ab183aed29ebd365.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2c412e4a2684882ab183aed29ebd365.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2c412e4a2684882ab183aed29ebd365.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOlwGScYjBHmHqVHTMSpA9zobIQ=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.130768+00 2025-12-09 10:15:29.130774+00 15241 DL31224#袖子枣红 SPMX-20240815310448 \N \N \N 1 \N [{"file_id": "e7ef4344-c5c3-4f31-b3f7-d8ef358e8ae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg", "file_size": 13538, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d2b9ecaf8d94ff8afd62bb57b533b0e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PfkyOyNYIu7mS8Cv1qzntlms3Q4=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.133294+00 2025-12-09 10:15:29.1333+00 15242 LZ1340#上身1号色 SPMX-20240815310446 \N \N \N 1 \N [{"file_id": "9c9ba062-ee8f-4fe6-880b-634de4fcbffc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa59349a92af41709bfdf08f7f1e1576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa59349a92af41709bfdf08f7f1e1576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa59349a92af41709bfdf08f7f1e1576.jpg", "file_size": 17824, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa59349a92af41709bfdf08f7f1e1576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa59349a92af41709bfdf08f7f1e1576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa59349a92af41709bfdf08f7f1e1576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa59349a92af41709bfdf08f7f1e1576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa59349a92af41709bfdf08f7f1e1576.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-kFXWx3Nvwr7h6SR7PWaqSjCDVo=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.135793+00 2025-12-09 10:15:29.1358+00 15243 CASS-W10#WJC22 SPMX-20240815310452 \N \N \N 1 \N [{"file_id": "1682aadc-ab35-4a26-b8fa-bd22db3ee0d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9dcd73ace514345ad752bfd3e06a0e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9dcd73ace514345ad752bfd3e06a0e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9dcd73ace514345ad752bfd3e06a0e2.jpg", "file_size": 13633, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dcd73ace514345ad752bfd3e06a0e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dcd73ace514345ad752bfd3e06a0e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9dcd73ace514345ad752bfd3e06a0e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9dcd73ace514345ad752bfd3e06a0e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9dcd73ace514345ad752bfd3e06a0e2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VFdIKrj7izZRqH7f2Cj2llZc03k=", "createTime": "2024-08-15 14:58:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.138329+00 2025-12-09 10:15:29.138335+00 15244 23-305#A10-领子4XL SPMX-20240815310445 \N \N \N 1 \N [{"file_id": "3aeb327d-bfdd-46bb-a66c-fcc155a9be18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df1f34b20d1e49898624213485ccaed2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df1f34b20d1e49898624213485ccaed2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df1f34b20d1e49898624213485ccaed2.jpg", "file_size": 13354, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A10-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df1f34b20d1e49898624213485ccaed2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df1f34b20d1e49898624213485ccaed2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df1f34b20d1e49898624213485ccaed2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df1f34b20d1e49898624213485ccaed2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df1f34b20d1e49898624213485ccaed2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6CPHKVm-6iZ-6RqSS7ePNFBb7WM=", "createTime": "2024-08-15 14:58:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.143098+00 2025-12-09 10:15:29.143103+00 15246 23-305#A11-4XL SPMX-20240815310464 \N \N \N 1 \N [{"file_id": "3ca456bf-ce42-4742-95bd-4aded48dd5e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "973d5e87ab3d49f79bf2ff36e3f4c25d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "973d5e87ab3d49f79bf2ff36e3f4c25d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "973d5e87ab3d49f79bf2ff36e3f4c25d.jpg", "file_size": 23648, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A11-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/973d5e87ab3d49f79bf2ff36e3f4c25d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/973d5e87ab3d49f79bf2ff36e3f4c25d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/973d5e87ab3d49f79bf2ff36e3f4c25d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/973d5e87ab3d49f79bf2ff36e3f4c25d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/973d5e87ab3d49f79bf2ff36e3f4c25d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ayyf44wo6szvlDSK1Fpl6JtoR1M=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.145629+00 2025-12-09 10:15:29.145634+00 15247 FR10318#图片蓝色20码 SPMX-20240815310457 \N \N \N 1 \N [{"file_id": "6db7f680-6f20-4902-9892-b0fe8490aa4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84614616a7b147b7b46880abe673a335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84614616a7b147b7b46880abe673a335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84614616a7b147b7b46880abe673a335.jpg", "file_size": 55580, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色20码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84614616a7b147b7b46880abe673a335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84614616a7b147b7b46880abe673a335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84614616a7b147b7b46880abe673a335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84614616a7b147b7b46880abe673a335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84614616a7b147b7b46880abe673a335.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EV3VAf0Wg6ul2K8JbegSNDlxA4Y=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.148121+00 2025-12-09 10:15:29.148126+00 15248 HW359680FWE#匹布 SPMX-20240815310453 \N \N \N 1 \N [{"file_id": "6b5a364c-883d-4bc7-aac2-82dae8ebfa5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab408b14a20a41eda546c35d9fd9ea65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab408b14a20a41eda546c35d9fd9ea65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab408b14a20a41eda546c35d9fd9ea65.jpg", "file_size": 6504, "is_delete": false, "file_type": 1, "original_file_name": "HW359680FWE#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab408b14a20a41eda546c35d9fd9ea65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab408b14a20a41eda546c35d9fd9ea65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab408b14a20a41eda546c35d9fd9ea65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab408b14a20a41eda546c35d9fd9ea65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab408b14a20a41eda546c35d9fd9ea65.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Mx6UMt0LTP1zmush3EDxTz57FM=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.150577+00 2025-12-09 10:15:29.150583+00 15249 LJH1831#黄色 SPMX-20240815310462 \N \N \N 1 \N [{"file_id": "f1204fca-8b8a-4fc1-b508-72943c6db6da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "071c3b55568f4bc2bb2e44b216827acd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "071c3b55568f4bc2bb2e44b216827acd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "071c3b55568f4bc2bb2e44b216827acd.jpg", "file_size": 58830, "is_delete": false, "file_type": 1, "original_file_name": "LJH1831#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071c3b55568f4bc2bb2e44b216827acd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071c3b55568f4bc2bb2e44b216827acd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071c3b55568f4bc2bb2e44b216827acd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/071c3b55568f4bc2bb2e44b216827acd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/071c3b55568f4bc2bb2e44b216827acd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fcl2ID-FXvtPK3TzcZeu4AFYlyk=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.153094+00 2025-12-09 10:15:29.153099+00 15250 LZ1340#上身2号色 SPMX-20240815310459 \N \N \N 1 \N [{"file_id": "9bfc6b42-ae01-49db-8798-3c9e9659bdf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c865bb8ce424a719caecbcd91a9f70c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c865bb8ce424a719caecbcd91a9f70c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c865bb8ce424a719caecbcd91a9f70c.jpg", "file_size": 16326, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c865bb8ce424a719caecbcd91a9f70c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c865bb8ce424a719caecbcd91a9f70c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c865bb8ce424a719caecbcd91a9f70c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c865bb8ce424a719caecbcd91a9f70c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c865bb8ce424a719caecbcd91a9f70c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tg_PZZ3rZ_Nvn2q4SIJYhMS5gAs=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.155599+00 2025-12-09 10:15:29.155604+00 15251 85005#6码 SPMX-20240815310463 \N \N \N 1 \N [{"file_id": "90550f46-56dd-43cc-8b39-0bb188a662fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b9a36230744313839d1254b564ee5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b9a36230744313839d1254b564ee5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b9a36230744313839d1254b564ee5f.jpg", "file_size": 17442, "is_delete": false, "file_type": 1, "original_file_name": "85005#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b9a36230744313839d1254b564ee5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b9a36230744313839d1254b564ee5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b9a36230744313839d1254b564ee5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b9a36230744313839d1254b564ee5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b9a36230744313839d1254b564ee5f.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjyMaOxvQaNIdghzTazDbdRxxiQ=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.158087+00 2025-12-09 10:15:29.158092+00 15252 23-305#A11-3XL SPMX-20240815310454 \N \N \N 1 \N [{"file_id": "85619319-5778-41f6-bc45-adb38a554f4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6889da5d034e5e8138f9dcf5647124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6889da5d034e5e8138f9dcf5647124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6889da5d034e5e8138f9dcf5647124.jpg", "file_size": 25103, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A11-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6889da5d034e5e8138f9dcf5647124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6889da5d034e5e8138f9dcf5647124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6889da5d034e5e8138f9dcf5647124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6889da5d034e5e8138f9dcf5647124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6889da5d034e5e8138f9dcf5647124.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Skv-OEWGlrXX7PUn9CdA90s2e_8=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.160538+00 2025-12-09 10:15:29.160544+00 15253 CASS-W11#WJC22 SPMX-20240815310456 \N \N \N 1 \N [{"file_id": "995028ec-69d1-4630-ba34-ee98ddc9ed59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09593dfaee504ce1a242089bf1f4735d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09593dfaee504ce1a242089bf1f4735d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09593dfaee504ce1a242089bf1f4735d.jpg", "file_size": 17004, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09593dfaee504ce1a242089bf1f4735d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09593dfaee504ce1a242089bf1f4735d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09593dfaee504ce1a242089bf1f4735d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09593dfaee504ce1a242089bf1f4735d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09593dfaee504ce1a242089bf1f4735d.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D052RiDKjCgS_cu1VfE08X2-jjs=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.163035+00 2025-12-09 10:15:29.163041+00 15254 0006-46FWF#V5曲线 SPMX-20240815310455 \N \N \N 1 \N [{"file_id": "591e6ae7-6b62-4bbd-9c40-f1d89c1bc2ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28e8e67b93b947169e46c00cd97d0fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28e8e67b93b947169e46c00cd97d0fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28e8e67b93b947169e46c00cd97d0fd8.jpg", "file_size": 20016, "is_delete": false, "file_type": 1, "original_file_name": "0006-46FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8e67b93b947169e46c00cd97d0fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8e67b93b947169e46c00cd97d0fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28e8e67b93b947169e46c00cd97d0fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28e8e67b93b947169e46c00cd97d0fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28e8e67b93b947169e46c00cd97d0fd8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g80UBQw8srpM4k4pXKLG7EgCNFA=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.165544+00 2025-12-09 10:15:29.16555+00 15255 DL31224#袖子浅粉 SPMX-20240815310458 \N \N \N 1 \N [{"file_id": "017cacb5-8cae-4402-8fb2-ab2dedbeafc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caec197a63dd423da94360bc8ae096d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caec197a63dd423da94360bc8ae096d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caec197a63dd423da94360bc8ae096d5.jpg", "file_size": 13118, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caec197a63dd423da94360bc8ae096d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caec197a63dd423da94360bc8ae096d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caec197a63dd423da94360bc8ae096d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caec197a63dd423da94360bc8ae096d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caec197a63dd423da94360bc8ae096d5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9N3pGcUFvX35dQYCAz7LJzTbd-I=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.168061+00 2025-12-09 10:15:29.168067+00 15256 1221#粉色 SPMX-20240815310460 \N \N \N 1 \N [{"file_id": "ba9b4536-f617-4292-840b-bd68b66c78bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad09bae5e504481ca701ddefd5f77b80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad09bae5e504481ca701ddefd5f77b80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad09bae5e504481ca701ddefd5f77b80.jpg", "file_size": 8896, "is_delete": false, "file_type": 1, "original_file_name": "1221#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09bae5e504481ca701ddefd5f77b80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09bae5e504481ca701ddefd5f77b80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09bae5e504481ca701ddefd5f77b80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad09bae5e504481ca701ddefd5f77b80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad09bae5e504481ca701ddefd5f77b80.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O3P9FQjehTRh12A_VrrmHIapR28=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.170742+00 2025-12-09 10:15:29.170748+00 15257 JTSS615FW#VS-D3 SPMX-20240815310461 \N \N \N 1 \N [{"file_id": "95775f15-894f-4df6-851c-bb509049da96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "110b4279c6fa4399b5c88394e2070415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "110b4279c6fa4399b5c88394e2070415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "110b4279c6fa4399b5c88394e2070415.jpg", "file_size": 10824, "is_delete": false, "file_type": 1, "original_file_name": "JTSS615FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110b4279c6fa4399b5c88394e2070415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110b4279c6fa4399b5c88394e2070415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110b4279c6fa4399b5c88394e2070415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/110b4279c6fa4399b5c88394e2070415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/110b4279c6fa4399b5c88394e2070415.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAbGQJqKSGGlaNMzRD51rew9hwE=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.17331+00 2025-12-09 10:15:29.173316+00 15258 CASS-W13#WJC22 SPMX-20240815310477 \N \N \N 1 \N [{"file_id": "31f86fe0-13b1-4229-976a-803b055aef0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7886f6793ce465db7cae04457375991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7886f6793ce465db7cae04457375991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7886f6793ce465db7cae04457375991.jpg", "file_size": 10118, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7886f6793ce465db7cae04457375991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7886f6793ce465db7cae04457375991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7886f6793ce465db7cae04457375991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7886f6793ce465db7cae04457375991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7886f6793ce465db7cae04457375991.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLh4YA_dC9utWqxnHrIcX9bPM30=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.175856+00 2025-12-09 10:15:29.175861+00 15259 1221#粉色格子 SPMX-20240815310470 \N \N \N 1 \N [{"file_id": "0997a408-6c28-4c3e-99dd-e749025262f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f34637ef1f54acc8778d973dc0efea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f34637ef1f54acc8778d973dc0efea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f34637ef1f54acc8778d973dc0efea8.jpg", "file_size": 9325, "is_delete": false, "file_type": 1, "original_file_name": "1221#粉色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f34637ef1f54acc8778d973dc0efea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f34637ef1f54acc8778d973dc0efea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f34637ef1f54acc8778d973dc0efea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f34637ef1f54acc8778d973dc0efea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f34637ef1f54acc8778d973dc0efea8.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBsDWEIjYvWxl8VK0s1s-kiWGUg=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.178329+00 2025-12-09 10:15:29.178336+00 15260 CASS-W12#WJC22 SPMX-20240815310467 \N \N \N 1 \N [{"file_id": "a268f552-f38e-4a7a-8c5c-1c731d159e5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d42c8b348c53442892ba4a6ecf93376a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d42c8b348c53442892ba4a6ecf93376a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d42c8b348c53442892ba4a6ecf93376a.jpg", "file_size": 20852, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W12#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42c8b348c53442892ba4a6ecf93376a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42c8b348c53442892ba4a6ecf93376a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42c8b348c53442892ba4a6ecf93376a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d42c8b348c53442892ba4a6ecf93376a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d42c8b348c53442892ba4a6ecf93376a.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAoS6Pw2S36WXrhfnnymD7Z4Ks4=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.18083+00 2025-12-09 10:15:29.180836+00 15261 LZ1340#上身3号色 SPMX-20240815310471 \N \N \N 1 \N [{"file_id": "67198002-3d71-4626-8768-bc13081204ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f67273905974684bdedce972aa38ba0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f67273905974684bdedce972aa38ba0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f67273905974684bdedce972aa38ba0.jpg", "file_size": 17236, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f67273905974684bdedce972aa38ba0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f67273905974684bdedce972aa38ba0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f67273905974684bdedce972aa38ba0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f67273905974684bdedce972aa38ba0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f67273905974684bdedce972aa38ba0.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfvD_F-P4cEBViZxui_yPViN8u0=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.183315+00 2025-12-09 10:15:29.18332+00 15262 FR10318#图片蓝色净色 SPMX-20240815310468 \N \N \N 1 \N [{"file_id": "9c702b71-8be5-45ac-8adf-4ca26ff1561d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fab4683968f54a6ebb1183fa976eac07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fab4683968f54a6ebb1183fa976eac07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fab4683968f54a6ebb1183fa976eac07.jpg", "file_size": 14541, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab4683968f54a6ebb1183fa976eac07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab4683968f54a6ebb1183fa976eac07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab4683968f54a6ebb1183fa976eac07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fab4683968f54a6ebb1183fa976eac07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fab4683968f54a6ebb1183fa976eac07.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0QBTxbqgfqGvj3CRD4iC2JWoGM=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.185755+00 2025-12-09 10:15:29.18576+00 15263 85005#乱花 SPMX-20240815310473 \N \N \N 1 \N [{"file_id": "6a403f78-a513-493e-9883-8bcb90328ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a06f141025af465ba8b85cf56326df6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a06f141025af465ba8b85cf56326df6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a06f141025af465ba8b85cf56326df6e.jpg", "file_size": 6408, "is_delete": false, "file_type": 1, "original_file_name": "85005#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f141025af465ba8b85cf56326df6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f141025af465ba8b85cf56326df6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a06f141025af465ba8b85cf56326df6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a06f141025af465ba8b85cf56326df6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a06f141025af465ba8b85cf56326df6e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jnMW6nAaTkxZBM4OJAlgTsvlo6o=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.188268+00 2025-12-09 10:15:29.188274+00 15264 23-305#A11-领子3XL SPMX-20240815310474 \N \N \N 1 \N [{"file_id": "40298759-4043-4e8e-aee0-4b8c68047986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg", "file_size": 17728, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A11-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec8bda3c63f4c4ebbf4f3bd40e0ec57.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LYTBxqQQTgpf9a6kmq2jFHdrALs=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.19075+00 2025-12-09 10:15:29.190757+00 15265 HW380710FWE#VS-D3 SPMX-20240815310476 \N \N \N 1 \N [{"file_id": "f4cacade-93f6-496f-9c7c-2b470a039964", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9000b070b3646a0a49d0768ac22826b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9000b070b3646a0a49d0768ac22826b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9000b070b3646a0a49d0768ac22826b.jpg", "file_size": 22114, "is_delete": false, "file_type": 1, "original_file_name": "HW380710FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9000b070b3646a0a49d0768ac22826b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9000b070b3646a0a49d0768ac22826b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9000b070b3646a0a49d0768ac22826b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9000b070b3646a0a49d0768ac22826b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9000b070b3646a0a49d0768ac22826b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iHD2JzF0mdp7r4axbcni1tsh5aE=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.193514+00 2025-12-09 10:15:29.193519+00 15266 JTSS616FW#VS-D3 SPMX-20240815310472 \N \N \N 1 \N [{"file_id": "b1a5bd83-ed39-4fe5-9678-9d6a731bec70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87e4019b81584f88be722e6f19b6033e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87e4019b81584f88be722e6f19b6033e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87e4019b81584f88be722e6f19b6033e.jpg", "file_size": 18301, "is_delete": false, "file_type": 1, "original_file_name": "JTSS616FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e4019b81584f88be722e6f19b6033e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e4019b81584f88be722e6f19b6033e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e4019b81584f88be722e6f19b6033e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87e4019b81584f88be722e6f19b6033e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87e4019b81584f88be722e6f19b6033e.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:My_ANP-IpgkdGRBT9lRdcWXfWdM=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.196074+00 2025-12-09 10:15:29.19608+00 15267 FR10318#图片蓝色配件17码 SPMX-20240815310479 \N \N \N 1 \N [{"file_id": "b4df8583-1e83-4b94-9b8e-af9a0126ee2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95b692ba524a44cc99a5c092160fd2f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95b692ba524a44cc99a5c092160fd2f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95b692ba524a44cc99a5c092160fd2f9.jpg", "file_size": 52539, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色配件17码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b692ba524a44cc99a5c092160fd2f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b692ba524a44cc99a5c092160fd2f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b692ba524a44cc99a5c092160fd2f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95b692ba524a44cc99a5c092160fd2f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95b692ba524a44cc99a5c092160fd2f9.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbDLE9ePoEH5Z3ingL6CcPggsus=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.198579+00 2025-12-09 10:15:29.198585+00 15268 HW366380FWE#VS-D3 SPMX-20240815310465 \N \N \N 1 \N [{"file_id": "a14e6891-95a9-45ac-8733-50612f80de47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9b7519afed44817af7047aa5c4f0a8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9b7519afed44817af7047aa5c4f0a8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9b7519afed44817af7047aa5c4f0a8c.jpg", "file_size": 18598, "is_delete": false, "file_type": 1, "original_file_name": "HW366380FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b7519afed44817af7047aa5c4f0a8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b7519afed44817af7047aa5c4f0a8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9b7519afed44817af7047aa5c4f0a8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9b7519afed44817af7047aa5c4f0a8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9b7519afed44817af7047aa5c4f0a8c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b7rohFCZE0ykWAzdvni6cWKMVcs=", "createTime": "2024-08-15 14:58:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.201025+00 2025-12-09 10:15:29.201031+00 15269 LJH1832#蓝色 SPMX-20240815310475 \N \N \N 1 \N [{"file_id": "da03d64c-3474-4f4d-aa30-52e0938cd8d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5401a2cb8be4b388a1f57529d8c119c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5401a2cb8be4b388a1f57529d8c119c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5401a2cb8be4b388a1f57529d8c119c.jpg", "file_size": 37779, "is_delete": false, "file_type": 1, "original_file_name": "LJH1832#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5401a2cb8be4b388a1f57529d8c119c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5401a2cb8be4b388a1f57529d8c119c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5401a2cb8be4b388a1f57529d8c119c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5401a2cb8be4b388a1f57529d8c119c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5401a2cb8be4b388a1f57529d8c119c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kv7JovGCqVbsbmKYpy43Wh4TPQQ=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.203448+00 2025-12-09 10:15:29.203453+00 15270 0006-47FWE#VS-D3 SPMX-20240815310466 \N \N \N 1 \N [{"file_id": "2ee5e7ca-f28e-4b40-8bfc-871b30603d43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc7f9978579241e8b91b066d9b8fc7e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc7f9978579241e8b91b066d9b8fc7e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc7f9978579241e8b91b066d9b8fc7e6.jpg", "file_size": 19389, "is_delete": false, "file_type": 1, "original_file_name": "0006-47FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f9978579241e8b91b066d9b8fc7e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f9978579241e8b91b066d9b8fc7e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc7f9978579241e8b91b066d9b8fc7e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc7f9978579241e8b91b066d9b8fc7e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc7f9978579241e8b91b066d9b8fc7e6.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzRqBSN6frp6wWLK_1g3-fZVLS0=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.205933+00 2025-12-09 10:15:29.205939+00 15271 DL31224#袖子玫红 SPMX-20240815310469 \N \N \N 1 \N [{"file_id": "aee1d273-68b4-4264-9a12-656b44533f36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b7537f7fddc440f8062d8b280132ca7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b7537f7fddc440f8062d8b280132ca7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b7537f7fddc440f8062d8b280132ca7.jpg", "file_size": 13410, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7537f7fddc440f8062d8b280132ca7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7537f7fddc440f8062d8b280132ca7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7537f7fddc440f8062d8b280132ca7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b7537f7fddc440f8062d8b280132ca7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b7537f7fddc440f8062d8b280132ca7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkKRanlxa4D0y46JuDI9dI2p8j0=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.208746+00 2025-12-09 10:15:29.208752+00 15272 0006-47FWE#VS-D3番禺调色 SPMX-20240815310478 \N \N \N 1 \N [{"file_id": "7756f431-9556-4dae-b5ad-b9bd9acc4af5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bacd56bbe4144a3da0ac780bd7552595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bacd56bbe4144a3da0ac780bd7552595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bacd56bbe4144a3da0ac780bd7552595.jpg", "file_size": 19732, "is_delete": false, "file_type": 1, "original_file_name": "0006-47FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacd56bbe4144a3da0ac780bd7552595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacd56bbe4144a3da0ac780bd7552595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacd56bbe4144a3da0ac780bd7552595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bacd56bbe4144a3da0ac780bd7552595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bacd56bbe4144a3da0ac780bd7552595.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jbwwm6zpRU1B_1aiJAmrswL93SM=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.211524+00 2025-12-09 10:15:29.211529+00 15273 LZ1340#上身5号色 SPMX-20240815310495 \N \N \N 1 \N [{"file_id": "9f2cbb1f-b475-449b-ac50-867957f238b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2d61f82e8694b2082590d322656e3ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2d61f82e8694b2082590d322656e3ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2d61f82e8694b2082590d322656e3ab.jpg", "file_size": 16122, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d61f82e8694b2082590d322656e3ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d61f82e8694b2082590d322656e3ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d61f82e8694b2082590d322656e3ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2d61f82e8694b2082590d322656e3ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2d61f82e8694b2082590d322656e3ab.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0JzsHm3WCuh8iXShMGLBT_CzC6o=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.21444+00 2025-12-09 10:15:29.214447+00 15274 JTSS618FW#VS-D3 SPMX-20240815310494 \N \N \N 1 \N [{"file_id": "ca8d1b1c-31c0-4781-9a10-3d8ae0484bd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f188545e5fc74aee939f65cdfe36d14b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f188545e5fc74aee939f65cdfe36d14b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f188545e5fc74aee939f65cdfe36d14b.jpg", "file_size": 15770, "is_delete": false, "file_type": 1, "original_file_name": "JTSS618FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f188545e5fc74aee939f65cdfe36d14b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f188545e5fc74aee939f65cdfe36d14b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f188545e5fc74aee939f65cdfe36d14b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f188545e5fc74aee939f65cdfe36d14b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f188545e5fc74aee939f65cdfe36d14b.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XeaIRBVf6FAQUrONmBg3xCR-jsU=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.217271+00 2025-12-09 10:15:29.217277+00 15275 1221#蓝色 SPMX-20240815310481 \N \N \N 1 \N [{"file_id": "98070e72-14e4-4acb-af4b-b4d3cddcb38b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a65cc9561bc400994c11eedb526edea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a65cc9561bc400994c11eedb526edea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a65cc9561bc400994c11eedb526edea.jpg", "file_size": 9061, "is_delete": false, "file_type": 1, "original_file_name": "1221#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65cc9561bc400994c11eedb526edea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65cc9561bc400994c11eedb526edea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65cc9561bc400994c11eedb526edea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a65cc9561bc400994c11eedb526edea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a65cc9561bc400994c11eedb526edea.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ze4DI9oIuK3EGCOK2RfjoJexjfA=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.220091+00 2025-12-09 10:15:29.220097+00 15276 85006#10码+12码 SPMX-20240815310484 \N \N \N 1 \N [{"file_id": "b7bada7b-2aef-4d1f-939d-eb753141805d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7eb4a7148914569b7cfb2e957d471a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7eb4a7148914569b7cfb2e957d471a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7eb4a7148914569b7cfb2e957d471a7.jpg", "file_size": 19111, "is_delete": false, "file_type": 1, "original_file_name": "85006#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb4a7148914569b7cfb2e957d471a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb4a7148914569b7cfb2e957d471a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb4a7148914569b7cfb2e957d471a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7eb4a7148914569b7cfb2e957d471a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7eb4a7148914569b7cfb2e957d471a7.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aPKRgDhF_S6mlTi1hH58t1rnRh8=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.222885+00 2025-12-09 10:15:29.22289+00 15277 23-305#A11-领子4XL SPMX-20240815310483 \N \N \N 1 \N [{"file_id": "29ac5d29-1bcc-46d3-93eb-51f01ff16cea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cf51e2899c44a1bb370d476f98345c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cf51e2899c44a1bb370d476f98345c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cf51e2899c44a1bb370d476f98345c2.jpg", "file_size": 17640, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A11-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf51e2899c44a1bb370d476f98345c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf51e2899c44a1bb370d476f98345c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cf51e2899c44a1bb370d476f98345c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cf51e2899c44a1bb370d476f98345c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cf51e2899c44a1bb370d476f98345c2.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFZzGjWuRo0LkLunpFQl1bu6NFs=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.225695+00 2025-12-09 10:15:29.225701+00 15278 DL31224-1#-L码前幅烧花 SPMX-20240815310490 \N \N \N 1 \N [{"file_id": "a0d73622-0edc-4e79-acd9-9d572174890c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bac4e3217c44a0195c9a6b6b1887e72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bac4e3217c44a0195c9a6b6b1887e72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bac4e3217c44a0195c9a6b6b1887e72.jpg", "file_size": 15923, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#-L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bac4e3217c44a0195c9a6b6b1887e72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bac4e3217c44a0195c9a6b6b1887e72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bac4e3217c44a0195c9a6b6b1887e72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bac4e3217c44a0195c9a6b6b1887e72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bac4e3217c44a0195c9a6b6b1887e72.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WjqEO-c0bI5rgOsULmAtkrEk6Po=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.22843+00 2025-12-09 10:15:29.228436+00 15279 23-305#A12-3XL SPMX-20240815310493 \N \N \N 1 \N [{"file_id": "f4e434c5-5424-4d80-9dd9-ec53ea06c245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0533329797645529aa5688b1f741789.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0533329797645529aa5688b1f741789.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0533329797645529aa5688b1f741789.jpg", "file_size": 18639, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A12-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0533329797645529aa5688b1f741789.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0533329797645529aa5688b1f741789.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0533329797645529aa5688b1f741789.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0533329797645529aa5688b1f741789.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0533329797645529aa5688b1f741789.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBrgfMa6MQzDpCG1rfW9paxWPaA=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.230701+00 2025-12-09 10:15:29.230712+00 15280 1221#蓝色格子 SPMX-20240815310492 \N \N \N 1 \N [{"file_id": "62dd2f23-7b19-4ecd-afbf-6fc2316e8c40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec73e52470754b6dbaf63db8a98668b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec73e52470754b6dbaf63db8a98668b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec73e52470754b6dbaf63db8a98668b5.jpg", "file_size": 12328, "is_delete": false, "file_type": 1, "original_file_name": "1221#蓝色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec73e52470754b6dbaf63db8a98668b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec73e52470754b6dbaf63db8a98668b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec73e52470754b6dbaf63db8a98668b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec73e52470754b6dbaf63db8a98668b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec73e52470754b6dbaf63db8a98668b5.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VoK7_-sf7oyRg7RKqzfCjNDczmI=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.233131+00 2025-12-09 10:15:29.233137+00 15281 DL31224#袖子黄色 SPMX-20240815310480 \N \N \N 1 \N [{"file_id": "eaa13eba-b9c8-45fc-9ad6-2a03586fae33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "629ec360f39f49cd9f5095b1ff29f7f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "629ec360f39f49cd9f5095b1ff29f7f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "629ec360f39f49cd9f5095b1ff29f7f1.jpg", "file_size": 13206, "is_delete": false, "file_type": 1, "original_file_name": "DL31224#袖子黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629ec360f39f49cd9f5095b1ff29f7f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629ec360f39f49cd9f5095b1ff29f7f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/629ec360f39f49cd9f5095b1ff29f7f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/629ec360f39f49cd9f5095b1ff29f7f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/629ec360f39f49cd9f5095b1ff29f7f1.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMZdQ5H3jzu0o9myKJdXBqhvs7A=", "createTime": "2024-08-15 14:58:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.23562+00 2025-12-09 10:15:29.235625+00 15282 HW383990FWE#VS-D3 SPMX-20240815310487 \N \N \N 1 \N [{"file_id": "5847dae0-f005-465c-930e-e11a41732ee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7666f6500a76451787db53d89fe277dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7666f6500a76451787db53d89fe277dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7666f6500a76451787db53d89fe277dd.jpg", "file_size": 26120, "is_delete": false, "file_type": 1, "original_file_name": "HW383990FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7666f6500a76451787db53d89fe277dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7666f6500a76451787db53d89fe277dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7666f6500a76451787db53d89fe277dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7666f6500a76451787db53d89fe277dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7666f6500a76451787db53d89fe277dd.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXmX9yP7jZx4WdwDZj2vo4Sfyh4=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.238099+00 2025-12-09 10:15:29.238105+00 15283 LZ1340#上身4号色 SPMX-20240815310485 \N \N \N 1 \N [{"file_id": "d67e71eb-b2e3-45bb-b9bd-1efdbc7a0706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4e280e4eac046a89d0d0097f7660a1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4e280e4eac046a89d0d0097f7660a1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4e280e4eac046a89d0d0097f7660a1c.jpg", "file_size": 15737, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e280e4eac046a89d0d0097f7660a1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e280e4eac046a89d0d0097f7660a1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4e280e4eac046a89d0d0097f7660a1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4e280e4eac046a89d0d0097f7660a1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4e280e4eac046a89d0d0097f7660a1c.jpg?e=1765361728&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqxDJMmxa-3HhAscshnNY8Xxkww=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.980575+00 2025-12-09 10:15:29.980587+00 15284 0006-47FWE#格子 SPMX-20240815310488 \N \N \N 1 \N [{"file_id": "c62664e4-58ed-4895-a444-f6b372f4edca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac6d038407bd4e4a9e66acd74556bebb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac6d038407bd4e4a9e66acd74556bebb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac6d038407bd4e4a9e66acd74556bebb.jpg", "file_size": 12016, "is_delete": false, "file_type": 1, "original_file_name": "0006-47FWE#格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6d038407bd4e4a9e66acd74556bebb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6d038407bd4e4a9e66acd74556bebb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6d038407bd4e4a9e66acd74556bebb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac6d038407bd4e4a9e66acd74556bebb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac6d038407bd4e4a9e66acd74556bebb.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCCKynBWRwhpUGLWhTbj8K0F5dI=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.984696+00 2025-12-09 10:15:29.98471+00 15285 CASS-W14#WJC22 SPMX-20240815310486 \N \N \N 1 \N [{"file_id": "090dd590-f3ff-4398-b1a2-d168562f1b94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45af64ddb03d4842b13577ec68587a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45af64ddb03d4842b13577ec68587a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45af64ddb03d4842b13577ec68587a43.jpg", "file_size": 11590, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W14#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45af64ddb03d4842b13577ec68587a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45af64ddb03d4842b13577ec68587a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45af64ddb03d4842b13577ec68587a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45af64ddb03d4842b13577ec68587a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45af64ddb03d4842b13577ec68587a43.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Soveijvg-87lh0R-HdhtUpSPd-Y=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.987493+00 2025-12-09 10:15:29.9875+00 15286 FR10318#图片蓝色配件18码 SPMX-20240815310491 \N \N \N 1 \N [{"file_id": "9db6297c-a315-42db-9054-95465762a46d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e05f4486dcff46c988b2acc115ace62a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e05f4486dcff46c988b2acc115ace62a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e05f4486dcff46c988b2acc115ace62a.jpg", "file_size": 61317, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色配件18码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f4486dcff46c988b2acc115ace62a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f4486dcff46c988b2acc115ace62a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e05f4486dcff46c988b2acc115ace62a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e05f4486dcff46c988b2acc115ace62a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e05f4486dcff46c988b2acc115ace62a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OW4EulmrtBnNZ6DARCGD9U6LKU=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.990203+00 2025-12-09 10:15:29.990209+00 15287 JTSS617FW#VS-D3 SPMX-20240815310482 \N \N \N 1 \N [{"file_id": "029d582a-4dea-4f4c-a876-76793716fec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a96fa82d509a4b1ebf13d09a8973d53c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a96fa82d509a4b1ebf13d09a8973d53c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a96fa82d509a4b1ebf13d09a8973d53c.jpg", "file_size": 17692, "is_delete": false, "file_type": 1, "original_file_name": "JTSS617FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96fa82d509a4b1ebf13d09a8973d53c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96fa82d509a4b1ebf13d09a8973d53c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a96fa82d509a4b1ebf13d09a8973d53c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a96fa82d509a4b1ebf13d09a8973d53c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a96fa82d509a4b1ebf13d09a8973d53c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H129GQOe-ds7p2gkn5w8mvF8ajg=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.992842+00 2025-12-09 10:15:29.992847+00 15288 LJH1832#黄色 SPMX-20240815310489 \N \N \N 1 \N [{"file_id": "be50e887-a953-44ad-9daf-bce749a1980f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a10bd45cbba444b96e48fa46c24e945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a10bd45cbba444b96e48fa46c24e945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a10bd45cbba444b96e48fa46c24e945.jpg", "file_size": 37751, "is_delete": false, "file_type": 1, "original_file_name": "LJH1832#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a10bd45cbba444b96e48fa46c24e945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a10bd45cbba444b96e48fa46c24e945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a10bd45cbba444b96e48fa46c24e945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a10bd45cbba444b96e48fa46c24e945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a10bd45cbba444b96e48fa46c24e945.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1aX2PkBUIRzmzNtc2gyCSvbF2GQ=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.995407+00 2025-12-09 10:15:29.995412+00 15289 LJH1835#紫色 SPMX-20240815310499 \N \N \N 1 \N [{"file_id": "8d3b1b49-3826-427b-ae13-d8a6ef03fccf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b86cefdaf9854407818837cd7ccf8186.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b86cefdaf9854407818837cd7ccf8186.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b86cefdaf9854407818837cd7ccf8186.jpg", "file_size": 60980, "is_delete": false, "file_type": 1, "original_file_name": "LJH1835#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86cefdaf9854407818837cd7ccf8186.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86cefdaf9854407818837cd7ccf8186.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86cefdaf9854407818837cd7ccf8186.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b86cefdaf9854407818837cd7ccf8186.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b86cefdaf9854407818837cd7ccf8186.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxJSicrWBZpXAOMd1uALdMM-dTs=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:29.998148+00 2025-12-09 10:15:29.998154+00 15290 0006-47FWE#格子番禺调色 SPMX-20240815310500 \N \N \N 1 \N [{"file_id": "ec727a54-c5fe-4cc2-833d-a6064a512ff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64adb9fc8410481fabc94c177b58a85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64adb9fc8410481fabc94c177b58a85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64adb9fc8410481fabc94c177b58a85c.jpg", "file_size": 12221, "is_delete": false, "file_type": 1, "original_file_name": "0006-47FWE#格子番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64adb9fc8410481fabc94c177b58a85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64adb9fc8410481fabc94c177b58a85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64adb9fc8410481fabc94c177b58a85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64adb9fc8410481fabc94c177b58a85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64adb9fc8410481fabc94c177b58a85c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vg8QVMrWYNbmjWmtHBtH5FMMV5U=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.001009+00 2025-12-09 10:15:30.001014+00 15291 1221#黄色 SPMX-20240815310503 \N \N \N 1 \N [{"file_id": "1580c33e-c26b-4517-a8ca-10e47b9d848e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130380c0fdc74e8ea45508acdb35c6d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130380c0fdc74e8ea45508acdb35c6d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130380c0fdc74e8ea45508acdb35c6d1.jpg", "file_size": 9390, "is_delete": false, "file_type": 1, "original_file_name": "1221#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130380c0fdc74e8ea45508acdb35c6d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130380c0fdc74e8ea45508acdb35c6d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130380c0fdc74e8ea45508acdb35c6d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130380c0fdc74e8ea45508acdb35c6d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130380c0fdc74e8ea45508acdb35c6d1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itzVS7eTGuM6rgTRTWNdGJcOWes=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.003854+00 2025-12-09 10:15:30.003859+00 15292 CASS-W15#WJC22 SPMX-20240815310497 \N \N \N 1 \N [{"file_id": "d616e68c-0d41-44b3-8fe3-d73e77e25d5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1469659988554206b76789df0f62d6d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1469659988554206b76789df0f62d6d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1469659988554206b76789df0f62d6d1.jpg", "file_size": 16283, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W15#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1469659988554206b76789df0f62d6d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1469659988554206b76789df0f62d6d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1469659988554206b76789df0f62d6d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1469659988554206b76789df0f62d6d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1469659988554206b76789df0f62d6d1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSg9bDk-F3hnVDGHsrDJGw5kiB4=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.006372+00 2025-12-09 10:15:30.006377+00 15293 85006#4码+8码 SPMX-20240815310507 \N \N \N 1 \N [{"file_id": "7d444c47-3105-4993-b8bd-6ba116cf5b5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1aba6a36df844bebe44489172d35cf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1aba6a36df844bebe44489172d35cf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1aba6a36df844bebe44489172d35cf6.jpg", "file_size": 19183, "is_delete": false, "file_type": 1, "original_file_name": "85006#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1aba6a36df844bebe44489172d35cf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1aba6a36df844bebe44489172d35cf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1aba6a36df844bebe44489172d35cf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1aba6a36df844bebe44489172d35cf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1aba6a36df844bebe44489172d35cf6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aIL8W3iFMF8aX87RY1mz3m9VQqY=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.008872+00 2025-12-09 10:15:30.008877+00 15294 LZ1340#匹布 SPMX-20240815310506 \N \N \N 1 \N [{"file_id": "fead3f18-0f9a-4fc2-be18-1f57090b2674", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32600283a97441c98e9dee1405d67518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32600283a97441c98e9dee1405d67518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32600283a97441c98e9dee1405d67518.jpg", "file_size": 19584, "is_delete": false, "file_type": 1, "original_file_name": "LZ1340#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32600283a97441c98e9dee1405d67518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32600283a97441c98e9dee1405d67518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32600283a97441c98e9dee1405d67518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32600283a97441c98e9dee1405d67518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32600283a97441c98e9dee1405d67518.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2BtuZtSaUX-xy1v9zmGM-BI72w=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.011383+00 2025-12-09 10:15:30.011388+00 15295 23-305#A12-4XL SPMX-20240815310502 \N \N \N 1 \N [{"file_id": "29dbd847-fd2d-43fe-b608-ae38e3ccd04f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7edf6b576502431aa5976713db97960d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7edf6b576502431aa5976713db97960d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7edf6b576502431aa5976713db97960d.jpg", "file_size": 17206, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A12-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edf6b576502431aa5976713db97960d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edf6b576502431aa5976713db97960d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edf6b576502431aa5976713db97960d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7edf6b576502431aa5976713db97960d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7edf6b576502431aa5976713db97960d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_EeQvEhgnRYHrLie1-GZO1J1nRg=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.013829+00 2025-12-09 10:15:30.013835+00 15296 JTSS619FW#VS-D3 SPMX-20240815310504 \N \N \N 1 \N [{"file_id": "555b3325-cb55-48ee-bcf5-88426c294110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f26d15bdb3c140b88d1f3ff0e6b765bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f26d15bdb3c140b88d1f3ff0e6b765bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f26d15bdb3c140b88d1f3ff0e6b765bc.jpg", "file_size": 8018, "is_delete": false, "file_type": 1, "original_file_name": "JTSS619FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26d15bdb3c140b88d1f3ff0e6b765bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26d15bdb3c140b88d1f3ff0e6b765bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f26d15bdb3c140b88d1f3ff0e6b765bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f26d15bdb3c140b88d1f3ff0e6b765bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f26d15bdb3c140b88d1f3ff0e6b765bc.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACLFWIkpKRdExBmTPjyuCl-nWRM=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.016371+00 2025-12-09 10:15:30.016376+00 15297 85006#14码 SPMX-20240815310496 \N \N \N 1 \N [{"file_id": "5da4d716-6f9d-4123-ab47-a1d890747884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34b7e285068a4b609a14632d50d08102.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34b7e285068a4b609a14632d50d08102.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34b7e285068a4b609a14632d50d08102.jpg", "file_size": 17081, "is_delete": false, "file_type": 1, "original_file_name": "85006#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b7e285068a4b609a14632d50d08102.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b7e285068a4b609a14632d50d08102.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b7e285068a4b609a14632d50d08102.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34b7e285068a4b609a14632d50d08102.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34b7e285068a4b609a14632d50d08102.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AcBddmxMGFCBSbMWDqE6omoD-cQ=", "createTime": "2024-08-15 14:58:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.019065+00 2025-12-09 10:15:30.019073+00 15298 HW387485FWE#L VS-D3 SPMX-20240815310508 \N \N \N 1 \N [{"file_id": "12c04fe4-9e54-41ba-ab90-74fe59fec0a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce914a96210947ada873e894790ec693.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce914a96210947ada873e894790ec693.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce914a96210947ada873e894790ec693.jpg", "file_size": 12171, "is_delete": false, "file_type": 1, "original_file_name": "HW387485FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce914a96210947ada873e894790ec693.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce914a96210947ada873e894790ec693.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce914a96210947ada873e894790ec693.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce914a96210947ada873e894790ec693.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce914a96210947ada873e894790ec693.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jth48qgzWaZ5UARdrlse-rgOhGo=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.021641+00 2025-12-09 10:15:30.021647+00 15299 HW387485FWE#2XL VS-D3 SPMX-20240815310498 \N \N \N 1 \N [{"file_id": "9a93c4cb-dffe-4602-be00-192d172e396a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a6355ed5fd246feafa982a25b83517d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a6355ed5fd246feafa982a25b83517d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a6355ed5fd246feafa982a25b83517d.jpg", "file_size": 12856, "is_delete": false, "file_type": 1, "original_file_name": "HW387485FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6355ed5fd246feafa982a25b83517d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6355ed5fd246feafa982a25b83517d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a6355ed5fd246feafa982a25b83517d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a6355ed5fd246feafa982a25b83517d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a6355ed5fd246feafa982a25b83517d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gR3XGNmkhpUuzrbYD1uGEwemhpg=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.024173+00 2025-12-09 10:15:30.024179+00 15300 DL31224-1#亮黄2XL码前幅烧花 SPMX-20240815310505 \N \N \N 1 \N [{"file_id": "919cd8da-46bb-44f0-ac27-ce2b99539145", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67e04242e3b746f99f207a4f69c7b4b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67e04242e3b746f99f207a4f69c7b4b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67e04242e3b746f99f207a4f69c7b4b2.jpg", "file_size": 16760, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#亮黄2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e04242e3b746f99f207a4f69c7b4b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e04242e3b746f99f207a4f69c7b4b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e04242e3b746f99f207a4f69c7b4b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67e04242e3b746f99f207a4f69c7b4b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67e04242e3b746f99f207a4f69c7b4b2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGtrmTkPU2knOIDrCJ8vnw8V6ZQ=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.026717+00 2025-12-09 10:15:30.026722+00 15301 FR10318#图片蓝色配件19码 SPMX-20240815310501 \N \N \N 1 \N [{"file_id": "b1f1b395-d810-44ce-9901-3d1c959d1231", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "289cfb11da39458596ad5786b0f1ef3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "289cfb11da39458596ad5786b0f1ef3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "289cfb11da39458596ad5786b0f1ef3e.jpg", "file_size": 58104, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色配件19码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289cfb11da39458596ad5786b0f1ef3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289cfb11da39458596ad5786b0f1ef3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289cfb11da39458596ad5786b0f1ef3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/289cfb11da39458596ad5786b0f1ef3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/289cfb11da39458596ad5786b0f1ef3e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIk0Sj41J74StxkvVHoaF0xKmlo=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.029197+00 2025-12-09 10:15:30.029203+00 15302 CASS-W16#WJC22 SPMX-20240815310509 \N \N \N 1 \N [{"file_id": "b6eb8615-d46c-4ffd-b5f1-03e6c55490b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67df6f7630cd438c92aa93ec51f22e73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67df6f7630cd438c92aa93ec51f22e73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67df6f7630cd438c92aa93ec51f22e73.jpg", "file_size": 14179, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67df6f7630cd438c92aa93ec51f22e73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67df6f7630cd438c92aa93ec51f22e73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67df6f7630cd438c92aa93ec51f22e73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67df6f7630cd438c92aa93ec51f22e73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67df6f7630cd438c92aa93ec51f22e73.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ORF3eSC95Z1WfifjcsOQjWZ8R8c=", "createTime": "2024-08-15 14:58:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.031669+00 2025-12-09 10:15:30.031674+00 15303 85006#6码 SPMX-20240815310517 \N \N \N 1 \N [{"file_id": "577453e2-8f15-4969-9d56-25b4cae98211", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec9dfb7da018452bbfbac88075e992cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec9dfb7da018452bbfbac88075e992cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec9dfb7da018452bbfbac88075e992cb.jpg", "file_size": 19040, "is_delete": false, "file_type": 1, "original_file_name": "85006#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9dfb7da018452bbfbac88075e992cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9dfb7da018452bbfbac88075e992cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec9dfb7da018452bbfbac88075e992cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec9dfb7da018452bbfbac88075e992cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec9dfb7da018452bbfbac88075e992cb.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rA88u_j6oOrH0Z0WZZUTbR7BGZI=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.034145+00 2025-12-09 10:15:30.034151+00 15304 CASS-W17#WJC22 SPMX-20240815310520 \N \N \N 1 \N [{"file_id": "bbe5f02f-3428-458f-8f73-4869b8c1c403", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bcc376c40f1460cbec9b2e8876ee48c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bcc376c40f1460cbec9b2e8876ee48c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bcc376c40f1460cbec9b2e8876ee48c.jpg", "file_size": 11052, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W17#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc376c40f1460cbec9b2e8876ee48c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc376c40f1460cbec9b2e8876ee48c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc376c40f1460cbec9b2e8876ee48c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bcc376c40f1460cbec9b2e8876ee48c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bcc376c40f1460cbec9b2e8876ee48c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcXIuUHvPbj9X-A3VMkWmNuQSTM=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.036675+00 2025-12-09 10:15:30.036681+00 15305 23-305#A12-领子3XL SPMX-20240815310512 \N \N \N 1 \N [{"file_id": "8705af24-ab78-4364-b3fc-dfa11e80f799", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "280b811a7b7b492ea114eb6c45e61f3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "280b811a7b7b492ea114eb6c45e61f3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "280b811a7b7b492ea114eb6c45e61f3e.jpg", "file_size": 13033, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A12-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280b811a7b7b492ea114eb6c45e61f3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280b811a7b7b492ea114eb6c45e61f3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280b811a7b7b492ea114eb6c45e61f3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/280b811a7b7b492ea114eb6c45e61f3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/280b811a7b7b492ea114eb6c45e61f3e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMMRLmZThUMWMjLMlnDczvLS8nU=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.03919+00 2025-12-09 10:15:30.039196+00 15306 FR10318#短款杏色补数2号 SPMX-20240815310524 \N \N \N 1 \N [{"file_id": "0fe7fb76-e47b-4f26-a838-1720fd515cd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d50304e5e4ff4a7cb1aeed67db8e3885.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d50304e5e4ff4a7cb1aeed67db8e3885.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d50304e5e4ff4a7cb1aeed67db8e3885.jpg", "file_size": 56282, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#短款杏色补数2号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50304e5e4ff4a7cb1aeed67db8e3885.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50304e5e4ff4a7cb1aeed67db8e3885.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50304e5e4ff4a7cb1aeed67db8e3885.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d50304e5e4ff4a7cb1aeed67db8e3885.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d50304e5e4ff4a7cb1aeed67db8e3885.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QTk_XyebjI5V5Dt37d68RgXHSN8=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.041641+00 2025-12-09 10:15:30.041647+00 15307 1221#黄色格子 SPMX-20240815310514 \N \N \N 1 \N [{"file_id": "27059e2d-e0ab-42d2-81a1-746d6de97638", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2106fa0931848b8a5906207de260e60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2106fa0931848b8a5906207de260e60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2106fa0931848b8a5906207de260e60.jpg", "file_size": 15226, "is_delete": false, "file_type": 1, "original_file_name": "1221#黄色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2106fa0931848b8a5906207de260e60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2106fa0931848b8a5906207de260e60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2106fa0931848b8a5906207de260e60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2106fa0931848b8a5906207de260e60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2106fa0931848b8a5906207de260e60.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jDhtcttpRPtAhLf8EKpX_ZJDsGY=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.044333+00 2025-12-09 10:15:30.044339+00 15308 JTSS620FW#VS-D3 SPMX-20240815310515 \N \N \N 1 \N [{"file_id": "3bee81df-9c11-4045-9553-4a001a807a7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09f2443d407e4f8296e8d123d1872bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09f2443d407e4f8296e8d123d1872bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09f2443d407e4f8296e8d123d1872bc7.jpg", "file_size": 11943, "is_delete": false, "file_type": 1, "original_file_name": "JTSS620FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f2443d407e4f8296e8d123d1872bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f2443d407e4f8296e8d123d1872bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09f2443d407e4f8296e8d123d1872bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09f2443d407e4f8296e8d123d1872bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09f2443d407e4f8296e8d123d1872bc7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XIGQxtnViWhDAHMXv8TDvYQhwBQ=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.047198+00 2025-12-09 10:15:30.047205+00 15309 LJH1835#黄色 SPMX-20240815310522 \N \N \N 1 \N [{"file_id": "d334daac-465d-49cb-8886-1fc74b1d7234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfe366dca1194564b0c0e625ab919456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfe366dca1194564b0c0e625ab919456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfe366dca1194564b0c0e625ab919456.jpg", "file_size": 62529, "is_delete": false, "file_type": 1, "original_file_name": "LJH1835#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe366dca1194564b0c0e625ab919456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe366dca1194564b0c0e625ab919456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe366dca1194564b0c0e625ab919456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfe366dca1194564b0c0e625ab919456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfe366dca1194564b0c0e625ab919456.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4a_pFtWFaBnhDoo2AAFpk3Er2s=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.050031+00 2025-12-09 10:15:30.050038+00 15310 LJH1835#蓝色 SPMX-20240815310510 \N \N \N 1 \N [{"file_id": "52525c54-0b67-4871-920c-ab4f6b9240d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bf579373ba74b88b439664d878926ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bf579373ba74b88b439664d878926ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bf579373ba74b88b439664d878926ba.jpg", "file_size": 61588, "is_delete": false, "file_type": 1, "original_file_name": "LJH1835#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf579373ba74b88b439664d878926ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf579373ba74b88b439664d878926ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bf579373ba74b88b439664d878926ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bf579373ba74b88b439664d878926ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bf579373ba74b88b439664d878926ba.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shuRxFjwDiIaTPDa-4m5lzj0Phk=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.05278+00 2025-12-09 10:15:30.052787+00 15311 DL31224-1#亮黄L码前幅烧花 SPMX-20240815310516 \N \N \N 1 \N [{"file_id": "f1adcb06-0b3f-4db3-a77d-904a9b47d628", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df82201ff4a04fe8a292085479beb805.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df82201ff4a04fe8a292085479beb805.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df82201ff4a04fe8a292085479beb805.jpg", "file_size": 16543, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#亮黄L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df82201ff4a04fe8a292085479beb805.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df82201ff4a04fe8a292085479beb805.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df82201ff4a04fe8a292085479beb805.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df82201ff4a04fe8a292085479beb805.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df82201ff4a04fe8a292085479beb805.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGLHTRQMd-9ja--yrrYAq17o7s4=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.055445+00 2025-12-09 10:15:30.05545+00 15312 0006-48FWE#VS-D3 SPMX-20240815310521 \N \N \N 1 \N [{"file_id": "7bc30a5c-b7de-4871-a046-ae8b1b26d945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a661ea888a054897a3497146bf7972ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a661ea888a054897a3497146bf7972ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a661ea888a054897a3497146bf7972ea.jpg", "file_size": 14438, "is_delete": false, "file_type": 1, "original_file_name": "0006-48FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a661ea888a054897a3497146bf7972ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a661ea888a054897a3497146bf7972ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a661ea888a054897a3497146bf7972ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a661ea888a054897a3497146bf7972ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a661ea888a054897a3497146bf7972ea.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6fmrvuE419KVAk9yuCro6ZIoRM=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.05809+00 2025-12-09 10:15:30.058096+00 15313 0006-47FWF#V5曲线 SPMX-20240815310511 \N \N \N 1 \N [{"file_id": "7182fff3-27ee-4835-85d1-6a97db126a4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be8243ceac34c9db42427d537e15cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be8243ceac34c9db42427d537e15cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be8243ceac34c9db42427d537e15cea.jpg", "file_size": 26360, "is_delete": false, "file_type": 1, "original_file_name": "0006-47FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8243ceac34c9db42427d537e15cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8243ceac34c9db42427d537e15cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be8243ceac34c9db42427d537e15cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be8243ceac34c9db42427d537e15cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be8243ceac34c9db42427d537e15cea.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2A8F-7pREeON5Tw_a67P4193Y4k=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.060599+00 2025-12-09 10:15:30.060604+00 15314 LZ1341#上身1号色 SPMX-20240815310518 \N \N \N 1 \N [{"file_id": "b3d9805e-a848-43c1-8cad-ff8cf282c6e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "319051f525f74b71bc04f981331ef066.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "319051f525f74b71bc04f981331ef066.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "319051f525f74b71bc04f981331ef066.jpg", "file_size": 18546, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319051f525f74b71bc04f981331ef066.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319051f525f74b71bc04f981331ef066.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/319051f525f74b71bc04f981331ef066.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/319051f525f74b71bc04f981331ef066.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/319051f525f74b71bc04f981331ef066.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gl5OhJ2kiRo8dTCauBBhO0l5x-U=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.062861+00 2025-12-09 10:15:30.062867+00 15315 HW387485FWE#M VS-D3 SPMX-20240815310519 \N \N \N 1 \N [{"file_id": "aa7140b1-b1cd-4c49-bee8-44a0a34c38fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd2f9df8e0c4a97bc75168c4a2c127e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd2f9df8e0c4a97bc75168c4a2c127e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd2f9df8e0c4a97bc75168c4a2c127e.jpg", "file_size": 12298, "is_delete": false, "file_type": 1, "original_file_name": "HW387485FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd2f9df8e0c4a97bc75168c4a2c127e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd2f9df8e0c4a97bc75168c4a2c127e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd2f9df8e0c4a97bc75168c4a2c127e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd2f9df8e0c4a97bc75168c4a2c127e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd2f9df8e0c4a97bc75168c4a2c127e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZyxuYuxc7hyt1IRT0LYkSGfKek=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.065304+00 2025-12-09 10:15:30.06531+00 15316 23-305#A12-领子4XL SPMX-20240815310523 \N \N \N 1 \N [{"file_id": "ef54ffa3-4c3b-458a-96e1-7fdc29dab395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7bc606903654848b69e7b5a9b73aa96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7bc606903654848b69e7b5a9b73aa96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7bc606903654848b69e7b5a9b73aa96.jpg", "file_size": 13040, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A12-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bc606903654848b69e7b5a9b73aa96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bc606903654848b69e7b5a9b73aa96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bc606903654848b69e7b5a9b73aa96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7bc606903654848b69e7b5a9b73aa96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7bc606903654848b69e7b5a9b73aa96.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kc2Bu-qtEOl2kx7tPDEWA6RqHrg=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.067941+00 2025-12-09 10:15:30.067948+00 15317 FR10318#图片蓝色配件20码 SPMX-20240815310513 \N \N \N 1 \N [{"file_id": "41b868b8-e3ff-40dc-bb67-5545efd28b26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25397f5d31cb44f398807b546b5b061a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25397f5d31cb44f398807b546b5b061a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25397f5d31cb44f398807b546b5b061a.jpg", "file_size": 58645, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#图片蓝色配件20码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25397f5d31cb44f398807b546b5b061a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25397f5d31cb44f398807b546b5b061a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25397f5d31cb44f398807b546b5b061a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25397f5d31cb44f398807b546b5b061a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25397f5d31cb44f398807b546b5b061a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cYYc2Csc2Vn7wlw-DpTYIowxPI=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.070665+00 2025-12-09 10:15:30.070671+00 15318 0006-48FWF#V5曲线 SPMX-20240815310532 \N \N \N 1 \N [{"file_id": "627d7bdf-efcc-491f-aa36-695e159c7bd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ee71dfc24034cc8a9cc86273ce0fe9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ee71dfc24034cc8a9cc86273ce0fe9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ee71dfc24034cc8a9cc86273ce0fe9c.jpg", "file_size": 20014, "is_delete": false, "file_type": 1, "original_file_name": "0006-48FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee71dfc24034cc8a9cc86273ce0fe9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee71dfc24034cc8a9cc86273ce0fe9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee71dfc24034cc8a9cc86273ce0fe9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ee71dfc24034cc8a9cc86273ce0fe9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ee71dfc24034cc8a9cc86273ce0fe9c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfhPaYbj9aV6J2pViq3nPzubCn8=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.073069+00 2025-12-09 10:15:30.073074+00 15319 FR10318#短款蓝色补数1号 SPMX-20240815310535 \N \N \N 1 \N [{"file_id": "8b939944-107c-4c7b-a77c-88dcef9b0960", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c9244d62ddf4a8fb84839d32a2f0ce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c9244d62ddf4a8fb84839d32a2f0ce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c9244d62ddf4a8fb84839d32a2f0ce2.jpg", "file_size": 56451, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#短款蓝色补数1号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9244d62ddf4a8fb84839d32a2f0ce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9244d62ddf4a8fb84839d32a2f0ce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c9244d62ddf4a8fb84839d32a2f0ce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c9244d62ddf4a8fb84839d32a2f0ce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c9244d62ddf4a8fb84839d32a2f0ce2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBUuLwJOicMeGTWNll6IBH1r5CQ=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.075431+00 2025-12-09 10:15:30.075436+00 15320 JTSS622FW#杏VS-D3 SPMX-20240815310536 \N \N \N 1 \N [{"file_id": "0e83ca3f-c31a-4a47-a6bc-528f66e7f4ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d5709569cdd45e4ae41cf47b55c2236.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d5709569cdd45e4ae41cf47b55c2236.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d5709569cdd45e4ae41cf47b55c2236.jpg", "file_size": 20515, "is_delete": false, "file_type": 1, "original_file_name": "JTSS622FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5709569cdd45e4ae41cf47b55c2236.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5709569cdd45e4ae41cf47b55c2236.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d5709569cdd45e4ae41cf47b55c2236.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d5709569cdd45e4ae41cf47b55c2236.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d5709569cdd45e4ae41cf47b55c2236.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQP06sG8E2w_SptIQrlws6VDt2M=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.077941+00 2025-12-09 10:15:30.077947+00 15321 LZ1341#上身3号色 SPMX-20240815310541 \N \N \N 1 \N [{"file_id": "38ff8b2b-321e-41e7-ae54-51af1f3a38bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a042e3f9a2c4ac38f011a64205989fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a042e3f9a2c4ac38f011a64205989fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a042e3f9a2c4ac38f011a64205989fd.jpg", "file_size": 18803, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a042e3f9a2c4ac38f011a64205989fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a042e3f9a2c4ac38f011a64205989fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a042e3f9a2c4ac38f011a64205989fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a042e3f9a2c4ac38f011a64205989fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a042e3f9a2c4ac38f011a64205989fd.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eA9BRMpMEW-crxkSP3c0dfh1iY=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.080778+00 2025-12-09 10:15:30.080784+00 15322 HW387485FWE#S VS-D3 SPMX-20240815310529 \N \N \N 1 \N [{"file_id": "3d86d7e7-2e65-415b-b8aa-d4ed0761e9fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df861c01bafd4b148b3df54f36c12ade.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df861c01bafd4b148b3df54f36c12ade.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df861c01bafd4b148b3df54f36c12ade.jpg", "file_size": 12019, "is_delete": false, "file_type": 1, "original_file_name": "HW387485FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df861c01bafd4b148b3df54f36c12ade.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df861c01bafd4b148b3df54f36c12ade.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df861c01bafd4b148b3df54f36c12ade.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df861c01bafd4b148b3df54f36c12ade.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df861c01bafd4b148b3df54f36c12ade.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kuo72b7RBrjcjngUuoBE0PBrxrY=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.083435+00 2025-12-09 10:15:30.083441+00 15323 HW387485FWE#匹布 VS-D3 SPMX-20240815310539 \N \N \N 1 \N [{"file_id": "1566abf3-4dea-41c0-b1da-259a083c2005", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2406cd2da0b4d69ad19521521de6593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2406cd2da0b4d69ad19521521de6593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2406cd2da0b4d69ad19521521de6593.jpg", "file_size": 8157, "is_delete": false, "file_type": 1, "original_file_name": "HW387485FWE#匹布 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2406cd2da0b4d69ad19521521de6593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2406cd2da0b4d69ad19521521de6593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2406cd2da0b4d69ad19521521de6593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2406cd2da0b4d69ad19521521de6593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2406cd2da0b4d69ad19521521de6593.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jywqfBbdFwhPvK0Jz1w_JgHySSg=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.086121+00 2025-12-09 10:15:30.086126+00 15324 1221FWE#橘色2XL SPMX-20240815310526 \N \N \N 1 \N [{"file_id": "75243126-4b05-4691-b530-b68fa17e452b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d982df7d7d924e98b3d3c66cd5b20311.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d982df7d7d924e98b3d3c66cd5b20311.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d982df7d7d924e98b3d3c66cd5b20311.jpg", "file_size": 14057, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d982df7d7d924e98b3d3c66cd5b20311.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d982df7d7d924e98b3d3c66cd5b20311.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d982df7d7d924e98b3d3c66cd5b20311.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d982df7d7d924e98b3d3c66cd5b20311.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d982df7d7d924e98b3d3c66cd5b20311.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBdBXIEzmytbahx07Aqy_HJvM_k=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.088678+00 2025-12-09 10:15:30.088683+00 15325 LZ1341#上身2号色 SPMX-20240815310530 \N \N \N 1 \N [{"file_id": "db81e59c-1e55-4f9e-a314-dfe5b66f1019", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc22b9feedd14e7a956ce387303bc9ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc22b9feedd14e7a956ce387303bc9ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc22b9feedd14e7a956ce387303bc9ad.jpg", "file_size": 18519, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc22b9feedd14e7a956ce387303bc9ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc22b9feedd14e7a956ce387303bc9ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc22b9feedd14e7a956ce387303bc9ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc22b9feedd14e7a956ce387303bc9ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc22b9feedd14e7a956ce387303bc9ad.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pttdVQO8dmZbXI4VvRpiIsVeFS4=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.091289+00 2025-12-09 10:15:30.091294+00 15326 DL31224-1#亮黄XL码前幅烧花 SPMX-20240815310527 \N \N \N 1 \N [{"file_id": "c638e50f-92ce-4de5-a9f5-81db9887afb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6857c8884d654c10b133f314a0cf9d6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6857c8884d654c10b133f314a0cf9d6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6857c8884d654c10b133f314a0cf9d6a.jpg", "file_size": 16383, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#亮黄XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6857c8884d654c10b133f314a0cf9d6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6857c8884d654c10b133f314a0cf9d6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6857c8884d654c10b133f314a0cf9d6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6857c8884d654c10b133f314a0cf9d6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6857c8884d654c10b133f314a0cf9d6a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evMk8ei95GXj8B2WxlD3kiyL4ig=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.093879+00 2025-12-09 10:15:30.093885+00 15327 CASS-W18#WJC22 SPMX-20240815310531 \N \N \N 1 \N [{"file_id": "fcab1fb8-e7f3-4cd2-abe3-d2cd452e8fc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba3de0f6fdb74ea895689622a9ca2a68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba3de0f6fdb74ea895689622a9ca2a68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba3de0f6fdb74ea895689622a9ca2a68.jpg", "file_size": 13626, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W18#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3de0f6fdb74ea895689622a9ca2a68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3de0f6fdb74ea895689622a9ca2a68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3de0f6fdb74ea895689622a9ca2a68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba3de0f6fdb74ea895689622a9ca2a68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba3de0f6fdb74ea895689622a9ca2a68.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GxOUi91SxrihEU4iGlNogfRar1I=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.096441+00 2025-12-09 10:15:30.096447+00 15328 85007#10码+12码 SPMX-20240815310538 \N \N \N 1 \N [{"file_id": "7ed1f79a-0349-4ef3-a263-dd26d24dc382", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "086607169db04ae29df327d12d3c474c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "086607169db04ae29df327d12d3c474c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "086607169db04ae29df327d12d3c474c.jpg", "file_size": 18722, "is_delete": false, "file_type": 1, "original_file_name": "85007#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086607169db04ae29df327d12d3c474c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086607169db04ae29df327d12d3c474c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086607169db04ae29df327d12d3c474c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/086607169db04ae29df327d12d3c474c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/086607169db04ae29df327d12d3c474c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gukJg3B0TXOWhRGM-2UZIRVMaDQ=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.099255+00 2025-12-09 10:15:30.099261+00 15329 LJH1836#原版色 SPMX-20240815310534 \N \N \N 1 \N [{"file_id": "f9c19f71-df20-4692-9a9f-527ca5ea2809", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baeeaac58a294aeb96ab77e30b1e1dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baeeaac58a294aeb96ab77e30b1e1dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baeeaac58a294aeb96ab77e30b1e1dcd.jpg", "file_size": 71704, "is_delete": false, "file_type": 1, "original_file_name": "LJH1836#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baeeaac58a294aeb96ab77e30b1e1dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baeeaac58a294aeb96ab77e30b1e1dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baeeaac58a294aeb96ab77e30b1e1dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baeeaac58a294aeb96ab77e30b1e1dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baeeaac58a294aeb96ab77e30b1e1dcd.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lqas8WBkm8rYxmmULyuNfoGY8qo=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.101844+00 2025-12-09 10:15:30.10185+00 15330 23-305#A13-3XL SPMX-20240815310533 \N \N \N 1 \N [{"file_id": "b7b7cca2-458d-42b0-a8e4-c1d68567d503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70837c30ecfa4e38945565a0ec979b69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70837c30ecfa4e38945565a0ec979b69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70837c30ecfa4e38945565a0ec979b69.jpg", "file_size": 20870, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A13-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70837c30ecfa4e38945565a0ec979b69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70837c30ecfa4e38945565a0ec979b69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70837c30ecfa4e38945565a0ec979b69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70837c30ecfa4e38945565a0ec979b69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70837c30ecfa4e38945565a0ec979b69.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDYb1FTI4c_msyotaRi-n09G8w4=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.104406+00 2025-12-09 10:15:30.104412+00 15331 DL31224-1#亮黄袖子定位裁 SPMX-20240815310540 \N \N \N 1 \N [{"file_id": "233d0284-9764-4b6f-9996-126083d95943", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da088377063f402cba048bac835cc981.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da088377063f402cba048bac835cc981.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da088377063f402cba048bac835cc981.jpg", "file_size": 12545, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#亮黄袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da088377063f402cba048bac835cc981.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da088377063f402cba048bac835cc981.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da088377063f402cba048bac835cc981.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da088377063f402cba048bac835cc981.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da088377063f402cba048bac835cc981.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ogbw7SvJR0uhPKciRdnGn6xKHvo=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.10689+00 2025-12-09 10:15:30.106896+00 15332 JTSS621FW#VS-D3 SPMX-20240815310525 \N \N \N 1 \N [{"file_id": "21cb6ad7-0dfc-46fa-9eae-d3090a97811a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "513b7ca531234e5996d4cebcd7384024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "513b7ca531234e5996d4cebcd7384024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "513b7ca531234e5996d4cebcd7384024.jpg", "file_size": 9240, "is_delete": false, "file_type": 1, "original_file_name": "JTSS621FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513b7ca531234e5996d4cebcd7384024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513b7ca531234e5996d4cebcd7384024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513b7ca531234e5996d4cebcd7384024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/513b7ca531234e5996d4cebcd7384024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/513b7ca531234e5996d4cebcd7384024.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U664yL5kKzGM9TgsMHPaQ3Cx1mE=", "createTime": "2024-08-15 14:58:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.10922+00 2025-12-09 10:15:30.109226+00 15333 CASS-W19#WJC22 SPMX-20240815310542 \N \N \N 1 \N [{"file_id": "181fb539-b38a-496d-b054-98b98049c0ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14a38d28debb4de8974b4fe8bc7fb4b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14a38d28debb4de8974b4fe8bc7fb4b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14a38d28debb4de8974b4fe8bc7fb4b7.jpg", "file_size": 10146, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W19#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a38d28debb4de8974b4fe8bc7fb4b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a38d28debb4de8974b4fe8bc7fb4b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14a38d28debb4de8974b4fe8bc7fb4b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14a38d28debb4de8974b4fe8bc7fb4b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14a38d28debb4de8974b4fe8bc7fb4b7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6vp_uBB7e1SU2xyZTcDvJ4Ucfg=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.111751+00 2025-12-09 10:15:30.111757+00 15334 85006#乱花 SPMX-20240815310528 \N \N \N 1 \N [{"file_id": "fd79afe3-e39e-4afc-b6c6-b0469fef047f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5399d57a119a4d1abb34e07c5c4fa839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5399d57a119a4d1abb34e07c5c4fa839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5399d57a119a4d1abb34e07c5c4fa839.jpg", "file_size": 4555, "is_delete": false, "file_type": 1, "original_file_name": "85006#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5399d57a119a4d1abb34e07c5c4fa839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5399d57a119a4d1abb34e07c5c4fa839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5399d57a119a4d1abb34e07c5c4fa839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5399d57a119a4d1abb34e07c5c4fa839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5399d57a119a4d1abb34e07c5c4fa839.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBGrn9kFNUOYxGzVTNLUoAl0VzY=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.114253+00 2025-12-09 10:15:30.114258+00 15335 1221FWE#橘色3XL SPMX-20240815310537 \N \N \N 1 \N [{"file_id": "c9deec31-a59e-4317-8779-3cf48fde4b4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d617a9bd6c14b8a8146ed52ac9be901.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d617a9bd6c14b8a8146ed52ac9be901.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d617a9bd6c14b8a8146ed52ac9be901.jpg", "file_size": 14424, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d617a9bd6c14b8a8146ed52ac9be901.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d617a9bd6c14b8a8146ed52ac9be901.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d617a9bd6c14b8a8146ed52ac9be901.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d617a9bd6c14b8a8146ed52ac9be901.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d617a9bd6c14b8a8146ed52ac9be901.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_CLgToEbMqIreIZAyOkvtPamOM=", "createTime": "2024-08-15 14:58:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.116769+00 2025-12-09 10:15:30.116774+00 15336 0006-49FWE#VS-D3 SPMX-20240815310543 \N \N \N 1 \N [{"file_id": "d1234698-5078-44e9-acfa-b9064d5e3d02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8a757c9cf04c16b40634bd49488fcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8a757c9cf04c16b40634bd49488fcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8a757c9cf04c16b40634bd49488fcb.jpg", "file_size": 14171, "is_delete": false, "file_type": 1, "original_file_name": "0006-49FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8a757c9cf04c16b40634bd49488fcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8a757c9cf04c16b40634bd49488fcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8a757c9cf04c16b40634bd49488fcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8a757c9cf04c16b40634bd49488fcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8a757c9cf04c16b40634bd49488fcb.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4sp6wLYfDxGcP3QXoXRSx4S3hI=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.119343+00 2025-12-09 10:15:30.119349+00 15337 HW397929FWE#VS-D3 SPMX-20240815310549 \N \N \N 1 \N [{"file_id": "8457a447-7809-4576-af9a-a17c6f0b17b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "223700a66374472c8b7f85747609c514.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "223700a66374472c8b7f85747609c514.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "223700a66374472c8b7f85747609c514.jpg", "file_size": 28708, "is_delete": false, "file_type": 1, "original_file_name": "HW397929FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223700a66374472c8b7f85747609c514.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223700a66374472c8b7f85747609c514.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223700a66374472c8b7f85747609c514.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/223700a66374472c8b7f85747609c514.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/223700a66374472c8b7f85747609c514.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hVx_Jdn3_gRuZbuUJ4JQcvFB9Wg=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.121873+00 2025-12-09 10:15:30.12188+00 15338 LJH1836#橙色 SPMX-20240815310545 \N \N \N 1 \N [{"file_id": "14e248d4-15d1-4f04-a4d6-5eab82e2fe4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec95075616094dc1b9e4e6c2670cedfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec95075616094dc1b9e4e6c2670cedfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec95075616094dc1b9e4e6c2670cedfe.jpg", "file_size": 74159, "is_delete": false, "file_type": 1, "original_file_name": "LJH1836#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec95075616094dc1b9e4e6c2670cedfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec95075616094dc1b9e4e6c2670cedfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec95075616094dc1b9e4e6c2670cedfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec95075616094dc1b9e4e6c2670cedfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec95075616094dc1b9e4e6c2670cedfe.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBMaUwAoxsOp6pOfULOnvH2AKgA=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.124357+00 2025-12-09 10:15:30.124362+00 15339 1221FWE#橘色4XL SPMX-20240815310547 \N \N \N 1 \N [{"file_id": "1e9ba2cb-ad6e-4518-819a-bcbae9213581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2f6947e04354160b6f54306be8bda3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2f6947e04354160b6f54306be8bda3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2f6947e04354160b6f54306be8bda3b.jpg", "file_size": 9195, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f6947e04354160b6f54306be8bda3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f6947e04354160b6f54306be8bda3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f6947e04354160b6f54306be8bda3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2f6947e04354160b6f54306be8bda3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2f6947e04354160b6f54306be8bda3b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBI7jT0viRfSEBGS-MY6ZpS_Pzg=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.126971+00 2025-12-09 10:15:30.126977+00 15340 FR10318#补数主色17码配件 SPMX-20240815310546 \N \N \N 1 \N [{"file_id": "b08c431b-727a-4c6c-a301-c6cd3c1a9da2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2021f38a61334f7cb6a8a0506f606b59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2021f38a61334f7cb6a8a0506f606b59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2021f38a61334f7cb6a8a0506f606b59.jpg", "file_size": 56974, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数主色17码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2021f38a61334f7cb6a8a0506f606b59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2021f38a61334f7cb6a8a0506f606b59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2021f38a61334f7cb6a8a0506f606b59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2021f38a61334f7cb6a8a0506f606b59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2021f38a61334f7cb6a8a0506f606b59.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g839Zlc8Zx9asSyi7wioqXWZMbM=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.12976+00 2025-12-09 10:15:30.129766+00 15341 23-305#A13-4XL SPMX-20240815310544 \N \N \N 1 \N [{"file_id": "17089ed5-9411-4afd-985d-0b33286fe56b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77879118d2754aacaa2c0095d048138c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77879118d2754aacaa2c0095d048138c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77879118d2754aacaa2c0095d048138c.jpg", "file_size": 19570, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A13-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77879118d2754aacaa2c0095d048138c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77879118d2754aacaa2c0095d048138c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77879118d2754aacaa2c0095d048138c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77879118d2754aacaa2c0095d048138c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77879118d2754aacaa2c0095d048138c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FMgxDS-9fhHjwaIv9cYULn9NWBs=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.132214+00 2025-12-09 10:15:30.132218+00 15342 JTSS622FW#橘VS-D3 SPMX-20240815310548 \N \N \N 1 \N [{"file_id": "b660b91b-d05e-442f-b9b1-2706e533bfdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b14bc7a1e514594a08b70302036852b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b14bc7a1e514594a08b70302036852b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b14bc7a1e514594a08b70302036852b.jpg", "file_size": 20299, "is_delete": false, "file_type": 1, "original_file_name": "JTSS622FW#橘VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b14bc7a1e514594a08b70302036852b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b14bc7a1e514594a08b70302036852b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b14bc7a1e514594a08b70302036852b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b14bc7a1e514594a08b70302036852b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b14bc7a1e514594a08b70302036852b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NODZGpfVFBDrSUmtRfxtuEwwgmE=", "createTime": "2024-08-15 14:58:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.13459+00 2025-12-09 10:15:30.134595+00 15343 CASS-W2#WJC22 SPMX-20240815310554 \N \N \N 1 \N [{"file_id": "bcd7df7f-2dad-4585-86d0-e0683657ebbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e08901d2b27f4f9da607fbdc933cd0f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e08901d2b27f4f9da607fbdc933cd0f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e08901d2b27f4f9da607fbdc933cd0f9.jpg", "file_size": 16559, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08901d2b27f4f9da607fbdc933cd0f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08901d2b27f4f9da607fbdc933cd0f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e08901d2b27f4f9da607fbdc933cd0f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e08901d2b27f4f9da607fbdc933cd0f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e08901d2b27f4f9da607fbdc933cd0f9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBEvKjQwfklqJJypGJHvJOiBh-I=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.136951+00 2025-12-09 10:15:30.136955+00 15344 85007#4码+8码 SPMX-20240815310561 \N \N \N 1 \N [{"file_id": "c4a05912-f492-4dec-b9f8-235e654ea485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a32fd9c2568477f936ad758d0265b88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a32fd9c2568477f936ad758d0265b88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a32fd9c2568477f936ad758d0265b88.jpg", "file_size": 19500, "is_delete": false, "file_type": 1, "original_file_name": "85007#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a32fd9c2568477f936ad758d0265b88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a32fd9c2568477f936ad758d0265b88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a32fd9c2568477f936ad758d0265b88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a32fd9c2568477f936ad758d0265b88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a32fd9c2568477f936ad758d0265b88.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4Tm_jHRTdsSZAbCD7Oqp_AGohU=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.139279+00 2025-12-09 10:15:30.139284+00 15345 HW402674FWE# SPMX-20240815310559 \N \N \N 1 \N [{"file_id": "ba6e4098-ec33-49a8-a55e-3b927016a076", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "219538f03e8b4bd08ac043ec43f2896f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "219538f03e8b4bd08ac043ec43f2896f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "219538f03e8b4bd08ac043ec43f2896f.jpg", "file_size": 25057, "is_delete": false, "file_type": 1, "original_file_name": "HW402674FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219538f03e8b4bd08ac043ec43f2896f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219538f03e8b4bd08ac043ec43f2896f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219538f03e8b4bd08ac043ec43f2896f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/219538f03e8b4bd08ac043ec43f2896f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/219538f03e8b4bd08ac043ec43f2896f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n7PRZx-3qgIO5hIWdT1PXg__t9E=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.141663+00 2025-12-09 10:15:30.141667+00 15346 85007#14码 SPMX-20240815310550 \N \N \N 1 \N [{"file_id": "198d317e-67a9-42bc-b442-dc444b90cfa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1d3ef3c19014d649d8d8a313849b9e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1d3ef3c19014d649d8d8a313849b9e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1d3ef3c19014d649d8d8a313849b9e8.jpg", "file_size": 17671, "is_delete": false, "file_type": 1, "original_file_name": "85007#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d3ef3c19014d649d8d8a313849b9e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d3ef3c19014d649d8d8a313849b9e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1d3ef3c19014d649d8d8a313849b9e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1d3ef3c19014d649d8d8a313849b9e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1d3ef3c19014d649d8d8a313849b9e8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YHusg5zAS3GzJvlYFv7qi-Rqibk=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.143923+00 2025-12-09 10:15:30.143928+00 15347 0006-49FWF#V5曲线 SPMX-20240815310558 \N \N \N 1 \N [{"file_id": "8275d0d1-1478-4a6a-8127-34ef27d597c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a2316e89f2941b89503d17092c456c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a2316e89f2941b89503d17092c456c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a2316e89f2941b89503d17092c456c7.jpg", "file_size": 18946, "is_delete": false, "file_type": 1, "original_file_name": "0006-49FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2316e89f2941b89503d17092c456c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2316e89f2941b89503d17092c456c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2316e89f2941b89503d17092c456c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a2316e89f2941b89503d17092c456c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a2316e89f2941b89503d17092c456c7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pabDmPMPfu8CmB8Q3UGlcgJIByk=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.146271+00 2025-12-09 10:15:30.146276+00 15348 DL31224-1#天蓝2XL码前幅烧花 SPMX-20240815310551 \N \N \N 1 \N [{"file_id": "bd3fef5e-a256-4e89-b056-d2249a721a85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e03922050ac84998a1fd90a946f557b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e03922050ac84998a1fd90a946f557b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e03922050ac84998a1fd90a946f557b7.jpg", "file_size": 16598, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#天蓝2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03922050ac84998a1fd90a946f557b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03922050ac84998a1fd90a946f557b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03922050ac84998a1fd90a946f557b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e03922050ac84998a1fd90a946f557b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e03922050ac84998a1fd90a946f557b7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:git17SUBOgZkecDufEZhEG8tioM=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.148364+00 2025-12-09 10:15:30.148369+00 15349 LJH1836#紫色 SPMX-20240815310553 \N \N \N 1 \N [{"file_id": "53b649f5-0053-415f-a8e2-e9d8387b7d9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b1b6f12d56f4985a7f6a7558158f0b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b1b6f12d56f4985a7f6a7558158f0b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b1b6f12d56f4985a7f6a7558158f0b5.jpg", "file_size": 70159, "is_delete": false, "file_type": 1, "original_file_name": "LJH1836#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b1b6f12d56f4985a7f6a7558158f0b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b1b6f12d56f4985a7f6a7558158f0b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b1b6f12d56f4985a7f6a7558158f0b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b1b6f12d56f4985a7f6a7558158f0b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b1b6f12d56f4985a7f6a7558158f0b5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UH1vp3_q7lBggmlGfVeFhw-n0lc=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.150746+00 2025-12-09 10:15:30.15075+00 15350 JTSS622FW#绿VS-D3 SPMX-20240815310560 \N \N \N 1 \N [{"file_id": "b16c28bd-9dfa-418c-ad43-4af7491789bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88a91b78c2614d0ab7f1af0788a7bbb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88a91b78c2614d0ab7f1af0788a7bbb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88a91b78c2614d0ab7f1af0788a7bbb3.jpg", "file_size": 19183, "is_delete": false, "file_type": 1, "original_file_name": "JTSS622FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a91b78c2614d0ab7f1af0788a7bbb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a91b78c2614d0ab7f1af0788a7bbb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a91b78c2614d0ab7f1af0788a7bbb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88a91b78c2614d0ab7f1af0788a7bbb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88a91b78c2614d0ab7f1af0788a7bbb3.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l1Vh983JNfv0KhI0jVA88-mAWmA=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.153158+00 2025-12-09 10:15:30.153164+00 15351 LZ1341#上身4号色 SPMX-20240815310552 \N \N \N 1 \N [{"file_id": "a9790e49-31a9-4bec-811e-5815a7f7c172", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a7a0ad0d68348b881697ffbd419b1d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a7a0ad0d68348b881697ffbd419b1d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a7a0ad0d68348b881697ffbd419b1d6.jpg", "file_size": 19518, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7a0ad0d68348b881697ffbd419b1d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7a0ad0d68348b881697ffbd419b1d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a7a0ad0d68348b881697ffbd419b1d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a7a0ad0d68348b881697ffbd419b1d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a7a0ad0d68348b881697ffbd419b1d6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XnKaKgSYMqAYJZR_zyDRCiUGrIY=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.155457+00 2025-12-09 10:15:30.155462+00 15352 23-305#A13-领子3XL SPMX-20240815310556 \N \N \N 1 \N [{"file_id": "96b43b0a-d532-423f-91ed-0e7e72230505", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4cc8ceef86044bd95510b15fc039827.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4cc8ceef86044bd95510b15fc039827.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4cc8ceef86044bd95510b15fc039827.jpg", "file_size": 13087, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A13-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cc8ceef86044bd95510b15fc039827.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cc8ceef86044bd95510b15fc039827.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cc8ceef86044bd95510b15fc039827.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4cc8ceef86044bd95510b15fc039827.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4cc8ceef86044bd95510b15fc039827.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kf7pIHinAWkruso5ghgaeGCD5Ss=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.157777+00 2025-12-09 10:15:30.157782+00 15353 FR10318#补数主色18码配件 SPMX-20240815310555 \N \N \N 1 \N [{"file_id": "64e11ad1-cb68-4a9f-8f2a-807b1e26e6f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d60df936d93448ab3b6cc0f3a959a7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d60df936d93448ab3b6cc0f3a959a7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d60df936d93448ab3b6cc0f3a959a7d.jpg", "file_size": 59861, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数主色18码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60df936d93448ab3b6cc0f3a959a7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60df936d93448ab3b6cc0f3a959a7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d60df936d93448ab3b6cc0f3a959a7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d60df936d93448ab3b6cc0f3a959a7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d60df936d93448ab3b6cc0f3a959a7d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKEt7lNG3I_CtihIpbvXhzVBGl4=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.160125+00 2025-12-09 10:15:30.16013+00 15354 1221FWE#橘色L SPMX-20240815310557 \N \N \N 1 \N [{"file_id": "27ae9aa8-706d-440e-a474-6c1968f04790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27c4d87e707140ecaa1ba7f3b8217c44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27c4d87e707140ecaa1ba7f3b8217c44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27c4d87e707140ecaa1ba7f3b8217c44.jpg", "file_size": 13828, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c4d87e707140ecaa1ba7f3b8217c44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c4d87e707140ecaa1ba7f3b8217c44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c4d87e707140ecaa1ba7f3b8217c44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27c4d87e707140ecaa1ba7f3b8217c44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27c4d87e707140ecaa1ba7f3b8217c44.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x10e1HcSp-1A6R9WFlwTUGbrn1c=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.162248+00 2025-12-09 10:15:30.162252+00 15355 DL31224-1#天蓝L码前幅烧花 SPMX-20240815310562 \N \N \N 1 \N [{"file_id": "2a0d80ef-7e32-4d87-b7c4-7ae271cccec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3e393619ea041ca9a4aee9615cb8b2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3e393619ea041ca9a4aee9615cb8b2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3e393619ea041ca9a4aee9615cb8b2c.jpg", "file_size": 15795, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#天蓝L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e393619ea041ca9a4aee9615cb8b2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e393619ea041ca9a4aee9615cb8b2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3e393619ea041ca9a4aee9615cb8b2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3e393619ea041ca9a4aee9615cb8b2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3e393619ea041ca9a4aee9615cb8b2c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGbU6iC5RQ68PHVA1EMt740wu7s=", "createTime": "2024-08-15 14:58:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.164347+00 2025-12-09 10:15:30.164351+00 15356 0006-4FWE#VS-D3 SPMX-20240815310568 \N \N \N 1 \N [{"file_id": "f96ea627-567f-4ede-be75-5058a1b95502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5067ae4b5dc6412c8e4cb534f5357478.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5067ae4b5dc6412c8e4cb534f5357478.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5067ae4b5dc6412c8e4cb534f5357478.jpg", "file_size": 14746, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5067ae4b5dc6412c8e4cb534f5357478.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5067ae4b5dc6412c8e4cb534f5357478.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5067ae4b5dc6412c8e4cb534f5357478.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5067ae4b5dc6412c8e4cb534f5357478.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5067ae4b5dc6412c8e4cb534f5357478.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uI4rn688p9maWuIl9-MNa74K6w8=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.166403+00 2025-12-09 10:15:30.166408+00 15357 LZ1341#童装T1号色 SPMX-20240815310574 \N \N \N 1 \N [{"file_id": "a6a38a55-3b6f-4532-bf81-974cf006634b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg", "file_size": 22076, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765e0a7dbc174fa5bfd7f7e9b1d2b48f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdnck9bf9SKQEenHI0Y1gW3Dc-M=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.16855+00 2025-12-09 10:15:30.168554+00 15358 HW458120FWE#VS-D3 SPMX-20240815310571 \N \N \N 1 \N [{"file_id": "2c28ff48-045a-46b1-90d7-2f965df6b205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f540a13ab0cb46db872157ba3efdec87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f540a13ab0cb46db872157ba3efdec87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f540a13ab0cb46db872157ba3efdec87.jpg", "file_size": 20614, "is_delete": false, "file_type": 1, "original_file_name": "HW458120FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f540a13ab0cb46db872157ba3efdec87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f540a13ab0cb46db872157ba3efdec87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f540a13ab0cb46db872157ba3efdec87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f540a13ab0cb46db872157ba3efdec87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f540a13ab0cb46db872157ba3efdec87.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RacJX1RX1rXJP6UEXlRBRt3pkSw=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.170892+00 2025-12-09 10:15:30.170896+00 15359 23-305#A14-3XL SPMX-20240815310577 \N \N \N 1 \N [{"file_id": "f2858ca7-1a46-477e-b45d-b308d2abaeb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "127880114ebc428dabcb00469a1bc967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "127880114ebc428dabcb00469a1bc967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "127880114ebc428dabcb00469a1bc967.jpg", "file_size": 20369, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A14-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127880114ebc428dabcb00469a1bc967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127880114ebc428dabcb00469a1bc967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/127880114ebc428dabcb00469a1bc967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/127880114ebc428dabcb00469a1bc967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/127880114ebc428dabcb00469a1bc967.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gw2fsdHrq2UNsi1scbeu84naX7g=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.173172+00 2025-12-09 10:15:30.173177+00 15360 23-305#A13-领子4XL SPMX-20240815310567 \N \N \N 1 \N [{"file_id": "1ff625b9-318d-4074-a1ee-c349566c5d5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg", "file_size": 13530, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A13-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d3a98a3bfa64722b5bdf8e767d6ab7a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5LE2Xs1iQE9QV62lEbkb-YNHas=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.175487+00 2025-12-09 10:15:30.175492+00 15361 CASS-W21#WJC22 SPMX-20240815310576 \N \N \N 1 \N [{"file_id": "f8fc2545-1c07-4b92-9503-1edef1b611d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e11b6b160b9d4d019c872a47ed313787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e11b6b160b9d4d019c872a47ed313787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e11b6b160b9d4d019c872a47ed313787.jpg", "file_size": 16304, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W21#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b6b160b9d4d019c872a47ed313787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b6b160b9d4d019c872a47ed313787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b6b160b9d4d019c872a47ed313787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e11b6b160b9d4d019c872a47ed313787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e11b6b160b9d4d019c872a47ed313787.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enfbNA85NMv9sOHVtd6jTiVLNLg=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.177711+00 2025-12-09 10:15:30.177716+00 15362 LZ1341#上身5号色 SPMX-20240815310563 \N \N \N 1 \N [{"file_id": "f10179a5-adb3-4631-89af-812a3aaa085a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23d65fd60b1d4e7cad04c6befa9dd02c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23d65fd60b1d4e7cad04c6befa9dd02c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23d65fd60b1d4e7cad04c6befa9dd02c.jpg", "file_size": 17509, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d65fd60b1d4e7cad04c6befa9dd02c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d65fd60b1d4e7cad04c6befa9dd02c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d65fd60b1d4e7cad04c6befa9dd02c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23d65fd60b1d4e7cad04c6befa9dd02c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23d65fd60b1d4e7cad04c6befa9dd02c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXr3ed79fzrSfxbzwYWZ4Pxj5cE=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.18041+00 2025-12-09 10:15:30.180415+00 15363 CASS-W20#WJC22 SPMX-20240815310566 \N \N \N 1 \N [{"file_id": "aa1236bd-fbff-4a7a-a087-bf949bae12d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d25bce8dd2124f0c994a8a63dd39d955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d25bce8dd2124f0c994a8a63dd39d955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d25bce8dd2124f0c994a8a63dd39d955.jpg", "file_size": 12163, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W20#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25bce8dd2124f0c994a8a63dd39d955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25bce8dd2124f0c994a8a63dd39d955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25bce8dd2124f0c994a8a63dd39d955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d25bce8dd2124f0c994a8a63dd39d955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d25bce8dd2124f0c994a8a63dd39d955.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JN5GysO2kWhVGVxQKBFwbzHr9CA=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.183266+00 2025-12-09 10:15:30.183271+00 15364 JTSS623FW#白VS-D3 SPMX-20240815310570 \N \N \N 1 \N [{"file_id": "fb43b2ed-b439-40e0-abc1-588e76eeaff8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61093390de264dd78923db8cca4d8358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61093390de264dd78923db8cca4d8358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61093390de264dd78923db8cca4d8358.jpg", "file_size": 14129, "is_delete": false, "file_type": 1, "original_file_name": "JTSS623FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61093390de264dd78923db8cca4d8358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61093390de264dd78923db8cca4d8358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61093390de264dd78923db8cca4d8358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61093390de264dd78923db8cca4d8358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61093390de264dd78923db8cca4d8358.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1pohqiWwbZFt6LxFRVBP5gheBvM=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.185884+00 2025-12-09 10:15:30.185889+00 15365 85007#6码 SPMX-20240815310572 \N \N \N 1 \N [{"file_id": "e0da6b30-0343-4cd5-bf11-289bfb0737b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9592e108db946e4958fffa2584d9bf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9592e108db946e4958fffa2584d9bf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9592e108db946e4958fffa2584d9bf2.jpg", "file_size": 18896, "is_delete": false, "file_type": 1, "original_file_name": "85007#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9592e108db946e4958fffa2584d9bf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9592e108db946e4958fffa2584d9bf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9592e108db946e4958fffa2584d9bf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9592e108db946e4958fffa2584d9bf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9592e108db946e4958fffa2584d9bf2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pUNVJMvmT_mrfEadO8W33bj1Oz4=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.188486+00 2025-12-09 10:15:30.188491+00 15366 LJH1836#黄色 SPMX-20240815310575 \N \N \N 1 \N [{"file_id": "552b2b83-029f-49e4-a699-b0b553efbe3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ede0a554487242dab40e23562e560a11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ede0a554487242dab40e23562e560a11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ede0a554487242dab40e23562e560a11.jpg", "file_size": 69947, "is_delete": false, "file_type": 1, "original_file_name": "LJH1836#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede0a554487242dab40e23562e560a11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede0a554487242dab40e23562e560a11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede0a554487242dab40e23562e560a11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ede0a554487242dab40e23562e560a11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ede0a554487242dab40e23562e560a11.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eAIpCYT9vHe6t2g0tgd0gUMuRY=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.191024+00 2025-12-09 10:15:30.191031+00 15367 1221FWE#橘色XL SPMX-20240815310569 \N \N \N 1 \N [{"file_id": "59ad919b-b0e9-4752-abf0-59dd55f5e535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ff87a3d7ebc42e5954f6c336fc794a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ff87a3d7ebc42e5954f6c336fc794a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ff87a3d7ebc42e5954f6c336fc794a4.jpg", "file_size": 14111, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff87a3d7ebc42e5954f6c336fc794a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff87a3d7ebc42e5954f6c336fc794a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ff87a3d7ebc42e5954f6c336fc794a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ff87a3d7ebc42e5954f6c336fc794a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ff87a3d7ebc42e5954f6c336fc794a4.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:farQjjSl8IQRNXqgIwwPnf7z_yI=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.193556+00 2025-12-09 10:15:30.193561+00 15368 DL31224-1#天蓝XL码前幅烧花 SPMX-20240815310573 \N \N \N 1 \N [{"file_id": "85a5a478-bd23-4374-97b0-21306b57ce22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edfddeafe5a34fffa51df2bbf648726f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edfddeafe5a34fffa51df2bbf648726f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edfddeafe5a34fffa51df2bbf648726f.jpg", "file_size": 16103, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#天蓝XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edfddeafe5a34fffa51df2bbf648726f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edfddeafe5a34fffa51df2bbf648726f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edfddeafe5a34fffa51df2bbf648726f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edfddeafe5a34fffa51df2bbf648726f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edfddeafe5a34fffa51df2bbf648726f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOMampE9EFZIsSX2ra48c6702cc=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.195912+00 2025-12-09 10:15:30.195918+00 15369 FR10318#补数主色19码配件 SPMX-20240815310565 \N \N \N 1 \N [{"file_id": "4a7f9d18-05a5-462d-8e3a-bd7c2880003f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11b905f043714a158f175bfb05aac67a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11b905f043714a158f175bfb05aac67a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11b905f043714a158f175bfb05aac67a.jpg", "file_size": 56572, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数主色19码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b905f043714a158f175bfb05aac67a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b905f043714a158f175bfb05aac67a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b905f043714a158f175bfb05aac67a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11b905f043714a158f175bfb05aac67a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11b905f043714a158f175bfb05aac67a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1CpXkaDF-Sp4dDXtVjQMO4MNZ7I=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.19844+00 2025-12-09 10:15:30.198446+00 15370 LJH1836#绿色 SPMX-20240815310564 \N \N \N 1 \N [{"file_id": "90adf97f-a3fe-467a-9d31-ae6108edf252", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0decee44f13e463eb4cb7eba4354a6bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0decee44f13e463eb4cb7eba4354a6bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0decee44f13e463eb4cb7eba4354a6bb.jpg", "file_size": 71092, "is_delete": false, "file_type": 1, "original_file_name": "LJH1836#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decee44f13e463eb4cb7eba4354a6bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decee44f13e463eb4cb7eba4354a6bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0decee44f13e463eb4cb7eba4354a6bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0decee44f13e463eb4cb7eba4354a6bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0decee44f13e463eb4cb7eba4354a6bb.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bUU2TTxotKXmA7EPSEv2xRR3pl4=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.200973+00 2025-12-09 10:15:30.200978+00 15371 85007#乱花 SPMX-20240815310581 \N \N \N 1 \N [{"file_id": "02255cd6-171e-4592-a919-9df63bc15000", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cabf1ec1f580486a872f06adeef636f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cabf1ec1f580486a872f06adeef636f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cabf1ec1f580486a872f06adeef636f5.jpg", "file_size": 5556, "is_delete": false, "file_type": 1, "original_file_name": "85007#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cabf1ec1f580486a872f06adeef636f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cabf1ec1f580486a872f06adeef636f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cabf1ec1f580486a872f06adeef636f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cabf1ec1f580486a872f06adeef636f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cabf1ec1f580486a872f06adeef636f5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3pi-AANMcSsVrp9P8h6QdSVmS0=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.203485+00 2025-12-09 10:15:30.203491+00 15372 HW460481FWE#VS-D3 SPMX-20240815310583 \N \N \N 1 \N [{"file_id": "330c77b3-f1e9-41cf-ac73-53326ee65f1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg", "file_size": 19977, "is_delete": false, "file_type": 1, "original_file_name": "HW460481FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fe6c491a0f84cbeb85342c0c2ac2f2d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3TXy_y-dWwL7BIyPC_Q2jc4fFI=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.206064+00 2025-12-09 10:15:30.206069+00 15373 85008#10码+12码 SPMX-20240815310590 \N \N \N 1 \N [{"file_id": "9d6eaf73-4a02-4ac8-b99e-e3eec27c4d35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "117217d852c94517bb86e7ba8d7bdca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "117217d852c94517bb86e7ba8d7bdca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "117217d852c94517bb86e7ba8d7bdca3.jpg", "file_size": 19054, "is_delete": false, "file_type": 1, "original_file_name": "85008#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117217d852c94517bb86e7ba8d7bdca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117217d852c94517bb86e7ba8d7bdca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/117217d852c94517bb86e7ba8d7bdca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/117217d852c94517bb86e7ba8d7bdca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/117217d852c94517bb86e7ba8d7bdca3.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-cXTrWMmDLude0YxGsO_gK1qJls=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.208539+00 2025-12-09 10:15:30.208545+00 15374 0006-4FWE#咖啡 SPMX-20240815310578 \N \N \N 1 \N [{"file_id": "c90fc245-ec50-4e4e-9bb3-c50b0d2878f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e3c0f5c63a2435dbf4339d83b649b91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e3c0f5c63a2435dbf4339d83b649b91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e3c0f5c63a2435dbf4339d83b649b91.jpg", "file_size": 9683, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWE#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3c0f5c63a2435dbf4339d83b649b91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3c0f5c63a2435dbf4339d83b649b91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e3c0f5c63a2435dbf4339d83b649b91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e3c0f5c63a2435dbf4339d83b649b91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e3c0f5c63a2435dbf4339d83b649b91.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fMKJIp6Z3nWOT6UE6nZXb4h33Q8=", "createTime": "2024-08-15 14:58:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.211075+00 2025-12-09 10:15:30.21108+00 15375 CASS-W22#WJC22 SPMX-20240815310587 \N \N \N 1 \N [{"file_id": "1e20e929-2cfa-46d9-ba37-b77b64a8d90d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3298ce2c50ee45fe873419a57eeef538.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3298ce2c50ee45fe873419a57eeef538.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3298ce2c50ee45fe873419a57eeef538.jpg", "file_size": 13972, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W22#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3298ce2c50ee45fe873419a57eeef538.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3298ce2c50ee45fe873419a57eeef538.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3298ce2c50ee45fe873419a57eeef538.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3298ce2c50ee45fe873419a57eeef538.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3298ce2c50ee45fe873419a57eeef538.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpcL2u5-0mo2Xt9x8DOWsr6akpw=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.213562+00 2025-12-09 10:15:30.213568+00 15376 JTSS623FW#粉VS-D3 SPMX-20240815310582 \N \N \N 1 \N [{"file_id": "9caa9683-6e45-4ee6-84cd-9700b856e15b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7fd90bbb61a43f787b8d867bda478cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7fd90bbb61a43f787b8d867bda478cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7fd90bbb61a43f787b8d867bda478cf.jpg", "file_size": 14351, "is_delete": false, "file_type": 1, "original_file_name": "JTSS623FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fd90bbb61a43f787b8d867bda478cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fd90bbb61a43f787b8d867bda478cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fd90bbb61a43f787b8d867bda478cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7fd90bbb61a43f787b8d867bda478cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7fd90bbb61a43f787b8d867bda478cf.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iTJ2eM0W3yeDx3-aXOSR94-mt7o=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.216126+00 2025-12-09 10:15:30.216132+00 15377 23-305#A14-4XL SPMX-20240815310589 \N \N \N 1 \N [{"file_id": "ccfaf05f-7fc7-4a21-bdcb-c9d4daf6aa83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ae61c1bdc7948e1b0c8bbba355ab641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ae61c1bdc7948e1b0c8bbba355ab641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ae61c1bdc7948e1b0c8bbba355ab641.jpg", "file_size": 19775, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A14-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae61c1bdc7948e1b0c8bbba355ab641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae61c1bdc7948e1b0c8bbba355ab641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae61c1bdc7948e1b0c8bbba355ab641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ae61c1bdc7948e1b0c8bbba355ab641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ae61c1bdc7948e1b0c8bbba355ab641.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YNDgWN_-_oSzcK6ITQwYkW1vfLA=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.21872+00 2025-12-09 10:15:30.218727+00 15378 FR10318#补数主色20码配件 SPMX-20240815310579 \N \N \N 1 \N [{"file_id": "e0c72a78-9793-4045-a9c7-3c736c86a450", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad7db8fe711749be8fbafbbf9aee30db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad7db8fe711749be8fbafbbf9aee30db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad7db8fe711749be8fbafbbf9aee30db.jpg", "file_size": 56417, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数主色20码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7db8fe711749be8fbafbbf9aee30db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7db8fe711749be8fbafbbf9aee30db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad7db8fe711749be8fbafbbf9aee30db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad7db8fe711749be8fbafbbf9aee30db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad7db8fe711749be8fbafbbf9aee30db.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WmLnO3XxdkugRUkjYf32M5vf6IM=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.221312+00 2025-12-09 10:15:30.221318+00 15379 DL31224-1#天蓝袖子定位裁 SPMX-20240815310584 \N \N \N 1 \N [{"file_id": "8c226bf3-0c34-42a5-8757-97ac3f2c96b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83e2e5897f1749438e1ce475134b4851.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83e2e5897f1749438e1ce475134b4851.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83e2e5897f1749438e1ce475134b4851.jpg", "file_size": 12306, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#天蓝袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e2e5897f1749438e1ce475134b4851.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e2e5897f1749438e1ce475134b4851.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e2e5897f1749438e1ce475134b4851.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83e2e5897f1749438e1ce475134b4851.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83e2e5897f1749438e1ce475134b4851.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dgaaMVIee7E44s8Kz7In6vnRJB8=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.223858+00 2025-12-09 10:15:30.223864+00 15380 1221FWE#橘色下摆定位 SPMX-20240815310580 \N \N \N 1 \N [{"file_id": "f188784d-e0c1-4a9a-9e94-57f31bcb4d4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d52a8e9d78414e84a7a14e6e63ac5060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d52a8e9d78414e84a7a14e6e63ac5060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d52a8e9d78414e84a7a14e6e63ac5060.jpg", "file_size": 16692, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52a8e9d78414e84a7a14e6e63ac5060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52a8e9d78414e84a7a14e6e63ac5060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d52a8e9d78414e84a7a14e6e63ac5060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d52a8e9d78414e84a7a14e6e63ac5060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d52a8e9d78414e84a7a14e6e63ac5060.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2qcUPXYzsS_dpbX7F39XzOe9_s=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.226469+00 2025-12-09 10:15:30.226475+00 15381 LJH1837#宝蓝 SPMX-20240815310586 \N \N \N 1 \N [{"file_id": "663f0600-f588-4564-aca3-7528f619b480", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9638bca9e97483eb1031a3b386d3842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9638bca9e97483eb1031a3b386d3842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9638bca9e97483eb1031a3b386d3842.jpg", "file_size": 22669, "is_delete": false, "file_type": 1, "original_file_name": "LJH1837#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9638bca9e97483eb1031a3b386d3842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9638bca9e97483eb1031a3b386d3842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9638bca9e97483eb1031a3b386d3842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9638bca9e97483eb1031a3b386d3842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9638bca9e97483eb1031a3b386d3842.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e5ZHe7So5zRRQSd9CvU_C7GVHjs=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.228992+00 2025-12-09 10:15:30.228999+00 15382 LZ1341#童装T2号色 SPMX-20240815310585 \N \N \N 1 \N [{"file_id": "f271fad2-994c-458b-87a6-55391b75601c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg", "file_size": 23598, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0fe0d4bd53944ba8a4302a5b69b5a9c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iffqLDCr-GrlvxFt0tYlKrgLQsU=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.231515+00 2025-12-09 10:15:30.231521+00 15383 FR10318#补数杏色净色 SPMX-20240815310588 \N \N \N 1 \N [{"file_id": "7b5fad2d-5028-4872-b410-c0162f76f257", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "986e9902175e4b8ab48e056a7070d64f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "986e9902175e4b8ab48e056a7070d64f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "986e9902175e4b8ab48e056a7070d64f.jpg", "file_size": 12995, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数杏色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986e9902175e4b8ab48e056a7070d64f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986e9902175e4b8ab48e056a7070d64f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986e9902175e4b8ab48e056a7070d64f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/986e9902175e4b8ab48e056a7070d64f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/986e9902175e4b8ab48e056a7070d64f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsTSRVuXTZiaEE6ib8kq20xAiPA=", "createTime": "2024-08-15 14:58:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.234027+00 2025-12-09 10:15:30.234033+00 15384 LZ1341#童装T3号色 SPMX-20240815310597 \N \N \N 1 \N [{"file_id": "ac04d1d9-acf2-44fc-ace3-ec1da9abc6d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f80806c306954f7f9bab8220dfd65b20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f80806c306954f7f9bab8220dfd65b20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f80806c306954f7f9bab8220dfd65b20.jpg", "file_size": 21281, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80806c306954f7f9bab8220dfd65b20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80806c306954f7f9bab8220dfd65b20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f80806c306954f7f9bab8220dfd65b20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f80806c306954f7f9bab8220dfd65b20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f80806c306954f7f9bab8220dfd65b20.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2HxxpAFVVDzsMgPmWntc7LL5WU=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.236567+00 2025-12-09 10:15:30.236572+00 15385 1221FWE#橘色批布 SPMX-20240815310591 \N \N \N 1 \N [{"file_id": "e52b5693-52a3-4ebb-a038-f17a9872bcd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eb60a059c2a4e84a182d23e931ff6c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eb60a059c2a4e84a182d23e931ff6c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eb60a059c2a4e84a182d23e931ff6c8.jpg", "file_size": 4846, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#橘色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb60a059c2a4e84a182d23e931ff6c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb60a059c2a4e84a182d23e931ff6c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb60a059c2a4e84a182d23e931ff6c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eb60a059c2a4e84a182d23e931ff6c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eb60a059c2a4e84a182d23e931ff6c8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nvj-RVFbDNbs8RUD1vYpM7pefvU=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.239072+00 2025-12-09 10:15:30.239077+00 15386 JTSS624FW#VS-D3 SPMX-20240815310595 \N \N \N 1 \N [{"file_id": "85969a3a-a3a2-45a0-8de6-37aea1c37f42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a39ea898e66e4da6a61513ede5e297da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a39ea898e66e4da6a61513ede5e297da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a39ea898e66e4da6a61513ede5e297da.jpg", "file_size": 8751, "is_delete": false, "file_type": 1, "original_file_name": "JTSS624FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39ea898e66e4da6a61513ede5e297da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39ea898e66e4da6a61513ede5e297da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39ea898e66e4da6a61513ede5e297da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a39ea898e66e4da6a61513ede5e297da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a39ea898e66e4da6a61513ede5e297da.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnBzT6XNYsNHQF-Bj1tvO2JPj-U=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.24156+00 2025-12-09 10:15:30.241565+00 15387 HW461478FWE#2XL SPMX-20240815310593 \N \N \N 1 \N [{"file_id": "7412c26f-ffb8-4d53-ab20-31e7e50b0cea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c1c265d8704e5fb9343b973cd10708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c1c265d8704e5fb9343b973cd10708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c1c265d8704e5fb9343b973cd10708.jpg", "file_size": 13350, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c1c265d8704e5fb9343b973cd10708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c1c265d8704e5fb9343b973cd10708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c1c265d8704e5fb9343b973cd10708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c1c265d8704e5fb9343b973cd10708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c1c265d8704e5fb9343b973cd10708.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGU5GgvWWC-VloEsYoO_fMAyae0=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.244059+00 2025-12-09 10:15:30.244065+00 15388 LJH1837#枣红色 SPMX-20240815310596 \N \N \N 1 \N [{"file_id": "4ddbc5a1-67e4-48aa-bcc1-560db333b2bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b609468c3004ae7b79aa0c7f41a5efa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b609468c3004ae7b79aa0c7f41a5efa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b609468c3004ae7b79aa0c7f41a5efa.jpg", "file_size": 22030, "is_delete": false, "file_type": 1, "original_file_name": "LJH1837#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b609468c3004ae7b79aa0c7f41a5efa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b609468c3004ae7b79aa0c7f41a5efa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b609468c3004ae7b79aa0c7f41a5efa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b609468c3004ae7b79aa0c7f41a5efa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b609468c3004ae7b79aa0c7f41a5efa.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOf8uEOhRSq0KCNf4_RfeoIJHYk=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.246572+00 2025-12-09 10:15:30.246577+00 15389 0006-4FWE#黑白 SPMX-20240815310592 \N \N \N 1 \N [{"file_id": "9da011f6-13ef-4489-9472-96bf7f8d56b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ec82d9f72934db892c1227bb5fe92c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ec82d9f72934db892c1227bb5fe92c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ec82d9f72934db892c1227bb5fe92c6.jpg", "file_size": 10955, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWE#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec82d9f72934db892c1227bb5fe92c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec82d9f72934db892c1227bb5fe92c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec82d9f72934db892c1227bb5fe92c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ec82d9f72934db892c1227bb5fe92c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ec82d9f72934db892c1227bb5fe92c6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmfrjqPM2rS3nZAp6q6U1WFs1Q0=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.24912+00 2025-12-09 10:15:30.249126+00 15390 23-305#A14-领子3XL SPMX-20240815310600 \N \N \N 1 \N [{"file_id": "98fba689-62da-4cb8-b79c-7deb6b966b15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f8497392274cf6820acded06e05c06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f8497392274cf6820acded06e05c06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f8497392274cf6820acded06e05c06.jpg", "file_size": 14015, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A14-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8497392274cf6820acded06e05c06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8497392274cf6820acded06e05c06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f8497392274cf6820acded06e05c06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f8497392274cf6820acded06e05c06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f8497392274cf6820acded06e05c06.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:83gPRMtEjqbUhGHqKp3JR0XZHc4=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.251575+00 2025-12-09 10:15:30.25158+00 15391 DL31224-1#彩蓝2XL码前幅烧花 SPMX-20240815310594 \N \N \N 1 \N [{"file_id": "bc0c8378-337e-4512-ad80-3b2a85121e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9636708449d14709b412fdb4614e8fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9636708449d14709b412fdb4614e8fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9636708449d14709b412fdb4614e8fb8.jpg", "file_size": 16605, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#彩蓝2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636708449d14709b412fdb4614e8fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636708449d14709b412fdb4614e8fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9636708449d14709b412fdb4614e8fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9636708449d14709b412fdb4614e8fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9636708449d14709b412fdb4614e8fb8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3f-p1nvPh-mi8IsM9yopxwyvnqw=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.254099+00 2025-12-09 10:15:30.254104+00 15392 CASS-W23#WJC22 SPMX-20240815310598 \N \N \N 1 \N [{"file_id": "06cb856d-4cc1-4b7a-8068-528f8b3fc4bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2db689a06334fdca4f1f7c179c0e916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2db689a06334fdca4f1f7c179c0e916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2db689a06334fdca4f1f7c179c0e916.jpg", "file_size": 17925, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W23#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2db689a06334fdca4f1f7c179c0e916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2db689a06334fdca4f1f7c179c0e916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2db689a06334fdca4f1f7c179c0e916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2db689a06334fdca4f1f7c179c0e916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2db689a06334fdca4f1f7c179c0e916.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bD7tpxCX1NS2G5ZrJ9O8KQ5G16E=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.256634+00 2025-12-09 10:15:30.256639+00 15393 FR10318#补数灰色17码配件 SPMX-20240815310599 \N \N \N 1 \N [{"file_id": "af9b3035-e6e8-41c1-9d45-36052db1a777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43342da4f1214003a22c8f80bb76d434.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43342da4f1214003a22c8f80bb76d434.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43342da4f1214003a22c8f80bb76d434.jpg", "file_size": 57856, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数灰色17码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43342da4f1214003a22c8f80bb76d434.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43342da4f1214003a22c8f80bb76d434.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43342da4f1214003a22c8f80bb76d434.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43342da4f1214003a22c8f80bb76d434.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43342da4f1214003a22c8f80bb76d434.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48ET-HG_Gj4gL38r_hPeeJOpG4g=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.259115+00 2025-12-09 10:15:30.25912+00 15394 85008#14码 SPMX-20240815310601 \N \N \N 1 \N [{"file_id": "2fa2437f-4f07-41bb-85a0-557ed466f8a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a30ccc34b0a4b79a12d80fb46f9b780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a30ccc34b0a4b79a12d80fb46f9b780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a30ccc34b0a4b79a12d80fb46f9b780.jpg", "file_size": 17577, "is_delete": false, "file_type": 1, "original_file_name": "85008#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a30ccc34b0a4b79a12d80fb46f9b780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a30ccc34b0a4b79a12d80fb46f9b780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a30ccc34b0a4b79a12d80fb46f9b780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a30ccc34b0a4b79a12d80fb46f9b780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a30ccc34b0a4b79a12d80fb46f9b780.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUMwmoKUAckqauFq-ZxCTKMZONQ=", "createTime": "2024-08-15 14:58:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.261715+00 2025-12-09 10:15:30.261722+00 15395 0006-4FWF#-1黄底黑 SPMX-20240815310602 \N \N \N 1 \N [{"file_id": "d30c5f84-02e4-49e6-99f7-3c2671fa4a31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391cfbda72a7421b838bee53dc962444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391cfbda72a7421b838bee53dc962444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391cfbda72a7421b838bee53dc962444.jpg", "file_size": 10915, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWF#-1黄底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391cfbda72a7421b838bee53dc962444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391cfbda72a7421b838bee53dc962444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391cfbda72a7421b838bee53dc962444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391cfbda72a7421b838bee53dc962444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391cfbda72a7421b838bee53dc962444.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8rpaUI8gA6vOsr_PgBVyvdy_0MI=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.264254+00 2025-12-09 10:15:30.26426+00 15396 LJH1837#白色 SPMX-20240815310612 \N \N \N 1 \N [{"file_id": "d9f7b35b-dd52-4189-bf5b-f3812679d1f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f213d0d02f3144fca9e1cdbe8d79f195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f213d0d02f3144fca9e1cdbe8d79f195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f213d0d02f3144fca9e1cdbe8d79f195.jpg", "file_size": 18142, "is_delete": false, "file_type": 1, "original_file_name": "LJH1837#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f213d0d02f3144fca9e1cdbe8d79f195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f213d0d02f3144fca9e1cdbe8d79f195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f213d0d02f3144fca9e1cdbe8d79f195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f213d0d02f3144fca9e1cdbe8d79f195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f213d0d02f3144fca9e1cdbe8d79f195.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nuOG3kq6bF9xroemWzTwoJEkr7s=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.266805+00 2025-12-09 10:15:30.266811+00 15397 HW461478FWE#L SPMX-20240815310604 \N \N \N 1 \N [{"file_id": "4a6585da-48bc-4944-8eef-defeec27a803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97fd5a7ab128428ebf422857b7e63847.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97fd5a7ab128428ebf422857b7e63847.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97fd5a7ab128428ebf422857b7e63847.jpg", "file_size": 13255, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97fd5a7ab128428ebf422857b7e63847.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97fd5a7ab128428ebf422857b7e63847.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97fd5a7ab128428ebf422857b7e63847.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97fd5a7ab128428ebf422857b7e63847.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97fd5a7ab128428ebf422857b7e63847.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owGUuA33PWta1Dg9icvJp7ZogZM=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.269341+00 2025-12-09 10:15:30.269347+00 15398 CASS-W24#WJC22 SPMX-20240815310609 \N \N \N 1 \N [{"file_id": "fcea776a-314f-493f-85d2-66447e2c51f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6936db120bc4389905336906e5f3ba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6936db120bc4389905336906e5f3ba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6936db120bc4389905336906e5f3ba4.jpg", "file_size": 16743, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6936db120bc4389905336906e5f3ba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6936db120bc4389905336906e5f3ba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6936db120bc4389905336906e5f3ba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6936db120bc4389905336906e5f3ba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6936db120bc4389905336906e5f3ba4.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2s90FDVDuOYf1JK3Lh9F7gXEUVQ=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.271871+00 2025-12-09 10:15:30.271878+00 15399 85008#4码+8码 SPMX-20240815310607 \N \N \N 1 \N [{"file_id": "5517ddec-5fee-48f9-8520-934b12a47929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4164a25a74a4560a3066b979efb1a2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4164a25a74a4560a3066b979efb1a2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4164a25a74a4560a3066b979efb1a2d.jpg", "file_size": 19249, "is_delete": false, "file_type": 1, "original_file_name": "85008#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4164a25a74a4560a3066b979efb1a2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4164a25a74a4560a3066b979efb1a2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4164a25a74a4560a3066b979efb1a2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4164a25a74a4560a3066b979efb1a2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4164a25a74a4560a3066b979efb1a2d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPicbmLzPxSJpiZBK9zUpidPEtA=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.274733+00 2025-12-09 10:15:30.274739+00 15400 LZ1341#童装T4号色 SPMX-20240815310610 \N \N \N 1 \N [{"file_id": "6a31a8de-f35a-468f-b428-f7df5f2018ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6505dbca177e4eccb1aa51152ffeb0d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6505dbca177e4eccb1aa51152ffeb0d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6505dbca177e4eccb1aa51152ffeb0d1.jpg", "file_size": 22313, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505dbca177e4eccb1aa51152ffeb0d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505dbca177e4eccb1aa51152ffeb0d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6505dbca177e4eccb1aa51152ffeb0d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6505dbca177e4eccb1aa51152ffeb0d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6505dbca177e4eccb1aa51152ffeb0d1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PX2FWojrR_6JuGDw2phdgSmCgVA=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.277499+00 2025-12-09 10:15:30.277505+00 15401 23-305#A14-领子4XL SPMX-20240815310606 \N \N \N 1 \N [{"file_id": "8be2ea48-65cf-477d-b6bc-9ecb5345abec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5322611a8960451485a8388c65427a0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5322611a8960451485a8388c65427a0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5322611a8960451485a8388c65427a0b.jpg", "file_size": 14157, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A14-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5322611a8960451485a8388c65427a0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5322611a8960451485a8388c65427a0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5322611a8960451485a8388c65427a0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5322611a8960451485a8388c65427a0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5322611a8960451485a8388c65427a0b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmIQ8k37_uoHTs6sNhPNZfmI1Rs=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.280414+00 2025-12-09 10:15:30.280419+00 15402 1221FWE#粉色2XL SPMX-20240815310603 \N \N \N 1 \N [{"file_id": "5d99483f-805f-4941-bacd-664d02e36903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg", "file_size": 13019, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e810b0d6c9c4b7bb5f5ed7368c70af2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmHiWFD3Sb9BmL6y5B7XDqQQJcY=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.283241+00 2025-12-09 10:15:30.283246+00 15403 HW461478FWE#M SPMX-20240815310614 \N \N \N 1 \N [{"file_id": "4a83b72e-ea7f-4ab6-9b8b-454fcc0aefed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "317fbdb42040426fb0bb0ffd851b0eb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "317fbdb42040426fb0bb0ffd851b0eb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "317fbdb42040426fb0bb0ffd851b0eb8.jpg", "file_size": 13267, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/317fbdb42040426fb0bb0ffd851b0eb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/317fbdb42040426fb0bb0ffd851b0eb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/317fbdb42040426fb0bb0ffd851b0eb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/317fbdb42040426fb0bb0ffd851b0eb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/317fbdb42040426fb0bb0ffd851b0eb8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0m4vcAJ-RzyOpavO5ETOVIRW5fM=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.285802+00 2025-12-09 10:15:30.285807+00 15404 FR10318#补数灰色18码配件 SPMX-20240815310608 \N \N \N 1 \N [{"file_id": "6f66fb09-a540-40d6-b4b3-a996803cdfa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f6e418fa4c14924bde2bb9d0792c535.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f6e418fa4c14924bde2bb9d0792c535.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f6e418fa4c14924bde2bb9d0792c535.jpg", "file_size": 58861, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数灰色18码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e418fa4c14924bde2bb9d0792c535.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e418fa4c14924bde2bb9d0792c535.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f6e418fa4c14924bde2bb9d0792c535.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f6e418fa4c14924bde2bb9d0792c535.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f6e418fa4c14924bde2bb9d0792c535.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AwQCRqNM4GsOri3U29GQnZ5Eb0E=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.288622+00 2025-12-09 10:15:30.288627+00 15405 JTSS625FW#VS-D3 SPMX-20240815310605 \N \N \N 1 \N [{"file_id": "7dd5e3e4-b23a-4ae4-9a22-3d2cc7da581e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0810fefebc5412fa611cb67e8a257df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0810fefebc5412fa611cb67e8a257df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0810fefebc5412fa611cb67e8a257df.jpg", "file_size": 9882, "is_delete": false, "file_type": 1, "original_file_name": "JTSS625FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0810fefebc5412fa611cb67e8a257df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0810fefebc5412fa611cb67e8a257df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0810fefebc5412fa611cb67e8a257df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0810fefebc5412fa611cb67e8a257df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0810fefebc5412fa611cb67e8a257df.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wk9lUWNuh0bggkIGyCKytEPzLcM=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.291585+00 2025-12-09 10:15:30.29159+00 15406 DL31224-1#彩蓝L码前幅烧花 SPMX-20240815310611 \N \N \N 1 \N [{"file_id": "955a96b4-3865-40a0-ae69-8f28c3340463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "307617605d1d43239b15467dd31332af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "307617605d1d43239b15467dd31332af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "307617605d1d43239b15467dd31332af.jpg", "file_size": 16195, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#彩蓝L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307617605d1d43239b15467dd31332af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307617605d1d43239b15467dd31332af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/307617605d1d43239b15467dd31332af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/307617605d1d43239b15467dd31332af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/307617605d1d43239b15467dd31332af.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnkfyVe3GOnUlV0o6Zmd_jeRD-o=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.294471+00 2025-12-09 10:15:30.294478+00 15407 0006-4FWF#咖啡 SPMX-20240815310613 \N \N \N 1 \N [{"file_id": "4a107eb1-d820-4bd0-9233-532854408ef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b88405580114228a0827cf41eadd405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b88405580114228a0827cf41eadd405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b88405580114228a0827cf41eadd405.jpg", "file_size": 9996, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWF#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b88405580114228a0827cf41eadd405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b88405580114228a0827cf41eadd405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b88405580114228a0827cf41eadd405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b88405580114228a0827cf41eadd405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b88405580114228a0827cf41eadd405.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F--8aJcxIEjfPjUzY7NWYwAh6h0=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.297079+00 2025-12-09 10:15:30.297086+00 15408 HW461478FWE#S SPMX-20240815310625 \N \N \N 1 \N [{"file_id": "a8b324b8-d183-4afe-828e-69285ac2e312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfe596c3e2024984a22d0cd2d52e7559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfe596c3e2024984a22d0cd2d52e7559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfe596c3e2024984a22d0cd2d52e7559.jpg", "file_size": 13389, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe596c3e2024984a22d0cd2d52e7559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe596c3e2024984a22d0cd2d52e7559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe596c3e2024984a22d0cd2d52e7559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfe596c3e2024984a22d0cd2d52e7559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfe596c3e2024984a22d0cd2d52e7559.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMQsRU_sylnRMGwE_DJtI0oRgZ8=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.299647+00 2025-12-09 10:15:30.299653+00 15409 FR10318#补数灰色19码配件 SPMX-20240815310618 \N \N \N 1 \N [{"file_id": "0701b26a-6e5b-4138-b696-b44271a63b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10580aef61d1470f993521d697cd72af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10580aef61d1470f993521d697cd72af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10580aef61d1470f993521d697cd72af.jpg", "file_size": 55668, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数灰色19码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10580aef61d1470f993521d697cd72af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10580aef61d1470f993521d697cd72af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10580aef61d1470f993521d697cd72af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10580aef61d1470f993521d697cd72af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10580aef61d1470f993521d697cd72af.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ohy5of2ivkCRp3eTT57cSShDeFU=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.302233+00 2025-12-09 10:15:30.302239+00 15410 LJH1837#绿色 SPMX-20240815310624 \N \N \N 1 \N [{"file_id": "c0e3b83b-ecf0-4738-afc1-80879cc057de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a5df7edd45a43e9bcdfee4332017005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a5df7edd45a43e9bcdfee4332017005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a5df7edd45a43e9bcdfee4332017005.jpg", "file_size": 23221, "is_delete": false, "file_type": 1, "original_file_name": "LJH1837#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5df7edd45a43e9bcdfee4332017005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5df7edd45a43e9bcdfee4332017005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a5df7edd45a43e9bcdfee4332017005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a5df7edd45a43e9bcdfee4332017005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a5df7edd45a43e9bcdfee4332017005.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMoL17y5ChbVkzb9pKvjGeaL1XM=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.304802+00 2025-12-09 10:15:30.304808+00 15411 1221FWE#粉色3XL SPMX-20240815310615 \N \N \N 1 \N [{"file_id": "ba4c979b-a921-4501-a3c4-ee632962be73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a428967b25a40db9386aa0037b3d254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a428967b25a40db9386aa0037b3d254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a428967b25a40db9386aa0037b3d254.jpg", "file_size": 13531, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a428967b25a40db9386aa0037b3d254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a428967b25a40db9386aa0037b3d254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a428967b25a40db9386aa0037b3d254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a428967b25a40db9386aa0037b3d254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a428967b25a40db9386aa0037b3d254.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6PcvH7UKZXHDBmeLA-TY3j8TRc=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.307357+00 2025-12-09 10:15:30.307363+00 15412 JTSS627FW#VS-D3 SPMX-20240815310627 \N \N \N 1 \N [{"file_id": "f88492ac-dfa2-4685-98ae-94de2d661189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecd89790f46247e6b150bc831a5d6b71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecd89790f46247e6b150bc831a5d6b71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecd89790f46247e6b150bc831a5d6b71.jpg", "file_size": 19936, "is_delete": false, "file_type": 1, "original_file_name": "JTSS627FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd89790f46247e6b150bc831a5d6b71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd89790f46247e6b150bc831a5d6b71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecd89790f46247e6b150bc831a5d6b71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecd89790f46247e6b150bc831a5d6b71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecd89790f46247e6b150bc831a5d6b71.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRn0ASCyKjjruJMHhRyHflgW_RU=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.309911+00 2025-12-09 10:15:30.309917+00 15413 0006-4FWF#黑白 SPMX-20240815310623 \N \N \N 1 \N [{"file_id": "edacc8b0-a379-412e-99ac-7d90787fbfb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "162a03149f03450c8b19c780e6ef8ec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "162a03149f03450c8b19c780e6ef8ec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "162a03149f03450c8b19c780e6ef8ec2.jpg", "file_size": 10529, "is_delete": false, "file_type": 1, "original_file_name": "0006-4FWF#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162a03149f03450c8b19c780e6ef8ec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162a03149f03450c8b19c780e6ef8ec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162a03149f03450c8b19c780e6ef8ec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/162a03149f03450c8b19c780e6ef8ec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/162a03149f03450c8b19c780e6ef8ec2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ftnHL2bFB_m7R9jI_p41qAqWSw=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.312462+00 2025-12-09 10:15:30.312468+00 15414 LZ1341#童装T5号色 SPMX-20240815310622 \N \N \N 1 \N [{"file_id": "5285cb9b-fc5d-4a97-93ee-f888e19f64ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "790aba48ca5e435f8f975d44f4e2265a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "790aba48ca5e435f8f975d44f4e2265a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "790aba48ca5e435f8f975d44f4e2265a.jpg", "file_size": 20290, "is_delete": false, "file_type": 1, "original_file_name": "LZ1341#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790aba48ca5e435f8f975d44f4e2265a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790aba48ca5e435f8f975d44f4e2265a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790aba48ca5e435f8f975d44f4e2265a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/790aba48ca5e435f8f975d44f4e2265a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/790aba48ca5e435f8f975d44f4e2265a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lsWWHsaOu9SbSy-fXJc7dDxZpN0=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.31478+00 2025-12-09 10:15:30.314786+00 15415 JTSS626FW#VS-D3 SPMX-20240815310616 \N \N \N 1 \N [{"file_id": "ca5e4370-7eb6-4c82-b106-2ddf64107059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bd92649fc1849d1991e94f9b42afeea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bd92649fc1849d1991e94f9b42afeea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bd92649fc1849d1991e94f9b42afeea.jpg", "file_size": 19534, "is_delete": false, "file_type": 1, "original_file_name": "JTSS626FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd92649fc1849d1991e94f9b42afeea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd92649fc1849d1991e94f9b42afeea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bd92649fc1849d1991e94f9b42afeea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bd92649fc1849d1991e94f9b42afeea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bd92649fc1849d1991e94f9b42afeea.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1kwPM5oN1wOhyz_4WjB1IiPxHw=", "createTime": "2024-08-15 14:58:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.317338+00 2025-12-09 10:15:30.317344+00 15416 1221FWE#粉色4XL SPMX-20240815310626 \N \N \N 1 \N [{"file_id": "89d0eccc-6b1f-406b-a73f-e689ac80f710", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "850646b1c9b24b08ad0b54320268353a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "850646b1c9b24b08ad0b54320268353a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "850646b1c9b24b08ad0b54320268353a.jpg", "file_size": 8260, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850646b1c9b24b08ad0b54320268353a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850646b1c9b24b08ad0b54320268353a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/850646b1c9b24b08ad0b54320268353a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/850646b1c9b24b08ad0b54320268353a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/850646b1c9b24b08ad0b54320268353a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AFok9JPkO0APZzBTiw7k9xXw_BM=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.31987+00 2025-12-09 10:15:30.319876+00 15417 85008#乱花 SPMX-20240815310628 \N \N \N 1 \N [{"file_id": "685a6318-337e-476c-b4af-b6c9b57a567d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60e6c4927ca54a93afae31dcf3bc69a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60e6c4927ca54a93afae31dcf3bc69a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60e6c4927ca54a93afae31dcf3bc69a2.jpg", "file_size": 5201, "is_delete": false, "file_type": 1, "original_file_name": "85008#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e6c4927ca54a93afae31dcf3bc69a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e6c4927ca54a93afae31dcf3bc69a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e6c4927ca54a93afae31dcf3bc69a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60e6c4927ca54a93afae31dcf3bc69a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60e6c4927ca54a93afae31dcf3bc69a2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xiXVCuTi-bErzvMZao8DeSluNQ4=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.322453+00 2025-12-09 10:15:30.322459+00 15418 85008#6码 SPMX-20240815310617 \N \N \N 1 \N [{"file_id": "45dd9841-c4d5-4e6f-a52b-3dffbaccae08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbe7d9e7f8684d35b4bd853a75d15dd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbe7d9e7f8684d35b4bd853a75d15dd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbe7d9e7f8684d35b4bd853a75d15dd1.jpg", "file_size": 18602, "is_delete": false, "file_type": 1, "original_file_name": "85008#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe7d9e7f8684d35b4bd853a75d15dd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe7d9e7f8684d35b4bd853a75d15dd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbe7d9e7f8684d35b4bd853a75d15dd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbe7d9e7f8684d35b4bd853a75d15dd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbe7d9e7f8684d35b4bd853a75d15dd1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qZx0SnDohXbg82VJGhV9kg9NQY=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.32495+00 2025-12-09 10:15:30.324956+00 15419 CASS-W25#WJC22 SPMX-20240815310619 \N \N \N 1 \N [{"file_id": "6495430d-a87f-4023-862d-4e97c57a6f39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8f2de75c3b4b509c1460ee3fa37f87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8f2de75c3b4b509c1460ee3fa37f87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8f2de75c3b4b509c1460ee3fa37f87.jpg", "file_size": 12159, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W25#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8f2de75c3b4b509c1460ee3fa37f87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8f2de75c3b4b509c1460ee3fa37f87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8f2de75c3b4b509c1460ee3fa37f87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8f2de75c3b4b509c1460ee3fa37f87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8f2de75c3b4b509c1460ee3fa37f87.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGV-40GuYfGjBU8_kEdM-2Qq8zQ=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.327506+00 2025-12-09 10:15:30.327512+00 15420 DL31224-1#彩蓝XL码前幅烧花 SPMX-20240815310620 \N \N \N 1 \N [{"file_id": "789d7558-8fa6-4c82-83c1-69f1f8eb2b24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "400db39c02e0432f9ec3b5f1dc824c62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "400db39c02e0432f9ec3b5f1dc824c62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "400db39c02e0432f9ec3b5f1dc824c62.jpg", "file_size": 16331, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#彩蓝XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400db39c02e0432f9ec3b5f1dc824c62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400db39c02e0432f9ec3b5f1dc824c62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/400db39c02e0432f9ec3b5f1dc824c62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/400db39c02e0432f9ec3b5f1dc824c62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/400db39c02e0432f9ec3b5f1dc824c62.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBFAwgEQSgKPKSICpx6rQoTm35c=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.330014+00 2025-12-09 10:15:30.33002+00 15421 23-305#A15-3XL SPMX-20240815310621 \N \N \N 1 \N [{"file_id": "1f11a381-5d72-4f26-a731-833524eb020d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5255dbf3770f41698ea948b6271168f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5255dbf3770f41698ea948b6271168f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5255dbf3770f41698ea948b6271168f2.jpg", "file_size": 25139, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A15-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5255dbf3770f41698ea948b6271168f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5255dbf3770f41698ea948b6271168f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5255dbf3770f41698ea948b6271168f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5255dbf3770f41698ea948b6271168f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5255dbf3770f41698ea948b6271168f2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7TjpDI9DNm8_XumLQi5NR1zDV8=", "createTime": "2024-08-15 14:58:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.332505+00 2025-12-09 10:15:30.332511+00 15422 FR10318#补数灰色20码配件 SPMX-20240815310629 \N \N \N 1 \N [{"file_id": "6d5a5208-4e0f-450c-a899-e4d32b10a961", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b564c69ff7c64cb3abc93f57f813c52f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b564c69ff7c64cb3abc93f57f813c52f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b564c69ff7c64cb3abc93f57f813c52f.jpg", "file_size": 56788, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数灰色20码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b564c69ff7c64cb3abc93f57f813c52f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b564c69ff7c64cb3abc93f57f813c52f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b564c69ff7c64cb3abc93f57f813c52f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b564c69ff7c64cb3abc93f57f813c52f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b564c69ff7c64cb3abc93f57f813c52f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKhqTUzxeyuO9Hdh6vypLHqN1_Y=", "createTime": "2024-08-15 14:58:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.334844+00 2025-12-09 10:15:30.334851+00 15423 DL31224-1#彩蓝袖子定位裁 SPMX-20240815310630 \N \N \N 1 \N [{"file_id": "74c213ad-d8a4-487d-8015-0e25deee983e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "018b72c63a2f4763af563d6d3c0e47f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "018b72c63a2f4763af563d6d3c0e47f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "018b72c63a2f4763af563d6d3c0e47f5.jpg", "file_size": 12538, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#彩蓝袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018b72c63a2f4763af563d6d3c0e47f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018b72c63a2f4763af563d6d3c0e47f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/018b72c63a2f4763af563d6d3c0e47f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/018b72c63a2f4763af563d6d3c0e47f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/018b72c63a2f4763af563d6d3c0e47f5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yM6q0ujhbKSV5ComqofiNzAxMhI=", "createTime": "2024-08-15 14:58:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.337266+00 2025-12-09 10:15:30.337273+00 15424 JTSS628FW#VS-D3 SPMX-20240815310637 \N \N \N 1 \N [{"file_id": "c43310a3-b226-44b7-951a-956d6c621f84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c3935cb379e45b29cd5b7e24b4ab4b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c3935cb379e45b29cd5b7e24b4ab4b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c3935cb379e45b29cd5b7e24b4ab4b2.jpg", "file_size": 17310, "is_delete": false, "file_type": 1, "original_file_name": "JTSS628FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3935cb379e45b29cd5b7e24b4ab4b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3935cb379e45b29cd5b7e24b4ab4b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3935cb379e45b29cd5b7e24b4ab4b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c3935cb379e45b29cd5b7e24b4ab4b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c3935cb379e45b29cd5b7e24b4ab4b2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5orN4HQYDv6RCpUD4XR6aIncOo=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.339772+00 2025-12-09 10:15:30.339779+00 15425 CASS-W3#WJC22 SPMX-20240815310636 \N \N \N 1 \N [{"file_id": "5f67487b-e6cd-4851-ab7d-f8f70a75c20c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e801ff69f15a40acb3d4bd77d10d3e80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e801ff69f15a40acb3d4bd77d10d3e80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e801ff69f15a40acb3d4bd77d10d3e80.jpg", "file_size": 17675, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e801ff69f15a40acb3d4bd77d10d3e80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e801ff69f15a40acb3d4bd77d10d3e80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e801ff69f15a40acb3d4bd77d10d3e80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e801ff69f15a40acb3d4bd77d10d3e80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e801ff69f15a40acb3d4bd77d10d3e80.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oPbe98NbW9-d3Xnp6VQ5FIR_-Bk=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.342317+00 2025-12-09 10:15:30.342322+00 15426 LJH1837#黑色 SPMX-20240815310632 \N \N \N 1 \N [{"file_id": "95025f6b-0db0-4d7b-a57c-87c513bf16e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c66a7322ab0f4a178c60efd88822f14f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c66a7322ab0f4a178c60efd88822f14f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c66a7322ab0f4a178c60efd88822f14f.jpg", "file_size": 18140, "is_delete": false, "file_type": 1, "original_file_name": "LJH1837#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c66a7322ab0f4a178c60efd88822f14f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c66a7322ab0f4a178c60efd88822f14f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c66a7322ab0f4a178c60efd88822f14f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c66a7322ab0f4a178c60efd88822f14f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c66a7322ab0f4a178c60efd88822f14f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trdqgyz7Iz3XFaaPSaGjmRjTzDw=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.344878+00 2025-12-09 10:15:30.344883+00 15427 LZ1342#上身1号色 SPMX-20240815310631 \N \N \N 1 \N [{"file_id": "81e524cb-9ece-44f3-8106-ce047e1ca98e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c6769ee55f4d7397e9a9665c73cb28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c6769ee55f4d7397e9a9665c73cb28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c6769ee55f4d7397e9a9665c73cb28.jpg", "file_size": 17709, "is_delete": false, "file_type": 1, "original_file_name": "LZ1342#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c6769ee55f4d7397e9a9665c73cb28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c6769ee55f4d7397e9a9665c73cb28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c6769ee55f4d7397e9a9665c73cb28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c6769ee55f4d7397e9a9665c73cb28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c6769ee55f4d7397e9a9665c73cb28.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgMVxnC5dVOUnvKmJ64w5ZrqL60=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.34746+00 2025-12-09 10:15:30.347465+00 15428 23-305#A15-4XL SPMX-20240815310633 \N \N \N 1 \N [{"file_id": "06e7c481-8aa0-45e3-878a-d0abc0a399ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bd46ae17ef64eaf8333c892e3c5b3e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bd46ae17ef64eaf8333c892e3c5b3e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bd46ae17ef64eaf8333c892e3c5b3e2.jpg", "file_size": 23375, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A15-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd46ae17ef64eaf8333c892e3c5b3e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd46ae17ef64eaf8333c892e3c5b3e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd46ae17ef64eaf8333c892e3c5b3e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bd46ae17ef64eaf8333c892e3c5b3e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bd46ae17ef64eaf8333c892e3c5b3e2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZ1QOx2HdbCq2htL4mMDXVTkE8A=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.350042+00 2025-12-09 10:15:30.350047+00 15429 HW461478FWE#XL SPMX-20240815310634 \N \N \N 1 \N [{"file_id": "2af52a85-a29e-410a-acdb-ebe337d49470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4d2bff655f84021ae651f4eb71a6854.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4d2bff655f84021ae651f4eb71a6854.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4d2bff655f84021ae651f4eb71a6854.jpg", "file_size": 12828, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d2bff655f84021ae651f4eb71a6854.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d2bff655f84021ae651f4eb71a6854.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d2bff655f84021ae651f4eb71a6854.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4d2bff655f84021ae651f4eb71a6854.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4d2bff655f84021ae651f4eb71a6854.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zomBiGSR_jzjgKJWBvkTCAxMSIg=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.352628+00 2025-12-09 10:15:30.352633+00 15430 0006-50FWE#浅灰VS-D3 SPMX-20240815310635 \N \N \N 1 \N [{"file_id": "59c67cc2-1a0c-4ebf-b0a9-8a4ab8928618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2deb2f13efb44fb3acb67cbb5cc214d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2deb2f13efb44fb3acb67cbb5cc214d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2deb2f13efb44fb3acb67cbb5cc214d8.jpg", "file_size": 11792, "is_delete": false, "file_type": 1, "original_file_name": "0006-50FWE#浅灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deb2f13efb44fb3acb67cbb5cc214d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deb2f13efb44fb3acb67cbb5cc214d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2deb2f13efb44fb3acb67cbb5cc214d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2deb2f13efb44fb3acb67cbb5cc214d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2deb2f13efb44fb3acb67cbb5cc214d8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avcbnetMI_ZscbChmPfCpSGC7iE=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.355258+00 2025-12-09 10:15:30.355264+00 15431 DL31224-1#浅粉2XL码前幅烧花 SPMX-20240815310638 \N \N \N 1 \N [{"file_id": "bc881680-1a51-4e2c-b5d3-6fb9447ade68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2ab9abb68464fb882b29b9ce5a25707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2ab9abb68464fb882b29b9ce5a25707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2ab9abb68464fb882b29b9ce5a25707.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#浅粉2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ab9abb68464fb882b29b9ce5a25707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ab9abb68464fb882b29b9ce5a25707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ab9abb68464fb882b29b9ce5a25707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2ab9abb68464fb882b29b9ce5a25707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2ab9abb68464fb882b29b9ce5a25707.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:871xU7G2n1_Mgc8WlDWauOQ4R7g=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.35769+00 2025-12-09 10:15:30.357696+00 15432 85009#10码+12码 SPMX-20240815310640 \N \N \N 1 \N [{"file_id": "c32e53c0-536b-4bfe-9984-5cf9ddd35890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a97844629f3e4b369d567a3bfc2aa8da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a97844629f3e4b369d567a3bfc2aa8da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a97844629f3e4b369d567a3bfc2aa8da.jpg", "file_size": 19450, "is_delete": false, "file_type": 1, "original_file_name": "85009#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97844629f3e4b369d567a3bfc2aa8da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97844629f3e4b369d567a3bfc2aa8da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a97844629f3e4b369d567a3bfc2aa8da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a97844629f3e4b369d567a3bfc2aa8da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a97844629f3e4b369d567a3bfc2aa8da.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:loGbTzvh-t2ZnfXReYilMRlxCPc=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.360034+00 2025-12-09 10:15:30.36004+00 15433 1221FWE#粉色L SPMX-20240815310639 \N \N \N 1 \N [{"file_id": "140f6614-f204-447c-80a0-310cbd55da04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7b1ed66f36e4868b5cc5d354fb27c74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7b1ed66f36e4868b5cc5d354fb27c74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7b1ed66f36e4868b5cc5d354fb27c74.jpg", "file_size": 12067, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1ed66f36e4868b5cc5d354fb27c74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1ed66f36e4868b5cc5d354fb27c74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1ed66f36e4868b5cc5d354fb27c74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7b1ed66f36e4868b5cc5d354fb27c74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7b1ed66f36e4868b5cc5d354fb27c74.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVbQTkwkNJ-ezC7jZIQoV1KTFbw=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.363014+00 2025-12-09 10:15:30.363021+00 15434 LZ1342#上身2号色 SPMX-20240815310642 \N \N \N 1 \N [{"file_id": "838e91af-b39c-4e4f-884a-94c4ea759cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b06303ff439438cb2caf1cf3f0b05bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b06303ff439438cb2caf1cf3f0b05bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b06303ff439438cb2caf1cf3f0b05bf.jpg", "file_size": 18173, "is_delete": false, "file_type": 1, "original_file_name": "LZ1342#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b06303ff439438cb2caf1cf3f0b05bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b06303ff439438cb2caf1cf3f0b05bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b06303ff439438cb2caf1cf3f0b05bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b06303ff439438cb2caf1cf3f0b05bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b06303ff439438cb2caf1cf3f0b05bf.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNylQUFgl5L-LhUaW1ZAM06tHgk=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.366048+00 2025-12-09 10:15:30.366054+00 15435 FR10318#补数蓝色17码配件 SPMX-20240815310641 \N \N \N 1 \N [{"file_id": "e0146baa-321a-4b15-a5dc-90a9543e700e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2e647a3da34fa8be9a5726bcec2b3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2e647a3da34fa8be9a5726bcec2b3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2e647a3da34fa8be9a5726bcec2b3f.jpg", "file_size": 64774, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数蓝色17码配件.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2e647a3da34fa8be9a5726bcec2b3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2e647a3da34fa8be9a5726bcec2b3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2e647a3da34fa8be9a5726bcec2b3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2e647a3da34fa8be9a5726bcec2b3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2e647a3da34fa8be9a5726bcec2b3f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u2WwwDhgeL8veu8Gaw_oiBDljCY=", "createTime": "2024-08-15 14:58:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.36962+00 2025-12-09 10:15:30.369626+00 15436 LJH1839#1号色 SPMX-20240815310646 \N \N \N 1 \N [{"file_id": "393a333c-3a1b-42f5-ba99-fefd85fa195a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36b57859daab407ca8eb50561ab0af79.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36b57859daab407ca8eb50561ab0af79.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36b57859daab407ca8eb50561ab0af79.bmp", "file_size": 42509, "is_delete": false, "file_type": 1, "original_file_name": "LJH1839#1号色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b57859daab407ca8eb50561ab0af79.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b57859daab407ca8eb50561ab0af79.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b57859daab407ca8eb50561ab0af79.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36b57859daab407ca8eb50561ab0af79.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36b57859daab407ca8eb50561ab0af79.bmp?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DZACVM14TKfaESaLbwc0oCllek=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.372408+00 2025-12-09 10:15:30.372412+00 15437 23-305#A15-领子3XL SPMX-20240815310644 \N \N \N 1 \N [{"file_id": "8fee30aa-85bc-44a4-9b6e-e492f9b6af4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ed96c5abc864fd2b90343009674c22a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ed96c5abc864fd2b90343009674c22a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ed96c5abc864fd2b90343009674c22a.jpg", "file_size": 13836, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A15-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed96c5abc864fd2b90343009674c22a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed96c5abc864fd2b90343009674c22a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ed96c5abc864fd2b90343009674c22a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ed96c5abc864fd2b90343009674c22a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ed96c5abc864fd2b90343009674c22a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aD0Mn8jrExSu9VQX9WuZCzsXVKo=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.375137+00 2025-12-09 10:15:30.375142+00 15438 CASS-W4#WJC22 SPMX-20240815310645 \N \N \N 1 \N [{"file_id": "dbbb49f0-c70b-4ead-ab1d-fde7e9bf3950", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "853798ca8a154432a3f8ef5fe5c9fa15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "853798ca8a154432a3f8ef5fe5c9fa15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "853798ca8a154432a3f8ef5fe5c9fa15.jpg", "file_size": 11423, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W4#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853798ca8a154432a3f8ef5fe5c9fa15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853798ca8a154432a3f8ef5fe5c9fa15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/853798ca8a154432a3f8ef5fe5c9fa15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/853798ca8a154432a3f8ef5fe5c9fa15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/853798ca8a154432a3f8ef5fe5c9fa15.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlqhLdNvFatfZG-oAmMkgQXKVVU=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.377771+00 2025-12-09 10:15:30.377776+00 15439 HW461478FWE#匹布 SPMX-20240815310643 \N \N \N 1 \N [{"file_id": "338ac0eb-6e3c-4dd3-8618-4e93fc1b9082", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2940d10017ec4c38ae134b9231e1b247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2940d10017ec4c38ae134b9231e1b247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2940d10017ec4c38ae134b9231e1b247.jpg", "file_size": 3653, "is_delete": false, "file_type": 1, "original_file_name": "HW461478FWE#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940d10017ec4c38ae134b9231e1b247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940d10017ec4c38ae134b9231e1b247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2940d10017ec4c38ae134b9231e1b247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2940d10017ec4c38ae134b9231e1b247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2940d10017ec4c38ae134b9231e1b247.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IWFSF8ghbQJqdOjTsnWXtDX0KZE=", "createTime": "2024-08-15 14:58:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.380319+00 2025-12-09 10:15:30.380324+00 15440 LJH1839#3号色 SPMX-20240815310655 \N \N \N 1 \N [{"file_id": "39a2c4f9-6a56-4c4f-955d-0b9673b0b293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "518f5330a64e4010849f76c2d4f7367d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "518f5330a64e4010849f76c2d4f7367d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "518f5330a64e4010849f76c2d4f7367d.jpg", "file_size": 41099, "is_delete": false, "file_type": 1, "original_file_name": "LJH1839#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/518f5330a64e4010849f76c2d4f7367d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/518f5330a64e4010849f76c2d4f7367d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/518f5330a64e4010849f76c2d4f7367d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/518f5330a64e4010849f76c2d4f7367d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/518f5330a64e4010849f76c2d4f7367d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3H6Gc2uaAayddCpiIBCSHYNye4=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.382726+00 2025-12-09 10:15:30.382731+00 15441 FR10318#补数蓝色净色 SPMX-20240815310650 \N \N \N 1 \N [{"file_id": "c246d962-257c-4ba1-91a1-e79e756ca24b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b9ee216097a4575b625168577b3cc2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b9ee216097a4575b625168577b3cc2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b9ee216097a4575b625168577b3cc2a.jpg", "file_size": 14461, "is_delete": false, "file_type": 1, "original_file_name": "FR10318#补数蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee216097a4575b625168577b3cc2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee216097a4575b625168577b3cc2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee216097a4575b625168577b3cc2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee216097a4575b625168577b3cc2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b9ee216097a4575b625168577b3cc2a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wuQO9re59mzOwPp_4pPmhCFESqs=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.385128+00 2025-12-09 10:15:30.385132+00 15442 LZ1342#上身3号色 SPMX-20240815310653 \N \N \N 1 \N [{"file_id": "b6fa2336-c5b8-4c38-a5c5-60da325b7d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "380412b393dd4a19b04bf726ea2b780e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "380412b393dd4a19b04bf726ea2b780e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "380412b393dd4a19b04bf726ea2b780e.jpg", "file_size": 18211, "is_delete": false, "file_type": 1, "original_file_name": "LZ1342#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/380412b393dd4a19b04bf726ea2b780e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/380412b393dd4a19b04bf726ea2b780e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/380412b393dd4a19b04bf726ea2b780e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/380412b393dd4a19b04bf726ea2b780e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/380412b393dd4a19b04bf726ea2b780e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vo4RtgUpYtboBopq7ksVROXOyQM=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.387478+00 2025-12-09 10:15:30.387482+00 15443 DL31224-1#浅粉L码前幅烧花 SPMX-20240815310649 \N \N \N 1 \N [{"file_id": "7fc89bb4-2fef-4844-8ae6-1cc358238d62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ceda68f0b2642f6aa1804bbc98e61c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ceda68f0b2642f6aa1804bbc98e61c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ceda68f0b2642f6aa1804bbc98e61c5.jpg", "file_size": 15735, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#浅粉L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ceda68f0b2642f6aa1804bbc98e61c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ceda68f0b2642f6aa1804bbc98e61c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ceda68f0b2642f6aa1804bbc98e61c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ceda68f0b2642f6aa1804bbc98e61c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ceda68f0b2642f6aa1804bbc98e61c5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xSLYQQrUBOJ_lf8gWCzYKXY0fbY=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.389819+00 2025-12-09 10:15:30.389822+00 15444 0006-50FWE#深灰VS-D3 SPMX-20240815310647 \N \N \N 1 \N [{"file_id": "3697db35-fc56-4e81-96cf-28cee08864e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8603af7571a84e33a858ddde2c1019c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8603af7571a84e33a858ddde2c1019c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8603af7571a84e33a858ddde2c1019c7.jpg", "file_size": 16494, "is_delete": false, "file_type": 1, "original_file_name": "0006-50FWE#深灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8603af7571a84e33a858ddde2c1019c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8603af7571a84e33a858ddde2c1019c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8603af7571a84e33a858ddde2c1019c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8603af7571a84e33a858ddde2c1019c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8603af7571a84e33a858ddde2c1019c7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJfMol9GgelRrR8ap2JCSS4U3IE=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.391929+00 2025-12-09 10:15:30.391933+00 15445 JTSS629FW#VS-D3 SPMX-20240815310648 \N \N \N 1 \N [{"file_id": "2bf19c1f-24cc-439b-ad88-570cbe24358e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbafbd43a0d240838bd95a7df9574788.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbafbd43a0d240838bd95a7df9574788.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbafbd43a0d240838bd95a7df9574788.jpg", "file_size": 24372, "is_delete": false, "file_type": 1, "original_file_name": "JTSS629FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbafbd43a0d240838bd95a7df9574788.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbafbd43a0d240838bd95a7df9574788.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbafbd43a0d240838bd95a7df9574788.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbafbd43a0d240838bd95a7df9574788.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbafbd43a0d240838bd95a7df9574788.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hpg1VBJDPIcJAOHWzJRWKPlaPMg=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.394071+00 2025-12-09 10:15:30.394075+00 15446 CASS-W5#WJC22 SPMX-20240815310651 \N \N \N 1 \N [{"file_id": "053943b3-5689-4163-9e87-be1774cdfe8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60589ea1203b4d0c8d0b0a78e03bf0a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60589ea1203b4d0c8d0b0a78e03bf0a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60589ea1203b4d0c8d0b0a78e03bf0a1.jpg", "file_size": 17793, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60589ea1203b4d0c8d0b0a78e03bf0a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60589ea1203b4d0c8d0b0a78e03bf0a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60589ea1203b4d0c8d0b0a78e03bf0a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60589ea1203b4d0c8d0b0a78e03bf0a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60589ea1203b4d0c8d0b0a78e03bf0a1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnykLwgQCal4WIVS6-gxgHEGRs4=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.396237+00 2025-12-09 10:15:30.396241+00 15447 23-305#A15-领子4XL SPMX-20240815310652 \N \N \N 1 \N [{"file_id": "dce09f77-ff42-4675-9832-3115f48e4e0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d8330ce941248cfac3359dc083a6571.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d8330ce941248cfac3359dc083a6571.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d8330ce941248cfac3359dc083a6571.jpg", "file_size": 13864, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A15-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8330ce941248cfac3359dc083a6571.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8330ce941248cfac3359dc083a6571.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8330ce941248cfac3359dc083a6571.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d8330ce941248cfac3359dc083a6571.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d8330ce941248cfac3359dc083a6571.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5C1BmCrWx6AArYn9l63iYIECZ4=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.398848+00 2025-12-09 10:15:30.398852+00 15448 1221FWE#粉色XL SPMX-20240815310654 \N \N \N 1 \N [{"file_id": "173605ee-4ded-43a3-b3cc-0153bb9fd00d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fd76098a99349cb9465eabcccad78c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fd76098a99349cb9465eabcccad78c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fd76098a99349cb9465eabcccad78c5.jpg", "file_size": 12517, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd76098a99349cb9465eabcccad78c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd76098a99349cb9465eabcccad78c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fd76098a99349cb9465eabcccad78c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fd76098a99349cb9465eabcccad78c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fd76098a99349cb9465eabcccad78c5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h0jNW1On7JnlXpE3upjnRH7sVXE=", "createTime": "2024-08-15 14:58:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.401397+00 2025-12-09 10:15:30.401402+00 15449 JTSS630FW#VS-D3 SPMX-20240815310658 \N \N \N 1 \N [{"file_id": "92500832-2c93-4e2a-a3fb-562474b0e1df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3eef0842b3e4907839f1b6ba07a6d99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3eef0842b3e4907839f1b6ba07a6d99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3eef0842b3e4907839f1b6ba07a6d99.jpg", "file_size": 7879, "is_delete": false, "file_type": 1, "original_file_name": "JTSS630FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eef0842b3e4907839f1b6ba07a6d99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eef0842b3e4907839f1b6ba07a6d99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3eef0842b3e4907839f1b6ba07a6d99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3eef0842b3e4907839f1b6ba07a6d99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3eef0842b3e4907839f1b6ba07a6d99.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIyk1ezGEG4efiVOI6D7pnsL74U=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.403834+00 2025-12-09 10:15:30.403838+00 15450 85009#14码 SPMX-20240815310657 \N \N \N 1 \N [{"file_id": "c57efc1d-8a79-456b-837e-0a28bcc57ff6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18c2a1aadfba43c299eca43dd3ae7be9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18c2a1aadfba43c299eca43dd3ae7be9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18c2a1aadfba43c299eca43dd3ae7be9.jpg", "file_size": 18504, "is_delete": false, "file_type": 1, "original_file_name": "85009#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c2a1aadfba43c299eca43dd3ae7be9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c2a1aadfba43c299eca43dd3ae7be9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c2a1aadfba43c299eca43dd3ae7be9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18c2a1aadfba43c299eca43dd3ae7be9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18c2a1aadfba43c299eca43dd3ae7be9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FiFU8aKAUnpNuEJgldPju-dKHG4=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.40633+00 2025-12-09 10:15:30.406334+00 15451 1221FWE#粉色下摆定位 SPMX-20240815310664 \N \N \N 1 \N [{"file_id": "2331465e-e314-4f67-901a-9ee3f9b82487", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fa134e4065f43f6b429ccd500609846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fa134e4065f43f6b429ccd500609846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fa134e4065f43f6b429ccd500609846.jpg", "file_size": 15676, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fa134e4065f43f6b429ccd500609846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fa134e4065f43f6b429ccd500609846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fa134e4065f43f6b429ccd500609846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fa134e4065f43f6b429ccd500609846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fa134e4065f43f6b429ccd500609846.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIRVqQb90O1h0eUtg-a459d_Sco=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.408735+00 2025-12-09 10:15:30.408739+00 15452 DL31224-1#浅粉XL码前幅烧花 SPMX-20240815310659 \N \N \N 1 \N [{"file_id": "88fb309a-9eb6-4537-a582-24d1fdeabf6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "907b0d393fae414f80ad10415ad9a572.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "907b0d393fae414f80ad10415ad9a572.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "907b0d393fae414f80ad10415ad9a572.jpg", "file_size": 15894, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#浅粉XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907b0d393fae414f80ad10415ad9a572.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907b0d393fae414f80ad10415ad9a572.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907b0d393fae414f80ad10415ad9a572.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/907b0d393fae414f80ad10415ad9a572.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/907b0d393fae414f80ad10415ad9a572.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hZ_pdyLbVI4R5pf31RGP5lEn7E=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.411045+00 2025-12-09 10:15:30.411049+00 15453 23-305#A16-3XL SPMX-20240815310662 \N \N \N 1 \N [{"file_id": "6b7718da-976b-4454-891d-0cf71a92032c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce7238d65ef64a56bdbd1f4f726e5766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce7238d65ef64a56bdbd1f4f726e5766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce7238d65ef64a56bdbd1f4f726e5766.jpg", "file_size": 19836, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A16-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7238d65ef64a56bdbd1f4f726e5766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7238d65ef64a56bdbd1f4f726e5766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7238d65ef64a56bdbd1f4f726e5766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce7238d65ef64a56bdbd1f4f726e5766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce7238d65ef64a56bdbd1f4f726e5766.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o3j6DMFahXFAHff0TN_RcnshP74=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.413136+00 2025-12-09 10:15:30.41314+00 15454 CASS-W6#WJC22 SPMX-20240815310665 \N \N \N 1 \N [{"file_id": "c779d2b2-9242-4a9a-ab09-c4082a90edb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a0e0de1c26b4d909efdbade070fb90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a0e0de1c26b4d909efdbade070fb90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a0e0de1c26b4d909efdbade070fb90e.jpg", "file_size": 12926, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0e0de1c26b4d909efdbade070fb90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0e0de1c26b4d909efdbade070fb90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a0e0de1c26b4d909efdbade070fb90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a0e0de1c26b4d909efdbade070fb90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a0e0de1c26b4d909efdbade070fb90e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGZAbAg-Fw9pUzMJ0NAE3Kt4Wko=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.41539+00 2025-12-09 10:15:30.415396+00 15455 LJH1839#4号色 SPMX-20240815310666 \N \N \N 1 \N [{"file_id": "5144c857-efec-4cb7-a006-1bbab25ea7f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e3fdfc67894698864017d267ac5c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e3fdfc67894698864017d267ac5c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e3fdfc67894698864017d267ac5c72.jpg", "file_size": 41930, "is_delete": false, "file_type": 1, "original_file_name": "LJH1839#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e3fdfc67894698864017d267ac5c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e3fdfc67894698864017d267ac5c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e3fdfc67894698864017d267ac5c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e3fdfc67894698864017d267ac5c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e3fdfc67894698864017d267ac5c72.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-XJjZqwaLeJbhvVuUZFuVvIo7s=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.417832+00 2025-12-09 10:15:30.417836+00 15456 HW461608FWE#VS-D3 SPMX-20240815310656 \N \N \N 1 \N [{"file_id": "31178307-82fe-45a1-8dcd-ef88d4bb616a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e61d73d491094fba8d482913bfc24508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e61d73d491094fba8d482913bfc24508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e61d73d491094fba8d482913bfc24508.jpg", "file_size": 29509, "is_delete": false, "file_type": 1, "original_file_name": "HW461608FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d73d491094fba8d482913bfc24508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d73d491094fba8d482913bfc24508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e61d73d491094fba8d482913bfc24508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e61d73d491094fba8d482913bfc24508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e61d73d491094fba8d482913bfc24508.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEaDDgouJPCYlldJcIF65ZAbTVc=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.420221+00 2025-12-09 10:15:30.420226+00 15457 FR10318¥主色配件17码 SPMX-20240815310661 \N \N \N 1 \N [{"file_id": "73c2038d-5c35-4b7a-a059-3502bacf5af9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81d2a714b7864d7da1558764b94babfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81d2a714b7864d7da1558764b94babfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81d2a714b7864d7da1558764b94babfd.jpg", "file_size": 49687, "is_delete": false, "file_type": 1, "original_file_name": "FR10318¥主色配件17码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d2a714b7864d7da1558764b94babfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d2a714b7864d7da1558764b94babfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81d2a714b7864d7da1558764b94babfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81d2a714b7864d7da1558764b94babfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81d2a714b7864d7da1558764b94babfd.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RhkIHeRO7TD24xi2R9ZXWfonMLw=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.422348+00 2025-12-09 10:15:30.422352+00 15458 HW463423FWE#VS-D3 SPMX-20240815310668 \N \N \N 1 \N [{"file_id": "2e302d91-9d5f-43e5-ba2b-c8c507cf7f64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f6b2993719d4616b7c1544d9c191742.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f6b2993719d4616b7c1544d9c191742.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f6b2993719d4616b7c1544d9c191742.jpg", "file_size": 22701, "is_delete": false, "file_type": 1, "original_file_name": "HW463423FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6b2993719d4616b7c1544d9c191742.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6b2993719d4616b7c1544d9c191742.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f6b2993719d4616b7c1544d9c191742.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f6b2993719d4616b7c1544d9c191742.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f6b2993719d4616b7c1544d9c191742.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZezCvOw5bWvJ2Ag8Hb-gpkTf-Ug=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.424443+00 2025-12-09 10:15:30.424448+00 15459 0006-50FWF#V5曲线 SPMX-20240815310660 \N \N \N 1 \N [{"file_id": "b270e26d-07a1-4efe-9319-c0d26e9285ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2430b086d1bc4f6e8661113527f009ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2430b086d1bc4f6e8661113527f009ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2430b086d1bc4f6e8661113527f009ad.jpg", "file_size": 24573, "is_delete": false, "file_type": 1, "original_file_name": "0006-50FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2430b086d1bc4f6e8661113527f009ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2430b086d1bc4f6e8661113527f009ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2430b086d1bc4f6e8661113527f009ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2430b086d1bc4f6e8661113527f009ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2430b086d1bc4f6e8661113527f009ad.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nzFBLfVZ1CQ6zO9zE1xv7ryPOo=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.426875+00 2025-12-09 10:15:30.42688+00 15460 LZ1342#上身4号色 SPMX-20240815310663 \N \N \N 1 \N [{"file_id": "9c68396a-f645-4752-8144-5200167ec8b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "857735daf62443858bd5b71ccdfc4f04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "857735daf62443858bd5b71ccdfc4f04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "857735daf62443858bd5b71ccdfc4f04.jpg", "file_size": 16929, "is_delete": false, "file_type": 1, "original_file_name": "LZ1342#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/857735daf62443858bd5b71ccdfc4f04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/857735daf62443858bd5b71ccdfc4f04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/857735daf62443858bd5b71ccdfc4f04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/857735daf62443858bd5b71ccdfc4f04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/857735daf62443858bd5b71ccdfc4f04.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bocfOWk3o5DO9bD6xNSkgDIt4uk=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.429307+00 2025-12-09 10:15:30.429312+00 15461 85009#4码+8码 SPMX-20240815310667 \N \N \N 1 \N [{"file_id": "b1f1ae99-6a7d-43a0-aa48-9f58d486c2a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39e9cfabbe68476bb945d4daf23ed7d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39e9cfabbe68476bb945d4daf23ed7d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39e9cfabbe68476bb945d4daf23ed7d0.jpg", "file_size": 20052, "is_delete": false, "file_type": 1, "original_file_name": "85009#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e9cfabbe68476bb945d4daf23ed7d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e9cfabbe68476bb945d4daf23ed7d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39e9cfabbe68476bb945d4daf23ed7d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39e9cfabbe68476bb945d4daf23ed7d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39e9cfabbe68476bb945d4daf23ed7d0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ddZuiDhBBU3TIeZUh3OFujIwuJE=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.431553+00 2025-12-09 10:15:30.431558+00 15462 JTSS631FW#VS-D3 SPMX-20240815310669 \N \N \N 1 \N [{"file_id": "19ce0348-524a-40ad-869b-2fa40c3779ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1b7bd813b98489aa3a34f4ef698f7cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1b7bd813b98489aa3a34f4ef698f7cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1b7bd813b98489aa3a34f4ef698f7cd.jpg", "file_size": 7092, "is_delete": false, "file_type": 1, "original_file_name": "JTSS631FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b7bd813b98489aa3a34f4ef698f7cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b7bd813b98489aa3a34f4ef698f7cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1b7bd813b98489aa3a34f4ef698f7cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1b7bd813b98489aa3a34f4ef698f7cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1b7bd813b98489aa3a34f4ef698f7cd.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OXShgbw70hKOfxgNEaYlaQHlcw=", "createTime": "2024-08-15 14:58:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.434073+00 2025-12-09 10:15:30.434078+00 15463 DL31224-1#浅粉袖子定位裁 SPMX-20240815310670 \N \N \N 1 \N [{"file_id": "4e7f2be5-a79b-49fb-b7b2-a26aac60d4c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9002c7feaad94295b7766f674b2bac22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9002c7feaad94295b7766f674b2bac22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9002c7feaad94295b7766f674b2bac22.jpg", "file_size": 12433, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#浅粉袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9002c7feaad94295b7766f674b2bac22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9002c7feaad94295b7766f674b2bac22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9002c7feaad94295b7766f674b2bac22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9002c7feaad94295b7766f674b2bac22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9002c7feaad94295b7766f674b2bac22.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WrBNuBVmH5mrdCoeKiTuGgtRZE=", "createTime": "2024-08-15 14:58:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.436524+00 2025-12-09 10:15:30.43653+00 15464 LJH1839#原版色 SPMX-20240815310673 \N \N \N 1 \N [{"file_id": "f31b6c84-c010-4631-9377-44b2d512937d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb828770364245dfa42ea18d35c92712.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb828770364245dfa42ea18d35c92712.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb828770364245dfa42ea18d35c92712.jpg", "file_size": 43066, "is_delete": false, "file_type": 1, "original_file_name": "LJH1839#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb828770364245dfa42ea18d35c92712.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb828770364245dfa42ea18d35c92712.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb828770364245dfa42ea18d35c92712.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb828770364245dfa42ea18d35c92712.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb828770364245dfa42ea18d35c92712.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qa64B2QtwTd6lKR7dzTQ56-phf8=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.439011+00 2025-12-09 10:15:30.439018+00 15465 LZ1342#上身5号色 SPMX-20240815310674 \N \N \N 1 \N [{"file_id": "9321904d-dbb2-453e-a1c1-d5b84c3bf9c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bbb8d0419d845b19eaa969fed19b4b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bbb8d0419d845b19eaa969fed19b4b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bbb8d0419d845b19eaa969fed19b4b6.jpg", "file_size": 18130, "is_delete": false, "file_type": 1, "original_file_name": "LZ1342#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbb8d0419d845b19eaa969fed19b4b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbb8d0419d845b19eaa969fed19b4b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbb8d0419d845b19eaa969fed19b4b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bbb8d0419d845b19eaa969fed19b4b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bbb8d0419d845b19eaa969fed19b4b6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FFIkdofdWWxjzaqTVlotlNq8Xw=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.441467+00 2025-12-09 10:15:30.441473+00 15466 1221FWE#粉色批布 SPMX-20240815310676 \N \N \N 1 \N [{"file_id": "c7018abe-530b-4611-88bb-be3a3f4259dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d845af1ff7a4eef843d7e73eff48132.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d845af1ff7a4eef843d7e73eff48132.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d845af1ff7a4eef843d7e73eff48132.jpg", "file_size": 4602, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#粉色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d845af1ff7a4eef843d7e73eff48132.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d845af1ff7a4eef843d7e73eff48132.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d845af1ff7a4eef843d7e73eff48132.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d845af1ff7a4eef843d7e73eff48132.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d845af1ff7a4eef843d7e73eff48132.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CU7ElYGHvvbRqYiyrJkJPh2-3SE=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.443977+00 2025-12-09 10:15:30.443983+00 15467 CASS-W7#WJC22 SPMX-20240815310672 \N \N \N 1 \N [{"file_id": "8003025f-a5f1-4008-b145-ea4aca83d88d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f938e17ed3d403d8c6c1ad4f7123cfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f938e17ed3d403d8c6c1ad4f7123cfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f938e17ed3d403d8c6c1ad4f7123cfc.jpg", "file_size": 12103, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W7#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f938e17ed3d403d8c6c1ad4f7123cfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f938e17ed3d403d8c6c1ad4f7123cfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f938e17ed3d403d8c6c1ad4f7123cfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f938e17ed3d403d8c6c1ad4f7123cfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f938e17ed3d403d8c6c1ad4f7123cfc.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JB9M-Q0sCigpklIUmKkoVk5pLcE=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.44642+00 2025-12-09 10:15:30.446425+00 15468 0006-51FWE#VS-D3 SPMX-20240815310675 \N \N \N 1 \N [{"file_id": "b0fb5744-2d30-47f9-890e-96d3e49d90a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b491be43c1544955b2de9899cc77d02b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b491be43c1544955b2de9899cc77d02b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b491be43c1544955b2de9899cc77d02b.jpg", "file_size": 19196, "is_delete": false, "file_type": 1, "original_file_name": "0006-51FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b491be43c1544955b2de9899cc77d02b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b491be43c1544955b2de9899cc77d02b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b491be43c1544955b2de9899cc77d02b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b491be43c1544955b2de9899cc77d02b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b491be43c1544955b2de9899cc77d02b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jTp44CmOxEhkBaHWAePxjO-8Ns=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.448656+00 2025-12-09 10:15:30.448661+00 15469 FR10杏色#WJC22 SPMX-20240815310671 \N \N \N 1 \N [{"file_id": "6189ac40-a5cc-42b7-b993-6133554a78b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c385de8d11b64e9a9ec7f7d48ee458c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c385de8d11b64e9a9ec7f7d48ee458c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c385de8d11b64e9a9ec7f7d48ee458c9.jpg", "file_size": 17145, "is_delete": false, "file_type": 1, "original_file_name": "FR10杏色#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385de8d11b64e9a9ec7f7d48ee458c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385de8d11b64e9a9ec7f7d48ee458c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c385de8d11b64e9a9ec7f7d48ee458c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c385de8d11b64e9a9ec7f7d48ee458c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c385de8d11b64e9a9ec7f7d48ee458c9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwLm7Bg_34Oazahc59ySpymUD_w=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.451311+00 2025-12-09 10:15:30.451317+00 15470 23-305#A16-4XL SPMX-20240815310677 \N \N \N 1 \N [{"file_id": "734e80dd-0840-4bf8-a3f1-89dac320cc6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f87b205a182349b9bf3cd7975a35d0b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f87b205a182349b9bf3cd7975a35d0b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f87b205a182349b9bf3cd7975a35d0b6.jpg", "file_size": 18232, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A16-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87b205a182349b9bf3cd7975a35d0b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87b205a182349b9bf3cd7975a35d0b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f87b205a182349b9bf3cd7975a35d0b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f87b205a182349b9bf3cd7975a35d0b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f87b205a182349b9bf3cd7975a35d0b6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZ9hLfu2f04Nh5MnOtgF4E4p6h0=", "createTime": "2024-08-15 14:59:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.45395+00 2025-12-09 10:15:30.453955+00 15471 DL31224-1#玫红2XL码前幅烧花 SPMX-20240815310681 \N \N \N 1 \N [{"file_id": "f897436e-9587-4ba2-abd5-c60dbd08d52a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "314a691d4ba747b082cd9004dded71af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "314a691d4ba747b082cd9004dded71af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "314a691d4ba747b082cd9004dded71af.jpg", "file_size": 16552, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#玫红2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a691d4ba747b082cd9004dded71af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a691d4ba747b082cd9004dded71af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314a691d4ba747b082cd9004dded71af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/314a691d4ba747b082cd9004dded71af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/314a691d4ba747b082cd9004dded71af.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_VeT91tGLIcVPOxmkpJTPfKBe_0=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.456525+00 2025-12-09 10:15:30.456531+00 15472 FT21Z-TES-03H#女装L SPMX-20240815310682 \N \N \N 1 \N [{"file_id": "fb54fc66-6681-4ac2-878a-bc25c1c936cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0874fe4f5fca4e5d99103382eb87086b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0874fe4f5fca4e5d99103382eb87086b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0874fe4f5fca4e5d99103382eb87086b.jpg", "file_size": 16121, "is_delete": false, "file_type": 1, "original_file_name": "FT21Z-TES-03H#女装L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0874fe4f5fca4e5d99103382eb87086b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0874fe4f5fca4e5d99103382eb87086b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0874fe4f5fca4e5d99103382eb87086b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0874fe4f5fca4e5d99103382eb87086b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0874fe4f5fca4e5d99103382eb87086b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P_Jd5LQ5bH4W8qVvjoB_jmv78iA=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.458859+00 2025-12-09 10:15:30.458866+00 15473 LZ1343#上身1号色 SPMX-20240815310685 \N \N \N 1 \N [{"file_id": "96da6d66-aa28-4483-822b-a494d22de7ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e5e4c5a8694706a21b69d9f5b42cb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e5e4c5a8694706a21b69d9f5b42cb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e5e4c5a8694706a21b69d9f5b42cb5.jpg", "file_size": 18884, "is_delete": false, "file_type": 1, "original_file_name": "LZ1343#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e5e4c5a8694706a21b69d9f5b42cb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e5e4c5a8694706a21b69d9f5b42cb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e5e4c5a8694706a21b69d9f5b42cb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e5e4c5a8694706a21b69d9f5b42cb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e5e4c5a8694706a21b69d9f5b42cb5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvJL0oEnTIJuoFaXDx9Ou5oiGf4=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.461439+00 2025-12-09 10:15:30.461445+00 15474 JTSS632FW#VS-D3 SPMX-20240815310679 \N \N \N 1 \N [{"file_id": "fdb1770b-9333-4466-a5bf-bdfdd16c55e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37a9e76134834a1a862d2890319cf4ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37a9e76134834a1a862d2890319cf4ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37a9e76134834a1a862d2890319cf4ed.jpg", "file_size": 10867, "is_delete": false, "file_type": 1, "original_file_name": "JTSS632FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a9e76134834a1a862d2890319cf4ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a9e76134834a1a862d2890319cf4ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a9e76134834a1a862d2890319cf4ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37a9e76134834a1a862d2890319cf4ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37a9e76134834a1a862d2890319cf4ed.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7UWsjVt_yLEGENO6J3Fixyh10A=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.463971+00 2025-12-09 10:15:30.463977+00 15475 1221FWE#红色2XL SPMX-20240815310686 \N \N \N 1 \N [{"file_id": "5fcd8562-3abb-46c3-9e4c-df6075a58bc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ac130df085246c88423efa01880d375.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ac130df085246c88423efa01880d375.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ac130df085246c88423efa01880d375.jpg", "file_size": 12474, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac130df085246c88423efa01880d375.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac130df085246c88423efa01880d375.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ac130df085246c88423efa01880d375.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ac130df085246c88423efa01880d375.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ac130df085246c88423efa01880d375.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lpdmiSTvxvoSarCRqMgo3Hh7rwo=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.466466+00 2025-12-09 10:15:30.466471+00 15476 85009#6码 SPMX-20240815310680 \N \N \N 1 \N [{"file_id": "99c96a9f-4cc4-4b40-8bb5-5c482dca5546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b5bc043e2d5450f8bcc965818e5400a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b5bc043e2d5450f8bcc965818e5400a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b5bc043e2d5450f8bcc965818e5400a.jpg", "file_size": 18905, "is_delete": false, "file_type": 1, "original_file_name": "85009#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5bc043e2d5450f8bcc965818e5400a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5bc043e2d5450f8bcc965818e5400a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b5bc043e2d5450f8bcc965818e5400a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b5bc043e2d5450f8bcc965818e5400a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b5bc043e2d5450f8bcc965818e5400a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fs8J6iIrqLHLXpiaH1tsQvsWVuk=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.469009+00 2025-12-09 10:15:30.469015+00 15477 0006-51FWE#VS-D3番禺调色 SPMX-20240815310684 \N \N \N 1 \N [{"file_id": "f831afeb-a0e9-4602-b1d4-0a4d9085b0ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb3269f5df9e4e8ab6205f9f70a3d013.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb3269f5df9e4e8ab6205f9f70a3d013.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb3269f5df9e4e8ab6205f9f70a3d013.jpg", "file_size": 25067, "is_delete": false, "file_type": 1, "original_file_name": "0006-51FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3269f5df9e4e8ab6205f9f70a3d013.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3269f5df9e4e8ab6205f9f70a3d013.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3269f5df9e4e8ab6205f9f70a3d013.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb3269f5df9e4e8ab6205f9f70a3d013.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb3269f5df9e4e8ab6205f9f70a3d013.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FE1k0d4tMlkVSinTClpJ5g4q-BI=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.471518+00 2025-12-09 10:15:30.471523+00 15478 CASS-W8#WJC22 SPMX-20240815310683 \N \N \N 1 \N [{"file_id": "dd7bbb58-11db-4184-8d1c-39821ff87161", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab6660915ae443af98e6309ca324bf13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab6660915ae443af98e6309ca324bf13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab6660915ae443af98e6309ca324bf13.jpg", "file_size": 18327, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W8#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6660915ae443af98e6309ca324bf13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6660915ae443af98e6309ca324bf13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6660915ae443af98e6309ca324bf13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab6660915ae443af98e6309ca324bf13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab6660915ae443af98e6309ca324bf13.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGAdtQvyIdc613O5cRTzuOkEK8M=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.474027+00 2025-12-09 10:15:30.474033+00 15479 HW468929FWE#2XL VS-D3 SPMX-20240815310678 \N \N \N 1 \N [{"file_id": "553550a5-9a43-4493-b55e-719381dc8ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg", "file_size": 20623, "is_delete": false, "file_type": 1, "original_file_name": "HW468929FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94179cc4ee7f4f4ebc03e6f0ce5c5d3c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-hKreqSDu8SQ9OCGRKwikCPXPE=", "createTime": "2024-08-15 14:59:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.476558+00 2025-12-09 10:15:30.476564+00 15480 HW468929FWE#L VS-D3 SPMX-20240815310689 \N \N \N 1 \N [{"file_id": "c0dd343e-48bf-475f-b149-73c5d812896f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7349e7ab2b5e4bbaa912fabfec27580f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7349e7ab2b5e4bbaa912fabfec27580f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7349e7ab2b5e4bbaa912fabfec27580f.jpg", "file_size": 17433, "is_delete": false, "file_type": 1, "original_file_name": "HW468929FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349e7ab2b5e4bbaa912fabfec27580f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349e7ab2b5e4bbaa912fabfec27580f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7349e7ab2b5e4bbaa912fabfec27580f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7349e7ab2b5e4bbaa912fabfec27580f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7349e7ab2b5e4bbaa912fabfec27580f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGMGjmCE9CBZ-EI09N4NktBmrbA=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.479193+00 2025-12-09 10:15:30.479201+00 15481 LJH1840#彩兰 SPMX-20240815310688 \N \N \N 1 \N [{"file_id": "a14cc6e2-081f-4098-a2b8-a7f70577bafe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "926133651eeb4f5da7f19d7874219c1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "926133651eeb4f5da7f19d7874219c1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "926133651eeb4f5da7f19d7874219c1c.jpg", "file_size": 24781, "is_delete": false, "file_type": 1, "original_file_name": "LJH1840#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926133651eeb4f5da7f19d7874219c1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926133651eeb4f5da7f19d7874219c1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/926133651eeb4f5da7f19d7874219c1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/926133651eeb4f5da7f19d7874219c1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/926133651eeb4f5da7f19d7874219c1c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AA9R5zTrlhXV3kI2bFuaHNPn13s=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.481862+00 2025-12-09 10:15:30.481869+00 15482 JTSS633FW#VS-D3 SPMX-20240815310687 \N \N \N 1 \N [{"file_id": "19603cc4-79bf-440d-b706-1663885f181f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c92c9eb4120e43509f73797a3d5695c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c92c9eb4120e43509f73797a3d5695c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c92c9eb4120e43509f73797a3d5695c7.jpg", "file_size": 10878, "is_delete": false, "file_type": 1, "original_file_name": "JTSS633FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92c9eb4120e43509f73797a3d5695c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92c9eb4120e43509f73797a3d5695c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92c9eb4120e43509f73797a3d5695c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c92c9eb4120e43509f73797a3d5695c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c92c9eb4120e43509f73797a3d5695c7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1x6IsNbbd7BPnx_bq4zyb_0_6k=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.484461+00 2025-12-09 10:15:30.484468+00 15483 23-305#A16-领子3XL SPMX-20240815310690 \N \N \N 1 \N [{"file_id": "90e00a5b-22f4-42a3-bbec-fa05848b8f00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19c24f2a1f434965b00611a529269d3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19c24f2a1f434965b00611a529269d3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19c24f2a1f434965b00611a529269d3c.jpg", "file_size": 12075, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A16-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c24f2a1f434965b00611a529269d3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c24f2a1f434965b00611a529269d3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c24f2a1f434965b00611a529269d3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19c24f2a1f434965b00611a529269d3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19c24f2a1f434965b00611a529269d3c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mDJZnQAGernEMWzn3wcrbLOIvA=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.486982+00 2025-12-09 10:15:30.486988+00 15484 FT21Z-TES-03H#女装M SPMX-20240815310693 \N \N \N 1 \N [{"file_id": "575d1dd9-e4ac-4e34-b1c7-1a3699961615", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a86cf666968418aa3963047ec62fab3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a86cf666968418aa3963047ec62fab3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a86cf666968418aa3963047ec62fab3.jpg", "file_size": 15379, "is_delete": false, "file_type": 1, "original_file_name": "FT21Z-TES-03H#女装M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a86cf666968418aa3963047ec62fab3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a86cf666968418aa3963047ec62fab3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a86cf666968418aa3963047ec62fab3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a86cf666968418aa3963047ec62fab3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a86cf666968418aa3963047ec62fab3.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IbzHAay3LeJkdkfWqfStlIGNi8E=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.489422+00 2025-12-09 10:15:30.489428+00 15485 DL31224-1#玫红L码前幅烧花 SPMX-20240815310695 \N \N \N 1 \N [{"file_id": "e054b7b4-2889-418f-b3f6-12b5613ff2e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bfc6c12542b4d4387788ca6191546a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bfc6c12542b4d4387788ca6191546a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bfc6c12542b4d4387788ca6191546a9.jpg", "file_size": 15729, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#玫红L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc6c12542b4d4387788ca6191546a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc6c12542b4d4387788ca6191546a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bfc6c12542b4d4387788ca6191546a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bfc6c12542b4d4387788ca6191546a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bfc6c12542b4d4387788ca6191546a9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1GH2ASl3JeFl7lVyaEgOkTP7sY=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.491926+00 2025-12-09 10:15:30.491931+00 15486 CASS-W9#WJC22 SPMX-20240815310692 \N \N \N 1 \N [{"file_id": "0d2f2ddb-6b8f-4584-8e18-3fcdf3766907", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2555dac5413340b2982855c899b224dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2555dac5413340b2982855c899b224dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2555dac5413340b2982855c899b224dc.jpg", "file_size": 12608, "is_delete": false, "file_type": 1, "original_file_name": "CASS-W9#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2555dac5413340b2982855c899b224dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2555dac5413340b2982855c899b224dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2555dac5413340b2982855c899b224dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2555dac5413340b2982855c899b224dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2555dac5413340b2982855c899b224dc.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inol_qzxb-_aMk8Q5UBSISkwY7o=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.494439+00 2025-12-09 10:15:30.494444+00 15487 LZ1343#上身2号色 SPMX-20240815310694 \N \N \N 1 \N [{"file_id": "7a97c2e7-dc66-4525-b738-9a5c47f5d85d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "158c163565ea47e298d1b4d8ecc46b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "158c163565ea47e298d1b4d8ecc46b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "158c163565ea47e298d1b4d8ecc46b8b.jpg", "file_size": 19429, "is_delete": false, "file_type": 1, "original_file_name": "LZ1343#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158c163565ea47e298d1b4d8ecc46b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158c163565ea47e298d1b4d8ecc46b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158c163565ea47e298d1b4d8ecc46b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/158c163565ea47e298d1b4d8ecc46b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/158c163565ea47e298d1b4d8ecc46b8b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eT978FZyxfy_GyoVZcR3b03Nm-c=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.496946+00 2025-12-09 10:15:30.496952+00 15488 0006-51FWF#V5曲线 SPMX-20240815310697 \N \N \N 1 \N [{"file_id": "64e1ff3b-8fd1-424a-a950-f84e284fea23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18ec3e89fde9490bb0f0a68fc7470d61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18ec3e89fde9490bb0f0a68fc7470d61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18ec3e89fde9490bb0f0a68fc7470d61.jpg", "file_size": 15824, "is_delete": false, "file_type": 1, "original_file_name": "0006-51FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18ec3e89fde9490bb0f0a68fc7470d61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18ec3e89fde9490bb0f0a68fc7470d61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18ec3e89fde9490bb0f0a68fc7470d61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18ec3e89fde9490bb0f0a68fc7470d61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18ec3e89fde9490bb0f0a68fc7470d61.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KpcTF1a2QL3pjgWmBXXQWEdCDmw=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.499453+00 2025-12-09 10:15:30.499459+00 15489 1221FWE#红色3XL SPMX-20240815310696 \N \N \N 1 \N [{"file_id": "c0ea0d24-8fa4-4326-b032-df70b91c0a6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e5cf587d9764cd2b6dc077fee73b559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e5cf587d9764cd2b6dc077fee73b559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e5cf587d9764cd2b6dc077fee73b559.jpg", "file_size": 13106, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5cf587d9764cd2b6dc077fee73b559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5cf587d9764cd2b6dc077fee73b559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5cf587d9764cd2b6dc077fee73b559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e5cf587d9764cd2b6dc077fee73b559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e5cf587d9764cd2b6dc077fee73b559.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbfU3NcLV3-ZGSMrmGVTfRicDj8=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.501961+00 2025-12-09 10:15:30.501966+00 15490 85009#乱花 SPMX-20240815310691 \N \N \N 1 \N [{"file_id": "108c0a96-745b-4d68-b3ee-bc78d1185509", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "504109accf014715af41b8438cb8a878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "504109accf014715af41b8438cb8a878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "504109accf014715af41b8438cb8a878.jpg", "file_size": 4604, "is_delete": false, "file_type": 1, "original_file_name": "85009#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504109accf014715af41b8438cb8a878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504109accf014715af41b8438cb8a878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504109accf014715af41b8438cb8a878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/504109accf014715af41b8438cb8a878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/504109accf014715af41b8438cb8a878.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTKrF_1mJbAej_yUMgIHLQFYH5c=", "createTime": "2024-08-15 14:59:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.504513+00 2025-12-09 10:15:30.504519+00 15491 23-305#A16-领子4XL SPMX-20240815310698 \N \N \N 1 \N [{"file_id": "6790b312-67d8-4de5-a9bd-b4751ad914cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35a3cbeacbfd48bdbed896c3e509ee31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35a3cbeacbfd48bdbed896c3e509ee31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35a3cbeacbfd48bdbed896c3e509ee31.jpg", "file_size": 12031, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A16-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a3cbeacbfd48bdbed896c3e509ee31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a3cbeacbfd48bdbed896c3e509ee31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a3cbeacbfd48bdbed896c3e509ee31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35a3cbeacbfd48bdbed896c3e509ee31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35a3cbeacbfd48bdbed896c3e509ee31.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nOFIBnmHRnvWJmn73i60CvdX9bw=", "createTime": "2024-08-15 14:59:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.507001+00 2025-12-09 10:15:30.507006+00 15492 LJH1840#玫红 SPMX-20240815310711 \N \N \N 1 \N [{"file_id": "9f173a8f-cbda-4a88-b484-ed3b4351eb48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2699c27c1d744897895b087b787194b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2699c27c1d744897895b087b787194b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2699c27c1d744897895b087b787194b7.jpg", "file_size": 23228, "is_delete": false, "file_type": 1, "original_file_name": "LJH1840#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2699c27c1d744897895b087b787194b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2699c27c1d744897895b087b787194b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2699c27c1d744897895b087b787194b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2699c27c1d744897895b087b787194b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2699c27c1d744897895b087b787194b7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6mxsIZhkkwble0rbEYyRMT64Snw=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.509537+00 2025-12-09 10:15:30.509543+00 15493 HW468929FWE#M VS-D3 SPMX-20240815310702 \N \N \N 1 \N [{"file_id": "8fcbb48d-34e2-4903-adf9-96f072136f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42d9ca451dd9499791e47ea60c96b3a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42d9ca451dd9499791e47ea60c96b3a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42d9ca451dd9499791e47ea60c96b3a8.jpg", "file_size": 17616, "is_delete": false, "file_type": 1, "original_file_name": "HW468929FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d9ca451dd9499791e47ea60c96b3a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d9ca451dd9499791e47ea60c96b3a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d9ca451dd9499791e47ea60c96b3a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42d9ca451dd9499791e47ea60c96b3a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42d9ca451dd9499791e47ea60c96b3a8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-6ibHgMxPN-HEUEsGKzuPGvvKk=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.511979+00 2025-12-09 10:15:30.511985+00 15494 FT21Z-TES-03H#女装绿色L SPMX-20240815310706 \N \N \N 1 \N [{"file_id": "0ec6afba-45de-4772-bafb-c502f7fee5e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "299397ef9f7d45138325dad04a1b97cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "299397ef9f7d45138325dad04a1b97cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "299397ef9f7d45138325dad04a1b97cb.jpg", "file_size": 16369, "is_delete": false, "file_type": 1, "original_file_name": "FT21Z-TES-03H#女装绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299397ef9f7d45138325dad04a1b97cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299397ef9f7d45138325dad04a1b97cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299397ef9f7d45138325dad04a1b97cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/299397ef9f7d45138325dad04a1b97cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/299397ef9f7d45138325dad04a1b97cb.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnKUCPCItx6sHaHejUKBOI5tLBY=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.51482+00 2025-12-09 10:15:30.514826+00 15495 LZ1343#上身3号色 SPMX-20240815310707 \N \N \N 1 \N [{"file_id": "2a99f2e6-58b7-4331-a1d8-fe5991dcd1f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e193bc6aa71943fb9b0f1a615f15f49d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e193bc6aa71943fb9b0f1a615f15f49d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e193bc6aa71943fb9b0f1a615f15f49d.jpg", "file_size": 19239, "is_delete": false, "file_type": 1, "original_file_name": "LZ1343#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e193bc6aa71943fb9b0f1a615f15f49d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e193bc6aa71943fb9b0f1a615f15f49d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e193bc6aa71943fb9b0f1a615f15f49d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e193bc6aa71943fb9b0f1a615f15f49d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e193bc6aa71943fb9b0f1a615f15f49d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbOAnLMTZwxqvhon1dB5E0WmrtY=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.51741+00 2025-12-09 10:15:30.517416+00 15496 23-305#A17-3XL SPMX-20240815310708 \N \N \N 1 \N [{"file_id": "6c4c256b-42aa-4346-a07e-3e00f8dcba24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41d7586f72a34e379fab26ddaab8cf3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41d7586f72a34e379fab26ddaab8cf3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41d7586f72a34e379fab26ddaab8cf3b.jpg", "file_size": 20618, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A17-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d7586f72a34e379fab26ddaab8cf3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d7586f72a34e379fab26ddaab8cf3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41d7586f72a34e379fab26ddaab8cf3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41d7586f72a34e379fab26ddaab8cf3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41d7586f72a34e379fab26ddaab8cf3b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yqKQx_qAbKYa2u06W-9Bx0e8I0=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.520038+00 2025-12-09 10:15:30.520043+00 15497 JTSS634FW#VS-D3 SPMX-20240815310701 \N \N \N 1 \N [{"file_id": "e5cff579-8c62-4bc9-a280-8377d9647931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c115d56ef3cd44a7aeeb3fd1e754730f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c115d56ef3cd44a7aeeb3fd1e754730f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c115d56ef3cd44a7aeeb3fd1e754730f.jpg", "file_size": 10949, "is_delete": false, "file_type": 1, "original_file_name": "JTSS634FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c115d56ef3cd44a7aeeb3fd1e754730f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c115d56ef3cd44a7aeeb3fd1e754730f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c115d56ef3cd44a7aeeb3fd1e754730f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c115d56ef3cd44a7aeeb3fd1e754730f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c115d56ef3cd44a7aeeb3fd1e754730f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuafkO0uk2gj6cQwa15DWl-BwdA=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.522553+00 2025-12-09 10:15:30.522559+00 15498 DL31224-1#玫红XL码前幅烧花 SPMX-20240815310710 \N \N \N 1 \N [{"file_id": "ef825dff-9911-48db-aca2-01ff79777fea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b273a6f6410c43feb20c80325cc52e3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b273a6f6410c43feb20c80325cc52e3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b273a6f6410c43feb20c80325cc52e3c.jpg", "file_size": 16554, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#玫红XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b273a6f6410c43feb20c80325cc52e3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b273a6f6410c43feb20c80325cc52e3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b273a6f6410c43feb20c80325cc52e3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b273a6f6410c43feb20c80325cc52e3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b273a6f6410c43feb20c80325cc52e3c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DheIkQ5brwWVxbxVlY2hVadzG1w=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.525132+00 2025-12-09 10:15:30.525138+00 15499 85010#10码+12码 SPMX-20240815310700 \N \N \N 1 \N [{"file_id": "061cfbd4-6d2a-45da-9d9e-a6b97d3e4532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0de7a1be13f14f6db38b33f1e21a0652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0de7a1be13f14f6db38b33f1e21a0652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0de7a1be13f14f6db38b33f1e21a0652.jpg", "file_size": 19274, "is_delete": false, "file_type": 1, "original_file_name": "85010#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de7a1be13f14f6db38b33f1e21a0652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de7a1be13f14f6db38b33f1e21a0652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de7a1be13f14f6db38b33f1e21a0652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0de7a1be13f14f6db38b33f1e21a0652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0de7a1be13f14f6db38b33f1e21a0652.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xJBIXBQmxyL2Kh2rH1yiwhV9vI=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.527755+00 2025-12-09 10:15:30.527761+00 15500 LJH1840#桔色 SPMX-20240815310699 \N \N \N 1 \N [{"file_id": "26ac7400-e7dd-4f4d-ae13-325e97982495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "228c9a51f81a458abee3f702842fddde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "228c9a51f81a458abee3f702842fddde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "228c9a51f81a458abee3f702842fddde.jpg", "file_size": 23834, "is_delete": false, "file_type": 1, "original_file_name": "LJH1840#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228c9a51f81a458abee3f702842fddde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228c9a51f81a458abee3f702842fddde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/228c9a51f81a458abee3f702842fddde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/228c9a51f81a458abee3f702842fddde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/228c9a51f81a458abee3f702842fddde.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8i7NFGJTPmU-6hdHnoUDOLSx-LQ=", "createTime": "2024-08-15 14:59:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.530349+00 2025-12-09 10:15:30.530354+00 15501 1221FWE#红色4XL SPMX-20240815310703 \N \N \N 1 \N [{"file_id": "958751d5-3a45-4306-adac-55b5b1b296c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2447a318e05e4eb1b84f1edd4ddbc43f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2447a318e05e4eb1b84f1edd4ddbc43f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2447a318e05e4eb1b84f1edd4ddbc43f.jpg", "file_size": 8192, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2447a318e05e4eb1b84f1edd4ddbc43f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2447a318e05e4eb1b84f1edd4ddbc43f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2447a318e05e4eb1b84f1edd4ddbc43f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2447a318e05e4eb1b84f1edd4ddbc43f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2447a318e05e4eb1b84f1edd4ddbc43f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOH7tgsmkt1SezeBYrPq5gknkao=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.532882+00 2025-12-09 10:15:30.532888+00 15502 0006-52FWE#咖啡 SPMX-20240815310704 \N \N \N 1 \N [{"file_id": "f4eb10a3-e34a-4188-b4ea-c8fa5faef2bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4cb1ab7218f4a2a9cd13525cc3b5060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4cb1ab7218f4a2a9cd13525cc3b5060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4cb1ab7218f4a2a9cd13525cc3b5060.jpg", "file_size": 13855, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWE#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4cb1ab7218f4a2a9cd13525cc3b5060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4cb1ab7218f4a2a9cd13525cc3b5060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4cb1ab7218f4a2a9cd13525cc3b5060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4cb1ab7218f4a2a9cd13525cc3b5060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4cb1ab7218f4a2a9cd13525cc3b5060.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TDOkOr91ML17oMfidFphVXMKgoQ=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.535399+00 2025-12-09 10:15:30.535404+00 15503 85010#14码 SPMX-20240815310709 \N \N \N 1 \N [{"file_id": "9d4df638-9e16-41b0-a661-c863cf47b854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae45fc6d488438ba8169d95ea3f9429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae45fc6d488438ba8169d95ea3f9429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae45fc6d488438ba8169d95ea3f9429.jpg", "file_size": 17199, "is_delete": false, "file_type": 1, "original_file_name": "85010#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae45fc6d488438ba8169d95ea3f9429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae45fc6d488438ba8169d95ea3f9429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae45fc6d488438ba8169d95ea3f9429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae45fc6d488438ba8169d95ea3f9429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae45fc6d488438ba8169d95ea3f9429.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzpVcCVfqHYUb2t-S9jDaygNLX0=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.537948+00 2025-12-09 10:15:30.537954+00 15504 CAY4815#领子匹布 SPMX-20240815310705 \N \N \N 1 \N [{"file_id": "dcaf6af4-baa4-48e3-a773-aa1a3466124b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "615ac4b50d5f438f9fd1d7f89f75a2e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "615ac4b50d5f438f9fd1d7f89f75a2e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "615ac4b50d5f438f9fd1d7f89f75a2e9.jpg", "file_size": 7510, "is_delete": false, "file_type": 1, "original_file_name": "CAY4815#领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615ac4b50d5f438f9fd1d7f89f75a2e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615ac4b50d5f438f9fd1d7f89f75a2e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615ac4b50d5f438f9fd1d7f89f75a2e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/615ac4b50d5f438f9fd1d7f89f75a2e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/615ac4b50d5f438f9fd1d7f89f75a2e9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9_6ci2fXTbg3fh0Zy8gkDclhF0=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.540437+00 2025-12-09 10:15:30.540443+00 15505 JTSS635FW#VS-D3 SPMX-20240815310712 \N \N \N 1 \N [{"file_id": "387f8138-76ef-47c3-922c-be342bde9e67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75299bd7bd5348e39ea6c8c956159c5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75299bd7bd5348e39ea6c8c956159c5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75299bd7bd5348e39ea6c8c956159c5e.jpg", "file_size": 10476, "is_delete": false, "file_type": 1, "original_file_name": "JTSS635FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75299bd7bd5348e39ea6c8c956159c5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75299bd7bd5348e39ea6c8c956159c5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75299bd7bd5348e39ea6c8c956159c5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75299bd7bd5348e39ea6c8c956159c5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75299bd7bd5348e39ea6c8c956159c5e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v49Ow2yOyLq_4RcnW5mxhPU2EyE=", "createTime": "2024-08-15 14:59:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.542958+00 2025-12-09 10:15:30.542964+00 15506 JTSS636FW#VS-D3 SPMX-20240815310719 \N \N \N 1 \N [{"file_id": "b371df5f-2ccf-494f-8d3a-0f53f7882071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33d1f15dc87747ad8a5a047a64d3e935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33d1f15dc87747ad8a5a047a64d3e935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33d1f15dc87747ad8a5a047a64d3e935.jpg", "file_size": 8206, "is_delete": false, "file_type": 1, "original_file_name": "JTSS636FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d1f15dc87747ad8a5a047a64d3e935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d1f15dc87747ad8a5a047a64d3e935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d1f15dc87747ad8a5a047a64d3e935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33d1f15dc87747ad8a5a047a64d3e935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33d1f15dc87747ad8a5a047a64d3e935.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0j0XJLA3qrIsAeG8FKFM4WQK9E=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.545485+00 2025-12-09 10:15:30.54549+00 15507 LZ1343#上身4号色 SPMX-20240815310723 \N \N \N 1 \N [{"file_id": "02580bca-5fd7-4a82-a6bf-50b69a1da992", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94865334848d4cc0b2006a9ab3786d96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94865334848d4cc0b2006a9ab3786d96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94865334848d4cc0b2006a9ab3786d96.jpg", "file_size": 19436, "is_delete": false, "file_type": 1, "original_file_name": "LZ1343#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94865334848d4cc0b2006a9ab3786d96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94865334848d4cc0b2006a9ab3786d96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94865334848d4cc0b2006a9ab3786d96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94865334848d4cc0b2006a9ab3786d96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94865334848d4cc0b2006a9ab3786d96.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qiDOJHpvOhSVmE-cPbaYchhsnC4=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.548018+00 2025-12-09 10:15:30.548024+00 15508 85010#4码+8码 SPMX-20240815310722 \N \N \N 1 \N [{"file_id": "816a65cd-f11f-4800-85aa-356d6ed9329f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17d2e65b51f84d00881857df6164faea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17d2e65b51f84d00881857df6164faea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17d2e65b51f84d00881857df6164faea.jpg", "file_size": 19187, "is_delete": false, "file_type": 1, "original_file_name": "85010#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2e65b51f84d00881857df6164faea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2e65b51f84d00881857df6164faea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2e65b51f84d00881857df6164faea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17d2e65b51f84d00881857df6164faea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17d2e65b51f84d00881857df6164faea.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUBjuxCqo_V0ej4oUcpv2RrgW-Y=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.550482+00 2025-12-09 10:15:30.550487+00 15509 CB08026#流星彩色2XL VS-D3 SPMX-20240815310720 \N \N \N 1 \N [{"file_id": "9948d6fc-2042-4e3d-aa9b-26d2f5807174", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb898d7fdd6b4e37b3ee20c8858764a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb898d7fdd6b4e37b3ee20c8858764a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb898d7fdd6b4e37b3ee20c8858764a0.jpg", "file_size": 22413, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星彩色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb898d7fdd6b4e37b3ee20c8858764a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb898d7fdd6b4e37b3ee20c8858764a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb898d7fdd6b4e37b3ee20c8858764a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb898d7fdd6b4e37b3ee20c8858764a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb898d7fdd6b4e37b3ee20c8858764a0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcaJeCbZ6eG7BWNxI8J0Mhd9g-A=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.552992+00 2025-12-09 10:15:30.552998+00 15510 DL31224-1#玫红袖子定位裁 SPMX-20240815310721 \N \N \N 1 \N [{"file_id": "080a676a-b594-4d64-a18b-1709df66a729", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86a1ffc67491406592ebe655f55e25b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86a1ffc67491406592ebe655f55e25b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86a1ffc67491406592ebe655f55e25b4.jpg", "file_size": 11886, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#玫红袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a1ffc67491406592ebe655f55e25b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a1ffc67491406592ebe655f55e25b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a1ffc67491406592ebe655f55e25b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86a1ffc67491406592ebe655f55e25b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86a1ffc67491406592ebe655f55e25b4.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txPDpH29PZ3Ej2HoHTt13JDWVH8=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.555465+00 2025-12-09 10:15:30.55547+00 15511 23-305#A17-4XL SPMX-20240815310717 \N \N \N 1 \N [{"file_id": "1ffd1408-c899-4bf6-b036-086107945175", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d736da4fbc9f4873a99071c91c1ba229.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d736da4fbc9f4873a99071c91c1ba229.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d736da4fbc9f4873a99071c91c1ba229.jpg", "file_size": 19969, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A17-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d736da4fbc9f4873a99071c91c1ba229.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d736da4fbc9f4873a99071c91c1ba229.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d736da4fbc9f4873a99071c91c1ba229.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d736da4fbc9f4873a99071c91c1ba229.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d736da4fbc9f4873a99071c91c1ba229.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YqjOW-TRRJfvULIglMmHMARyNCI=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.557957+00 2025-12-09 10:15:30.557963+00 15512 FT21Z-TES-03H#女装黄色L SPMX-20240815310718 \N \N \N 1 \N [{"file_id": "3533b2c8-4c2c-45a4-8ba4-bf56396ccf8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "227baca0b5e14c28a23475d3e03afee1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "227baca0b5e14c28a23475d3e03afee1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "227baca0b5e14c28a23475d3e03afee1.jpg", "file_size": 16015, "is_delete": false, "file_type": 1, "original_file_name": "FT21Z-TES-03H#女装黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227baca0b5e14c28a23475d3e03afee1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227baca0b5e14c28a23475d3e03afee1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227baca0b5e14c28a23475d3e03afee1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/227baca0b5e14c28a23475d3e03afee1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/227baca0b5e14c28a23475d3e03afee1.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZqvJyKSbEuiMLsyplfZ9OMZhOE=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.560436+00 2025-12-09 10:15:30.560442+00 15513 LJH1840#黄色 SPMX-20240815310726 \N \N \N 1 \N [{"file_id": "913976e5-d823-4d4f-863b-09b555090146", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11ecdc4f15446459eb47f5d021ff841.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11ecdc4f15446459eb47f5d021ff841.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11ecdc4f15446459eb47f5d021ff841.jpg", "file_size": 23894, "is_delete": false, "file_type": 1, "original_file_name": "LJH1840#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11ecdc4f15446459eb47f5d021ff841.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11ecdc4f15446459eb47f5d021ff841.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11ecdc4f15446459eb47f5d021ff841.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11ecdc4f15446459eb47f5d021ff841.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11ecdc4f15446459eb47f5d021ff841.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUxxc1ugaFfn1DwX2_m9yUF847Y=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.562935+00 2025-12-09 10:15:30.56294+00 15514 0006-52FWE#咖啡番禺调色 SPMX-20240815310714 \N \N \N 1 \N [{"file_id": "c05a3c36-6fe5-46a7-8121-eafb90980651", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31f49dbda2946b4864cb71e8a2d47d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31f49dbda2946b4864cb71e8a2d47d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31f49dbda2946b4864cb71e8a2d47d2.jpg", "file_size": 14445, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWE#咖啡番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31f49dbda2946b4864cb71e8a2d47d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31f49dbda2946b4864cb71e8a2d47d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31f49dbda2946b4864cb71e8a2d47d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31f49dbda2946b4864cb71e8a2d47d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31f49dbda2946b4864cb71e8a2d47d2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xmXFK0nN3ZctOrNkWILuism56cM=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.565434+00 2025-12-09 10:15:30.565439+00 15515 1221FWE#红色L SPMX-20240815310715 \N \N \N 1 \N [{"file_id": "eaa70614-b268-451a-978e-21fa69084626", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9cbafb1005e4d6391b3eefbb30178f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9cbafb1005e4d6391b3eefbb30178f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9cbafb1005e4d6391b3eefbb30178f8.jpg", "file_size": 11670, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9cbafb1005e4d6391b3eefbb30178f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9cbafb1005e4d6391b3eefbb30178f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9cbafb1005e4d6391b3eefbb30178f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9cbafb1005e4d6391b3eefbb30178f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9cbafb1005e4d6391b3eefbb30178f8.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nusZGjZX8koRXJZU-X9wM4fGkc4=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.567893+00 2025-12-09 10:15:30.567898+00 15516 0006-52FWE#黑灰 SPMX-20240815310724 \N \N \N 1 \N [{"file_id": "093504c8-79fe-4b9b-ac9a-2a9380d2f1b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "accf7936483844b18df4222499371e5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "accf7936483844b18df4222499371e5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "accf7936483844b18df4222499371e5d.jpg", "file_size": 13195, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWE#黑灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accf7936483844b18df4222499371e5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accf7936483844b18df4222499371e5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accf7936483844b18df4222499371e5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/accf7936483844b18df4222499371e5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/accf7936483844b18df4222499371e5d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JE0ISVL3hTW9WzJ8L13yUaroWJs=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.570401+00 2025-12-09 10:15:30.570407+00 15517 HW468929FWE#S VS-D3 SPMX-20240815310713 \N \N \N 1 \N [{"file_id": "1fde553a-2f38-4e0a-8602-96525be55599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a9a3cedc1c444ddb704aa09d3608da5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a9a3cedc1c444ddb704aa09d3608da5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a9a3cedc1c444ddb704aa09d3608da5.jpg", "file_size": 17233, "is_delete": false, "file_type": 1, "original_file_name": "HW468929FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a9a3cedc1c444ddb704aa09d3608da5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a9a3cedc1c444ddb704aa09d3608da5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a9a3cedc1c444ddb704aa09d3608da5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a9a3cedc1c444ddb704aa09d3608da5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a9a3cedc1c444ddb704aa09d3608da5.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9owk6bzyGw9NBc2hSwCBVhbx8VU=", "createTime": "2024-08-15 14:59:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.572649+00 2025-12-09 10:15:30.572654+00 15518 1221FWE#红色XL SPMX-20240815310727 \N \N \N 1 \N [{"file_id": "a3f82494-8099-4157-b692-b84b91f97b06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "806162dbbdb04abda4a33258d0840874.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "806162dbbdb04abda4a33258d0840874.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "806162dbbdb04abda4a33258d0840874.jpg", "file_size": 12157, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806162dbbdb04abda4a33258d0840874.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806162dbbdb04abda4a33258d0840874.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806162dbbdb04abda4a33258d0840874.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/806162dbbdb04abda4a33258d0840874.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/806162dbbdb04abda4a33258d0840874.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTV9sTyKHNa93FBOL3VBzr_BX_A=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.575584+00 2025-12-09 10:15:30.575589+00 15519 LJH1840#绿色 SPMX-20240815310716 \N \N \N 1 \N [{"file_id": "60f5973a-7bcb-4996-8ada-1ee558ce1462", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd58770ccb8a45098cf8996f7876fd5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd58770ccb8a45098cf8996f7876fd5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd58770ccb8a45098cf8996f7876fd5f.jpg", "file_size": 23281, "is_delete": false, "file_type": 1, "original_file_name": "LJH1840#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd58770ccb8a45098cf8996f7876fd5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd58770ccb8a45098cf8996f7876fd5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd58770ccb8a45098cf8996f7876fd5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd58770ccb8a45098cf8996f7876fd5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd58770ccb8a45098cf8996f7876fd5f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiY3ClxDuzN87-NzQJ9O6p2Ds4U=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.578115+00 2025-12-09 10:15:30.578119+00 15520 HW468929FWE#XL VS-D3 SPMX-20240815310725 \N \N \N 1 \N [{"file_id": "be77dca1-eea3-4fc4-b28b-90d27df548d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15b92c7469a0483e913aea04c33a72b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15b92c7469a0483e913aea04c33a72b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15b92c7469a0483e913aea04c33a72b7.jpg", "file_size": 17211, "is_delete": false, "file_type": 1, "original_file_name": "HW468929FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b92c7469a0483e913aea04c33a72b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b92c7469a0483e913aea04c33a72b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b92c7469a0483e913aea04c33a72b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15b92c7469a0483e913aea04c33a72b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15b92c7469a0483e913aea04c33a72b7.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N82ItRJnzOiDon0qWmPogQbwDQU=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.580429+00 2025-12-09 10:15:30.580433+00 15521 23-305#A17-领子3XL SPMX-20240815310728 \N \N \N 1 \N [{"file_id": "41a7d8da-cebd-4627-bfb6-09c6929e9756", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f00483ae65a40d89a28ea81f75a434c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f00483ae65a40d89a28ea81f75a434c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f00483ae65a40d89a28ea81f75a434c.jpg", "file_size": 14118, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A17-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f00483ae65a40d89a28ea81f75a434c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f00483ae65a40d89a28ea81f75a434c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f00483ae65a40d89a28ea81f75a434c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f00483ae65a40d89a28ea81f75a434c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f00483ae65a40d89a28ea81f75a434c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLi3Vn7wSX4s7rRGJyEdqESHu0U=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.582563+00 2025-12-09 10:15:30.582568+00 15522 85010#6码 SPMX-20240815310733 \N \N \N 1 \N [{"file_id": "92b6f9cb-869c-4f31-9a95-e65cd3bfd21d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be6860a2f7e546c38dc53572c2a03751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be6860a2f7e546c38dc53572c2a03751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be6860a2f7e546c38dc53572c2a03751.jpg", "file_size": 18500, "is_delete": false, "file_type": 1, "original_file_name": "85010#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6860a2f7e546c38dc53572c2a03751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6860a2f7e546c38dc53572c2a03751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6860a2f7e546c38dc53572c2a03751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be6860a2f7e546c38dc53572c2a03751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be6860a2f7e546c38dc53572c2a03751.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iE1JNlF_eItbnhlAfDpk-d_UAz0=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.584968+00 2025-12-09 10:15:30.584972+00 15523 DL31224-1#蓝绿L码前幅烧花 SPMX-20240815310742 \N \N \N 1 \N [{"file_id": "d6ffdd1c-1279-486c-aeb7-689bdc0af568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "175e319fa7f948d6ba748cb2ecdc5549.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "175e319fa7f948d6ba748cb2ecdc5549.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "175e319fa7f948d6ba748cb2ecdc5549.jpg", "file_size": 16070, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#蓝绿L码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175e319fa7f948d6ba748cb2ecdc5549.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175e319fa7f948d6ba748cb2ecdc5549.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175e319fa7f948d6ba748cb2ecdc5549.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/175e319fa7f948d6ba748cb2ecdc5549.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/175e319fa7f948d6ba748cb2ecdc5549.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQpPlWlScHI0I6R8b3Y8rLwdpvg=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.587344+00 2025-12-09 10:15:30.587349+00 15524 85010#乱花 SPMX-20240815310745 \N \N \N 1 \N [{"file_id": "9ba69e2d-f6a2-452c-a6e8-5b145c062c24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab203728cde548908e2de83cef9080f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab203728cde548908e2de83cef9080f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab203728cde548908e2de83cef9080f3.jpg", "file_size": 5694, "is_delete": false, "file_type": 1, "original_file_name": "85010#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab203728cde548908e2de83cef9080f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab203728cde548908e2de83cef9080f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab203728cde548908e2de83cef9080f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab203728cde548908e2de83cef9080f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab203728cde548908e2de83cef9080f3.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olyP959cVXZ-pMQL8KRaR6qX-N8=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.589465+00 2025-12-09 10:15:30.589469+00 15525 FT21Z-TES-03H#女装黄色M SPMX-20240815310729 \N \N \N 1 \N [{"file_id": "b234aa47-c5be-45d8-bf4f-540b7a8c4278", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg", "file_size": 15494, "is_delete": false, "file_type": 1, "original_file_name": "FT21Z-TES-03H#女装黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c85a5ba8bf4d4dc9bcdfcb34900e4899.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMmOYeSWNOkh_FU0YnTRuaE6kPY=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.591595+00 2025-12-09 10:15:30.5916+00 15526 LZ1343#上身5号色 SPMX-20240815310734 \N \N \N 1 \N [{"file_id": "d2aee066-efb3-4c5e-b854-32774b62cd86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d95ce1462b874953bfdd96a6a8390e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d95ce1462b874953bfdd96a6a8390e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d95ce1462b874953bfdd96a6a8390e06.jpg", "file_size": 19185, "is_delete": false, "file_type": 1, "original_file_name": "LZ1343#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95ce1462b874953bfdd96a6a8390e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95ce1462b874953bfdd96a6a8390e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95ce1462b874953bfdd96a6a8390e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d95ce1462b874953bfdd96a6a8390e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d95ce1462b874953bfdd96a6a8390e06.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvE6VDEZy_5xTrfJlfxzx422MHw=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.594005+00 2025-12-09 10:15:30.594009+00 15527 FTJ041FWE#VS-D3 SPMX-20240815310741 \N \N \N 1 \N [{"file_id": "4a24f962-4774-4a92-9b08-fc983b6cd4df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea4d86f1c1924796a139587dd1dbbd88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea4d86f1c1924796a139587dd1dbbd88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea4d86f1c1924796a139587dd1dbbd88.jpg", "file_size": 24472, "is_delete": false, "file_type": 1, "original_file_name": "FTJ041FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4d86f1c1924796a139587dd1dbbd88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4d86f1c1924796a139587dd1dbbd88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4d86f1c1924796a139587dd1dbbd88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea4d86f1c1924796a139587dd1dbbd88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea4d86f1c1924796a139587dd1dbbd88.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:luwLUdUUxXI0MRWYCUOP5t-9ca0=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.596579+00 2025-12-09 10:15:30.596584+00 15528 CB08026#流星彩色L VS-D3 SPMX-20240815310731 \N \N \N 1 \N [{"file_id": "b1ebe224-4e50-482b-89af-904885945ffc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b649e3fda22645dd9534bcb199efff99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b649e3fda22645dd9534bcb199efff99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b649e3fda22645dd9534bcb199efff99.jpg", "file_size": 23536, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星彩色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649e3fda22645dd9534bcb199efff99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649e3fda22645dd9534bcb199efff99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649e3fda22645dd9534bcb199efff99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b649e3fda22645dd9534bcb199efff99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b649e3fda22645dd9534bcb199efff99.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0gnvhmNnLTacI9lxp_nByf9tflw=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.598964+00 2025-12-09 10:15:30.598968+00 15529 HW472899FWE#2XL VS-D3 SPMX-20240815310736 \N \N \N 1 \N [{"file_id": "eb79a924-dc65-47f9-a383-5667f2fd4f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce392a076234a1783d28c376de81980.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce392a076234a1783d28c376de81980.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce392a076234a1783d28c376de81980.jpg", "file_size": 17700, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce392a076234a1783d28c376de81980.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce392a076234a1783d28c376de81980.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce392a076234a1783d28c376de81980.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce392a076234a1783d28c376de81980.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce392a076234a1783d28c376de81980.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7oTc3GYC7qZ61WqVyVIQaqKT5QM=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.60159+00 2025-12-09 10:15:30.601594+00 15530 JTSS637FW#VS-D3 SPMX-20240815310730 \N \N \N 1 \N [{"file_id": "5c87bca8-2a2a-46f4-be60-c0b48fac0929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e939596f9b334d1d9343c281343491a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e939596f9b334d1d9343c281343491a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e939596f9b334d1d9343c281343491a0.jpg", "file_size": 17928, "is_delete": false, "file_type": 1, "original_file_name": "JTSS637FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e939596f9b334d1d9343c281343491a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e939596f9b334d1d9343c281343491a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e939596f9b334d1d9343c281343491a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e939596f9b334d1d9343c281343491a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e939596f9b334d1d9343c281343491a0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MtWku8CMR_6t6shLioFJxlFwR4=", "createTime": "2024-08-15 14:59:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.604023+00 2025-12-09 10:15:30.604027+00 15531 23-305#A17-领子4XL SPMX-20240815310738 \N \N \N 1 \N [{"file_id": "646c30fc-bf37-4189-b99f-9f4ab8cd0612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7736f943f424e63bd198766598b034f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7736f943f424e63bd198766598b034f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7736f943f424e63bd198766598b034f.jpg", "file_size": 14055, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A17-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7736f943f424e63bd198766598b034f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7736f943f424e63bd198766598b034f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7736f943f424e63bd198766598b034f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7736f943f424e63bd198766598b034f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7736f943f424e63bd198766598b034f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iG5ZT8YCe32sr6ESyl5pnRaVaGo=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.606653+00 2025-12-09 10:15:30.606657+00 15532 LJH1842#大红 SPMX-20240815310739 \N \N \N 1 \N [{"file_id": "e3f5b17e-739b-4dbb-9a33-b3257cd313a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "721f451fa3104bf6ac756f548d78ba2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "721f451fa3104bf6ac756f548d78ba2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "721f451fa3104bf6ac756f548d78ba2b.jpg", "file_size": 73259, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f451fa3104bf6ac756f548d78ba2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f451fa3104bf6ac756f548d78ba2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721f451fa3104bf6ac756f548d78ba2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/721f451fa3104bf6ac756f548d78ba2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/721f451fa3104bf6ac756f548d78ba2b.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:byo-kzRffqb5koMw9Fo6XVJHgFU=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.609054+00 2025-12-09 10:15:30.609058+00 15533 CB08026#流星彩色M VS-D3 SPMX-20240815310743 \N \N \N 1 \N [{"file_id": "31535f95-1398-411c-89ec-a501b85c949c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d308e49457824fe98bfd44d781c9cfaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d308e49457824fe98bfd44d781c9cfaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d308e49457824fe98bfd44d781c9cfaf.jpg", "file_size": 25067, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星彩色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d308e49457824fe98bfd44d781c9cfaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d308e49457824fe98bfd44d781c9cfaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d308e49457824fe98bfd44d781c9cfaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d308e49457824fe98bfd44d781c9cfaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d308e49457824fe98bfd44d781c9cfaf.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pYFPXpsZPMs8hyAmKvYdaXgTyvQ=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.611684+00 2025-12-09 10:15:30.611688+00 15534 LZ1344#上身1号色 SPMX-20240815310744 \N \N \N 1 \N [{"file_id": "d9207843-45c0-4cb8-9ad8-ddb44b670710", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57429ed144c44074877228f99ea43043.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57429ed144c44074877228f99ea43043.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57429ed144c44074877228f99ea43043.jpg", "file_size": 20077, "is_delete": false, "file_type": 1, "original_file_name": "LZ1344#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57429ed144c44074877228f99ea43043.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57429ed144c44074877228f99ea43043.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57429ed144c44074877228f99ea43043.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57429ed144c44074877228f99ea43043.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57429ed144c44074877228f99ea43043.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyAVJINAZ1oom_4ihBthFL5aiEs=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.614091+00 2025-12-09 10:15:30.614095+00 15535 DL31224-1#蓝绿2XL码前幅烧花 SPMX-20240815310732 \N \N \N 1 \N [{"file_id": "287d1fd2-ef11-44c9-9a2c-0046c8fe172a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f63f28d4d42400988612a6c7e9d1786.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f63f28d4d42400988612a6c7e9d1786.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f63f28d4d42400988612a6c7e9d1786.jpg", "file_size": 16439, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#蓝绿2XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63f28d4d42400988612a6c7e9d1786.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63f28d4d42400988612a6c7e9d1786.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f63f28d4d42400988612a6c7e9d1786.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f63f28d4d42400988612a6c7e9d1786.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f63f28d4d42400988612a6c7e9d1786.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxuO9H6Vk_xQMYmUoIkrmvoxFTA=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.616503+00 2025-12-09 10:15:30.616507+00 15536 1221FWE#红色下摆定位 SPMX-20240815310737 \N \N \N 1 \N [{"file_id": "0b7c8570-eb66-46a3-a4a6-3847bf3d1435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19683d45641d43d1802cf26ad0a4fe9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19683d45641d43d1802cf26ad0a4fe9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19683d45641d43d1802cf26ad0a4fe9a.jpg", "file_size": 14160, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19683d45641d43d1802cf26ad0a4fe9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19683d45641d43d1802cf26ad0a4fe9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19683d45641d43d1802cf26ad0a4fe9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19683d45641d43d1802cf26ad0a4fe9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19683d45641d43d1802cf26ad0a4fe9a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzqqtGg9xXHVAv89cSyr-I_Ou34=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.618628+00 2025-12-09 10:15:30.618632+00 15537 JTSS638FW#VS-D3 SPMX-20240815310740 \N \N \N 1 \N [{"file_id": "ceb5a1b1-10f7-4d88-ad79-0e179e4f8361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a246001d6c4e4770ae49414d5ed26522.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a246001d6c4e4770ae49414d5ed26522.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a246001d6c4e4770ae49414d5ed26522.jpg", "file_size": 13873, "is_delete": false, "file_type": 1, "original_file_name": "JTSS638FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a246001d6c4e4770ae49414d5ed26522.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a246001d6c4e4770ae49414d5ed26522.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a246001d6c4e4770ae49414d5ed26522.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a246001d6c4e4770ae49414d5ed26522.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a246001d6c4e4770ae49414d5ed26522.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PcW68Vp3iT8L2mm8i_A0cT1ZpHY=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.620814+00 2025-12-09 10:15:30.620819+00 15538 0006-52FWE#黑灰番禺调色 SPMX-20240815310735 \N \N \N 1 \N [{"file_id": "8ccacb41-bbe0-42f5-a1ea-6788906275e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c92eac071744e5693f6bf9b3376f724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c92eac071744e5693f6bf9b3376f724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c92eac071744e5693f6bf9b3376f724.jpg", "file_size": 13870, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWE#黑灰番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c92eac071744e5693f6bf9b3376f724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c92eac071744e5693f6bf9b3376f724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c92eac071744e5693f6bf9b3376f724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c92eac071744e5693f6bf9b3376f724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c92eac071744e5693f6bf9b3376f724.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zOiw8Dw7SvavlVDEUdt_J3487A=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.62318+00 2025-12-09 10:15:30.623184+00 15539 1221FWE#红色批布 SPMX-20240815310748 \N \N \N 1 \N [{"file_id": "0d6af150-1f9a-4464-be69-939e8867dd1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f57430ab0834600813d8099e12db8af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f57430ab0834600813d8099e12db8af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f57430ab0834600813d8099e12db8af.jpg", "file_size": 5131, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#红色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f57430ab0834600813d8099e12db8af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f57430ab0834600813d8099e12db8af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f57430ab0834600813d8099e12db8af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f57430ab0834600813d8099e12db8af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f57430ab0834600813d8099e12db8af.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FSzxCJiUJggkmcAqKQ0kQprslo=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.625557+00 2025-12-09 10:15:30.625562+00 15540 LJH1842#白色 SPMX-20240815310751 \N \N \N 1 \N [{"file_id": "6c5945b1-0125-49ad-accd-3ae5ae2a335e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3328fa2d82224b21a27d7db5f02d64a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3328fa2d82224b21a27d7db5f02d64a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3328fa2d82224b21a27d7db5f02d64a0.jpg", "file_size": 63887, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3328fa2d82224b21a27d7db5f02d64a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3328fa2d82224b21a27d7db5f02d64a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3328fa2d82224b21a27d7db5f02d64a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3328fa2d82224b21a27d7db5f02d64a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3328fa2d82224b21a27d7db5f02d64a0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KI1AYwYmUPSLnqxv2qCwDAVDg20=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.627687+00 2025-12-09 10:15:30.627692+00 15541 JTSS639FW#VS-D3 SPMX-20240815310750 \N \N \N 1 \N [{"file_id": "e2b03539-0fe8-4d17-8c74-a8d96399f3d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d41a56fbc48b4ff58a32b9792367e53a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d41a56fbc48b4ff58a32b9792367e53a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d41a56fbc48b4ff58a32b9792367e53a.jpg", "file_size": 10955, "is_delete": false, "file_type": 1, "original_file_name": "JTSS639FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41a56fbc48b4ff58a32b9792367e53a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41a56fbc48b4ff58a32b9792367e53a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41a56fbc48b4ff58a32b9792367e53a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d41a56fbc48b4ff58a32b9792367e53a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d41a56fbc48b4ff58a32b9792367e53a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ti6TRJR816D8unGJdTP0tNbs6Q=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.629793+00 2025-12-09 10:15:30.629797+00 15542 0006-52FWF#杏底 SPMX-20240815310746 \N \N \N 1 \N [{"file_id": "18577581-52e8-416b-835b-6cc21023ce61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b832af571c5442e28f1eeb0a134c4bde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b832af571c5442e28f1eeb0a134c4bde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b832af571c5442e28f1eeb0a134c4bde.jpg", "file_size": 15971, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b832af571c5442e28f1eeb0a134c4bde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b832af571c5442e28f1eeb0a134c4bde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b832af571c5442e28f1eeb0a134c4bde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b832af571c5442e28f1eeb0a134c4bde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b832af571c5442e28f1eeb0a134c4bde.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mbs9x4cQrzD2aX08rWIeJ0N1go=", "createTime": "2024-08-15 14:59:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.631904+00 2025-12-09 10:15:30.631908+00 15543 HW472899FWE#L VS-D3 SPMX-20240815310747 \N \N \N 1 \N [{"file_id": "76befa10-e29f-4cd1-a108-b5a95e2e20bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8b00bbfefb64f679a0c12b54acae829.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8b00bbfefb64f679a0c12b54acae829.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8b00bbfefb64f679a0c12b54acae829.jpg", "file_size": 21021, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b00bbfefb64f679a0c12b54acae829.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b00bbfefb64f679a0c12b54acae829.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8b00bbfefb64f679a0c12b54acae829.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8b00bbfefb64f679a0c12b54acae829.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8b00bbfefb64f679a0c12b54acae829.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wafWeMW7gIJHX_bmLg-b5FGiu-Y=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.634258+00 2025-12-09 10:15:30.634263+00 15544 HW472899FWE#M VS-D3 SPMX-20240815310756 \N \N \N 1 \N [{"file_id": "dc814e64-8387-4fe1-b5d7-32719bed55fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d56d58471d064b1598896522f691d911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d56d58471d064b1598896522f691d911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d56d58471d064b1598896522f691d911.jpg", "file_size": 22640, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56d58471d064b1598896522f691d911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56d58471d064b1598896522f691d911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d56d58471d064b1598896522f691d911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d56d58471d064b1598896522f691d911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d56d58471d064b1598896522f691d911.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:toH5Ov59lXkH9dS2YGeAwi3Ibjg=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.636504+00 2025-12-09 10:15:30.636509+00 15545 FV12100#L SPMX-20240815310752 \N \N \N 1 \N [{"file_id": "d908d540-3b32-4a3d-99c3-dce7b7144ae0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71c860b54c204bacb335c221dac74450.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71c860b54c204bacb335c221dac74450.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71c860b54c204bacb335c221dac74450.jpg", "file_size": 19302, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71c860b54c204bacb335c221dac74450.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71c860b54c204bacb335c221dac74450.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71c860b54c204bacb335c221dac74450.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71c860b54c204bacb335c221dac74450.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71c860b54c204bacb335c221dac74450.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQCaVlnqQUcatHGTnh1kz9wThHE=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.638843+00 2025-12-09 10:15:30.638847+00 15546 23-305#A2-3XL SPMX-20240815310749 \N \N \N 1 \N [{"file_id": "08360aad-588a-4668-aca5-0fe98f13243f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c1709bf6be84d4996ab9527b47bbaac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c1709bf6be84d4996ab9527b47bbaac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c1709bf6be84d4996ab9527b47bbaac.jpg", "file_size": 18560, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1709bf6be84d4996ab9527b47bbaac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1709bf6be84d4996ab9527b47bbaac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1709bf6be84d4996ab9527b47bbaac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c1709bf6be84d4996ab9527b47bbaac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c1709bf6be84d4996ab9527b47bbaac.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MPL7KZxYoOc1COsJdeWX9FDBdqo=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.640971+00 2025-12-09 10:15:30.640975+00 15547 CB08026#流星彩色S VS-D3 SPMX-20240815310753 \N \N \N 1 \N [{"file_id": "38a26f08-86a1-4c4c-91ba-e20f316b1574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeeed340d4694964b62f21026be3eb7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeeed340d4694964b62f21026be3eb7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeeed340d4694964b62f21026be3eb7c.jpg", "file_size": 26651, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星彩色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeeed340d4694964b62f21026be3eb7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeeed340d4694964b62f21026be3eb7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeeed340d4694964b62f21026be3eb7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeeed340d4694964b62f21026be3eb7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeeed340d4694964b62f21026be3eb7c.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5GyhBhIr1SW0qgT9arvDFADaQDs=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.64347+00 2025-12-09 10:15:30.643475+00 15548 JTSS640FW#VS-D3 SPMX-20240815310761 \N \N \N 1 \N [{"file_id": "0e497959-6237-44e3-87da-fe08ae0cfb09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffa405ada1404879a871f1dd7bf09d32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffa405ada1404879a871f1dd7bf09d32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffa405ada1404879a871f1dd7bf09d32.jpg", "file_size": 15772, "is_delete": false, "file_type": 1, "original_file_name": "JTSS640FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa405ada1404879a871f1dd7bf09d32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa405ada1404879a871f1dd7bf09d32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffa405ada1404879a871f1dd7bf09d32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffa405ada1404879a871f1dd7bf09d32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffa405ada1404879a871f1dd7bf09d32.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EosHetF5uSx61vHRVKH5i-l-yuc=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.646124+00 2025-12-09 10:15:30.64613+00 15549 85011#10码+12码 SPMX-20240815310759 \N \N \N 1 \N [{"file_id": "b343e8f6-560d-4563-8167-439c18a79483", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9afe1d070e654a5e8227a43738b18729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9afe1d070e654a5e8227a43738b18729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9afe1d070e654a5e8227a43738b18729.jpg", "file_size": 15705, "is_delete": false, "file_type": 1, "original_file_name": "85011#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afe1d070e654a5e8227a43738b18729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afe1d070e654a5e8227a43738b18729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afe1d070e654a5e8227a43738b18729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9afe1d070e654a5e8227a43738b18729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9afe1d070e654a5e8227a43738b18729.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:75WLh9hkAlNVf7Ag3C7h09JWoIg=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.648697+00 2025-12-09 10:15:30.648702+00 15550 23-305#A2-4XL SPMX-20240815310760 \N \N \N 1 \N [{"file_id": "bee39ad9-1672-40fe-b495-5e97c6529a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "399f03b12aa048c38ff5a102f0562f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "399f03b12aa048c38ff5a102f0562f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "399f03b12aa048c38ff5a102f0562f0e.jpg", "file_size": 17236, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399f03b12aa048c38ff5a102f0562f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399f03b12aa048c38ff5a102f0562f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399f03b12aa048c38ff5a102f0562f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/399f03b12aa048c38ff5a102f0562f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/399f03b12aa048c38ff5a102f0562f0e.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C59LrWisYakgt9xZCotrtK5k89A=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.651399+00 2025-12-09 10:15:30.651404+00 15551 0006-52FWF#白底 SPMX-20240815310755 \N \N \N 1 \N [{"file_id": "d48e5308-d7b8-452c-b5d0-9b3fc765b5bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7bc926324b1416aa100c7e62270304a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7bc926324b1416aa100c7e62270304a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7bc926324b1416aa100c7e62270304a.jpg", "file_size": 16646, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bc926324b1416aa100c7e62270304a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bc926324b1416aa100c7e62270304a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7bc926324b1416aa100c7e62270304a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7bc926324b1416aa100c7e62270304a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7bc926324b1416aa100c7e62270304a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BCdQS92b4HXYamtEri9zlhVmBGE=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.654023+00 2025-12-09 10:15:30.65403+00 15552 1221FWE#绿色2XL SPMX-20240815310757 \N \N \N 1 \N [{"file_id": "d4b2f0ee-4165-4f22-8131-ad243173196b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5f5976bd63d4a748dca5c8b27d500dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5f5976bd63d4a748dca5c8b27d500dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5f5976bd63d4a748dca5c8b27d500dd.jpg", "file_size": 12737, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f5976bd63d4a748dca5c8b27d500dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f5976bd63d4a748dca5c8b27d500dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5f5976bd63d4a748dca5c8b27d500dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5f5976bd63d4a748dca5c8b27d500dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5f5976bd63d4a748dca5c8b27d500dd.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8t0QLrP5i9rCIhcDm5gQAcNE50Y=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.65656+00 2025-12-09 10:15:30.656565+00 15553 DL31224-1#蓝绿XL码前幅烧花 SPMX-20240815310754 \N \N \N 1 \N [{"file_id": "8d21e422-2758-41f3-b5b2-45896ead34c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f9ab15f40f144298eba3d6fea6e7523.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f9ab15f40f144298eba3d6fea6e7523.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f9ab15f40f144298eba3d6fea6e7523.jpg", "file_size": 16145, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#蓝绿XL码前幅烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9ab15f40f144298eba3d6fea6e7523.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9ab15f40f144298eba3d6fea6e7523.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9ab15f40f144298eba3d6fea6e7523.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f9ab15f40f144298eba3d6fea6e7523.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f9ab15f40f144298eba3d6fea6e7523.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZZmBmspI-YBGTJZJfWZ6a0oKj0=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.659106+00 2025-12-09 10:15:30.659112+00 15554 LZ1344#上身2号色 SPMX-20240815310758 \N \N \N 1 \N [{"file_id": "42fe637b-5775-425c-88c1-c8d18995ab3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db07c6426cc24a44a0b26181bd08c30f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db07c6426cc24a44a0b26181bd08c30f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db07c6426cc24a44a0b26181bd08c30f.jpg", "file_size": 19671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1344#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db07c6426cc24a44a0b26181bd08c30f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db07c6426cc24a44a0b26181bd08c30f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db07c6426cc24a44a0b26181bd08c30f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db07c6426cc24a44a0b26181bd08c30f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db07c6426cc24a44a0b26181bd08c30f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bLx2JNU-wTY0jHn4VD5IBIc_wOI=", "createTime": "2024-08-15 14:59:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.66166+00 2025-12-09 10:15:30.661666+00 15555 23-305#A2-领子3XL SPMX-20240815310769 \N \N \N 1 \N [{"file_id": "3206bc55-3ac6-407c-b2a3-c77032f6a75b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b3edce6740a4e9bb5400a57f5717530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b3edce6740a4e9bb5400a57f5717530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b3edce6740a4e9bb5400a57f5717530.jpg", "file_size": 11969, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3edce6740a4e9bb5400a57f5717530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3edce6740a4e9bb5400a57f5717530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3edce6740a4e9bb5400a57f5717530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b3edce6740a4e9bb5400a57f5717530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b3edce6740a4e9bb5400a57f5717530.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JEtcisZdv1r09dHIMyakFQ_lw9s=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.664195+00 2025-12-09 10:15:30.664201+00 15556 85011#14码 SPMX-20240815310771 \N \N \N 1 \N [{"file_id": "fe6866c5-ea3d-4dee-8ed8-e44ff200bf49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b404e04ced4f188d928fb993f8a9ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b404e04ced4f188d928fb993f8a9ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b404e04ced4f188d928fb993f8a9ed.jpg", "file_size": 14115, "is_delete": false, "file_type": 1, "original_file_name": "85011#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b404e04ced4f188d928fb993f8a9ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b404e04ced4f188d928fb993f8a9ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b404e04ced4f188d928fb993f8a9ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b404e04ced4f188d928fb993f8a9ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b404e04ced4f188d928fb993f8a9ed.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRsI4ZocCuBDvgi-qzDcui9Qqow=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.666617+00 2025-12-09 10:15:30.666622+00 15557 CB08026#流星彩色XL VS-D3 SPMX-20240815310765 \N \N \N 1 \N [{"file_id": "0eff944a-7010-4ec9-b067-ed566abd7b01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1a59bac41d84efcb438d89106c5e7e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1a59bac41d84efcb438d89106c5e7e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1a59bac41d84efcb438d89106c5e7e3.jpg", "file_size": 23582, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星彩色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a59bac41d84efcb438d89106c5e7e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a59bac41d84efcb438d89106c5e7e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a59bac41d84efcb438d89106c5e7e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1a59bac41d84efcb438d89106c5e7e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1a59bac41d84efcb438d89106c5e7e3.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eh5BDCCuHxV8-BVoY0zKVVY_xqU=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.669176+00 2025-12-09 10:15:30.669182+00 15558 0006-52FWF#绿底 SPMX-20240815310766 \N \N \N 1 \N [{"file_id": "b8e8502c-cc62-4c7e-9097-2989288e0ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65ca33ea0604476a9653a05a4769acab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65ca33ea0604476a9653a05a4769acab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65ca33ea0604476a9653a05a4769acab.jpg", "file_size": 14861, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ca33ea0604476a9653a05a4769acab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ca33ea0604476a9653a05a4769acab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ca33ea0604476a9653a05a4769acab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65ca33ea0604476a9653a05a4769acab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65ca33ea0604476a9653a05a4769acab.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ywted0nIfAx1CGHcROE1xTGUQDo=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.67172+00 2025-12-09 10:15:30.671726+00 15559 HW472899FWE#S VS-D3 SPMX-20240815310767 \N \N \N 1 \N [{"file_id": "a9825705-37a0-4e73-ac43-084488d3b34f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9707cb4d2c7b4b419ffc446bad17afcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9707cb4d2c7b4b419ffc446bad17afcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9707cb4d2c7b4b419ffc446bad17afcc.jpg", "file_size": 22305, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9707cb4d2c7b4b419ffc446bad17afcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9707cb4d2c7b4b419ffc446bad17afcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9707cb4d2c7b4b419ffc446bad17afcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9707cb4d2c7b4b419ffc446bad17afcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9707cb4d2c7b4b419ffc446bad17afcc.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WxAJQg3kMazpplnetCEjYLnYGgc=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.674224+00 2025-12-09 10:15:30.67423+00 15560 FV12100#M SPMX-20240815310762 \N \N \N 1 \N [{"file_id": "dd5f6641-f3ff-40da-8332-c310f3c18ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d60133dbe954a7f817008ae7d5df770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d60133dbe954a7f817008ae7d5df770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d60133dbe954a7f817008ae7d5df770.jpg", "file_size": 19012, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d60133dbe954a7f817008ae7d5df770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d60133dbe954a7f817008ae7d5df770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d60133dbe954a7f817008ae7d5df770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d60133dbe954a7f817008ae7d5df770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d60133dbe954a7f817008ae7d5df770.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1d5J6DPLKlBtu5FcByD0ivARJuM=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.676768+00 2025-12-09 10:15:30.676774+00 15561 DL31224-1#蓝绿袖子定位裁 SPMX-20240815310764 \N \N \N 1 \N [{"file_id": "94a46ca2-0024-412e-936b-d23290649162", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff94ad893afd4e5dbafa79c16ef1e826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff94ad893afd4e5dbafa79c16ef1e826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff94ad893afd4e5dbafa79c16ef1e826.jpg", "file_size": 12290, "is_delete": false, "file_type": 1, "original_file_name": "DL31224-1#蓝绿袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff94ad893afd4e5dbafa79c16ef1e826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff94ad893afd4e5dbafa79c16ef1e826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff94ad893afd4e5dbafa79c16ef1e826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff94ad893afd4e5dbafa79c16ef1e826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff94ad893afd4e5dbafa79c16ef1e826.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_wFRYI_oX1LWgaZJgJNSge0UoU=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.679352+00 2025-12-09 10:15:30.679358+00 15562 LZ1344#上身3号色 SPMX-20240815310770 \N \N \N 1 \N [{"file_id": "6e7edf10-8df5-43d7-bc05-2ca01d06e29e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3abd35e33a97471d8a5a1bc1a68fc135.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3abd35e33a97471d8a5a1bc1a68fc135.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3abd35e33a97471d8a5a1bc1a68fc135.jpg", "file_size": 20231, "is_delete": false, "file_type": 1, "original_file_name": "LZ1344#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd35e33a97471d8a5a1bc1a68fc135.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd35e33a97471d8a5a1bc1a68fc135.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd35e33a97471d8a5a1bc1a68fc135.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3abd35e33a97471d8a5a1bc1a68fc135.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3abd35e33a97471d8a5a1bc1a68fc135.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4FW73Gz2BihG5LfiNWxLFT69o7k=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.681894+00 2025-12-09 10:15:30.681899+00 15563 1221FWE#绿色3XL SPMX-20240815310768 \N \N \N 1 \N [{"file_id": "bbaba5b9-8bcb-4a6b-a589-ac1a3fe9690e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44c5d4bd904c4addb03ccf0d16016a54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44c5d4bd904c4addb03ccf0d16016a54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44c5d4bd904c4addb03ccf0d16016a54.jpg", "file_size": 12923, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c5d4bd904c4addb03ccf0d16016a54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c5d4bd904c4addb03ccf0d16016a54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c5d4bd904c4addb03ccf0d16016a54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44c5d4bd904c4addb03ccf0d16016a54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44c5d4bd904c4addb03ccf0d16016a54.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kcCcZqJyW5XM1fysPMzbVbsCPxw=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.684454+00 2025-12-09 10:15:30.68446+00 15564 LJH1842#粉红 SPMX-20240815310763 \N \N \N 1 \N [{"file_id": "1b1711e5-8ad3-4b7e-8918-2caf6e854a66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15879ece51474851a97536a62f0dd641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15879ece51474851a97536a62f0dd641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15879ece51474851a97536a62f0dd641.jpg", "file_size": 59209, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842#粉红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15879ece51474851a97536a62f0dd641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15879ece51474851a97536a62f0dd641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15879ece51474851a97536a62f0dd641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15879ece51474851a97536a62f0dd641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15879ece51474851a97536a62f0dd641.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgyPF8sglp5fZw0g5p7--uV0bQM=", "createTime": "2024-08-15 14:59:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.686985+00 2025-12-09 10:15:30.68699+00 15565 DL31253#上身墨绿 SPMX-20240815310778 \N \N \N 1 \N [{"file_id": "b7706802-275c-4c71-a894-cbecb9d8419e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c19c6fedb5f2431cbd614fb1accee11d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c19c6fedb5f2431cbd614fb1accee11d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c19c6fedb5f2431cbd614fb1accee11d.jpg", "file_size": 14738, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#上身墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19c6fedb5f2431cbd614fb1accee11d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19c6fedb5f2431cbd614fb1accee11d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c19c6fedb5f2431cbd614fb1accee11d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c19c6fedb5f2431cbd614fb1accee11d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c19c6fedb5f2431cbd614fb1accee11d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GESkE-L6MfwZ6PF4zo6IY3eUisg=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.689534+00 2025-12-09 10:15:30.689539+00 15566 0006-52FWF#绿底番禺调色 SPMX-20240815310779 \N \N \N 1 \N [{"file_id": "e82f68c6-d466-4a7a-a589-b5a08823bed3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8015d50f0d3b42e0876419f87b8ffadc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8015d50f0d3b42e0876419f87b8ffadc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8015d50f0d3b42e0876419f87b8ffadc.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#绿底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8015d50f0d3b42e0876419f87b8ffadc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8015d50f0d3b42e0876419f87b8ffadc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8015d50f0d3b42e0876419f87b8ffadc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8015d50f0d3b42e0876419f87b8ffadc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8015d50f0d3b42e0876419f87b8ffadc.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRXNYN7GrGSdq2UYX9IHqNaCXzc=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.692087+00 2025-12-09 10:15:30.692093+00 15567 1221FWE#绿色4XL SPMX-20240815310774 \N \N \N 1 \N [{"file_id": "bc4fdb1f-1d4f-4bca-b63a-9ce40242ff9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "721d6d76ad674112ba845f48f3198fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "721d6d76ad674112ba845f48f3198fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "721d6d76ad674112ba845f48f3198fd0.jpg", "file_size": 8148, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721d6d76ad674112ba845f48f3198fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721d6d76ad674112ba845f48f3198fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/721d6d76ad674112ba845f48f3198fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/721d6d76ad674112ba845f48f3198fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/721d6d76ad674112ba845f48f3198fd0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-4pWOM1iz_Bpt0jdNzgdnr-VuO0=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.694603+00 2025-12-09 10:15:30.694609+00 15568 LZ1344#上身4号色 SPMX-20240815310775 \N \N \N 1 \N [{"file_id": "731592e6-45ae-4154-b1d4-a8741acaa877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc5240feb504ce9951bb1b63925ed44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc5240feb504ce9951bb1b63925ed44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc5240feb504ce9951bb1b63925ed44.jpg", "file_size": 19187, "is_delete": false, "file_type": 1, "original_file_name": "LZ1344#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc5240feb504ce9951bb1b63925ed44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc5240feb504ce9951bb1b63925ed44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc5240feb504ce9951bb1b63925ed44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc5240feb504ce9951bb1b63925ed44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc5240feb504ce9951bb1b63925ed44.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PEXFi1nS2I9qikm1srs51OznKzc=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.697114+00 2025-12-09 10:15:30.69712+00 15569 JTSS641FW#白VS-D3 SPMX-20240815310772 \N \N \N 1 \N [{"file_id": "f26f48d9-1bbd-4cd4-af0a-1ca56d288525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68c8f82ab83147759752eb6b07127420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68c8f82ab83147759752eb6b07127420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68c8f82ab83147759752eb6b07127420.jpg", "file_size": 16421, "is_delete": false, "file_type": 1, "original_file_name": "JTSS641FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c8f82ab83147759752eb6b07127420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c8f82ab83147759752eb6b07127420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c8f82ab83147759752eb6b07127420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68c8f82ab83147759752eb6b07127420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68c8f82ab83147759752eb6b07127420.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ET-kJOekxzlUo7iuppGwpOhUfDo=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.699614+00 2025-12-09 10:15:30.699621+00 15570 HW472899FWE#XL VS-D3 SPMX-20240815310776 \N \N \N 1 \N [{"file_id": "1d75e9c8-b8d1-4d39-83e3-5accd5bf7176", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87b3b97ec63d4ed9bf19b100064bad2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87b3b97ec63d4ed9bf19b100064bad2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87b3b97ec63d4ed9bf19b100064bad2a.jpg", "file_size": 18502, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b3b97ec63d4ed9bf19b100064bad2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b3b97ec63d4ed9bf19b100064bad2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b3b97ec63d4ed9bf19b100064bad2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87b3b97ec63d4ed9bf19b100064bad2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87b3b97ec63d4ed9bf19b100064bad2a.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2-oYVNkJUZn6Nki720TVXP8sxQ=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.702204+00 2025-12-09 10:15:30.702211+00 15571 LJH1842#黑色 SPMX-20240815310773 \N \N \N 1 \N [{"file_id": "595392a9-5a37-4596-b67c-7d8728dbf758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg", "file_size": 69016, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3e28c79cc9f49a69389a6e3d3d8c8a2.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-V9vPKQ8kTbotQ-uMISYVwAklT0=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.704719+00 2025-12-09 10:15:30.704725+00 15572 85011#4码+8码 SPMX-20240815310777 \N \N \N 1 \N [{"file_id": "989e19b4-0f4f-4d24-b257-1ce21452954c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca6d0b2bdd304d818ca3702203d513f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca6d0b2bdd304d818ca3702203d513f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca6d0b2bdd304d818ca3702203d513f0.jpg", "file_size": 15590, "is_delete": false, "file_type": 1, "original_file_name": "85011#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca6d0b2bdd304d818ca3702203d513f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca6d0b2bdd304d818ca3702203d513f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca6d0b2bdd304d818ca3702203d513f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca6d0b2bdd304d818ca3702203d513f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca6d0b2bdd304d818ca3702203d513f0.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eR3IfCH5AhxJRfyjLElSa56noxc=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.707305+00 2025-12-09 10:15:30.707311+00 15573 1221FWE#绿色L SPMX-20240815310783 \N \N \N 1 \N [{"file_id": "6c7e4a67-ac34-449e-9b5b-335ef0c4b93a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd7d9c99742e400dbbcf2071301f545f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd7d9c99742e400dbbcf2071301f545f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd7d9c99742e400dbbcf2071301f545f.jpg", "file_size": 12047, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d9c99742e400dbbcf2071301f545f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d9c99742e400dbbcf2071301f545f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d9c99742e400dbbcf2071301f545f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd7d9c99742e400dbbcf2071301f545f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd7d9c99742e400dbbcf2071301f545f.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHejLa9bCOpEa1LZtAAbMu6VhO8=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.709839+00 2025-12-09 10:15:30.709845+00 15574 HW472899FWE#批布VS-D3 SPMX-20240815310787 \N \N \N 1 \N [{"file_id": "0ebf2014-c202-4bc0-a9e3-487c6b00b623", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aa64958ce55453094dd24b96ba112de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aa64958ce55453094dd24b96ba112de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aa64958ce55453094dd24b96ba112de.jpg", "file_size": 10236, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#批布VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa64958ce55453094dd24b96ba112de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa64958ce55453094dd24b96ba112de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aa64958ce55453094dd24b96ba112de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aa64958ce55453094dd24b96ba112de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aa64958ce55453094dd24b96ba112de.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EotIqx74sG_O_DEyr2bv0mJCa0I=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.71247+00 2025-12-09 10:15:30.712477+00 15575 LZ1344#上身5号色 SPMX-20240815310784 \N \N \N 1 \N [{"file_id": "0c4465c9-968c-4345-a5cd-25b9d0b9bf7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bbfc22bcf454fac994d4f1911a2e06d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bbfc22bcf454fac994d4f1911a2e06d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bbfc22bcf454fac994d4f1911a2e06d.jpg", "file_size": 20474, "is_delete": false, "file_type": 1, "original_file_name": "LZ1344#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bbfc22bcf454fac994d4f1911a2e06d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bbfc22bcf454fac994d4f1911a2e06d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bbfc22bcf454fac994d4f1911a2e06d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bbfc22bcf454fac994d4f1911a2e06d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bbfc22bcf454fac994d4f1911a2e06d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEnQ8H4qSLIXAyFn2vI5RvImSf8=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.715022+00 2025-12-09 10:15:30.715028+00 15576 LJH1842-1#蓝 SPMX-20240815310785 \N \N \N 1 \N [{"file_id": "d021db5a-3345-41a3-90de-605ca90281ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdec3fda48df4efd9ffe353056e35915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdec3fda48df4efd9ffe353056e35915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdec3fda48df4efd9ffe353056e35915.jpg", "file_size": 55026, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842-1#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdec3fda48df4efd9ffe353056e35915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdec3fda48df4efd9ffe353056e35915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdec3fda48df4efd9ffe353056e35915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdec3fda48df4efd9ffe353056e35915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdec3fda48df4efd9ffe353056e35915.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oKhOVrhle39EqNIt7bRypOePy9c=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.717573+00 2025-12-09 10:15:30.717578+00 15577 FV12100#补片L码 SPMX-20240815310786 \N \N \N 1 \N [{"file_id": "a3d2fae3-82cb-4958-ae3a-92653ef18463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaeb326d6891442580f09d0fa6aa14e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaeb326d6891442580f09d0fa6aa14e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaeb326d6891442580f09d0fa6aa14e9.jpg", "file_size": 19659, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#补片L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeb326d6891442580f09d0fa6aa14e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeb326d6891442580f09d0fa6aa14e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeb326d6891442580f09d0fa6aa14e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaeb326d6891442580f09d0fa6aa14e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaeb326d6891442580f09d0fa6aa14e9.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ByeLoTDXiFINGLfmnksBHLV-dWg=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.72016+00 2025-12-09 10:15:30.720167+00 15578 CB08026#流星红色2XL VS-D3 SPMX-20240815310781 \N \N \N 1 \N [{"file_id": "4821bdca-f175-4d13-83dd-25763cfe37a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efdf3999f12d43beaa36edd0fa7a5fdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efdf3999f12d43beaa36edd0fa7a5fdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efdf3999f12d43beaa36edd0fa7a5fdf.jpg", "file_size": 22246, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星红色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdf3999f12d43beaa36edd0fa7a5fdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdf3999f12d43beaa36edd0fa7a5fdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efdf3999f12d43beaa36edd0fa7a5fdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efdf3999f12d43beaa36edd0fa7a5fdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efdf3999f12d43beaa36edd0fa7a5fdf.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7OmP6dlhjCX7uQNM69W1L8srysA=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.722731+00 2025-12-09 10:15:30.722736+00 15579 85011#6码 SPMX-20240815310788 \N \N \N 1 \N [{"file_id": "06f84eb5-7575-4ef7-a4f0-6d1db8bc62ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd7d7216fd194aee998b0ae15ab23ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd7d7216fd194aee998b0ae15ab23ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd7d7216fd194aee998b0ae15ab23ef6.jpg", "file_size": 15518, "is_delete": false, "file_type": 1, "original_file_name": "85011#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d7216fd194aee998b0ae15ab23ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d7216fd194aee998b0ae15ab23ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7d7216fd194aee998b0ae15ab23ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd7d7216fd194aee998b0ae15ab23ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd7d7216fd194aee998b0ae15ab23ef6.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xyYrYLzx2ElmHntwGoy11oZTPa4=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.725298+00 2025-12-09 10:15:30.725303+00 15580 FV12100#S SPMX-20240815310780 \N \N \N 1 \N [{"file_id": "f5e1446c-2eaa-48af-8100-73d39ff0d8fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0c3e2271d24c748f6a06445e590951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0c3e2271d24c748f6a06445e590951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0c3e2271d24c748f6a06445e590951.jpg", "file_size": 18499, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0c3e2271d24c748f6a06445e590951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0c3e2271d24c748f6a06445e590951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0c3e2271d24c748f6a06445e590951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0c3e2271d24c748f6a06445e590951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0c3e2271d24c748f6a06445e590951.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrhrX1Exje7jdKRlFSZkLEHWhGg=", "createTime": "2024-08-15 14:59:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.727824+00 2025-12-09 10:15:30.72783+00 15581 23-305#A2-领子4XL SPMX-20240815310782 \N \N \N 1 \N [{"file_id": "7d5c1111-00ff-407b-acc1-71fb43f367ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b7be211146b4093886e2fa7a7d3d005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b7be211146b4093886e2fa7a7d3d005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b7be211146b4093886e2fa7a7d3d005.jpg", "file_size": 12314, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7be211146b4093886e2fa7a7d3d005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7be211146b4093886e2fa7a7d3d005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b7be211146b4093886e2fa7a7d3d005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b7be211146b4093886e2fa7a7d3d005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b7be211146b4093886e2fa7a7d3d005.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZE6Ex5R7elFwTdQbWA7YC-28x7M=", "createTime": "2024-08-15 14:59:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.730346+00 2025-12-09 10:15:30.730351+00 15582 FV12100#补片M码 SPMX-20240815310799 \N \N \N 1 \N [{"file_id": "d810ebc4-76a4-40d9-b060-ccae09ec5a1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "568d7839614e4d348aaf215d25651f5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "568d7839614e4d348aaf215d25651f5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "568d7839614e4d348aaf215d25651f5d.jpg", "file_size": 22083, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#补片M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568d7839614e4d348aaf215d25651f5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568d7839614e4d348aaf215d25651f5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/568d7839614e4d348aaf215d25651f5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/568d7839614e4d348aaf215d25651f5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/568d7839614e4d348aaf215d25651f5d.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vn0DbrLzCtboVsscXUH7-lgl2zw=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:30.732928+00 2025-12-09 10:15:30.732934+00 15583 0006-52FWF#黄底番禺调色 SPMX-20240815310801 \N \N \N 1 \N [{"file_id": "c7994e5c-2870-4687-84e2-86b5b411dc44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21dcbf8a1a114faa9a281456e4f67a56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21dcbf8a1a114faa9a281456e4f67a56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21dcbf8a1a114faa9a281456e4f67a56.jpg", "file_size": 16291, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#黄底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dcbf8a1a114faa9a281456e4f67a56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dcbf8a1a114faa9a281456e4f67a56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21dcbf8a1a114faa9a281456e4f67a56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21dcbf8a1a114faa9a281456e4f67a56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21dcbf8a1a114faa9a281456e4f67a56.jpg?e=1765361729&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCqOgUcPEGhrPGM_42VPm9lGJuc=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.374874+00 2025-12-09 10:15:31.374886+00 15584 HW472899FWE#袖子2XL VS-D3 SPMX-20240815310798 \N \N \N 1 \N [{"file_id": "30ea8107-6948-4ebb-a1e0-496e7c847deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e12eb9e14ea4d67a007bdbf78cc190f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e12eb9e14ea4d67a007bdbf78cc190f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e12eb9e14ea4d67a007bdbf78cc190f.jpg", "file_size": 11527, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#袖子2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e12eb9e14ea4d67a007bdbf78cc190f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e12eb9e14ea4d67a007bdbf78cc190f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e12eb9e14ea4d67a007bdbf78cc190f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e12eb9e14ea4d67a007bdbf78cc190f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e12eb9e14ea4d67a007bdbf78cc190f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRk8EcS6uDd5qn3Sw31_cPQuvYw=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.378846+00 2025-12-09 10:15:31.378859+00 15585 CB08026#流星红色L VS-D3 SPMX-20240815310791 \N \N \N 1 \N [{"file_id": "2c5ffc55-b75a-4ce7-b2af-654d2e411f7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c33ef42deb7a4c84af65060efc6f7d89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c33ef42deb7a4c84af65060efc6f7d89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c33ef42deb7a4c84af65060efc6f7d89.jpg", "file_size": 23420, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星红色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33ef42deb7a4c84af65060efc6f7d89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33ef42deb7a4c84af65060efc6f7d89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c33ef42deb7a4c84af65060efc6f7d89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c33ef42deb7a4c84af65060efc6f7d89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c33ef42deb7a4c84af65060efc6f7d89.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tB5ttGTtKJ1d8pBmI-xTmAloWvs=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.381971+00 2025-12-09 10:15:31.381977+00 15586 LJH1842-1#黄 SPMX-20240815310796 \N \N \N 1 \N [{"file_id": "20e0d8b2-c32a-4b27-8e34-55fbedf2569b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "196ca45cc16a46099afe213b6100b4e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "196ca45cc16a46099afe213b6100b4e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "196ca45cc16a46099afe213b6100b4e7.jpg", "file_size": 52876, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842-1#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196ca45cc16a46099afe213b6100b4e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196ca45cc16a46099afe213b6100b4e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/196ca45cc16a46099afe213b6100b4e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/196ca45cc16a46099afe213b6100b4e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/196ca45cc16a46099afe213b6100b4e7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_PX1ZQyI7xpzwFWjldjbBr8WoYE=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.384662+00 2025-12-09 10:15:31.384668+00 15587 DL31253#上身大红 SPMX-20240815310792 \N \N \N 1 \N [{"file_id": "58afd9d7-70a3-477e-ace3-ecc571a8bbea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d318f0dffef241bbad3085eacce23c2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d318f0dffef241bbad3085eacce23c2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d318f0dffef241bbad3085eacce23c2f.jpg", "file_size": 15311, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#上身大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d318f0dffef241bbad3085eacce23c2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d318f0dffef241bbad3085eacce23c2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d318f0dffef241bbad3085eacce23c2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d318f0dffef241bbad3085eacce23c2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d318f0dffef241bbad3085eacce23c2f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zMPg3MJkncsvc5hQ0Wuiz_SusG8=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.387287+00 2025-12-09 10:15:31.387292+00 15588 85011#乱花 SPMX-20240815310797 \N \N \N 1 \N [{"file_id": "fec3cd01-9740-4eb4-8751-d4dd917c4f2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e9f7247532499688819c1bb8e87493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e9f7247532499688819c1bb8e87493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e9f7247532499688819c1bb8e87493.jpg", "file_size": 5612, "is_delete": false, "file_type": 1, "original_file_name": "85011#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e9f7247532499688819c1bb8e87493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e9f7247532499688819c1bb8e87493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e9f7247532499688819c1bb8e87493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e9f7247532499688819c1bb8e87493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e9f7247532499688819c1bb8e87493.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sjgTaLbgUyd-ukN_UGoFftnLy0=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.389911+00 2025-12-09 10:15:31.389917+00 15589 CB08026#流星红色M VS-D3 SPMX-20240815310802 \N \N \N 1 \N [{"file_id": "3b076a00-68b5-4f72-950d-5dcf2cafd73d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59e237bed4d24c108214c3be684bd31a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59e237bed4d24c108214c3be684bd31a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59e237bed4d24c108214c3be684bd31a.jpg", "file_size": 25104, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星红色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e237bed4d24c108214c3be684bd31a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e237bed4d24c108214c3be684bd31a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e237bed4d24c108214c3be684bd31a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59e237bed4d24c108214c3be684bd31a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59e237bed4d24c108214c3be684bd31a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IN5T_PcFdu3Qbe0CRNHgyqhYqQk=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.392688+00 2025-12-09 10:15:31.392694+00 15590 1221FWE#绿色XL SPMX-20240815310794 \N \N \N 1 \N [{"file_id": "16e7b79a-5587-442f-9b2e-eef7ee949ce9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b93c5c82c4814d19934965019b8931ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b93c5c82c4814d19934965019b8931ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b93c5c82c4814d19934965019b8931ef.jpg", "file_size": 12330, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c5c82c4814d19934965019b8931ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c5c82c4814d19934965019b8931ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93c5c82c4814d19934965019b8931ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b93c5c82c4814d19934965019b8931ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b93c5c82c4814d19934965019b8931ef.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omo_9cVxz869p5J7p05AnBNdjVA=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.395335+00 2025-12-09 10:15:31.39534+00 15591 JTSS641FW#红VS-D3 SPMX-20240815310800 \N \N \N 1 \N [{"file_id": "4b60904f-29c5-4461-b4e3-56c584f4868f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68c945c25b204de687b8f1d089e3bae6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68c945c25b204de687b8f1d089e3bae6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68c945c25b204de687b8f1d089e3bae6.jpg", "file_size": 18691, "is_delete": false, "file_type": 1, "original_file_name": "JTSS641FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c945c25b204de687b8f1d089e3bae6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c945c25b204de687b8f1d089e3bae6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68c945c25b204de687b8f1d089e3bae6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68c945c25b204de687b8f1d089e3bae6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68c945c25b204de687b8f1d089e3bae6.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cx4YyiSrmPGXJdiPJ9TMsQIxr-Y=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.397923+00 2025-12-09 10:15:31.397928+00 15592 23-305#A3-4XL SPMX-20240815310803 \N \N \N 1 \N [{"file_id": "31fd0861-8adc-4ac0-83f9-0e121b8ef0cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c453f85f7494bda87f72ed78b3d2247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c453f85f7494bda87f72ed78b3d2247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c453f85f7494bda87f72ed78b3d2247.jpg", "file_size": 21899, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c453f85f7494bda87f72ed78b3d2247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c453f85f7494bda87f72ed78b3d2247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c453f85f7494bda87f72ed78b3d2247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c453f85f7494bda87f72ed78b3d2247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c453f85f7494bda87f72ed78b3d2247.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYwtYffW7AyeV6z7i589akwNMYg=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.400504+00 2025-12-09 10:15:31.40051+00 15593 JTSS641FW#粉VS-D3 SPMX-20240815310789 \N \N \N 1 \N [{"file_id": "e1a55cf4-e9a9-4102-beec-b8811c0b66d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "735cd83b4b5148d683f16b37b8bb0432.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "735cd83b4b5148d683f16b37b8bb0432.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "735cd83b4b5148d683f16b37b8bb0432.jpg", "file_size": 16567, "is_delete": false, "file_type": 1, "original_file_name": "JTSS641FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd83b4b5148d683f16b37b8bb0432.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd83b4b5148d683f16b37b8bb0432.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735cd83b4b5148d683f16b37b8bb0432.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/735cd83b4b5148d683f16b37b8bb0432.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/735cd83b4b5148d683f16b37b8bb0432.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SL-gQnCer-KDL_kri65nPg8fDc=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.403136+00 2025-12-09 10:15:31.403141+00 15594 LZ1345#上身1号色 SPMX-20240815310795 \N \N \N 1 \N [{"file_id": "7a298c98-e78d-404d-8768-9e789794a644", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae5698ee4f242b6aabcc8b4d3a316a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae5698ee4f242b6aabcc8b4d3a316a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae5698ee4f242b6aabcc8b4d3a316a0.jpg", "file_size": 17836, "is_delete": false, "file_type": 1, "original_file_name": "LZ1345#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae5698ee4f242b6aabcc8b4d3a316a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae5698ee4f242b6aabcc8b4d3a316a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae5698ee4f242b6aabcc8b4d3a316a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae5698ee4f242b6aabcc8b4d3a316a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae5698ee4f242b6aabcc8b4d3a316a0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fvx8ZEiPrvf9Zw0f-9Ecixhaog0=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.405894+00 2025-12-09 10:15:31.405899+00 15595 23-305#A3-3XL SPMX-20240815310793 \N \N \N 1 \N [{"file_id": "79ad48da-194f-40f8-ae4e-b89f5ff487da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d39aa0288d0411d9e6ed99867a22c34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d39aa0288d0411d9e6ed99867a22c34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d39aa0288d0411d9e6ed99867a22c34.jpg", "file_size": 23186, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d39aa0288d0411d9e6ed99867a22c34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d39aa0288d0411d9e6ed99867a22c34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d39aa0288d0411d9e6ed99867a22c34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d39aa0288d0411d9e6ed99867a22c34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d39aa0288d0411d9e6ed99867a22c34.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLxIR2lwqjPPRodGzldgkk4wPIE=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.408608+00 2025-12-09 10:15:31.408613+00 15596 0006-52FWF#黄底 SPMX-20240815310790 \N \N \N 1 \N [{"file_id": "ae30d018-2930-4f72-8041-3e89adcfb531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b3cfb7b40124623aed9178490a1cb5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b3cfb7b40124623aed9178490a1cb5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b3cfb7b40124623aed9178490a1cb5e.jpg", "file_size": 15793, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3cfb7b40124623aed9178490a1cb5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3cfb7b40124623aed9178490a1cb5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b3cfb7b40124623aed9178490a1cb5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b3cfb7b40124623aed9178490a1cb5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b3cfb7b40124623aed9178490a1cb5e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdX3X_LeFdAXTMV_Vo9680UJCoU=", "createTime": "2024-08-15 14:59:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.411318+00 2025-12-09 10:15:31.411324+00 15597 1221FWE#绿色下摆定位 SPMX-20240815310804 \N \N \N 1 \N [{"file_id": "18959902-98d0-4603-a3fd-d6edd42fb359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c24099d336b04a18a222336d185be124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c24099d336b04a18a222336d185be124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c24099d336b04a18a222336d185be124.jpg", "file_size": 14693, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#绿色下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24099d336b04a18a222336d185be124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24099d336b04a18a222336d185be124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24099d336b04a18a222336d185be124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c24099d336b04a18a222336d185be124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c24099d336b04a18a222336d185be124.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dkwifKwQEFKr8z_yHSUFlW0cqqQ=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.413877+00 2025-12-09 10:15:31.413882+00 15598 LJH1842-1#黑 SPMX-20240815310807 \N \N \N 1 \N [{"file_id": "009f8c6e-47d3-4b4a-a9b8-1e2476b23f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg", "file_size": 49538, "is_delete": false, "file_type": 1, "original_file_name": "LJH1842-1#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eca9e9a7d1a4ff3a6c85cca8a931ae9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFr-qHA7PevpB7Gc_n6p2ZTZAjg=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.416481+00 2025-12-09 10:15:31.416485+00 15599 FV12100#补片S码 SPMX-20240815310811 \N \N \N 1 \N [{"file_id": "730ec341-170e-499e-927c-fd34f1c11e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "524c8de23604498393ba375ea134890e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "524c8de23604498393ba375ea134890e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "524c8de23604498393ba375ea134890e.jpg", "file_size": 23021, "is_delete": false, "file_type": 1, "original_file_name": "FV12100#补片S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524c8de23604498393ba375ea134890e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524c8de23604498393ba375ea134890e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524c8de23604498393ba375ea134890e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/524c8de23604498393ba375ea134890e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/524c8de23604498393ba375ea134890e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yhUWSL-cFjYWjiGfzkl_uY0GORI=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.419049+00 2025-12-09 10:15:31.419054+00 15600 23-305#A3-领子3XL SPMX-20240815310817 \N \N \N 1 \N [{"file_id": "d3611832-0a4f-4cb6-9675-d828553d0269", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb350448bfa54d2b94d2617dc6bf7f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb350448bfa54d2b94d2617dc6bf7f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb350448bfa54d2b94d2617dc6bf7f8e.jpg", "file_size": 17227, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb350448bfa54d2b94d2617dc6bf7f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb350448bfa54d2b94d2617dc6bf7f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb350448bfa54d2b94d2617dc6bf7f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb350448bfa54d2b94d2617dc6bf7f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb350448bfa54d2b94d2617dc6bf7f8e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjpn_vFOMDb7WuN87nD6rYRyLcQ=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.421633+00 2025-12-09 10:15:31.421638+00 15601 CB08026#流星红色S VS-D3 SPMX-20240815310814 \N \N \N 1 \N [{"file_id": "0506ecab-f40c-4437-82db-aba45c87dd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57a1756fab5c481f8360d94bec3d1ed1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57a1756fab5c481f8360d94bec3d1ed1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57a1756fab5c481f8360d94bec3d1ed1.jpg", "file_size": 26791, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星红色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a1756fab5c481f8360d94bec3d1ed1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a1756fab5c481f8360d94bec3d1ed1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a1756fab5c481f8360d94bec3d1ed1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57a1756fab5c481f8360d94bec3d1ed1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57a1756fab5c481f8360d94bec3d1ed1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_V7jriJU2NYYV2vgU88QPygfyY8=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.424305+00 2025-12-09 10:15:31.42431+00 15602 LZ1345#上身2号色 SPMX-20240815310805 \N \N \N 1 \N [{"file_id": "5122eb26-21bc-4f62-b67b-63d54b5bde14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a73bdf6aafd74f8d809fc6506b4e80b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a73bdf6aafd74f8d809fc6506b4e80b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a73bdf6aafd74f8d809fc6506b4e80b0.jpg", "file_size": 18411, "is_delete": false, "file_type": 1, "original_file_name": "LZ1345#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73bdf6aafd74f8d809fc6506b4e80b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73bdf6aafd74f8d809fc6506b4e80b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73bdf6aafd74f8d809fc6506b4e80b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a73bdf6aafd74f8d809fc6506b4e80b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a73bdf6aafd74f8d809fc6506b4e80b0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ahXTTKZo1DAik0dNp5stdgoRWU=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.426922+00 2025-12-09 10:15:31.426927+00 15603 JTSS642FW#VS-D3 SPMX-20240815310810 \N \N \N 1 \N [{"file_id": "ce113540-7159-497f-b1be-f686a4e8912f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68ac68e2a551451cbccd80707d7b24d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68ac68e2a551451cbccd80707d7b24d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68ac68e2a551451cbccd80707d7b24d4.jpg", "file_size": 11858, "is_delete": false, "file_type": 1, "original_file_name": "JTSS642FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ac68e2a551451cbccd80707d7b24d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ac68e2a551451cbccd80707d7b24d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68ac68e2a551451cbccd80707d7b24d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68ac68e2a551451cbccd80707d7b24d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68ac68e2a551451cbccd80707d7b24d4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9DRLLrC3xiaFr8AoW3rPITtwEw=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.429487+00 2025-12-09 10:15:31.429492+00 15604 DL31253#上身彩兰 SPMX-20240815310806 \N \N \N 1 \N [{"file_id": "18b6bd30-448e-46e3-9ffe-f07858267dbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19851ebc2dd946a3977ffbce4c9cf846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19851ebc2dd946a3977ffbce4c9cf846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19851ebc2dd946a3977ffbce4c9cf846.jpg", "file_size": 15263, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#上身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19851ebc2dd946a3977ffbce4c9cf846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19851ebc2dd946a3977ffbce4c9cf846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19851ebc2dd946a3977ffbce4c9cf846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19851ebc2dd946a3977ffbce4c9cf846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19851ebc2dd946a3977ffbce4c9cf846.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAsqPP3m-eF-1-p0bX5N-f7yTrs=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.432098+00 2025-12-09 10:15:31.432103+00 15605 DL31253#上身水红 SPMX-20240815310816 \N \N \N 1 \N [{"file_id": "0089580c-5c54-45ec-b2d5-cae3c6e6f244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcc0b8c964ce4e9cae8d02ade541d8d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcc0b8c964ce4e9cae8d02ade541d8d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcc0b8c964ce4e9cae8d02ade541d8d5.jpg", "file_size": 15340, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#上身水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc0b8c964ce4e9cae8d02ade541d8d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc0b8c964ce4e9cae8d02ade541d8d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcc0b8c964ce4e9cae8d02ade541d8d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcc0b8c964ce4e9cae8d02ade541d8d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcc0b8c964ce4e9cae8d02ade541d8d5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i2Ab2pK1Lmt_NXjTIxelmhCUOgA=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.438083+00 2025-12-09 10:15:31.438089+00 15607 LZ1345#上身3号色 SPMX-20240815310815 \N \N \N 1 \N [{"file_id": "68af6539-4de7-42ea-96a2-bed3cc6e57db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4a6a5d16f754ffdb0adb5549813b751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4a6a5d16f754ffdb0adb5549813b751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4a6a5d16f754ffdb0adb5549813b751.jpg", "file_size": 18572, "is_delete": false, "file_type": 1, "original_file_name": "LZ1345#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a6a5d16f754ffdb0adb5549813b751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a6a5d16f754ffdb0adb5549813b751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4a6a5d16f754ffdb0adb5549813b751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4a6a5d16f754ffdb0adb5549813b751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4a6a5d16f754ffdb0adb5549813b751.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkCXQj2FwHyMYF9iufak18fHZ7g=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.440892+00 2025-12-09 10:15:31.440899+00 15608 85012#10码+12码 SPMX-20240815310808 \N \N \N 1 \N [{"file_id": "6bdfb571-05a2-42e8-abc7-8f0cebffe98c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f4337431cbe4556908e54f8f7cf527b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f4337431cbe4556908e54f8f7cf527b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f4337431cbe4556908e54f8f7cf527b.jpg", "file_size": 17378, "is_delete": false, "file_type": 1, "original_file_name": "85012#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4337431cbe4556908e54f8f7cf527b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4337431cbe4556908e54f8f7cf527b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f4337431cbe4556908e54f8f7cf527b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f4337431cbe4556908e54f8f7cf527b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f4337431cbe4556908e54f8f7cf527b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BaR-RD7vuz2m9FzqDTS1xhQEk4=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.443637+00 2025-12-09 10:15:31.443643+00 15609 HW472899FWE#袖子L VS-D3 SPMX-20240815310809 \N \N \N 1 \N [{"file_id": "f966c9bd-d960-4025-b3bb-473254f248ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35cba1ee5aa84c8fa70a5a29b36c3806.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35cba1ee5aa84c8fa70a5a29b36c3806.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35cba1ee5aa84c8fa70a5a29b36c3806.jpg", "file_size": 10796, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#袖子L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cba1ee5aa84c8fa70a5a29b36c3806.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cba1ee5aa84c8fa70a5a29b36c3806.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35cba1ee5aa84c8fa70a5a29b36c3806.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35cba1ee5aa84c8fa70a5a29b36c3806.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35cba1ee5aa84c8fa70a5a29b36c3806.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zwqF-bKKvhnvmtNQUp3FYAr47Oo=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.435167+00 2025-12-09 10:15:31.435173+00 15606 0006-52FWF#黑底 SPMX-20240815310813 \N \N \N 1 \N [{"file_id": "df7730dc-704b-4526-b9f3-d59b8da78110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "054502b6d12d4ba18ae87053c6ad0bc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "054502b6d12d4ba18ae87053c6ad0bc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "054502b6d12d4ba18ae87053c6ad0bc3.jpg", "file_size": 18212, "is_delete": false, "file_type": 1, "original_file_name": "0006-52FWF#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054502b6d12d4ba18ae87053c6ad0bc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054502b6d12d4ba18ae87053c6ad0bc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054502b6d12d4ba18ae87053c6ad0bc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/054502b6d12d4ba18ae87053c6ad0bc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/054502b6d12d4ba18ae87053c6ad0bc3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FQXoXxbtWlkLIO2Y0m1zxispwCc=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.449431+00 2025-12-09 10:15:31.449438+00 15610 LJH1843#橙色 SPMX-20240815310818 \N \N \N 1 \N [{"file_id": "ee030184-7bfa-4005-918b-6d6fd5486866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2909b218f30e435fabb6c325279d0e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2909b218f30e435fabb6c325279d0e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2909b218f30e435fabb6c325279d0e34.jpg", "file_size": 66442, "is_delete": false, "file_type": 1, "original_file_name": "LJH1843#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2909b218f30e435fabb6c325279d0e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2909b218f30e435fabb6c325279d0e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2909b218f30e435fabb6c325279d0e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2909b218f30e435fabb6c325279d0e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2909b218f30e435fabb6c325279d0e34.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gsczhK52yqB_7WXYdMXVXlvOlBY=", "createTime": "2024-08-15 14:59:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.452167+00 2025-12-09 10:15:31.452173+00 15611 85012#4码+8码 SPMX-20240815310830 \N \N \N 1 \N [{"file_id": "5350ff1e-274b-4870-9302-a7fdeb9a5cab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf39ab1e01b48898641e2888169cf8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf39ab1e01b48898641e2888169cf8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf39ab1e01b48898641e2888169cf8f.jpg", "file_size": 17969, "is_delete": false, "file_type": 1, "original_file_name": "85012#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf39ab1e01b48898641e2888169cf8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf39ab1e01b48898641e2888169cf8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf39ab1e01b48898641e2888169cf8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf39ab1e01b48898641e2888169cf8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf39ab1e01b48898641e2888169cf8f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opzOBXjtXl3C_V1M2kFp2GdHDfQ=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.454916+00 2025-12-09 10:15:31.454922+00 15612 85012#14码 SPMX-20240815310819 \N \N \N 1 \N [{"file_id": "2a29bded-ab43-4440-a924-8fa10f299f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0244ad7d532d4cdfbdbdf8000d9c735a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0244ad7d532d4cdfbdbdf8000d9c735a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0244ad7d532d4cdfbdbdf8000d9c735a.jpg", "file_size": 15745, "is_delete": false, "file_type": 1, "original_file_name": "85012#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0244ad7d532d4cdfbdbdf8000d9c735a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0244ad7d532d4cdfbdbdf8000d9c735a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0244ad7d532d4cdfbdbdf8000d9c735a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0244ad7d532d4cdfbdbdf8000d9c735a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0244ad7d532d4cdfbdbdf8000d9c735a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YbijZlzOErJIVYpFAoDLnj_CDQ=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.457619+00 2025-12-09 10:15:31.457625+00 15613 0006-53FWE#VS-D3 SPMX-20240815310822 \N \N \N 1 \N [{"file_id": "77008c6f-f9c8-46bc-abeb-97b40adea9b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04ee047be5b94ff0aa4a2601f5b89ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04ee047be5b94ff0aa4a2601f5b89ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04ee047be5b94ff0aa4a2601f5b89ae0.jpg", "file_size": 20441, "is_delete": false, "file_type": 1, "original_file_name": "0006-53FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ee047be5b94ff0aa4a2601f5b89ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ee047be5b94ff0aa4a2601f5b89ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ee047be5b94ff0aa4a2601f5b89ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04ee047be5b94ff0aa4a2601f5b89ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04ee047be5b94ff0aa4a2601f5b89ae0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrgXB3Ji-b-8jxAbWKfSkYUmVoo=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.460333+00 2025-12-09 10:15:31.46034+00 15614 JTSS644FW#VS-D3 SPMX-20240815310831 \N \N \N 1 \N [{"file_id": "e7b1a683-2627-4402-9797-858dd2312079", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "465a16caf3154f40be643a6ef4236904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "465a16caf3154f40be643a6ef4236904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "465a16caf3154f40be643a6ef4236904.jpg", "file_size": 20367, "is_delete": false, "file_type": 1, "original_file_name": "JTSS644FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465a16caf3154f40be643a6ef4236904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465a16caf3154f40be643a6ef4236904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465a16caf3154f40be643a6ef4236904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/465a16caf3154f40be643a6ef4236904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/465a16caf3154f40be643a6ef4236904.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CzORMZhLXmZ9USRdIEn-TBHfIBw=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.463088+00 2025-12-09 10:15:31.463093+00 15615 HW472899FWE#袖子M VS-D3 SPMX-20240815310820 \N \N \N 1 \N [{"file_id": "8005bf0a-1453-4bf8-914c-e965565e67ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4254ac75e49346adbee37c5e17b2bb06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4254ac75e49346adbee37c5e17b2bb06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4254ac75e49346adbee37c5e17b2bb06.jpg", "file_size": 10767, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#袖子M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4254ac75e49346adbee37c5e17b2bb06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4254ac75e49346adbee37c5e17b2bb06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4254ac75e49346adbee37c5e17b2bb06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4254ac75e49346adbee37c5e17b2bb06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4254ac75e49346adbee37c5e17b2bb06.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJ2n2SlsXqN2E5Ir8rNrFUM3N4g=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.465759+00 2025-12-09 10:15:31.465764+00 15616 1221FWE#藏青2XL SPMX-20240815310823 \N \N \N 1 \N [{"file_id": "efbe840f-a2f4-4498-9303-343667d6f1b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "194c07e1466641a98d84afd587507c2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "194c07e1466641a98d84afd587507c2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "194c07e1466641a98d84afd587507c2d.jpg", "file_size": 12351, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/194c07e1466641a98d84afd587507c2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/194c07e1466641a98d84afd587507c2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/194c07e1466641a98d84afd587507c2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/194c07e1466641a98d84afd587507c2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/194c07e1466641a98d84afd587507c2d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUKSl4gCLKTxLoUXzQmdlk5TNK0=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.468478+00 2025-12-09 10:15:31.468484+00 15617 LJH1843#玫红 SPMX-20240815310828 \N \N \N 1 \N [{"file_id": "a2505e04-60a4-486e-9f6e-fc325b0be43b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2ef4fe3d648437985fd908ac4cecacf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2ef4fe3d648437985fd908ac4cecacf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2ef4fe3d648437985fd908ac4cecacf.jpg", "file_size": 62697, "is_delete": false, "file_type": 1, "original_file_name": "LJH1843#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ef4fe3d648437985fd908ac4cecacf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ef4fe3d648437985fd908ac4cecacf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ef4fe3d648437985fd908ac4cecacf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2ef4fe3d648437985fd908ac4cecacf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2ef4fe3d648437985fd908ac4cecacf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8R1yBlIAaSv2UQLSSpSmqcdAFU=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.471185+00 2025-12-09 10:15:31.47119+00 15618 FW22668FWE#VS-D3 SPMX-20240815310825 \N \N \N 1 \N [{"file_id": "220a1b34-b666-40d7-8809-0657b03ff6af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f7447283c734060822aa325926e352e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f7447283c734060822aa325926e352e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f7447283c734060822aa325926e352e.jpg", "file_size": 15006, "is_delete": false, "file_type": 1, "original_file_name": "FW22668FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7447283c734060822aa325926e352e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7447283c734060822aa325926e352e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7447283c734060822aa325926e352e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f7447283c734060822aa325926e352e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f7447283c734060822aa325926e352e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoK0o1rD0LsPeriwHU8zI476t4c=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.473917+00 2025-12-09 10:15:31.473923+00 15619 23-305#A3-领子4XL SPMX-20240815310829 \N \N \N 1 \N [{"file_id": "25b6f93b-ffb8-474f-9d09-49f371ad866d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e468bcce7ab647f1a5dd090070860e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e468bcce7ab647f1a5dd090070860e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e468bcce7ab647f1a5dd090070860e86.jpg", "file_size": 17281, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e468bcce7ab647f1a5dd090070860e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e468bcce7ab647f1a5dd090070860e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e468bcce7ab647f1a5dd090070860e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e468bcce7ab647f1a5dd090070860e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e468bcce7ab647f1a5dd090070860e86.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNCmJAgWPzjPjoTNEkxi50stFoY=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.476607+00 2025-12-09 10:15:31.476613+00 15620 JTSS643FW#VS-D3 SPMX-20240815310821 \N \N \N 1 \N [{"file_id": "865f81c8-0f5c-4229-8541-5957f3dc6023", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "506babd551314de6ad2b39714c5c93e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "506babd551314de6ad2b39714c5c93e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "506babd551314de6ad2b39714c5c93e3.jpg", "file_size": 17050, "is_delete": false, "file_type": 1, "original_file_name": "JTSS643FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506babd551314de6ad2b39714c5c93e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506babd551314de6ad2b39714c5c93e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506babd551314de6ad2b39714c5c93e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/506babd551314de6ad2b39714c5c93e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/506babd551314de6ad2b39714c5c93e3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zonjbOy8Y3QWV8GHs3okp4gCd5o=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.479315+00 2025-12-09 10:15:31.479321+00 15621 DL31253#上身黄色 SPMX-20240815310826 \N \N \N 1 \N [{"file_id": "cad7e2e5-014d-4a78-8f23-82fddaba62c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a285f4884724bdea40c39c1f2c02dc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a285f4884724bdea40c39c1f2c02dc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a285f4884724bdea40c39c1f2c02dc4.jpg", "file_size": 15700, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#上身黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a285f4884724bdea40c39c1f2c02dc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a285f4884724bdea40c39c1f2c02dc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a285f4884724bdea40c39c1f2c02dc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a285f4884724bdea40c39c1f2c02dc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a285f4884724bdea40c39c1f2c02dc4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MlWvCpXG4pH0gzXwlgN7J-y3X5I=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.482032+00 2025-12-09 10:15:31.482038+00 15622 CB08026#流星红色XL VS-D3 SPMX-20240815310824 \N \N \N 1 \N [{"file_id": "424e730f-2e30-4895-a49d-db879a43267e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10da54ac2c3048bd8ac722fd3bb3a7c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10da54ac2c3048bd8ac722fd3bb3a7c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10da54ac2c3048bd8ac722fd3bb3a7c1.jpg", "file_size": 22930, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星红色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10da54ac2c3048bd8ac722fd3bb3a7c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10da54ac2c3048bd8ac722fd3bb3a7c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10da54ac2c3048bd8ac722fd3bb3a7c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10da54ac2c3048bd8ac722fd3bb3a7c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10da54ac2c3048bd8ac722fd3bb3a7c1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:epBiJcXDTBESm8WtDQn9uunDhOI=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.484779+00 2025-12-09 10:15:31.484785+00 15623 LZ1345#上身4号色 SPMX-20240815310827 \N \N \N 1 \N [{"file_id": "e13b7f86-4b29-441a-ad7c-747e447cb2fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87336ba50bcd43e0a000907c0c6a0936.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87336ba50bcd43e0a000907c0c6a0936.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87336ba50bcd43e0a000907c0c6a0936.jpg", "file_size": 18027, "is_delete": false, "file_type": 1, "original_file_name": "LZ1345#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87336ba50bcd43e0a000907c0c6a0936.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87336ba50bcd43e0a000907c0c6a0936.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87336ba50bcd43e0a000907c0c6a0936.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87336ba50bcd43e0a000907c0c6a0936.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87336ba50bcd43e0a000907c0c6a0936.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nRcFQEDPpr_G0XukX-fUcHLm0c=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.487491+00 2025-12-09 10:15:31.487497+00 15624 HW472899FWE#袖子XL VS-D3 SPMX-20240815310833 \N \N \N 1 \N [{"file_id": "52a69ab7-54eb-4205-9121-7f267ad4f212", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a64adee0e947238432831c15494cfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a64adee0e947238432831c15494cfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a64adee0e947238432831c15494cfb.jpg", "file_size": 11041, "is_delete": false, "file_type": 1, "original_file_name": "HW472899FWE#袖子XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a64adee0e947238432831c15494cfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a64adee0e947238432831c15494cfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a64adee0e947238432831c15494cfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a64adee0e947238432831c15494cfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a64adee0e947238432831c15494cfb.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfCk-U197vyc5dFRwsRroiHZR8I=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.490167+00 2025-12-09 10:15:31.490172+00 15625 HW473279FWE#VS-D3 SPMX-20240815310846 \N \N \N 1 \N [{"file_id": "939ace71-e15b-4cfe-bc63-8c16055f6cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a0d6a561faf4ecab320f4df9bc27b79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a0d6a561faf4ecab320f4df9bc27b79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a0d6a561faf4ecab320f4df9bc27b79.jpg", "file_size": 12390, "is_delete": false, "file_type": 1, "original_file_name": "HW473279FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0d6a561faf4ecab320f4df9bc27b79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0d6a561faf4ecab320f4df9bc27b79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0d6a561faf4ecab320f4df9bc27b79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a0d6a561faf4ecab320f4df9bc27b79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a0d6a561faf4ecab320f4df9bc27b79.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGzZ5_cBjYUHFbzF-wq5m8bMu80=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.492895+00 2025-12-09 10:15:31.492901+00 15626 FX-056#油画风花纹 SPMX-20240815310836 \N \N \N 1 \N [{"file_id": "661ef34a-6617-4e67-81a6-1cc282528b42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8489846248a4434eb5f7eb186e9b8c9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8489846248a4434eb5f7eb186e9b8c9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8489846248a4434eb5f7eb186e9b8c9a.jpg", "file_size": 16880, "is_delete": false, "file_type": 1, "original_file_name": "FX-056#油画风花纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8489846248a4434eb5f7eb186e9b8c9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8489846248a4434eb5f7eb186e9b8c9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8489846248a4434eb5f7eb186e9b8c9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8489846248a4434eb5f7eb186e9b8c9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8489846248a4434eb5f7eb186e9b8c9a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqEArcUKw_MR0ro4WXhYekmBZ3A=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.495569+00 2025-12-09 10:15:31.495575+00 15627 85012#6码 SPMX-20240815310840 \N \N \N 1 \N [{"file_id": "87365fc3-3b42-4b6c-9d4e-089a7204b676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ea931981faa42f7963c7cf4352aa7e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ea931981faa42f7963c7cf4352aa7e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ea931981faa42f7963c7cf4352aa7e4.jpg", "file_size": 17494, "is_delete": false, "file_type": 1, "original_file_name": "85012#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea931981faa42f7963c7cf4352aa7e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea931981faa42f7963c7cf4352aa7e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea931981faa42f7963c7cf4352aa7e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ea931981faa42f7963c7cf4352aa7e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ea931981faa42f7963c7cf4352aa7e4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyvYp6bPoHkjba3FHxtYBVjq7j0=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.498292+00 2025-12-09 10:15:31.498301+00 15628 0006-54FWE#VS-D3 SPMX-20240815310843 \N \N \N 1 \N [{"file_id": "27f38370-38f2-4072-a994-c3e50e3aab7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aadd96e1ad04780a83092a875eaa3ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aadd96e1ad04780a83092a875eaa3ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aadd96e1ad04780a83092a875eaa3ae.jpg", "file_size": 14846, "is_delete": false, "file_type": 1, "original_file_name": "0006-54FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadd96e1ad04780a83092a875eaa3ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadd96e1ad04780a83092a875eaa3ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aadd96e1ad04780a83092a875eaa3ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aadd96e1ad04780a83092a875eaa3ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aadd96e1ad04780a83092a875eaa3ae.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M1Dl8e18BqsYEd112DkPf19DH8E=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.500983+00 2025-12-09 10:15:31.500989+00 15629 1221FWE#藏青3XL SPMX-20240815310834 \N \N \N 1 \N [{"file_id": "94441da0-66c6-4c02-b3c5-b7ab10215930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd3407f930d94e58aa40e12d439099b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd3407f930d94e58aa40e12d439099b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd3407f930d94e58aa40e12d439099b4.jpg", "file_size": 12841, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3407f930d94e58aa40e12d439099b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3407f930d94e58aa40e12d439099b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3407f930d94e58aa40e12d439099b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd3407f930d94e58aa40e12d439099b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd3407f930d94e58aa40e12d439099b4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Feb-McCCWYY9KeGnL9OeWDomdgw=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.503745+00 2025-12-09 10:15:31.503751+00 15630 1221FWE#藏青4XL SPMX-20240815310845 \N \N \N 1 \N [{"file_id": "e16f3871-ab01-4a0d-965b-82dd8e37c2a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fab132bf75384fb2bf4995a1e69c6ac4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fab132bf75384fb2bf4995a1e69c6ac4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fab132bf75384fb2bf4995a1e69c6ac4.jpg", "file_size": 8020, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab132bf75384fb2bf4995a1e69c6ac4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab132bf75384fb2bf4995a1e69c6ac4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fab132bf75384fb2bf4995a1e69c6ac4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fab132bf75384fb2bf4995a1e69c6ac4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fab132bf75384fb2bf4995a1e69c6ac4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGrT7AtkFRC3wzvnbtdxa6gLGog=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.506458+00 2025-12-09 10:15:31.506464+00 15631 JTSS645FW#VS-D3 SPMX-20240815310841 \N \N \N 1 \N [{"file_id": "ff776db6-d491-4c24-ac7c-9ad2b91b6eab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b81ea286ec46430e9a7ad4f164e34c39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b81ea286ec46430e9a7ad4f164e34c39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b81ea286ec46430e9a7ad4f164e34c39.jpg", "file_size": 9454, "is_delete": false, "file_type": 1, "original_file_name": "JTSS645FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81ea286ec46430e9a7ad4f164e34c39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81ea286ec46430e9a7ad4f164e34c39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b81ea286ec46430e9a7ad4f164e34c39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b81ea286ec46430e9a7ad4f164e34c39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b81ea286ec46430e9a7ad4f164e34c39.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRVg9NlWyNrb_nnhPjClIoZtgrA=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.509184+00 2025-12-09 10:15:31.50919+00 15632 LZ1345#上身5号色 SPMX-20240815310839 \N \N \N 1 \N [{"file_id": "a515b951-e3c7-4c19-bbd1-c479eadeb8a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361eb734c22c430d90a690423c698395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361eb734c22c430d90a690423c698395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361eb734c22c430d90a690423c698395.jpg", "file_size": 17925, "is_delete": false, "file_type": 1, "original_file_name": "LZ1345#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361eb734c22c430d90a690423c698395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361eb734c22c430d90a690423c698395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361eb734c22c430d90a690423c698395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361eb734c22c430d90a690423c698395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361eb734c22c430d90a690423c698395.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5Y0ppSu7mkQEYLKM_IJG1Aj8-Q=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.511897+00 2025-12-09 10:15:31.511903+00 15633 23-305#A4-3XL SPMX-20240815310842 \N \N \N 1 \N [{"file_id": "66f6e278-eff2-40d1-a576-ba8123969040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "524ee5f184fb457a95f91e83cbaf83a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "524ee5f184fb457a95f91e83cbaf83a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "524ee5f184fb457a95f91e83cbaf83a4.jpg", "file_size": 22505, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524ee5f184fb457a95f91e83cbaf83a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524ee5f184fb457a95f91e83cbaf83a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/524ee5f184fb457a95f91e83cbaf83a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/524ee5f184fb457a95f91e83cbaf83a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/524ee5f184fb457a95f91e83cbaf83a4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HXvhTqHRUSaO285u3zY6PryYKAQ=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.514686+00 2025-12-09 10:15:31.514692+00 15634 0006-53FWF#V5曲线 SPMX-20240815310832 \N \N \N 1 \N [{"file_id": "62bd68cc-327a-4564-aa5a-7b9a3d59c5ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef5d00e560e142d3a55d1e370253f2d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef5d00e560e142d3a55d1e370253f2d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef5d00e560e142d3a55d1e370253f2d2.jpg", "file_size": 9730, "is_delete": false, "file_type": 1, "original_file_name": "0006-53FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5d00e560e142d3a55d1e370253f2d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5d00e560e142d3a55d1e370253f2d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5d00e560e142d3a55d1e370253f2d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef5d00e560e142d3a55d1e370253f2d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef5d00e560e142d3a55d1e370253f2d2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBycoiwWuuFvL5d0kyW-GRpa-Ac=", "createTime": "2024-08-15 14:59:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.517477+00 2025-12-09 10:15:31.517483+00 15635 CB08026#流星黑色L VS-D3 SPMX-20240815310844 \N \N \N 1 \N [{"file_id": "84b45cd4-0a20-4878-b0c1-9c6d8495334a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb52006a66c64223823cb3fb39ff16f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb52006a66c64223823cb3fb39ff16f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb52006a66c64223823cb3fb39ff16f2.jpg", "file_size": 21653, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星黑色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb52006a66c64223823cb3fb39ff16f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb52006a66c64223823cb3fb39ff16f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb52006a66c64223823cb3fb39ff16f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb52006a66c64223823cb3fb39ff16f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb52006a66c64223823cb3fb39ff16f2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nML1ppVpdQ-eLzP83va6S6gNWho=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.520197+00 2025-12-09 10:15:31.520203+00 15636 LJH1843#白色 SPMX-20240815310838 \N \N \N 1 \N [{"file_id": "fb422a5b-1090-4e9f-9b46-b150c5085d2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffb004eed132464aa21e95aad6a58586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffb004eed132464aa21e95aad6a58586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffb004eed132464aa21e95aad6a58586.jpg", "file_size": 62416, "is_delete": false, "file_type": 1, "original_file_name": "LJH1843#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb004eed132464aa21e95aad6a58586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb004eed132464aa21e95aad6a58586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffb004eed132464aa21e95aad6a58586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffb004eed132464aa21e95aad6a58586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffb004eed132464aa21e95aad6a58586.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TalsQXobRcsdoWIu2eVEI89QhAY=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.522944+00 2025-12-09 10:15:31.522949+00 15637 DL31253#下摆墨绿 SPMX-20240815310837 \N \N \N 1 \N [{"file_id": "ef288724-6285-4424-9b43-d1f54b70b362", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c172b95b0afd4462b8e30d9ce01e9bd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c172b95b0afd4462b8e30d9ce01e9bd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c172b95b0afd4462b8e30d9ce01e9bd7.jpg", "file_size": 23780, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c172b95b0afd4462b8e30d9ce01e9bd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c172b95b0afd4462b8e30d9ce01e9bd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c172b95b0afd4462b8e30d9ce01e9bd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c172b95b0afd4462b8e30d9ce01e9bd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c172b95b0afd4462b8e30d9ce01e9bd7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qZJTjK0arm0_GL-tp7w3Ev32_o=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.52566+00 2025-12-09 10:15:31.525665+00 15638 CB08026#流星黑色2XL VS-D3 SPMX-20240815310835 \N \N \N 1 \N [{"file_id": "2163aac1-3094-41e5-aac5-86f369cc2c4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbc9ec4ea29c4a69b1c7931ab17ea603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbc9ec4ea29c4a69b1c7931ab17ea603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbc9ec4ea29c4a69b1c7931ab17ea603.jpg", "file_size": 20366, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星黑色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc9ec4ea29c4a69b1c7931ab17ea603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc9ec4ea29c4a69b1c7931ab17ea603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbc9ec4ea29c4a69b1c7931ab17ea603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbc9ec4ea29c4a69b1c7931ab17ea603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbc9ec4ea29c4a69b1c7931ab17ea603.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5VKptFUxfi5vUGT1zDH_RoQsoJI=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.528421+00 2025-12-09 10:15:31.528427+00 15639 DL31253#下摆彩兰 SPMX-20240815310855 \N \N \N 1 \N [{"file_id": "7f8a214f-0c4c-41cf-a589-62dff5dd5b1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cad5c61bfb204c70960dcccc0066b930.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cad5c61bfb204c70960dcccc0066b930.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cad5c61bfb204c70960dcccc0066b930.jpg", "file_size": 24318, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad5c61bfb204c70960dcccc0066b930.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad5c61bfb204c70960dcccc0066b930.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad5c61bfb204c70960dcccc0066b930.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cad5c61bfb204c70960dcccc0066b930.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cad5c61bfb204c70960dcccc0066b930.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BI21Yu1CYz7SWgMrTRNdtgBNdOk=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.531226+00 2025-12-09 10:15:31.531232+00 15640 FX-056#油画风花纹1 SPMX-20240815310848 \N \N \N 1 \N [{"file_id": "315eca28-392b-4d9c-b506-9afc2f5b4ec5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ab32a0b446b41b6b29e9e571a01406f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ab32a0b446b41b6b29e9e571a01406f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ab32a0b446b41b6b29e9e571a01406f.jpg", "file_size": 16928, "is_delete": false, "file_type": 1, "original_file_name": "FX-056#油画风花纹1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab32a0b446b41b6b29e9e571a01406f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab32a0b446b41b6b29e9e571a01406f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab32a0b446b41b6b29e9e571a01406f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ab32a0b446b41b6b29e9e571a01406f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ab32a0b446b41b6b29e9e571a01406f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zzPJ6UP-F9EMV8oON0rDdzTlxME=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.534194+00 2025-12-09 10:15:31.534204+00 15641 LJH1843#绿色 SPMX-20240815310850 \N \N \N 1 \N [{"file_id": "27904fb2-c709-4775-b1b1-7df0e25ec5f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eff7903272894e0099778f9676ff6964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eff7903272894e0099778f9676ff6964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eff7903272894e0099778f9676ff6964.jpg", "file_size": 66321, "is_delete": false, "file_type": 1, "original_file_name": "LJH1843#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff7903272894e0099778f9676ff6964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff7903272894e0099778f9676ff6964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff7903272894e0099778f9676ff6964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eff7903272894e0099778f9676ff6964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eff7903272894e0099778f9676ff6964.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92KbieF-hKsnaEK8OKLX8F_KhqM=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.536918+00 2025-12-09 10:15:31.536924+00 15642 85012#乱花 SPMX-20240815310851 \N \N \N 1 \N [{"file_id": "112b0fed-545e-4490-9754-782aca420277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "790bf678ed674084bfdfcf498946ef3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "790bf678ed674084bfdfcf498946ef3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "790bf678ed674084bfdfcf498946ef3b.jpg", "file_size": 5631, "is_delete": false, "file_type": 1, "original_file_name": "85012#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790bf678ed674084bfdfcf498946ef3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790bf678ed674084bfdfcf498946ef3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790bf678ed674084bfdfcf498946ef3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/790bf678ed674084bfdfcf498946ef3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/790bf678ed674084bfdfcf498946ef3b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s6OVcvPH-htSu_Q3GnggCWOb_FA=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.539612+00 2025-12-09 10:15:31.539617+00 15643 23-305#A4-4XL SPMX-20240815310853 \N \N \N 1 \N [{"file_id": "1ed69557-3384-42f7-b070-e0bff9b55a7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9edc16035dfd4dfea3be713452bd2ee6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9edc16035dfd4dfea3be713452bd2ee6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9edc16035dfd4dfea3be713452bd2ee6.jpg", "file_size": 21040, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edc16035dfd4dfea3be713452bd2ee6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edc16035dfd4dfea3be713452bd2ee6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9edc16035dfd4dfea3be713452bd2ee6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9edc16035dfd4dfea3be713452bd2ee6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9edc16035dfd4dfea3be713452bd2ee6.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2rLPhnBnCU_nZSTRAOQOQih3aYU=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.542325+00 2025-12-09 10:15:31.542331+00 15644 0006-54FWF#V5曲线 SPMX-20240815310854 \N \N \N 1 \N [{"file_id": "11de9f5d-35c0-4165-b82d-fa30b56a0b20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d74f0e8643b4ea39a67e471d2abc132.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d74f0e8643b4ea39a67e471d2abc132.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d74f0e8643b4ea39a67e471d2abc132.jpg", "file_size": 17471, "is_delete": false, "file_type": 1, "original_file_name": "0006-54FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d74f0e8643b4ea39a67e471d2abc132.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d74f0e8643b4ea39a67e471d2abc132.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d74f0e8643b4ea39a67e471d2abc132.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d74f0e8643b4ea39a67e471d2abc132.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d74f0e8643b4ea39a67e471d2abc132.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktt5X_3y4focm62eeAaO8FuXQ9c=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.545032+00 2025-12-09 10:15:31.545037+00 15645 LZ1346#上身1号色 SPMX-20240815310849 \N \N \N 1 \N [{"file_id": "3c4def51-933f-47f4-addd-42a085c440f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f5c250217ae4704b2010b8e7d43914b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f5c250217ae4704b2010b8e7d43914b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f5c250217ae4704b2010b8e7d43914b.jpg", "file_size": 19707, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5c250217ae4704b2010b8e7d43914b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5c250217ae4704b2010b8e7d43914b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5c250217ae4704b2010b8e7d43914b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f5c250217ae4704b2010b8e7d43914b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f5c250217ae4704b2010b8e7d43914b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTsQbHuWNqAqzF-NjajPoCsltQo=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.547722+00 2025-12-09 10:15:31.547728+00 15646 JTSS646FW#VS-D3 SPMX-20240815310852 \N \N \N 1 \N [{"file_id": "29f36361-0a3b-47b6-b134-b7a832e4140f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d11d65a6843e4fcfbd89347d6d813aed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d11d65a6843e4fcfbd89347d6d813aed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d11d65a6843e4fcfbd89347d6d813aed.jpg", "file_size": 11757, "is_delete": false, "file_type": 1, "original_file_name": "JTSS646FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11d65a6843e4fcfbd89347d6d813aed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11d65a6843e4fcfbd89347d6d813aed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11d65a6843e4fcfbd89347d6d813aed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d11d65a6843e4fcfbd89347d6d813aed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d11d65a6843e4fcfbd89347d6d813aed.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TePtv7YlQ4Td3vKhGAEpu7pkEM0=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.550425+00 2025-12-09 10:15:31.550434+00 15647 DL31253#下摆大红 SPMX-20240815310847 \N \N \N 1 \N [{"file_id": "983d1ad0-d2ba-4bc0-99f5-e5418ad08f29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d25908c36e814c959f0ded4ad92e42ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d25908c36e814c959f0ded4ad92e42ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d25908c36e814c959f0ded4ad92e42ca.jpg", "file_size": 24230, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#下摆大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25908c36e814c959f0ded4ad92e42ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25908c36e814c959f0ded4ad92e42ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d25908c36e814c959f0ded4ad92e42ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d25908c36e814c959f0ded4ad92e42ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d25908c36e814c959f0ded4ad92e42ca.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D5bTSp8fwH4-qa8vXiWAXlzojm0=", "createTime": "2024-08-15 14:59:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.553134+00 2025-12-09 10:15:31.55314+00 15648 1221FWE#藏青L SPMX-20240815310856 \N \N \N 1 \N [{"file_id": "515365ad-3fcd-42fa-a049-b501bcd68bda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d641378be5604149855863a5f9f7ad3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d641378be5604149855863a5f9f7ad3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d641378be5604149855863a5f9f7ad3b.jpg", "file_size": 11904, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d641378be5604149855863a5f9f7ad3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d641378be5604149855863a5f9f7ad3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d641378be5604149855863a5f9f7ad3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d641378be5604149855863a5f9f7ad3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d641378be5604149855863a5f9f7ad3b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FV_Zja_5DvnhYN6d1kAYiWFAmnc=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.555842+00 2025-12-09 10:15:31.555848+00 15649 HW475139FWE#2XL VS-D3 SPMX-20240815310857 \N \N \N 1 \N [{"file_id": "3b9f659a-38e0-4b84-8ba8-e5b4347707cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe2bf8535abd4ef0a664c708b9483723.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe2bf8535abd4ef0a664c708b9483723.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe2bf8535abd4ef0a664c708b9483723.jpg", "file_size": 13895, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2bf8535abd4ef0a664c708b9483723.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2bf8535abd4ef0a664c708b9483723.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2bf8535abd4ef0a664c708b9483723.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe2bf8535abd4ef0a664c708b9483723.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe2bf8535abd4ef0a664c708b9483723.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKVa7l1RJCDSdm6JJzpyjKlWRsA=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.558573+00 2025-12-09 10:15:31.558579+00 15650 85013#10码+12码 SPMX-20240815310861 \N \N \N 1 \N [{"file_id": "eb9ae494-b917-4869-a04a-c267dd810650", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65acc8e85638428f8fd2b81f3a557f78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65acc8e85638428f8fd2b81f3a557f78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65acc8e85638428f8fd2b81f3a557f78.jpg", "file_size": 17211, "is_delete": false, "file_type": 1, "original_file_name": "85013#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65acc8e85638428f8fd2b81f3a557f78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65acc8e85638428f8fd2b81f3a557f78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65acc8e85638428f8fd2b81f3a557f78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65acc8e85638428f8fd2b81f3a557f78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65acc8e85638428f8fd2b81f3a557f78.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5pMFpMNYVEI2gy-DN7DF2gA5eKM=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.561313+00 2025-12-09 10:15:31.561319+00 15651 FX-056#米豹纹 SPMX-20240815310858 \N \N \N 1 \N [{"file_id": "92c69a32-7c30-47b9-aa96-17602ea7983a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b1d5141fdab470cb9fcce521f5c4ccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b1d5141fdab470cb9fcce521f5c4ccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b1d5141fdab470cb9fcce521f5c4ccf.jpg", "file_size": 25973, "is_delete": false, "file_type": 1, "original_file_name": "FX-056#米豹纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1d5141fdab470cb9fcce521f5c4ccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1d5141fdab470cb9fcce521f5c4ccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b1d5141fdab470cb9fcce521f5c4ccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b1d5141fdab470cb9fcce521f5c4ccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b1d5141fdab470cb9fcce521f5c4ccf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f66bLM12GFcua1u9roLHbk_sijo=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.564027+00 2025-12-09 10:15:31.564033+00 15652 CB08026#流星黑色M VS-D3 SPMX-20240815310859 \N \N \N 1 \N [{"file_id": "3a469c71-0d98-4045-a36e-ec4ee3c1e57d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93f79071f33a494a8222319d95c03e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93f79071f33a494a8222319d95c03e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93f79071f33a494a8222319d95c03e0c.jpg", "file_size": 22834, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星黑色M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f79071f33a494a8222319d95c03e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f79071f33a494a8222319d95c03e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93f79071f33a494a8222319d95c03e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93f79071f33a494a8222319d95c03e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93f79071f33a494a8222319d95c03e0c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hy16-bFkTxfmLgr-s9c2F_9hMqo=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.566695+00 2025-12-09 10:15:31.5667+00 15653 0006-55FWE#VS-D3 SPMX-20240815310865 \N \N \N 1 \N [{"file_id": "d4a3498e-4e07-4a0d-b54c-921d163dff76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1080d68d65342b5904258e1bddc62f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1080d68d65342b5904258e1bddc62f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1080d68d65342b5904258e1bddc62f3.jpg", "file_size": 18143, "is_delete": false, "file_type": 1, "original_file_name": "0006-55FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1080d68d65342b5904258e1bddc62f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1080d68d65342b5904258e1bddc62f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1080d68d65342b5904258e1bddc62f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1080d68d65342b5904258e1bddc62f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1080d68d65342b5904258e1bddc62f3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ParY66XST8btHEyX9OBC9-klU8=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.569728+00 2025-12-09 10:15:31.569733+00 15654 LZ1346#上身2号色 SPMX-20240815310860 \N \N \N 1 \N [{"file_id": "75242549-58b2-45fe-9d3b-150d3abb6dc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bed304b40002475687150ca2dc515b78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bed304b40002475687150ca2dc515b78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bed304b40002475687150ca2dc515b78.jpg", "file_size": 19416, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed304b40002475687150ca2dc515b78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed304b40002475687150ca2dc515b78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed304b40002475687150ca2dc515b78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bed304b40002475687150ca2dc515b78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bed304b40002475687150ca2dc515b78.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V00vnNuGf5fqHHXQS2sZRHTeNEo=", "createTime": "2024-08-15 14:59:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.572804+00 2025-12-09 10:15:31.57281+00 15655 JTSS647FW#VS-D3 SPMX-20240815310862 \N \N \N 1 \N [{"file_id": "fe25c3cc-1e82-486c-b1ed-281cae4f2a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d9f8361c150469684eeff086de1cc06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d9f8361c150469684eeff086de1cc06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d9f8361c150469684eeff086de1cc06.jpg", "file_size": 15616, "is_delete": false, "file_type": 1, "original_file_name": "JTSS647FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9f8361c150469684eeff086de1cc06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9f8361c150469684eeff086de1cc06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9f8361c150469684eeff086de1cc06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d9f8361c150469684eeff086de1cc06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d9f8361c150469684eeff086de1cc06.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEyR3_LwcE4cFukooJBMe__ioqI=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.575796+00 2025-12-09 10:15:31.575801+00 15656 23-305#A4-领子3XL SPMX-20240815310864 \N \N \N 1 \N [{"file_id": "aa57da28-a9b7-491b-9d1f-49840c4af755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbe7403c2dc842e48f1a65cd534f4d3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbe7403c2dc842e48f1a65cd534f4d3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbe7403c2dc842e48f1a65cd534f4d3e.jpg", "file_size": 15458, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe7403c2dc842e48f1a65cd534f4d3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe7403c2dc842e48f1a65cd534f4d3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe7403c2dc842e48f1a65cd534f4d3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbe7403c2dc842e48f1a65cd534f4d3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbe7403c2dc842e48f1a65cd534f4d3e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ka3Wua87tVVzbu-4qqK6QoaGxSo=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.578828+00 2025-12-09 10:15:31.578834+00 15657 DL31253#下摆水红 SPMX-20240815310866 \N \N \N 1 \N [{"file_id": "4c16768b-dac9-49f4-90ba-ebcb180eb061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10e3d8a998d74ebdab048741f9cc12c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10e3d8a998d74ebdab048741f9cc12c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10e3d8a998d74ebdab048741f9cc12c2.jpg", "file_size": 23470, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#下摆水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e3d8a998d74ebdab048741f9cc12c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e3d8a998d74ebdab048741f9cc12c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10e3d8a998d74ebdab048741f9cc12c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10e3d8a998d74ebdab048741f9cc12c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10e3d8a998d74ebdab048741f9cc12c2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:58UNHmAeMm5WYRl1P0KailBTF3U=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.581811+00 2025-12-09 10:15:31.581817+00 15658 LJH1844#上摆彩兰 SPMX-20240815310863 \N \N \N 1 \N [{"file_id": "60db5ac1-79e5-4eb9-9636-114bbf2aed65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80fbc32b918d4e92b2bf4bda04016200.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80fbc32b918d4e92b2bf4bda04016200.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80fbc32b918d4e92b2bf4bda04016200.jpg", "file_size": 85698, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#上摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80fbc32b918d4e92b2bf4bda04016200.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80fbc32b918d4e92b2bf4bda04016200.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80fbc32b918d4e92b2bf4bda04016200.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80fbc32b918d4e92b2bf4bda04016200.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80fbc32b918d4e92b2bf4bda04016200.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qXIHOZDTCCILgYjbDjUuE3Gba2o=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.584846+00 2025-12-09 10:15:31.584852+00 15659 HW475139FWE#L VS-D3 SPMX-20240815310867 \N \N \N 1 \N [{"file_id": "fbe73929-8d4c-4db7-8da9-e486ad26d6a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d73a8c2df26465b8614f0387bb4b7bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d73a8c2df26465b8614f0387bb4b7bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d73a8c2df26465b8614f0387bb4b7bd.jpg", "file_size": 13061, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d73a8c2df26465b8614f0387bb4b7bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d73a8c2df26465b8614f0387bb4b7bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d73a8c2df26465b8614f0387bb4b7bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d73a8c2df26465b8614f0387bb4b7bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d73a8c2df26465b8614f0387bb4b7bd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7emDrfl5jNhKwTS5aF04LffHACg=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.587879+00 2025-12-09 10:15:31.587884+00 15660 CB08026#流星黑色S VS-D3 SPMX-20240815310870 \N \N \N 1 \N [{"file_id": "fd287290-43d4-4519-8ddc-82bde0ad7b75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72ce17767b945888927f65a56773e4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72ce17767b945888927f65a56773e4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72ce17767b945888927f65a56773e4d.jpg", "file_size": 24240, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星黑色S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ce17767b945888927f65a56773e4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ce17767b945888927f65a56773e4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72ce17767b945888927f65a56773e4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72ce17767b945888927f65a56773e4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72ce17767b945888927f65a56773e4d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7Vp1oPfEflTVFtOBsuQCsQe74E=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.590887+00 2025-12-09 10:15:31.590893+00 15661 23-305#A4-领子4XL SPMX-20240815310871 \N \N \N 1 \N [{"file_id": "7ad4307e-a5bd-41c7-9824-26757a7ab0bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac4c8ab78b3243309c98842bcda35923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac4c8ab78b3243309c98842bcda35923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac4c8ab78b3243309c98842bcda35923.jpg", "file_size": 15554, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac4c8ab78b3243309c98842bcda35923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac4c8ab78b3243309c98842bcda35923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac4c8ab78b3243309c98842bcda35923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac4c8ab78b3243309c98842bcda35923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac4c8ab78b3243309c98842bcda35923.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCKP8E9QfYN7oE7XqLmQwpn6ky8=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.593585+00 2025-12-09 10:15:31.593591+00 15662 1221FWE#藏青XL SPMX-20240815310868 \N \N \N 1 \N [{"file_id": "83bc8313-69a9-49ce-9d33-5239e66ac13e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce06e4af0fcd433f86f038d950e871b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce06e4af0fcd433f86f038d950e871b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce06e4af0fcd433f86f038d950e871b3.jpg", "file_size": 11959, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce06e4af0fcd433f86f038d950e871b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce06e4af0fcd433f86f038d950e871b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce06e4af0fcd433f86f038d950e871b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce06e4af0fcd433f86f038d950e871b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce06e4af0fcd433f86f038d950e871b3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xVvawfIAIBwEEc7fK716fz-wle0=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.596323+00 2025-12-09 10:15:31.596329+00 15663 FX-056#蓝满天星 SPMX-20240815310869 \N \N \N 1 \N [{"file_id": "1f3869fc-2a74-4be8-8328-0e094f6acc15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b50d25c2e74cf7836cfbcc15691880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b50d25c2e74cf7836cfbcc15691880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b50d25c2e74cf7836cfbcc15691880.jpg", "file_size": 20310, "is_delete": false, "file_type": 1, "original_file_name": "FX-056#蓝满天星.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b50d25c2e74cf7836cfbcc15691880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b50d25c2e74cf7836cfbcc15691880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b50d25c2e74cf7836cfbcc15691880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b50d25c2e74cf7836cfbcc15691880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b50d25c2e74cf7836cfbcc15691880.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k_DBl1EF2lOOwLV1C1f4PbI5QYE=", "createTime": "2024-08-15 14:59:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.599044+00 2025-12-09 10:15:31.59905+00 15664 85013#14码 SPMX-20240815310872 \N \N \N 1 \N [{"file_id": "ae38107f-2d58-4fa0-a65e-70eee1624428", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e36ad002e634778887017d9a3628387.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e36ad002e634778887017d9a3628387.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e36ad002e634778887017d9a3628387.jpg", "file_size": 15406, "is_delete": false, "file_type": 1, "original_file_name": "85013#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e36ad002e634778887017d9a3628387.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e36ad002e634778887017d9a3628387.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e36ad002e634778887017d9a3628387.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e36ad002e634778887017d9a3628387.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e36ad002e634778887017d9a3628387.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87fBtBcTUrCCP9tSrnTxChbDP4c=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.601756+00 2025-12-09 10:15:31.601761+00 15665 LZ1346#上身3号色 SPMX-20240815310873 \N \N \N 1 \N [{"file_id": "16f2eebe-0a80-4fc4-95c4-00020cd1dc54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04c345f429fe4540b0c82858f9f0ccc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04c345f429fe4540b0c82858f9f0ccc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04c345f429fe4540b0c82858f9f0ccc2.jpg", "file_size": 18428, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c345f429fe4540b0c82858f9f0ccc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c345f429fe4540b0c82858f9f0ccc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c345f429fe4540b0c82858f9f0ccc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04c345f429fe4540b0c82858f9f0ccc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04c345f429fe4540b0c82858f9f0ccc2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIcLF3ztu1-iWBH7dGqJrhJpCgk=", "createTime": "2024-08-15 14:59:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.604463+00 2025-12-09 10:15:31.604469+00 15666 0006-55FWF#V5曲线 SPMX-20240815310874 \N \N \N 1 \N [{"file_id": "e9d780fb-ea89-42e9-bcb6-4709ab316c50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff71726e461b424897604679302fcc20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff71726e461b424897604679302fcc20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff71726e461b424897604679302fcc20.jpg", "file_size": 13100, "is_delete": false, "file_type": 1, "original_file_name": "0006-55FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff71726e461b424897604679302fcc20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff71726e461b424897604679302fcc20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff71726e461b424897604679302fcc20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff71726e461b424897604679302fcc20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff71726e461b424897604679302fcc20.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rt1xDCB5aqnfoH3yDBOZp2Ecbsw=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.607254+00 2025-12-09 10:15:31.607259+00 15667 FX-056#蓝白橙涂鸦 SPMX-20240815310876 \N \N \N 1 \N [{"file_id": "249158ba-2332-4a56-adae-2795856da97e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fd2847106c4de2b188412c5e2baf22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fd2847106c4de2b188412c5e2baf22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fd2847106c4de2b188412c5e2baf22.jpg", "file_size": 18851, "is_delete": false, "file_type": 1, "original_file_name": "FX-056#蓝白橙涂鸦.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fd2847106c4de2b188412c5e2baf22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fd2847106c4de2b188412c5e2baf22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fd2847106c4de2b188412c5e2baf22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fd2847106c4de2b188412c5e2baf22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fd2847106c4de2b188412c5e2baf22.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omTzReIwPZ86l93kUmUp8LUikIU=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.609985+00 2025-12-09 10:15:31.609991+00 15668 CB08026#流星黑色XL VS-D3 SPMX-20240815310877 \N \N \N 1 \N [{"file_id": "049988c0-9b03-4b56-a74e-22e77961c819", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b49fa223268b41aeb41573e64363766e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b49fa223268b41aeb41573e64363766e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b49fa223268b41aeb41573e64363766e.jpg", "file_size": 21217, "is_delete": false, "file_type": 1, "original_file_name": "CB08026#流星黑色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49fa223268b41aeb41573e64363766e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49fa223268b41aeb41573e64363766e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b49fa223268b41aeb41573e64363766e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b49fa223268b41aeb41573e64363766e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b49fa223268b41aeb41573e64363766e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZsfkVLXuQD-0rab-9LICKgUORk=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.612723+00 2025-12-09 10:15:31.612729+00 15669 85013#4码+8码 SPMX-20240815310878 \N \N \N 1 \N [{"file_id": "a7ca9d82-f05a-4ef5-9284-776fd12ab4f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "238896ce7e02401492cafdb4f5d64487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "238896ce7e02401492cafdb4f5d64487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "238896ce7e02401492cafdb4f5d64487.jpg", "file_size": 18258, "is_delete": false, "file_type": 1, "original_file_name": "85013#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238896ce7e02401492cafdb4f5d64487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238896ce7e02401492cafdb4f5d64487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238896ce7e02401492cafdb4f5d64487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/238896ce7e02401492cafdb4f5d64487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/238896ce7e02401492cafdb4f5d64487.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbUMeRJ_u0Er0HqQNCr0Eg4KAAg=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.615438+00 2025-12-09 10:15:31.615444+00 15670 JTSS648FW#VS-D3 SPMX-20240815310875 \N \N \N 1 \N [{"file_id": "d113d6c9-8274-4aca-aa3f-3a97ede2a3a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c970bd4fbbea4367bb69ad56b916e1d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c970bd4fbbea4367bb69ad56b916e1d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c970bd4fbbea4367bb69ad56b916e1d0.jpg", "file_size": 9609, "is_delete": false, "file_type": 1, "original_file_name": "JTSS648FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c970bd4fbbea4367bb69ad56b916e1d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c970bd4fbbea4367bb69ad56b916e1d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c970bd4fbbea4367bb69ad56b916e1d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c970bd4fbbea4367bb69ad56b916e1d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c970bd4fbbea4367bb69ad56b916e1d0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzNQxI77Gveo-ygr_nPhAQswYyc=", "createTime": "2024-08-15 14:59:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.618209+00 2025-12-09 10:15:31.618218+00 15671 LJH1844#上摆红色 SPMX-20240815310891 \N \N \N 1 \N [{"file_id": "e9d8554d-3092-4b62-8843-bf6d77bbb354", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a8018ec4de74dd39e04f8b558a279f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a8018ec4de74dd39e04f8b558a279f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a8018ec4de74dd39e04f8b558a279f2.jpg", "file_size": 83490, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#上摆红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8018ec4de74dd39e04f8b558a279f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8018ec4de74dd39e04f8b558a279f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8018ec4de74dd39e04f8b558a279f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a8018ec4de74dd39e04f8b558a279f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a8018ec4de74dd39e04f8b558a279f2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vSyVOgLRUE34Qy-0nxODXiPY7gk=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.620896+00 2025-12-09 10:15:31.620902+00 15672 HW475139FWE#S VS-D3 SPMX-20240815310892 \N \N \N 1 \N [{"file_id": "1efb4ba2-45c8-4189-9499-32bb47b0c1be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0419e9c62b2d460d98ef59025d0580df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0419e9c62b2d460d98ef59025d0580df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0419e9c62b2d460d98ef59025d0580df.jpg", "file_size": 12423, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0419e9c62b2d460d98ef59025d0580df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0419e9c62b2d460d98ef59025d0580df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0419e9c62b2d460d98ef59025d0580df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0419e9c62b2d460d98ef59025d0580df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0419e9c62b2d460d98ef59025d0580df.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNsEd35ZjZ1xYFOy5lbXANZQ20U=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.623636+00 2025-12-09 10:15:31.623641+00 15673 85013#6码 SPMX-20240815310888 \N \N \N 1 \N [{"file_id": "99e63953-7894-440e-9c7f-21c627cf8efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05fe28d7aafd46c88e00731dd220c783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05fe28d7aafd46c88e00731dd220c783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05fe28d7aafd46c88e00731dd220c783.jpg", "file_size": 17107, "is_delete": false, "file_type": 1, "original_file_name": "85013#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fe28d7aafd46c88e00731dd220c783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fe28d7aafd46c88e00731dd220c783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05fe28d7aafd46c88e00731dd220c783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05fe28d7aafd46c88e00731dd220c783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05fe28d7aafd46c88e00731dd220c783.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJgHoIcxkUzAYJE5t8yhUkq7NQw=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.626366+00 2025-12-09 10:15:31.626371+00 15674 DL31253#批布墨绿 SPMX-20240815310895 \N \N \N 1 \N [{"file_id": "05634ad5-2a31-4e2f-acb6-3c653c6eded1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f360c92f47b440a5b5884004ca546bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f360c92f47b440a5b5884004ca546bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f360c92f47b440a5b5884004ca546bff.jpg", "file_size": 23413, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f360c92f47b440a5b5884004ca546bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f360c92f47b440a5b5884004ca546bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f360c92f47b440a5b5884004ca546bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f360c92f47b440a5b5884004ca546bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f360c92f47b440a5b5884004ca546bff.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXCMzJbael1apK-oshkqcXYL79Y=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.629086+00 2025-12-09 10:15:31.629092+00 15675 HW475139FWE#M VS-D3 SPMX-20240815310881 \N \N \N 1 \N [{"file_id": "de721366-86ad-44b6-ab1e-d49b09c398a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e68516a77edd40c2a4dd1db006f2e5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e68516a77edd40c2a4dd1db006f2e5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e68516a77edd40c2a4dd1db006f2e5e0.jpg", "file_size": 12999, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68516a77edd40c2a4dd1db006f2e5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68516a77edd40c2a4dd1db006f2e5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e68516a77edd40c2a4dd1db006f2e5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e68516a77edd40c2a4dd1db006f2e5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e68516a77edd40c2a4dd1db006f2e5e0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ld8pksG3l2EGkFOKq7T1kJP1UNU=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.631847+00 2025-12-09 10:15:31.631852+00 15676 LZ1346#上身5号色 SPMX-20240815310894 \N \N \N 1 \N [{"file_id": "1f38d253-6cba-4767-b321-7abb95e3585b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28b90cbe1301460e85140c8123e47268.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28b90cbe1301460e85140c8123e47268.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28b90cbe1301460e85140c8123e47268.jpg", "file_size": 18902, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b90cbe1301460e85140c8123e47268.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b90cbe1301460e85140c8123e47268.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28b90cbe1301460e85140c8123e47268.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28b90cbe1301460e85140c8123e47268.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28b90cbe1301460e85140c8123e47268.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N2WiYmRoyqi0FyDS3EpJD4L_h00=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.63459+00 2025-12-09 10:15:31.634596+00 15677 LJH1844#上摆桔色 SPMX-20240815310879 \N \N \N 1 \N [{"file_id": "1e3aaed1-2b7b-483e-9760-2c39a8d78027", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70096a2379e24541be1459b61e7a708b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70096a2379e24541be1459b61e7a708b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70096a2379e24541be1459b61e7a708b.jpg", "file_size": 82211, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#上摆桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70096a2379e24541be1459b61e7a708b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70096a2379e24541be1459b61e7a708b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70096a2379e24541be1459b61e7a708b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70096a2379e24541be1459b61e7a708b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70096a2379e24541be1459b61e7a708b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Shl_3s5A3esVEE7SXStGNpS3hyQ=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.63735+00 2025-12-09 10:15:31.637356+00 15678 LZ1346#上身4号色 SPMX-20240815310882 \N \N \N 1 \N [{"file_id": "f50533d1-5a49-4ecf-b53c-08754b3cfe81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd1956bf7b6744d0ae54346e795010f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd1956bf7b6744d0ae54346e795010f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd1956bf7b6744d0ae54346e795010f2.jpg", "file_size": 19450, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1956bf7b6744d0ae54346e795010f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1956bf7b6744d0ae54346e795010f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1956bf7b6744d0ae54346e795010f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd1956bf7b6744d0ae54346e795010f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd1956bf7b6744d0ae54346e795010f2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:46if0ADtwZ5sdRE-2S1bgstRcKg=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.640116+00 2025-12-09 10:15:31.640123+00 15679 1221FWE#藏青下摆定位 SPMX-20240815310883 \N \N \N 1 \N [{"file_id": "c4da08aa-71a3-4922-b83d-f365e32bf233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a88bcbca95354afdb03636deee9378ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a88bcbca95354afdb03636deee9378ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a88bcbca95354afdb03636deee9378ba.jpg", "file_size": 14210, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88bcbca95354afdb03636deee9378ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88bcbca95354afdb03636deee9378ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88bcbca95354afdb03636deee9378ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a88bcbca95354afdb03636deee9378ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a88bcbca95354afdb03636deee9378ba.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6zNI81dgtMuhH-_XGo9llO5VuY=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.642833+00 2025-12-09 10:15:31.642838+00 15680 0006-56FWE#VS-D3 SPMX-20240815310885 \N \N \N 1 \N [{"file_id": "40ded865-9f7d-4404-9f7a-bef095207bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fddde9dfd2f4142b5f244d265fbbeba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fddde9dfd2f4142b5f244d265fbbeba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fddde9dfd2f4142b5f244d265fbbeba.jpg", "file_size": 22891, "is_delete": false, "file_type": 1, "original_file_name": "0006-56FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddde9dfd2f4142b5f244d265fbbeba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddde9dfd2f4142b5f244d265fbbeba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddde9dfd2f4142b5f244d265fbbeba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fddde9dfd2f4142b5f244d265fbbeba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fddde9dfd2f4142b5f244d265fbbeba.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Po3xyKU2foRbqSXey5J_oI-HUA=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.645539+00 2025-12-09 10:15:31.645545+00 15681 JTSS649FW#VS-D3 SPMX-20240815310886 \N \N \N 1 \N [{"file_id": "0040f5f1-affa-4178-b462-b1a483f58751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58db37e432624318a3d4f0d91bb492af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58db37e432624318a3d4f0d91bb492af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58db37e432624318a3d4f0d91bb492af.jpg", "file_size": 10288, "is_delete": false, "file_type": 1, "original_file_name": "JTSS649FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58db37e432624318a3d4f0d91bb492af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58db37e432624318a3d4f0d91bb492af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58db37e432624318a3d4f0d91bb492af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58db37e432624318a3d4f0d91bb492af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58db37e432624318a3d4f0d91bb492af.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eI_yvB3MCmltPbpuRxKTAe7bHI=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.648249+00 2025-12-09 10:15:31.648258+00 15682 FX-23118#RC23 SPMX-20240815310890 \N \N \N 1 \N [{"file_id": "004eb8db-b047-43b6-bf56-4b0879869913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a7b3f7fbd7448df9a35c610bb1a937c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a7b3f7fbd7448df9a35c610bb1a937c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a7b3f7fbd7448df9a35c610bb1a937c.jpg", "file_size": 15203, "is_delete": false, "file_type": 1, "original_file_name": "FX-23118#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a7b3f7fbd7448df9a35c610bb1a937c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a7b3f7fbd7448df9a35c610bb1a937c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a7b3f7fbd7448df9a35c610bb1a937c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a7b3f7fbd7448df9a35c610bb1a937c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a7b3f7fbd7448df9a35c610bb1a937c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ud2spvt-aHpD1g9opN3g9RlJV4E=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.651027+00 2025-12-09 10:15:31.651033+00 15683 DL31253#下摆黄色 SPMX-20240815310884 \N \N \N 1 \N [{"file_id": "b3f4e903-debf-40c2-ac87-ac5aaa801752", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e929b65744e4696943033cc0efc681d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e929b65744e4696943033cc0efc681d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e929b65744e4696943033cc0efc681d.jpg", "file_size": 24215, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#下摆黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e929b65744e4696943033cc0efc681d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e929b65744e4696943033cc0efc681d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e929b65744e4696943033cc0efc681d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e929b65744e4696943033cc0efc681d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e929b65744e4696943033cc0efc681d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imbIzYIa2QAI7BMCV7BwIac_7GU=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.653756+00 2025-12-09 10:15:31.653761+00 15684 CB308FWE#灵火2XL VS-D3 SPMX-20240815310887 \N \N \N 1 \N [{"file_id": "70b78861-d111-4417-836c-63b2398e4c44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ece56acc8f14d26bab4700af90ee1da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ece56acc8f14d26bab4700af90ee1da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ece56acc8f14d26bab4700af90ee1da.jpg", "file_size": 23011, "is_delete": false, "file_type": 1, "original_file_name": "CB308FWE#灵火2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ece56acc8f14d26bab4700af90ee1da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ece56acc8f14d26bab4700af90ee1da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ece56acc8f14d26bab4700af90ee1da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ece56acc8f14d26bab4700af90ee1da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ece56acc8f14d26bab4700af90ee1da.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UT9SHdI0-GUUuhiuqfc4ySC5qhw=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.65649+00 2025-12-09 10:15:31.656496+00 15685 1221FWE#藏青批布 SPMX-20240815310893 \N \N \N 1 \N [{"file_id": "6201dfa0-4473-4d9c-ba6c-1772742e9008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ba2ba0cbfc044838382b17abdd7d50f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ba2ba0cbfc044838382b17abdd7d50f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ba2ba0cbfc044838382b17abdd7d50f.jpg", "file_size": 5252, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#藏青批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ba2ba0cbfc044838382b17abdd7d50f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ba2ba0cbfc044838382b17abdd7d50f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ba2ba0cbfc044838382b17abdd7d50f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ba2ba0cbfc044838382b17abdd7d50f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ba2ba0cbfc044838382b17abdd7d50f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3UGaRVrjRifdtNj6aGyeqh8WzA=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.659159+00 2025-12-09 10:15:31.659165+00 15686 23-305#A5-3XL SPMX-20240815310880 \N \N \N 1 \N [{"file_id": "c6cab15e-76d8-4c9e-95d6-cdb278bc18a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00a649cc4483448e8e75d08eff52c0e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00a649cc4483448e8e75d08eff52c0e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00a649cc4483448e8e75d08eff52c0e3.jpg", "file_size": 20715, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a649cc4483448e8e75d08eff52c0e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a649cc4483448e8e75d08eff52c0e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a649cc4483448e8e75d08eff52c0e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00a649cc4483448e8e75d08eff52c0e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00a649cc4483448e8e75d08eff52c0e3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5i1M5yz9AqfR38kijgl2OjvDvA=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.66193+00 2025-12-09 10:15:31.661935+00 15687 0006-56FWF#V5曲线 SPMX-20240815310896 \N \N \N 1 \N [{"file_id": "aaca0381-d752-4b10-a098-5d31a9d300c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7694b95600a44f088edb7f6d859f65ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7694b95600a44f088edb7f6d859f65ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7694b95600a44f088edb7f6d859f65ef.jpg", "file_size": 13228, "is_delete": false, "file_type": 1, "original_file_name": "0006-56FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7694b95600a44f088edb7f6d859f65ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7694b95600a44f088edb7f6d859f65ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7694b95600a44f088edb7f6d859f65ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7694b95600a44f088edb7f6d859f65ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7694b95600a44f088edb7f6d859f65ef.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ymkl7k7dYjLPS5Jy9YljdiJDTM=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.664621+00 2025-12-09 10:15:31.664626+00 15688 23-305#A5-4XL SPMX-20240815310889 \N \N \N 1 \N [{"file_id": "4f86bf3b-f53d-496c-9a4c-5ece3835b5db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3a89faccb7b453786fdfa163af6fbab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3a89faccb7b453786fdfa163af6fbab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3a89faccb7b453786fdfa163af6fbab.jpg", "file_size": 18989, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a89faccb7b453786fdfa163af6fbab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a89faccb7b453786fdfa163af6fbab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a89faccb7b453786fdfa163af6fbab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3a89faccb7b453786fdfa163af6fbab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3a89faccb7b453786fdfa163af6fbab.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WyvqFJKcXZVJG192_8iCButH0CI=", "createTime": "2024-08-15 14:59:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.667356+00 2025-12-09 10:15:31.667362+00 15689 LJH1844#上摆黑色 SPMX-20240815310900 \N \N \N 1 \N [{"file_id": "2c465f87-707e-46a3-b3e2-2def38b42049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ab52303fdc413895c8eb7d884499a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ab52303fdc413895c8eb7d884499a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ab52303fdc413895c8eb7d884499a4.jpg", "file_size": 78758, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#上摆黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab52303fdc413895c8eb7d884499a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab52303fdc413895c8eb7d884499a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ab52303fdc413895c8eb7d884499a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ab52303fdc413895c8eb7d884499a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ab52303fdc413895c8eb7d884499a4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBWX-1eLNbcrkmWKWvqx1Ba0AdU=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.670067+00 2025-12-09 10:15:31.670072+00 15690 FX-P210#2XL SPMX-20240815310906 \N \N \N 1 \N [{"file_id": "614087d8-ccca-44e1-a23b-cedf4b3fda8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e8a0ebbebc541fe8900d226bb9b575e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e8a0ebbebc541fe8900d226bb9b575e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e8a0ebbebc541fe8900d226bb9b575e.jpg", "file_size": 49610, "is_delete": false, "file_type": 1, "original_file_name": "FX-P210#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8a0ebbebc541fe8900d226bb9b575e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8a0ebbebc541fe8900d226bb9b575e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e8a0ebbebc541fe8900d226bb9b575e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e8a0ebbebc541fe8900d226bb9b575e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e8a0ebbebc541fe8900d226bb9b575e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkzIBiQK4Xh4rFznhwFu7VqcKfg=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.672911+00 2025-12-09 10:15:31.672916+00 15691 0006-57FWE#VS-D3 SPMX-20240815310909 \N \N \N 1 \N [{"file_id": "fbff9476-0b93-4ebd-a3a0-fddd8791500a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1202cd17b8c04d25b19bab8e43ffe340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1202cd17b8c04d25b19bab8e43ffe340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1202cd17b8c04d25b19bab8e43ffe340.jpg", "file_size": 23611, "is_delete": false, "file_type": 1, "original_file_name": "0006-57FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1202cd17b8c04d25b19bab8e43ffe340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1202cd17b8c04d25b19bab8e43ffe340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1202cd17b8c04d25b19bab8e43ffe340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1202cd17b8c04d25b19bab8e43ffe340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1202cd17b8c04d25b19bab8e43ffe340.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVP-oAtDmRpirSmdfOYOdlbfIVY=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.67553+00 2025-12-09 10:15:31.675534+00 15692 23-305#A5-领子3XL SPMX-20240815310902 \N \N \N 1 \N [{"file_id": "305e3517-8c81-4755-9115-e04d85f2fc9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cd2b9d594e949d79bed382ea1dfd7f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cd2b9d594e949d79bed382ea1dfd7f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cd2b9d594e949d79bed382ea1dfd7f2.jpg", "file_size": 13294, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd2b9d594e949d79bed382ea1dfd7f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd2b9d594e949d79bed382ea1dfd7f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd2b9d594e949d79bed382ea1dfd7f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cd2b9d594e949d79bed382ea1dfd7f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cd2b9d594e949d79bed382ea1dfd7f2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aRigOtWyNj0V1Ysk4f-oV-jzB4=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.678082+00 2025-12-09 10:15:31.678087+00 15693 CB308FWE#灵火M VS-D3 SPMX-20240815310908 \N \N \N 1 \N [{"file_id": "8e03e655-fb5a-4709-865a-2b0b7222f88b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg", "file_size": 23503, "is_delete": false, "file_type": 1, "original_file_name": "CB308FWE#灵火M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a14ff633d94f0aaa8c14b3c7cf6c93.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-MJOA63rBk4P9YA1mQr9hGlZL6c=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.680564+00 2025-12-09 10:15:31.680568+00 15694 CB308FWE#灵火L VS-D3 SPMX-20240815310898 \N \N \N 1 \N [{"file_id": "969a16ae-7763-464f-a8a7-9a1378b32234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b337a4282e43538105a77548fc8eb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b337a4282e43538105a77548fc8eb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b337a4282e43538105a77548fc8eb4.jpg", "file_size": 23261, "is_delete": false, "file_type": 1, "original_file_name": "CB308FWE#灵火L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b337a4282e43538105a77548fc8eb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b337a4282e43538105a77548fc8eb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b337a4282e43538105a77548fc8eb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b337a4282e43538105a77548fc8eb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b337a4282e43538105a77548fc8eb4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7Y6-Vqal0U4TI1a2oJ8vjnQZC8=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.683121+00 2025-12-09 10:15:31.683125+00 15695 LZ1346#童装T1号色 SPMX-20240815310901 \N \N \N 1 \N [{"file_id": "9a2327cc-8c7a-4f67-b6d1-178dc05f87d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c0f8190c0e2452f8bb0deabcf710d72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c0f8190c0e2452f8bb0deabcf710d72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c0f8190c0e2452f8bb0deabcf710d72.jpg", "file_size": 24368, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c0f8190c0e2452f8bb0deabcf710d72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c0f8190c0e2452f8bb0deabcf710d72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c0f8190c0e2452f8bb0deabcf710d72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c0f8190c0e2452f8bb0deabcf710d72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c0f8190c0e2452f8bb0deabcf710d72.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mElThnwB2wmLxjNIBufNTn9MOVw=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.685511+00 2025-12-09 10:15:31.685516+00 15696 1221FWE#黄色2XL SPMX-20240815310905 \N \N \N 1 \N [{"file_id": "7a0b573e-1327-43bb-a4f3-81db7e0857a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68b6e3db1ee8468ea016b21ae943e4ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68b6e3db1ee8468ea016b21ae943e4ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68b6e3db1ee8468ea016b21ae943e4ba.jpg", "file_size": 14174, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b6e3db1ee8468ea016b21ae943e4ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b6e3db1ee8468ea016b21ae943e4ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b6e3db1ee8468ea016b21ae943e4ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68b6e3db1ee8468ea016b21ae943e4ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68b6e3db1ee8468ea016b21ae943e4ba.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQxbv2RK0WNHnbi_11ZPvQh0rCw=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.687739+00 2025-12-09 10:15:31.687743+00 15697 JTSS650FW#VS-D3 SPMX-20240815310897 \N \N \N 1 \N [{"file_id": "537116d0-110d-478d-b44b-cad285947a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfd900437db347bf945ef6fae20597ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfd900437db347bf945ef6fae20597ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfd900437db347bf945ef6fae20597ee.jpg", "file_size": 13786, "is_delete": false, "file_type": 1, "original_file_name": "JTSS650FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd900437db347bf945ef6fae20597ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd900437db347bf945ef6fae20597ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd900437db347bf945ef6fae20597ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfd900437db347bf945ef6fae20597ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfd900437db347bf945ef6fae20597ee.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RlRculeaw03t-JK7WWQ2Mor6COs=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.690197+00 2025-12-09 10:15:31.690202+00 15698 DL31253#批布大红 SPMX-20240815310903 \N \N \N 1 \N [{"file_id": "fda384ec-9453-4eef-9585-56937b7bff54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c08a1dbfe028459690144a40cd63d0dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c08a1dbfe028459690144a40cd63d0dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c08a1dbfe028459690144a40cd63d0dd.jpg", "file_size": 23566, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a1dbfe028459690144a40cd63d0dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a1dbfe028459690144a40cd63d0dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08a1dbfe028459690144a40cd63d0dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c08a1dbfe028459690144a40cd63d0dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c08a1dbfe028459690144a40cd63d0dd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xv_bwATwCHW_MidHPydK9q8R25M=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.692687+00 2025-12-09 10:15:31.692691+00 15699 HW475139FWE#XL VS-D3 SPMX-20240815310904 \N \N \N 1 \N [{"file_id": "2fd2d94b-1d49-494e-b150-0c14bd6e1afa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e16e7828d857429585730a7e58378d17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e16e7828d857429585730a7e58378d17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e16e7828d857429585730a7e58378d17.jpg", "file_size": 12592, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16e7828d857429585730a7e58378d17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16e7828d857429585730a7e58378d17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e16e7828d857429585730a7e58378d17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e16e7828d857429585730a7e58378d17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e16e7828d857429585730a7e58378d17.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jASdkTWflxX0jFv8ZzaGmbWf7rQ=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.695185+00 2025-12-09 10:15:31.69519+00 15700 85013#乱花 SPMX-20240815310899 \N \N \N 1 \N [{"file_id": "5c38f592-5ef3-4290-b6a2-99e8ab30a803", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62e5d12473994923b7d914ca83a0fa77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62e5d12473994923b7d914ca83a0fa77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62e5d12473994923b7d914ca83a0fa77.jpg", "file_size": 6544, "is_delete": false, "file_type": 1, "original_file_name": "85013#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e5d12473994923b7d914ca83a0fa77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e5d12473994923b7d914ca83a0fa77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e5d12473994923b7d914ca83a0fa77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62e5d12473994923b7d914ca83a0fa77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62e5d12473994923b7d914ca83a0fa77.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDNsy5Hjv0XbeVHDkB_jr4t5QZ4=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.697635+00 2025-12-09 10:15:31.69764+00 15701 JTSS651FW#VS-D3 SPMX-20240815310907 \N \N \N 1 \N [{"file_id": "ad416537-9587-4ff7-81e2-59badc26c5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c3c951f15704ab488a64f83dfa1e9e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c3c951f15704ab488a64f83dfa1e9e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c3c951f15704ab488a64f83dfa1e9e5.jpg", "file_size": 9839, "is_delete": false, "file_type": 1, "original_file_name": "JTSS651FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3c951f15704ab488a64f83dfa1e9e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3c951f15704ab488a64f83dfa1e9e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c3c951f15704ab488a64f83dfa1e9e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c3c951f15704ab488a64f83dfa1e9e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c3c951f15704ab488a64f83dfa1e9e5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDwZ4VJnlKDoXDIYx4YXGNSSJ9w=", "createTime": "2024-08-15 14:59:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.699858+00 2025-12-09 10:15:31.699862+00 15702 23-305#A5-领子4XL SPMX-20240815310914 \N \N \N 1 \N [{"file_id": "47e05a3b-928c-4ed0-9040-50e121e95bfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a967a321e4c46d68d7868afde56a147.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a967a321e4c46d68d7868afde56a147.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a967a321e4c46d68d7868afde56a147.jpg", "file_size": 13681, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a967a321e4c46d68d7868afde56a147.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a967a321e4c46d68d7868afde56a147.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a967a321e4c46d68d7868afde56a147.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a967a321e4c46d68d7868afde56a147.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a967a321e4c46d68d7868afde56a147.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4_UVVtpkB_7CaoQiY1_Gk2vArk=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.702421+00 2025-12-09 10:15:31.702427+00 15703 LJH1844#袖子批布彩兰 SPMX-20240815310912 \N \N \N 1 \N [{"file_id": "23f69308-38a8-4cd8-8f30-47087db622d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a19c413152c24f9b8a54546758d8639b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a19c413152c24f9b8a54546758d8639b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a19c413152c24f9b8a54546758d8639b.jpg", "file_size": 52722, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#袖子批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19c413152c24f9b8a54546758d8639b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19c413152c24f9b8a54546758d8639b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a19c413152c24f9b8a54546758d8639b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a19c413152c24f9b8a54546758d8639b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a19c413152c24f9b8a54546758d8639b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwodbg7KPGUOljR8p6JCNugvEgY=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.705174+00 2025-12-09 10:15:31.705179+00 15704 DL31253#批布彩兰 SPMX-20240815310917 \N \N \N 1 \N [{"file_id": "e1d57d7d-8ebe-48aa-9fea-58065240f854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fdeadf0cafe47c5bcd906da8c9bd822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fdeadf0cafe47c5bcd906da8c9bd822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fdeadf0cafe47c5bcd906da8c9bd822.jpg", "file_size": 23658, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fdeadf0cafe47c5bcd906da8c9bd822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fdeadf0cafe47c5bcd906da8c9bd822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fdeadf0cafe47c5bcd906da8c9bd822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fdeadf0cafe47c5bcd906da8c9bd822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fdeadf0cafe47c5bcd906da8c9bd822.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GkW2nyEBO_IxWfLVfOEQQdVxsOY=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.707941+00 2025-12-09 10:15:31.707947+00 15705 1221FWE#黄色3XL SPMX-20240815310918 \N \N \N 1 \N [{"file_id": "2bbd14e7-dc46-4f63-a2ac-026e6b743c78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c75410a173504875ab0d8ce911dcbdc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c75410a173504875ab0d8ce911dcbdc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c75410a173504875ab0d8ce911dcbdc8.jpg", "file_size": 14986, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75410a173504875ab0d8ce911dcbdc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75410a173504875ab0d8ce911dcbdc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75410a173504875ab0d8ce911dcbdc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c75410a173504875ab0d8ce911dcbdc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c75410a173504875ab0d8ce911dcbdc8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ydO_na29LoX4u31bIRgyhTH4sk=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.710644+00 2025-12-09 10:15:31.710649+00 15706 0006-57FWF#V5曲线 SPMX-20240815310921 \N \N \N 1 \N [{"file_id": "cc826dae-6064-4a14-b4c6-6355839ed7ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68f7d9499a3a4cc4b96329f299e528e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68f7d9499a3a4cc4b96329f299e528e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68f7d9499a3a4cc4b96329f299e528e5.jpg", "file_size": 16856, "is_delete": false, "file_type": 1, "original_file_name": "0006-57FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f7d9499a3a4cc4b96329f299e528e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f7d9499a3a4cc4b96329f299e528e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f7d9499a3a4cc4b96329f299e528e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68f7d9499a3a4cc4b96329f299e528e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68f7d9499a3a4cc4b96329f299e528e5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z46_iDM1YVpC5eMIhznJ140AhmQ=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.713308+00 2025-12-09 10:15:31.713314+00 15707 HW475139FWE#批布 VS-D3 SPMX-20240815310916 \N \N \N 1 \N [{"file_id": "59be6457-722f-458d-9f62-cd5e6f826415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b15668a6bb614dd0aef26a1e76f2219c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b15668a6bb614dd0aef26a1e76f2219c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b15668a6bb614dd0aef26a1e76f2219c.jpg", "file_size": 12381, "is_delete": false, "file_type": 1, "original_file_name": "HW475139FWE#批布 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15668a6bb614dd0aef26a1e76f2219c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15668a6bb614dd0aef26a1e76f2219c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15668a6bb614dd0aef26a1e76f2219c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b15668a6bb614dd0aef26a1e76f2219c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b15668a6bb614dd0aef26a1e76f2219c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYeTOHkqDpa0RIIYzgeiGOVkHco=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.716026+00 2025-12-09 10:15:31.716032+00 15708 JTSS652FW#VS-D3 SPMX-20240815310919 \N \N \N 1 \N [{"file_id": "000b217a-5be4-4cd6-8ff7-ba407c75bda5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19fe7529773c4505a3bd914976379d1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19fe7529773c4505a3bd914976379d1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19fe7529773c4505a3bd914976379d1d.jpg", "file_size": 9763, "is_delete": false, "file_type": 1, "original_file_name": "JTSS652FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fe7529773c4505a3bd914976379d1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fe7529773c4505a3bd914976379d1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19fe7529773c4505a3bd914976379d1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19fe7529773c4505a3bd914976379d1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19fe7529773c4505a3bd914976379d1d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0qgWBeZQpeUjK64_IixmJDDypQ=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.718713+00 2025-12-09 10:15:31.718718+00 15709 85014#14码 SPMX-20240815310922 \N \N \N 1 \N [{"file_id": "b39083c0-693f-498e-881d-586a90765c22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faaa9d2413554a7193a377bc93837906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faaa9d2413554a7193a377bc93837906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faaa9d2413554a7193a377bc93837906.jpg", "file_size": 22174, "is_delete": false, "file_type": 1, "original_file_name": "85014#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faaa9d2413554a7193a377bc93837906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faaa9d2413554a7193a377bc93837906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faaa9d2413554a7193a377bc93837906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faaa9d2413554a7193a377bc93837906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faaa9d2413554a7193a377bc93837906.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvTvxuqEu9TtIOBuVX6obePQizY=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.721403+00 2025-12-09 10:15:31.721409+00 15710 FX-P210#L SPMX-20240815310915 \N \N \N 1 \N [{"file_id": "d936030e-1bd3-4441-8d81-f6f3540fd67a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a249463c1ecf4389bd50b2f2ce1749ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a249463c1ecf4389bd50b2f2ce1749ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a249463c1ecf4389bd50b2f2ce1749ef.jpg", "file_size": 55850, "is_delete": false, "file_type": 1, "original_file_name": "FX-P210#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a249463c1ecf4389bd50b2f2ce1749ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a249463c1ecf4389bd50b2f2ce1749ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a249463c1ecf4389bd50b2f2ce1749ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a249463c1ecf4389bd50b2f2ce1749ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a249463c1ecf4389bd50b2f2ce1749ef.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLEns93I6NG2hbJDaUVI0akBpuk=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.724107+00 2025-12-09 10:15:31.724113+00 15711 CB308FWE#灵火XL VS-D3 SPMX-20240815310920 \N \N \N 1 \N [{"file_id": "9048fa2f-b3d9-4227-af24-bde8d51499ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c0414e36b2f49d9bbccd4415bffb217.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c0414e36b2f49d9bbccd4415bffb217.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c0414e36b2f49d9bbccd4415bffb217.jpg", "file_size": 22906, "is_delete": false, "file_type": 1, "original_file_name": "CB308FWE#灵火XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0414e36b2f49d9bbccd4415bffb217.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0414e36b2f49d9bbccd4415bffb217.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0414e36b2f49d9bbccd4415bffb217.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c0414e36b2f49d9bbccd4415bffb217.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c0414e36b2f49d9bbccd4415bffb217.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCH1YXKGUK1PHXoGKsbvJWtb8Mo=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.726856+00 2025-12-09 10:15:31.726862+00 15712 85014#10码+12码 SPMX-20240815310910 \N \N \N 1 \N [{"file_id": "1a8d1a09-4071-4fcb-be8f-ac397ce5ed0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a4eb7fbe66d450dacd20426fbe3ea8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a4eb7fbe66d450dacd20426fbe3ea8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a4eb7fbe66d450dacd20426fbe3ea8a.jpg", "file_size": 23838, "is_delete": false, "file_type": 1, "original_file_name": "85014#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4eb7fbe66d450dacd20426fbe3ea8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4eb7fbe66d450dacd20426fbe3ea8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4eb7fbe66d450dacd20426fbe3ea8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a4eb7fbe66d450dacd20426fbe3ea8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a4eb7fbe66d450dacd20426fbe3ea8a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Csum8Dlf5L5_eyIZivKFpMzbGKM=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.729575+00 2025-12-09 10:15:31.729581+00 15713 LZ1346#童装T2号色 SPMX-20240815310913 \N \N \N 1 \N [{"file_id": "f4b53d46-924f-4fce-950c-a118280e5ab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38df9df971264930a091eeb8b472e3cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38df9df971264930a091eeb8b472e3cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38df9df971264930a091eeb8b472e3cc.jpg", "file_size": 23690, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38df9df971264930a091eeb8b472e3cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38df9df971264930a091eeb8b472e3cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38df9df971264930a091eeb8b472e3cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38df9df971264930a091eeb8b472e3cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38df9df971264930a091eeb8b472e3cc.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IozvCtRge2nsOikQuWBn7cVuRGI=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.732312+00 2025-12-09 10:15:31.732318+00 15714 JTSS653FW#VS-D3 SPMX-20240815310929 \N \N \N 1 \N [{"file_id": "cc55c68c-33c3-4316-82df-d54aaf6edecb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d56923783d04fb7b202b4cf08c396c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d56923783d04fb7b202b4cf08c396c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d56923783d04fb7b202b4cf08c396c0.jpg", "file_size": 9659, "is_delete": false, "file_type": 1, "original_file_name": "JTSS653FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d56923783d04fb7b202b4cf08c396c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d56923783d04fb7b202b4cf08c396c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d56923783d04fb7b202b4cf08c396c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d56923783d04fb7b202b4cf08c396c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d56923783d04fb7b202b4cf08c396c0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwRCftedOG7xVSc9o8E4g0Hr2h4=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.735042+00 2025-12-09 10:15:31.735047+00 15715 1221FWE#黄色4XL SPMX-20240815310931 \N \N \N 1 \N [{"file_id": "75e1f21c-65c8-4e5d-8a36-7b36e4a2a320", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3f5fde7288a4bceb989fed0d77584c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3f5fde7288a4bceb989fed0d77584c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3f5fde7288a4bceb989fed0d77584c3.jpg", "file_size": 9312, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5fde7288a4bceb989fed0d77584c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5fde7288a4bceb989fed0d77584c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f5fde7288a4bceb989fed0d77584c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3f5fde7288a4bceb989fed0d77584c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3f5fde7288a4bceb989fed0d77584c3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hk5gGjXGjtEVdufFlN_ooRJ6kU8=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.737745+00 2025-12-09 10:15:31.737751+00 15716 DL31253#批布黄色 SPMX-20240815310937 \N \N \N 1 \N [{"file_id": "54915038-7303-4ef8-b86a-24a3adb67450", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1867cc15bd354ffc93879f620c33f3a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1867cc15bd354ffc93879f620c33f3a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1867cc15bd354ffc93879f620c33f3a5.jpg", "file_size": 24585, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867cc15bd354ffc93879f620c33f3a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867cc15bd354ffc93879f620c33f3a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867cc15bd354ffc93879f620c33f3a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1867cc15bd354ffc93879f620c33f3a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1867cc15bd354ffc93879f620c33f3a5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkZmH5OzAub9CAWBFUwxR0JHKa8=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.74045+00 2025-12-09 10:15:31.740456+00 15717 LJH1844#袖子批布桔色 SPMX-20240815310924 \N \N \N 1 \N [{"file_id": "5d8cbc07-0861-4853-a9e2-931c1340aaf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7eb567472d84b17be3a35409756600c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7eb567472d84b17be3a35409756600c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7eb567472d84b17be3a35409756600c.jpg", "file_size": 55176, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#袖子批布桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7eb567472d84b17be3a35409756600c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7eb567472d84b17be3a35409756600c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7eb567472d84b17be3a35409756600c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7eb567472d84b17be3a35409756600c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7eb567472d84b17be3a35409756600c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQ-31HDgnz9HRtRqb_3Nz28wGps=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.743179+00 2025-12-09 10:15:31.743184+00 15718 FX-P210#M SPMX-20240815310926 \N \N \N 1 \N [{"file_id": "f0daf760-f9e9-4659-8257-0396b8417efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "039c3ced6e6a4f6bbb1eae2aada56e6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "039c3ced6e6a4f6bbb1eae2aada56e6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "039c3ced6e6a4f6bbb1eae2aada56e6a.jpg", "file_size": 57713, "is_delete": false, "file_type": 1, "original_file_name": "FX-P210#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c3ced6e6a4f6bbb1eae2aada56e6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c3ced6e6a4f6bbb1eae2aada56e6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039c3ced6e6a4f6bbb1eae2aada56e6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/039c3ced6e6a4f6bbb1eae2aada56e6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/039c3ced6e6a4f6bbb1eae2aada56e6a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Llr329lL7HD4lRzfva3TrOJHIw=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.745911+00 2025-12-09 10:15:31.745917+00 15719 HW475394FWE#2XL VS-D3 SPMX-20240815310927 \N \N \N 1 \N [{"file_id": "aac6c53c-f6bc-4d03-b5c3-a55a67c83fb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfda2b9740934ec680854eb894589e90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfda2b9740934ec680854eb894589e90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfda2b9740934ec680854eb894589e90.jpg", "file_size": 17263, "is_delete": false, "file_type": 1, "original_file_name": "HW475394FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfda2b9740934ec680854eb894589e90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfda2b9740934ec680854eb894589e90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfda2b9740934ec680854eb894589e90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfda2b9740934ec680854eb894589e90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfda2b9740934ec680854eb894589e90.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y5Ab1JBNNCviN2eVVyYZbKdbod0=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.748611+00 2025-12-09 10:15:31.748617+00 15720 LJH1844#袖子批布红色 SPMX-20240815310935 \N \N \N 1 \N [{"file_id": "3e51c3b6-a2f7-4d20-82e9-fd92aa58d762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f482d5ce3e9548808509091938735b23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f482d5ce3e9548808509091938735b23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f482d5ce3e9548808509091938735b23.jpg", "file_size": 53485, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#袖子批布红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f482d5ce3e9548808509091938735b23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f482d5ce3e9548808509091938735b23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f482d5ce3e9548808509091938735b23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f482d5ce3e9548808509091938735b23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f482d5ce3e9548808509091938735b23.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p7GgVR59yzWZ8JMAJg0dZabo8T0=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.751354+00 2025-12-09 10:15:31.751361+00 15721 LZ1346#童装T4号色 SPMX-20240815310934 \N \N \N 1 \N [{"file_id": "9bd3e575-e246-45cc-9eb3-8906477890a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccda9cf1b63940e9bb04b6aa32c886b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccda9cf1b63940e9bb04b6aa32c886b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccda9cf1b63940e9bb04b6aa32c886b5.jpg", "file_size": 23182, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccda9cf1b63940e9bb04b6aa32c886b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccda9cf1b63940e9bb04b6aa32c886b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccda9cf1b63940e9bb04b6aa32c886b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccda9cf1b63940e9bb04b6aa32c886b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccda9cf1b63940e9bb04b6aa32c886b5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:swld1gJVAvyrXNdlEuHWJok4MtQ=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.754061+00 2025-12-09 10:15:31.754067+00 15722 DL31253#批布水红 SPMX-20240815310928 \N \N \N 1 \N [{"file_id": "77ecf408-bf4e-4ec1-a49b-539514187b6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3392552d0a646ed8c83c926bd5fafe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3392552d0a646ed8c83c926bd5fafe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3392552d0a646ed8c83c926bd5fafe8.jpg", "file_size": 23775, "is_delete": false, "file_type": 1, "original_file_name": "DL31253#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3392552d0a646ed8c83c926bd5fafe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3392552d0a646ed8c83c926bd5fafe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3392552d0a646ed8c83c926bd5fafe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3392552d0a646ed8c83c926bd5fafe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3392552d0a646ed8c83c926bd5fafe8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSPNqouAmelMoVM3gn8khJK0EsA=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.756805+00 2025-12-09 10:15:31.756811+00 15723 JTSS654FW#VS-D3 SPMX-20240815310939 \N \N \N 1 \N [{"file_id": "1b0d338a-35c3-48a5-a8b0-c01a2aff9fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2fcbbaab626440192107861b8fc1789.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2fcbbaab626440192107861b8fc1789.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2fcbbaab626440192107861b8fc1789.jpg", "file_size": 10452, "is_delete": false, "file_type": 1, "original_file_name": "JTSS654FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fcbbaab626440192107861b8fc1789.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fcbbaab626440192107861b8fc1789.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2fcbbaab626440192107861b8fc1789.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2fcbbaab626440192107861b8fc1789.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2fcbbaab626440192107861b8fc1789.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjZ6bcJDYZc7wrGjq1pTbest-FI=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.759515+00 2025-12-09 10:15:31.759521+00 15724 CB3308FWE#刺纹2XL VS-D3 SPMX-20240815310930 \N \N \N 1 \N [{"file_id": "6318d23a-3fae-4b77-a221-c9f6082e997a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5eeeb58b2a14a70b621a34a2171efed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5eeeb58b2a14a70b621a34a2171efed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5eeeb58b2a14a70b621a34a2171efed.jpg", "file_size": 23185, "is_delete": false, "file_type": 1, "original_file_name": "CB3308FWE#刺纹2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5eeeb58b2a14a70b621a34a2171efed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5eeeb58b2a14a70b621a34a2171efed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5eeeb58b2a14a70b621a34a2171efed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5eeeb58b2a14a70b621a34a2171efed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5eeeb58b2a14a70b621a34a2171efed.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUXj5Z-X8ZY7uFnlj60MqRH0K8Q=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.762243+00 2025-12-09 10:15:31.762248+00 15725 23-305#A6-3XL SPMX-20240815310925 \N \N \N 1 \N [{"file_id": "5d02374e-5d14-4500-b888-96d75e560d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eb5deb2346f4ccea722aee15cfe50df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eb5deb2346f4ccea722aee15cfe50df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eb5deb2346f4ccea722aee15cfe50df.jpg", "file_size": 23398, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A6-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb5deb2346f4ccea722aee15cfe50df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb5deb2346f4ccea722aee15cfe50df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb5deb2346f4ccea722aee15cfe50df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eb5deb2346f4ccea722aee15cfe50df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eb5deb2346f4ccea722aee15cfe50df.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXYWSI2TvH5FGFWVPf6JuA_3YwY=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.764978+00 2025-12-09 10:15:31.764984+00 15726 85014#4码+8码 SPMX-20240815310933 \N \N \N 1 \N [{"file_id": "a5a2bb2e-94c6-4e2e-8302-5e49fd64d422", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0d99a73f2964798808f69964a453577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0d99a73f2964798808f69964a453577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0d99a73f2964798808f69964a453577.jpg", "file_size": 24525, "is_delete": false, "file_type": 1, "original_file_name": "85014#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d99a73f2964798808f69964a453577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d99a73f2964798808f69964a453577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d99a73f2964798808f69964a453577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0d99a73f2964798808f69964a453577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0d99a73f2964798808f69964a453577.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dPAD3FY1nDC3cWvKb93EJhth_k=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.767728+00 2025-12-09 10:15:31.767734+00 15727 LZ1346#童装T3号色 SPMX-20240815310923 \N \N \N 1 \N [{"file_id": "a6b251fd-1637-47b0-9dab-b825ac4d9210", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3562741e04c143f79f28caa4fdf3e88a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3562741e04c143f79f28caa4fdf3e88a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3562741e04c143f79f28caa4fdf3e88a.jpg", "file_size": 22586, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3562741e04c143f79f28caa4fdf3e88a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3562741e04c143f79f28caa4fdf3e88a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3562741e04c143f79f28caa4fdf3e88a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3562741e04c143f79f28caa4fdf3e88a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3562741e04c143f79f28caa4fdf3e88a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HF7Y7U1M8Kx2nIFzuYPdw6nDVdQ=", "createTime": "2024-08-15 14:59:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.770453+00 2025-12-09 10:15:31.770459+00 15728 23-305#A6-4XL SPMX-20240815310936 \N \N \N 1 \N [{"file_id": "f861e360-bae0-47af-a067-5053f9f26fa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9657f0c25b994838a756f19e71d13aee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9657f0c25b994838a756f19e71d13aee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9657f0c25b994838a756f19e71d13aee.jpg", "file_size": 22473, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A6-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657f0c25b994838a756f19e71d13aee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657f0c25b994838a756f19e71d13aee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657f0c25b994838a756f19e71d13aee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9657f0c25b994838a756f19e71d13aee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9657f0c25b994838a756f19e71d13aee.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P430Ba3X6GQPYl9ie7yPuR44wz8=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.77318+00 2025-12-09 10:15:31.773185+00 15729 FX-P210#S SPMX-20240815310938 \N \N \N 1 \N [{"file_id": "272c5ee6-a18c-4f02-8130-ac11c91f5c79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg", "file_size": 39156, "is_delete": false, "file_type": 1, "original_file_name": "FX-P210#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7f2bdda4b84007ad0cb03f8dddfb7d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GS-D9KAvM2IE9OcQ1I92yZSUzUg=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.775818+00 2025-12-09 10:15:31.775824+00 15730 0006-58FWE#VS-D3 SPMX-20240815310932 \N \N \N 1 \N [{"file_id": "d68ebcc8-1499-4e43-91f6-385f98a36def", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3099879ab29b4839ae7038f26e83f7e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3099879ab29b4839ae7038f26e83f7e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3099879ab29b4839ae7038f26e83f7e5.jpg", "file_size": 14939, "is_delete": false, "file_type": 1, "original_file_name": "0006-58FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3099879ab29b4839ae7038f26e83f7e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3099879ab29b4839ae7038f26e83f7e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3099879ab29b4839ae7038f26e83f7e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3099879ab29b4839ae7038f26e83f7e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3099879ab29b4839ae7038f26e83f7e5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hCo2gYFcXKjtsN_yfIqGjusysIw=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.778537+00 2025-12-09 10:15:31.778543+00 15731 85014#6码 SPMX-20240815310944 \N \N \N 1 \N [{"file_id": "324a247d-6197-42fb-aa17-eff9f666d717", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cdbcdde11d144c8a8b392623853f6cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cdbcdde11d144c8a8b392623853f6cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cdbcdde11d144c8a8b392623853f6cb.jpg", "file_size": 23498, "is_delete": false, "file_type": 1, "original_file_name": "85014#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdbcdde11d144c8a8b392623853f6cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdbcdde11d144c8a8b392623853f6cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cdbcdde11d144c8a8b392623853f6cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cdbcdde11d144c8a8b392623853f6cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cdbcdde11d144c8a8b392623853f6cb.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9u1x7lJqmw9yhTlA0uWxXUR3ucE=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.78129+00 2025-12-09 10:15:31.781296+00 15732 FX-P210#XL SPMX-20240815310948 \N \N \N 1 \N [{"file_id": "cb624a6f-6e31-4fd7-a09a-9630c7ba0c54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29c8f39f37184f8980fe470c81fcad93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29c8f39f37184f8980fe470c81fcad93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29c8f39f37184f8980fe470c81fcad93.jpg", "file_size": 53079, "is_delete": false, "file_type": 1, "original_file_name": "FX-P210#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c8f39f37184f8980fe470c81fcad93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c8f39f37184f8980fe470c81fcad93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c8f39f37184f8980fe470c81fcad93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29c8f39f37184f8980fe470c81fcad93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29c8f39f37184f8980fe470c81fcad93.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dp-lteJYurF4tZH4Fu2935mQfVM=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.784013+00 2025-12-09 10:15:31.784019+00 15733 1221FWE#黄色L SPMX-20240815310942 \N \N \N 1 \N [{"file_id": "d3584ca0-0a09-4292-bc31-a61855889a93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4786c2ac1c7445abd044eb1f15d3ee4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4786c2ac1c7445abd044eb1f15d3ee4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4786c2ac1c7445abd044eb1f15d3ee4.jpg", "file_size": 13445, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4786c2ac1c7445abd044eb1f15d3ee4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4786c2ac1c7445abd044eb1f15d3ee4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4786c2ac1c7445abd044eb1f15d3ee4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4786c2ac1c7445abd044eb1f15d3ee4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4786c2ac1c7445abd044eb1f15d3ee4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3w-G67rq2yaLOnKGdBu1r7OdSCc=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.787065+00 2025-12-09 10:15:31.787071+00 15734 23-305#A6-领子3XL SPMX-20240815310946 \N \N \N 1 \N [{"file_id": "9d72aedc-bd08-4abd-a8f8-8455894807d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "668e698354744e13804b047a249ea5e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "668e698354744e13804b047a249ea5e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "668e698354744e13804b047a249ea5e6.jpg", "file_size": 15267, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A6-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668e698354744e13804b047a249ea5e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668e698354744e13804b047a249ea5e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668e698354744e13804b047a249ea5e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/668e698354744e13804b047a249ea5e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/668e698354744e13804b047a249ea5e6.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-GLtMwQcsUpJ_vypkNK8Ps4PB8s=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.808402+00 2025-12-09 10:15:31.808406+00 15743 0006-59FWE#红色 SPMX-20240815310951 \N \N \N 1 \N [{"file_id": "f6a6082f-9f5d-49c0-bc0c-a10390835282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c7158019fcf41d5968f20c62bbabddd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c7158019fcf41d5968f20c62bbabddd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c7158019fcf41d5968f20c62bbabddd.jpg", "file_size": 11165, "is_delete": false, "file_type": 1, "original_file_name": "0006-59FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7158019fcf41d5968f20c62bbabddd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7158019fcf41d5968f20c62bbabddd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c7158019fcf41d5968f20c62bbabddd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c7158019fcf41d5968f20c62bbabddd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c7158019fcf41d5968f20c62bbabddd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKa-20pGKf5MU6aQ9DCk07kDEKg=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.789751+00 2025-12-09 10:15:31.789756+00 15735 CB3308FWE#刺纹M VS-D3 SPMX-20240815310952 \N \N \N 1 \N [{"file_id": "2713fce4-16fe-498b-870e-de654b70aff0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232ba61dcbf448afa1eb4e0ba9abd0b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232ba61dcbf448afa1eb4e0ba9abd0b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232ba61dcbf448afa1eb4e0ba9abd0b4.jpg", "file_size": 23307, "is_delete": false, "file_type": 1, "original_file_name": "CB3308FWE#刺纹M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232ba61dcbf448afa1eb4e0ba9abd0b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232ba61dcbf448afa1eb4e0ba9abd0b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232ba61dcbf448afa1eb4e0ba9abd0b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232ba61dcbf448afa1eb4e0ba9abd0b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232ba61dcbf448afa1eb4e0ba9abd0b4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4onQKlXCr1ni32wBj4nLeOeY1o=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.792278+00 2025-12-09 10:15:31.792283+00 15736 DL31315#亮黄上身定位裁 SPMX-20240815310947 \N \N \N 1 \N [{"file_id": "59004b26-cb0f-4e71-8d20-bba1a1d9f217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d8cb80ba43e49dcb9738bee381dc8ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d8cb80ba43e49dcb9738bee381dc8ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d8cb80ba43e49dcb9738bee381dc8ca.jpg", "file_size": 16570, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#亮黄上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8cb80ba43e49dcb9738bee381dc8ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8cb80ba43e49dcb9738bee381dc8ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8cb80ba43e49dcb9738bee381dc8ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d8cb80ba43e49dcb9738bee381dc8ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d8cb80ba43e49dcb9738bee381dc8ca.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1si8FCudIPmsgDMojpf2nQawb7M=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.794527+00 2025-12-09 10:15:31.794531+00 15737 CB3308FWE#刺纹L VS-D3 SPMX-20240815310940 \N \N \N 1 \N [{"file_id": "413e6af9-9723-40d9-b0df-6aad9a96d045", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f37c4d38c64e9bbce0eb6fd07fa72b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f37c4d38c64e9bbce0eb6fd07fa72b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f37c4d38c64e9bbce0eb6fd07fa72b.jpg", "file_size": 22995, "is_delete": false, "file_type": 1, "original_file_name": "CB3308FWE#刺纹L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f37c4d38c64e9bbce0eb6fd07fa72b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f37c4d38c64e9bbce0eb6fd07fa72b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f37c4d38c64e9bbce0eb6fd07fa72b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f37c4d38c64e9bbce0eb6fd07fa72b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f37c4d38c64e9bbce0eb6fd07fa72b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H25AqvrtWUlcUorWP-LoMjUGp_I=", "createTime": "2024-08-15 14:59:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.796945+00 2025-12-09 10:15:31.79695+00 15738 LZ1346#童装T5号色 SPMX-20240815310945 \N \N \N 1 \N [{"file_id": "8b43fb82-593e-4aa2-b6df-4343d455bac4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cbb9de2272743a99e1ff8228e5414b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cbb9de2272743a99e1ff8228e5414b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cbb9de2272743a99e1ff8228e5414b8.jpg", "file_size": 23056, "is_delete": false, "file_type": 1, "original_file_name": "LZ1346#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb9de2272743a99e1ff8228e5414b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb9de2272743a99e1ff8228e5414b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cbb9de2272743a99e1ff8228e5414b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cbb9de2272743a99e1ff8228e5414b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cbb9de2272743a99e1ff8228e5414b8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEz2nHI9C2VhifnijRV_mKcFhhg=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.799288+00 2025-12-09 10:15:31.799293+00 15739 LJH1844#袖子批布黑色 SPMX-20240815310949 \N \N \N 1 \N [{"file_id": "f3e8e1ea-4cd8-4c21-b7e3-9bb21159c664", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3dec8cc41a3400daacd8320b4f5b14b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3dec8cc41a3400daacd8320b4f5b14b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3dec8cc41a3400daacd8320b4f5b14b.jpg", "file_size": 51072, "is_delete": false, "file_type": 1, "original_file_name": "LJH1844#袖子批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dec8cc41a3400daacd8320b4f5b14b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dec8cc41a3400daacd8320b4f5b14b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dec8cc41a3400daacd8320b4f5b14b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3dec8cc41a3400daacd8320b4f5b14b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3dec8cc41a3400daacd8320b4f5b14b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDvjltsls2IfO7h5LEr5VPUZbBg=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.801478+00 2025-12-09 10:15:31.801483+00 15740 0006-58FWF#V5曲线 SPMX-20240815310941 \N \N \N 1 \N [{"file_id": "84837452-d759-427d-803c-d543779b2f43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34c7f766e27d4ac7af8c2108276c6126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34c7f766e27d4ac7af8c2108276c6126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34c7f766e27d4ac7af8c2108276c6126.jpg", "file_size": 16275, "is_delete": false, "file_type": 1, "original_file_name": "0006-58FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7f766e27d4ac7af8c2108276c6126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7f766e27d4ac7af8c2108276c6126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34c7f766e27d4ac7af8c2108276c6126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34c7f766e27d4ac7af8c2108276c6126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34c7f766e27d4ac7af8c2108276c6126.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xmr5E5qNRV-enIC21iaOCKNmJvc=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.803886+00 2025-12-09 10:15:31.803891+00 15741 JTSS655FW#VS-D3 SPMX-20240815310950 \N \N \N 1 \N [{"file_id": "d4056881-4491-4159-ba1b-af9b124ff0c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb992b38c5574e5ca5c5a8fb3c4873a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb992b38c5574e5ca5c5a8fb3c4873a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb992b38c5574e5ca5c5a8fb3c4873a7.jpg", "file_size": 10392, "is_delete": false, "file_type": 1, "original_file_name": "JTSS655FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb992b38c5574e5ca5c5a8fb3c4873a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb992b38c5574e5ca5c5a8fb3c4873a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb992b38c5574e5ca5c5a8fb3c4873a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb992b38c5574e5ca5c5a8fb3c4873a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb992b38c5574e5ca5c5a8fb3c4873a7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQohK9UVORg8IW-iX2urqS6Qvic=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.806256+00 2025-12-09 10:15:31.806261+00 15742 HW475394FWE#L VS-D3 SPMX-20240815310943 \N \N \N 1 \N [{"file_id": "76e46967-ee57-4eaa-8a3e-a2659270d3c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "601908f6070c40caac687fe9c565cf63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "601908f6070c40caac687fe9c565cf63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "601908f6070c40caac687fe9c565cf63.jpg", "file_size": 16227, "is_delete": false, "file_type": 1, "original_file_name": "HW475394FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601908f6070c40caac687fe9c565cf63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601908f6070c40caac687fe9c565cf63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601908f6070c40caac687fe9c565cf63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/601908f6070c40caac687fe9c565cf63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/601908f6070c40caac687fe9c565cf63.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-9rEormL_xcnR-pCuBOBrq57sw=", "createTime": "2024-08-15 14:59:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.810547+00 2025-12-09 10:15:31.810552+00 15744 23-305#A6-领子4XL SPMX-20240815310958 \N \N \N 1 \N [{"file_id": "c6d685f3-970c-4744-9c1d-63984e1117b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b3f8d350aea4ee994899b528db563f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b3f8d350aea4ee994899b528db563f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b3f8d350aea4ee994899b528db563f8.jpg", "file_size": 15434, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A6-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b3f8d350aea4ee994899b528db563f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b3f8d350aea4ee994899b528db563f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b3f8d350aea4ee994899b528db563f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b3f8d350aea4ee994899b528db563f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b3f8d350aea4ee994899b528db563f8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g5EN2Z5jm714qInGitkfRVInI3M=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.81296+00 2025-12-09 10:15:31.812964+00 15745 CB3308FWE#刺纹XL VS-D3 SPMX-20240815310962 \N \N \N 1 \N [{"file_id": "2ece9633-8345-467e-95e9-fd07df39668e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "437ce103a3c14d8183281471362511c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "437ce103a3c14d8183281471362511c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "437ce103a3c14d8183281471362511c9.jpg", "file_size": 22915, "is_delete": false, "file_type": 1, "original_file_name": "CB3308FWE#刺纹XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437ce103a3c14d8183281471362511c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437ce103a3c14d8183281471362511c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437ce103a3c14d8183281471362511c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/437ce103a3c14d8183281471362511c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/437ce103a3c14d8183281471362511c9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:meMFKYT91Vgm-OfjkErylKsOaEQ=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.815325+00 2025-12-09 10:15:31.815329+00 15746 FX-ST23171#黑1XL SPMX-20240815310960 \N \N \N 1 \N [{"file_id": "98931318-32d5-491b-8c44-6dbfc961e9b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14be982019024d10a22419750c477fdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14be982019024d10a22419750c477fdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14be982019024d10a22419750c477fdf.jpg", "file_size": 40520, "is_delete": false, "file_type": 1, "original_file_name": "FX-ST23171#黑1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14be982019024d10a22419750c477fdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14be982019024d10a22419750c477fdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14be982019024d10a22419750c477fdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14be982019024d10a22419750c477fdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14be982019024d10a22419750c477fdf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLxc448kqoDQjqARjwFvFYucoNw=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.817447+00 2025-12-09 10:15:31.817451+00 15747 1221FWE#黄色XL SPMX-20240815310953 \N \N \N 1 \N [{"file_id": "ce36b44a-b351-45b9-8aa6-999725e0be16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg", "file_size": 14239, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/473a4fc3d57f45b4a5d7e9779e9b8fcf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOq_SO9oB1B1c0ewyohyy9tHWSU=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.81985+00 2025-12-09 10:15:31.819857+00 15748 LJH1845#浅绿 SPMX-20240815310959 \N \N \N 1 \N [{"file_id": "b672e257-8a64-4844-b316-ba8971f93b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5386b08be5d549a4825c1db598d2f64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5386b08be5d549a4825c1db598d2f64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5386b08be5d549a4825c1db598d2f64b.jpg", "file_size": 51116, "is_delete": false, "file_type": 1, "original_file_name": "LJH1845#浅绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5386b08be5d549a4825c1db598d2f64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5386b08be5d549a4825c1db598d2f64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5386b08be5d549a4825c1db598d2f64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5386b08be5d549a4825c1db598d2f64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5386b08be5d549a4825c1db598d2f64b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMfyMoo7qx95NWs6TuwPuoE_51Q=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.822708+00 2025-12-09 10:15:31.822717+00 15749 85015#10码+12码 SPMX-20240815310964 \N \N \N 1 \N [{"file_id": "524d8647-6044-4287-bb8f-0af8eda9d26e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c416896112343e0b34706be34cc033f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c416896112343e0b34706be34cc033f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c416896112343e0b34706be34cc033f.jpg", "file_size": 20231, "is_delete": false, "file_type": 1, "original_file_name": "85015#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c416896112343e0b34706be34cc033f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c416896112343e0b34706be34cc033f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c416896112343e0b34706be34cc033f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c416896112343e0b34706be34cc033f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c416896112343e0b34706be34cc033f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Gp-9UHczU1OQlaSVFBbM7xI9Eg=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.825607+00 2025-12-09 10:15:31.825612+00 15750 DL31315#天蓝上身定位裁 SPMX-20240815310967 \N \N \N 1 \N [{"file_id": "20e03824-73c3-446a-8577-91bd452ec82b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "558c72378e1d4de7b978d3cdb7956a77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "558c72378e1d4de7b978d3cdb7956a77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "558c72378e1d4de7b978d3cdb7956a77.jpg", "file_size": 16098, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#天蓝上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558c72378e1d4de7b978d3cdb7956a77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558c72378e1d4de7b978d3cdb7956a77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/558c72378e1d4de7b978d3cdb7956a77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/558c72378e1d4de7b978d3cdb7956a77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/558c72378e1d4de7b978d3cdb7956a77.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5QvDJuzIif2FyDcdSW4IC98PnPU=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.828306+00 2025-12-09 10:15:31.828312+00 15751 HW475394FWE#M VS-D3 SPMX-20240815310955 \N \N \N 1 \N [{"file_id": "1e3d7708-231f-4dfc-a639-57504b5fc061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "775b2292fbee4a8d99515ba5e31143d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "775b2292fbee4a8d99515ba5e31143d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "775b2292fbee4a8d99515ba5e31143d7.jpg", "file_size": 15942, "is_delete": false, "file_type": 1, "original_file_name": "HW475394FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b2292fbee4a8d99515ba5e31143d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b2292fbee4a8d99515ba5e31143d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b2292fbee4a8d99515ba5e31143d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/775b2292fbee4a8d99515ba5e31143d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/775b2292fbee4a8d99515ba5e31143d7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:90COlLpQzvx5JrtUYpanVYix4GU=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.830952+00 2025-12-09 10:15:31.830958+00 15752 DL31315#亮黄批布 SPMX-20240815310956 \N \N \N 1 \N [{"file_id": "1d82e9f2-8e8e-4427-880b-df0b339aab63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e188040237d243929385de8a7f08e838.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e188040237d243929385de8a7f08e838.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e188040237d243929385de8a7f08e838.jpg", "file_size": 16820, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#亮黄批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e188040237d243929385de8a7f08e838.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e188040237d243929385de8a7f08e838.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e188040237d243929385de8a7f08e838.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e188040237d243929385de8a7f08e838.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e188040237d243929385de8a7f08e838.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:68BUFZkyYzHuJQa6Am4nDauDyMw=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.833621+00 2025-12-09 10:15:31.833626+00 15753 LZ1347#上身1号色 SPMX-20240815310957 \N \N \N 1 \N [{"file_id": "70fc3b2e-2506-4f70-a517-9ee2da196dd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "532eae3e8aed476aac63addb172e53a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "532eae3e8aed476aac63addb172e53a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "532eae3e8aed476aac63addb172e53a0.jpg", "file_size": 19999, "is_delete": false, "file_type": 1, "original_file_name": "LZ1347#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532eae3e8aed476aac63addb172e53a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532eae3e8aed476aac63addb172e53a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/532eae3e8aed476aac63addb172e53a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/532eae3e8aed476aac63addb172e53a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/532eae3e8aed476aac63addb172e53a0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTS3BOLoVEIh_ztjOV4_FmftXak=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.836462+00 2025-12-09 10:15:31.83647+00 15754 85014#乱花 SPMX-20240815310954 \N \N \N 1 \N [{"file_id": "a8c2f686-54e9-44a9-b42b-4bd1d4772801", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b345796fd7524062aff17dab77e3351c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b345796fd7524062aff17dab77e3351c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b345796fd7524062aff17dab77e3351c.jpg", "file_size": 24218, "is_delete": false, "file_type": 1, "original_file_name": "85014#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b345796fd7524062aff17dab77e3351c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b345796fd7524062aff17dab77e3351c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b345796fd7524062aff17dab77e3351c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b345796fd7524062aff17dab77e3351c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b345796fd7524062aff17dab77e3351c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imfyWfOCD8HoyzGgssI3zrF_zcE=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.839241+00 2025-12-09 10:15:31.839247+00 15755 0006-59FWE#黄色 SPMX-20240815310963 \N \N \N 1 \N [{"file_id": "b7dac03f-6dbf-4e42-816d-74003acc3ef9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adac400bfb0e4d588f638200b41d44a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adac400bfb0e4d588f638200b41d44a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adac400bfb0e4d588f638200b41d44a9.jpg", "file_size": 10529, "is_delete": false, "file_type": 1, "original_file_name": "0006-59FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adac400bfb0e4d588f638200b41d44a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adac400bfb0e4d588f638200b41d44a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adac400bfb0e4d588f638200b41d44a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adac400bfb0e4d588f638200b41d44a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adac400bfb0e4d588f638200b41d44a9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WKvuweW0YtYXUxEdW_BK-z16BOI=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.841974+00 2025-12-09 10:15:31.841983+00 15756 JTSS656FW#VS-D3 SPMX-20240815310961 \N \N \N 1 \N [{"file_id": "82163681-3b5d-4c93-aa4a-d5eeaad48270", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e53b345a33c4ddca841ebbb44f52973.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e53b345a33c4ddca841ebbb44f52973.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e53b345a33c4ddca841ebbb44f52973.jpg", "file_size": 11099, "is_delete": false, "file_type": 1, "original_file_name": "JTSS656FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e53b345a33c4ddca841ebbb44f52973.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e53b345a33c4ddca841ebbb44f52973.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e53b345a33c4ddca841ebbb44f52973.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e53b345a33c4ddca841ebbb44f52973.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e53b345a33c4ddca841ebbb44f52973.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuWa94sxczos-uwu8vQYgqLq9ww=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.844888+00 2025-12-09 10:15:31.844895+00 15757 HW475394FWE#S VS-D3 SPMX-20240815310965 \N \N \N 1 \N [{"file_id": "889d018d-bd03-4352-9eec-304644008f2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8af13d740ab45f5ac91dbf5d8a5688d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8af13d740ab45f5ac91dbf5d8a5688d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8af13d740ab45f5ac91dbf5d8a5688d.jpg", "file_size": 15366, "is_delete": false, "file_type": 1, "original_file_name": "HW475394FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8af13d740ab45f5ac91dbf5d8a5688d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8af13d740ab45f5ac91dbf5d8a5688d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8af13d740ab45f5ac91dbf5d8a5688d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8af13d740ab45f5ac91dbf5d8a5688d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8af13d740ab45f5ac91dbf5d8a5688d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nl9gm2PoENP2pQ8Si8JZpSrzusc=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.847687+00 2025-12-09 10:15:31.847692+00 15758 1221FWE#黄色下摆定位 SPMX-20240815310966 \N \N \N 1 \N [{"file_id": "8cd07272-0734-4d33-a77e-7ba778c2d8be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af7d68e13a2e458baf1a1bf670ffc34a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af7d68e13a2e458baf1a1bf670ffc34a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af7d68e13a2e458baf1a1bf670ffc34a.jpg", "file_size": 17466, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色下摆定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7d68e13a2e458baf1a1bf670ffc34a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7d68e13a2e458baf1a1bf670ffc34a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7d68e13a2e458baf1a1bf670ffc34a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af7d68e13a2e458baf1a1bf670ffc34a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af7d68e13a2e458baf1a1bf670ffc34a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35DAJ6OvKRhcE0LLZoYBWAUeM2Q=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.850264+00 2025-12-09 10:15:31.850269+00 15759 FX-ST23171#黑2XL SPMX-20240815310971 \N \N \N 1 \N [{"file_id": "ef0be4ee-d7b3-4ea2-be36-fb3dbfb11c60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44fecc388f1c4947af071852a6699874.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44fecc388f1c4947af071852a6699874.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44fecc388f1c4947af071852a6699874.jpg", "file_size": 41213, "is_delete": false, "file_type": 1, "original_file_name": "FX-ST23171#黑2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fecc388f1c4947af071852a6699874.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fecc388f1c4947af071852a6699874.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fecc388f1c4947af071852a6699874.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44fecc388f1c4947af071852a6699874.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44fecc388f1c4947af071852a6699874.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t3aHTYB5DpsThuQYwiF46hdgqzE=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.8528+00 2025-12-09 10:15:31.852804+00 15760 LZ1347#上身3号色 SPMX-20240815310978 \N \N \N 1 \N [{"file_id": "b10a196e-1b96-4058-b06e-2ad9336fe770", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa4547ac96824871967a439c36fdf7be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa4547ac96824871967a439c36fdf7be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa4547ac96824871967a439c36fdf7be.jpg", "file_size": 20250, "is_delete": false, "file_type": 1, "original_file_name": "LZ1347#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4547ac96824871967a439c36fdf7be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4547ac96824871967a439c36fdf7be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4547ac96824871967a439c36fdf7be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa4547ac96824871967a439c36fdf7be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa4547ac96824871967a439c36fdf7be.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0pgVgy3xwERHC7gDAG7q2hHoIok=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.855358+00 2025-12-09 10:15:31.855363+00 15761 0006-59FWF#V5曲线 SPMX-20240815310975 \N \N \N 1 \N [{"file_id": "b609db6c-e784-4be4-adf5-3d589d7f1606", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52393ab238fc4305ad225680877f0f39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52393ab238fc4305ad225680877f0f39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52393ab238fc4305ad225680877f0f39.jpg", "file_size": 15425, "is_delete": false, "file_type": 1, "original_file_name": "0006-59FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52393ab238fc4305ad225680877f0f39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52393ab238fc4305ad225680877f0f39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52393ab238fc4305ad225680877f0f39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52393ab238fc4305ad225680877f0f39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52393ab238fc4305ad225680877f0f39.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5BjuQWvPzeYbEsvABl7XeYKyTxw=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.857812+00 2025-12-09 10:15:31.857816+00 15762 DL31315#天蓝批布 SPMX-20240815310976 \N \N \N 1 \N [{"file_id": "f3b04481-de4d-4cfa-9d5a-d3e33c126c2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72ac341de7f443f296fe930f1f3b8b5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72ac341de7f443f296fe930f1f3b8b5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72ac341de7f443f296fe930f1f3b8b5f.jpg", "file_size": 16002, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#天蓝批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ac341de7f443f296fe930f1f3b8b5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ac341de7f443f296fe930f1f3b8b5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ac341de7f443f296fe930f1f3b8b5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72ac341de7f443f296fe930f1f3b8b5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72ac341de7f443f296fe930f1f3b8b5f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWQnvCdpwsKiUbGgSXpn5DEqg1Y=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.860042+00 2025-12-09 10:15:31.860047+00 15763 85015#14码 SPMX-20240815310977 \N \N \N 1 \N [{"file_id": "4f203acd-5d4c-4b72-89c2-77762758fad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91bd1063fb864ab39c47ed5934e1c3b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91bd1063fb864ab39c47ed5934e1c3b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91bd1063fb864ab39c47ed5934e1c3b1.jpg", "file_size": 18246, "is_delete": false, "file_type": 1, "original_file_name": "85015#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91bd1063fb864ab39c47ed5934e1c3b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91bd1063fb864ab39c47ed5934e1c3b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91bd1063fb864ab39c47ed5934e1c3b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91bd1063fb864ab39c47ed5934e1c3b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91bd1063fb864ab39c47ed5934e1c3b1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aph_xK4H2FtF50vsGYR2kfpDs2I=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.862498+00 2025-12-09 10:15:31.862502+00 15764 23-305#A7-4XL SPMX-20240815310979 \N \N \N 1 \N [{"file_id": "0936cacc-eb58-4a44-b70a-547e094bfc8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4f7428e7ef143479cc2f6f8088f0aea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4f7428e7ef143479cc2f6f8088f0aea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4f7428e7ef143479cc2f6f8088f0aea.jpg", "file_size": 21082, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A7-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f7428e7ef143479cc2f6f8088f0aea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f7428e7ef143479cc2f6f8088f0aea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4f7428e7ef143479cc2f6f8088f0aea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4f7428e7ef143479cc2f6f8088f0aea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4f7428e7ef143479cc2f6f8088f0aea.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zLETkA0batr2TSjIrNDX6InsIA=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.864902+00 2025-12-09 10:15:31.864907+00 15765 LJH1845#玫红 SPMX-20240815310980 \N \N \N 1 \N [{"file_id": "120f54cc-f3bf-4158-83ef-e030705d6b18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb7c98f222794a19874508f5d5eb678c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb7c98f222794a19874508f5d5eb678c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb7c98f222794a19874508f5d5eb678c.jpg", "file_size": 53400, "is_delete": false, "file_type": 1, "original_file_name": "LJH1845#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7c98f222794a19874508f5d5eb678c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7c98f222794a19874508f5d5eb678c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb7c98f222794a19874508f5d5eb678c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb7c98f222794a19874508f5d5eb678c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb7c98f222794a19874508f5d5eb678c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDW3B4Wocr21Tr8BLC_eDMOcpAc=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.867343+00 2025-12-09 10:15:31.867347+00 15766 FX-ST23171#黑3XL SPMX-20240815310982 \N \N \N 1 \N [{"file_id": "2c480e66-a0d8-4caa-b693-e40cca651383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c326a42b9d34d8396523e866bfd8f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c326a42b9d34d8396523e866bfd8f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c326a42b9d34d8396523e866bfd8f74.jpg", "file_size": 41870, "is_delete": false, "file_type": 1, "original_file_name": "FX-ST23171#黑3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c326a42b9d34d8396523e866bfd8f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c326a42b9d34d8396523e866bfd8f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c326a42b9d34d8396523e866bfd8f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c326a42b9d34d8396523e866bfd8f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c326a42b9d34d8396523e866bfd8f74.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Gb8qCJephsWdEXqjnWsTfpRKVo=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.869723+00 2025-12-09 10:15:31.869728+00 15767 JTSS657FW#VS-D3 SPMX-20240815310972 \N \N \N 1 \N [{"file_id": "cc9341b6-7b9e-477a-8322-205002848a60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70d7bb38dc654c98987fa3e30d9982ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70d7bb38dc654c98987fa3e30d9982ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70d7bb38dc654c98987fa3e30d9982ec.jpg", "file_size": 6464, "is_delete": false, "file_type": 1, "original_file_name": "JTSS657FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d7bb38dc654c98987fa3e30d9982ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d7bb38dc654c98987fa3e30d9982ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d7bb38dc654c98987fa3e30d9982ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70d7bb38dc654c98987fa3e30d9982ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70d7bb38dc654c98987fa3e30d9982ec.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFdtVIAqOUB2d3RUAkEYUif5Gqw=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.927651+00 2025-12-09 10:15:31.927657+00 15788 FX-ST23171#黑4XL SPMX-20240815310992 \N \N \N 1 \N [{"file_id": "67c94b69-9902-4bf3-bb20-206310210b18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbf988b618e647639974ba04d26aaa5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbf988b618e647639974ba04d26aaa5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbf988b618e647639974ba04d26aaa5a.jpg", "file_size": 43365, "is_delete": false, "file_type": 1, "original_file_name": "FX-ST23171#黑4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf988b618e647639974ba04d26aaa5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf988b618e647639974ba04d26aaa5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbf988b618e647639974ba04d26aaa5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbf988b618e647639974ba04d26aaa5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbf988b618e647639974ba04d26aaa5a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mzoD1XkAG02yZUzHOlkv6797f4E=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.871883+00 2025-12-09 10:15:31.871887+00 15768 1221FWE#黄色批布 SPMX-20240815310974 \N \N \N 1 \N [{"file_id": "49850f7e-71f8-4ede-a4cc-5191e397caf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "003e6c8fc1634965983dc377d6b340dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "003e6c8fc1634965983dc377d6b340dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "003e6c8fc1634965983dc377d6b340dd.jpg", "file_size": 4770, "is_delete": false, "file_type": 1, "original_file_name": "1221FWE#黄色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/003e6c8fc1634965983dc377d6b340dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/003e6c8fc1634965983dc377d6b340dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/003e6c8fc1634965983dc377d6b340dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/003e6c8fc1634965983dc377d6b340dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/003e6c8fc1634965983dc377d6b340dd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K38lQ5gaehzmrPEOsDOIjNnTt8Q=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.874064+00 2025-12-09 10:15:31.874068+00 15769 JTSS658FW#VS-D3 SPMX-20240815310981 \N \N \N 1 \N [{"file_id": "c9c23ed4-aeca-4fd6-b16a-d5890d44958d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f904c9f506d34923a6f578046204a1df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f904c9f506d34923a6f578046204a1df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f904c9f506d34923a6f578046204a1df.jpg", "file_size": 7871, "is_delete": false, "file_type": 1, "original_file_name": "JTSS658FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f904c9f506d34923a6f578046204a1df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f904c9f506d34923a6f578046204a1df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f904c9f506d34923a6f578046204a1df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f904c9f506d34923a6f578046204a1df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f904c9f506d34923a6f578046204a1df.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iidGLhw_CXIRlcueiaguNlv_ie8=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.876529+00 2025-12-09 10:15:31.876534+00 15770 23-305#A7-3XL SPMX-20240815310970 \N \N \N 1 \N [{"file_id": "0d50d329-fb0c-43f7-8fc6-6034d1cdb430", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f56e5b2fa2a541248fa0dc91664fbd74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f56e5b2fa2a541248fa0dc91664fbd74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f56e5b2fa2a541248fa0dc91664fbd74.jpg", "file_size": 22655, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A7-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56e5b2fa2a541248fa0dc91664fbd74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56e5b2fa2a541248fa0dc91664fbd74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56e5b2fa2a541248fa0dc91664fbd74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f56e5b2fa2a541248fa0dc91664fbd74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f56e5b2fa2a541248fa0dc91664fbd74.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9qS_Z1oYgPrm0M5B20KxyBMIOo=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.879262+00 2025-12-09 10:15:31.879267+00 15771 LJH1845#深黄 SPMX-20240815310969 \N \N \N 1 \N [{"file_id": "9d97553a-1b55-46c2-b593-533d63471fb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3673fbecdf894e8b869991deefe6af6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3673fbecdf894e8b869991deefe6af6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3673fbecdf894e8b869991deefe6af6e.jpg", "file_size": 53636, "is_delete": false, "file_type": 1, "original_file_name": "LJH1845#深黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3673fbecdf894e8b869991deefe6af6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3673fbecdf894e8b869991deefe6af6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3673fbecdf894e8b869991deefe6af6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3673fbecdf894e8b869991deefe6af6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3673fbecdf894e8b869991deefe6af6e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uimjNXk_SBv7VpsLyYhte7o8s4I=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.881964+00 2025-12-09 10:15:31.881969+00 15772 LZ1347#上身2号色 SPMX-20240815310968 \N \N \N 1 \N [{"file_id": "14c644aa-e348-4e3e-9b8c-d41de80e617d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg", "file_size": 20358, "is_delete": false, "file_type": 1, "original_file_name": "LZ1347#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f0fbd3aa0d4f97bdc0a3d5e3ba7810.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fOWQgdwk-1DPPRG5AQpRQmxXiIQ=", "createTime": "2024-08-15 14:59:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.884672+00 2025-12-09 10:15:31.884678+00 15773 HW475394FWE#XL VS-D3 SPMX-20240815310973 \N \N \N 1 \N [{"file_id": "5440adbd-0475-4a13-af90-3e8c3e5ecfcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab8e78df36704f5e9b5299d04050a7fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab8e78df36704f5e9b5299d04050a7fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab8e78df36704f5e9b5299d04050a7fc.jpg", "file_size": 16621, "is_delete": false, "file_type": 1, "original_file_name": "HW475394FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab8e78df36704f5e9b5299d04050a7fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab8e78df36704f5e9b5299d04050a7fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab8e78df36704f5e9b5299d04050a7fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab8e78df36704f5e9b5299d04050a7fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab8e78df36704f5e9b5299d04050a7fc.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWcmoNPFn-2-eqzdLYnSHf8m0Ow=", "createTime": "2024-08-15 14:59:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.887395+00 2025-12-09 10:15:31.887401+00 15774 DL31315#彩兰上身定位裁 SPMX-20240815310986 \N \N \N 1 \N [{"file_id": "a6bdf20b-9012-4640-a107-10fa084f9fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5bd09bdc3604723856a6c28583b8908.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5bd09bdc3604723856a6c28583b8908.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5bd09bdc3604723856a6c28583b8908.jpg", "file_size": 16599, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#彩兰上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bd09bdc3604723856a6c28583b8908.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bd09bdc3604723856a6c28583b8908.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bd09bdc3604723856a6c28583b8908.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5bd09bdc3604723856a6c28583b8908.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5bd09bdc3604723856a6c28583b8908.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDgcDLkUKApJ_GsY78XajeIb3CI=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.890101+00 2025-12-09 10:15:31.890107+00 15775 HW475929FWE#L VS-D3 SPMX-20240815310993 \N \N \N 1 \N [{"file_id": "84acd98d-82be-48fe-852e-66cf899626f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f45b225c8f954a6fbe921f316503c6d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f45b225c8f954a6fbe921f316503c6d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f45b225c8f954a6fbe921f316503c6d1.jpg", "file_size": 16439, "is_delete": false, "file_type": 1, "original_file_name": "HW475929FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45b225c8f954a6fbe921f316503c6d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45b225c8f954a6fbe921f316503c6d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45b225c8f954a6fbe921f316503c6d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f45b225c8f954a6fbe921f316503c6d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f45b225c8f954a6fbe921f316503c6d1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3zBqKjDlaf1UCXTgroeOMEJL28=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.892805+00 2025-12-09 10:15:31.89281+00 15776 DL31315#彩兰批布 SPMX-20240815310998 \N \N \N 1 \N [{"file_id": "28b6d9c0-c358-4ed2-a42c-edbc52374c7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccaacfa8b28d4e74ac67632f3ba1cda0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccaacfa8b28d4e74ac67632f3ba1cda0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccaacfa8b28d4e74ac67632f3ba1cda0.jpg", "file_size": 16447, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#彩兰批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccaacfa8b28d4e74ac67632f3ba1cda0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccaacfa8b28d4e74ac67632f3ba1cda0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccaacfa8b28d4e74ac67632f3ba1cda0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccaacfa8b28d4e74ac67632f3ba1cda0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccaacfa8b28d4e74ac67632f3ba1cda0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5XbHd5N7ZgUwyQ5_MADNXS6who=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.895541+00 2025-12-09 10:15:31.895546+00 15777 0006-5FWE#VS-D3 SPMX-20240815310983 \N \N \N 1 \N [{"file_id": "8b13caa2-ec52-4429-8948-a62843a6361a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "433332f2ec05461791ce0966c283d51f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "433332f2ec05461791ce0966c283d51f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "433332f2ec05461791ce0966c283d51f.jpg", "file_size": 10258, "is_delete": false, "file_type": 1, "original_file_name": "0006-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433332f2ec05461791ce0966c283d51f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433332f2ec05461791ce0966c283d51f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/433332f2ec05461791ce0966c283d51f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/433332f2ec05461791ce0966c283d51f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/433332f2ec05461791ce0966c283d51f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NIIjjt5OThqoHQg0jLWkmYgsqfI=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.898234+00 2025-12-09 10:15:31.89824+00 15778 0006-60FWE#墨绿 SPMX-20240815310996 \N \N \N 1 \N [{"file_id": "b773f651-5314-431d-bad8-fd9c56d5c5b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d55ad4b1836040569635473264a7c8d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d55ad4b1836040569635473264a7c8d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d55ad4b1836040569635473264a7c8d7.jpg", "file_size": 10095, "is_delete": false, "file_type": 1, "original_file_name": "0006-60FWE#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55ad4b1836040569635473264a7c8d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55ad4b1836040569635473264a7c8d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55ad4b1836040569635473264a7c8d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d55ad4b1836040569635473264a7c8d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d55ad4b1836040569635473264a7c8d7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MSyUpnK5qK2c2vQkq2SopKdN4gM=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.900974+00 2025-12-09 10:15:31.900979+00 15779 85015#4码+8码 SPMX-20240815310987 \N \N \N 1 \N [{"file_id": "e26b7dfb-d65d-427f-903f-64940293fb77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d964ba934f0748a38974a747106d599b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d964ba934f0748a38974a747106d599b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d964ba934f0748a38974a747106d599b.jpg", "file_size": 20605, "is_delete": false, "file_type": 1, "original_file_name": "85015#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d964ba934f0748a38974a747106d599b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d964ba934f0748a38974a747106d599b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d964ba934f0748a38974a747106d599b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d964ba934f0748a38974a747106d599b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d964ba934f0748a38974a747106d599b.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcRUCIoaaTQwoHB_2G3Qsuc_ro0=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.903702+00 2025-12-09 10:15:31.903711+00 15780 1222-1FWE#卡其4XL SPMX-20240815310995 \N \N \N 1 \N [{"file_id": "5f0836f5-158f-4533-b1a4-6a54fad735ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "424f5823703a4edd88c31b866c222702.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "424f5823703a4edd88c31b866c222702.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "424f5823703a4edd88c31b866c222702.jpg", "file_size": 15271, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#卡其4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424f5823703a4edd88c31b866c222702.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424f5823703a4edd88c31b866c222702.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/424f5823703a4edd88c31b866c222702.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/424f5823703a4edd88c31b866c222702.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/424f5823703a4edd88c31b866c222702.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CMsn4RNtIfAoh1ELKW60HJaDq0k=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.906447+00 2025-12-09 10:15:31.906452+00 15781 1222-1FWE#卡其2XL SPMX-20240815310985 \N \N \N 1 \N [{"file_id": "bcf550ed-68d0-415c-827b-2c0882668db6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d471a9ecc7f4b769cf40012ca8e2faa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d471a9ecc7f4b769cf40012ca8e2faa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d471a9ecc7f4b769cf40012ca8e2faa.jpg", "file_size": 25373, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#卡其2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d471a9ecc7f4b769cf40012ca8e2faa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d471a9ecc7f4b769cf40012ca8e2faa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d471a9ecc7f4b769cf40012ca8e2faa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d471a9ecc7f4b769cf40012ca8e2faa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d471a9ecc7f4b769cf40012ca8e2faa.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quSF7aGm2bRmMoiZLfJesRHwWrA=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.909473+00 2025-12-09 10:15:31.909479+00 15782 LZ1347#上身4号色 SPMX-20240815310988 \N \N \N 1 \N [{"file_id": "d23b6389-b46f-401b-b4c1-52be20523379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6a2a242d35d412bb3a22c5ad30e4dea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6a2a242d35d412bb3a22c5ad30e4dea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6a2a242d35d412bb3a22c5ad30e4dea.jpg", "file_size": 19695, "is_delete": false, "file_type": 1, "original_file_name": "LZ1347#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a2a242d35d412bb3a22c5ad30e4dea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a2a242d35d412bb3a22c5ad30e4dea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a2a242d35d412bb3a22c5ad30e4dea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6a2a242d35d412bb3a22c5ad30e4dea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6a2a242d35d412bb3a22c5ad30e4dea.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5aKINfNgww-YfS36cjIyZeCGeo=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.912547+00 2025-12-09 10:15:31.912552+00 15783 JTSS659FW#VS-D3 SPMX-20240815310991 \N \N \N 1 \N [{"file_id": "7daa5d92-f6a2-4a6c-b931-9b8a6da24060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c418d3014dc44a71ab60f7d9848daad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c418d3014dc44a71ab60f7d9848daad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c418d3014dc44a71ab60f7d9848daad1.jpg", "file_size": 16852, "is_delete": false, "file_type": 1, "original_file_name": "JTSS659FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c418d3014dc44a71ab60f7d9848daad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c418d3014dc44a71ab60f7d9848daad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c418d3014dc44a71ab60f7d9848daad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c418d3014dc44a71ab60f7d9848daad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c418d3014dc44a71ab60f7d9848daad1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQ4zJUnWQp1qccmTweB-fWYFfeo=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.915542+00 2025-12-09 10:15:31.915548+00 15784 23-305#A7-领子3XL SPMX-20240815310989 \N \N \N 1 \N [{"file_id": "e711d1b1-ee35-4228-991f-a9cde3f9944a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d459ae1292164af09c19697171f9d44c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d459ae1292164af09c19697171f9d44c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d459ae1292164af09c19697171f9d44c.jpg", "file_size": 14365, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A7-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d459ae1292164af09c19697171f9d44c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d459ae1292164af09c19697171f9d44c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d459ae1292164af09c19697171f9d44c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d459ae1292164af09c19697171f9d44c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d459ae1292164af09c19697171f9d44c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6zTNDewOjroipGfDQZhr1rPtdyo=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.91859+00 2025-12-09 10:15:31.918595+00 15785 HW475929FWE#2XL VS-D3 SPMX-20240815310984 \N \N \N 1 \N [{"file_id": "352abd08-3f87-40bd-b44a-fdcf25241f21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6fcf854c6164c6e96488f9f8ccf4be7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6fcf854c6164c6e96488f9f8ccf4be7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6fcf854c6164c6e96488f9f8ccf4be7.jpg", "file_size": 16746, "is_delete": false, "file_type": 1, "original_file_name": "HW475929FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fcf854c6164c6e96488f9f8ccf4be7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fcf854c6164c6e96488f9f8ccf4be7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fcf854c6164c6e96488f9f8ccf4be7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6fcf854c6164c6e96488f9f8ccf4be7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6fcf854c6164c6e96488f9f8ccf4be7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47gKqGJl0aUH6c_hoq1I97BsPZ4=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.921563+00 2025-12-09 10:15:31.921568+00 15786 cb8b108b06e6ef4fbcdecb58ba6bb0c SPMX-20240815310994 \N \N \N 1 \N [{"file_id": "f690e7fb-a44f-4d46-9947-a5cc8d0f6956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3fec14db35454f8110f25759c6d0aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3fec14db35454f8110f25759c6d0aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3fec14db35454f8110f25759c6d0aa.jpg", "file_size": 6510476, "is_delete": false, "file_type": 1, "original_file_name": "cb8b108b06e6ef4fbcdecb58ba6bb0c.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3fec14db35454f8110f25759c6d0aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3fec14db35454f8110f25759c6d0aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3fec14db35454f8110f25759c6d0aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3fec14db35454f8110f25759c6d0aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3fec14db35454f8110f25759c6d0aa.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0oNqBI9cFUGGbylMUjyXBiT-5gA=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.924619+00 2025-12-09 10:15:31.924624+00 15787 LJH1845#红色 SPMX-20240815310990 \N \N \N 1 \N [{"file_id": "01b557d4-dd2b-4fde-8483-5e4b7e9cc0d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36cfc656fa7d4892b3a97570d0dc79c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36cfc656fa7d4892b3a97570d0dc79c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36cfc656fa7d4892b3a97570d0dc79c1.jpg", "file_size": 53543, "is_delete": false, "file_type": 1, "original_file_name": "LJH1845#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cfc656fa7d4892b3a97570d0dc79c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cfc656fa7d4892b3a97570d0dc79c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36cfc656fa7d4892b3a97570d0dc79c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36cfc656fa7d4892b3a97570d0dc79c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36cfc656fa7d4892b3a97570d0dc79c1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWLHf_aeG7Gr_3CwIzk_I9jCkuw=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.930697+00 2025-12-09 10:15:31.930706+00 15789 85015#6码 SPMX-20240815310997 \N \N \N 1 \N [{"file_id": "4cc5c4d6-be8a-4ade-8c78-0de055c8de14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240bbc8353644b4897f891e1bce24eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240bbc8353644b4897f891e1bce24eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240bbc8353644b4897f891e1bce24eca.jpg", "file_size": 19688, "is_delete": false, "file_type": 1, "original_file_name": "85015#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240bbc8353644b4897f891e1bce24eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240bbc8353644b4897f891e1bce24eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240bbc8353644b4897f891e1bce24eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240bbc8353644b4897f891e1bce24eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240bbc8353644b4897f891e1bce24eca.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZ7ilJi5oHm-Y_q8TVaiLO96w3g=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.933603+00 2025-12-09 10:15:31.933609+00 15790 LJH1849#原版色 SPMX-20240815311002 \N \N \N 1 \N [{"file_id": "500d5c4c-7b73-4be0-affb-476699340740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f45f3a5532784bb89b6ecee2aa858cc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f45f3a5532784bb89b6ecee2aa858cc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f45f3a5532784bb89b6ecee2aa858cc8.jpg", "file_size": 47159, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45f3a5532784bb89b6ecee2aa858cc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45f3a5532784bb89b6ecee2aa858cc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f45f3a5532784bb89b6ecee2aa858cc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f45f3a5532784bb89b6ecee2aa858cc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f45f3a5532784bb89b6ecee2aa858cc8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMJGYhLQBW0bEZHRH4Vdrl-2jGM=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.93638+00 2025-12-09 10:15:31.936385+00 15791 23-305#A7-领子4XL SPMX-20240815310999 \N \N \N 1 \N [{"file_id": "203ff859-86ba-406a-80f7-6835d0e9a37d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a823adc1ea014601a6aa8c6ee7e5eda3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a823adc1ea014601a6aa8c6ee7e5eda3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a823adc1ea014601a6aa8c6ee7e5eda3.jpg", "file_size": 14923, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A7-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a823adc1ea014601a6aa8c6ee7e5eda3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a823adc1ea014601a6aa8c6ee7e5eda3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a823adc1ea014601a6aa8c6ee7e5eda3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a823adc1ea014601a6aa8c6ee7e5eda3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a823adc1ea014601a6aa8c6ee7e5eda3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5P07QBOTO24TruDjmWfRNoHWJo0=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.939119+00 2025-12-09 10:15:31.939125+00 15792 FX-ST23171#黑5XL SPMX-20240815311003 \N \N \N 1 \N [{"file_id": "abe98145-6e94-447e-9933-2f3ac82328be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3e6c3c256e045b4ab60db48063ac997.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3e6c3c256e045b4ab60db48063ac997.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3e6c3c256e045b4ab60db48063ac997.jpg", "file_size": 42128, "is_delete": false, "file_type": 1, "original_file_name": "FX-ST23171#黑5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6c3c256e045b4ab60db48063ac997.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6c3c256e045b4ab60db48063ac997.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3e6c3c256e045b4ab60db48063ac997.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3e6c3c256e045b4ab60db48063ac997.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3e6c3c256e045b4ab60db48063ac997.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qa88y-bIHOO0CCZjg2CqihBvwpI=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.941831+00 2025-12-09 10:15:31.941836+00 15793 LZ1347#上身5号色 SPMX-20240815311000 \N \N \N 1 \N [{"file_id": "8f6e7ad2-bc52-44c5-a5ef-d22e742f4ba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b036be575764443783ccde4fc3b108a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b036be575764443783ccde4fc3b108a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b036be575764443783ccde4fc3b108a1.jpg", "file_size": 19522, "is_delete": false, "file_type": 1, "original_file_name": "LZ1347#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b036be575764443783ccde4fc3b108a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b036be575764443783ccde4fc3b108a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b036be575764443783ccde4fc3b108a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b036be575764443783ccde4fc3b108a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b036be575764443783ccde4fc3b108a1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpmFdSLZ-ML9MDNufbGzaOCaHog=", "createTime": "2024-08-15 14:59:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.944902+00 2025-12-09 10:15:31.944908+00 15794 JTSS660FW#VS-D3 SPMX-20240815311001 \N \N \N 1 \N [{"file_id": "4cdf222f-43fc-4b0f-b321-437bfa731b68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18aa503d31784bc3b6b17272b085ce5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18aa503d31784bc3b6b17272b085ce5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18aa503d31784bc3b6b17272b085ce5d.jpg", "file_size": 11177, "is_delete": false, "file_type": 1, "original_file_name": "JTSS660FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa503d31784bc3b6b17272b085ce5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa503d31784bc3b6b17272b085ce5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18aa503d31784bc3b6b17272b085ce5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18aa503d31784bc3b6b17272b085ce5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18aa503d31784bc3b6b17272b085ce5d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-6MALgwwuBMfuFEQ5lR51hNi9Q=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.947881+00 2025-12-09 10:15:31.947887+00 15795 0006-60FWE#红色 SPMX-20240815311006 \N \N \N 1 \N [{"file_id": "f8959678-baed-48d5-ae72-96c00bba517c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1447e66acb0246eeade09b16280087b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1447e66acb0246eeade09b16280087b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1447e66acb0246eeade09b16280087b7.jpg", "file_size": 10121, "is_delete": false, "file_type": 1, "original_file_name": "0006-60FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1447e66acb0246eeade09b16280087b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1447e66acb0246eeade09b16280087b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1447e66acb0246eeade09b16280087b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1447e66acb0246eeade09b16280087b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1447e66acb0246eeade09b16280087b7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6S83uK96l0N7HGA9X61lDBvW9_s=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.950623+00 2025-12-09 10:15:31.950628+00 15796 LZ1348#上身1号色 SPMX-20240815311011 \N \N \N 1 \N [{"file_id": "35b900de-1171-4cbb-af28-2910c42b3b88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d23e6feba354ea4aff769ee191cbc0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d23e6feba354ea4aff769ee191cbc0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d23e6feba354ea4aff769ee191cbc0c.jpg", "file_size": 20550, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d23e6feba354ea4aff769ee191cbc0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d23e6feba354ea4aff769ee191cbc0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d23e6feba354ea4aff769ee191cbc0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d23e6feba354ea4aff769ee191cbc0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d23e6feba354ea4aff769ee191cbc0c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6MBhlTe2C7AtuWCapoDIUVWeVM8=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.953346+00 2025-12-09 10:15:31.953352+00 15797 23-305#A8-3XL SPMX-20240815311012 \N \N \N 1 \N [{"file_id": "6b9d1e4e-dd23-4da6-b594-035408fbe6d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef04587d4d214a6780a7a8115623a462.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef04587d4d214a6780a7a8115623a462.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef04587d4d214a6780a7a8115623a462.jpg", "file_size": 22660, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A8-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef04587d4d214a6780a7a8115623a462.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef04587d4d214a6780a7a8115623a462.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef04587d4d214a6780a7a8115623a462.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef04587d4d214a6780a7a8115623a462.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef04587d4d214a6780a7a8115623a462.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSAvoKBLeVFTZW9RhB-VGPcd9sM=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.956124+00 2025-12-09 10:15:31.95613+00 15798 HW475929FWE#M VS-D3 SPMX-20240815311004 \N \N \N 1 \N [{"file_id": "0b051836-5249-4402-8b71-1eaa5222d606", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13d0c636cabb4298a64e1a543eab5a92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13d0c636cabb4298a64e1a543eab5a92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13d0c636cabb4298a64e1a543eab5a92.jpg", "file_size": 16990, "is_delete": false, "file_type": 1, "original_file_name": "HW475929FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d0c636cabb4298a64e1a543eab5a92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d0c636cabb4298a64e1a543eab5a92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d0c636cabb4298a64e1a543eab5a92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13d0c636cabb4298a64e1a543eab5a92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13d0c636cabb4298a64e1a543eab5a92.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aBv8R0Or-_viY3HlyU0SaXnSpok=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.958918+00 2025-12-09 10:15:31.958924+00 15799 fx SPMX-20240815311013 \N \N \N 1 \N [{"file_id": "e373a17f-a710-4120-9522-aa5633ba0374", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ffafa9068164f1da1fb6522ef7558d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ffafa9068164f1da1fb6522ef7558d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ffafa9068164f1da1fb6522ef7558d8.jpg", "file_size": 42623, "is_delete": false, "file_type": 1, "original_file_name": "fx.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffafa9068164f1da1fb6522ef7558d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffafa9068164f1da1fb6522ef7558d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ffafa9068164f1da1fb6522ef7558d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ffafa9068164f1da1fb6522ef7558d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ffafa9068164f1da1fb6522ef7558d8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUINa3TvwXhMQn-AABapUI6oiKM=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.961619+00 2025-12-09 10:15:31.961625+00 15800 JTSS661FW#VS-D3 SPMX-20240815311009 \N \N \N 1 \N [{"file_id": "f0380024-5b31-41d4-9ec1-d14202efb4f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60006f82363142ed85c8c0dadec6db73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60006f82363142ed85c8c0dadec6db73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60006f82363142ed85c8c0dadec6db73.jpg", "file_size": 8771, "is_delete": false, "file_type": 1, "original_file_name": "JTSS661FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60006f82363142ed85c8c0dadec6db73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60006f82363142ed85c8c0dadec6db73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60006f82363142ed85c8c0dadec6db73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60006f82363142ed85c8c0dadec6db73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60006f82363142ed85c8c0dadec6db73.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_zT0Irogpb9hUclsBbQdTgF2Ks=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.975266+00 2025-12-09 10:15:31.975272+00 15805 23-305#A8-4XL SPMX-20240815311022 \N \N \N 1 \N [{"file_id": "9949e85e-f477-416c-85b3-f3825bd595d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ea99d6fc5824f29bda2f6beb291602f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ea99d6fc5824f29bda2f6beb291602f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ea99d6fc5824f29bda2f6beb291602f.jpg", "file_size": 20943, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A8-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea99d6fc5824f29bda2f6beb291602f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea99d6fc5824f29bda2f6beb291602f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ea99d6fc5824f29bda2f6beb291602f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ea99d6fc5824f29bda2f6beb291602f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ea99d6fc5824f29bda2f6beb291602f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nfEj-ZYrT0BHQuEtlRWpZCAgsV4=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.964348+00 2025-12-09 10:15:31.964354+00 15801 DL31315#枣红上身定位裁 SPMX-20240815311008 \N \N \N 1 \N [{"file_id": "005e6b74-0efd-4598-95cb-30c662982c83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13479029c96248259aa7596599d9a648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13479029c96248259aa7596599d9a648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13479029c96248259aa7596599d9a648.jpg", "file_size": 15979, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#枣红上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13479029c96248259aa7596599d9a648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13479029c96248259aa7596599d9a648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13479029c96248259aa7596599d9a648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13479029c96248259aa7596599d9a648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13479029c96248259aa7596599d9a648.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cye8RRZd-82qUWpv3lKBX7lCJy8=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.96711+00 2025-12-09 10:15:31.967116+00 15802 1222-1FWE#卡其L SPMX-20240815311005 \N \N \N 1 \N [{"file_id": "13f26ce7-c2e9-4888-9df0-e502da4c21a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "474529f10ea744459130974c94216ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "474529f10ea744459130974c94216ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "474529f10ea744459130974c94216ae0.jpg", "file_size": 17050, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#卡其L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474529f10ea744459130974c94216ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474529f10ea744459130974c94216ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/474529f10ea744459130974c94216ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/474529f10ea744459130974c94216ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/474529f10ea744459130974c94216ae0.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JRJWdyejcHhfCtZUXZ716rN0Wk=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.969815+00 2025-12-09 10:15:31.969821+00 15803 CBY001FWE#VS-D3 SPMX-20240815311007 \N \N \N 1 \N [{"file_id": "654b22fd-144d-4663-aa8e-9c3dde94eb72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de355b7e1aed4674aedbfcf95d21f49f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de355b7e1aed4674aedbfcf95d21f49f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de355b7e1aed4674aedbfcf95d21f49f.jpg", "file_size": 17073, "is_delete": false, "file_type": 1, "original_file_name": "CBY001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de355b7e1aed4674aedbfcf95d21f49f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de355b7e1aed4674aedbfcf95d21f49f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de355b7e1aed4674aedbfcf95d21f49f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de355b7e1aed4674aedbfcf95d21f49f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de355b7e1aed4674aedbfcf95d21f49f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3AR1uK7NDlpZX54ir1YJSEGDP0=", "createTime": "2024-08-15 14:59:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.972542+00 2025-12-09 10:15:31.972547+00 15804 85015#乱花 SPMX-20240815311010 \N \N \N 1 \N [{"file_id": "8251827c-e9f7-463b-a820-4041d9a056ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4ffc450d42b40329ad4968a3fc2c36f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4ffc450d42b40329ad4968a3fc2c36f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4ffc450d42b40329ad4968a3fc2c36f.jpg", "file_size": 10529, "is_delete": false, "file_type": 1, "original_file_name": "85015#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ffc450d42b40329ad4968a3fc2c36f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ffc450d42b40329ad4968a3fc2c36f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ffc450d42b40329ad4968a3fc2c36f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4ffc450d42b40329ad4968a3fc2c36f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4ffc450d42b40329ad4968a3fc2c36f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vsmVnPopzU7tt8bkhTRqOf-wOuY=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.978001+00 2025-12-09 10:15:31.978007+00 15806 HW475929FWE#XL VS-D3 SPMX-20240815311026 \N \N \N 1 \N [{"file_id": "086b5500-2877-4067-b9ad-5e2f9387a24a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8755e7fdda54421eb768ee6d109bdd31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8755e7fdda54421eb768ee6d109bdd31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8755e7fdda54421eb768ee6d109bdd31.jpg", "file_size": 17403, "is_delete": false, "file_type": 1, "original_file_name": "HW475929FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8755e7fdda54421eb768ee6d109bdd31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8755e7fdda54421eb768ee6d109bdd31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8755e7fdda54421eb768ee6d109bdd31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8755e7fdda54421eb768ee6d109bdd31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8755e7fdda54421eb768ee6d109bdd31.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aJDICxZn6VxwwvnXEn075uQ2J9g=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.980735+00 2025-12-09 10:15:31.980741+00 15807 FX0003-1#RC23 SPMX-20240815311024 \N \N \N 1 \N [{"file_id": "b977737b-3520-447d-8fa2-16379e26c7c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6212c82cb0d43ceb91a80f2de2fefcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6212c82cb0d43ceb91a80f2de2fefcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6212c82cb0d43ceb91a80f2de2fefcd.jpg", "file_size": 21019, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6212c82cb0d43ceb91a80f2de2fefcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6212c82cb0d43ceb91a80f2de2fefcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6212c82cb0d43ceb91a80f2de2fefcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6212c82cb0d43ceb91a80f2de2fefcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6212c82cb0d43ceb91a80f2de2fefcd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egEakY-qbASoqqrxATDgL3RxlG8=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.983472+00 2025-12-09 10:15:31.983478+00 15808 0006-60FWF#橙色 SPMX-20240815311016 \N \N \N 1 \N [{"file_id": "55165007-731c-4f48-a5ea-d4a978bc3fa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2962fb58c4f4ff1ac0042e77f605265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2962fb58c4f4ff1ac0042e77f605265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2962fb58c4f4ff1ac0042e77f605265.jpg", "file_size": 12657, "is_delete": false, "file_type": 1, "original_file_name": "0006-60FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2962fb58c4f4ff1ac0042e77f605265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2962fb58c4f4ff1ac0042e77f605265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2962fb58c4f4ff1ac0042e77f605265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2962fb58c4f4ff1ac0042e77f605265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2962fb58c4f4ff1ac0042e77f605265.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRegRuI57WomR_Vz06EyFa175Oo=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.986229+00 2025-12-09 10:15:31.986235+00 15809 DL31315#枣红批布 SPMX-20240815311020 \N \N \N 1 \N [{"file_id": "e71eec53-1d0c-4575-ae81-12ad538aa336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "685a0df1d17241898aa8db8555d3aed4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "685a0df1d17241898aa8db8555d3aed4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "685a0df1d17241898aa8db8555d3aed4.jpg", "file_size": 15536, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#枣红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685a0df1d17241898aa8db8555d3aed4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685a0df1d17241898aa8db8555d3aed4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685a0df1d17241898aa8db8555d3aed4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/685a0df1d17241898aa8db8555d3aed4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/685a0df1d17241898aa8db8555d3aed4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:othnVq43biv6f4ozQBZUBitbZUw=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.988961+00 2025-12-09 10:15:31.988967+00 15810 LJH1849#粉色 SPMX-20240815311014 \N \N \N 1 \N [{"file_id": "9a164df5-ec99-42e3-b926-14962f196617", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee8e9542ebea4a2badea85ee0bca22e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee8e9542ebea4a2badea85ee0bca22e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee8e9542ebea4a2badea85ee0bca22e4.jpg", "file_size": 46935, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8e9542ebea4a2badea85ee0bca22e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8e9542ebea4a2badea85ee0bca22e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee8e9542ebea4a2badea85ee0bca22e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee8e9542ebea4a2badea85ee0bca22e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee8e9542ebea4a2badea85ee0bca22e4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKmATciGvIdXwcvuhf1CHYQe2HQ=", "createTime": "2024-08-15 14:59:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.991713+00 2025-12-09 10:15:31.991719+00 15811 1222-1FWE#卡其XL SPMX-20240815311018 \N \N \N 1 \N [{"file_id": "26be169f-9676-4a11-9f3c-7d84a809cd44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c6a2713207e40b480d75977896943f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c6a2713207e40b480d75977896943f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c6a2713207e40b480d75977896943f5.jpg", "file_size": 17219, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#卡其XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6a2713207e40b480d75977896943f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6a2713207e40b480d75977896943f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c6a2713207e40b480d75977896943f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c6a2713207e40b480d75977896943f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c6a2713207e40b480d75977896943f5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQVPJ-cOK2HELiDmkpsFDDDoupQ=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.994507+00 2025-12-09 10:15:31.994514+00 15812 LZ1348#上身2号色 SPMX-20240815311019 \N \N \N 1 \N [{"file_id": "f577d971-f96c-4b58-9365-0d8cdbcdb3c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4712a25a3af44e30a750cad4a24ec4f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4712a25a3af44e30a750cad4a24ec4f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4712a25a3af44e30a750cad4a24ec4f4.jpg", "file_size": 20298, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4712a25a3af44e30a750cad4a24ec4f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4712a25a3af44e30a750cad4a24ec4f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4712a25a3af44e30a750cad4a24ec4f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4712a25a3af44e30a750cad4a24ec4f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4712a25a3af44e30a750cad4a24ec4f4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qf5W_hzZ_pl_CGo2kXkFcm0RnSY=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:31.997291+00 2025-12-09 10:15:31.997297+00 15813 85016#10码+12码 SPMX-20240815311023 \N \N \N 1 \N [{"file_id": "43eefce1-3394-45d1-9a70-183b71da99f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3cc6fc5b5c5420d8075a945da2bfbc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3cc6fc5b5c5420d8075a945da2bfbc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3cc6fc5b5c5420d8075a945da2bfbc2.jpg", "file_size": 21830, "is_delete": false, "file_type": 1, "original_file_name": "85016#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cc6fc5b5c5420d8075a945da2bfbc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cc6fc5b5c5420d8075a945da2bfbc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3cc6fc5b5c5420d8075a945da2bfbc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3cc6fc5b5c5420d8075a945da2bfbc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3cc6fc5b5c5420d8075a945da2bfbc2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWd1iUu8RYRVJQhmjeeruX189Y0=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.000035+00 2025-12-09 10:15:32.000041+00 15814 HW475929FWE#S VS-D3 SPMX-20240815311015 \N \N \N 1 \N [{"file_id": "f6b88056-ae99-4603-9a5f-140b5460659e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce680e9f176a4010a8ecbc4a840774ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce680e9f176a4010a8ecbc4a840774ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce680e9f176a4010a8ecbc4a840774ec.jpg", "file_size": 17758, "is_delete": false, "file_type": 1, "original_file_name": "HW475929FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce680e9f176a4010a8ecbc4a840774ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce680e9f176a4010a8ecbc4a840774ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce680e9f176a4010a8ecbc4a840774ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce680e9f176a4010a8ecbc4a840774ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce680e9f176a4010a8ecbc4a840774ec.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5Bjv5ZCSwzAnDkf2jRh0CulXKw=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.002795+00 2025-12-09 10:15:32.002801+00 15815 CBY002FWE#净色VS-D3 SPMX-20240815311017 \N \N \N 1 \N [{"file_id": "41a11fec-0620-46e5-b3ec-e503251e2e60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f4c66d3458845fca6df62ab286c5207.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f4c66d3458845fca6df62ab286c5207.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f4c66d3458845fca6df62ab286c5207.jpg", "file_size": 5283, "is_delete": false, "file_type": 1, "original_file_name": "CBY002FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c66d3458845fca6df62ab286c5207.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c66d3458845fca6df62ab286c5207.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c66d3458845fca6df62ab286c5207.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f4c66d3458845fca6df62ab286c5207.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f4c66d3458845fca6df62ab286c5207.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Okde2c-ViIRM_uFIDS3ok4Em1So=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.005553+00 2025-12-09 10:15:32.005563+00 15816 JTSS662FW#粉VS-D3 SPMX-20240815311021 \N \N \N 1 \N [{"file_id": "16e8ff8c-2d5c-48eb-aa88-119506473236", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6bcf078eda84268a0e5f891b94c9ee8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6bcf078eda84268a0e5f891b94c9ee8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6bcf078eda84268a0e5f891b94c9ee8.jpg", "file_size": 9995, "is_delete": false, "file_type": 1, "original_file_name": "JTSS662FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6bcf078eda84268a0e5f891b94c9ee8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6bcf078eda84268a0e5f891b94c9ee8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6bcf078eda84268a0e5f891b94c9ee8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6bcf078eda84268a0e5f891b94c9ee8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6bcf078eda84268a0e5f891b94c9ee8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lXvcX6y9arXlY4fRcaR2J5yRw7c=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.008301+00 2025-12-09 10:15:32.008307+00 15817 LJH1849#紫色 SPMX-20240815311025 \N \N \N 1 \N [{"file_id": "9c7f01f9-c8d5-4663-aa46-f5cf781f30b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8500e0c4f0a49159189de50e595f566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8500e0c4f0a49159189de50e595f566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8500e0c4f0a49159189de50e595f566.jpg", "file_size": 48343, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8500e0c4f0a49159189de50e595f566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8500e0c4f0a49159189de50e595f566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8500e0c4f0a49159189de50e595f566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8500e0c4f0a49159189de50e595f566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8500e0c4f0a49159189de50e595f566.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SjiM8wt5LMVEfuV2ePo6C7U9kMs=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.011079+00 2025-12-09 10:15:32.011085+00 15818 0006-60FWF#黄色 SPMX-20240815311027 \N \N \N 1 \N [{"file_id": "ecf221ae-a735-400c-9e9b-36fd072b0eb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "362f2b1722d54982a27108af4f0e23c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "362f2b1722d54982a27108af4f0e23c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "362f2b1722d54982a27108af4f0e23c2.jpg", "file_size": 14487, "is_delete": false, "file_type": 1, "original_file_name": "0006-60FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362f2b1722d54982a27108af4f0e23c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362f2b1722d54982a27108af4f0e23c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362f2b1722d54982a27108af4f0e23c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/362f2b1722d54982a27108af4f0e23c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/362f2b1722d54982a27108af4f0e23c2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSzH52KrqoUkK24lIvMY81XqVOA=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.013864+00 2025-12-09 10:15:32.01387+00 15819 1222-1FWE#卡其匹布 SPMX-20240815311028 \N \N \N 1 \N [{"file_id": "28d56ad1-c484-4208-a7d7-022da092e8e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d8ecf49ab574f6d94c0c5cc62f738ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d8ecf49ab574f6d94c0c5cc62f738ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d8ecf49ab574f6d94c0c5cc62f738ad.jpg", "file_size": 14033, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#卡其匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d8ecf49ab574f6d94c0c5cc62f738ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d8ecf49ab574f6d94c0c5cc62f738ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d8ecf49ab574f6d94c0c5cc62f738ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d8ecf49ab574f6d94c0c5cc62f738ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d8ecf49ab574f6d94c0c5cc62f738ad.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9DqpFLujCg7CPz1WGwPwSwKV8ZI=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.016982+00 2025-12-09 10:15:32.016988+00 15820 85016#4码+8码 SPMX-20240815311044 \N \N \N 1 \N [{"file_id": "45930403-efb8-4dd8-abed-d6d65d77cdcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b9f0b45efeb47c5bf001091a2f6bd64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b9f0b45efeb47c5bf001091a2f6bd64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b9f0b45efeb47c5bf001091a2f6bd64.jpg", "file_size": 21463, "is_delete": false, "file_type": 1, "original_file_name": "85016#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9f0b45efeb47c5bf001091a2f6bd64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9f0b45efeb47c5bf001091a2f6bd64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9f0b45efeb47c5bf001091a2f6bd64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b9f0b45efeb47c5bf001091a2f6bd64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b9f0b45efeb47c5bf001091a2f6bd64.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLMG4KrM-50Rkkhj4gR8-VRa1n8=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.020053+00 2025-12-09 10:15:32.02006+00 15821 0006-61FWE#VS-D3 SPMX-20240815311038 \N \N \N 1 \N [{"file_id": "6bbba83a-056c-4b12-9617-04a4cf4b949f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2015acf7c35f41698671cc8c14aebbdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2015acf7c35f41698671cc8c14aebbdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2015acf7c35f41698671cc8c14aebbdf.jpg", "file_size": 9820, "is_delete": false, "file_type": 1, "original_file_name": "0006-61FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2015acf7c35f41698671cc8c14aebbdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2015acf7c35f41698671cc8c14aebbdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2015acf7c35f41698671cc8c14aebbdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2015acf7c35f41698671cc8c14aebbdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2015acf7c35f41698671cc8c14aebbdf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mHN8nKMms00GnJJRuGz69oR6xU=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.022892+00 2025-12-09 10:15:32.022899+00 15822 FX0003-10#RC23 SPMX-20240815311035 \N \N \N 1 \N [{"file_id": "8c2b8582-16cf-465f-9e0a-22b190f65be9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e21dd47122472287aaeb92e6abb313.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e21dd47122472287aaeb92e6abb313.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e21dd47122472287aaeb92e6abb313.jpg", "file_size": 18925, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-10#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e21dd47122472287aaeb92e6abb313.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e21dd47122472287aaeb92e6abb313.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e21dd47122472287aaeb92e6abb313.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e21dd47122472287aaeb92e6abb313.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e21dd47122472287aaeb92e6abb313.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1qxpcfjjM_cj_kXe8lBZYu96ROo=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.025615+00 2025-12-09 10:15:32.025621+00 15823 23-305#A8-领子4XL SPMX-20240815311043 \N \N \N 1 \N [{"file_id": "c119c1f6-c085-4b32-accf-e1f4f5a7488a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e20b9d4677f4224902824599d2e6c2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e20b9d4677f4224902824599d2e6c2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e20b9d4677f4224902824599d2e6c2d.jpg", "file_size": 14968, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A8-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e20b9d4677f4224902824599d2e6c2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e20b9d4677f4224902824599d2e6c2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e20b9d4677f4224902824599d2e6c2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e20b9d4677f4224902824599d2e6c2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e20b9d4677f4224902824599d2e6c2d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8A_nlzTevvoigTe3wv6A40SqVk=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.028197+00 2025-12-09 10:15:32.028201+00 15824 23-305#A8-领子3XL SPMX-20240815311032 \N \N \N 1 \N [{"file_id": "f87e9fcd-c2ce-470a-80cd-75bf886ca233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86c6509f0459422d8ce3b2baba3d9dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86c6509f0459422d8ce3b2baba3d9dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86c6509f0459422d8ce3b2baba3d9dfb.jpg", "file_size": 14580, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A8-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6509f0459422d8ce3b2baba3d9dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6509f0459422d8ce3b2baba3d9dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6509f0459422d8ce3b2baba3d9dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86c6509f0459422d8ce3b2baba3d9dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86c6509f0459422d8ce3b2baba3d9dfb.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dB5GUuTs9qCoMh7MXFgXxkCbl84=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.030998+00 2025-12-09 10:15:32.031006+00 15825 1222-1FWE#咖啡2XL SPMX-20240815311039 \N \N \N 1 \N [{"file_id": "30cd4c1a-199d-4cf6-a0cb-39d1e9e8368f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "672c17e11e5c4a10bf909473025afcb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "672c17e11e5c4a10bf909473025afcb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "672c17e11e5c4a10bf909473025afcb9.jpg", "file_size": 25672, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#咖啡2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c17e11e5c4a10bf909473025afcb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c17e11e5c4a10bf909473025afcb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672c17e11e5c4a10bf909473025afcb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/672c17e11e5c4a10bf909473025afcb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/672c17e11e5c4a10bf909473025afcb9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4SFl0DMQ1NyzA7yKi4t_M7an0E=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.033773+00 2025-12-09 10:15:32.033779+00 15826 CBY004FWE#VS-D3 SPMX-20240815311040 \N \N \N 1 \N [{"file_id": "78599bda-e55f-468d-ac43-a8b46d50609c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82df7ef4a40a45c3ac4e995739d5c188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82df7ef4a40a45c3ac4e995739d5c188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82df7ef4a40a45c3ac4e995739d5c188.jpg", "file_size": 15628, "is_delete": false, "file_type": 1, "original_file_name": "CBY004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82df7ef4a40a45c3ac4e995739d5c188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82df7ef4a40a45c3ac4e995739d5c188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82df7ef4a40a45c3ac4e995739d5c188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82df7ef4a40a45c3ac4e995739d5c188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82df7ef4a40a45c3ac4e995739d5c188.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGfsQFJLTD7SPTU3fbAzQDKDOqs=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.036488+00 2025-12-09 10:15:32.036493+00 15827 85016#14码 SPMX-20240815311034 \N \N \N 1 \N [{"file_id": "7c5cd3f7-5039-40cb-9c93-c843835be3ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12b3643a3f34516bfaf852eba9a3f5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12b3643a3f34516bfaf852eba9a3f5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12b3643a3f34516bfaf852eba9a3f5f.jpg", "file_size": 19968, "is_delete": false, "file_type": 1, "original_file_name": "85016#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12b3643a3f34516bfaf852eba9a3f5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12b3643a3f34516bfaf852eba9a3f5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12b3643a3f34516bfaf852eba9a3f5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12b3643a3f34516bfaf852eba9a3f5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12b3643a3f34516bfaf852eba9a3f5f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rn7bHealhzAjGB2Su_2zFXluITs=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.039185+00 2025-12-09 10:15:32.03919+00 15828 HW475999FWE#VS-D3 SPMX-20240815311037 \N \N \N 1 \N [{"file_id": "7580132b-1156-4cda-a8c0-f1d6fbe399a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caf25028a7d2440ea371659cf13a39a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caf25028a7d2440ea371659cf13a39a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caf25028a7d2440ea371659cf13a39a5.jpg", "file_size": 24068, "is_delete": false, "file_type": 1, "original_file_name": "HW475999FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf25028a7d2440ea371659cf13a39a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf25028a7d2440ea371659cf13a39a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf25028a7d2440ea371659cf13a39a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caf25028a7d2440ea371659cf13a39a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caf25028a7d2440ea371659cf13a39a5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iq5lC0_YIanptNbvqGnoX5BbxUs=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.04186+00 2025-12-09 10:15:32.041866+00 15829 LJH1849#绿色 SPMX-20240815311036 \N \N \N 1 \N [{"file_id": "f2caeb78-5eec-4a0e-83b8-593b170dca73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg", "file_size": 45343, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab84f6c5d22d40b0b4dd7e10792ca6b4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HuUkYJbaEQZbGFhGlIaZW4r5Z34=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.056368+00 2025-12-09 10:15:32.056374+00 15834 CBY003FWE#VS-D3 SPMX-20240815311029 \N \N \N 1 \N [{"file_id": "3d9ef38f-9353-4242-a256-78604a3caf97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e58aa363532d460096fea3b5b9456f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e58aa363532d460096fea3b5b9456f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e58aa363532d460096fea3b5b9456f8e.jpg", "file_size": 12951, "is_delete": false, "file_type": 1, "original_file_name": "CBY003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58aa363532d460096fea3b5b9456f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58aa363532d460096fea3b5b9456f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e58aa363532d460096fea3b5b9456f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e58aa363532d460096fea3b5b9456f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e58aa363532d460096fea3b5b9456f8e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:07_jtTl0wBGVg1EEBbNUqRl934s=", "createTime": "2024-08-15 14:59:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.044572+00 2025-12-09 10:15:32.044578+00 15830 DL31315#水红上身定位裁 SPMX-20240815311030 \N \N \N 1 \N [{"file_id": "b717e891-f4ab-49f2-9c9c-4b650608a2af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "230da48c38594b32804b492030314700.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "230da48c38594b32804b492030314700.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "230da48c38594b32804b492030314700.jpg", "file_size": 15806, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#水红上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230da48c38594b32804b492030314700.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230da48c38594b32804b492030314700.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/230da48c38594b32804b492030314700.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/230da48c38594b32804b492030314700.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/230da48c38594b32804b492030314700.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LzSrwHD826TlZoikYxG9J5xbG1w=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.047582+00 2025-12-09 10:15:32.047589+00 15831 DL31315#水红批布 SPMX-20240815311041 \N \N \N 1 \N [{"file_id": "a7abfd6c-73a0-4dc6-8ec7-7753c3fe9e04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "579ac76b87494194bfbc4f54bc305426.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "579ac76b87494194bfbc4f54bc305426.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "579ac76b87494194bfbc4f54bc305426.jpg", "file_size": 14545, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#水红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579ac76b87494194bfbc4f54bc305426.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579ac76b87494194bfbc4f54bc305426.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/579ac76b87494194bfbc4f54bc305426.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/579ac76b87494194bfbc4f54bc305426.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/579ac76b87494194bfbc4f54bc305426.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PB5rxFq9Q1MHDYQIZeo2iFI0OjE=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.05055+00 2025-12-09 10:15:32.050556+00 15832 JTSS662FW#绿VS-D3 SPMX-20240815311033 \N \N \N 1 \N [{"file_id": "a73a7871-3e01-4865-96c5-74f1918d8b5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70d9be8a4c024eb7b43f04f3ad048923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70d9be8a4c024eb7b43f04f3ad048923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70d9be8a4c024eb7b43f04f3ad048923.jpg", "file_size": 9659, "is_delete": false, "file_type": 1, "original_file_name": "JTSS662FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d9be8a4c024eb7b43f04f3ad048923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d9be8a4c024eb7b43f04f3ad048923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d9be8a4c024eb7b43f04f3ad048923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70d9be8a4c024eb7b43f04f3ad048923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70d9be8a4c024eb7b43f04f3ad048923.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EwKBhumUUtrfzysYvJnwMcSrSg8=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.053563+00 2025-12-09 10:15:32.05357+00 15833 LZ1348#上身4号色 SPMX-20240815311042 \N \N \N 1 \N [{"file_id": "b01bd703-e6f9-4288-836c-50b36f2b0ce3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29cf0eed17304485aaca359de51227e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29cf0eed17304485aaca359de51227e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29cf0eed17304485aaca359de51227e7.jpg", "file_size": 20721, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29cf0eed17304485aaca359de51227e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29cf0eed17304485aaca359de51227e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29cf0eed17304485aaca359de51227e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29cf0eed17304485aaca359de51227e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29cf0eed17304485aaca359de51227e7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05iAC0eBrFmh5eYF4KE8xEAsi_k=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.059236+00 2025-12-09 10:15:32.059241+00 15835 LZ1348#上身3号色 SPMX-20240815311031 \N \N \N 1 \N [{"file_id": "334a89b7-1193-4011-9e00-b49be6cdc65b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4e75fb076fb4ada9ad14746a2bb5ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4e75fb076fb4ada9ad14746a2bb5ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4e75fb076fb4ada9ad14746a2bb5ffb.jpg", "file_size": 20247, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e75fb076fb4ada9ad14746a2bb5ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e75fb076fb4ada9ad14746a2bb5ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e75fb076fb4ada9ad14746a2bb5ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4e75fb076fb4ada9ad14746a2bb5ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4e75fb076fb4ada9ad14746a2bb5ffb.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tX2VEG4Nu2izroyty3wWoH9qg28=", "createTime": "2024-08-15 14:59:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.062085+00 2025-12-09 10:15:32.062094+00 15836 JTSS663FW#VS-D3 SPMX-20240815311045 \N \N \N 1 \N [{"file_id": "19d8283f-35c6-404e-8a93-64ce8494e3a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d326b412e7a42dfb1adeae3905a475f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d326b412e7a42dfb1adeae3905a475f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d326b412e7a42dfb1adeae3905a475f.jpg", "file_size": 9515, "is_delete": false, "file_type": 1, "original_file_name": "JTSS663FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d326b412e7a42dfb1adeae3905a475f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d326b412e7a42dfb1adeae3905a475f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d326b412e7a42dfb1adeae3905a475f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d326b412e7a42dfb1adeae3905a475f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d326b412e7a42dfb1adeae3905a475f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hv6wijRpH4LqoOu5O9xTf2Zcouo=", "createTime": "2024-08-15 14:59:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.064739+00 2025-12-09 10:15:32.064746+00 15837 HW476719FWE#VS-D3 SPMX-20240815311046 \N \N \N 1 \N [{"file_id": "e53ccdef-bca1-432f-b131-3d2517820cad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d38d0de52d144388318c1520f584c7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d38d0de52d144388318c1520f584c7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d38d0de52d144388318c1520f584c7e.jpg", "file_size": 21597, "is_delete": false, "file_type": 1, "original_file_name": "HW476719FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d38d0de52d144388318c1520f584c7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d38d0de52d144388318c1520f584c7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d38d0de52d144388318c1520f584c7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d38d0de52d144388318c1520f584c7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d38d0de52d144388318c1520f584c7e.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zECFEQJ5mU4Zs2r0yAToKdPfNIo=", "createTime": "2024-08-15 14:59:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.067496+00 2025-12-09 10:15:32.067502+00 15838 LJH1849#青色 SPMX-20240815311050 \N \N \N 1 \N [{"file_id": "6e6c2eb7-2e82-4ef2-abde-038b545f415c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acbcfec158564f19b286868b8b4973a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acbcfec158564f19b286868b8b4973a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acbcfec158564f19b286868b8b4973a3.jpg", "file_size": 47544, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbcfec158564f19b286868b8b4973a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbcfec158564f19b286868b8b4973a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbcfec158564f19b286868b8b4973a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acbcfec158564f19b286868b8b4973a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acbcfec158564f19b286868b8b4973a3.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sPJeV_lbPWEe-gIfTM90V9O0L7M=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.070089+00 2025-12-09 10:15:32.070096+00 15839 FX0003-100#咖啡色 SPMX-20240815311051 \N \N \N 1 \N [{"file_id": "f63acbb5-1d88-4415-85a7-52338d29cc52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "007e00ccbbcc401a88e335bacf6d0e82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "007e00ccbbcc401a88e335bacf6d0e82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "007e00ccbbcc401a88e335bacf6d0e82.jpg", "file_size": 49604, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-100#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/007e00ccbbcc401a88e335bacf6d0e82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/007e00ccbbcc401a88e335bacf6d0e82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/007e00ccbbcc401a88e335bacf6d0e82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/007e00ccbbcc401a88e335bacf6d0e82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/007e00ccbbcc401a88e335bacf6d0e82.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HMXoWpXn62lrv19NnMeYBnumvs=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.072716+00 2025-12-09 10:15:32.072721+00 15840 1222-1FWE#咖啡4XL SPMX-20240815311055 \N \N \N 1 \N [{"file_id": "60c38002-3992-4fe7-b156-fedb7d16ca62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e81ba3a1c8cf4e08acc88a432fddb60f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e81ba3a1c8cf4e08acc88a432fddb60f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e81ba3a1c8cf4e08acc88a432fddb60f.jpg", "file_size": 15139, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#咖啡4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81ba3a1c8cf4e08acc88a432fddb60f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81ba3a1c8cf4e08acc88a432fddb60f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e81ba3a1c8cf4e08acc88a432fddb60f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e81ba3a1c8cf4e08acc88a432fddb60f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e81ba3a1c8cf4e08acc88a432fddb60f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IsUfpo_71lG-ZpEK2cZRuJWE7gY=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.075302+00 2025-12-09 10:15:32.075308+00 15841 23-305#A9-3XL SPMX-20240815311054 \N \N \N 1 \N [{"file_id": "21459e49-e6c8-4b77-a640-5b9ca00e8a33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed09624a29754abda758df4cc9d1a404.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed09624a29754abda758df4cc9d1a404.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed09624a29754abda758df4cc9d1a404.jpg", "file_size": 24563, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A9-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed09624a29754abda758df4cc9d1a404.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed09624a29754abda758df4cc9d1a404.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed09624a29754abda758df4cc9d1a404.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed09624a29754abda758df4cc9d1a404.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed09624a29754abda758df4cc9d1a404.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDnoo_LTDBr_JzPIZrVV06ARYkQ=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.077906+00 2025-12-09 10:15:32.077911+00 15842 0006-62FWE#墨绿 SPMX-20240815311049 \N \N \N 1 \N [{"file_id": "0de473da-c645-4441-9595-45231b9debd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39867bac6fa4ab49dccf138d085f0da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39867bac6fa4ab49dccf138d085f0da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39867bac6fa4ab49dccf138d085f0da.jpg", "file_size": 12302, "is_delete": false, "file_type": 1, "original_file_name": "0006-62FWE#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39867bac6fa4ab49dccf138d085f0da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39867bac6fa4ab49dccf138d085f0da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39867bac6fa4ab49dccf138d085f0da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39867bac6fa4ab49dccf138d085f0da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39867bac6fa4ab49dccf138d085f0da.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTI-RiiT34wn6FtQjV5sU9lHRVo=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.080475+00 2025-12-09 10:15:32.08048+00 15843 0006-62FWE#黄色 SPMX-20240815311060 \N \N \N 1 \N [{"file_id": "67637255-bda4-445e-9077-624fb926927b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bf89d9332694283bfd3c47c7dedad69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bf89d9332694283bfd3c47c7dedad69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bf89d9332694283bfd3c47c7dedad69.jpg", "file_size": 10998, "is_delete": false, "file_type": 1, "original_file_name": "0006-62FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf89d9332694283bfd3c47c7dedad69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf89d9332694283bfd3c47c7dedad69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf89d9332694283bfd3c47c7dedad69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bf89d9332694283bfd3c47c7dedad69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bf89d9332694283bfd3c47c7dedad69.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzKd5jtRr3ppdPiM9KoU_42vrY4=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.083119+00 2025-12-09 10:15:32.083124+00 15844 CBY004FWE#净色VS-D3 SPMX-20240815311053 \N \N \N 1 \N [{"file_id": "6ed925b8-9ede-4b0a-b5ce-8c8734573e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88fc475570824f04b9b055b7d1676bb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88fc475570824f04b9b055b7d1676bb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88fc475570824f04b9b055b7d1676bb7.jpg", "file_size": 6042, "is_delete": false, "file_type": 1, "original_file_name": "CBY004FWE#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fc475570824f04b9b055b7d1676bb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fc475570824f04b9b055b7d1676bb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fc475570824f04b9b055b7d1676bb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88fc475570824f04b9b055b7d1676bb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88fc475570824f04b9b055b7d1676bb7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gm1mnlaFB4Ehm013glECzm3bKSY=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.085685+00 2025-12-09 10:15:32.08569+00 15845 HW478224FWE#2XL VS-D3 SPMX-20240815311057 \N \N \N 1 \N [{"file_id": "9c3d261a-a5e8-44e2-97ff-61f0d27d8826", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4604e6605017491ead4bc306d9bbd8d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4604e6605017491ead4bc306d9bbd8d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4604e6605017491ead4bc306d9bbd8d1.jpg", "file_size": 19168, "is_delete": false, "file_type": 1, "original_file_name": "HW478224FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4604e6605017491ead4bc306d9bbd8d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4604e6605017491ead4bc306d9bbd8d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4604e6605017491ead4bc306d9bbd8d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4604e6605017491ead4bc306d9bbd8d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4604e6605017491ead4bc306d9bbd8d1.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qfLUrXOv94ffv8pieK9hlZcxZ-k=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.088232+00 2025-12-09 10:15:32.088237+00 15846 JTSS664FW#VS-D3 SPMX-20240815311048 \N \N \N 1 \N [{"file_id": "87f3aeae-7dff-4745-8edb-dadb2a68a791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dacc8989420644de909442855cc5ae9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dacc8989420644de909442855cc5ae9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dacc8989420644de909442855cc5ae9f.jpg", "file_size": 13494, "is_delete": false, "file_type": 1, "original_file_name": "JTSS664FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacc8989420644de909442855cc5ae9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacc8989420644de909442855cc5ae9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dacc8989420644de909442855cc5ae9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dacc8989420644de909442855cc5ae9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dacc8989420644de909442855cc5ae9f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hDSLKxDoK5gl9IhAdUhvn8bYTJk=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.090798+00 2025-12-09 10:15:32.090804+00 15847 CC001FW#宝蓝VS-D3 SPMX-20240815311063 \N \N \N 1 \N [{"file_id": "5646a8c8-78fb-4006-b48e-0def70b099a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a08882bf5bb4418afc2a12b13bc557d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a08882bf5bb4418afc2a12b13bc557d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a08882bf5bb4418afc2a12b13bc557d.jpg", "file_size": 5945, "is_delete": false, "file_type": 1, "original_file_name": "CC001FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a08882bf5bb4418afc2a12b13bc557d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a08882bf5bb4418afc2a12b13bc557d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a08882bf5bb4418afc2a12b13bc557d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a08882bf5bb4418afc2a12b13bc557d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a08882bf5bb4418afc2a12b13bc557d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FNWNMhN9RSlMMHyFXVeWMKUKb0=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.093429+00 2025-12-09 10:15:32.093435+00 15848 85016#6码 SPMX-20240815311047 \N \N \N 1 \N [{"file_id": "ef7ec974-3fe4-48c4-9dce-5772f0b14e12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b743c8e4d5224cf599275c5de810b341.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b743c8e4d5224cf599275c5de810b341.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b743c8e4d5224cf599275c5de810b341.jpg", "file_size": 21250, "is_delete": false, "file_type": 1, "original_file_name": "85016#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b743c8e4d5224cf599275c5de810b341.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b743c8e4d5224cf599275c5de810b341.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b743c8e4d5224cf599275c5de810b341.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b743c8e4d5224cf599275c5de810b341.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b743c8e4d5224cf599275c5de810b341.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sg-DhGKC5Fh-z8G8kgjB9ohjBzk=", "createTime": "2024-08-15 14:59:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.096064+00 2025-12-09 10:15:32.09607+00 15849 DL31315#浅粉批布 SPMX-20240815311061 \N \N \N 1 \N [{"file_id": "961909cf-a84c-4484-8af6-060730cbab49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a606cc05ecb74b2db84af85f7abe45c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a606cc05ecb74b2db84af85f7abe45c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a606cc05ecb74b2db84af85f7abe45c8.jpg", "file_size": 14685, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#浅粉批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a606cc05ecb74b2db84af85f7abe45c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a606cc05ecb74b2db84af85f7abe45c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a606cc05ecb74b2db84af85f7abe45c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a606cc05ecb74b2db84af85f7abe45c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a606cc05ecb74b2db84af85f7abe45c8.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x8ySyXlAeT4Sl7BY89GGg80Kujw=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.098891+00 2025-12-09 10:15:32.098897+00 15850 LZ1348#上身5号色 SPMX-20240815311056 \N \N \N 1 \N [{"file_id": "486869ae-a2df-45fa-a8db-ff4d5edc65b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b80f268fee5d428faf7c15fd4fb01d1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b80f268fee5d428faf7c15fd4fb01d1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b80f268fee5d428faf7c15fd4fb01d1c.jpg", "file_size": 20190, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80f268fee5d428faf7c15fd4fb01d1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80f268fee5d428faf7c15fd4fb01d1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b80f268fee5d428faf7c15fd4fb01d1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b80f268fee5d428faf7c15fd4fb01d1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b80f268fee5d428faf7c15fd4fb01d1c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vdo974E06aaQS6ilFh7OWoRQz0M=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.10182+00 2025-12-09 10:15:32.101826+00 15851 JTSS665FW#VS-D3 SPMX-20240815311059 \N \N \N 1 \N [{"file_id": "32f1cca9-2ba3-4635-b13c-ec1cc5d603cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7873109a27934ff9a6ec05a2c936a3c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7873109a27934ff9a6ec05a2c936a3c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7873109a27934ff9a6ec05a2c936a3c9.jpg", "file_size": 8935, "is_delete": false, "file_type": 1, "original_file_name": "JTSS665FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7873109a27934ff9a6ec05a2c936a3c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7873109a27934ff9a6ec05a2c936a3c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7873109a27934ff9a6ec05a2c936a3c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7873109a27934ff9a6ec05a2c936a3c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7873109a27934ff9a6ec05a2c936a3c9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxaPbYXE_qpRyztNrhSezAni-KI=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.104505+00 2025-12-09 10:15:32.104511+00 15852 FX0003-100#黑色 SPMX-20240815311062 \N \N \N 1 \N [{"file_id": "c75c8e24-7462-47b0-9500-1e61d651229d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a3757de62ea4453a4d7073398c03782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a3757de62ea4453a4d7073398c03782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a3757de62ea4453a4d7073398c03782.jpg", "file_size": 51447, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-100#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3757de62ea4453a4d7073398c03782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3757de62ea4453a4d7073398c03782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a3757de62ea4453a4d7073398c03782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a3757de62ea4453a4d7073398c03782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a3757de62ea4453a4d7073398c03782.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jy64DDAZ4SriU1o5-Ih3g4zwIxo=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.107101+00 2025-12-09 10:15:32.107107+00 15853 DL31315#浅粉上身定位裁 SPMX-20240815311052 \N \N \N 1 \N [{"file_id": "57212221-d152-4474-9982-087b435e2bfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f70acc1809464fb4991fe3da07bbef08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f70acc1809464fb4991fe3da07bbef08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f70acc1809464fb4991fe3da07bbef08.jpg", "file_size": 16200, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#浅粉上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70acc1809464fb4991fe3da07bbef08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70acc1809464fb4991fe3da07bbef08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f70acc1809464fb4991fe3da07bbef08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f70acc1809464fb4991fe3da07bbef08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f70acc1809464fb4991fe3da07bbef08.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tzaGy5LkVgsLisyNQ1_V4udVpc=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.109683+00 2025-12-09 10:15:32.109689+00 15854 85016#乱花 SPMX-20240815311058 \N \N \N 1 \N [{"file_id": "64ac34ca-ec96-41b3-b253-69ba4d1d0665", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a057c1e922944cb8d0ed90bff2867f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a057c1e922944cb8d0ed90bff2867f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a057c1e922944cb8d0ed90bff2867f2.jpg", "file_size": 10553, "is_delete": false, "file_type": 1, "original_file_name": "85016#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a057c1e922944cb8d0ed90bff2867f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a057c1e922944cb8d0ed90bff2867f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a057c1e922944cb8d0ed90bff2867f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a057c1e922944cb8d0ed90bff2867f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a057c1e922944cb8d0ed90bff2867f2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GbEJfP9_ZCNJfrsWzPmojqA_i-o=", "createTime": "2024-08-15 14:59:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.112211+00 2025-12-09 10:15:32.112217+00 15855 0006-63FWE#红色 SPMX-20240815311071 \N \N \N 1 \N [{"file_id": "36fa4270-ef5f-4c93-9cc8-664e732c2efc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a623a7fd7a74f3f95ff2ba555bebced.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a623a7fd7a74f3f95ff2ba555bebced.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a623a7fd7a74f3f95ff2ba555bebced.jpg", "file_size": 11300, "is_delete": false, "file_type": 1, "original_file_name": "0006-63FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a623a7fd7a74f3f95ff2ba555bebced.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a623a7fd7a74f3f95ff2ba555bebced.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a623a7fd7a74f3f95ff2ba555bebced.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a623a7fd7a74f3f95ff2ba555bebced.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a623a7fd7a74f3f95ff2ba555bebced.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8LekVDRLQ3uG5lEhncZnAnF5iA=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.11485+00 2025-12-09 10:15:32.114855+00 15856 HW478224FWE#L VS-D3 SPMX-20240815311074 \N \N \N 1 \N [{"file_id": "210ea88f-467e-4a28-917a-69e34579688f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b23d3fa1696e410cab3f4eb7390142bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b23d3fa1696e410cab3f4eb7390142bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b23d3fa1696e410cab3f4eb7390142bd.jpg", "file_size": 19627, "is_delete": false, "file_type": 1, "original_file_name": "HW478224FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23d3fa1696e410cab3f4eb7390142bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23d3fa1696e410cab3f4eb7390142bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b23d3fa1696e410cab3f4eb7390142bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b23d3fa1696e410cab3f4eb7390142bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b23d3fa1696e410cab3f4eb7390142bd.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:478Rng2xdzKA-YjHr5Hyh-cdoSM=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.117579+00 2025-12-09 10:15:32.117587+00 15857 LZ1348#童装T1号色 SPMX-20240815311067 \N \N \N 1 \N [{"file_id": "b6382582-39f7-4326-aee3-8d621a1a6374", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15ffa89abed34320b2bac14f751aeb51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15ffa89abed34320b2bac14f751aeb51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15ffa89abed34320b2bac14f751aeb51.jpg", "file_size": 26135, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ffa89abed34320b2bac14f751aeb51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ffa89abed34320b2bac14f751aeb51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ffa89abed34320b2bac14f751aeb51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15ffa89abed34320b2bac14f751aeb51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15ffa89abed34320b2bac14f751aeb51.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fGWZln_kg3mLse_vOK8rIr1gxnE=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.12028+00 2025-12-09 10:15:32.120285+00 15858 1222-1FWE#咖啡L SPMX-20240815311065 \N \N \N 1 \N [{"file_id": "893ea3d7-50ef-415d-b7a2-5c7aa8b848a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0956692dd48147778ca5e1a0459182f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0956692dd48147778ca5e1a0459182f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0956692dd48147778ca5e1a0459182f7.jpg", "file_size": 17115, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#咖啡L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0956692dd48147778ca5e1a0459182f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0956692dd48147778ca5e1a0459182f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0956692dd48147778ca5e1a0459182f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0956692dd48147778ca5e1a0459182f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0956692dd48147778ca5e1a0459182f7.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sDVZZJwRwegGM6j4TU09LZpk57U=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.122932+00 2025-12-09 10:15:32.12294+00 15859 LJH1849#黄色 SPMX-20240815311064 \N \N \N 1 \N [{"file_id": "03a48ef1-2ec1-4109-9812-a84289970a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31d43f04fbf14576874d4be5120387d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31d43f04fbf14576874d4be5120387d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31d43f04fbf14576874d4be5120387d6.jpg", "file_size": 47727, "is_delete": false, "file_type": 1, "original_file_name": "LJH1849#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d43f04fbf14576874d4be5120387d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d43f04fbf14576874d4be5120387d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31d43f04fbf14576874d4be5120387d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31d43f04fbf14576874d4be5120387d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31d43f04fbf14576874d4be5120387d6.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4g0fArcyAAEAy8yBmMxb-UEs0M=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.125726+00 2025-12-09 10:15:32.125732+00 15860 FX0003-101#RC23 SPMX-20240815311073 \N \N \N 1 \N [{"file_id": "6e341e2b-f100-40e0-a997-a0462fa59c6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "048d66ea2f0343cfb262be3efc8dc7d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "048d66ea2f0343cfb262be3efc8dc7d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "048d66ea2f0343cfb262be3efc8dc7d9.jpg", "file_size": 64035, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-101#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048d66ea2f0343cfb262be3efc8dc7d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048d66ea2f0343cfb262be3efc8dc7d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/048d66ea2f0343cfb262be3efc8dc7d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/048d66ea2f0343cfb262be3efc8dc7d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/048d66ea2f0343cfb262be3efc8dc7d9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5eFVq1VXGeGvDFMYMR9FbjA3wQ=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.128588+00 2025-12-09 10:15:32.128594+00 15861 23-305#A9-4XL SPMX-20240815311066 \N \N \N 1 \N [{"file_id": "2dc70ad4-c280-4125-a8a8-a7a0c453d028", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab1487868854737ae11a30c32b5a70d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab1487868854737ae11a30c32b5a70d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab1487868854737ae11a30c32b5a70d.jpg", "file_size": 23008, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A9-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1487868854737ae11a30c32b5a70d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1487868854737ae11a30c32b5a70d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab1487868854737ae11a30c32b5a70d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab1487868854737ae11a30c32b5a70d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab1487868854737ae11a30c32b5a70d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Be4qd_HG0zbpIDjZnDMoXKnBwRI=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.131379+00 2025-12-09 10:15:32.131385+00 15862 CC001FW#灰VS-D3 SPMX-20240815311069 \N \N \N 1 \N [{"file_id": "0ba5d2ae-a6d2-4f57-8160-46a6b92f41a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98d7075d9683484694e87d22ef38bc91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98d7075d9683484694e87d22ef38bc91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98d7075d9683484694e87d22ef38bc91.jpg", "file_size": 5154, "is_delete": false, "file_type": 1, "original_file_name": "CC001FW#灰VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d7075d9683484694e87d22ef38bc91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d7075d9683484694e87d22ef38bc91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98d7075d9683484694e87d22ef38bc91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98d7075d9683484694e87d22ef38bc91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98d7075d9683484694e87d22ef38bc91.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0-fsxbh-OLSbhOKKv4xgm_YZdg=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.133978+00 2025-12-09 10:15:32.133982+00 15863 JTSS666FW#VS-D3 SPMX-20240815311068 \N \N \N 1 \N [{"file_id": "5e937cf4-013d-4f52-96b1-87a5482fa28b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89da1b3fb0b745a5aef9abd6cf29b53c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89da1b3fb0b745a5aef9abd6cf29b53c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89da1b3fb0b745a5aef9abd6cf29b53c.jpg", "file_size": 7320, "is_delete": false, "file_type": 1, "original_file_name": "JTSS666FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89da1b3fb0b745a5aef9abd6cf29b53c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89da1b3fb0b745a5aef9abd6cf29b53c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89da1b3fb0b745a5aef9abd6cf29b53c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89da1b3fb0b745a5aef9abd6cf29b53c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89da1b3fb0b745a5aef9abd6cf29b53c.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4OVf94THTdUtfInlcapzUE6ncDM=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.136596+00 2025-12-09 10:15:32.136604+00 15864 DL31315#深水红上身定位裁 SPMX-20240815311072 \N \N \N 1 \N [{"file_id": "4b2993ad-33d3-4fc3-8abb-da9282d2ebdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b395538d10144695836aefef39b149dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b395538d10144695836aefef39b149dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b395538d10144695836aefef39b149dc.jpg", "file_size": 16341, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#深水红上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b395538d10144695836aefef39b149dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b395538d10144695836aefef39b149dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b395538d10144695836aefef39b149dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b395538d10144695836aefef39b149dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b395538d10144695836aefef39b149dc.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3L_OD4k5szTtf0BPe6PJf42WnmU=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.139211+00 2025-12-09 10:15:32.139216+00 15865 85017#10码+12码 SPMX-20240815311070 \N \N \N 1 \N [{"file_id": "220f2189-1f69-4113-ae0a-a84ea6f906f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6832a7c5e4cd423fa04cf02642b49ec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6832a7c5e4cd423fa04cf02642b49ec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6832a7c5e4cd423fa04cf02642b49ec5.jpg", "file_size": 21792, "is_delete": false, "file_type": 1, "original_file_name": "85017#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6832a7c5e4cd423fa04cf02642b49ec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6832a7c5e4cd423fa04cf02642b49ec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6832a7c5e4cd423fa04cf02642b49ec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6832a7c5e4cd423fa04cf02642b49ec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6832a7c5e4cd423fa04cf02642b49ec5.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u4j6_I03lUXcgMkxdjqk4mQh2X8=", "createTime": "2024-08-15 14:59:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.14175+00 2025-12-09 10:15:32.141755+00 15866 23-305#A9-领子3XL SPMX-20240815311075 \N \N \N 1 \N [{"file_id": "8ad89e46-b58d-4b23-a615-15bff1290bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77ed3725e4e54a8aaacc7dcf79ee39a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77ed3725e4e54a8aaacc7dcf79ee39a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77ed3725e4e54a8aaacc7dcf79ee39a2.jpg", "file_size": 14521, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A9-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77ed3725e4e54a8aaacc7dcf79ee39a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77ed3725e4e54a8aaacc7dcf79ee39a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77ed3725e4e54a8aaacc7dcf79ee39a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77ed3725e4e54a8aaacc7dcf79ee39a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77ed3725e4e54a8aaacc7dcf79ee39a2.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Prj5PR2aDThQEh8ySeooVHSQEo=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.144287+00 2025-12-09 10:15:32.144292+00 15867 HW478224FWE#M VS-D3 SPMX-20240815311084 \N \N \N 1 \N [{"file_id": "79b5f252-91bf-40ee-a002-2d0d97b90a1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e9b2238d5aa4a1a9484fc79fb07d846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e9b2238d5aa4a1a9484fc79fb07d846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e9b2238d5aa4a1a9484fc79fb07d846.jpg", "file_size": 21655, "is_delete": false, "file_type": 1, "original_file_name": "HW478224FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9b2238d5aa4a1a9484fc79fb07d846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9b2238d5aa4a1a9484fc79fb07d846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9b2238d5aa4a1a9484fc79fb07d846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e9b2238d5aa4a1a9484fc79fb07d846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e9b2238d5aa4a1a9484fc79fb07d846.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWwfjAZndV_Df_zIna7hr11oRy8=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.146962+00 2025-12-09 10:15:32.146968+00 15868 FX0003-102#RC23 SPMX-20240815311083 \N \N \N 1 \N [{"file_id": "be29e795-1c66-464d-a327-d8c9c5680ee6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ef4f86505f64b6fa0a0b2c35939c784.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ef4f86505f64b6fa0a0b2c35939c784.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ef4f86505f64b6fa0a0b2c35939c784.jpg", "file_size": 61371, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-102#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4f86505f64b6fa0a0b2c35939c784.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4f86505f64b6fa0a0b2c35939c784.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ef4f86505f64b6fa0a0b2c35939c784.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ef4f86505f64b6fa0a0b2c35939c784.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ef4f86505f64b6fa0a0b2c35939c784.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vq3r3FT4qsoohaBzdnO5GAFNsKw=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.149596+00 2025-12-09 10:15:32.1496+00 15869 CC001FW#红VS-D3 SPMX-20240815311076 \N \N \N 1 \N [{"file_id": "a688e844-745e-44e4-bbfd-e07be89a8f02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58886ba75620457080636231d79aa4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58886ba75620457080636231d79aa4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58886ba75620457080636231d79aa4e6.jpg", "file_size": 5664, "is_delete": false, "file_type": 1, "original_file_name": "CC001FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58886ba75620457080636231d79aa4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58886ba75620457080636231d79aa4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58886ba75620457080636231d79aa4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58886ba75620457080636231d79aa4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58886ba75620457080636231d79aa4e6.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY69Bw5o0WrAO8IwuPQJEDGnRAo=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.152063+00 2025-12-09 10:15:32.152068+00 15870 1222-1FWE#咖啡XL SPMX-20240815311077 \N \N \N 1 \N [{"file_id": "5f167349-b0a2-4d49-8265-2b35df57d997", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e343ffecbd24911ab8634bc3487553f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e343ffecbd24911ab8634bc3487553f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e343ffecbd24911ab8634bc3487553f.jpg", "file_size": 17407, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#咖啡XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e343ffecbd24911ab8634bc3487553f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e343ffecbd24911ab8634bc3487553f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e343ffecbd24911ab8634bc3487553f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e343ffecbd24911ab8634bc3487553f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e343ffecbd24911ab8634bc3487553f.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ak1gnq1TeIuQK9qRTxIsUDCwRTc=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.154524+00 2025-12-09 10:15:32.154528+00 15871 DL31315#深水红批布 SPMX-20240815311082 \N \N \N 1 \N [{"file_id": "5594c4b6-f1da-438a-baf7-4fac421f28fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "814679cf61f844afb700fb398440b0d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "814679cf61f844afb700fb398440b0d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "814679cf61f844afb700fb398440b0d9.jpg", "file_size": 15449, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#深水红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814679cf61f844afb700fb398440b0d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814679cf61f844afb700fb398440b0d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/814679cf61f844afb700fb398440b0d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/814679cf61f844afb700fb398440b0d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/814679cf61f844afb700fb398440b0d9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbpUrFRqR2SWMnWr5_aieNz2UVs=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.157248+00 2025-12-09 10:15:32.157252+00 15872 23-305#A9-领子4XL SPMX-20240815311088 \N \N \N 1 \N [{"file_id": "38a249c3-0296-477d-ae5f-14047a073ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09dd9108f1274b1e815ce99f7c78ff46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09dd9108f1274b1e815ce99f7c78ff46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09dd9108f1274b1e815ce99f7c78ff46.jpg", "file_size": 15205, "is_delete": false, "file_type": 1, "original_file_name": "23-305#A9-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dd9108f1274b1e815ce99f7c78ff46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dd9108f1274b1e815ce99f7c78ff46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09dd9108f1274b1e815ce99f7c78ff46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09dd9108f1274b1e815ce99f7c78ff46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09dd9108f1274b1e815ce99f7c78ff46.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3iC03Gfleb4KtB2yiggLwxhUIAQ=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.160064+00 2025-12-09 10:15:32.160069+00 15873 JTSS667FW#VS-D3 SPMX-20240815311080 \N \N \N 1 \N [{"file_id": "09e560f4-1803-47ca-8d00-7078e94b2909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09cf14935d24f60b53df5234f443bbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09cf14935d24f60b53df5234f443bbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09cf14935d24f60b53df5234f443bbf.jpg", "file_size": 10818, "is_delete": false, "file_type": 1, "original_file_name": "JTSS667FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cf14935d24f60b53df5234f443bbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cf14935d24f60b53df5234f443bbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09cf14935d24f60b53df5234f443bbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09cf14935d24f60b53df5234f443bbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09cf14935d24f60b53df5234f443bbf.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XO1xSfJquapGpZxNNfq-HD16_rQ=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.16273+00 2025-12-09 10:15:32.162735+00 15874 LJH1851#兰色 SPMX-20240815311085 \N \N \N 1 \N [{"file_id": "b34df67a-2ba9-492a-ada7-ea869c9c6358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fad9903c7d3747dc8004172e33cf07b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fad9903c7d3747dc8004172e33cf07b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fad9903c7d3747dc8004172e33cf07b4.jpg", "file_size": 78125, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad9903c7d3747dc8004172e33cf07b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad9903c7d3747dc8004172e33cf07b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad9903c7d3747dc8004172e33cf07b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fad9903c7d3747dc8004172e33cf07b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fad9903c7d3747dc8004172e33cf07b4.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lo9eligOTx3QT8bTQ71C9u3puGU=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.165345+00 2025-12-09 10:15:32.165351+00 15875 CC001FW#绿VS-D3 SPMX-20240815311086 \N \N \N 1 \N [{"file_id": "49b15649-bc2c-4a9c-af43-6a07c84195bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66cf6a87fa16478fb434f44424c4d085.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66cf6a87fa16478fb434f44424c4d085.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66cf6a87fa16478fb434f44424c4d085.jpg", "file_size": 5672, "is_delete": false, "file_type": 1, "original_file_name": "CC001FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66cf6a87fa16478fb434f44424c4d085.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66cf6a87fa16478fb434f44424c4d085.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66cf6a87fa16478fb434f44424c4d085.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66cf6a87fa16478fb434f44424c4d085.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66cf6a87fa16478fb434f44424c4d085.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEHfCBCbbXpbHRRNXeDR-MTwqSA=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.167821+00 2025-12-09 10:15:32.167825+00 15876 0006-63FWE#黄色 SPMX-20240815311081 \N \N \N 1 \N [{"file_id": "c86ef102-bb91-4e43-acd8-91958e80c62a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20763f637f174d86a34365f04b56d235.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20763f637f174d86a34365f04b56d235.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20763f637f174d86a34365f04b56d235.jpg", "file_size": 9874, "is_delete": false, "file_type": 1, "original_file_name": "0006-63FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20763f637f174d86a34365f04b56d235.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20763f637f174d86a34365f04b56d235.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20763f637f174d86a34365f04b56d235.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20763f637f174d86a34365f04b56d235.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20763f637f174d86a34365f04b56d235.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9ZfJOSuFxA1XIx1rmvRh5OwIAo=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.170988+00 2025-12-09 10:15:32.170994+00 15877 1222-1FWE#咖啡匹布 SPMX-20240815311087 \N \N \N 1 \N [{"file_id": "bae5df4f-c18f-4023-82bc-dbf695bd8d04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f66596e74654606808e73b9607b3aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f66596e74654606808e73b9607b3aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f66596e74654606808e73b9607b3aa9.jpg", "file_size": 13850, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#咖啡匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f66596e74654606808e73b9607b3aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f66596e74654606808e73b9607b3aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f66596e74654606808e73b9607b3aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f66596e74654606808e73b9607b3aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f66596e74654606808e73b9607b3aa9.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0zZqzpoWa46mTC-E_Ldvg3v9QI=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.174455+00 2025-12-09 10:15:32.17446+00 15878 85017#14码 SPMX-20240815311079 \N \N \N 1 \N [{"file_id": "67410d3f-94ac-4957-b124-62603cb0d281", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dd1a2f31407427fa1ad70be53a72b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dd1a2f31407427fa1ad70be53a72b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dd1a2f31407427fa1ad70be53a72b19.jpg", "file_size": 19335, "is_delete": false, "file_type": 1, "original_file_name": "85017#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dd1a2f31407427fa1ad70be53a72b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dd1a2f31407427fa1ad70be53a72b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dd1a2f31407427fa1ad70be53a72b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dd1a2f31407427fa1ad70be53a72b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dd1a2f31407427fa1ad70be53a72b19.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cUfXdzDo3VdXOz4YaSPjJ_Hycsg=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.177733+00 2025-12-09 10:15:32.177738+00 15879 LZ1348#童装T2号色 SPMX-20240815311078 \N \N \N 1 \N [{"file_id": "5dbb518c-53ec-45de-900c-101303ba8f5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b57dec0d87c42db913d59391e6ca20d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b57dec0d87c42db913d59391e6ca20d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b57dec0d87c42db913d59391e6ca20d.jpg", "file_size": 25153, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b57dec0d87c42db913d59391e6ca20d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b57dec0d87c42db913d59391e6ca20d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b57dec0d87c42db913d59391e6ca20d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b57dec0d87c42db913d59391e6ca20d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b57dec0d87c42db913d59391e6ca20d.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0vx02OlAoTYrC8ivBLTawVE9Oc=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.180632+00 2025-12-09 10:15:32.180637+00 15880 85017#4码+8码 SPMX-20240815311089 \N \N \N 1 \N [{"file_id": "3faf12aa-b518-4ec3-8cf6-f6a1e703694f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "554271382a354b068601c3d08425737a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "554271382a354b068601c3d08425737a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "554271382a354b068601c3d08425737a.jpg", "file_size": 21571, "is_delete": false, "file_type": 1, "original_file_name": "85017#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554271382a354b068601c3d08425737a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554271382a354b068601c3d08425737a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554271382a354b068601c3d08425737a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/554271382a354b068601c3d08425737a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/554271382a354b068601c3d08425737a.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_w8vM9OH7Nmtr1aX3W-fdYct25I=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.183301+00 2025-12-09 10:15:32.183307+00 15881 CC001FW#黑VS-D3 SPMX-20240815311096 \N \N \N 1 \N [{"file_id": "c67caa59-a8f4-4a44-821d-6f3d0b09756b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e0f81b89abc463081881bf0790e1e64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e0f81b89abc463081881bf0790e1e64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e0f81b89abc463081881bf0790e1e64.jpg", "file_size": 5248, "is_delete": false, "file_type": 1, "original_file_name": "CC001FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0f81b89abc463081881bf0790e1e64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0f81b89abc463081881bf0790e1e64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e0f81b89abc463081881bf0790e1e64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e0f81b89abc463081881bf0790e1e64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e0f81b89abc463081881bf0790e1e64.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHQqS1vyk1CH1aAcCuIq3_tILac=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.185896+00 2025-12-09 10:15:32.185901+00 15882 HW478224FWE#S VS-D3 SPMX-20240815311095 \N \N \N 1 \N [{"file_id": "f558ef05-1742-4cc0-b926-e423c38012d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3a70baa6fc0411eb5017c46e17781eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3a70baa6fc0411eb5017c46e17781eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3a70baa6fc0411eb5017c46e17781eb.jpg", "file_size": 22007, "is_delete": false, "file_type": 1, "original_file_name": "HW478224FWE#S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a70baa6fc0411eb5017c46e17781eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a70baa6fc0411eb5017c46e17781eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a70baa6fc0411eb5017c46e17781eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3a70baa6fc0411eb5017c46e17781eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3a70baa6fc0411eb5017c46e17781eb.jpg?e=1765361731&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHpQ3ouwPx5YvdgemPdc-F81U7k=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.849882+00 2025-12-09 10:15:32.849895+00 15883 LZ1348#童装T4号色 SPMX-20240815311101 \N \N \N 1 \N [{"file_id": "a11caf3d-957b-400b-984d-2418c6ee3015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6386a85ff9384085a70bb691dc43f778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6386a85ff9384085a70bb691dc43f778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6386a85ff9384085a70bb691dc43f778.jpg", "file_size": 25060, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6386a85ff9384085a70bb691dc43f778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6386a85ff9384085a70bb691dc43f778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6386a85ff9384085a70bb691dc43f778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6386a85ff9384085a70bb691dc43f778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6386a85ff9384085a70bb691dc43f778.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LcbHzQ7nHNpw6x0gSn1lN_17ghw=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.853928+00 2025-12-09 10:15:32.85394+00 15884 0006-65FWE#VS-D3 SPMX-20240815311102 \N \N \N 1 \N [{"file_id": "27993752-347f-45d3-b74f-20fbd7b169e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17191444292441419f81728d53acc72e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17191444292441419f81728d53acc72e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17191444292441419f81728d53acc72e.jpg", "file_size": 17002, "is_delete": false, "file_type": 1, "original_file_name": "0006-65FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17191444292441419f81728d53acc72e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17191444292441419f81728d53acc72e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17191444292441419f81728d53acc72e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17191444292441419f81728d53acc72e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17191444292441419f81728d53acc72e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZN9-Ul6TgIph5ZNj3ttaB-1jA4Y=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.856928+00 2025-12-09 10:15:32.856934+00 15885 LZ1348#童装T3号色 SPMX-20240815311090 \N \N \N 1 \N [{"file_id": "02c4e6bb-cc11-49b8-8d67-6cab72c46ce9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf297b7c73c34065b410bf619573c51f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf297b7c73c34065b410bf619573c51f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf297b7c73c34065b410bf619573c51f.jpg", "file_size": 24667, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf297b7c73c34065b410bf619573c51f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf297b7c73c34065b410bf619573c51f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf297b7c73c34065b410bf619573c51f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf297b7c73c34065b410bf619573c51f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf297b7c73c34065b410bf619573c51f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgAqLWrWnyQF9D-xOdDlvkJDpAQ=", "createTime": "2024-08-15 14:59:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.859703+00 2025-12-09 10:15:32.859712+00 15886 85017#6码 SPMX-20240815311100 \N \N \N 1 \N [{"file_id": "e0534954-7769-4c81-a992-94ebdeddc338", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "035302d86bda4186b48c9b47fd416298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "035302d86bda4186b48c9b47fd416298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "035302d86bda4186b48c9b47fd416298.jpg", "file_size": 21026, "is_delete": false, "file_type": 1, "original_file_name": "85017#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035302d86bda4186b48c9b47fd416298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035302d86bda4186b48c9b47fd416298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035302d86bda4186b48c9b47fd416298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/035302d86bda4186b48c9b47fd416298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/035302d86bda4186b48c9b47fd416298.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UNobuH2JxUb1VOEor5-za_xjkfQ=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.862377+00 2025-12-09 10:15:32.862383+00 15887 JTSS669FW#VS-D3 SPMX-20240815311104 \N \N \N 1 \N [{"file_id": "7c22b7ee-ca4b-4cd3-bcf2-1daaba413a2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca79a85b49ff40ba8963af07481e4709.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca79a85b49ff40ba8963af07481e4709.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca79a85b49ff40ba8963af07481e4709.jpg", "file_size": 6293, "is_delete": false, "file_type": 1, "original_file_name": "JTSS669FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca79a85b49ff40ba8963af07481e4709.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca79a85b49ff40ba8963af07481e4709.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca79a85b49ff40ba8963af07481e4709.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca79a85b49ff40ba8963af07481e4709.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca79a85b49ff40ba8963af07481e4709.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lYMDRucPgDt6y1O3wExjnVy23Vo=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.865022+00 2025-12-09 10:15:32.865028+00 15888 0006-64FWE#VS-D3 SPMX-20240815311091 \N \N \N 1 \N [{"file_id": "d850763c-e5c4-4553-a136-8336ff08f7a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "369cf1b470684b3f9abf58ab9392fdc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "369cf1b470684b3f9abf58ab9392fdc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "369cf1b470684b3f9abf58ab9392fdc2.jpg", "file_size": 10440, "is_delete": false, "file_type": 1, "original_file_name": "0006-64FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369cf1b470684b3f9abf58ab9392fdc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369cf1b470684b3f9abf58ab9392fdc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369cf1b470684b3f9abf58ab9392fdc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/369cf1b470684b3f9abf58ab9392fdc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/369cf1b470684b3f9abf58ab9392fdc2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5E347MS1c_9JBzxhyxD-BeWXvfw=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.867675+00 2025-12-09 10:15:32.86768+00 15889 DL31315#玫红上身定位裁 SPMX-20240815311092 \N \N \N 1 \N [{"file_id": "cfc741a2-35bf-4a3a-b2ca-57f338fc5d79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23d6893ed3f74b37be031c1d4e17a95e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23d6893ed3f74b37be031c1d4e17a95e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23d6893ed3f74b37be031c1d4e17a95e.jpg", "file_size": 15976, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#玫红上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d6893ed3f74b37be031c1d4e17a95e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d6893ed3f74b37be031c1d4e17a95e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23d6893ed3f74b37be031c1d4e17a95e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23d6893ed3f74b37be031c1d4e17a95e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23d6893ed3f74b37be031c1d4e17a95e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m6G_6Qjt2jp0WF_bsW74U1l0RE0=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.870319+00 2025-12-09 10:15:32.870325+00 15890 23-307#A1-3XL SPMX-20240815311098 \N \N \N 1 \N [{"file_id": "ef09d170-54da-44ee-bfeb-11f1a1a76e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg", "file_size": 12755, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A1-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ae6c2b9646d4e2da2d8ddd14eadaba1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V3J9_4TawYqVM4mzeIQzJ5S22A8=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.87294+00 2025-12-09 10:15:32.872946+00 15891 HW478224FWE#XL VS-D3 SPMX-20240815311106 \N \N \N 1 \N [{"file_id": "75df722c-f6e7-4a94-a76b-d0bd6de3cec0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8491d22b9034de8a69f82d023dc8958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8491d22b9034de8a69f82d023dc8958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8491d22b9034de8a69f82d023dc8958.jpg", "file_size": 19604, "is_delete": false, "file_type": 1, "original_file_name": "HW478224FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8491d22b9034de8a69f82d023dc8958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8491d22b9034de8a69f82d023dc8958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8491d22b9034de8a69f82d023dc8958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8491d22b9034de8a69f82d023dc8958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8491d22b9034de8a69f82d023dc8958.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gf-CTV2kt7nv1CsSWd2zmFB8kvk=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.875547+00 2025-12-09 10:15:32.875552+00 15892 JTSS668FW#VS-D3 SPMX-20240815311094 \N \N \N 1 \N [{"file_id": "03cf919a-a614-403d-94a8-2ee5d6ab966a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac5a905dfcfc498083c09830c1f79328.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac5a905dfcfc498083c09830c1f79328.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac5a905dfcfc498083c09830c1f79328.jpg", "file_size": 7940, "is_delete": false, "file_type": 1, "original_file_name": "JTSS668FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5a905dfcfc498083c09830c1f79328.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5a905dfcfc498083c09830c1f79328.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac5a905dfcfc498083c09830c1f79328.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac5a905dfcfc498083c09830c1f79328.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac5a905dfcfc498083c09830c1f79328.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfBdbGygdqbdiCJEBrKU6jgAYdA=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.878206+00 2025-12-09 10:15:32.878211+00 15893 LJH1851#彩兰色 SPMX-20240815311097 \N \N \N 1 \N [{"file_id": "553d9297-4360-43a0-9994-038fba3aee8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5a43b4176c744cf93051522463ddf8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5a43b4176c744cf93051522463ddf8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5a43b4176c744cf93051522463ddf8e.jpg", "file_size": 85840, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a43b4176c744cf93051522463ddf8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a43b4176c744cf93051522463ddf8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5a43b4176c744cf93051522463ddf8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5a43b4176c744cf93051522463ddf8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5a43b4176c744cf93051522463ddf8e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5MqNz7MeTho9ntytB1HziIN4v1Q=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.880844+00 2025-12-09 10:15:32.88085+00 15894 FX0003-104#RC23 SPMX-20240815311105 \N \N \N 1 \N [{"file_id": "783a16f2-60b4-48a9-aaca-d46c57dab16c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc165eccb3d44e679e79217c8e92f0c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc165eccb3d44e679e79217c8e92f0c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc165eccb3d44e679e79217c8e92f0c1.jpg", "file_size": 53463, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-104#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc165eccb3d44e679e79217c8e92f0c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc165eccb3d44e679e79217c8e92f0c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc165eccb3d44e679e79217c8e92f0c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc165eccb3d44e679e79217c8e92f0c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc165eccb3d44e679e79217c8e92f0c1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYWHcOfSA1fF9mB2IntGwdL3MU8=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.883604+00 2025-12-09 10:15:32.883609+00 15895 1222-1FWE#蓝色2XL SPMX-20240815311099 \N \N \N 1 \N [{"file_id": "749c3a3d-2469-4058-85d6-2d60d243360f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff8036352933462db3962d098b0e57b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff8036352933462db3962d098b0e57b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff8036352933462db3962d098b0e57b3.jpg", "file_size": 25803, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8036352933462db3962d098b0e57b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8036352933462db3962d098b0e57b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff8036352933462db3962d098b0e57b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff8036352933462db3962d098b0e57b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff8036352933462db3962d098b0e57b3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dskTfRmS5VJQYd39ylTD3Mg8nq4=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.8863+00 2025-12-09 10:15:32.886305+00 15896 DL31315#玫红批布 SPMX-20240815311103 \N \N \N 1 \N [{"file_id": "fb791d38-4f07-478c-8e30-d1b0fa97936c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68f20aaecd15462fa07575d3a133c6ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68f20aaecd15462fa07575d3a133c6ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68f20aaecd15462fa07575d3a133c6ab.jpg", "file_size": 15328, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#玫红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f20aaecd15462fa07575d3a133c6ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f20aaecd15462fa07575d3a133c6ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f20aaecd15462fa07575d3a133c6ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68f20aaecd15462fa07575d3a133c6ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68f20aaecd15462fa07575d3a133c6ab.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DCFYVtv5w2YQbL4NEJQI5_UA9TY=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.889015+00 2025-12-09 10:15:32.88902+00 15897 FX0003-103#RC23 SPMX-20240815311093 \N \N \N 1 \N [{"file_id": "e1bde489-329c-4588-82b2-b8d757f811b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01f9293a11c64a9eae8be61f26e3658c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01f9293a11c64a9eae8be61f26e3658c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01f9293a11c64a9eae8be61f26e3658c.jpg", "file_size": 53963, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-103#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f9293a11c64a9eae8be61f26e3658c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f9293a11c64a9eae8be61f26e3658c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f9293a11c64a9eae8be61f26e3658c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01f9293a11c64a9eae8be61f26e3658c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01f9293a11c64a9eae8be61f26e3658c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sGcycunVu978h5AX1_uUlU7G4Cs=", "createTime": "2024-08-15 14:59:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.891661+00 2025-12-09 10:15:32.891667+00 15898 85017#乱花 SPMX-20240815311111 \N \N \N 1 \N [{"file_id": "d11b0eca-e766-48b8-9fef-53311c52198c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7925550902c43019cdaf71801664ea5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7925550902c43019cdaf71801664ea5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7925550902c43019cdaf71801664ea5.jpg", "file_size": 12867, "is_delete": false, "file_type": 1, "original_file_name": "85017#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7925550902c43019cdaf71801664ea5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7925550902c43019cdaf71801664ea5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7925550902c43019cdaf71801664ea5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7925550902c43019cdaf71801664ea5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7925550902c43019cdaf71801664ea5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxGHpYRA1nBQWDwtoCyKz3GRQAE=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.894297+00 2025-12-09 10:15:32.894302+00 15899 LJH1851#粉色 SPMX-20240815311109 \N \N \N 1 \N [{"file_id": "37b51b36-1dbf-49ee-81b5-bb0c9a695532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e99d9a96f86340a9b2add17bf4bd8cb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e99d9a96f86340a9b2add17bf4bd8cb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e99d9a96f86340a9b2add17bf4bd8cb7.jpg", "file_size": 79426, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99d9a96f86340a9b2add17bf4bd8cb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99d9a96f86340a9b2add17bf4bd8cb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e99d9a96f86340a9b2add17bf4bd8cb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e99d9a96f86340a9b2add17bf4bd8cb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e99d9a96f86340a9b2add17bf4bd8cb7.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vo8jLcT4WRjGWJ66FvzOuFX1Pvs=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.896957+00 2025-12-09 10:15:32.896962+00 15900 CC002FW#VS-D3土黄 SPMX-20240815311113 \N \N \N 1 \N [{"file_id": "e7d2a16e-9a1e-4efa-8aab-6a37783da563", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0a68bab65be4d339279e123f0d0cfe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0a68bab65be4d339279e123f0d0cfe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0a68bab65be4d339279e123f0d0cfe3.jpg", "file_size": 9483, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a68bab65be4d339279e123f0d0cfe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a68bab65be4d339279e123f0d0cfe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0a68bab65be4d339279e123f0d0cfe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0a68bab65be4d339279e123f0d0cfe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0a68bab65be4d339279e123f0d0cfe3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khyF8kXgPJTq-JA78W7tzNsafak=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.899622+00 2025-12-09 10:15:32.899627+00 15901 JTSS670FW#VS-D3 SPMX-20240815311116 \N \N \N 1 \N [{"file_id": "61492121-4a2c-43f4-8dea-0eb58df23fdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d7b4993935042c995927a6835e90165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d7b4993935042c995927a6835e90165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d7b4993935042c995927a6835e90165.jpg", "file_size": 7317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS670FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7b4993935042c995927a6835e90165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7b4993935042c995927a6835e90165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d7b4993935042c995927a6835e90165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d7b4993935042c995927a6835e90165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d7b4993935042c995927a6835e90165.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2H-9ND9Dm6uj41tJB9x5Ofp6bI8=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.902228+00 2025-12-09 10:15:32.902233+00 15902 0006-66FWE#VS-D3 SPMX-20240815311110 \N \N \N 1 \N [{"file_id": "3aeb1982-9d67-4857-b9ba-f301f6bbf19e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "583afd14d4c34a39abd3666856e3aea3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "583afd14d4c34a39abd3666856e3aea3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "583afd14d4c34a39abd3666856e3aea3.jpg", "file_size": 16077, "is_delete": false, "file_type": 1, "original_file_name": "0006-66FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583afd14d4c34a39abd3666856e3aea3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583afd14d4c34a39abd3666856e3aea3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/583afd14d4c34a39abd3666856e3aea3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/583afd14d4c34a39abd3666856e3aea3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/583afd14d4c34a39abd3666856e3aea3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86CiG9zxYhl1O3CXKTKXVdFJZpM=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.904786+00 2025-12-09 10:15:32.904791+00 15903 23-307#A1-4XL SPMX-20240815311107 \N \N \N 1 \N [{"file_id": "cc0dd1dd-ea36-4f3f-af5d-3c91ea6248dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc51376d70d641a3bb257626afd4039e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc51376d70d641a3bb257626afd4039e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc51376d70d641a3bb257626afd4039e.jpg", "file_size": 11911, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A1-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc51376d70d641a3bb257626afd4039e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc51376d70d641a3bb257626afd4039e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc51376d70d641a3bb257626afd4039e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc51376d70d641a3bb257626afd4039e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc51376d70d641a3bb257626afd4039e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma-cERJohqUsqtaoepPxfRtMus4=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.907407+00 2025-12-09 10:15:32.907412+00 15904 DL31315#蓝绿上身定位裁 SPMX-20240815311114 \N \N \N 1 \N [{"file_id": "b8ea3835-2f81-46d1-86ab-9d6d36abe870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2edf21410e2a4d47ae92fcdf032be352.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2edf21410e2a4d47ae92fcdf032be352.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2edf21410e2a4d47ae92fcdf032be352.jpg", "file_size": 16136, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#蓝绿上身定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edf21410e2a4d47ae92fcdf032be352.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edf21410e2a4d47ae92fcdf032be352.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edf21410e2a4d47ae92fcdf032be352.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2edf21410e2a4d47ae92fcdf032be352.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2edf21410e2a4d47ae92fcdf032be352.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XA0fCr7t9hAt1qo7oXWIETEkWAg=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.910063+00 2025-12-09 10:15:32.910068+00 15905 1222-1FWE#蓝色4XL SPMX-20240815311108 \N \N \N 1 \N [{"file_id": "c186c266-8932-46f0-a215-749c6ad9f300", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bad4c2d94f743968f2a0176e1053ccb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bad4c2d94f743968f2a0176e1053ccb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bad4c2d94f743968f2a0176e1053ccb.jpg", "file_size": 15329, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#蓝色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bad4c2d94f743968f2a0176e1053ccb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bad4c2d94f743968f2a0176e1053ccb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bad4c2d94f743968f2a0176e1053ccb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bad4c2d94f743968f2a0176e1053ccb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bad4c2d94f743968f2a0176e1053ccb.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JmqCFTuIXSqBp0oKjK22EyRlAdo=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.912663+00 2025-12-09 10:15:32.912668+00 15906 23-307#A1-领子3XL SPMX-20240815311117 \N \N \N 1 \N [{"file_id": "4eb4c238-f352-4c71-b335-490feae2196e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "975a047187a247939923b81e1a42b276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "975a047187a247939923b81e1a42b276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "975a047187a247939923b81e1a42b276.jpg", "file_size": 12253, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A1-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975a047187a247939923b81e1a42b276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975a047187a247939923b81e1a42b276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975a047187a247939923b81e1a42b276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/975a047187a247939923b81e1a42b276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/975a047187a247939923b81e1a42b276.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcbHo2Y94fClbmwFxWc64bOlJI0=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.9153+00 2025-12-09 10:15:32.915305+00 15907 LZ1348#童装T5号色 SPMX-20240815311112 \N \N \N 1 \N [{"file_id": "25b72527-92f5-42a2-b2eb-13eeb4d365be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc635514e7ad41cca0b73d2adc4fd0c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc635514e7ad41cca0b73d2adc4fd0c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc635514e7ad41cca0b73d2adc4fd0c8.jpg", "file_size": 24661, "is_delete": false, "file_type": 1, "original_file_name": "LZ1348#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc635514e7ad41cca0b73d2adc4fd0c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc635514e7ad41cca0b73d2adc4fd0c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc635514e7ad41cca0b73d2adc4fd0c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc635514e7ad41cca0b73d2adc4fd0c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc635514e7ad41cca0b73d2adc4fd0c8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sr1mWb0d_SGZa7WLLSflKH-KNm0=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.917863+00 2025-12-09 10:15:32.917868+00 15908 FX0003-105#RC23 SPMX-20240815311115 \N \N \N 1 \N [{"file_id": "34ead529-a97d-40d3-97b0-f8ec671017f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b3e275818404c25bcf510b2047d0ec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b3e275818404c25bcf510b2047d0ec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b3e275818404c25bcf510b2047d0ec2.jpg", "file_size": 62094, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-105#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3e275818404c25bcf510b2047d0ec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3e275818404c25bcf510b2047d0ec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b3e275818404c25bcf510b2047d0ec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b3e275818404c25bcf510b2047d0ec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b3e275818404c25bcf510b2047d0ec2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTTJ0SGdQ7h0xhenEBRMgP_50fY=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.920867+00 2025-12-09 10:15:32.920874+00 15909 LZ1349#上身1号色 SPMX-20240815311118 \N \N \N 1 \N [{"file_id": "20b3d801-e2d9-47fe-9b10-e5ddcfa61b7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c06897bd05b44e1a27620a1af863a12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c06897bd05b44e1a27620a1af863a12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c06897bd05b44e1a27620a1af863a12.jpg", "file_size": 18531, "is_delete": false, "file_type": 1, "original_file_name": "LZ1349#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06897bd05b44e1a27620a1af863a12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06897bd05b44e1a27620a1af863a12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c06897bd05b44e1a27620a1af863a12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c06897bd05b44e1a27620a1af863a12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c06897bd05b44e1a27620a1af863a12.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7cn_Op3WMDO1tOWjL783zeXaSU=", "createTime": "2024-08-15 14:59:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.924235+00 2025-12-09 10:15:32.924241+00 15910 1222-1FWE#蓝色L SPMX-20240815311121 \N \N \N 1 \N [{"file_id": "b01fb080-0934-4a99-b839-92d1021809ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00685847898246f9865340ad6f368d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00685847898246f9865340ad6f368d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00685847898246f9865340ad6f368d6b.jpg", "file_size": 17270, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00685847898246f9865340ad6f368d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00685847898246f9865340ad6f368d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00685847898246f9865340ad6f368d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00685847898246f9865340ad6f368d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00685847898246f9865340ad6f368d6b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_nSQCP7woeADIN7vCn1ReL3ueY=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.927261+00 2025-12-09 10:15:32.927267+00 15911 85018#10码+12码 SPMX-20240815311123 \N \N \N 1 \N [{"file_id": "5802b43d-33ad-427e-b681-15607d20b386", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cbe940bf05e458db5027b02d97dab53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cbe940bf05e458db5027b02d97dab53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cbe940bf05e458db5027b02d97dab53.jpg", "file_size": 20754, "is_delete": false, "file_type": 1, "original_file_name": "85018#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cbe940bf05e458db5027b02d97dab53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cbe940bf05e458db5027b02d97dab53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cbe940bf05e458db5027b02d97dab53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cbe940bf05e458db5027b02d97dab53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cbe940bf05e458db5027b02d97dab53.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bdf5dWFwbprSlvYZPRsbTtGRsKI=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.930348+00 2025-12-09 10:15:32.930354+00 15912 0006-67FWE#VS-D3 SPMX-20240815311122 \N \N \N 1 \N [{"file_id": "cdfa7f38-05e1-4ab6-9bbb-25fc00c5266b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8cb736cdd6b4f71951cdd1425da3739.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8cb736cdd6b4f71951cdd1425da3739.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8cb736cdd6b4f71951cdd1425da3739.jpg", "file_size": 15637, "is_delete": false, "file_type": 1, "original_file_name": "0006-67FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8cb736cdd6b4f71951cdd1425da3739.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8cb736cdd6b4f71951cdd1425da3739.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8cb736cdd6b4f71951cdd1425da3739.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8cb736cdd6b4f71951cdd1425da3739.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8cb736cdd6b4f71951cdd1425da3739.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAPsvbyMRuWTpV--tbZ-DgHB2Rw=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.933505+00 2025-12-09 10:15:32.933511+00 15913 CC002FW#VS-D3大红 SPMX-20240815311126 \N \N \N 1 \N [{"file_id": "b9dd68aa-90f9-47bd-9945-5931e18990af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4914bec2e4dc4494a6346a9bfecb1b97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4914bec2e4dc4494a6346a9bfecb1b97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4914bec2e4dc4494a6346a9bfecb1b97.jpg", "file_size": 9886, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4914bec2e4dc4494a6346a9bfecb1b97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4914bec2e4dc4494a6346a9bfecb1b97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4914bec2e4dc4494a6346a9bfecb1b97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4914bec2e4dc4494a6346a9bfecb1b97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4914bec2e4dc4494a6346a9bfecb1b97.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xwh29SN7EGPX0lvtuIR0L2PSGM=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.936591+00 2025-12-09 10:15:32.936597+00 15914 LJH1851#红色 SPMX-20240815311120 \N \N \N 1 \N [{"file_id": "998c50c5-7e85-4ea5-99e4-86b7bdc915ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aad0789e451404cba88a8dfdba5dca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aad0789e451404cba88a8dfdba5dca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aad0789e451404cba88a8dfdba5dca4.jpg", "file_size": 80320, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aad0789e451404cba88a8dfdba5dca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aad0789e451404cba88a8dfdba5dca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aad0789e451404cba88a8dfdba5dca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aad0789e451404cba88a8dfdba5dca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aad0789e451404cba88a8dfdba5dca4.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xh1tRj7FTCstjuUd-Nnl95a_2Yw=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.939668+00 2025-12-09 10:15:32.939673+00 15915 DL31315#蓝绿批布 SPMX-20240815311119 \N \N \N 1 \N [{"file_id": "e5a132b8-7536-4719-9e5d-a348f7d30644", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73344d2575694fc4bd95c700cdf29c4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73344d2575694fc4bd95c700cdf29c4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73344d2575694fc4bd95c700cdf29c4b.jpg", "file_size": 16646, "is_delete": false, "file_type": 1, "original_file_name": "DL31315#蓝绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73344d2575694fc4bd95c700cdf29c4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73344d2575694fc4bd95c700cdf29c4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73344d2575694fc4bd95c700cdf29c4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73344d2575694fc4bd95c700cdf29c4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73344d2575694fc4bd95c700cdf29c4b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbxC_TaSxJj7opiL7tMSnVgGMD8=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.942677+00 2025-12-09 10:15:32.942683+00 15916 FX0003-106#RC23 SPMX-20240815311127 \N \N \N 1 \N [{"file_id": "174cd7b6-f925-42de-83b2-4270f7b56e91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40eaa8a8d0314879a33da7613e4eba66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40eaa8a8d0314879a33da7613e4eba66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40eaa8a8d0314879a33da7613e4eba66.jpg", "file_size": 62780, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-106#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40eaa8a8d0314879a33da7613e4eba66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40eaa8a8d0314879a33da7613e4eba66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40eaa8a8d0314879a33da7613e4eba66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40eaa8a8d0314879a33da7613e4eba66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40eaa8a8d0314879a33da7613e4eba66.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UD5HunVHd0UrgRNxhrSrKxxEpUA=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.945464+00 2025-12-09 10:15:32.94547+00 15917 23-307#A1-领子4XL SPMX-20240815311124 \N \N \N 1 \N [{"file_id": "30dfbf0a-c7b8-40c0-8677-a21c97a54afb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f69fa087f8f48eabdbd0834c2292a1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f69fa087f8f48eabdbd0834c2292a1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f69fa087f8f48eabdbd0834c2292a1a.jpg", "file_size": 12345, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A1-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f69fa087f8f48eabdbd0834c2292a1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f69fa087f8f48eabdbd0834c2292a1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f69fa087f8f48eabdbd0834c2292a1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f69fa087f8f48eabdbd0834c2292a1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f69fa087f8f48eabdbd0834c2292a1a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOVj_OItUmQqWrIQeeyq5qQ7o8Q=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.948215+00 2025-12-09 10:15:32.948221+00 15918 JTSS671FW#VS-D3 SPMX-20240815311125 \N \N \N 1 \N [{"file_id": "a66f909c-7fb9-4fdb-b078-2183ca746634", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfcc3a4b9d1b400090aced82cc7c9f76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfcc3a4b9d1b400090aced82cc7c9f76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfcc3a4b9d1b400090aced82cc7c9f76.jpg", "file_size": 11321, "is_delete": false, "file_type": 1, "original_file_name": "JTSS671FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcc3a4b9d1b400090aced82cc7c9f76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcc3a4b9d1b400090aced82cc7c9f76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcc3a4b9d1b400090aced82cc7c9f76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfcc3a4b9d1b400090aced82cc7c9f76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfcc3a4b9d1b400090aced82cc7c9f76.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKpfypExFIg5gDXofm4rV2LFR8E=", "createTime": "2024-08-15 14:59:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.951119+00 2025-12-09 10:15:32.951125+00 15919 DL31352#彩兰 SPMX-20240815311128 \N \N \N 1 \N [{"file_id": "39d70793-dfa5-4981-a4e0-f5f17ae9eeff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "231f28efde284a3eaa0aa7ffd68a968d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "231f28efde284a3eaa0aa7ffd68a968d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "231f28efde284a3eaa0aa7ffd68a968d.jpg", "file_size": 24563, "is_delete": false, "file_type": 1, "original_file_name": "DL31352#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231f28efde284a3eaa0aa7ffd68a968d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231f28efde284a3eaa0aa7ffd68a968d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231f28efde284a3eaa0aa7ffd68a968d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/231f28efde284a3eaa0aa7ffd68a968d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/231f28efde284a3eaa0aa7ffd68a968d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfIhdIRPtNOrTNOlVAdLlVf2MXM=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.953967+00 2025-12-09 10:15:32.953978+00 15920 23-307#A2-3XL SPMX-20240815311129 \N \N \N 1 \N [{"file_id": "8bb6ed4a-e083-4c4f-96d9-11018250747f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57844bcdca07497a84ebe5c2cad46760.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57844bcdca07497a84ebe5c2cad46760.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57844bcdca07497a84ebe5c2cad46760.jpg", "file_size": 14498, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A2-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57844bcdca07497a84ebe5c2cad46760.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57844bcdca07497a84ebe5c2cad46760.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57844bcdca07497a84ebe5c2cad46760.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57844bcdca07497a84ebe5c2cad46760.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57844bcdca07497a84ebe5c2cad46760.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUJ3jSZS3USsfysN052SVJ-f8k8=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.956784+00 2025-12-09 10:15:32.956791+00 15921 LJH1851#黄色 SPMX-20240815311135 \N \N \N 1 \N [{"file_id": "2cc4e97b-e795-4554-8a68-ab835cc8ca27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29558169e9114a4c97c1b597039a6592.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29558169e9114a4c97c1b597039a6592.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29558169e9114a4c97c1b597039a6592.jpg", "file_size": 82304, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558169e9114a4c97c1b597039a6592.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558169e9114a4c97c1b597039a6592.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558169e9114a4c97c1b597039a6592.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29558169e9114a4c97c1b597039a6592.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29558169e9114a4c97c1b597039a6592.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zxd_6Hu8SP0Ifsih3ZWcOMIUzBs=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.959446+00 2025-12-09 10:15:32.959452+00 15922 0006-68FWE#VS-D3 SPMX-20240815311133 \N \N \N 1 \N [{"file_id": "4e78c220-503f-4af9-a882-320ac45bb4b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14de2d64c9be4ecc906974762a8a5484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14de2d64c9be4ecc906974762a8a5484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14de2d64c9be4ecc906974762a8a5484.jpg", "file_size": 26115, "is_delete": false, "file_type": 1, "original_file_name": "0006-68FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de2d64c9be4ecc906974762a8a5484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de2d64c9be4ecc906974762a8a5484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de2d64c9be4ecc906974762a8a5484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14de2d64c9be4ecc906974762a8a5484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14de2d64c9be4ecc906974762a8a5484.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOuh3hdmPC3yE_MTeJt0pzP4bG4=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.961999+00 2025-12-09 10:15:32.962005+00 15923 JTSS672FW#VS-D3 SPMX-20240815311132 \N \N \N 1 \N [{"file_id": "a1e9d361-43c1-4a35-861b-6e624af6ac2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31ecb41afa02493fb09a530f0a84b332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31ecb41afa02493fb09a530f0a84b332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31ecb41afa02493fb09a530f0a84b332.jpg", "file_size": 12146, "is_delete": false, "file_type": 1, "original_file_name": "JTSS672FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ecb41afa02493fb09a530f0a84b332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ecb41afa02493fb09a530f0a84b332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ecb41afa02493fb09a530f0a84b332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31ecb41afa02493fb09a530f0a84b332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31ecb41afa02493fb09a530f0a84b332.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzrW8JqdKSpfA6ZTwH6QFvq6ntU=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.964619+00 2025-12-09 10:15:32.964626+00 15924 FX0003-107#RC23 SPMX-20240815311134 \N \N \N 1 \N [{"file_id": "0273ac9e-cc54-4a5e-adc7-b20f23ab71f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg", "file_size": 52676, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-107#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efaf6fb97e7d4ab88cbe29edeb92a8c0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84WFW6B9IzajIw9tkqazICbXojA=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.967247+00 2025-12-09 10:15:32.967253+00 15925 HW478833FWE#VS-D3 SPMX-20240815311131 \N \N \N 1 \N [{"file_id": "4e99f09d-99c2-435d-992d-5bbfd24e9f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b50e29433be84718aec3154c607ffef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b50e29433be84718aec3154c607ffef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b50e29433be84718aec3154c607ffef6.jpg", "file_size": 24463, "is_delete": false, "file_type": 1, "original_file_name": "HW478833FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50e29433be84718aec3154c607ffef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50e29433be84718aec3154c607ffef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50e29433be84718aec3154c607ffef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b50e29433be84718aec3154c607ffef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b50e29433be84718aec3154c607ffef6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9dDVQvP9VCepfEQShkSFxE8B3No=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.969819+00 2025-12-09 10:15:32.969825+00 15926 85018#14码 SPMX-20240815311138 \N \N \N 1 \N [{"file_id": "02837c0d-cd69-46cc-979e-ffb052b04cd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e39221eedeff4140a2243a0122d4fe23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e39221eedeff4140a2243a0122d4fe23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e39221eedeff4140a2243a0122d4fe23.jpg", "file_size": 18342, "is_delete": false, "file_type": 1, "original_file_name": "85018#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39221eedeff4140a2243a0122d4fe23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39221eedeff4140a2243a0122d4fe23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e39221eedeff4140a2243a0122d4fe23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e39221eedeff4140a2243a0122d4fe23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e39221eedeff4140a2243a0122d4fe23.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aIgi1BZzJZ-33F8l43qPKp221Pc=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.97228+00 2025-12-09 10:15:32.972285+00 15927 CC002FW#VS-D3深蓝 SPMX-20240815311136 \N \N \N 1 \N [{"file_id": "83647cc8-e71a-4e82-8897-6802924961eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0413c17da0234d81b1abbc8c92d34674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0413c17da0234d81b1abbc8c92d34674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0413c17da0234d81b1abbc8c92d34674.jpg", "file_size": 10271, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0413c17da0234d81b1abbc8c92d34674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0413c17da0234d81b1abbc8c92d34674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0413c17da0234d81b1abbc8c92d34674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0413c17da0234d81b1abbc8c92d34674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0413c17da0234d81b1abbc8c92d34674.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gva10_ZOnucVATW_1ZRk6v2L1BI=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.975042+00 2025-12-09 10:15:32.975048+00 15928 1222-1FWE#蓝色XL SPMX-20240815311137 \N \N \N 1 \N [{"file_id": "4a9fcae2-305e-44e3-bb62-c7bcea652ad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a50689ec0be44d0da75b299eb5bba8f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a50689ec0be44d0da75b299eb5bba8f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a50689ec0be44d0da75b299eb5bba8f9.jpg", "file_size": 17681, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a50689ec0be44d0da75b299eb5bba8f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a50689ec0be44d0da75b299eb5bba8f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a50689ec0be44d0da75b299eb5bba8f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a50689ec0be44d0da75b299eb5bba8f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a50689ec0be44d0da75b299eb5bba8f9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Px-3mqUGrsL87QonglsiSd56mdc=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.977882+00 2025-12-09 10:15:32.977888+00 15929 DL31352#枣红 SPMX-20240815311139 \N \N \N 1 \N [{"file_id": "b6e37646-c5f3-4b09-88e8-3cf04386bdd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3eb6470d69b494b8ed11c7c8ae39546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3eb6470d69b494b8ed11c7c8ae39546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3eb6470d69b494b8ed11c7c8ae39546.jpg", "file_size": 24672, "is_delete": false, "file_type": 1, "original_file_name": "DL31352#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb6470d69b494b8ed11c7c8ae39546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb6470d69b494b8ed11c7c8ae39546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3eb6470d69b494b8ed11c7c8ae39546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3eb6470d69b494b8ed11c7c8ae39546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3eb6470d69b494b8ed11c7c8ae39546.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6HlTUFNBXZMdGNsaBcOyxDxd1I=", "createTime": "2024-08-15 14:59:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.980778+00 2025-12-09 10:15:32.980784+00 15930 LZ1349#上身2号色 SPMX-20240815311130 \N \N \N 1 \N [{"file_id": "967d671f-bf03-4c40-982b-852e99205771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95ab9bc0f422479787dfc721901d18c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95ab9bc0f422479787dfc721901d18c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95ab9bc0f422479787dfc721901d18c6.jpg", "file_size": 18262, "is_delete": false, "file_type": 1, "original_file_name": "LZ1349#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab9bc0f422479787dfc721901d18c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab9bc0f422479787dfc721901d18c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab9bc0f422479787dfc721901d18c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95ab9bc0f422479787dfc721901d18c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95ab9bc0f422479787dfc721901d18c6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZfoCgDyRPx2PHvboRamLKsGCVA=", "createTime": "2024-08-15 14:59:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.983479+00 2025-12-09 10:15:32.98349+00 15931 23-307#A2-4XL SPMX-20240815311140 \N \N \N 1 \N [{"file_id": "a42521f7-d7be-4383-8471-c6116fe844cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec6b63352d043459269bc3ae6ffdd3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec6b63352d043459269bc3ae6ffdd3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec6b63352d043459269bc3ae6ffdd3f.jpg", "file_size": 13842, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A2-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec6b63352d043459269bc3ae6ffdd3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec6b63352d043459269bc3ae6ffdd3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec6b63352d043459269bc3ae6ffdd3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec6b63352d043459269bc3ae6ffdd3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec6b63352d043459269bc3ae6ffdd3f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxzVP15KFzyWFtVq3BqdIQto6Uw=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.986023+00 2025-12-09 10:15:32.986028+00 15932 DL31352#橘红 SPMX-20240815311149 \N \N \N 1 \N [{"file_id": "aefd68f7-7187-4508-9420-deffade1a825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c26aa8b97a34dd083e4a066db8760ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c26aa8b97a34dd083e4a066db8760ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c26aa8b97a34dd083e4a066db8760ae.jpg", "file_size": 23152, "is_delete": false, "file_type": 1, "original_file_name": "DL31352#橘红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26aa8b97a34dd083e4a066db8760ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26aa8b97a34dd083e4a066db8760ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c26aa8b97a34dd083e4a066db8760ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c26aa8b97a34dd083e4a066db8760ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c26aa8b97a34dd083e4a066db8760ae.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8dQrTuf-Ddk-H-0TZAWNFLvpdQ=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.988594+00 2025-12-09 10:15:32.988601+00 15933 0006-69FWE#VS-D3 SPMX-20240815311141 \N \N \N 1 \N [{"file_id": "1bf39926-b024-4b2c-8fc6-2b13576f11f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4071c39d51d4c98ab29101f902b1cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4071c39d51d4c98ab29101f902b1cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4071c39d51d4c98ab29101f902b1cde.jpg", "file_size": 12307, "is_delete": false, "file_type": 1, "original_file_name": "0006-69FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4071c39d51d4c98ab29101f902b1cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4071c39d51d4c98ab29101f902b1cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4071c39d51d4c98ab29101f902b1cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4071c39d51d4c98ab29101f902b1cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4071c39d51d4c98ab29101f902b1cde.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j7FPuwQqiTxY_NZriOZ8XH2PLHo=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.991176+00 2025-12-09 10:15:32.991182+00 15934 1222-1FWE#蓝色匹布 SPMX-20240815311143 \N \N \N 1 \N [{"file_id": "92c04307-84e3-42b3-8171-81909c1e08b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df8793e316f94a36b051eed2df05459c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df8793e316f94a36b051eed2df05459c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df8793e316f94a36b051eed2df05459c.jpg", "file_size": 15210, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#蓝色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8793e316f94a36b051eed2df05459c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8793e316f94a36b051eed2df05459c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8793e316f94a36b051eed2df05459c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df8793e316f94a36b051eed2df05459c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df8793e316f94a36b051eed2df05459c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cV82rzVZdWizLDAGvVxe3pf8ng8=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.993971+00 2025-12-09 10:15:32.993979+00 15935 CC002FW#VS-D3湖蓝 SPMX-20240815311148 \N \N \N 1 \N [{"file_id": "75b617c2-158a-46ae-869e-eb254ad8382a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d76d52ba8da244dbbce87c325804af12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d76d52ba8da244dbbce87c325804af12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d76d52ba8da244dbbce87c325804af12.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3湖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d76d52ba8da244dbbce87c325804af12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d76d52ba8da244dbbce87c325804af12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d76d52ba8da244dbbce87c325804af12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d76d52ba8da244dbbce87c325804af12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d76d52ba8da244dbbce87c325804af12.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkWw-eRRmEg2XuHX3E7Xz-vIOV0=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.996673+00 2025-12-09 10:15:32.996678+00 15936 LJH1851#黑色 SPMX-20240815311146 \N \N \N 1 \N [{"file_id": "cb1e1019-6657-459c-a128-fc84f64dcbac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b11f988e25914043b05d6c16df14f03d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b11f988e25914043b05d6c16df14f03d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b11f988e25914043b05d6c16df14f03d.jpg", "file_size": 79016, "is_delete": false, "file_type": 1, "original_file_name": "LJH1851#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11f988e25914043b05d6c16df14f03d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11f988e25914043b05d6c16df14f03d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b11f988e25914043b05d6c16df14f03d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b11f988e25914043b05d6c16df14f03d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b11f988e25914043b05d6c16df14f03d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrFHxUw5wmdLhD3SLU3WkZg7Irs=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:32.999346+00 2025-12-09 10:15:32.999353+00 15937 85018#4码+8码 SPMX-20240815311145 \N \N \N 1 \N [{"file_id": "9af138ee-c7d9-4641-96ea-b4603711d3e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fbde72085f944659476d73917e46e7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fbde72085f944659476d73917e46e7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fbde72085f944659476d73917e46e7f.jpg", "file_size": 20549, "is_delete": false, "file_type": 1, "original_file_name": "85018#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbde72085f944659476d73917e46e7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbde72085f944659476d73917e46e7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fbde72085f944659476d73917e46e7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fbde72085f944659476d73917e46e7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fbde72085f944659476d73917e46e7f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jjo6SuUgS5P8Zez3XRK2GkD7EL4=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.001907+00 2025-12-09 10:15:33.001913+00 15938 JTSS673FW#VS-D3 SPMX-20240815311142 \N \N \N 1 \N [{"file_id": "5cfc8e5f-74e2-4d87-9b14-5616666d0c6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7710019d4d464e5dab635360cf358c24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7710019d4d464e5dab635360cf358c24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7710019d4d464e5dab635360cf358c24.jpg", "file_size": 13738, "is_delete": false, "file_type": 1, "original_file_name": "JTSS673FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7710019d4d464e5dab635360cf358c24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7710019d4d464e5dab635360cf358c24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7710019d4d464e5dab635360cf358c24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7710019d4d464e5dab635360cf358c24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7710019d4d464e5dab635360cf358c24.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZYle17bfgQcUEN54bcnGVhkdw8=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.004509+00 2025-12-09 10:15:33.004514+00 15939 LZ1349#上身3号色 SPMX-20240815311147 \N \N \N 1 \N [{"file_id": "ce8769f8-ef27-45ac-9ff3-4709a68b5f34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdb5ee7634e2461cb48f0e63ca8ff91f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdb5ee7634e2461cb48f0e63ca8ff91f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdb5ee7634e2461cb48f0e63ca8ff91f.jpg", "file_size": 18100, "is_delete": false, "file_type": 1, "original_file_name": "LZ1349#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5ee7634e2461cb48f0e63ca8ff91f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5ee7634e2461cb48f0e63ca8ff91f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5ee7634e2461cb48f0e63ca8ff91f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdb5ee7634e2461cb48f0e63ca8ff91f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdb5ee7634e2461cb48f0e63ca8ff91f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tC5ixi9yED23MWUacMtAJLKeKYM=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.007083+00 2025-12-09 10:15:33.007088+00 15940 FX0003-108#1号色 SPMX-20240815311144 \N \N \N 1 \N [{"file_id": "7c4d925b-2bd2-4cd6-9bc9-0a6690ab6f2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8370f079d468400688a9d9f826a6b318.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8370f079d468400688a9d9f826a6b318.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8370f079d468400688a9d9f826a6b318.jpg", "file_size": 34887, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-108#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8370f079d468400688a9d9f826a6b318.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8370f079d468400688a9d9f826a6b318.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8370f079d468400688a9d9f826a6b318.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8370f079d468400688a9d9f826a6b318.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8370f079d468400688a9d9f826a6b318.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vOCMCsae0YiN0THjQmn_Q0Oc2WM=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.00982+00 2025-12-09 10:15:33.009827+00 15941 FX0003-108#2号色 SPMX-20240815311156 \N \N \N 1 \N [{"file_id": "0b9b358d-bdb2-4cb8-b863-de67a24dc3a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2d12f17acf94c31924863de31c668f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2d12f17acf94c31924863de31c668f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2d12f17acf94c31924863de31c668f3.jpg", "file_size": 47024, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-108#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d12f17acf94c31924863de31c668f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d12f17acf94c31924863de31c668f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2d12f17acf94c31924863de31c668f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2d12f17acf94c31924863de31c668f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2d12f17acf94c31924863de31c668f3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LK4AMF-nCl6gX2ZuAinisS1GrUk=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.012477+00 2025-12-09 10:15:33.012482+00 15942 23-307#A2-领子4XL SPMX-20240815311162 \N \N \N 1 \N [{"file_id": "84d4b67d-7675-4d20-8e3d-b51dea04fba8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f55caf4377234ceeb0b0d7f585c9453e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f55caf4377234ceeb0b0d7f585c9453e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f55caf4377234ceeb0b0d7f585c9453e.jpg", "file_size": 11723, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A2-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55caf4377234ceeb0b0d7f585c9453e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55caf4377234ceeb0b0d7f585c9453e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f55caf4377234ceeb0b0d7f585c9453e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f55caf4377234ceeb0b0d7f585c9453e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f55caf4377234ceeb0b0d7f585c9453e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXIjkrC6XGWGLSwqesX_cTTLGUQ=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.015127+00 2025-12-09 10:15:33.015135+00 15943 1222-1FWE#酒红2XL SPMX-20240815311152 \N \N \N 1 \N [{"file_id": "062523b9-7650-40c5-89fd-3c2b32f16152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4afdbafaff014a5d9f500841b1754a66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4afdbafaff014a5d9f500841b1754a66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4afdbafaff014a5d9f500841b1754a66.jpg", "file_size": 25518, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#酒红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afdbafaff014a5d9f500841b1754a66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afdbafaff014a5d9f500841b1754a66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afdbafaff014a5d9f500841b1754a66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4afdbafaff014a5d9f500841b1754a66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4afdbafaff014a5d9f500841b1754a66.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JpAeJ2mvrhoyZ4HxxpgtBvwEauc=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.017733+00 2025-12-09 10:15:33.017739+00 15944 0006-6FWF#V5曲线 SPMX-20240815311157 \N \N \N 1 \N [{"file_id": "e9ea1dab-f237-4ae2-aef6-97bebd0be3a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14d8a38e55a54ef2a5397f9d531e911d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14d8a38e55a54ef2a5397f9d531e911d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14d8a38e55a54ef2a5397f9d531e911d.jpg", "file_size": 20784, "is_delete": false, "file_type": 1, "original_file_name": "0006-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d8a38e55a54ef2a5397f9d531e911d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d8a38e55a54ef2a5397f9d531e911d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14d8a38e55a54ef2a5397f9d531e911d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14d8a38e55a54ef2a5397f9d531e911d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14d8a38e55a54ef2a5397f9d531e911d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WC-NfX7HVzbKyhF0X0-D4LEIHU=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.020291+00 2025-12-09 10:15:33.020297+00 15945 LZ1349#上身4号色 SPMX-20240815311160 \N \N \N 1 \N [{"file_id": "5dd37324-2c44-4e96-9af2-82c2b14fa034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85be5e77dde04d68bfb22de50835f5c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85be5e77dde04d68bfb22de50835f5c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85be5e77dde04d68bfb22de50835f5c1.jpg", "file_size": 16689, "is_delete": false, "file_type": 1, "original_file_name": "LZ1349#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85be5e77dde04d68bfb22de50835f5c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85be5e77dde04d68bfb22de50835f5c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85be5e77dde04d68bfb22de50835f5c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85be5e77dde04d68bfb22de50835f5c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85be5e77dde04d68bfb22de50835f5c1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbwQLYq8ikqTgR9lsMx2genHyvA=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.022853+00 2025-12-09 10:15:33.022858+00 15946 85018#6码 SPMX-20240815311154 \N \N \N 1 \N [{"file_id": "e6298999-c494-435a-96b2-4447f83ef993", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88434efde9d14c43b6856d8bfba3ea79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88434efde9d14c43b6856d8bfba3ea79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88434efde9d14c43b6856d8bfba3ea79.jpg", "file_size": 19938, "is_delete": false, "file_type": 1, "original_file_name": "85018#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88434efde9d14c43b6856d8bfba3ea79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88434efde9d14c43b6856d8bfba3ea79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88434efde9d14c43b6856d8bfba3ea79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88434efde9d14c43b6856d8bfba3ea79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88434efde9d14c43b6856d8bfba3ea79.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUrncj_ioQbi-dF0YrN6Nj_JvMs=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.025448+00 2025-12-09 10:15:33.025454+00 15947 HW479333FWE#VS-D3 SPMX-20240815311151 \N \N \N 1 \N [{"file_id": "4c7ce83b-d154-40ae-95c6-37e13fd996c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2530f697e8740559fe6e5f165a628c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2530f697e8740559fe6e5f165a628c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2530f697e8740559fe6e5f165a628c3.jpg", "file_size": 10386, "is_delete": false, "file_type": 1, "original_file_name": "HW479333FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2530f697e8740559fe6e5f165a628c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2530f697e8740559fe6e5f165a628c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2530f697e8740559fe6e5f165a628c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2530f697e8740559fe6e5f165a628c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2530f697e8740559fe6e5f165a628c3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hCCXP688BgZImQlXjZcZdOEUpo=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.028192+00 2025-12-09 10:15:33.028199+00 15948 LJH1852#白色 SPMX-20240815311155 \N \N \N 1 \N [{"file_id": "6370a58d-77ff-445f-ae9a-926f3ae26aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c36d81d30ff44ca2a76d5924d84b8047.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c36d81d30ff44ca2a76d5924d84b8047.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c36d81d30ff44ca2a76d5924d84b8047.jpg", "file_size": 59184, "is_delete": false, "file_type": 1, "original_file_name": "LJH1852#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36d81d30ff44ca2a76d5924d84b8047.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36d81d30ff44ca2a76d5924d84b8047.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c36d81d30ff44ca2a76d5924d84b8047.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c36d81d30ff44ca2a76d5924d84b8047.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c36d81d30ff44ca2a76d5924d84b8047.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LhqBgEH9109Jt5_wi8-219Qdb34=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.030872+00 2025-12-09 10:15:33.030878+00 15949 HW480023FWE#VS-D3 SPMX-20240815311158 \N \N \N 1 \N [{"file_id": "59d463a2-839b-45ba-b403-9872ba704aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf276f70ed8d4292b8128d56c65b5978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf276f70ed8d4292b8128d56c65b5978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf276f70ed8d4292b8128d56c65b5978.jpg", "file_size": 15969, "is_delete": false, "file_type": 1, "original_file_name": "HW480023FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf276f70ed8d4292b8128d56c65b5978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf276f70ed8d4292b8128d56c65b5978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf276f70ed8d4292b8128d56c65b5978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf276f70ed8d4292b8128d56c65b5978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf276f70ed8d4292b8128d56c65b5978.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgjdYFZ_QQOXTEzVBHfPxzQidww=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.033519+00 2025-12-09 10:15:33.033525+00 15950 DL31352#玫红 SPMX-20240815311159 \N \N \N 1 \N [{"file_id": "0ff81a43-ec41-4750-ae70-3fd669ca22c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e6578aaa8e42f1b3df1afc77e46128.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e6578aaa8e42f1b3df1afc77e46128.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e6578aaa8e42f1b3df1afc77e46128.jpg", "file_size": 23852, "is_delete": false, "file_type": 1, "original_file_name": "DL31352#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6578aaa8e42f1b3df1afc77e46128.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6578aaa8e42f1b3df1afc77e46128.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6578aaa8e42f1b3df1afc77e46128.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e6578aaa8e42f1b3df1afc77e46128.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e6578aaa8e42f1b3df1afc77e46128.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CS5ABhuCmOxDmQLT4KiGBaRLzwA=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.03617+00 2025-12-09 10:15:33.036176+00 15951 23-307#A2-领子3XL SPMX-20240815311150 \N \N \N 1 \N [{"file_id": "ec0d97cd-60b8-4309-b7a4-6c3cb9ac861b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13a6ec1c9f28417d8dfb104cd36cca61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13a6ec1c9f28417d8dfb104cd36cca61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13a6ec1c9f28417d8dfb104cd36cca61.jpg", "file_size": 12204, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A2-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a6ec1c9f28417d8dfb104cd36cca61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a6ec1c9f28417d8dfb104cd36cca61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13a6ec1c9f28417d8dfb104cd36cca61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13a6ec1c9f28417d8dfb104cd36cca61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13a6ec1c9f28417d8dfb104cd36cca61.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dfbd2sYqOmN8ae__himCOzsUD54=", "createTime": "2024-08-15 14:59:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.038833+00 2025-12-09 10:15:33.038839+00 15952 JTSS674FW#VS-D3 SPMX-20240815311153 \N \N \N 1 \N [{"file_id": "a61710e6-ae8b-47fe-b848-dc593cc9e983", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6feb5919d51f4f8f8230d1c8f4973455.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6feb5919d51f4f8f8230d1c8f4973455.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6feb5919d51f4f8f8230d1c8f4973455.jpg", "file_size": 11045, "is_delete": false, "file_type": 1, "original_file_name": "JTSS674FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6feb5919d51f4f8f8230d1c8f4973455.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6feb5919d51f4f8f8230d1c8f4973455.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6feb5919d51f4f8f8230d1c8f4973455.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6feb5919d51f4f8f8230d1c8f4973455.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6feb5919d51f4f8f8230d1c8f4973455.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5b_FS4zfG6v3KYwFgMABhEC5BP8=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.04148+00 2025-12-09 10:15:33.041487+00 15953 CC002FW#VS-D3灰色 SPMX-20240815311161 \N \N \N 1 \N [{"file_id": "4085c53b-6d86-4721-bfe8-bc4829cc6cf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "444df883c9b04804909b940c069614d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "444df883c9b04804909b940c069614d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "444df883c9b04804909b940c069614d4.jpg", "file_size": 9329, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444df883c9b04804909b940c069614d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444df883c9b04804909b940c069614d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444df883c9b04804909b940c069614d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/444df883c9b04804909b940c069614d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/444df883c9b04804909b940c069614d4.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ga2uk37xABW58Ar76jwskFWJUv0=", "createTime": "2024-08-15 14:59:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.044143+00 2025-12-09 10:15:33.044149+00 15954 23-307#A3-3XL SPMX-20240815311165 \N \N \N 1 \N [{"file_id": "f19bd53a-130d-4afe-81f9-cda95bdcb3f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f785a588403472ea2bbe36daba6ee56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f785a588403472ea2bbe36daba6ee56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f785a588403472ea2bbe36daba6ee56.jpg", "file_size": 13568, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A3-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f785a588403472ea2bbe36daba6ee56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f785a588403472ea2bbe36daba6ee56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f785a588403472ea2bbe36daba6ee56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f785a588403472ea2bbe36daba6ee56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f785a588403472ea2bbe36daba6ee56.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fZ1Ndlzrz0zdZhleh0ZZODJ-aIs=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.046759+00 2025-12-09 10:15:33.046765+00 15955 FX0003-108#3号色 SPMX-20240815311166 \N \N \N 1 \N [{"file_id": "a84a24c9-3df0-4ff1-8492-36b3818afe40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eafd9185a7e4a76910ad490c9f6953f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eafd9185a7e4a76910ad490c9f6953f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eafd9185a7e4a76910ad490c9f6953f.jpg", "file_size": 43778, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-108#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eafd9185a7e4a76910ad490c9f6953f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eafd9185a7e4a76910ad490c9f6953f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eafd9185a7e4a76910ad490c9f6953f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eafd9185a7e4a76910ad490c9f6953f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eafd9185a7e4a76910ad490c9f6953f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bn528M--g7XSf4aR_uLhCpvBUh4=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.049431+00 2025-12-09 10:15:33.049438+00 15956 JTSS675FW#VS-D3 SPMX-20240815311164 \N \N \N 1 \N [{"file_id": "ee3c89f7-0f80-48eb-8726-cf218caf29a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4afa2704a7b94389852cdf1c6ba0e222.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4afa2704a7b94389852cdf1c6ba0e222.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4afa2704a7b94389852cdf1c6ba0e222.jpg", "file_size": 11678, "is_delete": false, "file_type": 1, "original_file_name": "JTSS675FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afa2704a7b94389852cdf1c6ba0e222.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afa2704a7b94389852cdf1c6ba0e222.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4afa2704a7b94389852cdf1c6ba0e222.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4afa2704a7b94389852cdf1c6ba0e222.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4afa2704a7b94389852cdf1c6ba0e222.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ioRF4wulroyrMvuKzYX5VCMNAM=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.052046+00 2025-12-09 10:15:33.052052+00 15957 1222-1FWE#酒红4XL SPMX-20240815311163 \N \N \N 1 \N [{"file_id": "c3185593-104c-4a03-8741-ef41783d16e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "872f842577a441d79c38f1e48197ce1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "872f842577a441d79c38f1e48197ce1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "872f842577a441d79c38f1e48197ce1c.jpg", "file_size": 15249, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#酒红4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872f842577a441d79c38f1e48197ce1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872f842577a441d79c38f1e48197ce1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872f842577a441d79c38f1e48197ce1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/872f842577a441d79c38f1e48197ce1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/872f842577a441d79c38f1e48197ce1c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZJEnZ9WOr7Xua2cknK3pWYANqk=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.054677+00 2025-12-09 10:15:33.054683+00 15958 DL31391#大红 SPMX-20240815311167 \N \N \N 1 \N [{"file_id": "6dbf491a-dd1c-47a6-95d9-08470087230a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cfa2513230c465cbb556dd080d51005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cfa2513230c465cbb556dd080d51005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cfa2513230c465cbb556dd080d51005.jpg", "file_size": 15673, "is_delete": false, "file_type": 1, "original_file_name": "DL31391#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa2513230c465cbb556dd080d51005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa2513230c465cbb556dd080d51005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfa2513230c465cbb556dd080d51005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cfa2513230c465cbb556dd080d51005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cfa2513230c465cbb556dd080d51005.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:COtQ-J6vuoqmKSqibGo_ZG2wuv4=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.057284+00 2025-12-09 10:15:33.05729+00 15959 CC002FW#VS-D3绿色 SPMX-20240815311181 \N \N \N 1 \N [{"file_id": "01946c26-7bc1-4530-b1e2-ceaf1021adcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c50da4913d4b42aaa7fa82f3152ad0f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c50da4913d4b42aaa7fa82f3152ad0f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c50da4913d4b42aaa7fa82f3152ad0f4.jpg", "file_size": 8760, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50da4913d4b42aaa7fa82f3152ad0f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50da4913d4b42aaa7fa82f3152ad0f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c50da4913d4b42aaa7fa82f3152ad0f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c50da4913d4b42aaa7fa82f3152ad0f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c50da4913d4b42aaa7fa82f3152ad0f4.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSrETvI8X1vnNPJ5aQzWUmCzLRs=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.059897+00 2025-12-09 10:15:33.059902+00 15960 LZ1349#上身5号色 SPMX-20240815311172 \N \N \N 1 \N [{"file_id": "d21df355-cfce-4b2f-9e48-3ae36cedc2e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90c35c91f03b474dba352219af38a751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90c35c91f03b474dba352219af38a751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90c35c91f03b474dba352219af38a751.jpg", "file_size": 18193, "is_delete": false, "file_type": 1, "original_file_name": "LZ1349#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c35c91f03b474dba352219af38a751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c35c91f03b474dba352219af38a751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c35c91f03b474dba352219af38a751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90c35c91f03b474dba352219af38a751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90c35c91f03b474dba352219af38a751.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VMGRPfx5Iu19S4Azq0J5NvzQ8aE=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.062507+00 2025-12-09 10:15:33.062513+00 15961 HW483893FWE#VS-D3 SPMX-20240815311180 \N \N \N 1 \N [{"file_id": "45640d94-0f12-4c34-bd27-87882ee05fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94548391ddd642c2b79936e499a8a42f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94548391ddd642c2b79936e499a8a42f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94548391ddd642c2b79936e499a8a42f.jpg", "file_size": 17502, "is_delete": false, "file_type": 1, "original_file_name": "HW483893FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94548391ddd642c2b79936e499a8a42f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94548391ddd642c2b79936e499a8a42f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94548391ddd642c2b79936e499a8a42f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94548391ddd642c2b79936e499a8a42f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94548391ddd642c2b79936e499a8a42f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMlguKjla_BvK4RFBt8YaEzVnIs=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.065041+00 2025-12-09 10:15:33.065046+00 15962 FX0003-109#杏色 SPMX-20240815311177 \N \N \N 1 \N [{"file_id": "9b79dd32-584c-473c-a3ae-4f0172c0044f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da13a9100ff247dfb0084acc98b379d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da13a9100ff247dfb0084acc98b379d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da13a9100ff247dfb0084acc98b379d3.jpg", "file_size": 50135, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-109#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da13a9100ff247dfb0084acc98b379d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da13a9100ff247dfb0084acc98b379d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da13a9100ff247dfb0084acc98b379d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da13a9100ff247dfb0084acc98b379d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da13a9100ff247dfb0084acc98b379d3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Vyy6pY_2ErXdw22snosUJOjgro=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.067691+00 2025-12-09 10:15:33.067696+00 15963 JTSS676FW#VS-D3 SPMX-20240815311176 \N \N \N 1 \N [{"file_id": "48deae59-dd31-4a4a-a8e1-4b4fafb3607e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01afb058f11f4c8fb42e28ff015d33d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01afb058f11f4c8fb42e28ff015d33d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01afb058f11f4c8fb42e28ff015d33d8.jpg", "file_size": 25161, "is_delete": false, "file_type": 1, "original_file_name": "JTSS676FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01afb058f11f4c8fb42e28ff015d33d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01afb058f11f4c8fb42e28ff015d33d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01afb058f11f4c8fb42e28ff015d33d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01afb058f11f4c8fb42e28ff015d33d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01afb058f11f4c8fb42e28ff015d33d8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-J6VwmdQcxti3pbuRO4hFncdo_0=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.070781+00 2025-12-09 10:15:33.070787+00 15964 CC002FW#VS-D3紫色 SPMX-20240815311171 \N \N \N 1 \N [{"file_id": "5f4eeba2-b4d5-412d-abed-71fc6a32166d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a3b4580db70491ab4d909431393c039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a3b4580db70491ab4d909431393c039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a3b4580db70491ab4d909431393c039.jpg", "file_size": 9267, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3b4580db70491ab4d909431393c039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3b4580db70491ab4d909431393c039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3b4580db70491ab4d909431393c039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a3b4580db70491ab4d909431393c039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a3b4580db70491ab4d909431393c039.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJGV4lafOoDj2F7t129ctn_YCjY=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.073851+00 2025-12-09 10:15:33.073856+00 15965 HW480890FWE#VS-D3 SPMX-20240815311169 \N \N \N 1 \N [{"file_id": "2a57c2c9-226b-42d9-bdcc-b9639738d860", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01e781422f5c40de876622ebf0243d8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01e781422f5c40de876622ebf0243d8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01e781422f5c40de876622ebf0243d8e.jpg", "file_size": 18750, "is_delete": false, "file_type": 1, "original_file_name": "HW480890FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e781422f5c40de876622ebf0243d8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e781422f5c40de876622ebf0243d8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01e781422f5c40de876622ebf0243d8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01e781422f5c40de876622ebf0243d8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01e781422f5c40de876622ebf0243d8e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CT44t7gmM0AXn-W_YDvPWfaoWmA=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.076455+00 2025-12-09 10:15:33.076461+00 15966 LJH1852#粉色 SPMX-20240815311170 \N \N \N 1 \N [{"file_id": "bd3f890c-557a-4e48-aa01-1ae13725a8b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfea002c5785467ebf63a3d300601a40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfea002c5785467ebf63a3d300601a40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfea002c5785467ebf63a3d300601a40.jpg", "file_size": 58314, "is_delete": false, "file_type": 1, "original_file_name": "LJH1852#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfea002c5785467ebf63a3d300601a40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfea002c5785467ebf63a3d300601a40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfea002c5785467ebf63a3d300601a40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfea002c5785467ebf63a3d300601a40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfea002c5785467ebf63a3d300601a40.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vULriXYwLB2zZrNF8mRLKFXF88=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.079056+00 2025-12-09 10:15:33.079061+00 15967 LZ134FWF#1号色短袖 SPMX-20240815311182 \N \N \N 1 \N [{"file_id": "00184b10-6992-4137-8eab-b1a6edaed594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "210ad9fee9644e728f8104c89736c0df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "210ad9fee9644e728f8104c89736c0df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "210ad9fee9644e728f8104c89736c0df.jpg", "file_size": 19329, "is_delete": false, "file_type": 1, "original_file_name": "LZ134FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210ad9fee9644e728f8104c89736c0df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210ad9fee9644e728f8104c89736c0df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/210ad9fee9644e728f8104c89736c0df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/210ad9fee9644e728f8104c89736c0df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/210ad9fee9644e728f8104c89736c0df.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GUXR_JVWEsd1xhKSHZylBUDhMc=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.081676+00 2025-12-09 10:15:33.081682+00 15968 1222-1FWE#酒红L SPMX-20240815311173 \N \N \N 1 \N [{"file_id": "5d4398ae-c8c1-47bb-822d-dedd70730f31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e79bf89ec06b487a983550b5c409db21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e79bf89ec06b487a983550b5c409db21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e79bf89ec06b487a983550b5c409db21.jpg", "file_size": 17133, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#酒红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79bf89ec06b487a983550b5c409db21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79bf89ec06b487a983550b5c409db21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79bf89ec06b487a983550b5c409db21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e79bf89ec06b487a983550b5c409db21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e79bf89ec06b487a983550b5c409db21.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mZSgqix0g6D973N1NJ67DfBWLdA=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.084374+00 2025-12-09 10:15:33.08438+00 15969 23-307#A3-4XL SPMX-20240815311175 \N \N \N 1 \N [{"file_id": "d9be6904-23c7-4a0a-aae7-586e6041328f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "775fe68469b64b229aa8b9f998110af5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "775fe68469b64b229aa8b9f998110af5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "775fe68469b64b229aa8b9f998110af5.jpg", "file_size": 12765, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A3-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775fe68469b64b229aa8b9f998110af5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775fe68469b64b229aa8b9f998110af5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775fe68469b64b229aa8b9f998110af5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/775fe68469b64b229aa8b9f998110af5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/775fe68469b64b229aa8b9f998110af5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TV137D5XfV98qTeMF70gE6ybHC0=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.087025+00 2025-12-09 10:15:33.087031+00 15970 0006-70FWE#VS-D3 SPMX-20240815311174 \N \N \N 1 \N [{"file_id": "5a5d5239-48c6-443e-9cab-8873b331f0b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62efcb7666b34613bad14f2c04b5ff0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62efcb7666b34613bad14f2c04b5ff0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62efcb7666b34613bad14f2c04b5ff0f.jpg", "file_size": 21407, "is_delete": false, "file_type": 1, "original_file_name": "0006-70FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62efcb7666b34613bad14f2c04b5ff0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62efcb7666b34613bad14f2c04b5ff0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62efcb7666b34613bad14f2c04b5ff0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62efcb7666b34613bad14f2c04b5ff0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62efcb7666b34613bad14f2c04b5ff0f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u1R1LzJlbEVxE7J1OxIaG6RoinE=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.089635+00 2025-12-09 10:15:33.089641+00 15971 85019#10码+12码 SPMX-20240815311179 \N \N \N 1 \N [{"file_id": "501f25f9-07a6-4f69-bd8d-0b6387d7426d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d555ab75e5c040a3a1bce19033883207.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d555ab75e5c040a3a1bce19033883207.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d555ab75e5c040a3a1bce19033883207.jpg", "file_size": 19101, "is_delete": false, "file_type": 1, "original_file_name": "85019#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d555ab75e5c040a3a1bce19033883207.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d555ab75e5c040a3a1bce19033883207.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d555ab75e5c040a3a1bce19033883207.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d555ab75e5c040a3a1bce19033883207.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d555ab75e5c040a3a1bce19033883207.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IpzUc3VWNkrlOnS7GoZLlXdGF3U=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.092291+00 2025-12-09 10:15:33.092297+00 15972 DL31391#彩兰 SPMX-20240815311178 \N \N \N 1 \N [{"file_id": "41bb6d6f-3da4-428f-8070-4d65ab87912b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f91e451c6ff4967a70abc9e72a436c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f91e451c6ff4967a70abc9e72a436c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f91e451c6ff4967a70abc9e72a436c0.jpg", "file_size": 15597, "is_delete": false, "file_type": 1, "original_file_name": "DL31391#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f91e451c6ff4967a70abc9e72a436c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f91e451c6ff4967a70abc9e72a436c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f91e451c6ff4967a70abc9e72a436c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f91e451c6ff4967a70abc9e72a436c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f91e451c6ff4967a70abc9e72a436c0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vvV0bsE21zx3iP9NQ8BWB_LT0Co=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.094872+00 2025-12-09 10:15:33.094878+00 15973 85018#乱花 SPMX-20240815311168 \N \N \N 1 \N [{"file_id": "97458dc0-2d6c-48e2-b327-0f691e857fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c85362815fd747beb20def78f4b964bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c85362815fd747beb20def78f4b964bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c85362815fd747beb20def78f4b964bd.jpg", "file_size": 13039, "is_delete": false, "file_type": 1, "original_file_name": "85018#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85362815fd747beb20def78f4b964bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85362815fd747beb20def78f4b964bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c85362815fd747beb20def78f4b964bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c85362815fd747beb20def78f4b964bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c85362815fd747beb20def78f4b964bd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdHdWg85AkVNjxo5qa5Bme5sipk=", "createTime": "2024-08-15 14:59:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.097805+00 2025-12-09 10:15:33.097811+00 15974 1222-1FWE#酒红XL SPMX-20240815311183 \N \N \N 1 \N [{"file_id": "eb482b27-788e-444c-9131-29599c0baf19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d510e437303e4cc1a5d9c98956c0ec0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d510e437303e4cc1a5d9c98956c0ec0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d510e437303e4cc1a5d9c98956c0ec0e.jpg", "file_size": 17486, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#酒红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d510e437303e4cc1a5d9c98956c0ec0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d510e437303e4cc1a5d9c98956c0ec0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d510e437303e4cc1a5d9c98956c0ec0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d510e437303e4cc1a5d9c98956c0ec0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d510e437303e4cc1a5d9c98956c0ec0e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1OoK77vQQVZ4YUNCBOGkNlnmq0=", "createTime": "2024-08-15 14:59:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.100397+00 2025-12-09 10:15:33.100401+00 15975 0006-71FWE#VS-D3 SPMX-20240815311184 \N \N \N 1 \N [{"file_id": "f1494bee-fc30-443a-9062-34d3fa4244c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e00346a99e3449f88171ee6f71f5a30c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e00346a99e3449f88171ee6f71f5a30c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e00346a99e3449f88171ee6f71f5a30c.jpg", "file_size": 22848, "is_delete": false, "file_type": 1, "original_file_name": "0006-71FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00346a99e3449f88171ee6f71f5a30c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00346a99e3449f88171ee6f71f5a30c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00346a99e3449f88171ee6f71f5a30c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e00346a99e3449f88171ee6f71f5a30c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e00346a99e3449f88171ee6f71f5a30c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36rboqJ3QxzhOM1-Wo2x5IutvFE=", "createTime": "2024-08-15 14:59:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.102779+00 2025-12-09 10:15:33.102783+00 15976 JTSS677FW#VS-D3 SPMX-20240815311185 \N \N \N 1 \N [{"file_id": "945c4fee-e3b9-4780-8be8-cca2d6d6da16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fbcd034805a432db50054686b4b717e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fbcd034805a432db50054686b4b717e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fbcd034805a432db50054686b4b717e.jpg", "file_size": 13749, "is_delete": false, "file_type": 1, "original_file_name": "JTSS677FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbcd034805a432db50054686b4b717e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbcd034805a432db50054686b4b717e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fbcd034805a432db50054686b4b717e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fbcd034805a432db50054686b4b717e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fbcd034805a432db50054686b4b717e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOojNVqFxnWgzvIoDPXZw7Ka6s8=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.104996+00 2025-12-09 10:15:33.105+00 15977 LJH1852#绿色 SPMX-20240815311186 \N \N \N 1 \N [{"file_id": "89f91253-2715-4cee-93f1-0ca55209c48c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63b03bfdbd8c4a32b0b49d9c5e201075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63b03bfdbd8c4a32b0b49d9c5e201075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63b03bfdbd8c4a32b0b49d9c5e201075.jpg", "file_size": 57622, "is_delete": false, "file_type": 1, "original_file_name": "LJH1852#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b03bfdbd8c4a32b0b49d9c5e201075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b03bfdbd8c4a32b0b49d9c5e201075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63b03bfdbd8c4a32b0b49d9c5e201075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63b03bfdbd8c4a32b0b49d9c5e201075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63b03bfdbd8c4a32b0b49d9c5e201075.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqEtetw4nBTB28QtJOFmwyGwGHE=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.107443+00 2025-12-09 10:15:33.107447+00 15978 FX0003-109#粉色 SPMX-20240815311189 \N \N \N 1 \N [{"file_id": "b310abab-0cda-4b27-bd92-4592018dfe85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac6df177d3f144e5b25e2a6d82909599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac6df177d3f144e5b25e2a6d82909599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac6df177d3f144e5b25e2a6d82909599.jpg", "file_size": 52395, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-109#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6df177d3f144e5b25e2a6d82909599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6df177d3f144e5b25e2a6d82909599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6df177d3f144e5b25e2a6d82909599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac6df177d3f144e5b25e2a6d82909599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac6df177d3f144e5b25e2a6d82909599.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zIKcYtCXN7GOYMWU9rhQsuvzZMk=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.109865+00 2025-12-09 10:15:33.10987+00 15979 LZ134FWF#2号色短袖 SPMX-20240815311188 \N \N \N 1 \N [{"file_id": "ec409337-432e-47cd-bb45-8296d1e8eea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8764942111d49f9a59ae8bf4978c623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8764942111d49f9a59ae8bf4978c623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8764942111d49f9a59ae8bf4978c623.jpg", "file_size": 18726, "is_delete": false, "file_type": 1, "original_file_name": "LZ134FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8764942111d49f9a59ae8bf4978c623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8764942111d49f9a59ae8bf4978c623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8764942111d49f9a59ae8bf4978c623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8764942111d49f9a59ae8bf4978c623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8764942111d49f9a59ae8bf4978c623.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snb7Pa1KYxrp-I9ykAhMPBx5Kig=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.112029+00 2025-12-09 10:15:33.112034+00 15980 23-307#A3-领子3XL SPMX-20240815311187 \N \N \N 1 \N [{"file_id": "331dc68e-e885-4f22-b2d6-332ba637fb5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a71fac6394a42dcadb7109cacb6ebb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a71fac6394a42dcadb7109cacb6ebb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a71fac6394a42dcadb7109cacb6ebb2.jpg", "file_size": 11604, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A3-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a71fac6394a42dcadb7109cacb6ebb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a71fac6394a42dcadb7109cacb6ebb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a71fac6394a42dcadb7109cacb6ebb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a71fac6394a42dcadb7109cacb6ebb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a71fac6394a42dcadb7109cacb6ebb2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUgYzm52Z5islDduDN8pKsRIQwQ=", "createTime": "2024-08-15 14:59:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.114505+00 2025-12-09 10:15:33.114509+00 15981 0006-72FWE#VS-D3 SPMX-20240815311190 \N \N \N 1 \N [{"file_id": "9d6bf3d6-b277-47bb-b768-b1dfa54e9b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "138062290fd14b47b3b7e26ef3ee556b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "138062290fd14b47b3b7e26ef3ee556b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "138062290fd14b47b3b7e26ef3ee556b.jpg", "file_size": 8211, "is_delete": false, "file_type": 1, "original_file_name": "0006-72FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138062290fd14b47b3b7e26ef3ee556b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138062290fd14b47b3b7e26ef3ee556b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/138062290fd14b47b3b7e26ef3ee556b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/138062290fd14b47b3b7e26ef3ee556b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/138062290fd14b47b3b7e26ef3ee556b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ooQjZk6jefeunJYuiCXt-VrUGuY=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.117062+00 2025-12-09 10:15:33.117068+00 15982 DL31391#枣红 SPMX-20240815311195 \N \N \N 1 \N [{"file_id": "84d6e877-7f19-4d29-a2ae-4a812adf51ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e95ac05842184e4c91c35e9cd0cabf17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e95ac05842184e4c91c35e9cd0cabf17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e95ac05842184e4c91c35e9cd0cabf17.jpg", "file_size": 15946, "is_delete": false, "file_type": 1, "original_file_name": "DL31391#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95ac05842184e4c91c35e9cd0cabf17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95ac05842184e4c91c35e9cd0cabf17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e95ac05842184e4c91c35e9cd0cabf17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e95ac05842184e4c91c35e9cd0cabf17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e95ac05842184e4c91c35e9cd0cabf17.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cx0nBduFgGu4my3DN_iXPdSxBHY=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.119577+00 2025-12-09 10:15:33.119582+00 15983 JTSS678FW#VS-D3 SPMX-20240815311198 \N \N \N 1 \N [{"file_id": "4200b783-d3a3-45c5-b10e-8f35f23ecf60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg", "file_size": 14584, "is_delete": false, "file_type": 1, "original_file_name": "JTSS678FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0233f6d74abe4ebba4b3a5ad7b6be0c9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tkk3BcLesSF8lFtCgsA_5kVrLeI=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.122318+00 2025-12-09 10:15:33.122323+00 15984 0006-73FWE#咖色底 SPMX-20240815311199 \N \N \N 1 \N [{"file_id": "4097496f-e57f-432f-b851-366488375a34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2fb165cb74b42f1802792bf1de6f63d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2fb165cb74b42f1802792bf1de6f63d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2fb165cb74b42f1802792bf1de6f63d.jpg", "file_size": 14563, "is_delete": false, "file_type": 1, "original_file_name": "0006-73FWE#咖色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2fb165cb74b42f1802792bf1de6f63d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2fb165cb74b42f1802792bf1de6f63d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2fb165cb74b42f1802792bf1de6f63d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2fb165cb74b42f1802792bf1de6f63d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2fb165cb74b42f1802792bf1de6f63d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0aeVpadKPeTypYeaQEvl-g5PWS4=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.124968+00 2025-12-09 10:15:33.124973+00 15985 1222-1FWE#酒红匹布 SPMX-20240815311194 \N \N \N 1 \N [{"file_id": "aec6e4dc-23c8-441f-8c5d-c2532193ef5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b77b77a8e53f431a80dcca9450033b24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b77b77a8e53f431a80dcca9450033b24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b77b77a8e53f431a80dcca9450033b24.jpg", "file_size": 14696, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#酒红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77b77a8e53f431a80dcca9450033b24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77b77a8e53f431a80dcca9450033b24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77b77a8e53f431a80dcca9450033b24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b77b77a8e53f431a80dcca9450033b24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b77b77a8e53f431a80dcca9450033b24.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwCtRhwB1KLruCtP8M3IBEz0gs4=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.127675+00 2025-12-09 10:15:33.127681+00 15986 23-307#A3-领子4XL SPMX-20240815311196 \N \N \N 1 \N [{"file_id": "658372b9-b5b1-45c0-8bd6-a8a303c3f060", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efd5dd00527449e0a3f146ceb083b892.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efd5dd00527449e0a3f146ceb083b892.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efd5dd00527449e0a3f146ceb083b892.jpg", "file_size": 12627, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A3-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd5dd00527449e0a3f146ceb083b892.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd5dd00527449e0a3f146ceb083b892.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd5dd00527449e0a3f146ceb083b892.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efd5dd00527449e0a3f146ceb083b892.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efd5dd00527449e0a3f146ceb083b892.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m824UId2v66LHI2T3vpSdOQTVdg=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.130304+00 2025-12-09 10:15:33.13031+00 15987 HW487374FWE#VS-D3 SPMX-20240815311192 \N \N \N 1 \N [{"file_id": "d76d038c-bbdf-404d-8f23-4b5643d8fe20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d94f9c28e24046e2a96d85c18db10005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d94f9c28e24046e2a96d85c18db10005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d94f9c28e24046e2a96d85c18db10005.jpg", "file_size": 16056, "is_delete": false, "file_type": 1, "original_file_name": "HW487374FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f9c28e24046e2a96d85c18db10005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f9c28e24046e2a96d85c18db10005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94f9c28e24046e2a96d85c18db10005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d94f9c28e24046e2a96d85c18db10005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d94f9c28e24046e2a96d85c18db10005.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CqRyJeR8z-LKndYnL3eA5qFkn3E=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.132901+00 2025-12-09 10:15:33.132907+00 15988 LJH1852#黑色 SPMX-20240815311201 \N \N \N 1 \N [{"file_id": "476682ee-31d1-4e97-bdc1-b022f281cf9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1ec142da8d3478797b6471b977bcb3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1ec142da8d3478797b6471b977bcb3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1ec142da8d3478797b6471b977bcb3e.jpg", "file_size": 57023, "is_delete": false, "file_type": 1, "original_file_name": "LJH1852#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ec142da8d3478797b6471b977bcb3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ec142da8d3478797b6471b977bcb3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1ec142da8d3478797b6471b977bcb3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1ec142da8d3478797b6471b977bcb3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1ec142da8d3478797b6471b977bcb3e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:md6_iXuuZMdQ303NPEWxNR03H7c=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.135514+00 2025-12-09 10:15:33.135519+00 15989 CC002FW#VS-D3黄色 SPMX-20240815311191 \N \N \N 1 \N [{"file_id": "1823f44c-c82e-4493-a11e-2b4149524abf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "666158551b2e432bac3cdb9932b6cad8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "666158551b2e432bac3cdb9932b6cad8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "666158551b2e432bac3cdb9932b6cad8.jpg", "file_size": 9334, "is_delete": false, "file_type": 1, "original_file_name": "CC002FW#VS-D3黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666158551b2e432bac3cdb9932b6cad8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666158551b2e432bac3cdb9932b6cad8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666158551b2e432bac3cdb9932b6cad8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/666158551b2e432bac3cdb9932b6cad8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/666158551b2e432bac3cdb9932b6cad8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5By_h9DfQFpQnPw8B_eIoFP7Pc=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.138115+00 2025-12-09 10:15:33.13812+00 15990 85019#4码+8码 SPMX-20240815311200 \N \N \N 1 \N [{"file_id": "361946a7-2f92-4cea-8dbc-718d1381f112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abb14fcf496e47ff8fe5fd9cdc591200.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abb14fcf496e47ff8fe5fd9cdc591200.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abb14fcf496e47ff8fe5fd9cdc591200.jpg", "file_size": 19804, "is_delete": false, "file_type": 1, "original_file_name": "85019#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb14fcf496e47ff8fe5fd9cdc591200.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb14fcf496e47ff8fe5fd9cdc591200.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb14fcf496e47ff8fe5fd9cdc591200.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abb14fcf496e47ff8fe5fd9cdc591200.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abb14fcf496e47ff8fe5fd9cdc591200.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQXc1O8IglKf5giEofELDFclNXo=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.140494+00 2025-12-09 10:15:33.140499+00 15991 LZ134FWF#3号色短袖 SPMX-20240815311202 \N \N \N 1 \N [{"file_id": "461497e2-9163-4012-94e9-6312ad185f96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5e9fd9696134d599fd2bef5df1087e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5e9fd9696134d599fd2bef5df1087e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5e9fd9696134d599fd2bef5df1087e9.jpg", "file_size": 18675, "is_delete": false, "file_type": 1, "original_file_name": "LZ134FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e9fd9696134d599fd2bef5df1087e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e9fd9696134d599fd2bef5df1087e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5e9fd9696134d599fd2bef5df1087e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5e9fd9696134d599fd2bef5df1087e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5e9fd9696134d599fd2bef5df1087e9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3XGsMxTEMRGYwQWdnn-OBlDOM-0=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.142991+00 2025-12-09 10:15:33.142996+00 15992 85019#14码 SPMX-20240815311193 \N \N \N 1 \N [{"file_id": "52e4b615-2cc0-40c1-98fc-f3e49b975211", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f2e40c79e8140adbbd8543d2f383994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f2e40c79e8140adbbd8543d2f383994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f2e40c79e8140adbbd8543d2f383994.jpg", "file_size": 17698, "is_delete": false, "file_type": 1, "original_file_name": "85019#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2e40c79e8140adbbd8543d2f383994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2e40c79e8140adbbd8543d2f383994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2e40c79e8140adbbd8543d2f383994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f2e40c79e8140adbbd8543d2f383994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f2e40c79e8140adbbd8543d2f383994.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mqzh3FODtr-zdvZuzITWyHdnofk=", "createTime": "2024-08-15 14:59:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.145651+00 2025-12-09 10:15:33.145658+00 15993 FX0003-109#紫色 SPMX-20240815311197 \N \N \N 1 \N [{"file_id": "5d8e4b87-e258-4deb-9691-56964bb106a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f600235466a34f239408d1a446533048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f600235466a34f239408d1a446533048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f600235466a34f239408d1a446533048.jpg", "file_size": 50755, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-109#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f600235466a34f239408d1a446533048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f600235466a34f239408d1a446533048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f600235466a34f239408d1a446533048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f600235466a34f239408d1a446533048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f600235466a34f239408d1a446533048.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rw2AirIgFFHvMpPW_BpLM-twVD0=", "createTime": "2024-08-15 14:59:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.148249+00 2025-12-09 10:15:33.148255+00 15994 LJH1853#彩兰 SPMX-20240815311211 \N \N \N 1 \N [{"file_id": "c705d27b-492a-427e-9f28-cfb9fe63d98d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de6b2976c00483bb02c972fc0bce6f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de6b2976c00483bb02c972fc0bce6f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de6b2976c00483bb02c972fc0bce6f5.jpg", "file_size": 78888, "is_delete": false, "file_type": 1, "original_file_name": "LJH1853#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de6b2976c00483bb02c972fc0bce6f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de6b2976c00483bb02c972fc0bce6f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de6b2976c00483bb02c972fc0bce6f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de6b2976c00483bb02c972fc0bce6f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de6b2976c00483bb02c972fc0bce6f5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:URaBF3Ri-TQcb_kh3ADtmpo66TA=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.150862+00 2025-12-09 10:15:33.150868+00 15995 HW494275FWE#VS-D3 SPMX-20240815311210 \N \N \N 1 \N [{"file_id": "3027afc8-900f-4710-98ad-b2a5ed2d87cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92360e5ec4d5461d913f38d185247b47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92360e5ec4d5461d913f38d185247b47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92360e5ec4d5461d913f38d185247b47.jpg", "file_size": 14071, "is_delete": false, "file_type": 1, "original_file_name": "HW494275FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92360e5ec4d5461d913f38d185247b47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92360e5ec4d5461d913f38d185247b47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92360e5ec4d5461d913f38d185247b47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92360e5ec4d5461d913f38d185247b47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92360e5ec4d5461d913f38d185247b47.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATU1xz4jx-6NXuDZdnKazkO4io4=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.153797+00 2025-12-09 10:15:33.153804+00 15996 23-307#A4-3XL SPMX-20240815311206 \N \N \N 1 \N [{"file_id": "203335a4-9b13-49bf-a84d-6c96420ac280", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c6a11ffcfc42aaaa643a1586ad7673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c6a11ffcfc42aaaa643a1586ad7673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c6a11ffcfc42aaaa643a1586ad7673.jpg", "file_size": 13158, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A4-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c6a11ffcfc42aaaa643a1586ad7673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c6a11ffcfc42aaaa643a1586ad7673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c6a11ffcfc42aaaa643a1586ad7673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c6a11ffcfc42aaaa643a1586ad7673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c6a11ffcfc42aaaa643a1586ad7673.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8yUHkXtfboZCZ6c16S82jb15DVU=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.156897+00 2025-12-09 10:15:33.156904+00 15997 0006-73FWE#咖色底番禺调色 SPMX-20240815311208 \N \N \N 1 \N [{"file_id": "778e6f69-1026-4190-830b-d3390275a274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d51c10e93524daea0fde7ee172cb79d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d51c10e93524daea0fde7ee172cb79d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d51c10e93524daea0fde7ee172cb79d.jpg", "file_size": 15887, "is_delete": false, "file_type": 1, "original_file_name": "0006-73FWE#咖色底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d51c10e93524daea0fde7ee172cb79d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d51c10e93524daea0fde7ee172cb79d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d51c10e93524daea0fde7ee172cb79d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d51c10e93524daea0fde7ee172cb79d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d51c10e93524daea0fde7ee172cb79d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sTmBgzZzzzk525aX6HbKeN8nePk=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.159651+00 2025-12-09 10:15:33.159658+00 15998 CC003FW#A SPMX-20240815311204 \N \N \N 1 \N [{"file_id": "2ec8eec2-3697-406a-8b45-fef1fcb36a7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "728a473fff3e41b5a35a55a83c886e38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "728a473fff3e41b5a35a55a83c886e38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "728a473fff3e41b5a35a55a83c886e38.jpg", "file_size": 12336, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728a473fff3e41b5a35a55a83c886e38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728a473fff3e41b5a35a55a83c886e38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728a473fff3e41b5a35a55a83c886e38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/728a473fff3e41b5a35a55a83c886e38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/728a473fff3e41b5a35a55a83c886e38.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AAmRNy0_tU7bZAXhY7vR-xECgCQ=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.162858+00 2025-12-09 10:15:33.162865+00 15999 DL31391#草绿 SPMX-20240815311209 \N \N \N 1 \N [{"file_id": "d0c27932-65d8-481f-ba49-252c68a398c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38ce3b46913b4061aa25d2606cd32e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38ce3b46913b4061aa25d2606cd32e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38ce3b46913b4061aa25d2606cd32e06.jpg", "file_size": 15908, "is_delete": false, "file_type": 1, "original_file_name": "DL31391#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce3b46913b4061aa25d2606cd32e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce3b46913b4061aa25d2606cd32e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ce3b46913b4061aa25d2606cd32e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38ce3b46913b4061aa25d2606cd32e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38ce3b46913b4061aa25d2606cd32e06.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_QEosr2I_nil4Tu3HnvIy086M7w=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.165967+00 2025-12-09 10:15:33.165975+00 16000 FX0003-11#RC23 SPMX-20240815311207 \N \N \N 1 \N [{"file_id": "a462a7e2-3062-4354-bae4-af5372bc4e2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89fe042323504ea691db40aefa8f75d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89fe042323504ea691db40aefa8f75d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89fe042323504ea691db40aefa8f75d9.jpg", "file_size": 17210, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-11#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fe042323504ea691db40aefa8f75d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fe042323504ea691db40aefa8f75d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89fe042323504ea691db40aefa8f75d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89fe042323504ea691db40aefa8f75d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89fe042323504ea691db40aefa8f75d9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1MKSCpUkW3_fqiHPwo4rmFafRk=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.168928+00 2025-12-09 10:15:33.168935+00 16001 JTSS679FW#VS-D3 SPMX-20240815311203 \N \N \N 1 \N [{"file_id": "ab76d37a-69f0-4ce9-9882-b40604beac4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a0f34ed379248cc9a77a26d867bbb2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a0f34ed379248cc9a77a26d867bbb2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a0f34ed379248cc9a77a26d867bbb2d.jpg", "file_size": 28403, "is_delete": false, "file_type": 1, "original_file_name": "JTSS679FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0f34ed379248cc9a77a26d867bbb2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0f34ed379248cc9a77a26d867bbb2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0f34ed379248cc9a77a26d867bbb2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a0f34ed379248cc9a77a26d867bbb2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a0f34ed379248cc9a77a26d867bbb2d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6NDxxHeQwU5m5qkws_JIiJlaYc=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.171848+00 2025-12-09 10:15:33.171856+00 16002 1222-1FWE#黑色2XL SPMX-20240815311205 \N \N \N 1 \N [{"file_id": "c718b885-ce08-432f-8faf-642a264bbe34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "666572c91cb54394ae39e4abca38e97b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "666572c91cb54394ae39e4abca38e97b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "666572c91cb54394ae39e4abca38e97b.jpg", "file_size": 27122, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666572c91cb54394ae39e4abca38e97b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666572c91cb54394ae39e4abca38e97b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666572c91cb54394ae39e4abca38e97b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/666572c91cb54394ae39e4abca38e97b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/666572c91cb54394ae39e4abca38e97b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IWJl36z8nKHyY-9iAE7uNhLe6NQ=", "createTime": "2024-08-15 14:59:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.174933+00 2025-12-09 10:15:33.174942+00 16003 JTSS680FW#VS-D3 SPMX-20240815311214 \N \N \N 1 \N [{"file_id": "16f44452-772f-4fa1-9d7d-71b82cd1a0c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f25d9cc25944c0b3a5f7f81a79079a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f25d9cc25944c0b3a5f7f81a79079a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f25d9cc25944c0b3a5f7f81a79079a.jpg", "file_size": 11595, "is_delete": false, "file_type": 1, "original_file_name": "JTSS680FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f25d9cc25944c0b3a5f7f81a79079a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f25d9cc25944c0b3a5f7f81a79079a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f25d9cc25944c0b3a5f7f81a79079a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f25d9cc25944c0b3a5f7f81a79079a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f25d9cc25944c0b3a5f7f81a79079a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dUBK1W1Z-ptWYLmT04k5apad4Y=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.177792+00 2025-12-09 10:15:33.177799+00 16004 23-307#A4-4XL SPMX-20240815311216 \N \N \N 1 \N [{"file_id": "60122b5a-7da3-4fbf-8541-fba530eec77d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc3896ec4f3e4df28edbb48bb535b68d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc3896ec4f3e4df28edbb48bb535b68d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc3896ec4f3e4df28edbb48bb535b68d.jpg", "file_size": 12229, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A4-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3896ec4f3e4df28edbb48bb535b68d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3896ec4f3e4df28edbb48bb535b68d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc3896ec4f3e4df28edbb48bb535b68d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc3896ec4f3e4df28edbb48bb535b68d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc3896ec4f3e4df28edbb48bb535b68d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsJfG7LBBV_dLWLGSz5uWJ5TdFQ=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.180399+00 2025-12-09 10:15:33.180404+00 16005 DL31391-2#大红 SPMX-20240815311218 \N \N \N 1 \N [{"file_id": "d41e0fde-0032-458b-8824-8739a7276f01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3438bfd3025142ad8daac9b920f9f803.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3438bfd3025142ad8daac9b920f9f803.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3438bfd3025142ad8daac9b920f9f803.jpg", "file_size": 17501, "is_delete": false, "file_type": 1, "original_file_name": "DL31391-2#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3438bfd3025142ad8daac9b920f9f803.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3438bfd3025142ad8daac9b920f9f803.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3438bfd3025142ad8daac9b920f9f803.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3438bfd3025142ad8daac9b920f9f803.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3438bfd3025142ad8daac9b920f9f803.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:klxAscPqhE-g80jOMdn06T6Di5w=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.183479+00 2025-12-09 10:15:33.183485+00 16006 85019#6码 SPMX-20240815311212 \N \N \N 1 \N [{"file_id": "69f6ec62-8a5d-48e8-aa3f-f8c59162706c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58715a7b78ef4b55af4da1b8fa5efcdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58715a7b78ef4b55af4da1b8fa5efcdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58715a7b78ef4b55af4da1b8fa5efcdd.jpg", "file_size": 18847, "is_delete": false, "file_type": 1, "original_file_name": "85019#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58715a7b78ef4b55af4da1b8fa5efcdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58715a7b78ef4b55af4da1b8fa5efcdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58715a7b78ef4b55af4da1b8fa5efcdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58715a7b78ef4b55af4da1b8fa5efcdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58715a7b78ef4b55af4da1b8fa5efcdd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gin-m74GTaRhgwU9rWVPZaCR_UQ=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.186352+00 2025-12-09 10:15:33.186356+00 16007 LZ134FWF#4号色短袖 SPMX-20240815311213 \N \N \N 1 \N [{"file_id": "c2b437a3-88c3-4c46-9195-49762b5ede1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e0a8f38cd6643b88db5382c7940d3a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e0a8f38cd6643b88db5382c7940d3a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e0a8f38cd6643b88db5382c7940d3a3.jpg", "file_size": 20037, "is_delete": false, "file_type": 1, "original_file_name": "LZ134FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0a8f38cd6643b88db5382c7940d3a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0a8f38cd6643b88db5382c7940d3a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0a8f38cd6643b88db5382c7940d3a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e0a8f38cd6643b88db5382c7940d3a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e0a8f38cd6643b88db5382c7940d3a3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ESBMXTZ2gnLnLWp8x89yzWtUF6I=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.189113+00 2025-12-09 10:15:33.189125+00 16008 CC003FW#B SPMX-20240815311219 \N \N \N 1 \N [{"file_id": "e11b5ffc-9a02-4b2c-9b99-54920a44709c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c0ecf436695454cb62b244200a3a487.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c0ecf436695454cb62b244200a3a487.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c0ecf436695454cb62b244200a3a487.jpg", "file_size": 13859, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0ecf436695454cb62b244200a3a487.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0ecf436695454cb62b244200a3a487.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c0ecf436695454cb62b244200a3a487.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c0ecf436695454cb62b244200a3a487.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c0ecf436695454cb62b244200a3a487.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DNXpUOxF4h75wCwKC9Vrc5buCvo=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.191715+00 2025-12-09 10:15:33.191721+00 16009 1222-1FWE#黑色4XL SPMX-20240815311217 \N \N \N 1 \N [{"file_id": "aa9c6cd8-4658-4f08-a692-f6be6ee0efee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e3b9fb33b044c94928a63a424b65872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e3b9fb33b044c94928a63a424b65872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e3b9fb33b044c94928a63a424b65872.jpg", "file_size": 16746, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#黑色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3b9fb33b044c94928a63a424b65872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3b9fb33b044c94928a63a424b65872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3b9fb33b044c94928a63a424b65872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e3b9fb33b044c94928a63a424b65872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e3b9fb33b044c94928a63a424b65872.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FbcYeJi-mDA6fQ7vsGIpRZXSAMg=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.194398+00 2025-12-09 10:15:33.194405+00 16010 LJH1853#紫色 SPMX-20240815311215 \N \N \N 1 \N [{"file_id": "6c8cf314-3300-4cd0-b548-85123a11a997", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aaa9dc083164bf38e6353ddfc558f1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aaa9dc083164bf38e6353ddfc558f1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aaa9dc083164bf38e6353ddfc558f1f.jpg", "file_size": 72724, "is_delete": false, "file_type": 1, "original_file_name": "LJH1853#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa9dc083164bf38e6353ddfc558f1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa9dc083164bf38e6353ddfc558f1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aaa9dc083164bf38e6353ddfc558f1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aaa9dc083164bf38e6353ddfc558f1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aaa9dc083164bf38e6353ddfc558f1f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QGn87dfduVCarR0EU7KPU2GxgBc=", "createTime": "2024-08-15 14:59:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.197033+00 2025-12-09 10:15:33.197038+00 16011 DL31391-2#枣红 SPMX-20240815311233 \N \N \N 1 \N [{"file_id": "c6db49a2-4d34-4568-9cc6-dc731ed5618d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efeb0d1854334a279ada5f89ae09327e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efeb0d1854334a279ada5f89ae09327e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efeb0d1854334a279ada5f89ae09327e.jpg", "file_size": 17251, "is_delete": false, "file_type": 1, "original_file_name": "DL31391-2#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efeb0d1854334a279ada5f89ae09327e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efeb0d1854334a279ada5f89ae09327e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efeb0d1854334a279ada5f89ae09327e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efeb0d1854334a279ada5f89ae09327e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efeb0d1854334a279ada5f89ae09327e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3c13dT0lgfDIP8T4UHjBE4_L9eY=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.199771+00 2025-12-09 10:15:33.199777+00 16012 0006-7FWE#VS-D3 SPMX-20240815311231 \N \N \N 1 \N [{"file_id": "f46949a2-ae0c-412f-9738-a1aad972fdfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22eaaad4cc5c4688ab08369f5ac6493d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22eaaad4cc5c4688ab08369f5ac6493d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22eaaad4cc5c4688ab08369f5ac6493d.jpg", "file_size": 19163, "is_delete": false, "file_type": 1, "original_file_name": "0006-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22eaaad4cc5c4688ab08369f5ac6493d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22eaaad4cc5c4688ab08369f5ac6493d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22eaaad4cc5c4688ab08369f5ac6493d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22eaaad4cc5c4688ab08369f5ac6493d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22eaaad4cc5c4688ab08369f5ac6493d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wZ8GC5x7DKkA_uBjHQm_aSUFoQ=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.202389+00 2025-12-09 10:15:33.202396+00 16013 85019#乱花 SPMX-20240815311224 \N \N \N 1 \N [{"file_id": "0e233060-2e98-40bd-b3ff-e7d812a23a8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "284ff5dd050e46c799dc03b460702078.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "284ff5dd050e46c799dc03b460702078.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "284ff5dd050e46c799dc03b460702078.jpg", "file_size": 12680, "is_delete": false, "file_type": 1, "original_file_name": "85019#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284ff5dd050e46c799dc03b460702078.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284ff5dd050e46c799dc03b460702078.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284ff5dd050e46c799dc03b460702078.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/284ff5dd050e46c799dc03b460702078.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/284ff5dd050e46c799dc03b460702078.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ov_CHkFkFEAo0XpA8ZDmYcsspcA=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.215425+00 2025-12-09 10:15:33.21543+00 16018 DL31391-2#彩兰 SPMX-20240815311223 \N \N \N 1 \N [{"file_id": "ae1d912c-d9e4-4975-bc24-448f0a2864f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42df34b1e54147968a10d820f280c1e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42df34b1e54147968a10d820f280c1e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42df34b1e54147968a10d820f280c1e9.jpg", "file_size": 17312, "is_delete": false, "file_type": 1, "original_file_name": "DL31391-2#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42df34b1e54147968a10d820f280c1e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42df34b1e54147968a10d820f280c1e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42df34b1e54147968a10d820f280c1e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42df34b1e54147968a10d820f280c1e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42df34b1e54147968a10d820f280c1e9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8OEeNiuUK9loOgn5iKD_xp8UvY=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.205096+00 2025-12-09 10:15:33.205102+00 16014 0006-73FWE#黑色底 SPMX-20240815311220 \N \N \N 1 \N [{"file_id": "b871aab8-e94a-4b85-9ce6-18d4e66ea308", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13075e1c2436462bb9d1db245d14a933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13075e1c2436462bb9d1db245d14a933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13075e1c2436462bb9d1db245d14a933.jpg", "file_size": 15508, "is_delete": false, "file_type": 1, "original_file_name": "0006-73FWE#黑色底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13075e1c2436462bb9d1db245d14a933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13075e1c2436462bb9d1db245d14a933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13075e1c2436462bb9d1db245d14a933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13075e1c2436462bb9d1db245d14a933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13075e1c2436462bb9d1db245d14a933.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRoSQyI-S-y56B_PPh5ITgGwX8A=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.207721+00 2025-12-09 10:15:33.207727+00 16015 1222-1FWE#黑色L SPMX-20240815311222 \N \N \N 1 \N [{"file_id": "4bac2060-76bc-4b0e-bf82-a350a87c8985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97d48f2aa82f41ebbb24e7d136d2566d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97d48f2aa82f41ebbb24e7d136d2566d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97d48f2aa82f41ebbb24e7d136d2566d.jpg", "file_size": 17835, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d48f2aa82f41ebbb24e7d136d2566d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d48f2aa82f41ebbb24e7d136d2566d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d48f2aa82f41ebbb24e7d136d2566d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97d48f2aa82f41ebbb24e7d136d2566d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97d48f2aa82f41ebbb24e7d136d2566d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjH2hm_iupj7YsO9nauz78HTr3o=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.210342+00 2025-12-09 10:15:33.210348+00 16016 FX0003-110#RC23 SPMX-20240815311226 \N \N \N 1 \N [{"file_id": "bb21d9ec-a6fb-44d1-8663-0805b058c9d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5acac740508743c6989407379ca2227c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5acac740508743c6989407379ca2227c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5acac740508743c6989407379ca2227c.jpg", "file_size": 69057, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-110#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acac740508743c6989407379ca2227c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acac740508743c6989407379ca2227c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5acac740508743c6989407379ca2227c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5acac740508743c6989407379ca2227c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5acac740508743c6989407379ca2227c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SwOAy2uRYuCbtSHc2sgF-1IpgF8=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.21286+00 2025-12-09 10:15:33.212866+00 16017 HW498670FWE#VS-D3 SPMX-20240815311232 \N \N \N 1 \N [{"file_id": "3180ab70-47c3-4095-80ca-db4687ef18a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ac4671fa5af41328b8acefdcdea3647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ac4671fa5af41328b8acefdcdea3647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ac4671fa5af41328b8acefdcdea3647.jpg", "file_size": 24647, "is_delete": false, "file_type": 1, "original_file_name": "HW498670FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac4671fa5af41328b8acefdcdea3647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac4671fa5af41328b8acefdcdea3647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac4671fa5af41328b8acefdcdea3647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ac4671fa5af41328b8acefdcdea3647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ac4671fa5af41328b8acefdcdea3647.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Plh2hpen7vL8juKeYEGFlz_bTkI=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.218018+00 2025-12-09 10:15:33.218024+00 16019 HW495720FWE#VS-D3 SPMX-20240815311221 \N \N \N 1 \N [{"file_id": "6c7cc28b-8496-4c41-a5e7-371002fe4cb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d09244ffd5141a391855e1be97e484e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d09244ffd5141a391855e1be97e484e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d09244ffd5141a391855e1be97e484e.jpg", "file_size": 11937, "is_delete": false, "file_type": 1, "original_file_name": "HW495720FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d09244ffd5141a391855e1be97e484e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d09244ffd5141a391855e1be97e484e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d09244ffd5141a391855e1be97e484e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d09244ffd5141a391855e1be97e484e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d09244ffd5141a391855e1be97e484e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlzRx5-T5npUqLlI-EcBP99Rvsg=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.2206+00 2025-12-09 10:15:33.220606+00 16020 JTSS681FW#VS-D3 SPMX-20240815311227 \N \N \N 1 \N [{"file_id": "f18a1175-e429-4ebb-ba3f-c19c7b0e5fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8f51018b2c04b18b995a311214ddd9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8f51018b2c04b18b995a311214ddd9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8f51018b2c04b18b995a311214ddd9c.jpg", "file_size": 17743, "is_delete": false, "file_type": 1, "original_file_name": "JTSS681FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f51018b2c04b18b995a311214ddd9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f51018b2c04b18b995a311214ddd9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8f51018b2c04b18b995a311214ddd9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8f51018b2c04b18b995a311214ddd9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8f51018b2c04b18b995a311214ddd9c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDwhvSSMn60jMLoU23HUbra8mGk=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.223188+00 2025-12-09 10:15:33.223194+00 16021 LZ134FWF#5号色短袖 SPMX-20240815311225 \N \N \N 1 \N [{"file_id": "1d26d425-248c-402a-85f7-af468cfaf875", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae31b5b476fb4c3ba89bad625d188858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae31b5b476fb4c3ba89bad625d188858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae31b5b476fb4c3ba89bad625d188858.jpg", "file_size": 18700, "is_delete": false, "file_type": 1, "original_file_name": "LZ134FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae31b5b476fb4c3ba89bad625d188858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae31b5b476fb4c3ba89bad625d188858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae31b5b476fb4c3ba89bad625d188858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae31b5b476fb4c3ba89bad625d188858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae31b5b476fb4c3ba89bad625d188858.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICD4mktBaPFSQq9---IHDViiqZ8=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.225772+00 2025-12-09 10:15:33.225777+00 16022 23-307#A4-领子3XL SPMX-20240815311229 \N \N \N 1 \N [{"file_id": "4ae7be0b-ec02-49cc-874e-e4b82bbf35d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72a5d490ade046a39649e672b10db77a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72a5d490ade046a39649e672b10db77a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72a5d490ade046a39649e672b10db77a.jpg", "file_size": 11824, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A4-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a5d490ade046a39649e672b10db77a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a5d490ade046a39649e672b10db77a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72a5d490ade046a39649e672b10db77a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72a5d490ade046a39649e672b10db77a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72a5d490ade046a39649e672b10db77a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0G1SeTy8po-UmfIh6sbF545Jh0=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.228498+00 2025-12-09 10:15:33.228505+00 16023 LJH1853#绿色 SPMX-20240815311228 \N \N \N 1 \N [{"file_id": "3309f641-f0bf-4d5e-bdfc-2d5f368065b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95d426d6160348e0985b0fad9c50f586.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95d426d6160348e0985b0fad9c50f586.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95d426d6160348e0985b0fad9c50f586.jpg", "file_size": 73715, "is_delete": false, "file_type": 1, "original_file_name": "LJH1853#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d426d6160348e0985b0fad9c50f586.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d426d6160348e0985b0fad9c50f586.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d426d6160348e0985b0fad9c50f586.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95d426d6160348e0985b0fad9c50f586.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95d426d6160348e0985b0fad9c50f586.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFktCeZWJH-4PsxIq8u7Xp4NXUA=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.231112+00 2025-12-09 10:15:33.231118+00 16024 CC003FW#C SPMX-20240815311230 \N \N \N 1 \N [{"file_id": "64a2e305-aedf-4065-bbc8-09f50345573c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d061e4529e04942872e1733147476b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d061e4529e04942872e1733147476b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d061e4529e04942872e1733147476b9.jpg", "file_size": 12354, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d061e4529e04942872e1733147476b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d061e4529e04942872e1733147476b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d061e4529e04942872e1733147476b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d061e4529e04942872e1733147476b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d061e4529e04942872e1733147476b9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EkY_mhZwWIvPJu4DYNRoqT6BX_8=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.233741+00 2025-12-09 10:15:33.233747+00 16025 CC003FW#D SPMX-20240815311239 \N \N \N 1 \N [{"file_id": "09228f19-74a0-4f26-853a-0258d4210098", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1ed4bddfc554245a0d8d603414da758.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1ed4bddfc554245a0d8d603414da758.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1ed4bddfc554245a0d8d603414da758.jpg", "file_size": 12564, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ed4bddfc554245a0d8d603414da758.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ed4bddfc554245a0d8d603414da758.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ed4bddfc554245a0d8d603414da758.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1ed4bddfc554245a0d8d603414da758.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1ed4bddfc554245a0d8d603414da758.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-dEy5LXBlxS9r7YjWnup1Vur9js=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.236351+00 2025-12-09 10:15:33.236357+00 16026 85020#10码+12码 SPMX-20240815311234 \N \N \N 1 \N [{"file_id": "74201232-a88f-46c1-9e0c-5c0568db8399", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c8669fe11fe48d18c320941b70895e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c8669fe11fe48d18c320941b70895e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c8669fe11fe48d18c320941b70895e2.jpg", "file_size": 18841, "is_delete": false, "file_type": 1, "original_file_name": "85020#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8669fe11fe48d18c320941b70895e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8669fe11fe48d18c320941b70895e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8669fe11fe48d18c320941b70895e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c8669fe11fe48d18c320941b70895e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c8669fe11fe48d18c320941b70895e2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sX-zm_q4AnrJhxeUXB8gS7YxaK4=", "createTime": "2024-08-15 14:59:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.238977+00 2025-12-09 10:15:33.238982+00 16027 LZ1350#上身1号色 SPMX-20240815311237 \N \N \N 1 \N [{"file_id": "8978ec64-abcb-4daa-bf3b-2422657bcef5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f50861c1ec66420f83c66c19d5e5f75e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f50861c1ec66420f83c66c19d5e5f75e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f50861c1ec66420f83c66c19d5e5f75e.jpg", "file_size": 18490, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50861c1ec66420f83c66c19d5e5f75e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50861c1ec66420f83c66c19d5e5f75e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50861c1ec66420f83c66c19d5e5f75e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f50861c1ec66420f83c66c19d5e5f75e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f50861c1ec66420f83c66c19d5e5f75e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXw0pB4XQCQkGhtVsw6_xhyi6iA=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.241546+00 2025-12-09 10:15:33.241552+00 16028 1222-1FWE#黑色匹布 SPMX-20240815311247 \N \N \N 1 \N [{"file_id": "80ca0b9a-eaf6-4553-b735-c6bf4c179728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e985ffb57944951b2f301b50f48cda9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e985ffb57944951b2f301b50f48cda9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e985ffb57944951b2f301b50f48cda9.jpg", "file_size": 15114, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e985ffb57944951b2f301b50f48cda9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e985ffb57944951b2f301b50f48cda9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e985ffb57944951b2f301b50f48cda9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e985ffb57944951b2f301b50f48cda9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e985ffb57944951b2f301b50f48cda9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JrRTs6osKXvbzQPxvgsj7GRbpWA=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.244243+00 2025-12-09 10:15:33.244248+00 16029 LJH1855#桔色 SPMX-20240815311238 \N \N \N 1 \N [{"file_id": "b9ecd951-6e98-48f5-9c8e-79d94efc11fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df8e0689621d433da3e5e5f2855a4fac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df8e0689621d433da3e5e5f2855a4fac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df8e0689621d433da3e5e5f2855a4fac.jpg", "file_size": 79448, "is_delete": false, "file_type": 1, "original_file_name": "LJH1855#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e0689621d433da3e5e5f2855a4fac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e0689621d433da3e5e5f2855a4fac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df8e0689621d433da3e5e5f2855a4fac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df8e0689621d433da3e5e5f2855a4fac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df8e0689621d433da3e5e5f2855a4fac.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xotN11_I9MqAJKM2RWkGWChkEbg=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.246841+00 2025-12-09 10:15:33.246847+00 16030 DL31391-2#草绿 SPMX-20240815311244 \N \N \N 1 \N [{"file_id": "acbf738d-8f37-4cff-beb3-7a11b38b62ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "417f570e378b49ce82584c7a24b1b7f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "417f570e378b49ce82584c7a24b1b7f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "417f570e378b49ce82584c7a24b1b7f5.jpg", "file_size": 17402, "is_delete": false, "file_type": 1, "original_file_name": "DL31391-2#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417f570e378b49ce82584c7a24b1b7f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417f570e378b49ce82584c7a24b1b7f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417f570e378b49ce82584c7a24b1b7f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/417f570e378b49ce82584c7a24b1b7f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/417f570e378b49ce82584c7a24b1b7f5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QN5MTCArUoTt-eNcwceOjy-hJiA=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.249407+00 2025-12-09 10:15:33.249413+00 16031 85020#14码 SPMX-20240815311243 \N \N \N 1 \N [{"file_id": "37d9d129-6097-40c7-829c-77345ee01631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "245419c59a38419abbd4cfb0cc951695.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "245419c59a38419abbd4cfb0cc951695.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "245419c59a38419abbd4cfb0cc951695.jpg", "file_size": 17233, "is_delete": false, "file_type": 1, "original_file_name": "85020#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245419c59a38419abbd4cfb0cc951695.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245419c59a38419abbd4cfb0cc951695.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/245419c59a38419abbd4cfb0cc951695.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/245419c59a38419abbd4cfb0cc951695.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/245419c59a38419abbd4cfb0cc951695.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSduBMLsdD4iMgdB539-ouioUlc=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.252013+00 2025-12-09 10:15:33.252019+00 16032 23-307#A4-领子4XL SPMX-20240815311240 \N \N \N 1 \N [{"file_id": "bbdcd631-31cc-4e96-9643-e2e26e2ebe61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7086b7a1a764749ae8109c3f187b5a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7086b7a1a764749ae8109c3f187b5a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7086b7a1a764749ae8109c3f187b5a4.jpg", "file_size": 12162, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A4-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7086b7a1a764749ae8109c3f187b5a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7086b7a1a764749ae8109c3f187b5a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7086b7a1a764749ae8109c3f187b5a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7086b7a1a764749ae8109c3f187b5a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7086b7a1a764749ae8109c3f187b5a4.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k36lO8jAh-Wakr-HJFw77QtBqF8=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.25463+00 2025-12-09 10:15:33.254635+00 16033 1222-1FWE#黑色XL SPMX-20240815311235 \N \N \N 1 \N [{"file_id": "469d7646-6df4-4e23-afbf-b4f23e85c392", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4caec4c2f448410f8c8c511547022d54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4caec4c2f448410f8c8c511547022d54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4caec4c2f448410f8c8c511547022d54.jpg", "file_size": 18429, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWE#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caec4c2f448410f8c8c511547022d54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caec4c2f448410f8c8c511547022d54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caec4c2f448410f8c8c511547022d54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4caec4c2f448410f8c8c511547022d54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4caec4c2f448410f8c8c511547022d54.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wIL7JXgiTbMKO8b0496abhNhjw=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.257242+00 2025-12-09 10:15:33.257249+00 16034 JTSS682FW#红VS-D3 SPMX-20240815311246 \N \N \N 1 \N [{"file_id": "2b6e8662-2af8-4ab0-8ee0-8a2fbeab5358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97e67843514644b1984e210c1fea4c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97e67843514644b1984e210c1fea4c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97e67843514644b1984e210c1fea4c32.jpg", "file_size": 13405, "is_delete": false, "file_type": 1, "original_file_name": "JTSS682FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e67843514644b1984e210c1fea4c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e67843514644b1984e210c1fea4c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97e67843514644b1984e210c1fea4c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97e67843514644b1984e210c1fea4c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97e67843514644b1984e210c1fea4c32.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2gVDZqfIEe6WaEqg5ddNiw3K90=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.259817+00 2025-12-09 10:15:33.259823+00 16035 JTSS682FW#粉VS-D3 SPMX-20240815311236 \N \N \N 1 \N [{"file_id": "a18150a9-ff81-4a5c-94dc-4d8e8d86be12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2cf3bf9a6d147eda56781c8de167c32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2cf3bf9a6d147eda56781c8de167c32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2cf3bf9a6d147eda56781c8de167c32.jpg", "file_size": 12327, "is_delete": false, "file_type": 1, "original_file_name": "JTSS682FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cf3bf9a6d147eda56781c8de167c32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cf3bf9a6d147eda56781c8de167c32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cf3bf9a6d147eda56781c8de167c32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2cf3bf9a6d147eda56781c8de167c32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2cf3bf9a6d147eda56781c8de167c32.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Q1G_x4GBM8PflLKAcGc_HGZRMc=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.262369+00 2025-12-09 10:15:33.262375+00 16036 HW499940FWE#VS-D3 SPMX-20240815311245 \N \N \N 1 \N [{"file_id": "7b54eacb-9c99-42d2-bbab-872ee3fde095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69d31c33e0924f17bc63dcf76f47f2b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69d31c33e0924f17bc63dcf76f47f2b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69d31c33e0924f17bc63dcf76f47f2b7.jpg", "file_size": 15520, "is_delete": false, "file_type": 1, "original_file_name": "HW499940FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d31c33e0924f17bc63dcf76f47f2b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d31c33e0924f17bc63dcf76f47f2b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d31c33e0924f17bc63dcf76f47f2b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69d31c33e0924f17bc63dcf76f47f2b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69d31c33e0924f17bc63dcf76f47f2b7.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YGMdSQ6eZN3LCpPvKyU9nYo0rnw=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.26529+00 2025-12-09 10:15:33.265296+00 16037 0006-7FWF#V5曲线 SPMX-20240815311241 \N \N \N 1 \N [{"file_id": "7dabdb93-072e-46b4-b721-3686617ab5a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00a99d6ee466410f9fe42c57a50156e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00a99d6ee466410f9fe42c57a50156e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00a99d6ee466410f9fe42c57a50156e6.jpg", "file_size": 20241, "is_delete": false, "file_type": 1, "original_file_name": "0006-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a99d6ee466410f9fe42c57a50156e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a99d6ee466410f9fe42c57a50156e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a99d6ee466410f9fe42c57a50156e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00a99d6ee466410f9fe42c57a50156e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00a99d6ee466410f9fe42c57a50156e6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxSOy47LdAhQoss2pAAvIj0IJWg=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.268148+00 2025-12-09 10:15:33.268154+00 16038 FX0003-110#原版色 SPMX-20240815311242 \N \N \N 1 \N [{"file_id": "b64f8829-c3d2-490f-b2a4-2404aeee3ab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76c213e0013e4efc857366643d1152bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76c213e0013e4efc857366643d1152bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76c213e0013e4efc857366643d1152bd.jpg", "file_size": 82721, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-110#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c213e0013e4efc857366643d1152bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c213e0013e4efc857366643d1152bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76c213e0013e4efc857366643d1152bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76c213e0013e4efc857366643d1152bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76c213e0013e4efc857366643d1152bd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9M4YRa6vJwyVQxvPtAavjLtHIcc=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.271068+00 2025-12-09 10:15:33.271075+00 16039 LZ1350#上身2号色 SPMX-20240815311248 \N \N \N 1 \N [{"file_id": "3ff72205-7f31-42da-9193-b15f6f0b43c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "841f8193f6154bf08d80fedff14d5e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "841f8193f6154bf08d80fedff14d5e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "841f8193f6154bf08d80fedff14d5e2a.jpg", "file_size": 18531, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f8193f6154bf08d80fedff14d5e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f8193f6154bf08d80fedff14d5e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/841f8193f6154bf08d80fedff14d5e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/841f8193f6154bf08d80fedff14d5e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/841f8193f6154bf08d80fedff14d5e2a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84f9SI7nXPTJQTFnVaV3iA1LxL8=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.273965+00 2025-12-09 10:15:33.273972+00 16040 0006-8FWE#VS-D3 SPMX-20240815311250 \N \N \N 1 \N [{"file_id": "5cdd1808-94bc-4831-b38f-11b85908028a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4760542b974040489a37f46760070a32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4760542b974040489a37f46760070a32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4760542b974040489a37f46760070a32.jpg", "file_size": 14745, "is_delete": false, "file_type": 1, "original_file_name": "0006-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4760542b974040489a37f46760070a32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4760542b974040489a37f46760070a32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4760542b974040489a37f46760070a32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4760542b974040489a37f46760070a32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4760542b974040489a37f46760070a32.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-urQyokZIYGiOJLuvWo6obpKPM=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.277109+00 2025-12-09 10:15:33.277115+00 16041 LJH1855#玫红 SPMX-20240815311251 \N \N \N 1 \N [{"file_id": "6ac58a04-0d2a-4297-9d5d-881347da3e1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf91f2ab527408799f45c089ac4f1eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf91f2ab527408799f45c089ac4f1eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf91f2ab527408799f45c089ac4f1eb.jpg", "file_size": 70239, "is_delete": false, "file_type": 1, "original_file_name": "LJH1855#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf91f2ab527408799f45c089ac4f1eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf91f2ab527408799f45c089ac4f1eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf91f2ab527408799f45c089ac4f1eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf91f2ab527408799f45c089ac4f1eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf91f2ab527408799f45c089ac4f1eb.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2FpoucC19c_kvcqBIj-dijQPXE=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.280133+00 2025-12-09 10:15:33.28014+00 16042 FX0003-110#桔色 SPMX-20240815311255 \N \N \N 1 \N [{"file_id": "901833f4-0b2e-4a9e-b9d2-89f18691596e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52a5c6a0b77849ac95bed9f30261c451.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52a5c6a0b77849ac95bed9f30261c451.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52a5c6a0b77849ac95bed9f30261c451.jpg", "file_size": 80525, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-110#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a5c6a0b77849ac95bed9f30261c451.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a5c6a0b77849ac95bed9f30261c451.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52a5c6a0b77849ac95bed9f30261c451.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52a5c6a0b77849ac95bed9f30261c451.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52a5c6a0b77849ac95bed9f30261c451.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KsX-hRHn4FWtuZ1MITJJmgIXQlw=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.283154+00 2025-12-09 10:15:33.28316+00 16043 JTSS683FW#VS-D3 SPMX-20240815311257 \N \N \N 1 \N [{"file_id": "0d9d609f-2c94-4fc7-8bf5-f107129fa1bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d59b2565def64f7e83952086534d5dcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d59b2565def64f7e83952086534d5dcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d59b2565def64f7e83952086534d5dcc.jpg", "file_size": 11338, "is_delete": false, "file_type": 1, "original_file_name": "JTSS683FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d59b2565def64f7e83952086534d5dcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d59b2565def64f7e83952086534d5dcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d59b2565def64f7e83952086534d5dcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d59b2565def64f7e83952086534d5dcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d59b2565def64f7e83952086534d5dcc.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGGI8ATCuO_GsZsXEXHBJOJ9Yl4=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.286171+00 2025-12-09 10:15:33.286178+00 16044 HW500434FWE#VS-D3 SPMX-20240815311256 \N \N \N 1 \N [{"file_id": "0528c1ef-1cda-4114-9927-b351a9181547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de54544e010c4e5d9e60ccf20c06cb2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de54544e010c4e5d9e60ccf20c06cb2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de54544e010c4e5d9e60ccf20c06cb2c.jpg", "file_size": 21388, "is_delete": false, "file_type": 1, "original_file_name": "HW500434FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de54544e010c4e5d9e60ccf20c06cb2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de54544e010c4e5d9e60ccf20c06cb2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de54544e010c4e5d9e60ccf20c06cb2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de54544e010c4e5d9e60ccf20c06cb2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de54544e010c4e5d9e60ccf20c06cb2c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhQ-SfHKq4WMA3BggeLaDooafbE=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.288881+00 2025-12-09 10:15:33.288888+00 16045 CC003FW#F SPMX-20240815311259 \N \N \N 1 \N [{"file_id": "415d733f-65c3-4e7d-834b-74aaa37398d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a32b1971943c4d0396e36481223af39e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a32b1971943c4d0396e36481223af39e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a32b1971943c4d0396e36481223af39e.jpg", "file_size": 11713, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#F.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32b1971943c4d0396e36481223af39e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32b1971943c4d0396e36481223af39e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a32b1971943c4d0396e36481223af39e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a32b1971943c4d0396e36481223af39e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a32b1971943c4d0396e36481223af39e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BYazqFg33diiZFaead5yJ62L6AY=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.291593+00 2025-12-09 10:15:33.291598+00 16046 23-307#A5-3XL SPMX-20240815311253 \N \N \N 1 \N [{"file_id": "125af0ff-55e7-44c6-836c-7811727d3de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "215912f5c6a1472eb27a7d48b1d379fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "215912f5c6a1472eb27a7d48b1d379fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "215912f5c6a1472eb27a7d48b1d379fc.jpg", "file_size": 13546, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A5-3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215912f5c6a1472eb27a7d48b1d379fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215912f5c6a1472eb27a7d48b1d379fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/215912f5c6a1472eb27a7d48b1d379fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/215912f5c6a1472eb27a7d48b1d379fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/215912f5c6a1472eb27a7d48b1d379fc.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LK2E-wyJRhv7F3IDG-rNaXiVig8=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.294833+00 2025-12-09 10:15:33.294839+00 16047 1222-1FWF#酒红2XL SPMX-20240815311258 \N \N \N 1 \N [{"file_id": "af28d70c-4ac2-45c6-88d6-3bca8577ac8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f85d1873a2ac4c87a813ae05a2a2b5bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f85d1873a2ac4c87a813ae05a2a2b5bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f85d1873a2ac4c87a813ae05a2a2b5bd.jpg", "file_size": 25510, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#酒红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d1873a2ac4c87a813ae05a2a2b5bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d1873a2ac4c87a813ae05a2a2b5bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f85d1873a2ac4c87a813ae05a2a2b5bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f85d1873a2ac4c87a813ae05a2a2b5bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f85d1873a2ac4c87a813ae05a2a2b5bd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwKVUxsxYpdrvgW470tA9OT8ar8=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.297483+00 2025-12-09 10:15:33.297489+00 16048 CC003FW#E SPMX-20240815311249 \N \N \N 1 \N [{"file_id": "03c57e71-d88f-4dae-9cfb-d86e89fe1e2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eae3864f62040faa4088a210da00a19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eae3864f62040faa4088a210da00a19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eae3864f62040faa4088a210da00a19.jpg", "file_size": 11519, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eae3864f62040faa4088a210da00a19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eae3864f62040faa4088a210da00a19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eae3864f62040faa4088a210da00a19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eae3864f62040faa4088a210da00a19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eae3864f62040faa4088a210da00a19.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfLJteB1skKKqHVv98FFusB5S7Q=", "createTime": "2024-08-15 14:59:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.299981+00 2025-12-09 10:15:33.299986+00 16049 85020#4码+8码 SPMX-20240815311252 \N \N \N 1 \N [{"file_id": "8e20bbac-a028-49ab-a8eb-cf8c20035164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "959053f8cd2d4876b8aedd65cebb15b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "959053f8cd2d4876b8aedd65cebb15b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "959053f8cd2d4876b8aedd65cebb15b2.jpg", "file_size": 18628, "is_delete": false, "file_type": 1, "original_file_name": "85020#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959053f8cd2d4876b8aedd65cebb15b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959053f8cd2d4876b8aedd65cebb15b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959053f8cd2d4876b8aedd65cebb15b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/959053f8cd2d4876b8aedd65cebb15b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/959053f8cd2d4876b8aedd65cebb15b2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QCd395Q89TdEnyi8Uv_wceiAzKA=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.30248+00 2025-12-09 10:15:33.302484+00 16050 DL31450#亮黄2XL SPMX-20240815311254 \N \N \N 1 \N [{"file_id": "fd46c5c9-bf48-4bed-b0a7-317231920417", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04afcd6ec9394bcea0e97d5d60018684.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04afcd6ec9394bcea0e97d5d60018684.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04afcd6ec9394bcea0e97d5d60018684.jpg", "file_size": 19802, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#亮黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04afcd6ec9394bcea0e97d5d60018684.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04afcd6ec9394bcea0e97d5d60018684.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04afcd6ec9394bcea0e97d5d60018684.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04afcd6ec9394bcea0e97d5d60018684.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04afcd6ec9394bcea0e97d5d60018684.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtHewdyQ0tobbl7UhlRzEerNjME=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.30492+00 2025-12-09 10:15:33.304925+00 16051 JTSS684FW#VS-D3 SPMX-20240815311261 \N \N \N 1 \N [{"file_id": "a023083c-0380-4c76-94fa-49254ee27a6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9138b260aa65410787e9d3b8314525ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9138b260aa65410787e9d3b8314525ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9138b260aa65410787e9d3b8314525ef.jpg", "file_size": 11956, "is_delete": false, "file_type": 1, "original_file_name": "JTSS684FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9138b260aa65410787e9d3b8314525ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9138b260aa65410787e9d3b8314525ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9138b260aa65410787e9d3b8314525ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9138b260aa65410787e9d3b8314525ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9138b260aa65410787e9d3b8314525ef.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BsMfZqeKxZt5oZJanF9gsbOxWXo=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.307356+00 2025-12-09 10:15:33.307361+00 16052 LZ1350#上身3号色 SPMX-20240815311262 \N \N \N 1 \N [{"file_id": "b2a8f50b-4a52-4679-a768-0a7f1bb30881", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7f0791ea14e47aea67fa5d18858e8c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7f0791ea14e47aea67fa5d18858e8c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7f0791ea14e47aea67fa5d18858e8c8.jpg", "file_size": 18786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f0791ea14e47aea67fa5d18858e8c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f0791ea14e47aea67fa5d18858e8c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7f0791ea14e47aea67fa5d18858e8c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7f0791ea14e47aea67fa5d18858e8c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7f0791ea14e47aea67fa5d18858e8c8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkkAqPg3vhw9vbcvcjp8fSNT4VI=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.309542+00 2025-12-09 10:15:33.309547+00 16053 0006-9FWE#VS-D3 SPMX-20240815311271 \N \N \N 1 \N [{"file_id": "056338e5-65b9-41f1-ae53-6348fd1c553f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c0fd0989df44f399da75ab89ac333de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c0fd0989df44f399da75ab89ac333de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c0fd0989df44f399da75ab89ac333de.jpg", "file_size": 13075, "is_delete": false, "file_type": 1, "original_file_name": "0006-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0fd0989df44f399da75ab89ac333de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0fd0989df44f399da75ab89ac333de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0fd0989df44f399da75ab89ac333de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c0fd0989df44f399da75ab89ac333de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c0fd0989df44f399da75ab89ac333de.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LKgqAyb2vtUqfkPlXGHytXW3WdU=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.311994+00 2025-12-09 10:15:33.311998+00 16054 DL31450#亮黄L SPMX-20240815311266 \N \N \N 1 \N [{"file_id": "a6b9800c-5044-4d31-a071-ecba9192d7b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26cf2e6577d64333b3e9d53b3a045f18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26cf2e6577d64333b3e9d53b3a045f18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26cf2e6577d64333b3e9d53b3a045f18.jpg", "file_size": 18769, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#亮黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cf2e6577d64333b3e9d53b3a045f18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cf2e6577d64333b3e9d53b3a045f18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26cf2e6577d64333b3e9d53b3a045f18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26cf2e6577d64333b3e9d53b3a045f18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26cf2e6577d64333b3e9d53b3a045f18.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c4A2jHMniLCJTVQGxU2gtLgs3Ac=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.314538+00 2025-12-09 10:15:33.314543+00 16055 0006-8FWF#V5曲线 SPMX-20240815311260 \N \N \N 1 \N [{"file_id": "bfb3ff61-d683-4143-b920-0f34982b85b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98da70c997fa48aca85f9a29e9bc8d65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98da70c997fa48aca85f9a29e9bc8d65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98da70c997fa48aca85f9a29e9bc8d65.jpg", "file_size": 11879, "is_delete": false, "file_type": 1, "original_file_name": "0006-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da70c997fa48aca85f9a29e9bc8d65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da70c997fa48aca85f9a29e9bc8d65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da70c997fa48aca85f9a29e9bc8d65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98da70c997fa48aca85f9a29e9bc8d65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98da70c997fa48aca85f9a29e9bc8d65.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGfRv4mJBtM2N7RiBMQX73i0lNY=", "createTime": "2024-08-15 14:59:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.317299+00 2025-12-09 10:15:33.317307+00 16056 HW500434FWE#领子2XL VS-D3 SPMX-20240815311268 \N \N \N 1 \N [{"file_id": "cc5e11c6-d062-49e4-a838-82ce78426755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5567785b64e147798b1b6f644fb604fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5567785b64e147798b1b6f644fb604fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5567785b64e147798b1b6f644fb604fe.jpg", "file_size": 9660, "is_delete": false, "file_type": 1, "original_file_name": "HW500434FWE#领子2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5567785b64e147798b1b6f644fb604fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5567785b64e147798b1b6f644fb604fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5567785b64e147798b1b6f644fb604fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5567785b64e147798b1b6f644fb604fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5567785b64e147798b1b6f644fb604fe.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0EK_YfP5R4H54hXpIcZoVabRSd0=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.320078+00 2025-12-09 10:15:33.320084+00 16057 1222-1FWF#酒红4XL SPMX-20240815311264 \N \N \N 1 \N [{"file_id": "391e5b80-e9f3-4503-92f9-7a99463f3492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82108cdf653847ac9a0c0b4aa95960d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82108cdf653847ac9a0c0b4aa95960d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82108cdf653847ac9a0c0b4aa95960d2.jpg", "file_size": 14866, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#酒红4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82108cdf653847ac9a0c0b4aa95960d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82108cdf653847ac9a0c0b4aa95960d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82108cdf653847ac9a0c0b4aa95960d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82108cdf653847ac9a0c0b4aa95960d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82108cdf653847ac9a0c0b4aa95960d2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ec4_U2PLm_t7MfVp2MFi_O4Ym20=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.322698+00 2025-12-09 10:15:33.322714+00 16058 CC003FW#G SPMX-20240815311270 \N \N \N 1 \N [{"file_id": "7febcdd5-e31c-439a-81e8-e9f90ba0a90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a07ab470a246427cb8e2cb127e6f2660.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a07ab470a246427cb8e2cb127e6f2660.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a07ab470a246427cb8e2cb127e6f2660.jpg", "file_size": 11970, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#G.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab470a246427cb8e2cb127e6f2660.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab470a246427cb8e2cb127e6f2660.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a07ab470a246427cb8e2cb127e6f2660.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a07ab470a246427cb8e2cb127e6f2660.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a07ab470a246427cb8e2cb127e6f2660.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KozMq4d1GXF2GWnMLFS6kyPUsYQ=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.325235+00 2025-12-09 10:15:33.325241+00 16059 LJH1855#白色 SPMX-20240815311265 \N \N \N 1 \N [{"file_id": "38c0a12e-9f71-418b-8730-1312b8a4cbf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e527e2d074b47d688a26e6d89607ea4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e527e2d074b47d688a26e6d89607ea4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e527e2d074b47d688a26e6d89607ea4.jpg", "file_size": 72462, "is_delete": false, "file_type": 1, "original_file_name": "LJH1855#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e527e2d074b47d688a26e6d89607ea4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e527e2d074b47d688a26e6d89607ea4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e527e2d074b47d688a26e6d89607ea4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e527e2d074b47d688a26e6d89607ea4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e527e2d074b47d688a26e6d89607ea4.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_noKErAzMRpMC2MImM1aoefJz8=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.32777+00 2025-12-09 10:15:33.327776+00 16060 FX0003-110#绿色 SPMX-20240815311269 \N \N \N 1 \N [{"file_id": "8cd89d28-6fc9-445b-8dc2-8419cc28d7fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89b8abbb46af455d89d013f4e8eb4db6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89b8abbb46af455d89d013f4e8eb4db6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89b8abbb46af455d89d013f4e8eb4db6.jpg", "file_size": 63787, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-110#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b8abbb46af455d89d013f4e8eb4db6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b8abbb46af455d89d013f4e8eb4db6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89b8abbb46af455d89d013f4e8eb4db6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89b8abbb46af455d89d013f4e8eb4db6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89b8abbb46af455d89d013f4e8eb4db6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5MFFxinjn-RbF9lEwx6yd-DRKQ=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.330416+00 2025-12-09 10:15:33.330423+00 16061 85020#6码 SPMX-20240815311263 \N \N \N 1 \N [{"file_id": "a1e87321-8332-4b35-bf2c-8c5beaeabe0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8009a313164348b38d4dbd2fa3a5d10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8009a313164348b38d4dbd2fa3a5d10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8009a313164348b38d4dbd2fa3a5d10a.jpg", "file_size": 17641, "is_delete": false, "file_type": 1, "original_file_name": "85020#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8009a313164348b38d4dbd2fa3a5d10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8009a313164348b38d4dbd2fa3a5d10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8009a313164348b38d4dbd2fa3a5d10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8009a313164348b38d4dbd2fa3a5d10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8009a313164348b38d4dbd2fa3a5d10a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3j9RyLfWc0p4ZjTKEbehrV5VZmQ=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.333042+00 2025-12-09 10:15:33.333048+00 16062 23-307#A5-4XL SPMX-20240815311267 \N \N \N 1 \N [{"file_id": "2369a7a5-871d-4656-95a0-6a7eef173540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc88f722702640288e5a04369d17abee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc88f722702640288e5a04369d17abee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc88f722702640288e5a04369d17abee.jpg", "file_size": 12782, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A5-4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88f722702640288e5a04369d17abee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88f722702640288e5a04369d17abee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88f722702640288e5a04369d17abee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc88f722702640288e5a04369d17abee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc88f722702640288e5a04369d17abee.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FviYtT5wwc4bJXXX7zDc_q6r0uI=", "createTime": "2024-08-15 14:59:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.335659+00 2025-12-09 10:15:33.335665+00 16063 LZ1350#上身5号色 SPMX-20240815311284 \N \N \N 1 \N [{"file_id": "ddcccfe3-fc60-4fbc-91cb-ffe8f63b3972", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26ed2880f79d47d39c1863c517ba185a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26ed2880f79d47d39c1863c517ba185a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26ed2880f79d47d39c1863c517ba185a.jpg", "file_size": 17145, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ed2880f79d47d39c1863c517ba185a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ed2880f79d47d39c1863c517ba185a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ed2880f79d47d39c1863c517ba185a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26ed2880f79d47d39c1863c517ba185a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26ed2880f79d47d39c1863c517ba185a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9sm0hvUUKRZ7p7seAQrzTWo4Ig=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.338263+00 2025-12-09 10:15:33.338269+00 16064 JTSS685FW#VS-D3 SPMX-20240815311272 \N \N \N 1 \N [{"file_id": "d4094b5f-bc1b-4cfb-9788-3c86cf3f5536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ce6a2f7b6a3451087c41b0b70d59ac6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ce6a2f7b6a3451087c41b0b70d59ac6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ce6a2f7b6a3451087c41b0b70d59ac6.jpg", "file_size": 11124, "is_delete": false, "file_type": 1, "original_file_name": "JTSS685FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce6a2f7b6a3451087c41b0b70d59ac6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce6a2f7b6a3451087c41b0b70d59ac6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce6a2f7b6a3451087c41b0b70d59ac6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ce6a2f7b6a3451087c41b0b70d59ac6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ce6a2f7b6a3451087c41b0b70d59ac6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygKrswdS_SJsTsmXfBwLtgaMrBI=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.340947+00 2025-12-09 10:15:33.340952+00 16065 23-307#A5-领子3XL SPMX-20240815311277 \N \N \N 1 \N [{"file_id": "72f37800-134e-4fce-bfbd-2dfe94a2bc28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "670ccdc0e90d41cbaceea15c91cd6a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "670ccdc0e90d41cbaceea15c91cd6a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "670ccdc0e90d41cbaceea15c91cd6a97.jpg", "file_size": 12373, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A5-领子3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670ccdc0e90d41cbaceea15c91cd6a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670ccdc0e90d41cbaceea15c91cd6a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670ccdc0e90d41cbaceea15c91cd6a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/670ccdc0e90d41cbaceea15c91cd6a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/670ccdc0e90d41cbaceea15c91cd6a97.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBKeaKmFjCL2nCET1BWimp-SjJc=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.343602+00 2025-12-09 10:15:33.343607+00 16066 LZ1350#上身4号色 SPMX-20240815311273 \N \N \N 1 \N [{"file_id": "b42ad7e1-0044-409c-a3af-d8bb6572e0dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg", "file_size": 17865, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f320f6c9d66648d3bb3bb3f2cdd0fd2c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fATs1UJGyzd2_gJE57t4Kr1uZXY=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.346262+00 2025-12-09 10:15:33.346267+00 16067 DL31450#亮黄XL SPMX-20240815311280 \N \N \N 1 \N [{"file_id": "ce760677-dff5-49a1-bfa3-1db2f8cf6f56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14165ba0c10645b1bf97d5b465e2cf84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14165ba0c10645b1bf97d5b465e2cf84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14165ba0c10645b1bf97d5b465e2cf84.jpg", "file_size": 19446, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#亮黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14165ba0c10645b1bf97d5b465e2cf84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14165ba0c10645b1bf97d5b465e2cf84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14165ba0c10645b1bf97d5b465e2cf84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14165ba0c10645b1bf97d5b465e2cf84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14165ba0c10645b1bf97d5b465e2cf84.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lNInHObCVweduzBniEixgIh6F3I=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.34883+00 2025-12-09 10:15:33.348835+00 16068 0006-9FWF#V5曲线 SPMX-20240815311282 \N \N \N 1 \N [{"file_id": "f618dcf2-02db-442d-ae31-81414941d645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2416598cfa7e4f9cbb90b075138dd16d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2416598cfa7e4f9cbb90b075138dd16d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2416598cfa7e4f9cbb90b075138dd16d.jpg", "file_size": 17990, "is_delete": false, "file_type": 1, "original_file_name": "0006-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2416598cfa7e4f9cbb90b075138dd16d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2416598cfa7e4f9cbb90b075138dd16d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2416598cfa7e4f9cbb90b075138dd16d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2416598cfa7e4f9cbb90b075138dd16d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2416598cfa7e4f9cbb90b075138dd16d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-_9xBFMCjqe37NEirlwiuOKov0=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.351383+00 2025-12-09 10:15:33.351389+00 16069 1222-1FWF#酒红L SPMX-20240815311274 \N \N \N 1 \N [{"file_id": "df038edd-6837-4363-92d2-07c7830a713e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f57ce20bd134320a4fc6195e8430a4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f57ce20bd134320a4fc6195e8430a4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f57ce20bd134320a4fc6195e8430a4d.jpg", "file_size": 17274, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#酒红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f57ce20bd134320a4fc6195e8430a4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f57ce20bd134320a4fc6195e8430a4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f57ce20bd134320a4fc6195e8430a4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f57ce20bd134320a4fc6195e8430a4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f57ce20bd134320a4fc6195e8430a4d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aSLQSLVOJ7fI3njRqYvYyiqgwAs=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.353964+00 2025-12-09 10:15:33.353969+00 16070 JTSS686FW#VS-D3 SPMX-20240815311283 \N \N \N 1 \N [{"file_id": "950caa3b-0035-45c5-8425-20417e7889b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg", "file_size": 6908, "is_delete": false, "file_type": 1, "original_file_name": "JTSS686FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cc26dc6ff0e4bc9912dca60c6c9cd2b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PzHO64WRcEdcVsDDkIBRORE8-Bg=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.356548+00 2025-12-09 10:15:33.356554+00 16071 HW500434FWE#领子M VS-D3 SPMX-20240815311276 \N \N \N 1 \N [{"file_id": "301bfade-2ebc-42a9-aca0-d3aa2c88b4ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8861629685142e58c20eea925ce04f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8861629685142e58c20eea925ce04f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8861629685142e58c20eea925ce04f8.jpg", "file_size": 9411, "is_delete": false, "file_type": 1, "original_file_name": "HW500434FWE#领子M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8861629685142e58c20eea925ce04f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8861629685142e58c20eea925ce04f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8861629685142e58c20eea925ce04f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8861629685142e58c20eea925ce04f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8861629685142e58c20eea925ce04f8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-uR_Jr5OMRxE5mJQqZQpCdxphU=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.359126+00 2025-12-09 10:15:33.359132+00 16072 85020#乱花 SPMX-20240815311275 \N \N \N 1 \N [{"file_id": "deea2454-fc3a-4f7d-afe3-8ad55029f5a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7a50e7be89e431b921d9a2fbc8f598a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7a50e7be89e431b921d9a2fbc8f598a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7a50e7be89e431b921d9a2fbc8f598a.jpg", "file_size": 10648, "is_delete": false, "file_type": 1, "original_file_name": "85020#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a50e7be89e431b921d9a2fbc8f598a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a50e7be89e431b921d9a2fbc8f598a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7a50e7be89e431b921d9a2fbc8f598a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7a50e7be89e431b921d9a2fbc8f598a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7a50e7be89e431b921d9a2fbc8f598a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TXnUq87hXHcabvQJcK0CcnFkHKA=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.361611+00 2025-12-09 10:15:33.361617+00 16073 LJH1855#红色 SPMX-20240815311279 \N \N \N 1 \N [{"file_id": "c71e57ae-4389-4961-ab42-16c3de7c9b60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d572deea390c46cda70d2185f9237052.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d572deea390c46cda70d2185f9237052.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d572deea390c46cda70d2185f9237052.jpg", "file_size": 81332, "is_delete": false, "file_type": 1, "original_file_name": "LJH1855#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d572deea390c46cda70d2185f9237052.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d572deea390c46cda70d2185f9237052.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d572deea390c46cda70d2185f9237052.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d572deea390c46cda70d2185f9237052.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d572deea390c46cda70d2185f9237052.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7TbV-mZqYK3y7UnmkL7rTpycRQU=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.364203+00 2025-12-09 10:15:33.364209+00 16074 CC003FW#H SPMX-20240815311281 \N \N \N 1 \N [{"file_id": "1322fc23-1966-4328-944e-a987eaf200a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59d9dbaedf6a40109387c1e22d78cc39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59d9dbaedf6a40109387c1e22d78cc39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59d9dbaedf6a40109387c1e22d78cc39.jpg", "file_size": 13345, "is_delete": false, "file_type": 1, "original_file_name": "CC003FW#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d9dbaedf6a40109387c1e22d78cc39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d9dbaedf6a40109387c1e22d78cc39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59d9dbaedf6a40109387c1e22d78cc39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59d9dbaedf6a40109387c1e22d78cc39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59d9dbaedf6a40109387c1e22d78cc39.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B796LPYmZd6-rGbYl-Jr0ceZAQQ=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.366779+00 2025-12-09 10:15:33.366786+00 16075 FX0003-110#黑色 SPMX-20240815311278 \N \N \N 1 \N [{"file_id": "bb710040-bfca-4706-b607-1473094a363e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29de0d5c297e4157a1539091c9c56329.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29de0d5c297e4157a1539091c9c56329.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29de0d5c297e4157a1539091c9c56329.jpg", "file_size": 73779, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-110#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29de0d5c297e4157a1539091c9c56329.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29de0d5c297e4157a1539091c9c56329.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29de0d5c297e4157a1539091c9c56329.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29de0d5c297e4157a1539091c9c56329.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29de0d5c297e4157a1539091c9c56329.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Twggs9hiWxAFJXnRG61NWZPooI=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.369133+00 2025-12-09 10:15:33.369139+00 16076 HW500434FWE#领子S VS-D3 SPMX-20240815311291 \N \N \N 1 \N [{"file_id": "154b4913-ed0d-41f2-ab6b-7481601581a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f3c6cb249f54fba9f9471d7891640a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f3c6cb249f54fba9f9471d7891640a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f3c6cb249f54fba9f9471d7891640a2.jpg", "file_size": 9331, "is_delete": false, "file_type": 1, "original_file_name": "HW500434FWE#领子S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3c6cb249f54fba9f9471d7891640a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3c6cb249f54fba9f9471d7891640a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3c6cb249f54fba9f9471d7891640a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f3c6cb249f54fba9f9471d7891640a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f3c6cb249f54fba9f9471d7891640a2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wADcVyhfjsng2rN77435MVqquSY=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.37172+00 2025-12-09 10:15:33.371725+00 16077 CC004FW#VS-D3 SPMX-20240815311292 \N \N \N 1 \N [{"file_id": "0cf6d3aa-a428-4069-bbe2-ac2b5325c3d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "734d20dd587841dbb0c64efab1efa957.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "734d20dd587841dbb0c64efab1efa957.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "734d20dd587841dbb0c64efab1efa957.jpg", "file_size": 12411, "is_delete": false, "file_type": 1, "original_file_name": "CC004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d20dd587841dbb0c64efab1efa957.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d20dd587841dbb0c64efab1efa957.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d20dd587841dbb0c64efab1efa957.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/734d20dd587841dbb0c64efab1efa957.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/734d20dd587841dbb0c64efab1efa957.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iU3UWcvzwXTHVwyBLCJd-PN2FM=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.374255+00 2025-12-09 10:15:33.374262+00 16078 1222-1FWF#酒红XL SPMX-20240815311285 \N \N \N 1 \N [{"file_id": "268ac40d-c756-4ab5-95d5-91baae51738b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "143b5a5c40e340e4828867695ec85252.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "143b5a5c40e340e4828867695ec85252.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "143b5a5c40e340e4828867695ec85252.jpg", "file_size": 17586, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#酒红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143b5a5c40e340e4828867695ec85252.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143b5a5c40e340e4828867695ec85252.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/143b5a5c40e340e4828867695ec85252.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/143b5a5c40e340e4828867695ec85252.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/143b5a5c40e340e4828867695ec85252.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnqmoXx55TKWcc32su-CigrOwJs=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.376814+00 2025-12-09 10:15:33.376819+00 16079 85021#14码 SPMX-20240815311296 \N \N \N 1 \N [{"file_id": "c49c08d5-732b-45e7-9fa8-97a63ca149ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9ae6a17c3564f038cb555bd95d98c20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9ae6a17c3564f038cb555bd95d98c20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9ae6a17c3564f038cb555bd95d98c20.jpg", "file_size": 20483, "is_delete": false, "file_type": 1, "original_file_name": "85021#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ae6a17c3564f038cb555bd95d98c20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ae6a17c3564f038cb555bd95d98c20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9ae6a17c3564f038cb555bd95d98c20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9ae6a17c3564f038cb555bd95d98c20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9ae6a17c3564f038cb555bd95d98c20.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vKtSOl_5PtBLUqrxQAP0FKsAlrE=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.379462+00 2025-12-09 10:15:33.379468+00 16080 FX0003-112#克底 SPMX-20240815311298 \N \N \N 1 \N [{"file_id": "22992123-404b-4a88-b69e-8afa7afc427b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b6d06744744499b79b1091010b8bdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b6d06744744499b79b1091010b8bdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b6d06744744499b79b1091010b8bdc.jpg", "file_size": 31280, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-112#克底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b6d06744744499b79b1091010b8bdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b6d06744744499b79b1091010b8bdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b6d06744744499b79b1091010b8bdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b6d06744744499b79b1091010b8bdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b6d06744744499b79b1091010b8bdc.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2jKgsbz5IG0ouBkGVBkE_KfQoY=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.382057+00 2025-12-09 10:15:33.382063+00 16081 LZ1350#童装T1号色 SPMX-20240815311297 \N \N \N 1 \N [{"file_id": "888318ad-84ad-4733-8345-c128894f671d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg", "file_size": 21543, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44dcd5cf13dc47c5a3bd93c77b35c4e5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwleq6lYaX-XjHxfQwytkYKHJqw=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.384654+00 2025-12-09 10:15:33.384661+00 16082 DL31450#亮黄后幅定位 SPMX-20240815311290 \N \N \N 1 \N [{"file_id": "3831884b-1ece-41c0-bfae-de9a4324ca4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25d17ccee5a24fb78ddc529996187b27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25d17ccee5a24fb78ddc529996187b27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25d17ccee5a24fb78ddc529996187b27.jpg", "file_size": 21882, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#亮黄后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d17ccee5a24fb78ddc529996187b27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d17ccee5a24fb78ddc529996187b27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25d17ccee5a24fb78ddc529996187b27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25d17ccee5a24fb78ddc529996187b27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25d17ccee5a24fb78ddc529996187b27.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3QpgSewubLihmeF2VQGAVxV6fk=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.387356+00 2025-12-09 10:15:33.387362+00 16083 1222-1FWF#酒红匹布 SPMX-20240815311295 \N \N \N 1 \N [{"file_id": "8e0819c8-7f0b-4668-8b94-fd0300ddbdb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a01be4972dd47b6a659eb5d92247d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a01be4972dd47b6a659eb5d92247d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a01be4972dd47b6a659eb5d92247d15.jpg", "file_size": 14270, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#酒红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01be4972dd47b6a659eb5d92247d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01be4972dd47b6a659eb5d92247d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a01be4972dd47b6a659eb5d92247d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a01be4972dd47b6a659eb5d92247d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a01be4972dd47b6a659eb5d92247d15.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bHSNLvJRek7dDClxEBWHIuSQulo=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.390018+00 2025-12-09 10:15:33.390022+00 16084 85021#10码+12码 SPMX-20240815311286 \N \N \N 1 \N [{"file_id": "5e96142a-3acb-4c3e-bb56-90c1f7440ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e309a489d90247de9966a21c34afaa0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e309a489d90247de9966a21c34afaa0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e309a489d90247de9966a21c34afaa0c.jpg", "file_size": 22137, "is_delete": false, "file_type": 1, "original_file_name": "85021#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e309a489d90247de9966a21c34afaa0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e309a489d90247de9966a21c34afaa0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e309a489d90247de9966a21c34afaa0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e309a489d90247de9966a21c34afaa0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e309a489d90247de9966a21c34afaa0c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLkMCgmKs3h-gyh6vvcQHdjVQ-0=", "createTime": "2024-08-15 14:59:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.392552+00 2025-12-09 10:15:33.392557+00 16085 23-307#A5-领子4XL SPMX-20240815311289 \N \N \N 1 \N [{"file_id": "a1e992b1-6d3f-4c54-a856-f8d5d74b4c33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fc2fa5a80074445aca7995754b987c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fc2fa5a80074445aca7995754b987c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fc2fa5a80074445aca7995754b987c3.jpg", "file_size": 11879, "is_delete": false, "file_type": 1, "original_file_name": "23-307#A5-领子4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc2fa5a80074445aca7995754b987c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc2fa5a80074445aca7995754b987c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc2fa5a80074445aca7995754b987c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fc2fa5a80074445aca7995754b987c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fc2fa5a80074445aca7995754b987c3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84_G87Inc8_dJpOS98auMyDThvM=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.395016+00 2025-12-09 10:15:33.39502+00 16086 LJH1856#双边定位宝蓝 SPMX-20240815311299 \N \N \N 1 \N [{"file_id": "e0d7086e-1858-4dea-b902-84bad0522ca2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99118a375a6d4b08b0cbe2237d6b14b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99118a375a6d4b08b0cbe2237d6b14b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99118a375a6d4b08b0cbe2237d6b14b0.jpg", "file_size": 26694, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#双边定位宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99118a375a6d4b08b0cbe2237d6b14b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99118a375a6d4b08b0cbe2237d6b14b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99118a375a6d4b08b0cbe2237d6b14b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99118a375a6d4b08b0cbe2237d6b14b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99118a375a6d4b08b0cbe2237d6b14b0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0DSLMDSMzkJfZAeO6oIbZXubLUQ=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.397198+00 2025-12-09 10:15:33.397203+00 16087 LJH1855#绿色 SPMX-20240815311287 \N \N \N 1 \N [{"file_id": "83a7ebe8-fe5b-4436-99bc-da07e71dc689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e754825de44348429befab6695d830e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e754825de44348429befab6695d830e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e754825de44348429befab6695d830e1.jpg", "file_size": 70839, "is_delete": false, "file_type": 1, "original_file_name": "LJH1855#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e754825de44348429befab6695d830e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e754825de44348429befab6695d830e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e754825de44348429befab6695d830e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e754825de44348429befab6695d830e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e754825de44348429befab6695d830e1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_SBaiijWbGeD8xdsDtZQeiVbdA=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.399654+00 2025-12-09 10:15:33.399658+00 16088 JTSS687FW#VS-D3 SPMX-20240815311294 \N \N \N 1 \N [{"file_id": "6dcd1f15-7305-4515-8c60-b2abaf2d27ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "054eea7122af48e39c9728712f115d18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "054eea7122af48e39c9728712f115d18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "054eea7122af48e39c9728712f115d18.jpg", "file_size": 12890, "is_delete": false, "file_type": 1, "original_file_name": "JTSS687FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054eea7122af48e39c9728712f115d18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054eea7122af48e39c9728712f115d18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/054eea7122af48e39c9728712f115d18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/054eea7122af48e39c9728712f115d18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/054eea7122af48e39c9728712f115d18.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mwg_YsXxOlVSNWI8kNT2z73pdgM=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.402079+00 2025-12-09 10:15:33.402083+00 16089 0006-AUS#2XL SPMX-20240815311293 \N \N \N 1 \N [{"file_id": "00c06de7-774e-4eeb-923c-57b4d51e3ea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a73fb84c43304c0e98ded8cea21f7128.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a73fb84c43304c0e98ded8cea21f7128.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a73fb84c43304c0e98ded8cea21f7128.jpg", "file_size": 17850, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73fb84c43304c0e98ded8cea21f7128.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73fb84c43304c0e98ded8cea21f7128.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73fb84c43304c0e98ded8cea21f7128.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a73fb84c43304c0e98ded8cea21f7128.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a73fb84c43304c0e98ded8cea21f7128.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zE4TIFDtJ3wzv67M-IiL6ZC7ni0=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.404281+00 2025-12-09 10:15:33.404286+00 16090 FX0003-111#RC23 SPMX-20240815311288 \N \N \N 1 \N [{"file_id": "50d613f6-c0a0-44dd-be78-41ca88882e64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ff720aa0a54596a4c5d82e98948c75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ff720aa0a54596a4c5d82e98948c75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ff720aa0a54596a4c5d82e98948c75.jpg", "file_size": 61985, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-111#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ff720aa0a54596a4c5d82e98948c75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ff720aa0a54596a4c5d82e98948c75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ff720aa0a54596a4c5d82e98948c75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ff720aa0a54596a4c5d82e98948c75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ff720aa0a54596a4c5d82e98948c75.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_W0vmKZpY8Rjy8qSnqm31yEfKo=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.417249+00 2025-12-09 10:15:33.417253+00 16095 CC005FW#VS-D3 SPMX-20240815311302 \N \N \N 1 \N [{"file_id": "0d63d856-3e60-4c33-bf9f-df91ab642f73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d60d2b8ad10f40319a713bef530c31b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d60d2b8ad10f40319a713bef530c31b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d60d2b8ad10f40319a713bef530c31b1.jpg", "file_size": 11095, "is_delete": false, "file_type": 1, "original_file_name": "CC005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60d2b8ad10f40319a713bef530c31b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60d2b8ad10f40319a713bef530c31b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d60d2b8ad10f40319a713bef530c31b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d60d2b8ad10f40319a713bef530c31b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d60d2b8ad10f40319a713bef530c31b1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdTh4_50XEn6uiyp2hBwUGZ9syw=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.406808+00 2025-12-09 10:15:33.406813+00 16091 1222-1FWF#黑色2XL SPMX-20240815311305 \N \N \N 1 \N [{"file_id": "cfa07d98-9b31-4c3e-8e9c-a3e7c9e16470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48c809dbe3864b69a42da21dbc8b30a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48c809dbe3864b69a42da21dbc8b30a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48c809dbe3864b69a42da21dbc8b30a3.jpg", "file_size": 26707, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c809dbe3864b69a42da21dbc8b30a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c809dbe3864b69a42da21dbc8b30a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c809dbe3864b69a42da21dbc8b30a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48c809dbe3864b69a42da21dbc8b30a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48c809dbe3864b69a42da21dbc8b30a3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wz8yhTd_ho2q2VdpS7HAHQZ8c4E=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.409422+00 2025-12-09 10:15:33.409428+00 16092 85021#4码+8码 SPMX-20240815311308 \N \N \N 1 \N [{"file_id": "b9af63c3-5dc8-4686-b2f5-9991a891b401", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130bde6e916a442ebfbecfca03fdfadb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130bde6e916a442ebfbecfca03fdfadb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130bde6e916a442ebfbecfca03fdfadb.jpg", "file_size": 22864, "is_delete": false, "file_type": 1, "original_file_name": "85021#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130bde6e916a442ebfbecfca03fdfadb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130bde6e916a442ebfbecfca03fdfadb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130bde6e916a442ebfbecfca03fdfadb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130bde6e916a442ebfbecfca03fdfadb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130bde6e916a442ebfbecfca03fdfadb.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:smJKG6eKQgBoV39-12rvtAf7uFg=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.412268+00 2025-12-09 10:15:33.412273+00 16093 LZ1350#童装T2号色 SPMX-20240815311307 \N \N \N 1 \N [{"file_id": "4f9b3b3b-0baf-44fa-892b-e49f5be489ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a67eb48a2ed44dba5bc403a64df38de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a67eb48a2ed44dba5bc403a64df38de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a67eb48a2ed44dba5bc403a64df38de.jpg", "file_size": 22278, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a67eb48a2ed44dba5bc403a64df38de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a67eb48a2ed44dba5bc403a64df38de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a67eb48a2ed44dba5bc403a64df38de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a67eb48a2ed44dba5bc403a64df38de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a67eb48a2ed44dba5bc403a64df38de.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XI5V3ulwZIFTwRzpFdQBku0mL-c=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.414799+00 2025-12-09 10:15:33.414804+00 16094 DL31450#亮黄袖子定位 SPMX-20240815311303 \N \N \N 1 \N [{"file_id": "d4d7c33a-122b-4289-9beb-242aeba052ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4cb454676db400188d65f296e442d62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4cb454676db400188d65f296e442d62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4cb454676db400188d65f296e442d62.jpg", "file_size": 13046, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#亮黄袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4cb454676db400188d65f296e442d62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4cb454676db400188d65f296e442d62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4cb454676db400188d65f296e442d62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4cb454676db400188d65f296e442d62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4cb454676db400188d65f296e442d62.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vATooNOxBRh-QrVc7uei11Y4ehY=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.419713+00 2025-12-09 10:15:33.419717+00 16096 HW500434FWE#领子XL VS-D3 SPMX-20240815311300 \N \N \N 1 \N [{"file_id": "db1dcd34-0a2a-4548-84b5-2dfdaa962158", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bc3444886bd4df4ab83f958a6234a94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bc3444886bd4df4ab83f958a6234a94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bc3444886bd4df4ab83f958a6234a94.jpg", "file_size": 9633, "is_delete": false, "file_type": 1, "original_file_name": "HW500434FWE#领子XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc3444886bd4df4ab83f958a6234a94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc3444886bd4df4ab83f958a6234a94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc3444886bd4df4ab83f958a6234a94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bc3444886bd4df4ab83f958a6234a94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bc3444886bd4df4ab83f958a6234a94.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBmB8CWTDiRmskEsrbOS8Zszifg=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.422093+00 2025-12-09 10:15:33.422097+00 16097 230#-定位裁-白色 SPMX-20240815311301 \N \N \N 1 \N [{"file_id": "65522e34-b583-4f94-b428-4aabfd4b07b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd72d557c7be4abb991757155928309d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd72d557c7be4abb991757155928309d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd72d557c7be4abb991757155928309d.jpg", "file_size": 62436, "is_delete": false, "file_type": 1, "original_file_name": "230#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd72d557c7be4abb991757155928309d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd72d557c7be4abb991757155928309d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd72d557c7be4abb991757155928309d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd72d557c7be4abb991757155928309d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd72d557c7be4abb991757155928309d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqjgYhNRNCuoop3SLlRgsVets5I=", "createTime": "2024-08-15 15:00:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.42428+00 2025-12-09 10:15:33.424284+00 16098 JTSS688FW#VS-D3 SPMX-20240815311306 \N \N \N 1 \N [{"file_id": "a0ec3aec-38f6-436d-b83d-d421dd96fc22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c88fb03b0fc4602b529fc8c8cf0c787.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c88fb03b0fc4602b529fc8c8cf0c787.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c88fb03b0fc4602b529fc8c8cf0c787.jpg", "file_size": 12881, "is_delete": false, "file_type": 1, "original_file_name": "JTSS688FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c88fb03b0fc4602b529fc8c8cf0c787.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c88fb03b0fc4602b529fc8c8cf0c787.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c88fb03b0fc4602b529fc8c8cf0c787.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c88fb03b0fc4602b529fc8c8cf0c787.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c88fb03b0fc4602b529fc8c8cf0c787.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJEtkI0ZDKNHBYrRxHr8cGVjjFk=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.426455+00 2025-12-09 10:15:33.426459+00 16099 0006-AUS#3XL SPMX-20240815311304 \N \N \N 1 \N [{"file_id": "996e10d3-40f6-4ead-967e-5ec63e0e6d73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ed31863b6d84694813dfe14e007a4a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ed31863b6d84694813dfe14e007a4a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ed31863b6d84694813dfe14e007a4a3.jpg", "file_size": 15189, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed31863b6d84694813dfe14e007a4a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed31863b6d84694813dfe14e007a4a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ed31863b6d84694813dfe14e007a4a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ed31863b6d84694813dfe14e007a4a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ed31863b6d84694813dfe14e007a4a3.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lL5bWy9BiJ6GohzlKjxQawZBFhc=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.428887+00 2025-12-09 10:15:33.428892+00 16100 HW501139FWE#VS-D3 SPMX-20240815311311 \N \N \N 1 \N [{"file_id": "a2b7f4a8-7250-4dc0-8e06-7028f56e6494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3457a7edd6645d0ae11f2eb7175718e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3457a7edd6645d0ae11f2eb7175718e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3457a7edd6645d0ae11f2eb7175718e.jpg", "file_size": 25220, "is_delete": false, "file_type": 1, "original_file_name": "HW501139FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3457a7edd6645d0ae11f2eb7175718e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3457a7edd6645d0ae11f2eb7175718e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3457a7edd6645d0ae11f2eb7175718e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3457a7edd6645d0ae11f2eb7175718e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3457a7edd6645d0ae11f2eb7175718e.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cr77FrG1xmF9rozofxg5kQpNE4=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.431343+00 2025-12-09 10:15:33.431348+00 16101 1222-1FWF#黑色4XL SPMX-20240815311315 \N \N \N 1 \N [{"file_id": "d2cf4468-afbc-4aeb-808a-2c4af0ec6935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b787a7e39274a8d9e6855f68ef4e658.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b787a7e39274a8d9e6855f68ef4e658.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b787a7e39274a8d9e6855f68ef4e658.jpg", "file_size": 16072, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#黑色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b787a7e39274a8d9e6855f68ef4e658.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b787a7e39274a8d9e6855f68ef4e658.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b787a7e39274a8d9e6855f68ef4e658.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b787a7e39274a8d9e6855f68ef4e658.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b787a7e39274a8d9e6855f68ef4e658.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJASrccdCbAa_q5PjaRXc0QMkeI=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.433656+00 2025-12-09 10:15:33.433663+00 16102 0006-AUS#L SPMX-20240815311316 \N \N \N 1 \N [{"file_id": "844cfd72-bf52-4afb-b0e3-51ef1ba49e6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b1d4b3d98354703b9cca15abf1474a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b1d4b3d98354703b9cca15abf1474a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b1d4b3d98354703b9cca15abf1474a0.jpg", "file_size": 16158, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b1d4b3d98354703b9cca15abf1474a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b1d4b3d98354703b9cca15abf1474a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b1d4b3d98354703b9cca15abf1474a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b1d4b3d98354703b9cca15abf1474a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b1d4b3d98354703b9cca15abf1474a0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FwoFD5YsmaF0rQNfmve6jDc0fo=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.436395+00 2025-12-09 10:15:33.4364+00 16103 230#-定位裁-粉色 SPMX-20240815311310 \N \N \N 1 \N [{"file_id": "bdba7618-fb9b-4d77-baca-48f9a2858986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce12297d06454249b9ec376d4ec41828.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce12297d06454249b9ec376d4ec41828.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce12297d06454249b9ec376d4ec41828.jpg", "file_size": 58203, "is_delete": false, "file_type": 1, "original_file_name": "230#-定位裁-粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12297d06454249b9ec376d4ec41828.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12297d06454249b9ec376d4ec41828.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce12297d06454249b9ec376d4ec41828.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce12297d06454249b9ec376d4ec41828.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce12297d06454249b9ec376d4ec41828.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hOFzFUrm8BD9hHc5iFsgZvKl2ck=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.438936+00 2025-12-09 10:15:33.438941+00 16104 DL31450#彩兰2XL SPMX-20240815311314 \N \N \N 1 \N [{"file_id": "5d544f2b-a7a1-419f-921b-95c6d5f6797a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d726ddf1fbd4b7485c5062a4cfda226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d726ddf1fbd4b7485c5062a4cfda226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d726ddf1fbd4b7485c5062a4cfda226.jpg", "file_size": 19706, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d726ddf1fbd4b7485c5062a4cfda226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d726ddf1fbd4b7485c5062a4cfda226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d726ddf1fbd4b7485c5062a4cfda226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d726ddf1fbd4b7485c5062a4cfda226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d726ddf1fbd4b7485c5062a4cfda226.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lf6aTE22celr7vHs2MHOMrgwr8o=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.441382+00 2025-12-09 10:15:33.441386+00 16105 LJH1856#双边定位橙色 SPMX-20240815311313 \N \N \N 1 \N [{"file_id": "01d78654-0389-4322-9fd0-6e0ec751a6e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dc7b1ef6bd74940b5229478afcaf5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dc7b1ef6bd74940b5229478afcaf5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dc7b1ef6bd74940b5229478afcaf5cb.jpg", "file_size": 26651, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#双边定位橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc7b1ef6bd74940b5229478afcaf5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc7b1ef6bd74940b5229478afcaf5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc7b1ef6bd74940b5229478afcaf5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dc7b1ef6bd74940b5229478afcaf5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dc7b1ef6bd74940b5229478afcaf5cb.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hz8j0RsxNIY38fDfmKdTq86HuUU=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.443586+00 2025-12-09 10:15:33.44359+00 16106 85021#6码 SPMX-20240815311318 \N \N \N 1 \N [{"file_id": "6012796f-0542-44fe-a89c-6e2f1f0ae120", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c15ea5d78d6e423589c13148ef5cd6e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c15ea5d78d6e423589c13148ef5cd6e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c15ea5d78d6e423589c13148ef5cd6e1.jpg", "file_size": 21846, "is_delete": false, "file_type": 1, "original_file_name": "85021#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15ea5d78d6e423589c13148ef5cd6e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15ea5d78d6e423589c13148ef5cd6e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15ea5d78d6e423589c13148ef5cd6e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c15ea5d78d6e423589c13148ef5cd6e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c15ea5d78d6e423589c13148ef5cd6e1.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-1IaAiR0NNgVYB6I5FbKFkJR5Ng=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.446001+00 2025-12-09 10:15:33.446006+00 16107 LZ1350#童装T3号色 SPMX-20240815311319 \N \N \N 1 \N [{"file_id": "07955c40-7c9f-464b-ba3c-82c319a27076", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0554dbc42444b13895bc01364d9ef50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0554dbc42444b13895bc01364d9ef50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0554dbc42444b13895bc01364d9ef50.jpg", "file_size": 21980, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0554dbc42444b13895bc01364d9ef50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0554dbc42444b13895bc01364d9ef50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0554dbc42444b13895bc01364d9ef50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0554dbc42444b13895bc01364d9ef50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0554dbc42444b13895bc01364d9ef50.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mPFefB2_iI6FtFBQjcbuDNYs_a0=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.448414+00 2025-12-09 10:15:33.448419+00 16108 FX0003-113#RC23 SPMX-20240815311309 \N \N \N 1 \N [{"file_id": "4354d8fb-6c73-49db-be8a-1767192ff318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84dea51d1bb84dab8d3af16564de2396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84dea51d1bb84dab8d3af16564de2396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84dea51d1bb84dab8d3af16564de2396.jpg", "file_size": 74999, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-113#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dea51d1bb84dab8d3af16564de2396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dea51d1bb84dab8d3af16564de2396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84dea51d1bb84dab8d3af16564de2396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84dea51d1bb84dab8d3af16564de2396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84dea51d1bb84dab8d3af16564de2396.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmjfdeQ3V04KZqY8-rZp4Xd5yqU=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.450634+00 2025-12-09 10:15:33.450638+00 16109 CC006FW#VS-D3 SPMX-20240815311312 \N \N \N 1 \N [{"file_id": "048dd8c6-eade-448c-a3bb-ac6b83022f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03f7642118a846439fb5f0b2e718237a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03f7642118a846439fb5f0b2e718237a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03f7642118a846439fb5f0b2e718237a.jpg", "file_size": 8501, "is_delete": false, "file_type": 1, "original_file_name": "CC006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f7642118a846439fb5f0b2e718237a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f7642118a846439fb5f0b2e718237a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f7642118a846439fb5f0b2e718237a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03f7642118a846439fb5f0b2e718237a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03f7642118a846439fb5f0b2e718237a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2X6A8E9yGeQmLyL7YPMWFYynW4=", "createTime": "2024-08-15 15:00:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.453042+00 2025-12-09 10:15:33.453047+00 16110 JTSS689FW#VS-D3 SPMX-20240815311317 \N \N \N 1 \N [{"file_id": "3d39eb66-979c-4139-9664-eea98ba7a90e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5548359ab0d445b59aafac6df6d3aa32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5548359ab0d445b59aafac6df6d3aa32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5548359ab0d445b59aafac6df6d3aa32.jpg", "file_size": 8216, "is_delete": false, "file_type": 1, "original_file_name": "JTSS689FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5548359ab0d445b59aafac6df6d3aa32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5548359ab0d445b59aafac6df6d3aa32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5548359ab0d445b59aafac6df6d3aa32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5548359ab0d445b59aafac6df6d3aa32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5548359ab0d445b59aafac6df6d3aa32.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kj6DIGIBi8bxzt1LspaZIj5D-Zo=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.455436+00 2025-12-09 10:15:33.455441+00 16111 HW501669FWE#VS-D3 SPMX-20240815311323 \N \N \N 1 \N [{"file_id": "25a18950-f19b-4268-9680-b13562f0a284", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "083302494ff0452daff16b5c1ec4c721.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "083302494ff0452daff16b5c1ec4c721.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "083302494ff0452daff16b5c1ec4c721.jpg", "file_size": 18300, "is_delete": false, "file_type": 1, "original_file_name": "HW501669FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083302494ff0452daff16b5c1ec4c721.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083302494ff0452daff16b5c1ec4c721.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083302494ff0452daff16b5c1ec4c721.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/083302494ff0452daff16b5c1ec4c721.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/083302494ff0452daff16b5c1ec4c721.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlQ7vKk3MuYx1haNPh6nCd4HnLA=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.45775+00 2025-12-09 10:15:33.457757+00 16112 DL31450#彩兰L SPMX-20240815311327 \N \N \N 1 \N [{"file_id": "94638870-a791-4777-9d72-034d787d3610", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62fb3bd7205b41299f8ca1dc9f68fe9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62fb3bd7205b41299f8ca1dc9f68fe9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62fb3bd7205b41299f8ca1dc9f68fe9a.jpg", "file_size": 19010, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb3bd7205b41299f8ca1dc9f68fe9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb3bd7205b41299f8ca1dc9f68fe9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62fb3bd7205b41299f8ca1dc9f68fe9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62fb3bd7205b41299f8ca1dc9f68fe9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62fb3bd7205b41299f8ca1dc9f68fe9a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcLCN93H4GTLQ26AcqzXJNDwfos=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.460524+00 2025-12-09 10:15:33.460529+00 16113 230#-定位裁-黑色 SPMX-20240815311322 \N \N \N 1 \N [{"file_id": "c95aa527-9800-4c03-a51a-6037bab6d71b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d08326a116f4adda72a1afed9e6a5ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d08326a116f4adda72a1afed9e6a5ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d08326a116f4adda72a1afed9e6a5ac.jpg", "file_size": 60362, "is_delete": false, "file_type": 1, "original_file_name": "230#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d08326a116f4adda72a1afed9e6a5ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d08326a116f4adda72a1afed9e6a5ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d08326a116f4adda72a1afed9e6a5ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d08326a116f4adda72a1afed9e6a5ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d08326a116f4adda72a1afed9e6a5ac.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LuDCdj3DQPqyFyU6EPW-hiPJqLw=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.463007+00 2025-12-09 10:15:33.463012+00 16114 LJH1856#双边定位白色 SPMX-20240815311324 \N \N \N 1 \N [{"file_id": "4e035030-d1c1-4c60-8acb-e596a43b3b68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb6b98f61e6e47f4bdc019bb366684a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb6b98f61e6e47f4bdc019bb366684a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb6b98f61e6e47f4bdc019bb366684a6.jpg", "file_size": 27222, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#双边定位白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb6b98f61e6e47f4bdc019bb366684a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb6b98f61e6e47f4bdc019bb366684a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb6b98f61e6e47f4bdc019bb366684a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb6b98f61e6e47f4bdc019bb366684a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb6b98f61e6e47f4bdc019bb366684a6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nF_9V4QwF_alJvOMXWSVNL5_5M=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.46543+00 2025-12-09 10:15:33.465434+00 16115 JTSS690FW#VS-D3 SPMX-20240815311328 \N \N \N 1 \N [{"file_id": "5342e89a-f154-4f94-a82c-7aba144d1758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80cf8caa39134a798c066f0ae5a98e74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80cf8caa39134a798c066f0ae5a98e74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80cf8caa39134a798c066f0ae5a98e74.jpg", "file_size": 12791, "is_delete": false, "file_type": 1, "original_file_name": "JTSS690FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80cf8caa39134a798c066f0ae5a98e74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80cf8caa39134a798c066f0ae5a98e74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80cf8caa39134a798c066f0ae5a98e74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80cf8caa39134a798c066f0ae5a98e74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80cf8caa39134a798c066f0ae5a98e74.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmluhRqAsGUleZBv0SNDPz52CA4=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.46762+00 2025-12-09 10:15:33.467624+00 16116 LZ1350#童装T4号色 SPMX-20240815311330 \N \N \N 1 \N [{"file_id": "f34c5a17-cdbc-438f-b1fd-3a68d693eb64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a68f3c35b1e4444bb45839d339d9e14d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a68f3c35b1e4444bb45839d339d9e14d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a68f3c35b1e4444bb45839d339d9e14d.jpg", "file_size": 22368, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a68f3c35b1e4444bb45839d339d9e14d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a68f3c35b1e4444bb45839d339d9e14d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a68f3c35b1e4444bb45839d339d9e14d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a68f3c35b1e4444bb45839d339d9e14d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a68f3c35b1e4444bb45839d339d9e14d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msY2zCVhDdHVT8n4PF7W04pyi6o=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.470073+00 2025-12-09 10:15:33.470078+00 16117 CC007FW#VS-D3 SPMX-20240815311321 \N \N \N 1 \N [{"file_id": "64b8e863-d4bc-478d-97a7-c375e604a140", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bb45295df0c45468d8c50d62fc613c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bb45295df0c45468d8c50d62fc613c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bb45295df0c45468d8c50d62fc613c0.jpg", "file_size": 10445, "is_delete": false, "file_type": 1, "original_file_name": "CC007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb45295df0c45468d8c50d62fc613c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb45295df0c45468d8c50d62fc613c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bb45295df0c45468d8c50d62fc613c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bb45295df0c45468d8c50d62fc613c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bb45295df0c45468d8c50d62fc613c0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-AwishMv-IN14xUjQ7dPDEalyo=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.472397+00 2025-12-09 10:15:33.472401+00 16118 FX0003-114#RC23 SPMX-20240815311320 \N \N \N 1 \N [{"file_id": "b6e89c86-d04d-4060-aefb-2c66b370088d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f791239f0df24e9fab3d0aa04502bac0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f791239f0df24e9fab3d0aa04502bac0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f791239f0df24e9fab3d0aa04502bac0.jpg", "file_size": 66449, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-114#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f791239f0df24e9fab3d0aa04502bac0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f791239f0df24e9fab3d0aa04502bac0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f791239f0df24e9fab3d0aa04502bac0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f791239f0df24e9fab3d0aa04502bac0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f791239f0df24e9fab3d0aa04502bac0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JpA21u1D_9zj7SGduOxdcR36Xg=", "createTime": "2024-08-15 15:00:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.474712+00 2025-12-09 10:15:33.474717+00 16119 0006-AUS#M SPMX-20240815311325 \N \N \N 1 \N [{"file_id": "a2ea74ea-0ed5-4115-a840-f9cd2d9356b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e547f1acc44647028c77ce9db9d39761.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e547f1acc44647028c77ce9db9d39761.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e547f1acc44647028c77ce9db9d39761.jpg", "file_size": 16009, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e547f1acc44647028c77ce9db9d39761.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e547f1acc44647028c77ce9db9d39761.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e547f1acc44647028c77ce9db9d39761.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e547f1acc44647028c77ce9db9d39761.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e547f1acc44647028c77ce9db9d39761.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nXkzUq2ALKNvdMf3DyesE9gxeI=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.477139+00 2025-12-09 10:15:33.477144+00 16120 85021#乱花 SPMX-20240815311326 \N \N \N 1 \N [{"file_id": "149a0a0a-944c-4253-ab21-833750a4d163", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db44e905379d4e6d83dd191c884fbced.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db44e905379d4e6d83dd191c884fbced.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db44e905379d4e6d83dd191c884fbced.jpg", "file_size": 12654, "is_delete": false, "file_type": 1, "original_file_name": "85021#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db44e905379d4e6d83dd191c884fbced.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db44e905379d4e6d83dd191c884fbced.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db44e905379d4e6d83dd191c884fbced.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db44e905379d4e6d83dd191c884fbced.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db44e905379d4e6d83dd191c884fbced.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pRIbIK6jOgShjGzLqYOLS-hT3Fs=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.479526+00 2025-12-09 10:15:33.47953+00 16121 0006-AUS#S SPMX-20240815311334 \N \N \N 1 \N [{"file_id": "079447d4-b84b-44ff-a1f0-e48a4fd3634a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3a43dea0ecf4ef188f61e902434de07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3a43dea0ecf4ef188f61e902434de07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3a43dea0ecf4ef188f61e902434de07.jpg", "file_size": 15155, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a43dea0ecf4ef188f61e902434de07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a43dea0ecf4ef188f61e902434de07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a43dea0ecf4ef188f61e902434de07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3a43dea0ecf4ef188f61e902434de07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3a43dea0ecf4ef188f61e902434de07.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CuDmoU4E-Ir3gzeDFrj9Hce3kFM=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.481877+00 2025-12-09 10:15:33.481884+00 16122 LZ1350#童装T5号色 SPMX-20240815311340 \N \N \N 1 \N [{"file_id": "533e0143-e659-463a-b952-d5eb762932fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67303f95d3f442e0a08c7d6343d1a8b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67303f95d3f442e0a08c7d6343d1a8b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67303f95d3f442e0a08c7d6343d1a8b7.jpg", "file_size": 20243, "is_delete": false, "file_type": 1, "original_file_name": "LZ1350#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67303f95d3f442e0a08c7d6343d1a8b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67303f95d3f442e0a08c7d6343d1a8b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67303f95d3f442e0a08c7d6343d1a8b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67303f95d3f442e0a08c7d6343d1a8b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67303f95d3f442e0a08c7d6343d1a8b7.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-7mc2WnoEYCU4u_WK3IFXn1-s8=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.484563+00 2025-12-09 10:15:33.484568+00 16123 1222-1FWF#黑色XL SPMX-20240815311341 \N \N \N 1 \N [{"file_id": "968cdc49-2f22-4060-b3a8-274114af8ed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37bdfd5058754094b2034f3218e2bff8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37bdfd5058754094b2034f3218e2bff8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37bdfd5058754094b2034f3218e2bff8.jpg", "file_size": 18299, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bdfd5058754094b2034f3218e2bff8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bdfd5058754094b2034f3218e2bff8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37bdfd5058754094b2034f3218e2bff8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37bdfd5058754094b2034f3218e2bff8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37bdfd5058754094b2034f3218e2bff8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OLcC0RzqAjBkcoV47asEFoLNQv4=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.487194+00 2025-12-09 10:15:33.487201+00 16124 85022#10码+12码 SPMX-20240815311337 \N \N \N 1 \N [{"file_id": "57f4a2f4-5fcb-4774-8ffc-e473f34884f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5a9f49e45ed48869c434faaea960779.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5a9f49e45ed48869c434faaea960779.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5a9f49e45ed48869c434faaea960779.jpg", "file_size": 17330, "is_delete": false, "file_type": 1, "original_file_name": "85022#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a9f49e45ed48869c434faaea960779.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a9f49e45ed48869c434faaea960779.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a9f49e45ed48869c434faaea960779.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5a9f49e45ed48869c434faaea960779.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5a9f49e45ed48869c434faaea960779.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KSTlyhS8HBQEp2TwN3RHd4-RKVo=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.489719+00 2025-12-09 10:15:33.489725+00 16125 HW505054FWE#VS-D3 SPMX-20240815311336 \N \N \N 1 \N [{"file_id": "97843f21-803c-4851-9abc-a8fb65701b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc005b2abf7f4f0ab95169cde8d82285.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc005b2abf7f4f0ab95169cde8d82285.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc005b2abf7f4f0ab95169cde8d82285.jpg", "file_size": 22639, "is_delete": false, "file_type": 1, "original_file_name": "HW505054FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc005b2abf7f4f0ab95169cde8d82285.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc005b2abf7f4f0ab95169cde8d82285.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc005b2abf7f4f0ab95169cde8d82285.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc005b2abf7f4f0ab95169cde8d82285.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc005b2abf7f4f0ab95169cde8d82285.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olE8pX_JVH3DdGCGg30cYRg1zqY=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.492107+00 2025-12-09 10:15:33.492114+00 16126 DL31450#彩兰XL SPMX-20240815311339 \N \N \N 1 \N [{"file_id": "1438c77e-c5e5-4d22-9386-dc27370af16a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "441ba48b4ffb44db9dd527d3d1aab0ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "441ba48b4ffb44db9dd527d3d1aab0ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "441ba48b4ffb44db9dd527d3d1aab0ea.jpg", "file_size": 18665, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441ba48b4ffb44db9dd527d3d1aab0ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441ba48b4ffb44db9dd527d3d1aab0ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441ba48b4ffb44db9dd527d3d1aab0ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/441ba48b4ffb44db9dd527d3d1aab0ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/441ba48b4ffb44db9dd527d3d1aab0ea.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pilurSuKYL5LP-dFAJFMQr8RLlc=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.494664+00 2025-12-09 10:15:33.494669+00 16127 FX0003-115#RC23 SPMX-20240815311331 \N \N \N 1 \N [{"file_id": "78170d42-aa82-400b-8c19-458c6a69ba24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c089045cfb974891af4d7dccead0e62b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c089045cfb974891af4d7dccead0e62b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c089045cfb974891af4d7dccead0e62b.jpg", "file_size": 76450, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-115#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c089045cfb974891af4d7dccead0e62b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c089045cfb974891af4d7dccead0e62b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c089045cfb974891af4d7dccead0e62b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c089045cfb974891af4d7dccead0e62b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c089045cfb974891af4d7dccead0e62b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:apokRvtW2dE-ikSy4oMDHlrf0U0=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.49726+00 2025-12-09 10:15:33.497266+00 16128 LJH1856#双边定位黑色 SPMX-20240815311335 \N \N \N 1 \N [{"file_id": "81b8fda8-d6f8-4891-8323-556810317c57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add5e34a0bce43f38ade795e22e9f8d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add5e34a0bce43f38ade795e22e9f8d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add5e34a0bce43f38ade795e22e9f8d6.jpg", "file_size": 27871, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#双边定位黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5e34a0bce43f38ade795e22e9f8d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5e34a0bce43f38ade795e22e9f8d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5e34a0bce43f38ade795e22e9f8d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add5e34a0bce43f38ade795e22e9f8d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add5e34a0bce43f38ade795e22e9f8d6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKq0kzqbemGBZlM8hV03Tdm9oeU=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.499821+00 2025-12-09 10:15:33.499827+00 16129 1222-1FWF#黑色L SPMX-20240815311329 \N \N \N 1 \N [{"file_id": "0073dccd-c12d-4d27-b0be-fdc556113431", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg", "file_size": 17688, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ac9d77b8a6e4fcda6a57c0c53132ad9.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OzTPGJR9pSPxIYMKHJhTlTevktc=", "createTime": "2024-08-15 15:00:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.502211+00 2025-12-09 10:15:33.502217+00 16130 CC008FW#VS-D3 SPMX-20240815311332 \N \N \N 1 \N [{"file_id": "a84b8aa7-b2bc-42f7-89f2-0bdfe6a3f1fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a144b11a7424a98bcc64e44cce9db6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a144b11a7424a98bcc64e44cce9db6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a144b11a7424a98bcc64e44cce9db6a.jpg", "file_size": 11943, "is_delete": false, "file_type": 1, "original_file_name": "CC008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a144b11a7424a98bcc64e44cce9db6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a144b11a7424a98bcc64e44cce9db6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a144b11a7424a98bcc64e44cce9db6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a144b11a7424a98bcc64e44cce9db6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a144b11a7424a98bcc64e44cce9db6a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTgWabIOONzD834FqXzOPv5iW9M=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.504833+00 2025-12-09 10:15:33.50484+00 16131 JTSS691FW#VS-D3 SPMX-20240815311338 \N \N \N 1 \N [{"file_id": "a09a7fea-4549-4095-a67b-2624cc510013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "115e0872b03d4a0db4539958faa19174.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "115e0872b03d4a0db4539958faa19174.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "115e0872b03d4a0db4539958faa19174.jpg", "file_size": 32238, "is_delete": false, "file_type": 1, "original_file_name": "JTSS691FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115e0872b03d4a0db4539958faa19174.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115e0872b03d4a0db4539958faa19174.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115e0872b03d4a0db4539958faa19174.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/115e0872b03d4a0db4539958faa19174.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/115e0872b03d4a0db4539958faa19174.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kAZ0b74IrwHrueXvzNi4l2jd4jM=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.507666+00 2025-12-09 10:15:33.507671+00 16132 230113#WJC22 SPMX-20240815311333 \N \N \N 1 \N [{"file_id": "ff35c66e-bb36-4c5f-abe9-524700d3b884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6858953cca44488daafce1d143062a37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6858953cca44488daafce1d143062a37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6858953cca44488daafce1d143062a37.jpg", "file_size": 19095, "is_delete": false, "file_type": 1, "original_file_name": "230113#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6858953cca44488daafce1d143062a37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6858953cca44488daafce1d143062a37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6858953cca44488daafce1d143062a37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6858953cca44488daafce1d143062a37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6858953cca44488daafce1d143062a37.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNAOo2VUOaYVaHDh6c_GVZuWSAU=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.510496+00 2025-12-09 10:15:33.510502+00 16133 CC093FW#2XL白 SPMX-20240815311343 \N \N \N 1 \N [{"file_id": "2dfd5f0c-badf-461b-bf13-33cefad9529c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "502f9013d9d04667a6acfd04ddc7d5d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "502f9013d9d04667a6acfd04ddc7d5d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "502f9013d9d04667a6acfd04ddc7d5d7.jpg", "file_size": 13273, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#2XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502f9013d9d04667a6acfd04ddc7d5d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502f9013d9d04667a6acfd04ddc7d5d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/502f9013d9d04667a6acfd04ddc7d5d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/502f9013d9d04667a6acfd04ddc7d5d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/502f9013d9d04667a6acfd04ddc7d5d7.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKXhpcnijZzd_9iETlJVpkbGGa0=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.513289+00 2025-12-09 10:15:33.513295+00 16134 FX0003-116#RC23 SPMX-20240815311344 \N \N \N 1 \N [{"file_id": "46f2e35d-ad6f-434b-be68-0292f627a88f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6f408fdd37c4735846c6dac49b999cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6f408fdd37c4735846c6dac49b999cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6f408fdd37c4735846c6dac49b999cd.jpg", "file_size": 58367, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-116#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f408fdd37c4735846c6dac49b999cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f408fdd37c4735846c6dac49b999cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f408fdd37c4735846c6dac49b999cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6f408fdd37c4735846c6dac49b999cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6f408fdd37c4735846c6dac49b999cd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MhZyhnUmEJEwj0xuMAz2v_pEk2s=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.516124+00 2025-12-09 10:15:33.51613+00 16135 85022#14码 SPMX-20240815311349 \N \N \N 1 \N [{"file_id": "7dc66d30-b99a-4dac-a2b3-5b83bd456e84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dade33543e794df5842f85ac6fd3c3ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dade33543e794df5842f85ac6fd3c3ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dade33543e794df5842f85ac6fd3c3ef.jpg", "file_size": 16492, "is_delete": false, "file_type": 1, "original_file_name": "85022#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade33543e794df5842f85ac6fd3c3ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade33543e794df5842f85ac6fd3c3ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dade33543e794df5842f85ac6fd3c3ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dade33543e794df5842f85ac6fd3c3ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dade33543e794df5842f85ac6fd3c3ef.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vyIP489BsIK1txtkHDtdEefKo7k=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.518904+00 2025-12-09 10:15:33.51891+00 16136 HWS1847703#M SPMX-20240815311346 \N \N \N 1 \N [{"file_id": "e307c994-0671-404c-9b83-e3880d793147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ad0012d41a4df48085fb083d825403.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ad0012d41a4df48085fb083d825403.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ad0012d41a4df48085fb083d825403.jpg", "file_size": 11660, "is_delete": false, "file_type": 1, "original_file_name": "HWS1847703#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad0012d41a4df48085fb083d825403.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad0012d41a4df48085fb083d825403.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad0012d41a4df48085fb083d825403.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ad0012d41a4df48085fb083d825403.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ad0012d41a4df48085fb083d825403.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXG6eTVh9dOaCZzF6upVjT1FhpU=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.521701+00 2025-12-09 10:15:33.521713+00 16137 0006-AUS#XL SPMX-20240815311345 \N \N \N 1 \N [{"file_id": "0d2ff09c-38c3-4742-8689-7571a7e3286a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c746047a127b4e7e9961d02942097fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c746047a127b4e7e9961d02942097fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c746047a127b4e7e9961d02942097fad.jpg", "file_size": 17056, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c746047a127b4e7e9961d02942097fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c746047a127b4e7e9961d02942097fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c746047a127b4e7e9961d02942097fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c746047a127b4e7e9961d02942097fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c746047a127b4e7e9961d02942097fad.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eX7uROqMJ_JW9MIdO9qBp7GstSs=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.524507+00 2025-12-09 10:15:33.524514+00 16138 LJH1856#花色宝蓝 SPMX-20240815311347 \N \N \N 1 \N [{"file_id": "04b119a2-a128-4f73-8cf6-63b8799e0ffc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8273d1bcccb43089a4ec34979c7071a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8273d1bcccb43089a4ec34979c7071a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8273d1bcccb43089a4ec34979c7071a.jpg", "file_size": 53529, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#花色宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8273d1bcccb43089a4ec34979c7071a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8273d1bcccb43089a4ec34979c7071a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8273d1bcccb43089a4ec34979c7071a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8273d1bcccb43089a4ec34979c7071a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8273d1bcccb43089a4ec34979c7071a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QjFqUjN_ebWIr1g1uoDI-EpeP0=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.527287+00 2025-12-09 10:15:33.527293+00 16139 JTSS692FW#VS-D3 SPMX-20240815311348 \N \N \N 1 \N [{"file_id": "c4f07ae2-e494-4241-af1d-da1fee1f2917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c306286e2ba49669c6160b44d8b2b7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c306286e2ba49669c6160b44d8b2b7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c306286e2ba49669c6160b44d8b2b7a.jpg", "file_size": 11515, "is_delete": false, "file_type": 1, "original_file_name": "JTSS692FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c306286e2ba49669c6160b44d8b2b7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c306286e2ba49669c6160b44d8b2b7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c306286e2ba49669c6160b44d8b2b7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c306286e2ba49669c6160b44d8b2b7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c306286e2ba49669c6160b44d8b2b7a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d99Ojb89pq_nH35KzdQ9G3LGqCo=", "createTime": "2024-08-15 15:00:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.530099+00 2025-12-09 10:15:33.530105+00 16140 230115#A1 SPMX-20240815311342 \N \N \N 1 \N [{"file_id": "0025110d-4aa8-4541-9e81-41cd764a582d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c997f3bc5de546d9a60f798642012260.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c997f3bc5de546d9a60f798642012260.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c997f3bc5de546d9a60f798642012260.jpg", "file_size": 19483, "is_delete": false, "file_type": 1, "original_file_name": "230115#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c997f3bc5de546d9a60f798642012260.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c997f3bc5de546d9a60f798642012260.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c997f3bc5de546d9a60f798642012260.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c997f3bc5de546d9a60f798642012260.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c997f3bc5de546d9a60f798642012260.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeQkuy5mbUVmTrK0R28IloqCoyk=", "createTime": "2024-08-15 15:00:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.532941+00 2025-12-09 10:15:33.532949+00 16141 JTSS693FW#VS-D3 SPMX-20240815311360 \N \N \N 1 \N [{"file_id": "f9821517-6a36-4d97-9a23-aca1e1981fc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcf3e169bc764f4487eb1f810be83011.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcf3e169bc764f4487eb1f810be83011.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcf3e169bc764f4487eb1f810be83011.jpg", "file_size": 12270, "is_delete": false, "file_type": 1, "original_file_name": "JTSS693FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf3e169bc764f4487eb1f810be83011.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf3e169bc764f4487eb1f810be83011.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf3e169bc764f4487eb1f810be83011.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcf3e169bc764f4487eb1f810be83011.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcf3e169bc764f4487eb1f810be83011.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9rq2Rj0sgTkvTNC3551H6TJcTY=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.535805+00 2025-12-09 10:15:33.535812+00 16142 LZ1351#上身1号色 SPMX-20240815311353 \N \N \N 1 \N [{"file_id": "a2cc961a-8ef5-40be-9b63-413a5b33eed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a549a6c3f57c4fdc8e052c74c62f8795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a549a6c3f57c4fdc8e052c74c62f8795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a549a6c3f57c4fdc8e052c74c62f8795.jpg", "file_size": 15852, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a549a6c3f57c4fdc8e052c74c62f8795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a549a6c3f57c4fdc8e052c74c62f8795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a549a6c3f57c4fdc8e052c74c62f8795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a549a6c3f57c4fdc8e052c74c62f8795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a549a6c3f57c4fdc8e052c74c62f8795.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n5FZr4s8rJ4Psj_l06mflqo99-U=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.538642+00 2025-12-09 10:15:33.538648+00 16143 1222-1FWF#黑色匹布 SPMX-20240815311350 \N \N \N 1 \N [{"file_id": "32d14ab7-1530-4365-af05-5f6bc8db23a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01812ae0593149abbe12816fa0a9ca7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01812ae0593149abbe12816fa0a9ca7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01812ae0593149abbe12816fa0a9ca7d.jpg", "file_size": 14806, "is_delete": false, "file_type": 1, "original_file_name": "1222-1FWF#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01812ae0593149abbe12816fa0a9ca7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01812ae0593149abbe12816fa0a9ca7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01812ae0593149abbe12816fa0a9ca7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01812ae0593149abbe12816fa0a9ca7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01812ae0593149abbe12816fa0a9ca7d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59V7VPKsB7gywRFlSw_NZDMXlyc=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.541443+00 2025-12-09 10:15:33.541449+00 16144 230115#A2 SPMX-20240815311359 \N \N \N 1 \N [{"file_id": "4c7b9ce8-050c-4fef-8084-6891a3a76eeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f9b508bb2c54b5dbddd9febed61eb0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f9b508bb2c54b5dbddd9febed61eb0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f9b508bb2c54b5dbddd9febed61eb0d.jpg", "file_size": 18418, "is_delete": false, "file_type": 1, "original_file_name": "230115#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9b508bb2c54b5dbddd9febed61eb0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9b508bb2c54b5dbddd9febed61eb0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9b508bb2c54b5dbddd9febed61eb0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f9b508bb2c54b5dbddd9febed61eb0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f9b508bb2c54b5dbddd9febed61eb0d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Z_k8mCYbgxo_ZwmK0Odor59SDQ=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.544245+00 2025-12-09 10:15:33.544251+00 16145 0006-AUS#捆条 SPMX-20240815311355 \N \N \N 1 \N [{"file_id": "2bbd2e1f-5d23-4917-b224-a7475b20a356", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d61f7d3d2a445d8b8287ac9122e09ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d61f7d3d2a445d8b8287ac9122e09ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d61f7d3d2a445d8b8287ac9122e09ea.jpg", "file_size": 19907, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61f7d3d2a445d8b8287ac9122e09ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61f7d3d2a445d8b8287ac9122e09ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d61f7d3d2a445d8b8287ac9122e09ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d61f7d3d2a445d8b8287ac9122e09ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d61f7d3d2a445d8b8287ac9122e09ea.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-53SF_dGZiZl7KszOH-M37MhAt0=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.547005+00 2025-12-09 10:15:33.547011+00 16146 1223FWE#上衣粉色 SPMX-20240815311361 \N \N \N 1 \N [{"file_id": "6fff6f12-1806-416a-89e3-43a23f7c3fb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62cc3686732643f5a117c557f5c9fd61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62cc3686732643f5a117c557f5c9fd61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62cc3686732643f5a117c557f5c9fd61.jpg", "file_size": 15512, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#上衣粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cc3686732643f5a117c557f5c9fd61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cc3686732643f5a117c557f5c9fd61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62cc3686732643f5a117c557f5c9fd61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62cc3686732643f5a117c557f5c9fd61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62cc3686732643f5a117c557f5c9fd61.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wrbtsmn7g4FHbFa0oKJRrJqoIhg=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.549764+00 2025-12-09 10:15:33.54977+00 16147 FX0003-117#RC23 SPMX-20240815311354 \N \N \N 1 \N [{"file_id": "b486535f-a3c6-4251-a132-aa9f7777e4b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e830943ce56f4e59aca2189d78cab731.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e830943ce56f4e59aca2189d78cab731.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e830943ce56f4e59aca2189d78cab731.jpg", "file_size": 46784, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-117#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e830943ce56f4e59aca2189d78cab731.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e830943ce56f4e59aca2189d78cab731.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e830943ce56f4e59aca2189d78cab731.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e830943ce56f4e59aca2189d78cab731.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e830943ce56f4e59aca2189d78cab731.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_k4qHBaE_DgfzIzoRpBEQ2e6xC0=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.552585+00 2025-12-09 10:15:33.552591+00 16148 85022#4码+8码 SPMX-20240815311356 \N \N \N 1 \N [{"file_id": "afe92ffe-519b-45c1-8bf5-5960a4b1c987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb1b0e954b54414c9342f30cd9032e61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb1b0e954b54414c9342f30cd9032e61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb1b0e954b54414c9342f30cd9032e61.jpg", "file_size": 16927, "is_delete": false, "file_type": 1, "original_file_name": "85022#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1b0e954b54414c9342f30cd9032e61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1b0e954b54414c9342f30cd9032e61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1b0e954b54414c9342f30cd9032e61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb1b0e954b54414c9342f30cd9032e61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb1b0e954b54414c9342f30cd9032e61.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mo17lWri6H77Vu8Nr2yKd0kBT5o=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.555361+00 2025-12-09 10:15:33.555367+00 16149 HX 2-8-12-16杏FW#VS-D3 SPMX-20240815311357 \N \N \N 1 \N [{"file_id": "081aafc3-3096-4b9d-bd81-092ab90c3153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa85f1e8aa9e47b3b44659acc1108a05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa85f1e8aa9e47b3b44659acc1108a05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa85f1e8aa9e47b3b44659acc1108a05.jpg", "file_size": 8910, "is_delete": false, "file_type": 1, "original_file_name": "HX 2-8-12-16杏FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa85f1e8aa9e47b3b44659acc1108a05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa85f1e8aa9e47b3b44659acc1108a05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa85f1e8aa9e47b3b44659acc1108a05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa85f1e8aa9e47b3b44659acc1108a05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa85f1e8aa9e47b3b44659acc1108a05.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1BUcphuc4YJL-7ZZjF4KQ2DBsM=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.558137+00 2025-12-09 10:15:33.558143+00 16150 LJH1856#花色橙色 SPMX-20240815311358 \N \N \N 1 \N [{"file_id": "521f6f0f-0b3e-4962-8508-07da27e8d24b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf9d4e887a18458eb0ce3235d006b750.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf9d4e887a18458eb0ce3235d006b750.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf9d4e887a18458eb0ce3235d006b750.jpg", "file_size": 51024, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#花色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9d4e887a18458eb0ce3235d006b750.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9d4e887a18458eb0ce3235d006b750.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf9d4e887a18458eb0ce3235d006b750.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf9d4e887a18458eb0ce3235d006b750.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf9d4e887a18458eb0ce3235d006b750.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fEsub9oT3JRDb6jxiGubwUxdsPQ=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.560885+00 2025-12-09 10:15:33.56089+00 16151 CC093FW#2XL粉 SPMX-20240815311352 \N \N \N 1 \N [{"file_id": "2d5a8346-a4aa-49fa-bd82-f328f1f55b28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6494fb77882f4a4481351bb5d6349ed2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6494fb77882f4a4481351bb5d6349ed2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6494fb77882f4a4481351bb5d6349ed2.jpg", "file_size": 12694, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#2XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6494fb77882f4a4481351bb5d6349ed2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6494fb77882f4a4481351bb5d6349ed2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6494fb77882f4a4481351bb5d6349ed2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6494fb77882f4a4481351bb5d6349ed2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6494fb77882f4a4481351bb5d6349ed2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tU59QzZ3KDipotPAwqfSGy1B-Do=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.563681+00 2025-12-09 10:15:33.563687+00 16152 DL31450#彩兰后幅定位 SPMX-20240815311351 \N \N \N 1 \N [{"file_id": "7264c78c-5060-4f41-b8dc-f1beaadcd656", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a18c739a16d84d7ebafb04729ecaa65a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a18c739a16d84d7ebafb04729ecaa65a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a18c739a16d84d7ebafb04729ecaa65a.jpg", "file_size": 21002, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#彩兰后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a18c739a16d84d7ebafb04729ecaa65a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a18c739a16d84d7ebafb04729ecaa65a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a18c739a16d84d7ebafb04729ecaa65a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a18c739a16d84d7ebafb04729ecaa65a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a18c739a16d84d7ebafb04729ecaa65a.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRb6I5BgIG0DJctcEj5x8zRm-60=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.56648+00 2025-12-09 10:15:33.566485+00 16153 CC093FW#2XL黄 SPMX-20240815311362 \N \N \N 1 \N [{"file_id": "b0da55f7-c2fa-436a-9fe5-b9b02c5cc000", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a93770d73f604db7936222f726106f0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a93770d73f604db7936222f726106f0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a93770d73f604db7936222f726106f0f.jpg", "file_size": 13668, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#2XL黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93770d73f604db7936222f726106f0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93770d73f604db7936222f726106f0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93770d73f604db7936222f726106f0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a93770d73f604db7936222f726106f0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a93770d73f604db7936222f726106f0f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZIQJ8kL-gWD2DMfD6MhkMe-5WYs=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.569226+00 2025-12-09 10:15:33.569232+00 16154 LJH1856#花色白色 SPMX-20240815311366 \N \N \N 1 \N [{"file_id": "49ec08f3-e16c-4dec-be4d-5d7811c490cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efef0c18505b4d3f86ca268f3ea6c5f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efef0c18505b4d3f86ca268f3ea6c5f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efef0c18505b4d3f86ca268f3ea6c5f7.jpg", "file_size": 52329, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#花色白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef0c18505b4d3f86ca268f3ea6c5f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef0c18505b4d3f86ca268f3ea6c5f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef0c18505b4d3f86ca268f3ea6c5f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efef0c18505b4d3f86ca268f3ea6c5f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efef0c18505b4d3f86ca268f3ea6c5f7.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCcvjzz6uoyVEpcHJtl37TaXV00=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.571986+00 2025-12-09 10:15:33.571992+00 16155 JTSS694FW#VS-D3 SPMX-20240815311368 \N \N \N 1 \N [{"file_id": "497a33c4-a2d4-4400-a415-aa006d4c6f50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7efd6c50f0ea417d8aea11cc60553f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7efd6c50f0ea417d8aea11cc60553f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7efd6c50f0ea417d8aea11cc60553f43.jpg", "file_size": 18623, "is_delete": false, "file_type": 1, "original_file_name": "JTSS694FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efd6c50f0ea417d8aea11cc60553f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efd6c50f0ea417d8aea11cc60553f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7efd6c50f0ea417d8aea11cc60553f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7efd6c50f0ea417d8aea11cc60553f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7efd6c50f0ea417d8aea11cc60553f43.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x39_fgB-t2HjmmejKQKS9HifDRA=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.574779+00 2025-12-09 10:15:33.574785+00 16156 FX0003-118#RC23 SPMX-20240815311370 \N \N \N 1 \N [{"file_id": "2059c258-652d-4913-8ce4-7c325f4bc62d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6c8f099a6bd47f9a27481e6df6cb171.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6c8f099a6bd47f9a27481e6df6cb171.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6c8f099a6bd47f9a27481e6df6cb171.jpg", "file_size": 59618, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-118#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c8f099a6bd47f9a27481e6df6cb171.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c8f099a6bd47f9a27481e6df6cb171.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6c8f099a6bd47f9a27481e6df6cb171.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6c8f099a6bd47f9a27481e6df6cb171.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6c8f099a6bd47f9a27481e6df6cb171.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grlm3KFJwFDyQBeqqTdEgOgmRkA=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.577542+00 2025-12-09 10:15:33.577547+00 16157 85022#6码 SPMX-20240815311365 \N \N \N 1 \N [{"file_id": "e8b35a50-c1fd-4e22-9115-815d32b250b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be6172b179c14478a45544b8c2c8f282.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be6172b179c14478a45544b8c2c8f282.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be6172b179c14478a45544b8c2c8f282.jpg", "file_size": 16092, "is_delete": false, "file_type": 1, "original_file_name": "85022#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6172b179c14478a45544b8c2c8f282.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6172b179c14478a45544b8c2c8f282.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6172b179c14478a45544b8c2c8f282.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be6172b179c14478a45544b8c2c8f282.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be6172b179c14478a45544b8c2c8f282.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-p-cHsrdjdXlKMTUKRf9gb3empk=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.580317+00 2025-12-09 10:15:33.580323+00 16158 DL31450#彩兰袖子定位 SPMX-20240815311364 \N \N \N 1 \N [{"file_id": "fcfc8bf7-3431-464e-84b9-8fddcf3f00da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f18623d0e9a24a0186f558c402684ca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f18623d0e9a24a0186f558c402684ca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f18623d0e9a24a0186f558c402684ca0.jpg", "file_size": 12923, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#彩兰袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18623d0e9a24a0186f558c402684ca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18623d0e9a24a0186f558c402684ca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f18623d0e9a24a0186f558c402684ca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f18623d0e9a24a0186f558c402684ca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f18623d0e9a24a0186f558c402684ca0.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:azjdML2GZw893tmZ7sJ2W7MQPsM=", "createTime": "2024-08-15 15:00:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.583088+00 2025-12-09 10:15:33.583094+00 16159 HX 2-8-12-16粉FW#VS-D3 SPMX-20240815311371 \N \N \N 1 \N [{"file_id": "850deb43-5d6f-48ef-92e3-724f5454746c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b54e1a097c4e89aeaa42e72caf3e32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b54e1a097c4e89aeaa42e72caf3e32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b54e1a097c4e89aeaa42e72caf3e32.jpg", "file_size": 8823, "is_delete": false, "file_type": 1, "original_file_name": "HX 2-8-12-16粉FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b54e1a097c4e89aeaa42e72caf3e32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b54e1a097c4e89aeaa42e72caf3e32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b54e1a097c4e89aeaa42e72caf3e32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b54e1a097c4e89aeaa42e72caf3e32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b54e1a097c4e89aeaa42e72caf3e32.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ecAGUimiDt2wDrpMQMUgHvchVY=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.585878+00 2025-12-09 10:15:33.585884+00 16160 LZ1351#上身2号色 SPMX-20240815311363 \N \N \N 1 \N [{"file_id": "2ac4a9c1-e5d6-4757-9297-703c123f2139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a88536cf82fc4af492c2d0efaeda8ecd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a88536cf82fc4af492c2d0efaeda8ecd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a88536cf82fc4af492c2d0efaeda8ecd.jpg", "file_size": 15725, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88536cf82fc4af492c2d0efaeda8ecd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88536cf82fc4af492c2d0efaeda8ecd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88536cf82fc4af492c2d0efaeda8ecd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a88536cf82fc4af492c2d0efaeda8ecd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a88536cf82fc4af492c2d0efaeda8ecd.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0N2HhBc6tt0kU1QEmlyETYtRlw=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.588656+00 2025-12-09 10:15:33.588662+00 16161 230115#A3 SPMX-20240815311369 \N \N \N 1 \N [{"file_id": "97b05565-11e1-4e2c-8f9b-b97c481e53a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d82f67c66914975b7f8531a6576fc9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d82f67c66914975b7f8531a6576fc9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d82f67c66914975b7f8531a6576fc9b.jpg", "file_size": 18949, "is_delete": false, "file_type": 1, "original_file_name": "230115#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d82f67c66914975b7f8531a6576fc9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d82f67c66914975b7f8531a6576fc9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d82f67c66914975b7f8531a6576fc9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d82f67c66914975b7f8531a6576fc9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d82f67c66914975b7f8531a6576fc9b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-M9lQziK8v2zekTQSvh0rM-i9Q=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.59142+00 2025-12-09 10:15:33.591426+00 16162 0006-AUS#补片2XL码前片 SPMX-20240815311367 \N \N \N 1 \N [{"file_id": "b6f2bc50-d5e9-4d04-98e6-97f6bc9a22a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b46a36bfe6c4c36a9bd5759a83a276f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b46a36bfe6c4c36a9bd5759a83a276f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b46a36bfe6c4c36a9bd5759a83a276f.jpg", "file_size": 18136, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片2XL码前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b46a36bfe6c4c36a9bd5759a83a276f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b46a36bfe6c4c36a9bd5759a83a276f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b46a36bfe6c4c36a9bd5759a83a276f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b46a36bfe6c4c36a9bd5759a83a276f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b46a36bfe6c4c36a9bd5759a83a276f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-zrV6NPYuYEGXlRPtw7r-D4z3O8=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.594188+00 2025-12-09 10:15:33.594194+00 16163 1223FWE#上衣紫色 SPMX-20240815311372 \N \N \N 1 \N [{"file_id": "1221fc19-c7b3-445a-8fd0-1b25f98b7ebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e34723eb9074405a5c02061caea956b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e34723eb9074405a5c02061caea956b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e34723eb9074405a5c02061caea956b.jpg", "file_size": 17927, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#上衣紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e34723eb9074405a5c02061caea956b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e34723eb9074405a5c02061caea956b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e34723eb9074405a5c02061caea956b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e34723eb9074405a5c02061caea956b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e34723eb9074405a5c02061caea956b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QEoLCfYTTPX92D_Fj858PoMCPQ=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.596963+00 2025-12-09 10:15:33.596969+00 16164 230115#A4 SPMX-20240815311382 \N \N \N 1 \N [{"file_id": "d43e9eda-ea6a-4fcc-a6f8-819db992832e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "332be96e412f4ffdabc1459a14e0bc35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "332be96e412f4ffdabc1459a14e0bc35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "332be96e412f4ffdabc1459a14e0bc35.jpg", "file_size": 18776, "is_delete": false, "file_type": 1, "original_file_name": "230115#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/332be96e412f4ffdabc1459a14e0bc35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/332be96e412f4ffdabc1459a14e0bc35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/332be96e412f4ffdabc1459a14e0bc35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/332be96e412f4ffdabc1459a14e0bc35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/332be96e412f4ffdabc1459a14e0bc35.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MU2sGhMkCmWGZbM8mQ-rygG8jWk=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.600031+00 2025-12-09 10:15:33.600036+00 16165 FX0003-119#RC23 SPMX-20240815311378 \N \N \N 1 \N [{"file_id": "9f15613d-6587-400b-afbe-af7d78fbbb8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba66c22b3ed144ab932bbe3770cefea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba66c22b3ed144ab932bbe3770cefea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba66c22b3ed144ab932bbe3770cefea8.jpg", "file_size": 61414, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-119#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66c22b3ed144ab932bbe3770cefea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66c22b3ed144ab932bbe3770cefea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66c22b3ed144ab932bbe3770cefea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba66c22b3ed144ab932bbe3770cefea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba66c22b3ed144ab932bbe3770cefea8.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcnVfY_VpDB_YZURtZh-iTb37hU=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.603105+00 2025-12-09 10:15:33.603111+00 16166 HX 4-6-10-14杏FW#VS-D3 SPMX-20240815311379 \N \N \N 1 \N [{"file_id": "c29d5996-83dc-4914-a4ac-3f7789e49562", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c3c232c379f4aeebb33b160b5c94c8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c3c232c379f4aeebb33b160b5c94c8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c3c232c379f4aeebb33b160b5c94c8d.jpg", "file_size": 8578, "is_delete": false, "file_type": 1, "original_file_name": "HX 4-6-10-14杏FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3c232c379f4aeebb33b160b5c94c8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3c232c379f4aeebb33b160b5c94c8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3c232c379f4aeebb33b160b5c94c8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c3c232c379f4aeebb33b160b5c94c8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c3c232c379f4aeebb33b160b5c94c8d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:drT3wn0UO_nAqXIierOPSjx6BV4=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.606195+00 2025-12-09 10:15:33.606201+00 16167 LZ1351#上身3号色 SPMX-20240815311374 \N \N \N 1 \N [{"file_id": "284c4948-f086-457e-b3ea-f46058c2b055", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22d1f0b91d9649e79f2db37cc9e67d6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22d1f0b91d9649e79f2db37cc9e67d6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22d1f0b91d9649e79f2db37cc9e67d6c.jpg", "file_size": 14923, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d1f0b91d9649e79f2db37cc9e67d6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d1f0b91d9649e79f2db37cc9e67d6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22d1f0b91d9649e79f2db37cc9e67d6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22d1f0b91d9649e79f2db37cc9e67d6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22d1f0b91d9649e79f2db37cc9e67d6c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXLTkTDizfJ5thqjX2yds6c914A=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.60929+00 2025-12-09 10:15:33.609296+00 16168 0006-AUS#补片L码后片 SPMX-20240815311377 \N \N \N 1 \N [{"file_id": "41b286e7-3aa4-405c-befd-faad9cab01e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "015a29175096493ebd00b2eca2547c4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "015a29175096493ebd00b2eca2547c4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "015a29175096493ebd00b2eca2547c4c.jpg", "file_size": 17171, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片L码后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a29175096493ebd00b2eca2547c4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a29175096493ebd00b2eca2547c4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015a29175096493ebd00b2eca2547c4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/015a29175096493ebd00b2eca2547c4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/015a29175096493ebd00b2eca2547c4c.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:__xEanca2hQLBr3JRdU2zV7dFNY=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.612347+00 2025-12-09 10:15:33.612354+00 16169 JTSS695FW#VS-D3 SPMX-20240815311381 \N \N \N 1 \N [{"file_id": "90a956e5-5d3b-4e82-9b7c-5245a97966e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "441b7a15bdd14c04aac483882cdfdc89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "441b7a15bdd14c04aac483882cdfdc89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "441b7a15bdd14c04aac483882cdfdc89.jpg", "file_size": 21266, "is_delete": false, "file_type": 1, "original_file_name": "JTSS695FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441b7a15bdd14c04aac483882cdfdc89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441b7a15bdd14c04aac483882cdfdc89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/441b7a15bdd14c04aac483882cdfdc89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/441b7a15bdd14c04aac483882cdfdc89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/441b7a15bdd14c04aac483882cdfdc89.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tVi7WKuoDvs2LQXyLjfiAgf6n-Y=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.615415+00 2025-12-09 10:15:33.615421+00 16170 LJH1856#花色黑色 SPMX-20240815311380 \N \N \N 1 \N [{"file_id": "13bb5467-b4de-4f8b-8fee-602bae99665d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57aa53377b5c47678974ee445ea00add.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57aa53377b5c47678974ee445ea00add.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57aa53377b5c47678974ee445ea00add.jpg", "file_size": 54735, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856#花色黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57aa53377b5c47678974ee445ea00add.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57aa53377b5c47678974ee445ea00add.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57aa53377b5c47678974ee445ea00add.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57aa53377b5c47678974ee445ea00add.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57aa53377b5c47678974ee445ea00add.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WXCGl0DvB3PCAYEDgNrHUbwR58=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.618462+00 2025-12-09 10:15:33.618468+00 16171 1223FWE#上衣黑色 SPMX-20240815311383 \N \N \N 1 \N [{"file_id": "a6190f98-966e-4a6d-804a-88696e5348fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c12141d560c485f9b0a7cca81780308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c12141d560c485f9b0a7cca81780308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c12141d560c485f9b0a7cca81780308.jpg", "file_size": 17748, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#上衣黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c12141d560c485f9b0a7cca81780308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c12141d560c485f9b0a7cca81780308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c12141d560c485f9b0a7cca81780308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c12141d560c485f9b0a7cca81780308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c12141d560c485f9b0a7cca81780308.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OaYIaXcIHLg4kKZ4dtvndMo8Hec=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.621528+00 2025-12-09 10:15:33.621534+00 16172 85022#乱花 SPMX-20240815311373 \N \N \N 1 \N [{"file_id": "db102fa3-f765-499b-a275-20fc928752ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f16465b4e544f34a8e2893ce155d47d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f16465b4e544f34a8e2893ce155d47d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f16465b4e544f34a8e2893ce155d47d.jpg", "file_size": 4235, "is_delete": false, "file_type": 1, "original_file_name": "85022#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f16465b4e544f34a8e2893ce155d47d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f16465b4e544f34a8e2893ce155d47d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f16465b4e544f34a8e2893ce155d47d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f16465b4e544f34a8e2893ce155d47d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f16465b4e544f34a8e2893ce155d47d.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uNI4QWcSnfwJeXbQSJ1uZCDolM=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.624261+00 2025-12-09 10:15:33.624267+00 16173 CC093FW#2XL黑 SPMX-20240815311376 \N \N \N 1 \N [{"file_id": "cca92ef4-eb78-4d58-9d9c-f91ef94e4f39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "039f688401af445989f11e95a8b400d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "039f688401af445989f11e95a8b400d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "039f688401af445989f11e95a8b400d5.jpg", "file_size": 14552, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#2XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039f688401af445989f11e95a8b400d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039f688401af445989f11e95a8b400d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039f688401af445989f11e95a8b400d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/039f688401af445989f11e95a8b400d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/039f688401af445989f11e95a8b400d5.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TbxMQbIFJkhwHvEC11aGjgg3ick=", "createTime": "2024-08-15 15:00:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.513619+00 2025-12-09 10:15:37.513627+00 16805 JTSS754FW#VS-D3 SPMX-20240815312023 \N \N \N 1 \N [{"file_id": "254bc376-6bcc-4c2b-bd5d-b066bee5c84d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1abe6e0fc9964926849a8d9b3173d2d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1abe6e0fc9964926849a8d9b3173d2d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1abe6e0fc9964926849a8d9b3173d2d0.jpg", "file_size": 17545, "is_delete": false, "file_type": 1, "original_file_name": "JTSS754FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abe6e0fc9964926849a8d9b3173d2d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abe6e0fc9964926849a8d9b3173d2d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1abe6e0fc9964926849a8d9b3173d2d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1abe6e0fc9964926849a8d9b3173d2d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1abe6e0fc9964926849a8d9b3173d2d0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A1i1hcVPVysJP-TJacvsClTm9PI=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.630066+00 2025-12-09 10:15:33.630072+00 16174 1223FWE#粉色匹布 SPMX-20240815311394 \N \N \N 1 \N [{"file_id": "d74a8ea9-a0a7-4cb6-b19d-bd3c4e36c4dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87167bc137404390908d2c0e3900df35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87167bc137404390908d2c0e3900df35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87167bc137404390908d2c0e3900df35.jpg", "file_size": 13799, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87167bc137404390908d2c0e3900df35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87167bc137404390908d2c0e3900df35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87167bc137404390908d2c0e3900df35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87167bc137404390908d2c0e3900df35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87167bc137404390908d2c0e3900df35.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWBLHIBuGaU5ydhW5YFdzBok4Fc=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.632896+00 2025-12-09 10:15:33.632903+00 16175 HX 4-6-10-14粉FW#VS-D3 SPMX-20240815311390 \N \N \N 1 \N [{"file_id": "6bb55e9f-0021-47ab-b78e-b9b87c4ab338", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7018c1f805744dba9c7bac43602d9bf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7018c1f805744dba9c7bac43602d9bf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7018c1f805744dba9c7bac43602d9bf2.jpg", "file_size": 8683, "is_delete": false, "file_type": 1, "original_file_name": "HX 4-6-10-14粉FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7018c1f805744dba9c7bac43602d9bf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7018c1f805744dba9c7bac43602d9bf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7018c1f805744dba9c7bac43602d9bf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7018c1f805744dba9c7bac43602d9bf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7018c1f805744dba9c7bac43602d9bf2.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfeEvmXDKZyRQ_QYxRFt5w56xPw=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.635684+00 2025-12-09 10:15:33.635691+00 16176 0006-AUS#补片M码前片 SPMX-20240815311388 \N \N \N 1 \N [{"file_id": "b5097d30-eb97-4df0-b23d-d9ad00ce6671", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9035157612284f779042d273d9e790d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9035157612284f779042d273d9e790d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9035157612284f779042d273d9e790d6.jpg", "file_size": 15477, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片M码前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9035157612284f779042d273d9e790d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9035157612284f779042d273d9e790d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9035157612284f779042d273d9e790d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9035157612284f779042d273d9e790d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9035157612284f779042d273d9e790d6.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iSHKo0JKfPtRQbXkeKtBguQHhh0=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.638486+00 2025-12-09 10:15:33.638493+00 16177 85023#10码+12码 SPMX-20240815311386 \N \N \N 1 \N [{"file_id": "b5a6fed6-9ffa-42d9-81c9-d7ef42023bb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d704fc83e9a1496f96dd7194a2741f1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d704fc83e9a1496f96dd7194a2741f1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d704fc83e9a1496f96dd7194a2741f1b.jpg", "file_size": 17752, "is_delete": false, "file_type": 1, "original_file_name": "85023#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d704fc83e9a1496f96dd7194a2741f1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d704fc83e9a1496f96dd7194a2741f1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d704fc83e9a1496f96dd7194a2741f1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d704fc83e9a1496f96dd7194a2741f1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d704fc83e9a1496f96dd7194a2741f1b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IG3FT996Sbp4EHdhqZ6j3Wk9Xnw=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.641232+00 2025-12-09 10:15:33.641237+00 16178 LZ1351#上身5号色 SPMX-20240815311395 \N \N \N 1 \N [{"file_id": "037c7f12-3786-43e5-9590-9bb90add615f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b8ac468a1374f7f9d002e7f14812d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b8ac468a1374f7f9d002e7f14812d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b8ac468a1374f7f9d002e7f14812d8f.jpg", "file_size": 15966, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b8ac468a1374f7f9d002e7f14812d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b8ac468a1374f7f9d002e7f14812d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b8ac468a1374f7f9d002e7f14812d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b8ac468a1374f7f9d002e7f14812d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b8ac468a1374f7f9d002e7f14812d8f.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sBSysSHji0jfqyWnHkKa-N2F2Nc=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.644019+00 2025-12-09 10:15:33.644025+00 16179 DL31450#枣红L SPMX-20240815311384 \N \N \N 1 \N [{"file_id": "5ff0a2c2-3749-46a8-adee-43d51bcaee0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "298ab28122ff4e5f8a838558f519278b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "298ab28122ff4e5f8a838558f519278b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "298ab28122ff4e5f8a838558f519278b.jpg", "file_size": 18913, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ab28122ff4e5f8a838558f519278b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ab28122ff4e5f8a838558f519278b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298ab28122ff4e5f8a838558f519278b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/298ab28122ff4e5f8a838558f519278b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/298ab28122ff4e5f8a838558f519278b.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YO_lS1lA5F8Qj5k7Zfv4nD_HbM=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.64681+00 2025-12-09 10:15:33.646816+00 16180 LJH1856-2#双边定位宝蓝 SPMX-20240815311392 \N \N \N 1 \N [{"file_id": "56bfb7f6-0bed-46f2-ae51-96aac56df4d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b434ab6e73414c5b9ad629c805a2d291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b434ab6e73414c5b9ad629c805a2d291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b434ab6e73414c5b9ad629c805a2d291.jpg", "file_size": 28115, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#双边定位宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b434ab6e73414c5b9ad629c805a2d291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b434ab6e73414c5b9ad629c805a2d291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b434ab6e73414c5b9ad629c805a2d291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b434ab6e73414c5b9ad629c805a2d291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b434ab6e73414c5b9ad629c805a2d291.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jup9cMfjTxnQTC3VHhxBIiorMsI=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:33.649591+00 2025-12-09 10:15:33.649597+00 16181 FX0003-12#大牌不规则色块 SPMX-20240815311389 \N \N \N 1 \N [{"file_id": "9bca020b-f5bf-4776-96ee-43ce80a2d7bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a707c4293e604c65ab2b8c219afe1650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a707c4293e604c65ab2b8c219afe1650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a707c4293e604c65ab2b8c219afe1650.jpg", "file_size": 16340, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-12#大牌不规则色块.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a707c4293e604c65ab2b8c219afe1650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a707c4293e604c65ab2b8c219afe1650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a707c4293e604c65ab2b8c219afe1650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a707c4293e604c65ab2b8c219afe1650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a707c4293e604c65ab2b8c219afe1650.jpg?e=1765361732&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yDxCPB40BGtZi-tiSXl8jq4PQN8=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.342994+00 2025-12-09 10:15:34.343003+00 16182 JTSS696FW#VS-D3 SPMX-20240815311391 \N \N \N 1 \N [{"file_id": "8da095a2-03d2-4577-81c5-c999c70bfa1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e97c5d76d854d88a0cbe45532ff7f96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e97c5d76d854d88a0cbe45532ff7f96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e97c5d76d854d88a0cbe45532ff7f96.jpg", "file_size": 12824, "is_delete": false, "file_type": 1, "original_file_name": "JTSS696FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e97c5d76d854d88a0cbe45532ff7f96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e97c5d76d854d88a0cbe45532ff7f96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e97c5d76d854d88a0cbe45532ff7f96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e97c5d76d854d88a0cbe45532ff7f96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e97c5d76d854d88a0cbe45532ff7f96.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JewOYRrTrpVBIztuI19N41EqQ3Q=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.346802+00 2025-12-09 10:15:34.346807+00 16183 230115#A5 SPMX-20240815311393 \N \N \N 1 \N [{"file_id": "1959c993-9b08-4294-b99b-1b1d61a5c967", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20de7cd4ae414d4dad0e25dd8a246bfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20de7cd4ae414d4dad0e25dd8a246bfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20de7cd4ae414d4dad0e25dd8a246bfe.jpg", "file_size": 18724, "is_delete": false, "file_type": 1, "original_file_name": "230115#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20de7cd4ae414d4dad0e25dd8a246bfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20de7cd4ae414d4dad0e25dd8a246bfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20de7cd4ae414d4dad0e25dd8a246bfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20de7cd4ae414d4dad0e25dd8a246bfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20de7cd4ae414d4dad0e25dd8a246bfe.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAEMLdF81hQEOyf6yg3eYVm7eZg=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.349775+00 2025-12-09 10:15:34.349781+00 16184 CC093FW#3XL粉 SPMX-20240815311396 \N \N \N 1 \N [{"file_id": "2bcbecca-edeb-4a10-9be6-04317cebcf59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134659dfb8dc400a8dfa712d1badd8ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134659dfb8dc400a8dfa712d1badd8ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134659dfb8dc400a8dfa712d1badd8ea.jpg", "file_size": 12752, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#3XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134659dfb8dc400a8dfa712d1badd8ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134659dfb8dc400a8dfa712d1badd8ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134659dfb8dc400a8dfa712d1badd8ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134659dfb8dc400a8dfa712d1badd8ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134659dfb8dc400a8dfa712d1badd8ea.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ldFu2INXartZ9l8x-i4Uw2eKNtw=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.352449+00 2025-12-09 10:15:34.352454+00 16185 85023#14码 SPMX-20240815311397 \N \N \N 1 \N [{"file_id": "885c3f29-810e-4cf0-89b7-a57a9835c51b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75ffb1d735b7441d927f51c35995d952.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75ffb1d735b7441d927f51c35995d952.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75ffb1d735b7441d927f51c35995d952.jpg", "file_size": 16553, "is_delete": false, "file_type": 1, "original_file_name": "85023#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ffb1d735b7441d927f51c35995d952.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ffb1d735b7441d927f51c35995d952.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ffb1d735b7441d927f51c35995d952.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75ffb1d735b7441d927f51c35995d952.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75ffb1d735b7441d927f51c35995d952.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ypVs__XWx0WflBIMR1ypoOzDvY=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.355103+00 2025-12-09 10:15:34.355109+00 16186 LZ1351#上身4号色 SPMX-20240815311385 \N \N \N 1 \N [{"file_id": "894e0958-d469-4cff-8f5b-223de16e23e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1cad33d940d4cd0b88e64cd9a8dff4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1cad33d940d4cd0b88e64cd9a8dff4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1cad33d940d4cd0b88e64cd9a8dff4b.jpg", "file_size": 15476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cad33d940d4cd0b88e64cd9a8dff4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cad33d940d4cd0b88e64cd9a8dff4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1cad33d940d4cd0b88e64cd9a8dff4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1cad33d940d4cd0b88e64cd9a8dff4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1cad33d940d4cd0b88e64cd9a8dff4b.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fhG85i4v_X954MOOk-4Cz8g_lAc=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.357647+00 2025-12-09 10:15:34.357652+00 16187 CC093FW#3XL白 SPMX-20240815311387 \N \N \N 1 \N [{"file_id": "2b78dd70-7dab-4969-ada7-00503656c832", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f91c3fcb28ef427d8cb61839abdf37e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f91c3fcb28ef427d8cb61839abdf37e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f91c3fcb28ef427d8cb61839abdf37e8.jpg", "file_size": 13342, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#3XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91c3fcb28ef427d8cb61839abdf37e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91c3fcb28ef427d8cb61839abdf37e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f91c3fcb28ef427d8cb61839abdf37e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f91c3fcb28ef427d8cb61839abdf37e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f91c3fcb28ef427d8cb61839abdf37e8.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bSbJDFu6aAnJu_FxjM9FsjyK0wM=", "createTime": "2024-08-15 15:00:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.360258+00 2025-12-09 10:15:34.360263+00 16188 DL31450#枣红XL SPMX-20240815311399 \N \N \N 1 \N [{"file_id": "e3bcc2e5-e463-49a1-bf30-8ba9b3244435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4229f889ac584bf59f3bfeffe727f912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4229f889ac584bf59f3bfeffe727f912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4229f889ac584bf59f3bfeffe727f912.jpg", "file_size": 18813, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4229f889ac584bf59f3bfeffe727f912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4229f889ac584bf59f3bfeffe727f912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4229f889ac584bf59f3bfeffe727f912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4229f889ac584bf59f3bfeffe727f912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4229f889ac584bf59f3bfeffe727f912.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tOyAnXZpr4tSduJSNzUErQcDEJY=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.362933+00 2025-12-09 10:15:34.36294+00 16189 JTSS697FW#VS-D3 SPMX-20240815311405 \N \N \N 1 \N [{"file_id": "e420e8fc-e3f4-4c41-81e6-5acf394229b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e273768c5da04e989c556a3dda3586fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e273768c5da04e989c556a3dda3586fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e273768c5da04e989c556a3dda3586fc.jpg", "file_size": 12159, "is_delete": false, "file_type": 1, "original_file_name": "JTSS697FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e273768c5da04e989c556a3dda3586fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e273768c5da04e989c556a3dda3586fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e273768c5da04e989c556a3dda3586fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e273768c5da04e989c556a3dda3586fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e273768c5da04e989c556a3dda3586fc.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQIFzzJStx28okC1Rk756yIceXk=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.365543+00 2025-12-09 10:15:34.365548+00 16190 LJH1856-2#双边定位白色 SPMX-20240815311408 \N \N \N 1 \N [{"file_id": "18184715-d753-4d45-ac3d-ee631e50b5ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f756ff91b9b24bd3b9a7df783fc86632.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f756ff91b9b24bd3b9a7df783fc86632.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f756ff91b9b24bd3b9a7df783fc86632.jpg", "file_size": 27617, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#双边定位白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f756ff91b9b24bd3b9a7df783fc86632.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f756ff91b9b24bd3b9a7df783fc86632.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f756ff91b9b24bd3b9a7df783fc86632.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f756ff91b9b24bd3b9a7df783fc86632.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f756ff91b9b24bd3b9a7df783fc86632.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ADGx35ns2n-AaH0JbLHQkH8FeU=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.368358+00 2025-12-09 10:15:34.368364+00 16191 0006-AUS#补片S码后片 SPMX-20240815311407 \N \N \N 1 \N [{"file_id": "d7ce44d5-c137-4adb-92ac-4f95188d9142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e0e755e405d42b6bb35676d7be048b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e0e755e405d42b6bb35676d7be048b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e0e755e405d42b6bb35676d7be048b1.jpg", "file_size": 14781, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片S码后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0e755e405d42b6bb35676d7be048b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0e755e405d42b6bb35676d7be048b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e0e755e405d42b6bb35676d7be048b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e0e755e405d42b6bb35676d7be048b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e0e755e405d42b6bb35676d7be048b1.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6QDQ6i0XRBYiQOwrJ9snI7dRGzg=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.371089+00 2025-12-09 10:15:34.371095+00 16192 230115#A6 SPMX-20240815311402 \N \N \N 1 \N [{"file_id": "4f953b4f-0cda-4119-8269-71691bdac12c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1755cfdacc485f9eb7227fca05670b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1755cfdacc485f9eb7227fca05670b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1755cfdacc485f9eb7227fca05670b.jpg", "file_size": 18036, "is_delete": false, "file_type": 1, "original_file_name": "230115#A6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1755cfdacc485f9eb7227fca05670b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1755cfdacc485f9eb7227fca05670b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1755cfdacc485f9eb7227fca05670b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1755cfdacc485f9eb7227fca05670b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1755cfdacc485f9eb7227fca05670b.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iN8XO6Qd76bwFgxbTB1gaQ_Uk3k=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.373798+00 2025-12-09 10:15:34.373804+00 16193 85023#4码+8码 SPMX-20240815311412 \N \N \N 1 \N [{"file_id": "28c216c7-3016-4887-8e46-a6dec51e144b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cd24142b2ea49d4b3c0175ad1986bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cd24142b2ea49d4b3c0175ad1986bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cd24142b2ea49d4b3c0175ad1986bc6.jpg", "file_size": 16710, "is_delete": false, "file_type": 1, "original_file_name": "85023#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd24142b2ea49d4b3c0175ad1986bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd24142b2ea49d4b3c0175ad1986bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cd24142b2ea49d4b3c0175ad1986bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cd24142b2ea49d4b3c0175ad1986bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cd24142b2ea49d4b3c0175ad1986bc6.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0cdDjc_39_4FAJgtLzr35j2AIbk=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.376582+00 2025-12-09 10:15:34.376587+00 16194 FX0003-121#RC23 SPMX-20240815311413 \N \N \N 1 \N [{"file_id": "5c03ee4a-1253-43b5-8f61-2d48d1bfb895", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "685becfb93124116b9fddbaea3194ff3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "685becfb93124116b9fddbaea3194ff3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "685becfb93124116b9fddbaea3194ff3.jpg", "file_size": 48729, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-121#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685becfb93124116b9fddbaea3194ff3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685becfb93124116b9fddbaea3194ff3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/685becfb93124116b9fddbaea3194ff3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/685becfb93124116b9fddbaea3194ff3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/685becfb93124116b9fddbaea3194ff3.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Udwbrv_gXwBQgazjB8zhvXfrVdQ=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.379373+00 2025-12-09 10:15:34.379379+00 16195 HX S-M-L-XL杏FW#VS-D3 SPMX-20240815311400 \N \N \N 1 \N [{"file_id": "a8057a0d-a5ef-45c3-8e27-58bf1585dfc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa11dba2bc5546449393990d9642655c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa11dba2bc5546449393990d9642655c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa11dba2bc5546449393990d9642655c.jpg", "file_size": 16350, "is_delete": false, "file_type": 1, "original_file_name": "HX S-M-L-XL杏FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa11dba2bc5546449393990d9642655c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa11dba2bc5546449393990d9642655c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa11dba2bc5546449393990d9642655c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa11dba2bc5546449393990d9642655c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa11dba2bc5546449393990d9642655c.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B8HoWjWJ6b3-LLRstotLhuYCrFA=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.382104+00 2025-12-09 10:15:34.38211+00 16196 LJH1856-2#双边定位橙色 SPMX-20240815311401 \N \N \N 1 \N [{"file_id": "ef733b4f-8d30-43e6-b490-2a3e93864f1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de5b77887db1411394f9672f8f19425f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de5b77887db1411394f9672f8f19425f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de5b77887db1411394f9672f8f19425f.jpg", "file_size": 25213, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#双边定位橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5b77887db1411394f9672f8f19425f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5b77887db1411394f9672f8f19425f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de5b77887db1411394f9672f8f19425f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de5b77887db1411394f9672f8f19425f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de5b77887db1411394f9672f8f19425f.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyjedQ2hAF6VrG10Pz344pai4XU=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.384789+00 2025-12-09 10:15:34.384795+00 16197 FX0003-120#RC23 SPMX-20240815311404 \N \N \N 1 \N [{"file_id": "279d51d8-b42f-4651-a76b-15ed70e1fc91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7065b9a123b64cd0b8bbdaab6de2f28e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7065b9a123b64cd0b8bbdaab6de2f28e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7065b9a123b64cd0b8bbdaab6de2f28e.jpg", "file_size": 55857, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-120#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7065b9a123b64cd0b8bbdaab6de2f28e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7065b9a123b64cd0b8bbdaab6de2f28e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7065b9a123b64cd0b8bbdaab6de2f28e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7065b9a123b64cd0b8bbdaab6de2f28e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7065b9a123b64cd0b8bbdaab6de2f28e.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10pRnxCsqVCKWu8PqNipvzn7A24=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.387454+00 2025-12-09 10:15:34.38746+00 16198 CC093FW#3XL绿 SPMX-20240815311410 \N \N \N 1 \N [{"file_id": "c3beda1a-bcc6-46f2-bf58-c5cf3fb54328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe22f173c1f140a99d3667c349c1a5e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe22f173c1f140a99d3667c349c1a5e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe22f173c1f140a99d3667c349c1a5e1.jpg", "file_size": 14263, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#3XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe22f173c1f140a99d3667c349c1a5e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe22f173c1f140a99d3667c349c1a5e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe22f173c1f140a99d3667c349c1a5e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe22f173c1f140a99d3667c349c1a5e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe22f173c1f140a99d3667c349c1a5e1.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fudirmm8Ps4APlpspxMgM6HBAl0=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.390154+00 2025-12-09 10:15:34.39016+00 16199 230120#兰色 SPMX-20240815311411 \N \N \N 1 \N [{"file_id": "998e1622-4de1-4a15-b536-a5021241a4b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63da4d69761c464fac1e0388277046be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63da4d69761c464fac1e0388277046be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63da4d69761c464fac1e0388277046be.jpg", "file_size": 27607, "is_delete": false, "file_type": 1, "original_file_name": "230120#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da4d69761c464fac1e0388277046be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da4d69761c464fac1e0388277046be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da4d69761c464fac1e0388277046be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63da4d69761c464fac1e0388277046be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63da4d69761c464fac1e0388277046be.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERZjbDLGX0Y3kgbxcChpr73Rt5Y=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.392838+00 2025-12-09 10:15:34.392843+00 16200 1223FWE#紫色匹布 SPMX-20240815311403 \N \N \N 1 \N [{"file_id": "5c2b59d3-2603-4e98-93e9-2dd506e8d5da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a572c0b9d72f47a487b5eb1e0c2d34df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a572c0b9d72f47a487b5eb1e0c2d34df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a572c0b9d72f47a487b5eb1e0c2d34df.jpg", "file_size": 16992, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#紫色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a572c0b9d72f47a487b5eb1e0c2d34df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a572c0b9d72f47a487b5eb1e0c2d34df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a572c0b9d72f47a487b5eb1e0c2d34df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a572c0b9d72f47a487b5eb1e0c2d34df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a572c0b9d72f47a487b5eb1e0c2d34df.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ddxzSvLKbKZgAAOg-LXIAf1DeU=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.395528+00 2025-12-09 10:15:34.395534+00 16201 LZ1351#童装T1号色 SPMX-20240815311406 \N \N \N 1 \N [{"file_id": "76ca67cc-4ae1-45c8-9c1c-b867b448c597", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a678836a17f450f8db7fd421120b2c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a678836a17f450f8db7fd421120b2c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a678836a17f450f8db7fd421120b2c8.jpg", "file_size": 16609, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a678836a17f450f8db7fd421120b2c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a678836a17f450f8db7fd421120b2c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a678836a17f450f8db7fd421120b2c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a678836a17f450f8db7fd421120b2c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a678836a17f450f8db7fd421120b2c8.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s5DrXVo8oxJAD4l8tEVZOhGM1I8=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.398171+00 2025-12-09 10:15:34.398178+00 16202 0006-AUS#补片S码前片 SPMX-20240815311398 \N \N \N 1 \N [{"file_id": "c032820b-3e87-4f01-b506-c0e3fda85423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eed824eb6c9b4e349ef926c4ca87bd7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eed824eb6c9b4e349ef926c4ca87bd7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eed824eb6c9b4e349ef926c4ca87bd7e.jpg", "file_size": 14970, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片S码前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed824eb6c9b4e349ef926c4ca87bd7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed824eb6c9b4e349ef926c4ca87bd7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed824eb6c9b4e349ef926c4ca87bd7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eed824eb6c9b4e349ef926c4ca87bd7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eed824eb6c9b4e349ef926c4ca87bd7e.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o30q3jH3A7LJfrTU4PepDmCZ1Ak=", "createTime": "2024-08-15 15:00:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.400842+00 2025-12-09 10:15:34.400847+00 16203 HX S-M-L-XL粉FW#VS-D3 SPMX-20240815311409 \N \N \N 1 \N [{"file_id": "8941a3c1-3368-4989-9451-d897396066f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f12123710d9b4fa693a662a3c2ff06ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f12123710d9b4fa693a662a3c2ff06ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f12123710d9b4fa693a662a3c2ff06ff.jpg", "file_size": 16203, "is_delete": false, "file_type": 1, "original_file_name": "HX S-M-L-XL粉FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12123710d9b4fa693a662a3c2ff06ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12123710d9b4fa693a662a3c2ff06ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12123710d9b4fa693a662a3c2ff06ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f12123710d9b4fa693a662a3c2ff06ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f12123710d9b4fa693a662a3c2ff06ff.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtL4kU7fSE5GyVKBOKzT0tJwEQY=", "createTime": "2024-08-15 15:00:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.403546+00 2025-12-09 10:15:34.403551+00 16204 0006-AUS#补片XL码后片 SPMX-20240815311428 \N \N \N 1 \N [{"file_id": "a117eb51-b4b3-4b7b-8937-33c78b5ad5ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff4e60d55cc14e0cafba94b5369690cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff4e60d55cc14e0cafba94b5369690cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff4e60d55cc14e0cafba94b5369690cb.jpg", "file_size": 17312, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片XL码后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff4e60d55cc14e0cafba94b5369690cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff4e60d55cc14e0cafba94b5369690cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff4e60d55cc14e0cafba94b5369690cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff4e60d55cc14e0cafba94b5369690cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff4e60d55cc14e0cafba94b5369690cb.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ngn_siY5WtinEOHYCAuZDY-mn_o=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.406241+00 2025-12-09 10:15:34.406247+00 16205 1223FWE#黑色匹布 SPMX-20240815311414 \N \N \N 1 \N [{"file_id": "787a2ddd-5038-47dc-a108-c13a24a6d2ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1448baf8577f4310a3dbedb9c2ed6436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1448baf8577f4310a3dbedb9c2ed6436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1448baf8577f4310a3dbedb9c2ed6436.jpg", "file_size": 15458, "is_delete": false, "file_type": 1, "original_file_name": "1223FWE#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1448baf8577f4310a3dbedb9c2ed6436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1448baf8577f4310a3dbedb9c2ed6436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1448baf8577f4310a3dbedb9c2ed6436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1448baf8577f4310a3dbedb9c2ed6436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1448baf8577f4310a3dbedb9c2ed6436.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ll-Lte2TnNWTOelDx4uUjB9btFU=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.409351+00 2025-12-09 10:15:34.409357+00 16206 1225#补片1号 SPMX-20240815311427 \N \N \N 1 \N [{"file_id": "8bacf2aa-b2a8-4fda-b9a9-73f270ce7bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd7f5e9c1b6849fda6cd05cb2491b558.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd7f5e9c1b6849fda6cd05cb2491b558.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd7f5e9c1b6849fda6cd05cb2491b558.jpg", "file_size": 53960, "is_delete": false, "file_type": 1, "original_file_name": "1225#补片1号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7f5e9c1b6849fda6cd05cb2491b558.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7f5e9c1b6849fda6cd05cb2491b558.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd7f5e9c1b6849fda6cd05cb2491b558.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd7f5e9c1b6849fda6cd05cb2491b558.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd7f5e9c1b6849fda6cd05cb2491b558.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZrOuZgO3cZVeGDEhKOm8gzLmzU=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.412244+00 2025-12-09 10:15:34.412251+00 16207 HX0001A#WJC22 SPMX-20240815311420 \N \N \N 1 \N [{"file_id": "9eb8be30-51b7-431c-8e8f-6d1e6522693d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3090a499640a4f22bba15999c6687a57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3090a499640a4f22bba15999c6687a57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3090a499640a4f22bba15999c6687a57.jpg", "file_size": 7808, "is_delete": false, "file_type": 1, "original_file_name": "HX0001A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3090a499640a4f22bba15999c6687a57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3090a499640a4f22bba15999c6687a57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3090a499640a4f22bba15999c6687a57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3090a499640a4f22bba15999c6687a57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3090a499640a4f22bba15999c6687a57.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjBW13AtAetvEkkAMmtWzEfWGpA=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.415105+00 2025-12-09 10:15:34.415112+00 16208 DL31450#枣红后幅定位 SPMX-20240815311415 \N \N \N 1 \N [{"file_id": "d1ec568c-72b8-4219-be2d-b63f8a6cc658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dcf0e328a004cc19de98012d513c194.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dcf0e328a004cc19de98012d513c194.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dcf0e328a004cc19de98012d513c194.jpg", "file_size": 20813, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#枣红后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcf0e328a004cc19de98012d513c194.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcf0e328a004cc19de98012d513c194.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcf0e328a004cc19de98012d513c194.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dcf0e328a004cc19de98012d513c194.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dcf0e328a004cc19de98012d513c194.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khjVtNjLBSKdRLMETSnHgktv61w=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.417829+00 2025-12-09 10:15:34.417834+00 16209 LJH1856-2#双边定位黑色 SPMX-20240815311419 \N \N \N 1 \N [{"file_id": "db09033d-3f92-49da-85bf-fc6995b68235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c42fe06fe0240218dc2e95316cae5a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c42fe06fe0240218dc2e95316cae5a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c42fe06fe0240218dc2e95316cae5a7.jpg", "file_size": 27161, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#双边定位黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c42fe06fe0240218dc2e95316cae5a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c42fe06fe0240218dc2e95316cae5a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c42fe06fe0240218dc2e95316cae5a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c42fe06fe0240218dc2e95316cae5a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c42fe06fe0240218dc2e95316cae5a7.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ou3cmrxUyzlXsGJUbInF-hGDum0=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.4205+00 2025-12-09 10:15:34.420506+00 16210 230120#橙色 SPMX-20240815311421 \N \N \N 1 \N [{"file_id": "c2c6c4d0-9342-479c-91ab-765955c1dcb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66c82da25a774297a4285b669d66224d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66c82da25a774297a4285b669d66224d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66c82da25a774297a4285b669d66224d.jpg", "file_size": 25363, "is_delete": false, "file_type": 1, "original_file_name": "230120#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c82da25a774297a4285b669d66224d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c82da25a774297a4285b669d66224d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66c82da25a774297a4285b669d66224d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66c82da25a774297a4285b669d66224d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66c82da25a774297a4285b669d66224d.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzqyOqFicPA6wea-cOyiX7yJHm4=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.423164+00 2025-12-09 10:15:34.42317+00 16211 85023#6码 SPMX-20240815311422 \N \N \N 1 \N [{"file_id": "939e8822-9928-4501-a340-2ec914e89584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a93ffd3615704da28d646feaba11f26e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a93ffd3615704da28d646feaba11f26e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a93ffd3615704da28d646feaba11f26e.jpg", "file_size": 15815, "is_delete": false, "file_type": 1, "original_file_name": "85023#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93ffd3615704da28d646feaba11f26e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93ffd3615704da28d646feaba11f26e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a93ffd3615704da28d646feaba11f26e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a93ffd3615704da28d646feaba11f26e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a93ffd3615704da28d646feaba11f26e.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KC_GuEQrQk_0DglI6Z6KKwoYPAg=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.425835+00 2025-12-09 10:15:34.42584+00 16212 CC093FW#3XL黄 SPMX-20240815311423 \N \N \N 1 \N [{"file_id": "0239dce3-c637-48f7-88dd-d3b5825a8bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9eb2e41399a4825a3b1ea23d5136d5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9eb2e41399a4825a3b1ea23d5136d5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9eb2e41399a4825a3b1ea23d5136d5b.jpg", "file_size": 13174, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#3XL黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9eb2e41399a4825a3b1ea23d5136d5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9eb2e41399a4825a3b1ea23d5136d5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9eb2e41399a4825a3b1ea23d5136d5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9eb2e41399a4825a3b1ea23d5136d5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9eb2e41399a4825a3b1ea23d5136d5b.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3yabUlV2dRYdUdtEJHRK1_Ag-qA=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.428476+00 2025-12-09 10:15:34.428482+00 16213 FX0003-122#1号色 SPMX-20240815311424 \N \N \N 1 \N [{"file_id": "ec37932e-542f-4409-9334-28c9a87ac572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff7bcd51fc2e4079b44b42f099052c95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff7bcd51fc2e4079b44b42f099052c95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff7bcd51fc2e4079b44b42f099052c95.jpg", "file_size": 60418, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-122#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7bcd51fc2e4079b44b42f099052c95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7bcd51fc2e4079b44b42f099052c95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff7bcd51fc2e4079b44b42f099052c95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff7bcd51fc2e4079b44b42f099052c95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff7bcd51fc2e4079b44b42f099052c95.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQppSNq3FcuQzxn_o_z73R9SGvg=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.431129+00 2025-12-09 10:15:34.431135+00 16214 DL31450#枣红袖子定位 SPMX-20240815311425 \N \N \N 1 \N [{"file_id": "375d7e5c-373e-4e8e-b7ae-252d0e728821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3a32edb66ba467e800fd04a2a8cebeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3a32edb66ba467e800fd04a2a8cebeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3a32edb66ba467e800fd04a2a8cebeb.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#枣红袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a32edb66ba467e800fd04a2a8cebeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a32edb66ba467e800fd04a2a8cebeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3a32edb66ba467e800fd04a2a8cebeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3a32edb66ba467e800fd04a2a8cebeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3a32edb66ba467e800fd04a2a8cebeb.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLQ_eDPbpZ_gaRQXcff-boa-nqc=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.433892+00 2025-12-09 10:15:34.433898+00 16215 LZ1351#童装T2号色 SPMX-20240815311417 \N \N \N 1 \N [{"file_id": "e9474924-a33e-4844-b72f-2d7aa313c456", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "544686b3eb31428c96e41f0bcddca645.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "544686b3eb31428c96e41f0bcddca645.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "544686b3eb31428c96e41f0bcddca645.jpg", "file_size": 17402, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544686b3eb31428c96e41f0bcddca645.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544686b3eb31428c96e41f0bcddca645.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544686b3eb31428c96e41f0bcddca645.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/544686b3eb31428c96e41f0bcddca645.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/544686b3eb31428c96e41f0bcddca645.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YerHUIgi_uQVtpX9a-5P1W_kSKo=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.43669+00 2025-12-09 10:15:34.436697+00 16216 JTSS698FW#VS-D3 SPMX-20240815311416 \N \N \N 1 \N [{"file_id": "be294436-6f2d-4f9a-af83-ec5e007bcc3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9c523fd48fb4c20b39224699e294988.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9c523fd48fb4c20b39224699e294988.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9c523fd48fb4c20b39224699e294988.jpg", "file_size": 17158, "is_delete": false, "file_type": 1, "original_file_name": "JTSS698FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c523fd48fb4c20b39224699e294988.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c523fd48fb4c20b39224699e294988.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c523fd48fb4c20b39224699e294988.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9c523fd48fb4c20b39224699e294988.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9c523fd48fb4c20b39224699e294988.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYN4A2ky8zyv2yfMV4aejfaSCv0=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.439391+00 2025-12-09 10:15:34.439397+00 16217 0006-AUS#补片XL码前片 SPMX-20240815311418 \N \N \N 1 \N [{"file_id": "5c446b0d-926c-48e8-b51f-75e4229d24ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04d7d8044d41424aa35cd7a51474251e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04d7d8044d41424aa35cd7a51474251e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04d7d8044d41424aa35cd7a51474251e.jpg", "file_size": 17647, "is_delete": false, "file_type": 1, "original_file_name": "0006-AUS#补片XL码前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d7d8044d41424aa35cd7a51474251e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d7d8044d41424aa35cd7a51474251e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d7d8044d41424aa35cd7a51474251e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04d7d8044d41424aa35cd7a51474251e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04d7d8044d41424aa35cd7a51474251e.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hlH_1A_jPnIH0cOqFl7VGUkEJXA=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.442029+00 2025-12-09 10:15:34.442034+00 16218 JTSS699FW#VS-D3 SPMX-20240815311426 \N \N \N 1 \N [{"file_id": "8767659c-37a8-4eab-b679-178323759ba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45cd933d841047b88e5f45fb12eb1bf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45cd933d841047b88e5f45fb12eb1bf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45cd933d841047b88e5f45fb12eb1bf6.jpg", "file_size": 12245, "is_delete": false, "file_type": 1, "original_file_name": "JTSS699FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cd933d841047b88e5f45fb12eb1bf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cd933d841047b88e5f45fb12eb1bf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45cd933d841047b88e5f45fb12eb1bf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45cd933d841047b88e5f45fb12eb1bf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45cd933d841047b88e5f45fb12eb1bf6.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:608Hl8SQ9M2h1oEb0ZMMfsMXKkI=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.444716+00 2025-12-09 10:15:34.444722+00 16219 LZ1351#童装T4号色 SPMX-20240815311439 \N \N \N 1 \N [{"file_id": "93e13903-c0fb-46d3-b067-200f15985846", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e110e62f7a6a47f4af3f6163bfcfce51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e110e62f7a6a47f4af3f6163bfcfce51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e110e62f7a6a47f4af3f6163bfcfce51.jpg", "file_size": 17109, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e110e62f7a6a47f4af3f6163bfcfce51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e110e62f7a6a47f4af3f6163bfcfce51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e110e62f7a6a47f4af3f6163bfcfce51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e110e62f7a6a47f4af3f6163bfcfce51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e110e62f7a6a47f4af3f6163bfcfce51.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7S46ygwiMQ-rl3Z2NCrNZn2twRU=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.447365+00 2025-12-09 10:15:34.44737+00 16220 HX0001FWE#VS-D3 SPMX-20240815311441 \N \N \N 1 \N [{"file_id": "6bba6c09-992d-4dec-b28a-3354ead00877", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e77dcfecb7542bcac3e026fa923b022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e77dcfecb7542bcac3e026fa923b022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e77dcfecb7542bcac3e026fa923b022.jpg", "file_size": 7050, "is_delete": false, "file_type": 1, "original_file_name": "HX0001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e77dcfecb7542bcac3e026fa923b022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e77dcfecb7542bcac3e026fa923b022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e77dcfecb7542bcac3e026fa923b022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e77dcfecb7542bcac3e026fa923b022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e77dcfecb7542bcac3e026fa923b022.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:quXlsYbV7_msjalTuZC6rnrRHxY=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.45002+00 2025-12-09 10:15:34.450026+00 16221 CC093FW#3XL黑 SPMX-20240815311433 \N \N \N 1 \N [{"file_id": "f8804cc6-e8f2-44bd-a055-f2e9dda4d138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4428c6d58044e47a65382c0fc20b10a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4428c6d58044e47a65382c0fc20b10a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4428c6d58044e47a65382c0fc20b10a.jpg", "file_size": 14252, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#3XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4428c6d58044e47a65382c0fc20b10a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4428c6d58044e47a65382c0fc20b10a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4428c6d58044e47a65382c0fc20b10a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4428c6d58044e47a65382c0fc20b10a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4428c6d58044e47a65382c0fc20b10a.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENDFhwVVoAPkpciff1VrVEETcTw=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.452661+00 2025-12-09 10:15:34.452666+00 16222 LJH1856-2#花色宝蓝 SPMX-20240815311431 \N \N \N 1 \N [{"file_id": "5240ef95-6a73-4cc4-b19c-3959406c23ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00dc25c6fa554bef90c15ce3012f8b69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00dc25c6fa554bef90c15ce3012f8b69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00dc25c6fa554bef90c15ce3012f8b69.jpg", "file_size": 54620, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#花色宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc25c6fa554bef90c15ce3012f8b69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc25c6fa554bef90c15ce3012f8b69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dc25c6fa554bef90c15ce3012f8b69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00dc25c6fa554bef90c15ce3012f8b69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00dc25c6fa554bef90c15ce3012f8b69.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9laPmrycAXtRvSTwqOVt6YRLGM=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.455389+00 2025-12-09 10:15:34.455396+00 16223 LZ1351#童装T3号色 SPMX-20240815311429 \N \N \N 1 \N [{"file_id": "5a7159fa-b86c-441f-b100-eccd7ca93aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2ecfdb26f4846f6b0c2025939f99693.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2ecfdb26f4846f6b0c2025939f99693.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2ecfdb26f4846f6b0c2025939f99693.jpg", "file_size": 16590, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ecfdb26f4846f6b0c2025939f99693.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ecfdb26f4846f6b0c2025939f99693.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ecfdb26f4846f6b0c2025939f99693.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2ecfdb26f4846f6b0c2025939f99693.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2ecfdb26f4846f6b0c2025939f99693.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M42PV8qt513OQQk1CZNmSPDyPaE=", "createTime": "2024-08-15 15:00:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.458087+00 2025-12-09 10:15:34.458094+00 16224 CC093FW#4XL白 SPMX-20240815311442 \N \N \N 1 \N [{"file_id": "1c6e729e-fd4d-4961-9c3a-6950171f4d38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6c89f585d114e46b816f5063ba82d26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6c89f585d114e46b816f5063ba82d26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6c89f585d114e46b816f5063ba82d26.jpg", "file_size": 13077, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#4XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c89f585d114e46b816f5063ba82d26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c89f585d114e46b816f5063ba82d26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6c89f585d114e46b816f5063ba82d26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6c89f585d114e46b816f5063ba82d26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6c89f585d114e46b816f5063ba82d26.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkGZD3kHTsn6xh7Kapf0pPxPBxM=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.460671+00 2025-12-09 10:15:34.460677+00 16225 HX0001FW#VS-D3 SPMX-20240815311430 \N \N \N 1 \N [{"file_id": "ddf2d7cf-fcda-46dc-8e63-a2ac4577cfce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d9bc2748f64f7ea421529a20283b10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d9bc2748f64f7ea421529a20283b10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d9bc2748f64f7ea421529a20283b10.jpg", "file_size": 9875, "is_delete": false, "file_type": 1, "original_file_name": "HX0001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9bc2748f64f7ea421529a20283b10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9bc2748f64f7ea421529a20283b10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9bc2748f64f7ea421529a20283b10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d9bc2748f64f7ea421529a20283b10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d9bc2748f64f7ea421529a20283b10.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z_WKqgdKSbVhlJNuJi0NTi8qo04=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.46341+00 2025-12-09 10:15:34.463416+00 16226 1225#补片2号 SPMX-20240815311440 \N \N \N 1 \N [{"file_id": "f0a2b021-83c5-4c04-b34e-a8e3738b0934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80856859dcc14e1b9d23d6136a9d7b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80856859dcc14e1b9d23d6136a9d7b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80856859dcc14e1b9d23d6136a9d7b43.jpg", "file_size": 53690, "is_delete": false, "file_type": 1, "original_file_name": "1225#补片2号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80856859dcc14e1b9d23d6136a9d7b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80856859dcc14e1b9d23d6136a9d7b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80856859dcc14e1b9d23d6136a9d7b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80856859dcc14e1b9d23d6136a9d7b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80856859dcc14e1b9d23d6136a9d7b43.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0qRTdut4YHczgThpjgYHQhujUM=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.466389+00 2025-12-09 10:15:34.466394+00 16227 DL31450#浅粉2XL SPMX-20240815311436 \N \N \N 1 \N [{"file_id": "0c9c9bda-d366-4436-8b44-034f50ebf8de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "347bc14349044a9fa3b471e7e61beba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "347bc14349044a9fa3b471e7e61beba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "347bc14349044a9fa3b471e7e61beba5.jpg", "file_size": 19012, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#浅粉2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347bc14349044a9fa3b471e7e61beba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347bc14349044a9fa3b471e7e61beba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/347bc14349044a9fa3b471e7e61beba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/347bc14349044a9fa3b471e7e61beba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/347bc14349044a9fa3b471e7e61beba5.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dsQXHm3uZIE-nlYzDkR54Udlhyg=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.469203+00 2025-12-09 10:15:34.469208+00 16228 FX0003-122#2号色 SPMX-20240815311435 \N \N \N 1 \N [{"file_id": "084d5ae0-08f5-4935-9b8e-889da18e7e4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49209f64424d4b9c8091012b106f6f5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49209f64424d4b9c8091012b106f6f5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49209f64424d4b9c8091012b106f6f5a.jpg", "file_size": 55820, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-122#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49209f64424d4b9c8091012b106f6f5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49209f64424d4b9c8091012b106f6f5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49209f64424d4b9c8091012b106f6f5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49209f64424d4b9c8091012b106f6f5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49209f64424d4b9c8091012b106f6f5a.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ZUPf3XQan8vxKjWz593tpY0WjY=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.472001+00 2025-12-09 10:15:34.472006+00 16229 85023#乱花 SPMX-20240815311432 \N \N \N 1 \N [{"file_id": "8f2ef7d5-814c-4d82-ba80-8f7e4152e600", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d46311fd1b041e8841ab3cbe1ee66af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d46311fd1b041e8841ab3cbe1ee66af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d46311fd1b041e8841ab3cbe1ee66af.jpg", "file_size": 4081, "is_delete": false, "file_type": 1, "original_file_name": "85023#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d46311fd1b041e8841ab3cbe1ee66af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d46311fd1b041e8841ab3cbe1ee66af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d46311fd1b041e8841ab3cbe1ee66af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d46311fd1b041e8841ab3cbe1ee66af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d46311fd1b041e8841ab3cbe1ee66af.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ipGdvIEvDEj7nohkXiQCDzziSiQ=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.474656+00 2025-12-09 10:15:34.474661+00 16230 230120#玫红 SPMX-20240815311434 \N \N \N 1 \N [{"file_id": "e30ad59d-26d1-469b-8e75-e1c97b80cc9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c6a8e796f445beb8cd2be749d1ec2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c6a8e796f445beb8cd2be749d1ec2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c6a8e796f445beb8cd2be749d1ec2c.jpg", "file_size": 26334, "is_delete": false, "file_type": 1, "original_file_name": "230120#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c6a8e796f445beb8cd2be749d1ec2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c6a8e796f445beb8cd2be749d1ec2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c6a8e796f445beb8cd2be749d1ec2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c6a8e796f445beb8cd2be749d1ec2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c6a8e796f445beb8cd2be749d1ec2c.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QZF4fs84541wJjkiPZvMHciAME=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.489033+00 2025-12-09 10:15:34.489038+00 16235 85024#14码 SPMX-20240815311453 \N \N \N 1 \N [{"file_id": "7118b3aa-aee1-40b5-85c7-390c87bdb78c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6e92a0985c54c54ab675ed1e84eeee2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6e92a0985c54c54ab675ed1e84eeee2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6e92a0985c54c54ab675ed1e84eeee2.jpg", "file_size": 19401, "is_delete": false, "file_type": 1, "original_file_name": "85024#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e92a0985c54c54ab675ed1e84eeee2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e92a0985c54c54ab675ed1e84eeee2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6e92a0985c54c54ab675ed1e84eeee2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6e92a0985c54c54ab675ed1e84eeee2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6e92a0985c54c54ab675ed1e84eeee2.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXcgeYiIBMrQPATvIjXfhtRgUMo=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.477341+00 2025-12-09 10:15:34.477347+00 16231 0006FWE#2XL-番禺调色 SPMX-20240815311438 \N \N \N 1 \N [{"file_id": "049a9730-20c8-45d3-942a-6aa8a7c8b60b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe36262d44ff4a20aa646495ccc49cbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe36262d44ff4a20aa646495ccc49cbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe36262d44ff4a20aa646495ccc49cbb.jpg", "file_size": 16807, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe36262d44ff4a20aa646495ccc49cbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe36262d44ff4a20aa646495ccc49cbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe36262d44ff4a20aa646495ccc49cbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe36262d44ff4a20aa646495ccc49cbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe36262d44ff4a20aa646495ccc49cbb.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_EvgzokrM-9AVht_JY1wgzoDmk=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.480106+00 2025-12-09 10:15:34.480111+00 16232 JTSS700FW#VS-D3 SPMX-20240815311437 \N \N \N 1 \N [{"file_id": "e84b6fdf-bbc0-4713-96da-51eb54c70a02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7b263bd058747bbb3c93105c7c2497a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7b263bd058747bbb3c93105c7c2497a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7b263bd058747bbb3c93105c7c2497a.jpg", "file_size": 13054, "is_delete": false, "file_type": 1, "original_file_name": "JTSS700FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b263bd058747bbb3c93105c7c2497a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b263bd058747bbb3c93105c7c2497a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b263bd058747bbb3c93105c7c2497a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7b263bd058747bbb3c93105c7c2497a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7b263bd058747bbb3c93105c7c2497a.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SUESg6GMENNVHBnE7RcCi23chTI=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.483085+00 2025-12-09 10:15:34.48309+00 16233 LZ1351#童装T5号色 SPMX-20240815311449 \N \N \N 1 \N [{"file_id": "ea47196d-847c-4d30-a006-fb51e02a3580", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eadd5b9da634f1f9085e4c05b2085c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eadd5b9da634f1f9085e4c05b2085c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eadd5b9da634f1f9085e4c05b2085c7.jpg", "file_size": 16949, "is_delete": false, "file_type": 1, "original_file_name": "LZ1351#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eadd5b9da634f1f9085e4c05b2085c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eadd5b9da634f1f9085e4c05b2085c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eadd5b9da634f1f9085e4c05b2085c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eadd5b9da634f1f9085e4c05b2085c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eadd5b9da634f1f9085e4c05b2085c7.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xxZ-XD5btS2arAtKh01ytUDBnfc=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.486094+00 2025-12-09 10:15:34.486099+00 16234 1225#补片3号 SPMX-20240815311451 \N \N \N 1 \N [{"file_id": "4fd30b65-aa44-4498-ad43-8c431b68278b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25fad7211e984f97ba233a566428e187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25fad7211e984f97ba233a566428e187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25fad7211e984f97ba233a566428e187.jpg", "file_size": 57931, "is_delete": false, "file_type": 1, "original_file_name": "1225#补片3号.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fad7211e984f97ba233a566428e187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fad7211e984f97ba233a566428e187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fad7211e984f97ba233a566428e187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25fad7211e984f97ba233a566428e187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25fad7211e984f97ba233a566428e187.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ley15e7sTLFU2U-iRarLPYMuYvs=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.491562+00 2025-12-09 10:15:34.491567+00 16236 FX0003-122#3号色 SPMX-20240815311447 \N \N \N 1 \N [{"file_id": "a3777da3-dbc7-4cdc-a1ee-3b5c6760480c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaa9ee7aa97f448ea2ebe2357db9cf41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaa9ee7aa97f448ea2ebe2357db9cf41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaa9ee7aa97f448ea2ebe2357db9cf41.jpg", "file_size": 54326, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-122#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa9ee7aa97f448ea2ebe2357db9cf41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa9ee7aa97f448ea2ebe2357db9cf41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa9ee7aa97f448ea2ebe2357db9cf41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaa9ee7aa97f448ea2ebe2357db9cf41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaa9ee7aa97f448ea2ebe2357db9cf41.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVmsgPfaJlyrsemNZsbVB1HvnQE=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.494056+00 2025-12-09 10:15:34.49406+00 16237 DL31450#浅粉L SPMX-20240815311446 \N \N \N 1 \N [{"file_id": "8e079efa-d16c-49c8-b60f-44d56c92b47c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b48a0937ff434177b0508acf45ee4516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b48a0937ff434177b0508acf45ee4516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b48a0937ff434177b0508acf45ee4516.jpg", "file_size": 18500, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#浅粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48a0937ff434177b0508acf45ee4516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48a0937ff434177b0508acf45ee4516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48a0937ff434177b0508acf45ee4516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b48a0937ff434177b0508acf45ee4516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b48a0937ff434177b0508acf45ee4516.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6phsoj0LcShH3BmbHzjGD1GfObE=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.496521+00 2025-12-09 10:15:34.496525+00 16238 CC093FW#4XL粉 SPMX-20240815311454 \N \N \N 1 \N [{"file_id": "b986e9a6-29a7-4cd5-ae53-541fcb921896", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5154dd7ece774a9882da07608e208772.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5154dd7ece774a9882da07608e208772.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5154dd7ece774a9882da07608e208772.jpg", "file_size": 12838, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#4XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5154dd7ece774a9882da07608e208772.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5154dd7ece774a9882da07608e208772.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5154dd7ece774a9882da07608e208772.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5154dd7ece774a9882da07608e208772.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5154dd7ece774a9882da07608e208772.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:219cZ6ZueLv3Jfx8arUJmyYh5jI=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.498766+00 2025-12-09 10:15:34.49877+00 16239 0006FWE#3XL-番禺调色 SPMX-20240815311452 \N \N \N 1 \N [{"file_id": "d4809f7b-9a38-4963-ab5e-a7284d98bc6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2233bf69544433eb5e18ba775220f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2233bf69544433eb5e18ba775220f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2233bf69544433eb5e18ba775220f41.jpg", "file_size": 17836, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#3XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2233bf69544433eb5e18ba775220f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2233bf69544433eb5e18ba775220f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2233bf69544433eb5e18ba775220f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2233bf69544433eb5e18ba775220f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2233bf69544433eb5e18ba775220f41.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqhhwfApjTW7PVwODxh04XQ3cvA=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.501338+00 2025-12-09 10:15:34.501344+00 16240 HX0001G#杏底 SPMX-20240815311450 \N \N \N 1 \N [{"file_id": "6c4e1752-9d1d-40e9-b223-23ad2553ad6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "501906f26fcf4947bc8e5f440b9f6d2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "501906f26fcf4947bc8e5f440b9f6d2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "501906f26fcf4947bc8e5f440b9f6d2c.jpg", "file_size": 9216, "is_delete": false, "file_type": 1, "original_file_name": "HX0001G#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501906f26fcf4947bc8e5f440b9f6d2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501906f26fcf4947bc8e5f440b9f6d2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501906f26fcf4947bc8e5f440b9f6d2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/501906f26fcf4947bc8e5f440b9f6d2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/501906f26fcf4947bc8e5f440b9f6d2c.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:je0eVltkaQcidXE0DWKa2nBkvV8=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.504028+00 2025-12-09 10:15:34.504033+00 16241 JTSS701FW#VS-D3 SPMX-20240815311448 \N \N \N 1 \N [{"file_id": "f5b89e7a-f566-4b87-9a4c-59d508d415dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ce1c57ac37a4a44b0de5db9cf20fd51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ce1c57ac37a4a44b0de5db9cf20fd51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ce1c57ac37a4a44b0de5db9cf20fd51.jpg", "file_size": 13865, "is_delete": false, "file_type": 1, "original_file_name": "JTSS701FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1c57ac37a4a44b0de5db9cf20fd51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1c57ac37a4a44b0de5db9cf20fd51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1c57ac37a4a44b0de5db9cf20fd51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ce1c57ac37a4a44b0de5db9cf20fd51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ce1c57ac37a4a44b0de5db9cf20fd51.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcjS85SBHgQmPZnTrimJT3y_CP8=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.506538+00 2025-12-09 10:15:34.506542+00 16242 85024#10码+12码 SPMX-20240815311443 \N \N \N 1 \N [{"file_id": "5c1f3f20-7419-468d-aace-370f392416bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32bd8196b66546c895f577a457774ad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32bd8196b66546c895f577a457774ad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32bd8196b66546c895f577a457774ad3.jpg", "file_size": 21365, "is_delete": false, "file_type": 1, "original_file_name": "85024#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32bd8196b66546c895f577a457774ad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32bd8196b66546c895f577a457774ad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32bd8196b66546c895f577a457774ad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32bd8196b66546c895f577a457774ad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32bd8196b66546c895f577a457774ad3.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y6WP2-lk7bdWNgSzuxucZBEUuaQ=", "createTime": "2024-08-15 15:00:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.50907+00 2025-12-09 10:15:34.509075+00 16243 230120#紫色 SPMX-20240815311444 \N \N \N 1 \N [{"file_id": "755ccf4f-02c8-46b3-a8ef-2f5763048489", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7171ef7ddba4fb09d6f71eef5ae92db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7171ef7ddba4fb09d6f71eef5ae92db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7171ef7ddba4fb09d6f71eef5ae92db.jpg", "file_size": 20540, "is_delete": false, "file_type": 1, "original_file_name": "230120#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7171ef7ddba4fb09d6f71eef5ae92db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7171ef7ddba4fb09d6f71eef5ae92db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7171ef7ddba4fb09d6f71eef5ae92db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7171ef7ddba4fb09d6f71eef5ae92db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7171ef7ddba4fb09d6f71eef5ae92db.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3XDfEnVSN6oiFVtyeQ95Uhnik8=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.521917+00 2025-12-09 10:15:34.521923+00 16248 FX0003-123#RC23 SPMX-20240815311458 \N \N \N 1 \N [{"file_id": "26a7fff1-918a-4230-855f-a389aef4631c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a578a53533f44158f6bf00f07161f82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a578a53533f44158f6bf00f07161f82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a578a53533f44158f6bf00f07161f82.jpg", "file_size": 52923, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-123#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a578a53533f44158f6bf00f07161f82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a578a53533f44158f6bf00f07161f82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a578a53533f44158f6bf00f07161f82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a578a53533f44158f6bf00f07161f82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a578a53533f44158f6bf00f07161f82.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iv4DVvhUbYwexfG2_CeVx7o5KrA=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.511627+00 2025-12-09 10:15:34.511632+00 16244 LJH1856-2#花色橙色 SPMX-20240815311445 \N \N \N 1 \N [{"file_id": "c153d07b-5179-40f0-adbd-729d6b7daca1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c155e0ddd3a241248eb54d3eb705c7d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c155e0ddd3a241248eb54d3eb705c7d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c155e0ddd3a241248eb54d3eb705c7d7.jpg", "file_size": 51566, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#花色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155e0ddd3a241248eb54d3eb705c7d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155e0ddd3a241248eb54d3eb705c7d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c155e0ddd3a241248eb54d3eb705c7d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c155e0ddd3a241248eb54d3eb705c7d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c155e0ddd3a241248eb54d3eb705c7d7.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ROTlLsXV71sqkFuU4Y-Gvnvvbk=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.513965+00 2025-12-09 10:15:34.51397+00 16245 DL31450#浅粉后幅定位 SPMX-20240815311466 \N \N \N 1 \N [{"file_id": "e2b44a1c-045b-4519-b5ef-6feb88641f1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f40af674a6ca4c47ae75eebcdaf622e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f40af674a6ca4c47ae75eebcdaf622e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f40af674a6ca4c47ae75eebcdaf622e2.jpg", "file_size": 21283, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#浅粉后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40af674a6ca4c47ae75eebcdaf622e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40af674a6ca4c47ae75eebcdaf622e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f40af674a6ca4c47ae75eebcdaf622e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f40af674a6ca4c47ae75eebcdaf622e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f40af674a6ca4c47ae75eebcdaf622e2.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yu4cR-FLbOjxPSnnTON1Lo4yMH4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.516434+00 2025-12-09 10:15:34.516438+00 16246 LJH1856-2#花色白色 SPMX-20240815311456 \N \N \N 1 \N [{"file_id": "1bb8a64b-4bac-48be-abd8-f1ffd8a99b01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb46d1f00e048fa977059cc9127de1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb46d1f00e048fa977059cc9127de1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb46d1f00e048fa977059cc9127de1e.jpg", "file_size": 53410, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#花色白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb46d1f00e048fa977059cc9127de1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb46d1f00e048fa977059cc9127de1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb46d1f00e048fa977059cc9127de1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb46d1f00e048fa977059cc9127de1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb46d1f00e048fa977059cc9127de1e.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFgKnWy8UnYLSNmutcOQU5Yv4A8=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.519204+00 2025-12-09 10:15:34.519213+00 16247 LZ1352#上身1号色 SPMX-20240815311459 \N \N \N 1 \N [{"file_id": "3b9a2527-46d9-41f6-8fbe-ccc0cc0f0ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15176c2f5e5b494e974914aff8446de4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15176c2f5e5b494e974914aff8446de4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15176c2f5e5b494e974914aff8446de4.jpg", "file_size": 21348, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15176c2f5e5b494e974914aff8446de4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15176c2f5e5b494e974914aff8446de4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15176c2f5e5b494e974914aff8446de4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15176c2f5e5b494e974914aff8446de4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15176c2f5e5b494e974914aff8446de4.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zF1HB1TRSdYJfokaag7teRd3YUU=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.524511+00 2025-12-09 10:15:34.524516+00 16249 230120#黄色 SPMX-20240815311467 \N \N \N 1 \N [{"file_id": "ab5a0cab-af13-4ac9-8b46-ded1f22b9d8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5994ed6b4ab4299bc5908b601724fb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5994ed6b4ab4299bc5908b601724fb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5994ed6b4ab4299bc5908b601724fb9.jpg", "file_size": 32076, "is_delete": false, "file_type": 1, "original_file_name": "230120#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5994ed6b4ab4299bc5908b601724fb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5994ed6b4ab4299bc5908b601724fb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5994ed6b4ab4299bc5908b601724fb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5994ed6b4ab4299bc5908b601724fb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5994ed6b4ab4299bc5908b601724fb9.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I2DrPoKdHN602LEE0gVJFJKe_J4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.527134+00 2025-12-09 10:15:34.527139+00 16250 DL31450#浅粉XL SPMX-20240815311455 \N \N \N 1 \N [{"file_id": "d616564a-36fa-47ad-8eba-c48e3ac8ab2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24315b283a76490daa0d7676d0afcfed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24315b283a76490daa0d7676d0afcfed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24315b283a76490daa0d7676d0afcfed.jpg", "file_size": 18942, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#浅粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24315b283a76490daa0d7676d0afcfed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24315b283a76490daa0d7676d0afcfed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24315b283a76490daa0d7676d0afcfed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24315b283a76490daa0d7676d0afcfed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24315b283a76490daa0d7676d0afcfed.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFu91qjg2UoJasKKAbz_UYHXVDY=", "createTime": "2024-08-15 15:00:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.529689+00 2025-12-09 10:15:34.529694+00 16251 85024#4码+8码 SPMX-20240815311463 \N \N \N 1 \N [{"file_id": "c2309565-c5b2-4993-8a82-075995ea17e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20f1983e0fcb4ef2bda00c6451905fe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20f1983e0fcb4ef2bda00c6451905fe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20f1983e0fcb4ef2bda00c6451905fe2.jpg", "file_size": 21916, "is_delete": false, "file_type": 1, "original_file_name": "85024#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f1983e0fcb4ef2bda00c6451905fe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f1983e0fcb4ef2bda00c6451905fe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f1983e0fcb4ef2bda00c6451905fe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20f1983e0fcb4ef2bda00c6451905fe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20f1983e0fcb4ef2bda00c6451905fe2.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:53F1UH2bY4KSm-VhuiNa-3Fi9Wg=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.532249+00 2025-12-09 10:15:34.532256+00 16252 0006FWE#L-番禺调色 SPMX-20240815311465 \N \N \N 1 \N [{"file_id": "7b652154-c5b5-492a-80f1-7c13a67803f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8369ffeef93b4a54b645a90a4a3f8307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8369ffeef93b4a54b645a90a4a3f8307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8369ffeef93b4a54b645a90a4a3f8307.jpg", "file_size": 16020, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#L-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8369ffeef93b4a54b645a90a4a3f8307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8369ffeef93b4a54b645a90a4a3f8307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8369ffeef93b4a54b645a90a4a3f8307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8369ffeef93b4a54b645a90a4a3f8307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8369ffeef93b4a54b645a90a4a3f8307.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DdAue3JmfBfobyegdW99qh1-ki4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.534948+00 2025-12-09 10:15:34.534956+00 16253 CC093FW#4XL绿 SPMX-20240815311464 \N \N \N 1 \N [{"file_id": "9ac8b4be-9d5d-4ed3-a29c-cc6715c98983", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7a11bf4caf1462f81ffb49b794a20b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7a11bf4caf1462f81ffb49b794a20b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7a11bf4caf1462f81ffb49b794a20b3.jpg", "file_size": 14180, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#4XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a11bf4caf1462f81ffb49b794a20b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a11bf4caf1462f81ffb49b794a20b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7a11bf4caf1462f81ffb49b794a20b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7a11bf4caf1462f81ffb49b794a20b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7a11bf4caf1462f81ffb49b794a20b3.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOq84LZ1Rvqcdj4jgb6CqyY0p_k=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.537967+00 2025-12-09 10:15:34.537974+00 16254 HX0001G#绿底 SPMX-20240815311461 \N \N \N 1 \N [{"file_id": "3b6f748f-f685-4929-b026-5018792fefab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a83e24a8e78492cbafb37155c2ff26c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a83e24a8e78492cbafb37155c2ff26c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a83e24a8e78492cbafb37155c2ff26c.jpg", "file_size": 8837, "is_delete": false, "file_type": 1, "original_file_name": "HX0001G#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a83e24a8e78492cbafb37155c2ff26c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a83e24a8e78492cbafb37155c2ff26c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a83e24a8e78492cbafb37155c2ff26c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a83e24a8e78492cbafb37155c2ff26c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a83e24a8e78492cbafb37155c2ff26c.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGPpptgO5gm-mk_yRMtZK4ev1no=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.540829+00 2025-12-09 10:15:34.540834+00 16255 230120#绿色 SPMX-20240815311457 \N \N \N 1 \N [{"file_id": "b928c47b-07dc-4f02-817c-e9c81926c94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b74ba91d66fd48eeb55eed3cc57896f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b74ba91d66fd48eeb55eed3cc57896f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b74ba91d66fd48eeb55eed3cc57896f5.jpg", "file_size": 24165, "is_delete": false, "file_type": 1, "original_file_name": "230120#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74ba91d66fd48eeb55eed3cc57896f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74ba91d66fd48eeb55eed3cc57896f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74ba91d66fd48eeb55eed3cc57896f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b74ba91d66fd48eeb55eed3cc57896f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b74ba91d66fd48eeb55eed3cc57896f5.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHZE2Tk6IojAIBZFSQ4gRi6oc0o=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.543625+00 2025-12-09 10:15:34.543631+00 16256 JTSS702FW#VS-D3 SPMX-20240815311460 \N \N \N 1 \N [{"file_id": "29e7aea0-d8a6-4006-b396-712df2985ca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed269cb49708497493ec5a0ed5c3daf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed269cb49708497493ec5a0ed5c3daf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed269cb49708497493ec5a0ed5c3daf7.jpg", "file_size": 8838, "is_delete": false, "file_type": 1, "original_file_name": "JTSS702FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed269cb49708497493ec5a0ed5c3daf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed269cb49708497493ec5a0ed5c3daf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed269cb49708497493ec5a0ed5c3daf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed269cb49708497493ec5a0ed5c3daf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed269cb49708497493ec5a0ed5c3daf7.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eU1D44A9GRiXQXLnFSZRQaDiljk=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.546427+00 2025-12-09 10:15:34.546433+00 16257 1225-63#上衣100码 SPMX-20240815311462 \N \N \N 1 \N [{"file_id": "5a1cf786-f5f0-4c60-b22e-9dbce6f91768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg", "file_size": 19190, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#上衣100码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5cd8fcb02b6471b8de38ad9c94aa7fc.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IS1kSEw-S2qIQsfWj0QZkI_37U=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.549218+00 2025-12-09 10:15:34.549224+00 16258 FX0003-124#RC23 SPMX-20240815311468 \N \N \N 1 \N [{"file_id": "5e3baa64-39f1-47db-9aaf-6e83b45df6a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fb8069cf9634ea9af4d16080515099b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fb8069cf9634ea9af4d16080515099b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fb8069cf9634ea9af4d16080515099b.jpg", "file_size": 44533, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-124#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fb8069cf9634ea9af4d16080515099b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fb8069cf9634ea9af4d16080515099b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fb8069cf9634ea9af4d16080515099b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fb8069cf9634ea9af4d16080515099b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fb8069cf9634ea9af4d16080515099b.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbZCtNg7Trop1Ky3y3KWrwtu5c4=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.55207+00 2025-12-09 10:15:34.552076+00 16259 LJH1856-2#花色黑色 SPMX-20240815311469 \N \N \N 1 \N [{"file_id": "b759206c-c4bd-4c0e-8d8a-3499f6c5d2b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "445c518363e841de8b78be084db2dcc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "445c518363e841de8b78be084db2dcc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "445c518363e841de8b78be084db2dcc4.jpg", "file_size": 53412, "is_delete": false, "file_type": 1, "original_file_name": "LJH1856-2#花色黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c518363e841de8b78be084db2dcc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c518363e841de8b78be084db2dcc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445c518363e841de8b78be084db2dcc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/445c518363e841de8b78be084db2dcc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/445c518363e841de8b78be084db2dcc4.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCpLv1JutRt6zC8veLv1OpUcIDE=", "createTime": "2024-08-15 15:00:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.554872+00 2025-12-09 10:15:34.554878+00 16260 HX0002FW#VS-D3 SPMX-20240815311470 \N \N \N 1 \N [{"file_id": "22689a75-d11b-4a9c-a4a1-6119731192fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d9ce2606ec84aa5b7a9879d00aef51f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d9ce2606ec84aa5b7a9879d00aef51f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d9ce2606ec84aa5b7a9879d00aef51f.jpg", "file_size": 12384, "is_delete": false, "file_type": 1, "original_file_name": "HX0002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9ce2606ec84aa5b7a9879d00aef51f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9ce2606ec84aa5b7a9879d00aef51f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9ce2606ec84aa5b7a9879d00aef51f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d9ce2606ec84aa5b7a9879d00aef51f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d9ce2606ec84aa5b7a9879d00aef51f.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmpIn0z_0mMZ42mJUPTiXms0xGw=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.557607+00 2025-12-09 10:15:34.557613+00 16261 1225-63#上衣110码 SPMX-20240815311476 \N \N \N 1 \N [{"file_id": "883a6685-5923-4be8-97ef-a6185cd4e35f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15e345701c7b4357b5ff3e30bee6964b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15e345701c7b4357b5ff3e30bee6964b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15e345701c7b4357b5ff3e30bee6964b.jpg", "file_size": 19453, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#上衣110码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e345701c7b4357b5ff3e30bee6964b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e345701c7b4357b5ff3e30bee6964b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e345701c7b4357b5ff3e30bee6964b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15e345701c7b4357b5ff3e30bee6964b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15e345701c7b4357b5ff3e30bee6964b.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a7QWYDmAKoGgF3Bt7DvoWFjXXbo=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.560415+00 2025-12-09 10:15:34.560422+00 16262 85024#6码 SPMX-20240815311477 \N \N \N 1 \N [{"file_id": "ee8b0475-ef98-48c2-9b35-3a4159e63287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ec6e49173694c2a9dfb3f78cb90f6c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ec6e49173694c2a9dfb3f78cb90f6c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ec6e49173694c2a9dfb3f78cb90f6c8.jpg", "file_size": 21288, "is_delete": false, "file_type": 1, "original_file_name": "85024#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec6e49173694c2a9dfb3f78cb90f6c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec6e49173694c2a9dfb3f78cb90f6c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec6e49173694c2a9dfb3f78cb90f6c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ec6e49173694c2a9dfb3f78cb90f6c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ec6e49173694c2a9dfb3f78cb90f6c8.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lH5ONe0iYZLkKW2zqvAhGdSEdFE=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.563264+00 2025-12-09 10:15:34.56327+00 16263 23017FWF#V5曲线 SPMX-20240815311473 \N \N \N 1 \N [{"file_id": "2eebc1ab-6d38-4cb0-9d5c-8b79be216446", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "166e66071f2e43f0a0347d3449eeefc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "166e66071f2e43f0a0347d3449eeefc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "166e66071f2e43f0a0347d3449eeefc4.jpg", "file_size": 13809, "is_delete": false, "file_type": 1, "original_file_name": "23017FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166e66071f2e43f0a0347d3449eeefc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166e66071f2e43f0a0347d3449eeefc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/166e66071f2e43f0a0347d3449eeefc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/166e66071f2e43f0a0347d3449eeefc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/166e66071f2e43f0a0347d3449eeefc4.jpg?e=1765361733&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FEVagAJnpT6ecnhEsDY8km7luY=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.566093+00 2025-12-09 10:15:34.566099+00 16264 LZ1352#上身2号色 SPMX-20240815311472 \N \N \N 1 \N [{"file_id": "e9b9cc1b-115a-48ec-bfda-206aa6bdddf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c4a9c34c4642b4a3fd9b902d822738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c4a9c34c4642b4a3fd9b902d822738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c4a9c34c4642b4a3fd9b902d822738.jpg", "file_size": 21048, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c4a9c34c4642b4a3fd9b902d822738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c4a9c34c4642b4a3fd9b902d822738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c4a9c34c4642b4a3fd9b902d822738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c4a9c34c4642b4a3fd9b902d822738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c4a9c34c4642b4a3fd9b902d822738.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q3DCk6IZsZF5aTWBGFimDjKNqC0=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.568903+00 2025-12-09 10:15:34.568914+00 16265 DL31450#浅粉袖子定位 SPMX-20240815311475 \N \N \N 1 \N [{"file_id": "9709fc43-c034-43f5-b27c-acb94fa200da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8803c71d0a7a46aba5ac3f80f4e6d871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8803c71d0a7a46aba5ac3f80f4e6d871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8803c71d0a7a46aba5ac3f80f4e6d871.jpg", "file_size": 14114, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#浅粉袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8803c71d0a7a46aba5ac3f80f4e6d871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8803c71d0a7a46aba5ac3f80f4e6d871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8803c71d0a7a46aba5ac3f80f4e6d871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8803c71d0a7a46aba5ac3f80f4e6d871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8803c71d0a7a46aba5ac3f80f4e6d871.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGDFw16JFazrL7EmfTv0OZrkHCg=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.571686+00 2025-12-09 10:15:34.571692+00 16266 JTSS703FW#VS-D3 SPMX-20240815311471 \N \N \N 1 \N [{"file_id": "77582cf2-b2d4-4b8e-9e01-088ba97aaa43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "056a56034a37432cb66cc391dd149da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "056a56034a37432cb66cc391dd149da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "056a56034a37432cb66cc391dd149da1.jpg", "file_size": 11773, "is_delete": false, "file_type": 1, "original_file_name": "JTSS703FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056a56034a37432cb66cc391dd149da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056a56034a37432cb66cc391dd149da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056a56034a37432cb66cc391dd149da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/056a56034a37432cb66cc391dd149da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/056a56034a37432cb66cc391dd149da1.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:piblMfplySlLFw0-ZtkEcIw8Wt4=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.574508+00 2025-12-09 10:15:34.574514+00 16267 CC093FW#4XL黄 SPMX-20240815311474 \N \N \N 1 \N [{"file_id": "de01bd62-55f5-4f39-a920-2cd25a96aebe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1816775ad9040638016f8393997a091.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1816775ad9040638016f8393997a091.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1816775ad9040638016f8393997a091.jpg", "file_size": 13711, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#4XL黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1816775ad9040638016f8393997a091.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1816775ad9040638016f8393997a091.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1816775ad9040638016f8393997a091.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1816775ad9040638016f8393997a091.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1816775ad9040638016f8393997a091.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XRq92Bc0Cl-0o6jI4JK-vNBLflk=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.57731+00 2025-12-09 10:15:34.577316+00 16268 LJH1857#原版紫 SPMX-20240815311479 \N \N \N 1 \N [{"file_id": "28991419-0833-4b43-9b36-12bc762f9bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74b8e78009794bd6917e0237cc3db729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74b8e78009794bd6917e0237cc3db729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74b8e78009794bd6917e0237cc3db729.jpg", "file_size": 80497, "is_delete": false, "file_type": 1, "original_file_name": "LJH1857#原版紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8e78009794bd6917e0237cc3db729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8e78009794bd6917e0237cc3db729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8e78009794bd6917e0237cc3db729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74b8e78009794bd6917e0237cc3db729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74b8e78009794bd6917e0237cc3db729.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3DfIeP3boMkAq5Px5k9DMmfRoE=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.580062+00 2025-12-09 10:15:34.580068+00 16269 HX0003FW#VS-D3 SPMX-20240815311480 \N \N \N 1 \N [{"file_id": "65899099-1526-44a2-9da8-ea48188bdc88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c6a0b759b8f4b24a306c4afbd4e2883.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c6a0b759b8f4b24a306c4afbd4e2883.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c6a0b759b8f4b24a306c4afbd4e2883.jpg", "file_size": 9504, "is_delete": false, "file_type": 1, "original_file_name": "HX0003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6a0b759b8f4b24a306c4afbd4e2883.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6a0b759b8f4b24a306c4afbd4e2883.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6a0b759b8f4b24a306c4afbd4e2883.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c6a0b759b8f4b24a306c4afbd4e2883.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c6a0b759b8f4b24a306c4afbd4e2883.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rODMFksy9H-6Py8VL3VtMKsIykA=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.608203+00 2025-12-09 10:15:34.608209+00 16279 23019#通码 SPMX-20240815311485 \N \N \N 1 \N [{"file_id": "e704eeec-5962-44cd-aff5-24cdfb150d70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg", "file_size": 14400, "is_delete": false, "file_type": 1, "original_file_name": "23019#通码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60e30d62e4bd4d0ca132ff0fa4c90cc2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hoo3YXa8q5e66FTrfATKbeNrcag=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.582875+00 2025-12-09 10:15:34.582881+00 16270 FX0003-125#兰色RC23 SPMX-20240815311482 \N \N \N 1 \N [{"file_id": "7bac3263-c2e0-4a74-b391-17ff79830e82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15e73e1e6d2c4c1997a9d91807100111.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15e73e1e6d2c4c1997a9d91807100111.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15e73e1e6d2c4c1997a9d91807100111.jpg", "file_size": 69668, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-125#兰色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e73e1e6d2c4c1997a9d91807100111.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e73e1e6d2c4c1997a9d91807100111.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15e73e1e6d2c4c1997a9d91807100111.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15e73e1e6d2c4c1997a9d91807100111.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15e73e1e6d2c4c1997a9d91807100111.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PZeocWmRJF9BWfiW83Wn2ntGXs4=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.585721+00 2025-12-09 10:15:34.585727+00 16271 0006FWE#M-番禺调色 SPMX-20240815311478 \N \N \N 1 \N [{"file_id": "114b852f-87a5-4c6d-92cf-3962598eb979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5881635f63b345798eb21d8c2b0e4e0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5881635f63b345798eb21d8c2b0e4e0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5881635f63b345798eb21d8c2b0e4e0e.jpg", "file_size": 15467, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#M-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5881635f63b345798eb21d8c2b0e4e0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5881635f63b345798eb21d8c2b0e4e0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5881635f63b345798eb21d8c2b0e4e0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5881635f63b345798eb21d8c2b0e4e0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5881635f63b345798eb21d8c2b0e4e0e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Km6FuWD4WhxC7j8_cXLkrTt0ooA=", "createTime": "2024-08-15 15:00:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.588521+00 2025-12-09 10:15:34.588527+00 16272 JTSS704FW#VS-D3 SPMX-20240815311481 \N \N \N 1 \N [{"file_id": "e7dda8a0-6ccd-4d52-b1a6-2c792a474859", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4019dd4eee5c4f5b81f7e4442d5aa038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4019dd4eee5c4f5b81f7e4442d5aa038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4019dd4eee5c4f5b81f7e4442d5aa038.jpg", "file_size": 17482, "is_delete": false, "file_type": 1, "original_file_name": "JTSS704FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4019dd4eee5c4f5b81f7e4442d5aa038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4019dd4eee5c4f5b81f7e4442d5aa038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4019dd4eee5c4f5b81f7e4442d5aa038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4019dd4eee5c4f5b81f7e4442d5aa038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4019dd4eee5c4f5b81f7e4442d5aa038.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wWGbylhGFHk0eIrZT0r9CD9TmNU=", "createTime": "2024-08-15 15:00:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.591327+00 2025-12-09 10:15:34.591333+00 16273 CC093FW#4XL黑 SPMX-20240815311484 \N \N \N 1 \N [{"file_id": "26cf6785-ef96-4cb9-953b-6b280d22fcab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6569b9659d6b46b48e98ce68c32a1153.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6569b9659d6b46b48e98ce68c32a1153.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6569b9659d6b46b48e98ce68c32a1153.jpg", "file_size": 14829, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#4XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569b9659d6b46b48e98ce68c32a1153.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569b9659d6b46b48e98ce68c32a1153.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6569b9659d6b46b48e98ce68c32a1153.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6569b9659d6b46b48e98ce68c32a1153.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6569b9659d6b46b48e98ce68c32a1153.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DjcxH9iqM9FCMZqqn8WXlGXhs2E=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.594138+00 2025-12-09 10:15:34.594144+00 16274 LZ1352#上身3号色 SPMX-20240815311483 \N \N \N 1 \N [{"file_id": "83516b54-5b4c-4034-9ff2-9016520228a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5056bf4fa4d4a6a9a9189b082c25525.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5056bf4fa4d4a6a9a9189b082c25525.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5056bf4fa4d4a6a9a9189b082c25525.jpg", "file_size": 20592, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5056bf4fa4d4a6a9a9189b082c25525.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5056bf4fa4d4a6a9a9189b082c25525.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5056bf4fa4d4a6a9a9189b082c25525.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5056bf4fa4d4a6a9a9189b082c25525.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5056bf4fa4d4a6a9a9189b082c25525.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GEaKrNmhmGezugqvgSRyaZ59Sss=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.596964+00 2025-12-09 10:15:34.596969+00 16275 85024#乱花 SPMX-20240815311486 \N \N \N 1 \N [{"file_id": "175e3819-529f-435b-a2bd-d3e337e52756", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e30e6c1070654612bd56699c050d57f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e30e6c1070654612bd56699c050d57f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e30e6c1070654612bd56699c050d57f9.jpg", "file_size": 9208, "is_delete": false, "file_type": 1, "original_file_name": "85024#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30e6c1070654612bd56699c050d57f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30e6c1070654612bd56699c050d57f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e30e6c1070654612bd56699c050d57f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e30e6c1070654612bd56699c050d57f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e30e6c1070654612bd56699c050d57f9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oY11jDmK_IAFNZ0yuK8I8V89gAg=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.599735+00 2025-12-09 10:15:34.599741+00 16276 LJH1857#橙 SPMX-20240815311489 \N \N \N 1 \N [{"file_id": "8053668b-fc55-4713-bf5b-15975d006d69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e322c56f7664808ba56388f6947e253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e322c56f7664808ba56388f6947e253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e322c56f7664808ba56388f6947e253.jpg", "file_size": 82200, "is_delete": false, "file_type": 1, "original_file_name": "LJH1857#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e322c56f7664808ba56388f6947e253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e322c56f7664808ba56388f6947e253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e322c56f7664808ba56388f6947e253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e322c56f7664808ba56388f6947e253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e322c56f7664808ba56388f6947e253.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgEdqU6X49GoNXMKtXn5uyIvWwI=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.602528+00 2025-12-09 10:15:34.602534+00 16277 HX001# SPMX-20240815311487 \N \N \N 1 \N [{"file_id": "1091e67f-e0aa-44ae-8ff9-f3cda8f4fe93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a554a4d8460a4d5786a92f3b4b053dea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a554a4d8460a4d5786a92f3b4b053dea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a554a4d8460a4d5786a92f3b4b053dea.jpg", "file_size": 11228, "is_delete": false, "file_type": 1, "original_file_name": "HX001#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a554a4d8460a4d5786a92f3b4b053dea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a554a4d8460a4d5786a92f3b4b053dea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a554a4d8460a4d5786a92f3b4b053dea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a554a4d8460a4d5786a92f3b4b053dea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a554a4d8460a4d5786a92f3b4b053dea.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SerjgcOPOIh7yacF3vq2_0M6Q3k=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.605326+00 2025-12-09 10:15:34.605331+00 16278 DL31450#玫红2XL SPMX-20240815311488 \N \N \N 1 \N [{"file_id": "d9aeba0d-9f6b-480d-9db8-944d03122bf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edeec82d1c124a8cb96c96d1d8db884e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edeec82d1c124a8cb96c96d1d8db884e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edeec82d1c124a8cb96c96d1d8db884e.jpg", "file_size": 19089, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#玫红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeec82d1c124a8cb96c96d1d8db884e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeec82d1c124a8cb96c96d1d8db884e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edeec82d1c124a8cb96c96d1d8db884e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edeec82d1c124a8cb96c96d1d8db884e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edeec82d1c124a8cb96c96d1d8db884e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcsDrNy9kDft2z6USLRmoIN_Luo=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.611032+00 2025-12-09 10:15:34.611039+00 16280 LZ1352#上身4号色 SPMX-20240815311494 \N \N \N 1 \N [{"file_id": "a5cfc713-8a65-41fc-9275-4eabb50c562e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76196ccace244ed9afd221c920c29a0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76196ccace244ed9afd221c920c29a0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76196ccace244ed9afd221c920c29a0a.jpg", "file_size": 21342, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76196ccace244ed9afd221c920c29a0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76196ccace244ed9afd221c920c29a0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76196ccace244ed9afd221c920c29a0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76196ccace244ed9afd221c920c29a0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76196ccace244ed9afd221c920c29a0a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IHXV1EOApN_aCMfaviDQURYTtI=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.613891+00 2025-12-09 10:15:34.613897+00 16281 2301FWF#V5曲线 SPMX-20240815311496 \N \N \N 1 \N [{"file_id": "95680f3b-e971-4c66-9853-1c8b25a1d5ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f2b5d71eff440bb4b75e0f7022cfb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f2b5d71eff440bb4b75e0f7022cfb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f2b5d71eff440bb4b75e0f7022cfb8.jpg", "file_size": 19045, "is_delete": false, "file_type": 1, "original_file_name": "2301FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f2b5d71eff440bb4b75e0f7022cfb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f2b5d71eff440bb4b75e0f7022cfb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f2b5d71eff440bb4b75e0f7022cfb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f2b5d71eff440bb4b75e0f7022cfb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f2b5d71eff440bb4b75e0f7022cfb8.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgvuQB8tzyuBESLKVLjiHGvEd1Q=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.616702+00 2025-12-09 10:15:34.616712+00 16282 0006FWE#XL-番禺调色 SPMX-20240815311500 \N \N \N 1 \N [{"file_id": "11a05923-70d8-4fe7-afa4-35cf244e4b73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09d969bec3ee4482bf4bcd2e89bb95bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09d969bec3ee4482bf4bcd2e89bb95bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09d969bec3ee4482bf4bcd2e89bb95bb.jpg", "file_size": 16870, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d969bec3ee4482bf4bcd2e89bb95bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d969bec3ee4482bf4bcd2e89bb95bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d969bec3ee4482bf4bcd2e89bb95bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09d969bec3ee4482bf4bcd2e89bb95bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09d969bec3ee4482bf4bcd2e89bb95bb.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_i3FCMHpnvMJf42mSrbTlRWb-E=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.619497+00 2025-12-09 10:15:34.619503+00 16283 CC093FW#5XL白 SPMX-20240815311495 \N \N \N 1 \N [{"file_id": "f4dbc363-bbdc-40eb-981f-d20748d425d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3abc16623d804fd39f4287298e9934c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3abc16623d804fd39f4287298e9934c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3abc16623d804fd39f4287298e9934c4.jpg", "file_size": 13150, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#5XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abc16623d804fd39f4287298e9934c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abc16623d804fd39f4287298e9934c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abc16623d804fd39f4287298e9934c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3abc16623d804fd39f4287298e9934c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3abc16623d804fd39f4287298e9934c4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xu_qkCKkhIiwfp5twmEP3lpxyZY=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.622278+00 2025-12-09 10:15:34.622283+00 16284 0006FWE#S-番禺调色 SPMX-20240815311490 \N \N \N 1 \N [{"file_id": "d599ad8c-1dbe-4fed-8a1c-a882252da0a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "920984667401436882e7607c5ecc4f8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "920984667401436882e7607c5ecc4f8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "920984667401436882e7607c5ecc4f8c.jpg", "file_size": 15919, "is_delete": false, "file_type": 1, "original_file_name": "0006FWE#S-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920984667401436882e7607c5ecc4f8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920984667401436882e7607c5ecc4f8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920984667401436882e7607c5ecc4f8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/920984667401436882e7607c5ecc4f8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/920984667401436882e7607c5ecc4f8c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fm7P5FFojICYhEDohqIqyHD2Lm8=", "createTime": "2024-08-15 15:00:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.625119+00 2025-12-09 10:15:34.625125+00 16285 DL31450#玫红L SPMX-20240815311499 \N \N \N 1 \N [{"file_id": "d22e0565-be7e-45c5-acd9-28522ee02082", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7bdb9a066a44de8bb9e72a22c0960f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7bdb9a066a44de8bb9e72a22c0960f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7bdb9a066a44de8bb9e72a22c0960f3.jpg", "file_size": 19169, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#玫红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bdb9a066a44de8bb9e72a22c0960f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bdb9a066a44de8bb9e72a22c0960f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bdb9a066a44de8bb9e72a22c0960f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7bdb9a066a44de8bb9e72a22c0960f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7bdb9a066a44de8bb9e72a22c0960f3.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zc-dqoeZcUsFZhqEYmvdP5hoqOc=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.627922+00 2025-12-09 10:15:34.627928+00 16286 85025#10码+12码 SPMX-20240815311497 \N \N \N 1 \N [{"file_id": "0f885d54-386a-40eb-96b4-1ba98e2f5d9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04a2115c45cf42c2a2eb0eef795907e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04a2115c45cf42c2a2eb0eef795907e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04a2115c45cf42c2a2eb0eef795907e4.jpg", "file_size": 19885, "is_delete": false, "file_type": 1, "original_file_name": "85025#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a2115c45cf42c2a2eb0eef795907e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a2115c45cf42c2a2eb0eef795907e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a2115c45cf42c2a2eb0eef795907e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04a2115c45cf42c2a2eb0eef795907e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04a2115c45cf42c2a2eb0eef795907e4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ii3_z_hfk7AaeOySmRO7VuRJ-M=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.630679+00 2025-12-09 10:15:34.630684+00 16287 FX0003-126#RC23-橘 SPMX-20240815311491 \N \N \N 1 \N [{"file_id": "51919b05-fe1e-4343-8b39-c4a1273b1e92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39ccce75c468423bbfdac1d48587b74d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39ccce75c468423bbfdac1d48587b74d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39ccce75c468423bbfdac1d48587b74d.jpg", "file_size": 47899, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23-橘.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ccce75c468423bbfdac1d48587b74d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ccce75c468423bbfdac1d48587b74d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ccce75c468423bbfdac1d48587b74d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39ccce75c468423bbfdac1d48587b74d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39ccce75c468423bbfdac1d48587b74d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdB3j7ZGlb6mXE8KENAGwA7_93Y=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.633664+00 2025-12-09 10:15:34.633669+00 16288 JTSS705FW#VS-D3 SPMX-20240815311492 \N \N \N 1 \N [{"file_id": "7a865fb1-aa3d-44cf-b0a6-d7aff6d5799c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb810a1bb9db433e8a389b5e0e97f696.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb810a1bb9db433e8a389b5e0e97f696.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb810a1bb9db433e8a389b5e0e97f696.jpg", "file_size": 8819, "is_delete": false, "file_type": 1, "original_file_name": "JTSS705FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb810a1bb9db433e8a389b5e0e97f696.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb810a1bb9db433e8a389b5e0e97f696.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb810a1bb9db433e8a389b5e0e97f696.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb810a1bb9db433e8a389b5e0e97f696.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb810a1bb9db433e8a389b5e0e97f696.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpM0NoBDsigYjvA6OERv010zds0=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.636799+00 2025-12-09 10:15:34.636804+00 16289 1225-63#上衣120码 SPMX-20240815311493 \N \N \N 1 \N [{"file_id": "68ab4c23-0c5a-4170-b953-2608a5475cc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c65054457ff646a4847d7178df3562ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c65054457ff646a4847d7178df3562ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c65054457ff646a4847d7178df3562ea.jpg", "file_size": 18532, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#上衣120码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65054457ff646a4847d7178df3562ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65054457ff646a4847d7178df3562ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65054457ff646a4847d7178df3562ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c65054457ff646a4847d7178df3562ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c65054457ff646a4847d7178df3562ea.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q6wcVP_Y5lcwcMrFDXKR70wpsCs=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.639672+00 2025-12-09 10:15:34.639676+00 16290 HX001#2019 SPMX-20240815311498 \N \N \N 1 \N [{"file_id": "3961e1f3-3804-47c8-adc9-68471baf977b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ffdfffb074b4cb49038be22b249756a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ffdfffb074b4cb49038be22b249756a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ffdfffb074b4cb49038be22b249756a.jpg", "file_size": 8088, "is_delete": false, "file_type": 1, "original_file_name": "HX001#2019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffdfffb074b4cb49038be22b249756a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffdfffb074b4cb49038be22b249756a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ffdfffb074b4cb49038be22b249756a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ffdfffb074b4cb49038be22b249756a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ffdfffb074b4cb49038be22b249756a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnEyQMqQJ-wdJ97_5rjUPYV3FhE=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.64228+00 2025-12-09 10:15:34.642284+00 16291 LJH1857#绿 SPMX-20240815311501 \N \N \N 1 \N [{"file_id": "e1898889-afac-4954-85ee-e4a807abee98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a41fe53b49c64fdbb83b3012e3642324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a41fe53b49c64fdbb83b3012e3642324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a41fe53b49c64fdbb83b3012e3642324.jpg", "file_size": 79370, "is_delete": false, "file_type": 1, "original_file_name": "LJH1857#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41fe53b49c64fdbb83b3012e3642324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41fe53b49c64fdbb83b3012e3642324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41fe53b49c64fdbb83b3012e3642324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a41fe53b49c64fdbb83b3012e3642324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a41fe53b49c64fdbb83b3012e3642324.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iAIVohrA450vR40iEd7syUUYsTk=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.659008+00 2025-12-09 10:15:34.659013+00 16297 CC093FW#5XL粉 SPMX-20240815311505 \N \N \N 1 \N [{"file_id": "2d9c8fce-4aa5-4e21-84c2-618928b6732e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48dfd45d99184c3098261ec4ea2dfd34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48dfd45d99184c3098261ec4ea2dfd34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48dfd45d99184c3098261ec4ea2dfd34.jpg", "file_size": 12390, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#5XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dfd45d99184c3098261ec4ea2dfd34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dfd45d99184c3098261ec4ea2dfd34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48dfd45d99184c3098261ec4ea2dfd34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48dfd45d99184c3098261ec4ea2dfd34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48dfd45d99184c3098261ec4ea2dfd34.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XuQ7frh2BhSxUl3yYwta_CgtQuE=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.645134+00 2025-12-09 10:15:34.645139+00 16292 1225-63#上衣90码 SPMX-20240815311502 \N \N \N 1 \N [{"file_id": "be048d16-a879-4a0f-a69a-391f7c447eb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abc77125f4e84ef89483f026e65f8145.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abc77125f4e84ef89483f026e65f8145.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abc77125f4e84ef89483f026e65f8145.jpg", "file_size": 20994, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#上衣90码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc77125f4e84ef89483f026e65f8145.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc77125f4e84ef89483f026e65f8145.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abc77125f4e84ef89483f026e65f8145.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abc77125f4e84ef89483f026e65f8145.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abc77125f4e84ef89483f026e65f8145.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C0HKs5FNXXBHtRzgfO0n_txoEgE=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.647997+00 2025-12-09 10:15:34.648002+00 16293 HX001#D SPMX-20240815311508 \N \N \N 1 \N [{"file_id": "078d0c1b-4a51-452c-8951-21627789c56f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae4a17d87dc4487399efcd03e5b105d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae4a17d87dc4487399efcd03e5b105d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae4a17d87dc4487399efcd03e5b105d7.jpg", "file_size": 16916, "is_delete": false, "file_type": 1, "original_file_name": "HX001#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4a17d87dc4487399efcd03e5b105d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4a17d87dc4487399efcd03e5b105d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4a17d87dc4487399efcd03e5b105d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae4a17d87dc4487399efcd03e5b105d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae4a17d87dc4487399efcd03e5b105d7.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jr4lIUBx-jYWmQc57Sj4-wur3S0=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.650813+00 2025-12-09 10:15:34.650817+00 16294 85025#14码 SPMX-20240815311509 \N \N \N 1 \N [{"file_id": "88d92740-317e-4a30-8053-66056f2780ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1080ee553c164618aeb92d9a61f81f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1080ee553c164618aeb92d9a61f81f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1080ee553c164618aeb92d9a61f81f41.jpg", "file_size": 17492, "is_delete": false, "file_type": 1, "original_file_name": "85025#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1080ee553c164618aeb92d9a61f81f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1080ee553c164618aeb92d9a61f81f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1080ee553c164618aeb92d9a61f81f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1080ee553c164618aeb92d9a61f81f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1080ee553c164618aeb92d9a61f81f41.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiNKTAOpMFcHN-izeLPOY0C6XJs=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.653839+00 2025-12-09 10:15:34.653844+00 16295 JTSS707FW#VS-D3 SPMX-20240815311511 \N \N \N 1 \N [{"file_id": "d948d45d-754e-4531-9c50-5747577ce979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae59bd21e943445091f5fbfd67999722.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae59bd21e943445091f5fbfd67999722.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae59bd21e943445091f5fbfd67999722.jpg", "file_size": 12266, "is_delete": false, "file_type": 1, "original_file_name": "JTSS707FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae59bd21e943445091f5fbfd67999722.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae59bd21e943445091f5fbfd67999722.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae59bd21e943445091f5fbfd67999722.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae59bd21e943445091f5fbfd67999722.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae59bd21e943445091f5fbfd67999722.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrJ2ACo3IkK4cGM65JEnTFRKZPY=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.656594+00 2025-12-09 10:15:34.656599+00 16296 JTSS706FW#VS-D3 SPMX-20240815311503 \N \N \N 1 \N [{"file_id": "11c02cbd-46f3-40f0-b7eb-2e5596eb83cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "501d1a4d993146a09a01b363d801ed9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "501d1a4d993146a09a01b363d801ed9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "501d1a4d993146a09a01b363d801ed9d.jpg", "file_size": 16857, "is_delete": false, "file_type": 1, "original_file_name": "JTSS706FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501d1a4d993146a09a01b363d801ed9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501d1a4d993146a09a01b363d801ed9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/501d1a4d993146a09a01b363d801ed9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/501d1a4d993146a09a01b363d801ed9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/501d1a4d993146a09a01b363d801ed9d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0YvgkWuwPTLCLtN6qWJpI1GKzc=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.661467+00 2025-12-09 10:15:34.661471+00 16298 FX0003-126#RC23-粉 SPMX-20240815311506 \N \N \N 1 \N [{"file_id": "f4a4e703-278b-483b-9c9a-3bc5696d4109", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42045f65eb3d40bab0df597d33106608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42045f65eb3d40bab0df597d33106608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42045f65eb3d40bab0df597d33106608.jpg", "file_size": 47021, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23-粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42045f65eb3d40bab0df597d33106608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42045f65eb3d40bab0df597d33106608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42045f65eb3d40bab0df597d33106608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42045f65eb3d40bab0df597d33106608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42045f65eb3d40bab0df597d33106608.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHRCm4CMUJQBgiFowdQW0C5S62E=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.663909+00 2025-12-09 10:15:34.663913+00 16299 0006美国国旗#3XL SPMX-20240815311512 \N \N \N 1 \N [{"file_id": "cbdae072-9ee4-4890-a09d-4fd8f6527283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68cc25163aac4facbebe69cfc86d2eae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68cc25163aac4facbebe69cfc86d2eae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68cc25163aac4facbebe69cfc86d2eae.jpg", "file_size": 18963, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cc25163aac4facbebe69cfc86d2eae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cc25163aac4facbebe69cfc86d2eae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cc25163aac4facbebe69cfc86d2eae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68cc25163aac4facbebe69cfc86d2eae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68cc25163aac4facbebe69cfc86d2eae.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Ruc5tVP-vsAHnRX9_H0Rpx96eY=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.666421+00 2025-12-09 10:15:34.666426+00 16300 2302#-彩兰 SPMX-20240815311507 \N \N \N 1 \N [{"file_id": "8273c3c1-993f-4474-b136-f29701bb7cc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c829c9b73fe4feca860eaf6a5c2caea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c829c9b73fe4feca860eaf6a5c2caea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c829c9b73fe4feca860eaf6a5c2caea.jpg", "file_size": 15013, "is_delete": false, "file_type": 1, "original_file_name": "2302#-彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c829c9b73fe4feca860eaf6a5c2caea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c829c9b73fe4feca860eaf6a5c2caea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c829c9b73fe4feca860eaf6a5c2caea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c829c9b73fe4feca860eaf6a5c2caea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c829c9b73fe4feca860eaf6a5c2caea.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUuKjqEMrn8UQw5RpCg4WJ_PDyk=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.668827+00 2025-12-09 10:15:34.668831+00 16301 1225-63#裤子100码 SPMX-20240815311513 \N \N \N 1 \N [{"file_id": "0a0b2545-9fb9-4dac-b042-c07d81cdc322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26569719886249ba84b0541cec5ad4fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26569719886249ba84b0541cec5ad4fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26569719886249ba84b0541cec5ad4fc.jpg", "file_size": 18663, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子100码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26569719886249ba84b0541cec5ad4fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26569719886249ba84b0541cec5ad4fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26569719886249ba84b0541cec5ad4fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26569719886249ba84b0541cec5ad4fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26569719886249ba84b0541cec5ad4fc.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZFR5hsssIjLeEeHIbUsm5XFJ0k=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.671048+00 2025-12-09 10:15:34.671052+00 16302 LZ1352#上身5号色 SPMX-20240815311504 \N \N \N 1 \N [{"file_id": "ec54047c-c6b3-41bc-9635-63023b4d8e2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a64177af12d477690888a1ced317c7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a64177af12d477690888a1ced317c7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a64177af12d477690888a1ced317c7e.jpg", "file_size": 20677, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a64177af12d477690888a1ced317c7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a64177af12d477690888a1ced317c7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a64177af12d477690888a1ced317c7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a64177af12d477690888a1ced317c7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a64177af12d477690888a1ced317c7e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pc09YQQCLXk7HWK0s_vpM2FwYQo=", "createTime": "2024-08-15 15:00:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.673501+00 2025-12-09 10:15:34.673506+00 16303 DL31450#玫红XL SPMX-20240815311510 \N \N \N 1 \N [{"file_id": "506e42af-3ed0-43da-9da2-5b14f5ebb49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "825fe91097f448b399378e182ab1961a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "825fe91097f448b399378e182ab1961a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "825fe91097f448b399378e182ab1961a.jpg", "file_size": 18904, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#玫红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825fe91097f448b399378e182ab1961a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825fe91097f448b399378e182ab1961a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/825fe91097f448b399378e182ab1961a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/825fe91097f448b399378e182ab1961a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/825fe91097f448b399378e182ab1961a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwbwKYKDNRCm-ABEiUGWFAb6Nhk=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.675922+00 2025-12-09 10:15:34.675926+00 16304 1225-63#裤子100码补数 SPMX-20240815311522 \N \N \N 1 \N [{"file_id": "2c58104f-29d1-4252-984d-29ae8f15e02c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b25edb7c37864fc285ded34d53d07aee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b25edb7c37864fc285ded34d53d07aee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b25edb7c37864fc285ded34d53d07aee.jpg", "file_size": 9839, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子100码补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25edb7c37864fc285ded34d53d07aee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25edb7c37864fc285ded34d53d07aee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25edb7c37864fc285ded34d53d07aee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b25edb7c37864fc285ded34d53d07aee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b25edb7c37864fc285ded34d53d07aee.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-xTvD4ynQFDJFmjiarp-Gj8vQk=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.678139+00 2025-12-09 10:15:34.678144+00 16305 LZ1352#童装T2号色 SPMX-20240815311525 \N \N \N 1 \N [{"file_id": "96fc6ed5-5497-4d9a-99f7-d00af212d0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6a67734416a45c695f5a4424532b26c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6a67734416a45c695f5a4424532b26c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6a67734416a45c695f5a4424532b26c.jpg", "file_size": 17613, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a67734416a45c695f5a4424532b26c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a67734416a45c695f5a4424532b26c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6a67734416a45c695f5a4424532b26c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6a67734416a45c695f5a4424532b26c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6a67734416a45c695f5a4424532b26c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Y8OrrOTl-CN0qTdemhZSOBJn6w=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.680562+00 2025-12-09 10:15:34.680567+00 16306 FX0003-126#RC23-紫 SPMX-20240815311517 \N \N \N 1 \N [{"file_id": "364a2537-780a-4a23-aa7b-9777d0d11ddd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b247a62d41644b8183c61d866c9a8e6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b247a62d41644b8183c61d866c9a8e6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b247a62d41644b8183c61d866c9a8e6a.jpg", "file_size": 45525, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23-紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b247a62d41644b8183c61d866c9a8e6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b247a62d41644b8183c61d866c9a8e6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b247a62d41644b8183c61d866c9a8e6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b247a62d41644b8183c61d866c9a8e6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b247a62d41644b8183c61d866c9a8e6a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jcnWPt6pj1FP9x5x7U9SXhRTBUA=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.683029+00 2025-12-09 10:15:34.683034+00 16307 DL31450#玫红后幅定位 SPMX-20240815311519 \N \N \N 1 \N [{"file_id": "64b40a9a-1f79-4c1c-a2c0-26324c391b0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b772707f5c3046c9ac1dcbfa2ab8dc04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b772707f5c3046c9ac1dcbfa2ab8dc04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b772707f5c3046c9ac1dcbfa2ab8dc04.jpg", "file_size": 21554, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#玫红后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b772707f5c3046c9ac1dcbfa2ab8dc04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b772707f5c3046c9ac1dcbfa2ab8dc04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b772707f5c3046c9ac1dcbfa2ab8dc04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b772707f5c3046c9ac1dcbfa2ab8dc04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b772707f5c3046c9ac1dcbfa2ab8dc04.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OM1bgnQSt6S8TVEHcjVoqZx_CEU=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.685525+00 2025-12-09 10:15:34.68553+00 16308 LJH1858#桔色 SPMX-20240815311526 \N \N \N 1 \N [{"file_id": "2d287d6d-4b8b-47ad-bfd0-c12dcac1643b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0732a5c3b74540ca9a8f1a12eae0c089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0732a5c3b74540ca9a8f1a12eae0c089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0732a5c3b74540ca9a8f1a12eae0c089.jpg", "file_size": 70368, "is_delete": false, "file_type": 1, "original_file_name": "LJH1858#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0732a5c3b74540ca9a8f1a12eae0c089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0732a5c3b74540ca9a8f1a12eae0c089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0732a5c3b74540ca9a8f1a12eae0c089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0732a5c3b74540ca9a8f1a12eae0c089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0732a5c3b74540ca9a8f1a12eae0c089.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCyJIPEmlBZiNZyX5I6Ol9x3ns4=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.687947+00 2025-12-09 10:15:34.687951+00 16309 0006美国国旗#L SPMX-20240815311523 \N \N \N 1 \N [{"file_id": "daa49662-4697-4d69-afde-0c0840c3a4b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b99970980817437a983714d55a1f816c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b99970980817437a983714d55a1f816c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b99970980817437a983714d55a1f816c.jpg", "file_size": 17151, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99970980817437a983714d55a1f816c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99970980817437a983714d55a1f816c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99970980817437a983714d55a1f816c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b99970980817437a983714d55a1f816c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b99970980817437a983714d55a1f816c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0FLNah1C7Hwu62LY071JnhjwlC0=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.690152+00 2025-12-09 10:15:34.690157+00 16310 HX001#E蓝 SPMX-20240815311520 \N \N \N 1 \N [{"file_id": "f9519a73-e177-49b3-b7c4-5ce241ec0fb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af1ffdb2f4514f8b89ae7231ff2dad39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af1ffdb2f4514f8b89ae7231ff2dad39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af1ffdb2f4514f8b89ae7231ff2dad39.jpg", "file_size": 17750, "is_delete": false, "file_type": 1, "original_file_name": "HX001#E蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1ffdb2f4514f8b89ae7231ff2dad39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1ffdb2f4514f8b89ae7231ff2dad39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af1ffdb2f4514f8b89ae7231ff2dad39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af1ffdb2f4514f8b89ae7231ff2dad39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af1ffdb2f4514f8b89ae7231ff2dad39.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vf1TWwm5q2PgurV9hNr-y_8yd1w=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.692609+00 2025-12-09 10:15:34.692613+00 16311 2302#-枣红 SPMX-20240815311521 \N \N \N 1 \N [{"file_id": "a2a37e13-0531-456b-bd90-daf1ad75f5df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "509a6d6964e24dda955351e9a83f958f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "509a6d6964e24dda955351e9a83f958f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "509a6d6964e24dda955351e9a83f958f.jpg", "file_size": 14366, "is_delete": false, "file_type": 1, "original_file_name": "2302#-枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509a6d6964e24dda955351e9a83f958f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509a6d6964e24dda955351e9a83f958f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/509a6d6964e24dda955351e9a83f958f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/509a6d6964e24dda955351e9a83f958f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/509a6d6964e24dda955351e9a83f958f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwAud92yqz5KvtLVFegukn2kLMI=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.695041+00 2025-12-09 10:15:34.695046+00 16312 LJH1857#黄 SPMX-20240815311514 \N \N \N 1 \N [{"file_id": "f4cf2dd8-166d-42c1-ad63-acb379cc2f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aba0c2ff09af4542a28fe2e45b947ede.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aba0c2ff09af4542a28fe2e45b947ede.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aba0c2ff09af4542a28fe2e45b947ede.jpg", "file_size": 89192, "is_delete": false, "file_type": 1, "original_file_name": "LJH1857#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba0c2ff09af4542a28fe2e45b947ede.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba0c2ff09af4542a28fe2e45b947ede.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aba0c2ff09af4542a28fe2e45b947ede.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aba0c2ff09af4542a28fe2e45b947ede.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aba0c2ff09af4542a28fe2e45b947ede.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gS9V0wfmpmhwcmCi5LofmKozrj0=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.697237+00 2025-12-09 10:15:34.697242+00 16313 85025#4码+8码 SPMX-20240815311516 \N \N \N 1 \N [{"file_id": "8dc158d1-0d56-476f-92d3-f65462c2b8d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47515fe8409d4bdca782d2bf25de21e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47515fe8409d4bdca782d2bf25de21e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47515fe8409d4bdca782d2bf25de21e2.jpg", "file_size": 19657, "is_delete": false, "file_type": 1, "original_file_name": "85025#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47515fe8409d4bdca782d2bf25de21e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47515fe8409d4bdca782d2bf25de21e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47515fe8409d4bdca782d2bf25de21e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47515fe8409d4bdca782d2bf25de21e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47515fe8409d4bdca782d2bf25de21e2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9k8Li3NcZm-CQ7fzgYHJqj79TE=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.699677+00 2025-12-09 10:15:34.699682+00 16314 LZ1352#童装T1号色 SPMX-20240815311515 \N \N \N 1 \N [{"file_id": "d3d92b28-6b81-465d-90e6-dcab586195d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fefcbc2f92af450aa089c888cdd3c91e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fefcbc2f92af450aa089c888cdd3c91e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fefcbc2f92af450aa089c888cdd3c91e.jpg", "file_size": 16880, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefcbc2f92af450aa089c888cdd3c91e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefcbc2f92af450aa089c888cdd3c91e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefcbc2f92af450aa089c888cdd3c91e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fefcbc2f92af450aa089c888cdd3c91e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fefcbc2f92af450aa089c888cdd3c91e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RStqv8v6Xdmem-LxkRN85v8-Es8=", "createTime": "2024-08-15 15:00:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.702088+00 2025-12-09 10:15:34.702093+00 16315 CC093FW#5XL绿 SPMX-20240815311518 \N \N \N 1 \N [{"file_id": "7ee5f458-007a-46d0-8ae5-1fdaeece69e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26f75444edbe475cb90cbd601e192af8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26f75444edbe475cb90cbd601e192af8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26f75444edbe475cb90cbd601e192af8.jpg", "file_size": 13850, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#5XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f75444edbe475cb90cbd601e192af8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f75444edbe475cb90cbd601e192af8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f75444edbe475cb90cbd601e192af8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26f75444edbe475cb90cbd601e192af8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26f75444edbe475cb90cbd601e192af8.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hw0kSpwoWT6CceBNhHuGdC3jmR4=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.704295+00 2025-12-09 10:15:34.7043+00 16316 JTSS708FW#VS-D3 SPMX-20240815311524 \N \N \N 1 \N [{"file_id": "1fd057f8-1852-438b-bf4a-7a263cbf8164", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf31d749579045a4b2af83300707089f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf31d749579045a4b2af83300707089f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf31d749579045a4b2af83300707089f.jpg", "file_size": 11228, "is_delete": false, "file_type": 1, "original_file_name": "JTSS708FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf31d749579045a4b2af83300707089f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf31d749579045a4b2af83300707089f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf31d749579045a4b2af83300707089f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf31d749579045a4b2af83300707089f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf31d749579045a4b2af83300707089f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eYRLCyFQh6B9LgNMCd_qcjGkZY=", "createTime": "2024-08-15 15:00:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.706738+00 2025-12-09 10:15:34.706743+00 16317 85025#6码 SPMX-20240815311528 \N \N \N 1 \N [{"file_id": "bda98d0d-037c-4992-96db-7e15797d90bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b3ff54cd4d243139a238b5ed5ddef43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b3ff54cd4d243139a238b5ed5ddef43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b3ff54cd4d243139a238b5ed5ddef43.jpg", "file_size": 18904, "is_delete": false, "file_type": 1, "original_file_name": "85025#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3ff54cd4d243139a238b5ed5ddef43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3ff54cd4d243139a238b5ed5ddef43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3ff54cd4d243139a238b5ed5ddef43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b3ff54cd4d243139a238b5ed5ddef43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b3ff54cd4d243139a238b5ed5ddef43.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uxd5_X01dutZJmmX_o2R_0Z_rko=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.709139+00 2025-12-09 10:15:34.709144+00 16318 1225-63#裤子110码 SPMX-20240815311531 \N \N \N 1 \N [{"file_id": "ae907dd0-9929-4ad8-afd9-ce5697efc92c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afd816b6de1b441d93da5ff76454eb9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afd816b6de1b441d93da5ff76454eb9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afd816b6de1b441d93da5ff76454eb9a.jpg", "file_size": 16820, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子110码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd816b6de1b441d93da5ff76454eb9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd816b6de1b441d93da5ff76454eb9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd816b6de1b441d93da5ff76454eb9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afd816b6de1b441d93da5ff76454eb9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afd816b6de1b441d93da5ff76454eb9a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEMhztxAGzqlN7GInx3Onlv_cSk=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.711328+00 2025-12-09 10:15:34.711333+00 16319 LJH1858#白色 SPMX-20240815311537 \N \N \N 1 \N [{"file_id": "cc61eab1-32cc-4606-b602-8aa74b7ffa9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2653fa0d5fb840a39e5e0364ac90e4da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2653fa0d5fb840a39e5e0364ac90e4da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2653fa0d5fb840a39e5e0364ac90e4da.jpg", "file_size": 61375, "is_delete": false, "file_type": 1, "original_file_name": "LJH1858#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2653fa0d5fb840a39e5e0364ac90e4da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2653fa0d5fb840a39e5e0364ac90e4da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2653fa0d5fb840a39e5e0364ac90e4da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2653fa0d5fb840a39e5e0364ac90e4da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2653fa0d5fb840a39e5e0364ac90e4da.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GG0F-RrpSncgF-LstHopj4V57ik=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.713772+00 2025-12-09 10:15:34.713777+00 16320 0006美国国旗#M SPMX-20240815311533 \N \N \N 1 \N [{"file_id": "edd4a536-e262-410d-becf-76060be7eb71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "920d412c7d0248ea93dad38023b1ed98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "920d412c7d0248ea93dad38023b1ed98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "920d412c7d0248ea93dad38023b1ed98.jpg", "file_size": 16993, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920d412c7d0248ea93dad38023b1ed98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920d412c7d0248ea93dad38023b1ed98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/920d412c7d0248ea93dad38023b1ed98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/920d412c7d0248ea93dad38023b1ed98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/920d412c7d0248ea93dad38023b1ed98.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JX_OK9RmSWD53AhFfgW1N6MYpx4=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.716262+00 2025-12-09 10:15:34.716267+00 16321 JTSS709FW#VS-D3 SPMX-20240815311530 \N \N \N 1 \N [{"file_id": "5acc1f16-e8cd-485b-939a-f3276727cd72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ccd92fba834454bbd638a7d66af2f54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ccd92fba834454bbd638a7d66af2f54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ccd92fba834454bbd638a7d66af2f54.jpg", "file_size": 8394, "is_delete": false, "file_type": 1, "original_file_name": "JTSS709FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccd92fba834454bbd638a7d66af2f54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccd92fba834454bbd638a7d66af2f54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ccd92fba834454bbd638a7d66af2f54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ccd92fba834454bbd638a7d66af2f54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ccd92fba834454bbd638a7d66af2f54.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cu1KtRffuUZJyr3nPfJRa3YVtEY=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.718452+00 2025-12-09 10:15:34.718456+00 16322 CC093FW#5XL黄 SPMX-20240815311527 \N \N \N 1 \N [{"file_id": "88a4e40b-11f6-46a9-a772-747b218748c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4693d91cee804b2086cd4a639573d201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4693d91cee804b2086cd4a639573d201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4693d91cee804b2086cd4a639573d201.jpg", "file_size": 13378, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#5XL黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4693d91cee804b2086cd4a639573d201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4693d91cee804b2086cd4a639573d201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4693d91cee804b2086cd4a639573d201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4693d91cee804b2086cd4a639573d201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4693d91cee804b2086cd4a639573d201.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFNklFndsxPpjSiHQAW-mCoDdGw=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.72092+00 2025-12-09 10:15:34.720924+00 16323 FX0003-126#RC23-绿 SPMX-20240815311534 \N \N \N 1 \N [{"file_id": "a3a7a852-189a-4071-88c9-328c456274c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ba8c1c80a844d56bfe5f1c5b892812f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ba8c1c80a844d56bfe5f1c5b892812f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ba8c1c80a844d56bfe5f1c5b892812f.jpg", "file_size": 47315, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23-绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba8c1c80a844d56bfe5f1c5b892812f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba8c1c80a844d56bfe5f1c5b892812f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba8c1c80a844d56bfe5f1c5b892812f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ba8c1c80a844d56bfe5f1c5b892812f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ba8c1c80a844d56bfe5f1c5b892812f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CvUPP3kNecnXZpG7iIPgj1rAeDE=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.723326+00 2025-12-09 10:15:34.72333+00 16324 2302#-黄色 SPMX-20240815311535 \N \N \N 1 \N [{"file_id": "e042d679-2602-4dd3-93a6-0cb3ebde147d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80f5d06a863f48aaa9cf24a3c5272107.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80f5d06a863f48aaa9cf24a3c5272107.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80f5d06a863f48aaa9cf24a3c5272107.jpg", "file_size": 16320, "is_delete": false, "file_type": 1, "original_file_name": "2302#-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5d06a863f48aaa9cf24a3c5272107.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5d06a863f48aaa9cf24a3c5272107.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80f5d06a863f48aaa9cf24a3c5272107.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80f5d06a863f48aaa9cf24a3c5272107.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80f5d06a863f48aaa9cf24a3c5272107.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bykT2pXr-YXnxOUSu0eu5HpXSsU=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.725564+00 2025-12-09 10:15:34.725569+00 16325 DL31450#玫红袖子定位 SPMX-20240815311529 \N \N \N 1 \N [{"file_id": "6e648547-614d-4292-9afc-fdcdf620a17f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "302d9accfe3e4cc3a32ea6d3acf536bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "302d9accfe3e4cc3a32ea6d3acf536bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "302d9accfe3e4cc3a32ea6d3acf536bd.jpg", "file_size": 12747, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#玫红袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/302d9accfe3e4cc3a32ea6d3acf536bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/302d9accfe3e4cc3a32ea6d3acf536bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/302d9accfe3e4cc3a32ea6d3acf536bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/302d9accfe3e4cc3a32ea6d3acf536bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/302d9accfe3e4cc3a32ea6d3acf536bd.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BW3tTkoviAmju3n2K97pqvdnsYg=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.727963+00 2025-12-09 10:15:34.727967+00 16326 LZ1352#童装T3号色 SPMX-20240815311536 \N \N \N 1 \N [{"file_id": "cb2ef131-c959-4420-9e1a-b00c22ce9fef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63da733167c44c979c71138cc56d2b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63da733167c44c979c71138cc56d2b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63da733167c44c979c71138cc56d2b0c.jpg", "file_size": 16937, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da733167c44c979c71138cc56d2b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da733167c44c979c71138cc56d2b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63da733167c44c979c71138cc56d2b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63da733167c44c979c71138cc56d2b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63da733167c44c979c71138cc56d2b0c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5P87PK9ANQYOFouUAqvGOsnYzFs=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.73041+00 2025-12-09 10:15:34.730414+00 16327 HX001#H SPMX-20240815311532 \N \N \N 1 \N [{"file_id": "1b97d586-f722-401e-bbed-306f4eca14de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df4b6a277dc844a9945cb779d930eb2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df4b6a277dc844a9945cb779d930eb2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df4b6a277dc844a9945cb779d930eb2c.jpg", "file_size": 10636, "is_delete": false, "file_type": 1, "original_file_name": "HX001#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b6a277dc844a9945cb779d930eb2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b6a277dc844a9945cb779d930eb2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df4b6a277dc844a9945cb779d930eb2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df4b6a277dc844a9945cb779d930eb2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df4b6a277dc844a9945cb779d930eb2c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gabAXzLXujWTYHygf7gkgJd_cEc=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.732869+00 2025-12-09 10:15:34.732875+00 16328 JTSS710FW#VS-D3 SPMX-20240815311541 \N \N \N 1 \N [{"file_id": "e5441d3d-b3f7-470e-8c81-f50ba4ad39b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25f162177b7a47c7a638aece532835dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25f162177b7a47c7a638aece532835dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25f162177b7a47c7a638aece532835dd.jpg", "file_size": 11526, "is_delete": false, "file_type": 1, "original_file_name": "JTSS710FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f162177b7a47c7a638aece532835dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f162177b7a47c7a638aece532835dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f162177b7a47c7a638aece532835dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25f162177b7a47c7a638aece532835dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25f162177b7a47c7a638aece532835dd.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5LHqp3KGEUUaUsu9gFQ7JwPqcI=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.735601+00 2025-12-09 10:15:34.735606+00 16329 85025#乱花 SPMX-20240815311538 \N \N \N 1 \N [{"file_id": "fc4fdd9c-06f4-4b2b-bb6a-27c87e58b27e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17718f75146d4ddf8f734fbdce77a5a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17718f75146d4ddf8f734fbdce77a5a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17718f75146d4ddf8f734fbdce77a5a2.jpg", "file_size": 18111, "is_delete": false, "file_type": 1, "original_file_name": "85025#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17718f75146d4ddf8f734fbdce77a5a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17718f75146d4ddf8f734fbdce77a5a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17718f75146d4ddf8f734fbdce77a5a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17718f75146d4ddf8f734fbdce77a5a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17718f75146d4ddf8f734fbdce77a5a2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9kCLHhwOZ8NQg4ZyK_yGK7NnvWY=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.738441+00 2025-12-09 10:15:34.738447+00 16330 CC093FW#5XL黑 SPMX-20240815311540 \N \N \N 1 \N [{"file_id": "15a1efb5-2511-4b01-8a0f-6dcf41d437f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b87374deef4418e80466557f3804072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b87374deef4418e80466557f3804072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b87374deef4418e80466557f3804072.jpg", "file_size": 14891, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#5XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87374deef4418e80466557f3804072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87374deef4418e80466557f3804072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b87374deef4418e80466557f3804072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b87374deef4418e80466557f3804072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b87374deef4418e80466557f3804072.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0ZYH5er9idWxhpMy_wAXPcIqfI=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.741212+00 2025-12-09 10:15:34.741218+00 16331 0006美国国旗#S SPMX-20240815311543 \N \N \N 1 \N [{"file_id": "0e713df5-53bc-4be3-9383-b3afb2e4f45c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c387510a907485c8be9844c4f357bc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c387510a907485c8be9844c4f357bc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c387510a907485c8be9844c4f357bc2.jpg", "file_size": 16609, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c387510a907485c8be9844c4f357bc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c387510a907485c8be9844c4f357bc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c387510a907485c8be9844c4f357bc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c387510a907485c8be9844c4f357bc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c387510a907485c8be9844c4f357bc2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7fkFZ56Z7qDfeREXDgadxU_e79M=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.743993+00 2025-12-09 10:15:34.743999+00 16332 LJH1858#绿色 SPMX-20240815311545 \N \N \N 1 \N [{"file_id": "bd883315-79e2-4cb2-9648-9f6d053190ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04c56b94eaee4604a8ab9347ecb2b954.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04c56b94eaee4604a8ab9347ecb2b954.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04c56b94eaee4604a8ab9347ecb2b954.jpg", "file_size": 68199, "is_delete": false, "file_type": 1, "original_file_name": "LJH1858#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c56b94eaee4604a8ab9347ecb2b954.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c56b94eaee4604a8ab9347ecb2b954.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c56b94eaee4604a8ab9347ecb2b954.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04c56b94eaee4604a8ab9347ecb2b954.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04c56b94eaee4604a8ab9347ecb2b954.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrZH8iGkykOgvfIonAPxKnNww20=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.746784+00 2025-12-09 10:15:34.74679+00 16333 DL31450#蓝绿2XL SPMX-20240815311539 \N \N \N 1 \N [{"file_id": "aa0bef98-978c-4b9a-ab7f-672b66c633ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b30815976fca469e91389dc9ac7b0c37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b30815976fca469e91389dc9ac7b0c37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b30815976fca469e91389dc9ac7b0c37.jpg", "file_size": 19273, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#蓝绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30815976fca469e91389dc9ac7b0c37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30815976fca469e91389dc9ac7b0c37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b30815976fca469e91389dc9ac7b0c37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b30815976fca469e91389dc9ac7b0c37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b30815976fca469e91389dc9ac7b0c37.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8CRl6Xz5BL1fktWiiB963BoJwc=", "createTime": "2024-08-15 15:00:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.749605+00 2025-12-09 10:15:34.749611+00 16334 1225-63#裤子110码补数 SPMX-20240815311542 \N \N \N 1 \N [{"file_id": "4977253b-78df-4275-9d45-15be97db395c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82d0da744aad46dd82dbb878a11d9599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82d0da744aad46dd82dbb878a11d9599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82d0da744aad46dd82dbb878a11d9599.jpg", "file_size": 17000, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子110码补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d0da744aad46dd82dbb878a11d9599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d0da744aad46dd82dbb878a11d9599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82d0da744aad46dd82dbb878a11d9599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82d0da744aad46dd82dbb878a11d9599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82d0da744aad46dd82dbb878a11d9599.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y93JgO2xAAK3OD4IehB82TqQHl8=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.752437+00 2025-12-09 10:15:34.752443+00 16335 HX001#VSD3 SPMX-20240815311544 \N \N \N 1 \N [{"file_id": "3d865e78-fcab-4315-a1e7-8ad9007eb642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce2de756b8bc4a3c8288e75bd623cf7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce2de756b8bc4a3c8288e75bd623cf7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce2de756b8bc4a3c8288e75bd623cf7d.jpg", "file_size": 14984, "is_delete": false, "file_type": 1, "original_file_name": "HX001#VSD3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2de756b8bc4a3c8288e75bd623cf7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2de756b8bc4a3c8288e75bd623cf7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce2de756b8bc4a3c8288e75bd623cf7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce2de756b8bc4a3c8288e75bd623cf7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce2de756b8bc4a3c8288e75bd623cf7d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPdEsIIPEyzgdO9eoq0XQitLzhs=", "createTime": "2024-08-15 15:00:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.755331+00 2025-12-09 10:15:34.755339+00 16336 CC093FW#L白 SPMX-20240815311554 \N \N \N 1 \N [{"file_id": "104a3a1b-9ddf-4406-95ef-f6efff196867", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "395d85e41c5849eea177eedbd6caccf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "395d85e41c5849eea177eedbd6caccf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "395d85e41c5849eea177eedbd6caccf0.jpg", "file_size": 14469, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#L白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395d85e41c5849eea177eedbd6caccf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395d85e41c5849eea177eedbd6caccf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/395d85e41c5849eea177eedbd6caccf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/395d85e41c5849eea177eedbd6caccf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/395d85e41c5849eea177eedbd6caccf0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0PTGJVQa5NNFMxklxtbjQoKqf6c=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.758091+00 2025-12-09 10:15:34.758101+00 16337 FX0003-126#RC23-黄 SPMX-20240815311547 \N \N \N 1 \N [{"file_id": "dcac04fc-05e4-462a-966c-eddec8a6cece", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "193b1a7ff8a44c3b9f39c950eb9a4544.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "193b1a7ff8a44c3b9f39c950eb9a4544.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "193b1a7ff8a44c3b9f39c950eb9a4544.jpg", "file_size": 48434, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23-黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193b1a7ff8a44c3b9f39c950eb9a4544.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193b1a7ff8a44c3b9f39c950eb9a4544.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193b1a7ff8a44c3b9f39c950eb9a4544.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/193b1a7ff8a44c3b9f39c950eb9a4544.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/193b1a7ff8a44c3b9f39c950eb9a4544.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0o83MoGM9vzwWPTzjq2HLg5ddo=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.761034+00 2025-12-09 10:15:34.761042+00 16338 LZ1352#童装T4号色 SPMX-20240815311548 \N \N \N 1 \N [{"file_id": "d4bb4090-1be4-4dd9-825b-c139d25088e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4d8ffc188dc4d368550494dd7a2ac69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4d8ffc188dc4d368550494dd7a2ac69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4d8ffc188dc4d368550494dd7a2ac69.jpg", "file_size": 17067, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8ffc188dc4d368550494dd7a2ac69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8ffc188dc4d368550494dd7a2ac69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d8ffc188dc4d368550494dd7a2ac69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4d8ffc188dc4d368550494dd7a2ac69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4d8ffc188dc4d368550494dd7a2ac69.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSNHtwks5CNV37xrbuVU5KHiCDE=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.763815+00 2025-12-09 10:15:34.763821+00 16339 DL31450#蓝绿L SPMX-20240815311555 \N \N \N 1 \N [{"file_id": "f1e39be3-74c1-42f1-bccc-e5ebcec9a3b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a978d9835a39443db31b2d13b7f14975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a978d9835a39443db31b2d13b7f14975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a978d9835a39443db31b2d13b7f14975.jpg", "file_size": 19364, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#蓝绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a978d9835a39443db31b2d13b7f14975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a978d9835a39443db31b2d13b7f14975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a978d9835a39443db31b2d13b7f14975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a978d9835a39443db31b2d13b7f14975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a978d9835a39443db31b2d13b7f14975.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_IdIxSfgZLbdbSwv1zptO0rCsQ=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.766608+00 2025-12-09 10:15:34.766614+00 16340 JTSS711FW#VS-D3 SPMX-20240815311551 \N \N \N 1 \N [{"file_id": "174e78f5-16f5-42da-94ca-f06a5524234f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47822a329471431b8f9ca01b4633f29e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47822a329471431b8f9ca01b4633f29e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47822a329471431b8f9ca01b4633f29e.jpg", "file_size": 9377, "is_delete": false, "file_type": 1, "original_file_name": "JTSS711FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47822a329471431b8f9ca01b4633f29e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47822a329471431b8f9ca01b4633f29e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47822a329471431b8f9ca01b4633f29e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47822a329471431b8f9ca01b4633f29e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47822a329471431b8f9ca01b4633f29e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALmkPdWVEBZIlFzgr8272o_y9iI=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.769413+00 2025-12-09 10:15:34.769419+00 16341 1225-63#裤子120码 SPMX-20240815311550 \N \N \N 1 \N [{"file_id": "7308f18f-463f-4b05-b404-73fbd0009c3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3313542f12a140eb8d3e88bf33422089.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3313542f12a140eb8d3e88bf33422089.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3313542f12a140eb8d3e88bf33422089.jpg", "file_size": 13737, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子120码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3313542f12a140eb8d3e88bf33422089.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3313542f12a140eb8d3e88bf33422089.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3313542f12a140eb8d3e88bf33422089.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3313542f12a140eb8d3e88bf33422089.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3313542f12a140eb8d3e88bf33422089.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pWyGrYdpva7QZPwvybEKN4i5sWI=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.772241+00 2025-12-09 10:15:34.772248+00 16342 0006美国国旗#XL SPMX-20240815311553 \N \N \N 1 \N [{"file_id": "51b0606b-1a9f-4292-9829-0352f750dd8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a43de61853fe4fb29b8dd2ab0a705f02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a43de61853fe4fb29b8dd2ab0a705f02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a43de61853fe4fb29b8dd2ab0a705f02.jpg", "file_size": 17651, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43de61853fe4fb29b8dd2ab0a705f02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43de61853fe4fb29b8dd2ab0a705f02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43de61853fe4fb29b8dd2ab0a705f02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a43de61853fe4fb29b8dd2ab0a705f02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a43de61853fe4fb29b8dd2ab0a705f02.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RaW3KoNowAj21_AfiSk8qmw7yRw=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.775049+00 2025-12-09 10:15:34.775055+00 16343 85026#10码+12码 SPMX-20240815311549 \N \N \N 1 \N [{"file_id": "0fc38b7a-8db1-4626-bf56-42adf5c641c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92de5dc9c2b24853bcbf6f96f291951c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92de5dc9c2b24853bcbf6f96f291951c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92de5dc9c2b24853bcbf6f96f291951c.jpg", "file_size": 17436, "is_delete": false, "file_type": 1, "original_file_name": "85026#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de5dc9c2b24853bcbf6f96f291951c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de5dc9c2b24853bcbf6f96f291951c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92de5dc9c2b24853bcbf6f96f291951c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92de5dc9c2b24853bcbf6f96f291951c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92de5dc9c2b24853bcbf6f96f291951c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtLEeELrxnSDoTwfC1EyOhlR--Q=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.7779+00 2025-12-09 10:15:34.777906+00 16344 2302#-黑色 SPMX-20240815311546 \N \N \N 1 \N [{"file_id": "9b48df76-02a1-40c0-b6ea-da30cd3e1a99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d77ab8423b441e688f6fb762450af39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d77ab8423b441e688f6fb762450af39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d77ab8423b441e688f6fb762450af39.jpg", "file_size": 15486, "is_delete": false, "file_type": 1, "original_file_name": "2302#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d77ab8423b441e688f6fb762450af39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d77ab8423b441e688f6fb762450af39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d77ab8423b441e688f6fb762450af39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d77ab8423b441e688f6fb762450af39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d77ab8423b441e688f6fb762450af39.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t7sGzyYfdLQM-uqTF8mIxshVu6E=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.780742+00 2025-12-09 10:15:34.780748+00 16345 LJH1858#蓝色 SPMX-20240815311552 \N \N \N 1 \N [{"file_id": "39bbaf48-fe2b-418a-a91e-d1a2dc207323", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "762e42e228fe4dbaa19d936898e471ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "762e42e228fe4dbaa19d936898e471ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "762e42e228fe4dbaa19d936898e471ee.jpg", "file_size": 71095, "is_delete": false, "file_type": 1, "original_file_name": "LJH1858#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762e42e228fe4dbaa19d936898e471ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762e42e228fe4dbaa19d936898e471ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/762e42e228fe4dbaa19d936898e471ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/762e42e228fe4dbaa19d936898e471ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/762e42e228fe4dbaa19d936898e471ee.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4vLOxVCZfs58URWCoO9xEvxaGVo=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.783584+00 2025-12-09 10:15:34.783589+00 16346 230201#宝蓝色 SPMX-20240815311556 \N \N \N 1 \N [{"file_id": "f659a7dd-c1e9-442e-8ff4-56c8560d9afa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6723850fee0f43229a0078e580292836.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6723850fee0f43229a0078e580292836.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6723850fee0f43229a0078e580292836.jpg", "file_size": 21640, "is_delete": false, "file_type": 1, "original_file_name": "230201#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6723850fee0f43229a0078e580292836.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6723850fee0f43229a0078e580292836.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6723850fee0f43229a0078e580292836.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6723850fee0f43229a0078e580292836.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6723850fee0f43229a0078e580292836.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RkNryYIQgA9Lw__3xoyuXA6ddM4=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.786395+00 2025-12-09 10:15:34.786401+00 16347 85026#14码 SPMX-20240815311563 \N \N \N 1 \N [{"file_id": "cb40adc0-649c-41d7-a9b9-aab2aa2ac6c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05ff772d550a4eb7bb6465c2d1983d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05ff772d550a4eb7bb6465c2d1983d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05ff772d550a4eb7bb6465c2d1983d3a.jpg", "file_size": 15563, "is_delete": false, "file_type": 1, "original_file_name": "85026#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff772d550a4eb7bb6465c2d1983d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff772d550a4eb7bb6465c2d1983d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff772d550a4eb7bb6465c2d1983d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05ff772d550a4eb7bb6465c2d1983d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05ff772d550a4eb7bb6465c2d1983d3a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grWQveibRukN39K54vleQXMMSEY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.789233+00 2025-12-09 10:15:34.789239+00 16348 CC093FW#L粉 SPMX-20240815311565 \N \N \N 1 \N [{"file_id": "9c205164-cf37-4ce5-89da-60f71855e224", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0dcd44bc93a413c86d7600a453ebaef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0dcd44bc93a413c86d7600a453ebaef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0dcd44bc93a413c86d7600a453ebaef.jpg", "file_size": 13215, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#L粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dcd44bc93a413c86d7600a453ebaef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dcd44bc93a413c86d7600a453ebaef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0dcd44bc93a413c86d7600a453ebaef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0dcd44bc93a413c86d7600a453ebaef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0dcd44bc93a413c86d7600a453ebaef.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JMBikufq0Gik6G_vsPnNtlU4uJ4=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.792046+00 2025-12-09 10:15:34.792052+00 16349 FX0003-126#RC23 SPMX-20240815311558 \N \N \N 1 \N [{"file_id": "723dc4de-7114-4fbb-86ab-e920a9d19549", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62a3295e5d4146e2aaf1988dc2a864c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62a3295e5d4146e2aaf1988dc2a864c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62a3295e5d4146e2aaf1988dc2a864c9.jpg", "file_size": 67659, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-126#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3295e5d4146e2aaf1988dc2a864c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3295e5d4146e2aaf1988dc2a864c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3295e5d4146e2aaf1988dc2a864c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62a3295e5d4146e2aaf1988dc2a864c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62a3295e5d4146e2aaf1988dc2a864c9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YlyXs38Sco7ayzd-ICBVu4M1saA=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.794867+00 2025-12-09 10:15:34.794872+00 16350 DL31450#蓝绿XL SPMX-20240815311566 \N \N \N 1 \N [{"file_id": "287fa76e-b694-43cb-b1f7-40c2048583ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad4cfc1493e341b78b74e7c914ec43b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad4cfc1493e341b78b74e7c914ec43b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad4cfc1493e341b78b74e7c914ec43b4.jpg", "file_size": 19729, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#蓝绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4cfc1493e341b78b74e7c914ec43b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4cfc1493e341b78b74e7c914ec43b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4cfc1493e341b78b74e7c914ec43b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad4cfc1493e341b78b74e7c914ec43b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad4cfc1493e341b78b74e7c914ec43b4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pq_zu4SKh4tCEj4E2Vkr0JRvBwY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.797714+00 2025-12-09 10:15:34.797719+00 16351 HX001#咖VS-D3 SPMX-20240815311557 \N \N \N 1 \N [{"file_id": "99cb17e0-24b0-40f8-9c7c-a6a88075e111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "519eb097a34a421bbe745dbe763939d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "519eb097a34a421bbe745dbe763939d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "519eb097a34a421bbe745dbe763939d9.jpg", "file_size": 17633, "is_delete": false, "file_type": 1, "original_file_name": "HX001#咖VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519eb097a34a421bbe745dbe763939d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519eb097a34a421bbe745dbe763939d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519eb097a34a421bbe745dbe763939d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/519eb097a34a421bbe745dbe763939d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/519eb097a34a421bbe745dbe763939d9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZLrLZzknZsIHu7TyOafS0H7hW8=", "createTime": "2024-08-15 15:00:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.800515+00 2025-12-09 10:15:34.80052+00 16352 1225-63#裤子120码补数 SPMX-20240815311560 \N \N \N 1 \N [{"file_id": "4a5e7939-abe9-4f11-99b0-ee1a900de04c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "759600e37d8942a09ea584b48883df88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "759600e37d8942a09ea584b48883df88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "759600e37d8942a09ea584b48883df88.jpg", "file_size": 12589, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子120码补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759600e37d8942a09ea584b48883df88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759600e37d8942a09ea584b48883df88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759600e37d8942a09ea584b48883df88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/759600e37d8942a09ea584b48883df88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/759600e37d8942a09ea584b48883df88.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdK3IZkt_i3A2IOl6CYnLjNFWk0=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.80335+00 2025-12-09 10:15:34.803356+00 16353 HX001#咖番禺调色 SPMX-20240815311568 \N \N \N 1 \N [{"file_id": "4f249482-0156-43c0-808f-086cc2cea0bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa1d54f3faae4ed9858f4708bcd6c63a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa1d54f3faae4ed9858f4708bcd6c63a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa1d54f3faae4ed9858f4708bcd6c63a.jpg", "file_size": 19336, "is_delete": false, "file_type": 1, "original_file_name": "HX001#咖番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa1d54f3faae4ed9858f4708bcd6c63a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa1d54f3faae4ed9858f4708bcd6c63a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa1d54f3faae4ed9858f4708bcd6c63a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa1d54f3faae4ed9858f4708bcd6c63a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa1d54f3faae4ed9858f4708bcd6c63a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKtoqiabPogpKdlRNBGudeAiB9c=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.806168+00 2025-12-09 10:15:34.806174+00 16354 JTSS713FW#VS-D3 SPMX-20240815311569 \N \N \N 1 \N [{"file_id": "56a0621b-c407-4abc-a9a9-af25bc19ccd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c5666eeb8a646a39a18a9a8042ad773.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c5666eeb8a646a39a18a9a8042ad773.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c5666eeb8a646a39a18a9a8042ad773.jpg", "file_size": 14169, "is_delete": false, "file_type": 1, "original_file_name": "JTSS713FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5666eeb8a646a39a18a9a8042ad773.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5666eeb8a646a39a18a9a8042ad773.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5666eeb8a646a39a18a9a8042ad773.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c5666eeb8a646a39a18a9a8042ad773.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c5666eeb8a646a39a18a9a8042ad773.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_sunEZvTNXiB9IdlsDSgkz75Do=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.808988+00 2025-12-09 10:15:34.808993+00 16355 LJH1858#黄色 SPMX-20240815311564 \N \N \N 1 \N [{"file_id": "9bea5db8-6713-42f3-a3d3-f97f70aadaa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e77923901694f52a1025a1c97389f2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e77923901694f52a1025a1c97389f2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e77923901694f52a1025a1c97389f2e.jpg", "file_size": 65578, "is_delete": false, "file_type": 1, "original_file_name": "LJH1858#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e77923901694f52a1025a1c97389f2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e77923901694f52a1025a1c97389f2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e77923901694f52a1025a1c97389f2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e77923901694f52a1025a1c97389f2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e77923901694f52a1025a1c97389f2e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmpdYDj5RzjnM14q8LZyxGiNuHY=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.811792+00 2025-12-09 10:15:34.811799+00 16356 FX0003-127#RC23 SPMX-20240815311570 \N \N \N 1 \N [{"file_id": "cfa53cfd-a5c7-402e-8020-e1994325d740", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b169b7c1841488ba6dab7fbdbee8386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b169b7c1841488ba6dab7fbdbee8386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b169b7c1841488ba6dab7fbdbee8386.jpg", "file_size": 75106, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-127#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b169b7c1841488ba6dab7fbdbee8386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b169b7c1841488ba6dab7fbdbee8386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b169b7c1841488ba6dab7fbdbee8386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b169b7c1841488ba6dab7fbdbee8386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b169b7c1841488ba6dab7fbdbee8386.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_t61A7dUwg-PwomwK69I3GXzG0=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.814581+00 2025-12-09 10:15:34.814591+00 16357 JTSS712FW#VS-D3 SPMX-20240815311559 \N \N \N 1 \N [{"file_id": "a19791dd-b8af-4021-91a0-b0d9bac70ca8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "253a11754e53407f81913a760bd28fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "253a11754e53407f81913a760bd28fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "253a11754e53407f81913a760bd28fec.jpg", "file_size": 14807, "is_delete": false, "file_type": 1, "original_file_name": "JTSS712FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253a11754e53407f81913a760bd28fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253a11754e53407f81913a760bd28fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253a11754e53407f81913a760bd28fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/253a11754e53407f81913a760bd28fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/253a11754e53407f81913a760bd28fec.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5YruKDjAk_k82XD_kdOyIu2BTOs=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.817378+00 2025-12-09 10:15:34.817384+00 16358 0006美国国旗#XXL SPMX-20240815311562 \N \N \N 1 \N [{"file_id": "2f947d8c-8d4c-4384-897a-c289f36c0916", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56202310c72e466fa54c51aef7a50c8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56202310c72e466fa54c51aef7a50c8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56202310c72e466fa54c51aef7a50c8c.jpg", "file_size": 18434, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#XXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56202310c72e466fa54c51aef7a50c8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56202310c72e466fa54c51aef7a50c8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56202310c72e466fa54c51aef7a50c8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56202310c72e466fa54c51aef7a50c8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56202310c72e466fa54c51aef7a50c8c.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mWfUnTDqGn1XoGXhhohmTQguHzs=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.820236+00 2025-12-09 10:15:34.820241+00 16359 LZ1352#童装T5号色 SPMX-20240815311561 \N \N \N 1 \N [{"file_id": "3891079e-9047-45d2-83da-2d39be9ae26b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad52d582e6114f0fbf432fe2a0a6d262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad52d582e6114f0fbf432fe2a0a6d262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad52d582e6114f0fbf432fe2a0a6d262.jpg", "file_size": 16640, "is_delete": false, "file_type": 1, "original_file_name": "LZ1352#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad52d582e6114f0fbf432fe2a0a6d262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad52d582e6114f0fbf432fe2a0a6d262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad52d582e6114f0fbf432fe2a0a6d262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad52d582e6114f0fbf432fe2a0a6d262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad52d582e6114f0fbf432fe2a0a6d262.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCXlrPeZkcrRG-3xxy1RH5EUZC8=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.82307+00 2025-12-09 10:15:34.823077+00 16360 LZ1353#上身1号色 SPMX-20240815311571 \N \N \N 1 \N [{"file_id": "9af686cf-e848-4061-91a7-01c949360fd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "116c33554f3a4e9ba911d3975dbb9ba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "116c33554f3a4e9ba911d3975dbb9ba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "116c33554f3a4e9ba911d3975dbb9ba3.jpg", "file_size": 21124, "is_delete": false, "file_type": 1, "original_file_name": "LZ1353#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116c33554f3a4e9ba911d3975dbb9ba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116c33554f3a4e9ba911d3975dbb9ba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116c33554f3a4e9ba911d3975dbb9ba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/116c33554f3a4e9ba911d3975dbb9ba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/116c33554f3a4e9ba911d3975dbb9ba3.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5qd3FT4ZIq3JvB128-nN2D4oRgU=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.825902+00 2025-12-09 10:15:34.825908+00 16361 230201#桔色 SPMX-20240815311567 \N \N \N 1 \N [{"file_id": "01a419d6-75fe-4da5-8c97-18098dc574fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9619f02ca959414ea7f1083c1ff634e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9619f02ca959414ea7f1083c1ff634e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9619f02ca959414ea7f1083c1ff634e2.jpg", "file_size": 19503, "is_delete": false, "file_type": 1, "original_file_name": "230201#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9619f02ca959414ea7f1083c1ff634e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9619f02ca959414ea7f1083c1ff634e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9619f02ca959414ea7f1083c1ff634e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9619f02ca959414ea7f1083c1ff634e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9619f02ca959414ea7f1083c1ff634e2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C4tW8QxMpgawiGIlJX-qpqposf0=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.828805+00 2025-12-09 10:15:34.828811+00 16362 85026#4码+8码 SPMX-20240815311574 \N \N \N 1 \N [{"file_id": "f1904678-9012-47f3-8f59-393e8508c388", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01fc6d36836945139692827efddf8dd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01fc6d36836945139692827efddf8dd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01fc6d36836945139692827efddf8dd2.jpg", "file_size": 16752, "is_delete": false, "file_type": 1, "original_file_name": "85026#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01fc6d36836945139692827efddf8dd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01fc6d36836945139692827efddf8dd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01fc6d36836945139692827efddf8dd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01fc6d36836945139692827efddf8dd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01fc6d36836945139692827efddf8dd2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAOIyn_mP_wCWXW8l-Gmg3tFUuc=", "createTime": "2024-08-15 15:00:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.831674+00 2025-12-09 10:15:34.831681+00 16363 1225-63#裤子90码 SPMX-20240815311572 \N \N \N 1 \N [{"file_id": "5fa7c727-24d7-4647-b079-303536e797e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "483e32f6d8d84eae9617beab4b00bb0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "483e32f6d8d84eae9617beab4b00bb0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "483e32f6d8d84eae9617beab4b00bb0a.jpg", "file_size": 17836, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子90码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483e32f6d8d84eae9617beab4b00bb0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483e32f6d8d84eae9617beab4b00bb0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483e32f6d8d84eae9617beab4b00bb0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/483e32f6d8d84eae9617beab4b00bb0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/483e32f6d8d84eae9617beab4b00bb0a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCry5elzs8oA-CCHevaOshFX_sE=", "createTime": "2024-08-15 15:00:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.834863+00 2025-12-09 10:15:34.834871+00 16364 0006美国国旗#捆条 SPMX-20240815311573 \N \N \N 1 \N [{"file_id": "21fe9de1-60be-4ab8-abe7-ec4706c35dec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b816a4404c654ed08d38cfdaa825583e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b816a4404c654ed08d38cfdaa825583e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b816a4404c654ed08d38cfdaa825583e.jpg", "file_size": 20085, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b816a4404c654ed08d38cfdaa825583e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b816a4404c654ed08d38cfdaa825583e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b816a4404c654ed08d38cfdaa825583e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b816a4404c654ed08d38cfdaa825583e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b816a4404c654ed08d38cfdaa825583e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c0mdOAFhNCnkge_wkodyG6h7F6Q=", "createTime": "2024-08-15 15:00:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.838188+00 2025-12-09 10:15:34.838197+00 16365 DL31450#蓝绿后幅定位 SPMX-20240815311575 \N \N \N 1 \N [{"file_id": "671ebb7d-77f6-4a6d-a7fb-71334172f8fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd6aeadec204777ad1cb24e880030a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd6aeadec204777ad1cb24e880030a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd6aeadec204777ad1cb24e880030a0.jpg", "file_size": 21535, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#蓝绿后幅定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd6aeadec204777ad1cb24e880030a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd6aeadec204777ad1cb24e880030a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd6aeadec204777ad1cb24e880030a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd6aeadec204777ad1cb24e880030a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd6aeadec204777ad1cb24e880030a0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HyEajIrMpA2BjHVKJZFCF73HZb0=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.841389+00 2025-12-09 10:15:34.841398+00 16366 1225-63#裤子匹布 SPMX-20240815311580 \N \N \N 1 \N [{"file_id": "4935a48e-e941-48c8-b71a-68863897fe3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "847168927658489a8a85607d01467809.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "847168927658489a8a85607d01467809.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "847168927658489a8a85607d01467809.jpg", "file_size": 9664, "is_delete": false, "file_type": 1, "original_file_name": "1225-63#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847168927658489a8a85607d01467809.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847168927658489a8a85607d01467809.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/847168927658489a8a85607d01467809.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/847168927658489a8a85607d01467809.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/847168927658489a8a85607d01467809.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NJtWaJWpCs1V5Am61ISjPNVstQ=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.844417+00 2025-12-09 10:15:34.844424+00 16367 HX001#杏色 SPMX-20240815311581 \N \N \N 1 \N [{"file_id": "77d2a6c0-99e3-4542-b091-ae08fb2a2c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "240b6b7cb169469383e2bdcfbd8a6b29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "240b6b7cb169469383e2bdcfbd8a6b29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "240b6b7cb169469383e2bdcfbd8a6b29.jpg", "file_size": 18898, "is_delete": false, "file_type": 1, "original_file_name": "HX001#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240b6b7cb169469383e2bdcfbd8a6b29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240b6b7cb169469383e2bdcfbd8a6b29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/240b6b7cb169469383e2bdcfbd8a6b29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/240b6b7cb169469383e2bdcfbd8a6b29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/240b6b7cb169469383e2bdcfbd8a6b29.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CW5mA2KR_BV2gA49PBu7MsH-r3Q=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.847157+00 2025-12-09 10:15:34.847163+00 16368 LJH1859#桔色 SPMX-20240815311578 \N \N \N 1 \N [{"file_id": "f78a5f71-c420-4b97-9aa1-0249a1a56488", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12ee64bc1ab413a8e693d3120ebc5b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12ee64bc1ab413a8e693d3120ebc5b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12ee64bc1ab413a8e693d3120ebc5b4.jpg", "file_size": 42809, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12ee64bc1ab413a8e693d3120ebc5b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12ee64bc1ab413a8e693d3120ebc5b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12ee64bc1ab413a8e693d3120ebc5b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12ee64bc1ab413a8e693d3120ebc5b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12ee64bc1ab413a8e693d3120ebc5b4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtNl5CpJG46BoGKC862LrcrFW-I=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.850722+00 2025-12-09 10:15:34.850729+00 16369 FX0003-128#RC23 SPMX-20240815311579 \N \N \N 1 \N [{"file_id": "7a9f2e3e-6cda-4b9e-8e13-a1764c9c5462", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "729c285907b24a2ea555295741f29995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "729c285907b24a2ea555295741f29995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "729c285907b24a2ea555295741f29995.jpg", "file_size": 68274, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-128#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/729c285907b24a2ea555295741f29995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/729c285907b24a2ea555295741f29995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/729c285907b24a2ea555295741f29995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/729c285907b24a2ea555295741f29995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/729c285907b24a2ea555295741f29995.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4CH-SAHM5BTIU7xxsIu3g21-riM=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.85443+00 2025-12-09 10:15:34.854437+00 16370 CC093FW#L绿 SPMX-20240815311576 \N \N \N 1 \N [{"file_id": "c59f4a68-0f69-472a-a60c-5dd48389a95b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "989de78b35a34d599c5eee6f2eb2eada.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "989de78b35a34d599c5eee6f2eb2eada.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "989de78b35a34d599c5eee6f2eb2eada.jpg", "file_size": 14548, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#L绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989de78b35a34d599c5eee6f2eb2eada.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989de78b35a34d599c5eee6f2eb2eada.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/989de78b35a34d599c5eee6f2eb2eada.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/989de78b35a34d599c5eee6f2eb2eada.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/989de78b35a34d599c5eee6f2eb2eada.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9PNkMxE7l0GmmCAcp5IBb5XEQM=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.858478+00 2025-12-09 10:15:34.858484+00 16371 0006美国国旗 SPMX-20240815311577 \N \N \N 1 \N [{"file_id": "db411e5f-f7dd-4088-a044-f422a0d981df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb4c5243886c4e2f8debb16b14d06354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb4c5243886c4e2f8debb16b14d06354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb4c5243886c4e2f8debb16b14d06354.jpg", "file_size": 19195, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4c5243886c4e2f8debb16b14d06354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4c5243886c4e2f8debb16b14d06354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb4c5243886c4e2f8debb16b14d06354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb4c5243886c4e2f8debb16b14d06354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb4c5243886c4e2f8debb16b14d06354.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFFPgB7p96IIQOKx8WHTtxG919w=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.862217+00 2025-12-09 10:15:34.862222+00 16372 LZ1353#上身2号色 SPMX-20240815311582 \N \N \N 1 \N [{"file_id": "5ba70b21-f458-4f6f-a3a3-60a5ee588104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "628766f0db8f4ba389a31a8e10856186.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "628766f0db8f4ba389a31a8e10856186.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "628766f0db8f4ba389a31a8e10856186.jpg", "file_size": 20861, "is_delete": false, "file_type": 1, "original_file_name": "LZ1353#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628766f0db8f4ba389a31a8e10856186.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628766f0db8f4ba389a31a8e10856186.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/628766f0db8f4ba389a31a8e10856186.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/628766f0db8f4ba389a31a8e10856186.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/628766f0db8f4ba389a31a8e10856186.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P56CApVJHgRTQkt0tWH0Vhzc-co=", "createTime": "2024-08-15 15:00:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.86556+00 2025-12-09 10:15:34.865565+00 16373 FX0003-128#飞版本 SPMX-20240815311587 \N \N \N 1 \N [{"file_id": "84913595-6fad-4942-a4d0-43fbc29b3dd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d0a307b49fc4517a822f46d8fbadeb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d0a307b49fc4517a822f46d8fbadeb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d0a307b49fc4517a822f46d8fbadeb4.jpg", "file_size": 64515, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-128#飞版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d0a307b49fc4517a822f46d8fbadeb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d0a307b49fc4517a822f46d8fbadeb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d0a307b49fc4517a822f46d8fbadeb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d0a307b49fc4517a822f46d8fbadeb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d0a307b49fc4517a822f46d8fbadeb4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NxucgrChDaBSPNlG3qWRckN7NFA=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.868632+00 2025-12-09 10:15:34.868639+00 16374 85026#6码 SPMX-20240815311584 \N \N \N 1 \N [{"file_id": "eb4c2759-dd51-4e6e-8879-e389565cff99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccc6a2e35ef84e9ca67b4560ed0472aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccc6a2e35ef84e9ca67b4560ed0472aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccc6a2e35ef84e9ca67b4560ed0472aa.jpg", "file_size": 16687, "is_delete": false, "file_type": 1, "original_file_name": "85026#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc6a2e35ef84e9ca67b4560ed0472aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc6a2e35ef84e9ca67b4560ed0472aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc6a2e35ef84e9ca67b4560ed0472aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccc6a2e35ef84e9ca67b4560ed0472aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccc6a2e35ef84e9ca67b4560ed0472aa.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84jfgP1bdfrt51eCrzSgjTtbotU=", "createTime": "2024-08-15 15:00:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.871255+00 2025-12-09 10:15:34.87126+00 16375 HX001#粉番禺调色 SPMX-20240815311586 \N \N \N 1 \N [{"file_id": "792d4fff-d073-465e-afa2-5da45d6d366e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffd87dad7c414f81ba3afc12926ed06d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffd87dad7c414f81ba3afc12926ed06d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffd87dad7c414f81ba3afc12926ed06d.jpg", "file_size": 19929, "is_delete": false, "file_type": 1, "original_file_name": "HX001#粉番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd87dad7c414f81ba3afc12926ed06d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd87dad7c414f81ba3afc12926ed06d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd87dad7c414f81ba3afc12926ed06d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffd87dad7c414f81ba3afc12926ed06d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffd87dad7c414f81ba3afc12926ed06d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:12oVRWOqGlbq3h0l1HjUS1I_eck=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.873764+00 2025-12-09 10:15:34.873768+00 16376 JTSS714FW#VS-D3 SPMX-20240815311583 \N \N \N 1 \N [{"file_id": "c3c892a7-f2d1-4c0e-bd25-9e306dab77a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7afdc040d4324336ae7dab15d09bd678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7afdc040d4324336ae7dab15d09bd678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7afdc040d4324336ae7dab15d09bd678.jpg", "file_size": 9720, "is_delete": false, "file_type": 1, "original_file_name": "JTSS714FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afdc040d4324336ae7dab15d09bd678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afdc040d4324336ae7dab15d09bd678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7afdc040d4324336ae7dab15d09bd678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7afdc040d4324336ae7dab15d09bd678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7afdc040d4324336ae7dab15d09bd678.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0_6LxSUVKWEHm1f77FzulL_oYs=", "createTime": "2024-08-15 15:00:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.876255+00 2025-12-09 10:15:34.876259+00 16377 230201#粉色 SPMX-20240815311585 \N \N \N 1 \N [{"file_id": "ce3b9640-89db-438f-bf65-80347c0543dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad45d303f52d4058a93ad762a205bd15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad45d303f52d4058a93ad762a205bd15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad45d303f52d4058a93ad762a205bd15.jpg", "file_size": 20705, "is_delete": false, "file_type": 1, "original_file_name": "230201#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad45d303f52d4058a93ad762a205bd15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad45d303f52d4058a93ad762a205bd15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad45d303f52d4058a93ad762a205bd15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad45d303f52d4058a93ad762a205bd15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad45d303f52d4058a93ad762a205bd15.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-BSUYaHwc3SoX2QjCDRNp85R1cM=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.878686+00 2025-12-09 10:15:34.87869+00 16378 DL31450#蓝绿袖子定位 SPMX-20240815311594 \N \N \N 1 \N [{"file_id": "dbcbb66a-4231-4d8d-958b-b4988afff463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f24c14ebd0d44b1c9acc03efa2611d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f24c14ebd0d44b1c9acc03efa2611d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f24c14ebd0d44b1c9acc03efa2611d46.jpg", "file_size": 13937, "is_delete": false, "file_type": 1, "original_file_name": "DL31450#蓝绿袖子定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24c14ebd0d44b1c9acc03efa2611d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24c14ebd0d44b1c9acc03efa2611d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f24c14ebd0d44b1c9acc03efa2611d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f24c14ebd0d44b1c9acc03efa2611d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f24c14ebd0d44b1c9acc03efa2611d46.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XvbNJiMAOEEC47PCnPCA6QDDp3Y=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.881164+00 2025-12-09 10:15:34.881169+00 16379 HX001#紫番禺调色 SPMX-20240815311598 \N \N \N 1 \N [{"file_id": "3eaa6aa6-e261-49c0-b271-7c8b7549808e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85d23fb3e28b4515ac4405a73fd850b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85d23fb3e28b4515ac4405a73fd850b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85d23fb3e28b4515ac4405a73fd850b4.jpg", "file_size": 22124, "is_delete": false, "file_type": 1, "original_file_name": "HX001#紫番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d23fb3e28b4515ac4405a73fd850b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d23fb3e28b4515ac4405a73fd850b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d23fb3e28b4515ac4405a73fd850b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85d23fb3e28b4515ac4405a73fd850b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85d23fb3e28b4515ac4405a73fd850b4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:prUhLGk4RRqov5oBEQp0H_iOuJ0=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.883586+00 2025-12-09 10:15:34.883591+00 16380 1225-64#上衣100码 SPMX-20240815311591 \N \N \N 1 \N [{"file_id": "98eb374e-e324-4745-8430-b0d4e0c3696a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c530dd806e8b46d086143a8aaf9f4e83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c530dd806e8b46d086143a8aaf9f4e83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c530dd806e8b46d086143a8aaf9f4e83.jpg", "file_size": 22800, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#上衣100码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530dd806e8b46d086143a8aaf9f4e83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530dd806e8b46d086143a8aaf9f4e83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c530dd806e8b46d086143a8aaf9f4e83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c530dd806e8b46d086143a8aaf9f4e83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c530dd806e8b46d086143a8aaf9f4e83.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0YF_2rZ2WHkhBuORooPxiNykZA=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.885823+00 2025-12-09 10:15:34.885827+00 16381 LJH1859#满花匹布桔色 SPMX-20240815311592 \N \N \N 1 \N [{"file_id": "722adc84-bce5-4852-89da-c7352d733a56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9946730aed4248d0b9cb6062009ca4bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9946730aed4248d0b9cb6062009ca4bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9946730aed4248d0b9cb6062009ca4bd.jpg", "file_size": 71565, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946730aed4248d0b9cb6062009ca4bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946730aed4248d0b9cb6062009ca4bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9946730aed4248d0b9cb6062009ca4bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9946730aed4248d0b9cb6062009ca4bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9946730aed4248d0b9cb6062009ca4bd.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SRn7J7R7nCBDtsbHgPPhc0FZgM=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.888287+00 2025-12-09 10:15:34.888291+00 16382 85026#乱花 SPMX-20240815311595 \N \N \N 1 \N [{"file_id": "62ba8569-c794-46aa-aa66-35446a011213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d11ad640a5541deb3bd3e33864e42db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d11ad640a5541deb3bd3e33864e42db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d11ad640a5541deb3bd3e33864e42db.jpg", "file_size": 4711, "is_delete": false, "file_type": 1, "original_file_name": "85026#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d11ad640a5541deb3bd3e33864e42db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d11ad640a5541deb3bd3e33864e42db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d11ad640a5541deb3bd3e33864e42db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d11ad640a5541deb3bd3e33864e42db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d11ad640a5541deb3bd3e33864e42db.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkjCeHG-1jM7qfJmrwOqd2hwD2E=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.89071+00 2025-12-09 10:15:34.890714+00 16383 JTSS715FW#VS-D3 SPMX-20240815311596 \N \N \N 1 \N [{"file_id": "bd1671b4-f0aa-425d-ad4b-778d6ef40f60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f2d48149b354ae281896b2b643c023f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f2d48149b354ae281896b2b643c023f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f2d48149b354ae281896b2b643c023f.jpg", "file_size": 6248, "is_delete": false, "file_type": 1, "original_file_name": "JTSS715FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2d48149b354ae281896b2b643c023f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2d48149b354ae281896b2b643c023f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f2d48149b354ae281896b2b643c023f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f2d48149b354ae281896b2b643c023f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f2d48149b354ae281896b2b643c023f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Swmwd7CDsCvTZeJub-rkpI_YyJo=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.893293+00 2025-12-09 10:15:34.893298+00 16384 0006美国国旗3XL SPMX-20240815311590 \N \N \N 1 \N [{"file_id": "e58b5040-1ed9-4579-8ca5-7ec85e1cb71d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ae2d7474414d06951861a45777cde0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ae2d7474414d06951861a45777cde0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ae2d7474414d06951861a45777cde0.jpg", "file_size": 19090, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ae2d7474414d06951861a45777cde0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ae2d7474414d06951861a45777cde0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ae2d7474414d06951861a45777cde0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ae2d7474414d06951861a45777cde0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ae2d7474414d06951861a45777cde0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wm8EKyrRG9Q4aX3mR3PwLPwoldY=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.896003+00 2025-12-09 10:15:34.896009+00 16385 CC093FW#L黑 SPMX-20240815311588 \N \N \N 1 \N [{"file_id": "3fb07b92-418d-47f2-99f5-89b329cdae7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce6cea2cc1454196a309e37b4f4a460a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce6cea2cc1454196a309e37b4f4a460a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce6cea2cc1454196a309e37b4f4a460a.jpg", "file_size": 16012, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#L黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6cea2cc1454196a309e37b4f4a460a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6cea2cc1454196a309e37b4f4a460a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce6cea2cc1454196a309e37b4f4a460a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce6cea2cc1454196a309e37b4f4a460a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce6cea2cc1454196a309e37b4f4a460a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HD7NiU-awElrtLu_6bXIROSR3g=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.898679+00 2025-12-09 10:15:34.898685+00 16386 LZ1353#上身3号色 SPMX-20240815311589 \N \N \N 1 \N [{"file_id": "b6ac507f-c4cd-46c1-af21-4db7084f3c0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f535c3adf2b49bba4568bc37c9cd49f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f535c3adf2b49bba4568bc37c9cd49f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f535c3adf2b49bba4568bc37c9cd49f.jpg", "file_size": 21373, "is_delete": false, "file_type": 1, "original_file_name": "LZ1353#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f535c3adf2b49bba4568bc37c9cd49f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f535c3adf2b49bba4568bc37c9cd49f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f535c3adf2b49bba4568bc37c9cd49f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f535c3adf2b49bba4568bc37c9cd49f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f535c3adf2b49bba4568bc37c9cd49f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBjJkAgRB6qjFGnf_5J_4cDmTi4=", "createTime": "2024-08-15 15:00:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.901329+00 2025-12-09 10:15:34.901334+00 16387 230201#黄色 SPMX-20240815311597 \N \N \N 1 \N [{"file_id": "39723080-14a2-455d-9dc4-b54f7dbba112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2cf72d39b3745e9962806b5aaf2a546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2cf72d39b3745e9962806b5aaf2a546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2cf72d39b3745e9962806b5aaf2a546.jpg", "file_size": 20565, "is_delete": false, "file_type": 1, "original_file_name": "230201#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2cf72d39b3745e9962806b5aaf2a546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2cf72d39b3745e9962806b5aaf2a546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2cf72d39b3745e9962806b5aaf2a546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2cf72d39b3745e9962806b5aaf2a546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2cf72d39b3745e9962806b5aaf2a546.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBwfWRGNWXuSTE2SP67KSWvHJ4Q=", "createTime": "2024-08-15 15:00:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.903932+00 2025-12-09 10:15:34.903938+00 16388 LZ1353#上身4号色 SPMX-20240815311602 \N \N \N 1 \N [{"file_id": "0b7a7f9f-6e81-40b9-821b-1ca2b7e00d1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2187747b471499e9b2b9a5379a5e8e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2187747b471499e9b2b9a5379a5e8e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2187747b471499e9b2b9a5379a5e8e0.jpg", "file_size": 21276, "is_delete": false, "file_type": 1, "original_file_name": "LZ1353#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2187747b471499e9b2b9a5379a5e8e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2187747b471499e9b2b9a5379a5e8e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2187747b471499e9b2b9a5379a5e8e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2187747b471499e9b2b9a5379a5e8e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2187747b471499e9b2b9a5379a5e8e0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctvGbEAxUz0uD0U0vEnsU8D3weA=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.906624+00 2025-12-09 10:15:34.90663+00 16389 85027#10码+12码 SPMX-20240815311605 \N \N \N 1 \N [{"file_id": "1c054973-cec7-4c56-981a-d78ee0040326", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78def42ba1f44b0b8a98aee97da929b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78def42ba1f44b0b8a98aee97da929b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78def42ba1f44b0b8a98aee97da929b3.jpg", "file_size": 14943, "is_delete": false, "file_type": 1, "original_file_name": "85027#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78def42ba1f44b0b8a98aee97da929b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78def42ba1f44b0b8a98aee97da929b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78def42ba1f44b0b8a98aee97da929b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78def42ba1f44b0b8a98aee97da929b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78def42ba1f44b0b8a98aee97da929b3.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVnJnSYFPBkWH9Iw4b_jUmypmtE=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.909272+00 2025-12-09 10:15:34.909278+00 16390 JTSS716FW#VS-D3 SPMX-20240815311601 \N \N \N 1 \N [{"file_id": "13385696-f7d5-4504-bc15-ff392734b209", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fdca08191b649a7b112675ee96e1d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fdca08191b649a7b112675ee96e1d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fdca08191b649a7b112675ee96e1d40.jpg", "file_size": 13204, "is_delete": false, "file_type": 1, "original_file_name": "JTSS716FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdca08191b649a7b112675ee96e1d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdca08191b649a7b112675ee96e1d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdca08191b649a7b112675ee96e1d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fdca08191b649a7b112675ee96e1d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fdca08191b649a7b112675ee96e1d40.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-XwhualNFj8819vEIB-o7XlqAfU=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.911924+00 2025-12-09 10:15:34.911929+00 16391 LJH1859#满花匹布白色 SPMX-20240815311606 \N \N \N 1 \N [{"file_id": "e2d5600d-fb6e-40af-84ea-152144a104e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68a8fe41b9034e5487ff91434cba16a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68a8fe41b9034e5487ff91434cba16a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68a8fe41b9034e5487ff91434cba16a2.jpg", "file_size": 73820, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a8fe41b9034e5487ff91434cba16a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a8fe41b9034e5487ff91434cba16a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a8fe41b9034e5487ff91434cba16a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68a8fe41b9034e5487ff91434cba16a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68a8fe41b9034e5487ff91434cba16a2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_NhyxP8Q5Idpn_qY_JbHaOD-w8=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.91458+00 2025-12-09 10:15:34.914586+00 16392 1225-64#上衣110码 SPMX-20240815311604 \N \N \N 1 \N [{"file_id": "317b2649-a997-47b6-844b-f9e6aac8d439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a9dd1e13f064b29a686c20eda908354.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a9dd1e13f064b29a686c20eda908354.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a9dd1e13f064b29a686c20eda908354.jpg", "file_size": 23014, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#上衣110码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9dd1e13f064b29a686c20eda908354.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9dd1e13f064b29a686c20eda908354.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9dd1e13f064b29a686c20eda908354.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a9dd1e13f064b29a686c20eda908354.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a9dd1e13f064b29a686c20eda908354.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2gFD6wSx0VmUeXrCZfwtB7czrE=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.917278+00 2025-12-09 10:15:34.917284+00 16393 FX0003-128#飞版本肩带布 SPMX-20240815311600 \N \N \N 1 \N [{"file_id": "3982d31f-52a6-49d6-af18-1a377be6b78f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0d21d3485104afb91db238050f29f3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0d21d3485104afb91db238050f29f3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0d21d3485104afb91db238050f29f3a.jpg", "file_size": 63494, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-128#飞版本肩带布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d21d3485104afb91db238050f29f3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d21d3485104afb91db238050f29f3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d21d3485104afb91db238050f29f3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0d21d3485104afb91db238050f29f3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0d21d3485104afb91db238050f29f3a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esYaMMVwdLisSuuBfwCno_fmHEY=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.919915+00 2025-12-09 10:15:34.91992+00 16394 DL31473#亮黄色前幅定位裁 SPMX-20240815311603 \N \N \N 1 \N [{"file_id": "43c2ee55-3d32-4595-a892-9e8d001edfde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c3507b3dcdc42c8b8ea974069e67cc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c3507b3dcdc42c8b8ea974069e67cc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c3507b3dcdc42c8b8ea974069e67cc2.jpg", "file_size": 22034, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#亮黄色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3507b3dcdc42c8b8ea974069e67cc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3507b3dcdc42c8b8ea974069e67cc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c3507b3dcdc42c8b8ea974069e67cc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c3507b3dcdc42c8b8ea974069e67cc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c3507b3dcdc42c8b8ea974069e67cc2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ah0_TFUlOA8xbdIO_5cr6T4NLs=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.922623+00 2025-12-09 10:15:34.922629+00 16395 CC093FW#M白 SPMX-20240815311599 \N \N \N 1 \N [{"file_id": "5227b81c-a224-4b52-ba07-bdd23a5fc73a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ee73a79214c4ca0a58b1480e4f03fc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ee73a79214c4ca0a58b1480e4f03fc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ee73a79214c4ca0a58b1480e4f03fc3.jpg", "file_size": 15311, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#M白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee73a79214c4ca0a58b1480e4f03fc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee73a79214c4ca0a58b1480e4f03fc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ee73a79214c4ca0a58b1480e4f03fc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ee73a79214c4ca0a58b1480e4f03fc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ee73a79214c4ca0a58b1480e4f03fc3.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0HVvbbXtrzxaAmzy4F7EeXPOIr8=", "createTime": "2024-08-15 15:00:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.925287+00 2025-12-09 10:15:34.925293+00 16396 85027#14码 SPMX-20240815311609 \N \N \N 1 \N [{"file_id": "7fa59b33-d5c8-4cb9-af4e-f6595752f581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76cf803731284dc28336286242273b39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76cf803731284dc28336286242273b39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76cf803731284dc28336286242273b39.jpg", "file_size": 13508, "is_delete": false, "file_type": 1, "original_file_name": "85027#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cf803731284dc28336286242273b39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cf803731284dc28336286242273b39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cf803731284dc28336286242273b39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76cf803731284dc28336286242273b39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76cf803731284dc28336286242273b39.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:poVsM3GUPnuQbtost8HTkDJPmtU=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.927942+00 2025-12-09 10:15:34.927948+00 16397 CC093FW#M粉 SPMX-20240815311613 \N \N \N 1 \N [{"file_id": "86ac6356-e1c9-4230-bf4d-8f0ad4f38d92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05c51e708a6b402cbcd01f8d9ffedb3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05c51e708a6b402cbcd01f8d9ffedb3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05c51e708a6b402cbcd01f8d9ffedb3f.jpg", "file_size": 13452, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#M粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51e708a6b402cbcd01f8d9ffedb3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51e708a6b402cbcd01f8d9ffedb3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c51e708a6b402cbcd01f8d9ffedb3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05c51e708a6b402cbcd01f8d9ffedb3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05c51e708a6b402cbcd01f8d9ffedb3f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b9PlsugOHHkkjb9mvul52836H-Q=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.930586+00 2025-12-09 10:15:34.930592+00 16398 230202#L码 SPMX-20240815311608 \N \N \N 1 \N [{"file_id": "6e2ca933-8e8f-454a-93ad-90e8a1c38144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a62b63af73cf4d9ea7d06fdf724e4a2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a62b63af73cf4d9ea7d06fdf724e4a2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a62b63af73cf4d9ea7d06fdf724e4a2d.jpg", "file_size": 13419, "is_delete": false, "file_type": 1, "original_file_name": "230202#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62b63af73cf4d9ea7d06fdf724e4a2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62b63af73cf4d9ea7d06fdf724e4a2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a62b63af73cf4d9ea7d06fdf724e4a2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a62b63af73cf4d9ea7d06fdf724e4a2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a62b63af73cf4d9ea7d06fdf724e4a2d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H8qt88s3WoQt2HAmz-2fyDMGZxI=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.933287+00 2025-12-09 10:15:34.933294+00 16399 LJH1859#满花匹布粉色 SPMX-20240815311611 \N \N \N 1 \N [{"file_id": "f91015ac-b3f3-4f89-b930-2fbbe0ac37e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "936c2f3cf9f743fea3f6acd78909447f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "936c2f3cf9f743fea3f6acd78909447f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "936c2f3cf9f743fea3f6acd78909447f.jpg", "file_size": 68084, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936c2f3cf9f743fea3f6acd78909447f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936c2f3cf9f743fea3f6acd78909447f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936c2f3cf9f743fea3f6acd78909447f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/936c2f3cf9f743fea3f6acd78909447f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/936c2f3cf9f743fea3f6acd78909447f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EYEylUAI63qdchE-jzC2CghK1EI=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.935994+00 2025-12-09 10:15:34.936+00 16400 HX001#绿番禺调色 SPMX-20240815311612 \N \N \N 1 \N [{"file_id": "6dee1192-5494-41de-87bf-5ef43c90007f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fbccaf5bcee47f6ba2a069783bbb2de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fbccaf5bcee47f6ba2a069783bbb2de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fbccaf5bcee47f6ba2a069783bbb2de.jpg", "file_size": 18853, "is_delete": false, "file_type": 1, "original_file_name": "HX001#绿番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbccaf5bcee47f6ba2a069783bbb2de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbccaf5bcee47f6ba2a069783bbb2de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fbccaf5bcee47f6ba2a069783bbb2de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fbccaf5bcee47f6ba2a069783bbb2de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fbccaf5bcee47f6ba2a069783bbb2de.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0t1lA0RVgXt-8WqIolsk4c0MiA=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.938777+00 2025-12-09 10:15:34.938783+00 16401 FX0003-129#RC23 SPMX-20240815311610 \N \N \N 1 \N [{"file_id": "b41abca9-ee69-465a-ad00-87ebd88e8e25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fd08e7cadb24a09b675b072d2456a90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fd08e7cadb24a09b675b072d2456a90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fd08e7cadb24a09b675b072d2456a90.jpg", "file_size": 59124, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-129#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd08e7cadb24a09b675b072d2456a90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd08e7cadb24a09b675b072d2456a90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fd08e7cadb24a09b675b072d2456a90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fd08e7cadb24a09b675b072d2456a90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fd08e7cadb24a09b675b072d2456a90.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxiQix8mvEkELmh4heooZzZwyIE=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.941467+00 2025-12-09 10:15:34.941473+00 16402 LZ1353#上身5号色 SPMX-20240815311614 \N \N \N 1 \N [{"file_id": "1f442efa-605d-4d2a-9f7b-b562beae0851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0c79e6fe16c4ff5b8a0859526ede70f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0c79e6fe16c4ff5b8a0859526ede70f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0c79e6fe16c4ff5b8a0859526ede70f.jpg", "file_size": 21597, "is_delete": false, "file_type": 1, "original_file_name": "LZ1353#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c79e6fe16c4ff5b8a0859526ede70f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c79e6fe16c4ff5b8a0859526ede70f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0c79e6fe16c4ff5b8a0859526ede70f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0c79e6fe16c4ff5b8a0859526ede70f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0c79e6fe16c4ff5b8a0859526ede70f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M4Mc8QpWQZapP9cHUDSzVSmxNmo=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.944173+00 2025-12-09 10:15:34.94418+00 16403 0006美国国旗L SPMX-20240815311607 \N \N \N 1 \N [{"file_id": "65997171-2927-4bbc-a95f-1206e08208f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c7782c828fa420f8e6c7cd984753683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c7782c828fa420f8e6c7cd984753683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c7782c828fa420f8e6c7cd984753683.jpg", "file_size": 17079, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7782c828fa420f8e6c7cd984753683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7782c828fa420f8e6c7cd984753683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c7782c828fa420f8e6c7cd984753683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c7782c828fa420f8e6c7cd984753683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c7782c828fa420f8e6c7cd984753683.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlwC8JUcmqz6Bnx0XDj01OsHZAU=", "createTime": "2024-08-15 15:00:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.946876+00 2025-12-09 10:15:34.946882+00 16404 1225-64#上衣120码 SPMX-20240815311616 \N \N \N 1 \N [{"file_id": "eb12b45f-e756-4967-92c7-289a9fd7945b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7301249249ae42a6a13ec5226c4ff4d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7301249249ae42a6a13ec5226c4ff4d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7301249249ae42a6a13ec5226c4ff4d5.jpg", "file_size": 22378, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#上衣120码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7301249249ae42a6a13ec5226c4ff4d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7301249249ae42a6a13ec5226c4ff4d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7301249249ae42a6a13ec5226c4ff4d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7301249249ae42a6a13ec5226c4ff4d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7301249249ae42a6a13ec5226c4ff4d5.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E9gMb77FNHUv0qcUYg692AtCI4g=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.949688+00 2025-12-09 10:15:34.949694+00 16405 DL31473#亮黄色袖子定位裁 SPMX-20240815311615 \N \N \N 1 \N [{"file_id": "aea3855d-3164-4d79-90c7-69250f16791e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "828df6c096cf414a8a65a7722d9b64b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "828df6c096cf414a8a65a7722d9b64b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "828df6c096cf414a8a65a7722d9b64b5.jpg", "file_size": 14012, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#亮黄色袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828df6c096cf414a8a65a7722d9b64b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828df6c096cf414a8a65a7722d9b64b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828df6c096cf414a8a65a7722d9b64b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/828df6c096cf414a8a65a7722d9b64b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/828df6c096cf414a8a65a7722d9b64b5.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6S7tLPrNwdkkQ9ChxIzuJIcA1OE=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.952418+00 2025-12-09 10:15:34.952424+00 16406 JTSS717FW#VS-D3 SPMX-20240815311617 \N \N \N 1 \N [{"file_id": "6b296a8d-e4fd-42c4-b2d4-e5b6bd2da3e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e8c5096cca14dd1a54a2dddc834df49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e8c5096cca14dd1a54a2dddc834df49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e8c5096cca14dd1a54a2dddc834df49.jpg", "file_size": 14580, "is_delete": false, "file_type": 1, "original_file_name": "JTSS717FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8c5096cca14dd1a54a2dddc834df49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8c5096cca14dd1a54a2dddc834df49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e8c5096cca14dd1a54a2dddc834df49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e8c5096cca14dd1a54a2dddc834df49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e8c5096cca14dd1a54a2dddc834df49.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmnlyN54UL6d5w2mBZ5TVmOw2yI=", "createTime": "2024-08-15 15:00:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.955124+00 2025-12-09 10:15:34.95513+00 16407 CC093FW#M绿 SPMX-20240815311621 \N \N \N 1 \N [{"file_id": "2057c8c7-b8f0-4720-9c4d-f5daea71adb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dddcb78887134889b77802f1b080d619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dddcb78887134889b77802f1b080d619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dddcb78887134889b77802f1b080d619.jpg", "file_size": 15272, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#M绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddcb78887134889b77802f1b080d619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddcb78887134889b77802f1b080d619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dddcb78887134889b77802f1b080d619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dddcb78887134889b77802f1b080d619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dddcb78887134889b77802f1b080d619.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1esgPxFHRmXG7Tl9WAWKyHw-zQ=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.957819+00 2025-12-09 10:15:34.957825+00 16408 230202#M码 SPMX-20240815311622 \N \N \N 1 \N [{"file_id": "0fe2bcdd-d334-4da2-b4d9-9edbeab9874d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e869abc99b845d29288b9fa27c1ad3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e869abc99b845d29288b9fa27c1ad3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e869abc99b845d29288b9fa27c1ad3b.jpg", "file_size": 13847, "is_delete": false, "file_type": 1, "original_file_name": "230202#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e869abc99b845d29288b9fa27c1ad3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e869abc99b845d29288b9fa27c1ad3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e869abc99b845d29288b9fa27c1ad3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e869abc99b845d29288b9fa27c1ad3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e869abc99b845d29288b9fa27c1ad3b.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W_RGFRBSkXLwa8PZ8lJ7AykdpsI=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.960604+00 2025-12-09 10:15:34.960611+00 16409 LJH1859#满花匹布蓝色 SPMX-20240815311624 \N \N \N 1 \N [{"file_id": "271804d1-03eb-4e73-9186-8374bb75cd4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f1ab6dd882f49f686523cb78db71890.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f1ab6dd882f49f686523cb78db71890.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f1ab6dd882f49f686523cb78db71890.jpg", "file_size": 71671, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ab6dd882f49f686523cb78db71890.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ab6dd882f49f686523cb78db71890.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ab6dd882f49f686523cb78db71890.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f1ab6dd882f49f686523cb78db71890.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f1ab6dd882f49f686523cb78db71890.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSlCf9fwSWn7vqta5yrjZmUz4vg=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.963334+00 2025-12-09 10:15:34.963341+00 16410 LZ1354#上身1号色 SPMX-20240815311625 \N \N \N 1 \N [{"file_id": "1d40eb3f-7d89-472b-90cc-df28a7d6d5c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66d63a8f9b984e14bf38048facbf9e97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66d63a8f9b984e14bf38048facbf9e97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66d63a8f9b984e14bf38048facbf9e97.jpg", "file_size": 18370, "is_delete": false, "file_type": 1, "original_file_name": "LZ1354#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66d63a8f9b984e14bf38048facbf9e97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66d63a8f9b984e14bf38048facbf9e97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66d63a8f9b984e14bf38048facbf9e97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66d63a8f9b984e14bf38048facbf9e97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66d63a8f9b984e14bf38048facbf9e97.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1Ddqy1MhzRWF7tTBz4xYfuUm4g=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.966017+00 2025-12-09 10:15:34.966023+00 16411 DL31473#匹布 SPMX-20240815311626 \N \N \N 1 \N [{"file_id": "cbf98c69-3be8-4507-b298-02e5a1d4d267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46ffd4741d0d4256a8af838348526251.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46ffd4741d0d4256a8af838348526251.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46ffd4741d0d4256a8af838348526251.jpg", "file_size": 9754, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ffd4741d0d4256a8af838348526251.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ffd4741d0d4256a8af838348526251.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ffd4741d0d4256a8af838348526251.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46ffd4741d0d4256a8af838348526251.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46ffd4741d0d4256a8af838348526251.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_XcjjjWitHSRjzByZfR6JTMoMa0=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.968652+00 2025-12-09 10:15:34.968659+00 16412 JTSS718FW#VS-D3 SPMX-20240815311628 \N \N \N 1 \N [{"file_id": "d197d14f-bcc5-4288-8630-4e18c3fa364f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e20901e0f7749219928c30ba8c0366a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e20901e0f7749219928c30ba8c0366a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e20901e0f7749219928c30ba8c0366a.jpg", "file_size": 11521, "is_delete": false, "file_type": 1, "original_file_name": "JTSS718FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e20901e0f7749219928c30ba8c0366a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e20901e0f7749219928c30ba8c0366a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e20901e0f7749219928c30ba8c0366a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e20901e0f7749219928c30ba8c0366a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e20901e0f7749219928c30ba8c0366a.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoK2v_KEEfsz2MMGM1awrxcQ3AE=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.971382+00 2025-12-09 10:15:34.971389+00 16413 85027#4码+8码 SPMX-20240815311623 \N \N \N 1 \N [{"file_id": "83d03d87-a33e-471b-b16e-e6469e6aee39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6243a3f4efb425ab23ff7635bd727fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6243a3f4efb425ab23ff7635bd727fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6243a3f4efb425ab23ff7635bd727fe.jpg", "file_size": 14730, "is_delete": false, "file_type": 1, "original_file_name": "85027#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243a3f4efb425ab23ff7635bd727fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243a3f4efb425ab23ff7635bd727fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6243a3f4efb425ab23ff7635bd727fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6243a3f4efb425ab23ff7635bd727fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6243a3f4efb425ab23ff7635bd727fe.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s_qPYLCBxTrtf8JEDog8IVjV9II=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.974076+00 2025-12-09 10:15:34.974083+00 16414 FX0003-129#蓝色RC23 SPMX-20240815311629 \N \N \N 1 \N [{"file_id": "d39d352b-5773-42dd-ae93-b24f3bff3a70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11e70e32bd064d2e88ee2ee5a7b80b72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11e70e32bd064d2e88ee2ee5a7b80b72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11e70e32bd064d2e88ee2ee5a7b80b72.jpg", "file_size": 47429, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-129#蓝色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e70e32bd064d2e88ee2ee5a7b80b72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e70e32bd064d2e88ee2ee5a7b80b72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e70e32bd064d2e88ee2ee5a7b80b72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11e70e32bd064d2e88ee2ee5a7b80b72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11e70e32bd064d2e88ee2ee5a7b80b72.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZUZGC3ufCxZy0hc-Y02P9QtQUQ=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.976768+00 2025-12-09 10:15:34.976774+00 16415 1225-64#上衣90码 SPMX-20240815311627 \N \N \N 1 \N [{"file_id": "f59ecfe5-9a79-4200-b4ea-91c062f2a686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48cc9eb53e4242319f460b061eede1df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48cc9eb53e4242319f460b061eede1df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48cc9eb53e4242319f460b061eede1df.jpg", "file_size": 24440, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#上衣90码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48cc9eb53e4242319f460b061eede1df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48cc9eb53e4242319f460b061eede1df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48cc9eb53e4242319f460b061eede1df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48cc9eb53e4242319f460b061eede1df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48cc9eb53e4242319f460b061eede1df.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbrDL3884ONjIj8LIyKFvencWMM=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.979482+00 2025-12-09 10:15:34.979489+00 16416 HX001#蓝VS-D3 SPMX-20240815311618 \N \N \N 1 \N [{"file_id": "a1ced223-ff4f-40c1-a825-a120147e6c48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec60683bded44d6cac27b75f146f3c35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec60683bded44d6cac27b75f146f3c35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec60683bded44d6cac27b75f146f3c35.jpg", "file_size": 20199, "is_delete": false, "file_type": 1, "original_file_name": "HX001#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec60683bded44d6cac27b75f146f3c35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec60683bded44d6cac27b75f146f3c35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec60683bded44d6cac27b75f146f3c35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec60683bded44d6cac27b75f146f3c35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec60683bded44d6cac27b75f146f3c35.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPiqsCgHzNplU9sg_R5v8R-gAdI=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.982488+00 2025-12-09 10:15:34.982495+00 16417 FX0003-129#绿色RC23 SPMX-20240815311620 \N \N \N 1 \N [{"file_id": "f1fa4e0c-2c92-4e66-a4b2-094485aeae97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf56d2cf73e74f85a28c053e8fd58a46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf56d2cf73e74f85a28c053e8fd58a46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf56d2cf73e74f85a28c053e8fd58a46.jpg", "file_size": 45951, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-129#绿色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf56d2cf73e74f85a28c053e8fd58a46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf56d2cf73e74f85a28c053e8fd58a46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf56d2cf73e74f85a28c053e8fd58a46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf56d2cf73e74f85a28c053e8fd58a46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf56d2cf73e74f85a28c053e8fd58a46.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_R02FK_YsWqSTof7h3pUKKnWxg=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.985517+00 2025-12-09 10:15:34.985523+00 16418 0006美国国旗M SPMX-20240815311619 \N \N \N 1 \N [{"file_id": "a58e2bc1-2ae1-488f-9435-613225202541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c63568dd61443b4a2a686c2a73b6df0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c63568dd61443b4a2a686c2a73b6df0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c63568dd61443b4a2a686c2a73b6df0.jpg", "file_size": 16971, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c63568dd61443b4a2a686c2a73b6df0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c63568dd61443b4a2a686c2a73b6df0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c63568dd61443b4a2a686c2a73b6df0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c63568dd61443b4a2a686c2a73b6df0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c63568dd61443b4a2a686c2a73b6df0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GdmMMg3RzEV1NYM_jAFFCA2IhJw=", "createTime": "2024-08-15 15:00:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.988488+00 2025-12-09 10:15:34.988494+00 16419 1225-64#上衣后片 SPMX-20240815311638 \N \N \N 1 \N [{"file_id": "0180c560-01e4-4eb5-8475-ed02bae9ce78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35fb8241ac254923a73b1f0ea9cfda9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35fb8241ac254923a73b1f0ea9cfda9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35fb8241ac254923a73b1f0ea9cfda9e.jpg", "file_size": 14454, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#上衣后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fb8241ac254923a73b1f0ea9cfda9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fb8241ac254923a73b1f0ea9cfda9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35fb8241ac254923a73b1f0ea9cfda9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35fb8241ac254923a73b1f0ea9cfda9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35fb8241ac254923a73b1f0ea9cfda9e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3Ok3RZT03Y1tVmeq2gWE9hsMq8=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.991449+00 2025-12-09 10:15:34.991455+00 16420 FX0003-129#金版本 SPMX-20240815311640 \N \N \N 1 \N [{"file_id": "e400458d-0ef5-476d-a6ed-cc9827f4a6d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7770d0ecb1ce4a1c8da9160b724c8563.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7770d0ecb1ce4a1c8da9160b724c8563.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7770d0ecb1ce4a1c8da9160b724c8563.jpg", "file_size": 61791, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-129#金版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7770d0ecb1ce4a1c8da9160b724c8563.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7770d0ecb1ce4a1c8da9160b724c8563.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7770d0ecb1ce4a1c8da9160b724c8563.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7770d0ecb1ce4a1c8da9160b724c8563.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7770d0ecb1ce4a1c8da9160b724c8563.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sH-syDXWFW6xvxLe8CQ4-PDYb4o=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.994478+00 2025-12-09 10:15:34.994485+00 16421 LZ1354#上身2号色 SPMX-20240815311631 \N \N \N 1 \N [{"file_id": "6a3453b2-de25-470d-b440-66b0fa3ada0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5d0fa156ff940ffae00e0ac9635bdfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5d0fa156ff940ffae00e0ac9635bdfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5d0fa156ff940ffae00e0ac9635bdfa.jpg", "file_size": 21102, "is_delete": false, "file_type": 1, "original_file_name": "LZ1354#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d0fa156ff940ffae00e0ac9635bdfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d0fa156ff940ffae00e0ac9635bdfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d0fa156ff940ffae00e0ac9635bdfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5d0fa156ff940ffae00e0ac9635bdfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5d0fa156ff940ffae00e0ac9635bdfa.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHUlSqUwEP2NrBUJxJw2Ps0lgAU=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:34.997461+00 2025-12-09 10:15:34.997467+00 16422 0006美国国旗S SPMX-20240815311632 \N \N \N 1 \N [{"file_id": "4413c174-34c8-4271-8d7b-b863c5967b9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b12deabbd68415d989a273a68889a80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b12deabbd68415d989a273a68889a80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b12deabbd68415d989a273a68889a80.jpg", "file_size": 16318, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b12deabbd68415d989a273a68889a80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b12deabbd68415d989a273a68889a80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b12deabbd68415d989a273a68889a80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b12deabbd68415d989a273a68889a80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b12deabbd68415d989a273a68889a80.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6aYA5xLahwG8xO8R-VQIDHJLkk=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.000458+00 2025-12-09 10:15:35.000464+00 16423 LJH1859#满花匹布黄色 SPMX-20240815311630 \N \N \N 1 \N [{"file_id": "289f71bb-cf36-4431-9d5e-2a15d9f9e211", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9cbce5dc1d049cca18d0e2829be1d14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9cbce5dc1d049cca18d0e2829be1d14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9cbce5dc1d049cca18d0e2829be1d14.jpg", "file_size": 71184, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cbce5dc1d049cca18d0e2829be1d14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cbce5dc1d049cca18d0e2829be1d14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cbce5dc1d049cca18d0e2829be1d14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9cbce5dc1d049cca18d0e2829be1d14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9cbce5dc1d049cca18d0e2829be1d14.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Bncdo9Vdl_6Q2flrMEZGUibLO4=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.003408+00 2025-12-09 10:15:35.003414+00 16424 JTSS719FW#VS-D3 SPMX-20240815311639 \N \N \N 1 \N [{"file_id": "fb17bf98-0bfc-42c2-bc7d-3912343554a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba0a3f37c2c84f868aead78db40944b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba0a3f37c2c84f868aead78db40944b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba0a3f37c2c84f868aead78db40944b1.jpg", "file_size": 12293, "is_delete": false, "file_type": 1, "original_file_name": "JTSS719FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0a3f37c2c84f868aead78db40944b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0a3f37c2c84f868aead78db40944b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0a3f37c2c84f868aead78db40944b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba0a3f37c2c84f868aead78db40944b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba0a3f37c2c84f868aead78db40944b1.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytxd7EpiYKXnC8RK23Vh7DArYgA=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.006108+00 2025-12-09 10:15:35.006116+00 16425 230202#S码 SPMX-20240815311636 \N \N \N 1 \N [{"file_id": "69f8dd15-0cad-4840-baad-fcba84a99496", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "083a0d28cf38412e9540d67de42cd225.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "083a0d28cf38412e9540d67de42cd225.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "083a0d28cf38412e9540d67de42cd225.jpg", "file_size": 14015, "is_delete": false, "file_type": 1, "original_file_name": "230202#S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083a0d28cf38412e9540d67de42cd225.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083a0d28cf38412e9540d67de42cd225.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083a0d28cf38412e9540d67de42cd225.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/083a0d28cf38412e9540d67de42cd225.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/083a0d28cf38412e9540d67de42cd225.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7nvZbHJPiwn_H8AZZzRCQmtWNms=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.008776+00 2025-12-09 10:15:35.008782+00 16426 DL31473#原版色前幅定位裁 SPMX-20240815311635 \N \N \N 1 \N [{"file_id": "d6f4891a-cc7b-4f84-a426-840ea684190b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg", "file_size": 21816, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#原版色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d4bdb2b1b0c4bdd8fe58f00410be08b.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:je5dc0uZ1PkN3QQAnKh-1CG1eVk=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.011494+00 2025-12-09 10:15:35.0115+00 16427 HX001#蓝番禺调色 SPMX-20240815311633 \N \N \N 1 \N [{"file_id": "a92d4335-02cf-43c7-8181-95aea67787cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1157ee0842b2410cbd65f0c8b0c7547e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1157ee0842b2410cbd65f0c8b0c7547e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1157ee0842b2410cbd65f0c8b0c7547e.jpg", "file_size": 23149, "is_delete": false, "file_type": 1, "original_file_name": "HX001#蓝番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157ee0842b2410cbd65f0c8b0c7547e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157ee0842b2410cbd65f0c8b0c7547e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1157ee0842b2410cbd65f0c8b0c7547e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1157ee0842b2410cbd65f0c8b0c7547e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1157ee0842b2410cbd65f0c8b0c7547e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OG1XsBcSXIzTPG33kftonNfzpt4=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.014152+00 2025-12-09 10:15:35.014157+00 16428 85027#6码 SPMX-20240815311634 \N \N \N 1 \N [{"file_id": "5c4326cf-3a1f-417f-aeb9-29490dd9e63f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c287f1fcb174477837b26a9db18e6e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c287f1fcb174477837b26a9db18e6e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c287f1fcb174477837b26a9db18e6e0.jpg", "file_size": 13805, "is_delete": false, "file_type": 1, "original_file_name": "85027#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c287f1fcb174477837b26a9db18e6e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c287f1fcb174477837b26a9db18e6e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c287f1fcb174477837b26a9db18e6e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c287f1fcb174477837b26a9db18e6e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c287f1fcb174477837b26a9db18e6e0.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVnbpaLaVgikw9KlSJIyOTyNP6g=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.016867+00 2025-12-09 10:15:35.016874+00 16429 CC093FW#M黄 SPMX-20240815311637 \N \N \N 1 \N [{"file_id": "27ee999f-6b85-42d6-bc76-cfaede269514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85c543b252a3436f8cd1fe3032e102f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85c543b252a3436f8cd1fe3032e102f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85c543b252a3436f8cd1fe3032e102f1.jpg", "file_size": 15203, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#M黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c543b252a3436f8cd1fe3032e102f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c543b252a3436f8cd1fe3032e102f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85c543b252a3436f8cd1fe3032e102f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85c543b252a3436f8cd1fe3032e102f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85c543b252a3436f8cd1fe3032e102f1.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xP0x6daNI_qKxVzRghm_0Slpxow=", "createTime": "2024-08-15 15:00:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.019538+00 2025-12-09 10:15:35.019545+00 16430 LZ1354#上身3号色 SPMX-20240815311647 \N \N \N 1 \N [{"file_id": "48617416-091f-4823-8332-33538b4cf636", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e7ffe2735e74f3fa158a6700f1d611f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e7ffe2735e74f3fa158a6700f1d611f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e7ffe2735e74f3fa158a6700f1d611f.jpg", "file_size": 18174, "is_delete": false, "file_type": 1, "original_file_name": "LZ1354#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7ffe2735e74f3fa158a6700f1d611f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7ffe2735e74f3fa158a6700f1d611f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7ffe2735e74f3fa158a6700f1d611f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e7ffe2735e74f3fa158a6700f1d611f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e7ffe2735e74f3fa158a6700f1d611f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZYERDG4ccs4EE1jy-myXacSKno=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.02224+00 2025-12-09 10:15:35.022247+00 16431 0006美国国旗XL SPMX-20240815311644 \N \N \N 1 \N [{"file_id": "c3dc1f1b-797a-48d7-8980-f4ce51c6d3b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5833516de4540199f8fc2d29b830faa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5833516de4540199f8fc2d29b830faa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5833516de4540199f8fc2d29b830faa.jpg", "file_size": 17316, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5833516de4540199f8fc2d29b830faa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5833516de4540199f8fc2d29b830faa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5833516de4540199f8fc2d29b830faa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5833516de4540199f8fc2d29b830faa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5833516de4540199f8fc2d29b830faa.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HQDPwhtQz8At6h_JsfCcE5eo0iE=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.024942+00 2025-12-09 10:15:35.024949+00 16432 CC093FW#M黑 SPMX-20240815311648 \N \N \N 1 \N [{"file_id": "ff82f1ca-fa04-444d-aead-529028d51358", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4478e373ebb34deaa5985a4e179b9346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4478e373ebb34deaa5985a4e179b9346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4478e373ebb34deaa5985a4e179b9346.jpg", "file_size": 16537, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#M黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4478e373ebb34deaa5985a4e179b9346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4478e373ebb34deaa5985a4e179b9346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4478e373ebb34deaa5985a4e179b9346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4478e373ebb34deaa5985a4e179b9346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4478e373ebb34deaa5985a4e179b9346.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LobnOXx51b2tjz4b5Sqro6WkVjw=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.027816+00 2025-12-09 10:15:35.027823+00 16433 230202#XL码 SPMX-20240815311641 \N \N \N 1 \N [{"file_id": "60e04644-2e27-4bb5-9662-b039bc75aec7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "291db688c59c48bcbe5c20b26c47793b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "291db688c59c48bcbe5c20b26c47793b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "291db688c59c48bcbe5c20b26c47793b.jpg", "file_size": 14179, "is_delete": false, "file_type": 1, "original_file_name": "230202#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291db688c59c48bcbe5c20b26c47793b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291db688c59c48bcbe5c20b26c47793b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291db688c59c48bcbe5c20b26c47793b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/291db688c59c48bcbe5c20b26c47793b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/291db688c59c48bcbe5c20b26c47793b.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a_kyGRnIiGkiqqh1DkgEEHjnEVE=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.03055+00 2025-12-09 10:15:35.030556+00 16434 DL31473#原版色袖子定位裁 SPMX-20240815311643 \N \N \N 1 \N [{"file_id": "40a7e385-6214-4780-a8c8-ddc5e237e615", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "443bffafc95a4cb887e07387661189e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "443bffafc95a4cb887e07387661189e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "443bffafc95a4cb887e07387661189e9.jpg", "file_size": 13611, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#原版色袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443bffafc95a4cb887e07387661189e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443bffafc95a4cb887e07387661189e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/443bffafc95a4cb887e07387661189e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/443bffafc95a4cb887e07387661189e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/443bffafc95a4cb887e07387661189e9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hB9WQQd4yVfQCXNExRxEB1NIkBM=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.03329+00 2025-12-09 10:15:35.033297+00 16435 LJH1859#满花匹布黑色 SPMX-20240815311649 \N \N \N 1 \N [{"file_id": "22ec0a04-e055-4878-978c-47634572d913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8479311ca9a4baf9b6a1f5869968b8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8479311ca9a4baf9b6a1f5869968b8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8479311ca9a4baf9b6a1f5869968b8d.jpg", "file_size": 73185, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#满花匹布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8479311ca9a4baf9b6a1f5869968b8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8479311ca9a4baf9b6a1f5869968b8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8479311ca9a4baf9b6a1f5869968b8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8479311ca9a4baf9b6a1f5869968b8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8479311ca9a4baf9b6a1f5869968b8d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sq-X91FmB-ncuuH3EHbXEYafHOI=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.036233+00 2025-12-09 10:15:35.03624+00 16436 85027#乱花 SPMX-20240815311642 \N \N \N 1 \N [{"file_id": "a21e1a5b-fbdd-40d8-a76c-f2910de6342e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "934a74c79b6c4a46a12dea765d35147f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "934a74c79b6c4a46a12dea765d35147f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "934a74c79b6c4a46a12dea765d35147f.jpg", "file_size": 4034, "is_delete": false, "file_type": 1, "original_file_name": "85027#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934a74c79b6c4a46a12dea765d35147f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934a74c79b6c4a46a12dea765d35147f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/934a74c79b6c4a46a12dea765d35147f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/934a74c79b6c4a46a12dea765d35147f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/934a74c79b6c4a46a12dea765d35147f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kzaL_36iuJBTe9dxmcK73cPrh7Y=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.039009+00 2025-12-09 10:15:35.039015+00 16437 1225-64#裤子匹布 SPMX-20240815311645 \N \N \N 1 \N [{"file_id": "687aaa2f-8564-4d68-b912-7b287d40524d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b17219f635847478999541b21fc78d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b17219f635847478999541b21fc78d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b17219f635847478999541b21fc78d6.jpg", "file_size": 9476, "is_delete": false, "file_type": 1, "original_file_name": "1225-64#裤子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b17219f635847478999541b21fc78d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b17219f635847478999541b21fc78d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b17219f635847478999541b21fc78d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b17219f635847478999541b21fc78d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b17219f635847478999541b21fc78d6.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhbaRQygjfpMjSmdwBjXnyD6qrs=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.041677+00 2025-12-09 10:15:35.041683+00 16438 HX001#黑VS-D3 SPMX-20240815311646 \N \N \N 1 \N [{"file_id": "87c879ad-92af-4e58-b39d-16cb381a52ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fc6986c1e64f839f4634b47eaf224b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fc6986c1e64f839f4634b47eaf224b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fc6986c1e64f839f4634b47eaf224b.jpg", "file_size": 21119, "is_delete": false, "file_type": 1, "original_file_name": "HX001#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc6986c1e64f839f4634b47eaf224b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc6986c1e64f839f4634b47eaf224b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc6986c1e64f839f4634b47eaf224b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fc6986c1e64f839f4634b47eaf224b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fc6986c1e64f839f4634b47eaf224b.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2SW3DSFYfWd-EJ2Kw5diFhQ0gs=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.04442+00 2025-12-09 10:15:35.044426+00 16439 LZ1354#上身4号色 SPMX-20240815311657 \N \N \N 1 \N [{"file_id": "01cd45ce-5afe-448d-94b4-065f018b2e6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bccac90a03f94209991da71575bd6b22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bccac90a03f94209991da71575bd6b22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bccac90a03f94209991da71575bd6b22.jpg", "file_size": 20472, "is_delete": false, "file_type": 1, "original_file_name": "LZ1354#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccac90a03f94209991da71575bd6b22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccac90a03f94209991da71575bd6b22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bccac90a03f94209991da71575bd6b22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bccac90a03f94209991da71575bd6b22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bccac90a03f94209991da71575bd6b22.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5lf4oYax0xrOSjm7wKoaWt9_hzo=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.047124+00 2025-12-09 10:15:35.04713+00 16440 HX001FEW#VS-D3 SPMX-20240815311662 \N \N \N 1 \N [{"file_id": "07317c13-317c-4ae9-ab59-7d7f3d2d93d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34bec2b47742491a8f8b6fe413af6773.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34bec2b47742491a8f8b6fe413af6773.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34bec2b47742491a8f8b6fe413af6773.jpg", "file_size": 12524, "is_delete": false, "file_type": 1, "original_file_name": "HX001FEW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bec2b47742491a8f8b6fe413af6773.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bec2b47742491a8f8b6fe413af6773.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34bec2b47742491a8f8b6fe413af6773.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34bec2b47742491a8f8b6fe413af6773.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34bec2b47742491a8f8b6fe413af6773.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYD2tJMPN9r7FXIfV0HcwjFg6AQ=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.049793+00 2025-12-09 10:15:35.049798+00 16441 0006美国国旗XXL SPMX-20240815311652 \N \N \N 1 \N [{"file_id": "4336c5c9-b648-4606-a2c3-c50eba1853b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "599b2f79dd3c45cd82f8c0022c620006.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "599b2f79dd3c45cd82f8c0022c620006.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "599b2f79dd3c45cd82f8c0022c620006.jpg", "file_size": 18366, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗XXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599b2f79dd3c45cd82f8c0022c620006.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599b2f79dd3c45cd82f8c0022c620006.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599b2f79dd3c45cd82f8c0022c620006.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/599b2f79dd3c45cd82f8c0022c620006.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/599b2f79dd3c45cd82f8c0022c620006.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWixO3fjI9Vk_LRkHhX7U5s-26k=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.052624+00 2025-12-09 10:15:35.05263+00 16442 JTSS721FW#VS-D3 SPMX-20240815311661 \N \N \N 1 \N [{"file_id": "f9eeee29-f954-4711-b1aa-ca96cfa0636c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c26dd92162c4e0ab3abc2f913bfded5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c26dd92162c4e0ab3abc2f913bfded5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c26dd92162c4e0ab3abc2f913bfded5.jpg", "file_size": 26116, "is_delete": false, "file_type": 1, "original_file_name": "JTSS721FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c26dd92162c4e0ab3abc2f913bfded5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c26dd92162c4e0ab3abc2f913bfded5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c26dd92162c4e0ab3abc2f913bfded5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c26dd92162c4e0ab3abc2f913bfded5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c26dd92162c4e0ab3abc2f913bfded5.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XVUqirWuZBnkIMBMk9jYHemReUQ=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.055377+00 2025-12-09 10:15:35.055382+00 16443 CC093FW#XL白 SPMX-20240815311660 \N \N \N 1 \N [{"file_id": "1d400664-1ce4-49d5-b5c3-a2aa50140754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90ea74014bcf46ad84e3a5c3e14bb9d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90ea74014bcf46ad84e3a5c3e14bb9d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90ea74014bcf46ad84e3a5c3e14bb9d2.jpg", "file_size": 13600, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#XL白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ea74014bcf46ad84e3a5c3e14bb9d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ea74014bcf46ad84e3a5c3e14bb9d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ea74014bcf46ad84e3a5c3e14bb9d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90ea74014bcf46ad84e3a5c3e14bb9d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90ea74014bcf46ad84e3a5c3e14bb9d2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qC2n-X3w1Yv7Fe9cDfdSFNZtLws=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.058088+00 2025-12-09 10:15:35.058095+00 16444 JTSS720FW#VS-D3 SPMX-20240815311651 \N \N \N 1 \N [{"file_id": "a9aad713-f89d-4d28-ae58-ae5f09c656be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "950d0961200b467b9f2893ea14c3fc82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "950d0961200b467b9f2893ea14c3fc82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "950d0961200b467b9f2893ea14c3fc82.jpg", "file_size": 11213, "is_delete": false, "file_type": 1, "original_file_name": "JTSS720FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950d0961200b467b9f2893ea14c3fc82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950d0961200b467b9f2893ea14c3fc82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/950d0961200b467b9f2893ea14c3fc82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/950d0961200b467b9f2893ea14c3fc82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/950d0961200b467b9f2893ea14c3fc82.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcRshwOvWeBRJMeN2IJdwetQ3y4=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.06078+00 2025-12-09 10:15:35.060785+00 16445 FX0003-13#橙色 SPMX-20240815311659 \N \N \N 1 \N [{"file_id": "979061e3-f4d4-4d71-85c7-e7f6bf8381b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a08c100792b411ebbff0ad27d051880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a08c100792b411ebbff0ad27d051880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a08c100792b411ebbff0ad27d051880.jpg", "file_size": 20524, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-13#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a08c100792b411ebbff0ad27d051880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a08c100792b411ebbff0ad27d051880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a08c100792b411ebbff0ad27d051880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a08c100792b411ebbff0ad27d051880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a08c100792b411ebbff0ad27d051880.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fo-GkqyDsUJipqbSdOHQ2CPrg2U=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.063523+00 2025-12-09 10:15:35.063529+00 16446 FX0003-129#黄色RC23 SPMX-20240815311650 \N \N \N 1 \N [{"file_id": "ff5a0790-9145-4fb7-91e3-c967e4000807", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20cfad0f37214bce80c0ce457570004f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20cfad0f37214bce80c0ce457570004f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20cfad0f37214bce80c0ce457570004f.jpg", "file_size": 46647, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-129#黄色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cfad0f37214bce80c0ce457570004f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cfad0f37214bce80c0ce457570004f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20cfad0f37214bce80c0ce457570004f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20cfad0f37214bce80c0ce457570004f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20cfad0f37214bce80c0ce457570004f.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCTjNNX0fDAC2JgSsdnbLg3yLoE=", "createTime": "2024-08-15 15:00:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.066217+00 2025-12-09 10:15:35.066223+00 16447 85028#10码+12码 SPMX-20240815311655 \N \N \N 1 \N [{"file_id": "98ec6393-9fa0-4828-826b-f494874374d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9790ebc18b22434db1c02598cbf0bbbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9790ebc18b22434db1c02598cbf0bbbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9790ebc18b22434db1c02598cbf0bbbd.jpg", "file_size": 21015, "is_delete": false, "file_type": 1, "original_file_name": "85028#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9790ebc18b22434db1c02598cbf0bbbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9790ebc18b22434db1c02598cbf0bbbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9790ebc18b22434db1c02598cbf0bbbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9790ebc18b22434db1c02598cbf0bbbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9790ebc18b22434db1c02598cbf0bbbd.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGOPSs4v5YrJCcZnWoqf0slP6kI=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.068801+00 2025-12-09 10:15:35.068807+00 16448 LJH1859#白色 SPMX-20240815311658 \N \N \N 1 \N [{"file_id": "c43b5522-2161-451b-aefc-54fad15a24f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00dbdc2844b0479783a03bc4401a597e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00dbdc2844b0479783a03bc4401a597e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00dbdc2844b0479783a03bc4401a597e.jpg", "file_size": 42592, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dbdc2844b0479783a03bc4401a597e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dbdc2844b0479783a03bc4401a597e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00dbdc2844b0479783a03bc4401a597e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00dbdc2844b0479783a03bc4401a597e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00dbdc2844b0479783a03bc4401a597e.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8w97gQm-2yP7x-4YiWXzLfHmB1k=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.071437+00 2025-12-09 10:15:35.071443+00 16449 1226-3FWF#杏色 SPMX-20240815311654 \N \N \N 1 \N [{"file_id": "ea24b046-c06f-4974-aa35-929c06a3ea3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8786931a8b224ad9aade1dc32af2aa19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8786931a8b224ad9aade1dc32af2aa19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8786931a8b224ad9aade1dc32af2aa19.jpg", "file_size": 21146, "is_delete": false, "file_type": 1, "original_file_name": "1226-3FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8786931a8b224ad9aade1dc32af2aa19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8786931a8b224ad9aade1dc32af2aa19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8786931a8b224ad9aade1dc32af2aa19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8786931a8b224ad9aade1dc32af2aa19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8786931a8b224ad9aade1dc32af2aa19.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UgOD8WjjTLMiH_o_8AGtfv_0wMQ=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.074129+00 2025-12-09 10:15:35.074135+00 16450 230202#粉L码 SPMX-20240815311656 \N \N \N 1 \N [{"file_id": "73688ca8-a984-4cc7-ad61-b9c0c6fa98b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03173824bc6f4d9ca7ad00abd1598c70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03173824bc6f4d9ca7ad00abd1598c70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03173824bc6f4d9ca7ad00abd1598c70.jpg", "file_size": 15073, "is_delete": false, "file_type": 1, "original_file_name": "230202#粉L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03173824bc6f4d9ca7ad00abd1598c70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03173824bc6f4d9ca7ad00abd1598c70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03173824bc6f4d9ca7ad00abd1598c70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03173824bc6f4d9ca7ad00abd1598c70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03173824bc6f4d9ca7ad00abd1598c70.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2n36eCEgJ_rT1bvrLFtkwLCc1Us=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.076816+00 2025-12-09 10:15:35.076822+00 16451 DL31473#彩兰色前幅定位裁 SPMX-20240815311653 \N \N \N 1 \N [{"file_id": "20f8a13d-ecd7-4830-9d65-57fbacdd0295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ab2a3ac7a3b40139b282abba72294e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ab2a3ac7a3b40139b282abba72294e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ab2a3ac7a3b40139b282abba72294e1.jpg", "file_size": 22732, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#彩兰色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab2a3ac7a3b40139b282abba72294e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab2a3ac7a3b40139b282abba72294e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ab2a3ac7a3b40139b282abba72294e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ab2a3ac7a3b40139b282abba72294e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ab2a3ac7a3b40139b282abba72294e1.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2r3ZDSMFyCrQ8jmLlFiAFJlhKM=", "createTime": "2024-08-15 15:00:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.079671+00 2025-12-09 10:15:35.079677+00 16452 0006美国国旗捆条 SPMX-20240815311664 \N \N \N 1 \N [{"file_id": "bd098cfa-06eb-4357-bad6-be850c711a6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "219c2f703e204ff2905df1e45ef95ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "219c2f703e204ff2905df1e45ef95ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "219c2f703e204ff2905df1e45ef95ce3.jpg", "file_size": 19540, "is_delete": false, "file_type": 1, "original_file_name": "0006美国国旗捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c2f703e204ff2905df1e45ef95ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c2f703e204ff2905df1e45ef95ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c2f703e204ff2905df1e45ef95ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/219c2f703e204ff2905df1e45ef95ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/219c2f703e204ff2905df1e45ef95ce3.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRATQPNYh7EzZtjXB01NTtODha0=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.08234+00 2025-12-09 10:15:35.082346+00 16453 LZ1354#上身5号色 SPMX-20240815311666 \N \N \N 1 \N [{"file_id": "c0259426-5a1d-4bee-b424-e01b30c79e9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab4b1c97513c440cbab3d01b3aaa4a15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab4b1c97513c440cbab3d01b3aaa4a15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab4b1c97513c440cbab3d01b3aaa4a15.jpg", "file_size": 21771, "is_delete": false, "file_type": 1, "original_file_name": "LZ1354#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab4b1c97513c440cbab3d01b3aaa4a15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab4b1c97513c440cbab3d01b3aaa4a15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab4b1c97513c440cbab3d01b3aaa4a15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab4b1c97513c440cbab3d01b3aaa4a15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab4b1c97513c440cbab3d01b3aaa4a15.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nwax4fA3CxU0-toOegdGqbwfHlU=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.085103+00 2025-12-09 10:15:35.08511+00 16454 1226-3FWF#黑色 SPMX-20240815311663 \N \N \N 1 \N [{"file_id": "8146d72e-650e-499e-8606-1c871cb715ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f89523c16384558904657395ac35363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f89523c16384558904657395ac35363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f89523c16384558904657395ac35363.jpg", "file_size": 24280, "is_delete": false, "file_type": 1, "original_file_name": "1226-3FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f89523c16384558904657395ac35363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f89523c16384558904657395ac35363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f89523c16384558904657395ac35363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f89523c16384558904657395ac35363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f89523c16384558904657395ac35363.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdaZgK1m0tXTrpZkHvkh92yUdck=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.08785+00 2025-12-09 10:15:35.087856+00 16455 85028#14码 SPMX-20240815311665 \N \N \N 1 \N [{"file_id": "d67c8c48-ce07-4360-9ed3-dbb8fe9f192a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6295a47bf574bd1912adff3b38bbae8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6295a47bf574bd1912adff3b38bbae8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6295a47bf574bd1912adff3b38bbae8.jpg", "file_size": 19891, "is_delete": false, "file_type": 1, "original_file_name": "85028#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6295a47bf574bd1912adff3b38bbae8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6295a47bf574bd1912adff3b38bbae8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6295a47bf574bd1912adff3b38bbae8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6295a47bf574bd1912adff3b38bbae8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6295a47bf574bd1912adff3b38bbae8.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dXj-xoL5Tgr7DVqIqe07_TVe_1E=", "createTime": "2024-08-15 15:00:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.090557+00 2025-12-09 10:15:35.090562+00 16456 DL31473#彩兰色袖子定位裁 SPMX-20240815311669 \N \N \N 1 \N [{"file_id": "da56340c-7223-4d5a-980c-586e24ab2fc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26df040c37294f8787759a910af0ffd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26df040c37294f8787759a910af0ffd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26df040c37294f8787759a910af0ffd7.jpg", "file_size": 13010, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#彩兰色袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26df040c37294f8787759a910af0ffd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26df040c37294f8787759a910af0ffd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26df040c37294f8787759a910af0ffd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26df040c37294f8787759a910af0ffd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26df040c37294f8787759a910af0ffd7.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdeX7j1eofBYBzGdQK-3eTD94UQ=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.09331+00 2025-12-09 10:15:35.09332+00 16457 FX0003-13#蓝色 SPMX-20240815311668 \N \N \N 1 \N [{"file_id": "f3369d3b-fe4c-4b29-84ad-f4d6602c7873", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "403a3da2ca924b05a865728a61072e46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "403a3da2ca924b05a865728a61072e46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "403a3da2ca924b05a865728a61072e46.jpg", "file_size": 20013, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-13#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403a3da2ca924b05a865728a61072e46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403a3da2ca924b05a865728a61072e46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403a3da2ca924b05a865728a61072e46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/403a3da2ca924b05a865728a61072e46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/403a3da2ca924b05a865728a61072e46.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O1oSxccUSc8SS1d9f4z3edpDM3A=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.096099+00 2025-12-09 10:15:35.096132+00 16458 0007-103#粉色 SPMX-20240815311673 \N \N \N 1 \N [{"file_id": "3be5698c-196f-4e00-9e30-f4b4e68df3d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f373c25fd6984404b27a1119bdadf23b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f373c25fd6984404b27a1119bdadf23b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f373c25fd6984404b27a1119bdadf23b.jpg", "file_size": 13947, "is_delete": false, "file_type": 1, "original_file_name": "0007-103#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f373c25fd6984404b27a1119bdadf23b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f373c25fd6984404b27a1119bdadf23b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f373c25fd6984404b27a1119bdadf23b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f373c25fd6984404b27a1119bdadf23b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f373c25fd6984404b27a1119bdadf23b.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_piBllE-GL-c80hl7LvculDUbUM=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.098884+00 2025-12-09 10:15:35.09889+00 16459 LJH1859#碎花匹布桔色 SPMX-20240815311671 \N \N \N 1 \N [{"file_id": "ac0aea97-98ad-431b-9dcf-222428540f80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "647f8ebcf3554b5f8650905a6e42b676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "647f8ebcf3554b5f8650905a6e42b676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "647f8ebcf3554b5f8650905a6e42b676.jpg", "file_size": 37386, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647f8ebcf3554b5f8650905a6e42b676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647f8ebcf3554b5f8650905a6e42b676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647f8ebcf3554b5f8650905a6e42b676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/647f8ebcf3554b5f8650905a6e42b676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/647f8ebcf3554b5f8650905a6e42b676.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kylOVQ9uzqofIzVdoWxcQ0doIBY=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.101729+00 2025-12-09 10:15:35.101735+00 16460 JTSS722FW#VS-D3 SPMX-20240815311674 \N \N \N 1 \N [{"file_id": "3e1ae35c-c063-4104-b804-c95efa37ef07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bca8f5262cd745c1a4660adfe6ecdbf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bca8f5262cd745c1a4660adfe6ecdbf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bca8f5262cd745c1a4660adfe6ecdbf2.jpg", "file_size": 9406, "is_delete": false, "file_type": 1, "original_file_name": "JTSS722FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca8f5262cd745c1a4660adfe6ecdbf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca8f5262cd745c1a4660adfe6ecdbf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca8f5262cd745c1a4660adfe6ecdbf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bca8f5262cd745c1a4660adfe6ecdbf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bca8f5262cd745c1a4660adfe6ecdbf2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_MVCzK5XIuSupXGJ28V8FgUY6o=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.104456+00 2025-12-09 10:15:35.104462+00 16461 HX001FEW#净色VS-D3 SPMX-20240815311672 \N \N \N 1 \N [{"file_id": "03859c25-56f6-4efd-9283-e4f0b538ad01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c72561f982f348769f771a27ef47d096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c72561f982f348769f771a27ef47d096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c72561f982f348769f771a27ef47d096.jpg", "file_size": 5652, "is_delete": false, "file_type": 1, "original_file_name": "HX001FEW#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72561f982f348769f771a27ef47d096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72561f982f348769f771a27ef47d096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c72561f982f348769f771a27ef47d096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c72561f982f348769f771a27ef47d096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c72561f982f348769f771a27ef47d096.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-tSWC6iVU_woE2P_VtqtkELAmQ=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.107193+00 2025-12-09 10:15:35.107199+00 16462 230202#粉M码 SPMX-20240815311667 \N \N \N 1 \N [{"file_id": "9ee35c5b-20fa-45e4-91d0-ff0d83dfd4ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52acc937cdc744138020a7db7fd433ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52acc937cdc744138020a7db7fd433ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52acc937cdc744138020a7db7fd433ec.jpg", "file_size": 15043, "is_delete": false, "file_type": 1, "original_file_name": "230202#粉M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52acc937cdc744138020a7db7fd433ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52acc937cdc744138020a7db7fd433ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52acc937cdc744138020a7db7fd433ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52acc937cdc744138020a7db7fd433ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52acc937cdc744138020a7db7fd433ec.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:germXQmPUrgKtiC7Y1wkDOl3d9Y=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.109891+00 2025-12-09 10:15:35.109897+00 16463 1226FWF#红色 SPMX-20240815311670 \N \N \N 1 \N [{"file_id": "ed973f40-8593-473e-91e2-8f78c891599e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eb3e82acb864887952d5fc6259580f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eb3e82acb864887952d5fc6259580f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eb3e82acb864887952d5fc6259580f2.jpg", "file_size": 22148, "is_delete": false, "file_type": 1, "original_file_name": "1226FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb3e82acb864887952d5fc6259580f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb3e82acb864887952d5fc6259580f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb3e82acb864887952d5fc6259580f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eb3e82acb864887952d5fc6259580f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eb3e82acb864887952d5fc6259580f2.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aG1GyXy2-dLx09_41W7xVRcfx_I=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.11264+00 2025-12-09 10:15:35.112645+00 16464 CC093FW#XL粉 SPMX-20240815311675 \N \N \N 1 \N [{"file_id": "3396bd92-7ffe-4011-8f69-57a460b7350d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9c28e9cea0242d3bc34a464dc844173.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9c28e9cea0242d3bc34a464dc844173.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9c28e9cea0242d3bc34a464dc844173.jpg", "file_size": 12559, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#XL粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c28e9cea0242d3bc34a464dc844173.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c28e9cea0242d3bc34a464dc844173.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9c28e9cea0242d3bc34a464dc844173.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9c28e9cea0242d3bc34a464dc844173.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9c28e9cea0242d3bc34a464dc844173.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L2tVIWqR4zPkITgMjL4MwojBBqM=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.115475+00 2025-12-09 10:15:35.115481+00 16465 LZ1355#上身1号色 SPMX-20240815311677 \N \N \N 1 \N [{"file_id": "c1c7c6b2-7c21-443d-a06f-9924ec64f497", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg", "file_size": 20074, "is_delete": false, "file_type": 1, "original_file_name": "LZ1355#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fe7d4ccaf0e4f54be9ffd2cc1918afa.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhcFRFYner4FrZvrwhHi2YbHZqo=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.121124+00 2025-12-09 10:15:35.121132+00 16466 230202#粉S码 SPMX-20240815311678 \N \N \N 1 \N [{"file_id": "7fb10357-1560-478a-a5ba-3de6add5bc0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29dca9044a2144719254519387b133a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29dca9044a2144719254519387b133a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29dca9044a2144719254519387b133a4.jpg", "file_size": 15402, "is_delete": false, "file_type": 1, "original_file_name": "230202#粉S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dca9044a2144719254519387b133a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dca9044a2144719254519387b133a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dca9044a2144719254519387b133a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29dca9044a2144719254519387b133a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29dca9044a2144719254519387b133a4.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHRllnaUIuStz4WBR_WNymwEq44=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.123816+00 2025-12-09 10:15:35.123823+00 16467 85028#4码+8码 SPMX-20240815311679 \N \N \N 1 \N [{"file_id": "8fab6d3a-167c-4dbd-8bfa-e824421c60b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac469896a7914df8898b85eddadeb49d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac469896a7914df8898b85eddadeb49d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac469896a7914df8898b85eddadeb49d.jpg", "file_size": 21352, "is_delete": false, "file_type": 1, "original_file_name": "85028#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac469896a7914df8898b85eddadeb49d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac469896a7914df8898b85eddadeb49d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac469896a7914df8898b85eddadeb49d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac469896a7914df8898b85eddadeb49d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac469896a7914df8898b85eddadeb49d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_aRQMw-NLUvWD7yO12O6P-Xt9Y=", "createTime": "2024-08-15 15:00:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.126531+00 2025-12-09 10:15:35.126538+00 16468 DL31473#枣红色前幅定位裁 SPMX-20240815311681 \N \N \N 1 \N [{"file_id": "f0b80809-5379-4309-b239-10162bb5b3f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76dcd1694cfa4463954ee0253d0232f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76dcd1694cfa4463954ee0253d0232f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76dcd1694cfa4463954ee0253d0232f5.jpg", "file_size": 22486, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#枣红色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76dcd1694cfa4463954ee0253d0232f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76dcd1694cfa4463954ee0253d0232f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76dcd1694cfa4463954ee0253d0232f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76dcd1694cfa4463954ee0253d0232f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76dcd1694cfa4463954ee0253d0232f5.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M66tPczgFEtXlyUUP4mAVidDepA=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.129272+00 2025-12-09 10:15:35.129277+00 16469 HX001FFW#VS-D3 SPMX-20240815311683 \N \N \N 1 \N [{"file_id": "93f4998c-d678-4f03-ac3a-15643613d30b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fc9bb3afb8747c088d2d950085e5dc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fc9bb3afb8747c088d2d950085e5dc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fc9bb3afb8747c088d2d950085e5dc9.jpg", "file_size": 12484, "is_delete": false, "file_type": 1, "original_file_name": "HX001FFW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9bb3afb8747c088d2d950085e5dc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9bb3afb8747c088d2d950085e5dc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fc9bb3afb8747c088d2d950085e5dc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fc9bb3afb8747c088d2d950085e5dc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fc9bb3afb8747c088d2d950085e5dc9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpSPNmS81SZkmc_T59F8S84rdT0=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.132288+00 2025-12-09 10:15:35.132296+00 16470 LJH1859#碎花匹布白色 SPMX-20240815311682 \N \N \N 1 \N [{"file_id": "fc57bf08-f6ed-4abe-a3db-2436291a6a86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0e1750618934625b7735f399f7f8dfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0e1750618934625b7735f399f7f8dfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0e1750618934625b7735f399f7f8dfa.jpg", "file_size": 31917, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e1750618934625b7735f399f7f8dfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e1750618934625b7735f399f7f8dfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e1750618934625b7735f399f7f8dfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0e1750618934625b7735f399f7f8dfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0e1750618934625b7735f399f7f8dfa.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJnUUpyyuoP6UlS9q9YDtCJR3LM=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.135352+00 2025-12-09 10:15:35.135358+00 16471 230202#粉XL码 SPMX-20240815311686 \N \N \N 1 \N [{"file_id": "785c1acf-e2b8-45af-b1fc-ba1db6ca762d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b787902699cd40be8f6a22ac412d4ac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b787902699cd40be8f6a22ac412d4ac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b787902699cd40be8f6a22ac412d4ac8.jpg", "file_size": 14554, "is_delete": false, "file_type": 1, "original_file_name": "230202#粉XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787902699cd40be8f6a22ac412d4ac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787902699cd40be8f6a22ac412d4ac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b787902699cd40be8f6a22ac412d4ac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b787902699cd40be8f6a22ac412d4ac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b787902699cd40be8f6a22ac412d4ac8.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpx3O6gO-iiC43THgX6bcglwwUk=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.138214+00 2025-12-09 10:15:35.13822+00 16472 CC093FW#XL绿 SPMX-20240815311688 \N \N \N 1 \N [{"file_id": "9561bf1d-417a-4b61-bd0d-b3ec442ea7c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "087aac095c174261b55d2f54d17c9b3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "087aac095c174261b55d2f54d17c9b3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "087aac095c174261b55d2f54d17c9b3d.jpg", "file_size": 14060, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#XL绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087aac095c174261b55d2f54d17c9b3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087aac095c174261b55d2f54d17c9b3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087aac095c174261b55d2f54d17c9b3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/087aac095c174261b55d2f54d17c9b3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/087aac095c174261b55d2f54d17c9b3d.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ihNMXUI29XjvqGvI8bN4jI6yDU=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.140954+00 2025-12-09 10:15:35.140959+00 16473 0007-103#红色 SPMX-20240815311684 \N \N \N 1 \N [{"file_id": "af23a4aa-048a-4b39-8dee-e5443af139c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d22f0f0b3024e04916b459808c55608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d22f0f0b3024e04916b459808c55608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d22f0f0b3024e04916b459808c55608.jpg", "file_size": 24981, "is_delete": false, "file_type": 1, "original_file_name": "0007-103#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d22f0f0b3024e04916b459808c55608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d22f0f0b3024e04916b459808c55608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d22f0f0b3024e04916b459808c55608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d22f0f0b3024e04916b459808c55608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d22f0f0b3024e04916b459808c55608.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XSYl13vwwB17etiLXRnlBVhIuCI=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.143902+00 2025-12-09 10:15:35.143908+00 16474 JTSS723FW#VS-D3 SPMX-20240815311685 \N \N \N 1 \N [{"file_id": "e1488004-4350-4f08-ada3-4d75bb09600c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a803fbfe5ce446e9d4a0ca1bc623b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a803fbfe5ce446e9d4a0ca1bc623b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a803fbfe5ce446e9d4a0ca1bc623b94.jpg", "file_size": 15872, "is_delete": false, "file_type": 1, "original_file_name": "JTSS723FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a803fbfe5ce446e9d4a0ca1bc623b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a803fbfe5ce446e9d4a0ca1bc623b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a803fbfe5ce446e9d4a0ca1bc623b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a803fbfe5ce446e9d4a0ca1bc623b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a803fbfe5ce446e9d4a0ca1bc623b94.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bP1ohcwIUDf8e-Lzi71oyxQ2hqM=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.146776+00 2025-12-09 10:15:35.146782+00 16475 FX0003-130#粉色 SPMX-20240815311689 \N \N \N 1 \N [{"file_id": "232066cd-fc8a-49fd-b3d3-400fd95c79a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f0bbe1958674c5ca5c9e61a50927169.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f0bbe1958674c5ca5c9e61a50927169.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f0bbe1958674c5ca5c9e61a50927169.jpg", "file_size": 54454, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-130#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0bbe1958674c5ca5c9e61a50927169.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0bbe1958674c5ca5c9e61a50927169.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0bbe1958674c5ca5c9e61a50927169.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f0bbe1958674c5ca5c9e61a50927169.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f0bbe1958674c5ca5c9e61a50927169.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvaWhmQ0uPMiuc_i8hKxCCCAPNs=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.149599+00 2025-12-09 10:15:35.149605+00 16476 85028#4码 SPMX-20240815311687 \N \N \N 1 \N [{"file_id": "d779c68b-ec3e-424d-9953-21737d9f2de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b3a758abfe423fadd5ad582e16c2e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b3a758abfe423fadd5ad582e16c2e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b3a758abfe423fadd5ad582e16c2e8.jpg", "file_size": 21604, "is_delete": false, "file_type": 1, "original_file_name": "85028#4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b3a758abfe423fadd5ad582e16c2e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b3a758abfe423fadd5ad582e16c2e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b3a758abfe423fadd5ad582e16c2e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b3a758abfe423fadd5ad582e16c2e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b3a758abfe423fadd5ad582e16c2e8.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ix58IroHLi_jzEw-lfS4y5Y2bs=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.152427+00 2025-12-09 10:15:35.152433+00 16477 1226FWF#蓝色 SPMX-20240815311680 \N \N \N 1 \N [{"file_id": "5fb66c85-7239-437c-8b3b-041a8a309df8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg", "file_size": 22399, "is_delete": false, "file_type": 1, "original_file_name": "1226FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf3cbeaf527a4f2a86121b7c81b2b8dc.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZEWx5tHScOzM1gP8zCMA_1sjuk=", "createTime": "2024-08-15 15:00:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.155288+00 2025-12-09 10:15:35.155295+00 16478 LZ1355#上身2号色 SPMX-20240815311690 \N \N \N 1 \N [{"file_id": "af449be1-fcba-435c-8ae8-d78a3c81b071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9945a37569d5424eb6586b508ca47f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9945a37569d5424eb6586b508ca47f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9945a37569d5424eb6586b508ca47f07.jpg", "file_size": 21309, "is_delete": false, "file_type": 1, "original_file_name": "LZ1355#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9945a37569d5424eb6586b508ca47f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9945a37569d5424eb6586b508ca47f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9945a37569d5424eb6586b508ca47f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9945a37569d5424eb6586b508ca47f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9945a37569d5424eb6586b508ca47f07.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MfBNdloNPERpOhOLr3v4qWWwCDw=", "createTime": "2024-08-15 15:00:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.158088+00 2025-12-09 10:15:35.158094+00 16479 0007-103#蓝色 SPMX-20240815311691 \N \N \N 1 \N [{"file_id": "8a30e706-0649-4153-a804-513c18057545", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9411f60e685b48389ffba422dd14c6c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9411f60e685b48389ffba422dd14c6c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9411f60e685b48389ffba422dd14c6c9.jpg", "file_size": 24667, "is_delete": false, "file_type": 1, "original_file_name": "0007-103#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9411f60e685b48389ffba422dd14c6c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9411f60e685b48389ffba422dd14c6c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9411f60e685b48389ffba422dd14c6c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9411f60e685b48389ffba422dd14c6c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9411f60e685b48389ffba422dd14c6c9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq4F-zeHkPaKUDquDZ4fOJIco_s=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.160947+00 2025-12-09 10:15:35.160952+00 16480 LJH1859#碎花匹布粉色 SPMX-20240815311694 \N \N \N 1 \N [{"file_id": "95f39a33-0e8a-43e7-91cd-9a58063c9c90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b25ffe31884237a67b3c9bde9d69e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b25ffe31884237a67b3c9bde9d69e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b25ffe31884237a67b3c9bde9d69e9.jpg", "file_size": 30535, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b25ffe31884237a67b3c9bde9d69e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b25ffe31884237a67b3c9bde9d69e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b25ffe31884237a67b3c9bde9d69e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b25ffe31884237a67b3c9bde9d69e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b25ffe31884237a67b3c9bde9d69e9.jpg?e=1765361734&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bvr8cvj2_fCj2VzfdJlhmFhyMpM=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.817646+00 2025-12-09 10:15:35.817657+00 16481 DL31473#枣红色袖子定位裁 SPMX-20240815311695 \N \N \N 1 \N [{"file_id": "bbe15cdd-0a3d-442d-ac75-32db1fc37f6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b86692a89c54aee9e900a00ec481d1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b86692a89c54aee9e900a00ec481d1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b86692a89c54aee9e900a00ec481d1c.jpg", "file_size": 13859, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#枣红色袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b86692a89c54aee9e900a00ec481d1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b86692a89c54aee9e900a00ec481d1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b86692a89c54aee9e900a00ec481d1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b86692a89c54aee9e900a00ec481d1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b86692a89c54aee9e900a00ec481d1c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nJeHCqoDSw9Arqk_g6pvT2q2TEk=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.821504+00 2025-12-09 10:15:35.821511+00 16482 1227FWF#条纹罗马布 SPMX-20240815311693 \N \N \N 1 \N [{"file_id": "7013b8b3-e461-4fe1-bba2-5a1815a664dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6036b9069b54122a9f32b2fabd66201.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6036b9069b54122a9f32b2fabd66201.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6036b9069b54122a9f32b2fabd66201.jpg", "file_size": 18737, "is_delete": false, "file_type": 1, "original_file_name": "1227FWF#条纹罗马布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6036b9069b54122a9f32b2fabd66201.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6036b9069b54122a9f32b2fabd66201.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6036b9069b54122a9f32b2fabd66201.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6036b9069b54122a9f32b2fabd66201.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6036b9069b54122a9f32b2fabd66201.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TeGLBkitrvgsPsYIAZ3N_in1eo=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.824413+00 2025-12-09 10:15:35.824418+00 16483 JTSS724FW#VS-D3 SPMX-20240815311696 \N \N \N 1 \N [{"file_id": "06f5c7a3-1dfd-492c-89a8-e7f4f37e341c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39f4712025274223890306aadd080604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39f4712025274223890306aadd080604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39f4712025274223890306aadd080604.jpg", "file_size": 18504, "is_delete": false, "file_type": 1, "original_file_name": "JTSS724FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f4712025274223890306aadd080604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f4712025274223890306aadd080604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f4712025274223890306aadd080604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39f4712025274223890306aadd080604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39f4712025274223890306aadd080604.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qYc2dHzsbQY6WArHAg1_D_1LPSo=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.827255+00 2025-12-09 10:15:35.827265+00 16484 85028#6码 SPMX-20240815311699 \N \N \N 1 \N [{"file_id": "5e457bee-e8df-4cd0-a6b3-cee35fa58c46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1534537d06fa4cf2aa09843869a44676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1534537d06fa4cf2aa09843869a44676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1534537d06fa4cf2aa09843869a44676.jpg", "file_size": 21398, "is_delete": false, "file_type": 1, "original_file_name": "85028#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1534537d06fa4cf2aa09843869a44676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1534537d06fa4cf2aa09843869a44676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1534537d06fa4cf2aa09843869a44676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1534537d06fa4cf2aa09843869a44676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1534537d06fa4cf2aa09843869a44676.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QqYY0E0lsjaiFKrMmXdd6Hu6M0Q=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.829999+00 2025-12-09 10:15:35.830005+00 16485 LZ1355#上身3号色 SPMX-20240815311700 \N \N \N 1 \N [{"file_id": "b9776ec8-c930-4a4c-8253-0681f32295ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55789b579b784e1da64cefc638e00512.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55789b579b784e1da64cefc638e00512.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55789b579b784e1da64cefc638e00512.jpg", "file_size": 22239, "is_delete": false, "file_type": 1, "original_file_name": "LZ1355#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789b579b784e1da64cefc638e00512.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789b579b784e1da64cefc638e00512.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55789b579b784e1da64cefc638e00512.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55789b579b784e1da64cefc638e00512.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55789b579b784e1da64cefc638e00512.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jn4qttcmynArfTNUgZFvEmRxbA=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.832685+00 2025-12-09 10:15:35.832691+00 16486 HX001FW# SPMX-20240815311692 \N \N \N 1 \N [{"file_id": "b01d98ac-c066-4474-a0be-d7c1c53534a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37f8005cbb894a2990e3c4e69565ec24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37f8005cbb894a2990e3c4e69565ec24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37f8005cbb894a2990e3c4e69565ec24.jpg", "file_size": 16380, "is_delete": false, "file_type": 1, "original_file_name": "HX001FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f8005cbb894a2990e3c4e69565ec24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f8005cbb894a2990e3c4e69565ec24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f8005cbb894a2990e3c4e69565ec24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37f8005cbb894a2990e3c4e69565ec24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37f8005cbb894a2990e3c4e69565ec24.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcXbNId_KNft537ZA6AZ6kjvi90=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.835399+00 2025-12-09 10:15:35.835405+00 16487 CC093FW#XL黄 SPMX-20240815311698 \N \N \N 1 \N [{"file_id": "f5c0f8f5-311b-42fc-8d27-cb1a6b1c763e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfab79cf1b8941768467ffb36013dae1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfab79cf1b8941768467ffb36013dae1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfab79cf1b8941768467ffb36013dae1.jpg", "file_size": 14243, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#XL黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfab79cf1b8941768467ffb36013dae1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfab79cf1b8941768467ffb36013dae1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfab79cf1b8941768467ffb36013dae1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfab79cf1b8941768467ffb36013dae1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfab79cf1b8941768467ffb36013dae1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QT8Z9bd4X3LS5SYmec1YzWVM390=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.838291+00 2025-12-09 10:15:35.838297+00 16488 2302FWF#长款卡其 SPMX-20240815311697 \N \N \N 1 \N [{"file_id": "32eedcff-35c8-40d2-99cc-0de7890d5bfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd8ee26684f0490b83ae3f8a86efde6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd8ee26684f0490b83ae3f8a86efde6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd8ee26684f0490b83ae3f8a86efde6a.jpg", "file_size": 12447, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8ee26684f0490b83ae3f8a86efde6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8ee26684f0490b83ae3f8a86efde6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd8ee26684f0490b83ae3f8a86efde6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd8ee26684f0490b83ae3f8a86efde6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd8ee26684f0490b83ae3f8a86efde6a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibPhpylocUezbPwuFUQYO3g5Rk8=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.841168+00 2025-12-09 10:15:35.841174+00 16489 FX0003-131#2号色 SPMX-20240815311712 \N \N \N 1 \N [{"file_id": "85b40eae-b455-4666-9c5d-4e12f1611533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ead838777cc48f0b37a8dd9a901b056.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ead838777cc48f0b37a8dd9a901b056.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ead838777cc48f0b37a8dd9a901b056.jpg", "file_size": 52853, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-131#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ead838777cc48f0b37a8dd9a901b056.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ead838777cc48f0b37a8dd9a901b056.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ead838777cc48f0b37a8dd9a901b056.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ead838777cc48f0b37a8dd9a901b056.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ead838777cc48f0b37a8dd9a901b056.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvxTElaGqRFbZ7wg58n8KZQcZrk=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.844015+00 2025-12-09 10:15:35.844021+00 16490 85028#乱花 SPMX-20240815311709 \N \N \N 1 \N [{"file_id": "4c21b51f-51d2-4225-a488-0283bffa8321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd3bc997ed2942b6a9dd5190de2d4b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd3bc997ed2942b6a9dd5190de2d4b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd3bc997ed2942b6a9dd5190de2d4b94.jpg", "file_size": 14361, "is_delete": false, "file_type": 1, "original_file_name": "85028#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd3bc997ed2942b6a9dd5190de2d4b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd3bc997ed2942b6a9dd5190de2d4b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd3bc997ed2942b6a9dd5190de2d4b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd3bc997ed2942b6a9dd5190de2d4b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd3bc997ed2942b6a9dd5190de2d4b94.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45ETYcVIYxtfLy0le2eb28raQgo=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.846904+00 2025-12-09 10:15:35.84691+00 16491 0007-103#黄色 SPMX-20240815311703 \N \N \N 1 \N [{"file_id": "c79e0192-f59d-44ad-a1fe-67a6a0b8bc90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7769049c5e3a4540bb085fd76f131d2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7769049c5e3a4540bb085fd76f131d2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7769049c5e3a4540bb085fd76f131d2f.jpg", "file_size": 17893, "is_delete": false, "file_type": 1, "original_file_name": "0007-103#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7769049c5e3a4540bb085fd76f131d2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7769049c5e3a4540bb085fd76f131d2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7769049c5e3a4540bb085fd76f131d2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7769049c5e3a4540bb085fd76f131d2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7769049c5e3a4540bb085fd76f131d2f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V_a0OOh3PoZdV8pTgJEQzrOB4S4=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.849822+00 2025-12-09 10:15:35.849829+00 16492 DL31473#浅粉色前幅定位裁 SPMX-20240815311705 \N \N \N 1 \N [{"file_id": "3f0774e3-3291-4296-82da-a6d00a637e59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbf044c0d1104e39a8b354e4f843a8a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbf044c0d1104e39a8b354e4f843a8a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbf044c0d1104e39a8b354e4f843a8a2.jpg", "file_size": 22016, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#浅粉色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbf044c0d1104e39a8b354e4f843a8a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbf044c0d1104e39a8b354e4f843a8a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbf044c0d1104e39a8b354e4f843a8a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbf044c0d1104e39a8b354e4f843a8a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbf044c0d1104e39a8b354e4f843a8a2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grI4tVn7YcZnK5tmJeOjpTC89Xc=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.852788+00 2025-12-09 10:15:35.852794+00 16493 LJH1859#碎花匹布蓝色 SPMX-20240815311706 \N \N \N 1 \N [{"file_id": "61b702d4-9882-4b41-b7df-03549d9ae863", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0613324525004cafb7fdb5479a2ef2d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0613324525004cafb7fdb5479a2ef2d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0613324525004cafb7fdb5479a2ef2d6.jpg", "file_size": 39864, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0613324525004cafb7fdb5479a2ef2d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0613324525004cafb7fdb5479a2ef2d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0613324525004cafb7fdb5479a2ef2d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0613324525004cafb7fdb5479a2ef2d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0613324525004cafb7fdb5479a2ef2d6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QDVs7OhIDLaUZbI9N4RjWFRynGg=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.855636+00 2025-12-09 10:15:35.855641+00 16494 CC093FW#XL黑 SPMX-20240815311710 \N \N \N 1 \N [{"file_id": "e3c9f6ce-40ba-4f62-8c9c-dc1870fb5747", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff14529e6019492e9f5e100d39d56e2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff14529e6019492e9f5e100d39d56e2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff14529e6019492e9f5e100d39d56e2c.jpg", "file_size": 15129, "is_delete": false, "file_type": 1, "original_file_name": "CC093FW#XL黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff14529e6019492e9f5e100d39d56e2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff14529e6019492e9f5e100d39d56e2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff14529e6019492e9f5e100d39d56e2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff14529e6019492e9f5e100d39d56e2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff14529e6019492e9f5e100d39d56e2c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7CmPOBLowmssXSc1Kx_0HxN8i9E=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.858992+00 2025-12-09 10:15:35.859+00 16495 0007-103#黑色 SPMX-20240815311714 \N \N \N 1 \N [{"file_id": "e519c496-2045-4af4-bdc1-4c6660451a53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4efd366c51884d27bc71f40ffe770dc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4efd366c51884d27bc71f40ffe770dc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4efd366c51884d27bc71f40ffe770dc1.jpg", "file_size": 25389, "is_delete": false, "file_type": 1, "original_file_name": "0007-103#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efd366c51884d27bc71f40ffe770dc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efd366c51884d27bc71f40ffe770dc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4efd366c51884d27bc71f40ffe770dc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4efd366c51884d27bc71f40ffe770dc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4efd366c51884d27bc71f40ffe770dc1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIEzTOw_aOS5aZv_KbkPnR_-Y-w=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.862815+00 2025-12-09 10:15:35.862821+00 16496 HX001FW#VS-D3恒翔 SPMX-20240815311713 \N \N \N 1 \N [{"file_id": "80ccc6a2-31a7-41fa-b04e-454456d30da8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "872b13d173b846869987c37143f828b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "872b13d173b846869987c37143f828b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "872b13d173b846869987c37143f828b4.jpg", "file_size": 15577, "is_delete": false, "file_type": 1, "original_file_name": "HX001FW#VS-D3恒翔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872b13d173b846869987c37143f828b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872b13d173b846869987c37143f828b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872b13d173b846869987c37143f828b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/872b13d173b846869987c37143f828b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/872b13d173b846869987c37143f828b4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VoJlMPO29Y-RLUhrL-VSZlPA-dI=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.866745+00 2025-12-09 10:15:35.866752+00 16497 JTSS725FW#VS-D3 SPMX-20240815311707 \N \N \N 1 \N [{"file_id": "f3ef1253-9822-443b-a38b-0ff2826afda8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7bd123d7914dcebd4f25d4a95b7e72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7bd123d7914dcebd4f25d4a95b7e72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7bd123d7914dcebd4f25d4a95b7e72.jpg", "file_size": 25068, "is_delete": false, "file_type": 1, "original_file_name": "JTSS725FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7bd123d7914dcebd4f25d4a95b7e72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7bd123d7914dcebd4f25d4a95b7e72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7bd123d7914dcebd4f25d4a95b7e72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7bd123d7914dcebd4f25d4a95b7e72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7bd123d7914dcebd4f25d4a95b7e72.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5guPS3ts057udTu-DIV0n4B-sk=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.869683+00 2025-12-09 10:15:35.869689+00 16498 LZ1355#上身4号色 SPMX-20240815311711 \N \N \N 1 \N [{"file_id": "cac8ce74-b011-4050-89b9-93d58ca4ccb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89d3bf7b2dd44df2a32bd1cac047f1f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89d3bf7b2dd44df2a32bd1cac047f1f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89d3bf7b2dd44df2a32bd1cac047f1f6.jpg", "file_size": 20845, "is_delete": false, "file_type": 1, "original_file_name": "LZ1355#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d3bf7b2dd44df2a32bd1cac047f1f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d3bf7b2dd44df2a32bd1cac047f1f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d3bf7b2dd44df2a32bd1cac047f1f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89d3bf7b2dd44df2a32bd1cac047f1f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89d3bf7b2dd44df2a32bd1cac047f1f6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZhCVJeTHrBl4TL2ZzLWC8qeEeuI=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.87244+00 2025-12-09 10:15:35.872447+00 16499 FX0003-131#1号色 SPMX-20240815311701 \N \N \N 1 \N [{"file_id": "a5583634-aee4-4cd2-b15f-cd7591878726", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb89db63836c4e0abffa0b2540231f65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb89db63836c4e0abffa0b2540231f65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb89db63836c4e0abffa0b2540231f65.jpg", "file_size": 64745, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-131#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb89db63836c4e0abffa0b2540231f65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb89db63836c4e0abffa0b2540231f65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb89db63836c4e0abffa0b2540231f65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb89db63836c4e0abffa0b2540231f65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb89db63836c4e0abffa0b2540231f65.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TrNZtWcjHNa_QjAJn5eHC4hn6s=", "createTime": "2024-08-15 15:00:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.875152+00 2025-12-09 10:15:35.875158+00 16500 2302FWF#长款卡其番禺调色 SPMX-20240815311708 \N \N \N 1 \N [{"file_id": "eb6b4066-77f1-4e44-8f0e-319a12163cb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a17248d133b44af3b3f2a36f66c43e0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a17248d133b44af3b3f2a36f66c43e0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a17248d133b44af3b3f2a36f66c43e0d.jpg", "file_size": 15618, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款卡其番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17248d133b44af3b3f2a36f66c43e0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17248d133b44af3b3f2a36f66c43e0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a17248d133b44af3b3f2a36f66c43e0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a17248d133b44af3b3f2a36f66c43e0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a17248d133b44af3b3f2a36f66c43e0d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6zjp3HnEGaAttea1qJciZRElmY=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.877816+00 2025-12-09 10:15:35.877822+00 16501 HX001FW#VS-D3 SPMX-20240815311702 \N \N \N 1 \N [{"file_id": "41755b70-95ee-4d5c-93ba-e37015e8e084", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ae297012ecd444982353e65a0775535.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ae297012ecd444982353e65a0775535.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ae297012ecd444982353e65a0775535.jpg", "file_size": 11687, "is_delete": false, "file_type": 1, "original_file_name": "HX001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae297012ecd444982353e65a0775535.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae297012ecd444982353e65a0775535.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae297012ecd444982353e65a0775535.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ae297012ecd444982353e65a0775535.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ae297012ecd444982353e65a0775535.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wP5cSN03xKcxzemm45ksxxMr5Xo=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.880471+00 2025-12-09 10:15:35.880477+00 16502 1227FWF#条纹雪纺 SPMX-20240815311704 \N \N \N 1 \N [{"file_id": "ed3767f6-1fc7-4bdb-99be-1527a69a9ca8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26541105035f482c9070d07d30fa5d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26541105035f482c9070d07d30fa5d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26541105035f482c9070d07d30fa5d0e.jpg", "file_size": 17768, "is_delete": false, "file_type": 1, "original_file_name": "1227FWF#条纹雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26541105035f482c9070d07d30fa5d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26541105035f482c9070d07d30fa5d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26541105035f482c9070d07d30fa5d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26541105035f482c9070d07d30fa5d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26541105035f482c9070d07d30fa5d0e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzYaiMHxe7ZueXGYxaXOXPic_F4=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.88311+00 2025-12-09 10:15:35.883116+00 16503 JTSS727FW#VS-D3 SPMX-20240815311727 \N \N \N 1 \N [{"file_id": "4e70c6dc-a74c-4fe6-bcea-3c41ddecf10a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc1600011a7141cf970f5a0be5eed9a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc1600011a7141cf970f5a0be5eed9a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc1600011a7141cf970f5a0be5eed9a8.jpg", "file_size": 13192, "is_delete": false, "file_type": 1, "original_file_name": "JTSS727FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1600011a7141cf970f5a0be5eed9a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1600011a7141cf970f5a0be5eed9a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1600011a7141cf970f5a0be5eed9a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc1600011a7141cf970f5a0be5eed9a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc1600011a7141cf970f5a0be5eed9a8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrxoH2O9WrBFkts-YiTmPOSvya0=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.885804+00 2025-12-09 10:15:35.88581+00 16504 2302FWF#长款咖色 SPMX-20240815311722 \N \N \N 1 \N [{"file_id": "64dbb8a2-2608-43d4-af98-1bef9beba572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1701636a1a545fb9d08171729aacc65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1701636a1a545fb9d08171729aacc65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1701636a1a545fb9d08171729aacc65.jpg", "file_size": 19316, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1701636a1a545fb9d08171729aacc65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1701636a1a545fb9d08171729aacc65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1701636a1a545fb9d08171729aacc65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1701636a1a545fb9d08171729aacc65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1701636a1a545fb9d08171729aacc65.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdAcdTgga_TUZf6eotQv4PqpJYc=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.888496+00 2025-12-09 10:15:35.888502+00 16505 HX001FW#粉底 SPMX-20240815311723 \N \N \N 1 \N [{"file_id": "10edefa9-7158-4a58-8f93-f4a29736b934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7df9d54743a14c97a79264540986ca8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7df9d54743a14c97a79264540986ca8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7df9d54743a14c97a79264540986ca8f.jpg", "file_size": 9711, "is_delete": false, "file_type": 1, "original_file_name": "HX001FW#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d54743a14c97a79264540986ca8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d54743a14c97a79264540986ca8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d54743a14c97a79264540986ca8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7df9d54743a14c97a79264540986ca8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7df9d54743a14c97a79264540986ca8f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVO4AvGnSib7R5q5bSmchsuS3VU=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.891205+00 2025-12-09 10:15:35.891211+00 16506 LJH1859#碎花匹布黄色 SPMX-20240815311718 \N \N \N 1 \N [{"file_id": "0c51575c-ab54-4386-8c48-ebd76e4818c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "979a2badb1854605ab6a7d95e4436314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "979a2badb1854605ab6a7d95e4436314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "979a2badb1854605ab6a7d95e4436314.jpg", "file_size": 33993, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979a2badb1854605ab6a7d95e4436314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979a2badb1854605ab6a7d95e4436314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/979a2badb1854605ab6a7d95e4436314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/979a2badb1854605ab6a7d95e4436314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/979a2badb1854605ab6a7d95e4436314.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r7_TTuJ7OgXFSKdwhi4uAL-eKVI=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.893854+00 2025-12-09 10:15:35.89386+00 16507 0007-104#咖色 SPMX-20240815311725 \N \N \N 1 \N [{"file_id": "bc927426-03ff-4393-becf-b117f9875caf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd937230effe4ee8a1e1a9a6ce5439f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd937230effe4ee8a1e1a9a6ce5439f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd937230effe4ee8a1e1a9a6ce5439f6.jpg", "file_size": 22636, "is_delete": false, "file_type": 1, "original_file_name": "0007-104#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd937230effe4ee8a1e1a9a6ce5439f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd937230effe4ee8a1e1a9a6ce5439f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd937230effe4ee8a1e1a9a6ce5439f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd937230effe4ee8a1e1a9a6ce5439f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd937230effe4ee8a1e1a9a6ce5439f6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z0hRU4EM4yyKS_Fbd89LIaOzuEM=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.896533+00 2025-12-09 10:15:35.896539+00 16508 JTSS726FW#VS-D3 SPMX-20240815311717 \N \N \N 1 \N [{"file_id": "2c08986a-9534-4734-b5a5-9d0693b9c595", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f216544d368423cafc5451edbff73d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f216544d368423cafc5451edbff73d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f216544d368423cafc5451edbff73d5.jpg", "file_size": 9168, "is_delete": false, "file_type": 1, "original_file_name": "JTSS726FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f216544d368423cafc5451edbff73d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f216544d368423cafc5451edbff73d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f216544d368423cafc5451edbff73d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f216544d368423cafc5451edbff73d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f216544d368423cafc5451edbff73d5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVPx04x18aEVaCp-X5iSwYt8NnM=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.899227+00 2025-12-09 10:15:35.899233+00 16509 LZ1355#上身5号色 SPMX-20240815311724 \N \N \N 1 \N [{"file_id": "dd1d5682-9896-477d-8495-851e13ac07bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c41443103641aeacb7ac071aab733f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c41443103641aeacb7ac071aab733f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c41443103641aeacb7ac071aab733f.jpg", "file_size": 18551, "is_delete": false, "file_type": 1, "original_file_name": "LZ1355#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c41443103641aeacb7ac071aab733f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c41443103641aeacb7ac071aab733f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c41443103641aeacb7ac071aab733f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c41443103641aeacb7ac071aab733f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c41443103641aeacb7ac071aab733f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSiSQsfV-ToUiLznpQCSbNaAcxU=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.901836+00 2025-12-09 10:15:35.901846+00 16510 12281FWF#V5曲线 SPMX-20240815311716 \N \N \N 1 \N [{"file_id": "484b18b3-6035-4974-9b5f-3378ffd2d531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2f9a3a152374796b0a2ee5e18db64e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2f9a3a152374796b0a2ee5e18db64e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2f9a3a152374796b0a2ee5e18db64e9.jpg", "file_size": 29169, "is_delete": false, "file_type": 1, "original_file_name": "12281FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f9a3a152374796b0a2ee5e18db64e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f9a3a152374796b0a2ee5e18db64e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f9a3a152374796b0a2ee5e18db64e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2f9a3a152374796b0a2ee5e18db64e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2f9a3a152374796b0a2ee5e18db64e9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JmUhjSaIOl-nKaV5pOmpJYz4PhM=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.904694+00 2025-12-09 10:15:35.904701+00 16511 CC1118FW#VS-D3 SPMX-20240815311720 \N \N \N 1 \N [{"file_id": "d08eadb2-2a24-43f3-9e8f-4fa44f876844", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2a055ed2d904303adac22f79634f2f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2a055ed2d904303adac22f79634f2f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2a055ed2d904303adac22f79634f2f6.jpg", "file_size": 10973, "is_delete": false, "file_type": 1, "original_file_name": "CC1118FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a055ed2d904303adac22f79634f2f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a055ed2d904303adac22f79634f2f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2a055ed2d904303adac22f79634f2f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2a055ed2d904303adac22f79634f2f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2a055ed2d904303adac22f79634f2f6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hgZIbMdyg2YplJblJv-7ZpKsui0=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.907582+00 2025-12-09 10:15:35.907588+00 16512 DL31473#浅粉色袖子定位裁 SPMX-20240815311715 \N \N \N 1 \N [{"file_id": "1dfd3ed2-d6c3-4a09-ab0f-42ba352aa065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "025dd7cf4a1243889237287371bc7b38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "025dd7cf4a1243889237287371bc7b38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "025dd7cf4a1243889237287371bc7b38.jpg", "file_size": 14543, "is_delete": false, "file_type": 1, "original_file_name": "DL31473#浅粉色袖子定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025dd7cf4a1243889237287371bc7b38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025dd7cf4a1243889237287371bc7b38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/025dd7cf4a1243889237287371bc7b38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/025dd7cf4a1243889237287371bc7b38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/025dd7cf4a1243889237287371bc7b38.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4MwnxPBXSw7Mi1cDncVqhTmHQg=", "createTime": "2024-08-15 15:00:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.910434+00 2025-12-09 10:15:35.91044+00 16513 85029#10码+12码 SPMX-20240815311719 \N \N \N 1 \N [{"file_id": "d8f9207e-f486-4cdb-b4b3-baab62596ee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "784663de31db402aad92da8a492c722b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "784663de31db402aad92da8a492c722b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "784663de31db402aad92da8a492c722b.jpg", "file_size": 19269, "is_delete": false, "file_type": 1, "original_file_name": "85029#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784663de31db402aad92da8a492c722b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784663de31db402aad92da8a492c722b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/784663de31db402aad92da8a492c722b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/784663de31db402aad92da8a492c722b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/784663de31db402aad92da8a492c722b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CN_aMO0qXVXN3Y_yUZpe_Nl2KNs=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.913295+00 2025-12-09 10:15:35.913301+00 16514 FX0003-131#RC23 SPMX-20240815311721 \N \N \N 1 \N [{"file_id": "feca95c7-9fa9-4a05-8717-bcbcbd544376", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e418931a407749f9863b58f5a1c04f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e418931a407749f9863b58f5a1c04f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e418931a407749f9863b58f5a1c04f4d.jpg", "file_size": 55226, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-131#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e418931a407749f9863b58f5a1c04f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e418931a407749f9863b58f5a1c04f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e418931a407749f9863b58f5a1c04f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e418931a407749f9863b58f5a1c04f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e418931a407749f9863b58f5a1c04f4d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHfIM54_S7f5aLiEFjOqL6NPvmw=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.916153+00 2025-12-09 10:15:35.916159+00 16515 12282FWF#V5曲线 SPMX-20240815311726 \N \N \N 1 \N [{"file_id": "9583ca1a-287b-4a16-933d-9ea5661a1a17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6249b644fb7f43d191a5fc3d4c98dc75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6249b644fb7f43d191a5fc3d4c98dc75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6249b644fb7f43d191a5fc3d4c98dc75.jpg", "file_size": 21512, "is_delete": false, "file_type": 1, "original_file_name": "12282FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6249b644fb7f43d191a5fc3d4c98dc75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6249b644fb7f43d191a5fc3d4c98dc75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6249b644fb7f43d191a5fc3d4c98dc75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6249b644fb7f43d191a5fc3d4c98dc75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6249b644fb7f43d191a5fc3d4c98dc75.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyjX9bnTBjQ16TH833Zjym0GxXI=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.919022+00 2025-12-09 10:15:35.919028+00 16516 DL31542#大红 SPMX-20240815311728 \N \N \N 1 \N [{"file_id": "bf05af06-36e0-482e-8cc3-22e310aa3958", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a0b9c44d61248dba440f7beab939b3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a0b9c44d61248dba440f7beab939b3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a0b9c44d61248dba440f7beab939b3c.jpg", "file_size": 23551, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0b9c44d61248dba440f7beab939b3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0b9c44d61248dba440f7beab939b3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0b9c44d61248dba440f7beab939b3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a0b9c44d61248dba440f7beab939b3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a0b9c44d61248dba440f7beab939b3c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5UFSmjTgVJ9s8G-1Rm91PxeSm18=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.921777+00 2025-12-09 10:15:35.921783+00 16517 DL31542#彩兰 SPMX-20240815311738 \N \N \N 1 \N [{"file_id": "d7acb5b8-827f-4301-9535-e7f1884ed236", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130e969eff59463eb89c53a2934899a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130e969eff59463eb89c53a2934899a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130e969eff59463eb89c53a2934899a6.jpg", "file_size": 22813, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130e969eff59463eb89c53a2934899a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130e969eff59463eb89c53a2934899a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130e969eff59463eb89c53a2934899a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130e969eff59463eb89c53a2934899a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130e969eff59463eb89c53a2934899a6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OvEWQnG9ojFzga-eJAqhHnN1dCE=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.924625+00 2025-12-09 10:15:35.92463+00 16518 2302FWF#长款咖色番禺调色 SPMX-20240815311730 \N \N \N 1 \N [{"file_id": "f4a4305a-d1bf-4333-8654-b9a7e1c21566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f78178004e5a40e4accc1bac475bcd4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f78178004e5a40e4accc1bac475bcd4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f78178004e5a40e4accc1bac475bcd4a.jpg", "file_size": 20210, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款咖色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78178004e5a40e4accc1bac475bcd4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78178004e5a40e4accc1bac475bcd4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f78178004e5a40e4accc1bac475bcd4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f78178004e5a40e4accc1bac475bcd4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f78178004e5a40e4accc1bac475bcd4a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lvgpvpDDlXhTcf5raDj4xrBin3k=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.927465+00 2025-12-09 10:15:35.92747+00 16519 12283FWF#V5曲线 SPMX-20240815311736 \N \N \N 1 \N [{"file_id": "bd4db919-318c-4f4d-af53-4e4640f155ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a074b22aa6ea42caba4d778e18c0ee58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a074b22aa6ea42caba4d778e18c0ee58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a074b22aa6ea42caba4d778e18c0ee58.jpg", "file_size": 24395, "is_delete": false, "file_type": 1, "original_file_name": "12283FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a074b22aa6ea42caba4d778e18c0ee58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a074b22aa6ea42caba4d778e18c0ee58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a074b22aa6ea42caba4d778e18c0ee58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a074b22aa6ea42caba4d778e18c0ee58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a074b22aa6ea42caba4d778e18c0ee58.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmTGkLCy3l9YVETA2HWOWqePr28=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.930339+00 2025-12-09 10:15:35.930345+00 16520 JTSS728FW#VS-D3 SPMX-20240815311739 \N \N \N 1 \N [{"file_id": "b035728c-c4f2-4474-bf9f-dbcd2ed06425", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78a3af0f86a243a7957f10b872a6c81a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78a3af0f86a243a7957f10b872a6c81a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78a3af0f86a243a7957f10b872a6c81a.jpg", "file_size": 21479, "is_delete": false, "file_type": 1, "original_file_name": "JTSS728FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a3af0f86a243a7957f10b872a6c81a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a3af0f86a243a7957f10b872a6c81a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78a3af0f86a243a7957f10b872a6c81a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78a3af0f86a243a7957f10b872a6c81a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78a3af0f86a243a7957f10b872a6c81a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YG-SBDG5zPqlp2DvJ3fLjnCEmgY=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.933188+00 2025-12-09 10:15:35.933194+00 16521 0007-104#深蓝色 SPMX-20240815311737 \N \N \N 1 \N [{"file_id": "6ac74461-d637-433a-b04b-797c5f1216f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "728521eaab12488d94af8a20e79c7035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "728521eaab12488d94af8a20e79c7035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "728521eaab12488d94af8a20e79c7035.jpg", "file_size": 26417, "is_delete": false, "file_type": 1, "original_file_name": "0007-104#深蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728521eaab12488d94af8a20e79c7035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728521eaab12488d94af8a20e79c7035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/728521eaab12488d94af8a20e79c7035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/728521eaab12488d94af8a20e79c7035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/728521eaab12488d94af8a20e79c7035.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6QIrqeKD6Gpg-fCt6ABS55wRPg=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.936018+00 2025-12-09 10:15:35.936024+00 16522 CC1201FW#VS-D3 SPMX-20240815311732 \N \N \N 1 \N [{"file_id": "1f3124eb-bdec-4a95-970f-c87026dd6d9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a0aaab90791467c8171d000a22be878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a0aaab90791467c8171d000a22be878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a0aaab90791467c8171d000a22be878.jpg", "file_size": 8727, "is_delete": false, "file_type": 1, "original_file_name": "CC1201FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0aaab90791467c8171d000a22be878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0aaab90791467c8171d000a22be878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0aaab90791467c8171d000a22be878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a0aaab90791467c8171d000a22be878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a0aaab90791467c8171d000a22be878.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1avoCBOXQedsTCfKzT0Vrq8k1Q=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.938874+00 2025-12-09 10:15:35.938879+00 16523 FX0003-132#RC23 SPMX-20240815311734 \N \N \N 1 \N [{"file_id": "1a036c6d-ae82-4442-b61a-3c212ae0b858", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4954ee33580e445aae430ca7b891bb61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4954ee33580e445aae430ca7b891bb61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4954ee33580e445aae430ca7b891bb61.jpg", "file_size": 53326, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-132#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4954ee33580e445aae430ca7b891bb61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4954ee33580e445aae430ca7b891bb61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4954ee33580e445aae430ca7b891bb61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4954ee33580e445aae430ca7b891bb61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4954ee33580e445aae430ca7b891bb61.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbUMG6-HNGfnbJ0JzmVurFzmGnU=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.941636+00 2025-12-09 10:15:35.941641+00 16524 LJH1859#碎花匹布黑色 SPMX-20240815311729 \N \N \N 1 \N [{"file_id": "4dfd997a-53c9-461b-b1b9-8972487d4be4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "175b9c8df78f4fd5a78bc6c02ec445d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "175b9c8df78f4fd5a78bc6c02ec445d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "175b9c8df78f4fd5a78bc6c02ec445d6.jpg", "file_size": 36108, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#碎花匹布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175b9c8df78f4fd5a78bc6c02ec445d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175b9c8df78f4fd5a78bc6c02ec445d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/175b9c8df78f4fd5a78bc6c02ec445d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/175b9c8df78f4fd5a78bc6c02ec445d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/175b9c8df78f4fd5a78bc6c02ec445d6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDEfd0lvk48USGKD05H3d9SZuqA=", "createTime": "2024-08-15 15:00:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.944424+00 2025-12-09 10:15:35.94443+00 16525 85029#4码+8码 SPMX-20240815311742 \N \N \N 1 \N [{"file_id": "9c9c6d93-7ada-498d-8f1c-5d912bb304ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg", "file_size": 19474, "is_delete": false, "file_type": 1, "original_file_name": "85029#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d9418f9f5d4a03a9d4cfe576b9bbb0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:efIvcYVme_Mcq0zXLmdgQqWhyaw=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.947307+00 2025-12-09 10:15:35.947314+00 16526 2302FWF#长款白色 SPMX-20240815311740 \N \N \N 1 \N [{"file_id": "7cd5bec8-84cb-40ee-83c2-781c96f854ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7892e9b219be4822807981ea4bbe5d6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7892e9b219be4822807981ea4bbe5d6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7892e9b219be4822807981ea4bbe5d6f.jpg", "file_size": 16185, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7892e9b219be4822807981ea4bbe5d6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7892e9b219be4822807981ea4bbe5d6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7892e9b219be4822807981ea4bbe5d6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7892e9b219be4822807981ea4bbe5d6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7892e9b219be4822807981ea4bbe5d6f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9I1QiyQCVLdfP2WJ0I0fAYBY4xY=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.950012+00 2025-12-09 10:15:35.950018+00 16527 85029#14码 SPMX-20240815311731 \N \N \N 1 \N [{"file_id": "223f99c8-d728-4472-abbd-bed47eded53c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8699a698e0404e5a93ca7bfa3c7290d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8699a698e0404e5a93ca7bfa3c7290d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8699a698e0404e5a93ca7bfa3c7290d3.jpg", "file_size": 17610, "is_delete": false, "file_type": 1, "original_file_name": "85029#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8699a698e0404e5a93ca7bfa3c7290d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8699a698e0404e5a93ca7bfa3c7290d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8699a698e0404e5a93ca7bfa3c7290d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8699a698e0404e5a93ca7bfa3c7290d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8699a698e0404e5a93ca7bfa3c7290d3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vpp9mUKJKCj448aQDa-RBI98Icg=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.952745+00 2025-12-09 10:15:35.952751+00 16528 LJH1859#粉色 SPMX-20240815311741 \N \N \N 1 \N [{"file_id": "e7be2099-170d-461a-9574-6872baee415d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d700a3e0dbe949a48592b7bd1d6bcd05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d700a3e0dbe949a48592b7bd1d6bcd05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d700a3e0dbe949a48592b7bd1d6bcd05.jpg", "file_size": 40247, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d700a3e0dbe949a48592b7bd1d6bcd05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d700a3e0dbe949a48592b7bd1d6bcd05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d700a3e0dbe949a48592b7bd1d6bcd05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d700a3e0dbe949a48592b7bd1d6bcd05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d700a3e0dbe949a48592b7bd1d6bcd05.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljdupNX80Bhq0-aa7bqZa6l7SMo=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.955497+00 2025-12-09 10:15:35.955502+00 16529 HX001FWE#白底VS-D3 SPMX-20240815311743 \N \N \N 1 \N [{"file_id": "7603f2f9-ad93-4ca4-9cea-fa6fb8cb1e73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg", "file_size": 17447, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19edf1cfd2ed4c9cb7ed33bc16ca7bc6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hzR8VQUhv9eD3DJtYO74b5Y-xe4=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.958186+00 2025-12-09 10:15:35.958193+00 16530 LZ1356#上身1号色 SPMX-20240815311735 \N \N \N 1 \N [{"file_id": "cc495f3e-8128-4aa2-a442-3d136399a976", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "353afa6179f2408aad073c35c18c2e5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "353afa6179f2408aad073c35c18c2e5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "353afa6179f2408aad073c35c18c2e5c.jpg", "file_size": 19946, "is_delete": false, "file_type": 1, "original_file_name": "LZ1356#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353afa6179f2408aad073c35c18c2e5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353afa6179f2408aad073c35c18c2e5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/353afa6179f2408aad073c35c18c2e5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/353afa6179f2408aad073c35c18c2e5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/353afa6179f2408aad073c35c18c2e5c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:px3pn_Zy4oeoqF4WFtbJECtq-eU=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.96097+00 2025-12-09 10:15:35.960977+00 16531 HX001FW#红底 SPMX-20240815311733 \N \N \N 1 \N [{"file_id": "ecab7a04-3100-44c1-91bc-e1db23e12e96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "399320aed70b41a0b44639d80cc490f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "399320aed70b41a0b44639d80cc490f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "399320aed70b41a0b44639d80cc490f9.jpg", "file_size": 9656, "is_delete": false, "file_type": 1, "original_file_name": "HX001FW#红底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399320aed70b41a0b44639d80cc490f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399320aed70b41a0b44639d80cc490f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/399320aed70b41a0b44639d80cc490f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/399320aed70b41a0b44639d80cc490f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/399320aed70b41a0b44639d80cc490f9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7OIfxqCLd2fqit_WJqCWczPvns=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.963876+00 2025-12-09 10:15:35.963882+00 16532 HX001FWE#紫VS-D3 SPMX-20240815311751 \N \N \N 1 \N [{"file_id": "7afd31c1-5e56-465b-adfa-fa2eaf1c761f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c676745effc74c8abe48f3e903408af6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c676745effc74c8abe48f3e903408af6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c676745effc74c8abe48f3e903408af6.jpg", "file_size": 10789, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c676745effc74c8abe48f3e903408af6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c676745effc74c8abe48f3e903408af6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c676745effc74c8abe48f3e903408af6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c676745effc74c8abe48f3e903408af6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c676745effc74c8abe48f3e903408af6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fF1OdtlDbjNskfD3scp0T6h-D3c=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.966626+00 2025-12-09 10:15:35.966633+00 16533 LZ1356#上身3号色 SPMX-20240815311756 \N \N \N 1 \N [{"file_id": "caa04e99-5bff-492a-b7f2-7ebc26855ca5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcf429619415401bab41134a0816f732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcf429619415401bab41134a0816f732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcf429619415401bab41134a0816f732.jpg", "file_size": 20468, "is_delete": false, "file_type": 1, "original_file_name": "LZ1356#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf429619415401bab41134a0816f732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf429619415401bab41134a0816f732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcf429619415401bab41134a0816f732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcf429619415401bab41134a0816f732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcf429619415401bab41134a0816f732.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAK_jB1SfFF8St3NykCWo4PwM54=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.969308+00 2025-12-09 10:15:35.969313+00 16534 FX0003-133#RC23 SPMX-20240815311745 \N \N \N 1 \N [{"file_id": "c8fe6252-19a3-4f38-ba1d-8708d3d561c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "520711417af548a8953e22048052e705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "520711417af548a8953e22048052e705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "520711417af548a8953e22048052e705.jpg", "file_size": 40336, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-133#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520711417af548a8953e22048052e705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520711417af548a8953e22048052e705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/520711417af548a8953e22048052e705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/520711417af548a8953e22048052e705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/520711417af548a8953e22048052e705.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-SyYMhQmvvCtG9d8B2jSUDHWRA=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.971964+00 2025-12-09 10:15:35.97197+00 16535 FX0003-134#RC23 SPMX-20240815311755 \N \N \N 1 \N [{"file_id": "902b0300-814e-4f6f-b750-61dccacc840e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed88059fd07745e0a05c7615ee720877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed88059fd07745e0a05c7615ee720877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed88059fd07745e0a05c7615ee720877.jpg", "file_size": 75817, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-134#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed88059fd07745e0a05c7615ee720877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed88059fd07745e0a05c7615ee720877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed88059fd07745e0a05c7615ee720877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed88059fd07745e0a05c7615ee720877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed88059fd07745e0a05c7615ee720877.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YViLKa-u6qyE1BxZhulvlQ9XjxU=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.974714+00 2025-12-09 10:15:35.97472+00 16536 LZ1356#上身2号色 SPMX-20240815311746 \N \N \N 1 \N [{"file_id": "13ffad1d-ce75-49f8-b53e-709b477e1356", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86e9550bd82e4dcea64f0cd881213c5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86e9550bd82e4dcea64f0cd881213c5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86e9550bd82e4dcea64f0cd881213c5d.jpg", "file_size": 18722, "is_delete": false, "file_type": 1, "original_file_name": "LZ1356#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e9550bd82e4dcea64f0cd881213c5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e9550bd82e4dcea64f0cd881213c5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e9550bd82e4dcea64f0cd881213c5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86e9550bd82e4dcea64f0cd881213c5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86e9550bd82e4dcea64f0cd881213c5d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eIS7rse3qRIU5DNtTCfKGa0O_VI=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.977429+00 2025-12-09 10:15:35.977434+00 16537 123#-杏色 SPMX-20240815311749 \N \N \N 1 \N [{"file_id": "fa435843-dd1a-438e-a682-9882a780bdb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e41e6f7c391448cfb483d3f28fc8b396.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e41e6f7c391448cfb483d3f28fc8b396.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e41e6f7c391448cfb483d3f28fc8b396.jpg", "file_size": 52449, "is_delete": false, "file_type": 1, "original_file_name": "123#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41e6f7c391448cfb483d3f28fc8b396.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41e6f7c391448cfb483d3f28fc8b396.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41e6f7c391448cfb483d3f28fc8b396.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e41e6f7c391448cfb483d3f28fc8b396.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e41e6f7c391448cfb483d3f28fc8b396.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oionV7DvIAQXkcu-MuRPy-m5iiw=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.980126+00 2025-12-09 10:15:35.980131+00 16538 CC210FW#VS-D3 SPMX-20240815311757 \N \N \N 1 \N [{"file_id": "68a901e7-16ae-4d91-ad34-02afe21a1bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a853e3a4a5b4a75b3580df15b3c66a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a853e3a4a5b4a75b3580df15b3c66a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a853e3a4a5b4a75b3580df15b3c66a5.jpg", "file_size": 7067, "is_delete": false, "file_type": 1, "original_file_name": "CC210FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a853e3a4a5b4a75b3580df15b3c66a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a853e3a4a5b4a75b3580df15b3c66a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a853e3a4a5b4a75b3580df15b3c66a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a853e3a4a5b4a75b3580df15b3c66a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a853e3a4a5b4a75b3580df15b3c66a5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9fBaXSEZLpwKtDOS5anlu_2uQXk=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.982813+00 2025-12-09 10:15:35.982819+00 16539 0007-104#粉色 SPMX-20240815311747 \N \N \N 1 \N [{"file_id": "10164e6a-6141-48b2-a909-bc5b40d1df14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d94fd19ae4bc445cb13d2799145adc61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d94fd19ae4bc445cb13d2799145adc61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d94fd19ae4bc445cb13d2799145adc61.jpg", "file_size": 14489, "is_delete": false, "file_type": 1, "original_file_name": "0007-104#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94fd19ae4bc445cb13d2799145adc61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94fd19ae4bc445cb13d2799145adc61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d94fd19ae4bc445cb13d2799145adc61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d94fd19ae4bc445cb13d2799145adc61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d94fd19ae4bc445cb13d2799145adc61.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JclN3M5z-nkd8yKhr8xosMLjLgY=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.985523+00 2025-12-09 10:15:35.985529+00 16540 JTSS730FW#VS-D3 SPMX-20240815311758 \N \N \N 1 \N [{"file_id": "48804211-955d-46ef-bfc8-292b4d55c49b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a43467ca6b794376b2ddbd07912a32f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a43467ca6b794376b2ddbd07912a32f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a43467ca6b794376b2ddbd07912a32f9.jpg", "file_size": 15156, "is_delete": false, "file_type": 1, "original_file_name": "JTSS730FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43467ca6b794376b2ddbd07912a32f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43467ca6b794376b2ddbd07912a32f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43467ca6b794376b2ddbd07912a32f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a43467ca6b794376b2ddbd07912a32f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a43467ca6b794376b2ddbd07912a32f9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0l4o2u-f4q65yZG5ZAvjPm_9lFw=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.988197+00 2025-12-09 10:15:35.988204+00 16541 DL31542#玫红 SPMX-20240815311750 \N \N \N 1 \N [{"file_id": "75ea4c51-6fa7-43e5-9986-86037ff86d12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e5e898b51244372bf5c4e9ebc215451.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e5e898b51244372bf5c4e9ebc215451.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e5e898b51244372bf5c4e9ebc215451.jpg", "file_size": 22795, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5e898b51244372bf5c4e9ebc215451.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5e898b51244372bf5c4e9ebc215451.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5e898b51244372bf5c4e9ebc215451.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e5e898b51244372bf5c4e9ebc215451.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e5e898b51244372bf5c4e9ebc215451.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3UwSLaZCWLLZAE_gllkNAFu-_A=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.990807+00 2025-12-09 10:15:35.990813+00 16542 CC137FW#VS-D3 SPMX-20240815311744 \N \N \N 1 \N [{"file_id": "59d618d5-9491-4064-96e3-17e3060f3d51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47e9f663b4c541cca4089c6859ca7763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47e9f663b4c541cca4089c6859ca7763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47e9f663b4c541cca4089c6859ca7763.jpg", "file_size": 8116, "is_delete": false, "file_type": 1, "original_file_name": "CC137FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47e9f663b4c541cca4089c6859ca7763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47e9f663b4c541cca4089c6859ca7763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47e9f663b4c541cca4089c6859ca7763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47e9f663b4c541cca4089c6859ca7763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47e9f663b4c541cca4089c6859ca7763.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dg7cAiN-mcay-NTJvZPWy0Zbgvo=", "createTime": "2024-08-15 15:00:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.993995+00 2025-12-09 10:15:35.994+00 16543 JTSS729FW#VS-D3 SPMX-20240815311748 \N \N \N 1 \N [{"file_id": "9f629709-4a49-4663-a3cd-a162c74942b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17a6a6347d5a426688c30e5a22a41dcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17a6a6347d5a426688c30e5a22a41dcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17a6a6347d5a426688c30e5a22a41dcb.jpg", "file_size": 19708, "is_delete": false, "file_type": 1, "original_file_name": "JTSS729FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a6a6347d5a426688c30e5a22a41dcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a6a6347d5a426688c30e5a22a41dcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17a6a6347d5a426688c30e5a22a41dcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17a6a6347d5a426688c30e5a22a41dcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17a6a6347d5a426688c30e5a22a41dcb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8XDBnR-usthtsD5O3Sbr8mtduQ=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.996645+00 2025-12-09 10:15:35.996651+00 16544 2302FWF#长款红色 SPMX-20240815311754 \N \N \N 1 \N [{"file_id": "5d0a09a0-b67e-41fb-ad5d-efac3e1003c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37aca5d2df8b4dfc98e7992207a868cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37aca5d2df8b4dfc98e7992207a868cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37aca5d2df8b4dfc98e7992207a868cd.jpg", "file_size": 20491, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aca5d2df8b4dfc98e7992207a868cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aca5d2df8b4dfc98e7992207a868cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37aca5d2df8b4dfc98e7992207a868cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37aca5d2df8b4dfc98e7992207a868cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37aca5d2df8b4dfc98e7992207a868cd.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rrc43qANSypwwia-Jn4th3OmmnA=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:35.99937+00 2025-12-09 10:15:35.999376+00 16545 85029#6码 SPMX-20240815311752 \N \N \N 1 \N [{"file_id": "c8be0cd1-6143-429b-89f3-c1457bf825f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7fc873cafa54589a69485c0090c8978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7fc873cafa54589a69485c0090c8978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7fc873cafa54589a69485c0090c8978.jpg", "file_size": 18488, "is_delete": false, "file_type": 1, "original_file_name": "85029#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fc873cafa54589a69485c0090c8978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fc873cafa54589a69485c0090c8978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7fc873cafa54589a69485c0090c8978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7fc873cafa54589a69485c0090c8978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7fc873cafa54589a69485c0090c8978.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lKUBEyCVxOuXQz_udD2GH2rJSmY=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.002138+00 2025-12-09 10:15:36.002144+00 16546 LJH1859#蓝色 SPMX-20240815311753 \N \N \N 1 \N [{"file_id": "3818183e-a50c-48ed-a250-14baa429ec28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b65e5eff594bcab64dccc7c5ef5f96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b65e5eff594bcab64dccc7c5ef5f96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b65e5eff594bcab64dccc7c5ef5f96.jpg", "file_size": 44703, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b65e5eff594bcab64dccc7c5ef5f96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b65e5eff594bcab64dccc7c5ef5f96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b65e5eff594bcab64dccc7c5ef5f96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b65e5eff594bcab64dccc7c5ef5f96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b65e5eff594bcab64dccc7c5ef5f96.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZcCdM3p2qSze-Nun77su1IyUE0=", "createTime": "2024-08-15 15:00:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.004868+00 2025-12-09 10:15:36.004875+00 16547 123#-深杏 SPMX-20240815311759 \N \N \N 1 \N [{"file_id": "3f8dc4a4-0b01-453d-8e06-c6af33818003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b538962616a4e40b251bc2fec4bbe8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b538962616a4e40b251bc2fec4bbe8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b538962616a4e40b251bc2fec4bbe8b.jpg", "file_size": 50147, "is_delete": false, "file_type": 1, "original_file_name": "123#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b538962616a4e40b251bc2fec4bbe8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b538962616a4e40b251bc2fec4bbe8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b538962616a4e40b251bc2fec4bbe8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b538962616a4e40b251bc2fec4bbe8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b538962616a4e40b251bc2fec4bbe8b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G4Z0Uf2ukktCxbSFgiKPIPIG9YY=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.007555+00 2025-12-09 10:15:36.007561+00 16548 HX001FWE#红底VS-D3 SPMX-20240815311762 \N \N \N 1 \N [{"file_id": "ff9540c6-b6ff-42dd-8cd0-eb97f6670c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fac9145279fe4c7e8db85bc6016e2ff6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fac9145279fe4c7e8db85bc6016e2ff6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fac9145279fe4c7e8db85bc6016e2ff6.jpg", "file_size": 16407, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac9145279fe4c7e8db85bc6016e2ff6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac9145279fe4c7e8db85bc6016e2ff6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac9145279fe4c7e8db85bc6016e2ff6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fac9145279fe4c7e8db85bc6016e2ff6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fac9145279fe4c7e8db85bc6016e2ff6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48El8psdgYdaH8_PWp9eOdUdspA=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.010279+00 2025-12-09 10:15:36.010285+00 16549 0007-104#绿色 SPMX-20240815311761 \N \N \N 1 \N [{"file_id": "779ddeb6-d834-41f7-bbcb-c4a763b647a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b012ec66ac2434c9a916b967f832d3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b012ec66ac2434c9a916b967f832d3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b012ec66ac2434c9a916b967f832d3d.jpg", "file_size": 14206, "is_delete": false, "file_type": 1, "original_file_name": "0007-104#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b012ec66ac2434c9a916b967f832d3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b012ec66ac2434c9a916b967f832d3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b012ec66ac2434c9a916b967f832d3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b012ec66ac2434c9a916b967f832d3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b012ec66ac2434c9a916b967f832d3d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNzCMrZAuQpoJeEvi3mcKP8adfc=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.012994+00 2025-12-09 10:15:36.013004+00 16550 DL31542#蓝绿 SPMX-20240815311760 \N \N \N 1 \N [{"file_id": "e4a7fba3-7ae7-4204-bd28-3bc100f22fe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f041067d25f44ff9bb1d53de8b6d46a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f041067d25f44ff9bb1d53de8b6d46a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f041067d25f44ff9bb1d53de8b6d46a4.jpg", "file_size": 22566, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041067d25f44ff9bb1d53de8b6d46a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041067d25f44ff9bb1d53de8b6d46a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041067d25f44ff9bb1d53de8b6d46a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f041067d25f44ff9bb1d53de8b6d46a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f041067d25f44ff9bb1d53de8b6d46a4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6b2f_WlpdCPR9S2JKonL6Q6U0BI=", "createTime": "2024-08-15 15:00:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.015695+00 2025-12-09 10:15:36.015701+00 16551 CC220FW#VS-D3 SPMX-20240815311768 \N \N \N 1 \N [{"file_id": "dda0c844-bb04-45bb-8f0e-fe895f4c849b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e70ba85913804ed5a3f72721f2fab78c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e70ba85913804ed5a3f72721f2fab78c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e70ba85913804ed5a3f72721f2fab78c.jpg", "file_size": 18993, "is_delete": false, "file_type": 1, "original_file_name": "CC220FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70ba85913804ed5a3f72721f2fab78c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70ba85913804ed5a3f72721f2fab78c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e70ba85913804ed5a3f72721f2fab78c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e70ba85913804ed5a3f72721f2fab78c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e70ba85913804ed5a3f72721f2fab78c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zs00AqrtfaFyTS7s6kgWm7ZlQbI=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.018372+00 2025-12-09 10:15:36.018379+00 16552 LJH1859#黄色 SPMX-20240815311763 \N \N \N 1 \N [{"file_id": "54bccac8-f998-41b2-b064-38d90f1ce554", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ae07b1407f7442aaa8d6a49281cfe57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ae07b1407f7442aaa8d6a49281cfe57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ae07b1407f7442aaa8d6a49281cfe57.jpg", "file_size": 43667, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae07b1407f7442aaa8d6a49281cfe57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae07b1407f7442aaa8d6a49281cfe57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ae07b1407f7442aaa8d6a49281cfe57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ae07b1407f7442aaa8d6a49281cfe57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ae07b1407f7442aaa8d6a49281cfe57.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyXWd9Sg7YRAAgYrQ85Mc0KvAiA=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.021101+00 2025-12-09 10:15:36.021107+00 16553 FX0003-135#RC23 SPMX-20240815311766 \N \N \N 1 \N [{"file_id": "759e8868-8588-4d99-9e92-ffcb5ad3bb21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6dec00200bb4e2c80a1fea313d8f03b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6dec00200bb4e2c80a1fea313d8f03b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6dec00200bb4e2c80a1fea313d8f03b.jpg", "file_size": 20932, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-135#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6dec00200bb4e2c80a1fea313d8f03b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6dec00200bb4e2c80a1fea313d8f03b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6dec00200bb4e2c80a1fea313d8f03b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6dec00200bb4e2c80a1fea313d8f03b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6dec00200bb4e2c80a1fea313d8f03b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdL739_bdGYEaA7XPJ2Y36hcpzE=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.02375+00 2025-12-09 10:15:36.023757+00 16554 2302FWF#长款黑色 SPMX-20240815311764 \N \N \N 1 \N [{"file_id": "8bede24c-577c-49fc-bb66-7450d2996a54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43ac0eb55607434b85fc4d60bce20eba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43ac0eb55607434b85fc4d60bce20eba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43ac0eb55607434b85fc4d60bce20eba.jpg", "file_size": 20638, "is_delete": false, "file_type": 1, "original_file_name": "2302FWF#长款黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ac0eb55607434b85fc4d60bce20eba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ac0eb55607434b85fc4d60bce20eba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ac0eb55607434b85fc4d60bce20eba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43ac0eb55607434b85fc4d60bce20eba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43ac0eb55607434b85fc4d60bce20eba.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bhj-0EcW3KnnoJwQk76oz2iy-_8=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.026479+00 2025-12-09 10:15:36.026486+00 16555 85029#乱花 SPMX-20240815311765 \N \N \N 1 \N [{"file_id": "9e9d6433-c7ae-4223-9f22-ba1fe8b6f6f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e3e1b67c8e5453eae123fbe5a9ef286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e3e1b67c8e5453eae123fbe5a9ef286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e3e1b67c8e5453eae123fbe5a9ef286.jpg", "file_size": 9447, "is_delete": false, "file_type": 1, "original_file_name": "85029#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3e1b67c8e5453eae123fbe5a9ef286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3e1b67c8e5453eae123fbe5a9ef286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3e1b67c8e5453eae123fbe5a9ef286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e3e1b67c8e5453eae123fbe5a9ef286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e3e1b67c8e5453eae123fbe5a9ef286.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VllDL1bO9blMIdFSvQfnQgWPekY=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.029149+00 2025-12-09 10:15:36.029155+00 16556 LZ1356#上身4号色 SPMX-20240815311767 \N \N \N 1 \N [{"file_id": "dd092177-3bba-4b7a-a94a-66950c21e4b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b71fddb0fae14a2ea56f7fb77f6e9d11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b71fddb0fae14a2ea56f7fb77f6e9d11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b71fddb0fae14a2ea56f7fb77f6e9d11.jpg", "file_size": 19232, "is_delete": false, "file_type": 1, "original_file_name": "LZ1356#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fddb0fae14a2ea56f7fb77f6e9d11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fddb0fae14a2ea56f7fb77f6e9d11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fddb0fae14a2ea56f7fb77f6e9d11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b71fddb0fae14a2ea56f7fb77f6e9d11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b71fddb0fae14a2ea56f7fb77f6e9d11.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bW9BeRm9Mhu68MY-9wLZ8MwDcX4=", "createTime": "2024-08-15 15:00:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.031788+00 2025-12-09 10:15:36.031794+00 16557 2303#咖啡粉 SPMX-20240815311776 \N \N \N 1 \N [{"file_id": "80588d0c-719d-4bbd-9cf5-7febb785d6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ca78856ff2244898251d2352f8a8f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ca78856ff2244898251d2352f8a8f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ca78856ff2244898251d2352f8a8f43.jpg", "file_size": 8614, "is_delete": false, "file_type": 1, "original_file_name": "2303#咖啡粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca78856ff2244898251d2352f8a8f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca78856ff2244898251d2352f8a8f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ca78856ff2244898251d2352f8a8f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ca78856ff2244898251d2352f8a8f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ca78856ff2244898251d2352f8a8f43.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgbUm-vMdVbBLPcYrh-XMOfIE_M=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.034543+00 2025-12-09 10:15:36.034549+00 16558 FX0003-136#RC23 SPMX-20240815311777 \N \N \N 1 \N [{"file_id": "177ad5c7-cf10-4e11-8e69-462eaf31bd6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bc7659800614317b66b3d8311e3143c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bc7659800614317b66b3d8311e3143c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bc7659800614317b66b3d8311e3143c.jpg", "file_size": 15613, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-136#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc7659800614317b66b3d8311e3143c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc7659800614317b66b3d8311e3143c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc7659800614317b66b3d8311e3143c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bc7659800614317b66b3d8311e3143c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bc7659800614317b66b3d8311e3143c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5hO3FinEr1_z9f5VPml-cWVLu4=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.03728+00 2025-12-09 10:15:36.037286+00 16559 JTSS731FW#VS-D3 SPMX-20240815311770 \N \N \N 1 \N [{"file_id": "586fa9b7-3047-448a-ae52-633027f076d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b41e1ea6a414748a8fecd18b4d8a95c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b41e1ea6a414748a8fecd18b4d8a95c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b41e1ea6a414748a8fecd18b4d8a95c.jpg", "file_size": 24144, "is_delete": false, "file_type": 1, "original_file_name": "JTSS731FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41e1ea6a414748a8fecd18b4d8a95c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41e1ea6a414748a8fecd18b4d8a95c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b41e1ea6a414748a8fecd18b4d8a95c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b41e1ea6a414748a8fecd18b4d8a95c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b41e1ea6a414748a8fecd18b4d8a95c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJwl1d3bPuOrQ2flb7mw75jJKAc=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.040062+00 2025-12-09 10:15:36.040068+00 16560 85030#10码+12码 SPMX-20240815311772 \N \N \N 1 \N [{"file_id": "47f0f601-ab28-41a8-85de-aa52bacc0a83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c26cfc2e52c4c05b2a337beacefd915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c26cfc2e52c4c05b2a337beacefd915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c26cfc2e52c4c05b2a337beacefd915.jpg", "file_size": 23324, "is_delete": false, "file_type": 1, "original_file_name": "85030#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c26cfc2e52c4c05b2a337beacefd915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c26cfc2e52c4c05b2a337beacefd915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c26cfc2e52c4c05b2a337beacefd915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c26cfc2e52c4c05b2a337beacefd915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c26cfc2e52c4c05b2a337beacefd915.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WGkYBsUKfvPwelKaFOVFp4cbfsc=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.042909+00 2025-12-09 10:15:36.042915+00 16561 0007-104#蓝色 SPMX-20240815311771 \N \N \N 1 \N [{"file_id": "d650aa34-899c-42fa-bab3-77de40237cd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3178090bf0794ef683bab2b7942604ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3178090bf0794ef683bab2b7942604ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3178090bf0794ef683bab2b7942604ee.jpg", "file_size": 15735, "is_delete": false, "file_type": 1, "original_file_name": "0007-104#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3178090bf0794ef683bab2b7942604ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3178090bf0794ef683bab2b7942604ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3178090bf0794ef683bab2b7942604ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3178090bf0794ef683bab2b7942604ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3178090bf0794ef683bab2b7942604ee.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NTvWNM7i3ygBuoKHGu2qNNskkVM=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.045709+00 2025-12-09 10:15:36.045714+00 16562 HX001FWE#蓝VS-D3 SPMX-20240815311774 \N \N \N 1 \N [{"file_id": "2a2e924c-4197-4897-a327-1957b1d63cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70398050a4da4d6d8ca1f11913217aa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70398050a4da4d6d8ca1f11913217aa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70398050a4da4d6d8ca1f11913217aa2.jpg", "file_size": 10085, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70398050a4da4d6d8ca1f11913217aa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70398050a4da4d6d8ca1f11913217aa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70398050a4da4d6d8ca1f11913217aa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70398050a4da4d6d8ca1f11913217aa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70398050a4da4d6d8ca1f11913217aa2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPKqB8GcvY-oK2w97XXwfVyDfXA=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.048552+00 2025-12-09 10:15:36.048558+00 16563 LZ1356#上身5号色 SPMX-20240815311773 \N \N \N 1 \N [{"file_id": "8cac3d8a-1996-499a-a3b7-11fde464e658", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afd5a19a7ede4c60b3c1a9ef7187820e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afd5a19a7ede4c60b3c1a9ef7187820e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afd5a19a7ede4c60b3c1a9ef7187820e.jpg", "file_size": 20496, "is_delete": false, "file_type": 1, "original_file_name": "LZ1356#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd5a19a7ede4c60b3c1a9ef7187820e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd5a19a7ede4c60b3c1a9ef7187820e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd5a19a7ede4c60b3c1a9ef7187820e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afd5a19a7ede4c60b3c1a9ef7187820e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afd5a19a7ede4c60b3c1a9ef7187820e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lpbmY3QtElzN8YBqe7jlTleZnuc=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.051369+00 2025-12-09 10:15:36.051375+00 16564 DL31542#黄色 SPMX-20240815311769 \N \N \N 1 \N [{"file_id": "036cdfea-5172-4e23-920e-396645af09de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48da8875c2864527958475e7fb5e2a97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48da8875c2864527958475e7fb5e2a97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48da8875c2864527958475e7fb5e2a97.jpg", "file_size": 23243, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48da8875c2864527958475e7fb5e2a97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48da8875c2864527958475e7fb5e2a97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48da8875c2864527958475e7fb5e2a97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48da8875c2864527958475e7fb5e2a97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48da8875c2864527958475e7fb5e2a97.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8edVXRIYVuh07Ot5tBnhZz4NEKY=", "createTime": "2024-08-15 15:00:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.054294+00 2025-12-09 10:15:36.0543+00 16565 123#-灰色 SPMX-20240815311775 \N \N \N 1 \N [{"file_id": "db071913-08b7-42fb-afff-4958b9c9a955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698775c03abd4a3cb07e89c619897f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698775c03abd4a3cb07e89c619897f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698775c03abd4a3cb07e89c619897f1a.jpg", "file_size": 57524, "is_delete": false, "file_type": 1, "original_file_name": "123#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698775c03abd4a3cb07e89c619897f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698775c03abd4a3cb07e89c619897f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698775c03abd4a3cb07e89c619897f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698775c03abd4a3cb07e89c619897f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698775c03abd4a3cb07e89c619897f1a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ZIbj8LIqEUfrh3jjhYkyuHx3eU=", "createTime": "2024-08-15 15:00:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.057309+00 2025-12-09 10:15:36.057316+00 16566 LZ1357#上身1号色 SPMX-20240815311786 \N \N \N 1 \N [{"file_id": "901bbcfc-fdf9-46dd-a2ee-c8d856070e56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b57023e1d94d442a980419d8bb160f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b57023e1d94d442a980419d8bb160f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b57023e1d94d442a980419d8bb160f89.jpg", "file_size": 18805, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57023e1d94d442a980419d8bb160f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57023e1d94d442a980419d8bb160f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57023e1d94d442a980419d8bb160f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b57023e1d94d442a980419d8bb160f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b57023e1d94d442a980419d8bb160f89.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-F03QEnaVjjcMNCjCKFvJ4kEak=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.060389+00 2025-12-09 10:15:36.060395+00 16567 LJH1859#黑色 SPMX-20240815311778 \N \N \N 1 \N [{"file_id": "c6484eef-d14b-4d65-8f01-6af62f03fd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74abd47da46a47ff839bf55c2e997d66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74abd47da46a47ff839bf55c2e997d66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74abd47da46a47ff839bf55c2e997d66.jpg", "file_size": 44822, "is_delete": false, "file_type": 1, "original_file_name": "LJH1859#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abd47da46a47ff839bf55c2e997d66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abd47da46a47ff839bf55c2e997d66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74abd47da46a47ff839bf55c2e997d66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74abd47da46a47ff839bf55c2e997d66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74abd47da46a47ff839bf55c2e997d66.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S40wtJIh3E-BBXZ5P8JhUki-S8E=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.063474+00 2025-12-09 10:15:36.063481+00 16568 FX0003-137#RC23 SPMX-20240815311787 \N \N \N 1 \N [{"file_id": "f354baba-3a44-4279-b9ba-21d3ab19d046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6af7b4713904cbf90f95b024a02fd9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6af7b4713904cbf90f95b024a02fd9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6af7b4713904cbf90f95b024a02fd9b.jpg", "file_size": 59264, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-137#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6af7b4713904cbf90f95b024a02fd9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6af7b4713904cbf90f95b024a02fd9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6af7b4713904cbf90f95b024a02fd9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6af7b4713904cbf90f95b024a02fd9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6af7b4713904cbf90f95b024a02fd9b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uuIM4z5_UjuVCYkhluBp5KRKjak=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.066487+00 2025-12-09 10:15:36.066492+00 16569 HX001FWE#蓝底VS-D3 SPMX-20240815311781 \N \N \N 1 \N [{"file_id": "5e183abe-6e0f-40e3-a973-e002b5e40596", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea2a7cf33faf4bf384cb8e113aefa895.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea2a7cf33faf4bf384cb8e113aefa895.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea2a7cf33faf4bf384cb8e113aefa895.jpg", "file_size": 14742, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#蓝底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7cf33faf4bf384cb8e113aefa895.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7cf33faf4bf384cb8e113aefa895.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7cf33faf4bf384cb8e113aefa895.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7cf33faf4bf384cb8e113aefa895.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7cf33faf4bf384cb8e113aefa895.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQb8ShVdbSy6HWJYhODtJwAIXh0=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.069539+00 2025-12-09 10:15:36.06955+00 16570 0007-105#杏底 SPMX-20240815311785 \N \N \N 1 \N [{"file_id": "13efa355-d1f5-4fc5-a730-4565ac7bacf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8df3dbfdbf8949cdaf84c0b0573826a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8df3dbfdbf8949cdaf84c0b0573826a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8df3dbfdbf8949cdaf84c0b0573826a5.jpg", "file_size": 19746, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df3dbfdbf8949cdaf84c0b0573826a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df3dbfdbf8949cdaf84c0b0573826a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df3dbfdbf8949cdaf84c0b0573826a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8df3dbfdbf8949cdaf84c0b0573826a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8df3dbfdbf8949cdaf84c0b0573826a5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-SjciWqF2oA7ehaXh0D9sgJn7g=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.072566+00 2025-12-09 10:15:36.072572+00 16571 85030#14码 SPMX-20240815311782 \N \N \N 1 \N [{"file_id": "8227ff94-3aae-4192-beb9-01e5499c7c72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05efdaa44d27410ab8a14c98a5b5480e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05efdaa44d27410ab8a14c98a5b5480e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05efdaa44d27410ab8a14c98a5b5480e.jpg", "file_size": 20821, "is_delete": false, "file_type": 1, "original_file_name": "85030#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05efdaa44d27410ab8a14c98a5b5480e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05efdaa44d27410ab8a14c98a5b5480e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05efdaa44d27410ab8a14c98a5b5480e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05efdaa44d27410ab8a14c98a5b5480e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05efdaa44d27410ab8a14c98a5b5480e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PI-n3pxuXtj_p5kCIuShZEZPJSs=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.075467+00 2025-12-09 10:15:36.075473+00 16572 JTSS732FW#VS-D3 SPMX-20240815311783 \N \N \N 1 \N [{"file_id": "206e4949-650e-4e93-ae49-87c732227f7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "836e002b3933496dab9f818660f3a819.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "836e002b3933496dab9f818660f3a819.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "836e002b3933496dab9f818660f3a819.jpg", "file_size": 17212, "is_delete": false, "file_type": 1, "original_file_name": "JTSS732FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836e002b3933496dab9f818660f3a819.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836e002b3933496dab9f818660f3a819.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836e002b3933496dab9f818660f3a819.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/836e002b3933496dab9f818660f3a819.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/836e002b3933496dab9f818660f3a819.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GU9ZwUd9PI09mZLcuStf_oV933o=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.078317+00 2025-12-09 10:15:36.078323+00 16573 CCH0005-2#土黄番禺调色 SPMX-20240815311780 \N \N \N 1 \N [{"file_id": "6a27dc57-6f91-43fd-b6ac-585afb999e98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a534fa9979e44ecab2976f7c6c62659.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a534fa9979e44ecab2976f7c6c62659.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a534fa9979e44ecab2976f7c6c62659.jpg", "file_size": 12730, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#土黄番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a534fa9979e44ecab2976f7c6c62659.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a534fa9979e44ecab2976f7c6c62659.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a534fa9979e44ecab2976f7c6c62659.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a534fa9979e44ecab2976f7c6c62659.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a534fa9979e44ecab2976f7c6c62659.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2YobbDbs3gXXSQXJ0hyQ4ghXo4Y=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.081179+00 2025-12-09 10:15:36.081185+00 16574 2303#粉色背心裙2XL SPMX-20240815311784 \N \N \N 1 \N [{"file_id": "1e723bd6-aa75-4c7f-a744-a87018592213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37a6c705fb5a429cb4c758c57e25a70f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37a6c705fb5a429cb4c758c57e25a70f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37a6c705fb5a429cb4c758c57e25a70f.jpg", "file_size": 17617, "is_delete": false, "file_type": 1, "original_file_name": "2303#粉色背心裙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6c705fb5a429cb4c758c57e25a70f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6c705fb5a429cb4c758c57e25a70f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6c705fb5a429cb4c758c57e25a70f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37a6c705fb5a429cb4c758c57e25a70f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37a6c705fb5a429cb4c758c57e25a70f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTwrlPTle3lTwNaOBFm453n3ips=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.08408+00 2025-12-09 10:15:36.084086+00 16575 123#-白色 SPMX-20240815311788 \N \N \N 1 \N [{"file_id": "a5fc6d76-17c3-49f3-9720-ca4638b09b56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cd205f3010845ba809a0eb133ecdf8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cd205f3010845ba809a0eb133ecdf8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cd205f3010845ba809a0eb133ecdf8e.jpg", "file_size": 50766, "is_delete": false, "file_type": 1, "original_file_name": "123#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd205f3010845ba809a0eb133ecdf8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd205f3010845ba809a0eb133ecdf8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd205f3010845ba809a0eb133ecdf8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cd205f3010845ba809a0eb133ecdf8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cd205f3010845ba809a0eb133ecdf8e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-OUaWfOCKXT2xNrL22GnsQjDtVk=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.086952+00 2025-12-09 10:15:36.086958+00 16576 DL31542#黑色 SPMX-20240815311779 \N \N \N 1 \N [{"file_id": "5b6b3883-4448-47f4-9679-eab94f19ed80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c27f230bb6e4191a6cc2062d99547f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c27f230bb6e4191a6cc2062d99547f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c27f230bb6e4191a6cc2062d99547f2.jpg", "file_size": 23222, "is_delete": false, "file_type": 1, "original_file_name": "DL31542#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c27f230bb6e4191a6cc2062d99547f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c27f230bb6e4191a6cc2062d99547f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c27f230bb6e4191a6cc2062d99547f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c27f230bb6e4191a6cc2062d99547f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c27f230bb6e4191a6cc2062d99547f2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZRC0UU0rey35MtxB8PrlGnGsALY=", "createTime": "2024-08-15 15:00:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.08983+00 2025-12-09 10:15:36.089836+00 16577 DL31545#前幅21#枣红 SPMX-20240815311790 \N \N \N 1 \N [{"file_id": "47d2e192-55dd-41cf-aa12-dab5bfcf84a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b20062f25ede44da89797b0dc3c9ad07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b20062f25ede44da89797b0dc3c9ad07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b20062f25ede44da89797b0dc3c9ad07.jpg", "file_size": 14872, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅21#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b20062f25ede44da89797b0dc3c9ad07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b20062f25ede44da89797b0dc3c9ad07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b20062f25ede44da89797b0dc3c9ad07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b20062f25ede44da89797b0dc3c9ad07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b20062f25ede44da89797b0dc3c9ad07.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-a31mk-bfsg6YfvEUef17sWlrbc=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.095552+00 2025-12-09 10:15:36.095558+00 16579 0007-105#深蓝底 SPMX-20240815311794 \N \N \N 1 \N [{"file_id": "6c1bbbea-265d-4fb8-aa53-dc88ec029a6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af10bfa2ae3f4ce9ac88e051991da5a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af10bfa2ae3f4ce9ac88e051991da5a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af10bfa2ae3f4ce9ac88e051991da5a8.jpg", "file_size": 28824, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#深蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af10bfa2ae3f4ce9ac88e051991da5a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af10bfa2ae3f4ce9ac88e051991da5a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af10bfa2ae3f4ce9ac88e051991da5a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af10bfa2ae3f4ce9ac88e051991da5a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af10bfa2ae3f4ce9ac88e051991da5a8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dIluy6KrOcaUYR9vailqWXDhTrc=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.098423+00 2025-12-09 10:15:36.098429+00 16580 FX0003-138#1号色RC23 SPMX-20240815311798 \N \N \N 1 \N [{"file_id": "e3b35563-e973-40bf-ad11-2f2d6e088ddc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c393b0ad47943eab2a5448260b32906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c393b0ad47943eab2a5448260b32906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c393b0ad47943eab2a5448260b32906.jpg", "file_size": 32827, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-138#1号色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c393b0ad47943eab2a5448260b32906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c393b0ad47943eab2a5448260b32906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c393b0ad47943eab2a5448260b32906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c393b0ad47943eab2a5448260b32906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c393b0ad47943eab2a5448260b32906.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e_qPwsIptapqEJlM1jSS1rS6xgs=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.092633+00 2025-12-09 10:15:36.092638+00 16578 CCH0005-2#枣红 SPMX-20240815311792 \N \N \N 1 \N [{"file_id": "affbdf5a-773d-4734-b7fc-fce3db181e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "569fb4a353fe402ea2d8d80f44d7719d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "569fb4a353fe402ea2d8d80f44d7719d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "569fb4a353fe402ea2d8d80f44d7719d.jpg", "file_size": 13031, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569fb4a353fe402ea2d8d80f44d7719d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569fb4a353fe402ea2d8d80f44d7719d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/569fb4a353fe402ea2d8d80f44d7719d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/569fb4a353fe402ea2d8d80f44d7719d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/569fb4a353fe402ea2d8d80f44d7719d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yULTnC3d4YgYJsFncWl-iXdqlYE=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.516743+00 2025-12-09 10:15:37.516751+00 16806 85034#4码+8码 SPMX-20240815312022 \N \N \N 1 \N [{"file_id": "ef6e33e8-f485-46c1-bdbb-d0f09dd0d387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg", "file_size": 18779, "is_delete": false, "file_type": 1, "original_file_name": "85034#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9fa9fed6abb42dfbd72d02e3a2d79eb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A1XIjSqzT89H1y3fAZlm1p_cpLQ=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.104526+00 2025-12-09 10:15:36.104533+00 16581 LZ1357#上身2号色 SPMX-20240815311797 \N \N \N 1 \N [{"file_id": "2c8cc3a1-1b77-44c7-b9da-67a077e6184b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b96944feb8cc4588bab36baf44d6c951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b96944feb8cc4588bab36baf44d6c951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b96944feb8cc4588bab36baf44d6c951.jpg", "file_size": 18727, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96944feb8cc4588bab36baf44d6c951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96944feb8cc4588bab36baf44d6c951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b96944feb8cc4588bab36baf44d6c951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b96944feb8cc4588bab36baf44d6c951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b96944feb8cc4588bab36baf44d6c951.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRhzk35bFhxqLsA58f9H_-zMlDM=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.107477+00 2025-12-09 10:15:36.107484+00 16582 LJH1860#红色 SPMX-20240815311789 \N \N \N 1 \N [{"file_id": "b775c62a-cd89-4f31-a197-4e609c020ae7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b55361a4f224ebc9e3e5f9272415ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b55361a4f224ebc9e3e5f9272415ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b55361a4f224ebc9e3e5f9272415ae0.jpg", "file_size": 78374, "is_delete": false, "file_type": 1, "original_file_name": "LJH1860#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b55361a4f224ebc9e3e5f9272415ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b55361a4f224ebc9e3e5f9272415ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b55361a4f224ebc9e3e5f9272415ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b55361a4f224ebc9e3e5f9272415ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b55361a4f224ebc9e3e5f9272415ae0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEW3zhXH3SS2AoLgIjmNLDDnUQc=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.110366+00 2025-12-09 10:15:36.110372+00 16583 JTSS733FW#VS-D3 SPMX-20240815311796 \N \N \N 1 \N [{"file_id": "f7bd9838-6648-4a5e-a9ec-77f54cad1544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "930b1d34aa854ca7bf82a61b0895fa0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "930b1d34aa854ca7bf82a61b0895fa0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "930b1d34aa854ca7bf82a61b0895fa0c.jpg", "file_size": 12199, "is_delete": false, "file_type": 1, "original_file_name": "JTSS733FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b1d34aa854ca7bf82a61b0895fa0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b1d34aa854ca7bf82a61b0895fa0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/930b1d34aa854ca7bf82a61b0895fa0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/930b1d34aa854ca7bf82a61b0895fa0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/930b1d34aa854ca7bf82a61b0895fa0c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JlM0VsegggE-5iyMV0U1uK5JThs=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.113243+00 2025-12-09 10:15:36.113249+00 16584 2303#粉色背心裙L SPMX-20240815311793 \N \N \N 1 \N [{"file_id": "447554a5-6c14-4574-a35e-d794026c19f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fca11e657c394471a9b170791cf23cdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fca11e657c394471a9b170791cf23cdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fca11e657c394471a9b170791cf23cdb.jpg", "file_size": 16863, "is_delete": false, "file_type": 1, "original_file_name": "2303#粉色背心裙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca11e657c394471a9b170791cf23cdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca11e657c394471a9b170791cf23cdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fca11e657c394471a9b170791cf23cdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fca11e657c394471a9b170791cf23cdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fca11e657c394471a9b170791cf23cdb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4yAglaR8CLAr0JWRD0TaiNyJfYU=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.116151+00 2025-12-09 10:15:36.116157+00 16585 HX001FWE#黄底VS-D3 SPMX-20240815311795 \N \N \N 1 \N [{"file_id": "6d4729fd-bc4c-459c-afd1-63c10c806b04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6822b5aa969b40999c7282460056a315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6822b5aa969b40999c7282460056a315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6822b5aa969b40999c7282460056a315.jpg", "file_size": 12603, "is_delete": false, "file_type": 1, "original_file_name": "HX001FWE#黄底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6822b5aa969b40999c7282460056a315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6822b5aa969b40999c7282460056a315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6822b5aa969b40999c7282460056a315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6822b5aa969b40999c7282460056a315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6822b5aa969b40999c7282460056a315.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d811W5J__uLFt0gWNG3VP47B730=", "createTime": "2024-08-15 15:00:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.119084+00 2025-12-09 10:15:36.11909+00 16586 0007-105#粉底 SPMX-20240815311804 \N \N \N 1 \N [{"file_id": "513a23a9-9c44-4490-a805-8f49a4215ec5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc8702957c164c999859e6e5dc5e5c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc8702957c164c999859e6e5dc5e5c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc8702957c164c999859e6e5dc5e5c14.jpg", "file_size": 21369, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8702957c164c999859e6e5dc5e5c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8702957c164c999859e6e5dc5e5c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8702957c164c999859e6e5dc5e5c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc8702957c164c999859e6e5dc5e5c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc8702957c164c999859e6e5dc5e5c14.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pU7Kywql5mHlWuBFvPPGMZRsIzo=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.122212+00 2025-12-09 10:15:36.122219+00 16587 CCH0005-2#深粉 SPMX-20240815311806 \N \N \N 1 \N [{"file_id": "be2cc058-a375-4117-97be-d2f4e434cb96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a4f7fce18a542e4b0d2e5552a274e1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a4f7fce18a542e4b0d2e5552a274e1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a4f7fce18a542e4b0d2e5552a274e1b.jpg", "file_size": 11685, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#深粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4f7fce18a542e4b0d2e5552a274e1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4f7fce18a542e4b0d2e5552a274e1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4f7fce18a542e4b0d2e5552a274e1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a4f7fce18a542e4b0d2e5552a274e1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a4f7fce18a542e4b0d2e5552a274e1b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d4gIyS_vLadqmA4nbTqdD3TP9-8=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.12514+00 2025-12-09 10:15:36.125146+00 16588 DL31545#前幅42#姜黄 SPMX-20240815311801 \N \N \N 1 \N [{"file_id": "f6a22c74-8a91-4cd1-96c3-e44e4b317ec7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3692852738404c8b9201df0b0622008c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3692852738404c8b9201df0b0622008c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3692852738404c8b9201df0b0622008c.jpg", "file_size": 14817, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3692852738404c8b9201df0b0622008c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3692852738404c8b9201df0b0622008c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3692852738404c8b9201df0b0622008c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3692852738404c8b9201df0b0622008c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3692852738404c8b9201df0b0622008c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q36Csa0SG9T1TEvibIs6mcYd88I=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.128005+00 2025-12-09 10:15:36.128011+00 16589 FX0003-138#2号色RC23 SPMX-20240815311810 \N \N \N 1 \N [{"file_id": "25f833e3-a94e-4cd4-961d-cb2815c9926a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53da945363b54598930c5f441e284326.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53da945363b54598930c5f441e284326.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53da945363b54598930c5f441e284326.jpg", "file_size": 30283, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-138#2号色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53da945363b54598930c5f441e284326.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53da945363b54598930c5f441e284326.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53da945363b54598930c5f441e284326.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53da945363b54598930c5f441e284326.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53da945363b54598930c5f441e284326.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RFzRbtTO68BpjAHp0ZvoFHH3p1E=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.130888+00 2025-12-09 10:15:36.130894+00 16590 HX002# SPMX-20240815311802 \N \N \N 1 \N [{"file_id": "26206a80-f357-4ee8-a900-6be6ea6acbf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad2cbdf29c054b449c7f413f7fddd367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad2cbdf29c054b449c7f413f7fddd367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad2cbdf29c054b449c7f413f7fddd367.jpg", "file_size": 14878, "is_delete": false, "file_type": 1, "original_file_name": "HX002#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2cbdf29c054b449c7f413f7fddd367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2cbdf29c054b449c7f413f7fddd367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad2cbdf29c054b449c7f413f7fddd367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad2cbdf29c054b449c7f413f7fddd367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad2cbdf29c054b449c7f413f7fddd367.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MIN3d_-tK2GT6zE6Ph_z59uxxkk=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.133737+00 2025-12-09 10:15:36.133743+00 16591 85030#6码 SPMX-20240815311805 \N \N \N 1 \N [{"file_id": "32361582-59e2-4e5c-8fb0-d1e83e1fc9da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ed17451fa204d959b5067b5a2e4db42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ed17451fa204d959b5067b5a2e4db42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ed17451fa204d959b5067b5a2e4db42.jpg", "file_size": 22537, "is_delete": false, "file_type": 1, "original_file_name": "85030#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed17451fa204d959b5067b5a2e4db42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed17451fa204d959b5067b5a2e4db42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed17451fa204d959b5067b5a2e4db42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ed17451fa204d959b5067b5a2e4db42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ed17451fa204d959b5067b5a2e4db42.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rhDaVg2A5aSF2Y7X0Gub1ABqe3w=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.136625+00 2025-12-09 10:15:36.136631+00 16592 123#-黑色 SPMX-20240815311799 \N \N \N 1 \N [{"file_id": "cb5de992-be58-478c-adc1-ba3020d9cfb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dd8b0f3508748e7a57f0f60ac8532fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dd8b0f3508748e7a57f0f60ac8532fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dd8b0f3508748e7a57f0f60ac8532fe.jpg", "file_size": 51320, "is_delete": false, "file_type": 1, "original_file_name": "123#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd8b0f3508748e7a57f0f60ac8532fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd8b0f3508748e7a57f0f60ac8532fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dd8b0f3508748e7a57f0f60ac8532fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dd8b0f3508748e7a57f0f60ac8532fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dd8b0f3508748e7a57f0f60ac8532fe.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dslybzpiej_hz2T3P2g7DFPBJa0=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.139545+00 2025-12-09 10:15:36.139551+00 16593 123#红 SPMX-20240815311809 \N \N \N 1 \N [{"file_id": "17b6105f-681d-4130-9342-23adb9324029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "417dc8f023c14a45a3759ce0531ae3a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "417dc8f023c14a45a3759ce0531ae3a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "417dc8f023c14a45a3759ce0531ae3a7.jpg", "file_size": 11508, "is_delete": false, "file_type": 1, "original_file_name": "123#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417dc8f023c14a45a3759ce0531ae3a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417dc8f023c14a45a3759ce0531ae3a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/417dc8f023c14a45a3759ce0531ae3a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/417dc8f023c14a45a3759ce0531ae3a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/417dc8f023c14a45a3759ce0531ae3a7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uwysYl2eJtItx_UTW4RGr7qWciA=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.142466+00 2025-12-09 10:15:36.142472+00 16594 LJH1860#黄色 SPMX-20240815311811 \N \N \N 1 \N [{"file_id": "fcec008a-74b8-43c9-bcba-d7cdb6535e66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "657c373999a64db08749297b0504e1b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "657c373999a64db08749297b0504e1b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "657c373999a64db08749297b0504e1b3.jpg", "file_size": 85309, "is_delete": false, "file_type": 1, "original_file_name": "LJH1860#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657c373999a64db08749297b0504e1b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657c373999a64db08749297b0504e1b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657c373999a64db08749297b0504e1b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/657c373999a64db08749297b0504e1b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/657c373999a64db08749297b0504e1b3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7f9rl4wOPEVyV1Ld_WiXFrOA7w=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.145372+00 2025-12-09 10:15:36.145378+00 16595 LZ1357#上身3号色 SPMX-20240815311808 \N \N \N 1 \N [{"file_id": "78451e1c-ca10-4304-a1df-6829bd568fe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20736f80185649438c4750f7a21826d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20736f80185649438c4750f7a21826d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20736f80185649438c4750f7a21826d6.jpg", "file_size": 20688, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20736f80185649438c4750f7a21826d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20736f80185649438c4750f7a21826d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20736f80185649438c4750f7a21826d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20736f80185649438c4750f7a21826d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20736f80185649438c4750f7a21826d6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfoKaGYQwrTPedxlHwrvYeWA_Kg=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.148221+00 2025-12-09 10:15:36.148227+00 16596 JTSS734FW#VS-D3 SPMX-20240815311807 \N \N \N 1 \N [{"file_id": "b43a3bd2-30cb-46d8-8afb-fdc0dbbe9d42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be4fd2db2789485b973ca8f962390bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be4fd2db2789485b973ca8f962390bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be4fd2db2789485b973ca8f962390bc7.jpg", "file_size": 11312, "is_delete": false, "file_type": 1, "original_file_name": "JTSS734FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fd2db2789485b973ca8f962390bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fd2db2789485b973ca8f962390bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fd2db2789485b973ca8f962390bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be4fd2db2789485b973ca8f962390bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be4fd2db2789485b973ca8f962390bc7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfJCue76oBLWSDRTHQMA1c_XIZQ=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.151086+00 2025-12-09 10:15:36.151091+00 16597 LJH1860#绿色 SPMX-20240815311800 \N \N \N 1 \N [{"file_id": "c9f7ec08-f332-4a0a-aaef-cac2470df346", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77eecb5f60524074b8965c3b5cf88968.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77eecb5f60524074b8965c3b5cf88968.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77eecb5f60524074b8965c3b5cf88968.jpg", "file_size": 80362, "is_delete": false, "file_type": 1, "original_file_name": "LJH1860#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecb5f60524074b8965c3b5cf88968.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecb5f60524074b8965c3b5cf88968.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecb5f60524074b8965c3b5cf88968.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77eecb5f60524074b8965c3b5cf88968.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77eecb5f60524074b8965c3b5cf88968.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjMuE3esfqaJt_3kaP0SDDmywhM=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.153956+00 2025-12-09 10:15:36.153961+00 16598 2303#粉色背心裙M SPMX-20240815311803 \N \N \N 1 \N [{"file_id": "e4cdfd2f-997e-4c59-9395-c1c9a63fdaf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5631c8e59c1242b88156d7b6f99b73bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5631c8e59c1242b88156d7b6f99b73bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5631c8e59c1242b88156d7b6f99b73bf.jpg", "file_size": 16357, "is_delete": false, "file_type": 1, "original_file_name": "2303#粉色背心裙M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5631c8e59c1242b88156d7b6f99b73bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5631c8e59c1242b88156d7b6f99b73bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5631c8e59c1242b88156d7b6f99b73bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5631c8e59c1242b88156d7b6f99b73bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5631c8e59c1242b88156d7b6f99b73bf.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvG2yVJSKLIbiQfuoDhQNc9gDIk=", "createTime": "2024-08-15 15:00:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.156853+00 2025-12-09 10:15:36.156859+00 16599 2303#粉色背心裙XL SPMX-20240815311823 \N \N \N 1 \N [{"file_id": "a9f3b983-cb33-4eeb-92ec-f8182740bb2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d1a9da8f82e445cb7308f47193cfec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d1a9da8f82e445cb7308f47193cfec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d1a9da8f82e445cb7308f47193cfec9.jpg", "file_size": 16871, "is_delete": false, "file_type": 1, "original_file_name": "2303#粉色背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a9da8f82e445cb7308f47193cfec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a9da8f82e445cb7308f47193cfec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d1a9da8f82e445cb7308f47193cfec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d1a9da8f82e445cb7308f47193cfec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d1a9da8f82e445cb7308f47193cfec9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7cCh_xd3YQNcuxU_66WnjWOZBw=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.159745+00 2025-12-09 10:15:36.159751+00 16600 0007-105#绿底 SPMX-20240815311813 \N \N \N 1 \N [{"file_id": "041039cd-ece0-45cf-b8aa-9182153b26ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a224665259a9463b986805f6743efe3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a224665259a9463b986805f6743efe3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a224665259a9463b986805f6743efe3c.jpg", "file_size": 19902, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a224665259a9463b986805f6743efe3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a224665259a9463b986805f6743efe3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a224665259a9463b986805f6743efe3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a224665259a9463b986805f6743efe3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a224665259a9463b986805f6743efe3c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TIrpLUdKds-n72RkFQNlB0odsD0=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.162562+00 2025-12-09 10:15:36.162568+00 16601 2303#粉色背心裙S SPMX-20240815311814 \N \N \N 1 \N [{"file_id": "0ba7ee2e-7200-411a-92ee-ba952d20d494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31fc8af3e7d3430aa16f7a267fa35aac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31fc8af3e7d3430aa16f7a267fa35aac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31fc8af3e7d3430aa16f7a267fa35aac.jpg", "file_size": 16337, "is_delete": false, "file_type": 1, "original_file_name": "2303#粉色背心裙S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31fc8af3e7d3430aa16f7a267fa35aac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31fc8af3e7d3430aa16f7a267fa35aac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31fc8af3e7d3430aa16f7a267fa35aac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31fc8af3e7d3430aa16f7a267fa35aac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31fc8af3e7d3430aa16f7a267fa35aac.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cf7z-wJZR9qyFa4AJPCx5DzTQbY=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.165468+00 2025-12-09 10:15:36.165474+00 16602 85030#乱花 SPMX-20240815311821 \N \N \N 1 \N [{"file_id": "47992bf4-2a56-419f-adfd-836355d8c228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b226376344094ddaac2b341c30dbb724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b226376344094ddaac2b341c30dbb724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b226376344094ddaac2b341c30dbb724.jpg", "file_size": 11837, "is_delete": false, "file_type": 1, "original_file_name": "85030#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b226376344094ddaac2b341c30dbb724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b226376344094ddaac2b341c30dbb724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b226376344094ddaac2b341c30dbb724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b226376344094ddaac2b341c30dbb724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b226376344094ddaac2b341c30dbb724.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y72RGomVUhVIMfPR652WyE_uE8w=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.168383+00 2025-12-09 10:15:36.168389+00 16603 DL31545#前幅6#蓝绿 SPMX-20240815311815 \N \N \N 1 \N [{"file_id": "c6a6259c-a259-4907-97e2-0374fea10cbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "296aab01fb2c40de855bdd71a6c1a134.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "296aab01fb2c40de855bdd71a6c1a134.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "296aab01fb2c40de855bdd71a6c1a134.jpg", "file_size": 14694, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296aab01fb2c40de855bdd71a6c1a134.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296aab01fb2c40de855bdd71a6c1a134.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/296aab01fb2c40de855bdd71a6c1a134.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/296aab01fb2c40de855bdd71a6c1a134.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/296aab01fb2c40de855bdd71a6c1a134.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TcOCYmyRhbTww95pa_k5UfocZVI=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.171256+00 2025-12-09 10:15:36.171262+00 16604 JTSS735FW#VS-D3 SPMX-20240815311817 \N \N \N 1 \N [{"file_id": "0fe5e550-13ed-426c-b622-99ac162c8c31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7979a106a584d7d8189a8f1354476e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7979a106a584d7d8189a8f1354476e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7979a106a584d7d8189a8f1354476e0.jpg", "file_size": 12375, "is_delete": false, "file_type": 1, "original_file_name": "JTSS735FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7979a106a584d7d8189a8f1354476e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7979a106a584d7d8189a8f1354476e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7979a106a584d7d8189a8f1354476e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7979a106a584d7d8189a8f1354476e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7979a106a584d7d8189a8f1354476e0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dg_vQvnQ_Q8NF8VP03BUnQ0yYP4=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.174138+00 2025-12-09 10:15:36.174144+00 16605 HX002#D粉 SPMX-20240815311822 \N \N \N 1 \N [{"file_id": "0e9367f5-f123-480e-839a-74a7072c9e64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da62d3636d2445adad4f679b4a838288.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da62d3636d2445adad4f679b4a838288.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da62d3636d2445adad4f679b4a838288.jpg", "file_size": 12684, "is_delete": false, "file_type": 1, "original_file_name": "HX002#D粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da62d3636d2445adad4f679b4a838288.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da62d3636d2445adad4f679b4a838288.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da62d3636d2445adad4f679b4a838288.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da62d3636d2445adad4f679b4a838288.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da62d3636d2445adad4f679b4a838288.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dp0K2CPUiRQbI5r-6s8k6luOYgY=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.177038+00 2025-12-09 10:15:36.177044+00 16606 CCH0005-2#湖绿 SPMX-20240815311819 \N \N \N 1 \N [{"file_id": "12e44241-8a92-48fd-a6b3-57e0a6e6fd2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa3b92a9e1ae41f19d8ed97bc6b725be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa3b92a9e1ae41f19d8ed97bc6b725be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa3b92a9e1ae41f19d8ed97bc6b725be.jpg", "file_size": 12491, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b92a9e1ae41f19d8ed97bc6b725be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b92a9e1ae41f19d8ed97bc6b725be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b92a9e1ae41f19d8ed97bc6b725be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa3b92a9e1ae41f19d8ed97bc6b725be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa3b92a9e1ae41f19d8ed97bc6b725be.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSsoBxbM74Bc64xRQzP6SGYzt8s=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.179932+00 2025-12-09 10:15:36.179938+00 16607 LZ1357#上身4号色 SPMX-20240815311816 \N \N \N 1 \N [{"file_id": "e71066d3-76a4-4895-a86a-c6a23dcc647e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4f6211be1b64604a3b755682f436c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4f6211be1b64604a3b755682f436c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4f6211be1b64604a3b755682f436c14.jpg", "file_size": 20941, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f6211be1b64604a3b755682f436c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f6211be1b64604a3b755682f436c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f6211be1b64604a3b755682f436c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4f6211be1b64604a3b755682f436c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4f6211be1b64604a3b755682f436c14.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P-bILSelN84TaWKfnhjZj6YvjKk=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.18285+00 2025-12-09 10:15:36.182856+00 16608 123#绿 SPMX-20240815311818 \N \N \N 1 \N [{"file_id": "7acbabe9-554b-4985-962d-24d47c75058f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d4f847c62374af187ebee9640dc7ef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d4f847c62374af187ebee9640dc7ef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d4f847c62374af187ebee9640dc7ef0.jpg", "file_size": 11037, "is_delete": false, "file_type": 1, "original_file_name": "123#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4f847c62374af187ebee9640dc7ef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4f847c62374af187ebee9640dc7ef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d4f847c62374af187ebee9640dc7ef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d4f847c62374af187ebee9640dc7ef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d4f847c62374af187ebee9640dc7ef0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1F7m6Qjn0iZl5FAydQjEMygQGM=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.185686+00 2025-12-09 10:15:36.185692+00 16609 LJH1861#原版色 SPMX-20240815311820 \N \N \N 1 \N [{"file_id": "083ade4b-ae7b-4f34-b10c-9ead53f035d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93977a5a1b9c41a8b74ce7e6292f9b42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93977a5a1b9c41a8b74ce7e6292f9b42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93977a5a1b9c41a8b74ce7e6292f9b42.jpg", "file_size": 47993, "is_delete": false, "file_type": 1, "original_file_name": "LJH1861#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93977a5a1b9c41a8b74ce7e6292f9b42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93977a5a1b9c41a8b74ce7e6292f9b42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93977a5a1b9c41a8b74ce7e6292f9b42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93977a5a1b9c41a8b74ce7e6292f9b42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93977a5a1b9c41a8b74ce7e6292f9b42.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RSnFHLlpbgArbPp3TSYumb1AyPk=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.188616+00 2025-12-09 10:15:36.188622+00 16610 HX002#D白 SPMX-20240815311812 \N \N \N 1 \N [{"file_id": "68437bad-2897-4daf-a793-f66994cea458", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fd40803957c413e82c4ab2c6316580f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fd40803957c413e82c4ab2c6316580f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fd40803957c413e82c4ab2c6316580f.jpg", "file_size": 12350, "is_delete": false, "file_type": 1, "original_file_name": "HX002#D白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd40803957c413e82c4ab2c6316580f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd40803957c413e82c4ab2c6316580f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd40803957c413e82c4ab2c6316580f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fd40803957c413e82c4ab2c6316580f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fd40803957c413e82c4ab2c6316580f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VlJbQneMdMPXGQnnNlc-PzskwI0=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.191599+00 2025-12-09 10:15:36.191604+00 16611 DL31545#前幅姜黄 SPMX-20240815311824 \N \N \N 1 \N [{"file_id": "705728ec-efb2-4a88-b65c-febba26bb989", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb82e3a84aa84d9c8e2c6599a5030eef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb82e3a84aa84d9c8e2c6599a5030eef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb82e3a84aa84d9c8e2c6599a5030eef.jpg", "file_size": 14658, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb82e3a84aa84d9c8e2c6599a5030eef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb82e3a84aa84d9c8e2c6599a5030eef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb82e3a84aa84d9c8e2c6599a5030eef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb82e3a84aa84d9c8e2c6599a5030eef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb82e3a84aa84d9c8e2c6599a5030eef.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUjwOK4AZIZyPt1eT-ZOJqbV6Q4=", "createTime": "2024-08-15 15:01:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.194593+00 2025-12-09 10:15:36.194599+00 16612 85031#10码+12码 SPMX-20240815311831 \N \N \N 1 \N [{"file_id": "1395881c-00fe-4f4b-9443-277a028439f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c190f0cdb7420ea1dcd345c893194d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c190f0cdb7420ea1dcd345c893194d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c190f0cdb7420ea1dcd345c893194d.jpg", "file_size": 17455, "is_delete": false, "file_type": 1, "original_file_name": "85031#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c190f0cdb7420ea1dcd345c893194d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c190f0cdb7420ea1dcd345c893194d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c190f0cdb7420ea1dcd345c893194d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c190f0cdb7420ea1dcd345c893194d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c190f0cdb7420ea1dcd345c893194d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-yri9GNjZdYgO6iR6-GppACETus=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.197521+00 2025-12-09 10:15:36.197528+00 16613 JTSS736FW#VS-D3 SPMX-20240815311827 \N \N \N 1 \N [{"file_id": "2c781cc7-dd7f-45f7-82dd-c010a28bd4f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab535a15ae934edab825735d88b85fb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab535a15ae934edab825735d88b85fb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab535a15ae934edab825735d88b85fb1.jpg", "file_size": 11269, "is_delete": false, "file_type": 1, "original_file_name": "JTSS736FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab535a15ae934edab825735d88b85fb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab535a15ae934edab825735d88b85fb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab535a15ae934edab825735d88b85fb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab535a15ae934edab825735d88b85fb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab535a15ae934edab825735d88b85fb1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7LuCvpSbFisXpkDI2qRIPmF2DY=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.200426+00 2025-12-09 10:15:36.200432+00 16614 0007-105#蓝底 SPMX-20240815311825 \N \N \N 1 \N [{"file_id": "7e6331e4-44cf-48f5-af30-bcba03180e5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82dc534dc2fd453393b97abf1a06740a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82dc534dc2fd453393b97abf1a06740a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82dc534dc2fd453393b97abf1a06740a.jpg", "file_size": 22204, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82dc534dc2fd453393b97abf1a06740a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82dc534dc2fd453393b97abf1a06740a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82dc534dc2fd453393b97abf1a06740a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82dc534dc2fd453393b97abf1a06740a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82dc534dc2fd453393b97abf1a06740a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPTWir-QhLNtSV_ZZnWKrNKztcg=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.203315+00 2025-12-09 10:15:36.20332+00 16615 LZ1357#上身51号色 SPMX-20240815311830 \N \N \N 1 \N [{"file_id": "dfab80d8-e105-4b32-bd91-43b80c625773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4368f4c16a843e6a01c784a4534bf1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4368f4c16a843e6a01c784a4534bf1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4368f4c16a843e6a01c784a4534bf1b.jpg", "file_size": 18805, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身51号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4368f4c16a843e6a01c784a4534bf1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4368f4c16a843e6a01c784a4534bf1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4368f4c16a843e6a01c784a4534bf1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4368f4c16a843e6a01c784a4534bf1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4368f4c16a843e6a01c784a4534bf1b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NzPfSbbA2GTmIIiAm1o3MbSTHpU=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.206162+00 2025-12-09 10:15:36.206167+00 16616 CCH0005-2#白色 SPMX-20240815311829 \N \N \N 1 \N [{"file_id": "07ae0b3e-568f-42b4-b326-fc71def9231f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bcc9a10b8a141c49e6d9a8605983acf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bcc9a10b8a141c49e6d9a8605983acf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bcc9a10b8a141c49e6d9a8605983acf.jpg", "file_size": 13206, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc9a10b8a141c49e6d9a8605983acf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc9a10b8a141c49e6d9a8605983acf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bcc9a10b8a141c49e6d9a8605983acf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bcc9a10b8a141c49e6d9a8605983acf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bcc9a10b8a141c49e6d9a8605983acf.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mLGhf2uISdLq86nJPD5Dpijp96w=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.208981+00 2025-12-09 10:15:36.208986+00 16617 HX002#D紫 SPMX-20240815311834 \N \N \N 1 \N [{"file_id": "77e850ca-bc79-42fb-93b4-a13f3247acc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bb99b08671d4d03adec0c42f2f62533.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bb99b08671d4d03adec0c42f2f62533.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bb99b08671d4d03adec0c42f2f62533.jpg", "file_size": 12635, "is_delete": false, "file_type": 1, "original_file_name": "HX002#D紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb99b08671d4d03adec0c42f2f62533.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb99b08671d4d03adec0c42f2f62533.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb99b08671d4d03adec0c42f2f62533.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bb99b08671d4d03adec0c42f2f62533.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bb99b08671d4d03adec0c42f2f62533.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iKiBoH5qYaYZrRtatAqwXPwX5RI=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.211735+00 2025-12-09 10:15:36.211741+00 16618 FX0003-14#RC23 SPMX-20240815311836 \N \N \N 1 \N [{"file_id": "914e9d92-a6a5-48ce-9e47-de3d07e39234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa83cc1195d34c169d27472cb6792fe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa83cc1195d34c169d27472cb6792fe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa83cc1195d34c169d27472cb6792fe9.jpg", "file_size": 18320, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-14#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa83cc1195d34c169d27472cb6792fe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa83cc1195d34c169d27472cb6792fe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa83cc1195d34c169d27472cb6792fe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa83cc1195d34c169d27472cb6792fe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa83cc1195d34c169d27472cb6792fe9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrHVXXDVss-1CistXiY1_UBbOcM=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.214581+00 2025-12-09 10:15:36.214587+00 16619 123#蓝 SPMX-20240815311828 \N \N \N 1 \N [{"file_id": "c0d25620-c0d4-4be8-883e-53f10a1bceda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4789b3765d664a68925faa8e6d73ffc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4789b3765d664a68925faa8e6d73ffc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4789b3765d664a68925faa8e6d73ffc1.jpg", "file_size": 11849, "is_delete": false, "file_type": 1, "original_file_name": "123#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4789b3765d664a68925faa8e6d73ffc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4789b3765d664a68925faa8e6d73ffc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4789b3765d664a68925faa8e6d73ffc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4789b3765d664a68925faa8e6d73ffc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4789b3765d664a68925faa8e6d73ffc1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbBYXF2lPTTjEANavaxIyafivg8=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.217428+00 2025-12-09 10:15:36.217434+00 16620 DL31545#前幅彩兰 SPMX-20240815311835 \N \N \N 1 \N [{"file_id": "bc877f94-5f0a-42f3-aebe-3808c90d8427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ca1cb450c7a46c7a85ec07cabb4139a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ca1cb450c7a46c7a85ec07cabb4139a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ca1cb450c7a46c7a85ec07cabb4139a.jpg", "file_size": 14486, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca1cb450c7a46c7a85ec07cabb4139a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca1cb450c7a46c7a85ec07cabb4139a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca1cb450c7a46c7a85ec07cabb4139a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ca1cb450c7a46c7a85ec07cabb4139a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ca1cb450c7a46c7a85ec07cabb4139a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LyjvJUTVB-Ly-IIAJBL_ZZgX_M=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.220307+00 2025-12-09 10:15:36.220313+00 16621 123#黄 SPMX-20240815311837 \N \N \N 1 \N [{"file_id": "55cc916a-871d-450a-bce1-f288627b6778", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eff0f656ce7b4d64905c1dfb85d3b983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eff0f656ce7b4d64905c1dfb85d3b983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eff0f656ce7b4d64905c1dfb85d3b983.jpg", "file_size": 10878, "is_delete": false, "file_type": 1, "original_file_name": "123#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff0f656ce7b4d64905c1dfb85d3b983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff0f656ce7b4d64905c1dfb85d3b983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eff0f656ce7b4d64905c1dfb85d3b983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eff0f656ce7b4d64905c1dfb85d3b983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eff0f656ce7b4d64905c1dfb85d3b983.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GuSvBrc2lCNuEVmJALhn4Fi5_QE=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.223195+00 2025-12-09 10:15:36.223201+00 16622 LJH1861#橘色 SPMX-20240815311832 \N \N \N 1 \N [{"file_id": "77d11015-b317-4631-b4a3-0934417347ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9eac8c6fa364e70bfa624cdb035c2aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9eac8c6fa364e70bfa624cdb035c2aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9eac8c6fa364e70bfa624cdb035c2aa.jpg", "file_size": 51530, "is_delete": false, "file_type": 1, "original_file_name": "LJH1861#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eac8c6fa364e70bfa624cdb035c2aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eac8c6fa364e70bfa624cdb035c2aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eac8c6fa364e70bfa624cdb035c2aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9eac8c6fa364e70bfa624cdb035c2aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9eac8c6fa364e70bfa624cdb035c2aa.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGFXygtZTKlFtrDVFyddyB5tYMo=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.226054+00 2025-12-09 10:15:36.22606+00 16623 FX0003-139#RC23 SPMX-20240815311826 \N \N \N 1 \N [{"file_id": "91c63812-c490-414a-8a8c-7810ad84a4fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99a765336af7420391fb47acf002e622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99a765336af7420391fb47acf002e622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99a765336af7420391fb47acf002e622.jpg", "file_size": 40397, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-139#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a765336af7420391fb47acf002e622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a765336af7420391fb47acf002e622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a765336af7420391fb47acf002e622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99a765336af7420391fb47acf002e622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99a765336af7420391fb47acf002e622.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NOCUQyJyRmPOq_-81SZWPWTSfc=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.228903+00 2025-12-09 10:15:36.228908+00 16624 2303#紫色背心裙2XL SPMX-20240815311833 \N \N \N 1 \N [{"file_id": "22c1298e-2524-488f-b6af-9b0e0572efd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c0f0d4d667b4b18b9642d0af408bec8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c0f0d4d667b4b18b9642d0af408bec8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c0f0d4d667b4b18b9642d0af408bec8.jpg", "file_size": 17683, "is_delete": false, "file_type": 1, "original_file_name": "2303#紫色背心裙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0f0d4d667b4b18b9642d0af408bec8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0f0d4d667b4b18b9642d0af408bec8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c0f0d4d667b4b18b9642d0af408bec8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c0f0d4d667b4b18b9642d0af408bec8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c0f0d4d667b4b18b9642d0af408bec8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-0ugquFR0_DGo01TsVgQSk9QLE=", "createTime": "2024-08-15 15:01:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.231757+00 2025-12-09 10:15:36.231763+00 16625 2303#紫色背心裙L SPMX-20240815311841 \N \N \N 1 \N [{"file_id": "f58fedba-e6d9-41ce-823b-fd595fa54476", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc4f9a6aacad421baa3167b8f7f59646.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc4f9a6aacad421baa3167b8f7f59646.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc4f9a6aacad421baa3167b8f7f59646.jpg", "file_size": 16770, "is_delete": false, "file_type": 1, "original_file_name": "2303#紫色背心裙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4f9a6aacad421baa3167b8f7f59646.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4f9a6aacad421baa3167b8f7f59646.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4f9a6aacad421baa3167b8f7f59646.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc4f9a6aacad421baa3167b8f7f59646.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc4f9a6aacad421baa3167b8f7f59646.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ft0Yt0HH_tItq4CyRtXtVEixOzg=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.234599+00 2025-12-09 10:15:36.234605+00 16626 LZ1357#上身5号色 SPMX-20240815311839 \N \N \N 1 \N [{"file_id": "d1487150-fbcb-4d75-a84e-98e93c193712", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "810230ab0cd241cca9240ef20f03f4fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "810230ab0cd241cca9240ef20f03f4fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "810230ab0cd241cca9240ef20f03f4fb.jpg", "file_size": 21086, "is_delete": false, "file_type": 1, "original_file_name": "LZ1357#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/810230ab0cd241cca9240ef20f03f4fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/810230ab0cd241cca9240ef20f03f4fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/810230ab0cd241cca9240ef20f03f4fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/810230ab0cd241cca9240ef20f03f4fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/810230ab0cd241cca9240ef20f03f4fb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8OIBO8gMWQ9kc2_rVmKKMK-1oU=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.237492+00 2025-12-09 10:15:36.2375+00 16627 123 SPMX-20240815311846 \N \N \N 1 \N [{"file_id": "0f6760cd-fca8-4636-abb5-1bc5653f2ed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6351fb38e14ef79f6850fa04421e23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6351fb38e14ef79f6850fa04421e23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6351fb38e14ef79f6850fa04421e23.jpg", "file_size": 127985, "is_delete": false, "file_type": 1, "original_file_name": "123.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6351fb38e14ef79f6850fa04421e23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6351fb38e14ef79f6850fa04421e23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6351fb38e14ef79f6850fa04421e23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6351fb38e14ef79f6850fa04421e23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6351fb38e14ef79f6850fa04421e23.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w4wcPk-l-qv7LxP9aiI9nRIMCQs=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.240402+00 2025-12-09 10:15:36.240408+00 16628 JTSS737FW#VS-D3 SPMX-20240815311845 \N \N \N 1 \N [{"file_id": "5bb6ae80-cffe-4698-a882-ad44136a995a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49899fb5151e4a719b4e8cf1ae3f6b54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49899fb5151e4a719b4e8cf1ae3f6b54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49899fb5151e4a719b4e8cf1ae3f6b54.jpg", "file_size": 9565, "is_delete": false, "file_type": 1, "original_file_name": "JTSS737FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49899fb5151e4a719b4e8cf1ae3f6b54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49899fb5151e4a719b4e8cf1ae3f6b54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49899fb5151e4a719b4e8cf1ae3f6b54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49899fb5151e4a719b4e8cf1ae3f6b54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49899fb5151e4a719b4e8cf1ae3f6b54.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rw8gcJ6jy9AbuMbcdM5eXTz0jwc=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.243262+00 2025-12-09 10:15:36.243268+00 16629 FX0003-140#原版色 SPMX-20240815311847 \N \N \N 1 \N [{"file_id": "b0ca7b96-c578-4356-93f8-1767f947d5f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "330816c9042b4e1d803a6fb9c1add0b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "330816c9042b4e1d803a6fb9c1add0b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "330816c9042b4e1d803a6fb9c1add0b0.jpg", "file_size": 66244, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-140#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330816c9042b4e1d803a6fb9c1add0b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330816c9042b4e1d803a6fb9c1add0b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330816c9042b4e1d803a6fb9c1add0b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/330816c9042b4e1d803a6fb9c1add0b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/330816c9042b4e1d803a6fb9c1add0b0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7BzFm8pSvPGtoeIylqLflG9r8s=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.246147+00 2025-12-09 10:15:36.246153+00 16630 HX002#D绿 SPMX-20240815311842 \N \N \N 1 \N [{"file_id": "f8638bc5-7452-4638-95af-a1b7bccf8a99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bc590ca5c1a4caba86118ba254714a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bc590ca5c1a4caba86118ba254714a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bc590ca5c1a4caba86118ba254714a3.jpg", "file_size": 11846, "is_delete": false, "file_type": 1, "original_file_name": "HX002#D绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc590ca5c1a4caba86118ba254714a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc590ca5c1a4caba86118ba254714a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc590ca5c1a4caba86118ba254714a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bc590ca5c1a4caba86118ba254714a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bc590ca5c1a4caba86118ba254714a3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrSqD7eirBDwMY2LjDSWTIKZKBY=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.248995+00 2025-12-09 10:15:36.249001+00 16631 85031#14码 SPMX-20240815311840 \N \N \N 1 \N [{"file_id": "54666c74-64a9-4f55-b3c5-5dc5007a85d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a28e5e98e4184aac8d16e2754b663612.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a28e5e98e4184aac8d16e2754b663612.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a28e5e98e4184aac8d16e2754b663612.jpg", "file_size": 15374, "is_delete": false, "file_type": 1, "original_file_name": "85031#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28e5e98e4184aac8d16e2754b663612.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28e5e98e4184aac8d16e2754b663612.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a28e5e98e4184aac8d16e2754b663612.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a28e5e98e4184aac8d16e2754b663612.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a28e5e98e4184aac8d16e2754b663612.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sW9wpv8DcFUdmABSCF3TJTofoo0=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.251865+00 2025-12-09 10:15:36.251872+00 16632 LJH1861#玫红色 SPMX-20240815311838 \N \N \N 1 \N [{"file_id": "ee917919-120c-4c4c-95c2-3efd43161c48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "955b15a9d5e64036b0e3a50d1b2ef9e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "955b15a9d5e64036b0e3a50d1b2ef9e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "955b15a9d5e64036b0e3a50d1b2ef9e8.jpg", "file_size": 55318, "is_delete": false, "file_type": 1, "original_file_name": "LJH1861#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955b15a9d5e64036b0e3a50d1b2ef9e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955b15a9d5e64036b0e3a50d1b2ef9e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/955b15a9d5e64036b0e3a50d1b2ef9e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/955b15a9d5e64036b0e3a50d1b2ef9e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/955b15a9d5e64036b0e3a50d1b2ef9e8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tgiyd2HD4-wRjqqsLQSL69fFHSs=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.255003+00 2025-12-09 10:15:36.25501+00 16633 0007-105#黄底 SPMX-20240815311844 \N \N \N 1 \N [{"file_id": "c2517bfc-1773-420f-b621-897013399d1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a63c65c3632d43a2859de0d10793f738.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a63c65c3632d43a2859de0d10793f738.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a63c65c3632d43a2859de0d10793f738.jpg", "file_size": 19747, "is_delete": false, "file_type": 1, "original_file_name": "0007-105#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63c65c3632d43a2859de0d10793f738.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63c65c3632d43a2859de0d10793f738.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63c65c3632d43a2859de0d10793f738.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a63c65c3632d43a2859de0d10793f738.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a63c65c3632d43a2859de0d10793f738.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V3TJUHbYkNsLEQJz84NLorOR9RY=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.258134+00 2025-12-09 10:15:36.25814+00 16634 DL31545#前幅枣红 SPMX-20240815311843 \N \N \N 1 \N [{"file_id": "8f21925f-9c38-46c6-943b-2e06ebd82ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fffdfe336df4f43ab82ca434f4ef6df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fffdfe336df4f43ab82ca434f4ef6df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fffdfe336df4f43ab82ca434f4ef6df.jpg", "file_size": 14995, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fffdfe336df4f43ab82ca434f4ef6df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fffdfe336df4f43ab82ca434f4ef6df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fffdfe336df4f43ab82ca434f4ef6df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fffdfe336df4f43ab82ca434f4ef6df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fffdfe336df4f43ab82ca434f4ef6df.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9RYxwGmEJ1g5GlCLDn-xTRbeWc=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.26105+00 2025-12-09 10:15:36.261056+00 16635 LZ1358#上身1号色 SPMX-20240815311848 \N \N \N 1 \N [{"file_id": "a3c4b4ec-8a27-4cd5-bfac-f240432f0bd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da963d75779e44eab760cdda638912fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da963d75779e44eab760cdda638912fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da963d75779e44eab760cdda638912fb.jpg", "file_size": 20598, "is_delete": false, "file_type": 1, "original_file_name": "LZ1358#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da963d75779e44eab760cdda638912fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da963d75779e44eab760cdda638912fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da963d75779e44eab760cdda638912fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da963d75779e44eab760cdda638912fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da963d75779e44eab760cdda638912fb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwd8Pp6upjAd8sWucSRSQ77zc2s=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.263907+00 2025-12-09 10:15:36.263915+00 16636 HX002#D蓝 SPMX-20240815311852 \N \N \N 1 \N [{"file_id": "f043691a-70c6-439c-b9f0-613d59f87ebc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "368763c18a844b9ba8fb335d9bbface6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "368763c18a844b9ba8fb335d9bbface6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "368763c18a844b9ba8fb335d9bbface6.jpg", "file_size": 12086, "is_delete": false, "file_type": 1, "original_file_name": "HX002#D蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/368763c18a844b9ba8fb335d9bbface6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/368763c18a844b9ba8fb335d9bbface6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/368763c18a844b9ba8fb335d9bbface6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/368763c18a844b9ba8fb335d9bbface6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/368763c18a844b9ba8fb335d9bbface6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5zrn7IlNXOSvfOCZ7BDtdMmP6Q=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.266687+00 2025-12-09 10:15:36.266693+00 16637 1231-10FWF#中童12码+10码 SPMX-20240815311855 \N \N \N 1 \N [{"file_id": "2dad029b-4339-4f84-954d-171ccf16417a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334d8037debb44858954723e671ca164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334d8037debb44858954723e671ca164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334d8037debb44858954723e671ca164.jpg", "file_size": 18391, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d8037debb44858954723e671ca164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d8037debb44858954723e671ca164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334d8037debb44858954723e671ca164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334d8037debb44858954723e671ca164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334d8037debb44858954723e671ca164.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWCAJPK5MGYFWIZwOwYwqUBP0VQ=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.269534+00 2025-12-09 10:15:36.269541+00 16638 0007-106#粉色 SPMX-20240815311856 \N \N \N 1 \N [{"file_id": "990b8757-ae3a-4236-a015-2b8346a66d07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8d1f376c97545658694ce64520f0bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8d1f376c97545658694ce64520f0bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8d1f376c97545658694ce64520f0bfb.jpg", "file_size": 16762, "is_delete": false, "file_type": 1, "original_file_name": "0007-106#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8d1f376c97545658694ce64520f0bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8d1f376c97545658694ce64520f0bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8d1f376c97545658694ce64520f0bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8d1f376c97545658694ce64520f0bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8d1f376c97545658694ce64520f0bfb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:egFun6TWVjnY7L9Z-30MIINoMu0=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.272459+00 2025-12-09 10:15:36.272463+00 16639 JTSS738FW#VS-D3 SPMX-20240815311858 \N \N \N 1 \N [{"file_id": "52e44553-6c70-4775-8584-38f89ed19473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f410987f3de4d23b1f4ee5f3fdc1870.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f410987f3de4d23b1f4ee5f3fdc1870.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f410987f3de4d23b1f4ee5f3fdc1870.jpg", "file_size": 12701, "is_delete": false, "file_type": 1, "original_file_name": "JTSS738FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f410987f3de4d23b1f4ee5f3fdc1870.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f410987f3de4d23b1f4ee5f3fdc1870.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f410987f3de4d23b1f4ee5f3fdc1870.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f410987f3de4d23b1f4ee5f3fdc1870.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f410987f3de4d23b1f4ee5f3fdc1870.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K35IdU7uzwYHlx-4Qvt1rkJvZrk=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.275099+00 2025-12-09 10:15:36.275104+00 16640 CCH0005-2#绿色 SPMX-20240815311859 \N \N \N 1 \N [{"file_id": "68114730-8a52-459a-9cbd-e24dbaa8ffdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fc1c60a9e87499db1776aeace5254ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fc1c60a9e87499db1776aeace5254ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fc1c60a9e87499db1776aeace5254ec.jpg", "file_size": 13189, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc1c60a9e87499db1776aeace5254ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc1c60a9e87499db1776aeace5254ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc1c60a9e87499db1776aeace5254ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fc1c60a9e87499db1776aeace5254ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fc1c60a9e87499db1776aeace5254ec.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULXyA6gxLWxP_0Y_8Cc9akEScIk=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.277514+00 2025-12-09 10:15:36.277519+00 16641 CCH0005-2#皮卡 SPMX-20240815311849 \N \N \N 1 \N [{"file_id": "38a63a04-916a-4067-a4db-d05269c54c9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a568896fb9b84a17949de3c254ec2b35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a568896fb9b84a17949de3c254ec2b35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a568896fb9b84a17949de3c254ec2b35.jpg", "file_size": 11864, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#皮卡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a568896fb9b84a17949de3c254ec2b35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a568896fb9b84a17949de3c254ec2b35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a568896fb9b84a17949de3c254ec2b35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a568896fb9b84a17949de3c254ec2b35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a568896fb9b84a17949de3c254ec2b35.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qw-nBK949xYK9yOmUwJGDWD6oHA=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.280263+00 2025-12-09 10:15:36.28027+00 16642 LJH1862#兰色 SPMX-20240815311850 \N \N \N 1 \N [{"file_id": "d2918a29-aa20-4285-ad55-8dc486b245a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd9c457fd6134815b059292ed8d161a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd9c457fd6134815b059292ed8d161a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd9c457fd6134815b059292ed8d161a2.jpg", "file_size": 27972, "is_delete": false, "file_type": 1, "original_file_name": "LJH1862#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd9c457fd6134815b059292ed8d161a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd9c457fd6134815b059292ed8d161a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd9c457fd6134815b059292ed8d161a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd9c457fd6134815b059292ed8d161a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd9c457fd6134815b059292ed8d161a2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64UG14kV-9fk9FuHhZH5WQNyyZI=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.283446+00 2025-12-09 10:15:36.283453+00 16643 85031#4码+8码 SPMX-20240815311851 \N \N \N 1 \N [{"file_id": "f1009127-4934-4c99-ae6c-556fdc20d343", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "621e8361b56c4af995aedd9e37e652cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "621e8361b56c4af995aedd9e37e652cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "621e8361b56c4af995aedd9e37e652cf.jpg", "file_size": 17452, "is_delete": false, "file_type": 1, "original_file_name": "85031#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621e8361b56c4af995aedd9e37e652cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621e8361b56c4af995aedd9e37e652cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/621e8361b56c4af995aedd9e37e652cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/621e8361b56c4af995aedd9e37e652cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/621e8361b56c4af995aedd9e37e652cf.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4NTpV9ma_4ZhYtMoPPYMLIxLwQ=", "createTime": "2024-08-15 15:01:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.28648+00 2025-12-09 10:15:36.286486+00 16644 DL31545#前幅水红 SPMX-20240815311854 \N \N \N 1 \N [{"file_id": "a82ec497-695b-4ad8-bd17-a1c43d9835a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "746b02e5cb624e78ad0d3183d42abdad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "746b02e5cb624e78ad0d3183d42abdad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "746b02e5cb624e78ad0d3183d42abdad.jpg", "file_size": 13717, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746b02e5cb624e78ad0d3183d42abdad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746b02e5cb624e78ad0d3183d42abdad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746b02e5cb624e78ad0d3183d42abdad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/746b02e5cb624e78ad0d3183d42abdad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/746b02e5cb624e78ad0d3183d42abdad.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLQyj_XdNI2dK2vnM8ANYzELtFI=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.289287+00 2025-12-09 10:15:36.289292+00 16645 LZ1358#上身2号色 SPMX-20240815311860 \N \N \N 1 \N [{"file_id": "5489be97-b9b1-469f-bdf2-5c0fcfc0c9fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf23e055cd6e44489380e50cda5b9e66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf23e055cd6e44489380e50cda5b9e66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf23e055cd6e44489380e50cda5b9e66.jpg", "file_size": 21579, "is_delete": false, "file_type": 1, "original_file_name": "LZ1358#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf23e055cd6e44489380e50cda5b9e66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf23e055cd6e44489380e50cda5b9e66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf23e055cd6e44489380e50cda5b9e66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf23e055cd6e44489380e50cda5b9e66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf23e055cd6e44489380e50cda5b9e66.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTVIpp11PKjkRSiP_eO2jWO2AhA=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.292029+00 2025-12-09 10:15:36.292035+00 16646 2303#紫色背心裙M SPMX-20240815311853 \N \N \N 1 \N [{"file_id": "bf86825b-626c-4942-b394-23a3913e5d33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32cd4a15ed294f4ba23d3fc9eff9886b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32cd4a15ed294f4ba23d3fc9eff9886b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32cd4a15ed294f4ba23d3fc9eff9886b.jpg", "file_size": 16391, "is_delete": false, "file_type": 1, "original_file_name": "2303#紫色背心裙M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cd4a15ed294f4ba23d3fc9eff9886b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cd4a15ed294f4ba23d3fc9eff9886b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32cd4a15ed294f4ba23d3fc9eff9886b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32cd4a15ed294f4ba23d3fc9eff9886b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32cd4a15ed294f4ba23d3fc9eff9886b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TlKLwTF-16qXzhNkHgpM1DM6ek=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.294722+00 2025-12-09 10:15:36.294728+00 16647 FX0003-140#橙色 SPMX-20240815311857 \N \N \N 1 \N [{"file_id": "4b0e299c-509a-4194-bb2b-1c412ee33183", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ddc226ff2a74368809d50933da1bd41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ddc226ff2a74368809d50933da1bd41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ddc226ff2a74368809d50933da1bd41.jpg", "file_size": 70209, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-140#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ddc226ff2a74368809d50933da1bd41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ddc226ff2a74368809d50933da1bd41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ddc226ff2a74368809d50933da1bd41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ddc226ff2a74368809d50933da1bd41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ddc226ff2a74368809d50933da1bd41.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xEKLuzP_zu2mUlI_fIloZgvYfvo=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.297432+00 2025-12-09 10:15:36.297438+00 16648 DL31545#前幅玫红 SPMX-20240815311865 \N \N \N 1 \N [{"file_id": "fcfee2ff-ff9a-4749-912d-4c81321ab909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8cf68f3d2d34ec19ecf8a28a00170e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8cf68f3d2d34ec19ecf8a28a00170e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8cf68f3d2d34ec19ecf8a28a00170e5.jpg", "file_size": 14723, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8cf68f3d2d34ec19ecf8a28a00170e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8cf68f3d2d34ec19ecf8a28a00170e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8cf68f3d2d34ec19ecf8a28a00170e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8cf68f3d2d34ec19ecf8a28a00170e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8cf68f3d2d34ec19ecf8a28a00170e5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dDlr5LzqUOE-W_wSbeHsLQL5x5o=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.300059+00 2025-12-09 10:15:36.300065+00 16649 LJH1862#白色 SPMX-20240815311861 \N \N \N 1 \N [{"file_id": "dcab8334-dbfc-4489-a48e-ea4f28b2d9ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53630895134a46639f2f60a4930b2851.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53630895134a46639f2f60a4930b2851.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53630895134a46639f2f60a4930b2851.jpg", "file_size": 29221, "is_delete": false, "file_type": 1, "original_file_name": "LJH1862#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53630895134a46639f2f60a4930b2851.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53630895134a46639f2f60a4930b2851.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53630895134a46639f2f60a4930b2851.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53630895134a46639f2f60a4930b2851.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53630895134a46639f2f60a4930b2851.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4e1nRTVG2-HrARg4xgSv1Nvbn4=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.302728+00 2025-12-09 10:15:36.302734+00 16650 85031#6码 SPMX-20240815311862 \N \N \N 1 \N [{"file_id": "6bf29f3b-f99c-49ea-9089-5a38298961eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1b5da97858f4c079c6b4dc4abf51d06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1b5da97858f4c079c6b4dc4abf51d06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1b5da97858f4c079c6b4dc4abf51d06.jpg", "file_size": 16469, "is_delete": false, "file_type": 1, "original_file_name": "85031#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1b5da97858f4c079c6b4dc4abf51d06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1b5da97858f4c079c6b4dc4abf51d06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1b5da97858f4c079c6b4dc4abf51d06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1b5da97858f4c079c6b4dc4abf51d06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1b5da97858f4c079c6b4dc4abf51d06.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNNdCMyQpPD5j0wQNCp-xMuow9g=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.305452+00 2025-12-09 10:15:36.305458+00 16651 0007-106#紫色 SPMX-20240815311866 \N \N \N 1 \N [{"file_id": "203bc89f-a9e6-4ce5-8931-82230f9528e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c62b36ae6feb4d6d856bac275f7cc76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c62b36ae6feb4d6d856bac275f7cc76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c62b36ae6feb4d6d856bac275f7cc76d.jpg", "file_size": 17756, "is_delete": false, "file_type": 1, "original_file_name": "0007-106#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62b36ae6feb4d6d856bac275f7cc76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62b36ae6feb4d6d856bac275f7cc76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62b36ae6feb4d6d856bac275f7cc76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c62b36ae6feb4d6d856bac275f7cc76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c62b36ae6feb4d6d856bac275f7cc76d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hv7DZjMi4gKbddhagHfAKWK-LRE=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.308143+00 2025-12-09 10:15:36.30815+00 16652 2303#紫色背心裙S SPMX-20240815311863 \N \N \N 1 \N [{"file_id": "80a0cc77-5f5f-4f99-8182-a3ff088f5a3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1e15a71a56f47c8983b781aff6276f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1e15a71a56f47c8983b781aff6276f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1e15a71a56f47c8983b781aff6276f6.jpg", "file_size": 16136, "is_delete": false, "file_type": 1, "original_file_name": "2303#紫色背心裙S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e15a71a56f47c8983b781aff6276f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e15a71a56f47c8983b781aff6276f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e15a71a56f47c8983b781aff6276f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1e15a71a56f47c8983b781aff6276f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1e15a71a56f47c8983b781aff6276f6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZaaKzmwoHJ1MreXDgra0TiB7FY=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.310787+00 2025-12-09 10:15:36.310793+00 16653 HX002#VS-D3 SPMX-20240815311864 \N \N \N 1 \N [{"file_id": "4e00fe1e-bb60-4159-892d-61332cc1fa5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "683f8d92bed44bbe9663a677e8cad283.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "683f8d92bed44bbe9663a677e8cad283.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "683f8d92bed44bbe9663a677e8cad283.jpg", "file_size": 13613, "is_delete": false, "file_type": 1, "original_file_name": "HX002#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683f8d92bed44bbe9663a677e8cad283.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683f8d92bed44bbe9663a677e8cad283.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/683f8d92bed44bbe9663a677e8cad283.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/683f8d92bed44bbe9663a677e8cad283.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/683f8d92bed44bbe9663a677e8cad283.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_E-QnNP1n5YR-_bH69nWgPY2Plk=", "createTime": "2024-08-15 15:01:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.3135+00 2025-12-09 10:15:36.313506+00 16654 FX0003-140#粉色 SPMX-20240815311869 \N \N \N 1 \N [{"file_id": "462d665d-17bf-4f12-a6ee-3e15e9f29559", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc3e55f106ba43f78a3c0985ebc19998.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc3e55f106ba43f78a3c0985ebc19998.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc3e55f106ba43f78a3c0985ebc19998.jpg", "file_size": 57310, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-140#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc3e55f106ba43f78a3c0985ebc19998.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc3e55f106ba43f78a3c0985ebc19998.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc3e55f106ba43f78a3c0985ebc19998.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc3e55f106ba43f78a3c0985ebc19998.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc3e55f106ba43f78a3c0985ebc19998.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:614hIK7DZHTJjDFLnhXXZEFaQyo=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.316255+00 2025-12-09 10:15:36.316262+00 16655 CCH0005-2#黄色 SPMX-20240815311870 \N \N \N 1 \N [{"file_id": "3a7c75d2-1986-4035-9172-e36e348eebdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59e3c3493580468989e77ea6c9f64301.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59e3c3493580468989e77ea6c9f64301.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59e3c3493580468989e77ea6c9f64301.jpg", "file_size": 13289, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e3c3493580468989e77ea6c9f64301.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e3c3493580468989e77ea6c9f64301.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59e3c3493580468989e77ea6c9f64301.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59e3c3493580468989e77ea6c9f64301.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59e3c3493580468989e77ea6c9f64301.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftM8NLL-FdmglPZHCi1serJVSgU=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.32204+00 2025-12-09 10:15:36.322048+00 16657 LJH1862#红色 SPMX-20240815311872 \N \N \N 1 \N [{"file_id": "c7b88a3f-437f-4d2d-821c-8a10f5c19297", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a0c91d5dcff4415b6b64882766b8355.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a0c91d5dcff4415b6b64882766b8355.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a0c91d5dcff4415b6b64882766b8355.jpg", "file_size": 27795, "is_delete": false, "file_type": 1, "original_file_name": "LJH1862#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c91d5dcff4415b6b64882766b8355.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c91d5dcff4415b6b64882766b8355.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0c91d5dcff4415b6b64882766b8355.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a0c91d5dcff4415b6b64882766b8355.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a0c91d5dcff4415b6b64882766b8355.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIY1LbbwvTRNPp6_sj-lbU7miLs=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.324805+00 2025-12-09 10:15:36.324811+00 16658 2303#紫色背心裙XL SPMX-20240815311875 \N \N \N 1 \N [{"file_id": "993aeef5-86e2-478e-bb90-0b4fe10f8e20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "504ca4273f894363a782c81ccd958821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "504ca4273f894363a782c81ccd958821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "504ca4273f894363a782c81ccd958821.jpg", "file_size": 17155, "is_delete": false, "file_type": 1, "original_file_name": "2303#紫色背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504ca4273f894363a782c81ccd958821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504ca4273f894363a782c81ccd958821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504ca4273f894363a782c81ccd958821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/504ca4273f894363a782c81ccd958821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/504ca4273f894363a782c81ccd958821.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R8GWFTsRnkinHMikbHmJ2-3qMBI=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.319159+00 2025-12-09 10:15:36.319165+00 16656 1231-10FWF#中童12码 SPMX-20240815311868 \N \N \N 1 \N [{"file_id": "e24867e2-9445-43c1-a23d-a9607bf8eb15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d99f7174c8564cb6914e13e9ac16fa59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d99f7174c8564cb6914e13e9ac16fa59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d99f7174c8564cb6914e13e9ac16fa59.jpg", "file_size": 18702, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#中童12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99f7174c8564cb6914e13e9ac16fa59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99f7174c8564cb6914e13e9ac16fa59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99f7174c8564cb6914e13e9ac16fa59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d99f7174c8564cb6914e13e9ac16fa59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d99f7174c8564cb6914e13e9ac16fa59.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SSu8SKB96RVM6X72zlYoaGs4dAM=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.330493+00 2025-12-09 10:15:36.3305+00 16659 LZ1358#上身3号色 SPMX-20240815311871 \N \N \N 1 \N [{"file_id": "69e21230-7a90-487d-95b3-9c962b7af6b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be4fe178be964a4094340c52e6979445.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be4fe178be964a4094340c52e6979445.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be4fe178be964a4094340c52e6979445.jpg", "file_size": 19584, "is_delete": false, "file_type": 1, "original_file_name": "LZ1358#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fe178be964a4094340c52e6979445.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fe178be964a4094340c52e6979445.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be4fe178be964a4094340c52e6979445.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be4fe178be964a4094340c52e6979445.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be4fe178be964a4094340c52e6979445.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mPjXHxvejL5XYQPleOYQd1cNhw=", "createTime": "2024-08-15 15:01:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.333267+00 2025-12-09 10:15:36.333274+00 16660 HX002#宝蓝 SPMX-20240815311874 \N \N \N 1 \N [{"file_id": "8046d9a3-0a33-49aa-bc8e-59d91b5cb185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98f8d73ecc4a440f9f7357c13680a177.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98f8d73ecc4a440f9f7357c13680a177.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98f8d73ecc4a440f9f7357c13680a177.jpg", "file_size": 13889, "is_delete": false, "file_type": 1, "original_file_name": "HX002#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f8d73ecc4a440f9f7357c13680a177.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f8d73ecc4a440f9f7357c13680a177.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f8d73ecc4a440f9f7357c13680a177.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98f8d73ecc4a440f9f7357c13680a177.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98f8d73ecc4a440f9f7357c13680a177.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4bleUtWGKDlAwI32S0Uhs5o6Vs=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.335952+00 2025-12-09 10:15:36.335958+00 16661 85031#乱花 SPMX-20240815311873 \N \N \N 1 \N [{"file_id": "0d5a61bf-81ff-4594-9e15-0bdf0defa0b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf67858f08e346caaf8aed8e4377ca77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf67858f08e346caaf8aed8e4377ca77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf67858f08e346caaf8aed8e4377ca77.jpg", "file_size": 10855, "is_delete": false, "file_type": 1, "original_file_name": "85031#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf67858f08e346caaf8aed8e4377ca77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf67858f08e346caaf8aed8e4377ca77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf67858f08e346caaf8aed8e4377ca77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf67858f08e346caaf8aed8e4377ca77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf67858f08e346caaf8aed8e4377ca77.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_vaAnKSQUoCJkrPLQ8w07bkgsv0=", "createTime": "2024-08-15 15:01:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.338979+00 2025-12-09 10:15:36.338985+00 16662 JTSS740FW#VS-D3 SPMX-20240815311876 \N \N \N 1 \N [{"file_id": "cdd7d0d9-4825-4560-babb-6a959023c7d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9434f566d79f4f22acbca8c8a9d5eaa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9434f566d79f4f22acbca8c8a9d5eaa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9434f566d79f4f22acbca8c8a9d5eaa6.jpg", "file_size": 10389, "is_delete": false, "file_type": 1, "original_file_name": "JTSS740FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9434f566d79f4f22acbca8c8a9d5eaa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9434f566d79f4f22acbca8c8a9d5eaa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9434f566d79f4f22acbca8c8a9d5eaa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9434f566d79f4f22acbca8c8a9d5eaa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9434f566d79f4f22acbca8c8a9d5eaa6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v4q2eEoKp9cHJIchQaupEiiVt8E=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.342099+00 2025-12-09 10:15:36.342105+00 16663 LJH1862#绿色 SPMX-20240815311884 \N \N \N 1 \N [{"file_id": "1b08c3a1-8654-462a-b86f-849ef42b875d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83647cb4608748e4a1eb868a724f2db1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83647cb4608748e4a1eb868a724f2db1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83647cb4608748e4a1eb868a724f2db1.jpg", "file_size": 30007, "is_delete": false, "file_type": 1, "original_file_name": "LJH1862#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83647cb4608748e4a1eb868a724f2db1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83647cb4608748e4a1eb868a724f2db1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83647cb4608748e4a1eb868a724f2db1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83647cb4608748e4a1eb868a724f2db1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83647cb4608748e4a1eb868a724f2db1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLmrpKmJRAEZDIu7BArbPdQdVms=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.345141+00 2025-12-09 10:15:36.345147+00 16664 CCH0005-2#黑色 SPMX-20240815311880 \N \N \N 1 \N [{"file_id": "389cdeb1-4cef-40e8-9479-374b91a3321e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0818f6e2e754e0eb65a228d6bfa68ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0818f6e2e754e0eb65a228d6bfa68ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0818f6e2e754e0eb65a228d6bfa68ed.jpg", "file_size": 34149, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0818f6e2e754e0eb65a228d6bfa68ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0818f6e2e754e0eb65a228d6bfa68ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0818f6e2e754e0eb65a228d6bfa68ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0818f6e2e754e0eb65a228d6bfa68ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0818f6e2e754e0eb65a228d6bfa68ed.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8MiqVuOC7adIKhEEqTfjqYCs1zM=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.348142+00 2025-12-09 10:15:36.348148+00 16665 DL31545#前幅蓝绿 SPMX-20240815311877 \N \N \N 1 \N [{"file_id": "207d852f-076d-4e4b-a0f2-b312cbdaba03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba1be34f47e64d9eb51ffc35e3fb32d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba1be34f47e64d9eb51ffc35e3fb32d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba1be34f47e64d9eb51ffc35e3fb32d0.jpg", "file_size": 14778, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1be34f47e64d9eb51ffc35e3fb32d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1be34f47e64d9eb51ffc35e3fb32d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1be34f47e64d9eb51ffc35e3fb32d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba1be34f47e64d9eb51ffc35e3fb32d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba1be34f47e64d9eb51ffc35e3fb32d0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8F6O-M9PQJgVPkOJp2911GPJR0=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.351158+00 2025-12-09 10:15:36.351164+00 16666 85032#10码+12码 SPMX-20240815311879 \N \N \N 1 \N [{"file_id": "6ec427d2-13c0-4de9-b809-e33d81bfafd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "995404bb96de4d45a675481e9c3f575e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "995404bb96de4d45a675481e9c3f575e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "995404bb96de4d45a675481e9c3f575e.jpg", "file_size": 17316, "is_delete": false, "file_type": 1, "original_file_name": "85032#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995404bb96de4d45a675481e9c3f575e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995404bb96de4d45a675481e9c3f575e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995404bb96de4d45a675481e9c3f575e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/995404bb96de4d45a675481e9c3f575e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/995404bb96de4d45a675481e9c3f575e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OWx9kE1CN2fmtpwMUmoYjWfic0k=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.354227+00 2025-12-09 10:15:36.354234+00 16667 LZ1358#上身4号色 SPMX-20240815311885 \N \N \N 1 \N [{"file_id": "57db4f9b-d6ba-4a1a-9212-91b7d803540c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ff01e083b8421d9d3c2c9005eb16f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ff01e083b8421d9d3c2c9005eb16f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ff01e083b8421d9d3c2c9005eb16f1.jpg", "file_size": 20662, "is_delete": false, "file_type": 1, "original_file_name": "LZ1358#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ff01e083b8421d9d3c2c9005eb16f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ff01e083b8421d9d3c2c9005eb16f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ff01e083b8421d9d3c2c9005eb16f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ff01e083b8421d9d3c2c9005eb16f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ff01e083b8421d9d3c2c9005eb16f1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45EClXGAESXWF_GmzSflYMN9dyo=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.357246+00 2025-12-09 10:15:36.357252+00 16668 0007-106#绿色 SPMX-20240815311878 \N \N \N 1 \N [{"file_id": "fc7d51e0-e3a9-4d64-af6b-378dd9d2e2f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6595a626e59b41a09395d861c37315e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6595a626e59b41a09395d861c37315e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6595a626e59b41a09395d861c37315e1.jpg", "file_size": 17832, "is_delete": false, "file_type": 1, "original_file_name": "0007-106#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6595a626e59b41a09395d861c37315e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6595a626e59b41a09395d861c37315e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6595a626e59b41a09395d861c37315e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6595a626e59b41a09395d861c37315e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6595a626e59b41a09395d861c37315e1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hnMThjdxjNGQzsvAWaf7PrTHe4=", "createTime": "2024-08-15 15:01:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.360288+00 2025-12-09 10:15:36.360293+00 16669 2303#红色背心裙2XL SPMX-20240815311881 \N \N \N 1 \N [{"file_id": "99dd877a-eceb-44fb-a636-eda593c3b459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52491b4bff624bea846bd52a24799df5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52491b4bff624bea846bd52a24799df5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52491b4bff624bea846bd52a24799df5.jpg", "file_size": 17484, "is_delete": false, "file_type": 1, "original_file_name": "2303#红色背心裙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52491b4bff624bea846bd52a24799df5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52491b4bff624bea846bd52a24799df5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52491b4bff624bea846bd52a24799df5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52491b4bff624bea846bd52a24799df5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52491b4bff624bea846bd52a24799df5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5uZ85Frc6Q3Pm1MmmKviPwImbRM=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.363007+00 2025-12-09 10:15:36.363013+00 16670 1231-10FWF#中童14码 SPMX-20240815311882 \N \N \N 1 \N [{"file_id": "3efe0167-5f7e-42f2-9f11-164cfe8d66f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e60991c7df54baea8f973ae0947b0dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e60991c7df54baea8f973ae0947b0dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e60991c7df54baea8f973ae0947b0dd.jpg", "file_size": 17064, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e60991c7df54baea8f973ae0947b0dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e60991c7df54baea8f973ae0947b0dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e60991c7df54baea8f973ae0947b0dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e60991c7df54baea8f973ae0947b0dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e60991c7df54baea8f973ae0947b0dd.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htScV8vCMmLfWcrmi_hRZiRamKU=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.365729+00 2025-12-09 10:15:36.365735+00 16671 HX002#渐变D SPMX-20240815311883 \N \N \N 1 \N [{"file_id": "596b0bcc-7042-48da-99b6-4adac374b4bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48bea437e9654bfbb0e48b1e35745ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48bea437e9654bfbb0e48b1e35745ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48bea437e9654bfbb0e48b1e35745ce7.jpg", "file_size": 7902, "is_delete": false, "file_type": 1, "original_file_name": "HX002#渐变D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48bea437e9654bfbb0e48b1e35745ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48bea437e9654bfbb0e48b1e35745ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48bea437e9654bfbb0e48b1e35745ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48bea437e9654bfbb0e48b1e35745ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48bea437e9654bfbb0e48b1e35745ce7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-yYfRRrJ5E4tcwUWcPYW0qTIdA=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.368397+00 2025-12-09 10:15:36.368402+00 16672 JTSS741FW#VS-D3 SPMX-20240815311886 \N \N \N 1 \N [{"file_id": "97230af1-472c-4f9d-a19b-06c7c91f2ef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ce013f4567e41b88ffbc48fa91739f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ce013f4567e41b88ffbc48fa91739f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ce013f4567e41b88ffbc48fa91739f3.jpg", "file_size": 18956, "is_delete": false, "file_type": 1, "original_file_name": "JTSS741FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ce013f4567e41b88ffbc48fa91739f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ce013f4567e41b88ffbc48fa91739f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ce013f4567e41b88ffbc48fa91739f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ce013f4567e41b88ffbc48fa91739f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ce013f4567e41b88ffbc48fa91739f3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZK3DAVOlq_Pe0Kxbb54XQZnXZII=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.371063+00 2025-12-09 10:15:36.371069+00 16673 85032#14码 SPMX-20240815311891 \N \N \N 1 \N [{"file_id": "f611039a-e679-4ae1-b0b8-5fd7977a33ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6ee1878a5794043adda6f3ce08bb7da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6ee1878a5794043adda6f3ce08bb7da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6ee1878a5794043adda6f3ce08bb7da.jpg", "file_size": 16519, "is_delete": false, "file_type": 1, "original_file_name": "85032#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ee1878a5794043adda6f3ce08bb7da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ee1878a5794043adda6f3ce08bb7da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6ee1878a5794043adda6f3ce08bb7da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6ee1878a5794043adda6f3ce08bb7da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6ee1878a5794043adda6f3ce08bb7da.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfWJn57VGUkfJJ8ff5UmJu-awts=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.373745+00 2025-12-09 10:15:36.373751+00 16674 JTSS742FW# SPMX-20240815311895 \N \N \N 1 \N [{"file_id": "7d653e42-2b44-48ad-a2e4-8561e14bcf03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1dc0b0d1a8b4f5294abb4916d2b4595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1dc0b0d1a8b4f5294abb4916d2b4595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1dc0b0d1a8b4f5294abb4916d2b4595.jpg", "file_size": 11782, "is_delete": false, "file_type": 1, "original_file_name": "JTSS742FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1dc0b0d1a8b4f5294abb4916d2b4595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1dc0b0d1a8b4f5294abb4916d2b4595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1dc0b0d1a8b4f5294abb4916d2b4595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1dc0b0d1a8b4f5294abb4916d2b4595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1dc0b0d1a8b4f5294abb4916d2b4595.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkLCfLPuAwmp2Y9-LrFd8P_tVMk=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.376451+00 2025-12-09 10:15:36.376456+00 16675 1231-10FWF#中童袖领匹布 SPMX-20240815311893 \N \N \N 1 \N [{"file_id": "a82ebdc7-c7b5-44a3-bd60-246ea6c90336", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dd595aa55644e89b2cbcf20e6585f3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dd595aa55644e89b2cbcf20e6585f3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dd595aa55644e89b2cbcf20e6585f3c.jpg", "file_size": 14276, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd595aa55644e89b2cbcf20e6585f3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd595aa55644e89b2cbcf20e6585f3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd595aa55644e89b2cbcf20e6585f3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dd595aa55644e89b2cbcf20e6585f3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dd595aa55644e89b2cbcf20e6585f3c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NMRWk6MJ7_3u72hhO1POFgcLBAk=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.379199+00 2025-12-09 10:15:36.379204+00 16676 HX002#粉色 SPMX-20240815311894 \N \N \N 1 \N [{"file_id": "b4c4efd3-15a6-4396-a9cd-cde2ab73096d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "796df7f9bbc34e30ac955375b57e9e59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "796df7f9bbc34e30ac955375b57e9e59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "796df7f9bbc34e30ac955375b57e9e59.jpg", "file_size": 10183, "is_delete": false, "file_type": 1, "original_file_name": "HX002#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/796df7f9bbc34e30ac955375b57e9e59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/796df7f9bbc34e30ac955375b57e9e59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/796df7f9bbc34e30ac955375b57e9e59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/796df7f9bbc34e30ac955375b57e9e59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/796df7f9bbc34e30ac955375b57e9e59.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qCQObSAPKjrYOEExKE0wuqlZSI=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.381925+00 2025-12-09 10:15:36.381931+00 16677 2303#红色背心裙L SPMX-20240815311892 \N \N \N 1 \N [{"file_id": "fcc99c8d-509c-4258-ab4b-83d0889e3945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "924463d3700a4fe4a5ab1b03b32ce466.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "924463d3700a4fe4a5ab1b03b32ce466.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "924463d3700a4fe4a5ab1b03b32ce466.jpg", "file_size": 16842, "is_delete": false, "file_type": 1, "original_file_name": "2303#红色背心裙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/924463d3700a4fe4a5ab1b03b32ce466.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/924463d3700a4fe4a5ab1b03b32ce466.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/924463d3700a4fe4a5ab1b03b32ce466.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/924463d3700a4fe4a5ab1b03b32ce466.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/924463d3700a4fe4a5ab1b03b32ce466.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E9mXceGnPB3oF6GxO8bWgvEJLYc=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.384652+00 2025-12-09 10:15:36.384659+00 16678 DL31545#批布21#枣红 SPMX-20240815311888 \N \N \N 1 \N [{"file_id": "da96b8d1-3b42-4307-b2c1-e1745a676fc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38d1696b34094992bdbd46672210be16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38d1696b34094992bdbd46672210be16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38d1696b34094992bdbd46672210be16.jpg", "file_size": 24050, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布21#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1696b34094992bdbd46672210be16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1696b34094992bdbd46672210be16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d1696b34094992bdbd46672210be16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38d1696b34094992bdbd46672210be16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38d1696b34094992bdbd46672210be16.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pSIOExx9PVwDQY5Dayt9j7Vz1fs=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.38745+00 2025-12-09 10:15:36.387456+00 16679 CCH0005-3#土黄 SPMX-20240815311890 \N \N \N 1 \N [{"file_id": "b64d7e89-dc02-4fe1-850d-70efe4e95f6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65517939c2e24e98b2e6bd07b14bb72c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65517939c2e24e98b2e6bd07b14bb72c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65517939c2e24e98b2e6bd07b14bb72c.jpg", "file_size": 19936, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65517939c2e24e98b2e6bd07b14bb72c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65517939c2e24e98b2e6bd07b14bb72c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65517939c2e24e98b2e6bd07b14bb72c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65517939c2e24e98b2e6bd07b14bb72c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65517939c2e24e98b2e6bd07b14bb72c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOV9BxbbylYWlAfB9yHrBcc63tc=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.390207+00 2025-12-09 10:15:36.390213+00 16680 FX0003-140#绿色 SPMX-20240815311887 \N \N \N 1 \N [{"file_id": "fcab1b99-a99b-4b33-8783-2535cc4a6a5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7de371c6f3ca4224b13310220fa9e2b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7de371c6f3ca4224b13310220fa9e2b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7de371c6f3ca4224b13310220fa9e2b5.jpg", "file_size": 68001, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-140#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de371c6f3ca4224b13310220fa9e2b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de371c6f3ca4224b13310220fa9e2b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7de371c6f3ca4224b13310220fa9e2b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7de371c6f3ca4224b13310220fa9e2b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7de371c6f3ca4224b13310220fa9e2b5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wv5q2C-qe1V3bbYT6RM8gj_Deo=", "createTime": "2024-08-15 15:01:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.392904+00 2025-12-09 10:15:36.39291+00 16681 0007-106#蓝色 SPMX-20240815311889 \N \N \N 1 \N [{"file_id": "39ed560f-327e-4e4b-a933-c6eb19cf7c34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aacf2a1eced6479e9afd7d8ebf267150.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aacf2a1eced6479e9afd7d8ebf267150.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aacf2a1eced6479e9afd7d8ebf267150.jpg", "file_size": 18938, "is_delete": false, "file_type": 1, "original_file_name": "0007-106#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aacf2a1eced6479e9afd7d8ebf267150.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aacf2a1eced6479e9afd7d8ebf267150.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aacf2a1eced6479e9afd7d8ebf267150.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aacf2a1eced6479e9afd7d8ebf267150.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aacf2a1eced6479e9afd7d8ebf267150.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:abXMXCeDBdjkO2q02tPG9nW6wJ4=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.395503+00 2025-12-09 10:15:36.395509+00 16682 CCH0005-3#湖绿 SPMX-20240815311901 \N \N \N 1 \N [{"file_id": "265d4e13-cac8-4297-8659-1326f0236d40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0afd9fdef150495ba0ff35d7f5263cde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0afd9fdef150495ba0ff35d7f5263cde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0afd9fdef150495ba0ff35d7f5263cde.jpg", "file_size": 21184, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9fdef150495ba0ff35d7f5263cde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9fdef150495ba0ff35d7f5263cde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afd9fdef150495ba0ff35d7f5263cde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0afd9fdef150495ba0ff35d7f5263cde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0afd9fdef150495ba0ff35d7f5263cde.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDtqNavS8bSoxieUYEn4EaDzGAM=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.398207+00 2025-12-09 10:15:36.398213+00 16683 2303#红色背心裙M SPMX-20240815311902 \N \N \N 1 \N [{"file_id": "2c4dc778-55e8-489e-9d11-b92e33181b5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "750a5601407c48779684f4613c92553f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "750a5601407c48779684f4613c92553f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "750a5601407c48779684f4613c92553f.jpg", "file_size": 16482, "is_delete": false, "file_type": 1, "original_file_name": "2303#红色背心裙M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750a5601407c48779684f4613c92553f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750a5601407c48779684f4613c92553f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/750a5601407c48779684f4613c92553f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/750a5601407c48779684f4613c92553f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/750a5601407c48779684f4613c92553f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aADZLuK6jgZTKJAcZq0G03_ZKVs=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.400951+00 2025-12-09 10:15:36.400956+00 16684 85032#4码+8码 SPMX-20240815311904 \N \N \N 1 \N [{"file_id": "be7050c1-7d94-4d91-9ded-b76de4bf49ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "420fc2f992ca4ee59058ea4681d3de9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "420fc2f992ca4ee59058ea4681d3de9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "420fc2f992ca4ee59058ea4681d3de9b.jpg", "file_size": 17387, "is_delete": false, "file_type": 1, "original_file_name": "85032#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420fc2f992ca4ee59058ea4681d3de9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420fc2f992ca4ee59058ea4681d3de9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420fc2f992ca4ee59058ea4681d3de9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/420fc2f992ca4ee59058ea4681d3de9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/420fc2f992ca4ee59058ea4681d3de9b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnV5yW56C3GWwuZorjdqtf52W5o=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.403635+00 2025-12-09 10:15:36.403642+00 16685 HX002#绿色 SPMX-20240815311905 \N \N \N 1 \N [{"file_id": "86313b08-5fbf-4761-a00a-928839d12930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77d1c51fd1a7479c9ef4adc4e81453a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77d1c51fd1a7479c9ef4adc4e81453a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77d1c51fd1a7479c9ef4adc4e81453a1.jpg", "file_size": 10436, "is_delete": false, "file_type": 1, "original_file_name": "HX002#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d1c51fd1a7479c9ef4adc4e81453a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d1c51fd1a7479c9ef4adc4e81453a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77d1c51fd1a7479c9ef4adc4e81453a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77d1c51fd1a7479c9ef4adc4e81453a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77d1c51fd1a7479c9ef4adc4e81453a1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLHv866IycRrUDb7EaU-rS-pbkw=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.406383+00 2025-12-09 10:15:36.406389+00 16686 JTSS743FW# SPMX-20240815311906 \N \N \N 1 \N [{"file_id": "da3eef27-85fc-4658-915a-5e0524b45e74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c085a7b076824538afc3f088a8445298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c085a7b076824538afc3f088a8445298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c085a7b076824538afc3f088a8445298.jpg", "file_size": 12217, "is_delete": false, "file_type": 1, "original_file_name": "JTSS743FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c085a7b076824538afc3f088a8445298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c085a7b076824538afc3f088a8445298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c085a7b076824538afc3f088a8445298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c085a7b076824538afc3f088a8445298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c085a7b076824538afc3f088a8445298.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtNPZTdvTO9Lmn2BPIAI54P3koU=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.409215+00 2025-12-09 10:15:36.409221+00 16687 FX0003-140#黑色 SPMX-20240815311898 \N \N \N 1 \N [{"file_id": "33dda470-49f6-405c-b0bd-3f48382597ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1bd7995416c40e49731954d2b4e9dad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1bd7995416c40e49731954d2b4e9dad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1bd7995416c40e49731954d2b4e9dad.jpg", "file_size": 61028, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-140#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bd7995416c40e49731954d2b4e9dad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bd7995416c40e49731954d2b4e9dad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1bd7995416c40e49731954d2b4e9dad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1bd7995416c40e49731954d2b4e9dad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1bd7995416c40e49731954d2b4e9dad.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLz_rCof8U7eU7ndPIUySRQG91g=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.411984+00 2025-12-09 10:15:36.41199+00 16688 0007-106#黄色 SPMX-20240815311900 \N \N \N 1 \N [{"file_id": "f5e7b0c6-8355-4f15-9d9b-fa787a86f49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2b6903eba4048608601a1f8ae81ace3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2b6903eba4048608601a1f8ae81ace3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2b6903eba4048608601a1f8ae81ace3.jpg", "file_size": 15517, "is_delete": false, "file_type": 1, "original_file_name": "0007-106#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b6903eba4048608601a1f8ae81ace3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b6903eba4048608601a1f8ae81ace3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b6903eba4048608601a1f8ae81ace3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2b6903eba4048608601a1f8ae81ace3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2b6903eba4048608601a1f8ae81ace3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aCIkdydQA4zMkrR4_SDUTQOFEhQ=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.414846+00 2025-12-09 10:15:36.414852+00 16689 LJH1867#咖色 SPMX-20240815311897 \N \N \N 1 \N [{"file_id": "b837ffe1-39bf-48a9-a40d-6e3420437ed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147583efc3c34963af72f7a6a1111d3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147583efc3c34963af72f7a6a1111d3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147583efc3c34963af72f7a6a1111d3f.jpg", "file_size": 45221, "is_delete": false, "file_type": 1, "original_file_name": "LJH1867#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147583efc3c34963af72f7a6a1111d3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147583efc3c34963af72f7a6a1111d3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147583efc3c34963af72f7a6a1111d3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147583efc3c34963af72f7a6a1111d3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147583efc3c34963af72f7a6a1111d3f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfT9bOPY7phNh01rhhuZZS5Fcto=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.417536+00 2025-12-09 10:15:36.417542+00 16690 1231-10FWF#小童6码 SPMX-20240815311903 \N \N \N 1 \N [{"file_id": "611683b4-7893-4160-bad1-abe3b2e4647a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3072dfdad614bceb1b223935cdb82aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3072dfdad614bceb1b223935cdb82aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3072dfdad614bceb1b223935cdb82aa.jpg", "file_size": 20263, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3072dfdad614bceb1b223935cdb82aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3072dfdad614bceb1b223935cdb82aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3072dfdad614bceb1b223935cdb82aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3072dfdad614bceb1b223935cdb82aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3072dfdad614bceb1b223935cdb82aa.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhC6ql0F6Lmpntb7rzDqaLl_8to=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.420283+00 2025-12-09 10:15:36.420289+00 16691 LZ1358#上身5号色 SPMX-20240815311896 \N \N \N 1 \N [{"file_id": "c7fa77db-c6b5-4483-a32b-39c6681ac0f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "313cf335b1614b5c87fe9fa35077157c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "313cf335b1614b5c87fe9fa35077157c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "313cf335b1614b5c87fe9fa35077157c.jpg", "file_size": 19671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1358#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313cf335b1614b5c87fe9fa35077157c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313cf335b1614b5c87fe9fa35077157c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/313cf335b1614b5c87fe9fa35077157c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/313cf335b1614b5c87fe9fa35077157c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/313cf335b1614b5c87fe9fa35077157c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_D7Ov2GvsFpiwKtkofghHmuNyDU=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.422986+00 2025-12-09 10:15:36.422993+00 16692 DL31545#批布42#姜黄 SPMX-20240815311899 \N \N \N 1 \N [{"file_id": "c3676ee2-3d07-46e6-8509-acb9d350d00f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3786aae7e2f24065ad1e3b886ad5e9f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3786aae7e2f24065ad1e3b886ad5e9f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3786aae7e2f24065ad1e3b886ad5e9f8.jpg", "file_size": 24068, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3786aae7e2f24065ad1e3b886ad5e9f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3786aae7e2f24065ad1e3b886ad5e9f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3786aae7e2f24065ad1e3b886ad5e9f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3786aae7e2f24065ad1e3b886ad5e9f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3786aae7e2f24065ad1e3b886ad5e9f8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aoN65EBOCUjvpLkk_1mVEH9lo2M=", "createTime": "2024-08-15 15:01:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.425694+00 2025-12-09 10:15:36.4257+00 16693 DL31545#批布6#蓝绿 SPMX-20240815311910 \N \N \N 1 \N [{"file_id": "302cbf63-fa52-4add-a380-86a0d30ca747", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe5b30ef3e3452a98a33aeeebb74541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe5b30ef3e3452a98a33aeeebb74541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe5b30ef3e3452a98a33aeeebb74541.jpg", "file_size": 24114, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5b30ef3e3452a98a33aeeebb74541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5b30ef3e3452a98a33aeeebb74541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5b30ef3e3452a98a33aeeebb74541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe5b30ef3e3452a98a33aeeebb74541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe5b30ef3e3452a98a33aeeebb74541.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ms0N1ZazDaQ8U1C_-jOs_GJTi-Q=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.428413+00 2025-12-09 10:15:36.428419+00 16694 1231-10FWF#小童8码+4码 SPMX-20240815311914 \N \N \N 1 \N [{"file_id": "52524e6e-b02a-4d68-925b-d4754b3b2c6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8040c3dc2b4349348902eccdfd3a79b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8040c3dc2b4349348902eccdfd3a79b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8040c3dc2b4349348902eccdfd3a79b5.jpg", "file_size": 20335, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8040c3dc2b4349348902eccdfd3a79b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8040c3dc2b4349348902eccdfd3a79b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8040c3dc2b4349348902eccdfd3a79b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8040c3dc2b4349348902eccdfd3a79b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8040c3dc2b4349348902eccdfd3a79b5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WlbFuMtTtJWhq8sQCZ9PC4ps1kY=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.431158+00 2025-12-09 10:15:36.431163+00 16695 85032#6码 SPMX-20240815311915 \N \N \N 1 \N [{"file_id": "1b377002-6d81-48a0-814d-1da703e462df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9f828159b2846b1b197f841ef358f93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9f828159b2846b1b197f841ef358f93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9f828159b2846b1b197f841ef358f93.jpg", "file_size": 16508, "is_delete": false, "file_type": 1, "original_file_name": "85032#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f828159b2846b1b197f841ef358f93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f828159b2846b1b197f841ef358f93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f828159b2846b1b197f841ef358f93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9f828159b2846b1b197f841ef358f93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9f828159b2846b1b197f841ef358f93.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y4r9q_ugAhDu6mI9oAAzLhqorPE=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.433799+00 2025-12-09 10:15:36.433805+00 16696 LZ1359#上身2号色 SPMX-20240815311917 \N \N \N 1 \N [{"file_id": "a73cbbd0-48ae-4624-99f9-33bc4d3db13d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee277acc13504afcbf1aade47208c34a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee277acc13504afcbf1aade47208c34a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee277acc13504afcbf1aade47208c34a.jpg", "file_size": 16401, "is_delete": false, "file_type": 1, "original_file_name": "LZ1359#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee277acc13504afcbf1aade47208c34a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee277acc13504afcbf1aade47208c34a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee277acc13504afcbf1aade47208c34a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee277acc13504afcbf1aade47208c34a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee277acc13504afcbf1aade47208c34a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Zc4gnqowy4EZZf6EKjGc_a_O5c=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.436707+00 2025-12-09 10:15:36.436713+00 16697 FX0003-141#RC23 SPMX-20240815311908 \N \N \N 1 \N [{"file_id": "f00b4700-51f1-43ad-9c22-29369ee2128c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b41c6f0bd154808acb03374fd620095.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b41c6f0bd154808acb03374fd620095.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b41c6f0bd154808acb03374fd620095.jpg", "file_size": 28748, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-141#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b41c6f0bd154808acb03374fd620095.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b41c6f0bd154808acb03374fd620095.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b41c6f0bd154808acb03374fd620095.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b41c6f0bd154808acb03374fd620095.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b41c6f0bd154808acb03374fd620095.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SoZBhF-nQtTZ3PsF2iF3Ggp9igM=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.439556+00 2025-12-09 10:15:36.439565+00 16698 HX002FW# SPMX-20240815311916 \N \N \N 1 \N [{"file_id": "d58a0c9b-bce3-4667-83c7-c7adcc70cdb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ae022a3204441d489cb3e768c13b989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ae022a3204441d489cb3e768c13b989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ae022a3204441d489cb3e768c13b989.jpg", "file_size": 17320, "is_delete": false, "file_type": 1, "original_file_name": "HX002FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae022a3204441d489cb3e768c13b989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae022a3204441d489cb3e768c13b989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae022a3204441d489cb3e768c13b989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ae022a3204441d489cb3e768c13b989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ae022a3204441d489cb3e768c13b989.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JuwkuTd-bDDMsw7m3rJrTRgN0_Y=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.442383+00 2025-12-09 10:15:36.442388+00 16699 0007-107#军绿 SPMX-20240815311911 \N \N \N 1 \N [{"file_id": "dbfe0266-941e-4276-ab92-dd55f705fcf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41075664c86c40309e8cc4343a2d6497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41075664c86c40309e8cc4343a2d6497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41075664c86c40309e8cc4343a2d6497.jpg", "file_size": 13593, "is_delete": false, "file_type": 1, "original_file_name": "0007-107#军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41075664c86c40309e8cc4343a2d6497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41075664c86c40309e8cc4343a2d6497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41075664c86c40309e8cc4343a2d6497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41075664c86c40309e8cc4343a2d6497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41075664c86c40309e8cc4343a2d6497.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ur6sXnMubnxHnvdUdrb-otYnKxc=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.445175+00 2025-12-09 10:15:36.44518+00 16700 LZ1359#上身1号色 SPMX-20240815311907 \N \N \N 1 \N [{"file_id": "d878809f-c23a-47d3-a1e4-955d2d9c1f6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70caf5b16bef4fce8884a70223f659f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70caf5b16bef4fce8884a70223f659f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70caf5b16bef4fce8884a70223f659f5.jpg", "file_size": 17450, "is_delete": false, "file_type": 1, "original_file_name": "LZ1359#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70caf5b16bef4fce8884a70223f659f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70caf5b16bef4fce8884a70223f659f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70caf5b16bef4fce8884a70223f659f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70caf5b16bef4fce8884a70223f659f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70caf5b16bef4fce8884a70223f659f5.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iSp2UpAt42sGpj7zOIUikN9N5ho=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.447947+00 2025-12-09 10:15:36.447952+00 16701 LJH1867#绿色 SPMX-20240815311919 \N \N \N 1 \N [{"file_id": "d0d5ae4f-614a-4296-9505-8e030f0997be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45b47d36d5834551877045e81cc4e1a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45b47d36d5834551877045e81cc4e1a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45b47d36d5834551877045e81cc4e1a4.jpg", "file_size": 45497, "is_delete": false, "file_type": 1, "original_file_name": "LJH1867#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b47d36d5834551877045e81cc4e1a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b47d36d5834551877045e81cc4e1a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b47d36d5834551877045e81cc4e1a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45b47d36d5834551877045e81cc4e1a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45b47d36d5834551877045e81cc4e1a4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPyss9ZUpeixxmsXWLkgoRhhDP8=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.450676+00 2025-12-09 10:15:36.450682+00 16702 LJH1867#紫色 SPMX-20240815311909 \N \N \N 1 \N [{"file_id": "69551fe4-39e0-423b-ad5b-cba139d34081", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2ec9aca6f04dcda04147d295bfe363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2ec9aca6f04dcda04147d295bfe363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2ec9aca6f04dcda04147d295bfe363.jpg", "file_size": 43676, "is_delete": false, "file_type": 1, "original_file_name": "LJH1867#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2ec9aca6f04dcda04147d295bfe363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2ec9aca6f04dcda04147d295bfe363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2ec9aca6f04dcda04147d295bfe363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2ec9aca6f04dcda04147d295bfe363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2ec9aca6f04dcda04147d295bfe363.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyUzoI0QqjykkBDA_qkbtSYITAs=", "createTime": "2024-08-15 15:01:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.453398+00 2025-12-09 10:15:36.453403+00 16703 JTSS744FW# SPMX-20240815311918 \N \N \N 1 \N [{"file_id": "f1ef7a93-c23c-40d4-86c0-eeadfa9dfa76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57a288d6ccbe434c9f67b7ff75b08425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57a288d6ccbe434c9f67b7ff75b08425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57a288d6ccbe434c9f67b7ff75b08425.jpg", "file_size": 11957, "is_delete": false, "file_type": 1, "original_file_name": "JTSS744FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a288d6ccbe434c9f67b7ff75b08425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a288d6ccbe434c9f67b7ff75b08425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57a288d6ccbe434c9f67b7ff75b08425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57a288d6ccbe434c9f67b7ff75b08425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57a288d6ccbe434c9f67b7ff75b08425.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nDM-Hlw4GSCm1883MiYU5gf78RI=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.456149+00 2025-12-09 10:15:36.456157+00 16704 2303#红色背心裙S SPMX-20240815311912 \N \N \N 1 \N [{"file_id": "fd185641-0b2c-46ce-97a7-591ca0da7ed8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e20bf291c02e498298aef019fe239567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e20bf291c02e498298aef019fe239567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e20bf291c02e498298aef019fe239567.jpg", "file_size": 16250, "is_delete": false, "file_type": 1, "original_file_name": "2303#红色背心裙S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20bf291c02e498298aef019fe239567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20bf291c02e498298aef019fe239567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20bf291c02e498298aef019fe239567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e20bf291c02e498298aef019fe239567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e20bf291c02e498298aef019fe239567.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSg2COkgKmXum6lWSJ2qn6hzjZA=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.458834+00 2025-12-09 10:15:36.45884+00 16705 CCH0005-3#白色 SPMX-20240815311913 \N \N \N 1 \N [{"file_id": "2051a5c7-0c66-42ea-8118-3bb1ad89a275", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c16ab92474e4a7a93534e14b1e999de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c16ab92474e4a7a93534e14b1e999de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c16ab92474e4a7a93534e14b1e999de.jpg", "file_size": 22846, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c16ab92474e4a7a93534e14b1e999de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c16ab92474e4a7a93534e14b1e999de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c16ab92474e4a7a93534e14b1e999de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c16ab92474e4a7a93534e14b1e999de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c16ab92474e4a7a93534e14b1e999de.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Brbrh_ILdWUKd8G-6EJSdUkGCik=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.461637+00 2025-12-09 10:15:36.461642+00 16706 DL31545#批布姜黄 SPMX-20240815311921 \N \N \N 1 \N [{"file_id": "4f02186c-8804-4d36-a228-84185bc03810", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3a1e6f7d69e4a0ea52c67453a0d0992.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3a1e6f7d69e4a0ea52c67453a0d0992.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3a1e6f7d69e4a0ea52c67453a0d0992.jpg", "file_size": 24006, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a1e6f7d69e4a0ea52c67453a0d0992.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a1e6f7d69e4a0ea52c67453a0d0992.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a1e6f7d69e4a0ea52c67453a0d0992.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3a1e6f7d69e4a0ea52c67453a0d0992.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3a1e6f7d69e4a0ea52c67453a0d0992.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YNrwR9ch1VY0LgaN4xrRCKUpVK4=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.464395+00 2025-12-09 10:15:36.464402+00 16707 CCH0005-3#皮卡 SPMX-20240815311923 \N \N \N 1 \N [{"file_id": "9ee85e09-e164-4c9c-9622-5a7c79c4fbd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f02f9a72d34e5e957c0d944600d794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f02f9a72d34e5e957c0d944600d794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f02f9a72d34e5e957c0d944600d794.jpg", "file_size": 20377, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#皮卡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f02f9a72d34e5e957c0d944600d794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f02f9a72d34e5e957c0d944600d794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f02f9a72d34e5e957c0d944600d794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f02f9a72d34e5e957c0d944600d794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f02f9a72d34e5e957c0d944600d794.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ki0d8mRAkzv8CANY9gj2WUGHTDo=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.467142+00 2025-12-09 10:15:36.467148+00 16708 2303#红色背心裙XL SPMX-20240815311924 \N \N \N 1 \N [{"file_id": "b56a9919-8c28-4182-9e0f-f42dae2ab488", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6a0c17004ce40ec9602e748cad96794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6a0c17004ce40ec9602e748cad96794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6a0c17004ce40ec9602e748cad96794.jpg", "file_size": 17329, "is_delete": false, "file_type": 1, "original_file_name": "2303#红色背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a0c17004ce40ec9602e748cad96794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a0c17004ce40ec9602e748cad96794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a0c17004ce40ec9602e748cad96794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6a0c17004ce40ec9602e748cad96794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6a0c17004ce40ec9602e748cad96794.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtzrLb2u6k8uvybGcF4TUIHdQ04=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.469867+00 2025-12-09 10:15:36.469873+00 16709 FX0003-142#RC23 SPMX-20240815311922 \N \N \N 1 \N [{"file_id": "6e0af618-210b-4b0b-b315-a15b1a9a1680", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c380c3176202416e95647f768eaed9c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c380c3176202416e95647f768eaed9c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c380c3176202416e95647f768eaed9c8.jpg", "file_size": 81788, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-142#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c380c3176202416e95647f768eaed9c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c380c3176202416e95647f768eaed9c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c380c3176202416e95647f768eaed9c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c380c3176202416e95647f768eaed9c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c380c3176202416e95647f768eaed9c8.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZooyzXwSDXxVGly8GPMVM8wHcI=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.472567+00 2025-12-09 10:15:36.472573+00 16710 JTSS745FW#VS-D3 SPMX-20240815311927 \N \N \N 1 \N [{"file_id": "890d4479-f6e7-4d45-a66e-ce4f80d86ce6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51341c1abce84610a1f4ca70d0ccdafc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51341c1abce84610a1f4ca70d0ccdafc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51341c1abce84610a1f4ca70d0ccdafc.jpg", "file_size": 8968, "is_delete": false, "file_type": 1, "original_file_name": "JTSS745FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51341c1abce84610a1f4ca70d0ccdafc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51341c1abce84610a1f4ca70d0ccdafc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51341c1abce84610a1f4ca70d0ccdafc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51341c1abce84610a1f4ca70d0ccdafc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51341c1abce84610a1f4ca70d0ccdafc.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-NXpBeb-Vfeyrs687I-TN7KYeZA=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.475276+00 2025-12-09 10:15:36.475282+00 16711 0007-107#原版色 SPMX-20240815311920 \N \N \N 1 \N [{"file_id": "30d79a1d-eae3-43d6-83f4-670c00335bd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc9b1ceea84549baa1a3fda9a76ec3da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc9b1ceea84549baa1a3fda9a76ec3da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc9b1ceea84549baa1a3fda9a76ec3da.jpg", "file_size": 21888, "is_delete": false, "file_type": 1, "original_file_name": "0007-107#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc9b1ceea84549baa1a3fda9a76ec3da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc9b1ceea84549baa1a3fda9a76ec3da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc9b1ceea84549baa1a3fda9a76ec3da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc9b1ceea84549baa1a3fda9a76ec3da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc9b1ceea84549baa1a3fda9a76ec3da.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:laaLUTHlR8-ocV0mQf4B9pxsvfk=", "createTime": "2024-08-15 15:01:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.47797+00 2025-12-09 10:15:36.477976+00 16712 1231-10FWF#小童袖领匹布 SPMX-20240815311925 \N \N \N 1 \N [{"file_id": "058940d4-3af7-4f02-aabe-39d035a6b2f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02aecf2a769940a6a815296af8cea1ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02aecf2a769940a6a815296af8cea1ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02aecf2a769940a6a815296af8cea1ef.jpg", "file_size": 14218, "is_delete": false, "file_type": 1, "original_file_name": "1231-10FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02aecf2a769940a6a815296af8cea1ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02aecf2a769940a6a815296af8cea1ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02aecf2a769940a6a815296af8cea1ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02aecf2a769940a6a815296af8cea1ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02aecf2a769940a6a815296af8cea1ef.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GSihWXnLgahZf0shWoDbOp2CaHE=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.480685+00 2025-12-09 10:15:36.480691+00 16713 85032#乱花 SPMX-20240815311926 \N \N \N 1 \N [{"file_id": "8a9cd234-783a-4715-858f-3667d188bf19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e697bca08c714294a87eae3586c632fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e697bca08c714294a87eae3586c632fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e697bca08c714294a87eae3586c632fb.jpg", "file_size": 8818, "is_delete": false, "file_type": 1, "original_file_name": "85032#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e697bca08c714294a87eae3586c632fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e697bca08c714294a87eae3586c632fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e697bca08c714294a87eae3586c632fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e697bca08c714294a87eae3586c632fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e697bca08c714294a87eae3586c632fb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:216ZHOT4smC3tfjDV_RAZT5If4U=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.483371+00 2025-12-09 10:15:36.483377+00 16714 HX002FW#VS-D3 SPMX-20240815311929 \N \N \N 1 \N [{"file_id": "1032994b-62fa-4380-bd4f-3ee3609d9821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f86b67aa3ea54be5a388045620123311.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f86b67aa3ea54be5a388045620123311.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f86b67aa3ea54be5a388045620123311.jpg", "file_size": 16074, "is_delete": false, "file_type": 1, "original_file_name": "HX002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86b67aa3ea54be5a388045620123311.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86b67aa3ea54be5a388045620123311.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86b67aa3ea54be5a388045620123311.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f86b67aa3ea54be5a388045620123311.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f86b67aa3ea54be5a388045620123311.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yymdDBINoWI8ov-w6WZ_7vfFk0=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.486093+00 2025-12-09 10:15:36.486099+00 16715 FX0003-142#咖色 SPMX-20240815311933 \N \N \N 1 \N [{"file_id": "212e33c5-340c-40c7-ad84-ceb1789e5ff3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "828cd5a854344cc7850053c06763f99f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "828cd5a854344cc7850053c06763f99f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "828cd5a854344cc7850053c06763f99f.jpg", "file_size": 61187, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-142#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828cd5a854344cc7850053c06763f99f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828cd5a854344cc7850053c06763f99f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828cd5a854344cc7850053c06763f99f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/828cd5a854344cc7850053c06763f99f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/828cd5a854344cc7850053c06763f99f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ov3ZIY9BzPc_YpyyaD_Stq1PFNc=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.488807+00 2025-12-09 10:15:36.488813+00 16716 LJH1868#1号色 SPMX-20240815311930 \N \N \N 1 \N [{"file_id": "ac8327f9-e18a-455e-bbbf-2b0bd08ea080", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49721c3a6b624b97be1e6a4d9ae72182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49721c3a6b624b97be1e6a4d9ae72182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49721c3a6b624b97be1e6a4d9ae72182.jpg", "file_size": 73240, "is_delete": false, "file_type": 1, "original_file_name": "LJH1868#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49721c3a6b624b97be1e6a4d9ae72182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49721c3a6b624b97be1e6a4d9ae72182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49721c3a6b624b97be1e6a4d9ae72182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49721c3a6b624b97be1e6a4d9ae72182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49721c3a6b624b97be1e6a4d9ae72182.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vkk1eaFnYNex28xet4IllJ9T1Q=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.502372+00 2025-12-09 10:15:36.502377+00 16721 85033#10码+12码 SPMX-20240815311938 \N \N \N 1 \N [{"file_id": "dd79f382-4b81-41fb-87f7-ab6a2b1e6ef6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2444db33ea9849b8b9f977ee75270a9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2444db33ea9849b8b9f977ee75270a9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2444db33ea9849b8b9f977ee75270a9f.jpg", "file_size": 18215, "is_delete": false, "file_type": 1, "original_file_name": "85033#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2444db33ea9849b8b9f977ee75270a9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2444db33ea9849b8b9f977ee75270a9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2444db33ea9849b8b9f977ee75270a9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2444db33ea9849b8b9f977ee75270a9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2444db33ea9849b8b9f977ee75270a9f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsHftzRGKhj5Jo39rzfIOMDmJZc=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.491492+00 2025-12-09 10:15:36.491498+00 16717 DL31545#批布彩兰 SPMX-20240815311934 \N \N \N 1 \N [{"file_id": "1d26ab33-4ea3-4eb5-a89a-b11a361a16c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "656c88ab4e9d4a3a8d243a69a13685e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "656c88ab4e9d4a3a8d243a69a13685e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "656c88ab4e9d4a3a8d243a69a13685e4.jpg", "file_size": 24278, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656c88ab4e9d4a3a8d243a69a13685e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656c88ab4e9d4a3a8d243a69a13685e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/656c88ab4e9d4a3a8d243a69a13685e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/656c88ab4e9d4a3a8d243a69a13685e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/656c88ab4e9d4a3a8d243a69a13685e4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElPJx0N5EI9DSmjQXmiOqub0ToQ=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.494228+00 2025-12-09 10:15:36.494234+00 16718 0007-107#枣红 SPMX-20240815311931 \N \N \N 1 \N [{"file_id": "639fca1e-0c14-49b4-98f6-e7a0b47b8bd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "089b027ad24247088d3ab72e0370b622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "089b027ad24247088d3ab72e0370b622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "089b027ad24247088d3ab72e0370b622.jpg", "file_size": 13709, "is_delete": false, "file_type": 1, "original_file_name": "0007-107#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089b027ad24247088d3ab72e0370b622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089b027ad24247088d3ab72e0370b622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/089b027ad24247088d3ab72e0370b622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/089b027ad24247088d3ab72e0370b622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/089b027ad24247088d3ab72e0370b622.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmY8sIqiym6-InkRUPDAz8MjkkI=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.496898+00 2025-12-09 10:15:36.496905+00 16719 LZ1359#上身3号色 SPMX-20240815311928 \N \N \N 1 \N [{"file_id": "4e31a426-1224-4660-8873-e5889aefc677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fdb195bb018422fb671e9ac9c93b6d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fdb195bb018422fb671e9ac9c93b6d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fdb195bb018422fb671e9ac9c93b6d4.jpg", "file_size": 15774, "is_delete": false, "file_type": 1, "original_file_name": "LZ1359#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdb195bb018422fb671e9ac9c93b6d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdb195bb018422fb671e9ac9c93b6d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fdb195bb018422fb671e9ac9c93b6d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fdb195bb018422fb671e9ac9c93b6d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fdb195bb018422fb671e9ac9c93b6d4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pprokVUcdLxHFILJdOOUV3j91yE=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.499626+00 2025-12-09 10:15:36.499632+00 16720 CCH0005-3#皮红 SPMX-20240815311932 \N \N \N 1 \N [{"file_id": "e5541e6a-edf5-4a76-8c0a-e09d3a575e88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "905277a17329451c88e6bdd3c4856e1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "905277a17329451c88e6bdd3c4856e1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "905277a17329451c88e6bdd3c4856e1b.jpg", "file_size": 20837, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905277a17329451c88e6bdd3c4856e1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905277a17329451c88e6bdd3c4856e1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/905277a17329451c88e6bdd3c4856e1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/905277a17329451c88e6bdd3c4856e1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/905277a17329451c88e6bdd3c4856e1b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGm9GKj-FxZoFqEeLHE4umuKQrA=", "createTime": "2024-08-15 15:01:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.505103+00 2025-12-09 10:15:36.505109+00 16722 0007-107#黄色 SPMX-20240815311940 \N \N \N 1 \N [{"file_id": "e9818f61-caa0-4962-a09d-5bc8c5c86103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bec51a64d7b4a0da8e7243b2c0481a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bec51a64d7b4a0da8e7243b2c0481a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bec51a64d7b4a0da8e7243b2c0481a3.jpg", "file_size": 21636, "is_delete": false, "file_type": 1, "original_file_name": "0007-107#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bec51a64d7b4a0da8e7243b2c0481a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bec51a64d7b4a0da8e7243b2c0481a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bec51a64d7b4a0da8e7243b2c0481a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bec51a64d7b4a0da8e7243b2c0481a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bec51a64d7b4a0da8e7243b2c0481a3.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6B0IcGaYPpZMbvDtdvGludXdw8=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.507823+00 2025-12-09 10:15:36.507828+00 16723 1231-11FWE#中童12码+10码 SPMX-20240815311936 \N \N \N 1 \N [{"file_id": "a42fe5ad-95a9-42f1-b824-cdd16f06d56e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a787339463f845f9b12f293eeb59530c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a787339463f845f9b12f293eeb59530c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a787339463f845f9b12f293eeb59530c.jpg", "file_size": 20903, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787339463f845f9b12f293eeb59530c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787339463f845f9b12f293eeb59530c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a787339463f845f9b12f293eeb59530c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a787339463f845f9b12f293eeb59530c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a787339463f845f9b12f293eeb59530c.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lzsQHiWWnpobXA-dmJQ_asv3V7E=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.510506+00 2025-12-09 10:15:36.510512+00 16724 JTSS746FW#VS-D3 SPMX-20240815311937 \N \N \N 1 \N [{"file_id": "70978dfe-3e4c-4009-8c46-8d641cefdc36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31f3e1c991fc4e98a0c3bea5eebc993a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31f3e1c991fc4e98a0c3bea5eebc993a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31f3e1c991fc4e98a0c3bea5eebc993a.jpg", "file_size": 10032, "is_delete": false, "file_type": 1, "original_file_name": "JTSS746FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f3e1c991fc4e98a0c3bea5eebc993a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f3e1c991fc4e98a0c3bea5eebc993a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f3e1c991fc4e98a0c3bea5eebc993a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31f3e1c991fc4e98a0c3bea5eebc993a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31f3e1c991fc4e98a0c3bea5eebc993a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdMaPqv8cEyzyDs_XdijgQn3SNg=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.513196+00 2025-12-09 10:15:36.513202+00 16725 2303#绿 SPMX-20240815311935 \N \N \N 1 \N [{"file_id": "079219ae-cb18-4b58-a252-890726d21ec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9edea90746c43278be7a36b38d557c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9edea90746c43278be7a36b38d557c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9edea90746c43278be7a36b38d557c0.jpg", "file_size": 11630, "is_delete": false, "file_type": 1, "original_file_name": "2303#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9edea90746c43278be7a36b38d557c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9edea90746c43278be7a36b38d557c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9edea90746c43278be7a36b38d557c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9edea90746c43278be7a36b38d557c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9edea90746c43278be7a36b38d557c0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZerGCjwGqKBQmWL_Npxd0codVAg=", "createTime": "2024-08-15 15:01:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.516434+00 2025-12-09 10:15:36.516442+00 16726 LJH1868#2号色 SPMX-20240815311941 \N \N \N 1 \N [{"file_id": "8ecea09c-561d-4357-b6ee-55445ee3fe85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da6b7c7c427e47aaa00986c0d3ad81b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da6b7c7c427e47aaa00986c0d3ad81b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da6b7c7c427e47aaa00986c0d3ad81b0.jpg", "file_size": 78286, "is_delete": false, "file_type": 1, "original_file_name": "LJH1868#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da6b7c7c427e47aaa00986c0d3ad81b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da6b7c7c427e47aaa00986c0d3ad81b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da6b7c7c427e47aaa00986c0d3ad81b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da6b7c7c427e47aaa00986c0d3ad81b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da6b7c7c427e47aaa00986c0d3ad81b0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXTnokUys0F-To645sXvcIf6Q5s=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.519534+00 2025-12-09 10:15:36.51954+00 16727 LZ1359#上身4号色 SPMX-20240815311939 \N \N \N 1 \N [{"file_id": "8332fd7d-601a-49ee-84eb-52f9568b4935", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed577f1201c2491a8510c35d06e59eb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed577f1201c2491a8510c35d06e59eb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed577f1201c2491a8510c35d06e59eb2.jpg", "file_size": 15525, "is_delete": false, "file_type": 1, "original_file_name": "LZ1359#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed577f1201c2491a8510c35d06e59eb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed577f1201c2491a8510c35d06e59eb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed577f1201c2491a8510c35d06e59eb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed577f1201c2491a8510c35d06e59eb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed577f1201c2491a8510c35d06e59eb2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SibyK2UEzEVF6o95UKJS2-MvKUM=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.522836+00 2025-12-09 10:15:36.522842+00 16728 LJH1868#3号色 SPMX-20240815311953 \N \N \N 1 \N [{"file_id": "d1856c50-d1ef-466d-b8a5-478bf615d0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d32dbb9533744602b183d477b981fac0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d32dbb9533744602b183d477b981fac0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d32dbb9533744602b183d477b981fac0.jpg", "file_size": 76084, "is_delete": false, "file_type": 1, "original_file_name": "LJH1868#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32dbb9533744602b183d477b981fac0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32dbb9533744602b183d477b981fac0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32dbb9533744602b183d477b981fac0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d32dbb9533744602b183d477b981fac0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d32dbb9533744602b183d477b981fac0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t0mcZ0mC_7fIi5DwcfNZ2EJsXQ4=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.525906+00 2025-12-09 10:15:36.525912+00 16729 HX002FWE#卡其VS-D3 SPMX-20240815311954 \N \N \N 1 \N [{"file_id": "8c1fe7a9-8d7f-43c9-bb8a-1d4b9b3fcb18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9584fe836ef847d0b9e187951d6b6d26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9584fe836ef847d0b9e187951d6b6d26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9584fe836ef847d0b9e187951d6b6d26.jpg", "file_size": 7288, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#卡其VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9584fe836ef847d0b9e187951d6b6d26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9584fe836ef847d0b9e187951d6b6d26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9584fe836ef847d0b9e187951d6b6d26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9584fe836ef847d0b9e187951d6b6d26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9584fe836ef847d0b9e187951d6b6d26.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hpBtB2t0L-_lpGvq_fucNQdRkCs=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.528877+00 2025-12-09 10:15:36.528883+00 16730 DL31545#批布枣红 SPMX-20240815311944 \N \N \N 1 \N [{"file_id": "ec3ca16d-eb82-4647-a899-e2e7c8531b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f7414ffacc340d1b6318f14cecb648a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f7414ffacc340d1b6318f14cecb648a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f7414ffacc340d1b6318f14cecb648a.jpg", "file_size": 23829, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7414ffacc340d1b6318f14cecb648a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7414ffacc340d1b6318f14cecb648a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f7414ffacc340d1b6318f14cecb648a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f7414ffacc340d1b6318f14cecb648a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f7414ffacc340d1b6318f14cecb648a.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSlZBWFoJecc1d4m-_kLtK8xKH0=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.531716+00 2025-12-09 10:15:36.531722+00 16731 HX002FWE#VS-D3 SPMX-20240815311942 \N \N \N 1 \N [{"file_id": "ac7ce6ff-246f-485b-a93e-7ecaa4db05cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b1935d8dd6e447db8dc1bbf240a68fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b1935d8dd6e447db8dc1bbf240a68fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b1935d8dd6e447db8dc1bbf240a68fa.jpg", "file_size": 17664, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1935d8dd6e447db8dc1bbf240a68fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1935d8dd6e447db8dc1bbf240a68fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b1935d8dd6e447db8dc1bbf240a68fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b1935d8dd6e447db8dc1bbf240a68fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b1935d8dd6e447db8dc1bbf240a68fa.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Xhx-Mnc7MqvUtF2I-mWIAlsChg=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.534503+00 2025-12-09 10:15:36.534508+00 16732 85033#14码 SPMX-20240815311950 \N \N \N 1 \N [{"file_id": "9ef4ca69-1ae5-4cd4-b948-4f0b788f1aed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed16e825c2c1499e8605122a4e9b3265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed16e825c2c1499e8605122a4e9b3265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed16e825c2c1499e8605122a4e9b3265.jpg", "file_size": 16664, "is_delete": false, "file_type": 1, "original_file_name": "85033#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed16e825c2c1499e8605122a4e9b3265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed16e825c2c1499e8605122a4e9b3265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed16e825c2c1499e8605122a4e9b3265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed16e825c2c1499e8605122a4e9b3265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed16e825c2c1499e8605122a4e9b3265.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AIJ5NT2N4QnroHgZLYtXqcnRmJI=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.53771+00 2025-12-09 10:15:36.537715+00 16733 FX0003-142#深蓝色 SPMX-20240815311943 \N \N \N 1 \N [{"file_id": "656cf791-36e7-4711-9d57-1bf6fd8f9aa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8061c625e694bdf9e3b032c348ac2cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8061c625e694bdf9e3b032c348ac2cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8061c625e694bdf9e3b032c348ac2cc.jpg", "file_size": 66335, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-142#深蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8061c625e694bdf9e3b032c348ac2cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8061c625e694bdf9e3b032c348ac2cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8061c625e694bdf9e3b032c348ac2cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8061c625e694bdf9e3b032c348ac2cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8061c625e694bdf9e3b032c348ac2cc.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVx0B2Mmk8u5TMx4z6LiWFyCgQE=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.540897+00 2025-12-09 10:15:36.540903+00 16734 2303#背心裙XL SPMX-20240815311947 \N \N \N 1 \N [{"file_id": "616da631-d394-4b2b-94b3-3625063c3a42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcbba2798124473890004dcafaa6e6b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcbba2798124473890004dcafaa6e6b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcbba2798124473890004dcafaa6e6b2.jpg", "file_size": 17860, "is_delete": false, "file_type": 1, "original_file_name": "2303#背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba2798124473890004dcafaa6e6b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba2798124473890004dcafaa6e6b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcbba2798124473890004dcafaa6e6b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcbba2798124473890004dcafaa6e6b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcbba2798124473890004dcafaa6e6b2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYgqeokaWMqSMcX1SnaxHHxKgFA=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.543885+00 2025-12-09 10:15:36.54389+00 16735 FX0003-142#白色 SPMX-20240815311955 \N \N \N 1 \N [{"file_id": "f0ff467a-74f0-4c27-aa7d-1a13d5bac13a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04d6e6ba7e5a4409b49954890c9701a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04d6e6ba7e5a4409b49954890c9701a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04d6e6ba7e5a4409b49954890c9701a1.jpg", "file_size": 53048, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-142#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d6e6ba7e5a4409b49954890c9701a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d6e6ba7e5a4409b49954890c9701a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04d6e6ba7e5a4409b49954890c9701a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04d6e6ba7e5a4409b49954890c9701a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04d6e6ba7e5a4409b49954890c9701a1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h98jSdxOBPmUO3_hosDpmaxJavM=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.546549+00 2025-12-09 10:15:36.546553+00 16736 JTSS747FW#VS-D3 SPMX-20240815311945 \N \N \N 1 \N [{"file_id": "90d477d0-5665-4ca5-98b0-bafc7274e710", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06d2fd20ed694f99b165184de1e3bf9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06d2fd20ed694f99b165184de1e3bf9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06d2fd20ed694f99b165184de1e3bf9b.jpg", "file_size": 10138, "is_delete": false, "file_type": 1, "original_file_name": "JTSS747FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d2fd20ed694f99b165184de1e3bf9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d2fd20ed694f99b165184de1e3bf9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06d2fd20ed694f99b165184de1e3bf9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06d2fd20ed694f99b165184de1e3bf9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06d2fd20ed694f99b165184de1e3bf9b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bqyoee10NfVrxWF2wngHn5GQoU=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.549401+00 2025-12-09 10:15:36.549406+00 16737 LZ1359#上身5号色 SPMX-20240815311949 \N \N \N 1 \N [{"file_id": "fed62953-e721-4d0a-83e6-a38c1f978fad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7793687cff540abb0d0cdb7947d20b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7793687cff540abb0d0cdb7947d20b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7793687cff540abb0d0cdb7947d20b7.jpg", "file_size": 16415, "is_delete": false, "file_type": 1, "original_file_name": "LZ1359#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7793687cff540abb0d0cdb7947d20b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7793687cff540abb0d0cdb7947d20b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7793687cff540abb0d0cdb7947d20b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7793687cff540abb0d0cdb7947d20b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7793687cff540abb0d0cdb7947d20b7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hn3n96X9IGT35U4Qs28C9BcKUZ8=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.552258+00 2025-12-09 10:15:36.552264+00 16738 1231-11FWE#中童14码 SPMX-20240815311952 \N \N \N 1 \N [{"file_id": "72b5aabc-4349-40aa-b2ef-591b58384148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5475b4f418ed4b32beb8a8ead279e488.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5475b4f418ed4b32beb8a8ead279e488.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5475b4f418ed4b32beb8a8ead279e488.jpg", "file_size": 19546, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475b4f418ed4b32beb8a8ead279e488.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475b4f418ed4b32beb8a8ead279e488.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5475b4f418ed4b32beb8a8ead279e488.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5475b4f418ed4b32beb8a8ead279e488.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5475b4f418ed4b32beb8a8ead279e488.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uLO2CtFbaquuTmqE1sxOt5OOG6s=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.555225+00 2025-12-09 10:15:36.555231+00 16739 CCH0005-3#红色 SPMX-20240815311946 \N \N \N 1 \N [{"file_id": "0e302330-da0c-4c17-b814-ff496534fc37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bdbfbc11fa24a3688c20b4792cfb2cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bdbfbc11fa24a3688c20b4792cfb2cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bdbfbc11fa24a3688c20b4792cfb2cb.jpg", "file_size": 21565, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bdbfbc11fa24a3688c20b4792cfb2cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bdbfbc11fa24a3688c20b4792cfb2cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bdbfbc11fa24a3688c20b4792cfb2cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bdbfbc11fa24a3688c20b4792cfb2cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bdbfbc11fa24a3688c20b4792cfb2cb.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L6gmm-yBkmAWyyNBP7drbC0_d9o=", "createTime": "2024-08-15 15:01:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.558279+00 2025-12-09 10:15:36.558286+00 16740 0007-108#杏色 SPMX-20240815311951 \N \N \N 1 \N [{"file_id": "a1156ae1-f9f0-4725-8e66-32ae23e4101b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5afd71918faa44f791153eaedd97b322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5afd71918faa44f791153eaedd97b322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5afd71918faa44f791153eaedd97b322.jpg", "file_size": 12205, "is_delete": false, "file_type": 1, "original_file_name": "0007-108#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afd71918faa44f791153eaedd97b322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afd71918faa44f791153eaedd97b322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5afd71918faa44f791153eaedd97b322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5afd71918faa44f791153eaedd97b322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5afd71918faa44f791153eaedd97b322.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTlkQ7SBA90k7W_5Va_RM2tIl-I=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.561246+00 2025-12-09 10:15:36.561254+00 16741 JTSS748FW#VS-D3 SPMX-20240815311956 \N \N \N 1 \N [{"file_id": "ee272758-e829-4b61-b01f-6e1ee4492a9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b976d635fb94d4f85087e9bc98d8546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b976d635fb94d4f85087e9bc98d8546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b976d635fb94d4f85087e9bc98d8546.jpg", "file_size": 7277, "is_delete": false, "file_type": 1, "original_file_name": "JTSS748FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b976d635fb94d4f85087e9bc98d8546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b976d635fb94d4f85087e9bc98d8546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b976d635fb94d4f85087e9bc98d8546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b976d635fb94d4f85087e9bc98d8546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b976d635fb94d4f85087e9bc98d8546.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mBiqAH9PEsSAfj0blXOdZNXzY_g=", "createTime": "2024-08-15 15:01:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.56416+00 2025-12-09 10:15:36.564168+00 16742 LZ135FWF#1号色短袖 SPMX-20240815311966 \N \N \N 1 \N [{"file_id": "92fee139-c528-4c4a-b3a3-20fc8e2c5470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10810fc197284946b954b5387c4b51b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10810fc197284946b954b5387c4b51b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10810fc197284946b954b5387c4b51b7.jpg", "file_size": 16384, "is_delete": false, "file_type": 1, "original_file_name": "LZ135FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10810fc197284946b954b5387c4b51b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10810fc197284946b954b5387c4b51b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10810fc197284946b954b5387c4b51b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10810fc197284946b954b5387c4b51b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10810fc197284946b954b5387c4b51b7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4Dutgjw2z8gEODMvTkAQXeIRYI=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.567078+00 2025-12-09 10:15:36.567086+00 16743 FX0003-142#绿色 SPMX-20240815311968 \N \N \N 1 \N [{"file_id": "75fdff5b-28a2-435e-bdc8-2f677a875517", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc65a72407b744d0ba08a5ccdef0e09e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc65a72407b744d0ba08a5ccdef0e09e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc65a72407b744d0ba08a5ccdef0e09e.jpg", "file_size": 53953, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-142#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc65a72407b744d0ba08a5ccdef0e09e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc65a72407b744d0ba08a5ccdef0e09e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc65a72407b744d0ba08a5ccdef0e09e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc65a72407b744d0ba08a5ccdef0e09e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc65a72407b744d0ba08a5ccdef0e09e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aP4AETbK6yPGsDTdsjm2Pf4OXWk=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.569901+00 2025-12-09 10:15:36.569907+00 16744 1231-11FWE#中童袖领匹布 SPMX-20240815311957 \N \N \N 1 \N [{"file_id": "76281cd2-06bc-4971-8644-44a7db411287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c3860ea4a66412aabf49bcc66505b63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c3860ea4a66412aabf49bcc66505b63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c3860ea4a66412aabf49bcc66505b63.jpg", "file_size": 18999, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3860ea4a66412aabf49bcc66505b63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3860ea4a66412aabf49bcc66505b63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c3860ea4a66412aabf49bcc66505b63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c3860ea4a66412aabf49bcc66505b63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c3860ea4a66412aabf49bcc66505b63.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y1edsZf2aWZRyVeE0QiSgP-InHA=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.572856+00 2025-12-09 10:15:36.572863+00 16745 DL31545#批布水红 SPMX-20240815311959 \N \N \N 1 \N [{"file_id": "44553559-1348-4f9d-ba54-8fd586d76cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11148d8d04b44675bdf00f5348ae2af9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11148d8d04b44675bdf00f5348ae2af9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11148d8d04b44675bdf00f5348ae2af9.jpg", "file_size": 22837, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11148d8d04b44675bdf00f5348ae2af9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11148d8d04b44675bdf00f5348ae2af9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11148d8d04b44675bdf00f5348ae2af9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11148d8d04b44675bdf00f5348ae2af9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11148d8d04b44675bdf00f5348ae2af9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R1AZqQ42o-zvWZQhGw6JwVr0ZIY=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.575729+00 2025-12-09 10:15:36.575735+00 16746 LJH1869#兰色 SPMX-20240815311962 \N \N \N 1 \N [{"file_id": "513a0ebd-e83e-47b0-bbe8-0a6e62cc4e31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43af08d414494100a157f5f97f9111c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43af08d414494100a157f5f97f9111c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43af08d414494100a157f5f97f9111c9.jpg", "file_size": 48027, "is_delete": false, "file_type": 1, "original_file_name": "LJH1869#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43af08d414494100a157f5f97f9111c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43af08d414494100a157f5f97f9111c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43af08d414494100a157f5f97f9111c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43af08d414494100a157f5f97f9111c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43af08d414494100a157f5f97f9111c9.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzZEnimtxrupzZA2jXHLk37--co=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.578732+00 2025-12-09 10:15:36.578738+00 16747 CCH0005-3#黄色 SPMX-20240815311970 \N \N \N 1 \N [{"file_id": "93ed0665-169d-41e6-a328-5dab84c1c587", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8ace17d51824892abbb2eaaede4e4b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8ace17d51824892abbb2eaaede4e4b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8ace17d51824892abbb2eaaede4e4b7.jpg", "file_size": 22038, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ace17d51824892abbb2eaaede4e4b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ace17d51824892abbb2eaaede4e4b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ace17d51824892abbb2eaaede4e4b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8ace17d51824892abbb2eaaede4e4b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8ace17d51824892abbb2eaaede4e4b7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dH5fzyLDH7ldxjbedZi0cTY4COU=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.581641+00 2025-12-09 10:15:36.581647+00 16748 CCH0005-3#蓝色 SPMX-20240815311961 \N \N \N 1 \N [{"file_id": "cb3e3ec5-8c3e-460f-8eff-8f85b4f8ea42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53790953a06040ea932c08db50d7ec23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53790953a06040ea932c08db50d7ec23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53790953a06040ea932c08db50d7ec23.jpg", "file_size": 20874, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53790953a06040ea932c08db50d7ec23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53790953a06040ea932c08db50d7ec23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53790953a06040ea932c08db50d7ec23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53790953a06040ea932c08db50d7ec23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53790953a06040ea932c08db50d7ec23.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsXEcGE7iwXy6kv_tFhuNGbqOrc=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.584536+00 2025-12-09 10:15:36.584542+00 16749 JTSS749FW#VS-D3 SPMX-20240815311967 \N \N \N 1 \N [{"file_id": "2bc6aa86-f9f0-45cd-8465-4e2c1c1002c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18e71434670d43b7b2f2f3ba009dc0d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18e71434670d43b7b2f2f3ba009dc0d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18e71434670d43b7b2f2f3ba009dc0d0.jpg", "file_size": 9282, "is_delete": false, "file_type": 1, "original_file_name": "JTSS749FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e71434670d43b7b2f2f3ba009dc0d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e71434670d43b7b2f2f3ba009dc0d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e71434670d43b7b2f2f3ba009dc0d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18e71434670d43b7b2f2f3ba009dc0d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18e71434670d43b7b2f2f3ba009dc0d0.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cbWQ51BGkO-YVFpDewUjjQyn-08=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.587398+00 2025-12-09 10:15:36.587404+00 16750 0007-108#玫红 SPMX-20240815311963 \N \N \N 1 \N [{"file_id": "bbf4ba55-4af5-4c10-a2d0-53a02372eab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f66ac77d48644298c35e3d76f1f920d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f66ac77d48644298c35e3d76f1f920d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f66ac77d48644298c35e3d76f1f920d.jpg", "file_size": 18082, "is_delete": false, "file_type": 1, "original_file_name": "0007-108#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f66ac77d48644298c35e3d76f1f920d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f66ac77d48644298c35e3d76f1f920d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f66ac77d48644298c35e3d76f1f920d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f66ac77d48644298c35e3d76f1f920d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f66ac77d48644298c35e3d76f1f920d.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2vqgsiYC2L9Ts9a-yks7zQQgp0=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.590255+00 2025-12-09 10:15:36.590261+00 16751 1231-11FWE#小童6码 SPMX-20240815311969 \N \N \N 1 \N [{"file_id": "f379983d-9a88-4b00-bff5-c81e37564a49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a36315fb4dd44818015462813f0c09b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a36315fb4dd44818015462813f0c09b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a36315fb4dd44818015462813f0c09b.jpg", "file_size": 23309, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a36315fb4dd44818015462813f0c09b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a36315fb4dd44818015462813f0c09b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a36315fb4dd44818015462813f0c09b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a36315fb4dd44818015462813f0c09b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a36315fb4dd44818015462813f0c09b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gr5XqyNJO2KPBQx1lDnfyaGxprQ=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.593158+00 2025-12-09 10:15:36.593164+00 16752 HX002FWE#浅粉VS-D3 SPMX-20240815311964 \N \N \N 1 \N [{"file_id": "13adb6d4-aa7c-4a8d-813f-6bdb74ca317f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a9551e77c64a5f93f605a44dc96737.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a9551e77c64a5f93f605a44dc96737.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a9551e77c64a5f93f605a44dc96737.jpg", "file_size": 6411, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#浅粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a9551e77c64a5f93f605a44dc96737.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a9551e77c64a5f93f605a44dc96737.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a9551e77c64a5f93f605a44dc96737.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a9551e77c64a5f93f605a44dc96737.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a9551e77c64a5f93f605a44dc96737.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RyA1br24UdyaoJqUwHWfQkEDx5E=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.596026+00 2025-12-09 10:15:36.596031+00 16753 2303#蓝 SPMX-20240815311960 \N \N \N 1 \N [{"file_id": "0da44506-87eb-4fe5-b15c-b6257196435e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c9cca795b284239ae7b47faefde1735.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c9cca795b284239ae7b47faefde1735.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c9cca795b284239ae7b47faefde1735.jpg", "file_size": 12129, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cca795b284239ae7b47faefde1735.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cca795b284239ae7b47faefde1735.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cca795b284239ae7b47faefde1735.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c9cca795b284239ae7b47faefde1735.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c9cca795b284239ae7b47faefde1735.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_PxbBuqMss4GXMI67xonauDDe0=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.598885+00 2025-12-09 10:15:36.598892+00 16754 85033#4码+8码 SPMX-20240815311965 \N \N \N 1 \N [{"file_id": "e77ff1ef-bddb-41c8-94df-9cfc9c39e91a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc2dcd5c1ef245adb1633928ffa7e3ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc2dcd5c1ef245adb1633928ffa7e3ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc2dcd5c1ef245adb1633928ffa7e3ad.jpg", "file_size": 18137, "is_delete": false, "file_type": 1, "original_file_name": "85033#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2dcd5c1ef245adb1633928ffa7e3ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2dcd5c1ef245adb1633928ffa7e3ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2dcd5c1ef245adb1633928ffa7e3ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc2dcd5c1ef245adb1633928ffa7e3ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc2dcd5c1ef245adb1633928ffa7e3ad.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oi0jAC6PTuceIfa280kghM8pFa0=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.601697+00 2025-12-09 10:15:36.601711+00 16755 85033#6码 SPMX-20240815311977 \N \N \N 1 \N [{"file_id": "865a2e78-60ab-4a8b-87a7-daee368ff7f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dee283176d6a4e78b24ec4a79f00c00b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dee283176d6a4e78b24ec4a79f00c00b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dee283176d6a4e78b24ec4a79f00c00b.jpg", "file_size": 18232, "is_delete": false, "file_type": 1, "original_file_name": "85033#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee283176d6a4e78b24ec4a79f00c00b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee283176d6a4e78b24ec4a79f00c00b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee283176d6a4e78b24ec4a79f00c00b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dee283176d6a4e78b24ec4a79f00c00b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dee283176d6a4e78b24ec4a79f00c00b.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-TYsUaw9Eip1xP2933sQ90-jAI=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.604586+00 2025-12-09 10:15:36.604592+00 16756 1231-11FWE#小童8码+4码 SPMX-20240815311980 \N \N \N 1 \N [{"file_id": "7ea2601a-eb87-4f08-83f4-524b36170514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49e36ae72bd6453bb2e58ae9f44aa1b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49e36ae72bd6453bb2e58ae9f44aa1b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49e36ae72bd6453bb2e58ae9f44aa1b4.jpg", "file_size": 23388, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e36ae72bd6453bb2e58ae9f44aa1b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e36ae72bd6453bb2e58ae9f44aa1b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e36ae72bd6453bb2e58ae9f44aa1b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49e36ae72bd6453bb2e58ae9f44aa1b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49e36ae72bd6453bb2e58ae9f44aa1b4.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G6LIbo9zmCHDpxoGAlZ-uTmCMQo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.607456+00 2025-12-09 10:15:36.607462+00 16757 DL31545#批布蓝绿 SPMX-20240815311986 \N \N \N 1 \N [{"file_id": "681d7f30-fe14-47d8-a43a-85072ebe66d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecc20f4b66864cb5bb0115da105207cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecc20f4b66864cb5bb0115da105207cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecc20f4b66864cb5bb0115da105207cf.jpg", "file_size": 24385, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc20f4b66864cb5bb0115da105207cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc20f4b66864cb5bb0115da105207cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc20f4b66864cb5bb0115da105207cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecc20f4b66864cb5bb0115da105207cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecc20f4b66864cb5bb0115da105207cf.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOLuf8OQX0qz6WJ95T-JV-HNWDo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.610308+00 2025-12-09 10:15:36.610314+00 16758 0007-108#白色 SPMX-20240815311972 \N \N \N 1 \N [{"file_id": "886864c7-c926-4444-93ba-9f4dfbad7298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25070e629fd24255868408afb6d619dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25070e629fd24255868408afb6d619dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25070e629fd24255868408afb6d619dd.jpg", "file_size": 18078, "is_delete": false, "file_type": 1, "original_file_name": "0007-108#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25070e629fd24255868408afb6d619dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25070e629fd24255868408afb6d619dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25070e629fd24255868408afb6d619dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25070e629fd24255868408afb6d619dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25070e629fd24255868408afb6d619dd.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KF2KTWaxuRLZ80HBlG1O1SorxqE=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.613208+00 2025-12-09 10:15:36.613213+00 16759 LJH1869#紫色 SPMX-20240815311971 \N \N \N 1 \N [{"file_id": "92b308d2-d864-46a9-b736-082280cc1c77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8edd051e9bc44920838413bd2102bf72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8edd051e9bc44920838413bd2102bf72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8edd051e9bc44920838413bd2102bf72.jpg", "file_size": 48189, "is_delete": false, "file_type": 1, "original_file_name": "LJH1869#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edd051e9bc44920838413bd2102bf72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edd051e9bc44920838413bd2102bf72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edd051e9bc44920838413bd2102bf72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8edd051e9bc44920838413bd2102bf72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8edd051e9bc44920838413bd2102bf72.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:me_B_-6UMoh_O3ETAmZpG2jAw7Q=", "createTime": "2024-08-15 15:01:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.616046+00 2025-12-09 10:15:36.616052+00 16760 HX002FWE#浅绿色VS-D3 SPMX-20240815311975 \N \N \N 1 \N [{"file_id": "62dc1c99-3aa9-4a8c-9e43-3b4505d3a642", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d41ac7d91d8447492e339a35b813349.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d41ac7d91d8447492e339a35b813349.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d41ac7d91d8447492e339a35b813349.jpg", "file_size": 8793, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#浅绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d41ac7d91d8447492e339a35b813349.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d41ac7d91d8447492e339a35b813349.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d41ac7d91d8447492e339a35b813349.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d41ac7d91d8447492e339a35b813349.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d41ac7d91d8447492e339a35b813349.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6sNfAlPMRLs_G8gNPhYOf1zRPQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.618904+00 2025-12-09 10:15:36.61891+00 16761 JTSS750FW#VS-D3 SPMX-20240815311979 \N \N \N 1 \N [{"file_id": "12eab62c-f5d1-4315-bf4d-6e07e6cfc7e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c329a57d9d24734a4bd3ca67da50c84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c329a57d9d24734a4bd3ca67da50c84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c329a57d9d24734a4bd3ca67da50c84.jpg", "file_size": 15771, "is_delete": false, "file_type": 1, "original_file_name": "JTSS750FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c329a57d9d24734a4bd3ca67da50c84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c329a57d9d24734a4bd3ca67da50c84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c329a57d9d24734a4bd3ca67da50c84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c329a57d9d24734a4bd3ca67da50c84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c329a57d9d24734a4bd3ca67da50c84.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bH6hK06-I838pcpJy4JEhuYAhUc=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.621756+00 2025-12-09 10:15:36.621762+00 16762 0007-108#绿色 SPMX-20240815311983 \N \N \N 1 \N [{"file_id": "0616150d-8664-4319-b9b6-6205ac5887cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5de955e67744747998d98addb9d8575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5de955e67744747998d98addb9d8575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5de955e67744747998d98addb9d8575.jpg", "file_size": 16158, "is_delete": false, "file_type": 1, "original_file_name": "0007-108#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5de955e67744747998d98addb9d8575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5de955e67744747998d98addb9d8575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5de955e67744747998d98addb9d8575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5de955e67744747998d98addb9d8575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5de955e67744747998d98addb9d8575.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOU514B2lbDFhOMpq6o8WVO86ec=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.624684+00 2025-12-09 10:15:36.62469+00 16763 LJH1869#绿色 SPMX-20240815311981 \N \N \N 1 \N [{"file_id": "a97a6702-7aa5-4f9f-b75f-cac2729bcaaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg", "file_size": 47946, "is_delete": false, "file_type": 1, "original_file_name": "LJH1869#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d40a853a0dd143e2ae0e5d72dfdaa5e7.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fPY2PaiWJ2PeHymZdH9-VO4p5lU=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.627571+00 2025-12-09 10:15:36.627577+00 16764 CCH0005-3#黑色 SPMX-20240815311982 \N \N \N 1 \N [{"file_id": "a8d86c8d-389f-4439-b1aa-ffe052da4ffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8db6a943e56847738ff229ed21b05ce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8db6a943e56847738ff229ed21b05ce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8db6a943e56847738ff229ed21b05ce1.jpg", "file_size": 22064, "is_delete": false, "file_type": 1, "original_file_name": "CCH0005-3#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db6a943e56847738ff229ed21b05ce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db6a943e56847738ff229ed21b05ce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8db6a943e56847738ff229ed21b05ce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8db6a943e56847738ff229ed21b05ce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8db6a943e56847738ff229ed21b05ce1.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Ru-cwG94y5H06zpiy0zF7SW7lo=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.630409+00 2025-12-09 10:15:36.630415+00 16765 2303#蓝色背心裙L SPMX-20240815311985 \N \N \N 1 \N [{"file_id": "478125d3-820a-4d80-b51e-38615d6796fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce5e5d7c8b9942bfac86a4c821a10d79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce5e5d7c8b9942bfac86a4c821a10d79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce5e5d7c8b9942bfac86a4c821a10d79.jpg", "file_size": 17494, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝色背心裙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5e5d7c8b9942bfac86a4c821a10d79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5e5d7c8b9942bfac86a4c821a10d79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5e5d7c8b9942bfac86a4c821a10d79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce5e5d7c8b9942bfac86a4c821a10d79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce5e5d7c8b9942bfac86a4c821a10d79.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UyV2Aj--OHshDSalcpXhyu63xQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.633263+00 2025-12-09 10:15:36.633268+00 16766 DL31545#批布玫红 SPMX-20240815311974 \N \N \N 1 \N [{"file_id": "0fdc85e7-7db3-48ff-aa02-e2b7bd55c9dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4748683eb43e4fe1883a79c743c72fce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4748683eb43e4fe1883a79c743c72fce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4748683eb43e4fe1883a79c743c72fce.jpg", "file_size": 23861, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4748683eb43e4fe1883a79c743c72fce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4748683eb43e4fe1883a79c743c72fce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4748683eb43e4fe1883a79c743c72fce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4748683eb43e4fe1883a79c743c72fce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4748683eb43e4fe1883a79c743c72fce.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RX7n523aJQ59X2u7GvCNGf32fqQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.636157+00 2025-12-09 10:15:36.636164+00 16767 FX0003-143#RC23 SPMX-20240815311978 \N \N \N 1 \N [{"file_id": "47499ba1-0dc8-41db-9d11-7f8638fd6b9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e96ada38d4240ba853b1975ea1ac01e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e96ada38d4240ba853b1975ea1ac01e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e96ada38d4240ba853b1975ea1ac01e.jpg", "file_size": 33373, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-143#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e96ada38d4240ba853b1975ea1ac01e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e96ada38d4240ba853b1975ea1ac01e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e96ada38d4240ba853b1975ea1ac01e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e96ada38d4240ba853b1975ea1ac01e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e96ada38d4240ba853b1975ea1ac01e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQyqyuwZIZFjjK3_of_7uw9Wr7w=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.639079+00 2025-12-09 10:15:36.639085+00 16768 2303#蓝色背心裙2XL SPMX-20240815311973 \N \N \N 1 \N [{"file_id": "3f85ab9c-66de-4902-8a2c-9b30b10f0e4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e742cdeef8494bfa8ab291a8e0f39587.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e742cdeef8494bfa8ab291a8e0f39587.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e742cdeef8494bfa8ab291a8e0f39587.jpg", "file_size": 17789, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝色背心裙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e742cdeef8494bfa8ab291a8e0f39587.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e742cdeef8494bfa8ab291a8e0f39587.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e742cdeef8494bfa8ab291a8e0f39587.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e742cdeef8494bfa8ab291a8e0f39587.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e742cdeef8494bfa8ab291a8e0f39587.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aQNu-AO6LHrueZ1X4IlKqHUFAQI=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.642036+00 2025-12-09 10:15:36.642042+00 16769 LZ135FWF#2号色短袖 SPMX-20240815311976 \N \N \N 1 \N [{"file_id": "049c3f6c-e0ff-464f-aef6-ea6f3e2dd840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0268eb656e0499e8f0ce8924b14302f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0268eb656e0499e8f0ce8924b14302f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0268eb656e0499e8f0ce8924b14302f.jpg", "file_size": 17584, "is_delete": false, "file_type": 1, "original_file_name": "LZ135FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0268eb656e0499e8f0ce8924b14302f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0268eb656e0499e8f0ce8924b14302f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0268eb656e0499e8f0ce8924b14302f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0268eb656e0499e8f0ce8924b14302f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0268eb656e0499e8f0ce8924b14302f.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4gedq3Gi3heCLxwQEDYwl2SuT0=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.644974+00 2025-12-09 10:15:36.64498+00 16770 HX002FWE#西瓜红VS-D3 SPMX-20240815311984 \N \N \N 1 \N [{"file_id": "e2791056-ae3c-468a-ac02-5b94a821689e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8804589151484f899b74d5545227b8b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8804589151484f899b74d5545227b8b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8804589151484f899b74d5545227b8b6.jpg", "file_size": 7584, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#西瓜红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8804589151484f899b74d5545227b8b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8804589151484f899b74d5545227b8b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8804589151484f899b74d5545227b8b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8804589151484f899b74d5545227b8b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8804589151484f899b74d5545227b8b6.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y64mxz4GplPTRG9f53RUju-fbZw=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.647902+00 2025-12-09 10:15:36.647908+00 16771 HX002FWE#黄色VS-D3 SPMX-20240815311994 \N \N \N 1 \N [{"file_id": "b6832a5f-23e9-46d5-b994-0bb4ce326b67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bfdaa854c3c4dbba00e3aa15b85e456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bfdaa854c3c4dbba00e3aa15b85e456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bfdaa854c3c4dbba00e3aa15b85e456.jpg", "file_size": 6999, "is_delete": false, "file_type": 1, "original_file_name": "HX002FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdaa854c3c4dbba00e3aa15b85e456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdaa854c3c4dbba00e3aa15b85e456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdaa854c3c4dbba00e3aa15b85e456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bfdaa854c3c4dbba00e3aa15b85e456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bfdaa854c3c4dbba00e3aa15b85e456.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jf8AZk82PZQqhgbSsdR_D6AyuDQ=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.650785+00 2025-12-09 10:15:36.650792+00 16772 0007-108#黑色 SPMX-20240815311995 \N \N \N 1 \N [{"file_id": "55ae71a9-2c63-4476-8b44-c01535d5ab9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad594f3f95cf4dfd967e1b62bfc39227.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad594f3f95cf4dfd967e1b62bfc39227.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad594f3f95cf4dfd967e1b62bfc39227.jpg", "file_size": 19630, "is_delete": false, "file_type": 1, "original_file_name": "0007-108#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad594f3f95cf4dfd967e1b62bfc39227.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad594f3f95cf4dfd967e1b62bfc39227.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad594f3f95cf4dfd967e1b62bfc39227.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad594f3f95cf4dfd967e1b62bfc39227.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad594f3f95cf4dfd967e1b62bfc39227.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CJK0zUBINB1ZFneAQQCgd_pSvs0=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.653672+00 2025-12-09 10:15:36.653678+00 16773 DL31545#袖子21#枣红 SPMX-20240815311996 \N \N \N 1 \N [{"file_id": "fbf77b7e-7fc5-41ba-9d83-00b55341c75b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef5f84ccfa014edcac5a45b857957d37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef5f84ccfa014edcac5a45b857957d37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef5f84ccfa014edcac5a45b857957d37.jpg", "file_size": 14593, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子21#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f84ccfa014edcac5a45b857957d37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f84ccfa014edcac5a45b857957d37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5f84ccfa014edcac5a45b857957d37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef5f84ccfa014edcac5a45b857957d37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef5f84ccfa014edcac5a45b857957d37.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMY9nugAncK9FnzvwEKLr4z892Y=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.656454+00 2025-12-09 10:15:36.656459+00 16774 85033#乱花 SPMX-20240815311987 \N \N \N 1 \N [{"file_id": "2fbe5f58-260c-4022-8d0a-819e4a3bec69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c3cac1e2dd04064ae5061e65b51419e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c3cac1e2dd04064ae5061e65b51419e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c3cac1e2dd04064ae5061e65b51419e.jpg", "file_size": 10393, "is_delete": false, "file_type": 1, "original_file_name": "85033#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3cac1e2dd04064ae5061e65b51419e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3cac1e2dd04064ae5061e65b51419e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3cac1e2dd04064ae5061e65b51419e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c3cac1e2dd04064ae5061e65b51419e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c3cac1e2dd04064ae5061e65b51419e.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlmaZnWDSdlrToJsTJWhTheEtKQ=", "createTime": "2024-08-15 15:01:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.659391+00 2025-12-09 10:15:36.659397+00 16775 2303#蓝色背心裙M SPMX-20240815311997 \N \N \N 1 \N [{"file_id": "c17c9a08-2875-4dd6-99cf-d97ff9d8834e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef780b276fde478e9fd8fe6292275c54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef780b276fde478e9fd8fe6292275c54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef780b276fde478e9fd8fe6292275c54.jpg", "file_size": 16853, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝色背心裙M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef780b276fde478e9fd8fe6292275c54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef780b276fde478e9fd8fe6292275c54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef780b276fde478e9fd8fe6292275c54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef780b276fde478e9fd8fe6292275c54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef780b276fde478e9fd8fe6292275c54.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yM8blTmn13Vk_4ZBrJsTblWdPqE=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.662369+00 2025-12-09 10:15:36.662376+00 16776 FX0003-144#RC23 SPMX-20240815311989 \N \N \N 1 \N [{"file_id": "d8ae72df-abad-467a-9769-050e217d72d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b33d2ef8a7004a4c85a407ed18353994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b33d2ef8a7004a4c85a407ed18353994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b33d2ef8a7004a4c85a407ed18353994.jpg", "file_size": 56317, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-144#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b33d2ef8a7004a4c85a407ed18353994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b33d2ef8a7004a4c85a407ed18353994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b33d2ef8a7004a4c85a407ed18353994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b33d2ef8a7004a4c85a407ed18353994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b33d2ef8a7004a4c85a407ed18353994.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktebJ4_xK0Gtp_K9WRwOylEgG8g=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.665276+00 2025-12-09 10:15:36.665282+00 16777 CCH001FWE#大红底VS-D3 SPMX-20240815311993 \N \N \N 1 \N [{"file_id": "5db9e9b1-9e14-443a-a153-b1b888d8647f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41167c4022b74334a6bb08d4d6ebfef2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41167c4022b74334a6bb08d4d6ebfef2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41167c4022b74334a6bb08d4d6ebfef2.jpg", "file_size": 15596, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#大红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41167c4022b74334a6bb08d4d6ebfef2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41167c4022b74334a6bb08d4d6ebfef2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41167c4022b74334a6bb08d4d6ebfef2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41167c4022b74334a6bb08d4d6ebfef2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41167c4022b74334a6bb08d4d6ebfef2.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:skR1dem3Eh37eUr11wnqMT8XAaM=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:36.668114+00 2025-12-09 10:15:36.66812+00 16778 1231-11FWE#小童袖领匹布 SPMX-20240815311991 \N \N \N 1 \N [{"file_id": "3f2a86b9-3521-4e20-be94-1861c0ef781f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5094359edbfa494fa1a052585e85f9cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5094359edbfa494fa1a052585e85f9cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5094359edbfa494fa1a052585e85f9cd.jpg", "file_size": 19244, "is_delete": false, "file_type": 1, "original_file_name": "1231-11FWE#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5094359edbfa494fa1a052585e85f9cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5094359edbfa494fa1a052585e85f9cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5094359edbfa494fa1a052585e85f9cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5094359edbfa494fa1a052585e85f9cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5094359edbfa494fa1a052585e85f9cd.jpg?e=1765361735&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fIjRVWhhsqiZcTtcJBwRpplCCVo=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.436618+00 2025-12-09 10:15:37.436629+00 16779 FX0003-144#匹布 SPMX-20240815312000 \N \N \N 1 \N [{"file_id": "bef67a90-d8a0-4aed-9148-140046e6e051", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4242b50b60364dabaad2cc91f307975c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4242b50b60364dabaad2cc91f307975c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4242b50b60364dabaad2cc91f307975c.jpg", "file_size": 46933, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-144#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4242b50b60364dabaad2cc91f307975c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4242b50b60364dabaad2cc91f307975c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4242b50b60364dabaad2cc91f307975c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4242b50b60364dabaad2cc91f307975c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4242b50b60364dabaad2cc91f307975c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDdTdoGDcDs5D4xBLmCZGXAeISQ=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.440559+00 2025-12-09 10:15:37.440565+00 16780 JTSS751FW#VS-D3 SPMX-20240815311990 \N \N \N 1 \N [{"file_id": "f0257d0d-ad92-42d8-9849-ed7701c6c44d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe0a9462ab874b7ebdb9f1674c49ea7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe0a9462ab874b7ebdb9f1674c49ea7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe0a9462ab874b7ebdb9f1674c49ea7d.jpg", "file_size": 11347, "is_delete": false, "file_type": 1, "original_file_name": "JTSS751FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe0a9462ab874b7ebdb9f1674c49ea7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe0a9462ab874b7ebdb9f1674c49ea7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe0a9462ab874b7ebdb9f1674c49ea7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe0a9462ab874b7ebdb9f1674c49ea7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe0a9462ab874b7ebdb9f1674c49ea7d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kp8lpSd8rnrv9QfPmZg65Egfl2s=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.443472+00 2025-12-09 10:15:37.443478+00 16781 1231-12FWE#中童12码+10码 SPMX-20240815311999 \N \N \N 1 \N [{"file_id": "394108ed-de11-4cf8-8b7f-11c9bc707f3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64d75d0f1f154e5b9929277e76be7cf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64d75d0f1f154e5b9929277e76be7cf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64d75d0f1f154e5b9929277e76be7cf8.jpg", "file_size": 21533, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d75d0f1f154e5b9929277e76be7cf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d75d0f1f154e5b9929277e76be7cf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64d75d0f1f154e5b9929277e76be7cf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64d75d0f1f154e5b9929277e76be7cf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64d75d0f1f154e5b9929277e76be7cf8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbVS9lT7HZ6OpdbGRSAKBscoqAo=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.446562+00 2025-12-09 10:15:37.446568+00 16782 JTSS752FW#VS-D3 SPMX-20240815312001 \N \N \N 1 \N [{"file_id": "d83b5fae-29bc-4c39-8826-b013b913ae70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb979762a6984077a1e8a09700c737ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb979762a6984077a1e8a09700c737ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb979762a6984077a1e8a09700c737ca.jpg", "file_size": 9118, "is_delete": false, "file_type": 1, "original_file_name": "JTSS752FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb979762a6984077a1e8a09700c737ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb979762a6984077a1e8a09700c737ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb979762a6984077a1e8a09700c737ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb979762a6984077a1e8a09700c737ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb979762a6984077a1e8a09700c737ca.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6bY-udaqO4AdRuQRc_Rg__XXGyk=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.449461+00 2025-12-09 10:15:37.449466+00 16783 LZ135FWF#3号色短袖 SPMX-20240815311988 \N \N \N 1 \N [{"file_id": "83b6bad5-28cc-45a0-8e66-f0dbbf569bad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97bf01e7da084390855df0e7289aed91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97bf01e7da084390855df0e7289aed91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97bf01e7da084390855df0e7289aed91.jpg", "file_size": 17265, "is_delete": false, "file_type": 1, "original_file_name": "LZ135FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97bf01e7da084390855df0e7289aed91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97bf01e7da084390855df0e7289aed91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97bf01e7da084390855df0e7289aed91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97bf01e7da084390855df0e7289aed91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97bf01e7da084390855df0e7289aed91.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vpLSSOvEuD6b9cO42F9Htoo4XZs=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.452249+00 2025-12-09 10:15:37.452255+00 16784 LJH1869#黄色 SPMX-20240815311992 \N \N \N 1 \N [{"file_id": "ee1aa839-5858-44d8-8fb5-aefb6fb7f695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f80282e567b4b42969e33c960b26459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f80282e567b4b42969e33c960b26459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f80282e567b4b42969e33c960b26459.jpg", "file_size": 49339, "is_delete": false, "file_type": 1, "original_file_name": "LJH1869#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f80282e567b4b42969e33c960b26459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f80282e567b4b42969e33c960b26459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f80282e567b4b42969e33c960b26459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f80282e567b4b42969e33c960b26459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f80282e567b4b42969e33c960b26459.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9xjlPsS1Y3ivqBgcypRB6mqBKg=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.455004+00 2025-12-09 10:15:37.455009+00 16785 LZ135FWF#4号色短袖 SPMX-20240815311998 \N \N \N 1 \N [{"file_id": "37bc90e4-a68e-4046-8884-958f9f7e1dd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e94704f5cfe47f9a3080e53d8e5c24d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e94704f5cfe47f9a3080e53d8e5c24d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e94704f5cfe47f9a3080e53d8e5c24d.jpg", "file_size": 17195, "is_delete": false, "file_type": 1, "original_file_name": "LZ135FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e94704f5cfe47f9a3080e53d8e5c24d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e94704f5cfe47f9a3080e53d8e5c24d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e94704f5cfe47f9a3080e53d8e5c24d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e94704f5cfe47f9a3080e53d8e5c24d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e94704f5cfe47f9a3080e53d8e5c24d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWL3v-FJ7bPpls2NqbCCJWGZxfA=", "createTime": "2024-08-15 15:01:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.463247+00 2025-12-09 10:15:37.463252+00 16788 LJH1871#浅绿色 SPMX-20240815312003 \N \N \N 1 \N [{"file_id": "e26bed69-e723-4e83-9d11-2ed3cfb13487", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88d8d4b26e8d4c44a638702cbaa7e140.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88d8d4b26e8d4c44a638702cbaa7e140.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88d8d4b26e8d4c44a638702cbaa7e140.jpg", "file_size": 43595, "is_delete": false, "file_type": 1, "original_file_name": "LJH1871#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8d4b26e8d4c44a638702cbaa7e140.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8d4b26e8d4c44a638702cbaa7e140.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d8d4b26e8d4c44a638702cbaa7e140.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88d8d4b26e8d4c44a638702cbaa7e140.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88d8d4b26e8d4c44a638702cbaa7e140.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7R0dsdfXm7QSSblz5uEaCYZKMQ=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.465992+00 2025-12-09 10:15:37.465997+00 16789 2303#蓝色背心裙S SPMX-20240815312005 \N \N \N 1 \N [{"file_id": "38f06652-3c01-47c4-a235-a63b0e1c6233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0f8d387bf334abfbf795d7195378416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0f8d387bf334abfbf795d7195378416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0f8d387bf334abfbf795d7195378416.jpg", "file_size": 16383, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝色背心裙S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f8d387bf334abfbf795d7195378416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f8d387bf334abfbf795d7195378416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f8d387bf334abfbf795d7195378416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0f8d387bf334abfbf795d7195378416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0f8d387bf334abfbf795d7195378416.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YXmw4Y-JdIy6Zo9yhX-JbCUaUw=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.46903+00 2025-12-09 10:15:37.469034+00 16790 DL31545#袖子42#姜黄 SPMX-20240815312006 \N \N \N 1 \N [{"file_id": "102c3f43-b146-48d1-91a4-4fe094793587", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56a9d94c93f4447e828ef88d6c1bda4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56a9d94c93f4447e828ef88d6c1bda4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56a9d94c93f4447e828ef88d6c1bda4c.jpg", "file_size": 14825, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9d94c93f4447e828ef88d6c1bda4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9d94c93f4447e828ef88d6c1bda4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9d94c93f4447e828ef88d6c1bda4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56a9d94c93f4447e828ef88d6c1bda4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56a9d94c93f4447e828ef88d6c1bda4c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBLnBodsETFpWL4HtnRuA17dS_Y=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.472156+00 2025-12-09 10:15:37.472161+00 16791 FX0003-145#RC23 SPMX-20240815312013 \N \N \N 1 \N [{"file_id": "8ccde79a-4f65-482e-b778-b51af289cd12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bee95e3548de4f02af03a1e60fe3340f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bee95e3548de4f02af03a1e60fe3340f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bee95e3548de4f02af03a1e60fe3340f.jpg", "file_size": 85963, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-145#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee95e3548de4f02af03a1e60fe3340f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee95e3548de4f02af03a1e60fe3340f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bee95e3548de4f02af03a1e60fe3340f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bee95e3548de4f02af03a1e60fe3340f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bee95e3548de4f02af03a1e60fe3340f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0TTwDhz2OdQUIb3gVxgbmPhkmto=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.484982+00 2025-12-09 10:15:37.484988+00 16795 CCH001FWE#玫红底VS-D3 SPMX-20240815312007 \N \N \N 1 \N [{"file_id": "8184db91-2e61-403b-b88f-e88920de4d3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c707626ba36645f99d9fa2f7932e858f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c707626ba36645f99d9fa2f7932e858f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c707626ba36645f99d9fa2f7932e858f.jpg", "file_size": 15294, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#玫红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c707626ba36645f99d9fa2f7932e858f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c707626ba36645f99d9fa2f7932e858f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c707626ba36645f99d9fa2f7932e858f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c707626ba36645f99d9fa2f7932e858f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c707626ba36645f99d9fa2f7932e858f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lXNRAAnDKiwoKpBaMQMeUfoqlmQ=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.488124+00 2025-12-09 10:15:37.488129+00 16796 LJH1871#白色 SPMX-20240815312009 \N \N \N 1 \N [{"file_id": "bd4dd37d-f9a6-45c5-b645-bb100765a172", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14e1664467b4208b6679fa9f2e56cc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14e1664467b4208b6679fa9f2e56cc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14e1664467b4208b6679fa9f2e56cc4.jpg", "file_size": 39717, "is_delete": false, "file_type": 1, "original_file_name": "LJH1871#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14e1664467b4208b6679fa9f2e56cc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14e1664467b4208b6679fa9f2e56cc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14e1664467b4208b6679fa9f2e56cc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14e1664467b4208b6679fa9f2e56cc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14e1664467b4208b6679fa9f2e56cc4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:803fOEVQn-4HTKU-ekBuYc8p7Bs=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.491199+00 2025-12-09 10:15:37.491206+00 16797 HX003#VS-D3 SPMX-20240815312015 \N \N \N 1 \N [{"file_id": "82676e23-6131-436e-8a85-dd8030d398f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08d74500dc164e82bbb1215e9277024d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08d74500dc164e82bbb1215e9277024d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08d74500dc164e82bbb1215e9277024d.jpg", "file_size": 28396, "is_delete": false, "file_type": 1, "original_file_name": "HX003#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d74500dc164e82bbb1215e9277024d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d74500dc164e82bbb1215e9277024d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d74500dc164e82bbb1215e9277024d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08d74500dc164e82bbb1215e9277024d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08d74500dc164e82bbb1215e9277024d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0jMrbJluf1GysyDL9g5vOkpYSSw=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.493908+00 2025-12-09 10:15:37.493915+00 16798 0007-109#咖色 SPMX-20240815312010 \N \N \N 1 \N [{"file_id": "856c39f1-3cc5-4832-a019-457203439a8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895f6d4bbc98483da28cd4706cce2ead.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895f6d4bbc98483da28cd4706cce2ead.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895f6d4bbc98483da28cd4706cce2ead.jpg", "file_size": 18800, "is_delete": false, "file_type": 1, "original_file_name": "0007-109#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f6d4bbc98483da28cd4706cce2ead.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f6d4bbc98483da28cd4706cce2ead.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f6d4bbc98483da28cd4706cce2ead.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895f6d4bbc98483da28cd4706cce2ead.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895f6d4bbc98483da28cd4706cce2ead.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZ3tKhUBLnu97dpjpof7BRl_cHY=", "createTime": "2024-08-15 15:01:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.499362+00 2025-12-09 10:15:37.49937+00 16800 2303#蓝色背心裙XL SPMX-20240815312016 \N \N \N 1 \N [{"file_id": "ef8b4e3a-d69f-4772-b7cd-1d94bbb94867", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83615f5832fb489facbcca310915435f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83615f5832fb489facbcca310915435f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83615f5832fb489facbcca310915435f.jpg", "file_size": 17429, "is_delete": false, "file_type": 1, "original_file_name": "2303#蓝色背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83615f5832fb489facbcca310915435f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83615f5832fb489facbcca310915435f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83615f5832fb489facbcca310915435f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83615f5832fb489facbcca310915435f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83615f5832fb489facbcca310915435f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjhysdipwSarcFB-r8qHY5lLTM8=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.502082+00 2025-12-09 10:15:37.502089+00 16801 LJH1871#绿色 SPMX-20240815312021 \N \N \N 1 \N [{"file_id": "efc8741b-bac9-4209-9928-503a13a626a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cb4b5109ae34c93b9ea300e760b5f73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cb4b5109ae34c93b9ea300e760b5f73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cb4b5109ae34c93b9ea300e760b5f73.jpg", "file_size": 43246, "is_delete": false, "file_type": 1, "original_file_name": "LJH1871#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb4b5109ae34c93b9ea300e760b5f73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb4b5109ae34c93b9ea300e760b5f73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb4b5109ae34c93b9ea300e760b5f73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cb4b5109ae34c93b9ea300e760b5f73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cb4b5109ae34c93b9ea300e760b5f73.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jzr8zVHHiEXCPzxIXYVj4onU0U0=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.504875+00 2025-12-09 10:15:37.504882+00 16802 0007-109#墨绿色 SPMX-20240815312026 \N \N \N 1 \N [{"file_id": "661fa59d-f0c7-40f8-8135-b5e3639799ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6118e541c7704bc6a59a4782c208bfbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6118e541c7704bc6a59a4782c208bfbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6118e541c7704bc6a59a4782c208bfbe.jpg", "file_size": 19916, "is_delete": false, "file_type": 1, "original_file_name": "0007-109#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6118e541c7704bc6a59a4782c208bfbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6118e541c7704bc6a59a4782c208bfbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6118e541c7704bc6a59a4782c208bfbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6118e541c7704bc6a59a4782c208bfbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6118e541c7704bc6a59a4782c208bfbe.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x4FHApEB_f4h3zp69jovX0NDiNw=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.50774+00 2025-12-09 10:15:37.507748+00 16803 DL31545#袖子6#蓝绿 SPMX-20240815312018 \N \N \N 1 \N [{"file_id": "5332719e-05ad-4143-a7e1-e959c2c5285d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08a7e64c19d0444191ea9ed2802fd89c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08a7e64c19d0444191ea9ed2802fd89c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08a7e64c19d0444191ea9ed2802fd89c.jpg", "file_size": 14600, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a7e64c19d0444191ea9ed2802fd89c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a7e64c19d0444191ea9ed2802fd89c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08a7e64c19d0444191ea9ed2802fd89c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08a7e64c19d0444191ea9ed2802fd89c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08a7e64c19d0444191ea9ed2802fd89c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dhH86VTxfBqWL99HqkL3kV1wjrI=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.51989+00 2025-12-09 10:15:37.519896+00 16807 HX003#黑白色 SPMX-20240815312024 \N \N \N 1 \N [{"file_id": "34f34248-3211-49f1-963d-6dc0f82841f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6647d96c250948beb2ac86cf6f12f893.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6647d96c250948beb2ac86cf6f12f893.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6647d96c250948beb2ac86cf6f12f893.jpg", "file_size": 6172, "is_delete": false, "file_type": 1, "original_file_name": "HX003#黑白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6647d96c250948beb2ac86cf6f12f893.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6647d96c250948beb2ac86cf6f12f893.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6647d96c250948beb2ac86cf6f12f893.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6647d96c250948beb2ac86cf6f12f893.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6647d96c250948beb2ac86cf6f12f893.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS2AgXWH1IOwlZOPCG3GJR2A_io=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.52321+00 2025-12-09 10:15:37.52322+00 16808 1231-12FWE#中童袖领匹布 SPMX-20240815312017 \N \N \N 1 \N [{"file_id": "b2d0d1f0-aae7-4638-a8a5-a269ef8b8312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4363fa5ac894c19b066dd0ecd29cd02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4363fa5ac894c19b066dd0ecd29cd02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4363fa5ac894c19b066dd0ecd29cd02.jpg", "file_size": 22992, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4363fa5ac894c19b066dd0ecd29cd02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4363fa5ac894c19b066dd0ecd29cd02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4363fa5ac894c19b066dd0ecd29cd02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4363fa5ac894c19b066dd0ecd29cd02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4363fa5ac894c19b066dd0ecd29cd02.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHwy8sRtFxJJ7klO9YAsHKLIvwk=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.52642+00 2025-12-09 10:15:37.526427+00 16809 CCH001FWE#白底VS-D3 SPMX-20240815312019 \N \N \N 1 \N [{"file_id": "c46d5d0c-02e6-4e9a-ba48-4ceb46598e76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b93ca640632544ba82569c400c478378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b93ca640632544ba82569c400c478378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b93ca640632544ba82569c400c478378.jpg", "file_size": 17882, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93ca640632544ba82569c400c478378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93ca640632544ba82569c400c478378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b93ca640632544ba82569c400c478378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b93ca640632544ba82569c400c478378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b93ca640632544ba82569c400c478378.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NoV2TSONDF7Va63ZG7ECniCAXR8=", "createTime": "2024-08-15 15:01:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.529432+00 2025-12-09 10:15:37.529438+00 16810 FX0003-146#RC23 SPMX-20240815312025 \N \N \N 1 \N [{"file_id": "09287bde-68c0-496b-a7eb-ff138f420ace", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7314c3ae0ac444508c13201c2cc0b841.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7314c3ae0ac444508c13201c2cc0b841.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7314c3ae0ac444508c13201c2cc0b841.jpg", "file_size": 57372, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-146#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314c3ae0ac444508c13201c2cc0b841.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314c3ae0ac444508c13201c2cc0b841.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314c3ae0ac444508c13201c2cc0b841.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7314c3ae0ac444508c13201c2cc0b841.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7314c3ae0ac444508c13201c2cc0b841.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NbDF0tMCfS1nCLwaRLHzRmLeE7k=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.532456+00 2025-12-09 10:15:37.532463+00 16811 LZ1360#2号色 SPMX-20240815312034 \N \N \N 1 \N [{"file_id": "68e57779-3224-4ee2-b566-8a37208ef78d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c308386e6e0407caf15380595599a03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c308386e6e0407caf15380595599a03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c308386e6e0407caf15380595599a03.jpg", "file_size": 15523, "is_delete": false, "file_type": 1, "original_file_name": "LZ1360#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c308386e6e0407caf15380595599a03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c308386e6e0407caf15380595599a03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c308386e6e0407caf15380595599a03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c308386e6e0407caf15380595599a03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c308386e6e0407caf15380595599a03.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YV8Lnp8RMVaDCfjlR9_KkrSL9Fc=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.535681+00 2025-12-09 10:15:37.535686+00 16812 85034#6码 SPMX-20240815312035 \N \N \N 1 \N [{"file_id": "786c5bd5-1b57-44b7-a796-83dfe46f5645", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5022685901a24082b86c0c8e21756cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5022685901a24082b86c0c8e21756cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5022685901a24082b86c0c8e21756cc6.jpg", "file_size": 18491, "is_delete": false, "file_type": 1, "original_file_name": "85034#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5022685901a24082b86c0c8e21756cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5022685901a24082b86c0c8e21756cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5022685901a24082b86c0c8e21756cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5022685901a24082b86c0c8e21756cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5022685901a24082b86c0c8e21756cc6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLZ0Ascd4oB8kRtC2dKp_G-czmg=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.538842+00 2025-12-09 10:15:37.538849+00 16813 DL31545#袖子姜黄 SPMX-20240815312028 \N \N \N 1 \N [{"file_id": "de01bc5b-1fba-4b96-87aa-3404cc50db32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adee7621b3c44664a54eaf767a6cb44e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adee7621b3c44664a54eaf767a6cb44e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adee7621b3c44664a54eaf767a6cb44e.jpg", "file_size": 14484, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adee7621b3c44664a54eaf767a6cb44e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adee7621b3c44664a54eaf767a6cb44e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adee7621b3c44664a54eaf767a6cb44e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adee7621b3c44664a54eaf767a6cb44e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adee7621b3c44664a54eaf767a6cb44e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvurmBzOV0ILbTymcsbFnB-h3BA=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.542463+00 2025-12-09 10:15:37.542469+00 16814 1231-12FWE#小童6码 SPMX-20240815312030 \N \N \N 1 \N [{"file_id": "2f464960-90df-48cb-84d3-f4b07a464f3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d307d08603bb4adcaf2666f9e5477e9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d307d08603bb4adcaf2666f9e5477e9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d307d08603bb4adcaf2666f9e5477e9d.jpg", "file_size": 23399, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d307d08603bb4adcaf2666f9e5477e9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d307d08603bb4adcaf2666f9e5477e9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d307d08603bb4adcaf2666f9e5477e9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d307d08603bb4adcaf2666f9e5477e9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d307d08603bb4adcaf2666f9e5477e9d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WFUuCf9Coqo-oFUJDfmC7HwAdho=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.545665+00 2025-12-09 10:15:37.545671+00 16815 2303#青色背心裙2XL SPMX-20240815312029 \N \N \N 1 \N [{"file_id": "925e326f-25e8-4258-aee5-ff4315aa4eba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fc023813994c97936a2ee0e53d0df1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fc023813994c97936a2ee0e53d0df1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fc023813994c97936a2ee0e53d0df1.jpg", "file_size": 17519, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc023813994c97936a2ee0e53d0df1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc023813994c97936a2ee0e53d0df1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fc023813994c97936a2ee0e53d0df1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fc023813994c97936a2ee0e53d0df1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fc023813994c97936a2ee0e53d0df1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2u4XF60F4Ay_SiJi23kRzSxQuM=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.548663+00 2025-12-09 10:15:37.54867+00 16816 CCH001FWE#粉底VS-D3 SPMX-20240815312027 \N \N \N 1 \N [{"file_id": "4714815a-1bd8-4602-954c-011453d8a38c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "114c0626227b4b6bb99cf2e812320abb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "114c0626227b4b6bb99cf2e812320abb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "114c0626227b4b6bb99cf2e812320abb.jpg", "file_size": 16312, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#粉底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114c0626227b4b6bb99cf2e812320abb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114c0626227b4b6bb99cf2e812320abb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/114c0626227b4b6bb99cf2e812320abb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/114c0626227b4b6bb99cf2e812320abb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/114c0626227b4b6bb99cf2e812320abb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdXtjmvtPwOsSph4f8kcW9a2w3g=", "createTime": "2024-08-15 15:01:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.551833+00 2025-12-09 10:15:37.55184+00 16817 HX003FW# SPMX-20240815312031 \N \N \N 1 \N [{"file_id": "213c71d6-2f1d-486f-89ad-1199cd2aee0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8442f99308214eafbc21839f8abf101d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8442f99308214eafbc21839f8abf101d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8442f99308214eafbc21839f8abf101d.jpg", "file_size": 18793, "is_delete": false, "file_type": 1, "original_file_name": "HX003FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8442f99308214eafbc21839f8abf101d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8442f99308214eafbc21839f8abf101d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8442f99308214eafbc21839f8abf101d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8442f99308214eafbc21839f8abf101d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8442f99308214eafbc21839f8abf101d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8csekY8c94uCO9iNWFH0LCRn6JI=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.555033+00 2025-12-09 10:15:37.555039+00 16818 FX0003-147#RC23 SPMX-20240815312037 \N \N \N 1 \N [{"file_id": "700c30b5-d23a-4e20-95ac-8bac7557ea4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87febae8a8434e3ab115d1ec2961f777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87febae8a8434e3ab115d1ec2961f777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87febae8a8434e3ab115d1ec2961f777.jpg", "file_size": 49829, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-147#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87febae8a8434e3ab115d1ec2961f777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87febae8a8434e3ab115d1ec2961f777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87febae8a8434e3ab115d1ec2961f777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87febae8a8434e3ab115d1ec2961f777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87febae8a8434e3ab115d1ec2961f777.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bW5qu0S1s0nyyIg_H9O2lH_tS2Q=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.55815+00 2025-12-09 10:15:37.558157+00 16819 0007-109#红色 SPMX-20240815312032 \N \N \N 1 \N [{"file_id": "4d92b07d-1046-4443-a6b4-89065fbc9386", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73b3656fc3614c798a9771b7298ee1bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73b3656fc3614c798a9771b7298ee1bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73b3656fc3614c798a9771b7298ee1bb.jpg", "file_size": 19148, "is_delete": false, "file_type": 1, "original_file_name": "0007-109#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3656fc3614c798a9771b7298ee1bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3656fc3614c798a9771b7298ee1bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73b3656fc3614c798a9771b7298ee1bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73b3656fc3614c798a9771b7298ee1bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73b3656fc3614c798a9771b7298ee1bb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDfDOOzrbnLOZbBfVEAlE-CM-0g=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.561252+00 2025-12-09 10:15:37.561258+00 16820 LJH1871#黑色 SPMX-20240815312033 \N \N \N 1 \N [{"file_id": "e205b5bb-c36a-406c-9544-53aa92e14c16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bae3a7eeaf5348cdbdc5ed204d8848d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bae3a7eeaf5348cdbdc5ed204d8848d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bae3a7eeaf5348cdbdc5ed204d8848d5.jpg", "file_size": 42000, "is_delete": false, "file_type": 1, "original_file_name": "LJH1871#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae3a7eeaf5348cdbdc5ed204d8848d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae3a7eeaf5348cdbdc5ed204d8848d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae3a7eeaf5348cdbdc5ed204d8848d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bae3a7eeaf5348cdbdc5ed204d8848d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bae3a7eeaf5348cdbdc5ed204d8848d5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-qNtM6kmrSr6ac4tZXt-1JFXwc=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.564213+00 2025-12-09 10:15:37.56422+00 16821 JTSS755FW#VS-D3 SPMX-20240815312036 \N \N \N 1 \N [{"file_id": "4f793445-97f8-4b7c-a45e-29b362e5e557", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed3850b0e6e4e95a248c48aa9905c9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed3850b0e6e4e95a248c48aa9905c9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed3850b0e6e4e95a248c48aa9905c9d.jpg", "file_size": 21636, "is_delete": false, "file_type": 1, "original_file_name": "JTSS755FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3850b0e6e4e95a248c48aa9905c9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3850b0e6e4e95a248c48aa9905c9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed3850b0e6e4e95a248c48aa9905c9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed3850b0e6e4e95a248c48aa9905c9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed3850b0e6e4e95a248c48aa9905c9d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvv6osGo1zuWCbQ3TccEtSrQwVs=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.568211+00 2025-12-09 10:15:37.568217+00 16822 LJH1873#浅黄 SPMX-20240815312044 \N \N \N 1 \N [{"file_id": "7b8e1066-f5e5-4d16-93c4-15a7c6940411", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0da906ec77e4caa8d99b709e7c2c2b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0da906ec77e4caa8d99b709e7c2c2b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0da906ec77e4caa8d99b709e7c2c2b5.jpg", "file_size": 59673, "is_delete": false, "file_type": 1, "original_file_name": "LJH1873#浅黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0da906ec77e4caa8d99b709e7c2c2b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0da906ec77e4caa8d99b709e7c2c2b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0da906ec77e4caa8d99b709e7c2c2b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0da906ec77e4caa8d99b709e7c2c2b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0da906ec77e4caa8d99b709e7c2c2b5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VJB7lSgK0fBrcz_IZ9fVlZ9Rqic=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.572425+00 2025-12-09 10:15:37.572431+00 16823 HX003FWE#黄VS-D3 SPMX-20240815312041 \N \N \N 1 \N [{"file_id": "09adedb2-4b92-498f-b4c4-52e3661dd2b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf2ed978f31241e08985b0e61b30b40f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf2ed978f31241e08985b0e61b30b40f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf2ed978f31241e08985b0e61b30b40f.jpg", "file_size": 7665, "is_delete": false, "file_type": 1, "original_file_name": "HX003FWE#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2ed978f31241e08985b0e61b30b40f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2ed978f31241e08985b0e61b30b40f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf2ed978f31241e08985b0e61b30b40f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf2ed978f31241e08985b0e61b30b40f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf2ed978f31241e08985b0e61b30b40f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjWo3AbpUuhUiiCCNBHbyFyXM1o=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.575501+00 2025-12-09 10:15:37.575505+00 16824 0007-109#蓝色 SPMX-20240815312043 \N \N \N 1 \N [{"file_id": "6856d013-4ca3-4918-bd38-7848ccd813ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9491c8261d55414a9d83e634b2a8806c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9491c8261d55414a9d83e634b2a8806c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9491c8261d55414a9d83e634b2a8806c.jpg", "file_size": 19949, "is_delete": false, "file_type": 1, "original_file_name": "0007-109#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9491c8261d55414a9d83e634b2a8806c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9491c8261d55414a9d83e634b2a8806c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9491c8261d55414a9d83e634b2a8806c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9491c8261d55414a9d83e634b2a8806c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9491c8261d55414a9d83e634b2a8806c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:obGSyCzfbhSBTo25Tx7x4QBfu00=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.577988+00 2025-12-09 10:15:37.577993+00 16825 CCH001FWE#绿底VS-D3 SPMX-20240815312038 \N \N \N 1 \N [{"file_id": "a9be3f85-a163-47de-af45-19312a0abf74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3855f91c02f4888aed18b95a3b2e4a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3855f91c02f4888aed18b95a3b2e4a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3855f91c02f4888aed18b95a3b2e4a3.jpg", "file_size": 15941, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#绿底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3855f91c02f4888aed18b95a3b2e4a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3855f91c02f4888aed18b95a3b2e4a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3855f91c02f4888aed18b95a3b2e4a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3855f91c02f4888aed18b95a3b2e4a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3855f91c02f4888aed18b95a3b2e4a3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Le1iw1QreMPconZbMmPOvkSbiVQ=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.580356+00 2025-12-09 10:15:37.58036+00 16826 1231-12FWE#小童8码+4码 SPMX-20240815312040 \N \N \N 1 \N [{"file_id": "3b135132-eb66-40f9-aede-e3f679b7e9be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg", "file_size": 23784, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf4f67f1a2ce43afb8c70e1e94b69ba5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i35KYRUtbcpH9YtO4WjZAxYj4YQ=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.582702+00 2025-12-09 10:15:37.582712+00 16827 LZ1360#3号色 SPMX-20240815312047 \N \N \N 1 \N [{"file_id": "ab76e1ba-d396-42b1-a833-fe43070b1393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a6342f92b7941f58932ae94085fd3cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a6342f92b7941f58932ae94085fd3cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a6342f92b7941f58932ae94085fd3cb.jpg", "file_size": 14416, "is_delete": false, "file_type": 1, "original_file_name": "LZ1360#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6342f92b7941f58932ae94085fd3cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6342f92b7941f58932ae94085fd3cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6342f92b7941f58932ae94085fd3cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a6342f92b7941f58932ae94085fd3cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a6342f92b7941f58932ae94085fd3cb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiRwISSe_QyD4EPnDTTdfyOg4zw=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.585187+00 2025-12-09 10:15:37.585192+00 16828 85034#乱花 SPMX-20240815312045 \N \N \N 1 \N [{"file_id": "17f43bca-d94d-48cc-92a3-d4dae54327e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47a36274c2e743e1a8c3c8efccf6130b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47a36274c2e743e1a8c3c8efccf6130b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47a36274c2e743e1a8c3c8efccf6130b.jpg", "file_size": 7554, "is_delete": false, "file_type": 1, "original_file_name": "85034#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a36274c2e743e1a8c3c8efccf6130b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a36274c2e743e1a8c3c8efccf6130b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47a36274c2e743e1a8c3c8efccf6130b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47a36274c2e743e1a8c3c8efccf6130b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47a36274c2e743e1a8c3c8efccf6130b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:25zVWGT1e9V9tjxGOAoxlokcK78=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.58755+00 2025-12-09 10:15:37.587554+00 16829 DL31545#袖子彩兰 SPMX-20240815312039 \N \N \N 1 \N [{"file_id": "bd52bf2c-04a5-4a71-a7d9-e20b82107d6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg", "file_size": 14365, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ab63bf7978a4cbfa5fb7f4f5016cbb1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfgYILdFovrS1MefFkeAR2Rv_FI=", "createTime": "2024-08-15 15:01:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.589948+00 2025-12-09 10:15:37.589952+00 16830 2303#青色背心裙L SPMX-20240815312042 \N \N \N 1 \N [{"file_id": "32b5791e-d4ec-4dfe-ba07-c5fa4622f45f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24f125b54ca44d99928060a0baf6773e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24f125b54ca44d99928060a0baf6773e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24f125b54ca44d99928060a0baf6773e.jpg", "file_size": 16739, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24f125b54ca44d99928060a0baf6773e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24f125b54ca44d99928060a0baf6773e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24f125b54ca44d99928060a0baf6773e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24f125b54ca44d99928060a0baf6773e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24f125b54ca44d99928060a0baf6773e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fARPfS3BgmIQ_Ov9zfekSfVeYtE=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.592242+00 2025-12-09 10:15:37.592246+00 16831 JTSS756FW#VS-D3 SPMX-20240815312046 \N \N \N 1 \N [{"file_id": "3f14d6e8-584d-445e-985b-9995db91c98b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1212c6c958dd4d969a86adf57679cf9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1212c6c958dd4d969a86adf57679cf9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1212c6c958dd4d969a86adf57679cf9f.jpg", "file_size": 11094, "is_delete": false, "file_type": 1, "original_file_name": "JTSS756FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1212c6c958dd4d969a86adf57679cf9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1212c6c958dd4d969a86adf57679cf9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1212c6c958dd4d969a86adf57679cf9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1212c6c958dd4d969a86adf57679cf9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1212c6c958dd4d969a86adf57679cf9f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CctHBNM-oAGg9Ab_I2LB3sh-C8U=", "createTime": "2024-08-15 15:01:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.594413+00 2025-12-09 10:15:37.594417+00 16832 FX0003-148#RC23 SPMX-20240815312048 \N \N \N 1 \N [{"file_id": "4e8f023c-03b8-4593-a140-bb1657605e16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a05465c08c904413ab321bc0fd484003.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a05465c08c904413ab321bc0fd484003.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a05465c08c904413ab321bc0fd484003.jpg", "file_size": 50783, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-148#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05465c08c904413ab321bc0fd484003.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05465c08c904413ab321bc0fd484003.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05465c08c904413ab321bc0fd484003.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a05465c08c904413ab321bc0fd484003.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a05465c08c904413ab321bc0fd484003.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0pAuym2uc7-Imq92yGd422LrjU=", "createTime": "2024-08-15 15:01:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.596678+00 2025-12-09 10:15:37.596684+00 16833 CCH001FWE#西红底VS-D3 SPMX-20240815312050 \N \N \N 1 \N [{"file_id": "8137e5c4-655b-4f33-93fc-f87499b5386b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19f14fc8812b4976a0d6f9c284932f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19f14fc8812b4976a0d6f9c284932f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19f14fc8812b4976a0d6f9c284932f69.jpg", "file_size": 14413, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#西红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f14fc8812b4976a0d6f9c284932f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f14fc8812b4976a0d6f9c284932f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f14fc8812b4976a0d6f9c284932f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19f14fc8812b4976a0d6f9c284932f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19f14fc8812b4976a0d6f9c284932f69.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t0CZZ6tFaqoNxvPw59STRZxmOCU=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.599468+00 2025-12-09 10:15:37.599473+00 16834 LZ1360#4号色 SPMX-20240815312052 \N \N \N 1 \N [{"file_id": "0a40bf53-fb4d-4af8-84e1-228dc4692d1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e75a4a54bbf2441ba6d5c75565fc8ce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e75a4a54bbf2441ba6d5c75565fc8ce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e75a4a54bbf2441ba6d5c75565fc8ce1.jpg", "file_size": 14569, "is_delete": false, "file_type": 1, "original_file_name": "LZ1360#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75a4a54bbf2441ba6d5c75565fc8ce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75a4a54bbf2441ba6d5c75565fc8ce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75a4a54bbf2441ba6d5c75565fc8ce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e75a4a54bbf2441ba6d5c75565fc8ce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e75a4a54bbf2441ba6d5c75565fc8ce1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IdfZ8yaZV3YZ2IGdDknk7-QpMQM=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.602234+00 2025-12-09 10:15:37.602239+00 16835 0007-1FWE#VS-D3 SPMX-20240815312053 \N \N \N 1 \N [{"file_id": "d5e1bf07-bf96-470e-aef1-f2da3a675232", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "482c7d00fb3a4e188e9199ff97e62363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "482c7d00fb3a4e188e9199ff97e62363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "482c7d00fb3a4e188e9199ff97e62363.jpg", "file_size": 6400, "is_delete": false, "file_type": 1, "original_file_name": "0007-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482c7d00fb3a4e188e9199ff97e62363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482c7d00fb3a4e188e9199ff97e62363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482c7d00fb3a4e188e9199ff97e62363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/482c7d00fb3a4e188e9199ff97e62363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/482c7d00fb3a4e188e9199ff97e62363.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZGALrGwumsdaa-p2sb69wmn0eg=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.605421+00 2025-12-09 10:15:37.605427+00 16836 LJH1873#红色 SPMX-20240815312054 \N \N \N 1 \N [{"file_id": "1c304aca-9c79-4552-afca-c5132b2aacc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84f7b4563ab48c8b950a62da8059e0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84f7b4563ab48c8b950a62da8059e0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84f7b4563ab48c8b950a62da8059e0e.jpg", "file_size": 65957, "is_delete": false, "file_type": 1, "original_file_name": "LJH1873#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84f7b4563ab48c8b950a62da8059e0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84f7b4563ab48c8b950a62da8059e0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84f7b4563ab48c8b950a62da8059e0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84f7b4563ab48c8b950a62da8059e0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84f7b4563ab48c8b950a62da8059e0e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWNUzJX5uPt35QfS6MHwFgKwOSg=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.608158+00 2025-12-09 10:15:37.608164+00 16837 85035#10码+12码 SPMX-20240815312051 \N \N \N 1 \N [{"file_id": "bf79a865-7ee5-45e5-967b-f2c97314bd3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "673713bee97d4b22a26656fb9e0052fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "673713bee97d4b22a26656fb9e0052fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "673713bee97d4b22a26656fb9e0052fe.jpg", "file_size": 16670, "is_delete": false, "file_type": 1, "original_file_name": "85035#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673713bee97d4b22a26656fb9e0052fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673713bee97d4b22a26656fb9e0052fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/673713bee97d4b22a26656fb9e0052fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/673713bee97d4b22a26656fb9e0052fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/673713bee97d4b22a26656fb9e0052fe.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXO9HW9l_ls8YPVtZbNgBukIMzA=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.610824+00 2025-12-09 10:15:37.610829+00 16838 JTSS757FW#杏VS-D3 SPMX-20240815312058 \N \N \N 1 \N [{"file_id": "92560908-764b-46c8-b963-0f853915e282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04a614a714c04aeb8c0de2963c1c738f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04a614a714c04aeb8c0de2963c1c738f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04a614a714c04aeb8c0de2963c1c738f.jpg", "file_size": 12378, "is_delete": false, "file_type": 1, "original_file_name": "JTSS757FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a614a714c04aeb8c0de2963c1c738f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a614a714c04aeb8c0de2963c1c738f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a614a714c04aeb8c0de2963c1c738f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04a614a714c04aeb8c0de2963c1c738f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04a614a714c04aeb8c0de2963c1c738f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0iDYULKUs2ECg5e9ZTs7MGUYUM=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.613462+00 2025-12-09 10:15:37.61347+00 16839 DL31545#袖子枣红 SPMX-20240815312049 \N \N \N 1 \N [{"file_id": "791e1441-4a32-4b5c-819a-6f2b13864c07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8ae015a38f498aa6dae6b186c7a667.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8ae015a38f498aa6dae6b186c7a667.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8ae015a38f498aa6dae6b186c7a667.jpg", "file_size": 14490, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8ae015a38f498aa6dae6b186c7a667.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8ae015a38f498aa6dae6b186c7a667.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8ae015a38f498aa6dae6b186c7a667.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8ae015a38f498aa6dae6b186c7a667.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8ae015a38f498aa6dae6b186c7a667.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bYHIXo7uSDH6_3M8qZEzrC5jGsM=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.616123+00 2025-12-09 10:15:37.616129+00 16840 2303#青色背心裙M SPMX-20240815312055 \N \N \N 1 \N [{"file_id": "f793b559-11f4-4672-bac3-51ca85f666f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c8ab710f6fa441d9994e86b41167845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c8ab710f6fa441d9994e86b41167845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c8ab710f6fa441d9994e86b41167845.jpg", "file_size": 16341, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8ab710f6fa441d9994e86b41167845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8ab710f6fa441d9994e86b41167845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8ab710f6fa441d9994e86b41167845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c8ab710f6fa441d9994e86b41167845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c8ab710f6fa441d9994e86b41167845.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKNfG27DMrleBC0HRZ1azLG6BBQ=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.618758+00 2025-12-09 10:15:37.618763+00 16841 HX004# SPMX-20240815312057 \N \N \N 1 \N [{"file_id": "14f26903-45f4-49fe-9d06-e2594504cad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f7d426e3938488999a6e3d6a57d617b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f7d426e3938488999a6e3d6a57d617b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f7d426e3938488999a6e3d6a57d617b.jpg", "file_size": 13751, "is_delete": false, "file_type": 1, "original_file_name": "HX004#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7d426e3938488999a6e3d6a57d617b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7d426e3938488999a6e3d6a57d617b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7d426e3938488999a6e3d6a57d617b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f7d426e3938488999a6e3d6a57d617b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f7d426e3938488999a6e3d6a57d617b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GKqK6P80wp2_PidKSvJpsxX1geE=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.621718+00 2025-12-09 10:15:37.621726+00 16842 1231-12FWE#小童袖领匹布 SPMX-20240815312056 \N \N \N 1 \N [{"file_id": "bc443ec8-6a82-467b-8d05-a6e41901f49f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f02bbb9e46e4f828bc41c630df1c7ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f02bbb9e46e4f828bc41c630df1c7ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f02bbb9e46e4f828bc41c630df1c7ca.jpg", "file_size": 21459, "is_delete": false, "file_type": 1, "original_file_name": "1231-12FWE#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f02bbb9e46e4f828bc41c630df1c7ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f02bbb9e46e4f828bc41c630df1c7ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f02bbb9e46e4f828bc41c630df1c7ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f02bbb9e46e4f828bc41c630df1c7ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f02bbb9e46e4f828bc41c630df1c7ca.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3g2E6VCzF05Meg5No1oGz532Wmg=", "createTime": "2024-08-15 15:01:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.625313+00 2025-12-09 10:15:37.62532+00 16843 FX0003-149#-原版色 SPMX-20240815312061 \N \N \N 1 \N [{"file_id": "568320ed-11af-4331-ab83-385268a45533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70ecc81d9a1042e787404b06d874ea5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70ecc81d9a1042e787404b06d874ea5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70ecc81d9a1042e787404b06d874ea5c.jpg", "file_size": 59289, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#-原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ecc81d9a1042e787404b06d874ea5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ecc81d9a1042e787404b06d874ea5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ecc81d9a1042e787404b06d874ea5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70ecc81d9a1042e787404b06d874ea5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70ecc81d9a1042e787404b06d874ea5c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ny1Dxe6fLZFMpS3_-k9kferJePo=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.629206+00 2025-12-09 10:15:37.629213+00 16844 CCH001FWE#黄底VS-D3 SPMX-20240815312059 \N \N \N 1 \N [{"file_id": "7c490bad-6e6f-403d-8080-dda698031bd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf3107e5a415486697238e0d8f1d24c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf3107e5a415486697238e0d8f1d24c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf3107e5a415486697238e0d8f1d24c4.jpg", "file_size": 17426, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#黄底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3107e5a415486697238e0d8f1d24c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3107e5a415486697238e0d8f1d24c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf3107e5a415486697238e0d8f1d24c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf3107e5a415486697238e0d8f1d24c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf3107e5a415486697238e0d8f1d24c4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D8BuDesg0PQxp92Uz8qJokuFsjc=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.632687+00 2025-12-09 10:15:37.632694+00 16845 1231-13FWF#中童12码+10码 SPMX-20240815312060 \N \N \N 1 \N [{"file_id": "655b1a2f-f50c-44df-b8fa-0b439d9745e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b75de6124a9148c5aa3d1fa1c0b9eaff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b75de6124a9148c5aa3d1fa1c0b9eaff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b75de6124a9148c5aa3d1fa1c0b9eaff.jpg", "file_size": 19438, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75de6124a9148c5aa3d1fa1c0b9eaff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75de6124a9148c5aa3d1fa1c0b9eaff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75de6124a9148c5aa3d1fa1c0b9eaff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b75de6124a9148c5aa3d1fa1c0b9eaff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b75de6124a9148c5aa3d1fa1c0b9eaff.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tqkbub3CoCT8yHabJsOh2aGJ2Xs=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.635682+00 2025-12-09 10:15:37.635687+00 16846 DL31545#袖子水红 SPMX-20240815312062 \N \N \N 1 \N [{"file_id": "d2316c74-636d-4c58-88b1-a65e80597f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2018fbf4990c4988ba173395c08d45cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2018fbf4990c4988ba173395c08d45cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2018fbf4990c4988ba173395c08d45cf.jpg", "file_size": 13896, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2018fbf4990c4988ba173395c08d45cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2018fbf4990c4988ba173395c08d45cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2018fbf4990c4988ba173395c08d45cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2018fbf4990c4988ba173395c08d45cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2018fbf4990c4988ba173395c08d45cf.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4htWOgtWX6t7rzuXDj3bIPtOM40=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.63898+00 2025-12-09 10:15:37.638986+00 16847 LZ1360#5号色 SPMX-20240815312066 \N \N \N 1 \N [{"file_id": "b2dce5c1-541b-4a48-986d-671e152016ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg", "file_size": 15540, "is_delete": false, "file_type": 1, "original_file_name": "LZ1360#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a5c2b08e80744d7a9c5ac9f7e0b7550.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45EeNnQpikAXRw1NRlsy3FHYoUY=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.642117+00 2025-12-09 10:15:37.642124+00 16848 LJH1873#黑色 SPMX-20240815312068 \N \N \N 1 \N [{"file_id": "ea5a05da-c44d-487d-aee7-3832f2c4d6c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1703a24168494881b66dc036aa25ecd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1703a24168494881b66dc036aa25ecd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1703a24168494881b66dc036aa25ecd8.jpg", "file_size": 55669, "is_delete": false, "file_type": 1, "original_file_name": "LJH1873#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1703a24168494881b66dc036aa25ecd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1703a24168494881b66dc036aa25ecd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1703a24168494881b66dc036aa25ecd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1703a24168494881b66dc036aa25ecd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1703a24168494881b66dc036aa25ecd8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rG3PupWUlivtx5ebsuxVtiTLTzg=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.645641+00 2025-12-09 10:15:37.645647+00 16849 CCH001FWE#黑底VS-D3 SPMX-20240815312069 \N \N \N 1 \N [{"file_id": "24d452c4-3f71-4854-99d6-4217cc68daf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4cea61a3ca14c638631df2fa7646e79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4cea61a3ca14c638631df2fa7646e79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4cea61a3ca14c638631df2fa7646e79.jpg", "file_size": 17043, "is_delete": false, "file_type": 1, "original_file_name": "CCH001FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cea61a3ca14c638631df2fa7646e79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cea61a3ca14c638631df2fa7646e79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cea61a3ca14c638631df2fa7646e79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4cea61a3ca14c638631df2fa7646e79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4cea61a3ca14c638631df2fa7646e79.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ziI-JT0IbTii5AKKbIRTqNbY_UI=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.649182+00 2025-12-09 10:15:37.649189+00 16850 85035#14码 SPMX-20240815312065 \N \N \N 1 \N [{"file_id": "988b0e06-6504-403f-bdf7-204d2e1074ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3a02e4870a54321bc6e02ce621559c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3a02e4870a54321bc6e02ce621559c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3a02e4870a54321bc6e02ce621559c0.jpg", "file_size": 14952, "is_delete": false, "file_type": 1, "original_file_name": "85035#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a02e4870a54321bc6e02ce621559c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a02e4870a54321bc6e02ce621559c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a02e4870a54321bc6e02ce621559c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3a02e4870a54321bc6e02ce621559c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3a02e4870a54321bc6e02ce621559c0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuSWa-yo7PN9Or0lI4EQl-16d-w=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.652583+00 2025-12-09 10:15:37.65259+00 16851 85035#4码+8码 SPMX-20240815312072 \N \N \N 1 \N [{"file_id": "974713b5-357a-4779-9588-84a6f8ce89bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c90f85730ff348879359a26156eb8360.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c90f85730ff348879359a26156eb8360.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c90f85730ff348879359a26156eb8360.jpg", "file_size": 16561, "is_delete": false, "file_type": 1, "original_file_name": "85035#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90f85730ff348879359a26156eb8360.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90f85730ff348879359a26156eb8360.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90f85730ff348879359a26156eb8360.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c90f85730ff348879359a26156eb8360.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c90f85730ff348879359a26156eb8360.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NvR1yKlgzLqksyihok5IQSbq5s=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.655793+00 2025-12-09 10:15:37.655802+00 16852 0007-1FWF#紫色 SPMX-20240815312063 \N \N \N 1 \N [{"file_id": "46e33ee0-2def-4e23-983d-aff980d0f1e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9580a7299f314aef9e0cd2085088f15d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9580a7299f314aef9e0cd2085088f15d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9580a7299f314aef9e0cd2085088f15d.jpg", "file_size": 15473, "is_delete": false, "file_type": 1, "original_file_name": "0007-1FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9580a7299f314aef9e0cd2085088f15d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9580a7299f314aef9e0cd2085088f15d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9580a7299f314aef9e0cd2085088f15d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9580a7299f314aef9e0cd2085088f15d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9580a7299f314aef9e0cd2085088f15d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Icf0cE--MW9VHOWzDA0bMXtoKcw=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.658747+00 2025-12-09 10:15:37.658752+00 16853 DL31545#袖子玫红 SPMX-20240815312070 \N \N \N 1 \N [{"file_id": "d80ffd8d-79e1-4fae-9716-c5e3a6cfbcd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ad5081e95c465091810f741e324225.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ad5081e95c465091810f741e324225.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ad5081e95c465091810f741e324225.jpg", "file_size": 14648, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ad5081e95c465091810f741e324225.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ad5081e95c465091810f741e324225.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ad5081e95c465091810f741e324225.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ad5081e95c465091810f741e324225.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ad5081e95c465091810f741e324225.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C3xKGSY8ePJvOaNTl2SQqpQU8m8=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.661524+00 2025-12-09 10:15:37.661529+00 16854 2303#青色背心裙M码 SPMX-20240815312067 \N \N \N 1 \N [{"file_id": "982f351c-37c6-4d8b-a36a-9ba949fbca2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f784c95cf79b42c19a66322a3c2a4b31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f784c95cf79b42c19a66322a3c2a4b31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f784c95cf79b42c19a66322a3c2a4b31.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f784c95cf79b42c19a66322a3c2a4b31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f784c95cf79b42c19a66322a3c2a4b31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f784c95cf79b42c19a66322a3c2a4b31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f784c95cf79b42c19a66322a3c2a4b31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f784c95cf79b42c19a66322a3c2a4b31.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MBGOBepDD-qG0w7arQV3hDg2zBE=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.664232+00 2025-12-09 10:15:37.664238+00 16855 2303#青色背心裙S SPMX-20240815312075 \N \N \N 1 \N [{"file_id": "93513717-5d63-4705-a453-9f6643851889", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeacf9d199d94040bc054bc6710dbe6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeacf9d199d94040bc054bc6710dbe6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeacf9d199d94040bc054bc6710dbe6e.jpg", "file_size": 16050, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf9d199d94040bc054bc6710dbe6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf9d199d94040bc054bc6710dbe6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeacf9d199d94040bc054bc6710dbe6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeacf9d199d94040bc054bc6710dbe6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeacf9d199d94040bc054bc6710dbe6e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bs5_ONQKalVQmGUdCp6nCyqGxcU=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.666847+00 2025-12-09 10:15:37.666853+00 16856 1231-13FWF#中童14码 SPMX-20240815312074 \N \N \N 1 \N [{"file_id": "d9036787-edfb-47de-9b9c-e18aedba998c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfda1144e4324bc298bd2e61126ccd49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfda1144e4324bc298bd2e61126ccd49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfda1144e4324bc298bd2e61126ccd49.jpg", "file_size": 18277, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfda1144e4324bc298bd2e61126ccd49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfda1144e4324bc298bd2e61126ccd49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfda1144e4324bc298bd2e61126ccd49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfda1144e4324bc298bd2e61126ccd49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfda1144e4324bc298bd2e61126ccd49.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1NzgKAltMFHL74Dv0QXknQSIQbI=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.669673+00 2025-12-09 10:15:37.669679+00 16857 JTSS757FW#粉VS-D3 SPMX-20240815312064 \N \N \N 1 \N [{"file_id": "4b14111b-118c-4952-8ad5-3e90fe1360c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "541e5f69ad094edcaa25f1864f09a10b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "541e5f69ad094edcaa25f1864f09a10b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "541e5f69ad094edcaa25f1864f09a10b.jpg", "file_size": 11852, "is_delete": false, "file_type": 1, "original_file_name": "JTSS757FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e5f69ad094edcaa25f1864f09a10b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e5f69ad094edcaa25f1864f09a10b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541e5f69ad094edcaa25f1864f09a10b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/541e5f69ad094edcaa25f1864f09a10b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/541e5f69ad094edcaa25f1864f09a10b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6CGGXqiRWIOzTJ6TC21NxPKuzE=", "createTime": "2024-08-15 15:01:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.672423+00 2025-12-09 10:15:37.672429+00 16858 LZ1361#上身1号色 SPMX-20240815312076 \N \N \N 1 \N [{"file_id": "fb0f8325-6b03-4e60-93e4-0f8627a734eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f2f55f144344d30bd0699777b1d0661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f2f55f144344d30bd0699777b1d0661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f2f55f144344d30bd0699777b1d0661.jpg", "file_size": 20598, "is_delete": false, "file_type": 1, "original_file_name": "LZ1361#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2f55f144344d30bd0699777b1d0661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2f55f144344d30bd0699777b1d0661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f2f55f144344d30bd0699777b1d0661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f2f55f144344d30bd0699777b1d0661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f2f55f144344d30bd0699777b1d0661.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5R-DQk2wfaSBgiGC9rj6Vll9xEM=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.675091+00 2025-12-09 10:15:37.675096+00 16859 JTSS758FW#VS-D3 SPMX-20240815312073 \N \N \N 1 \N [{"file_id": "f8460255-4013-4865-ae8e-07a3dfe84b6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c60aeace706d46c2b31fc3b81288a051.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c60aeace706d46c2b31fc3b81288a051.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c60aeace706d46c2b31fc3b81288a051.jpg", "file_size": 15136, "is_delete": false, "file_type": 1, "original_file_name": "JTSS758FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60aeace706d46c2b31fc3b81288a051.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60aeace706d46c2b31fc3b81288a051.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60aeace706d46c2b31fc3b81288a051.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c60aeace706d46c2b31fc3b81288a051.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c60aeace706d46c2b31fc3b81288a051.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VqSpxxrZqjOYWql0Njn9vXffZ9M=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.677803+00 2025-12-09 10:15:37.67781+00 16860 0007-1FWF#红色 SPMX-20240815312071 \N \N \N 1 \N [{"file_id": "3f9caa30-ce38-425e-af12-47307f5c29e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99be22564f184d2e830a96687a910f85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99be22564f184d2e830a96687a910f85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99be22564f184d2e830a96687a910f85.jpg", "file_size": 15971, "is_delete": false, "file_type": 1, "original_file_name": "0007-1FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99be22564f184d2e830a96687a910f85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99be22564f184d2e830a96687a910f85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99be22564f184d2e830a96687a910f85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99be22564f184d2e830a96687a910f85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99be22564f184d2e830a96687a910f85.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2xlcsiSuueBog0F_3henPdiprhQ=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.680475+00 2025-12-09 10:15:37.680481+00 16861 CCH002FWE#宝蓝底VS-D3 SPMX-20240815312078 \N \N \N 1 \N [{"file_id": "737a101a-6888-4a50-bbba-b3437a3566a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f6fc2c6ace441e99e2730bb050e722.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f6fc2c6ace441e99e2730bb050e722.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f6fc2c6ace441e99e2730bb050e722.jpg", "file_size": 14597, "is_delete": false, "file_type": 1, "original_file_name": "CCH002FWE#宝蓝底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f6fc2c6ace441e99e2730bb050e722.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f6fc2c6ace441e99e2730bb050e722.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f6fc2c6ace441e99e2730bb050e722.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f6fc2c6ace441e99e2730bb050e722.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f6fc2c6ace441e99e2730bb050e722.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STUepmeHb9jODhwaULGAR99gZyE=", "createTime": "2024-08-15 15:01:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.683201+00 2025-12-09 10:15:37.683207+00 16862 FX0003-149#-宝蓝 SPMX-20240815312077 \N \N \N 1 \N [{"file_id": "59b19012-1fb5-465d-bbba-0a17b1993996", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6f37f474668435abe378a20817a8e01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6f37f474668435abe378a20817a8e01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6f37f474668435abe378a20817a8e01.jpg", "file_size": 61310, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#-宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f37f474668435abe378a20817a8e01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f37f474668435abe378a20817a8e01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6f37f474668435abe378a20817a8e01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6f37f474668435abe378a20817a8e01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6f37f474668435abe378a20817a8e01.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IVxi_I25MzlhjKi9qoj1modu9Qk=", "createTime": "2024-08-15 15:01:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.685883+00 2025-12-09 10:15:37.685889+00 16863 HX004#VS-D3 SPMX-20240815312079 \N \N \N 1 \N [{"file_id": "5f569f09-84f9-4b5a-b487-f618c952e657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "358a1cc647954e469cad2673ca96020f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "358a1cc647954e469cad2673ca96020f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "358a1cc647954e469cad2673ca96020f.jpg", "file_size": 26732, "is_delete": false, "file_type": 1, "original_file_name": "HX004#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/358a1cc647954e469cad2673ca96020f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/358a1cc647954e469cad2673ca96020f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/358a1cc647954e469cad2673ca96020f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/358a1cc647954e469cad2673ca96020f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/358a1cc647954e469cad2673ca96020f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f3_oMCUkHndL68n0dn14lXfYN0o=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.688604+00 2025-12-09 10:15:37.688609+00 16864 FX0003-149#-橙色 SPMX-20240815312088 \N \N \N 1 \N [{"file_id": "0baf99db-bd9e-4439-85c2-795f628b96bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75f74c513f3a489f8cf876e7b9a38c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75f74c513f3a489f8cf876e7b9a38c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75f74c513f3a489f8cf876e7b9a38c13.jpg", "file_size": 59079, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f74c513f3a489f8cf876e7b9a38c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f74c513f3a489f8cf876e7b9a38c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f74c513f3a489f8cf876e7b9a38c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75f74c513f3a489f8cf876e7b9a38c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75f74c513f3a489f8cf876e7b9a38c13.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MDXmT5nYUOWqa5Y2vzyBw_lUQy0=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.691323+00 2025-12-09 10:15:37.691329+00 16865 LJH1874#彩蓝 SPMX-20240815312082 \N \N \N 1 \N [{"file_id": "31d7655a-dfe7-49c0-b7fe-a736530fa9a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7648d16efa5a4043b7eb0276e8f64bed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7648d16efa5a4043b7eb0276e8f64bed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7648d16efa5a4043b7eb0276e8f64bed.jpg", "file_size": 72881, "is_delete": false, "file_type": 1, "original_file_name": "LJH1874#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648d16efa5a4043b7eb0276e8f64bed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648d16efa5a4043b7eb0276e8f64bed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7648d16efa5a4043b7eb0276e8f64bed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7648d16efa5a4043b7eb0276e8f64bed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7648d16efa5a4043b7eb0276e8f64bed.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4VPjh1mgw7tbYGTBDH1RzLPfGLE=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.696977+00 2025-12-09 10:15:37.696984+00 16866 LZ1361#上身2号色 SPMX-20240815312090 \N \N \N 1 \N [{"file_id": "2d7f63c6-3337-47f1-acf2-9982ff207ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c3751ca565e4d23ba593717a335a9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c3751ca565e4d23ba593717a335a9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c3751ca565e4d23ba593717a335a9a4.jpg", "file_size": 20231, "is_delete": false, "file_type": 1, "original_file_name": "LZ1361#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3751ca565e4d23ba593717a335a9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3751ca565e4d23ba593717a335a9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c3751ca565e4d23ba593717a335a9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c3751ca565e4d23ba593717a335a9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c3751ca565e4d23ba593717a335a9a4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AT5Vg0WV0lHs3R6DQksaIzQ8KI8=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.699735+00 2025-12-09 10:15:37.699741+00 16867 1231-13FWF#中童袖领匹布 SPMX-20240815312084 \N \N \N 1 \N [{"file_id": "b0003645-7a6d-40d0-8941-32f5f72cb434", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "885fb67124df4fc0807cfe9ac45673e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "885fb67124df4fc0807cfe9ac45673e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "885fb67124df4fc0807cfe9ac45673e3.jpg", "file_size": 17370, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885fb67124df4fc0807cfe9ac45673e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885fb67124df4fc0807cfe9ac45673e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/885fb67124df4fc0807cfe9ac45673e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/885fb67124df4fc0807cfe9ac45673e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/885fb67124df4fc0807cfe9ac45673e3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2St_06Ih-mRxV-OwtoSKxuLly68=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.702489+00 2025-12-09 10:15:37.702495+00 16868 85035#6码 SPMX-20240815312085 \N \N \N 1 \N [{"file_id": "b4d5f1eb-7508-4d30-9470-a83c6621617b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "499ff8609a914509968831df415382a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "499ff8609a914509968831df415382a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "499ff8609a914509968831df415382a8.jpg", "file_size": 16633, "is_delete": false, "file_type": 1, "original_file_name": "85035#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499ff8609a914509968831df415382a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499ff8609a914509968831df415382a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/499ff8609a914509968831df415382a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/499ff8609a914509968831df415382a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/499ff8609a914509968831df415382a8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-CWui4JDvHVTLEUaqTVD29_Y-A=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.705209+00 2025-12-09 10:15:37.705215+00 16869 HX004#Z SPMX-20240815312091 \N \N \N 1 \N [{"file_id": "6bd3c888-4aea-4290-8b84-0e9d8562654d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4543d68f2f5442b89179e13b5877f469.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4543d68f2f5442b89179e13b5877f469.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4543d68f2f5442b89179e13b5877f469.jpg", "file_size": 10113, "is_delete": false, "file_type": 1, "original_file_name": "HX004#Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4543d68f2f5442b89179e13b5877f469.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4543d68f2f5442b89179e13b5877f469.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4543d68f2f5442b89179e13b5877f469.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4543d68f2f5442b89179e13b5877f469.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4543d68f2f5442b89179e13b5877f469.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Slrx80ijehSQ1IO1-_rW6uRT1rE=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.707943+00 2025-12-09 10:15:37.707949+00 16870 0007-1FWF#蓝色 SPMX-20240815312080 \N \N \N 1 \N [{"file_id": "26ccd53a-8850-45a4-a0ec-6cd64711ea92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4da7aef20dc40cc8338fbeb86ff8da1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4da7aef20dc40cc8338fbeb86ff8da1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4da7aef20dc40cc8338fbeb86ff8da1.jpg", "file_size": 15213, "is_delete": false, "file_type": 1, "original_file_name": "0007-1FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da7aef20dc40cc8338fbeb86ff8da1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da7aef20dc40cc8338fbeb86ff8da1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4da7aef20dc40cc8338fbeb86ff8da1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4da7aef20dc40cc8338fbeb86ff8da1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4da7aef20dc40cc8338fbeb86ff8da1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XS1LZi8MPgFLV8pZszPRAB8Ojig=", "createTime": "2024-08-15 15:01:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.710632+00 2025-12-09 10:15:37.710639+00 16871 CCH002FWE#绿底VS-D3 SPMX-20240815312086 \N \N \N 1 \N [{"file_id": "4e96a7e7-4ac5-42fa-8cdb-1a0d8f9d805a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1498981f17a54b008384a53956228d39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1498981f17a54b008384a53956228d39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1498981f17a54b008384a53956228d39.jpg", "file_size": 12147, "is_delete": false, "file_type": 1, "original_file_name": "CCH002FWE#绿底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1498981f17a54b008384a53956228d39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1498981f17a54b008384a53956228d39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1498981f17a54b008384a53956228d39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1498981f17a54b008384a53956228d39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1498981f17a54b008384a53956228d39.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z5IJ94ixBaayknOncY6LuNR0GrA=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.713383+00 2025-12-09 10:15:37.713389+00 16872 DL31545#袖子蓝绿 SPMX-20240815312087 \N \N \N 1 \N [{"file_id": "db3808c2-9a99-4543-b54d-e124d76bcbe6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b039c15cb6cc41c0b5d17ec3105ef55b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b039c15cb6cc41c0b5d17ec3105ef55b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b039c15cb6cc41c0b5d17ec3105ef55b.jpg", "file_size": 14483, "is_delete": false, "file_type": 1, "original_file_name": "DL31545#袖子蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b039c15cb6cc41c0b5d17ec3105ef55b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b039c15cb6cc41c0b5d17ec3105ef55b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b039c15cb6cc41c0b5d17ec3105ef55b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b039c15cb6cc41c0b5d17ec3105ef55b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b039c15cb6cc41c0b5d17ec3105ef55b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e8kFOrXLDp8_27wZ6I34SleOPDM=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.716127+00 2025-12-09 10:15:37.716133+00 16873 2303#青色背心裙XL SPMX-20240815312089 \N \N \N 1 \N [{"file_id": "df10919a-b547-4c64-8557-74a87caf918a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22a1948bbeac4bcbbf83d043b1ad50b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22a1948bbeac4bcbbf83d043b1ad50b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22a1948bbeac4bcbbf83d043b1ad50b9.jpg", "file_size": 17005, "is_delete": false, "file_type": 1, "original_file_name": "2303#青色背心裙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a1948bbeac4bcbbf83d043b1ad50b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a1948bbeac4bcbbf83d043b1ad50b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22a1948bbeac4bcbbf83d043b1ad50b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22a1948bbeac4bcbbf83d043b1ad50b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22a1948bbeac4bcbbf83d043b1ad50b9.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsSjwa2Bwuv2JDec026X_qpWFI8=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.718821+00 2025-12-09 10:15:37.718827+00 16874 0007-2FWE#咖粉色 SPMX-20240815312092 \N \N \N 1 \N [{"file_id": "a439e2ff-d6e5-447e-848c-893b37fbb87c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89cee6d6eda942ee919ad1ed4e582cc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89cee6d6eda942ee919ad1ed4e582cc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89cee6d6eda942ee919ad1ed4e582cc7.jpg", "file_size": 16466, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#咖粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89cee6d6eda942ee919ad1ed4e582cc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89cee6d6eda942ee919ad1ed4e582cc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89cee6d6eda942ee919ad1ed4e582cc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89cee6d6eda942ee919ad1ed4e582cc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89cee6d6eda942ee919ad1ed4e582cc7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgQNmoZgy-SF42Eb7mWjHnIYrTc=", "createTime": "2024-08-15 15:01:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.721574+00 2025-12-09 10:15:37.721579+00 16875 LJH1874#桔色 SPMX-20240815312097 \N \N \N 1 \N [{"file_id": "cd961721-a3f0-48b6-b482-1743c4866b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a1854866bf545cca1a4d61e22e03c0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a1854866bf545cca1a4d61e22e03c0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a1854866bf545cca1a4d61e22e03c0e.jpg", "file_size": 72397, "is_delete": false, "file_type": 1, "original_file_name": "LJH1874#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1854866bf545cca1a4d61e22e03c0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1854866bf545cca1a4d61e22e03c0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a1854866bf545cca1a4d61e22e03c0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a1854866bf545cca1a4d61e22e03c0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a1854866bf545cca1a4d61e22e03c0e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:frWt1tcCGxWPJbVHEYcTlQ2zVvE=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.7244+00 2025-12-09 10:15:37.724405+00 16876 0007-2FWE#咖金黄色 SPMX-20240815312100 \N \N \N 1 \N [{"file_id": "39d88625-288f-4256-b4ae-ba1fa94f6f4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b1e645db8634c17ac0210180dc76fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b1e645db8634c17ac0210180dc76fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b1e645db8634c17ac0210180dc76fad.jpg", "file_size": 15094, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#咖金黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1e645db8634c17ac0210180dc76fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1e645db8634c17ac0210180dc76fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1e645db8634c17ac0210180dc76fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b1e645db8634c17ac0210180dc76fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b1e645db8634c17ac0210180dc76fad.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ms_uXMVwql_rqD-zJHdCmw-cFmM=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.727277+00 2025-12-09 10:15:37.727283+00 16877 DL31545-2#前幅42#姜黄 SPMX-20240815312094 \N \N \N 1 \N [{"file_id": "0257ce4a-01e8-4402-b0c7-8521a1efc12b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cd6168caba8463691ed36cf79de5445.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cd6168caba8463691ed36cf79de5445.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cd6168caba8463691ed36cf79de5445.jpg", "file_size": 15632, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#前幅42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6168caba8463691ed36cf79de5445.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6168caba8463691ed36cf79de5445.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cd6168caba8463691ed36cf79de5445.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cd6168caba8463691ed36cf79de5445.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cd6168caba8463691ed36cf79de5445.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16MbYrVpmXoLLJj3Uum3hqYRh6s=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.730178+00 2025-12-09 10:15:37.730185+00 16878 85035#乱花 SPMX-20240815312095 \N \N \N 1 \N [{"file_id": "5e5fb2d7-0e29-4414-8519-e6b5fc5f1c06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg", "file_size": 7197, "is_delete": false, "file_type": 1, "original_file_name": "85035#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fdf0bed74bb4ba7b35ba76cd9b0bcab.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7zVKDbve40IhpYcF3x0BXxXOjA=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.732889+00 2025-12-09 10:15:37.732895+00 16879 2307-1FWF#V5曲线 SPMX-20240815312099 \N \N \N 1 \N [{"file_id": "8270442c-67f9-4bda-9070-04ee3ed7794b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e4c97541ea749289ab145071efa9ea9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e4c97541ea749289ab145071efa9ea9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e4c97541ea749289ab145071efa9ea9.jpg", "file_size": 17355, "is_delete": false, "file_type": 1, "original_file_name": "2307-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4c97541ea749289ab145071efa9ea9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4c97541ea749289ab145071efa9ea9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4c97541ea749289ab145071efa9ea9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e4c97541ea749289ab145071efa9ea9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e4c97541ea749289ab145071efa9ea9.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoBIsJBenunZyK-e44RZSHM-a0s=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.735746+00 2025-12-09 10:15:37.735752+00 16880 CCH003FWE#原版色VS-D3 SPMX-20240815312093 \N \N \N 1 \N [{"file_id": "aaa5a2d3-3486-470a-a2a5-5195031214ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0048d484443c486c9eb7a556e9c66b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0048d484443c486c9eb7a556e9c66b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0048d484443c486c9eb7a556e9c66b5b.jpg", "file_size": 6885, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#原版色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0048d484443c486c9eb7a556e9c66b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0048d484443c486c9eb7a556e9c66b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0048d484443c486c9eb7a556e9c66b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0048d484443c486c9eb7a556e9c66b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0048d484443c486c9eb7a556e9c66b5b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vXJwx7kpnLzCbtVGETKVlRDoD8=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.738527+00 2025-12-09 10:15:37.738533+00 16881 JTSS759FW#粉VS-D3 SPMX-20240815312096 \N \N \N 1 \N [{"file_id": "86f6976a-3db8-4d17-aec2-6d0992190ddf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bd3c2d21c794c76b4a5377cdfac3915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bd3c2d21c794c76b4a5377cdfac3915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bd3c2d21c794c76b4a5377cdfac3915.jpg", "file_size": 12100, "is_delete": false, "file_type": 1, "original_file_name": "JTSS759FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd3c2d21c794c76b4a5377cdfac3915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd3c2d21c794c76b4a5377cdfac3915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bd3c2d21c794c76b4a5377cdfac3915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bd3c2d21c794c76b4a5377cdfac3915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bd3c2d21c794c76b4a5377cdfac3915.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZbmjAxKqE1ohjBOPGqO1vblFZo=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.741325+00 2025-12-09 10:15:37.741331+00 16882 1231-13FWF#小童6码 SPMX-20240815312098 \N \N \N 1 \N [{"file_id": "4296c99c-e38f-4bcf-9c7c-be7256aaf3f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fff632a9ea3b4c378cea6e3dc7f908d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fff632a9ea3b4c378cea6e3dc7f908d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fff632a9ea3b4c378cea6e3dc7f908d5.jpg", "file_size": 21303, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff632a9ea3b4c378cea6e3dc7f908d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff632a9ea3b4c378cea6e3dc7f908d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fff632a9ea3b4c378cea6e3dc7f908d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fff632a9ea3b4c378cea6e3dc7f908d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fff632a9ea3b4c378cea6e3dc7f908d5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJW0GYs0dswTi7ZKb9A0pNw4lt0=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.744156+00 2025-12-09 10:15:37.744163+00 16883 LZ1361#上身3号色 SPMX-20240815312102 \N \N \N 1 \N [{"file_id": "badc13dd-f974-4dfb-b085-b557f238dd9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23f5ee7c5d9742debbeee237ff75be0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23f5ee7c5d9742debbeee237ff75be0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23f5ee7c5d9742debbeee237ff75be0e.jpg", "file_size": 18017, "is_delete": false, "file_type": 1, "original_file_name": "LZ1361#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f5ee7c5d9742debbeee237ff75be0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f5ee7c5d9742debbeee237ff75be0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f5ee7c5d9742debbeee237ff75be0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23f5ee7c5d9742debbeee237ff75be0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23f5ee7c5d9742debbeee237ff75be0e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35ZYq42L4aHkLaG_LU9mmWBBDfM=", "createTime": "2024-08-15 15:01:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.746984+00 2025-12-09 10:15:37.746989+00 16884 FX0003-149#-黄色 SPMX-20240815312101 \N \N \N 1 \N [{"file_id": "31f05bc9-7224-44af-ae80-4f405a62a2c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d042d492cae456ca12cfa09f41a7168.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d042d492cae456ca12cfa09f41a7168.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d042d492cae456ca12cfa09f41a7168.jpg", "file_size": 54526, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d042d492cae456ca12cfa09f41a7168.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d042d492cae456ca12cfa09f41a7168.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d042d492cae456ca12cfa09f41a7168.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d042d492cae456ca12cfa09f41a7168.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d042d492cae456ca12cfa09f41a7168.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpjYvP9EGmaGTVlKVrNPnw2MP68=", "createTime": "2024-08-15 15:01:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.74961+00 2025-12-09 10:15:37.749617+00 16885 LJH1874#玫红 SPMX-20240815312106 \N \N \N 1 \N [{"file_id": "5cc6dac4-0b0d-4c57-bcea-309129b06c36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09a1309ab1944d9c9e5ce74827785b5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09a1309ab1944d9c9e5ce74827785b5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09a1309ab1944d9c9e5ce74827785b5f.jpg", "file_size": 69797, "is_delete": false, "file_type": 1, "original_file_name": "LJH1874#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a1309ab1944d9c9e5ce74827785b5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a1309ab1944d9c9e5ce74827785b5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09a1309ab1944d9c9e5ce74827785b5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09a1309ab1944d9c9e5ce74827785b5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09a1309ab1944d9c9e5ce74827785b5f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i96FKuNhBDzSMHJXeDmPdJy8wTE=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.752397+00 2025-12-09 10:15:37.752403+00 16886 85036#10码+12码 SPMX-20240815312104 \N \N \N 1 \N [{"file_id": "aabf3052-783c-4eca-8ce2-157339128dee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b3de32a2334969ae13d02a128e340b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b3de32a2334969ae13d02a128e340b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b3de32a2334969ae13d02a128e340b.jpg", "file_size": 19000, "is_delete": false, "file_type": 1, "original_file_name": "85036#10码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b3de32a2334969ae13d02a128e340b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b3de32a2334969ae13d02a128e340b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b3de32a2334969ae13d02a128e340b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b3de32a2334969ae13d02a128e340b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b3de32a2334969ae13d02a128e340b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NBJwL6XrZ3s8fu7yNCxhevqaA5s=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.75515+00 2025-12-09 10:15:37.755157+00 16887 1231-13FWF#小童8码+4码 SPMX-20240815312107 \N \N \N 1 \N [{"file_id": "e925c799-f7c3-4705-baff-2f651555f928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beeb68a56b224e86b8687dffe74d4e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beeb68a56b224e86b8687dffe74d4e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beeb68a56b224e86b8687dffe74d4e8a.jpg", "file_size": 21444, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beeb68a56b224e86b8687dffe74d4e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beeb68a56b224e86b8687dffe74d4e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beeb68a56b224e86b8687dffe74d4e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beeb68a56b224e86b8687dffe74d4e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beeb68a56b224e86b8687dffe74d4e8a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L1KdUX4KkomsxOuwfAuDNhq_GXg=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.757899+00 2025-12-09 10:15:37.757906+00 16888 FX0003-149#-黑色 SPMX-20240815312112 \N \N \N 1 \N [{"file_id": "c35332da-1bee-4a99-b277-4f3a1ebf2e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34d5441715b54ae4922f0571ec4276ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34d5441715b54ae4922f0571ec4276ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34d5441715b54ae4922f0571ec4276ae.jpg", "file_size": 55564, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d5441715b54ae4922f0571ec4276ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d5441715b54ae4922f0571ec4276ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d5441715b54ae4922f0571ec4276ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34d5441715b54ae4922f0571ec4276ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34d5441715b54ae4922f0571ec4276ae.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GIMGqmJTah489qA3JKwdN9BpIVo=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.760584+00 2025-12-09 10:15:37.76059+00 16889 HX004FW#VS-D3 SPMX-20240815312103 \N \N \N 1 \N [{"file_id": "2ae31239-f271-4b6c-bac8-0e820734652d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg", "file_size": 7614, "is_delete": false, "file_type": 1, "original_file_name": "HX004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0bdbe5a3c9348c88ca43a22a90b7c6b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlVykQAVFpYFPwKJkDDBP7VJpYM=", "createTime": "2024-08-15 15:01:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.763296+00 2025-12-09 10:15:37.763302+00 16890 JTSS760FW#VS-D3 SPMX-20240815312105 \N \N \N 1 \N [{"file_id": "c0c241b2-acd8-4f22-81a8-ea1579f212c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66273b68adb24fab9080e71076f2960d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66273b68adb24fab9080e71076f2960d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66273b68adb24fab9080e71076f2960d.jpg", "file_size": 9511, "is_delete": false, "file_type": 1, "original_file_name": "JTSS760FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66273b68adb24fab9080e71076f2960d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66273b68adb24fab9080e71076f2960d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66273b68adb24fab9080e71076f2960d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66273b68adb24fab9080e71076f2960d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66273b68adb24fab9080e71076f2960d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6AbVESH8DsZEOUdwu0W0o4AzSNM=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.766027+00 2025-12-09 10:15:37.766033+00 16891 LZ1361#上身4号色 SPMX-20240815312108 \N \N \N 1 \N [{"file_id": "7c413a7f-7f2b-4286-8fe2-4b2add51371e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08d76ce228384ceead0cd0762bfbb1a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08d76ce228384ceead0cd0762bfbb1a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08d76ce228384ceead0cd0762bfbb1a4.jpg", "file_size": 19192, "is_delete": false, "file_type": 1, "original_file_name": "LZ1361#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d76ce228384ceead0cd0762bfbb1a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d76ce228384ceead0cd0762bfbb1a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08d76ce228384ceead0cd0762bfbb1a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08d76ce228384ceead0cd0762bfbb1a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08d76ce228384ceead0cd0762bfbb1a4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfORbs0VWjWtFsXckOXQRFJ2uyk=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.768785+00 2025-12-09 10:15:37.768792+00 16892 2307-1FWF#V5曲线番禺调色 SPMX-20240815312113 \N \N \N 1 \N [{"file_id": "dae494d1-28b9-4315-b678-3fbec24fe90e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a82099bed274b6eb6eba005e1e5d35f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a82099bed274b6eb6eba005e1e5d35f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a82099bed274b6eb6eba005e1e5d35f.jpg", "file_size": 18835, "is_delete": false, "file_type": 1, "original_file_name": "2307-1FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a82099bed274b6eb6eba005e1e5d35f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a82099bed274b6eb6eba005e1e5d35f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a82099bed274b6eb6eba005e1e5d35f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a82099bed274b6eb6eba005e1e5d35f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a82099bed274b6eb6eba005e1e5d35f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADFkMKhHio6Y6X8JGavYfeaxhwE=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.771497+00 2025-12-09 10:15:37.771503+00 16893 0007-2FWE#橙黄色-番禺调色 SPMX-20240815312110 \N \N \N 1 \N [{"file_id": "8f1d1878-3df1-458d-a18c-d7918009c104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d4ad69de3443d08c507aec41a103b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d4ad69de3443d08c507aec41a103b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d4ad69de3443d08c507aec41a103b2.jpg", "file_size": 16321, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#橙黄色-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4ad69de3443d08c507aec41a103b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4ad69de3443d08c507aec41a103b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4ad69de3443d08c507aec41a103b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d4ad69de3443d08c507aec41a103b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d4ad69de3443d08c507aec41a103b2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZbtT1CTXfHDyEHRs0B8wr91S0zY=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.774184+00 2025-12-09 10:15:37.77419+00 16894 DL31545-2#前幅6#蓝绿 SPMX-20240815312109 \N \N \N 1 \N [{"file_id": "385d0213-0df6-4df8-94e0-f4cab3b534ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg", "file_size": 15553, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#前幅6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24c40ef6e6a34cb0bfffbcc16ee1eb0c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZleoUj3EjzU0qv3WJvClqlwDCSM=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.776874+00 2025-12-09 10:15:37.77688+00 16895 CCH003FWE#宝蓝粉绿VS-D3 SPMX-20240815312111 \N \N \N 1 \N [{"file_id": "81f64806-000a-4b38-9993-762812e62420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09e0b90a07b4ede994bea6147b6aaaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09e0b90a07b4ede994bea6147b6aaaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09e0b90a07b4ede994bea6147b6aaaa.jpg", "file_size": 7511, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#宝蓝粉绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09e0b90a07b4ede994bea6147b6aaaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09e0b90a07b4ede994bea6147b6aaaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09e0b90a07b4ede994bea6147b6aaaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09e0b90a07b4ede994bea6147b6aaaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09e0b90a07b4ede994bea6147b6aaaa.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xrrmWoPN5skqjFD9DCWuPNudjBo=", "createTime": "2024-08-15 15:01:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.77965+00 2025-12-09 10:15:37.779656+00 16896 0007-2FWE#橙黄色-龙潭调色 SPMX-20240815312120 \N \N \N 1 \N [{"file_id": "82018d86-3aef-4f3f-a49d-07551a5c4e0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3806cf688bc94cdd9647a96ebbd5fc6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3806cf688bc94cdd9647a96ebbd5fc6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3806cf688bc94cdd9647a96ebbd5fc6d.jpg", "file_size": 15732, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#橙黄色-龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3806cf688bc94cdd9647a96ebbd5fc6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3806cf688bc94cdd9647a96ebbd5fc6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3806cf688bc94cdd9647a96ebbd5fc6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3806cf688bc94cdd9647a96ebbd5fc6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3806cf688bc94cdd9647a96ebbd5fc6d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G89B29uYhcgH7CJ1r8PMWSw5Dlw=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.7824+00 2025-12-09 10:15:37.782407+00 16897 LJH1874#黑色 SPMX-20240815312125 \N \N \N 1 \N [{"file_id": "e9797fbe-27e4-4a26-8368-57c7db5ab960", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7275db08fc6a48cbbcce657bfcb0edc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7275db08fc6a48cbbcce657bfcb0edc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7275db08fc6a48cbbcce657bfcb0edc2.jpg", "file_size": 73241, "is_delete": false, "file_type": 1, "original_file_name": "LJH1874#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7275db08fc6a48cbbcce657bfcb0edc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7275db08fc6a48cbbcce657bfcb0edc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7275db08fc6a48cbbcce657bfcb0edc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7275db08fc6a48cbbcce657bfcb0edc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7275db08fc6a48cbbcce657bfcb0edc2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFk9JBHwRcGJibWVVCsD4khTlU8=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.785083+00 2025-12-09 10:15:37.78509+00 16898 HX004FWE#杏黄色VS-D3 SPMX-20240815312126 \N \N \N 1 \N [{"file_id": "f1af4517-c81c-4dbe-8c35-e0525666b522", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e36eac4bc644b1cafdefb0e876aaacb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e36eac4bc644b1cafdefb0e876aaacb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e36eac4bc644b1cafdefb0e876aaacb.jpg", "file_size": 7313, "is_delete": false, "file_type": 1, "original_file_name": "HX004FWE#杏黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e36eac4bc644b1cafdefb0e876aaacb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e36eac4bc644b1cafdefb0e876aaacb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e36eac4bc644b1cafdefb0e876aaacb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e36eac4bc644b1cafdefb0e876aaacb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e36eac4bc644b1cafdefb0e876aaacb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uuJuIAnUSbym3kevU74GPaLQqGY=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.787746+00 2025-12-09 10:15:37.787752+00 16899 1231-13FWF#小童袖领匹布 SPMX-20240815312119 \N \N \N 1 \N [{"file_id": "81bc615e-80b4-43ae-bc90-b0b00bfde04e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffcda79f21ad4ebfa562503ef7f61ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffcda79f21ad4ebfa562503ef7f61ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffcda79f21ad4ebfa562503ef7f61ce0.jpg", "file_size": 17337, "is_delete": false, "file_type": 1, "original_file_name": "1231-13FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffcda79f21ad4ebfa562503ef7f61ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffcda79f21ad4ebfa562503ef7f61ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffcda79f21ad4ebfa562503ef7f61ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffcda79f21ad4ebfa562503ef7f61ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffcda79f21ad4ebfa562503ef7f61ce0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEn-L_wwRKepZKJIGm0W9wwnlyg=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.790519+00 2025-12-09 10:15:37.790525+00 16900 JTSS762FW#VS-D3 SPMX-20240815312128 \N \N \N 1 \N [{"file_id": "3af14b52-bde6-4690-918d-c59e3ee70e63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb615b1548674126ae6dc06cd035389f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb615b1548674126ae6dc06cd035389f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb615b1548674126ae6dc06cd035389f.jpg", "file_size": 12802, "is_delete": false, "file_type": 1, "original_file_name": "JTSS762FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb615b1548674126ae6dc06cd035389f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb615b1548674126ae6dc06cd035389f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb615b1548674126ae6dc06cd035389f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb615b1548674126ae6dc06cd035389f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb615b1548674126ae6dc06cd035389f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8aLJPhVpEmb7OArOz-1MryvyDYA=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.793218+00 2025-12-09 10:15:37.793225+00 16901 JTSS761FW#VS-D3 SPMX-20240815312115 \N \N \N 1 \N [{"file_id": "ce370d86-7139-4e83-a8e7-eca25d7f800b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88fb7a00ea054143ad386a8835aacb8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88fb7a00ea054143ad386a8835aacb8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88fb7a00ea054143ad386a8835aacb8f.jpg", "file_size": 12586, "is_delete": false, "file_type": 1, "original_file_name": "JTSS761FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fb7a00ea054143ad386a8835aacb8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fb7a00ea054143ad386a8835aacb8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88fb7a00ea054143ad386a8835aacb8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88fb7a00ea054143ad386a8835aacb8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88fb7a00ea054143ad386a8835aacb8f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQGrvp5wq7fwV9kIGaWu7PqtdSk=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.795985+00 2025-12-09 10:15:37.795992+00 16902 LZ1362#上身1号色 SPMX-20240815312117 \N \N \N 1 \N [{"file_id": "f4339ecd-9c3c-43ce-87a8-c2ab6fe70a72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d82c40ec2db3473998c26e788f0f8a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d82c40ec2db3473998c26e788f0f8a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d82c40ec2db3473998c26e788f0f8a07.jpg", "file_size": 17855, "is_delete": false, "file_type": 1, "original_file_name": "LZ1362#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82c40ec2db3473998c26e788f0f8a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82c40ec2db3473998c26e788f0f8a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d82c40ec2db3473998c26e788f0f8a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d82c40ec2db3473998c26e788f0f8a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d82c40ec2db3473998c26e788f0f8a07.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4ynRMHBVHiONDEeaADNaltuJpY=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.798765+00 2025-12-09 10:15:37.798772+00 16903 2307-2FWE#杏色底牛奶丝抓毛 SPMX-20240815312123 \N \N \N 1 \N [{"file_id": "a3d2a8df-0393-4b86-a91c-dd452c77b659", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d2a42bbe2b24499b78565ac5ba8c8c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d2a42bbe2b24499b78565ac5ba8c8c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d2a42bbe2b24499b78565ac5ba8c8c2.jpg", "file_size": 18412, "is_delete": false, "file_type": 1, "original_file_name": "2307-2FWE#杏色底牛奶丝抓毛.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d2a42bbe2b24499b78565ac5ba8c8c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d2a42bbe2b24499b78565ac5ba8c8c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d2a42bbe2b24499b78565ac5ba8c8c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d2a42bbe2b24499b78565ac5ba8c8c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d2a42bbe2b24499b78565ac5ba8c8c2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5avK45HBAsGW2zDub1MY-1t4qUQ=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.801531+00 2025-12-09 10:15:37.801537+00 16904 LJH1874#白色 SPMX-20240815312114 \N \N \N 1 \N [{"file_id": "16cbe391-8d3e-4355-9ba4-b13cf10befb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dccfb66db66497e95b31be11f7ca7c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dccfb66db66497e95b31be11f7ca7c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dccfb66db66497e95b31be11f7ca7c8.jpg", "file_size": 68699, "is_delete": false, "file_type": 1, "original_file_name": "LJH1874#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dccfb66db66497e95b31be11f7ca7c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dccfb66db66497e95b31be11f7ca7c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dccfb66db66497e95b31be11f7ca7c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dccfb66db66497e95b31be11f7ca7c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dccfb66db66497e95b31be11f7ca7c8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNheJO6v54pEawWwUQeah4C0BOU=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.804256+00 2025-12-09 10:15:37.804263+00 16905 CCH003FWE#玫红金白VS-D3 SPMX-20240815312121 \N \N \N 1 \N [{"file_id": "894792a7-382e-4fcf-8e9a-c3abebfdf9e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2448ebaff1947909b93d56e8bccd7c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2448ebaff1947909b93d56e8bccd7c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2448ebaff1947909b93d56e8bccd7c2.jpg", "file_size": 7934, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#玫红金白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2448ebaff1947909b93d56e8bccd7c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2448ebaff1947909b93d56e8bccd7c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2448ebaff1947909b93d56e8bccd7c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2448ebaff1947909b93d56e8bccd7c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2448ebaff1947909b93d56e8bccd7c2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLphoziLKfAAAzcFf-cq-Tubz7c=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.806967+00 2025-12-09 10:15:37.806973+00 16906 85036#14码 SPMX-20240815312116 \N \N \N 1 \N [{"file_id": "f340124e-146c-493e-9de0-3eefe530626f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4aeea2b8b4cb4eac9005895809759005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4aeea2b8b4cb4eac9005895809759005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4aeea2b8b4cb4eac9005895809759005.jpg", "file_size": 17236, "is_delete": false, "file_type": 1, "original_file_name": "85036#14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aeea2b8b4cb4eac9005895809759005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aeea2b8b4cb4eac9005895809759005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aeea2b8b4cb4eac9005895809759005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4aeea2b8b4cb4eac9005895809759005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4aeea2b8b4cb4eac9005895809759005.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZHHBp3VeMrvyyvsg3t8p6WWiPBQ=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.809723+00 2025-12-09 10:15:37.809729+00 16907 1231-14FWE#中童12码+10码 SPMX-20240815312127 \N \N \N 1 \N [{"file_id": "ab1c25e1-7955-473c-91ea-b0348b396fdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f28035e0124915b21243b20c396557.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f28035e0124915b21243b20c396557.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f28035e0124915b21243b20c396557.jpg", "file_size": 22354, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f28035e0124915b21243b20c396557.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f28035e0124915b21243b20c396557.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f28035e0124915b21243b20c396557.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f28035e0124915b21243b20c396557.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f28035e0124915b21243b20c396557.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEauLQSNoAlF-9Ycr0JEpjVbcg8=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.812431+00 2025-12-09 10:15:37.812437+00 16908 HX004FWE#卡其色VS-D3 SPMX-20240815312118 \N \N \N 1 \N [{"file_id": "378507bf-3c79-4207-be66-8b6d0d138eab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f274df0e32a74a5190c92eeb3907df68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f274df0e32a74a5190c92eeb3907df68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f274df0e32a74a5190c92eeb3907df68.jpg", "file_size": 9456, "is_delete": false, "file_type": 1, "original_file_name": "HX004FWE#卡其色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f274df0e32a74a5190c92eeb3907df68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f274df0e32a74a5190c92eeb3907df68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f274df0e32a74a5190c92eeb3907df68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f274df0e32a74a5190c92eeb3907df68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f274df0e32a74a5190c92eeb3907df68.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFHXsjFNHbSpzwuSYvBsEw2fNx8=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.815185+00 2025-12-09 10:15:37.815191+00 16909 DL31545-2#前幅彩兰 SPMX-20240815312122 \N \N \N 1 \N [{"file_id": "20027722-156d-476f-8dcd-a77ee5bf8138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fb8d239b84147bba82cc76cd6cfd038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fb8d239b84147bba82cc76cd6cfd038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fb8d239b84147bba82cc76cd6cfd038.jpg", "file_size": 15752, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb8d239b84147bba82cc76cd6cfd038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb8d239b84147bba82cc76cd6cfd038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fb8d239b84147bba82cc76cd6cfd038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fb8d239b84147bba82cc76cd6cfd038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fb8d239b84147bba82cc76cd6cfd038.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZ2QguDVh_H7s1raPVlA410qScU=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.817915+00 2025-12-09 10:15:37.81792+00 16910 FX0003-149#RC23 SPMX-20240815312124 \N \N \N 1 \N [{"file_id": "2fae68a6-1f5c-4285-bcfe-d05ba3ab9c06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf8e78c2b3464168b0cd4bd42f73e552.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf8e78c2b3464168b0cd4bd42f73e552.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf8e78c2b3464168b0cd4bd42f73e552.jpg", "file_size": 27934, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-149#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8e78c2b3464168b0cd4bd42f73e552.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8e78c2b3464168b0cd4bd42f73e552.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8e78c2b3464168b0cd4bd42f73e552.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf8e78c2b3464168b0cd4bd42f73e552.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf8e78c2b3464168b0cd4bd42f73e552.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wlhv5C4mekei2cvDj-K73XVILvY=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.820668+00 2025-12-09 10:15:37.820673+00 16911 FX0003-15#红色 SPMX-20240815312135 \N \N \N 1 \N [{"file_id": "a85c54ff-07cd-4c6d-b5a4-bf41de86e446", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79debf6c75a8471993b0ab43707dfd23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79debf6c75a8471993b0ab43707dfd23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79debf6c75a8471993b0ab43707dfd23.jpg", "file_size": 14556, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-15#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79debf6c75a8471993b0ab43707dfd23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79debf6c75a8471993b0ab43707dfd23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79debf6c75a8471993b0ab43707dfd23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79debf6c75a8471993b0ab43707dfd23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79debf6c75a8471993b0ab43707dfd23.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_nzGPKSVGZMhybXkh4KyY2C_Ek=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.823547+00 2025-12-09 10:15:37.823553+00 16912 1231-14FWE#中童14码 SPMX-20240815312139 \N \N \N 1 \N [{"file_id": "ce4b8d9c-508e-4f9f-bc8a-834f6df1d508", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ba797d093394c8f9214c6b63c9402d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ba797d093394c8f9214c6b63c9402d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ba797d093394c8f9214c6b63c9402d1.jpg", "file_size": 21826, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba797d093394c8f9214c6b63c9402d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba797d093394c8f9214c6b63c9402d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba797d093394c8f9214c6b63c9402d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ba797d093394c8f9214c6b63c9402d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ba797d093394c8f9214c6b63c9402d1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nUvfYyuCo_7K97DJu8SjwNco1GM=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.82635+00 2025-12-09 10:15:37.826357+00 16913 DL31545-2#前幅水红 SPMX-20240815312133 \N \N \N 1 \N [{"file_id": "086460b8-1db6-4569-8fa1-223381e09a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d921378c68294a42a59968f2519a53c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d921378c68294a42a59968f2519a53c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d921378c68294a42a59968f2519a53c4.jpg", "file_size": 14718, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#前幅水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d921378c68294a42a59968f2519a53c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d921378c68294a42a59968f2519a53c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d921378c68294a42a59968f2519a53c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d921378c68294a42a59968f2519a53c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d921378c68294a42a59968f2519a53c4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfRLl34GPdm7FZcnmHOH1aOgRbk=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.829092+00 2025-12-09 10:15:37.829098+00 16914 CCH003FWE#绿粉白VS-D3 SPMX-20240815312138 \N \N \N 1 \N [{"file_id": "77c8e692-3838-455e-9ee4-895dd675a101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88f84a08103249e096dac8fcc79b4b55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88f84a08103249e096dac8fcc79b4b55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88f84a08103249e096dac8fcc79b4b55.jpg", "file_size": 6652, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#绿粉白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f84a08103249e096dac8fcc79b4b55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f84a08103249e096dac8fcc79b4b55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f84a08103249e096dac8fcc79b4b55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88f84a08103249e096dac8fcc79b4b55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88f84a08103249e096dac8fcc79b4b55.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLxzDeXRte2bwvON9ZRvdEkbqgk=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.832149+00 2025-12-09 10:15:37.832155+00 16915 0007-2FWE#绿色 SPMX-20240815312132 \N \N \N 1 \N [{"file_id": "018661fc-8d19-4a71-ab9e-2608caf6cec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "167e60ec12384c48b8165a51a5a3b061.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "167e60ec12384c48b8165a51a5a3b061.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "167e60ec12384c48b8165a51a5a3b061.jpg", "file_size": 14425, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e60ec12384c48b8165a51a5a3b061.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e60ec12384c48b8165a51a5a3b061.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/167e60ec12384c48b8165a51a5a3b061.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/167e60ec12384c48b8165a51a5a3b061.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/167e60ec12384c48b8165a51a5a3b061.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:znvIphQyhboYDfBxnFpp5FKUEVo=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.835156+00 2025-12-09 10:15:37.835162+00 16916 HX004FWE#胭红色VS-D3 SPMX-20240815312136 \N \N \N 1 \N [{"file_id": "d258aa15-47c3-4f44-afb2-a997da42ffc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4127726dee904a9d99ede536997f271f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4127726dee904a9d99ede536997f271f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4127726dee904a9d99ede536997f271f.jpg", "file_size": 7660, "is_delete": false, "file_type": 1, "original_file_name": "HX004FWE#胭红色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4127726dee904a9d99ede536997f271f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4127726dee904a9d99ede536997f271f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4127726dee904a9d99ede536997f271f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4127726dee904a9d99ede536997f271f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4127726dee904a9d99ede536997f271f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHIEfteCbeMCIVgaWn3PoThzYMg=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.838123+00 2025-12-09 10:15:37.838129+00 16917 2307-2FWE#米白底牛奶丝抓毛 SPMX-20240815312134 \N \N \N 1 \N [{"file_id": "4e517568-3a1d-4ad9-b3de-1752d9dbc137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b783603116714168ae8970408c072041.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b783603116714168ae8970408c072041.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b783603116714168ae8970408c072041.jpg", "file_size": 17381, "is_delete": false, "file_type": 1, "original_file_name": "2307-2FWE#米白底牛奶丝抓毛.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b783603116714168ae8970408c072041.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b783603116714168ae8970408c072041.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b783603116714168ae8970408c072041.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b783603116714168ae8970408c072041.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b783603116714168ae8970408c072041.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pt9H5BIXlEo0ShAR_ZLGie4h9jo=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.84118+00 2025-12-09 10:15:37.841186+00 16918 CCH003FWE#白底VS-D3 SPMX-20240815312130 \N \N \N 1 \N [{"file_id": "f0cdcc14-cc5c-43c3-8bf2-16e11a00b454", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43f56dc0a2ea4c73acc74c6e5f7b8943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43f56dc0a2ea4c73acc74c6e5f7b8943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43f56dc0a2ea4c73acc74c6e5f7b8943.jpg", "file_size": 6951, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f56dc0a2ea4c73acc74c6e5f7b8943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f56dc0a2ea4c73acc74c6e5f7b8943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f56dc0a2ea4c73acc74c6e5f7b8943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43f56dc0a2ea4c73acc74c6e5f7b8943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43f56dc0a2ea4c73acc74c6e5f7b8943.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Vu-8bM1VuoCd8IfaYR_R1Cqj-U=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.844238+00 2025-12-09 10:15:37.844244+00 16919 85036#4码+8码 SPMX-20240815312131 \N \N \N 1 \N [{"file_id": "45431e5c-9631-4bd2-b793-119051002751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96c1fa0671194fbb811e08ddac583f57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96c1fa0671194fbb811e08ddac583f57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96c1fa0671194fbb811e08ddac583f57.jpg", "file_size": 18664, "is_delete": false, "file_type": 1, "original_file_name": "85036#4码+8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c1fa0671194fbb811e08ddac583f57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c1fa0671194fbb811e08ddac583f57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c1fa0671194fbb811e08ddac583f57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96c1fa0671194fbb811e08ddac583f57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96c1fa0671194fbb811e08ddac583f57.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lgXC44p4I9ayZaERv4VIiCfN50=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.84732+00 2025-12-09 10:15:37.847327+00 16920 LJH1877#2号色 SPMX-20240815312137 \N \N \N 1 \N [{"file_id": "29e31df6-a63b-43b9-9e14-2f40dbc3d229", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4189d2bbf0d749458022ca2effe0c593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4189d2bbf0d749458022ca2effe0c593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4189d2bbf0d749458022ca2effe0c593.jpg", "file_size": 84747, "is_delete": false, "file_type": 1, "original_file_name": "LJH1877#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4189d2bbf0d749458022ca2effe0c593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4189d2bbf0d749458022ca2effe0c593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4189d2bbf0d749458022ca2effe0c593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4189d2bbf0d749458022ca2effe0c593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4189d2bbf0d749458022ca2effe0c593.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4tbl4Fl9RWwDYxmuWi6YWbKcnSQ=", "createTime": "2024-08-15 15:01:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.850331+00 2025-12-09 10:15:37.850337+00 16921 LZ1362#上身2号色 SPMX-20240815312129 \N \N \N 1 \N [{"file_id": "30f21034-c631-4ed0-a008-5374b9092fdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89bb44ddbbf249158a8e01d3985a008f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89bb44ddbbf249158a8e01d3985a008f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89bb44ddbbf249158a8e01d3985a008f.jpg", "file_size": 17489, "is_delete": false, "file_type": 1, "original_file_name": "LZ1362#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bb44ddbbf249158a8e01d3985a008f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bb44ddbbf249158a8e01d3985a008f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89bb44ddbbf249158a8e01d3985a008f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89bb44ddbbf249158a8e01d3985a008f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89bb44ddbbf249158a8e01d3985a008f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f9cyCvmh2ACHA5Uind-eGOsCkHA=", "createTime": "2024-08-15 15:01:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.8534+00 2025-12-09 10:15:37.853406+00 16922 JTSS763FW#VS-D3 SPMX-20240815312142 \N \N \N 1 \N [{"file_id": "7003e4df-7c5d-4ff2-8019-78d57897dd00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f0259f6aaff4a9c92f1aa339f3c4f63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f0259f6aaff4a9c92f1aa339f3c4f63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f0259f6aaff4a9c92f1aa339f3c4f63.jpg", "file_size": 10089, "is_delete": false, "file_type": 1, "original_file_name": "JTSS763FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0259f6aaff4a9c92f1aa339f3c4f63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0259f6aaff4a9c92f1aa339f3c4f63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0259f6aaff4a9c92f1aa339f3c4f63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f0259f6aaff4a9c92f1aa339f3c4f63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f0259f6aaff4a9c92f1aa339f3c4f63.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I2kYbcmIlH5ft3bD_MABkQQGUSg=", "createTime": "2024-08-15 15:01:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.85608+00 2025-12-09 10:15:37.856086+00 16923 LZ1362#上身3号色 SPMX-20240815312140 \N \N \N 1 \N [{"file_id": "0701c658-d3f3-4f28-83e0-26b574e73d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5faccc8c00ab4568b134fff2cde62484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5faccc8c00ab4568b134fff2cde62484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5faccc8c00ab4568b134fff2cde62484.jpg", "file_size": 17789, "is_delete": false, "file_type": 1, "original_file_name": "LZ1362#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5faccc8c00ab4568b134fff2cde62484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5faccc8c00ab4568b134fff2cde62484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5faccc8c00ab4568b134fff2cde62484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5faccc8c00ab4568b134fff2cde62484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5faccc8c00ab4568b134fff2cde62484.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZsPefYJiZNzG2j9r-82mSi-mkbU=", "createTime": "2024-08-15 15:01:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.858911+00 2025-12-09 10:15:37.858917+00 16924 85036#6码 SPMX-20240815312141 \N \N \N 1 \N [{"file_id": "3910e427-0495-4c18-94d0-2999b89781b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2a21c84ab9542a8b72e8258d2de7f56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2a21c84ab9542a8b72e8258d2de7f56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2a21c84ab9542a8b72e8258d2de7f56.jpg", "file_size": 18744, "is_delete": false, "file_type": 1, "original_file_name": "85036#6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2a21c84ab9542a8b72e8258d2de7f56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2a21c84ab9542a8b72e8258d2de7f56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2a21c84ab9542a8b72e8258d2de7f56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2a21c84ab9542a8b72e8258d2de7f56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2a21c84ab9542a8b72e8258d2de7f56.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBAb4aLDmGTqIpT0oa8bIsKAMNQ=", "createTime": "2024-08-15 15:01:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.861673+00 2025-12-09 10:15:37.861679+00 16925 85036#乱花 SPMX-20240815312153 \N \N \N 1 \N [{"file_id": "be5b52c1-5170-4a7d-bd98-29247b400065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d0c1762e6c44d82a192fbecc3ba27d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d0c1762e6c44d82a192fbecc3ba27d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d0c1762e6c44d82a192fbecc3ba27d3.jpg", "file_size": 7832, "is_delete": false, "file_type": 1, "original_file_name": "85036#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c1762e6c44d82a192fbecc3ba27d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c1762e6c44d82a192fbecc3ba27d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c1762e6c44d82a192fbecc3ba27d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d0c1762e6c44d82a192fbecc3ba27d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d0c1762e6c44d82a192fbecc3ba27d3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufrGDPBwMA9zahqQP2jrYWcmhPE=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.864397+00 2025-12-09 10:15:37.864404+00 16926 1231-14FWE#中童匹布 SPMX-20240815312150 \N \N \N 1 \N [{"file_id": "c920d074-4d5f-4cd7-b268-6fb1ba65cdaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39f3107fca074f3fae29a26c15b7f136.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39f3107fca074f3fae29a26c15b7f136.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39f3107fca074f3fae29a26c15b7f136.jpg", "file_size": 20845, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#中童匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f3107fca074f3fae29a26c15b7f136.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f3107fca074f3fae29a26c15b7f136.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39f3107fca074f3fae29a26c15b7f136.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39f3107fca074f3fae29a26c15b7f136.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39f3107fca074f3fae29a26c15b7f136.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x0py7RwIpRYMolt8Hr685fNAnhI=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.867192+00 2025-12-09 10:15:37.867198+00 16927 LJH1877#3号色 SPMX-20240815312143 \N \N \N 1 \N [{"file_id": "8dddbf55-993a-47b4-8e8f-6bea1d2feffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8169c33314847eb988c617cc9384ee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8169c33314847eb988c617cc9384ee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8169c33314847eb988c617cc9384ee5.jpg", "file_size": 84700, "is_delete": false, "file_type": 1, "original_file_name": "LJH1877#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8169c33314847eb988c617cc9384ee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8169c33314847eb988c617cc9384ee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8169c33314847eb988c617cc9384ee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8169c33314847eb988c617cc9384ee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8169c33314847eb988c617cc9384ee5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FE1Gykeg-t4mXfKe7N8DgUcEalI=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.872793+00 2025-12-09 10:15:37.872799+00 16929 JTSS764FW#白VS-D3 SPMX-20240815312151 \N \N \N 1 \N [{"file_id": "b6740b34-5421-41f9-99ad-2c2d652b6fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "898c572c61c84daaad8318ba8bee5da8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "898c572c61c84daaad8318ba8bee5da8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "898c572c61c84daaad8318ba8bee5da8.jpg", "file_size": 17810, "is_delete": false, "file_type": 1, "original_file_name": "JTSS764FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898c572c61c84daaad8318ba8bee5da8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898c572c61c84daaad8318ba8bee5da8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898c572c61c84daaad8318ba8bee5da8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/898c572c61c84daaad8318ba8bee5da8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/898c572c61c84daaad8318ba8bee5da8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zYiLNkApmpAvcIzQyy1XEEZzDiM=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.875507+00 2025-12-09 10:15:37.875515+00 16930 LJH1877#4号色 SPMX-20240815312154 \N \N \N 1 \N [{"file_id": "75add7c1-6b7f-4e94-a9ca-ac28b0ecd5f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d1816e7f73d41fd9170ac6492ddc9a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d1816e7f73d41fd9170ac6492ddc9a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d1816e7f73d41fd9170ac6492ddc9a7.jpg", "file_size": 85421, "is_delete": false, "file_type": 1, "original_file_name": "LJH1877#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1816e7f73d41fd9170ac6492ddc9a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1816e7f73d41fd9170ac6492ddc9a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1816e7f73d41fd9170ac6492ddc9a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d1816e7f73d41fd9170ac6492ddc9a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d1816e7f73d41fd9170ac6492ddc9a7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eD4vdgdKWulF5AH1D-SnMkEhzKs=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.878815+00 2025-12-09 10:15:37.878821+00 16931 2307FWE#VS-D3 SPMX-20240815312149 \N \N \N 1 \N [{"file_id": "6c1553ea-f06d-40c0-8923-4ae51abc6b25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbf838e873b246a79af842736795dbcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbf838e873b246a79af842736795dbcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbf838e873b246a79af842736795dbcb.jpg", "file_size": 17261, "is_delete": false, "file_type": 1, "original_file_name": "2307FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf838e873b246a79af842736795dbcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf838e873b246a79af842736795dbcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf838e873b246a79af842736795dbcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbf838e873b246a79af842736795dbcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbf838e873b246a79af842736795dbcb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VE1HikaSxc2n3heUo9NdxLyEwbQ=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.88184+00 2025-12-09 10:15:37.881846+00 16932 DL31545-2#前幅玫红 SPMX-20240815312144 \N \N \N 1 \N [{"file_id": "a6f1bef4-0a05-4598-839d-72c8471a46de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92564dea2e10460d85ea06973449090f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92564dea2e10460d85ea06973449090f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92564dea2e10460d85ea06973449090f.jpg", "file_size": 14901, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92564dea2e10460d85ea06973449090f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92564dea2e10460d85ea06973449090f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92564dea2e10460d85ea06973449090f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92564dea2e10460d85ea06973449090f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92564dea2e10460d85ea06973449090f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EuH_QlXv8uJ9tz_Bhhg8kemNT5o=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.884786+00 2025-12-09 10:15:37.884792+00 16933 0007-2FWE#蓝色 SPMX-20240815312147 \N \N \N 1 \N [{"file_id": "5889bd4f-cf2f-45a2-b790-cdd579064bd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad6f50b2d9904f41bc2dc26ab370c165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad6f50b2d9904f41bc2dc26ab370c165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad6f50b2d9904f41bc2dc26ab370c165.jpg", "file_size": 15432, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6f50b2d9904f41bc2dc26ab370c165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6f50b2d9904f41bc2dc26ab370c165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad6f50b2d9904f41bc2dc26ab370c165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad6f50b2d9904f41bc2dc26ab370c165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad6f50b2d9904f41bc2dc26ab370c165.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBpHxX6VchYGwGRF8cA3ObexmZk=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.887844+00 2025-12-09 10:15:37.887852+00 16934 CCH003FWE#蓝粉白VS-D3 SPMX-20240815312148 \N \N \N 1 \N [{"file_id": "ab2180af-35be-4ccf-a8bc-6fc7a43bda7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "798bd2a8c1714e5b849d38b5096ad9ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "798bd2a8c1714e5b849d38b5096ad9ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "798bd2a8c1714e5b849d38b5096ad9ae.jpg", "file_size": 6966, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#蓝粉白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798bd2a8c1714e5b849d38b5096ad9ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798bd2a8c1714e5b849d38b5096ad9ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798bd2a8c1714e5b849d38b5096ad9ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/798bd2a8c1714e5b849d38b5096ad9ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/798bd2a8c1714e5b849d38b5096ad9ae.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ifJigOGRzh6RMqKKPshbYCpjT5s=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.89085+00 2025-12-09 10:15:37.890856+00 16935 LZ1362#上身4号色 SPMX-20240815312152 \N \N \N 1 \N [{"file_id": "197463c2-349a-48a4-b1d2-0b6330f6cc94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e23409491b24a11a758a9d41ffea938.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e23409491b24a11a758a9d41ffea938.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e23409491b24a11a758a9d41ffea938.jpg", "file_size": 17476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1362#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e23409491b24a11a758a9d41ffea938.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e23409491b24a11a758a9d41ffea938.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e23409491b24a11a758a9d41ffea938.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e23409491b24a11a758a9d41ffea938.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e23409491b24a11a758a9d41ffea938.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lNHXEg52aAFOIA9Vqw8d5w1xJIw=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.870014+00 2025-12-09 10:15:37.87002+00 16928 FX0003-15#黄色 SPMX-20240815312146 \N \N \N 1 \N [{"file_id": "3e5e974a-4f56-4ec4-8fee-2d5ef93c262b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4767359a1ff447cea5cc3bb23f66cb00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4767359a1ff447cea5cc3bb23f66cb00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4767359a1ff447cea5cc3bb23f66cb00.jpg", "file_size": 14212, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-15#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4767359a1ff447cea5cc3bb23f66cb00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4767359a1ff447cea5cc3bb23f66cb00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4767359a1ff447cea5cc3bb23f66cb00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4767359a1ff447cea5cc3bb23f66cb00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4767359a1ff447cea5cc3bb23f66cb00.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ivt1oOQi8AFQtN6M6yXgQOS_QUI=", "createTime": "2024-08-15 15:01:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.897068+00 2025-12-09 10:15:37.897079+00 16936 DL31545-2#批布42#姜黄 SPMX-20240815312156 \N \N \N 1 \N [{"file_id": "5fb0f396-1782-4449-92ef-046c56e5ed8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd963a2602c84a90ab58bf84aa05808a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd963a2602c84a90ab58bf84aa05808a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd963a2602c84a90ab58bf84aa05808a.jpg", "file_size": 24372, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#批布42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd963a2602c84a90ab58bf84aa05808a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd963a2602c84a90ab58bf84aa05808a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd963a2602c84a90ab58bf84aa05808a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd963a2602c84a90ab58bf84aa05808a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd963a2602c84a90ab58bf84aa05808a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3eV2Akm1rD77uDpUw6Tktqqfqg=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.90005+00 2025-12-09 10:15:37.900057+00 16937 CCH003FWE#蓝金绿VS-D3 SPMX-20240815312157 \N \N \N 1 \N [{"file_id": "5637309e-805b-4484-a864-441d69b70e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4291031ee1344f328ffb2c2b7606502c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4291031ee1344f328ffb2c2b7606502c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4291031ee1344f328ffb2c2b7606502c.jpg", "file_size": 7482, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#蓝金绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4291031ee1344f328ffb2c2b7606502c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4291031ee1344f328ffb2c2b7606502c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4291031ee1344f328ffb2c2b7606502c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4291031ee1344f328ffb2c2b7606502c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4291031ee1344f328ffb2c2b7606502c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sI_Q8NRBBLI2ZtlNG58U9NJ8jxg=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.902995+00 2025-12-09 10:15:37.903001+00 16938 1231-14FWE#小童6码 SPMX-20240815312158 \N \N \N 1 \N [{"file_id": "7a1682c7-ece0-4a8a-a754-4d933e3d3577", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efc5db8a9f814126a5342b9829f468fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efc5db8a9f814126a5342b9829f468fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efc5db8a9f814126a5342b9829f468fd.jpg", "file_size": 25165, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5db8a9f814126a5342b9829f468fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5db8a9f814126a5342b9829f468fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5db8a9f814126a5342b9829f468fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efc5db8a9f814126a5342b9829f468fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efc5db8a9f814126a5342b9829f468fd.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QeENYwyNQieVPVV9sK7tcTxd1s=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.905965+00 2025-12-09 10:15:37.905971+00 16939 HX005# SPMX-20240815312155 \N \N \N 1 \N [{"file_id": "699fc406-8547-4315-9b48-d07c05bb4995", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61dec30eae704e468a8c28d5dbc3d0c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61dec30eae704e468a8c28d5dbc3d0c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61dec30eae704e468a8c28d5dbc3d0c4.jpg", "file_size": 13942, "is_delete": false, "file_type": 1, "original_file_name": "HX005#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dec30eae704e468a8c28d5dbc3d0c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dec30eae704e468a8c28d5dbc3d0c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dec30eae704e468a8c28d5dbc3d0c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61dec30eae704e468a8c28d5dbc3d0c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61dec30eae704e468a8c28d5dbc3d0c4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v400VU9YmlWWZnYiEJ5R2RRUmwo=", "createTime": "2024-08-15 15:01:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.908831+00 2025-12-09 10:15:37.908838+00 16940 850FWF#玫红 SPMX-20240815312159 \N \N \N 1 \N [{"file_id": "e0cd3bcf-3642-409e-80d1-1a954566786f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1f23b8279f4492697fea4f697fdf7b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1f23b8279f4492697fea4f697fdf7b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1f23b8279f4492697fea4f697fdf7b2.jpg", "file_size": 11110, "is_delete": false, "file_type": 1, "original_file_name": "850FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f23b8279f4492697fea4f697fdf7b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f23b8279f4492697fea4f697fdf7b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f23b8279f4492697fea4f697fdf7b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1f23b8279f4492697fea4f697fdf7b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1f23b8279f4492697fea4f697fdf7b2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RA8_W7AkNkUkYwhDz1EhFOIFrEc=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.911754+00 2025-12-09 10:15:37.911763+00 16941 HX005#绿VS-D3 SPMX-20240815312166 \N \N \N 1 \N [{"file_id": "8660b284-8ed4-4cc4-bda0-7674c7df94ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ffce0ac9f7b46a8a2df6299d3886af0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ffce0ac9f7b46a8a2df6299d3886af0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ffce0ac9f7b46a8a2df6299d3886af0.jpg", "file_size": 12596, "is_delete": false, "file_type": 1, "original_file_name": "HX005#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffce0ac9f7b46a8a2df6299d3886af0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffce0ac9f7b46a8a2df6299d3886af0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffce0ac9f7b46a8a2df6299d3886af0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ffce0ac9f7b46a8a2df6299d3886af0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ffce0ac9f7b46a8a2df6299d3886af0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjaFoBPZ8BdzeWDoPRgtXkH8Rp4=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.914681+00 2025-12-09 10:15:37.914687+00 16942 2307FWE#卡其色 SPMX-20240815312161 \N \N \N 1 \N [{"file_id": "0692554f-c8a6-4ef1-933c-baf790ad1c6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5eb94006f394c33a6044b8999be44a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5eb94006f394c33a6044b8999be44a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5eb94006f394c33a6044b8999be44a6.jpg", "file_size": 15892, "is_delete": false, "file_type": 1, "original_file_name": "2307FWE#卡其色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5eb94006f394c33a6044b8999be44a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5eb94006f394c33a6044b8999be44a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5eb94006f394c33a6044b8999be44a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5eb94006f394c33a6044b8999be44a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5eb94006f394c33a6044b8999be44a6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRya-6dARGlvqB5niSyTgH_cnh4=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.917649+00 2025-12-09 10:15:37.917655+00 16943 JTSS764FW#粉VS-D3 SPMX-20240815312163 \N \N \N 1 \N [{"file_id": "4f5597eb-4b20-45ac-9d1f-71946c2e0014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad3c73cc3e0f404dabf2919b4d2d7f07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad3c73cc3e0f404dabf2919b4d2d7f07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad3c73cc3e0f404dabf2919b4d2d7f07.jpg", "file_size": 17116, "is_delete": false, "file_type": 1, "original_file_name": "JTSS764FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3c73cc3e0f404dabf2919b4d2d7f07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3c73cc3e0f404dabf2919b4d2d7f07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad3c73cc3e0f404dabf2919b4d2d7f07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad3c73cc3e0f404dabf2919b4d2d7f07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad3c73cc3e0f404dabf2919b4d2d7f07.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AuM1AKDmpjOrOvxCKet7iYIg3b0=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.920575+00 2025-12-09 10:15:37.920582+00 16944 0007-2FWE#黑色 SPMX-20240815312164 \N \N \N 1 \N [{"file_id": "e76e27dc-659e-4259-a655-6cbc7a6366c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd522cb15cd4490587af96d0cc57d1f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd522cb15cd4490587af96d0cc57d1f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd522cb15cd4490587af96d0cc57d1f9.jpg", "file_size": 17225, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd522cb15cd4490587af96d0cc57d1f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd522cb15cd4490587af96d0cc57d1f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd522cb15cd4490587af96d0cc57d1f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd522cb15cd4490587af96d0cc57d1f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd522cb15cd4490587af96d0cc57d1f9.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2cSCqutlaJ_tLn8tQNNPPJYuy0=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.923539+00 2025-12-09 10:15:37.923545+00 16945 LZ1363#上身1号色 SPMX-20240815312160 \N \N \N 1 \N [{"file_id": "03c4f2e7-ba5a-4746-9a2c-c59bb071153e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5d6f656332d4d4f9c3cc81655f12620.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5d6f656332d4d4f9c3cc81655f12620.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5d6f656332d4d4f9c3cc81655f12620.jpg", "file_size": 15760, "is_delete": false, "file_type": 1, "original_file_name": "LZ1363#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d6f656332d4d4f9c3cc81655f12620.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d6f656332d4d4f9c3cc81655f12620.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d6f656332d4d4f9c3cc81655f12620.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5d6f656332d4d4f9c3cc81655f12620.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5d6f656332d4d4f9c3cc81655f12620.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-7BYspvHMifTvQHAzweqTRCDzo=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.926526+00 2025-12-09 10:15:37.926532+00 16946 DL31545-2#批布6#蓝绿 SPMX-20240815312167 \N \N \N 1 \N [{"file_id": "0e4e8be2-f4e7-4181-bcc2-fbb0dae3aaca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58402c52d1e14c7b8183471431d740f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58402c52d1e14c7b8183471431d740f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58402c52d1e14c7b8183471431d740f6.jpg", "file_size": 25311, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#批布6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58402c52d1e14c7b8183471431d740f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58402c52d1e14c7b8183471431d740f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58402c52d1e14c7b8183471431d740f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58402c52d1e14c7b8183471431d740f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58402c52d1e14c7b8183471431d740f6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNu0YaEVqw5FEmMUDdewfiK1I9w=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.929494+00 2025-12-09 10:15:37.9295+00 16947 1231-14FWE#小童8码+4码 SPMX-20240815312165 \N \N \N 1 \N [{"file_id": "113d6ee1-4b05-47e1-8511-6f0190a671c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf7743387f2d48879fcbe41e73ad3903.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf7743387f2d48879fcbe41e73ad3903.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf7743387f2d48879fcbe41e73ad3903.jpg", "file_size": 24289, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7743387f2d48879fcbe41e73ad3903.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7743387f2d48879fcbe41e73ad3903.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7743387f2d48879fcbe41e73ad3903.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf7743387f2d48879fcbe41e73ad3903.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf7743387f2d48879fcbe41e73ad3903.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qugDC0m_rMTrYX534Zx2_pHXfPA=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.932458+00 2025-12-09 10:15:37.932464+00 16948 LJH1877#5号色 SPMX-20240815312168 \N \N \N 1 \N [{"file_id": "a0056dfc-acd2-491c-a6a2-51007d1ecdad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "679e3c4101574b0d9b443990708514ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "679e3c4101574b0d9b443990708514ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "679e3c4101574b0d9b443990708514ee.jpg", "file_size": 83271, "is_delete": false, "file_type": 1, "original_file_name": "LJH1877#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679e3c4101574b0d9b443990708514ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679e3c4101574b0d9b443990708514ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679e3c4101574b0d9b443990708514ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/679e3c4101574b0d9b443990708514ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/679e3c4101574b0d9b443990708514ee.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KVB_jTK-qRTOYt_Yt8H5XDBfO94=", "createTime": "2024-08-15 15:01:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.935411+00 2025-12-09 10:15:37.935416+00 16949 FX0003-150#咖色 SPMX-20240815312162 \N \N \N 1 \N [{"file_id": "f91017da-2399-4284-baa4-f7637dbc5b72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "771fea99b37d489a8909b2e74f313bc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "771fea99b37d489a8909b2e74f313bc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "771fea99b37d489a8909b2e74f313bc9.jpg", "file_size": 42766, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-150#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771fea99b37d489a8909b2e74f313bc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771fea99b37d489a8909b2e74f313bc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/771fea99b37d489a8909b2e74f313bc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/771fea99b37d489a8909b2e74f313bc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/771fea99b37d489a8909b2e74f313bc9.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPFtZoawa4GWz91veELEbpppfEo=", "createTime": "2024-08-15 15:01:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.938391+00 2025-12-09 10:15:37.938397+00 16950 0007-2FWF#粉色 SPMX-20240815312169 \N \N \N 1 \N [{"file_id": "a87ab2de-ff1d-4478-9ce3-2918805bf67d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe01bbc71d4d41339152987db18d88fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe01bbc71d4d41339152987db18d88fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe01bbc71d4d41339152987db18d88fb.jpg", "file_size": 14870, "is_delete": false, "file_type": 1, "original_file_name": "0007-2FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe01bbc71d4d41339152987db18d88fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe01bbc71d4d41339152987db18d88fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe01bbc71d4d41339152987db18d88fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe01bbc71d4d41339152987db18d88fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe01bbc71d4d41339152987db18d88fb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GfaaaEuS9t16lG19QtyLmFHox44=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.941368+00 2025-12-09 10:15:37.941374+00 16951 850FWF#黑色 SPMX-20240815312170 \N \N \N 1 \N [{"file_id": "a397c844-25de-40a4-8d92-df5ba864d335", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "528d7e294aef49b6ac566c4206cab657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "528d7e294aef49b6ac566c4206cab657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "528d7e294aef49b6ac566c4206cab657.jpg", "file_size": 13391, "is_delete": false, "file_type": 1, "original_file_name": "850FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528d7e294aef49b6ac566c4206cab657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528d7e294aef49b6ac566c4206cab657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/528d7e294aef49b6ac566c4206cab657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/528d7e294aef49b6ac566c4206cab657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/528d7e294aef49b6ac566c4206cab657.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_lf1B2FoxEaL5qHInAqWzdovfw=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.94465+00 2025-12-09 10:15:37.944656+00 16952 HX005#蓝VS-D3 SPMX-20240815312171 \N \N \N 1 \N [{"file_id": "1e48f0a0-aa3b-4f2d-bbbf-b577e4454343", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a00cc58a7742c2b4d1ba0f31e71e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a00cc58a7742c2b4d1ba0f31e71e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a00cc58a7742c2b4d1ba0f31e71e8e.jpg", "file_size": 14752, "is_delete": false, "file_type": 1, "original_file_name": "HX005#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a00cc58a7742c2b4d1ba0f31e71e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a00cc58a7742c2b4d1ba0f31e71e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a00cc58a7742c2b4d1ba0f31e71e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a00cc58a7742c2b4d1ba0f31e71e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a00cc58a7742c2b4d1ba0f31e71e8e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzWaebXypR-21t0qre3X6H61c3U=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.947732+00 2025-12-09 10:15:37.947738+00 16953 LZ1363#上身2号色 SPMX-20240815312173 \N \N \N 1 \N [{"file_id": "a52d0e22-8ac0-4f89-9ea0-62f26bcd5d8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98b642b4b57c4b4280288d6b32690061.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98b642b4b57c4b4280288d6b32690061.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98b642b4b57c4b4280288d6b32690061.jpg", "file_size": 15743, "is_delete": false, "file_type": 1, "original_file_name": "LZ1363#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b642b4b57c4b4280288d6b32690061.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b642b4b57c4b4280288d6b32690061.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b642b4b57c4b4280288d6b32690061.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98b642b4b57c4b4280288d6b32690061.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98b642b4b57c4b4280288d6b32690061.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T4nnTBQX6D3cLIHjUB37U2OGoso=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.950531+00 2025-12-09 10:15:37.950537+00 16954 DL31545-2#批布彩兰 SPMX-20240815312174 \N \N \N 1 \N [{"file_id": "1ce6fe94-4b29-49bf-9b74-0c9c96b462ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ec09aecc34044f2a3a581d95077399a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ec09aecc34044f2a3a581d95077399a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ec09aecc34044f2a3a581d95077399a.jpg", "file_size": 23932, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec09aecc34044f2a3a581d95077399a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec09aecc34044f2a3a581d95077399a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec09aecc34044f2a3a581d95077399a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ec09aecc34044f2a3a581d95077399a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ec09aecc34044f2a3a581d95077399a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-pVb9JbZFy_zC_ucB1f26R-sDg=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.953466+00 2025-12-09 10:15:37.953472+00 16955 2307FWE#咖色 SPMX-20240815312179 \N \N \N 1 \N [{"file_id": "b0aab8ff-1c29-4685-8fce-2e79e6c72db7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "861a69f66fce4a7d8c7364e9d9331caa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "861a69f66fce4a7d8c7364e9d9331caa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "861a69f66fce4a7d8c7364e9d9331caa.jpg", "file_size": 15790, "is_delete": false, "file_type": 1, "original_file_name": "2307FWE#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861a69f66fce4a7d8c7364e9d9331caa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861a69f66fce4a7d8c7364e9d9331caa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861a69f66fce4a7d8c7364e9d9331caa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/861a69f66fce4a7d8c7364e9d9331caa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/861a69f66fce4a7d8c7364e9d9331caa.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BGaQjKmQag_VKIZ1ME_OlbZU_zc=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.956399+00 2025-12-09 10:15:37.956406+00 16956 0007-3FWF#V5曲线 SPMX-20240815312180 \N \N \N 1 \N [{"file_id": "02d807fc-27c4-4daf-b96d-e235fb6cd1af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "287cc8ecac814f088b0cbf1667859751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "287cc8ecac814f088b0cbf1667859751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "287cc8ecac814f088b0cbf1667859751.jpg", "file_size": 15431, "is_delete": false, "file_type": 1, "original_file_name": "0007-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287cc8ecac814f088b0cbf1667859751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287cc8ecac814f088b0cbf1667859751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/287cc8ecac814f088b0cbf1667859751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/287cc8ecac814f088b0cbf1667859751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/287cc8ecac814f088b0cbf1667859751.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfFDCs94DfQ4FnwgUR_m72b5bLc=", "createTime": "2024-08-15 15:01:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.959396+00 2025-12-09 10:15:37.959402+00 16957 LJH1877#白色 SPMX-20240815312176 \N \N \N 1 \N [{"file_id": "4160957f-5aea-4f68-b694-ec8270650a21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd69530c4524311a6caccd9acb5e2cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd69530c4524311a6caccd9acb5e2cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd69530c4524311a6caccd9acb5e2cb.jpg", "file_size": 80944, "is_delete": false, "file_type": 1, "original_file_name": "LJH1877#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd69530c4524311a6caccd9acb5e2cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd69530c4524311a6caccd9acb5e2cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd69530c4524311a6caccd9acb5e2cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd69530c4524311a6caccd9acb5e2cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd69530c4524311a6caccd9acb5e2cb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AEixHXbH8MNi8Emof2N8Gs5NLyU=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.962354+00 2025-12-09 10:15:37.96236+00 16958 CCH003FWE#金宝蓝白VS-D3 SPMX-20240815312178 \N \N \N 1 \N [{"file_id": "9294b321-5464-4d20-86ec-70a939f9d1d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea534210710a4618a17d8f88b34afe1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea534210710a4618a17d8f88b34afe1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea534210710a4618a17d8f88b34afe1f.jpg", "file_size": 8210, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#金宝蓝白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea534210710a4618a17d8f88b34afe1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea534210710a4618a17d8f88b34afe1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea534210710a4618a17d8f88b34afe1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea534210710a4618a17d8f88b34afe1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea534210710a4618a17d8f88b34afe1f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dlZWnViUE_Ie1s3yu7b70VlJagw=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.965423+00 2025-12-09 10:15:37.965429+00 16959 1231-14FWE#小童袖领匹布 SPMX-20240815312172 \N \N \N 1 \N [{"file_id": "1a319928-68c1-427f-86ee-edecc9fbd10a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41ccf20fad4f4c86895cee659f084deb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41ccf20fad4f4c86895cee659f084deb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41ccf20fad4f4c86895cee659f084deb.jpg", "file_size": 21385, "is_delete": false, "file_type": 1, "original_file_name": "1231-14FWE#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ccf20fad4f4c86895cee659f084deb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ccf20fad4f4c86895cee659f084deb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41ccf20fad4f4c86895cee659f084deb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41ccf20fad4f4c86895cee659f084deb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41ccf20fad4f4c86895cee659f084deb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6PWMOHKveQcgUpr4Rg7bMDFtd8M=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.968463+00 2025-12-09 10:15:37.968469+00 16960 JTSS765FW#VS-D3 SPMX-20240815312175 \N \N \N 1 \N [{"file_id": "70a7db7d-57f6-4c25-a90f-dd2a4c2b1314", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dd0eafaf4424e939c4983960c898d0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dd0eafaf4424e939c4983960c898d0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dd0eafaf4424e939c4983960c898d0f.jpg", "file_size": 11897, "is_delete": false, "file_type": 1, "original_file_name": "JTSS765FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd0eafaf4424e939c4983960c898d0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd0eafaf4424e939c4983960c898d0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dd0eafaf4424e939c4983960c898d0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dd0eafaf4424e939c4983960c898d0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dd0eafaf4424e939c4983960c898d0f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIvRR4scc4MauhfXRGhhN1s0-n4=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.971446+00 2025-12-09 10:15:37.971452+00 16961 FX0003-150#红色 SPMX-20240815312177 \N \N \N 1 \N [{"file_id": "7266fc07-77c4-4e57-94f0-1f7c3b239db1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9468473263c340caa537013a3ad1db05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9468473263c340caa537013a3ad1db05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9468473263c340caa537013a3ad1db05.jpg", "file_size": 40523, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-150#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9468473263c340caa537013a3ad1db05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9468473263c340caa537013a3ad1db05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9468473263c340caa537013a3ad1db05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9468473263c340caa537013a3ad1db05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9468473263c340caa537013a3ad1db05.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aYZdJc3ZN2vukmR8mkeForBCesQ=", "createTime": "2024-08-15 15:01:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.974404+00 2025-12-09 10:15:37.97441+00 16962 0007-3FWF#番禺调色 SPMX-20240815312191 \N \N \N 1 \N [{"file_id": "b116b6ff-e928-4d6f-a9f1-48820965e6d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ed06814d310465fbf7a09a69d77ea75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ed06814d310465fbf7a09a69d77ea75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ed06814d310465fbf7a09a69d77ea75.jpg", "file_size": 15719, "is_delete": false, "file_type": 1, "original_file_name": "0007-3FWF#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ed06814d310465fbf7a09a69d77ea75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ed06814d310465fbf7a09a69d77ea75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ed06814d310465fbf7a09a69d77ea75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ed06814d310465fbf7a09a69d77ea75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ed06814d310465fbf7a09a69d77ea75.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f37WZTHlvptoztfUfWnP0NJe_dc=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.97731+00 2025-12-09 10:15:37.977315+00 16963 8514#3XL SPMX-20240815312181 \N \N \N 1 \N [{"file_id": "4b99cdfa-8bad-45d7-a0c1-09a30cb7c748", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7009c9358b8247398ceb9c01741bb2eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7009c9358b8247398ceb9c01741bb2eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7009c9358b8247398ceb9c01741bb2eb.jpg", "file_size": 13781, "is_delete": false, "file_type": 1, "original_file_name": "8514#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009c9358b8247398ceb9c01741bb2eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009c9358b8247398ceb9c01741bb2eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7009c9358b8247398ceb9c01741bb2eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7009c9358b8247398ceb9c01741bb2eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7009c9358b8247398ceb9c01741bb2eb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RBCh4kal-n5l66Ur2UifYBCbT8I=", "createTime": "2024-08-15 15:01:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.980296+00 2025-12-09 10:15:37.980302+00 16964 LJH1878#1号色 SPMX-20240815312185 \N \N \N 1 \N [{"file_id": "eba5aba2-b552-4146-8570-b551ad7855e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4461edeb49840a2bc1ccc5fc628f571.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4461edeb49840a2bc1ccc5fc628f571.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4461edeb49840a2bc1ccc5fc628f571.jpg", "file_size": 52985, "is_delete": false, "file_type": 1, "original_file_name": "LJH1878#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4461edeb49840a2bc1ccc5fc628f571.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4461edeb49840a2bc1ccc5fc628f571.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4461edeb49840a2bc1ccc5fc628f571.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4461edeb49840a2bc1ccc5fc628f571.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4461edeb49840a2bc1ccc5fc628f571.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71mpQ1inCTm4LZis_7etKDTSsoc=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.983237+00 2025-12-09 10:15:37.983243+00 16965 2307FWE#黑色 SPMX-20240815312188 \N \N \N 1 \N [{"file_id": "0d8b29db-03b3-4fd4-9a53-08bedd604b03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7975a089ddf4553834ea21a9744edfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7975a089ddf4553834ea21a9744edfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7975a089ddf4553834ea21a9744edfd.jpg", "file_size": 16557, "is_delete": false, "file_type": 1, "original_file_name": "2307FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7975a089ddf4553834ea21a9744edfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7975a089ddf4553834ea21a9744edfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7975a089ddf4553834ea21a9744edfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7975a089ddf4553834ea21a9744edfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7975a089ddf4553834ea21a9744edfd.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUglrHA47_QTvlp1_oi3Kxg2lDw=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.986204+00 2025-12-09 10:15:37.986211+00 16966 JTSS766FW#VS-D3 SPMX-20240815312187 \N \N \N 1 \N [{"file_id": "eb1f31c9-772f-4a51-a9eb-ec33c673e071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4594784354704131a8c39e0f86073e62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4594784354704131a8c39e0f86073e62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4594784354704131a8c39e0f86073e62.jpg", "file_size": 8050, "is_delete": false, "file_type": 1, "original_file_name": "JTSS766FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4594784354704131a8c39e0f86073e62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4594784354704131a8c39e0f86073e62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4594784354704131a8c39e0f86073e62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4594784354704131a8c39e0f86073e62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4594784354704131a8c39e0f86073e62.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJ6DYAuypWyrNM6Z3nD2AHVWTQM=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.989162+00 2025-12-09 10:15:37.989168+00 16967 FX0003-151#RC23 SPMX-20240815312189 \N \N \N 1 \N [{"file_id": "115f4b3e-cbe6-4ac4-b208-d30fc26aca18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bb4db3fb3544623ad153fef4c45719c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bb4db3fb3544623ad153fef4c45719c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bb4db3fb3544623ad153fef4c45719c.jpg", "file_size": 43240, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-151#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb4db3fb3544623ad153fef4c45719c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb4db3fb3544623ad153fef4c45719c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bb4db3fb3544623ad153fef4c45719c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bb4db3fb3544623ad153fef4c45719c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bb4db3fb3544623ad153fef4c45719c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hqwl_ocNL0qKtm6fsjbZEYlYXS0=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.992099+00 2025-12-09 10:15:37.992104+00 16968 CCH003FWE#黑底VS-D3 SPMX-20240815312190 \N \N \N 1 \N [{"file_id": "6a70dc25-a246-4b8f-91b4-b377fed900a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aac1198888f4773b519e303a6b04cad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aac1198888f4773b519e303a6b04cad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aac1198888f4773b519e303a6b04cad.jpg", "file_size": 7547, "is_delete": false, "file_type": 1, "original_file_name": "CCH003FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac1198888f4773b519e303a6b04cad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac1198888f4773b519e303a6b04cad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aac1198888f4773b519e303a6b04cad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aac1198888f4773b519e303a6b04cad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aac1198888f4773b519e303a6b04cad.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8H9YYSMYh5HEKaCScM63hAdvJiQ=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.995068+00 2025-12-09 10:15:37.995074+00 16969 8514#4XL SPMX-20240815312192 \N \N \N 1 \N [{"file_id": "59eee5c9-3bc2-46ae-8a87-643c148c55af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "023fb519c34f4fda987264516a907c2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "023fb519c34f4fda987264516a907c2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "023fb519c34f4fda987264516a907c2c.jpg", "file_size": 13752, "is_delete": false, "file_type": 1, "original_file_name": "8514#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fb519c34f4fda987264516a907c2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fb519c34f4fda987264516a907c2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fb519c34f4fda987264516a907c2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/023fb519c34f4fda987264516a907c2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/023fb519c34f4fda987264516a907c2c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_SfIVkSsOThReem6_vRZ1o-pug=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:37.998027+00 2025-12-09 10:15:37.998033+00 16970 1231-15FWF#中童12码+10码 SPMX-20240815312186 \N \N \N 1 \N [{"file_id": "24644bd5-8263-486a-83f8-d6811375a6ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "896f8977bc334999b32838baaba086b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "896f8977bc334999b32838baaba086b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "896f8977bc334999b32838baaba086b3.jpg", "file_size": 19018, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896f8977bc334999b32838baaba086b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896f8977bc334999b32838baaba086b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/896f8977bc334999b32838baaba086b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/896f8977bc334999b32838baaba086b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/896f8977bc334999b32838baaba086b3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBJ3Ullm7wBTADWOHEvBA08W3kw=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.000975+00 2025-12-09 10:15:38.000981+00 16971 HX005FW#VS-D3 SPMX-20240815312182 \N \N \N 1 \N [{"file_id": "067411ea-d7e2-4493-bfc5-456817b935a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb6eeff93312448b96b733f0767b57c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb6eeff93312448b96b733f0767b57c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb6eeff93312448b96b733f0767b57c1.jpg", "file_size": 7277, "is_delete": false, "file_type": 1, "original_file_name": "HX005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6eeff93312448b96b733f0767b57c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6eeff93312448b96b733f0767b57c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb6eeff93312448b96b733f0767b57c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb6eeff93312448b96b733f0767b57c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb6eeff93312448b96b733f0767b57c1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwVKeh_NTugoC23tnfJurB87DqM=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.003923+00 2025-12-09 10:15:38.003929+00 16972 LZ1363#上身3号色 SPMX-20240815312183 \N \N \N 1 \N [{"file_id": "57b11a40-7baf-4469-89b3-a18f00058fb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba95e428198d47f39a2452b77802666b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba95e428198d47f39a2452b77802666b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba95e428198d47f39a2452b77802666b.jpg", "file_size": 14638, "is_delete": false, "file_type": 1, "original_file_name": "LZ1363#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba95e428198d47f39a2452b77802666b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba95e428198d47f39a2452b77802666b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba95e428198d47f39a2452b77802666b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba95e428198d47f39a2452b77802666b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba95e428198d47f39a2452b77802666b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Loz8HvFLhykxepJrUzPurwBidrM=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.006918+00 2025-12-09 10:15:38.006924+00 16973 DL31545-2#批布水红 SPMX-20240815312184 \N \N \N 1 \N [{"file_id": "80b60da3-1f62-4fd5-baa3-c144cfe8effc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd22d9f523554a63b30d826c1c51b6e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd22d9f523554a63b30d826c1c51b6e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd22d9f523554a63b30d826c1c51b6e5.jpg", "file_size": 23127, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#批布水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd22d9f523554a63b30d826c1c51b6e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd22d9f523554a63b30d826c1c51b6e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd22d9f523554a63b30d826c1c51b6e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd22d9f523554a63b30d826c1c51b6e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd22d9f523554a63b30d826c1c51b6e5.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R12pa-HW9ki9PtrNitfWfd1mSus=", "createTime": "2024-08-15 15:01:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.009857+00 2025-12-09 10:15:38.009864+00 16974 DL31545-2#批布玫红 SPMX-20240815312195 \N \N \N 1 \N [{"file_id": "fa9fa939-f579-400e-9564-403c17d92b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "336939d4e16d49ffac89ca85747de339.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "336939d4e16d49ffac89ca85747de339.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "336939d4e16d49ffac89ca85747de339.jpg", "file_size": 24197, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336939d4e16d49ffac89ca85747de339.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336939d4e16d49ffac89ca85747de339.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/336939d4e16d49ffac89ca85747de339.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/336939d4e16d49ffac89ca85747de339.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/336939d4e16d49ffac89ca85747de339.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKejUOrAUBQH6kBjazG4yUf0RkI=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.012908+00 2025-12-09 10:15:38.012915+00 16975 CCH0403-A#WJC22 SPMX-20240815312200 \N \N \N 1 \N [{"file_id": "2458a8ab-c007-4ef7-8a44-000ed3bcf239", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "545cd0f398b841f9ac63049538ea48b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "545cd0f398b841f9ac63049538ea48b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "545cd0f398b841f9ac63049538ea48b9.jpg", "file_size": 15796, "is_delete": false, "file_type": 1, "original_file_name": "CCH0403-A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545cd0f398b841f9ac63049538ea48b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545cd0f398b841f9ac63049538ea48b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/545cd0f398b841f9ac63049538ea48b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/545cd0f398b841f9ac63049538ea48b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/545cd0f398b841f9ac63049538ea48b9.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wcHTWJNz0FapRV2pWMGngQBtxe0=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.015888+00 2025-12-09 10:15:38.015894+00 16976 0007-A1#粉色 SPMX-20240815312201 \N \N \N 1 \N [{"file_id": "23127396-29f7-47f8-a335-7c434f29f95f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bc9ec488f5d4812bb1b421a9bed691b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bc9ec488f5d4812bb1b421a9bed691b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bc9ec488f5d4812bb1b421a9bed691b.jpg", "file_size": 17801, "is_delete": false, "file_type": 1, "original_file_name": "0007-A1#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc9ec488f5d4812bb1b421a9bed691b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc9ec488f5d4812bb1b421a9bed691b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bc9ec488f5d4812bb1b421a9bed691b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bc9ec488f5d4812bb1b421a9bed691b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bc9ec488f5d4812bb1b421a9bed691b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtVHn16aBbgntTYt8-GqBWTnHxo=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.01891+00 2025-12-09 10:15:38.018916+00 16977 8514#5XL SPMX-20240815312202 \N \N \N 1 \N [{"file_id": "31d5e759-5e09-495a-9400-c5ae2d6468fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ed3c3ee1d2f45eba0a75796485bb42b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ed3c3ee1d2f45eba0a75796485bb42b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ed3c3ee1d2f45eba0a75796485bb42b.jpg", "file_size": 13865, "is_delete": false, "file_type": 1, "original_file_name": "8514#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed3c3ee1d2f45eba0a75796485bb42b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed3c3ee1d2f45eba0a75796485bb42b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed3c3ee1d2f45eba0a75796485bb42b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ed3c3ee1d2f45eba0a75796485bb42b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ed3c3ee1d2f45eba0a75796485bb42b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sk2HjzaZaGzC-sLR6ltNj8fMRY4=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.021919+00 2025-12-09 10:15:38.021926+00 16978 DL31545-2#袖子42#姜黄 SPMX-20240815312204 \N \N \N 1 \N [{"file_id": "a91bee82-690d-4d76-865c-ed29eac7c874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eced3dfbc86430181fae75603901337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eced3dfbc86430181fae75603901337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eced3dfbc86430181fae75603901337.jpg", "file_size": 14813, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#袖子42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eced3dfbc86430181fae75603901337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eced3dfbc86430181fae75603901337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eced3dfbc86430181fae75603901337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eced3dfbc86430181fae75603901337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eced3dfbc86430181fae75603901337.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Ca8Gg8RcGpxwt8qgDh-R--xbVw=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.024889+00 2025-12-09 10:15:38.024895+00 16979 JTSS767FW#VS-D3 SPMX-20240815312196 \N \N \N 1 \N [{"file_id": "7d279162-5a27-489e-b0eb-6b30c30d4fe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4434b9fb93e74095afac0ea3dc5b1c05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4434b9fb93e74095afac0ea3dc5b1c05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4434b9fb93e74095afac0ea3dc5b1c05.jpg", "file_size": 14610, "is_delete": false, "file_type": 1, "original_file_name": "JTSS767FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4434b9fb93e74095afac0ea3dc5b1c05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4434b9fb93e74095afac0ea3dc5b1c05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4434b9fb93e74095afac0ea3dc5b1c05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4434b9fb93e74095afac0ea3dc5b1c05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4434b9fb93e74095afac0ea3dc5b1c05.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TR_4WIIEs2FQZSXhcIMXtUOBGAk=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.027839+00 2025-12-09 10:15:38.027845+00 16980 HX006#VS-D3 SPMX-20240815312193 \N \N \N 1 \N [{"file_id": "d47c6086-903c-4ea4-a3a3-933e52acd287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3bd99f436bc4974a639cc2643a45ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3bd99f436bc4974a639cc2643a45ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3bd99f436bc4974a639cc2643a45ee0.jpg", "file_size": 30617, "is_delete": false, "file_type": 1, "original_file_name": "HX006#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd99f436bc4974a639cc2643a45ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd99f436bc4974a639cc2643a45ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3bd99f436bc4974a639cc2643a45ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3bd99f436bc4974a639cc2643a45ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3bd99f436bc4974a639cc2643a45ee0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUkelMS-7-DQm7HSUHpVZfxJ9FI=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.030774+00 2025-12-09 10:15:38.03078+00 16981 HX007#VS-D3 SPMX-20240815312205 \N \N \N 1 \N [{"file_id": "9e4f3e3c-612a-4bbd-afb0-203bce4be306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cea18e4d4d214b0fb0b4f4a743700c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cea18e4d4d214b0fb0b4f4a743700c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cea18e4d4d214b0fb0b4f4a743700c5a.jpg", "file_size": 11628, "is_delete": false, "file_type": 1, "original_file_name": "HX007#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea18e4d4d214b0fb0b4f4a743700c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea18e4d4d214b0fb0b4f4a743700c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cea18e4d4d214b0fb0b4f4a743700c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cea18e4d4d214b0fb0b4f4a743700c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cea18e4d4d214b0fb0b4f4a743700c5a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBahvv-yB4mR5PoJy5N2u1CXCEM=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.03377+00 2025-12-09 10:15:38.033776+00 16982 2308-1FWF#V5曲线 SPMX-20240815312203 \N \N \N 1 \N [{"file_id": "98459b07-b41d-4213-bbca-c9561ccc90fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5df2c1a030f44139912f6cf17d8b2d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5df2c1a030f44139912f6cf17d8b2d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5df2c1a030f44139912f6cf17d8b2d1.jpg", "file_size": 20650, "is_delete": false, "file_type": 1, "original_file_name": "2308-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df2c1a030f44139912f6cf17d8b2d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df2c1a030f44139912f6cf17d8b2d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5df2c1a030f44139912f6cf17d8b2d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5df2c1a030f44139912f6cf17d8b2d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5df2c1a030f44139912f6cf17d8b2d1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCTXL8-Ia6C-Vb3LHeHoGQZnOZE=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.036735+00 2025-12-09 10:15:38.036741+00 16983 1231-15FWF#中童12码 SPMX-20240815312198 \N \N \N 1 \N [{"file_id": "1040d34a-be5e-429c-8678-adc932d65406", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "806a1e86d9a2473ab1cd9bfa4351fb26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "806a1e86d9a2473ab1cd9bfa4351fb26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "806a1e86d9a2473ab1cd9bfa4351fb26.jpg", "file_size": 19138, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#中童12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806a1e86d9a2473ab1cd9bfa4351fb26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806a1e86d9a2473ab1cd9bfa4351fb26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806a1e86d9a2473ab1cd9bfa4351fb26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/806a1e86d9a2473ab1cd9bfa4351fb26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/806a1e86d9a2473ab1cd9bfa4351fb26.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HylUTbQJ5scngiyAsX5ZC7giQM0=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.039691+00 2025-12-09 10:15:38.039697+00 16984 LZ1363#上身4号色 SPMX-20240815312194 \N \N \N 1 \N [{"file_id": "ae13ef4d-f727-4bf1-be74-38490e97c105", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa2fc9aaa79e4807ac05b15a20a131ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa2fc9aaa79e4807ac05b15a20a131ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa2fc9aaa79e4807ac05b15a20a131ab.jpg", "file_size": 15882, "is_delete": false, "file_type": 1, "original_file_name": "LZ1363#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2fc9aaa79e4807ac05b15a20a131ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2fc9aaa79e4807ac05b15a20a131ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa2fc9aaa79e4807ac05b15a20a131ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa2fc9aaa79e4807ac05b15a20a131ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa2fc9aaa79e4807ac05b15a20a131ab.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qas-QJekWgMcNUBwCxn9Rgys4Jg=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.042678+00 2025-12-09 10:15:38.042684+00 16985 FX0003-152#RC23 SPMX-20240815312197 \N \N \N 1 \N [{"file_id": "aa0016bc-ba06-43f8-bace-0a40b0383e04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba9059ed51e745fdb48a65aa88661b21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba9059ed51e745fdb48a65aa88661b21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba9059ed51e745fdb48a65aa88661b21.jpg", "file_size": 74686, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-152#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9059ed51e745fdb48a65aa88661b21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9059ed51e745fdb48a65aa88661b21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9059ed51e745fdb48a65aa88661b21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba9059ed51e745fdb48a65aa88661b21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba9059ed51e745fdb48a65aa88661b21.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hBVKExB9UwhPllGe7QWcbDZmbMw=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.045867+00 2025-12-09 10:15:38.045873+00 16986 LJH1878#原版色 SPMX-20240815312199 \N \N \N 1 \N [{"file_id": "30100ab7-3b3e-4f00-bb97-aea2883fa7af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e09cc8d5724e17b4a632c3d3e3e095.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e09cc8d5724e17b4a632c3d3e3e095.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e09cc8d5724e17b4a632c3d3e3e095.jpg", "file_size": 49765, "is_delete": false, "file_type": 1, "original_file_name": "LJH1878#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09cc8d5724e17b4a632c3d3e3e095.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09cc8d5724e17b4a632c3d3e3e095.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e09cc8d5724e17b4a632c3d3e3e095.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e09cc8d5724e17b4a632c3d3e3e095.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e09cc8d5724e17b4a632c3d3e3e095.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VAe4I_1ZmxGfFLPRLwdkupo2V0w=", "createTime": "2024-08-15 15:01:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.048872+00 2025-12-09 10:15:38.048878+00 16987 1231-15FWF#中童14码 SPMX-20240815312207 \N \N \N 1 \N [{"file_id": "09d49e7d-0969-472c-85b8-150009706305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61dff8ac9dd749b4a7a0dcd934b56b86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61dff8ac9dd749b4a7a0dcd934b56b86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61dff8ac9dd749b4a7a0dcd934b56b86.jpg", "file_size": 17597, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dff8ac9dd749b4a7a0dcd934b56b86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dff8ac9dd749b4a7a0dcd934b56b86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61dff8ac9dd749b4a7a0dcd934b56b86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61dff8ac9dd749b4a7a0dcd934b56b86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61dff8ac9dd749b4a7a0dcd934b56b86.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xplqMohk1NiQUVOzKalpC9_utWw=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.051808+00 2025-12-09 10:15:38.051814+00 16988 1231-15FWF#中童袖领匹布 SPMX-20240815312217 \N \N \N 1 \N [{"file_id": "7ffcbf5b-58a2-461b-9a80-cd30076afb01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f307c253b1cf41f890e43a43b4d8d65c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f307c253b1cf41f890e43a43b4d8d65c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f307c253b1cf41f890e43a43b4d8d65c.jpg", "file_size": 12431, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f307c253b1cf41f890e43a43b4d8d65c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f307c253b1cf41f890e43a43b4d8d65c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f307c253b1cf41f890e43a43b4d8d65c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f307c253b1cf41f890e43a43b4d8d65c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f307c253b1cf41f890e43a43b4d8d65c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNVbA4VamkPdSF3DgI00fwfaqn4=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.054841+00 2025-12-09 10:15:38.054847+00 16989 8518#10号黑兰 SPMX-20240815312212 \N \N \N 1 \N [{"file_id": "4b3af338-8b36-41a7-bc43-856b75f852ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e26a59402f39491582b0c7060ab4cb08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e26a59402f39491582b0c7060ab4cb08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e26a59402f39491582b0c7060ab4cb08.jpg", "file_size": 7437, "is_delete": false, "file_type": 1, "original_file_name": "8518#10号黑兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26a59402f39491582b0c7060ab4cb08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26a59402f39491582b0c7060ab4cb08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e26a59402f39491582b0c7060ab4cb08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e26a59402f39491582b0c7060ab4cb08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e26a59402f39491582b0c7060ab4cb08.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEjiZX_oQO4rdzvZzb56_Fqvafc=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.05796+00 2025-12-09 10:15:38.057966+00 16990 HX008# SPMX-20240815312214 \N \N \N 1 \N [{"file_id": "b9b2be26-b921-4aac-ab06-4391084ebe0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0adfad5f9fa6459ca411597789038c1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0adfad5f9fa6459ca411597789038c1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0adfad5f9fa6459ca411597789038c1e.jpg", "file_size": 16962, "is_delete": false, "file_type": 1, "original_file_name": "HX008#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adfad5f9fa6459ca411597789038c1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adfad5f9fa6459ca411597789038c1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adfad5f9fa6459ca411597789038c1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0adfad5f9fa6459ca411597789038c1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0adfad5f9fa6459ca411597789038c1e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7O3mzGpGmWbs4A3Z5qHiVGi2uI=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.060904+00 2025-12-09 10:15:38.060913+00 16991 DL31545-2#袖子6#蓝绿 SPMX-20240815312215 \N \N \N 1 \N [{"file_id": "ef9d812d-f887-4ece-b214-b3733152e953", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8322ee8f405f4fabad5bf503ef850826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8322ee8f405f4fabad5bf503ef850826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8322ee8f405f4fabad5bf503ef850826.jpg", "file_size": 14799, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#袖子6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8322ee8f405f4fabad5bf503ef850826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8322ee8f405f4fabad5bf503ef850826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8322ee8f405f4fabad5bf503ef850826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8322ee8f405f4fabad5bf503ef850826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8322ee8f405f4fabad5bf503ef850826.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LHtS6h0l3eHhHWnmVaNktkS5t_Q=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.063873+00 2025-12-09 10:15:38.063879+00 16992 FX0003-153#RC23 SPMX-20240815312210 \N \N \N 1 \N [{"file_id": "a1c64922-2da4-4fb5-8f08-2311ba0da7f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1afd0321d1740888f44126b28766c4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1afd0321d1740888f44126b28766c4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1afd0321d1740888f44126b28766c4e.jpg", "file_size": 37790, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-153#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1afd0321d1740888f44126b28766c4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1afd0321d1740888f44126b28766c4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1afd0321d1740888f44126b28766c4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1afd0321d1740888f44126b28766c4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1afd0321d1740888f44126b28766c4e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3KGpNpYR2xEGfsql8uWI1DLHODw=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.066881+00 2025-12-09 10:15:38.066887+00 16993 LZ1364#上身1号色 SPMX-20240815312209 \N \N \N 1 \N [{"file_id": "cbc7e59b-3551-4aa5-a0d8-569df13a8547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12062cc85c3425ba0c57ae6dfddd3ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12062cc85c3425ba0c57ae6dfddd3ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12062cc85c3425ba0c57ae6dfddd3ed.jpg", "file_size": 16893, "is_delete": false, "file_type": 1, "original_file_name": "LZ1364#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12062cc85c3425ba0c57ae6dfddd3ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12062cc85c3425ba0c57ae6dfddd3ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12062cc85c3425ba0c57ae6dfddd3ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12062cc85c3425ba0c57ae6dfddd3ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12062cc85c3425ba0c57ae6dfddd3ed.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3v8mSo3QSc0p3vhd2YiDPDUJde8=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.069936+00 2025-12-09 10:15:38.069942+00 16994 231#-定位裁-卡其 SPMX-20240815312216 \N \N \N 1 \N [{"file_id": "faf8d380-2b92-4fc2-bad3-bf15a7f1c8d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c00e0d9e3f240da871b8d04e6910967.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c00e0d9e3f240da871b8d04e6910967.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c00e0d9e3f240da871b8d04e6910967.jpg", "file_size": 80280, "is_delete": false, "file_type": 1, "original_file_name": "231#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c00e0d9e3f240da871b8d04e6910967.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c00e0d9e3f240da871b8d04e6910967.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c00e0d9e3f240da871b8d04e6910967.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c00e0d9e3f240da871b8d04e6910967.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c00e0d9e3f240da871b8d04e6910967.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyBspufuBq9U155gdiMAkU88FAw=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.072914+00 2025-12-09 10:15:38.07292+00 16995 LJH1878#黄色 SPMX-20240815312218 \N \N \N 1 \N [{"file_id": "6d1a8be1-6ae7-4fee-91b1-fcdc29459d83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a7c29dba3ab44e7987278ef2ce71bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a7c29dba3ab44e7987278ef2ce71bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a7c29dba3ab44e7987278ef2ce71bfb.jpg", "file_size": 52550, "is_delete": false, "file_type": 1, "original_file_name": "LJH1878#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c29dba3ab44e7987278ef2ce71bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c29dba3ab44e7987278ef2ce71bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7c29dba3ab44e7987278ef2ce71bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a7c29dba3ab44e7987278ef2ce71bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a7c29dba3ab44e7987278ef2ce71bfb.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66Wnx-Xf05OK8J9qqZQtJ8C6o04=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.075888+00 2025-12-09 10:15:38.075894+00 16996 0007-A1#紫色 SPMX-20240815312208 \N \N \N 1 \N [{"file_id": "1dff661a-6f8e-4789-ad5b-c5868dbeaef2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ee0bad46254a6a8cf52cce80213d32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ee0bad46254a6a8cf52cce80213d32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ee0bad46254a6a8cf52cce80213d32.jpg", "file_size": 21046, "is_delete": false, "file_type": 1, "original_file_name": "0007-A1#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ee0bad46254a6a8cf52cce80213d32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ee0bad46254a6a8cf52cce80213d32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ee0bad46254a6a8cf52cce80213d32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ee0bad46254a6a8cf52cce80213d32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ee0bad46254a6a8cf52cce80213d32.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kul3j0YOhwucWZ_gl3weiKHUdFY=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.078862+00 2025-12-09 10:15:38.078868+00 16997 CCH0403-B#WJC22 SPMX-20240815312213 \N \N \N 1 \N [{"file_id": "1155d2b2-9ed0-486e-a6b2-2266dfd3c77a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698d64545c7e4365bf7d945815f5bfe0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698d64545c7e4365bf7d945815f5bfe0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698d64545c7e4365bf7d945815f5bfe0.jpg", "file_size": 18958, "is_delete": false, "file_type": 1, "original_file_name": "CCH0403-B#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698d64545c7e4365bf7d945815f5bfe0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698d64545c7e4365bf7d945815f5bfe0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698d64545c7e4365bf7d945815f5bfe0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698d64545c7e4365bf7d945815f5bfe0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698d64545c7e4365bf7d945815f5bfe0.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUbP-g6bub1LnQPB_fAodj95Gvs=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.081825+00 2025-12-09 10:15:38.081831+00 16998 JTSS768FW#VS-D3 SPMX-20240815312211 \N \N \N 1 \N [{"file_id": "a7d2c177-b02e-46d8-834f-ec0a7a56c742", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c71dfcbe7ac24a639f1c7e4c03994d69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c71dfcbe7ac24a639f1c7e4c03994d69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c71dfcbe7ac24a639f1c7e4c03994d69.jpg", "file_size": 12093, "is_delete": false, "file_type": 1, "original_file_name": "JTSS768FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71dfcbe7ac24a639f1c7e4c03994d69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71dfcbe7ac24a639f1c7e4c03994d69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c71dfcbe7ac24a639f1c7e4c03994d69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c71dfcbe7ac24a639f1c7e4c03994d69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c71dfcbe7ac24a639f1c7e4c03994d69.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8_YPgR1doKiUe-XyfxFhjslYDw=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.084784+00 2025-12-09 10:15:38.08479+00 16999 LJH1878#玫红 SPMX-20240815312206 \N \N \N 1 \N [{"file_id": "61db18d4-02bf-4678-b1e8-2f77e7c805ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03893a74c00a459db34be60b42228581.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03893a74c00a459db34be60b42228581.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03893a74c00a459db34be60b42228581.jpg", "file_size": 40265, "is_delete": false, "file_type": 1, "original_file_name": "LJH1878#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03893a74c00a459db34be60b42228581.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03893a74c00a459db34be60b42228581.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03893a74c00a459db34be60b42228581.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03893a74c00a459db34be60b42228581.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03893a74c00a459db34be60b42228581.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pbo2eMTSfEeNOcZ2YLs00iUDHeg=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.087746+00 2025-12-09 10:15:38.087752+00 17000 0007-A1#蓝色 SPMX-20240815312219 \N \N \N 1 \N [{"file_id": "d5a3abff-c7c7-401d-9aaf-029e798501a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf47212d7408464faefc9c60d7986d61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf47212d7408464faefc9c60d7986d61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf47212d7408464faefc9c60d7986d61.jpg", "file_size": 19056, "is_delete": false, "file_type": 1, "original_file_name": "0007-A1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47212d7408464faefc9c60d7986d61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47212d7408464faefc9c60d7986d61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf47212d7408464faefc9c60d7986d61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf47212d7408464faefc9c60d7986d61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf47212d7408464faefc9c60d7986d61.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oc4dF0xVw-yjChNwQ_cc38yIK5U=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.090702+00 2025-12-09 10:15:38.090713+00 17001 FX0003-154#RC23 SPMX-20240815312221 \N \N \N 1 \N [{"file_id": "daea5d21-5ee4-4876-a52d-2b0e65d916ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a672b0aa8aa4813a750cfa013e61e44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a672b0aa8aa4813a750cfa013e61e44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a672b0aa8aa4813a750cfa013e61e44.jpg", "file_size": 67598, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-154#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a672b0aa8aa4813a750cfa013e61e44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a672b0aa8aa4813a750cfa013e61e44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a672b0aa8aa4813a750cfa013e61e44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a672b0aa8aa4813a750cfa013e61e44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a672b0aa8aa4813a750cfa013e61e44.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gRNRU6-w6CROmNPuzHpQVSOJFoM=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.093594+00 2025-12-09 10:15:38.0936+00 17002 CCH0403-C#WJC22 SPMX-20240815312224 \N \N \N 1 \N [{"file_id": "b141e0a8-95ec-40bf-a630-d5087e0f714f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ef63942f9be47d88754f64216c785c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ef63942f9be47d88754f64216c785c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ef63942f9be47d88754f64216c785c1.jpg", "file_size": 16862, "is_delete": false, "file_type": 1, "original_file_name": "CCH0403-C#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ef63942f9be47d88754f64216c785c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ef63942f9be47d88754f64216c785c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ef63942f9be47d88754f64216c785c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ef63942f9be47d88754f64216c785c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ef63942f9be47d88754f64216c785c1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35WRhlFG1XDpHwgHa_JwNtQGhns=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.096578+00 2025-12-09 10:15:38.096585+00 17003 231#-定位裁-橙色 SPMX-20240815312227 \N \N \N 1 \N [{"file_id": "d0bf543d-babe-4d08-a30b-23fda0a90798", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "223c1e7f795e4b69b58eaea76d74d630.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "223c1e7f795e4b69b58eaea76d74d630.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "223c1e7f795e4b69b58eaea76d74d630.jpg", "file_size": 83856, "is_delete": false, "file_type": 1, "original_file_name": "231#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223c1e7f795e4b69b58eaea76d74d630.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223c1e7f795e4b69b58eaea76d74d630.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/223c1e7f795e4b69b58eaea76d74d630.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/223c1e7f795e4b69b58eaea76d74d630.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/223c1e7f795e4b69b58eaea76d74d630.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyxn_5m1mvp8zP1SBmQQnl3n2OQ=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.099539+00 2025-12-09 10:15:38.099546+00 17004 LZ1364#上身3号色 SPMX-20240815312233 \N \N \N 1 \N [{"file_id": "4aaf01aa-0a8b-450e-ac5d-110322180f42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfcc02b4cee845f0ab3d64e798deccd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfcc02b4cee845f0ab3d64e798deccd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfcc02b4cee845f0ab3d64e798deccd2.jpg", "file_size": 16956, "is_delete": false, "file_type": 1, "original_file_name": "LZ1364#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcc02b4cee845f0ab3d64e798deccd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcc02b4cee845f0ab3d64e798deccd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfcc02b4cee845f0ab3d64e798deccd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfcc02b4cee845f0ab3d64e798deccd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfcc02b4cee845f0ab3d64e798deccd2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ODlpFkE5OArblmE-O6RFKzsy4V4=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.102597+00 2025-12-09 10:15:38.102604+00 17005 LZ1364#上身2号色 SPMX-20240815312223 \N \N \N 1 \N [{"file_id": "433eaee2-8291-49ab-b388-129cd546ec67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436b365391c24071b86548fa309f5cb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436b365391c24071b86548fa309f5cb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436b365391c24071b86548fa309f5cb7.jpg", "file_size": 16645, "is_delete": false, "file_type": 1, "original_file_name": "LZ1364#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436b365391c24071b86548fa309f5cb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436b365391c24071b86548fa309f5cb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436b365391c24071b86548fa309f5cb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436b365391c24071b86548fa309f5cb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436b365391c24071b86548fa309f5cb7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPfgNAl0gMULJoZDWv37Ux44hzg=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.10588+00 2025-12-09 10:15:38.105886+00 17006 JTSS770FW#VS-D3 SPMX-20240815312234 \N \N \N 1 \N [{"file_id": "697a711f-2c0a-4119-a2c4-b45c436d02ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ded100e50cd468e8bce8e28cc4f3728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ded100e50cd468e8bce8e28cc4f3728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ded100e50cd468e8bce8e28cc4f3728.jpg", "file_size": 14218, "is_delete": false, "file_type": 1, "original_file_name": "JTSS770FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ded100e50cd468e8bce8e28cc4f3728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ded100e50cd468e8bce8e28cc4f3728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ded100e50cd468e8bce8e28cc4f3728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ded100e50cd468e8bce8e28cc4f3728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ded100e50cd468e8bce8e28cc4f3728.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W6IT7lj5KtzBam-giYN2EOjilzo=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.108924+00 2025-12-09 10:15:38.10893+00 17007 LJH1880#橙色 SPMX-20240815312230 \N \N \N 1 \N [{"file_id": "6ad55e6b-0145-4ffd-b325-540d897aeb04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f451215050343839a4fde8a4f9ba5e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f451215050343839a4fde8a4f9ba5e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f451215050343839a4fde8a4f9ba5e8.jpg", "file_size": 65143, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f451215050343839a4fde8a4f9ba5e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f451215050343839a4fde8a4f9ba5e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f451215050343839a4fde8a4f9ba5e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f451215050343839a4fde8a4f9ba5e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f451215050343839a4fde8a4f9ba5e8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ufrae7VkDVZ8cYY23DXprfFR_zA=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.112006+00 2025-12-09 10:15:38.112015+00 17008 8518#20号枣红 SPMX-20240815312222 \N \N \N 1 \N [{"file_id": "88f967c3-e45c-486b-a1bb-945eb43e78a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg", "file_size": 7027, "is_delete": false, "file_type": 1, "original_file_name": "8518#20号枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f42fbcfe91cb4c68a6e0f8fcd0bdd17d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8NO-Oc-diOv5gUl52a2iXyrN4eM=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.115183+00 2025-12-09 10:15:38.115191+00 17009 8518#33号西瓜红 SPMX-20240815312232 \N \N \N 1 \N [{"file_id": "051a4ceb-3604-42fb-8030-9b4b8f8f31fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83a6b8ecfc8f4a7293defe41138bb2ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83a6b8ecfc8f4a7293defe41138bb2ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83a6b8ecfc8f4a7293defe41138bb2ef.jpg", "file_size": 6185, "is_delete": false, "file_type": 1, "original_file_name": "8518#33号西瓜红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a6b8ecfc8f4a7293defe41138bb2ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a6b8ecfc8f4a7293defe41138bb2ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83a6b8ecfc8f4a7293defe41138bb2ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83a6b8ecfc8f4a7293defe41138bb2ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83a6b8ecfc8f4a7293defe41138bb2ef.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iWu1TB7uoEKn--amSYVg_6fWkCk=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.118299+00 2025-12-09 10:15:38.118304+00 17010 JTSS769FW#VS-D3 SPMX-20240815312220 \N \N \N 1 \N [{"file_id": "199d8ac9-e5e4-42a4-b339-348e55bdc75a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bf007072b0346f4beff7cb77c231fe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bf007072b0346f4beff7cb77c231fe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bf007072b0346f4beff7cb77c231fe8.jpg", "file_size": 15786, "is_delete": false, "file_type": 1, "original_file_name": "JTSS769FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf007072b0346f4beff7cb77c231fe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf007072b0346f4beff7cb77c231fe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bf007072b0346f4beff7cb77c231fe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bf007072b0346f4beff7cb77c231fe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bf007072b0346f4beff7cb77c231fe8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50_MV7Rh97l8ApZyJEm8nBGRtWE=", "createTime": "2024-08-15 15:01:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.120968+00 2025-12-09 10:15:38.120974+00 17011 DL31545-2#袖子彩兰 SPMX-20240815312226 \N \N \N 1 \N [{"file_id": "dd90807c-fcef-416d-947a-46bd968ae2ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2508f9a65b4e569f4b649691b9d09d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2508f9a65b4e569f4b649691b9d09d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2508f9a65b4e569f4b649691b9d09d.jpg", "file_size": 14833, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2508f9a65b4e569f4b649691b9d09d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2508f9a65b4e569f4b649691b9d09d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2508f9a65b4e569f4b649691b9d09d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2508f9a65b4e569f4b649691b9d09d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2508f9a65b4e569f4b649691b9d09d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCJe1zDnR3qI5hvQuRSvY0tn2TU=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.123524+00 2025-12-09 10:15:38.123528+00 17012 1231-15FWF#小童6码 SPMX-20240815312228 \N \N \N 1 \N [{"file_id": "fdc290fe-5e47-49c9-8bc4-b15def5d2275", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87119d7247bd4b0c8d36f305eefa78d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87119d7247bd4b0c8d36f305eefa78d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87119d7247bd4b0c8d36f305eefa78d6.jpg", "file_size": 18699, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87119d7247bd4b0c8d36f305eefa78d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87119d7247bd4b0c8d36f305eefa78d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87119d7247bd4b0c8d36f305eefa78d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87119d7247bd4b0c8d36f305eefa78d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87119d7247bd4b0c8d36f305eefa78d6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePdZF0iEfl43r8F0K-iCpQSQOh8=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.125978+00 2025-12-09 10:15:38.125983+00 17013 0007-A1#黄色 SPMX-20240815312229 \N \N \N 1 \N [{"file_id": "86d4bd22-8c7e-4f57-8024-7ce22321f163", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f4c88136c124bdfb7c4cce39ee2a03b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f4c88136c124bdfb7c4cce39ee2a03b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f4c88136c124bdfb7c4cce39ee2a03b.jpg", "file_size": 19650, "is_delete": false, "file_type": 1, "original_file_name": "0007-A1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c88136c124bdfb7c4cce39ee2a03b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c88136c124bdfb7c4cce39ee2a03b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4c88136c124bdfb7c4cce39ee2a03b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f4c88136c124bdfb7c4cce39ee2a03b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f4c88136c124bdfb7c4cce39ee2a03b.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEgg5LKzHPs8obR4bzJVIWt9dG4=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.128396+00 2025-12-09 10:15:38.1284+00 17014 HX008#H SPMX-20240815312225 \N \N \N 1 \N [{"file_id": "d0bf0c6e-4b4b-4f6f-8f81-f94ac57459fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58d1b040136d4ebdab320fa08b2ac0e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58d1b040136d4ebdab320fa08b2ac0e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58d1b040136d4ebdab320fa08b2ac0e1.jpg", "file_size": 12807, "is_delete": false, "file_type": 1, "original_file_name": "HX008#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d1b040136d4ebdab320fa08b2ac0e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d1b040136d4ebdab320fa08b2ac0e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d1b040136d4ebdab320fa08b2ac0e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58d1b040136d4ebdab320fa08b2ac0e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58d1b040136d4ebdab320fa08b2ac0e1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5B5RTuk0fsQxCzlnlqYCjvRneLQ=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.130878+00 2025-12-09 10:15:38.130883+00 17015 FX0003-155#RC23 SPMX-20240815312231 \N \N \N 1 \N [{"file_id": "39329343-ccf8-40f1-b1ec-1f6b6fc89ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22116361eb4e461aa01ac0c71281fc1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22116361eb4e461aa01ac0c71281fc1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22116361eb4e461aa01ac0c71281fc1c.jpg", "file_size": 46844, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-155#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22116361eb4e461aa01ac0c71281fc1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22116361eb4e461aa01ac0c71281fc1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22116361eb4e461aa01ac0c71281fc1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22116361eb4e461aa01ac0c71281fc1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22116361eb4e461aa01ac0c71281fc1c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGNdwVm_CTcOVdKBuvSfx7-D1UM=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.133076+00 2025-12-09 10:15:38.13308+00 17016 0007-A2#玫红 SPMX-20240815312239 \N \N \N 1 \N [{"file_id": "a9f407f6-ab55-496a-86b4-b3f412833b09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26ce2ac3dcec42ee94727aa7fc8f3406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26ce2ac3dcec42ee94727aa7fc8f3406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26ce2ac3dcec42ee94727aa7fc8f3406.jpg", "file_size": 17160, "is_delete": false, "file_type": 1, "original_file_name": "0007-A2#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ce2ac3dcec42ee94727aa7fc8f3406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ce2ac3dcec42ee94727aa7fc8f3406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ce2ac3dcec42ee94727aa7fc8f3406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26ce2ac3dcec42ee94727aa7fc8f3406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26ce2ac3dcec42ee94727aa7fc8f3406.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YG7m99ByQV1SHW_dFeUYi5u4PgM=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.135551+00 2025-12-09 10:15:38.135556+00 17017 DL31545-2#袖子水红 SPMX-20240815312238 \N \N \N 1 \N [{"file_id": "1ac3882c-0d57-4f36-a15a-7be54b8a5be6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebf690f57def4c68b74776c4eb642cda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebf690f57def4c68b74776c4eb642cda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebf690f57def4c68b74776c4eb642cda.jpg", "file_size": 14382, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#袖子水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebf690f57def4c68b74776c4eb642cda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebf690f57def4c68b74776c4eb642cda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebf690f57def4c68b74776c4eb642cda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebf690f57def4c68b74776c4eb642cda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebf690f57def4c68b74776c4eb642cda.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:an2tIZQk49CxW3QHxuO-4cTnfYI=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.137929+00 2025-12-09 10:15:38.137933+00 17018 FX0003-156#RC23 SPMX-20240815312241 \N \N \N 1 \N [{"file_id": "710eb033-8222-41ae-b6b4-001d1b2ba35e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6203459c43164c088481dcc9142da2ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6203459c43164c088481dcc9142da2ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6203459c43164c088481dcc9142da2ee.jpg", "file_size": 53299, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-156#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6203459c43164c088481dcc9142da2ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6203459c43164c088481dcc9142da2ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6203459c43164c088481dcc9142da2ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6203459c43164c088481dcc9142da2ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6203459c43164c088481dcc9142da2ee.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqSBCSHXxPLAPfuk-h3MOYAu51w=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.140272+00 2025-12-09 10:15:38.140277+00 17019 8518#5号彩兰 SPMX-20240815312242 \N \N \N 1 \N [{"file_id": "4f3d982e-4e33-4925-9267-854fc2d08607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89a471e7dd1c431880697b118f76602a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89a471e7dd1c431880697b118f76602a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89a471e7dd1c431880697b118f76602a.jpg", "file_size": 6986, "is_delete": false, "file_type": 1, "original_file_name": "8518#5号彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a471e7dd1c431880697b118f76602a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a471e7dd1c431880697b118f76602a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89a471e7dd1c431880697b118f76602a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89a471e7dd1c431880697b118f76602a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89a471e7dd1c431880697b118f76602a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ksxo9J1yxogj5WeolyLAJbE14Q=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.143362+00 2025-12-09 10:15:38.143367+00 17020 CCH0403-D#WJC22 SPMX-20240815312235 \N \N \N 1 \N [{"file_id": "7713ffb8-4c8b-4edf-ae4f-f9e38b655735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78662f8c0c924c63a66d438dbe6ebb4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78662f8c0c924c63a66d438dbe6ebb4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78662f8c0c924c63a66d438dbe6ebb4f.jpg", "file_size": 20175, "is_delete": false, "file_type": 1, "original_file_name": "CCH0403-D#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78662f8c0c924c63a66d438dbe6ebb4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78662f8c0c924c63a66d438dbe6ebb4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78662f8c0c924c63a66d438dbe6ebb4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78662f8c0c924c63a66d438dbe6ebb4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78662f8c0c924c63a66d438dbe6ebb4f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UcVleVKjDvmg7B4pnhGVZlFIPA=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.146256+00 2025-12-09 10:15:38.146261+00 17021 1231-15FWF#小童袖领匹布 SPMX-20240815312249 \N \N \N 1 \N [{"file_id": "ac39c8bc-f0af-4e60-998d-be2c7b078873", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8122b14cf6d140c69a3222bdc00cd959.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8122b14cf6d140c69a3222bdc00cd959.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8122b14cf6d140c69a3222bdc00cd959.jpg", "file_size": 7791, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8122b14cf6d140c69a3222bdc00cd959.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8122b14cf6d140c69a3222bdc00cd959.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8122b14cf6d140c69a3222bdc00cd959.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8122b14cf6d140c69a3222bdc00cd959.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8122b14cf6d140c69a3222bdc00cd959.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ogj5b2bCrzgto9baTA_z561ensU=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.149064+00 2025-12-09 10:15:38.14907+00 17022 JTSS771FW#VS-D3 SPMX-20240815312245 \N \N \N 1 \N [{"file_id": "6b9d444d-607b-47b0-b266-974993e356d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee230828c2e64a2894d535c5ad5520dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee230828c2e64a2894d535c5ad5520dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee230828c2e64a2894d535c5ad5520dc.jpg", "file_size": 11871, "is_delete": false, "file_type": 1, "original_file_name": "JTSS771FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee230828c2e64a2894d535c5ad5520dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee230828c2e64a2894d535c5ad5520dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee230828c2e64a2894d535c5ad5520dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee230828c2e64a2894d535c5ad5520dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee230828c2e64a2894d535c5ad5520dc.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SMzaieb1LE6cZtZaceHQyNo1E40=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.151776+00 2025-12-09 10:15:38.151781+00 17023 HX008#VS-D3 SPMX-20240815312236 \N \N \N 1 \N [{"file_id": "74ada49d-1430-43f0-9552-0ee52681f5f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be1bd44e62f4b1282f615db0545e88a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be1bd44e62f4b1282f615db0545e88a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be1bd44e62f4b1282f615db0545e88a.jpg", "file_size": 15978, "is_delete": false, "file_type": 1, "original_file_name": "HX008#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1bd44e62f4b1282f615db0545e88a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1bd44e62f4b1282f615db0545e88a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be1bd44e62f4b1282f615db0545e88a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be1bd44e62f4b1282f615db0545e88a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be1bd44e62f4b1282f615db0545e88a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2Rgw_bAw11s5qdv2W3aGgoxlLE=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.154562+00 2025-12-09 10:15:38.154569+00 17024 CCH0555#土黄6公分 SPMX-20240815312246 \N \N \N 1 \N [{"file_id": "12c90416-96c4-43ed-b6ea-bf5e355e2f82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0a6d2f710124feabce0a76601da038d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0a6d2f710124feabce0a76601da038d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0a6d2f710124feabce0a76601da038d.jpg", "file_size": 29506, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#土黄6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a6d2f710124feabce0a76601da038d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a6d2f710124feabce0a76601da038d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0a6d2f710124feabce0a76601da038d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0a6d2f710124feabce0a76601da038d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0a6d2f710124feabce0a76601da038d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Vh8UqBl1-4YVCmzIiRVtozzA1o=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.15729+00 2025-12-09 10:15:38.157295+00 17025 HX009# H SPMX-20240815312247 \N \N \N 1 \N [{"file_id": "3df5cefa-4589-4f7d-ade0-d6aacc062bf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d092c57a8a624371a9f18f15fe7598ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d092c57a8a624371a9f18f15fe7598ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d092c57a8a624371a9f18f15fe7598ee.jpg", "file_size": 20977, "is_delete": false, "file_type": 1, "original_file_name": "HX009# H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092c57a8a624371a9f18f15fe7598ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092c57a8a624371a9f18f15fe7598ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092c57a8a624371a9f18f15fe7598ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d092c57a8a624371a9f18f15fe7598ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d092c57a8a624371a9f18f15fe7598ee.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QbyYeOAnRcyBc5ARUiZ3WhXiWbw=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.160036+00 2025-12-09 10:15:38.160043+00 17026 LZ1364#上身4号色 SPMX-20240815312244 \N \N \N 1 \N [{"file_id": "905969dc-a674-4d63-b757-6c64253b1232", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b1c2635e6a74424b8ede5154639d136.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b1c2635e6a74424b8ede5154639d136.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b1c2635e6a74424b8ede5154639d136.jpg", "file_size": 16916, "is_delete": false, "file_type": 1, "original_file_name": "LZ1364#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b1c2635e6a74424b8ede5154639d136.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b1c2635e6a74424b8ede5154639d136.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b1c2635e6a74424b8ede5154639d136.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b1c2635e6a74424b8ede5154639d136.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b1c2635e6a74424b8ede5154639d136.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Idf--wrwylVxoCK8IE3WhdDbay0=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.162771+00 2025-12-09 10:15:38.162777+00 17027 DL31545-2#袖子玫红 SPMX-20240815312248 \N \N \N 1 \N [{"file_id": "53b70077-0f55-4fb8-9414-22bb9670b602", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg", "file_size": 14798, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-2#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fb6f2e1cf874721a1941b3e4bf3fc9d.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K_EQqhsJmX3hOExbvSNAwAjYJbQ=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.165537+00 2025-12-09 10:15:38.165543+00 17028 231#-定位裁-白色 SPMX-20240815312237 \N \N \N 1 \N [{"file_id": "467ddb81-2686-4499-88d4-67dd116c669e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61c3e6a3a6b746ed975d7b33665c4ced.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61c3e6a3a6b746ed975d7b33665c4ced.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61c3e6a3a6b746ed975d7b33665c4ced.jpg", "file_size": 81163, "is_delete": false, "file_type": 1, "original_file_name": "231#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c3e6a3a6b746ed975d7b33665c4ced.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c3e6a3a6b746ed975d7b33665c4ced.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61c3e6a3a6b746ed975d7b33665c4ced.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61c3e6a3a6b746ed975d7b33665c4ced.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61c3e6a3a6b746ed975d7b33665c4ced.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7vhjZhlwpNNaFG5c1LzjIP6EQQ=", "createTime": "2024-08-15 15:01:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.168355+00 2025-12-09 10:15:38.168361+00 17029 1231-15FWF#小童8码+4码 SPMX-20240815312240 \N \N \N 1 \N [{"file_id": "1aca6edb-2811-4276-9f36-5068768d995b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7495426e5974558975d5fbc011dd647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7495426e5974558975d5fbc011dd647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7495426e5974558975d5fbc011dd647.jpg", "file_size": 19366, "is_delete": false, "file_type": 1, "original_file_name": "1231-15FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7495426e5974558975d5fbc011dd647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7495426e5974558975d5fbc011dd647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7495426e5974558975d5fbc011dd647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7495426e5974558975d5fbc011dd647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7495426e5974558975d5fbc011dd647.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f_Wj3kp_2GzthRxDbFNBAyO4hdI=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.17113+00 2025-12-09 10:15:38.171136+00 17030 LJH1880#粉色 SPMX-20240815312243 \N \N \N 1 \N [{"file_id": "4c5d0cbf-6862-4a69-a5da-8b4ce39e3113", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "423c931350e64bf7ac41ea759480b983.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "423c931350e64bf7ac41ea759480b983.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "423c931350e64bf7ac41ea759480b983.jpg", "file_size": 64791, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c931350e64bf7ac41ea759480b983.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c931350e64bf7ac41ea759480b983.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423c931350e64bf7ac41ea759480b983.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/423c931350e64bf7ac41ea759480b983.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/423c931350e64bf7ac41ea759480b983.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LI5hBUYgcwO8dq6v6nLX4FrKjYs=", "createTime": "2024-08-15 15:01:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.173917+00 2025-12-09 10:15:38.173923+00 17031 HX009# SPMX-20240815312256 \N \N \N 1 \N [{"file_id": "1da03403-e05c-4fb4-b45b-7694ec75d64f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "255e9c1f34794abf8920209a1a7f2183.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "255e9c1f34794abf8920209a1a7f2183.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "255e9c1f34794abf8920209a1a7f2183.jpg", "file_size": 17438, "is_delete": false, "file_type": 1, "original_file_name": "HX009#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255e9c1f34794abf8920209a1a7f2183.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255e9c1f34794abf8920209a1a7f2183.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255e9c1f34794abf8920209a1a7f2183.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/255e9c1f34794abf8920209a1a7f2183.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/255e9c1f34794abf8920209a1a7f2183.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAvcClIAGRWQarWSRBxNsov-xCA=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.176712+00 2025-12-09 10:15:38.176718+00 17032 0007-A2#紫色 SPMX-20240815312250 \N \N \N 1 \N [{"file_id": "9e48acd8-e254-46c1-8da0-da0191190a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7880f81397034ca1a94a77519dcbbc26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7880f81397034ca1a94a77519dcbbc26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7880f81397034ca1a94a77519dcbbc26.jpg", "file_size": 17012, "is_delete": false, "file_type": 1, "original_file_name": "0007-A2#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7880f81397034ca1a94a77519dcbbc26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7880f81397034ca1a94a77519dcbbc26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7880f81397034ca1a94a77519dcbbc26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7880f81397034ca1a94a77519dcbbc26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7880f81397034ca1a94a77519dcbbc26.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOJwyM1FvLXOhLW0a46R8cUXX-8=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.179509+00 2025-12-09 10:15:38.179514+00 17033 JTSS772FW#VS-D3 SPMX-20240815312253 \N \N \N 1 \N [{"file_id": "6f42e066-1e1b-451e-a2d9-ae1388648058", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44ec8d24c6d54badb090f8b06ed0dbf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44ec8d24c6d54badb090f8b06ed0dbf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44ec8d24c6d54badb090f8b06ed0dbf3.jpg", "file_size": 10669, "is_delete": false, "file_type": 1, "original_file_name": "JTSS772FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ec8d24c6d54badb090f8b06ed0dbf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ec8d24c6d54badb090f8b06ed0dbf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44ec8d24c6d54badb090f8b06ed0dbf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44ec8d24c6d54badb090f8b06ed0dbf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44ec8d24c6d54badb090f8b06ed0dbf3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ByTDNsmdnLyXvCMMMJnOsUc-Hw=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.182246+00 2025-12-09 10:15:38.182252+00 17034 FX0003-157#深红 SPMX-20240815312252 \N \N \N 1 \N [{"file_id": "e19616d1-6124-4773-96ca-fe5ec37cf1ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6875bb2d32b141b6b4e07125c6263bef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6875bb2d32b141b6b4e07125c6263bef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6875bb2d32b141b6b4e07125c6263bef.jpg", "file_size": 53197, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-157#深红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875bb2d32b141b6b4e07125c6263bef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875bb2d32b141b6b4e07125c6263bef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6875bb2d32b141b6b4e07125c6263bef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6875bb2d32b141b6b4e07125c6263bef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6875bb2d32b141b6b4e07125c6263bef.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGzJ6e14u-umS1B-GEZwn3DA4uw=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.185058+00 2025-12-09 10:15:38.185064+00 17035 231#-定位裁-黄色 SPMX-20240815312251 \N \N \N 1 \N [{"file_id": "21d35bbf-12cd-4a74-b105-a70305bdd390", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8558b06f890a4774bdd68a25ed04a432.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8558b06f890a4774bdd68a25ed04a432.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8558b06f890a4774bdd68a25ed04a432.jpg", "file_size": 85764, "is_delete": false, "file_type": 1, "original_file_name": "231#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8558b06f890a4774bdd68a25ed04a432.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8558b06f890a4774bdd68a25ed04a432.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8558b06f890a4774bdd68a25ed04a432.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8558b06f890a4774bdd68a25ed04a432.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8558b06f890a4774bdd68a25ed04a432.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RK8kUq80zfM78GCThfyHPHtFQhI=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.187873+00 2025-12-09 10:15:38.187879+00 17036 1231-16FWF#中童12码+10码 SPMX-20240815312259 \N \N \N 1 \N [{"file_id": "e0c09770-28ec-4e1d-9b53-3e0707a34954", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c179179b0e304865b06d670886f675e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c179179b0e304865b06d670886f675e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c179179b0e304865b06d670886f675e4.jpg", "file_size": 20482, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c179179b0e304865b06d670886f675e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c179179b0e304865b06d670886f675e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c179179b0e304865b06d670886f675e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c179179b0e304865b06d670886f675e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c179179b0e304865b06d670886f675e4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9XNZ0_Fy-lQzQQusp2NVAu1mHg=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.190706+00 2025-12-09 10:15:38.190717+00 17037 LZ1364#上身5号色 SPMX-20240815312257 \N \N \N 1 \N [{"file_id": "e31f7eb4-9d9b-4556-b1d0-25be5aaf660b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "565ff57fbdea49d8ada456744503dd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "565ff57fbdea49d8ada456744503dd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "565ff57fbdea49d8ada456744503dd2f.jpg", "file_size": 16852, "is_delete": false, "file_type": 1, "original_file_name": "LZ1364#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565ff57fbdea49d8ada456744503dd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565ff57fbdea49d8ada456744503dd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/565ff57fbdea49d8ada456744503dd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/565ff57fbdea49d8ada456744503dd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/565ff57fbdea49d8ada456744503dd2f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHc1QJDaUe-4nd8dIL435enuIyE=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.193497+00 2025-12-09 10:15:38.193504+00 17038 0007-A2#红色 SPMX-20240815312261 \N \N \N 1 \N [{"file_id": "550d2a5c-8c12-436c-8b2e-bf3281c7f16f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26b388f8223a4858a5afdbffa469bdff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26b388f8223a4858a5afdbffa469bdff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26b388f8223a4858a5afdbffa469bdff.jpg", "file_size": 17941, "is_delete": false, "file_type": 1, "original_file_name": "0007-A2#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b388f8223a4858a5afdbffa469bdff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b388f8223a4858a5afdbffa469bdff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26b388f8223a4858a5afdbffa469bdff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26b388f8223a4858a5afdbffa469bdff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26b388f8223a4858a5afdbffa469bdff.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmMPb2oYaNTopJJWfADbMkJ1W3E=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.196287+00 2025-12-09 10:15:38.196293+00 17039 CCH0555#大红6公分 SPMX-20240815312258 \N \N \N 1 \N [{"file_id": "64c362b0-9d93-4e9c-8790-cfec9b7293ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2376dd8afad4111b9711ba27126586c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2376dd8afad4111b9711ba27126586c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2376dd8afad4111b9711ba27126586c.jpg", "file_size": 28820, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#大红6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2376dd8afad4111b9711ba27126586c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2376dd8afad4111b9711ba27126586c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2376dd8afad4111b9711ba27126586c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2376dd8afad4111b9711ba27126586c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2376dd8afad4111b9711ba27126586c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AQJLAmnnQqHLQByVSyzZXj8S4XQ=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.199306+00 2025-12-09 10:15:38.199312+00 17040 DL31545-3#前幅42#姜黄 SPMX-20240815312260 \N \N \N 1 \N [{"file_id": "3ec693f1-886b-46b0-a6f3-110e765731cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c637f4c83d9b4b319772fca4e897f77c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c637f4c83d9b4b319772fca4e897f77c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c637f4c83d9b4b319772fca4e897f77c.jpg", "file_size": 14758, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637f4c83d9b4b319772fca4e897f77c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637f4c83d9b4b319772fca4e897f77c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c637f4c83d9b4b319772fca4e897f77c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c637f4c83d9b4b319772fca4e897f77c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c637f4c83d9b4b319772fca4e897f77c.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g6xHuAKCuV_2lSyk0pdZc0mwlUU=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.202375+00 2025-12-09 10:15:38.20238+00 17041 231#-定位裁-黑色 SPMX-20240815312262 \N \N \N 1 \N [{"file_id": "1d5199af-4cb6-440a-8fb5-c29cdcdda854", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17625ac2637b45968bfcbac509ec6ee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17625ac2637b45968bfcbac509ec6ee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17625ac2637b45968bfcbac509ec6ee7.jpg", "file_size": 81162, "is_delete": false, "file_type": 1, "original_file_name": "231#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17625ac2637b45968bfcbac509ec6ee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17625ac2637b45968bfcbac509ec6ee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17625ac2637b45968bfcbac509ec6ee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17625ac2637b45968bfcbac509ec6ee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17625ac2637b45968bfcbac509ec6ee7.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MgWIN_0urZ6ilfUU0Z5Ghd3PZ4g=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.205478+00 2025-12-09 10:15:38.205486+00 17042 8518#60号土黄 SPMX-20240815312254 \N \N \N 1 \N [{"file_id": "d00cdb17-04a5-4bab-96d7-7973deebc65c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec922ac8fb3d476cb47b52a016012b34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec922ac8fb3d476cb47b52a016012b34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec922ac8fb3d476cb47b52a016012b34.jpg", "file_size": 5760, "is_delete": false, "file_type": 1, "original_file_name": "8518#60号土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec922ac8fb3d476cb47b52a016012b34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec922ac8fb3d476cb47b52a016012b34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec922ac8fb3d476cb47b52a016012b34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec922ac8fb3d476cb47b52a016012b34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec922ac8fb3d476cb47b52a016012b34.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gcWqXOFscO6GxMo6RI0KnC5_8yA=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.208484+00 2025-12-09 10:15:38.20849+00 17043 LJH1880#紫色 SPMX-20240815312255 \N \N \N 1 \N [{"file_id": "180ea544-740e-4459-a4ed-961252a6c509", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca11139604094b2e9dfefce552e32629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca11139604094b2e9dfefce552e32629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca11139604094b2e9dfefce552e32629.jpg", "file_size": 62834, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca11139604094b2e9dfefce552e32629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca11139604094b2e9dfefce552e32629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca11139604094b2e9dfefce552e32629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca11139604094b2e9dfefce552e32629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca11139604094b2e9dfefce552e32629.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T_5__6w7E4Rmr-xINnLOPkhmAf4=", "createTime": "2024-08-15 15:01:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.21156+00 2025-12-09 10:15:38.211565+00 17044 DL31545-3#前幅6#蓝绿 SPMX-20240815312273 \N \N \N 1 \N [{"file_id": "ad8160dd-3ba9-4146-a139-88d744457d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg", "file_size": 14666, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3ce7c7ad1bc4d39a568ad6bf4cd0e27.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FAQgm9z9k0XbpV9R14TRyvzWmBM=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.214629+00 2025-12-09 10:15:38.214635+00 17045 LJH1880#红色 SPMX-20240815312265 \N \N \N 1 \N [{"file_id": "a0b74e60-718a-4eb2-9894-5c1ca4012657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c168fdad05d34758a6786e62f23e5956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c168fdad05d34758a6786e62f23e5956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c168fdad05d34758a6786e62f23e5956.jpg", "file_size": 63671, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168fdad05d34758a6786e62f23e5956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168fdad05d34758a6786e62f23e5956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c168fdad05d34758a6786e62f23e5956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c168fdad05d34758a6786e62f23e5956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c168fdad05d34758a6786e62f23e5956.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9SBq15YXRSNWga_iTNXeQ6mPxw=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.217699+00 2025-12-09 10:15:38.217707+00 17046 FX0003-157#红色 SPMX-20240815312264 \N \N \N 1 \N [{"file_id": "c061a7f0-1c20-4b96-a4c5-bb69a72e49e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a8b340807cb442aa1addc8f977e3415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a8b340807cb442aa1addc8f977e3415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a8b340807cb442aa1addc8f977e3415.jpg", "file_size": 55494, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-157#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8b340807cb442aa1addc8f977e3415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8b340807cb442aa1addc8f977e3415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a8b340807cb442aa1addc8f977e3415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a8b340807cb442aa1addc8f977e3415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a8b340807cb442aa1addc8f977e3415.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RIVZN2q0W1NM9GFsLQDggEw-bqo=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.220736+00 2025-12-09 10:15:38.220743+00 17047 HX009#VS-D3 SPMX-20240815312266 \N \N \N 1 \N [{"file_id": "d08c3bea-97c7-45a1-a1b7-03be7a21da37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "294b8a4e38bd4ea1a5d0118d9ea3a397.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "294b8a4e38bd4ea1a5d0118d9ea3a397.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "294b8a4e38bd4ea1a5d0118d9ea3a397.jpg", "file_size": 25751, "is_delete": false, "file_type": 1, "original_file_name": "HX009#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294b8a4e38bd4ea1a5d0118d9ea3a397.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294b8a4e38bd4ea1a5d0118d9ea3a397.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294b8a4e38bd4ea1a5d0118d9ea3a397.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/294b8a4e38bd4ea1a5d0118d9ea3a397.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/294b8a4e38bd4ea1a5d0118d9ea3a397.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fiq8JbWSjJD_Rl1cO4X7tJz8yRI=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.223459+00 2025-12-09 10:15:38.223465+00 17048 8518#61号橙色 SPMX-20240815312270 \N \N \N 1 \N [{"file_id": "247df18c-3efb-4dc6-9a4e-69c4da4f00d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19e1c0632f9142cca889bbe69a4ff683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19e1c0632f9142cca889bbe69a4ff683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19e1c0632f9142cca889bbe69a4ff683.jpg", "file_size": 6367, "is_delete": false, "file_type": 1, "original_file_name": "8518#61号橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e1c0632f9142cca889bbe69a4ff683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e1c0632f9142cca889bbe69a4ff683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19e1c0632f9142cca889bbe69a4ff683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19e1c0632f9142cca889bbe69a4ff683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19e1c0632f9142cca889bbe69a4ff683.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iirJ-p51-0-usWkwe4wBUNTSLdg=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.22623+00 2025-12-09 10:15:38.226236+00 17049 CCH0555#大红8公分 SPMX-20240815312269 \N \N \N 1 \N [{"file_id": "45dd4f76-b135-4dbb-a0dd-7184b3cf3691", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e4ba3a28ce84488aed80bce1e05dd8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e4ba3a28ce84488aed80bce1e05dd8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e4ba3a28ce84488aed80bce1e05dd8a.jpg", "file_size": 28926, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#大红8公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4ba3a28ce84488aed80bce1e05dd8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4ba3a28ce84488aed80bce1e05dd8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4ba3a28ce84488aed80bce1e05dd8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e4ba3a28ce84488aed80bce1e05dd8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e4ba3a28ce84488aed80bce1e05dd8a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYSqoO9icuqtZsL_SW331ebL0Yw=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.228951+00 2025-12-09 10:15:38.228958+00 17050 231-2#天蓝 SPMX-20240815312272 \N \N \N 1 \N [{"file_id": "d50891db-6412-4547-a085-505b427337a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5845c19de8474fc4a0df77395179df18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5845c19de8474fc4a0df77395179df18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5845c19de8474fc4a0df77395179df18.jpg", "file_size": 22082, "is_delete": false, "file_type": 1, "original_file_name": "231-2#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845c19de8474fc4a0df77395179df18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845c19de8474fc4a0df77395179df18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5845c19de8474fc4a0df77395179df18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5845c19de8474fc4a0df77395179df18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5845c19de8474fc4a0df77395179df18.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:je-2Qt1phmRPPpNyLL10esFzbY4=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.231604+00 2025-12-09 10:15:38.231609+00 17051 0007-A2#蓝色 SPMX-20240815312271 \N \N \N 1 \N [{"file_id": "bd20356a-5891-446f-bfda-249d06ae1657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74820de0910e4712a7410552eda57250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74820de0910e4712a7410552eda57250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74820de0910e4712a7410552eda57250.jpg", "file_size": 17162, "is_delete": false, "file_type": 1, "original_file_name": "0007-A2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74820de0910e4712a7410552eda57250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74820de0910e4712a7410552eda57250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74820de0910e4712a7410552eda57250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74820de0910e4712a7410552eda57250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74820de0910e4712a7410552eda57250.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jz-zt_c8MZEHzwBTg60YqXeFuOI=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.234376+00 2025-12-09 10:15:38.234382+00 17052 JTSS773FW#VS-D3 SPMX-20240815312263 \N \N \N 1 \N [{"file_id": "6ed65dbc-4dad-41a8-be1a-910fa7472f3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c54586dcdfd840d493f9679bfaaebcb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c54586dcdfd840d493f9679bfaaebcb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c54586dcdfd840d493f9679bfaaebcb2.jpg", "file_size": 9480, "is_delete": false, "file_type": 1, "original_file_name": "JTSS773FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54586dcdfd840d493f9679bfaaebcb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54586dcdfd840d493f9679bfaaebcb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c54586dcdfd840d493f9679bfaaebcb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c54586dcdfd840d493f9679bfaaebcb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c54586dcdfd840d493f9679bfaaebcb2.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzV3jL0RCCbngEcmszKcCaYDe38=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.237166+00 2025-12-09 10:15:38.237171+00 17053 1231-16FWF#中童14码 SPMX-20240815312268 \N \N \N 1 \N [{"file_id": "08e1904b-f431-4aa2-ad8f-6fb54a2eae52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff1053803cba4ef8953222e7b7063ddf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff1053803cba4ef8953222e7b7063ddf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff1053803cba4ef8953222e7b7063ddf.jpg", "file_size": 18421, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1053803cba4ef8953222e7b7063ddf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1053803cba4ef8953222e7b7063ddf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1053803cba4ef8953222e7b7063ddf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff1053803cba4ef8953222e7b7063ddf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff1053803cba4ef8953222e7b7063ddf.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DtjprHBVDFp1dBg5wY3ps6tSm3Y=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.239976+00 2025-12-09 10:15:38.239982+00 17054 LZ1365#上身1号色 SPMX-20240815312267 \N \N \N 1 \N [{"file_id": "6f4e42ca-f36a-4846-b3c3-a46b7a71262b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cc7e7b1e98e44418bb77aeab0704aa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cc7e7b1e98e44418bb77aeab0704aa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cc7e7b1e98e44418bb77aeab0704aa8.jpg", "file_size": 17935, "is_delete": false, "file_type": 1, "original_file_name": "LZ1365#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc7e7b1e98e44418bb77aeab0704aa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc7e7b1e98e44418bb77aeab0704aa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc7e7b1e98e44418bb77aeab0704aa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cc7e7b1e98e44418bb77aeab0704aa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cc7e7b1e98e44418bb77aeab0704aa8.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdnDtIugd6Zxh1Eq3uAL6iRjUHQ=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.242769+00 2025-12-09 10:15:38.242775+00 17055 HX010#VS-D3 SPMX-20240815312276 \N \N \N 1 \N [{"file_id": "8084d139-381d-4d54-b80e-e9927921b36c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "121f4a30b095410ba2dab5748e1df241.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "121f4a30b095410ba2dab5748e1df241.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "121f4a30b095410ba2dab5748e1df241.jpg", "file_size": 5349, "is_delete": false, "file_type": 1, "original_file_name": "HX010#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121f4a30b095410ba2dab5748e1df241.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121f4a30b095410ba2dab5748e1df241.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/121f4a30b095410ba2dab5748e1df241.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/121f4a30b095410ba2dab5748e1df241.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/121f4a30b095410ba2dab5748e1df241.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ar3lZH1AnEDPUqDq_DzWI18WPtk=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.245589+00 2025-12-09 10:15:38.245596+00 17056 LJH1880#蓝色 SPMX-20240815312278 \N \N \N 1 \N [{"file_id": "336beae3-64d7-43ed-bf62-74bd98272e74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf28f8af939e491abf02401d6b068e59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf28f8af939e491abf02401d6b068e59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf28f8af939e491abf02401d6b068e59.jpg", "file_size": 66275, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf28f8af939e491abf02401d6b068e59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf28f8af939e491abf02401d6b068e59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf28f8af939e491abf02401d6b068e59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf28f8af939e491abf02401d6b068e59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf28f8af939e491abf02401d6b068e59.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Q4mUyQOM5Xzw_iulMslZaKnC0E=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.2484+00 2025-12-09 10:15:38.248407+00 17057 0007-A2#黄色 SPMX-20240815312281 \N \N \N 1 \N [{"file_id": "1036c616-5618-462d-9677-e7284c261942", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33102d25d7f04ce6ac49e040dc57c741.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33102d25d7f04ce6ac49e040dc57c741.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33102d25d7f04ce6ac49e040dc57c741.jpg", "file_size": 16272, "is_delete": false, "file_type": 1, "original_file_name": "0007-A2#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33102d25d7f04ce6ac49e040dc57c741.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33102d25d7f04ce6ac49e040dc57c741.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33102d25d7f04ce6ac49e040dc57c741.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33102d25d7f04ce6ac49e040dc57c741.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33102d25d7f04ce6ac49e040dc57c741.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qa5B8YQ_xzqYt9yo3BuDO5UB8R4=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.251155+00 2025-12-09 10:15:38.251162+00 17058 FX0003-157#蓝净色 SPMX-20240815312274 \N \N \N 1 \N [{"file_id": "268969dd-f658-4220-8e07-f5888b75563c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9d288f16aaa40db95abe060b037f164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9d288f16aaa40db95abe060b037f164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9d288f16aaa40db95abe060b037f164.jpg", "file_size": 15523, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-157#蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9d288f16aaa40db95abe060b037f164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9d288f16aaa40db95abe060b037f164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9d288f16aaa40db95abe060b037f164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9d288f16aaa40db95abe060b037f164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9d288f16aaa40db95abe060b037f164.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U1RKSy3cxo0xFR84hUYrnA26nK4=", "createTime": "2024-08-15 15:01:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.253777+00 2025-12-09 10:15:38.253783+00 17059 CCH0555#彩兰6公分 SPMX-20240815312279 \N \N \N 1 \N [{"file_id": "f7805b04-c514-475d-a368-bd1d408f93f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf571bd100fa4ee3825df4150ec85159.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf571bd100fa4ee3825df4150ec85159.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf571bd100fa4ee3825df4150ec85159.jpg", "file_size": 28380, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#彩兰6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf571bd100fa4ee3825df4150ec85159.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf571bd100fa4ee3825df4150ec85159.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf571bd100fa4ee3825df4150ec85159.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf571bd100fa4ee3825df4150ec85159.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf571bd100fa4ee3825df4150ec85159.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jAduDeCrQqNUIOcTVyhdVjr_f5w=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.256554+00 2025-12-09 10:15:38.256561+00 17060 853#宝蓝花 SPMX-20240815312280 \N \N \N 1 \N [{"file_id": "57083224-ce3b-4ae8-ace6-7bfd6e61eb58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae219e1b326c4154a73740a93d27d54f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae219e1b326c4154a73740a93d27d54f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae219e1b326c4154a73740a93d27d54f.jpg", "file_size": 19881, "is_delete": false, "file_type": 1, "original_file_name": "853#宝蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae219e1b326c4154a73740a93d27d54f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae219e1b326c4154a73740a93d27d54f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae219e1b326c4154a73740a93d27d54f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae219e1b326c4154a73740a93d27d54f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae219e1b326c4154a73740a93d27d54f.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0O4PI3w1oum-XdHstpLU5vtQdQw=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.259299+00 2025-12-09 10:15:38.259305+00 17061 1231-16FWF#中童袖领匹布 SPMX-20240815312286 \N \N \N 1 \N [{"file_id": "1af2239d-0a28-4d75-a5ae-d95df1de97ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74350e384217418fae28817618c585f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74350e384217418fae28817618c585f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74350e384217418fae28817618c585f6.jpg", "file_size": 13073, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74350e384217418fae28817618c585f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74350e384217418fae28817618c585f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74350e384217418fae28817618c585f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74350e384217418fae28817618c585f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74350e384217418fae28817618c585f6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yCsxuhAgVR5NwsM3QtyW64ud0nk=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.262053+00 2025-12-09 10:15:38.26206+00 17062 LZ1365#上身2号色 SPMX-20240815312277 \N \N \N 1 \N [{"file_id": "a684cba0-bf83-44f9-a7f7-2bcee928f944", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75f6be8c3c234abeaabee82c86241f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75f6be8c3c234abeaabee82c86241f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75f6be8c3c234abeaabee82c86241f69.jpg", "file_size": 17357, "is_delete": false, "file_type": 1, "original_file_name": "LZ1365#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f6be8c3c234abeaabee82c86241f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f6be8c3c234abeaabee82c86241f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75f6be8c3c234abeaabee82c86241f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75f6be8c3c234abeaabee82c86241f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75f6be8c3c234abeaabee82c86241f69.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsU6ZWzDorXZgWj0y3p9oXm6hBE=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.264797+00 2025-12-09 10:15:38.264803+00 17063 231-2#彩兰 SPMX-20240815312284 \N \N \N 1 \N [{"file_id": "35ecdd20-090c-4aa6-8760-1deda95725a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed33dc07731c4756bb82aebc80dd0a96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed33dc07731c4756bb82aebc80dd0a96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed33dc07731c4756bb82aebc80dd0a96.jpg", "file_size": 21114, "is_delete": false, "file_type": 1, "original_file_name": "231-2#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed33dc07731c4756bb82aebc80dd0a96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed33dc07731c4756bb82aebc80dd0a96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed33dc07731c4756bb82aebc80dd0a96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed33dc07731c4756bb82aebc80dd0a96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed33dc07731c4756bb82aebc80dd0a96.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zu-2qgss-2Ymm_1zriXgqbNRnM=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.26756+00 2025-12-09 10:15:38.267566+00 17064 DL31545-3#前幅大红 SPMX-20240815312282 \N \N \N 1 \N [{"file_id": "b104f5a3-3fef-40c6-ae2b-f46679db17f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87345887f83f4f568b1067de13340fd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87345887f83f4f568b1067de13340fd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87345887f83f4f568b1067de13340fd6.jpg", "file_size": 14470, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87345887f83f4f568b1067de13340fd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87345887f83f4f568b1067de13340fd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87345887f83f4f568b1067de13340fd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87345887f83f4f568b1067de13340fd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87345887f83f4f568b1067de13340fd6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05IKm6fuA76JCJm-zHjtL8OgmiI=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.270325+00 2025-12-09 10:15:38.270332+00 17065 JTSS775FW#VS-D3 SPMX-20240815312283 \N \N \N 1 \N [{"file_id": "084f2535-1670-4ed2-a86a-4e06edb24204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5398fb5521e44abbe6445ad3bdb77d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5398fb5521e44abbe6445ad3bdb77d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5398fb5521e44abbe6445ad3bdb77d3.jpg", "file_size": 10011, "is_delete": false, "file_type": 1, "original_file_name": "JTSS775FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5398fb5521e44abbe6445ad3bdb77d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5398fb5521e44abbe6445ad3bdb77d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5398fb5521e44abbe6445ad3bdb77d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5398fb5521e44abbe6445ad3bdb77d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5398fb5521e44abbe6445ad3bdb77d3.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8QMd4RlRuVUKPAwjyU0Rl4kDzM=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.273075+00 2025-12-09 10:15:38.273082+00 17066 JTSS774FW#VS-D3 SPMX-20240815312275 \N \N \N 1 \N [{"file_id": "f7e032f5-21a8-43ff-83fd-1afe71b08fd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8b1637ce63340b79a3da2c000e15461.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8b1637ce63340b79a3da2c000e15461.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8b1637ce63340b79a3da2c000e15461.jpg", "file_size": 14878, "is_delete": false, "file_type": 1, "original_file_name": "JTSS774FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b1637ce63340b79a3da2c000e15461.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b1637ce63340b79a3da2c000e15461.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b1637ce63340b79a3da2c000e15461.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8b1637ce63340b79a3da2c000e15461.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8b1637ce63340b79a3da2c000e15461.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4_FEVZZHrRqVIWm_5LcKZBLd8pM=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.275827+00 2025-12-09 10:15:38.275833+00 17067 FX0003-158#粉色 SPMX-20240815312285 \N \N \N 1 \N [{"file_id": "fccf5659-0982-4970-af2d-490f169f3e5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70686309604546069fed7abb618ddadc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70686309604546069fed7abb618ddadc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70686309604546069fed7abb618ddadc.jpg", "file_size": 36990, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-158#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70686309604546069fed7abb618ddadc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70686309604546069fed7abb618ddadc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70686309604546069fed7abb618ddadc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70686309604546069fed7abb618ddadc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70686309604546069fed7abb618ddadc.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXPMK5VYwz4_zUm1nPj68KEcYF4=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.278622+00 2025-12-09 10:15:38.278628+00 17068 HX011#单边定位 SPMX-20240815312287 \N \N \N 1 \N [{"file_id": "fcf63c0a-3c6c-4e91-b0ee-46fc01bec456", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc0ab4cef73b40b7816f4b36541a127a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc0ab4cef73b40b7816f4b36541a127a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc0ab4cef73b40b7816f4b36541a127a.jpg", "file_size": 18740, "is_delete": false, "file_type": 1, "original_file_name": "HX011#单边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0ab4cef73b40b7816f4b36541a127a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0ab4cef73b40b7816f4b36541a127a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc0ab4cef73b40b7816f4b36541a127a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc0ab4cef73b40b7816f4b36541a127a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc0ab4cef73b40b7816f4b36541a127a.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LX2dizoXG05R0rvr9nm7jveCnmw=", "createTime": "2024-08-15 15:01:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.281378+00 2025-12-09 10:15:38.281385+00 17069 FX0003-158#蓝色 SPMX-20240815312297 \N \N \N 1 \N [{"file_id": "54d5fa59-8ee8-4c0a-bbe1-51bb2334539b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7becec655bd24d6cb446307b2d6e06f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7becec655bd24d6cb446307b2d6e06f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7becec655bd24d6cb446307b2d6e06f1.jpg", "file_size": 40367, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-158#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7becec655bd24d6cb446307b2d6e06f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7becec655bd24d6cb446307b2d6e06f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7becec655bd24d6cb446307b2d6e06f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7becec655bd24d6cb446307b2d6e06f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7becec655bd24d6cb446307b2d6e06f1.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6M-AsBzkXzvZ6Hy8VeB4ollDPk=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.284188+00 2025-12-09 10:15:38.284195+00 17070 LJH1880#黄色 SPMX-20240815312292 \N \N \N 1 \N [{"file_id": "d263828a-b3a5-4cb9-a13e-91213eac22f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2c0fef69b843b992813c31c8443556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2c0fef69b843b992813c31c8443556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2c0fef69b843b992813c31c8443556.jpg", "file_size": 62992, "is_delete": false, "file_type": 1, "original_file_name": "LJH1880#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c0fef69b843b992813c31c8443556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c0fef69b843b992813c31c8443556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c0fef69b843b992813c31c8443556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2c0fef69b843b992813c31c8443556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2c0fef69b843b992813c31c8443556.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LA-KueQT-2NpOX65Oh8ydRbFn6Y=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.286962+00 2025-12-09 10:15:38.286968+00 17071 JTSS776FW#VS-D3 SPMX-20240815312294 \N \N \N 1 \N [{"file_id": "5393e3c9-e6d4-412d-9a06-8de68634f69a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48c08bdbc5004ca9982c5cf471e92794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48c08bdbc5004ca9982c5cf471e92794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48c08bdbc5004ca9982c5cf471e92794.jpg", "file_size": 16852, "is_delete": false, "file_type": 1, "original_file_name": "JTSS776FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c08bdbc5004ca9982c5cf471e92794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c08bdbc5004ca9982c5cf471e92794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48c08bdbc5004ca9982c5cf471e92794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48c08bdbc5004ca9982c5cf471e92794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48c08bdbc5004ca9982c5cf471e92794.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6deL7CQBIR_Vebq3HXl3orh3Y-I=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.289837+00 2025-12-09 10:15:38.289845+00 17072 DL31545-3#前幅彩兰 SPMX-20240815312295 \N \N \N 1 \N [{"file_id": "4ecfffc7-d408-4a91-9063-8d7e2c40cbaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "227975607f58489794e96a1805c5bab4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "227975607f58489794e96a1805c5bab4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "227975607f58489794e96a1805c5bab4.jpg", "file_size": 14945, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227975607f58489794e96a1805c5bab4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227975607f58489794e96a1805c5bab4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227975607f58489794e96a1805c5bab4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/227975607f58489794e96a1805c5bab4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/227975607f58489794e96a1805c5bab4.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDo0Vt67O0Q0nbfVKYKuGpxDcvc=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.292701+00 2025-12-09 10:15:38.292709+00 17073 0008#补数 SPMX-20240815312293 \N \N \N 1 \N [{"file_id": "4c98799c-5f36-4973-ae5d-cab8ddeef682", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57dd41f86ac54bfebb5e006e003df01e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57dd41f86ac54bfebb5e006e003df01e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57dd41f86ac54bfebb5e006e003df01e.jpg", "file_size": 7183, "is_delete": false, "file_type": 1, "original_file_name": "0008#补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dd41f86ac54bfebb5e006e003df01e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dd41f86ac54bfebb5e006e003df01e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57dd41f86ac54bfebb5e006e003df01e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57dd41f86ac54bfebb5e006e003df01e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57dd41f86ac54bfebb5e006e003df01e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tY4amgZNnHFBSg60pSWgBk83yJU=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.295513+00 2025-12-09 10:15:38.295518+00 17074 CCH0555#彩兰8公分 SPMX-20240815312288 \N \N \N 1 \N [{"file_id": "0dbc8f42-48c0-4ca7-9154-1d862b148092", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg", "file_size": 28765, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#彩兰8公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f1dd9fdb43a4263bb5b82ae715c8fa6.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJxdEOUo1MoyXUPhfmHyIeok3yw=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.298349+00 2025-12-09 10:15:38.298357+00 17075 1231-16FWF#小童6码 SPMX-20240815312296 \N \N \N 1 \N [{"file_id": "74de5ed4-b342-46b6-af69-77c5b70174f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c91f571e6424a939d7269c2dd8b026e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c91f571e6424a939d7269c2dd8b026e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c91f571e6424a939d7269c2dd8b026e.jpg", "file_size": 20753, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c91f571e6424a939d7269c2dd8b026e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c91f571e6424a939d7269c2dd8b026e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c91f571e6424a939d7269c2dd8b026e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c91f571e6424a939d7269c2dd8b026e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c91f571e6424a939d7269c2dd8b026e.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7SSLhBa_anoDAyATTHrVARyacg=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.30105+00 2025-12-09 10:15:38.301061+00 17076 HX011#双边定位 SPMX-20240815312289 \N \N \N 1 \N [{"file_id": "7f2c46b6-e47a-41c9-bed5-407d5f067957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ecb06fa5f4741a59a8e091752c97627.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ecb06fa5f4741a59a8e091752c97627.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ecb06fa5f4741a59a8e091752c97627.jpg", "file_size": 6187, "is_delete": false, "file_type": 1, "original_file_name": "HX011#双边定位.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecb06fa5f4741a59a8e091752c97627.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecb06fa5f4741a59a8e091752c97627.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ecb06fa5f4741a59a8e091752c97627.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ecb06fa5f4741a59a8e091752c97627.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ecb06fa5f4741a59a8e091752c97627.jpg?e=1765361737&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPNQhMe6rykAsazRrdAmdHLfCeY=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.924827+00 2025-12-09 10:15:38.92484+00 17077 853#浅绿色 SPMX-20240815312291 \N \N \N 1 \N [{"file_id": "57db42ff-4845-462a-bdda-136ef87ae729", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a199e4cb155e4df5a6387db758424c3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a199e4cb155e4df5a6387db758424c3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a199e4cb155e4df5a6387db758424c3c.jpg", "file_size": 15707, "is_delete": false, "file_type": 1, "original_file_name": "853#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a199e4cb155e4df5a6387db758424c3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a199e4cb155e4df5a6387db758424c3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a199e4cb155e4df5a6387db758424c3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a199e4cb155e4df5a6387db758424c3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a199e4cb155e4df5a6387db758424c3c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7ZlYOozDANYWiK2MGortM4A_MU=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.929116+00 2025-12-09 10:15:38.929122+00 17078 LZ1365#上身3号色 SPMX-20240815312290 \N \N \N 1 \N [{"file_id": "8e8ea81d-e777-45d8-90bf-2d6572b7d897", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08068d2f079b4467969a0ca5dc84ae5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08068d2f079b4467969a0ca5dc84ae5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08068d2f079b4467969a0ca5dc84ae5e.jpg", "file_size": 16763, "is_delete": false, "file_type": 1, "original_file_name": "LZ1365#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08068d2f079b4467969a0ca5dc84ae5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08068d2f079b4467969a0ca5dc84ae5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08068d2f079b4467969a0ca5dc84ae5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08068d2f079b4467969a0ca5dc84ae5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08068d2f079b4467969a0ca5dc84ae5e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0rz0xcRqCOS3Ei4ECN3ICgpZVBw=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.932248+00 2025-12-09 10:15:38.932254+00 17079 2312FWF#原版色 SPMX-20240815312298 \N \N \N 1 \N [{"file_id": "af87b753-659d-4278-970e-713f605a915c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d532c0846cf48e39283539129b726f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d532c0846cf48e39283539129b726f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d532c0846cf48e39283539129b726f5.jpg", "file_size": 23375, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532c0846cf48e39283539129b726f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532c0846cf48e39283539129b726f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d532c0846cf48e39283539129b726f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d532c0846cf48e39283539129b726f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d532c0846cf48e39283539129b726f5.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iYgdnt9KRwezV5qD1mAAPrKFQ9s=", "createTime": "2024-08-15 15:01:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.935099+00 2025-12-09 10:15:38.935105+00 17080 2312FWF#橙色 SPMX-20240815312307 \N \N \N 1 \N [{"file_id": "28b91888-0644-4c97-ab8a-f123b750bf53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f83cf374c2cd4e48963a3863fe11f5d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f83cf374c2cd4e48963a3863fe11f5d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f83cf374c2cd4e48963a3863fe11f5d3.jpg", "file_size": 22671, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83cf374c2cd4e48963a3863fe11f5d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83cf374c2cd4e48963a3863fe11f5d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83cf374c2cd4e48963a3863fe11f5d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f83cf374c2cd4e48963a3863fe11f5d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f83cf374c2cd4e48963a3863fe11f5d3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQrXjyHg5NdGH9qk_cgfg5Vd4yo=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.937926+00 2025-12-09 10:15:38.937931+00 17081 JTSS777FW#VS-D3 SPMX-20240815312300 \N \N \N 1 \N [{"file_id": "693c1edf-f154-4bc0-a261-e23b25f3c667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg", "file_size": 10878, "is_delete": false, "file_type": 1, "original_file_name": "JTSS777FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7adb4358fe4d48f3bf5ee6cd8c639e7a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qok8rNlbek0VtUnP9_nV5neuuH8=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.940744+00 2025-12-09 10:15:38.940749+00 17082 853-1#宝蓝花 SPMX-20240815312302 \N \N \N 1 \N [{"file_id": "cba40065-7679-4640-8c4d-6afba35be05f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8191bd80cb12407589282d88a9b92176.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8191bd80cb12407589282d88a9b92176.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8191bd80cb12407589282d88a9b92176.jpg", "file_size": 19357, "is_delete": false, "file_type": 1, "original_file_name": "853-1#宝蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8191bd80cb12407589282d88a9b92176.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8191bd80cb12407589282d88a9b92176.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8191bd80cb12407589282d88a9b92176.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8191bd80cb12407589282d88a9b92176.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8191bd80cb12407589282d88a9b92176.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWRh-Uc7biRRPPU9yk_7sPCHWwg=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.943542+00 2025-12-09 10:15:38.943548+00 17083 LJH1881#兰色 SPMX-20240815312304 \N \N \N 1 \N [{"file_id": "c1607067-2bb8-4ed8-be04-035545f7a37b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b11cf3f68c748baa9eda913b81c8174.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b11cf3f68c748baa9eda913b81c8174.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b11cf3f68c748baa9eda913b81c8174.jpg", "file_size": 40503, "is_delete": false, "file_type": 1, "original_file_name": "LJH1881#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b11cf3f68c748baa9eda913b81c8174.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b11cf3f68c748baa9eda913b81c8174.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b11cf3f68c748baa9eda913b81c8174.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b11cf3f68c748baa9eda913b81c8174.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b11cf3f68c748baa9eda913b81c8174.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pKUhRTmkLHSn6xwRnqC-t6GOFWI=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.946618+00 2025-12-09 10:15:38.946625+00 17084 FX0003-159#RC23 SPMX-20240815312309 \N \N \N 1 \N [{"file_id": "b7230949-4ecc-4551-b02f-fbaacc4b7b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1788b8c68046417ab243cce694982b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1788b8c68046417ab243cce694982b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1788b8c68046417ab243cce694982b9e.jpg", "file_size": 49503, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-159#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1788b8c68046417ab243cce694982b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1788b8c68046417ab243cce694982b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1788b8c68046417ab243cce694982b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1788b8c68046417ab243cce694982b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1788b8c68046417ab243cce694982b9e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UHn6chkgdnsg12bzsO609j1iwsw=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.949767+00 2025-12-09 10:15:38.949773+00 17085 HX012#H SPMX-20240815312299 \N \N \N 1 \N [{"file_id": "848a27ce-afac-4ddf-87da-e6e129e56a1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "507c09815d4341b6855efbc10c2bb8e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "507c09815d4341b6855efbc10c2bb8e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "507c09815d4341b6855efbc10c2bb8e9.jpg", "file_size": 4870, "is_delete": false, "file_type": 1, "original_file_name": "HX012#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c09815d4341b6855efbc10c2bb8e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c09815d4341b6855efbc10c2bb8e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/507c09815d4341b6855efbc10c2bb8e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/507c09815d4341b6855efbc10c2bb8e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/507c09815d4341b6855efbc10c2bb8e9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqTOK3_umDLk9CbRUJ4gfJi0oGQ=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.952918+00 2025-12-09 10:15:38.952924+00 17086 0008-10FWE#粉色VS-D3 SPMX-20240815312305 \N \N \N 1 \N [{"file_id": "8487205b-d95c-4a2a-b505-4e58fa280e26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "291e3095a80e4c998bde7345dc2e26c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "291e3095a80e4c998bde7345dc2e26c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "291e3095a80e4c998bde7345dc2e26c0.jpg", "file_size": 17947, "is_delete": false, "file_type": 1, "original_file_name": "0008-10FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291e3095a80e4c998bde7345dc2e26c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291e3095a80e4c998bde7345dc2e26c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291e3095a80e4c998bde7345dc2e26c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/291e3095a80e4c998bde7345dc2e26c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/291e3095a80e4c998bde7345dc2e26c0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLDkHXR8yslhc-X_b4ilYJ3GIHA=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.95574+00 2025-12-09 10:15:38.955746+00 17087 CCH0555#橙色6公分 SPMX-20240815312306 \N \N \N 1 \N [{"file_id": "563f65ca-768d-41d1-acde-bf86d46d8032", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aea517c03a34a609152c68c80686705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aea517c03a34a609152c68c80686705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aea517c03a34a609152c68c80686705.jpg", "file_size": 29271, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#橙色6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aea517c03a34a609152c68c80686705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aea517c03a34a609152c68c80686705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aea517c03a34a609152c68c80686705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aea517c03a34a609152c68c80686705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aea517c03a34a609152c68c80686705.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDACOedK7EcvT-KJBKOeJ-l1pmU=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.958849+00 2025-12-09 10:15:38.958856+00 17088 1231-16FWF#小童8码+4码 SPMX-20240815312308 \N \N \N 1 \N [{"file_id": "7ce58f5e-edfc-427a-bc31-14564f6ef236", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3ec7eefb7674a098c782bca4b0a5d48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3ec7eefb7674a098c782bca4b0a5d48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3ec7eefb7674a098c782bca4b0a5d48.jpg", "file_size": 21348, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ec7eefb7674a098c782bca4b0a5d48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ec7eefb7674a098c782bca4b0a5d48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3ec7eefb7674a098c782bca4b0a5d48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3ec7eefb7674a098c782bca4b0a5d48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3ec7eefb7674a098c782bca4b0a5d48.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6qVWMONcjzjMd87NT4WxdHhn-g=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.961912+00 2025-12-09 10:15:38.961918+00 17089 LZ1365#上身4号色 SPMX-20240815312301 \N \N \N 1 \N [{"file_id": "1ad001f0-e779-4c3e-9c64-f8d925e067a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8106ae31b00a43f0a3a1348e1f25c34f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8106ae31b00a43f0a3a1348e1f25c34f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8106ae31b00a43f0a3a1348e1f25c34f.jpg", "file_size": 16791, "is_delete": false, "file_type": 1, "original_file_name": "LZ1365#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8106ae31b00a43f0a3a1348e1f25c34f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8106ae31b00a43f0a3a1348e1f25c34f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8106ae31b00a43f0a3a1348e1f25c34f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8106ae31b00a43f0a3a1348e1f25c34f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8106ae31b00a43f0a3a1348e1f25c34f.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2kzBJ6WDWPd-rLwD-slDgjjOAhI=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.964794+00 2025-12-09 10:15:38.9648+00 17090 DL31545-3#前幅玫红 SPMX-20240815312303 \N \N \N 1 \N [{"file_id": "7f2e5610-ed66-40aa-8e75-011d5d53ba7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d6228d5683347f3b8a5f55c40500b9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d6228d5683347f3b8a5f55c40500b9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d6228d5683347f3b8a5f55c40500b9e.jpg", "file_size": 14609, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6228d5683347f3b8a5f55c40500b9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6228d5683347f3b8a5f55c40500b9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6228d5683347f3b8a5f55c40500b9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d6228d5683347f3b8a5f55c40500b9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d6228d5683347f3b8a5f55c40500b9e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3KBMojvzfQOnwYEtI3wshT2n0F0=", "createTime": "2024-08-15 15:02:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.967585+00 2025-12-09 10:15:38.967591+00 17091 DL31545-3#前幅黑色 SPMX-20240815312315 \N \N \N 1 \N [{"file_id": "0277a5a9-9cf3-477a-9f59-a850309a7002", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg", "file_size": 14417, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#前幅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dbcfb5f37b8490f8ecb14a844f8cc0a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CKg0vYzlkxQv11PzFr1ZK8HqrA=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.970337+00 2025-12-09 10:15:38.970344+00 17092 JTSS778FW#VS-D3 SPMX-20240815312311 \N \N \N 1 \N [{"file_id": "a1e5b981-a437-4f6a-a4f7-d6d9bf9620ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c35ab117d6c44ed8c434f0557f72e45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c35ab117d6c44ed8c434f0557f72e45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c35ab117d6c44ed8c434f0557f72e45.jpg", "file_size": 10629, "is_delete": false, "file_type": 1, "original_file_name": "JTSS778FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35ab117d6c44ed8c434f0557f72e45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35ab117d6c44ed8c434f0557f72e45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c35ab117d6c44ed8c434f0557f72e45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c35ab117d6c44ed8c434f0557f72e45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c35ab117d6c44ed8c434f0557f72e45.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3jExKAVAuOM0i8Y1eKgmjco8Wg=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.973091+00 2025-12-09 10:15:38.973096+00 17093 LJH1881#桔色 SPMX-20240815312316 \N \N \N 1 \N [{"file_id": "00d33c00-e6b4-44c5-8956-f7307c00ef40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2dcc6dae89641f3ac9e11fc8de79c86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2dcc6dae89641f3ac9e11fc8de79c86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2dcc6dae89641f3ac9e11fc8de79c86.jpg", "file_size": 38006, "is_delete": false, "file_type": 1, "original_file_name": "LJH1881#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2dcc6dae89641f3ac9e11fc8de79c86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2dcc6dae89641f3ac9e11fc8de79c86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2dcc6dae89641f3ac9e11fc8de79c86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2dcc6dae89641f3ac9e11fc8de79c86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2dcc6dae89641f3ac9e11fc8de79c86.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YR-7cu5Ty-FVdelg6TTOXpnAj-U=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.975938+00 2025-12-09 10:15:38.975944+00 17094 2312FWF#深咖色 SPMX-20240815312317 \N \N \N 1 \N [{"file_id": "d9d77c2f-aac6-4585-9034-a6cca3859f25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f25f5b1cbef742a89044cb3d924278fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f25f5b1cbef742a89044cb3d924278fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f25f5b1cbef742a89044cb3d924278fa.jpg", "file_size": 23459, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#深咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25f5b1cbef742a89044cb3d924278fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25f5b1cbef742a89044cb3d924278fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25f5b1cbef742a89044cb3d924278fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f25f5b1cbef742a89044cb3d924278fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f25f5b1cbef742a89044cb3d924278fa.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YtnJsnSxAwh80mRvswFCKqx4Beo=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.978746+00 2025-12-09 10:15:38.978752+00 17095 0008-10FWE#黄色VS-D3 SPMX-20240815312314 \N \N \N 1 \N [{"file_id": "9e18b7ff-1f2f-4673-82ec-a2b7cb4aa322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6254c3e5a2e4b6f95698c6bb02a709a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6254c3e5a2e4b6f95698c6bb02a709a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6254c3e5a2e4b6f95698c6bb02a709a.jpg", "file_size": 17880, "is_delete": false, "file_type": 1, "original_file_name": "0008-10FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6254c3e5a2e4b6f95698c6bb02a709a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6254c3e5a2e4b6f95698c6bb02a709a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6254c3e5a2e4b6f95698c6bb02a709a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6254c3e5a2e4b6f95698c6bb02a709a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6254c3e5a2e4b6f95698c6bb02a709a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoS92B29CeGdFWGzSkyaYpRO8kQ=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.981486+00 2025-12-09 10:15:38.981492+00 17096 HX013# SPMX-20240815312310 \N \N \N 1 \N [{"file_id": "73535b29-25c5-49ce-8272-751b5426a532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f56f2151b16e4ba4a63bd9fafe485663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f56f2151b16e4ba4a63bd9fafe485663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f56f2151b16e4ba4a63bd9fafe485663.jpg", "file_size": 12530, "is_delete": false, "file_type": 1, "original_file_name": "HX013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56f2151b16e4ba4a63bd9fafe485663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56f2151b16e4ba4a63bd9fafe485663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f56f2151b16e4ba4a63bd9fafe485663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f56f2151b16e4ba4a63bd9fafe485663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f56f2151b16e4ba4a63bd9fafe485663.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IjVfJ_4G7ufG6x9FmuJI1AU_0bg=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.006651+00 2025-12-09 10:15:39.006657+00 17105 FX0003-159#米黄 SPMX-20240815312320 \N \N \N 1 \N [{"file_id": "7ebcc652-ef17-49c9-b8f6-f5b81e05fb0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120a84399ea844b7ba440b4c6593bb7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120a84399ea844b7ba440b4c6593bb7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120a84399ea844b7ba440b4c6593bb7a.jpg", "file_size": 52646, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-159#米黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120a84399ea844b7ba440b4c6593bb7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120a84399ea844b7ba440b4c6593bb7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120a84399ea844b7ba440b4c6593bb7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120a84399ea844b7ba440b4c6593bb7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120a84399ea844b7ba440b4c6593bb7a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XojaV1n7OrPq5hVr0yu1zEjycSo=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.984285+00 2025-12-09 10:15:38.984291+00 17097 1231-16FWF#小童袖领匹布 SPMX-20240815312318 \N \N \N 1 \N [{"file_id": "db832e56-c391-478f-b4b8-7bcbb8aa1791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77b074a4635441189b524a8cb829f414.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77b074a4635441189b524a8cb829f414.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77b074a4635441189b524a8cb829f414.jpg", "file_size": 13180, "is_delete": false, "file_type": 1, "original_file_name": "1231-16FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b074a4635441189b524a8cb829f414.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b074a4635441189b524a8cb829f414.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b074a4635441189b524a8cb829f414.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77b074a4635441189b524a8cb829f414.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77b074a4635441189b524a8cb829f414.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2S_27ACKZxqjHgWvQ6YiPwAVLzg=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.987093+00 2025-12-09 10:15:38.987099+00 17098 853-1#无字母老虎 SPMX-20240815312312 \N \N \N 1 \N [{"file_id": "96abb9ef-4776-4d1d-b648-0d70ddbd42ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac2305e071e48b0ad36188ac6be2a0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac2305e071e48b0ad36188ac6be2a0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac2305e071e48b0ad36188ac6be2a0a.jpg", "file_size": 18265, "is_delete": false, "file_type": 1, "original_file_name": "853-1#无字母老虎.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac2305e071e48b0ad36188ac6be2a0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac2305e071e48b0ad36188ac6be2a0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac2305e071e48b0ad36188ac6be2a0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac2305e071e48b0ad36188ac6be2a0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac2305e071e48b0ad36188ac6be2a0a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gssa7Jo4n0UFxHpa29GyAjoQhRs=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.989945+00 2025-12-09 10:15:38.989952+00 17099 LZ1366#上身1号色 SPMX-20240815312313 \N \N \N 1 \N [{"file_id": "3b524451-0696-4000-b568-dcd016aaf9de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17162f70a3954b3ab90cf01cfeca02d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17162f70a3954b3ab90cf01cfeca02d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17162f70a3954b3ab90cf01cfeca02d9.jpg", "file_size": 18741, "is_delete": false, "file_type": 1, "original_file_name": "LZ1366#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17162f70a3954b3ab90cf01cfeca02d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17162f70a3954b3ab90cf01cfeca02d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17162f70a3954b3ab90cf01cfeca02d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17162f70a3954b3ab90cf01cfeca02d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17162f70a3954b3ab90cf01cfeca02d9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wo0ioPeIhar1c8TS4i6v75YNLz4=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.992813+00 2025-12-09 10:15:38.992819+00 17100 LJH1881#梅红 SPMX-20240815312326 \N \N \N 1 \N [{"file_id": "a7343fd7-5d13-4787-857a-799e45d93e4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed19b147d72f4f389815b4838e1eb054.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed19b147d72f4f389815b4838e1eb054.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed19b147d72f4f389815b4838e1eb054.jpg", "file_size": 38050, "is_delete": false, "file_type": 1, "original_file_name": "LJH1881#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed19b147d72f4f389815b4838e1eb054.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed19b147d72f4f389815b4838e1eb054.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed19b147d72f4f389815b4838e1eb054.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed19b147d72f4f389815b4838e1eb054.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed19b147d72f4f389815b4838e1eb054.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SWJboNhx1CHR8MaodorOgNtURbI=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.995609+00 2025-12-09 10:15:38.995614+00 17101 LZ1366#上身2号色 SPMX-20240815312324 \N \N \N 1 \N [{"file_id": "460af2d3-0f37-4ec8-9c38-edee4bbedb38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62494d90a5724655b0f2bdd7fd1dba9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62494d90a5724655b0f2bdd7fd1dba9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62494d90a5724655b0f2bdd7fd1dba9c.jpg", "file_size": 17179, "is_delete": false, "file_type": 1, "original_file_name": "LZ1366#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62494d90a5724655b0f2bdd7fd1dba9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62494d90a5724655b0f2bdd7fd1dba9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62494d90a5724655b0f2bdd7fd1dba9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62494d90a5724655b0f2bdd7fd1dba9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62494d90a5724655b0f2bdd7fd1dba9c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1TnAO9oTzjMBps6giMPMS17cVM=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:38.998452+00 2025-12-09 10:15:38.998458+00 17102 0008-10FWF#天蓝 SPMX-20240815312325 \N \N \N 1 \N [{"file_id": "90ffc265-d40b-4d14-890b-d31d3bc42511", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc5088c37f9e465fbcd60d873fa939bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc5088c37f9e465fbcd60d873fa939bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc5088c37f9e465fbcd60d873fa939bb.jpg", "file_size": 19282, "is_delete": false, "file_type": 1, "original_file_name": "0008-10FWF#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5088c37f9e465fbcd60d873fa939bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5088c37f9e465fbcd60d873fa939bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc5088c37f9e465fbcd60d873fa939bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc5088c37f9e465fbcd60d873fa939bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc5088c37f9e465fbcd60d873fa939bb.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6xPLZA_zmWhv9CxyixB5woyBuo=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.001194+00 2025-12-09 10:15:39.0012+00 17103 CCH0555#粉色6公分 SPMX-20240815312319 \N \N \N 1 \N [{"file_id": "1219d3d5-77ca-47de-8cb8-ea673ac903fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8ae2617d35048d38c8419d05a8e8648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8ae2617d35048d38c8419d05a8e8648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8ae2617d35048d38c8419d05a8e8648.jpg", "file_size": 28448, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#粉色6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ae2617d35048d38c8419d05a8e8648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ae2617d35048d38c8419d05a8e8648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ae2617d35048d38c8419d05a8e8648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8ae2617d35048d38c8419d05a8e8648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8ae2617d35048d38c8419d05a8e8648.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yAQQ0AAe9-WAAVLQfz_Pt0eHOA0=", "createTime": "2024-08-15 15:02:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.003948+00 2025-12-09 10:15:39.003954+00 17104 JTSS779FW#粉VS-D3 SPMX-20240815312322 \N \N \N 1 \N [{"file_id": "93711fdb-ba29-4502-9db3-e3f17994940a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8e42dcc89c9458bb1d29e6037591f36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8e42dcc89c9458bb1d29e6037591f36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8e42dcc89c9458bb1d29e6037591f36.jpg", "file_size": 8039, "is_delete": false, "file_type": 1, "original_file_name": "JTSS779FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e42dcc89c9458bb1d29e6037591f36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e42dcc89c9458bb1d29e6037591f36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8e42dcc89c9458bb1d29e6037591f36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8e42dcc89c9458bb1d29e6037591f36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8e42dcc89c9458bb1d29e6037591f36.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rv3cWg-LYzP7BDsIa8ld5GpACw4=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.00942+00 2025-12-09 10:15:39.009425+00 17106 HX0224-1#棕绿色 SPMX-20240815312321 \N \N \N 1 \N [{"file_id": "6e5b9d32-b38f-4b65-b1c1-f9388e9cb133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5e893b22f564e32a0494dd304be0c79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5e893b22f564e32a0494dd304be0c79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5e893b22f564e32a0494dd304be0c79.jpg", "file_size": 9033, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#棕绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e893b22f564e32a0494dd304be0c79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e893b22f564e32a0494dd304be0c79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e893b22f564e32a0494dd304be0c79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5e893b22f564e32a0494dd304be0c79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5e893b22f564e32a0494dd304be0c79.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gq7Ne9rGOXYmwJBprGR6GkC2Y38=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.012217+00 2025-12-09 10:15:39.012223+00 17107 853-1#浅绿色 SPMX-20240815312323 \N \N \N 1 \N [{"file_id": "94978b43-63c7-4447-9f0e-e56fc87f1686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47674e604ae7454ebf81a4e8854cfd1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47674e604ae7454ebf81a4e8854cfd1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47674e604ae7454ebf81a4e8854cfd1b.jpg", "file_size": 16110, "is_delete": false, "file_type": 1, "original_file_name": "853-1#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47674e604ae7454ebf81a4e8854cfd1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47674e604ae7454ebf81a4e8854cfd1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47674e604ae7454ebf81a4e8854cfd1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47674e604ae7454ebf81a4e8854cfd1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47674e604ae7454ebf81a4e8854cfd1b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4IRZZkXV0KRmfuMENRckL3001Po=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.014936+00 2025-12-09 10:15:39.014943+00 17108 FX0003-159#紫色 SPMX-20240815312330 \N \N \N 1 \N [{"file_id": "165a466b-85f2-4b25-86ee-7145b0f03e49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56a9a032b38045a89116eb9de942f63a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56a9a032b38045a89116eb9de942f63a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56a9a032b38045a89116eb9de942f63a.jpg", "file_size": 50981, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-159#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9a032b38045a89116eb9de942f63a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9a032b38045a89116eb9de942f63a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56a9a032b38045a89116eb9de942f63a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56a9a032b38045a89116eb9de942f63a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56a9a032b38045a89116eb9de942f63a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B_VbPeubPxZ9tUlcIFwyvnXSLIk=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.017746+00 2025-12-09 10:15:39.017752+00 17109 1231-17FWF#中童14码 SPMX-20240815312340 \N \N \N 1 \N [{"file_id": "a057493c-7e92-4999-9abe-c92e3130b184", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97f128998ad44dcaa84f50adf0d44082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97f128998ad44dcaa84f50adf0d44082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97f128998ad44dcaa84f50adf0d44082.jpg", "file_size": 15694, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f128998ad44dcaa84f50adf0d44082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f128998ad44dcaa84f50adf0d44082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f128998ad44dcaa84f50adf0d44082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97f128998ad44dcaa84f50adf0d44082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97f128998ad44dcaa84f50adf0d44082.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-z35b86Q98Shh_lHKzpbarGSLG8=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.020514+00 2025-12-09 10:15:39.02052+00 17110 CCH0555#粉色8公分 SPMX-20240815312331 \N \N \N 1 \N [{"file_id": "5e30145f-1b7a-4cf6-ab88-b517cfa4e0bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f965012ac65d40508fd09395ae64c341.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f965012ac65d40508fd09395ae64c341.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f965012ac65d40508fd09395ae64c341.jpg", "file_size": 28466, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#粉色8公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f965012ac65d40508fd09395ae64c341.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f965012ac65d40508fd09395ae64c341.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f965012ac65d40508fd09395ae64c341.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f965012ac65d40508fd09395ae64c341.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f965012ac65d40508fd09395ae64c341.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rk0jT2lFG9J_dDtly293yXNHeHU=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.023324+00 2025-12-09 10:15:39.023331+00 17111 HX0224-1#浅紫色 SPMX-20240815312333 \N \N \N 1 \N [{"file_id": "cc6b1b33-9f8d-4985-87bb-3579b7bbf833", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "282b81e2ae6a45ac9ef3a41738857856.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "282b81e2ae6a45ac9ef3a41738857856.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "282b81e2ae6a45ac9ef3a41738857856.jpg", "file_size": 8333, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#浅紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282b81e2ae6a45ac9ef3a41738857856.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282b81e2ae6a45ac9ef3a41738857856.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282b81e2ae6a45ac9ef3a41738857856.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/282b81e2ae6a45ac9ef3a41738857856.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/282b81e2ae6a45ac9ef3a41738857856.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jd7rWuWcy9dzXq-nEC_RG0dI39A=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.026058+00 2025-12-09 10:15:39.026065+00 17112 LJH1881#黑色 SPMX-20240815312338 \N \N \N 1 \N [{"file_id": "e7949dd4-2a0f-4766-a85b-2eedcc319267", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a427dedda3f40a899a32ae6db5daa35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a427dedda3f40a899a32ae6db5daa35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a427dedda3f40a899a32ae6db5daa35.jpg", "file_size": 33578, "is_delete": false, "file_type": 1, "original_file_name": "LJH1881#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a427dedda3f40a899a32ae6db5daa35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a427dedda3f40a899a32ae6db5daa35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a427dedda3f40a899a32ae6db5daa35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a427dedda3f40a899a32ae6db5daa35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a427dedda3f40a899a32ae6db5daa35.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mplYsYzh6I3KJSTjsoIfk-Xlke4=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.028838+00 2025-12-09 10:15:39.028844+00 17113 2312FWF#蓝色 SPMX-20240815312339 \N \N \N 1 \N [{"file_id": "d034c2e1-918c-4c2b-8e9d-45edb8b174fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg", "file_size": 24482, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e9c46e54e3c4d43a256dd6bbe80ea3b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMb_-8cAWYv-q8Sk-E83sggocQQ=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.031553+00 2025-12-09 10:15:39.031559+00 17114 1231-17FWF#中童12码+10码 SPMX-20240815312329 \N \N \N 1 \N [{"file_id": "95a8ae8e-b41f-445a-bcfa-f03aaad2380f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37be8f96e68248a3908f86fbc8a278c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37be8f96e68248a3908f86fbc8a278c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37be8f96e68248a3908f86fbc8a278c6.jpg", "file_size": 17158, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37be8f96e68248a3908f86fbc8a278c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37be8f96e68248a3908f86fbc8a278c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37be8f96e68248a3908f86fbc8a278c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37be8f96e68248a3908f86fbc8a278c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37be8f96e68248a3908f86fbc8a278c6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JeHIcGJvliFh0t4GOAlWzX4kYdM=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.034336+00 2025-12-09 10:15:39.034342+00 17115 8549#2XL SPMX-20240815312334 \N \N \N 1 \N [{"file_id": "620fe31d-2cbd-4ee7-8a83-b5b3878de882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2f021703eef4a81a951c6e2b3667a19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2f021703eef4a81a951c6e2b3667a19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2f021703eef4a81a951c6e2b3667a19.jpg", "file_size": 19074, "is_delete": false, "file_type": 1, "original_file_name": "8549#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f021703eef4a81a951c6e2b3667a19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f021703eef4a81a951c6e2b3667a19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f021703eef4a81a951c6e2b3667a19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2f021703eef4a81a951c6e2b3667a19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2f021703eef4a81a951c6e2b3667a19.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YK7T0YRz3g_yKyUssAr1y9sj_w=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.036943+00 2025-12-09 10:15:39.03695+00 17116 DL31545-3#批布6#蓝绿 SPMX-20240815312337 \N \N \N 1 \N [{"file_id": "8682792a-9244-46d9-a74a-e8b4d26a169f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e181c35d797415ca162a2d125808270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e181c35d797415ca162a2d125808270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e181c35d797415ca162a2d125808270.jpg", "file_size": 24988, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e181c35d797415ca162a2d125808270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e181c35d797415ca162a2d125808270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e181c35d797415ca162a2d125808270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e181c35d797415ca162a2d125808270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e181c35d797415ca162a2d125808270.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cAvzNxgYYxZxuSm9J0ENpqgUIEk=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.039693+00 2025-12-09 10:15:39.039699+00 17117 JTSS779FW#绿VS-D3 SPMX-20240815312332 \N \N \N 1 \N [{"file_id": "ac0cba76-0223-497a-bcc1-f499d26e13fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d41449700efb42f5b344fe3479ea6bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d41449700efb42f5b344fe3479ea6bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d41449700efb42f5b344fe3479ea6bd3.jpg", "file_size": 8061, "is_delete": false, "file_type": 1, "original_file_name": "JTSS779FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41449700efb42f5b344fe3479ea6bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41449700efb42f5b344fe3479ea6bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41449700efb42f5b344fe3479ea6bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d41449700efb42f5b344fe3479ea6bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d41449700efb42f5b344fe3479ea6bd3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEAr5IwJw7vdTr0yNqRfotsHJKQ=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.042415+00 2025-12-09 10:15:39.04242+00 17118 LZ1366#上身3号色 SPMX-20240815312336 \N \N \N 1 \N [{"file_id": "32d69d35-7e84-4175-9b65-708efed73362", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ceafde190e84ba5b271e72f23a60e6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ceafde190e84ba5b271e72f23a60e6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ceafde190e84ba5b271e72f23a60e6b.jpg", "file_size": 16796, "is_delete": false, "file_type": 1, "original_file_name": "LZ1366#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceafde190e84ba5b271e72f23a60e6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceafde190e84ba5b271e72f23a60e6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ceafde190e84ba5b271e72f23a60e6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ceafde190e84ba5b271e72f23a60e6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ceafde190e84ba5b271e72f23a60e6b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IIY3tebkvupER5IUiwd3EzQ803E=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.0452+00 2025-12-09 10:15:39.045207+00 17119 DL31545-3#批布42#姜黄 SPMX-20240815312327 \N \N \N 1 \N [{"file_id": "b00ad801-a8cc-413f-98e5-01e85d615461", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4470edf419fa43338a8fa475a64df56a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4470edf419fa43338a8fa475a64df56a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4470edf419fa43338a8fa475a64df56a.jpg", "file_size": 24546, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4470edf419fa43338a8fa475a64df56a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4470edf419fa43338a8fa475a64df56a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4470edf419fa43338a8fa475a64df56a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4470edf419fa43338a8fa475a64df56a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4470edf419fa43338a8fa475a64df56a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbifWfOCccOsbrjKIB8C6xcHGJk=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.047886+00 2025-12-09 10:15:39.047897+00 17120 2312FWF#红色 SPMX-20240815312328 \N \N \N 1 \N [{"file_id": "d3eb3b2f-df2b-4b98-8bc2-4a368c9d491a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361598d8982846e8a605a18bb609fb61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361598d8982846e8a605a18bb609fb61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361598d8982846e8a605a18bb609fb61.jpg", "file_size": 23776, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361598d8982846e8a605a18bb609fb61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361598d8982846e8a605a18bb609fb61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361598d8982846e8a605a18bb609fb61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361598d8982846e8a605a18bb609fb61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361598d8982846e8a605a18bb609fb61.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3wNcBX10kHs-vaO9EynNJi6_XO8=", "createTime": "2024-08-15 15:02:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.050754+00 2025-12-09 10:15:39.05076+00 17121 0008-10FWF#粉色 SPMX-20240815312335 \N \N \N 1 \N [{"file_id": "af142ba3-2d58-4fe8-93f3-23bb97b4c38b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cc8c5b442ee4938a8da8e08325c4b47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cc8c5b442ee4938a8da8e08325c4b47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cc8c5b442ee4938a8da8e08325c4b47.jpg", "file_size": 18658, "is_delete": false, "file_type": 1, "original_file_name": "0008-10FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8c5b442ee4938a8da8e08325c4b47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8c5b442ee4938a8da8e08325c4b47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc8c5b442ee4938a8da8e08325c4b47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cc8c5b442ee4938a8da8e08325c4b47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cc8c5b442ee4938a8da8e08325c4b47.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tBMoLhory9iu6tnFUzB3ZHgoKo=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.053514+00 2025-12-09 10:15:39.05352+00 17122 8549#3XL SPMX-20240815312345 \N \N \N 1 \N [{"file_id": "c940e32e-fdc0-4d10-bd92-55e068a1fa66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af8274deb12145db8d92ee0655e1cfc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af8274deb12145db8d92ee0655e1cfc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af8274deb12145db8d92ee0655e1cfc9.jpg", "file_size": 19566, "is_delete": false, "file_type": 1, "original_file_name": "8549#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8274deb12145db8d92ee0655e1cfc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8274deb12145db8d92ee0655e1cfc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af8274deb12145db8d92ee0655e1cfc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af8274deb12145db8d92ee0655e1cfc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af8274deb12145db8d92ee0655e1cfc9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7G9s-M-tjSAVfiTrndlPrOW0l0=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.056451+00 2025-12-09 10:15:39.056457+00 17123 0008-11FWE#杏底VS-D3 SPMX-20240815312346 \N \N \N 1 \N [{"file_id": "4528c964-be0d-4916-961f-12de7b0ae33b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76882fe549424fd4addd28cab7dc054b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76882fe549424fd4addd28cab7dc054b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76882fe549424fd4addd28cab7dc054b.jpg", "file_size": 13274, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWE#杏底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76882fe549424fd4addd28cab7dc054b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76882fe549424fd4addd28cab7dc054b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76882fe549424fd4addd28cab7dc054b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76882fe549424fd4addd28cab7dc054b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76882fe549424fd4addd28cab7dc054b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggVoKPRUQWvpFymL0BeOHGMbALI=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.059308+00 2025-12-09 10:15:39.059315+00 17124 FX0003-159#青色 SPMX-20240815312342 \N \N \N 1 \N [{"file_id": "2bdc1ecc-78f3-44b1-82f4-8c8e92edb2aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9649f53091643bf94ce3b7ca8036496.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9649f53091643bf94ce3b7ca8036496.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9649f53091643bf94ce3b7ca8036496.jpg", "file_size": 54478, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-159#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9649f53091643bf94ce3b7ca8036496.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9649f53091643bf94ce3b7ca8036496.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9649f53091643bf94ce3b7ca8036496.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9649f53091643bf94ce3b7ca8036496.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9649f53091643bf94ce3b7ca8036496.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qjyVpXkJ4RrZ2a6yc-897njp9RU=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.062061+00 2025-12-09 10:15:39.062067+00 17125 2312FWF#黄色 SPMX-20240815312349 \N \N \N 1 \N [{"file_id": "adaa891e-e4ba-4d8d-a8fd-b5295e5a618c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "803278ef383341d6b33dff40635d6956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "803278ef383341d6b33dff40635d6956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "803278ef383341d6b33dff40635d6956.jpg", "file_size": 22863, "is_delete": false, "file_type": 1, "original_file_name": "2312FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803278ef383341d6b33dff40635d6956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803278ef383341d6b33dff40635d6956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803278ef383341d6b33dff40635d6956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/803278ef383341d6b33dff40635d6956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/803278ef383341d6b33dff40635d6956.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o2qbp9ZIA8BYraFY3XB4ZCbj5bM=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.0647+00 2025-12-09 10:15:39.06471+00 17126 LJH1882#紫色 SPMX-20240815312350 \N \N \N 1 \N [{"file_id": "b2492517-0057-4369-9dee-aeb090f66c30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fba2d8401cb475684ce7cf4ee717405.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fba2d8401cb475684ce7cf4ee717405.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fba2d8401cb475684ce7cf4ee717405.jpg", "file_size": 50775, "is_delete": false, "file_type": 1, "original_file_name": "LJH1882#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fba2d8401cb475684ce7cf4ee717405.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fba2d8401cb475684ce7cf4ee717405.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fba2d8401cb475684ce7cf4ee717405.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fba2d8401cb475684ce7cf4ee717405.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fba2d8401cb475684ce7cf4ee717405.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mv3yRZbiJ0Gzjl95yYlelVLJ4M=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.067485+00 2025-12-09 10:15:39.067491+00 17127 DL31545-3#批布大红 SPMX-20240815312348 \N \N \N 1 \N [{"file_id": "f44cf16b-1f73-4762-bd54-63b429fc540b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ffa8f5396548d8af282e5d08967479.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ffa8f5396548d8af282e5d08967479.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ffa8f5396548d8af282e5d08967479.jpg", "file_size": 24280, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ffa8f5396548d8af282e5d08967479.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ffa8f5396548d8af282e5d08967479.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ffa8f5396548d8af282e5d08967479.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ffa8f5396548d8af282e5d08967479.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ffa8f5396548d8af282e5d08967479.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfYAEWe9fFU10ibGdFile3vpPEI=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.070559+00 2025-12-09 10:15:39.070567+00 17128 JTSS781FW#VS-D3 SPMX-20240815312354 \N \N \N 1 \N [{"file_id": "54327e12-e86b-47a5-b515-b33fec86d5ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4deacb20a3214ee6b5c6c459763cf0d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4deacb20a3214ee6b5c6c459763cf0d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4deacb20a3214ee6b5c6c459763cf0d0.jpg", "file_size": 12044, "is_delete": false, "file_type": 1, "original_file_name": "JTSS781FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4deacb20a3214ee6b5c6c459763cf0d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4deacb20a3214ee6b5c6c459763cf0d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4deacb20a3214ee6b5c6c459763cf0d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4deacb20a3214ee6b5c6c459763cf0d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4deacb20a3214ee6b5c6c459763cf0d0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDjlIV3oZFmiuAHRvYayqSNBYcw=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.073474+00 2025-12-09 10:15:39.07348+00 17129 JTSS780FW#VS-D3 SPMX-20240815312344 \N \N \N 1 \N [{"file_id": "f3a77223-2744-4d60-8e05-ba436166efea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a8368440da3480283cd5e926e665d17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a8368440da3480283cd5e926e665d17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a8368440da3480283cd5e926e665d17.jpg", "file_size": 13673, "is_delete": false, "file_type": 1, "original_file_name": "JTSS780FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8368440da3480283cd5e926e665d17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8368440da3480283cd5e926e665d17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8368440da3480283cd5e926e665d17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a8368440da3480283cd5e926e665d17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a8368440da3480283cd5e926e665d17.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zTFSKsaX3K7S5pRF51qzMWga04M=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.076223+00 2025-12-09 10:15:39.076229+00 17130 CCH0555#绿色6公分 SPMX-20240815312343 \N \N \N 1 \N [{"file_id": "cb4c2489-7b8b-48cc-a627-188bbb3c4233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651ae1d38c314e68b6c2aaffdd0477ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651ae1d38c314e68b6c2aaffdd0477ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651ae1d38c314e68b6c2aaffdd0477ed.jpg", "file_size": 27952, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#绿色6公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ae1d38c314e68b6c2aaffdd0477ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ae1d38c314e68b6c2aaffdd0477ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651ae1d38c314e68b6c2aaffdd0477ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651ae1d38c314e68b6c2aaffdd0477ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651ae1d38c314e68b6c2aaffdd0477ed.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPY_GnYpUVKe-TnU98rO1uLPxd0=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.078974+00 2025-12-09 10:15:39.078982+00 17131 LZ1366#上身4号色 SPMX-20240815312347 \N \N \N 1 \N [{"file_id": "8c9a4fe2-2765-45b5-a32c-e4dd573831c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f150f01267e444babe4d0918cfce643.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f150f01267e444babe4d0918cfce643.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f150f01267e444babe4d0918cfce643.jpg", "file_size": 17131, "is_delete": false, "file_type": 1, "original_file_name": "LZ1366#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f150f01267e444babe4d0918cfce643.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f150f01267e444babe4d0918cfce643.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f150f01267e444babe4d0918cfce643.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f150f01267e444babe4d0918cfce643.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f150f01267e444babe4d0918cfce643.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YU4wZLdTENVJ13M1EvbHxhpWoFc=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.08172+00 2025-12-09 10:15:39.081727+00 17132 HX0224-1#浅蓝色 SPMX-20240815312341 \N \N \N 1 \N [{"file_id": "9a31d4cf-526d-4ab0-ae83-559dab214d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2194a8746fa4f14ae01943e54f79f35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2194a8746fa4f14ae01943e54f79f35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2194a8746fa4f14ae01943e54f79f35.jpg", "file_size": 9305, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#浅蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2194a8746fa4f14ae01943e54f79f35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2194a8746fa4f14ae01943e54f79f35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2194a8746fa4f14ae01943e54f79f35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2194a8746fa4f14ae01943e54f79f35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2194a8746fa4f14ae01943e54f79f35.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DR_GXII2J30x10SCNn-QXJsLJlU=", "createTime": "2024-08-15 15:02:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.084403+00 2025-12-09 10:15:39.084409+00 17133 HX0224-1#深紫色 SPMX-20240815312353 \N \N \N 1 \N [{"file_id": "51c682ca-85f2-4f36-bf10-cfbb683e19ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70cc90dbfa7747d2bac4470bcc43b0e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70cc90dbfa7747d2bac4470bcc43b0e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70cc90dbfa7747d2bac4470bcc43b0e8.jpg", "file_size": 9140, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#深紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cc90dbfa7747d2bac4470bcc43b0e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cc90dbfa7747d2bac4470bcc43b0e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70cc90dbfa7747d2bac4470bcc43b0e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70cc90dbfa7747d2bac4470bcc43b0e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70cc90dbfa7747d2bac4470bcc43b0e8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxJXBHRVD7C4vyYY4zFq5E-dk9I=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.087156+00 2025-12-09 10:15:39.087161+00 17134 1231-17FWF#中童袖领匹布 SPMX-20240815312351 \N \N \N 1 \N [{"file_id": "42d840bf-e604-48e1-8453-b137afd45ea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93c89a8b8da9401aaff553093fe9f91c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93c89a8b8da9401aaff553093fe9f91c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93c89a8b8da9401aaff553093fe9f91c.jpg", "file_size": 11499, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c89a8b8da9401aaff553093fe9f91c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c89a8b8da9401aaff553093fe9f91c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93c89a8b8da9401aaff553093fe9f91c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93c89a8b8da9401aaff553093fe9f91c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93c89a8b8da9401aaff553093fe9f91c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-uhpyY7c4qr8-qeyKIEWPM13_E=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.089814+00 2025-12-09 10:15:39.08982+00 17135 CCH0555#绿色8公分 SPMX-20240815312352 \N \N \N 1 \N [{"file_id": "a2baf08c-7909-47df-8b9a-9c96b2f9dd93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5e1dfd341264d84a8a698d7e6b64312.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5e1dfd341264d84a8a698d7e6b64312.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5e1dfd341264d84a8a698d7e6b64312.jpg", "file_size": 28507, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#绿色8公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e1dfd341264d84a8a698d7e6b64312.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e1dfd341264d84a8a698d7e6b64312.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e1dfd341264d84a8a698d7e6b64312.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5e1dfd341264d84a8a698d7e6b64312.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5e1dfd341264d84a8a698d7e6b64312.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ciY6ujOBf3oEtOweZFIGbMwMkMc=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.09264+00 2025-12-09 10:15:39.092646+00 17136 DL31545-3#批布彩兰 SPMX-20240815312358 \N \N \N 1 \N [{"file_id": "da7f6ba5-13ab-45e7-9428-c64520f98e2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a99a396f292843b9bf66a919a1539466.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a99a396f292843b9bf66a919a1539466.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a99a396f292843b9bf66a919a1539466.jpg", "file_size": 24078, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99a396f292843b9bf66a919a1539466.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99a396f292843b9bf66a919a1539466.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a99a396f292843b9bf66a919a1539466.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a99a396f292843b9bf66a919a1539466.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a99a396f292843b9bf66a919a1539466.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ovjcr4HidyP0tRP65Ln_Ng_cxGM=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.095799+00 2025-12-09 10:15:39.095806+00 17137 LZ1367#上身1号色 SPMX-20240815312359 \N \N \N 1 \N [{"file_id": "16e36e99-27a0-498a-acd0-0f02a4fcd679", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811c3439819642faa2c0dd58894712ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811c3439819642faa2c0dd58894712ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811c3439819642faa2c0dd58894712ce.jpg", "file_size": 16226, "is_delete": false, "file_type": 1, "original_file_name": "LZ1367#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811c3439819642faa2c0dd58894712ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811c3439819642faa2c0dd58894712ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811c3439819642faa2c0dd58894712ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811c3439819642faa2c0dd58894712ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811c3439819642faa2c0dd58894712ce.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5s3Ielp-YM2X7g9Dvh92-nTj8G4=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.098899+00 2025-12-09 10:15:39.098906+00 17138 LJH1882#红色 SPMX-20240815312360 \N \N \N 1 \N [{"file_id": "1f62872f-99c5-4880-b6c4-42e00557d38e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "684ee25bbfaa4c43a384218e9f7b7aba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "684ee25bbfaa4c43a384218e9f7b7aba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "684ee25bbfaa4c43a384218e9f7b7aba.jpg", "file_size": 50165, "is_delete": false, "file_type": 1, "original_file_name": "LJH1882#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684ee25bbfaa4c43a384218e9f7b7aba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684ee25bbfaa4c43a384218e9f7b7aba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684ee25bbfaa4c43a384218e9f7b7aba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/684ee25bbfaa4c43a384218e9f7b7aba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/684ee25bbfaa4c43a384218e9f7b7aba.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MQCmAz9Y4VSciepTfvY-u2xfIBk=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.101904+00 2025-12-09 10:15:39.10191+00 17139 0008-11FWE#红底VS-D3 SPMX-20240815312356 \N \N \N 1 \N [{"file_id": "dab634bf-b05d-436e-9d3e-cd924476db1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120f72407f4c498a820b52759af4f0a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120f72407f4c498a820b52759af4f0a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120f72407f4c498a820b52759af4f0a8.jpg", "file_size": 15658, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWE#红底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120f72407f4c498a820b52759af4f0a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120f72407f4c498a820b52759af4f0a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120f72407f4c498a820b52759af4f0a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120f72407f4c498a820b52759af4f0a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120f72407f4c498a820b52759af4f0a8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dWf86TahA6pktWfTZRy-Wshg9WQ=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.105021+00 2025-12-09 10:15:39.105028+00 17140 FX0003-16#10号色 SPMX-20240815312355 \N \N \N 1 \N [{"file_id": "ecf718db-ebd8-47f9-9891-75bb210362cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33adc40143ee4744958e224bd9eb6655.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33adc40143ee4744958e224bd9eb6655.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33adc40143ee4744958e224bd9eb6655.jpg", "file_size": 20290, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#10号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33adc40143ee4744958e224bd9eb6655.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33adc40143ee4744958e224bd9eb6655.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33adc40143ee4744958e224bd9eb6655.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33adc40143ee4744958e224bd9eb6655.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33adc40143ee4744958e224bd9eb6655.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Im1X6dfH3ono1kuuGWS5Z4UbME=", "createTime": "2024-08-15 15:02:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.108068+00 2025-12-09 10:15:39.108074+00 17141 231483#-001-1-混码 SPMX-20240815312361 \N \N \N 1 \N [{"file_id": "6808597f-9c17-4ed2-8b49-53c6b537305b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bd5e8c770d1497ba2f493c59bd832f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bd5e8c770d1497ba2f493c59bd832f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bd5e8c770d1497ba2f493c59bd832f2.jpg", "file_size": 29875, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bd5e8c770d1497ba2f493c59bd832f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bd5e8c770d1497ba2f493c59bd832f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bd5e8c770d1497ba2f493c59bd832f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bd5e8c770d1497ba2f493c59bd832f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bd5e8c770d1497ba2f493c59bd832f2.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFtN4XJVH7lwL2r5rbeNiX2Zvi4=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.111107+00 2025-12-09 10:15:39.111113+00 17142 8549#4XL SPMX-20240815312357 \N \N \N 1 \N [{"file_id": "94e6421c-aef1-4ce2-8b48-6936c6e7a689", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c16daca89a394d0db691bafa98fe9275.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c16daca89a394d0db691bafa98fe9275.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c16daca89a394d0db691bafa98fe9275.jpg", "file_size": 19415, "is_delete": false, "file_type": 1, "original_file_name": "8549#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16daca89a394d0db691bafa98fe9275.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16daca89a394d0db691bafa98fe9275.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c16daca89a394d0db691bafa98fe9275.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c16daca89a394d0db691bafa98fe9275.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c16daca89a394d0db691bafa98fe9275.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJq5JmXYkky0xuZtUObgxf5_86Q=", "createTime": "2024-08-15 15:02:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.114216+00 2025-12-09 10:15:39.114221+00 17143 CCH0555#黄色8公分 SPMX-20240815312362 \N \N \N 1 \N [{"file_id": "689d3ede-df95-42f0-b870-08b247c09cd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e424f3bfbf1d4f5db57910482d3ec9b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e424f3bfbf1d4f5db57910482d3ec9b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e424f3bfbf1d4f5db57910482d3ec9b3.jpg", "file_size": 29141, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555#黄色8公分.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e424f3bfbf1d4f5db57910482d3ec9b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e424f3bfbf1d4f5db57910482d3ec9b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e424f3bfbf1d4f5db57910482d3ec9b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e424f3bfbf1d4f5db57910482d3ec9b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e424f3bfbf1d4f5db57910482d3ec9b3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYXGWojCL_TC4EJTu8YwuPoPYRw=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.117303+00 2025-12-09 10:15:39.117309+00 17144 LJH1882#绿色 SPMX-20240815312366 \N \N \N 1 \N [{"file_id": "77d35a92-912a-44b8-b3bb-0e6e811382ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1411715f7a7b451a821c73c25373dc0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1411715f7a7b451a821c73c25373dc0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1411715f7a7b451a821c73c25373dc0a.jpg", "file_size": 50784, "is_delete": false, "file_type": 1, "original_file_name": "LJH1882#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1411715f7a7b451a821c73c25373dc0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1411715f7a7b451a821c73c25373dc0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1411715f7a7b451a821c73c25373dc0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1411715f7a7b451a821c73c25373dc0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1411715f7a7b451a821c73c25373dc0a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbxnkPi_E5j_etJQmFqMYezGVGc=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.120265+00 2025-12-09 10:15:39.120271+00 17145 HX0224-1#深绿 SPMX-20240815312363 \N \N \N 1 \N [{"file_id": "a065e061-de15-4823-804a-d3dc00dfdc3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17daad6ecc00495692ccbea6ad23ac6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17daad6ecc00495692ccbea6ad23ac6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17daad6ecc00495692ccbea6ad23ac6b.jpg", "file_size": 9876, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#深绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17daad6ecc00495692ccbea6ad23ac6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17daad6ecc00495692ccbea6ad23ac6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17daad6ecc00495692ccbea6ad23ac6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17daad6ecc00495692ccbea6ad23ac6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17daad6ecc00495692ccbea6ad23ac6b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RwvBHFpcx9K5U9gr0AyZBmO8MvE=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.123277+00 2025-12-09 10:15:39.123283+00 17146 1231-17FWF#小童6码 SPMX-20240815312364 \N \N \N 1 \N [{"file_id": "b522d80a-7d83-47f6-a079-a5fd84992d9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45d5e16620bc4903ae60e241e67fffb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45d5e16620bc4903ae60e241e67fffb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45d5e16620bc4903ae60e241e67fffb8.jpg", "file_size": 18743, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d5e16620bc4903ae60e241e67fffb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d5e16620bc4903ae60e241e67fffb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d5e16620bc4903ae60e241e67fffb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45d5e16620bc4903ae60e241e67fffb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45d5e16620bc4903ae60e241e67fffb8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9UCTakG9Wc3_AlDs4cJ5DmoWso=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.126278+00 2025-12-09 10:15:39.126284+00 17147 JTSS782FW#VS-D3 SPMX-20240815312365 \N \N \N 1 \N [{"file_id": "daf328c0-aa06-4356-bd23-b919c6db9d2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aa66b2f8887464ebb635918b7feefe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aa66b2f8887464ebb635918b7feefe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aa66b2f8887464ebb635918b7feefe8.jpg", "file_size": 12739, "is_delete": false, "file_type": 1, "original_file_name": "JTSS782FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa66b2f8887464ebb635918b7feefe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa66b2f8887464ebb635918b7feefe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa66b2f8887464ebb635918b7feefe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aa66b2f8887464ebb635918b7feefe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aa66b2f8887464ebb635918b7feefe8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEm58LEYpVP8asBb0vMINZXXUKg=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.129277+00 2025-12-09 10:15:39.129283+00 17148 LZ1367#上身2号色 SPMX-20240815312367 \N \N \N 1 \N [{"file_id": "3678b939-9f43-4062-ba0e-b53f540f2961", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b9d3566cda84d2481aef6d1013f75b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b9d3566cda84d2481aef6d1013f75b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b9d3566cda84d2481aef6d1013f75b7.jpg", "file_size": 16481, "is_delete": false, "file_type": 1, "original_file_name": "LZ1367#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9d3566cda84d2481aef6d1013f75b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9d3566cda84d2481aef6d1013f75b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9d3566cda84d2481aef6d1013f75b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b9d3566cda84d2481aef6d1013f75b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b9d3566cda84d2481aef6d1013f75b7.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CmwQmqfMwLuYltHqlbok2x8fKxY=", "createTime": "2024-08-15 15:02:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.132281+00 2025-12-09 10:15:39.132287+00 17149 DL31545-3#批布玫红 SPMX-20240815312368 \N \N \N 1 \N [{"file_id": "c4cb3a1d-7b40-4b23-b8bc-7c85f28bc1e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7abf820942504036b0a74d1d865f499c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7abf820942504036b0a74d1d865f499c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7abf820942504036b0a74d1d865f499c.jpg", "file_size": 24618, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf820942504036b0a74d1d865f499c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf820942504036b0a74d1d865f499c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abf820942504036b0a74d1d865f499c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7abf820942504036b0a74d1d865f499c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7abf820942504036b0a74d1d865f499c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MNbPAgKqWLu0D5BxBlQJLuGoP3s=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.135261+00 2025-12-09 10:15:39.135267+00 17150 8549#5XL SPMX-20240815312372 \N \N \N 1 \N [{"file_id": "6f33acb3-ae92-4bae-99b0-877fa223442a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adb91f3f62e9489d9393278d205a3248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adb91f3f62e9489d9393278d205a3248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adb91f3f62e9489d9393278d205a3248.jpg", "file_size": 19813, "is_delete": false, "file_type": 1, "original_file_name": "8549#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb91f3f62e9489d9393278d205a3248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb91f3f62e9489d9393278d205a3248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adb91f3f62e9489d9393278d205a3248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adb91f3f62e9489d9393278d205a3248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adb91f3f62e9489d9393278d205a3248.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gYbqARRC8IvYNkemrj1Mbi9BN70=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.138143+00 2025-12-09 10:15:39.138149+00 17151 231483#-001-1 SPMX-20240815312373 \N \N \N 1 \N [{"file_id": "f3c21475-349a-4ea7-977a-65f8bd384453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b10bbbe060142e1a51ad9e36769ffa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b10bbbe060142e1a51ad9e36769ffa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b10bbbe060142e1a51ad9e36769ffa6.jpg", "file_size": 25741, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b10bbbe060142e1a51ad9e36769ffa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b10bbbe060142e1a51ad9e36769ffa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b10bbbe060142e1a51ad9e36769ffa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b10bbbe060142e1a51ad9e36769ffa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b10bbbe060142e1a51ad9e36769ffa6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BKaNRM0yyL9rLdDDlRn6PLTaB04=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.141195+00 2025-12-09 10:15:39.141201+00 17152 0008-11FWF#卡其净色 SPMX-20240815312380 \N \N \N 1 \N [{"file_id": "dbd51098-e921-44d7-8946-0a87bedd2515", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61e9265ef4944773b7720b5280ec9734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61e9265ef4944773b7720b5280ec9734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61e9265ef4944773b7720b5280ec9734.jpg", "file_size": 7649, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#卡其净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e9265ef4944773b7720b5280ec9734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e9265ef4944773b7720b5280ec9734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61e9265ef4944773b7720b5280ec9734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61e9265ef4944773b7720b5280ec9734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61e9265ef4944773b7720b5280ec9734.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0iAftgI-pWGpnxNuv7nNoA1sHW8=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.14415+00 2025-12-09 10:15:39.144161+00 17153 DL31545-3#批布黑色 SPMX-20240815312378 \N \N \N 1 \N [{"file_id": "f30b34be-9d9c-4bdc-ae24-eace25d57cc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08b42d1c9ba84fd08509ef346e7a5aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08b42d1c9ba84fd08509ef346e7a5aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08b42d1c9ba84fd08509ef346e7a5aa9.jpg", "file_size": 25494, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#批布黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b42d1c9ba84fd08509ef346e7a5aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b42d1c9ba84fd08509ef346e7a5aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08b42d1c9ba84fd08509ef346e7a5aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08b42d1c9ba84fd08509ef346e7a5aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08b42d1c9ba84fd08509ef346e7a5aa9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cy_bnpFEF3nXK2z03DuPTIhNGEs=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.147197+00 2025-12-09 10:15:39.147208+00 17154 CCH0555-1#橙色 SPMX-20240815312382 \N \N \N 1 \N [{"file_id": "f4f72055-c1d3-453d-be59-7d7e2aee0de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70bfe60d05b8496e8900def5eeebe4e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70bfe60d05b8496e8900def5eeebe4e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70bfe60d05b8496e8900def5eeebe4e9.jpg", "file_size": 26654, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70bfe60d05b8496e8900def5eeebe4e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70bfe60d05b8496e8900def5eeebe4e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70bfe60d05b8496e8900def5eeebe4e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70bfe60d05b8496e8900def5eeebe4e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70bfe60d05b8496e8900def5eeebe4e9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tvgLP_mpGruCKTEYbh3b4LnePTo=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.150175+00 2025-12-09 10:15:39.150181+00 17155 0008-11FWF#卡其 SPMX-20240815312369 \N \N \N 1 \N [{"file_id": "6afd2b54-5813-4224-8ca6-2b3f900e61d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeb9fe395c334c229e85ce5c10331e08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeb9fe395c334c229e85ce5c10331e08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeb9fe395c334c229e85ce5c10331e08.jpg", "file_size": 10150, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb9fe395c334c229e85ce5c10331e08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb9fe395c334c229e85ce5c10331e08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeb9fe395c334c229e85ce5c10331e08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeb9fe395c334c229e85ce5c10331e08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeb9fe395c334c229e85ce5c10331e08.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_ItSZVry7M9VNwMn_KWAmI2Zgc=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.153267+00 2025-12-09 10:15:39.153273+00 17156 FX0003-16#1号色 SPMX-20240815312370 \N \N \N 1 \N [{"file_id": "ff4f52b5-8ac2-40b2-9dba-68169e265bcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d5396e43feb44bc8c9f29934876772c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d5396e43feb44bc8c9f29934876772c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d5396e43feb44bc8c9f29934876772c.jpg", "file_size": 21810, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5396e43feb44bc8c9f29934876772c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5396e43feb44bc8c9f29934876772c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d5396e43feb44bc8c9f29934876772c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d5396e43feb44bc8c9f29934876772c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d5396e43feb44bc8c9f29934876772c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r73r3U3nefJDiJhro-vqyuTz03A=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.156297+00 2025-12-09 10:15:39.156303+00 17157 LZ1367#上身3号色 SPMX-20240815312379 \N \N \N 1 \N [{"file_id": "c1262bb1-636a-4458-b150-e8d878c1774a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35409cad0bdf44afbfbf666ab5a0971c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35409cad0bdf44afbfbf666ab5a0971c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35409cad0bdf44afbfbf666ab5a0971c.jpg", "file_size": 16709, "is_delete": false, "file_type": 1, "original_file_name": "LZ1367#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35409cad0bdf44afbfbf666ab5a0971c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35409cad0bdf44afbfbf666ab5a0971c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35409cad0bdf44afbfbf666ab5a0971c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35409cad0bdf44afbfbf666ab5a0971c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35409cad0bdf44afbfbf666ab5a0971c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uWvK3y1X4r_JELDIcQzs8krfX58=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.159249+00 2025-12-09 10:15:39.159255+00 17158 JTSS783FW#VS-D3 SPMX-20240815312374 \N \N \N 1 \N [{"file_id": "7d648b0c-1b58-4402-8ad0-a31891627c0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65734e2aea6e4923a39b2978b62aaffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65734e2aea6e4923a39b2978b62aaffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65734e2aea6e4923a39b2978b62aaffd.jpg", "file_size": 15176, "is_delete": false, "file_type": 1, "original_file_name": "JTSS783FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65734e2aea6e4923a39b2978b62aaffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65734e2aea6e4923a39b2978b62aaffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65734e2aea6e4923a39b2978b62aaffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65734e2aea6e4923a39b2978b62aaffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65734e2aea6e4923a39b2978b62aaffd.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4EqTjc-PUqUK8dpCwrbXRjr44Y=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.162237+00 2025-12-09 10:15:39.162243+00 17159 LJH1882#蓝色 SPMX-20240815312377 \N \N \N 1 \N [{"file_id": "47c65eb5-c8d4-4f0f-8d2a-493f3ff17788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51475edf9d5c44f5920e4334cb26b39c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51475edf9d5c44f5920e4334cb26b39c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51475edf9d5c44f5920e4334cb26b39c.jpg", "file_size": 51744, "is_delete": false, "file_type": 1, "original_file_name": "LJH1882#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51475edf9d5c44f5920e4334cb26b39c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51475edf9d5c44f5920e4334cb26b39c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51475edf9d5c44f5920e4334cb26b39c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51475edf9d5c44f5920e4334cb26b39c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51475edf9d5c44f5920e4334cb26b39c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8psanNf2BpWLkZX8UrktxIY-V0E=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.165276+00 2025-12-09 10:15:39.165283+00 17160 1231-17FWF#小童8码+4码 SPMX-20240815312376 \N \N \N 1 \N [{"file_id": "bd5d7c68-0d6b-4c0d-aabe-ba678c992ef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a23ac39760a747f98871d98b9644fce4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a23ac39760a747f98871d98b9644fce4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a23ac39760a747f98871d98b9644fce4.jpg", "file_size": 18876, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ac39760a747f98871d98b9644fce4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ac39760a747f98871d98b9644fce4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ac39760a747f98871d98b9644fce4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a23ac39760a747f98871d98b9644fce4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a23ac39760a747f98871d98b9644fce4.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzAr4soHIq0C2N51r8BVVVltaZo=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.168281+00 2025-12-09 10:15:39.168287+00 17161 CCH0555-1#枣红色 SPMX-20240815312371 \N \N \N 1 \N [{"file_id": "9cd4b0bf-67ec-4bbb-ac0e-21673cd38a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3bf857923c847c296c36185599cdfc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3bf857923c847c296c36185599cdfc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3bf857923c847c296c36185599cdfc6.jpg", "file_size": 26855, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bf857923c847c296c36185599cdfc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bf857923c847c296c36185599cdfc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bf857923c847c296c36185599cdfc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3bf857923c847c296c36185599cdfc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3bf857923c847c296c36185599cdfc6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KuMHt4vvyPJn1Fqjf5Yh6sByebM=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.171223+00 2025-12-09 10:15:39.17123+00 17162 HX0224-1#深蓝色 SPMX-20240815312375 \N \N \N 1 \N [{"file_id": "6855b2b8-de4c-4c5d-9c68-10815c9a47de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27213c45da0140fd94e0f0ffaf43eb83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27213c45da0140fd94e0f0ffaf43eb83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27213c45da0140fd94e0f0ffaf43eb83.jpg", "file_size": 9896, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#深蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27213c45da0140fd94e0f0ffaf43eb83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27213c45da0140fd94e0f0ffaf43eb83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27213c45da0140fd94e0f0ffaf43eb83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27213c45da0140fd94e0f0ffaf43eb83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27213c45da0140fd94e0f0ffaf43eb83.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gx_WiB6Is0ES_ImVQK6klBz7Tno=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.174171+00 2025-12-09 10:15:39.174177+00 17163 FX0003-16#2号色 SPMX-20240815312381 \N \N \N 1 \N [{"file_id": "4cb047be-19ad-4762-b086-1bd31ce36d11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d8c0e44954f48e4b7aa7a5ef46f7576.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d8c0e44954f48e4b7aa7a5ef46f7576.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d8c0e44954f48e4b7aa7a5ef46f7576.jpg", "file_size": 24248, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8c0e44954f48e4b7aa7a5ef46f7576.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8c0e44954f48e4b7aa7a5ef46f7576.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d8c0e44954f48e4b7aa7a5ef46f7576.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d8c0e44954f48e4b7aa7a5ef46f7576.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d8c0e44954f48e4b7aa7a5ef46f7576.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YazK9fOd4HsUbFHG6hPDsUWmpmo=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.177195+00 2025-12-09 10:15:39.177201+00 17164 FX0003-16#3号色 SPMX-20240815312392 \N \N \N 1 \N [{"file_id": "2409c12a-b3b8-4be6-8f68-6d6ff932fd12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94dfa96a42b34a58b0a0d1c93d811cca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94dfa96a42b34a58b0a0d1c93d811cca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94dfa96a42b34a58b0a0d1c93d811cca.jpg", "file_size": 21637, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfa96a42b34a58b0a0d1c93d811cca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfa96a42b34a58b0a0d1c93d811cca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfa96a42b34a58b0a0d1c93d811cca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94dfa96a42b34a58b0a0d1c93d811cca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94dfa96a42b34a58b0a0d1c93d811cca.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNRNIpnEiG7KzLE0Jxc64YxpqbE=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.180193+00 2025-12-09 10:15:39.180199+00 17165 1231-18FWF#中童12码+10码 SPMX-20240815312395 \N \N \N 1 \N [{"file_id": "6e5ad85b-da80-46f2-b370-ea6a0f32934e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02971235575743f381b111d1a1657c02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02971235575743f381b111d1a1657c02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02971235575743f381b111d1a1657c02.jpg", "file_size": 19099, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02971235575743f381b111d1a1657c02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02971235575743f381b111d1a1657c02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02971235575743f381b111d1a1657c02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02971235575743f381b111d1a1657c02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02971235575743f381b111d1a1657c02.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JR3tTJkx25otD-uGWYDPooYls0=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.183215+00 2025-12-09 10:15:39.183222+00 17166 LJH1882#黄色 SPMX-20240815312389 \N \N \N 1 \N [{"file_id": "4910d690-5ef9-490e-b3aa-14ebcae4b20d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44d00793877e4cbe80ad99cd4fc15ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44d00793877e4cbe80ad99cd4fc15ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44d00793877e4cbe80ad99cd4fc15ee0.jpg", "file_size": 50408, "is_delete": false, "file_type": 1, "original_file_name": "LJH1882#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00793877e4cbe80ad99cd4fc15ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00793877e4cbe80ad99cd4fc15ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d00793877e4cbe80ad99cd4fc15ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44d00793877e4cbe80ad99cd4fc15ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44d00793877e4cbe80ad99cd4fc15ee0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xYxZrYNAcKd58byrAFagD-DYcMg=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.186498+00 2025-12-09 10:15:39.186504+00 17167 LZ1367#上身4号色 SPMX-20240815312385 \N \N \N 1 \N [{"file_id": "e6f409e5-6740-474c-8055-b9941abe9d17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "072b892599294f339a7699eeeea22702.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "072b892599294f339a7699eeeea22702.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "072b892599294f339a7699eeeea22702.jpg", "file_size": 16423, "is_delete": false, "file_type": 1, "original_file_name": "LZ1367#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/072b892599294f339a7699eeeea22702.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/072b892599294f339a7699eeeea22702.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/072b892599294f339a7699eeeea22702.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/072b892599294f339a7699eeeea22702.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/072b892599294f339a7699eeeea22702.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-uSr1NYhrfhRM-uIQyqQ_jVC28=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.1898+00 2025-12-09 10:15:39.189806+00 17168 DL31545-3#袖子42#姜黄 SPMX-20240815312387 \N \N \N 1 \N [{"file_id": "9293be8f-bb85-4869-91ad-fee14a0c0bb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a239f5b6706445d88ef460b5d89f8b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a239f5b6706445d88ef460b5d89f8b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a239f5b6706445d88ef460b5d89f8b46.jpg", "file_size": 14133, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子42#姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a239f5b6706445d88ef460b5d89f8b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a239f5b6706445d88ef460b5d89f8b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a239f5b6706445d88ef460b5d89f8b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a239f5b6706445d88ef460b5d89f8b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a239f5b6706445d88ef460b5d89f8b46.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSbbNQUFu5Dzur56SEF5I5E1H7M=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.193162+00 2025-12-09 10:15:39.193168+00 17169 231483#-001-2-混码 SPMX-20240815312386 \N \N \N 1 \N [{"file_id": "0bcbfb1a-5b4d-480b-a4d1-5b6eea67f063", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e2cf4676c864031a375449e63b79755.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e2cf4676c864031a375449e63b79755.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e2cf4676c864031a375449e63b79755.jpg", "file_size": 30573, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e2cf4676c864031a375449e63b79755.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e2cf4676c864031a375449e63b79755.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e2cf4676c864031a375449e63b79755.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e2cf4676c864031a375449e63b79755.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e2cf4676c864031a375449e63b79755.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B58-jxYgyyxuFxQE67JZO3R4OL4=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.196229+00 2025-12-09 10:15:39.196236+00 17170 HX0224-1#绿色 SPMX-20240815312388 \N \N \N 1 \N [{"file_id": "05172b1d-8037-4000-b1cd-60a54998ab7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af604eed183740c38f4f456c98c6c47c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af604eed183740c38f4f456c98c6c47c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af604eed183740c38f4f456c98c6c47c.jpg", "file_size": 7868, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af604eed183740c38f4f456c98c6c47c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af604eed183740c38f4f456c98c6c47c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af604eed183740c38f4f456c98c6c47c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af604eed183740c38f4f456c98c6c47c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af604eed183740c38f4f456c98c6c47c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0qKZoU8vq1lQB-TzWAvhbG5x1I=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.199508+00 2025-12-09 10:15:39.199514+00 17171 1231-17FWF#小童袖领匹布 SPMX-20240815312384 \N \N \N 1 \N [{"file_id": "9f02582c-6d46-4826-93c3-26316b4d7590", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c43578908caf49b69df65cb8bc478b14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c43578908caf49b69df65cb8bc478b14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c43578908caf49b69df65cb8bc478b14.jpg", "file_size": 11718, "is_delete": false, "file_type": 1, "original_file_name": "1231-17FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c43578908caf49b69df65cb8bc478b14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c43578908caf49b69df65cb8bc478b14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c43578908caf49b69df65cb8bc478b14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c43578908caf49b69df65cb8bc478b14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c43578908caf49b69df65cb8bc478b14.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k5qJYfGakL0u_YinQdHacKlOTgQ=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.202835+00 2025-12-09 10:15:39.202841+00 17172 CCH0555-1#浅黄色 SPMX-20240815312393 \N \N \N 1 \N [{"file_id": "f3d4117a-e365-4db5-aa4b-165c47b2cb76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c823b02ddad4338973b1336d85fa599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c823b02ddad4338973b1336d85fa599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c823b02ddad4338973b1336d85fa599.jpg", "file_size": 30115, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#浅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c823b02ddad4338973b1336d85fa599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c823b02ddad4338973b1336d85fa599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c823b02ddad4338973b1336d85fa599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c823b02ddad4338973b1336d85fa599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c823b02ddad4338973b1336d85fa599.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DF62zEoW7zcEXFfSViwYX0w8V-M=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.205824+00 2025-12-09 10:15:39.205831+00 17173 JTSS784FW#VS-D3 SPMX-20240815312390 \N \N \N 1 \N [{"file_id": "52807530-2671-4b97-b5e8-b0d0709ed1d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ee868b6f714b76932768202b2f3cba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ee868b6f714b76932768202b2f3cba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ee868b6f714b76932768202b2f3cba.jpg", "file_size": 20754, "is_delete": false, "file_type": 1, "original_file_name": "JTSS784FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ee868b6f714b76932768202b2f3cba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ee868b6f714b76932768202b2f3cba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ee868b6f714b76932768202b2f3cba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ee868b6f714b76932768202b2f3cba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ee868b6f714b76932768202b2f3cba.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQ42HrbkTnOumXLB7sOSkhj-MM0=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.208801+00 2025-12-09 10:15:39.208808+00 17174 0008-11FWF#卡其净色番禺调色 SPMX-20240815312394 \N \N \N 1 \N [{"file_id": "b0ecc233-2b60-426d-991a-4d6233daa72e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg", "file_size": 8434, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#卡其净色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81ac984cb4cb4fb9846b6ee0d5cfaf8a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fraz88UiRhB-k74Ukcq32qNlZQw=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.211793+00 2025-12-09 10:15:39.211799+00 17175 8552#WJC22 SPMX-20240815312383 \N \N \N 1 \N [{"file_id": "2d5ba1ef-3b67-4ae2-8d54-3fd610eac356", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76e02456956a45bd8237261b7dcae979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76e02456956a45bd8237261b7dcae979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76e02456956a45bd8237261b7dcae979.jpg", "file_size": 8721, "is_delete": false, "file_type": 1, "original_file_name": "8552#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e02456956a45bd8237261b7dcae979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e02456956a45bd8237261b7dcae979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e02456956a45bd8237261b7dcae979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76e02456956a45bd8237261b7dcae979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76e02456956a45bd8237261b7dcae979.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0ToDsmUeoZjSqDmX2IrcGq15Oo=", "createTime": "2024-08-15 15:02:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.214749+00 2025-12-09 10:15:39.214755+00 17176 8556#LWQ15 SPMX-20240815312391 \N \N \N 1 \N [{"file_id": "7f412b9c-c24b-4a14-aa52-194bdde3927b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "310c7c5adc4342a5a04045caf859d955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "310c7c5adc4342a5a04045caf859d955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "310c7c5adc4342a5a04045caf859d955.jpg", "file_size": 7399, "is_delete": false, "file_type": 1, "original_file_name": "8556#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/310c7c5adc4342a5a04045caf859d955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/310c7c5adc4342a5a04045caf859d955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/310c7c5adc4342a5a04045caf859d955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/310c7c5adc4342a5a04045caf859d955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/310c7c5adc4342a5a04045caf859d955.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q448EGtz1ChVZMqDC100eZOEjRw=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.217666+00 2025-12-09 10:15:39.217672+00 17177 LZ1368#上身1号色 SPMX-20240815312396 \N \N \N 1 \N [{"file_id": "55074dbe-d838-482f-8d69-c1687f13f746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg", "file_size": 15744, "is_delete": false, "file_type": 1, "original_file_name": "LZ1368#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e88ff4a51be4ec3b6de6e6b9f71e18c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CTv5h91j1HQ0yrRrL-3Xun4jZy4=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.220638+00 2025-12-09 10:15:39.220648+00 17178 CCH0555-1#粉色 SPMX-20240815312403 \N \N \N 1 \N [{"file_id": "37cac75a-f333-45e8-bc61-dae56104e1ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41e3debd7e574d17a08abaf4b4e17a59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41e3debd7e574d17a08abaf4b4e17a59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41e3debd7e574d17a08abaf4b4e17a59.jpg", "file_size": 26556, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e3debd7e574d17a08abaf4b4e17a59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e3debd7e574d17a08abaf4b4e17a59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e3debd7e574d17a08abaf4b4e17a59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41e3debd7e574d17a08abaf4b4e17a59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41e3debd7e574d17a08abaf4b4e17a59.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pk1Y1dbSKnfletnV-19zOUdIMgk=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.223559+00 2025-12-09 10:15:39.223566+00 17179 LJH1886#原版色 SPMX-20240815312402 \N \N \N 1 \N [{"file_id": "ca7efa70-83e1-4811-b834-4d8974ca0af0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "624d34698e344e79b754a99e30cfccc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "624d34698e344e79b754a99e30cfccc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "624d34698e344e79b754a99e30cfccc9.jpg", "file_size": 65685, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624d34698e344e79b754a99e30cfccc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624d34698e344e79b754a99e30cfccc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624d34698e344e79b754a99e30cfccc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/624d34698e344e79b754a99e30cfccc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/624d34698e344e79b754a99e30cfccc9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MvChU1KIY2vEXfyZIH_8O9XTD6A=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.226529+00 2025-12-09 10:15:39.226536+00 17180 JTSS786FW#VS-D3 SPMX-20240815312398 \N \N \N 1 \N [{"file_id": "5022c943-0390-4590-8116-90567b0182b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg", "file_size": 6590, "is_delete": false, "file_type": 1, "original_file_name": "JTSS786FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ee93b7b9f8647dfbc30c2a5c3f38b74.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oCKhSrK26GYPrlkgtT2V-bFewbE=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.229516+00 2025-12-09 10:15:39.229522+00 17181 8556#净色 SPMX-20240815312401 \N \N \N 1 \N [{"file_id": "a6576076-dd8c-4bc9-92c4-33d43b163900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71417e52091f47f59d072acc2a6050c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71417e52091f47f59d072acc2a6050c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71417e52091f47f59d072acc2a6050c6.jpg", "file_size": 7813, "is_delete": false, "file_type": 1, "original_file_name": "8556#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71417e52091f47f59d072acc2a6050c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71417e52091f47f59d072acc2a6050c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71417e52091f47f59d072acc2a6050c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71417e52091f47f59d072acc2a6050c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71417e52091f47f59d072acc2a6050c6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VwroK_i2p7skFYehwhIAH0625Z8=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.232491+00 2025-12-09 10:15:39.232497+00 17182 DL31545-3#袖子6#蓝绿 SPMX-20240815312400 \N \N \N 1 \N [{"file_id": "96174cac-7b82-4ca7-9046-b222a8debef1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5e6622d1e784e628bb5f656dda06732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5e6622d1e784e628bb5f656dda06732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5e6622d1e784e628bb5f656dda06732.jpg", "file_size": 14330, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5e6622d1e784e628bb5f656dda06732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5e6622d1e784e628bb5f656dda06732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5e6622d1e784e628bb5f656dda06732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5e6622d1e784e628bb5f656dda06732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5e6622d1e784e628bb5f656dda06732.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:572VIQ3foja0Cd6Vgt03ykldFYE=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.235486+00 2025-12-09 10:15:39.235492+00 17183 231483#-001-2 SPMX-20240815312399 \N \N \N 1 \N [{"file_id": "a575139f-c02a-426b-8cfa-9d51359c67b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e62688928e484fbeb0bedcd543f94100.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e62688928e484fbeb0bedcd543f94100.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e62688928e484fbeb0bedcd543f94100.jpg", "file_size": 27099, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62688928e484fbeb0bedcd543f94100.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62688928e484fbeb0bedcd543f94100.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e62688928e484fbeb0bedcd543f94100.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e62688928e484fbeb0bedcd543f94100.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e62688928e484fbeb0bedcd543f94100.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvstZCGUBc8hYZ1D4JOclI551YI=", "createTime": "2024-08-15 15:02:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.238497+00 2025-12-09 10:15:39.238503+00 17184 HX0224-1#翠绿色 SPMX-20240815312397 \N \N \N 1 \N [{"file_id": "747497c6-3ae0-4d26-8e7b-5d3dfffe462a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd224ff0fd94c7987b7908dae26db31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd224ff0fd94c7987b7908dae26db31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd224ff0fd94c7987b7908dae26db31.jpg", "file_size": 8646, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-1#翠绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd224ff0fd94c7987b7908dae26db31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd224ff0fd94c7987b7908dae26db31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd224ff0fd94c7987b7908dae26db31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd224ff0fd94c7987b7908dae26db31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd224ff0fd94c7987b7908dae26db31.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cr1XJxiGxiNNLAQa4HOo2XTrL6g=", "createTime": "2024-08-15 15:02:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.241487+00 2025-12-09 10:15:39.241494+00 17185 FX0003-16#4号色 SPMX-20240815312405 \N \N \N 1 \N [{"file_id": "bc34d8bd-ea8b-4602-bde4-e4292ba8f405", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "080ed8e43a89482e82729dc53f8fd862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "080ed8e43a89482e82729dc53f8fd862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "080ed8e43a89482e82729dc53f8fd862.jpg", "file_size": 22448, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ed8e43a89482e82729dc53f8fd862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ed8e43a89482e82729dc53f8fd862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/080ed8e43a89482e82729dc53f8fd862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/080ed8e43a89482e82729dc53f8fd862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/080ed8e43a89482e82729dc53f8fd862.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGCrRmRf-orvX2WTj3iHHnbzu8Y=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.244478+00 2025-12-09 10:15:39.244484+00 17186 0008-11FWF#卡其番禺调色 SPMX-20240815312404 \N \N \N 1 \N [{"file_id": "53a91449-6c7a-474d-8efa-eed094087d30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "858bd04e0ea1495baae8403be7092f05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "858bd04e0ea1495baae8403be7092f05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "858bd04e0ea1495baae8403be7092f05.jpg", "file_size": 11500, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#卡其番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/858bd04e0ea1495baae8403be7092f05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/858bd04e0ea1495baae8403be7092f05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/858bd04e0ea1495baae8403be7092f05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/858bd04e0ea1495baae8403be7092f05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/858bd04e0ea1495baae8403be7092f05.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTBWdErd3l5hDxUBhNi8eXfFdy0=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.247487+00 2025-12-09 10:15:39.247493+00 17187 JTSS787FW#VS-D3 SPMX-20240815312406 \N \N \N 1 \N [{"file_id": "eefa40a9-55a2-4eb7-a3c4-8e1aa4d09246", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6b9a99e030c434e8b3c004580ebfa32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6b9a99e030c434e8b3c004580ebfa32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6b9a99e030c434e8b3c004580ebfa32.jpg", "file_size": 9212, "is_delete": false, "file_type": 1, "original_file_name": "JTSS787FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b9a99e030c434e8b3c004580ebfa32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b9a99e030c434e8b3c004580ebfa32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6b9a99e030c434e8b3c004580ebfa32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6b9a99e030c434e8b3c004580ebfa32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6b9a99e030c434e8b3c004580ebfa32.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3KvhUXGhy4f-v2dncjWer0LPN4o=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.250491+00 2025-12-09 10:15:39.250497+00 17188 1231-18FWF#中童14码 SPMX-20240815312409 \N \N \N 1 \N [{"file_id": "c0c8c05c-58d7-4948-9cea-6e74382e7d4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fbe64c01f2548b3982c1e5bfeb01f45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fbe64c01f2548b3982c1e5bfeb01f45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fbe64c01f2548b3982c1e5bfeb01f45.jpg", "file_size": 17086, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbe64c01f2548b3982c1e5bfeb01f45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbe64c01f2548b3982c1e5bfeb01f45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fbe64c01f2548b3982c1e5bfeb01f45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fbe64c01f2548b3982c1e5bfeb01f45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fbe64c01f2548b3982c1e5bfeb01f45.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tcU2RcI-2BgEupD99XBZjsRYYWQ=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.25345+00 2025-12-09 10:15:39.253456+00 17189 8557#下摆 SPMX-20240815312411 \N \N \N 1 \N [{"file_id": "34914629-91cf-4473-8ade-afb2c9d45ead", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg", "file_size": 12644, "is_delete": false, "file_type": 1, "original_file_name": "8557#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2d66a5f2d28485fb3c5c499d7a4ad4e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zLnNqnI_HjXolbPLWlx5YrV91Ok=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.256474+00 2025-12-09 10:15:39.25648+00 17190 CCH0555-1#红色 SPMX-20240815312414 \N \N \N 1 \N [{"file_id": "5cc616b0-4f1d-4666-94eb-b23c4e6557d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "631263818d6143ab87b93a84fdd78955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "631263818d6143ab87b93a84fdd78955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "631263818d6143ab87b93a84fdd78955.jpg", "file_size": 29498, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631263818d6143ab87b93a84fdd78955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631263818d6143ab87b93a84fdd78955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631263818d6143ab87b93a84fdd78955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/631263818d6143ab87b93a84fdd78955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/631263818d6143ab87b93a84fdd78955.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xP7W4iJuj-jLXryzbg6zx9yaC4=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.259394+00 2025-12-09 10:15:39.2594+00 17191 DL31545-3#袖子大红 SPMX-20240815312407 \N \N \N 1 \N [{"file_id": "f665b7ae-9211-4c9c-88c7-f28db6d10fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f203561e624d29969107ed87607e0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f203561e624d29969107ed87607e0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f203561e624d29969107ed87607e0e.jpg", "file_size": 13859, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f203561e624d29969107ed87607e0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f203561e624d29969107ed87607e0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f203561e624d29969107ed87607e0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f203561e624d29969107ed87607e0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f203561e624d29969107ed87607e0e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEQqgnyonjBawWW6I9e17nXg1rQ=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.262362+00 2025-12-09 10:15:39.262368+00 17192 0008-11FWF#宝蓝 SPMX-20240815312413 \N \N \N 1 \N [{"file_id": "8a25ec96-509c-4f5b-b6eb-28523346147d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d34526a10076472ba49703fa6824becb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d34526a10076472ba49703fa6824becb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d34526a10076472ba49703fa6824becb.jpg", "file_size": 14620, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34526a10076472ba49703fa6824becb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34526a10076472ba49703fa6824becb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34526a10076472ba49703fa6824becb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d34526a10076472ba49703fa6824becb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d34526a10076472ba49703fa6824becb.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a0do9D6l3DBhNGs_tW1V9DvYMxE=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.265321+00 2025-12-09 10:15:39.265327+00 17193 1231-18FWF#中童袖领匹布 SPMX-20240815312417 \N \N \N 1 \N [{"file_id": "59679767-e1a1-4ec0-a8c3-9cede6168107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7d3cab4b4a844d8a81fcab8e4cda001.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7d3cab4b4a844d8a81fcab8e4cda001.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7d3cab4b4a844d8a81fcab8e4cda001.jpg", "file_size": 14987, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3cab4b4a844d8a81fcab8e4cda001.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3cab4b4a844d8a81fcab8e4cda001.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7d3cab4b4a844d8a81fcab8e4cda001.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7d3cab4b4a844d8a81fcab8e4cda001.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7d3cab4b4a844d8a81fcab8e4cda001.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VZl18pa94FqNrlzci19eGoaF5lU=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.268328+00 2025-12-09 10:15:39.268334+00 17194 231483#-001-3-混码 SPMX-20240815312408 \N \N \N 1 \N [{"file_id": "280be876-541c-4b02-b986-ae3accf0c213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbbe4cfb92b94401819c3633cc28f7e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbbe4cfb92b94401819c3633cc28f7e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbbe4cfb92b94401819c3633cc28f7e5.jpg", "file_size": 29455, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbe4cfb92b94401819c3633cc28f7e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbe4cfb92b94401819c3633cc28f7e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbbe4cfb92b94401819c3633cc28f7e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbbe4cfb92b94401819c3633cc28f7e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbbe4cfb92b94401819c3633cc28f7e5.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tg8xwC-_TxDIk9XHOl-mfM8Np_M=", "createTime": "2024-08-15 15:02:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.271248+00 2025-12-09 10:15:39.271253+00 17195 HX0224-2#WJC22 SPMX-20240815312412 \N \N \N 1 \N [{"file_id": "0da58a4d-3418-4a2f-b999-9cac7e18a3a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95281d5dc3594e3f81f011c30b613687.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95281d5dc3594e3f81f011c30b613687.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95281d5dc3594e3f81f011c30b613687.jpg", "file_size": 12919, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95281d5dc3594e3f81f011c30b613687.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95281d5dc3594e3f81f011c30b613687.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95281d5dc3594e3f81f011c30b613687.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95281d5dc3594e3f81f011c30b613687.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95281d5dc3594e3f81f011c30b613687.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7kvBpJHJ28E2DGytpo7MtBKdVls=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.274223+00 2025-12-09 10:15:39.274229+00 17196 LZ1368#上身2号色 SPMX-20240815312410 \N \N \N 1 \N [{"file_id": "bc44e8c9-2b48-4465-a15d-79176eeb2817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0164c873baf84dc6bfe6565ca6357645.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0164c873baf84dc6bfe6565ca6357645.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0164c873baf84dc6bfe6565ca6357645.jpg", "file_size": 17296, "is_delete": false, "file_type": 1, "original_file_name": "LZ1368#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0164c873baf84dc6bfe6565ca6357645.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0164c873baf84dc6bfe6565ca6357645.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0164c873baf84dc6bfe6565ca6357645.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0164c873baf84dc6bfe6565ca6357645.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0164c873baf84dc6bfe6565ca6357645.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q2ndBA-u5DZCUVm3NfhXZAVONpw=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.277234+00 2025-12-09 10:15:39.27724+00 17197 FX0003-16#5号色 SPMX-20240815312415 \N \N \N 1 \N [{"file_id": "5bdd0529-bbdd-41f4-af56-abdf159adbae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0747d7c44244425a6b5dff3dbbae5d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0747d7c44244425a6b5dff3dbbae5d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0747d7c44244425a6b5dff3dbbae5d9.jpg", "file_size": 20881, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0747d7c44244425a6b5dff3dbbae5d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0747d7c44244425a6b5dff3dbbae5d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0747d7c44244425a6b5dff3dbbae5d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0747d7c44244425a6b5dff3dbbae5d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0747d7c44244425a6b5dff3dbbae5d9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IF4m57KABjw6iI2Se0qRG1OMq8Y=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.280201+00 2025-12-09 10:15:39.280207+00 17198 JTSS788FW#VS-D3 SPMX-20240815312416 \N \N \N 1 \N [{"file_id": "cac004fc-e208-412a-8fa1-fff4b6f95527", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "874693555dc3455299aaf37e00179798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "874693555dc3455299aaf37e00179798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "874693555dc3455299aaf37e00179798.jpg", "file_size": 8549, "is_delete": false, "file_type": 1, "original_file_name": "JTSS788FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874693555dc3455299aaf37e00179798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874693555dc3455299aaf37e00179798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874693555dc3455299aaf37e00179798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/874693555dc3455299aaf37e00179798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/874693555dc3455299aaf37e00179798.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:em_UtalIwGvUNKLW4Po0qDf4s2k=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.283194+00 2025-12-09 10:15:39.2832+00 17199 LZ1368#上身3号色 SPMX-20240815312420 \N \N \N 1 \N [{"file_id": "5759fd4c-145b-47e2-8425-4b491e532443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d159da280ac142238470b7ae651675d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d159da280ac142238470b7ae651675d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d159da280ac142238470b7ae651675d2.jpg", "file_size": 15998, "is_delete": false, "file_type": 1, "original_file_name": "LZ1368#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d159da280ac142238470b7ae651675d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d159da280ac142238470b7ae651675d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d159da280ac142238470b7ae651675d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d159da280ac142238470b7ae651675d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d159da280ac142238470b7ae651675d2.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oX-gR6UWkyPAl773RfmVUkTOqq4=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.286182+00 2025-12-09 10:15:39.286188+00 17200 231483#-001-3 SPMX-20240815312418 \N \N \N 1 \N [{"file_id": "c6fb53df-0059-4be5-8175-54445a4e5733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "130985e135fe46af8b9a2b49b28d86e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "130985e135fe46af8b9a2b49b28d86e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "130985e135fe46af8b9a2b49b28d86e4.jpg", "file_size": 28103, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130985e135fe46af8b9a2b49b28d86e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130985e135fe46af8b9a2b49b28d86e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/130985e135fe46af8b9a2b49b28d86e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/130985e135fe46af8b9a2b49b28d86e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/130985e135fe46af8b9a2b49b28d86e4.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoWpvHtkP4pySaYbhdlNBZ3Ks-4=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.289203+00 2025-12-09 10:15:39.28921+00 17201 DL31545-3#袖子彩兰 SPMX-20240815312419 \N \N \N 1 \N [{"file_id": "dc4ce20d-76f9-44a6-99ba-afd054259fa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7a27f6fa7b748b385453fc4da4132a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7a27f6fa7b748b385453fc4da4132a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7a27f6fa7b748b385453fc4da4132a9.jpg", "file_size": 13910, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a27f6fa7b748b385453fc4da4132a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a27f6fa7b748b385453fc4da4132a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a27f6fa7b748b385453fc4da4132a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7a27f6fa7b748b385453fc4da4132a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7a27f6fa7b748b385453fc4da4132a9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ze3j94lLycwfWU9ovD83BlvVf8c=", "createTime": "2024-08-15 15:02:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.292254+00 2025-12-09 10:15:39.29226+00 17202 0008-11FWF#宝蓝净色 SPMX-20240815312424 \N \N \N 1 \N [{"file_id": "850a81f3-d007-4af0-bfa3-c27bbe69a82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f14f30dda9d49739d1bab83385a1aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f14f30dda9d49739d1bab83385a1aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f14f30dda9d49739d1bab83385a1aa9.jpg", "file_size": 7759, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#宝蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f14f30dda9d49739d1bab83385a1aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f14f30dda9d49739d1bab83385a1aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f14f30dda9d49739d1bab83385a1aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f14f30dda9d49739d1bab83385a1aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f14f30dda9d49739d1bab83385a1aa9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-XCTcqeW4wD7PQuOM9QWAF2yceE=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.295268+00 2025-12-09 10:15:39.295275+00 17203 FX0003-16#6号色 SPMX-20240815312425 \N \N \N 1 \N [{"file_id": "f2751b01-8145-4a60-b66f-de32c7fc1f82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29fbbd49a62047cb99e6108ae6116d56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29fbbd49a62047cb99e6108ae6116d56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29fbbd49a62047cb99e6108ae6116d56.jpg", "file_size": 21330, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29fbbd49a62047cb99e6108ae6116d56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29fbbd49a62047cb99e6108ae6116d56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29fbbd49a62047cb99e6108ae6116d56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29fbbd49a62047cb99e6108ae6116d56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29fbbd49a62047cb99e6108ae6116d56.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yv0vcq0H-ZQv8enM5-eFX0Vq2ko=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.298257+00 2025-12-09 10:15:39.298263+00 17204 8557#后片 SPMX-20240815312421 \N \N \N 1 \N [{"file_id": "7d07088e-1fa4-4848-8c0c-564984f09b75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85fe885c41e345e09b8ef3576994f729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85fe885c41e345e09b8ef3576994f729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85fe885c41e345e09b8ef3576994f729.jpg", "file_size": 12555, "is_delete": false, "file_type": 1, "original_file_name": "8557#后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fe885c41e345e09b8ef3576994f729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fe885c41e345e09b8ef3576994f729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fe885c41e345e09b8ef3576994f729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85fe885c41e345e09b8ef3576994f729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85fe885c41e345e09b8ef3576994f729.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJEjhtfjGaYuEEbXns1nLO3ybEs=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.30129+00 2025-12-09 10:15:39.301295+00 17205 LJH1886#咖啡 SPMX-20240815312423 \N \N \N 1 \N [{"file_id": "0f7152b0-da12-4856-9d04-2ad6880defa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a752e7d4ccd14be5984c5f9ddcf9767f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a752e7d4ccd14be5984c5f9ddcf9767f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a752e7d4ccd14be5984c5f9ddcf9767f.jpg", "file_size": 60965, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752e7d4ccd14be5984c5f9ddcf9767f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752e7d4ccd14be5984c5f9ddcf9767f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a752e7d4ccd14be5984c5f9ddcf9767f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a752e7d4ccd14be5984c5f9ddcf9767f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a752e7d4ccd14be5984c5f9ddcf9767f.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qC8Zqm4CyZvG61gtCCruhG2qvp0=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.304254+00 2025-12-09 10:15:39.304264+00 17206 CCH0555-1#绿色 SPMX-20240815312427 \N \N \N 1 \N [{"file_id": "e171a728-736d-47a9-b1a2-7332141f9e6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55958e9ee8b447a4b79c7e3376b8d6e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55958e9ee8b447a4b79c7e3376b8d6e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55958e9ee8b447a4b79c7e3376b8d6e1.jpg", "file_size": 28280, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55958e9ee8b447a4b79c7e3376b8d6e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55958e9ee8b447a4b79c7e3376b8d6e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55958e9ee8b447a4b79c7e3376b8d6e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55958e9ee8b447a4b79c7e3376b8d6e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55958e9ee8b447a4b79c7e3376b8d6e1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OmKDL46bJeAzQi3hP-45B3EdiTU=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.307214+00 2025-12-09 10:15:39.30722+00 17207 1231-18FWF#小童6码 SPMX-20240815312428 \N \N \N 1 \N [{"file_id": "2fd39446-1950-455b-aa68-35cf206eedc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "737e1c833ea040b1bfc1f2ec3cfa8742.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "737e1c833ea040b1bfc1f2ec3cfa8742.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "737e1c833ea040b1bfc1f2ec3cfa8742.jpg", "file_size": 20478, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737e1c833ea040b1bfc1f2ec3cfa8742.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737e1c833ea040b1bfc1f2ec3cfa8742.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737e1c833ea040b1bfc1f2ec3cfa8742.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/737e1c833ea040b1bfc1f2ec3cfa8742.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/737e1c833ea040b1bfc1f2ec3cfa8742.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a-a7ldTdv6AX4QcrAIs7Wr06egs=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.310218+00 2025-12-09 10:15:39.310224+00 17208 JTSS789FW#VS-D3 SPMX-20240815312426 \N \N \N 1 \N [{"file_id": "eb84a9be-f274-4071-89f4-ccb02e78c63b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f71734891ed4761bb7f87844c071d5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f71734891ed4761bb7f87844c071d5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f71734891ed4761bb7f87844c071d5e.jpg", "file_size": 9243, "is_delete": false, "file_type": 1, "original_file_name": "JTSS789FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f71734891ed4761bb7f87844c071d5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f71734891ed4761bb7f87844c071d5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f71734891ed4761bb7f87844c071d5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f71734891ed4761bb7f87844c071d5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f71734891ed4761bb7f87844c071d5e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nlFjeNzc-V0Xidf_tSap0j3nUl0=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.313168+00 2025-12-09 10:15:39.313174+00 17209 HX0224-3#WJC22 SPMX-20240815312422 \N \N \N 1 \N [{"file_id": "78c83dea-58d8-4e53-8ef3-03e3dcdfff47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab61bc9289aa42688f80aa3a520d508b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab61bc9289aa42688f80aa3a520d508b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab61bc9289aa42688f80aa3a520d508b.jpg", "file_size": 25648, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-3#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab61bc9289aa42688f80aa3a520d508b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab61bc9289aa42688f80aa3a520d508b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab61bc9289aa42688f80aa3a520d508b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab61bc9289aa42688f80aa3a520d508b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab61bc9289aa42688f80aa3a520d508b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u33WkdPt7RqAOHZJfumw9_jhSf4=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.316154+00 2025-12-09 10:15:39.31616+00 17210 FX0003-16#7号色 SPMX-20240815312435 \N \N \N 1 \N [{"file_id": "f4ee385f-96d9-402a-af2a-20462861b9fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc44296575141d2b4551c4c70013c10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc44296575141d2b4551c4c70013c10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc44296575141d2b4551c4c70013c10.jpg", "file_size": 21729, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc44296575141d2b4551c4c70013c10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc44296575141d2b4551c4c70013c10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc44296575141d2b4551c4c70013c10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc44296575141d2b4551c4c70013c10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc44296575141d2b4551c4c70013c10.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmWhudMBBneCVkLBQjdvqhyzmWY=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.319178+00 2025-12-09 10:15:39.319184+00 17211 DL31545-3#袖子玫红 SPMX-20240815312430 \N \N \N 1 \N [{"file_id": "197807d4-5601-43d8-b54e-fda271db89cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfc2281e49f642978176950180d4e62c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfc2281e49f642978176950180d4e62c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfc2281e49f642978176950180d4e62c.jpg", "file_size": 13819, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc2281e49f642978176950180d4e62c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc2281e49f642978176950180d4e62c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfc2281e49f642978176950180d4e62c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfc2281e49f642978176950180d4e62c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfc2281e49f642978176950180d4e62c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3S5ahVdqXQxsyq_byNwT33k6lc=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.32215+00 2025-12-09 10:15:39.322157+00 17212 HX0224-B1#RC23 SPMX-20240815312433 \N \N \N 1 \N [{"file_id": "e2ac7823-c44d-4985-af6f-5d07f3f079a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "462bc2b0657c416b84cf01c271eb7304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "462bc2b0657c416b84cf01c271eb7304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "462bc2b0657c416b84cf01c271eb7304.jpg", "file_size": 63962, "is_delete": false, "file_type": 1, "original_file_name": "HX0224-B1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/462bc2b0657c416b84cf01c271eb7304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/462bc2b0657c416b84cf01c271eb7304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/462bc2b0657c416b84cf01c271eb7304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/462bc2b0657c416b84cf01c271eb7304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/462bc2b0657c416b84cf01c271eb7304.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVBrDp84PasTtOXKHNZHBq9kTxU=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.325175+00 2025-12-09 10:15:39.325181+00 17213 0008-11FWF#宝蓝净色番禺调色 SPMX-20240815312434 \N \N \N 1 \N [{"file_id": "53e347b1-6bcc-4f4d-bceb-387ea3cedda5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23fdbf449ed644f080ac4ee637fc0d2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23fdbf449ed644f080ac4ee637fc0d2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23fdbf449ed644f080ac4ee637fc0d2a.jpg", "file_size": 8593, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#宝蓝净色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fdbf449ed644f080ac4ee637fc0d2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fdbf449ed644f080ac4ee637fc0d2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23fdbf449ed644f080ac4ee637fc0d2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23fdbf449ed644f080ac4ee637fc0d2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23fdbf449ed644f080ac4ee637fc0d2a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DR0bp3uwLLlMk30CWYiRyNscT5o=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.328172+00 2025-12-09 10:15:39.328178+00 17214 8558#净色 SPMX-20240815312432 \N \N \N 1 \N [{"file_id": "4880800a-95b6-487f-afca-a3921d96bb63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bca1d5ea3b51456080eb300a09f6ca2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bca1d5ea3b51456080eb300a09f6ca2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bca1d5ea3b51456080eb300a09f6ca2e.jpg", "file_size": 8994, "is_delete": false, "file_type": 1, "original_file_name": "8558#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca1d5ea3b51456080eb300a09f6ca2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca1d5ea3b51456080eb300a09f6ca2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca1d5ea3b51456080eb300a09f6ca2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bca1d5ea3b51456080eb300a09f6ca2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bca1d5ea3b51456080eb300a09f6ca2e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLeuBZ4-oG8-c-_j8Ioe78-1ycY=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.331129+00 2025-12-09 10:15:39.331135+00 17215 231483#-001-4-混码 SPMX-20240815312429 \N \N \N 1 \N [{"file_id": "897ae27a-4f19-46a0-97e0-2381be5c2915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "975353a8c087448e839323296b764668.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "975353a8c087448e839323296b764668.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "975353a8c087448e839323296b764668.jpg", "file_size": 28175, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975353a8c087448e839323296b764668.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975353a8c087448e839323296b764668.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975353a8c087448e839323296b764668.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/975353a8c087448e839323296b764668.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/975353a8c087448e839323296b764668.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e_r6COAOxYKV0rBVOZoV4kscB9c=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.334081+00 2025-12-09 10:15:39.334087+00 17216 LZ1368#上身4号色 SPMX-20240815312431 \N \N \N 1 \N [{"file_id": "93f5751b-bdcc-4da8-9ee6-7b15e6520454", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56e18d6c0cba4b9c8b8f745bacbc6cec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56e18d6c0cba4b9c8b8f745bacbc6cec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56e18d6c0cba4b9c8b8f745bacbc6cec.jpg", "file_size": 14037, "is_delete": false, "file_type": 1, "original_file_name": "LZ1368#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e18d6c0cba4b9c8b8f745bacbc6cec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e18d6c0cba4b9c8b8f745bacbc6cec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56e18d6c0cba4b9c8b8f745bacbc6cec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56e18d6c0cba4b9c8b8f745bacbc6cec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56e18d6c0cba4b9c8b8f745bacbc6cec.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NbLqSJnL6tvZY4GSI2ujVE3lEPA=", "createTime": "2024-08-15 15:02:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.337107+00 2025-12-09 10:15:39.337113+00 17217 231483#-001-4 SPMX-20240815312441 \N \N \N 1 \N [{"file_id": "674f964e-2e17-48be-a7d7-daeb90e41b7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0262048a74af4a96b35041c93b8493aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0262048a74af4a96b35041c93b8493aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0262048a74af4a96b35041c93b8493aa.jpg", "file_size": 25147, "is_delete": false, "file_type": 1, "original_file_name": "231483#-001-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0262048a74af4a96b35041c93b8493aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0262048a74af4a96b35041c93b8493aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0262048a74af4a96b35041c93b8493aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0262048a74af4a96b35041c93b8493aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0262048a74af4a96b35041c93b8493aa.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rxb4CI8vjQ-kd9w2gkzaOGlYqmM=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.340089+00 2025-12-09 10:15:39.340095+00 17218 DL31545-3#袖子黑色 SPMX-20240815312443 \N \N \N 1 \N [{"file_id": "c5c54cd2-7116-4216-b61a-74c496bb106a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb1206e85c9450886d1db6d6aac1a81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb1206e85c9450886d1db6d6aac1a81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb1206e85c9450886d1db6d6aac1a81.jpg", "file_size": 13612, "is_delete": false, "file_type": 1, "original_file_name": "DL31545-3#袖子黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb1206e85c9450886d1db6d6aac1a81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb1206e85c9450886d1db6d6aac1a81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb1206e85c9450886d1db6d6aac1a81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb1206e85c9450886d1db6d6aac1a81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb1206e85c9450886d1db6d6aac1a81.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUFrsibKCDzS5-rZuJ2TooCHz2U=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.343074+00 2025-12-09 10:15:39.34308+00 17219 0008-11FWF#宝蓝番禺调色 SPMX-20240815312444 \N \N \N 1 \N [{"file_id": "53317692-3ae1-4388-a474-09dd3cee8944", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72d30f62991b4c43b6112526c695dbfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72d30f62991b4c43b6112526c695dbfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72d30f62991b4c43b6112526c695dbfb.jpg", "file_size": 15982, "is_delete": false, "file_type": 1, "original_file_name": "0008-11FWF#宝蓝番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d30f62991b4c43b6112526c695dbfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d30f62991b4c43b6112526c695dbfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d30f62991b4c43b6112526c695dbfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72d30f62991b4c43b6112526c695dbfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72d30f62991b4c43b6112526c695dbfb.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3bTRGX7pNFXTqrJoeHApLE2XBms=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.346069+00 2025-12-09 10:15:39.346075+00 17220 CCH0555-1#蓝色 SPMX-20240815312439 \N \N \N 1 \N [{"file_id": "ad5d2400-ac4e-4e5a-9046-d5ce9874d38e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba76069a31f4d72b13d958f22e74a5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba76069a31f4d72b13d958f22e74a5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba76069a31f4d72b13d958f22e74a5b.jpg", "file_size": 29076, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba76069a31f4d72b13d958f22e74a5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba76069a31f4d72b13d958f22e74a5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba76069a31f4d72b13d958f22e74a5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba76069a31f4d72b13d958f22e74a5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba76069a31f4d72b13d958f22e74a5b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQUZnDCjo3mqqiIU1oDhfQ_jrxg=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.349636+00 2025-12-09 10:15:39.349646+00 17221 HX025#大花 SPMX-20240815312442 \N \N \N 1 \N [{"file_id": "71c4f68b-9344-4c29-b74a-1ea5e93e0ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "811b01a6ce3144a8bd73aef3b1ed70f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "811b01a6ce3144a8bd73aef3b1ed70f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "811b01a6ce3144a8bd73aef3b1ed70f8.jpg", "file_size": 11832, "is_delete": false, "file_type": 1, "original_file_name": "HX025#大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811b01a6ce3144a8bd73aef3b1ed70f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811b01a6ce3144a8bd73aef3b1ed70f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/811b01a6ce3144a8bd73aef3b1ed70f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/811b01a6ce3144a8bd73aef3b1ed70f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/811b01a6ce3144a8bd73aef3b1ed70f8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSjeMyUtscBNEoK9AvLX-FTZrYc=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.353502+00 2025-12-09 10:15:39.353509+00 17222 8558#蓝色 SPMX-20240815312445 \N \N \N 1 \N [{"file_id": "fdb4d60e-54f1-4b25-84f1-92b5c5b46ad1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71da02f8676443db9f4311faeb1475b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71da02f8676443db9f4311faeb1475b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71da02f8676443db9f4311faeb1475b2.jpg", "file_size": 16021, "is_delete": false, "file_type": 1, "original_file_name": "8558#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da02f8676443db9f4311faeb1475b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da02f8676443db9f4311faeb1475b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da02f8676443db9f4311faeb1475b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71da02f8676443db9f4311faeb1475b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71da02f8676443db9f4311faeb1475b2.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFkU2P8aX_RAA66pL0rdA3IMptA=", "createTime": "2024-08-15 15:02:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.356715+00 2025-12-09 10:15:39.35672+00 17223 LJH1886#彩兰 SPMX-20240815312436 \N \N \N 1 \N [{"file_id": "8a5bc314-2873-43d6-9481-53c588c7be9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6981bcaabe17456b8303adaeeac194ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6981bcaabe17456b8303adaeeac194ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6981bcaabe17456b8303adaeeac194ab.jpg", "file_size": 64130, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6981bcaabe17456b8303adaeeac194ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6981bcaabe17456b8303adaeeac194ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6981bcaabe17456b8303adaeeac194ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6981bcaabe17456b8303adaeeac194ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6981bcaabe17456b8303adaeeac194ab.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OgGskLwOZVpDeHkktbL6PNecsto=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.359634+00 2025-12-09 10:15:39.359642+00 17224 JTSS790FW#VS-D3 SPMX-20240815312438 \N \N \N 1 \N [{"file_id": "080788cb-e85d-4216-941d-39c429874279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f44e8cb23ce8437e8902329d91693179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f44e8cb23ce8437e8902329d91693179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f44e8cb23ce8437e8902329d91693179.jpg", "file_size": 18070, "is_delete": false, "file_type": 1, "original_file_name": "JTSS790FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44e8cb23ce8437e8902329d91693179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44e8cb23ce8437e8902329d91693179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44e8cb23ce8437e8902329d91693179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f44e8cb23ce8437e8902329d91693179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f44e8cb23ce8437e8902329d91693179.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tr-Zb-FyTgGIGs4kiN1UHg6_QCc=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.362385+00 2025-12-09 10:15:39.362392+00 17225 LZ1369#上身1号色 SPMX-20240815312440 \N \N \N 1 \N [{"file_id": "fdec89ba-c15a-4fdf-9781-d96f1cf319cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a33f4d55714b4824add84fb354bcbce1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a33f4d55714b4824add84fb354bcbce1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a33f4d55714b4824add84fb354bcbce1.jpg", "file_size": 19786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1369#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33f4d55714b4824add84fb354bcbce1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33f4d55714b4824add84fb354bcbce1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33f4d55714b4824add84fb354bcbce1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a33f4d55714b4824add84fb354bcbce1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a33f4d55714b4824add84fb354bcbce1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7KAoSJdd_uBLkKP4kuTy21rUeE=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.365262+00 2025-12-09 10:15:39.365267+00 17226 1231-18FWF#小童8码+4码 SPMX-20240815312437 \N \N \N 1 \N [{"file_id": "fe60e0ac-1d29-49ea-b2ca-fe1f5876b7e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aefd0250adc847acb66373134a9c5390.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aefd0250adc847acb66373134a9c5390.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aefd0250adc847acb66373134a9c5390.jpg", "file_size": 21194, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefd0250adc847acb66373134a9c5390.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefd0250adc847acb66373134a9c5390.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefd0250adc847acb66373134a9c5390.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aefd0250adc847acb66373134a9c5390.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aefd0250adc847acb66373134a9c5390.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S9al27cb0rAspuaj9TiPhtPN3Ws=", "createTime": "2024-08-15 15:02:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.368099+00 2025-12-09 10:15:39.368105+00 17227 0008-12FWE#白色VS-D3 SPMX-20240815312447 \N \N \N 1 \N [{"file_id": "16751f90-f1ba-48fe-843f-15362129196c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb899e7b5254102a8e07a6ac8f738f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb899e7b5254102a8e07a6ac8f738f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb899e7b5254102a8e07a6ac8f738f7.jpg", "file_size": 18445, "is_delete": false, "file_type": 1, "original_file_name": "0008-12FWE#白色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb899e7b5254102a8e07a6ac8f738f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb899e7b5254102a8e07a6ac8f738f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb899e7b5254102a8e07a6ac8f738f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb899e7b5254102a8e07a6ac8f738f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb899e7b5254102a8e07a6ac8f738f7.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-qqvLrrYv0ZsPHz1V1WcvvRpMU=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.370904+00 2025-12-09 10:15:39.370909+00 17228 231483#-002-1-混码 SPMX-20240815312451 \N \N \N 1 \N [{"file_id": "55e6f3bc-443e-484e-afcd-36230aae0b74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae882c13ae684f8aa04f7cc99eaacdbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae882c13ae684f8aa04f7cc99eaacdbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae882c13ae684f8aa04f7cc99eaacdbd.jpg", "file_size": 29910, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae882c13ae684f8aa04f7cc99eaacdbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae882c13ae684f8aa04f7cc99eaacdbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae882c13ae684f8aa04f7cc99eaacdbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae882c13ae684f8aa04f7cc99eaacdbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae882c13ae684f8aa04f7cc99eaacdbd.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L14v2wR7oWq1cVITi7DZ92DK7QQ=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.373725+00 2025-12-09 10:15:39.373731+00 17229 LZ1369#上身2号色 SPMX-20240815312452 \N \N \N 1 \N [{"file_id": "443ee38c-6ee5-4fdc-bc0e-a666aff72ec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f8cc65b874542558b5301f9903a4498.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f8cc65b874542558b5301f9903a4498.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f8cc65b874542558b5301f9903a4498.jpg", "file_size": 18284, "is_delete": false, "file_type": 1, "original_file_name": "LZ1369#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8cc65b874542558b5301f9903a4498.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8cc65b874542558b5301f9903a4498.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f8cc65b874542558b5301f9903a4498.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f8cc65b874542558b5301f9903a4498.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f8cc65b874542558b5301f9903a4498.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92DK4xGqK5_iH4wNUESGJ7DucZg=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.376649+00 2025-12-09 10:15:39.376657+00 17230 DL31592-2#大红前幅定位裁 SPMX-20240815312454 \N \N \N 1 \N [{"file_id": "70c55ede-b751-4dd5-9db9-c268998bf64e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9cedcf814434d308e2b895e4ef4b74c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9cedcf814434d308e2b895e4ef4b74c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9cedcf814434d308e2b895e4ef4b74c.jpg", "file_size": 17002, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#大红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cedcf814434d308e2b895e4ef4b74c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cedcf814434d308e2b895e4ef4b74c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9cedcf814434d308e2b895e4ef4b74c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9cedcf814434d308e2b895e4ef4b74c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9cedcf814434d308e2b895e4ef4b74c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QYgAspMlIXHnDO9dKdxX79U0QUE=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.379905+00 2025-12-09 10:15:39.379911+00 17231 HX026#小花 SPMX-20240815312450 \N \N \N 1 \N [{"file_id": "3be530c0-987d-4e50-96db-0231203ed9c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f82c74206ee0458e8aa8b7b65170f537.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f82c74206ee0458e8aa8b7b65170f537.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f82c74206ee0458e8aa8b7b65170f537.jpg", "file_size": 12180, "is_delete": false, "file_type": 1, "original_file_name": "HX026#小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82c74206ee0458e8aa8b7b65170f537.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82c74206ee0458e8aa8b7b65170f537.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f82c74206ee0458e8aa8b7b65170f537.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f82c74206ee0458e8aa8b7b65170f537.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f82c74206ee0458e8aa8b7b65170f537.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2VvheX8xL4mR0WHNscTHT1Ee53A=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.382959+00 2025-12-09 10:15:39.382965+00 17232 1231-18FWF#小童袖领匹布 SPMX-20240815312449 \N \N \N 1 \N [{"file_id": "aa503042-6300-4264-a795-14c8446092c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3066bfa93d384bdbbe970904536906e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3066bfa93d384bdbbe970904536906e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3066bfa93d384bdbbe970904536906e6.jpg", "file_size": 18920, "is_delete": false, "file_type": 1, "original_file_name": "1231-18FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3066bfa93d384bdbbe970904536906e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3066bfa93d384bdbbe970904536906e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3066bfa93d384bdbbe970904536906e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3066bfa93d384bdbbe970904536906e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3066bfa93d384bdbbe970904536906e6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U26SR5aSFtINpj_6GMfCPF2C9vU=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.38586+00 2025-12-09 10:15:39.385865+00 17233 JTSS791FW#杏VS-D3 SPMX-20240815312453 \N \N \N 1 \N [{"file_id": "415a369a-34ab-478a-a9fd-15810f41e55a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62dee9c709fd438fbc81b33a622bdcd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62dee9c709fd438fbc81b33a622bdcd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62dee9c709fd438fbc81b33a622bdcd0.jpg", "file_size": 9425, "is_delete": false, "file_type": 1, "original_file_name": "JTSS791FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dee9c709fd438fbc81b33a622bdcd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dee9c709fd438fbc81b33a622bdcd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dee9c709fd438fbc81b33a622bdcd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62dee9c709fd438fbc81b33a622bdcd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62dee9c709fd438fbc81b33a622bdcd0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSUHmLHQOLKpvy_yj5mgql5DFUw=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.389738+00 2025-12-09 10:15:39.389746+00 17234 FX0003-16#8号色 SPMX-20240815312446 \N \N \N 1 \N [{"file_id": "44adc2dd-4382-4231-b526-c3fa53a8e20f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e891785e873c41d3ad5b7f954f7313c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e891785e873c41d3ad5b7f954f7313c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e891785e873c41d3ad5b7f954f7313c5.jpg", "file_size": 20709, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e891785e873c41d3ad5b7f954f7313c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e891785e873c41d3ad5b7f954f7313c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e891785e873c41d3ad5b7f954f7313c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e891785e873c41d3ad5b7f954f7313c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e891785e873c41d3ad5b7f954f7313c5.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93HfIkAV7L9QOlWzskTNnWgbGKw=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.393137+00 2025-12-09 10:15:39.393147+00 17235 LJH1886#玫红 SPMX-20240815312448 \N \N \N 1 \N [{"file_id": "3fe91803-bf54-4dc9-835d-e68570ea56c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea7bc1a30eec4a9caad8be3b252295dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea7bc1a30eec4a9caad8be3b252295dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea7bc1a30eec4a9caad8be3b252295dc.jpg", "file_size": 60910, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7bc1a30eec4a9caad8be3b252295dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7bc1a30eec4a9caad8be3b252295dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea7bc1a30eec4a9caad8be3b252295dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea7bc1a30eec4a9caad8be3b252295dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea7bc1a30eec4a9caad8be3b252295dc.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AxVtS7X1RuBR_qktUpdcsXU_XUA=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.39635+00 2025-12-09 10:15:39.396358+00 17236 FX0003-16#9号色 SPMX-20240815312457 \N \N \N 1 \N [{"file_id": "b2fc9238-d1a7-4c58-9a23-1af329099b23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c9cbcf81e954d438430c5d3a117a9ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c9cbcf81e954d438430c5d3a117a9ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c9cbcf81e954d438430c5d3a117a9ba.jpg", "file_size": 21722, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#9号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cbcf81e954d438430c5d3a117a9ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cbcf81e954d438430c5d3a117a9ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cbcf81e954d438430c5d3a117a9ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c9cbcf81e954d438430c5d3a117a9ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c9cbcf81e954d438430c5d3a117a9ba.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6CsvAj45EdXYmvnITACDMcertqo=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.399255+00 2025-12-09 10:15:39.399261+00 17237 HX033# SPMX-20240815312458 \N \N \N 1 \N [{"file_id": "d935d525-b895-406d-a4c4-7542c8672677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d32e8f7d7554c7fb9cfb872af4300ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d32e8f7d7554c7fb9cfb872af4300ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d32e8f7d7554c7fb9cfb872af4300ff.jpg", "file_size": 7560, "is_delete": false, "file_type": 1, "original_file_name": "HX033#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d32e8f7d7554c7fb9cfb872af4300ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d32e8f7d7554c7fb9cfb872af4300ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d32e8f7d7554c7fb9cfb872af4300ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d32e8f7d7554c7fb9cfb872af4300ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d32e8f7d7554c7fb9cfb872af4300ff.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H5JPrW5rl6Ad1_loY1dTQ1IfAus=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.402041+00 2025-12-09 10:15:39.402047+00 17238 0008-12FWE#粉色VS-D3 SPMX-20240815312465 \N \N \N 1 \N [{"file_id": "54ad9b61-18af-45a8-9c87-3aaa0e43a5bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "567fa9f9914c48f990e2f468751e8541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "567fa9f9914c48f990e2f468751e8541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "567fa9f9914c48f990e2f468751e8541.jpg", "file_size": 18877, "is_delete": false, "file_type": 1, "original_file_name": "0008-12FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567fa9f9914c48f990e2f468751e8541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567fa9f9914c48f990e2f468751e8541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567fa9f9914c48f990e2f468751e8541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/567fa9f9914c48f990e2f468751e8541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/567fa9f9914c48f990e2f468751e8541.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_PAAPiD4Eq8ka4P8EwsAZHHXxVk=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.404892+00 2025-12-09 10:15:39.404898+00 17239 1231-19FWF#中童12码+10码 SPMX-20240815312459 \N \N \N 1 \N [{"file_id": "41e723b7-4a34-447e-91f5-9e6549c1c20b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ce8b63d64414a9386b518e7b83fe494.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ce8b63d64414a9386b518e7b83fe494.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ce8b63d64414a9386b518e7b83fe494.jpg", "file_size": 19329, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce8b63d64414a9386b518e7b83fe494.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce8b63d64414a9386b518e7b83fe494.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce8b63d64414a9386b518e7b83fe494.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ce8b63d64414a9386b518e7b83fe494.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ce8b63d64414a9386b518e7b83fe494.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G78ciN7_xcpT3Fi5-pWJiB1kuuE=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.407905+00 2025-12-09 10:15:39.407911+00 17240 8558#黑色 SPMX-20240815312467 \N \N \N 1 \N [{"file_id": "63ae6647-0116-4a13-a5d1-5197ca974ad1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a72f5298e07542f9ad697c79df264f38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a72f5298e07542f9ad697c79df264f38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a72f5298e07542f9ad697c79df264f38.jpg", "file_size": 15756, "is_delete": false, "file_type": 1, "original_file_name": "8558#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72f5298e07542f9ad697c79df264f38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72f5298e07542f9ad697c79df264f38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a72f5298e07542f9ad697c79df264f38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a72f5298e07542f9ad697c79df264f38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a72f5298e07542f9ad697c79df264f38.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uht7z9dpCfp70ndb_kEC0jxQSuA=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.410911+00 2025-12-09 10:15:39.410919+00 17241 JTSS791FW#粉VS-D3 SPMX-20240815312461 \N \N \N 1 \N [{"file_id": "93ed87cf-756f-4fb5-ab89-e04ff6db7cc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63152649b29941bf821b3c3d826f0051.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63152649b29941bf821b3c3d826f0051.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63152649b29941bf821b3c3d826f0051.jpg", "file_size": 9474, "is_delete": false, "file_type": 1, "original_file_name": "JTSS791FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63152649b29941bf821b3c3d826f0051.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63152649b29941bf821b3c3d826f0051.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63152649b29941bf821b3c3d826f0051.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63152649b29941bf821b3c3d826f0051.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63152649b29941bf821b3c3d826f0051.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpFiUtZnGXl0KH4mkDnXDjnV-jI=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.413829+00 2025-12-09 10:15:39.413836+00 17242 CCH0555-1#黑色净色 SPMX-20240815312464 \N \N \N 1 \N [{"file_id": "9e908c8a-c7a6-49a8-a6d9-a2cad6497b0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e6ebd4dbad74b69a595df46f77dbef1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e6ebd4dbad74b69a595df46f77dbef1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e6ebd4dbad74b69a595df46f77dbef1.jpg", "file_size": 7917, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6ebd4dbad74b69a595df46f77dbef1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6ebd4dbad74b69a595df46f77dbef1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6ebd4dbad74b69a595df46f77dbef1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e6ebd4dbad74b69a595df46f77dbef1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e6ebd4dbad74b69a595df46f77dbef1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmkpWjMldp9UwD8Sf3ec1mwFapg=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.416692+00 2025-12-09 10:15:39.416698+00 17243 CCH0555-1#黄色 SPMX-20240815312455 \N \N \N 1 \N [{"file_id": "4e96f91b-07e9-400f-88b6-7b4d823eefac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6685d6bc7f6404697645fae0ff34353.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6685d6bc7f6404697645fae0ff34353.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6685d6bc7f6404697645fae0ff34353.jpg", "file_size": 27706, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6685d6bc7f6404697645fae0ff34353.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6685d6bc7f6404697645fae0ff34353.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6685d6bc7f6404697645fae0ff34353.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6685d6bc7f6404697645fae0ff34353.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6685d6bc7f6404697645fae0ff34353.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVR4BqE60C4svNqG4SphsredmkE=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.419576+00 2025-12-09 10:15:39.419582+00 17244 FX0003-16#RC23 SPMX-20240815312468 \N \N \N 1 \N [{"file_id": "5795caf4-a722-4926-be1f-32f182cffe07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72aebf91738b4e51a4a7e830d7fe4f85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72aebf91738b4e51a4a7e830d7fe4f85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72aebf91738b4e51a4a7e830d7fe4f85.jpg", "file_size": 21822, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-16#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72aebf91738b4e51a4a7e830d7fe4f85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72aebf91738b4e51a4a7e830d7fe4f85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72aebf91738b4e51a4a7e830d7fe4f85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72aebf91738b4e51a4a7e830d7fe4f85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72aebf91738b4e51a4a7e830d7fe4f85.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:brz9Cs-NzwoCErIMUv56pOSmGwA=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.422386+00 2025-12-09 10:15:39.422393+00 17245 LJH1886#青绿 SPMX-20240815312460 \N \N \N 1 \N [{"file_id": "4b7317e6-3d47-4dfd-80a2-648389172920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a7ebcd9859c4e97b71ff27b97a5894b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a7ebcd9859c4e97b71ff27b97a5894b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a7ebcd9859c4e97b71ff27b97a5894b.jpg", "file_size": 61048, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#青绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7ebcd9859c4e97b71ff27b97a5894b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7ebcd9859c4e97b71ff27b97a5894b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a7ebcd9859c4e97b71ff27b97a5894b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a7ebcd9859c4e97b71ff27b97a5894b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a7ebcd9859c4e97b71ff27b97a5894b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04jZya_edrK6r6eKQYJAlIJV1iM=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.42523+00 2025-12-09 10:15:39.425235+00 17246 LZ1369#上身3号色 SPMX-20240815312462 \N \N \N 1 \N [{"file_id": "5ae22b44-ddfb-4a7d-aecb-bd4c65b030fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a0325459f6f4277bb0a354cdfb7b7d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a0325459f6f4277bb0a354cdfb7b7d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a0325459f6f4277bb0a354cdfb7b7d6.jpg", "file_size": 18596, "is_delete": false, "file_type": 1, "original_file_name": "LZ1369#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0325459f6f4277bb0a354cdfb7b7d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0325459f6f4277bb0a354cdfb7b7d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a0325459f6f4277bb0a354cdfb7b7d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a0325459f6f4277bb0a354cdfb7b7d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a0325459f6f4277bb0a354cdfb7b7d6.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bi9jWnDHGw6bErzYC2slPooCqTQ=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.428094+00 2025-12-09 10:15:39.4281+00 17247 8558#蓝色净色 SPMX-20240815312456 \N \N \N 1 \N [{"file_id": "f9c68e17-6540-421c-a226-005c34df4b8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6252edf3e44744c8a648f74fbe166f70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6252edf3e44744c8a648f74fbe166f70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6252edf3e44744c8a648f74fbe166f70.jpg", "file_size": 8678, "is_delete": false, "file_type": 1, "original_file_name": "8558#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252edf3e44744c8a648f74fbe166f70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252edf3e44744c8a648f74fbe166f70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252edf3e44744c8a648f74fbe166f70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6252edf3e44744c8a648f74fbe166f70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6252edf3e44744c8a648f74fbe166f70.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uyMpdEBQvmV5SydWjMa_BvXWvPw=", "createTime": "2024-08-15 15:02:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.430807+00 2025-12-09 10:15:39.430813+00 17248 231483#-002-1 SPMX-20240815312463 \N \N \N 1 \N [{"file_id": "28706532-7928-4be7-9c9d-d791966d7a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23411fcd42404ee99676bdc01f6467ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23411fcd42404ee99676bdc01f6467ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23411fcd42404ee99676bdc01f6467ca.jpg", "file_size": 31255, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23411fcd42404ee99676bdc01f6467ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23411fcd42404ee99676bdc01f6467ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23411fcd42404ee99676bdc01f6467ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23411fcd42404ee99676bdc01f6467ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23411fcd42404ee99676bdc01f6467ca.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOXUAt1U2I2kts0hTsFyQlwHIyM=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.433577+00 2025-12-09 10:15:39.433582+00 17249 DL31592-2#大红批布 SPMX-20240815312466 \N \N \N 1 \N [{"file_id": "46e3508a-df96-47f4-8eb2-38c9c54be4a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "822de017aba94a3fb5eac08b970789d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "822de017aba94a3fb5eac08b970789d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "822de017aba94a3fb5eac08b970789d1.jpg", "file_size": 23043, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#大红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/822de017aba94a3fb5eac08b970789d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/822de017aba94a3fb5eac08b970789d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/822de017aba94a3fb5eac08b970789d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/822de017aba94a3fb5eac08b970789d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/822de017aba94a3fb5eac08b970789d1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7FKotMWH8Szanb8tJTxzKqhJgkM=", "createTime": "2024-08-15 15:02:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.436285+00 2025-12-09 10:15:39.436292+00 17250 CCH0555-2#橙色番禺调色 SPMX-20240815312473 \N \N \N 1 \N [{"file_id": "a5682b14-8ea9-4963-b4d0-46b3bde01fc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3849730ece94d0d8faf2956d62cef28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3849730ece94d0d8faf2956d62cef28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3849730ece94d0d8faf2956d62cef28.jpg", "file_size": 20055, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-2#橙色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3849730ece94d0d8faf2956d62cef28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3849730ece94d0d8faf2956d62cef28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3849730ece94d0d8faf2956d62cef28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3849730ece94d0d8faf2956d62cef28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3849730ece94d0d8faf2956d62cef28.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kW63qdmsGW2j2IC9PLBqGDCKQNI=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.439135+00 2025-12-09 10:15:39.439141+00 17251 8558#黑色净色 SPMX-20240815312478 \N \N \N 1 \N [{"file_id": "e1df9b29-3ca8-4e77-8e4e-95a2331c2df5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6be0fb763de4c69b06311f72befcd73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6be0fb763de4c69b06311f72befcd73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6be0fb763de4c69b06311f72befcd73.jpg", "file_size": 8203, "is_delete": false, "file_type": 1, "original_file_name": "8558#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6be0fb763de4c69b06311f72befcd73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6be0fb763de4c69b06311f72befcd73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6be0fb763de4c69b06311f72befcd73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6be0fb763de4c69b06311f72befcd73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6be0fb763de4c69b06311f72befcd73.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L98keGVvC7uu-1sn8y5G92Zuuqc=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.441943+00 2025-12-09 10:15:39.44195+00 17252 LJH1886#黄色 SPMX-20240815312472 \N \N \N 1 \N [{"file_id": "22d0aa17-d881-4631-bee5-22821eebe93d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b08f3299edbb4f7aa807849bf6cfe171.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b08f3299edbb4f7aa807849bf6cfe171.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b08f3299edbb4f7aa807849bf6cfe171.jpg", "file_size": 62107, "is_delete": false, "file_type": 1, "original_file_name": "LJH1886#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08f3299edbb4f7aa807849bf6cfe171.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08f3299edbb4f7aa807849bf6cfe171.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b08f3299edbb4f7aa807849bf6cfe171.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b08f3299edbb4f7aa807849bf6cfe171.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b08f3299edbb4f7aa807849bf6cfe171.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8eWUW-pH0UeInvsylvC58K2OpQI=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.444789+00 2025-12-09 10:15:39.444795+00 17253 LZ1369#上身4号色 SPMX-20240815312475 \N \N \N 1 \N [{"file_id": "99ff005c-07ac-432c-ae56-796c368e6302", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03066f2ec94e4049aed833eb8ddeb119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03066f2ec94e4049aed833eb8ddeb119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03066f2ec94e4049aed833eb8ddeb119.jpg", "file_size": 18223, "is_delete": false, "file_type": 1, "original_file_name": "LZ1369#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03066f2ec94e4049aed833eb8ddeb119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03066f2ec94e4049aed833eb8ddeb119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03066f2ec94e4049aed833eb8ddeb119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03066f2ec94e4049aed833eb8ddeb119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03066f2ec94e4049aed833eb8ddeb119.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oq1oMrL4u_3Lt2HfgjfsaFqs43U=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.44759+00 2025-12-09 10:15:39.447596+00 17254 DL31592-2#彩兰前幅定位裁 SPMX-20240815312476 \N \N \N 1 \N [{"file_id": "bf9bd068-4acd-43ea-83a2-dbfd07b7e82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7578806549ed4479b66a817a61a9dd67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7578806549ed4479b66a817a61a9dd67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7578806549ed4479b66a817a61a9dd67.jpg", "file_size": 16076, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#彩兰前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7578806549ed4479b66a817a61a9dd67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7578806549ed4479b66a817a61a9dd67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7578806549ed4479b66a817a61a9dd67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7578806549ed4479b66a817a61a9dd67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7578806549ed4479b66a817a61a9dd67.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxsHSyIZ8X4I6SijScgn9tDCECM=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.45059+00 2025-12-09 10:15:39.450596+00 17255 JTSS792FW#VS-D3 SPMX-20240815312470 \N \N \N 1 \N [{"file_id": "e393a3c7-ca8f-4bcc-b926-e8a28046a2fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "120695ccafe14d8b8b1c9293a8f66df2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "120695ccafe14d8b8b1c9293a8f66df2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "120695ccafe14d8b8b1c9293a8f66df2.jpg", "file_size": 9525, "is_delete": false, "file_type": 1, "original_file_name": "JTSS792FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120695ccafe14d8b8b1c9293a8f66df2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120695ccafe14d8b8b1c9293a8f66df2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/120695ccafe14d8b8b1c9293a8f66df2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/120695ccafe14d8b8b1c9293a8f66df2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/120695ccafe14d8b8b1c9293a8f66df2.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jD0XRAhsONtIEEP9DUSH43ir2Bo=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.453473+00 2025-12-09 10:15:39.453479+00 17256 0008-12FWF#粉色 SPMX-20240815312477 \N \N \N 1 \N [{"file_id": "5ac8ecad-d279-4991-9725-a4303a7f22d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg", "file_size": 17311, "is_delete": false, "file_type": 1, "original_file_name": "0008-12FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c28afab5b4c4e1e9e4b42c7a3ca84ae.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8d8-4juSFMbVhIidAbZYe_qTMVo=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.456278+00 2025-12-09 10:15:39.456284+00 17257 HX033#E SPMX-20240815312469 \N \N \N 1 \N [{"file_id": "59193914-3fa7-48fa-9cb4-bdc8195803f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "021f466ba0d44005a1f1c4b549f0bc74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "021f466ba0d44005a1f1c4b549f0bc74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "021f466ba0d44005a1f1c4b549f0bc74.jpg", "file_size": 7917, "is_delete": false, "file_type": 1, "original_file_name": "HX033#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021f466ba0d44005a1f1c4b549f0bc74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021f466ba0d44005a1f1c4b549f0bc74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/021f466ba0d44005a1f1c4b549f0bc74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/021f466ba0d44005a1f1c4b549f0bc74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/021f466ba0d44005a1f1c4b549f0bc74.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sru1psv5qHcrxGNKYaRF6uJmQwE=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.459066+00 2025-12-09 10:15:39.459072+00 17258 1231-19FWF#中童14码 SPMX-20240815312471 \N \N \N 1 \N [{"file_id": "f07ecb71-756c-4376-8b21-5d1078728837", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d461322f79114660b4c46de5175c1ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d461322f79114660b4c46de5175c1ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d461322f79114660b4c46de5175c1ad1.jpg", "file_size": 17416, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d461322f79114660b4c46de5175c1ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d461322f79114660b4c46de5175c1ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d461322f79114660b4c46de5175c1ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d461322f79114660b4c46de5175c1ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d461322f79114660b4c46de5175c1ad1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oA4mfH9dS3eWqPEknIHfdqwHFjw=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.461846+00 2025-12-09 10:15:39.461852+00 17259 231483#-002-2-混码 SPMX-20240815312474 \N \N \N 1 \N [{"file_id": "4a8688a3-e370-4094-9858-274bfe3369b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "523150685fe94108828fe289071b2dc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "523150685fe94108828fe289071b2dc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "523150685fe94108828fe289071b2dc3.jpg", "file_size": 33685, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523150685fe94108828fe289071b2dc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523150685fe94108828fe289071b2dc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/523150685fe94108828fe289071b2dc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/523150685fe94108828fe289071b2dc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/523150685fe94108828fe289071b2dc3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etJDCMP970pWGEvDgoQKNTyd8M0=", "createTime": "2024-08-15 15:02:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.46465+00 2025-12-09 10:15:39.464656+00 17260 FX0003-160#RC23 SPMX-20240815312479 \N \N \N 1 \N [{"file_id": "2973394e-fd02-4fe1-a08e-633c7b77f0ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c90d2d0672154a20a70a7e173819ea5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c90d2d0672154a20a70a7e173819ea5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c90d2d0672154a20a70a7e173819ea5e.jpg", "file_size": 64969, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-160#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90d2d0672154a20a70a7e173819ea5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90d2d0672154a20a70a7e173819ea5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c90d2d0672154a20a70a7e173819ea5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c90d2d0672154a20a70a7e173819ea5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c90d2d0672154a20a70a7e173819ea5e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_N2CYImppvGpuq6YmxhvGSe5How=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.467397+00 2025-12-09 10:15:39.467403+00 17261 LJH1888#兰色 SPMX-20240815312485 \N \N \N 1 \N [{"file_id": "a554fcfa-04dd-4c61-aefe-e6596fdfd242", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f61652ea94b444f81e00fbc59d639cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f61652ea94b444f81e00fbc59d639cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f61652ea94b444f81e00fbc59d639cb.jpg", "file_size": 65132, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f61652ea94b444f81e00fbc59d639cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f61652ea94b444f81e00fbc59d639cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f61652ea94b444f81e00fbc59d639cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f61652ea94b444f81e00fbc59d639cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f61652ea94b444f81e00fbc59d639cb.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tGkwmrpoCuSyFPIDwVLIwRgTw2E=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.470159+00 2025-12-09 10:15:39.470166+00 17262 8559#红色2XL SPMX-20240815312484 \N \N \N 1 \N [{"file_id": "32e230e6-03af-46ec-a900-73d305c2969b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463e482511d94ae6bca74b7620e66a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463e482511d94ae6bca74b7620e66a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463e482511d94ae6bca74b7620e66a07.jpg", "file_size": 17999, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463e482511d94ae6bca74b7620e66a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463e482511d94ae6bca74b7620e66a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463e482511d94ae6bca74b7620e66a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463e482511d94ae6bca74b7620e66a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463e482511d94ae6bca74b7620e66a07.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35hbsSJx1MAs0ErLDxFHKjuVWJ4=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.472866+00 2025-12-09 10:15:39.472872+00 17263 CCH0555-2#水蓝番禺调色 SPMX-20240815312488 \N \N \N 1 \N [{"file_id": "0bf772e4-6477-46e0-875a-60d4ec65f8c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77dbe9befce6401e8ee6ed4f3485683d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77dbe9befce6401e8ee6ed4f3485683d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77dbe9befce6401e8ee6ed4f3485683d.jpg", "file_size": 19888, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-2#水蓝番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dbe9befce6401e8ee6ed4f3485683d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dbe9befce6401e8ee6ed4f3485683d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dbe9befce6401e8ee6ed4f3485683d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77dbe9befce6401e8ee6ed4f3485683d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77dbe9befce6401e8ee6ed4f3485683d.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POHRWHVVlmdF287ldSrYX8KFk0k=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.475711+00 2025-12-09 10:15:39.475716+00 17264 231483#-002-2 SPMX-20240815312489 \N \N \N 1 \N [{"file_id": "4417b2d2-b636-42ef-85e3-630bb12f500f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56b431174c5c443fb77f549449aa0ace.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56b431174c5c443fb77f549449aa0ace.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56b431174c5c443fb77f549449aa0ace.jpg", "file_size": 28367, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b431174c5c443fb77f549449aa0ace.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b431174c5c443fb77f549449aa0ace.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b431174c5c443fb77f549449aa0ace.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56b431174c5c443fb77f549449aa0ace.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56b431174c5c443fb77f549449aa0ace.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFjXJPthmozwDJs19i9WEuD0pUo=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.478492+00 2025-12-09 10:15:39.478498+00 17265 FX0003-161#1号色 SPMX-20240815312490 \N \N \N 1 \N [{"file_id": "fa1a4e58-4854-4b9c-9da0-9a4c633bd2a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg", "file_size": 56891, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9404f11be4b4d1c8b60f2b1c65cc9b0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lp_Ey5HYrbGxQ7-E3QuaE4qRq5g=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.481295+00 2025-12-09 10:15:39.4813+00 17266 JTSS793FW#VS-D3 SPMX-20240815312486 \N \N \N 1 \N [{"file_id": "8eb1f158-64c1-4549-b86e-995aa96d5d0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10ea899ec31742e9a38824fff589a858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10ea899ec31742e9a38824fff589a858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10ea899ec31742e9a38824fff589a858.jpg", "file_size": 12855, "is_delete": false, "file_type": 1, "original_file_name": "JTSS793FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ea899ec31742e9a38824fff589a858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ea899ec31742e9a38824fff589a858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10ea899ec31742e9a38824fff589a858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10ea899ec31742e9a38824fff589a858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10ea899ec31742e9a38824fff589a858.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYrjzTFa1mHfDzAGeqmk8W6RFK0=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.484268+00 2025-12-09 10:15:39.484274+00 17267 0008-12FWF#蓝色 SPMX-20240815312481 \N \N \N 1 \N [{"file_id": "d3070781-6508-49f1-8528-61c7c2538399", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9a8a9cca2fc47f0b56ad2907aa61597.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9a8a9cca2fc47f0b56ad2907aa61597.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9a8a9cca2fc47f0b56ad2907aa61597.jpg", "file_size": 17293, "is_delete": false, "file_type": 1, "original_file_name": "0008-12FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a8a9cca2fc47f0b56ad2907aa61597.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a8a9cca2fc47f0b56ad2907aa61597.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9a8a9cca2fc47f0b56ad2907aa61597.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9a8a9cca2fc47f0b56ad2907aa61597.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9a8a9cca2fc47f0b56ad2907aa61597.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjP9G6Zvhm729b9JpKjj0Ti8HAE=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.487057+00 2025-12-09 10:15:39.487063+00 17268 DL31592-2#彩兰批布 SPMX-20240815312482 \N \N \N 1 \N [{"file_id": "a59ac527-c61b-498b-af68-84731bb48142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "300405b864484ede8bfb1ed7f22e0a71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "300405b864484ede8bfb1ed7f22e0a71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "300405b864484ede8bfb1ed7f22e0a71.jpg", "file_size": 23680, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#彩兰批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300405b864484ede8bfb1ed7f22e0a71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300405b864484ede8bfb1ed7f22e0a71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300405b864484ede8bfb1ed7f22e0a71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/300405b864484ede8bfb1ed7f22e0a71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/300405b864484ede8bfb1ed7f22e0a71.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rV4PVPqoBDVP47bdD6OiV4lhCLg=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.489946+00 2025-12-09 10:15:39.489953+00 17269 LZ136FWF#1号色短袖 SPMX-20240815312487 \N \N \N 1 \N [{"file_id": "9b3cc9d1-bb41-4270-9b70-028d392cff5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeefed7a232840d5b6eb6ec699873f0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeefed7a232840d5b6eb6ec699873f0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeefed7a232840d5b6eb6ec699873f0a.jpg", "file_size": 16804, "is_delete": false, "file_type": 1, "original_file_name": "LZ136FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeefed7a232840d5b6eb6ec699873f0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeefed7a232840d5b6eb6ec699873f0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeefed7a232840d5b6eb6ec699873f0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeefed7a232840d5b6eb6ec699873f0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeefed7a232840d5b6eb6ec699873f0a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZkMWPo-RQdXrlpoRerzSNZoF_8=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.492754+00 2025-12-09 10:15:39.49276+00 17270 1231-19FWF#中童袖领匹布 SPMX-20240815312483 \N \N \N 1 \N [{"file_id": "d494e98c-c6df-4d5e-88a2-6c56d0cb2eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95f5eca7ef7a46fda72f14977857f9ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95f5eca7ef7a46fda72f14977857f9ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95f5eca7ef7a46fda72f14977857f9ef.jpg", "file_size": 14326, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f5eca7ef7a46fda72f14977857f9ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f5eca7ef7a46fda72f14977857f9ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95f5eca7ef7a46fda72f14977857f9ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95f5eca7ef7a46fda72f14977857f9ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95f5eca7ef7a46fda72f14977857f9ef.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkuusafYlTFjY5WyrgDMCOha42Y=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.49559+00 2025-12-09 10:15:39.495595+00 17271 HX035# SPMX-20240815312480 \N \N \N 1 \N [{"file_id": "d90bb200-e7b7-40a3-a472-d0c5e4217a32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "459815a540764abba450cb22af16095e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "459815a540764abba450cb22af16095e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "459815a540764abba450cb22af16095e.jpg", "file_size": 13872, "is_delete": false, "file_type": 1, "original_file_name": "HX035#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459815a540764abba450cb22af16095e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459815a540764abba450cb22af16095e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/459815a540764abba450cb22af16095e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/459815a540764abba450cb22af16095e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/459815a540764abba450cb22af16095e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olxJ6CcN-do2L7c6OWQ76VyS7Lg=", "createTime": "2024-08-15 15:02:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.498421+00 2025-12-09 10:15:39.498428+00 17272 HX036# SPMX-20240815312491 \N \N \N 1 \N [{"file_id": "a69aec36-4659-457d-9239-0f1f73709438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3965fc86c3de42acac80ebcf55c7748e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3965fc86c3de42acac80ebcf55c7748e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3965fc86c3de42acac80ebcf55c7748e.jpg", "file_size": 15450, "is_delete": false, "file_type": 1, "original_file_name": "HX036#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3965fc86c3de42acac80ebcf55c7748e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3965fc86c3de42acac80ebcf55c7748e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3965fc86c3de42acac80ebcf55c7748e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3965fc86c3de42acac80ebcf55c7748e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3965fc86c3de42acac80ebcf55c7748e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lR7ZpCIa6Jsbg5ix1vbr-72FFU4=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.50115+00 2025-12-09 10:15:39.501156+00 17273 0008-13FWE#白底VS-D3 SPMX-20240815312492 \N \N \N 1 \N [{"file_id": "a0cf2c6a-6a5a-49d8-a6a9-f9763816274e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2629a805522b4ffc9adaa55d020640c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2629a805522b4ffc9adaa55d020640c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2629a805522b4ffc9adaa55d020640c0.jpg", "file_size": 12546, "is_delete": false, "file_type": 1, "original_file_name": "0008-13FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2629a805522b4ffc9adaa55d020640c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2629a805522b4ffc9adaa55d020640c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2629a805522b4ffc9adaa55d020640c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2629a805522b4ffc9adaa55d020640c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2629a805522b4ffc9adaa55d020640c0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olfrjcQOc1Bls2cV6z5YiicYSHc=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.526815+00 2025-12-09 10:15:39.526821+00 17282 HX036#黑底 SPMX-20240815312500 \N \N \N 1 \N [{"file_id": "3f750fa3-5600-42d4-b483-4815082ea9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "746a53e3e5074ff885c1c677b76c8929.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "746a53e3e5074ff885c1c677b76c8929.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "746a53e3e5074ff885c1c677b76c8929.jpg", "file_size": 15710, "is_delete": false, "file_type": 1, "original_file_name": "HX036#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746a53e3e5074ff885c1c677b76c8929.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746a53e3e5074ff885c1c677b76c8929.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/746a53e3e5074ff885c1c677b76c8929.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/746a53e3e5074ff885c1c677b76c8929.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/746a53e3e5074ff885c1c677b76c8929.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hk7FAlso_-a5yiN6p2qmjEujbfw=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.503925+00 2025-12-09 10:15:39.503931+00 17274 DL31592-2#玫红前幅定位裁 SPMX-20240815312493 \N \N \N 1 \N [{"file_id": "7d321641-3eba-400b-a20f-01fd462edd17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4b5228a02f34be1bacfb878f655ed84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4b5228a02f34be1bacfb878f655ed84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4b5228a02f34be1bacfb878f655ed84.jpg", "file_size": 15981, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#玫红前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b5228a02f34be1bacfb878f655ed84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b5228a02f34be1bacfb878f655ed84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b5228a02f34be1bacfb878f655ed84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4b5228a02f34be1bacfb878f655ed84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4b5228a02f34be1bacfb878f655ed84.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9aZk02E7KltamDrLJGXsIEIFqlk=", "createTime": "2024-08-15 15:02:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.506681+00 2025-12-09 10:15:39.506687+00 17275 1231-19FWF#小童6码 SPMX-20240815312494 \N \N \N 1 \N [{"file_id": "8ee94ede-c301-4a11-972c-fa542458495c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d55d3afa8c1a4657811478f403cd1174.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d55d3afa8c1a4657811478f403cd1174.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d55d3afa8c1a4657811478f403cd1174.jpg", "file_size": 20530, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55d3afa8c1a4657811478f403cd1174.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55d3afa8c1a4657811478f403cd1174.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d55d3afa8c1a4657811478f403cd1174.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d55d3afa8c1a4657811478f403cd1174.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d55d3afa8c1a4657811478f403cd1174.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TXkZiKO2RPpQ_uzfU_w-vy-_nu0=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.509495+00 2025-12-09 10:15:39.5095+00 17276 8559#红色3XL SPMX-20240815312495 \N \N \N 1 \N [{"file_id": "253da51b-b0d1-4e77-8d40-b4027f59ceb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d477b8e4f249f487e5e997c50987f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d477b8e4f249f487e5e997c50987f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d477b8e4f249f487e5e997c50987f5.jpg", "file_size": 18412, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d477b8e4f249f487e5e997c50987f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d477b8e4f249f487e5e997c50987f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d477b8e4f249f487e5e997c50987f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d477b8e4f249f487e5e997c50987f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d477b8e4f249f487e5e997c50987f5.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QS1SDYkvBXza__DRh_RypFejWGE=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.512275+00 2025-12-09 10:15:39.51228+00 17277 LJH1888#桔色 SPMX-20240815312496 \N \N \N 1 \N [{"file_id": "955f06f3-ace8-451a-861b-28914c30b294", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2daeac6d1d9e493e81f4972090245109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2daeac6d1d9e493e81f4972090245109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2daeac6d1d9e493e81f4972090245109.jpg", "file_size": 67205, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2daeac6d1d9e493e81f4972090245109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2daeac6d1d9e493e81f4972090245109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2daeac6d1d9e493e81f4972090245109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2daeac6d1d9e493e81f4972090245109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2daeac6d1d9e493e81f4972090245109.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZieiMnQsT78xiwvWJ6uENzPzMk=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.515123+00 2025-12-09 10:15:39.515129+00 17278 0008-13FWE#黑底VS-D3 SPMX-20240815312497 \N \N \N 1 \N [{"file_id": "17b74816-3971-4944-9b12-4f8b77efcafd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "375e25c1f7a441ffac52697aa09be491.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "375e25c1f7a441ffac52697aa09be491.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "375e25c1f7a441ffac52697aa09be491.jpg", "file_size": 14801, "is_delete": false, "file_type": 1, "original_file_name": "0008-13FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e25c1f7a441ffac52697aa09be491.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e25c1f7a441ffac52697aa09be491.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e25c1f7a441ffac52697aa09be491.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/375e25c1f7a441ffac52697aa09be491.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/375e25c1f7a441ffac52697aa09be491.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EKiWkVc70cbAntB_Wf7cr-5bvA4=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.518073+00 2025-12-09 10:15:39.51808+00 17279 LZ136FWF#2号色短袖 SPMX-20240815312498 \N \N \N 1 \N [{"file_id": "6950600c-d324-4156-8937-f61a1713abe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b569acf45517463184814e55e07b72ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b569acf45517463184814e55e07b72ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b569acf45517463184814e55e07b72ff.jpg", "file_size": 15907, "is_delete": false, "file_type": 1, "original_file_name": "LZ136FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b569acf45517463184814e55e07b72ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b569acf45517463184814e55e07b72ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b569acf45517463184814e55e07b72ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b569acf45517463184814e55e07b72ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b569acf45517463184814e55e07b72ff.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bhlne-3FM-fpT7DY44znaCFTzMU=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.520935+00 2025-12-09 10:15:39.520941+00 17280 8559#红色4XL SPMX-20240815312506 \N \N \N 1 \N [{"file_id": "1ec3d226-753c-4b71-ae7d-07c40fe5f7c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef7baf3cde724f7cbcf597dcd465e978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef7baf3cde724f7cbcf597dcd465e978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef7baf3cde724f7cbcf597dcd465e978.jpg", "file_size": 18577, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7baf3cde724f7cbcf597dcd465e978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7baf3cde724f7cbcf597dcd465e978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7baf3cde724f7cbcf597dcd465e978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef7baf3cde724f7cbcf597dcd465e978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef7baf3cde724f7cbcf597dcd465e978.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-etocrNbJizHOLMpEkv2pecRHlw=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.524016+00 2025-12-09 10:15:39.524023+00 17281 CCH0555-2#红色番禺调色 SPMX-20240815312501 \N \N \N 1 \N [{"file_id": "f0ba227e-29e7-42f3-8d3b-c48b499fee9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ad3efe95a48448ca2a186750daf657e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ad3efe95a48448ca2a186750daf657e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ad3efe95a48448ca2a186750daf657e.jpg", "file_size": 19146, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-2#红色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad3efe95a48448ca2a186750daf657e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad3efe95a48448ca2a186750daf657e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad3efe95a48448ca2a186750daf657e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ad3efe95a48448ca2a186750daf657e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ad3efe95a48448ca2a186750daf657e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oIFvHT5tWKXuzc4P69OpWc3aaKM=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.529662+00 2025-12-09 10:15:39.529668+00 17283 FX0003-161#2号色 SPMX-20240815312499 \N \N \N 1 \N [{"file_id": "4c835e52-b0d3-4bd5-a062-2b152784932a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6cead9276c245fcb80f08c615ef1604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6cead9276c245fcb80f08c615ef1604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6cead9276c245fcb80f08c615ef1604.jpg", "file_size": 55058, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6cead9276c245fcb80f08c615ef1604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6cead9276c245fcb80f08c615ef1604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6cead9276c245fcb80f08c615ef1604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6cead9276c245fcb80f08c615ef1604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6cead9276c245fcb80f08c615ef1604.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tgGRVRoCTJr3A9_olIn4BPMlCIs=", "createTime": "2024-08-15 15:02:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.532515+00 2025-12-09 10:15:39.532521+00 17284 231483#-002-3-混码 SPMX-20240815312502 \N \N \N 1 \N [{"file_id": "e545cf1a-c8e7-45c6-a229-03665bd2e89f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9356c01418d444aba1f3769e640535db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9356c01418d444aba1f3769e640535db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9356c01418d444aba1f3769e640535db.jpg", "file_size": 28373, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356c01418d444aba1f3769e640535db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356c01418d444aba1f3769e640535db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9356c01418d444aba1f3769e640535db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9356c01418d444aba1f3769e640535db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9356c01418d444aba1f3769e640535db.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNMmOeKHnMb-ByB19hkdnIZNbpM=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.535271+00 2025-12-09 10:15:39.535277+00 17285 DL31592-2#玫红批布 SPMX-20240815312504 \N \N \N 1 \N [{"file_id": "86b82393-3b08-4c19-94e7-690b314f1ab4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb0c1852a0b41afb203cc92bb357ed1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb0c1852a0b41afb203cc92bb357ed1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb0c1852a0b41afb203cc92bb357ed1.jpg", "file_size": 23041, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#玫红批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb0c1852a0b41afb203cc92bb357ed1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb0c1852a0b41afb203cc92bb357ed1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb0c1852a0b41afb203cc92bb357ed1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb0c1852a0b41afb203cc92bb357ed1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb0c1852a0b41afb203cc92bb357ed1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1GJzV2Y9gMMjOjNwKuZPcMGg0LU=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.538059+00 2025-12-09 10:15:39.538065+00 17286 1231-19FWF#小童8码+4码 SPMX-20240815312505 \N \N \N 1 \N [{"file_id": "f58bc2d6-c5a7-4da8-899c-7cbd43ccfa8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f941e044ff8e47d88fa5763c839f4acd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f941e044ff8e47d88fa5763c839f4acd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f941e044ff8e47d88fa5763c839f4acd.jpg", "file_size": 21175, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f941e044ff8e47d88fa5763c839f4acd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f941e044ff8e47d88fa5763c839f4acd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f941e044ff8e47d88fa5763c839f4acd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f941e044ff8e47d88fa5763c839f4acd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f941e044ff8e47d88fa5763c839f4acd.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Na1wWBn774kTTPVjNC8UPHIXPx8=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.540794+00 2025-12-09 10:15:39.5408+00 17287 JTSS794FW#VS-D3 SPMX-20240815312503 \N \N \N 1 \N [{"file_id": "a8990f76-db59-4de1-9d62-dcb7fdf75eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fc73dc2087845ebbc2f7678ec34e504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fc73dc2087845ebbc2f7678ec34e504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fc73dc2087845ebbc2f7678ec34e504.jpg", "file_size": 14860, "is_delete": false, "file_type": 1, "original_file_name": "JTSS794FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc73dc2087845ebbc2f7678ec34e504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc73dc2087845ebbc2f7678ec34e504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fc73dc2087845ebbc2f7678ec34e504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fc73dc2087845ebbc2f7678ec34e504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fc73dc2087845ebbc2f7678ec34e504.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hR9aL_YfTKvelgxPuJfky4gJ8BQ=", "createTime": "2024-08-15 15:02:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.543579+00 2025-12-09 10:15:39.543585+00 17288 231483#-002-3 SPMX-20240815312509 \N \N \N 1 \N [{"file_id": "3eeb259b-4010-4e4a-adf7-2d7b752ef72e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bed10ccc680e4073873a9d6967f87190.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bed10ccc680e4073873a9d6967f87190.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bed10ccc680e4073873a9d6967f87190.jpg", "file_size": 27502, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed10ccc680e4073873a9d6967f87190.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed10ccc680e4073873a9d6967f87190.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed10ccc680e4073873a9d6967f87190.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bed10ccc680e4073873a9d6967f87190.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bed10ccc680e4073873a9d6967f87190.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAGAzRnyBqdDdGCC7cJQ_e7urxw=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.546464+00 2025-12-09 10:15:39.54647+00 17289 LJH1888#玫红 SPMX-20240815312511 \N \N \N 1 \N [{"file_id": "4e34cd69-077c-4260-8da8-627b6af61945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9f291cbe5ee412db792aaeac9c7081f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9f291cbe5ee412db792aaeac9c7081f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9f291cbe5ee412db792aaeac9c7081f.jpg", "file_size": 67617, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f291cbe5ee412db792aaeac9c7081f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f291cbe5ee412db792aaeac9c7081f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9f291cbe5ee412db792aaeac9c7081f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9f291cbe5ee412db792aaeac9c7081f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9f291cbe5ee412db792aaeac9c7081f.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ANy3C1facnCYpbkmIyt4GWvxK0=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.549375+00 2025-12-09 10:15:39.549381+00 17290 JTSS795FW#VS-D3 SPMX-20240815312512 \N \N \N 1 \N [{"file_id": "865607f3-f9df-4a39-9fba-84a504b747cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42b1f0cb0f554336a0aa40d4a2c2a827.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42b1f0cb0f554336a0aa40d4a2c2a827.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42b1f0cb0f554336a0aa40d4a2c2a827.jpg", "file_size": 9579, "is_delete": false, "file_type": 1, "original_file_name": "JTSS795FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b1f0cb0f554336a0aa40d4a2c2a827.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b1f0cb0f554336a0aa40d4a2c2a827.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b1f0cb0f554336a0aa40d4a2c2a827.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42b1f0cb0f554336a0aa40d4a2c2a827.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42b1f0cb0f554336a0aa40d4a2c2a827.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:010E9ymDHfuk1FD1Cz8a-pWG6-w=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.552188+00 2025-12-09 10:15:39.552194+00 17291 FX0003-161#3号色 SPMX-20240815312514 \N \N \N 1 \N [{"file_id": "0bb52a7b-1e53-4457-a761-84896386dde4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b2fe5acab04636ad7f260c04993188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b2fe5acab04636ad7f260c04993188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b2fe5acab04636ad7f260c04993188.jpg", "file_size": 51329, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2fe5acab04636ad7f260c04993188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2fe5acab04636ad7f260c04993188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b2fe5acab04636ad7f260c04993188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b2fe5acab04636ad7f260c04993188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b2fe5acab04636ad7f260c04993188.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0c9V5898LwYtTzyzagvAubZvu7g=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.55494+00 2025-12-09 10:15:39.554945+00 17292 DL31592-2#蓝绿前幅定位裁 SPMX-20240815312515 \N \N \N 1 \N [{"file_id": "5d9ee404-cffe-40f8-9277-2771fec865dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce69cf542c3e49e3a63dc4d29b2af065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce69cf542c3e49e3a63dc4d29b2af065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce69cf542c3e49e3a63dc4d29b2af065.jpg", "file_size": 15664, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#蓝绿前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce69cf542c3e49e3a63dc4d29b2af065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce69cf542c3e49e3a63dc4d29b2af065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce69cf542c3e49e3a63dc4d29b2af065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce69cf542c3e49e3a63dc4d29b2af065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce69cf542c3e49e3a63dc4d29b2af065.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YnwdkUyDPurkR0Qe0wwFilR0bFQ=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.557951+00 2025-12-09 10:15:39.557957+00 17293 HX0847-1#WJC22 SPMX-20240815312513 \N \N \N 1 \N [{"file_id": "acaa7021-c42e-45c1-a83d-db126bf0acfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9fe0fe4299a4247a6f04c8b1790c876.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9fe0fe4299a4247a6f04c8b1790c876.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9fe0fe4299a4247a6f04c8b1790c876.jpg", "file_size": 20127, "is_delete": false, "file_type": 1, "original_file_name": "HX0847-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0fe4299a4247a6f04c8b1790c876.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0fe4299a4247a6f04c8b1790c876.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0fe4299a4247a6f04c8b1790c876.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0fe4299a4247a6f04c8b1790c876.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9fe0fe4299a4247a6f04c8b1790c876.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vs0Jz1x-crSgUOQ-Egqh6jHa9XA=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.561006+00 2025-12-09 10:15:39.561012+00 17294 8559#红色5XL SPMX-20240815312516 \N \N \N 1 \N [{"file_id": "4199e39e-13ac-4670-afe7-f98e61964eae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg", "file_size": 18670, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e56e2648e4d4b3fbf9b1dd22ef0b43c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIVsRnLvospogI-2aItK9GbsBYA=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.564028+00 2025-12-09 10:15:39.564034+00 17295 1231-19FWF#小童袖领匹布 SPMX-20240815312517 \N \N \N 1 \N [{"file_id": "df349a23-0615-4693-8ae4-ed19501c8f6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eca4ff695e2472ab22bc7414dd19ef1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eca4ff695e2472ab22bc7414dd19ef1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eca4ff695e2472ab22bc7414dd19ef1.jpg", "file_size": 14311, "is_delete": false, "file_type": 1, "original_file_name": "1231-19FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca4ff695e2472ab22bc7414dd19ef1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca4ff695e2472ab22bc7414dd19ef1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca4ff695e2472ab22bc7414dd19ef1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eca4ff695e2472ab22bc7414dd19ef1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eca4ff695e2472ab22bc7414dd19ef1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bcd3p1N-cJQptVnF1q4aQieKmwQ=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.56707+00 2025-12-09 10:15:39.567077+00 17296 CCH0555-2#黄色番禺调色 SPMX-20240815312508 \N \N \N 1 \N [{"file_id": "0665779e-06c8-4f55-ae43-49ffd1cd6205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "946c63e108e442d5abfda6e44e6b1568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "946c63e108e442d5abfda6e44e6b1568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "946c63e108e442d5abfda6e44e6b1568.jpg", "file_size": 19062, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-2#黄色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/946c63e108e442d5abfda6e44e6b1568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/946c63e108e442d5abfda6e44e6b1568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/946c63e108e442d5abfda6e44e6b1568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/946c63e108e442d5abfda6e44e6b1568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/946c63e108e442d5abfda6e44e6b1568.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdf1tQ_9ZP56x2SJgj-3FNrfx6I=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.570161+00 2025-12-09 10:15:39.570167+00 17297 0008-13FWF#蓝色V5曲线 SPMX-20240815312510 \N \N \N 1 \N [{"file_id": "5aafde3f-182b-425c-900f-e9c6b9c97823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74717776073e43978b43908de7a93832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74717776073e43978b43908de7a93832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74717776073e43978b43908de7a93832.jpg", "file_size": 24760, "is_delete": false, "file_type": 1, "original_file_name": "0008-13FWF#蓝色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74717776073e43978b43908de7a93832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74717776073e43978b43908de7a93832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74717776073e43978b43908de7a93832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74717776073e43978b43908de7a93832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74717776073e43978b43908de7a93832.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m99BK8Ompdss-DjFi4d-X97xvuU=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.573249+00 2025-12-09 10:15:39.573256+00 17298 LZ136FWF#3号色短袖 SPMX-20240815312507 \N \N \N 1 \N [{"file_id": "f89cf3bd-a88e-4bfa-a297-93d567ca039a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e2959683c324a45b367c6be5395e0c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e2959683c324a45b367c6be5395e0c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e2959683c324a45b367c6be5395e0c3.jpg", "file_size": 17648, "is_delete": false, "file_type": 1, "original_file_name": "LZ136FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e2959683c324a45b367c6be5395e0c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e2959683c324a45b367c6be5395e0c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e2959683c324a45b367c6be5395e0c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e2959683c324a45b367c6be5395e0c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e2959683c324a45b367c6be5395e0c3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cNtU7qneGI7Cmq9d6NMv-P-5NeQ=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.57654+00 2025-12-09 10:15:39.576551+00 17299 LZ136FWF#4号色短袖 SPMX-20240815312518 \N \N \N 1 \N [{"file_id": "9a57e64c-eb4e-4440-8623-71c07fbb28bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16ac894cba1f40b08877527a19a1b0bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16ac894cba1f40b08877527a19a1b0bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16ac894cba1f40b08877527a19a1b0bc.jpg", "file_size": 17112, "is_delete": false, "file_type": 1, "original_file_name": "LZ136FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ac894cba1f40b08877527a19a1b0bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ac894cba1f40b08877527a19a1b0bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ac894cba1f40b08877527a19a1b0bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16ac894cba1f40b08877527a19a1b0bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16ac894cba1f40b08877527a19a1b0bc.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjLVlgLGn9TkrxGigEUDPnsZPqg=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.579746+00 2025-12-09 10:15:39.579752+00 17300 8559#红色L SPMX-20240815312527 \N \N \N 1 \N [{"file_id": "180087d5-81cd-41aa-a49b-fd940c704a86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f13ec6c837514d13bd875a7e9e988933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f13ec6c837514d13bd875a7e9e988933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f13ec6c837514d13bd875a7e9e988933.jpg", "file_size": 17356, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13ec6c837514d13bd875a7e9e988933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13ec6c837514d13bd875a7e9e988933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13ec6c837514d13bd875a7e9e988933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f13ec6c837514d13bd875a7e9e988933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f13ec6c837514d13bd875a7e9e988933.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Re_TrLBVeVacFWF6BYuW2De-B1E=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.582657+00 2025-12-09 10:15:39.582663+00 17301 0008-13FWF#黑色V5曲线 SPMX-20240815312524 \N \N \N 1 \N [{"file_id": "803b2bb0-0b7f-4ddf-8cc8-fc14a0269e60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "352f2ba3dfa84dfdab25650f25a1eb8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "352f2ba3dfa84dfdab25650f25a1eb8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "352f2ba3dfa84dfdab25650f25a1eb8b.jpg", "file_size": 24885, "is_delete": false, "file_type": 1, "original_file_name": "0008-13FWF#黑色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/352f2ba3dfa84dfdab25650f25a1eb8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/352f2ba3dfa84dfdab25650f25a1eb8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/352f2ba3dfa84dfdab25650f25a1eb8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/352f2ba3dfa84dfdab25650f25a1eb8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/352f2ba3dfa84dfdab25650f25a1eb8b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_01PXlglOva9AELWFswVD427kHw=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.58554+00 2025-12-09 10:15:39.585547+00 17302 HX2125#净色 SPMX-20240815312526 \N \N \N 1 \N [{"file_id": "8f0fa5a4-7cfd-40ed-9ff7-f72930a24017", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93fad6ee87624586851852933cafec4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93fad6ee87624586851852933cafec4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93fad6ee87624586851852933cafec4e.jpg", "file_size": 13378, "is_delete": false, "file_type": 1, "original_file_name": "HX2125#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fad6ee87624586851852933cafec4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fad6ee87624586851852933cafec4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93fad6ee87624586851852933cafec4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93fad6ee87624586851852933cafec4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93fad6ee87624586851852933cafec4e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNdftB2MwwgY0iBJATG1KJKGFnQ=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.588422+00 2025-12-09 10:15:39.588428+00 17303 231483#-002-4-混码 SPMX-20240815312523 \N \N \N 1 \N [{"file_id": "5ba93ca7-0f53-49f6-8f24-982811c472bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07665cfcaa3842a59de14bf7a505a3af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07665cfcaa3842a59de14bf7a505a3af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07665cfcaa3842a59de14bf7a505a3af.jpg", "file_size": 29044, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07665cfcaa3842a59de14bf7a505a3af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07665cfcaa3842a59de14bf7a505a3af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07665cfcaa3842a59de14bf7a505a3af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07665cfcaa3842a59de14bf7a505a3af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07665cfcaa3842a59de14bf7a505a3af.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuDCeLnNxgRYtqTuu2jkTTDlp18=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.591274+00 2025-12-09 10:15:39.59128+00 17304 JTSS796FW#杏VS-D3 SPMX-20240815312519 \N \N \N 1 \N [{"file_id": "b69fdeeb-4f63-408a-b3ad-0c03a915111a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14c9d1676274c52bc9bb39843e00b03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14c9d1676274c52bc9bb39843e00b03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14c9d1676274c52bc9bb39843e00b03.jpg", "file_size": 17904, "is_delete": false, "file_type": 1, "original_file_name": "JTSS796FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c9d1676274c52bc9bb39843e00b03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c9d1676274c52bc9bb39843e00b03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14c9d1676274c52bc9bb39843e00b03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14c9d1676274c52bc9bb39843e00b03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14c9d1676274c52bc9bb39843e00b03.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mb1Sj1OKOYlnDgirgms4XNv2hg=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.594211+00 2025-12-09 10:15:39.594218+00 17305 DL31592-2#蓝绿批布 SPMX-20240815312525 \N \N \N 1 \N [{"file_id": "a0af17fa-7a10-47ff-829f-133950f70ee2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccac790704444fefb9203c365e1c1c18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccac790704444fefb9203c365e1c1c18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccac790704444fefb9203c365e1c1c18.jpg", "file_size": 22173, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#蓝绿批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccac790704444fefb9203c365e1c1c18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccac790704444fefb9203c365e1c1c18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccac790704444fefb9203c365e1c1c18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccac790704444fefb9203c365e1c1c18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccac790704444fefb9203c365e1c1c18.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rIDXgCAbiN1FsDjuSImJVQ7tLHw=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.597045+00 2025-12-09 10:15:39.597052+00 17306 1231-1FWF#中童12码+10码 SPMX-20240815312529 \N \N \N 1 \N [{"file_id": "2816122e-1218-40e7-b58b-d1bd843b3b59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7ca0091d6642f3ac04b0481993e589.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7ca0091d6642f3ac04b0481993e589.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7ca0091d6642f3ac04b0481993e589.jpg", "file_size": 19534, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7ca0091d6642f3ac04b0481993e589.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7ca0091d6642f3ac04b0481993e589.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7ca0091d6642f3ac04b0481993e589.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7ca0091d6642f3ac04b0481993e589.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7ca0091d6642f3ac04b0481993e589.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Eym8ArFVelwhRDE_fVGuwSOP7aQ=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.59992+00 2025-12-09 10:15:39.599927+00 17307 CCH0555-5#拼接洋红 SPMX-20240815312520 \N \N \N 1 \N [{"file_id": "b0d3c89f-2a75-476b-9e4e-2474976d1a60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d599e8b53b44f57949eb245b9698be8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d599e8b53b44f57949eb245b9698be8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d599e8b53b44f57949eb245b9698be8.jpg", "file_size": 17706, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-5#拼接洋红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d599e8b53b44f57949eb245b9698be8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d599e8b53b44f57949eb245b9698be8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d599e8b53b44f57949eb245b9698be8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d599e8b53b44f57949eb245b9698be8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d599e8b53b44f57949eb245b9698be8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TrY5xM4X8WW75gRrIO-aozmGYM0=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.602796+00 2025-12-09 10:15:39.602802+00 17308 LZ136FWF#5号色短袖 SPMX-20240815312528 \N \N \N 1 \N [{"file_id": "8f790945-5a6a-476d-8471-330dc9bced9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ed0edbb2a054047ac6bcbd022f1595e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ed0edbb2a054047ac6bcbd022f1595e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ed0edbb2a054047ac6bcbd022f1595e.jpg", "file_size": 16427, "is_delete": false, "file_type": 1, "original_file_name": "LZ136FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed0edbb2a054047ac6bcbd022f1595e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed0edbb2a054047ac6bcbd022f1595e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed0edbb2a054047ac6bcbd022f1595e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ed0edbb2a054047ac6bcbd022f1595e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ed0edbb2a054047ac6bcbd022f1595e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ypfLd0pUAoeu4ko1fWNARXMHTg0=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.605676+00 2025-12-09 10:15:39.605681+00 17309 FX0003-161#4号色 SPMX-20240815312521 \N \N \N 1 \N [{"file_id": "8e1ac375-4285-4502-8bef-21f24b9f7868", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9457465b2d184a1aad944a36f92dbd1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9457465b2d184a1aad944a36f92dbd1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9457465b2d184a1aad944a36f92dbd1c.jpg", "file_size": 50749, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9457465b2d184a1aad944a36f92dbd1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9457465b2d184a1aad944a36f92dbd1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9457465b2d184a1aad944a36f92dbd1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9457465b2d184a1aad944a36f92dbd1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9457465b2d184a1aad944a36f92dbd1c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GRzOmAcl-Zd0eBAyfjyDjCer1IQ=", "createTime": "2024-08-15 15:02:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.608536+00 2025-12-09 10:15:39.608542+00 17310 LJH1888#红色 SPMX-20240815312522 \N \N \N 1 \N [{"file_id": "cc1e71a2-641d-40cd-9098-f5180d1edaa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9307bddedcf43c7ad51b03810764f6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9307bddedcf43c7ad51b03810764f6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9307bddedcf43c7ad51b03810764f6d.jpg", "file_size": 66036, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9307bddedcf43c7ad51b03810764f6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9307bddedcf43c7ad51b03810764f6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9307bddedcf43c7ad51b03810764f6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9307bddedcf43c7ad51b03810764f6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9307bddedcf43c7ad51b03810764f6d.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_JDhYqqi41PUG5_G6yA-kfHTmg=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.611329+00 2025-12-09 10:15:39.611334+00 17311 LJH1888#绿色 SPMX-20240815312535 \N \N \N 1 \N [{"file_id": "27d2aea9-8607-45a7-8c18-5380fec9bf4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eb45be124814fafa5ce321a63c66adf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eb45be124814fafa5ce321a63c66adf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eb45be124814fafa5ce321a63c66adf.jpg", "file_size": 66573, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb45be124814fafa5ce321a63c66adf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb45be124814fafa5ce321a63c66adf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb45be124814fafa5ce321a63c66adf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eb45be124814fafa5ce321a63c66adf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eb45be124814fafa5ce321a63c66adf.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:By96K5NU2xSoz8ixRNjVpnHg2D0=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.614205+00 2025-12-09 10:15:39.614211+00 17312 DL31592-2#黄色前幅定位裁 SPMX-20240815312538 \N \N \N 1 \N [{"file_id": "df3a9b82-88cf-4c6b-86c0-58544cf56865", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "396b34ada57d4340a3f4acd397d30bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "396b34ada57d4340a3f4acd397d30bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "396b34ada57d4340a3f4acd397d30bb0.jpg", "file_size": 15337, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#黄色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/396b34ada57d4340a3f4acd397d30bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/396b34ada57d4340a3f4acd397d30bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/396b34ada57d4340a3f4acd397d30bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/396b34ada57d4340a3f4acd397d30bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/396b34ada57d4340a3f4acd397d30bb0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nzt1xedgBhmDNZ_zhZejbGWrIe8=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.617027+00 2025-12-09 10:15:39.617033+00 17313 231483#-002-4 SPMX-20240815312533 \N \N \N 1 \N [{"file_id": "5296521c-a42e-456d-a496-21b963a9cd85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d39add4c8ae45ddacd0ae387fd2bea3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d39add4c8ae45ddacd0ae387fd2bea3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d39add4c8ae45ddacd0ae387fd2bea3.jpg", "file_size": 29131, "is_delete": false, "file_type": 1, "original_file_name": "231483#-002-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d39add4c8ae45ddacd0ae387fd2bea3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d39add4c8ae45ddacd0ae387fd2bea3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d39add4c8ae45ddacd0ae387fd2bea3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d39add4c8ae45ddacd0ae387fd2bea3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d39add4c8ae45ddacd0ae387fd2bea3.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2g9IdkCMRQcapm6sEBjWFWMd8v0=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.61988+00 2025-12-09 10:15:39.619886+00 17314 8559#红色XL SPMX-20240815312536 \N \N \N 1 \N [{"file_id": "5a2e9178-3a0d-4144-855b-828590961d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5573747aa6764a9586a714c84336ffd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5573747aa6764a9586a714c84336ffd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5573747aa6764a9586a714c84336ffd8.jpg", "file_size": 17597, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573747aa6764a9586a714c84336ffd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573747aa6764a9586a714c84336ffd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573747aa6764a9586a714c84336ffd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5573747aa6764a9586a714c84336ffd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5573747aa6764a9586a714c84336ffd8.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRrSYZNEGWlv-noPdCOAX9mWXHM=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.622691+00 2025-12-09 10:15:39.622698+00 17315 0008-14FWE#卡其 SPMX-20240815312534 \N \N \N 1 \N [{"file_id": "1b7a05a9-708e-404b-91c7-9d8d62f9689d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ac6a07921c5465eb5893ff3b9fd8074.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ac6a07921c5465eb5893ff3b9fd8074.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ac6a07921c5465eb5893ff3b9fd8074.jpg", "file_size": 11280, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWE#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac6a07921c5465eb5893ff3b9fd8074.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac6a07921c5465eb5893ff3b9fd8074.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ac6a07921c5465eb5893ff3b9fd8074.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ac6a07921c5465eb5893ff3b9fd8074.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ac6a07921c5465eb5893ff3b9fd8074.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWNYr6fcTJfUuDhYjKhZvjSHgiw=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.625493+00 2025-12-09 10:15:39.625498+00 17316 LZ1370#上身1号色 SPMX-20240815312539 \N \N \N 1 \N [{"file_id": "f67222b0-24c6-4511-b658-3e5c3742cd09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93248a276932457490800c4db364ccff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93248a276932457490800c4db364ccff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93248a276932457490800c4db364ccff.jpg", "file_size": 18434, "is_delete": false, "file_type": 1, "original_file_name": "LZ1370#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93248a276932457490800c4db364ccff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93248a276932457490800c4db364ccff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93248a276932457490800c4db364ccff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93248a276932457490800c4db364ccff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93248a276932457490800c4db364ccff.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GVOJf2o5nJBedFV7k6OCEf3C5Z4=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.628381+00 2025-12-09 10:15:39.628387+00 17317 HX2125#杏色 SPMX-20240815312537 \N \N \N 1 \N [{"file_id": "4ab5c052-3eb9-42ac-9cb6-d72d8b3e37b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f31a28a7b03740f294ed507990b03b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f31a28a7b03740f294ed507990b03b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f31a28a7b03740f294ed507990b03b46.jpg", "file_size": 54992, "is_delete": false, "file_type": 1, "original_file_name": "HX2125#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31a28a7b03740f294ed507990b03b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31a28a7b03740f294ed507990b03b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f31a28a7b03740f294ed507990b03b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f31a28a7b03740f294ed507990b03b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f31a28a7b03740f294ed507990b03b46.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0I7skJ4OnWf1EdYY04hz4XucdI8=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.631243+00 2025-12-09 10:15:39.63125+00 17318 CCH0555-5#拼接蓝 SPMX-20240815312530 \N \N \N 1 \N [{"file_id": "107be517-e27f-42af-8bef-b161829ec80e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c33308b85ed417a8f7e0815c97e966c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c33308b85ed417a8f7e0815c97e966c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c33308b85ed417a8f7e0815c97e966c.jpg", "file_size": 17127, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-5#拼接蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33308b85ed417a8f7e0815c97e966c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33308b85ed417a8f7e0815c97e966c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c33308b85ed417a8f7e0815c97e966c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c33308b85ed417a8f7e0815c97e966c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c33308b85ed417a8f7e0815c97e966c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDImfzStJ38HQH9aJidH6dzyp2o=", "createTime": "2024-08-15 15:02:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.634089+00 2025-12-09 10:15:39.634095+00 17319 JTSS796FW#粉VS-D3 SPMX-20240815312531 \N \N \N 1 \N [{"file_id": "17a4b319-3f42-4a4d-abe6-8cd7124f01a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8b57b8db5d946e78bde5c42dc639611.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8b57b8db5d946e78bde5c42dc639611.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8b57b8db5d946e78bde5c42dc639611.jpg", "file_size": 17772, "is_delete": false, "file_type": 1, "original_file_name": "JTSS796FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b57b8db5d946e78bde5c42dc639611.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b57b8db5d946e78bde5c42dc639611.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8b57b8db5d946e78bde5c42dc639611.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8b57b8db5d946e78bde5c42dc639611.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8b57b8db5d946e78bde5c42dc639611.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AtmD3G6zPWTE7ng31jbA9REdquU=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.636911+00 2025-12-09 10:15:39.636917+00 17320 FX0003-161#5号色 SPMX-20240815312532 \N \N \N 1 \N [{"file_id": "24e4559d-ad9c-4a18-91ab-96fd24f71c0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88a9ba74d6f24d4f957ede14a6327c57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88a9ba74d6f24d4f957ede14a6327c57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88a9ba74d6f24d4f957ede14a6327c57.jpg", "file_size": 58749, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9ba74d6f24d4f957ede14a6327c57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9ba74d6f24d4f957ede14a6327c57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9ba74d6f24d4f957ede14a6327c57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88a9ba74d6f24d4f957ede14a6327c57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88a9ba74d6f24d4f957ede14a6327c57.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7lkFJZd5VIMAxSLQN1_C8f084o4=", "createTime": "2024-08-15 15:02:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.639808+00 2025-12-09 10:15:39.639814+00 17321 JTSS798FW#VS-D3 SPMX-20240815312551 \N \N \N 1 \N [{"file_id": "209bcb25-3598-41b6-82d0-9635dd5a68dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9f4303d860f4d7fa00e6a9a372264cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9f4303d860f4d7fa00e6a9a372264cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9f4303d860f4d7fa00e6a9a372264cf.jpg", "file_size": 14243, "is_delete": false, "file_type": 1, "original_file_name": "JTSS798FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f4303d860f4d7fa00e6a9a372264cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f4303d860f4d7fa00e6a9a372264cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9f4303d860f4d7fa00e6a9a372264cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9f4303d860f4d7fa00e6a9a372264cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9f4303d860f4d7fa00e6a9a372264cf.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwbVIudCBbPnkvNhYTOIOagG36s=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.642644+00 2025-12-09 10:15:39.642651+00 17322 231483#-003-1-混码 SPMX-20240815312544 \N \N \N 1 \N [{"file_id": "fde6cf67-1592-4630-970a-c733e095e37a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a468b4d0f78c4b47a192e88a864eaf47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a468b4d0f78c4b47a192e88a864eaf47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a468b4d0f78c4b47a192e88a864eaf47.jpg", "file_size": 74864, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a468b4d0f78c4b47a192e88a864eaf47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a468b4d0f78c4b47a192e88a864eaf47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a468b4d0f78c4b47a192e88a864eaf47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a468b4d0f78c4b47a192e88a864eaf47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a468b4d0f78c4b47a192e88a864eaf47.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KaKIowwNCWbQsnk14JywSDcw1zk=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.645463+00 2025-12-09 10:15:39.645469+00 17323 FX0003-161#RC23 SPMX-20240815312543 \N \N \N 1 \N [{"file_id": "038ad787-14fd-4499-a518-784f3e8527cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c4cb784e5e8475382faf2eabf794dec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c4cb784e5e8475382faf2eabf794dec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c4cb784e5e8475382faf2eabf794dec.jpg", "file_size": 63321, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-161#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4cb784e5e8475382faf2eabf794dec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4cb784e5e8475382faf2eabf794dec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4cb784e5e8475382faf2eabf794dec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c4cb784e5e8475382faf2eabf794dec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c4cb784e5e8475382faf2eabf794dec.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETux9NCN8TUKzy9_ADTR2RFXjpM=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.648198+00 2025-12-09 10:15:39.648204+00 17324 LZ1370#上身2号色 SPMX-20240815312548 \N \N \N 1 \N [{"file_id": "a4a7ab4b-b48f-4f5c-8e6e-fafb396e3c48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3efa33431fd44dabba72a021cac20d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3efa33431fd44dabba72a021cac20d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3efa33431fd44dabba72a021cac20d1.jpg", "file_size": 19195, "is_delete": false, "file_type": 1, "original_file_name": "LZ1370#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3efa33431fd44dabba72a021cac20d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3efa33431fd44dabba72a021cac20d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3efa33431fd44dabba72a021cac20d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3efa33431fd44dabba72a021cac20d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3efa33431fd44dabba72a021cac20d1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73cOtYsNhp_YZrvNcnbtmIDmG2w=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.651154+00 2025-12-09 10:15:39.65116+00 17325 DL31592-2#黄色批布 SPMX-20240815312549 \N \N \N 1 \N [{"file_id": "e28f2314-381d-48d5-9a4a-53a98827c02e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75ccbf9383fa4724a4562536678d6134.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75ccbf9383fa4724a4562536678d6134.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75ccbf9383fa4724a4562536678d6134.jpg", "file_size": 21293, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#黄色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ccbf9383fa4724a4562536678d6134.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ccbf9383fa4724a4562536678d6134.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ccbf9383fa4724a4562536678d6134.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75ccbf9383fa4724a4562536678d6134.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75ccbf9383fa4724a4562536678d6134.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IE9O7TqdEmVY8pEa7roAu122_o4=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.654092+00 2025-12-09 10:15:39.654098+00 17326 8559#红色捆条 SPMX-20240815312546 \N \N \N 1 \N [{"file_id": "3cecd3aa-bb2b-4de7-9a7d-3e13e0f7d324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54a01a6a3cf047c3aea61d41b763403a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54a01a6a3cf047c3aea61d41b763403a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54a01a6a3cf047c3aea61d41b763403a.jpg", "file_size": 8762, "is_delete": false, "file_type": 1, "original_file_name": "8559#红色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a01a6a3cf047c3aea61d41b763403a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a01a6a3cf047c3aea61d41b763403a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54a01a6a3cf047c3aea61d41b763403a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54a01a6a3cf047c3aea61d41b763403a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54a01a6a3cf047c3aea61d41b763403a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mxcv571h1BiILkBfmamay5hZVDU=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.656995+00 2025-12-09 10:15:39.657002+00 17327 LJH1888#黄色 SPMX-20240815312547 \N \N \N 1 \N [{"file_id": "e94de34c-68d3-4daa-a44e-b2524e4333b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6975e7eaa27049b1a84fcd37b4798992.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6975e7eaa27049b1a84fcd37b4798992.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6975e7eaa27049b1a84fcd37b4798992.jpg", "file_size": 64201, "is_delete": false, "file_type": 1, "original_file_name": "LJH1888#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6975e7eaa27049b1a84fcd37b4798992.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6975e7eaa27049b1a84fcd37b4798992.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6975e7eaa27049b1a84fcd37b4798992.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6975e7eaa27049b1a84fcd37b4798992.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6975e7eaa27049b1a84fcd37b4798992.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMeDSX_xTwgfRMCiqKTa3PDhQJ4=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.65984+00 2025-12-09 10:15:39.659845+00 17328 CCH0555-5#拼接青 SPMX-20240815312541 \N \N \N 1 \N [{"file_id": "f089daec-3bbc-44b5-a148-c300fcb5f157", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c23fbd46eece498abab60eaab062a4fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c23fbd46eece498abab60eaab062a4fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c23fbd46eece498abab60eaab062a4fe.jpg", "file_size": 18395, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-5#拼接青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23fbd46eece498abab60eaab062a4fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23fbd46eece498abab60eaab062a4fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c23fbd46eece498abab60eaab062a4fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c23fbd46eece498abab60eaab062a4fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c23fbd46eece498abab60eaab062a4fe.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_w80V4tjEq7szz7e2F2gpUgyGhU=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.662696+00 2025-12-09 10:15:39.662705+00 17329 HX2125#白色 SPMX-20240815312550 \N \N \N 1 \N [{"file_id": "2fe90715-8f66-4a08-96c9-27fc745fde18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg", "file_size": 53721, "is_delete": false, "file_type": 1, "original_file_name": "HX2125#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cfd4aa4b5c64e6d95b7887647a3a7eb.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEVesDXiXM8vQf2k9QVeuuId2g0=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.665557+00 2025-12-09 10:15:39.665563+00 17330 1231-1FWF#中童14码 SPMX-20240815312540 \N \N \N 1 \N [{"file_id": "1e61df1b-7496-40af-b735-2feb9c3639cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba71aeda4d534397b1c7a7dde765a03d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba71aeda4d534397b1c7a7dde765a03d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba71aeda4d534397b1c7a7dde765a03d.jpg", "file_size": 17385, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba71aeda4d534397b1c7a7dde765a03d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba71aeda4d534397b1c7a7dde765a03d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba71aeda4d534397b1c7a7dde765a03d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba71aeda4d534397b1c7a7dde765a03d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba71aeda4d534397b1c7a7dde765a03d.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xq19Y6zwUFKheq4XyPrzGeYmlAY=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.668409+00 2025-12-09 10:15:39.668416+00 17331 JTSS797FW#VS-D3 SPMX-20240815312542 \N \N \N 1 \N [{"file_id": "5eec1c42-eea0-466b-9db5-1ad47a48f3a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a8e66ff904f487a904ed249a5009ef0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a8e66ff904f487a904ed249a5009ef0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a8e66ff904f487a904ed249a5009ef0.jpg", "file_size": 10301, "is_delete": false, "file_type": 1, "original_file_name": "JTSS797FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e66ff904f487a904ed249a5009ef0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e66ff904f487a904ed249a5009ef0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a8e66ff904f487a904ed249a5009ef0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a8e66ff904f487a904ed249a5009ef0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a8e66ff904f487a904ed249a5009ef0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HYt6Ojy1vgnlCEDWDqSTJi0LBlc=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.671207+00 2025-12-09 10:15:39.671213+00 17332 0008-14FWE#白色 SPMX-20240815312545 \N \N \N 1 \N [{"file_id": "d269296e-e4e3-4996-893c-abd0786c077d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50cd1fc7b45b4df0a779740b04a2c0d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50cd1fc7b45b4df0a779740b04a2c0d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50cd1fc7b45b4df0a779740b04a2c0d1.jpg", "file_size": 12668, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50cd1fc7b45b4df0a779740b04a2c0d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50cd1fc7b45b4df0a779740b04a2c0d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50cd1fc7b45b4df0a779740b04a2c0d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50cd1fc7b45b4df0a779740b04a2c0d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50cd1fc7b45b4df0a779740b04a2c0d1.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fUCkOdJM2wnwvPZUQbzka8ZtFcI=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.674123+00 2025-12-09 10:15:39.67413+00 17333 231483#-003-1 SPMX-20240815312558 \N \N \N 1 \N [{"file_id": "d1970408-1baf-4a0a-a0a7-c446211034f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01d56ac9754b47bcabd4dd7c9dd82014.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01d56ac9754b47bcabd4dd7c9dd82014.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01d56ac9754b47bcabd4dd7c9dd82014.jpg", "file_size": 27978, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d56ac9754b47bcabd4dd7c9dd82014.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d56ac9754b47bcabd4dd7c9dd82014.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01d56ac9754b47bcabd4dd7c9dd82014.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01d56ac9754b47bcabd4dd7c9dd82014.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01d56ac9754b47bcabd4dd7c9dd82014.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1w2z8rdA4w-GAASU7fHUCik5Bxo=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.676972+00 2025-12-09 10:15:39.676979+00 17334 FX0003-162#RC23 SPMX-20240815312559 \N \N \N 1 \N [{"file_id": "06160270-b08b-4e0d-af00-4a5e5eccafac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d463e03334f84f9c89cadc476d6c2842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d463e03334f84f9c89cadc476d6c2842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d463e03334f84f9c89cadc476d6c2842.jpg", "file_size": 47316, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-162#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463e03334f84f9c89cadc476d6c2842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463e03334f84f9c89cadc476d6c2842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d463e03334f84f9c89cadc476d6c2842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d463e03334f84f9c89cadc476d6c2842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d463e03334f84f9c89cadc476d6c2842.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QM5ac_d8bE8y5xGqSntIWDo19wc=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.679769+00 2025-12-09 10:15:39.679774+00 17335 0008-14FWE#紫色 SPMX-20240815312553 \N \N \N 1 \N [{"file_id": "bf57364f-e1b8-4cd7-8965-9886e7c94fba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fbca96829a4419daf4d2de80de961e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fbca96829a4419daf4d2de80de961e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fbca96829a4419daf4d2de80de961e0.jpg", "file_size": 11604, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWE#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbca96829a4419daf4d2de80de961e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbca96829a4419daf4d2de80de961e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbca96829a4419daf4d2de80de961e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fbca96829a4419daf4d2de80de961e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fbca96829a4419daf4d2de80de961e0.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iztNGaYM8gJgWA840BqInKyz3Fo=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.685748+00 2025-12-09 10:15:39.685756+00 17336 CCH0555-5#拼接黄 SPMX-20240815312556 \N \N \N 1 \N [{"file_id": "2ad68612-9c05-43bc-9d65-2059940f3018", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ec7b8d5c95d49dd9703e463a3dec603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ec7b8d5c95d49dd9703e463a3dec603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ec7b8d5c95d49dd9703e463a3dec603.jpg", "file_size": 15308, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-5#拼接黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec7b8d5c95d49dd9703e463a3dec603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec7b8d5c95d49dd9703e463a3dec603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ec7b8d5c95d49dd9703e463a3dec603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ec7b8d5c95d49dd9703e463a3dec603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ec7b8d5c95d49dd9703e463a3dec603.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyAE8DWkKMACieLVWOBt_qoCHPI=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.688654+00 2025-12-09 10:15:39.688666+00 17337 8559#绿色2XL SPMX-20240815312554 \N \N \N 1 \N [{"file_id": "bf7b999a-ecad-4a25-9469-4588b605b867", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22cdcb3332104cbdaeb4ee356031da51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22cdcb3332104cbdaeb4ee356031da51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22cdcb3332104cbdaeb4ee356031da51.jpg", "file_size": 19070, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22cdcb3332104cbdaeb4ee356031da51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22cdcb3332104cbdaeb4ee356031da51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22cdcb3332104cbdaeb4ee356031da51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22cdcb3332104cbdaeb4ee356031da51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22cdcb3332104cbdaeb4ee356031da51.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjoi4LCCdfiQdt2xJvdALeyC6pE=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.69155+00 2025-12-09 10:15:39.691555+00 17338 1231-1FWF#中童袖领匹布 SPMX-20240815312557 \N \N \N 1 \N [{"file_id": "242b2a73-2ef6-426a-ab6b-eb8f88a20b96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3e601bd494a4a91a48f4a8da1314a87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3e601bd494a4a91a48f4a8da1314a87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3e601bd494a4a91a48f4a8da1314a87.jpg", "file_size": 14654, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e601bd494a4a91a48f4a8da1314a87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e601bd494a4a91a48f4a8da1314a87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3e601bd494a4a91a48f4a8da1314a87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3e601bd494a4a91a48f4a8da1314a87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3e601bd494a4a91a48f4a8da1314a87.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfH3u3-7T-QvuZQnwmoOr6Ckb48=", "createTime": "2024-08-15 15:02:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.694362+00 2025-12-09 10:15:39.694368+00 17339 CCH0555-6#大红 SPMX-20240815312564 \N \N \N 1 \N [{"file_id": "dd6b4194-8b04-4810-b1c9-4afb108a6001", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3b37c5090ca49dbb0a9d69abfbef3b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3b37c5090ca49dbb0a9d69abfbef3b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3b37c5090ca49dbb0a9d69abfbef3b4.jpg", "file_size": 19445, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-6#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b37c5090ca49dbb0a9d69abfbef3b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b37c5090ca49dbb0a9d69abfbef3b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3b37c5090ca49dbb0a9d69abfbef3b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3b37c5090ca49dbb0a9d69abfbef3b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3b37c5090ca49dbb0a9d69abfbef3b4.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbnqGtmJqFxOF0gYAWioNvo-cOg=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.697232+00 2025-12-09 10:15:39.697238+00 17340 1231-1FWF#大童12码+10码 SPMX-20240815312569 \N \N \N 1 \N [{"file_id": "ef64c7c9-afd0-46a9-bbb5-b79f3247ac0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9aad64cdd9ac41a19c1629e30220a209.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9aad64cdd9ac41a19c1629e30220a209.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9aad64cdd9ac41a19c1629e30220a209.jpg", "file_size": 19669, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#大童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad64cdd9ac41a19c1629e30220a209.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad64cdd9ac41a19c1629e30220a209.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9aad64cdd9ac41a19c1629e30220a209.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9aad64cdd9ac41a19c1629e30220a209.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9aad64cdd9ac41a19c1629e30220a209.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1YaJvoiCrUJg2bj_VV0eeQr1R4=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.700077+00 2025-12-09 10:15:39.700083+00 17341 HX2125#粉色 SPMX-20240815312563 \N \N \N 1 \N [{"file_id": "4d0afcaf-72e3-4a06-8ca5-8be102cbe7fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20d6b4c15191456dabee8fbcbe67545b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20d6b4c15191456dabee8fbcbe67545b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20d6b4c15191456dabee8fbcbe67545b.jpg", "file_size": 55317, "is_delete": false, "file_type": 1, "original_file_name": "HX2125#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d6b4c15191456dabee8fbcbe67545b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d6b4c15191456dabee8fbcbe67545b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d6b4c15191456dabee8fbcbe67545b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20d6b4c15191456dabee8fbcbe67545b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20d6b4c15191456dabee8fbcbe67545b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2W0qjaOe1Qiv4cnQQN3j9pyO-k4=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.70288+00 2025-12-09 10:15:39.702886+00 17342 0008-14FWE#黄色-番禺调色 SPMX-20240815312566 \N \N \N 1 \N [{"file_id": "98c9cf1f-c7bb-46c1-a871-147b6a775129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f7cfa8096b54d5baee44631d577503d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f7cfa8096b54d5baee44631d577503d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f7cfa8096b54d5baee44631d577503d.jpg", "file_size": 13071, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWE#黄色-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7cfa8096b54d5baee44631d577503d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7cfa8096b54d5baee44631d577503d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f7cfa8096b54d5baee44631d577503d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f7cfa8096b54d5baee44631d577503d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f7cfa8096b54d5baee44631d577503d.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8i-OvgTq-YF4G4cqVaPxibw0Pk=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.70577+00 2025-12-09 10:15:39.705777+00 17343 231483#-003-2-混码 SPMX-20240815312568 \N \N \N 1 \N [{"file_id": "14cb52ad-cd36-44cf-9855-c38c6edf168c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12db9ec177d64ce5bf638dc2117e11b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12db9ec177d64ce5bf638dc2117e11b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12db9ec177d64ce5bf638dc2117e11b2.jpg", "file_size": 72320, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12db9ec177d64ce5bf638dc2117e11b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12db9ec177d64ce5bf638dc2117e11b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12db9ec177d64ce5bf638dc2117e11b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12db9ec177d64ce5bf638dc2117e11b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12db9ec177d64ce5bf638dc2117e11b2.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKTa3sJOTd01IJPgGoO97xtOliE=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.70888+00 2025-12-09 10:15:39.708885+00 17344 LZ1370#上身3号色 SPMX-20240815312567 \N \N \N 1 \N [{"file_id": "2a993fd7-9bad-4824-923e-beb33dfec539", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60a698e637e6419bbfca6691849f146e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60a698e637e6419bbfca6691849f146e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60a698e637e6419bbfca6691849f146e.jpg", "file_size": 19393, "is_delete": false, "file_type": 1, "original_file_name": "LZ1370#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a698e637e6419bbfca6691849f146e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a698e637e6419bbfca6691849f146e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a698e637e6419bbfca6691849f146e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60a698e637e6419bbfca6691849f146e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60a698e637e6419bbfca6691849f146e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEr3cdn5Xo0aeZDQ3cxcSUkIOow=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.71152+00 2025-12-09 10:15:39.711525+00 17345 LJH1889#1号色 SPMX-20240815312560 \N \N \N 1 \N [{"file_id": "55a98b3b-6939-4208-899f-5441ce08db90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5180d2567d6f4bcdb26bee1df676a243.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5180d2567d6f4bcdb26bee1df676a243.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5180d2567d6f4bcdb26bee1df676a243.jpg", "file_size": 73439, "is_delete": false, "file_type": 1, "original_file_name": "LJH1889#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180d2567d6f4bcdb26bee1df676a243.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180d2567d6f4bcdb26bee1df676a243.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5180d2567d6f4bcdb26bee1df676a243.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5180d2567d6f4bcdb26bee1df676a243.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5180d2567d6f4bcdb26bee1df676a243.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nnp5-8JiCO_-kFPRY3pYX6b50vU=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.714016+00 2025-12-09 10:15:39.714021+00 17346 DL31592-2#黑色前幅定位裁 SPMX-20240815312561 \N \N \N 1 \N [{"file_id": "8c60fa1c-1c89-48d5-b69a-4248a18aac73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efc8638e42074513afa180e57df9520e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efc8638e42074513afa180e57df9520e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efc8638e42074513afa180e57df9520e.jpg", "file_size": 15625, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#黑色前幅定位裁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc8638e42074513afa180e57df9520e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc8638e42074513afa180e57df9520e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc8638e42074513afa180e57df9520e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efc8638e42074513afa180e57df9520e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efc8638e42074513afa180e57df9520e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vQjFKutPCNBGmFkabr2_75jNbao=", "createTime": "2024-08-15 15:02:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.716482+00 2025-12-09 10:15:39.716487+00 17347 JTSS799FW#VS-D3 SPMX-20240815312562 \N \N \N 1 \N [{"file_id": "abfd3bea-0ff0-4606-84a5-5ef9ef05a531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1586643e1877431e8fed4a609f8a952d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1586643e1877431e8fed4a609f8a952d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1586643e1877431e8fed4a609f8a952d.jpg", "file_size": 12897, "is_delete": false, "file_type": 1, "original_file_name": "JTSS799FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1586643e1877431e8fed4a609f8a952d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1586643e1877431e8fed4a609f8a952d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1586643e1877431e8fed4a609f8a952d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1586643e1877431e8fed4a609f8a952d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1586643e1877431e8fed4a609f8a952d.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qVYXK2-Dlyyb5zoXsxjImlQEi3M=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.71874+00 2025-12-09 10:15:39.718745+00 17348 8559#绿色3XL SPMX-20240815312565 \N \N \N 1 \N [{"file_id": "c34826f8-5539-4062-9234-e4b8f09e017f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f61bea6374434086ad19773b15a5d34a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f61bea6374434086ad19773b15a5d34a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f61bea6374434086ad19773b15a5d34a.jpg", "file_size": 19260, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61bea6374434086ad19773b15a5d34a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61bea6374434086ad19773b15a5d34a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61bea6374434086ad19773b15a5d34a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f61bea6374434086ad19773b15a5d34a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f61bea6374434086ad19773b15a5d34a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_wlEOfHj-2EtMae5DLyvHvvl348=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.721213+00 2025-12-09 10:15:39.721218+00 17349 DL31592-2#黑色批布 SPMX-20240815312572 \N \N \N 1 \N [{"file_id": "1ac5e38f-f57d-4949-8cd2-964f564e93d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec3ee3d0dc784f078972f672f760d681.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec3ee3d0dc784f078972f672f760d681.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec3ee3d0dc784f078972f672f760d681.jpg", "file_size": 22169, "is_delete": false, "file_type": 1, "original_file_name": "DL31592-2#黑色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3ee3d0dc784f078972f672f760d681.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3ee3d0dc784f078972f672f760d681.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec3ee3d0dc784f078972f672f760d681.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec3ee3d0dc784f078972f672f760d681.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec3ee3d0dc784f078972f672f760d681.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vF9ENeYOKGchl4y_3X4UsvrzAC0=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.723733+00 2025-12-09 10:15:39.723738+00 17350 8559#绿色4XL SPMX-20240815312575 \N \N \N 1 \N [{"file_id": "2b4a99c5-71b8-4320-91de-70fe91247e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e44f8ce6f6d8460a9169d10a689d27c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e44f8ce6f6d8460a9169d10a689d27c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e44f8ce6f6d8460a9169d10a689d27c9.jpg", "file_size": 19523, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44f8ce6f6d8460a9169d10a689d27c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44f8ce6f6d8460a9169d10a689d27c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44f8ce6f6d8460a9169d10a689d27c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e44f8ce6f6d8460a9169d10a689d27c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e44f8ce6f6d8460a9169d10a689d27c9.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oVzUjPlAYf3Kr2pwfENa8Eyps0w=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.726222+00 2025-12-09 10:15:39.726226+00 17351 JTSS800FW#VS-D3 SPMX-20240815312573 \N \N \N 1 \N [{"file_id": "b3e62ba1-ae7f-45b5-a305-30c91bd1da48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "902be740363e45c1a2a17d21faec809e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "902be740363e45c1a2a17d21faec809e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "902be740363e45c1a2a17d21faec809e.jpg", "file_size": 9524, "is_delete": false, "file_type": 1, "original_file_name": "JTSS800FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902be740363e45c1a2a17d21faec809e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902be740363e45c1a2a17d21faec809e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/902be740363e45c1a2a17d21faec809e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/902be740363e45c1a2a17d21faec809e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/902be740363e45c1a2a17d21faec809e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y30i9Pw9Jk43ZJHTqGN6MScqOL8=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.72869+00 2025-12-09 10:15:39.728694+00 17352 FX0003-163#RC23 SPMX-20240815312570 \N \N \N 1 \N [{"file_id": "c4da93b9-ae1d-42b9-85d7-34f94687fa25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db323da201fe4a5a8c79b543bdaf9a8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db323da201fe4a5a8c79b543bdaf9a8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db323da201fe4a5a8c79b543bdaf9a8e.jpg", "file_size": 58729, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-163#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db323da201fe4a5a8c79b543bdaf9a8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db323da201fe4a5a8c79b543bdaf9a8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db323da201fe4a5a8c79b543bdaf9a8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db323da201fe4a5a8c79b543bdaf9a8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db323da201fe4a5a8c79b543bdaf9a8e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENElI8ixs1TdbvMkA7020cZDcM0=", "createTime": "2024-08-15 15:02:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.731175+00 2025-12-09 10:15:39.731179+00 17353 CCH0555-6#紫色 SPMX-20240815312571 \N \N \N 1 \N [{"file_id": "2344e509-d463-4b8f-9010-f8f4f1fa9888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "282be0abbbf24af797de61339ad4247f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "282be0abbbf24af797de61339ad4247f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "282be0abbbf24af797de61339ad4247f.jpg", "file_size": 16158, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-6#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282be0abbbf24af797de61339ad4247f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282be0abbbf24af797de61339ad4247f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/282be0abbbf24af797de61339ad4247f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/282be0abbbf24af797de61339ad4247f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/282be0abbbf24af797de61339ad4247f.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F7K5zvwxPS4FGs4ndFm21aHakLA=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.733863+00 2025-12-09 10:15:39.733869+00 17354 LJH1889#2号色 SPMX-20240815312574 \N \N \N 1 \N [{"file_id": "0994b967-5780-4801-9399-a9b2944aaee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36caa6e45c1343648871dbca4ec0727e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36caa6e45c1343648871dbca4ec0727e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36caa6e45c1343648871dbca4ec0727e.jpg", "file_size": 73686, "is_delete": false, "file_type": 1, "original_file_name": "LJH1889#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36caa6e45c1343648871dbca4ec0727e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36caa6e45c1343648871dbca4ec0727e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36caa6e45c1343648871dbca4ec0727e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36caa6e45c1343648871dbca4ec0727e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36caa6e45c1343648871dbca4ec0727e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kXTUzVGoGXAna2t-2ehTyaXURA=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.736654+00 2025-12-09 10:15:39.73666+00 17355 1231-1FWF#大童14码 SPMX-20240815312576 \N \N \N 1 \N [{"file_id": "3349bbcd-8880-4f19-8077-e368302ed9c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b8d90f0dc9948819e29185d6b3b5fad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b8d90f0dc9948819e29185d6b3b5fad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b8d90f0dc9948819e29185d6b3b5fad.jpg", "file_size": 17874, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#大童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8d90f0dc9948819e29185d6b3b5fad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8d90f0dc9948819e29185d6b3b5fad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8d90f0dc9948819e29185d6b3b5fad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b8d90f0dc9948819e29185d6b3b5fad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b8d90f0dc9948819e29185d6b3b5fad.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVFWZxZj_pzrnKQlnk0g1Xp9lY8=", "createTime": "2024-08-15 15:02:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.739462+00 2025-12-09 10:15:39.739468+00 17356 DL31619-2#前幅11#大红 SPMX-20240815312584 \N \N \N 1 \N [{"file_id": "2ac472d5-193e-45a9-9c60-80f6ecc0c21d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abcc079af1314895a9f5119d647c2c00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abcc079af1314895a9f5119d647c2c00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abcc079af1314895a9f5119d647c2c00.jpg", "file_size": 15919, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅11#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcc079af1314895a9f5119d647c2c00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcc079af1314895a9f5119d647c2c00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abcc079af1314895a9f5119d647c2c00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abcc079af1314895a9f5119d647c2c00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abcc079af1314895a9f5119d647c2c00.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vt0qddzBP2KptDPg-gOwgxiVBIw=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.742212+00 2025-12-09 10:15:39.742218+00 17357 1231-1FWF#大童袖领匹布 SPMX-20240815312587 \N \N \N 1 \N [{"file_id": "f657386f-654f-4a58-841e-0b543e529e23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5031544a77394fb1bb7bfb731a570332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5031544a77394fb1bb7bfb731a570332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5031544a77394fb1bb7bfb731a570332.jpg", "file_size": 15079, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#大童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5031544a77394fb1bb7bfb731a570332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5031544a77394fb1bb7bfb731a570332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5031544a77394fb1bb7bfb731a570332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5031544a77394fb1bb7bfb731a570332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5031544a77394fb1bb7bfb731a570332.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hJcc3SBpPUxRfUH4edjfjKwrR1o=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.744984+00 2025-12-09 10:15:39.74499+00 17358 LZ1370#上身4号色 SPMX-20240815312577 \N \N \N 1 \N [{"file_id": "286bacca-d6a7-48f3-9df3-d79aa05573bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cd4f614f3f24bd98252289210737a20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cd4f614f3f24bd98252289210737a20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cd4f614f3f24bd98252289210737a20.jpg", "file_size": 19013, "is_delete": false, "file_type": 1, "original_file_name": "LZ1370#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4f614f3f24bd98252289210737a20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4f614f3f24bd98252289210737a20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cd4f614f3f24bd98252289210737a20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cd4f614f3f24bd98252289210737a20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cd4f614f3f24bd98252289210737a20.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9CAIsfnRhYCwiFsJyldAV8-Rvg=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.747766+00 2025-12-09 10:15:39.747773+00 17359 0008-14FWE#黄色 SPMX-20240815312579 \N \N \N 1 \N [{"file_id": "a6e3836a-efb8-4300-b6a3-b96e495d7d42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56189cc3b3384b8ab60f9cecc8743ac5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56189cc3b3384b8ab60f9cecc8743ac5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56189cc3b3384b8ab60f9cecc8743ac5.jpg", "file_size": 13283, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56189cc3b3384b8ab60f9cecc8743ac5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56189cc3b3384b8ab60f9cecc8743ac5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56189cc3b3384b8ab60f9cecc8743ac5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56189cc3b3384b8ab60f9cecc8743ac5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56189cc3b3384b8ab60f9cecc8743ac5.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHobhNo_Su5RP_QLPPev_AyA8Is=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.750558+00 2025-12-09 10:15:39.750564+00 17360 LJH1889#3号色 SPMX-20240815312583 \N \N \N 1 \N [{"file_id": "43dbe14e-95c4-46b6-9118-c12737bea52c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba1ce93c6b904aeb94ee557237482916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba1ce93c6b904aeb94ee557237482916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba1ce93c6b904aeb94ee557237482916.jpg", "file_size": 77361, "is_delete": false, "file_type": 1, "original_file_name": "LJH1889#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ce93c6b904aeb94ee557237482916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ce93c6b904aeb94ee557237482916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba1ce93c6b904aeb94ee557237482916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba1ce93c6b904aeb94ee557237482916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba1ce93c6b904aeb94ee557237482916.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IxaBgS7fRNwX6WF2qXV2CXaPhto=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.753402+00 2025-12-09 10:15:39.753407+00 17361 JTSS801FW#VS-D3 SPMX-20240815312585 \N \N \N 1 \N [{"file_id": "90859fa0-b7cd-40e1-b102-1258db4e9e1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cb85ef254bb4bf79ed98feed991c374.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cb85ef254bb4bf79ed98feed991c374.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cb85ef254bb4bf79ed98feed991c374.jpg", "file_size": 13826, "is_delete": false, "file_type": 1, "original_file_name": "JTSS801FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb85ef254bb4bf79ed98feed991c374.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb85ef254bb4bf79ed98feed991c374.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cb85ef254bb4bf79ed98feed991c374.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cb85ef254bb4bf79ed98feed991c374.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cb85ef254bb4bf79ed98feed991c374.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQmP24OZiSwv5ARsdTEuJv734z0=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.756202+00 2025-12-09 10:15:39.756208+00 17362 CCH0555-6#黑色 SPMX-20240815312580 \N \N \N 1 \N [{"file_id": "ffd02ac5-72b7-4ede-90a3-967a19b0c261", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5bbb2e5329b492ba7eaea63df140d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5bbb2e5329b492ba7eaea63df140d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5bbb2e5329b492ba7eaea63df140d8b.jpg", "file_size": 19491, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-6#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bbb2e5329b492ba7eaea63df140d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bbb2e5329b492ba7eaea63df140d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5bbb2e5329b492ba7eaea63df140d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5bbb2e5329b492ba7eaea63df140d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5bbb2e5329b492ba7eaea63df140d8b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpqVotkCbgG87kJBuHASLOtLtq0=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.759299+00 2025-12-09 10:15:39.759305+00 17363 8559#绿色5XL SPMX-20240815312586 \N \N \N 1 \N [{"file_id": "fe20a5c5-cb03-4f3d-80f2-8f14e7fa757a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ea36ed8d4614eda87a7cee5304c940a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ea36ed8d4614eda87a7cee5304c940a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ea36ed8d4614eda87a7cee5304c940a.jpg", "file_size": 19188, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea36ed8d4614eda87a7cee5304c940a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea36ed8d4614eda87a7cee5304c940a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ea36ed8d4614eda87a7cee5304c940a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ea36ed8d4614eda87a7cee5304c940a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ea36ed8d4614eda87a7cee5304c940a.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZGxG_OLCKY3ebJLZrSWAeRDWyw=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.762123+00 2025-12-09 10:15:39.762129+00 17364 HX2125#蓝色 SPMX-20240815312582 \N \N \N 1 \N [{"file_id": "0dd06e38-55fa-410d-a564-7b11d2cf9b93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e3e0972e9a34536a7b212bc717b69b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e3e0972e9a34536a7b212bc717b69b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e3e0972e9a34536a7b212bc717b69b4.jpg", "file_size": 55409, "is_delete": false, "file_type": 1, "original_file_name": "HX2125#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e3e0972e9a34536a7b212bc717b69b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e3e0972e9a34536a7b212bc717b69b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e3e0972e9a34536a7b212bc717b69b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e3e0972e9a34536a7b212bc717b69b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e3e0972e9a34536a7b212bc717b69b4.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8LMdr78PHCGcksWAJbLjzQdLB1s=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.764835+00 2025-12-09 10:15:39.764841+00 17365 231483#-003-2 SPMX-20240815312578 \N \N \N 1 \N [{"file_id": "de6b2b65-2695-4cdf-bb2f-fe8b3e4a0290", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68f878951a0544cb9e57e131b6f3f41b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68f878951a0544cb9e57e131b6f3f41b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68f878951a0544cb9e57e131b6f3f41b.jpg", "file_size": 28344, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f878951a0544cb9e57e131b6f3f41b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f878951a0544cb9e57e131b6f3f41b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68f878951a0544cb9e57e131b6f3f41b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68f878951a0544cb9e57e131b6f3f41b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68f878951a0544cb9e57e131b6f3f41b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2UnqMHqyvigLF6YhNAz3vOIVh54=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.767628+00 2025-12-09 10:15:39.767635+00 17366 FX0003-164#RC23 SPMX-20240815312581 \N \N \N 1 \N [{"file_id": "8822fc5e-daf5-402f-97b2-07244d5a5a88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d02b7ab5454d71952a6779e741400c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d02b7ab5454d71952a6779e741400c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d02b7ab5454d71952a6779e741400c.jpg", "file_size": 43306, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-164#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d02b7ab5454d71952a6779e741400c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d02b7ab5454d71952a6779e741400c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d02b7ab5454d71952a6779e741400c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d02b7ab5454d71952a6779e741400c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d02b7ab5454d71952a6779e741400c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKF4F0zepYJ1VVPqeX460pCyuxw=", "createTime": "2024-08-15 15:02:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.770603+00 2025-12-09 10:15:39.77061+00 17367 0008-14FWF#宝蓝 SPMX-20240815312589 \N \N \N 1 \N [{"file_id": "df467ab3-c6b7-48bf-91f7-65208f0c26ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd3eca04bf2447fd8e547742a4f6345b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd3eca04bf2447fd8e547742a4f6345b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd3eca04bf2447fd8e547742a4f6345b.jpg", "file_size": 24195, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWF#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3eca04bf2447fd8e547742a4f6345b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3eca04bf2447fd8e547742a4f6345b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd3eca04bf2447fd8e547742a4f6345b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd3eca04bf2447fd8e547742a4f6345b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd3eca04bf2447fd8e547742a4f6345b.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YWM7x2sLsH3mw0Xjce-JcX5p3zk=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.773686+00 2025-12-09 10:15:39.773692+00 17368 CCH0555-7#枣红 SPMX-20240815312590 \N \N \N 1 \N [{"file_id": "546b0ef0-1382-48d0-834d-00627f77fd1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dfe47c925674438a742fb81a98c7185.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dfe47c925674438a742fb81a98c7185.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dfe47c925674438a742fb81a98c7185.jpg", "file_size": 16391, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe47c925674438a742fb81a98c7185.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe47c925674438a742fb81a98c7185.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dfe47c925674438a742fb81a98c7185.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dfe47c925674438a742fb81a98c7185.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dfe47c925674438a742fb81a98c7185.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrN3_T81PAaav1FoQfZJ7COZ0VI=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.776598+00 2025-12-09 10:15:39.776604+00 17369 1231-1FWF#小童6码 SPMX-20240815312598 \N \N \N 1 \N [{"file_id": "7f5747d6-27dd-41e8-80e5-b984544a5c74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg", "file_size": 21422, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a5d3ae9e4dc45da807ee3ba2b62c2bd.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKMW0g47iu00U1gUkF4GxF-ZKOc=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.779413+00 2025-12-09 10:15:39.779418+00 17370 DL31619-2#前幅6#蓝绿 SPMX-20240815312597 \N \N \N 1 \N [{"file_id": "a24c6cdb-fa78-469d-8e66-0e2bfab6c34c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a8dba24f31541b3ba3f78cbc0e96efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a8dba24f31541b3ba3f78cbc0e96efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a8dba24f31541b3ba3f78cbc0e96efc.jpg", "file_size": 15740, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8dba24f31541b3ba3f78cbc0e96efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8dba24f31541b3ba3f78cbc0e96efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8dba24f31541b3ba3f78cbc0e96efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a8dba24f31541b3ba3f78cbc0e96efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a8dba24f31541b3ba3f78cbc0e96efc.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtIu6EbR3gPqX7tZZCpnlNIECkQ=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.782332+00 2025-12-09 10:15:39.782338+00 17371 JTSS802FW#VS-D3 SPMX-20240815312595 \N \N \N 1 \N [{"file_id": "25919f51-b897-439d-bd63-0767e42396e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54581fb584b949e295fc4368cb63acf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54581fb584b949e295fc4368cb63acf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54581fb584b949e295fc4368cb63acf7.jpg", "file_size": 15962, "is_delete": false, "file_type": 1, "original_file_name": "JTSS802FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54581fb584b949e295fc4368cb63acf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54581fb584b949e295fc4368cb63acf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54581fb584b949e295fc4368cb63acf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54581fb584b949e295fc4368cb63acf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54581fb584b949e295fc4368cb63acf7.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPdzVV68OqszAMuTAqm3qiRQiYI=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.785242+00 2025-12-09 10:15:39.785248+00 17372 231483#-003-3-混码 SPMX-20240815312591 \N \N \N 1 \N [{"file_id": "6f6eecc9-c555-49d9-a43c-cabc2635a383", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e5c7e3cf56c462badd750fe4aa1162c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e5c7e3cf56c462badd750fe4aa1162c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e5c7e3cf56c462badd750fe4aa1162c.jpg", "file_size": 67968, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5c7e3cf56c462badd750fe4aa1162c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5c7e3cf56c462badd750fe4aa1162c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5c7e3cf56c462badd750fe4aa1162c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e5c7e3cf56c462badd750fe4aa1162c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e5c7e3cf56c462badd750fe4aa1162c.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjDubD4j11KSH9djojP7shdOZlY=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.788217+00 2025-12-09 10:15:39.788224+00 17373 8559#绿色L SPMX-20240815312596 \N \N \N 1 \N [{"file_id": "72ffb9a4-77ef-491a-8330-16c2fa0a6677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be9b46cdc13a4092a5eb0d926c44e79e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be9b46cdc13a4092a5eb0d926c44e79e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be9b46cdc13a4092a5eb0d926c44e79e.jpg", "file_size": 18436, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9b46cdc13a4092a5eb0d926c44e79e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9b46cdc13a4092a5eb0d926c44e79e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be9b46cdc13a4092a5eb0d926c44e79e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be9b46cdc13a4092a5eb0d926c44e79e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be9b46cdc13a4092a5eb0d926c44e79e.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KM2a6heGCkduEUxx26aEfwNxD8I=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.79106+00 2025-12-09 10:15:39.791066+00 17374 LJH1889#4号色 SPMX-20240815312592 \N \N \N 1 \N [{"file_id": "b7dc826d-3316-44c9-9f81-11d55e9a9a87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6864e414f8b415a8003514c9bfac495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6864e414f8b415a8003514c9bfac495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6864e414f8b415a8003514c9bfac495.jpg", "file_size": 77760, "is_delete": false, "file_type": 1, "original_file_name": "LJH1889#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6864e414f8b415a8003514c9bfac495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6864e414f8b415a8003514c9bfac495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6864e414f8b415a8003514c9bfac495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6864e414f8b415a8003514c9bfac495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6864e414f8b415a8003514c9bfac495.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pitA5lDf6YrgfPaFV8cAMgDkMiw=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:39.793884+00 2025-12-09 10:15:39.79389+00 17375 FX0003-165#RC23 SPMX-20240815312594 \N \N \N 1 \N [{"file_id": "9cccf659-1e13-4958-8df8-53948f01f5f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6541003e61b0414b8a79d168a64d8e0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6541003e61b0414b8a79d168a64d8e0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6541003e61b0414b8a79d168a64d8e0f.jpg", "file_size": 57626, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-165#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6541003e61b0414b8a79d168a64d8e0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6541003e61b0414b8a79d168a64d8e0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6541003e61b0414b8a79d168a64d8e0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6541003e61b0414b8a79d168a64d8e0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6541003e61b0414b8a79d168a64d8e0f.jpg?e=1765361738&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irOjrPswf-RULmGUq-psgg2AnXg=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.477246+00 2025-12-09 10:15:40.477257+00 17376 LZ1371#上身1号色 SPMX-20240815312588 \N \N \N 1 \N [{"file_id": "4dbe381f-0c8b-4e57-b5c3-65ed5c3d8bc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b231737e6e494a7c9dcbb7300beeff46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b231737e6e494a7c9dcbb7300beeff46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b231737e6e494a7c9dcbb7300beeff46.jpg", "file_size": 18830, "is_delete": false, "file_type": 1, "original_file_name": "LZ1371#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b231737e6e494a7c9dcbb7300beeff46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b231737e6e494a7c9dcbb7300beeff46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b231737e6e494a7c9dcbb7300beeff46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b231737e6e494a7c9dcbb7300beeff46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b231737e6e494a7c9dcbb7300beeff46.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHUyLBWRpM5C57kc4V5Jw0lumrM=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.481901+00 2025-12-09 10:15:40.481907+00 17377 HX358#2XL SPMX-20240815312593 \N \N \N 1 \N [{"file_id": "0b89c228-bfa2-4c65-a429-d979cbf6f12b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4293fbc0302c4d539210e39174fb6f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4293fbc0302c4d539210e39174fb6f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4293fbc0302c4d539210e39174fb6f8e.jpg", "file_size": 12707, "is_delete": false, "file_type": 1, "original_file_name": "HX358#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4293fbc0302c4d539210e39174fb6f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4293fbc0302c4d539210e39174fb6f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4293fbc0302c4d539210e39174fb6f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4293fbc0302c4d539210e39174fb6f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4293fbc0302c4d539210e39174fb6f8e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0LZYkpdRuXzQRjpVSuGoXiAFa8Y=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.485042+00 2025-12-09 10:15:40.48505+00 17378 LZ1371#上身2号色 SPMX-20240815312599 \N \N \N 1 \N [{"file_id": "a01a63fa-2fc2-4282-875f-24bf1937ec15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fb380e4b5894167b39ac66a4487d0e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fb380e4b5894167b39ac66a4487d0e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fb380e4b5894167b39ac66a4487d0e9.jpg", "file_size": 18058, "is_delete": false, "file_type": 1, "original_file_name": "LZ1371#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb380e4b5894167b39ac66a4487d0e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb380e4b5894167b39ac66a4487d0e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fb380e4b5894167b39ac66a4487d0e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fb380e4b5894167b39ac66a4487d0e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fb380e4b5894167b39ac66a4487d0e9.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6OhygOpzOGZ7r47BuxZ7q6vS-Q=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.488039+00 2025-12-09 10:15:40.488044+00 17379 JTSS803FW#VS-D3 SPMX-20240815312602 \N \N \N 1 \N [{"file_id": "1caaacb3-83d7-4fa5-86eb-59adf1f165e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c2eaf6ac194ec0901be1f211e6c703.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c2eaf6ac194ec0901be1f211e6c703.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c2eaf6ac194ec0901be1f211e6c703.jpg", "file_size": 10140, "is_delete": false, "file_type": 1, "original_file_name": "JTSS803FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c2eaf6ac194ec0901be1f211e6c703.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c2eaf6ac194ec0901be1f211e6c703.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c2eaf6ac194ec0901be1f211e6c703.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c2eaf6ac194ec0901be1f211e6c703.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c2eaf6ac194ec0901be1f211e6c703.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYB2iIXOtQWIF-J28C0jhezdYmY=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.490855+00 2025-12-09 10:15:40.490862+00 17380 8559#绿色XL SPMX-20240815312606 \N \N \N 1 \N [{"file_id": "38c24acd-d774-45c1-b205-7c27c870ba58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39269a57f60047d69f4902e37cee55d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39269a57f60047d69f4902e37cee55d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39269a57f60047d69f4902e37cee55d5.jpg", "file_size": 18997, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39269a57f60047d69f4902e37cee55d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39269a57f60047d69f4902e37cee55d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39269a57f60047d69f4902e37cee55d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39269a57f60047d69f4902e37cee55d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39269a57f60047d69f4902e37cee55d5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lIx5h_4_6GEm78wvG28dqjQdlY=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.493782+00 2025-12-09 10:15:40.493788+00 17381 1231-1FWF#小童8码+4码 SPMX-20240815312605 \N \N \N 1 \N [{"file_id": "c48d6e63-e71d-447e-b8a4-3986a87900b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62eae05434c647788991f1b1a89397a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62eae05434c647788991f1b1a89397a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62eae05434c647788991f1b1a89397a5.jpg", "file_size": 21719, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62eae05434c647788991f1b1a89397a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62eae05434c647788991f1b1a89397a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62eae05434c647788991f1b1a89397a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62eae05434c647788991f1b1a89397a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62eae05434c647788991f1b1a89397a5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AjuHDjkFXy7LQPAEDDK7W98ks5U=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.496619+00 2025-12-09 10:15:40.496626+00 17382 231483#-003-3 SPMX-20240815312609 \N \N \N 1 \N [{"file_id": "80865baa-8eb7-49d0-a9a7-c7a2c2d42e33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ed180d34a4e44b2a86467e92ad23fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ed180d34a4e44b2a86467e92ad23fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ed180d34a4e44b2a86467e92ad23fb8.jpg", "file_size": 25992, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed180d34a4e44b2a86467e92ad23fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed180d34a4e44b2a86467e92ad23fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed180d34a4e44b2a86467e92ad23fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ed180d34a4e44b2a86467e92ad23fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ed180d34a4e44b2a86467e92ad23fb8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zc9vxqsI9sf3M5lbYTi5vODl36A=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.499358+00 2025-12-09 10:15:40.499364+00 17383 HX358#3XL SPMX-20240815312604 \N \N \N 1 \N [{"file_id": "24c67b47-0c88-4f6a-b474-13487ff077bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42bf5d1ba9f848049f65861a15b7495c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42bf5d1ba9f848049f65861a15b7495c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42bf5d1ba9f848049f65861a15b7495c.jpg", "file_size": 12100, "is_delete": false, "file_type": 1, "original_file_name": "HX358#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42bf5d1ba9f848049f65861a15b7495c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42bf5d1ba9f848049f65861a15b7495c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42bf5d1ba9f848049f65861a15b7495c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42bf5d1ba9f848049f65861a15b7495c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42bf5d1ba9f848049f65861a15b7495c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blfwp-p8TxdcNFCJPHuMrmiyKMw=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.514396+00 2025-12-09 10:15:40.514403+00 17388 LJH1890#桔色 SPMX-20240815312601 \N \N \N 1 \N [{"file_id": "529e1511-b874-4e4e-95b1-838b3b37ce45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c2fdb8e62494d3dbbef0127ed33ea67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c2fdb8e62494d3dbbef0127ed33ea67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c2fdb8e62494d3dbbef0127ed33ea67.jpg", "file_size": 65887, "is_delete": false, "file_type": 1, "original_file_name": "LJH1890#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2fdb8e62494d3dbbef0127ed33ea67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2fdb8e62494d3dbbef0127ed33ea67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2fdb8e62494d3dbbef0127ed33ea67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c2fdb8e62494d3dbbef0127ed33ea67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c2fdb8e62494d3dbbef0127ed33ea67.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIE1GXDWH16vXgjkJPSjHp23mE8=", "createTime": "2024-08-15 15:02:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.502237+00 2025-12-09 10:15:40.502243+00 17384 DL31619-2#前幅彩兰 SPMX-20240815312607 \N \N \N 1 \N [{"file_id": "1d570f61-ec02-484d-9c1d-d8b1fb9711ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8895bedc46a4171a4dfa4d27f951377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8895bedc46a4171a4dfa4d27f951377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8895bedc46a4171a4dfa4d27f951377.jpg", "file_size": 15848, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8895bedc46a4171a4dfa4d27f951377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8895bedc46a4171a4dfa4d27f951377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8895bedc46a4171a4dfa4d27f951377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8895bedc46a4171a4dfa4d27f951377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8895bedc46a4171a4dfa4d27f951377.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B4JDwuYOcN0XTMXwVpUpI_sCnRw=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.505154+00 2025-12-09 10:15:40.505161+00 17385 0008-14FWF#黑色 SPMX-20240815312603 \N \N \N 1 \N [{"file_id": "d0e273c7-82b4-400b-8937-326592b70b78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bda1cf3f771e4073890013c7bc0364be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bda1cf3f771e4073890013c7bc0364be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bda1cf3f771e4073890013c7bc0364be.jpg", "file_size": 23626, "is_delete": false, "file_type": 1, "original_file_name": "0008-14FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda1cf3f771e4073890013c7bc0364be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda1cf3f771e4073890013c7bc0364be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bda1cf3f771e4073890013c7bc0364be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bda1cf3f771e4073890013c7bc0364be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bda1cf3f771e4073890013c7bc0364be.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9k_43OGRpZc5eywbd2P9xVFq-3w=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.508153+00 2025-12-09 10:15:40.508159+00 17386 LZ1371#上身3号色 SPMX-20240815312608 \N \N \N 1 \N [{"file_id": "9d22b216-0467-40ec-b2c4-39628ff61c25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg", "file_size": 18099, "is_delete": false, "file_type": 1, "original_file_name": "LZ1371#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7a0fe6d98984eb2a4bb6bc0bfbd9746.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLIZ7srf2T0U7Q-4tkFt0Lln6zA=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.511587+00 2025-12-09 10:15:40.511594+00 17387 CCH0555-7#枣红匹布 SPMX-20240815312600 \N \N \N 1 \N [{"file_id": "79595706-d40a-45b2-909b-f4ac71d4837f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "403cb74ac0a04c8797a79e54fcae3152.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "403cb74ac0a04c8797a79e54fcae3152.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "403cb74ac0a04c8797a79e54fcae3152.jpg", "file_size": 7529, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#枣红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403cb74ac0a04c8797a79e54fcae3152.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403cb74ac0a04c8797a79e54fcae3152.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403cb74ac0a04c8797a79e54fcae3152.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/403cb74ac0a04c8797a79e54fcae3152.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/403cb74ac0a04c8797a79e54fcae3152.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oMn8UeG1OAluK0NskFsHw1liNpc=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.517277+00 2025-12-09 10:15:40.517284+00 17389 CCH0555-7#粉色 SPMX-20240815312610 \N \N \N 1 \N [{"file_id": "3e9e60da-12c4-4f24-b6ef-91ed59ad6bd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b65c2bb162754dd58799a0fcef201551.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b65c2bb162754dd58799a0fcef201551.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b65c2bb162754dd58799a0fcef201551.jpg", "file_size": 13379, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65c2bb162754dd58799a0fcef201551.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65c2bb162754dd58799a0fcef201551.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65c2bb162754dd58799a0fcef201551.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b65c2bb162754dd58799a0fcef201551.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b65c2bb162754dd58799a0fcef201551.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cgMMGsNSNwKe__fv5AhjxYAAwHA=", "createTime": "2024-08-15 15:02:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.520107+00 2025-12-09 10:15:40.520113+00 17390 HX358#4XL SPMX-20240815312615 \N \N \N 1 \N [{"file_id": "fe288dd5-8897-48ca-aac3-3a4d9805731b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0839c17387a4c84aed2515ebccd401f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0839c17387a4c84aed2515ebccd401f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0839c17387a4c84aed2515ebccd401f.jpg", "file_size": 10781, "is_delete": false, "file_type": 1, "original_file_name": "HX358#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0839c17387a4c84aed2515ebccd401f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0839c17387a4c84aed2515ebccd401f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0839c17387a4c84aed2515ebccd401f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0839c17387a4c84aed2515ebccd401f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0839c17387a4c84aed2515ebccd401f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgxR57B87nrOjME18VZclam1FsE=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.523049+00 2025-12-09 10:15:40.523056+00 17391 CCH0555-7#粉色匹布 SPMX-20240815312616 \N \N \N 1 \N [{"file_id": "b5f26893-6a0a-4b26-97bf-f5db5e7f36ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54ed54e733f741ac83569cd0e072ba59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54ed54e733f741ac83569cd0e072ba59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54ed54e733f741ac83569cd0e072ba59.jpg", "file_size": 7208, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#粉色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ed54e733f741ac83569cd0e072ba59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ed54e733f741ac83569cd0e072ba59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ed54e733f741ac83569cd0e072ba59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54ed54e733f741ac83569cd0e072ba59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54ed54e733f741ac83569cd0e072ba59.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMBkdksisZlHNbgCAQIwfE9EHFs=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.526184+00 2025-12-09 10:15:40.52619+00 17392 JTSS804FW#VS-D3 SPMX-20240815312613 \N \N \N 1 \N [{"file_id": "3f90b63c-dc02-4499-b0b1-c1e2b293028c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38f19a9edf4e412d9a701be558cd9b5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38f19a9edf4e412d9a701be558cd9b5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38f19a9edf4e412d9a701be558cd9b5e.jpg", "file_size": 11336, "is_delete": false, "file_type": 1, "original_file_name": "JTSS804FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f19a9edf4e412d9a701be558cd9b5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f19a9edf4e412d9a701be558cd9b5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38f19a9edf4e412d9a701be558cd9b5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38f19a9edf4e412d9a701be558cd9b5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38f19a9edf4e412d9a701be558cd9b5e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKnLcuDBH3KVBoMLBucXqvUaGmg=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.529213+00 2025-12-09 10:15:40.529219+00 17393 FX0003-166#RC23 SPMX-20240815312611 \N \N \N 1 \N [{"file_id": "4280a32f-7c9e-4f5d-b7d5-06186f759f66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39bf95cc665486fb16e334cc6072a52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39bf95cc665486fb16e334cc6072a52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39bf95cc665486fb16e334cc6072a52.jpg", "file_size": 53250, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-166#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39bf95cc665486fb16e334cc6072a52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39bf95cc665486fb16e334cc6072a52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39bf95cc665486fb16e334cc6072a52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39bf95cc665486fb16e334cc6072a52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39bf95cc665486fb16e334cc6072a52.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2bj8ICNscmhgxyXg7zqa8O1AyE=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.532091+00 2025-12-09 10:15:40.532098+00 17394 LJH1890#浅蓝 SPMX-20240815312612 \N \N \N 1 \N [{"file_id": "990a5793-bfe8-4fce-ba2b-fda7f28fcab6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e21dd415953641b882cda7ecb17e802c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e21dd415953641b882cda7ecb17e802c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e21dd415953641b882cda7ecb17e802c.jpg", "file_size": 65790, "is_delete": false, "file_type": 1, "original_file_name": "LJH1890#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21dd415953641b882cda7ecb17e802c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21dd415953641b882cda7ecb17e802c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e21dd415953641b882cda7ecb17e802c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e21dd415953641b882cda7ecb17e802c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e21dd415953641b882cda7ecb17e802c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jKXHFyon0txfIjbHq2He8F34bM0=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.534948+00 2025-12-09 10:15:40.534954+00 17395 0008-15FWE#粉色 SPMX-20240815312614 \N \N \N 1 \N [{"file_id": "3d31e955-b3ab-4d00-a0dd-ea1525e78f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bb7e1eb11b54dad88608fc48c9c78ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bb7e1eb11b54dad88608fc48c9c78ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bb7e1eb11b54dad88608fc48c9c78ea.jpg", "file_size": 18578, "is_delete": false, "file_type": 1, "original_file_name": "0008-15FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e1eb11b54dad88608fc48c9c78ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e1eb11b54dad88608fc48c9c78ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e1eb11b54dad88608fc48c9c78ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e1eb11b54dad88608fc48c9c78ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e1eb11b54dad88608fc48c9c78ea.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTsIDZW8lEdHpR4wPPQZvKPv2Ho=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.537782+00 2025-12-09 10:15:40.537787+00 17396 1231-1FWF#小童袖领匹布 SPMX-20240815312619 \N \N \N 1 \N [{"file_id": "07abf3c1-1957-4768-bbd6-30dad61b29af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4aba781636764f02947ff84dbde5c7e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4aba781636764f02947ff84dbde5c7e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4aba781636764f02947ff84dbde5c7e8.jpg", "file_size": 15577, "is_delete": false, "file_type": 1, "original_file_name": "1231-1FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aba781636764f02947ff84dbde5c7e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aba781636764f02947ff84dbde5c7e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4aba781636764f02947ff84dbde5c7e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4aba781636764f02947ff84dbde5c7e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4aba781636764f02947ff84dbde5c7e8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4GMI4D4rH2dbndkDvVpxC8jyr8s=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.540628+00 2025-12-09 10:15:40.540635+00 17397 LZ1371#上身4号色 SPMX-20240815312618 \N \N \N 1 \N [{"file_id": "918a3827-ec09-458b-a317-af426434fadf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cc748f367d2455fbca8db120beab778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cc748f367d2455fbca8db120beab778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cc748f367d2455fbca8db120beab778.jpg", "file_size": 16413, "is_delete": false, "file_type": 1, "original_file_name": "LZ1371#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc748f367d2455fbca8db120beab778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc748f367d2455fbca8db120beab778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc748f367d2455fbca8db120beab778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cc748f367d2455fbca8db120beab778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cc748f367d2455fbca8db120beab778.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:noKkRF1TkNqMxgv99rnPo0UiWuA=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.543593+00 2025-12-09 10:15:40.543598+00 17398 231483#-003-4-混码 SPMX-20240815312621 \N \N \N 1 \N [{"file_id": "1677fa8b-3189-481d-944d-cb8161869b89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg", "file_size": 77932, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a99e3ed6e5a4ec08a41ffcb4b055ac5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcnY3Cgbl8FKzmNAp-UQiq0zQTk=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.546598+00 2025-12-09 10:15:40.546605+00 17399 DL31619-2#前幅深水红 SPMX-20240815312620 \N \N \N 1 \N [{"file_id": "69708de4-3763-4578-820c-0bf3af714736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e236d5b2e04b0d8bcf0f359605b5b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e236d5b2e04b0d8bcf0f359605b5b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e236d5b2e04b0d8bcf0f359605b5b3.jpg", "file_size": 15475, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e236d5b2e04b0d8bcf0f359605b5b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e236d5b2e04b0d8bcf0f359605b5b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e236d5b2e04b0d8bcf0f359605b5b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e236d5b2e04b0d8bcf0f359605b5b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e236d5b2e04b0d8bcf0f359605b5b3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jE7HQgWA0b5jg55Ph4cvANLueVc=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.549487+00 2025-12-09 10:15:40.549493+00 17400 8559#绿色捆条 SPMX-20240815312617 \N \N \N 1 \N [{"file_id": "47509c22-c8b4-44cd-aeb7-c19e3c30dd00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed0116d4f28b4f538d3fad435e555fb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed0116d4f28b4f538d3fad435e555fb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed0116d4f28b4f538d3fad435e555fb5.jpg", "file_size": 8716, "is_delete": false, "file_type": 1, "original_file_name": "8559#绿色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0116d4f28b4f538d3fad435e555fb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0116d4f28b4f538d3fad435e555fb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed0116d4f28b4f538d3fad435e555fb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed0116d4f28b4f538d3fad435e555fb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed0116d4f28b4f538d3fad435e555fb5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LiLCoPUQAsI1SrTFALm3xQG3T2s=", "createTime": "2024-08-15 15:02:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.55237+00 2025-12-09 10:15:40.552377+00 17401 855FWF#V5曲线 SPMX-20240815312623 \N \N \N 1 \N [{"file_id": "1146d9f8-a8ce-4637-8d0c-75cee167c0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "584c979332c74b269f0abc46c9841f90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "584c979332c74b269f0abc46c9841f90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "584c979332c74b269f0abc46c9841f90.jpg", "file_size": 20832, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584c979332c74b269f0abc46c9841f90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584c979332c74b269f0abc46c9841f90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584c979332c74b269f0abc46c9841f90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/584c979332c74b269f0abc46c9841f90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/584c979332c74b269f0abc46c9841f90.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vd8oXTBzLoRWLSzTFX9IsK2YAUQ=", "createTime": "2024-08-15 15:02:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.555313+00 2025-12-09 10:15:40.55532+00 17402 DL31619-2#前幅玫红 SPMX-20240815312628 \N \N \N 1 \N [{"file_id": "99284e2b-ff9e-4701-880b-eee7f22ac40c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9539b0a456c440f6b7d9990216bd073c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9539b0a456c440f6b7d9990216bd073c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9539b0a456c440f6b7d9990216bd073c.jpg", "file_size": 15568, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9539b0a456c440f6b7d9990216bd073c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9539b0a456c440f6b7d9990216bd073c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9539b0a456c440f6b7d9990216bd073c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9539b0a456c440f6b7d9990216bd073c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9539b0a456c440f6b7d9990216bd073c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-_3ujXPrNW-ocQYn3irwFoaLbQ=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.55815+00 2025-12-09 10:15:40.558156+00 17403 HX358#5XL SPMX-20240815312627 \N \N \N 1 \N [{"file_id": "97fb9e70-da4e-47f4-a8ec-06a636f3911b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8278ab28f1744d7ea13ea2c7f370c237.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8278ab28f1744d7ea13ea2c7f370c237.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8278ab28f1744d7ea13ea2c7f370c237.jpg", "file_size": 11268, "is_delete": false, "file_type": 1, "original_file_name": "HX358#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8278ab28f1744d7ea13ea2c7f370c237.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8278ab28f1744d7ea13ea2c7f370c237.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8278ab28f1744d7ea13ea2c7f370c237.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8278ab28f1744d7ea13ea2c7f370c237.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8278ab28f1744d7ea13ea2c7f370c237.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AvLQ2AlR3tA3jLxcHZPfOhpNkSA=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.56097+00 2025-12-09 10:15:40.560977+00 17404 1231-20FWF#中童12码+10码 SPMX-20240815312629 \N \N \N 1 \N [{"file_id": "aa938360-c873-481a-857d-3bcc7e50e706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76cbb1c0f9134268a8da248a5bc3df68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76cbb1c0f9134268a8da248a5bc3df68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76cbb1c0f9134268a8da248a5bc3df68.jpg", "file_size": 19035, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cbb1c0f9134268a8da248a5bc3df68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cbb1c0f9134268a8da248a5bc3df68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cbb1c0f9134268a8da248a5bc3df68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76cbb1c0f9134268a8da248a5bc3df68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76cbb1c0f9134268a8da248a5bc3df68.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zyWVDNvyuMilf-M93VSFZ-8bWlY=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.56376+00 2025-12-09 10:15:40.563766+00 17405 CCH0555-7#黄色 SPMX-20240815312626 \N \N \N 1 \N [{"file_id": "edaf2a5a-248b-4f14-a3f6-f3b48b2af8be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f51ee916a584a1ba90c559df24cb76c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f51ee916a584a1ba90c559df24cb76c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f51ee916a584a1ba90c559df24cb76c.jpg", "file_size": 14454, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f51ee916a584a1ba90c559df24cb76c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f51ee916a584a1ba90c559df24cb76c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f51ee916a584a1ba90c559df24cb76c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f51ee916a584a1ba90c559df24cb76c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f51ee916a584a1ba90c559df24cb76c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TiNugvMyasM2Xd_pVVsft0DnyJs=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.566566+00 2025-12-09 10:15:40.566572+00 17406 LZ1372#上身1号色 SPMX-20240815312630 \N \N \N 1 \N [{"file_id": "f3dc1df3-3fb3-49f7-8e88-566709f03124", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "106a6ae74261400eb06fd2567daf623f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "106a6ae74261400eb06fd2567daf623f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "106a6ae74261400eb06fd2567daf623f.jpg", "file_size": 15342, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106a6ae74261400eb06fd2567daf623f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106a6ae74261400eb06fd2567daf623f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/106a6ae74261400eb06fd2567daf623f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/106a6ae74261400eb06fd2567daf623f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/106a6ae74261400eb06fd2567daf623f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1mZ5vIE_UaMiyH6ybF1MHwAbe4=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.569436+00 2025-12-09 10:15:40.569443+00 17407 0008-15FWE#蓝色 SPMX-20240815312631 \N \N \N 1 \N [{"file_id": "e6d7b643-289a-4d84-a332-ce69e2fb4656", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fed1e71a0e254ed395c59dbcd8fa595c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fed1e71a0e254ed395c59dbcd8fa595c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fed1e71a0e254ed395c59dbcd8fa595c.jpg", "file_size": 14149, "is_delete": false, "file_type": 1, "original_file_name": "0008-15FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed1e71a0e254ed395c59dbcd8fa595c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed1e71a0e254ed395c59dbcd8fa595c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fed1e71a0e254ed395c59dbcd8fa595c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fed1e71a0e254ed395c59dbcd8fa595c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fed1e71a0e254ed395c59dbcd8fa595c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgN26OsX_B8PUkX3ipPd4YOVvXk=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.572305+00 2025-12-09 10:15:40.572318+00 17408 FX0003-167#RC23 SPMX-20240815312622 \N \N \N 1 \N [{"file_id": "ae389c24-9cd5-473b-bf38-99daf5250759", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c883116cde45d39ac5ef74eda17697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c883116cde45d39ac5ef74eda17697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c883116cde45d39ac5ef74eda17697.jpg", "file_size": 34551, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-167#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c883116cde45d39ac5ef74eda17697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c883116cde45d39ac5ef74eda17697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c883116cde45d39ac5ef74eda17697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c883116cde45d39ac5ef74eda17697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c883116cde45d39ac5ef74eda17697.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_Lhnwp-TwPuZRW9zhdzx_E-ahU=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.575685+00 2025-12-09 10:15:40.575691+00 17409 JTSS805FW#VS-D3 SPMX-20240815312624 \N \N \N 1 \N [{"file_id": "e126dd91-6eca-4a11-9868-b08457594e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a41feccbddba40478509de2329ac6d4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a41feccbddba40478509de2329ac6d4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a41feccbddba40478509de2329ac6d4c.jpg", "file_size": 8626, "is_delete": false, "file_type": 1, "original_file_name": "JTSS805FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41feccbddba40478509de2329ac6d4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41feccbddba40478509de2329ac6d4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41feccbddba40478509de2329ac6d4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a41feccbddba40478509de2329ac6d4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a41feccbddba40478509de2329ac6d4c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgDNhMVAe0fX3NQRfGta2gMQ1OE=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.578864+00 2025-12-09 10:15:40.57887+00 17410 LJH1890#红色 SPMX-20240815312625 \N \N \N 1 \N [{"file_id": "94c33d4a-2291-4008-bcec-8356e579a5a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b68e501d97584ff0a782987aacbb62e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b68e501d97584ff0a782987aacbb62e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b68e501d97584ff0a782987aacbb62e1.jpg", "file_size": 67456, "is_delete": false, "file_type": 1, "original_file_name": "LJH1890#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68e501d97584ff0a782987aacbb62e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68e501d97584ff0a782987aacbb62e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b68e501d97584ff0a782987aacbb62e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b68e501d97584ff0a782987aacbb62e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b68e501d97584ff0a782987aacbb62e1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_cjNmTkDWnZ3LK0RxyMAB6ByCew=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.581759+00 2025-12-09 10:15:40.581765+00 17411 LZ1372#上身2号色 SPMX-20240815312639 \N \N \N 1 \N [{"file_id": "67d791e5-e9c9-4a69-bcdf-d11a76c3e9e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d27cd223ddea411b83a3c938599c4fd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d27cd223ddea411b83a3c938599c4fd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d27cd223ddea411b83a3c938599c4fd3.jpg", "file_size": 15967, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27cd223ddea411b83a3c938599c4fd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27cd223ddea411b83a3c938599c4fd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d27cd223ddea411b83a3c938599c4fd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d27cd223ddea411b83a3c938599c4fd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d27cd223ddea411b83a3c938599c4fd3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N3AGSxPF1L_W-WH3_XE10gcsJAE=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.584661+00 2025-12-09 10:15:40.584667+00 17412 CCH0555-7#黄色匹布 SPMX-20240815312636 \N \N \N 1 \N [{"file_id": "adf28084-0228-46ab-a1aa-0d132ac83c4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ad610ddf58e414fa65929957b993044.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ad610ddf58e414fa65929957b993044.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ad610ddf58e414fa65929957b993044.jpg", "file_size": 7029, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#黄色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad610ddf58e414fa65929957b993044.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad610ddf58e414fa65929957b993044.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ad610ddf58e414fa65929957b993044.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ad610ddf58e414fa65929957b993044.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ad610ddf58e414fa65929957b993044.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmeM6Abz5vXNlagC019_yeoJ02g=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.587524+00 2025-12-09 10:15:40.58753+00 17413 HX358#L SPMX-20240815312638 \N \N \N 1 \N [{"file_id": "920e1a69-b1a9-41f7-a806-6d308f45af0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afc0fc80eed04f2c9e9b684c4507987c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afc0fc80eed04f2c9e9b684c4507987c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afc0fc80eed04f2c9e9b684c4507987c.jpg", "file_size": 12100, "is_delete": false, "file_type": 1, "original_file_name": "HX358#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc0fc80eed04f2c9e9b684c4507987c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc0fc80eed04f2c9e9b684c4507987c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc0fc80eed04f2c9e9b684c4507987c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afc0fc80eed04f2c9e9b684c4507987c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afc0fc80eed04f2c9e9b684c4507987c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3qQq0vxezTBHLurC4ZcN_8qvnc=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.590345+00 2025-12-09 10:15:40.590351+00 17414 1231-20FWF#中童14码 SPMX-20240815312641 \N \N \N 1 \N [{"file_id": "6cf9af59-e67b-4639-9d3a-79425295f3d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3049a29da8164d8fa817cf1d558090e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3049a29da8164d8fa817cf1d558090e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3049a29da8164d8fa817cf1d558090e6.jpg", "file_size": 17422, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3049a29da8164d8fa817cf1d558090e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3049a29da8164d8fa817cf1d558090e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3049a29da8164d8fa817cf1d558090e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3049a29da8164d8fa817cf1d558090e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3049a29da8164d8fa817cf1d558090e6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhrDbKgDm3T8SZ5koeoWvA6dHYs=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.593223+00 2025-12-09 10:15:40.593228+00 17415 855FWF#枣红 SPMX-20240815312634 \N \N \N 1 \N [{"file_id": "ba47b48d-2dfe-4417-a490-4f5a62f722d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40775426e60e419091e0f6c811ca6faf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40775426e60e419091e0f6c811ca6faf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40775426e60e419091e0f6c811ca6faf.jpg", "file_size": 23468, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40775426e60e419091e0f6c811ca6faf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40775426e60e419091e0f6c811ca6faf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40775426e60e419091e0f6c811ca6faf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40775426e60e419091e0f6c811ca6faf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40775426e60e419091e0f6c811ca6faf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jW7KOm_vp4_lniXt1W01LUBpr00=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.595973+00 2025-12-09 10:15:40.595979+00 17416 231483#-003-4 SPMX-20240815312633 \N \N \N 1 \N [{"file_id": "19206f9f-4501-4dd2-94d8-78740201df77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "786ecd4ee53849c49fb8cac84af7a21d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "786ecd4ee53849c49fb8cac84af7a21d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "786ecd4ee53849c49fb8cac84af7a21d.jpg", "file_size": 28065, "is_delete": false, "file_type": 1, "original_file_name": "231483#-003-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786ecd4ee53849c49fb8cac84af7a21d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786ecd4ee53849c49fb8cac84af7a21d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786ecd4ee53849c49fb8cac84af7a21d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/786ecd4ee53849c49fb8cac84af7a21d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/786ecd4ee53849c49fb8cac84af7a21d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_LXf5sE1IZHhslo3dNZczXz2YKA=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.598773+00 2025-12-09 10:15:40.598779+00 17417 JTSS806FW#VS-D3 SPMX-20240815312635 \N \N \N 1 \N [{"file_id": "d72ed24e-13b2-400d-9c02-09ba8e6176a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3bb4bd60bde41e4bebe7ab6f8049430.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3bb4bd60bde41e4bebe7ab6f8049430.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3bb4bd60bde41e4bebe7ab6f8049430.jpg", "file_size": 8658, "is_delete": false, "file_type": 1, "original_file_name": "JTSS806FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bb4bd60bde41e4bebe7ab6f8049430.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bb4bd60bde41e4bebe7ab6f8049430.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3bb4bd60bde41e4bebe7ab6f8049430.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3bb4bd60bde41e4bebe7ab6f8049430.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3bb4bd60bde41e4bebe7ab6f8049430.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77j9F2wxNVwpaTB75uUWRfZzD30=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.601569+00 2025-12-09 10:15:40.601575+00 17418 DL31619-2#前幅蓝绿 SPMX-20240815312640 \N \N \N 1 \N [{"file_id": "e19f7f53-374b-416e-a85f-6fdfd66dcdbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca212d26655345ae94e5bf69141e021f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca212d26655345ae94e5bf69141e021f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca212d26655345ae94e5bf69141e021f.jpg", "file_size": 15568, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca212d26655345ae94e5bf69141e021f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca212d26655345ae94e5bf69141e021f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca212d26655345ae94e5bf69141e021f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca212d26655345ae94e5bf69141e021f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca212d26655345ae94e5bf69141e021f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svzrypXv5m9H0PT_Lm7M567u1qs=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.604363+00 2025-12-09 10:15:40.604369+00 17419 FX0003-168#RC23 SPMX-20240815312632 \N \N \N 1 \N [{"file_id": "a965f63b-666f-4532-8dff-4baac9525edc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95a3e5185ca7465e91c7726ace7bbb9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95a3e5185ca7465e91c7726ace7bbb9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95a3e5185ca7465e91c7726ace7bbb9b.jpg", "file_size": 54985, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-168#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a3e5185ca7465e91c7726ace7bbb9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a3e5185ca7465e91c7726ace7bbb9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a3e5185ca7465e91c7726ace7bbb9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95a3e5185ca7465e91c7726ace7bbb9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95a3e5185ca7465e91c7726ace7bbb9b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kygSfNQUxZUA8FB016TwwYD3YYk=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.60718+00 2025-12-09 10:15:40.607186+00 17420 LJH1891#原版色 SPMX-20240815312637 \N \N \N 1 \N [{"file_id": "bcfae9b4-25b7-4f68-9b3e-dacc3a235e92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d595350aa484018918f5e3f26613321.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d595350aa484018918f5e3f26613321.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d595350aa484018918f5e3f26613321.jpg", "file_size": 57543, "is_delete": false, "file_type": 1, "original_file_name": "LJH1891#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d595350aa484018918f5e3f26613321.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d595350aa484018918f5e3f26613321.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d595350aa484018918f5e3f26613321.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d595350aa484018918f5e3f26613321.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d595350aa484018918f5e3f26613321.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rN-FNpyIzKWNzEYA1sg1WoPptwM=", "createTime": "2024-08-15 15:02:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.60999+00 2025-12-09 10:15:40.609996+00 17421 0008-15FWF#V5曲线 SPMX-20240815312642 \N \N \N 1 \N [{"file_id": "bfde04d9-2b0f-48f2-a2fe-2245c39488f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdf5c927f8a34b7b919c2b1c4c17564b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdf5c927f8a34b7b919c2b1c4c17564b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdf5c927f8a34b7b919c2b1c4c17564b.jpg", "file_size": 13172, "is_delete": false, "file_type": 1, "original_file_name": "0008-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf5c927f8a34b7b919c2b1c4c17564b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf5c927f8a34b7b919c2b1c4c17564b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf5c927f8a34b7b919c2b1c4c17564b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdf5c927f8a34b7b919c2b1c4c17564b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdf5c927f8a34b7b919c2b1c4c17564b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2x9UP1kK1tt7YB_WhIPGt3zg6w=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.612739+00 2025-12-09 10:15:40.612745+00 17422 231483#-004-1-混码 SPMX-20240815312644 \N \N \N 1 \N [{"file_id": "f5c9db6a-afda-49bd-8f8c-bd256640476e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39fbe4d46d084d5d8a62e45e7c721c6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39fbe4d46d084d5d8a62e45e7c721c6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39fbe4d46d084d5d8a62e45e7c721c6a.jpg", "file_size": 31068, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fbe4d46d084d5d8a62e45e7c721c6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fbe4d46d084d5d8a62e45e7c721c6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fbe4d46d084d5d8a62e45e7c721c6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39fbe4d46d084d5d8a62e45e7c721c6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39fbe4d46d084d5d8a62e45e7c721c6a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:40_hy_HdVYtKO4IJ1C3oUE8oybo=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.615606+00 2025-12-09 10:15:40.615612+00 17423 JTSS807FW#VS-D3 SPMX-20240815312645 \N \N \N 1 \N [{"file_id": "ad73bed6-39c6-444e-8d87-1b4ee4c6ebd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f86853b15bf2421f9f063641ef9f2884.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f86853b15bf2421f9f063641ef9f2884.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f86853b15bf2421f9f063641ef9f2884.jpg", "file_size": 26161, "is_delete": false, "file_type": 1, "original_file_name": "JTSS807FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86853b15bf2421f9f063641ef9f2884.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86853b15bf2421f9f063641ef9f2884.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f86853b15bf2421f9f063641ef9f2884.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f86853b15bf2421f9f063641ef9f2884.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f86853b15bf2421f9f063641ef9f2884.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IntKA-fNAO4OGE_jz8jCml7ik5g=", "createTime": "2024-08-15 15:02:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.618511+00 2025-12-09 10:15:40.618518+00 17424 FX0003-169#净色 SPMX-20240815312643 \N \N \N 1 \N [{"file_id": "29ddf30f-3a88-44d6-a326-594f818911dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb0047d6fc7a42579fc367b30d0838d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb0047d6fc7a42579fc367b30d0838d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb0047d6fc7a42579fc367b30d0838d8.jpg", "file_size": 48474, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-169#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0047d6fc7a42579fc367b30d0838d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0047d6fc7a42579fc367b30d0838d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb0047d6fc7a42579fc367b30d0838d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb0047d6fc7a42579fc367b30d0838d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb0047d6fc7a42579fc367b30d0838d8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WLtb9KcWsbIVf9Aza_c-n-_z7KE=", "createTime": "2024-08-15 15:02:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.621899+00 2025-12-09 10:15:40.621905+00 17425 1231-20FWF#中童袖领匹布 SPMX-20240815312653 \N \N \N 1 \N [{"file_id": "a83e38f8-2ce7-4c36-a200-4d9d117ee177", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1688872242974aefb6de32460988c470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1688872242974aefb6de32460988c470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1688872242974aefb6de32460988c470.jpg", "file_size": 27992, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1688872242974aefb6de32460988c470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1688872242974aefb6de32460988c470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1688872242974aefb6de32460988c470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1688872242974aefb6de32460988c470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1688872242974aefb6de32460988c470.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7M0SkfeHZaY2xPX3nRXMuhki0BA=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.625023+00 2025-12-09 10:15:40.625028+00 17426 231483#-004-1 SPMX-20240815312651 \N \N \N 1 \N [{"file_id": "f572e4b9-6d26-4705-aa9e-afd825753a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a677066590f4fcfa776afc6691b4be6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a677066590f4fcfa776afc6691b4be6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a677066590f4fcfa776afc6691b4be6.jpg", "file_size": 79072, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a677066590f4fcfa776afc6691b4be6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a677066590f4fcfa776afc6691b4be6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a677066590f4fcfa776afc6691b4be6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a677066590f4fcfa776afc6691b4be6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a677066590f4fcfa776afc6691b4be6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F9uw4q96uq7lXpy2w0fJIdaKzKg=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.628261+00 2025-12-09 10:15:40.628267+00 17427 CCH0555-7#黑色 SPMX-20240815312646 \N \N \N 1 \N [{"file_id": "9224ec38-5a7d-45e1-bb1c-350d14bacfea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c24e8bf73dd442a8a259d45d763f901.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c24e8bf73dd442a8a259d45d763f901.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c24e8bf73dd442a8a259d45d763f901.jpg", "file_size": 15724, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c24e8bf73dd442a8a259d45d763f901.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c24e8bf73dd442a8a259d45d763f901.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c24e8bf73dd442a8a259d45d763f901.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c24e8bf73dd442a8a259d45d763f901.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c24e8bf73dd442a8a259d45d763f901.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ygQvKU8Dkrb1eCf55S23pp7B3RQ=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.6313+00 2025-12-09 10:15:40.631305+00 17428 HX358#M SPMX-20240815312648 \N \N \N 1 \N [{"file_id": "96bb83b1-e08e-4f97-83d0-2b246685cc59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e3718b3c6d1444daa9ff98a840a09a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e3718b3c6d1444daa9ff98a840a09a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e3718b3c6d1444daa9ff98a840a09a6.jpg", "file_size": 12862, "is_delete": false, "file_type": 1, "original_file_name": "HX358#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3718b3c6d1444daa9ff98a840a09a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3718b3c6d1444daa9ff98a840a09a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e3718b3c6d1444daa9ff98a840a09a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e3718b3c6d1444daa9ff98a840a09a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e3718b3c6d1444daa9ff98a840a09a6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCvED8076k6eYOfDZL2ilef-M2Q=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.635058+00 2025-12-09 10:15:40.635062+00 17429 LZ1372#上身3号色 SPMX-20240815312655 \N \N \N 1 \N [{"file_id": "d9cb06ef-41e8-495f-9543-f95b2d4bac2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "774774b736bc49ed902668c299f54701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "774774b736bc49ed902668c299f54701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "774774b736bc49ed902668c299f54701.jpg", "file_size": 15933, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774774b736bc49ed902668c299f54701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774774b736bc49ed902668c299f54701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/774774b736bc49ed902668c299f54701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/774774b736bc49ed902668c299f54701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/774774b736bc49ed902668c299f54701.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0PTF-FyxyPRuDs4ftdtg_FpAVz0=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.638121+00 2025-12-09 10:15:40.638127+00 17430 FX0003-169#正身 SPMX-20240815312656 \N \N \N 1 \N [{"file_id": "8b0a6d77-698b-47bc-8439-d38588b24010", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bfb8650fad64dcfb70075ec07a03758.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bfb8650fad64dcfb70075ec07a03758.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bfb8650fad64dcfb70075ec07a03758.jpg", "file_size": 63491, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-169#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfb8650fad64dcfb70075ec07a03758.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfb8650fad64dcfb70075ec07a03758.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bfb8650fad64dcfb70075ec07a03758.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bfb8650fad64dcfb70075ec07a03758.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bfb8650fad64dcfb70075ec07a03758.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dgpjrDVI9ODAVW3yXIxDVJnOIRs=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.641349+00 2025-12-09 10:15:40.641355+00 17431 855FWF#藏青 SPMX-20240815312658 \N \N \N 1 \N [{"file_id": "2ed70eef-f8b1-4331-9db6-ce6a0237aac3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2161f0566d43478f9c680fd4034185a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2161f0566d43478f9c680fd4034185a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2161f0566d43478f9c680fd4034185a1.jpg", "file_size": 21004, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2161f0566d43478f9c680fd4034185a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2161f0566d43478f9c680fd4034185a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2161f0566d43478f9c680fd4034185a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2161f0566d43478f9c680fd4034185a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2161f0566d43478f9c680fd4034185a1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMyrxYy2xn-valJpgpnWcuMO5nQ=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.644425+00 2025-12-09 10:15:40.64443+00 17432 HX358#S SPMX-20240815312659 \N \N \N 1 \N [{"file_id": "e4db3568-82e4-408b-95d0-05d94aec2480", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3467e4f31aa4411bb7784099fe4dab0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3467e4f31aa4411bb7784099fe4dab0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3467e4f31aa4411bb7784099fe4dab0a.jpg", "file_size": 12386, "is_delete": false, "file_type": 1, "original_file_name": "HX358#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3467e4f31aa4411bb7784099fe4dab0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3467e4f31aa4411bb7784099fe4dab0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3467e4f31aa4411bb7784099fe4dab0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3467e4f31aa4411bb7784099fe4dab0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3467e4f31aa4411bb7784099fe4dab0a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOoSjNMh33eSXr_T-ODku2elHgg=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.647082+00 2025-12-09 10:15:40.647087+00 17433 855FWF#绿色 SPMX-20240815312647 \N \N \N 1 \N [{"file_id": "06e05666-2cf5-45ae-b1e5-992bc7fb3b71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bba932097b8432c84ad1d5d6a739a3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bba932097b8432c84ad1d5d6a739a3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bba932097b8432c84ad1d5d6a739a3f.jpg", "file_size": 21618, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bba932097b8432c84ad1d5d6a739a3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bba932097b8432c84ad1d5d6a739a3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bba932097b8432c84ad1d5d6a739a3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bba932097b8432c84ad1d5d6a739a3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bba932097b8432c84ad1d5d6a739a3f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnEQIJlkGToBLSqUJg0A_PjG8lo=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.649598+00 2025-12-09 10:15:40.649604+00 17434 JTSS808FW#VS-D3 SPMX-20240815312652 \N \N \N 1 \N [{"file_id": "5f4aea71-145a-46ea-b3ba-e3a6b82bda96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73659e8df9c24edb944fca2a54419766.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73659e8df9c24edb944fca2a54419766.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73659e8df9c24edb944fca2a54419766.jpg", "file_size": 17279, "is_delete": false, "file_type": 1, "original_file_name": "JTSS808FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73659e8df9c24edb944fca2a54419766.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73659e8df9c24edb944fca2a54419766.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73659e8df9c24edb944fca2a54419766.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73659e8df9c24edb944fca2a54419766.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73659e8df9c24edb944fca2a54419766.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0JtH9yHHjz2dXlOjp6utiYH9TI=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.652124+00 2025-12-09 10:15:40.65213+00 17435 CCH0555-7#黑色匹布 SPMX-20240815312657 \N \N \N 1 \N [{"file_id": "84fb2c43-1b8f-478b-89c7-1b5857d4c8f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca8b908c7d644605a68dfaaa79ca78fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca8b908c7d644605a68dfaaa79ca78fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca8b908c7d644605a68dfaaa79ca78fc.jpg", "file_size": 7571, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-7#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8b908c7d644605a68dfaaa79ca78fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8b908c7d644605a68dfaaa79ca78fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca8b908c7d644605a68dfaaa79ca78fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca8b908c7d644605a68dfaaa79ca78fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca8b908c7d644605a68dfaaa79ca78fc.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6acj1PkufUJumwlun6cSDIxA4U=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.65469+00 2025-12-09 10:15:40.654695+00 17436 LJH1891#玫红 SPMX-20240815312649 \N \N \N 1 \N [{"file_id": "f65e202c-02e0-4412-82b8-c8a6b8d422d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d81354137a345b79e8e26481bcbe8a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d81354137a345b79e8e26481bcbe8a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d81354137a345b79e8e26481bcbe8a7.jpg", "file_size": 55039, "is_delete": false, "file_type": 1, "original_file_name": "LJH1891#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d81354137a345b79e8e26481bcbe8a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d81354137a345b79e8e26481bcbe8a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d81354137a345b79e8e26481bcbe8a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d81354137a345b79e8e26481bcbe8a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d81354137a345b79e8e26481bcbe8a7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2jmi8mRAtal-7bTeglIgWTh8FU=", "createTime": "2024-08-15 15:02:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.657412+00 2025-12-09 10:15:40.657417+00 17437 0008-16FWE#粉色 SPMX-20240815312650 \N \N \N 1 \N [{"file_id": "a9ff74c9-0e5a-48da-89ab-688ddcc475f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37dbbd5e08d746f6899f13edae33ef0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37dbbd5e08d746f6899f13edae33ef0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37dbbd5e08d746f6899f13edae33ef0b.jpg", "file_size": 18205, "is_delete": false, "file_type": 1, "original_file_name": "0008-16FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37dbbd5e08d746f6899f13edae33ef0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37dbbd5e08d746f6899f13edae33ef0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37dbbd5e08d746f6899f13edae33ef0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37dbbd5e08d746f6899f13edae33ef0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37dbbd5e08d746f6899f13edae33ef0b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdNdOmyNeCGhf0N9t-YWO7OplX4=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.660223+00 2025-12-09 10:15:40.660228+00 17438 DL31619-2#前幅黄色 SPMX-20240815312654 \N \N \N 1 \N [{"file_id": "4de7e144-d1a0-4674-9bad-7d2d99b675ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8d0c8c6165f4cc3a78bafb20cc24878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8d0c8c6165f4cc3a78bafb20cc24878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8d0c8c6165f4cc3a78bafb20cc24878.jpg", "file_size": 15003, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d0c8c6165f4cc3a78bafb20cc24878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d0c8c6165f4cc3a78bafb20cc24878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d0c8c6165f4cc3a78bafb20cc24878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8d0c8c6165f4cc3a78bafb20cc24878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8d0c8c6165f4cc3a78bafb20cc24878.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ofitIEICSVbvwyZmDkle3UDnPFA=", "createTime": "2024-08-15 15:02:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.663142+00 2025-12-09 10:15:40.663148+00 17439 1231-20FWF#小童8码+4码 SPMX-20240815312671 \N \N \N 1 \N [{"file_id": "68527643-45d1-4142-9456-1bb4b9b3f8d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9d6e06527f5460898e710e322e402c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9d6e06527f5460898e710e322e402c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9d6e06527f5460898e710e322e402c3.jpg", "file_size": 21775, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d6e06527f5460898e710e322e402c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d6e06527f5460898e710e322e402c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9d6e06527f5460898e710e322e402c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9d6e06527f5460898e710e322e402c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9d6e06527f5460898e710e322e402c3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-8nHxjxOidlZberMamGq8aMP7U=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.666994+00 2025-12-09 10:15:40.667+00 17440 CCH0555-8#原版色 SPMX-20240815312668 \N \N \N 1 \N [{"file_id": "814db0a1-a69b-4c4f-8fd7-1ed66875985c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4246e65f812d40acbf4ffac0e8c7a0de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4246e65f812d40acbf4ffac0e8c7a0de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4246e65f812d40acbf4ffac0e8c7a0de.jpg", "file_size": 16656, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-8#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4246e65f812d40acbf4ffac0e8c7a0de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4246e65f812d40acbf4ffac0e8c7a0de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4246e65f812d40acbf4ffac0e8c7a0de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4246e65f812d40acbf4ffac0e8c7a0de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4246e65f812d40acbf4ffac0e8c7a0de.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLUJ2d0_uWgmv99mTD5XKTqnDT8=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.670257+00 2025-12-09 10:15:40.670263+00 17441 231483#-004-2-混码 SPMX-20240815312661 \N \N \N 1 \N [{"file_id": "4087c7ff-3f3b-4010-b965-e3fbb1fe5434", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg", "file_size": 31905, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5ef3d7b4f8f4c0598e9b3964187dd6f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P1szyJ55TfxQA3OeE54A4LCzptQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.673439+00 2025-12-09 10:15:40.673444+00 17442 231483#-004-2 SPMX-20240815312672 \N \N \N 1 \N [{"file_id": "49188bcd-145f-4ff4-a5c7-f2ec282c77d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92b310275b8542358e1de7f41f29e186.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92b310275b8542358e1de7f41f29e186.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92b310275b8542358e1de7f41f29e186.jpg", "file_size": 73554, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b310275b8542358e1de7f41f29e186.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b310275b8542358e1de7f41f29e186.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b310275b8542358e1de7f41f29e186.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92b310275b8542358e1de7f41f29e186.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92b310275b8542358e1de7f41f29e186.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QQXc_66VKRIFvnVfFQUblPb3p4=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.676552+00 2025-12-09 10:15:40.676558+00 17443 LZ1372#上身4号色 SPMX-20240815312665 \N \N \N 1 \N [{"file_id": "920b0399-e314-4054-ae19-d916ba0422f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23ba812fc28949cba8573ac5d403d113.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23ba812fc28949cba8573ac5d403d113.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23ba812fc28949cba8573ac5d403d113.jpg", "file_size": 15695, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ba812fc28949cba8573ac5d403d113.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ba812fc28949cba8573ac5d403d113.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ba812fc28949cba8573ac5d403d113.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23ba812fc28949cba8573ac5d403d113.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23ba812fc28949cba8573ac5d403d113.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZoFJAXS7sY3BbJK__E_acdnzYQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.679824+00 2025-12-09 10:15:40.67983+00 17444 0008-16FWE#蓝色 SPMX-20240815312664 \N \N \N 1 \N [{"file_id": "a2c08098-e7c1-484f-b9a4-5d320ca0de20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aea6f92b2894113ba23cecb6135472e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aea6f92b2894113ba23cecb6135472e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aea6f92b2894113ba23cecb6135472e.jpg", "file_size": 17911, "is_delete": false, "file_type": 1, "original_file_name": "0008-16FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aea6f92b2894113ba23cecb6135472e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aea6f92b2894113ba23cecb6135472e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aea6f92b2894113ba23cecb6135472e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aea6f92b2894113ba23cecb6135472e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aea6f92b2894113ba23cecb6135472e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVU4sszctm0iGQxu7n6G21TeNRQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.682894+00 2025-12-09 10:15:40.6829+00 17445 LJH1891#黄色 SPMX-20240815312673 \N \N \N 1 \N [{"file_id": "af75ea2b-39b6-4b1c-8c83-7a2181d40a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b6db63a32b45f882be66f42256994d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b6db63a32b45f882be66f42256994d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b6db63a32b45f882be66f42256994d.jpg", "file_size": 57484, "is_delete": false, "file_type": 1, "original_file_name": "LJH1891#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6db63a32b45f882be66f42256994d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6db63a32b45f882be66f42256994d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b6db63a32b45f882be66f42256994d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b6db63a32b45f882be66f42256994d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b6db63a32b45f882be66f42256994d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCPmXG7FTC9Mx7mFUUYQW6GEhE8=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.685902+00 2025-12-09 10:15:40.685908+00 17446 DL31619-2#批布11#大红 SPMX-20240815312663 \N \N \N 1 \N [{"file_id": "abf6421f-ead7-413a-b8b7-61bb59547433", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd76ad705cba49f89e47baebf42dc979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd76ad705cba49f89e47baebf42dc979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd76ad705cba49f89e47baebf42dc979.jpg", "file_size": 25335, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布11#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd76ad705cba49f89e47baebf42dc979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd76ad705cba49f89e47baebf42dc979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd76ad705cba49f89e47baebf42dc979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd76ad705cba49f89e47baebf42dc979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd76ad705cba49f89e47baebf42dc979.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPM6auOs5EeBHHXS8dDLn15QgA8=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.688921+00 2025-12-09 10:15:40.688927+00 17447 HX358#XL SPMX-20240815312670 \N \N \N 1 \N [{"file_id": "7afba438-1fca-4edb-9b63-be811d7bb06f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b4e55efbee747e1bb1406e3fa79fec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b4e55efbee747e1bb1406e3fa79fec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b4e55efbee747e1bb1406e3fa79fec7.jpg", "file_size": 12288, "is_delete": false, "file_type": 1, "original_file_name": "HX358#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4e55efbee747e1bb1406e3fa79fec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4e55efbee747e1bb1406e3fa79fec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b4e55efbee747e1bb1406e3fa79fec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b4e55efbee747e1bb1406e3fa79fec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b4e55efbee747e1bb1406e3fa79fec7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1RxGpnagq8PqBJmQCvnwqS8vsQ=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.69192+00 2025-12-09 10:15:40.691926+00 17448 JTSS809FW#VS-D3 SPMX-20240815312667 \N \N \N 1 \N [{"file_id": "4554f913-4d9d-467c-ad83-c97c472886ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06f01839061545f99f326b0f2d7977bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06f01839061545f99f326b0f2d7977bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06f01839061545f99f326b0f2d7977bb.jpg", "file_size": 14912, "is_delete": false, "file_type": 1, "original_file_name": "JTSS809FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f01839061545f99f326b0f2d7977bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f01839061545f99f326b0f2d7977bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f01839061545f99f326b0f2d7977bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06f01839061545f99f326b0f2d7977bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06f01839061545f99f326b0f2d7977bb.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AIeAroCENsPPtSxUaeNMfA6tf8g=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.694963+00 2025-12-09 10:15:40.69497+00 17449 855FWF#豆沙 SPMX-20240815312669 \N \N \N 1 \N [{"file_id": "d05db120-71e0-49f0-9439-c9e008d58a86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "954f775093bf49febb6cbc73c94c6a65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "954f775093bf49febb6cbc73c94c6a65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "954f775093bf49febb6cbc73c94c6a65.jpg", "file_size": 24234, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954f775093bf49febb6cbc73c94c6a65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954f775093bf49febb6cbc73c94c6a65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954f775093bf49febb6cbc73c94c6a65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/954f775093bf49febb6cbc73c94c6a65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/954f775093bf49febb6cbc73c94c6a65.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLR0Mo2F6zOdq4zkv6717hZWM2I=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.698224+00 2025-12-09 10:15:40.69823+00 17450 LJH1891#红色 SPMX-20240815312662 \N \N \N 1 \N [{"file_id": "8335927b-f694-4928-bbdf-22317977d598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bffcda41dee4809b57af3207a0c1cd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bffcda41dee4809b57af3207a0c1cd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bffcda41dee4809b57af3207a0c1cd4.jpg", "file_size": 57295, "is_delete": false, "file_type": 1, "original_file_name": "LJH1891#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bffcda41dee4809b57af3207a0c1cd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bffcda41dee4809b57af3207a0c1cd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bffcda41dee4809b57af3207a0c1cd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bffcda41dee4809b57af3207a0c1cd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bffcda41dee4809b57af3207a0c1cd4.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9n8Qma-Uf4iow_1LwP2wNPCMPNc=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.701382+00 2025-12-09 10:15:40.701388+00 17451 1231-20FWF#小童6码 SPMX-20240815312660 \N \N \N 1 \N [{"file_id": "75064ce9-754f-4f4d-8655-99e36b87beca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg", "file_size": 21178, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3eb1fd668d9a4dcc9f9eb8eef84a1fb7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pe0b6YJ68PoRBXauJphs6axN9xg=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.704505+00 2025-12-09 10:15:40.704511+00 17452 FX0003-169#黑色净色 SPMX-20240815312666 \N \N \N 1 \N [{"file_id": "8629a961-67d1-4927-836a-5e63c458c7d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9257121136e841d3b00b95451fe4a033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9257121136e841d3b00b95451fe4a033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9257121136e841d3b00b95451fe4a033.jpg", "file_size": 47741, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-169#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9257121136e841d3b00b95451fe4a033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9257121136e841d3b00b95451fe4a033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9257121136e841d3b00b95451fe4a033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9257121136e841d3b00b95451fe4a033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9257121136e841d3b00b95451fe4a033.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05HpqVoqkfO1O3m5q9fGJz5NCAc=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.707592+00 2025-12-09 10:15:40.707599+00 17453 LZ1372#上身5号色 SPMX-20240815312674 \N \N \N 1 \N [{"file_id": "d201a921-26bc-42b1-9e8c-c1ad8bbd1856", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4747b505f6a441538928cd547e9be70c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4747b505f6a441538928cd547e9be70c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4747b505f6a441538928cd547e9be70c.jpg", "file_size": 16131, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4747b505f6a441538928cd547e9be70c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4747b505f6a441538928cd547e9be70c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4747b505f6a441538928cd547e9be70c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4747b505f6a441538928cd547e9be70c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4747b505f6a441538928cd547e9be70c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6uQLOlkSFxKFFWy9Ek0Cju0kKXA=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.710649+00 2025-12-09 10:15:40.710654+00 17454 LJH1892#彩兰色 SPMX-20240815312684 \N \N \N 1 \N [{"file_id": "5336fd00-5bac-46b8-990c-6b2745cecccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db043685865b460d96bfc1081d660345.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db043685865b460d96bfc1081d660345.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db043685865b460d96bfc1081d660345.jpg", "file_size": 39887, "is_delete": false, "file_type": 1, "original_file_name": "LJH1892#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db043685865b460d96bfc1081d660345.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db043685865b460d96bfc1081d660345.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db043685865b460d96bfc1081d660345.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db043685865b460d96bfc1081d660345.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db043685865b460d96bfc1081d660345.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:inTV_LK36nOB_pTgq3oa1LJgb5o=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.713633+00 2025-12-09 10:15:40.713639+00 17455 DL31619-2#批布彩兰 SPMX-20240815312687 \N \N \N 1 \N [{"file_id": "ad5312df-4851-4b14-b137-1469acedcd18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e4a6c0a9f6450da2812d5c3172e52c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e4a6c0a9f6450da2812d5c3172e52c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e4a6c0a9f6450da2812d5c3172e52c.jpg", "file_size": 26581, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e4a6c0a9f6450da2812d5c3172e52c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e4a6c0a9f6450da2812d5c3172e52c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e4a6c0a9f6450da2812d5c3172e52c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e4a6c0a9f6450da2812d5c3172e52c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e4a6c0a9f6450da2812d5c3172e52c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8P4nOslIEMHG4ujlr1sOx321Aw=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.716796+00 2025-12-09 10:15:40.716803+00 17456 0008-16FWF#天蓝 SPMX-20240815312675 \N \N \N 1 \N [{"file_id": "ce76497c-4a39-4cc0-988f-b47cebedf651", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f65a23ce98546e4b8c40ff38510f03f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f65a23ce98546e4b8c40ff38510f03f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f65a23ce98546e4b8c40ff38510f03f.jpg", "file_size": 17469, "is_delete": false, "file_type": 1, "original_file_name": "0008-16FWF#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f65a23ce98546e4b8c40ff38510f03f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f65a23ce98546e4b8c40ff38510f03f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f65a23ce98546e4b8c40ff38510f03f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f65a23ce98546e4b8c40ff38510f03f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f65a23ce98546e4b8c40ff38510f03f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b14ayg4NhdNbmNW3rellFhbvNlM=", "createTime": "2024-08-15 15:02:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.719946+00 2025-12-09 10:15:40.719953+00 17457 855FWF#黑色 SPMX-20240815312681 \N \N \N 1 \N [{"file_id": "9451e668-b65e-4f71-a03f-0af0603add8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d87b9a3e31041c38e745c493b835d89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d87b9a3e31041c38e745c493b835d89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d87b9a3e31041c38e745c493b835d89.jpg", "file_size": 23891, "is_delete": false, "file_type": 1, "original_file_name": "855FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d87b9a3e31041c38e745c493b835d89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d87b9a3e31041c38e745c493b835d89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d87b9a3e31041c38e745c493b835d89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d87b9a3e31041c38e745c493b835d89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d87b9a3e31041c38e745c493b835d89.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vedarfP9PAPxZZtNBQ0jZ3S5JmU=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.723024+00 2025-12-09 10:15:40.723031+00 17458 0008-16FWF#粉色 SPMX-20240815312686 \N \N \N 1 \N [{"file_id": "dbbbce1e-0428-4a6e-9d00-4581599964eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46e4e446d4264980b5c70a0a0a3faa66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46e4e446d4264980b5c70a0a0a3faa66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46e4e446d4264980b5c70a0a0a3faa66.jpg", "file_size": 10765, "is_delete": false, "file_type": 1, "original_file_name": "0008-16FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e4e446d4264980b5c70a0a0a3faa66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e4e446d4264980b5c70a0a0a3faa66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46e4e446d4264980b5c70a0a0a3faa66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46e4e446d4264980b5c70a0a0a3faa66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46e4e446d4264980b5c70a0a0a3faa66.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dLq0LTL2eD90Z3f60Msybs_soV4=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.725971+00 2025-12-09 10:15:40.725977+00 17459 LZ1372#上身号色 SPMX-20240815312685 \N \N \N 1 \N [{"file_id": "3ebe4539-6849-4c6c-a5c0-0eb9bb59ce5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b98a67962344ac79b8dd8591a4b428d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b98a67962344ac79b8dd8591a4b428d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b98a67962344ac79b8dd8591a4b428d.jpg", "file_size": 15695, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#上身号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98a67962344ac79b8dd8591a4b428d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98a67962344ac79b8dd8591a4b428d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b98a67962344ac79b8dd8591a4b428d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b98a67962344ac79b8dd8591a4b428d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b98a67962344ac79b8dd8591a4b428d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j5nJO21jKHKLhCQ4pEsaJKjzW2U=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.728857+00 2025-12-09 10:15:40.728864+00 17460 JTSS811FW#VS-D3 SPMX-20240815312688 \N \N \N 1 \N [{"file_id": "f4f0c43f-e9fd-46c6-8276-621cb146c1cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b266fe86714bb69b4584d39ebf8599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b266fe86714bb69b4584d39ebf8599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b266fe86714bb69b4584d39ebf8599.jpg", "file_size": 15152, "is_delete": false, "file_type": 1, "original_file_name": "JTSS811FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b266fe86714bb69b4584d39ebf8599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b266fe86714bb69b4584d39ebf8599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b266fe86714bb69b4584d39ebf8599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b266fe86714bb69b4584d39ebf8599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b266fe86714bb69b4584d39ebf8599.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyR9XAyxDV4kTwv58xcVbUTTxLo=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.731811+00 2025-12-09 10:15:40.731817+00 17461 1231-20FWF#小童袖领匹布 SPMX-20240815312682 \N \N \N 1 \N [{"file_id": "9e593ad0-39ab-478a-ad6a-e61c947d7572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00151b2c5fd2452eb812d1cdf4c1563c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00151b2c5fd2452eb812d1cdf4c1563c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00151b2c5fd2452eb812d1cdf4c1563c.jpg", "file_size": 28359, "is_delete": false, "file_type": 1, "original_file_name": "1231-20FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00151b2c5fd2452eb812d1cdf4c1563c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00151b2c5fd2452eb812d1cdf4c1563c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00151b2c5fd2452eb812d1cdf4c1563c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00151b2c5fd2452eb812d1cdf4c1563c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00151b2c5fd2452eb812d1cdf4c1563c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oZdgmSTTr5QP3aWGxOuTiHXI48=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.734687+00 2025-12-09 10:15:40.734693+00 17462 DL31619-2#批布6#蓝绿 SPMX-20240815312676 \N \N \N 1 \N [{"file_id": "bccc4595-f009-4d9e-b7ed-fd242ee961e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df65ba385abd4a36b010d9670663890e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df65ba385abd4a36b010d9670663890e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df65ba385abd4a36b010d9670663890e.jpg", "file_size": 26528, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布6#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df65ba385abd4a36b010d9670663890e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df65ba385abd4a36b010d9670663890e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df65ba385abd4a36b010d9670663890e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df65ba385abd4a36b010d9670663890e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df65ba385abd4a36b010d9670663890e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbdBjQ4Q5nT9OlRXDKNrSzoccoI=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.737559+00 2025-12-09 10:15:40.737565+00 17463 HX9005#宝蓝色蝴蝶花 SPMX-20240815312680 \N \N \N 1 \N [{"file_id": "8a04dc02-0eab-4c45-b816-07bce647833c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f72cb0a3c6c447b382ef5aa52a00b31b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f72cb0a3c6c447b382ef5aa52a00b31b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f72cb0a3c6c447b382ef5aa52a00b31b.jpg", "file_size": 17459, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#宝蓝色蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72cb0a3c6c447b382ef5aa52a00b31b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72cb0a3c6c447b382ef5aa52a00b31b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f72cb0a3c6c447b382ef5aa52a00b31b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f72cb0a3c6c447b382ef5aa52a00b31b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f72cb0a3c6c447b382ef5aa52a00b31b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QUEO7e8u5_ZArur7FGsZqu0-Emk=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.740479+00 2025-12-09 10:15:40.740486+00 17464 CCH0555-8#土黄 SPMX-20240815312678 \N \N \N 1 \N [{"file_id": "abd640aa-bd6b-46ab-9339-0ea339cd85b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d21c2ce885a44928b2276cd2de643ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d21c2ce885a44928b2276cd2de643ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d21c2ce885a44928b2276cd2de643ea.jpg", "file_size": 14870, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-8#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d21c2ce885a44928b2276cd2de643ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d21c2ce885a44928b2276cd2de643ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d21c2ce885a44928b2276cd2de643ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d21c2ce885a44928b2276cd2de643ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d21c2ce885a44928b2276cd2de643ea.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AH3HXv6-DqGsEDbDBCLKCSS5SWQ=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.743406+00 2025-12-09 10:15:40.743412+00 17465 JTSS810FW#VS-D3 SPMX-20240815312677 \N \N \N 1 \N [{"file_id": "af3b3956-d03d-48c5-80b5-3d3d9bbc3387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a9680c62334848963a07f5800c8138.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a9680c62334848963a07f5800c8138.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a9680c62334848963a07f5800c8138.jpg", "file_size": 10495, "is_delete": false, "file_type": 1, "original_file_name": "JTSS810FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9680c62334848963a07f5800c8138.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9680c62334848963a07f5800c8138.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9680c62334848963a07f5800c8138.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a9680c62334848963a07f5800c8138.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a9680c62334848963a07f5800c8138.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UyydZdlXcJadcBAGN5zLvBuTo5Y=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.746258+00 2025-12-09 10:15:40.746264+00 17466 231483#-004-3-混码 SPMX-20240815312683 \N \N \N 1 \N [{"file_id": "876a65bb-1507-4a93-b8fd-ba49fb09a492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7992ec0de5f94d5e87419fe205dccf20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7992ec0de5f94d5e87419fe205dccf20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7992ec0de5f94d5e87419fe205dccf20.jpg", "file_size": 31505, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7992ec0de5f94d5e87419fe205dccf20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7992ec0de5f94d5e87419fe205dccf20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7992ec0de5f94d5e87419fe205dccf20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7992ec0de5f94d5e87419fe205dccf20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7992ec0de5f94d5e87419fe205dccf20.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WbY4fvlI4cqbEQ5L0fvVnaxgVuA=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.749506+00 2025-12-09 10:15:40.749512+00 17467 FX0003-17#兰色 SPMX-20240815312679 \N \N \N 1 \N [{"file_id": "19f93385-cf6b-42b5-894f-0747113f2f06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "730031d893864959a6e4de085be533ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "730031d893864959a6e4de085be533ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "730031d893864959a6e4de085be533ea.jpg", "file_size": 31626, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-17#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730031d893864959a6e4de085be533ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730031d893864959a6e4de085be533ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/730031d893864959a6e4de085be533ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/730031d893864959a6e4de085be533ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/730031d893864959a6e4de085be533ea.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGpT9naN5AM1l2eyc0FvVqH0CHs=", "createTime": "2024-08-15 15:02:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.752686+00 2025-12-09 10:15:40.752693+00 17468 FX0003-17#绿色 SPMX-20240815312691 \N \N \N 1 \N [{"file_id": "961bf192-c597-4a8d-8ad4-7a061e62b690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1e6317dd7ef4667922c95bd63738389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1e6317dd7ef4667922c95bd63738389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1e6317dd7ef4667922c95bd63738389.jpg", "file_size": 30879, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-17#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e6317dd7ef4667922c95bd63738389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e6317dd7ef4667922c95bd63738389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1e6317dd7ef4667922c95bd63738389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1e6317dd7ef4667922c95bd63738389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1e6317dd7ef4667922c95bd63738389.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9sZ-Xf_kqah0wmKVVpkmV4MPNP4=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.755833+00 2025-12-09 10:15:40.755839+00 17469 JTSS812FW#粉 SPMX-20240815312698 \N \N \N 1 \N [{"file_id": "e59fe83e-7adb-4277-be62-5cde66e68142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49ce0d41c8aa40b4878ae69cdeba7242.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49ce0d41c8aa40b4878ae69cdeba7242.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49ce0d41c8aa40b4878ae69cdeba7242.jpg", "file_size": 12530, "is_delete": false, "file_type": 1, "original_file_name": "JTSS812FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ce0d41c8aa40b4878ae69cdeba7242.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ce0d41c8aa40b4878ae69cdeba7242.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49ce0d41c8aa40b4878ae69cdeba7242.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49ce0d41c8aa40b4878ae69cdeba7242.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49ce0d41c8aa40b4878ae69cdeba7242.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FIUCPjc6Yf0UQkFbtEq51tVFLWo=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.758921+00 2025-12-09 10:15:40.758927+00 17470 1231-21FWF#中童12码+10码 SPMX-20240815312696 \N \N \N 1 \N [{"file_id": "d952788b-5889-4d33-bbe6-12d6754c566e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91d8d88b99ad484aa6e6ed0033dce5e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91d8d88b99ad484aa6e6ed0033dce5e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91d8d88b99ad484aa6e6ed0033dce5e7.jpg", "file_size": 19691, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d8d88b99ad484aa6e6ed0033dce5e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d8d88b99ad484aa6e6ed0033dce5e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d8d88b99ad484aa6e6ed0033dce5e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91d8d88b99ad484aa6e6ed0033dce5e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91d8d88b99ad484aa6e6ed0033dce5e7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s27bs7_UjmOdkklu58159ptt3og=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.762013+00 2025-12-09 10:15:40.762019+00 17471 LZ1372#童装T1号色 SPMX-20240815312695 \N \N \N 1 \N [{"file_id": "9d0986dd-3dc2-4d6b-8c4f-9c8b834a0a7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea142e8eb1044ac08c546e9b259d1a42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea142e8eb1044ac08c546e9b259d1a42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea142e8eb1044ac08c546e9b259d1a42.jpg", "file_size": 18894, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea142e8eb1044ac08c546e9b259d1a42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea142e8eb1044ac08c546e9b259d1a42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea142e8eb1044ac08c546e9b259d1a42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea142e8eb1044ac08c546e9b259d1a42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea142e8eb1044ac08c546e9b259d1a42.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQOBbdZ-BZRpuHh5rE3ZJNzi_9o=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.765051+00 2025-12-09 10:15:40.765057+00 17472 LJH1892#玫红色 SPMX-20240815312693 \N \N \N 1 \N [{"file_id": "de690101-3aec-4fae-8a87-e3bb2338d723", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51e4ebf4bc974fe3af7e084597348dfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51e4ebf4bc974fe3af7e084597348dfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51e4ebf4bc974fe3af7e084597348dfd.jpg", "file_size": 40007, "is_delete": false, "file_type": 1, "original_file_name": "LJH1892#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e4ebf4bc974fe3af7e084597348dfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e4ebf4bc974fe3af7e084597348dfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51e4ebf4bc974fe3af7e084597348dfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51e4ebf4bc974fe3af7e084597348dfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51e4ebf4bc974fe3af7e084597348dfd.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmnXRATtGZB_ZQTTgIZoR1iFn6o=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.768103+00 2025-12-09 10:15:40.768109+00 17473 HX9005#白底蝴蝶花 SPMX-20240815312701 \N \N \N 1 \N [{"file_id": "47f1ccbd-7a0d-4a40-a94e-5b6d40814f81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a0687ca636e4645bfe6da7cd29ae30e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a0687ca636e4645bfe6da7cd29ae30e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a0687ca636e4645bfe6da7cd29ae30e.jpg", "file_size": 16324, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#白底蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0687ca636e4645bfe6da7cd29ae30e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0687ca636e4645bfe6da7cd29ae30e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0687ca636e4645bfe6da7cd29ae30e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a0687ca636e4645bfe6da7cd29ae30e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a0687ca636e4645bfe6da7cd29ae30e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QU15KME36F_A_jtaFGoWn1WwMc4=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.771154+00 2025-12-09 10:15:40.77116+00 17474 CCH0555-8#紫色 SPMX-20240815312689 \N \N \N 1 \N [{"file_id": "8a17f6be-c326-4259-9f3e-4fca2b52b2a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83d2a78a815640a38dfc7be4577b52c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83d2a78a815640a38dfc7be4577b52c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83d2a78a815640a38dfc7be4577b52c1.jpg", "file_size": 15490, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-8#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d2a78a815640a38dfc7be4577b52c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d2a78a815640a38dfc7be4577b52c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83d2a78a815640a38dfc7be4577b52c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83d2a78a815640a38dfc7be4577b52c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83d2a78a815640a38dfc7be4577b52c1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TuTYsIxiz0BauqqpVT-61w1NoBg=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.774206+00 2025-12-09 10:15:40.774213+00 17475 8560#WJC22 SPMX-20240815312692 \N \N \N 1 \N [{"file_id": "bd53713d-d0f3-44d5-8387-2d2745501501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26d1350e27b24fd79fae3340fe8ca9d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26d1350e27b24fd79fae3340fe8ca9d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26d1350e27b24fd79fae3340fe8ca9d1.jpg", "file_size": 15527, "is_delete": false, "file_type": 1, "original_file_name": "8560#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1350e27b24fd79fae3340fe8ca9d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1350e27b24fd79fae3340fe8ca9d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1350e27b24fd79fae3340fe8ca9d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26d1350e27b24fd79fae3340fe8ca9d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26d1350e27b24fd79fae3340fe8ca9d1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNGCSRCE5AKjozkFvvto6iAuzfw=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.777252+00 2025-12-09 10:15:40.777258+00 17476 CCH0555-8#蓝色 SPMX-20240815312699 \N \N \N 1 \N [{"file_id": "749d3aca-956e-49ec-899b-7de180080e44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c60cf52441124171b4f317d7ef903823.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c60cf52441124171b4f317d7ef903823.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c60cf52441124171b4f317d7ef903823.jpg", "file_size": 15691, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-8#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60cf52441124171b4f317d7ef903823.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60cf52441124171b4f317d7ef903823.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c60cf52441124171b4f317d7ef903823.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c60cf52441124171b4f317d7ef903823.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c60cf52441124171b4f317d7ef903823.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2B6OIFQ4m8t1xxyeRiswGd_-9YA=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.780349+00 2025-12-09 10:15:40.780355+00 17477 DL31619-2#批布深水红 SPMX-20240815312700 \N \N \N 1 \N [{"file_id": "8d7b7cb8-876c-4fe9-bf9c-0b2927e42b9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d013ee7392424dc0a5a72564abed5943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d013ee7392424dc0a5a72564abed5943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d013ee7392424dc0a5a72564abed5943.jpg", "file_size": 24512, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d013ee7392424dc0a5a72564abed5943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d013ee7392424dc0a5a72564abed5943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d013ee7392424dc0a5a72564abed5943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d013ee7392424dc0a5a72564abed5943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d013ee7392424dc0a5a72564abed5943.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gvklC7plNPYOPvDZPYU5zGbbS0s=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.783402+00 2025-12-09 10:15:40.783408+00 17478 231483#-004-4-混码 SPMX-20240815312694 \N \N \N 1 \N [{"file_id": "0bcec0b3-6627-4685-b196-25d538f96b64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7deb52d7173d4fd580ed57ca798a822a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7deb52d7173d4fd580ed57ca798a822a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7deb52d7173d4fd580ed57ca798a822a.jpg", "file_size": 32683, "is_delete": false, "file_type": 1, "original_file_name": "231483#-004-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deb52d7173d4fd580ed57ca798a822a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deb52d7173d4fd580ed57ca798a822a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7deb52d7173d4fd580ed57ca798a822a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7deb52d7173d4fd580ed57ca798a822a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7deb52d7173d4fd580ed57ca798a822a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ry_qS9zW7RebLi4lAcbBABlWJso=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.786432+00 2025-12-09 10:15:40.786438+00 17479 0008-17FWE#白色 SPMX-20240815312697 \N \N \N 1 \N [{"file_id": "e499f5f0-1fb6-407e-b7ea-ab3741d33276", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8edd92d46604415ba2824e8ed6f15c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8edd92d46604415ba2824e8ed6f15c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8edd92d46604415ba2824e8ed6f15c0.jpg", "file_size": 19726, "is_delete": false, "file_type": 1, "original_file_name": "0008-17FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8edd92d46604415ba2824e8ed6f15c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8edd92d46604415ba2824e8ed6f15c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8edd92d46604415ba2824e8ed6f15c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8edd92d46604415ba2824e8ed6f15c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8edd92d46604415ba2824e8ed6f15c0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66v-qBlK4quwPK2mLly3UBpunLA=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.789655+00 2025-12-09 10:15:40.789661+00 17480 HX9005#灰色蝴蝶花 SPMX-20240815312690 \N \N \N 1 \N [{"file_id": "7db3a169-6409-4918-a4da-a0228c9a0e4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c0617dc042444ceaf0233eaf4927564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c0617dc042444ceaf0233eaf4927564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c0617dc042444ceaf0233eaf4927564.jpg", "file_size": 15597, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#灰色蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0617dc042444ceaf0233eaf4927564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0617dc042444ceaf0233eaf4927564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0617dc042444ceaf0233eaf4927564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c0617dc042444ceaf0233eaf4927564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c0617dc042444ceaf0233eaf4927564.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YJBM3jMAGXPqird7J6eaihrgMKU=", "createTime": "2024-08-15 15:02:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.793375+00 2025-12-09 10:15:40.793381+00 17481 LJH1892#绿色 SPMX-20240815312702 \N \N \N 1 \N [{"file_id": "65a18fd4-bb16-4d13-bf4e-54498fc2e58e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9acb0b4493784910acb7fbcf6412aa50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9acb0b4493784910acb7fbcf6412aa50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9acb0b4493784910acb7fbcf6412aa50.jpg", "file_size": 39365, "is_delete": false, "file_type": 1, "original_file_name": "LJH1892#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acb0b4493784910acb7fbcf6412aa50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acb0b4493784910acb7fbcf6412aa50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acb0b4493784910acb7fbcf6412aa50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9acb0b4493784910acb7fbcf6412aa50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9acb0b4493784910acb7fbcf6412aa50.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zUhNWm0g9xguvvg87GYLG0xUF78=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.796634+00 2025-12-09 10:15:40.796644+00 17482 231483#-005-1-混码 SPMX-20240815312703 \N \N \N 1 \N [{"file_id": "cc90bb7f-d891-48c7-98c6-17bb6a511b53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d48d27008567427e9438edf63300b254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d48d27008567427e9438edf63300b254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d48d27008567427e9438edf63300b254.jpg", "file_size": 28953, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48d27008567427e9438edf63300b254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48d27008567427e9438edf63300b254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d48d27008567427e9438edf63300b254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d48d27008567427e9438edf63300b254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d48d27008567427e9438edf63300b254.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:knyHiyu1d_EIinecxAhVAHcE69U=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.799902+00 2025-12-09 10:15:40.799908+00 17483 CCH0555-9#原版乱花 SPMX-20240815312711 \N \N \N 1 \N [{"file_id": "ad5a8e5b-4d94-4617-9ecb-557f7c140a79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba4e34f8fbc74e7386bf6cc8733ce89b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba4e34f8fbc74e7386bf6cc8733ce89b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba4e34f8fbc74e7386bf6cc8733ce89b.jpg", "file_size": 15489, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#原版乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4e34f8fbc74e7386bf6cc8733ce89b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4e34f8fbc74e7386bf6cc8733ce89b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4e34f8fbc74e7386bf6cc8733ce89b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba4e34f8fbc74e7386bf6cc8733ce89b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba4e34f8fbc74e7386bf6cc8733ce89b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tS4A2Il0A7mePHXQL4HCQ0lSST0=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.803079+00 2025-12-09 10:15:40.803086+00 17484 LZ1372#童装T2号色 SPMX-20240815312704 \N \N \N 1 \N [{"file_id": "8917404b-be37-4678-b537-08a7575e9737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8778075f06ba4f0ba7eda6b763eeca28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8778075f06ba4f0ba7eda6b763eeca28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8778075f06ba4f0ba7eda6b763eeca28.jpg", "file_size": 19985, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8778075f06ba4f0ba7eda6b763eeca28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8778075f06ba4f0ba7eda6b763eeca28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8778075f06ba4f0ba7eda6b763eeca28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8778075f06ba4f0ba7eda6b763eeca28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8778075f06ba4f0ba7eda6b763eeca28.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-TbykDGerFQUmX7jpMugc7q2O3s=", "createTime": "2024-08-15 15:02:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.806252+00 2025-12-09 10:15:40.806258+00 17485 JTSS812FW#红 SPMX-20240815312705 \N \N \N 1 \N [{"file_id": "d146b424-ed96-4f9c-ab19-8e73f81a30b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3718fdea321b48ff8bf3cafbbaee568e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3718fdea321b48ff8bf3cafbbaee568e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3718fdea321b48ff8bf3cafbbaee568e.jpg", "file_size": 19396, "is_delete": false, "file_type": 1, "original_file_name": "JTSS812FW#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3718fdea321b48ff8bf3cafbbaee568e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3718fdea321b48ff8bf3cafbbaee568e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3718fdea321b48ff8bf3cafbbaee568e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3718fdea321b48ff8bf3cafbbaee568e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3718fdea321b48ff8bf3cafbbaee568e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R1_qrXd7_XsQv0Ew4a0zmeyOiR0=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.809365+00 2025-12-09 10:15:40.809371+00 17486 8560#橘色 SPMX-20240815312706 \N \N \N 1 \N [{"file_id": "dffa1c4b-df32-4562-929c-98c50f40b699", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d178a21422b4670b8c21b510bcf2574.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d178a21422b4670b8c21b510bcf2574.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d178a21422b4670b8c21b510bcf2574.jpg", "file_size": 13872, "is_delete": false, "file_type": 1, "original_file_name": "8560#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d178a21422b4670b8c21b510bcf2574.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d178a21422b4670b8c21b510bcf2574.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d178a21422b4670b8c21b510bcf2574.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d178a21422b4670b8c21b510bcf2574.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d178a21422b4670b8c21b510bcf2574.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kq1YBdyEJwJXvJy5Saz9w9wO8yc=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.812528+00 2025-12-09 10:15:40.812534+00 17487 HX9005#白色蝴蝶花 SPMX-20240815312710 \N \N \N 1 \N [{"file_id": "04719b7f-4921-45b0-954b-c2a060fbee6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2474269e66184b1e91d3ae1a82d7d873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2474269e66184b1e91d3ae1a82d7d873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2474269e66184b1e91d3ae1a82d7d873.jpg", "file_size": 16267, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#白色蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2474269e66184b1e91d3ae1a82d7d873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2474269e66184b1e91d3ae1a82d7d873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2474269e66184b1e91d3ae1a82d7d873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2474269e66184b1e91d3ae1a82d7d873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2474269e66184b1e91d3ae1a82d7d873.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PKY2Ir-A2W50O9_Kg1dVLSMhDho=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.815698+00 2025-12-09 10:15:40.815708+00 17488 FX0003-170#RC23 SPMX-20240815312708 \N \N \N 1 \N [{"file_id": "6702b160-2c0e-4de2-bab0-0f18af293f81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78248ce54ead47cba34472f9dfb63cf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78248ce54ead47cba34472f9dfb63cf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78248ce54ead47cba34472f9dfb63cf3.jpg", "file_size": 46475, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-170#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78248ce54ead47cba34472f9dfb63cf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78248ce54ead47cba34472f9dfb63cf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78248ce54ead47cba34472f9dfb63cf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78248ce54ead47cba34472f9dfb63cf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78248ce54ead47cba34472f9dfb63cf3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hWNjIk1svbrTz85bE-glvt5wk28=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.818569+00 2025-12-09 10:15:40.818574+00 17489 LJH1892#黄色 SPMX-20240815312709 \N \N \N 1 \N [{"file_id": "a08e178d-8af7-4931-864d-c38e21a85fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a09be7c633fc431faa180cd034d9571f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a09be7c633fc431faa180cd034d9571f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a09be7c633fc431faa180cd034d9571f.jpg", "file_size": 39851, "is_delete": false, "file_type": 1, "original_file_name": "LJH1892#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09be7c633fc431faa180cd034d9571f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09be7c633fc431faa180cd034d9571f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a09be7c633fc431faa180cd034d9571f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a09be7c633fc431faa180cd034d9571f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a09be7c633fc431faa180cd034d9571f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIlgTWMHvd6a2X4_e-2en2EyWXE=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.821488+00 2025-12-09 10:15:40.821495+00 17490 0008-17FWF#粉色 SPMX-20240815312707 \N \N \N 1 \N [{"file_id": "16699b35-8483-4520-b6e3-67c45f569245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e54037f64a6a4a32a3886a1a9839341a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e54037f64a6a4a32a3886a1a9839341a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e54037f64a6a4a32a3886a1a9839341a.jpg", "file_size": 12287, "is_delete": false, "file_type": 1, "original_file_name": "0008-17FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54037f64a6a4a32a3886a1a9839341a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54037f64a6a4a32a3886a1a9839341a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54037f64a6a4a32a3886a1a9839341a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e54037f64a6a4a32a3886a1a9839341a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e54037f64a6a4a32a3886a1a9839341a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5GEKVUFuSy85_YHDf2RnzwiXiE=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.824384+00 2025-12-09 10:15:40.82439+00 17491 LJH1893#桔色 SPMX-20240815312720 \N \N \N 1 \N [{"file_id": "f9fb5baf-29be-480d-9d24-96e5d7683f5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1526862fc4e4c2fbb6a096db6227516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1526862fc4e4c2fbb6a096db6227516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1526862fc4e4c2fbb6a096db6227516.jpg", "file_size": 65561, "is_delete": false, "file_type": 1, "original_file_name": "LJH1893#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1526862fc4e4c2fbb6a096db6227516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1526862fc4e4c2fbb6a096db6227516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1526862fc4e4c2fbb6a096db6227516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1526862fc4e4c2fbb6a096db6227516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1526862fc4e4c2fbb6a096db6227516.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vhnr5-lMZRHFW2BHnVePhG6gxac=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.849867+00 2025-12-09 10:15:40.849873+00 17500 8560#蓝色 SPMX-20240815312717 \N \N \N 1 \N [{"file_id": "74506d3b-0038-4a1d-8a21-bfa8c9853c2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9acd26aec690489999623382dcf7f984.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9acd26aec690489999623382dcf7f984.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9acd26aec690489999623382dcf7f984.jpg", "file_size": 16361, "is_delete": false, "file_type": 1, "original_file_name": "8560#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acd26aec690489999623382dcf7f984.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acd26aec690489999623382dcf7f984.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9acd26aec690489999623382dcf7f984.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9acd26aec690489999623382dcf7f984.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9acd26aec690489999623382dcf7f984.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cqv1AeEEX7T_Whm5_aWReglaxYg=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.82723+00 2025-12-09 10:15:40.827237+00 17492 DL31619-2#批布玫红 SPMX-20240815312712 \N \N \N 1 \N [{"file_id": "81febfe3-ec4e-416e-8217-92ca8e16c6aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1c525dff6784a0a91297a4ee029f9ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1c525dff6784a0a91297a4ee029f9ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1c525dff6784a0a91297a4ee029f9ce.jpg", "file_size": 24816, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1c525dff6784a0a91297a4ee029f9ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1c525dff6784a0a91297a4ee029f9ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1c525dff6784a0a91297a4ee029f9ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1c525dff6784a0a91297a4ee029f9ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1c525dff6784a0a91297a4ee029f9ce.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i8uuW6Z0l5OLnLssgY_QeTwdu0w=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.830107+00 2025-12-09 10:15:40.830114+00 17493 1231-21FWF#中童14码 SPMX-20240815312713 \N \N \N 1 \N [{"file_id": "8a27b814-360b-4f8e-8e14-64ec0c0df1c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4eacc1852684c4bb350139cace828f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4eacc1852684c4bb350139cace828f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4eacc1852684c4bb350139cace828f1.jpg", "file_size": 18344, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4eacc1852684c4bb350139cace828f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4eacc1852684c4bb350139cace828f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4eacc1852684c4bb350139cace828f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4eacc1852684c4bb350139cace828f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4eacc1852684c4bb350139cace828f1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7wQzS1eyHYYNPwb6BSO_XKxRe8=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.832989+00 2025-12-09 10:15:40.832995+00 17494 LZ1372#童装T3号色 SPMX-20240815312714 \N \N \N 1 \N [{"file_id": "75970cae-6d39-4f2d-89bc-514cd1e9f3e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8533f17008a849f0b462a063e7e08a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8533f17008a849f0b462a063e7e08a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8533f17008a849f0b462a063e7e08a9b.jpg", "file_size": 20350, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8533f17008a849f0b462a063e7e08a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8533f17008a849f0b462a063e7e08a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8533f17008a849f0b462a063e7e08a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8533f17008a849f0b462a063e7e08a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8533f17008a849f0b462a063e7e08a9b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeSircRV1b6JU21aLuq_g46U2TA=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.835731+00 2025-12-09 10:15:40.835737+00 17495 FX0003-171#RC23 SPMX-20240815312719 \N \N \N 1 \N [{"file_id": "1bf25a22-6523-4ffa-8f3c-61dea2c81ea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c081feba4cee4f05ad4a9390a262570b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c081feba4cee4f05ad4a9390a262570b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c081feba4cee4f05ad4a9390a262570b.jpg", "file_size": 61236, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-171#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c081feba4cee4f05ad4a9390a262570b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c081feba4cee4f05ad4a9390a262570b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c081feba4cee4f05ad4a9390a262570b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c081feba4cee4f05ad4a9390a262570b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c081feba4cee4f05ad4a9390a262570b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6CMW4QcXMSLQ7JHKwxD0tCuaqYQ=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.838529+00 2025-12-09 10:15:40.838535+00 17496 CCH0555-9#原版袖子 SPMX-20240815312722 \N \N \N 1 \N [{"file_id": "1ba51f8a-269d-4dbc-8aa9-fbe7b962cbaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ca35ae0b39b499d800110ab417c0266.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ca35ae0b39b499d800110ab417c0266.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ca35ae0b39b499d800110ab417c0266.jpg", "file_size": 12117, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#原版袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca35ae0b39b499d800110ab417c0266.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca35ae0b39b499d800110ab417c0266.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ca35ae0b39b499d800110ab417c0266.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ca35ae0b39b499d800110ab417c0266.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ca35ae0b39b499d800110ab417c0266.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FypbEExdIxZpFczUZZwO_4otQT8=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.841358+00 2025-12-09 10:15:40.841366+00 17497 231483#-005-1 SPMX-20240815312715 \N \N \N 1 \N [{"file_id": "915289e8-6265-47ce-8cbd-13ec222b6926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a66fc1c9653649428c44b1ece4369c05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a66fc1c9653649428c44b1ece4369c05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a66fc1c9653649428c44b1ece4369c05.jpg", "file_size": 80509, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66fc1c9653649428c44b1ece4369c05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66fc1c9653649428c44b1ece4369c05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a66fc1c9653649428c44b1ece4369c05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a66fc1c9653649428c44b1ece4369c05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a66fc1c9653649428c44b1ece4369c05.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kg9XRh3oqpRolZZ9j2Ur8Nk-1EU=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.844151+00 2025-12-09 10:15:40.844157+00 17498 0008-17FWF#蓝色 SPMX-20240815312718 \N \N \N 1 \N [{"file_id": "4334d5e6-fc69-4ae6-85cc-799225c4bbc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fc0eb863dd344fa980ecaed9654074e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fc0eb863dd344fa980ecaed9654074e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fc0eb863dd344fa980ecaed9654074e.jpg", "file_size": 12828, "is_delete": false, "file_type": 1, "original_file_name": "0008-17FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc0eb863dd344fa980ecaed9654074e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc0eb863dd344fa980ecaed9654074e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fc0eb863dd344fa980ecaed9654074e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fc0eb863dd344fa980ecaed9654074e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fc0eb863dd344fa980ecaed9654074e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E-7N1cvfYjtvWooTluCAl7GkMmo=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.847003+00 2025-12-09 10:15:40.847009+00 17499 HX9005#粉色蝴蝶花 SPMX-20240815312721 \N \N \N 1 \N [{"file_id": "8c95de0c-cfb8-420a-902d-78cd93719372", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27c2993fcc42453380b57918c1541cd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27c2993fcc42453380b57918c1541cd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27c2993fcc42453380b57918c1541cd2.jpg", "file_size": 15845, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#粉色蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c2993fcc42453380b57918c1541cd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c2993fcc42453380b57918c1541cd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27c2993fcc42453380b57918c1541cd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27c2993fcc42453380b57918c1541cd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27c2993fcc42453380b57918c1541cd2.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCYLkHKIPmQa8fy1nN2dKCs7VCo=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.85274+00 2025-12-09 10:15:40.852751+00 17501 JTSS812FW#黑 SPMX-20240815312716 \N \N \N 1 \N [{"file_id": "a16c9567-b2b9-414c-9ee9-696b43a781ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe3404f090854c33bcc67595c90ebbdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe3404f090854c33bcc67595c90ebbdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe3404f090854c33bcc67595c90ebbdf.jpg", "file_size": 17814, "is_delete": false, "file_type": 1, "original_file_name": "JTSS812FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3404f090854c33bcc67595c90ebbdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3404f090854c33bcc67595c90ebbdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe3404f090854c33bcc67595c90ebbdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe3404f090854c33bcc67595c90ebbdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe3404f090854c33bcc67595c90ebbdf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OX43zVKH8wTr0fTfLrnwV7gA9Us=", "createTime": "2024-08-15 15:02:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.855684+00 2025-12-09 10:15:40.85569+00 17502 FX0003-172#RC23 SPMX-20240815312730 \N \N \N 1 \N [{"file_id": "7fbd0d57-9c1c-410e-a25a-5da6c1a96957", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b4bb210fa15442c8d3d13f264023570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b4bb210fa15442c8d3d13f264023570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b4bb210fa15442c8d3d13f264023570.jpg", "file_size": 62279, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-172#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4bb210fa15442c8d3d13f264023570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4bb210fa15442c8d3d13f264023570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b4bb210fa15442c8d3d13f264023570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b4bb210fa15442c8d3d13f264023570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b4bb210fa15442c8d3d13f264023570.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXS5uGlzzPjqIDZn2y7BJILA2tQ=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.858565+00 2025-12-09 10:15:40.85857+00 17503 LZ1372#童装T4号色 SPMX-20240815312723 \N \N \N 1 \N [{"file_id": "95d9fbba-a220-4b1c-9f66-320d4c17db46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0f36bc713c84dadb8f553d37a7333f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0f36bc713c84dadb8f553d37a7333f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0f36bc713c84dadb8f553d37a7333f0.jpg", "file_size": 19016, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f36bc713c84dadb8f553d37a7333f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f36bc713c84dadb8f553d37a7333f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0f36bc713c84dadb8f553d37a7333f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0f36bc713c84dadb8f553d37a7333f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0f36bc713c84dadb8f553d37a7333f0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lB7-mGF4uJfv832y_EjhZ8tJ1vk=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.861407+00 2025-12-09 10:15:40.861413+00 17504 DL31619-2#批布蓝绿 SPMX-20240815312725 \N \N \N 1 \N [{"file_id": "d20ef455-bb99-44d2-8558-6b6585f4b557", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef2c7b20f276466abcf3a06e740d6935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef2c7b20f276466abcf3a06e740d6935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef2c7b20f276466abcf3a06e740d6935.jpg", "file_size": 26403, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2c7b20f276466abcf3a06e740d6935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2c7b20f276466abcf3a06e740d6935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef2c7b20f276466abcf3a06e740d6935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef2c7b20f276466abcf3a06e740d6935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef2c7b20f276466abcf3a06e740d6935.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVA9nFS3PDh5Adb64v5JHM-m3Zo=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.864253+00 2025-12-09 10:15:40.864259+00 17505 HX9005#蓝色蝴蝶花 SPMX-20240815312732 \N \N \N 1 \N [{"file_id": "d3b8084a-050c-4838-ada8-b02fedef805d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90524c016b8545079bfc28d55f2f90f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90524c016b8545079bfc28d55f2f90f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90524c016b8545079bfc28d55f2f90f7.jpg", "file_size": 15970, "is_delete": false, "file_type": 1, "original_file_name": "HX9005#蓝色蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90524c016b8545079bfc28d55f2f90f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90524c016b8545079bfc28d55f2f90f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90524c016b8545079bfc28d55f2f90f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90524c016b8545079bfc28d55f2f90f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90524c016b8545079bfc28d55f2f90f7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zt16G2_yyuodSyA-7M7cisyCgm4=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.867094+00 2025-12-09 10:15:40.867101+00 17506 LJH1893#玫红 SPMX-20240815312731 \N \N \N 1 \N [{"file_id": "a0d34bd0-986c-4266-9d58-e9087f3b0ca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fd4a6a1bc494921a8bbfcc295db16da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fd4a6a1bc494921a8bbfcc295db16da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fd4a6a1bc494921a8bbfcc295db16da.jpg", "file_size": 67589, "is_delete": false, "file_type": 1, "original_file_name": "LJH1893#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd4a6a1bc494921a8bbfcc295db16da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd4a6a1bc494921a8bbfcc295db16da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd4a6a1bc494921a8bbfcc295db16da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fd4a6a1bc494921a8bbfcc295db16da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fd4a6a1bc494921a8bbfcc295db16da.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YdvP2DbLgzukvjcZfQZ7OZYzf9M=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.869931+00 2025-12-09 10:15:40.869936+00 17507 8561#LWQ15 SPMX-20240815312726 \N \N \N 1 \N [{"file_id": "fe4242a1-45c2-458b-afa0-40b1baa8371e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ffc3badf9d34fc0818984e8db1afefd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ffc3badf9d34fc0818984e8db1afefd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ffc3badf9d34fc0818984e8db1afefd.jpg", "file_size": 20871, "is_delete": false, "file_type": 1, "original_file_name": "8561#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ffc3badf9d34fc0818984e8db1afefd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ffc3badf9d34fc0818984e8db1afefd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ffc3badf9d34fc0818984e8db1afefd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ffc3badf9d34fc0818984e8db1afefd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ffc3badf9d34fc0818984e8db1afefd.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NH_00zVWa7luOHNpVkio6IpzH0M=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.872776+00 2025-12-09 10:15:40.872781+00 17508 0008-18FWE#粉色 SPMX-20240815312729 \N \N \N 1 \N [{"file_id": "f628eb4b-6fcf-4d32-8b68-642edf99b417", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c2701e25d2b4062986c19fd24390a75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c2701e25d2b4062986c19fd24390a75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c2701e25d2b4062986c19fd24390a75.jpg", "file_size": 19393, "is_delete": false, "file_type": 1, "original_file_name": "0008-18FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2701e25d2b4062986c19fd24390a75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2701e25d2b4062986c19fd24390a75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c2701e25d2b4062986c19fd24390a75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c2701e25d2b4062986c19fd24390a75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c2701e25d2b4062986c19fd24390a75.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99Qk1o7NMwqn_fCArd52kM6YNiY=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.898611+00 2025-12-09 10:15:40.898617+00 17517 LJH1893#绿色 SPMX-20240815312741 \N \N \N 1 \N [{"file_id": "12f3488f-dd6a-4619-b899-a3d076a5a531", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70dd9d6aa8c144e5bec4257962f9115e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70dd9d6aa8c144e5bec4257962f9115e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70dd9d6aa8c144e5bec4257962f9115e.jpg", "file_size": 65932, "is_delete": false, "file_type": 1, "original_file_name": "LJH1893#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dd9d6aa8c144e5bec4257962f9115e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dd9d6aa8c144e5bec4257962f9115e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dd9d6aa8c144e5bec4257962f9115e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70dd9d6aa8c144e5bec4257962f9115e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70dd9d6aa8c144e5bec4257962f9115e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fupg9hJrO6EKEYC_1_rB9o7FCeI=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.875634+00 2025-12-09 10:15:40.875641+00 17509 1231-21FWF#中童袖领匹布 SPMX-20240815312727 \N \N \N 1 \N [{"file_id": "3a767d60-614a-444e-8f33-26b3242da49b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39d55480d92b4e1396cf67659076912f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39d55480d92b4e1396cf67659076912f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39d55480d92b4e1396cf67659076912f.jpg", "file_size": 23790, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d55480d92b4e1396cf67659076912f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d55480d92b4e1396cf67659076912f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d55480d92b4e1396cf67659076912f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39d55480d92b4e1396cf67659076912f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39d55480d92b4e1396cf67659076912f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqcyBcQbL2-h4tKbSJXEL9NOB18=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.878559+00 2025-12-09 10:15:40.878565+00 17510 231483#-005-2-混码 SPMX-20240815312724 \N \N \N 1 \N [{"file_id": "c1b6ba4f-f381-4d7a-85b3-6eb454ef0af0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8681040de811472caec0a3e4969c89ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8681040de811472caec0a3e4969c89ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8681040de811472caec0a3e4969c89ae.jpg", "file_size": 29582, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8681040de811472caec0a3e4969c89ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8681040de811472caec0a3e4969c89ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8681040de811472caec0a3e4969c89ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8681040de811472caec0a3e4969c89ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8681040de811472caec0a3e4969c89ae.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-KQdaMawRqqQzos-cWJwWFujjlA=", "createTime": "2024-08-15 15:02:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.881379+00 2025-12-09 10:15:40.881385+00 17511 JTSS813FW#VS-D3 SPMX-20240815312728 \N \N \N 1 \N [{"file_id": "fa447984-5afd-4d34-9df4-f1628819d738", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1de7a5efeb0b4e2a9eb546e339213e1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1de7a5efeb0b4e2a9eb546e339213e1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1de7a5efeb0b4e2a9eb546e339213e1a.jpg", "file_size": 11240, "is_delete": false, "file_type": 1, "original_file_name": "JTSS813FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7a5efeb0b4e2a9eb546e339213e1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7a5efeb0b4e2a9eb546e339213e1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1de7a5efeb0b4e2a9eb546e339213e1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1de7a5efeb0b4e2a9eb546e339213e1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1de7a5efeb0b4e2a9eb546e339213e1a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-tDY79wwr7mqzc4MY4YBkM6K5M=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.884277+00 2025-12-09 10:15:40.884282+00 17512 JTSS814FW#VS-D3 SPMX-20240815312738 \N \N \N 1 \N [{"file_id": "c63bac2b-c870-4a3d-a27a-0c0e63714774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e1e912756d94109a41b69039da6ce4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e1e912756d94109a41b69039da6ce4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e1e912756d94109a41b69039da6ce4a.jpg", "file_size": 12071, "is_delete": false, "file_type": 1, "original_file_name": "JTSS814FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e1e912756d94109a41b69039da6ce4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e1e912756d94109a41b69039da6ce4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e1e912756d94109a41b69039da6ce4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e1e912756d94109a41b69039da6ce4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e1e912756d94109a41b69039da6ce4a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O8Pi8fJM0gReoS9crSUttHX99kM=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.887156+00 2025-12-09 10:15:40.887162+00 17513 LZ1372#童装T5号色 SPMX-20240815312734 \N \N \N 1 \N [{"file_id": "13a12ad3-b6f1-44df-9e1a-b29eea8140fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e6f872273b94fb8876203e489e9e659.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e6f872273b94fb8876203e489e9e659.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e6f872273b94fb8876203e489e9e659.jpg", "file_size": 19600, "is_delete": false, "file_type": 1, "original_file_name": "LZ1372#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6f872273b94fb8876203e489e9e659.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6f872273b94fb8876203e489e9e659.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e6f872273b94fb8876203e489e9e659.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e6f872273b94fb8876203e489e9e659.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e6f872273b94fb8876203e489e9e659.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U04oePllVqDmKVbWrj1YuZX-ENI=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.890054+00 2025-12-09 10:15:40.890059+00 17514 231483#-005-2 SPMX-20240815312736 \N \N \N 1 \N [{"file_id": "106bf1f5-b97c-4469-b530-dc1e4379a370", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d9a41e5ce6d46e7a61cc5349fd1f437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d9a41e5ce6d46e7a61cc5349fd1f437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d9a41e5ce6d46e7a61cc5349fd1f437.jpg", "file_size": 85337, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9a41e5ce6d46e7a61cc5349fd1f437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9a41e5ce6d46e7a61cc5349fd1f437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d9a41e5ce6d46e7a61cc5349fd1f437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d9a41e5ce6d46e7a61cc5349fd1f437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d9a41e5ce6d46e7a61cc5349fd1f437.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W0NmN4BUxXJsZWqdYUrhFIQV-o4=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.892991+00 2025-12-09 10:15:40.892998+00 17515 0008-18FWF#灰净色 SPMX-20240815312740 \N \N \N 1 \N [{"file_id": "dea19b93-ffcd-49f0-8dd7-f81ced5506fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5a3624d634641519a2490a9717f7038.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5a3624d634641519a2490a9717f7038.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5a3624d634641519a2490a9717f7038.jpg", "file_size": 7219, "is_delete": false, "file_type": 1, "original_file_name": "0008-18FWF#灰净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a3624d634641519a2490a9717f7038.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a3624d634641519a2490a9717f7038.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5a3624d634641519a2490a9717f7038.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5a3624d634641519a2490a9717f7038.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5a3624d634641519a2490a9717f7038.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YvJbRaR_n0KXqcZs4NtxNHE8Zn0=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.895802+00 2025-12-09 10:15:40.895808+00 17516 CCH0555-9#粉色乱花 SPMX-20240815312733 \N \N \N 1 \N [{"file_id": "bbd2f7b4-3fff-4b22-9d27-1d5e30020623", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4134a886189c4c32a3dd88e35ab08d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4134a886189c4c32a3dd88e35ab08d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4134a886189c4c32a3dd88e35ab08d8b.jpg", "file_size": 15733, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#粉色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4134a886189c4c32a3dd88e35ab08d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4134a886189c4c32a3dd88e35ab08d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4134a886189c4c32a3dd88e35ab08d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4134a886189c4c32a3dd88e35ab08d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4134a886189c4c32a3dd88e35ab08d8b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iuq6X0w96Jaft31R2Iu7Ek8YfO8=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.901938+00 2025-12-09 10:15:40.901947+00 17518 1231-21FWF#小童6码 SPMX-20240815312735 \N \N \N 1 \N [{"file_id": "a99260a0-b51b-432c-99bb-837add1767ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc7e7008bbcd46faa0f87b54aec2ac33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc7e7008bbcd46faa0f87b54aec2ac33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc7e7008bbcd46faa0f87b54aec2ac33.jpg", "file_size": 22038, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7e7008bbcd46faa0f87b54aec2ac33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7e7008bbcd46faa0f87b54aec2ac33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7e7008bbcd46faa0f87b54aec2ac33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc7e7008bbcd46faa0f87b54aec2ac33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc7e7008bbcd46faa0f87b54aec2ac33.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SsQw61WvHkp4pHCdZ8e5zkPbMwA=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.904888+00 2025-12-09 10:15:40.904894+00 17519 8563#LWQ15 SPMX-20240815312739 \N \N \N 1 \N [{"file_id": "48e04e05-2bcd-4da4-ad8b-689f728b6f49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d3263f2a9b4fad9ac9e67038c31f14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d3263f2a9b4fad9ac9e67038c31f14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d3263f2a9b4fad9ac9e67038c31f14.jpg", "file_size": 8480, "is_delete": false, "file_type": 1, "original_file_name": "8563#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d3263f2a9b4fad9ac9e67038c31f14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d3263f2a9b4fad9ac9e67038c31f14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d3263f2a9b4fad9ac9e67038c31f14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d3263f2a9b4fad9ac9e67038c31f14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d3263f2a9b4fad9ac9e67038c31f14.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCT2vcypEaKei8PVCaMbpeeh2M8=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.907618+00 2025-12-09 10:15:40.907624+00 17520 DL31619-2#批布黄色 SPMX-20240815312737 \N \N \N 1 \N [{"file_id": "c662c5f7-9888-445d-a3da-f56db6512a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b94986b6b9df4b2ca000089d08cbb026.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b94986b6b9df4b2ca000089d08cbb026.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b94986b6b9df4b2ca000089d08cbb026.jpg", "file_size": 24552, "is_delete": false, "file_type": 1, "original_file_name": "DL31619-2#批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b94986b6b9df4b2ca000089d08cbb026.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b94986b6b9df4b2ca000089d08cbb026.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b94986b6b9df4b2ca000089d08cbb026.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b94986b6b9df4b2ca000089d08cbb026.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b94986b6b9df4b2ca000089d08cbb026.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1V7iMTE_4o2YVtn6OUYfM-_UnU=", "createTime": "2024-08-15 15:02:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.910434+00 2025-12-09 10:15:40.910442+00 17521 HX9006#深宝蓝芦苇花 SPMX-20240815312743 \N \N \N 1 \N [{"file_id": "e6d121c7-3e48-4e07-98fe-3673d6850405", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg", "file_size": 19754, "is_delete": false, "file_type": 1, "original_file_name": "HX9006#深宝蓝芦苇花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04ebcc1da53f4f63b3e8cf0f79c0fdaa.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PgjJUBcy_8TfrybZWs2c1ERP48k=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.91337+00 2025-12-09 10:15:40.913376+00 17522 LZ1373#上身1号色 SPMX-20240815312745 \N \N \N 1 \N [{"file_id": "a1b714d1-625e-412b-bb1b-a28bcad316b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd81d091ea604764a9b3f3ae286f1775.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd81d091ea604764a9b3f3ae286f1775.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd81d091ea604764a9b3f3ae286f1775.jpg", "file_size": 18843, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd81d091ea604764a9b3f3ae286f1775.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd81d091ea604764a9b3f3ae286f1775.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd81d091ea604764a9b3f3ae286f1775.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd81d091ea604764a9b3f3ae286f1775.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd81d091ea604764a9b3f3ae286f1775.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RRxLDvlUK9yaR0x2tgJOidKtrAQ=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.916313+00 2025-12-09 10:15:40.916321+00 17523 1231-21FWF#小童8码+4码 SPMX-20240815312746 \N \N \N 1 \N [{"file_id": "17292f51-1560-4587-9dfa-f940319cc7c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ede70259ba64971a9282b11d972dd87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ede70259ba64971a9282b11d972dd87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ede70259ba64971a9282b11d972dd87.jpg", "file_size": 22613, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede70259ba64971a9282b11d972dd87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede70259ba64971a9282b11d972dd87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ede70259ba64971a9282b11d972dd87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ede70259ba64971a9282b11d972dd87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ede70259ba64971a9282b11d972dd87.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FOgZRcaaAy72o9RcSP-ImqhO0pw=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.919189+00 2025-12-09 10:15:40.919195+00 17524 CCH0555-9#粉色袖子 SPMX-20240815312744 \N \N \N 1 \N [{"file_id": "428e4372-bf92-40ba-af58-726556156135", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe84cd75d197419ab3f4934a5f6f25a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe84cd75d197419ab3f4934a5f6f25a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe84cd75d197419ab3f4934a5f6f25a4.jpg", "file_size": 12445, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#粉色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe84cd75d197419ab3f4934a5f6f25a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe84cd75d197419ab3f4934a5f6f25a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe84cd75d197419ab3f4934a5f6f25a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe84cd75d197419ab3f4934a5f6f25a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe84cd75d197419ab3f4934a5f6f25a4.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zR-ZpsxhuPs3OX2SiD2tJp3p89U=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.922017+00 2025-12-09 10:15:40.922022+00 17525 FX0003-173#RC23 SPMX-20240815312742 \N \N \N 1 \N [{"file_id": "e20deba8-f2f2-4c28-ba7c-e0deecab387d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1aa3639aad34c57a4a90113a117bdb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1aa3639aad34c57a4a90113a117bdb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1aa3639aad34c57a4a90113a117bdb0.jpg", "file_size": 43807, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-173#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1aa3639aad34c57a4a90113a117bdb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1aa3639aad34c57a4a90113a117bdb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1aa3639aad34c57a4a90113a117bdb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1aa3639aad34c57a4a90113a117bdb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1aa3639aad34c57a4a90113a117bdb0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWpCBKoIDNX4YymR5-HAYC1sduE=", "createTime": "2024-08-15 15:02:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.924996+00 2025-12-09 10:15:40.925004+00 17526 231483#-005-3-混码 SPMX-20240815312747 \N \N \N 1 \N [{"file_id": "043e0534-17fe-4c9c-82d9-f9d2a7cede66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40a11f9f1b364530bb5904372d25c93b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40a11f9f1b364530bb5904372d25c93b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40a11f9f1b364530bb5904372d25c93b.jpg", "file_size": 33066, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a11f9f1b364530bb5904372d25c93b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a11f9f1b364530bb5904372d25c93b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40a11f9f1b364530bb5904372d25c93b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40a11f9f1b364530bb5904372d25c93b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40a11f9f1b364530bb5904372d25c93b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQG4_xSXYR6TOO2PQMjzhxlF1_8=", "createTime": "2024-08-15 15:02:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.927898+00 2025-12-09 10:15:40.927905+00 17527 LJH1893#蓝色 SPMX-20240815312754 \N \N \N 1 \N [{"file_id": "b79e1c72-66cb-4634-98ba-e776b51ef1f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03eb5b1cb6d64f27ab5a699957b2d484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03eb5b1cb6d64f27ab5a699957b2d484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03eb5b1cb6d64f27ab5a699957b2d484.jpg", "file_size": 65119, "is_delete": false, "file_type": 1, "original_file_name": "LJH1893#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03eb5b1cb6d64f27ab5a699957b2d484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03eb5b1cb6d64f27ab5a699957b2d484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03eb5b1cb6d64f27ab5a699957b2d484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03eb5b1cb6d64f27ab5a699957b2d484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03eb5b1cb6d64f27ab5a699957b2d484.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ED6tFleVRxLy-TGNXkwAzo6Db4s=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.930744+00 2025-12-09 10:15:40.930751+00 17528 0008-19FWE#粉色 SPMX-20240815312751 \N \N \N 1 \N [{"file_id": "a488b330-4a2a-4f79-a67d-d30beb1cdf4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a538a6b79f31499789c27973a9ce0427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a538a6b79f31499789c27973a9ce0427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a538a6b79f31499789c27973a9ce0427.jpg", "file_size": 11942, "is_delete": false, "file_type": 1, "original_file_name": "0008-19FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538a6b79f31499789c27973a9ce0427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538a6b79f31499789c27973a9ce0427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538a6b79f31499789c27973a9ce0427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a538a6b79f31499789c27973a9ce0427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a538a6b79f31499789c27973a9ce0427.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pW0aPDv6743KxQXiCNMHpWeQBpQ=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.933566+00 2025-12-09 10:15:40.933572+00 17529 HX9006#灰色芦苇花 SPMX-20240815312752 \N \N \N 1 \N [{"file_id": "e6381892-659e-410d-83ae-dfb89f991ccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99cd2242ab86494ca49d433e80f85c98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99cd2242ab86494ca49d433e80f85c98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99cd2242ab86494ca49d433e80f85c98.jpg", "file_size": 16368, "is_delete": false, "file_type": 1, "original_file_name": "HX9006#灰色芦苇花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99cd2242ab86494ca49d433e80f85c98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99cd2242ab86494ca49d433e80f85c98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99cd2242ab86494ca49d433e80f85c98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99cd2242ab86494ca49d433e80f85c98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99cd2242ab86494ca49d433e80f85c98.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3h-cxYlExMhOP_1CacMH2OazUY=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.936435+00 2025-12-09 10:15:40.936441+00 17530 JTSS815FW#VS-D3 SPMX-20240815312748 \N \N \N 1 \N [{"file_id": "f276251d-aebd-4086-8af8-dbf6a9320197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e17b05055d104b2bb187a29953b08216.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e17b05055d104b2bb187a29953b08216.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e17b05055d104b2bb187a29953b08216.jpg", "file_size": 18030, "is_delete": false, "file_type": 1, "original_file_name": "JTSS815FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17b05055d104b2bb187a29953b08216.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17b05055d104b2bb187a29953b08216.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17b05055d104b2bb187a29953b08216.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e17b05055d104b2bb187a29953b08216.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e17b05055d104b2bb187a29953b08216.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:60JMMlx-f-HecNqBokDmeD1Wqfw=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.939371+00 2025-12-09 10:15:40.939378+00 17531 8563#下摆+门襟+领子 SPMX-20240815312749 \N \N \N 1 \N [{"file_id": "bd92de76-a424-4b58-9c81-8bc8e2f5567f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e51b38aa09f84e9baf068770a5b22122.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e51b38aa09f84e9baf068770a5b22122.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e51b38aa09f84e9baf068770a5b22122.jpg", "file_size": 16470, "is_delete": false, "file_type": 1, "original_file_name": "8563#下摆+门襟+领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e51b38aa09f84e9baf068770a5b22122.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e51b38aa09f84e9baf068770a5b22122.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e51b38aa09f84e9baf068770a5b22122.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e51b38aa09f84e9baf068770a5b22122.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e51b38aa09f84e9baf068770a5b22122.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8DIObXyYBvpX1Ow81M0XFFw2rs=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.942189+00 2025-12-09 10:15:40.942195+00 17532 CCH0555-9#红色乱花 SPMX-20240815312753 \N \N \N 1 \N [{"file_id": "d74095db-3438-4a3f-9feb-8ea6efb93787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62328c477e8c4a2581830f0eaa381e0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62328c477e8c4a2581830f0eaa381e0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62328c477e8c4a2581830f0eaa381e0e.jpg", "file_size": 16877, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#红色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62328c477e8c4a2581830f0eaa381e0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62328c477e8c4a2581830f0eaa381e0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62328c477e8c4a2581830f0eaa381e0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62328c477e8c4a2581830f0eaa381e0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62328c477e8c4a2581830f0eaa381e0e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:21ZzpXx_AeFYfiBuDHGkF102AAM=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.945007+00 2025-12-09 10:15:40.945014+00 17533 DL31761#下摆批布大红 SPMX-20240815312750 \N \N \N 1 \N [{"file_id": "98fbc2be-25f8-4f29-a03e-861e7418aa18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "883def97b82d46779a1ec3116dcaa896.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "883def97b82d46779a1ec3116dcaa896.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "883def97b82d46779a1ec3116dcaa896.jpg", "file_size": 78118, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883def97b82d46779a1ec3116dcaa896.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883def97b82d46779a1ec3116dcaa896.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883def97b82d46779a1ec3116dcaa896.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/883def97b82d46779a1ec3116dcaa896.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/883def97b82d46779a1ec3116dcaa896.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4St4FmwUYHrLJ9Tw-u2_C7Ag-pI=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.947836+00 2025-12-09 10:15:40.947841+00 17534 1231-21FWF#小童袖领匹布 SPMX-20240815312756 \N \N \N 1 \N [{"file_id": "2fc01797-f249-4d06-b6e9-738a6bee4627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8acf9768b3794fa8b843a8762fb0f195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8acf9768b3794fa8b843a8762fb0f195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8acf9768b3794fa8b843a8762fb0f195.jpg", "file_size": 18107, "is_delete": false, "file_type": 1, "original_file_name": "1231-21FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acf9768b3794fa8b843a8762fb0f195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acf9768b3794fa8b843a8762fb0f195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acf9768b3794fa8b843a8762fb0f195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8acf9768b3794fa8b843a8762fb0f195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8acf9768b3794fa8b843a8762fb0f195.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLu9NOvG_PIi2oxOn-rf8PtkFXo=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.950692+00 2025-12-09 10:15:40.950698+00 17535 0008-19FWE#绿色 SPMX-20240815312762 \N \N \N 1 \N [{"file_id": "02fcdbd5-8b32-4341-99b5-d6964205657b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8d4f8fc6b1349ecbc27a43c41452979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8d4f8fc6b1349ecbc27a43c41452979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8d4f8fc6b1349ecbc27a43c41452979.jpg", "file_size": 11861, "is_delete": false, "file_type": 1, "original_file_name": "0008-19FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d4f8fc6b1349ecbc27a43c41452979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d4f8fc6b1349ecbc27a43c41452979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8d4f8fc6b1349ecbc27a43c41452979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8d4f8fc6b1349ecbc27a43c41452979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8d4f8fc6b1349ecbc27a43c41452979.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOhrq5y1nJN-9dLrf7H_qiSaExM=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.953593+00 2025-12-09 10:15:40.953599+00 17536 LZ1373#上身2号色 SPMX-20240815312755 \N \N \N 1 \N [{"file_id": "968e25b3-5fc4-4e70-9f03-9d7a9b4fb059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "675904f87c474b9db54b7448bcd8fe53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "675904f87c474b9db54b7448bcd8fe53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "675904f87c474b9db54b7448bcd8fe53.jpg", "file_size": 16647, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675904f87c474b9db54b7448bcd8fe53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675904f87c474b9db54b7448bcd8fe53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/675904f87c474b9db54b7448bcd8fe53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/675904f87c474b9db54b7448bcd8fe53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/675904f87c474b9db54b7448bcd8fe53.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQ2efFdsflwuBoecPqcugZ54S7Y=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.956821+00 2025-12-09 10:15:40.956827+00 17537 231483#-005-3 SPMX-20240815312758 \N \N \N 1 \N [{"file_id": "c10e4ed2-80f6-45d2-9666-f1502bd4c097", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90686b1e24924e4987c8fe8aa1a7cdba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90686b1e24924e4987c8fe8aa1a7cdba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90686b1e24924e4987c8fe8aa1a7cdba.jpg", "file_size": 78859, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90686b1e24924e4987c8fe8aa1a7cdba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90686b1e24924e4987c8fe8aa1a7cdba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90686b1e24924e4987c8fe8aa1a7cdba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90686b1e24924e4987c8fe8aa1a7cdba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90686b1e24924e4987c8fe8aa1a7cdba.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lzHKRmq5oym3esoKnqpx1veO9RQ=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.959823+00 2025-12-09 10:15:40.959829+00 17538 CCH0555-9#红色袖子 SPMX-20240815312765 \N \N \N 1 \N [{"file_id": "bcf48077-f9cb-4fed-b52b-49e409af937f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "291b226864d54a10817654b4c81d091c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "291b226864d54a10817654b4c81d091c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "291b226864d54a10817654b4c81d091c.jpg", "file_size": 12764, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#红色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291b226864d54a10817654b4c81d091c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291b226864d54a10817654b4c81d091c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291b226864d54a10817654b4c81d091c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/291b226864d54a10817654b4c81d091c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/291b226864d54a10817654b4c81d091c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEQZz2tpEfFPpZr0rO8-ST94EOA=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.962816+00 2025-12-09 10:15:40.962824+00 17539 JTSS816FW#VS-D3 SPMX-20240815312761 \N \N \N 1 \N [{"file_id": "151707cf-027e-474f-a1a3-909dda94c7d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c59bf4a342a49a1ae27afd69f7cddee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c59bf4a342a49a1ae27afd69f7cddee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c59bf4a342a49a1ae27afd69f7cddee.jpg", "file_size": 10171, "is_delete": false, "file_type": 1, "original_file_name": "JTSS816FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c59bf4a342a49a1ae27afd69f7cddee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c59bf4a342a49a1ae27afd69f7cddee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c59bf4a342a49a1ae27afd69f7cddee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c59bf4a342a49a1ae27afd69f7cddee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c59bf4a342a49a1ae27afd69f7cddee.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nomM6ugIToMVwtRJiH8dKOvqL9o=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.965622+00 2025-12-09 10:15:40.965629+00 17540 LJH1895#原版天兰 SPMX-20240815312764 \N \N \N 1 \N [{"file_id": "b1ee86ab-5081-4037-b7fd-7cca5f7c407e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce9e8f2b5cb34cd58083b08b6d279f70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce9e8f2b5cb34cd58083b08b6d279f70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce9e8f2b5cb34cd58083b08b6d279f70.jpg", "file_size": 76135, "is_delete": false, "file_type": 1, "original_file_name": "LJH1895#原版天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9e8f2b5cb34cd58083b08b6d279f70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9e8f2b5cb34cd58083b08b6d279f70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9e8f2b5cb34cd58083b08b6d279f70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce9e8f2b5cb34cd58083b08b6d279f70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce9e8f2b5cb34cd58083b08b6d279f70.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2HZoYxh7SJNXZw_XZ4PYnzmXRu4=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.968525+00 2025-12-09 10:15:40.968531+00 17541 FX0003-174#RC23 SPMX-20240815312757 \N \N \N 1 \N [{"file_id": "c758b196-0533-42fe-878c-f0e29cee1731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d26cb8a3e0c48b89847a005fefae76a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d26cb8a3e0c48b89847a005fefae76a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d26cb8a3e0c48b89847a005fefae76a.jpg", "file_size": 57053, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-174#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26cb8a3e0c48b89847a005fefae76a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26cb8a3e0c48b89847a005fefae76a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d26cb8a3e0c48b89847a005fefae76a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d26cb8a3e0c48b89847a005fefae76a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d26cb8a3e0c48b89847a005fefae76a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDJTK3nGMCF1DQxhhT77xlKAGgQ=", "createTime": "2024-08-15 15:02:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.971368+00 2025-12-09 10:15:40.971374+00 17542 8563#乱花 SPMX-20240815312759 \N \N \N 1 \N [{"file_id": "867dfaeb-10a0-40dd-b0db-886a1040d25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2225f5b1c97649ea8730ce3ae58fa265.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2225f5b1c97649ea8730ce3ae58fa265.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2225f5b1c97649ea8730ce3ae58fa265.jpg", "file_size": 18392, "is_delete": false, "file_type": 1, "original_file_name": "8563#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2225f5b1c97649ea8730ce3ae58fa265.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2225f5b1c97649ea8730ce3ae58fa265.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2225f5b1c97649ea8730ce3ae58fa265.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2225f5b1c97649ea8730ce3ae58fa265.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2225f5b1c97649ea8730ce3ae58fa265.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CyfJMyNV09dQvGZLJuEL1EbC5Tk=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.974224+00 2025-12-09 10:15:40.97423+00 17543 DL31761#下摆批布彩兰 SPMX-20240815312760 \N \N \N 1 \N [{"file_id": "23a03809-e753-43a1-912c-99be7032d8f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "451aaa8a0cd440b6a17133ec055dac17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "451aaa8a0cd440b6a17133ec055dac17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "451aaa8a0cd440b6a17133ec055dac17.jpg", "file_size": 75763, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451aaa8a0cd440b6a17133ec055dac17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451aaa8a0cd440b6a17133ec055dac17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/451aaa8a0cd440b6a17133ec055dac17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/451aaa8a0cd440b6a17133ec055dac17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/451aaa8a0cd440b6a17133ec055dac17.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T8bFJ08tMW4KEpOquYh9rIPdRP4=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.97702+00 2025-12-09 10:15:40.977027+00 17544 HX9006#白色芦苇花 SPMX-20240815312763 \N \N \N 1 \N [{"file_id": "80498a99-3efa-4ef0-a0c8-c9ebff35c5c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cce9acf09ea4a27b32b02d60206eed6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cce9acf09ea4a27b32b02d60206eed6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cce9acf09ea4a27b32b02d60206eed6.jpg", "file_size": 16202, "is_delete": false, "file_type": 1, "original_file_name": "HX9006#白色芦苇花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cce9acf09ea4a27b32b02d60206eed6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cce9acf09ea4a27b32b02d60206eed6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cce9acf09ea4a27b32b02d60206eed6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cce9acf09ea4a27b32b02d60206eed6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cce9acf09ea4a27b32b02d60206eed6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:feQQyIbD3ISsi7zJxTqCXzl_LZ0=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.979865+00 2025-12-09 10:15:40.979872+00 17545 231483#-005-4-混码 SPMX-20240815312768 \N \N \N 1 \N [{"file_id": "d3b1fd7e-457c-4c0b-ab10-dd949cb1e6f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "766116abcc3445ffa973af1eec5d736f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "766116abcc3445ffa973af1eec5d736f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "766116abcc3445ffa973af1eec5d736f.jpg", "file_size": 30086, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766116abcc3445ffa973af1eec5d736f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766116abcc3445ffa973af1eec5d736f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/766116abcc3445ffa973af1eec5d736f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/766116abcc3445ffa973af1eec5d736f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/766116abcc3445ffa973af1eec5d736f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVmrbsTEAHmq2IrZMcgW-SPOkZM=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.982695+00 2025-12-09 10:15:40.982701+00 17546 JTSS817FW#VS-D3 SPMX-20240815312772 \N \N \N 1 \N [{"file_id": "a2f15080-b33d-47a9-a9cd-8462c0d501ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d94026263e94ff2853f69428b090cc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d94026263e94ff2853f69428b090cc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d94026263e94ff2853f69428b090cc3.jpg", "file_size": 15574, "is_delete": false, "file_type": 1, "original_file_name": "JTSS817FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d94026263e94ff2853f69428b090cc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d94026263e94ff2853f69428b090cc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d94026263e94ff2853f69428b090cc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d94026263e94ff2853f69428b090cc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d94026263e94ff2853f69428b090cc3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGNnRxIIxbF0v3DctH4tLGI5yvg=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.98559+00 2025-12-09 10:15:40.985596+00 17547 LZ1373#上身3号色 SPMX-20240815312766 \N \N \N 1 \N [{"file_id": "ed4aa383-2d22-42f2-8005-977fbd7db538", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88013bd1bfda477ba2bb1be5dd2b8015.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88013bd1bfda477ba2bb1be5dd2b8015.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88013bd1bfda477ba2bb1be5dd2b8015.jpg", "file_size": 18161, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88013bd1bfda477ba2bb1be5dd2b8015.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88013bd1bfda477ba2bb1be5dd2b8015.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88013bd1bfda477ba2bb1be5dd2b8015.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88013bd1bfda477ba2bb1be5dd2b8015.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88013bd1bfda477ba2bb1be5dd2b8015.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dAstp1tSe905LWpke9Mb8Dhf7OQ=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.988428+00 2025-12-09 10:15:40.988435+00 17548 0008-19FWF#粉色 SPMX-20240815312773 \N \N \N 1 \N [{"file_id": "f3bb521f-1dd1-4805-b4a7-71babd8cf8f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71ce8696a4c54929aeb5e3b2798f18d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71ce8696a4c54929aeb5e3b2798f18d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71ce8696a4c54929aeb5e3b2798f18d3.jpg", "file_size": 15121, "is_delete": false, "file_type": 1, "original_file_name": "0008-19FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ce8696a4c54929aeb5e3b2798f18d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ce8696a4c54929aeb5e3b2798f18d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71ce8696a4c54929aeb5e3b2798f18d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71ce8696a4c54929aeb5e3b2798f18d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71ce8696a4c54929aeb5e3b2798f18d3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O9ULVEJ7B9C-1e9rlUi6WBNjz9g=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.99125+00 2025-12-09 10:15:40.991256+00 17549 1231-22FWF#中童12码+10码 SPMX-20240815312767 \N \N \N 1 \N [{"file_id": "62edf0c4-0b5c-4f26-be18-3066c192f352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f131fa1f451340089d1522bc7d0e0285.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f131fa1f451340089d1522bc7d0e0285.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f131fa1f451340089d1522bc7d0e0285.jpg", "file_size": 18553, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f131fa1f451340089d1522bc7d0e0285.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f131fa1f451340089d1522bc7d0e0285.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f131fa1f451340089d1522bc7d0e0285.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f131fa1f451340089d1522bc7d0e0285.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f131fa1f451340089d1522bc7d0e0285.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1B3TfSSo9dFJtxjuRT6bF8NvImI=", "createTime": "2024-08-15 15:02:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.994095+00 2025-12-09 10:15:40.994102+00 17550 DL31761#下摆批布深水红 SPMX-20240815312770 \N \N \N 1 \N [{"file_id": "1553c2f6-c9fa-4e01-a4ac-c8e5b27173c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cca95a4ab9f49168a7d2a9511c164b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cca95a4ab9f49168a7d2a9511c164b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cca95a4ab9f49168a7d2a9511c164b2.jpg", "file_size": 76886, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cca95a4ab9f49168a7d2a9511c164b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cca95a4ab9f49168a7d2a9511c164b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cca95a4ab9f49168a7d2a9511c164b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cca95a4ab9f49168a7d2a9511c164b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cca95a4ab9f49168a7d2a9511c164b2.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NpxdyinySsbVS16HIDUs9Ee4bw=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.996956+00 2025-12-09 10:15:40.996961+00 17551 8563#坯布 SPMX-20240815312769 \N \N \N 1 \N [{"file_id": "8c4a966a-3a2a-4d0e-b1b5-f504b41bfc5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92adf33fe69f4d93b0240b1a66d9bb6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92adf33fe69f4d93b0240b1a66d9bb6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92adf33fe69f4d93b0240b1a66d9bb6d.jpg", "file_size": 15660, "is_delete": false, "file_type": 1, "original_file_name": "8563#坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92adf33fe69f4d93b0240b1a66d9bb6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92adf33fe69f4d93b0240b1a66d9bb6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92adf33fe69f4d93b0240b1a66d9bb6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92adf33fe69f4d93b0240b1a66d9bb6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92adf33fe69f4d93b0240b1a66d9bb6d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:feuQacyKYc-CQ9ffElqjnBiMWIw=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:40.999804+00 2025-12-09 10:15:40.999811+00 17552 FX0003-175#RC23 SPMX-20240815312771 \N \N \N 1 \N [{"file_id": "a58bfb62-14ae-43a6-9826-69efa7b20217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee3c7e0ae495445a9fd6e84c9b96b745.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee3c7e0ae495445a9fd6e84c9b96b745.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee3c7e0ae495445a9fd6e84c9b96b745.jpg", "file_size": 45585, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-175#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3c7e0ae495445a9fd6e84c9b96b745.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3c7e0ae495445a9fd6e84c9b96b745.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee3c7e0ae495445a9fd6e84c9b96b745.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee3c7e0ae495445a9fd6e84c9b96b745.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee3c7e0ae495445a9fd6e84c9b96b745.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fYZoF9TN2ae64tDpF5C0LOeTXk=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.002605+00 2025-12-09 10:15:41.002611+00 17553 JTSS818FW#VS-D3 SPMX-20240815312781 \N \N \N 1 \N [{"file_id": "3ceced76-8e7b-4b25-a192-f7e1cb3a5c46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "828744452efe4806b568b69ec3c0db7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "828744452efe4806b568b69ec3c0db7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "828744452efe4806b568b69ec3c0db7a.jpg", "file_size": 9672, "is_delete": false, "file_type": 1, "original_file_name": "JTSS818FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828744452efe4806b568b69ec3c0db7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828744452efe4806b568b69ec3c0db7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828744452efe4806b568b69ec3c0db7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/828744452efe4806b568b69ec3c0db7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/828744452efe4806b568b69ec3c0db7a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmV_65Xn8A7LtIBYQq4d2gUL6yw=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.005523+00 2025-12-09 10:15:41.005529+00 17554 LZ1373#上身4号色 SPMX-20240815312775 \N \N \N 1 \N [{"file_id": "f4a78829-2409-4bda-afed-c1457140853f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "903e04c318774d6893cc505aa001f878.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "903e04c318774d6893cc505aa001f878.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "903e04c318774d6893cc505aa001f878.jpg", "file_size": 18998, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903e04c318774d6893cc505aa001f878.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903e04c318774d6893cc505aa001f878.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/903e04c318774d6893cc505aa001f878.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/903e04c318774d6893cc505aa001f878.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/903e04c318774d6893cc505aa001f878.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3ULAlqMFD6rE-Lllvb9fE-r0pE=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.008433+00 2025-12-09 10:15:41.008439+00 17555 8563#复合30D天丝-下摆+门襟+领子 SPMX-20240815312780 \N \N \N 1 \N [{"file_id": "7e2b0e23-3db7-467e-8ecd-02f1f0d105b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0840340c7a94d95855b6d9dca6f364d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0840340c7a94d95855b6d9dca6f364d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0840340c7a94d95855b6d9dca6f364d.jpg", "file_size": 15856, "is_delete": false, "file_type": 1, "original_file_name": "8563#复合30D天丝-下摆+门襟+领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0840340c7a94d95855b6d9dca6f364d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0840340c7a94d95855b6d9dca6f364d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0840340c7a94d95855b6d9dca6f364d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0840340c7a94d95855b6d9dca6f364d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0840340c7a94d95855b6d9dca6f364d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rproVEn2iXQA46_scTEVy_uROl8=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.011284+00 2025-12-09 10:15:41.01129+00 17556 FX0003-176#RC23 SPMX-20240815312782 \N \N \N 1 \N [{"file_id": "e0a9e491-4af4-48dd-809f-3aae007e834d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "697b0b6d52524ef480d571fbe39c0ded.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "697b0b6d52524ef480d571fbe39c0ded.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "697b0b6d52524ef480d571fbe39c0ded.jpg", "file_size": 59047, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-176#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697b0b6d52524ef480d571fbe39c0ded.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697b0b6d52524ef480d571fbe39c0ded.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697b0b6d52524ef480d571fbe39c0ded.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/697b0b6d52524ef480d571fbe39c0ded.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/697b0b6d52524ef480d571fbe39c0ded.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tOxWTSzCdpxr8bxXhMQXg9wNM3U=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.014074+00 2025-12-09 10:15:41.01408+00 17557 LJH1895#桔色 SPMX-20240815312776 \N \N \N 1 \N [{"file_id": "4270319c-4da1-46e7-8660-2ce4b22e2a5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "251f0a07ad714259a37e283e65e0faf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "251f0a07ad714259a37e283e65e0faf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "251f0a07ad714259a37e283e65e0faf6.jpg", "file_size": 70441, "is_delete": false, "file_type": 1, "original_file_name": "LJH1895#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/251f0a07ad714259a37e283e65e0faf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/251f0a07ad714259a37e283e65e0faf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/251f0a07ad714259a37e283e65e0faf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/251f0a07ad714259a37e283e65e0faf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/251f0a07ad714259a37e283e65e0faf6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-QLNuvLef7yBP4KAI40vsf3v42s=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.016891+00 2025-12-09 10:15:41.016898+00 17558 CCH0555-9#黄色乱花 SPMX-20240815312777 \N \N \N 1 \N [{"file_id": "77e4c0bf-2890-461c-a8bc-f06b7d9442a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0497e1c248f47ec91b298afe39ae8a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0497e1c248f47ec91b298afe39ae8a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0497e1c248f47ec91b298afe39ae8a8.jpg", "file_size": 16606, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#黄色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0497e1c248f47ec91b298afe39ae8a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0497e1c248f47ec91b298afe39ae8a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0497e1c248f47ec91b298afe39ae8a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0497e1c248f47ec91b298afe39ae8a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0497e1c248f47ec91b298afe39ae8a8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zVIfKWY2GNZfIPjVu18GAmnrpQ=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.019809+00 2025-12-09 10:15:41.019815+00 17559 231483#-005-4 SPMX-20240815312779 \N \N \N 1 \N [{"file_id": "b68bb6f8-284c-452c-af2b-e106acfb6598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4453132753fc49739ecbda260b2afb0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4453132753fc49739ecbda260b2afb0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4453132753fc49739ecbda260b2afb0a.jpg", "file_size": 83962, "is_delete": false, "file_type": 1, "original_file_name": "231483#-005-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4453132753fc49739ecbda260b2afb0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4453132753fc49739ecbda260b2afb0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4453132753fc49739ecbda260b2afb0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4453132753fc49739ecbda260b2afb0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4453132753fc49739ecbda260b2afb0a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOEAKaJC6YvbM4ZeXgr3pU7QR1Y=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.022718+00 2025-12-09 10:15:41.022724+00 17560 HX9006#粉色芦苇花 SPMX-20240815312774 \N \N \N 1 \N [{"file_id": "84021e5a-e4b4-4a68-9eef-9c9acd28cfe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "488c1e2722c04ee18bceb4b6ae23ea4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "488c1e2722c04ee18bceb4b6ae23ea4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "488c1e2722c04ee18bceb4b6ae23ea4b.jpg", "file_size": 15961, "is_delete": false, "file_type": 1, "original_file_name": "HX9006#粉色芦苇花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488c1e2722c04ee18bceb4b6ae23ea4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488c1e2722c04ee18bceb4b6ae23ea4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/488c1e2722c04ee18bceb4b6ae23ea4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/488c1e2722c04ee18bceb4b6ae23ea4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/488c1e2722c04ee18bceb4b6ae23ea4b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADafrFSxt4jaNNgxmERsoTkFj-M=", "createTime": "2024-08-15 15:02:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.025514+00 2025-12-09 10:15:41.02552+00 17561 1231-22FWF#中童14码 SPMX-20240815312778 \N \N \N 1 \N [{"file_id": "0c820ce5-ee1b-41f5-8300-5063fed377fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "218a8945318c4b7592b21217af6c96e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "218a8945318c4b7592b21217af6c96e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "218a8945318c4b7592b21217af6c96e0.jpg", "file_size": 17161, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a8945318c4b7592b21217af6c96e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a8945318c4b7592b21217af6c96e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a8945318c4b7592b21217af6c96e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/218a8945318c4b7592b21217af6c96e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/218a8945318c4b7592b21217af6c96e0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQn-V67-zlSLXyck-vV6YtUk000=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.028335+00 2025-12-09 10:15:41.028341+00 17562 DL31761#下摆批布玫红 SPMX-20240815312784 \N \N \N 1 \N [{"file_id": "868036b3-5044-4083-b2da-11b3f61eca30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a86b85af51ce49c9905d9352edc243c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a86b85af51ce49c9905d9352edc243c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a86b85af51ce49c9905d9352edc243c4.jpg", "file_size": 74936, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b85af51ce49c9905d9352edc243c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b85af51ce49c9905d9352edc243c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b85af51ce49c9905d9352edc243c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a86b85af51ce49c9905d9352edc243c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a86b85af51ce49c9905d9352edc243c4.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eKvp9nOX-G6GVXyy8fKcaph8rU=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.031105+00 2025-12-09 10:15:41.03111+00 17563 CCH0555-9#黄色袖子 SPMX-20240815312787 \N \N \N 1 \N [{"file_id": "bb001a65-09ad-4973-acf6-835106bc233a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6252490236e948a0baeca108567aabcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6252490236e948a0baeca108567aabcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6252490236e948a0baeca108567aabcb.jpg", "file_size": 12309, "is_delete": false, "file_type": 1, "original_file_name": "CCH0555-9#黄色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252490236e948a0baeca108567aabcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252490236e948a0baeca108567aabcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6252490236e948a0baeca108567aabcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6252490236e948a0baeca108567aabcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6252490236e948a0baeca108567aabcb.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wj2550QSX_T_zxWXcjGISGJgqI=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.033956+00 2025-12-09 10:15:41.033963+00 17564 1231-22FWF#中童袖领匹布 SPMX-20240815312789 \N \N \N 1 \N [{"file_id": "0ce6fb83-20cc-4cc4-9957-0a84ed0c0a69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc26b79183754e8c9af779697515ef68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc26b79183754e8c9af779697515ef68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc26b79183754e8c9af779697515ef68.jpg", "file_size": 11147, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc26b79183754e8c9af779697515ef68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc26b79183754e8c9af779697515ef68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc26b79183754e8c9af779697515ef68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc26b79183754e8c9af779697515ef68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc26b79183754e8c9af779697515ef68.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DRLZHNXaRkEJaIcrvV-6eucs40=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.036781+00 2025-12-09 10:15:41.036787+00 17565 HX9006#蓝色芦苇花 SPMX-20240815312785 \N \N \N 1 \N [{"file_id": "c211a7bd-5fd9-404c-8941-6862abe9ca8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c291cf1a909489daf5b4622be0b6082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c291cf1a909489daf5b4622be0b6082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c291cf1a909489daf5b4622be0b6082.jpg", "file_size": 15618, "is_delete": false, "file_type": 1, "original_file_name": "HX9006#蓝色芦苇花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c291cf1a909489daf5b4622be0b6082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c291cf1a909489daf5b4622be0b6082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c291cf1a909489daf5b4622be0b6082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c291cf1a909489daf5b4622be0b6082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c291cf1a909489daf5b4622be0b6082.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfBATDfQlq3NBw4c99cXR0OR6vo=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.0396+00 2025-12-09 10:15:41.039606+00 17566 LZ1373#上身5号色 SPMX-20240815312786 \N \N \N 1 \N [{"file_id": "8a491736-a75e-4973-ab00-937c78dbb595", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08f7cbb6d3b5461fbd12ee9a0c77305e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08f7cbb6d3b5461fbd12ee9a0c77305e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08f7cbb6d3b5461fbd12ee9a0c77305e.jpg", "file_size": 17461, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f7cbb6d3b5461fbd12ee9a0c77305e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f7cbb6d3b5461fbd12ee9a0c77305e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08f7cbb6d3b5461fbd12ee9a0c77305e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08f7cbb6d3b5461fbd12ee9a0c77305e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08f7cbb6d3b5461fbd12ee9a0c77305e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPXGTsFzAczKTX7mFKsP7b5qAUk=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.042513+00 2025-12-09 10:15:41.04252+00 17567 0008-19FWF#蓝色 SPMX-20240815312783 \N \N \N 1 \N [{"file_id": "ee2c9d73-6dae-43c1-967b-02760af52d19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b422f66f9e2544639048cb64585fbbb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b422f66f9e2544639048cb64585fbbb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b422f66f9e2544639048cb64585fbbb3.jpg", "file_size": 14257, "is_delete": false, "file_type": 1, "original_file_name": "0008-19FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b422f66f9e2544639048cb64585fbbb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b422f66f9e2544639048cb64585fbbb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b422f66f9e2544639048cb64585fbbb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b422f66f9e2544639048cb64585fbbb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b422f66f9e2544639048cb64585fbbb3.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n3--hIlUpY6-fVVx10CzQjTxkL8=", "createTime": "2024-08-15 15:02:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.045384+00 2025-12-09 10:15:41.04539+00 17568 LJH1895#梅红 SPMX-20240815312788 \N \N \N 1 \N [{"file_id": "afb001f6-e1ce-4f31-94cf-893ebf8486b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd07f5fece854c3d9ad73f8bc08840d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd07f5fece854c3d9ad73f8bc08840d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd07f5fece854c3d9ad73f8bc08840d6.jpg", "file_size": 67880, "is_delete": false, "file_type": 1, "original_file_name": "LJH1895#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd07f5fece854c3d9ad73f8bc08840d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd07f5fece854c3d9ad73f8bc08840d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd07f5fece854c3d9ad73f8bc08840d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd07f5fece854c3d9ad73f8bc08840d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd07f5fece854c3d9ad73f8bc08840d6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wag-Dqitkz85sGjUC2tTWYe3VQw=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.048304+00 2025-12-09 10:15:41.048311+00 17569 DL31761#下摆批布蓝绿 SPMX-20240815312796 \N \N \N 1 \N [{"file_id": "533b92e1-309c-4a20-a7b0-02eefe5f13ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa2598f5258d45ae978116fc19e0059c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa2598f5258d45ae978116fc19e0059c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa2598f5258d45ae978116fc19e0059c.jpg", "file_size": 75554, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2598f5258d45ae978116fc19e0059c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2598f5258d45ae978116fc19e0059c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2598f5258d45ae978116fc19e0059c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa2598f5258d45ae978116fc19e0059c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa2598f5258d45ae978116fc19e0059c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5twWm6RJ-BeY_Z0yHIYUCaVWI4=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.05117+00 2025-12-09 10:15:41.051176+00 17570 231483#-006-1-混码 SPMX-20240815312790 \N \N \N 1 \N [{"file_id": "6e734ee5-b186-4565-b956-37a3b49840e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "031b2d48ebce4fea9ed081577defd6ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "031b2d48ebce4fea9ed081577defd6ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "031b2d48ebce4fea9ed081577defd6ad.jpg", "file_size": 30328, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031b2d48ebce4fea9ed081577defd6ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031b2d48ebce4fea9ed081577defd6ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/031b2d48ebce4fea9ed081577defd6ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/031b2d48ebce4fea9ed081577defd6ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/031b2d48ebce4fea9ed081577defd6ad.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m8_3Ld0DwE1LERl0gEhFwzIjNHU=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.05417+00 2025-12-09 10:15:41.054177+00 17571 0008-1FWE#粉色 SPMX-20240815312795 \N \N \N 1 \N [{"file_id": "1aef7431-e348-4004-92ae-15502688cd96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6de1fc70f39d47d0856835ec771e6afd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6de1fc70f39d47d0856835ec771e6afd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6de1fc70f39d47d0856835ec771e6afd.jpg", "file_size": 26101, "is_delete": false, "file_type": 1, "original_file_name": "0008-1FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de1fc70f39d47d0856835ec771e6afd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de1fc70f39d47d0856835ec771e6afd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6de1fc70f39d47d0856835ec771e6afd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6de1fc70f39d47d0856835ec771e6afd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6de1fc70f39d47d0856835ec771e6afd.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzNngPVw26ki0UIVbpH6MfD24ok=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.057339+00 2025-12-09 10:15:41.057345+00 17572 HX9007#深宝蓝白花石 SPMX-20240815312794 \N \N \N 1 \N [{"file_id": "c950bc05-286a-46e2-867d-b0d284eb02d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5429dd8e37b24928b1a6a73856e99b11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5429dd8e37b24928b1a6a73856e99b11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5429dd8e37b24928b1a6a73856e99b11.jpg", "file_size": 21739, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#深宝蓝白花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5429dd8e37b24928b1a6a73856e99b11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5429dd8e37b24928b1a6a73856e99b11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5429dd8e37b24928b1a6a73856e99b11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5429dd8e37b24928b1a6a73856e99b11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5429dd8e37b24928b1a6a73856e99b11.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEZXrhnAsW7Nn0CelogH3QRdZFY=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.060309+00 2025-12-09 10:15:41.060315+00 17573 8563#腰带 SPMX-20240815312792 \N \N \N 1 \N [{"file_id": "1045bc7e-a08e-4a6b-8c68-199d26e17667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e11b70fa49b54dc7ad7b8a78d155de9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e11b70fa49b54dc7ad7b8a78d155de9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e11b70fa49b54dc7ad7b8a78d155de9b.jpg", "file_size": 21113, "is_delete": false, "file_type": 1, "original_file_name": "8563#腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b70fa49b54dc7ad7b8a78d155de9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b70fa49b54dc7ad7b8a78d155de9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11b70fa49b54dc7ad7b8a78d155de9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e11b70fa49b54dc7ad7b8a78d155de9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e11b70fa49b54dc7ad7b8a78d155de9b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKPcPHVzdb8vUkAS1t6FuGn0x3Q=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.063143+00 2025-12-09 10:15:41.063149+00 17574 FX0003-177#RC23 SPMX-20240815312793 \N \N \N 1 \N [{"file_id": "81f47e3a-5ed9-4d4a-8a6e-57bacc41eb95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c192a3afb3c8453b93e929047dce8f2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c192a3afb3c8453b93e929047dce8f2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c192a3afb3c8453b93e929047dce8f2e.jpg", "file_size": 53522, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-177#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c192a3afb3c8453b93e929047dce8f2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c192a3afb3c8453b93e929047dce8f2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c192a3afb3c8453b93e929047dce8f2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c192a3afb3c8453b93e929047dce8f2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c192a3afb3c8453b93e929047dce8f2e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jAnCRSKKcB9ctDl4mET0eM9R_M=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.065916+00 2025-12-09 10:15:41.065926+00 17575 JTSS819FW#VS-D3 SPMX-20240815312791 \N \N \N 1 \N [{"file_id": "c2e17fa9-8a42-4550-8437-831964958d5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1fe183df0084e1688ac395e4797462b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1fe183df0084e1688ac395e4797462b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1fe183df0084e1688ac395e4797462b.jpg", "file_size": 12952, "is_delete": false, "file_type": 1, "original_file_name": "JTSS819FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1fe183df0084e1688ac395e4797462b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1fe183df0084e1688ac395e4797462b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1fe183df0084e1688ac395e4797462b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1fe183df0084e1688ac395e4797462b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1fe183df0084e1688ac395e4797462b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rE3dzFFlosLSW9mjAGvsZ3h3kTc=", "createTime": "2024-08-15 15:02:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.068765+00 2025-12-09 10:15:41.068772+00 17576 LJH1895#绿色 SPMX-20240815312798 \N \N \N 1 \N [{"file_id": "1b2df53e-12bb-4612-8a43-ae3517257ac1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0eb5e0017d7425d850314ca99c38721.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0eb5e0017d7425d850314ca99c38721.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0eb5e0017d7425d850314ca99c38721.jpg", "file_size": 70599, "is_delete": false, "file_type": 1, "original_file_name": "LJH1895#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0eb5e0017d7425d850314ca99c38721.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0eb5e0017d7425d850314ca99c38721.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0eb5e0017d7425d850314ca99c38721.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0eb5e0017d7425d850314ca99c38721.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0eb5e0017d7425d850314ca99c38721.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7RSJkohlxRB5Cc-p8LnmMmZ4h8=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.071637+00 2025-12-09 10:15:41.071643+00 17577 8563#袖口L码 SPMX-20240815312802 \N \N \N 1 \N [{"file_id": "b09b6b49-446f-4249-901d-3d2330abd1c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b583d76b45564022bf2a0ba47b1cdeff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b583d76b45564022bf2a0ba47b1cdeff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b583d76b45564022bf2a0ba47b1cdeff.jpg", "file_size": 10945, "is_delete": false, "file_type": 1, "original_file_name": "8563#袖口L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583d76b45564022bf2a0ba47b1cdeff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583d76b45564022bf2a0ba47b1cdeff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583d76b45564022bf2a0ba47b1cdeff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b583d76b45564022bf2a0ba47b1cdeff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b583d76b45564022bf2a0ba47b1cdeff.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6lAvRTndKXwPAJgjnoHfoNOF6I=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.07482+00 2025-12-09 10:15:41.074827+00 17578 HX9007#深宝蓝百花石 SPMX-20240815312803 \N \N \N 1 \N [{"file_id": "d4e24660-eb75-4310-b205-1ec389447841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1feba2d7de5141d0838a1f84b1c7428c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1feba2d7de5141d0838a1f84b1c7428c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1feba2d7de5141d0838a1f84b1c7428c.jpg", "file_size": 21962, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#深宝蓝百花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feba2d7de5141d0838a1f84b1c7428c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feba2d7de5141d0838a1f84b1c7428c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feba2d7de5141d0838a1f84b1c7428c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1feba2d7de5141d0838a1f84b1c7428c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1feba2d7de5141d0838a1f84b1c7428c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAthuHenb-GFv0LvJOCLLNc4hAg=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.078007+00 2025-12-09 10:15:41.078013+00 17579 CCH0556-4#姜黄渐变 SPMX-20240815312799 \N \N \N 1 \N [{"file_id": "0ddd975a-9382-494b-9d6f-fe5527baf2da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "babfa7af08d44e0ea88f378a5cf0f070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "babfa7af08d44e0ea88f378a5cf0f070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "babfa7af08d44e0ea88f378a5cf0f070.jpg", "file_size": 9972, "is_delete": false, "file_type": 1, "original_file_name": "CCH0556-4#姜黄渐变.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babfa7af08d44e0ea88f378a5cf0f070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babfa7af08d44e0ea88f378a5cf0f070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/babfa7af08d44e0ea88f378a5cf0f070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/babfa7af08d44e0ea88f378a5cf0f070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/babfa7af08d44e0ea88f378a5cf0f070.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjhqNLXuFzy8J4Y-iyyUPZHn3OU=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.081023+00 2025-12-09 10:15:41.081028+00 17580 1231-22FWF#小童6码 SPMX-20240815312800 \N \N \N 1 \N [{"file_id": "6750246d-595a-4876-beb2-687150634180", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84950d638fd4c83ab27b061f30847b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84950d638fd4c83ab27b061f30847b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84950d638fd4c83ab27b061f30847b8.jpg", "file_size": 19597, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84950d638fd4c83ab27b061f30847b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84950d638fd4c83ab27b061f30847b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84950d638fd4c83ab27b061f30847b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84950d638fd4c83ab27b061f30847b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84950d638fd4c83ab27b061f30847b8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tPZfrLjG6-s6eUBK4lFb5k_WDhM=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.083648+00 2025-12-09 10:15:41.083653+00 17581 JTSS820FW#VS-D3 SPMX-20240815312804 \N \N \N 1 \N [{"file_id": "e8bf30a9-0608-4f55-8241-0e152aaa8233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d16cda5015e4015a51c64ae99267424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d16cda5015e4015a51c64ae99267424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d16cda5015e4015a51c64ae99267424.jpg", "file_size": 9108, "is_delete": false, "file_type": 1, "original_file_name": "JTSS820FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16cda5015e4015a51c64ae99267424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16cda5015e4015a51c64ae99267424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d16cda5015e4015a51c64ae99267424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d16cda5015e4015a51c64ae99267424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d16cda5015e4015a51c64ae99267424.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:laxKeZ5KdIAclX9OXLLdeFY95JE=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.086404+00 2025-12-09 10:15:41.08641+00 17582 LZ1373#童装T1号色 SPMX-20240815312797 \N \N \N 1 \N [{"file_id": "0d9522bb-d0be-4c6f-b014-94a5f837ed91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7907bb34d60149fbaa99010c071292c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7907bb34d60149fbaa99010c071292c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7907bb34d60149fbaa99010c071292c1.jpg", "file_size": 22985, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7907bb34d60149fbaa99010c071292c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7907bb34d60149fbaa99010c071292c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7907bb34d60149fbaa99010c071292c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7907bb34d60149fbaa99010c071292c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7907bb34d60149fbaa99010c071292c1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-W2KSNnY_G7GqxDj_Vj26JckU4=", "createTime": "2024-08-15 15:02:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.089228+00 2025-12-09 10:15:41.089234+00 17583 0008-1FWE#黄色 SPMX-20240815312806 \N \N \N 1 \N [{"file_id": "1a3d5ba8-0078-413c-81bd-5ba9b9862a45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25b03c59a2e24271b028515af4ddee4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25b03c59a2e24271b028515af4ddee4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25b03c59a2e24271b028515af4ddee4e.jpg", "file_size": 29118, "is_delete": false, "file_type": 1, "original_file_name": "0008-1FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b03c59a2e24271b028515af4ddee4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b03c59a2e24271b028515af4ddee4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b03c59a2e24271b028515af4ddee4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25b03c59a2e24271b028515af4ddee4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25b03c59a2e24271b028515af4ddee4e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P2jfaVV02ebt6mQIkil7fw0Y_98=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.092089+00 2025-12-09 10:15:41.092095+00 17584 231483#-006-1 SPMX-20240815312801 \N \N \N 1 \N [{"file_id": "3a9c7b94-1a74-4025-bd42-031e9d7e7054", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d01b2e49870748678abe74dd2d446a53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d01b2e49870748678abe74dd2d446a53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d01b2e49870748678abe74dd2d446a53.jpg", "file_size": 76057, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b2e49870748678abe74dd2d446a53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b2e49870748678abe74dd2d446a53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b2e49870748678abe74dd2d446a53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d01b2e49870748678abe74dd2d446a53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d01b2e49870748678abe74dd2d446a53.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dt7y4Py_Tm_uOWYYJnllm8Nw6_o=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.094849+00 2025-12-09 10:15:41.094855+00 17585 FX0003-178#RC23 SPMX-20240815312805 \N \N \N 1 \N [{"file_id": "293ead25-afe2-4e51-ba2f-b82941f1de36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f28649eb67024e399ed5eb5036e6c6e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f28649eb67024e399ed5eb5036e6c6e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f28649eb67024e399ed5eb5036e6c6e7.jpg", "file_size": 52368, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-178#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28649eb67024e399ed5eb5036e6c6e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28649eb67024e399ed5eb5036e6c6e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f28649eb67024e399ed5eb5036e6c6e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f28649eb67024e399ed5eb5036e6c6e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f28649eb67024e399ed5eb5036e6c6e7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J82vVUwGuER5dOHbp_iOPTVSzPo=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.097743+00 2025-12-09 10:15:41.097749+00 17586 8563#袖口M码 SPMX-20240815312812 \N \N \N 1 \N [{"file_id": "c6f9fd54-9e4a-4686-804d-6150d9252f15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95a5371709f74fde9bed70fc200e6d6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95a5371709f74fde9bed70fc200e6d6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95a5371709f74fde9bed70fc200e6d6f.jpg", "file_size": 10833, "is_delete": false, "file_type": 1, "original_file_name": "8563#袖口M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a5371709f74fde9bed70fc200e6d6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a5371709f74fde9bed70fc200e6d6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a5371709f74fde9bed70fc200e6d6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95a5371709f74fde9bed70fc200e6d6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95a5371709f74fde9bed70fc200e6d6f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YV94pC2WEvTsVbYLEXodPhHmlU=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.100591+00 2025-12-09 10:15:41.100598+00 17587 LZ1373#童装T2号色 SPMX-20240815312808 \N \N \N 1 \N [{"file_id": "55185cfc-b76a-4876-aa53-9ce987143604", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ba6527dfa9e4bb0ab074f555f6607e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ba6527dfa9e4bb0ab074f555f6607e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ba6527dfa9e4bb0ab074f555f6607e7.jpg", "file_size": 19507, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba6527dfa9e4bb0ab074f555f6607e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba6527dfa9e4bb0ab074f555f6607e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ba6527dfa9e4bb0ab074f555f6607e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ba6527dfa9e4bb0ab074f555f6607e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ba6527dfa9e4bb0ab074f555f6607e7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKIGTLyRoQ6HWYkuPbT_1RsHHoY=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.10342+00 2025-12-09 10:15:41.103426+00 17588 231483#-006-2-混码 SPMX-20240815312811 \N \N \N 1 \N [{"file_id": "d18c4131-bfd0-4e95-a87b-67b43837d015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08996f0cf5724dadb09ee6e3ac3802e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08996f0cf5724dadb09ee6e3ac3802e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08996f0cf5724dadb09ee6e3ac3802e5.jpg", "file_size": 30270, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08996f0cf5724dadb09ee6e3ac3802e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08996f0cf5724dadb09ee6e3ac3802e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08996f0cf5724dadb09ee6e3ac3802e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08996f0cf5724dadb09ee6e3ac3802e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08996f0cf5724dadb09ee6e3ac3802e5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etBbGTZHRROn0nGmK6v2_7Drxa8=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.106227+00 2025-12-09 10:15:41.106234+00 17589 LJH1898#彩兰 SPMX-20240815312809 \N \N \N 1 \N [{"file_id": "2d65ff72-7a6e-4fd3-bcb2-8bd9d04176db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cd723dc7f6e41b1961d255dc3ca51bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cd723dc7f6e41b1961d255dc3ca51bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cd723dc7f6e41b1961d255dc3ca51bc.jpg", "file_size": 50072, "is_delete": false, "file_type": 1, "original_file_name": "LJH1898#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd723dc7f6e41b1961d255dc3ca51bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd723dc7f6e41b1961d255dc3ca51bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cd723dc7f6e41b1961d255dc3ca51bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cd723dc7f6e41b1961d255dc3ca51bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cd723dc7f6e41b1961d255dc3ca51bc.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dnAijX0RFlfBgLaqqRkkrRX8948=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.109128+00 2025-12-09 10:15:41.109139+00 17590 DL31761#下摆批布黄色 SPMX-20240815312813 \N \N \N 1 \N [{"file_id": "6717beac-109d-4b98-bc2d-6d8e521fd834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e485e1d82c444e62861d29cac880bafa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e485e1d82c444e62861d29cac880bafa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e485e1d82c444e62861d29cac880bafa.jpg", "file_size": 76749, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#下摆批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e485e1d82c444e62861d29cac880bafa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e485e1d82c444e62861d29cac880bafa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e485e1d82c444e62861d29cac880bafa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e485e1d82c444e62861d29cac880bafa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e485e1d82c444e62861d29cac880bafa.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OIvk8vMJnfqW7KeNq-odp0bhiyE=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.112064+00 2025-12-09 10:15:41.112071+00 17591 CCH0556-4#玫红渐变 SPMX-20240815312807 \N \N \N 1 \N [{"file_id": "c8e3baf6-1e47-4621-8ef7-396519698fc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e66208c973784531b4ed602d77c1bb85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e66208c973784531b4ed602d77c1bb85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e66208c973784531b4ed602d77c1bb85.jpg", "file_size": 10670, "is_delete": false, "file_type": 1, "original_file_name": "CCH0556-4#玫红渐变.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66208c973784531b4ed602d77c1bb85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66208c973784531b4ed602d77c1bb85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e66208c973784531b4ed602d77c1bb85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e66208c973784531b4ed602d77c1bb85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e66208c973784531b4ed602d77c1bb85.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ql_mQ80MUADMmPoHnZ05-AuE1g=", "createTime": "2024-08-15 15:02:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.114828+00 2025-12-09 10:15:41.114835+00 17592 1231-22FWF#小童8码+4码 SPMX-20240815312810 \N \N \N 1 \N [{"file_id": "4a958825-6ddf-4b28-858c-19f9bae67366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "198841289e1e4df5894187675e387953.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "198841289e1e4df5894187675e387953.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "198841289e1e4df5894187675e387953.jpg", "file_size": 20757, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198841289e1e4df5894187675e387953.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198841289e1e4df5894187675e387953.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/198841289e1e4df5894187675e387953.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/198841289e1e4df5894187675e387953.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/198841289e1e4df5894187675e387953.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:feydUlTE5mSaKXGsXuqwH1ADWtk=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.117773+00 2025-12-09 10:15:41.117781+00 17593 LJH1898#枣红 SPMX-20240815312820 \N \N \N 1 \N [{"file_id": "8fc74944-2394-403e-a10e-a39c1313600d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9beedbd8592c4b49ba7b2e1a73444756.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9beedbd8592c4b49ba7b2e1a73444756.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9beedbd8592c4b49ba7b2e1a73444756.jpg", "file_size": 51501, "is_delete": false, "file_type": 1, "original_file_name": "LJH1898#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9beedbd8592c4b49ba7b2e1a73444756.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9beedbd8592c4b49ba7b2e1a73444756.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9beedbd8592c4b49ba7b2e1a73444756.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9beedbd8592c4b49ba7b2e1a73444756.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9beedbd8592c4b49ba7b2e1a73444756.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ooJmZA_q0n0yXnw8ehAl1AS4rLY=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.12076+00 2025-12-09 10:15:41.120767+00 17594 DL31761#前幅大红 SPMX-20240815312824 \N \N \N 1 \N [{"file_id": "aa0fb3d3-7222-4564-bc8b-e2a324723f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a63041ae89e8453fb7bb64527eb549b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a63041ae89e8453fb7bb64527eb549b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a63041ae89e8453fb7bb64527eb549b6.jpg", "file_size": 48097, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63041ae89e8453fb7bb64527eb549b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63041ae89e8453fb7bb64527eb549b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a63041ae89e8453fb7bb64527eb549b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a63041ae89e8453fb7bb64527eb549b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a63041ae89e8453fb7bb64527eb549b6.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yN-9JtsGoPA9J2GU6IBSn3-kWAs=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.123807+00 2025-12-09 10:15:41.123814+00 17595 8563#袖口S码 SPMX-20240815312822 \N \N \N 1 \N [{"file_id": "261931df-ca22-4734-8e59-f2ce3255aeeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44f6c4c179b84e47b07146ce43350369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44f6c4c179b84e47b07146ce43350369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44f6c4c179b84e47b07146ce43350369.jpg", "file_size": 10555, "is_delete": false, "file_type": 1, "original_file_name": "8563#袖口S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f6c4c179b84e47b07146ce43350369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f6c4c179b84e47b07146ce43350369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f6c4c179b84e47b07146ce43350369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44f6c4c179b84e47b07146ce43350369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44f6c4c179b84e47b07146ce43350369.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WoHSyWtEQfueRwASssBKDcGYcgc=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.126635+00 2025-12-09 10:15:41.126641+00 17596 LZ1373#童装T4号色 SPMX-20240815312823 \N \N \N 1 \N [{"file_id": "4b0f3ab4-ee87-45d4-bf0d-b607fa5afde8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd1c159384fe4a8b8cf0f46ec1ac068e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd1c159384fe4a8b8cf0f46ec1ac068e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd1c159384fe4a8b8cf0f46ec1ac068e.jpg", "file_size": 22201, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1c159384fe4a8b8cf0f46ec1ac068e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1c159384fe4a8b8cf0f46ec1ac068e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1c159384fe4a8b8cf0f46ec1ac068e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd1c159384fe4a8b8cf0f46ec1ac068e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd1c159384fe4a8b8cf0f46ec1ac068e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lIYzHcSiIGcaUDvG4qCj-54RZ5M=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.129569+00 2025-12-09 10:15:41.129575+00 17597 JTSS821FW#VS-D3 SPMX-20240815312814 \N \N \N 1 \N [{"file_id": "3ba2c949-3b50-45ea-ae5f-af7a7a0709cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3626952c23d548eaa393ae4e65bd04bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3626952c23d548eaa393ae4e65bd04bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3626952c23d548eaa393ae4e65bd04bf.jpg", "file_size": 8666, "is_delete": false, "file_type": 1, "original_file_name": "JTSS821FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3626952c23d548eaa393ae4e65bd04bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3626952c23d548eaa393ae4e65bd04bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3626952c23d548eaa393ae4e65bd04bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3626952c23d548eaa393ae4e65bd04bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3626952c23d548eaa393ae4e65bd04bf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YbiFpWGZLKUygiIx1Vgkj-t-c8w=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.135214+00 2025-12-09 10:15:41.13522+00 17599 231483#-006-2 SPMX-20240815312821 \N \N \N 1 \N [{"file_id": "c443d1b6-17c3-4d4b-be74-f014149817d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08199f0d95654e4bae926488830ef12f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08199f0d95654e4bae926488830ef12f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08199f0d95654e4bae926488830ef12f.jpg", "file_size": 80414, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08199f0d95654e4bae926488830ef12f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08199f0d95654e4bae926488830ef12f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08199f0d95654e4bae926488830ef12f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08199f0d95654e4bae926488830ef12f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08199f0d95654e4bae926488830ef12f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKwzCTRwX6yp5jr1KbBZaEC-pac=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.137967+00 2025-12-09 10:15:41.137973+00 17600 CCH0556-4#紫色渐变 SPMX-20240815312817 \N \N \N 1 \N [{"file_id": "a7d38c57-000b-4949-8fd1-8c19871f4635", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3832a05cdf0492f87962ef457b1039a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3832a05cdf0492f87962ef457b1039a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3832a05cdf0492f87962ef457b1039a.jpg", "file_size": 10002, "is_delete": false, "file_type": 1, "original_file_name": "CCH0556-4#紫色渐变.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3832a05cdf0492f87962ef457b1039a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3832a05cdf0492f87962ef457b1039a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3832a05cdf0492f87962ef457b1039a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3832a05cdf0492f87962ef457b1039a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3832a05cdf0492f87962ef457b1039a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5XKA2dVHD_JqV-qhn-fCj2Tc9M=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.140737+00 2025-12-09 10:15:41.140744+00 17601 HX9007#灰色百花石 SPMX-20240815312815 \N \N \N 1 \N [{"file_id": "e5cd6040-7577-464d-b8db-521158d4237b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30fca48672c74552a08de0b6930dfb6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30fca48672c74552a08de0b6930dfb6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30fca48672c74552a08de0b6930dfb6c.jpg", "file_size": 19130, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#灰色百花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fca48672c74552a08de0b6930dfb6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fca48672c74552a08de0b6930dfb6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30fca48672c74552a08de0b6930dfb6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30fca48672c74552a08de0b6930dfb6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30fca48672c74552a08de0b6930dfb6c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trSz4EQ-ErXWrelmkrjHETX_Uuo=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.143526+00 2025-12-09 10:15:41.143533+00 17602 0008-1FWF#白色 SPMX-20240815312816 \N \N \N 1 \N [{"file_id": "47a1b168-a25d-48e6-b12d-a2ef1d2447bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg", "file_size": 16286, "is_delete": false, "file_type": 1, "original_file_name": "0008-1FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b14a56e3e1aa4a61bfe1a3c15ef420d0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbeXbQL4zn8J61tUuwyf2N-QZ-0=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.132371+00 2025-12-09 10:15:41.132377+00 17598 LZ1373#童装T3号色 SPMX-20240815312819 \N \N \N 1 \N [{"file_id": "3dcd1b48-5f04-4b59-a7ae-05c8e129f197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9d94c20aa354ce08c2735fadc881f25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9d94c20aa354ce08c2735fadc881f25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9d94c20aa354ce08c2735fadc881f25.jpg", "file_size": 22908, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d94c20aa354ce08c2735fadc881f25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d94c20aa354ce08c2735fadc881f25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9d94c20aa354ce08c2735fadc881f25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9d94c20aa354ce08c2735fadc881f25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9d94c20aa354ce08c2735fadc881f25.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rox3lH-FRRD9To-7JzR0gfYvBfs=", "createTime": "2024-08-15 15:02:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.14944+00 2025-12-09 10:15:41.149447+00 17603 HX9007#白色百花石 SPMX-20240815312826 \N \N \N 1 \N [{"file_id": "f8b24bff-0adb-4949-bbe6-85fcce635b7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec32c5579f184e7da5e0604561d09b73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec32c5579f184e7da5e0604561d09b73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec32c5579f184e7da5e0604561d09b73.jpg", "file_size": 20866, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#白色百花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec32c5579f184e7da5e0604561d09b73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec32c5579f184e7da5e0604561d09b73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec32c5579f184e7da5e0604561d09b73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec32c5579f184e7da5e0604561d09b73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec32c5579f184e7da5e0604561d09b73.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:56eAV4w_RMiOQfjNF5Mu8fCVXnA=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.152377+00 2025-12-09 10:15:41.152384+00 17604 8563#袖口XL码 SPMX-20240815312833 \N \N \N 1 \N [{"file_id": "657f5a12-59c4-4169-b256-daf0c5b85f1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3b72d567a0c479599425230d1f8ceb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3b72d567a0c479599425230d1f8ceb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3b72d567a0c479599425230d1f8ceb5.jpg", "file_size": 11036, "is_delete": false, "file_type": 1, "original_file_name": "8563#袖口XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b72d567a0c479599425230d1f8ceb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b72d567a0c479599425230d1f8ceb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b72d567a0c479599425230d1f8ceb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3b72d567a0c479599425230d1f8ceb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3b72d567a0c479599425230d1f8ceb5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BR6ypUqqTrtBjTkJKNy6SEQPPVo=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.155223+00 2025-12-09 10:15:41.155229+00 17605 0008-1FWF#粉色 SPMX-20240815312828 \N \N \N 1 \N [{"file_id": "a42e95a7-d011-4f90-9704-06c68b687ea5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee1df714986641f69379b159b60dde32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee1df714986641f69379b159b60dde32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee1df714986641f69379b159b60dde32.jpg", "file_size": 16408, "is_delete": false, "file_type": 1, "original_file_name": "0008-1FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1df714986641f69379b159b60dde32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1df714986641f69379b159b60dde32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1df714986641f69379b159b60dde32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee1df714986641f69379b159b60dde32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee1df714986641f69379b159b60dde32.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xc5DXUjZxMqmd-JwJy4Qg7MlL-A=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.158132+00 2025-12-09 10:15:41.158138+00 17606 CCH0556-4#黄渐变 SPMX-20240815312829 \N \N \N 1 \N [{"file_id": "c64cfd58-814d-4921-8296-90022d546f23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "314d331e125c451ebcec21145ceb0a6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "314d331e125c451ebcec21145ceb0a6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "314d331e125c451ebcec21145ceb0a6a.jpg", "file_size": 9773, "is_delete": false, "file_type": 1, "original_file_name": "CCH0556-4#黄渐变.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314d331e125c451ebcec21145ceb0a6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314d331e125c451ebcec21145ceb0a6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/314d331e125c451ebcec21145ceb0a6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/314d331e125c451ebcec21145ceb0a6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/314d331e125c451ebcec21145ceb0a6a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8PL2aQudI7XMGzP-cYDIYB9gQw4=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.160977+00 2025-12-09 10:15:41.160982+00 17607 231483#-006-3-混码 SPMX-20240815312832 \N \N \N 1 \N [{"file_id": "3e9804af-8075-42be-8106-79915f30ec5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2f6ece9f9d34409baf822315b881f47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2f6ece9f9d34409baf822315b881f47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2f6ece9f9d34409baf822315b881f47.jpg", "file_size": 31606, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f6ece9f9d34409baf822315b881f47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f6ece9f9d34409baf822315b881f47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2f6ece9f9d34409baf822315b881f47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2f6ece9f9d34409baf822315b881f47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2f6ece9f9d34409baf822315b881f47.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fVMpshFC10T5ZggdmkPseKZ0Zvk=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.164092+00 2025-12-09 10:15:41.164098+00 17608 JTSS822FW#VS-D3 SPMX-20240815312830 \N \N \N 1 \N [{"file_id": "a9b9686b-fbb5-4d18-b788-56babf160816", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bfc6286fbf84d3eb5f64ede30c40308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bfc6286fbf84d3eb5f64ede30c40308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bfc6286fbf84d3eb5f64ede30c40308.jpg", "file_size": 4739, "is_delete": false, "file_type": 1, "original_file_name": "JTSS822FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bfc6286fbf84d3eb5f64ede30c40308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bfc6286fbf84d3eb5f64ede30c40308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bfc6286fbf84d3eb5f64ede30c40308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bfc6286fbf84d3eb5f64ede30c40308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bfc6286fbf84d3eb5f64ede30c40308.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PM4-5ho0WW-icY26kW9qd05n6Ys=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.167195+00 2025-12-09 10:15:41.167205+00 17609 FX0003-18#红色改方向90度 SPMX-20240815312831 \N \N \N 1 \N [{"file_id": "bf2e873f-c084-4415-bc6f-4e41a26f074d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a731ea54b296401a9d151ac302d4b261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a731ea54b296401a9d151ac302d4b261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a731ea54b296401a9d151ac302d4b261.jpg", "file_size": 16381, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-18#红色改方向90度.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a731ea54b296401a9d151ac302d4b261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a731ea54b296401a9d151ac302d4b261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a731ea54b296401a9d151ac302d4b261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a731ea54b296401a9d151ac302d4b261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a731ea54b296401a9d151ac302d4b261.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3W8RvpS45ijahUD1bUcMFlh6ml8=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.17036+00 2025-12-09 10:15:41.170366+00 17610 LZ1373#童装T5号色 SPMX-20240815312834 \N \N \N 1 \N [{"file_id": "210281c9-9afe-4f97-ae55-21b70b401378", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg", "file_size": 20262, "is_delete": false, "file_type": 1, "original_file_name": "LZ1373#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca4b504e0fb24a8b9e30ef496fd2e6b8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eiEMeVnh9-JD0kL7HGQE6Rfp5aM=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.17343+00 2025-12-09 10:15:41.173436+00 17611 1231-22FWF#小童袖领匹布 SPMX-20240815312825 \N \N \N 1 \N [{"file_id": "ef05efb6-e4fb-4bc6-a179-6fe7856094ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf8a7e298b884db4afed6f503a2bbfb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf8a7e298b884db4afed6f503a2bbfb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf8a7e298b884db4afed6f503a2bbfb4.jpg", "file_size": 10955, "is_delete": false, "file_type": 1, "original_file_name": "1231-22FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8a7e298b884db4afed6f503a2bbfb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8a7e298b884db4afed6f503a2bbfb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf8a7e298b884db4afed6f503a2bbfb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf8a7e298b884db4afed6f503a2bbfb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf8a7e298b884db4afed6f503a2bbfb4.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I974I-c-7a1Cwvdvs_4aa9HaI_Y=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.17657+00 2025-12-09 10:15:41.176576+00 17612 LJH1898#白色 SPMX-20240815312827 \N \N \N 1 \N [{"file_id": "611c4697-a32f-446c-9cdc-938dc52c6031", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "748a4462bba14cd08b372e1836c70f1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "748a4462bba14cd08b372e1836c70f1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "748a4462bba14cd08b372e1836c70f1b.jpg", "file_size": 48470, "is_delete": false, "file_type": 1, "original_file_name": "LJH1898#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748a4462bba14cd08b372e1836c70f1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748a4462bba14cd08b372e1836c70f1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748a4462bba14cd08b372e1836c70f1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/748a4462bba14cd08b372e1836c70f1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/748a4462bba14cd08b372e1836c70f1b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dh0x9mErgJJwwSM-7qoGhdbFnQ=", "createTime": "2024-08-15 15:03:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.179658+00 2025-12-09 10:15:41.179664+00 17613 JTSS823FW#VS-D3 SPMX-20240815312839 \N \N \N 1 \N [{"file_id": "2b7268bc-87b6-459f-9367-41a7d45c8fd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a9a51b7537941f690610d377a7a31b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a9a51b7537941f690610d377a7a31b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a9a51b7537941f690610d377a7a31b5.jpg", "file_size": 10086, "is_delete": false, "file_type": 1, "original_file_name": "JTSS823FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9a51b7537941f690610d377a7a31b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9a51b7537941f690610d377a7a31b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9a51b7537941f690610d377a7a31b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a9a51b7537941f690610d377a7a31b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a9a51b7537941f690610d377a7a31b5.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fSd0_JWtfHFpXO-O8ahV68jwAbk=", "createTime": "2024-08-15 15:03:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.182816+00 2025-12-09 10:15:41.182822+00 17614 DL31761#前幅彩兰 SPMX-20240815312836 \N \N \N 1 \N [{"file_id": "1e0e424c-0713-4cac-9c61-8688a8f4fbb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c2c5054fb784620857c5b75ebb0870f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c2c5054fb784620857c5b75ebb0870f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c2c5054fb784620857c5b75ebb0870f.jpg", "file_size": 47754, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2c5054fb784620857c5b75ebb0870f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2c5054fb784620857c5b75ebb0870f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2c5054fb784620857c5b75ebb0870f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c2c5054fb784620857c5b75ebb0870f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c2c5054fb784620857c5b75ebb0870f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgOTCy4lf6tHC9i4LsJlWwfe5Qk=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.18896+00 2025-12-09 10:15:41.188967+00 17615 HX9007#粉色百花石 SPMX-20240815312838 \N \N \N 1 \N [{"file_id": "23856854-f21e-400d-939a-fae4e2dbc2fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "795096a3ab454127835ab408bb04a484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "795096a3ab454127835ab408bb04a484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "795096a3ab454127835ab408bb04a484.jpg", "file_size": 18824, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#粉色百花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795096a3ab454127835ab408bb04a484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795096a3ab454127835ab408bb04a484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/795096a3ab454127835ab408bb04a484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/795096a3ab454127835ab408bb04a484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/795096a3ab454127835ab408bb04a484.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uttl-blTXgXHv45BobVk-CNMJeA=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.191752+00 2025-12-09 10:15:41.191758+00 17616 1231-23FWE#VS-D3 SPMX-20240815312837 \N \N \N 1 \N [{"file_id": "d7f45ad9-5efc-44fe-9905-51cb1763be70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50337f510d574bd68b93e42526491a4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50337f510d574bd68b93e42526491a4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50337f510d574bd68b93e42526491a4e.jpg", "file_size": 15447, "is_delete": false, "file_type": 1, "original_file_name": "1231-23FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50337f510d574bd68b93e42526491a4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50337f510d574bd68b93e42526491a4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50337f510d574bd68b93e42526491a4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50337f510d574bd68b93e42526491a4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50337f510d574bd68b93e42526491a4e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H41p259iDywLqEv0p_ZK2NXTYm8=", "createTime": "2024-08-15 15:03:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.194616+00 2025-12-09 10:15:41.194621+00 17617 FX0003-18#黄色改方向90度 SPMX-20240815312840 \N \N \N 1 \N [{"file_id": "f5dafd16-e022-4b54-ba0e-f5d755fa02d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec7a40b88c2b45c098bd0b72d8bde81e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec7a40b88c2b45c098bd0b72d8bde81e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec7a40b88c2b45c098bd0b72d8bde81e.jpg", "file_size": 16083, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-18#黄色改方向90度.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a40b88c2b45c098bd0b72d8bde81e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a40b88c2b45c098bd0b72d8bde81e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec7a40b88c2b45c098bd0b72d8bde81e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec7a40b88c2b45c098bd0b72d8bde81e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec7a40b88c2b45c098bd0b72d8bde81e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weiFYO2BQEr1lzaWiQOH8HGgz5o=", "createTime": "2024-08-15 15:03:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.197439+00 2025-12-09 10:15:41.197445+00 17618 1231-24FWF#V5曲线 SPMX-20240815312843 \N \N \N 1 \N [{"file_id": "4c0892ff-ebcf-4f6b-b5eb-e74e55536fdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "befffdd89b314db58d2ffb7e68631b14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "befffdd89b314db58d2ffb7e68631b14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "befffdd89b314db58d2ffb7e68631b14.jpg", "file_size": 19465, "is_delete": false, "file_type": 1, "original_file_name": "1231-24FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befffdd89b314db58d2ffb7e68631b14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befffdd89b314db58d2ffb7e68631b14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befffdd89b314db58d2ffb7e68631b14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/befffdd89b314db58d2ffb7e68631b14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/befffdd89b314db58d2ffb7e68631b14.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5ug1L7J9uVQiPkbk8wGquMr6pY=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.200212+00 2025-12-09 10:15:41.200219+00 17619 CCH1024#洋红 SPMX-20240815312841 \N \N \N 1 \N [{"file_id": "abd4fd49-9443-4490-9c2d-32652aac5908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96548a67b2084338bdf51166aafa5835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96548a67b2084338bdf51166aafa5835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96548a67b2084338bdf51166aafa5835.jpg", "file_size": 14898, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#洋红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96548a67b2084338bdf51166aafa5835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96548a67b2084338bdf51166aafa5835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96548a67b2084338bdf51166aafa5835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96548a67b2084338bdf51166aafa5835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96548a67b2084338bdf51166aafa5835.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sU8pScuwkI5zRmls--PXxSZEmXo=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.202966+00 2025-12-09 10:15:41.202973+00 17620 FX0003-180#RC23 SPMX-20240815312842 \N \N \N 1 \N [{"file_id": "b4609b6f-5bb7-4e62-b989-5904dbc15679", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecb6fe71821f414397c907675b31cc00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecb6fe71821f414397c907675b31cc00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecb6fe71821f414397c907675b31cc00.jpg", "file_size": 45323, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-180#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb6fe71821f414397c907675b31cc00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb6fe71821f414397c907675b31cc00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb6fe71821f414397c907675b31cc00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecb6fe71821f414397c907675b31cc00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecb6fe71821f414397c907675b31cc00.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u66XlmQiDpuR97X13JDX0lPF3ZU=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.205771+00 2025-12-09 10:15:41.205777+00 17621 CCH1024#白色 SPMX-20240815312845 \N \N \N 1 \N [{"file_id": "842ca7dc-a290-4f18-951a-5b470245dd0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a001661445f4afab4c8fd4a967e8aa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a001661445f4afab4c8fd4a967e8aa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a001661445f4afab4c8fd4a967e8aa7.jpg", "file_size": 17288, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a001661445f4afab4c8fd4a967e8aa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a001661445f4afab4c8fd4a967e8aa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a001661445f4afab4c8fd4a967e8aa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a001661445f4afab4c8fd4a967e8aa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a001661445f4afab4c8fd4a967e8aa7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVbhnz9ttJlm2N1NCkR47vHYF2E=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.208522+00 2025-12-09 10:15:41.208528+00 17622 LJH1898#粉色 SPMX-20240815312844 \N \N \N 1 \N [{"file_id": "8d3bb865-623b-4e06-8ce1-dde00e6b2555", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32d7d65a075c4ca2a93798b0f9ec86c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32d7d65a075c4ca2a93798b0f9ec86c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32d7d65a075c4ca2a93798b0f9ec86c1.jpg", "file_size": 48578, "is_delete": false, "file_type": 1, "original_file_name": "LJH1898#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d7d65a075c4ca2a93798b0f9ec86c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d7d65a075c4ca2a93798b0f9ec86c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32d7d65a075c4ca2a93798b0f9ec86c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32d7d65a075c4ca2a93798b0f9ec86c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32d7d65a075c4ca2a93798b0f9ec86c1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCBpIcOZa1-GN7jxUjPGdGP2VmU=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.211387+00 2025-12-09 10:15:41.211393+00 17623 231483#-006-3 SPMX-20240815312846 \N \N \N 1 \N [{"file_id": "76c6e26c-d480-4b15-8be6-cd17f26439e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3762296cbaf248ee860a7a3b0990a9dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3762296cbaf248ee860a7a3b0990a9dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3762296cbaf248ee860a7a3b0990a9dd.jpg", "file_size": 82326, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3762296cbaf248ee860a7a3b0990a9dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3762296cbaf248ee860a7a3b0990a9dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3762296cbaf248ee860a7a3b0990a9dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3762296cbaf248ee860a7a3b0990a9dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3762296cbaf248ee860a7a3b0990a9dd.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KJ7eKwdLXRGjw5zi0xoYBzLjmM=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.214227+00 2025-12-09 10:15:41.214233+00 17624 LZ1374#上身1号色 SPMX-20240815312853 \N \N \N 1 \N [{"file_id": "641a6e7e-d9b8-4059-95f8-aed54a7527bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb03a25837174e0bac25742d428b929b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb03a25837174e0bac25742d428b929b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb03a25837174e0bac25742d428b929b.jpg", "file_size": 20142, "is_delete": false, "file_type": 1, "original_file_name": "LZ1374#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb03a25837174e0bac25742d428b929b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb03a25837174e0bac25742d428b929b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb03a25837174e0bac25742d428b929b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb03a25837174e0bac25742d428b929b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb03a25837174e0bac25742d428b929b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Em1sukzX2vekd5Jhut5_4qYQ9Y0=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.217029+00 2025-12-09 10:15:41.217035+00 17625 FX0003-181#RC23 SPMX-20240815312847 \N \N \N 1 \N [{"file_id": "62e1cf77-8afc-4f9f-a730-13a95455aa28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cabde102c7c4fcd8bcf0d98d96e849b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cabde102c7c4fcd8bcf0d98d96e849b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cabde102c7c4fcd8bcf0d98d96e849b.jpg", "file_size": 31253, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-181#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cabde102c7c4fcd8bcf0d98d96e849b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cabde102c7c4fcd8bcf0d98d96e849b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cabde102c7c4fcd8bcf0d98d96e849b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cabde102c7c4fcd8bcf0d98d96e849b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cabde102c7c4fcd8bcf0d98d96e849b.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZiDxyQYXgqflfOielVmLYaJf6Y=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.219921+00 2025-12-09 10:15:41.219927+00 17626 1231-25FWF#V5曲线 SPMX-20240815312848 \N \N \N 1 \N [{"file_id": "743883ee-f179-4a84-b1dc-eecbb397f41c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70677eea74d44f5a8a136eac31500821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70677eea74d44f5a8a136eac31500821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70677eea74d44f5a8a136eac31500821.jpg", "file_size": 25399, "is_delete": false, "file_type": 1, "original_file_name": "1231-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70677eea74d44f5a8a136eac31500821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70677eea74d44f5a8a136eac31500821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70677eea74d44f5a8a136eac31500821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70677eea74d44f5a8a136eac31500821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70677eea74d44f5a8a136eac31500821.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUM3qYcwF5IyyLNyHKN5TmHyK8o=", "createTime": "2024-08-15 15:03:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.222729+00 2025-12-09 10:15:41.222735+00 17627 LJH1898#黑色 SPMX-20240815312855 \N \N \N 1 \N [{"file_id": "fa9b8a8d-33ee-4334-9b6b-88de7e119182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe9318cbff14b9ebd5d6d682efd1b51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe9318cbff14b9ebd5d6d682efd1b51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe9318cbff14b9ebd5d6d682efd1b51.jpg", "file_size": 49673, "is_delete": false, "file_type": 1, "original_file_name": "LJH1898#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe9318cbff14b9ebd5d6d682efd1b51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe9318cbff14b9ebd5d6d682efd1b51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe9318cbff14b9ebd5d6d682efd1b51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe9318cbff14b9ebd5d6d682efd1b51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe9318cbff14b9ebd5d6d682efd1b51.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MSA7j8M86c-5gzCSNUKJFclIDzo=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.225563+00 2025-12-09 10:15:41.225569+00 17628 JTSS824FW#VS-D3 SPMX-20240815312849 \N \N \N 1 \N [{"file_id": "200c5ded-e519-4d6d-8e05-5565e641971e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a47d0fda610447582a5579115727a8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a47d0fda610447582a5579115727a8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a47d0fda610447582a5579115727a8a.jpg", "file_size": 7328, "is_delete": false, "file_type": 1, "original_file_name": "JTSS824FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a47d0fda610447582a5579115727a8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a47d0fda610447582a5579115727a8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a47d0fda610447582a5579115727a8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a47d0fda610447582a5579115727a8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a47d0fda610447582a5579115727a8a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:crgKw4QI2Q6ZIFhhFRoU8007fNo=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.228401+00 2025-12-09 10:15:41.228407+00 17629 HX9007#蓝色百花石 SPMX-20240815312852 \N \N \N 1 \N [{"file_id": "89ed62e6-eb66-402a-a0f7-e15430fec69f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82b197f9e0cd442daed513e040a6f866.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82b197f9e0cd442daed513e040a6f866.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82b197f9e0cd442daed513e040a6f866.jpg", "file_size": 20080, "is_delete": false, "file_type": 1, "original_file_name": "HX9007#蓝色百花石.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b197f9e0cd442daed513e040a6f866.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b197f9e0cd442daed513e040a6f866.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b197f9e0cd442daed513e040a6f866.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82b197f9e0cd442daed513e040a6f866.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82b197f9e0cd442daed513e040a6f866.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BsTJZ3KpCTAwgspouwT8HdRWdmg=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.231306+00 2025-12-09 10:15:41.231312+00 17630 8564#2XL SPMX-20240815312850 \N \N \N 1 \N [{"file_id": "c7523730-2408-4406-a86e-b2c8a1d5e735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "044143f208d947698ee17006e8f22bb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "044143f208d947698ee17006e8f22bb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "044143f208d947698ee17006e8f22bb2.jpg", "file_size": 21839, "is_delete": false, "file_type": 1, "original_file_name": "8564#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044143f208d947698ee17006e8f22bb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044143f208d947698ee17006e8f22bb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/044143f208d947698ee17006e8f22bb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/044143f208d947698ee17006e8f22bb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/044143f208d947698ee17006e8f22bb2.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQD3v7p00fQB8dKJ5b7Uw_vnjBg=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.234117+00 2025-12-09 10:15:41.234123+00 17631 0008-20FWE#蓝色 SPMX-20240815312851 \N \N \N 1 \N [{"file_id": "bdea0b72-7a45-4844-978c-f67efe327c21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0de14c32bf74c9781575e730be381cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0de14c32bf74c9781575e730be381cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0de14c32bf74c9781575e730be381cf.jpg", "file_size": 13452, "is_delete": false, "file_type": 1, "original_file_name": "0008-20FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0de14c32bf74c9781575e730be381cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0de14c32bf74c9781575e730be381cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0de14c32bf74c9781575e730be381cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0de14c32bf74c9781575e730be381cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0de14c32bf74c9781575e730be381cf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHtiJIoK5IX4ep-5A6WLmVVHUrw=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.237011+00 2025-12-09 10:15:41.237018+00 17632 DL31761#前幅深水红 SPMX-20240815312854 \N \N \N 1 \N [{"file_id": "5a210531-be6f-4f20-9d5e-43d11c45cde7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7cc749ca01b453c9e970ad0e530f599.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7cc749ca01b453c9e970ad0e530f599.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7cc749ca01b453c9e970ad0e530f599.jpg", "file_size": 48229, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cc749ca01b453c9e970ad0e530f599.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cc749ca01b453c9e970ad0e530f599.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cc749ca01b453c9e970ad0e530f599.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7cc749ca01b453c9e970ad0e530f599.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7cc749ca01b453c9e970ad0e530f599.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3496qo0UvX7hAyXs79DODu3UUdA=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.239793+00 2025-12-09 10:15:41.2398+00 17633 8564#3XL SPMX-20240815312861 \N \N \N 1 \N [{"file_id": "b7e5bfda-4321-4fc0-b4cc-3eb06c0c4686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdaca19bdda44e6a906f00e066072108.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdaca19bdda44e6a906f00e066072108.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdaca19bdda44e6a906f00e066072108.jpg", "file_size": 22277, "is_delete": false, "file_type": 1, "original_file_name": "8564#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaca19bdda44e6a906f00e066072108.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaca19bdda44e6a906f00e066072108.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdaca19bdda44e6a906f00e066072108.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdaca19bdda44e6a906f00e066072108.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdaca19bdda44e6a906f00e066072108.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ThwzZ68jzKCp_ZXEYOSu3yl6Kw=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.242646+00 2025-12-09 10:15:41.242653+00 17634 1231-26FWF#V5曲线 SPMX-20240815312859 \N \N \N 1 \N [{"file_id": "a0bc682c-f97a-4f97-9d45-abb4ad275ace", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a4a3ddf8443429f86150fd61983d85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a4a3ddf8443429f86150fd61983d85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a4a3ddf8443429f86150fd61983d85c.jpg", "file_size": 19892, "is_delete": false, "file_type": 1, "original_file_name": "1231-26FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a3ddf8443429f86150fd61983d85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a3ddf8443429f86150fd61983d85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a4a3ddf8443429f86150fd61983d85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a4a3ddf8443429f86150fd61983d85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a4a3ddf8443429f86150fd61983d85c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iX_FSr8_J5Tlq7bnAsFS_sH8wOE=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.245507+00 2025-12-09 10:15:41.245513+00 17635 JTSS825FW#杏VS-D3 SPMX-20240815312860 \N \N \N 1 \N [{"file_id": "84d383f7-fbda-487a-9a88-4d6c4cae599a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d97bf9f942f4dd2bf94834da779e55c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d97bf9f942f4dd2bf94834da779e55c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d97bf9f942f4dd2bf94834da779e55c.jpg", "file_size": 11928, "is_delete": false, "file_type": 1, "original_file_name": "JTSS825FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d97bf9f942f4dd2bf94834da779e55c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d97bf9f942f4dd2bf94834da779e55c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d97bf9f942f4dd2bf94834da779e55c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d97bf9f942f4dd2bf94834da779e55c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d97bf9f942f4dd2bf94834da779e55c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bR_E73wo_WxGN9m0QVVcM3oR-84=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.248341+00 2025-12-09 10:15:41.248348+00 17636 LZ1374#上身2号色 SPMX-20240815312865 \N \N \N 1 \N [{"file_id": "a85edca9-d41c-4134-b15a-d6618d13191a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed5e2b113c0949dfac29203c949173a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed5e2b113c0949dfac29203c949173a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed5e2b113c0949dfac29203c949173a8.jpg", "file_size": 19374, "is_delete": false, "file_type": 1, "original_file_name": "LZ1374#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5e2b113c0949dfac29203c949173a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5e2b113c0949dfac29203c949173a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed5e2b113c0949dfac29203c949173a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed5e2b113c0949dfac29203c949173a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed5e2b113c0949dfac29203c949173a8.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sNZznO93u-IN60nu7bodKZDywI=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.25123+00 2025-12-09 10:15:41.251236+00 17637 CCH1024#皮红 SPMX-20240815312856 \N \N \N 1 \N [{"file_id": "884262bc-4285-42f9-a2d8-4983ad06e118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d1f771693bb4b3894ec25247d5d6dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d1f771693bb4b3894ec25247d5d6dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d1f771693bb4b3894ec25247d5d6dd9.jpg", "file_size": 14015, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#皮红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1f771693bb4b3894ec25247d5d6dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1f771693bb4b3894ec25247d5d6dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d1f771693bb4b3894ec25247d5d6dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d1f771693bb4b3894ec25247d5d6dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d1f771693bb4b3894ec25247d5d6dd9.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-HSNx7GYPzM_ORC5fIdNjDx6Y7I=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.254104+00 2025-12-09 10:15:41.254111+00 17638 LJH1901-2#绿色 SPMX-20240815312866 \N \N \N 1 \N [{"file_id": "e0b849ea-84e2-43bd-8be4-3c4d3743c3d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a00de4ccef74b2ca66cfd0e905322b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a00de4ccef74b2ca66cfd0e905322b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a00de4ccef74b2ca66cfd0e905322b9.jpg", "file_size": 50259, "is_delete": false, "file_type": 1, "original_file_name": "LJH1901-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a00de4ccef74b2ca66cfd0e905322b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a00de4ccef74b2ca66cfd0e905322b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a00de4ccef74b2ca66cfd0e905322b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a00de4ccef74b2ca66cfd0e905322b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a00de4ccef74b2ca66cfd0e905322b9.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rWcNeilL2UFcAAV--r3AH5j93cA=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.257001+00 2025-12-09 10:15:41.257008+00 17639 HX9008#深宝蓝花鸟-150 SPMX-20240815312862 \N \N \N 1 \N [{"file_id": "f31c14f0-79e4-48c5-b4ad-372e93931d1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7854b03aa2db42909327154d2a63bdcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7854b03aa2db42909327154d2a63bdcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7854b03aa2db42909327154d2a63bdcf.jpg", "file_size": 23351, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#深宝蓝花鸟-150.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7854b03aa2db42909327154d2a63bdcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7854b03aa2db42909327154d2a63bdcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7854b03aa2db42909327154d2a63bdcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7854b03aa2db42909327154d2a63bdcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7854b03aa2db42909327154d2a63bdcf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unWSliTgTxojadUf0le1UOyNSKc=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.259773+00 2025-12-09 10:15:41.25978+00 17640 0008-20FWF#V5曲线 SPMX-20240815312863 \N \N \N 1 \N [{"file_id": "cb6b9d87-88b5-46e1-b8f7-3e46b17c06d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391a3286e564418d89b0fb2c922a3b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391a3286e564418d89b0fb2c922a3b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391a3286e564418d89b0fb2c922a3b84.jpg", "file_size": 12270, "is_delete": false, "file_type": 1, "original_file_name": "0008-20FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391a3286e564418d89b0fb2c922a3b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391a3286e564418d89b0fb2c922a3b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391a3286e564418d89b0fb2c922a3b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391a3286e564418d89b0fb2c922a3b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391a3286e564418d89b0fb2c922a3b84.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKG2uhI1af6LzYfWjudB5jLudMk=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.262617+00 2025-12-09 10:15:41.262624+00 17641 DL31761#前幅玫红 SPMX-20240815312864 \N \N \N 1 \N [{"file_id": "a6117976-e63b-416a-8a9b-8afbc3bad190", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3806188426e4c31bbf20010fc13be51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3806188426e4c31bbf20010fc13be51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3806188426e4c31bbf20010fc13be51.jpg", "file_size": 45924, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3806188426e4c31bbf20010fc13be51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3806188426e4c31bbf20010fc13be51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3806188426e4c31bbf20010fc13be51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3806188426e4c31bbf20010fc13be51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3806188426e4c31bbf20010fc13be51.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7qlpw36AgIBJo3ZY-nvCNZdPuM=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.26548+00 2025-12-09 10:15:41.265485+00 17642 FX0003-182#RC23 SPMX-20240815312858 \N \N \N 1 \N [{"file_id": "764e3261-ba61-489c-9edd-c8ffca489235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "763583fc8bc741b0953b63a808ceaa58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "763583fc8bc741b0953b63a808ceaa58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "763583fc8bc741b0953b63a808ceaa58.jpg", "file_size": 38833, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-182#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763583fc8bc741b0953b63a808ceaa58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763583fc8bc741b0953b63a808ceaa58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763583fc8bc741b0953b63a808ceaa58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/763583fc8bc741b0953b63a808ceaa58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/763583fc8bc741b0953b63a808ceaa58.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gS0Jo8p6cwy2xiUuFFnBs7CpBWc=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.268335+00 2025-12-09 10:15:41.268341+00 17643 231483#-006-4-混码 SPMX-20240815312857 \N \N \N 1 \N [{"file_id": "f8ffa1da-1de5-4d54-b5b0-099777fd46e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95caa4d2de5048a392cb658d39ab95bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95caa4d2de5048a392cb658d39ab95bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95caa4d2de5048a392cb658d39ab95bf.jpg", "file_size": 29620, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95caa4d2de5048a392cb658d39ab95bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95caa4d2de5048a392cb658d39ab95bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95caa4d2de5048a392cb658d39ab95bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95caa4d2de5048a392cb658d39ab95bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95caa4d2de5048a392cb658d39ab95bf.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X8fc3o5FfYWcK4qZtd7z8szLIlQ=", "createTime": "2024-08-15 15:03:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.271265+00 2025-12-09 10:15:41.271271+00 17644 HX9008#深宝蓝花鸟 SPMX-20240815312875 \N \N \N 1 \N [{"file_id": "01fc5fc6-cb53-42b4-bd13-93080901ecfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe8f7492929248b99eb36c92ba942f3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe8f7492929248b99eb36c92ba942f3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe8f7492929248b99eb36c92ba942f3c.jpg", "file_size": 19827, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#深宝蓝花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8f7492929248b99eb36c92ba942f3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8f7492929248b99eb36c92ba942f3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8f7492929248b99eb36c92ba942f3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe8f7492929248b99eb36c92ba942f3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe8f7492929248b99eb36c92ba942f3c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jd8YYMACOx2lqWNbffiql6ovEOM=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.274116+00 2025-12-09 10:15:41.274122+00 17645 LZ1374#上身3号色 SPMX-20240815312876 \N \N \N 1 \N [{"file_id": "08ca1b80-86bd-424b-9400-f8cef22c2550", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c4411196dc74e8d893fddd80529b029.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c4411196dc74e8d893fddd80529b029.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c4411196dc74e8d893fddd80529b029.jpg", "file_size": 20552, "is_delete": false, "file_type": 1, "original_file_name": "LZ1374#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4411196dc74e8d893fddd80529b029.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4411196dc74e8d893fddd80529b029.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4411196dc74e8d893fddd80529b029.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c4411196dc74e8d893fddd80529b029.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c4411196dc74e8d893fddd80529b029.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xrtoh1P_j7vjhVVj8HU59y-wm-I=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.276924+00 2025-12-09 10:15:41.27693+00 17646 0008-21#杏色 SPMX-20240815312873 \N \N \N 1 \N [{"file_id": "03a1723a-04cb-4f36-8bfd-0683cd741514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b0919e2d93746589dee8853b19be331.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b0919e2d93746589dee8853b19be331.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b0919e2d93746589dee8853b19be331.jpg", "file_size": 5777, "is_delete": false, "file_type": 1, "original_file_name": "0008-21#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0919e2d93746589dee8853b19be331.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0919e2d93746589dee8853b19be331.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0919e2d93746589dee8853b19be331.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b0919e2d93746589dee8853b19be331.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b0919e2d93746589dee8853b19be331.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Def64Q1akQF6g4dkXlLQvwZ8-h0=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.279823+00 2025-12-09 10:15:41.279829+00 17647 JTSS825FW#粉VS-D3 SPMX-20240815312870 \N \N \N 1 \N [{"file_id": "332cb35d-4f81-49cb-98a1-62738a0d147b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "037f4e710bc54e48b55eccb81e0f6d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "037f4e710bc54e48b55eccb81e0f6d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "037f4e710bc54e48b55eccb81e0f6d44.jpg", "file_size": 11725, "is_delete": false, "file_type": 1, "original_file_name": "JTSS825FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/037f4e710bc54e48b55eccb81e0f6d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/037f4e710bc54e48b55eccb81e0f6d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/037f4e710bc54e48b55eccb81e0f6d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/037f4e710bc54e48b55eccb81e0f6d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/037f4e710bc54e48b55eccb81e0f6d44.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzPghVy7o7_ixVeE4B0aqT2CEl0=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.282677+00 2025-12-09 10:15:41.282683+00 17648 231483#-006-4 SPMX-20240815312868 \N \N \N 1 \N [{"file_id": "b0a3c7ee-4a46-4fa3-8220-8582cd4ad5f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a36d481ad9e4082ad56ff6df73b488a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a36d481ad9e4082ad56ff6df73b488a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a36d481ad9e4082ad56ff6df73b488a.jpg", "file_size": 86970, "is_delete": false, "file_type": 1, "original_file_name": "231483#-006-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a36d481ad9e4082ad56ff6df73b488a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a36d481ad9e4082ad56ff6df73b488a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a36d481ad9e4082ad56ff6df73b488a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a36d481ad9e4082ad56ff6df73b488a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a36d481ad9e4082ad56ff6df73b488a.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2GnL0J33hx8t-QWAvLC-36NQSc=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.28555+00 2025-12-09 10:15:41.285556+00 17649 FX0003-183#RC23 SPMX-20240815312869 \N \N \N 1 \N [{"file_id": "ad80bf77-36b7-4029-bfc3-1ab17cbacdb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0af410113ede42dcbf48db2e76ced916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0af410113ede42dcbf48db2e76ced916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0af410113ede42dcbf48db2e76ced916.jpg", "file_size": 57138, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-183#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af410113ede42dcbf48db2e76ced916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af410113ede42dcbf48db2e76ced916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0af410113ede42dcbf48db2e76ced916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0af410113ede42dcbf48db2e76ced916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0af410113ede42dcbf48db2e76ced916.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6_-luO5CWHAM_kMP9zykHj1Z68=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.288466+00 2025-12-09 10:15:41.288472+00 17650 8564#4XL SPMX-20240815312871 \N \N \N 1 \N [{"file_id": "cfdb5096-9ddd-43d4-a918-95024e1f383d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a543a9604bf1436da33237c03e7c18b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a543a9604bf1436da33237c03e7c18b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a543a9604bf1436da33237c03e7c18b1.jpg", "file_size": 22288, "is_delete": false, "file_type": 1, "original_file_name": "8564#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a543a9604bf1436da33237c03e7c18b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a543a9604bf1436da33237c03e7c18b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a543a9604bf1436da33237c03e7c18b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a543a9604bf1436da33237c03e7c18b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a543a9604bf1436da33237c03e7c18b1.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KoS0JnLFjuTff0g6xCkB5qj37bA=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.291324+00 2025-12-09 10:15:41.29133+00 17651 DL31761#前幅蓝绿 SPMX-20240815312874 \N \N \N 1 \N [{"file_id": "1c6e4a2d-8739-408d-98bd-7b41ced1d08d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95d8085a4fed49c0b59efb80f6e1a5f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95d8085a4fed49c0b59efb80f6e1a5f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95d8085a4fed49c0b59efb80f6e1a5f9.jpg", "file_size": 47159, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d8085a4fed49c0b59efb80f6e1a5f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d8085a4fed49c0b59efb80f6e1a5f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d8085a4fed49c0b59efb80f6e1a5f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95d8085a4fed49c0b59efb80f6e1a5f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95d8085a4fed49c0b59efb80f6e1a5f9.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyIlQDPJEJ-QAgf1AXV9mOA4xgY=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.294166+00 2025-12-09 10:15:41.294171+00 17652 CCH1024#红色 SPMX-20240815312867 \N \N \N 1 \N [{"file_id": "22747c70-fbaf-4814-b1c5-4feff276d216", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc0c061d5cfc4f83bb901b52cc9e31e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc0c061d5cfc4f83bb901b52cc9e31e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc0c061d5cfc4f83bb901b52cc9e31e0.jpg", "file_size": 17669, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0c061d5cfc4f83bb901b52cc9e31e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0c061d5cfc4f83bb901b52cc9e31e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc0c061d5cfc4f83bb901b52cc9e31e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc0c061d5cfc4f83bb901b52cc9e31e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc0c061d5cfc4f83bb901b52cc9e31e0.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdfirUotn97p-bHTTQ13qP5rI8g=", "createTime": "2024-08-15 15:03:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.320542+00 2025-12-09 10:15:41.320548+00 17661 JTSS826FW#VS-D3 SPMX-20240815312880 \N \N \N 1 \N [{"file_id": "ab195bc4-c630-4214-a38e-f9f9a1f7e171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdb6c59746e2414b89366814f2c91b21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdb6c59746e2414b89366814f2c91b21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdb6c59746e2414b89366814f2c91b21.jpg", "file_size": 11852, "is_delete": false, "file_type": 1, "original_file_name": "JTSS826FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb6c59746e2414b89366814f2c91b21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb6c59746e2414b89366814f2c91b21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdb6c59746e2414b89366814f2c91b21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdb6c59746e2414b89366814f2c91b21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdb6c59746e2414b89366814f2c91b21.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tybwhQGdCLL-SISTchsrjjARCKw=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.297001+00 2025-12-09 10:15:41.297008+00 17653 1231-27FWF#中童12码+10码 SPMX-20240815312872 \N \N \N 1 \N [{"file_id": "0cc67f63-98b5-4231-b365-4ac53587de94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b58b5fd43e48359239aec804722e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b58b5fd43e48359239aec804722e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b58b5fd43e48359239aec804722e8e.jpg", "file_size": 18910, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b58b5fd43e48359239aec804722e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b58b5fd43e48359239aec804722e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b58b5fd43e48359239aec804722e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b58b5fd43e48359239aec804722e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b58b5fd43e48359239aec804722e8e.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJkzxje4P0x3i2iXNoIPXimLX0Y=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.29989+00 2025-12-09 10:15:41.299896+00 17654 CCH1024#绿色 SPMX-20240815312877 \N \N \N 1 \N [{"file_id": "a9bcca34-589c-4c13-8b0d-e11a7cf127ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "148a5f76d1744056a0869b6a15fb913d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "148a5f76d1744056a0869b6a15fb913d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "148a5f76d1744056a0869b6a15fb913d.jpg", "file_size": 14518, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148a5f76d1744056a0869b6a15fb913d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148a5f76d1744056a0869b6a15fb913d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148a5f76d1744056a0869b6a15fb913d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/148a5f76d1744056a0869b6a15fb913d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/148a5f76d1744056a0869b6a15fb913d.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6u2xkRUY-YzYeporiZnWoP6qID0=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.302815+00 2025-12-09 10:15:41.302821+00 17655 1231-27FWF#中童14码 SPMX-20240815312881 \N \N \N 1 \N [{"file_id": "5fc75047-f9a7-49ff-b14e-fd67e06337a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6588b9df253649fca01b75dde321cd52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6588b9df253649fca01b75dde321cd52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6588b9df253649fca01b75dde321cd52.jpg", "file_size": 17550, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6588b9df253649fca01b75dde321cd52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6588b9df253649fca01b75dde321cd52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6588b9df253649fca01b75dde321cd52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6588b9df253649fca01b75dde321cd52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6588b9df253649fca01b75dde321cd52.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VIXQgPzmW051V3hVfW-GGXU4ICk=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.305718+00 2025-12-09 10:15:41.305725+00 17656 0008-217#白2XL SPMX-20240815312882 \N \N \N 1 \N [{"file_id": "a0ede3ed-2d93-4436-96f0-5206488893ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d88fad2f78541f0a7121236709141a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d88fad2f78541f0a7121236709141a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d88fad2f78541f0a7121236709141a4.jpg", "file_size": 16585, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#白2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d88fad2f78541f0a7121236709141a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d88fad2f78541f0a7121236709141a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d88fad2f78541f0a7121236709141a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d88fad2f78541f0a7121236709141a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d88fad2f78541f0a7121236709141a4.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n19jo9w3PzK0QYb5iUGlPre0Ud0=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.308582+00 2025-12-09 10:15:41.308587+00 17657 HX9008#深宝蓝花鸟袖子补数 SPMX-20240815312886 \N \N \N 1 \N [{"file_id": "fcfaf84a-ae70-4216-ab96-c22f9c26acce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9803e7575cfe4eefb3c301de91a37be7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9803e7575cfe4eefb3c301de91a37be7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9803e7575cfe4eefb3c301de91a37be7.jpg", "file_size": 17235, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#深宝蓝花鸟袖子补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9803e7575cfe4eefb3c301de91a37be7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9803e7575cfe4eefb3c301de91a37be7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9803e7575cfe4eefb3c301de91a37be7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9803e7575cfe4eefb3c301de91a37be7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9803e7575cfe4eefb3c301de91a37be7.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1-iUKQc6R_S6V225SCKs9kozMps=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.311521+00 2025-12-09 10:15:41.311528+00 17658 231483#-007-1-混码 SPMX-20240815312879 \N \N \N 1 \N [{"file_id": "0b080f49-d63e-401a-8a2d-86d068526b1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg", "file_size": 29520, "is_delete": false, "file_type": 1, "original_file_name": "231483#-007-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3a01cd162bb4b0cb94d0b1ea2b524e9.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gi3ClsAzWIQRwmK2VgP-34Dg4tU=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.314338+00 2025-12-09 10:15:41.314343+00 17659 FX0003-184#RC23 SPMX-20240815312883 \N \N \N 1 \N [{"file_id": "293a0185-9007-45cd-8d7f-2ca67822e796", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0943e765352f4692acfc150baa956254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0943e765352f4692acfc150baa956254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0943e765352f4692acfc150baa956254.jpg", "file_size": 75701, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-184#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0943e765352f4692acfc150baa956254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0943e765352f4692acfc150baa956254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0943e765352f4692acfc150baa956254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0943e765352f4692acfc150baa956254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0943e765352f4692acfc150baa956254.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0T9E2gGRbJjoG_ULCfQ6yt1ly7I=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.317173+00 2025-12-09 10:15:41.31718+00 17660 8564#L SPMX-20240815312884 \N \N \N 1 \N [{"file_id": "898ea6e6-153b-4f73-ae3e-cb6df309f5a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c9293182926472cb72a73f797029134.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c9293182926472cb72a73f797029134.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c9293182926472cb72a73f797029134.bmp", "file_size": 409554, "is_delete": false, "file_type": 1, "original_file_name": "8564#L.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9293182926472cb72a73f797029134.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9293182926472cb72a73f797029134.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9293182926472cb72a73f797029134.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c9293182926472cb72a73f797029134.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c9293182926472cb72a73f797029134.bmp?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9UGtbnBm2KRJcWRWq-iXhMBbKVo=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.323326+00 2025-12-09 10:15:41.323332+00 17662 DL31761#前幅黄色 SPMX-20240815312885 \N \N \N 1 \N [{"file_id": "9f0a49db-24f3-4c16-a97f-488a24cce86b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bb71010485b4ce4b4c2a5ae119a839f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bb71010485b4ce4b4c2a5ae119a839f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bb71010485b4ce4b4c2a5ae119a839f.jpg", "file_size": 45454, "is_delete": false, "file_type": 1, "original_file_name": "DL31761#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb71010485b4ce4b4c2a5ae119a839f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb71010485b4ce4b4c2a5ae119a839f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb71010485b4ce4b4c2a5ae119a839f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bb71010485b4ce4b4c2a5ae119a839f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bb71010485b4ce4b4c2a5ae119a839f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6yxWegrIkNDGN2HQkVooP1-ykTo=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.325942+00 2025-12-09 10:15:41.325947+00 17663 LJH1901-2#蓝色 SPMX-20240815312878 \N \N \N 1 \N [{"file_id": "8bf20cca-35e5-4037-a284-840ddf6dad16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add5937f58724daebc1c87c86db74c46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add5937f58724daebc1c87c86db74c46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add5937f58724daebc1c87c86db74c46.jpg", "file_size": 54269, "is_delete": false, "file_type": 1, "original_file_name": "LJH1901-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5937f58724daebc1c87c86db74c46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5937f58724daebc1c87c86db74c46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add5937f58724daebc1c87c86db74c46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add5937f58724daebc1c87c86db74c46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add5937f58724daebc1c87c86db74c46.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:66khfvWv4bCOv2NE4E7yF--aV1Y=", "createTime": "2024-08-15 15:03:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.328452+00 2025-12-09 10:15:41.328457+00 17664 DL31763#下摆批布大红 SPMX-20240815312894 \N \N \N 1 \N [{"file_id": "1ec8d5cc-31b6-4785-b23e-bf6594ea970e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b7d8150509241a7b4acea4a4c39a1ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b7d8150509241a7b4acea4a4c39a1ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b7d8150509241a7b4acea4a4c39a1ac.jpg", "file_size": 66479, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7d8150509241a7b4acea4a4c39a1ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7d8150509241a7b4acea4a4c39a1ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b7d8150509241a7b4acea4a4c39a1ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b7d8150509241a7b4acea4a4c39a1ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b7d8150509241a7b4acea4a4c39a1ac.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMtMJvb5X8QDPZk2jQBfOm08S9Y=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.330956+00 2025-12-09 10:15:41.33096+00 17665 231483#-007-2-混码 SPMX-20240815312889 \N \N \N 1 \N [{"file_id": "c5b1c506-6efe-44fe-ba73-3537a21889cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cc4cc97eb3042bda003a11b1e5cabef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cc4cc97eb3042bda003a11b1e5cabef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cc4cc97eb3042bda003a11b1e5cabef.jpg", "file_size": 29239, "is_delete": false, "file_type": 1, "original_file_name": "231483#-007-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc4cc97eb3042bda003a11b1e5cabef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc4cc97eb3042bda003a11b1e5cabef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cc4cc97eb3042bda003a11b1e5cabef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cc4cc97eb3042bda003a11b1e5cabef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cc4cc97eb3042bda003a11b1e5cabef.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bWjIRvXhVRylwwO5OMIFar_z2w=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.333467+00 2025-12-09 10:15:41.333472+00 17666 JTSS827FW#VS-D3 SPMX-20240815312891 \N \N \N 1 \N [{"file_id": "57cf93f3-6af8-4cb0-8e14-442fb3217ddd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd5cf840f6ca4d30a6a037059060d724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd5cf840f6ca4d30a6a037059060d724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd5cf840f6ca4d30a6a037059060d724.jpg", "file_size": 8511, "is_delete": false, "file_type": 1, "original_file_name": "JTSS827FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5cf840f6ca4d30a6a037059060d724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5cf840f6ca4d30a6a037059060d724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd5cf840f6ca4d30a6a037059060d724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd5cf840f6ca4d30a6a037059060d724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd5cf840f6ca4d30a6a037059060d724.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0YFRlmbc7L-AFtg-4pbImyQPog=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.335979+00 2025-12-09 10:15:41.335984+00 17667 LZ1374#上身4号色 SPMX-20240815312887 \N \N \N 1 \N [{"file_id": "cc8af547-220c-42f8-ac1d-e88bff0bd372", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1107d332cfa649f8bf762cc3417ea324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1107d332cfa649f8bf762cc3417ea324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1107d332cfa649f8bf762cc3417ea324.jpg", "file_size": 20310, "is_delete": false, "file_type": 1, "original_file_name": "LZ1374#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1107d332cfa649f8bf762cc3417ea324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1107d332cfa649f8bf762cc3417ea324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1107d332cfa649f8bf762cc3417ea324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1107d332cfa649f8bf762cc3417ea324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1107d332cfa649f8bf762cc3417ea324.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWOlnq9sj6I-J4j-HkbMI-_WJQM=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.33843+00 2025-12-09 10:15:41.338434+00 17668 FX0003-185#RC23 SPMX-20240815312895 \N \N \N 1 \N [{"file_id": "a0ec36af-b04a-4b99-a226-705bf93a8066", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "083408e6d34041b69c76919b99519ebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "083408e6d34041b69c76919b99519ebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "083408e6d34041b69c76919b99519ebc.jpg", "file_size": 65552, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-185#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083408e6d34041b69c76919b99519ebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083408e6d34041b69c76919b99519ebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/083408e6d34041b69c76919b99519ebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/083408e6d34041b69c76919b99519ebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/083408e6d34041b69c76919b99519ebc.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p46wtbCQVXhKDfkpiTL8k_pntAs=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.340691+00 2025-12-09 10:15:41.340696+00 17669 LJH1901-2#黑色 SPMX-20240815312890 \N \N \N 1 \N [{"file_id": "1aa1a8f1-7fba-48cf-9057-ca047f7c09fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb90e76c6f764a5c8df37c6629c12d2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb90e76c6f764a5c8df37c6629c12d2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb90e76c6f764a5c8df37c6629c12d2c.jpg", "file_size": 53724, "is_delete": false, "file_type": 1, "original_file_name": "LJH1901-2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90e76c6f764a5c8df37c6629c12d2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90e76c6f764a5c8df37c6629c12d2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb90e76c6f764a5c8df37c6629c12d2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb90e76c6f764a5c8df37c6629c12d2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb90e76c6f764a5c8df37c6629c12d2c.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwQm8Ymqq-OnSJIGTcobskonUKc=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.343184+00 2025-12-09 10:15:41.343188+00 17670 HX9008#灰色花鸟-150 SPMX-20240815312896 \N \N \N 1 \N [{"file_id": "72aefe9c-f11b-4aff-8539-b52a151fd415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8df2d618216c412e820df48e6b6cbe4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8df2d618216c412e820df48e6b6cbe4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8df2d618216c412e820df48e6b6cbe4f.jpg", "file_size": 15893, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#灰色花鸟-150.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df2d618216c412e820df48e6b6cbe4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df2d618216c412e820df48e6b6cbe4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df2d618216c412e820df48e6b6cbe4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8df2d618216c412e820df48e6b6cbe4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8df2d618216c412e820df48e6b6cbe4f.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOqrV_AoWbvjzTvz-1EKzHl0YvQ=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.345709+00 2025-12-09 10:15:41.345713+00 17671 0008-217#白L SPMX-20240815312893 \N \N \N 1 \N [{"file_id": "f4a378c0-bf1f-4479-9c90-d338de60f44f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55d85e172e784776b8844069df1d9920.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55d85e172e784776b8844069df1d9920.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55d85e172e784776b8844069df1d9920.jpg", "file_size": 15569, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#白L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55d85e172e784776b8844069df1d9920.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55d85e172e784776b8844069df1d9920.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55d85e172e784776b8844069df1d9920.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55d85e172e784776b8844069df1d9920.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55d85e172e784776b8844069df1d9920.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plO8RDuMm_6xff7smNWFnjk5rDs=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.348301+00 2025-12-09 10:15:41.348306+00 17672 CCH1024#蓝色 SPMX-20240815312888 \N \N \N 1 \N [{"file_id": "509339ba-5779-4fca-8b74-7f2e2fdfd730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe292a37e1f84d4f91d09e1b0e7f8c47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe292a37e1f84d4f91d09e1b0e7f8c47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe292a37e1f84d4f91d09e1b0e7f8c47.jpg", "file_size": 17298, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe292a37e1f84d4f91d09e1b0e7f8c47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe292a37e1f84d4f91d09e1b0e7f8c47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe292a37e1f84d4f91d09e1b0e7f8c47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe292a37e1f84d4f91d09e1b0e7f8c47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe292a37e1f84d4f91d09e1b0e7f8c47.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NO4LygZYzwBU70yp0oQZJXtpEjE=", "createTime": "2024-08-15 15:03:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:41.351069+00 2025-12-09 10:15:41.351074+00 17673 1231-27FWF#中童袖领匹布 SPMX-20240815312892 \N \N \N 1 \N [{"file_id": "a08d22b5-bed2-42ba-b230-cfd32db1dd7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ebc4e7b3c1c4471921b871fdf532974.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ebc4e7b3c1c4471921b871fdf532974.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ebc4e7b3c1c4471921b871fdf532974.jpg", "file_size": 16404, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ebc4e7b3c1c4471921b871fdf532974.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ebc4e7b3c1c4471921b871fdf532974.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ebc4e7b3c1c4471921b871fdf532974.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ebc4e7b3c1c4471921b871fdf532974.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ebc4e7b3c1c4471921b871fdf532974.jpg?e=1765361740&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfiMMf9bkvfls_Qg3jGrp6x3aok=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.071937+00 2025-12-09 10:15:42.071948+00 17674 8564#XL SPMX-20240815312897 \N \N \N 1 \N [{"file_id": "dc7c711c-4aef-4663-b194-eed2cfef6ae4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6127ed349d48bba91dad8d882f4cbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6127ed349d48bba91dad8d882f4cbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6127ed349d48bba91dad8d882f4cbc.jpg", "file_size": 21492, "is_delete": false, "file_type": 1, "original_file_name": "8564#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6127ed349d48bba91dad8d882f4cbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6127ed349d48bba91dad8d882f4cbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6127ed349d48bba91dad8d882f4cbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6127ed349d48bba91dad8d882f4cbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6127ed349d48bba91dad8d882f4cbc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zCgjyaumEF8BYYle5hPhVOrxiXM=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.076158+00 2025-12-09 10:15:42.076164+00 17675 231483#-007-3-混码 SPMX-20240815312900 \N \N \N 1 \N [{"file_id": "b09f0bea-589f-4556-841e-7298ab9907c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a60333c14c5e40cdacfb60e9424e6859.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a60333c14c5e40cdacfb60e9424e6859.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a60333c14c5e40cdacfb60e9424e6859.jpg", "file_size": 30490, "is_delete": false, "file_type": 1, "original_file_name": "231483#-007-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60333c14c5e40cdacfb60e9424e6859.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60333c14c5e40cdacfb60e9424e6859.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60333c14c5e40cdacfb60e9424e6859.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a60333c14c5e40cdacfb60e9424e6859.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a60333c14c5e40cdacfb60e9424e6859.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkC33JMzaJMX7qlr9nqpOgDtOpM=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.079385+00 2025-12-09 10:15:42.079391+00 17676 1231-27FWF#小童6码 SPMX-20240815312903 \N \N \N 1 \N [{"file_id": "b2a5a836-ad0e-48af-a146-2d09a48cc4c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4624e500310f435a9f21fcf06b2f7314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4624e500310f435a9f21fcf06b2f7314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4624e500310f435a9f21fcf06b2f7314.jpg", "file_size": 21085, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4624e500310f435a9f21fcf06b2f7314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4624e500310f435a9f21fcf06b2f7314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4624e500310f435a9f21fcf06b2f7314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4624e500310f435a9f21fcf06b2f7314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4624e500310f435a9f21fcf06b2f7314.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aj5Q0nOKfrNSSg7S-OdqX7mVNEg=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.082364+00 2025-12-09 10:15:42.082369+00 17677 FX0003-186#RC23 SPMX-20240815312905 \N \N \N 1 \N [{"file_id": "d705bb74-d62b-48ac-b858-62444cbfff14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13062f550be244b293e9d1dc218e30be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13062f550be244b293e9d1dc218e30be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13062f550be244b293e9d1dc218e30be.jpg", "file_size": 22021, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-186#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13062f550be244b293e9d1dc218e30be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13062f550be244b293e9d1dc218e30be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13062f550be244b293e9d1dc218e30be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13062f550be244b293e9d1dc218e30be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13062f550be244b293e9d1dc218e30be.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TR4-gEro0hu-zFV4jCGhPYZTN5w=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.085202+00 2025-12-09 10:15:42.085208+00 17678 CCH1024#青色 SPMX-20240815312899 \N \N \N 1 \N [{"file_id": "400be974-acd9-442c-b936-954305fd5944", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bfd557ef3fc4a44a712b6ccdaf7f557.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bfd557ef3fc4a44a712b6ccdaf7f557.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bfd557ef3fc4a44a712b6ccdaf7f557.jpg", "file_size": 14594, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfd557ef3fc4a44a712b6ccdaf7f557.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfd557ef3fc4a44a712b6ccdaf7f557.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfd557ef3fc4a44a712b6ccdaf7f557.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bfd557ef3fc4a44a712b6ccdaf7f557.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bfd557ef3fc4a44a712b6ccdaf7f557.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:syfUFBTdmnLVOj7r7MB5TD8Zhjw=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.08811+00 2025-12-09 10:15:42.088115+00 17679 JTSS828FW#VS-D3 SPMX-20240815312902 \N \N \N 1 \N [{"file_id": "fca06222-0f0e-4060-97fb-b3d58b794834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2f4f8e746940a38edd94b98022f15e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2f4f8e746940a38edd94b98022f15e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2f4f8e746940a38edd94b98022f15e.jpg", "file_size": 11812, "is_delete": false, "file_type": 1, "original_file_name": "JTSS828FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f4f8e746940a38edd94b98022f15e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f4f8e746940a38edd94b98022f15e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2f4f8e746940a38edd94b98022f15e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2f4f8e746940a38edd94b98022f15e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2f4f8e746940a38edd94b98022f15e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6OQbXQJkzHbEVqZLgK-GBLh9u0w=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.091123+00 2025-12-09 10:15:42.091128+00 17680 LJH1903#紫色 SPMX-20240815312901 \N \N \N 1 \N [{"file_id": "7ed3d4ea-d991-421d-a1bf-72ae088dc463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6984f9917df94a5fac758f2ad1e64771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6984f9917df94a5fac758f2ad1e64771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6984f9917df94a5fac758f2ad1e64771.jpg", "file_size": 69967, "is_delete": false, "file_type": 1, "original_file_name": "LJH1903#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6984f9917df94a5fac758f2ad1e64771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6984f9917df94a5fac758f2ad1e64771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6984f9917df94a5fac758f2ad1e64771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6984f9917df94a5fac758f2ad1e64771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6984f9917df94a5fac758f2ad1e64771.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZZZAbYcmrNNcQL9NQYZCfosrD0=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.094073+00 2025-12-09 10:15:42.094078+00 17681 LZ1375#上身1号色 SPMX-20240815312898 \N \N \N 1 \N [{"file_id": "0e88c7bc-6d31-4dc2-b238-c4077aa44537", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2590d4db28045a18d69639ccddc0cff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2590d4db28045a18d69639ccddc0cff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2590d4db28045a18d69639ccddc0cff.jpg", "file_size": 20356, "is_delete": false, "file_type": 1, "original_file_name": "LZ1375#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2590d4db28045a18d69639ccddc0cff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2590d4db28045a18d69639ccddc0cff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2590d4db28045a18d69639ccddc0cff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2590d4db28045a18d69639ccddc0cff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2590d4db28045a18d69639ccddc0cff.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7dYGz6IxHqvsdiH7Rh7sWex6v0=", "createTime": "2024-08-15 15:03:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.096951+00 2025-12-09 10:15:42.096956+00 17682 DL31763#下摆批布彩兰 SPMX-20240815312906 \N \N \N 1 \N [{"file_id": "46f7658d-fac5-4d86-bf88-d9ba075742f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47cf62a465394ab092d4520232c592ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47cf62a465394ab092d4520232c592ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47cf62a465394ab092d4520232c592ab.jpg", "file_size": 68923, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cf62a465394ab092d4520232c592ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cf62a465394ab092d4520232c592ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47cf62a465394ab092d4520232c592ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47cf62a465394ab092d4520232c592ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47cf62a465394ab092d4520232c592ab.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFkf9wgpSlmf4CJqncFeWeV8BD0=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.099812+00 2025-12-09 10:15:42.099817+00 17683 0008-217#白M SPMX-20240815312904 \N \N \N 1 \N [{"file_id": "bb49b3e3-d0d9-4983-a18d-99db2ddb8c06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b67b612da5a840f0a6d939a1e85befa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b67b612da5a840f0a6d939a1e85befa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b67b612da5a840f0a6d939a1e85befa3.jpg", "file_size": 15336, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#白M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67b612da5a840f0a6d939a1e85befa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67b612da5a840f0a6d939a1e85befa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67b612da5a840f0a6d939a1e85befa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b67b612da5a840f0a6d939a1e85befa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b67b612da5a840f0a6d939a1e85befa3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Fjufudd5a2L0zT6rooqL72yYfw=", "createTime": "2024-08-15 15:03:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.102676+00 2025-12-09 10:15:42.102681+00 17684 8565#2XL SPMX-20240815312908 \N \N \N 1 \N [{"file_id": "fa2d1e98-dbd3-4dc0-a47f-8eaaef53ba31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b75e199ba6d045caa7546bfc555d72e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b75e199ba6d045caa7546bfc555d72e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b75e199ba6d045caa7546bfc555d72e6.jpg", "file_size": 16480, "is_delete": false, "file_type": 1, "original_file_name": "8565#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e199ba6d045caa7546bfc555d72e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e199ba6d045caa7546bfc555d72e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b75e199ba6d045caa7546bfc555d72e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b75e199ba6d045caa7546bfc555d72e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b75e199ba6d045caa7546bfc555d72e6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RDJEwHUaq_w6viKVnFBn_JgoZKU=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.105521+00 2025-12-09 10:15:42.105526+00 17685 JTSS829FW#VS-D3 SPMX-20240815312916 \N \N \N 1 \N [{"file_id": "224f56d6-b661-4c0c-bb68-1ca99790a952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c801af35fbce409ba9c1c0fb487ad0ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c801af35fbce409ba9c1c0fb487ad0ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c801af35fbce409ba9c1c0fb487ad0ad.jpg", "file_size": 13312, "is_delete": false, "file_type": 1, "original_file_name": "JTSS829FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801af35fbce409ba9c1c0fb487ad0ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801af35fbce409ba9c1c0fb487ad0ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c801af35fbce409ba9c1c0fb487ad0ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c801af35fbce409ba9c1c0fb487ad0ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c801af35fbce409ba9c1c0fb487ad0ad.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MuMezH1-P5mSSny8VOg-iRX6pXU=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.108658+00 2025-12-09 10:15:42.108665+00 17686 CCH1024#黄色 SPMX-20240815312909 \N \N \N 1 \N [{"file_id": "4708f5ee-ff72-4b4a-9037-9016c20f5b1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "045d673256a943308341ea7da549ddc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "045d673256a943308341ea7da549ddc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "045d673256a943308341ea7da549ddc9.jpg", "file_size": 15166, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045d673256a943308341ea7da549ddc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045d673256a943308341ea7da549ddc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045d673256a943308341ea7da549ddc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/045d673256a943308341ea7da549ddc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/045d673256a943308341ea7da549ddc9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vX2nFrGrhJ7ALIfCCWwBJYqPVfU=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.111765+00 2025-12-09 10:15:42.111771+00 17687 LJH1903#绿色 SPMX-20240815312913 \N \N \N 1 \N [{"file_id": "2c2dccac-2bbc-4580-a88f-7bc05515357a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a65c2bf273049b4a65e642b80940fd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a65c2bf273049b4a65e642b80940fd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a65c2bf273049b4a65e642b80940fd5.jpg", "file_size": 65263, "is_delete": false, "file_type": 1, "original_file_name": "LJH1903#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65c2bf273049b4a65e642b80940fd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65c2bf273049b4a65e642b80940fd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a65c2bf273049b4a65e642b80940fd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a65c2bf273049b4a65e642b80940fd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a65c2bf273049b4a65e642b80940fd5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEbrzwtzp5IAbV9_JuVoYlWCu8I=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.114772+00 2025-12-09 10:15:42.114778+00 17688 231483#-007-4-混码 SPMX-20240815312915 \N \N \N 1 \N [{"file_id": "a2bd3097-b6e4-41a5-9ab5-d66b694181f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e79cfbe43c14a1ea78a777e46ceeb52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e79cfbe43c14a1ea78a777e46ceeb52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e79cfbe43c14a1ea78a777e46ceeb52.jpg", "file_size": 30462, "is_delete": false, "file_type": 1, "original_file_name": "231483#-007-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79cfbe43c14a1ea78a777e46ceeb52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79cfbe43c14a1ea78a777e46ceeb52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e79cfbe43c14a1ea78a777e46ceeb52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e79cfbe43c14a1ea78a777e46ceeb52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e79cfbe43c14a1ea78a777e46ceeb52.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T1Xm74BDJ6xDL-v0l2stwZBhL5g=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.117661+00 2025-12-09 10:15:42.117667+00 17689 HX9008#灰色花鸟 SPMX-20240815312910 \N \N \N 1 \N [{"file_id": "d2660f49-5088-4929-85bd-195aee95b726", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ffba99b990f427b837b8498a52bb6c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ffba99b990f427b837b8498a52bb6c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ffba99b990f427b837b8498a52bb6c6.jpg", "file_size": 13522, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#灰色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffba99b990f427b837b8498a52bb6c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffba99b990f427b837b8498a52bb6c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ffba99b990f427b837b8498a52bb6c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ffba99b990f427b837b8498a52bb6c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ffba99b990f427b837b8498a52bb6c6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:olsLQLHZfOsqwxRjWkXj-jS07eo=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.12053+00 2025-12-09 10:15:42.120535+00 17690 LZ1375#上身2号色 SPMX-20240815312907 \N \N \N 1 \N [{"file_id": "6cc45dba-1cab-437c-b87d-5c0087bd64ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f3358975ba4d4b93df00f7abb79dd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f3358975ba4d4b93df00f7abb79dd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f3358975ba4d4b93df00f7abb79dd6.jpg", "file_size": 19782, "is_delete": false, "file_type": 1, "original_file_name": "LZ1375#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f3358975ba4d4b93df00f7abb79dd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f3358975ba4d4b93df00f7abb79dd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f3358975ba4d4b93df00f7abb79dd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f3358975ba4d4b93df00f7abb79dd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f3358975ba4d4b93df00f7abb79dd6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qkNgYyitNKjkaSxMztP5MZohU0g=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.123452+00 2025-12-09 10:15:42.123458+00 17691 0008-217#白XL SPMX-20240815312912 \N \N \N 1 \N [{"file_id": "7ccc3717-f83a-46c7-b008-28dcb0715b1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4631896468e342f2a24a8e17477103a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4631896468e342f2a24a8e17477103a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4631896468e342f2a24a8e17477103a1.jpg", "file_size": 16866, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#白XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4631896468e342f2a24a8e17477103a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4631896468e342f2a24a8e17477103a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4631896468e342f2a24a8e17477103a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4631896468e342f2a24a8e17477103a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4631896468e342f2a24a8e17477103a1.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iObCKApr9hF-mMZ5qEWdVvR3A_4=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.126448+00 2025-12-09 10:15:42.126454+00 17692 FX0003-187#RC23 SPMX-20240815312911 \N \N \N 1 \N [{"file_id": "7221281c-8d60-487c-8ed1-78dc2134b80b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "deceb40f23ff49a191f98fc472ea53b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "deceb40f23ff49a191f98fc472ea53b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "deceb40f23ff49a191f98fc472ea53b7.jpg", "file_size": 48540, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-187#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deceb40f23ff49a191f98fc472ea53b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deceb40f23ff49a191f98fc472ea53b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/deceb40f23ff49a191f98fc472ea53b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/deceb40f23ff49a191f98fc472ea53b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/deceb40f23ff49a191f98fc472ea53b7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F5VUb4NIkCHJq7l_rAmlyPS2O9I=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.129419+00 2025-12-09 10:15:42.129425+00 17693 DL31763#下摆批布深水红 SPMX-20240815312914 \N \N \N 1 \N [{"file_id": "2a76d473-3b4b-45ca-bc99-950499b72204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb3cae23db3145a39887fa1c9f5efbf8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb3cae23db3145a39887fa1c9f5efbf8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb3cae23db3145a39887fa1c9f5efbf8.jpg", "file_size": 69211, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb3cae23db3145a39887fa1c9f5efbf8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb3cae23db3145a39887fa1c9f5efbf8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb3cae23db3145a39887fa1c9f5efbf8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb3cae23db3145a39887fa1c9f5efbf8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb3cae23db3145a39887fa1c9f5efbf8.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReprgDqUWkmGN_ke2jMpCHmBy8s=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.132361+00 2025-12-09 10:15:42.132368+00 17694 1231-27FWF#小童8码+4码 SPMX-20240815312917 \N \N \N 1 \N [{"file_id": "92173036-8b88-4304-b6b4-15ee72b74db6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ed749813e46403981a93743d7da0179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ed749813e46403981a93743d7da0179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ed749813e46403981a93743d7da0179.jpg", "file_size": 21652, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed749813e46403981a93743d7da0179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed749813e46403981a93743d7da0179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed749813e46403981a93743d7da0179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ed749813e46403981a93743d7da0179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ed749813e46403981a93743d7da0179.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ewR22tU59iyLDGBTLSu7_Pime10=", "createTime": "2024-08-15 15:03:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.135284+00 2025-12-09 10:15:42.13529+00 17695 231483#-008-1-混码 SPMX-20240815312927 \N \N \N 1 \N [{"file_id": "efabd228-9b53-4d56-9a2a-56409a134692", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abf3c15a1045479f847f072f0565a648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abf3c15a1045479f847f072f0565a648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abf3c15a1045479f847f072f0565a648.jpg", "file_size": 30265, "is_delete": false, "file_type": 1, "original_file_name": "231483#-008-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf3c15a1045479f847f072f0565a648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf3c15a1045479f847f072f0565a648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abf3c15a1045479f847f072f0565a648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abf3c15a1045479f847f072f0565a648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abf3c15a1045479f847f072f0565a648.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdlu7BJtT3PMQia21eqWCm31OHM=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.138162+00 2025-12-09 10:15:42.138168+00 17696 HX9008#灰色花鸟袖子补数 SPMX-20240815312924 \N \N \N 1 \N [{"file_id": "1eb1a50b-220d-4aba-a63e-8fe725c6709b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b4fb089ac8449a95e5872929bc74da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b4fb089ac8449a95e5872929bc74da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b4fb089ac8449a95e5872929bc74da.jpg", "file_size": 12977, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#灰色花鸟袖子补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b4fb089ac8449a95e5872929bc74da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b4fb089ac8449a95e5872929bc74da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b4fb089ac8449a95e5872929bc74da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b4fb089ac8449a95e5872929bc74da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b4fb089ac8449a95e5872929bc74da.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrOYfFky_eN9xYwbHLSlqGkSOFA=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.140996+00 2025-12-09 10:15:42.141003+00 17697 JTSS830FW#VS-D3 SPMX-20240815312926 \N \N \N 1 \N [{"file_id": "51e9c3cd-f544-4c63-9adb-e20a74f45a05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56c9946e668644558f2404ae2aa2af50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56c9946e668644558f2404ae2aa2af50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56c9946e668644558f2404ae2aa2af50.jpg", "file_size": 8103, "is_delete": false, "file_type": 1, "original_file_name": "JTSS830FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c9946e668644558f2404ae2aa2af50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c9946e668644558f2404ae2aa2af50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c9946e668644558f2404ae2aa2af50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56c9946e668644558f2404ae2aa2af50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56c9946e668644558f2404ae2aa2af50.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8_l3fhqPu19a24WG_93HWSdhIk=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.143826+00 2025-12-09 10:15:42.143832+00 17698 8565#4XL SPMX-20240815312930 \N \N \N 1 \N [{"file_id": "0bbc69a4-6306-4058-8696-4fad882f7224", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8321495c5f4946009a9c8bd8f0a42475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8321495c5f4946009a9c8bd8f0a42475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8321495c5f4946009a9c8bd8f0a42475.jpg", "file_size": 17016, "is_delete": false, "file_type": 1, "original_file_name": "8565#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321495c5f4946009a9c8bd8f0a42475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321495c5f4946009a9c8bd8f0a42475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8321495c5f4946009a9c8bd8f0a42475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8321495c5f4946009a9c8bd8f0a42475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8321495c5f4946009a9c8bd8f0a42475.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6eqZ0JDsqDua9IjPYHn4orpbRs=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.146772+00 2025-12-09 10:15:42.146778+00 17699 0008-217#黑2XL SPMX-20240815312921 \N \N \N 1 \N [{"file_id": "bc920fd5-d926-41a8-8d8b-c08db79c6a41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6736aeda9a6b48df8790130e5732e774.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6736aeda9a6b48df8790130e5732e774.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6736aeda9a6b48df8790130e5732e774.jpg", "file_size": 19308, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#黑2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736aeda9a6b48df8790130e5732e774.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736aeda9a6b48df8790130e5732e774.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6736aeda9a6b48df8790130e5732e774.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6736aeda9a6b48df8790130e5732e774.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6736aeda9a6b48df8790130e5732e774.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKKL551DGvv-w_pF36EniGfh0WA=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.149863+00 2025-12-09 10:15:42.149869+00 17700 LZ1375#上身3号色 SPMX-20240815312918 \N \N \N 1 \N [{"file_id": "fc3c0266-3a5a-4bd8-945c-f889b2d19572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52c76044c8f1458689051f9a99023109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52c76044c8f1458689051f9a99023109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52c76044c8f1458689051f9a99023109.jpg", "file_size": 20146, "is_delete": false, "file_type": 1, "original_file_name": "LZ1375#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c76044c8f1458689051f9a99023109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c76044c8f1458689051f9a99023109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52c76044c8f1458689051f9a99023109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52c76044c8f1458689051f9a99023109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52c76044c8f1458689051f9a99023109.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OkkYnN-5a1PngIjwbu91HELWNSo=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.152609+00 2025-12-09 10:15:42.152614+00 17701 FX0003-188#RC23 SPMX-20240815312922 \N \N \N 1 \N [{"file_id": "fc238fe9-fc3b-43a7-8876-9a15fe5af53e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "633ca35784b640b19f2987ff53486b28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "633ca35784b640b19f2987ff53486b28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "633ca35784b640b19f2987ff53486b28.jpg", "file_size": 68338, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-188#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633ca35784b640b19f2987ff53486b28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633ca35784b640b19f2987ff53486b28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/633ca35784b640b19f2987ff53486b28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/633ca35784b640b19f2987ff53486b28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/633ca35784b640b19f2987ff53486b28.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gu6aG3yE3tobrGBnBaEVIRyATiI=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.155192+00 2025-12-09 10:15:42.155197+00 17702 1231-27FWF#小童袖领匹布 SPMX-20240815312929 \N \N \N 1 \N [{"file_id": "a97b85d5-bd4a-4590-8c96-c4b3d5f17b09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed1eea81d850448ba4199b09d6f5dabf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed1eea81d850448ba4199b09d6f5dabf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed1eea81d850448ba4199b09d6f5dabf.jpg", "file_size": 16444, "is_delete": false, "file_type": 1, "original_file_name": "1231-27FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed1eea81d850448ba4199b09d6f5dabf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed1eea81d850448ba4199b09d6f5dabf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed1eea81d850448ba4199b09d6f5dabf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed1eea81d850448ba4199b09d6f5dabf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed1eea81d850448ba4199b09d6f5dabf.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ja8i8NhYToAzb9h2DXEuuMMNb88=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.157677+00 2025-12-09 10:15:42.157682+00 17703 CCH1024#黑色 SPMX-20240815312920 \N \N \N 1 \N [{"file_id": "c3753104-b452-49a6-9ab5-cb62acd88327", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "882db263dac44895a010ba43107ba9ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "882db263dac44895a010ba43107ba9ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "882db263dac44895a010ba43107ba9ea.jpg", "file_size": 14239, "is_delete": false, "file_type": 1, "original_file_name": "CCH1024#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882db263dac44895a010ba43107ba9ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882db263dac44895a010ba43107ba9ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882db263dac44895a010ba43107ba9ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/882db263dac44895a010ba43107ba9ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/882db263dac44895a010ba43107ba9ea.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kY1W-kro4ESollPggCA9sTtjG00=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.160081+00 2025-12-09 10:15:42.160085+00 17704 LZ1375#上身4号色 SPMX-20240815312928 \N \N \N 1 \N [{"file_id": "f14ad52c-3bd9-49c5-a699-bba1ae8acc5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c27d8b130014776a121bfafc64de89e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c27d8b130014776a121bfafc64de89e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c27d8b130014776a121bfafc64de89e.jpg", "file_size": 18360, "is_delete": false, "file_type": 1, "original_file_name": "LZ1375#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c27d8b130014776a121bfafc64de89e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c27d8b130014776a121bfafc64de89e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c27d8b130014776a121bfafc64de89e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c27d8b130014776a121bfafc64de89e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c27d8b130014776a121bfafc64de89e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rZRi9OUw4_LZVwmk8O22Kl-8jk=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.162562+00 2025-12-09 10:15:42.162567+00 17705 DL31763#下摆批布玫红 SPMX-20240815312923 \N \N \N 1 \N [{"file_id": "073eeba7-337c-4da8-aa3f-c5c50b6cf9a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16211d9302fa412bb00f45158b87fce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16211d9302fa412bb00f45158b87fce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16211d9302fa412bb00f45158b87fce3.jpg", "file_size": 68403, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16211d9302fa412bb00f45158b87fce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16211d9302fa412bb00f45158b87fce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16211d9302fa412bb00f45158b87fce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16211d9302fa412bb00f45158b87fce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16211d9302fa412bb00f45158b87fce3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aL4cxvwOGSyA1RApdeD4A-J3MVc=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.16502+00 2025-12-09 10:15:42.165025+00 17706 8565#3XL SPMX-20240815312919 \N \N \N 1 \N [{"file_id": "430d342f-2325-4ba1-b617-0f33da0f1b3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "224cffb3e69c402ca202444daf0627ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "224cffb3e69c402ca202444daf0627ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "224cffb3e69c402ca202444daf0627ed.jpg", "file_size": 16923, "is_delete": false, "file_type": 1, "original_file_name": "8565#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224cffb3e69c402ca202444daf0627ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224cffb3e69c402ca202444daf0627ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/224cffb3e69c402ca202444daf0627ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/224cffb3e69c402ca202444daf0627ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/224cffb3e69c402ca202444daf0627ed.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Au_X9ZQVfWQjJzyZS0RKi_OwFsc=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.167511+00 2025-12-09 10:15:42.167516+00 17707 LJH1903#蓝色 SPMX-20240815312925 \N \N \N 1 \N [{"file_id": "df0c3469-5413-4a83-9275-de1c93a93c17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee1c75b2b7294e2885eabf7ac1e3024e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee1c75b2b7294e2885eabf7ac1e3024e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee1c75b2b7294e2885eabf7ac1e3024e.jpg", "file_size": 72552, "is_delete": false, "file_type": 1, "original_file_name": "LJH1903#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1c75b2b7294e2885eabf7ac1e3024e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1c75b2b7294e2885eabf7ac1e3024e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee1c75b2b7294e2885eabf7ac1e3024e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee1c75b2b7294e2885eabf7ac1e3024e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee1c75b2b7294e2885eabf7ac1e3024e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ibr1deYyJxX6gzmJaJhFXWHf-7Q=", "createTime": "2024-08-15 15:03:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.170321+00 2025-12-09 10:15:42.170327+00 17708 231483#-008-2-混码 SPMX-20240815312939 \N \N \N 1 \N [{"file_id": "12290075-9b9e-4ad8-aaaa-0d48308f7db7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c422a28ca80467e9bbd75d6424e9d32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c422a28ca80467e9bbd75d6424e9d32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c422a28ca80467e9bbd75d6424e9d32.jpg", "file_size": 31295, "is_delete": false, "file_type": 1, "original_file_name": "231483#-008-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c422a28ca80467e9bbd75d6424e9d32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c422a28ca80467e9bbd75d6424e9d32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c422a28ca80467e9bbd75d6424e9d32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c422a28ca80467e9bbd75d6424e9d32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c422a28ca80467e9bbd75d6424e9d32.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PbRUK6GY8AW0oVQqnyPjAySS0Lw=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.1732+00 2025-12-09 10:15:42.173206+00 17709 LZ1376#上身1号色 SPMX-20240815312940 \N \N \N 1 \N [{"file_id": "256b5b32-0d53-4845-9217-0ff014b19250", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "914defe16d424c48a522e59b6888f273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "914defe16d424c48a522e59b6888f273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "914defe16d424c48a522e59b6888f273.jpg", "file_size": 17233, "is_delete": false, "file_type": 1, "original_file_name": "LZ1376#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/914defe16d424c48a522e59b6888f273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/914defe16d424c48a522e59b6888f273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/914defe16d424c48a522e59b6888f273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/914defe16d424c48a522e59b6888f273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/914defe16d424c48a522e59b6888f273.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GhI3vuFTj0MDa8G9qzRxeAUCWwE=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.175996+00 2025-12-09 10:15:42.176002+00 17710 1231-28FWF#中童12码+10码 SPMX-20240815312941 \N \N \N 1 \N [{"file_id": "f6e3c863-6dc5-431e-b6b7-e369eeb0fb8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5eb3fb03b773412bb8c819d6b2e2cd05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5eb3fb03b773412bb8c819d6b2e2cd05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5eb3fb03b773412bb8c819d6b2e2cd05.jpg", "file_size": 18742, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb3fb03b773412bb8c819d6b2e2cd05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb3fb03b773412bb8c819d6b2e2cd05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb3fb03b773412bb8c819d6b2e2cd05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5eb3fb03b773412bb8c819d6b2e2cd05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5eb3fb03b773412bb8c819d6b2e2cd05.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ozaKavYD5bvFmGtGCU2QlaxRgoY=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.178837+00 2025-12-09 10:15:42.178842+00 17711 LJH1904#玫红色 SPMX-20240815312935 \N \N \N 1 \N [{"file_id": "fa6e5bc7-83a0-4e20-afdb-5911d913f53b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d412b6fe36a14d5e8042fa0edbc9c126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d412b6fe36a14d5e8042fa0edbc9c126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d412b6fe36a14d5e8042fa0edbc9c126.jpg", "file_size": 59384, "is_delete": false, "file_type": 1, "original_file_name": "LJH1904#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d412b6fe36a14d5e8042fa0edbc9c126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d412b6fe36a14d5e8042fa0edbc9c126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d412b6fe36a14d5e8042fa0edbc9c126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d412b6fe36a14d5e8042fa0edbc9c126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d412b6fe36a14d5e8042fa0edbc9c126.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZ8yvKlHjjgXyGZ0gib-hi8J9K0=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.181705+00 2025-12-09 10:15:42.181712+00 17712 HX9008#白色花鸟-150 SPMX-20240815312936 \N \N \N 1 \N [{"file_id": "5d23f5db-b275-4900-af02-0990e5c6bd4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e271785eae4e42df9a02d494df90c4a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e271785eae4e42df9a02d494df90c4a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e271785eae4e42df9a02d494df90c4a5.jpg", "file_size": 17226, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#白色花鸟-150.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e271785eae4e42df9a02d494df90c4a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e271785eae4e42df9a02d494df90c4a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e271785eae4e42df9a02d494df90c4a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e271785eae4e42df9a02d494df90c4a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e271785eae4e42df9a02d494df90c4a5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMPKpAccVCvk15aoHVJpKHxMWFs=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.184566+00 2025-12-09 10:15:42.184572+00 17713 0008-217#黑L SPMX-20240815312932 \N \N \N 1 \N [{"file_id": "f4711ef4-e2ef-4e87-9cb3-8e305a5d220e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b55846544894fa08d910d69541d22fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b55846544894fa08d910d69541d22fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b55846544894fa08d910d69541d22fe.jpg", "file_size": 18082, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#黑L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b55846544894fa08d910d69541d22fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b55846544894fa08d910d69541d22fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b55846544894fa08d910d69541d22fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b55846544894fa08d910d69541d22fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b55846544894fa08d910d69541d22fe.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BlmqwidoJyEEpbJr-GOjc0T2F9w=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.187355+00 2025-12-09 10:15:42.187361+00 17714 FX0003-189#RC23 SPMX-20240815312933 \N \N \N 1 \N [{"file_id": "afcf22e3-5ae3-4cbb-a9c5-7a4cbd71f13b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f95840fcd3254be5aa04e975f5f05c5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f95840fcd3254be5aa04e975f5f05c5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f95840fcd3254be5aa04e975f5f05c5b.jpg", "file_size": 56995, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-189#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95840fcd3254be5aa04e975f5f05c5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95840fcd3254be5aa04e975f5f05c5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95840fcd3254be5aa04e975f5f05c5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f95840fcd3254be5aa04e975f5f05c5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f95840fcd3254be5aa04e975f5f05c5b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:caW87XVkaQFtE7ZBDv5u2R8OUIE=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.190196+00 2025-12-09 10:15:42.190203+00 17715 DL31763#下摆批布蓝绿 SPMX-20240815312934 \N \N \N 1 \N [{"file_id": "1ae98e43-f9bb-40b2-b83f-7bc67e350748", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ea154b695b549098a313816a861ea42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ea154b695b549098a313816a861ea42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ea154b695b549098a313816a861ea42.jpg", "file_size": 67344, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ea154b695b549098a313816a861ea42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ea154b695b549098a313816a861ea42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ea154b695b549098a313816a861ea42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ea154b695b549098a313816a861ea42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ea154b695b549098a313816a861ea42.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3HbcYFR_FXhrvOG3kj-dY8bd80=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.193084+00 2025-12-09 10:15:42.193089+00 17716 8565#5XL SPMX-20240815312938 \N \N \N 1 \N [{"file_id": "448a52bb-32a8-464a-b84b-5f33a0fc654e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f90efe6a32354910a96a07ef1304bd25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f90efe6a32354910a96a07ef1304bd25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f90efe6a32354910a96a07ef1304bd25.jpg", "file_size": 16587, "is_delete": false, "file_type": 1, "original_file_name": "8565#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90efe6a32354910a96a07ef1304bd25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90efe6a32354910a96a07ef1304bd25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90efe6a32354910a96a07ef1304bd25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f90efe6a32354910a96a07ef1304bd25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f90efe6a32354910a96a07ef1304bd25.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZVbSgh-PlRoFRlcx11iPzwa0ARQ=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.195932+00 2025-12-09 10:15:42.195939+00 17717 JTSS831FW#VS-D3 SPMX-20240815312937 \N \N \N 1 \N [{"file_id": "5f9e2901-8095-4ed4-a245-af57502ba273", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd2896bb392d466aa7e853aa960742ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd2896bb392d466aa7e853aa960742ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd2896bb392d466aa7e853aa960742ed.jpg", "file_size": 9211, "is_delete": false, "file_type": 1, "original_file_name": "JTSS831FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2896bb392d466aa7e853aa960742ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2896bb392d466aa7e853aa960742ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2896bb392d466aa7e853aa960742ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd2896bb392d466aa7e853aa960742ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd2896bb392d466aa7e853aa960742ed.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mCFJfaawHDL2u84hxowy1F_uo50=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.198798+00 2025-12-09 10:15:42.198805+00 17718 CCH50318#宝蓝 SPMX-20240815312942 \N \N \N 1 \N [{"file_id": "1ba0ca46-2730-4817-a1ea-eafe3cf9f2c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5d05e54c8bc451a8738a823ec3efec6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5d05e54c8bc451a8738a823ec3efec6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5d05e54c8bc451a8738a823ec3efec6.jpg", "file_size": 20810, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d05e54c8bc451a8738a823ec3efec6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d05e54c8bc451a8738a823ec3efec6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d05e54c8bc451a8738a823ec3efec6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5d05e54c8bc451a8738a823ec3efec6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5d05e54c8bc451a8738a823ec3efec6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFqZRP4DE4YhD_lOJjV5dY83uy0=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.201679+00 2025-12-09 10:15:42.201685+00 17719 CCH50318#卡其色 SPMX-20240815312931 \N \N \N 1 \N [{"file_id": "2b3a99e6-63bf-4f58-ae87-dc426ad46056", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5770edb651c40d6a5645a5655783572.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5770edb651c40d6a5645a5655783572.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5770edb651c40d6a5645a5655783572.jpg", "file_size": 18527, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#卡其色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5770edb651c40d6a5645a5655783572.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5770edb651c40d6a5645a5655783572.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5770edb651c40d6a5645a5655783572.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5770edb651c40d6a5645a5655783572.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5770edb651c40d6a5645a5655783572.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YL_wDCOzmyDrSnbAWB25RcV8O1Q=", "createTime": "2024-08-15 15:03:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.204606+00 2025-12-09 10:15:42.204612+00 17720 HX9008#白色花鸟 SPMX-20240815312945 \N \N \N 1 \N [{"file_id": "34e10d7f-cc07-4a5a-af99-d57da08c230c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15fe0d6301d47029c3893e1490c5c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15fe0d6301d47029c3893e1490c5c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15fe0d6301d47029c3893e1490c5c04.jpg", "file_size": 14859, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#白色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15fe0d6301d47029c3893e1490c5c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15fe0d6301d47029c3893e1490c5c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15fe0d6301d47029c3893e1490c5c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15fe0d6301d47029c3893e1490c5c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15fe0d6301d47029c3893e1490c5c04.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZ5N4d-oqvIYoiecMdtN8-UBNgw=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.207513+00 2025-12-09 10:15:42.207519+00 17721 1231-28FWF#中童14码 SPMX-20240815312951 \N \N \N 1 \N [{"file_id": "3336171e-4a48-480f-a99c-641744047246", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "460407f423a0448bb9258d3f1b563fba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "460407f423a0448bb9258d3f1b563fba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "460407f423a0448bb9258d3f1b563fba.jpg", "file_size": 17221, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460407f423a0448bb9258d3f1b563fba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460407f423a0448bb9258d3f1b563fba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/460407f423a0448bb9258d3f1b563fba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/460407f423a0448bb9258d3f1b563fba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/460407f423a0448bb9258d3f1b563fba.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9PTdYMvGT29TUSgoZNQN_l64Ro=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.210384+00 2025-12-09 10:15:42.210391+00 17722 FX0003-19#RC23 SPMX-20240815312943 \N \N \N 1 \N [{"file_id": "a259f057-9bd4-4139-8032-5fea00c4ae08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3a32d01e34e40f69dd2d3486b4cf2f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3a32d01e34e40f69dd2d3486b4cf2f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3a32d01e34e40f69dd2d3486b4cf2f4.jpg", "file_size": 12562, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-19#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a32d01e34e40f69dd2d3486b4cf2f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a32d01e34e40f69dd2d3486b4cf2f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3a32d01e34e40f69dd2d3486b4cf2f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3a32d01e34e40f69dd2d3486b4cf2f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3a32d01e34e40f69dd2d3486b4cf2f4.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5zg_IpeYDKWGVLwwlFRRl4ZEcyE=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.213289+00 2025-12-09 10:15:42.213295+00 17723 LJH1904#白色 SPMX-20240815312952 \N \N \N 1 \N [{"file_id": "765594d2-298f-496e-8fce-7da0bd747e0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b019c8be957b4d48bcfdb835c3152206.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b019c8be957b4d48bcfdb835c3152206.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b019c8be957b4d48bcfdb835c3152206.jpg", "file_size": 54846, "is_delete": false, "file_type": 1, "original_file_name": "LJH1904#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b019c8be957b4d48bcfdb835c3152206.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b019c8be957b4d48bcfdb835c3152206.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b019c8be957b4d48bcfdb835c3152206.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b019c8be957b4d48bcfdb835c3152206.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b019c8be957b4d48bcfdb835c3152206.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSHkm745-anIzql0y2zujNbQJOU=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.216165+00 2025-12-09 10:15:42.216171+00 17724 DL31763#下摆批布黄色 SPMX-20240815312947 \N \N \N 1 \N [{"file_id": "61de104b-29cc-4afe-a0f7-5f0d9027a485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1867931b551846ea8498441a0f192552.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1867931b551846ea8498441a0f192552.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1867931b551846ea8498441a0f192552.jpg", "file_size": 69119, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#下摆批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867931b551846ea8498441a0f192552.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867931b551846ea8498441a0f192552.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1867931b551846ea8498441a0f192552.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1867931b551846ea8498441a0f192552.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1867931b551846ea8498441a0f192552.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BRoyvag4EeDPCYY99FllmBhbenU=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.219041+00 2025-12-09 10:15:42.219047+00 17725 LZ1376#上身2号色 SPMX-20240815312950 \N \N \N 1 \N [{"file_id": "dd3abe38-8c2f-41d2-91a0-b953b0c42b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg", "file_size": 17372, "is_delete": false, "file_type": 1, "original_file_name": "LZ1376#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a8e0f2ef7e64a94a46d1da78a3f6af2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FZuhz2LDf6c-Q35igr8YFYThP68=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.22178+00 2025-12-09 10:15:42.221787+00 17726 0008-217#黑M SPMX-20240815312944 \N \N \N 1 \N [{"file_id": "65356a55-7f4e-4c21-a42f-eb11a2350219", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64cd4ab45be84c02996ebf0c1b4e6b0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64cd4ab45be84c02996ebf0c1b4e6b0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64cd4ab45be84c02996ebf0c1b4e6b0d.jpg", "file_size": 17938, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#黑M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cd4ab45be84c02996ebf0c1b4e6b0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cd4ab45be84c02996ebf0c1b4e6b0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64cd4ab45be84c02996ebf0c1b4e6b0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64cd4ab45be84c02996ebf0c1b4e6b0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64cd4ab45be84c02996ebf0c1b4e6b0d.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fRMLxaQBxX673BTnjpsJHyvCezM=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.224665+00 2025-12-09 10:15:42.224671+00 17727 231483#-008-3-混码 SPMX-20240815312948 \N \N \N 1 \N [{"file_id": "0546f5a0-d479-4ef6-b9af-1d3271110cc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83e256227e144119a355aaf16f31bd92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83e256227e144119a355aaf16f31bd92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83e256227e144119a355aaf16f31bd92.jpg", "file_size": 31018, "is_delete": false, "file_type": 1, "original_file_name": "231483#-008-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e256227e144119a355aaf16f31bd92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e256227e144119a355aaf16f31bd92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83e256227e144119a355aaf16f31bd92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83e256227e144119a355aaf16f31bd92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83e256227e144119a355aaf16f31bd92.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73pacSFvZbLjuhCQk00stRwkhCo=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.227518+00 2025-12-09 10:15:42.227524+00 17728 8565#XL SPMX-20240815312946 \N \N \N 1 \N [{"file_id": "5a3f536c-9673-4d62-b546-910ea04db98e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a11e0c715354a60bb1b4136c70df3df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a11e0c715354a60bb1b4136c70df3df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a11e0c715354a60bb1b4136c70df3df.jpg", "file_size": 16801, "is_delete": false, "file_type": 1, "original_file_name": "8565#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a11e0c715354a60bb1b4136c70df3df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a11e0c715354a60bb1b4136c70df3df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a11e0c715354a60bb1b4136c70df3df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a11e0c715354a60bb1b4136c70df3df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a11e0c715354a60bb1b4136c70df3df.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jED6XJpqmWqltNFyCLZupY6oOfQ=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.23041+00 2025-12-09 10:15:42.230416+00 17729 JTSS832FW#VS-D3 SPMX-20240815312949 \N \N \N 1 \N [{"file_id": "d538a070-1806-4f47-a2e2-b9145e5e5d60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f01393864094ac2885798e3ed6985f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f01393864094ac2885798e3ed6985f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f01393864094ac2885798e3ed6985f8.jpg", "file_size": 9375, "is_delete": false, "file_type": 1, "original_file_name": "JTSS832FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f01393864094ac2885798e3ed6985f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f01393864094ac2885798e3ed6985f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f01393864094ac2885798e3ed6985f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f01393864094ac2885798e3ed6985f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f01393864094ac2885798e3ed6985f8.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nx9qq8SriwvDdZrgD-A-H_5MTnY=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.233325+00 2025-12-09 10:15:42.233332+00 17730 8565#捆条 SPMX-20240815312959 \N \N \N 1 \N [{"file_id": "ba6e8097-029c-443e-8742-8b41b5f3900c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0814f5fb23ed403a9aa454e75a52d3c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0814f5fb23ed403a9aa454e75a52d3c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0814f5fb23ed403a9aa454e75a52d3c3.jpg", "file_size": 17625, "is_delete": false, "file_type": 1, "original_file_name": "8565#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0814f5fb23ed403a9aa454e75a52d3c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0814f5fb23ed403a9aa454e75a52d3c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0814f5fb23ed403a9aa454e75a52d3c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0814f5fb23ed403a9aa454e75a52d3c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0814f5fb23ed403a9aa454e75a52d3c3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsDf2M956T8ZWVGn95NyT39tats=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.247984+00 2025-12-09 10:15:42.24799+00 17735 CCH50318#枣红 SPMX-20240815312953 \N \N \N 1 \N [{"file_id": "004e0d9f-f1b7-402e-b7d3-c01c229129a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0287eb77eca4966969188d1077077c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0287eb77eca4966969188d1077077c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0287eb77eca4966969188d1077077c9.jpg", "file_size": 19406, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0287eb77eca4966969188d1077077c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0287eb77eca4966969188d1077077c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0287eb77eca4966969188d1077077c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0287eb77eca4966969188d1077077c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0287eb77eca4966969188d1077077c9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Meg7a9_FAWexegt53kMetMEepT4=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.236184+00 2025-12-09 10:15:42.236189+00 17731 HX9008#白色花鸟袖子补数 SPMX-20240815312956 \N \N \N 1 \N [{"file_id": "69313660-e2a0-44dd-ad47-56b588ca290c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0903cffd005341fa85a8bccf2a88b30b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0903cffd005341fa85a8bccf2a88b30b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0903cffd005341fa85a8bccf2a88b30b.jpg", "file_size": 13522, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#白色花鸟袖子补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0903cffd005341fa85a8bccf2a88b30b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0903cffd005341fa85a8bccf2a88b30b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0903cffd005341fa85a8bccf2a88b30b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0903cffd005341fa85a8bccf2a88b30b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0903cffd005341fa85a8bccf2a88b30b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v9LN3mi4PFQFDzvsHNDU69xCkcU=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.239042+00 2025-12-09 10:15:42.239048+00 17732 JTSS833FW#粉VS-D3 SPMX-20240815312960 \N \N \N 1 \N [{"file_id": "034425c1-a3db-4edc-a4de-aa734d31911f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfa129e5a7e41c497129b4d0a858db0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfa129e5a7e41c497129b4d0a858db0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfa129e5a7e41c497129b4d0a858db0.jpg", "file_size": 9038, "is_delete": false, "file_type": 1, "original_file_name": "JTSS833FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfa129e5a7e41c497129b4d0a858db0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfa129e5a7e41c497129b4d0a858db0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfa129e5a7e41c497129b4d0a858db0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfa129e5a7e41c497129b4d0a858db0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfa129e5a7e41c497129b4d0a858db0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k591AayZ95VKuvA8XEOARL9PX88=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.241932+00 2025-12-09 10:15:42.241938+00 17733 231483#-008-4-混码 SPMX-20240815312957 \N \N \N 1 \N [{"file_id": "651565ea-88e6-4442-b13b-26f29ebc6159", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c5ba1d28466440899e06ab7015da80d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c5ba1d28466440899e06ab7015da80d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c5ba1d28466440899e06ab7015da80d.jpg", "file_size": 32105, "is_delete": false, "file_type": 1, "original_file_name": "231483#-008-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5ba1d28466440899e06ab7015da80d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5ba1d28466440899e06ab7015da80d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c5ba1d28466440899e06ab7015da80d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c5ba1d28466440899e06ab7015da80d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c5ba1d28466440899e06ab7015da80d.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EV5-mVCRLey5SGTribMtIZvlq6U=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.2448+00 2025-12-09 10:15:42.244807+00 17734 DL31763#前幅大红 SPMX-20240815312958 \N \N \N 1 \N [{"file_id": "a02db155-f507-40b0-ae56-b4c26668ccc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f982ec065c340208dd6130c53d60cbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f982ec065c340208dd6130c53d60cbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f982ec065c340208dd6130c53d60cbd.jpg", "file_size": 46095, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f982ec065c340208dd6130c53d60cbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f982ec065c340208dd6130c53d60cbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f982ec065c340208dd6130c53d60cbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f982ec065c340208dd6130c53d60cbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f982ec065c340208dd6130c53d60cbd.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzQml1ZqBdtI1UVyXApAm9iM1Jg=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.251137+00 2025-12-09 10:15:42.251143+00 17736 0008-217#黑XL SPMX-20240815312955 \N \N \N 1 \N [{"file_id": "27270d20-f26e-4f28-af30-9c96240d8471", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f268701aa724338bc5eda61ad727d57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f268701aa724338bc5eda61ad727d57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f268701aa724338bc5eda61ad727d57.jpg", "file_size": 18850, "is_delete": false, "file_type": 1, "original_file_name": "0008-217#黑XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f268701aa724338bc5eda61ad727d57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f268701aa724338bc5eda61ad727d57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f268701aa724338bc5eda61ad727d57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f268701aa724338bc5eda61ad727d57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f268701aa724338bc5eda61ad727d57.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5mHIPieKarzPeBb3_OjMCn3_TLY=", "createTime": "2024-08-15 15:03:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.254356+00 2025-12-09 10:15:42.254363+00 17737 FX0003-190#RC23 SPMX-20240815312954 \N \N \N 1 \N [{"file_id": "82e8d444-23c9-42fd-ae43-3d1987266c1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "606ea182204c414bac9cf718cb0086f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "606ea182204c414bac9cf718cb0086f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "606ea182204c414bac9cf718cb0086f3.jpg", "file_size": 52516, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-190#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606ea182204c414bac9cf718cb0086f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606ea182204c414bac9cf718cb0086f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/606ea182204c414bac9cf718cb0086f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/606ea182204c414bac9cf718cb0086f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/606ea182204c414bac9cf718cb0086f3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NsKQO51o_bt_NKIU-Y4a-cSNyY=", "createTime": "2024-08-15 15:03:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.25761+00 2025-12-09 10:15:42.257617+00 17738 1231-28FWF#中童袖领匹布 SPMX-20240815312962 \N \N \N 1 \N [{"file_id": "81f96231-4747-463f-9b82-4abda6e3112f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "184ca8f61eb6482f99758bda735ca0b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "184ca8f61eb6482f99758bda735ca0b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "184ca8f61eb6482f99758bda735ca0b6.jpg", "file_size": 16314, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/184ca8f61eb6482f99758bda735ca0b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/184ca8f61eb6482f99758bda735ca0b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/184ca8f61eb6482f99758bda735ca0b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/184ca8f61eb6482f99758bda735ca0b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/184ca8f61eb6482f99758bda735ca0b6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MufZnSK1rP0uVZNzZ1SomCaG0l0=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.261006+00 2025-12-09 10:15:42.261013+00 17739 LZ1376#上身3号色 SPMX-20240815312961 \N \N \N 1 \N [{"file_id": "9f591176-2fb5-4e93-8a17-927d51494243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b70db760a684ce29675b93e2d401ca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b70db760a684ce29675b93e2d401ca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b70db760a684ce29675b93e2d401ca2.jpg", "file_size": 16619, "is_delete": false, "file_type": 1, "original_file_name": "LZ1376#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b70db760a684ce29675b93e2d401ca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b70db760a684ce29675b93e2d401ca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b70db760a684ce29675b93e2d401ca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b70db760a684ce29675b93e2d401ca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b70db760a684ce29675b93e2d401ca2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HVZq8za8I_oqkpcN06ShYSXSujs=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.264221+00 2025-12-09 10:15:42.264228+00 17740 JTSS833FW#蓝VS-D3 SPMX-20240815312971 \N \N \N 1 \N [{"file_id": "7e03300f-29e7-4869-9d4c-fb617f947ec2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6747056545ef40f3a47a53ef500b2b26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6747056545ef40f3a47a53ef500b2b26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6747056545ef40f3a47a53ef500b2b26.jpg", "file_size": 9209, "is_delete": false, "file_type": 1, "original_file_name": "JTSS833FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6747056545ef40f3a47a53ef500b2b26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6747056545ef40f3a47a53ef500b2b26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6747056545ef40f3a47a53ef500b2b26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6747056545ef40f3a47a53ef500b2b26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6747056545ef40f3a47a53ef500b2b26.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-k7o2gu_A0siUqFMIR_wJTN1mjg=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.267454+00 2025-12-09 10:15:42.267461+00 17741 DL31763#前幅彩兰 SPMX-20240815312963 \N \N \N 1 \N [{"file_id": "78527477-6cf5-4523-9f9b-a547751b2233", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b10565e0c694e2a833ead5230885bc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b10565e0c694e2a833ead5230885bc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b10565e0c694e2a833ead5230885bc5.jpg", "file_size": 45690, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b10565e0c694e2a833ead5230885bc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b10565e0c694e2a833ead5230885bc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b10565e0c694e2a833ead5230885bc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b10565e0c694e2a833ead5230885bc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b10565e0c694e2a833ead5230885bc5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgGEoD9mNt0a2N7-BUUoYHQv_f8=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.270607+00 2025-12-09 10:15:42.270613+00 17742 8566#2XL SPMX-20240815312967 \N \N \N 1 \N [{"file_id": "1e2c94ff-a227-445b-bd0f-718116076fe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg", "file_size": 20528, "is_delete": false, "file_type": 1, "original_file_name": "8566#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b3b87abbc9c4cbcbdc93b31b6fe9307.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_fPp7K-5SQDBCrnb9wcTVhLWDw=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.2735+00 2025-12-09 10:15:42.273507+00 17743 0008-2FWE#粉色 SPMX-20240815312966 \N \N \N 1 \N [{"file_id": "b07708b1-45a0-4fe0-a326-bd2760f77c97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3a6fbb3565044199a68dcae06b698b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3a6fbb3565044199a68dcae06b698b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3a6fbb3565044199a68dcae06b698b0.jpg", "file_size": 22723, "is_delete": false, "file_type": 1, "original_file_name": "0008-2FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a6fbb3565044199a68dcae06b698b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a6fbb3565044199a68dcae06b698b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3a6fbb3565044199a68dcae06b698b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3a6fbb3565044199a68dcae06b698b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3a6fbb3565044199a68dcae06b698b0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Sx7-fPw8SAJh6e4izJAbXkV-bA=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.276377+00 2025-12-09 10:15:42.276383+00 17744 FX0003-191#RC23 SPMX-20240815312965 \N \N \N 1 \N [{"file_id": "6827a9ed-f668-4d60-ab27-2a679dc5885e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29bd20e370cd45d9b36841d8df2c8948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29bd20e370cd45d9b36841d8df2c8948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29bd20e370cd45d9b36841d8df2c8948.jpg", "file_size": 48765, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-191#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29bd20e370cd45d9b36841d8df2c8948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29bd20e370cd45d9b36841d8df2c8948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29bd20e370cd45d9b36841d8df2c8948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29bd20e370cd45d9b36841d8df2c8948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29bd20e370cd45d9b36841d8df2c8948.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9RaFOUVeWxTGMMMRbZ3x61uhiM=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.279227+00 2025-12-09 10:15:42.279234+00 17745 231483#-009-1-混码 SPMX-20240815312964 \N \N \N 1 \N [{"file_id": "c2710f80-2199-4b68-8dfb-072e7d11f850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13fc0cf14b26414da01c0d5e00b0d72f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13fc0cf14b26414da01c0d5e00b0d72f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13fc0cf14b26414da01c0d5e00b0d72f.jpg", "file_size": 27332, "is_delete": false, "file_type": 1, "original_file_name": "231483#-009-1-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fc0cf14b26414da01c0d5e00b0d72f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fc0cf14b26414da01c0d5e00b0d72f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fc0cf14b26414da01c0d5e00b0d72f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13fc0cf14b26414da01c0d5e00b0d72f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13fc0cf14b26414da01c0d5e00b0d72f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DtNaxbrT9Q5o3AOC3HJ3kY3LQNg=", "createTime": "2024-08-15 15:03:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.282038+00 2025-12-09 10:15:42.282044+00 17746 LZ1376#上身4号色 SPMX-20240815312972 \N \N \N 1 \N [{"file_id": "081d9fe8-1414-45e2-97b8-3713a577e155", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00df763c4c224143a49a6eb7bdd213a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00df763c4c224143a49a6eb7bdd213a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00df763c4c224143a49a6eb7bdd213a4.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "LZ1376#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00df763c4c224143a49a6eb7bdd213a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00df763c4c224143a49a6eb7bdd213a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00df763c4c224143a49a6eb7bdd213a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00df763c4c224143a49a6eb7bdd213a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00df763c4c224143a49a6eb7bdd213a4.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3v5lB8rT0qhrE25hTqKUip0tlQ=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.284944+00 2025-12-09 10:15:42.284955+00 17747 LJH1904#绿色 SPMX-20240815312969 \N \N \N 1 \N [{"file_id": "b2b7ffbf-852f-4885-ae2a-4b470116f623", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3437e74af94841faac27dd5862026a22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3437e74af94841faac27dd5862026a22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3437e74af94841faac27dd5862026a22.jpg", "file_size": 54800, "is_delete": false, "file_type": 1, "original_file_name": "LJH1904#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3437e74af94841faac27dd5862026a22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3437e74af94841faac27dd5862026a22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3437e74af94841faac27dd5862026a22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3437e74af94841faac27dd5862026a22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3437e74af94841faac27dd5862026a22.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmOkfJm9f6gXBAdJ6S1tyX45iOU=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.287825+00 2025-12-09 10:15:42.287832+00 17748 CCH50318#白色 SPMX-20240815312970 \N \N \N 1 \N [{"file_id": "91401b85-988a-4c1e-9943-a791593b1160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82b480859bd24e97a91de2618d377144.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82b480859bd24e97a91de2618d377144.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82b480859bd24e97a91de2618d377144.jpg", "file_size": 19396, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b480859bd24e97a91de2618d377144.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b480859bd24e97a91de2618d377144.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b480859bd24e97a91de2618d377144.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82b480859bd24e97a91de2618d377144.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82b480859bd24e97a91de2618d377144.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ENjOnY1KKD8Z6S51vbGOCS2kyek=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.290648+00 2025-12-09 10:15:42.290654+00 17749 HX9008#粉色花鸟-150 SPMX-20240815312968 \N \N \N 1 \N [{"file_id": "e7d1a39b-8b92-4725-aeb7-7b1824077c42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12117e67bd6549b8b1485cbb0952d584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12117e67bd6549b8b1485cbb0952d584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12117e67bd6549b8b1485cbb0952d584.jpg", "file_size": 16243, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#粉色花鸟-150.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12117e67bd6549b8b1485cbb0952d584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12117e67bd6549b8b1485cbb0952d584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12117e67bd6549b8b1485cbb0952d584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12117e67bd6549b8b1485cbb0952d584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12117e67bd6549b8b1485cbb0952d584.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7F5AEbD1ks6SCrOezse8mW0ToTc=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.293574+00 2025-12-09 10:15:42.293581+00 17750 CCH50318#粉色 SPMX-20240815312980 \N \N \N 1 \N [{"file_id": "769f3b91-6a83-4153-ab4e-c5b2880991e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d4d401ce473486b96fce9bae957ed8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d4d401ce473486b96fce9bae957ed8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d4d401ce473486b96fce9bae957ed8e.jpg", "file_size": 17858, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4d401ce473486b96fce9bae957ed8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4d401ce473486b96fce9bae957ed8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4d401ce473486b96fce9bae957ed8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d4d401ce473486b96fce9bae957ed8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d4d401ce473486b96fce9bae957ed8e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqpgHvmidUSZdIvtxn1BWfoBIH8=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.296475+00 2025-12-09 10:15:42.296482+00 17751 1231-28FWF#小童6码 SPMX-20240815312973 \N \N \N 1 \N [{"file_id": "f1d35814-4567-42ba-9308-ff98cee0f578", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18e1909d29244079baf7e7fc8de70c19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18e1909d29244079baf7e7fc8de70c19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18e1909d29244079baf7e7fc8de70c19.jpg", "file_size": 20421, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e1909d29244079baf7e7fc8de70c19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e1909d29244079baf7e7fc8de70c19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18e1909d29244079baf7e7fc8de70c19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18e1909d29244079baf7e7fc8de70c19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18e1909d29244079baf7e7fc8de70c19.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cznh1pIL-nFnnUqxR6bXE84DjFo=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.29935+00 2025-12-09 10:15:42.299356+00 17752 HX9008#粉色花鸟 SPMX-20240815312979 \N \N \N 1 \N [{"file_id": "f1bf894f-d955-4670-ac39-941152f5ffc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c597ecb7ce6a4cb79b095f6bad1253bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c597ecb7ce6a4cb79b095f6bad1253bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c597ecb7ce6a4cb79b095f6bad1253bd.jpg", "file_size": 14303, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#粉色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c597ecb7ce6a4cb79b095f6bad1253bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c597ecb7ce6a4cb79b095f6bad1253bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c597ecb7ce6a4cb79b095f6bad1253bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c597ecb7ce6a4cb79b095f6bad1253bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c597ecb7ce6a4cb79b095f6bad1253bd.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H0qumhbY1BIRnMH1ZNYy9wIE804=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.302255+00 2025-12-09 10:15:42.302265+00 17753 DL31763#前幅深水红 SPMX-20240815312974 \N \N \N 1 \N [{"file_id": "b9c85c10-a328-45f3-b8cb-e3bd0c46968a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bafd1e2e24c4ad3863d8445c034a707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bafd1e2e24c4ad3863d8445c034a707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bafd1e2e24c4ad3863d8445c034a707.jpg", "file_size": 47579, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bafd1e2e24c4ad3863d8445c034a707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bafd1e2e24c4ad3863d8445c034a707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bafd1e2e24c4ad3863d8445c034a707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bafd1e2e24c4ad3863d8445c034a707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bafd1e2e24c4ad3863d8445c034a707.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M2tkx91Qexkxa3keYdRwdPqpgWE=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.305085+00 2025-12-09 10:15:42.305091+00 17754 231483#-009-2-混码 SPMX-20240815312975 \N \N \N 1 \N [{"file_id": "e544481d-d86d-43d1-9d6a-74c34e54da1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "978126b5f0924a3aaffaf60ea3a80516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "978126b5f0924a3aaffaf60ea3a80516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "978126b5f0924a3aaffaf60ea3a80516.jpg", "file_size": 30231, "is_delete": false, "file_type": 1, "original_file_name": "231483#-009-2-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/978126b5f0924a3aaffaf60ea3a80516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/978126b5f0924a3aaffaf60ea3a80516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/978126b5f0924a3aaffaf60ea3a80516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/978126b5f0924a3aaffaf60ea3a80516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/978126b5f0924a3aaffaf60ea3a80516.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wlt8OZmpujiMLwXtz3Tjug-CA9k=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.308063+00 2025-12-09 10:15:42.308069+00 17755 8566#3XL SPMX-20240815312978 \N \N \N 1 \N [{"file_id": "0145a40f-48c0-4463-acc2-b4041023f2ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe9f2d0ce1e04cc7823370d06f63ba0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe9f2d0ce1e04cc7823370d06f63ba0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe9f2d0ce1e04cc7823370d06f63ba0e.jpg", "file_size": 20505, "is_delete": false, "file_type": 1, "original_file_name": "8566#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f2d0ce1e04cc7823370d06f63ba0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f2d0ce1e04cc7823370d06f63ba0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe9f2d0ce1e04cc7823370d06f63ba0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe9f2d0ce1e04cc7823370d06f63ba0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe9f2d0ce1e04cc7823370d06f63ba0e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOrRbIfcGtGokwQyl-USuJbVgz0=", "createTime": "2024-08-15 15:03:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.310963+00 2025-12-09 10:15:42.31097+00 17756 0008-2FWE#蓝色 SPMX-20240815312977 \N \N \N 1 \N [{"file_id": "603446bf-7fec-4ce8-8c7c-9dbca9cadf9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2425a2f95f31413aa5f1d1dda44eb02b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2425a2f95f31413aa5f1d1dda44eb02b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2425a2f95f31413aa5f1d1dda44eb02b.jpg", "file_size": 20854, "is_delete": false, "file_type": 1, "original_file_name": "0008-2FWE#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2425a2f95f31413aa5f1d1dda44eb02b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2425a2f95f31413aa5f1d1dda44eb02b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2425a2f95f31413aa5f1d1dda44eb02b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2425a2f95f31413aa5f1d1dda44eb02b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2425a2f95f31413aa5f1d1dda44eb02b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cCTN7LP7aMknKFmVbJNxKyIJJzc=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.313796+00 2025-12-09 10:15:42.313802+00 17757 FX0003-192#RC23 SPMX-20240815312976 \N \N \N 1 \N [{"file_id": "b9e48b36-e8eb-495e-a601-14fdc32ba9b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "891cb61e9ea04730b7ca11bb34202d54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "891cb61e9ea04730b7ca11bb34202d54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "891cb61e9ea04730b7ca11bb34202d54.jpg", "file_size": 70339, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-192#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891cb61e9ea04730b7ca11bb34202d54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891cb61e9ea04730b7ca11bb34202d54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/891cb61e9ea04730b7ca11bb34202d54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/891cb61e9ea04730b7ca11bb34202d54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/891cb61e9ea04730b7ca11bb34202d54.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xe6YKpvifMM56wxfomylUZ0akxU=", "createTime": "2024-08-15 15:03:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.316632+00 2025-12-09 10:15:42.316638+00 17758 1231-28FWF#小童8码+4码 SPMX-20240815312982 \N \N \N 1 \N [{"file_id": "de2c49a0-575f-4c59-9c72-b0183090e9b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2032dd848a4f41c79681b14aa786d699.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2032dd848a4f41c79681b14aa786d699.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2032dd848a4f41c79681b14aa786d699.jpg", "file_size": 21048, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2032dd848a4f41c79681b14aa786d699.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2032dd848a4f41c79681b14aa786d699.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2032dd848a4f41c79681b14aa786d699.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2032dd848a4f41c79681b14aa786d699.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2032dd848a4f41c79681b14aa786d699.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hyz8QN2y6fvj_Eo9KJTVM1ZmVcU=", "createTime": "2024-08-15 15:03:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.319493+00 2025-12-09 10:15:42.3195+00 17759 JTSS834FW#VS-D3 SPMX-20240815312981 \N \N \N 1 \N [{"file_id": "4409163b-18c0-47e2-abdb-5196e0da148e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "788014ffa04344f785ccf745a52d5cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "788014ffa04344f785ccf745a52d5cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "788014ffa04344f785ccf745a52d5cc6.jpg", "file_size": 9095, "is_delete": false, "file_type": 1, "original_file_name": "JTSS834FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788014ffa04344f785ccf745a52d5cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788014ffa04344f785ccf745a52d5cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/788014ffa04344f785ccf745a52d5cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/788014ffa04344f785ccf745a52d5cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/788014ffa04344f785ccf745a52d5cc6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I2O5Oq2wWMtHLZqE8xRKYTQnL3c=", "createTime": "2024-08-15 15:03:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.322366+00 2025-12-09 10:15:42.322372+00 17760 CCH50318#黄色 SPMX-20240815312983 \N \N \N 1 \N [{"file_id": "f63f844e-4689-4429-8e68-c6a59e637090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "555e4912e5544239acf2cd39672dd056.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "555e4912e5544239acf2cd39672dd056.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "555e4912e5544239acf2cd39672dd056.jpg", "file_size": 18998, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555e4912e5544239acf2cd39672dd056.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555e4912e5544239acf2cd39672dd056.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/555e4912e5544239acf2cd39672dd056.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/555e4912e5544239acf2cd39672dd056.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/555e4912e5544239acf2cd39672dd056.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RYKJOb_ajQCPKoi28HI-J6OjzMo=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.32532+00 2025-12-09 10:15:42.325327+00 17761 HX9008#粉色花鸟袖子补数 SPMX-20240815312984 \N \N \N 1 \N [{"file_id": "483854ec-e2a7-4c0a-b89f-84a77325f850", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd79654e686c469faa47bebce3abf923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd79654e686c469faa47bebce3abf923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd79654e686c469faa47bebce3abf923.jpg", "file_size": 12929, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#粉色花鸟袖子补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd79654e686c469faa47bebce3abf923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd79654e686c469faa47bebce3abf923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd79654e686c469faa47bebce3abf923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd79654e686c469faa47bebce3abf923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd79654e686c469faa47bebce3abf923.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnD4Loj0yXgN9oDyeHrVjXrU4tU=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.32823+00 2025-12-09 10:15:42.328237+00 17762 LZ1377#上身1号色 SPMX-20240815312988 \N \N \N 1 \N [{"file_id": "2f89bbec-48be-4dff-99bc-02ffdbdf7714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2ad6ca8d2644fca83500d703f818f50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2ad6ca8d2644fca83500d703f818f50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2ad6ca8d2644fca83500d703f818f50.jpg", "file_size": 20980, "is_delete": false, "file_type": 1, "original_file_name": "LZ1377#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ad6ca8d2644fca83500d703f818f50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ad6ca8d2644fca83500d703f818f50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2ad6ca8d2644fca83500d703f818f50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2ad6ca8d2644fca83500d703f818f50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2ad6ca8d2644fca83500d703f818f50.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TyRfNcXdoNncoxCJ-Z2pdyNnRw=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.331093+00 2025-12-09 10:15:42.331099+00 17763 0008-2FWF#粉色 SPMX-20240815312986 \N \N \N 1 \N [{"file_id": "5e77e2b2-4074-4fe4-bfb6-b5cb4d46bc6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aeda30448ab242b5a5c8bbcb5ed8b297.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aeda30448ab242b5a5c8bbcb5ed8b297.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aeda30448ab242b5a5c8bbcb5ed8b297.jpg", "file_size": 22537, "is_delete": false, "file_type": 1, "original_file_name": "0008-2FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeda30448ab242b5a5c8bbcb5ed8b297.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeda30448ab242b5a5c8bbcb5ed8b297.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aeda30448ab242b5a5c8bbcb5ed8b297.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aeda30448ab242b5a5c8bbcb5ed8b297.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aeda30448ab242b5a5c8bbcb5ed8b297.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIOysQ-PDUxbcF5KvSMBd014eGE=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.333969+00 2025-12-09 10:15:42.333975+00 17764 FX0003-193#RC23 SPMX-20240815312991 \N \N \N 1 \N [{"file_id": "c7a0624a-9ab0-41bd-a6c6-d65ada289ebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "061a830ddb5b465e884186d8da9e6274.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "061a830ddb5b465e884186d8da9e6274.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "061a830ddb5b465e884186d8da9e6274.jpg", "file_size": 73774, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-193#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061a830ddb5b465e884186d8da9e6274.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061a830ddb5b465e884186d8da9e6274.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061a830ddb5b465e884186d8da9e6274.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/061a830ddb5b465e884186d8da9e6274.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/061a830ddb5b465e884186d8da9e6274.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TazwZv9fLY_Nvf5ji6rjOUgcTb4=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.336818+00 2025-12-09 10:15:42.336823+00 17765 JTSS835FW#VS-D3 SPMX-20240815312990 \N \N \N 1 \N [{"file_id": "557cbfe5-dbc8-4250-8536-ff025bac2f9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3f201e536ea42bab8e27aa31e6f1272.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3f201e536ea42bab8e27aa31e6f1272.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3f201e536ea42bab8e27aa31e6f1272.jpg", "file_size": 10914, "is_delete": false, "file_type": 1, "original_file_name": "JTSS835FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f201e536ea42bab8e27aa31e6f1272.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f201e536ea42bab8e27aa31e6f1272.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3f201e536ea42bab8e27aa31e6f1272.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3f201e536ea42bab8e27aa31e6f1272.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3f201e536ea42bab8e27aa31e6f1272.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNy0a2FVYUtCNRRFz6lJ3yOTd4s=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.339682+00 2025-12-09 10:15:42.339688+00 17766 DL31763#前幅玫红 SPMX-20240815312987 \N \N \N 1 \N [{"file_id": "6a560fee-66a7-4d3b-afb1-6beff0721912", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6342e7172b674f7397570d84d75eab31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6342e7172b674f7397570d84d75eab31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6342e7172b674f7397570d84d75eab31.jpg", "file_size": 45043, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6342e7172b674f7397570d84d75eab31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6342e7172b674f7397570d84d75eab31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6342e7172b674f7397570d84d75eab31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6342e7172b674f7397570d84d75eab31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6342e7172b674f7397570d84d75eab31.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_hZRpXt1-XVyeNFQTAX9x-VQNo=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.342542+00 2025-12-09 10:15:42.342548+00 17767 LJH1904#黑色 SPMX-20240815312989 \N \N \N 1 \N [{"file_id": "18786024-c2f4-4640-9a6c-48f5e9cbb27c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63df93877e4e42f0a470bb24219d9f48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63df93877e4e42f0a470bb24219d9f48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63df93877e4e42f0a470bb24219d9f48.jpg", "file_size": 57574, "is_delete": false, "file_type": 1, "original_file_name": "LJH1904#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63df93877e4e42f0a470bb24219d9f48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63df93877e4e42f0a470bb24219d9f48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63df93877e4e42f0a470bb24219d9f48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63df93877e4e42f0a470bb24219d9f48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63df93877e4e42f0a470bb24219d9f48.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axQCxz39xxmMNeQuLB1cKhQXhuI=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.345427+00 2025-12-09 10:15:42.345433+00 17768 231483#-009-3-混码 SPMX-20240815312992 \N \N \N 1 \N [{"file_id": "e7612eb6-f6b6-4c04-bdba-ed94aab6587a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96c4361868674b549c6fc1976a8d69f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96c4361868674b549c6fc1976a8d69f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96c4361868674b549c6fc1976a8d69f5.jpg", "file_size": 30303, "is_delete": false, "file_type": 1, "original_file_name": "231483#-009-3-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c4361868674b549c6fc1976a8d69f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c4361868674b549c6fc1976a8d69f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96c4361868674b549c6fc1976a8d69f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96c4361868674b549c6fc1976a8d69f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96c4361868674b549c6fc1976a8d69f5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEg1HGPe8BqXiFBFh3UAX2IYinM=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.348354+00 2025-12-09 10:15:42.348361+00 17769 8566#4XL SPMX-20240815312985 \N \N \N 1 \N [{"file_id": "93b761b9-1965-4b76-be52-e4f06eea694a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "162f8a88e474424aac6aab066bbe3328.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "162f8a88e474424aac6aab066bbe3328.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "162f8a88e474424aac6aab066bbe3328.jpg", "file_size": 20532, "is_delete": false, "file_type": 1, "original_file_name": "8566#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162f8a88e474424aac6aab066bbe3328.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162f8a88e474424aac6aab066bbe3328.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162f8a88e474424aac6aab066bbe3328.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/162f8a88e474424aac6aab066bbe3328.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/162f8a88e474424aac6aab066bbe3328.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-of0vRLqf2gbu8dAXhAcCn7OLB4=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.351306+00 2025-12-09 10:15:42.351311+00 17770 CCH50318#黑色 SPMX-20240815312994 \N \N \N 1 \N [{"file_id": "f334116b-c1cb-435f-b5f8-e24c529e2762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dad62c59e02246caad3794acb5a88636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dad62c59e02246caad3794acb5a88636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dad62c59e02246caad3794acb5a88636.jpg", "file_size": 19982, "is_delete": false, "file_type": 1, "original_file_name": "CCH50318#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad62c59e02246caad3794acb5a88636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad62c59e02246caad3794acb5a88636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad62c59e02246caad3794acb5a88636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dad62c59e02246caad3794acb5a88636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dad62c59e02246caad3794acb5a88636.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uOn1MYQHerM0RqEzp-293D65yek=", "createTime": "2024-08-15 15:03:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.354191+00 2025-12-09 10:15:42.354198+00 17771 HX9008#蓝色花鸟-150 SPMX-20240815312995 \N \N \N 1 \N [{"file_id": "fe1eca3d-10cd-418e-99ad-3bf2f7072f6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9ab203eff2748aca2fefca31f1766b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9ab203eff2748aca2fefca31f1766b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9ab203eff2748aca2fefca31f1766b2.jpg", "file_size": 16700, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#蓝色花鸟-150.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9ab203eff2748aca2fefca31f1766b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9ab203eff2748aca2fefca31f1766b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9ab203eff2748aca2fefca31f1766b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9ab203eff2748aca2fefca31f1766b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9ab203eff2748aca2fefca31f1766b2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwbgwKu3pUiWxiPbxk8n1dZdSiM=", "createTime": "2024-08-15 15:03:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.357023+00 2025-12-09 10:15:42.357029+00 17772 1231-28FWF#小童袖领匹布 SPMX-20240815312993 \N \N \N 1 \N [{"file_id": "83ffc95e-071c-44c5-9a9c-01126132478a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6da38c398bf3455e9d1cdd904b73a655.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6da38c398bf3455e9d1cdd904b73a655.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6da38c398bf3455e9d1cdd904b73a655.jpg", "file_size": 15864, "is_delete": false, "file_type": 1, "original_file_name": "1231-28FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da38c398bf3455e9d1cdd904b73a655.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da38c398bf3455e9d1cdd904b73a655.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6da38c398bf3455e9d1cdd904b73a655.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6da38c398bf3455e9d1cdd904b73a655.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6da38c398bf3455e9d1cdd904b73a655.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZrN5rSRL16csKwtZgM97jHiNH6U=", "createTime": "2024-08-15 15:03:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.360048+00 2025-12-09 10:15:42.360053+00 17773 CCH617#土黄 SPMX-20240815313001 \N \N \N 1 \N [{"file_id": "019a306b-224a-4289-9c61-4ee44c09b0f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfa71e76238f433c9d32e41bf1e92674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfa71e76238f433c9d32e41bf1e92674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfa71e76238f433c9d32e41bf1e92674.jpg", "file_size": 17723, "is_delete": false, "file_type": 1, "original_file_name": "CCH617#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa71e76238f433c9d32e41bf1e92674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa71e76238f433c9d32e41bf1e92674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa71e76238f433c9d32e41bf1e92674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfa71e76238f433c9d32e41bf1e92674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfa71e76238f433c9d32e41bf1e92674.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-hW7Yz43m6fANiidxRUEiMAzs8=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.362685+00 2025-12-09 10:15:42.36269+00 17774 0008-2FWF#绿色 SPMX-20240815312998 \N \N \N 1 \N [{"file_id": "6985ffeb-f513-4c5d-9722-2a3d4bf90278", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fe199835a4c4ad5b6f3e89dcd3d3898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fe199835a4c4ad5b6f3e89dcd3d3898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fe199835a4c4ad5b6f3e89dcd3d3898.jpg", "file_size": 26161, "is_delete": false, "file_type": 1, "original_file_name": "0008-2FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe199835a4c4ad5b6f3e89dcd3d3898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe199835a4c4ad5b6f3e89dcd3d3898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fe199835a4c4ad5b6f3e89dcd3d3898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fe199835a4c4ad5b6f3e89dcd3d3898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fe199835a4c4ad5b6f3e89dcd3d3898.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GWSmfVJyqYBk6W6Xpaa_YlF9U-c=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.365254+00 2025-12-09 10:15:42.365259+00 17775 DL31763#前幅蓝绿 SPMX-20240815312999 \N \N \N 1 \N [{"file_id": "4de4f418-3414-4a77-9c0a-8b6e98e51b3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7d80a18140f4e1588f552f599e4890a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7d80a18140f4e1588f552f599e4890a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7d80a18140f4e1588f552f599e4890a.jpg", "file_size": 45506, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d80a18140f4e1588f552f599e4890a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d80a18140f4e1588f552f599e4890a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7d80a18140f4e1588f552f599e4890a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7d80a18140f4e1588f552f599e4890a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7d80a18140f4e1588f552f599e4890a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IyBl3AOblTpyBir_sovGaSS7KmA=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.367767+00 2025-12-09 10:15:42.367771+00 17776 JTSS836FW#VS-D3 SPMX-20240815313000 \N \N \N 1 \N [{"file_id": "e0928e01-427f-403f-8e61-c11d230fce49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5297f2497454c36b985c9f7bc22bf67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5297f2497454c36b985c9f7bc22bf67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5297f2497454c36b985c9f7bc22bf67.jpg", "file_size": 8810, "is_delete": false, "file_type": 1, "original_file_name": "JTSS836FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5297f2497454c36b985c9f7bc22bf67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5297f2497454c36b985c9f7bc22bf67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5297f2497454c36b985c9f7bc22bf67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5297f2497454c36b985c9f7bc22bf67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5297f2497454c36b985c9f7bc22bf67.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8ss2jspbJBkQl337ULCr1UNPag=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.370304+00 2025-12-09 10:15:42.370309+00 17777 LZ1377#上身2号色 SPMX-20240815312997 \N \N \N 1 \N [{"file_id": "f76fb4fa-757d-4d37-9a49-6555d22f0ca0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4928a3bbd92a43758d95740dbeb3b08f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4928a3bbd92a43758d95740dbeb3b08f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4928a3bbd92a43758d95740dbeb3b08f.jpg", "file_size": 21137, "is_delete": false, "file_type": 1, "original_file_name": "LZ1377#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4928a3bbd92a43758d95740dbeb3b08f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4928a3bbd92a43758d95740dbeb3b08f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4928a3bbd92a43758d95740dbeb3b08f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4928a3bbd92a43758d95740dbeb3b08f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4928a3bbd92a43758d95740dbeb3b08f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbvPPZJ4IFjN_XvdrocCEAtLr7Q=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.372589+00 2025-12-09 10:15:42.372593+00 17778 8566#5XL SPMX-20240815312996 \N \N \N 1 \N [{"file_id": "b15f6908-2942-457d-8f3d-964fac37e1d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc9f82e1283b4fd2b9aac31392bbf7a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc9f82e1283b4fd2b9aac31392bbf7a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc9f82e1283b4fd2b9aac31392bbf7a6.jpg", "file_size": 20498, "is_delete": false, "file_type": 1, "original_file_name": "8566#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9f82e1283b4fd2b9aac31392bbf7a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9f82e1283b4fd2b9aac31392bbf7a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9f82e1283b4fd2b9aac31392bbf7a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc9f82e1283b4fd2b9aac31392bbf7a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc9f82e1283b4fd2b9aac31392bbf7a6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8alrTnMdvW1n7nOeGkNfr1fJmi4=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.375086+00 2025-12-09 10:15:42.375091+00 17779 231483#-009-4-混码 SPMX-20240815313002 \N \N \N 1 \N [{"file_id": "1ddefd0e-9675-49ff-86ba-8da768f96fc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08ee6fd85ddd42b6a6584fbca04397a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08ee6fd85ddd42b6a6584fbca04397a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08ee6fd85ddd42b6a6584fbca04397a2.jpg", "file_size": 29514, "is_delete": false, "file_type": 1, "original_file_name": "231483#-009-4-混码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ee6fd85ddd42b6a6584fbca04397a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ee6fd85ddd42b6a6584fbca04397a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08ee6fd85ddd42b6a6584fbca04397a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08ee6fd85ddd42b6a6584fbca04397a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08ee6fd85ddd42b6a6584fbca04397a2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TgOTVFSWrEk03FbnabxAs5kfdAs=", "createTime": "2024-08-15 15:03:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.377585+00 2025-12-09 10:15:42.37759+00 17780 JTSS837FW#VS-D3 SPMX-20240815313009 \N \N \N 1 \N [{"file_id": "6ce13aa1-82ff-4b30-b7fe-a78e9c90e542", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "063ba5d492174f268a436c246255705e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "063ba5d492174f268a436c246255705e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "063ba5d492174f268a436c246255705e.jpg", "file_size": 13319, "is_delete": false, "file_type": 1, "original_file_name": "JTSS837FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063ba5d492174f268a436c246255705e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063ba5d492174f268a436c246255705e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/063ba5d492174f268a436c246255705e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/063ba5d492174f268a436c246255705e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/063ba5d492174f268a436c246255705e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0G0j-gx5K70AGFmtxn-RWetr8C8=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.380084+00 2025-12-09 10:15:42.380089+00 17781 FX0003-20#RC23 SPMX-20240815313014 \N \N \N 1 \N [{"file_id": "5102a654-a34b-44aa-9181-2af1a1de91f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651552a1b682418e8082ee9aace3da2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651552a1b682418e8082ee9aace3da2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651552a1b682418e8082ee9aace3da2e.jpg", "file_size": 9059, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-20#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651552a1b682418e8082ee9aace3da2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651552a1b682418e8082ee9aace3da2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651552a1b682418e8082ee9aace3da2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651552a1b682418e8082ee9aace3da2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651552a1b682418e8082ee9aace3da2e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sID-d5PeKfEGXTHUK0VqHP_X1Ho=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.382565+00 2025-12-09 10:15:42.382569+00 17782 LJH1905#白色 SPMX-20240815313004 \N \N \N 1 \N [{"file_id": "571a2da5-ec64-4362-8b84-b278c0e80d10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb75a816257847768483f08643a01b11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb75a816257847768483f08643a01b11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb75a816257847768483f08643a01b11.jpg", "file_size": 48855, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb75a816257847768483f08643a01b11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb75a816257847768483f08643a01b11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb75a816257847768483f08643a01b11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb75a816257847768483f08643a01b11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb75a816257847768483f08643a01b11.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IPzMfdhFH_OhrvK3w_yqRC57cVM=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.385149+00 2025-12-09 10:15:42.385153+00 17783 0008-3FWE#白色 SPMX-20240815313012 \N \N \N 1 \N [{"file_id": "2ad946b9-19d6-4b65-979f-1db14cb81b94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4e3f6bafb01416c8a8880489124ec9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4e3f6bafb01416c8a8880489124ec9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4e3f6bafb01416c8a8880489124ec9b.jpg", "file_size": 25200, "is_delete": false, "file_type": 1, "original_file_name": "0008-3FWE#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e3f6bafb01416c8a8880489124ec9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e3f6bafb01416c8a8880489124ec9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e3f6bafb01416c8a8880489124ec9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4e3f6bafb01416c8a8880489124ec9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4e3f6bafb01416c8a8880489124ec9b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:plHoQCEQ7SuacPfkkndR3_KT3WU=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.387671+00 2025-12-09 10:15:42.387676+00 17784 8566#捆条 SPMX-20240815313007 \N \N \N 1 \N [{"file_id": "90048e33-0788-40b8-8841-7da40fbb4fea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ffd97f837d34c779d56b7d5675a10cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ffd97f837d34c779d56b7d5675a10cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ffd97f837d34c779d56b7d5675a10cc.jpg", "file_size": 17779, "is_delete": false, "file_type": 1, "original_file_name": "8566#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffd97f837d34c779d56b7d5675a10cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffd97f837d34c779d56b7d5675a10cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ffd97f837d34c779d56b7d5675a10cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ffd97f837d34c779d56b7d5675a10cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ffd97f837d34c779d56b7d5675a10cc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:McsnTFUukJlu4SwI1Pia_UT6b4A=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.390303+00 2025-12-09 10:15:42.390308+00 17785 FX0003-2#RC23 SPMX-20240815313005 \N \N \N 1 \N [{"file_id": "e629c574-9846-444b-b897-417586f7bab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44eeb653c34846c18689c6f6ff3ded9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44eeb653c34846c18689c6f6ff3ded9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44eeb653c34846c18689c6f6ff3ded9f.jpg", "file_size": 22317, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44eeb653c34846c18689c6f6ff3ded9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44eeb653c34846c18689c6f6ff3ded9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44eeb653c34846c18689c6f6ff3ded9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44eeb653c34846c18689c6f6ff3ded9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44eeb653c34846c18689c6f6ff3ded9f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ofEU5Xl9sttH_4fgtWFzArLvhI=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.393333+00 2025-12-09 10:15:42.393338+00 17786 23155#-粉色 SPMX-20240815313011 \N \N \N 1 \N [{"file_id": "7cf6cd88-030a-4873-b2e1-aa4c7c3041ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92ccc84b6f2d4a80a1f31731e133168b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92ccc84b6f2d4a80a1f31731e133168b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92ccc84b6f2d4a80a1f31731e133168b.jpg", "file_size": 60586, "is_delete": false, "file_type": 1, "original_file_name": "23155#-粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ccc84b6f2d4a80a1f31731e133168b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ccc84b6f2d4a80a1f31731e133168b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ccc84b6f2d4a80a1f31731e133168b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92ccc84b6f2d4a80a1f31731e133168b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92ccc84b6f2d4a80a1f31731e133168b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PliVnAc8VRw95Vqk2aGHBWJZY6c=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.396193+00 2025-12-09 10:15:42.396199+00 17787 1231-29FWF#中童12码+10码 SPMX-20240815313003 \N \N \N 1 \N [{"file_id": "cf47f49d-116f-4980-b4fc-20d994b104cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a4773ed070840fba0582ffaf90cd7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a4773ed070840fba0582ffaf90cd7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a4773ed070840fba0582ffaf90cd7ff.jpg", "file_size": 17807, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4773ed070840fba0582ffaf90cd7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4773ed070840fba0582ffaf90cd7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a4773ed070840fba0582ffaf90cd7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a4773ed070840fba0582ffaf90cd7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a4773ed070840fba0582ffaf90cd7ff.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QtGGxDT5K1ZNLYsam-TP9C59dlE=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.399033+00 2025-12-09 10:15:42.39904+00 17788 DL31763#前幅黄色 SPMX-20240815313010 \N \N \N 1 \N [{"file_id": "396434a1-a33a-4a46-ad2e-ebbd54de4200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4342587958674015b7657d653962e1f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4342587958674015b7657d653962e1f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4342587958674015b7657d653962e1f1.jpg", "file_size": 47742, "is_delete": false, "file_type": 1, "original_file_name": "DL31763#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4342587958674015b7657d653962e1f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4342587958674015b7657d653962e1f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4342587958674015b7657d653962e1f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4342587958674015b7657d653962e1f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4342587958674015b7657d653962e1f1.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xfd26GY7cL3k1RY-p_86dQxa2DE=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.401834+00 2025-12-09 10:15:42.40184+00 17789 HX9008#蓝色花鸟 SPMX-20240815313006 \N \N \N 1 \N [{"file_id": "ba088b5e-6605-4730-9e35-8b5572666f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7306338bc414ce999ee58cb587b8156.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7306338bc414ce999ee58cb587b8156.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7306338bc414ce999ee58cb587b8156.jpg", "file_size": 16114, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#蓝色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7306338bc414ce999ee58cb587b8156.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7306338bc414ce999ee58cb587b8156.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7306338bc414ce999ee58cb587b8156.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7306338bc414ce999ee58cb587b8156.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7306338bc414ce999ee58cb587b8156.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ephB-ej_bYJ0j5K8_QJcDPpMhoA=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.40473+00 2025-12-09 10:15:42.404736+00 17790 CCH617#宝蓝 SPMX-20240815313008 \N \N \N 1 \N [{"file_id": "e69b4256-4ff4-4ac5-ac21-2ceff0a08c42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4930682881f34134a62225701d1f7fb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4930682881f34134a62225701d1f7fb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4930682881f34134a62225701d1f7fb5.jpg", "file_size": 17903, "is_delete": false, "file_type": 1, "original_file_name": "CCH617#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4930682881f34134a62225701d1f7fb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4930682881f34134a62225701d1f7fb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4930682881f34134a62225701d1f7fb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4930682881f34134a62225701d1f7fb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4930682881f34134a62225701d1f7fb5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qCEMlyiPZ6bU39Cm4Dr431QzFI=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.407617+00 2025-12-09 10:15:42.407624+00 17791 LZ1377#上身3号色 SPMX-20240815313013 \N \N \N 1 \N [{"file_id": "398bf54e-4cdd-4862-b26b-f1800917b70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "705efe6bef7e4d74a85cbc61b49d4129.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "705efe6bef7e4d74a85cbc61b49d4129.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "705efe6bef7e4d74a85cbc61b49d4129.jpg", "file_size": 19489, "is_delete": false, "file_type": 1, "original_file_name": "LZ1377#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/705efe6bef7e4d74a85cbc61b49d4129.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/705efe6bef7e4d74a85cbc61b49d4129.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/705efe6bef7e4d74a85cbc61b49d4129.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/705efe6bef7e4d74a85cbc61b49d4129.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/705efe6bef7e4d74a85cbc61b49d4129.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztgLEmHzi_8GuepQ5ZGGt0tM1dQ=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.410451+00 2025-12-09 10:15:42.410458+00 17792 1231-29FWF#中童14码 SPMX-20240815313015 \N \N \N 1 \N [{"file_id": "2305d66c-4334-4b0a-bc91-0af8452729e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08166dea1c7e4c1c868b4f5aa3736e5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08166dea1c7e4c1c868b4f5aa3736e5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08166dea1c7e4c1c868b4f5aa3736e5f.jpg", "file_size": 17527, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08166dea1c7e4c1c868b4f5aa3736e5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08166dea1c7e4c1c868b4f5aa3736e5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08166dea1c7e4c1c868b4f5aa3736e5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08166dea1c7e4c1c868b4f5aa3736e5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08166dea1c7e4c1c868b4f5aa3736e5f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zAoXM6KnWnkaVKyjbs_8npZFa04=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.413673+00 2025-12-09 10:15:42.413681+00 17793 HX9008#蓝色花鸟袖子补数 SPMX-20240815313017 \N \N \N 1 \N [{"file_id": "1b0df0b5-9632-4b6c-bb43-d962f2a76eb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "698ddb77b3574c228536d782aeaa3a16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "698ddb77b3574c228536d782aeaa3a16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "698ddb77b3574c228536d782aeaa3a16.jpg", "file_size": 13277, "is_delete": false, "file_type": 1, "original_file_name": "HX9008#蓝色花鸟袖子补数.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698ddb77b3574c228536d782aeaa3a16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698ddb77b3574c228536d782aeaa3a16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/698ddb77b3574c228536d782aeaa3a16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/698ddb77b3574c228536d782aeaa3a16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/698ddb77b3574c228536d782aeaa3a16.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ipRNQRtAE5lXIBP6BGxTgaNDcYQ=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.416765+00 2025-12-09 10:15:42.416772+00 17794 LJH1905#黑色 SPMX-20240815313027 \N \N \N 1 \N [{"file_id": "2b6e53af-f920-4967-934a-88dcf3a41915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "615b4dca9d9d4304ba43f2196f254d7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "615b4dca9d9d4304ba43f2196f254d7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "615b4dca9d9d4304ba43f2196f254d7c.jpg", "file_size": 49148, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615b4dca9d9d4304ba43f2196f254d7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615b4dca9d9d4304ba43f2196f254d7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/615b4dca9d9d4304ba43f2196f254d7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/615b4dca9d9d4304ba43f2196f254d7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/615b4dca9d9d4304ba43f2196f254d7c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nFCkJpbt1R2DxY9KmRCsNICFhME=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.419652+00 2025-12-09 10:15:42.419657+00 17795 CCH617#橙红 SPMX-20240815313023 \N \N \N 1 \N [{"file_id": "463d68c9-41e6-4ac8-aa6a-3e3bd051c1e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b330e03b5b24c8c91d09dba1a92bae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b330e03b5b24c8c91d09dba1a92bae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b330e03b5b24c8c91d09dba1a92bae5.jpg", "file_size": 17284, "is_delete": false, "file_type": 1, "original_file_name": "CCH617#橙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b330e03b5b24c8c91d09dba1a92bae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b330e03b5b24c8c91d09dba1a92bae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b330e03b5b24c8c91d09dba1a92bae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b330e03b5b24c8c91d09dba1a92bae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b330e03b5b24c8c91d09dba1a92bae5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Azb9WGuTwMSRwPA_bSrI7C89BT4=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.42249+00 2025-12-09 10:15:42.422496+00 17796 LJH1905#绿色 SPMX-20240815313016 \N \N \N 1 \N [{"file_id": "3ebd98dc-518f-46db-9bd1-7c52d10e5d45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e64a1776ce8f4a7893883b13688daa17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e64a1776ce8f4a7893883b13688daa17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e64a1776ce8f4a7893883b13688daa17.jpg", "file_size": 44783, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e64a1776ce8f4a7893883b13688daa17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e64a1776ce8f4a7893883b13688daa17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e64a1776ce8f4a7893883b13688daa17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e64a1776ce8f4a7893883b13688daa17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e64a1776ce8f4a7893883b13688daa17.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nrki8HQta9yFQTvhNcNZFeaFFU0=", "createTime": "2024-08-15 15:03:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.425387+00 2025-12-09 10:15:42.425392+00 17797 JTSS838FW#白VS-D3 SPMX-20240815313018 \N \N \N 1 \N [{"file_id": "5e0270bd-2af9-4106-9cf0-1eb8a09d6684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07a682a7d78146e59f1136a4fbb6f58a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07a682a7d78146e59f1136a4fbb6f58a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07a682a7d78146e59f1136a4fbb6f58a.jpg", "file_size": 12437, "is_delete": false, "file_type": 1, "original_file_name": "JTSS838FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a682a7d78146e59f1136a4fbb6f58a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a682a7d78146e59f1136a4fbb6f58a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a682a7d78146e59f1136a4fbb6f58a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07a682a7d78146e59f1136a4fbb6f58a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07a682a7d78146e59f1136a4fbb6f58a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5WmcJODWHL45IjwYSxZeAmuckXs=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.428272+00 2025-12-09 10:15:42.428279+00 17798 8569#2XL SPMX-20240815313020 \N \N \N 1 \N [{"file_id": "e2cf026e-1992-407a-9b49-37bab2c8eece", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d9f92163f1945868147c31b125a6efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d9f92163f1945868147c31b125a6efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d9f92163f1945868147c31b125a6efc.jpg", "file_size": 16773, "is_delete": false, "file_type": 1, "original_file_name": "8569#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9f92163f1945868147c31b125a6efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9f92163f1945868147c31b125a6efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d9f92163f1945868147c31b125a6efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d9f92163f1945868147c31b125a6efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d9f92163f1945868147c31b125a6efc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PqGCpU1fzRm583AitCz6Z9CbQ20=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.431138+00 2025-12-09 10:15:42.431144+00 17799 23158FWF#上衣 SPMX-20240815313021 \N \N \N 1 \N [{"file_id": "5cbb0fca-efc7-4c2d-86ec-690f2b75d879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "563943258b3d408a83344222c3d5963b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "563943258b3d408a83344222c3d5963b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "563943258b3d408a83344222c3d5963b.jpg", "file_size": 13351, "is_delete": false, "file_type": 1, "original_file_name": "23158FWF#上衣.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563943258b3d408a83344222c3d5963b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563943258b3d408a83344222c3d5963b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/563943258b3d408a83344222c3d5963b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/563943258b3d408a83344222c3d5963b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/563943258b3d408a83344222c3d5963b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ocsYyeW8ls8py565f4d8fCvu-uM=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.434033+00 2025-12-09 10:15:42.434039+00 17800 FX0003-21#RC23 SPMX-20240815313024 \N \N \N 1 \N [{"file_id": "01444adc-055d-4cd0-825f-724b4935fe2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b697311e65d946ed87484de2a9191c33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b697311e65d946ed87484de2a9191c33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b697311e65d946ed87484de2a9191c33.jpg", "file_size": 18972, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-21#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b697311e65d946ed87484de2a9191c33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b697311e65d946ed87484de2a9191c33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b697311e65d946ed87484de2a9191c33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b697311e65d946ed87484de2a9191c33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b697311e65d946ed87484de2a9191c33.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rCeWT5PmpedrI2-V1yGllBhLewM=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.436799+00 2025-12-09 10:15:42.436806+00 17801 HX9009#深宝蓝大花 SPMX-20240815313029 \N \N \N 1 \N [{"file_id": "1cf1e86e-79e2-4666-9957-e9dfc9d901a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81f4c83fb63b4d47ba3ac461153423b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81f4c83fb63b4d47ba3ac461153423b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81f4c83fb63b4d47ba3ac461153423b1.jpg", "file_size": 23157, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#深宝蓝大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f4c83fb63b4d47ba3ac461153423b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f4c83fb63b4d47ba3ac461153423b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81f4c83fb63b4d47ba3ac461153423b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81f4c83fb63b4d47ba3ac461153423b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81f4c83fb63b4d47ba3ac461153423b1.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q-sqYe9r6EHuqeNo6oY6Sbzp40I=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.439664+00 2025-12-09 10:15:42.43967+00 17802 0008-3FWE#粉色 SPMX-20240815313019 \N \N \N 1 \N [{"file_id": "2cccf71f-5ef0-43bf-8db5-ee0cb99c7279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea07fa804a6e45c48b7f6f8099fa1adc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea07fa804a6e45c48b7f6f8099fa1adc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea07fa804a6e45c48b7f6f8099fa1adc.jpg", "file_size": 23385, "is_delete": false, "file_type": 1, "original_file_name": "0008-3FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea07fa804a6e45c48b7f6f8099fa1adc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea07fa804a6e45c48b7f6f8099fa1adc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea07fa804a6e45c48b7f6f8099fa1adc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea07fa804a6e45c48b7f6f8099fa1adc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea07fa804a6e45c48b7f6f8099fa1adc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1RTMv3Rg23V9-7dfg3hK2bFooU=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.442541+00 2025-12-09 10:15:42.442547+00 17803 1231-29FWF#中童袖领匹布 SPMX-20240815313025 \N \N \N 1 \N [{"file_id": "1918e9d9-af55-4ee5-917a-0ea0c82badbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "250e1d4c6d634a59aa27de71be21c5f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "250e1d4c6d634a59aa27de71be21c5f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "250e1d4c6d634a59aa27de71be21c5f9.jpg", "file_size": 15433, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250e1d4c6d634a59aa27de71be21c5f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250e1d4c6d634a59aa27de71be21c5f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/250e1d4c6d634a59aa27de71be21c5f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/250e1d4c6d634a59aa27de71be21c5f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/250e1d4c6d634a59aa27de71be21c5f9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HycSVkuSJpx54KKw9oNzdPqFe5U=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.445477+00 2025-12-09 10:15:42.445483+00 17804 JTSS838FW#蓝VS-D3 SPMX-20240815313028 \N \N \N 1 \N [{"file_id": "faa3644d-7d14-4954-ae2a-95cb949a36b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6bfbb3792eb472c8e8b67ad424eb84a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6bfbb3792eb472c8e8b67ad424eb84a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6bfbb3792eb472c8e8b67ad424eb84a.jpg", "file_size": 12252, "is_delete": false, "file_type": 1, "original_file_name": "JTSS838FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bfbb3792eb472c8e8b67ad424eb84a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bfbb3792eb472c8e8b67ad424eb84a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bfbb3792eb472c8e8b67ad424eb84a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6bfbb3792eb472c8e8b67ad424eb84a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6bfbb3792eb472c8e8b67ad424eb84a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qofir5sYWz19hXCWr2z8M5X18uk=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.448409+00 2025-12-09 10:15:42.448415+00 17805 DL31766#下摆批布大红 SPMX-20240815313022 \N \N \N 1 \N [{"file_id": "e1f46402-c01c-4201-8661-e25d6dd83507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7333eb1d9974d69b43e53c6cff417c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7333eb1d9974d69b43e53c6cff417c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7333eb1d9974d69b43e53c6cff417c3.jpg", "file_size": 80731, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7333eb1d9974d69b43e53c6cff417c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7333eb1d9974d69b43e53c6cff417c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7333eb1d9974d69b43e53c6cff417c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7333eb1d9974d69b43e53c6cff417c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7333eb1d9974d69b43e53c6cff417c3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T31MP5DAQz-_9ogdIalXSOnCD3E=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.451283+00 2025-12-09 10:15:42.451289+00 17806 LZ1377#上身4号色 SPMX-20240815313026 \N \N \N 1 \N [{"file_id": "3ec7af54-b569-4c66-b48c-7e4b34666370", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e542590b9c745f3bf10da63818d8a95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e542590b9c745f3bf10da63818d8a95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e542590b9c745f3bf10da63818d8a95.jpg", "file_size": 19466, "is_delete": false, "file_type": 1, "original_file_name": "LZ1377#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e542590b9c745f3bf10da63818d8a95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e542590b9c745f3bf10da63818d8a95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e542590b9c745f3bf10da63818d8a95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e542590b9c745f3bf10da63818d8a95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e542590b9c745f3bf10da63818d8a95.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oL7pGZf2tegieb7kdL9UgET5lNw=", "createTime": "2024-08-15 15:03:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.454192+00 2025-12-09 10:15:42.454198+00 17807 HX9009#深宝蓝花鸟 SPMX-20240815313038 \N \N \N 1 \N [{"file_id": "3eb0070a-c7f4-4585-994e-61ae6e422779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd01d8f064194d548a74867f70a1eac8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd01d8f064194d548a74867f70a1eac8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd01d8f064194d548a74867f70a1eac8.jpg", "file_size": 23218, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#深宝蓝花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd01d8f064194d548a74867f70a1eac8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd01d8f064194d548a74867f70a1eac8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd01d8f064194d548a74867f70a1eac8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd01d8f064194d548a74867f70a1eac8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd01d8f064194d548a74867f70a1eac8.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4lMrMxySjqp_fJhL7vuo6Tb6nM=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.457054+00 2025-12-09 10:15:42.45706+00 17808 2316#2XL SPMX-20240815313042 \N \N \N 1 \N [{"file_id": "257875de-3ebb-4811-b438-587dfc0f69be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60a0cd9b8b934576a54d06ca50d35850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60a0cd9b8b934576a54d06ca50d35850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60a0cd9b8b934576a54d06ca50d35850.jpg", "file_size": 11584, "is_delete": false, "file_type": 1, "original_file_name": "2316#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0cd9b8b934576a54d06ca50d35850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0cd9b8b934576a54d06ca50d35850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0cd9b8b934576a54d06ca50d35850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60a0cd9b8b934576a54d06ca50d35850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60a0cd9b8b934576a54d06ca50d35850.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOlggocL5FdfANMAEA7yBVQtIkM=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.460156+00 2025-12-09 10:15:42.460162+00 17809 8569#4XL SPMX-20240815313040 \N \N \N 1 \N [{"file_id": "d024f3ab-84d7-41f0-b94d-52c382b48298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9e07e63e1c748f2854b3d0a95809c78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9e07e63e1c748f2854b3d0a95809c78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9e07e63e1c748f2854b3d0a95809c78.jpg", "file_size": 16161, "is_delete": false, "file_type": 1, "original_file_name": "8569#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e07e63e1c748f2854b3d0a95809c78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e07e63e1c748f2854b3d0a95809c78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9e07e63e1c748f2854b3d0a95809c78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9e07e63e1c748f2854b3d0a95809c78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9e07e63e1c748f2854b3d0a95809c78.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmOTb5QevnA32mN-lhyg9vHXjsc=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.476396+00 2025-12-09 10:15:42.476402+00 17814 23158FWF#净色 SPMX-20240815313032 \N \N \N 1 \N [{"file_id": "630690c1-7703-45df-9604-4644a597002b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33236aca6385411db22cd1b20fbf93f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33236aca6385411db22cd1b20fbf93f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33236aca6385411db22cd1b20fbf93f6.jpg", "file_size": 5639, "is_delete": false, "file_type": 1, "original_file_name": "23158FWF#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33236aca6385411db22cd1b20fbf93f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33236aca6385411db22cd1b20fbf93f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33236aca6385411db22cd1b20fbf93f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33236aca6385411db22cd1b20fbf93f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33236aca6385411db22cd1b20fbf93f6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PH6our-s04vNDks2KQKLeuXv5Iw=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.463221+00 2025-12-09 10:15:42.463228+00 17810 0008-3FWF#粉色-V5曲线 SPMX-20240815313043 \N \N \N 1 \N [{"file_id": "d87b089b-6f05-42c2-a87d-7643669ceaac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4914a1762ae446ea7e969ffd29d451f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4914a1762ae446ea7e969ffd29d451f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4914a1762ae446ea7e969ffd29d451f.jpg", "file_size": 11767, "is_delete": false, "file_type": 1, "original_file_name": "0008-3FWF#粉色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4914a1762ae446ea7e969ffd29d451f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4914a1762ae446ea7e969ffd29d451f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4914a1762ae446ea7e969ffd29d451f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4914a1762ae446ea7e969ffd29d451f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4914a1762ae446ea7e969ffd29d451f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFJCJT3nOThasELqJRRj3xp2NLQ=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.466745+00 2025-12-09 10:15:42.466752+00 17811 DL31766#下摆批布彩兰 SPMX-20240815313033 \N \N \N 1 \N [{"file_id": "cb09068a-06d7-4fcb-a55d-2c04a70c5753", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6709f1d28ec242928c9d47ef2f92fb9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6709f1d28ec242928c9d47ef2f92fb9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6709f1d28ec242928c9d47ef2f92fb9e.jpg", "file_size": 84210, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6709f1d28ec242928c9d47ef2f92fb9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6709f1d28ec242928c9d47ef2f92fb9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6709f1d28ec242928c9d47ef2f92fb9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6709f1d28ec242928c9d47ef2f92fb9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6709f1d28ec242928c9d47ef2f92fb9e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nosIhesyiX1QUzJ6B80fwISIuH4=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.473555+00 2025-12-09 10:15:42.473562+00 17813 LJH1905-2#白色 SPMX-20240815313041 \N \N \N 1 \N [{"file_id": "fd9a8551-a7c7-4b82-9552-823bd849e7a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6bf98a11e774ba5b924f6ecee14a6ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6bf98a11e774ba5b924f6ecee14a6ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6bf98a11e774ba5b924f6ecee14a6ea.jpg", "file_size": 43368, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bf98a11e774ba5b924f6ecee14a6ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bf98a11e774ba5b924f6ecee14a6ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6bf98a11e774ba5b924f6ecee14a6ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6bf98a11e774ba5b924f6ecee14a6ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6bf98a11e774ba5b924f6ecee14a6ea.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1aL_PUMsk7InJHT_zqUDRd0oG4M=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.479272+00 2025-12-09 10:15:42.479278+00 17815 LZ1378#童装上身1号色 SPMX-20240815313037 \N \N \N 1 \N [{"file_id": "b3c7ad37-fee1-4f7e-b175-f534fa164294", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d57a6837bd0c4559a5e18832fe2f87ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d57a6837bd0c4559a5e18832fe2f87ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d57a6837bd0c4559a5e18832fe2f87ee.jpg", "file_size": 27551, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57a6837bd0c4559a5e18832fe2f87ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57a6837bd0c4559a5e18832fe2f87ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57a6837bd0c4559a5e18832fe2f87ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d57a6837bd0c4559a5e18832fe2f87ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d57a6837bd0c4559a5e18832fe2f87ee.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OblPvOWN9VXaPqz8_1UgZ1iZKdc=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.482296+00 2025-12-09 10:15:42.482303+00 17816 CCH617#白色 SPMX-20240815313034 \N \N \N 1 \N [{"file_id": "7e7e23bf-e563-4c60-a4ba-34446ad2fc4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d4b3ec0bac0427192a281ebc80a13e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d4b3ec0bac0427192a281ebc80a13e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d4b3ec0bac0427192a281ebc80a13e0.jpg", "file_size": 17512, "is_delete": false, "file_type": 1, "original_file_name": "CCH617#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4b3ec0bac0427192a281ebc80a13e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4b3ec0bac0427192a281ebc80a13e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d4b3ec0bac0427192a281ebc80a13e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d4b3ec0bac0427192a281ebc80a13e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d4b3ec0bac0427192a281ebc80a13e0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dqUkSdSBgV-jABGHC-1LHTZUni0=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.485205+00 2025-12-09 10:15:42.485209+00 17817 1231-29FWF#小童6码 SPMX-20240815313035 \N \N \N 1 \N [{"file_id": "8661f94e-7cb3-4ec6-bfc4-f82da196fbf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4855e811f0ab4ce5a2bfbf46b6853943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4855e811f0ab4ce5a2bfbf46b6853943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4855e811f0ab4ce5a2bfbf46b6853943.jpg", "file_size": 20022, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4855e811f0ab4ce5a2bfbf46b6853943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4855e811f0ab4ce5a2bfbf46b6853943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4855e811f0ab4ce5a2bfbf46b6853943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4855e811f0ab4ce5a2bfbf46b6853943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4855e811f0ab4ce5a2bfbf46b6853943.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAaSAsrQRzoz_ZImq-jaYJ5Mdk4=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.487717+00 2025-12-09 10:15:42.487721+00 17818 JTSS839FW#VS-D3 SPMX-20240815313039 \N \N \N 1 \N [{"file_id": "370e118b-46d0-4209-bf7d-de0ba959990f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fe6ecbfa29242f1b76c305f15105e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fe6ecbfa29242f1b76c305f15105e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fe6ecbfa29242f1b76c305f15105e0c.jpg", "file_size": 17066, "is_delete": false, "file_type": 1, "original_file_name": "JTSS839FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fe6ecbfa29242f1b76c305f15105e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fe6ecbfa29242f1b76c305f15105e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fe6ecbfa29242f1b76c305f15105e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fe6ecbfa29242f1b76c305f15105e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fe6ecbfa29242f1b76c305f15105e0c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Jq63nhNxCQv52VbjyX34t-_Kzk=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.470263+00 2025-12-09 10:15:42.470269+00 17812 0008-3FWF#原版色-V5曲线 SPMX-20240815313031 \N \N \N 1 \N [{"file_id": "8c6d91db-c3a1-4296-b23a-0a70afb9824e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac40d98bedb94cc78eb1e84912a885e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac40d98bedb94cc78eb1e84912a885e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac40d98bedb94cc78eb1e84912a885e9.jpg", "file_size": 11010, "is_delete": false, "file_type": 1, "original_file_name": "0008-3FWF#原版色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac40d98bedb94cc78eb1e84912a885e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac40d98bedb94cc78eb1e84912a885e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac40d98bedb94cc78eb1e84912a885e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac40d98bedb94cc78eb1e84912a885e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac40d98bedb94cc78eb1e84912a885e9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ghOI7AqYfGkmobeCEf5gn5c3-l0=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.493271+00 2025-12-09 10:15:42.493277+00 17819 FX0003-22#RC23 SPMX-20240815313036 \N \N \N 1 \N [{"file_id": "afbb266e-0a0d-42f2-a548-2d5ebac82374", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "975e24ef1dde42c6ba66f1835c0fc4bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "975e24ef1dde42c6ba66f1835c0fc4bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "975e24ef1dde42c6ba66f1835c0fc4bc.jpg", "file_size": 21893, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-22#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975e24ef1dde42c6ba66f1835c0fc4bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975e24ef1dde42c6ba66f1835c0fc4bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/975e24ef1dde42c6ba66f1835c0fc4bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/975e24ef1dde42c6ba66f1835c0fc4bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/975e24ef1dde42c6ba66f1835c0fc4bc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pQ6rAwZZIrcBQPFL4a452zo85c=", "createTime": "2024-08-15 15:03:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.496355+00 2025-12-09 10:15:42.496361+00 17820 FX0003-22#原版色 SPMX-20240815313044 \N \N \N 1 \N [{"file_id": "6d4291e8-14ad-4056-88fd-9b4123aa4065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4af8351315594406bd94003ac3f985b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4af8351315594406bd94003ac3f985b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4af8351315594406bd94003ac3f985b5.jpg", "file_size": 24727, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-22#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af8351315594406bd94003ac3f985b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af8351315594406bd94003ac3f985b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af8351315594406bd94003ac3f985b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4af8351315594406bd94003ac3f985b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4af8351315594406bd94003ac3f985b5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LclXuQqU5i5acjtDl3mkEr2E8kM=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.499221+00 2025-12-09 10:15:42.499227+00 17821 HX9009#灰色大花 SPMX-20240815313049 \N \N \N 1 \N [{"file_id": "0d973753-2be6-4456-971d-8ed18b882241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fd0259c3c0140d9bc000d1e694d1ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fd0259c3c0140d9bc000d1e694d1ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fd0259c3c0140d9bc000d1e694d1ee0.jpg", "file_size": 22198, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#灰色大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fd0259c3c0140d9bc000d1e694d1ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fd0259c3c0140d9bc000d1e694d1ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fd0259c3c0140d9bc000d1e694d1ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fd0259c3c0140d9bc000d1e694d1ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fd0259c3c0140d9bc000d1e694d1ee0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0CwK-DHJ9VvYdS0LZZV4eeGOFc=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.501853+00 2025-12-09 10:15:42.501858+00 17822 CCHA1FWE#亮黄 SPMX-20240815313045 \N \N \N 1 \N [{"file_id": "9a19dad3-8649-452f-b821-acd56a56ad1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04554c8c063d45ec95c8f00a20e59248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04554c8c063d45ec95c8f00a20e59248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04554c8c063d45ec95c8f00a20e59248.jpg", "file_size": 15299, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04554c8c063d45ec95c8f00a20e59248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04554c8c063d45ec95c8f00a20e59248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04554c8c063d45ec95c8f00a20e59248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04554c8c063d45ec95c8f00a20e59248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04554c8c063d45ec95c8f00a20e59248.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w2jmCS56vtxhQdpOAaTVgT3tgw8=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.504665+00 2025-12-09 10:15:42.50467+00 17823 LZ1378#童装上身2号色 SPMX-20240815313048 \N \N \N 1 \N [{"file_id": "30ae63ec-a7e1-48a1-897b-4714b9c8ef5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e88e588940a444a39625e3da777c6262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e88e588940a444a39625e3da777c6262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e88e588940a444a39625e3da777c6262.jpg", "file_size": 28628, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88e588940a444a39625e3da777c6262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88e588940a444a39625e3da777c6262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e88e588940a444a39625e3da777c6262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e88e588940a444a39625e3da777c6262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e88e588940a444a39625e3da777c6262.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yWrAPLtUbkSXAwimlS30YAfvZd8=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.507576+00 2025-12-09 10:15:42.507583+00 17824 8569#5XL SPMX-20240815313052 \N \N \N 1 \N [{"file_id": "d5a98a7b-a909-451e-a314-44b383c5d344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41f54c0cc3094845858b0768c2944f31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41f54c0cc3094845858b0768c2944f31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41f54c0cc3094845858b0768c2944f31.jpg", "file_size": 15739, "is_delete": false, "file_type": 1, "original_file_name": "8569#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41f54c0cc3094845858b0768c2944f31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41f54c0cc3094845858b0768c2944f31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41f54c0cc3094845858b0768c2944f31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41f54c0cc3094845858b0768c2944f31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41f54c0cc3094845858b0768c2944f31.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6SvCBAfHtjOiNciuzYRjxhh4Ts=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.510458+00 2025-12-09 10:15:42.510464+00 17825 DL31766#下摆批布深水红 SPMX-20240815313047 \N \N \N 1 \N [{"file_id": "191f0bc7-2ccf-4314-bce4-dbc7dac4c16a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6873482cf25f44c7b9afcce2d2bb810e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6873482cf25f44c7b9afcce2d2bb810e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6873482cf25f44c7b9afcce2d2bb810e.jpg", "file_size": 81190, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6873482cf25f44c7b9afcce2d2bb810e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6873482cf25f44c7b9afcce2d2bb810e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6873482cf25f44c7b9afcce2d2bb810e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6873482cf25f44c7b9afcce2d2bb810e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6873482cf25f44c7b9afcce2d2bb810e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aNqS-dN1aPvQpnJsAMRR_BOtAU=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.513212+00 2025-12-09 10:15:42.513218+00 17826 LJH1905-2#绿色 SPMX-20240815313054 \N \N \N 1 \N [{"file_id": "b98d04d2-cf53-443f-bba4-35fbb2a4201b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce1d6911ebe040b09ad190d15186e381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce1d6911ebe040b09ad190d15186e381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce1d6911ebe040b09ad190d15186e381.jpg", "file_size": 44356, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905-2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d6911ebe040b09ad190d15186e381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d6911ebe040b09ad190d15186e381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d6911ebe040b09ad190d15186e381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce1d6911ebe040b09ad190d15186e381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce1d6911ebe040b09ad190d15186e381.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jSpLhWQ5izOikAIWbjpapGoLEdE=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.516116+00 2025-12-09 10:15:42.516122+00 17827 1231-29FWF#小童袖领匹布 SPMX-20240815313056 \N \N \N 1 \N [{"file_id": "b02cde7a-12b1-48bb-b3b0-72cc3113c53c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c01c2cfc045b45ab98536d190f86a340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c01c2cfc045b45ab98536d190f86a340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c01c2cfc045b45ab98536d190f86a340.jpg", "file_size": 15067, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01c2cfc045b45ab98536d190f86a340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01c2cfc045b45ab98536d190f86a340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c01c2cfc045b45ab98536d190f86a340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c01c2cfc045b45ab98536d190f86a340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c01c2cfc045b45ab98536d190f86a340.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPbmhP5y797mzyVPaGiCHQrTLoo=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.518969+00 2025-12-09 10:15:42.518975+00 17828 1231-29FWF#小童8码+4码 SPMX-20240815313046 \N \N \N 1 \N [{"file_id": "2952b4fb-924e-440b-b530-c9b0cfb41822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a844cbb6e1324966b55d354d4f820c20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a844cbb6e1324966b55d354d4f820c20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a844cbb6e1324966b55d354d4f820c20.jpg", "file_size": 20322, "is_delete": false, "file_type": 1, "original_file_name": "1231-29FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a844cbb6e1324966b55d354d4f820c20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a844cbb6e1324966b55d354d4f820c20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a844cbb6e1324966b55d354d4f820c20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a844cbb6e1324966b55d354d4f820c20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a844cbb6e1324966b55d354d4f820c20.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FghOd1zBHjmOQh27p9vOsnAeWpY=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.521716+00 2025-12-09 10:15:42.521722+00 17829 JTSS840FW#VS-D3 SPMX-20240815313050 \N \N \N 1 \N [{"file_id": "47f51bfb-9a65-4592-bd60-e4405027a91d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcf45ee981514eefaf42fb533a330601.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcf45ee981514eefaf42fb533a330601.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcf45ee981514eefaf42fb533a330601.jpg", "file_size": 7445, "is_delete": false, "file_type": 1, "original_file_name": "JTSS840FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf45ee981514eefaf42fb533a330601.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf45ee981514eefaf42fb533a330601.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf45ee981514eefaf42fb533a330601.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcf45ee981514eefaf42fb533a330601.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcf45ee981514eefaf42fb533a330601.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DHL4eryCUV05bHy6Sb0k7jdqelo=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.524558+00 2025-12-09 10:15:42.524563+00 17830 2316#L SPMX-20240815313051 \N \N \N 1 \N [{"file_id": "8e07400b-78bd-4a1d-8a13-5c47ef1a1fc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2888c6b6b4d04dbb8564282e4f1a8748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2888c6b6b4d04dbb8564282e4f1a8748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2888c6b6b4d04dbb8564282e4f1a8748.jpg", "file_size": 10382, "is_delete": false, "file_type": 1, "original_file_name": "2316#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2888c6b6b4d04dbb8564282e4f1a8748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2888c6b6b4d04dbb8564282e4f1a8748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2888c6b6b4d04dbb8564282e4f1a8748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2888c6b6b4d04dbb8564282e4f1a8748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2888c6b6b4d04dbb8564282e4f1a8748.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:51PJi0cvL3wj_KAKLzZto90oTb4=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.527689+00 2025-12-09 10:15:42.527696+00 17831 0008-4FWE#红色VS-D3 SPMX-20240815313053 \N \N \N 1 \N [{"file_id": "731f5538-ae22-4b93-8831-0970574ae437", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b40f3925d0340e88b68ef31dda7a54c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b40f3925d0340e88b68ef31dda7a54c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b40f3925d0340e88b68ef31dda7a54c.jpg", "file_size": 9953, "is_delete": false, "file_type": 1, "original_file_name": "0008-4FWE#红色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b40f3925d0340e88b68ef31dda7a54c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b40f3925d0340e88b68ef31dda7a54c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b40f3925d0340e88b68ef31dda7a54c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b40f3925d0340e88b68ef31dda7a54c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b40f3925d0340e88b68ef31dda7a54c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4c_IsDLoZHXZQ315tlTQ4yqpMPw=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.530774+00 2025-12-09 10:15:42.53078+00 17832 FX0003-22#玫红色 SPMX-20240815313055 \N \N \N 1 \N [{"file_id": "75f8ff02-777d-41df-926a-ddfb72df7a5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c6c0a2bcd464b29b2411bac03edadcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c6c0a2bcd464b29b2411bac03edadcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c6c0a2bcd464b29b2411bac03edadcc.jpg", "file_size": 21530, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-22#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6c0a2bcd464b29b2411bac03edadcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6c0a2bcd464b29b2411bac03edadcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6c0a2bcd464b29b2411bac03edadcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c6c0a2bcd464b29b2411bac03edadcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c6c0a2bcd464b29b2411bac03edadcc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjCail4h-gqQNBhFWnGoHPnfYBw=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.533679+00 2025-12-09 10:15:42.533687+00 17833 HX9009#灰色花鸟 SPMX-20240815313059 \N \N \N 1 \N [{"file_id": "cc884e45-fab9-4d36-a682-ff2afbd118cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc970a6383014ad488b20bf3906ce753.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc970a6383014ad488b20bf3906ce753.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc970a6383014ad488b20bf3906ce753.jpg", "file_size": 22763, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#灰色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc970a6383014ad488b20bf3906ce753.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc970a6383014ad488b20bf3906ce753.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc970a6383014ad488b20bf3906ce753.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc970a6383014ad488b20bf3906ce753.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc970a6383014ad488b20bf3906ce753.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X0SJy0SPc8iVqWfEHnvGQOnB8Ko=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.536574+00 2025-12-09 10:15:42.536581+00 17834 8569#XL SPMX-20240815313064 \N \N \N 1 \N [{"file_id": "92488715-a005-4c3d-8997-26c0dc0b661b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f93cca368f64de3b54198af883edc66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f93cca368f64de3b54198af883edc66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f93cca368f64de3b54198af883edc66.jpg", "file_size": 16046, "is_delete": false, "file_type": 1, "original_file_name": "8569#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f93cca368f64de3b54198af883edc66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f93cca368f64de3b54198af883edc66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f93cca368f64de3b54198af883edc66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f93cca368f64de3b54198af883edc66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f93cca368f64de3b54198af883edc66.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSp3Tx-VSZY3IGLguHKaWnpH6J8=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.539421+00 2025-12-09 10:15:42.539427+00 17835 LZ1378#童装上身3号色 SPMX-20240815313060 \N \N \N 1 \N [{"file_id": "b1b63801-a861-4f35-93ce-3743af5630ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c49ea0473514353b7f75b13e38c01bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c49ea0473514353b7f75b13e38c01bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c49ea0473514353b7f75b13e38c01bc.jpg", "file_size": 26988, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c49ea0473514353b7f75b13e38c01bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c49ea0473514353b7f75b13e38c01bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c49ea0473514353b7f75b13e38c01bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c49ea0473514353b7f75b13e38c01bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c49ea0473514353b7f75b13e38c01bc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38_JnTCN7uYFeziv7c67UCfGdFE=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.542313+00 2025-12-09 10:15:42.542323+00 17836 JTSS841FW#VS-D3 SPMX-20240815313062 \N \N \N 1 \N [{"file_id": "15b72bd7-42a7-4ff9-9afa-e7b13a4d7673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "418c5546dee246b08c3cf5977cf04157.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "418c5546dee246b08c3cf5977cf04157.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "418c5546dee246b08c3cf5977cf04157.jpg", "file_size": 17576, "is_delete": false, "file_type": 1, "original_file_name": "JTSS841FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/418c5546dee246b08c3cf5977cf04157.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/418c5546dee246b08c3cf5977cf04157.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/418c5546dee246b08c3cf5977cf04157.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/418c5546dee246b08c3cf5977cf04157.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/418c5546dee246b08c3cf5977cf04157.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePuU-8WIxBGzLh5nD2ojP0Cc54o=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.545134+00 2025-12-09 10:15:42.545141+00 17837 2316#M SPMX-20240815313061 \N \N \N 1 \N [{"file_id": "3944c01b-4b4f-40b5-b2bf-f9f36d716b73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d914dc63c79e41228dfdfd5624f0aef5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d914dc63c79e41228dfdfd5624f0aef5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d914dc63c79e41228dfdfd5624f0aef5.jpg", "file_size": 10763, "is_delete": false, "file_type": 1, "original_file_name": "2316#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d914dc63c79e41228dfdfd5624f0aef5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d914dc63c79e41228dfdfd5624f0aef5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d914dc63c79e41228dfdfd5624f0aef5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d914dc63c79e41228dfdfd5624f0aef5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d914dc63c79e41228dfdfd5624f0aef5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VVbhdzXsOZgjHfWJ14o569PQxfI=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.547966+00 2025-12-09 10:15:42.547972+00 17838 DL31766#下摆批布玫红 SPMX-20240815313057 \N \N \N 1 \N [{"file_id": "32498824-1563-4add-ac80-5cf2307d8a00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "515b87d9d536410bbb6491c4317f3345.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "515b87d9d536410bbb6491c4317f3345.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "515b87d9d536410bbb6491c4317f3345.jpg", "file_size": 80496, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515b87d9d536410bbb6491c4317f3345.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515b87d9d536410bbb6491c4317f3345.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/515b87d9d536410bbb6491c4317f3345.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/515b87d9d536410bbb6491c4317f3345.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/515b87d9d536410bbb6491c4317f3345.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r--Bv8CUYadS3rZoNZ8wkbVD25k=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.550874+00 2025-12-09 10:15:42.550881+00 17839 CCHA1FWE#亮黄净色 SPMX-20240815313058 \N \N \N 1 \N [{"file_id": "383ff04d-09e9-4971-9357-468d2a3722f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f22410f89a3b43c59a771c5fcf8a2c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f22410f89a3b43c59a771c5fcf8a2c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f22410f89a3b43c59a771c5fcf8a2c3e.jpg", "file_size": 5349, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#亮黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22410f89a3b43c59a771c5fcf8a2c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22410f89a3b43c59a771c5fcf8a2c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f22410f89a3b43c59a771c5fcf8a2c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f22410f89a3b43c59a771c5fcf8a2c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f22410f89a3b43c59a771c5fcf8a2c3e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:be_G8FVlB2E6rQSZyDzyNQOU23Y=", "createTime": "2024-08-15 15:03:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.553905+00 2025-12-09 10:15:42.553911+00 17840 0008-4FWE#蓝色VS-D3 SPMX-20240815313065 \N \N \N 1 \N [{"file_id": "e8bae7b7-355c-4941-98a8-ee6f42d7926d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40b8f64cd5784289a3c413b73aa606b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40b8f64cd5784289a3c413b73aa606b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40b8f64cd5784289a3c413b73aa606b5.jpg", "file_size": 10666, "is_delete": false, "file_type": 1, "original_file_name": "0008-4FWE#蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b8f64cd5784289a3c413b73aa606b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b8f64cd5784289a3c413b73aa606b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40b8f64cd5784289a3c413b73aa606b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40b8f64cd5784289a3c413b73aa606b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40b8f64cd5784289a3c413b73aa606b5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V-RpMqHC86Qz0uEXdoy-QQjNCvI=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.557+00 2025-12-09 10:15:42.557007+00 17841 FX0003-22#紫色 SPMX-20240815313066 \N \N \N 1 \N [{"file_id": "af86cc0a-b121-4ee6-b1f4-709f70d2956a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aeae15cb42b439aaa010f373a03d09e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aeae15cb42b439aaa010f373a03d09e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aeae15cb42b439aaa010f373a03d09e.jpg", "file_size": 21832, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-22#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeae15cb42b439aaa010f373a03d09e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeae15cb42b439aaa010f373a03d09e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeae15cb42b439aaa010f373a03d09e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aeae15cb42b439aaa010f373a03d09e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aeae15cb42b439aaa010f373a03d09e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EsMjLhMF1F6Tj6WKIhlssVSzHTY=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.560219+00 2025-12-09 10:15:42.560224+00 17842 1231-2FWF#中童12码+10码 SPMX-20240815313067 \N \N \N 1 \N [{"file_id": "d6c45334-ad16-4159-8ba2-83ed4b4f8a52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eec8d7522acd48c18fcefcc7a37c23d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eec8d7522acd48c18fcefcc7a37c23d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eec8d7522acd48c18fcefcc7a37c23d1.jpg", "file_size": 18562, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec8d7522acd48c18fcefcc7a37c23d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec8d7522acd48c18fcefcc7a37c23d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec8d7522acd48c18fcefcc7a37c23d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eec8d7522acd48c18fcefcc7a37c23d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eec8d7522acd48c18fcefcc7a37c23d1.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXhRk8_wIct3MdjHaWIrru8GF4w=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.562987+00 2025-12-09 10:15:42.562993+00 17843 LJH1905-2#蓝色 SPMX-20240815313063 \N \N \N 1 \N [{"file_id": "561a7964-de04-4db8-a1b3-32d40e879a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg", "file_size": 44551, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3cdfc5eb4274b979f11f7ca27b4ec5e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPCs4rBLasCU8C1KcyaKTFtJWmc=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.56559+00 2025-12-09 10:15:42.565595+00 17844 DL31766#下摆批布蓝绿 SPMX-20240815313068 \N \N \N 1 \N [{"file_id": "c38bc4b3-a66c-468b-8bf4-9488e5b74eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d67940785acd48a6ae80cdf71af62822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d67940785acd48a6ae80cdf71af62822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d67940785acd48a6ae80cdf71af62822.jpg", "file_size": 83610, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67940785acd48a6ae80cdf71af62822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67940785acd48a6ae80cdf71af62822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67940785acd48a6ae80cdf71af62822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d67940785acd48a6ae80cdf71af62822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d67940785acd48a6ae80cdf71af62822.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pG1UU3hO83vK5S7-NHJd6udsgUw=", "createTime": "2024-08-15 15:03:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.568163+00 2025-12-09 10:15:42.568168+00 17845 DL31766#下摆批布黄色 SPMX-20240815313078 \N \N \N 1 \N [{"file_id": "ab668187-b6f9-4e82-bfff-52df54030bff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23af5ed08d6141eb977a84fc08f8934c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23af5ed08d6141eb977a84fc08f8934c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23af5ed08d6141eb977a84fc08f8934c.jpg", "file_size": 81219, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#下摆批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af5ed08d6141eb977a84fc08f8934c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af5ed08d6141eb977a84fc08f8934c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23af5ed08d6141eb977a84fc08f8934c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23af5ed08d6141eb977a84fc08f8934c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23af5ed08d6141eb977a84fc08f8934c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1bNnd7hUU56e45Tqah-jLTCfbM=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.570672+00 2025-12-09 10:15:42.570676+00 17846 LJH1905-2#黑色 SPMX-20240815313077 \N \N \N 1 \N [{"file_id": "6d67a3a6-af9c-43aa-8d68-b11f6a6ab4aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56b53d24717047e98c4c043efc3ca290.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56b53d24717047e98c4c043efc3ca290.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56b53d24717047e98c4c043efc3ca290.jpg", "file_size": 44845, "is_delete": false, "file_type": 1, "original_file_name": "LJH1905-2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b53d24717047e98c4c043efc3ca290.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b53d24717047e98c4c043efc3ca290.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56b53d24717047e98c4c043efc3ca290.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56b53d24717047e98c4c043efc3ca290.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56b53d24717047e98c4c043efc3ca290.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RmeDoM6Bp_Q7pPKjWVktDxggwT8=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.573195+00 2025-12-09 10:15:42.573199+00 17847 JTSS842FW#VS-D3 SPMX-20240815313075 \N \N \N 1 \N [{"file_id": "7383a3e1-8008-41b9-b284-95769c203076", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bdbfa4c01fc4714be94ef327121a1b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bdbfa4c01fc4714be94ef327121a1b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bdbfa4c01fc4714be94ef327121a1b8.jpg", "file_size": 17221, "is_delete": false, "file_type": 1, "original_file_name": "JTSS842FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbfa4c01fc4714be94ef327121a1b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbfa4c01fc4714be94ef327121a1b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bdbfa4c01fc4714be94ef327121a1b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bdbfa4c01fc4714be94ef327121a1b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bdbfa4c01fc4714be94ef327121a1b8.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_iHGeGosG1c-FEKpZWtUliOBxM=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.57574+00 2025-12-09 10:15:42.575744+00 17848 1231-2FWF#中童14码 SPMX-20240815313076 \N \N \N 1 \N [{"file_id": "acff555c-9b11-4728-b8cc-b0a87ed2efe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4bf23fd54a9492393c87eb4b0c16ba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4bf23fd54a9492393c87eb4b0c16ba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4bf23fd54a9492393c87eb4b0c16ba4.jpg", "file_size": 16631, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bf23fd54a9492393c87eb4b0c16ba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bf23fd54a9492393c87eb4b0c16ba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4bf23fd54a9492393c87eb4b0c16ba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4bf23fd54a9492393c87eb4b0c16ba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4bf23fd54a9492393c87eb4b0c16ba4.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tk5-0wf0tBRl6mSfIql2RUkKdaw=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.578378+00 2025-12-09 10:15:42.578384+00 17849 LZ1378#童装上身4号色 SPMX-20240815313070 \N \N \N 1 \N [{"file_id": "48b0b922-dfcb-467b-b2a6-88646b12fdfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2465233638904376aa616ec2f98ae059.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2465233638904376aa616ec2f98ae059.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2465233638904376aa616ec2f98ae059.jpg", "file_size": 27099, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465233638904376aa616ec2f98ae059.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465233638904376aa616ec2f98ae059.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2465233638904376aa616ec2f98ae059.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2465233638904376aa616ec2f98ae059.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2465233638904376aa616ec2f98ae059.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bOMGqxZOyeuHDz2zQrpDe5f16z4=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.581546+00 2025-12-09 10:15:42.581551+00 17850 0008-4FWF#橙色-V5曲线 SPMX-20240815313074 \N \N \N 1 \N [{"file_id": "bbd94bc7-27bb-4581-85b8-40d34ee426b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg", "file_size": 22155, "is_delete": false, "file_type": 1, "original_file_name": "0008-4FWF#橙色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebc2dccfe7b043bf9d1f4c12fdc7e589.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmhGTzYfeWrEJ9doAUcH7PfkrFc=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.58456+00 2025-12-09 10:15:42.584567+00 17851 2316#S SPMX-20240815313072 \N \N \N 1 \N [{"file_id": "d1cb6896-0cd3-4d16-900a-8c78f5a62b9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00935633a96149439f4d21333b904d28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00935633a96149439f4d21333b904d28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00935633a96149439f4d21333b904d28.jpg", "file_size": 10736, "is_delete": false, "file_type": 1, "original_file_name": "2316#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00935633a96149439f4d21333b904d28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00935633a96149439f4d21333b904d28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00935633a96149439f4d21333b904d28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00935633a96149439f4d21333b904d28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00935633a96149439f4d21333b904d28.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHdWl5FSt0EhBsLqJrQileRzrOI=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.587661+00 2025-12-09 10:15:42.587667+00 17852 HX9009#白色大花 SPMX-20240815313071 \N \N \N 1 \N [{"file_id": "a0fb2e93-dd68-436f-92fb-129c40b51d02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "199128508838437ba2b3fc7c3f66bf37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "199128508838437ba2b3fc7c3f66bf37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "199128508838437ba2b3fc7c3f66bf37.jpg", "file_size": 24930, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#白色大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/199128508838437ba2b3fc7c3f66bf37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/199128508838437ba2b3fc7c3f66bf37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/199128508838437ba2b3fc7c3f66bf37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/199128508838437ba2b3fc7c3f66bf37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/199128508838437ba2b3fc7c3f66bf37.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zuEmFuDBdRnE07c0CHMznaxLbeg=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.590701+00 2025-12-09 10:15:42.590711+00 17853 FX0003-22#绿色 SPMX-20240815313073 \N \N \N 1 \N [{"file_id": "5208999e-ebf7-46c0-88b0-fb6535b67c35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f4a0682ab364e4298cfe9506facc09c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f4a0682ab364e4298cfe9506facc09c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f4a0682ab364e4298cfe9506facc09c.jpg", "file_size": 22402, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-22#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4a0682ab364e4298cfe9506facc09c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4a0682ab364e4298cfe9506facc09c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4a0682ab364e4298cfe9506facc09c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f4a0682ab364e4298cfe9506facc09c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f4a0682ab364e4298cfe9506facc09c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkN6C6-kA1BwN8EAduX9mC0G6zc=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.593762+00 2025-12-09 10:15:42.593768+00 17854 CCHA1FWE#大红 SPMX-20240815313069 \N \N \N 1 \N [{"file_id": "7a5643c3-67e1-4192-a595-4dcd45e07b11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "522ec6dcbee7491ca030d24c27d3d6a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "522ec6dcbee7491ca030d24c27d3d6a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "522ec6dcbee7491ca030d24c27d3d6a7.jpg", "file_size": 13717, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522ec6dcbee7491ca030d24c27d3d6a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522ec6dcbee7491ca030d24c27d3d6a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/522ec6dcbee7491ca030d24c27d3d6a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/522ec6dcbee7491ca030d24c27d3d6a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/522ec6dcbee7491ca030d24c27d3d6a7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xptVRk_IK8oDX-NhT81QM-vxTyg=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.596858+00 2025-12-09 10:15:42.596863+00 17855 8569#净色 SPMX-20240815313079 \N \N \N 1 \N [{"file_id": "2678593c-e616-42e7-96f9-312ce792ed2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13beddcfbeff428fa6ee3c17f6646974.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13beddcfbeff428fa6ee3c17f6646974.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13beddcfbeff428fa6ee3c17f6646974.jpg", "file_size": 7747, "is_delete": false, "file_type": 1, "original_file_name": "8569#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13beddcfbeff428fa6ee3c17f6646974.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13beddcfbeff428fa6ee3c17f6646974.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13beddcfbeff428fa6ee3c17f6646974.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13beddcfbeff428fa6ee3c17f6646974.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13beddcfbeff428fa6ee3c17f6646974.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNLQdomzuajhBeGGIJr4mgIp3pk=", "createTime": "2024-08-15 15:03:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.599905+00 2025-12-09 10:15:42.599911+00 17856 2316#XL SPMX-20240815313085 \N \N \N 1 \N [{"file_id": "5817a0f9-0325-4615-bbc5-f5178857e624", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebe5fcc4db074fecbf13a63ea13cc0e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebe5fcc4db074fecbf13a63ea13cc0e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebe5fcc4db074fecbf13a63ea13cc0e4.jpg", "file_size": 10927, "is_delete": false, "file_type": 1, "original_file_name": "2316#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5fcc4db074fecbf13a63ea13cc0e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5fcc4db074fecbf13a63ea13cc0e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5fcc4db074fecbf13a63ea13cc0e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebe5fcc4db074fecbf13a63ea13cc0e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebe5fcc4db074fecbf13a63ea13cc0e4.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AF144A236df1PGECak4dHGhzMCw=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.603+00 2025-12-09 10:15:42.603006+00 17857 DL31766#前幅大红 SPMX-20240815313086 \N \N \N 1 \N [{"file_id": "c50238cb-d139-4803-845e-176052866fb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88ada25ca2e54102b4a21cd2edf5da37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88ada25ca2e54102b4a21cd2edf5da37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88ada25ca2e54102b4a21cd2edf5da37.jpg", "file_size": 43739, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ada25ca2e54102b4a21cd2edf5da37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ada25ca2e54102b4a21cd2edf5da37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ada25ca2e54102b4a21cd2edf5da37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88ada25ca2e54102b4a21cd2edf5da37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88ada25ca2e54102b4a21cd2edf5da37.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SVhgD-ynQCqOC_67R_v-_q96i40=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.606124+00 2025-12-09 10:15:42.60613+00 17858 HX9009#白色花鸟 SPMX-20240815313083 \N \N \N 1 \N [{"file_id": "7f04be97-86dd-453e-9434-833d75838b1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40566bd22c84d0bac83387beaee5fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40566bd22c84d0bac83387beaee5fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40566bd22c84d0bac83387beaee5fd8.jpg", "file_size": 25262, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#白色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40566bd22c84d0bac83387beaee5fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40566bd22c84d0bac83387beaee5fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40566bd22c84d0bac83387beaee5fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40566bd22c84d0bac83387beaee5fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40566bd22c84d0bac83387beaee5fd8.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dO4Il6IhqWzzUljs9xuOYGvIpN4=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.609207+00 2025-12-09 10:15:42.609213+00 17859 LJH1906#玫红色 SPMX-20240815313089 \N \N \N 1 \N [{"file_id": "8b15bc76-ebb0-4806-bf98-abff960d8a98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7703359b670d4be4aa2008c95dd441b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7703359b670d4be4aa2008c95dd441b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7703359b670d4be4aa2008c95dd441b0.jpg", "file_size": 52012, "is_delete": false, "file_type": 1, "original_file_name": "LJH1906#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7703359b670d4be4aa2008c95dd441b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7703359b670d4be4aa2008c95dd441b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7703359b670d4be4aa2008c95dd441b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7703359b670d4be4aa2008c95dd441b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7703359b670d4be4aa2008c95dd441b0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Te2vx5XlbkKuXmyjWxaDrYAI2uI=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.612276+00 2025-12-09 10:15:42.612282+00 17860 856FWF#LW浅15 SPMX-20240815313090 \N \N \N 1 \N [{"file_id": "ff033366-d170-4687-bbc5-014a5c267b4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4221f68a51ca43a180bddbc0c5a9e4a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4221f68a51ca43a180bddbc0c5a9e4a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4221f68a51ca43a180bddbc0c5a9e4a3.jpg", "file_size": 19006, "is_delete": false, "file_type": 1, "original_file_name": "856FWF#LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4221f68a51ca43a180bddbc0c5a9e4a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4221f68a51ca43a180bddbc0c5a9e4a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4221f68a51ca43a180bddbc0c5a9e4a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4221f68a51ca43a180bddbc0c5a9e4a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4221f68a51ca43a180bddbc0c5a9e4a3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:arIA6kEzAUZlxUnLTzODfKfzCX8=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.615874+00 2025-12-09 10:15:42.61588+00 17861 0008-4FWF#蓝色-V5曲线 SPMX-20240815313081 \N \N \N 1 \N [{"file_id": "ac938dff-6c86-47a9-871e-9c9a34f71b81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccc544cf9588471f8cbce6a19ca97158.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccc544cf9588471f8cbce6a19ca97158.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccc544cf9588471f8cbce6a19ca97158.jpg", "file_size": 21859, "is_delete": false, "file_type": 1, "original_file_name": "0008-4FWF#蓝色-V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc544cf9588471f8cbce6a19ca97158.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc544cf9588471f8cbce6a19ca97158.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccc544cf9588471f8cbce6a19ca97158.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccc544cf9588471f8cbce6a19ca97158.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccc544cf9588471f8cbce6a19ca97158.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajR0y5rKV2c12SKBYTG10yG23L0=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.619022+00 2025-12-09 10:15:42.619029+00 17862 FX0003-23#RC23 SPMX-20240815313087 \N \N \N 1 \N [{"file_id": "daf2bf3f-eb3b-4612-8a4a-496ccc79cda3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30070c4ed3a1498e9c8d95c9f12cee76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30070c4ed3a1498e9c8d95c9f12cee76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30070c4ed3a1498e9c8d95c9f12cee76.jpg", "file_size": 13146, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-23#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30070c4ed3a1498e9c8d95c9f12cee76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30070c4ed3a1498e9c8d95c9f12cee76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30070c4ed3a1498e9c8d95c9f12cee76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30070c4ed3a1498e9c8d95c9f12cee76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30070c4ed3a1498e9c8d95c9f12cee76.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkn2b4hNq-RYUHoRkcVl71OtnOI=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.622158+00 2025-12-09 10:15:42.622165+00 17863 1231-2FWF#中童袖领匹布 SPMX-20240815313088 \N \N \N 1 \N [{"file_id": "a57409d6-6f44-41b0-8b92-9731b8948639", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be44af321394ab181905017c1d1919d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be44af321394ab181905017c1d1919d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be44af321394ab181905017c1d1919d.jpg", "file_size": 15657, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be44af321394ab181905017c1d1919d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be44af321394ab181905017c1d1919d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be44af321394ab181905017c1d1919d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be44af321394ab181905017c1d1919d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be44af321394ab181905017c1d1919d.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IjydLR9MnpleWG7fwkTR8zn6xDM=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.625206+00 2025-12-09 10:15:42.625212+00 17864 LZ1378#童装下身1号色 SPMX-20240815313091 \N \N \N 1 \N [{"file_id": "3aba750c-29f4-4d1e-b60a-23e2276a97d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60564cb4db7c4df4b78b3055f13a5300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60564cb4db7c4df4b78b3055f13a5300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60564cb4db7c4df4b78b3055f13a5300.jpg", "file_size": 32730, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60564cb4db7c4df4b78b3055f13a5300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60564cb4db7c4df4b78b3055f13a5300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60564cb4db7c4df4b78b3055f13a5300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60564cb4db7c4df4b78b3055f13a5300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60564cb4db7c4df4b78b3055f13a5300.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FvlVhA0prVXU7QyzQiSCYjaAjx0=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.628325+00 2025-12-09 10:15:42.628331+00 17865 JTSS843FW#VS-D3 SPMX-20240815313084 \N \N \N 1 \N [{"file_id": "b9f65c75-e7c7-48d6-b845-3cc6e16646e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24098feb5bea440baebc24ab4f7014ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24098feb5bea440baebc24ab4f7014ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24098feb5bea440baebc24ab4f7014ee.jpg", "file_size": 15708, "is_delete": false, "file_type": 1, "original_file_name": "JTSS843FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24098feb5bea440baebc24ab4f7014ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24098feb5bea440baebc24ab4f7014ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24098feb5bea440baebc24ab4f7014ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24098feb5bea440baebc24ab4f7014ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24098feb5bea440baebc24ab4f7014ee.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ufg8a8EmDM3tXmRARr0X-XfaxgM=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.631371+00 2025-12-09 10:15:42.631377+00 17866 LZ1378#童装上身5号色 SPMX-20240815313080 \N \N \N 1 \N [{"file_id": "ba125d0e-8c6c-4d92-a946-c42e69addcd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7117e1944cf432393fab446f73d4560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7117e1944cf432393fab446f73d4560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7117e1944cf432393fab446f73d4560.jpg", "file_size": 26894, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7117e1944cf432393fab446f73d4560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7117e1944cf432393fab446f73d4560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7117e1944cf432393fab446f73d4560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7117e1944cf432393fab446f73d4560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7117e1944cf432393fab446f73d4560.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNRw6_kSVGBouIbby55KomgIJ0A=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.634463+00 2025-12-09 10:15:42.634469+00 17867 CCHA1FWE#大红净色 SPMX-20240815313082 \N \N \N 1 \N [{"file_id": "4a1fedf5-f08a-4186-938a-f6a18a24d03a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c5808424630443e9230f3bd14a3e09f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c5808424630443e9230f3bd14a3e09f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c5808424630443e9230f3bd14a3e09f.jpg", "file_size": 5513, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5808424630443e9230f3bd14a3e09f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5808424630443e9230f3bd14a3e09f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5808424630443e9230f3bd14a3e09f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c5808424630443e9230f3bd14a3e09f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c5808424630443e9230f3bd14a3e09f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WdNX0k-PjN5UxDYhwLuGpTTzjUY=", "createTime": "2024-08-15 15:03:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.637564+00 2025-12-09 10:15:42.63757+00 17868 FX0003-24#RC23 SPMX-20240815313098 \N \N \N 1 \N [{"file_id": "19927e00-62d5-4746-8505-786c9988e1ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2f76bf04c064c1eb5d49105436fab60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2f76bf04c064c1eb5d49105436fab60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2f76bf04c064c1eb5d49105436fab60.jpg", "file_size": 9990, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-24#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f76bf04c064c1eb5d49105436fab60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f76bf04c064c1eb5d49105436fab60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f76bf04c064c1eb5d49105436fab60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2f76bf04c064c1eb5d49105436fab60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2f76bf04c064c1eb5d49105436fab60.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kK8_862X1Afpfa0JI2w7y5DySnA=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.640755+00 2025-12-09 10:15:42.640761+00 17869 HX9009#粉色大花 SPMX-20240815313094 \N \N \N 1 \N [{"file_id": "76b73926-5d35-4cb8-b9a4-181c7d9e176d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6229ec7f157f4957b4a87886347623d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6229ec7f157f4957b4a87886347623d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6229ec7f157f4957b4a87886347623d3.jpg", "file_size": 21368, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#粉色大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6229ec7f157f4957b4a87886347623d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6229ec7f157f4957b4a87886347623d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6229ec7f157f4957b4a87886347623d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6229ec7f157f4957b4a87886347623d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6229ec7f157f4957b4a87886347623d3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qo-S-NAM22y_Q9LQrFwS0H__D9E=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.643864+00 2025-12-09 10:15:42.643871+00 17870 JTSS844FW#VS-D3 SPMX-20240815313095 \N \N \N 1 \N [{"file_id": "8668d256-f489-45e8-8852-55d0e248afd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d47e5f79c5ee43feba8d97479331859b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d47e5f79c5ee43feba8d97479331859b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d47e5f79c5ee43feba8d97479331859b.jpg", "file_size": 15122, "is_delete": false, "file_type": 1, "original_file_name": "JTSS844FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47e5f79c5ee43feba8d97479331859b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47e5f79c5ee43feba8d97479331859b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d47e5f79c5ee43feba8d97479331859b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d47e5f79c5ee43feba8d97479331859b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d47e5f79c5ee43feba8d97479331859b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cO1z3UTJwdmL0InEx8EVyq8ynrY=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.646942+00 2025-12-09 10:15:42.646948+00 17871 CCHA1FWE#水绿净色 SPMX-20240815313099 \N \N \N 1 \N [{"file_id": "fdc8081a-f15f-404d-b05f-d08c869d8dbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "241ede3a64264dc79f0373a7b7da91bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "241ede3a64264dc79f0373a7b7da91bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "241ede3a64264dc79f0373a7b7da91bc.jpg", "file_size": 4555, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#水绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241ede3a64264dc79f0373a7b7da91bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241ede3a64264dc79f0373a7b7da91bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/241ede3a64264dc79f0373a7b7da91bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/241ede3a64264dc79f0373a7b7da91bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/241ede3a64264dc79f0373a7b7da91bc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GtFYVcG3jiFemyDOXSZXHClw0ZY=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.650032+00 2025-12-09 10:15:42.650038+00 17872 DL31766#前幅彩兰 SPMX-20240815313097 \N \N \N 1 \N [{"file_id": "3307016d-c2c3-491e-a42a-cee3deb5c599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31f637a5225048a59828ce95bcca1d3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31f637a5225048a59828ce95bcca1d3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31f637a5225048a59828ce95bcca1d3c.jpg", "file_size": 44050, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f637a5225048a59828ce95bcca1d3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f637a5225048a59828ce95bcca1d3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31f637a5225048a59828ce95bcca1d3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31f637a5225048a59828ce95bcca1d3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31f637a5225048a59828ce95bcca1d3c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLciNG-dvpH0MNvo9IJeD8Y4Zzc=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.65327+00 2025-12-09 10:15:42.653277+00 17873 CCHA1FWE#水绿 SPMX-20240815313092 \N \N \N 1 \N [{"file_id": "237db738-1d2f-4cd4-8f04-a2232ddc1c4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96dd34115197448192a17fc890b9fe29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96dd34115197448192a17fc890b9fe29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96dd34115197448192a17fc890b9fe29.jpg", "file_size": 13832, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#水绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96dd34115197448192a17fc890b9fe29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96dd34115197448192a17fc890b9fe29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96dd34115197448192a17fc890b9fe29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96dd34115197448192a17fc890b9fe29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96dd34115197448192a17fc890b9fe29.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZvmX9PvEjkPanBY9zgpPPII7fE=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.656467+00 2025-12-09 10:15:42.656474+00 17874 0008-5FWE#原版VS-D3 SPMX-20240815313093 \N \N \N 1 \N [{"file_id": "8e90c3b1-eae9-4ba3-be03-7fbc30f48012", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4461c7c60cbc411ba953129d428f927a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4461c7c60cbc411ba953129d428f927a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4461c7c60cbc411ba953129d428f927a.jpg", "file_size": 21254, "is_delete": false, "file_type": 1, "original_file_name": "0008-5FWE#原版VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4461c7c60cbc411ba953129d428f927a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4461c7c60cbc411ba953129d428f927a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4461c7c60cbc411ba953129d428f927a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4461c7c60cbc411ba953129d428f927a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4461c7c60cbc411ba953129d428f927a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJeuHwmc6FzwiB4woktGZPchckA=", "createTime": "2024-08-15 15:03:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.659775+00 2025-12-09 10:15:42.659785+00 17875 23160FWF#XXL SPMX-20240815313096 \N \N \N 1 \N [{"file_id": "6457bd47-9d1e-4850-9ea5-3d2bd6fdd659", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de8c820ebb68423aa3466452d9928d5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de8c820ebb68423aa3466452d9928d5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de8c820ebb68423aa3466452d9928d5e.jpg", "file_size": 13576, "is_delete": false, "file_type": 1, "original_file_name": "23160FWF#XXL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8c820ebb68423aa3466452d9928d5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8c820ebb68423aa3466452d9928d5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de8c820ebb68423aa3466452d9928d5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de8c820ebb68423aa3466452d9928d5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de8c820ebb68423aa3466452d9928d5e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MK_kd5_o7gX4J3kRpEXl7WYdl5o=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.663014+00 2025-12-09 10:15:42.663021+00 17876 LJH1906#紫色 SPMX-20240815313100 \N \N \N 1 \N [{"file_id": "cc886cee-c4de-4049-a91b-550586d46d59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "860d98e982a6459594fb7bab01ea75d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "860d98e982a6459594fb7bab01ea75d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "860d98e982a6459594fb7bab01ea75d7.jpg", "file_size": 52954, "is_delete": false, "file_type": 1, "original_file_name": "LJH1906#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860d98e982a6459594fb7bab01ea75d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860d98e982a6459594fb7bab01ea75d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/860d98e982a6459594fb7bab01ea75d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/860d98e982a6459594fb7bab01ea75d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/860d98e982a6459594fb7bab01ea75d7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLFTthzT9_lcdTChHKfD3osBeEM=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.666144+00 2025-12-09 10:15:42.66615+00 17877 8572FWE#L SPMX-20240815313111 \N \N \N 1 \N [{"file_id": "28077e78-2041-49ce-8ebe-429c8088edfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f0f798f58a475b8ca2c0e8b78d2763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f0f798f58a475b8ca2c0e8b78d2763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f0f798f58a475b8ca2c0e8b78d2763.jpg", "file_size": 17378, "is_delete": false, "file_type": 1, "original_file_name": "8572FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0f798f58a475b8ca2c0e8b78d2763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0f798f58a475b8ca2c0e8b78d2763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f0f798f58a475b8ca2c0e8b78d2763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f0f798f58a475b8ca2c0e8b78d2763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f0f798f58a475b8ca2c0e8b78d2763.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFRCz32d1iFUWiCIce2eskaaObg=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.669231+00 2025-12-09 10:15:42.669238+00 17878 8571#LWQ15 SPMX-20240815313101 \N \N \N 1 \N [{"file_id": "aa832bd2-9951-454a-b5e2-7f45d7be3a6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51c5978a315646a38e84c5eeca61909e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51c5978a315646a38e84c5eeca61909e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51c5978a315646a38e84c5eeca61909e.jpg", "file_size": 12084, "is_delete": false, "file_type": 1, "original_file_name": "8571#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c5978a315646a38e84c5eeca61909e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c5978a315646a38e84c5eeca61909e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51c5978a315646a38e84c5eeca61909e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51c5978a315646a38e84c5eeca61909e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51c5978a315646a38e84c5eeca61909e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nZTV-MHAMzZPvVz4QR15Q4SB4sY=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.672293+00 2025-12-09 10:15:42.672299+00 17879 HX9009#粉色花鸟 SPMX-20240815313104 \N \N \N 1 \N [{"file_id": "07491bdf-ca1a-4b2a-852a-92875fe3efd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "694555b20e2142c78b5f5b84faefdf89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "694555b20e2142c78b5f5b84faefdf89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "694555b20e2142c78b5f5b84faefdf89.jpg", "file_size": 21588, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#粉色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694555b20e2142c78b5f5b84faefdf89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694555b20e2142c78b5f5b84faefdf89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694555b20e2142c78b5f5b84faefdf89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/694555b20e2142c78b5f5b84faefdf89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/694555b20e2142c78b5f5b84faefdf89.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6U2w1JEdQpD7ytL_MdKi4Xq9lok=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.676052+00 2025-12-09 10:15:42.676058+00 17880 LZ1378#童装下身2号色 SPMX-20240815313102 \N \N \N 1 \N [{"file_id": "0352ab42-edd2-4022-81f3-68bbcc8f330e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "385819f1d6b843b2a5e0549f6cdc6b42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "385819f1d6b843b2a5e0549f6cdc6b42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "385819f1d6b843b2a5e0549f6cdc6b42.jpg", "file_size": 32669, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385819f1d6b843b2a5e0549f6cdc6b42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385819f1d6b843b2a5e0549f6cdc6b42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/385819f1d6b843b2a5e0549f6cdc6b42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/385819f1d6b843b2a5e0549f6cdc6b42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/385819f1d6b843b2a5e0549f6cdc6b42.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nks9KgDs1imVXwZWOITXLZoyAm8=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.67981+00 2025-12-09 10:15:42.679816+00 17881 0008-5FWE#粉色VS-D3 SPMX-20240815313103 \N \N \N 1 \N [{"file_id": "1bab7606-7224-4992-b373-d3714dcde274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3210d8323dbf4256b49b5eba8afbe21d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3210d8323dbf4256b49b5eba8afbe21d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3210d8323dbf4256b49b5eba8afbe21d.jpg", "file_size": 20561, "is_delete": false, "file_type": 1, "original_file_name": "0008-5FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3210d8323dbf4256b49b5eba8afbe21d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3210d8323dbf4256b49b5eba8afbe21d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3210d8323dbf4256b49b5eba8afbe21d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3210d8323dbf4256b49b5eba8afbe21d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3210d8323dbf4256b49b5eba8afbe21d.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bg-i3GcVb_c_dOH3_mxFq8-SuUM=", "createTime": "2024-08-15 15:03:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.683393+00 2025-12-09 10:15:42.683399+00 17882 FX0003-25#RC23 SPMX-20240815313109 \N \N \N 1 \N [{"file_id": "0c954bcb-bcfb-4c99-b6a8-fe7801529e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f14047194e48978bbc425a0058678b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f14047194e48978bbc425a0058678b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f14047194e48978bbc425a0058678b.jpg", "file_size": 48574, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-25#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f14047194e48978bbc425a0058678b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f14047194e48978bbc425a0058678b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f14047194e48978bbc425a0058678b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f14047194e48978bbc425a0058678b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f14047194e48978bbc425a0058678b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lenKp0SQjun5tIyRQQ-zrtbNBvY=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.686653+00 2025-12-09 10:15:42.686662+00 17883 CCHA1FWE#浅粉 SPMX-20240815313110 \N \N \N 1 \N [{"file_id": "ae8c790c-fb48-44a7-914c-feb24c0dbc69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d11befc7c6b84236986cb552d81766cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d11befc7c6b84236986cb552d81766cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d11befc7c6b84236986cb552d81766cb.jpg", "file_size": 15286, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11befc7c6b84236986cb552d81766cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11befc7c6b84236986cb552d81766cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d11befc7c6b84236986cb552d81766cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d11befc7c6b84236986cb552d81766cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d11befc7c6b84236986cb552d81766cb.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUtPVZF0bO5hXQrCOeDjfI0JMZQ=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.689995+00 2025-12-09 10:15:42.690002+00 17884 0008-6FWE#白底VS-D3 SPMX-20240815313113 \N \N \N 1 \N [{"file_id": "b8370498-b56f-435e-9271-7a23910c9111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "040ba735b6cb47f69dad4ae8863bccb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "040ba735b6cb47f69dad4ae8863bccb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "040ba735b6cb47f69dad4ae8863bccb3.jpg", "file_size": 15338, "is_delete": false, "file_type": 1, "original_file_name": "0008-6FWE#白底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040ba735b6cb47f69dad4ae8863bccb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040ba735b6cb47f69dad4ae8863bccb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040ba735b6cb47f69dad4ae8863bccb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/040ba735b6cb47f69dad4ae8863bccb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/040ba735b6cb47f69dad4ae8863bccb3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAY1A9gErXYWWFxmvofELZ_v-PQ=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.693529+00 2025-12-09 10:15:42.693538+00 17885 2317-1#柠檬绿2XL SPMX-20240815313105 \N \N \N 1 \N [{"file_id": "910a2043-cf44-476d-98c1-9c0eac652b06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52660dc67f774fadbc6a9761b27cbbd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52660dc67f774fadbc6a9761b27cbbd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52660dc67f774fadbc6a9761b27cbbd4.jpg", "file_size": 17212, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#柠檬绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52660dc67f774fadbc6a9761b27cbbd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52660dc67f774fadbc6a9761b27cbbd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52660dc67f774fadbc6a9761b27cbbd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52660dc67f774fadbc6a9761b27cbbd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52660dc67f774fadbc6a9761b27cbbd4.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpfW18BAZ59rme4WGDCwEkzHCTs=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.69718+00 2025-12-09 10:15:42.697186+00 17886 JTSS845FW#VS-D3 SPMX-20240815313106 \N \N \N 1 \N [{"file_id": "e7601981-96ae-4084-953d-619db2d22700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04c0e32e3d304e3687e6b18159962263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04c0e32e3d304e3687e6b18159962263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04c0e32e3d304e3687e6b18159962263.jpg", "file_size": 22489, "is_delete": false, "file_type": 1, "original_file_name": "JTSS845FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c0e32e3d304e3687e6b18159962263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c0e32e3d304e3687e6b18159962263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c0e32e3d304e3687e6b18159962263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04c0e32e3d304e3687e6b18159962263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04c0e32e3d304e3687e6b18159962263.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jTWRDAuZWCZOWOyF16rCo1Vb-o0=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.70066+00 2025-12-09 10:15:42.700666+00 17887 1231-2FWF#小童6码 SPMX-20240815313107 \N \N \N 1 \N [{"file_id": "99d63687-d555-4dde-815f-dbc75a5825a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "893abdff62aa4c2297066f086db8622b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "893abdff62aa4c2297066f086db8622b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "893abdff62aa4c2297066f086db8622b.jpg", "file_size": 19726, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893abdff62aa4c2297066f086db8622b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893abdff62aa4c2297066f086db8622b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/893abdff62aa4c2297066f086db8622b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/893abdff62aa4c2297066f086db8622b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/893abdff62aa4c2297066f086db8622b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPabh6UI2kTu3aSNqNQmATBxBk8=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.70407+00 2025-12-09 10:15:42.704076+00 17888 LZ1378#童装下身3号色 SPMX-20240815313114 \N \N \N 1 \N [{"file_id": "0e8f8fb8-cfe0-4280-8638-d75a98d5cf4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e6f60a1c0f4ad6adfbae60e3203e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e6f60a1c0f4ad6adfbae60e3203e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e6f60a1c0f4ad6adfbae60e3203e86.jpg", "file_size": 32181, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6f60a1c0f4ad6adfbae60e3203e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6f60a1c0f4ad6adfbae60e3203e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e6f60a1c0f4ad6adfbae60e3203e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e6f60a1c0f4ad6adfbae60e3203e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e6f60a1c0f4ad6adfbae60e3203e86.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qyuLF1fC3LfUzfJRm2QGHxM8Rb0=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.707207+00 2025-12-09 10:15:42.707214+00 17889 DL31766#前幅深水红 SPMX-20240815313108 \N \N \N 1 \N [{"file_id": "1a4c8d0d-0ce1-4100-981f-de00bcfb20f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a24d80139a264cfd8b40a37ca1af8c53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a24d80139a264cfd8b40a37ca1af8c53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a24d80139a264cfd8b40a37ca1af8c53.jpg", "file_size": 44337, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24d80139a264cfd8b40a37ca1af8c53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24d80139a264cfd8b40a37ca1af8c53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24d80139a264cfd8b40a37ca1af8c53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a24d80139a264cfd8b40a37ca1af8c53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a24d80139a264cfd8b40a37ca1af8c53.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7jqcfBcGxJ1emjojuY_8JXT6ME=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.710221+00 2025-12-09 10:15:42.710225+00 17890 HX9009#蓝色大花 SPMX-20240815313115 \N \N \N 1 \N [{"file_id": "86b6efcc-8a00-4e30-a9c9-eb62d284d1d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c1d3cd6ee2e4930adf50ddeb777a22a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c1d3cd6ee2e4930adf50ddeb777a22a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c1d3cd6ee2e4930adf50ddeb777a22a.jpg", "file_size": 22762, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#蓝色大花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c1d3cd6ee2e4930adf50ddeb777a22a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c1d3cd6ee2e4930adf50ddeb777a22a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c1d3cd6ee2e4930adf50ddeb777a22a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c1d3cd6ee2e4930adf50ddeb777a22a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c1d3cd6ee2e4930adf50ddeb777a22a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G7MVg61rK_YTTrejWACguxNL784=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.713198+00 2025-12-09 10:15:42.713203+00 17891 LJH1906#红色 SPMX-20240815313112 \N \N \N 1 \N [{"file_id": "bbee77cd-0a44-46e6-8025-c678b2e3faee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a49e07ff133f4284af36084fd0f9505c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a49e07ff133f4284af36084fd0f9505c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a49e07ff133f4284af36084fd0f9505c.jpg", "file_size": 51134, "is_delete": false, "file_type": 1, "original_file_name": "LJH1906#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a49e07ff133f4284af36084fd0f9505c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a49e07ff133f4284af36084fd0f9505c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a49e07ff133f4284af36084fd0f9505c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a49e07ff133f4284af36084fd0f9505c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a49e07ff133f4284af36084fd0f9505c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uq-MSN7dTfbGYsYxMpIyZNc_qcM=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.716116+00 2025-12-09 10:15:42.716121+00 17892 2317-1#柠檬绿L SPMX-20240815313116 \N \N \N 1 \N [{"file_id": "19985c78-61a8-4d4b-b8f6-22b18056daf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "103d593016c54ebb8e87a6184957723e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "103d593016c54ebb8e87a6184957723e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "103d593016c54ebb8e87a6184957723e.jpg", "file_size": 17547, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#柠檬绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103d593016c54ebb8e87a6184957723e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103d593016c54ebb8e87a6184957723e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/103d593016c54ebb8e87a6184957723e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/103d593016c54ebb8e87a6184957723e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/103d593016c54ebb8e87a6184957723e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmwlKQrYaHWzyNs8vDYrtp3tj0U=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.7189+00 2025-12-09 10:15:42.718905+00 17893 FX0003-26#RC23 SPMX-20240815313118 \N \N \N 1 \N [{"file_id": "10076a34-549f-49cf-a3c9-de3e30dbce3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c39f0ea2e6843cda3ad7f6726df4c69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c39f0ea2e6843cda3ad7f6726df4c69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c39f0ea2e6843cda3ad7f6726df4c69.jpg", "file_size": 15745, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-26#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c39f0ea2e6843cda3ad7f6726df4c69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c39f0ea2e6843cda3ad7f6726df4c69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c39f0ea2e6843cda3ad7f6726df4c69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c39f0ea2e6843cda3ad7f6726df4c69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c39f0ea2e6843cda3ad7f6726df4c69.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0HWVA91f-iAaJMfvAELzchBbL0=", "createTime": "2024-08-15 15:03:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.72154+00 2025-12-09 10:15:42.721544+00 17894 DL31766#前幅玫红 SPMX-20240815313117 \N \N \N 1 \N [{"file_id": "e5e2779e-99b2-44f1-91fb-fbc8e08d7591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4652cfdc98d34fd69177b25432379c5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4652cfdc98d34fd69177b25432379c5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4652cfdc98d34fd69177b25432379c5a.jpg", "file_size": 43265, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4652cfdc98d34fd69177b25432379c5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4652cfdc98d34fd69177b25432379c5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4652cfdc98d34fd69177b25432379c5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4652cfdc98d34fd69177b25432379c5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4652cfdc98d34fd69177b25432379c5a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I-n0wBRx2cDVBbWMhuiLgjoroKw=", "createTime": "2024-08-15 15:03:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.724076+00 2025-12-09 10:15:42.724081+00 17895 0008-6FWE#粉底VS-D3 SPMX-20240815313121 \N \N \N 1 \N [{"file_id": "ca024a37-0078-4ab0-b1f5-7606435e4291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e16bb4ab5a44ef9ff6a45980580f51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e16bb4ab5a44ef9ff6a45980580f51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e16bb4ab5a44ef9ff6a45980580f51.jpg", "file_size": 14997, "is_delete": false, "file_type": 1, "original_file_name": "0008-6FWE#粉底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e16bb4ab5a44ef9ff6a45980580f51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e16bb4ab5a44ef9ff6a45980580f51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e16bb4ab5a44ef9ff6a45980580f51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e16bb4ab5a44ef9ff6a45980580f51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e16bb4ab5a44ef9ff6a45980580f51.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hq32TnEWwQOMDDNApAq97Gvy_2c=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.726419+00 2025-12-09 10:15:42.726423+00 17896 JTSS846FW#VS-D3 SPMX-20240815313119 \N \N \N 1 \N [{"file_id": "4810a6f5-1b56-4892-8a95-1b06c1aadd91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "769e054d35d74ccf940f1b2ccc3c8167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "769e054d35d74ccf940f1b2ccc3c8167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "769e054d35d74ccf940f1b2ccc3c8167.jpg", "file_size": 23032, "is_delete": false, "file_type": 1, "original_file_name": "JTSS846FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e054d35d74ccf940f1b2ccc3c8167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e054d35d74ccf940f1b2ccc3c8167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/769e054d35d74ccf940f1b2ccc3c8167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/769e054d35d74ccf940f1b2ccc3c8167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/769e054d35d74ccf940f1b2ccc3c8167.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K1fFoNuo9X7HqWqbhfOr8suIJ7o=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.729047+00 2025-12-09 10:15:42.729054+00 17897 2317-1#柠檬绿XL SPMX-20240815313125 \N \N \N 1 \N [{"file_id": "68ac537f-d79c-4914-8709-0bc9ec341e73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba320d295d97488e9f8e5fa4b15c7247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba320d295d97488e9f8e5fa4b15c7247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba320d295d97488e9f8e5fa4b15c7247.jpg", "file_size": 17528, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#柠檬绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba320d295d97488e9f8e5fa4b15c7247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba320d295d97488e9f8e5fa4b15c7247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba320d295d97488e9f8e5fa4b15c7247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba320d295d97488e9f8e5fa4b15c7247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba320d295d97488e9f8e5fa4b15c7247.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:332QxhLc8PA54UihRzqS9MCch58=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.731691+00 2025-12-09 10:15:42.731696+00 17898 LJH1906#黄色 SPMX-20240815313122 \N \N \N 1 \N [{"file_id": "1b460552-73e2-470b-986a-cb921aaf350d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35910155c58646e29ccf44e58400b5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35910155c58646e29ccf44e58400b5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35910155c58646e29ccf44e58400b5f3.jpg", "file_size": 54593, "is_delete": false, "file_type": 1, "original_file_name": "LJH1906#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35910155c58646e29ccf44e58400b5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35910155c58646e29ccf44e58400b5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35910155c58646e29ccf44e58400b5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35910155c58646e29ccf44e58400b5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35910155c58646e29ccf44e58400b5f3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IB7n-u2u1jdbX1cCqKRn5tOkPKw=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.734259+00 2025-12-09 10:15:42.734264+00 17899 1231-2FWF#小童8码+4码 SPMX-20240815313120 \N \N \N 1 \N [{"file_id": "419ce6d7-fbeb-4759-bf9f-1ed0bc300d7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bde33779985496b8820cbf2f7e70ec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bde33779985496b8820cbf2f7e70ec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bde33779985496b8820cbf2f7e70ec0.jpg", "file_size": 19753, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde33779985496b8820cbf2f7e70ec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde33779985496b8820cbf2f7e70ec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bde33779985496b8820cbf2f7e70ec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bde33779985496b8820cbf2f7e70ec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bde33779985496b8820cbf2f7e70ec0.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oIDpLyt3DMCHaa6-UcneDD0ZVMM=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.737139+00 2025-12-09 10:15:42.737145+00 17900 DL31766#前幅蓝绿 SPMX-20240815313126 \N \N \N 1 \N [{"file_id": "65707c47-d4d6-4759-a7cc-cc37f954dc2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "179118cdf0554d88bdd87d8893890bd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "179118cdf0554d88bdd87d8893890bd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "179118cdf0554d88bdd87d8893890bd2.jpg", "file_size": 44344, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179118cdf0554d88bdd87d8893890bd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179118cdf0554d88bdd87d8893890bd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/179118cdf0554d88bdd87d8893890bd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/179118cdf0554d88bdd87d8893890bd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/179118cdf0554d88bdd87d8893890bd2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Dma6Yi3cDabtbq-FJcJ-GUOrHk=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.739946+00 2025-12-09 10:15:42.739953+00 17901 CCHA1FWE#浅粉净色 SPMX-20240815313123 \N \N \N 1 \N [{"file_id": "c163ef9f-cc43-487a-a6c4-ae1a9a1494d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "471826e311614678a57b06f43adfa215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "471826e311614678a57b06f43adfa215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "471826e311614678a57b06f43adfa215.jpg", "file_size": 4577, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#浅粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471826e311614678a57b06f43adfa215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471826e311614678a57b06f43adfa215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471826e311614678a57b06f43adfa215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/471826e311614678a57b06f43adfa215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/471826e311614678a57b06f43adfa215.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eDSL-swrIYKXwtgSrzgJvrx5Ak=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.742769+00 2025-12-09 10:15:42.742775+00 17902 LZ1378#童装下身4号色 SPMX-20240815313124 \N \N \N 1 \N [{"file_id": "13093758-814a-4e8e-9b64-0b0d46642faf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "398a057ff89443e0ac00b73c66afb30e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "398a057ff89443e0ac00b73c66afb30e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "398a057ff89443e0ac00b73c66afb30e.jpg", "file_size": 31651, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398a057ff89443e0ac00b73c66afb30e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398a057ff89443e0ac00b73c66afb30e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398a057ff89443e0ac00b73c66afb30e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/398a057ff89443e0ac00b73c66afb30e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/398a057ff89443e0ac00b73c66afb30e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dcs9iDlYVHQcesxF0OfKzuy0Pmo=", "createTime": "2024-08-15 15:03:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.745609+00 2025-12-09 10:15:42.745614+00 17903 FX0003-27#RC23 SPMX-20240815313127 \N \N \N 1 \N [{"file_id": "bfbe1fb0-57fa-4df9-b218-d7b4f78408bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0f236de5e35442b8c4c86c7ddc6ff9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0f236de5e35442b8c4c86c7ddc6ff9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0f236de5e35442b8c4c86c7ddc6ff9d.jpg", "file_size": 14065, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-27#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f236de5e35442b8c4c86c7ddc6ff9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f236de5e35442b8c4c86c7ddc6ff9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f236de5e35442b8c4c86c7ddc6ff9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0f236de5e35442b8c4c86c7ddc6ff9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0f236de5e35442b8c4c86c7ddc6ff9d.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-kyyh8kTLAHYsvwwovU1eCXnECM=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.748477+00 2025-12-09 10:15:42.748483+00 17904 LZ1378#童装下身5号色 SPMX-20240815313134 \N \N \N 1 \N [{"file_id": "05de4995-157e-41a3-a417-c18535940da1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aae8526470ac45598ac1aad4e2703e93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aae8526470ac45598ac1aad4e2703e93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aae8526470ac45598ac1aad4e2703e93.jpg", "file_size": 31650, "is_delete": false, "file_type": 1, "original_file_name": "LZ1378#童装下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae8526470ac45598ac1aad4e2703e93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae8526470ac45598ac1aad4e2703e93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae8526470ac45598ac1aad4e2703e93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aae8526470ac45598ac1aad4e2703e93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aae8526470ac45598ac1aad4e2703e93.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nF2ei4TfmONbod8VPqB6sgEUG0s=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.751395+00 2025-12-09 10:15:42.751401+00 17905 DL31766#前幅黄色 SPMX-20240815313137 \N \N \N 1 \N [{"file_id": "8e531cf9-1e37-4e75-b56e-7a7b754f6d45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b0ba4ba9e5f49698a112ba3718fe2e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b0ba4ba9e5f49698a112ba3718fe2e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b0ba4ba9e5f49698a112ba3718fe2e5.jpg", "file_size": 44202, "is_delete": false, "file_type": 1, "original_file_name": "DL31766#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0ba4ba9e5f49698a112ba3718fe2e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0ba4ba9e5f49698a112ba3718fe2e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0ba4ba9e5f49698a112ba3718fe2e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b0ba4ba9e5f49698a112ba3718fe2e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b0ba4ba9e5f49698a112ba3718fe2e5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWYLLnrLuMzgLZ2DIYw7bcjVQss=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.754339+00 2025-12-09 10:15:42.754345+00 17906 1231-2FWF#小童袖领匹布 SPMX-20240815313130 \N \N \N 1 \N [{"file_id": "8c48d53d-d9b7-4e84-b1b1-fd2ff226aaf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "445b9fc3713e453a9665fe697f5944a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "445b9fc3713e453a9665fe697f5944a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "445b9fc3713e453a9665fe697f5944a7.jpg", "file_size": 14979, "is_delete": false, "file_type": 1, "original_file_name": "1231-2FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445b9fc3713e453a9665fe697f5944a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445b9fc3713e453a9665fe697f5944a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/445b9fc3713e453a9665fe697f5944a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/445b9fc3713e453a9665fe697f5944a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/445b9fc3713e453a9665fe697f5944a7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfW2OLzcKqoI3s8Z1eP1MIUgc7o=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.757212+00 2025-12-09 10:15:42.757218+00 17907 0008-7FWE#土黄底VS-D3 SPMX-20240815313132 \N \N \N 1 \N [{"file_id": "aa575d2c-674e-4788-ae85-bde528ffce7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00c1b08007144365b78a358853a3967a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00c1b08007144365b78a358853a3967a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00c1b08007144365b78a358853a3967a.jpg", "file_size": 11692, "is_delete": false, "file_type": 1, "original_file_name": "0008-7FWE#土黄底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1b08007144365b78a358853a3967a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1b08007144365b78a358853a3967a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c1b08007144365b78a358853a3967a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00c1b08007144365b78a358853a3967a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00c1b08007144365b78a358853a3967a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9pgGFrOBPeYzNi9g_GrjB02CGTI=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.76014+00 2025-12-09 10:15:42.760146+00 17908 CCHA1FWE#白 SPMX-20240815313133 \N \N \N 1 \N [{"file_id": "aad364b5-b61c-45a7-86c7-28cadcfc7851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27d60ae9f103411aac6e97f010a75705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27d60ae9f103411aac6e97f010a75705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27d60ae9f103411aac6e97f010a75705.jpg", "file_size": 14546, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d60ae9f103411aac6e97f010a75705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d60ae9f103411aac6e97f010a75705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d60ae9f103411aac6e97f010a75705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27d60ae9f103411aac6e97f010a75705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27d60ae9f103411aac6e97f010a75705.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AgshFlmskno4ZHyMKonamzA69fI=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.763203+00 2025-12-09 10:15:42.763209+00 17909 LJH1909#彩兰 SPMX-20240815313135 \N \N \N 1 \N [{"file_id": "abd94de8-90a9-4174-8846-364b8c2c509f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6d0bf5840a647ef96f3b4bfc76331b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6d0bf5840a647ef96f3b4bfc76331b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6d0bf5840a647ef96f3b4bfc76331b6.jpg", "file_size": 45888, "is_delete": false, "file_type": 1, "original_file_name": "LJH1909#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d0bf5840a647ef96f3b4bfc76331b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d0bf5840a647ef96f3b4bfc76331b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6d0bf5840a647ef96f3b4bfc76331b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6d0bf5840a647ef96f3b4bfc76331b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6d0bf5840a647ef96f3b4bfc76331b6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IGvk_3VjXG9oY-cB_UikzoKome4=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.766142+00 2025-12-09 10:15:42.766147+00 17910 8572FWE#M SPMX-20240815313129 \N \N \N 1 \N [{"file_id": "27503866-aaec-437c-921c-2cce8afd9b3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c11d29795694e518934b827bb17a1c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c11d29795694e518934b827bb17a1c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c11d29795694e518934b827bb17a1c6.jpg", "file_size": 17608, "is_delete": false, "file_type": 1, "original_file_name": "8572FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c11d29795694e518934b827bb17a1c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c11d29795694e518934b827bb17a1c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c11d29795694e518934b827bb17a1c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c11d29795694e518934b827bb17a1c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c11d29795694e518934b827bb17a1c6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLpXv3wUmslVTz658GyenCnv56I=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.768736+00 2025-12-09 10:15:42.76874+00 17911 JTSS847FW#VS-D3 SPMX-20240815313131 \N \N \N 1 \N [{"file_id": "30e22542-68c5-478e-b7e5-793e5f2a71c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9cda32326a3466cb31808010bb5fedc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9cda32326a3466cb31808010bb5fedc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9cda32326a3466cb31808010bb5fedc.jpg", "file_size": 13660, "is_delete": false, "file_type": 1, "original_file_name": "JTSS847FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9cda32326a3466cb31808010bb5fedc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9cda32326a3466cb31808010bb5fedc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9cda32326a3466cb31808010bb5fedc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9cda32326a3466cb31808010bb5fedc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9cda32326a3466cb31808010bb5fedc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oGwe1iaAZBzDztllkYxoovBKQF8=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.77134+00 2025-12-09 10:15:42.771345+00 17912 2317-1#柠檬绿款领子净色 SPMX-20240815313136 \N \N \N 1 \N [{"file_id": "5503d167-0775-4463-bfc9-1f0b421d614d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b03605e8bf34b82b32bf35d749d182e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b03605e8bf34b82b32bf35d749d182e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b03605e8bf34b82b32bf35d749d182e.jpg", "file_size": 7225, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#柠檬绿款领子净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b03605e8bf34b82b32bf35d749d182e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b03605e8bf34b82b32bf35d749d182e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b03605e8bf34b82b32bf35d749d182e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b03605e8bf34b82b32bf35d749d182e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b03605e8bf34b82b32bf35d749d182e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Uu51KA2cQt01ssAyAqgwzQQBFM=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.773963+00 2025-12-09 10:15:42.773968+00 17913 HX9009#蓝色花鸟 SPMX-20240815313128 \N \N \N 1 \N [{"file_id": "3c89b493-eb4c-44e7-8cc1-99ba12ce081d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ce73f3d9fd84ff996effc701d568bd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ce73f3d9fd84ff996effc701d568bd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ce73f3d9fd84ff996effc701d568bd9.jpg", "file_size": 22828, "is_delete": false, "file_type": 1, "original_file_name": "HX9009#蓝色花鸟.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce73f3d9fd84ff996effc701d568bd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce73f3d9fd84ff996effc701d568bd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce73f3d9fd84ff996effc701d568bd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ce73f3d9fd84ff996effc701d568bd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ce73f3d9fd84ff996effc701d568bd9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxU7TvqwcmSRSgsG5Fdp2Azjtl0=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.776564+00 2025-12-09 10:15:42.776569+00 17914 HX9010#深宝蓝 SPMX-20240815313138 \N \N \N 1 \N [{"file_id": "41414a25-e725-43b1-9902-a988c4cbb288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e33839cdf0e04218be79dd8c3277d133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e33839cdf0e04218be79dd8c3277d133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e33839cdf0e04218be79dd8c3277d133.jpg", "file_size": 19942, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#深宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33839cdf0e04218be79dd8c3277d133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33839cdf0e04218be79dd8c3277d133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e33839cdf0e04218be79dd8c3277d133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e33839cdf0e04218be79dd8c3277d133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e33839cdf0e04218be79dd8c3277d133.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0hwVtBX4JIwMDiB4riBfVdf9Q0o=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.77892+00 2025-12-09 10:15:42.778925+00 17915 8572FWE#XL SPMX-20240815313139 \N \N \N 1 \N [{"file_id": "71510b88-f6f8-4c0c-a2f3-df282a37ddf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e404c014e94652af93eb7658abaf84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e404c014e94652af93eb7658abaf84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e404c014e94652af93eb7658abaf84.jpg", "file_size": 17729, "is_delete": false, "file_type": 1, "original_file_name": "8572FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e404c014e94652af93eb7658abaf84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e404c014e94652af93eb7658abaf84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e404c014e94652af93eb7658abaf84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e404c014e94652af93eb7658abaf84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e404c014e94652af93eb7658abaf84.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CWepjDaxcB3yd90qIYCQ94lMd2o=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.78154+00 2025-12-09 10:15:42.781544+00 17916 FX0003-28#RC23 SPMX-20240815313141 \N \N \N 1 \N [{"file_id": "b4df41ff-390f-4b18-b1bc-3d5493a94000", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8253714e40d244a0b4316e78ad07ade5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8253714e40d244a0b4316e78ad07ade5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8253714e40d244a0b4316e78ad07ade5.jpg", "file_size": 18401, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-28#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8253714e40d244a0b4316e78ad07ade5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8253714e40d244a0b4316e78ad07ade5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8253714e40d244a0b4316e78ad07ade5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8253714e40d244a0b4316e78ad07ade5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8253714e40d244a0b4316e78ad07ade5.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vacmsIbPSH0-pzfD0Bc4VmxFLgA=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.807301+00 2025-12-09 10:15:42.807309+00 17925 HX9010#灰色 SPMX-20240815313151 \N \N \N 1 \N [{"file_id": "37c41624-d6de-44e8-ace1-e345ab5b5297", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd08e4f2e6214c88941735c17627f554.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd08e4f2e6214c88941735c17627f554.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd08e4f2e6214c88941735c17627f554.jpg", "file_size": 18484, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd08e4f2e6214c88941735c17627f554.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd08e4f2e6214c88941735c17627f554.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd08e4f2e6214c88941735c17627f554.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd08e4f2e6214c88941735c17627f554.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd08e4f2e6214c88941735c17627f554.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UaqI_DjJTqrDx19ILQbyQi97R5E=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.784096+00 2025-12-09 10:15:42.784101+00 17917 0008-7FWE#橙底VS-D3 SPMX-20240815313143 \N \N \N 1 \N [{"file_id": "a77f58c3-0b48-43df-b846-84988263a9c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3612b7b869a447b49d1e0057dac22474.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3612b7b869a447b49d1e0057dac22474.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3612b7b869a447b49d1e0057dac22474.jpg", "file_size": 11492, "is_delete": false, "file_type": 1, "original_file_name": "0008-7FWE#橙底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3612b7b869a447b49d1e0057dac22474.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3612b7b869a447b49d1e0057dac22474.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3612b7b869a447b49d1e0057dac22474.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3612b7b869a447b49d1e0057dac22474.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3612b7b869a447b49d1e0057dac22474.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5CEt0SHaUTeCfRK40ocf7787vOM=", "createTime": "2024-08-15 15:03:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.786689+00 2025-12-09 10:15:42.786694+00 17918 1231-30FWF#中童12码+10码 SPMX-20240815313140 \N \N \N 1 \N [{"file_id": "dce39b24-082c-41b1-b0b2-483ad65a798f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2e663ee4a034535a59da7dc12b7ff40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2e663ee4a034535a59da7dc12b7ff40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2e663ee4a034535a59da7dc12b7ff40.jpg", "file_size": 20503, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e663ee4a034535a59da7dc12b7ff40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e663ee4a034535a59da7dc12b7ff40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e663ee4a034535a59da7dc12b7ff40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2e663ee4a034535a59da7dc12b7ff40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2e663ee4a034535a59da7dc12b7ff40.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B0aRRioLyZ7775E4gYY7Idxa8hs=", "createTime": "2024-08-15 15:03:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.789305+00 2025-12-09 10:15:42.789309+00 17919 JTSS848FW#VS-D3 SPMX-20240815313142 \N \N \N 1 \N [{"file_id": "d30a4a4d-e3b7-4a08-a72a-97511d00f2ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5432160a0b9941089a4c8473c85655b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5432160a0b9941089a4c8473c85655b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5432160a0b9941089a4c8473c85655b7.jpg", "file_size": 11808, "is_delete": false, "file_type": 1, "original_file_name": "JTSS848FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5432160a0b9941089a4c8473c85655b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5432160a0b9941089a4c8473c85655b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5432160a0b9941089a4c8473c85655b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5432160a0b9941089a4c8473c85655b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5432160a0b9941089a4c8473c85655b7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xWTBV-9slbhuAufT-QaNTUG-gI=", "createTime": "2024-08-15 15:03:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.791816+00 2025-12-09 10:15:42.791821+00 17920 LJH1909#红色 SPMX-20240815313144 \N \N \N 1 \N [{"file_id": "de1afd55-1b67-4941-9203-663b9182a242", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "627d2b65e18543969b664bd1474eb454.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "627d2b65e18543969b664bd1474eb454.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "627d2b65e18543969b664bd1474eb454.jpg", "file_size": 44664, "is_delete": false, "file_type": 1, "original_file_name": "LJH1909#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627d2b65e18543969b664bd1474eb454.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627d2b65e18543969b664bd1474eb454.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627d2b65e18543969b664bd1474eb454.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/627d2b65e18543969b664bd1474eb454.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/627d2b65e18543969b664bd1474eb454.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ICMnR9HQlSG4QkY5tPw_uab4k6w=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.79453+00 2025-12-09 10:15:42.794536+00 17921 DL31768#下摆批布亮黄 SPMX-20240815313153 \N \N \N 1 \N [{"file_id": "bdb62cfc-5c2e-4ac8-981f-1a2d865713dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39fa2bde3f014a4ba9b6edd814d18275.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39fa2bde3f014a4ba9b6edd814d18275.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39fa2bde3f014a4ba9b6edd814d18275.jpg", "file_size": 58987, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fa2bde3f014a4ba9b6edd814d18275.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fa2bde3f014a4ba9b6edd814d18275.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39fa2bde3f014a4ba9b6edd814d18275.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39fa2bde3f014a4ba9b6edd814d18275.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39fa2bde3f014a4ba9b6edd814d18275.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cegKbWUqKwsVV5IC-Bqls8Cl_WI=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.79761+00 2025-12-09 10:15:42.797616+00 17922 1231-30FWF#中童14码 SPMX-20240815313149 \N \N \N 1 \N [{"file_id": "a810b443-f826-42b5-be83-79d2772059bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce3fe2c735db47939e7191c029d0b424.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce3fe2c735db47939e7191c029d0b424.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce3fe2c735db47939e7191c029d0b424.jpg", "file_size": 18370, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3fe2c735db47939e7191c029d0b424.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3fe2c735db47939e7191c029d0b424.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3fe2c735db47939e7191c029d0b424.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce3fe2c735db47939e7191c029d0b424.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce3fe2c735db47939e7191c029d0b424.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXnHxelOq4MkXhFywVGb2vn28L4=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.801038+00 2025-12-09 10:15:42.801046+00 17923 LZ1379#童装上身1号色 SPMX-20240815313147 \N \N \N 1 \N [{"file_id": "f86d975e-d0ce-4274-b38c-74371036924f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bac14b12201346259ac22b56995ae7ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bac14b12201346259ac22b56995ae7ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bac14b12201346259ac22b56995ae7ad.jpg", "file_size": 25534, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bac14b12201346259ac22b56995ae7ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bac14b12201346259ac22b56995ae7ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bac14b12201346259ac22b56995ae7ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bac14b12201346259ac22b56995ae7ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bac14b12201346259ac22b56995ae7ad.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQzIXEZ6Xg-brecmr-3AnYVOUo0=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.804249+00 2025-12-09 10:15:42.804256+00 17924 FX0003-29#RC23 SPMX-20240815313155 \N \N \N 1 \N [{"file_id": "eb45f383-148e-42a5-b948-242c8adc3421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg", "file_size": 23444, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-29#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a00d16339ff4ffa9e2fa1ef523f1bb9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RivHEyQLdwgWvneHQaEoJz4i9T0=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.810293+00 2025-12-09 10:15:42.810299+00 17926 8581#WJC22 SPMX-20240815313152 \N \N \N 1 \N [{"file_id": "7952ec7c-c04a-4eb9-bac9-9e54719398cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cd1d4e32dd240d0895b0df5bdeef1b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cd1d4e32dd240d0895b0df5bdeef1b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cd1d4e32dd240d0895b0df5bdeef1b9.jpg", "file_size": 20024, "is_delete": false, "file_type": 1, "original_file_name": "8581#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd1d4e32dd240d0895b0df5bdeef1b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd1d4e32dd240d0895b0df5bdeef1b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cd1d4e32dd240d0895b0df5bdeef1b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cd1d4e32dd240d0895b0df5bdeef1b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cd1d4e32dd240d0895b0df5bdeef1b9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4p-vx1c3CahIrEw5pQm56ICY6iU=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.813278+00 2025-12-09 10:15:42.813284+00 17927 CCHA1FWE#蓝净色 SPMX-20240815313156 \N \N \N 1 \N [{"file_id": "96a19a6b-ad1c-4332-b1cf-a6fa766df5b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg", "file_size": 4837, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa89f40a64b047d6bd2d6c21d4cbc4e3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_fA2PTwnnu_gSH1ZHRP3XXP1pkk=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.816219+00 2025-12-09 10:15:42.816225+00 17928 LZ1379#童装上身2号色 SPMX-20240815313158 \N \N \N 1 \N [{"file_id": "609c0dfe-6b00-47d8-bcc2-f765e8c2a00f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52bd3de3878f478f9c6530e56bed65da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52bd3de3878f478f9c6530e56bed65da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52bd3de3878f478f9c6530e56bed65da.jpg", "file_size": 25585, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bd3de3878f478f9c6530e56bed65da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bd3de3878f478f9c6530e56bed65da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52bd3de3878f478f9c6530e56bed65da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52bd3de3878f478f9c6530e56bed65da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52bd3de3878f478f9c6530e56bed65da.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IuMQ-oAm7KbqyeLVvChVaRE8Ts=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.819128+00 2025-12-09 10:15:42.819134+00 17929 2317-1#橙色2XL SPMX-20240815313145 \N \N \N 1 \N [{"file_id": "e756df7a-3364-4eb0-90aa-c6f10e81e68b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "264bee336bef41b996b310af9029d5c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "264bee336bef41b996b310af9029d5c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "264bee336bef41b996b310af9029d5c9.jpg", "file_size": 17863, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#橙色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bee336bef41b996b310af9029d5c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bee336bef41b996b310af9029d5c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bee336bef41b996b310af9029d5c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/264bee336bef41b996b310af9029d5c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/264bee336bef41b996b310af9029d5c9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mJuuqrYcIskhyRpAGci9QQU0dXI=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.822008+00 2025-12-09 10:15:42.822013+00 17930 JTSS849FW#VS-D3 SPMX-20240815313150 \N \N \N 1 \N [{"file_id": "c3628efd-dbb3-4ae2-b605-7dadff883718", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df496c260b8b42fe854ec2ef7f09d79b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df496c260b8b42fe854ec2ef7f09d79b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df496c260b8b42fe854ec2ef7f09d79b.jpg", "file_size": 9388, "is_delete": false, "file_type": 1, "original_file_name": "JTSS849FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df496c260b8b42fe854ec2ef7f09d79b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df496c260b8b42fe854ec2ef7f09d79b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df496c260b8b42fe854ec2ef7f09d79b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df496c260b8b42fe854ec2ef7f09d79b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df496c260b8b42fe854ec2ef7f09d79b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-A5tYcKHwUHCnmLHT4JGaG5rOrU=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.824934+00 2025-12-09 10:15:42.82494+00 17931 2317-1#橙色L SPMX-20240815313154 \N \N \N 1 \N [{"file_id": "6d61203a-0ccf-42b8-b97a-9cc33aba48b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dc6be9778cc40ef808bc5454f986b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dc6be9778cc40ef808bc5454f986b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dc6be9778cc40ef808bc5454f986b0c.jpg", "file_size": 18198, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#橙色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc6be9778cc40ef808bc5454f986b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc6be9778cc40ef808bc5454f986b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dc6be9778cc40ef808bc5454f986b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dc6be9778cc40ef808bc5454f986b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dc6be9778cc40ef808bc5454f986b0c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y-mTJSELyR_eyEd_TcX2DUsydBw=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.827829+00 2025-12-09 10:15:42.827834+00 17932 LJH1909#绿勾引 SPMX-20240815313157 \N \N \N 1 \N [{"file_id": "6f5a30c0-361e-43ac-9d23-4d9cc9863467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6684fcbe97a8435aa85411ca9b7c8360.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6684fcbe97a8435aa85411ca9b7c8360.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6684fcbe97a8435aa85411ca9b7c8360.jpg", "file_size": 46433, "is_delete": false, "file_type": 1, "original_file_name": "LJH1909#绿勾引.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6684fcbe97a8435aa85411ca9b7c8360.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6684fcbe97a8435aa85411ca9b7c8360.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6684fcbe97a8435aa85411ca9b7c8360.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6684fcbe97a8435aa85411ca9b7c8360.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6684fcbe97a8435aa85411ca9b7c8360.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vYeU1paToTZcnZwsGGQTSF_XgxI=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.830762+00 2025-12-09 10:15:42.830767+00 17933 CCHA1FWE#蓝 SPMX-20240815313146 \N \N \N 1 \N [{"file_id": "537fb75b-0277-46ca-bc5e-fce11844f582", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f785d093d734f69bf9172135b01b034.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f785d093d734f69bf9172135b01b034.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f785d093d734f69bf9172135b01b034.jpg", "file_size": 15567, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f785d093d734f69bf9172135b01b034.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f785d093d734f69bf9172135b01b034.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f785d093d734f69bf9172135b01b034.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f785d093d734f69bf9172135b01b034.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f785d093d734f69bf9172135b01b034.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V4RteMs_c3-l9lrdHmtGWFCXw5s=", "createTime": "2024-08-15 15:03:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.833688+00 2025-12-09 10:15:42.833693+00 17934 0008-8FWE#VS-D3 SPMX-20240815313148 \N \N \N 1 \N [{"file_id": "e9d51c18-4ba5-4ad4-89a5-a43027b8ace0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a7e94fbcb3b48c4af569382c01e7dde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a7e94fbcb3b48c4af569382c01e7dde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a7e94fbcb3b48c4af569382c01e7dde.jpg", "file_size": 18122, "is_delete": false, "file_type": 1, "original_file_name": "0008-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e94fbcb3b48c4af569382c01e7dde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e94fbcb3b48c4af569382c01e7dde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e94fbcb3b48c4af569382c01e7dde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a7e94fbcb3b48c4af569382c01e7dde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a7e94fbcb3b48c4af569382c01e7dde.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xpk9tJPBxP9ia3bMjfEqWz0B_XU=", "createTime": "2024-08-15 15:03:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.83714+00 2025-12-09 10:15:42.837146+00 17935 HX9010#白底粉花 SPMX-20240815313168 \N \N \N 1 \N [{"file_id": "ef5dee19-5920-4f17-86d1-7e967d742f6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f797958733794945807e00f5f601794a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f797958733794945807e00f5f601794a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f797958733794945807e00f5f601794a.jpg", "file_size": 15568, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#白底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f797958733794945807e00f5f601794a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f797958733794945807e00f5f601794a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f797958733794945807e00f5f601794a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f797958733794945807e00f5f601794a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f797958733794945807e00f5f601794a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZWutF973sttc6kcnXP5mt4xiOY=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.840247+00 2025-12-09 10:15:42.840253+00 17936 1231-30FWF#中童袖领匹布 SPMX-20240815313167 \N \N \N 1 \N [{"file_id": "671541bc-2376-4e89-88df-8a7c84c02aad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7262fc97a798461b90a3fcf6f1ca52f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7262fc97a798461b90a3fcf6f1ca52f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7262fc97a798461b90a3fcf6f1ca52f6.jpg", "file_size": 25467, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7262fc97a798461b90a3fcf6f1ca52f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7262fc97a798461b90a3fcf6f1ca52f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7262fc97a798461b90a3fcf6f1ca52f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7262fc97a798461b90a3fcf6f1ca52f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7262fc97a798461b90a3fcf6f1ca52f6.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gt-nyUhCZK_zk7pgx0iu6SFwKlA=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.843249+00 2025-12-09 10:15:42.843254+00 17937 FX0003-3#RC23 SPMX-20240815313163 \N \N \N 1 \N [{"file_id": "30b918be-171d-4ed1-83cb-9408d9f294da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cdca4502e924baa9e65ba22d20b314c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cdca4502e924baa9e65ba22d20b314c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cdca4502e924baa9e65ba22d20b314c.jpg", "file_size": 17317, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdca4502e924baa9e65ba22d20b314c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdca4502e924baa9e65ba22d20b314c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdca4502e924baa9e65ba22d20b314c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cdca4502e924baa9e65ba22d20b314c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cdca4502e924baa9e65ba22d20b314c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y4q1G7gixdriIyNuzSL3pTt4j34=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.846271+00 2025-12-09 10:15:42.846277+00 17938 CCHA1FWE#西瓜粉 SPMX-20240815313164 \N \N \N 1 \N [{"file_id": "4c7237ec-014f-4ca1-870e-c55a40b10b35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcdb17ebea5b489a90a8afefe5625179.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcdb17ebea5b489a90a8afefe5625179.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcdb17ebea5b489a90a8afefe5625179.jpg", "file_size": 14313, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#西瓜粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdb17ebea5b489a90a8afefe5625179.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdb17ebea5b489a90a8afefe5625179.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcdb17ebea5b489a90a8afefe5625179.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcdb17ebea5b489a90a8afefe5625179.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcdb17ebea5b489a90a8afefe5625179.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lZu_bDxok4za0vngvnyGeEAqpk=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.849278+00 2025-12-09 10:15:42.849284+00 17939 LZ1379#童装上身3号色 SPMX-20240815313166 \N \N \N 1 \N [{"file_id": "7e09b0b1-0f3b-4868-b359-d40a839127df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc6a1607cc3143f2ba917ee45eebb85e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc6a1607cc3143f2ba917ee45eebb85e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc6a1607cc3143f2ba917ee45eebb85e.jpg", "file_size": 24959, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6a1607cc3143f2ba917ee45eebb85e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6a1607cc3143f2ba917ee45eebb85e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6a1607cc3143f2ba917ee45eebb85e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc6a1607cc3143f2ba917ee45eebb85e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc6a1607cc3143f2ba917ee45eebb85e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4roDacE70C2-hFJUBWP9Xw6jKI=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.852323+00 2025-12-09 10:15:42.852331+00 17940 DL31768#下摆批布大红 SPMX-20240815313162 \N \N \N 1 \N [{"file_id": "0d2ed48b-a9ac-4c55-b247-c9c75e76423c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd99b31cd57a4114845694310804da7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd99b31cd57a4114845694310804da7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd99b31cd57a4114845694310804da7a.jpg", "file_size": 60550, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd99b31cd57a4114845694310804da7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd99b31cd57a4114845694310804da7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd99b31cd57a4114845694310804da7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd99b31cd57a4114845694310804da7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd99b31cd57a4114845694310804da7a.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14z8fPhMBdFROXDm8xC9J7e_3jQ=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.855271+00 2025-12-09 10:15:42.855278+00 17941 8582#WJC22 SPMX-20240815313161 \N \N \N 1 \N [{"file_id": "8e78d35b-b72e-46bf-90a3-fe2e584096d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "339e90b744674557a515bb4713c7b0cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "339e90b744674557a515bb4713c7b0cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "339e90b744674557a515bb4713c7b0cc.jpg", "file_size": 20503, "is_delete": false, "file_type": 1, "original_file_name": "8582#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e90b744674557a515bb4713c7b0cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e90b744674557a515bb4713c7b0cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339e90b744674557a515bb4713c7b0cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/339e90b744674557a515bb4713c7b0cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/339e90b744674557a515bb4713c7b0cc.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KABR5jZ9k-1XnQ_CYNEdjnwnl2I=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.858235+00 2025-12-09 10:15:42.858242+00 17942 0008-8FWE#粉色VS-D3 SPMX-20240815313159 \N \N \N 1 \N [{"file_id": "0b7ba175-4def-4dff-be47-7b1a7776cb51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a2a1d035a4440892eae1d280c28e00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a2a1d035a4440892eae1d280c28e00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a2a1d035a4440892eae1d280c28e00.jpg", "file_size": 15871, "is_delete": false, "file_type": 1, "original_file_name": "0008-8FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a2a1d035a4440892eae1d280c28e00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a2a1d035a4440892eae1d280c28e00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a2a1d035a4440892eae1d280c28e00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a2a1d035a4440892eae1d280c28e00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a2a1d035a4440892eae1d280c28e00.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q16Oxuahprv9ZBdTXPsUJKnSnio=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.861127+00 2025-12-09 10:15:42.861133+00 17943 2317-1#橙色XL SPMX-20240815313165 \N \N \N 1 \N [{"file_id": "2674b003-9d56-4d4c-8399-92e6a701d8a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94a195f30da04bf39dad24885a37a7b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94a195f30da04bf39dad24885a37a7b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94a195f30da04bf39dad24885a37a7b7.jpg", "file_size": 18222, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#橙色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a195f30da04bf39dad24885a37a7b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a195f30da04bf39dad24885a37a7b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94a195f30da04bf39dad24885a37a7b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94a195f30da04bf39dad24885a37a7b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94a195f30da04bf39dad24885a37a7b7.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A2ji1lm769EjohJmc_1JgVY7KvQ=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.864067+00 2025-12-09 10:15:42.864074+00 17944 JTSS850FW#VS-D3 SPMX-20240815313160 \N \N \N 1 \N [{"file_id": "170f79bf-ee65-4cd8-bc36-6e4926ae43b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5146c69065454f77847ce6d2f4e13263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5146c69065454f77847ce6d2f4e13263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5146c69065454f77847ce6d2f4e13263.jpg", "file_size": 11857, "is_delete": false, "file_type": 1, "original_file_name": "JTSS850FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5146c69065454f77847ce6d2f4e13263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5146c69065454f77847ce6d2f4e13263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5146c69065454f77847ce6d2f4e13263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5146c69065454f77847ce6d2f4e13263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5146c69065454f77847ce6d2f4e13263.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WWUOfT9f3YPOXCj3QN7Pwm0t4Cg=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.866933+00 2025-12-09 10:15:42.86694+00 17945 JTSS851FW#VS-D3 SPMX-20240815313169 \N \N \N 1 \N [{"file_id": "87c3a15a-eb91-4fe5-aecb-bc616cbb7eba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24cb2a99616f401e963a1161939511ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24cb2a99616f401e963a1161939511ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24cb2a99616f401e963a1161939511ef.jpg", "file_size": 16474, "is_delete": false, "file_type": 1, "original_file_name": "JTSS851FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2a99616f401e963a1161939511ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2a99616f401e963a1161939511ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24cb2a99616f401e963a1161939511ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24cb2a99616f401e963a1161939511ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24cb2a99616f401e963a1161939511ef.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZ-em1FqRm2VKEo9gN0Nga30pas=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.869911+00 2025-12-09 10:15:42.869917+00 17946 LJH1909#绿色 SPMX-20240815313171 \N \N \N 1 \N [{"file_id": "9b737bc8-b3c4-451c-831a-a6cefb50ce89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0465986106364ebab1c5afbd425014b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0465986106364ebab1c5afbd425014b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0465986106364ebab1c5afbd425014b2.jpg", "file_size": 46433, "is_delete": false, "file_type": 1, "original_file_name": "LJH1909#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0465986106364ebab1c5afbd425014b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0465986106364ebab1c5afbd425014b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0465986106364ebab1c5afbd425014b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0465986106364ebab1c5afbd425014b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0465986106364ebab1c5afbd425014b2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oZsGMSGS8GvUroSrRjRgWPpp4E=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.872891+00 2025-12-09 10:15:42.872897+00 17947 JTSS852FW#VS-D3 SPMX-20240815313179 \N \N \N 1 \N [{"file_id": "2003a490-243b-4156-ac37-3f9ff7e813d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1f893a852664df8aa2ad5987dd4bb9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1f893a852664df8aa2ad5987dd4bb9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1f893a852664df8aa2ad5987dd4bb9c.jpg", "file_size": 8340, "is_delete": false, "file_type": 1, "original_file_name": "JTSS852FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1f893a852664df8aa2ad5987dd4bb9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1f893a852664df8aa2ad5987dd4bb9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1f893a852664df8aa2ad5987dd4bb9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1f893a852664df8aa2ad5987dd4bb9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1f893a852664df8aa2ad5987dd4bb9c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTA1tdHyCUZLKY57TliVJ21qGH4=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.875887+00 2025-12-09 10:15:42.875894+00 17948 2317-1#橙色款领子净色 SPMX-20240815313177 \N \N \N 1 \N [{"file_id": "f6d9b2b7-7cab-459b-b7d3-3b9d98eaf879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61d286df331f4da89656987d3684b615.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61d286df331f4da89656987d3684b615.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61d286df331f4da89656987d3684b615.jpg", "file_size": 7499, "is_delete": false, "file_type": 1, "original_file_name": "2317-1#橙色款领子净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d286df331f4da89656987d3684b615.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d286df331f4da89656987d3684b615.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61d286df331f4da89656987d3684b615.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61d286df331f4da89656987d3684b615.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61d286df331f4da89656987d3684b615.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXbT0RCOcS7PrKJIutApUw-NS0k=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.87885+00 2025-12-09 10:15:42.878856+00 17949 8588FWE#天蓝V5曲线 SPMX-20240815313170 \N \N \N 1 \N [{"file_id": "2b198327-7831-46ca-b77c-09bb2f666636", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb6efd3130448ddb3db02f0fcc7d80e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb6efd3130448ddb3db02f0fcc7d80e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb6efd3130448ddb3db02f0fcc7d80e.jpg", "file_size": 9848, "is_delete": false, "file_type": 1, "original_file_name": "8588FWE#天蓝V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb6efd3130448ddb3db02f0fcc7d80e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb6efd3130448ddb3db02f0fcc7d80e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb6efd3130448ddb3db02f0fcc7d80e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb6efd3130448ddb3db02f0fcc7d80e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb6efd3130448ddb3db02f0fcc7d80e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7RGWFMMw26EeJknlI_paPWYnxI=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.881768+00 2025-12-09 10:15:42.881775+00 17950 FX0003-30#RC23 SPMX-20240815313174 \N \N \N 1 \N [{"file_id": "a7012e90-863f-42d6-a9a9-2669cd4679ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4972f9d103394db6890630441a19b6ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4972f9d103394db6890630441a19b6ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4972f9d103394db6890630441a19b6ed.jpg", "file_size": 11972, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-30#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4972f9d103394db6890630441a19b6ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4972f9d103394db6890630441a19b6ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4972f9d103394db6890630441a19b6ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4972f9d103394db6890630441a19b6ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4972f9d103394db6890630441a19b6ed.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A9KlJG4hOY7HrsSn8bxQHpUVZl4=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.884678+00 2025-12-09 10:15:42.884684+00 17951 1231-30FWF#小童6码 SPMX-20240815313180 \N \N \N 1 \N [{"file_id": "627c75be-71b5-4594-a413-70d523044f13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4bf2cd34609480ea2f4ea3a061b5b4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4bf2cd34609480ea2f4ea3a061b5b4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4bf2cd34609480ea2f4ea3a061b5b4c.jpg", "file_size": 21192, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bf2cd34609480ea2f4ea3a061b5b4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bf2cd34609480ea2f4ea3a061b5b4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bf2cd34609480ea2f4ea3a061b5b4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4bf2cd34609480ea2f4ea3a061b5b4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4bf2cd34609480ea2f4ea3a061b5b4c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YRNr0rOXCfgq-273NU7g0N9lLA0=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.88765+00 2025-12-09 10:15:42.887658+00 17952 HX9010#白底蓝花 SPMX-20240815313178 \N \N \N 1 \N [{"file_id": "28c0831a-2909-4423-a392-98c343992d08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dc297e7171448e295dbdcd1c3d61d45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dc297e7171448e295dbdcd1c3d61d45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dc297e7171448e295dbdcd1c3d61d45.jpg", "file_size": 19848, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#白底蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc297e7171448e295dbdcd1c3d61d45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc297e7171448e295dbdcd1c3d61d45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc297e7171448e295dbdcd1c3d61d45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dc297e7171448e295dbdcd1c3d61d45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dc297e7171448e295dbdcd1c3d61d45.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WzhtVK1NWFtaRxcaa5jW2lFA_g8=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.890596+00 2025-12-09 10:15:42.890607+00 17953 CCHA1FWE#西瓜粉净色 SPMX-20240815313176 \N \N \N 1 \N [{"file_id": "dd6fdfc5-6d2c-48ce-8d95-cd518e869321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed8bdab0b0f44cf39bceff918def8141.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed8bdab0b0f44cf39bceff918def8141.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed8bdab0b0f44cf39bceff918def8141.jpg", "file_size": 5208, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#西瓜粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed8bdab0b0f44cf39bceff918def8141.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed8bdab0b0f44cf39bceff918def8141.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed8bdab0b0f44cf39bceff918def8141.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed8bdab0b0f44cf39bceff918def8141.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed8bdab0b0f44cf39bceff918def8141.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lhIHRf6UkiMZvFAQ-PhqHuekMo=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.893546+00 2025-12-09 10:15:42.893553+00 17954 0008-9FWE#白色VS-D3 SPMX-20240815313172 \N \N \N 1 \N [{"file_id": "0f42868d-c095-435a-8602-234ea2194dc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fffcf7655354caab2633cd4dc447060.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fffcf7655354caab2633cd4dc447060.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fffcf7655354caab2633cd4dc447060.jpg", "file_size": 20770, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWE#白色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fffcf7655354caab2633cd4dc447060.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fffcf7655354caab2633cd4dc447060.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fffcf7655354caab2633cd4dc447060.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fffcf7655354caab2633cd4dc447060.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fffcf7655354caab2633cd4dc447060.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuIux544r_4_sjhL4C5IA2fcIkE=", "createTime": "2024-08-15 15:03:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.896445+00 2025-12-09 10:15:42.896452+00 17955 LZ1379#童装上身4号色 SPMX-20240815313175 \N \N \N 1 \N [{"file_id": "3c319bd9-97db-455d-9d8f-aa5ea91c11fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6018a0d9f3463a8b861c2a9ba7348b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6018a0d9f3463a8b861c2a9ba7348b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6018a0d9f3463a8b861c2a9ba7348b.jpg", "file_size": 27284, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6018a0d9f3463a8b861c2a9ba7348b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6018a0d9f3463a8b861c2a9ba7348b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6018a0d9f3463a8b861c2a9ba7348b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6018a0d9f3463a8b861c2a9ba7348b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6018a0d9f3463a8b861c2a9ba7348b.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zFd6pfexHxArni90BYhDnq8DthQ=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.899311+00 2025-12-09 10:15:42.899318+00 17956 DL31768#下摆批布彩兰 SPMX-20240815313173 \N \N \N 1 \N [{"file_id": "62ea8734-6ace-4b9c-a535-2e8424f5aad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2550b65e003845a9800e2b3f0afc98aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2550b65e003845a9800e2b3f0afc98aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2550b65e003845a9800e2b3f0afc98aa.jpg", "file_size": 61929, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2550b65e003845a9800e2b3f0afc98aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2550b65e003845a9800e2b3f0afc98aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2550b65e003845a9800e2b3f0afc98aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2550b65e003845a9800e2b3f0afc98aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2550b65e003845a9800e2b3f0afc98aa.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:elyT5U71gsecHRdmQZz7-vFcha0=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.90231+00 2025-12-09 10:15:42.902317+00 17957 LZ1379#童装上身5号色 SPMX-20240815313187 \N \N \N 1 \N [{"file_id": "fe1c95be-decf-4498-be69-60a5cd50ca46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9bebc0234dc49888dea01d77449dc6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9bebc0234dc49888dea01d77449dc6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9bebc0234dc49888dea01d77449dc6e.jpg", "file_size": 24533, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bebc0234dc49888dea01d77449dc6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bebc0234dc49888dea01d77449dc6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9bebc0234dc49888dea01d77449dc6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9bebc0234dc49888dea01d77449dc6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9bebc0234dc49888dea01d77449dc6e.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:soS4iUgpj8f2cfUagnP7uGXvlO0=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.905198+00 2025-12-09 10:15:42.905203+00 17958 JTSS853FW#VS-D3 SPMX-20240815313188 \N \N \N 1 \N [{"file_id": "f6b7d3ba-4fe1-460b-a99e-6c1244f1ef79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc884909d88a40f6a358be8fe16537df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc884909d88a40f6a358be8fe16537df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc884909d88a40f6a358be8fe16537df.jpg", "file_size": 13730, "is_delete": false, "file_type": 1, "original_file_name": "JTSS853FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc884909d88a40f6a358be8fe16537df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc884909d88a40f6a358be8fe16537df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc884909d88a40f6a358be8fe16537df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc884909d88a40f6a358be8fe16537df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc884909d88a40f6a358be8fe16537df.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJ2NG3EW1wNbac0gBb2aLoWSsP4=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.907774+00 2025-12-09 10:15:42.907779+00 17959 HX9010#白底蓝花粉花 SPMX-20240815313189 \N \N \N 1 \N [{"file_id": "bab29f61-85f4-4ce0-9305-2d924662a228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de90833294da47f88f9a3a033b4461f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de90833294da47f88f9a3a033b4461f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de90833294da47f88f9a3a033b4461f1.jpg", "file_size": 20030, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#白底蓝花粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de90833294da47f88f9a3a033b4461f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de90833294da47f88f9a3a033b4461f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de90833294da47f88f9a3a033b4461f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de90833294da47f88f9a3a033b4461f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de90833294da47f88f9a3a033b4461f1.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5g7SlKGD3rptuQGsd-hoFC3pmmQ=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.910335+00 2025-12-09 10:15:42.91034+00 17960 8588FWE#橙色V5曲线 SPMX-20240815313182 \N \N \N 1 \N [{"file_id": "bd5c3715-4ef0-475c-bb3d-4475753257bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00c8c51659f34c40a327ad371f03202c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00c8c51659f34c40a327ad371f03202c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00c8c51659f34c40a327ad371f03202c.jpg", "file_size": 10677, "is_delete": false, "file_type": 1, "original_file_name": "8588FWE#橙色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8c51659f34c40a327ad371f03202c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8c51659f34c40a327ad371f03202c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8c51659f34c40a327ad371f03202c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00c8c51659f34c40a327ad371f03202c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00c8c51659f34c40a327ad371f03202c.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mxw0CddvUls4MKKVGxvCLjl_HJE=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.912889+00 2025-12-09 10:15:42.912894+00 17961 CCHA1FWE#黑 SPMX-20240815313186 \N \N \N 1 \N [{"file_id": "8ac295de-61ce-40fc-a209-3508b2d751f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "285b64047e704a43907a5c45a6b37306.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "285b64047e704a43907a5c45a6b37306.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "285b64047e704a43907a5c45a6b37306.jpg", "file_size": 15157, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285b64047e704a43907a5c45a6b37306.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285b64047e704a43907a5c45a6b37306.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/285b64047e704a43907a5c45a6b37306.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/285b64047e704a43907a5c45a6b37306.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/285b64047e704a43907a5c45a6b37306.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osM3vhAVvVeSoPAKGskNaO5arJw=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.915445+00 2025-12-09 10:15:42.91545+00 17962 23175-1FWF#订单款 SPMX-20240815313190 \N \N \N 1 \N [{"file_id": "ff20944f-a040-43ae-ab0d-eb602e53d093", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7058a9d2a8649f5a1ddb30f7e87c515.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7058a9d2a8649f5a1ddb30f7e87c515.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7058a9d2a8649f5a1ddb30f7e87c515.jpg", "file_size": 17975, "is_delete": false, "file_type": 1, "original_file_name": "23175-1FWF#订单款.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7058a9d2a8649f5a1ddb30f7e87c515.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7058a9d2a8649f5a1ddb30f7e87c515.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7058a9d2a8649f5a1ddb30f7e87c515.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7058a9d2a8649f5a1ddb30f7e87c515.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7058a9d2a8649f5a1ddb30f7e87c515.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tYC0g--pOoYivQqBrWE-AMuiiQ=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.918019+00 2025-12-09 10:15:42.918024+00 17963 LJH1909#黑色 SPMX-20240815313184 \N \N \N 1 \N [{"file_id": "3ae52e5f-8a57-4305-8112-a361a06364ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cd6ec9175674a4fab24bc9e7bf80380.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cd6ec9175674a4fab24bc9e7bf80380.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cd6ec9175674a4fab24bc9e7bf80380.jpg", "file_size": 39147, "is_delete": false, "file_type": 1, "original_file_name": "LJH1909#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd6ec9175674a4fab24bc9e7bf80380.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd6ec9175674a4fab24bc9e7bf80380.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cd6ec9175674a4fab24bc9e7bf80380.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cd6ec9175674a4fab24bc9e7bf80380.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cd6ec9175674a4fab24bc9e7bf80380.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y-P5gftarLscGO_0clyhi8yDhiQ=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.920574+00 2025-12-09 10:15:42.920579+00 17964 1231-30FWF#小童8码+4码 SPMX-20240815313191 \N \N \N 1 \N [{"file_id": "bddc36c7-9fe4-43d1-8d74-0c97eb641e47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cb9a2ca3fdf401aad777eda8426679f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cb9a2ca3fdf401aad777eda8426679f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cb9a2ca3fdf401aad777eda8426679f.jpg", "file_size": 21936, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb9a2ca3fdf401aad777eda8426679f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb9a2ca3fdf401aad777eda8426679f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cb9a2ca3fdf401aad777eda8426679f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cb9a2ca3fdf401aad777eda8426679f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cb9a2ca3fdf401aad777eda8426679f.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5l5TovUmrSRiSivgm37cUDYko0=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.923072+00 2025-12-09 10:15:42.923076+00 17965 DL31768#下摆批布深水红 SPMX-20240815313181 \N \N \N 1 \N [{"file_id": "253c710b-66d2-46ce-ba52-9f30a6bb6fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08e06dac904c41608457ace147d45a31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08e06dac904c41608457ace147d45a31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08e06dac904c41608457ace147d45a31.jpg", "file_size": 60549, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e06dac904c41608457ace147d45a31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e06dac904c41608457ace147d45a31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08e06dac904c41608457ace147d45a31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08e06dac904c41608457ace147d45a31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08e06dac904c41608457ace147d45a31.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3GbBk8AL6P8F8hVL4l-aogwjio=", "createTime": "2024-08-15 15:03:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.925577+00 2025-12-09 10:15:42.925584+00 17966 FX0003-31#RC23 SPMX-20240815313185 \N \N \N 1 \N [{"file_id": "2048d050-56ea-4e6e-86f3-e64970987ae4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c98d0b7e90d4400902df50eac8f42e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c98d0b7e90d4400902df50eac8f42e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c98d0b7e90d4400902df50eac8f42e9.jpg", "file_size": 15985, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-31#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c98d0b7e90d4400902df50eac8f42e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c98d0b7e90d4400902df50eac8f42e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c98d0b7e90d4400902df50eac8f42e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c98d0b7e90d4400902df50eac8f42e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c98d0b7e90d4400902df50eac8f42e9.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_BLNSyM6ioO46c7yFPr3sXEuxA=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.928204+00 2025-12-09 10:15:42.928208+00 17967 0008-9FWE#粉色 SPMX-20240815313183 \N \N \N 1 \N [{"file_id": "3ac787ca-9caa-40d1-ba04-87682e7d57a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73e5fb69c1324cbca1095cf6e78ccb29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73e5fb69c1324cbca1095cf6e78ccb29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73e5fb69c1324cbca1095cf6e78ccb29.jpg", "file_size": 8713, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWE#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e5fb69c1324cbca1095cf6e78ccb29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e5fb69c1324cbca1095cf6e78ccb29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e5fb69c1324cbca1095cf6e78ccb29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73e5fb69c1324cbca1095cf6e78ccb29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73e5fb69c1324cbca1095cf6e78ccb29.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HSEmT8_jt-8FG91KND2Gs1xVVw=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.930701+00 2025-12-09 10:15:42.930709+00 17968 1231-30FWF#小童袖领匹布 SPMX-20240815313202 \N \N \N 1 \N [{"file_id": "690410df-4e6e-4724-82d2-92d775d7c481", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa2cdd167cf848098b02ef37e09723ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa2cdd167cf848098b02ef37e09723ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa2cdd167cf848098b02ef37e09723ed.jpg", "file_size": 25318, "is_delete": false, "file_type": 1, "original_file_name": "1231-30FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2cdd167cf848098b02ef37e09723ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2cdd167cf848098b02ef37e09723ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2cdd167cf848098b02ef37e09723ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa2cdd167cf848098b02ef37e09723ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa2cdd167cf848098b02ef37e09723ed.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4WIemFpzM_bIPBJlHK4Lwe8oaw=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.933192+00 2025-12-09 10:15:42.933196+00 17969 0008-9FWE#黑白 SPMX-20240815313194 \N \N \N 1 \N [{"file_id": "9244b144-db65-4202-875c-84b4235a8a7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc0dbc252d24715af91cc7b84061bd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc0dbc252d24715af91cc7b84061bd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc0dbc252d24715af91cc7b84061bd2.jpg", "file_size": 13091, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWE#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc0dbc252d24715af91cc7b84061bd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc0dbc252d24715af91cc7b84061bd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc0dbc252d24715af91cc7b84061bd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc0dbc252d24715af91cc7b84061bd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc0dbc252d24715af91cc7b84061bd2.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-H9CuppMK-dOPZfSQS7Cyqu4hA8=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.935705+00 2025-12-09 10:15:42.93571+00 17970 HX9010#粉色 SPMX-20240815313199 \N \N \N 1 \N [{"file_id": "4de54460-90b6-4a9b-bf10-b7ac160b96ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60a0b9e253ea4091881fbea352a9c2df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60a0b9e253ea4091881fbea352a9c2df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60a0b9e253ea4091881fbea352a9c2df.jpg", "file_size": 16356, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0b9e253ea4091881fbea352a9c2df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0b9e253ea4091881fbea352a9c2df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60a0b9e253ea4091881fbea352a9c2df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60a0b9e253ea4091881fbea352a9c2df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60a0b9e253ea4091881fbea352a9c2df.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HhoEFQwEqw6Nn0Ai4Cn3pD3cFcQ=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.93827+00 2025-12-09 10:15:42.938275+00 17971 JTSS854FW#VS-D3 SPMX-20240815313200 \N \N \N 1 \N [{"file_id": "9943b2ba-a5c9-4d3f-a075-f76294cb15df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cadcbfeb5c84bbe96393e437fdb8642.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cadcbfeb5c84bbe96393e437fdb8642.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cadcbfeb5c84bbe96393e437fdb8642.jpg", "file_size": 10280, "is_delete": false, "file_type": 1, "original_file_name": "JTSS854FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cadcbfeb5c84bbe96393e437fdb8642.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cadcbfeb5c84bbe96393e437fdb8642.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cadcbfeb5c84bbe96393e437fdb8642.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cadcbfeb5c84bbe96393e437fdb8642.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cadcbfeb5c84bbe96393e437fdb8642.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-YniVHN2JttW_Ays7mncmnbLSVM=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:42.941371+00 2025-12-09 10:15:42.941377+00 17972 23175FWF#V5曲线 SPMX-20240815313201 \N \N \N 1 \N [{"file_id": "4f840f2d-7ec6-4752-9620-d066d9742157", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bcafe6f84f245dcbbecc2c70d4918e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bcafe6f84f245dcbbecc2c70d4918e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bcafe6f84f245dcbbecc2c70d4918e3.jpg", "file_size": 17897, "is_delete": false, "file_type": 1, "original_file_name": "23175FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcafe6f84f245dcbbecc2c70d4918e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcafe6f84f245dcbbecc2c70d4918e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bcafe6f84f245dcbbecc2c70d4918e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bcafe6f84f245dcbbecc2c70d4918e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bcafe6f84f245dcbbecc2c70d4918e3.jpg?e=1765361741&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QosJALfOSo3k9pKKJ7geEgIy6EE=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.628338+00 2025-12-09 10:15:43.628347+00 17973 LJH1910#1号色 SPMX-20240815313196 \N \N \N 1 \N [{"file_id": "bcc49fdc-57e2-4b4f-b373-7c52fcea09db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7388cf0d05fd4c8cbcb22b61bc7e7825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7388cf0d05fd4c8cbcb22b61bc7e7825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7388cf0d05fd4c8cbcb22b61bc7e7825.jpg", "file_size": 81707, "is_delete": false, "file_type": 1, "original_file_name": "LJH1910#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7388cf0d05fd4c8cbcb22b61bc7e7825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7388cf0d05fd4c8cbcb22b61bc7e7825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7388cf0d05fd4c8cbcb22b61bc7e7825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7388cf0d05fd4c8cbcb22b61bc7e7825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7388cf0d05fd4c8cbcb22b61bc7e7825.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdklY-9HmVPG2GI2Wig1e-FrS74=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.632559+00 2025-12-09 10:15:43.632565+00 17974 8588FWE#玫红V5曲线 SPMX-20240815313193 \N \N \N 1 \N [{"file_id": "c62275c0-36f9-49cf-956e-aa120e6e85b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0486f2b70c64c60809cad7c4b491826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0486f2b70c64c60809cad7c4b491826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0486f2b70c64c60809cad7c4b491826.jpg", "file_size": 10685, "is_delete": false, "file_type": 1, "original_file_name": "8588FWE#玫红V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0486f2b70c64c60809cad7c4b491826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0486f2b70c64c60809cad7c4b491826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0486f2b70c64c60809cad7c4b491826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0486f2b70c64c60809cad7c4b491826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0486f2b70c64c60809cad7c4b491826.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6HwEZbfKBNyNRy3D9v-80zW_R5Y=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.635541+00 2025-12-09 10:15:43.635548+00 17975 CCHA1FWE#黑净色 SPMX-20240815313198 \N \N \N 1 \N [{"file_id": "e8f229f6-9bcd-4899-bd8d-a8b36df43e12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2af4362517bd457c9a1aa23f81036feb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2af4362517bd457c9a1aa23f81036feb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2af4362517bd457c9a1aa23f81036feb.jpg", "file_size": 4811, "is_delete": false, "file_type": 1, "original_file_name": "CCHA1FWE#黑净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af4362517bd457c9a1aa23f81036feb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af4362517bd457c9a1aa23f81036feb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af4362517bd457c9a1aa23f81036feb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2af4362517bd457c9a1aa23f81036feb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2af4362517bd457c9a1aa23f81036feb.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0OdX_Tcz-mPYfO0hrp_mN9PnuPA=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.638576+00 2025-12-09 10:15:43.638582+00 17976 FX0003-32#RC23 SPMX-20240815313195 \N \N \N 1 \N [{"file_id": "283e32f6-fa8b-47dd-aa5a-01b3dccedad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "697d93e410f5429bae3d0c57b964b338.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "697d93e410f5429bae3d0c57b964b338.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "697d93e410f5429bae3d0c57b964b338.jpg", "file_size": 18472, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-32#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697d93e410f5429bae3d0c57b964b338.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697d93e410f5429bae3d0c57b964b338.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697d93e410f5429bae3d0c57b964b338.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/697d93e410f5429bae3d0c57b964b338.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/697d93e410f5429bae3d0c57b964b338.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GxxQKviFO8oslRI-vgwm7idsjOY=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.64157+00 2025-12-09 10:15:43.641575+00 17977 DL31768#下摆批布玫红 SPMX-20240815313192 \N \N \N 1 \N [{"file_id": "d093a6d4-50b6-4af1-a328-fff8c268c45c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b09398d466c413ab0f826b7faf6d79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b09398d466c413ab0f826b7faf6d79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b09398d466c413ab0f826b7faf6d79f.jpg", "file_size": 60895, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b09398d466c413ab0f826b7faf6d79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b09398d466c413ab0f826b7faf6d79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b09398d466c413ab0f826b7faf6d79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b09398d466c413ab0f826b7faf6d79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b09398d466c413ab0f826b7faf6d79f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MOYHtj8vrxF_v7iYYnoeg3f3Oc4=", "createTime": "2024-08-15 15:03:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.644468+00 2025-12-09 10:15:43.644474+00 17978 LZ1379#童装下身1号色 SPMX-20240815313197 \N \N \N 1 \N [{"file_id": "2f25e9fb-76a5-4ae2-ae14-7ce3b0bb2cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19a5577b66da433f998728959a107780.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19a5577b66da433f998728959a107780.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19a5577b66da433f998728959a107780.jpg", "file_size": 29704, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a5577b66da433f998728959a107780.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a5577b66da433f998728959a107780.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a5577b66da433f998728959a107780.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19a5577b66da433f998728959a107780.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19a5577b66da433f998728959a107780.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aj5Lx6T7fMKljiqwjmylcZ_2syY=", "createTime": "2024-08-15 15:03:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.647424+00 2025-12-09 10:15:43.64743+00 17979 23182FWF#M码 SPMX-20240815313212 \N \N \N 1 \N [{"file_id": "67b47461-e38b-41ef-985a-cbcdb6ff2dd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa3b458af96541459de2fb57c2d9870f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa3b458af96541459de2fb57c2d9870f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa3b458af96541459de2fb57c2d9870f.jpg", "file_size": 20987, "is_delete": false, "file_type": 1, "original_file_name": "23182FWF#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b458af96541459de2fb57c2d9870f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b458af96541459de2fb57c2d9870f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3b458af96541459de2fb57c2d9870f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa3b458af96541459de2fb57c2d9870f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa3b458af96541459de2fb57c2d9870f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6evaJ59WEJBmfNFbz8KSBBqi5SE=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.650307+00 2025-12-09 10:15:43.650313+00 17980 DL31768#下摆批布蓝绿 SPMX-20240815313203 \N \N \N 1 \N [{"file_id": "f3686186-abde-4687-9c4e-decbe044af8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0212d7c1e1b40fd8723bccccfe01c44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0212d7c1e1b40fd8723bccccfe01c44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0212d7c1e1b40fd8723bccccfe01c44.jpg", "file_size": 61636, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0212d7c1e1b40fd8723bccccfe01c44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0212d7c1e1b40fd8723bccccfe01c44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0212d7c1e1b40fd8723bccccfe01c44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0212d7c1e1b40fd8723bccccfe01c44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0212d7c1e1b40fd8723bccccfe01c44.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2g4DVPp-DYa54BI91Oxs02rq4yE=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.653216+00 2025-12-09 10:15:43.653222+00 17981 LJH1910#2号色 SPMX-20240815313208 \N \N \N 1 \N [{"file_id": "50099cd9-bef4-44d0-ae78-aa70f378bb60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb58a8c9e4294ea4a05076b7125e8b07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb58a8c9e4294ea4a05076b7125e8b07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb58a8c9e4294ea4a05076b7125e8b07.jpg", "file_size": 76608, "is_delete": false, "file_type": 1, "original_file_name": "LJH1910#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb58a8c9e4294ea4a05076b7125e8b07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb58a8c9e4294ea4a05076b7125e8b07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb58a8c9e4294ea4a05076b7125e8b07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb58a8c9e4294ea4a05076b7125e8b07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb58a8c9e4294ea4a05076b7125e8b07.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KmuwmBXFNzOs5nsjTQAVVbKccE=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.659904+00 2025-12-09 10:15:43.659912+00 17982 HX9010#蓝色 SPMX-20240815313210 \N \N \N 1 \N [{"file_id": "48c973bf-38b8-4799-9f46-d3a257fb7dc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a83d334bf2a4bd69ba1af7149a5cd72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a83d334bf2a4bd69ba1af7149a5cd72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a83d334bf2a4bd69ba1af7149a5cd72.jpg", "file_size": 19187, "is_delete": false, "file_type": 1, "original_file_name": "HX9010#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a83d334bf2a4bd69ba1af7149a5cd72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a83d334bf2a4bd69ba1af7149a5cd72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a83d334bf2a4bd69ba1af7149a5cd72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a83d334bf2a4bd69ba1af7149a5cd72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a83d334bf2a4bd69ba1af7149a5cd72.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V44hlVgrg8515PH7p3i_N4C-_hk=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.663223+00 2025-12-09 10:15:43.663229+00 17983 FX0003-32#净色RC23 SPMX-20240815313205 \N \N \N 1 \N [{"file_id": "a500ac1b-911a-4401-8953-18531113a49a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a2475d11534b94b54b33630ffb73ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a2475d11534b94b54b33630ffb73ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a2475d11534b94b54b33630ffb73ee.jpg", "file_size": 7162, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-32#净色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a2475d11534b94b54b33630ffb73ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a2475d11534b94b54b33630ffb73ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a2475d11534b94b54b33630ffb73ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a2475d11534b94b54b33630ffb73ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a2475d11534b94b54b33630ffb73ee.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I39EhnrqNy_YOHny2o506PZJY8M=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.666611+00 2025-12-09 10:15:43.666616+00 17984 CCHD212#杏色L SPMX-20240815313209 \N \N \N 1 \N [{"file_id": "3feb1a8e-6c34-4a46-8010-cd894fa596d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd623923445143a0a06e80b41ac16fce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd623923445143a0a06e80b41ac16fce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd623923445143a0a06e80b41ac16fce.jpg", "file_size": 18166, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#杏色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd623923445143a0a06e80b41ac16fce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd623923445143a0a06e80b41ac16fce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd623923445143a0a06e80b41ac16fce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd623923445143a0a06e80b41ac16fce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd623923445143a0a06e80b41ac16fce.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqmC2QRVOZecZLcmqr-Wen0VHzA=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.670272+00 2025-12-09 10:15:43.670278+00 17985 0008-9FWE#黑色VS-D3 SPMX-20240815313206 \N \N \N 1 \N [{"file_id": "bd29e213-2a37-4610-890c-aebf0c86dae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "071f90b8811140bda5da890483661039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "071f90b8811140bda5da890483661039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "071f90b8811140bda5da890483661039.jpg", "file_size": 26239, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWE#黑色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071f90b8811140bda5da890483661039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071f90b8811140bda5da890483661039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/071f90b8811140bda5da890483661039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/071f90b8811140bda5da890483661039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/071f90b8811140bda5da890483661039.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7djc2lZy9sMugEcGI6RctyZkF_g=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.673761+00 2025-12-09 10:15:43.673767+00 17986 858FWF#2XL SPMX-20240815313204 \N \N \N 1 \N [{"file_id": "ea5b19fb-74a7-4807-8cb0-0c55451479d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5357b2932e9e47dba92d4783cc30af63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5357b2932e9e47dba92d4783cc30af63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5357b2932e9e47dba92d4783cc30af63.jpg", "file_size": 16552, "is_delete": false, "file_type": 1, "original_file_name": "858FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5357b2932e9e47dba92d4783cc30af63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5357b2932e9e47dba92d4783cc30af63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5357b2932e9e47dba92d4783cc30af63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5357b2932e9e47dba92d4783cc30af63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5357b2932e9e47dba92d4783cc30af63.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KuX9zGCwMBZnu1kQ_xYLtAXac0=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.677319+00 2025-12-09 10:15:43.677325+00 17987 JTSS855FW#VS-D3 SPMX-20240815313211 \N \N \N 1 \N [{"file_id": "707fbd00-6d48-4f72-9fe8-3051af39a56f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3da7cd5014df4cfab85b0a156f761606.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3da7cd5014df4cfab85b0a156f761606.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3da7cd5014df4cfab85b0a156f761606.jpg", "file_size": 11959, "is_delete": false, "file_type": 1, "original_file_name": "JTSS855FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3da7cd5014df4cfab85b0a156f761606.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3da7cd5014df4cfab85b0a156f761606.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3da7cd5014df4cfab85b0a156f761606.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3da7cd5014df4cfab85b0a156f761606.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3da7cd5014df4cfab85b0a156f761606.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xky4zMJ3HQw1qD-DteRu41jibPs=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.680491+00 2025-12-09 10:15:43.680496+00 17988 HXF-0008-A1#绿色 SPMX-20240815313219 \N \N \N 1 \N [{"file_id": "6670ad00-1529-4366-98e5-d00f73de8b63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05e82d5a87404ced9633376125230fd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05e82d5a87404ced9633376125230fd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05e82d5a87404ced9633376125230fd1.jpg", "file_size": 41462, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-A1#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05e82d5a87404ced9633376125230fd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05e82d5a87404ced9633376125230fd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05e82d5a87404ced9633376125230fd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05e82d5a87404ced9633376125230fd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05e82d5a87404ced9633376125230fd1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OHMdXwTv2vs-fGQLXOlm9UD6_cw=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.683278+00 2025-12-09 10:15:43.683283+00 17989 1231-31FWF#中童12码+10码 SPMX-20240815313213 \N \N \N 1 \N [{"file_id": "5089f152-2b6a-492f-ad9f-226dc48cffe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcf238664b104496a3585349c8a2d5ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcf238664b104496a3585349c8a2d5ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcf238664b104496a3585349c8a2d5ed.jpg", "file_size": 21309, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf238664b104496a3585349c8a2d5ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf238664b104496a3585349c8a2d5ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf238664b104496a3585349c8a2d5ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcf238664b104496a3585349c8a2d5ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcf238664b104496a3585349c8a2d5ed.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SoVUivEiL05IYM2miHF58Z-0gCA=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.685868+00 2025-12-09 10:15:43.685873+00 17990 FX0003-32#烧花RC23 SPMX-20240815313216 \N \N \N 1 \N [{"file_id": "bd5698da-1fca-4105-9bd3-2fe0bbed062f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56655d674e094d369d5e02a6a47c132c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56655d674e094d369d5e02a6a47c132c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56655d674e094d369d5e02a6a47c132c.jpg", "file_size": 13393, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-32#烧花RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56655d674e094d369d5e02a6a47c132c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56655d674e094d369d5e02a6a47c132c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56655d674e094d369d5e02a6a47c132c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56655d674e094d369d5e02a6a47c132c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56655d674e094d369d5e02a6a47c132c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4DVjlAbtWvWQJebhW-YN-GsMCM=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.688406+00 2025-12-09 10:15:43.68841+00 17991 LZ1379#童装下身3号色 SPMX-20240815313220 \N \N \N 1 \N [{"file_id": "a90d0405-e8cf-484b-a39e-ee91acbd82d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcbfde891ba548af80d35f5aaebe09fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcbfde891ba548af80d35f5aaebe09fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcbfde891ba548af80d35f5aaebe09fc.jpg", "file_size": 28616, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcbfde891ba548af80d35f5aaebe09fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcbfde891ba548af80d35f5aaebe09fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcbfde891ba548af80d35f5aaebe09fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcbfde891ba548af80d35f5aaebe09fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcbfde891ba548af80d35f5aaebe09fc.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XquRagDqVg3hB7RzsHkmk2FnElA=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.690948+00 2025-12-09 10:15:43.690953+00 17992 0008-9FWF#粉色 SPMX-20240815313217 \N \N \N 1 \N [{"file_id": "2cf9510a-ab80-41f2-a709-84860242f4ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7764071088ef46069b4c225de976fa1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7764071088ef46069b4c225de976fa1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7764071088ef46069b4c225de976fa1d.jpg", "file_size": 8462, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7764071088ef46069b4c225de976fa1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7764071088ef46069b4c225de976fa1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7764071088ef46069b4c225de976fa1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7764071088ef46069b4c225de976fa1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7764071088ef46069b4c225de976fa1d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbgsTkD8N_ngQ74cYf4Q_LI0bmc=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.693466+00 2025-12-09 10:15:43.69347+00 17993 CCHD212#杏色M SPMX-20240815313218 \N \N \N 1 \N [{"file_id": "5bb27150-f1b9-4466-84f7-974e86c660e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06456e451c284678aa4fb6fd1454e11a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06456e451c284678aa4fb6fd1454e11a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06456e451c284678aa4fb6fd1454e11a.jpg", "file_size": 18488, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#杏色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06456e451c284678aa4fb6fd1454e11a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06456e451c284678aa4fb6fd1454e11a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06456e451c284678aa4fb6fd1454e11a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06456e451c284678aa4fb6fd1454e11a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06456e451c284678aa4fb6fd1454e11a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cIy6Mn-Fn7pJoBA20BtV_GuC0a4=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.695976+00 2025-12-09 10:15:43.69598+00 17994 DL31768#下摆批布黄色 SPMX-20240815313215 \N \N \N 1 \N [{"file_id": "06e6aaa2-b9c9-48dd-9c6c-0efad4e7a8a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bab2cd4b44749cca10c3065d8fa6b64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bab2cd4b44749cca10c3065d8fa6b64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bab2cd4b44749cca10c3065d8fa6b64.jpg", "file_size": 59128, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#下摆批布黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bab2cd4b44749cca10c3065d8fa6b64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bab2cd4b44749cca10c3065d8fa6b64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bab2cd4b44749cca10c3065d8fa6b64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bab2cd4b44749cca10c3065d8fa6b64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bab2cd4b44749cca10c3065d8fa6b64.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:My_RYCOzq_ZLx17dMT0MWWbMsOA=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.698524+00 2025-12-09 10:15:43.698528+00 17995 858FWF#3XL SPMX-20240815313214 \N \N \N 1 \N [{"file_id": "fea3c960-aea2-498a-8068-358171493128", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bbbd975c3df44b08815fb502b93000a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bbbd975c3df44b08815fb502b93000a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bbbd975c3df44b08815fb502b93000a.jpg", "file_size": 16353, "is_delete": false, "file_type": 1, "original_file_name": "858FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbd975c3df44b08815fb502b93000a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbd975c3df44b08815fb502b93000a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbd975c3df44b08815fb502b93000a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bbbd975c3df44b08815fb502b93000a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bbbd975c3df44b08815fb502b93000a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lJ_BPC0ywPSkP3BTEPrwxYjZFu0=", "createTime": "2024-08-15 15:03:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.701086+00 2025-12-09 10:15:43.701091+00 17996 JTSS856FW#VS-D3 SPMX-20240815313221 \N \N \N 1 \N [{"file_id": "0564bc7f-bedb-4542-b31f-6d109d396e6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dad5c1964ffa46aab4b41449b99165ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dad5c1964ffa46aab4b41449b99165ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dad5c1964ffa46aab4b41449b99165ba.jpg", "file_size": 12111, "is_delete": false, "file_type": 1, "original_file_name": "JTSS856FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad5c1964ffa46aab4b41449b99165ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad5c1964ffa46aab4b41449b99165ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dad5c1964ffa46aab4b41449b99165ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dad5c1964ffa46aab4b41449b99165ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dad5c1964ffa46aab4b41449b99165ba.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9sxjXRFM9laU_6rCnYHNmeK_J8=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.703811+00 2025-12-09 10:15:43.703816+00 17997 LJH1910#3号色 SPMX-20240815313223 \N \N \N 1 \N [{"file_id": "5a331da7-3f9d-4cc5-bf95-ff48e295a1ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f99112272944360bef8e379bc8b6ebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f99112272944360bef8e379bc8b6ebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f99112272944360bef8e379bc8b6ebd.jpg", "file_size": 81760, "is_delete": false, "file_type": 1, "original_file_name": "LJH1910#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f99112272944360bef8e379bc8b6ebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f99112272944360bef8e379bc8b6ebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f99112272944360bef8e379bc8b6ebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f99112272944360bef8e379bc8b6ebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f99112272944360bef8e379bc8b6ebd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:moTuKczZbNFHnFzZ9fuP7aZaXqc=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.70644+00 2025-12-09 10:15:43.706444+00 17998 DL31768#前幅大红 SPMX-20240815313226 \N \N \N 1 \N [{"file_id": "69c762c8-512d-4402-a247-238555a1d017", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "476e2b936ba64d32b4c4dec99ef9b83c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "476e2b936ba64d32b4c4dec99ef9b83c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "476e2b936ba64d32b4c4dec99ef9b83c.jpg", "file_size": 45572, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476e2b936ba64d32b4c4dec99ef9b83c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476e2b936ba64d32b4c4dec99ef9b83c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476e2b936ba64d32b4c4dec99ef9b83c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/476e2b936ba64d32b4c4dec99ef9b83c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/476e2b936ba64d32b4c4dec99ef9b83c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqAOTjWIFCjjz4YjUk0kEFJ3TPs=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.708996+00 2025-12-09 10:15:43.709001+00 17999 FX0003-33#RC23 SPMX-20240815313228 \N \N \N 1 \N [{"file_id": "f87c7a19-8441-4cce-b32d-f723f86f640a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f691c414b1a84348a3608e5c456d6f98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f691c414b1a84348a3608e5c456d6f98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f691c414b1a84348a3608e5c456d6f98.jpg", "file_size": 9099, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-33#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f691c414b1a84348a3608e5c456d6f98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f691c414b1a84348a3608e5c456d6f98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f691c414b1a84348a3608e5c456d6f98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f691c414b1a84348a3608e5c456d6f98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f691c414b1a84348a3608e5c456d6f98.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m4IFYlfdNLT7PfyTKq0FhtzgnUQ=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.711503+00 2025-12-09 10:15:43.711507+00 18000 0008-9FWF#黑白 SPMX-20240815313227 \N \N \N 1 \N [{"file_id": "fc7eb44d-15ae-49ab-9cd9-64b50f537085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fe5400b8e2744b5a2cdabbf33c9a421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fe5400b8e2744b5a2cdabbf33c9a421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fe5400b8e2744b5a2cdabbf33c9a421.jpg", "file_size": 12972, "is_delete": false, "file_type": 1, "original_file_name": "0008-9FWF#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5400b8e2744b5a2cdabbf33c9a421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5400b8e2744b5a2cdabbf33c9a421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fe5400b8e2744b5a2cdabbf33c9a421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fe5400b8e2744b5a2cdabbf33c9a421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fe5400b8e2744b5a2cdabbf33c9a421.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XrIwlNhCgfmXx22DcJiU5pstYD8=", "createTime": "2024-08-15 15:03:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.71404+00 2025-12-09 10:15:43.714045+00 18001 858FWF#4XL SPMX-20240815313225 \N \N \N 1 \N [{"file_id": "fe1e5ad2-5ed6-4701-ba90-9427c852dc00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "247d661dd3a3490ebdaa6bbde6aeee6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "247d661dd3a3490ebdaa6bbde6aeee6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "247d661dd3a3490ebdaa6bbde6aeee6a.jpg", "file_size": 15965, "is_delete": false, "file_type": 1, "original_file_name": "858FWF#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247d661dd3a3490ebdaa6bbde6aeee6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247d661dd3a3490ebdaa6bbde6aeee6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247d661dd3a3490ebdaa6bbde6aeee6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/247d661dd3a3490ebdaa6bbde6aeee6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/247d661dd3a3490ebdaa6bbde6aeee6a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxFpZn7qVY4hKeH9taPHLdQpByA=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.7287+00 2025-12-09 10:15:43.728711+00 18006 HXF-0008-A1#黄色 SPMX-20240815313233 \N \N \N 1 \N [{"file_id": "16fec324-bcc1-4a7d-8aec-45c29185318c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c3ddaa5f804db0a274096654a0ffd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c3ddaa5f804db0a274096654a0ffd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c3ddaa5f804db0a274096654a0ffd4.jpg", "file_size": 39468, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-A1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c3ddaa5f804db0a274096654a0ffd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c3ddaa5f804db0a274096654a0ffd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c3ddaa5f804db0a274096654a0ffd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c3ddaa5f804db0a274096654a0ffd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c3ddaa5f804db0a274096654a0ffd4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6bmLP53NYyKf9HD3P-bKJOFnlE=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.716772+00 2025-12-09 10:15:43.716777+00 18002 232#-定位裁-卡其 SPMX-20240815313224 \N \N \N 1 \N [{"file_id": "e9acb2c9-6a0b-4e46-b1ce-13fe697540ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0433ea47d1f54140b4be34011fe6a952.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0433ea47d1f54140b4be34011fe6a952.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0433ea47d1f54140b4be34011fe6a952.jpg", "file_size": 79813, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0433ea47d1f54140b4be34011fe6a952.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0433ea47d1f54140b4be34011fe6a952.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0433ea47d1f54140b4be34011fe6a952.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0433ea47d1f54140b4be34011fe6a952.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0433ea47d1f54140b4be34011fe6a952.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h35gBOZOB__F8pr0aHGhZ3Ll9SE=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.719836+00 2025-12-09 10:15:43.719842+00 18003 1231-31FWF#中童14码 SPMX-20240815313222 \N \N \N 1 \N [{"file_id": "18f779d2-365f-422d-a6e7-4d1ddf180b03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "856935d1bb864f99bcc90753463d6724.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "856935d1bb864f99bcc90753463d6724.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "856935d1bb864f99bcc90753463d6724.jpg", "file_size": 19372, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856935d1bb864f99bcc90753463d6724.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856935d1bb864f99bcc90753463d6724.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856935d1bb864f99bcc90753463d6724.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/856935d1bb864f99bcc90753463d6724.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/856935d1bb864f99bcc90753463d6724.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2xZ3Nh9v3GoN3ApmfD7zJw-lOE=", "createTime": "2024-08-15 15:03:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.722765+00 2025-12-09 10:15:43.722771+00 18004 858FWF#5XL SPMX-20240815313234 \N \N \N 1 \N [{"file_id": "f5632332-7971-4608-8aef-0b8f15b4f8db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7525d18d58004e61a01c0e802495d799.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7525d18d58004e61a01c0e802495d799.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7525d18d58004e61a01c0e802495d799.jpg", "file_size": 16203, "is_delete": false, "file_type": 1, "original_file_name": "858FWF#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7525d18d58004e61a01c0e802495d799.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7525d18d58004e61a01c0e802495d799.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7525d18d58004e61a01c0e802495d799.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7525d18d58004e61a01c0e802495d799.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7525d18d58004e61a01c0e802495d799.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oTbwCjfdCgfur9k3eoXiwYtEjfw=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.725798+00 2025-12-09 10:15:43.725805+00 18005 FX0003-34#A深色 SPMX-20240815313231 \N \N \N 1 \N [{"file_id": "4be8161a-a9e4-4f8a-a099-52770201d91a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b17ef887c5cb4688ad86403a2f595767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b17ef887c5cb4688ad86403a2f595767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b17ef887c5cb4688ad86403a2f595767.jpg", "file_size": 7633, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-34#A深色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17ef887c5cb4688ad86403a2f595767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17ef887c5cb4688ad86403a2f595767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17ef887c5cb4688ad86403a2f595767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b17ef887c5cb4688ad86403a2f595767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b17ef887c5cb4688ad86403a2f595767.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x6TWvW7_vpYmc_z0F6IxJn5nL9c=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.731648+00 2025-12-09 10:15:43.731654+00 18007 CCHD212#杏色S SPMX-20240815313229 \N \N \N 1 \N [{"file_id": "7da7a8f2-2950-4d17-bd25-94c00bb4fa5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e82a3f9385504cf7a801cff29896d26b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e82a3f9385504cf7a801cff29896d26b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e82a3f9385504cf7a801cff29896d26b.jpg", "file_size": 18665, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#杏色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82a3f9385504cf7a801cff29896d26b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82a3f9385504cf7a801cff29896d26b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e82a3f9385504cf7a801cff29896d26b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e82a3f9385504cf7a801cff29896d26b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e82a3f9385504cf7a801cff29896d26b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5IicCR5SPtyLgGMeZSD3ktcrJ0=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.73461+00 2025-12-09 10:15:43.734616+00 18008 JTSS857FW#VS-D3 SPMX-20240815313230 \N \N \N 1 \N [{"file_id": "afff72bf-43dc-4505-b8d2-63b6e3acc10f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "264bd51e4b79414fad3c0924a4d0301d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "264bd51e4b79414fad3c0924a4d0301d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "264bd51e4b79414fad3c0924a4d0301d.jpg", "file_size": 8695, "is_delete": false, "file_type": 1, "original_file_name": "JTSS857FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bd51e4b79414fad3c0924a4d0301d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bd51e4b79414fad3c0924a4d0301d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/264bd51e4b79414fad3c0924a4d0301d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/264bd51e4b79414fad3c0924a4d0301d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/264bd51e4b79414fad3c0924a4d0301d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f-6Xv1pW5DpvimLcr4B9iuCx4Vo=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.737524+00 2025-12-09 10:15:43.737531+00 18009 LJH1910#4号色 SPMX-20240815313236 \N \N \N 1 \N [{"file_id": "15ff2eae-371e-4386-b90a-de5501b91a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "666d2dfd18b24ed3b963817f5b09175e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "666d2dfd18b24ed3b963817f5b09175e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "666d2dfd18b24ed3b963817f5b09175e.jpg", "file_size": 76702, "is_delete": false, "file_type": 1, "original_file_name": "LJH1910#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666d2dfd18b24ed3b963817f5b09175e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666d2dfd18b24ed3b963817f5b09175e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/666d2dfd18b24ed3b963817f5b09175e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/666d2dfd18b24ed3b963817f5b09175e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/666d2dfd18b24ed3b963817f5b09175e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pie7yZ26A2FbAr_RERi_jmd-TTs=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.740419+00 2025-12-09 10:15:43.740426+00 18010 LZ1379#童装下身4号色 SPMX-20240815313232 \N \N \N 1 \N [{"file_id": "50d2eef8-e219-4492-98ea-21d3b1188c12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53a13e196fb2415298513dadf36f76db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53a13e196fb2415298513dadf36f76db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53a13e196fb2415298513dadf36f76db.jpg", "file_size": 29990, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a13e196fb2415298513dadf36f76db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a13e196fb2415298513dadf36f76db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a13e196fb2415298513dadf36f76db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53a13e196fb2415298513dadf36f76db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53a13e196fb2415298513dadf36f76db.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YSCUGiWzaRDzhHzVySBMSEeoIzQ=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.743382+00 2025-12-09 10:15:43.743388+00 18011 DL31768#前幅彩兰 SPMX-20240815313235 \N \N \N 1 \N [{"file_id": "cdfe115a-ff26-4a9e-abf9-f96f1fc016a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63683e055ecb43469c58030d40e1bb02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63683e055ecb43469c58030d40e1bb02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63683e055ecb43469c58030d40e1bb02.jpg", "file_size": 46544, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63683e055ecb43469c58030d40e1bb02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63683e055ecb43469c58030d40e1bb02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63683e055ecb43469c58030d40e1bb02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63683e055ecb43469c58030d40e1bb02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63683e055ecb43469c58030d40e1bb02.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bS81QnSnK1cnvHKdK8iRE8mLXwc=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.746388+00 2025-12-09 10:15:43.746395+00 18012 1231-31FWF#小童6码 SPMX-20240815313245 \N \N \N 1 \N [{"file_id": "8e1ec360-0a89-4028-8a62-7bd01401c878", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5153cdd8dcc94e7fa251ac086a3c2d56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5153cdd8dcc94e7fa251ac086a3c2d56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5153cdd8dcc94e7fa251ac086a3c2d56.jpg", "file_size": 24552, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5153cdd8dcc94e7fa251ac086a3c2d56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5153cdd8dcc94e7fa251ac086a3c2d56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5153cdd8dcc94e7fa251ac086a3c2d56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5153cdd8dcc94e7fa251ac086a3c2d56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5153cdd8dcc94e7fa251ac086a3c2d56.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3MjLi06IV000MFhWIifyHJxwTn8=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.749381+00 2025-12-09 10:15:43.749388+00 18013 LZ1379#童装下身5号色 SPMX-20240815313242 \N \N \N 1 \N [{"file_id": "d4333eef-79c8-4f1f-87be-0d234940ba9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5428af88e384e639fd14eea4ddb7a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5428af88e384e639fd14eea4ddb7a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5428af88e384e639fd14eea4ddb7a1d.jpg", "file_size": 28647, "is_delete": false, "file_type": 1, "original_file_name": "LZ1379#童装下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5428af88e384e639fd14eea4ddb7a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5428af88e384e639fd14eea4ddb7a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5428af88e384e639fd14eea4ddb7a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5428af88e384e639fd14eea4ddb7a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5428af88e384e639fd14eea4ddb7a1d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxdCkWRWi4k_9T12oFr3tEA1zgM=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.752313+00 2025-12-09 10:15:43.752319+00 18014 FX0003-34#B浅色 SPMX-20240815313243 \N \N \N 1 \N [{"file_id": "a1c42f83-0b47-4037-80d5-4de032d6554e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0617161de1e4410eabd1c1b5d4e099b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0617161de1e4410eabd1c1b5d4e099b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0617161de1e4410eabd1c1b5d4e099b3.jpg", "file_size": 7024, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-34#B浅色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0617161de1e4410eabd1c1b5d4e099b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0617161de1e4410eabd1c1b5d4e099b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0617161de1e4410eabd1c1b5d4e099b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0617161de1e4410eabd1c1b5d4e099b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0617161de1e4410eabd1c1b5d4e099b3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdqqvb9g_1BdClhaLgNOu4HPjl8=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.755271+00 2025-12-09 10:15:43.755278+00 18015 232#-定位裁-卡碁 SPMX-20240815313237 \N \N \N 1 \N [{"file_id": "1d3f0751-a2c7-4579-bcd8-f8f4e89ddeca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c575c5300f9d491391a9f187ddebaf0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c575c5300f9d491391a9f187ddebaf0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c575c5300f9d491391a9f187ddebaf0a.jpg", "file_size": 79813, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-卡碁.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575c5300f9d491391a9f187ddebaf0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575c5300f9d491391a9f187ddebaf0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c575c5300f9d491391a9f187ddebaf0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c575c5300f9d491391a9f187ddebaf0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c575c5300f9d491391a9f187ddebaf0a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o4Q-gQLTBEvuezEtjMOZj-S7i0I=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.758233+00 2025-12-09 10:15:43.75824+00 18016 858FWF#XL SPMX-20240815313246 \N \N \N 1 \N [{"file_id": "d30a9959-e43c-43f3-9e6a-3902a1223e0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "428ef5d2e3d547709d4f42944ba98a93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "428ef5d2e3d547709d4f42944ba98a93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "428ef5d2e3d547709d4f42944ba98a93.jpg", "file_size": 16673, "is_delete": false, "file_type": 1, "original_file_name": "858FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428ef5d2e3d547709d4f42944ba98a93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428ef5d2e3d547709d4f42944ba98a93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/428ef5d2e3d547709d4f42944ba98a93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/428ef5d2e3d547709d4f42944ba98a93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/428ef5d2e3d547709d4f42944ba98a93.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhQoL-MnonZgeBzIbI2ShTF17hA=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.76115+00 2025-12-09 10:15:43.761156+00 18017 DL31768#前幅深水红 SPMX-20240815313247 \N \N \N 1 \N [{"file_id": "f43a1e64-6266-48b9-a68e-ffec92629ab9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b52d020e1254a1b8c9b548c2f3d5e5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b52d020e1254a1b8c9b548c2f3d5e5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b52d020e1254a1b8c9b548c2f3d5e5b.jpg", "file_size": 47281, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b52d020e1254a1b8c9b548c2f3d5e5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b52d020e1254a1b8c9b548c2f3d5e5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b52d020e1254a1b8c9b548c2f3d5e5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b52d020e1254a1b8c9b548c2f3d5e5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b52d020e1254a1b8c9b548c2f3d5e5b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ekw4NHj5JIvfa_Oyw_QPojfbf0=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.764145+00 2025-12-09 10:15:43.764151+00 18018 1231-31FWF#中童袖领匹布 SPMX-20240815313239 \N \N \N 1 \N [{"file_id": "a1d65317-32ef-4fd0-a44d-238cbba34afa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6931e0968c8340089330db2557c5fcb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6931e0968c8340089330db2557c5fcb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6931e0968c8340089330db2557c5fcb5.jpg", "file_size": 22678, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6931e0968c8340089330db2557c5fcb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6931e0968c8340089330db2557c5fcb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6931e0968c8340089330db2557c5fcb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6931e0968c8340089330db2557c5fcb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6931e0968c8340089330db2557c5fcb5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLp750baNzycHIbun5bmON3OSEo=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.767148+00 2025-12-09 10:15:43.767154+00 18019 JTSS858FW#VS-D3 SPMX-20240815313240 \N \N \N 1 \N [{"file_id": "7aeef4c9-cf97-4550-bf5d-a2566dcfa3e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35a36eedeb6a4182bcbbcd2142e5697b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35a36eedeb6a4182bcbbcd2142e5697b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35a36eedeb6a4182bcbbcd2142e5697b.jpg", "file_size": 8722, "is_delete": false, "file_type": 1, "original_file_name": "JTSS858FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a36eedeb6a4182bcbbcd2142e5697b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a36eedeb6a4182bcbbcd2142e5697b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35a36eedeb6a4182bcbbcd2142e5697b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35a36eedeb6a4182bcbbcd2142e5697b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35a36eedeb6a4182bcbbcd2142e5697b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IBYggUKtlwiB0qtJOcetacHCX8Y=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.770101+00 2025-12-09 10:15:43.770108+00 18020 JTSS859FW#VS-D3 SPMX-20240815313252 \N \N \N 1 \N [{"file_id": "8cfd44a2-8f15-4843-ad00-1ab6fbc57fe6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acce55f2bb6343be8c1ef5cf20c46fc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acce55f2bb6343be8c1ef5cf20c46fc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acce55f2bb6343be8c1ef5cf20c46fc2.jpg", "file_size": 11741, "is_delete": false, "file_type": 1, "original_file_name": "JTSS859FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acce55f2bb6343be8c1ef5cf20c46fc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acce55f2bb6343be8c1ef5cf20c46fc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acce55f2bb6343be8c1ef5cf20c46fc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acce55f2bb6343be8c1ef5cf20c46fc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acce55f2bb6343be8c1ef5cf20c46fc2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjeoR6lkdr9TvIOacl6I9blG4jc=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.772995+00 2025-12-09 10:15:43.773001+00 18021 0009#S码 SPMX-20240815313238 \N \N \N 1 \N [{"file_id": "9a84db2c-9c00-4afc-bb94-46cd6a3776ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "052e1ba828bc445cab60e86ff4565dad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "052e1ba828bc445cab60e86ff4565dad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "052e1ba828bc445cab60e86ff4565dad.jpg", "file_size": 18661, "is_delete": false, "file_type": 1, "original_file_name": "0009#S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052e1ba828bc445cab60e86ff4565dad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052e1ba828bc445cab60e86ff4565dad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/052e1ba828bc445cab60e86ff4565dad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/052e1ba828bc445cab60e86ff4565dad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/052e1ba828bc445cab60e86ff4565dad.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j26j2ibiyeITsW_Sg6N5OxrBIhs=", "createTime": "2024-08-15 15:03:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.775932+00 2025-12-09 10:15:43.775938+00 18022 CCHD212#杏色XL SPMX-20240815313241 \N \N \N 1 \N [{"file_id": "7ad5088e-65cc-4c30-af5f-d7bd34ad870e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ad86d037844b5a953a05b7b5d09eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ad86d037844b5a953a05b7b5d09eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ad86d037844b5a953a05b7b5d09eca.jpg", "file_size": 16206, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#杏色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad86d037844b5a953a05b7b5d09eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad86d037844b5a953a05b7b5d09eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad86d037844b5a953a05b7b5d09eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ad86d037844b5a953a05b7b5d09eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ad86d037844b5a953a05b7b5d09eca.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OmZOVHxZiyZBy69bv5nvdCvyzdU=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.778843+00 2025-12-09 10:15:43.778849+00 18023 LJH1910#5号色 SPMX-20240815313248 \N \N \N 1 \N [{"file_id": "6a219ff9-79c5-4d85-86c5-432d852f254c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa8da3ff701c46b5ab6aaa8e9503718d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa8da3ff701c46b5ab6aaa8e9503718d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa8da3ff701c46b5ab6aaa8e9503718d.jpg", "file_size": 82200, "is_delete": false, "file_type": 1, "original_file_name": "LJH1910#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8da3ff701c46b5ab6aaa8e9503718d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8da3ff701c46b5ab6aaa8e9503718d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa8da3ff701c46b5ab6aaa8e9503718d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa8da3ff701c46b5ab6aaa8e9503718d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa8da3ff701c46b5ab6aaa8e9503718d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-5c0_m3UKn4dCwR07o4v7cHT_g=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.78173+00 2025-12-09 10:15:43.781736+00 18024 0009#批布 SPMX-20240815313249 \N \N \N 1 \N [{"file_id": "bfa9790e-4f01-449b-8c31-f5a512a42dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbd425ee51b34a7d8e7fab5fa57f232b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbd425ee51b34a7d8e7fab5fa57f232b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbd425ee51b34a7d8e7fab5fa57f232b.jpg", "file_size": 19277, "is_delete": false, "file_type": 1, "original_file_name": "0009#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd425ee51b34a7d8e7fab5fa57f232b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd425ee51b34a7d8e7fab5fa57f232b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbd425ee51b34a7d8e7fab5fa57f232b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbd425ee51b34a7d8e7fab5fa57f232b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbd425ee51b34a7d8e7fab5fa57f232b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yC3c5i8JXVoHbC7vhynQJNjS5vw=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.78465+00 2025-12-09 10:15:43.784656+00 18025 HXF-0008-A1#黑色 SPMX-20240815313244 \N \N \N 1 \N [{"file_id": "c25a656a-d958-42c9-b15b-6951406f035f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17f0c9028a6d4758b3639aa48ca9311f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17f0c9028a6d4758b3639aa48ca9311f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17f0c9028a6d4758b3639aa48ca9311f.jpg", "file_size": 39375, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-A1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f0c9028a6d4758b3639aa48ca9311f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f0c9028a6d4758b3639aa48ca9311f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f0c9028a6d4758b3639aa48ca9311f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17f0c9028a6d4758b3639aa48ca9311f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17f0c9028a6d4758b3639aa48ca9311f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yg2-w50lspLiDc-1vrf6iXjZC74=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.787573+00 2025-12-09 10:15:43.787578+00 18026 232#-定位裁-橙色 SPMX-20240815313250 \N \N \N 1 \N [{"file_id": "e8b3dee0-a561-42ce-b240-7958ecc08529", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb0105256f82457c811c1d288656f26f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb0105256f82457c811c1d288656f26f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb0105256f82457c811c1d288656f26f.jpg", "file_size": 80936, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0105256f82457c811c1d288656f26f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0105256f82457c811c1d288656f26f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0105256f82457c811c1d288656f26f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb0105256f82457c811c1d288656f26f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb0105256f82457c811c1d288656f26f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzvyE2PfsmacIWYjQg4VK42pNI0=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.790566+00 2025-12-09 10:15:43.790574+00 18027 CCHD212#杏色净色 SPMX-20240815313251 \N \N \N 1 \N [{"file_id": "738220e3-04a9-4fe8-9007-d4de8b8589db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f05c65ac894a4e7db07715f8282e7c30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f05c65ac894a4e7db07715f8282e7c30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f05c65ac894a4e7db07715f8282e7c30.jpg", "file_size": 4370, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#杏色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05c65ac894a4e7db07715f8282e7c30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05c65ac894a4e7db07715f8282e7c30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05c65ac894a4e7db07715f8282e7c30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f05c65ac894a4e7db07715f8282e7c30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f05c65ac894a4e7db07715f8282e7c30.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43Pqc5dC4qUJQl52Jt1GoV38yB4=", "createTime": "2024-08-15 15:03:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.793534+00 2025-12-09 10:15:43.79354+00 18028 LZ137FWF#1号色短袖 SPMX-20240815313254 \N \N \N 1 \N [{"file_id": "65a3271a-0553-47db-a3f6-c357ab7bd13c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cfb2b9f87ab40ef9c5f36f827e700de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cfb2b9f87ab40ef9c5f36f827e700de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cfb2b9f87ab40ef9c5f36f827e700de.jpg", "file_size": 16164, "is_delete": false, "file_type": 1, "original_file_name": "LZ137FWF#1号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cfb2b9f87ab40ef9c5f36f827e700de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cfb2b9f87ab40ef9c5f36f827e700de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cfb2b9f87ab40ef9c5f36f827e700de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cfb2b9f87ab40ef9c5f36f827e700de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cfb2b9f87ab40ef9c5f36f827e700de.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwR2jXFahEiKIhkDja0Mt7FcAHM=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.796524+00 2025-12-09 10:15:43.796529+00 18029 FX0003-34#RC23 SPMX-20240815313253 \N \N \N 1 \N [{"file_id": "5acbf49a-6883-4e60-b2f3-e3b135bbb2de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3884f7157a5e414eadd9daa7bcdb3237.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3884f7157a5e414eadd9daa7bcdb3237.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3884f7157a5e414eadd9daa7bcdb3237.jpg", "file_size": 15616, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-34#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3884f7157a5e414eadd9daa7bcdb3237.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3884f7157a5e414eadd9daa7bcdb3237.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3884f7157a5e414eadd9daa7bcdb3237.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3884f7157a5e414eadd9daa7bcdb3237.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3884f7157a5e414eadd9daa7bcdb3237.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUIpcnUriY-yXQZmTFG4lu_jru4=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.799423+00 2025-12-09 10:15:43.799429+00 18030 0009-1FWE#VS-D3 SPMX-20240815313259 \N \N \N 1 \N [{"file_id": "5a763719-0602-4698-adff-567719a7de29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ba10510ed0f4b0289c1f424b09a3ea2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ba10510ed0f4b0289c1f424b09a3ea2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ba10510ed0f4b0289c1f424b09a3ea2.jpg", "file_size": 26130, "is_delete": false, "file_type": 1, "original_file_name": "0009-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba10510ed0f4b0289c1f424b09a3ea2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba10510ed0f4b0289c1f424b09a3ea2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ba10510ed0f4b0289c1f424b09a3ea2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ba10510ed0f4b0289c1f424b09a3ea2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ba10510ed0f4b0289c1f424b09a3ea2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LR2YxbNs9HT7vK_Wa6VdpNUb14E=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.802288+00 2025-12-09 10:15:43.802299+00 18031 1231-31FWF#小童8码+4码 SPMX-20240815313255 \N \N \N 1 \N [{"file_id": "6b2350fb-1a67-46d0-8d79-eb843653602f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce9ca3c941db47acab5317fb9ecc109a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce9ca3c941db47acab5317fb9ecc109a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce9ca3c941db47acab5317fb9ecc109a.jpg", "file_size": 23375, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9ca3c941db47acab5317fb9ecc109a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9ca3c941db47acab5317fb9ecc109a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce9ca3c941db47acab5317fb9ecc109a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce9ca3c941db47acab5317fb9ecc109a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce9ca3c941db47acab5317fb9ecc109a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_UTbk3yaXuACzjvvuMHEic0yrNQ=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.805261+00 2025-12-09 10:15:43.805267+00 18032 HXF-0008-B1#杏色 SPMX-20240815313256 \N \N \N 1 \N [{"file_id": "e60e6f67-4257-41bd-b8a4-fcd677259ae3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f3581ad8e094cfaaa40c051d49b0f17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f3581ad8e094cfaaa40c051d49b0f17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f3581ad8e094cfaaa40c051d49b0f17.jpg", "file_size": 64724, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B1#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3581ad8e094cfaaa40c051d49b0f17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3581ad8e094cfaaa40c051d49b0f17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f3581ad8e094cfaaa40c051d49b0f17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f3581ad8e094cfaaa40c051d49b0f17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f3581ad8e094cfaaa40c051d49b0f17.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCdcY2Xy3eh4Fx8I9gYgZLqc_l8=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.808177+00 2025-12-09 10:15:43.808183+00 18033 DL31768#前幅玫红 SPMX-20240815313258 \N \N \N 1 \N [{"file_id": "125760da-124c-4c98-af47-8ac412409ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d167228d8cc4458c84490a2036f45dad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d167228d8cc4458c84490a2036f45dad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d167228d8cc4458c84490a2036f45dad.jpg", "file_size": 46887, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d167228d8cc4458c84490a2036f45dad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d167228d8cc4458c84490a2036f45dad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d167228d8cc4458c84490a2036f45dad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d167228d8cc4458c84490a2036f45dad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d167228d8cc4458c84490a2036f45dad.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8Ir70SZEytW_lPiNzV2OnfGW8M=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.811075+00 2025-12-09 10:15:43.811082+00 18034 859FWF#红色 SPMX-20240815313257 \N \N \N 1 \N [{"file_id": "d1fa5db3-6ef0-471d-b5f3-85943221c892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg", "file_size": 21577, "is_delete": false, "file_type": 1, "original_file_name": "859FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cb2c515ec4c4ce6bdfb992506d9ecbf.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2z_7uQGYXGkjChOLr7Yy6fftADM=", "createTime": "2024-08-15 15:03:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.813868+00 2025-12-09 10:15:43.813874+00 18035 1231-31FWF#小童袖领匹布 SPMX-20240815313264 \N \N \N 1 \N [{"file_id": "f2959cd5-f284-486e-a8d8-a2070d27c7a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d02b33b7681142a0b6d27091ae80ed86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d02b33b7681142a0b6d27091ae80ed86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d02b33b7681142a0b6d27091ae80ed86.jpg", "file_size": 23157, "is_delete": false, "file_type": 1, "original_file_name": "1231-31FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02b33b7681142a0b6d27091ae80ed86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02b33b7681142a0b6d27091ae80ed86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d02b33b7681142a0b6d27091ae80ed86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d02b33b7681142a0b6d27091ae80ed86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d02b33b7681142a0b6d27091ae80ed86.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KUXAnHs3krtphpNYjQDAHIlTXyo=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.816877+00 2025-12-09 10:15:43.816882+00 18036 FX0003-35#RC23 SPMX-20240815313263 \N \N \N 1 \N [{"file_id": "f46dc563-f268-49b3-9d0d-f799239e9271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "022b47560bf94d31997c9cae0a0e561d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "022b47560bf94d31997c9cae0a0e561d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "022b47560bf94d31997c9cae0a0e561d.jpg", "file_size": 8760, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-35#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/022b47560bf94d31997c9cae0a0e561d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/022b47560bf94d31997c9cae0a0e561d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/022b47560bf94d31997c9cae0a0e561d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/022b47560bf94d31997c9cae0a0e561d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/022b47560bf94d31997c9cae0a0e561d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QpEkHahzN9YsrEjRgJcBjB5c5hE=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.819801+00 2025-12-09 10:15:43.819808+00 18037 232#-定位裁-白色 SPMX-20240815313265 \N \N \N 1 \N [{"file_id": "04968559-ac8d-484b-a86e-3142e51f25f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5133bef3716846f5b69d1e6e8fde678f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5133bef3716846f5b69d1e6e8fde678f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5133bef3716846f5b69d1e6e8fde678f.jpg", "file_size": 84275, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5133bef3716846f5b69d1e6e8fde678f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5133bef3716846f5b69d1e6e8fde678f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5133bef3716846f5b69d1e6e8fde678f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5133bef3716846f5b69d1e6e8fde678f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5133bef3716846f5b69d1e6e8fde678f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zo-S-IwkQeQMGLz_iN8cVa3DOIc=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.822715+00 2025-12-09 10:15:43.822722+00 18038 CCHD212#粉色L SPMX-20240815313260 \N \N \N 1 \N [{"file_id": "3ca72166-ac7b-484c-b364-561f26b6bf63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6efa8caf28cf49f6b56ebf0bc7251e7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6efa8caf28cf49f6b56ebf0bc7251e7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6efa8caf28cf49f6b56ebf0bc7251e7d.jpg", "file_size": 17643, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efa8caf28cf49f6b56ebf0bc7251e7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efa8caf28cf49f6b56ebf0bc7251e7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6efa8caf28cf49f6b56ebf0bc7251e7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6efa8caf28cf49f6b56ebf0bc7251e7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6efa8caf28cf49f6b56ebf0bc7251e7d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtnJ8_IZd4w7R-J1gOtATv4mkyg=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.825615+00 2025-12-09 10:15:43.825621+00 18039 JTSS860FW#VS-D3 SPMX-20240815313261 \N \N \N 1 \N [{"file_id": "64bf7fde-4992-4f24-86cf-09ff8098fe42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "141b56a873ee42efa8dfa759891ac7db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "141b56a873ee42efa8dfa759891ac7db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "141b56a873ee42efa8dfa759891ac7db.jpg", "file_size": 11202, "is_delete": false, "file_type": 1, "original_file_name": "JTSS860FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141b56a873ee42efa8dfa759891ac7db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141b56a873ee42efa8dfa759891ac7db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/141b56a873ee42efa8dfa759891ac7db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/141b56a873ee42efa8dfa759891ac7db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/141b56a873ee42efa8dfa759891ac7db.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37I70eRp19MFnmIFsvWcuTUTlj0=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.828584+00 2025-12-09 10:15:43.828591+00 18040 LJH1912#克色 SPMX-20240815313262 \N \N \N 1 \N [{"file_id": "c1e6884f-8592-4014-a7de-64fc3fe0a23f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf54d5e6db0444d389d31d1dc78124e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf54d5e6db0444d389d31d1dc78124e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf54d5e6db0444d389d31d1dc78124e7.jpg", "file_size": 51772, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#克色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf54d5e6db0444d389d31d1dc78124e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf54d5e6db0444d389d31d1dc78124e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf54d5e6db0444d389d31d1dc78124e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf54d5e6db0444d389d31d1dc78124e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf54d5e6db0444d389d31d1dc78124e7.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LFmxmgCWAG9TbrcQkumx1uzpeoU=", "createTime": "2024-08-15 15:03:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.831587+00 2025-12-09 10:15:43.831594+00 18041 JTSS861FW#VS-D3 SPMX-20240815313270 \N \N \N 1 \N [{"file_id": "a7368557-4439-4f01-9712-6708d4650d94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62e626a60ce047189867a1a71e042835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62e626a60ce047189867a1a71e042835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62e626a60ce047189867a1a71e042835.jpg", "file_size": 10839, "is_delete": false, "file_type": 1, "original_file_name": "JTSS861FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e626a60ce047189867a1a71e042835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e626a60ce047189867a1a71e042835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62e626a60ce047189867a1a71e042835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62e626a60ce047189867a1a71e042835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62e626a60ce047189867a1a71e042835.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vh0Jz04zAHsVAo_PfI586YfGY44=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.834549+00 2025-12-09 10:15:43.834555+00 18042 1231-32FWF#中童12码+10码 SPMX-20240815313273 \N \N \N 1 \N [{"file_id": "79192332-e6ca-4c6e-bd23-f8683d508c10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f693cd32403469f876cc5c2ea472ca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f693cd32403469f876cc5c2ea472ca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f693cd32403469f876cc5c2ea472ca2.jpg", "file_size": 18395, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f693cd32403469f876cc5c2ea472ca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f693cd32403469f876cc5c2ea472ca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f693cd32403469f876cc5c2ea472ca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f693cd32403469f876cc5c2ea472ca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f693cd32403469f876cc5c2ea472ca2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMj7ISkAIt11I-hfDrUEdA_6BL4=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.83753+00 2025-12-09 10:15:43.837535+00 18043 LZ137FWF#2号色短袖 SPMX-20240815313266 \N \N \N 1 \N [{"file_id": "5ae8cd98-d345-421f-8ada-1d2e4bade4f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "996f69ddea064292b516f1c1db786116.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "996f69ddea064292b516f1c1db786116.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "996f69ddea064292b516f1c1db786116.jpg", "file_size": 16551, "is_delete": false, "file_type": 1, "original_file_name": "LZ137FWF#2号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996f69ddea064292b516f1c1db786116.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996f69ddea064292b516f1c1db786116.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996f69ddea064292b516f1c1db786116.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/996f69ddea064292b516f1c1db786116.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/996f69ddea064292b516f1c1db786116.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0Q44xteWb5g00z0SZZqXl-jqnY=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.840426+00 2025-12-09 10:15:43.840432+00 18044 DL31768#前幅蓝绿 SPMX-20240815313267 \N \N \N 1 \N [{"file_id": "7dd85f84-a7d5-4ec8-886d-46e6591795d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "965ac7850d014a2e8cdf77baafc0e5ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "965ac7850d014a2e8cdf77baafc0e5ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "965ac7850d014a2e8cdf77baafc0e5ef.jpg", "file_size": 46633, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ac7850d014a2e8cdf77baafc0e5ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ac7850d014a2e8cdf77baafc0e5ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965ac7850d014a2e8cdf77baafc0e5ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/965ac7850d014a2e8cdf77baafc0e5ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/965ac7850d014a2e8cdf77baafc0e5ef.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZKeXmd_nSBAONyYMc_z5fFLl_I=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.843365+00 2025-12-09 10:15:43.843371+00 18045 LZ137FWF#3号色短袖 SPMX-20240815313269 \N \N \N 1 \N [{"file_id": "14434b8b-0d7a-4ca7-9649-3eafa01e042e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8e30335a3e40189f895ad8c5537f00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8e30335a3e40189f895ad8c5537f00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8e30335a3e40189f895ad8c5537f00.jpg", "file_size": 17022, "is_delete": false, "file_type": 1, "original_file_name": "LZ137FWF#3号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8e30335a3e40189f895ad8c5537f00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8e30335a3e40189f895ad8c5537f00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8e30335a3e40189f895ad8c5537f00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8e30335a3e40189f895ad8c5537f00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8e30335a3e40189f895ad8c5537f00.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7J-kEWbe2HVajQr7ktahgSDOeCY=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.846213+00 2025-12-09 10:15:43.846219+00 18046 HXF-0008-B1#黑色 SPMX-20240815313272 \N \N \N 1 \N [{"file_id": "c6a561eb-056f-460e-a1b6-0d8510231ffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c9fd5fadcba411586bfefa14c43b63f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c9fd5fadcba411586bfefa14c43b63f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c9fd5fadcba411586bfefa14c43b63f.jpg", "file_size": 61880, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fd5fadcba411586bfefa14c43b63f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fd5fadcba411586bfefa14c43b63f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c9fd5fadcba411586bfefa14c43b63f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c9fd5fadcba411586bfefa14c43b63f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c9fd5fadcba411586bfefa14c43b63f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JT12Azc9QUWPIhdZYm4PrS3Gu8M=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.849031+00 2025-12-09 10:15:43.849036+00 18047 859FWF#绿色 SPMX-20240815313268 \N \N \N 1 \N [{"file_id": "cb1f2037-73e7-47c3-bcec-b15aa9d5acaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "231a45d56fb14e0297568b503d01b622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "231a45d56fb14e0297568b503d01b622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "231a45d56fb14e0297568b503d01b622.jpg", "file_size": 22932, "is_delete": false, "file_type": 1, "original_file_name": "859FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231a45d56fb14e0297568b503d01b622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231a45d56fb14e0297568b503d01b622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/231a45d56fb14e0297568b503d01b622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/231a45d56fb14e0297568b503d01b622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/231a45d56fb14e0297568b503d01b622.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IvT0Y4d7xw8lzGF6gxlOLCjek-Q=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.851981+00 2025-12-09 10:15:43.851989+00 18048 0009-2FWE#VS-D3番禺调色 SPMX-20240815313271 \N \N \N 1 \N [{"file_id": "27590c6b-381d-4f2d-a073-ee585442bffa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "872c824e2aa7413bbeacb5fd5f110e50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "872c824e2aa7413bbeacb5fd5f110e50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "872c824e2aa7413bbeacb5fd5f110e50.jpg", "file_size": 21681, "is_delete": false, "file_type": 1, "original_file_name": "0009-2FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872c824e2aa7413bbeacb5fd5f110e50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872c824e2aa7413bbeacb5fd5f110e50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/872c824e2aa7413bbeacb5fd5f110e50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/872c824e2aa7413bbeacb5fd5f110e50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/872c824e2aa7413bbeacb5fd5f110e50.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZik6ng5Ys7Y3F24FI20Ww2lmjk=", "createTime": "2024-08-15 15:03:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.854925+00 2025-12-09 10:15:43.854931+00 18049 DL3263#短款下摆原版 SPMX-20240815313284 \N \N \N 1 \N [{"file_id": "00e7f8e2-3685-4105-8971-070964b6015e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2de3f0759e45358f3d058e77c9d3cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2de3f0759e45358f3d058e77c9d3cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2de3f0759e45358f3d058e77c9d3cc.jpg", "file_size": 16539, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款下摆原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2de3f0759e45358f3d058e77c9d3cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2de3f0759e45358f3d058e77c9d3cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2de3f0759e45358f3d058e77c9d3cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2de3f0759e45358f3d058e77c9d3cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2de3f0759e45358f3d058e77c9d3cc.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrhMmzDR9QP96hM1s-3CFW6eWcw=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.857838+00 2025-12-09 10:15:43.857844+00 18050 FX0003-37#RC23 SPMX-20240815313286 \N \N \N 1 \N [{"file_id": "3b13fb70-bd80-4001-9a47-b9bdf0393a41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b02e5d79ce47464aa4915778ab0db676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b02e5d79ce47464aa4915778ab0db676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b02e5d79ce47464aa4915778ab0db676.jpg", "file_size": 14239, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-37#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02e5d79ce47464aa4915778ab0db676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02e5d79ce47464aa4915778ab0db676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02e5d79ce47464aa4915778ab0db676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b02e5d79ce47464aa4915778ab0db676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b02e5d79ce47464aa4915778ab0db676.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j0Rh6KAmmd0va06kGQTr0G_1lYc=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.860739+00 2025-12-09 10:15:43.860745+00 18051 232#-定位裁-黄色 SPMX-20240815313276 \N \N \N 1 \N [{"file_id": "11c74ee2-b40d-41f4-909f-6f6ec1ff4d9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg", "file_size": 85260, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5ebf08b23b645c8bc55a9e1dd51b0c8.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kka2cYdifY0yEIw2pvkDZ6pek2c=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.86368+00 2025-12-09 10:15:43.863687+00 18052 0009-2FWE#VS-D3龙潭调色 SPMX-20240815313279 \N \N \N 1 \N [{"file_id": "811d801a-e7a6-45eb-93ff-a5cc53b9c9bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b72163c12374e228513f3daeb0a9483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b72163c12374e228513f3daeb0a9483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b72163c12374e228513f3daeb0a9483.jpg", "file_size": 20810, "is_delete": false, "file_type": 1, "original_file_name": "0009-2FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b72163c12374e228513f3daeb0a9483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b72163c12374e228513f3daeb0a9483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b72163c12374e228513f3daeb0a9483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b72163c12374e228513f3daeb0a9483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b72163c12374e228513f3daeb0a9483.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3biSL8H-bB5j7N3MqPlQDvIkn0U=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.866683+00 2025-12-09 10:15:43.866689+00 18053 DL31768#前幅黄色 SPMX-20240815313274 \N \N \N 1 \N [{"file_id": "c3382bd2-67bb-4eec-a272-8fc339cc1e04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b915900d6e440269ad976f077b6e2cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b915900d6e440269ad976f077b6e2cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b915900d6e440269ad976f077b6e2cf.jpg", "file_size": 46964, "is_delete": false, "file_type": 1, "original_file_name": "DL31768#前幅黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b915900d6e440269ad976f077b6e2cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b915900d6e440269ad976f077b6e2cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b915900d6e440269ad976f077b6e2cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b915900d6e440269ad976f077b6e2cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b915900d6e440269ad976f077b6e2cf.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C5bCpWH-JPW2Waj0IlG7I59MIOc=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.869694+00 2025-12-09 10:15:43.8697+00 18054 1231-32FWF#中童14码 SPMX-20240815313285 \N \N \N 1 \N [{"file_id": "9f13ce53-59fd-4244-a82d-9ebf876521df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ded58c9f7a234c2f99d05bac52933d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ded58c9f7a234c2f99d05bac52933d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ded58c9f7a234c2f99d05bac52933d44.jpg", "file_size": 17290, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded58c9f7a234c2f99d05bac52933d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded58c9f7a234c2f99d05bac52933d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded58c9f7a234c2f99d05bac52933d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ded58c9f7a234c2f99d05bac52933d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ded58c9f7a234c2f99d05bac52933d44.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j3JbqveQf9gHq5iz41SYO3t-1DA=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.87255+00 2025-12-09 10:15:43.872556+00 18055 HXF-0008-B10#RC23 SPMX-20240815313283 \N \N \N 1 \N [{"file_id": "26bd6695-0396-4696-858d-fbc861b8f1d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3f6d130dce7423fbd6d55e08cdc88a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3f6d130dce7423fbd6d55e08cdc88a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3f6d130dce7423fbd6d55e08cdc88a3.jpg", "file_size": 55945, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B10#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6d130dce7423fbd6d55e08cdc88a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6d130dce7423fbd6d55e08cdc88a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f6d130dce7423fbd6d55e08cdc88a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3f6d130dce7423fbd6d55e08cdc88a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3f6d130dce7423fbd6d55e08cdc88a3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwSttE1gRaEjPyjVqagwvdj804M=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.875422+00 2025-12-09 10:15:43.875428+00 18056 8602#LWQ15 SPMX-20240815313282 \N \N \N 1 \N [{"file_id": "bcc464e0-041c-4028-8b07-d12deb139771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb7c208310904b1ebbf279b3de41fc79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb7c208310904b1ebbf279b3de41fc79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb7c208310904b1ebbf279b3de41fc79.jpg", "file_size": 17476, "is_delete": false, "file_type": 1, "original_file_name": "8602#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb7c208310904b1ebbf279b3de41fc79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb7c208310904b1ebbf279b3de41fc79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb7c208310904b1ebbf279b3de41fc79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb7c208310904b1ebbf279b3de41fc79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb7c208310904b1ebbf279b3de41fc79.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gTLVpjBrV47BHEKbZhF-_h9aynY=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.878343+00 2025-12-09 10:15:43.878349+00 18057 FX0003-36#RC23 SPMX-20240815313275 \N \N \N 1 \N [{"file_id": "b45107c4-618c-4a6f-aca5-db2056f235c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa2c4869136743a4b9bb17fd51b40d37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa2c4869136743a4b9bb17fd51b40d37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa2c4869136743a4b9bb17fd51b40d37.jpg", "file_size": 15410, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-36#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2c4869136743a4b9bb17fd51b40d37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2c4869136743a4b9bb17fd51b40d37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa2c4869136743a4b9bb17fd51b40d37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa2c4869136743a4b9bb17fd51b40d37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa2c4869136743a4b9bb17fd51b40d37.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tlOe0OCxaITeRPJEW046jX4p-g=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.881206+00 2025-12-09 10:15:43.881212+00 18058 JTSS862FW#VS-D3 SPMX-20240815313278 \N \N \N 1 \N [{"file_id": "d2040fa3-d624-4621-b180-ae75db94caa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca736e3cebe84b5fb5303957baa2a082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca736e3cebe84b5fb5303957baa2a082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca736e3cebe84b5fb5303957baa2a082.jpg", "file_size": 10825, "is_delete": false, "file_type": 1, "original_file_name": "JTSS862FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca736e3cebe84b5fb5303957baa2a082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca736e3cebe84b5fb5303957baa2a082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca736e3cebe84b5fb5303957baa2a082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca736e3cebe84b5fb5303957baa2a082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca736e3cebe84b5fb5303957baa2a082.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g9CLuIykAjgMWGOkd70-qnWo2Ek=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.884093+00 2025-12-09 10:15:43.884099+00 18059 LJH1912#大花克色 SPMX-20240815313277 \N \N \N 1 \N [{"file_id": "9993717c-ee89-4095-b1a5-2300e1f896ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eceacd20ca04ccbbcf9882f639e7030.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eceacd20ca04ccbbcf9882f639e7030.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eceacd20ca04ccbbcf9882f639e7030.jpg", "file_size": 52578, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#大花克色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eceacd20ca04ccbbcf9882f639e7030.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eceacd20ca04ccbbcf9882f639e7030.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eceacd20ca04ccbbcf9882f639e7030.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eceacd20ca04ccbbcf9882f639e7030.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eceacd20ca04ccbbcf9882f639e7030.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kntgPAuFvK2Zy9B8yYtqubbvcKA=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.921788+00 2025-12-09 10:15:43.921795+00 18072 JTSS863FW#VS-D3 SPMX-20240815313288 \N \N \N 1 \N [{"file_id": "f8c5c5fb-e0e0-4b7d-8983-0191c6d58669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7722cb5b3e074080a713b1eaab098076.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7722cb5b3e074080a713b1eaab098076.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7722cb5b3e074080a713b1eaab098076.jpg", "file_size": 11690, "is_delete": false, "file_type": 1, "original_file_name": "JTSS863FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7722cb5b3e074080a713b1eaab098076.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7722cb5b3e074080a713b1eaab098076.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7722cb5b3e074080a713b1eaab098076.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7722cb5b3e074080a713b1eaab098076.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7722cb5b3e074080a713b1eaab098076.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXhBIDnU9d1h1pPFUnAaEhA440I=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.887051+00 2025-12-09 10:15:43.887056+00 18060 LZ137FWF#4号色短袖 SPMX-20240815313281 \N \N \N 1 \N [{"file_id": "4f6082a3-a813-4816-963f-8c6e5375173a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ad42d26927347348026edcb430f17ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ad42d26927347348026edcb430f17ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ad42d26927347348026edcb430f17ce.jpg", "file_size": 16119, "is_delete": false, "file_type": 1, "original_file_name": "LZ137FWF#4号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad42d26927347348026edcb430f17ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad42d26927347348026edcb430f17ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ad42d26927347348026edcb430f17ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ad42d26927347348026edcb430f17ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ad42d26927347348026edcb430f17ce.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_n9NzPHAPNfhlF_Ff3Y_GIyrWw=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.889996+00 2025-12-09 10:15:43.890002+00 18061 CCHD212#粉色M SPMX-20240815313280 \N \N \N 1 \N [{"file_id": "26407869-4973-4c1b-8650-7aa140631f85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192fd735d24841baabebedca7ae36483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192fd735d24841baabebedca7ae36483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192fd735d24841baabebedca7ae36483.jpg", "file_size": 17936, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192fd735d24841baabebedca7ae36483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192fd735d24841baabebedca7ae36483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192fd735d24841baabebedca7ae36483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192fd735d24841baabebedca7ae36483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192fd735d24841baabebedca7ae36483.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TM9X2jo-WmFvLfJXowVPZIJw6os=", "createTime": "2024-08-15 15:03:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.892874+00 2025-12-09 10:15:43.892879+00 18062 HXF-0008-B11#RC23 SPMX-20240815313295 \N \N \N 1 \N [{"file_id": "6e1bd368-b384-41c7-b9ca-f4654455e564", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e1be072b47142988a54441e36e9e127.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e1be072b47142988a54441e36e9e127.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e1be072b47142988a54441e36e9e127.jpg", "file_size": 38466, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B11#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1be072b47142988a54441e36e9e127.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1be072b47142988a54441e36e9e127.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1be072b47142988a54441e36e9e127.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e1be072b47142988a54441e36e9e127.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e1be072b47142988a54441e36e9e127.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmD_1mBlzWJ_9KZwsnhqiRkmUkk=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.895773+00 2025-12-09 10:15:43.89578+00 18063 CCHD212#粉色S SPMX-20240815313292 \N \N \N 1 \N [{"file_id": "deca649a-875f-4822-938c-baf3b78f01cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "382b908b71c64c46b33d7224f3783b68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "382b908b71c64c46b33d7224f3783b68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "382b908b71c64c46b33d7224f3783b68.jpg", "file_size": 18165, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/382b908b71c64c46b33d7224f3783b68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/382b908b71c64c46b33d7224f3783b68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/382b908b71c64c46b33d7224f3783b68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/382b908b71c64c46b33d7224f3783b68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/382b908b71c64c46b33d7224f3783b68.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ftZA7d2_5bfAuMQl3RZKjiocR04=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.89865+00 2025-12-09 10:15:43.898656+00 18064 LZ137FWF#5号色短袖 SPMX-20240815313294 \N \N \N 1 \N [{"file_id": "b1f1eb72-165d-4c86-a76c-9ca401eacfe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1a4c094909f4f3091ecb03e7a060623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1a4c094909f4f3091ecb03e7a060623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1a4c094909f4f3091ecb03e7a060623.jpg", "file_size": 17067, "is_delete": false, "file_type": 1, "original_file_name": "LZ137FWF#5号色短袖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a4c094909f4f3091ecb03e7a060623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a4c094909f4f3091ecb03e7a060623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1a4c094909f4f3091ecb03e7a060623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1a4c094909f4f3091ecb03e7a060623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1a4c094909f4f3091ecb03e7a060623.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XBgJkG-HlqKiHNnADYEbTc8PKzw=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.90159+00 2025-12-09 10:15:43.901597+00 18065 1231-32FWF#中童袖领匹布 SPMX-20240815313296 \N \N \N 1 \N [{"file_id": "c6e1770e-52ae-486b-b09a-a54ed3847f27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d692f1078418404b9ad2d87559af5f6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d692f1078418404b9ad2d87559af5f6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d692f1078418404b9ad2d87559af5f6d.jpg", "file_size": 14166, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d692f1078418404b9ad2d87559af5f6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d692f1078418404b9ad2d87559af5f6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d692f1078418404b9ad2d87559af5f6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d692f1078418404b9ad2d87559af5f6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d692f1078418404b9ad2d87559af5f6d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThU7PVU1bP6fUc0cAhmOmX0MPWs=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.904513+00 2025-12-09 10:15:43.904519+00 18066 8607#-匹布 SPMX-20240815313291 \N \N \N 1 \N [{"file_id": "97205f9f-c744-4caa-8d12-57a9123c0a2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "278b853768524c158ec23d530c89bed7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "278b853768524c158ec23d530c89bed7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "278b853768524c158ec23d530c89bed7.jpg", "file_size": 22129, "is_delete": false, "file_type": 1, "original_file_name": "8607#-匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278b853768524c158ec23d530c89bed7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278b853768524c158ec23d530c89bed7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278b853768524c158ec23d530c89bed7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/278b853768524c158ec23d530c89bed7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/278b853768524c158ec23d530c89bed7.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WD6sc4vBV9TF-D_2Fc1f73QX8sY=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.907463+00 2025-12-09 10:15:43.907469+00 18067 DL3263#短款下摆墨绿 SPMX-20240815313293 \N \N \N 1 \N [{"file_id": "e07f6be3-0e2a-4c31-acbf-fa80cc4d670d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfa49bbe86014b2b801a33a54806e07c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfa49bbe86014b2b801a33a54806e07c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfa49bbe86014b2b801a33a54806e07c.jpg", "file_size": 16678, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa49bbe86014b2b801a33a54806e07c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa49bbe86014b2b801a33a54806e07c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfa49bbe86014b2b801a33a54806e07c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfa49bbe86014b2b801a33a54806e07c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfa49bbe86014b2b801a33a54806e07c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XC3j2WOtoOLaJXxzavWMs9p9cjg=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.910324+00 2025-12-09 10:15:43.910329+00 18068 0009-3FWE#VS-D3番禺调色 SPMX-20240815313287 \N \N \N 1 \N [{"file_id": "a939a2d3-2d66-49f4-830a-f7a8267a319b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "182671b48b8e4a3f8e3dd60170fd8a8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "182671b48b8e4a3f8e3dd60170fd8a8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "182671b48b8e4a3f8e3dd60170fd8a8f.jpg", "file_size": 14173, "is_delete": false, "file_type": 1, "original_file_name": "0009-3FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182671b48b8e4a3f8e3dd60170fd8a8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182671b48b8e4a3f8e3dd60170fd8a8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/182671b48b8e4a3f8e3dd60170fd8a8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/182671b48b8e4a3f8e3dd60170fd8a8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/182671b48b8e4a3f8e3dd60170fd8a8f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FdTtiZLRoLln81OLJ-0hOV23-oU=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.913248+00 2025-12-09 10:15:43.913255+00 18069 232#-定位裁-黑色 SPMX-20240815313289 \N \N \N 1 \N [{"file_id": "d14d1987-3410-48ad-ad1e-776a756d46da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79649b2cc122484599400760a0bd9552.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79649b2cc122484599400760a0bd9552.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79649b2cc122484599400760a0bd9552.jpg", "file_size": 82833, "is_delete": false, "file_type": 1, "original_file_name": "232#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79649b2cc122484599400760a0bd9552.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79649b2cc122484599400760a0bd9552.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79649b2cc122484599400760a0bd9552.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79649b2cc122484599400760a0bd9552.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79649b2cc122484599400760a0bd9552.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WUmzVHD3I1o6t7poaxFbAJunP_I=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.916094+00 2025-12-09 10:15:43.9161+00 18070 LJH1912#大花红色 SPMX-20240815313290 \N \N \N 1 \N [{"file_id": "721ef49c-6f63-421c-8b6f-20df2282bcb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "032c92c2574a4f64abcb6346482a253c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "032c92c2574a4f64abcb6346482a253c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "032c92c2574a4f64abcb6346482a253c.jpg", "file_size": 58888, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#大花红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032c92c2574a4f64abcb6346482a253c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032c92c2574a4f64abcb6346482a253c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/032c92c2574a4f64abcb6346482a253c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/032c92c2574a4f64abcb6346482a253c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/032c92c2574a4f64abcb6346482a253c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5X5QmYckk1Js86iy94jzIKgmNXk=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.918948+00 2025-12-09 10:15:43.918954+00 18071 FX0003-38#RC23 SPMX-20240815313297 \N \N \N 1 \N [{"file_id": "250a14bf-10d6-4955-81cf-82464ca29dbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "050995fa2e15443bb50fd2fd89f42bff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "050995fa2e15443bb50fd2fd89f42bff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "050995fa2e15443bb50fd2fd89f42bff.jpg", "file_size": 17209, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-38#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/050995fa2e15443bb50fd2fd89f42bff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/050995fa2e15443bb50fd2fd89f42bff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/050995fa2e15443bb50fd2fd89f42bff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/050995fa2e15443bb50fd2fd89f42bff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/050995fa2e15443bb50fd2fd89f42bff.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVrpmBmHchGJxileWgMrNSzqgYw=", "createTime": "2024-08-15 15:03:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.925781+00 2025-12-09 10:15:43.925789+00 18073 JTSS864FW#VS-D3 SPMX-20240815313299 \N \N \N 1 \N [{"file_id": "0c840eb5-2695-4dce-9a5f-3a9ae8200be2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c7e0a06c77e4f0ea52a4d7951127261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c7e0a06c77e4f0ea52a4d7951127261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c7e0a06c77e4f0ea52a4d7951127261.jpg", "file_size": 9411, "is_delete": false, "file_type": 1, "original_file_name": "JTSS864FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7e0a06c77e4f0ea52a4d7951127261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7e0a06c77e4f0ea52a4d7951127261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7e0a06c77e4f0ea52a4d7951127261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c7e0a06c77e4f0ea52a4d7951127261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c7e0a06c77e4f0ea52a4d7951127261.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cf1dDcoEhzKN9S4tdRJgqJF0_ps=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.930078+00 2025-12-09 10:15:43.930085+00 18074 DL3263#短款下摆彩兰 SPMX-20240815313300 \N \N \N 1 \N [{"file_id": "46259ab4-0f43-42b5-b34b-e4972ad6f52d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "020464b8b58c4e35bfcc5a8d7669efb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "020464b8b58c4e35bfcc5a8d7669efb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "020464b8b58c4e35bfcc5a8d7669efb4.jpg", "file_size": 16613, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020464b8b58c4e35bfcc5a8d7669efb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020464b8b58c4e35bfcc5a8d7669efb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/020464b8b58c4e35bfcc5a8d7669efb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/020464b8b58c4e35bfcc5a8d7669efb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/020464b8b58c4e35bfcc5a8d7669efb4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8p2CGuyN1szVoiq0APZzbM9n5Yw=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.933709+00 2025-12-09 10:15:43.933716+00 18075 LJH1912#大花绿色 SPMX-20240815313303 \N \N \N 1 \N [{"file_id": "332ffe43-86ad-4937-9bd9-3c8c846a0708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa532084335a42019812c9a3d95f7334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa532084335a42019812c9a3d95f7334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa532084335a42019812c9a3d95f7334.jpg", "file_size": 54689, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#大花绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa532084335a42019812c9a3d95f7334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa532084335a42019812c9a3d95f7334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa532084335a42019812c9a3d95f7334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa532084335a42019812c9a3d95f7334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa532084335a42019812c9a3d95f7334.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQKDOdr71zYy8iaOaJ6BbHZcu-I=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.936768+00 2025-12-09 10:15:43.936775+00 18076 1231-32FWF#小童6码 SPMX-20240815313308 \N \N \N 1 \N [{"file_id": "2138c90a-e4f2-48b2-96a4-0450b5bfd4a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ed1864eb8dc47ba9b047b759d5c3fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ed1864eb8dc47ba9b047b759d5c3fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ed1864eb8dc47ba9b047b759d5c3fd0.jpg", "file_size": 20925, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed1864eb8dc47ba9b047b759d5c3fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed1864eb8dc47ba9b047b759d5c3fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed1864eb8dc47ba9b047b759d5c3fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ed1864eb8dc47ba9b047b759d5c3fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ed1864eb8dc47ba9b047b759d5c3fd0.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKfcppMMZiZDTDCaFqnFgizFBQE=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.939721+00 2025-12-09 10:15:43.939727+00 18077 2321-1#大花XL码 SPMX-20240815313302 \N \N \N 1 \N [{"file_id": "c0a65bad-177f-4c35-b3ee-b3c7f2251cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b6b89844fc2411dba7905596ca41c86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b6b89844fc2411dba7905596ca41c86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b6b89844fc2411dba7905596ca41c86.jpg", "file_size": 15639, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#大花XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6b89844fc2411dba7905596ca41c86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6b89844fc2411dba7905596ca41c86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b6b89844fc2411dba7905596ca41c86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b6b89844fc2411dba7905596ca41c86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b6b89844fc2411dba7905596ca41c86.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtkHszmS194uuFoLa5rcxfkD_1g=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.942675+00 2025-12-09 10:15:43.942681+00 18078 8607# SPMX-20240815313306 \N \N \N 1 \N [{"file_id": "0e4631f5-2da8-4b3c-a38e-03491cfd3629", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdcf8bd51a9f40ed802a789a3eaebd91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdcf8bd51a9f40ed802a789a3eaebd91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdcf8bd51a9f40ed802a789a3eaebd91.jpg", "file_size": 17608, "is_delete": false, "file_type": 1, "original_file_name": "8607#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcf8bd51a9f40ed802a789a3eaebd91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcf8bd51a9f40ed802a789a3eaebd91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdcf8bd51a9f40ed802a789a3eaebd91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdcf8bd51a9f40ed802a789a3eaebd91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdcf8bd51a9f40ed802a789a3eaebd91.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ku9KYdd1pAYrkms-Od68671mjd0=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.94562+00 2025-12-09 10:15:43.945626+00 18079 FX0003-39#RC23 SPMX-20240815313307 \N \N \N 1 \N [{"file_id": "15c6598f-ae7f-47d8-9808-776c73c9f3ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9371972f80b4b7d89d09dec1a1232d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9371972f80b4b7d89d09dec1a1232d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9371972f80b4b7d89d09dec1a1232d5.jpg", "file_size": 12248, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-39#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9371972f80b4b7d89d09dec1a1232d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9371972f80b4b7d89d09dec1a1232d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9371972f80b4b7d89d09dec1a1232d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9371972f80b4b7d89d09dec1a1232d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9371972f80b4b7d89d09dec1a1232d5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-w6jADlZr3YvhqMxjc8Y85arTU=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.948532+00 2025-12-09 10:15:43.948537+00 18080 CCHD212#粉色XL SPMX-20240815313301 \N \N \N 1 \N [{"file_id": "2180e208-db05-4f6e-aad7-f82591fcd4f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71153d1b57b148969fb6791416538a01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71153d1b57b148969fb6791416538a01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71153d1b57b148969fb6791416538a01.jpg", "file_size": 15284, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71153d1b57b148969fb6791416538a01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71153d1b57b148969fb6791416538a01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71153d1b57b148969fb6791416538a01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71153d1b57b148969fb6791416538a01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71153d1b57b148969fb6791416538a01.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RCfreTKOOJ512fcsST45yzDZdxg=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.951413+00 2025-12-09 10:15:43.951419+00 18081 LZ1380#童装上身1号色 SPMX-20240815313304 \N \N \N 1 \N [{"file_id": "46bd883d-25d8-426f-b25c-238ead07fade", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e3764297773499b9e35149849a4699d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e3764297773499b9e35149849a4699d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e3764297773499b9e35149849a4699d.jpg", "file_size": 23254, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3764297773499b9e35149849a4699d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3764297773499b9e35149849a4699d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e3764297773499b9e35149849a4699d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e3764297773499b9e35149849a4699d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e3764297773499b9e35149849a4699d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0M6LNqp9C60u9LO4GBLi4UrP1Oc=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.954341+00 2025-12-09 10:15:43.954348+00 18082 0009-3FWE#VS-D3龙潭调色 SPMX-20240815313298 \N \N \N 1 \N [{"file_id": "0f043003-79a2-4b01-947e-af19b9c0c08d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f76e97dec4174610b6c0a81580eb734e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f76e97dec4174610b6c0a81580eb734e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f76e97dec4174610b6c0a81580eb734e.jpg", "file_size": 13477, "is_delete": false, "file_type": 1, "original_file_name": "0009-3FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76e97dec4174610b6c0a81580eb734e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76e97dec4174610b6c0a81580eb734e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f76e97dec4174610b6c0a81580eb734e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f76e97dec4174610b6c0a81580eb734e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f76e97dec4174610b6c0a81580eb734e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vAUiUTJBQfwSzn54Tw06eiI11U=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.957258+00 2025-12-09 10:15:43.957264+00 18083 HXF-0008-B12#RC23 SPMX-20240815313305 \N \N \N 1 \N [{"file_id": "49f8aacb-50b5-4e43-8a05-5dc870656974", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e20606d49c44545a15659bf4af92af4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e20606d49c44545a15659bf4af92af4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e20606d49c44545a15659bf4af92af4.jpg", "file_size": 43176, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B12#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20606d49c44545a15659bf4af92af4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20606d49c44545a15659bf4af92af4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e20606d49c44545a15659bf4af92af4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e20606d49c44545a15659bf4af92af4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e20606d49c44545a15659bf4af92af4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXLuECoJ4HZG1Ssm-DU2P8yAOkw=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.960215+00 2025-12-09 10:15:43.960221+00 18084 LZ1380#童装上身2号色 SPMX-20240815313314 \N \N \N 1 \N [{"file_id": "bfec98e7-093c-47e0-b296-3bf29f1d7020", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2df4b12b71a428c82e1216ec2941cf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2df4b12b71a428c82e1216ec2941cf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2df4b12b71a428c82e1216ec2941cf6.jpg", "file_size": 24382, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2df4b12b71a428c82e1216ec2941cf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2df4b12b71a428c82e1216ec2941cf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2df4b12b71a428c82e1216ec2941cf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2df4b12b71a428c82e1216ec2941cf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2df4b12b71a428c82e1216ec2941cf6.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:alV_ao0PpMts5Eh3VkkFXXesckE=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.96317+00 2025-12-09 10:15:43.963187+00 18085 1231-32FWF#小童8码+4码 SPMX-20240815313318 \N \N \N 1 \N [{"file_id": "fa626e17-5295-4ed0-84ae-d3c0febdac3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94349c454ead4eb8b2dc6dae976d30d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94349c454ead4eb8b2dc6dae976d30d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94349c454ead4eb8b2dc6dae976d30d2.jpg", "file_size": 21140, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94349c454ead4eb8b2dc6dae976d30d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94349c454ead4eb8b2dc6dae976d30d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94349c454ead4eb8b2dc6dae976d30d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94349c454ead4eb8b2dc6dae976d30d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94349c454ead4eb8b2dc6dae976d30d2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DH_fYdp76U2YJ3siJ54EOkkHOrI=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.966386+00 2025-12-09 10:15:43.966391+00 18086 FX0003-4#RC23 SPMX-20240815313319 \N \N \N 1 \N [{"file_id": "b1043fb1-a7cc-4515-b06e-27a78dd99f6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a214783e68194f7e8b71fbba3ee570ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a214783e68194f7e8b71fbba3ee570ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a214783e68194f7e8b71fbba3ee570ee.jpg", "file_size": 21635, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-4#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a214783e68194f7e8b71fbba3ee570ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a214783e68194f7e8b71fbba3ee570ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a214783e68194f7e8b71fbba3ee570ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a214783e68194f7e8b71fbba3ee570ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a214783e68194f7e8b71fbba3ee570ee.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:359ExSKrDKKJH-K1zpfz-Y4Pqis=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.969418+00 2025-12-09 10:15:43.969426+00 18087 CCHD212#粉色净色 SPMX-20240815313310 \N \N \N 1 \N [{"file_id": "39e3de2c-9087-4a05-a8cf-644078f28fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdfc0bfd7545418a82d49df01271cec0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdfc0bfd7545418a82d49df01271cec0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdfc0bfd7545418a82d49df01271cec0.jpg", "file_size": 4433, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc0bfd7545418a82d49df01271cec0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc0bfd7545418a82d49df01271cec0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdfc0bfd7545418a82d49df01271cec0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdfc0bfd7545418a82d49df01271cec0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdfc0bfd7545418a82d49df01271cec0.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:499FKU5jzZnB_GaYmPYtJk4pjlA=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.97228+00 2025-12-09 10:15:43.972286+00 18088 860FWF#WJC22 SPMX-20240815313315 \N \N \N 1 \N [{"file_id": "db3ece57-7fbb-40c0-9f37-f128ddb42671", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9419d7ccc0b4d06a15a6165f98bde93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9419d7ccc0b4d06a15a6165f98bde93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9419d7ccc0b4d06a15a6165f98bde93.jpg", "file_size": 20025, "is_delete": false, "file_type": 1, "original_file_name": "860FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9419d7ccc0b4d06a15a6165f98bde93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9419d7ccc0b4d06a15a6165f98bde93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9419d7ccc0b4d06a15a6165f98bde93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9419d7ccc0b4d06a15a6165f98bde93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9419d7ccc0b4d06a15a6165f98bde93.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ccTowgoSNt8g8oZYd7yhsYd1qtM=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.975222+00 2025-12-09 10:15:43.975228+00 18089 DL3263#短款下摆玫红 SPMX-20240815313309 \N \N \N 1 \N [{"file_id": "f1555139-8aae-4cac-a1b7-261c324c0c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3969f230c954ef7ab62246b6c21d6fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3969f230c954ef7ab62246b6c21d6fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3969f230c954ef7ab62246b6c21d6fb.jpg", "file_size": 16337, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款下摆玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3969f230c954ef7ab62246b6c21d6fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3969f230c954ef7ab62246b6c21d6fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3969f230c954ef7ab62246b6c21d6fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3969f230c954ef7ab62246b6c21d6fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3969f230c954ef7ab62246b6c21d6fb.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gIOLjFUc-RFMNspZcsuokSv-Ec=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.978107+00 2025-12-09 10:15:43.978114+00 18090 DL3263#短款下摆黄色 SPMX-20240815313320 \N \N \N 1 \N [{"file_id": "f64b54f9-cfa6-4238-b97b-a0ca03b68fbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d9ddda1a8f14599ba13e874dcbfc48a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d9ddda1a8f14599ba13e874dcbfc48a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d9ddda1a8f14599ba13e874dcbfc48a.jpg", "file_size": 17718, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款下摆黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9ddda1a8f14599ba13e874dcbfc48a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9ddda1a8f14599ba13e874dcbfc48a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9ddda1a8f14599ba13e874dcbfc48a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d9ddda1a8f14599ba13e874dcbfc48a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d9ddda1a8f14599ba13e874dcbfc48a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXeXu80JfQDB_qwwMBMHUN61aSQ=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.98103+00 2025-12-09 10:15:43.981036+00 18091 2321-1#大花领子 SPMX-20240815313312 \N \N \N 1 \N [{"file_id": "1b86f325-c58d-4dfb-91f2-5f051c180f20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e75433fff7e5408eb5260feba4678863.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e75433fff7e5408eb5260feba4678863.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e75433fff7e5408eb5260feba4678863.jpg", "file_size": 15473, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#大花领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75433fff7e5408eb5260feba4678863.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75433fff7e5408eb5260feba4678863.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e75433fff7e5408eb5260feba4678863.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e75433fff7e5408eb5260feba4678863.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e75433fff7e5408eb5260feba4678863.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkxdgJN7jaa-2YEEFKpZI3W8Z84=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.983976+00 2025-12-09 10:15:43.983982+00 18092 LJH1912#小花克色 SPMX-20240815313313 \N \N \N 1 \N [{"file_id": "5186f620-3d77-46e2-be84-b4ab626da6fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de4b2e737b1a4a82bc6d03b08a3048b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de4b2e737b1a4a82bc6d03b08a3048b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de4b2e737b1a4a82bc6d03b08a3048b0.jpg", "file_size": 61982, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#小花克色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4b2e737b1a4a82bc6d03b08a3048b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4b2e737b1a4a82bc6d03b08a3048b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de4b2e737b1a4a82bc6d03b08a3048b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de4b2e737b1a4a82bc6d03b08a3048b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de4b2e737b1a4a82bc6d03b08a3048b0.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvH2PRnkGc4zLjagMXMJunn4PrU=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.986875+00 2025-12-09 10:15:43.98688+00 18093 0009-4FWE#VS-D3 SPMX-20240815313316 \N \N \N 1 \N [{"file_id": "fff98db0-470f-4879-beaf-3eef8a330d71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d0f51c73bc54d4bb9cb143a9603ea6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d0f51c73bc54d4bb9cb143a9603ea6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d0f51c73bc54d4bb9cb143a9603ea6e.jpg", "file_size": 13915, "is_delete": false, "file_type": 1, "original_file_name": "0009-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0f51c73bc54d4bb9cb143a9603ea6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0f51c73bc54d4bb9cb143a9603ea6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d0f51c73bc54d4bb9cb143a9603ea6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d0f51c73bc54d4bb9cb143a9603ea6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d0f51c73bc54d4bb9cb143a9603ea6e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DlhdUE2ROr_MOinPW69-uXSG9GQ=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.989777+00 2025-12-09 10:15:43.989783+00 18094 HXF-0008-B13#RC23 SPMX-20240815313317 \N \N \N 1 \N [{"file_id": "7bc69e3b-dec1-4238-9c9b-4beb5fecc282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89164b451efc4c83bb56a77c91cf5ce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89164b451efc4c83bb56a77c91cf5ce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89164b451efc4c83bb56a77c91cf5ce8.jpg", "file_size": 41951, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B13#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89164b451efc4c83bb56a77c91cf5ce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89164b451efc4c83bb56a77c91cf5ce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89164b451efc4c83bb56a77c91cf5ce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89164b451efc4c83bb56a77c91cf5ce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89164b451efc4c83bb56a77c91cf5ce8.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CXXAq5wIBbEkS-9pUhwqxA9UhXg=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.992797+00 2025-12-09 10:15:43.992803+00 18095 JTSS865FW#VS-D3 SPMX-20240815313311 \N \N \N 1 \N [{"file_id": "56182f4f-3062-4b72-8f54-868606863c2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acff9e6c99da4287a0da08631675870a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acff9e6c99da4287a0da08631675870a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acff9e6c99da4287a0da08631675870a.jpg", "file_size": 12836, "is_delete": false, "file_type": 1, "original_file_name": "JTSS865FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acff9e6c99da4287a0da08631675870a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acff9e6c99da4287a0da08631675870a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acff9e6c99da4287a0da08631675870a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acff9e6c99da4287a0da08631675870a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acff9e6c99da4287a0da08631675870a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pos9oOJq75PVJuI6z2oAylRSlhE=", "createTime": "2024-08-15 15:03:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:43.995756+00 2025-12-09 10:15:43.995763+00 18096 LJH1912#小花红色 SPMX-20240815313324 \N \N \N 1 \N [{"file_id": "7baef7b1-2cf8-43d1-a28d-d001f7767da1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fddb40ec0f874f4cb5b775007e22cc9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fddb40ec0f874f4cb5b775007e22cc9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fddb40ec0f874f4cb5b775007e22cc9f.jpg", "file_size": 70267, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#小花红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddb40ec0f874f4cb5b775007e22cc9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddb40ec0f874f4cb5b775007e22cc9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fddb40ec0f874f4cb5b775007e22cc9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fddb40ec0f874f4cb5b775007e22cc9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fddb40ec0f874f4cb5b775007e22cc9f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jyxCdOfa0bY2qyUr5ZTXCfNeFdU=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.001751+00 2025-12-09 10:15:44.001758+00 18097 JTSS866FW#VS-D3 SPMX-20240815313321 \N \N \N 1 \N [{"file_id": "00aafe64-10bd-4660-add8-f483cd268420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55160e7b24f1431394d6abd4583b479f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55160e7b24f1431394d6abd4583b479f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55160e7b24f1431394d6abd4583b479f.jpg", "file_size": 18465, "is_delete": false, "file_type": 1, "original_file_name": "JTSS866FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55160e7b24f1431394d6abd4583b479f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55160e7b24f1431394d6abd4583b479f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55160e7b24f1431394d6abd4583b479f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55160e7b24f1431394d6abd4583b479f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55160e7b24f1431394d6abd4583b479f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TKDVUbmbAbNhpfTVvyzrvHpA-wg=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.004695+00 2025-12-09 10:15:44.004702+00 18098 CCHD212#黄色L SPMX-20240815313322 \N \N \N 1 \N [{"file_id": "b60e65b4-2a5f-44a2-8671-e4a3b8c094c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3027ce5f51b4cf0997c4171b6a9f9ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3027ce5f51b4cf0997c4171b6a9f9ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3027ce5f51b4cf0997c4171b6a9f9ef.jpg", "file_size": 18697, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3027ce5f51b4cf0997c4171b6a9f9ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3027ce5f51b4cf0997c4171b6a9f9ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3027ce5f51b4cf0997c4171b6a9f9ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3027ce5f51b4cf0997c4171b6a9f9ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3027ce5f51b4cf0997c4171b6a9f9ef.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XhEIusy80SX9hK_JP_oVESSXQRY=", "createTime": "2024-08-15 15:03:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.007651+00 2025-12-09 10:15:44.007657+00 18099 0009-5FWE#L SPMX-20240815313326 \N \N \N 1 \N [{"file_id": "e81bb07b-5784-4e4f-83a9-de03028d1fa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46b03f40bd464eed909b5f33742dada9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46b03f40bd464eed909b5f33742dada9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46b03f40bd464eed909b5f33742dada9.jpg", "file_size": 19028, "is_delete": false, "file_type": 1, "original_file_name": "0009-5FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b03f40bd464eed909b5f33742dada9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b03f40bd464eed909b5f33742dada9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b03f40bd464eed909b5f33742dada9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46b03f40bd464eed909b5f33742dada9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46b03f40bd464eed909b5f33742dada9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZiuA806fly5ZqPyrE3wOoeeOllA=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.010545+00 2025-12-09 10:15:44.010552+00 18100 HXF-0008-B2#1号色 SPMX-20240815313328 \N \N \N 1 \N [{"file_id": "a17dabfd-fda0-479f-ba54-a98b9cc05374", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a70b3dc88924c7daee4c1053d3152fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a70b3dc88924c7daee4c1053d3152fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a70b3dc88924c7daee4c1053d3152fc.jpg", "file_size": 39888, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B2#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a70b3dc88924c7daee4c1053d3152fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a70b3dc88924c7daee4c1053d3152fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a70b3dc88924c7daee4c1053d3152fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a70b3dc88924c7daee4c1053d3152fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a70b3dc88924c7daee4c1053d3152fc.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YlyytGk0sGRJeg2Bty97vUmSUks=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.013483+00 2025-12-09 10:15:44.013489+00 18101 LZ1380#童装上身3号色 SPMX-20240815313325 \N \N \N 1 \N [{"file_id": "525d6b32-0736-4666-a6bf-6024292d58ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c07df1c04ecf490da2b3657e7c311a45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c07df1c04ecf490da2b3657e7c311a45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c07df1c04ecf490da2b3657e7c311a45.jpg", "file_size": 21158, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07df1c04ecf490da2b3657e7c311a45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07df1c04ecf490da2b3657e7c311a45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c07df1c04ecf490da2b3657e7c311a45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c07df1c04ecf490da2b3657e7c311a45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c07df1c04ecf490da2b3657e7c311a45.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTlccolqADbzCL0L26IzEkyDoGs=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.016419+00 2025-12-09 10:15:44.016425+00 18102 861-1FWF#罗马 SPMX-20240815313327 \N \N \N 1 \N [{"file_id": "7d8a9a0f-c293-47f0-b036-a3f242a6d88a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d092ec764d004ddbb6bc512141a5249d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d092ec764d004ddbb6bc512141a5249d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d092ec764d004ddbb6bc512141a5249d.jpg", "file_size": 25343, "is_delete": false, "file_type": 1, "original_file_name": "861-1FWF#罗马.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092ec764d004ddbb6bc512141a5249d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092ec764d004ddbb6bc512141a5249d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d092ec764d004ddbb6bc512141a5249d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d092ec764d004ddbb6bc512141a5249d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d092ec764d004ddbb6bc512141a5249d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPOQzwfZeFpqJrGbW5NlwCiDsZA=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.019384+00 2025-12-09 10:15:44.019391+00 18103 CCHD212#黄色M SPMX-20240815313331 \N \N \N 1 \N [{"file_id": "daca7458-0bb8-4b13-9a27-5b4c53b43f79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8310d8e8c0374511b07d2f58ca6b9542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8310d8e8c0374511b07d2f58ca6b9542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8310d8e8c0374511b07d2f58ca6b9542.jpg", "file_size": 19078, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8310d8e8c0374511b07d2f58ca6b9542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8310d8e8c0374511b07d2f58ca6b9542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8310d8e8c0374511b07d2f58ca6b9542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8310d8e8c0374511b07d2f58ca6b9542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8310d8e8c0374511b07d2f58ca6b9542.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G2Kq897-QTMNEOFnbosdSHsCG0g=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.022375+00 2025-12-09 10:15:44.022382+00 18104 1231-32FWF#小童袖领匹布 SPMX-20240815313334 \N \N \N 1 \N [{"file_id": "f04d6b8f-8ae1-4c23-a6c2-db0bf7d438d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71580d869b9c43ffba27364734319561.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71580d869b9c43ffba27364734319561.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71580d869b9c43ffba27364734319561.jpg", "file_size": 14517, "is_delete": false, "file_type": 1, "original_file_name": "1231-32FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71580d869b9c43ffba27364734319561.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71580d869b9c43ffba27364734319561.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71580d869b9c43ffba27364734319561.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71580d869b9c43ffba27364734319561.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71580d869b9c43ffba27364734319561.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DrVfkgDQg6cUOzyHvg0qSmLrh4o=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.025254+00 2025-12-09 10:15:44.02526+00 18105 FX0003-40#RC23 SPMX-20240815313333 \N \N \N 1 \N [{"file_id": "f4d62868-f13c-4e9e-a31a-97b43b7567e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "763002e5d2434c0786025bda39b29575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "763002e5d2434c0786025bda39b29575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "763002e5d2434c0786025bda39b29575.jpg", "file_size": 24606, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-40#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763002e5d2434c0786025bda39b29575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763002e5d2434c0786025bda39b29575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/763002e5d2434c0786025bda39b29575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/763002e5d2434c0786025bda39b29575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/763002e5d2434c0786025bda39b29575.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3eo7CMpZiQZmdZA3tEhoy1TRHM=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.028291+00 2025-12-09 10:15:44.028297+00 18106 2321-1#格子叶子XL码 SPMX-20240815313335 \N \N \N 1 \N [{"file_id": "77bd4f06-ec00-488e-8477-18eea30a1a32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbdf877bfea84c099aba90b0ba5e8286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbdf877bfea84c099aba90b0ba5e8286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbdf877bfea84c099aba90b0ba5e8286.jpg", "file_size": 17710, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#格子叶子XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdf877bfea84c099aba90b0ba5e8286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdf877bfea84c099aba90b0ba5e8286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbdf877bfea84c099aba90b0ba5e8286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbdf877bfea84c099aba90b0ba5e8286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbdf877bfea84c099aba90b0ba5e8286.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCMBKMZcaFUSiFimi7ra2ljAI3c=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.031199+00 2025-12-09 10:15:44.031205+00 18107 JTSS8676#4 SPMX-20240815313330 \N \N \N 1 \N [{"file_id": "628ab436-1c75-401e-90d6-3075f7feee8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d489be56a7f049f5b4a852da36b6296e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d489be56a7f049f5b4a852da36b6296e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d489be56a7f049f5b4a852da36b6296e.jpg", "file_size": 9715, "is_delete": false, "file_type": 1, "original_file_name": "JTSS8676#4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d489be56a7f049f5b4a852da36b6296e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d489be56a7f049f5b4a852da36b6296e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d489be56a7f049f5b4a852da36b6296e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d489be56a7f049f5b4a852da36b6296e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d489be56a7f049f5b4a852da36b6296e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XXdo78lLX6x4Dxi59c4kzETR10g=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.0344+00 2025-12-09 10:15:44.034405+00 18108 DL3263#短款前后幅原版2XL SPMX-20240815313329 \N \N \N 1 \N [{"file_id": "6913b022-39ec-46ab-bf24-c01d9a8547c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b51632187854c0a8624b003e86334c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b51632187854c0a8624b003e86334c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b51632187854c0a8624b003e86334c6.jpg", "file_size": 20442, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅原版2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51632187854c0a8624b003e86334c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51632187854c0a8624b003e86334c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51632187854c0a8624b003e86334c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b51632187854c0a8624b003e86334c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b51632187854c0a8624b003e86334c6.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EU4lXidOv8yDt-PotuWIh0W93I8=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.037632+00 2025-12-09 10:15:44.037638+00 18109 LZ1380#童装上身4号色 SPMX-20240815313336 \N \N \N 1 \N [{"file_id": "a56ab0de-b397-4a7c-85ec-1750732059a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ca96d11584a4cd9812fa2355a6ab24d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ca96d11584a4cd9812fa2355a6ab24d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ca96d11584a4cd9812fa2355a6ab24d.jpg", "file_size": 21522, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca96d11584a4cd9812fa2355a6ab24d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca96d11584a4cd9812fa2355a6ab24d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ca96d11584a4cd9812fa2355a6ab24d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ca96d11584a4cd9812fa2355a6ab24d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ca96d11584a4cd9812fa2355a6ab24d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JsJDh18Ic_GEmwb0EVKoiD0y2tw=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.040795+00 2025-12-09 10:15:44.040801+00 18110 LJH1912#小花绿色 SPMX-20240815313332 \N \N \N 1 \N [{"file_id": "65cb8ba0-21dd-4154-b85e-7df733b545e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9011374509d249d19fcbcef6d359e94f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9011374509d249d19fcbcef6d359e94f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9011374509d249d19fcbcef6d359e94f.jpg", "file_size": 64191, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#小花绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9011374509d249d19fcbcef6d359e94f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9011374509d249d19fcbcef6d359e94f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9011374509d249d19fcbcef6d359e94f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9011374509d249d19fcbcef6d359e94f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9011374509d249d19fcbcef6d359e94f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgAQmPlp9vSsc2CuGKfvLfrYjuA=", "createTime": "2024-08-15 15:03:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.044141+00 2025-12-09 10:15:44.044147+00 18111 8613FWF#M-S SPMX-20240815313338 \N \N \N 1 \N [{"file_id": "c8a2cb65-cdef-4703-b263-54d7bb9669a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb4c68fc2fc24c419971cbea3aa1ac50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb4c68fc2fc24c419971cbea3aa1ac50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb4c68fc2fc24c419971cbea3aa1ac50.jpg", "file_size": 16053, "is_delete": false, "file_type": 1, "original_file_name": "8613FWF#M-S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4c68fc2fc24c419971cbea3aa1ac50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4c68fc2fc24c419971cbea3aa1ac50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb4c68fc2fc24c419971cbea3aa1ac50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb4c68fc2fc24c419971cbea3aa1ac50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb4c68fc2fc24c419971cbea3aa1ac50.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9T6hpk4YcgjJXLA83dMOMS_R1HM=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.047586+00 2025-12-09 10:15:44.047591+00 18112 HXF-0008-B2#2号色 SPMX-20240815313340 \N \N \N 1 \N [{"file_id": "697ef9cf-cdc4-4116-bb72-63c2de436f6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12d68045df114fddae13cc9b657336c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12d68045df114fddae13cc9b657336c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12d68045df114fddae13cc9b657336c5.jpg", "file_size": 41402, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B2#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d68045df114fddae13cc9b657336c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d68045df114fddae13cc9b657336c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d68045df114fddae13cc9b657336c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12d68045df114fddae13cc9b657336c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12d68045df114fddae13cc9b657336c5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJezHJnRKiR8tH2AyLP1cGDf74I=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.050921+00 2025-12-09 10:15:44.050928+00 18113 1231-33FWF#中童12码+10码 SPMX-20240815313346 \N \N \N 1 \N [{"file_id": "297816eb-cef1-4c8a-a586-27cb21978eeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "551f150184df410b9f0a51bd3c66fe6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "551f150184df410b9f0a51bd3c66fe6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "551f150184df410b9f0a51bd3c66fe6a.jpg", "file_size": 18537, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551f150184df410b9f0a51bd3c66fe6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551f150184df410b9f0a51bd3c66fe6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/551f150184df410b9f0a51bd3c66fe6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/551f150184df410b9f0a51bd3c66fe6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/551f150184df410b9f0a51bd3c66fe6a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6LICOR_NZWdF9O2QQrQBPzKjwn0=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.054284+00 2025-12-09 10:15:44.05429+00 18114 FX0003-41#RC23 SPMX-20240815313341 \N \N \N 1 \N [{"file_id": "9feea5bc-21db-4c0c-ac7e-f515cbf0261f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaabdafbe8ed4d5e9f8335507fac2483.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaabdafbe8ed4d5e9f8335507fac2483.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaabdafbe8ed4d5e9f8335507fac2483.jpg", "file_size": 19776, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-41#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdafbe8ed4d5e9f8335507fac2483.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdafbe8ed4d5e9f8335507fac2483.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaabdafbe8ed4d5e9f8335507fac2483.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaabdafbe8ed4d5e9f8335507fac2483.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaabdafbe8ed4d5e9f8335507fac2483.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h98aiDEPEtgYQLz0n_Mlrgf9eaM=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.057493+00 2025-12-09 10:15:44.057498+00 18115 DL3263#短款前后幅原版L SPMX-20240815313344 \N \N \N 1 \N [{"file_id": "570221ee-6b69-4e03-96f6-9c599087c52f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12c36a58854a43f79c2537544885f988.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12c36a58854a43f79c2537544885f988.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12c36a58854a43f79c2537544885f988.jpg", "file_size": 21049, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅原版L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c36a58854a43f79c2537544885f988.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c36a58854a43f79c2537544885f988.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c36a58854a43f79c2537544885f988.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12c36a58854a43f79c2537544885f988.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12c36a58854a43f79c2537544885f988.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kovpt7tqtNDJsRvMhFG9YbOp1JY=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.060531+00 2025-12-09 10:15:44.060537+00 18116 CCHD212#黄色S SPMX-20240815313343 \N \N \N 1 \N [{"file_id": "9e006ee9-d71a-4988-ac29-ff458f0e57ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b56678c14d54a0e9f5146a2e4069d84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b56678c14d54a0e9f5146a2e4069d84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b56678c14d54a0e9f5146a2e4069d84.jpg", "file_size": 19084, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黄色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b56678c14d54a0e9f5146a2e4069d84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b56678c14d54a0e9f5146a2e4069d84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b56678c14d54a0e9f5146a2e4069d84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b56678c14d54a0e9f5146a2e4069d84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b56678c14d54a0e9f5146a2e4069d84.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sk2rskMmFsP2T3pBiwlI5Myp1LA=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.06357+00 2025-12-09 10:15:44.063576+00 18117 0009-5FWE#M SPMX-20240815313337 \N \N \N 1 \N [{"file_id": "22b1cbe4-ecdd-4f68-90ac-8790c24a6af5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b896444357714c4d9db40aa31ae353d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b896444357714c4d9db40aa31ae353d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b896444357714c4d9db40aa31ae353d3.jpg", "file_size": 18979, "is_delete": false, "file_type": 1, "original_file_name": "0009-5FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b896444357714c4d9db40aa31ae353d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b896444357714c4d9db40aa31ae353d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b896444357714c4d9db40aa31ae353d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b896444357714c4d9db40aa31ae353d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b896444357714c4d9db40aa31ae353d3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CWixmGiVA9wmO5fhIAjjPJOmWhg=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.066726+00 2025-12-09 10:15:44.066731+00 18118 JTSS867FW#VS-D3 SPMX-20240815313339 \N \N \N 1 \N [{"file_id": "662ea9d3-b137-41dd-a259-2bba5bd1ab0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d80b1751250d4cea91c9106003cb1581.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d80b1751250d4cea91c9106003cb1581.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d80b1751250d4cea91c9106003cb1581.jpg", "file_size": 9439, "is_delete": false, "file_type": 1, "original_file_name": "JTSS867FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b1751250d4cea91c9106003cb1581.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b1751250d4cea91c9106003cb1581.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80b1751250d4cea91c9106003cb1581.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d80b1751250d4cea91c9106003cb1581.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d80b1751250d4cea91c9106003cb1581.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MN2inCchnL2mRkHzZYcPMIpckKg=", "createTime": "2024-08-15 15:03:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.069665+00 2025-12-09 10:15:44.069671+00 18119 LJH1912#红色 SPMX-20240815313342 \N \N \N 1 \N [{"file_id": "e578b4c2-8e8f-4f49-affe-53d8ca8e4ea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "253388d750dd476286b0b4adb9ce697f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "253388d750dd476286b0b4adb9ce697f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "253388d750dd476286b0b4adb9ce697f.jpg", "file_size": 58203, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253388d750dd476286b0b4adb9ce697f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253388d750dd476286b0b4adb9ce697f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/253388d750dd476286b0b4adb9ce697f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/253388d750dd476286b0b4adb9ce697f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/253388d750dd476286b0b4adb9ce697f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUrkx2Wz_DUhg6gLP55v1wakrNU=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.072529+00 2025-12-09 10:15:44.072535+00 18120 2321-1#格子叶子领子匹布 SPMX-20240815313345 \N \N \N 1 \N [{"file_id": "a59b5dd5-f7e2-4430-b939-81be32d88ff5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e8a8c73ffd4869a026b11ec5c12e2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e8a8c73ffd4869a026b11ec5c12e2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e8a8c73ffd4869a026b11ec5c12e2a.jpg", "file_size": 23178, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#格子叶子领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e8a8c73ffd4869a026b11ec5c12e2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e8a8c73ffd4869a026b11ec5c12e2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e8a8c73ffd4869a026b11ec5c12e2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e8a8c73ffd4869a026b11ec5c12e2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e8a8c73ffd4869a026b11ec5c12e2a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQL2PMANFmQMrX2B0rdlGHuVVbg=", "createTime": "2024-08-15 15:03:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.075494+00 2025-12-09 10:15:44.0755+00 18121 0009-6FWE#VS-D3 SPMX-20240815313347 \N \N \N 1 \N [{"file_id": "49b0db73-3d56-4c87-a6d3-7ae92e651801", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55556c35bd84445f8346349bfaab1372.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55556c35bd84445f8346349bfaab1372.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55556c35bd84445f8346349bfaab1372.jpg", "file_size": 22895, "is_delete": false, "file_type": 1, "original_file_name": "0009-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55556c35bd84445f8346349bfaab1372.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55556c35bd84445f8346349bfaab1372.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55556c35bd84445f8346349bfaab1372.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55556c35bd84445f8346349bfaab1372.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55556c35bd84445f8346349bfaab1372.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBqmVZIbBBof0_uZ2K96YpWazhE=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.078456+00 2025-12-09 10:15:44.078462+00 18122 JTSS868FW#VS-D3 SPMX-20240815313356 \N \N \N 1 \N [{"file_id": "36d5743e-168f-474b-9b17-bebb1eed513f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7adeaf65a7c435eb184a097f6d5c7d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7adeaf65a7c435eb184a097f6d5c7d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7adeaf65a7c435eb184a097f6d5c7d9.jpg", "file_size": 12574, "is_delete": false, "file_type": 1, "original_file_name": "JTSS868FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7adeaf65a7c435eb184a097f6d5c7d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7adeaf65a7c435eb184a097f6d5c7d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7adeaf65a7c435eb184a097f6d5c7d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7adeaf65a7c435eb184a097f6d5c7d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7adeaf65a7c435eb184a097f6d5c7d9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0fAdHjyePVHHU7LHsEUW-bZENA=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.081376+00 2025-12-09 10:15:44.081382+00 18123 2321-1#正身手绘花橙色 SPMX-20240815313352 \N \N \N 1 \N [{"file_id": "6ce551f0-ef93-4387-b229-1508ca074127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c13e3024e75418ba2964f1c101c4250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c13e3024e75418ba2964f1c101c4250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c13e3024e75418ba2964f1c101c4250.jpg", "file_size": 13000, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#正身手绘花橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c13e3024e75418ba2964f1c101c4250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c13e3024e75418ba2964f1c101c4250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c13e3024e75418ba2964f1c101c4250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c13e3024e75418ba2964f1c101c4250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c13e3024e75418ba2964f1c101c4250.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8SgNeTHkOr7Nf8JMul-pScP2vo=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.084321+00 2025-12-09 10:15:44.084328+00 18124 CCHD212#黄色XL SPMX-20240815313354 \N \N \N 1 \N [{"file_id": "4318a00b-4325-480f-a0ed-f06e6a48a2e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3218636d5ebd49dcb26dd9a11a52fe9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3218636d5ebd49dcb26dd9a11a52fe9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3218636d5ebd49dcb26dd9a11a52fe9e.jpg", "file_size": 16044, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3218636d5ebd49dcb26dd9a11a52fe9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3218636d5ebd49dcb26dd9a11a52fe9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3218636d5ebd49dcb26dd9a11a52fe9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3218636d5ebd49dcb26dd9a11a52fe9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3218636d5ebd49dcb26dd9a11a52fe9e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9aAFZ4ifPbgBCF4th9Bkljq_7qM=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.087159+00 2025-12-09 10:15:44.087165+00 18125 DL3263#短款前后幅原版XL SPMX-20240815313350 \N \N \N 1 \N [{"file_id": "e23bac98-9268-46dc-8bc1-8af50c235367", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16ef16a7b5194f19b83d5036b7fd3847.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16ef16a7b5194f19b83d5036b7fd3847.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16ef16a7b5194f19b83d5036b7fd3847.jpg", "file_size": 20419, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅原版XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ef16a7b5194f19b83d5036b7fd3847.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ef16a7b5194f19b83d5036b7fd3847.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16ef16a7b5194f19b83d5036b7fd3847.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16ef16a7b5194f19b83d5036b7fd3847.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16ef16a7b5194f19b83d5036b7fd3847.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTS5Zht3aAsXYMGiffCAylmHl-I=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.090215+00 2025-12-09 10:15:44.090221+00 18126 HXF-0008-B2#3号色 SPMX-20240815313349 \N \N \N 1 \N [{"file_id": "d36bbfb7-067f-49e8-adec-f5ba1972c05c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71a7c4d6607d41189c47ecd1bdd10693.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71a7c4d6607d41189c47ecd1bdd10693.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71a7c4d6607d41189c47ecd1bdd10693.jpg", "file_size": 37947, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B2#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a7c4d6607d41189c47ecd1bdd10693.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a7c4d6607d41189c47ecd1bdd10693.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71a7c4d6607d41189c47ecd1bdd10693.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71a7c4d6607d41189c47ecd1bdd10693.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71a7c4d6607d41189c47ecd1bdd10693.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_HAsWyQsd5K_hI4IYsHgVeXw3Y=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.093224+00 2025-12-09 10:15:44.093231+00 18127 1231-33FWF#中童14码 SPMX-20240815313353 \N \N \N 1 \N [{"file_id": "800b34bd-d371-45a2-b781-932bae79e6d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8800866bb2224519b7239152b41ca068.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8800866bb2224519b7239152b41ca068.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8800866bb2224519b7239152b41ca068.jpg", "file_size": 16913, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800866bb2224519b7239152b41ca068.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800866bb2224519b7239152b41ca068.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800866bb2224519b7239152b41ca068.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8800866bb2224519b7239152b41ca068.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8800866bb2224519b7239152b41ca068.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dOtxLrknJfGRdlqm8L7EY_qCHjQ=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.096185+00 2025-12-09 10:15:44.096191+00 18128 LJH1912#绿色 SPMX-20240815313355 \N \N \N 1 \N [{"file_id": "3b0df547-c98d-4990-adc0-c58af5383aa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad9d553865bf401abfd8c54c038ec895.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad9d553865bf401abfd8c54c038ec895.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad9d553865bf401abfd8c54c038ec895.jpg", "file_size": 53163, "is_delete": false, "file_type": 1, "original_file_name": "LJH1912#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9d553865bf401abfd8c54c038ec895.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9d553865bf401abfd8c54c038ec895.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9d553865bf401abfd8c54c038ec895.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad9d553865bf401abfd8c54c038ec895.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad9d553865bf401abfd8c54c038ec895.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXjSoLwo303WUUZ7HhJpu_Gmiv0=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.099465+00 2025-12-09 10:15:44.099471+00 18129 8613FWF#XL-L SPMX-20240815313351 \N \N \N 1 \N [{"file_id": "2af776e1-5ad3-4429-b6eb-cfc7339884c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74018ce01dd345dd8c176db859992c3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74018ce01dd345dd8c176db859992c3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74018ce01dd345dd8c176db859992c3c.jpg", "file_size": 15077, "is_delete": false, "file_type": 1, "original_file_name": "8613FWF#XL-L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74018ce01dd345dd8c176db859992c3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74018ce01dd345dd8c176db859992c3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74018ce01dd345dd8c176db859992c3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74018ce01dd345dd8c176db859992c3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74018ce01dd345dd8c176db859992c3c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9jfGTqvU1WADpuZOC7g4XSBpeA=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.102605+00 2025-12-09 10:15:44.102611+00 18130 LZ1380#童装上身5号色 SPMX-20240815313348 \N \N \N 1 \N [{"file_id": "12b25c82-f97d-4643-9ff2-bbc0537531cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1ccc189792f43f29b70edfaa284d185.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1ccc189792f43f29b70edfaa284d185.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1ccc189792f43f29b70edfaa284d185.jpg", "file_size": 21482, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ccc189792f43f29b70edfaa284d185.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ccc189792f43f29b70edfaa284d185.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ccc189792f43f29b70edfaa284d185.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1ccc189792f43f29b70edfaa284d185.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1ccc189792f43f29b70edfaa284d185.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8PL2rtbLn9pT6hhhVjVcLbNQudY=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.105529+00 2025-12-09 10:15:44.105536+00 18131 FX0003-41#粉色RC23 SPMX-20240815313357 \N \N \N 1 \N [{"file_id": "57f10c87-e81c-4213-a7ff-a697a9def81b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg", "file_size": 18266, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-41#粉色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9dcd74a1a4f4a2e9d849ef9fc0061af.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0d8_e44I37lWIN42adLUVHF1lE=", "createTime": "2024-08-15 15:04:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.108518+00 2025-12-09 10:15:44.108529+00 18132 CCHD212#黄色净色 SPMX-20240815313358 \N \N \N 1 \N [{"file_id": "3ce79a84-ed79-4657-9854-bae6feb18e60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5184687fb504b8481328b290eee01d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5184687fb504b8481328b290eee01d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5184687fb504b8481328b290eee01d4.jpg", "file_size": 5111, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黄色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5184687fb504b8481328b290eee01d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5184687fb504b8481328b290eee01d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5184687fb504b8481328b290eee01d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5184687fb504b8481328b290eee01d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5184687fb504b8481328b290eee01d4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tWWXWeHJ8qyNIdAeEr4Et1wuGv8=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.111605+00 2025-12-09 10:15:44.111611+00 18133 HXF-0008-B2#4号色 SPMX-20240815313360 \N \N \N 1 \N [{"file_id": "83ea52ee-cb3d-48a7-9d5f-c69425fa8c14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e20a92f78cf44059e331a51611234e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e20a92f78cf44059e331a51611234e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e20a92f78cf44059e331a51611234e7.jpg", "file_size": 42523, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B2#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20a92f78cf44059e331a51611234e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20a92f78cf44059e331a51611234e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20a92f78cf44059e331a51611234e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e20a92f78cf44059e331a51611234e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e20a92f78cf44059e331a51611234e7.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MFKSTWPN1cEahqtpzapKZQDF4ZM=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.114761+00 2025-12-09 10:15:44.114769+00 18134 DL3263#短款前后幅墨绿2XL SPMX-20240815313359 \N \N \N 1 \N [{"file_id": "0f09c47a-403a-423f-959d-c5274118cbe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a0b09f8d5084267aa73cfd34b843ebf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a0b09f8d5084267aa73cfd34b843ebf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a0b09f8d5084267aa73cfd34b843ebf.jpg", "file_size": 20742, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅墨绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0b09f8d5084267aa73cfd34b843ebf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0b09f8d5084267aa73cfd34b843ebf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0b09f8d5084267aa73cfd34b843ebf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a0b09f8d5084267aa73cfd34b843ebf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a0b09f8d5084267aa73cfd34b843ebf.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VE-lGSm9xCFMNzTkxViXOu9v9KE=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.117843+00 2025-12-09 10:15:44.117848+00 18135 LJH1917#紫色 SPMX-20240815313361 \N \N \N 1 \N [{"file_id": "86e31f00-c052-4a11-b6e9-95295eb98aee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5219caede2ce4e87b19d46418b4f008f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5219caede2ce4e87b19d46418b4f008f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5219caede2ce4e87b19d46418b4f008f.jpg", "file_size": 52792, "is_delete": false, "file_type": 1, "original_file_name": "LJH1917#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5219caede2ce4e87b19d46418b4f008f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5219caede2ce4e87b19d46418b4f008f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5219caede2ce4e87b19d46418b4f008f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5219caede2ce4e87b19d46418b4f008f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5219caede2ce4e87b19d46418b4f008f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vplFnPwMrXgM1cib9bEmPzUZ-lo=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.12092+00 2025-12-09 10:15:44.120927+00 18136 1231-33FWF#中童袖领匹布 SPMX-20240815313367 \N \N \N 1 \N [{"file_id": "347ce6e4-23be-40a9-a6de-9c64e0d1b5ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c61e04a0238348c3b5a31e5a47a2abd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c61e04a0238348c3b5a31e5a47a2abd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c61e04a0238348c3b5a31e5a47a2abd1.jpg", "file_size": 14823, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c61e04a0238348c3b5a31e5a47a2abd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c61e04a0238348c3b5a31e5a47a2abd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c61e04a0238348c3b5a31e5a47a2abd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c61e04a0238348c3b5a31e5a47a2abd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c61e04a0238348c3b5a31e5a47a2abd1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBngqrTgkADevxayjtyDmPJXliQ=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.12386+00 2025-12-09 10:15:44.123866+00 18137 JTSS869FW#VS-D3 SPMX-20240815313368 \N \N \N 1 \N [{"file_id": "ea5a0c71-1d6c-451c-bb7d-9ba83f0a9a3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f466cdd71f4d86a9f2234455fb9fba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f466cdd71f4d86a9f2234455fb9fba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f466cdd71f4d86a9f2234455fb9fba.jpg", "file_size": 17113, "is_delete": false, "file_type": 1, "original_file_name": "JTSS869FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f466cdd71f4d86a9f2234455fb9fba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f466cdd71f4d86a9f2234455fb9fba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f466cdd71f4d86a9f2234455fb9fba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f466cdd71f4d86a9f2234455fb9fba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f466cdd71f4d86a9f2234455fb9fba.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sexemHRvnLob2ee3fud9VtgQcT0=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.126886+00 2025-12-09 10:15:44.126893+00 18138 2321-1#正身手绘花绿色 SPMX-20240815313363 \N \N \N 1 \N [{"file_id": "898a37c3-7c88-4248-b688-cf449338d1bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40aeb8b91b7d46cda4d3e2cca04598b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40aeb8b91b7d46cda4d3e2cca04598b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40aeb8b91b7d46cda4d3e2cca04598b4.jpg", "file_size": 13074, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#正身手绘花绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40aeb8b91b7d46cda4d3e2cca04598b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40aeb8b91b7d46cda4d3e2cca04598b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40aeb8b91b7d46cda4d3e2cca04598b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40aeb8b91b7d46cda4d3e2cca04598b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40aeb8b91b7d46cda4d3e2cca04598b4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1BU_rdq-T-TU_kw56JWKu9Cq7w=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.129861+00 2025-12-09 10:15:44.129867+00 18139 0009-7FWE#VS-D3 SPMX-20240815313365 \N \N \N 1 \N [{"file_id": "9bc36052-a919-40b0-b65f-deac60c31505", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56f0169ee51141959ed4bfde1ee36ff1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56f0169ee51141959ed4bfde1ee36ff1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56f0169ee51141959ed4bfde1ee36ff1.jpg", "file_size": 17449, "is_delete": false, "file_type": 1, "original_file_name": "0009-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0169ee51141959ed4bfde1ee36ff1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0169ee51141959ed4bfde1ee36ff1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f0169ee51141959ed4bfde1ee36ff1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56f0169ee51141959ed4bfde1ee36ff1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56f0169ee51141959ed4bfde1ee36ff1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LcwWTu7gsw_OeqSIRCPdKc740QI=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.132813+00 2025-12-09 10:15:44.13282+00 18140 CCHD212#黑色L SPMX-20240815313369 \N \N \N 1 \N [{"file_id": "77983500-188c-48c7-990b-93f7d1ac1106", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "133c63965ae148e08758c263bc5324c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "133c63965ae148e08758c263bc5324c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "133c63965ae148e08758c263bc5324c8.jpg", "file_size": 21075, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133c63965ae148e08758c263bc5324c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133c63965ae148e08758c263bc5324c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133c63965ae148e08758c263bc5324c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/133c63965ae148e08758c263bc5324c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/133c63965ae148e08758c263bc5324c8.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCLiiLkP9Suw7Mex2CFHwk1h-hk=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.135777+00 2025-12-09 10:15:44.135784+00 18141 8614#正身2XL SPMX-20240815313366 \N \N \N 1 \N [{"file_id": "b1b869ed-51d9-41ea-ba62-076f59481f3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f59b0c3728ab4d7fbe025fa1b2e6a235.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f59b0c3728ab4d7fbe025fa1b2e6a235.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f59b0c3728ab4d7fbe025fa1b2e6a235.jpg", "file_size": 15764, "is_delete": false, "file_type": 1, "original_file_name": "8614#正身2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59b0c3728ab4d7fbe025fa1b2e6a235.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59b0c3728ab4d7fbe025fa1b2e6a235.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59b0c3728ab4d7fbe025fa1b2e6a235.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f59b0c3728ab4d7fbe025fa1b2e6a235.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f59b0c3728ab4d7fbe025fa1b2e6a235.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IM4MIi1ckN5IYVbY-L1ePMpnRXg=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.13876+00 2025-12-09 10:15:44.138767+00 18142 FX0003-41#黄色RC23 SPMX-20240815313364 \N \N \N 1 \N [{"file_id": "000db422-f6c9-415a-a61a-26810066ac12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12d8a7802911445ab932266102025a9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12d8a7802911445ab932266102025a9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12d8a7802911445ab932266102025a9a.jpg", "file_size": 18607, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-41#黄色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d8a7802911445ab932266102025a9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d8a7802911445ab932266102025a9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12d8a7802911445ab932266102025a9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12d8a7802911445ab932266102025a9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12d8a7802911445ab932266102025a9a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YhZCbqtWBAo3qTgWKk_Xv0u4w8w=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.141709+00 2025-12-09 10:15:44.141715+00 18143 LZ1380#童装下身1号色 SPMX-20240815313362 \N \N \N 1 \N [{"file_id": "2af6393c-a191-49e7-8b40-ad1b0031e299", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b6af48fe994427ba45346d60d0c442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b6af48fe994427ba45346d60d0c442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b6af48fe994427ba45346d60d0c442.jpg", "file_size": 25242, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b6af48fe994427ba45346d60d0c442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b6af48fe994427ba45346d60d0c442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b6af48fe994427ba45346d60d0c442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b6af48fe994427ba45346d60d0c442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b6af48fe994427ba45346d60d0c442.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wiZCaxgSf4bGOYTBn0sOoEZ0094=", "createTime": "2024-08-15 15:04:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.144606+00 2025-12-09 10:15:44.144611+00 18144 DL3263#短款前后幅墨绿L SPMX-20240815313370 \N \N \N 1 \N [{"file_id": "5fd8384b-32b6-47ac-b0f5-5185604849dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg", "file_size": 20736, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d0aaf4675af4e0bb0f929c6e3b9c2f9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymrZq7S0XKYikjW-9q_yl2TIbOw=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.14751+00 2025-12-09 10:15:44.147516+00 18145 0009-8FWE#VS-D3 SPMX-20240815313372 \N \N \N 1 \N [{"file_id": "77d86aa3-38f2-4f23-a7b5-c2b02dc207fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6a918d54728465ea3e6e8cfe2a410b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6a918d54728465ea3e6e8cfe2a410b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6a918d54728465ea3e6e8cfe2a410b8.jpg", "file_size": 17028, "is_delete": false, "file_type": 1, "original_file_name": "0009-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a918d54728465ea3e6e8cfe2a410b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a918d54728465ea3e6e8cfe2a410b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a918d54728465ea3e6e8cfe2a410b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6a918d54728465ea3e6e8cfe2a410b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6a918d54728465ea3e6e8cfe2a410b8.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Goeq0NGMZjgfOsXOEhye0AMeYDE=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.150566+00 2025-12-09 10:15:44.150572+00 18146 HXF-0008-B2#5号色 SPMX-20240815313371 \N \N \N 1 \N [{"file_id": "212b2ab3-2671-4a8c-bb70-34f3f4c7f4f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afd56cc6bb2d4dcdbeac1c806f7735ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afd56cc6bb2d4dcdbeac1c806f7735ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afd56cc6bb2d4dcdbeac1c806f7735ed.jpg", "file_size": 39465, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B2#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd56cc6bb2d4dcdbeac1c806f7735ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd56cc6bb2d4dcdbeac1c806f7735ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd56cc6bb2d4dcdbeac1c806f7735ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afd56cc6bb2d4dcdbeac1c806f7735ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afd56cc6bb2d4dcdbeac1c806f7735ed.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qaGvWoz8KiOVdeVOzsSZAmbrDCk=", "createTime": "2024-08-15 15:04:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.153596+00 2025-12-09 10:15:44.153603+00 18147 LJH1917#绿色 SPMX-20240815313373 \N \N \N 1 \N [{"file_id": "6a266f90-22ff-4af2-9330-fffbf2f04823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b674fec19e164edf9ce775be75fbba67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b674fec19e164edf9ce775be75fbba67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b674fec19e164edf9ce775be75fbba67.jpg", "file_size": 55026, "is_delete": false, "file_type": 1, "original_file_name": "LJH1917#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b674fec19e164edf9ce775be75fbba67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b674fec19e164edf9ce775be75fbba67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b674fec19e164edf9ce775be75fbba67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b674fec19e164edf9ce775be75fbba67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b674fec19e164edf9ce775be75fbba67.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VqLShzfVa0S2o_PXQPZa11wEziY=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.156578+00 2025-12-09 10:15:44.156584+00 18148 FX0003-42#RC23 SPMX-20240815313387 \N \N \N 1 \N [{"file_id": "4ee0de5b-e8ff-49f3-8596-7cfc798f2c3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3642d1a1239b4dfb82ee031ba0754c2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3642d1a1239b4dfb82ee031ba0754c2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3642d1a1239b4dfb82ee031ba0754c2a.jpg", "file_size": 14512, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-42#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3642d1a1239b4dfb82ee031ba0754c2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3642d1a1239b4dfb82ee031ba0754c2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3642d1a1239b4dfb82ee031ba0754c2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3642d1a1239b4dfb82ee031ba0754c2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3642d1a1239b4dfb82ee031ba0754c2a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3IRwX1B16wphcBVRaebhZAzXSe8=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.159614+00 2025-12-09 10:15:44.159621+00 18149 LZ1380#童装下身2号色 SPMX-20240815313374 \N \N \N 1 \N [{"file_id": "ce2ce352-4c6e-4b81-ac94-59adf8192a1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43d43930480a481384203a9b24e231cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43d43930480a481384203a9b24e231cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43d43930480a481384203a9b24e231cd.jpg", "file_size": 26875, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d43930480a481384203a9b24e231cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d43930480a481384203a9b24e231cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d43930480a481384203a9b24e231cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43d43930480a481384203a9b24e231cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43d43930480a481384203a9b24e231cd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rSjgXBi40xKYcAIpsCvDJSPyaXk=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.162546+00 2025-12-09 10:15:44.162552+00 18150 DL3263#短款前后幅墨绿XL SPMX-20240815313381 \N \N \N 1 \N [{"file_id": "df36e3c7-c966-42fd-8157-7e698ee915a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90f202cdfe4e4b75bb9240013997b6fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90f202cdfe4e4b75bb9240013997b6fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90f202cdfe4e4b75bb9240013997b6fd.jpg", "file_size": 20412, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90f202cdfe4e4b75bb9240013997b6fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90f202cdfe4e4b75bb9240013997b6fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90f202cdfe4e4b75bb9240013997b6fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90f202cdfe4e4b75bb9240013997b6fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90f202cdfe4e4b75bb9240013997b6fd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHChIlBY53A3ZfQT6OGtiY_M1pQ=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.165587+00 2025-12-09 10:15:44.165599+00 18151 FX0003-42#RC23- SPMX-20240815313375 \N \N \N 1 \N [{"file_id": "78721e17-45f7-4925-9765-4f3032d17d6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f34ea0e7f4db4fd0a594fc30ba8b0547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f34ea0e7f4db4fd0a594fc30ba8b0547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f34ea0e7f4db4fd0a594fc30ba8b0547.jpg", "file_size": 16952, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-42#RC23-.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ea0e7f4db4fd0a594fc30ba8b0547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ea0e7f4db4fd0a594fc30ba8b0547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f34ea0e7f4db4fd0a594fc30ba8b0547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f34ea0e7f4db4fd0a594fc30ba8b0547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f34ea0e7f4db4fd0a594fc30ba8b0547.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM1DZIJ9BUE3zPDhfpw4GlKufe4=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.168616+00 2025-12-09 10:15:44.168622+00 18152 CCHD212#黑色M SPMX-20240815313379 \N \N \N 1 \N [{"file_id": "8b5f3727-c697-4c8e-aa10-af9a439d1730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5557413956e74bcd83b3d6356c4b23ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5557413956e74bcd83b3d6356c4b23ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5557413956e74bcd83b3d6356c4b23ca.jpg", "file_size": 21664, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黑色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5557413956e74bcd83b3d6356c4b23ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5557413956e74bcd83b3d6356c4b23ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5557413956e74bcd83b3d6356c4b23ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5557413956e74bcd83b3d6356c4b23ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5557413956e74bcd83b3d6356c4b23ca.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvAhspN3Zi4L894NOtWaggN9660=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.171621+00 2025-12-09 10:15:44.171626+00 18153 LJH1917#黄色 SPMX-20240815313385 \N \N \N 1 \N [{"file_id": "ee148ef6-bcb2-481e-9902-995e53968afc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb941b4ccbf941588af018bb8c67d68a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb941b4ccbf941588af018bb8c67d68a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb941b4ccbf941588af018bb8c67d68a.jpg", "file_size": 54037, "is_delete": false, "file_type": 1, "original_file_name": "LJH1917#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb941b4ccbf941588af018bb8c67d68a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb941b4ccbf941588af018bb8c67d68a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb941b4ccbf941588af018bb8c67d68a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb941b4ccbf941588af018bb8c67d68a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb941b4ccbf941588af018bb8c67d68a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fuYbcD0fm-TSLY_wxaP0VxnTS8s=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.17463+00 2025-12-09 10:15:44.174636+00 18154 2321-1#短袖加大码菱形玫红花领子批布 SPMX-20240815313386 \N \N \N 1 \N [{"file_id": "80e42744-69c5-48c6-b395-9b7f50fbff6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07ce5972d61d4027a79782b1bb38007f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07ce5972d61d4027a79782b1bb38007f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07ce5972d61d4027a79782b1bb38007f.jpg", "file_size": 50601, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#短袖加大码菱形玫红花领子批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ce5972d61d4027a79782b1bb38007f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ce5972d61d4027a79782b1bb38007f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07ce5972d61d4027a79782b1bb38007f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07ce5972d61d4027a79782b1bb38007f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07ce5972d61d4027a79782b1bb38007f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sEwrDFWttpvYtTo3BYCdH55igqo=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.177426+00 2025-12-09 10:15:44.177432+00 18155 LZ1380#童装下身3号色 SPMX-20240815313383 \N \N \N 1 \N [{"file_id": "54b81979-d1bd-49dd-83d0-2bddcd5a3f1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8eaf8cdae68d41b3b1c69c08585d27f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8eaf8cdae68d41b3b1c69c08585d27f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8eaf8cdae68d41b3b1c69c08585d27f2.jpg", "file_size": 22636, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eaf8cdae68d41b3b1c69c08585d27f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eaf8cdae68d41b3b1c69c08585d27f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eaf8cdae68d41b3b1c69c08585d27f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8eaf8cdae68d41b3b1c69c08585d27f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8eaf8cdae68d41b3b1c69c08585d27f2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ymm2UZYoesuCkX_eqWNAozxXA2c=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.180385+00 2025-12-09 10:15:44.180392+00 18156 HXF-0008-B3#1号色 SPMX-20240815313382 \N \N \N 1 \N [{"file_id": "ca79454d-f6f5-4874-9d4d-e64c68e50fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e576df3cea9468086a41ab67039c602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e576df3cea9468086a41ab67039c602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e576df3cea9468086a41ab67039c602.jpg", "file_size": 40513, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B3#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e576df3cea9468086a41ab67039c602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e576df3cea9468086a41ab67039c602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e576df3cea9468086a41ab67039c602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e576df3cea9468086a41ab67039c602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e576df3cea9468086a41ab67039c602.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UlxSpo_fAqXntcIdWSYBU2iv8SE=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.183356+00 2025-12-09 10:15:44.183362+00 18157 8614#正身L SPMX-20240815313377 \N \N \N 1 \N [{"file_id": "6123ff8c-d5dc-4d02-8ce8-b47eacbd364e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2288a5f603e144fd806e11e6a4f7d2b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2288a5f603e144fd806e11e6a4f7d2b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2288a5f603e144fd806e11e6a4f7d2b4.jpg", "file_size": 12824, "is_delete": false, "file_type": 1, "original_file_name": "8614#正身L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2288a5f603e144fd806e11e6a4f7d2b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2288a5f603e144fd806e11e6a4f7d2b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2288a5f603e144fd806e11e6a4f7d2b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2288a5f603e144fd806e11e6a4f7d2b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2288a5f603e144fd806e11e6a4f7d2b4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZitklCuZGCzCSRkbxz81sAxoCM=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.18635+00 2025-12-09 10:15:44.186356+00 18158 JTSS870FW#VS-D3 SPMX-20240815313380 \N \N \N 1 \N [{"file_id": "0d81fabe-af5f-4e9d-9a38-6c77819daa70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba39d8be7f64434596436f155436fc52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba39d8be7f64434596436f155436fc52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba39d8be7f64434596436f155436fc52.jpg", "file_size": 15136, "is_delete": false, "file_type": 1, "original_file_name": "JTSS870FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39d8be7f64434596436f155436fc52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39d8be7f64434596436f155436fc52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba39d8be7f64434596436f155436fc52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba39d8be7f64434596436f155436fc52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba39d8be7f64434596436f155436fc52.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RP4DDe8ZkiCJLgcNln3dtvGk6sc=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.189225+00 2025-12-09 10:15:44.189231+00 18159 001#-红色 SPMX-20240815313384 \N \N \N 1 \N [{"file_id": "365881d1-c623-403e-bce7-717100ea4fe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "218b0549fdc44dba980a9c2a9db41a57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "218b0549fdc44dba980a9c2a9db41a57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "218b0549fdc44dba980a9c2a9db41a57.jpg", "file_size": 44365, "is_delete": false, "file_type": 1, "original_file_name": "001#-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218b0549fdc44dba980a9c2a9db41a57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218b0549fdc44dba980a9c2a9db41a57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218b0549fdc44dba980a9c2a9db41a57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/218b0549fdc44dba980a9c2a9db41a57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/218b0549fdc44dba980a9c2a9db41a57.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlKRP74p384SLyTbq3XnRM4Nz0U=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.192097+00 2025-12-09 10:15:44.192103+00 18160 1231-33FWF#小童6码 SPMX-20240815313378 \N \N \N 1 \N [{"file_id": "c4de3bb6-7896-4337-8dad-e6c601d099be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "736125e1e0b944dcb582d9f375369977.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "736125e1e0b944dcb582d9f375369977.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "736125e1e0b944dcb582d9f375369977.jpg", "file_size": 20938, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736125e1e0b944dcb582d9f375369977.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736125e1e0b944dcb582d9f375369977.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736125e1e0b944dcb582d9f375369977.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/736125e1e0b944dcb582d9f375369977.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/736125e1e0b944dcb582d9f375369977.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HU8GG9BkjA2A-cE_MViRLPbQBvU=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.195113+00 2025-12-09 10:15:44.19512+00 18161 2321-1#短袖加大码菱形玫红花 SPMX-20240815313376 \N \N \N 1 \N [{"file_id": "20666915-f6cd-4920-96fd-458067b5063f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d836daaa1f14aec8f09df152cc6982d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d836daaa1f14aec8f09df152cc6982d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d836daaa1f14aec8f09df152cc6982d.jpg", "file_size": 68774, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#短袖加大码菱形玫红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d836daaa1f14aec8f09df152cc6982d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d836daaa1f14aec8f09df152cc6982d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d836daaa1f14aec8f09df152cc6982d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d836daaa1f14aec8f09df152cc6982d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d836daaa1f14aec8f09df152cc6982d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CC_IKwuqAtZGmnMSlY73I7N1jXY=", "createTime": "2024-08-15 15:04:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.198315+00 2025-12-09 10:15:44.198321+00 18162 HXF-0008-B3#2号色 SPMX-20240815313394 \N \N \N 1 \N [{"file_id": "779d2bb2-07f6-4d92-81cd-48a924d8948d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a83b71cea0574c078995d99304239029.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a83b71cea0574c078995d99304239029.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a83b71cea0574c078995d99304239029.jpg", "file_size": 45030, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B3#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83b71cea0574c078995d99304239029.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83b71cea0574c078995d99304239029.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83b71cea0574c078995d99304239029.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a83b71cea0574c078995d99304239029.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a83b71cea0574c078995d99304239029.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qc4-gXlJBTxiRQTclA86ZRAM8yM=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.201294+00 2025-12-09 10:15:44.2013+00 18163 CCHD212#黑色S SPMX-20240815313390 \N \N \N 1 \N [{"file_id": "2ca75562-8de9-4b67-b06d-d18e92acc122", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe03e969763b468fa84a57f021cad930.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe03e969763b468fa84a57f021cad930.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe03e969763b468fa84a57f021cad930.jpg", "file_size": 21641, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黑色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe03e969763b468fa84a57f021cad930.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe03e969763b468fa84a57f021cad930.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe03e969763b468fa84a57f021cad930.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe03e969763b468fa84a57f021cad930.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe03e969763b468fa84a57f021cad930.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CAvodcHLNEtX2lSzEKTrlavP_U8=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.204211+00 2025-12-09 10:15:44.204218+00 18164 8614#正身M SPMX-20240815313388 \N \N \N 1 \N [{"file_id": "82d3fbcf-432a-4fc7-b56a-2ca5d310c5be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7be41fdacae4ebbaa1e09aa54d1bb35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7be41fdacae4ebbaa1e09aa54d1bb35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7be41fdacae4ebbaa1e09aa54d1bb35.jpg", "file_size": 12784, "is_delete": false, "file_type": 1, "original_file_name": "8614#正身M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7be41fdacae4ebbaa1e09aa54d1bb35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7be41fdacae4ebbaa1e09aa54d1bb35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7be41fdacae4ebbaa1e09aa54d1bb35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7be41fdacae4ebbaa1e09aa54d1bb35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7be41fdacae4ebbaa1e09aa54d1bb35.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sbKDvQ1qT8Ncr9GM_9jmUmrubsw=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.207144+00 2025-12-09 10:15:44.207151+00 18165 JTSS871FW#VS-D3 SPMX-20240815313391 \N \N \N 1 \N [{"file_id": "45cc479b-b3bb-4aae-916c-7a19ce707d40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca83f6f5505c495886befc31ca6080dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca83f6f5505c495886befc31ca6080dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca83f6f5505c495886befc31ca6080dc.jpg", "file_size": 11918, "is_delete": false, "file_type": 1, "original_file_name": "JTSS871FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca83f6f5505c495886befc31ca6080dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca83f6f5505c495886befc31ca6080dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca83f6f5505c495886befc31ca6080dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca83f6f5505c495886befc31ca6080dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca83f6f5505c495886befc31ca6080dc.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hscj5y6eg4W0UB5WJS5E_P1PGak=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.21014+00 2025-12-09 10:15:44.210146+00 18166 1231-33FWF#小童8码+4码 SPMX-20240815313389 \N \N \N 1 \N [{"file_id": "4db8a61c-6965-47be-8f33-38edd091f5dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b968e820cef420eb477bb36678f6eda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b968e820cef420eb477bb36678f6eda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b968e820cef420eb477bb36678f6eda.jpg", "file_size": 20307, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b968e820cef420eb477bb36678f6eda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b968e820cef420eb477bb36678f6eda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b968e820cef420eb477bb36678f6eda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b968e820cef420eb477bb36678f6eda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b968e820cef420eb477bb36678f6eda.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ncdnAvbOxrVaMmBvdjJ2_axKvU0=", "createTime": "2024-08-15 15:04:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.213064+00 2025-12-09 10:15:44.213069+00 18167 LZ1380#童装下身4号色 SPMX-20240815313393 \N \N \N 1 \N [{"file_id": "01fba3cc-2166-4d62-92e2-f8f09c233dba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0edd882c6576461ca59abcefad1d51f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0edd882c6576461ca59abcefad1d51f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0edd882c6576461ca59abcefad1d51f2.jpg", "file_size": 23552, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edd882c6576461ca59abcefad1d51f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edd882c6576461ca59abcefad1d51f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0edd882c6576461ca59abcefad1d51f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0edd882c6576461ca59abcefad1d51f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0edd882c6576461ca59abcefad1d51f2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:flogt-xf5nPQhcal-84uTP2wzxI=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.215976+00 2025-12-09 10:15:44.215982+00 18168 2321-1#领子手绘花橙色 SPMX-20240815313396 \N \N \N 1 \N [{"file_id": "d3928ab8-1d9f-4e6a-b7e4-12147f86408f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f54ada1c28e348b9984fa0cf91de8094.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f54ada1c28e348b9984fa0cf91de8094.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f54ada1c28e348b9984fa0cf91de8094.jpg", "file_size": 7930, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#领子手绘花橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54ada1c28e348b9984fa0cf91de8094.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54ada1c28e348b9984fa0cf91de8094.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f54ada1c28e348b9984fa0cf91de8094.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f54ada1c28e348b9984fa0cf91de8094.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f54ada1c28e348b9984fa0cf91de8094.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJ0y_kAhIgMreAtFAQhu3Bc8Yqc=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.218852+00 2025-12-09 10:15:44.218857+00 18169 DL3263#短款前后幅彩兰2XL SPMX-20240815313392 \N \N \N 1 \N [{"file_id": "3c9faa03-a2be-4b11-86ae-068078106afd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8113949cfecd45b5ab9950f085007f30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8113949cfecd45b5ab9950f085007f30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8113949cfecd45b5ab9950f085007f30.jpg", "file_size": 20630, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8113949cfecd45b5ab9950f085007f30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8113949cfecd45b5ab9950f085007f30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8113949cfecd45b5ab9950f085007f30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8113949cfecd45b5ab9950f085007f30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8113949cfecd45b5ab9950f085007f30.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1D5FtxvSEmKf4n1OnHk4NVyy51w=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.221795+00 2025-12-09 10:15:44.221801+00 18170 001#-绿色 SPMX-20240815313395 \N \N \N 1 \N [{"file_id": "cc4b7b4a-6a28-47ee-b37f-f475ce9d8484", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7a7bcdd0f5645b0a28883dd8577a25a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7a7bcdd0f5645b0a28883dd8577a25a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7a7bcdd0f5645b0a28883dd8577a25a.jpg", "file_size": 43769, "is_delete": false, "file_type": 1, "original_file_name": "001#-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a7bcdd0f5645b0a28883dd8577a25a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a7bcdd0f5645b0a28883dd8577a25a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7a7bcdd0f5645b0a28883dd8577a25a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7a7bcdd0f5645b0a28883dd8577a25a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7a7bcdd0f5645b0a28883dd8577a25a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oa24MApZlT9shCfTkIwUMF6CrBU=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.224683+00 2025-12-09 10:15:44.224688+00 18171 LJH1920#原版色 SPMX-20240815313397 \N \N \N 1 \N [{"file_id": "97b8ae52-19ab-4ed4-9fd8-d5f55d168b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49fa0c5ed13440c58bca0b4c7a806a08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49fa0c5ed13440c58bca0b4c7a806a08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49fa0c5ed13440c58bca0b4c7a806a08.jpg", "file_size": 62736, "is_delete": false, "file_type": 1, "original_file_name": "LJH1920#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49fa0c5ed13440c58bca0b4c7a806a08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49fa0c5ed13440c58bca0b4c7a806a08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49fa0c5ed13440c58bca0b4c7a806a08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49fa0c5ed13440c58bca0b4c7a806a08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49fa0c5ed13440c58bca0b4c7a806a08.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5oqos22r7NhsCqG3XSBF6LgC7o=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.227478+00 2025-12-09 10:15:44.227484+00 18172 CCHD212#黑色XL SPMX-20240815313401 \N \N \N 1 \N [{"file_id": "4d5ab76b-dd11-4c6a-9b30-3fb8f9fea50c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff6434d950d49b79870ce10e63d0934.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff6434d950d49b79870ce10e63d0934.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff6434d950d49b79870ce10e63d0934.jpg", "file_size": 17935, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff6434d950d49b79870ce10e63d0934.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff6434d950d49b79870ce10e63d0934.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff6434d950d49b79870ce10e63d0934.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff6434d950d49b79870ce10e63d0934.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff6434d950d49b79870ce10e63d0934.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xb1Takwaly-LDaXW8GNGvNAJ0WI=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.230527+00 2025-12-09 10:15:44.230533+00 18173 1231-33FWF#小童袖领匹布 SPMX-20240815313400 \N \N \N 1 \N [{"file_id": "04ae9c59-2d04-4740-b282-12b0e6d16a85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e0f223ae04e4d8b818fbee6b77afbf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e0f223ae04e4d8b818fbee6b77afbf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e0f223ae04e4d8b818fbee6b77afbf9.jpg", "file_size": 14999, "is_delete": false, "file_type": 1, "original_file_name": "1231-33FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f223ae04e4d8b818fbee6b77afbf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f223ae04e4d8b818fbee6b77afbf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0f223ae04e4d8b818fbee6b77afbf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e0f223ae04e4d8b818fbee6b77afbf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e0f223ae04e4d8b818fbee6b77afbf9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCRBrkp4T4OhMA_lmabKUjp7Jm0=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.233554+00 2025-12-09 10:15:44.23356+00 18174 8614#正身S SPMX-20240815313398 \N \N \N 1 \N [{"file_id": "69391a36-8522-4f8d-9f68-24b3fd604e61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76d633861a6d43edbb827af77e36815e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76d633861a6d43edbb827af77e36815e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76d633861a6d43edbb827af77e36815e.jpg", "file_size": 12332, "is_delete": false, "file_type": 1, "original_file_name": "8614#正身S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d633861a6d43edbb827af77e36815e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d633861a6d43edbb827af77e36815e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76d633861a6d43edbb827af77e36815e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76d633861a6d43edbb827af77e36815e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76d633861a6d43edbb827af77e36815e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFoEKlnOF7gyd8g40Lmlo6q8AE8=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.236478+00 2025-12-09 10:15:44.236484+00 18175 FX0003-43#RC23 SPMX-20240815313399 \N \N \N 1 \N [{"file_id": "9db950e4-eeb6-44e9-8acf-81a900a704ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c4755d8a59b4872824a6c4c98f46226.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c4755d8a59b4872824a6c4c98f46226.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c4755d8a59b4872824a6c4c98f46226.jpg", "file_size": 17015, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-43#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4755d8a59b4872824a6c4c98f46226.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4755d8a59b4872824a6c4c98f46226.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4755d8a59b4872824a6c4c98f46226.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c4755d8a59b4872824a6c4c98f46226.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c4755d8a59b4872824a6c4c98f46226.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:algZgBWsQDoWEbij-vQtTAD5YNo=", "createTime": "2024-08-15 15:04:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.239438+00 2025-12-09 10:15:44.239444+00 18176 JTSS872FW#VS-D3 SPMX-20240815313406 \N \N \N 1 \N [{"file_id": "eda412a2-2da4-4c6a-89d9-fb48d739dcd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee4f3bb3429b4f728675acddf50ad449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee4f3bb3429b4f728675acddf50ad449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee4f3bb3429b4f728675acddf50ad449.jpg", "file_size": 12557, "is_delete": false, "file_type": 1, "original_file_name": "JTSS872FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4f3bb3429b4f728675acddf50ad449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4f3bb3429b4f728675acddf50ad449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee4f3bb3429b4f728675acddf50ad449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee4f3bb3429b4f728675acddf50ad449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee4f3bb3429b4f728675acddf50ad449.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TtGzcy4DFiHJs_JLk8GsJVozWxs=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.24244+00 2025-12-09 10:15:44.242446+00 18177 FX0003-434#WJC22 SPMX-20240815313409 \N \N \N 1 \N [{"file_id": "b0c9492e-4c34-45da-8e88-c268626fdfe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e0c063b92f248ba8d6f82981421053a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e0c063b92f248ba8d6f82981421053a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e0c063b92f248ba8d6f82981421053a.jpg", "file_size": 17748, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-434#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0c063b92f248ba8d6f82981421053a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0c063b92f248ba8d6f82981421053a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e0c063b92f248ba8d6f82981421053a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e0c063b92f248ba8d6f82981421053a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e0c063b92f248ba8d6f82981421053a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Ve9UuwsP-O9dd5qw9YpLn5t_OI=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.245462+00 2025-12-09 10:15:44.245469+00 18178 LZ1380#童装下身5号色 SPMX-20240815313403 \N \N \N 1 \N [{"file_id": "076db061-c979-4c4c-baae-c8aa49da27c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac4a9cdb1124c419c51eed64705e2d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac4a9cdb1124c419c51eed64705e2d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac4a9cdb1124c419c51eed64705e2d3.jpg", "file_size": 23130, "is_delete": false, "file_type": 1, "original_file_name": "LZ1380#童装下身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac4a9cdb1124c419c51eed64705e2d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac4a9cdb1124c419c51eed64705e2d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac4a9cdb1124c419c51eed64705e2d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac4a9cdb1124c419c51eed64705e2d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac4a9cdb1124c419c51eed64705e2d3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uM44Ov3t8OMpsL0g8kMOMkRa_F8=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.248424+00 2025-12-09 10:15:44.248431+00 18179 1231-34FWF#中童12码+10码 SPMX-20240815313411 \N \N \N 1 \N [{"file_id": "7ca658c3-43ad-47b6-9fc6-7f590e5f6ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "146f076fad98429fadc9454a6ae1b596.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "146f076fad98429fadc9454a6ae1b596.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "146f076fad98429fadc9454a6ae1b596.jpg", "file_size": 19556, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146f076fad98429fadc9454a6ae1b596.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146f076fad98429fadc9454a6ae1b596.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/146f076fad98429fadc9454a6ae1b596.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/146f076fad98429fadc9454a6ae1b596.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/146f076fad98429fadc9454a6ae1b596.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMt1D_7k2eJSeqwhrYeVe1UHY0k=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.25139+00 2025-12-09 10:15:44.251397+00 18180 LJH1920#天兰 SPMX-20240815313408 \N \N \N 1 \N [{"file_id": "119e6c42-d5a7-4f14-b7fb-2c4f55e698ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6485f31a20ec4996a7c6c7de1b5386ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6485f31a20ec4996a7c6c7de1b5386ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6485f31a20ec4996a7c6c7de1b5386ba.jpg", "file_size": 64716, "is_delete": false, "file_type": 1, "original_file_name": "LJH1920#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6485f31a20ec4996a7c6c7de1b5386ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6485f31a20ec4996a7c6c7de1b5386ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6485f31a20ec4996a7c6c7de1b5386ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6485f31a20ec4996a7c6c7de1b5386ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6485f31a20ec4996a7c6c7de1b5386ba.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3LlfTpP4lgy3Miz1ntWbdXP2IqY=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.254371+00 2025-12-09 10:15:44.254376+00 18181 HXF-0008-B3#3号色 SPMX-20240815313404 \N \N \N 1 \N [{"file_id": "fb30cf9d-8dcf-4d74-981a-77cd5051fadc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg", "file_size": 42414, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B3#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b22d05d5a6cc4fa3beae3ffee67c9e5e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4u17-kkbTvtXVBv7kYZqlmRp-c=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.257403+00 2025-12-09 10:15:44.257409+00 18182 001#0XL SPMX-20240815313407 \N \N \N 1 \N [{"file_id": "cae47f56-1cd1-4f5b-afd9-bc711dbbe6d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "761402912be448b1b19e2c17b750a9c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "761402912be448b1b19e2c17b750a9c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "761402912be448b1b19e2c17b750a9c7.jpg", "file_size": 55659, "is_delete": false, "file_type": 1, "original_file_name": "001#0XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761402912be448b1b19e2c17b750a9c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761402912be448b1b19e2c17b750a9c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761402912be448b1b19e2c17b750a9c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/761402912be448b1b19e2c17b750a9c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/761402912be448b1b19e2c17b750a9c7.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CEsZQM_AR0-cPrl2KgZ2japVmyc=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.260104+00 2025-12-09 10:15:44.260108+00 18183 8614#正身XL SPMX-20240815313412 \N \N \N 1 \N [{"file_id": "2ba8bc24-9669-47f6-a6d9-7a23d5d73fdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46f018ac71714ad4bbed753b7411a582.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46f018ac71714ad4bbed753b7411a582.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46f018ac71714ad4bbed753b7411a582.jpg", "file_size": 12586, "is_delete": false, "file_type": 1, "original_file_name": "8614#正身XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f018ac71714ad4bbed753b7411a582.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f018ac71714ad4bbed753b7411a582.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f018ac71714ad4bbed753b7411a582.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46f018ac71714ad4bbed753b7411a582.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46f018ac71714ad4bbed753b7411a582.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVJeJZ4IAP_mOOaT-bEV12VrIJw=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.262647+00 2025-12-09 10:15:44.262652+00 18184 DL3263#短款前后幅彩兰L SPMX-20240815313402 \N \N \N 1 \N [{"file_id": "b2b2ba35-532d-47ac-90ae-625094f90714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dbc0625a9c94d71863369c82b962bd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dbc0625a9c94d71863369c82b962bd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dbc0625a9c94d71863369c82b962bd2.jpg", "file_size": 20818, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbc0625a9c94d71863369c82b962bd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbc0625a9c94d71863369c82b962bd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dbc0625a9c94d71863369c82b962bd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dbc0625a9c94d71863369c82b962bd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dbc0625a9c94d71863369c82b962bd2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIMBKhAx_jduM84McFvceQYc_P4=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.265276+00 2025-12-09 10:15:44.265281+00 18185 2321-1#领子手绘花绿色 SPMX-20240815313405 \N \N \N 1 \N [{"file_id": "d3b05e0c-3d2c-4e42-b5cc-7b3beaf9ce96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6673b226a1934f35ab96ddfd2e686157.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6673b226a1934f35ab96ddfd2e686157.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6673b226a1934f35ab96ddfd2e686157.jpg", "file_size": 7497, "is_delete": false, "file_type": 1, "original_file_name": "2321-1#领子手绘花绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6673b226a1934f35ab96ddfd2e686157.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6673b226a1934f35ab96ddfd2e686157.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6673b226a1934f35ab96ddfd2e686157.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6673b226a1934f35ab96ddfd2e686157.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6673b226a1934f35ab96ddfd2e686157.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNcmU9YfS2kEAmBO9zE5-xXBSTU=", "createTime": "2024-08-15 15:04:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.267924+00 2025-12-09 10:15:44.267929+00 18186 CCHD212#黑色净色 SPMX-20240815313410 \N \N \N 1 \N [{"file_id": "7085139c-063b-41c8-ad35-975bd1b1558e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86f4ca1c6da6455b8d551ac35fc28b0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86f4ca1c6da6455b8d551ac35fc28b0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86f4ca1c6da6455b8d551ac35fc28b0c.jpg", "file_size": 5281, "is_delete": false, "file_type": 1, "original_file_name": "CCHD212#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f4ca1c6da6455b8d551ac35fc28b0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f4ca1c6da6455b8d551ac35fc28b0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f4ca1c6da6455b8d551ac35fc28b0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86f4ca1c6da6455b8d551ac35fc28b0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86f4ca1c6da6455b8d551ac35fc28b0c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N5RtgKRNH9tWMhIDjXVnxdy_pUs=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.270505+00 2025-12-09 10:15:44.270509+00 18187 JTSS873FW#VS-D3 SPMX-20240815313417 \N \N \N 1 \N [{"file_id": "323355db-1f64-434c-8d08-36d3c21a54d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84d9a4f190364828a35698e6142309c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84d9a4f190364828a35698e6142309c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84d9a4f190364828a35698e6142309c7.jpg", "file_size": 10570, "is_delete": false, "file_type": 1, "original_file_name": "JTSS873FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d9a4f190364828a35698e6142309c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d9a4f190364828a35698e6142309c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84d9a4f190364828a35698e6142309c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84d9a4f190364828a35698e6142309c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84d9a4f190364828a35698e6142309c7.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N5wZxKKmNgW-fyE048bcMU_Ellg=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.273084+00 2025-12-09 10:15:44.273089+00 18188 DL3263#短款前后幅彩兰XL SPMX-20240815313413 \N \N \N 1 \N [{"file_id": "1372a456-7aa6-4e10-b2e1-0830d7a30c5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad8d3b94d2ef400c90e5188948db6613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad8d3b94d2ef400c90e5188948db6613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad8d3b94d2ef400c90e5188948db6613.jpg", "file_size": 20462, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8d3b94d2ef400c90e5188948db6613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8d3b94d2ef400c90e5188948db6613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad8d3b94d2ef400c90e5188948db6613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad8d3b94d2ef400c90e5188948db6613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad8d3b94d2ef400c90e5188948db6613.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qnJN0AXQtAsaHzjIVCu9AGn1n1c=", "createTime": "2024-08-15 15:04:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.275688+00 2025-12-09 10:15:44.275693+00 18189 8614#腰带批布 SPMX-20240815313422 \N \N \N 1 \N [{"file_id": "d975c8a0-fad2-4e97-bdab-56f935e0cdac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19eaa265dd844298840ae19bbc27f6db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19eaa265dd844298840ae19bbc27f6db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19eaa265dd844298840ae19bbc27f6db.jpg", "file_size": 7798, "is_delete": false, "file_type": 1, "original_file_name": "8614#腰带批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19eaa265dd844298840ae19bbc27f6db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19eaa265dd844298840ae19bbc27f6db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19eaa265dd844298840ae19bbc27f6db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19eaa265dd844298840ae19bbc27f6db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19eaa265dd844298840ae19bbc27f6db.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q2RRFiQ61X9f41V09ZUjNrjze14=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.27829+00 2025-12-09 10:15:44.278294+00 18190 HXF-0008-B4#RC23 SPMX-20240815313416 \N \N \N 1 \N [{"file_id": "a28eac17-93b7-4194-9832-844eb97ce295", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e1672b517a94aa49b562bdd8fdd86c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e1672b517a94aa49b562bdd8fdd86c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e1672b517a94aa49b562bdd8fdd86c9.jpg", "file_size": 58078, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B4#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e1672b517a94aa49b562bdd8fdd86c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e1672b517a94aa49b562bdd8fdd86c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e1672b517a94aa49b562bdd8fdd86c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e1672b517a94aa49b562bdd8fdd86c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e1672b517a94aa49b562bdd8fdd86c9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbrqvlFhQ3QvFvxWU66ArIyFnSE=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.28088+00 2025-12-09 10:15:44.280885+00 18191 2321-4#短袖加大码黑白斑马纹领子批布 SPMX-20240815313418 \N \N \N 1 \N [{"file_id": "a2a0cc83-f196-4cf0-8d1d-8642d0761448", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9159941ecee9498ea1eac8ca3964eee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9159941ecee9498ea1eac8ca3964eee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9159941ecee9498ea1eac8ca3964eee9.jpg", "file_size": 49904, "is_delete": false, "file_type": 1, "original_file_name": "2321-4#短袖加大码黑白斑马纹领子批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9159941ecee9498ea1eac8ca3964eee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9159941ecee9498ea1eac8ca3964eee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9159941ecee9498ea1eac8ca3964eee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9159941ecee9498ea1eac8ca3964eee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9159941ecee9498ea1eac8ca3964eee9.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5gOOdjfjzzUuuQcV7a3u5z9xVI=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.283594+00 2025-12-09 10:15:44.2836+00 18192 001#1XL SPMX-20240815313414 \N \N \N 1 \N [{"file_id": "39d2dfc5-68f4-49ba-a158-e90c67bcc197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ad31a57737497cb6a0b38898cc7180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ad31a57737497cb6a0b38898cc7180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ad31a57737497cb6a0b38898cc7180.jpg", "file_size": 60024, "is_delete": false, "file_type": 1, "original_file_name": "001#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ad31a57737497cb6a0b38898cc7180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ad31a57737497cb6a0b38898cc7180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ad31a57737497cb6a0b38898cc7180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ad31a57737497cb6a0b38898cc7180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ad31a57737497cb6a0b38898cc7180.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1bE20y8StzvdvxV2_NNCdf_Sec=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.286596+00 2025-12-09 10:15:44.286602+00 18193 LZ1382#捆条布 SPMX-20240815313415 \N \N \N 1 \N [{"file_id": "8e3b759d-1e68-4078-8a37-4d28b0a8c8b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "030191c1c6b549f58f9beaebd551dbe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "030191c1c6b549f58f9beaebd551dbe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "030191c1c6b549f58f9beaebd551dbe1.jpg", "file_size": 18913, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030191c1c6b549f58f9beaebd551dbe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030191c1c6b549f58f9beaebd551dbe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/030191c1c6b549f58f9beaebd551dbe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/030191c1c6b549f58f9beaebd551dbe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/030191c1c6b549f58f9beaebd551dbe1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rpCYX6rgiYXmTKNKanqAvnWiUi8=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.289509+00 2025-12-09 10:15:44.289515+00 18194 CCHD311#红色L SPMX-20240815313420 \N \N \N 1 \N [{"file_id": "61761ba8-4142-4d0c-916b-b0dcaeffa864", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f00dfd5f6f35496384c3ea4f419f91c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f00dfd5f6f35496384c3ea4f419f91c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f00dfd5f6f35496384c3ea4f419f91c1.jpg", "file_size": 19419, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00dfd5f6f35496384c3ea4f419f91c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00dfd5f6f35496384c3ea4f419f91c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00dfd5f6f35496384c3ea4f419f91c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f00dfd5f6f35496384c3ea4f419f91c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f00dfd5f6f35496384c3ea4f419f91c1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gghQrRd_XqHV0J2ddcwx1jjHp3k=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.292443+00 2025-12-09 10:15:44.292449+00 18195 LJH1920#玫红 SPMX-20240815313419 \N \N \N 1 \N [{"file_id": "7864e0a1-5bbc-4c70-a020-b40bbd4f0ee6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad102f7a48e940299d2522e44b51e470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad102f7a48e940299d2522e44b51e470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad102f7a48e940299d2522e44b51e470.jpg", "file_size": 63296, "is_delete": false, "file_type": 1, "original_file_name": "LJH1920#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad102f7a48e940299d2522e44b51e470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad102f7a48e940299d2522e44b51e470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad102f7a48e940299d2522e44b51e470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad102f7a48e940299d2522e44b51e470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad102f7a48e940299d2522e44b51e470.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUA--x-C3E6lf1DQvNQkWM-1Wmo=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.295434+00 2025-12-09 10:15:44.295441+00 18196 FX0003-437#WJC22 SPMX-20240815313421 \N \N \N 1 \N [{"file_id": "aa412b45-1db8-484b-aee1-509b784ec76e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd908ad60bc84065bb5df55334d7751e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd908ad60bc84065bb5df55334d7751e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd908ad60bc84065bb5df55334d7751e.jpg", "file_size": 12596, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-437#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd908ad60bc84065bb5df55334d7751e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd908ad60bc84065bb5df55334d7751e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd908ad60bc84065bb5df55334d7751e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd908ad60bc84065bb5df55334d7751e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd908ad60bc84065bb5df55334d7751e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j8HrTel_IGl96Z8y88fuAQzH6xg=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.298392+00 2025-12-09 10:15:44.298398+00 18197 LZ1382#背心款1号色 SPMX-20240815313425 \N \N \N 1 \N [{"file_id": "4e99c8bb-c53a-4e9a-a7b8-88121bb345d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "491b7b77266a4424bda40e922e762485.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "491b7b77266a4424bda40e922e762485.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "491b7b77266a4424bda40e922e762485.jpg", "file_size": 17772, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491b7b77266a4424bda40e922e762485.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491b7b77266a4424bda40e922e762485.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/491b7b77266a4424bda40e922e762485.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/491b7b77266a4424bda40e922e762485.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/491b7b77266a4424bda40e922e762485.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQ2jliNr7CU6pXrIWEj_pCThGsw=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.301384+00 2025-12-09 10:15:44.301391+00 18198 001#2XL SPMX-20240815313426 \N \N \N 1 \N [{"file_id": "ca09fbb7-db8a-4e2a-b407-16667e83cf74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0695fd73f8d54a39a66fee385b92c6f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0695fd73f8d54a39a66fee385b92c6f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0695fd73f8d54a39a66fee385b92c6f1.jpg", "file_size": 58793, "is_delete": false, "file_type": 1, "original_file_name": "001#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0695fd73f8d54a39a66fee385b92c6f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0695fd73f8d54a39a66fee385b92c6f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0695fd73f8d54a39a66fee385b92c6f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0695fd73f8d54a39a66fee385b92c6f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0695fd73f8d54a39a66fee385b92c6f1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hcVgyXsOy1ij2r8SB02OYgiJz08=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.304347+00 2025-12-09 10:15:44.304353+00 18199 JTSS874FW#VS-D3 SPMX-20240815313427 \N \N \N 1 \N [{"file_id": "9f2a4b60-e0ad-488b-b3b3-67a1482722bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a08ea758d94f449ab0a80cbb3202777e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a08ea758d94f449ab0a80cbb3202777e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a08ea758d94f449ab0a80cbb3202777e.jpg", "file_size": 9261, "is_delete": false, "file_type": 1, "original_file_name": "JTSS874FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ea758d94f449ab0a80cbb3202777e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ea758d94f449ab0a80cbb3202777e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ea758d94f449ab0a80cbb3202777e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a08ea758d94f449ab0a80cbb3202777e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a08ea758d94f449ab0a80cbb3202777e.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQ6vzymnUf4MHlzjtDyuorYkmgE=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.307375+00 2025-12-09 10:15:44.307381+00 18200 1231-34FWF#中童14码 SPMX-20240815313423 \N \N \N 1 \N [{"file_id": "999063a9-f0dd-4191-a87a-f25adde68296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5767c7bf7a54425a726aca57fc5b111.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5767c7bf7a54425a726aca57fc5b111.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5767c7bf7a54425a726aca57fc5b111.jpg", "file_size": 18087, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5767c7bf7a54425a726aca57fc5b111.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5767c7bf7a54425a726aca57fc5b111.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5767c7bf7a54425a726aca57fc5b111.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5767c7bf7a54425a726aca57fc5b111.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5767c7bf7a54425a726aca57fc5b111.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xzv7zsf8bHkDzU8aTlSaPhK5y1A=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.310369+00 2025-12-09 10:15:44.310375+00 18201 DL3263#短款前后幅玫红2XL SPMX-20240815313424 \N \N \N 1 \N [{"file_id": "53cc1ee6-427e-4c28-90e4-e18c06604d2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2252ad2362504f4691d0d00a090b18f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2252ad2362504f4691d0d00a090b18f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2252ad2362504f4691d0d00a090b18f3.jpg", "file_size": 19947, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅玫红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ad2362504f4691d0d00a090b18f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ad2362504f4691d0d00a090b18f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ad2362504f4691d0d00a090b18f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2252ad2362504f4691d0d00a090b18f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2252ad2362504f4691d0d00a090b18f3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FwSFaVAP5Q-YBb3JdoNjePqfE0=", "createTime": "2024-08-15 15:04:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.313317+00 2025-12-09 10:15:44.313324+00 18202 2321-4#黑白斑马纹正身 SPMX-20240815313430 \N \N \N 1 \N [{"file_id": "5d441ed9-ef83-44ae-a23c-94377c2d3b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg", "file_size": 50569, "is_delete": false, "file_type": 1, "original_file_name": "2321-4#黑白斑马纹正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd8f3d27f0f4fb1bd92f7d7179d1c93.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D3gr69xkBU2Xc3cB9SopoSOiysk=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.31629+00 2025-12-09 10:15:44.316295+00 18203 DL3263#短款前后幅玫红L SPMX-20240815313435 \N \N \N 1 \N [{"file_id": "5e7432cd-f8be-411c-a1dc-62bc9d685b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98b85933c35e49188d9d3027b924c253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98b85933c35e49188d9d3027b924c253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98b85933c35e49188d9d3027b924c253.jpg", "file_size": 20216, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅玫红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b85933c35e49188d9d3027b924c253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b85933c35e49188d9d3027b924c253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98b85933c35e49188d9d3027b924c253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98b85933c35e49188d9d3027b924c253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98b85933c35e49188d9d3027b924c253.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rg8A73UPKMa6NHKE6EVMMV-aISc=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.319231+00 2025-12-09 10:15:44.319238+00 18204 001#3XL SPMX-20240815313436 \N \N \N 1 \N [{"file_id": "d2e93409-f4fe-4097-95ef-9aefe15f4667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f856711d91744cb28c38abe9694a5d1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f856711d91744cb28c38abe9694a5d1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f856711d91744cb28c38abe9694a5d1c.jpg", "file_size": 55576, "is_delete": false, "file_type": 1, "original_file_name": "001#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f856711d91744cb28c38abe9694a5d1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f856711d91744cb28c38abe9694a5d1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f856711d91744cb28c38abe9694a5d1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f856711d91744cb28c38abe9694a5d1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f856711d91744cb28c38abe9694a5d1c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qil7ew3rD-v-U4nKD6GnzsxPryk=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.322205+00 2025-12-09 10:15:44.322211+00 18205 LJH1920#黑色 SPMX-20240815313428 \N \N \N 1 \N [{"file_id": "b126e3a5-5436-4650-989d-6aedfcde7b18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acbfab58c9a24ca78035e2c3db53ce00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acbfab58c9a24ca78035e2c3db53ce00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acbfab58c9a24ca78035e2c3db53ce00.jpg", "file_size": 63508, "is_delete": false, "file_type": 1, "original_file_name": "LJH1920#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbfab58c9a24ca78035e2c3db53ce00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbfab58c9a24ca78035e2c3db53ce00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbfab58c9a24ca78035e2c3db53ce00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acbfab58c9a24ca78035e2c3db53ce00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acbfab58c9a24ca78035e2c3db53ce00.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCttnRkPc9yCIEB09uIjzq-6gpE=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.32518+00 2025-12-09 10:15:44.325186+00 18206 LZ1382#背心款2号色 SPMX-20240815313437 \N \N \N 1 \N [{"file_id": "48de208a-b10e-4629-a1d8-67859c539946", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa53c37ac2604276859241ad98c5cc59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa53c37ac2604276859241ad98c5cc59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa53c37ac2604276859241ad98c5cc59.jpg", "file_size": 19632, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa53c37ac2604276859241ad98c5cc59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa53c37ac2604276859241ad98c5cc59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa53c37ac2604276859241ad98c5cc59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa53c37ac2604276859241ad98c5cc59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa53c37ac2604276859241ad98c5cc59.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1cT_qCkHtzDUzcxbQvZd83fhX_4=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.328199+00 2025-12-09 10:15:44.328208+00 18207 CCHD311#红色M SPMX-20240815313431 \N \N \N 1 \N [{"file_id": "37ca7a8b-e13d-48b9-8c47-c035c81e5da2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff33c67d2d0e49bb9b5d0ef2526f08db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff33c67d2d0e49bb9b5d0ef2526f08db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff33c67d2d0e49bb9b5d0ef2526f08db.jpg", "file_size": 18980, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff33c67d2d0e49bb9b5d0ef2526f08db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff33c67d2d0e49bb9b5d0ef2526f08db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff33c67d2d0e49bb9b5d0ef2526f08db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff33c67d2d0e49bb9b5d0ef2526f08db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff33c67d2d0e49bb9b5d0ef2526f08db.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5brZmbcgi0ftF5DTekJVCLqRSXk=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.331184+00 2025-12-09 10:15:44.33119+00 18208 1231-34FWF#中童袖领匹布 SPMX-20240815313434 \N \N \N 1 \N [{"file_id": "0abe6b4e-730a-4a75-a72a-919eb964ef8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da2b5ae37d8e43f4b1967d8a23e7ab20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da2b5ae37d8e43f4b1967d8a23e7ab20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da2b5ae37d8e43f4b1967d8a23e7ab20.jpg", "file_size": 17864, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2b5ae37d8e43f4b1967d8a23e7ab20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2b5ae37d8e43f4b1967d8a23e7ab20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2b5ae37d8e43f4b1967d8a23e7ab20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da2b5ae37d8e43f4b1967d8a23e7ab20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da2b5ae37d8e43f4b1967d8a23e7ab20.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QoYuLw3N7OdQa0fDYxqw507CAfE=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.334151+00 2025-12-09 10:15:44.334157+00 18209 JTSS875FW#VS-D3 SPMX-20240815313438 \N \N \N 1 \N [{"file_id": "f73bbaa9-743d-4b2c-a0fd-cdb1e0083d20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24e62c88dfcb4ef18b29ccc0574187a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24e62c88dfcb4ef18b29ccc0574187a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24e62c88dfcb4ef18b29ccc0574187a2.jpg", "file_size": 9345, "is_delete": false, "file_type": 1, "original_file_name": "JTSS875FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e62c88dfcb4ef18b29ccc0574187a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e62c88dfcb4ef18b29ccc0574187a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e62c88dfcb4ef18b29ccc0574187a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24e62c88dfcb4ef18b29ccc0574187a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24e62c88dfcb4ef18b29ccc0574187a2.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OsAGI0ccuw-ki5Zc8CU6H8rN9d8=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.337123+00 2025-12-09 10:15:44.337128+00 18210 FX0003-44#RC23 SPMX-20240815313433 \N \N \N 1 \N [{"file_id": "7c4b18ab-20db-4479-85bb-cb5efa5fc5c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29c9c2d34629404080748f19ecf066d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29c9c2d34629404080748f19ecf066d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29c9c2d34629404080748f19ecf066d4.jpg", "file_size": 14576, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-44#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c9c2d34629404080748f19ecf066d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c9c2d34629404080748f19ecf066d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29c9c2d34629404080748f19ecf066d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29c9c2d34629404080748f19ecf066d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29c9c2d34629404080748f19ecf066d4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AaV6PO8lp3IMub_w5ei-9WcQ9SI=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.340019+00 2025-12-09 10:15:44.340024+00 18211 HXF-0008-B5#1号色 SPMX-20240815313429 \N \N \N 1 \N [{"file_id": "83e47ead-934e-4dd1-ac01-21583e59cc0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c5795d0998b471da150747871847a6c.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c5795d0998b471da150747871847a6c.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c5795d0998b471da150747871847a6c.bmp", "file_size": 85395, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B5#1号色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5795d0998b471da150747871847a6c.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5795d0998b471da150747871847a6c.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5795d0998b471da150747871847a6c.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c5795d0998b471da150747871847a6c.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c5795d0998b471da150747871847a6c.bmp?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9sOT1b0AxJV00qsol6nakXiG2rQ=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.34299+00 2025-12-09 10:15:44.342996+00 18212 8614#领袖门襟2XL SPMX-20240815313432 \N \N \N 1 \N [{"file_id": "86f33621-6b59-41f8-848e-45372d115b46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ced2cb082b5241d7ad0617c3d74b71bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ced2cb082b5241d7ad0617c3d74b71bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ced2cb082b5241d7ad0617c3d74b71bb.jpg", "file_size": 20068, "is_delete": false, "file_type": 1, "original_file_name": "8614#领袖门襟2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced2cb082b5241d7ad0617c3d74b71bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced2cb082b5241d7ad0617c3d74b71bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ced2cb082b5241d7ad0617c3d74b71bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ced2cb082b5241d7ad0617c3d74b71bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ced2cb082b5241d7ad0617c3d74b71bb.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OmtXmecK4rbW3WZsJfie2W56gBU=", "createTime": "2024-08-15 15:04:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.345911+00 2025-12-09 10:15:44.345917+00 18213 23219#橙色 SPMX-20240815313439 \N \N \N 1 \N [{"file_id": "f031557d-4387-4ff8-aff7-de22681f7702", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edc46d8527044ba1be4e1e51e744d5db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edc46d8527044ba1be4e1e51e744d5db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edc46d8527044ba1be4e1e51e744d5db.jpg", "file_size": 10410, "is_delete": false, "file_type": 1, "original_file_name": "23219#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc46d8527044ba1be4e1e51e744d5db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc46d8527044ba1be4e1e51e744d5db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edc46d8527044ba1be4e1e51e744d5db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edc46d8527044ba1be4e1e51e744d5db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edc46d8527044ba1be4e1e51e744d5db.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SraZxdfkbFF5peM1rZtsPySUuU=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.348855+00 2025-12-09 10:15:44.348861+00 18214 LJH1921#粉色 SPMX-20240815313441 \N \N \N 1 \N [{"file_id": "8832a01a-eeaf-43c9-a59d-1f14998d214b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5692b8548b442bbac9f88d4a80ce298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5692b8548b442bbac9f88d4a80ce298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5692b8548b442bbac9f88d4a80ce298.jpg", "file_size": 59705, "is_delete": false, "file_type": 1, "original_file_name": "LJH1921#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5692b8548b442bbac9f88d4a80ce298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5692b8548b442bbac9f88d4a80ce298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5692b8548b442bbac9f88d4a80ce298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5692b8548b442bbac9f88d4a80ce298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5692b8548b442bbac9f88d4a80ce298.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HUC8CQT5BvNQv8TnjU9JyHgikTg=", "createTime": "2024-08-15 15:04:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.351831+00 2025-12-09 10:15:44.351838+00 18215 CCHD311#红色XL SPMX-20240815313440 \N \N \N 1 \N [{"file_id": "d3fc05de-c238-4a61-8718-fb15bdf15b30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b63e6101f2c4311b144e34fccf90470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b63e6101f2c4311b144e34fccf90470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b63e6101f2c4311b144e34fccf90470.jpg", "file_size": 19978, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b63e6101f2c4311b144e34fccf90470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b63e6101f2c4311b144e34fccf90470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b63e6101f2c4311b144e34fccf90470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b63e6101f2c4311b144e34fccf90470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b63e6101f2c4311b144e34fccf90470.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwvoBynqW4gym1mbdL0x-mRR3Q8=", "createTime": "2024-08-15 15:04:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.354788+00 2025-12-09 10:15:44.354795+00 18216 HXF-0008-B5#2号色 SPMX-20240815313446 \N \N \N 1 \N [{"file_id": "2a387e85-8b7b-4564-affd-a46703b6b424", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "592089278e064cc1a4873eb268df0ca0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "592089278e064cc1a4873eb268df0ca0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "592089278e064cc1a4873eb268df0ca0.jpg", "file_size": 58498, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B5#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592089278e064cc1a4873eb268df0ca0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592089278e064cc1a4873eb268df0ca0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/592089278e064cc1a4873eb268df0ca0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/592089278e064cc1a4873eb268df0ca0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/592089278e064cc1a4873eb268df0ca0.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9N1rfA_nObALn29Vw9bbA6Qfmc=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.35779+00 2025-12-09 10:15:44.357796+00 18217 FX0003-45#1号色 SPMX-20240815313444 \N \N \N 1 \N [{"file_id": "8ff670c0-cd1a-46b4-aa87-6c24d7ccbf5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6225a842af34e8d9beea442bcf8b442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6225a842af34e8d9beea442bcf8b442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6225a842af34e8d9beea442bcf8b442.jpg", "file_size": 13924, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-45#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6225a842af34e8d9beea442bcf8b442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6225a842af34e8d9beea442bcf8b442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6225a842af34e8d9beea442bcf8b442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6225a842af34e8d9beea442bcf8b442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6225a842af34e8d9beea442bcf8b442.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMz_Tkt9e0ZGdISXgSDCreacZD4=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.360768+00 2025-12-09 10:15:44.360775+00 18218 8614#领袖门襟L SPMX-20240815313442 \N \N \N 1 \N [{"file_id": "a75b2585-02b5-4ad3-8a03-816881bbd1ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbce9d744124497b892f75b03e0d85fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbce9d744124497b892f75b03e0d85fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbce9d744124497b892f75b03e0d85fd.jpg", "file_size": 15446, "is_delete": false, "file_type": 1, "original_file_name": "8614#领袖门襟L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbce9d744124497b892f75b03e0d85fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbce9d744124497b892f75b03e0d85fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbce9d744124497b892f75b03e0d85fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbce9d744124497b892f75b03e0d85fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbce9d744124497b892f75b03e0d85fd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eKDYyaOKMcg32HCvmtx4y4cH83A=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.363739+00 2025-12-09 10:15:44.363745+00 18219 DL3263#短款前后幅玫红XL SPMX-20240815313443 \N \N \N 1 \N [{"file_id": "c185038e-7264-4d23-b56d-e1cafca66f00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg", "file_size": 20137, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅玫红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dd1f284f26b4eaf97c2528c5ccd2b0f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9cKAK0ICwEhnT7htIMXNR8VB7Fk=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.366767+00 2025-12-09 10:15:44.366773+00 18220 001#4XL SPMX-20240815313447 \N \N \N 1 \N [{"file_id": "fbddf2e5-5cb3-417c-958b-ec697906979c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8612e88c847470baee9baa07de5712d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8612e88c847470baee9baa07de5712d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8612e88c847470baee9baa07de5712d.jpg", "file_size": 56492, "is_delete": false, "file_type": 1, "original_file_name": "001#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8612e88c847470baee9baa07de5712d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8612e88c847470baee9baa07de5712d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8612e88c847470baee9baa07de5712d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8612e88c847470baee9baa07de5712d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8612e88c847470baee9baa07de5712d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQcNWLBU7oxPMK3s1bs2dIaRmt0=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.369765+00 2025-12-09 10:15:44.369772+00 18221 1231-34FWF#小童6码 SPMX-20240815313445 \N \N \N 1 \N [{"file_id": "43f5be43-e1e6-434e-8659-49f76ade8ead", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d900e41567d499dacbda60febd16282.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d900e41567d499dacbda60febd16282.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d900e41567d499dacbda60febd16282.jpg", "file_size": 22131, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d900e41567d499dacbda60febd16282.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d900e41567d499dacbda60febd16282.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d900e41567d499dacbda60febd16282.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d900e41567d499dacbda60febd16282.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d900e41567d499dacbda60febd16282.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OpT4hzOJCn2VgIkCoN5JitUHcM0=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.372636+00 2025-12-09 10:15:44.372641+00 18222 JTSS876FWE#VS-D3 SPMX-20240815313448 \N \N \N 1 \N [{"file_id": "7e931b8b-3e61-42f4-83ca-f60e2da08f59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d750ba64c664752be3512022b5bfff4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d750ba64c664752be3512022b5bfff4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d750ba64c664752be3512022b5bfff4.jpg", "file_size": 13617, "is_delete": false, "file_type": 1, "original_file_name": "JTSS876FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d750ba64c664752be3512022b5bfff4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d750ba64c664752be3512022b5bfff4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d750ba64c664752be3512022b5bfff4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d750ba64c664752be3512022b5bfff4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d750ba64c664752be3512022b5bfff4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oJLmL70ll1dXsXfslGF1Suz8xo=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.375586+00 2025-12-09 10:15:44.375593+00 18223 LZ1382#背心款4号色 SPMX-20240815313459 \N \N \N 1 \N [{"file_id": "adbaaa27-f9a1-4541-bbb4-c63032bea40a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c68a0140b514926b985f516e74c7d97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c68a0140b514926b985f516e74c7d97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c68a0140b514926b985f516e74c7d97.jpg", "file_size": 18640, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c68a0140b514926b985f516e74c7d97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c68a0140b514926b985f516e74c7d97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c68a0140b514926b985f516e74c7d97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c68a0140b514926b985f516e74c7d97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c68a0140b514926b985f516e74c7d97.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cgK5_1urKOoI_FvCGnpe6b5yCZE=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.37859+00 2025-12-09 10:15:44.378595+00 18224 LZ1382#背心款3号色 SPMX-20240815313449 \N \N \N 1 \N [{"file_id": "7a7cddc4-1e4b-4d5e-9d35-2cdd18f04eea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02cc487f61cb49feaa7a7eaa38fdb490.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02cc487f61cb49feaa7a7eaa38fdb490.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02cc487f61cb49feaa7a7eaa38fdb490.jpg", "file_size": 18980, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02cc487f61cb49feaa7a7eaa38fdb490.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02cc487f61cb49feaa7a7eaa38fdb490.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02cc487f61cb49feaa7a7eaa38fdb490.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02cc487f61cb49feaa7a7eaa38fdb490.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02cc487f61cb49feaa7a7eaa38fdb490.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bF2bsSFbe7HLI53HfkmQYS3Iplw=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.381469+00 2025-12-09 10:15:44.381476+00 18225 CCHD311#红色乱花 SPMX-20240815313452 \N \N \N 1 \N [{"file_id": "acb97979-fc12-4da5-b5d1-8d6905189dc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9c0bc326efb4b6384369bb15ae31891.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9c0bc326efb4b6384369bb15ae31891.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9c0bc326efb4b6384369bb15ae31891.jpg", "file_size": 12169, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#红色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c0bc326efb4b6384369bb15ae31891.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c0bc326efb4b6384369bb15ae31891.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9c0bc326efb4b6384369bb15ae31891.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9c0bc326efb4b6384369bb15ae31891.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9c0bc326efb4b6384369bb15ae31891.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DljZ9FWshzpVmA7kIA_wMhKmg38=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.384528+00 2025-12-09 10:15:44.384534+00 18226 DL3263#短款前后幅黄色2XL SPMX-20240815313454 \N \N \N 1 \N [{"file_id": "d0025953-b2e2-46a3-a925-5d28c09039b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3938da3f302476c85d641150d865489.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3938da3f302476c85d641150d865489.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3938da3f302476c85d641150d865489.jpg", "file_size": 20517, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3938da3f302476c85d641150d865489.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3938da3f302476c85d641150d865489.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3938da3f302476c85d641150d865489.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3938da3f302476c85d641150d865489.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3938da3f302476c85d641150d865489.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqPM7rT3LMmGt6GRxGhe1ueM8WM=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.38753+00 2025-12-09 10:15:44.387535+00 18227 JTSS877FWE#VS-D3 SPMX-20240815313455 \N \N \N 1 \N [{"file_id": "92601135-45ce-456a-8237-194877a56c0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86824a5c459e4355ba3905d55303d515.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86824a5c459e4355ba3905d55303d515.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86824a5c459e4355ba3905d55303d515.jpg", "file_size": 15472, "is_delete": false, "file_type": 1, "original_file_name": "JTSS877FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86824a5c459e4355ba3905d55303d515.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86824a5c459e4355ba3905d55303d515.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86824a5c459e4355ba3905d55303d515.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86824a5c459e4355ba3905d55303d515.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86824a5c459e4355ba3905d55303d515.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DVRcb0aG0SOio74m9jOK7KtuYqo=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.390537+00 2025-12-09 10:15:44.390544+00 18228 LJH1921#绿色 SPMX-20240815313457 \N \N \N 1 \N [{"file_id": "4369f373-33e8-420e-a470-0a1099bc5754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a730575953e468092f94a349eb5613b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a730575953e468092f94a349eb5613b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a730575953e468092f94a349eb5613b.jpg", "file_size": 60309, "is_delete": false, "file_type": 1, "original_file_name": "LJH1921#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a730575953e468092f94a349eb5613b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a730575953e468092f94a349eb5613b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a730575953e468092f94a349eb5613b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a730575953e468092f94a349eb5613b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a730575953e468092f94a349eb5613b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJjo3XZVdE4DXrUwwS6yrH1WFt0=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.393533+00 2025-12-09 10:15:44.393539+00 18229 FX0003-45#2号色 SPMX-20240815313458 \N \N \N 1 \N [{"file_id": "63cdcf69-6812-49fa-8557-eb55d8d44d5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ef02097c8e74833b63fcc2c58bee66f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ef02097c8e74833b63fcc2c58bee66f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ef02097c8e74833b63fcc2c58bee66f.jpg", "file_size": 17075, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-45#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef02097c8e74833b63fcc2c58bee66f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef02097c8e74833b63fcc2c58bee66f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ef02097c8e74833b63fcc2c58bee66f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ef02097c8e74833b63fcc2c58bee66f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ef02097c8e74833b63fcc2c58bee66f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fisahITN8gP3pKijV8bFJuq1K4g=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.39655+00 2025-12-09 10:15:44.396556+00 18230 HXF-0008-B6#1号色 SPMX-20240815313460 \N \N \N 1 \N [{"file_id": "ff57d9b1-cd32-4b23-b14d-1e53ac4b0359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38ab0d9a29ff429bae6672599fb96a13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38ab0d9a29ff429bae6672599fb96a13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38ab0d9a29ff429bae6672599fb96a13.jpg", "file_size": 66838, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B6#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ab0d9a29ff429bae6672599fb96a13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ab0d9a29ff429bae6672599fb96a13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38ab0d9a29ff429bae6672599fb96a13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38ab0d9a29ff429bae6672599fb96a13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38ab0d9a29ff429bae6672599fb96a13.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F-yxesMpIX36j0fn4IfeXCD3ldI=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.399545+00 2025-12-09 10:15:44.399551+00 18231 23219#蓝色 SPMX-20240815313451 \N \N \N 1 \N [{"file_id": "17c7b3ba-5e96-43ec-82f5-d823df7950e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1579fdb5ce048cf8137ee21a9580e08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1579fdb5ce048cf8137ee21a9580e08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1579fdb5ce048cf8137ee21a9580e08.jpg", "file_size": 10887, "is_delete": false, "file_type": 1, "original_file_name": "23219#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1579fdb5ce048cf8137ee21a9580e08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1579fdb5ce048cf8137ee21a9580e08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1579fdb5ce048cf8137ee21a9580e08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1579fdb5ce048cf8137ee21a9580e08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1579fdb5ce048cf8137ee21a9580e08.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p2J46-b-rxT96gs9_MG2BQ-iZn4=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.40249+00 2025-12-09 10:15:44.402496+00 18232 8614#领袖门襟M SPMX-20240815313456 \N \N \N 1 \N [{"file_id": "a8bd06af-9acc-4792-bc87-90cd127d59dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "193d442aae814a5aa58c143587005a6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "193d442aae814a5aa58c143587005a6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "193d442aae814a5aa58c143587005a6f.jpg", "file_size": 15793, "is_delete": false, "file_type": 1, "original_file_name": "8614#领袖门襟M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193d442aae814a5aa58c143587005a6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193d442aae814a5aa58c143587005a6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/193d442aae814a5aa58c143587005a6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/193d442aae814a5aa58c143587005a6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/193d442aae814a5aa58c143587005a6f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZJjv64-B3PcmFt4uazqV7ysJvg=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.405466+00 2025-12-09 10:15:44.405472+00 18233 1231-34FWF#小童8码+4码 SPMX-20240815313453 \N \N \N 1 \N [{"file_id": "053f468f-aeb4-4e5c-ab8d-1559ba014d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06aa4ece99b74ef3a15592aabcaf09dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06aa4ece99b74ef3a15592aabcaf09dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06aa4ece99b74ef3a15592aabcaf09dd.jpg", "file_size": 22811, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06aa4ece99b74ef3a15592aabcaf09dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06aa4ece99b74ef3a15592aabcaf09dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06aa4ece99b74ef3a15592aabcaf09dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06aa4ece99b74ef3a15592aabcaf09dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06aa4ece99b74ef3a15592aabcaf09dd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y69hrd9jsQgh1qmBhxzt4C8pEtY=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.408783+00 2025-12-09 10:15:44.408789+00 18234 LJH1921#紫色 SPMX-20240815313450 \N \N \N 1 \N [{"file_id": "58fa4fce-8a38-456d-917e-42610adf21e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2184cc0bcb9f45979f52a56a20164d5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2184cc0bcb9f45979f52a56a20164d5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2184cc0bcb9f45979f52a56a20164d5f.jpg", "file_size": 61041, "is_delete": false, "file_type": 1, "original_file_name": "LJH1921#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2184cc0bcb9f45979f52a56a20164d5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2184cc0bcb9f45979f52a56a20164d5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2184cc0bcb9f45979f52a56a20164d5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2184cc0bcb9f45979f52a56a20164d5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2184cc0bcb9f45979f52a56a20164d5f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SgXSiTYPLCQA4htAPzE2182NfxQ=", "createTime": "2024-08-15 15:04:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.412078+00 2025-12-09 10:15:44.412085+00 18235 1231-34FWF#小童袖领匹布 SPMX-20240815313463 \N \N \N 1 \N [{"file_id": "46fb1ef2-622a-4a20-8134-6ce913708e0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8209811147694474b9038289b9cc1a9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8209811147694474b9038289b9cc1a9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8209811147694474b9038289b9cc1a9d.jpg", "file_size": 18543, "is_delete": false, "file_type": 1, "original_file_name": "1231-34FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8209811147694474b9038289b9cc1a9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8209811147694474b9038289b9cc1a9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8209811147694474b9038289b9cc1a9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8209811147694474b9038289b9cc1a9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8209811147694474b9038289b9cc1a9d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7ZFHenmPHiwYrcaK0PYTClFne0=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.415493+00 2025-12-09 10:15:44.415499+00 18236 CCHD311#绿色M SPMX-20240815313472 \N \N \N 1 \N [{"file_id": "111476ff-f4cb-49ca-95a4-273a1ed9a157", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8247b7cd2b5c4feeacd25f643548a8a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8247b7cd2b5c4feeacd25f643548a8a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8247b7cd2b5c4feeacd25f643548a8a4.jpg", "file_size": 17758, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8247b7cd2b5c4feeacd25f643548a8a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8247b7cd2b5c4feeacd25f643548a8a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8247b7cd2b5c4feeacd25f643548a8a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8247b7cd2b5c4feeacd25f643548a8a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8247b7cd2b5c4feeacd25f643548a8a4.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FXM_Tp-cJ8p5XNQK1RX_ZfSyfBM=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.418764+00 2025-12-09 10:15:44.418769+00 18237 23219#黑色 SPMX-20240815313476 \N \N \N 1 \N [{"file_id": "d12fa46b-d503-46f2-9d06-e89b1643e0c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a58ce587c89343688133627571b4e24c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a58ce587c89343688133627571b4e24c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a58ce587c89343688133627571b4e24c.jpg", "file_size": 10793, "is_delete": false, "file_type": 1, "original_file_name": "23219#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a58ce587c89343688133627571b4e24c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a58ce587c89343688133627571b4e24c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a58ce587c89343688133627571b4e24c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a58ce587c89343688133627571b4e24c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a58ce587c89343688133627571b4e24c.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXnKVCJfRTY5pi8wgLn7ojq0_HY=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.422009+00 2025-12-09 10:15:44.422017+00 18238 DL3263#短款前后幅黄色XL SPMX-20240815313475 \N \N \N 1 \N [{"file_id": "da631d08-c59c-422d-864b-69629fb444be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86fb349f68fe461e9f67148354d70f85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86fb349f68fe461e9f67148354d70f85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86fb349f68fe461e9f67148354d70f85.jpg", "file_size": 20823, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86fb349f68fe461e9f67148354d70f85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86fb349f68fe461e9f67148354d70f85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86fb349f68fe461e9f67148354d70f85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86fb349f68fe461e9f67148354d70f85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86fb349f68fe461e9f67148354d70f85.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Jakh7rBnmeiOTLHFHVRhcDYrb4=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.425189+00 2025-12-09 10:15:44.425196+00 18239 JTSS878FWE#VS-D3 SPMX-20240815313467 \N \N \N 1 \N [{"file_id": "b5de9aae-2541-4e85-9015-ea86066eae68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccd5a7163d514234981e2ef4539ac26b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccd5a7163d514234981e2ef4539ac26b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccd5a7163d514234981e2ef4539ac26b.jpg", "file_size": 13108, "is_delete": false, "file_type": 1, "original_file_name": "JTSS878FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd5a7163d514234981e2ef4539ac26b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd5a7163d514234981e2ef4539ac26b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd5a7163d514234981e2ef4539ac26b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccd5a7163d514234981e2ef4539ac26b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccd5a7163d514234981e2ef4539ac26b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JAHWB8HtSWmr9sPjGdyoU2RBwmg=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.42835+00 2025-12-09 10:15:44.428356+00 18240 LZ1382#背心款5号色 SPMX-20240815313469 \N \N \N 1 \N [{"file_id": "044ccff2-1dfb-4316-b252-df1894fb136f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb3c0db11cd148dd8c7024b4a3dd96fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb3c0db11cd148dd8c7024b4a3dd96fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb3c0db11cd148dd8c7024b4a3dd96fd.jpg", "file_size": 17951, "is_delete": false, "file_type": 1, "original_file_name": "LZ1382#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3c0db11cd148dd8c7024b4a3dd96fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3c0db11cd148dd8c7024b4a3dd96fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3c0db11cd148dd8c7024b4a3dd96fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb3c0db11cd148dd8c7024b4a3dd96fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb3c0db11cd148dd8c7024b4a3dd96fd.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HmzeFhZFCrLjA9mCxgSwKWacp5I=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.431564+00 2025-12-09 10:15:44.431572+00 18241 001#L SPMX-20240815313461 \N \N \N 1 \N [{"file_id": "5077083a-5359-4e87-bae8-eb7f18b16fc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ca378f903204487b0f1fc30d6a023e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ca378f903204487b0f1fc30d6a023e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ca378f903204487b0f1fc30d6a023e5.jpg", "file_size": 22738, "is_delete": false, "file_type": 1, "original_file_name": "001#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca378f903204487b0f1fc30d6a023e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca378f903204487b0f1fc30d6a023e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca378f903204487b0f1fc30d6a023e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ca378f903204487b0f1fc30d6a023e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ca378f903204487b0f1fc30d6a023e5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23W2H1Fw-KZbM4cjHau9gXrhSRo=", "createTime": "2024-08-15 15:04:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.434555+00 2025-12-09 10:15:44.434561+00 18242 1231-35FWF#中童12码+10码 SPMX-20240815313474 \N \N \N 1 \N [{"file_id": "7830414c-c2a4-4981-9b82-a2cc0ba82328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg", "file_size": 19026, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90c6fbdc7b2b4bbea0c8ea2d3c85d9be.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IB9l3xkiMDiNxpmeyzFeOdKD8w=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.437557+00 2025-12-09 10:15:44.437562+00 18243 LJH1923#原版色 SPMX-20240815313470 \N \N \N 1 \N [{"file_id": "e396a922-43a2-4046-ae57-dc3eeb0a7f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7e21c2207a44e089b7afd32b5fc31e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7e21c2207a44e089b7afd32b5fc31e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7e21c2207a44e089b7afd32b5fc31e3.jpg", "file_size": 63274, "is_delete": false, "file_type": 1, "original_file_name": "LJH1923#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e21c2207a44e089b7afd32b5fc31e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e21c2207a44e089b7afd32b5fc31e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7e21c2207a44e089b7afd32b5fc31e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7e21c2207a44e089b7afd32b5fc31e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7e21c2207a44e089b7afd32b5fc31e3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMHHT3XZm0Tzzu9hRyjRdN5JM_E=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.440479+00 2025-12-09 10:15:44.440484+00 18244 HXF-0008-B6#2号色 SPMX-20240815313473 \N \N \N 1 \N [{"file_id": "351074cb-a212-46c8-a377-f0ac20b38755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a3649d2f3404883b9e3d528d4b8366d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a3649d2f3404883b9e3d528d4b8366d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a3649d2f3404883b9e3d528d4b8366d.jpg", "file_size": 72419, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B6#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3649d2f3404883b9e3d528d4b8366d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3649d2f3404883b9e3d528d4b8366d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a3649d2f3404883b9e3d528d4b8366d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a3649d2f3404883b9e3d528d4b8366d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a3649d2f3404883b9e3d528d4b8366d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RaPvmqsVdMCalhfcQFclFrDoSAM=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.443413+00 2025-12-09 10:15:44.443419+00 18245 23219#黄色 SPMX-20240815313464 \N \N \N 1 \N [{"file_id": "b96fa2ec-8fc3-4c78-b116-23eb711caa8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37c0f3ffe6494e0fbc2c98e815162254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37c0f3ffe6494e0fbc2c98e815162254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37c0f3ffe6494e0fbc2c98e815162254.jpg", "file_size": 9613, "is_delete": false, "file_type": 1, "original_file_name": "23219#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c0f3ffe6494e0fbc2c98e815162254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c0f3ffe6494e0fbc2c98e815162254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c0f3ffe6494e0fbc2c98e815162254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37c0f3ffe6494e0fbc2c98e815162254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37c0f3ffe6494e0fbc2c98e815162254.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4m0eKV-4Qn_dA4J7RAkZabeAMM=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.446385+00 2025-12-09 10:15:44.446391+00 18246 001#M SPMX-20240815313471 \N \N \N 1 \N [{"file_id": "350e9061-6008-46a7-becc-b7e23df77282", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "202e9d3090f944bcb9706a699132d3ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "202e9d3090f944bcb9706a699132d3ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "202e9d3090f944bcb9706a699132d3ea.jpg", "file_size": 23925, "is_delete": false, "file_type": 1, "original_file_name": "001#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202e9d3090f944bcb9706a699132d3ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202e9d3090f944bcb9706a699132d3ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/202e9d3090f944bcb9706a699132d3ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/202e9d3090f944bcb9706a699132d3ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/202e9d3090f944bcb9706a699132d3ea.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:govEkWg3KJlkx5C0b5R_LPrEP5c=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.449348+00 2025-12-09 10:15:44.449355+00 18247 CCHD311#绿色L SPMX-20240815313462 \N \N \N 1 \N [{"file_id": "651daaf5-e13f-4e6d-a70e-155a1a592982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f1d4f87c054fd0b447081ce6c5a2e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f1d4f87c054fd0b447081ce6c5a2e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f1d4f87c054fd0b447081ce6c5a2e3.jpg", "file_size": 18236, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f1d4f87c054fd0b447081ce6c5a2e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f1d4f87c054fd0b447081ce6c5a2e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f1d4f87c054fd0b447081ce6c5a2e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f1d4f87c054fd0b447081ce6c5a2e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f1d4f87c054fd0b447081ce6c5a2e3.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ukaHWTY3lBMdU6r0i8NsjUN9tuw=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.452298+00 2025-12-09 10:15:44.452305+00 18248 8614#领袖门襟S SPMX-20240815313466 \N \N \N 1 \N [{"file_id": "fed7c4c2-3fe5-4ba6-bb79-8d17289d2b2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bad4980b70db423693643486ef307b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bad4980b70db423693643486ef307b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bad4980b70db423693643486ef307b84.jpg", "file_size": 15499, "is_delete": false, "file_type": 1, "original_file_name": "8614#领袖门襟S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad4980b70db423693643486ef307b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad4980b70db423693643486ef307b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bad4980b70db423693643486ef307b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bad4980b70db423693643486ef307b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bad4980b70db423693643486ef307b84.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jZL37QDRNkOIJUZyexce3pAyhcI=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.467567+00 2025-12-09 10:15:44.467574+00 18253 CCHD311#绿色XL SPMX-20240815313483 \N \N \N 1 \N [{"file_id": "954206e3-ec87-462c-ab53-d015c9571284", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a5b3e8aed4c45f5a566db98327bfa4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a5b3e8aed4c45f5a566db98327bfa4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a5b3e8aed4c45f5a566db98327bfa4f.jpg", "file_size": 18503, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5b3e8aed4c45f5a566db98327bfa4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5b3e8aed4c45f5a566db98327bfa4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a5b3e8aed4c45f5a566db98327bfa4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a5b3e8aed4c45f5a566db98327bfa4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a5b3e8aed4c45f5a566db98327bfa4f.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FL5-PXk9xwL2dcnBgUp-HNojRlo=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.455397+00 2025-12-09 10:15:44.455403+00 18249 DL3263#短款前后幅黄色L SPMX-20240815313465 \N \N \N 1 \N [{"file_id": "0f48549d-703d-453b-b858-285db7d636fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "490a575bf694481c8d4a7db09497df7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "490a575bf694481c8d4a7db09497df7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "490a575bf694481c8d4a7db09497df7d.jpg", "file_size": 20843, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款前后幅黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a575bf694481c8d4a7db09497df7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a575bf694481c8d4a7db09497df7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a575bf694481c8d4a7db09497df7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/490a575bf694481c8d4a7db09497df7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/490a575bf694481c8d4a7db09497df7d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lrwnn1liEib8giPT19YLQaN1R4U=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.458396+00 2025-12-09 10:15:44.458404+00 18250 FX0003-45#3号色 SPMX-20240815313468 \N \N \N 1 \N [{"file_id": "0693b831-32c3-47bc-861f-cc3acce37134", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "601f60f63a9c4a49abaaed52289e84e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "601f60f63a9c4a49abaaed52289e84e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "601f60f63a9c4a49abaaed52289e84e5.jpg", "file_size": 15225, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-45#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601f60f63a9c4a49abaaed52289e84e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601f60f63a9c4a49abaaed52289e84e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/601f60f63a9c4a49abaaed52289e84e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/601f60f63a9c4a49abaaed52289e84e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/601f60f63a9c4a49abaaed52289e84e5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0GnywyUqy9ItbpG7QosOFzt1iI=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.461379+00 2025-12-09 10:15:44.461386+00 18251 861FWF#V5曲线 SPMX-20240815313488 \N \N \N 1 \N [{"file_id": "f5c0779f-cdf2-4505-a25d-cc781ef5418a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c262a1cedb94fba8de6f030f7f79129.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c262a1cedb94fba8de6f030f7f79129.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c262a1cedb94fba8de6f030f7f79129.jpg", "file_size": 25622, "is_delete": false, "file_type": 1, "original_file_name": "861FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c262a1cedb94fba8de6f030f7f79129.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c262a1cedb94fba8de6f030f7f79129.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c262a1cedb94fba8de6f030f7f79129.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c262a1cedb94fba8de6f030f7f79129.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c262a1cedb94fba8de6f030f7f79129.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GsBpXP4izzw6bfrJDABJCP8DOzc=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.464225+00 2025-12-09 10:15:44.464231+00 18252 JTSS879FWE#VS-D3 SPMX-20240815313479 \N \N \N 1 \N [{"file_id": "64424ff2-2bd0-4f78-8d0f-46a6062bbaa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9adba7a5b9734457ba7dbcadd2f80bde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9adba7a5b9734457ba7dbcadd2f80bde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9adba7a5b9734457ba7dbcadd2f80bde.jpg", "file_size": 15766, "is_delete": false, "file_type": 1, "original_file_name": "JTSS879FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adba7a5b9734457ba7dbcadd2f80bde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adba7a5b9734457ba7dbcadd2f80bde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9adba7a5b9734457ba7dbcadd2f80bde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9adba7a5b9734457ba7dbcadd2f80bde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9adba7a5b9734457ba7dbcadd2f80bde.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pHb5TNvzZvVHBbWG9TcKa120PG8=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.470786+00 2025-12-09 10:15:44.470792+00 18254 1231-35FWF#中童14码 SPMX-20240815313486 \N \N \N 1 \N [{"file_id": "0f2b02a6-9f1a-4edc-9c22-44e097edfec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e139b5424bb04d57bfd9f8ddb81efe04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e139b5424bb04d57bfd9f8ddb81efe04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e139b5424bb04d57bfd9f8ddb81efe04.jpg", "file_size": 17230, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e139b5424bb04d57bfd9f8ddb81efe04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e139b5424bb04d57bfd9f8ddb81efe04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e139b5424bb04d57bfd9f8ddb81efe04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e139b5424bb04d57bfd9f8ddb81efe04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e139b5424bb04d57bfd9f8ddb81efe04.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAn_0ssauHO6Nrjtjqd8Jt7JdxA=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.474017+00 2025-12-09 10:15:44.474023+00 18255 001#S SPMX-20240815313482 \N \N \N 1 \N [{"file_id": "565c87ae-8256-4264-924d-188fe7b52afd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5166db2098fb4967991943a6b9926a63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5166db2098fb4967991943a6b9926a63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5166db2098fb4967991943a6b9926a63.jpg", "file_size": 24982, "is_delete": false, "file_type": 1, "original_file_name": "001#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5166db2098fb4967991943a6b9926a63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5166db2098fb4967991943a6b9926a63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5166db2098fb4967991943a6b9926a63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5166db2098fb4967991943a6b9926a63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5166db2098fb4967991943a6b9926a63.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xpG2CRI15YgLMu3DdYzf2CZaFzI=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.47717+00 2025-12-09 10:15:44.477176+00 18256 DL3263#短款袖子原版 SPMX-20240815313485 \N \N \N 1 \N [{"file_id": "259d78e3-36ad-4f23-b5f1-ac915ee97c89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4925138c85e41be9eb16256d699b3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4925138c85e41be9eb16256d699b3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4925138c85e41be9eb16256d699b3a6.jpg", "file_size": 12087, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款袖子原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4925138c85e41be9eb16256d699b3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4925138c85e41be9eb16256d699b3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4925138c85e41be9eb16256d699b3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4925138c85e41be9eb16256d699b3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4925138c85e41be9eb16256d699b3a6.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U9OQyk0GkwVRB8SK798f8oDM5FE=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.480821+00 2025-12-09 10:15:44.480827+00 18257 8614#领袖门襟XL SPMX-20240815313477 \N \N \N 1 \N [{"file_id": "afbd8599-d990-42f4-a3a2-0339903ecde3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6691063ad19a413c97f8bea556427ecc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6691063ad19a413c97f8bea556427ecc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6691063ad19a413c97f8bea556427ecc.jpg", "file_size": 15735, "is_delete": false, "file_type": 1, "original_file_name": "8614#领袖门襟XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6691063ad19a413c97f8bea556427ecc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6691063ad19a413c97f8bea556427ecc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6691063ad19a413c97f8bea556427ecc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6691063ad19a413c97f8bea556427ecc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6691063ad19a413c97f8bea556427ecc.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pkr4fewtHc3rMhI6mnmf26GSYmI=", "createTime": "2024-08-15 15:04:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.484003+00 2025-12-09 10:15:44.484009+00 18258 LJH1923#果绿 SPMX-20240815313481 \N \N \N 1 \N [{"file_id": "6cefe4ac-cae1-4b1b-9409-aae29348540d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c17e94770c4583af0f4d55adabba8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c17e94770c4583af0f4d55adabba8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c17e94770c4583af0f4d55adabba8b.jpg", "file_size": 63562, "is_delete": false, "file_type": 1, "original_file_name": "LJH1923#果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c17e94770c4583af0f4d55adabba8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c17e94770c4583af0f4d55adabba8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c17e94770c4583af0f4d55adabba8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c17e94770c4583af0f4d55adabba8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c17e94770c4583af0f4d55adabba8b.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5erEZcCKTrS27Ocs8roK_iYy7lI=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.487226+00 2025-12-09 10:15:44.487232+00 18259 HXF-0008-B7#1号色 SPMX-20240815313484 \N \N \N 1 \N [{"file_id": "c796e4a7-1296-4971-8662-cc367322c690", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08079670a7c24292b6e963edc33e6f53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08079670a7c24292b6e963edc33e6f53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08079670a7c24292b6e963edc33e6f53.jpg", "file_size": 55569, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B7#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08079670a7c24292b6e963edc33e6f53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08079670a7c24292b6e963edc33e6f53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08079670a7c24292b6e963edc33e6f53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08079670a7c24292b6e963edc33e6f53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08079670a7c24292b6e963edc33e6f53.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFIUra5yglVQul2s2tQ-1Iuie_0=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.490408+00 2025-12-09 10:15:44.490414+00 18260 LZ1383#背心款1号色 SPMX-20240815313491 \N \N \N 1 \N [{"file_id": "d0673ffd-0c3c-4617-b464-761fe6f85666", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg", "file_size": 18079, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#背心款1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ec3815e9bd47c98dd3e3e4c6edb9ed.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vVRdn4OZFtJ9C6Nthz2vWVDUbNM=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.493556+00 2025-12-09 10:15:44.493562+00 18261 FX0003-45#玫红色 SPMX-20240815313480 \N \N \N 1 \N [{"file_id": "809dfa64-fd31-4948-a331-5aeda40d0507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc9ebcb5ba2f4462b6934eb636ca304d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc9ebcb5ba2f4462b6934eb636ca304d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc9ebcb5ba2f4462b6934eb636ca304d.jpg", "file_size": 14975, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-45#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9ebcb5ba2f4462b6934eb636ca304d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9ebcb5ba2f4462b6934eb636ca304d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9ebcb5ba2f4462b6934eb636ca304d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc9ebcb5ba2f4462b6934eb636ca304d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc9ebcb5ba2f4462b6934eb636ca304d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gY2eLKr47GIUsbU2kgGlqOiqDh0=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.496713+00 2025-12-09 10:15:44.496719+00 18262 23229FWF#V5曲线 SPMX-20240815313487 \N \N \N 1 \N [{"file_id": "89e79fed-ff38-44b5-b813-368be7deb9cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aff3999b076940aca0167503835cc4c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aff3999b076940aca0167503835cc4c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aff3999b076940aca0167503835cc4c5.jpg", "file_size": 17644, "is_delete": false, "file_type": 1, "original_file_name": "23229FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff3999b076940aca0167503835cc4c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff3999b076940aca0167503835cc4c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aff3999b076940aca0167503835cc4c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aff3999b076940aca0167503835cc4c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aff3999b076940aca0167503835cc4c5.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BaQHt02SB-Wddk-y-LwlVf_B_6M=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.499911+00 2025-12-09 10:15:44.499917+00 18263 FX0003-45#蓝色 SPMX-20240815313490 \N \N \N 1 \N [{"file_id": "4ac958a3-254c-4d3c-852b-c0a3149e8541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abfebd74005b4bf99b9b10b73e15a42d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abfebd74005b4bf99b9b10b73e15a42d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abfebd74005b4bf99b9b10b73e15a42d.jpg", "file_size": 17001, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-45#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfebd74005b4bf99b9b10b73e15a42d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfebd74005b4bf99b9b10b73e15a42d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abfebd74005b4bf99b9b10b73e15a42d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abfebd74005b4bf99b9b10b73e15a42d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abfebd74005b4bf99b9b10b73e15a42d.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O4QuoYZQwaGFxNAMpeVxRD9qgws=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.50308+00 2025-12-09 10:15:44.503086+00 18264 JTSS880FWE#VS-D3 SPMX-20240815313489 \N \N \N 1 \N [{"file_id": "6829b06a-d09b-4870-847c-b738d77fbc62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e072f2111a3c40dfad94aed119fcbc18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e072f2111a3c40dfad94aed119fcbc18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e072f2111a3c40dfad94aed119fcbc18.jpg", "file_size": 15960, "is_delete": false, "file_type": 1, "original_file_name": "JTSS880FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e072f2111a3c40dfad94aed119fcbc18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e072f2111a3c40dfad94aed119fcbc18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e072f2111a3c40dfad94aed119fcbc18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e072f2111a3c40dfad94aed119fcbc18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e072f2111a3c40dfad94aed119fcbc18.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sQHkGVdtWn2LIK83XNTUs-4nIKE=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.506253+00 2025-12-09 10:15:44.506259+00 18265 LZ1383#捆条布 SPMX-20240815313478 \N \N \N 1 \N [{"file_id": "8bee65d8-9475-4d1c-b2d4-004c6d4901a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ddc92b204984a87890085fe59d283d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ddc92b204984a87890085fe59d283d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ddc92b204984a87890085fe59d283d1.jpg", "file_size": 16484, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ddc92b204984a87890085fe59d283d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ddc92b204984a87890085fe59d283d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ddc92b204984a87890085fe59d283d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ddc92b204984a87890085fe59d283d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ddc92b204984a87890085fe59d283d1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bA1uUO_TT1H4OEFzpTuhSrPK0yM=", "createTime": "2024-08-15 15:04:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.509525+00 2025-12-09 10:15:44.50953+00 18266 001#XS SPMX-20240815313493 \N \N \N 1 \N [{"file_id": "6626ce1d-4107-483b-968d-c1ca1e044f04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0c782d2fa114415ae4f1f1512884c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0c782d2fa114415ae4f1f1512884c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0c782d2fa114415ae4f1f1512884c72.jpg", "file_size": 24399, "is_delete": false, "file_type": 1, "original_file_name": "001#XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c782d2fa114415ae4f1f1512884c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c782d2fa114415ae4f1f1512884c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0c782d2fa114415ae4f1f1512884c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0c782d2fa114415ae4f1f1512884c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0c782d2fa114415ae4f1f1512884c72.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:em__3-NF6gIOhyIkG2HJNBbJ6fg=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.512671+00 2025-12-09 10:15:44.512677+00 18267 23233FWF#V5曲线 SPMX-20240815313498 \N \N \N 1 \N [{"file_id": "e1d09e38-6fd8-4655-861f-45058daa510c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a9e295f26184d0c903e099545d494cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a9e295f26184d0c903e099545d494cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a9e295f26184d0c903e099545d494cb.jpg", "file_size": 16167, "is_delete": false, "file_type": 1, "original_file_name": "23233FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9e295f26184d0c903e099545d494cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9e295f26184d0c903e099545d494cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a9e295f26184d0c903e099545d494cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a9e295f26184d0c903e099545d494cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a9e295f26184d0c903e099545d494cb.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7VvQOWLeEGoXiWEKzoAnBF5_GcA=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.515863+00 2025-12-09 10:15:44.51587+00 18268 CCHD311#绿色乱花 SPMX-20240815313496 \N \N \N 1 \N [{"file_id": "4bbeaf74-d2f8-422f-ad1e-8ad0542863ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c664fcb835954b8abdf012bc28e44cfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c664fcb835954b8abdf012bc28e44cfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c664fcb835954b8abdf012bc28e44cfb.jpg", "file_size": 11449, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#绿色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c664fcb835954b8abdf012bc28e44cfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c664fcb835954b8abdf012bc28e44cfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c664fcb835954b8abdf012bc28e44cfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c664fcb835954b8abdf012bc28e44cfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c664fcb835954b8abdf012bc28e44cfb.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WpWz9Iqrgo4ATKNNT1Q5jDdgmkE=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.519078+00 2025-12-09 10:15:44.519084+00 18269 LZ1383#背心款2号色 SPMX-20240815313501 \N \N \N 1 \N [{"file_id": "bbe17105-44ce-43ba-8f6f-6514f5cc6c0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f1463a9fe6f4b9a8972b5692e92337a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f1463a9fe6f4b9a8972b5692e92337a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f1463a9fe6f4b9a8972b5692e92337a.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#背心款2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1463a9fe6f4b9a8972b5692e92337a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1463a9fe6f4b9a8972b5692e92337a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f1463a9fe6f4b9a8972b5692e92337a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f1463a9fe6f4b9a8972b5692e92337a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f1463a9fe6f4b9a8972b5692e92337a.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N63W7qPZwNoCw6EEc_fPxe3k7pc=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:44.522043+00 2025-12-09 10:15:44.52205+00 18270 HXF-0008-B7#2号色 SPMX-20240815313495 \N \N \N 1 \N [{"file_id": "ac92609a-17ee-4142-bb1f-a557363af62e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db7a3bb57834490a8c1f0726b6c942d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db7a3bb57834490a8c1f0726b6c942d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db7a3bb57834490a8c1f0726b6c942d1.jpg", "file_size": 49576, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B7#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db7a3bb57834490a8c1f0726b6c942d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db7a3bb57834490a8c1f0726b6c942d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db7a3bb57834490a8c1f0726b6c942d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db7a3bb57834490a8c1f0726b6c942d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db7a3bb57834490a8c1f0726b6c942d1.jpg?e=1765361743&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDCFd0QbYtvjghVDqdtV5cTMi-s=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.22967+00 2025-12-09 10:15:45.229681+00 18271 1231-35FWF#中童袖领匹布 SPMX-20240815313499 \N \N \N 1 \N [{"file_id": "ee3e8be6-28bb-4afa-b311-899b01346de2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38b01658b14c4964952023e0136708f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38b01658b14c4964952023e0136708f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38b01658b14c4964952023e0136708f0.jpg", "file_size": 15196, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b01658b14c4964952023e0136708f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b01658b14c4964952023e0136708f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38b01658b14c4964952023e0136708f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38b01658b14c4964952023e0136708f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38b01658b14c4964952023e0136708f0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26MEY6gI7Z4rl6rPZ9CMqy841BM=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.234309+00 2025-12-09 10:15:45.234316+00 18272 LJH1923#玫红 SPMX-20240815313494 \N \N \N 1 \N [{"file_id": "b8b7f6ed-2df2-4ab4-a6cf-1d18f005baff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15a8f4ba68574207a39cf6e80144d482.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15a8f4ba68574207a39cf6e80144d482.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15a8f4ba68574207a39cf6e80144d482.jpg", "file_size": 64134, "is_delete": false, "file_type": 1, "original_file_name": "LJH1923#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a8f4ba68574207a39cf6e80144d482.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a8f4ba68574207a39cf6e80144d482.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a8f4ba68574207a39cf6e80144d482.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15a8f4ba68574207a39cf6e80144d482.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15a8f4ba68574207a39cf6e80144d482.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WMMZ2hic9ij7fNW5Tahd2TGt_lQ=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.237923+00 2025-12-09 10:15:45.23793+00 18273 FX0003-46#RC23 SPMX-20240815313502 \N \N \N 1 \N [{"file_id": "200d671b-431d-4b6a-a8be-58a9bdc00003", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4f1c63114db4e148ebf63d09b9e3a90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4f1c63114db4e148ebf63d09b9e3a90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4f1c63114db4e148ebf63d09b9e3a90.jpg", "file_size": 11040, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-46#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f1c63114db4e148ebf63d09b9e3a90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f1c63114db4e148ebf63d09b9e3a90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f1c63114db4e148ebf63d09b9e3a90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4f1c63114db4e148ebf63d09b9e3a90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4f1c63114db4e148ebf63d09b9e3a90.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aldH3nlYyidwmx1I_tvxAYEOrpo=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.241165+00 2025-12-09 10:15:45.241171+00 18274 8620-9#1号色 SPMX-20240815313497 \N \N \N 1 \N [{"file_id": "6e9eb4ad-2272-4bde-b117-99ebc3388dd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94debea4b3094329a3d29ff1ab732928.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94debea4b3094329a3d29ff1ab732928.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94debea4b3094329a3d29ff1ab732928.jpg", "file_size": 18021, "is_delete": false, "file_type": 1, "original_file_name": "8620-9#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94debea4b3094329a3d29ff1ab732928.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94debea4b3094329a3d29ff1ab732928.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94debea4b3094329a3d29ff1ab732928.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94debea4b3094329a3d29ff1ab732928.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94debea4b3094329a3d29ff1ab732928.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gts4McRV_xemdXt-X5vTZG2voRc=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.244255+00 2025-12-09 10:15:45.244261+00 18275 DL3263#短款袖子墨绿 SPMX-20240815313492 \N \N \N 1 \N [{"file_id": "d84d11a0-7756-437a-befa-9a84706ff2b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57fbceb49db9439280f15fc2696a0fa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57fbceb49db9439280f15fc2696a0fa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57fbceb49db9439280f15fc2696a0fa4.jpg", "file_size": 11921, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款袖子墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fbceb49db9439280f15fc2696a0fa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fbceb49db9439280f15fc2696a0fa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57fbceb49db9439280f15fc2696a0fa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57fbceb49db9439280f15fc2696a0fa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57fbceb49db9439280f15fc2696a0fa4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8OgvgmFIaqi-TIC79l74GP3WYM=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.247294+00 2025-12-09 10:15:45.247301+00 18276 DL3263#短款袖子彩兰 SPMX-20240815313503 \N \N \N 1 \N [{"file_id": "b03953a1-3a84-47c0-a941-be2c54d2d13a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7cae96ac3cc454db748c2349c2d58ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7cae96ac3cc454db748c2349c2d58ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7cae96ac3cc454db748c2349c2d58ae.jpg", "file_size": 12390, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7cae96ac3cc454db748c2349c2d58ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7cae96ac3cc454db748c2349c2d58ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7cae96ac3cc454db748c2349c2d58ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7cae96ac3cc454db748c2349c2d58ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7cae96ac3cc454db748c2349c2d58ae.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9O_wTXdDMjlMNnmx7mAzqvNwhA8=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.250262+00 2025-12-09 10:15:45.250268+00 18277 JTSS881FWE#VS-D3 SPMX-20240815313500 \N \N \N 1 \N [{"file_id": "124c6d51-d0ba-4a36-b54f-5d0f1c080266", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49570e31abd845a3aac10b5476968f8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49570e31abd845a3aac10b5476968f8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49570e31abd845a3aac10b5476968f8c.jpg", "file_size": 16123, "is_delete": false, "file_type": 1, "original_file_name": "JTSS881FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49570e31abd845a3aac10b5476968f8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49570e31abd845a3aac10b5476968f8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49570e31abd845a3aac10b5476968f8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49570e31abd845a3aac10b5476968f8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49570e31abd845a3aac10b5476968f8c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfgrB5CALcd6CG4rS86iS19orKg=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.253236+00 2025-12-09 10:15:45.253242+00 18278 LJH1923#紫色 SPMX-20240815313507 \N \N \N 1 \N [{"file_id": "3e472364-c30d-4fb8-9fa7-82da1d4b2354", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65a61bca06ae4adf96cb5f7e871d4e85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65a61bca06ae4adf96cb5f7e871d4e85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65a61bca06ae4adf96cb5f7e871d4e85.jpg", "file_size": 63903, "is_delete": false, "file_type": 1, "original_file_name": "LJH1923#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a61bca06ae4adf96cb5f7e871d4e85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a61bca06ae4adf96cb5f7e871d4e85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a61bca06ae4adf96cb5f7e871d4e85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65a61bca06ae4adf96cb5f7e871d4e85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65a61bca06ae4adf96cb5f7e871d4e85.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7tuPabejso9us17R8fMyCPABOUA=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.256172+00 2025-12-09 10:15:45.256178+00 18279 HXF-0008-B7#3号色 SPMX-20240815313505 \N \N \N 1 \N [{"file_id": "3cda18fc-784c-47e5-9218-76b48b6fa160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "967bf470fab54d06a3224e9640cb6d26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "967bf470fab54d06a3224e9640cb6d26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "967bf470fab54d06a3224e9640cb6d26.jpg", "file_size": 50243, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B7#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/967bf470fab54d06a3224e9640cb6d26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/967bf470fab54d06a3224e9640cb6d26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/967bf470fab54d06a3224e9640cb6d26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/967bf470fab54d06a3224e9640cb6d26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/967bf470fab54d06a3224e9640cb6d26.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gdLrKrwM5yZazWBWZTWFHsNrHtk=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.259247+00 2025-12-09 10:15:45.259254+00 18280 CCHD311#蓝色L SPMX-20240815313509 \N \N \N 1 \N [{"file_id": "1f10f13b-fdbb-42fc-af38-d02903f90afd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d00923ca3adf4974991e54fe4cae6417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d00923ca3adf4974991e54fe4cae6417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d00923ca3adf4974991e54fe4cae6417.jpg", "file_size": 20788, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00923ca3adf4974991e54fe4cae6417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00923ca3adf4974991e54fe4cae6417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00923ca3adf4974991e54fe4cae6417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d00923ca3adf4974991e54fe4cae6417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d00923ca3adf4974991e54fe4cae6417.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4DI4ZhYuxA9Fze8RTcU9FTjbvM=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.26227+00 2025-12-09 10:15:45.262276+00 18281 001#彩蓝 SPMX-20240815313504 \N \N \N 1 \N [{"file_id": "c10e68c2-4ab4-45ed-9a43-a82cbe6b7678", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef9fc98860d4861bf70593a4ea3c638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef9fc98860d4861bf70593a4ea3c638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef9fc98860d4861bf70593a4ea3c638.jpg", "file_size": 41906, "is_delete": false, "file_type": 1, "original_file_name": "001#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef9fc98860d4861bf70593a4ea3c638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef9fc98860d4861bf70593a4ea3c638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef9fc98860d4861bf70593a4ea3c638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef9fc98860d4861bf70593a4ea3c638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef9fc98860d4861bf70593a4ea3c638.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaRMQ73yjvWPKEmYdONvsArNbHY=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.265892+00 2025-12-09 10:15:45.265898+00 18282 8620-9#2号色 SPMX-20240815313506 \N \N \N 1 \N [{"file_id": "79400857-9b4b-464d-bf2d-f621412cfd87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0af77a158c64e4886f727f4d7ce363c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0af77a158c64e4886f727f4d7ce363c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0af77a158c64e4886f727f4d7ce363c.jpg", "file_size": 18491, "is_delete": false, "file_type": 1, "original_file_name": "8620-9#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0af77a158c64e4886f727f4d7ce363c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0af77a158c64e4886f727f4d7ce363c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0af77a158c64e4886f727f4d7ce363c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0af77a158c64e4886f727f4d7ce363c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0af77a158c64e4886f727f4d7ce363c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q4-ZxSj3m9QjabLSVQGlxclRqnE=", "createTime": "2024-08-15 15:04:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.269109+00 2025-12-09 10:15:45.269115+00 18283 23233FWF#匹布 SPMX-20240815313510 \N \N \N 1 \N [{"file_id": "bc81ca22-5db9-4758-a6b1-e415f0806b25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db6916ddc6004ba693f8e85027a71b8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db6916ddc6004ba693f8e85027a71b8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db6916ddc6004ba693f8e85027a71b8d.jpg", "file_size": 10668, "is_delete": false, "file_type": 1, "original_file_name": "23233FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db6916ddc6004ba693f8e85027a71b8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db6916ddc6004ba693f8e85027a71b8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db6916ddc6004ba693f8e85027a71b8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db6916ddc6004ba693f8e85027a71b8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db6916ddc6004ba693f8e85027a71b8d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmgqvfnsRXSCCCSYrGsxoLE_Rhw=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.272033+00 2025-12-09 10:15:45.272037+00 18284 1231-35FWF#小童6码 SPMX-20240815313508 \N \N \N 1 \N [{"file_id": "e7337544-10a0-4143-8d9a-61c880f2299e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33e7a80ec5f84f648b7a38615b9b7e13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33e7a80ec5f84f648b7a38615b9b7e13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33e7a80ec5f84f648b7a38615b9b7e13.jpg", "file_size": 21412, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7a80ec5f84f648b7a38615b9b7e13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7a80ec5f84f648b7a38615b9b7e13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33e7a80ec5f84f648b7a38615b9b7e13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33e7a80ec5f84f648b7a38615b9b7e13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33e7a80ec5f84f648b7a38615b9b7e13.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OO_xHIwBR4h0AN_sgBQbsk6rJFY=", "createTime": "2024-08-15 15:04:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.274696+00 2025-12-09 10:15:45.274701+00 18285 001#捆条 SPMX-20240815313512 \N \N \N 1 \N [{"file_id": "922250c7-9fa6-4117-acc7-e46eb0deb2d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6ab4ba5fab41fcb0902b8b10218db5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6ab4ba5fab41fcb0902b8b10218db5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6ab4ba5fab41fcb0902b8b10218db5.jpg", "file_size": 10827, "is_delete": false, "file_type": 1, "original_file_name": "001#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6ab4ba5fab41fcb0902b8b10218db5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6ab4ba5fab41fcb0902b8b10218db5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6ab4ba5fab41fcb0902b8b10218db5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6ab4ba5fab41fcb0902b8b10218db5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6ab4ba5fab41fcb0902b8b10218db5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cleUuVIFQe5IFrWlC0U8jPS-miM=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.277304+00 2025-12-09 10:15:45.277309+00 18286 23235FWF#匹布 SPMX-20240815313513 \N \N \N 1 \N [{"file_id": "38dcb8dd-65a5-401a-afda-942f0cdcdc86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac06024a38c54dc98b39b92401421b01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac06024a38c54dc98b39b92401421b01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac06024a38c54dc98b39b92401421b01.jpg", "file_size": 19016, "is_delete": false, "file_type": 1, "original_file_name": "23235FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac06024a38c54dc98b39b92401421b01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac06024a38c54dc98b39b92401421b01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac06024a38c54dc98b39b92401421b01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac06024a38c54dc98b39b92401421b01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac06024a38c54dc98b39b92401421b01.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PSU4v2fYX5rjzCZJlVupnQjUM-s=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.279891+00 2025-12-09 10:15:45.279895+00 18287 JTSS882FWE#VS-D3 SPMX-20240815313514 \N \N \N 1 \N [{"file_id": "c17044e4-a35c-41ac-8169-a14f63621566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5eac2bfc1baf4202b126045b84abb156.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5eac2bfc1baf4202b126045b84abb156.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5eac2bfc1baf4202b126045b84abb156.jpg", "file_size": 15550, "is_delete": false, "file_type": 1, "original_file_name": "JTSS882FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eac2bfc1baf4202b126045b84abb156.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eac2bfc1baf4202b126045b84abb156.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eac2bfc1baf4202b126045b84abb156.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5eac2bfc1baf4202b126045b84abb156.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5eac2bfc1baf4202b126045b84abb156.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZzGn8DoFCbO771rlO4lvITMNcns=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.282632+00 2025-12-09 10:15:45.282637+00 18288 1231-35FWF#小童8码+4码 SPMX-20240815313517 \N \N \N 1 \N [{"file_id": "ba212c99-c8e7-42ee-94ca-cbae4d63941a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "095eb695d18c479983ccfe4671ecfad0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "095eb695d18c479983ccfe4671ecfad0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "095eb695d18c479983ccfe4671ecfad0.jpg", "file_size": 21849, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095eb695d18c479983ccfe4671ecfad0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095eb695d18c479983ccfe4671ecfad0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095eb695d18c479983ccfe4671ecfad0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/095eb695d18c479983ccfe4671ecfad0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/095eb695d18c479983ccfe4671ecfad0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UxV4VHkfSAKZQMGEavb1uaJI2Fw=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.285568+00 2025-12-09 10:15:45.285573+00 18289 LJH1923#绿色 SPMX-20240815313520 \N \N \N 1 \N [{"file_id": "828002c4-05ff-45f7-8b70-59359a0ac100", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be50094ce0a7463cba034a35e40b7370.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be50094ce0a7463cba034a35e40b7370.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be50094ce0a7463cba034a35e40b7370.jpg", "file_size": 65723, "is_delete": false, "file_type": 1, "original_file_name": "LJH1923#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be50094ce0a7463cba034a35e40b7370.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be50094ce0a7463cba034a35e40b7370.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be50094ce0a7463cba034a35e40b7370.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be50094ce0a7463cba034a35e40b7370.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be50094ce0a7463cba034a35e40b7370.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4cnQcxdsIMwmStB4mY8QIOQYWCc=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.288212+00 2025-12-09 10:15:45.288217+00 18290 DL3263#短款袖子玫红 SPMX-20240815313521 \N \N \N 1 \N [{"file_id": "65115832-a1e5-4ac4-a4eb-fa07f6ccfcbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80b1e4bcf8c34340b2574cdd2714000a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80b1e4bcf8c34340b2574cdd2714000a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80b1e4bcf8c34340b2574cdd2714000a.jpg", "file_size": 12098, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款袖子玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b1e4bcf8c34340b2574cdd2714000a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b1e4bcf8c34340b2574cdd2714000a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b1e4bcf8c34340b2574cdd2714000a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80b1e4bcf8c34340b2574cdd2714000a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80b1e4bcf8c34340b2574cdd2714000a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StGdTl1eFZQlJ958-GeZ3pJJ6u0=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.290845+00 2025-12-09 10:15:45.29085+00 18291 LZ1383#背心款3号色 SPMX-20240815313511 \N \N \N 1 \N [{"file_id": "64a858a5-2829-4728-8ddf-853fe5061e3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a1d2cb934c14cf391ebccbb5fb01444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a1d2cb934c14cf391ebccbb5fb01444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a1d2cb934c14cf391ebccbb5fb01444.jpg", "file_size": 18318, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#背心款3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1d2cb934c14cf391ebccbb5fb01444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1d2cb934c14cf391ebccbb5fb01444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a1d2cb934c14cf391ebccbb5fb01444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a1d2cb934c14cf391ebccbb5fb01444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a1d2cb934c14cf391ebccbb5fb01444.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oCdOUMcR48UDXhLLvyKPROUgIA=", "createTime": "2024-08-15 15:04:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.293406+00 2025-12-09 10:15:45.293411+00 18292 CCHD311#蓝色M SPMX-20240815313515 \N \N \N 1 \N [{"file_id": "0c6f3bfd-cffd-4daa-aa50-70c168551f5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "facdff14bedf4251bea7539f9a22f324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "facdff14bedf4251bea7539f9a22f324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "facdff14bedf4251bea7539f9a22f324.jpg", "file_size": 20257, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facdff14bedf4251bea7539f9a22f324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facdff14bedf4251bea7539f9a22f324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/facdff14bedf4251bea7539f9a22f324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/facdff14bedf4251bea7539f9a22f324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/facdff14bedf4251bea7539f9a22f324.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAoPVhJjcajlBWMUvpnWS8yDmjo=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.295997+00 2025-12-09 10:15:45.296002+00 18293 HXF-0008-B8#1号色 SPMX-20240815313518 \N \N \N 1 \N [{"file_id": "72e6ef9c-3218-4560-b4ba-f62810622a2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6e548a3f8674928b40516e788f8d2b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6e548a3f8674928b40516e788f8d2b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6e548a3f8674928b40516e788f8d2b3.jpg", "file_size": 58925, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B8#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e548a3f8674928b40516e788f8d2b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e548a3f8674928b40516e788f8d2b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e548a3f8674928b40516e788f8d2b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6e548a3f8674928b40516e788f8d2b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6e548a3f8674928b40516e788f8d2b3.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRGGIK9xZMNKbHn5mJsbEV0FxRA=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.298545+00 2025-12-09 10:15:45.298549+00 18294 FX0003-47#RC23 SPMX-20240815313516 \N \N \N 1 \N [{"file_id": "7bb61420-653b-4988-b7df-dc5325306067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfc0c56cfc6244d38117a98ae3ac180f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfc0c56cfc6244d38117a98ae3ac180f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfc0c56cfc6244d38117a98ae3ac180f.jpg", "file_size": 11220, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-47#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc0c56cfc6244d38117a98ae3ac180f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc0c56cfc6244d38117a98ae3ac180f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc0c56cfc6244d38117a98ae3ac180f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfc0c56cfc6244d38117a98ae3ac180f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfc0c56cfc6244d38117a98ae3ac180f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8hIs6FuJvYucdB6WuFUwGuUz2yc=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.301135+00 2025-12-09 10:15:45.30114+00 18295 8620-9#3号色 SPMX-20240815313519 \N \N \N 1 \N [{"file_id": "6b48acb1-abea-4266-82cd-4483cebf4fab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55a70791515047e1b868763969e84bb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55a70791515047e1b868763969e84bb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55a70791515047e1b868763969e84bb2.jpg", "file_size": 18142, "is_delete": false, "file_type": 1, "original_file_name": "8620-9#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a70791515047e1b868763969e84bb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a70791515047e1b868763969e84bb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55a70791515047e1b868763969e84bb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55a70791515047e1b868763969e84bb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55a70791515047e1b868763969e84bb2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gtSw0ViiX42f70ei5e_eoABhRU=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.30381+00 2025-12-09 10:15:45.303814+00 18296 LZ1383#背心款4号色 SPMX-20240815313522 \N \N \N 1 \N [{"file_id": "ecf7f295-f77e-4bde-a807-84f8c341e200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6e89239d3f4a578d1fca65581febb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6e89239d3f4a578d1fca65581febb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6e89239d3f4a578d1fca65581febb0.jpg", "file_size": 18924, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#背心款4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6e89239d3f4a578d1fca65581febb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6e89239d3f4a578d1fca65581febb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6e89239d3f4a578d1fca65581febb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6e89239d3f4a578d1fca65581febb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6e89239d3f4a578d1fca65581febb0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQwO5__njEH4jQUckh0sdP657mY=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.306547+00 2025-12-09 10:15:45.306553+00 18297 23235FWF#连衣裙 SPMX-20240815313525 \N \N \N 1 \N [{"file_id": "9aae1316-43c5-46d9-bb7d-7186428cb714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "334fdf3f672b41bbb4206d4cbb010f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "334fdf3f672b41bbb4206d4cbb010f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "334fdf3f672b41bbb4206d4cbb010f59.jpg", "file_size": 17236, "is_delete": false, "file_type": 1, "original_file_name": "23235FWF#连衣裙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334fdf3f672b41bbb4206d4cbb010f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334fdf3f672b41bbb4206d4cbb010f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/334fdf3f672b41bbb4206d4cbb010f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/334fdf3f672b41bbb4206d4cbb010f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/334fdf3f672b41bbb4206d4cbb010f59.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QcGi2rcgzHlRJgeravsigoUopXc=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.309423+00 2025-12-09 10:15:45.309428+00 18298 HXF-0008-B8#2号色 SPMX-20240815313529 \N \N \N 1 \N [{"file_id": "61bffc64-1ac1-470d-81a3-0823b0f73dd0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58e82512f8aa4f1a89981a48f54ed39a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58e82512f8aa4f1a89981a48f54ed39a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58e82512f8aa4f1a89981a48f54ed39a.jpg", "file_size": 55591, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B8#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e82512f8aa4f1a89981a48f54ed39a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e82512f8aa4f1a89981a48f54ed39a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e82512f8aa4f1a89981a48f54ed39a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58e82512f8aa4f1a89981a48f54ed39a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58e82512f8aa4f1a89981a48f54ed39a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1vtojFZYU8nOUbmtEcxlMvbLCNE=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.31203+00 2025-12-09 10:15:45.312034+00 18299 FX0003-48#RC23 SPMX-20240815313527 \N \N \N 1 \N [{"file_id": "190b78cf-a10a-4998-a5ad-d476ad1ab999", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc8944da3d3b40339eef1ed4ca822e96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc8944da3d3b40339eef1ed4ca822e96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc8944da3d3b40339eef1ed4ca822e96.jpg", "file_size": 24004, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-48#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8944da3d3b40339eef1ed4ca822e96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8944da3d3b40339eef1ed4ca822e96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8944da3d3b40339eef1ed4ca822e96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc8944da3d3b40339eef1ed4ca822e96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc8944da3d3b40339eef1ed4ca822e96.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJ7SxfyYBifkGN6skHyFGDCLgIA=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.314572+00 2025-12-09 10:15:45.314576+00 18300 CCHD311#蓝色XL SPMX-20240815313526 \N \N \N 1 \N [{"file_id": "bc25bd7d-fd48-4d47-899f-909db4bc3af2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc7c83b5e40a4e1dbb51da603b2a4a37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc7c83b5e40a4e1dbb51da603b2a4a37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc7c83b5e40a4e1dbb51da603b2a4a37.jpg", "file_size": 21350, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7c83b5e40a4e1dbb51da603b2a4a37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7c83b5e40a4e1dbb51da603b2a4a37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc7c83b5e40a4e1dbb51da603b2a4a37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc7c83b5e40a4e1dbb51da603b2a4a37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc7c83b5e40a4e1dbb51da603b2a4a37.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbWPmM6JGdt5IeUKkBqnhW5atX0=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.317157+00 2025-12-09 10:15:45.317161+00 18301 001#橙色 SPMX-20240815313524 \N \N \N 1 \N [{"file_id": "9516601f-dac2-44a1-a060-1e7c60e592db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55174752d86d45d79e83d8e7945cf876.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55174752d86d45d79e83d8e7945cf876.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55174752d86d45d79e83d8e7945cf876.jpg", "file_size": 43685, "is_delete": false, "file_type": 1, "original_file_name": "001#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55174752d86d45d79e83d8e7945cf876.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55174752d86d45d79e83d8e7945cf876.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55174752d86d45d79e83d8e7945cf876.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55174752d86d45d79e83d8e7945cf876.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55174752d86d45d79e83d8e7945cf876.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-LoxeM3sAg9EEh9BT1HyNhqGLz4=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.319723+00 2025-12-09 10:15:45.319728+00 18302 JTSS883FWE#VS-D3 SPMX-20240815313523 \N \N \N 1 \N [{"file_id": "36d644f7-e7a1-42ca-b09f-3be97df5e246", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c9ee7e9799b423c9ad87d68857e22bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c9ee7e9799b423c9ad87d68857e22bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c9ee7e9799b423c9ad87d68857e22bf.jpg", "file_size": 19664, "is_delete": false, "file_type": 1, "original_file_name": "JTSS883FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9ee7e9799b423c9ad87d68857e22bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9ee7e9799b423c9ad87d68857e22bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9ee7e9799b423c9ad87d68857e22bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c9ee7e9799b423c9ad87d68857e22bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c9ee7e9799b423c9ad87d68857e22bf.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tNmmvbWd3xwI95U4EOfynfFi7fw=", "createTime": "2024-08-15 15:04:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.322277+00 2025-12-09 10:15:45.322281+00 18303 DL3263#短款袖子黄色 SPMX-20240815313530 \N \N \N 1 \N [{"file_id": "022454e8-089c-4995-b627-6e292e18a6d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b71e8becbee40c6a9d9d77ab11ba326.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b71e8becbee40c6a9d9d77ab11ba326.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b71e8becbee40c6a9d9d77ab11ba326.jpg", "file_size": 12629, "is_delete": false, "file_type": 1, "original_file_name": "DL3263#短款袖子黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b71e8becbee40c6a9d9d77ab11ba326.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b71e8becbee40c6a9d9d77ab11ba326.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b71e8becbee40c6a9d9d77ab11ba326.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b71e8becbee40c6a9d9d77ab11ba326.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b71e8becbee40c6a9d9d77ab11ba326.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLpMbREtllz6t7rihbQWTU_1TpU=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.324832+00 2025-12-09 10:15:45.324836+00 18304 1231-35FWF#小童袖领匹布 SPMX-20240815313528 \N \N \N 1 \N [{"file_id": "d671ac9b-f318-4635-af27-649828a088c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bc0e1f79a574c2a89a8840cd9e12acd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bc0e1f79a574c2a89a8840cd9e12acd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bc0e1f79a574c2a89a8840cd9e12acd.jpg", "file_size": 15185, "is_delete": false, "file_type": 1, "original_file_name": "1231-35FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc0e1f79a574c2a89a8840cd9e12acd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc0e1f79a574c2a89a8840cd9e12acd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc0e1f79a574c2a89a8840cd9e12acd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bc0e1f79a574c2a89a8840cd9e12acd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bc0e1f79a574c2a89a8840cd9e12acd.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:szDHV90RaR-28p7HDNJktveUZEk=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.327425+00 2025-12-09 10:15:45.327431+00 18305 8620.8621WJC22# SPMX-20240815313531 \N \N \N 1 \N [{"file_id": "d515e761-5eda-4ddd-b47e-0f4111191c1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "824b6f4494f941118fca48a3895a22c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "824b6f4494f941118fca48a3895a22c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "824b6f4494f941118fca48a3895a22c2.jpg", "file_size": 10044, "is_delete": false, "file_type": 1, "original_file_name": "8620.8621WJC22#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824b6f4494f941118fca48a3895a22c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824b6f4494f941118fca48a3895a22c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/824b6f4494f941118fca48a3895a22c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/824b6f4494f941118fca48a3895a22c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/824b6f4494f941118fca48a3895a22c2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:unTZJv0xBv9jfu11nJN4aDX63Yk=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.330091+00 2025-12-09 10:15:45.330097+00 18306 LJH1925#桔色 SPMX-20240815313532 \N \N \N 1 \N [{"file_id": "109b9332-2e4c-4a9f-8fa7-ac7e615142dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "627167d8b5934371bfee65ec28ff49fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "627167d8b5934371bfee65ec28ff49fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "627167d8b5934371bfee65ec28ff49fe.jpg", "file_size": 78077, "is_delete": false, "file_type": 1, "original_file_name": "LJH1925#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627167d8b5934371bfee65ec28ff49fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627167d8b5934371bfee65ec28ff49fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/627167d8b5934371bfee65ec28ff49fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/627167d8b5934371bfee65ec28ff49fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/627167d8b5934371bfee65ec28ff49fe.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBgbZBr6laCUeEE8QyrciTyiJGE=", "createTime": "2024-08-15 15:04:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.332848+00 2025-12-09 10:15:45.332853+00 18307 862FWE#VS-D3 SPMX-20240815313539 \N \N \N 1 \N [{"file_id": "2068d7ea-8d97-4ee3-b047-1549e7b17ce8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b56cbf6e73674bd78ed606c8049a4f45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b56cbf6e73674bd78ed606c8049a4f45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b56cbf6e73674bd78ed606c8049a4f45.jpg", "file_size": 12376, "is_delete": false, "file_type": 1, "original_file_name": "862FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cbf6e73674bd78ed606c8049a4f45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cbf6e73674bd78ed606c8049a4f45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cbf6e73674bd78ed606c8049a4f45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b56cbf6e73674bd78ed606c8049a4f45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b56cbf6e73674bd78ed606c8049a4f45.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZlObi3hefDpqsil3TXAaJDzaNA=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.335443+00 2025-12-09 10:15:45.335448+00 18308 1231-36FWF#中童12码+10码 SPMX-20240815313541 \N \N \N 1 \N [{"file_id": "39bef3bd-7ee4-4815-ba4d-2cb7e87de9f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8a2b5eb19ea442bb6c299f3bab7400a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8a2b5eb19ea442bb6c299f3bab7400a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8a2b5eb19ea442bb6c299f3bab7400a.jpg", "file_size": 19824, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a2b5eb19ea442bb6c299f3bab7400a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a2b5eb19ea442bb6c299f3bab7400a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a2b5eb19ea442bb6c299f3bab7400a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8a2b5eb19ea442bb6c299f3bab7400a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8a2b5eb19ea442bb6c299f3bab7400a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jo6QdjwRcxJjvCJD6ZOBGUgj22w=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.338036+00 2025-12-09 10:15:45.33804+00 18309 HXF-0008-B8#3号色 SPMX-20240815313543 \N \N \N 1 \N [{"file_id": "aee824a6-3b36-44d6-9c02-ea57266a7b61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8af3462deb1744d08433aeeb16da7eb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8af3462deb1744d08433aeeb16da7eb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8af3462deb1744d08433aeeb16da7eb4.jpg", "file_size": 55930, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B8#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af3462deb1744d08433aeeb16da7eb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af3462deb1744d08433aeeb16da7eb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8af3462deb1744d08433aeeb16da7eb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8af3462deb1744d08433aeeb16da7eb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8af3462deb1744d08433aeeb16da7eb4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcXXl9iU4fw3ojjif6GNSd0Od8M=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.340517+00 2025-12-09 10:15:45.340522+00 18310 DL3312#前后幅彩兰 SPMX-20240815313540 \N \N \N 1 \N [{"file_id": "661b1c35-acee-4180-b0bc-7cec46c661d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "715e5f556b4d42108149aa555e2f5abd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "715e5f556b4d42108149aa555e2f5abd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "715e5f556b4d42108149aa555e2f5abd.jpg", "file_size": 16682, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#前后幅彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715e5f556b4d42108149aa555e2f5abd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715e5f556b4d42108149aa555e2f5abd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/715e5f556b4d42108149aa555e2f5abd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/715e5f556b4d42108149aa555e2f5abd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/715e5f556b4d42108149aa555e2f5abd.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kkiv0OLy2DdynHt5WEdY4Zvx3gQ=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.343033+00 2025-12-09 10:15:45.343038+00 18311 JTSS884FWE#VS-D3 SPMX-20240815313535 \N \N \N 1 \N [{"file_id": "41b35b33-e083-435d-bcaa-6455ce0616e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ff71906103a473c946bb2b9aa4f70f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ff71906103a473c946bb2b9aa4f70f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ff71906103a473c946bb2b9aa4f70f4.jpg", "file_size": 16654, "is_delete": false, "file_type": 1, "original_file_name": "JTSS884FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff71906103a473c946bb2b9aa4f70f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff71906103a473c946bb2b9aa4f70f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff71906103a473c946bb2b9aa4f70f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ff71906103a473c946bb2b9aa4f70f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ff71906103a473c946bb2b9aa4f70f4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJjojouK_F7EXn_2JWVtWGmx4QM=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.345594+00 2025-12-09 10:15:45.345598+00 18312 CCHD311#黄色L SPMX-20240815313544 \N \N \N 1 \N [{"file_id": "382c539b-636f-40d6-896d-ba9796edb577", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6036f9fd7e74f7a96bbf04d0cd2b722.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6036f9fd7e74f7a96bbf04d0cd2b722.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6036f9fd7e74f7a96bbf04d0cd2b722.jpg", "file_size": 18647, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6036f9fd7e74f7a96bbf04d0cd2b722.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6036f9fd7e74f7a96bbf04d0cd2b722.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6036f9fd7e74f7a96bbf04d0cd2b722.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6036f9fd7e74f7a96bbf04d0cd2b722.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6036f9fd7e74f7a96bbf04d0cd2b722.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKQdHUwFOwtpxUQlOScFP-PIe8A=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.348167+00 2025-12-09 10:15:45.348171+00 18313 2323FWF#竖纹版本 SPMX-20240815313542 \N \N \N 1 \N [{"file_id": "8ac8e266-842e-4d6b-95d6-c31a5dcaade0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30c064c308814cb0867ed640e6cc2515.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30c064c308814cb0867ed640e6cc2515.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30c064c308814cb0867ed640e6cc2515.jpg", "file_size": 15321, "is_delete": false, "file_type": 1, "original_file_name": "2323FWF#竖纹版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c064c308814cb0867ed640e6cc2515.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c064c308814cb0867ed640e6cc2515.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c064c308814cb0867ed640e6cc2515.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30c064c308814cb0867ed640e6cc2515.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30c064c308814cb0867ed640e6cc2515.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0da8jl5n6HgqwBxPUvxrmZ5i7XE=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.35072+00 2025-12-09 10:15:45.350725+00 18314 CCHD311#蓝色乱花 SPMX-20240815313534 \N \N \N 1 \N [{"file_id": "90eefa97-7ea3-4d7f-a51f-5a55cc35b2fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "304911b014b94e84a951af4d1e79d6ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "304911b014b94e84a951af4d1e79d6ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "304911b014b94e84a951af4d1e79d6ae.jpg", "file_size": 15429, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#蓝色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304911b014b94e84a951af4d1e79d6ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304911b014b94e84a951af4d1e79d6ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304911b014b94e84a951af4d1e79d6ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/304911b014b94e84a951af4d1e79d6ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/304911b014b94e84a951af4d1e79d6ae.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pAuD8oPeADl6ry4dUkJNiBuDiKk=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.353058+00 2025-12-09 10:15:45.353062+00 18315 FX0003-49#RC23 SPMX-20240815313537 \N \N \N 1 \N [{"file_id": "364e5829-7adc-4eca-bb22-dcc9d31b8b70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83c78f3804c1470ebca944aa962efb4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83c78f3804c1470ebca944aa962efb4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83c78f3804c1470ebca944aa962efb4d.jpg", "file_size": 27031, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-49#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83c78f3804c1470ebca944aa962efb4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83c78f3804c1470ebca944aa962efb4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83c78f3804c1470ebca944aa962efb4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83c78f3804c1470ebca944aa962efb4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83c78f3804c1470ebca944aa962efb4d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svIy99yznpo67aQ-ivHyz53iKp0=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.356077+00 2025-12-09 10:15:45.356084+00 18316 2323FWF#横纹版本 SPMX-20240815313533 \N \N \N 1 \N [{"file_id": "0bdf6bad-102a-450f-bd71-8cf7ecb68652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac3c86c5a3d34bccb4a473a84b65bcc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac3c86c5a3d34bccb4a473a84b65bcc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac3c86c5a3d34bccb4a473a84b65bcc5.jpg", "file_size": 7123, "is_delete": false, "file_type": 1, "original_file_name": "2323FWF#横纹版本.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c86c5a3d34bccb4a473a84b65bcc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c86c5a3d34bccb4a473a84b65bcc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac3c86c5a3d34bccb4a473a84b65bcc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac3c86c5a3d34bccb4a473a84b65bcc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac3c86c5a3d34bccb4a473a84b65bcc5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gWnseNlY-fRcOk_rRBWFvHo0-4U=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.359098+00 2025-12-09 10:15:45.359104+00 18317 001-1FWE#L SPMX-20240815313538 \N \N \N 1 \N [{"file_id": "986d381f-688c-4ded-8c9c-077d50b3a38a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aef1960321d04a2cb05eb72ae2ff9573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aef1960321d04a2cb05eb72ae2ff9573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aef1960321d04a2cb05eb72ae2ff9573.jpg", "file_size": 16842, "is_delete": false, "file_type": 1, "original_file_name": "001-1FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1960321d04a2cb05eb72ae2ff9573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1960321d04a2cb05eb72ae2ff9573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aef1960321d04a2cb05eb72ae2ff9573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aef1960321d04a2cb05eb72ae2ff9573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aef1960321d04a2cb05eb72ae2ff9573.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iGtk5Y4jCMS66KA0UpXafc8LVqA=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.36208+00 2025-12-09 10:15:45.362086+00 18318 LZ1383#背心款5号色 SPMX-20240815313536 \N \N \N 1 \N [{"file_id": "1f058dfd-3f05-45e4-b0ba-923baf03fec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2c6ea43acfd44a8a5ff6666d2adc712.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2c6ea43acfd44a8a5ff6666d2adc712.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2c6ea43acfd44a8a5ff6666d2adc712.jpg", "file_size": 17349, "is_delete": false, "file_type": 1, "original_file_name": "LZ1383#背心款5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6ea43acfd44a8a5ff6666d2adc712.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6ea43acfd44a8a5ff6666d2adc712.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6ea43acfd44a8a5ff6666d2adc712.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2c6ea43acfd44a8a5ff6666d2adc712.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2c6ea43acfd44a8a5ff6666d2adc712.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JtAak76ywu-x2MbT7zDlRqO63rI=", "createTime": "2024-08-15 15:04:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.364892+00 2025-12-09 10:15:45.364897+00 18319 8630#-L码 SPMX-20240815313550 \N \N \N 1 \N [{"file_id": "49689e79-326e-4d7f-9da2-79defdf6b2d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20b7db7e1a4441568d75c6f78288d964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20b7db7e1a4441568d75c6f78288d964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20b7db7e1a4441568d75c6f78288d964.jpg", "file_size": 18007, "is_delete": false, "file_type": 1, "original_file_name": "8630#-L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b7db7e1a4441568d75c6f78288d964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b7db7e1a4441568d75c6f78288d964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20b7db7e1a4441568d75c6f78288d964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20b7db7e1a4441568d75c6f78288d964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20b7db7e1a4441568d75c6f78288d964.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgdbpxRSf1B53etEuAT1i5QLm8A=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.367873+00 2025-12-09 10:15:45.36788+00 18320 001-1FWE#M SPMX-20240815313548 \N \N \N 1 \N [{"file_id": "abaaee16-1f91-4af1-ae08-300bf6cc7360", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c595178ca274355b1d2f5b29db39cb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c595178ca274355b1d2f5b29db39cb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c595178ca274355b1d2f5b29db39cb8.jpg", "file_size": 16921, "is_delete": false, "file_type": 1, "original_file_name": "001-1FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c595178ca274355b1d2f5b29db39cb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c595178ca274355b1d2f5b29db39cb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c595178ca274355b1d2f5b29db39cb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c595178ca274355b1d2f5b29db39cb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c595178ca274355b1d2f5b29db39cb8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sO5xgU7XDN-xCgKrtctQR9ewGRw=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.370921+00 2025-12-09 10:15:45.370928+00 18321 23259-2#蓝色L SPMX-20240815313554 \N \N \N 1 \N [{"file_id": "ce1d6629-801e-4ede-8d3e-3923b6cadc32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53ba361c87fa433f93b15ae5181af62c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53ba361c87fa433f93b15ae5181af62c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53ba361c87fa433f93b15ae5181af62c.jpg", "file_size": 14872, "is_delete": false, "file_type": 1, "original_file_name": "23259-2#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ba361c87fa433f93b15ae5181af62c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ba361c87fa433f93b15ae5181af62c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ba361c87fa433f93b15ae5181af62c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53ba361c87fa433f93b15ae5181af62c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53ba361c87fa433f93b15ae5181af62c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ycFMCE5nwW41JQTVUiY4hrIee5A=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.373889+00 2025-12-09 10:15:45.373895+00 18322 JTSS886FWE#VS-D3 SPMX-20240815313556 \N \N \N 1 \N [{"file_id": "343e6946-b742-431f-9141-b3a632b4338f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c10999987924070bd02f9061436629a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c10999987924070bd02f9061436629a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c10999987924070bd02f9061436629a.jpg", "file_size": 12082, "is_delete": false, "file_type": 1, "original_file_name": "JTSS886FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c10999987924070bd02f9061436629a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c10999987924070bd02f9061436629a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c10999987924070bd02f9061436629a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c10999987924070bd02f9061436629a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c10999987924070bd02f9061436629a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cuB1zNsraJy2wK_U9vWJbXh2D50=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.376784+00 2025-12-09 10:15:45.376791+00 18323 LJH1925#玫红 SPMX-20240815313547 \N \N \N 1 \N [{"file_id": "6ad3b996-0ae7-4a19-8724-29a73c33c042", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13e0326f0338462f88f5ab9baa698f5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13e0326f0338462f88f5ab9baa698f5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13e0326f0338462f88f5ab9baa698f5c.jpg", "file_size": 79219, "is_delete": false, "file_type": 1, "original_file_name": "LJH1925#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e0326f0338462f88f5ab9baa698f5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e0326f0338462f88f5ab9baa698f5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e0326f0338462f88f5ab9baa698f5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13e0326f0338462f88f5ab9baa698f5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13e0326f0338462f88f5ab9baa698f5c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIueH10ILWI2FEq1ZxFNll8_YwY=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.380044+00 2025-12-09 10:15:45.380051+00 18324 FX0003-5#RC23 SPMX-20240815313546 \N \N \N 1 \N [{"file_id": "49172c72-a71b-4dbb-be30-0ac6519b7207", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92342e52badf4dba85ff55766006bd74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92342e52badf4dba85ff55766006bd74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92342e52badf4dba85ff55766006bd74.jpg", "file_size": 22099, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92342e52badf4dba85ff55766006bd74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92342e52badf4dba85ff55766006bd74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92342e52badf4dba85ff55766006bd74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92342e52badf4dba85ff55766006bd74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92342e52badf4dba85ff55766006bd74.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G40HDCfCdMZjxBczX5m92wLRz1k=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.395909+00 2025-12-09 10:15:45.395916+00 18329 JTSS885FWE#VS-D3 SPMX-20240815313545 \N \N \N 1 \N [{"file_id": "a3956392-f21d-47f7-9174-6270e30739fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9270e91af38a43fc8c2ffdd92034718d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9270e91af38a43fc8c2ffdd92034718d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9270e91af38a43fc8c2ffdd92034718d.jpg", "file_size": 19963, "is_delete": false, "file_type": 1, "original_file_name": "JTSS885FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9270e91af38a43fc8c2ffdd92034718d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9270e91af38a43fc8c2ffdd92034718d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9270e91af38a43fc8c2ffdd92034718d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9270e91af38a43fc8c2ffdd92034718d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9270e91af38a43fc8c2ffdd92034718d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cVesZB4L5ldq71t4RgnJDQ4-WgA=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.383939+00 2025-12-09 10:15:45.383945+00 18325 DL3312#前后幅枣红 SPMX-20240815313551 \N \N \N 1 \N [{"file_id": "56ac7aaa-bf29-4398-9b3d-e922de41252c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c051dd5ef6514e7b93f68eaafe8d85ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c051dd5ef6514e7b93f68eaafe8d85ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c051dd5ef6514e7b93f68eaafe8d85ff.jpg", "file_size": 16435, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#前后幅枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c051dd5ef6514e7b93f68eaafe8d85ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c051dd5ef6514e7b93f68eaafe8d85ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c051dd5ef6514e7b93f68eaafe8d85ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c051dd5ef6514e7b93f68eaafe8d85ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c051dd5ef6514e7b93f68eaafe8d85ff.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qFdHZchTOQm_vM1_MKUxF3vZq4A=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.387081+00 2025-12-09 10:15:45.387088+00 18326 001-2FWE#L SPMX-20240815313557 \N \N \N 1 \N [{"file_id": "2d683e07-014f-4439-99a6-cd55fcb0151b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "326315ece8084dd89e26a1899c982139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "326315ece8084dd89e26a1899c982139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "326315ece8084dd89e26a1899c982139.jpg", "file_size": 15793, "is_delete": false, "file_type": 1, "original_file_name": "001-2FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326315ece8084dd89e26a1899c982139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326315ece8084dd89e26a1899c982139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/326315ece8084dd89e26a1899c982139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/326315ece8084dd89e26a1899c982139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/326315ece8084dd89e26a1899c982139.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFw0VQVsM0Tca9DszoB0hs-Tv5U=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.390007+00 2025-12-09 10:15:45.390014+00 18327 1231-36FWF#中童14码 SPMX-20240815313552 \N \N \N 1 \N [{"file_id": "4a36a717-8528-4d95-8a35-67a58711def4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd7cd68682224614ad5f8ffaba2fef9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd7cd68682224614ad5f8ffaba2fef9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd7cd68682224614ad5f8ffaba2fef9d.jpg", "file_size": 18211, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7cd68682224614ad5f8ffaba2fef9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7cd68682224614ad5f8ffaba2fef9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7cd68682224614ad5f8ffaba2fef9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd7cd68682224614ad5f8ffaba2fef9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd7cd68682224614ad5f8ffaba2fef9d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SH0skoncousO0JKhPdYjDQ7ETIk=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.392941+00 2025-12-09 10:15:45.392947+00 18328 LZ1384#背心1号色 SPMX-20240815313558 \N \N \N 1 \N [{"file_id": "39c0d48d-f52f-47a0-b403-9c9dd7915f71", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "786a737f43654fda9830a60588016f28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "786a737f43654fda9830a60588016f28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "786a737f43654fda9830a60588016f28.jpg", "file_size": 18567, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#背心1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786a737f43654fda9830a60588016f28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786a737f43654fda9830a60588016f28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786a737f43654fda9830a60588016f28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/786a737f43654fda9830a60588016f28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/786a737f43654fda9830a60588016f28.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m9ZZBvEXHye3MSKVJinmM16Y4ds=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.398836+00 2025-12-09 10:15:45.398842+00 18330 HXF-0008-B9#RC23 SPMX-20240815313553 \N \N \N 1 \N [{"file_id": "4eb690ae-6cec-4689-9108-3bcc6015136f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a37b1992307a4b8b8401e2e94bb22635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a37b1992307a4b8b8401e2e94bb22635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a37b1992307a4b8b8401e2e94bb22635.jpg", "file_size": 36984, "is_delete": false, "file_type": 1, "original_file_name": "HXF-0008-B9#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a37b1992307a4b8b8401e2e94bb22635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a37b1992307a4b8b8401e2e94bb22635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a37b1992307a4b8b8401e2e94bb22635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a37b1992307a4b8b8401e2e94bb22635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a37b1992307a4b8b8401e2e94bb22635.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFFCRJBBUrERkC9k2zXgrW5-hjE=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.401847+00 2025-12-09 10:15:45.401853+00 18331 LZ1384#捆条布 SPMX-20240815313549 \N \N \N 1 \N [{"file_id": "c26b5872-6dbb-4656-93b9-1dd37ce36df5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ff8fb781018403b9f091295fcfef607.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ff8fb781018403b9f091295fcfef607.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ff8fb781018403b9f091295fcfef607.jpg", "file_size": 18350, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#捆条布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff8fb781018403b9f091295fcfef607.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff8fb781018403b9f091295fcfef607.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff8fb781018403b9f091295fcfef607.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ff8fb781018403b9f091295fcfef607.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ff8fb781018403b9f091295fcfef607.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJm-yAHdPcSgToRqKiIok_lXvF0=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.404832+00 2025-12-09 10:15:45.404839+00 18332 CCHD311#黄色M SPMX-20240815313555 \N \N \N 1 \N [{"file_id": "daba16d5-d171-4b61-b3c1-e704f8d8d490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cf848db171a4a6e838c7c0f66f3350c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cf848db171a4a6e838c7c0f66f3350c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cf848db171a4a6e838c7c0f66f3350c.jpg", "file_size": 18129, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#黄色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cf848db171a4a6e838c7c0f66f3350c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cf848db171a4a6e838c7c0f66f3350c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cf848db171a4a6e838c7c0f66f3350c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cf848db171a4a6e838c7c0f66f3350c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cf848db171a4a6e838c7c0f66f3350c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdny0GMjVWyBBh77BUHeY2BX_Rs=", "createTime": "2024-08-15 15:04:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.407763+00 2025-12-09 10:15:45.407769+00 18333 1231-36FWF#中童袖领匹布 SPMX-20240815313560 \N \N \N 1 \N [{"file_id": "ee33cd26-1a6e-47c5-b182-584bac589050", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9147cf66667e4c37afd83e39ceec7663.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9147cf66667e4c37afd83e39ceec7663.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9147cf66667e4c37afd83e39ceec7663.jpg", "file_size": 16223, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9147cf66667e4c37afd83e39ceec7663.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9147cf66667e4c37afd83e39ceec7663.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9147cf66667e4c37afd83e39ceec7663.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9147cf66667e4c37afd83e39ceec7663.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9147cf66667e4c37afd83e39ceec7663.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eJ_9d8dFk_G_0Lbjb0cbg1-WKq4=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.41069+00 2025-12-09 10:15:45.410696+00 18334 HXF-A-TB013#L码 SPMX-20240815313564 \N \N \N 1 \N [{"file_id": "b450b41c-4838-4ea7-badf-ffa24a4a3453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30ae635265274dd488796b04098c6eca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30ae635265274dd488796b04098c6eca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30ae635265274dd488796b04098c6eca.jpg", "file_size": 16230, "is_delete": false, "file_type": 1, "original_file_name": "HXF-A-TB013#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ae635265274dd488796b04098c6eca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ae635265274dd488796b04098c6eca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ae635265274dd488796b04098c6eca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30ae635265274dd488796b04098c6eca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30ae635265274dd488796b04098c6eca.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WEQA9SrKE4eVUr3VdiPgD9kktQw=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.413838+00 2025-12-09 10:15:45.413845+00 18335 8630#-S码 SPMX-20240815313574 \N \N \N 1 \N [{"file_id": "452ec2a3-bbcf-4e2e-88b6-dec747b87419", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8eec5fb5996148bdafb1e5feb866a68e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8eec5fb5996148bdafb1e5feb866a68e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8eec5fb5996148bdafb1e5feb866a68e.jpg", "file_size": 17983, "is_delete": false, "file_type": 1, "original_file_name": "8630#-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eec5fb5996148bdafb1e5feb866a68e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eec5fb5996148bdafb1e5feb866a68e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eec5fb5996148bdafb1e5feb866a68e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8eec5fb5996148bdafb1e5feb866a68e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8eec5fb5996148bdafb1e5feb866a68e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UBMIc_WwALQAE9acoz2JuTKKLGE=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.41693+00 2025-12-09 10:15:45.416936+00 18336 FX0003-50#RC23 SPMX-20240815313559 \N \N \N 1 \N [{"file_id": "1c92e664-eaff-4a59-b8de-3dbd8f199ed0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6589523728554901b26a1683fc51030c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6589523728554901b26a1683fc51030c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6589523728554901b26a1683fc51030c.jpg", "file_size": 29913, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-50#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589523728554901b26a1683fc51030c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589523728554901b26a1683fc51030c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6589523728554901b26a1683fc51030c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6589523728554901b26a1683fc51030c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6589523728554901b26a1683fc51030c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r0tXOok1R5_1dMKX3S-APf8_jho=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.419933+00 2025-12-09 10:15:45.419941+00 18337 001-2FWE#M SPMX-20240815313568 \N \N \N 1 \N [{"file_id": "4729a695-4f6e-496c-b583-893006edb10e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "600141edce64455cbc9143ee78b56263.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "600141edce64455cbc9143ee78b56263.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "600141edce64455cbc9143ee78b56263.jpg", "file_size": 15911, "is_delete": false, "file_type": 1, "original_file_name": "001-2FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600141edce64455cbc9143ee78b56263.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600141edce64455cbc9143ee78b56263.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/600141edce64455cbc9143ee78b56263.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/600141edce64455cbc9143ee78b56263.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/600141edce64455cbc9143ee78b56263.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ssQyf4ELpWSIUMyGti6efdEUiE=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.422859+00 2025-12-09 10:15:45.422866+00 18338 LZ1384#背心2号色 SPMX-20240815313569 \N \N \N 1 \N [{"file_id": "8fd44718-0d3c-42fd-b296-96eb25433e33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beb70c6d508a4de581885bb049a92a38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beb70c6d508a4de581885bb049a92a38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beb70c6d508a4de581885bb049a92a38.jpg", "file_size": 18366, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#背心2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb70c6d508a4de581885bb049a92a38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb70c6d508a4de581885bb049a92a38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beb70c6d508a4de581885bb049a92a38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beb70c6d508a4de581885bb049a92a38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beb70c6d508a4de581885bb049a92a38.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sl-W5hkSFow9LJIo_60kHmH9cQE=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.425714+00 2025-12-09 10:15:45.42572+00 18339 FX0003-51#RC23 SPMX-20240815313573 \N \N \N 1 \N [{"file_id": "246cef8c-e5f4-4681-9294-59c1790834b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd94e60211bc40fb873a0e97969b2bf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd94e60211bc40fb873a0e97969b2bf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd94e60211bc40fb873a0e97969b2bf5.jpg", "file_size": 71324, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-51#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd94e60211bc40fb873a0e97969b2bf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd94e60211bc40fb873a0e97969b2bf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd94e60211bc40fb873a0e97969b2bf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd94e60211bc40fb873a0e97969b2bf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd94e60211bc40fb873a0e97969b2bf5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:53jklD20wZKxzNzMAFv1ABNxMzo=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.428765+00 2025-12-09 10:15:45.428771+00 18340 CCHD311#黄色XL SPMX-20240815313565 \N \N \N 1 \N [{"file_id": "4ba41ae3-8a8c-4a25-a72d-3d8f791f299b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cf7700565b74eb78fd319a3acc8b87d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cf7700565b74eb78fd319a3acc8b87d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cf7700565b74eb78fd319a3acc8b87d.jpg", "file_size": 19237, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf7700565b74eb78fd319a3acc8b87d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf7700565b74eb78fd319a3acc8b87d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cf7700565b74eb78fd319a3acc8b87d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cf7700565b74eb78fd319a3acc8b87d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cf7700565b74eb78fd319a3acc8b87d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z3hp7uX48jiuLyGg6kO0hWgZFP8=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.431694+00 2025-12-09 10:15:45.4317+00 18341 LJH1925#蓝色 SPMX-20240815313561 \N \N \N 1 \N [{"file_id": "d84659ef-f61b-4df8-abd6-7e1a99f14ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb2126d92c44a0e97546ccd583870ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb2126d92c44a0e97546ccd583870ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb2126d92c44a0e97546ccd583870ac.jpg", "file_size": 79437, "is_delete": false, "file_type": 1, "original_file_name": "LJH1925#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb2126d92c44a0e97546ccd583870ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb2126d92c44a0e97546ccd583870ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb2126d92c44a0e97546ccd583870ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb2126d92c44a0e97546ccd583870ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb2126d92c44a0e97546ccd583870ac.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGbLYgGiah7ekbBTo385t7QJK4I=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.434774+00 2025-12-09 10:15:45.43478+00 18342 8630#-M码 SPMX-20240815313562 \N \N \N 1 \N [{"file_id": "f8318f3b-669e-4e1b-8f69-e90e8264d1b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a69312262c74b7d80b629f832619578.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a69312262c74b7d80b629f832619578.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a69312262c74b7d80b629f832619578.jpg", "file_size": 18360, "is_delete": false, "file_type": 1, "original_file_name": "8630#-M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a69312262c74b7d80b629f832619578.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a69312262c74b7d80b629f832619578.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a69312262c74b7d80b629f832619578.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a69312262c74b7d80b629f832619578.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a69312262c74b7d80b629f832619578.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEZ90vzsw1PbNn1BepLXfZy_3Rs=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.437821+00 2025-12-09 10:15:45.437829+00 18343 23259-2#蓝色M SPMX-20240815313567 \N \N \N 1 \N [{"file_id": "88e5ee49-546f-43c8-acbb-37b85681f2d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83f7eb5f6a1448828206d3d87cb82de8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83f7eb5f6a1448828206d3d87cb82de8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83f7eb5f6a1448828206d3d87cb82de8.jpg", "file_size": 15365, "is_delete": false, "file_type": 1, "original_file_name": "23259-2#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83f7eb5f6a1448828206d3d87cb82de8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83f7eb5f6a1448828206d3d87cb82de8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83f7eb5f6a1448828206d3d87cb82de8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83f7eb5f6a1448828206d3d87cb82de8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83f7eb5f6a1448828206d3d87cb82de8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fUfApXAIk5C8AmZ3VOQwrlFBwfU=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.440829+00 2025-12-09 10:15:45.440835+00 18344 LJH1925#黑色 SPMX-20240815313571 \N \N \N 1 \N [{"file_id": "b14bdf29-35bc-416e-9664-cc9e751768f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a82a1d2265e44158c8d426509823d63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a82a1d2265e44158c8d426509823d63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a82a1d2265e44158c8d426509823d63.jpg", "file_size": 76995, "is_delete": false, "file_type": 1, "original_file_name": "LJH1925#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82a1d2265e44158c8d426509823d63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82a1d2265e44158c8d426509823d63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a82a1d2265e44158c8d426509823d63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a82a1d2265e44158c8d426509823d63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a82a1d2265e44158c8d426509823d63.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:THbpjp1KITxFXmOX_sl3lM62imQ=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.4439+00 2025-12-09 10:15:45.443906+00 18345 1231-36FWF#小童6码 SPMX-20240815313570 \N \N \N 1 \N [{"file_id": "8ce9e1f2-9544-458f-8413-273ab746592d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b6dd9b106844ddc8508c658bc884921.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b6dd9b106844ddc8508c658bc884921.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b6dd9b106844ddc8508c658bc884921.jpg", "file_size": 21099, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6dd9b106844ddc8508c658bc884921.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6dd9b106844ddc8508c658bc884921.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6dd9b106844ddc8508c658bc884921.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b6dd9b106844ddc8508c658bc884921.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b6dd9b106844ddc8508c658bc884921.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNZPWC07q1soUGfc-VjnS8JVAaQ=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.446873+00 2025-12-09 10:15:45.446879+00 18346 DL3312#前后幅虾粉 SPMX-20240815313572 \N \N \N 1 \N [{"file_id": "d616bc68-3566-47d5-932e-1d249d073a24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd39a14512ff474684da0a1a9b43f0ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd39a14512ff474684da0a1a9b43f0ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd39a14512ff474684da0a1a9b43f0ec.jpg", "file_size": 16271, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#前后幅虾粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd39a14512ff474684da0a1a9b43f0ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd39a14512ff474684da0a1a9b43f0ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd39a14512ff474684da0a1a9b43f0ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd39a14512ff474684da0a1a9b43f0ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd39a14512ff474684da0a1a9b43f0ec.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:li3PoV2uBLDPe3c7NRhIKlJQH6A=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.449851+00 2025-12-09 10:15:45.449856+00 18347 HXF-A-TB013#M码 SPMX-20240815313575 \N \N \N 1 \N [{"file_id": "0005d474-4535-4888-9326-f3fb56059e2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6b706a3a7404f0dad60158362c6f485.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6b706a3a7404f0dad60158362c6f485.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6b706a3a7404f0dad60158362c6f485.jpg", "file_size": 16069, "is_delete": false, "file_type": 1, "original_file_name": "HXF-A-TB013#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b706a3a7404f0dad60158362c6f485.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b706a3a7404f0dad60158362c6f485.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b706a3a7404f0dad60158362c6f485.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6b706a3a7404f0dad60158362c6f485.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6b706a3a7404f0dad60158362c6f485.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ShZJ0DU5fG4knmc3g_Ryqjg_vXY=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.4528+00 2025-12-09 10:15:45.452806+00 18348 DL3312#前后幅浅粉 SPMX-20240815313563 \N \N \N 1 \N [{"file_id": "112b0302-ae7f-444d-916b-39e34ab80836", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6abd2777b094b7eaadfba1a3b4e6615.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6abd2777b094b7eaadfba1a3b4e6615.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6abd2777b094b7eaadfba1a3b4e6615.jpg", "file_size": 16413, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#前后幅浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6abd2777b094b7eaadfba1a3b4e6615.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6abd2777b094b7eaadfba1a3b4e6615.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6abd2777b094b7eaadfba1a3b4e6615.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6abd2777b094b7eaadfba1a3b4e6615.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6abd2777b094b7eaadfba1a3b4e6615.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55hODw_71flsyfNMAVdoxSs85fI=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.455753+00 2025-12-09 10:15:45.455761+00 18349 JTSS887FWE#VS-D3 SPMX-20240815313566 \N \N \N 1 \N [{"file_id": "5758be5e-66b5-4654-adfe-cb674414ecce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b881c9e6b3904c9ebbec7eca3d1780aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b881c9e6b3904c9ebbec7eca3d1780aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b881c9e6b3904c9ebbec7eca3d1780aa.jpg", "file_size": 8947, "is_delete": false, "file_type": 1, "original_file_name": "JTSS887FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b881c9e6b3904c9ebbec7eca3d1780aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b881c9e6b3904c9ebbec7eca3d1780aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b881c9e6b3904c9ebbec7eca3d1780aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b881c9e6b3904c9ebbec7eca3d1780aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b881c9e6b3904c9ebbec7eca3d1780aa.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kIXEt81eVE47cQapvlsiSg5UwWA=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.458656+00 2025-12-09 10:15:45.458663+00 18350 LJH2001#橙色 SPMX-20240815313586 \N \N \N 1 \N [{"file_id": "f70dbe08-d850-4644-af25-f5817c172923", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "670830a15d4f49a6959e562a91347df0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "670830a15d4f49a6959e562a91347df0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "670830a15d4f49a6959e562a91347df0.jpg", "file_size": 82735, "is_delete": false, "file_type": 1, "original_file_name": "LJH2001#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670830a15d4f49a6959e562a91347df0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670830a15d4f49a6959e562a91347df0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670830a15d4f49a6959e562a91347df0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/670830a15d4f49a6959e562a91347df0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/670830a15d4f49a6959e562a91347df0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cyA37Apxpaavb5_VY2HPRuei9Xg=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.461641+00 2025-12-09 10:15:45.461647+00 18351 23259-2#蓝色XL SPMX-20240815313577 \N \N \N 1 \N [{"file_id": "46fff06f-9cf3-4689-b18c-9c83010aba6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4398d71fa6904ee0ba93ee90743ba256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4398d71fa6904ee0ba93ee90743ba256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4398d71fa6904ee0ba93ee90743ba256.jpg", "file_size": 14181, "is_delete": false, "file_type": 1, "original_file_name": "23259-2#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4398d71fa6904ee0ba93ee90743ba256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4398d71fa6904ee0ba93ee90743ba256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4398d71fa6904ee0ba93ee90743ba256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4398d71fa6904ee0ba93ee90743ba256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4398d71fa6904ee0ba93ee90743ba256.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DUdlf9VYzU1Wo3WoSikRxu7UKRU=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.464625+00 2025-12-09 10:15:45.464632+00 18352 CCHD311#黄色乱花 SPMX-20240815313578 \N \N \N 1 \N [{"file_id": "61bec28e-133b-48b1-852c-422a289738dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5611a926cfb4c18915db4aab304cc5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5611a926cfb4c18915db4aab304cc5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5611a926cfb4c18915db4aab304cc5b.jpg", "file_size": 11736, "is_delete": false, "file_type": 1, "original_file_name": "CCHD311#黄色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5611a926cfb4c18915db4aab304cc5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5611a926cfb4c18915db4aab304cc5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5611a926cfb4c18915db4aab304cc5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5611a926cfb4c18915db4aab304cc5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5611a926cfb4c18915db4aab304cc5b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2RUvH9Xbb2R5X9ps6tRTSrlZks=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.467609+00 2025-12-09 10:15:45.467616+00 18353 CCX10097#黄色2XL码 SPMX-20240815313587 \N \N \N 1 \N [{"file_id": "d785932e-4097-4ee8-b3cf-011d58336a79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bd6caf8971f424daa4160ba96d11390.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bd6caf8971f424daa4160ba96d11390.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bd6caf8971f424daa4160ba96d11390.jpg", "file_size": 19550, "is_delete": false, "file_type": 1, "original_file_name": "CCX10097#黄色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd6caf8971f424daa4160ba96d11390.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd6caf8971f424daa4160ba96d11390.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bd6caf8971f424daa4160ba96d11390.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bd6caf8971f424daa4160ba96d11390.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bd6caf8971f424daa4160ba96d11390.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:irf5Gb3FSkTrGUWu3d61gxIVWFY=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.470873+00 2025-12-09 10:15:45.470881+00 18354 FX0003-51#RC23正身 SPMX-20240815313583 \N \N \N 1 \N [{"file_id": "d8f57c56-c883-492f-9112-67f7c20e641f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18a3b96782ae4becaa693f272b4d2cdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18a3b96782ae4becaa693f272b4d2cdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18a3b96782ae4becaa693f272b4d2cdf.jpg", "file_size": 76004, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-51#RC23正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3b96782ae4becaa693f272b4d2cdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3b96782ae4becaa693f272b4d2cdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18a3b96782ae4becaa693f272b4d2cdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18a3b96782ae4becaa693f272b4d2cdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18a3b96782ae4becaa693f272b4d2cdf.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:enidkqxy_cYtAxlTGneKUGHfhZo=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.474195+00 2025-12-09 10:15:45.474202+00 18355 JTSS888FWE#VS-D3 SPMX-20240815313576 \N \N \N 1 \N [{"file_id": "ad180362-22ca-4037-a568-e3c46b21d2cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320a3e7d6e79423984db5934dc3ed7f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320a3e7d6e79423984db5934dc3ed7f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320a3e7d6e79423984db5934dc3ed7f5.jpg", "file_size": 8403, "is_delete": false, "file_type": 1, "original_file_name": "JTSS888FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a3e7d6e79423984db5934dc3ed7f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a3e7d6e79423984db5934dc3ed7f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320a3e7d6e79423984db5934dc3ed7f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320a3e7d6e79423984db5934dc3ed7f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320a3e7d6e79423984db5934dc3ed7f5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqnrbbXo8vDOdNDuYOLs90YWOUk=", "createTime": "2024-08-15 15:04:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.477251+00 2025-12-09 10:15:45.477258+00 18356 1231-36FWF#小童8码+4码 SPMX-20240815313581 \N \N \N 1 \N [{"file_id": "9fc16af2-99e4-40ba-9e00-56d9bb2c560d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5da680f2dd12446d9e00bfc51df1edab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5da680f2dd12446d9e00bfc51df1edab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5da680f2dd12446d9e00bfc51df1edab.jpg", "file_size": 21372, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da680f2dd12446d9e00bfc51df1edab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da680f2dd12446d9e00bfc51df1edab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da680f2dd12446d9e00bfc51df1edab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5da680f2dd12446d9e00bfc51df1edab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5da680f2dd12446d9e00bfc51df1edab.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o48xSKcXD1Pd2FC6MD3UQaH8pgc=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.480407+00 2025-12-09 10:15:45.480414+00 18357 JTSS889FWE#VS-D3 SPMX-20240815313582 \N \N \N 1 \N [{"file_id": "6ed270d4-07cf-4a2c-8eda-65b98f57d611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17d94ad3c19b4922bf6b51c2836d2e18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17d94ad3c19b4922bf6b51c2836d2e18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17d94ad3c19b4922bf6b51c2836d2e18.jpg", "file_size": 17886, "is_delete": false, "file_type": 1, "original_file_name": "JTSS889FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d94ad3c19b4922bf6b51c2836d2e18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d94ad3c19b4922bf6b51c2836d2e18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d94ad3c19b4922bf6b51c2836d2e18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17d94ad3c19b4922bf6b51c2836d2e18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17d94ad3c19b4922bf6b51c2836d2e18.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cOIQcQWJOEFgPyubHJAqGIYzPtw=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.483563+00 2025-12-09 10:15:45.48357+00 18358 DL3312#前后幅黑色 SPMX-20240815313585 \N \N \N 1 \N [{"file_id": "6e7c7e68-8d98-4f1a-878f-1bc615d2fb0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2a9d7dcf6443dd9592a095acc9c450.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2a9d7dcf6443dd9592a095acc9c450.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2a9d7dcf6443dd9592a095acc9c450.jpg", "file_size": 15540, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#前后幅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2a9d7dcf6443dd9592a095acc9c450.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2a9d7dcf6443dd9592a095acc9c450.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2a9d7dcf6443dd9592a095acc9c450.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2a9d7dcf6443dd9592a095acc9c450.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2a9d7dcf6443dd9592a095acc9c450.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1tMvF_i5nhyT6TKndmui3isVQV0=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.486584+00 2025-12-09 10:15:45.486589+00 18359 001-3FWE#L SPMX-20240815313579 \N \N \N 1 \N [{"file_id": "2ec59437-b12d-49cd-848b-4d5e2576552f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94ee4a7e7fd94ed2a184abbbde779c50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94ee4a7e7fd94ed2a184abbbde779c50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94ee4a7e7fd94ed2a184abbbde779c50.jpg", "file_size": 16183, "is_delete": false, "file_type": 1, "original_file_name": "001-3FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ee4a7e7fd94ed2a184abbbde779c50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ee4a7e7fd94ed2a184abbbde779c50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94ee4a7e7fd94ed2a184abbbde779c50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94ee4a7e7fd94ed2a184abbbde779c50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94ee4a7e7fd94ed2a184abbbde779c50.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KF-diIDIHKDVQISUiBUrVzzVebY=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.48958+00 2025-12-09 10:15:45.489592+00 18360 LZ1384#背心3号色 SPMX-20240815313580 \N \N \N 1 \N [{"file_id": "02764d53-652d-4cd3-bfc7-b332b5386213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf851c0fd5314a2eb47cf2157aa05a99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf851c0fd5314a2eb47cf2157aa05a99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf851c0fd5314a2eb47cf2157aa05a99.jpg", "file_size": 18190, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#背心3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf851c0fd5314a2eb47cf2157aa05a99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf851c0fd5314a2eb47cf2157aa05a99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf851c0fd5314a2eb47cf2157aa05a99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf851c0fd5314a2eb47cf2157aa05a99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf851c0fd5314a2eb47cf2157aa05a99.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iFXGjMGyo6XjXMyr5ECrUWkmtso=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.492565+00 2025-12-09 10:15:45.492572+00 18361 23259FWF#V5曲线 SPMX-20240815313584 \N \N \N 1 \N [{"file_id": "941d5809-4ab3-40e6-b7d3-8cac5eca95fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e9d9c6f296d400a912034f694afb12c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e9d9c6f296d400a912034f694afb12c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e9d9c6f296d400a912034f694afb12c.jpg", "file_size": 13914, "is_delete": false, "file_type": 1, "original_file_name": "23259FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9d9c6f296d400a912034f694afb12c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9d9c6f296d400a912034f694afb12c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e9d9c6f296d400a912034f694afb12c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e9d9c6f296d400a912034f694afb12c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e9d9c6f296d400a912034f694afb12c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5KqUubNGbq-vNFEHYfItFN4c6M=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.495768+00 2025-12-09 10:15:45.495775+00 18362 HXF-A-TB013#XL码 SPMX-20240815313588 \N \N \N 1 \N [{"file_id": "8cd3c202-5ad5-4a4c-b215-dae8a7a09124", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c6ad399ccdc454ea736adf6b46ea79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c6ad399ccdc454ea736adf6b46ea79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c6ad399ccdc454ea736adf6b46ea79f.jpg", "file_size": 16689, "is_delete": false, "file_type": 1, "original_file_name": "HXF-A-TB013#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6ad399ccdc454ea736adf6b46ea79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6ad399ccdc454ea736adf6b46ea79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6ad399ccdc454ea736adf6b46ea79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c6ad399ccdc454ea736adf6b46ea79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c6ad399ccdc454ea736adf6b46ea79f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lK5XUkf7UGlWON1A5i27EGzjUO4=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.499052+00 2025-12-09 10:15:45.499059+00 18363 DL3312#袖子彩兰 SPMX-20240815313595 \N \N \N 1 \N [{"file_id": "39dc5a94-16a8-4711-909e-710898101f9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa7c63f2f98e4c3a8d945d260a2524ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa7c63f2f98e4c3a8d945d260a2524ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa7c63f2f98e4c3a8d945d260a2524ac.jpg", "file_size": 11904, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#袖子彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7c63f2f98e4c3a8d945d260a2524ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7c63f2f98e4c3a8d945d260a2524ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa7c63f2f98e4c3a8d945d260a2524ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa7c63f2f98e4c3a8d945d260a2524ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa7c63f2f98e4c3a8d945d260a2524ac.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VRvgPxtsWK5uanwz2qGSlGnHyF8=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.502239+00 2025-12-09 10:15:45.502245+00 18364 CD33171#梅红 SPMX-20240815313596 \N \N \N 1 \N [{"file_id": "eb922fe0-2d1e-4c23-ac46-5a9ec017cc64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea8790405df649f8b9b0f96bf534eacc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea8790405df649f8b9b0f96bf534eacc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea8790405df649f8b9b0f96bf534eacc.jpg", "file_size": 14197, "is_delete": false, "file_type": 1, "original_file_name": "CD33171#梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8790405df649f8b9b0f96bf534eacc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8790405df649f8b9b0f96bf534eacc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea8790405df649f8b9b0f96bf534eacc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea8790405df649f8b9b0f96bf534eacc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea8790405df649f8b9b0f96bf534eacc.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYsBL7Y7uzZ3NUQjRNAqxMp-Zco=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.50559+00 2025-12-09 10:15:45.505596+00 18365 LJH2001#白色 SPMX-20240815313599 \N \N \N 1 \N [{"file_id": "58e4d410-bcf2-4877-ab47-060df8f0ca0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fce07d4699aa4cbea70929d3a826ca2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fce07d4699aa4cbea70929d3a826ca2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fce07d4699aa4cbea70929d3a826ca2a.jpg", "file_size": 81290, "is_delete": false, "file_type": 1, "original_file_name": "LJH2001#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce07d4699aa4cbea70929d3a826ca2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce07d4699aa4cbea70929d3a826ca2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fce07d4699aa4cbea70929d3a826ca2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fce07d4699aa4cbea70929d3a826ca2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fce07d4699aa4cbea70929d3a826ca2a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAVIUo-YzTQDWB5Nt9BTsJ5XbJ8=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.508855+00 2025-12-09 10:15:45.508861+00 18366 001-3FWE#M SPMX-20240815313590 \N \N \N 1 \N [{"file_id": "9ef26222-118d-4ec0-9f4a-2c7befaafcf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d725da8e6e9347b6a399bb5af1b33df1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d725da8e6e9347b6a399bb5af1b33df1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d725da8e6e9347b6a399bb5af1b33df1.jpg", "file_size": 16130, "is_delete": false, "file_type": 1, "original_file_name": "001-3FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d725da8e6e9347b6a399bb5af1b33df1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d725da8e6e9347b6a399bb5af1b33df1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d725da8e6e9347b6a399bb5af1b33df1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d725da8e6e9347b6a399bb5af1b33df1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d725da8e6e9347b6a399bb5af1b33df1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S0rGVGDC4L3wHR93F9xtNobaaKQ=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.51209+00 2025-12-09 10:15:45.512096+00 18367 FX0003-52#RC23 SPMX-20240815313597 \N \N \N 1 \N [{"file_id": "5a5b516c-07ca-4cad-8273-dcaf2dd014b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89185f59195f4bb1b6707e1ea43bb06b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89185f59195f4bb1b6707e1ea43bb06b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89185f59195f4bb1b6707e1ea43bb06b.jpg", "file_size": 29871, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-52#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89185f59195f4bb1b6707e1ea43bb06b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89185f59195f4bb1b6707e1ea43bb06b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89185f59195f4bb1b6707e1ea43bb06b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89185f59195f4bb1b6707e1ea43bb06b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89185f59195f4bb1b6707e1ea43bb06b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaMleWfIrtqUjAkMt3qqWAZIAZY=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.515276+00 2025-12-09 10:15:45.515282+00 18368 JTSS890FWE#VS-D3 SPMX-20240815313592 \N \N \N 1 \N [{"file_id": "70695f8c-c072-4b20-99bf-76c6c76504d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99511c005e33478ea11df402f20e5d2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99511c005e33478ea11df402f20e5d2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99511c005e33478ea11df402f20e5d2a.jpg", "file_size": 18959, "is_delete": false, "file_type": 1, "original_file_name": "JTSS890FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99511c005e33478ea11df402f20e5d2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99511c005e33478ea11df402f20e5d2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99511c005e33478ea11df402f20e5d2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99511c005e33478ea11df402f20e5d2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99511c005e33478ea11df402f20e5d2a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZjFtWVLQa6h5bnMbBJXm07pMJbE=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.518549+00 2025-12-09 10:15:45.518559+00 18369 1231-36FWF#小童袖领匹布 SPMX-20240815313593 \N \N \N 1 \N [{"file_id": "bca02025-fa37-46ec-be7f-c78e2d3b3d07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80245eed09c44a5ba38fc018d993c2ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80245eed09c44a5ba38fc018d993c2ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80245eed09c44a5ba38fc018d993c2ac.jpg", "file_size": 16271, "is_delete": false, "file_type": 1, "original_file_name": "1231-36FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80245eed09c44a5ba38fc018d993c2ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80245eed09c44a5ba38fc018d993c2ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80245eed09c44a5ba38fc018d993c2ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80245eed09c44a5ba38fc018d993c2ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80245eed09c44a5ba38fc018d993c2ac.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67PtjEwbU8BWQPCKRTr5OM0s6fg=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.521505+00 2025-12-09 10:15:45.521511+00 18370 2326#32-蓝色 SPMX-20240815313594 \N \N \N 1 \N [{"file_id": "3d89c25f-3d9d-4af6-a238-148c90044fbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0d7d862c326413c8e6d1656683a4972.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0d7d862c326413c8e6d1656683a4972.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0d7d862c326413c8e6d1656683a4972.jpg", "file_size": 12219, "is_delete": false, "file_type": 1, "original_file_name": "2326#32-蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d7d862c326413c8e6d1656683a4972.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d7d862c326413c8e6d1656683a4972.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d7d862c326413c8e6d1656683a4972.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0d7d862c326413c8e6d1656683a4972.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0d7d862c326413c8e6d1656683a4972.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4DVypGaSBCtSiX6dSm8sg-6Sv6c=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.524491+00 2025-12-09 10:15:45.524497+00 18371 8630双边定位花# SPMX-20240815313589 \N \N \N 1 \N [{"file_id": "a2a393e5-602f-4271-b719-609dfbb20584", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b7519ff48b9434581ddbf16cf3d213f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b7519ff48b9434581ddbf16cf3d213f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b7519ff48b9434581ddbf16cf3d213f.jpg", "file_size": 14091, "is_delete": false, "file_type": 1, "original_file_name": "8630双边定位花#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7519ff48b9434581ddbf16cf3d213f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7519ff48b9434581ddbf16cf3d213f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b7519ff48b9434581ddbf16cf3d213f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b7519ff48b9434581ddbf16cf3d213f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b7519ff48b9434581ddbf16cf3d213f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jqf2zqE5CsJrodyCEyY0-i35fhI=", "createTime": "2024-08-15 15:04:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.52751+00 2025-12-09 10:15:45.527517+00 18372 LZ1384#背心4号色 SPMX-20240815313591 \N \N \N 1 \N [{"file_id": "3a720b34-9376-4931-809a-d0210c102ade", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10365539480142f5be29fe7d5c92e4a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10365539480142f5be29fe7d5c92e4a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10365539480142f5be29fe7d5c92e4a7.jpg", "file_size": 18922, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#背心4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10365539480142f5be29fe7d5c92e4a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10365539480142f5be29fe7d5c92e4a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10365539480142f5be29fe7d5c92e4a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10365539480142f5be29fe7d5c92e4a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10365539480142f5be29fe7d5c92e4a7.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ATUJUP3a7fcq8_EoHMTuG1-iYI8=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.530458+00 2025-12-09 10:15:45.530465+00 18373 HXF-A-TB013#XXL码 SPMX-20240815313598 \N \N \N 1 \N [{"file_id": "6591c403-5512-4be6-b371-78246b55ed24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06458a76374843118fc042e2a54e225e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06458a76374843118fc042e2a54e225e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06458a76374843118fc042e2a54e225e.jpg", "file_size": 17446, "is_delete": false, "file_type": 1, "original_file_name": "HXF-A-TB013#XXL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06458a76374843118fc042e2a54e225e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06458a76374843118fc042e2a54e225e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06458a76374843118fc042e2a54e225e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06458a76374843118fc042e2a54e225e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06458a76374843118fc042e2a54e225e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v0x5BrfMA-mIkVr5b0N5nxqO4eo=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.533602+00 2025-12-09 10:15:45.533607+00 18374 001-4FWE#L SPMX-20240815313600 \N \N \N 1 \N [{"file_id": "4974aa70-411d-4605-be5f-78d4b9780eff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcefa3d3adbb4beeac987ee518f68fbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcefa3d3adbb4beeac987ee518f68fbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcefa3d3adbb4beeac987ee518f68fbb.jpg", "file_size": 15465, "is_delete": false, "file_type": 1, "original_file_name": "001-4FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcefa3d3adbb4beeac987ee518f68fbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcefa3d3adbb4beeac987ee518f68fbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcefa3d3adbb4beeac987ee518f68fbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcefa3d3adbb4beeac987ee518f68fbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcefa3d3adbb4beeac987ee518f68fbb.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fy0bhIi0iQEfrrHvjHIHiSvS6HQ=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.536598+00 2025-12-09 10:15:45.536604+00 18375 001-4FWE#M SPMX-20240815313611 \N \N \N 1 \N [{"file_id": "e4279616-0d98-4b41-b86c-6da89f7d80ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b75234e2e5441609f58a0e9fb353212.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b75234e2e5441609f58a0e9fb353212.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b75234e2e5441609f58a0e9fb353212.jpg", "file_size": 15638, "is_delete": false, "file_type": 1, "original_file_name": "001-4FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75234e2e5441609f58a0e9fb353212.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75234e2e5441609f58a0e9fb353212.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b75234e2e5441609f58a0e9fb353212.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b75234e2e5441609f58a0e9fb353212.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b75234e2e5441609f58a0e9fb353212.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mbD1ub0wKIxwnwgnEhyuS-GkRYU=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.539566+00 2025-12-09 10:15:45.539573+00 18376 LZ1385#上身1号色 SPMX-20240815313614 \N \N \N 1 \N [{"file_id": "08abc173-2ccb-4146-b052-6523b37e0637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c9c06842f344e4a8557685478635b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c9c06842f344e4a8557685478635b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c9c06842f344e4a8557685478635b19.jpg", "file_size": 19163, "is_delete": false, "file_type": 1, "original_file_name": "LZ1385#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9c06842f344e4a8557685478635b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9c06842f344e4a8557685478635b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c9c06842f344e4a8557685478635b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c9c06842f344e4a8557685478635b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c9c06842f344e4a8557685478635b19.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:162UlB7ArOqrPGAIixXGDyRvQzQ=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.542596+00 2025-12-09 10:15:45.542602+00 18377 DL3312#袖子枣红 SPMX-20240815313604 \N \N \N 1 \N [{"file_id": "1c65f774-0682-4221-86d1-4841bcd663a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30de399815b3411da429a761e1dd5d24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30de399815b3411da429a761e1dd5d24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30de399815b3411da429a761e1dd5d24.jpg", "file_size": 12212, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#袖子枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30de399815b3411da429a761e1dd5d24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30de399815b3411da429a761e1dd5d24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30de399815b3411da429a761e1dd5d24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30de399815b3411da429a761e1dd5d24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30de399815b3411da429a761e1dd5d24.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PpGfzdzpayWmubRyHHxSf5iF1u8=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.545586+00 2025-12-09 10:15:45.545592+00 18378 CD33171#绿色 SPMX-20240815313607 \N \N \N 1 \N [{"file_id": "f15374fa-a757-4a10-a9fe-0437ba2fd6b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc8bdcf9b3747e69fb84660d46fb7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc8bdcf9b3747e69fb84660d46fb7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc8bdcf9b3747e69fb84660d46fb7ff.jpg", "file_size": 15136, "is_delete": false, "file_type": 1, "original_file_name": "CD33171#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc8bdcf9b3747e69fb84660d46fb7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc8bdcf9b3747e69fb84660d46fb7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc8bdcf9b3747e69fb84660d46fb7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc8bdcf9b3747e69fb84660d46fb7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc8bdcf9b3747e69fb84660d46fb7ff.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ai77Brpitl5jOcZ7dyDnhpotiJg=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.548606+00 2025-12-09 10:15:45.548612+00 18379 HXF-A-TB013#领子4个全码通用 SPMX-20240815313608 \N \N \N 1 \N [{"file_id": "2dcf6761-e6d4-4857-81c5-cf930aa32818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7860562294844ba985553a5d0fa9d4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7860562294844ba985553a5d0fa9d4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7860562294844ba985553a5d0fa9d4d.jpg", "file_size": 16071, "is_delete": false, "file_type": 1, "original_file_name": "HXF-A-TB013#领子4个全码通用.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7860562294844ba985553a5d0fa9d4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7860562294844ba985553a5d0fa9d4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7860562294844ba985553a5d0fa9d4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7860562294844ba985553a5d0fa9d4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7860562294844ba985553a5d0fa9d4d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Ka4PqGQ_WyISl0h0xgWg4Gbluw=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.551872+00 2025-12-09 10:15:45.551878+00 18380 FX0003-53#RC23 SPMX-20240815313609 \N \N \N 1 \N [{"file_id": "01b16c6b-0c5c-4aaa-86ac-c196a4936765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d509ac5afa924b77865726b1f302e024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d509ac5afa924b77865726b1f302e024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d509ac5afa924b77865726b1f302e024.jpg", "file_size": 52263, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-53#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d509ac5afa924b77865726b1f302e024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d509ac5afa924b77865726b1f302e024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d509ac5afa924b77865726b1f302e024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d509ac5afa924b77865726b1f302e024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d509ac5afa924b77865726b1f302e024.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yjaOeMPnopU_ua4YfY_S7hC0kSw=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.554954+00 2025-12-09 10:15:45.55496+00 18381 JTSS891FWE#粉VS-D3 SPMX-20240815313613 \N \N \N 1 \N [{"file_id": "91416d61-7a7c-4e4c-bc93-3ef821c773c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "995b9f875c4b4967ac832d6977297030.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "995b9f875c4b4967ac832d6977297030.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "995b9f875c4b4967ac832d6977297030.jpg", "file_size": 11532, "is_delete": false, "file_type": 1, "original_file_name": "JTSS891FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995b9f875c4b4967ac832d6977297030.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995b9f875c4b4967ac832d6977297030.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995b9f875c4b4967ac832d6977297030.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/995b9f875c4b4967ac832d6977297030.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/995b9f875c4b4967ac832d6977297030.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dr8CLIaatoZmlx3_8cu3syxVAbQ=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.558092+00 2025-12-09 10:15:45.558099+00 18382 LJH2001#紫色 SPMX-20240815313610 \N \N \N 1 \N [{"file_id": "c4c22c24-aeaf-41bd-86c9-2ad22f570630", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27014070b37f43c0ba315611f04bd52f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27014070b37f43c0ba315611f04bd52f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27014070b37f43c0ba315611f04bd52f.jpg", "file_size": 80064, "is_delete": false, "file_type": 1, "original_file_name": "LJH2001#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27014070b37f43c0ba315611f04bd52f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27014070b37f43c0ba315611f04bd52f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27014070b37f43c0ba315611f04bd52f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27014070b37f43c0ba315611f04bd52f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27014070b37f43c0ba315611f04bd52f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTgzFCobn8WsKuiFWfiXwX6TUvM=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.561189+00 2025-12-09 10:15:45.561194+00 18383 2326#46-藏青色 SPMX-20240815313605 \N \N \N 1 \N [{"file_id": "e9e09d65-e51b-4220-81e0-577034a3eb61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc8181617d0b4d85bb79b8c225a8dcc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc8181617d0b4d85bb79b8c225a8dcc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc8181617d0b4d85bb79b8c225a8dcc8.jpg", "file_size": 12762, "is_delete": false, "file_type": 1, "original_file_name": "2326#46-藏青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8181617d0b4d85bb79b8c225a8dcc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8181617d0b4d85bb79b8c225a8dcc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc8181617d0b4d85bb79b8c225a8dcc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc8181617d0b4d85bb79b8c225a8dcc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc8181617d0b4d85bb79b8c225a8dcc8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8X06t472nFSNrdRmyqqiZdwjeko=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.564124+00 2025-12-09 10:15:45.564131+00 18384 8632#WJC22蓝色 SPMX-20240815313612 \N \N \N 1 \N [{"file_id": "41156822-e17b-4ba8-b323-af55e96df03a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "801ecb6bb84e4332b72c2eca816ec9b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "801ecb6bb84e4332b72c2eca816ec9b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "801ecb6bb84e4332b72c2eca816ec9b0.jpg", "file_size": 14875, "is_delete": false, "file_type": 1, "original_file_name": "8632#WJC22蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801ecb6bb84e4332b72c2eca816ec9b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801ecb6bb84e4332b72c2eca816ec9b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801ecb6bb84e4332b72c2eca816ec9b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/801ecb6bb84e4332b72c2eca816ec9b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/801ecb6bb84e4332b72c2eca816ec9b0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DqxLEttCQIqvlINvGjKGlNfMm44=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.567094+00 2025-12-09 10:15:45.5671+00 18385 8632#WJC22红色 SPMX-20240815313601 \N \N \N 1 \N [{"file_id": "6b20192c-6d67-4f10-b145-9ea3e0812f2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b48b70aeb30043d4884840c29deab00e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b48b70aeb30043d4884840c29deab00e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b48b70aeb30043d4884840c29deab00e.jpg", "file_size": 14342, "is_delete": false, "file_type": 1, "original_file_name": "8632#WJC22红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48b70aeb30043d4884840c29deab00e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48b70aeb30043d4884840c29deab00e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b48b70aeb30043d4884840c29deab00e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b48b70aeb30043d4884840c29deab00e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b48b70aeb30043d4884840c29deab00e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BdHSf7eZO_q4CH-LH87JV7iDFxY=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.570078+00 2025-12-09 10:15:45.570085+00 18386 JTSS891FWE#白VS-D3 SPMX-20240815313602 \N \N \N 1 \N [{"file_id": "5419f009-37f5-4d2c-8085-8de359db301e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e5a44124d3406589341ef47babc33c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e5a44124d3406589341ef47babc33c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e5a44124d3406589341ef47babc33c.jpg", "file_size": 11794, "is_delete": false, "file_type": 1, "original_file_name": "JTSS891FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e5a44124d3406589341ef47babc33c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e5a44124d3406589341ef47babc33c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e5a44124d3406589341ef47babc33c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e5a44124d3406589341ef47babc33c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e5a44124d3406589341ef47babc33c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PBl7fr3uxrM2VeOqRG_T-14tVM=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.573195+00 2025-12-09 10:15:45.573201+00 18387 1231-37FWF#中童12码+10码 SPMX-20240815313606 \N \N \N 1 \N [{"file_id": "056d7b12-f862-446c-b76c-939293bc119f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e44b52ec4945454bb2ca4401d3a8d1c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e44b52ec4945454bb2ca4401d3a8d1c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e44b52ec4945454bb2ca4401d3a8d1c5.jpg", "file_size": 19847, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b52ec4945454bb2ca4401d3a8d1c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b52ec4945454bb2ca4401d3a8d1c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e44b52ec4945454bb2ca4401d3a8d1c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e44b52ec4945454bb2ca4401d3a8d1c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e44b52ec4945454bb2ca4401d3a8d1c5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yYouK03MKzBanIuXo2cL7_ZEr2A=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.576727+00 2025-12-09 10:15:45.576733+00 18388 LZ1384#背心5号色 SPMX-20240815313603 \N \N \N 1 \N [{"file_id": "7fb8b589-0dae-475a-b6fb-94dca30be601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a410ef54d914f2fa87339a4bdd33678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a410ef54d914f2fa87339a4bdd33678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a410ef54d914f2fa87339a4bdd33678.jpg", "file_size": 17720, "is_delete": false, "file_type": 1, "original_file_name": "LZ1384#背心5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a410ef54d914f2fa87339a4bdd33678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a410ef54d914f2fa87339a4bdd33678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a410ef54d914f2fa87339a4bdd33678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a410ef54d914f2fa87339a4bdd33678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a410ef54d914f2fa87339a4bdd33678.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9fGJa6lx7X_E9TTnW0HwkMfE_M=", "createTime": "2024-08-15 15:04:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.580118+00 2025-12-09 10:15:45.580124+00 18389 DL3312#袖子浅粉 SPMX-20240815313615 \N \N \N 1 \N [{"file_id": "8dd3f316-2420-474d-8116-1cab41c40a8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a98868914c71428599f8bbb668e7ba35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a98868914c71428599f8bbb668e7ba35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a98868914c71428599f8bbb668e7ba35.jpg", "file_size": 12115, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#袖子浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98868914c71428599f8bbb668e7ba35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98868914c71428599f8bbb668e7ba35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a98868914c71428599f8bbb668e7ba35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a98868914c71428599f8bbb668e7ba35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a98868914c71428599f8bbb668e7ba35.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4im7j2J95xwTBn4V2malAcQ_NaQ=", "createTime": "2024-08-15 15:04:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.583304+00 2025-12-09 10:15:45.58331+00 18390 2326#47-红色 SPMX-20240815313617 \N \N \N 1 \N [{"file_id": "11bef441-45c1-4685-a122-95731c9708db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99a30027f40d4292abddfb85ef764252.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99a30027f40d4292abddfb85ef764252.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99a30027f40d4292abddfb85ef764252.jpg", "file_size": 12426, "is_delete": false, "file_type": 1, "original_file_name": "2326#47-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a30027f40d4292abddfb85ef764252.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a30027f40d4292abddfb85ef764252.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99a30027f40d4292abddfb85ef764252.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99a30027f40d4292abddfb85ef764252.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99a30027f40d4292abddfb85ef764252.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5e0krDeFuvjCpMCDM727iID70Y=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.586391+00 2025-12-09 10:15:45.586397+00 18391 1231-37FWF#中童14码 SPMX-20240815313618 \N \N \N 1 \N [{"file_id": "d47e17da-6862-4b9c-b4e5-8bf07c354dc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c458d9985f424ed1be63f352d43fd0f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c458d9985f424ed1be63f352d43fd0f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c458d9985f424ed1be63f352d43fd0f1.jpg", "file_size": 17593, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c458d9985f424ed1be63f352d43fd0f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c458d9985f424ed1be63f352d43fd0f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c458d9985f424ed1be63f352d43fd0f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c458d9985f424ed1be63f352d43fd0f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c458d9985f424ed1be63f352d43fd0f1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:60g2_2inCCPjbwj6CYnaEjEkcuk=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.58929+00 2025-12-09 10:15:45.589296+00 18392 HXF-TB009#紫色 SPMX-20240815313619 \N \N \N 1 \N [{"file_id": "12118973-a87c-423b-834b-d28f9a912433", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0346b727ead04e55a7323f350a04274c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0346b727ead04e55a7323f350a04274c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0346b727ead04e55a7323f350a04274c.jpg", "file_size": 14623, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB009#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0346b727ead04e55a7323f350a04274c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0346b727ead04e55a7323f350a04274c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0346b727ead04e55a7323f350a04274c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0346b727ead04e55a7323f350a04274c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0346b727ead04e55a7323f350a04274c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfKJ9O0K4YuiXOF7wvrW05yaX-w=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.592528+00 2025-12-09 10:15:45.592534+00 18393 CD33171#黑色 SPMX-20240815313616 \N \N \N 1 \N [{"file_id": "a3107505-f539-434c-b34d-f2cb295a75a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1574632708b8467b8db8ebefa10bb079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1574632708b8467b8db8ebefa10bb079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1574632708b8467b8db8ebefa10bb079.jpg", "file_size": 16121, "is_delete": false, "file_type": 1, "original_file_name": "CD33171#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1574632708b8467b8db8ebefa10bb079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1574632708b8467b8db8ebefa10bb079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1574632708b8467b8db8ebefa10bb079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1574632708b8467b8db8ebefa10bb079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1574632708b8467b8db8ebefa10bb079.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPAnrDImtZhTIh2eVPqsig8VMqg=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.595538+00 2025-12-09 10:15:45.595543+00 18394 DL3312#袖子虾粉 SPMX-20240815313621 \N \N \N 1 \N [{"file_id": "643e0255-69e3-4c04-946f-1b94f0788911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e0abcee5da946c9942875f3eb1c5258.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e0abcee5da946c9942875f3eb1c5258.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e0abcee5da946c9942875f3eb1c5258.jpg", "file_size": 12118, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#袖子虾粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0abcee5da946c9942875f3eb1c5258.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0abcee5da946c9942875f3eb1c5258.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e0abcee5da946c9942875f3eb1c5258.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e0abcee5da946c9942875f3eb1c5258.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e0abcee5da946c9942875f3eb1c5258.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQAp3JJEfdEUmHj-0TsmDOL_vdg=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.598457+00 2025-12-09 10:15:45.598463+00 18395 LJH2001#黄色 SPMX-20240815313620 \N \N \N 1 \N [{"file_id": "55bede17-6392-4a57-9faf-c59758e090da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c17e1f115bf4daeb104473f42b46af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c17e1f115bf4daeb104473f42b46af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c17e1f115bf4daeb104473f42b46af1.jpg", "file_size": 81674, "is_delete": false, "file_type": 1, "original_file_name": "LJH2001#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c17e1f115bf4daeb104473f42b46af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c17e1f115bf4daeb104473f42b46af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c17e1f115bf4daeb104473f42b46af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c17e1f115bf4daeb104473f42b46af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c17e1f115bf4daeb104473f42b46af1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MsTGVI5KhA1rONTco3_wR_X_TSU=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.601434+00 2025-12-09 10:15:45.60144+00 18396 8636#WJC22 SPMX-20240815313625 \N \N \N 1 \N [{"file_id": "64293edf-b696-49dc-8fe7-722a0e309808", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c807dba9631042ca8e51cec94211dba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c807dba9631042ca8e51cec94211dba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c807dba9631042ca8e51cec94211dba5.jpg", "file_size": 12265, "is_delete": false, "file_type": 1, "original_file_name": "8636#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c807dba9631042ca8e51cec94211dba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c807dba9631042ca8e51cec94211dba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c807dba9631042ca8e51cec94211dba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c807dba9631042ca8e51cec94211dba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c807dba9631042ca8e51cec94211dba5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YyMW3MDf3dRbgaghvUMmbjUnC7A=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.605291+00 2025-12-09 10:15:45.605298+00 18397 001-5FWE#L SPMX-20240815313624 \N \N \N 1 \N [{"file_id": "6a3316b3-9930-41b3-958d-33f20d079ec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e35ac96dce1c43a59d82e79dc23fe3df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e35ac96dce1c43a59d82e79dc23fe3df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e35ac96dce1c43a59d82e79dc23fe3df.jpg", "file_size": 15684, "is_delete": false, "file_type": 1, "original_file_name": "001-5FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35ac96dce1c43a59d82e79dc23fe3df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35ac96dce1c43a59d82e79dc23fe3df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35ac96dce1c43a59d82e79dc23fe3df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e35ac96dce1c43a59d82e79dc23fe3df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e35ac96dce1c43a59d82e79dc23fe3df.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_YvhVXuY16Opbwq1XGBUz24BeEg=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.608934+00 2025-12-09 10:15:45.608941+00 18398 CF0667-1#A1 SPMX-20240815313628 \N \N \N 1 \N [{"file_id": "1b8d4cb6-7666-4f6f-90a2-def5537ec357", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg", "file_size": 14727, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24e0ee3e2ac14d73bed9a7da2f8fcab5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4STlmUy_yYZOKF-Jlfe5TIZLmWs=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.61255+00 2025-12-09 10:15:45.612556+00 18399 LZ1385#上身2号色 SPMX-20240815313622 \N \N \N 1 \N [{"file_id": "2184d766-0cfc-403c-a351-ea4c140dcc8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "829328914e574dfda5984b467ca2846a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "829328914e574dfda5984b467ca2846a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "829328914e574dfda5984b467ca2846a.jpg", "file_size": 19116, "is_delete": false, "file_type": 1, "original_file_name": "LZ1385#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/829328914e574dfda5984b467ca2846a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/829328914e574dfda5984b467ca2846a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/829328914e574dfda5984b467ca2846a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/829328914e574dfda5984b467ca2846a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/829328914e574dfda5984b467ca2846a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HL61LgJPWUl5jZQtzTU7ph7IvNM=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.615824+00 2025-12-09 10:15:45.61583+00 18400 2326#原版色 SPMX-20240815313627 \N \N \N 1 \N [{"file_id": "fa529f6e-dc32-405b-be3f-df8cbc6781c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94f9e6919a624613a6799b82d76f868e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94f9e6919a624613a6799b82d76f868e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94f9e6919a624613a6799b82d76f868e.jpg", "file_size": 12624, "is_delete": false, "file_type": 1, "original_file_name": "2326#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f9e6919a624613a6799b82d76f868e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f9e6919a624613a6799b82d76f868e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f9e6919a624613a6799b82d76f868e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94f9e6919a624613a6799b82d76f868e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94f9e6919a624613a6799b82d76f868e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QuLFskHFuAm391tCoDEzLpYiW2M=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.619027+00 2025-12-09 10:15:45.619033+00 18401 FX0003-54#灰色 SPMX-20240815313623 \N \N \N 1 \N [{"file_id": "6e4493cf-9605-47ce-8521-452ba2917d30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "701106cbf2ee4d12811fbb27df90fe5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "701106cbf2ee4d12811fbb27df90fe5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "701106cbf2ee4d12811fbb27df90fe5a.jpg", "file_size": 63995, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-54#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/701106cbf2ee4d12811fbb27df90fe5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/701106cbf2ee4d12811fbb27df90fe5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/701106cbf2ee4d12811fbb27df90fe5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/701106cbf2ee4d12811fbb27df90fe5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/701106cbf2ee4d12811fbb27df90fe5a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PeLLtC-VPFL-H1CZuoWVUcEeGC4=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.622218+00 2025-12-09 10:15:45.622224+00 18402 JTSS892FWE#VS-D3 SPMX-20240815313626 \N \N \N 1 \N [{"file_id": "42e18f0e-884b-4ec6-9aea-b03caf635842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcedb440e205435aa6fffaa4df037130.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcedb440e205435aa6fffaa4df037130.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcedb440e205435aa6fffaa4df037130.jpg", "file_size": 5998, "is_delete": false, "file_type": 1, "original_file_name": "JTSS892FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcedb440e205435aa6fffaa4df037130.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcedb440e205435aa6fffaa4df037130.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcedb440e205435aa6fffaa4df037130.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcedb440e205435aa6fffaa4df037130.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcedb440e205435aa6fffaa4df037130.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lqxortk-xkLJ0ljjzpUPBor0roM=", "createTime": "2024-08-15 15:04:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.625402+00 2025-12-09 10:15:45.625408+00 18403 HXF-TB009#蓝色 SPMX-20240815313629 \N \N \N 1 \N [{"file_id": "48cbb8d3-b5dd-4b23-91f8-f0da34ee0425", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14af8b948b734c3eb3a1bd334f61ebed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14af8b948b734c3eb3a1bd334f61ebed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14af8b948b734c3eb3a1bd334f61ebed.jpg", "file_size": 13913, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB009#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14af8b948b734c3eb3a1bd334f61ebed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14af8b948b734c3eb3a1bd334f61ebed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14af8b948b734c3eb3a1bd334f61ebed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14af8b948b734c3eb3a1bd334f61ebed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14af8b948b734c3eb3a1bd334f61ebed.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pf9W5dy_D5YPsT5Hm7lgsEKpiz4=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.628692+00 2025-12-09 10:15:45.628698+00 18404 8639短裤#L码 SPMX-20240815313634 \N \N \N 1 \N [{"file_id": "46501465-fb79-4cdd-9301-135eb1743594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "974bd0c190544bd8beb4609c593c7f1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "974bd0c190544bd8beb4609c593c7f1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "974bd0c190544bd8beb4609c593c7f1e.jpg", "file_size": 16410, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974bd0c190544bd8beb4609c593c7f1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974bd0c190544bd8beb4609c593c7f1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/974bd0c190544bd8beb4609c593c7f1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/974bd0c190544bd8beb4609c593c7f1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/974bd0c190544bd8beb4609c593c7f1e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLhRbbAKhXvxHvPEIImUIVAMB2U=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.631675+00 2025-12-09 10:15:45.631682+00 18405 001-5FWE#M SPMX-20240815313636 \N \N \N 1 \N [{"file_id": "e843b235-7732-4ca7-894e-c2d7bd47769c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "622bba5a725e46ff80c7474e3252334d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "622bba5a725e46ff80c7474e3252334d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "622bba5a725e46ff80c7474e3252334d.jpg", "file_size": 15785, "is_delete": false, "file_type": 1, "original_file_name": "001-5FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622bba5a725e46ff80c7474e3252334d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622bba5a725e46ff80c7474e3252334d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622bba5a725e46ff80c7474e3252334d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/622bba5a725e46ff80c7474e3252334d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/622bba5a725e46ff80c7474e3252334d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HGkstMErIkGUPqdP7m-BH7BWar4=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.634893+00 2025-12-09 10:15:45.6349+00 18406 1231-37FWF#中童袖领匹布 SPMX-20240815313630 \N \N \N 1 \N [{"file_id": "42d30fb7-64ad-4927-964d-814d8852c421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg", "file_size": 14215, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eebbcda4a4c4cae9ccab6ac1fde26ee.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4O3f4pCZkTAR5vbr17ojf38IIAM=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.638132+00 2025-12-09 10:15:45.638139+00 18407 DL3312#袖子黑色 SPMX-20240815313632 \N \N \N 1 \N [{"file_id": "ddeea615-1bd6-41c1-96eb-360c96bef841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05709f8ca905419c9e939dbb65755730.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05709f8ca905419c9e939dbb65755730.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05709f8ca905419c9e939dbb65755730.jpg", "file_size": 11447, "is_delete": false, "file_type": 1, "original_file_name": "DL3312#袖子黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05709f8ca905419c9e939dbb65755730.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05709f8ca905419c9e939dbb65755730.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05709f8ca905419c9e939dbb65755730.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05709f8ca905419c9e939dbb65755730.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05709f8ca905419c9e939dbb65755730.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iE_WgH55gpliQ9kHPBH26XpOxhA=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.641372+00 2025-12-09 10:15:45.641378+00 18408 JTSS893FWE#VS-D3 SPMX-20240815313635 \N \N \N 1 \N [{"file_id": "5c691fdd-1360-42cb-b1f0-49e234086bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f485780b614d4315bdc155dfb4eb612c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f485780b614d4315bdc155dfb4eb612c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f485780b614d4315bdc155dfb4eb612c.jpg", "file_size": 15835, "is_delete": false, "file_type": 1, "original_file_name": "JTSS893FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f485780b614d4315bdc155dfb4eb612c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f485780b614d4315bdc155dfb4eb612c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f485780b614d4315bdc155dfb4eb612c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f485780b614d4315bdc155dfb4eb612c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f485780b614d4315bdc155dfb4eb612c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9TXVMHWCfcclkGANIzYnCywD1Io=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.644565+00 2025-12-09 10:15:45.644571+00 18409 FX0003-54#黄色 SPMX-20240815313637 \N \N \N 1 \N [{"file_id": "a9dd894a-8d93-4746-a716-68861e213135", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ff8fad2e3e840f7bbd9650cbc86b725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ff8fad2e3e840f7bbd9650cbc86b725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ff8fad2e3e840f7bbd9650cbc86b725.jpg", "file_size": 66719, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-54#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff8fad2e3e840f7bbd9650cbc86b725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff8fad2e3e840f7bbd9650cbc86b725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ff8fad2e3e840f7bbd9650cbc86b725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ff8fad2e3e840f7bbd9650cbc86b725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ff8fad2e3e840f7bbd9650cbc86b725.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-qCt2BHEU54dtE7bK8PSG3kU9w=", "createTime": "2024-08-15 15:04:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.647781+00 2025-12-09 10:15:45.647788+00 18410 LJH2005#兰色 SPMX-20240815313631 \N \N \N 1 \N [{"file_id": "4919510e-5fb4-4c7f-84c5-4801f1beda41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg", "file_size": 44602, "is_delete": false, "file_type": 1, "original_file_name": "LJH2005#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5ecbc7ec87f4f84bd3ea853bc9c51fb.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TdT1PptyxP4W-N2VGXHkwjsiw2g=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.651143+00 2025-12-09 10:15:45.65115+00 18411 LZ1385#上身3号色 SPMX-20240815313633 \N \N \N 1 \N [{"file_id": "40f18ca6-5c9e-4943-8a85-8e80a45f8369", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "736486fa953e40178ee3489524ab7c6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "736486fa953e40178ee3489524ab7c6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "736486fa953e40178ee3489524ab7c6d.jpg", "file_size": 19235, "is_delete": false, "file_type": 1, "original_file_name": "LZ1385#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736486fa953e40178ee3489524ab7c6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736486fa953e40178ee3489524ab7c6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/736486fa953e40178ee3489524ab7c6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/736486fa953e40178ee3489524ab7c6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/736486fa953e40178ee3489524ab7c6d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qx7W1imydF1HM-7sNBuX7Av2m1c=", "createTime": "2024-08-15 15:04:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.654503+00 2025-12-09 10:15:45.65451+00 18412 0010-1FWF#绿色V5曲线 SPMX-20240815313638 \N \N \N 1 \N [{"file_id": "ec1f0d3c-f15e-4f76-832b-cab11866550b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2f2f54b9d0e4620b091385236558a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2f2f54b9d0e4620b091385236558a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2f2f54b9d0e4620b091385236558a43.jpg", "file_size": 21656, "is_delete": false, "file_type": 1, "original_file_name": "0010-1FWF#绿色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f2f54b9d0e4620b091385236558a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f2f54b9d0e4620b091385236558a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f2f54b9d0e4620b091385236558a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2f2f54b9d0e4620b091385236558a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2f2f54b9d0e4620b091385236558a43.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcRhSmOINepjXiGAJtYR5I_bZdA=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.657831+00 2025-12-09 10:15:45.657837+00 18413 JTSS894FWE#VS-D3 SPMX-20240815313640 \N \N \N 1 \N [{"file_id": "1fc5f0ed-7634-48e3-98a9-fbceb79722ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e302e09f059743aa835476584e50ba3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e302e09f059743aa835476584e50ba3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e302e09f059743aa835476584e50ba3a.jpg", "file_size": 13370, "is_delete": false, "file_type": 1, "original_file_name": "JTSS894FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e302e09f059743aa835476584e50ba3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e302e09f059743aa835476584e50ba3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e302e09f059743aa835476584e50ba3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e302e09f059743aa835476584e50ba3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e302e09f059743aa835476584e50ba3a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lrj5097TmEfOVEeAiMWSvM9YPro=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.661083+00 2025-12-09 10:15:45.66109+00 18414 CF0667-1#A1净色 SPMX-20240815313639 \N \N \N 1 \N [{"file_id": "8ba8e386-bbd9-457e-a468-8df75ec0c66e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ad5cf5ae2a455385fb0988dbb29994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ad5cf5ae2a455385fb0988dbb29994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ad5cf5ae2a455385fb0988dbb29994.jpg", "file_size": 7593, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A1净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ad5cf5ae2a455385fb0988dbb29994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ad5cf5ae2a455385fb0988dbb29994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ad5cf5ae2a455385fb0988dbb29994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ad5cf5ae2a455385fb0988dbb29994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ad5cf5ae2a455385fb0988dbb29994.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wydJTSQfDgwJgQPxQ1wsncekufg=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.664288+00 2025-12-09 10:15:45.664294+00 18415 1231-37FWF#小童6码 SPMX-20240815313642 \N \N \N 1 \N [{"file_id": "eb23ebd3-0952-498c-8c39-c748a91328f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8e3f23139ca46e5ade84c22e1765464.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8e3f23139ca46e5ade84c22e1765464.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8e3f23139ca46e5ade84c22e1765464.jpg", "file_size": 22240, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e3f23139ca46e5ade84c22e1765464.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e3f23139ca46e5ade84c22e1765464.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e3f23139ca46e5ade84c22e1765464.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8e3f23139ca46e5ade84c22e1765464.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8e3f23139ca46e5ade84c22e1765464.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LAGDu4dxYrKR12R1kzqTYco_KGw=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.667515+00 2025-12-09 10:15:45.667521+00 18416 LZ1385#上身4号色 SPMX-20240815313641 \N \N \N 1 \N [{"file_id": "b0322c7f-79cc-4dce-9f82-a55287242fa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2abf27ab12644709a6cfa506e8989d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2abf27ab12644709a6cfa506e8989d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2abf27ab12644709a6cfa506e8989d8.jpg", "file_size": 19868, "is_delete": false, "file_type": 1, "original_file_name": "LZ1385#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2abf27ab12644709a6cfa506e8989d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2abf27ab12644709a6cfa506e8989d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2abf27ab12644709a6cfa506e8989d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2abf27ab12644709a6cfa506e8989d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2abf27ab12644709a6cfa506e8989d8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qg2DUOvlX5-V8xorSmzds5emfLY=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.670891+00 2025-12-09 10:15:45.670897+00 18417 FX0003-55#RC23 SPMX-20240815313648 \N \N \N 1 \N [{"file_id": "105202f1-5cd4-4a0d-8a32-fb1022b605f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0ea45c7fefb408681a68838f0e965d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0ea45c7fefb408681a68838f0e965d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0ea45c7fefb408681a68838f0e965d1.jpg", "file_size": 47679, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-55#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ea45c7fefb408681a68838f0e965d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ea45c7fefb408681a68838f0e965d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ea45c7fefb408681a68838f0e965d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0ea45c7fefb408681a68838f0e965d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0ea45c7fefb408681a68838f0e965d1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVGSz4bg6wK6Rp0Doupd5QxA8E4=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.674159+00 2025-12-09 10:15:45.674166+00 18418 LJH2005#原版咖啡 SPMX-20240815313643 \N \N \N 1 \N [{"file_id": "83254e60-1761-47eb-89fa-2eb1b8d9eb61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26ac02aeb1814500a60392ba50e6d035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26ac02aeb1814500a60392ba50e6d035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26ac02aeb1814500a60392ba50e6d035.jpg", "file_size": 48613, "is_delete": false, "file_type": 1, "original_file_name": "LJH2005#原版咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ac02aeb1814500a60392ba50e6d035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ac02aeb1814500a60392ba50e6d035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ac02aeb1814500a60392ba50e6d035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26ac02aeb1814500a60392ba50e6d035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26ac02aeb1814500a60392ba50e6d035.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DXlEmYGKptVNhMyV51K1XAQjUao=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.677355+00 2025-12-09 10:15:45.67736+00 18419 HXF-TB010#RC23 SPMX-20240815313645 \N \N \N 1 \N [{"file_id": "45b1c429-0045-4763-afb2-b6a3d7da7d46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b89a288ed349efa9ad2b821c287795.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b89a288ed349efa9ad2b821c287795.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b89a288ed349efa9ad2b821c287795.jpg", "file_size": 42696, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB010#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b89a288ed349efa9ad2b821c287795.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b89a288ed349efa9ad2b821c287795.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b89a288ed349efa9ad2b821c287795.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b89a288ed349efa9ad2b821c287795.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b89a288ed349efa9ad2b821c287795.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h03zojp0STdiSMTtK_lXmQMXV9E=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.680576+00 2025-12-09 10:15:45.680582+00 18420 2326-1FWE#土黄底大白点 SPMX-20240815313647 \N \N \N 1 \N [{"file_id": "50038021-4e79-4d15-8245-5313eee3278b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c98f18fd3f594280983231f3f5e9777f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c98f18fd3f594280983231f3f5e9777f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c98f18fd3f594280983231f3f5e9777f.jpg", "file_size": 8616, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#土黄底大白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98f18fd3f594280983231f3f5e9777f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98f18fd3f594280983231f3f5e9777f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c98f18fd3f594280983231f3f5e9777f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c98f18fd3f594280983231f3f5e9777f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c98f18fd3f594280983231f3f5e9777f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJz0VyBnINQvaVwoOiroRsa3yH8=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.683768+00 2025-12-09 10:15:45.683774+00 18421 DL3316#前幅亮黄色 SPMX-20240815313644 \N \N \N 1 \N [{"file_id": "3001c6eb-6330-4785-8b25-512508a015f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg", "file_size": 12145, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ec58eb7c3ca4006b7c316b5c1dd9bfe.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fifXgS5JNJoog3j6Vp2Z6t84T4=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.687003+00 2025-12-09 10:15:45.687009+00 18422 8639短裤#M码 SPMX-20240815313646 \N \N \N 1 \N [{"file_id": "26d7bfaf-8171-47e0-9eb6-409fc86ff3dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54993abd1b694a7bb5cdd7e63e4fbfb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54993abd1b694a7bb5cdd7e63e4fbfb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54993abd1b694a7bb5cdd7e63e4fbfb4.jpg", "file_size": 15752, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54993abd1b694a7bb5cdd7e63e4fbfb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54993abd1b694a7bb5cdd7e63e4fbfb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54993abd1b694a7bb5cdd7e63e4fbfb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54993abd1b694a7bb5cdd7e63e4fbfb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54993abd1b694a7bb5cdd7e63e4fbfb4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8CS3cutL2_GEjpPL29bPRF-OyU=", "createTime": "2024-08-15 15:04:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.690223+00 2025-12-09 10:15:45.690229+00 18423 HXF-TB015#2XL SPMX-20240815313655 \N \N \N 1 \N [{"file_id": "2ec34a92-2c3f-4dd5-86e1-c0932d5c1a24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f346c8a8ee5415eb266d006f9ac43be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f346c8a8ee5415eb266d006f9ac43be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f346c8a8ee5415eb266d006f9ac43be.jpg", "file_size": 20576, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f346c8a8ee5415eb266d006f9ac43be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f346c8a8ee5415eb266d006f9ac43be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f346c8a8ee5415eb266d006f9ac43be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f346c8a8ee5415eb266d006f9ac43be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f346c8a8ee5415eb266d006f9ac43be.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVrMygU7s0TlucxcZITRDma_kzc=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.693462+00 2025-12-09 10:15:45.693469+00 18424 LJH2005#红色 SPMX-20240815313651 \N \N \N 1 \N [{"file_id": "59f6e34f-1d73-4b60-8443-8bea5076dce5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18d59b9a7ab24eac912840eb3562d455.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18d59b9a7ab24eac912840eb3562d455.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18d59b9a7ab24eac912840eb3562d455.jpg", "file_size": 45074, "is_delete": false, "file_type": 1, "original_file_name": "LJH2005#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d59b9a7ab24eac912840eb3562d455.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d59b9a7ab24eac912840eb3562d455.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18d59b9a7ab24eac912840eb3562d455.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18d59b9a7ab24eac912840eb3562d455.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18d59b9a7ab24eac912840eb3562d455.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6H4I4XMqHU4-COFowNP2oWO-bc=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.696681+00 2025-12-09 10:15:45.696688+00 18425 1231-37FWF#小童8码+4码 SPMX-20240815313656 \N \N \N 1 \N [{"file_id": "38e6de91-5b06-4cbd-8aa7-1d67e8af5d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fea8f468c6284822b594cddb5fc0ca31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fea8f468c6284822b594cddb5fc0ca31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fea8f468c6284822b594cddb5fc0ca31.jpg", "file_size": 22340, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea8f468c6284822b594cddb5fc0ca31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea8f468c6284822b594cddb5fc0ca31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea8f468c6284822b594cddb5fc0ca31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fea8f468c6284822b594cddb5fc0ca31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fea8f468c6284822b594cddb5fc0ca31.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWYJSGcnf7o_V0AeQWOmWg8bipw=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.699882+00 2025-12-09 10:15:45.699888+00 18426 JTSS895FWE#VS-D3 SPMX-20240815313650 \N \N \N 1 \N [{"file_id": "1e72e5b3-2f28-4124-aa9c-915cd77b9780", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d7aef5f4d134e85a91a8a882d2969ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d7aef5f4d134e85a91a8a882d2969ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d7aef5f4d134e85a91a8a882d2969ed.jpg", "file_size": 16600, "is_delete": false, "file_type": 1, "original_file_name": "JTSS895FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7aef5f4d134e85a91a8a882d2969ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7aef5f4d134e85a91a8a882d2969ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d7aef5f4d134e85a91a8a882d2969ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d7aef5f4d134e85a91a8a882d2969ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d7aef5f4d134e85a91a8a882d2969ed.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2P83Qy-nLhoOIBFmi4paUWLZQ8=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.703044+00 2025-12-09 10:15:45.703049+00 18427 DL3316#前幅彩兰色 SPMX-20240815313652 \N \N \N 1 \N [{"file_id": "08f5023a-549a-4c7f-a728-532c1e11873e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f553ac91d8b4593bbdd214185d5f3a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f553ac91d8b4593bbdd214185d5f3a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f553ac91d8b4593bbdd214185d5f3a8.jpg", "file_size": 12769, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f553ac91d8b4593bbdd214185d5f3a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f553ac91d8b4593bbdd214185d5f3a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f553ac91d8b4593bbdd214185d5f3a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f553ac91d8b4593bbdd214185d5f3a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f553ac91d8b4593bbdd214185d5f3a8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7c9lpCHkNiQhyIiyY-NHD-LKh9E=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.706306+00 2025-12-09 10:15:45.706312+00 18428 0010-2FWF#紫色V5曲线 SPMX-20240815313654 \N \N \N 1 \N [{"file_id": "47273d6e-e371-447d-b92b-41dea9a6ffac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472200d037db446b9ecb8d7007c82b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472200d037db446b9ecb8d7007c82b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472200d037db446b9ecb8d7007c82b87.jpg", "file_size": 17858, "is_delete": false, "file_type": 1, "original_file_name": "0010-2FWF#紫色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472200d037db446b9ecb8d7007c82b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472200d037db446b9ecb8d7007c82b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472200d037db446b9ecb8d7007c82b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472200d037db446b9ecb8d7007c82b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472200d037db446b9ecb8d7007c82b87.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pJDQ8wlGLYfD2fdZaiZHW_qGAS4=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.709551+00 2025-12-09 10:15:45.709558+00 18429 LZ1385#上身5号色 SPMX-20240815313653 \N \N \N 1 \N [{"file_id": "d6dd5f79-7d08-4e54-b432-4c0cc331fe01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb9f2b2d45ea489285f08fb2530cdd4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb9f2b2d45ea489285f08fb2530cdd4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb9f2b2d45ea489285f08fb2530cdd4e.jpg", "file_size": 20065, "is_delete": false, "file_type": 1, "original_file_name": "LZ1385#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9f2b2d45ea489285f08fb2530cdd4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9f2b2d45ea489285f08fb2530cdd4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9f2b2d45ea489285f08fb2530cdd4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb9f2b2d45ea489285f08fb2530cdd4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb9f2b2d45ea489285f08fb2530cdd4e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUDQkxO4ItUDynQ0n3eIe9VcRyg=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.712774+00 2025-12-09 10:15:45.71278+00 18430 CF0667-1#A2 SPMX-20240815313649 \N \N \N 1 \N [{"file_id": "8f0371b4-89a6-4d32-a78d-2420acd93b76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31abc57507c341b3bbf33c9690126757.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31abc57507c341b3bbf33c9690126757.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31abc57507c341b3bbf33c9690126757.jpg", "file_size": 15101, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31abc57507c341b3bbf33c9690126757.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31abc57507c341b3bbf33c9690126757.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31abc57507c341b3bbf33c9690126757.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31abc57507c341b3bbf33c9690126757.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31abc57507c341b3bbf33c9690126757.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xLpUWvqtIxJsmV88rH_2ip99kuw=", "createTime": "2024-08-15 15:04:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.715991+00 2025-12-09 10:15:45.715997+00 18431 JTSS896FWE#VS-D3 SPMX-20240815313661 \N \N \N 1 \N [{"file_id": "5eb09218-a100-4edb-8ab2-ccea66aa5084", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472d601317064613851af8ebc8052548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472d601317064613851af8ebc8052548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472d601317064613851af8ebc8052548.jpg", "file_size": 14491, "is_delete": false, "file_type": 1, "original_file_name": "JTSS896FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472d601317064613851af8ebc8052548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472d601317064613851af8ebc8052548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472d601317064613851af8ebc8052548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472d601317064613851af8ebc8052548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472d601317064613851af8ebc8052548.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:54fz9Xpi_pMIPpfcF-RM0IpwNyA=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.719221+00 2025-12-09 10:15:45.719227+00 18432 FX0003-56#RC23 SPMX-20240815313659 \N \N \N 1 \N [{"file_id": "89faed96-296e-4ff0-bd4a-800dc08e097b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2d04f22fb1d444a9c9a9238083dc02c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2d04f22fb1d444a9c9a9238083dc02c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2d04f22fb1d444a9c9a9238083dc02c.jpg", "file_size": 40820, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-56#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d04f22fb1d444a9c9a9238083dc02c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d04f22fb1d444a9c9a9238083dc02c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2d04f22fb1d444a9c9a9238083dc02c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2d04f22fb1d444a9c9a9238083dc02c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2d04f22fb1d444a9c9a9238083dc02c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7-xhuJqh-nxQJFX7pYVrFT6938=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.722419+00 2025-12-09 10:15:45.722425+00 18433 CF0667-1#A2净色 SPMX-20240815313662 \N \N \N 1 \N [{"file_id": "ddc5cc49-7f07-4d6e-a2df-6863e9f34bf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc6d4563013d4a9e84aae32603331529.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc6d4563013d4a9e84aae32603331529.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc6d4563013d4a9e84aae32603331529.jpg", "file_size": 7291, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A2净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d4563013d4a9e84aae32603331529.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d4563013d4a9e84aae32603331529.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d4563013d4a9e84aae32603331529.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc6d4563013d4a9e84aae32603331529.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc6d4563013d4a9e84aae32603331529.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjv6IH_gqRHd9v304E1c3l8dR54=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.725625+00 2025-12-09 10:15:45.72563+00 18434 HXF-TB015#L SPMX-20240815313660 \N \N \N 1 \N [{"file_id": "ee7c02b0-d2c6-4748-a202-2fd8f04b50ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg", "file_size": 19534, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaba3d5eb38b4eb29a8dd02cca60c1dd.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yZ27iDM3sih59HZJHHgPQepFKvA=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.72888+00 2025-12-09 10:15:45.728886+00 18435 8639短裤#S码 SPMX-20240815313657 \N \N \N 1 \N [{"file_id": "412ce53f-9c11-4f6c-89ff-10905532e138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b349f218a7043abb16babc3b3b6eab1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b349f218a7043abb16babc3b3b6eab1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b349f218a7043abb16babc3b3b6eab1.jpg", "file_size": 15498, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b349f218a7043abb16babc3b3b6eab1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b349f218a7043abb16babc3b3b6eab1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b349f218a7043abb16babc3b3b6eab1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b349f218a7043abb16babc3b3b6eab1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b349f218a7043abb16babc3b3b6eab1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Jkw0wqZcnq6rmaXm5BXzSjQJVc=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.732076+00 2025-12-09 10:15:45.732082+00 18436 2326-1FWE#宝蓝底大白点 SPMX-20240815313658 \N \N \N 1 \N [{"file_id": "0752579f-f055-4cad-b719-8533b9f6303a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39587ccef72e42aa80c3444f3cea11b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39587ccef72e42aa80c3444f3cea11b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39587ccef72e42aa80c3444f3cea11b2.jpg", "file_size": 9308, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#宝蓝底大白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39587ccef72e42aa80c3444f3cea11b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39587ccef72e42aa80c3444f3cea11b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39587ccef72e42aa80c3444f3cea11b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39587ccef72e42aa80c3444f3cea11b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39587ccef72e42aa80c3444f3cea11b2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5b29wHZkCeXHYEZukE3b9RcqPQ=", "createTime": "2024-08-15 15:04:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.735268+00 2025-12-09 10:15:45.735274+00 18437 FX0003-57#RC23 SPMX-20240815313670 \N \N \N 1 \N [{"file_id": "88a7afbe-6027-45a1-8ce4-867a840b2eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02b4b31515ed42d0907da82a6e20ed88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02b4b31515ed42d0907da82a6e20ed88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02b4b31515ed42d0907da82a6e20ed88.jpg", "file_size": 49446, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-57#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b4b31515ed42d0907da82a6e20ed88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b4b31515ed42d0907da82a6e20ed88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b4b31515ed42d0907da82a6e20ed88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02b4b31515ed42d0907da82a6e20ed88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02b4b31515ed42d0907da82a6e20ed88.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WHs4uqi8__5SEZaXWK303pR-QM=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.738453+00 2025-12-09 10:15:45.73846+00 18438 8639短裤#XL码 SPMX-20240815313667 \N \N \N 1 \N [{"file_id": "a025905c-1869-42bc-a765-22f6a5092d16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "246cb9018afa4dd5be4b17dc3f88dd8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "246cb9018afa4dd5be4b17dc3f88dd8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "246cb9018afa4dd5be4b17dc3f88dd8b.jpg", "file_size": 16759, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246cb9018afa4dd5be4b17dc3f88dd8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246cb9018afa4dd5be4b17dc3f88dd8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/246cb9018afa4dd5be4b17dc3f88dd8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/246cb9018afa4dd5be4b17dc3f88dd8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/246cb9018afa4dd5be4b17dc3f88dd8b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8QxOgYcmMMKpxEUrOKp_LHYXYWc=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.741629+00 2025-12-09 10:15:45.741635+00 18439 1231-37FWF#小童袖领匹布 SPMX-20240815313663 \N \N \N 1 \N [{"file_id": "bfa49bae-b5ad-446b-b85c-4274228b50c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2f4f868a4543b98243fbd03b8684d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2f4f868a4543b98243fbd03b8684d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2f4f868a4543b98243fbd03b8684d5.jpg", "file_size": 14334, "is_delete": false, "file_type": 1, "original_file_name": "1231-37FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2f4f868a4543b98243fbd03b8684d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2f4f868a4543b98243fbd03b8684d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2f4f868a4543b98243fbd03b8684d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2f4f868a4543b98243fbd03b8684d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2f4f868a4543b98243fbd03b8684d5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOj6ecVVndRjAbKdNu4rCgNopgg=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.744815+00 2025-12-09 10:15:45.744826+00 18440 2326-1FWE#枣红底大白点 SPMX-20240815313669 \N \N \N 1 \N [{"file_id": "405cc052-b98e-4270-add0-5edf6cb21b4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg", "file_size": 9284, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#枣红底大白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cba0f94c321e4aaf9fd0c7d222ed4cb6.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bY4YNsHE5e-WiE--FQ8xaz5S8nY=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.748069+00 2025-12-09 10:15:45.748075+00 18441 LJH2005#黄色 SPMX-20240815313668 \N \N \N 1 \N [{"file_id": "bb5bf6bd-1b19-41e5-b154-6706541a904e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db71a3d2d84e43a1869dd6b9a126307c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db71a3d2d84e43a1869dd6b9a126307c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db71a3d2d84e43a1869dd6b9a126307c.jpg", "file_size": 49177, "is_delete": false, "file_type": 1, "original_file_name": "LJH2005#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71a3d2d84e43a1869dd6b9a126307c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71a3d2d84e43a1869dd6b9a126307c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db71a3d2d84e43a1869dd6b9a126307c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db71a3d2d84e43a1869dd6b9a126307c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db71a3d2d84e43a1869dd6b9a126307c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNj7ALQWpZUKcKJ1s6VJSvM6U9M=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.751187+00 2025-12-09 10:15:45.751193+00 18442 JTSS897FWE#VS-D3 SPMX-20240815313671 \N \N \N 1 \N [{"file_id": "d466c0cb-b980-4bf6-9a1f-7764ad10dd9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54332b566fa04b9e9e82ce711ee59d04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54332b566fa04b9e9e82ce711ee59d04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54332b566fa04b9e9e82ce711ee59d04.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "JTSS897FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54332b566fa04b9e9e82ce711ee59d04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54332b566fa04b9e9e82ce711ee59d04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54332b566fa04b9e9e82ce711ee59d04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54332b566fa04b9e9e82ce711ee59d04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54332b566fa04b9e9e82ce711ee59d04.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMsOTXztM48gnWeH7YW-wE2evFQ=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.754349+00 2025-12-09 10:15:45.754355+00 18443 DL3316#前幅枣红色 SPMX-20240815313664 \N \N \N 1 \N [{"file_id": "b95993ea-6af5-4c55-8199-52f6789196ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f50569d9e584471da5310639d27f568e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f50569d9e584471da5310639d27f568e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f50569d9e584471da5310639d27f568e.jpg", "file_size": 12429, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50569d9e584471da5310639d27f568e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50569d9e584471da5310639d27f568e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f50569d9e584471da5310639d27f568e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f50569d9e584471da5310639d27f568e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f50569d9e584471da5310639d27f568e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvhUXpi2swVl-GwbI_3A9hEsIU8=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.757504+00 2025-12-09 10:15:45.75751+00 18444 CF0667-1#A3 SPMX-20240815313672 \N \N \N 1 \N [{"file_id": "3ebb80f3-59ca-4b25-8883-331896136eae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0ed1122dc6a4fb5b188724718d933ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0ed1122dc6a4fb5b188724718d933ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0ed1122dc6a4fb5b188724718d933ec.jpg", "file_size": 15539, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ed1122dc6a4fb5b188724718d933ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ed1122dc6a4fb5b188724718d933ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0ed1122dc6a4fb5b188724718d933ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0ed1122dc6a4fb5b188724718d933ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0ed1122dc6a4fb5b188724718d933ec.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NFr3telz6sd_YVpuo1miirmwNIw=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.760716+00 2025-12-09 10:15:45.760722+00 18445 LZ1386#上身1号色 SPMX-20240815313665 \N \N \N 1 \N [{"file_id": "abe7ab91-1743-485e-a450-20e1907eff24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "797679b503a449a28cd54f70ee0b368f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "797679b503a449a28cd54f70ee0b368f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "797679b503a449a28cd54f70ee0b368f.jpg", "file_size": 21726, "is_delete": false, "file_type": 1, "original_file_name": "LZ1386#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797679b503a449a28cd54f70ee0b368f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797679b503a449a28cd54f70ee0b368f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/797679b503a449a28cd54f70ee0b368f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/797679b503a449a28cd54f70ee0b368f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/797679b503a449a28cd54f70ee0b368f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBOFmr-OStn2GpUAhnzhu-9_Oio=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.763878+00 2025-12-09 10:15:45.763884+00 18446 HXF-TB015#M SPMX-20240815313673 \N \N \N 1 \N [{"file_id": "da5f5fc5-5b26-4e35-8f95-9b2eb89ec817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1eae216927f4e03a9aef4a901040bdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1eae216927f4e03a9aef4a901040bdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1eae216927f4e03a9aef4a901040bdc.jpg", "file_size": 19413, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eae216927f4e03a9aef4a901040bdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eae216927f4e03a9aef4a901040bdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1eae216927f4e03a9aef4a901040bdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1eae216927f4e03a9aef4a901040bdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1eae216927f4e03a9aef4a901040bdc.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFPZCLVJJERQqw3DfYoASsnkGpc=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.767+00 2025-12-09 10:15:45.767007+00 18447 0010-3FWF#V5曲线 SPMX-20240815313666 \N \N \N 1 \N [{"file_id": "63a10844-bd06-448c-b2b8-3ab199ae9a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8aa51661548340189ce4f7b402d2db9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8aa51661548340189ce4f7b402d2db9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8aa51661548340189ce4f7b402d2db9a.jpg", "file_size": 17241, "is_delete": false, "file_type": 1, "original_file_name": "0010-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa51661548340189ce4f7b402d2db9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa51661548340189ce4f7b402d2db9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8aa51661548340189ce4f7b402d2db9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8aa51661548340189ce4f7b402d2db9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8aa51661548340189ce4f7b402d2db9a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mubZkfLX1QI7nFk_Bkm2wT4jXwg=", "createTime": "2024-08-15 15:04:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.770279+00 2025-12-09 10:15:45.770286+00 18448 LZ1386#上身2号色 SPMX-20240815313676 \N \N \N 1 \N [{"file_id": "ec3cacb0-b6c9-40c5-8577-30eb59c6abaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b00a4a806f4db2a5fb4db35abd9214.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b00a4a806f4db2a5fb4db35abd9214.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b00a4a806f4db2a5fb4db35abd9214.jpg", "file_size": 21008, "is_delete": false, "file_type": 1, "original_file_name": "LZ1386#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b00a4a806f4db2a5fb4db35abd9214.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b00a4a806f4db2a5fb4db35abd9214.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b00a4a806f4db2a5fb4db35abd9214.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b00a4a806f4db2a5fb4db35abd9214.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b00a4a806f4db2a5fb4db35abd9214.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDmIEtOUjpmy3Bgt5UNYGl6zFWE=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.773513+00 2025-12-09 10:15:45.773519+00 18449 8639短裤#耳仔布 SPMX-20240815313677 \N \N \N 1 \N [{"file_id": "0d6e33cd-ae61-4c4a-a4c7-fbeedc5a75c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20a17d15d37b4feaa6a486506e71317c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20a17d15d37b4feaa6a486506e71317c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20a17d15d37b4feaa6a486506e71317c.jpg", "file_size": 5933, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#耳仔布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a17d15d37b4feaa6a486506e71317c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a17d15d37b4feaa6a486506e71317c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a17d15d37b4feaa6a486506e71317c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20a17d15d37b4feaa6a486506e71317c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20a17d15d37b4feaa6a486506e71317c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lq1NI1kugaU1CXsK2H6etJmcEeQ=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.776701+00 2025-12-09 10:15:45.776712+00 18450 CF0667-1#A4 SPMX-20240815313684 \N \N \N 1 \N [{"file_id": "d7c8ce02-5154-4bbd-b283-aa00d7acdf37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bd6ea2655af4c25a8e32e706f1f35cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bd6ea2655af4c25a8e32e706f1f35cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bd6ea2655af4c25a8e32e706f1f35cc.jpg", "file_size": 14936, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd6ea2655af4c25a8e32e706f1f35cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd6ea2655af4c25a8e32e706f1f35cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd6ea2655af4c25a8e32e706f1f35cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bd6ea2655af4c25a8e32e706f1f35cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bd6ea2655af4c25a8e32e706f1f35cc.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:llqFifXf7GxTe1u2nSewPpno7F0=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.779881+00 2025-12-09 10:15:45.779887+00 18451 0010-5FWF#V5曲线 SPMX-20240815313685 \N \N \N 1 \N [{"file_id": "117f46b6-f147-4ca2-8a46-eceb1c015648", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4486c0558337473b81139899a56c7e4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4486c0558337473b81139899a56c7e4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4486c0558337473b81139899a56c7e4d.jpg", "file_size": 14648, "is_delete": false, "file_type": 1, "original_file_name": "0010-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4486c0558337473b81139899a56c7e4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4486c0558337473b81139899a56c7e4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4486c0558337473b81139899a56c7e4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4486c0558337473b81139899a56c7e4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4486c0558337473b81139899a56c7e4d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwoLhlSaVqvoa7xbmmyYHH_fUQE=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.782986+00 2025-12-09 10:15:45.782993+00 18452 2326-1FWE#枣红底大白点番禺调色 SPMX-20240815313679 \N \N \N 1 \N [{"file_id": "256bfaa7-a140-4d0d-b239-27ebbfa85981", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "476ef9ff24e743d88ffac4940fcadc2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "476ef9ff24e743d88ffac4940fcadc2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "476ef9ff24e743d88ffac4940fcadc2b.jpg", "file_size": 10104, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#枣红底大白点番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476ef9ff24e743d88ffac4940fcadc2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476ef9ff24e743d88ffac4940fcadc2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/476ef9ff24e743d88ffac4940fcadc2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/476ef9ff24e743d88ffac4940fcadc2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/476ef9ff24e743d88ffac4940fcadc2b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OBN-KhArltsjPlYZc0rT3BpBVmg=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.786197+00 2025-12-09 10:15:45.786203+00 18453 1231-38FWF#中童12码+10码 SPMX-20240815313675 \N \N \N 1 \N [{"file_id": "6d4b6cb1-a856-46fc-a726-5b6201888e7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dc29f240cd2407881cd6696d11e682a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dc29f240cd2407881cd6696d11e682a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dc29f240cd2407881cd6696d11e682a.jpg", "file_size": 20244, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc29f240cd2407881cd6696d11e682a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc29f240cd2407881cd6696d11e682a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dc29f240cd2407881cd6696d11e682a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dc29f240cd2407881cd6696d11e682a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dc29f240cd2407881cd6696d11e682a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vj5fXhzjd9hpoDZR4X2hIfZ-99Q=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.789394+00 2025-12-09 10:15:45.789401+00 18454 LJH2010#杏色 SPMX-20240815313680 \N \N \N 1 \N [{"file_id": "ba23b561-711b-49f1-8d74-448317308123", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ecf0970aaef4db4bde4e4d4e02d4342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ecf0970aaef4db4bde4e4d4e02d4342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ecf0970aaef4db4bde4e4d4e02d4342.jpg", "file_size": 48882, "is_delete": false, "file_type": 1, "original_file_name": "LJH2010#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecf0970aaef4db4bde4e4d4e02d4342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecf0970aaef4db4bde4e4d4e02d4342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ecf0970aaef4db4bde4e4d4e02d4342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ecf0970aaef4db4bde4e4d4e02d4342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ecf0970aaef4db4bde4e4d4e02d4342.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zEzRjSlb3aFjYQOjicwvfzlWhDE=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.792607+00 2025-12-09 10:15:45.792613+00 18455 FX0003-58#RC23 SPMX-20240815313681 \N \N \N 1 \N [{"file_id": "a4b3904a-0183-4065-9cb6-5181691fafde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9401db5f53b4d598b6001c8f6d11a35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9401db5f53b4d598b6001c8f6d11a35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9401db5f53b4d598b6001c8f6d11a35.jpg", "file_size": 19395, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-58#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9401db5f53b4d598b6001c8f6d11a35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9401db5f53b4d598b6001c8f6d11a35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9401db5f53b4d598b6001c8f6d11a35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9401db5f53b4d598b6001c8f6d11a35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9401db5f53b4d598b6001c8f6d11a35.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EEBF6a_DG_cYhjU3DxE0dDoVOLc=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.795786+00 2025-12-09 10:15:45.795791+00 18456 JTSS898FWE#VS-D3 SPMX-20240815313682 \N \N \N 1 \N [{"file_id": "1f67cb7d-dc40-4170-96c2-da3614124a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdba7f9ef5864a9ba1ae6fd61f380960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdba7f9ef5864a9ba1ae6fd61f380960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdba7f9ef5864a9ba1ae6fd61f380960.jpg", "file_size": 13958, "is_delete": false, "file_type": 1, "original_file_name": "JTSS898FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdba7f9ef5864a9ba1ae6fd61f380960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdba7f9ef5864a9ba1ae6fd61f380960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdba7f9ef5864a9ba1ae6fd61f380960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdba7f9ef5864a9ba1ae6fd61f380960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdba7f9ef5864a9ba1ae6fd61f380960.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCC_UCxTVgpJAlp2MyD_i6AcKK8=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.799+00 2025-12-09 10:15:45.799006+00 18457 HXF-TB015#XL SPMX-20240815313683 \N \N \N 1 \N [{"file_id": "4b586564-5386-482a-b8f3-9fcd209da499", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "790f52f45bda487ca68d08ea7bff1e8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "790f52f45bda487ca68d08ea7bff1e8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "790f52f45bda487ca68d08ea7bff1e8c.jpg", "file_size": 20037, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790f52f45bda487ca68d08ea7bff1e8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790f52f45bda487ca68d08ea7bff1e8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790f52f45bda487ca68d08ea7bff1e8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/790f52f45bda487ca68d08ea7bff1e8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/790f52f45bda487ca68d08ea7bff1e8c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Q8Z41AmaHDfwLudigstjwPIAUE=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.802179+00 2025-12-09 10:15:45.802185+00 18458 0010-4FWF#V5曲线 SPMX-20240815313674 \N \N \N 1 \N [{"file_id": "b569d7e7-5fc5-40ea-841f-ef34794aa695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg", "file_size": 14719, "is_delete": false, "file_type": 1, "original_file_name": "0010-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ae83fbfa8ba444d8b59e60d4cfea6d3.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdZCRqBpnRSiRDQboyqX141_yDE=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.805385+00 2025-12-09 10:15:45.805392+00 18459 DL3316#前幅浅粉色 SPMX-20240815313678 \N \N \N 1 \N [{"file_id": "20a895b3-67c2-495d-b60c-8389d6a9c93a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0587b0c2c3f0424bbac62f68ff856dc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0587b0c2c3f0424bbac62f68ff856dc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0587b0c2c3f0424bbac62f68ff856dc5.jpg", "file_size": 11768, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0587b0c2c3f0424bbac62f68ff856dc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0587b0c2c3f0424bbac62f68ff856dc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0587b0c2c3f0424bbac62f68ff856dc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0587b0c2c3f0424bbac62f68ff856dc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0587b0c2c3f0424bbac62f68ff856dc5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NJfaWoD3rCwB6evj9sYMEtwJqYw=", "createTime": "2024-08-15 15:04:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.808596+00 2025-12-09 10:15:45.808603+00 18460 LJH2010#白色 SPMX-20240815313690 \N \N \N 1 \N [{"file_id": "1b66dbe3-6535-4f6a-a523-b2c0252d8a82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eed596c2fb344382b3360ce6c28f0f58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eed596c2fb344382b3360ce6c28f0f58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eed596c2fb344382b3360ce6c28f0f58.jpg", "file_size": 43063, "is_delete": false, "file_type": 1, "original_file_name": "LJH2010#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed596c2fb344382b3360ce6c28f0f58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed596c2fb344382b3360ce6c28f0f58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eed596c2fb344382b3360ce6c28f0f58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eed596c2fb344382b3360ce6c28f0f58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eed596c2fb344382b3360ce6c28f0f58.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3kzicK_ax8ewVUDgSJKqmiUNxk=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.811827+00 2025-12-09 10:15:45.811833+00 18461 0010-6FWF#V5曲线 SPMX-20240815313696 \N \N \N 1 \N [{"file_id": "d80d86b2-9386-4441-8a43-af6c5ca13404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bfb8a202355424b862967ecd6474808.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bfb8a202355424b862967ecd6474808.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bfb8a202355424b862967ecd6474808.jpg", "file_size": 18255, "is_delete": false, "file_type": 1, "original_file_name": "0010-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfb8a202355424b862967ecd6474808.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfb8a202355424b862967ecd6474808.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bfb8a202355424b862967ecd6474808.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bfb8a202355424b862967ecd6474808.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bfb8a202355424b862967ecd6474808.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Pv_2jmttuzaU5HuIuLIvhpeweg=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.815014+00 2025-12-09 10:15:45.815021+00 18462 JTSS899FWE#VS-D3 SPMX-20240815313693 \N \N \N 1 \N [{"file_id": "d7ab19a4-f95c-4249-bcaa-c5cd4e024204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a0e2056d515420eae64ff976b82442a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a0e2056d515420eae64ff976b82442a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a0e2056d515420eae64ff976b82442a.jpg", "file_size": 22532, "is_delete": false, "file_type": 1, "original_file_name": "JTSS899FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0e2056d515420eae64ff976b82442a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0e2056d515420eae64ff976b82442a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a0e2056d515420eae64ff976b82442a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a0e2056d515420eae64ff976b82442a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a0e2056d515420eae64ff976b82442a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MrzhWeOTUXYKTkohZHmr4ruRT18=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.818292+00 2025-12-09 10:15:45.818299+00 18463 8640#上衣不复合L# SPMX-20240815313698 \N \N \N 1 \N [{"file_id": "5988f634-226f-4806-83bf-89b6a27ee938", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f5d00fed71a4fef822c7f06bd5da50d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f5d00fed71a4fef822c7f06bd5da50d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f5d00fed71a4fef822c7f06bd5da50d.jpg", "file_size": 20821, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣不复合L#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5d00fed71a4fef822c7f06bd5da50d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5d00fed71a4fef822c7f06bd5da50d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f5d00fed71a4fef822c7f06bd5da50d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f5d00fed71a4fef822c7f06bd5da50d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f5d00fed71a4fef822c7f06bd5da50d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_cTOKH1TrWTh4tcxa9ZUjnwhsI=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.821521+00 2025-12-09 10:15:45.821528+00 18464 1231-38FWF#中童14码 SPMX-20240815313686 \N \N \N 1 \N [{"file_id": "577c8b6a-b0c1-4b25-961f-baff8297ed54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffaff7211bf74bf6b21a2793a08dba2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffaff7211bf74bf6b21a2793a08dba2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffaff7211bf74bf6b21a2793a08dba2c.jpg", "file_size": 18592, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaff7211bf74bf6b21a2793a08dba2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaff7211bf74bf6b21a2793a08dba2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffaff7211bf74bf6b21a2793a08dba2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffaff7211bf74bf6b21a2793a08dba2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffaff7211bf74bf6b21a2793a08dba2c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w1ET8WCn-eVPoIUPUNiFhILFZvE=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.824749+00 2025-12-09 10:15:45.824755+00 18465 LZ1386#上身3号色 SPMX-20240815313689 \N \N \N 1 \N [{"file_id": "c3afaf68-2ba8-457f-b337-c87c9c178210", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abb2ac79bd734f9a9be524637900ab4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abb2ac79bd734f9a9be524637900ab4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abb2ac79bd734f9a9be524637900ab4f.jpg", "file_size": 19949, "is_delete": false, "file_type": 1, "original_file_name": "LZ1386#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb2ac79bd734f9a9be524637900ab4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb2ac79bd734f9a9be524637900ab4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abb2ac79bd734f9a9be524637900ab4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abb2ac79bd734f9a9be524637900ab4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abb2ac79bd734f9a9be524637900ab4f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lOB-FxIKDIuWWHWkfNCNhzmIHnc=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.827878+00 2025-12-09 10:15:45.827889+00 18466 2326-1FWE#白底大黑点 SPMX-20240815313691 \N \N \N 1 \N [{"file_id": "f815520d-b6ea-42ba-9f3f-d2950d0e7cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0955345f8d25413c8380848ccfcbe981.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0955345f8d25413c8380848ccfcbe981.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0955345f8d25413c8380848ccfcbe981.jpg", "file_size": 8634, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#白底大黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0955345f8d25413c8380848ccfcbe981.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0955345f8d25413c8380848ccfcbe981.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0955345f8d25413c8380848ccfcbe981.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0955345f8d25413c8380848ccfcbe981.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0955345f8d25413c8380848ccfcbe981.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1K8msw9ow2KhUaR6G8vurD6GGUw=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.831066+00 2025-12-09 10:15:45.831072+00 18467 8639短裤#腰带 SPMX-20240815313687 \N \N \N 1 \N [{"file_id": "ec2f8b19-71e7-40f8-adaa-179f89dd7894", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c5c974bee4a4205b8e675c2e5ff194a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c5c974bee4a4205b8e675c2e5ff194a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c5c974bee4a4205b8e675c2e5ff194a.jpg", "file_size": 8003, "is_delete": false, "file_type": 1, "original_file_name": "8639短裤#腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5c974bee4a4205b8e675c2e5ff194a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5c974bee4a4205b8e675c2e5ff194a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c5c974bee4a4205b8e675c2e5ff194a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c5c974bee4a4205b8e675c2e5ff194a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c5c974bee4a4205b8e675c2e5ff194a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AXUxvG3vR_ebXuLIAakAajn8so=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.834253+00 2025-12-09 10:15:45.834259+00 18468 DL3316#前幅玫红色 SPMX-20240815313688 \N \N \N 1 \N [{"file_id": "650bfcf1-43b3-4276-9713-acd98d91c41c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9d8cd482ca442a0839ba76e98058604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9d8cd482ca442a0839ba76e98058604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9d8cd482ca442a0839ba76e98058604.jpg", "file_size": 12567, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d8cd482ca442a0839ba76e98058604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d8cd482ca442a0839ba76e98058604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9d8cd482ca442a0839ba76e98058604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9d8cd482ca442a0839ba76e98058604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9d8cd482ca442a0839ba76e98058604.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3osnsE1rtFMhhbTYrbK3jZW1orA=", "createTime": "2024-08-15 15:04:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.83755+00 2025-12-09 10:15:45.837556+00 18469 FX0003-59#RC23 SPMX-20240815313692 \N \N \N 1 \N [{"file_id": "7829786f-a72a-4127-9250-034bddd460d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5261355789d7443f80254407c8513dbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5261355789d7443f80254407c8513dbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5261355789d7443f80254407c8513dbd.jpg", "file_size": 64275, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-59#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261355789d7443f80254407c8513dbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261355789d7443f80254407c8513dbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261355789d7443f80254407c8513dbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5261355789d7443f80254407c8513dbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5261355789d7443f80254407c8513dbd.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KBYfBSQL-CCViPFoT2-G4i1XZYE=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.84081+00 2025-12-09 10:15:45.840817+00 18470 1231-38FWF#中童袖领匹布 SPMX-20240815313697 \N \N \N 1 \N [{"file_id": "898c882f-e083-4ed2-9c77-ce497314772c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "851ce2c0b7224b40aaaad6626c56c03a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "851ce2c0b7224b40aaaad6626c56c03a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "851ce2c0b7224b40aaaad6626c56c03a.jpg", "file_size": 11779, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851ce2c0b7224b40aaaad6626c56c03a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851ce2c0b7224b40aaaad6626c56c03a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/851ce2c0b7224b40aaaad6626c56c03a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/851ce2c0b7224b40aaaad6626c56c03a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/851ce2c0b7224b40aaaad6626c56c03a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_OBxDBAvws0ZA0rVu5SK66463J0=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.844026+00 2025-12-09 10:15:45.844032+00 18471 CF0667-1#A4净色 SPMX-20240815313694 \N \N \N 1 \N [{"file_id": "9f02468d-8aa3-47f7-89bd-98aea5ca469d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30b5d8f36e6c49e983a3b22f245ad6f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30b5d8f36e6c49e983a3b22f245ad6f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30b5d8f36e6c49e983a3b22f245ad6f8.jpg", "file_size": 7527, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A4净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b5d8f36e6c49e983a3b22f245ad6f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b5d8f36e6c49e983a3b22f245ad6f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b5d8f36e6c49e983a3b22f245ad6f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30b5d8f36e6c49e983a3b22f245ad6f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30b5d8f36e6c49e983a3b22f245ad6f8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bEiQww7n023b-gpkP352GPMzLDg=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.847275+00 2025-12-09 10:15:45.847282+00 18472 HXF-TB015#领子2XL SPMX-20240815313695 \N \N \N 1 \N [{"file_id": "bbd23458-9dab-4fa7-a05b-e8c4568dc72a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8018b97f22b24e8e9fbb3802b19f48fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8018b97f22b24e8e9fbb3802b19f48fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8018b97f22b24e8e9fbb3802b19f48fc.jpg", "file_size": 13809, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#领子2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8018b97f22b24e8e9fbb3802b19f48fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8018b97f22b24e8e9fbb3802b19f48fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8018b97f22b24e8e9fbb3802b19f48fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8018b97f22b24e8e9fbb3802b19f48fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8018b97f22b24e8e9fbb3802b19f48fc.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q1jBIfbZUFFVv4ABgG5Q5lX7UWA=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.850568+00 2025-12-09 10:15:45.850574+00 18473 DL3316#前幅草绿色 SPMX-20240815313701 \N \N \N 1 \N [{"file_id": "a06afe57-f77d-470c-bc2a-10c11568e9b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e394b41cf645ddbde60f6198873548.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e394b41cf645ddbde60f6198873548.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e394b41cf645ddbde60f6198873548.jpg", "file_size": 12243, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅草绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e394b41cf645ddbde60f6198873548.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e394b41cf645ddbde60f6198873548.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e394b41cf645ddbde60f6198873548.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e394b41cf645ddbde60f6198873548.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e394b41cf645ddbde60f6198873548.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFG3zskpXFenoGhk3zAjVTeXvms=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.853834+00 2025-12-09 10:15:45.85384+00 18474 LZ1386#上身4号色 SPMX-20240815313699 \N \N \N 1 \N [{"file_id": "c2774d8c-2e03-422b-8fe6-ab340e8ef081", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e28b83808354e8ea2f495bf4c387534.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e28b83808354e8ea2f495bf4c387534.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e28b83808354e8ea2f495bf4c387534.jpg", "file_size": 20153, "is_delete": false, "file_type": 1, "original_file_name": "LZ1386#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28b83808354e8ea2f495bf4c387534.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28b83808354e8ea2f495bf4c387534.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e28b83808354e8ea2f495bf4c387534.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e28b83808354e8ea2f495bf4c387534.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e28b83808354e8ea2f495bf4c387534.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVgtdU5vEcbhZcGew-kfxALAS1g=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.857036+00 2025-12-09 10:15:45.857042+00 18475 LJH2010#绿色 SPMX-20240815313703 \N \N \N 1 \N [{"file_id": "808906f3-1508-47e0-b3b8-55eb3079ad4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4794d6316132439890c84e678d226c8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4794d6316132439890c84e678d226c8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4794d6316132439890c84e678d226c8c.jpg", "file_size": 57516, "is_delete": false, "file_type": 1, "original_file_name": "LJH2010#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794d6316132439890c84e678d226c8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794d6316132439890c84e678d226c8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794d6316132439890c84e678d226c8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4794d6316132439890c84e678d226c8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4794d6316132439890c84e678d226c8c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fc0Bm7Sq-8VUs_toZSeYZhDlP1E=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.860214+00 2025-12-09 10:15:45.860222+00 18476 0010-7FWF#V5曲线 SPMX-20240815313707 \N \N \N 1 \N [{"file_id": "41bdeade-21e6-4f3e-a722-6ec88b893061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "432166a4ae9845d0a99d2879b15b48a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "432166a4ae9845d0a99d2879b15b48a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "432166a4ae9845d0a99d2879b15b48a2.jpg", "file_size": 20610, "is_delete": false, "file_type": 1, "original_file_name": "0010-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432166a4ae9845d0a99d2879b15b48a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432166a4ae9845d0a99d2879b15b48a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432166a4ae9845d0a99d2879b15b48a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/432166a4ae9845d0a99d2879b15b48a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/432166a4ae9845d0a99d2879b15b48a2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLSqz0yFoACVtbTvevYjLkPSLP0=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.863278+00 2025-12-09 10:15:45.863284+00 18477 2326-1FWE#豆沙底大黑点 SPMX-20240815313700 \N \N \N 1 \N [{"file_id": "3d8e440b-b426-4f7d-8f4d-178f099c3876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c18dded57604762961d18406e894844.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c18dded57604762961d18406e894844.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c18dded57604762961d18406e894844.jpg", "file_size": 9001, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#豆沙底大黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c18dded57604762961d18406e894844.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c18dded57604762961d18406e894844.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c18dded57604762961d18406e894844.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c18dded57604762961d18406e894844.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c18dded57604762961d18406e894844.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jw_Wzomfb6IT2lBeURB3TUK0gVo=", "createTime": "2024-08-15 15:04:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.866304+00 2025-12-09 10:15:45.86631+00 18478 FX0003-6#RC23 SPMX-20240815313702 \N \N \N 1 \N [{"file_id": "536e3097-cb03-433c-8beb-febefd572b23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61fd5fb707054a1b9a02852529189cf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61fd5fb707054a1b9a02852529189cf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61fd5fb707054a1b9a02852529189cf9.jpg", "file_size": 16487, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fd5fb707054a1b9a02852529189cf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fd5fb707054a1b9a02852529189cf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61fd5fb707054a1b9a02852529189cf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61fd5fb707054a1b9a02852529189cf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61fd5fb707054a1b9a02852529189cf9.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXpTo8m0bj5OD0jMM-zPeMCvSWs=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.869263+00 2025-12-09 10:15:45.86927+00 18479 JTSS900FWE#VS-D3 SPMX-20240815313705 \N \N \N 1 \N [{"file_id": "2b8a53a1-d6f6-4958-a8e2-1fc7ec0d7a2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e76c1525d139487b89ff6e3d76337bc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e76c1525d139487b89ff6e3d76337bc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e76c1525d139487b89ff6e3d76337bc0.jpg", "file_size": 16282, "is_delete": false, "file_type": 1, "original_file_name": "JTSS900FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76c1525d139487b89ff6e3d76337bc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76c1525d139487b89ff6e3d76337bc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e76c1525d139487b89ff6e3d76337bc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e76c1525d139487b89ff6e3d76337bc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e76c1525d139487b89ff6e3d76337bc0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jt9pn7hwDnGhvMWKmgsRWbuHmbs=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.872301+00 2025-12-09 10:15:45.872309+00 18480 HXF-TB015#领子L SPMX-20240815313706 \N \N \N 1 \N [{"file_id": "ded391ce-7346-4689-bd2e-0d6204c93b61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc162d0d2a5c409cbb85c4a3848af00e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc162d0d2a5c409cbb85c4a3848af00e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc162d0d2a5c409cbb85c4a3848af00e.jpg", "file_size": 13393, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#领子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc162d0d2a5c409cbb85c4a3848af00e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc162d0d2a5c409cbb85c4a3848af00e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc162d0d2a5c409cbb85c4a3848af00e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc162d0d2a5c409cbb85c4a3848af00e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc162d0d2a5c409cbb85c4a3848af00e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoXnZcEPVv3sRAv_bbqGnXy_7tg=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.875302+00 2025-12-09 10:15:45.875309+00 18481 CF0667-1#A5 SPMX-20240815313704 \N \N \N 1 \N [{"file_id": "06b62f92-e646-424c-b654-ca4562ce4e40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c435f58f4eb40e7adabb4f5b1f0aa18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c435f58f4eb40e7adabb4f5b1f0aa18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c435f58f4eb40e7adabb4f5b1f0aa18.jpg", "file_size": 19874, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c435f58f4eb40e7adabb4f5b1f0aa18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c435f58f4eb40e7adabb4f5b1f0aa18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c435f58f4eb40e7adabb4f5b1f0aa18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c435f58f4eb40e7adabb4f5b1f0aa18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c435f58f4eb40e7adabb4f5b1f0aa18.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d0_jy6AYKvwwydb7n_6NAC9Ta_k=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.878226+00 2025-12-09 10:15:45.878232+00 18482 8640#上衣不复合M# SPMX-20240815313708 \N \N \N 1 \N [{"file_id": "d8bf8ba6-c505-4200-b64f-0aaec4e10c67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00a1daa79da6482998a04a4661e8650f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00a1daa79da6482998a04a4661e8650f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00a1daa79da6482998a04a4661e8650f.jpg", "file_size": 20369, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣不复合M#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a1daa79da6482998a04a4661e8650f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a1daa79da6482998a04a4661e8650f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a1daa79da6482998a04a4661e8650f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00a1daa79da6482998a04a4661e8650f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00a1daa79da6482998a04a4661e8650f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b5L_uoBX_gEUJZm13Aa7I09V0cY=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.881258+00 2025-12-09 10:15:45.881264+00 18483 FX0003-60#RC23 SPMX-20240815313713 \N \N \N 1 \N [{"file_id": "3f682bd5-1004-42c5-b482-fc90e7097189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c86ffb326414550a992805b8a696ec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c86ffb326414550a992805b8a696ec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c86ffb326414550a992805b8a696ec4.jpg", "file_size": 14569, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c86ffb326414550a992805b8a696ec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c86ffb326414550a992805b8a696ec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c86ffb326414550a992805b8a696ec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c86ffb326414550a992805b8a696ec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c86ffb326414550a992805b8a696ec4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K37XCZIqRVH5WBAdJivFyhqGmC4=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.88424+00 2025-12-09 10:15:45.884247+00 18484 CF0667-1#A5净色 SPMX-20240815313714 \N \N \N 1 \N [{"file_id": "a53b503d-4024-4310-b734-06c12ef5f97b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "957b08cf7f1544f189ee2a51fe36d35a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "957b08cf7f1544f189ee2a51fe36d35a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "957b08cf7f1544f189ee2a51fe36d35a.jpg", "file_size": 6800, "is_delete": false, "file_type": 1, "original_file_name": "CF0667-1#A5净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957b08cf7f1544f189ee2a51fe36d35a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957b08cf7f1544f189ee2a51fe36d35a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/957b08cf7f1544f189ee2a51fe36d35a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/957b08cf7f1544f189ee2a51fe36d35a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/957b08cf7f1544f189ee2a51fe36d35a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:no4n5dAAPsfOfb8_1yhhidPJVyA=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.88722+00 2025-12-09 10:15:45.887226+00 18485 8640#上衣不复合XL#- SPMX-20240815313720 \N \N \N 1 \N [{"file_id": "4dfda78c-86ad-45a7-b56b-111e9932fe1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ae39e12a9174e03834bbddaa8241058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ae39e12a9174e03834bbddaa8241058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ae39e12a9174e03834bbddaa8241058.jpg", "file_size": 20521, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣不复合XL#-.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae39e12a9174e03834bbddaa8241058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae39e12a9174e03834bbddaa8241058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ae39e12a9174e03834bbddaa8241058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ae39e12a9174e03834bbddaa8241058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ae39e12a9174e03834bbddaa8241058.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bGASnlDMPBB9N4AsHmFLWo81UA=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.890096+00 2025-12-09 10:15:45.890102+00 18486 LJH2010#黑色 SPMX-20240815313715 \N \N \N 1 \N [{"file_id": "6ecd0d30-bd28-4d45-b621-1c77386d9ec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffe03a9456364447ae69e7395bcb0248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffe03a9456364447ae69e7395bcb0248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffe03a9456364447ae69e7395bcb0248.jpg", "file_size": 52360, "is_delete": false, "file_type": 1, "original_file_name": "LJH2010#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe03a9456364447ae69e7395bcb0248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe03a9456364447ae69e7395bcb0248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe03a9456364447ae69e7395bcb0248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffe03a9456364447ae69e7395bcb0248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffe03a9456364447ae69e7395bcb0248.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnMlkJoL1mn4Sl5A3SxJsVtYBto=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.893068+00 2025-12-09 10:15:45.893072+00 18487 JTSS901FWE#VS-D3 SPMX-20240815313716 \N \N \N 1 \N [{"file_id": "4c4cbb66-c76d-4185-bb6b-519e2f3bb1e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "190065751b974439aaf246d5401c7f7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "190065751b974439aaf246d5401c7f7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "190065751b974439aaf246d5401c7f7e.jpg", "file_size": 24006, "is_delete": false, "file_type": 1, "original_file_name": "JTSS901FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190065751b974439aaf246d5401c7f7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190065751b974439aaf246d5401c7f7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/190065751b974439aaf246d5401c7f7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/190065751b974439aaf246d5401c7f7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/190065751b974439aaf246d5401c7f7e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9zR2zCHY15onWSoC6ULZq72O-0=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.896265+00 2025-12-09 10:15:45.896272+00 18488 0010-8FWF#V5曲线 SPMX-20240815313718 \N \N \N 1 \N [{"file_id": "30a9bc95-5904-43ef-9d0b-7ca785077883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b67d04e945fb4c919665e7796568be92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b67d04e945fb4c919665e7796568be92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b67d04e945fb4c919665e7796568be92.jpg", "file_size": 26519, "is_delete": false, "file_type": 1, "original_file_name": "0010-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67d04e945fb4c919665e7796568be92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67d04e945fb4c919665e7796568be92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b67d04e945fb4c919665e7796568be92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b67d04e945fb4c919665e7796568be92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b67d04e945fb4c919665e7796568be92.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmFtG-Gd_JVR-Bl4LoGefzmdNSs=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.899506+00 2025-12-09 10:15:45.899512+00 18489 2326-1FWE#豆沙底大黑点番禺调色 SPMX-20240815313709 \N \N \N 1 \N [{"file_id": "93df1f23-e470-4687-9116-a319bf772503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06f673252f6e4170852fb34a283b4535.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06f673252f6e4170852fb34a283b4535.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06f673252f6e4170852fb34a283b4535.jpg", "file_size": 9676, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#豆沙底大黑点番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f673252f6e4170852fb34a283b4535.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f673252f6e4170852fb34a283b4535.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f673252f6e4170852fb34a283b4535.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06f673252f6e4170852fb34a283b4535.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06f673252f6e4170852fb34a283b4535.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ProDsWxKE0OSG3UIigrBDws1i_c=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.9028+00 2025-12-09 10:15:45.902807+00 18490 2326-1FWE#黑底大白点 SPMX-20240815313721 \N \N \N 1 \N [{"file_id": "38252535-5f7b-4cab-8368-bbfe9fedc452", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26f198f3d3154ce88194e05e2608d1b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26f198f3d3154ce88194e05e2608d1b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26f198f3d3154ce88194e05e2608d1b5.jpg", "file_size": 8529, "is_delete": false, "file_type": 1, "original_file_name": "2326-1FWE#黑底大白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f198f3d3154ce88194e05e2608d1b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f198f3d3154ce88194e05e2608d1b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26f198f3d3154ce88194e05e2608d1b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26f198f3d3154ce88194e05e2608d1b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26f198f3d3154ce88194e05e2608d1b5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIK1KKbCASTeoE23i5Fwd7MH5RQ=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.906082+00 2025-12-09 10:15:45.906088+00 18491 LZ1386#上身5号色 SPMX-20240815313711 \N \N \N 1 \N [{"file_id": "b79065db-eacc-4578-84a8-ad1bfaec2afc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "158807bdbadb43beb40a52c9c0e390c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "158807bdbadb43beb40a52c9c0e390c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "158807bdbadb43beb40a52c9c0e390c4.jpg", "file_size": 19667, "is_delete": false, "file_type": 1, "original_file_name": "LZ1386#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158807bdbadb43beb40a52c9c0e390c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158807bdbadb43beb40a52c9c0e390c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158807bdbadb43beb40a52c9c0e390c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/158807bdbadb43beb40a52c9c0e390c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/158807bdbadb43beb40a52c9c0e390c4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_mQeqXh968WfEp8UzDZUxo_qNZ4=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.909306+00 2025-12-09 10:15:45.909313+00 18492 HXF-TB015#领子M SPMX-20240815313717 \N \N \N 1 \N [{"file_id": "d22da9d7-14fe-40ee-bfd1-afd8ae419581", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ade8491f67664220abcbcc70f16f7cef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ade8491f67664220abcbcc70f16f7cef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ade8491f67664220abcbcc70f16f7cef.jpg", "file_size": 13807, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#领子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ade8491f67664220abcbcc70f16f7cef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ade8491f67664220abcbcc70f16f7cef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ade8491f67664220abcbcc70f16f7cef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ade8491f67664220abcbcc70f16f7cef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ade8491f67664220abcbcc70f16f7cef.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:45i_lR80pNVv46DrGy6FYWbQJDM=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.912578+00 2025-12-09 10:15:45.912585+00 18493 1231-38FWF#小童6码 SPMX-20240815313710 \N \N \N 1 \N [{"file_id": "b6a77700-f409-4c55-ac0b-ef54b659bf2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b72d07aabdc4d56877e397fd4908a05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b72d07aabdc4d56877e397fd4908a05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b72d07aabdc4d56877e397fd4908a05.jpg", "file_size": 22021, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72d07aabdc4d56877e397fd4908a05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72d07aabdc4d56877e397fd4908a05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b72d07aabdc4d56877e397fd4908a05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b72d07aabdc4d56877e397fd4908a05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b72d07aabdc4d56877e397fd4908a05.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jaGGBnOn2bTRevTJq2CyiWIC1CQ=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.915822+00 2025-12-09 10:15:45.915829+00 18494 DL3316#前幅蓝绿色 SPMX-20240815313712 \N \N \N 1 \N [{"file_id": "6397e368-be31-4760-b520-1d2bb5ef97f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91b71b57c83a44668aaa0e5382eeb81c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91b71b57c83a44668aaa0e5382eeb81c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91b71b57c83a44668aaa0e5382eeb81c.jpg", "file_size": 12690, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#前幅蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b71b57c83a44668aaa0e5382eeb81c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b71b57c83a44668aaa0e5382eeb81c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91b71b57c83a44668aaa0e5382eeb81c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91b71b57c83a44668aaa0e5382eeb81c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91b71b57c83a44668aaa0e5382eeb81c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wv42ny1KIM6QarV1BEtsNxAHC30=", "createTime": "2024-08-15 15:04:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.919034+00 2025-12-09 10:15:45.919041+00 18495 1231-38FWF#小童8码+4码 SPMX-20240815313719 \N \N \N 1 \N [{"file_id": "7f1207f8-0d29-4297-8e8a-cb918634364f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38217ba2e50e4c328c1c4cd796bfa635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38217ba2e50e4c328c1c4cd796bfa635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38217ba2e50e4c328c1c4cd796bfa635.jpg", "file_size": 21675, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38217ba2e50e4c328c1c4cd796bfa635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38217ba2e50e4c328c1c4cd796bfa635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38217ba2e50e4c328c1c4cd796bfa635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38217ba2e50e4c328c1c4cd796bfa635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38217ba2e50e4c328c1c4cd796bfa635.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJ8l1vkb9ivpwr8zPno8Cdy-Sf8=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.921987+00 2025-12-09 10:15:45.921994+00 18496 LZ1387#上身1号色 SPMX-20240815313722 \N \N \N 1 \N [{"file_id": "28168f28-c224-4a57-9d10-fe5478795847", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8faefbf2db194640bf6d2e48ea1055c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8faefbf2db194640bf6d2e48ea1055c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8faefbf2db194640bf6d2e48ea1055c1.jpg", "file_size": 18631, "is_delete": false, "file_type": 1, "original_file_name": "LZ1387#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8faefbf2db194640bf6d2e48ea1055c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8faefbf2db194640bf6d2e48ea1055c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8faefbf2db194640bf6d2e48ea1055c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8faefbf2db194640bf6d2e48ea1055c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8faefbf2db194640bf6d2e48ea1055c1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWPYLjlNfytds7_x-yuE-tC5fxc=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.924977+00 2025-12-09 10:15:45.924984+00 18497 1231-38FWF#小童袖领匹布 SPMX-20240815313732 \N \N \N 1 \N [{"file_id": "d734a080-0c22-40a9-b9f8-1fe9787f09d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "650f9ccd9ef547699c3032209f240ba5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "650f9ccd9ef547699c3032209f240ba5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "650f9ccd9ef547699c3032209f240ba5.jpg", "file_size": 11307, "is_delete": false, "file_type": 1, "original_file_name": "1231-38FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650f9ccd9ef547699c3032209f240ba5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650f9ccd9ef547699c3032209f240ba5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/650f9ccd9ef547699c3032209f240ba5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/650f9ccd9ef547699c3032209f240ba5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/650f9ccd9ef547699c3032209f240ba5.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zevCI4UVeDOLZLW3c5fmXYUmKOo=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.927855+00 2025-12-09 10:15:45.927862+00 18498 CG019#黑 SPMX-20240815313736 \N \N \N 1 \N [{"file_id": "debb074b-0359-45e6-864e-aee45315b955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec997c23c9084e218af2a4a37c61a168.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec997c23c9084e218af2a4a37c61a168.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec997c23c9084e218af2a4a37c61a168.jpg", "file_size": 18845, "is_delete": false, "file_type": 1, "original_file_name": "CG019#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec997c23c9084e218af2a4a37c61a168.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec997c23c9084e218af2a4a37c61a168.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec997c23c9084e218af2a4a37c61a168.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec997c23c9084e218af2a4a37c61a168.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec997c23c9084e218af2a4a37c61a168.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nhp6zlD8RpYiizJNUACLskQbcUg=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.930841+00 2025-12-09 10:15:45.930848+00 18499 DL3316#批布彩兰色 SPMX-20240815313734 \N \N \N 1 \N [{"file_id": "48035574-6b72-48b2-b282-c9f602ecd021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5986d8325b74e6d8dfc09f4f81498f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5986d8325b74e6d8dfc09f4f81498f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5986d8325b74e6d8dfc09f4f81498f2.jpg", "file_size": 25412, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5986d8325b74e6d8dfc09f4f81498f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5986d8325b74e6d8dfc09f4f81498f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5986d8325b74e6d8dfc09f4f81498f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5986d8325b74e6d8dfc09f4f81498f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5986d8325b74e6d8dfc09f4f81498f2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJIiP7WOVHQyZw3J0rZwrFX1rqM=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.933801+00 2025-12-09 10:15:45.933809+00 18500 HXF-TB016#均码 SPMX-20240815313737 \N \N \N 1 \N [{"file_id": "7c54d3e1-1da3-40ac-b5a5-9453cc22f2e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b1f91c283a34c37a446a16eb36fb8c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b1f91c283a34c37a446a16eb36fb8c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b1f91c283a34c37a446a16eb36fb8c1.jpg", "file_size": 24802, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB016#均码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b1f91c283a34c37a446a16eb36fb8c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b1f91c283a34c37a446a16eb36fb8c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b1f91c283a34c37a446a16eb36fb8c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b1f91c283a34c37a446a16eb36fb8c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b1f91c283a34c37a446a16eb36fb8c1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMoRMs6nS_Gj9MuWndO0mJsdgWg=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.936749+00 2025-12-09 10:15:45.936756+00 18501 HXF-TB015#领子XL SPMX-20240815313727 \N \N \N 1 \N [{"file_id": "184476ae-b677-4809-938c-0877ad8683d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc52e6bf73904c759850c3f31e3814c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc52e6bf73904c759850c3f31e3814c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc52e6bf73904c759850c3f31e3814c7.jpg", "file_size": 13436, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB015#领子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc52e6bf73904c759850c3f31e3814c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc52e6bf73904c759850c3f31e3814c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc52e6bf73904c759850c3f31e3814c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc52e6bf73904c759850c3f31e3814c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc52e6bf73904c759850c3f31e3814c7.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhYSk5O3a3Y30dtkh2N260pVVbA=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.939793+00 2025-12-09 10:15:45.939801+00 18502 JTSS903FWE#VS-D3 SPMX-20240815313735 \N \N \N 1 \N [{"file_id": "a7f81558-0fe3-4e5a-92d5-9b6f19dd3856", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12fa43353e8a46d5a70bd457ce6b5813.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12fa43353e8a46d5a70bd457ce6b5813.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12fa43353e8a46d5a70bd457ce6b5813.jpg", "file_size": 16345, "is_delete": false, "file_type": 1, "original_file_name": "JTSS903FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fa43353e8a46d5a70bd457ce6b5813.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fa43353e8a46d5a70bd457ce6b5813.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fa43353e8a46d5a70bd457ce6b5813.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12fa43353e8a46d5a70bd457ce6b5813.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12fa43353e8a46d5a70bd457ce6b5813.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3r4NnycF-CztKPz6IXkyOi7GmiQ=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.943035+00 2025-12-09 10:15:45.943041+00 18503 DL3316#批布亮黄色 SPMX-20240815313723 \N \N \N 1 \N [{"file_id": "b9d1ba4a-4406-47eb-89a5-b5efa8a8394a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "490a1aeac2c6467bb3fdbb2070d25695.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "490a1aeac2c6467bb3fdbb2070d25695.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "490a1aeac2c6467bb3fdbb2070d25695.jpg", "file_size": 21846, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a1aeac2c6467bb3fdbb2070d25695.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a1aeac2c6467bb3fdbb2070d25695.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490a1aeac2c6467bb3fdbb2070d25695.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/490a1aeac2c6467bb3fdbb2070d25695.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/490a1aeac2c6467bb3fdbb2070d25695.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3D2O4UXiGK2wnEIrCT22TWCAUco=", "createTime": "2024-08-15 15:04:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.945809+00 2025-12-09 10:15:45.945818+00 18504 2326FWE#土黄底小白点 SPMX-20240815313730 \N \N \N 1 \N [{"file_id": "0348590c-229f-4c8e-95ef-c0ca8ea438e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa3bcb5380a741f9942ce7ed3b06ec47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa3bcb5380a741f9942ce7ed3b06ec47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa3bcb5380a741f9942ce7ed3b06ec47.jpg", "file_size": 9192, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#土黄底小白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3bcb5380a741f9942ce7ed3b06ec47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3bcb5380a741f9942ce7ed3b06ec47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa3bcb5380a741f9942ce7ed3b06ec47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa3bcb5380a741f9942ce7ed3b06ec47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa3bcb5380a741f9942ce7ed3b06ec47.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4eTtvnZ9HJpZOM2DL1PMeuS9bo=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.948995+00 2025-12-09 10:15:45.949+00 18505 CFMXT00008#WJC22 SPMX-20240815313725 \N \N \N 1 \N [{"file_id": "b58eebe8-9cf2-4ec5-92a1-cea4b86627e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa52e178618a419f9e7d3162a7c5b564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa52e178618a419f9e7d3162a7c5b564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa52e178618a419f9e7d3162a7c5b564.jpg", "file_size": 25072, "is_delete": false, "file_type": 1, "original_file_name": "CFMXT00008#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa52e178618a419f9e7d3162a7c5b564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa52e178618a419f9e7d3162a7c5b564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa52e178618a419f9e7d3162a7c5b564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa52e178618a419f9e7d3162a7c5b564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa52e178618a419f9e7d3162a7c5b564.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Qg53rxCXdzEdvjurYqpE7KgNsE=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.951808+00 2025-12-09 10:15:45.951815+00 18506 0010-9FWF#V5曲线 SPMX-20240815313729 \N \N \N 1 \N [{"file_id": "93ef6d69-896e-41eb-b1d9-5fa9f564657d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "943514eed0b5496aab0782f7e8f3d81b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "943514eed0b5496aab0782f7e8f3d81b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "943514eed0b5496aab0782f7e8f3d81b.jpg", "file_size": 25567, "is_delete": false, "file_type": 1, "original_file_name": "0010-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943514eed0b5496aab0782f7e8f3d81b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943514eed0b5496aab0782f7e8f3d81b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/943514eed0b5496aab0782f7e8f3d81b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/943514eed0b5496aab0782f7e8f3d81b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/943514eed0b5496aab0782f7e8f3d81b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RuJPUHrBRBlygFqgVVE-JThV6Nk=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.954458+00 2025-12-09 10:15:45.954462+00 18507 LJH2013#玫红 SPMX-20240815313726 \N \N \N 1 \N [{"file_id": "253a690f-8ba1-4459-bec8-f096268ded64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b529c8bc0f74d29bf4d59e46b051aaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b529c8bc0f74d29bf4d59e46b051aaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b529c8bc0f74d29bf4d59e46b051aaf.jpg", "file_size": 54937, "is_delete": false, "file_type": 1, "original_file_name": "LJH2013#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b529c8bc0f74d29bf4d59e46b051aaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b529c8bc0f74d29bf4d59e46b051aaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b529c8bc0f74d29bf4d59e46b051aaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b529c8bc0f74d29bf4d59e46b051aaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b529c8bc0f74d29bf4d59e46b051aaf.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:--isRR7Egx3OppFgUVuMGiaVrmA=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.95708+00 2025-12-09 10:15:45.957085+00 18508 8640#上衣不复合XL# SPMX-20240815313731 \N \N \N 1 \N [{"file_id": "c9421ad9-02e5-4afb-88b4-4b73acbd0d36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fd0d78bc35452d84e9b2dcc26d2b32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fd0d78bc35452d84e9b2dcc26d2b32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fd0d78bc35452d84e9b2dcc26d2b32.jpg", "file_size": 21261, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣不复合XL#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fd0d78bc35452d84e9b2dcc26d2b32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fd0d78bc35452d84e9b2dcc26d2b32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fd0d78bc35452d84e9b2dcc26d2b32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fd0d78bc35452d84e9b2dcc26d2b32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fd0d78bc35452d84e9b2dcc26d2b32.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8QUjpS9qy4lj8_yYeQPy0ugarE=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.959757+00 2025-12-09 10:15:45.959762+00 18509 LZ1387#上身2号色 SPMX-20240815313733 \N \N \N 1 \N [{"file_id": "a9671d64-f69d-4d57-b3e4-b8dac2e22e7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87f764fc46bd4790b96c7dd37da12cb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87f764fc46bd4790b96c7dd37da12cb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87f764fc46bd4790b96c7dd37da12cb7.jpg", "file_size": 16501, "is_delete": false, "file_type": 1, "original_file_name": "LZ1387#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f764fc46bd4790b96c7dd37da12cb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f764fc46bd4790b96c7dd37da12cb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87f764fc46bd4790b96c7dd37da12cb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87f764fc46bd4790b96c7dd37da12cb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87f764fc46bd4790b96c7dd37da12cb7.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpR62cEwGIKZrtLEMrcdsnLO2vI=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.962395+00 2025-12-09 10:15:45.9624+00 18510 FX0003-60#原版墨绿 SPMX-20240815313728 \N \N \N 1 \N [{"file_id": "d28717df-7170-4085-8830-859f3df2f05b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bbf422896ca4b03b2487a0faa9f63a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bbf422896ca4b03b2487a0faa9f63a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bbf422896ca4b03b2487a0faa9f63a9.jpg", "file_size": 38825, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#原版墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bbf422896ca4b03b2487a0faa9f63a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bbf422896ca4b03b2487a0faa9f63a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bbf422896ca4b03b2487a0faa9f63a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bbf422896ca4b03b2487a0faa9f63a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bbf422896ca4b03b2487a0faa9f63a9.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1dKofb2gnNjsFzvF7LeAMqkIpA=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.965242+00 2025-12-09 10:15:45.965247+00 18511 JTSS902FWE#VS-D3 SPMX-20240815313724 \N \N \N 1 \N [{"file_id": "47aedbf3-ef6d-4317-a066-7d9af4f89c39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6623276ee984262b11c9feb08279676.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6623276ee984262b11c9feb08279676.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6623276ee984262b11c9feb08279676.jpg", "file_size": 14317, "is_delete": false, "file_type": 1, "original_file_name": "JTSS902FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6623276ee984262b11c9feb08279676.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6623276ee984262b11c9feb08279676.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6623276ee984262b11c9feb08279676.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6623276ee984262b11c9feb08279676.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6623276ee984262b11c9feb08279676.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wMMfEzXgGH48ipsh0M6hMIPLyJ8=", "createTime": "2024-08-15 15:04:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.968238+00 2025-12-09 10:15:45.968243+00 18512 0010-A1#LWQ15 SPMX-20240815313738 \N \N \N 1 \N [{"file_id": "ba313006-6d02-4503-8da2-1c32430f98f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dff7eac800b4322a6fcdcc823ab7872.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dff7eac800b4322a6fcdcc823ab7872.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dff7eac800b4322a6fcdcc823ab7872.jpg", "file_size": 8465, "is_delete": false, "file_type": 1, "original_file_name": "0010-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dff7eac800b4322a6fcdcc823ab7872.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dff7eac800b4322a6fcdcc823ab7872.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dff7eac800b4322a6fcdcc823ab7872.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dff7eac800b4322a6fcdcc823ab7872.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dff7eac800b4322a6fcdcc823ab7872.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pCj2US4-LNYGHsM7e5dN9Km0tLk=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.970945+00 2025-12-09 10:15:45.970949+00 18513 DL3316#批布枣红色 SPMX-20240815313748 \N \N \N 1 \N [{"file_id": "554f6fea-58ee-4baa-b46c-7db4d069fdab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2208b9d154344200a87abce906facc7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2208b9d154344200a87abce906facc7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2208b9d154344200a87abce906facc7f.jpg", "file_size": 24947, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208b9d154344200a87abce906facc7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208b9d154344200a87abce906facc7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2208b9d154344200a87abce906facc7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2208b9d154344200a87abce906facc7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2208b9d154344200a87abce906facc7f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FDAuMmmBxyNIYnWkYPGzHr70S8U=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.973484+00 2025-12-09 10:15:45.973489+00 18514 2326FWE#宝蓝底小白点 SPMX-20240815313746 \N \N \N 1 \N [{"file_id": "3bad141f-944e-4d47-81bb-9ca449c4c044", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg", "file_size": 9769, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#宝蓝底小白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffd1e0fdb2174f0ca1b82e756a2b29f1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7uJgOkJyrJSr0hyDs9yesapuDFc=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.976059+00 2025-12-09 10:15:45.976064+00 18515 1231-39FWF#中童12码+10码 SPMX-20240815313742 \N \N \N 1 \N [{"file_id": "235406ce-b9cd-4662-8d32-b76b3799b2c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a310d66e68034395b929a6751cce727f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a310d66e68034395b929a6751cce727f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a310d66e68034395b929a6751cce727f.jpg", "file_size": 17658, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a310d66e68034395b929a6751cce727f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a310d66e68034395b929a6751cce727f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a310d66e68034395b929a6751cce727f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a310d66e68034395b929a6751cce727f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a310d66e68034395b929a6751cce727f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qurHUfkm-qdpkoCSxy86eXivmdQ=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.978638+00 2025-12-09 10:15:45.978642+00 18516 0010-A6#LWQ15 SPMX-20240815313749 \N \N \N 1 \N [{"file_id": "c9d21604-a629-4166-8bb1-674d34b35d97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "866c866dd8b84c84ba0e1cc54a652f40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "866c866dd8b84c84ba0e1cc54a652f40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "866c866dd8b84c84ba0e1cc54a652f40.jpg", "file_size": 8927, "is_delete": false, "file_type": 1, "original_file_name": "0010-A6#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866c866dd8b84c84ba0e1cc54a652f40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866c866dd8b84c84ba0e1cc54a652f40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/866c866dd8b84c84ba0e1cc54a652f40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/866c866dd8b84c84ba0e1cc54a652f40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/866c866dd8b84c84ba0e1cc54a652f40.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKZcWo5j-w7mXiOT7izflDcm29U=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.981216+00 2025-12-09 10:15:45.98122+00 18517 FX0003-60#原版墨绿腰带 SPMX-20240815313739 \N \N \N 1 \N [{"file_id": "8656075c-fdf5-4056-8181-ea60ae6bf245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e4be5254c3040ec9b2ba8ab1933c2ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e4be5254c3040ec9b2ba8ab1933c2ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e4be5254c3040ec9b2ba8ab1933c2ff.jpg", "file_size": 46903, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#原版墨绿腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4be5254c3040ec9b2ba8ab1933c2ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4be5254c3040ec9b2ba8ab1933c2ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4be5254c3040ec9b2ba8ab1933c2ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e4be5254c3040ec9b2ba8ab1933c2ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e4be5254c3040ec9b2ba8ab1933c2ff.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SoGwRXumDEy_p5TOpRwrMNKfE-g=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.983802+00 2025-12-09 10:15:45.983806+00 18518 CGH007#WJC22 SPMX-20240815313747 \N \N \N 1 \N [{"file_id": "70bedc38-6593-4abe-adf5-181f1d32196d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4a9f31ed8784574a6c2b9664ba90b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4a9f31ed8784574a6c2b9664ba90b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4a9f31ed8784574a6c2b9664ba90b9c.jpg", "file_size": 16756, "is_delete": false, "file_type": 1, "original_file_name": "CGH007#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9f31ed8784574a6c2b9664ba90b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9f31ed8784574a6c2b9664ba90b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4a9f31ed8784574a6c2b9664ba90b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4a9f31ed8784574a6c2b9664ba90b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4a9f31ed8784574a6c2b9664ba90b9c.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I5KvkL4WIzw34nc_4lfsVmcB0O0=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.986509+00 2025-12-09 10:15:45.986514+00 18519 LZ1387#上身3号色 SPMX-20240815313744 \N \N \N 1 \N [{"file_id": "f508b604-5ff7-456a-8f34-a63300a7e830", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "232263b49c884f27adca5e6b761d0e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "232263b49c884f27adca5e6b761d0e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "232263b49c884f27adca5e6b761d0e11.jpg", "file_size": 17846, "is_delete": false, "file_type": 1, "original_file_name": "LZ1387#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232263b49c884f27adca5e6b761d0e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232263b49c884f27adca5e6b761d0e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/232263b49c884f27adca5e6b761d0e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/232263b49c884f27adca5e6b761d0e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/232263b49c884f27adca5e6b761d0e11.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZ7Jd4R4L4noj4NRAFcy43GIFRc=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.989398+00 2025-12-09 10:15:45.989404+00 18520 8640#上衣复合L# SPMX-20240815313741 \N \N \N 1 \N [{"file_id": "197de28c-6974-432e-b9a8-7622004b1a70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92ff6eadc1ad4768afe0fa6e054accf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92ff6eadc1ad4768afe0fa6e054accf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92ff6eadc1ad4768afe0fa6e054accf2.jpg", "file_size": 16104, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣复合L#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ff6eadc1ad4768afe0fa6e054accf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ff6eadc1ad4768afe0fa6e054accf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ff6eadc1ad4768afe0fa6e054accf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92ff6eadc1ad4768afe0fa6e054accf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92ff6eadc1ad4768afe0fa6e054accf2.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yTlWZtxBRLYMoJNLrQLozIkmdn0=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.992471+00 2025-12-09 10:15:45.992477+00 18521 HXF-TB017#2XL码 SPMX-20240815313743 \N \N \N 1 \N [{"file_id": "7a9a8dd3-85db-4b70-a53e-59609896efd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f56effad4784b81984e2e4f234285d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f56effad4784b81984e2e4f234285d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f56effad4784b81984e2e4f234285d4.jpg", "file_size": 14643, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB017#2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f56effad4784b81984e2e4f234285d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f56effad4784b81984e2e4f234285d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f56effad4784b81984e2e4f234285d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f56effad4784b81984e2e4f234285d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f56effad4784b81984e2e4f234285d4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Br70WlGaGPIWzSmHyG-5aMAsxj0=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.99546+00 2025-12-09 10:15:45.995466+00 18522 JTSS904FWE#VS-D3 SPMX-20240815313745 \N \N \N 1 \N [{"file_id": "01a88c43-3cd9-4383-b2d1-c17186cc9171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e54b48b5eb2f486fa42f88fee299fe83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e54b48b5eb2f486fa42f88fee299fe83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e54b48b5eb2f486fa42f88fee299fe83.jpg", "file_size": 12466, "is_delete": false, "file_type": 1, "original_file_name": "JTSS904FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54b48b5eb2f486fa42f88fee299fe83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54b48b5eb2f486fa42f88fee299fe83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e54b48b5eb2f486fa42f88fee299fe83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e54b48b5eb2f486fa42f88fee299fe83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e54b48b5eb2f486fa42f88fee299fe83.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Di8pZdHoqEaFznhRSpoL829PRnE=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:45.998381+00 2025-12-09 10:15:45.998388+00 18523 LJH2013#黄色 SPMX-20240815313740 \N \N \N 1 \N [{"file_id": "0e6a2917-4236-4000-9727-05178e1dead5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bfdd9020ac941409c4d10f66c473468.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bfdd9020ac941409c4d10f66c473468.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bfdd9020ac941409c4d10f66c473468.jpg", "file_size": 54433, "is_delete": false, "file_type": 1, "original_file_name": "LJH2013#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdd9020ac941409c4d10f66c473468.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdd9020ac941409c4d10f66c473468.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bfdd9020ac941409c4d10f66c473468.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bfdd9020ac941409c4d10f66c473468.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bfdd9020ac941409c4d10f66c473468.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1w1otKUEByqYtQNHowtaDgx54vg=", "createTime": "2024-08-15 15:04:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.001362+00 2025-12-09 10:15:46.001369+00 18524 8640#上衣复合M# SPMX-20240815313751 \N \N \N 1 \N [{"file_id": "116e62b6-7386-44dc-bf8b-2470eac31277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f92ea99c4ee040cf9aaaf94d8bb34065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f92ea99c4ee040cf9aaaf94d8bb34065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f92ea99c4ee040cf9aaaf94d8bb34065.jpg", "file_size": 16067, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣复合M#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92ea99c4ee040cf9aaaf94d8bb34065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92ea99c4ee040cf9aaaf94d8bb34065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92ea99c4ee040cf9aaaf94d8bb34065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f92ea99c4ee040cf9aaaf94d8bb34065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f92ea99c4ee040cf9aaaf94d8bb34065.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtNznOan-y4XVsRA7hVAHu0Nkg0=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.004363+00 2025-12-09 10:15:46.004374+00 18525 CGH01#白色 SPMX-20240815313757 \N \N \N 1 \N [{"file_id": "5f3c0e4c-46a6-4c15-ac28-d46a0e783ec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d97e1c8028a4a16bb3ff28f50d14bd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d97e1c8028a4a16bb3ff28f50d14bd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d97e1c8028a4a16bb3ff28f50d14bd8.jpg", "file_size": 11089, "is_delete": false, "file_type": 1, "original_file_name": "CGH01#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d97e1c8028a4a16bb3ff28f50d14bd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d97e1c8028a4a16bb3ff28f50d14bd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d97e1c8028a4a16bb3ff28f50d14bd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d97e1c8028a4a16bb3ff28f50d14bd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d97e1c8028a4a16bb3ff28f50d14bd8.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3YYkKpWIdzDP6MnjzaMFmxyqsaE=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.007352+00 2025-12-09 10:15:46.007358+00 18526 DL3316#批布浅粉色 SPMX-20240815313759 \N \N \N 1 \N [{"file_id": "3c5d153a-0135-4150-a273-37639177015d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76de6b6793fc42a89445cbbd44ba96dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76de6b6793fc42a89445cbbd44ba96dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76de6b6793fc42a89445cbbd44ba96dd.jpg", "file_size": 21963, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76de6b6793fc42a89445cbbd44ba96dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76de6b6793fc42a89445cbbd44ba96dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76de6b6793fc42a89445cbbd44ba96dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76de6b6793fc42a89445cbbd44ba96dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76de6b6793fc42a89445cbbd44ba96dd.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOIPJTszyMW6nKIMxDjpUUioeUM=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.010269+00 2025-12-09 10:15:46.010275+00 18527 FX0003-60#紫色腰带 SPMX-20240815313761 \N \N \N 1 \N [{"file_id": "a05e4c03-aec8-481b-851f-cfdb0c676a5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8824301f69a74cfa9d73b7ea8c04012e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8824301f69a74cfa9d73b7ea8c04012e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8824301f69a74cfa9d73b7ea8c04012e.jpg", "file_size": 46725, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#紫色腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824301f69a74cfa9d73b7ea8c04012e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824301f69a74cfa9d73b7ea8c04012e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8824301f69a74cfa9d73b7ea8c04012e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8824301f69a74cfa9d73b7ea8c04012e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8824301f69a74cfa9d73b7ea8c04012e.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1QzVgjLCkSPvJMzYyo_vaSuYX5E=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.013149+00 2025-12-09 10:15:46.013155+00 18528 2326FWE#枣红底小白点 SPMX-20240815313756 \N \N \N 1 \N [{"file_id": "a32a0baa-3dcc-4ca9-86a2-90c1dc0bc65f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "697ebafc864a4d868e7d95c3e8f3b9df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "697ebafc864a4d868e7d95c3e8f3b9df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "697ebafc864a4d868e7d95c3e8f3b9df.jpg", "file_size": 10133, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#枣红底小白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697ebafc864a4d868e7d95c3e8f3b9df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697ebafc864a4d868e7d95c3e8f3b9df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/697ebafc864a4d868e7d95c3e8f3b9df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/697ebafc864a4d868e7d95c3e8f3b9df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/697ebafc864a4d868e7d95c3e8f3b9df.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VbLdSfftaUTmw9TPwNNM67w8i8Y=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.01638+00 2025-12-09 10:15:46.016386+00 18529 JTSS905FWE#VS-D3 SPMX-20240815313758 \N \N \N 1 \N [{"file_id": "c536e4ba-83a5-4281-aa45-4dc8dbcf055f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60712e1b8f4044bc992d5fba7655ef48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60712e1b8f4044bc992d5fba7655ef48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60712e1b8f4044bc992d5fba7655ef48.jpg", "file_size": 18751, "is_delete": false, "file_type": 1, "original_file_name": "JTSS905FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60712e1b8f4044bc992d5fba7655ef48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60712e1b8f4044bc992d5fba7655ef48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60712e1b8f4044bc992d5fba7655ef48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60712e1b8f4044bc992d5fba7655ef48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60712e1b8f4044bc992d5fba7655ef48.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x62ZUJPJpfv4GND-ELpzJnZaXZQ=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.019623+00 2025-12-09 10:15:46.01963+00 18530 1231-39FWF#中童14码 SPMX-20240815313752 \N \N \N 1 \N [{"file_id": "bf1ebcd9-a0be-4bec-8ef4-b977ff2b929c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2f2f6f4009e4197b869f1e588453b32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2f2f6f4009e4197b869f1e588453b32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2f2f6f4009e4197b869f1e588453b32.jpg", "file_size": 15945, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f2f6f4009e4197b869f1e588453b32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f2f6f4009e4197b869f1e588453b32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2f2f6f4009e4197b869f1e588453b32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2f2f6f4009e4197b869f1e588453b32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2f2f6f4009e4197b869f1e588453b32.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CV604Ysa7JdZptYyadjm_T4uDlI=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.022787+00 2025-12-09 10:15:46.022793+00 18531 HXF-TB017#L码 SPMX-20240815313754 \N \N \N 1 \N [{"file_id": "1206ba65-bcd3-40e8-9728-a7fc20650614", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c23670282e548b0bec04302c94e4fa6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c23670282e548b0bec04302c94e4fa6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c23670282e548b0bec04302c94e4fa6.jpg", "file_size": 14469, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB017#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c23670282e548b0bec04302c94e4fa6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c23670282e548b0bec04302c94e4fa6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c23670282e548b0bec04302c94e4fa6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c23670282e548b0bec04302c94e4fa6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c23670282e548b0bec04302c94e4fa6.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSzQS14zU6fpnXhfivMviDUT38c=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.026099+00 2025-12-09 10:15:46.026106+00 18532 LJH2015#橙色 SPMX-20240815313755 \N \N \N 1 \N [{"file_id": "60fc8740-be45-436a-9212-3cd11e54e70c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85fc9ea926b74dfdaa047a4f39afebc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85fc9ea926b74dfdaa047a4f39afebc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85fc9ea926b74dfdaa047a4f39afebc9.jpg", "file_size": 74920, "is_delete": false, "file_type": 1, "original_file_name": "LJH2015#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fc9ea926b74dfdaa047a4f39afebc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fc9ea926b74dfdaa047a4f39afebc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85fc9ea926b74dfdaa047a4f39afebc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85fc9ea926b74dfdaa047a4f39afebc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85fc9ea926b74dfdaa047a4f39afebc9.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p6IsaphI7fRqqgZn7Px9dJw-SDI=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.029382+00 2025-12-09 10:15:46.029389+00 18533 LZ1387#上身4号色 SPMX-20240815313753 \N \N \N 1 \N [{"file_id": "fd46c163-8279-4bc7-9ce7-5cd8288e1555", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f810f98fbb8b41118fa279ea8a6500b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f810f98fbb8b41118fa279ea8a6500b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f810f98fbb8b41118fa279ea8a6500b9.jpg", "file_size": 17447, "is_delete": false, "file_type": 1, "original_file_name": "LZ1387#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f810f98fbb8b41118fa279ea8a6500b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f810f98fbb8b41118fa279ea8a6500b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f810f98fbb8b41118fa279ea8a6500b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f810f98fbb8b41118fa279ea8a6500b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f810f98fbb8b41118fa279ea8a6500b9.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fB128vdh3IHpsQfgZ4CBPI9YWaQ=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.032609+00 2025-12-09 10:15:46.032615+00 18534 0010-A6#口袋 SPMX-20240815313760 \N \N \N 1 \N [{"file_id": "40f5f94d-c354-454c-8657-1507103065a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a970c39ea2d4938911ecf144cc72659.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a970c39ea2d4938911ecf144cc72659.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a970c39ea2d4938911ecf144cc72659.jpg", "file_size": 10861, "is_delete": false, "file_type": 1, "original_file_name": "0010-A6#口袋.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a970c39ea2d4938911ecf144cc72659.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a970c39ea2d4938911ecf144cc72659.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a970c39ea2d4938911ecf144cc72659.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a970c39ea2d4938911ecf144cc72659.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a970c39ea2d4938911ecf144cc72659.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wNspeyBiIbrbPx5GOfZ9BXNQUA=", "createTime": "2024-08-15 15:04:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.035798+00 2025-12-09 10:15:46.035804+00 18535 FX0003-60#紫色 SPMX-20240815313750 \N \N \N 1 \N [{"file_id": "33855151-555f-4786-8637-63a4cfc53f44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e6dd68b0768465393f3a4e13fa2f75a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e6dd68b0768465393f3a4e13fa2f75a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e6dd68b0768465393f3a4e13fa2f75a.jpg", "file_size": 33238, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6dd68b0768465393f3a4e13fa2f75a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6dd68b0768465393f3a4e13fa2f75a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6dd68b0768465393f3a4e13fa2f75a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e6dd68b0768465393f3a4e13fa2f75a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e6dd68b0768465393f3a4e13fa2f75a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQvZ30AnwcAnHN8L6bEe2NPhR6s=", "createTime": "2024-08-15 15:04:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.038988+00 2025-12-09 10:15:46.038995+00 18536 1231-39FWF#中童袖领匹布 SPMX-20240815313764 \N \N \N 1 \N [{"file_id": "56b76636-1613-490b-89d9-2fff19ab0abd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45915e7ad570485b8221a6825beb6f5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45915e7ad570485b8221a6825beb6f5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45915e7ad570485b8221a6825beb6f5f.jpg", "file_size": 13544, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45915e7ad570485b8221a6825beb6f5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45915e7ad570485b8221a6825beb6f5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45915e7ad570485b8221a6825beb6f5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45915e7ad570485b8221a6825beb6f5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45915e7ad570485b8221a6825beb6f5f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzuKZBPkEQ2qHSQNK7ryLhIePAw=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.042234+00 2025-12-09 10:15:46.04224+00 18537 8640#上衣复合S# SPMX-20240815313762 \N \N \N 1 \N [{"file_id": "0dd779bd-fa5e-4d43-b25c-a7669e1db0bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5235feac76f84cdead48d17d347911d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5235feac76f84cdead48d17d347911d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5235feac76f84cdead48d17d347911d3.jpg", "file_size": 15419, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣复合S#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5235feac76f84cdead48d17d347911d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5235feac76f84cdead48d17d347911d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5235feac76f84cdead48d17d347911d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5235feac76f84cdead48d17d347911d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5235feac76f84cdead48d17d347911d3.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UF1Y7HH9l8fg7C1aEf6WFuIHzqE=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.045385+00 2025-12-09 10:15:46.045391+00 18538 HXF-TB017#M码 SPMX-20240815313763 \N \N \N 1 \N [{"file_id": "cd068ab0-3043-442a-bcc4-59ff648e7dc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e11539e30f834780a2f9c9eafff42d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e11539e30f834780a2f9c9eafff42d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e11539e30f834780a2f9c9eafff42d40.jpg", "file_size": 14506, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB017#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11539e30f834780a2f9c9eafff42d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11539e30f834780a2f9c9eafff42d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e11539e30f834780a2f9c9eafff42d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e11539e30f834780a2f9c9eafff42d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e11539e30f834780a2f9c9eafff42d40.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VGHJyJtqTLtWvJoMqXWl6t0YgFI=", "createTime": "2024-08-15 15:04:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.048552+00 2025-12-09 10:15:46.048558+00 18539 LZ1387#上身5号色 SPMX-20240815313768 \N \N \N 1 \N [{"file_id": "64d1502e-c104-44fc-963f-29c09d9d0d98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c299eda7a5de4b03a3435beb682fad66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c299eda7a5de4b03a3435beb682fad66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c299eda7a5de4b03a3435beb682fad66.jpg", "file_size": 17294, "is_delete": false, "file_type": 1, "original_file_name": "LZ1387#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c299eda7a5de4b03a3435beb682fad66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c299eda7a5de4b03a3435beb682fad66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c299eda7a5de4b03a3435beb682fad66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c299eda7a5de4b03a3435beb682fad66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c299eda7a5de4b03a3435beb682fad66.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BbGDBBSuXr9joUtDtl_4bHlInd8=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.051729+00 2025-12-09 10:15:46.051735+00 18540 JWBG2001#2XL SPMX-20240815313769 \N \N \N 1 \N [{"file_id": "f91e2005-b768-409b-b85c-0e811d9076bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b9640010f904b5b90141a2936a6a436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b9640010f904b5b90141a2936a6a436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b9640010f904b5b90141a2936a6a436.jpg", "file_size": 40729, "is_delete": false, "file_type": 1, "original_file_name": "JWBG2001#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9640010f904b5b90141a2936a6a436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9640010f904b5b90141a2936a6a436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b9640010f904b5b90141a2936a6a436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b9640010f904b5b90141a2936a6a436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b9640010f904b5b90141a2936a6a436.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8sluzhp33fhB53byvfHvo0EWjyE=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.054905+00 2025-12-09 10:15:46.054912+00 18541 1231-39FWF#小童6码 SPMX-20240815313772 \N \N \N 1 \N [{"file_id": "c1d4180d-e6e2-45cf-8289-d189daaabbe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "567790442f5045e8b4dc3a797ed3f230.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "567790442f5045e8b4dc3a797ed3f230.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "567790442f5045e8b4dc3a797ed3f230.jpg", "file_size": 19456, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567790442f5045e8b4dc3a797ed3f230.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567790442f5045e8b4dc3a797ed3f230.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/567790442f5045e8b4dc3a797ed3f230.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/567790442f5045e8b4dc3a797ed3f230.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/567790442f5045e8b4dc3a797ed3f230.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OREG01VV0vUE17dzg9PM1XWrmw0=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.058056+00 2025-12-09 10:15:46.058063+00 18542 CGH01#粉色 SPMX-20240815313765 \N \N \N 1 \N [{"file_id": "3bb921fc-4143-4299-90e8-433a84816357", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fba871ad27944e54ba604317ac1b6db1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fba871ad27944e54ba604317ac1b6db1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fba871ad27944e54ba604317ac1b6db1.jpg", "file_size": 11105, "is_delete": false, "file_type": 1, "original_file_name": "CGH01#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba871ad27944e54ba604317ac1b6db1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba871ad27944e54ba604317ac1b6db1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fba871ad27944e54ba604317ac1b6db1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fba871ad27944e54ba604317ac1b6db1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fba871ad27944e54ba604317ac1b6db1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d7rgfGsknY7KfRhGu4jSqNq_NN8=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.061276+00 2025-12-09 10:15:46.061283+00 18543 2326FWE#枣红底小白点番禺调色 SPMX-20240815313766 \N \N \N 1 \N [{"file_id": "a9528edf-66a4-44e1-9cf1-5ed08bfa37d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa369fec4e7348efbc475f69661f2fa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa369fec4e7348efbc475f69661f2fa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa369fec4e7348efbc475f69661f2fa3.jpg", "file_size": 11021, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#枣红底小白点番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa369fec4e7348efbc475f69661f2fa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa369fec4e7348efbc475f69661f2fa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa369fec4e7348efbc475f69661f2fa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa369fec4e7348efbc475f69661f2fa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa369fec4e7348efbc475f69661f2fa3.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uFh2bpMrL0P1likuDb2aExBf5Fw=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.064518+00 2025-12-09 10:15:46.064525+00 18544 LJH2015#玫红 SPMX-20240815313767 \N \N \N 1 \N [{"file_id": "df24e8cc-0272-4bc4-8441-d9b60ba515da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77fb3934864741df8d08723807f93b43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77fb3934864741df8d08723807f93b43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77fb3934864741df8d08723807f93b43.jpg", "file_size": 71984, "is_delete": false, "file_type": 1, "original_file_name": "LJH2015#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb3934864741df8d08723807f93b43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb3934864741df8d08723807f93b43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb3934864741df8d08723807f93b43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77fb3934864741df8d08723807f93b43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77fb3934864741df8d08723807f93b43.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:okWOpP-FLNlVKgTuoS1q1dslQiU=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.067745+00 2025-12-09 10:15:46.067751+00 18545 FX0003-60#红色 SPMX-20240815313770 \N \N \N 1 \N [{"file_id": "b2352b87-dc68-4b6d-9df4-f4c23fb87f1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30e5bff5de824bda872355902584afc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30e5bff5de824bda872355902584afc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30e5bff5de824bda872355902584afc9.jpg", "file_size": 41180, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e5bff5de824bda872355902584afc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e5bff5de824bda872355902584afc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e5bff5de824bda872355902584afc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30e5bff5de824bda872355902584afc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30e5bff5de824bda872355902584afc9.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pV8QxurYOfJzASRqyP65G3GbEDE=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.07098+00 2025-12-09 10:15:46.070987+00 18546 HXF-TB017#XL码 SPMX-20240815313771 \N \N \N 1 \N [{"file_id": "3eb95eb8-4e39-4972-8cf0-8e43745070ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "add497e26c604872bfd656794d8c90f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "add497e26c604872bfd656794d8c90f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "add497e26c604872bfd656794d8c90f0.jpg", "file_size": 14352, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB017#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497e26c604872bfd656794d8c90f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497e26c604872bfd656794d8c90f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/add497e26c604872bfd656794d8c90f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/add497e26c604872bfd656794d8c90f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/add497e26c604872bfd656794d8c90f0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcjHdg17YJgGcQiUnKY-QSeVPMQ=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.074118+00 2025-12-09 10:15:46.074124+00 18547 LJH2015#红色 SPMX-20240815313780 \N \N \N 1 \N [{"file_id": "e10aec22-621c-455a-a1b5-0c36e447b137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6afbb141651c432bb90db080e77b995d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6afbb141651c432bb90db080e77b995d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6afbb141651c432bb90db080e77b995d.jpg", "file_size": 74527, "is_delete": false, "file_type": 1, "original_file_name": "LJH2015#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afbb141651c432bb90db080e77b995d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afbb141651c432bb90db080e77b995d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6afbb141651c432bb90db080e77b995d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6afbb141651c432bb90db080e77b995d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6afbb141651c432bb90db080e77b995d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nqgln9w6156zM__CJK1wXJrPLBY=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.137741+00 2025-12-09 10:15:46.13775+00 18568 LJH2015#蓝色 SPMX-20240815313791 \N \N \N 1 \N [{"file_id": "f71f259a-71a7-4411-95b9-a5c14ddd40d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32b85296399640acaf019198850166ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32b85296399640acaf019198850166ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32b85296399640acaf019198850166ac.jpg", "file_size": 76610, "is_delete": false, "file_type": 1, "original_file_name": "LJH2015#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b85296399640acaf019198850166ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b85296399640acaf019198850166ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b85296399640acaf019198850166ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32b85296399640acaf019198850166ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32b85296399640acaf019198850166ac.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:klMUurVeQf6mmWc-vDGQYp-sMAU=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.077103+00 2025-12-09 10:15:46.07711+00 18548 2326FWE#白底小黑点 SPMX-20240815313777 \N \N \N 1 \N [{"file_id": "778430c9-01be-4524-82da-da16aeb8ea02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d40b42bda9e74385b916c1474c2be459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d40b42bda9e74385b916c1474c2be459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d40b42bda9e74385b916c1474c2be459.jpg", "file_size": 8801, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#白底小黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40b42bda9e74385b916c1474c2be459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40b42bda9e74385b916c1474c2be459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d40b42bda9e74385b916c1474c2be459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d40b42bda9e74385b916c1474c2be459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d40b42bda9e74385b916c1474c2be459.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEwGeee-eG5rPWtys7pKL4c7gLQ=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.080131+00 2025-12-09 10:15:46.080137+00 18549 CGH01#蓝色 SPMX-20240815313776 \N \N \N 1 \N [{"file_id": "3e818b90-57d7-4ec3-b914-570e36750f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "066820de4252452886154ab7b32971e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "066820de4252452886154ab7b32971e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "066820de4252452886154ab7b32971e6.jpg", "file_size": 11205, "is_delete": false, "file_type": 1, "original_file_name": "CGH01#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/066820de4252452886154ab7b32971e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/066820de4252452886154ab7b32971e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/066820de4252452886154ab7b32971e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/066820de4252452886154ab7b32971e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/066820de4252452886154ab7b32971e6.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eF2nEQfjcEEYMpRhuX2aeIh9SAg=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.083127+00 2025-12-09 10:15:46.083135+00 18550 JWBG2001#L SPMX-20240815313779 \N \N \N 1 \N [{"file_id": "8067f9f5-9f6b-496b-bc00-348a8a952663", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2148255ed6d4795aaf9ec90c7210764.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2148255ed6d4795aaf9ec90c7210764.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2148255ed6d4795aaf9ec90c7210764.jpg", "file_size": 41101, "is_delete": false, "file_type": 1, "original_file_name": "JWBG2001#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2148255ed6d4795aaf9ec90c7210764.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2148255ed6d4795aaf9ec90c7210764.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2148255ed6d4795aaf9ec90c7210764.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2148255ed6d4795aaf9ec90c7210764.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2148255ed6d4795aaf9ec90c7210764.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DUmGX29T-sffpjyPLP3YDmrvyYo=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.086219+00 2025-12-09 10:15:46.086225+00 18551 0012#红色LW浅15 SPMX-20240815313774 \N \N \N 1 \N [{"file_id": "ee6b8cc7-9751-4bac-8514-b6059e646247", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa5931a39e54411395f90c9011e5c46b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa5931a39e54411395f90c9011e5c46b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa5931a39e54411395f90c9011e5c46b.jpg", "file_size": 25280, "is_delete": false, "file_type": 1, "original_file_name": "0012#红色LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa5931a39e54411395f90c9011e5c46b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa5931a39e54411395f90c9011e5c46b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa5931a39e54411395f90c9011e5c46b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa5931a39e54411395f90c9011e5c46b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa5931a39e54411395f90c9011e5c46b.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Gy3W-JiEU_rw9mhLgP9zFhbqJM=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.089248+00 2025-12-09 10:15:46.089256+00 18552 LZ1388#上身1号色 SPMX-20240815313778 \N \N \N 1 \N [{"file_id": "e01a15c1-2618-4aaf-9115-5bbceec05b7b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25e133cc6eb64dc8bb822de88d047982.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25e133cc6eb64dc8bb822de88d047982.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25e133cc6eb64dc8bb822de88d047982.jpg", "file_size": 18128, "is_delete": false, "file_type": 1, "original_file_name": "LZ1388#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e133cc6eb64dc8bb822de88d047982.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e133cc6eb64dc8bb822de88d047982.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25e133cc6eb64dc8bb822de88d047982.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25e133cc6eb64dc8bb822de88d047982.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25e133cc6eb64dc8bb822de88d047982.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nWidD8gQlTSz_P5A5mfnU0SQ__Y=", "createTime": "2024-08-15 15:04:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.092362+00 2025-12-09 10:15:46.09237+00 18553 DL3316#批布玫红色 SPMX-20240815313773 \N \N \N 1 \N [{"file_id": "d8a83288-73a6-4f12-bc89-844558f1082d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e058588fdfd04913a471f9a762cce575.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e058588fdfd04913a471f9a762cce575.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e058588fdfd04913a471f9a762cce575.jpg", "file_size": 23831, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e058588fdfd04913a471f9a762cce575.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e058588fdfd04913a471f9a762cce575.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e058588fdfd04913a471f9a762cce575.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e058588fdfd04913a471f9a762cce575.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e058588fdfd04913a471f9a762cce575.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P3su1YfwX65K7DvRveAEu74lTpE=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.095409+00 2025-12-09 10:15:46.095416+00 18554 8640#上衣复合XL# SPMX-20240815313775 \N \N \N 1 \N [{"file_id": "5bdcaa1e-719e-421b-b4c6-face62c8a883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c17ce192eca046bc906d3a1e6d548a04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c17ce192eca046bc906d3a1e6d548a04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c17ce192eca046bc906d3a1e6d548a04.jpg", "file_size": 15530, "is_delete": false, "file_type": 1, "original_file_name": "8640#上衣复合XL#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17ce192eca046bc906d3a1e6d548a04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17ce192eca046bc906d3a1e6d548a04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17ce192eca046bc906d3a1e6d548a04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c17ce192eca046bc906d3a1e6d548a04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c17ce192eca046bc906d3a1e6d548a04.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J762S4EzECqH4zOLDGSk12VRarY=", "createTime": "2024-08-15 15:04:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.09845+00 2025-12-09 10:15:46.098457+00 18555 0012#绿色LW浅15 SPMX-20240815313785 \N \N \N 1 \N [{"file_id": "c48495ba-e741-4ece-a56f-e444134c7e80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdefaedcbecb41d99ef3451c5a720700.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdefaedcbecb41d99ef3451c5a720700.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdefaedcbecb41d99ef3451c5a720700.jpg", "file_size": 24891, "is_delete": false, "file_type": 1, "original_file_name": "0012#绿色LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdefaedcbecb41d99ef3451c5a720700.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdefaedcbecb41d99ef3451c5a720700.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdefaedcbecb41d99ef3451c5a720700.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdefaedcbecb41d99ef3451c5a720700.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdefaedcbecb41d99ef3451c5a720700.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-QE3MIxoHjZxkwR41N9wUHe_Gdg=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.101485+00 2025-12-09 10:15:46.101491+00 18556 FX0003-60#红色腰带 SPMX-20240815313782 \N \N \N 1 \N [{"file_id": "3112b352-ce45-4312-a9fd-1d806f3070ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19bbe66902c48de810ac91fb6b317f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19bbe66902c48de810ac91fb6b317f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19bbe66902c48de810ac91fb6b317f0.jpg", "file_size": 50595, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#红色腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19bbe66902c48de810ac91fb6b317f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19bbe66902c48de810ac91fb6b317f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19bbe66902c48de810ac91fb6b317f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19bbe66902c48de810ac91fb6b317f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19bbe66902c48de810ac91fb6b317f0.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tms8t2XMR6c05eWvIUnUrXsxGw8=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.104574+00 2025-12-09 10:15:46.10458+00 18557 1231-39FWF#小童8码+4码 SPMX-20240815313786 \N \N \N 1 \N [{"file_id": "4ac33e8a-8d03-45af-a8f1-91d5d6a5919c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dd4f627acdc4d3f84e23445c1f0bd91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dd4f627acdc4d3f84e23445c1f0bd91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dd4f627acdc4d3f84e23445c1f0bd91.jpg", "file_size": 19075, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd4f627acdc4d3f84e23445c1f0bd91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd4f627acdc4d3f84e23445c1f0bd91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dd4f627acdc4d3f84e23445c1f0bd91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dd4f627acdc4d3f84e23445c1f0bd91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dd4f627acdc4d3f84e23445c1f0bd91.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eoV34A70GGBZkDizadXGovUjzF4=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.107544+00 2025-12-09 10:15:46.10755+00 18558 2326FWE#豆沙底小黑点 SPMX-20240815313788 \N \N \N 1 \N [{"file_id": "09846aa9-a5c3-4928-8a2a-74e61b06e173", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0f58920302c4a2382cebdf238f8313f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0f58920302c4a2382cebdf238f8313f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0f58920302c4a2382cebdf238f8313f.jpg", "file_size": 9371, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#豆沙底小黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f58920302c4a2382cebdf238f8313f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f58920302c4a2382cebdf238f8313f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0f58920302c4a2382cebdf238f8313f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0f58920302c4a2382cebdf238f8313f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0f58920302c4a2382cebdf238f8313f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odDkJvI52RYFkR2NO0JFOrKGCcw=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.110509+00 2025-12-09 10:15:46.110516+00 18559 8640上衣不复合L# SPMX-20240815313784 \N \N \N 1 \N [{"file_id": "cf0efc5f-fa93-4142-9588-f7750f2ae1f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c863b91395ca469684de9ea9a248a678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c863b91395ca469684de9ea9a248a678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c863b91395ca469684de9ea9a248a678.jpg", "file_size": 15984, "is_delete": false, "file_type": 1, "original_file_name": "8640上衣不复合L#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c863b91395ca469684de9ea9a248a678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c863b91395ca469684de9ea9a248a678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c863b91395ca469684de9ea9a248a678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c863b91395ca469684de9ea9a248a678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c863b91395ca469684de9ea9a248a678.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtAbZ9ERkKqPzDbftswf385xcLA=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.113536+00 2025-12-09 10:15:46.113543+00 18560 DL3316#批布草绿色 SPMX-20240815313781 \N \N \N 1 \N [{"file_id": "f1dcd29a-490d-4e50-902f-f0b2a2323147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2da092c3fdc74b89bf260eae15c35d14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2da092c3fdc74b89bf260eae15c35d14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2da092c3fdc74b89bf260eae15c35d14.jpg", "file_size": 24146, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布草绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da092c3fdc74b89bf260eae15c35d14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da092c3fdc74b89bf260eae15c35d14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2da092c3fdc74b89bf260eae15c35d14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2da092c3fdc74b89bf260eae15c35d14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2da092c3fdc74b89bf260eae15c35d14.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iac0NS2tCysOVbdqBXCEADHurCs=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.116636+00 2025-12-09 10:15:46.116644+00 18561 LZ1388#上身2号色 SPMX-20240815313787 \N \N \N 1 \N [{"file_id": "eb33e0b8-df9e-47c7-9736-cb28b8b13b94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dcb442c5887475a93d917881b5966fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dcb442c5887475a93d917881b5966fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dcb442c5887475a93d917881b5966fc.jpg", "file_size": 17291, "is_delete": false, "file_type": 1, "original_file_name": "LZ1388#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcb442c5887475a93d917881b5966fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcb442c5887475a93d917881b5966fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dcb442c5887475a93d917881b5966fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dcb442c5887475a93d917881b5966fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dcb442c5887475a93d917881b5966fc.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nobf4X23wwzEgFcXDWVJkvWtsog=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.119626+00 2025-12-09 10:15:46.119633+00 18562 HXF-TB018#LWQ15 SPMX-20240815313783 \N \N \N 1 \N [{"file_id": "c23dad86-60f3-4d56-878d-216218ac46fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6424cb2fdca46698f3d4747bfd11b0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6424cb2fdca46698f3d4747bfd11b0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6424cb2fdca46698f3d4747bfd11b0f.jpg", "file_size": 15019, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB018#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6424cb2fdca46698f3d4747bfd11b0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6424cb2fdca46698f3d4747bfd11b0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6424cb2fdca46698f3d4747bfd11b0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6424cb2fdca46698f3d4747bfd11b0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6424cb2fdca46698f3d4747bfd11b0f.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjwil8En20TYcXd9yrIjgov7DAg=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.122625+00 2025-12-09 10:15:46.122632+00 18563 2326FWE#豆沙底小黑点番禺调色 SPMX-20240815313796 \N \N \N 1 \N [{"file_id": "93551e1d-818c-4209-9b28-81c3c6f000cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1626b78494043b9a202eb59fc82f8db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1626b78494043b9a202eb59fc82f8db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1626b78494043b9a202eb59fc82f8db.jpg", "file_size": 10282, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#豆沙底小黑点番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b78494043b9a202eb59fc82f8db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b78494043b9a202eb59fc82f8db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1626b78494043b9a202eb59fc82f8db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1626b78494043b9a202eb59fc82f8db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1626b78494043b9a202eb59fc82f8db.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b_6c-N43dB3znGp7ZSenVSe9-FY=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.125642+00 2025-12-09 10:15:46.125649+00 18564 LZ1388#上身3号色 SPMX-20240815313795 \N \N \N 1 \N [{"file_id": "7013cedf-5385-4963-97dd-6d7b0b262d90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29d6cac0e5014544a702cf7c519b313d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29d6cac0e5014544a702cf7c519b313d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29d6cac0e5014544a702cf7c519b313d.jpg", "file_size": 16786, "is_delete": false, "file_type": 1, "original_file_name": "LZ1388#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d6cac0e5014544a702cf7c519b313d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d6cac0e5014544a702cf7c519b313d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29d6cac0e5014544a702cf7c519b313d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29d6cac0e5014544a702cf7c519b313d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29d6cac0e5014544a702cf7c519b313d.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9Hh_bznELT_kZ7VqInL0TQIEds=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.128677+00 2025-12-09 10:15:46.128683+00 18565 8640上衣不复合M# SPMX-20240815313793 \N \N \N 1 \N [{"file_id": "1458362b-4fc3-4a2e-8129-90d47e733931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b903c22fb0f04d71bd95652116ab5e58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b903c22fb0f04d71bd95652116ab5e58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b903c22fb0f04d71bd95652116ab5e58.jpg", "file_size": 16165, "is_delete": false, "file_type": 1, "original_file_name": "8640上衣不复合M#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b903c22fb0f04d71bd95652116ab5e58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b903c22fb0f04d71bd95652116ab5e58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b903c22fb0f04d71bd95652116ab5e58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b903c22fb0f04d71bd95652116ab5e58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b903c22fb0f04d71bd95652116ab5e58.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4UqxkjhKtyx4PCoF6NhiUBqTy64=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.131677+00 2025-12-09 10:15:46.131684+00 18566 DL3316#批布蓝绿色 SPMX-20240815313792 \N \N \N 1 \N [{"file_id": "3da41278-cd2a-4b68-985f-27443670b27c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e5a7804d42c41908308f47197f05208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e5a7804d42c41908308f47197f05208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e5a7804d42c41908308f47197f05208.jpg", "file_size": 24603, "is_delete": false, "file_type": 1, "original_file_name": "DL3316#批布蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5a7804d42c41908308f47197f05208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5a7804d42c41908308f47197f05208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5a7804d42c41908308f47197f05208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e5a7804d42c41908308f47197f05208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e5a7804d42c41908308f47197f05208.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlXhKbDCAJl6sS6fZ8a_JIyNQkk=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.134694+00 2025-12-09 10:15:46.1347+00 18567 FX0003-60#绿色 SPMX-20240815313797 \N \N \N 1 \N [{"file_id": "e0876ab2-297a-49c0-8b6b-5d70018090cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "868f8ee7397748bdbd85d3800d81604a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "868f8ee7397748bdbd85d3800d81604a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "868f8ee7397748bdbd85d3800d81604a.jpg", "file_size": 38794, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868f8ee7397748bdbd85d3800d81604a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868f8ee7397748bdbd85d3800d81604a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/868f8ee7397748bdbd85d3800d81604a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/868f8ee7397748bdbd85d3800d81604a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/868f8ee7397748bdbd85d3800d81604a.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fmP7tIdzNW2b5L20vJvgbsqGtn8=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.140909+00 2025-12-09 10:15:46.140916+00 18569 HXF-TB018#均码 SPMX-20240815313794 \N \N \N 1 \N [{"file_id": "a296aba6-2c37-4012-9474-df5b18d87fa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9834f2ed8cbd4a17bbc99309399a54f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9834f2ed8cbd4a17bbc99309399a54f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9834f2ed8cbd4a17bbc99309399a54f4.jpg", "file_size": 15354, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB018#均码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9834f2ed8cbd4a17bbc99309399a54f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9834f2ed8cbd4a17bbc99309399a54f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9834f2ed8cbd4a17bbc99309399a54f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9834f2ed8cbd4a17bbc99309399a54f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9834f2ed8cbd4a17bbc99309399a54f4.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KxA8IbECvHkIjWmt00QDMRMmygw=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.144006+00 2025-12-09 10:15:46.144012+00 18570 0012#蓝色LW浅15 SPMX-20240815313798 \N \N \N 1 \N [{"file_id": "cd8672a7-881f-448a-86b0-883a72bf19df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c9cd3e22515405cac1198cf6ec2c0b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c9cd3e22515405cac1198cf6ec2c0b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c9cd3e22515405cac1198cf6ec2c0b1.jpg", "file_size": 28121, "is_delete": false, "file_type": 1, "original_file_name": "0012#蓝色LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cd3e22515405cac1198cf6ec2c0b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cd3e22515405cac1198cf6ec2c0b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c9cd3e22515405cac1198cf6ec2c0b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c9cd3e22515405cac1198cf6ec2c0b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c9cd3e22515405cac1198cf6ec2c0b1.jpg?e=1765361744&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duGvjNWbgmBpAAvhRIZkm3EjiSE=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.821627+00 2025-12-09 10:15:46.821639+00 18571 CGH03#WJC22 SPMX-20240815313799 \N \N \N 1 \N [{"file_id": "fedbcd1d-b163-4f4d-87a2-f12ab27b864b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "248d334a09d8412395c5e1ab3dd5415e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "248d334a09d8412395c5e1ab3dd5415e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "248d334a09d8412395c5e1ab3dd5415e.jpg", "file_size": 14653, "is_delete": false, "file_type": 1, "original_file_name": "CGH03#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/248d334a09d8412395c5e1ab3dd5415e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/248d334a09d8412395c5e1ab3dd5415e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/248d334a09d8412395c5e1ab3dd5415e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/248d334a09d8412395c5e1ab3dd5415e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/248d334a09d8412395c5e1ab3dd5415e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9951rmN-Izku0jml4pq9Cuxy2g=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.826205+00 2025-12-09 10:15:46.826211+00 18572 1231-39FWF#小童袖领匹布 SPMX-20240815313800 \N \N \N 1 \N [{"file_id": "5f056959-c57a-43bb-8071-4a5b38497524", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebe11c2cbd764ba1842d8aa9c15792ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebe11c2cbd764ba1842d8aa9c15792ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebe11c2cbd764ba1842d8aa9c15792ab.jpg", "file_size": 13828, "is_delete": false, "file_type": 1, "original_file_name": "1231-39FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe11c2cbd764ba1842d8aa9c15792ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe11c2cbd764ba1842d8aa9c15792ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe11c2cbd764ba1842d8aa9c15792ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebe11c2cbd764ba1842d8aa9c15792ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebe11c2cbd764ba1842d8aa9c15792ab.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EpGiSnaOGjvq8y9wVYaHDuDvbz4=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.829788+00 2025-12-09 10:15:46.829794+00 18573 JX-0002#WJC22 SPMX-20240815313801 \N \N \N 1 \N [{"file_id": "80eebb84-c268-4102-afe9-c4cb7def4f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76da42c128154775bfe9b3eac3fa929d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76da42c128154775bfe9b3eac3fa929d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76da42c128154775bfe9b3eac3fa929d.jpg", "file_size": 8078, "is_delete": false, "file_type": 1, "original_file_name": "JX-0002#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76da42c128154775bfe9b3eac3fa929d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76da42c128154775bfe9b3eac3fa929d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76da42c128154775bfe9b3eac3fa929d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76da42c128154775bfe9b3eac3fa929d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76da42c128154775bfe9b3eac3fa929d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vXLu3DcL9hPsjhJKfqHiigK8Ed0=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.833446+00 2025-12-09 10:15:46.833452+00 18574 JWBG2001#XL SPMX-20240815313790 \N \N \N 1 \N [{"file_id": "3b4e6d2c-7b0f-400c-890d-4e020029ee96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "936e99a920ff48598cf447645a675222.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "936e99a920ff48598cf447645a675222.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "936e99a920ff48598cf447645a675222.jpg", "file_size": 41650, "is_delete": false, "file_type": 1, "original_file_name": "JWBG2001#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936e99a920ff48598cf447645a675222.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936e99a920ff48598cf447645a675222.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/936e99a920ff48598cf447645a675222.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/936e99a920ff48598cf447645a675222.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/936e99a920ff48598cf447645a675222.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bq8sLdTBavgzPQ4-GWZv1WX93Qw=", "createTime": "2024-08-15 15:04:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.836834+00 2025-12-09 10:15:46.83684+00 18575 CGH02#WJC22 SPMX-20240815313789 \N \N \N 1 \N [{"file_id": "2e515c8c-78c8-46ba-8209-42ed89c17bb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ec95165fde6431b98cd8493e2acf635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ec95165fde6431b98cd8493e2acf635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ec95165fde6431b98cd8493e2acf635.jpg", "file_size": 8705, "is_delete": false, "file_type": 1, "original_file_name": "CGH02#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec95165fde6431b98cd8493e2acf635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec95165fde6431b98cd8493e2acf635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec95165fde6431b98cd8493e2acf635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ec95165fde6431b98cd8493e2acf635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ec95165fde6431b98cd8493e2acf635.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ESc3vHJBFpXPZ8mbJv-a4Enxgg=", "createTime": "2024-08-15 15:04:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.840001+00 2025-12-09 10:15:46.840007+00 18576 8640上衣不复合S# SPMX-20240815313802 \N \N \N 1 \N [{"file_id": "a210fd1d-4fdf-44ed-aba5-a5344c9a1c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71da65f799c1451ebb2aec4697d21770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71da65f799c1451ebb2aec4697d21770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71da65f799c1451ebb2aec4697d21770.jpg", "file_size": 15723, "is_delete": false, "file_type": 1, "original_file_name": "8640上衣不复合S#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da65f799c1451ebb2aec4697d21770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da65f799c1451ebb2aec4697d21770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da65f799c1451ebb2aec4697d21770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71da65f799c1451ebb2aec4697d21770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71da65f799c1451ebb2aec4697d21770.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUylzkW1ELES3sC6okmKyybMgy4=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.937491+00 2025-12-09 10:15:46.937497+00 18605 JX0001W#WJC22 SPMX-20240815313837 \N \N \N 1 \N [{"file_id": "c13ca24c-510b-462e-a863-7c37185ce827", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eee2f869cd64e2fa1aedf55f2e3b560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eee2f869cd64e2fa1aedf55f2e3b560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eee2f869cd64e2fa1aedf55f2e3b560.jpg", "file_size": 20147, "is_delete": false, "file_type": 1, "original_file_name": "JX0001W#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eee2f869cd64e2fa1aedf55f2e3b560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eee2f869cd64e2fa1aedf55f2e3b560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eee2f869cd64e2fa1aedf55f2e3b560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eee2f869cd64e2fa1aedf55f2e3b560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eee2f869cd64e2fa1aedf55f2e3b560.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YK0XJNysn-3-3iMoLflB0qXj52k=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.842958+00 2025-12-09 10:15:46.842963+00 18577 DL3504#原版色2XL SPMX-20240815313804 \N \N \N 1 \N [{"file_id": "80d3da0b-c07b-4cb8-a24a-879feb737337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6eacdf4a5eb4d5c97af2bf071774ab6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6eacdf4a5eb4d5c97af2bf071774ab6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6eacdf4a5eb4d5c97af2bf071774ab6.jpg", "file_size": 21337, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#原版色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eacdf4a5eb4d5c97af2bf071774ab6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eacdf4a5eb4d5c97af2bf071774ab6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6eacdf4a5eb4d5c97af2bf071774ab6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6eacdf4a5eb4d5c97af2bf071774ab6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6eacdf4a5eb4d5c97af2bf071774ab6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uLNIwc3YEp5MCsR8vBJj2vJSaI=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.845989+00 2025-12-09 10:15:46.845995+00 18578 HXF-TB020#杏底2XL码 SPMX-20240815313805 \N \N \N 1 \N [{"file_id": "7baf205c-0741-4f6b-923a-6443161d6069", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8881fe2da8314c849da8434d82e534ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8881fe2da8314c849da8434d82e534ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8881fe2da8314c849da8434d82e534ac.jpg", "file_size": 23318, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#杏底2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8881fe2da8314c849da8434d82e534ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8881fe2da8314c849da8434d82e534ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8881fe2da8314c849da8434d82e534ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8881fe2da8314c849da8434d82e534ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8881fe2da8314c849da8434d82e534ac.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Rtu5oCwEiI2IoSI-g4QEAhrLY8=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.849071+00 2025-12-09 10:15:46.849078+00 18579 FX0003-60#绿色腰带 SPMX-20240815313807 \N \N \N 1 \N [{"file_id": "a14acece-b394-4982-9fee-97d10d695123", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae9b3ca6f00243faaf93c87ecb427c0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae9b3ca6f00243faaf93c87ecb427c0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae9b3ca6f00243faaf93c87ecb427c0c.jpg", "file_size": 48894, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#绿色腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b3ca6f00243faaf93c87ecb427c0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b3ca6f00243faaf93c87ecb427c0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b3ca6f00243faaf93c87ecb427c0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae9b3ca6f00243faaf93c87ecb427c0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae9b3ca6f00243faaf93c87ecb427c0c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-UPq8YQm1imb2S5In_T9YHSjYY=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.852347+00 2025-12-09 10:15:46.852354+00 18580 0012#黄色LW浅15 SPMX-20240815313808 \N \N \N 1 \N [{"file_id": "294d882b-4515-4720-8667-399debfb9893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "accda5cc41cc414497a6b6320a9496f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "accda5cc41cc414497a6b6320a9496f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "accda5cc41cc414497a6b6320a9496f8.jpg", "file_size": 27564, "is_delete": false, "file_type": 1, "original_file_name": "0012#黄色LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accda5cc41cc414497a6b6320a9496f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accda5cc41cc414497a6b6320a9496f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/accda5cc41cc414497a6b6320a9496f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/accda5cc41cc414497a6b6320a9496f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/accda5cc41cc414497a6b6320a9496f8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tovS-eCs9w6iW2PJA7Z6NG8Aekw=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.855555+00 2025-12-09 10:15:46.855561+00 18581 8640上衣不复合XL# SPMX-20240815313811 \N \N \N 1 \N [{"file_id": "c95f13ad-a1b1-4085-8c76-f8c29596a4f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e495a95913cb446d85b7db9a9e045199.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e495a95913cb446d85b7db9a9e045199.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e495a95913cb446d85b7db9a9e045199.jpg", "file_size": 16137, "is_delete": false, "file_type": 1, "original_file_name": "8640上衣不复合XL#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e495a95913cb446d85b7db9a9e045199.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e495a95913cb446d85b7db9a9e045199.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e495a95913cb446d85b7db9a9e045199.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e495a95913cb446d85b7db9a9e045199.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e495a95913cb446d85b7db9a9e045199.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzcE0DXvLSFGSDhCKwUY-DVvj4k=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.858927+00 2025-12-09 10:15:46.858934+00 18582 CGH0321#橘色 SPMX-20240815313809 \N \N \N 1 \N [{"file_id": "536fa3c2-0515-49fb-ae1d-3e0e235b40e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a3c06e2103741dfaee9504f4ada485b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a3c06e2103741dfaee9504f4ada485b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a3c06e2103741dfaee9504f4ada485b.jpg", "file_size": 21744, "is_delete": false, "file_type": 1, "original_file_name": "CGH0321#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c06e2103741dfaee9504f4ada485b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c06e2103741dfaee9504f4ada485b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c06e2103741dfaee9504f4ada485b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a3c06e2103741dfaee9504f4ada485b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a3c06e2103741dfaee9504f4ada485b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9J88SK9KgQTaINMOWXZxGaemDE=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.862225+00 2025-12-09 10:15:46.862232+00 18583 LJH2015#黄色 SPMX-20240815313803 \N \N \N 1 \N [{"file_id": "ff851530-ecaf-4e06-a712-072c35edd021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c3578d8568f4769bfb0a9b4dc4869d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c3578d8568f4769bfb0a9b4dc4869d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c3578d8568f4769bfb0a9b4dc4869d1.jpg", "file_size": 81818, "is_delete": false, "file_type": 1, "original_file_name": "LJH2015#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3578d8568f4769bfb0a9b4dc4869d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3578d8568f4769bfb0a9b4dc4869d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c3578d8568f4769bfb0a9b4dc4869d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c3578d8568f4769bfb0a9b4dc4869d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c3578d8568f4769bfb0a9b4dc4869d1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7JEYSSjnPrFL-K16H_GKPeIyHRw=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.865419+00 2025-12-09 10:15:46.865424+00 18584 1231-3FWF#中童12码+10码 SPMX-20240815313813 \N \N \N 1 \N [{"file_id": "9531dcc5-0732-44ae-83c2-8e8bb723689d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8d10f3dcc25491798188f4b2f826b2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8d10f3dcc25491798188f4b2f826b2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8d10f3dcc25491798188f4b2f826b2f.jpg", "file_size": 18819, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d10f3dcc25491798188f4b2f826b2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d10f3dcc25491798188f4b2f826b2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8d10f3dcc25491798188f4b2f826b2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8d10f3dcc25491798188f4b2f826b2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8d10f3dcc25491798188f4b2f826b2f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UyNN5Ro3WWeQB1BPSTNLV-67tcE=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.868635+00 2025-12-09 10:15:46.868641+00 18585 2326FWE#黑底小白点 SPMX-20240815313810 \N \N \N 1 \N [{"file_id": "022f8bf0-5512-4272-86e6-a2b05b86d6ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96edfd2f05ac4e869794e771bb857e07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96edfd2f05ac4e869794e771bb857e07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96edfd2f05ac4e869794e771bb857e07.jpg", "file_size": 9514, "is_delete": false, "file_type": 1, "original_file_name": "2326FWE#黑底小白点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96edfd2f05ac4e869794e771bb857e07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96edfd2f05ac4e869794e771bb857e07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96edfd2f05ac4e869794e771bb857e07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96edfd2f05ac4e869794e771bb857e07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96edfd2f05ac4e869794e771bb857e07.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0fp8KS1GRU2PPzguHFkqAuWiob8=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.871869+00 2025-12-09 10:15:46.871875+00 18586 HXF-TB020#杏底L码 SPMX-20240815313812 \N \N \N 1 \N [{"file_id": "dd5153a0-c03a-420e-b63b-fedbfd1b5503", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df06139fb04c403eaa9b863e996cfbba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df06139fb04c403eaa9b863e996cfbba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df06139fb04c403eaa9b863e996cfbba.jpg", "file_size": 24682, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#杏底L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df06139fb04c403eaa9b863e996cfbba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df06139fb04c403eaa9b863e996cfbba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df06139fb04c403eaa9b863e996cfbba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df06139fb04c403eaa9b863e996cfbba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df06139fb04c403eaa9b863e996cfbba.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eShHbndVHQpQBJwfFmeIJRGsDgk=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.875182+00 2025-12-09 10:15:46.875189+00 18587 LZ1388#上身4号色 SPMX-20240815313806 \N \N \N 1 \N [{"file_id": "0ca527f8-b3a5-4256-b795-bccaab61e22b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd5fca1cbac44befba7a65947b2fa0df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd5fca1cbac44befba7a65947b2fa0df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd5fca1cbac44befba7a65947b2fa0df.jpg", "file_size": 17303, "is_delete": false, "file_type": 1, "original_file_name": "LZ1388#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5fca1cbac44befba7a65947b2fa0df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5fca1cbac44befba7a65947b2fa0df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd5fca1cbac44befba7a65947b2fa0df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd5fca1cbac44befba7a65947b2fa0df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd5fca1cbac44befba7a65947b2fa0df.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7XbGlvJiLLJ1IosW4krj9oN2d3k=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.878432+00 2025-12-09 10:15:46.878438+00 18588 DL3504#原版色L SPMX-20240815313820 \N \N \N 1 \N [{"file_id": "b8cf9b27-daaf-4dda-9a45-a977a89254fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a131adaa6c8c44b499c22a0b2302081a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a131adaa6c8c44b499c22a0b2302081a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a131adaa6c8c44b499c22a0b2302081a.jpg", "file_size": 26041, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#原版色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a131adaa6c8c44b499c22a0b2302081a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a131adaa6c8c44b499c22a0b2302081a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a131adaa6c8c44b499c22a0b2302081a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a131adaa6c8c44b499c22a0b2302081a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a131adaa6c8c44b499c22a0b2302081a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QStQtyEXvS9LT2Yfcg9C0H3cuEA=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.881625+00 2025-12-09 10:15:46.881631+00 18589 8640半裙定位花#腰带 SPMX-20240815313822 \N \N \N 1 \N [{"file_id": "5be00204-7a9b-4121-95a9-fd9e96a235e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50369d9af93240b6987e44bbeea29ce9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50369d9af93240b6987e44bbeea29ce9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50369d9af93240b6987e44bbeea29ce9.jpg", "file_size": 7824, "is_delete": false, "file_type": 1, "original_file_name": "8640半裙定位花#腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50369d9af93240b6987e44bbeea29ce9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50369d9af93240b6987e44bbeea29ce9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50369d9af93240b6987e44bbeea29ce9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50369d9af93240b6987e44bbeea29ce9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50369d9af93240b6987e44bbeea29ce9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pXkPFHW3sS4jDxhNqMerAnJlyiw=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.888132+00 2025-12-09 10:15:46.888139+00 18591 JX0001G#WJC22 SPMX-20240815313825 \N \N \N 1 \N [{"file_id": "b071afb4-e79a-45dc-bd5d-904fcba1cfcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg", "file_size": 15128, "is_delete": false, "file_type": 1, "original_file_name": "JX0001G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/994dfb59eb0b4cc8a5ff1fa63bf0cbe6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EO91V9BnkBeGqB4PMZ_F72Jiyzg=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.891309+00 2025-12-09 10:15:46.891315+00 18592 CGH0321#粉色 SPMX-20240815313818 \N \N \N 1 \N [{"file_id": "0b4da19e-a6a1-4bbf-8500-5922a6e3605a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4ed747b48804269bef5a6a7870f95ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4ed747b48804269bef5a6a7870f95ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4ed747b48804269bef5a6a7870f95ea.jpg", "file_size": 19556, "is_delete": false, "file_type": 1, "original_file_name": "CGH0321#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ed747b48804269bef5a6a7870f95ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ed747b48804269bef5a6a7870f95ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ed747b48804269bef5a6a7870f95ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4ed747b48804269bef5a6a7870f95ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4ed747b48804269bef5a6a7870f95ea.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VjLMr3yftLj16HFrRwVE0LmnlKo=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.894545+00 2025-12-09 10:15:46.894551+00 18593 LZ1388#上身5号色 SPMX-20240815313815 \N \N \N 1 \N [{"file_id": "af11d06d-d98d-4633-9296-441e1d9bf5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddc9db70e5a74f3f86ed7c151a6a3baf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddc9db70e5a74f3f86ed7c151a6a3baf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddc9db70e5a74f3f86ed7c151a6a3baf.jpg", "file_size": 17735, "is_delete": false, "file_type": 1, "original_file_name": "LZ1388#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc9db70e5a74f3f86ed7c151a6a3baf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc9db70e5a74f3f86ed7c151a6a3baf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddc9db70e5a74f3f86ed7c151a6a3baf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddc9db70e5a74f3f86ed7c151a6a3baf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddc9db70e5a74f3f86ed7c151a6a3baf.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PoRRlv6Nz6xwZiggmyGF53yT-d0=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.897824+00 2025-12-09 10:15:46.89783+00 18594 2328-1#大花-领子匹布 SPMX-20240815313821 \N \N \N 1 \N [{"file_id": "32026437-d350-477d-b2f9-520a008a5de3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cea35293f3a4866b58beabb8d032f8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cea35293f3a4866b58beabb8d032f8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cea35293f3a4866b58beabb8d032f8c.jpg", "file_size": 16029, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#大花-领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cea35293f3a4866b58beabb8d032f8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cea35293f3a4866b58beabb8d032f8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cea35293f3a4866b58beabb8d032f8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cea35293f3a4866b58beabb8d032f8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cea35293f3a4866b58beabb8d032f8c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iPUgdlMRyr8h9UTtPisEbuIwfBs=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.901045+00 2025-12-09 10:15:46.901051+00 18595 FX0003-60#黑色 SPMX-20240815313817 \N \N \N 1 \N [{"file_id": "ef321de1-5272-4559-9586-16f8e87b51c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "346c99cd1a1d4a3691abdb266e404d3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "346c99cd1a1d4a3691abdb266e404d3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "346c99cd1a1d4a3691abdb266e404d3c.jpg", "file_size": 38931, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346c99cd1a1d4a3691abdb266e404d3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346c99cd1a1d4a3691abdb266e404d3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346c99cd1a1d4a3691abdb266e404d3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/346c99cd1a1d4a3691abdb266e404d3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/346c99cd1a1d4a3691abdb266e404d3c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRkNR9kG4iqz4HPAWcUwlDKdzAI=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.88487+00 2025-12-09 10:15:46.884876+00 18590 CGH0321#黄色 SPMX-20240815313827 \N \N \N 1 \N [{"file_id": "036784a7-a45c-4a3f-8b1d-e55d0dc80520", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4faac000f4fd479e9a6c4d9763c8dffc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4faac000f4fd479e9a6c4d9763c8dffc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4faac000f4fd479e9a6c4d9763c8dffc.jpg", "file_size": 21726, "is_delete": false, "file_type": 1, "original_file_name": "CGH0321#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4faac000f4fd479e9a6c4d9763c8dffc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4faac000f4fd479e9a6c4d9763c8dffc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4faac000f4fd479e9a6c4d9763c8dffc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4faac000f4fd479e9a6c4d9763c8dffc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4faac000f4fd479e9a6c4d9763c8dffc.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jiQtl0jIw7ARJspXNWSo5T98x8=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.907972+00 2025-12-09 10:15:46.90798+00 18596 LZ1389#上身1号色 SPMX-20240815313829 \N \N \N 1 \N [{"file_id": "c3868fd6-df56-438d-aaa3-6ce968df64ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9c55048f49e4b6192e9634e5b9d875e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9c55048f49e4b6192e9634e5b9d875e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9c55048f49e4b6192e9634e5b9d875e.jpg", "file_size": 16784, "is_delete": false, "file_type": 1, "original_file_name": "LZ1389#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c55048f49e4b6192e9634e5b9d875e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c55048f49e4b6192e9634e5b9d875e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9c55048f49e4b6192e9634e5b9d875e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9c55048f49e4b6192e9634e5b9d875e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9c55048f49e4b6192e9634e5b9d875e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J_m-FPBeBt7bhjkyMCn8IYFY9Uk=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.91144+00 2025-12-09 10:15:46.911447+00 18597 LJH2016#天兰 SPMX-20240815313814 \N \N \N 1 \N [{"file_id": "e2591f4f-a123-4d72-be36-db7e19b78389", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1270eafc0e14dce92cc19b00cbbb350.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1270eafc0e14dce92cc19b00cbbb350.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1270eafc0e14dce92cc19b00cbbb350.jpg", "file_size": 59184, "is_delete": false, "file_type": 1, "original_file_name": "LJH2016#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1270eafc0e14dce92cc19b00cbbb350.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1270eafc0e14dce92cc19b00cbbb350.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1270eafc0e14dce92cc19b00cbbb350.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1270eafc0e14dce92cc19b00cbbb350.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1270eafc0e14dce92cc19b00cbbb350.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2b7ZCBOvDeowmghdNOXcze_K0tA=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.91468+00 2025-12-09 10:15:46.914687+00 18598 JX0001A#WJC22 SPMX-20240815313816 \N \N \N 1 \N [{"file_id": "4ffea1a6-a0e9-4195-8b91-e0b52fb59066", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebd3a80db2c74af0b60bea7a98908b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebd3a80db2c74af0b60bea7a98908b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebd3a80db2c74af0b60bea7a98908b7d.jpg", "file_size": 12566, "is_delete": false, "file_type": 1, "original_file_name": "JX0001A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3a80db2c74af0b60bea7a98908b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3a80db2c74af0b60bea7a98908b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd3a80db2c74af0b60bea7a98908b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebd3a80db2c74af0b60bea7a98908b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebd3a80db2c74af0b60bea7a98908b7d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lUvVE8df8vdXgK1E2HRGppoXa8Y=", "createTime": "2024-08-15 15:04:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.917899+00 2025-12-09 10:15:46.917905+00 18599 0012-10FWE#VS-D3 SPMX-20240815313819 \N \N \N 1 \N [{"file_id": "50515510-dfdb-4b4c-8581-719e7927e1a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10b021c11c9c449cb9d8ca87fbbfbf1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10b021c11c9c449cb9d8ca87fbbfbf1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10b021c11c9c449cb9d8ca87fbbfbf1c.jpg", "file_size": 14326, "is_delete": false, "file_type": 1, "original_file_name": "0012-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10b021c11c9c449cb9d8ca87fbbfbf1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10b021c11c9c449cb9d8ca87fbbfbf1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10b021c11c9c449cb9d8ca87fbbfbf1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10b021c11c9c449cb9d8ca87fbbfbf1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10b021c11c9c449cb9d8ca87fbbfbf1c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HeOuP6g44gMDR0ovTKtV9ORxkVM=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.921163+00 2025-12-09 10:15:46.921169+00 18600 LJH2016#红色 SPMX-20240815313828 \N \N \N 1 \N [{"file_id": "6c9c548e-f457-4ac1-84f9-e5905ca0a391", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95da47088cbd4028ae3ee85405c2b05c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95da47088cbd4028ae3ee85405c2b05c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95da47088cbd4028ae3ee85405c2b05c.jpg", "file_size": 58311, "is_delete": false, "file_type": 1, "original_file_name": "LJH2016#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95da47088cbd4028ae3ee85405c2b05c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95da47088cbd4028ae3ee85405c2b05c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95da47088cbd4028ae3ee85405c2b05c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95da47088cbd4028ae3ee85405c2b05c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95da47088cbd4028ae3ee85405c2b05c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fMtNAkV495yEXYrGc6AQwopLoUg=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.924402+00 2025-12-09 10:15:46.924409+00 18601 1231-3FWF#中童14码 SPMX-20240815313823 \N \N \N 1 \N [{"file_id": "a993629d-bfda-4ff6-bb36-34856c7a5534", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751c9c6c7f424dff96d73a0d37f3e655.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751c9c6c7f424dff96d73a0d37f3e655.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751c9c6c7f424dff96d73a0d37f3e655.jpg", "file_size": 17202, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c9c6c7f424dff96d73a0d37f3e655.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c9c6c7f424dff96d73a0d37f3e655.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751c9c6c7f424dff96d73a0d37f3e655.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751c9c6c7f424dff96d73a0d37f3e655.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751c9c6c7f424dff96d73a0d37f3e655.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AADs8yxbCATAMos1t8er_DMdiy8=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.927698+00 2025-12-09 10:15:46.927709+00 18602 HXF-TB020#杏底M码 SPMX-20240815313824 \N \N \N 1 \N [{"file_id": "62ae15dd-8129-4f40-970d-fede45d9d38e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc1cc065a13a491c89baa73c31cd70af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc1cc065a13a491c89baa73c31cd70af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc1cc065a13a491c89baa73c31cd70af.jpg", "file_size": 25147, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#杏底M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1cc065a13a491c89baa73c31cd70af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1cc065a13a491c89baa73c31cd70af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc1cc065a13a491c89baa73c31cd70af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc1cc065a13a491c89baa73c31cd70af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc1cc065a13a491c89baa73c31cd70af.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxChmgrfW_zeW_SjSENFjlwUd5U=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.931006+00 2025-12-09 10:15:46.931013+00 18603 LZ1389#上身2号色 SPMX-20240815313840 \N \N \N 1 \N [{"file_id": "db9eca4c-9dda-4cd1-aa46-94bd319ac0de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ba1b88e2344b0faccff6f986f5ddbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ba1b88e2344b0faccff6f986f5ddbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ba1b88e2344b0faccff6f986f5ddbc.jpg", "file_size": 16620, "is_delete": false, "file_type": 1, "original_file_name": "LZ1389#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba1b88e2344b0faccff6f986f5ddbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba1b88e2344b0faccff6f986f5ddbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba1b88e2344b0faccff6f986f5ddbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ba1b88e2344b0faccff6f986f5ddbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ba1b88e2344b0faccff6f986f5ddbc.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dcXPK_BguRPrruvIm9l0DLL7aDg=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.934272+00 2025-12-09 10:15:46.934278+00 18604 FX0003-60#黑色腰带 SPMX-20240815313832 \N \N \N 1 \N [{"file_id": "e64ad753-5c05-468e-86d9-ffde5a00af2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1e055ecf0904788b517f0311508caea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1e055ecf0904788b517f0311508caea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1e055ecf0904788b517f0311508caea.jpg", "file_size": 49139, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-60#黑色腰带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e055ecf0904788b517f0311508caea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e055ecf0904788b517f0311508caea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1e055ecf0904788b517f0311508caea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1e055ecf0904788b517f0311508caea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1e055ecf0904788b517f0311508caea.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLR0fQLazRGLTxuBsus0_FPrQhY=", "createTime": "2024-08-15 15:04:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.940768+00 2025-12-09 10:15:46.940774+00 18606 CGH0323#黑色 SPMX-20240815313839 \N \N \N 1 \N [{"file_id": "8ec374f1-f6c1-4f10-9406-55f264f4aebb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ac18926fb52410aafc3cdcddaec95d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ac18926fb52410aafc3cdcddaec95d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ac18926fb52410aafc3cdcddaec95d4.jpg", "file_size": 23736, "is_delete": false, "file_type": 1, "original_file_name": "CGH0323#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac18926fb52410aafc3cdcddaec95d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac18926fb52410aafc3cdcddaec95d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac18926fb52410aafc3cdcddaec95d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ac18926fb52410aafc3cdcddaec95d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ac18926fb52410aafc3cdcddaec95d4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mXsvScsRjTPHHVZgntoluLUAqHI=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.944057+00 2025-12-09 10:15:46.944068+00 18607 2328-1#大花L码 SPMX-20240815313831 \N \N \N 1 \N [{"file_id": "85072781-1777-49c1-8912-da664e2ea292", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcdff6d8666f44108613462f181b597c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcdff6d8666f44108613462f181b597c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcdff6d8666f44108613462f181b597c.jpg", "file_size": 14875, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#大花L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcdff6d8666f44108613462f181b597c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcdff6d8666f44108613462f181b597c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcdff6d8666f44108613462f181b597c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcdff6d8666f44108613462f181b597c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcdff6d8666f44108613462f181b597c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1_o3B8PVQBwtYqfgR9-trsJGp0=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.947324+00 2025-12-09 10:15:46.94733+00 18608 8640半裙定位花-L码# SPMX-20240815313830 \N \N \N 1 \N [{"file_id": "2d17ff7b-92cb-475b-9cc8-3005057f3ad4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73d19c3013684d83ac211b3de2cbac96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73d19c3013684d83ac211b3de2cbac96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73d19c3013684d83ac211b3de2cbac96.jpg", "file_size": 12959, "is_delete": false, "file_type": 1, "original_file_name": "8640半裙定位花-L码#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d19c3013684d83ac211b3de2cbac96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d19c3013684d83ac211b3de2cbac96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73d19c3013684d83ac211b3de2cbac96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73d19c3013684d83ac211b3de2cbac96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73d19c3013684d83ac211b3de2cbac96.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kVzRZKgY67nMYCSgm3e7OYgs5HI=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.950919+00 2025-12-09 10:15:46.950927+00 18609 DL3504#原版色XL SPMX-20240815313833 \N \N \N 1 \N [{"file_id": "9f7647e7-5466-480e-a4cf-726bf0bb8daa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg", "file_size": 21286, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#原版色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d5ffe1dc4ac4dbda8cfb962bf1bcb36.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hKqAnD3toxgcskkW75PpxRJxG2k=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.954276+00 2025-12-09 10:15:46.954284+00 18610 8640半裙定位花-M码# SPMX-20240815313841 \N \N \N 1 \N [{"file_id": "49c17575-012a-4974-be99-349fa73cb253", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2590dcba7aa04b49979c7df0dbab5279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2590dcba7aa04b49979c7df0dbab5279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2590dcba7aa04b49979c7df0dbab5279.jpg", "file_size": 12552, "is_delete": false, "file_type": 1, "original_file_name": "8640半裙定位花-M码#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2590dcba7aa04b49979c7df0dbab5279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2590dcba7aa04b49979c7df0dbab5279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2590dcba7aa04b49979c7df0dbab5279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2590dcba7aa04b49979c7df0dbab5279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2590dcba7aa04b49979c7df0dbab5279.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4onhiCS6vg_7tgbPKvbeAX_uJQ=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.957612+00 2025-12-09 10:15:46.957619+00 18611 1231-3FWF#中童袖领匹布 SPMX-20240815313835 \N \N \N 1 \N [{"file_id": "97c7a8ec-261a-41df-bd49-8940457ceb77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aee26957a9334c98917a147ab1a133c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aee26957a9334c98917a147ab1a133c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aee26957a9334c98917a147ab1a133c7.jpg", "file_size": 20009, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee26957a9334c98917a147ab1a133c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee26957a9334c98917a147ab1a133c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aee26957a9334c98917a147ab1a133c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aee26957a9334c98917a147ab1a133c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aee26957a9334c98917a147ab1a133c7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFnBgkhHtK490bqXBOANldSznzA=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.960848+00 2025-12-09 10:15:46.960854+00 18612 HXF-TB020#杏底XL码 SPMX-20240815313834 \N \N \N 1 \N [{"file_id": "be8993be-d2cf-419d-ab4d-e7e495009952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b025fbf52010429fb597969a534aa23f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b025fbf52010429fb597969a534aa23f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b025fbf52010429fb597969a534aa23f.jpg", "file_size": 24492, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#杏底XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b025fbf52010429fb597969a534aa23f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b025fbf52010429fb597969a534aa23f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b025fbf52010429fb597969a534aa23f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b025fbf52010429fb597969a534aa23f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b025fbf52010429fb597969a534aa23f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1Xt5kJrIFkvw48G5epjpKf9N_8=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.963965+00 2025-12-09 10:15:46.963971+00 18613 0012-11FWE#VS-D3 SPMX-20240815313836 \N \N \N 1 \N [{"file_id": "e7cefd0c-e0fc-4a3c-b0c8-645075b6d78c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "927851bf0dfa4c0db0b0e07a39f701eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "927851bf0dfa4c0db0b0e07a39f701eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "927851bf0dfa4c0db0b0e07a39f701eb.jpg", "file_size": 13423, "is_delete": false, "file_type": 1, "original_file_name": "0012-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/927851bf0dfa4c0db0b0e07a39f701eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/927851bf0dfa4c0db0b0e07a39f701eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/927851bf0dfa4c0db0b0e07a39f701eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/927851bf0dfa4c0db0b0e07a39f701eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/927851bf0dfa4c0db0b0e07a39f701eb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-uQuOHrbfvXqHc3C7LFib2blbc=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.967124+00 2025-12-09 10:15:46.967131+00 18614 LJH2016#黄色 SPMX-20240815313838 \N \N \N 1 \N [{"file_id": "4f3fec93-c7fe-4b57-9869-cd9400200205", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5e3ca89b1e2436da48a57ff0e6eae2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5e3ca89b1e2436da48a57ff0e6eae2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5e3ca89b1e2436da48a57ff0e6eae2a.jpg", "file_size": 55848, "is_delete": false, "file_type": 1, "original_file_name": "LJH2016#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e3ca89b1e2436da48a57ff0e6eae2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e3ca89b1e2436da48a57ff0e6eae2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5e3ca89b1e2436da48a57ff0e6eae2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5e3ca89b1e2436da48a57ff0e6eae2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5e3ca89b1e2436da48a57ff0e6eae2a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCisSX_hG37suP2_dw0fteSewRM=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.970833+00 2025-12-09 10:15:46.97084+00 18615 2328-1#格子-领子匹布 SPMX-20240815313842 \N \N \N 1 \N [{"file_id": "3da2d396-1add-4230-9e48-170df721530d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "500293b3a90c4a72bb408dcb73d04b5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "500293b3a90c4a72bb408dcb73d04b5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "500293b3a90c4a72bb408dcb73d04b5d.jpg", "file_size": 23404, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#格子-领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500293b3a90c4a72bb408dcb73d04b5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500293b3a90c4a72bb408dcb73d04b5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500293b3a90c4a72bb408dcb73d04b5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/500293b3a90c4a72bb408dcb73d04b5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/500293b3a90c4a72bb408dcb73d04b5d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hc6ZdNh0C4TT8I9x9QP7ouh-7h8=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.974679+00 2025-12-09 10:15:46.974686+00 18616 LZ1389#上身3号色 SPMX-20240815313851 \N \N \N 1 \N [{"file_id": "88ad5382-ce02-43b5-9373-5e6100b99514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc314c1b7acb4f3ab50c0c797061058d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc314c1b7acb4f3ab50c0c797061058d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc314c1b7acb4f3ab50c0c797061058d.jpg", "file_size": 16985, "is_delete": false, "file_type": 1, "original_file_name": "LZ1389#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc314c1b7acb4f3ab50c0c797061058d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc314c1b7acb4f3ab50c0c797061058d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc314c1b7acb4f3ab50c0c797061058d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc314c1b7acb4f3ab50c0c797061058d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc314c1b7acb4f3ab50c0c797061058d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IwPkR6vIPOjuT1zDAQHfl7ucnA4=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.978158+00 2025-12-09 10:15:46.978164+00 18617 0012-11FWF#V5曲线 SPMX-20240815313848 \N \N \N 1 \N [{"file_id": "58e11a8f-b458-49f4-81c6-553dcb45918e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d8fa428a95444e78a3721aed4dad68c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d8fa428a95444e78a3721aed4dad68c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d8fa428a95444e78a3721aed4dad68c.jpg", "file_size": 30408, "is_delete": false, "file_type": 1, "original_file_name": "0012-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8fa428a95444e78a3721aed4dad68c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8fa428a95444e78a3721aed4dad68c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8fa428a95444e78a3721aed4dad68c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d8fa428a95444e78a3721aed4dad68c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d8fa428a95444e78a3721aed4dad68c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kgyc6Upl0aXnxVVvP3-FYZXcn8k=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.981552+00 2025-12-09 10:15:46.981558+00 18618 8640半裙定位花-S码# SPMX-20240815313850 \N \N \N 1 \N [{"file_id": "a82dc26f-bd11-4ad0-be48-ed8f0796c00d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9c7a634e434cc4a135be0c0053ed43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9c7a634e434cc4a135be0c0053ed43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9c7a634e434cc4a135be0c0053ed43.jpg", "file_size": 12227, "is_delete": false, "file_type": 1, "original_file_name": "8640半裙定位花-S码#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c7a634e434cc4a135be0c0053ed43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c7a634e434cc4a135be0c0053ed43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c7a634e434cc4a135be0c0053ed43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9c7a634e434cc4a135be0c0053ed43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9c7a634e434cc4a135be0c0053ed43.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQ4duY18FS7YWmAjHCyimTYwo4k=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.984925+00 2025-12-09 10:15:46.984931+00 18619 JX0002A#WJC22 SPMX-20240815313847 \N \N \N 1 \N [{"file_id": "61db63c1-cd1e-4b85-8845-0421020c379f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9ee1113439647d593c85350785c804b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9ee1113439647d593c85350785c804b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9ee1113439647d593c85350785c804b.jpg", "file_size": 13947, "is_delete": false, "file_type": 1, "original_file_name": "JX0002A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ee1113439647d593c85350785c804b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ee1113439647d593c85350785c804b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ee1113439647d593c85350785c804b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9ee1113439647d593c85350785c804b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9ee1113439647d593c85350785c804b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1gfWUBMYfN4zT17h_Tz5zFEiU6Q=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.988216+00 2025-12-09 10:15:46.988222+00 18620 FX0003-61#1号色 SPMX-20240815313844 \N \N \N 1 \N [{"file_id": "b4b8398f-3d46-42e6-8e2a-8c2e20d42e68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4541d8f44f447f4a6866e2d6009c859.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4541d8f44f447f4a6866e2d6009c859.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4541d8f44f447f4a6866e2d6009c859.jpg", "file_size": 68291, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4541d8f44f447f4a6866e2d6009c859.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4541d8f44f447f4a6866e2d6009c859.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4541d8f44f447f4a6866e2d6009c859.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4541d8f44f447f4a6866e2d6009c859.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4541d8f44f447f4a6866e2d6009c859.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lHzSQDjxnUZ2Mb-efNjFP__X5s=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.991475+00 2025-12-09 10:15:46.991481+00 18621 1231-3FWF#小童6码 SPMX-20240815313846 \N \N \N 1 \N [{"file_id": "74af8a0b-e597-48a9-a9d9-79005c8c0306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f1ef28bcdd5461ca41d34d313fe0dff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f1ef28bcdd5461ca41d34d313fe0dff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f1ef28bcdd5461ca41d34d313fe0dff.jpg", "file_size": 19814, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ef28bcdd5461ca41d34d313fe0dff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ef28bcdd5461ca41d34d313fe0dff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f1ef28bcdd5461ca41d34d313fe0dff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f1ef28bcdd5461ca41d34d313fe0dff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f1ef28bcdd5461ca41d34d313fe0dff.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DpzzrkhP6C_7f8D9ClYvLuSOFM=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.994839+00 2025-12-09 10:15:46.994845+00 18622 HXF-TB020#杏底补片领通用码 SPMX-20240815313845 \N \N \N 1 \N [{"file_id": "c10f5af9-87c5-45ac-a3c1-13baffd09d16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e529af07b41d419f9606fa3ae0f8e042.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e529af07b41d419f9606fa3ae0f8e042.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e529af07b41d419f9606fa3ae0f8e042.jpg", "file_size": 19289, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#杏底补片领通用码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e529af07b41d419f9606fa3ae0f8e042.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e529af07b41d419f9606fa3ae0f8e042.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e529af07b41d419f9606fa3ae0f8e042.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e529af07b41d419f9606fa3ae0f8e042.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e529af07b41d419f9606fa3ae0f8e042.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-syjouvgquaC_zZp7rXvjNadr78=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:46.997861+00 2025-12-09 10:15:46.997867+00 18623 CGH04#WJC22 SPMX-20240815313849 \N \N \N 1 \N [{"file_id": "602ca128-d70a-46ae-b4e9-1efb91ee9a88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1cc378df9004e03952fa70f0cf99858.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1cc378df9004e03952fa70f0cf99858.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1cc378df9004e03952fa70f0cf99858.jpg", "file_size": 18576, "is_delete": false, "file_type": 1, "original_file_name": "CGH04#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cc378df9004e03952fa70f0cf99858.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cc378df9004e03952fa70f0cf99858.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1cc378df9004e03952fa70f0cf99858.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1cc378df9004e03952fa70f0cf99858.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1cc378df9004e03952fa70f0cf99858.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRlUIlFPuP20B2QmRi2wU0kC_aQ=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.000937+00 2025-12-09 10:15:47.000943+00 18624 DL3504#彩蓝L SPMX-20240815313843 \N \N \N 1 \N [{"file_id": "3d78437e-c78a-4bc5-a39e-0975ae182fbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eacfe116d0c4a6c830f6a2ef176a5f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eacfe116d0c4a6c830f6a2ef176a5f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eacfe116d0c4a6c830f6a2ef176a5f0.jpg", "file_size": 24520, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eacfe116d0c4a6c830f6a2ef176a5f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eacfe116d0c4a6c830f6a2ef176a5f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eacfe116d0c4a6c830f6a2ef176a5f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eacfe116d0c4a6c830f6a2ef176a5f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eacfe116d0c4a6c830f6a2ef176a5f0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyFhvGp25MUvnpLSoi-5QCiFXEU=", "createTime": "2024-08-15 15:04:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.003994+00 2025-12-09 10:15:47.004+00 18625 JX0002G#WJC22 SPMX-20240815313858 \N \N \N 1 \N [{"file_id": "8c67c479-f248-4ba0-bb59-6ff4315f066a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03333e3bba52423ab7f719a374a9cb90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03333e3bba52423ab7f719a374a9cb90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03333e3bba52423ab7f719a374a9cb90.jpg", "file_size": 16308, "is_delete": false, "file_type": 1, "original_file_name": "JX0002G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03333e3bba52423ab7f719a374a9cb90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03333e3bba52423ab7f719a374a9cb90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03333e3bba52423ab7f719a374a9cb90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03333e3bba52423ab7f719a374a9cb90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03333e3bba52423ab7f719a374a9cb90.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7cuu8CjxyuVZQ3crOgVVlqjC7Tk=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.006937+00 2025-12-09 10:15:47.006943+00 18626 HXF-TB020#白底2XL码 SPMX-20240815313855 \N \N \N 1 \N [{"file_id": "bc46a087-b135-4311-8c91-2079af22fd2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg", "file_size": 23050, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cec1d1e5fa2424b9c5c1be1d3d0590d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZeW5e87JkIu4JnMYbRTT7n1X-fM=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.010026+00 2025-12-09 10:15:47.010031+00 18627 1231-3FWF#小童8码+4码 SPMX-20240815313856 \N \N \N 1 \N [{"file_id": "94309be3-40d7-41fb-953e-06fe913c08a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcfaf002724647fc85a284dbf888dd28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcfaf002724647fc85a284dbf888dd28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcfaf002724647fc85a284dbf888dd28.jpg", "file_size": 20096, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcfaf002724647fc85a284dbf888dd28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcfaf002724647fc85a284dbf888dd28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcfaf002724647fc85a284dbf888dd28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcfaf002724647fc85a284dbf888dd28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcfaf002724647fc85a284dbf888dd28.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hdd-5nPMg3qlp5SI8jMUouq9k4g=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.01303+00 2025-12-09 10:15:47.013036+00 18628 8640半裙定位花-XL码# SPMX-20240815313861 \N \N \N 1 \N [{"file_id": "47b3a5de-bc7e-4102-9773-1935ccba0fd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "480869c001da4b4a9921f5549c08c65b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "480869c001da4b4a9921f5549c08c65b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "480869c001da4b4a9921f5549c08c65b.jpg", "file_size": 12841, "is_delete": false, "file_type": 1, "original_file_name": "8640半裙定位花-XL码#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480869c001da4b4a9921f5549c08c65b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480869c001da4b4a9921f5549c08c65b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480869c001da4b4a9921f5549c08c65b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/480869c001da4b4a9921f5549c08c65b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/480869c001da4b4a9921f5549c08c65b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XOuV1vk1vjG5TIV9Af0vhGRP2Pc=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.01601+00 2025-12-09 10:15:47.016016+00 18629 LJH2017#1号色 SPMX-20240815313853 \N \N \N 1 \N [{"file_id": "45deec59-0f83-4dd7-9575-1938221f8ed3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a19003163304bff858328043e932429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a19003163304bff858328043e932429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a19003163304bff858328043e932429.jpg", "file_size": 54727, "is_delete": false, "file_type": 1, "original_file_name": "LJH2017#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a19003163304bff858328043e932429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a19003163304bff858328043e932429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a19003163304bff858328043e932429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a19003163304bff858328043e932429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a19003163304bff858328043e932429.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SOT6byq5QUsxezLluasPKlSCuBE=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.019073+00 2025-12-09 10:15:47.019079+00 18630 CGH05#WJC22 SPMX-20240815313860 \N \N \N 1 \N [{"file_id": "84b0db33-3971-4b4f-b4a0-9cdc52dd4373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd91de805c214b2d8f286ef1f4e1ce51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd91de805c214b2d8f286ef1f4e1ce51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd91de805c214b2d8f286ef1f4e1ce51.jpg", "file_size": 13721, "is_delete": false, "file_type": 1, "original_file_name": "CGH05#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd91de805c214b2d8f286ef1f4e1ce51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd91de805c214b2d8f286ef1f4e1ce51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd91de805c214b2d8f286ef1f4e1ce51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd91de805c214b2d8f286ef1f4e1ce51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd91de805c214b2d8f286ef1f4e1ce51.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n33PIOlMrjjpssfesWxfuvf1i9I=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.022172+00 2025-12-09 10:15:47.022178+00 18631 2328-1#格子L码 SPMX-20240815313854 \N \N \N 1 \N [{"file_id": "37d696cc-583a-49c7-bc7c-24dc9c4b5423", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63772ca7cd174950b1543688b4d18291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63772ca7cd174950b1543688b4d18291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63772ca7cd174950b1543688b4d18291.jpg", "file_size": 44924, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#格子L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63772ca7cd174950b1543688b4d18291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63772ca7cd174950b1543688b4d18291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63772ca7cd174950b1543688b4d18291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63772ca7cd174950b1543688b4d18291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63772ca7cd174950b1543688b4d18291.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdvR4QqN9cK6Vz3y2r9jKD9Nv8A=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.025304+00 2025-12-09 10:15:47.025311+00 18632 FX0003-61#2号色 SPMX-20240815313857 \N \N \N 1 \N [{"file_id": "124b7404-dbe7-4aec-b267-43de28e4f210", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cda0617286d429c91286458dc8a43c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cda0617286d429c91286458dc8a43c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cda0617286d429c91286458dc8a43c2.jpg", "file_size": 73836, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cda0617286d429c91286458dc8a43c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cda0617286d429c91286458dc8a43c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cda0617286d429c91286458dc8a43c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cda0617286d429c91286458dc8a43c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cda0617286d429c91286458dc8a43c2.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9E3-mmktENmNNjMzrPEo7X5gHK0=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.028218+00 2025-12-09 10:15:47.028225+00 18633 DL3504#绿色2XL SPMX-20240815313852 \N \N \N 1 \N [{"file_id": "b25eff1e-d34f-461e-b3ba-0ff23544f619", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4651d1938ae344a2847ceed7c4cf03d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4651d1938ae344a2847ceed7c4cf03d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4651d1938ae344a2847ceed7c4cf03d0.jpg", "file_size": 20134, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4651d1938ae344a2847ceed7c4cf03d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4651d1938ae344a2847ceed7c4cf03d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4651d1938ae344a2847ceed7c4cf03d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4651d1938ae344a2847ceed7c4cf03d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4651d1938ae344a2847ceed7c4cf03d0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnBrdvnzhLeotH8d3_gZTNvyjFM=", "createTime": "2024-08-15 15:04:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.031186+00 2025-12-09 10:15:47.031192+00 18634 0012-12FWE#VS-D3 SPMX-20240815313859 \N \N \N 1 \N [{"file_id": "47a5a39d-8874-4f76-af51-0355f351ccfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c18160a670b4d18a889da0481c0565c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c18160a670b4d18a889da0481c0565c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c18160a670b4d18a889da0481c0565c.jpg", "file_size": 25468, "is_delete": false, "file_type": 1, "original_file_name": "0012-12FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18160a670b4d18a889da0481c0565c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18160a670b4d18a889da0481c0565c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c18160a670b4d18a889da0481c0565c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c18160a670b4d18a889da0481c0565c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c18160a670b4d18a889da0481c0565c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MMRzKgb0UVTnXikYOqCHQ7kuWjg=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.034268+00 2025-12-09 10:15:47.034274+00 18635 2328-1#橘色L码 SPMX-20240815313866 \N \N \N 1 \N [{"file_id": "423c1e8f-af9b-492e-85c5-2e816e9eedca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b37f83604444d10b14bde4edddbec81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b37f83604444d10b14bde4edddbec81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b37f83604444d10b14bde4edddbec81.jpg", "file_size": 15886, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#橘色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b37f83604444d10b14bde4edddbec81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b37f83604444d10b14bde4edddbec81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b37f83604444d10b14bde4edddbec81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b37f83604444d10b14bde4edddbec81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b37f83604444d10b14bde4edddbec81.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIxpD5cHuAmbNAnfMVTdjR9tZXA=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.037292+00 2025-12-09 10:15:47.037299+00 18636 HXF-TB020#白底L码 SPMX-20240815313864 \N \N \N 1 \N [{"file_id": "c9255bb0-a280-439d-a8d2-0a7ec0af1e58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7397b4a594b84078ad8e7e0cef81b30d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7397b4a594b84078ad8e7e0cef81b30d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7397b4a594b84078ad8e7e0cef81b30d.jpg", "file_size": 24530, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7397b4a594b84078ad8e7e0cef81b30d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7397b4a594b84078ad8e7e0cef81b30d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7397b4a594b84078ad8e7e0cef81b30d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7397b4a594b84078ad8e7e0cef81b30d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7397b4a594b84078ad8e7e0cef81b30d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kwWs95N5hOqRwRyiFJCHXwT6b6Y=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.04036+00 2025-12-09 10:15:47.040366+00 18637 LZ1389#上身4号色 SPMX-20240815313862 \N \N \N 1 \N [{"file_id": "e4fea416-55f3-4b9d-8b3c-37eb888c3442", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f0ffc7e02324c93b94a70052b29a28e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f0ffc7e02324c93b94a70052b29a28e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f0ffc7e02324c93b94a70052b29a28e.jpg", "file_size": 16036, "is_delete": false, "file_type": 1, "original_file_name": "LZ1389#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ffc7e02324c93b94a70052b29a28e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ffc7e02324c93b94a70052b29a28e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f0ffc7e02324c93b94a70052b29a28e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f0ffc7e02324c93b94a70052b29a28e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f0ffc7e02324c93b94a70052b29a28e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VXP_1lK4i2DRQSRJBySyZp3UGkQ=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.043395+00 2025-12-09 10:15:47.043402+00 18638 DL3504#绿色L SPMX-20240815313863 \N \N \N 1 \N [{"file_id": "951ae9b2-0507-407e-91fe-c90383464d99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "111df27d0fd94c229779571b6bb38d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "111df27d0fd94c229779571b6bb38d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "111df27d0fd94c229779571b6bb38d31.jpg", "file_size": 24621, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/111df27d0fd94c229779571b6bb38d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/111df27d0fd94c229779571b6bb38d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/111df27d0fd94c229779571b6bb38d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/111df27d0fd94c229779571b6bb38d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/111df27d0fd94c229779571b6bb38d31.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mr4TOWPW-vHF6ntm3CaWZ5KDXp0=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.046398+00 2025-12-09 10:15:47.046405+00 18639 1231-3FWF#小童袖领匹布 SPMX-20240815313865 \N \N \N 1 \N [{"file_id": "74cef503-7223-497f-8958-d1b40b115de0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1fbc022a9204a589fa1177f7fd59495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1fbc022a9204a589fa1177f7fd59495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1fbc022a9204a589fa1177f7fd59495.jpg", "file_size": 12154, "is_delete": false, "file_type": 1, "original_file_name": "1231-3FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fbc022a9204a589fa1177f7fd59495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fbc022a9204a589fa1177f7fd59495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1fbc022a9204a589fa1177f7fd59495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1fbc022a9204a589fa1177f7fd59495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1fbc022a9204a589fa1177f7fd59495.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyCmR1TY7oy-4qd0BZlxXA4tKcM=", "createTime": "2024-08-15 15:04:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.049346+00 2025-12-09 10:15:47.049353+00 18640 1231-40FWF#中童12码+10码 SPMX-20240815313875 \N \N \N 1 \N [{"file_id": "647858ed-71fe-4400-9c3d-a08167c59e35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63eb2f9d5b344c6788b3246204fb2547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63eb2f9d5b344c6788b3246204fb2547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63eb2f9d5b344c6788b3246204fb2547.jpg", "file_size": 19538, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63eb2f9d5b344c6788b3246204fb2547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63eb2f9d5b344c6788b3246204fb2547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63eb2f9d5b344c6788b3246204fb2547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63eb2f9d5b344c6788b3246204fb2547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63eb2f9d5b344c6788b3246204fb2547.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:033Oo_NpaLtU8ctWLN8uhHEaaVU=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.052364+00 2025-12-09 10:15:47.05237+00 18641 HXF-TB020#白底M码 SPMX-20240815313876 \N \N \N 1 \N [{"file_id": "917091bf-508b-4808-9a9c-4bbd5f00f1d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c48fcabcb3e34b909f6aa68d0ea023ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c48fcabcb3e34b909f6aa68d0ea023ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c48fcabcb3e34b909f6aa68d0ea023ba.jpg", "file_size": 25077, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48fcabcb3e34b909f6aa68d0ea023ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48fcabcb3e34b909f6aa68d0ea023ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c48fcabcb3e34b909f6aa68d0ea023ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c48fcabcb3e34b909f6aa68d0ea023ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c48fcabcb3e34b909f6aa68d0ea023ba.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TOOr2ixKjAOh4_maDzibEd7rgFc=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.055379+00 2025-12-09 10:15:47.055385+00 18642 CGH2345#橙蓝色 SPMX-20240815313867 \N \N \N 1 \N [{"file_id": "6551b20f-0a5b-41dd-85af-008e66c804c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77084a5ef72c49288d5173689f7fea9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77084a5ef72c49288d5173689f7fea9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77084a5ef72c49288d5173689f7fea9d.jpg", "file_size": 16305, "is_delete": false, "file_type": 1, "original_file_name": "CGH2345#橙蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77084a5ef72c49288d5173689f7fea9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77084a5ef72c49288d5173689f7fea9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77084a5ef72c49288d5173689f7fea9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77084a5ef72c49288d5173689f7fea9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77084a5ef72c49288d5173689f7fea9d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOYqzEyZPT3R3VNaC-GbjjMF5zk=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.05842+00 2025-12-09 10:15:47.058426+00 18643 JX0002W#WJC22 SPMX-20240815313868 \N \N \N 1 \N [{"file_id": "4af35cf5-725f-4b3c-8bc9-f6f7074fe579", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fca64488a3649b5b464f823af6b4215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fca64488a3649b5b464f823af6b4215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fca64488a3649b5b464f823af6b4215.jpg", "file_size": 17893, "is_delete": false, "file_type": 1, "original_file_name": "JX0002W#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca64488a3649b5b464f823af6b4215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca64488a3649b5b464f823af6b4215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca64488a3649b5b464f823af6b4215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fca64488a3649b5b464f823af6b4215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fca64488a3649b5b464f823af6b4215.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jj0G_Z7G7CS2fO_mOQxjy570PBM=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.061425+00 2025-12-09 10:15:47.061432+00 18644 FX0003-61#3号色 SPMX-20240815313869 \N \N \N 1 \N [{"file_id": "3a27516f-2c2a-4645-b3b8-22cc8cbe6c61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0913ee263b94417ea574ac852af2462e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0913ee263b94417ea574ac852af2462e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0913ee263b94417ea574ac852af2462e.jpg", "file_size": 70445, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0913ee263b94417ea574ac852af2462e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0913ee263b94417ea574ac852af2462e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0913ee263b94417ea574ac852af2462e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0913ee263b94417ea574ac852af2462e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0913ee263b94417ea574ac852af2462e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38QBwLxq9z1YiGdVBUY1Uj4PRRE=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.064409+00 2025-12-09 10:15:47.064415+00 18645 LZ1389#上身5号色 SPMX-20240815313877 \N \N \N 1 \N [{"file_id": "2dbfdf05-9157-4102-9a40-4b598a8d80a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c58be799028b4e28b0c24a2733c17688.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c58be799028b4e28b0c24a2733c17688.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c58be799028b4e28b0c24a2733c17688.jpg", "file_size": 16840, "is_delete": false, "file_type": 1, "original_file_name": "LZ1389#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58be799028b4e28b0c24a2733c17688.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58be799028b4e28b0c24a2733c17688.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58be799028b4e28b0c24a2733c17688.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c58be799028b4e28b0c24a2733c17688.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c58be799028b4e28b0c24a2733c17688.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:miNY2dwWGzVlVF7oZVfpZX2MKCs=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.067396+00 2025-12-09 10:15:47.067404+00 18646 DL3504#绿色XL SPMX-20240815313873 \N \N \N 1 \N [{"file_id": "91fbd627-15e2-40fc-9dfc-291157675867", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23ca82fa7f8a43e2ad3642e3efa2c568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23ca82fa7f8a43e2ad3642e3efa2c568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23ca82fa7f8a43e2ad3642e3efa2c568.jpg", "file_size": 20348, "is_delete": false, "file_type": 1, "original_file_name": "DL3504#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ca82fa7f8a43e2ad3642e3efa2c568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ca82fa7f8a43e2ad3642e3efa2c568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23ca82fa7f8a43e2ad3642e3efa2c568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23ca82fa7f8a43e2ad3642e3efa2c568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23ca82fa7f8a43e2ad3642e3efa2c568.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oK_v1fUPa-X7zLTIdTxsEr_TjmY=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.070431+00 2025-12-09 10:15:47.070436+00 18647 LJH2017#2号色 SPMX-20240815313870 \N \N \N 1 \N [{"file_id": "690bbda5-87b8-4dc1-bc7f-f1f4b788fdda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b01b0f8e429346208d81386a3430565d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b01b0f8e429346208d81386a3430565d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b01b0f8e429346208d81386a3430565d.jpg", "file_size": 51930, "is_delete": false, "file_type": 1, "original_file_name": "LJH2017#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01b0f8e429346208d81386a3430565d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01b0f8e429346208d81386a3430565d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b01b0f8e429346208d81386a3430565d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b01b0f8e429346208d81386a3430565d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b01b0f8e429346208d81386a3430565d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgidd8meQ48UMFYZWIFpWt5sb3s=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.07342+00 2025-12-09 10:15:47.073428+00 18648 2328-1#橘色领子 SPMX-20240815313874 \N \N \N 1 \N [{"file_id": "0e33866c-6af7-4b37-bd33-78dc3e68384c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66f4ebfd2dc44fb7b063a425ca7abdc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66f4ebfd2dc44fb7b063a425ca7abdc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66f4ebfd2dc44fb7b063a425ca7abdc2.jpg", "file_size": 9395, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#橘色领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f4ebfd2dc44fb7b063a425ca7abdc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f4ebfd2dc44fb7b063a425ca7abdc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66f4ebfd2dc44fb7b063a425ca7abdc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66f4ebfd2dc44fb7b063a425ca7abdc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66f4ebfd2dc44fb7b063a425ca7abdc2.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRphVsh3fWPS0oLvKge-IbWjGCg=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.076465+00 2025-12-09 10:15:47.076471+00 18649 8640短裤#-耳仔 SPMX-20240815313872 \N \N \N 1 \N [{"file_id": "2b6607f2-ff81-4fe9-b214-4f4af68ecfe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2296ec4044d4f53bf2bd1af2f395b53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2296ec4044d4f53bf2bd1af2f395b53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2296ec4044d4f53bf2bd1af2f395b53.jpg", "file_size": 6101, "is_delete": false, "file_type": 1, "original_file_name": "8640短裤#-耳仔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2296ec4044d4f53bf2bd1af2f395b53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2296ec4044d4f53bf2bd1af2f395b53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2296ec4044d4f53bf2bd1af2f395b53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2296ec4044d4f53bf2bd1af2f395b53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2296ec4044d4f53bf2bd1af2f395b53.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0Jx1aEBbAMqJMqfSqVn1wMkcsY=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.079481+00 2025-12-09 10:15:47.079488+00 18650 0012-12FWF#V5曲线 SPMX-20240815313871 \N \N \N 1 \N [{"file_id": "c7140dfe-a04f-4e7f-926d-1da110122ff9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1396235afef4c2aa7b9d09d478efe43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1396235afef4c2aa7b9d09d478efe43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1396235afef4c2aa7b9d09d478efe43.jpg", "file_size": 26962, "is_delete": false, "file_type": 1, "original_file_name": "0012-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1396235afef4c2aa7b9d09d478efe43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1396235afef4c2aa7b9d09d478efe43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1396235afef4c2aa7b9d09d478efe43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1396235afef4c2aa7b9d09d478efe43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1396235afef4c2aa7b9d09d478efe43.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5snJAv97-0nrnE0sc8RBpywnnIM=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.082457+00 2025-12-09 10:15:47.082463+00 18651 DL4-23G74#原版 SPMX-20240815313886 \N \N \N 1 \N [{"file_id": "a65f0d28-5ac2-473b-a51b-d2c30c58c6c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "260ff997fb8a44f0a0feba52f3264a4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "260ff997fb8a44f0a0feba52f3264a4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "260ff997fb8a44f0a0feba52f3264a4c.jpg", "file_size": 15860, "is_delete": false, "file_type": 1, "original_file_name": "DL4-23G74#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260ff997fb8a44f0a0feba52f3264a4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260ff997fb8a44f0a0feba52f3264a4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260ff997fb8a44f0a0feba52f3264a4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/260ff997fb8a44f0a0feba52f3264a4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/260ff997fb8a44f0a0feba52f3264a4c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ki1baGVmOzIF_VlSizPMyvR1bJU=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.085505+00 2025-12-09 10:15:47.085512+00 18652 2328-1#热带叶子-领子匹布 SPMX-20240815313883 \N \N \N 1 \N [{"file_id": "b59e748c-2366-4b34-a905-45fd12286720", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc4273a2c3fb4acca6e0d7c06e9d9475.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc4273a2c3fb4acca6e0d7c06e9d9475.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc4273a2c3fb4acca6e0d7c06e9d9475.jpg", "file_size": 24360, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#热带叶子-领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4273a2c3fb4acca6e0d7c06e9d9475.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4273a2c3fb4acca6e0d7c06e9d9475.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc4273a2c3fb4acca6e0d7c06e9d9475.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc4273a2c3fb4acca6e0d7c06e9d9475.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc4273a2c3fb4acca6e0d7c06e9d9475.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4bGKEV0m2K24qRzmhTSkLjXlsTU=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.088474+00 2025-12-09 10:15:47.08848+00 18653 JX0003A#WJC22 SPMX-20240815313879 \N \N \N 1 \N [{"file_id": "1b037ccb-308d-4418-a4cc-37ec504e6e2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77fe8d0c0c5344529f1b1edc1b3a45e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77fe8d0c0c5344529f1b1edc1b3a45e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77fe8d0c0c5344529f1b1edc1b3a45e1.jpg", "file_size": 14676, "is_delete": false, "file_type": 1, "original_file_name": "JX0003A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fe8d0c0c5344529f1b1edc1b3a45e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fe8d0c0c5344529f1b1edc1b3a45e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fe8d0c0c5344529f1b1edc1b3a45e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77fe8d0c0c5344529f1b1edc1b3a45e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77fe8d0c0c5344529f1b1edc1b3a45e1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFlpHaSfXC8PkTPi8prutArf7H4=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.091457+00 2025-12-09 10:15:47.091464+00 18654 1231-40FWF#中童14码 SPMX-20240815313885 \N \N \N 1 \N [{"file_id": "5a659bb5-765b-4f89-8595-4c717c4b4f9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b4f9fc22784eb8ad7713622d27d9e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b4f9fc22784eb8ad7713622d27d9e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b4f9fc22784eb8ad7713622d27d9e1.jpg", "file_size": 17287, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b4f9fc22784eb8ad7713622d27d9e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b4f9fc22784eb8ad7713622d27d9e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b4f9fc22784eb8ad7713622d27d9e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b4f9fc22784eb8ad7713622d27d9e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b4f9fc22784eb8ad7713622d27d9e1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jzz32N-kSpzc4JsaMsiCruElx4E=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.094478+00 2025-12-09 10:15:47.094484+00 18655 CGH2345#蓝红色 SPMX-20240815313878 \N \N \N 1 \N [{"file_id": "ae7c30ce-4734-4f19-9af3-d567d6c50fe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg", "file_size": 14190, "is_delete": false, "file_type": 1, "original_file_name": "CGH2345#蓝红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea2a7a610ce24c4d82a7fb6ae5ed76ba.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lAJ3vUIu3LyXljNiBPMYISOSZe8=", "createTime": "2024-08-15 15:05:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.097586+00 2025-12-09 10:15:47.097592+00 18656 0012-13FWE#VS-D3 SPMX-20240815313882 \N \N \N 1 \N [{"file_id": "9761b8d1-86bf-45b5-9f4e-d64df06bdc00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6790b5fbc2b439e8d0afa72893cdb99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6790b5fbc2b439e8d0afa72893cdb99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6790b5fbc2b439e8d0afa72893cdb99.jpg", "file_size": 25149, "is_delete": false, "file_type": 1, "original_file_name": "0012-13FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6790b5fbc2b439e8d0afa72893cdb99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6790b5fbc2b439e8d0afa72893cdb99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6790b5fbc2b439e8d0afa72893cdb99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6790b5fbc2b439e8d0afa72893cdb99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6790b5fbc2b439e8d0afa72893cdb99.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gee0OPW36nlpG0hYxMMQtL2BZw=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.100954+00 2025-12-09 10:15:47.100961+00 18657 8640短裤#-耳仔布 SPMX-20240815313880 \N \N \N 1 \N [{"file_id": "bef47819-dd81-4978-b649-465c4a06792d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfc211bde9254820920ad5db966ba3ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfc211bde9254820920ad5db966ba3ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfc211bde9254820920ad5db966ba3ff.jpg", "file_size": 5996, "is_delete": false, "file_type": 1, "original_file_name": "8640短裤#-耳仔布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc211bde9254820920ad5db966ba3ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc211bde9254820920ad5db966ba3ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfc211bde9254820920ad5db966ba3ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfc211bde9254820920ad5db966ba3ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfc211bde9254820920ad5db966ba3ff.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiwlKveyMRoYqg0vkgVaYMiCeIU=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.104182+00 2025-12-09 10:15:47.104188+00 18658 LJH2017#3号色 SPMX-20240815313881 \N \N \N 1 \N [{"file_id": "7e6b6d48-4a36-412b-b346-36f8c1e75439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be95aa5e1f248aca0bf6309ff51a1cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be95aa5e1f248aca0bf6309ff51a1cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be95aa5e1f248aca0bf6309ff51a1cd.jpg", "file_size": 54041, "is_delete": false, "file_type": 1, "original_file_name": "LJH2017#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be95aa5e1f248aca0bf6309ff51a1cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be95aa5e1f248aca0bf6309ff51a1cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be95aa5e1f248aca0bf6309ff51a1cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be95aa5e1f248aca0bf6309ff51a1cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be95aa5e1f248aca0bf6309ff51a1cd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V9TIGgFIMUzRofHynculSXU-RP0=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.107277+00 2025-12-09 10:15:47.107283+00 18659 FX0003-61#4号色 SPMX-20240815313884 \N \N \N 1 \N [{"file_id": "33cfa2ce-c06a-48d9-aec0-b23ba071d1b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02c0701a76e049de9085a2f363f40375.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02c0701a76e049de9085a2f363f40375.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02c0701a76e049de9085a2f363f40375.jpg", "file_size": 68736, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c0701a76e049de9085a2f363f40375.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c0701a76e049de9085a2f363f40375.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c0701a76e049de9085a2f363f40375.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02c0701a76e049de9085a2f363f40375.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02c0701a76e049de9085a2f363f40375.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymwmLOLtsJLN46nk5xvCWdK1Wok=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.110328+00 2025-12-09 10:15:47.110334+00 18660 JX0003G#WJC22 SPMX-20240815313890 \N \N \N 1 \N [{"file_id": "5b004ef3-beb4-4f09-9875-063fd7d7bc20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40d7850cd5b14828855357d64e836f32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40d7850cd5b14828855357d64e836f32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40d7850cd5b14828855357d64e836f32.jpg", "file_size": 23535, "is_delete": false, "file_type": 1, "original_file_name": "JX0003G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d7850cd5b14828855357d64e836f32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d7850cd5b14828855357d64e836f32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40d7850cd5b14828855357d64e836f32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40d7850cd5b14828855357d64e836f32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40d7850cd5b14828855357d64e836f32.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyf2OreB66FmBSkN2BAn3kqNyzI=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.113437+00 2025-12-09 10:15:47.113443+00 18661 0012-13FWE#番禺调色 SPMX-20240815313896 \N \N \N 1 \N [{"file_id": "7020f597-c36e-4b14-b8d1-a08c4a42738a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84307f6811dd4206b9632f142678c923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84307f6811dd4206b9632f142678c923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84307f6811dd4206b9632f142678c923.jpg", "file_size": 25787, "is_delete": false, "file_type": 1, "original_file_name": "0012-13FWE#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84307f6811dd4206b9632f142678c923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84307f6811dd4206b9632f142678c923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84307f6811dd4206b9632f142678c923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84307f6811dd4206b9632f142678c923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84307f6811dd4206b9632f142678c923.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlQ-yMeGwgQR560fdxHNk5AvYoA=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.11689+00 2025-12-09 10:15:47.116897+00 18662 HXF-TB020#白底补片领通用码 SPMX-20240815313898 \N \N \N 1 \N [{"file_id": "e9deea2b-2f9e-4c40-978e-9b9ba7afebc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5f4fdfaf4794e02af733661d721152d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5f4fdfaf4794e02af733661d721152d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5f4fdfaf4794e02af733661d721152d.jpg", "file_size": 19213, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底补片领通用码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f4fdfaf4794e02af733661d721152d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f4fdfaf4794e02af733661d721152d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5f4fdfaf4794e02af733661d721152d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5f4fdfaf4794e02af733661d721152d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5f4fdfaf4794e02af733661d721152d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtXomrpgFY-8884QPSH-uXBgNF8=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.119944+00 2025-12-09 10:15:47.11995+00 18663 CGH2345#黄紫色 SPMX-20240815313901 \N \N \N 1 \N [{"file_id": "e9c85ad8-caee-4693-be3a-d133ce65dbb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d14eb9d7c5da47adae9a1ef0beab3fd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d14eb9d7c5da47adae9a1ef0beab3fd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d14eb9d7c5da47adae9a1ef0beab3fd6.jpg", "file_size": 14612, "is_delete": false, "file_type": 1, "original_file_name": "CGH2345#黄紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14eb9d7c5da47adae9a1ef0beab3fd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14eb9d7c5da47adae9a1ef0beab3fd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d14eb9d7c5da47adae9a1ef0beab3fd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d14eb9d7c5da47adae9a1ef0beab3fd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d14eb9d7c5da47adae9a1ef0beab3fd6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JTXleKCFCXVsb6Qf_d-kaj_vD0=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.122934+00 2025-12-09 10:15:47.122941+00 18664 1231-40FWF#中童袖领匹布 SPMX-20240815313893 \N \N \N 1 \N [{"file_id": "2fc3c7cd-59f1-4f5b-97b9-0f7861995e09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "767544ea52384c09a1afcc78c3316ffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "767544ea52384c09a1afcc78c3316ffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "767544ea52384c09a1afcc78c3316ffd.jpg", "file_size": 9794, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767544ea52384c09a1afcc78c3316ffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767544ea52384c09a1afcc78c3316ffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/767544ea52384c09a1afcc78c3316ffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/767544ea52384c09a1afcc78c3316ffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/767544ea52384c09a1afcc78c3316ffd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nokSBvrMNc-165NOciR0FIQv6E=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.12596+00 2025-12-09 10:15:47.125966+00 18665 8641#L SPMX-20240815313891 \N \N \N 1 \N [{"file_id": "623dc5d2-a95e-45e0-b7c5-72b235f29ef3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "988b648c7d204bb190759c6b714fa0d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "988b648c7d204bb190759c6b714fa0d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "988b648c7d204bb190759c6b714fa0d6.jpg", "file_size": 14462, "is_delete": false, "file_type": 1, "original_file_name": "8641#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988b648c7d204bb190759c6b714fa0d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988b648c7d204bb190759c6b714fa0d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/988b648c7d204bb190759c6b714fa0d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/988b648c7d204bb190759c6b714fa0d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/988b648c7d204bb190759c6b714fa0d6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzwBJaslkUFbB3SrmwmG5MIbQwo=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.128967+00 2025-12-09 10:15:47.128974+00 18666 JX0004A#V5 SPMX-20240815313899 \N \N \N 1 \N [{"file_id": "7a9de577-e9e3-4eba-b1e4-62fa6c3d093b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40da032ce6994e859ec3d03bb08a0ef9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40da032ce6994e859ec3d03bb08a0ef9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40da032ce6994e859ec3d03bb08a0ef9.jpg", "file_size": 17786, "is_delete": false, "file_type": 1, "original_file_name": "JX0004A#V5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40da032ce6994e859ec3d03bb08a0ef9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40da032ce6994e859ec3d03bb08a0ef9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40da032ce6994e859ec3d03bb08a0ef9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40da032ce6994e859ec3d03bb08a0ef9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40da032ce6994e859ec3d03bb08a0ef9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_0tG9aSoblVh3PT_de0Yl7V1R4=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.132021+00 2025-12-09 10:15:47.132027+00 18667 HXF-TB020#白底XL码 SPMX-20240815313887 \N \N \N 1 \N [{"file_id": "84eca81f-687c-4cc2-ae53-bf8eff13a3d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f760eefab5a4a0e9617204e4c124913.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f760eefab5a4a0e9617204e4c124913.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f760eefab5a4a0e9617204e4c124913.jpg", "file_size": 24453, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f760eefab5a4a0e9617204e4c124913.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f760eefab5a4a0e9617204e4c124913.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f760eefab5a4a0e9617204e4c124913.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f760eefab5a4a0e9617204e4c124913.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f760eefab5a4a0e9617204e4c124913.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xna3iO69k2CpXpZ-s5zw5gIeLcc=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.135009+00 2025-12-09 10:15:47.135016+00 18668 LZ138FWF#短袖1号色 SPMX-20240815313889 \N \N \N 1 \N [{"file_id": "6a23d254-d980-41a7-93b4-8147ed49fd5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4fef8bdc1154486911a4e9fa1379393.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4fef8bdc1154486911a4e9fa1379393.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4fef8bdc1154486911a4e9fa1379393.jpg", "file_size": 18888, "is_delete": false, "file_type": 1, "original_file_name": "LZ138FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4fef8bdc1154486911a4e9fa1379393.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4fef8bdc1154486911a4e9fa1379393.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4fef8bdc1154486911a4e9fa1379393.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4fef8bdc1154486911a4e9fa1379393.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4fef8bdc1154486911a4e9fa1379393.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-8Xv8KosaLfjwp0XYHgIqdx7OLs=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.13803+00 2025-12-09 10:15:47.138036+00 18669 LZ138FWF#短袖2号色 SPMX-20240815313900 \N \N \N 1 \N [{"file_id": "c4e025e9-8a8b-4806-8585-2c2862e7980c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "93996249663a4030b5b7c7a2057eb0d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "93996249663a4030b5b7c7a2057eb0d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "93996249663a4030b5b7c7a2057eb0d1.jpg", "file_size": 16332, "is_delete": false, "file_type": 1, "original_file_name": "LZ138FWF#短袖2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93996249663a4030b5b7c7a2057eb0d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93996249663a4030b5b7c7a2057eb0d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/93996249663a4030b5b7c7a2057eb0d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/93996249663a4030b5b7c7a2057eb0d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/93996249663a4030b5b7c7a2057eb0d1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DBhajqnPGAiFhF1XBZLEnhzV2u0=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.140993+00 2025-12-09 10:15:47.140999+00 18670 LJH2017#4号色 SPMX-20240815313892 \N \N \N 1 \N [{"file_id": "c1e0582e-c1af-4f7a-97bb-f3e93343a7a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48273bff06ef42849ae32a366aad2429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48273bff06ef42849ae32a366aad2429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48273bff06ef42849ae32a366aad2429.jpg", "file_size": 50919, "is_delete": false, "file_type": 1, "original_file_name": "LJH2017#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48273bff06ef42849ae32a366aad2429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48273bff06ef42849ae32a366aad2429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48273bff06ef42849ae32a366aad2429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48273bff06ef42849ae32a366aad2429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48273bff06ef42849ae32a366aad2429.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fwl6eeJuNRGhBIt6i2mfc_pD9QQ=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.144093+00 2025-12-09 10:15:47.144099+00 18671 DL4-23G74#墨绿 SPMX-20240815313895 \N \N \N 1 \N [{"file_id": "d9d850fd-69ad-4330-ac0c-157189cd850f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a410093d56554a11b85f6ca7f50ad696.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a410093d56554a11b85f6ca7f50ad696.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a410093d56554a11b85f6ca7f50ad696.jpg", "file_size": 15685, "is_delete": false, "file_type": 1, "original_file_name": "DL4-23G74#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a410093d56554a11b85f6ca7f50ad696.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a410093d56554a11b85f6ca7f50ad696.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a410093d56554a11b85f6ca7f50ad696.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a410093d56554a11b85f6ca7f50ad696.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a410093d56554a11b85f6ca7f50ad696.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oN0eKggPN-uvKT7d3VToXmSCf68=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.147063+00 2025-12-09 10:15:47.14707+00 18672 CGH2345#蓝绿色 SPMX-20240815313888 \N \N \N 1 \N [{"file_id": "6a6ee46f-e45f-41eb-a4c6-bb35abd6e8a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d644cc7880774667a0c2309f76d2b8ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d644cc7880774667a0c2309f76d2b8ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d644cc7880774667a0c2309f76d2b8ed.jpg", "file_size": 11796, "is_delete": false, "file_type": 1, "original_file_name": "CGH2345#蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d644cc7880774667a0c2309f76d2b8ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d644cc7880774667a0c2309f76d2b8ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d644cc7880774667a0c2309f76d2b8ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d644cc7880774667a0c2309f76d2b8ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d644cc7880774667a0c2309f76d2b8ed.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DoIg16lowO4l_fEkj9KVIrfk1xU=", "createTime": "2024-08-15 15:05:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.150085+00 2025-12-09 10:15:47.150091+00 18673 FX0003-61#天蓝 SPMX-20240815313894 \N \N \N 1 \N [{"file_id": "7254d57a-2a95-47f2-9238-f6f67163581f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcfcd6acb9624eb08569961a9a8abf3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcfcd6acb9624eb08569961a9a8abf3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcfcd6acb9624eb08569961a9a8abf3d.jpg", "file_size": 55806, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcfcd6acb9624eb08569961a9a8abf3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcfcd6acb9624eb08569961a9a8abf3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcfcd6acb9624eb08569961a9a8abf3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcfcd6acb9624eb08569961a9a8abf3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcfcd6acb9624eb08569961a9a8abf3d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4HfLHvzzt25qGxHUXQFAF2-4bM=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.153092+00 2025-12-09 10:15:47.153099+00 18674 2328-1#热带叶子L码 SPMX-20240815313897 \N \N \N 1 \N [{"file_id": "0a5c39d6-eb92-4008-8ff3-dfa6b0c2315e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30633f45c0cd40bea2af9c0a9a11878b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30633f45c0cd40bea2af9c0a9a11878b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30633f45c0cd40bea2af9c0a9a11878b.jpg", "file_size": 15741, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#热带叶子L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30633f45c0cd40bea2af9c0a9a11878b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30633f45c0cd40bea2af9c0a9a11878b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30633f45c0cd40bea2af9c0a9a11878b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30633f45c0cd40bea2af9c0a9a11878b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30633f45c0cd40bea2af9c0a9a11878b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:taYhmM2ANRZJkbK43aZuCgce6SU=", "createTime": "2024-08-15 15:05:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.156135+00 2025-12-09 10:15:47.156141+00 18675 0012-13FWF#V5曲线 SPMX-20240815313905 \N \N \N 1 \N [{"file_id": "5f597ba6-975d-4f0c-adfa-9c5b7f34d476", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb329eeb5e8a4059858b83dec4a1fcb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb329eeb5e8a4059858b83dec4a1fcb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb329eeb5e8a4059858b83dec4a1fcb1.jpg", "file_size": 19807, "is_delete": false, "file_type": 1, "original_file_name": "0012-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb329eeb5e8a4059858b83dec4a1fcb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb329eeb5e8a4059858b83dec4a1fcb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb329eeb5e8a4059858b83dec4a1fcb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb329eeb5e8a4059858b83dec4a1fcb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb329eeb5e8a4059858b83dec4a1fcb1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bVJortkC6M-ZuTqXmjgClOHayM=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.159045+00 2025-12-09 10:15:47.159051+00 18676 8641#M SPMX-20240815313902 \N \N \N 1 \N [{"file_id": "7b5af5a7-471d-4e1a-833b-092eadda3a63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc46f8189c69453bb2d6a8cac92aae3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc46f8189c69453bb2d6a8cac92aae3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc46f8189c69453bb2d6a8cac92aae3c.jpg", "file_size": 14368, "is_delete": false, "file_type": 1, "original_file_name": "8641#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc46f8189c69453bb2d6a8cac92aae3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc46f8189c69453bb2d6a8cac92aae3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc46f8189c69453bb2d6a8cac92aae3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc46f8189c69453bb2d6a8cac92aae3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc46f8189c69453bb2d6a8cac92aae3c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UTDCsR3IlomF17TB1lWxHcgflNk=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.162039+00 2025-12-09 10:15:47.162046+00 18677 DL4-23G74#蓝绿 SPMX-20240815313907 \N \N \N 1 \N [{"file_id": "57f38ced-4a60-408f-aa37-ed62f755017d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cb9a861b1794794bd3a51754efe870f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cb9a861b1794794bd3a51754efe870f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cb9a861b1794794bd3a51754efe870f.jpg", "file_size": 15976, "is_delete": false, "file_type": 1, "original_file_name": "DL4-23G74#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb9a861b1794794bd3a51754efe870f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb9a861b1794794bd3a51754efe870f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cb9a861b1794794bd3a51754efe870f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cb9a861b1794794bd3a51754efe870f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cb9a861b1794794bd3a51754efe870f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cxkYOpgC6ofly1iphz8VAz4f5uI=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.165008+00 2025-12-09 10:15:47.165015+00 18678 CGH2346#枣红 SPMX-20240815313908 \N \N \N 1 \N [{"file_id": "2b5b8422-4280-45b9-9b22-bc4aa712ed09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e548d9bccfc463fb9d7e4194dfa5d12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e548d9bccfc463fb9d7e4194dfa5d12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e548d9bccfc463fb9d7e4194dfa5d12.jpg", "file_size": 17662, "is_delete": false, "file_type": 1, "original_file_name": "CGH2346#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e548d9bccfc463fb9d7e4194dfa5d12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e548d9bccfc463fb9d7e4194dfa5d12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e548d9bccfc463fb9d7e4194dfa5d12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e548d9bccfc463fb9d7e4194dfa5d12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e548d9bccfc463fb9d7e4194dfa5d12.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bUjLm8VtrI21JiVepvOlg4c2Fs=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.16815+00 2025-12-09 10:15:47.168157+00 18679 FX0003-61#白色 SPMX-20240815313906 \N \N \N 1 \N [{"file_id": "6e3b6efa-41a1-4db7-8f5b-8a9250553491", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab45e701280d41f5bd1515c3c80c1083.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab45e701280d41f5bd1515c3c80c1083.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab45e701280d41f5bd1515c3c80c1083.jpg", "file_size": 54273, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab45e701280d41f5bd1515c3c80c1083.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab45e701280d41f5bd1515c3c80c1083.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab45e701280d41f5bd1515c3c80c1083.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab45e701280d41f5bd1515c3c80c1083.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab45e701280d41f5bd1515c3c80c1083.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-lAbJPeEB7irfLxsj_O0sJXGp0=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.171181+00 2025-12-09 10:15:47.171188+00 18680 LJH2019#卡其 SPMX-20240815313903 \N \N \N 1 \N [{"file_id": "822c337d-5750-4e16-a84f-b990055e5b9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5efa23795714aa1803304c9711a5420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5efa23795714aa1803304c9711a5420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5efa23795714aa1803304c9711a5420.jpg", "file_size": 58423, "is_delete": false, "file_type": 1, "original_file_name": "LJH2019#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5efa23795714aa1803304c9711a5420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5efa23795714aa1803304c9711a5420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5efa23795714aa1803304c9711a5420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5efa23795714aa1803304c9711a5420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5efa23795714aa1803304c9711a5420.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d-OO8X0qOixcGWsz_FCX4oPoxvg=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.174126+00 2025-12-09 10:15:47.174132+00 18681 1231-40FWF#小童6码 SPMX-20240815313904 \N \N \N 1 \N [{"file_id": "4ab1e308-088e-427e-a35d-11a850a6655a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ed2ec3450724dca85945b9997a314bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ed2ec3450724dca85945b9997a314bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ed2ec3450724dca85945b9997a314bb.jpg", "file_size": 20631, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed2ec3450724dca85945b9997a314bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed2ec3450724dca85945b9997a314bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed2ec3450724dca85945b9997a314bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ed2ec3450724dca85945b9997a314bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ed2ec3450724dca85945b9997a314bb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LQsXrYJVBYZBxAVwn9fk-C4xIes=", "createTime": "2024-08-15 15:05:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.177261+00 2025-12-09 10:15:47.177267+00 18682 8641#S SPMX-20240815313914 \N \N \N 1 \N [{"file_id": "85e3cc2f-2e6a-4d20-9be3-e20d5cb56363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "109adf78bf3342e98daa5196a5762744.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "109adf78bf3342e98daa5196a5762744.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "109adf78bf3342e98daa5196a5762744.jpg", "file_size": 14174, "is_delete": false, "file_type": 1, "original_file_name": "8641#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109adf78bf3342e98daa5196a5762744.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109adf78bf3342e98daa5196a5762744.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109adf78bf3342e98daa5196a5762744.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/109adf78bf3342e98daa5196a5762744.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/109adf78bf3342e98daa5196a5762744.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tPkyU4XavfZ3-qmv_zd2ON-EGKw=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.180281+00 2025-12-09 10:15:47.180288+00 18683 1231-40FWF#小童8码+4码 SPMX-20240815313913 \N \N \N 1 \N [{"file_id": "4f02c076-f9f4-4fca-bcda-ed19ba6713fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c58686cb58bb48fb86316967bc4dc6a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c58686cb58bb48fb86316967bc4dc6a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c58686cb58bb48fb86316967bc4dc6a0.jpg", "file_size": 20666, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58686cb58bb48fb86316967bc4dc6a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58686cb58bb48fb86316967bc4dc6a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c58686cb58bb48fb86316967bc4dc6a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c58686cb58bb48fb86316967bc4dc6a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c58686cb58bb48fb86316967bc4dc6a0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFX-d5hwH25lVNdvkY5V19nQ6v8=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.18329+00 2025-12-09 10:15:47.183296+00 18684 CGH2346#蓝色 SPMX-20240815313918 \N \N \N 1 \N [{"file_id": "1c63f4f8-661a-4610-8a4b-90b3e57c6e07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aa8a8229cab4410ac21260da2d55ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aa8a8229cab4410ac21260da2d55ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aa8a8229cab4410ac21260da2d55ad1.jpg", "file_size": 13861, "is_delete": false, "file_type": 1, "original_file_name": "CGH2346#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa8a8229cab4410ac21260da2d55ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa8a8229cab4410ac21260da2d55ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aa8a8229cab4410ac21260da2d55ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aa8a8229cab4410ac21260da2d55ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aa8a8229cab4410ac21260da2d55ad1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NA8iRY1IrKZEVC9pzcEOJWezK1M=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.18627+00 2025-12-09 10:15:47.186277+00 18685 JX0005A#WJC22 SPMX-20240815313920 \N \N \N 1 \N [{"file_id": "20974362-a7c6-44c5-9b10-d2c5060474a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33219bf0c33f4baa9c4674c4d86429e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33219bf0c33f4baa9c4674c4d86429e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33219bf0c33f4baa9c4674c4d86429e8.jpg", "file_size": 20111, "is_delete": false, "file_type": 1, "original_file_name": "JX0005A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33219bf0c33f4baa9c4674c4d86429e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33219bf0c33f4baa9c4674c4d86429e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33219bf0c33f4baa9c4674c4d86429e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33219bf0c33f4baa9c4674c4d86429e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33219bf0c33f4baa9c4674c4d86429e8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cm_ScL8Q4VS71Iujgh7fK8y0vkA=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.189337+00 2025-12-09 10:15:47.189344+00 18686 1231-40FWF#小童袖领匹布 SPMX-20240815313923 \N \N \N 1 \N [{"file_id": "79450666-f2c7-4825-9ed9-7c5e28adb98a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "775b7e195dff4483a7bd7e6a73fb98cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "775b7e195dff4483a7bd7e6a73fb98cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "775b7e195dff4483a7bd7e6a73fb98cf.jpg", "file_size": 9485, "is_delete": false, "file_type": 1, "original_file_name": "1231-40FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b7e195dff4483a7bd7e6a73fb98cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b7e195dff4483a7bd7e6a73fb98cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/775b7e195dff4483a7bd7e6a73fb98cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/775b7e195dff4483a7bd7e6a73fb98cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/775b7e195dff4483a7bd7e6a73fb98cf.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrUIb2XIve44P1mU8RXdBvlNOKc=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.192342+00 2025-12-09 10:15:47.192349+00 18687 2328-1#蓝色扎染L码 SPMX-20240815313919 \N \N \N 1 \N [{"file_id": "990b0435-8ecd-4d8e-b11d-5fe6e058d17e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ad86a5781834a9a8f462a94b024fef9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ad86a5781834a9a8f462a94b024fef9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ad86a5781834a9a8f462a94b024fef9.jpg", "file_size": 15049, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#蓝色扎染L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad86a5781834a9a8f462a94b024fef9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad86a5781834a9a8f462a94b024fef9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ad86a5781834a9a8f462a94b024fef9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ad86a5781834a9a8f462a94b024fef9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ad86a5781834a9a8f462a94b024fef9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4XSGcCvuLVkD3hvJ8V9rKE1Mb3g=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.195352+00 2025-12-09 10:15:47.195358+00 18688 DL4-23G74#黄色 SPMX-20240815313921 \N \N \N 1 \N [{"file_id": "58ea54f3-7344-4f15-983c-b7c114dbf953", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "316c75896ae64625abcb8c0cc610a22d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "316c75896ae64625abcb8c0cc610a22d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "316c75896ae64625abcb8c0cc610a22d.jpg", "file_size": 15903, "is_delete": false, "file_type": 1, "original_file_name": "DL4-23G74#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316c75896ae64625abcb8c0cc610a22d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316c75896ae64625abcb8c0cc610a22d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/316c75896ae64625abcb8c0cc610a22d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/316c75896ae64625abcb8c0cc610a22d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/316c75896ae64625abcb8c0cc610a22d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DyvKK_CJH-9Vm_yt_lYWFKl6wJw=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.198351+00 2025-12-09 10:15:47.198358+00 18689 JX0004G#WJC22 SPMX-20240815313910 \N \N \N 1 \N [{"file_id": "090b9e90-cda7-4189-aa0a-222e04dee02e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1118b6a512d44271aaeb2afdc639e783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1118b6a512d44271aaeb2afdc639e783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1118b6a512d44271aaeb2afdc639e783.jpg", "file_size": 18600, "is_delete": false, "file_type": 1, "original_file_name": "JX0004G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1118b6a512d44271aaeb2afdc639e783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1118b6a512d44271aaeb2afdc639e783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1118b6a512d44271aaeb2afdc639e783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1118b6a512d44271aaeb2afdc639e783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1118b6a512d44271aaeb2afdc639e783.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YuOjpPwll1pyGm0P2SQlGvnDq8M=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.20137+00 2025-12-09 10:15:47.201377+00 18690 LZ138FWF#短袖3号色 SPMX-20240815313912 \N \N \N 1 \N [{"file_id": "90bf1241-5f13-4002-9d5e-98674d9a9e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63bd48d0e48242beb970fad0eb56b785.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63bd48d0e48242beb970fad0eb56b785.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63bd48d0e48242beb970fad0eb56b785.jpg", "file_size": 17114, "is_delete": false, "file_type": 1, "original_file_name": "LZ138FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bd48d0e48242beb970fad0eb56b785.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bd48d0e48242beb970fad0eb56b785.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63bd48d0e48242beb970fad0eb56b785.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63bd48d0e48242beb970fad0eb56b785.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63bd48d0e48242beb970fad0eb56b785.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DSfJu1YmtT0E3lAFvP-XsPKxoug=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.204331+00 2025-12-09 10:15:47.204338+00 18691 LJH2019#白色 SPMX-20240815313915 \N \N \N 1 \N [{"file_id": "bc892b42-7a06-4728-a358-8c63c68023f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb6e7a22b564404ebe42db0c64348f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb6e7a22b564404ebe42db0c64348f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb6e7a22b564404ebe42db0c64348f42.jpg", "file_size": 65340, "is_delete": false, "file_type": 1, "original_file_name": "LJH2019#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6e7a22b564404ebe42db0c64348f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6e7a22b564404ebe42db0c64348f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6e7a22b564404ebe42db0c64348f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb6e7a22b564404ebe42db0c64348f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb6e7a22b564404ebe42db0c64348f42.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5gjY_b1PKLywSb7Qg_8S6d1ey8=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.207388+00 2025-12-09 10:15:47.207394+00 18692 2328-1#蓝色扎染-领子匹布 SPMX-20240815313909 \N \N \N 1 \N [{"file_id": "1d757b9e-0bcb-4e38-9623-4a6d38396313", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdf4cf7fed814780a1c022b5aca47356.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdf4cf7fed814780a1c022b5aca47356.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdf4cf7fed814780a1c022b5aca47356.jpg", "file_size": 8143, "is_delete": false, "file_type": 1, "original_file_name": "2328-1#蓝色扎染-领子匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf4cf7fed814780a1c022b5aca47356.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf4cf7fed814780a1c022b5aca47356.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdf4cf7fed814780a1c022b5aca47356.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdf4cf7fed814780a1c022b5aca47356.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdf4cf7fed814780a1c022b5aca47356.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QiB8_194Qb3qvdw-eiWMKAifjE=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.210428+00 2025-12-09 10:15:47.210435+00 18693 HXF-TB020#白底领通用码 SPMX-20240815313911 \N \N \N 1 \N [{"file_id": "1d750b81-52f3-42e5-b167-8392e23f3e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9addbc617b9493383fdc7ca4e05f534.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9addbc617b9493383fdc7ca4e05f534.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9addbc617b9493383fdc7ca4e05f534.jpg", "file_size": 19273, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB020#白底领通用码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9addbc617b9493383fdc7ca4e05f534.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9addbc617b9493383fdc7ca4e05f534.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9addbc617b9493383fdc7ca4e05f534.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9addbc617b9493383fdc7ca4e05f534.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9addbc617b9493383fdc7ca4e05f534.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gq0vVOoXG6evHoBLq2zu64_mHGA=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.213442+00 2025-12-09 10:15:47.213448+00 18694 FX0003-61#粉色 SPMX-20240815313916 \N \N \N 1 \N [{"file_id": "631a200c-5622-490b-84c4-80bd840da235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79ba7d57600a4f628ddc6b86ba942904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79ba7d57600a4f628ddc6b86ba942904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79ba7d57600a4f628ddc6b86ba942904.jpg", "file_size": 53791, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba7d57600a4f628ddc6b86ba942904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba7d57600a4f628ddc6b86ba942904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ba7d57600a4f628ddc6b86ba942904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79ba7d57600a4f628ddc6b86ba942904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79ba7d57600a4f628ddc6b86ba942904.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yOX8qtU_-fX9-PeteYIdWsaFABk=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.216416+00 2025-12-09 10:15:47.216421+00 18695 0012-14FWE#VS-D3 SPMX-20240815313917 \N \N \N 1 \N [{"file_id": "18dbac03-25e0-4ce3-8188-cd56d2eb2964", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c416e911b9f8441ca19e797a5fc2dcc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c416e911b9f8441ca19e797a5fc2dcc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c416e911b9f8441ca19e797a5fc2dcc7.jpg", "file_size": 14241, "is_delete": false, "file_type": 1, "original_file_name": "0012-14FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c416e911b9f8441ca19e797a5fc2dcc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c416e911b9f8441ca19e797a5fc2dcc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c416e911b9f8441ca19e797a5fc2dcc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c416e911b9f8441ca19e797a5fc2dcc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c416e911b9f8441ca19e797a5fc2dcc7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AMh9VRVa4REgu-weMK5A4Tr8J88=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.219423+00 2025-12-09 10:15:47.219429+00 18696 HXF-TB022#2XL码 SPMX-20240815313922 \N \N \N 1 \N [{"file_id": "a3ac054f-fb5b-4113-ae19-5cd5a8729c96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04c69e5876bf401b8c28bd184a903e44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04c69e5876bf401b8c28bd184a903e44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04c69e5876bf401b8c28bd184a903e44.jpg", "file_size": 18431, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB022#2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c69e5876bf401b8c28bd184a903e44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c69e5876bf401b8c28bd184a903e44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c69e5876bf401b8c28bd184a903e44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04c69e5876bf401b8c28bd184a903e44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04c69e5876bf401b8c28bd184a903e44.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4qlPE01OadNKGJNbqtzKBySisvA=", "createTime": "2024-08-15 15:05:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.222412+00 2025-12-09 10:15:47.222418+00 18697 LJH2019#粉色 SPMX-20240815313925 \N \N \N 1 \N [{"file_id": "c5187e99-31c4-44ce-aca1-26154fd63c8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61598e3058c74348a2b5c10655e1a8c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61598e3058c74348a2b5c10655e1a8c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61598e3058c74348a2b5c10655e1a8c8.jpg", "file_size": 66131, "is_delete": false, "file_type": 1, "original_file_name": "LJH2019#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61598e3058c74348a2b5c10655e1a8c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61598e3058c74348a2b5c10655e1a8c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61598e3058c74348a2b5c10655e1a8c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61598e3058c74348a2b5c10655e1a8c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61598e3058c74348a2b5c10655e1a8c8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BBCm7a1zlFUnKopL3bHH19wGiPo=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.225373+00 2025-12-09 10:15:47.225379+00 18698 8641#XL SPMX-20240815313924 \N \N \N 1 \N [{"file_id": "44d9b00a-ddab-42c8-a347-937a0a226e94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e17af45cb06649519b373559e5514d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e17af45cb06649519b373559e5514d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e17af45cb06649519b373559e5514d0e.jpg", "file_size": 14649, "is_delete": false, "file_type": 1, "original_file_name": "8641#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17af45cb06649519b373559e5514d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17af45cb06649519b373559e5514d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e17af45cb06649519b373559e5514d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e17af45cb06649519b373559e5514d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e17af45cb06649519b373559e5514d0e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_gDOfEQWUcwWnxLlfO7UwmXVtkw=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.228349+00 2025-12-09 10:15:47.228355+00 18699 23287FWF#V5曲线 SPMX-20240815313928 \N \N \N 1 \N [{"file_id": "d402c36d-a7e0-432b-b1cc-c02e2965802c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98da956bdc8247cdbd84d82024f2bed0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98da956bdc8247cdbd84d82024f2bed0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98da956bdc8247cdbd84d82024f2bed0.jpg", "file_size": 19315, "is_delete": false, "file_type": 1, "original_file_name": "23287FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da956bdc8247cdbd84d82024f2bed0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da956bdc8247cdbd84d82024f2bed0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98da956bdc8247cdbd84d82024f2bed0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98da956bdc8247cdbd84d82024f2bed0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98da956bdc8247cdbd84d82024f2bed0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAqSyTvIv93rm2rGwf0DAlCg7h0=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.231256+00 2025-12-09 10:15:47.231262+00 18700 0012-14FWF#V5曲线 SPMX-20240815313927 \N \N \N 1 \N [{"file_id": "d482cea8-ae98-4751-b2d0-f12fe353af9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e1852d7359e48f3a30b6e39439ee8bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e1852d7359e48f3a30b6e39439ee8bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e1852d7359e48f3a30b6e39439ee8bd.jpg", "file_size": 24662, "is_delete": false, "file_type": 1, "original_file_name": "0012-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1852d7359e48f3a30b6e39439ee8bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1852d7359e48f3a30b6e39439ee8bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1852d7359e48f3a30b6e39439ee8bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e1852d7359e48f3a30b6e39439ee8bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e1852d7359e48f3a30b6e39439ee8bd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wpHdu4u8cHHgxyyEbtSnB61bh3I=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.234365+00 2025-12-09 10:15:47.234372+00 18701 LZ138FWF#短袖4号色 SPMX-20240815313926 \N \N \N 1 \N [{"file_id": "c0973d21-ea76-4bff-b415-7b4c1b169271", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e63a081a30064ec5b73ee13640a8e855.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e63a081a30064ec5b73ee13640a8e855.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e63a081a30064ec5b73ee13640a8e855.jpg", "file_size": 18111, "is_delete": false, "file_type": 1, "original_file_name": "LZ138FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63a081a30064ec5b73ee13640a8e855.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63a081a30064ec5b73ee13640a8e855.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e63a081a30064ec5b73ee13640a8e855.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e63a081a30064ec5b73ee13640a8e855.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e63a081a30064ec5b73ee13640a8e855.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cH05PfoG08zUOO1jYrIqsM2qxw=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.237437+00 2025-12-09 10:15:47.237443+00 18702 CGH2346#藏青 SPMX-20240815313931 \N \N \N 1 \N [{"file_id": "e7a8bc46-c514-4391-af19-8ead0f9e2a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f369e08569d445cbe9c9e6c1d7057a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f369e08569d445cbe9c9e6c1d7057a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f369e08569d445cbe9c9e6c1d7057a6.jpg", "file_size": 18200, "is_delete": false, "file_type": 1, "original_file_name": "CGH2346#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f369e08569d445cbe9c9e6c1d7057a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f369e08569d445cbe9c9e6c1d7057a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f369e08569d445cbe9c9e6c1d7057a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f369e08569d445cbe9c9e6c1d7057a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f369e08569d445cbe9c9e6c1d7057a6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2iSPi5BmWT5V6B_nn7eSmPu2Ym0=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.240507+00 2025-12-09 10:15:47.240513+00 18703 DL807#下摆批布4#彩兰 SPMX-20240815313937 \N \N \N 1 \N [{"file_id": "663b482b-1dd7-4328-91f4-7fbb772cc0dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86a0e44b11db4103b9658cfa8edf3896.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86a0e44b11db4103b9658cfa8edf3896.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86a0e44b11db4103b9658cfa8edf3896.jpg", "file_size": 21643, "is_delete": false, "file_type": 1, "original_file_name": "DL807#下摆批布4#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a0e44b11db4103b9658cfa8edf3896.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a0e44b11db4103b9658cfa8edf3896.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86a0e44b11db4103b9658cfa8edf3896.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86a0e44b11db4103b9658cfa8edf3896.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86a0e44b11db4103b9658cfa8edf3896.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjSAuDeQXp3a6mNMTwideu19VtE=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.243566+00 2025-12-09 10:15:47.243572+00 18704 1231-41FWF#中童12码+10码 SPMX-20240815313933 \N \N \N 1 \N [{"file_id": "42dd6afd-13ab-452c-8365-b1d098284ca8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca01e77e58a743a59b5eb6680e607616.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca01e77e58a743a59b5eb6680e607616.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca01e77e58a743a59b5eb6680e607616.jpg", "file_size": 19853, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca01e77e58a743a59b5eb6680e607616.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca01e77e58a743a59b5eb6680e607616.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca01e77e58a743a59b5eb6680e607616.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca01e77e58a743a59b5eb6680e607616.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca01e77e58a743a59b5eb6680e607616.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vx7OYgqN_oMpa6xKNNqNZYYAZ24=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.246607+00 2025-12-09 10:15:47.246615+00 18705 HXF-TB022#L码 SPMX-20240815313930 \N \N \N 1 \N [{"file_id": "50fd1dee-9099-461a-8bd1-0fd912bdd9cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f1f174f5de84148bd6e2ead098bffa2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f1f174f5de84148bd6e2ead098bffa2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f1f174f5de84148bd6e2ead098bffa2.jpg", "file_size": 19381, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB022#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1f174f5de84148bd6e2ead098bffa2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1f174f5de84148bd6e2ead098bffa2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1f174f5de84148bd6e2ead098bffa2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f1f174f5de84148bd6e2ead098bffa2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f1f174f5de84148bd6e2ead098bffa2.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ya8PhzJE-PMk5U0xY2S-isOxTw=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.249613+00 2025-12-09 10:15:47.249618+00 18706 LJH2019#绿色 SPMX-20240815313936 \N \N \N 1 \N [{"file_id": "4c297696-9d2a-4600-a0d7-297861287304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6233d1455b01454e81d1e7603a3457e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6233d1455b01454e81d1e7603a3457e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6233d1455b01454e81d1e7603a3457e5.jpg", "file_size": 73753, "is_delete": false, "file_type": 1, "original_file_name": "LJH2019#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6233d1455b01454e81d1e7603a3457e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6233d1455b01454e81d1e7603a3457e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6233d1455b01454e81d1e7603a3457e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6233d1455b01454e81d1e7603a3457e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6233d1455b01454e81d1e7603a3457e5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cJY56eIU44LHWrRD8WIFEcn8URg=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.25265+00 2025-12-09 10:15:47.252656+00 18707 0012-15FWE#VS-D3 SPMX-20240815313935 \N \N \N 1 \N [{"file_id": "d981e47e-f7e2-455c-a505-b48ae57842ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "131f1036b0104dfcb4cd41ed4d9b3bc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "131f1036b0104dfcb4cd41ed4d9b3bc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "131f1036b0104dfcb4cd41ed4d9b3bc9.jpg", "file_size": 11331, "is_delete": false, "file_type": 1, "original_file_name": "0012-15FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131f1036b0104dfcb4cd41ed4d9b3bc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131f1036b0104dfcb4cd41ed4d9b3bc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131f1036b0104dfcb4cd41ed4d9b3bc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/131f1036b0104dfcb4cd41ed4d9b3bc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/131f1036b0104dfcb4cd41ed4d9b3bc9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBr0N84CkLFN7iEOX6VLh_tfBL4=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.255625+00 2025-12-09 10:15:47.255631+00 18708 8641#牛奶丝 SPMX-20240815313934 \N \N \N 1 \N [{"file_id": "93c6bd1c-c42c-4df4-b466-1690619cd131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "411a9151f9bb44968ff09d42d355e84c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "411a9151f9bb44968ff09d42d355e84c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "411a9151f9bb44968ff09d42d355e84c.jpg", "file_size": 20538, "is_delete": false, "file_type": 1, "original_file_name": "8641#牛奶丝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411a9151f9bb44968ff09d42d355e84c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411a9151f9bb44968ff09d42d355e84c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411a9151f9bb44968ff09d42d355e84c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/411a9151f9bb44968ff09d42d355e84c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/411a9151f9bb44968ff09d42d355e84c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:91OUY3Kn-UOyx0wX8fqZCiHUI98=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.258639+00 2025-12-09 10:15:47.258644+00 18709 LZ138FWF#短袖5号色 SPMX-20240815313938 \N \N \N 1 \N [{"file_id": "bd373a72-f125-4425-b8ec-ec986a61bab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e0b4ff9853b4010b44b9be2303d1c5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e0b4ff9853b4010b44b9be2303d1c5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e0b4ff9853b4010b44b9be2303d1c5e.jpg", "file_size": 18271, "is_delete": false, "file_type": 1, "original_file_name": "LZ138FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e0b4ff9853b4010b44b9be2303d1c5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e0b4ff9853b4010b44b9be2303d1c5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e0b4ff9853b4010b44b9be2303d1c5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e0b4ff9853b4010b44b9be2303d1c5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e0b4ff9853b4010b44b9be2303d1c5e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYq2_ldbezOnc0TXN47TYQ50v7s=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.261661+00 2025-12-09 10:15:47.261667+00 18710 DL807#下摆批布11#大红 SPMX-20240815313929 \N \N \N 1 \N [{"file_id": "e77f7737-1b9e-454b-98b0-9d7353d9ba1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fa7fed42b06479fa186ecc09d02cc52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fa7fed42b06479fa186ecc09d02cc52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fa7fed42b06479fa186ecc09d02cc52.jpg", "file_size": 21112, "is_delete": false, "file_type": 1, "original_file_name": "DL807#下摆批布11#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa7fed42b06479fa186ecc09d02cc52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa7fed42b06479fa186ecc09d02cc52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fa7fed42b06479fa186ecc09d02cc52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fa7fed42b06479fa186ecc09d02cc52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fa7fed42b06479fa186ecc09d02cc52.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eE5cLeR86UK9iKfecwA814-XXo0=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.264665+00 2025-12-09 10:15:47.264671+00 18711 FX0003-61#黑色 SPMX-20240815313932 \N \N \N 1 \N [{"file_id": "f47b6508-2bca-4273-87ce-2460d7ab711d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a11dfdb10c6d465885bb1ea6cadf79a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a11dfdb10c6d465885bb1ea6cadf79a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a11dfdb10c6d465885bb1ea6cadf79a0.jpg", "file_size": 52293, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-61#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11dfdb10c6d465885bb1ea6cadf79a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11dfdb10c6d465885bb1ea6cadf79a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a11dfdb10c6d465885bb1ea6cadf79a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a11dfdb10c6d465885bb1ea6cadf79a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a11dfdb10c6d465885bb1ea6cadf79a0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trA4URxfBrrNra2p0BY0dASDzf4=", "createTime": "2024-08-15 15:05:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.2677+00 2025-12-09 10:15:47.26771+00 18712 FX0003-62#RC23 SPMX-20240815313942 \N \N \N 1 \N [{"file_id": "c8109c6e-e7fd-4175-9af5-a0b4ce4ac9a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81a25f9490a24b78a6d8b875dad67c8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81a25f9490a24b78a6d8b875dad67c8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81a25f9490a24b78a6d8b875dad67c8f.jpg", "file_size": 30946, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-62#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a25f9490a24b78a6d8b875dad67c8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a25f9490a24b78a6d8b875dad67c8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a25f9490a24b78a6d8b875dad67c8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81a25f9490a24b78a6d8b875dad67c8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81a25f9490a24b78a6d8b875dad67c8f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pr-aGNfZhhCFZPVViiViJ6zMeNE=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.270724+00 2025-12-09 10:15:47.27073+00 18713 1231-41FWF#中童14码 SPMX-20240815313943 \N \N \N 1 \N [{"file_id": "0c4f61d3-64c3-4ed1-a65d-74e8265461d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5970a143bce45d397be3def81a16561.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5970a143bce45d397be3def81a16561.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5970a143bce45d397be3def81a16561.jpg", "file_size": 17615, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5970a143bce45d397be3def81a16561.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5970a143bce45d397be3def81a16561.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5970a143bce45d397be3def81a16561.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5970a143bce45d397be3def81a16561.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5970a143bce45d397be3def81a16561.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fBdiOaHCHxAqFnwJXaMaUT8qO3c=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.273737+00 2025-12-09 10:15:47.273744+00 18714 JX0005G#WJC22 SPMX-20240815313944 \N \N \N 1 \N [{"file_id": "59c4b5db-71d1-49bc-90a0-a62a2ef4f34f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eab0caa62594bc0a86646f2deba4d00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eab0caa62594bc0a86646f2deba4d00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eab0caa62594bc0a86646f2deba4d00.jpg", "file_size": 16118, "is_delete": false, "file_type": 1, "original_file_name": "JX0005G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eab0caa62594bc0a86646f2deba4d00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eab0caa62594bc0a86646f2deba4d00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eab0caa62594bc0a86646f2deba4d00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eab0caa62594bc0a86646f2deba4d00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eab0caa62594bc0a86646f2deba4d00.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUrxLh92Ddtt6l-7FM6nQ2gyX6A=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.276811+00 2025-12-09 10:15:47.276817+00 18715 0012-15FWF#V5曲线 SPMX-20240815313946 \N \N \N 1 \N [{"file_id": "b873f2d3-9287-4d1f-84e0-3741936a2790", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c39de4aae6a4f07a5a08dce2abb179b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c39de4aae6a4f07a5a08dce2abb179b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c39de4aae6a4f07a5a08dce2abb179b.jpg", "file_size": 13780, "is_delete": false, "file_type": 1, "original_file_name": "0012-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39de4aae6a4f07a5a08dce2abb179b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39de4aae6a4f07a5a08dce2abb179b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39de4aae6a4f07a5a08dce2abb179b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c39de4aae6a4f07a5a08dce2abb179b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c39de4aae6a4f07a5a08dce2abb179b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nBW5KRFSD0jPWsPfJajTP7eEH2Y=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.279891+00 2025-12-09 10:15:47.279897+00 18716 HXF-TB022#XL码 SPMX-20240815313950 \N \N \N 1 \N [{"file_id": "946ce143-b0b7-471b-848d-bcab6603c6f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg", "file_size": 19365, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB022#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2be28b7da5dc4ae7b9b79ffd4a9dee4f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6xfhms3u1DgmgyQsFyd1fOe8LJ0=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.282931+00 2025-12-09 10:15:47.282938+00 18717 LJH2019#黄色 SPMX-20240815313948 \N \N \N 1 \N [{"file_id": "03508004-7c0b-4679-8a7d-037fec994046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9af768f4cf544e84846a4037b3dbbca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9af768f4cf544e84846a4037b3dbbca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9af768f4cf544e84846a4037b3dbbca9.jpg", "file_size": 77186, "is_delete": false, "file_type": 1, "original_file_name": "LJH2019#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af768f4cf544e84846a4037b3dbbca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af768f4cf544e84846a4037b3dbbca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af768f4cf544e84846a4037b3dbbca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9af768f4cf544e84846a4037b3dbbca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9af768f4cf544e84846a4037b3dbbca9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X_vpElYAms3_b8A3Q__mBuU_5Fo=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.285971+00 2025-12-09 10:15:47.285978+00 18718 HXF-TB022#M码 SPMX-20240815313940 \N \N \N 1 \N [{"file_id": "efe3407d-7082-454b-9a3e-4947468b5cf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12ba893f872a4c1c8460d2d197b1b4b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12ba893f872a4c1c8460d2d197b1b4b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12ba893f872a4c1c8460d2d197b1b4b5.jpg", "file_size": 19582, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB022#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ba893f872a4c1c8460d2d197b1b4b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ba893f872a4c1c8460d2d197b1b4b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12ba893f872a4c1c8460d2d197b1b4b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12ba893f872a4c1c8460d2d197b1b4b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12ba893f872a4c1c8460d2d197b1b4b5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZhGZAcv9ylziizs7KwfU1ACM1Y=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.288963+00 2025-12-09 10:15:47.288969+00 18719 CGH2346#黄色 SPMX-20240815313941 \N \N \N 1 \N [{"file_id": "d4a0b417-0796-4985-a673-3b3a3d8f5845", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67c00b48e88842b59562583b8fbc7df8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67c00b48e88842b59562583b8fbc7df8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67c00b48e88842b59562583b8fbc7df8.jpg", "file_size": 11610, "is_delete": false, "file_type": 1, "original_file_name": "CGH2346#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67c00b48e88842b59562583b8fbc7df8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67c00b48e88842b59562583b8fbc7df8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67c00b48e88842b59562583b8fbc7df8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67c00b48e88842b59562583b8fbc7df8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67c00b48e88842b59562583b8fbc7df8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u5oIITkISIn2dVan1Nq2SaqS8Bg=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.291975+00 2025-12-09 10:15:47.291981+00 18720 2328FWE#宝蓝 SPMX-20240815313949 \N \N \N 1 \N [{"file_id": "9d842f4c-a0c7-436f-8ce8-1d67db8df5cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "180f300632fd425191b347df372eed56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "180f300632fd425191b347df372eed56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "180f300632fd425191b347df372eed56.jpg", "file_size": 20932, "is_delete": false, "file_type": 1, "original_file_name": "2328FWE#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180f300632fd425191b347df372eed56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180f300632fd425191b347df372eed56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/180f300632fd425191b347df372eed56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/180f300632fd425191b347df372eed56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/180f300632fd425191b347df372eed56.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:axCHe0NK6xBpuAzjE1tMVhoe444=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.294952+00 2025-12-09 10:15:47.294959+00 18721 8641#雪纺皱 SPMX-20240815313945 \N \N \N 1 \N [{"file_id": "41153671-d76f-4bdd-bbfa-a962a4d8640c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55f422fb1e6a41ca92cc5499123196e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55f422fb1e6a41ca92cc5499123196e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55f422fb1e6a41ca92cc5499123196e0.jpg", "file_size": 20727, "is_delete": false, "file_type": 1, "original_file_name": "8641#雪纺皱.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f422fb1e6a41ca92cc5499123196e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f422fb1e6a41ca92cc5499123196e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55f422fb1e6a41ca92cc5499123196e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55f422fb1e6a41ca92cc5499123196e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55f422fb1e6a41ca92cc5499123196e0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKnbUzo2v6kUzKFstIMH2QgQN6E=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.297963+00 2025-12-09 10:15:47.297969+00 18722 LZ1390#上身1号色 SPMX-20240815313947 \N \N \N 1 \N [{"file_id": "b2de7871-65c1-4110-bf9a-97838fb8a114", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ef89f3493c345cc875ff175a701c5eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ef89f3493c345cc875ff175a701c5eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ef89f3493c345cc875ff175a701c5eb.jpg", "file_size": 18094, "is_delete": false, "file_type": 1, "original_file_name": "LZ1390#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef89f3493c345cc875ff175a701c5eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef89f3493c345cc875ff175a701c5eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ef89f3493c345cc875ff175a701c5eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ef89f3493c345cc875ff175a701c5eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ef89f3493c345cc875ff175a701c5eb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqa_oRS-Ls2sk-TIZduhKJQu2QU=", "createTime": "2024-08-15 15:05:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.300936+00 2025-12-09 10:15:47.300942+00 18723 2328FWE#土黄 SPMX-20240815313939 \N \N \N 1 \N [{"file_id": "1259259c-0244-4303-9db8-e5b1b2346827", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57f762b267204e95bf32a8f0f10c61c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57f762b267204e95bf32a8f0f10c61c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57f762b267204e95bf32a8f0f10c61c2.jpg", "file_size": 18638, "is_delete": false, "file_type": 1, "original_file_name": "2328FWE#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f762b267204e95bf32a8f0f10c61c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f762b267204e95bf32a8f0f10c61c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f762b267204e95bf32a8f0f10c61c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57f762b267204e95bf32a8f0f10c61c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57f762b267204e95bf32a8f0f10c61c2.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6gAOMWwDI4Ny_ZdYlnY2Qfo_-ng=", "createTime": "2024-08-15 15:05:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.303922+00 2025-12-09 10:15:47.303928+00 18724 CGH2346#黑色 SPMX-20240815313951 \N \N \N 1 \N [{"file_id": "c38429f7-efb8-4501-ac89-44a9a2db19bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b475db3882214953a945049690fb14b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b475db3882214953a945049690fb14b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b475db3882214953a945049690fb14b2.jpg", "file_size": 18953, "is_delete": false, "file_type": 1, "original_file_name": "CGH2346#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b475db3882214953a945049690fb14b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b475db3882214953a945049690fb14b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b475db3882214953a945049690fb14b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b475db3882214953a945049690fb14b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b475db3882214953a945049690fb14b2.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s2StfH7c-jv3kDiyA7GECX9bwSE=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.306939+00 2025-12-09 10:15:47.306946+00 18725 2328FWE#彩兰 SPMX-20240815313952 \N \N \N 1 \N [{"file_id": "6a75143a-c731-487f-b1eb-2fb616c6b525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44bdf42ee16d42908970f67cde088fe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44bdf42ee16d42908970f67cde088fe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44bdf42ee16d42908970f67cde088fe7.jpg", "file_size": 19319, "is_delete": false, "file_type": 1, "original_file_name": "2328FWE#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bdf42ee16d42908970f67cde088fe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bdf42ee16d42908970f67cde088fe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44bdf42ee16d42908970f67cde088fe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44bdf42ee16d42908970f67cde088fe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44bdf42ee16d42908970f67cde088fe7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NUYBhefVDagMGUjhTKtkf2XAX_A=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.309961+00 2025-12-09 10:15:47.309967+00 18726 LJH2020#上节彩兰 SPMX-20240815313959 \N \N \N 1 \N [{"file_id": "dec366c3-d2c6-496f-8546-0c7cfa1ec5b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f08349fced164e69825005dcd89d0e7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f08349fced164e69825005dcd89d0e7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f08349fced164e69825005dcd89d0e7a.jpg", "file_size": 70124, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#上节彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f08349fced164e69825005dcd89d0e7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f08349fced164e69825005dcd89d0e7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f08349fced164e69825005dcd89d0e7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f08349fced164e69825005dcd89d0e7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f08349fced164e69825005dcd89d0e7a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5yuUeoAIu6Mq2-RXMmf0XBBjtM=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.312974+00 2025-12-09 10:15:47.31298+00 18727 CGH25G172#浅绿色 SPMX-20240815313961 \N \N \N 1 \N [{"file_id": "84b7fb0e-54bc-44fd-92b0-2a48910abbb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efbd818b701f41ca8fc149e4fd985043.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efbd818b701f41ca8fc149e4fd985043.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efbd818b701f41ca8fc149e4fd985043.jpg", "file_size": 17775, "is_delete": false, "file_type": 1, "original_file_name": "CGH25G172#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efbd818b701f41ca8fc149e4fd985043.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efbd818b701f41ca8fc149e4fd985043.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efbd818b701f41ca8fc149e4fd985043.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efbd818b701f41ca8fc149e4fd985043.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efbd818b701f41ca8fc149e4fd985043.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSYWSkgFJrVgjfJmE1Gxu901VVM=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.316047+00 2025-12-09 10:15:47.316054+00 18728 JX0006#WJC22 SPMX-20240815313953 \N \N \N 1 \N [{"file_id": "f83b9cbd-3b87-4d4d-b8ea-f8d6288af94b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2eb003164d148728fa4c3dfa6ac00eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2eb003164d148728fa4c3dfa6ac00eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2eb003164d148728fa4c3dfa6ac00eb.jpg", "file_size": 10774, "is_delete": false, "file_type": 1, "original_file_name": "JX0006#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2eb003164d148728fa4c3dfa6ac00eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2eb003164d148728fa4c3dfa6ac00eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2eb003164d148728fa4c3dfa6ac00eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2eb003164d148728fa4c3dfa6ac00eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2eb003164d148728fa4c3dfa6ac00eb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_zp59jieH4olobKbVRi6f6nigQ=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.318895+00 2025-12-09 10:15:47.318901+00 18729 FX0003-63#RC23 SPMX-20240815313956 \N \N \N 1 \N [{"file_id": "705024d5-c118-4a68-a955-8e7033e7f7da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c9ff57d45e142cdb9133102fbd94c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c9ff57d45e142cdb9133102fbd94c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c9ff57d45e142cdb9133102fbd94c3e.jpg", "file_size": 46029, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-63#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9ff57d45e142cdb9133102fbd94c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9ff57d45e142cdb9133102fbd94c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c9ff57d45e142cdb9133102fbd94c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c9ff57d45e142cdb9133102fbd94c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c9ff57d45e142cdb9133102fbd94c3e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oEUHv8z3p_WL_ZlWfa2dOiiDrbc=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.321902+00 2025-12-09 10:15:47.321909+00 18730 86478#橘色 SPMX-20240815313954 \N \N \N 1 \N [{"file_id": "83ccc9da-f70e-41bc-b0d7-b8ac288210f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "256de97c5c984331a7e22b7c88536b11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "256de97c5c984331a7e22b7c88536b11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "256de97c5c984331a7e22b7c88536b11.jpg", "file_size": 12470, "is_delete": false, "file_type": 1, "original_file_name": "86478#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256de97c5c984331a7e22b7c88536b11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256de97c5c984331a7e22b7c88536b11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256de97c5c984331a7e22b7c88536b11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/256de97c5c984331a7e22b7c88536b11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/256de97c5c984331a7e22b7c88536b11.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lFH2Oa2GnCYmoydVCGpyCE_8rY=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.324858+00 2025-12-09 10:15:47.324865+00 18731 1231-41FWF#中童袖领匹布 SPMX-20240815313955 \N \N \N 1 \N [{"file_id": "240beeeb-d984-4a94-ba89-8ad12e0e2455", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5608a4bff15a47c197f36f1a55627f34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5608a4bff15a47c197f36f1a55627f34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5608a4bff15a47c197f36f1a55627f34.jpg", "file_size": 17157, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5608a4bff15a47c197f36f1a55627f34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5608a4bff15a47c197f36f1a55627f34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5608a4bff15a47c197f36f1a55627f34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5608a4bff15a47c197f36f1a55627f34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5608a4bff15a47c197f36f1a55627f34.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-00cCD3XcrBtuDIMW01m4NvPDiA=", "createTime": "2024-08-15 15:05:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.327848+00 2025-12-09 10:15:47.327855+00 18732 LZ1390#上身2号色 SPMX-20240815313958 \N \N \N 1 \N [{"file_id": "d2573f4f-6328-4d79-b900-96311062901f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5835a672ae4740b2961b7b748fa2e5e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5835a672ae4740b2961b7b748fa2e5e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5835a672ae4740b2961b7b748fa2e5e8.jpg", "file_size": 18160, "is_delete": false, "file_type": 1, "original_file_name": "LZ1390#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5835a672ae4740b2961b7b748fa2e5e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5835a672ae4740b2961b7b748fa2e5e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5835a672ae4740b2961b7b748fa2e5e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5835a672ae4740b2961b7b748fa2e5e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5835a672ae4740b2961b7b748fa2e5e8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8KN2oUcugcomBswWTxf-AHyMtu0=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.33126+00 2025-12-09 10:15:47.331266+00 18733 0012-16FWE#VS-D3 SPMX-20240815313960 \N \N \N 1 \N [{"file_id": "596cd7c4-b5aa-47ac-b6bc-0e245570fe88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07145a28bbb94b91bf05483f66d5bf97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07145a28bbb94b91bf05483f66d5bf97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07145a28bbb94b91bf05483f66d5bf97.jpg", "file_size": 14757, "is_delete": false, "file_type": 1, "original_file_name": "0012-16FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07145a28bbb94b91bf05483f66d5bf97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07145a28bbb94b91bf05483f66d5bf97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07145a28bbb94b91bf05483f66d5bf97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07145a28bbb94b91bf05483f66d5bf97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07145a28bbb94b91bf05483f66d5bf97.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjaXJUFni2CYtpjEpS9SaMEHhQY=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.334458+00 2025-12-09 10:15:47.334465+00 18734 1231-41FWF#小童6码 SPMX-20240815313965 \N \N \N 1 \N [{"file_id": "f4cd9757-0a15-4847-8cbe-debb1cc5e741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8953a1869e6345b38f833d6f23182e3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8953a1869e6345b38f833d6f23182e3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8953a1869e6345b38f833d6f23182e3a.jpg", "file_size": 21202, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8953a1869e6345b38f833d6f23182e3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8953a1869e6345b38f833d6f23182e3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8953a1869e6345b38f833d6f23182e3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8953a1869e6345b38f833d6f23182e3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8953a1869e6345b38f833d6f23182e3a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mmJkcatetmiZNlN4kZKH6vsrkEw=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.337549+00 2025-12-09 10:15:47.337557+00 18735 LJH2020#上节桔色 SPMX-20240815313969 \N \N \N 1 \N [{"file_id": "5a0184ef-6fd0-4edd-9c40-ed779f6a7306", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07901eb836df4956bab995bdaa54641a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07901eb836df4956bab995bdaa54641a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07901eb836df4956bab995bdaa54641a.jpg", "file_size": 70476, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#上节桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07901eb836df4956bab995bdaa54641a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07901eb836df4956bab995bdaa54641a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07901eb836df4956bab995bdaa54641a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07901eb836df4956bab995bdaa54641a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07901eb836df4956bab995bdaa54641a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xQ_Gh7hHgNjYG3WPZnUIQlEBnKs=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.340632+00 2025-12-09 10:15:47.340638+00 18736 2328FWE#枣红 SPMX-20240815313963 \N \N \N 1 \N [{"file_id": "b175fc92-cc5f-412d-ae72-55ea2e0e46e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53a8d7ce08ea4e3aa7c95069fd1ff426.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53a8d7ce08ea4e3aa7c95069fd1ff426.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53a8d7ce08ea4e3aa7c95069fd1ff426.jpg", "file_size": 20342, "is_delete": false, "file_type": 1, "original_file_name": "2328FWE#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8d7ce08ea4e3aa7c95069fd1ff426.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8d7ce08ea4e3aa7c95069fd1ff426.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a8d7ce08ea4e3aa7c95069fd1ff426.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53a8d7ce08ea4e3aa7c95069fd1ff426.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53a8d7ce08ea4e3aa7c95069fd1ff426.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ri3iqAv_-t_LHS8xzev85LJJ2Vk=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.343702+00 2025-12-09 10:15:47.343712+00 18737 FX0003-64#RC23 SPMX-20240815313967 \N \N \N 1 \N [{"file_id": "b9b1ee4d-3a87-4eea-9dfd-f8aa5e08dc36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137c3395ee054035adcea6a478c09d4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137c3395ee054035adcea6a478c09d4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137c3395ee054035adcea6a478c09d4b.jpg", "file_size": 40349, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-64#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c3395ee054035adcea6a478c09d4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c3395ee054035adcea6a478c09d4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137c3395ee054035adcea6a478c09d4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137c3395ee054035adcea6a478c09d4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137c3395ee054035adcea6a478c09d4b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WECfwuTGIeW4i2s5dEIoHUoeMT4=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.346744+00 2025-12-09 10:15:47.34675+00 18738 CGH25G172#白色 SPMX-20240815313968 \N \N \N 1 \N [{"file_id": "cb9cefaa-e17f-4d05-bf89-6e2b90d77fb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d7a3bc5969b40c9847b1acee3f85c3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d7a3bc5969b40c9847b1acee3f85c3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d7a3bc5969b40c9847b1acee3f85c3e.jpg", "file_size": 18820, "is_delete": false, "file_type": 1, "original_file_name": "CGH25G172#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7a3bc5969b40c9847b1acee3f85c3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7a3bc5969b40c9847b1acee3f85c3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7a3bc5969b40c9847b1acee3f85c3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d7a3bc5969b40c9847b1acee3f85c3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d7a3bc5969b40c9847b1acee3f85c3e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V8QGU45rcYS4Fy49FZbZbRxTE6U=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.349801+00 2025-12-09 10:15:47.349807+00 18739 LZ1390#上身3号色 SPMX-20240815313966 \N \N \N 1 \N [{"file_id": "bb535a94-ba86-4417-80ad-8e8e4d64374c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg", "file_size": 19207, "is_delete": false, "file_type": 1, "original_file_name": "LZ1390#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdc3c7c4f4c6404fb92a2edf1e0340d4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:myvY96uHWDYdtUHuw3ZEZvY8Gic=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.3529+00 2025-12-09 10:15:47.352908+00 18740 JX0007#WJC22 SPMX-20240815313962 \N \N \N 1 \N [{"file_id": "03024efb-8f26-437b-922a-33182b012583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg", "file_size": 26904, "is_delete": false, "file_type": 1, "original_file_name": "JX0007#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a10e2c3cfef5444a9c43bd3ffd36c5cc.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m-Awc2z3lVkYJRDUyhx1WmAyXn4=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.35625+00 2025-12-09 10:15:47.356257+00 18741 86478#绿色 SPMX-20240815313964 \N \N \N 1 \N [{"file_id": "47294595-aa1a-4c52-b7df-b0bfa31bd755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e399e9a64d0d46f0a310116add8bdd40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e399e9a64d0d46f0a310116add8bdd40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e399e9a64d0d46f0a310116add8bdd40.jpg", "file_size": 13242, "is_delete": false, "file_type": 1, "original_file_name": "86478#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e399e9a64d0d46f0a310116add8bdd40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e399e9a64d0d46f0a310116add8bdd40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e399e9a64d0d46f0a310116add8bdd40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e399e9a64d0d46f0a310116add8bdd40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e399e9a64d0d46f0a310116add8bdd40.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nCeusZXlzNxeLyeQ9V7EGcebz4=", "createTime": "2024-08-15 15:05:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.359363+00 2025-12-09 10:15:47.359369+00 18742 HXF-TB023#前片+领子L码 SPMX-20240815313971 \N \N \N 1 \N [{"file_id": "6684f2d7-3af7-4d69-8da9-135d84533e75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f6f4b353649454a83be43e0d3e02062.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f6f4b353649454a83be43e0d3e02062.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f6f4b353649454a83be43e0d3e02062.jpg", "file_size": 15144, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#前片+领子L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6f4b353649454a83be43e0d3e02062.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6f4b353649454a83be43e0d3e02062.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f6f4b353649454a83be43e0d3e02062.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f6f4b353649454a83be43e0d3e02062.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f6f4b353649454a83be43e0d3e02062.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOgluRzvYV_91xEaT9-lSgVdzCo=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.362814+00 2025-12-09 10:15:47.36282+00 18743 0012-17FWE#VS-D3 SPMX-20240815313970 \N \N \N 1 \N [{"file_id": "f2cf482b-360a-4762-8a7f-d853fb6491cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45ff33d4f43a4ab3987ea818ec7f10bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45ff33d4f43a4ab3987ea818ec7f10bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45ff33d4f43a4ab3987ea818ec7f10bb.jpg", "file_size": 18846, "is_delete": false, "file_type": 1, "original_file_name": "0012-17FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff33d4f43a4ab3987ea818ec7f10bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff33d4f43a4ab3987ea818ec7f10bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff33d4f43a4ab3987ea818ec7f10bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45ff33d4f43a4ab3987ea818ec7f10bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45ff33d4f43a4ab3987ea818ec7f10bb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzZ_zN_ta0AN9tmblgObBljCQUo=", "createTime": "2024-08-15 15:05:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.366168+00 2025-12-09 10:15:47.366175+00 18744 JX0008A#WJC22 SPMX-20240815313972 \N \N \N 1 \N [{"file_id": "c0d75139-02c6-4607-a651-26e47ebb3b3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e7654f61414417a8e46bc0d9a069fa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e7654f61414417a8e46bc0d9a069fa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e7654f61414417a8e46bc0d9a069fa5.jpg", "file_size": 26175, "is_delete": false, "file_type": 1, "original_file_name": "JX0008A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7654f61414417a8e46bc0d9a069fa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7654f61414417a8e46bc0d9a069fa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7654f61414417a8e46bc0d9a069fa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e7654f61414417a8e46bc0d9a069fa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e7654f61414417a8e46bc0d9a069fa5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NM3eSH1cZF37SV-uJFjcu30DfAY=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.369511+00 2025-12-09 10:15:47.369517+00 18745 1231-41FWF#小童8码+4码 SPMX-20240815313974 \N \N \N 1 \N [{"file_id": "117010f8-b127-450d-9951-d3b58efd1495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4e44ac792ca478382d548628ebf487f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4e44ac792ca478382d548628ebf487f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4e44ac792ca478382d548628ebf487f.jpg", "file_size": 22268, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e44ac792ca478382d548628ebf487f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e44ac792ca478382d548628ebf487f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4e44ac792ca478382d548628ebf487f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4e44ac792ca478382d548628ebf487f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4e44ac792ca478382d548628ebf487f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7s8cMLGpVUGZRPzGdtwxCjrBSZ4=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.372801+00 2025-12-09 10:15:47.372808+00 18746 FX0003-65#RC23 SPMX-20240815313977 \N \N \N 1 \N [{"file_id": "b5e8221f-d824-4e25-9f60-4831d68b8a29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a044f9d95e364b19b919165e6b76118a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a044f9d95e364b19b919165e6b76118a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a044f9d95e364b19b919165e6b76118a.jpg", "file_size": 40306, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-65#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a044f9d95e364b19b919165e6b76118a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a044f9d95e364b19b919165e6b76118a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a044f9d95e364b19b919165e6b76118a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a044f9d95e364b19b919165e6b76118a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a044f9d95e364b19b919165e6b76118a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6Qx0f6eylzmtPCAhQdTNyPnuX4=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.376153+00 2025-12-09 10:15:47.37616+00 18747 LJH2020#上节玫红 SPMX-20240815313979 \N \N \N 1 \N [{"file_id": "15834cd0-d526-48f1-8516-77caa6aa9f20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "648f2a9dc6534aef988d796e6edf9685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "648f2a9dc6534aef988d796e6edf9685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "648f2a9dc6534aef988d796e6edf9685.jpg", "file_size": 68852, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#上节玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648f2a9dc6534aef988d796e6edf9685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648f2a9dc6534aef988d796e6edf9685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/648f2a9dc6534aef988d796e6edf9685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/648f2a9dc6534aef988d796e6edf9685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/648f2a9dc6534aef988d796e6edf9685.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uuCMhTapNJH3z_YNY0kkiMKmhz8=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.379646+00 2025-12-09 10:15:47.379653+00 18748 2328FWE#黑色 SPMX-20240815313973 \N \N \N 1 \N [{"file_id": "a2e8992e-d983-4dac-8c31-f7e55119bc45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0313209dcc8b4b93b5a770cc590e82a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0313209dcc8b4b93b5a770cc590e82a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0313209dcc8b4b93b5a770cc590e82a5.jpg", "file_size": 21172, "is_delete": false, "file_type": 1, "original_file_name": "2328FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0313209dcc8b4b93b5a770cc590e82a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0313209dcc8b4b93b5a770cc590e82a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0313209dcc8b4b93b5a770cc590e82a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0313209dcc8b4b93b5a770cc590e82a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0313209dcc8b4b93b5a770cc590e82a5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WKRAYQKEEpVMIHn9Q4In3MMU02Y=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.383155+00 2025-12-09 10:15:47.383164+00 18749 86478#翠绿 SPMX-20240815313976 \N \N \N 1 \N [{"file_id": "42071b51-56bc-4b27-a53f-39293e152f51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "266bca03a7e44deea15329fc2b43c729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "266bca03a7e44deea15329fc2b43c729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "266bca03a7e44deea15329fc2b43c729.jpg", "file_size": 11715, "is_delete": false, "file_type": 1, "original_file_name": "86478#翠绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266bca03a7e44deea15329fc2b43c729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266bca03a7e44deea15329fc2b43c729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/266bca03a7e44deea15329fc2b43c729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/266bca03a7e44deea15329fc2b43c729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/266bca03a7e44deea15329fc2b43c729.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmWWq0_8iGJC_6_7bElAGTxdMeY=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.424875+00 2025-12-09 10:15:47.42488+00 18762 JX0009A#WJC22 SPMX-20240815313990 \N \N \N 1 \N [{"file_id": "683efc78-ee36-4a2c-b93f-fad0612104b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0b70d5d3a341dcbc939241f30a6f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0b70d5d3a341dcbc939241f30a6f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0b70d5d3a341dcbc939241f30a6f59.jpg", "file_size": 18169, "is_delete": false, "file_type": 1, "original_file_name": "JX0009A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0b70d5d3a341dcbc939241f30a6f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0b70d5d3a341dcbc939241f30a6f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0b70d5d3a341dcbc939241f30a6f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0b70d5d3a341dcbc939241f30a6f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0b70d5d3a341dcbc939241f30a6f59.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfn6kJx1JtLfdPsKbnCKkuZTeV8=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.386662+00 2025-12-09 10:15:47.386668+00 18750 LZ1390#上身4号色 SPMX-20240815313975 \N \N \N 1 \N [{"file_id": "3d1de0af-05b1-4e0a-ad43-bcf1b4c6290e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "694440ac35d04f69a0b2b905906c7ed9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "694440ac35d04f69a0b2b905906c7ed9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "694440ac35d04f69a0b2b905906c7ed9.jpg", "file_size": 18476, "is_delete": false, "file_type": 1, "original_file_name": "LZ1390#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694440ac35d04f69a0b2b905906c7ed9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694440ac35d04f69a0b2b905906c7ed9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/694440ac35d04f69a0b2b905906c7ed9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/694440ac35d04f69a0b2b905906c7ed9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/694440ac35d04f69a0b2b905906c7ed9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qeccn99kBB9CYKDoStgfgKzvuEQ=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.389806+00 2025-12-09 10:15:47.389813+00 18751 CGH25G172#粉色 SPMX-20240815313978 \N \N \N 1 \N [{"file_id": "9b18e242-783f-4699-84be-2c302b387c2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a716a340ab94d19b1bda468307448c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a716a340ab94d19b1bda468307448c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a716a340ab94d19b1bda468307448c4.jpg", "file_size": 16816, "is_delete": false, "file_type": 1, "original_file_name": "CGH25G172#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a716a340ab94d19b1bda468307448c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a716a340ab94d19b1bda468307448c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a716a340ab94d19b1bda468307448c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a716a340ab94d19b1bda468307448c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a716a340ab94d19b1bda468307448c4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2hYErbN5ka2VjaD_ipXATHksioE=", "createTime": "2024-08-15 15:05:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.392892+00 2025-12-09 10:15:47.392899+00 18752 0012-18FWE#灰色VS-D3 SPMX-20240815313980 \N \N \N 1 \N [{"file_id": "36dabef8-fd23-4e94-ac04-06f2fe68bea6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca989315bc6f46539c9374a419439f1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca989315bc6f46539c9374a419439f1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca989315bc6f46539c9374a419439f1e.jpg", "file_size": 16545, "is_delete": false, "file_type": 1, "original_file_name": "0012-18FWE#灰色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca989315bc6f46539c9374a419439f1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca989315bc6f46539c9374a419439f1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca989315bc6f46539c9374a419439f1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca989315bc6f46539c9374a419439f1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca989315bc6f46539c9374a419439f1e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gm8FjsFr5g5U1RqhjBVKaXKMFeE=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.395958+00 2025-12-09 10:15:47.395964+00 18753 JX0008G#WJC22 SPMX-20240815313982 \N \N \N 1 \N [{"file_id": "de82e22e-73f1-484b-ba59-34e260ffc376", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4091b210895541dc96f0ca54febc5efa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4091b210895541dc96f0ca54febc5efa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4091b210895541dc96f0ca54febc5efa.jpg", "file_size": 15410, "is_delete": false, "file_type": 1, "original_file_name": "JX0008G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4091b210895541dc96f0ca54febc5efa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4091b210895541dc96f0ca54febc5efa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4091b210895541dc96f0ca54febc5efa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4091b210895541dc96f0ca54febc5efa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4091b210895541dc96f0ca54febc5efa.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oyy_d_sOEF5n_SJaX8ChlO-iYMg=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.399034+00 2025-12-09 10:15:47.399041+00 18754 HXF-TB023#前片+领子M码 SPMX-20240815313981 \N \N \N 1 \N [{"file_id": "b8d3c912-33d7-4cf1-ba8d-a7699d59ee90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53ffbdfece9f43b69784de285665f5e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53ffbdfece9f43b69784de285665f5e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53ffbdfece9f43b69784de285665f5e9.jpg", "file_size": 15307, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#前片+领子M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ffbdfece9f43b69784de285665f5e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ffbdfece9f43b69784de285665f5e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ffbdfece9f43b69784de285665f5e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53ffbdfece9f43b69784de285665f5e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53ffbdfece9f43b69784de285665f5e9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eEpqg_J2HhC0_z8te9sSV4PqyIw=", "createTime": "2024-08-15 15:05:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.40211+00 2025-12-09 10:15:47.402116+00 18755 0012-1FWE#VS-D3 SPMX-20240815313988 \N \N \N 1 \N [{"file_id": "0a6d3a67-7084-4711-8e77-8f93999522c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59c978925d97423b87eb97adae197abe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59c978925d97423b87eb97adae197abe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59c978925d97423b87eb97adae197abe.jpg", "file_size": 15532, "is_delete": false, "file_type": 1, "original_file_name": "0012-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c978925d97423b87eb97adae197abe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c978925d97423b87eb97adae197abe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59c978925d97423b87eb97adae197abe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59c978925d97423b87eb97adae197abe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59c978925d97423b87eb97adae197abe.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4je1tj7m5pOl8X4sz-KeL70LP8=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.405164+00 2025-12-09 10:15:47.405171+00 18756 FX0003-66#1号色 SPMX-20240815313989 \N \N \N 1 \N [{"file_id": "865c8346-8c80-47c0-b126-669cdbfbaab1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52ed32d0b8c248d0bd62278fb39ebde0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52ed32d0b8c248d0bd62278fb39ebde0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52ed32d0b8c248d0bd62278fb39ebde0.jpg", "file_size": 81155, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-66#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ed32d0b8c248d0bd62278fb39ebde0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ed32d0b8c248d0bd62278fb39ebde0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52ed32d0b8c248d0bd62278fb39ebde0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52ed32d0b8c248d0bd62278fb39ebde0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52ed32d0b8c248d0bd62278fb39ebde0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UFu9kemOh07xl6KYXbnHd5-PU9g=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.408276+00 2025-12-09 10:15:47.408284+00 18757 HXF-TB023#前片+领子XL码 SPMX-20240815313991 \N \N \N 1 \N [{"file_id": "d2e0e6f1-03da-48c7-b0ab-da88bde7afb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "339f37e9f0794096b1528846c4d48518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "339f37e9f0794096b1528846c4d48518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "339f37e9f0794096b1528846c4d48518.jpg", "file_size": 14778, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#前片+领子XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339f37e9f0794096b1528846c4d48518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339f37e9f0794096b1528846c4d48518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/339f37e9f0794096b1528846c4d48518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/339f37e9f0794096b1528846c4d48518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/339f37e9f0794096b1528846c4d48518.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_rM9BMKATDvh5ZUmam1BXnApr7Y=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.411331+00 2025-12-09 10:15:47.411338+00 18758 LJH2020#上节黄色 SPMX-20240815313992 \N \N \N 1 \N [{"file_id": "4e664a2d-d8bc-44ee-a8d7-c4e80939680d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b57c281c9b75457487e966d8dc1007a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b57c281c9b75457487e966d8dc1007a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b57c281c9b75457487e966d8dc1007a7.jpg", "file_size": 59624, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#上节黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57c281c9b75457487e966d8dc1007a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57c281c9b75457487e966d8dc1007a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b57c281c9b75457487e966d8dc1007a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b57c281c9b75457487e966d8dc1007a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b57c281c9b75457487e966d8dc1007a7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ch9E2LD4NeRgPp-TWKAzn17cJRI=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.414399+00 2025-12-09 10:15:47.414406+00 18759 86478#蓝色 SPMX-20240815313984 \N \N \N 1 \N [{"file_id": "ff65a696-bf47-4c4b-96ed-f0782a501afe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg", "file_size": 14705, "is_delete": false, "file_type": 1, "original_file_name": "86478#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53a46cdbe4d84ecdb0a12e1fdc72da7e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9GomunZg945iQ6Z3tBfsmbtH-uI=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.418304+00 2025-12-09 10:15:47.418311+00 18760 LZ1390#上身5号色 SPMX-20240815313986 \N \N \N 1 \N [{"file_id": "9f8a01e0-df68-446a-a4a9-09118fca9f75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b09a8f7d5c3442d98b96671bb373e00b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b09a8f7d5c3442d98b96671bb373e00b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b09a8f7d5c3442d98b96671bb373e00b.jpg", "file_size": 18346, "is_delete": false, "file_type": 1, "original_file_name": "LZ1390#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09a8f7d5c3442d98b96671bb373e00b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09a8f7d5c3442d98b96671bb373e00b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b09a8f7d5c3442d98b96671bb373e00b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b09a8f7d5c3442d98b96671bb373e00b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b09a8f7d5c3442d98b96671bb373e00b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nTpx3L4XDSpUOHubqSRFkQb6V8Q=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.421736+00 2025-12-09 10:15:47.421745+00 18761 CGH25G172#蓝色 SPMX-20240815313987 \N \N \N 1 \N [{"file_id": "75bb955b-0f28-4542-8d4b-a134dce86f62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a012eb9950e04744a01d79a000bcf78c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a012eb9950e04744a01d79a000bcf78c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a012eb9950e04744a01d79a000bcf78c.jpg", "file_size": 17807, "is_delete": false, "file_type": 1, "original_file_name": "CGH25G172#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a012eb9950e04744a01d79a000bcf78c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a012eb9950e04744a01d79a000bcf78c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a012eb9950e04744a01d79a000bcf78c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a012eb9950e04744a01d79a000bcf78c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a012eb9950e04744a01d79a000bcf78c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gpYuOOd9Nb0iK5e9caPzTUqnZH4=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.427972+00 2025-12-09 10:15:47.427979+00 18763 23299FWF#净色 SPMX-20240815313983 \N \N \N 1 \N [{"file_id": "ef30685a-f99f-4fac-9e4d-4c5d0707c2f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12fbabcbbf73485a806196e0442a098f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12fbabcbbf73485a806196e0442a098f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12fbabcbbf73485a806196e0442a098f.jpg", "file_size": 8799, "is_delete": false, "file_type": 1, "original_file_name": "23299FWF#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fbabcbbf73485a806196e0442a098f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fbabcbbf73485a806196e0442a098f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12fbabcbbf73485a806196e0442a098f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12fbabcbbf73485a806196e0442a098f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12fbabcbbf73485a806196e0442a098f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMBzivJ6r_NY1SC01pu-aMPUS_A=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.431046+00 2025-12-09 10:15:47.431053+00 18764 1231-41FWF#小童袖领匹布 SPMX-20240815313985 \N \N \N 1 \N [{"file_id": "fe3b0959-7b56-4fa4-ba60-58056532a225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb291e2245304285beafdff4adede2f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb291e2245304285beafdff4adede2f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb291e2245304285beafdff4adede2f0.jpg", "file_size": 16946, "is_delete": false, "file_type": 1, "original_file_name": "1231-41FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb291e2245304285beafdff4adede2f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb291e2245304285beafdff4adede2f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb291e2245304285beafdff4adede2f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb291e2245304285beafdff4adede2f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb291e2245304285beafdff4adede2f0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZBVRxUXwiebNeHT-1pBfU8qcRdA=", "createTime": "2024-08-15 15:05:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.434071+00 2025-12-09 10:15:47.434082+00 18765 1231-42FWE#中童12码+10码 SPMX-20240815313995 \N \N \N 1 \N [{"file_id": "aa11e046-6016-4c81-9568-1fe7b232a9ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b9c0b5fde32404e9b4863e63051b195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b9c0b5fde32404e9b4863e63051b195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b9c0b5fde32404e9b4863e63051b195.jpg", "file_size": 16787, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9c0b5fde32404e9b4863e63051b195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9c0b5fde32404e9b4863e63051b195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b9c0b5fde32404e9b4863e63051b195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b9c0b5fde32404e9b4863e63051b195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b9c0b5fde32404e9b4863e63051b195.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lp9O1yMoTPMKdcAvlsQLL_HbGJw=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.437132+00 2025-12-09 10:15:47.437138+00 18766 FX0003-66#2号色 SPMX-20240815313999 \N \N \N 1 \N [{"file_id": "540366c3-1180-4773-b825-b2ad6fb45279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40f7250b1519416397c7fadcbb66a262.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40f7250b1519416397c7fadcbb66a262.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40f7250b1519416397c7fadcbb66a262.jpg", "file_size": 80912, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-66#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f7250b1519416397c7fadcbb66a262.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f7250b1519416397c7fadcbb66a262.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40f7250b1519416397c7fadcbb66a262.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40f7250b1519416397c7fadcbb66a262.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40f7250b1519416397c7fadcbb66a262.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJD4aGY8J6s2aruKV2rRxaJvcFg=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.440154+00 2025-12-09 10:15:47.440163+00 18767 8649上衣不复合L# SPMX-20240815313994 \N \N \N 1 \N [{"file_id": "ab03f984-b55e-4b61-9d5a-e38c067397dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd431d91948d4fc2b17803f567996624.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd431d91948d4fc2b17803f567996624.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd431d91948d4fc2b17803f567996624.jpg", "file_size": 20102, "is_delete": false, "file_type": 1, "original_file_name": "8649上衣不复合L#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd431d91948d4fc2b17803f567996624.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd431d91948d4fc2b17803f567996624.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd431d91948d4fc2b17803f567996624.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd431d91948d4fc2b17803f567996624.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd431d91948d4fc2b17803f567996624.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pRcsnFd-FHwk5hbObUEcvUFgXc=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.443268+00 2025-12-09 10:15:47.443275+00 18768 CGH25G172#黄色 SPMX-20240815313996 \N \N \N 1 \N [{"file_id": "0d5894f6-083a-4abe-a0c6-7984825928df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b60bc51663904384ac9f9b5182e9d994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b60bc51663904384ac9f9b5182e9d994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b60bc51663904384ac9f9b5182e9d994.jpg", "file_size": 18323, "is_delete": false, "file_type": 1, "original_file_name": "CGH25G172#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60bc51663904384ac9f9b5182e9d994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60bc51663904384ac9f9b5182e9d994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60bc51663904384ac9f9b5182e9d994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b60bc51663904384ac9f9b5182e9d994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b60bc51663904384ac9f9b5182e9d994.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9F1cAfDZu1PHgVwfbYPlOkJ210=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.446293+00 2025-12-09 10:15:47.4463+00 18769 0012-1FWF#V5曲线 SPMX-20240815313998 \N \N \N 1 \N [{"file_id": "857b620b-3929-4433-95b3-22d7165777f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39ee78f7ad514b4aaa9b95131a9c4b99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39ee78f7ad514b4aaa9b95131a9c4b99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39ee78f7ad514b4aaa9b95131a9c4b99.jpg", "file_size": 25055, "is_delete": false, "file_type": 1, "original_file_name": "0012-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ee78f7ad514b4aaa9b95131a9c4b99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ee78f7ad514b4aaa9b95131a9c4b99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39ee78f7ad514b4aaa9b95131a9c4b99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39ee78f7ad514b4aaa9b95131a9c4b99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39ee78f7ad514b4aaa9b95131a9c4b99.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Fmeu-NoD8wfqEVfodD5jloFQYY=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.449337+00 2025-12-09 10:15:47.449343+00 18770 23299FWF#净色番禺调色 SPMX-20240815313993 \N \N \N 1 \N [{"file_id": "173bf6be-b4c3-4f57-905e-2ddcef1449cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29027086ebf0426bbd0503953d564c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29027086ebf0426bbd0503953d564c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29027086ebf0426bbd0503953d564c8e.jpg", "file_size": 9674, "is_delete": false, "file_type": 1, "original_file_name": "23299FWF#净色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29027086ebf0426bbd0503953d564c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29027086ebf0426bbd0503953d564c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29027086ebf0426bbd0503953d564c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29027086ebf0426bbd0503953d564c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29027086ebf0426bbd0503953d564c8e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5iFU0lFKGkcVxZ_PhvuZ3Aejg4=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.452394+00 2025-12-09 10:15:47.452399+00 18771 HXF-TB023#咖色2XL码 SPMX-20240815314000 \N \N \N 1 \N [{"file_id": "ad5582ca-5874-400b-ae26-551f7196f76d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "403fad9f0a1244ee8618cd17bd45d18a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "403fad9f0a1244ee8618cd17bd45d18a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "403fad9f0a1244ee8618cd17bd45d18a.jpg", "file_size": 16256, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#咖色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403fad9f0a1244ee8618cd17bd45d18a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403fad9f0a1244ee8618cd17bd45d18a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/403fad9f0a1244ee8618cd17bd45d18a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/403fad9f0a1244ee8618cd17bd45d18a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/403fad9f0a1244ee8618cd17bd45d18a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FVn4mL6NX7c6qXSINYfVpLLb_yg=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.455442+00 2025-12-09 10:15:47.455447+00 18772 JX0009G#粉色 SPMX-20240815314002 \N \N \N 1 \N [{"file_id": "81822958-2601-4f7c-917f-e729fd6cee79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "574efe29f7824a21bf993e4854da69d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "574efe29f7824a21bf993e4854da69d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "574efe29f7824a21bf993e4854da69d7.jpg", "file_size": 15739, "is_delete": false, "file_type": 1, "original_file_name": "JX0009G#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574efe29f7824a21bf993e4854da69d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574efe29f7824a21bf993e4854da69d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/574efe29f7824a21bf993e4854da69d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/574efe29f7824a21bf993e4854da69d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/574efe29f7824a21bf993e4854da69d7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9yupKLIfCJQeXUsgzROqT8KduY=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.458497+00 2025-12-09 10:15:47.458504+00 18773 LJH2020#上节黑色 SPMX-20240815314001 \N \N \N 1 \N [{"file_id": "c592412a-b1ad-4a60-a9a9-4df49bd6245e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ff1b55ca12145c49d2dbbeb1e8de00a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ff1b55ca12145c49d2dbbeb1e8de00a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ff1b55ca12145c49d2dbbeb1e8de00a.jpg", "file_size": 62803, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#上节黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff1b55ca12145c49d2dbbeb1e8de00a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff1b55ca12145c49d2dbbeb1e8de00a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ff1b55ca12145c49d2dbbeb1e8de00a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ff1b55ca12145c49d2dbbeb1e8de00a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ff1b55ca12145c49d2dbbeb1e8de00a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNCmywdBUkFBmQJ0crM-U02z9Co=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.461466+00 2025-12-09 10:15:47.461472+00 18774 LZ1391#上身1号色 SPMX-20240815313997 \N \N \N 1 \N [{"file_id": "a571a770-0a02-43a0-86f4-6b85e57416e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c42b5d1a51ed418fb772e885b7984223.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c42b5d1a51ed418fb772e885b7984223.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c42b5d1a51ed418fb772e885b7984223.jpg", "file_size": 18529, "is_delete": false, "file_type": 1, "original_file_name": "LZ1391#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42b5d1a51ed418fb772e885b7984223.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42b5d1a51ed418fb772e885b7984223.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c42b5d1a51ed418fb772e885b7984223.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c42b5d1a51ed418fb772e885b7984223.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c42b5d1a51ed418fb772e885b7984223.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mUVyfXqDtGd1SpY-O7fRlrdVNPo=", "createTime": "2024-08-15 15:05:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.464586+00 2025-12-09 10:15:47.464592+00 18775 8649上衣不复合M# SPMX-20240815314004 \N \N \N 1 \N [{"file_id": "917a21ed-6b7a-4a05-b0c9-526e3b987ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4aed026c51f42578ecfc77196e1362b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4aed026c51f42578ecfc77196e1362b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4aed026c51f42578ecfc77196e1362b.jpg", "file_size": 20358, "is_delete": false, "file_type": 1, "original_file_name": "8649上衣不复合M#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4aed026c51f42578ecfc77196e1362b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4aed026c51f42578ecfc77196e1362b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4aed026c51f42578ecfc77196e1362b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4aed026c51f42578ecfc77196e1362b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4aed026c51f42578ecfc77196e1362b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EWyxyVnRVnODdqfdlt3KMK0CNMA=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.467682+00 2025-12-09 10:15:47.467689+00 18776 23299FWF#前片 SPMX-20240815314003 \N \N \N 1 \N [{"file_id": "1eb11bb1-10ab-4430-bd64-70a3a9ed69fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "097cb6e8b014471096bde31339c4c9fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "097cb6e8b014471096bde31339c4c9fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "097cb6e8b014471096bde31339c4c9fc.jpg", "file_size": 13339, "is_delete": false, "file_type": 1, "original_file_name": "23299FWF#前片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097cb6e8b014471096bde31339c4c9fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097cb6e8b014471096bde31339c4c9fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097cb6e8b014471096bde31339c4c9fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/097cb6e8b014471096bde31339c4c9fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/097cb6e8b014471096bde31339c4c9fc.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7RHfik8oqfLbNDuMSIIJCuwymU=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.470678+00 2025-12-09 10:15:47.470684+00 18777 HXF-TB023#咖色L码 SPMX-20240815314005 \N \N \N 1 \N [{"file_id": "a5b66ea5-43d9-4056-9071-a27aa09f40a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg", "file_size": 15975, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#咖色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7b1b5f2dfa54a0a8e21363cf3dda1d9.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sHKs_8jopqdFLG3XDWzFUX3_u8=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.473729+00 2025-12-09 10:15:47.473736+00 18778 FX0003-67#RC23 SPMX-20240815314009 \N \N \N 1 \N [{"file_id": "4d3c3efa-e3af-48c1-be6b-6b1658088ca6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad09351f9f39460cb3a106e53cdef383.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad09351f9f39460cb3a106e53cdef383.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad09351f9f39460cb3a106e53cdef383.jpg", "file_size": 50335, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-67#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09351f9f39460cb3a106e53cdef383.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09351f9f39460cb3a106e53cdef383.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad09351f9f39460cb3a106e53cdef383.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad09351f9f39460cb3a106e53cdef383.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad09351f9f39460cb3a106e53cdef383.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1kd5QlClwL7NAYKFxU6FG2iC7k=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.47684+00 2025-12-09 10:15:47.476847+00 18779 8649上衣不复合XL# SPMX-20240815314013 \N \N \N 1 \N [{"file_id": "62f7a4a1-1f11-48f2-a585-362839676cab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2085f6511c42238dec007bead9186d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2085f6511c42238dec007bead9186d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2085f6511c42238dec007bead9186d.jpg", "file_size": 19805, "is_delete": false, "file_type": 1, "original_file_name": "8649上衣不复合XL#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2085f6511c42238dec007bead9186d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2085f6511c42238dec007bead9186d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2085f6511c42238dec007bead9186d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2085f6511c42238dec007bead9186d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2085f6511c42238dec007bead9186d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IQMopOcehUf788_VqXdzls301KE=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.479966+00 2025-12-09 10:15:47.479973+00 18780 LZ1391#上身3号色 SPMX-20240815314019 \N \N \N 1 \N [{"file_id": "e6ececb4-af9f-4509-acdf-b44c67de8bab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33c15f17caad4ce7b03882d25522d453.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33c15f17caad4ce7b03882d25522d453.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33c15f17caad4ce7b03882d25522d453.jpg", "file_size": 20643, "is_delete": false, "file_type": 1, "original_file_name": "LZ1391#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c15f17caad4ce7b03882d25522d453.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c15f17caad4ce7b03882d25522d453.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c15f17caad4ce7b03882d25522d453.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33c15f17caad4ce7b03882d25522d453.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33c15f17caad4ce7b03882d25522d453.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_f4clu3NGCaygiDvFkwke9yBHEQ=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.483063+00 2025-12-09 10:15:47.48307+00 18781 0012-2FWE#浅粉VS-D3 SPMX-20240815314006 \N \N \N 1 \N [{"file_id": "fc0cf898-7795-446d-8e4b-f3a9eecd18da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b498c20f084649e28d1c6cd614be1190.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b498c20f084649e28d1c6cd614be1190.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b498c20f084649e28d1c6cd614be1190.jpg", "file_size": 7026, "is_delete": false, "file_type": 1, "original_file_name": "0012-2FWE#浅粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b498c20f084649e28d1c6cd614be1190.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b498c20f084649e28d1c6cd614be1190.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b498c20f084649e28d1c6cd614be1190.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b498c20f084649e28d1c6cd614be1190.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b498c20f084649e28d1c6cd614be1190.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mKeM1MfntQkiYa9q-9m2j869BYE=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.486438+00 2025-12-09 10:15:47.486445+00 18782 1231-42FWE#中童14码 SPMX-20240815314007 \N \N \N 1 \N [{"file_id": "44a32861-6ad5-4042-9904-72bcd25e36f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbd1438cbdb34df982a17a79ecac1763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbd1438cbdb34df982a17a79ecac1763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbd1438cbdb34df982a17a79ecac1763.jpg", "file_size": 15531, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1438cbdb34df982a17a79ecac1763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1438cbdb34df982a17a79ecac1763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd1438cbdb34df982a17a79ecac1763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbd1438cbdb34df982a17a79ecac1763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbd1438cbdb34df982a17a79ecac1763.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eBF6icTCyQfa6cCu1N1y4KvOXn4=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.489444+00 2025-12-09 10:15:47.489451+00 18783 23299FWF#前片番禺调色 SPMX-20240815314014 \N \N \N 1 \N [{"file_id": "48c9f95c-cd35-4fba-903e-e90adbd48f4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6901a59b328e436881a6aa44d4c3db1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6901a59b328e436881a6aa44d4c3db1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6901a59b328e436881a6aa44d4c3db1a.jpg", "file_size": 12105, "is_delete": false, "file_type": 1, "original_file_name": "23299FWF#前片番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6901a59b328e436881a6aa44d4c3db1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6901a59b328e436881a6aa44d4c3db1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6901a59b328e436881a6aa44d4c3db1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6901a59b328e436881a6aa44d4c3db1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6901a59b328e436881a6aa44d4c3db1a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YuIQJnl2XIGXWFPU2rTHiQk1iHY=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.492482+00 2025-12-09 10:15:47.492488+00 18784 CGH3202#灰红 SPMX-20240815314017 \N \N \N 1 \N [{"file_id": "335276e8-9089-42f4-be28-146c65f46214", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3f6058dc7dc4854ae931e3c972169a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3f6058dc7dc4854ae931e3c972169a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3f6058dc7dc4854ae931e3c972169a8.jpg", "file_size": 20046, "is_delete": false, "file_type": 1, "original_file_name": "CGH3202#灰红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f6058dc7dc4854ae931e3c972169a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f6058dc7dc4854ae931e3c972169a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f6058dc7dc4854ae931e3c972169a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3f6058dc7dc4854ae931e3c972169a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3f6058dc7dc4854ae931e3c972169a8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQPYWP7haRRn2GzeoKhltLQCaVo=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.49554+00 2025-12-09 10:15:47.495549+00 18785 LZ1391#上身2号色 SPMX-20240815314010 \N \N \N 1 \N [{"file_id": "732bb489-9a07-41bf-916b-b31006c927be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "622e487ec0d4470c8f862f281555faee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "622e487ec0d4470c8f862f281555faee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "622e487ec0d4470c8f862f281555faee.jpg", "file_size": 17646, "is_delete": false, "file_type": 1, "original_file_name": "LZ1391#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622e487ec0d4470c8f862f281555faee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622e487ec0d4470c8f862f281555faee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/622e487ec0d4470c8f862f281555faee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/622e487ec0d4470c8f862f281555faee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/622e487ec0d4470c8f862f281555faee.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWDsfUSldrDq15QBRr0SFZJH2h4=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.498615+00 2025-12-09 10:15:47.498622+00 18786 HXF-TB023#咖色M码 SPMX-20240815314016 \N \N \N 1 \N [{"file_id": "f99b2df4-41dc-4562-8505-c5e41d6c0fe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a73842d5c06404a999fbac06ddd2f3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a73842d5c06404a999fbac06ddd2f3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a73842d5c06404a999fbac06ddd2f3a.jpg", "file_size": 16529, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#咖色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a73842d5c06404a999fbac06ddd2f3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a73842d5c06404a999fbac06ddd2f3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a73842d5c06404a999fbac06ddd2f3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a73842d5c06404a999fbac06ddd2f3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a73842d5c06404a999fbac06ddd2f3a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrG8w8_u7htTMompdhbrof45Ozc=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.505032+00 2025-12-09 10:15:47.50504+00 18787 JX0009G#蓝色 SPMX-20240815314012 \N \N \N 1 \N [{"file_id": "be6fac91-d7be-4451-a061-fc1eeb09e65e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c800793d4c7e41bcbf9a586a9435c7cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c800793d4c7e41bcbf9a586a9435c7cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c800793d4c7e41bcbf9a586a9435c7cd.jpg", "file_size": 21229, "is_delete": false, "file_type": 1, "original_file_name": "JX0009G#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c800793d4c7e41bcbf9a586a9435c7cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c800793d4c7e41bcbf9a586a9435c7cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c800793d4c7e41bcbf9a586a9435c7cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c800793d4c7e41bcbf9a586a9435c7cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c800793d4c7e41bcbf9a586a9435c7cd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vIpJgJuoDRt0mTLJnbQj9030jMQ=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.508145+00 2025-12-09 10:15:47.508152+00 18788 CGH3202#墨绿 SPMX-20240815314008 \N \N \N 1 \N [{"file_id": "01528e9a-623a-47c2-ba8b-b1e6fc9102ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de6dd728ac3a42afa2b626fea63b34dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de6dd728ac3a42afa2b626fea63b34dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de6dd728ac3a42afa2b626fea63b34dd.jpg", "file_size": 20280, "is_delete": false, "file_type": 1, "original_file_name": "CGH3202#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6dd728ac3a42afa2b626fea63b34dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6dd728ac3a42afa2b626fea63b34dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de6dd728ac3a42afa2b626fea63b34dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de6dd728ac3a42afa2b626fea63b34dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de6dd728ac3a42afa2b626fea63b34dd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqZKPPV7wgkrPKPnTkPi7XaavS0=", "createTime": "2024-08-15 15:05:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.511248+00 2025-12-09 10:15:47.511255+00 18789 LJH2020#下节彩兰 SPMX-20240815314011 \N \N \N 1 \N [{"file_id": "566c651a-c4cc-42c9-8a40-31190bf8f40e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccd0eaf5a7cd437eb150b274b0593c97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccd0eaf5a7cd437eb150b274b0593c97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccd0eaf5a7cd437eb150b274b0593c97.jpg", "file_size": 40252, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#下节彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd0eaf5a7cd437eb150b274b0593c97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd0eaf5a7cd437eb150b274b0593c97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccd0eaf5a7cd437eb150b274b0593c97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccd0eaf5a7cd437eb150b274b0593c97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccd0eaf5a7cd437eb150b274b0593c97.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:az9kXZt2cRqvQNXiWPTNC3yhnyU=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.514284+00 2025-12-09 10:15:47.514291+00 18790 1231-42FWE#中童袖领匹布 SPMX-20240815314018 \N \N \N 1 \N [{"file_id": "3aa44e18-aab3-4159-84fb-6befd6691921", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29f43a867a7f480689824f94a9595c0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29f43a867a7f480689824f94a9595c0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29f43a867a7f480689824f94a9595c0c.jpg", "file_size": 8431, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f43a867a7f480689824f94a9595c0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f43a867a7f480689824f94a9595c0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f43a867a7f480689824f94a9595c0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29f43a867a7f480689824f94a9595c0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29f43a867a7f480689824f94a9595c0c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIj2fngxMAsbgtqr1wRIxjUygxU=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.517436+00 2025-12-09 10:15:47.517443+00 18791 LJH2020#下节桔色 SPMX-20240815314021 \N \N \N 1 \N [{"file_id": "bff9dce7-4806-43a9-beee-722c173d5751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6bb6817444d49e68bbdb4f1e17b8a28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6bb6817444d49e68bbdb4f1e17b8a28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6bb6817444d49e68bbdb4f1e17b8a28.jpg", "file_size": 41417, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#下节桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bb6817444d49e68bbdb4f1e17b8a28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bb6817444d49e68bbdb4f1e17b8a28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6bb6817444d49e68bbdb4f1e17b8a28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6bb6817444d49e68bbdb4f1e17b8a28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6bb6817444d49e68bbdb4f1e17b8a28.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTxVGQKGcPgNLBuEboA-Ryet9Ys=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.520477+00 2025-12-09 10:15:47.520483+00 18792 FX0003-68#RC23 SPMX-20240815314022 \N \N \N 1 \N [{"file_id": "be1cc2e9-385d-4764-98d3-98eb4323d788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a26870683b8d49c28ce6731a68707acd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a26870683b8d49c28ce6731a68707acd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a26870683b8d49c28ce6731a68707acd.jpg", "file_size": 46249, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-68#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26870683b8d49c28ce6731a68707acd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26870683b8d49c28ce6731a68707acd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26870683b8d49c28ce6731a68707acd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a26870683b8d49c28ce6731a68707acd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a26870683b8d49c28ce6731a68707acd.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c6-LjIux63S6vxy-t-ecNNXFX10=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.523504+00 2025-12-09 10:15:47.523509+00 18793 JX0010G#红 SPMX-20240815314032 \N \N \N 1 \N [{"file_id": "2ceee17c-e505-42b8-af64-b20b443b26c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee55e58523b546ff9c7aa0244b677f82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee55e58523b546ff9c7aa0244b677f82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee55e58523b546ff9c7aa0244b677f82.jpg", "file_size": 17932, "is_delete": false, "file_type": 1, "original_file_name": "JX0010G#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee55e58523b546ff9c7aa0244b677f82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee55e58523b546ff9c7aa0244b677f82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee55e58523b546ff9c7aa0244b677f82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee55e58523b546ff9c7aa0244b677f82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee55e58523b546ff9c7aa0244b677f82.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0BwwfHeIO2tjz0LLvl23mGHzdy8=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.52661+00 2025-12-09 10:15:47.526617+00 18794 HXF-TB023#咖色XL码 SPMX-20240815314025 \N \N \N 1 \N [{"file_id": "a2998e6e-0a69-4bb8-b9e4-8e5988722d60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "911d8994e42d4534bfa95486cb3fc84d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "911d8994e42d4534bfa95486cb3fc84d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "911d8994e42d4534bfa95486cb3fc84d.jpg", "file_size": 16611, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#咖色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911d8994e42d4534bfa95486cb3fc84d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911d8994e42d4534bfa95486cb3fc84d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/911d8994e42d4534bfa95486cb3fc84d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/911d8994e42d4534bfa95486cb3fc84d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/911d8994e42d4534bfa95486cb3fc84d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sxgtbg-lQYWdjheRv0LnJHOcCAI=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.529755+00 2025-12-09 10:15:47.529762+00 18795 JX0010A#WJC22 SPMX-20240815314020 \N \N \N 1 \N [{"file_id": "c3523d63-785a-4f83-8713-300c0fde61fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09e6eda160be4634bd90baa0dced579d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09e6eda160be4634bd90baa0dced579d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09e6eda160be4634bd90baa0dced579d.jpg", "file_size": 12264, "is_delete": false, "file_type": 1, "original_file_name": "JX0010A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e6eda160be4634bd90baa0dced579d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e6eda160be4634bd90baa0dced579d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e6eda160be4634bd90baa0dced579d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09e6eda160be4634bd90baa0dced579d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09e6eda160be4634bd90baa0dced579d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qlVuB8CEb32Sw3wqfbHROhj7UtQ=", "createTime": "2024-08-15 15:05:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.532864+00 2025-12-09 10:15:47.532871+00 18796 CGH3202#红色 SPMX-20240815314026 \N \N \N 1 \N [{"file_id": "3a763d04-1930-4cdb-825b-f0fa79f42547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cfbaecca2104898acd3e561c7362a58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cfbaecca2104898acd3e561c7362a58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cfbaecca2104898acd3e561c7362a58.jpg", "file_size": 20528, "is_delete": false, "file_type": 1, "original_file_name": "CGH3202#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfbaecca2104898acd3e561c7362a58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfbaecca2104898acd3e561c7362a58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cfbaecca2104898acd3e561c7362a58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cfbaecca2104898acd3e561c7362a58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cfbaecca2104898acd3e561c7362a58.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLfK00QLiLSI1v0RjVQGdaRv3XY=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.535942+00 2025-12-09 10:15:47.535949+00 18797 LZ1391#上身4号色 SPMX-20240815314029 \N \N \N 1 \N [{"file_id": "e632e01b-edee-4cae-a0ac-d987fb3672fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg", "file_size": 20424, "is_delete": false, "file_type": 1, "original_file_name": "LZ1391#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2cc0b8b6ba4afabc4b14c723ee57d5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXK9CJq6FxTEEEDunVzPYeq_9ls=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.538996+00 2025-12-09 10:15:47.539003+00 18798 233#-定位裁-卡其 SPMX-20240815314024 \N \N \N 1 \N [{"file_id": "cd9f2526-36e9-487b-91c7-be42b3915197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "870aa19dee2c493585778a5225db6a6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "870aa19dee2c493585778a5225db6a6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "870aa19dee2c493585778a5225db6a6f.jpg", "file_size": 79432, "is_delete": false, "file_type": 1, "original_file_name": "233#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870aa19dee2c493585778a5225db6a6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870aa19dee2c493585778a5225db6a6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/870aa19dee2c493585778a5225db6a6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/870aa19dee2c493585778a5225db6a6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/870aa19dee2c493585778a5225db6a6f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DaLZHugCiLfHLA29hx91gG5_GWc=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.542101+00 2025-12-09 10:15:47.542108+00 18799 0012-2FWE#绿色VS-D3 SPMX-20240815314027 \N \N \N 1 \N [{"file_id": "d9564284-e960-4772-a827-02b2431c289e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0324e0ea7a1f40fa8f3d71629a253606.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0324e0ea7a1f40fa8f3d71629a253606.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0324e0ea7a1f40fa8f3d71629a253606.jpg", "file_size": 7116, "is_delete": false, "file_type": 1, "original_file_name": "0012-2FWE#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0324e0ea7a1f40fa8f3d71629a253606.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0324e0ea7a1f40fa8f3d71629a253606.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0324e0ea7a1f40fa8f3d71629a253606.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0324e0ea7a1f40fa8f3d71629a253606.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0324e0ea7a1f40fa8f3d71629a253606.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ck7FR__DLjnAuEgYmeTkuSsX-gE=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.54511+00 2025-12-09 10:15:47.545117+00 18800 FX0003-69#RC23 SPMX-20240815314030 \N \N \N 1 \N [{"file_id": "863b186c-673d-4115-8e5d-3c34e526bfc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54df06405ee44d9793b941b6fe597088.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54df06405ee44d9793b941b6fe597088.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54df06405ee44d9793b941b6fe597088.jpg", "file_size": 72297, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-69#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54df06405ee44d9793b941b6fe597088.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54df06405ee44d9793b941b6fe597088.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54df06405ee44d9793b941b6fe597088.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54df06405ee44d9793b941b6fe597088.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54df06405ee44d9793b941b6fe597088.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRRFgRUt19-CrXzKOrJmuqza2Kc=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.548204+00 2025-12-09 10:15:47.54821+00 18801 8661#紫色LWQ15 SPMX-20240815314033 \N \N \N 1 \N [{"file_id": "9458488a-1905-4aa4-92ac-ebf90c3cae35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87fc90fa2a8f47f08121cb33e9bb441d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87fc90fa2a8f47f08121cb33e9bb441d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87fc90fa2a8f47f08121cb33e9bb441d.jpg", "file_size": 15944, "is_delete": false, "file_type": 1, "original_file_name": "8661#紫色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fc90fa2a8f47f08121cb33e9bb441d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fc90fa2a8f47f08121cb33e9bb441d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87fc90fa2a8f47f08121cb33e9bb441d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87fc90fa2a8f47f08121cb33e9bb441d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87fc90fa2a8f47f08121cb33e9bb441d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sKv2VaOVx7V9f73qsYcDYxUfMdE=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.551227+00 2025-12-09 10:15:47.551234+00 18802 1231-42FWE#小童6码 SPMX-20240815314028 \N \N \N 1 \N [{"file_id": "308a8953-b30f-4d29-8d46-295c3dadfc0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "553b4eee5ddd4e13a90088011101b498.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "553b4eee5ddd4e13a90088011101b498.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "553b4eee5ddd4e13a90088011101b498.jpg", "file_size": 18802, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553b4eee5ddd4e13a90088011101b498.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553b4eee5ddd4e13a90088011101b498.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553b4eee5ddd4e13a90088011101b498.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/553b4eee5ddd4e13a90088011101b498.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/553b4eee5ddd4e13a90088011101b498.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K4h7LZ3lLQ7Hqm3RoxylePU4mvU=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.55429+00 2025-12-09 10:15:47.554296+00 18803 8661#粉LWQ15 SPMX-20240815314023 \N \N \N 1 \N [{"file_id": "4e66c6a6-ee3e-4158-a1b8-2540b3c596e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "761a67455ade458c8c25389a320ee6a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "761a67455ade458c8c25389a320ee6a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "761a67455ade458c8c25389a320ee6a1.jpg", "file_size": 20551, "is_delete": false, "file_type": 1, "original_file_name": "8661#粉LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761a67455ade458c8c25389a320ee6a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761a67455ade458c8c25389a320ee6a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/761a67455ade458c8c25389a320ee6a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/761a67455ade458c8c25389a320ee6a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/761a67455ade458c8c25389a320ee6a1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBcSeijtGQifOyrHfyEP2cs1im4=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.557327+00 2025-12-09 10:15:47.557333+00 18804 LJH2020#下节玫红 SPMX-20240815314031 \N \N \N 1 \N [{"file_id": "0ff03eb8-6dea-44b3-9d7d-7e6f064110f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96ad39f320ca4dd38b770a3701653114.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96ad39f320ca4dd38b770a3701653114.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96ad39f320ca4dd38b770a3701653114.jpg", "file_size": 39146, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#下节玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ad39f320ca4dd38b770a3701653114.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ad39f320ca4dd38b770a3701653114.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96ad39f320ca4dd38b770a3701653114.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96ad39f320ca4dd38b770a3701653114.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96ad39f320ca4dd38b770a3701653114.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uA7z72d1fCAxKbSQvJHS0_22GL0=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.560398+00 2025-12-09 10:15:47.560404+00 18805 233#-定位裁-橙色 SPMX-20240815314035 \N \N \N 1 \N [{"file_id": "40a95e52-baaf-4748-9873-d77e3aedce45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8eb4e5dbca174624ac5d284d6ab41261.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8eb4e5dbca174624ac5d284d6ab41261.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8eb4e5dbca174624ac5d284d6ab41261.jpg", "file_size": 83530, "is_delete": false, "file_type": 1, "original_file_name": "233#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb4e5dbca174624ac5d284d6ab41261.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb4e5dbca174624ac5d284d6ab41261.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8eb4e5dbca174624ac5d284d6ab41261.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8eb4e5dbca174624ac5d284d6ab41261.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8eb4e5dbca174624ac5d284d6ab41261.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qm9d5NxRrcJ08GBa-caF7o9zi9c=", "createTime": "2024-08-15 15:05:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.563636+00 2025-12-09 10:15:47.563643+00 18806 HXF-TB023#蓝色2XL码 SPMX-20240815314034 \N \N \N 1 \N [{"file_id": "428ba69b-9427-4e18-9a6b-aa8d9a4a4046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a9ad0a77c704c00bbe0307106202e90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a9ad0a77c704c00bbe0307106202e90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a9ad0a77c704c00bbe0307106202e90.jpg", "file_size": 17277, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#蓝色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9ad0a77c704c00bbe0307106202e90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9ad0a77c704c00bbe0307106202e90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a9ad0a77c704c00bbe0307106202e90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a9ad0a77c704c00bbe0307106202e90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a9ad0a77c704c00bbe0307106202e90.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-o5j2chudEytqOAdOePilp-pKEI=", "createTime": "2024-08-15 15:05:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.566816+00 2025-12-09 10:15:47.566822+00 18807 1231-42FWE#小童8码+4码 SPMX-20240815314037 \N \N \N 1 \N [{"file_id": "ba883bdb-fea7-43ed-89d8-cbc1c9d9547f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9babd1bd99345b7bcfa30d9c52bca9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9babd1bd99345b7bcfa30d9c52bca9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9babd1bd99345b7bcfa30d9c52bca9b.jpg", "file_size": 18835, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9babd1bd99345b7bcfa30d9c52bca9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9babd1bd99345b7bcfa30d9c52bca9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9babd1bd99345b7bcfa30d9c52bca9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9babd1bd99345b7bcfa30d9c52bca9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9babd1bd99345b7bcfa30d9c52bca9b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JgIH6pZwLrM7Gi5KEHtQMLqsLJU=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.569779+00 2025-12-09 10:15:47.569786+00 18808 CGH3202#黑色 SPMX-20240815314036 \N \N \N 1 \N [{"file_id": "a8cf9d68-0409-4e49-b0b0-8e782fb6061f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5b4684bc9e846579d3c059ab8aa1ca3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5b4684bc9e846579d3c059ab8aa1ca3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5b4684bc9e846579d3c059ab8aa1ca3.jpg", "file_size": 22868, "is_delete": false, "file_type": 1, "original_file_name": "CGH3202#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b4684bc9e846579d3c059ab8aa1ca3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b4684bc9e846579d3c059ab8aa1ca3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5b4684bc9e846579d3c059ab8aa1ca3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5b4684bc9e846579d3c059ab8aa1ca3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5b4684bc9e846579d3c059ab8aa1ca3.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vsr9y4ebhgmDLW47fTS-PlL9O58=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.572827+00 2025-12-09 10:15:47.572834+00 18809 JX0010G#绿 SPMX-20240815314041 \N \N \N 1 \N [{"file_id": "3739555a-2403-46c1-8881-30dc6e29092b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b901a2a6dfba41dbb80d9ef90f439e35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b901a2a6dfba41dbb80d9ef90f439e35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b901a2a6dfba41dbb80d9ef90f439e35.jpg", "file_size": 21871, "is_delete": false, "file_type": 1, "original_file_name": "JX0010G#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b901a2a6dfba41dbb80d9ef90f439e35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b901a2a6dfba41dbb80d9ef90f439e35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b901a2a6dfba41dbb80d9ef90f439e35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b901a2a6dfba41dbb80d9ef90f439e35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b901a2a6dfba41dbb80d9ef90f439e35.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GmEw9QQecc-Pq5x0kvZeN-sks3o=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.575849+00 2025-12-09 10:15:47.575856+00 18810 HXF-TB023#蓝色M码 SPMX-20240815314051 \N \N \N 1 \N [{"file_id": "eb076860-79cd-4676-8be9-dd00e7137961", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b332764fe7724eef8cc8188784c0e6f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b332764fe7724eef8cc8188784c0e6f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b332764fe7724eef8cc8188784c0e6f1.jpg", "file_size": 17639, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#蓝色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b332764fe7724eef8cc8188784c0e6f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b332764fe7724eef8cc8188784c0e6f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b332764fe7724eef8cc8188784c0e6f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b332764fe7724eef8cc8188784c0e6f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b332764fe7724eef8cc8188784c0e6f1.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRbdaaF9d92aV7yLvMPFxvdMne4=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.579136+00 2025-12-09 10:15:47.579142+00 18811 LZ1392#上身1号色 SPMX-20240815314047 \N \N \N 1 \N [{"file_id": "9d263e4a-91f2-4837-a4fd-ebf73a82df76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg", "file_size": 18882, "is_delete": false, "file_type": 1, "original_file_name": "LZ1392#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa4f1d6b771e4f2ea92bc8bbed366a1d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S15Fo27xfgnXoMDXMO1XUqMw9o8=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.582298+00 2025-12-09 10:15:47.582304+00 18812 LZ1391#上身5号色 SPMX-20240815314040 \N \N \N 1 \N [{"file_id": "83ec8466-3d55-430f-9224-46c0da74b7b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "457d442197e64de1b0a0a96fd9eabd56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "457d442197e64de1b0a0a96fd9eabd56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "457d442197e64de1b0a0a96fd9eabd56.jpg", "file_size": 20545, "is_delete": false, "file_type": 1, "original_file_name": "LZ1391#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457d442197e64de1b0a0a96fd9eabd56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457d442197e64de1b0a0a96fd9eabd56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457d442197e64de1b0a0a96fd9eabd56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/457d442197e64de1b0a0a96fd9eabd56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/457d442197e64de1b0a0a96fd9eabd56.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_pmZnYrFHGXXJymLuaxLYjw84XE=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.585308+00 2025-12-09 10:15:47.585315+00 18813 FX0003-70#RC23 SPMX-20240815314052 \N \N \N 1 \N [{"file_id": "6a2208c6-6196-43d2-9a3f-f7ca6f761501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "983fdb050e57438280377f9957f91fc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "983fdb050e57438280377f9957f91fc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "983fdb050e57438280377f9957f91fc5.jpg", "file_size": 68500, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-70#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983fdb050e57438280377f9957f91fc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983fdb050e57438280377f9957f91fc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/983fdb050e57438280377f9957f91fc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/983fdb050e57438280377f9957f91fc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/983fdb050e57438280377f9957f91fc5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cxgl6RbgDn3LytWpFnJcudndLmo=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.588348+00 2025-12-09 10:15:47.588354+00 18814 FX0003-7#RC23 SPMX-20240815314043 \N \N \N 1 \N [{"file_id": "aa6ce762-2163-4d11-9180-1dc119ac0dba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdef9fd05417483b9556bbd2e846158f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdef9fd05417483b9556bbd2e846158f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdef9fd05417483b9556bbd2e846158f.jpg", "file_size": 12030, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-7#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdef9fd05417483b9556bbd2e846158f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdef9fd05417483b9556bbd2e846158f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdef9fd05417483b9556bbd2e846158f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdef9fd05417483b9556bbd2e846158f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdef9fd05417483b9556bbd2e846158f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjW96R1JB7FqWF0yqri0iNu0amw=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.591436+00 2025-12-09 10:15:47.591441+00 18815 1231-42FWE#小童袖领匹布 SPMX-20240815314048 \N \N \N 1 \N [{"file_id": "cb150dd3-cbbd-431e-ab09-9ff147934c2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg", "file_size": 8011, "is_delete": false, "file_type": 1, "original_file_name": "1231-42FWE#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaa21cab471c42cdbd9b3d70cb5c2c9c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z1y9VKzvu-QmX6FzVpHbl1VQFbY=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.594425+00 2025-12-09 10:15:47.594431+00 18816 0012-2FWF#V5曲线 SPMX-20240815314039 \N \N \N 1 \N [{"file_id": "0498f187-27dd-4d43-9395-097f737a51e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33047d14543b4f72950f7e110a93b517.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33047d14543b4f72950f7e110a93b517.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33047d14543b4f72950f7e110a93b517.jpg", "file_size": 29337, "is_delete": false, "file_type": 1, "original_file_name": "0012-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33047d14543b4f72950f7e110a93b517.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33047d14543b4f72950f7e110a93b517.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33047d14543b4f72950f7e110a93b517.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33047d14543b4f72950f7e110a93b517.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33047d14543b4f72950f7e110a93b517.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VSm2WTQCP8ZwiGp2gWhXnSievk=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.597433+00 2025-12-09 10:15:47.59744+00 18817 233#-定位裁-白色 SPMX-20240815314044 \N \N \N 1 \N [{"file_id": "7e47dfe0-bd31-4f79-b8b4-360ec24b53a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85d897cc0c8c44b299ed8fb20b13b726.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85d897cc0c8c44b299ed8fb20b13b726.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85d897cc0c8c44b299ed8fb20b13b726.jpg", "file_size": 78587, "is_delete": false, "file_type": 1, "original_file_name": "233#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d897cc0c8c44b299ed8fb20b13b726.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d897cc0c8c44b299ed8fb20b13b726.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85d897cc0c8c44b299ed8fb20b13b726.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85d897cc0c8c44b299ed8fb20b13b726.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85d897cc0c8c44b299ed8fb20b13b726.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sCFr9Wckxf_CyR-l8p9ZS_MmPWY=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.60044+00 2025-12-09 10:15:47.600446+00 18818 CGH3916#粉色 SPMX-20240815314046 \N \N \N 1 \N [{"file_id": "187ade0b-0662-4410-909b-09b260f4353e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8076b79241d8434fa0974a046dc3c05c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8076b79241d8434fa0974a046dc3c05c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8076b79241d8434fa0974a046dc3c05c.jpg", "file_size": 27219, "is_delete": false, "file_type": 1, "original_file_name": "CGH3916#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8076b79241d8434fa0974a046dc3c05c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8076b79241d8434fa0974a046dc3c05c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8076b79241d8434fa0974a046dc3c05c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8076b79241d8434fa0974a046dc3c05c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8076b79241d8434fa0974a046dc3c05c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wE2Fs2BXXJm693HUD21_DbepGRw=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.603497+00 2025-12-09 10:15:47.603503+00 18819 LJH2020#下节黄色 SPMX-20240815314038 \N \N \N 1 \N [{"file_id": "0e7c477c-44c6-47e4-8865-f8fd1075c274", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "446d00dce19c4fca9f0343fcbf368f7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "446d00dce19c4fca9f0343fcbf368f7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "446d00dce19c4fca9f0343fcbf368f7b.jpg", "file_size": 34902, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#下节黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446d00dce19c4fca9f0343fcbf368f7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446d00dce19c4fca9f0343fcbf368f7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/446d00dce19c4fca9f0343fcbf368f7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/446d00dce19c4fca9f0343fcbf368f7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/446d00dce19c4fca9f0343fcbf368f7b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_k4D4fhHA3_w85KDVts4RB0cuAM=", "createTime": "2024-08-15 15:05:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.606534+00 2025-12-09 10:15:47.606545+00 18820 0012-3FWE#深粉VS-D3 SPMX-20240815314053 \N \N \N 1 \N [{"file_id": "e26b65b6-c06d-4085-9c93-f7acdfc5134e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46993d9501b44d0b95bed7e91a4bdc9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46993d9501b44d0b95bed7e91a4bdc9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46993d9501b44d0b95bed7e91a4bdc9d.jpg", "file_size": 16059, "is_delete": false, "file_type": 1, "original_file_name": "0012-3FWE#深粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46993d9501b44d0b95bed7e91a4bdc9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46993d9501b44d0b95bed7e91a4bdc9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46993d9501b44d0b95bed7e91a4bdc9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46993d9501b44d0b95bed7e91a4bdc9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46993d9501b44d0b95bed7e91a4bdc9d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-7Dv8RnkRjNsADzFSVhJvF83DvQ=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.60957+00 2025-12-09 10:15:47.609576+00 18821 LJH2020#下节黑色 SPMX-20240815314049 \N \N \N 1 \N [{"file_id": "d42bc364-2af8-4957-b333-3bc30d311fba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4ae8684f718461590553a0b114b7ae8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4ae8684f718461590553a0b114b7ae8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4ae8684f718461590553a0b114b7ae8.jpg", "file_size": 34850, "is_delete": false, "file_type": 1, "original_file_name": "LJH2020#下节黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ae8684f718461590553a0b114b7ae8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ae8684f718461590553a0b114b7ae8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4ae8684f718461590553a0b114b7ae8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4ae8684f718461590553a0b114b7ae8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4ae8684f718461590553a0b114b7ae8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tntkQUJetnNVGtfrSLH4kNbpiX4=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.612512+00 2025-12-09 10:15:47.612519+00 18822 8686#LWQ15 SPMX-20240815314045 \N \N \N 1 \N [{"file_id": "6991810d-5774-4ff4-8f92-06ca489b361a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12a627db06264c3692f23ac3e03a91ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12a627db06264c3692f23ac3e03a91ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12a627db06264c3692f23ac3e03a91ec.jpg", "file_size": 16004, "is_delete": false, "file_type": 1, "original_file_name": "8686#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a627db06264c3692f23ac3e03a91ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a627db06264c3692f23ac3e03a91ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a627db06264c3692f23ac3e03a91ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12a627db06264c3692f23ac3e03a91ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12a627db06264c3692f23ac3e03a91ec.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43Tdm4BjMoTH0ZMNVCuvk2CuHIg=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.615553+00 2025-12-09 10:15:47.615558+00 18823 JX0010G#蓝 SPMX-20240815314050 \N \N \N 1 \N [{"file_id": "7676f7d9-a1a8-412e-9229-79c2bea59f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0878cca23b034777a0b810053beddffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0878cca23b034777a0b810053beddffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0878cca23b034777a0b810053beddffb.jpg", "file_size": 19941, "is_delete": false, "file_type": 1, "original_file_name": "JX0010G#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0878cca23b034777a0b810053beddffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0878cca23b034777a0b810053beddffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0878cca23b034777a0b810053beddffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0878cca23b034777a0b810053beddffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0878cca23b034777a0b810053beddffb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2nFA7ZhThY5fcbBgtMVXkCTBnI=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.618539+00 2025-12-09 10:15:47.618545+00 18824 HXF-TB023#蓝色L码 SPMX-20240815314042 \N \N \N 1 \N [{"file_id": "29f69079-060a-4643-9491-2df9d52acd4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6aeceae57ec040b7bddc9191628ca510.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6aeceae57ec040b7bddc9191628ca510.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6aeceae57ec040b7bddc9191628ca510.jpg", "file_size": 16388, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#蓝色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeceae57ec040b7bddc9191628ca510.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeceae57ec040b7bddc9191628ca510.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6aeceae57ec040b7bddc9191628ca510.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6aeceae57ec040b7bddc9191628ca510.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6aeceae57ec040b7bddc9191628ca510.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z5mpqjMQbxUNm5VqbWj6DmNV1cs=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.621556+00 2025-12-09 10:15:47.621562+00 18825 HXF-TB023#蓝色XL码 SPMX-20240815314060 \N \N \N 1 \N [{"file_id": "caf3c5f8-80d4-4de4-94b8-60fe6c3b3655", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37a6225681ad4b36b943c947854ea45c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37a6225681ad4b36b943c947854ea45c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37a6225681ad4b36b943c947854ea45c.jpg", "file_size": 16649, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#蓝色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6225681ad4b36b943c947854ea45c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6225681ad4b36b943c947854ea45c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37a6225681ad4b36b943c947854ea45c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37a6225681ad4b36b943c947854ea45c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37a6225681ad4b36b943c947854ea45c.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BmXDv39rLkJSTAsv42BGpFWh3SU=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.624554+00 2025-12-09 10:15:47.62456+00 18826 86928-1#土黄 SPMX-20240815314055 \N \N \N 1 \N [{"file_id": "3a3fe515-b5db-4c40-b687-92a339e86061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67397e9eb7fb4120ab3332115e4d5659.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67397e9eb7fb4120ab3332115e4d5659.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67397e9eb7fb4120ab3332115e4d5659.jpg", "file_size": 22043, "is_delete": false, "file_type": 1, "original_file_name": "86928-1#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67397e9eb7fb4120ab3332115e4d5659.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67397e9eb7fb4120ab3332115e4d5659.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67397e9eb7fb4120ab3332115e4d5659.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67397e9eb7fb4120ab3332115e4d5659.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67397e9eb7fb4120ab3332115e4d5659.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jPuGgwV2RTRtquxA6AEsaAvK6qE=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.627562+00 2025-12-09 10:15:47.627569+00 18827 1231-43FWE#中童12码+10码 SPMX-20240815314059 \N \N \N 1 \N [{"file_id": "cbb2ee63-6b35-4ab9-b476-5be0a1a4ae86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05c98dd9857c4c6e987e29a59eb97299.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05c98dd9857c4c6e987e29a59eb97299.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05c98dd9857c4c6e987e29a59eb97299.jpg", "file_size": 16932, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c98dd9857c4c6e987e29a59eb97299.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c98dd9857c4c6e987e29a59eb97299.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05c98dd9857c4c6e987e29a59eb97299.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05c98dd9857c4c6e987e29a59eb97299.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05c98dd9857c4c6e987e29a59eb97299.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7nTD7JLQLEdTrSUAbcYumxN-_A8=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.631206+00 2025-12-09 10:15:47.631214+00 18828 233#-定位裁-黄色 SPMX-20240815314054 \N \N \N 1 \N [{"file_id": "3028c991-53d5-42fc-9c84-b00a028245d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "422fe26557ca40eebe12c90c08c856b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "422fe26557ca40eebe12c90c08c856b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "422fe26557ca40eebe12c90c08c856b6.jpg", "file_size": 84268, "is_delete": false, "file_type": 1, "original_file_name": "233#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/422fe26557ca40eebe12c90c08c856b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/422fe26557ca40eebe12c90c08c856b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/422fe26557ca40eebe12c90c08c856b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/422fe26557ca40eebe12c90c08c856b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/422fe26557ca40eebe12c90c08c856b6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JdB1r1LaZF-hk-OqmDDcUHjlyUo=", "createTime": "2024-08-15 15:05:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.635161+00 2025-12-09 10:15:47.635167+00 18829 JX0010G#黄 SPMX-20240815314058 \N \N \N 1 \N [{"file_id": "2b4b3843-7e80-4bc4-960d-64cfffad81a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c833c2eaf62452f83819cd488995fe6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c833c2eaf62452f83819cd488995fe6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c833c2eaf62452f83819cd488995fe6.jpg", "file_size": 18948, "is_delete": false, "file_type": 1, "original_file_name": "JX0010G#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c833c2eaf62452f83819cd488995fe6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c833c2eaf62452f83819cd488995fe6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c833c2eaf62452f83819cd488995fe6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c833c2eaf62452f83819cd488995fe6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c833c2eaf62452f83819cd488995fe6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WdY2z52dgsmQ00SsJ86q3pIWk3E=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.638962+00 2025-12-09 10:15:47.638969+00 18830 0012-3FWE#灰色VS-D3番禺调色 SPMX-20240815314063 \N \N \N 1 \N [{"file_id": "de18f594-0118-48b4-bd9c-61b2f5202adc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505b3d1a15ea4c8896ea50ac52771880.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505b3d1a15ea4c8896ea50ac52771880.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505b3d1a15ea4c8896ea50ac52771880.jpg", "file_size": 17148, "is_delete": false, "file_type": 1, "original_file_name": "0012-3FWE#灰色VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b3d1a15ea4c8896ea50ac52771880.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b3d1a15ea4c8896ea50ac52771880.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b3d1a15ea4c8896ea50ac52771880.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505b3d1a15ea4c8896ea50ac52771880.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505b3d1a15ea4c8896ea50ac52771880.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:22uvUtETWiv4AidpJTMj8vRuIHE=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.642556+00 2025-12-09 10:15:47.642563+00 18831 LZ1392#上身2号色 SPMX-20240815314057 \N \N \N 1 \N [{"file_id": "5dd9602e-ac4e-4fec-819d-77be234f2476", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cba9efd226bf425397328d52a5b4eb30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cba9efd226bf425397328d52a5b4eb30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cba9efd226bf425397328d52a5b4eb30.jpg", "file_size": 18908, "is_delete": false, "file_type": 1, "original_file_name": "LZ1392#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba9efd226bf425397328d52a5b4eb30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba9efd226bf425397328d52a5b4eb30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cba9efd226bf425397328d52a5b4eb30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cba9efd226bf425397328d52a5b4eb30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cba9efd226bf425397328d52a5b4eb30.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nM3r1hYTq-ue9Fv-26vA1apMSps=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.64593+00 2025-12-09 10:15:47.645936+00 18832 FX0003-71#RC23 SPMX-20240815314062 \N \N \N 1 \N [{"file_id": "47d927ac-3a45-49a0-a41c-df613227686a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96f578cfcb18440894fb8117bb7e8b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96f578cfcb18440894fb8117bb7e8b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96f578cfcb18440894fb8117bb7e8b8b.jpg", "file_size": 64379, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-71#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f578cfcb18440894fb8117bb7e8b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f578cfcb18440894fb8117bb7e8b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96f578cfcb18440894fb8117bb7e8b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96f578cfcb18440894fb8117bb7e8b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96f578cfcb18440894fb8117bb7e8b8b.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WOg4FZ9WgA3wkmXJN16qysoyqT0=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.649447+00 2025-12-09 10:15:47.649455+00 18833 LJH2023#紫色 SPMX-20240815314061 \N \N \N 1 \N [{"file_id": "0cdf2ad6-e099-4d3e-9bbe-1328fb9378a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d5219af4b714c068a8b655f0de0d87f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d5219af4b714c068a8b655f0de0d87f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d5219af4b714c068a8b655f0de0d87f.jpg", "file_size": 41782, "is_delete": false, "file_type": 1, "original_file_name": "LJH2023#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5219af4b714c068a8b655f0de0d87f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5219af4b714c068a8b655f0de0d87f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d5219af4b714c068a8b655f0de0d87f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d5219af4b714c068a8b655f0de0d87f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d5219af4b714c068a8b655f0de0d87f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZO1ocqU3kAoNhubc_PXIV4qJyTM=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.652832+00 2025-12-09 10:15:47.652838+00 18834 CGH3916#红色 SPMX-20240815314056 \N \N \N 1 \N [{"file_id": "1aadfa32-42f0-4898-91f2-906ef74c02e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6351d269daaf4510a362cfb5f765d4a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6351d269daaf4510a362cfb5f765d4a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6351d269daaf4510a362cfb5f765d4a8.jpg", "file_size": 26781, "is_delete": false, "file_type": 1, "original_file_name": "CGH3916#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6351d269daaf4510a362cfb5f765d4a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6351d269daaf4510a362cfb5f765d4a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6351d269daaf4510a362cfb5f765d4a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6351d269daaf4510a362cfb5f765d4a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6351d269daaf4510a362cfb5f765d4a8.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NbrPFIFc8YFPBgsPoCz6Bgl9o_E=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.670828+00 2025-12-09 10:15:47.670834+00 18839 FX0003-71#黑色 SPMX-20240815314070 \N \N \N 1 \N [{"file_id": "24ea00ed-9ccd-4a65-97f3-3a5346cc20a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0f113fd52df45ecb5ddbb3649c80d86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0f113fd52df45ecb5ddbb3649c80d86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0f113fd52df45ecb5ddbb3649c80d86.jpg", "file_size": 70463, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-71#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f113fd52df45ecb5ddbb3649c80d86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f113fd52df45ecb5ddbb3649c80d86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0f113fd52df45ecb5ddbb3649c80d86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0f113fd52df45ecb5ddbb3649c80d86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0f113fd52df45ecb5ddbb3649c80d86.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nohK1y7FTZX-C-ap7gosKPg4ysg=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.656099+00 2025-12-09 10:15:47.656105+00 18835 0012-3FWE#灰色VS-D3龙潭调色 SPMX-20240815314072 \N \N \N 1 \N [{"file_id": "ab769b42-98d1-4914-b6ae-99b111168f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e4e8727cc454f8a83a9058981d80051.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e4e8727cc454f8a83a9058981d80051.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e4e8727cc454f8a83a9058981d80051.jpg", "file_size": 16382, "is_delete": false, "file_type": 1, "original_file_name": "0012-3FWE#灰色VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4e8727cc454f8a83a9058981d80051.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4e8727cc454f8a83a9058981d80051.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4e8727cc454f8a83a9058981d80051.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e4e8727cc454f8a83a9058981d80051.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e4e8727cc454f8a83a9058981d80051.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m_EdkUpMk6Dd96YCXSUxUz0qVno=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.659577+00 2025-12-09 10:15:47.659584+00 18836 86928-1#枣红 SPMX-20240815314064 \N \N \N 1 \N [{"file_id": "c619f4c6-519c-4709-804e-9432a8af3185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "544bf975a3944eb89bf1fc1eb4762e99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "544bf975a3944eb89bf1fc1eb4762e99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "544bf975a3944eb89bf1fc1eb4762e99.jpg", "file_size": 22428, "is_delete": false, "file_type": 1, "original_file_name": "86928-1#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf975a3944eb89bf1fc1eb4762e99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf975a3944eb89bf1fc1eb4762e99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/544bf975a3944eb89bf1fc1eb4762e99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/544bf975a3944eb89bf1fc1eb4762e99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/544bf975a3944eb89bf1fc1eb4762e99.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCMZH8tRj1SeEiNMiZSMaFgtvJ8=", "createTime": "2024-08-15 15:05:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.663459+00 2025-12-09 10:15:47.663466+00 18837 1231-43FWE#中童14码 SPMX-20240815314069 \N \N \N 1 \N [{"file_id": "ed76637c-1f4c-4c5e-a638-7d881f3c4d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg", "file_size": 16014, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf0dd6c31b6495a9441a4f74fbe7fa0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiH6MYhGQf7YbH9sS-okls7zj8I=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.667521+00 2025-12-09 10:15:47.667527+00 18838 HXF-TB023#领子+袖口 SPMX-20240815314071 \N \N \N 1 \N [{"file_id": "d2131469-5dbe-4b70-b657-99432ce5f527", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86c26c368d994e99ab7c49d2a8794d33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86c26c368d994e99ab7c49d2a8794d33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86c26c368d994e99ab7c49d2a8794d33.jpg", "file_size": 12674, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#领子+袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c26c368d994e99ab7c49d2a8794d33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c26c368d994e99ab7c49d2a8794d33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c26c368d994e99ab7c49d2a8794d33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86c26c368d994e99ab7c49d2a8794d33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86c26c368d994e99ab7c49d2a8794d33.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0GoXOsUU7sqRCxIlkjC5TOFmnyU=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.674132+00 2025-12-09 10:15:47.674139+00 18840 CGH3916#黄色 SPMX-20240815314066 \N \N \N 1 \N [{"file_id": "08c58be6-2066-411f-8de3-36877814a962", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86ab8e8341e848d7814de8fc97c46190.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86ab8e8341e848d7814de8fc97c46190.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86ab8e8341e848d7814de8fc97c46190.jpg", "file_size": 27651, "is_delete": false, "file_type": 1, "original_file_name": "CGH3916#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ab8e8341e848d7814de8fc97c46190.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ab8e8341e848d7814de8fc97c46190.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86ab8e8341e848d7814de8fc97c46190.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86ab8e8341e848d7814de8fc97c46190.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86ab8e8341e848d7814de8fc97c46190.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shdHMpUUhjF_TeTZxN_ep1PXQ4I=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.677526+00 2025-12-09 10:15:47.677533+00 18841 233#-定位裁-黑色 SPMX-20240815314067 \N \N \N 1 \N [{"file_id": "c50e7266-e52a-4e5c-834b-849c3a0990ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75b175cf202f47e8bcffda1a005520e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75b175cf202f47e8bcffda1a005520e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75b175cf202f47e8bcffda1a005520e0.jpg", "file_size": 78818, "is_delete": false, "file_type": 1, "original_file_name": "233#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b175cf202f47e8bcffda1a005520e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b175cf202f47e8bcffda1a005520e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b175cf202f47e8bcffda1a005520e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75b175cf202f47e8bcffda1a005520e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75b175cf202f47e8bcffda1a005520e0.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23-JJh4IK3sYbsETlfKN2wbO3OE=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.680672+00 2025-12-09 10:15:47.680679+00 18842 JX0010G#黑 SPMX-20240815314068 \N \N \N 1 \N [{"file_id": "4124ebca-95b0-4463-85e5-4f3eb64103a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "028f30f47c044f61b6994a64809a5ee4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "028f30f47c044f61b6994a64809a5ee4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "028f30f47c044f61b6994a64809a5ee4.jpg", "file_size": 28933, "is_delete": false, "file_type": 1, "original_file_name": "JX0010G#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028f30f47c044f61b6994a64809a5ee4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028f30f47c044f61b6994a64809a5ee4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028f30f47c044f61b6994a64809a5ee4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/028f30f47c044f61b6994a64809a5ee4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/028f30f47c044f61b6994a64809a5ee4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KphY9PX3XymLf83KarviBpmsQA0=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.68381+00 2025-12-09 10:15:47.683817+00 18843 LZ1392#上身3号色 SPMX-20240815314065 \N \N \N 1 \N [{"file_id": "670fe746-56e0-4bcc-a0af-367fd9d944c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48b9208801b84bdeb46a0f5ea8f5af2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48b9208801b84bdeb46a0f5ea8f5af2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48b9208801b84bdeb46a0f5ea8f5af2d.jpg", "file_size": 18247, "is_delete": false, "file_type": 1, "original_file_name": "LZ1392#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b9208801b84bdeb46a0f5ea8f5af2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b9208801b84bdeb46a0f5ea8f5af2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48b9208801b84bdeb46a0f5ea8f5af2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48b9208801b84bdeb46a0f5ea8f5af2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48b9208801b84bdeb46a0f5ea8f5af2d.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7_1G86_mmmA1nB8klJld6nL9emA=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.686861+00 2025-12-09 10:15:47.686867+00 18844 HXF-TB023#领子+袖口2XL码 SPMX-20240815314080 \N \N \N 1 \N [{"file_id": "a8720cd5-f6ad-4b1e-8f3a-25219682d8c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46da85da8d054ca4af3d6d460eedf314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46da85da8d054ca4af3d6d460eedf314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46da85da8d054ca4af3d6d460eedf314.jpg", "file_size": 13126, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#领子+袖口2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46da85da8d054ca4af3d6d460eedf314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46da85da8d054ca4af3d6d460eedf314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46da85da8d054ca4af3d6d460eedf314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46da85da8d054ca4af3d6d460eedf314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46da85da8d054ca4af3d6d460eedf314.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qdV3wS4-m33TQsmSSBNyIj_nUcc=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.690103+00 2025-12-09 10:15:47.69011+00 18845 FX0003-72#RC23 SPMX-20240815314082 \N \N \N 1 \N [{"file_id": "993781af-0262-494c-b56a-94026f642ca4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0063cf8e8a704a6fa19f0c097e372785.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0063cf8e8a704a6fa19f0c097e372785.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0063cf8e8a704a6fa19f0c097e372785.jpg", "file_size": 45532, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-72#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0063cf8e8a704a6fa19f0c097e372785.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0063cf8e8a704a6fa19f0c097e372785.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0063cf8e8a704a6fa19f0c097e372785.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0063cf8e8a704a6fa19f0c097e372785.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0063cf8e8a704a6fa19f0c097e372785.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqOjkvrn2wx-dPZp0KO5PlT5kBA=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.693365+00 2025-12-09 10:15:47.693372+00 18846 JX0011A#WJC22 SPMX-20240815314078 \N \N \N 1 \N [{"file_id": "aa97d7f8-2d7d-4c7b-89ff-5818ae2a32ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4af00825c1cb421fb0e4b38e0870e90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4af00825c1cb421fb0e4b38e0870e90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4af00825c1cb421fb0e4b38e0870e90e.jpg", "file_size": 16235, "is_delete": false, "file_type": 1, "original_file_name": "JX0011A#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af00825c1cb421fb0e4b38e0870e90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af00825c1cb421fb0e4b38e0870e90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4af00825c1cb421fb0e4b38e0870e90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4af00825c1cb421fb0e4b38e0870e90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4af00825c1cb421fb0e4b38e0870e90e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MX9xvlXlLonOxzV4EHr-XSPxxhY=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.696725+00 2025-12-09 10:15:47.69673+00 18847 CGH3920#彩蓝 SPMX-20240815314077 \N \N \N 1 \N [{"file_id": "de8cafba-c248-4b13-a3ac-421d4b4219b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d99cee438034c84b6d577f27114f45e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d99cee438034c84b6d577f27114f45e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d99cee438034c84b6d577f27114f45e.jpg", "file_size": 19100, "is_delete": false, "file_type": 1, "original_file_name": "CGH3920#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d99cee438034c84b6d577f27114f45e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d99cee438034c84b6d577f27114f45e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d99cee438034c84b6d577f27114f45e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d99cee438034c84b6d577f27114f45e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d99cee438034c84b6d577f27114f45e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4t8PPnfyJcaMUHGu-yEk4iEyms=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.699859+00 2025-12-09 10:15:47.699865+00 18848 1231-43FWE#中童袖领匹布 SPMX-20240815314081 \N \N \N 1 \N [{"file_id": "5b9cc379-3b6b-4285-bbe3-ca7dcee68aad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07c256f463a44bf3978199ff4ebad1b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07c256f463a44bf3978199ff4ebad1b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07c256f463a44bf3978199ff4ebad1b7.jpg", "file_size": 8599, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07c256f463a44bf3978199ff4ebad1b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07c256f463a44bf3978199ff4ebad1b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07c256f463a44bf3978199ff4ebad1b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07c256f463a44bf3978199ff4ebad1b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07c256f463a44bf3978199ff4ebad1b7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCrLh2uo0Z77uICOoPncs_9VZp8=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.703084+00 2025-12-09 10:15:47.703091+00 18849 86928-1#蓝绿 SPMX-20240815314074 \N \N \N 1 \N [{"file_id": "7830d2ad-ab21-441b-b4e0-8f8efc845137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b001cb1777422cb7dbfe841d27e35e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b001cb1777422cb7dbfe841d27e35e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b001cb1777422cb7dbfe841d27e35e.jpg", "file_size": 22305, "is_delete": false, "file_type": 1, "original_file_name": "86928-1#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b001cb1777422cb7dbfe841d27e35e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b001cb1777422cb7dbfe841d27e35e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b001cb1777422cb7dbfe841d27e35e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b001cb1777422cb7dbfe841d27e35e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b001cb1777422cb7dbfe841d27e35e.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nHMqekAQ8vjJbvP-OSeeY2QYYc=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.706166+00 2025-12-09 10:15:47.706172+00 18850 LJH2023#绿色 SPMX-20240815314083 \N \N \N 1 \N [{"file_id": "0daf100e-e808-4adf-9499-ce40f9f4b237", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1ad870c455f419caadd0cc7575a35fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1ad870c455f419caadd0cc7575a35fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1ad870c455f419caadd0cc7575a35fb.jpg", "file_size": 44907, "is_delete": false, "file_type": 1, "original_file_name": "LJH2023#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ad870c455f419caadd0cc7575a35fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ad870c455f419caadd0cc7575a35fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ad870c455f419caadd0cc7575a35fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1ad870c455f419caadd0cc7575a35fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1ad870c455f419caadd0cc7575a35fb.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NJWVmJvIzFDkPmdXCVoMO58iN0E=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.709288+00 2025-12-09 10:15:47.709295+00 18851 0012-3FWE#绿色VS-D3 SPMX-20240815314079 \N \N \N 1 \N [{"file_id": "f8c2962a-7f00-47a8-8749-38260d8761e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a16453c8518e411ea7fff8e92b6659c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a16453c8518e411ea7fff8e92b6659c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a16453c8518e411ea7fff8e92b6659c5.jpg", "file_size": 14367, "is_delete": false, "file_type": 1, "original_file_name": "0012-3FWE#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a16453c8518e411ea7fff8e92b6659c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a16453c8518e411ea7fff8e92b6659c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a16453c8518e411ea7fff8e92b6659c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a16453c8518e411ea7fff8e92b6659c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a16453c8518e411ea7fff8e92b6659c5.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:09l8TZZImplbyb-59cvtXCf7sNQ=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.712288+00 2025-12-09 10:15:47.712294+00 18852 LZ1392#上身4号色 SPMX-20240815314076 \N \N \N 1 \N [{"file_id": "7084c460-32bc-4a50-8b1d-d78ca76b8e4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72d380990a404f928191d5f61efda3af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72d380990a404f928191d5f61efda3af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72d380990a404f928191d5f61efda3af.jpg", "file_size": 19392, "is_delete": false, "file_type": 1, "original_file_name": "LZ1392#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d380990a404f928191d5f61efda3af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d380990a404f928191d5f61efda3af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72d380990a404f928191d5f61efda3af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72d380990a404f928191d5f61efda3af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72d380990a404f928191d5f61efda3af.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xv3aBRkBzo2yxrM5h1jq5A-DRAI=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.715404+00 2025-12-09 10:15:47.71541+00 18853 23309FWF#V5曲线 SPMX-20240815314075 \N \N \N 1 \N [{"file_id": "b9fbe719-e928-41af-9106-7c17544bd8ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce3ed3b622f44b618efe983f797f6748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce3ed3b622f44b618efe983f797f6748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce3ed3b622f44b618efe983f797f6748.jpg", "file_size": 20198, "is_delete": false, "file_type": 1, "original_file_name": "23309FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3ed3b622f44b618efe983f797f6748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3ed3b622f44b618efe983f797f6748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3ed3b622f44b618efe983f797f6748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce3ed3b622f44b618efe983f797f6748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce3ed3b622f44b618efe983f797f6748.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xb76Qinlm0agvWhzbiGRjqI8DI8=", "createTime": "2024-08-15 15:05:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.718401+00 2025-12-09 10:15:47.718407+00 18854 LJH2023#红色 SPMX-20240815314073 \N \N \N 1 \N [{"file_id": "21aa39ff-38f3-4b5c-bd4c-8f4afb9b80c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00c8b21f8c93402f84a8c9a2349b503a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00c8b21f8c93402f84a8c9a2349b503a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00c8b21f8c93402f84a8c9a2349b503a.jpg", "file_size": 42251, "is_delete": false, "file_type": 1, "original_file_name": "LJH2023#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8b21f8c93402f84a8c9a2349b503a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8b21f8c93402f84a8c9a2349b503a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00c8b21f8c93402f84a8c9a2349b503a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00c8b21f8c93402f84a8c9a2349b503a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00c8b21f8c93402f84a8c9a2349b503a.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wz_W36F1dMmKms2IiA1uXKYX2YM=", "createTime": "2024-08-15 15:05:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.721457+00 2025-12-09 10:15:47.721463+00 18855 LZ1392#上身5号色 SPMX-20240815314086 \N \N \N 1 \N [{"file_id": "fd3bc6c3-bdb2-4b6b-aaaa-3591aff1a7d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c447b45b1e3f4c6f83dedfa35d84b590.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c447b45b1e3f4c6f83dedfa35d84b590.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c447b45b1e3f4c6f83dedfa35d84b590.jpg", "file_size": 18550, "is_delete": false, "file_type": 1, "original_file_name": "LZ1392#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c447b45b1e3f4c6f83dedfa35d84b590.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c447b45b1e3f4c6f83dedfa35d84b590.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c447b45b1e3f4c6f83dedfa35d84b590.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c447b45b1e3f4c6f83dedfa35d84b590.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c447b45b1e3f4c6f83dedfa35d84b590.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-owbUZJBTEubh6dahY7JSNEr0rc=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.724479+00 2025-12-09 10:15:47.724485+00 18856 FX0003-72#杏色 SPMX-20240815314089 \N \N \N 1 \N [{"file_id": "a4f3824a-d577-4bbd-a433-30803584264e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5208a676cb504b18973137218875a8c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5208a676cb504b18973137218875a8c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5208a676cb504b18973137218875a8c7.jpg", "file_size": 38629, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-72#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5208a676cb504b18973137218875a8c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5208a676cb504b18973137218875a8c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5208a676cb504b18973137218875a8c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5208a676cb504b18973137218875a8c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5208a676cb504b18973137218875a8c7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osJtjZeSFd4wlEYUqZvYJ62LD-I=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.727528+00 2025-12-09 10:15:47.727535+00 18857 1231-43FWE#小童6码 SPMX-20240815314088 \N \N \N 1 \N [{"file_id": "dc5ce39b-e2c4-470e-8e03-8cd66335dc97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6af2fc1b87144d9a56a9ea8bf9f3126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6af2fc1b87144d9a56a9ea8bf9f3126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6af2fc1b87144d9a56a9ea8bf9f3126.jpg", "file_size": 19344, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6af2fc1b87144d9a56a9ea8bf9f3126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6af2fc1b87144d9a56a9ea8bf9f3126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6af2fc1b87144d9a56a9ea8bf9f3126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6af2fc1b87144d9a56a9ea8bf9f3126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6af2fc1b87144d9a56a9ea8bf9f3126.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c2phO6wZ89102ciJgmdva-0-5FU=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.730944+00 2025-12-09 10:15:47.730954+00 18858 0012-3FWF#V5曲线 SPMX-20240815314092 \N \N \N 1 \N [{"file_id": "80676cc7-b769-4e25-af8a-e90b60287cad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fff1ea164e84045933889b60c9a91ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fff1ea164e84045933889b60c9a91ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fff1ea164e84045933889b60c9a91ef.jpg", "file_size": 12135, "is_delete": false, "file_type": 1, "original_file_name": "0012-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fff1ea164e84045933889b60c9a91ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fff1ea164e84045933889b60c9a91ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fff1ea164e84045933889b60c9a91ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fff1ea164e84045933889b60c9a91ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fff1ea164e84045933889b60c9a91ef.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7N1jKb-dciSZPmyfIPDHFCLysSo=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.73474+00 2025-12-09 10:15:47.734751+00 18859 CGH3920#桔红 SPMX-20240815314091 \N \N \N 1 \N [{"file_id": "7d0a635d-510b-4591-b368-d3f95775df2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1fa0d9ec9854cdea9a974821487b2c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1fa0d9ec9854cdea9a974821487b2c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1fa0d9ec9854cdea9a974821487b2c7.jpg", "file_size": 19298, "is_delete": false, "file_type": 1, "original_file_name": "CGH3920#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fa0d9ec9854cdea9a974821487b2c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fa0d9ec9854cdea9a974821487b2c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1fa0d9ec9854cdea9a974821487b2c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1fa0d9ec9854cdea9a974821487b2c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1fa0d9ec9854cdea9a974821487b2c7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KwdTEkNitWfpTZ3jwofRD1its5I=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.738133+00 2025-12-09 10:15:47.73814+00 18860 HXF-TB023#领子+袖口L码 SPMX-20240815314090 \N \N \N 1 \N [{"file_id": "325c61f4-c96d-4df5-aa66-eb5b3f36b852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15a1da12e76a4ea2a689c0286416cf32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15a1da12e76a4ea2a689c0286416cf32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15a1da12e76a4ea2a689c0286416cf32.jpg", "file_size": 12668, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#领子+袖口L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a1da12e76a4ea2a689c0286416cf32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a1da12e76a4ea2a689c0286416cf32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a1da12e76a4ea2a689c0286416cf32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15a1da12e76a4ea2a689c0286416cf32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15a1da12e76a4ea2a689c0286416cf32.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQtJp7FBAxZfTrig2IKIrifCWgI=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.741229+00 2025-12-09 10:15:47.741237+00 18861 86928-1#黑灰 SPMX-20240815314084 \N \N \N 1 \N [{"file_id": "e69a0167-8c93-4c2d-b614-bd2b5ea2ed0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29f5ef52e6a24697ab7db40030345b13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29f5ef52e6a24697ab7db40030345b13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29f5ef52e6a24697ab7db40030345b13.jpg", "file_size": 20524, "is_delete": false, "file_type": 1, "original_file_name": "86928-1#黑灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f5ef52e6a24697ab7db40030345b13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f5ef52e6a24697ab7db40030345b13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29f5ef52e6a24697ab7db40030345b13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29f5ef52e6a24697ab7db40030345b13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29f5ef52e6a24697ab7db40030345b13.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ag6wexBMeKq7aEL6pZtp-eraWNE=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.74425+00 2025-12-09 10:15:47.744257+00 18862 JX0012#红色 SPMX-20240815314087 \N \N \N 1 \N [{"file_id": "6fb58a2b-b414-4380-91a5-1b62f74d1911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feaac0346087482eb0b2894b430c789f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feaac0346087482eb0b2894b430c789f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feaac0346087482eb0b2894b430c789f.jpg", "file_size": 21844, "is_delete": false, "file_type": 1, "original_file_name": "JX0012#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feaac0346087482eb0b2894b430c789f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feaac0346087482eb0b2894b430c789f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feaac0346087482eb0b2894b430c789f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feaac0346087482eb0b2894b430c789f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feaac0346087482eb0b2894b430c789f.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lwdCgOL9WWZYRiclFI3xbIrfVk=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.74735+00 2025-12-09 10:15:47.747356+00 18863 23327FWF#橙色 SPMX-20240815314085 \N \N \N 1 \N [{"file_id": "cf3d32e8-5f42-45b3-b4ac-631c6a69571c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "756ae1948df64e9cba550c0a41b30dfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "756ae1948df64e9cba550c0a41b30dfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "756ae1948df64e9cba550c0a41b30dfa.jpg", "file_size": 10760, "is_delete": false, "file_type": 1, "original_file_name": "23327FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756ae1948df64e9cba550c0a41b30dfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756ae1948df64e9cba550c0a41b30dfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/756ae1948df64e9cba550c0a41b30dfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/756ae1948df64e9cba550c0a41b30dfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/756ae1948df64e9cba550c0a41b30dfa.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbtaoONNsfgCxdWXP7whItJr-y4=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.750303+00 2025-12-09 10:15:47.750309+00 18864 FX0003-72#绿色 SPMX-20240815314098 \N \N \N 1 \N [{"file_id": "f428b23f-dccb-4cf3-b3c0-ef87460e5f69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "856ff352c05a4db496cd2f49c91e29f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "856ff352c05a4db496cd2f49c91e29f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "856ff352c05a4db496cd2f49c91e29f4.jpg", "file_size": 39615, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-72#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856ff352c05a4db496cd2f49c91e29f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856ff352c05a4db496cd2f49c91e29f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/856ff352c05a4db496cd2f49c91e29f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/856ff352c05a4db496cd2f49c91e29f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/856ff352c05a4db496cd2f49c91e29f4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOWb17WkV8D0H3kwg5pHOvBcv7w=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.753442+00 2025-12-09 10:15:47.753447+00 18865 8698-1#WJC22 SPMX-20240815314094 \N \N \N 1 \N [{"file_id": "7882bfd0-3bec-4c37-aabc-51868b25bee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895f41c40ac4427bae0ad3e6afa1d2f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895f41c40ac4427bae0ad3e6afa1d2f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895f41c40ac4427bae0ad3e6afa1d2f6.jpg", "file_size": 19988, "is_delete": false, "file_type": 1, "original_file_name": "8698-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f41c40ac4427bae0ad3e6afa1d2f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f41c40ac4427bae0ad3e6afa1d2f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895f41c40ac4427bae0ad3e6afa1d2f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895f41c40ac4427bae0ad3e6afa1d2f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895f41c40ac4427bae0ad3e6afa1d2f6.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JX3ZTNYraGmoAnjVCeXetyWQgo=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.75649+00 2025-12-09 10:15:47.756496+00 18866 JX0013G# SPMX-20240815314097 \N \N \N 1 \N [{"file_id": "599422bc-1d73-4e5b-b846-6861885370b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db6db5501394b439c32f8197f6828d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db6db5501394b439c32f8197f6828d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db6db5501394b439c32f8197f6828d4.jpg", "file_size": 22091, "is_delete": false, "file_type": 1, "original_file_name": "JX0013G#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db6db5501394b439c32f8197f6828d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db6db5501394b439c32f8197f6828d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db6db5501394b439c32f8197f6828d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db6db5501394b439c32f8197f6828d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db6db5501394b439c32f8197f6828d4.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YMEOdGX3p18FxYZ5Toy9x5j8dNw=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.759553+00 2025-12-09 10:15:47.759559+00 18867 CGH3920#粉色 SPMX-20240815314100 \N \N \N 1 \N [{"file_id": "da0f9b4e-8a0b-4cb4-b68e-3329407882a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c50345ea6941519fe45eff7ae223f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c50345ea6941519fe45eff7ae223f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c50345ea6941519fe45eff7ae223f7.jpg", "file_size": 16374, "is_delete": false, "file_type": 1, "original_file_name": "CGH3920#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c50345ea6941519fe45eff7ae223f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c50345ea6941519fe45eff7ae223f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c50345ea6941519fe45eff7ae223f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c50345ea6941519fe45eff7ae223f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c50345ea6941519fe45eff7ae223f7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qOZ-cY43xs0SZ0uAvZHv2BON9TE=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:47.762667+00 2025-12-09 10:15:47.762674+00 18868 LZ1393#上身1号色 SPMX-20240815314096 \N \N \N 1 \N [{"file_id": "1682e7f2-7db3-4219-967a-7980e065c279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33ace69c88f44df3aadcdf0d26080ca7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33ace69c88f44df3aadcdf0d26080ca7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33ace69c88f44df3aadcdf0d26080ca7.jpg", "file_size": 20529, "is_delete": false, "file_type": 1, "original_file_name": "LZ1393#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ace69c88f44df3aadcdf0d26080ca7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ace69c88f44df3aadcdf0d26080ca7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33ace69c88f44df3aadcdf0d26080ca7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33ace69c88f44df3aadcdf0d26080ca7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33ace69c88f44df3aadcdf0d26080ca7.jpg?e=1765361746&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hqAhdowHRSpzP7py1zphqwfJBHU=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.59024+00 2025-12-09 10:15:48.590249+00 18869 1231-43FWE#小童8码+4码 SPMX-20240815314099 \N \N \N 1 \N [{"file_id": "3e9f53f2-7e5e-456a-a581-b2ec91e269a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b14fe29bb9412c8e8c803917bbedf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b14fe29bb9412c8e8c803917bbedf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b14fe29bb9412c8e8c803917bbedf2.jpg", "file_size": 19615, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b14fe29bb9412c8e8c803917bbedf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b14fe29bb9412c8e8c803917bbedf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b14fe29bb9412c8e8c803917bbedf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b14fe29bb9412c8e8c803917bbedf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b14fe29bb9412c8e8c803917bbedf2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I9qxFxJdBlnNeRulHdxJmYuggyY=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.594723+00 2025-12-09 10:15:48.59473+00 18870 LJH2023#蓝色 SPMX-20240815314093 \N \N \N 1 \N [{"file_id": "e5ee9845-8ebd-4540-bcb2-b9effce4b393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97f4414613624e61946b32e079a9cfe6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97f4414613624e61946b32e079a9cfe6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97f4414613624e61946b32e079a9cfe6.jpg", "file_size": 44934, "is_delete": false, "file_type": 1, "original_file_name": "LJH2023#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f4414613624e61946b32e079a9cfe6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f4414613624e61946b32e079a9cfe6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f4414613624e61946b32e079a9cfe6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97f4414613624e61946b32e079a9cfe6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97f4414613624e61946b32e079a9cfe6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCJHSwv6LECrB3ElvlaDlwJu3us=", "createTime": "2024-08-15 15:05:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.5982+00 2025-12-09 10:15:48.598206+00 18871 23327FWF#橙色款匹布 SPMX-20240815314095 \N \N \N 1 \N [{"file_id": "548a4f5a-eb1a-4289-84f8-0ac5ad31cef5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc929d11fe3b43dc8946a753a9b529da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc929d11fe3b43dc8946a753a9b529da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc929d11fe3b43dc8946a753a9b529da.jpg", "file_size": 17862, "is_delete": false, "file_type": 1, "original_file_name": "23327FWF#橙色款匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc929d11fe3b43dc8946a753a9b529da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc929d11fe3b43dc8946a753a9b529da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc929d11fe3b43dc8946a753a9b529da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc929d11fe3b43dc8946a753a9b529da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc929d11fe3b43dc8946a753a9b529da.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6HbiKpfjujW5WVQwauG34OY8RM=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.601518+00 2025-12-09 10:15:48.601525+00 18872 0012-4FWE#深粉VS-D3 SPMX-20240815314103 \N \N \N 1 \N [{"file_id": "8605d320-cdf3-47ec-91ef-657cc0b465e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "652e440f1f1b473d9b1c1387c2279506.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "652e440f1f1b473d9b1c1387c2279506.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "652e440f1f1b473d9b1c1387c2279506.jpg", "file_size": 19179, "is_delete": false, "file_type": 1, "original_file_name": "0012-4FWE#深粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652e440f1f1b473d9b1c1387c2279506.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652e440f1f1b473d9b1c1387c2279506.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/652e440f1f1b473d9b1c1387c2279506.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/652e440f1f1b473d9b1c1387c2279506.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/652e440f1f1b473d9b1c1387c2279506.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K5acrwSt-5APGAUzfNiCdSaO6Rc=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.605166+00 2025-12-09 10:15:48.605172+00 18873 0012-4FWE#灰色VS-D3 SPMX-20240815314112 \N \N \N 1 \N [{"file_id": "de12fcda-d6c9-4463-b039-65cc026e3549", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77b7c9ab73334dfe9c9bb435c98b493d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77b7c9ab73334dfe9c9bb435c98b493d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77b7c9ab73334dfe9c9bb435c98b493d.jpg", "file_size": 17668, "is_delete": false, "file_type": 1, "original_file_name": "0012-4FWE#灰色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b7c9ab73334dfe9c9bb435c98b493d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b7c9ab73334dfe9c9bb435c98b493d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b7c9ab73334dfe9c9bb435c98b493d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77b7c9ab73334dfe9c9bb435c98b493d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77b7c9ab73334dfe9c9bb435c98b493d.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h9eA7anEA6yiCWwPzbzGwQtZKY8=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.608687+00 2025-12-09 10:15:48.608693+00 18874 HXF-TB023#领子+袖口M码 SPMX-20240815314101 \N \N \N 1 \N [{"file_id": "f9d717ea-1419-4a1f-ad56-5e4e3e59696c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd1f039783a5489f828849487ceca49a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd1f039783a5489f828849487ceca49a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd1f039783a5489f828849487ceca49a.jpg", "file_size": 12234, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#领子+袖口M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1f039783a5489f828849487ceca49a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1f039783a5489f828849487ceca49a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1f039783a5489f828849487ceca49a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd1f039783a5489f828849487ceca49a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd1f039783a5489f828849487ceca49a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4YaUVocq7srOEk7u2xyaVCMVvY=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.612175+00 2025-12-09 10:15:48.612181+00 18875 1231-43FWE#小童袖领匹布 SPMX-20240815314108 \N \N \N 1 \N [{"file_id": "bcef4b09-f971-420f-ab44-fb016c080cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d37f0852d52043f5901e666c0bb3b4a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d37f0852d52043f5901e666c0bb3b4a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d37f0852d52043f5901e666c0bb3b4a5.jpg", "file_size": 7998, "is_delete": false, "file_type": 1, "original_file_name": "1231-43FWE#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f0852d52043f5901e666c0bb3b4a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f0852d52043f5901e666c0bb3b4a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f0852d52043f5901e666c0bb3b4a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d37f0852d52043f5901e666c0bb3b4a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d37f0852d52043f5901e666c0bb3b4a5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMTjmCuWvZMM6w7sHWbWaKs93Ho=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.615575+00 2025-12-09 10:15:48.615581+00 18876 LZ1393#上身2号色 SPMX-20240815314105 \N \N \N 1 \N [{"file_id": "f82f1d3e-8774-4f88-b275-88af324af646", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42c1d378b6954458bc56bee0cd0f2ea9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42c1d378b6954458bc56bee0cd0f2ea9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42c1d378b6954458bc56bee0cd0f2ea9.jpg", "file_size": 19941, "is_delete": false, "file_type": 1, "original_file_name": "LZ1393#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c1d378b6954458bc56bee0cd0f2ea9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c1d378b6954458bc56bee0cd0f2ea9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42c1d378b6954458bc56bee0cd0f2ea9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42c1d378b6954458bc56bee0cd0f2ea9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42c1d378b6954458bc56bee0cd0f2ea9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M7G9KOGJqIkcwvWsqN9-y8If78A=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.619033+00 2025-12-09 10:15:48.61904+00 18877 JX0016G#WJC22 SPMX-20240815314107 \N \N \N 1 \N [{"file_id": "085f1b47-6ac0-4ce4-b37f-69c861bb0359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92be67065a8d48bdb3d272a4dd6572e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92be67065a8d48bdb3d272a4dd6572e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92be67065a8d48bdb3d272a4dd6572e3.jpg", "file_size": 15215, "is_delete": false, "file_type": 1, "original_file_name": "JX0016G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92be67065a8d48bdb3d272a4dd6572e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92be67065a8d48bdb3d272a4dd6572e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92be67065a8d48bdb3d272a4dd6572e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92be67065a8d48bdb3d272a4dd6572e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92be67065a8d48bdb3d272a4dd6572e3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGiXr_q3QJ5uBJii3uCLcoXi3Qw=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.62244+00 2025-12-09 10:15:48.622446+00 18878 CGH3953#白色 SPMX-20240815314109 \N \N \N 1 \N [{"file_id": "ea8575cf-5ed8-43d7-a50b-2199e6ca0879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6f587c9105c415eb6d50d2e9ccc9267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6f587c9105c415eb6d50d2e9ccc9267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6f587c9105c415eb6d50d2e9ccc9267.jpg", "file_size": 18073, "is_delete": false, "file_type": 1, "original_file_name": "CGH3953#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f587c9105c415eb6d50d2e9ccc9267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f587c9105c415eb6d50d2e9ccc9267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6f587c9105c415eb6d50d2e9ccc9267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6f587c9105c415eb6d50d2e9ccc9267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6f587c9105c415eb6d50d2e9ccc9267.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9hlxIJdxocS657Mc3U6hAmGOw8=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.625589+00 2025-12-09 10:15:48.625595+00 18879 FX0003-72#蓝色 SPMX-20240815314111 \N \N \N 1 \N [{"file_id": "8b9fd5bf-b87b-44a1-b219-2b4a132e9090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb3456ba9d32430988febfbe0b926db7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb3456ba9d32430988febfbe0b926db7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb3456ba9d32430988febfbe0b926db7.jpg", "file_size": 43291, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-72#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3456ba9d32430988febfbe0b926db7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3456ba9d32430988febfbe0b926db7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb3456ba9d32430988febfbe0b926db7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb3456ba9d32430988febfbe0b926db7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb3456ba9d32430988febfbe0b926db7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hsaz4c1AyrPuZu5Tkk_mxvo4wh0=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.628879+00 2025-12-09 10:15:48.628886+00 18880 LJH2023#黄色 SPMX-20240815314102 \N \N \N 1 \N [{"file_id": "8be8a6a9-e6b7-4dd4-8d88-e206af1908bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f52b2689f9c14cd191f86d155c93fdce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f52b2689f9c14cd191f86d155c93fdce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f52b2689f9c14cd191f86d155c93fdce.jpg", "file_size": 43044, "is_delete": false, "file_type": 1, "original_file_name": "LJH2023#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b2689f9c14cd191f86d155c93fdce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b2689f9c14cd191f86d155c93fdce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f52b2689f9c14cd191f86d155c93fdce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f52b2689f9c14cd191f86d155c93fdce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f52b2689f9c14cd191f86d155c93fdce.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkHKryDi6uigoaS4fI8Tw6xdFlI=", "createTime": "2024-08-15 15:05:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.644199+00 2025-12-09 10:15:48.644205+00 18885 JX0017G#WJC22 SPMX-20240815314117 \N \N \N 1 \N [{"file_id": "3f3f10d1-b08c-4b7b-ae3d-94b89de98d2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg", "file_size": 18741, "is_delete": false, "file_type": 1, "original_file_name": "JX0017G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d01b3f7a2ba04e76a8ac04b74b1ca7f8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7l6kkti1uei3XgvusH0VLDSF3s=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.632007+00 2025-12-09 10:15:48.632014+00 18881 HXF-TB023#领子+袖口XL码 SPMX-20240815314110 \N \N \N 1 \N [{"file_id": "726d5924-bafe-4050-b535-4c070724ea86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2c91e0b54b14dcfa2105c6edfb7ec80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2c91e0b54b14dcfa2105c6edfb7ec80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2c91e0b54b14dcfa2105c6edfb7ec80.jpg", "file_size": 12642, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB023#领子+袖口XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c91e0b54b14dcfa2105c6edfb7ec80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c91e0b54b14dcfa2105c6edfb7ec80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c91e0b54b14dcfa2105c6edfb7ec80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2c91e0b54b14dcfa2105c6edfb7ec80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2c91e0b54b14dcfa2105c6edfb7ec80.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cjayNWKuYTb8w0cGwAw0FvGUr_s=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.63504+00 2025-12-09 10:15:48.635046+00 18882 86个图 SPMX-20240815314106 \N \N \N 1 \N [{"file_id": "6ed7cd22-aed4-4e35-9471-24939eecb76e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdaa990ca23b446786f9ba23ea332622.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdaa990ca23b446786f9ba23ea332622.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdaa990ca23b446786f9ba23ea332622.jpg", "file_size": 310104, "is_delete": false, "file_type": 1, "original_file_name": "86个图.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaa990ca23b446786f9ba23ea332622.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaa990ca23b446786f9ba23ea332622.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaa990ca23b446786f9ba23ea332622.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdaa990ca23b446786f9ba23ea332622.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdaa990ca23b446786f9ba23ea332622.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNPP1C69To5i9qwG-M2rYNm-bVk=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.63808+00 2025-12-09 10:15:48.638086+00 18883 LJH2024#原版 SPMX-20240815314113 \N \N \N 1 \N [{"file_id": "9e0cef38-9b32-4892-921b-dda46efdc6ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebab34dadf1b47d8999268f411ef39d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebab34dadf1b47d8999268f411ef39d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebab34dadf1b47d8999268f411ef39d1.jpg", "file_size": 67944, "is_delete": false, "file_type": 1, "original_file_name": "LJH2024#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab34dadf1b47d8999268f411ef39d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab34dadf1b47d8999268f411ef39d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebab34dadf1b47d8999268f411ef39d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebab34dadf1b47d8999268f411ef39d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebab34dadf1b47d8999268f411ef39d1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsWyl-eW55-dIs-3E5y17MFm9W8=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.641202+00 2025-12-09 10:15:48.641208+00 18884 23327FWF#黑色 SPMX-20240815314104 \N \N \N 1 \N [{"file_id": "bbe65a04-68bf-45d0-9ad1-34b9e95c3b4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bca28fbc79d94c7ab369daa1a5565086.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bca28fbc79d94c7ab369daa1a5565086.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bca28fbc79d94c7ab369daa1a5565086.jpg", "file_size": 11069, "is_delete": false, "file_type": 1, "original_file_name": "23327FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca28fbc79d94c7ab369daa1a5565086.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca28fbc79d94c7ab369daa1a5565086.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bca28fbc79d94c7ab369daa1a5565086.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bca28fbc79d94c7ab369daa1a5565086.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bca28fbc79d94c7ab369daa1a5565086.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YQ_pMutAXybcjE7Y4dHE3RRiTy0=", "createTime": "2024-08-15 15:05:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.647222+00 2025-12-09 10:15:48.647228+00 18886 8713FWF#L SPMX-20240815314114 \N \N \N 1 \N [{"file_id": "82482d63-ae5f-4fa9-bbf8-df30e971b904", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15d1d066d0af4960b79f4d9363df9b67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15d1d066d0af4960b79f4d9363df9b67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15d1d066d0af4960b79f4d9363df9b67.jpg", "file_size": 14612, "is_delete": false, "file_type": 1, "original_file_name": "8713FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d1d066d0af4960b79f4d9363df9b67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d1d066d0af4960b79f4d9363df9b67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d1d066d0af4960b79f4d9363df9b67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15d1d066d0af4960b79f4d9363df9b67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15d1d066d0af4960b79f4d9363df9b67.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4LG6BHS1PkdX4okHLH6lk-RxZ3U=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.650319+00 2025-12-09 10:15:48.650326+00 18887 23327FWF#黑色款匹布 SPMX-20240815314115 \N \N \N 1 \N [{"file_id": "0b189664-e944-49fc-8b7d-4e450cab2986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fb673335f234a38855387b44155632e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fb673335f234a38855387b44155632e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fb673335f234a38855387b44155632e.jpg", "file_size": 17614, "is_delete": false, "file_type": 1, "original_file_name": "23327FWF#黑色款匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb673335f234a38855387b44155632e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb673335f234a38855387b44155632e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb673335f234a38855387b44155632e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fb673335f234a38855387b44155632e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fb673335f234a38855387b44155632e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2l-dX87WFKCnzmkxA98n9QAbO6c=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.653359+00 2025-12-09 10:15:48.653366+00 18888 LZ1393#上身3号色 SPMX-20240815314116 \N \N \N 1 \N [{"file_id": "5cde02dc-f15a-4156-874b-e255b1fb80d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdf2df5ed4d545f89c74e18f658e4546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdf2df5ed4d545f89c74e18f658e4546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdf2df5ed4d545f89c74e18f658e4546.jpg", "file_size": 20617, "is_delete": false, "file_type": 1, "original_file_name": "LZ1393#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf2df5ed4d545f89c74e18f658e4546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf2df5ed4d545f89c74e18f658e4546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdf2df5ed4d545f89c74e18f658e4546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdf2df5ed4d545f89c74e18f658e4546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdf2df5ed4d545f89c74e18f658e4546.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rrXHdWVEn75-SGt4H5ddAoaBpec=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.656445+00 2025-12-09 10:15:48.656452+00 18889 8713FWF#M SPMX-20240815314123 \N \N \N 1 \N [{"file_id": "fc7ce407-05be-491a-9b30-4ee0a2ca3a20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e3fca274f8a4a9696492985bbf55068.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e3fca274f8a4a9696492985bbf55068.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e3fca274f8a4a9696492985bbf55068.jpg", "file_size": 14242, "is_delete": false, "file_type": 1, "original_file_name": "8713FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3fca274f8a4a9696492985bbf55068.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3fca274f8a4a9696492985bbf55068.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e3fca274f8a4a9696492985bbf55068.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e3fca274f8a4a9696492985bbf55068.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e3fca274f8a4a9696492985bbf55068.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E2xgLG-dul2QRG4kSEECRz1E5SQ=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.659555+00 2025-12-09 10:15:48.659562+00 18890 2333#补数裤子2XL SPMX-20240815314124 \N \N \N 1 \N [{"file_id": "e26cd719-9b6a-4bdb-99ae-3cc5f9d4f861", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92ef41b9557246ef93364340e0f17420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92ef41b9557246ef93364340e0f17420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92ef41b9557246ef93364340e0f17420.jpg", "file_size": 48900, "is_delete": false, "file_type": 1, "original_file_name": "2333#补数裤子2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef41b9557246ef93364340e0f17420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef41b9557246ef93364340e0f17420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92ef41b9557246ef93364340e0f17420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92ef41b9557246ef93364340e0f17420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92ef41b9557246ef93364340e0f17420.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CpJxpNIVJpjCaY-l7sVS_iLDURk=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.663017+00 2025-12-09 10:15:48.663022+00 18891 0012-4FWE#绿色VS-D3 SPMX-20240815314121 \N \N \N 1 \N [{"file_id": "f7dd33e4-6a5a-4342-93a0-2e208805ffe8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "047aa1582e854fb4b20d9af6119c42ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "047aa1582e854fb4b20d9af6119c42ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "047aa1582e854fb4b20d9af6119c42ea.jpg", "file_size": 19294, "is_delete": false, "file_type": 1, "original_file_name": "0012-4FWE#绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047aa1582e854fb4b20d9af6119c42ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047aa1582e854fb4b20d9af6119c42ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/047aa1582e854fb4b20d9af6119c42ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/047aa1582e854fb4b20d9af6119c42ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/047aa1582e854fb4b20d9af6119c42ea.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H9WM5JcnyHU9m9KFoOww5vgwOsk=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.666196+00 2025-12-09 10:15:48.666202+00 18892 CGH3953#粉色 SPMX-20240815314119 \N \N \N 1 \N [{"file_id": "0cb1c103-f72b-4731-834d-36f3ab5c3df7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea0b35bd52354014b1f9eb95ad740389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea0b35bd52354014b1f9eb95ad740389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea0b35bd52354014b1f9eb95ad740389.jpg", "file_size": 17864, "is_delete": false, "file_type": 1, "original_file_name": "CGH3953#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b35bd52354014b1f9eb95ad740389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b35bd52354014b1f9eb95ad740389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0b35bd52354014b1f9eb95ad740389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea0b35bd52354014b1f9eb95ad740389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea0b35bd52354014b1f9eb95ad740389.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NXjDueZJkoccz293uWlWhxPRA2Y=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.669524+00 2025-12-09 10:15:48.66953+00 18893 FX0003-72#黑色 SPMX-20240815314122 \N \N \N 1 \N [{"file_id": "2025e310-ccc0-416d-ad82-3320ef778116", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "727a7db3cd5a4cf584b54ba32364ce89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "727a7db3cd5a4cf584b54ba32364ce89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "727a7db3cd5a4cf584b54ba32364ce89.jpg", "file_size": 38807, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-72#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727a7db3cd5a4cf584b54ba32364ce89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727a7db3cd5a4cf584b54ba32364ce89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/727a7db3cd5a4cf584b54ba32364ce89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/727a7db3cd5a4cf584b54ba32364ce89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/727a7db3cd5a4cf584b54ba32364ce89.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnUMHtGhBWoG0Rx2zrvRZoMQmDM=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.672665+00 2025-12-09 10:15:48.672673+00 18894 1231-44FWF#V5曲线 SPMX-20240815314118 \N \N \N 1 \N [{"file_id": "4b945d9f-bcde-4687-94cf-aba7d0c1a978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg", "file_size": 22909, "is_delete": false, "file_type": 1, "original_file_name": "1231-44FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a13dbcaf0f246d7abcc7ca73a64ddfd.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:auQW1nmUnG4HL47Jwhf4N79gllE=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.676103+00 2025-12-09 10:15:48.67611+00 18895 JX0018G#WJC22 SPMX-20240815314125 \N \N \N 1 \N [{"file_id": "d5b600b6-1896-428a-a490-7873378c9cdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a22c07d453274b6393d87261a563a898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a22c07d453274b6393d87261a563a898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a22c07d453274b6393d87261a563a898.jpg", "file_size": 17658, "is_delete": false, "file_type": 1, "original_file_name": "JX0018G#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22c07d453274b6393d87261a563a898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22c07d453274b6393d87261a563a898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22c07d453274b6393d87261a563a898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a22c07d453274b6393d87261a563a898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a22c07d453274b6393d87261a563a898.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LvLevc-vNV3iR_jKuDimGa-C1I=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.679368+00 2025-12-09 10:15:48.679373+00 18896 1231-45FWF#中童12码+10码 SPMX-20240815314127 \N \N \N 1 \N [{"file_id": "b1a2561b-249e-406b-aca4-013825b515cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea612e6ec95b4007a7ba2b758ec99dda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea612e6ec95b4007a7ba2b758ec99dda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea612e6ec95b4007a7ba2b758ec99dda.jpg", "file_size": 15631, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea612e6ec95b4007a7ba2b758ec99dda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea612e6ec95b4007a7ba2b758ec99dda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea612e6ec95b4007a7ba2b758ec99dda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea612e6ec95b4007a7ba2b758ec99dda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea612e6ec95b4007a7ba2b758ec99dda.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HRE8Jcb1hbnuCSjUwj3H3d6i37w=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.682535+00 2025-12-09 10:15:48.682542+00 18897 LZ1393#上身4号色 SPMX-20240815314126 \N \N \N 1 \N [{"file_id": "6218b69f-d9cc-4520-a65a-73b61bf7f4f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96192959a9294f94857eb3d3fb112653.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96192959a9294f94857eb3d3fb112653.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96192959a9294f94857eb3d3fb112653.jpg", "file_size": 20700, "is_delete": false, "file_type": 1, "original_file_name": "LZ1393#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96192959a9294f94857eb3d3fb112653.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96192959a9294f94857eb3d3fb112653.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96192959a9294f94857eb3d3fb112653.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96192959a9294f94857eb3d3fb112653.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96192959a9294f94857eb3d3fb112653.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVwcOOGTOD2fuCU-HwBxR2KT6oo=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.685397+00 2025-12-09 10:15:48.685402+00 18898 HXF-TB027#2XL码 SPMX-20240815314120 \N \N \N 1 \N [{"file_id": "36d8e3c6-4695-46bc-b757-75fa0397f0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b487b9dc154472da9506951192932f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b487b9dc154472da9506951192932f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b487b9dc154472da9506951192932f4.jpg", "file_size": 19140, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB027#2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b487b9dc154472da9506951192932f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b487b9dc154472da9506951192932f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b487b9dc154472da9506951192932f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b487b9dc154472da9506951192932f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b487b9dc154472da9506951192932f4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGWpEYGO4nl0GfdumW5VpRbJmhk=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.688955+00 2025-12-09 10:15:48.688963+00 18899 LJH2024#绿色 SPMX-20240815314128 \N \N \N 1 \N [{"file_id": "dc355427-8526-4085-92d1-7f626c6f701a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbb05d97b94e44729d6126fe9ba65040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbb05d97b94e44729d6126fe9ba65040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbb05d97b94e44729d6126fe9ba65040.jpg", "file_size": 72548, "is_delete": false, "file_type": 1, "original_file_name": "LJH2024#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb05d97b94e44729d6126fe9ba65040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb05d97b94e44729d6126fe9ba65040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb05d97b94e44729d6126fe9ba65040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbb05d97b94e44729d6126fe9ba65040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbb05d97b94e44729d6126fe9ba65040.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMOtZLaXPc_NEfYwrEimtfoypXA=", "createTime": "2024-08-15 15:05:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.692732+00 2025-12-09 10:15:48.692739+00 18900 8713FWF#S SPMX-20240815314132 \N \N \N 1 \N [{"file_id": "6ea570e8-8f1a-4cd5-8247-69ca8b095efa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebaf859daf3d4584a8234210c3a4a08f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebaf859daf3d4584a8234210c3a4a08f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebaf859daf3d4584a8234210c3a4a08f.jpg", "file_size": 13874, "is_delete": false, "file_type": 1, "original_file_name": "8713FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaf859daf3d4584a8234210c3a4a08f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaf859daf3d4584a8234210c3a4a08f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaf859daf3d4584a8234210c3a4a08f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebaf859daf3d4584a8234210c3a4a08f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebaf859daf3d4584a8234210c3a4a08f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tDu-2oBnIQtNuv5e3Oe_Nmeu40=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.696474+00 2025-12-09 10:15:48.69648+00 18901 CGH3966#粉色上身 SPMX-20240815314140 \N \N \N 1 \N [{"file_id": "deeae33f-9330-483c-b35d-9cf83f7a23d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880258842ebb4fedbb108e90828d4111.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880258842ebb4fedbb108e90828d4111.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880258842ebb4fedbb108e90828d4111.jpg", "file_size": 15170, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#粉色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880258842ebb4fedbb108e90828d4111.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880258842ebb4fedbb108e90828d4111.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880258842ebb4fedbb108e90828d4111.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880258842ebb4fedbb108e90828d4111.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880258842ebb4fedbb108e90828d4111.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XYI_9G7z0Yfx5oETsGWYh_Rsg_Q=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.699764+00 2025-12-09 10:15:48.699772+00 18902 0012-5FWE#VS-D3 SPMX-20240815314142 \N \N \N 1 \N [{"file_id": "5aa13f4b-70a0-4c16-b2f5-c22179008ff4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5c1a950cb834e1b93133d010968880b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5c1a950cb834e1b93133d010968880b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5c1a950cb834e1b93133d010968880b.jpg", "file_size": 16899, "is_delete": false, "file_type": 1, "original_file_name": "0012-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a950cb834e1b93133d010968880b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a950cb834e1b93133d010968880b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a950cb834e1b93133d010968880b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a950cb834e1b93133d010968880b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a950cb834e1b93133d010968880b.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:26E_iiqYFr4cX9Hup6oKwu_vXH0=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.703023+00 2025-12-09 10:15:48.703029+00 18903 0012-4FWF#V5曲线 SPMX-20240815314131 \N \N \N 1 \N [{"file_id": "3c902f25-efea-4b7c-bb5c-61fafd651834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54ee649952184d04a9ad5179dc74c495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54ee649952184d04a9ad5179dc74c495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54ee649952184d04a9ad5179dc74c495.jpg", "file_size": 10491, "is_delete": false, "file_type": 1, "original_file_name": "0012-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ee649952184d04a9ad5179dc74c495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ee649952184d04a9ad5179dc74c495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ee649952184d04a9ad5179dc74c495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54ee649952184d04a9ad5179dc74c495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54ee649952184d04a9ad5179dc74c495.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fp9TKPHNG7OuSu0Kim5fm3ofHjA=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.706276+00 2025-12-09 10:15:48.706282+00 18904 HXF-TB027#L码 SPMX-20240815314130 \N \N \N 1 \N [{"file_id": "75c538b6-4e35-4a8c-9a7f-1ea59679d095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da1dc1083a75445aa18c992e583da1e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da1dc1083a75445aa18c992e583da1e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da1dc1083a75445aa18c992e583da1e1.jpg", "file_size": 19023, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB027#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1dc1083a75445aa18c992e583da1e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1dc1083a75445aa18c992e583da1e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da1dc1083a75445aa18c992e583da1e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da1dc1083a75445aa18c992e583da1e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da1dc1083a75445aa18c992e583da1e1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6vuZqtVF4AK1IAfqVAh8Ai9RPg=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.709423+00 2025-12-09 10:15:48.709429+00 18905 2333#补数裤子L SPMX-20240815314134 \N \N \N 1 \N [{"file_id": "3a1c7ef1-cacd-49d9-8677-60e391803d52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg", "file_size": 50630, "is_delete": false, "file_type": 1, "original_file_name": "2333#补数裤子L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc9b4fa7550c449a93ebc75d6bbb8ec7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ecKFMCYJOtI-E7si6tyZ3sN1n_A=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.71254+00 2025-12-09 10:15:48.712546+00 18906 LZ1393#上身5号色 SPMX-20240815314135 \N \N \N 1 \N [{"file_id": "594b5099-97c3-4f35-a443-428925ce74bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baaa0e6fe74b41cfb9ca2518aa90b9be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baaa0e6fe74b41cfb9ca2518aa90b9be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baaa0e6fe74b41cfb9ca2518aa90b9be.jpg", "file_size": 20374, "is_delete": false, "file_type": 1, "original_file_name": "LZ1393#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa0e6fe74b41cfb9ca2518aa90b9be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa0e6fe74b41cfb9ca2518aa90b9be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa0e6fe74b41cfb9ca2518aa90b9be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baaa0e6fe74b41cfb9ca2518aa90b9be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baaa0e6fe74b41cfb9ca2518aa90b9be.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:akP0h_WtbdWN5SZ6CVv9owtaOYE=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.715609+00 2025-12-09 10:15:48.715615+00 18907 CGH3953#黄色 SPMX-20240815314129 \N \N \N 1 \N [{"file_id": "6b9e4279-1907-4606-84f8-bc16df351949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0465f915b024a749654fa8df72b13e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0465f915b024a749654fa8df72b13e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0465f915b024a749654fa8df72b13e1.jpg", "file_size": 19142, "is_delete": false, "file_type": 1, "original_file_name": "CGH3953#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0465f915b024a749654fa8df72b13e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0465f915b024a749654fa8df72b13e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0465f915b024a749654fa8df72b13e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0465f915b024a749654fa8df72b13e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0465f915b024a749654fa8df72b13e1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0CsAmXKwArzC4X4xROSFbPDUao=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.718615+00 2025-12-09 10:15:48.718622+00 18908 FX0003-73#RC23 SPMX-20240815314136 \N \N \N 1 \N [{"file_id": "f6c50df6-6a66-4806-bdb6-e4526870f90a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b027929dd90478dbf80f43d4b71ee04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b027929dd90478dbf80f43d4b71ee04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b027929dd90478dbf80f43d4b71ee04.jpg", "file_size": 36427, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-73#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b027929dd90478dbf80f43d4b71ee04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b027929dd90478dbf80f43d4b71ee04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b027929dd90478dbf80f43d4b71ee04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b027929dd90478dbf80f43d4b71ee04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b027929dd90478dbf80f43d4b71ee04.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cca4a8h2-VA84VW9LXKYBGyvPko=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.721729+00 2025-12-09 10:15:48.721736+00 18909 JX013# SPMX-20240815314137 \N \N \N 1 \N [{"file_id": "7e19e2a3-263c-4333-a2e6-ad10018f853f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20941604aad9499b96bdf73c313b719a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20941604aad9499b96bdf73c313b719a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20941604aad9499b96bdf73c313b719a.jpg", "file_size": 12701, "is_delete": false, "file_type": 1, "original_file_name": "JX013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20941604aad9499b96bdf73c313b719a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20941604aad9499b96bdf73c313b719a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20941604aad9499b96bdf73c313b719a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20941604aad9499b96bdf73c313b719a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20941604aad9499b96bdf73c313b719a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T5mZxJh3rH7hjmU5CpURX_J2JhU=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.724734+00 2025-12-09 10:15:48.72474+00 18910 DL807#下摆批布5#玫红 SPMX-20240815314133 \N \N \N 1 \N [{"file_id": "24aeccd5-51d0-46cb-af77-029f66e8a62d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9db4a4ba11c40e1b649d6205c83cebe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9db4a4ba11c40e1b649d6205c83cebe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9db4a4ba11c40e1b649d6205c83cebe.jpg", "file_size": 20752, "is_delete": false, "file_type": 1, "original_file_name": "DL807#下摆批布5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9db4a4ba11c40e1b649d6205c83cebe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9db4a4ba11c40e1b649d6205c83cebe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9db4a4ba11c40e1b649d6205c83cebe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9db4a4ba11c40e1b649d6205c83cebe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9db4a4ba11c40e1b649d6205c83cebe.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lzjusy0s5ku5dmdCCq15q0b7HyY=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.727765+00 2025-12-09 10:15:48.727771+00 18911 1231-45FWF#中童14码 SPMX-20240815314138 \N \N \N 1 \N [{"file_id": "953ee057-41d4-4b4e-b7e4-3c052601829b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb6c2f702e8449dca69ec1efa23f0119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb6c2f702e8449dca69ec1efa23f0119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb6c2f702e8449dca69ec1efa23f0119.jpg", "file_size": 14359, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6c2f702e8449dca69ec1efa23f0119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6c2f702e8449dca69ec1efa23f0119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb6c2f702e8449dca69ec1efa23f0119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb6c2f702e8449dca69ec1efa23f0119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb6c2f702e8449dca69ec1efa23f0119.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqPzdyCLdBU65Q3tT4Xo9fNEt2o=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.730808+00 2025-12-09 10:15:48.730815+00 18912 LJH2024#蓝色 SPMX-20240815314139 \N \N \N 1 \N [{"file_id": "a9e5c2cb-e7a6-4fee-a901-929a48b90bbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1d5e66637404f6cb07042efd97ebd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1d5e66637404f6cb07042efd97ebd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1d5e66637404f6cb07042efd97ebd38.jpg", "file_size": 71486, "is_delete": false, "file_type": 1, "original_file_name": "LJH2024#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d5e66637404f6cb07042efd97ebd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d5e66637404f6cb07042efd97ebd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1d5e66637404f6cb07042efd97ebd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1d5e66637404f6cb07042efd97ebd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1d5e66637404f6cb07042efd97ebd38.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t2J6-KsgLaeoDA4A_EuCW_LGe8c=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.733893+00 2025-12-09 10:15:48.733899+00 18913 HXF-TB027#M码 SPMX-20240815314141 \N \N \N 1 \N [{"file_id": "b3bb07e0-eda6-420d-98c9-07eb3ab52daa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "181166ca3cc34a51abd61621712b4ff9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "181166ca3cc34a51abd61621712b4ff9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "181166ca3cc34a51abd61621712b4ff9.jpg", "file_size": 18838, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB027#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181166ca3cc34a51abd61621712b4ff9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181166ca3cc34a51abd61621712b4ff9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181166ca3cc34a51abd61621712b4ff9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/181166ca3cc34a51abd61621712b4ff9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/181166ca3cc34a51abd61621712b4ff9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7uPKPgO1cMuC-Wl3U43EHi4Xi8=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.736933+00 2025-12-09 10:15:48.73694+00 18914 DL807#下摆批布6#兰绿 SPMX-20240815314144 \N \N \N 1 \N [{"file_id": "de002c00-8538-41f1-aa2a-1c0ac9291b21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ec7f86b89cd425380d51a88c116d1e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ec7f86b89cd425380d51a88c116d1e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ec7f86b89cd425380d51a88c116d1e3.jpg", "file_size": 21091, "is_delete": false, "file_type": 1, "original_file_name": "DL807#下摆批布6#兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec7f86b89cd425380d51a88c116d1e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec7f86b89cd425380d51a88c116d1e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec7f86b89cd425380d51a88c116d1e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ec7f86b89cd425380d51a88c116d1e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ec7f86b89cd425380d51a88c116d1e3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_x5srqCiq-ScwJRFiZvNs522lk=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.740067+00 2025-12-09 10:15:48.740073+00 18915 2333#补数裤子S SPMX-20240815314156 \N \N \N 1 \N [{"file_id": "5afceb0d-4a80-48a1-940b-cdcea7e422eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72c6b01eba424c889a9c3dee7529e291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72c6b01eba424c889a9c3dee7529e291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72c6b01eba424c889a9c3dee7529e291.jpg", "file_size": 51505, "is_delete": false, "file_type": 1, "original_file_name": "2333#补数裤子S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c6b01eba424c889a9c3dee7529e291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c6b01eba424c889a9c3dee7529e291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72c6b01eba424c889a9c3dee7529e291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72c6b01eba424c889a9c3dee7529e291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72c6b01eba424c889a9c3dee7529e291.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-5RuQDXqhJS-DwVidAzh-G_56yo=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.743138+00 2025-12-09 10:15:48.743144+00 18916 8715FWF#粉 SPMX-20240815314153 \N \N \N 1 \N [{"file_id": "57c1269f-8864-4041-909c-85036c0175f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a22040787bcf4c958742136ccacd09bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a22040787bcf4c958742136ccacd09bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a22040787bcf4c958742136ccacd09bc.jpg", "file_size": 12561, "is_delete": false, "file_type": 1, "original_file_name": "8715FWF#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22040787bcf4c958742136ccacd09bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22040787bcf4c958742136ccacd09bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22040787bcf4c958742136ccacd09bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a22040787bcf4c958742136ccacd09bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a22040787bcf4c958742136ccacd09bc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y9GchVkPvEFbIc0pWudFrGNbcok=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.746422+00 2025-12-09 10:15:48.746427+00 18917 CGH3966#粉色下身 SPMX-20240815314151 \N \N \N 1 \N [{"file_id": "40e770b9-aaed-4751-852a-12db3bbc5541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ea772582d2c45199d7aa0c0c62f58c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ea772582d2c45199d7aa0c0c62f58c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ea772582d2c45199d7aa0c0c62f58c0.jpg", "file_size": 25477, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#粉色下身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea772582d2c45199d7aa0c0c62f58c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea772582d2c45199d7aa0c0c62f58c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ea772582d2c45199d7aa0c0c62f58c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ea772582d2c45199d7aa0c0c62f58c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ea772582d2c45199d7aa0c0c62f58c0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G14ZTbEmlklGWTRiIf8-FQkR5vc=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.749543+00 2025-12-09 10:15:48.749549+00 18918 DL807#下摆批布8#亮黄 SPMX-20240815314154 \N \N \N 1 \N [{"file_id": "b63a572c-743d-45d1-a870-0b62d3286f1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7bec956b8294a20aacb37ed1431b112.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7bec956b8294a20aacb37ed1431b112.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7bec956b8294a20aacb37ed1431b112.jpg", "file_size": 20007, "is_delete": false, "file_type": 1, "original_file_name": "DL807#下摆批布8#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bec956b8294a20aacb37ed1431b112.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bec956b8294a20aacb37ed1431b112.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7bec956b8294a20aacb37ed1431b112.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7bec956b8294a20aacb37ed1431b112.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7bec956b8294a20aacb37ed1431b112.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uEiMGv7mZSL3VzkcsG6Wnztmn-A=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.752928+00 2025-12-09 10:15:48.752935+00 18919 8713FWF#匹布 SPMX-20240815314143 \N \N \N 1 \N [{"file_id": "ce9c7ed7-50ec-46b2-b7bd-5fc2ca6b0970", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "329ea968c9e74816a587a4f0c7304277.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "329ea968c9e74816a587a4f0c7304277.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "329ea968c9e74816a587a4f0c7304277.jpg", "file_size": 14222, "is_delete": false, "file_type": 1, "original_file_name": "8713FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329ea968c9e74816a587a4f0c7304277.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329ea968c9e74816a587a4f0c7304277.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/329ea968c9e74816a587a4f0c7304277.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/329ea968c9e74816a587a4f0c7304277.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/329ea968c9e74816a587a4f0c7304277.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gylt4zyKI8H9yky9qt9-SOA-i7g=", "createTime": "2024-08-15 15:05:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.756081+00 2025-12-09 10:15:48.756087+00 18920 JX0715-1#WJC22 SPMX-20240815314157 \N \N \N 1 \N [{"file_id": "91b453df-3c90-4a9a-9581-d8ff5fde65c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6255afe0a0b34e449a3b81485b9b24a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6255afe0a0b34e449a3b81485b9b24a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6255afe0a0b34e449a3b81485b9b24a7.jpg", "file_size": 16393, "is_delete": false, "file_type": 1, "original_file_name": "JX0715-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6255afe0a0b34e449a3b81485b9b24a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6255afe0a0b34e449a3b81485b9b24a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6255afe0a0b34e449a3b81485b9b24a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6255afe0a0b34e449a3b81485b9b24a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6255afe0a0b34e449a3b81485b9b24a7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Po1kh0M3ffQkmu8c8BwlR8Z_BPc=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.759236+00 2025-12-09 10:15:48.759243+00 18921 JX019# SPMX-20240815314146 \N \N \N 1 \N [{"file_id": "6d25d188-2303-4403-966f-1c377b82e67d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d94f05caf7548a7849507f7d0f7aab7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d94f05caf7548a7849507f7d0f7aab7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d94f05caf7548a7849507f7d0f7aab7.jpg", "file_size": 4676, "is_delete": false, "file_type": 1, "original_file_name": "JX019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d94f05caf7548a7849507f7d0f7aab7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d94f05caf7548a7849507f7d0f7aab7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d94f05caf7548a7849507f7d0f7aab7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d94f05caf7548a7849507f7d0f7aab7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d94f05caf7548a7849507f7d0f7aab7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5JTjS2rkRWl4Kr5pQEwqL-Z0RhA=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.762389+00 2025-12-09 10:15:48.762395+00 18922 HXF-TB027#XL码 SPMX-20240815314152 \N \N \N 1 \N [{"file_id": "baa014fb-ae10-491a-b22c-f25feff79b00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9005a99f951446b09befd7f6658f9c7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9005a99f951446b09befd7f6658f9c7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9005a99f951446b09befd7f6658f9c7c.jpg", "file_size": 19352, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB027#XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9005a99f951446b09befd7f6658f9c7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9005a99f951446b09befd7f6658f9c7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9005a99f951446b09befd7f6658f9c7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9005a99f951446b09befd7f6658f9c7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9005a99f951446b09befd7f6658f9c7c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5PObcyFwL6k2K4LlxfJye4Gj_58=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.765587+00 2025-12-09 10:15:48.765594+00 18923 0012-5FWF#V5曲线 SPMX-20240815314150 \N \N \N 1 \N [{"file_id": "e33c259a-737e-4abc-bbac-c30515596184", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2461bfd8629249ac83103f40d2e99cbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2461bfd8629249ac83103f40d2e99cbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2461bfd8629249ac83103f40d2e99cbf.jpg", "file_size": 24880, "is_delete": false, "file_type": 1, "original_file_name": "0012-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2461bfd8629249ac83103f40d2e99cbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2461bfd8629249ac83103f40d2e99cbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2461bfd8629249ac83103f40d2e99cbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2461bfd8629249ac83103f40d2e99cbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2461bfd8629249ac83103f40d2e99cbf.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:opsZJTMd5GqFAqnUlBvg-gALx20=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.768694+00 2025-12-09 10:15:48.768701+00 18924 FX0003-73#咖色 SPMX-20240815314147 \N \N \N 1 \N [{"file_id": "06eeab28-c928-48de-afbb-27dcb29ebc61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ae2d3f6594d457a9f09c24945b2c367.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ae2d3f6594d457a9f09c24945b2c367.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ae2d3f6594d457a9f09c24945b2c367.jpg", "file_size": 58643, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-73#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae2d3f6594d457a9f09c24945b2c367.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae2d3f6594d457a9f09c24945b2c367.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ae2d3f6594d457a9f09c24945b2c367.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ae2d3f6594d457a9f09c24945b2c367.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ae2d3f6594d457a9f09c24945b2c367.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yNTq6GYOf4R3IE8SK5CIS9-ojUE=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.771792+00 2025-12-09 10:15:48.771799+00 18925 2333#补数裤子M SPMX-20240815314145 \N \N \N 1 \N [{"file_id": "4a72409c-6694-4b03-8615-c119b951d5ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a6bb8e41eac4a9b8506ffa8da4785f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a6bb8e41eac4a9b8506ffa8da4785f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a6bb8e41eac4a9b8506ffa8da4785f9.jpg", "file_size": 51546, "is_delete": false, "file_type": 1, "original_file_name": "2333#补数裤子M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6bb8e41eac4a9b8506ffa8da4785f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6bb8e41eac4a9b8506ffa8da4785f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a6bb8e41eac4a9b8506ffa8da4785f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a6bb8e41eac4a9b8506ffa8da4785f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a6bb8e41eac4a9b8506ffa8da4785f9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCvFI2l9dKKME2X_zIrPgPc93qA=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.774863+00 2025-12-09 10:15:48.77487+00 18926 1231-45FWF#中童袖领匹布 SPMX-20240815314148 \N \N \N 1 \N [{"file_id": "75d8492e-2a2c-41ed-a593-0065512b00a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c58533421e640008c8fa7aa154963a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c58533421e640008c8fa7aa154963a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c58533421e640008c8fa7aa154963a2.jpg", "file_size": 6042, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c58533421e640008c8fa7aa154963a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c58533421e640008c8fa7aa154963a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c58533421e640008c8fa7aa154963a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c58533421e640008c8fa7aa154963a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c58533421e640008c8fa7aa154963a2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1mDIivOlCwP1F2OwVj9C4qMWDdQ=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.777901+00 2025-12-09 10:15:48.777908+00 18927 LZ1394#上身1号色 SPMX-20240815314149 \N \N \N 1 \N [{"file_id": "c0427b33-4582-4fc0-8110-9f5c329bac1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9b253af29734304a976cb73e9bbb78e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9b253af29734304a976cb73e9bbb78e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9b253af29734304a976cb73e9bbb78e.jpg", "file_size": 16412, "is_delete": false, "file_type": 1, "original_file_name": "LZ1394#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b253af29734304a976cb73e9bbb78e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b253af29734304a976cb73e9bbb78e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9b253af29734304a976cb73e9bbb78e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9b253af29734304a976cb73e9bbb78e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9b253af29734304a976cb73e9bbb78e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:soch6e5TF8ATPK32sk7WxUUZGlY=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.781033+00 2025-12-09 10:15:48.78104+00 18928 LJH2024#黄色 SPMX-20240815314155 \N \N \N 1 \N [{"file_id": "45d831fd-1817-4eed-8b7f-45f1abedcedc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "346b75887d9243559cc4c9f2dbcb4ce5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "346b75887d9243559cc4c9f2dbcb4ce5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "346b75887d9243559cc4c9f2dbcb4ce5.jpg", "file_size": 69837, "is_delete": false, "file_type": 1, "original_file_name": "LJH2024#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346b75887d9243559cc4c9f2dbcb4ce5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346b75887d9243559cc4c9f2dbcb4ce5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/346b75887d9243559cc4c9f2dbcb4ce5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/346b75887d9243559cc4c9f2dbcb4ce5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/346b75887d9243559cc4c9f2dbcb4ce5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDOGsutik8BUSlyvHhx0VOCjrM0=", "createTime": "2024-08-15 15:05:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.784123+00 2025-12-09 10:15:48.78413+00 18929 8715FWF#蓝 SPMX-20240815314162 \N \N \N 1 \N [{"file_id": "762420f3-af04-4605-8047-d1d1b7278682", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fa18f635f614a5b9eef65db0ba531b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fa18f635f614a5b9eef65db0ba531b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fa18f635f614a5b9eef65db0ba531b3.jpg", "file_size": 16901, "is_delete": false, "file_type": 1, "original_file_name": "8715FWF#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fa18f635f614a5b9eef65db0ba531b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fa18f635f614a5b9eef65db0ba531b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fa18f635f614a5b9eef65db0ba531b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fa18f635f614a5b9eef65db0ba531b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fa18f635f614a5b9eef65db0ba531b3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:un_LxyST_eRuocu47sYA5liEd2g=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.787206+00 2025-12-09 10:15:48.787212+00 18930 FX0003-73#墨绿色 SPMX-20240815314158 \N \N \N 1 \N [{"file_id": "1f01e6bc-e4b5-47db-bc2a-767b7c5d1911", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccad6809b9784905a3ca9816146c8144.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccad6809b9784905a3ca9816146c8144.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccad6809b9784905a3ca9816146c8144.jpg", "file_size": 65699, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-73#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad6809b9784905a3ca9816146c8144.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad6809b9784905a3ca9816146c8144.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad6809b9784905a3ca9816146c8144.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccad6809b9784905a3ca9816146c8144.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccad6809b9784905a3ca9816146c8144.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0bvNBoqVQ7cZRA1i_s8O03Gjv74=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.790271+00 2025-12-09 10:15:48.790278+00 18931 0012-6FWE#VS-D3 SPMX-20240815314164 \N \N \N 1 \N [{"file_id": "72bf3b4e-b5f8-469d-83ab-aceb5003d44a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765377d7fade4f468c08ba5c96cccc34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765377d7fade4f468c08ba5c96cccc34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765377d7fade4f468c08ba5c96cccc34.jpg", "file_size": 11698, "is_delete": false, "file_type": 1, "original_file_name": "0012-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765377d7fade4f468c08ba5c96cccc34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765377d7fade4f468c08ba5c96cccc34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765377d7fade4f468c08ba5c96cccc34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765377d7fade4f468c08ba5c96cccc34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765377d7fade4f468c08ba5c96cccc34.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdxffVGi5sxT8d7DsVEKuJwOK2Y=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.793271+00 2025-12-09 10:15:48.793278+00 18932 CGH3966#蓝色上身 SPMX-20240815314159 \N \N \N 1 \N [{"file_id": "802f42be-4121-4fba-a679-254801e6eaf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d060af0f9bd14366bb0919abddc0272f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d060af0f9bd14366bb0919abddc0272f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d060af0f9bd14366bb0919abddc0272f.jpg", "file_size": 14933, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#蓝色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d060af0f9bd14366bb0919abddc0272f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d060af0f9bd14366bb0919abddc0272f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d060af0f9bd14366bb0919abddc0272f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d060af0f9bd14366bb0919abddc0272f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d060af0f9bd14366bb0919abddc0272f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fh_yy7kb2rjLOlzM9vz5G3z5y9E=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.796302+00 2025-12-09 10:15:48.796307+00 18933 DL807#前幅11#大红 SPMX-20240815314163 \N \N \N 1 \N [{"file_id": "6b54ac35-266e-4853-823a-d4f02cd04041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96024c850b284096a03b0d3264589b5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96024c850b284096a03b0d3264589b5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96024c850b284096a03b0d3264589b5e.jpg", "file_size": 11967, "is_delete": false, "file_type": 1, "original_file_name": "DL807#前幅11#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96024c850b284096a03b0d3264589b5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96024c850b284096a03b0d3264589b5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96024c850b284096a03b0d3264589b5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96024c850b284096a03b0d3264589b5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96024c850b284096a03b0d3264589b5e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u6MrcNnF9UD-2nsuh6qjwWGk9Rk=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.799403+00 2025-12-09 10:15:48.799409+00 18934 8715FWF#蓝番禺调色 SPMX-20240815314169 \N \N \N 1 \N [{"file_id": "67be28d5-c1c3-4c56-90ad-5d58bc25d5be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f74b40292b4043068bd100a54f5e6151.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f74b40292b4043068bd100a54f5e6151.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f74b40292b4043068bd100a54f5e6151.jpg", "file_size": 16905, "is_delete": false, "file_type": 1, "original_file_name": "8715FWF#蓝番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74b40292b4043068bd100a54f5e6151.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74b40292b4043068bd100a54f5e6151.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f74b40292b4043068bd100a54f5e6151.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f74b40292b4043068bd100a54f5e6151.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f74b40292b4043068bd100a54f5e6151.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGX3OPZb5G3V-hxWIUzzKjwPn9I=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.802466+00 2025-12-09 10:15:48.802471+00 18935 2333#补数裤子XL SPMX-20240815314167 \N \N \N 1 \N [{"file_id": "d8ae9e16-2db5-4108-89a9-5b61327f28bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80ee89c61de84f8e9a026326ea8af281.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80ee89c61de84f8e9a026326ea8af281.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80ee89c61de84f8e9a026326ea8af281.jpg", "file_size": 51066, "is_delete": false, "file_type": 1, "original_file_name": "2333#补数裤子XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ee89c61de84f8e9a026326ea8af281.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ee89c61de84f8e9a026326ea8af281.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80ee89c61de84f8e9a026326ea8af281.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80ee89c61de84f8e9a026326ea8af281.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80ee89c61de84f8e9a026326ea8af281.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BNwcersdph51dvkq3SzJptV7VNA=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.805524+00 2025-12-09 10:15:48.805531+00 18936 HXF-TB029#白 SPMX-20240815314165 \N \N \N 1 \N [{"file_id": "33a7241d-ffc4-45c6-838f-7ec259956a99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbe93f65c3994a899af7f718a90d8ca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbe93f65c3994a899af7f718a90d8ca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbe93f65c3994a899af7f718a90d8ca4.jpg", "file_size": 18315, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB029#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe93f65c3994a899af7f718a90d8ca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe93f65c3994a899af7f718a90d8ca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbe93f65c3994a899af7f718a90d8ca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbe93f65c3994a899af7f718a90d8ca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbe93f65c3994a899af7f718a90d8ca4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0PJG6ubPYc70VAxtBGYCs_DGv_w=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.808635+00 2025-12-09 10:15:48.808641+00 18937 JX0715-2#WJC22 SPMX-20240815314168 \N \N \N 1 \N [{"file_id": "741f809e-2831-4cf3-971a-84066df5a498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1ec8b6f428949b4979dbe001bc166fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1ec8b6f428949b4979dbe001bc166fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1ec8b6f428949b4979dbe001bc166fc.jpg", "file_size": 24284, "is_delete": false, "file_type": 1, "original_file_name": "JX0715-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec8b6f428949b4979dbe001bc166fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec8b6f428949b4979dbe001bc166fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ec8b6f428949b4979dbe001bc166fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1ec8b6f428949b4979dbe001bc166fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1ec8b6f428949b4979dbe001bc166fc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2XC2d5CmAE4TGtoL_rBZbY0a-Zs=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.812071+00 2025-12-09 10:15:48.812076+00 18938 1231-45FWF#小童6码 SPMX-20240815314160 \N \N \N 1 \N [{"file_id": "22a4f5ec-9ef1-4cba-9611-dfa9aebad35b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7eb251649b942e586aa818e4a3f5837.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7eb251649b942e586aa818e4a3f5837.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7eb251649b942e586aa818e4a3f5837.jpg", "file_size": 16057, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb251649b942e586aa818e4a3f5837.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb251649b942e586aa818e4a3f5837.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7eb251649b942e586aa818e4a3f5837.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7eb251649b942e586aa818e4a3f5837.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7eb251649b942e586aa818e4a3f5837.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQmUNF7cENMCm8hZGTa2neib2H0=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.814866+00 2025-12-09 10:15:48.81487+00 18939 LJH2025#红色 SPMX-20240815314166 \N \N \N 1 \N [{"file_id": "3eb115dd-57aa-4fc8-be09-99d5b053fa42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b64f440be24a81be236dd888b00dbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b64f440be24a81be236dd888b00dbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b64f440be24a81be236dd888b00dbc.jpg", "file_size": 47226, "is_delete": false, "file_type": 1, "original_file_name": "LJH2025#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b64f440be24a81be236dd888b00dbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b64f440be24a81be236dd888b00dbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b64f440be24a81be236dd888b00dbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b64f440be24a81be236dd888b00dbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b64f440be24a81be236dd888b00dbc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQRmpi1On4YCiOLLmAHdZSE8FUo=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.817544+00 2025-12-09 10:15:48.817548+00 18940 DL807#前幅4#彩兰 SPMX-20240815314170 \N \N \N 1 \N [{"file_id": "28eb47ff-8348-4abe-b77b-cc04e9add53e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdc71d9c6e694268b2908e72ccd60dd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdc71d9c6e694268b2908e72ccd60dd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdc71d9c6e694268b2908e72ccd60dd8.jpg", "file_size": 11687, "is_delete": false, "file_type": 1, "original_file_name": "DL807#前幅4#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc71d9c6e694268b2908e72ccd60dd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc71d9c6e694268b2908e72ccd60dd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdc71d9c6e694268b2908e72ccd60dd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdc71d9c6e694268b2908e72ccd60dd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdc71d9c6e694268b2908e72ccd60dd8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StUjdKQkeP43EHo2Ee9kzI9RDo8=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.820196+00 2025-12-09 10:15:48.820201+00 18941 LZ1394#上身2号色 SPMX-20240815314161 \N \N \N 1 \N [{"file_id": "6c8cfe4a-6d31-4fc6-bc34-ed48d126ef7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68779fbd69694c1c80dfd181e7513d2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68779fbd69694c1c80dfd181e7513d2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68779fbd69694c1c80dfd181e7513d2f.jpg", "file_size": 16366, "is_delete": false, "file_type": 1, "original_file_name": "LZ1394#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68779fbd69694c1c80dfd181e7513d2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68779fbd69694c1c80dfd181e7513d2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68779fbd69694c1c80dfd181e7513d2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68779fbd69694c1c80dfd181e7513d2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68779fbd69694c1c80dfd181e7513d2f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S4OScjlrW-33CtPhx52_iYq0g88=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.822858+00 2025-12-09 10:15:48.822862+00 18942 FX0003-73#藏青色 SPMX-20240815314171 \N \N \N 1 \N [{"file_id": "28646e36-5908-44ec-8ae9-b3d3521cb4ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "181996ecd1ba4f46a9965f3046343e8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "181996ecd1ba4f46a9965f3046343e8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "181996ecd1ba4f46a9965f3046343e8e.jpg", "file_size": 63952, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-73#藏青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181996ecd1ba4f46a9965f3046343e8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181996ecd1ba4f46a9965f3046343e8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/181996ecd1ba4f46a9965f3046343e8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/181996ecd1ba4f46a9965f3046343e8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/181996ecd1ba4f46a9965f3046343e8e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ia0p3ieQfmxG3LesB6v3dm7wJ4o=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.825494+00 2025-12-09 10:15:48.825499+00 18943 LZ1394#上身3号色 SPMX-20240815314174 \N \N \N 1 \N [{"file_id": "64b39748-b97c-4d35-b427-6545349b276a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e588282d73841428fc11d20f552ad99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e588282d73841428fc11d20f552ad99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e588282d73841428fc11d20f552ad99.jpg", "file_size": 16130, "is_delete": false, "file_type": 1, "original_file_name": "LZ1394#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e588282d73841428fc11d20f552ad99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e588282d73841428fc11d20f552ad99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e588282d73841428fc11d20f552ad99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e588282d73841428fc11d20f552ad99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e588282d73841428fc11d20f552ad99.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2U1wH_v9PdzUf5YvcI5GmidUQk=", "createTime": "2024-08-15 15:05:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.828597+00 2025-12-09 10:15:48.828604+00 18944 1231-45FWF#小童8码+4码 SPMX-20240815314172 \N \N \N 1 \N [{"file_id": "b0a78043-3879-41b5-b578-0a6ba3416663", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "625cc97a4c02418cba079f52c80624be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "625cc97a4c02418cba079f52c80624be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "625cc97a4c02418cba079f52c80624be.jpg", "file_size": 16667, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/625cc97a4c02418cba079f52c80624be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/625cc97a4c02418cba079f52c80624be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/625cc97a4c02418cba079f52c80624be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/625cc97a4c02418cba079f52c80624be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/625cc97a4c02418cba079f52c80624be.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:my9lDHw2Olx8ouZUpGdhjAloxI8=", "createTime": "2024-08-15 15:05:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.831754+00 2025-12-09 10:15:48.83176+00 18945 0012-6FWF#V5曲线 SPMX-20240815314173 \N \N \N 1 \N [{"file_id": "9f20aa20-844c-46b3-affb-ec2c93e2e67e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c146f00274c41b9b2b1930fe8a00236.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c146f00274c41b9b2b1930fe8a00236.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c146f00274c41b9b2b1930fe8a00236.jpg", "file_size": 8079, "is_delete": false, "file_type": 1, "original_file_name": "0012-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c146f00274c41b9b2b1930fe8a00236.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c146f00274c41b9b2b1930fe8a00236.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c146f00274c41b9b2b1930fe8a00236.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c146f00274c41b9b2b1930fe8a00236.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c146f00274c41b9b2b1930fe8a00236.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Q_HWJCrfqaQ-s_dS7kWL1Vl2mk=", "createTime": "2024-08-15 15:05:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.835475+00 2025-12-09 10:15:48.835481+00 18946 0012-7FWE#VS-D3 SPMX-20240815314176 \N \N \N 1 \N [{"file_id": "070f6a47-fc6e-4b73-befb-f639d65e8053", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg", "file_size": 19459, "is_delete": false, "file_type": 1, "original_file_name": "0012-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25fdf5c1b6274c708f8d7ec8e0e2e1de.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OFhnOyojv0NoHAGJE0MFi3KE7iw=", "createTime": "2024-08-15 15:05:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.838819+00 2025-12-09 10:15:48.838825+00 18947 LZ1394#上身4号色 SPMX-20240815314184 \N \N \N 1 \N [{"file_id": "37b720d3-4986-455b-87ac-8e4e8e3680f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "013f8e1f71024122a3603b60adfe3915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "013f8e1f71024122a3603b60adfe3915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "013f8e1f71024122a3603b60adfe3915.jpg", "file_size": 15632, "is_delete": false, "file_type": 1, "original_file_name": "LZ1394#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013f8e1f71024122a3603b60adfe3915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013f8e1f71024122a3603b60adfe3915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/013f8e1f71024122a3603b60adfe3915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/013f8e1f71024122a3603b60adfe3915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/013f8e1f71024122a3603b60adfe3915.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ofh24B2AdGhjRvOxjys6ic2MP6U=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.842067+00 2025-12-09 10:15:48.842072+00 18948 JXX-0002#WJC22 SPMX-20240815314180 \N \N \N 1 \N [{"file_id": "9d5cf7e1-285f-4a4c-a044-f77a6404a6a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "550424caac5b49d48e5586c1812c504b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "550424caac5b49d48e5586c1812c504b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "550424caac5b49d48e5586c1812c504b.jpg", "file_size": 7394, "is_delete": false, "file_type": 1, "original_file_name": "JXX-0002#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550424caac5b49d48e5586c1812c504b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550424caac5b49d48e5586c1812c504b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/550424caac5b49d48e5586c1812c504b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/550424caac5b49d48e5586c1812c504b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/550424caac5b49d48e5586c1812c504b.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPf-jAbjr3-e5o_rpuBPyM3-mJA=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.845069+00 2025-12-09 10:15:48.845075+00 18949 CGH3966#蓝色下身 SPMX-20240815314178 \N \N \N 1 \N [{"file_id": "bcc2b1b8-badf-479e-83f0-da3495d228b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a275c85567841b2a4e7eac54007d5d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a275c85567841b2a4e7eac54007d5d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a275c85567841b2a4e7eac54007d5d2.jpg", "file_size": 26424, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#蓝色下身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a275c85567841b2a4e7eac54007d5d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a275c85567841b2a4e7eac54007d5d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a275c85567841b2a4e7eac54007d5d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a275c85567841b2a4e7eac54007d5d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a275c85567841b2a4e7eac54007d5d2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K9y7j37IKjwlYWcjKDVVhoaFvWQ=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.847976+00 2025-12-09 10:15:48.847982+00 18950 DL807#前幅5#玫红 SPMX-20240815314177 \N \N \N 1 \N [{"file_id": "18243785-ea3e-489f-9629-cf1d1d371daa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27e439e55c974a049028e928726bb0ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27e439e55c974a049028e928726bb0ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27e439e55c974a049028e928726bb0ad.jpg", "file_size": 11640, "is_delete": false, "file_type": 1, "original_file_name": "DL807#前幅5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27e439e55c974a049028e928726bb0ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27e439e55c974a049028e928726bb0ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27e439e55c974a049028e928726bb0ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27e439e55c974a049028e928726bb0ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27e439e55c974a049028e928726bb0ad.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zl3lSBbOpEHkGcxBpVL40u4zXzI=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.851447+00 2025-12-09 10:15:48.851455+00 18951 FX0003-73#黑色 SPMX-20240815314183 \N \N \N 1 \N [{"file_id": "3a209b87-d003-44e5-9b89-227768b177c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba0f816d8b984e96ab236b80cfbfd2f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba0f816d8b984e96ab236b80cfbfd2f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba0f816d8b984e96ab236b80cfbfd2f8.jpg", "file_size": 57367, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-73#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0f816d8b984e96ab236b80cfbfd2f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0f816d8b984e96ab236b80cfbfd2f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0f816d8b984e96ab236b80cfbfd2f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba0f816d8b984e96ab236b80cfbfd2f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba0f816d8b984e96ab236b80cfbfd2f8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cp4tutEQOKSYv3YDWu7_dQ8oB3U=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.855455+00 2025-12-09 10:15:48.855462+00 18952 873-KA#RC23 SPMX-20240815314185 \N \N \N 1 \N [{"file_id": "951a9bc0-56ae-45d4-ae0c-e9e54feb5591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9778be249ad468eb2dbabb335f0bb9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9778be249ad468eb2dbabb335f0bb9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9778be249ad468eb2dbabb335f0bb9e.jpg", "file_size": 19775, "is_delete": false, "file_type": 1, "original_file_name": "873-KA#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9778be249ad468eb2dbabb335f0bb9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9778be249ad468eb2dbabb335f0bb9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9778be249ad468eb2dbabb335f0bb9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9778be249ad468eb2dbabb335f0bb9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9778be249ad468eb2dbabb335f0bb9e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dh-9FhDDsOc-NunErSa5O6drHVA=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.858848+00 2025-12-09 10:15:48.858855+00 18953 LJH2025#绿色 SPMX-20240815314181 \N \N \N 1 \N [{"file_id": "624ee431-098e-43b1-94fd-2a7bb218c9f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79118be7340049bdbdc31e657ee839f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79118be7340049bdbdc31e657ee839f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79118be7340049bdbdc31e657ee839f9.jpg", "file_size": 46265, "is_delete": false, "file_type": 1, "original_file_name": "LJH2025#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79118be7340049bdbdc31e657ee839f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79118be7340049bdbdc31e657ee839f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79118be7340049bdbdc31e657ee839f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79118be7340049bdbdc31e657ee839f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79118be7340049bdbdc31e657ee839f9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:roVwwnJm0xzB94iNbHvhItuTQ-U=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.861866+00 2025-12-09 10:15:48.861871+00 18954 1231-45FWF#小童袖领匹布 SPMX-20240815314179 \N \N \N 1 \N [{"file_id": "76310f4f-1bc0-48c7-a5f6-0abc429697bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c347b8db0544443a8aad9b6f9521bcf3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c347b8db0544443a8aad9b6f9521bcf3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c347b8db0544443a8aad9b6f9521bcf3.jpg", "file_size": 6944, "is_delete": false, "file_type": 1, "original_file_name": "1231-45FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c347b8db0544443a8aad9b6f9521bcf3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c347b8db0544443a8aad9b6f9521bcf3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c347b8db0544443a8aad9b6f9521bcf3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c347b8db0544443a8aad9b6f9521bcf3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c347b8db0544443a8aad9b6f9521bcf3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N99vDQvMO1CYbUA6_4gyxVs0BWs=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.864951+00 2025-12-09 10:15:48.864957+00 18955 23377FWF#V5曲线 SPMX-20240815314186 \N \N \N 1 \N [{"file_id": "57777cfa-6d31-4b20-9691-37d7c2ca3b5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bcced2581cd4a449a90c94ad1862c64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bcced2581cd4a449a90c94ad1862c64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bcced2581cd4a449a90c94ad1862c64.jpg", "file_size": 22940, "is_delete": false, "file_type": 1, "original_file_name": "23377FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcced2581cd4a449a90c94ad1862c64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcced2581cd4a449a90c94ad1862c64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bcced2581cd4a449a90c94ad1862c64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bcced2581cd4a449a90c94ad1862c64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bcced2581cd4a449a90c94ad1862c64.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xZPV1uMhmjw7HhugDvHMOgaFB0=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.868694+00 2025-12-09 10:15:48.8687+00 18956 HXF-TB029#粉 SPMX-20240815314182 \N \N \N 1 \N [{"file_id": "140eb2e3-aef4-4aec-982c-42b700efdbec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1eb00d36db8842639304fa8766e5b116.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1eb00d36db8842639304fa8766e5b116.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1eb00d36db8842639304fa8766e5b116.jpg", "file_size": 18000, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB029#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb00d36db8842639304fa8766e5b116.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb00d36db8842639304fa8766e5b116.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1eb00d36db8842639304fa8766e5b116.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1eb00d36db8842639304fa8766e5b116.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1eb00d36db8842639304fa8766e5b116.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vL1c2KagijEzoLMkSKMWv9xf7zQ=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.873264+00 2025-12-09 10:15:48.87327+00 18957 23376FWF#V5曲线 SPMX-20240815314175 \N \N \N 1 \N [{"file_id": "9ded8ad6-c5e4-46aa-9003-aefc6b3c96b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9f4a03a12ff454489eef93fa896f175.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9f4a03a12ff454489eef93fa896f175.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9f4a03a12ff454489eef93fa896f175.jpg", "file_size": 20070, "is_delete": false, "file_type": 1, "original_file_name": "23376FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f4a03a12ff454489eef93fa896f175.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f4a03a12ff454489eef93fa896f175.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9f4a03a12ff454489eef93fa896f175.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9f4a03a12ff454489eef93fa896f175.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9f4a03a12ff454489eef93fa896f175.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLs-xcpEaybEBIWJTpazUECJQDc=", "createTime": "2024-08-15 15:05:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.876863+00 2025-12-09 10:15:48.876868+00 18958 1231-46FWF#中童12码+10码 SPMX-20240815314190 \N \N \N 1 \N [{"file_id": "fe872a7d-3d51-4b08-982a-e0a816814ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b947cb592d644c9ada9f4cffd8566c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b947cb592d644c9ada9f4cffd8566c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b947cb592d644c9ada9f4cffd8566c1.jpg", "file_size": 17142, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b947cb592d644c9ada9f4cffd8566c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b947cb592d644c9ada9f4cffd8566c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b947cb592d644c9ada9f4cffd8566c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b947cb592d644c9ada9f4cffd8566c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b947cb592d644c9ada9f4cffd8566c1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NjGCuo0A56b3vNKkO9v-4xJXAzU=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.879739+00 2025-12-09 10:15:48.879744+00 18959 FX0003-74#RC23 SPMX-20240815314192 \N \N \N 1 \N [{"file_id": "8d0c8288-584d-45ae-87a1-4cf197104d85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c37d8622fef46b785798f9f25399375.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c37d8622fef46b785798f9f25399375.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c37d8622fef46b785798f9f25399375.jpg", "file_size": 51365, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-74#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c37d8622fef46b785798f9f25399375.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c37d8622fef46b785798f9f25399375.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c37d8622fef46b785798f9f25399375.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c37d8622fef46b785798f9f25399375.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c37d8622fef46b785798f9f25399375.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiDYGvun80DWQTQXPJrSd60_eBk=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.882751+00 2025-12-09 10:15:48.882756+00 18960 0012-7FWF#V5曲线 SPMX-20240815314187 \N \N \N 1 \N [{"file_id": "bd92b152-48ef-45e2-9067-be78426d9cb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ac46080458b4449bfd282129a7900aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ac46080458b4449bfd282129a7900aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ac46080458b4449bfd282129a7900aa.jpg", "file_size": 23777, "is_delete": false, "file_type": 1, "original_file_name": "0012-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac46080458b4449bfd282129a7900aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac46080458b4449bfd282129a7900aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ac46080458b4449bfd282129a7900aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ac46080458b4449bfd282129a7900aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ac46080458b4449bfd282129a7900aa.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XCmcIFdLJldqNNdPI8LCV1rJyrg=", "createTime": "2024-08-15 15:05:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.885764+00 2025-12-09 10:15:48.885771+00 18961 DL807#前幅6#兰绿 SPMX-20240815314188 \N \N \N 1 \N [{"file_id": "d5f36361-c199-469a-b827-742833b4bba2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e099e0910e664288aef1db9ed270b369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e099e0910e664288aef1db9ed270b369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e099e0910e664288aef1db9ed270b369.jpg", "file_size": 11916, "is_delete": false, "file_type": 1, "original_file_name": "DL807#前幅6#兰绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e099e0910e664288aef1db9ed270b369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e099e0910e664288aef1db9ed270b369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e099e0910e664288aef1db9ed270b369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e099e0910e664288aef1db9ed270b369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e099e0910e664288aef1db9ed270b369.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CBpBXmZZ4EVljUOGRb00a2QXbuA=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.888941+00 2025-12-09 10:15:48.888947+00 18962 LZ1394#上身5号色 SPMX-20240815314191 \N \N \N 1 \N [{"file_id": "f19fda06-c547-42b5-b351-e662f6bf99f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dec1c75c24f40489585a46caeb0f0f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dec1c75c24f40489585a46caeb0f0f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dec1c75c24f40489585a46caeb0f0f3.jpg", "file_size": 15639, "is_delete": false, "file_type": 1, "original_file_name": "LZ1394#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dec1c75c24f40489585a46caeb0f0f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dec1c75c24f40489585a46caeb0f0f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dec1c75c24f40489585a46caeb0f0f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dec1c75c24f40489585a46caeb0f0f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dec1c75c24f40489585a46caeb0f0f3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y_ZogyJfVICeNoLnJHfPsMqq8P8=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.891948+00 2025-12-09 10:15:48.891954+00 18963 CGH3966#黄色上身 SPMX-20240815314189 \N \N \N 1 \N [{"file_id": "3a36f98c-8557-4ed3-8693-510325081408", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7edcaed24b92484fad3b12e45ba4bfee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7edcaed24b92484fad3b12e45ba4bfee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7edcaed24b92484fad3b12e45ba4bfee.jpg", "file_size": 14693, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#黄色上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edcaed24b92484fad3b12e45ba4bfee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edcaed24b92484fad3b12e45ba4bfee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7edcaed24b92484fad3b12e45ba4bfee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7edcaed24b92484fad3b12e45ba4bfee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7edcaed24b92484fad3b12e45ba4bfee.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:snBxnUtDqZsJQCvUuMIMwvbayow=", "createTime": "2024-08-15 15:05:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.894978+00 2025-12-09 10:15:48.894984+00 18964 HXF-TB029#粉净色 SPMX-20240815314193 \N \N \N 1 \N [{"file_id": "ddd11677-78e4-46e1-a456-70345c5c9992", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dbe54be884f494d8c8b6db4cf502ff2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dbe54be884f494d8c8b6db4cf502ff2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dbe54be884f494d8c8b6db4cf502ff2.jpg", "file_size": 7689, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB029#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbe54be884f494d8c8b6db4cf502ff2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbe54be884f494d8c8b6db4cf502ff2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dbe54be884f494d8c8b6db4cf502ff2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dbe54be884f494d8c8b6db4cf502ff2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dbe54be884f494d8c8b6db4cf502ff2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StFizecjwOpoeYs2athPI9V5Ev4=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.897972+00 2025-12-09 10:15:48.897978+00 18965 8747-1#WJC22 SPMX-20240815314194 \N \N \N 1 \N [{"file_id": "ce5d6ea0-9234-47ef-b1e0-cabf52037325", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c7d06cea689417c861947ea99431309.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c7d06cea689417c861947ea99431309.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c7d06cea689417c861947ea99431309.jpg", "file_size": 19967, "is_delete": false, "file_type": 1, "original_file_name": "8747-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c7d06cea689417c861947ea99431309.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c7d06cea689417c861947ea99431309.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c7d06cea689417c861947ea99431309.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c7d06cea689417c861947ea99431309.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c7d06cea689417c861947ea99431309.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:izmfiUkard_CSv0Isl4TDjSRriE=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.901085+00 2025-12-09 10:15:48.901091+00 18966 LJH2025#蓝色 SPMX-20240815314196 \N \N \N 1 \N [{"file_id": "8d46c583-76b6-48a1-8690-20a514a45c9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56bc71f8120148a7b0e5f529a7ed2bd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56bc71f8120148a7b0e5f529a7ed2bd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56bc71f8120148a7b0e5f529a7ed2bd4.jpg", "file_size": 46253, "is_delete": false, "file_type": 1, "original_file_name": "LJH2025#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc71f8120148a7b0e5f529a7ed2bd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc71f8120148a7b0e5f529a7ed2bd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56bc71f8120148a7b0e5f529a7ed2bd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56bc71f8120148a7b0e5f529a7ed2bd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56bc71f8120148a7b0e5f529a7ed2bd4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Islrgex5EG9ITzx20DRE4k7M8Y8=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.904158+00 2025-12-09 10:15:48.904164+00 18967 DL807#前幅8#亮黄 SPMX-20240815314197 \N \N \N 1 \N [{"file_id": "581c8d47-de39-4bdb-b388-fb9aa0dc2cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0fbe8fd69e1458db95c358c21477e24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0fbe8fd69e1458db95c358c21477e24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0fbe8fd69e1458db95c358c21477e24.jpg", "file_size": 11400, "is_delete": false, "file_type": 1, "original_file_name": "DL807#前幅8#亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fbe8fd69e1458db95c358c21477e24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fbe8fd69e1458db95c358c21477e24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0fbe8fd69e1458db95c358c21477e24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0fbe8fd69e1458db95c358c21477e24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0fbe8fd69e1458db95c358c21477e24.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ai5JlKYuvI91PIBuh9crov4hAYc=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.907115+00 2025-12-09 10:15:48.907121+00 18968 JXY-1084#B1#RC23 SPMX-20240815314195 \N \N \N 1 \N [{"file_id": "693786b7-80c6-4271-88b1-4f03f8d17182", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8a755351829417e8fda6907b91ed578.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8a755351829417e8fda6907b91ed578.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8a755351829417e8fda6907b91ed578.jpg", "file_size": 83952, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a755351829417e8fda6907b91ed578.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a755351829417e8fda6907b91ed578.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a755351829417e8fda6907b91ed578.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8a755351829417e8fda6907b91ed578.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8a755351829417e8fda6907b91ed578.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRmjHMfMoVAj_z05NKvuNCpglUY=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.910165+00 2025-12-09 10:15:48.910171+00 18969 23377FWF#匹布 SPMX-20240815314199 \N \N \N 1 \N [{"file_id": "3a20178d-028a-4e6a-ba14-682400491f24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20e756025b5f4eeaac469634dc76458c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20e756025b5f4eeaac469634dc76458c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20e756025b5f4eeaac469634dc76458c.jpg", "file_size": 9985, "is_delete": false, "file_type": 1, "original_file_name": "23377FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e756025b5f4eeaac469634dc76458c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e756025b5f4eeaac469634dc76458c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20e756025b5f4eeaac469634dc76458c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20e756025b5f4eeaac469634dc76458c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20e756025b5f4eeaac469634dc76458c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0byTLpyfHc2RrCTgCnsPhPo8xg=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.913244+00 2025-12-09 10:15:48.91325+00 18970 LZ1395#上身13号色 SPMX-20240815314203 \N \N \N 1 \N [{"file_id": "1fb14737-2ac6-4b5e-9358-e6a71a86ca5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ff16627b5c3449d992910d6a81d2389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ff16627b5c3449d992910d6a81d2389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ff16627b5c3449d992910d6a81d2389.jpg", "file_size": 18040, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身13号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff16627b5c3449d992910d6a81d2389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff16627b5c3449d992910d6a81d2389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff16627b5c3449d992910d6a81d2389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ff16627b5c3449d992910d6a81d2389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ff16627b5c3449d992910d6a81d2389.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WnCf4bVf755wsvQjRy8FFHZIw9U=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.916281+00 2025-12-09 10:15:48.916288+00 18971 CGH3966#黄色下身 SPMX-20240815314201 \N \N \N 1 \N [{"file_id": "e97a6a7d-76e9-4f30-93e5-d4cc4dcc2cac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b9af3445b847b0996841e63d425cb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b9af3445b847b0996841e63d425cb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b9af3445b847b0996841e63d425cb1.jpg", "file_size": 25228, "is_delete": false, "file_type": 1, "original_file_name": "CGH3966#黄色下身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b9af3445b847b0996841e63d425cb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b9af3445b847b0996841e63d425cb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b9af3445b847b0996841e63d425cb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b9af3445b847b0996841e63d425cb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b9af3445b847b0996841e63d425cb1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xz_jZwFbC4PqEbgczNMLP83KYeI=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.919322+00 2025-12-09 10:15:48.91933+00 18972 0012-83#粉色 SPMX-20240815314200 \N \N \N 1 \N [{"file_id": "f8dd6ef8-62a1-4366-b483-84c1f8d46178", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a560e62cd8084733988226cecf1e973e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a560e62cd8084733988226cecf1e973e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a560e62cd8084733988226cecf1e973e.jpg", "file_size": 10027, "is_delete": false, "file_type": 1, "original_file_name": "0012-83#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a560e62cd8084733988226cecf1e973e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a560e62cd8084733988226cecf1e973e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a560e62cd8084733988226cecf1e973e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a560e62cd8084733988226cecf1e973e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a560e62cd8084733988226cecf1e973e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qYdFMKKXLqh5ZArh3-ZghUJBZlQ=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.922407+00 2025-12-09 10:15:48.922414+00 18973 HXF-Tb059#RC23 SPMX-20240815314204 \N \N \N 1 \N [{"file_id": "a926f7d2-aeae-4fa3-8ae0-eccd6cc24228", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f41222e6f0224f73aee6bbeb68a593fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f41222e6f0224f73aee6bbeb68a593fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f41222e6f0224f73aee6bbeb68a593fa.jpg", "file_size": 16737, "is_delete": false, "file_type": 1, "original_file_name": "HXF-Tb059#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41222e6f0224f73aee6bbeb68a593fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41222e6f0224f73aee6bbeb68a593fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41222e6f0224f73aee6bbeb68a593fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f41222e6f0224f73aee6bbeb68a593fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f41222e6f0224f73aee6bbeb68a593fa.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xAlhGUD1RHoBUEXhJaG9GxkppxU=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.925519+00 2025-12-09 10:15:48.925525+00 18974 FX0003-75#红花 SPMX-20240815314198 \N \N \N 1 \N [{"file_id": "0a57e1c7-d258-426b-92d6-0cde6bbbc994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e4ee0711d547dbb46208abbf025a28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e4ee0711d547dbb46208abbf025a28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e4ee0711d547dbb46208abbf025a28.jpg", "file_size": 40440, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-75#红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e4ee0711d547dbb46208abbf025a28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e4ee0711d547dbb46208abbf025a28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e4ee0711d547dbb46208abbf025a28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e4ee0711d547dbb46208abbf025a28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e4ee0711d547dbb46208abbf025a28.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:asp2KBgehQJh29H--nWk2jLySyQ=", "createTime": "2024-08-15 15:05:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.928654+00 2025-12-09 10:15:48.928661+00 18975 1231-46FWF#中童14码+12码 SPMX-20240815314202 \N \N \N 1 \N [{"file_id": "8da981d2-5359-412e-a2b8-b71d118e68bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e91c8e3f0eaf44fface21941039b4cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e91c8e3f0eaf44fface21941039b4cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e91c8e3f0eaf44fface21941039b4cc6.jpg", "file_size": 15570, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#中童14码+12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91c8e3f0eaf44fface21941039b4cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91c8e3f0eaf44fface21941039b4cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e91c8e3f0eaf44fface21941039b4cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e91c8e3f0eaf44fface21941039b4cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e91c8e3f0eaf44fface21941039b4cc6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PutdeYqU-ha4bD-0saz8toGj72E=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.931773+00 2025-12-09 10:15:48.931779+00 18976 8748# SPMX-20240815314205 \N \N \N 1 \N [{"file_id": "c99c2140-bd1e-4576-81f2-0ec02843bbfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6baf44ee297347059c406bd9f400e0e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6baf44ee297347059c406bd9f400e0e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6baf44ee297347059c406bd9f400e0e0.jpg", "file_size": 13403, "is_delete": false, "file_type": 1, "original_file_name": "8748#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6baf44ee297347059c406bd9f400e0e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6baf44ee297347059c406bd9f400e0e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6baf44ee297347059c406bd9f400e0e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6baf44ee297347059c406bd9f400e0e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6baf44ee297347059c406bd9f400e0e0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qSD37D42-BZa0NH6VPy7fSF44sQ=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.934868+00 2025-12-09 10:15:48.934875+00 18977 0012-83#蓝色 SPMX-20240815314209 \N \N \N 1 \N [{"file_id": "6c799075-d690-4512-93d1-ba4cf527a433", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34af359a2b8e4bbe9a9debc51bbe1814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34af359a2b8e4bbe9a9debc51bbe1814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34af359a2b8e4bbe9a9debc51bbe1814.jpg", "file_size": 13780, "is_delete": false, "file_type": 1, "original_file_name": "0012-83#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34af359a2b8e4bbe9a9debc51bbe1814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34af359a2b8e4bbe9a9debc51bbe1814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34af359a2b8e4bbe9a9debc51bbe1814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34af359a2b8e4bbe9a9debc51bbe1814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34af359a2b8e4bbe9a9debc51bbe1814.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P4jjk3_GuYjSp_yCaH-QPP3vPdg=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.937965+00 2025-12-09 10:15:48.937971+00 18978 JXY-1084#B10 SPMX-20240815314206 \N \N \N 1 \N [{"file_id": "16e14928-f950-4fec-b9d9-f9948d0054c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3aa20e3bb7d4b42990cb147fa14d657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3aa20e3bb7d4b42990cb147fa14d657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3aa20e3bb7d4b42990cb147fa14d657.jpg", "file_size": 61251, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3aa20e3bb7d4b42990cb147fa14d657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3aa20e3bb7d4b42990cb147fa14d657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3aa20e3bb7d4b42990cb147fa14d657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3aa20e3bb7d4b42990cb147fa14d657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3aa20e3bb7d4b42990cb147fa14d657.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZV0wOW_V5Hjk7wrQ79mqwMJV6A=", "createTime": "2024-08-15 15:05:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.941036+00 2025-12-09 10:15:48.941042+00 18979 FX0003-76#RC23 SPMX-20240815314210 \N \N \N 1 \N [{"file_id": "f56578bb-ee8c-451d-9e26-b13cde57dd5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8dcbb51687b4a64b431e735497d1dfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8dcbb51687b4a64b431e735497d1dfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8dcbb51687b4a64b431e735497d1dfb.jpg", "file_size": 69183, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-76#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8dcbb51687b4a64b431e735497d1dfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8dcbb51687b4a64b431e735497d1dfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8dcbb51687b4a64b431e735497d1dfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8dcbb51687b4a64b431e735497d1dfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8dcbb51687b4a64b431e735497d1dfb.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6NhWwW0POWm1FiAy6LbZtZVSJuw=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.944157+00 2025-12-09 10:15:48.944163+00 18980 DL9059#10#深水红 SPMX-20240815314207 \N \N \N 1 \N [{"file_id": "a52f4f30-e590-4d4f-be95-b89559375327", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34ad009bf4f541bd8c7af620e1046ff8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34ad009bf4f541bd8c7af620e1046ff8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34ad009bf4f541bd8c7af620e1046ff8.jpg", "file_size": 19400, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#10#深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ad009bf4f541bd8c7af620e1046ff8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ad009bf4f541bd8c7af620e1046ff8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34ad009bf4f541bd8c7af620e1046ff8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34ad009bf4f541bd8c7af620e1046ff8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34ad009bf4f541bd8c7af620e1046ff8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWSu53l3y49Wy9cjtRHOxrTB6RA=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.947264+00 2025-12-09 10:15:48.947272+00 18981 23386FWF#V5曲线 SPMX-20240815314208 \N \N \N 1 \N [{"file_id": "0b4bf469-b8fb-4e63-9e34-99893e7b6cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77dc70bfa3144ccfa7f0f691fb61a476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77dc70bfa3144ccfa7f0f691fb61a476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77dc70bfa3144ccfa7f0f691fb61a476.jpg", "file_size": 22438, "is_delete": false, "file_type": 1, "original_file_name": "23386FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dc70bfa3144ccfa7f0f691fb61a476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dc70bfa3144ccfa7f0f691fb61a476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77dc70bfa3144ccfa7f0f691fb61a476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77dc70bfa3144ccfa7f0f691fb61a476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77dc70bfa3144ccfa7f0f691fb61a476.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtQ7PLp-gI3cpl1fF-5IVjmyLmI=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.950366+00 2025-12-09 10:15:48.950372+00 18982 LZ1395#上身1号色 SPMX-20240815314215 \N \N \N 1 \N [{"file_id": "e6d13055-6456-4204-94fd-5582a9784318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a62e467477b43fd801d02d1be142f36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a62e467477b43fd801d02d1be142f36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a62e467477b43fd801d02d1be142f36.jpg", "file_size": 19674, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a62e467477b43fd801d02d1be142f36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a62e467477b43fd801d02d1be142f36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a62e467477b43fd801d02d1be142f36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a62e467477b43fd801d02d1be142f36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a62e467477b43fd801d02d1be142f36.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJkKiBKZ_j7tdKgVv1YYsypRhxk=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.953481+00 2025-12-09 10:15:48.953488+00 18983 HXF-TB061#均码 SPMX-20240815314216 \N \N \N 1 \N [{"file_id": "0410d7c8-4a48-4579-a2d5-f8dbce94b1ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5e5869c11504808880f8de90cc399a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5e5869c11504808880f8de90cc399a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5e5869c11504808880f8de90cc399a4.jpg", "file_size": 64033, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB061#均码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e5869c11504808880f8de90cc399a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e5869c11504808880f8de90cc399a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5e5869c11504808880f8de90cc399a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5e5869c11504808880f8de90cc399a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5e5869c11504808880f8de90cc399a4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M-l5vhzTNQglHZ9w8yXMTKtqnVg=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.956612+00 2025-12-09 10:15:48.956618+00 18984 CGH3967#白色 SPMX-20240815314211 \N \N \N 1 \N [{"file_id": "c2ab1a75-3320-4eb9-abff-12d0580c1db5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c82e45f07084fa1b0f873f24b8d85c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c82e45f07084fa1b0f873f24b8d85c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c82e45f07084fa1b0f873f24b8d85c7.jpg", "file_size": 13793, "is_delete": false, "file_type": 1, "original_file_name": "CGH3967#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c82e45f07084fa1b0f873f24b8d85c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c82e45f07084fa1b0f873f24b8d85c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c82e45f07084fa1b0f873f24b8d85c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c82e45f07084fa1b0f873f24b8d85c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c82e45f07084fa1b0f873f24b8d85c7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AlPSue27BaIZqI71Rt54_2QjWso=", "createTime": "2024-08-15 15:05:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.959951+00 2025-12-09 10:15:48.959958+00 18985 DL9059#23#浅粉色 SPMX-20240815314217 \N \N \N 1 \N [{"file_id": "aec07843-a826-45fc-b9e8-b9d6d7b10a94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d6215669c2f48799957a3e2ba53bebd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d6215669c2f48799957a3e2ba53bebd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d6215669c2f48799957a3e2ba53bebd.jpg", "file_size": 18986, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#23#浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6215669c2f48799957a3e2ba53bebd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6215669c2f48799957a3e2ba53bebd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d6215669c2f48799957a3e2ba53bebd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d6215669c2f48799957a3e2ba53bebd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d6215669c2f48799957a3e2ba53bebd.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htgo-ALkKCKdIzUCx3PgmolFOMc=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.963259+00 2025-12-09 10:15:48.963266+00 18986 LJH2025#黄色 SPMX-20240815314212 \N \N \N 1 \N [{"file_id": "9ed39a61-14f2-4621-998e-846750627852", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a113bf5117a406fa3df12f600c26aab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a113bf5117a406fa3df12f600c26aab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a113bf5117a406fa3df12f600c26aab.jpg", "file_size": 46458, "is_delete": false, "file_type": 1, "original_file_name": "LJH2025#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a113bf5117a406fa3df12f600c26aab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a113bf5117a406fa3df12f600c26aab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a113bf5117a406fa3df12f600c26aab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a113bf5117a406fa3df12f600c26aab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a113bf5117a406fa3df12f600c26aab.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBQD7Dka4aSQRq2gA6Tmrm0nM-w=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.96672+00 2025-12-09 10:15:48.966726+00 18987 1231-46FWF#中童14码 SPMX-20240815314213 \N \N \N 1 \N [{"file_id": "c75db981-4a7b-4782-a6bc-fa79fb25ac95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6700be9c32ef487ea0d6e4c4ae58edea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6700be9c32ef487ea0d6e4c4ae58edea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6700be9c32ef487ea0d6e4c4ae58edea.jpg", "file_size": 15570, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6700be9c32ef487ea0d6e4c4ae58edea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6700be9c32ef487ea0d6e4c4ae58edea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6700be9c32ef487ea0d6e4c4ae58edea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6700be9c32ef487ea0d6e4c4ae58edea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6700be9c32ef487ea0d6e4c4ae58edea.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:79lUJjJ8aRp0gQuiytuffkqKcHM=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.970201+00 2025-12-09 10:15:48.970207+00 18988 8748#白色 SPMX-20240815314214 \N \N \N 1 \N [{"file_id": "d1243de9-506b-49de-8c0e-211ef7eeabd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e10b67ad98a54662ba496cd305a41743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e10b67ad98a54662ba496cd305a41743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e10b67ad98a54662ba496cd305a41743.jpg", "file_size": 13520, "is_delete": false, "file_type": 1, "original_file_name": "8748#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10b67ad98a54662ba496cd305a41743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10b67ad98a54662ba496cd305a41743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e10b67ad98a54662ba496cd305a41743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e10b67ad98a54662ba496cd305a41743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e10b67ad98a54662ba496cd305a41743.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yBPG9_cScHhW-FIvG40tDpHms6Y=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.973056+00 2025-12-09 10:15:48.97306+00 18989 FX0003-77#RC23 SPMX-20240815314218 \N \N \N 1 \N [{"file_id": "dba604ae-edc7-4a0a-891e-245196848a93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2aaa3ca75fe4bde89e781beef551771.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2aaa3ca75fe4bde89e781beef551771.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2aaa3ca75fe4bde89e781beef551771.jpg", "file_size": 19139, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-77#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aaa3ca75fe4bde89e781beef551771.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aaa3ca75fe4bde89e781beef551771.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aaa3ca75fe4bde89e781beef551771.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2aaa3ca75fe4bde89e781beef551771.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2aaa3ca75fe4bde89e781beef551771.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5UH4e9CGyUYqHsv69-k1GJd9OVg=", "createTime": "2024-08-15 15:05:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.975722+00 2025-12-09 10:15:48.975727+00 18990 0012-83#黄色 SPMX-20240815314221 \N \N \N 1 \N [{"file_id": "a75c4422-e4af-4008-94a5-795ac116326b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "112847a5ef1f45fa9a0035b45b9e603c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "112847a5ef1f45fa9a0035b45b9e603c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "112847a5ef1f45fa9a0035b45b9e603c.jpg", "file_size": 10415, "is_delete": false, "file_type": 1, "original_file_name": "0012-83#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112847a5ef1f45fa9a0035b45b9e603c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112847a5ef1f45fa9a0035b45b9e603c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112847a5ef1f45fa9a0035b45b9e603c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/112847a5ef1f45fa9a0035b45b9e603c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/112847a5ef1f45fa9a0035b45b9e603c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g4wPt0vpZTyo4ML80d7OSrxlg1w=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.978475+00 2025-12-09 10:15:48.97848+00 18991 FX0003-78#RC23 SPMX-20240815314223 \N \N \N 1 \N [{"file_id": "ef08b953-2184-47f6-b874-106687ffd70a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e901dbee47e4dfc8c0364574af17e98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e901dbee47e4dfc8c0364574af17e98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e901dbee47e4dfc8c0364574af17e98.jpg", "file_size": 17276, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-78#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e901dbee47e4dfc8c0364574af17e98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e901dbee47e4dfc8c0364574af17e98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e901dbee47e4dfc8c0364574af17e98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e901dbee47e4dfc8c0364574af17e98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e901dbee47e4dfc8c0364574af17e98.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ajlzAwsZ0os5x8PWpQKQMFaMiag=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.981198+00 2025-12-09 10:15:48.981203+00 18992 1231-46FWF#中童袖领匹布 SPMX-20240815314222 \N \N \N 1 \N [{"file_id": "6816cece-bd70-4670-a69b-225b0f957bd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760b9c19f4574e65a5e8813cec4c8556.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760b9c19f4574e65a5e8813cec4c8556.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760b9c19f4574e65a5e8813cec4c8556.jpg", "file_size": 7539, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760b9c19f4574e65a5e8813cec4c8556.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760b9c19f4574e65a5e8813cec4c8556.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760b9c19f4574e65a5e8813cec4c8556.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760b9c19f4574e65a5e8813cec4c8556.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760b9c19f4574e65a5e8813cec4c8556.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4sYHSMpkcJtXpXp2YDQqxRFKsU=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.98389+00 2025-12-09 10:15:48.983894+00 18993 JXY-1084#B11 SPMX-20240815314219 \N \N \N 1 \N [{"file_id": "624217a3-1267-4fbf-afeb-5ab7282bbf10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e605e5db0e6458bae720b65299f2bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e605e5db0e6458bae720b65299f2bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e605e5db0e6458bae720b65299f2bbe.jpg", "file_size": 48971, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B11.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e605e5db0e6458bae720b65299f2bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e605e5db0e6458bae720b65299f2bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e605e5db0e6458bae720b65299f2bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e605e5db0e6458bae720b65299f2bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e605e5db0e6458bae720b65299f2bbe.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L28SSczRWPCuJ2NBH6qjkh3rGBo=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.986477+00 2025-12-09 10:15:48.986482+00 18994 23386FWF#V5曲线番禺调色 SPMX-20240815314220 \N \N \N 1 \N [{"file_id": "761e8406-9ee2-4a3d-897b-684051e3a118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f33a894b9784b1eb8aacffc1da72c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f33a894b9784b1eb8aacffc1da72c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f33a894b9784b1eb8aacffc1da72c56.jpg", "file_size": 22722, "is_delete": false, "file_type": 1, "original_file_name": "23386FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33a894b9784b1eb8aacffc1da72c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33a894b9784b1eb8aacffc1da72c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f33a894b9784b1eb8aacffc1da72c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f33a894b9784b1eb8aacffc1da72c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f33a894b9784b1eb8aacffc1da72c56.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GL-tpBN-YdBZRJOOC8GylTydFpc=", "createTime": "2024-08-15 15:05:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.989182+00 2025-12-09 10:15:48.989187+00 18995 1231-46FWF#小童6码 SPMX-20240815314229 \N \N \N 1 \N [{"file_id": "2b8d7488-4e59-4bae-866c-0e89b589a98c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31ea72425f7f47a39dcdc1dfa346aa18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31ea72425f7f47a39dcdc1dfa346aa18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31ea72425f7f47a39dcdc1dfa346aa18.jpg", "file_size": 17794, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ea72425f7f47a39dcdc1dfa346aa18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ea72425f7f47a39dcdc1dfa346aa18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ea72425f7f47a39dcdc1dfa346aa18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31ea72425f7f47a39dcdc1dfa346aa18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31ea72425f7f47a39dcdc1dfa346aa18.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qd7qfw3kDujzIKq_c6GRj_phScc=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.991908+00 2025-12-09 10:15:48.991913+00 18996 FX0003-79#RC23 SPMX-20240815314233 \N \N \N 1 \N [{"file_id": "0027814e-6097-4e22-a5f8-c99c450973c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da3e2b90508d49f080bbaacc6c9f7964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da3e2b90508d49f080bbaacc6c9f7964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da3e2b90508d49f080bbaacc6c9f7964.jpg", "file_size": 17567, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-79#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3e2b90508d49f080bbaacc6c9f7964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3e2b90508d49f080bbaacc6c9f7964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3e2b90508d49f080bbaacc6c9f7964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da3e2b90508d49f080bbaacc6c9f7964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da3e2b90508d49f080bbaacc6c9f7964.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9mYpLedx9lYayJMqgz3s46-KkQ=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.99459+00 2025-12-09 10:15:48.994594+00 18997 DL9059#4#彩兰色 SPMX-20240815314228 \N \N \N 1 \N [{"file_id": "20b0eccb-7504-4e7d-9eec-e45ecd00563f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69cc9cec2b3947d590c011bcb48e4b99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69cc9cec2b3947d590c011bcb48e4b99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69cc9cec2b3947d590c011bcb48e4b99.jpg", "file_size": 19015, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#4#彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cc9cec2b3947d590c011bcb48e4b99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cc9cec2b3947d590c011bcb48e4b99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cc9cec2b3947d590c011bcb48e4b99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69cc9cec2b3947d590c011bcb48e4b99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69cc9cec2b3947d590c011bcb48e4b99.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wRxUEU9T2IZfSYj2lCzEIa0XNAE=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:48.99756+00 2025-12-09 10:15:48.997564+00 18998 JXY-1084#B12 SPMX-20240815314232 \N \N \N 1 \N [{"file_id": "8b5cda4a-b03c-4345-9ab3-3eca98747995", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25cf9266d63645ad8b575df8aa4ef9e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25cf9266d63645ad8b575df8aa4ef9e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25cf9266d63645ad8b575df8aa4ef9e4.jpg", "file_size": 47282, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cf9266d63645ad8b575df8aa4ef9e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cf9266d63645ad8b575df8aa4ef9e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25cf9266d63645ad8b575df8aa4ef9e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25cf9266d63645ad8b575df8aa4ef9e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25cf9266d63645ad8b575df8aa4ef9e4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1pc4NtnayhWA5eXpHxDTdbKB1IE=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.000547+00 2025-12-09 10:15:49.000551+00 18999 0012-89#WJC22 SPMX-20240815314231 \N \N \N 1 \N [{"file_id": "848042de-4035-4655-b2a4-986a597cdaec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff627ea245104e7381791088b74d8d43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff627ea245104e7381791088b74d8d43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff627ea245104e7381791088b74d8d43.jpg", "file_size": 17954, "is_delete": false, "file_type": 1, "original_file_name": "0012-89#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff627ea245104e7381791088b74d8d43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff627ea245104e7381791088b74d8d43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff627ea245104e7381791088b74d8d43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff627ea245104e7381791088b74d8d43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff627ea245104e7381791088b74d8d43.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pc5eaDqTvkcsghnkEYUig-7qXzE=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.003491+00 2025-12-09 10:15:49.003496+00 19000 LZ1395#上身2号色 SPMX-20240815314226 \N \N \N 1 \N [{"file_id": "b7e5918d-ef12-4fea-bed3-0a81abf19e65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94274227356b495383df8232e99749be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94274227356b495383df8232e99749be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94274227356b495383df8232e99749be.jpg", "file_size": 19714, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94274227356b495383df8232e99749be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94274227356b495383df8232e99749be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94274227356b495383df8232e99749be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94274227356b495383df8232e99749be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94274227356b495383df8232e99749be.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4i8NjaiSjK8uw85RlelASqv5Dc=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.006502+00 2025-12-09 10:15:49.006506+00 19001 LJH2026#兰色 SPMX-20240815314230 \N \N \N 1 \N [{"file_id": "c9b29e93-5769-4bc6-a18f-a8bb2516b6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85f9a727a0f04524810830ec3a2c6237.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85f9a727a0f04524810830ec3a2c6237.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85f9a727a0f04524810830ec3a2c6237.jpg", "file_size": 58415, "is_delete": false, "file_type": 1, "original_file_name": "LJH2026#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9a727a0f04524810830ec3a2c6237.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9a727a0f04524810830ec3a2c6237.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85f9a727a0f04524810830ec3a2c6237.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85f9a727a0f04524810830ec3a2c6237.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85f9a727a0f04524810830ec3a2c6237.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-F3o_uTm6U7TNGABR3TrA7Hltfk=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.009494+00 2025-12-09 10:15:49.009499+00 19002 CGH3967#粉色 SPMX-20240815314224 \N \N \N 1 \N [{"file_id": "f5cb8b5a-e10f-48ab-9400-467f05553ab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cfa97fa3e264f84b4cf3f31c4e435d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cfa97fa3e264f84b4cf3f31c4e435d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cfa97fa3e264f84b4cf3f31c4e435d4.jpg", "file_size": 12612, "is_delete": false, "file_type": 1, "original_file_name": "CGH3967#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cfa97fa3e264f84b4cf3f31c4e435d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cfa97fa3e264f84b4cf3f31c4e435d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cfa97fa3e264f84b4cf3f31c4e435d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cfa97fa3e264f84b4cf3f31c4e435d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cfa97fa3e264f84b4cf3f31c4e435d4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81GczTn0WjbrH9vZQSVjbGliMyo=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.012454+00 2025-12-09 10:15:49.012458+00 19003 8748#绿色 SPMX-20240815314225 \N \N \N 1 \N [{"file_id": "2fbd2f94-c731-43d9-a6b9-aa09bf569458", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg", "file_size": 14262, "is_delete": false, "file_type": 1, "original_file_name": "8748#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5a5f6db77a34a49b7a4e7ef54cdcee9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nYG5LmQ4H6YcgjK-s17dPGia6I=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.015472+00 2025-12-09 10:15:49.015476+00 19004 HXF-TB073#RC23 SPMX-20240815314227 \N \N \N 1 \N [{"file_id": "0bd03ce0-a5a1-4e31-bd85-e14d3db62985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d570da78a5847bdb96c1835f31c5c4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d570da78a5847bdb96c1835f31c5c4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d570da78a5847bdb96c1835f31c5c4c.jpg", "file_size": 39538, "is_delete": false, "file_type": 1, "original_file_name": "HXF-TB073#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d570da78a5847bdb96c1835f31c5c4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d570da78a5847bdb96c1835f31c5c4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d570da78a5847bdb96c1835f31c5c4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d570da78a5847bdb96c1835f31c5c4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d570da78a5847bdb96c1835f31c5c4c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iqHSJrXcjvLOrRHVFA9zgH22N2g=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.018435+00 2025-12-09 10:15:49.01844+00 19005 23386FWF#匹布 SPMX-20240815314234 \N \N \N 1 \N [{"file_id": "80e49e21-da89-4d16-93b4-07dd522a392e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe515159d40344609d24a5e67ba9af63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe515159d40344609d24a5e67ba9af63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe515159d40344609d24a5e67ba9af63.jpg", "file_size": 25049, "is_delete": false, "file_type": 1, "original_file_name": "23386FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe515159d40344609d24a5e67ba9af63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe515159d40344609d24a5e67ba9af63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe515159d40344609d24a5e67ba9af63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe515159d40344609d24a5e67ba9af63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe515159d40344609d24a5e67ba9af63.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J9dGGZ9Y2WQtQVXvZDIrW8q0A0I=", "createTime": "2024-08-15 15:05:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.021089+00 2025-12-09 10:15:49.021093+00 19006 CGH3967#黄色 SPMX-20240815314235 \N \N \N 1 \N [{"file_id": "d5668fe6-f5a6-4506-a06b-f136d0fb404d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7f8ab2003424ecfb91356a0c7358ab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7f8ab2003424ecfb91356a0c7358ab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7f8ab2003424ecfb91356a0c7358ab2.jpg", "file_size": 13931, "is_delete": false, "file_type": 1, "original_file_name": "CGH3967#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f8ab2003424ecfb91356a0c7358ab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f8ab2003424ecfb91356a0c7358ab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7f8ab2003424ecfb91356a0c7358ab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7f8ab2003424ecfb91356a0c7358ab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7f8ab2003424ecfb91356a0c7358ab2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RLN1MvUTtcyoDvVXGaG64oUA6_E=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.023743+00 2025-12-09 10:15:49.023748+00 19007 0012-8FWE#咖啡色 SPMX-20240815314242 \N \N \N 1 \N [{"file_id": "436c359f-5345-4069-8702-90b9a4947d36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cab0b4c8361740ae9acb0004e0938e54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cab0b4c8361740ae9acb0004e0938e54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cab0b4c8361740ae9acb0004e0938e54.jpg", "file_size": 21037, "is_delete": false, "file_type": 1, "original_file_name": "0012-8FWE#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab0b4c8361740ae9acb0004e0938e54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab0b4c8361740ae9acb0004e0938e54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cab0b4c8361740ae9acb0004e0938e54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cab0b4c8361740ae9acb0004e0938e54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cab0b4c8361740ae9acb0004e0938e54.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mEQz6HUp3pfPyJcCCYPzfNw5wJE=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.026431+00 2025-12-09 10:15:49.026435+00 19008 8748#藏青 SPMX-20240815314236 \N \N \N 1 \N [{"file_id": "f8f65a7e-bc42-4c3f-b2f9-89d71b39c6fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc212f57e8c94f199f2656c5fa392b93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc212f57e8c94f199f2656c5fa392b93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc212f57e8c94f199f2656c5fa392b93.jpg", "file_size": 15365, "is_delete": false, "file_type": 1, "original_file_name": "8748#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc212f57e8c94f199f2656c5fa392b93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc212f57e8c94f199f2656c5fa392b93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc212f57e8c94f199f2656c5fa392b93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc212f57e8c94f199f2656c5fa392b93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc212f57e8c94f199f2656c5fa392b93.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-Y54YYIJR8-J9Lg5Sn8SEoMmFA=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.029105+00 2025-12-09 10:15:49.029109+00 19009 HXF00 SPMX-20240815314239 \N \N \N 1 \N [{"file_id": "638fe0c6-c141-4107-a003-3b53646fda68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae96322859fb4594819fc63c613eb0aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae96322859fb4594819fc63c613eb0aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae96322859fb4594819fc63c613eb0aa.jpg", "file_size": 12290, "is_delete": false, "file_type": 1, "original_file_name": "HXF00.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae96322859fb4594819fc63c613eb0aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae96322859fb4594819fc63c613eb0aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae96322859fb4594819fc63c613eb0aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae96322859fb4594819fc63c613eb0aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae96322859fb4594819fc63c613eb0aa.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aY8cb8LQuK5Gt4YD1Qnm0TdhLHc=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.031779+00 2025-12-09 10:15:49.031783+00 19010 1231-46FWF#小童8码+4码 SPMX-20240815314240 \N \N \N 1 \N [{"file_id": "95cb1e9a-362d-4e6d-90c6-9dce8d1f7193", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7ebfa8ebde24af1be122b27e28dfa77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7ebfa8ebde24af1be122b27e28dfa77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7ebfa8ebde24af1be122b27e28dfa77.jpg", "file_size": 18574, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7ebfa8ebde24af1be122b27e28dfa77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7ebfa8ebde24af1be122b27e28dfa77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7ebfa8ebde24af1be122b27e28dfa77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7ebfa8ebde24af1be122b27e28dfa77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7ebfa8ebde24af1be122b27e28dfa77.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tarJrEClgGpR5xfVCiLJcfzQX2g=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.034544+00 2025-12-09 10:15:49.034548+00 19011 LZ1395#上身3号色 SPMX-20240815314238 \N \N \N 1 \N [{"file_id": "bae18d80-9140-4609-836e-b44b9e366213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a2b7bd9274143e38d926f8ce4660aaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a2b7bd9274143e38d926f8ce4660aaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a2b7bd9274143e38d926f8ce4660aaa.jpg", "file_size": 18040, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2b7bd9274143e38d926f8ce4660aaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2b7bd9274143e38d926f8ce4660aaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2b7bd9274143e38d926f8ce4660aaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a2b7bd9274143e38d926f8ce4660aaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a2b7bd9274143e38d926f8ce4660aaa.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5P8vR6jZoL3twtTh1YY_IMWRFuM=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.037217+00 2025-12-09 10:15:49.037221+00 19012 DL9059#5#玫红 SPMX-20240815314241 \N \N \N 1 \N [{"file_id": "882178c5-28a3-4fab-a859-2924515c1f0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2f4b821e69c45e3ac75fb7c79de5e82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2f4b821e69c45e3ac75fb7c79de5e82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2f4b821e69c45e3ac75fb7c79de5e82.jpg", "file_size": 19007, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#5#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f4b821e69c45e3ac75fb7c79de5e82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f4b821e69c45e3ac75fb7c79de5e82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2f4b821e69c45e3ac75fb7c79de5e82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2f4b821e69c45e3ac75fb7c79de5e82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2f4b821e69c45e3ac75fb7c79de5e82.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8C-q7aXR-vkSaGWuuC3vOdzJ6ek=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.039885+00 2025-12-09 10:15:49.039889+00 19013 JXY-1084#B13 SPMX-20240815314245 \N \N \N 1 \N [{"file_id": "8c3a47e4-84e3-4fd3-961c-bd9f20d91c36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5d949018b9644218f401d7d1dad0f77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5d949018b9644218f401d7d1dad0f77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5d949018b9644218f401d7d1dad0f77.jpg", "file_size": 41558, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B13.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d949018b9644218f401d7d1dad0f77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d949018b9644218f401d7d1dad0f77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5d949018b9644218f401d7d1dad0f77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5d949018b9644218f401d7d1dad0f77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5d949018b9644218f401d7d1dad0f77.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-oeKwU_QFYv-GK9QNbQrFyuRAuc=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.042577+00 2025-12-09 10:15:49.042581+00 19014 LJH2026#橙色 SPMX-20240815314243 \N \N \N 1 \N [{"file_id": "d9eec1b3-3a67-4413-93e5-91adc556f49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7e1969f2a8144c4b5bcc4064a790a14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7e1969f2a8144c4b5bcc4064a790a14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7e1969f2a8144c4b5bcc4064a790a14.jpg", "file_size": 61853, "is_delete": false, "file_type": 1, "original_file_name": "LJH2026#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e1969f2a8144c4b5bcc4064a790a14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e1969f2a8144c4b5bcc4064a790a14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7e1969f2a8144c4b5bcc4064a790a14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7e1969f2a8144c4b5bcc4064a790a14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7e1969f2a8144c4b5bcc4064a790a14.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wAXuorR8lcx3JJ-XdHkidcSkn7E=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.045632+00 2025-12-09 10:15:49.045637+00 19015 FX0003-8#RC23 SPMX-20240815314244 \N \N \N 1 \N [{"file_id": "3c1c5559-0c15-407b-9b86-b597fecc69e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83cb9f863c0d4783ac9c03bb853f35ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83cb9f863c0d4783ac9c03bb853f35ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83cb9f863c0d4783ac9c03bb853f35ff.jpg", "file_size": 9972, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-8#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cb9f863c0d4783ac9c03bb853f35ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cb9f863c0d4783ac9c03bb853f35ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83cb9f863c0d4783ac9c03bb853f35ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83cb9f863c0d4783ac9c03bb853f35ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83cb9f863c0d4783ac9c03bb853f35ff.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Qloz_ohE-GamXjuyhPRJx_gu0U=", "createTime": "2024-08-15 15:05:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.048597+00 2025-12-09 10:15:49.048603+00 19016 234#-定位裁-卡其 SPMX-20240815314246 \N \N \N 1 \N [{"file_id": "2cc82ebd-86ab-404b-88b4-0fa322180bb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3775f64c24584f1b9f62d65b2cee6f50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3775f64c24584f1b9f62d65b2cee6f50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3775f64c24584f1b9f62d65b2cee6f50.jpg", "file_size": 81657, "is_delete": false, "file_type": 1, "original_file_name": "234#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3775f64c24584f1b9f62d65b2cee6f50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3775f64c24584f1b9f62d65b2cee6f50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3775f64c24584f1b9f62d65b2cee6f50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3775f64c24584f1b9f62d65b2cee6f50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3775f64c24584f1b9f62d65b2cee6f50.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D46yinA_9pDlELtzdGl3cXboO_A=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.051611+00 2025-12-09 10:15:49.051618+00 19017 CGH3967#黑色 SPMX-20240815314247 \N \N \N 1 \N [{"file_id": "bf1f1ab5-4b49-4999-b9a2-d996c4eab647", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f7f073b705648e6a664922d6555f4e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f7f073b705648e6a664922d6555f4e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f7f073b705648e6a664922d6555f4e4.jpg", "file_size": 15601, "is_delete": false, "file_type": 1, "original_file_name": "CGH3967#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7f073b705648e6a664922d6555f4e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7f073b705648e6a664922d6555f4e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7f073b705648e6a664922d6555f4e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f7f073b705648e6a664922d6555f4e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f7f073b705648e6a664922d6555f4e4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AdiinLyq7XW17rWrDQFwvUcd0CM=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.05455+00 2025-12-09 10:15:49.054555+00 19018 0012-8FWE#灰色 SPMX-20240815314251 \N \N \N 1 \N [{"file_id": "3acf6c42-d9dc-472b-a9a0-4dbc6151abce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30cdd0ef9ba0488a8888b7ec8f527317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30cdd0ef9ba0488a8888b7ec8f527317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30cdd0ef9ba0488a8888b7ec8f527317.jpg", "file_size": 21935, "is_delete": false, "file_type": 1, "original_file_name": "0012-8FWE#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30cdd0ef9ba0488a8888b7ec8f527317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30cdd0ef9ba0488a8888b7ec8f527317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30cdd0ef9ba0488a8888b7ec8f527317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30cdd0ef9ba0488a8888b7ec8f527317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30cdd0ef9ba0488a8888b7ec8f527317.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EOCNvCBcIR4lxwOi5oYIZC4bzvU=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.057491+00 2025-12-09 10:15:49.057498+00 19019 LZ1395#上身4号色 SPMX-20240815314253 \N \N \N 1 \N [{"file_id": "f30da3e2-63ff-4c67-8fda-1ff21e84f9da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c76e1b2a4fe8450289da6d28cf207a79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c76e1b2a4fe8450289da6d28cf207a79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c76e1b2a4fe8450289da6d28cf207a79.jpg", "file_size": 18138, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76e1b2a4fe8450289da6d28cf207a79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76e1b2a4fe8450289da6d28cf207a79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76e1b2a4fe8450289da6d28cf207a79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c76e1b2a4fe8450289da6d28cf207a79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c76e1b2a4fe8450289da6d28cf207a79.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oi9ePdwBD0R1oBpNA_-4Vy26Niw=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.060582+00 2025-12-09 10:15:49.060588+00 19020 HXF0008-1#白底 SPMX-20240815314250 \N \N \N 1 \N [{"file_id": "34505e8c-72ac-4deb-a8fe-115b53276cf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2985b63fbd344c69a622155432bf581f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2985b63fbd344c69a622155432bf581f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2985b63fbd344c69a622155432bf581f.jpg", "file_size": 12081, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-1#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2985b63fbd344c69a622155432bf581f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2985b63fbd344c69a622155432bf581f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2985b63fbd344c69a622155432bf581f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2985b63fbd344c69a622155432bf581f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2985b63fbd344c69a622155432bf581f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VGWxsIfbFQwJoPCOyxD0kFRAv0=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.063617+00 2025-12-09 10:15:49.063623+00 19021 LJH2026#紫灰 SPMX-20240815314255 \N \N \N 1 \N [{"file_id": "808f8890-9950-42f0-a6b6-35c30addc822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7fb83dca6cc4eb4be188b482495ed9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7fb83dca6cc4eb4be188b482495ed9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7fb83dca6cc4eb4be188b482495ed9d.jpg", "file_size": 49849, "is_delete": false, "file_type": 1, "original_file_name": "LJH2026#紫灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb83dca6cc4eb4be188b482495ed9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb83dca6cc4eb4be188b482495ed9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fb83dca6cc4eb4be188b482495ed9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7fb83dca6cc4eb4be188b482495ed9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7fb83dca6cc4eb4be188b482495ed9d.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nr2ChsiWaCo7Sb1tew_B7d2fic=", "createTime": "2024-08-15 15:05:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.066707+00 2025-12-09 10:15:49.066715+00 19022 DL9059#8#黄色 SPMX-20240815314252 \N \N \N 1 \N [{"file_id": "4f3d6c83-ab69-45d1-a562-306473958675", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e3449b79cf7414a83b34a2d7daf0fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e3449b79cf7414a83b34a2d7daf0fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e3449b79cf7414a83b34a2d7daf0fd0.jpg", "file_size": 19161, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#8#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3449b79cf7414a83b34a2d7daf0fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3449b79cf7414a83b34a2d7daf0fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e3449b79cf7414a83b34a2d7daf0fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e3449b79cf7414a83b34a2d7daf0fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e3449b79cf7414a83b34a2d7daf0fd0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJugs_zvFM6N13uEseDCMjngFfU=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.069834+00 2025-12-09 10:15:49.069841+00 19023 8768FWE#原色2XL VS-D3 SPMX-20240815314248 \N \N \N 1 \N [{"file_id": "a439028e-3d3a-4324-ae87-e2b14987fe6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e83c3ca9da50410997bac47d7f92773d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e83c3ca9da50410997bac47d7f92773d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e83c3ca9da50410997bac47d7f92773d.jpg", "file_size": 16113, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#原色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c3ca9da50410997bac47d7f92773d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c3ca9da50410997bac47d7f92773d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e83c3ca9da50410997bac47d7f92773d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e83c3ca9da50410997bac47d7f92773d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e83c3ca9da50410997bac47d7f92773d.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sG9uSSM4-egf4geuYGj7tR1S4pw=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.072849+00 2025-12-09 10:15:49.072855+00 19024 1231-46FWF#小童袖领匹布 SPMX-20240815314249 \N \N \N 1 \N [{"file_id": "3ce523fa-3bca-4085-a01b-2ea14f1968ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bebac82776b749f78fa968501273b7f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bebac82776b749f78fa968501273b7f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bebac82776b749f78fa968501273b7f8.jpg", "file_size": 7885, "is_delete": false, "file_type": 1, "original_file_name": "1231-46FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bebac82776b749f78fa968501273b7f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bebac82776b749f78fa968501273b7f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bebac82776b749f78fa968501273b7f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bebac82776b749f78fa968501273b7f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bebac82776b749f78fa968501273b7f8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pEFjM32ioSEl6-UoJSSveW7Zfxk=", "createTime": "2024-08-15 15:05:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.075884+00 2025-12-09 10:15:49.075891+00 19025 FX0003-80#RC23 SPMX-20240815314254 \N \N \N 1 \N [{"file_id": "a01b8f6b-388e-4fb1-936e-f37d63b98eed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d66f0ba83e14e71b989d95c02917c8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d66f0ba83e14e71b989d95c02917c8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d66f0ba83e14e71b989d95c02917c8f.jpg", "file_size": 37885, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-80#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d66f0ba83e14e71b989d95c02917c8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d66f0ba83e14e71b989d95c02917c8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d66f0ba83e14e71b989d95c02917c8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d66f0ba83e14e71b989d95c02917c8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d66f0ba83e14e71b989d95c02917c8f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J7HJHgmVQfFBNsXE9xfk36Wf9RU=", "createTime": "2024-08-15 15:05:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.078958+00 2025-12-09 10:15:49.078964+00 19026 1231-47FWF#中童12码+10码 SPMX-20240815314257 \N \N \N 1 \N [{"file_id": "16ccaea4-f91a-49ec-9acc-124fccdbba48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75ce5ed92086484191b67160f42b0143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75ce5ed92086484191b67160f42b0143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75ce5ed92086484191b67160f42b0143.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ce5ed92086484191b67160f42b0143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ce5ed92086484191b67160f42b0143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ce5ed92086484191b67160f42b0143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75ce5ed92086484191b67160f42b0143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75ce5ed92086484191b67160f42b0143.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0vZyfKhmVwro24WX__wLEO6nLC8=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.082078+00 2025-12-09 10:15:49.082085+00 19027 DL9059#9#枣红 SPMX-20240815314259 \N \N \N 1 \N [{"file_id": "78223be7-415b-4936-a8e0-1d8e217b899c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "452672751b5c4417b5c4dfccd4375ce0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "452672751b5c4417b5c4dfccd4375ce0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "452672751b5c4417b5c4dfccd4375ce0.jpg", "file_size": 18584, "is_delete": false, "file_type": 1, "original_file_name": "DL9059#9#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452672751b5c4417b5c4dfccd4375ce0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452672751b5c4417b5c4dfccd4375ce0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452672751b5c4417b5c4dfccd4375ce0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/452672751b5c4417b5c4dfccd4375ce0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/452672751b5c4417b5c4dfccd4375ce0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAyfRBBZJIJcKPALkxXz3TE9-po=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.085293+00 2025-12-09 10:15:49.085301+00 19028 CGH3976#WJC22 SPMX-20240815314260 \N \N \N 1 \N [{"file_id": "251e1948-e115-4a81-8763-83e2ab342593", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73f1e1ff51134f3aa0d66ef63cadd790.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73f1e1ff51134f3aa0d66ef63cadd790.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73f1e1ff51134f3aa0d66ef63cadd790.bmp", "file_size": 139830, "is_delete": false, "file_type": 1, "original_file_name": "CGH3976#WJC22.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73f1e1ff51134f3aa0d66ef63cadd790.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73f1e1ff51134f3aa0d66ef63cadd790.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73f1e1ff51134f3aa0d66ef63cadd790.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73f1e1ff51134f3aa0d66ef63cadd790.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73f1e1ff51134f3aa0d66ef63cadd790.bmp?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8lqmUzWtgvKR5YJPjWh9PBN8u9s=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.088357+00 2025-12-09 10:15:49.088364+00 19029 LZ1395#上身5号色 SPMX-20240815314264 \N \N \N 1 \N [{"file_id": "7563514f-dc61-42b8-80f9-d13bd23a6e37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c17529cc699a4d86aec77b7971e9595c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c17529cc699a4d86aec77b7971e9595c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c17529cc699a4d86aec77b7971e9595c.jpg", "file_size": 19288, "is_delete": false, "file_type": 1, "original_file_name": "LZ1395#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17529cc699a4d86aec77b7971e9595c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17529cc699a4d86aec77b7971e9595c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c17529cc699a4d86aec77b7971e9595c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c17529cc699a4d86aec77b7971e9595c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c17529cc699a4d86aec77b7971e9595c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OSFKrnx_9aIZ12UeMS2V1w2eRXo=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.091405+00 2025-12-09 10:15:49.091412+00 19030 234#-定位裁-橙色 SPMX-20240815314256 \N \N \N 1 \N [{"file_id": "b367d4d9-2b9f-41ec-8ab0-0ee105a77303", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "344bc5f6dfac4f879b9923215660f360.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "344bc5f6dfac4f879b9923215660f360.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "344bc5f6dfac4f879b9923215660f360.jpg", "file_size": 81396, "is_delete": false, "file_type": 1, "original_file_name": "234#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344bc5f6dfac4f879b9923215660f360.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344bc5f6dfac4f879b9923215660f360.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344bc5f6dfac4f879b9923215660f360.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/344bc5f6dfac4f879b9923215660f360.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/344bc5f6dfac4f879b9923215660f360.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S6ZFWdJtj6haN1tSm7zIlXO019k=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.094434+00 2025-12-09 10:15:49.094441+00 19031 JXY-1084#B13红色 SPMX-20240815314258 \N \N \N 1 \N [{"file_id": "44eeb863-cd36-405b-81d0-50f6a46cb1a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg", "file_size": 39555, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B13红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/651d8d5011894bfd9ec9f9e9fbbb4c5d.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yui4JpDBQENkodB-HpF4vE0P620=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.097502+00 2025-12-09 10:15:49.097507+00 19032 0012-8FWF#浅粉 SPMX-20240815314261 \N \N \N 1 \N [{"file_id": "05bf0c0a-198e-4345-b562-564e41ee7327", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9013455e8e0b4e10b2a8207dfdda9a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9013455e8e0b4e10b2a8207dfdda9a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9013455e8e0b4e10b2a8207dfdda9a85.jpg", "file_size": 12280, "is_delete": false, "file_type": 1, "original_file_name": "0012-8FWF#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9013455e8e0b4e10b2a8207dfdda9a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9013455e8e0b4e10b2a8207dfdda9a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9013455e8e0b4e10b2a8207dfdda9a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9013455e8e0b4e10b2a8207dfdda9a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9013455e8e0b4e10b2a8207dfdda9a85.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_-N6aG7RLyuqoZvBlfuSlKLnpxA=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.10058+00 2025-12-09 10:15:49.100586+00 19033 HXF0008-1#黑底 SPMX-20240815314262 \N \N \N 1 \N [{"file_id": "2d39bc77-c03a-4582-b653-c3a8f93cb70e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c93b80d6f9e1430fb7b2030ad3db3ac4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c93b80d6f9e1430fb7b2030ad3db3ac4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c93b80d6f9e1430fb7b2030ad3db3ac4.jpg", "file_size": 13337, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-1#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93b80d6f9e1430fb7b2030ad3db3ac4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93b80d6f9e1430fb7b2030ad3db3ac4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c93b80d6f9e1430fb7b2030ad3db3ac4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c93b80d6f9e1430fb7b2030ad3db3ac4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c93b80d6f9e1430fb7b2030ad3db3ac4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ssAhYQXPx8LosDE6v2Ct7epwHU=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.103676+00 2025-12-09 10:15:49.103681+00 19034 8768FWE#原色L VS-D3 SPMX-20240815314263 \N \N \N 1 \N [{"file_id": "30e51816-7bfa-4b1f-9ef9-3e917768b47c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "390c61962b694411bf16ac6718350db0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "390c61962b694411bf16ac6718350db0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "390c61962b694411bf16ac6718350db0.jpg", "file_size": 16925, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#原色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390c61962b694411bf16ac6718350db0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390c61962b694411bf16ac6718350db0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/390c61962b694411bf16ac6718350db0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/390c61962b694411bf16ac6718350db0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/390c61962b694411bf16ac6718350db0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:buq34Ls2Uf1zkWtzjo46Uda-Dp0=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.106767+00 2025-12-09 10:15:49.106772+00 19035 FX0003-81#RC23 SPMX-20240815314266 \N \N \N 1 \N [{"file_id": "754362bf-b007-45b2-9e8a-dcdc85c32729", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4965059c5b7344f9a66447cae9e92938.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4965059c5b7344f9a66447cae9e92938.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4965059c5b7344f9a66447cae9e92938.jpg", "file_size": 36557, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4965059c5b7344f9a66447cae9e92938.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4965059c5b7344f9a66447cae9e92938.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4965059c5b7344f9a66447cae9e92938.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4965059c5b7344f9a66447cae9e92938.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4965059c5b7344f9a66447cae9e92938.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qsrQf3Z_vwZvOTL1UrtS8e7CH5U=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.109852+00 2025-12-09 10:15:49.109857+00 19036 LJH2026#黑色 SPMX-20240815314265 \N \N \N 1 \N [{"file_id": "407cfd3a-3316-4174-ae0a-3e2155e1ea8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c088de798df64d33ab46f51112569394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c088de798df64d33ab46f51112569394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c088de798df64d33ab46f51112569394.jpg", "file_size": 55240, "is_delete": false, "file_type": 1, "original_file_name": "LJH2026#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c088de798df64d33ab46f51112569394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c088de798df64d33ab46f51112569394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c088de798df64d33ab46f51112569394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c088de798df64d33ab46f51112569394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c088de798df64d33ab46f51112569394.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwjkm77Suvr9EkBESOUuEzT6uL8=", "createTime": "2024-08-15 15:05:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.112942+00 2025-12-09 10:15:49.112949+00 19037 LZ1396#上身1号色 SPMX-20240815314271 \N \N \N 1 \N [{"file_id": "140e5119-93a2-42f9-b85a-5105100168ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b65b3f1921534d7c8482c50726ce268c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b65b3f1921534d7c8482c50726ce268c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b65b3f1921534d7c8482c50726ce268c.jpg", "file_size": 16578, "is_delete": false, "file_type": 1, "original_file_name": "LZ1396#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65b3f1921534d7c8482c50726ce268c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65b3f1921534d7c8482c50726ce268c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b65b3f1921534d7c8482c50726ce268c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b65b3f1921534d7c8482c50726ce268c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b65b3f1921534d7c8482c50726ce268c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SfwN96GSvq5L-CZU-kvPv6_Gl_M=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.11603+00 2025-12-09 10:15:49.116038+00 19038 234#-定位裁-白色 SPMX-20240815314268 \N \N \N 1 \N [{"file_id": "36e45243-66fa-47cc-b3d8-9e796558eaa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a0d3c11c7a54efb970e757491bbc5a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a0d3c11c7a54efb970e757491bbc5a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a0d3c11c7a54efb970e757491bbc5a2.jpg", "file_size": 82235, "is_delete": false, "file_type": 1, "original_file_name": "234#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0d3c11c7a54efb970e757491bbc5a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0d3c11c7a54efb970e757491bbc5a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a0d3c11c7a54efb970e757491bbc5a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a0d3c11c7a54efb970e757491bbc5a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a0d3c11c7a54efb970e757491bbc5a2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7QeWX0DUDCxknHlDyZdwWwkKYY=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.119175+00 2025-12-09 10:15:49.119181+00 19039 CGH3976-2# SPMX-20240815314277 \N \N \N 1 \N [{"file_id": "1d1ac73b-fd01-4f53-a434-79fc939d630e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52285d5c5e164432ad44b0528b51b37f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52285d5c5e164432ad44b0528b51b37f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52285d5c5e164432ad44b0528b51b37f.jpg", "file_size": 17839, "is_delete": false, "file_type": 1, "original_file_name": "CGH3976-2#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52285d5c5e164432ad44b0528b51b37f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52285d5c5e164432ad44b0528b51b37f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52285d5c5e164432ad44b0528b51b37f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52285d5c5e164432ad44b0528b51b37f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52285d5c5e164432ad44b0528b51b37f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:etWsgA32DxKLpTkUuItyafT9N_w=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.122266+00 2025-12-09 10:15:49.122272+00 19040 JXY-1084#B14 SPMX-20240815314273 \N \N \N 1 \N [{"file_id": "4cd544a0-7b7f-4f97-bc54-f85b88c4114d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9532cafb5b9493187339f0b0058820a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9532cafb5b9493187339f0b0058820a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9532cafb5b9493187339f0b0058820a.jpg", "file_size": 52959, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B14.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9532cafb5b9493187339f0b0058820a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9532cafb5b9493187339f0b0058820a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9532cafb5b9493187339f0b0058820a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9532cafb5b9493187339f0b0058820a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9532cafb5b9493187339f0b0058820a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfhMVlMB_LmHZ9j5PIC8DT8x7Uc=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.125413+00 2025-12-09 10:15:49.125419+00 19041 FX0003-81#浅蓝 SPMX-20240815314272 \N \N \N 1 \N [{"file_id": "f3ed8bb0-4e76-45bd-b6f9-5e54d82e5e44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg", "file_size": 62109, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40579cf6e8fe4e6ab8aca0dc3e6ba7b1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NpQHbyCiP34p-LeU0cIHotHapqw=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.128478+00 2025-12-09 10:15:49.128485+00 19042 DL9321FWF#彩蓝 SPMX-20240815314269 \N \N \N 1 \N [{"file_id": "7663c248-a0d5-45b7-8db9-685e2103e24f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a757b279479f4e65895f9f817063bc25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a757b279479f4e65895f9f817063bc25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a757b279479f4e65895f9f817063bc25.jpg", "file_size": 34288, "is_delete": false, "file_type": 1, "original_file_name": "DL9321FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a757b279479f4e65895f9f817063bc25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a757b279479f4e65895f9f817063bc25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a757b279479f4e65895f9f817063bc25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a757b279479f4e65895f9f817063bc25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a757b279479f4e65895f9f817063bc25.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IjVT0doI1pxNm504CnEpL2ymYes=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.131581+00 2025-12-09 10:15:49.131587+00 19043 8768FWE#原色XL VS-D3 SPMX-20240815314274 \N \N \N 1 \N [{"file_id": "b0400c0d-d539-447b-938a-3222b5d37d29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b6a8dfbaa7947369c057ae5eebfce6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b6a8dfbaa7947369c057ae5eebfce6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b6a8dfbaa7947369c057ae5eebfce6b.jpg", "file_size": 16203, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#原色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6a8dfbaa7947369c057ae5eebfce6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6a8dfbaa7947369c057ae5eebfce6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6a8dfbaa7947369c057ae5eebfce6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b6a8dfbaa7947369c057ae5eebfce6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b6a8dfbaa7947369c057ae5eebfce6b.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02cXFtQpxERtCe1VxmkOxPYD6mY=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.134684+00 2025-12-09 10:15:49.13469+00 19044 1231-47FWF#中童14码 SPMX-20240815314267 \N \N \N 1 \N [{"file_id": "a8b07193-c9e6-4ff2-95c1-ebbc2a53ff97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f403ff8b69cb4076b5769a3b5a2a4672.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f403ff8b69cb4076b5769a3b5a2a4672.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f403ff8b69cb4076b5769a3b5a2a4672.jpg", "file_size": 15149, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f403ff8b69cb4076b5769a3b5a2a4672.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f403ff8b69cb4076b5769a3b5a2a4672.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f403ff8b69cb4076b5769a3b5a2a4672.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f403ff8b69cb4076b5769a3b5a2a4672.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f403ff8b69cb4076b5769a3b5a2a4672.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LK2-LNA3gSnlfCMGs04GeW44zPs=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.137777+00 2025-12-09 10:15:49.137784+00 19045 LJH2027#粉色 SPMX-20240815314275 \N \N \N 1 \N [{"file_id": "22e22a1c-49a6-4c5d-8475-28c3453d4dac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cd3934d0728465e807658dee06d8105.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cd3934d0728465e807658dee06d8105.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cd3934d0728465e807658dee06d8105.jpg", "file_size": 61499, "is_delete": false, "file_type": 1, "original_file_name": "LJH2027#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd3934d0728465e807658dee06d8105.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd3934d0728465e807658dee06d8105.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd3934d0728465e807658dee06d8105.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cd3934d0728465e807658dee06d8105.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cd3934d0728465e807658dee06d8105.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Itr3LAd0IDaXvrM7pyT-eC78Z4s=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.140854+00 2025-12-09 10:15:49.140861+00 19046 HXF0008-10#白色 SPMX-20240815314270 \N \N \N 1 \N [{"file_id": "aec66716-80ba-4276-926f-e5c07c55ef8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae174e51f0914283b7e5abaa18acd5cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae174e51f0914283b7e5abaa18acd5cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae174e51f0914283b7e5abaa18acd5cf.jpg", "file_size": 11289, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-10#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae174e51f0914283b7e5abaa18acd5cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae174e51f0914283b7e5abaa18acd5cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae174e51f0914283b7e5abaa18acd5cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae174e51f0914283b7e5abaa18acd5cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae174e51f0914283b7e5abaa18acd5cf.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_iGOEm-ZnkcAFYat2gJRUhMZ8eU=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.143885+00 2025-12-09 10:15:49.143891+00 19047 0012-8FWF#红色V5曲线 SPMX-20240815314276 \N \N \N 1 \N [{"file_id": "1dfd1b47-a31e-4a96-9781-3a20de106083", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6661f4a53a584ff3a97112db5433ccdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6661f4a53a584ff3a97112db5433ccdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6661f4a53a584ff3a97112db5433ccdc.jpg", "file_size": 17756, "is_delete": false, "file_type": 1, "original_file_name": "0012-8FWF#红色V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6661f4a53a584ff3a97112db5433ccdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6661f4a53a584ff3a97112db5433ccdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6661f4a53a584ff3a97112db5433ccdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6661f4a53a584ff3a97112db5433ccdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6661f4a53a584ff3a97112db5433ccdc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lU5q5QWf8HKCQq5hSITgUSpEmLM=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.146858+00 2025-12-09 10:15:49.146865+00 19048 8768FWE#天蓝2XL VS-D3 SPMX-20240815314283 \N \N \N 1 \N [{"file_id": "154965b8-0fb3-4651-9a87-3e5d44c924dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg", "file_size": 16735, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#天蓝2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a55dcf1f8ee4aa8a4cca2ecc8b68bfd.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HV1qb6pn_R1VIeBaOmsuk2W-ei0=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.149952+00 2025-12-09 10:15:49.149959+00 19049 JXY-1084#B15 SPMX-20240815314284 \N \N \N 1 \N [{"file_id": "4aedf8ca-4134-4cc3-9dd3-814c14410931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8c7652084aa41a6a47ad3ca50d61162.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8c7652084aa41a6a47ad3ca50d61162.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8c7652084aa41a6a47ad3ca50d61162.jpg", "file_size": 45635, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7652084aa41a6a47ad3ca50d61162.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7652084aa41a6a47ad3ca50d61162.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8c7652084aa41a6a47ad3ca50d61162.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8c7652084aa41a6a47ad3ca50d61162.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8c7652084aa41a6a47ad3ca50d61162.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:do0TCF4y8ANvsOA0Wr2utWeSiTE=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.153032+00 2025-12-09 10:15:49.153039+00 19050 DL9321FWF#浅粉 SPMX-20240815314280 \N \N \N 1 \N [{"file_id": "1e1c0a61-ba39-455e-a6c9-72172255d9bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66dc6df88e3a48678a67674e530e9291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66dc6df88e3a48678a67674e530e9291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66dc6df88e3a48678a67674e530e9291.jpg", "file_size": 22808, "is_delete": false, "file_type": 1, "original_file_name": "DL9321FWF#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66dc6df88e3a48678a67674e530e9291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66dc6df88e3a48678a67674e530e9291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66dc6df88e3a48678a67674e530e9291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66dc6df88e3a48678a67674e530e9291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66dc6df88e3a48678a67674e530e9291.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CzXR61p_k0WfU4_1u0Fl2i8J0o=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.1561+00 2025-12-09 10:15:49.156106+00 19051 LZ1396#上身2号色 SPMX-20240815314281 \N \N \N 1 \N [{"file_id": "98bf7eb7-6468-4c95-b533-68d3375c3ceb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5da1d1357b3a44c49a0e2ae43ee81f5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5da1d1357b3a44c49a0e2ae43ee81f5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5da1d1357b3a44c49a0e2ae43ee81f5b.jpg", "file_size": 16697, "is_delete": false, "file_type": 1, "original_file_name": "LZ1396#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da1d1357b3a44c49a0e2ae43ee81f5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da1d1357b3a44c49a0e2ae43ee81f5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da1d1357b3a44c49a0e2ae43ee81f5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5da1d1357b3a44c49a0e2ae43ee81f5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5da1d1357b3a44c49a0e2ae43ee81f5b.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbe-f_c6ILUZZZc1Yzfsftwz050=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.15911+00 2025-12-09 10:15:49.159116+00 19052 HXF0008-10#粉色 SPMX-20240815314282 \N \N \N 1 \N [{"file_id": "a576ee22-48dd-429b-8df1-8eef04039386", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5652a380597e491fb15391755375ab75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5652a380597e491fb15391755375ab75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5652a380597e491fb15391755375ab75.jpg", "file_size": 10399, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-10#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5652a380597e491fb15391755375ab75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5652a380597e491fb15391755375ab75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5652a380597e491fb15391755375ab75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5652a380597e491fb15391755375ab75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5652a380597e491fb15391755375ab75.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYnvRGil45bxlblToCAhKym2nxg=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.162262+00 2025-12-09 10:15:49.162269+00 19053 FX0003-81#白色 SPMX-20240815314285 \N \N \N 1 \N [{"file_id": "e6bcad3c-3943-47a2-9894-a40d0232e85e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3c75a5882f446cdafca0a910c64fbd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3c75a5882f446cdafca0a910c64fbd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3c75a5882f446cdafca0a910c64fbd8.jpg", "file_size": 55642, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c75a5882f446cdafca0a910c64fbd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c75a5882f446cdafca0a910c64fbd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3c75a5882f446cdafca0a910c64fbd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3c75a5882f446cdafca0a910c64fbd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3c75a5882f446cdafca0a910c64fbd8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJX7k2tfEJA1Q6EKLT12HRVPvDc=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.165948+00 2025-12-09 10:15:49.165953+00 19054 234#-定位裁-黄色 SPMX-20240815314279 \N \N \N 1 \N [{"file_id": "dc8d26a1-2d57-4a61-9290-a0317b23de5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e810fc0591b547368fffa8c612cab1f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e810fc0591b547368fffa8c612cab1f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e810fc0591b547368fffa8c612cab1f1.jpg", "file_size": 87177, "is_delete": false, "file_type": 1, "original_file_name": "234#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e810fc0591b547368fffa8c612cab1f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e810fc0591b547368fffa8c612cab1f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e810fc0591b547368fffa8c612cab1f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e810fc0591b547368fffa8c612cab1f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e810fc0591b547368fffa8c612cab1f1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PQNjb0r_kPEcxwto9M3uha5dLE=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.169094+00 2025-12-09 10:15:49.1691+00 19055 1231-47FWF#中童袖领匹布 SPMX-20240815314278 \N \N \N 1 \N [{"file_id": "a6cd13de-7fb7-4823-bf5c-3bb509603db3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77e495dc96bb40b684a990a4305a02af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77e495dc96bb40b684a990a4305a02af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77e495dc96bb40b684a990a4305a02af.jpg", "file_size": 8829, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e495dc96bb40b684a990a4305a02af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e495dc96bb40b684a990a4305a02af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77e495dc96bb40b684a990a4305a02af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77e495dc96bb40b684a990a4305a02af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77e495dc96bb40b684a990a4305a02af.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kf83bIPjY_-wTsa0ve89BFxfLVk=", "createTime": "2024-08-15 15:05:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.172154+00 2025-12-09 10:15:49.17216+00 19056 FX0003-81#粉色 SPMX-20240815314299 \N \N \N 1 \N [{"file_id": "3df0437a-39ec-4d43-83ee-9a2c375bb7d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "785dc797a84b42d691022ed3f1816af0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "785dc797a84b42d691022ed3f1816af0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "785dc797a84b42d691022ed3f1816af0.jpg", "file_size": 63156, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785dc797a84b42d691022ed3f1816af0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785dc797a84b42d691022ed3f1816af0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/785dc797a84b42d691022ed3f1816af0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/785dc797a84b42d691022ed3f1816af0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/785dc797a84b42d691022ed3f1816af0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOz6TitJ7xGNtodJhNutjGO7YHg=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.175273+00 2025-12-09 10:15:49.175279+00 19057 LJH2027#紫色 SPMX-20240815314287 \N \N \N 1 \N [{"file_id": "40cd954c-e08f-4489-ba4c-60996c89f2de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab0d512742534cc18d3b35a8ab9804e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab0d512742534cc18d3b35a8ab9804e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab0d512742534cc18d3b35a8ab9804e6.jpg", "file_size": 61357, "is_delete": false, "file_type": 1, "original_file_name": "LJH2027#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d512742534cc18d3b35a8ab9804e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d512742534cc18d3b35a8ab9804e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0d512742534cc18d3b35a8ab9804e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab0d512742534cc18d3b35a8ab9804e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab0d512742534cc18d3b35a8ab9804e6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k70Uj0lt6MOswyMJoBD0CDg73bQ=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.178327+00 2025-12-09 10:15:49.178334+00 19058 234#-定位裁-黑色 SPMX-20240815314290 \N \N \N 1 \N [{"file_id": "0059f108-65e2-49c5-a519-a9dafa36b541", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "482b35d8242843d085ebe8687d0fb324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "482b35d8242843d085ebe8687d0fb324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "482b35d8242843d085ebe8687d0fb324.jpg", "file_size": 81009, "is_delete": false, "file_type": 1, "original_file_name": "234#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b35d8242843d085ebe8687d0fb324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b35d8242843d085ebe8687d0fb324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b35d8242843d085ebe8687d0fb324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/482b35d8242843d085ebe8687d0fb324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/482b35d8242843d085ebe8687d0fb324.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2UhULQ9tFR-0E-4AIxGktjU1rq0=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.181457+00 2025-12-09 10:15:49.181463+00 19059 DL9321FWF#深水红 SPMX-20240815314291 \N \N \N 1 \N [{"file_id": "bbc306cd-e55b-4b3b-a403-46b6afbfe46c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84ed7f20e66e4bf1872c98ea491a3cb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84ed7f20e66e4bf1872c98ea491a3cb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84ed7f20e66e4bf1872c98ea491a3cb9.jpg", "file_size": 29217, "is_delete": false, "file_type": 1, "original_file_name": "DL9321FWF#深水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed7f20e66e4bf1872c98ea491a3cb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed7f20e66e4bf1872c98ea491a3cb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84ed7f20e66e4bf1872c98ea491a3cb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84ed7f20e66e4bf1872c98ea491a3cb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84ed7f20e66e4bf1872c98ea491a3cb9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2f9CO_s1oiAH-259HPp5N75iQQ=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.184501+00 2025-12-09 10:15:49.184507+00 19060 8768FWE#天蓝L VS-D3 SPMX-20240815314294 \N \N \N 1 \N [{"file_id": "70cdb315-6bdc-4add-ba7f-8ca2a2c755c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdb5af8a17364cd79e9a0a740bb99b2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdb5af8a17364cd79e9a0a740bb99b2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdb5af8a17364cd79e9a0a740bb99b2a.jpg", "file_size": 17386, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#天蓝L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5af8a17364cd79e9a0a740bb99b2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5af8a17364cd79e9a0a740bb99b2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdb5af8a17364cd79e9a0a740bb99b2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdb5af8a17364cd79e9a0a740bb99b2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdb5af8a17364cd79e9a0a740bb99b2a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvdn2iRzDBulU-3pghUCPCRaAV0=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.187576+00 2025-12-09 10:15:49.187582+00 19061 1231-47FWF#小童8码+4码 SPMX-20240815314297 \N \N \N 1 \N [{"file_id": "af74fa2d-21b4-4300-b3b4-6b4bd5f62de2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "162751ac56fd48df98598d5ad889e3f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "162751ac56fd48df98598d5ad889e3f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "162751ac56fd48df98598d5ad889e3f2.jpg", "file_size": 17186, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162751ac56fd48df98598d5ad889e3f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162751ac56fd48df98598d5ad889e3f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/162751ac56fd48df98598d5ad889e3f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/162751ac56fd48df98598d5ad889e3f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/162751ac56fd48df98598d5ad889e3f2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edyBToWqHuDIAP2e1oaZkZ7xKHs=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.190676+00 2025-12-09 10:15:49.190682+00 19062 LZ1396#上身3号色 SPMX-20240815314292 \N \N \N 1 \N [{"file_id": "e9fc3b3e-93aa-4728-9012-f73dadfbaf39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74bfa0c6a6e94acead3572452aa50a32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74bfa0c6a6e94acead3572452aa50a32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74bfa0c6a6e94acead3572452aa50a32.jpg", "file_size": 16592, "is_delete": false, "file_type": 1, "original_file_name": "LZ1396#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfa0c6a6e94acead3572452aa50a32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfa0c6a6e94acead3572452aa50a32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bfa0c6a6e94acead3572452aa50a32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74bfa0c6a6e94acead3572452aa50a32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74bfa0c6a6e94acead3572452aa50a32.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gcZOD6vwXUCNRBljfa-lL7BFtc=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.193784+00 2025-12-09 10:15:49.19379+00 19063 0012-90#WJC22 SPMX-20240815314286 \N \N \N 1 \N [{"file_id": "502a41b5-2f7d-489e-bced-98001c5cacc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9450c6e6701f4d1db3f3db6539ce7337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9450c6e6701f4d1db3f3db6539ce7337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9450c6e6701f4d1db3f3db6539ce7337.jpg", "file_size": 14288, "is_delete": false, "file_type": 1, "original_file_name": "0012-90#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9450c6e6701f4d1db3f3db6539ce7337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9450c6e6701f4d1db3f3db6539ce7337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9450c6e6701f4d1db3f3db6539ce7337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9450c6e6701f4d1db3f3db6539ce7337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9450c6e6701f4d1db3f3db6539ce7337.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1PzAiD-7ebze_Ea2NFe5NOe4CQc=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.196799+00 2025-12-09 10:15:49.196805+00 19064 HXF0008-11FWF# SPMX-20240815314293 \N \N \N 1 \N [{"file_id": "3912b797-396a-4d63-aff2-41970c821977", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d180fbbeda3e45c7944bcdda7594387c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d180fbbeda3e45c7944bcdda7594387c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d180fbbeda3e45c7944bcdda7594387c.jpg", "file_size": 15478, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-11FWF#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d180fbbeda3e45c7944bcdda7594387c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d180fbbeda3e45c7944bcdda7594387c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d180fbbeda3e45c7944bcdda7594387c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d180fbbeda3e45c7944bcdda7594387c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d180fbbeda3e45c7944bcdda7594387c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5_dmC0RzguGTHlRdJAV5uFJ4HCg=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.200149+00 2025-12-09 10:15:49.200155+00 19065 0012-91#WJC22 SPMX-20240815314295 \N \N \N 1 \N [{"file_id": "ce9fe92e-fee8-490b-9fa7-a3245b1c4875", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df3cf69d25584645b4347b50b75f7f08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df3cf69d25584645b4347b50b75f7f08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df3cf69d25584645b4347b50b75f7f08.jpg", "file_size": 10984, "is_delete": false, "file_type": 1, "original_file_name": "0012-91#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3cf69d25584645b4347b50b75f7f08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3cf69d25584645b4347b50b75f7f08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3cf69d25584645b4347b50b75f7f08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df3cf69d25584645b4347b50b75f7f08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df3cf69d25584645b4347b50b75f7f08.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5yac5__SqtrVkY7DNR5KnaXL8jQ=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.203598+00 2025-12-09 10:15:49.203604+00 19066 JXY-1084#B16 SPMX-20240815314298 \N \N \N 1 \N [{"file_id": "65b526d2-c93e-4158-92e8-7138ee11e150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d232238d4604823b00adc98dc0797a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d232238d4604823b00adc98dc0797a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d232238d4604823b00adc98dc0797a8.jpg", "file_size": 43677, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B16.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d232238d4604823b00adc98dc0797a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d232238d4604823b00adc98dc0797a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d232238d4604823b00adc98dc0797a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d232238d4604823b00adc98dc0797a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d232238d4604823b00adc98dc0797a8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6DnE_lXcpD515XLO7zA2mAs1Ss0=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.206719+00 2025-12-09 10:15:49.206725+00 19067 1231-47FWF#小童6码 SPMX-20240815314289 \N \N \N 1 \N [{"file_id": "42243e5a-1350-4544-a73b-b1f6160ac449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7e9605b3cd14c5aa974cf0731f53c4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7e9605b3cd14c5aa974cf0731f53c4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7e9605b3cd14c5aa974cf0731f53c4c.jpg", "file_size": 17186, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e9605b3cd14c5aa974cf0731f53c4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e9605b3cd14c5aa974cf0731f53c4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7e9605b3cd14c5aa974cf0731f53c4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7e9605b3cd14c5aa974cf0731f53c4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7e9605b3cd14c5aa974cf0731f53c4c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJ9Wo35qCfsHLTBgRaOhiOXpopw=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.283398+00 2025-12-09 10:15:49.283405+00 19092 JXY-1084#B18 SPMX-20240815314321 \N \N \N 1 \N [{"file_id": "e8f9741d-1d61-4abd-b81b-af0351ab7426", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2afbb31e1a3049cda352689d1134568f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2afbb31e1a3049cda352689d1134568f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2afbb31e1a3049cda352689d1134568f.jpg", "file_size": 48820, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B18.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb31e1a3049cda352689d1134568f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb31e1a3049cda352689d1134568f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2afbb31e1a3049cda352689d1134568f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2afbb31e1a3049cda352689d1134568f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2afbb31e1a3049cda352689d1134568f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j9-Q3zjvQxmil5KPWYe9HHn2GWU=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.209738+00 2025-12-09 10:15:49.209744+00 19068 CGH4-23G173#上身原版色 SPMX-20240815314296 \N \N \N 1 \N [{"file_id": "939f6749-3702-44d2-9cfc-de7617653133", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4da12a501804842a2e8d5f0fe991fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4da12a501804842a2e8d5f0fe991fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4da12a501804842a2e8d5f0fe991fd8.jpg", "file_size": 23885, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#上身原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4da12a501804842a2e8d5f0fe991fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4da12a501804842a2e8d5f0fe991fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4da12a501804842a2e8d5f0fe991fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4da12a501804842a2e8d5f0fe991fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4da12a501804842a2e8d5f0fe991fd8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GDAl-B6VXtm_swjjeWkdHAnAKbU=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.212638+00 2025-12-09 10:15:49.212644+00 19069 CGH3976-2#白色 SPMX-20240815314288 \N \N \N 1 \N [{"file_id": "9b37956f-770f-4c2d-90dc-076acb6c837a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1674b095e84841b4a3c70644c3e68d43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1674b095e84841b4a3c70644c3e68d43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1674b095e84841b4a3c70644c3e68d43.jpg", "file_size": 19243, "is_delete": false, "file_type": 1, "original_file_name": "CGH3976-2#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1674b095e84841b4a3c70644c3e68d43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1674b095e84841b4a3c70644c3e68d43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1674b095e84841b4a3c70644c3e68d43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1674b095e84841b4a3c70644c3e68d43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1674b095e84841b4a3c70644c3e68d43.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y3Yled3Z-nyUYFCt4fhUISl6Y98=", "createTime": "2024-08-15 15:05:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.215741+00 2025-12-09 10:15:49.215747+00 19070 0012-92#A1 SPMX-20240815314306 \N \N \N 1 \N [{"file_id": "6c7bf60f-676a-4037-8d5b-8c5f156b8ba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg", "file_size": 9695, "is_delete": false, "file_type": 1, "original_file_name": "0012-92#A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e9c5fa5b5ca46929ce6220c2cbd57d2.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NY4ZcrPJp5SO5SiDrBC9OsFWak=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.218822+00 2025-12-09 10:15:49.218828+00 19071 LJH2027#黄色 SPMX-20240815314310 \N \N \N 1 \N [{"file_id": "bc066c1e-646f-4d35-8735-080061fdd241", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf72120351c4a3da7003ebdc7dfe511.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf72120351c4a3da7003ebdc7dfe511.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf72120351c4a3da7003ebdc7dfe511.jpg", "file_size": 61283, "is_delete": false, "file_type": 1, "original_file_name": "LJH2027#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf72120351c4a3da7003ebdc7dfe511.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf72120351c4a3da7003ebdc7dfe511.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf72120351c4a3da7003ebdc7dfe511.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf72120351c4a3da7003ebdc7dfe511.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf72120351c4a3da7003ebdc7dfe511.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOpuPjB2Q7knszpr7Ox1_iMYCwk=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.221897+00 2025-12-09 10:15:49.221904+00 19072 CGH4-23G173#上身土黄 SPMX-20240815314309 \N \N \N 1 \N [{"file_id": "93b0ad17-39c8-45ba-bcc8-a0f3af18b849", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fcae4a8554249a4a6648a8f62e4408c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fcae4a8554249a4a6648a8f62e4408c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fcae4a8554249a4a6648a8f62e4408c.jpg", "file_size": 21980, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#上身土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcae4a8554249a4a6648a8f62e4408c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcae4a8554249a4a6648a8f62e4408c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fcae4a8554249a4a6648a8f62e4408c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fcae4a8554249a4a6648a8f62e4408c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fcae4a8554249a4a6648a8f62e4408c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OeNvtm99rAEYnlj6C0GXv5j4XNc=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.225013+00 2025-12-09 10:15:49.225019+00 19073 JXY-1084#B17 SPMX-20240815314311 \N \N \N 1 \N [{"file_id": "ee38a7b9-a543-4763-bf9c-be0a280b2777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86e6581b0aa045f5a1d933d08076048a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86e6581b0aa045f5a1d933d08076048a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86e6581b0aa045f5a1d933d08076048a.jpg", "file_size": 43349, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B17.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e6581b0aa045f5a1d933d08076048a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e6581b0aa045f5a1d933d08076048a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86e6581b0aa045f5a1d933d08076048a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86e6581b0aa045f5a1d933d08076048a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86e6581b0aa045f5a1d933d08076048a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuoe0d10pAG1wiXEasXu1rEhMXE=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.228101+00 2025-12-09 10:15:49.228106+00 19074 HXF0008-11FWF#L SPMX-20240815314314 \N \N \N 1 \N [{"file_id": "b6be0d24-905b-41c5-bf5b-2e4d9aad9cff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54ec938644e14f3d9a4b6a8ad04e37e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54ec938644e14f3d9a4b6a8ad04e37e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54ec938644e14f3d9a4b6a8ad04e37e5.jpg", "file_size": 12990, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-11FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ec938644e14f3d9a4b6a8ad04e37e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ec938644e14f3d9a4b6a8ad04e37e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54ec938644e14f3d9a4b6a8ad04e37e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54ec938644e14f3d9a4b6a8ad04e37e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54ec938644e14f3d9a4b6a8ad04e37e5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fArUQKUq8L-zDoHVR19Q2VF_Yhg=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.231138+00 2025-12-09 10:15:49.231144+00 19075 1231-47FWF#小童袖领匹布 SPMX-20240815314307 \N \N \N 1 \N [{"file_id": "cf90a4e8-6990-425c-bfda-758f88d01277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cad0dfc0bcdc4db79071db231286b4a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cad0dfc0bcdc4db79071db231286b4a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cad0dfc0bcdc4db79071db231286b4a9.jpg", "file_size": 7026, "is_delete": false, "file_type": 1, "original_file_name": "1231-47FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad0dfc0bcdc4db79071db231286b4a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad0dfc0bcdc4db79071db231286b4a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cad0dfc0bcdc4db79071db231286b4a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cad0dfc0bcdc4db79071db231286b4a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cad0dfc0bcdc4db79071db231286b4a9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGTGIdBJMIcT6D3td9GxNE5LMV8=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.23412+00 2025-12-09 10:15:49.234126+00 19076 8768FWE#天蓝XL VS-D3 SPMX-20240815314305 \N \N \N 1 \N [{"file_id": "9e1e1009-c0ac-4bde-8cd8-8827083c50ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb9b7160497e44dcbf0689237138ad71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb9b7160497e44dcbf0689237138ad71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb9b7160497e44dcbf0689237138ad71.jpg", "file_size": 16736, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#天蓝XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b7160497e44dcbf0689237138ad71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b7160497e44dcbf0689237138ad71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b7160497e44dcbf0689237138ad71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb9b7160497e44dcbf0689237138ad71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb9b7160497e44dcbf0689237138ad71.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KKHu0L4Iys5N5BJVC-_o5tqcSls=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.237281+00 2025-12-09 10:15:49.237287+00 19077 HXF0008-11FWF#2XL SPMX-20240815314302 \N \N \N 1 \N [{"file_id": "1303d3b4-ab46-41ff-bc6b-e3f2ad542110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5681d2bc1381421c8c6539b7d2d1d249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5681d2bc1381421c8c6539b7d2d1d249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5681d2bc1381421c8c6539b7d2d1d249.jpg", "file_size": 13536, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-11FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5681d2bc1381421c8c6539b7d2d1d249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5681d2bc1381421c8c6539b7d2d1d249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5681d2bc1381421c8c6539b7d2d1d249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5681d2bc1381421c8c6539b7d2d1d249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5681d2bc1381421c8c6539b7d2d1d249.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xTfXYVVwNxtu3Umg5MxulGb676s=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.24034+00 2025-12-09 10:15:49.240345+00 19078 8768FWE#橙红2XL VS-D3 SPMX-20240815314313 \N \N \N 1 \N [{"file_id": "a67c4e7b-a6f3-40b5-85dc-95c06eb46470", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd2be56bcab14b4c98fed4a72caa322e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd2be56bcab14b4c98fed4a72caa322e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd2be56bcab14b4c98fed4a72caa322e.jpg", "file_size": 16882, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#橙红2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2be56bcab14b4c98fed4a72caa322e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2be56bcab14b4c98fed4a72caa322e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd2be56bcab14b4c98fed4a72caa322e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd2be56bcab14b4c98fed4a72caa322e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd2be56bcab14b4c98fed4a72caa322e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W7dQup0H0a8udjnNs4GPA4MqfEI=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.243437+00 2025-12-09 10:15:49.243443+00 19079 DL9321FWF#蓝绿 SPMX-20240815314301 \N \N \N 1 \N [{"file_id": "e3cf8572-9e64-4c59-b8b7-c66343082e8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c27381905e594d208fe62235ac554082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c27381905e594d208fe62235ac554082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c27381905e594d208fe62235ac554082.jpg", "file_size": 30832, "is_delete": false, "file_type": 1, "original_file_name": "DL9321FWF#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27381905e594d208fe62235ac554082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27381905e594d208fe62235ac554082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c27381905e594d208fe62235ac554082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c27381905e594d208fe62235ac554082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c27381905e594d208fe62235ac554082.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPk9uit_Uu3cHJ_zDI1O1W9_gIY=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.246418+00 2025-12-09 10:15:49.246424+00 19080 LZ1396#上身4号色 SPMX-20240815314304 \N \N \N 1 \N [{"file_id": "8ebe7c94-aec1-4ed8-8c00-79ba9544eebe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaa4b343a66b4ca1b76423c9236d9c78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaa4b343a66b4ca1b76423c9236d9c78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaa4b343a66b4ca1b76423c9236d9c78.jpg", "file_size": 17088, "is_delete": false, "file_type": 1, "original_file_name": "LZ1396#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa4b343a66b4ca1b76423c9236d9c78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa4b343a66b4ca1b76423c9236d9c78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa4b343a66b4ca1b76423c9236d9c78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaa4b343a66b4ca1b76423c9236d9c78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaa4b343a66b4ca1b76423c9236d9c78.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVMK8ZqvJ75PgHyM4AI8qOO13_E=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.249567+00 2025-12-09 10:15:49.249573+00 19081 LJH2027#绿色 SPMX-20240815314300 \N \N \N 1 \N [{"file_id": "eb24f1fb-55b0-4984-8453-6df69b31e7ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6221987dafac4f0b863fc12217a0525e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6221987dafac4f0b863fc12217a0525e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6221987dafac4f0b863fc12217a0525e.jpg", "file_size": 59777, "is_delete": false, "file_type": 1, "original_file_name": "LJH2027#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6221987dafac4f0b863fc12217a0525e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6221987dafac4f0b863fc12217a0525e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6221987dafac4f0b863fc12217a0525e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6221987dafac4f0b863fc12217a0525e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6221987dafac4f0b863fc12217a0525e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CR5Rq5vFM4gZtk6ONne403SD02Q=", "createTime": "2024-08-15 15:05:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.252615+00 2025-12-09 10:15:49.252622+00 19082 235#-定位裁-橙色 SPMX-20240815314312 \N \N \N 1 \N [{"file_id": "53f8d04f-1026-411d-a7cf-f520bfc313e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8201866b6f0244a7980448c8ba94216a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8201866b6f0244a7980448c8ba94216a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8201866b6f0244a7980448c8ba94216a.jpg", "file_size": 72460, "is_delete": false, "file_type": 1, "original_file_name": "235#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201866b6f0244a7980448c8ba94216a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201866b6f0244a7980448c8ba94216a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8201866b6f0244a7980448c8ba94216a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8201866b6f0244a7980448c8ba94216a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8201866b6f0244a7980448c8ba94216a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrTGj4adg-o6JTy-3LpZpoUtZVY=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.255708+00 2025-12-09 10:15:49.255715+00 19083 FX0003-81#蓝色 SPMX-20240815314308 \N \N \N 1 \N [{"file_id": "ab928443-31ef-47fa-bbd4-860fc800e122", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf504166ab7c4fbba29e5f2a4cc2ed80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf504166ab7c4fbba29e5f2a4cc2ed80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf504166ab7c4fbba29e5f2a4cc2ed80.jpg", "file_size": 61087, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf504166ab7c4fbba29e5f2a4cc2ed80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf504166ab7c4fbba29e5f2a4cc2ed80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf504166ab7c4fbba29e5f2a4cc2ed80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf504166ab7c4fbba29e5f2a4cc2ed80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf504166ab7c4fbba29e5f2a4cc2ed80.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1pH4fKYsIgXXgaIAllAQ22J3XvU=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.258739+00 2025-12-09 10:15:49.258746+00 19084 235#-定位裁-卡其 SPMX-20240815314303 \N \N \N 1 \N [{"file_id": "c704cb6f-749e-4e07-8383-846d7d2bb0a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78803d354f004532991c8863657bc564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78803d354f004532991c8863657bc564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78803d354f004532991c8863657bc564.jpg", "file_size": 70213, "is_delete": false, "file_type": 1, "original_file_name": "235#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78803d354f004532991c8863657bc564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78803d354f004532991c8863657bc564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78803d354f004532991c8863657bc564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78803d354f004532991c8863657bc564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78803d354f004532991c8863657bc564.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:engsfc-lcIuFHUn70nvw5cTwVHw=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.26179+00 2025-12-09 10:15:49.261796+00 19085 0012-92#A2 SPMX-20240815314316 \N \N \N 1 \N [{"file_id": "da2ef21c-0d83-446b-8d9a-48796ad1a304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "467f7423234848fba0a74090a70e5f48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "467f7423234848fba0a74090a70e5f48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "467f7423234848fba0a74090a70e5f48.jpg", "file_size": 10456, "is_delete": false, "file_type": 1, "original_file_name": "0012-92#A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467f7423234848fba0a74090a70e5f48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467f7423234848fba0a74090a70e5f48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/467f7423234848fba0a74090a70e5f48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/467f7423234848fba0a74090a70e5f48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/467f7423234848fba0a74090a70e5f48.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3VymoVC_LCnD17JBhoMwxd-ih4=", "createTime": "2024-08-15 15:05:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.264856+00 2025-12-09 10:15:49.264862+00 19086 HXF0008-11FWF#M SPMX-20240815314324 \N \N \N 1 \N [{"file_id": "3aeabbb9-a2d3-43e2-bf61-f9dcd4977583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a10e5d82fea44a780c9a2c09358e0b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a10e5d82fea44a780c9a2c09358e0b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a10e5d82fea44a780c9a2c09358e0b8.jpg", "file_size": 13256, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-11FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10e5d82fea44a780c9a2c09358e0b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10e5d82fea44a780c9a2c09358e0b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a10e5d82fea44a780c9a2c09358e0b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a10e5d82fea44a780c9a2c09358e0b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a10e5d82fea44a780c9a2c09358e0b8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WoUeffUMJvO_2i03u7h4AlYAZ7w=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.267849+00 2025-12-09 10:15:49.267855+00 19087 235#-定位裁-白色 SPMX-20240815314323 \N \N \N 1 \N [{"file_id": "326dd63e-033c-4dbd-8fc6-740ab6538dce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c1b81acf1154e43bf53ca8f9d0f549e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c1b81acf1154e43bf53ca8f9d0f549e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c1b81acf1154e43bf53ca8f9d0f549e.jpg", "file_size": 70454, "is_delete": false, "file_type": 1, "original_file_name": "235#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b81acf1154e43bf53ca8f9d0f549e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b81acf1154e43bf53ca8f9d0f549e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1b81acf1154e43bf53ca8f9d0f549e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c1b81acf1154e43bf53ca8f9d0f549e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c1b81acf1154e43bf53ca8f9d0f549e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avCCMZxgZDLrfuulb_LYvOAx28Q=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.270948+00 2025-12-09 10:15:49.270955+00 19088 LZ1397#上身1号色 SPMX-20240815314326 \N \N \N 1 \N [{"file_id": "a90fa39a-2f8d-4794-b136-4472018df7b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a85bd1cb258849a18d5ce8ecae8779e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a85bd1cb258849a18d5ce8ecae8779e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a85bd1cb258849a18d5ce8ecae8779e1.jpg", "file_size": 19626, "is_delete": false, "file_type": 1, "original_file_name": "LZ1397#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bd1cb258849a18d5ce8ecae8779e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bd1cb258849a18d5ce8ecae8779e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bd1cb258849a18d5ce8ecae8779e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a85bd1cb258849a18d5ce8ecae8779e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a85bd1cb258849a18d5ce8ecae8779e1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G0rq0FF3U1iNaEN_dpdkVoZZT8U=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.274058+00 2025-12-09 10:15:49.274064+00 19089 DL9321FWF#黄色 SPMX-20240815314317 \N \N \N 1 \N [{"file_id": "986f72ef-e6d5-474d-9b9a-7e1d68e01bf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3235cc96a58740f8bc168780de5ee22c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3235cc96a58740f8bc168780de5ee22c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3235cc96a58740f8bc168780de5ee22c.jpg", "file_size": 27225, "is_delete": false, "file_type": 1, "original_file_name": "DL9321FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3235cc96a58740f8bc168780de5ee22c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3235cc96a58740f8bc168780de5ee22c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3235cc96a58740f8bc168780de5ee22c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3235cc96a58740f8bc168780de5ee22c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3235cc96a58740f8bc168780de5ee22c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X9C6RexGvN4ocFUA_qziLnhBlRg=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.277139+00 2025-12-09 10:15:49.277145+00 19090 CGH4-23G173#上身大红 SPMX-20240815314322 \N \N \N 1 \N [{"file_id": "e406ee93-e4f3-4843-aff8-d2a2a17b67a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67208cca1c4f4bada421f7e053e3510c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67208cca1c4f4bada421f7e053e3510c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67208cca1c4f4bada421f7e053e3510c.jpg", "file_size": 18761, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#上身大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67208cca1c4f4bada421f7e053e3510c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67208cca1c4f4bada421f7e053e3510c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67208cca1c4f4bada421f7e053e3510c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67208cca1c4f4bada421f7e053e3510c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67208cca1c4f4bada421f7e053e3510c.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_wjxxTSPvcAlc-97inBO4XpqQA=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.280263+00 2025-12-09 10:15:49.280269+00 19091 FX0003-81#青色 SPMX-20240815314320 \N \N \N 1 \N [{"file_id": "8410c7a9-cc4f-406b-8d26-83dcf5b2a298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50b5bbaf26bc4c50b9f56953005876e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50b5bbaf26bc4c50b9f56953005876e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50b5bbaf26bc4c50b9f56953005876e8.jpg", "file_size": 65436, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-81#青色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5bbaf26bc4c50b9f56953005876e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5bbaf26bc4c50b9f56953005876e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50b5bbaf26bc4c50b9f56953005876e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50b5bbaf26bc4c50b9f56953005876e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50b5bbaf26bc4c50b9f56953005876e8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0yWM5i-hJ9_Xc8Jiroip4EgID0E=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.286506+00 2025-12-09 10:15:49.286513+00 19093 8768FWE#橙红L VS-D3 SPMX-20240815314325 \N \N \N 1 \N [{"file_id": "364d0c64-a093-4201-a378-b7747419bb5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8bb486a8ab941ec9a7ca29bd7ce0732.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8bb486a8ab941ec9a7ca29bd7ce0732.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8bb486a8ab941ec9a7ca29bd7ce0732.jpg", "file_size": 17054, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#橙红L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bb486a8ab941ec9a7ca29bd7ce0732.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bb486a8ab941ec9a7ca29bd7ce0732.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8bb486a8ab941ec9a7ca29bd7ce0732.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8bb486a8ab941ec9a7ca29bd7ce0732.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8bb486a8ab941ec9a7ca29bd7ce0732.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhZUBsecjTITmZxkX0S7Ry9h300=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.28974+00 2025-12-09 10:15:49.289746+00 19094 1231-48FWF#中童12码+10码 SPMX-20240815314318 \N \N \N 1 \N [{"file_id": "0b03c4b8-0692-476e-91e1-00e3aa767494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d98c3dc7ae384a428200c6c31724cbf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d98c3dc7ae384a428200c6c31724cbf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d98c3dc7ae384a428200c6c31724cbf0.jpg", "file_size": 17819, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98c3dc7ae384a428200c6c31724cbf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98c3dc7ae384a428200c6c31724cbf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d98c3dc7ae384a428200c6c31724cbf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d98c3dc7ae384a428200c6c31724cbf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d98c3dc7ae384a428200c6c31724cbf0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:36n8BXvVR-RKo5PR05m10Uq_fVw=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.292994+00 2025-12-09 10:15:49.293002+00 19095 LZ1396#上身5号色 SPMX-20240815314315 \N \N \N 1 \N [{"file_id": "ed7b55e3-ab27-45ac-beb4-b340d08ee982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a2b70ee2040496fa797e910d58047c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a2b70ee2040496fa797e910d58047c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a2b70ee2040496fa797e910d58047c4.jpg", "file_size": 16623, "is_delete": false, "file_type": 1, "original_file_name": "LZ1396#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2b70ee2040496fa797e910d58047c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2b70ee2040496fa797e910d58047c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a2b70ee2040496fa797e910d58047c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a2b70ee2040496fa797e910d58047c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a2b70ee2040496fa797e910d58047c4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nGYHRgPPZC4q5O4eOVBHtd9kluw=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.296355+00 2025-12-09 10:15:49.296362+00 19096 LJH2027#黑色 SPMX-20240815314319 \N \N \N 1 \N [{"file_id": "99fcde92-63b8-4bd5-9d16-7319bb63a657", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a49016370db452881d625b1056cf6dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a49016370db452881d625b1056cf6dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a49016370db452881d625b1056cf6dc.jpg", "file_size": 53501, "is_delete": false, "file_type": 1, "original_file_name": "LJH2027#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49016370db452881d625b1056cf6dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49016370db452881d625b1056cf6dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49016370db452881d625b1056cf6dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a49016370db452881d625b1056cf6dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a49016370db452881d625b1056cf6dc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L83AEJDFplM7-oy5CSgZpXsOkz4=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.299561+00 2025-12-09 10:15:49.299567+00 19097 8768FWE#橙红XL VS-D3 SPMX-20240815314338 \N \N \N 1 \N [{"file_id": "dd35198d-6156-4180-bf5b-ef7941853f4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86f6dd0f83d24463a1645afd14dc0846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86f6dd0f83d24463a1645afd14dc0846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86f6dd0f83d24463a1645afd14dc0846.jpg", "file_size": 16230, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#橙红XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f6dd0f83d24463a1645afd14dc0846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f6dd0f83d24463a1645afd14dc0846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86f6dd0f83d24463a1645afd14dc0846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86f6dd0f83d24463a1645afd14dc0846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86f6dd0f83d24463a1645afd14dc0846.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rlqQjbp1ynAA3k02vYDqmBmAP_8=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.302786+00 2025-12-09 10:15:49.302793+00 19098 0012-9FWE#VS-D3 SPMX-20240815314340 \N \N \N 1 \N [{"file_id": "59af0e1c-4c09-42dd-82ef-b84a23846794", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a22175e53abf4b51afe13809311e168e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a22175e53abf4b51afe13809311e168e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a22175e53abf4b51afe13809311e168e.jpg", "file_size": 12645, "is_delete": false, "file_type": 1, "original_file_name": "0012-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22175e53abf4b51afe13809311e168e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22175e53abf4b51afe13809311e168e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a22175e53abf4b51afe13809311e168e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a22175e53abf4b51afe13809311e168e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a22175e53abf4b51afe13809311e168e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xoOlEUYO6wBX39hP-R1o7PFApZM=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.305909+00 2025-12-09 10:15:49.305916+00 19099 CGH4-23G173#上身彩兰 SPMX-20240815314339 \N \N \N 1 \N [{"file_id": "fc9ca048-44cf-466c-915b-87ba7a73d574", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b53633eeb8c84f9ead7d387904d24b33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b53633eeb8c84f9ead7d387904d24b33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b53633eeb8c84f9ead7d387904d24b33.jpg", "file_size": 18370, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#上身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53633eeb8c84f9ead7d387904d24b33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53633eeb8c84f9ead7d387904d24b33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53633eeb8c84f9ead7d387904d24b33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b53633eeb8c84f9ead7d387904d24b33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b53633eeb8c84f9ead7d387904d24b33.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQ5paR-fnQwyXzqfTnPK_LXGoi0=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.309014+00 2025-12-09 10:15:49.309019+00 19100 1231-48FWF#中童14码 SPMX-20240815314333 \N \N \N 1 \N [{"file_id": "80f92e2a-9aa8-4a9e-8e86-fbd2d02e8166", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a39bc447fc624402a5beb98dc1a98bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a39bc447fc624402a5beb98dc1a98bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a39bc447fc624402a5beb98dc1a98bc6.jpg", "file_size": 16215, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39bc447fc624402a5beb98dc1a98bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39bc447fc624402a5beb98dc1a98bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a39bc447fc624402a5beb98dc1a98bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a39bc447fc624402a5beb98dc1a98bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a39bc447fc624402a5beb98dc1a98bc6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jdFJkrTG0FK365cCq33IXt6tKCk=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.312081+00 2025-12-09 10:15:49.312088+00 19101 235#-定位裁-黄色 SPMX-20240815314332 \N \N \N 1 \N [{"file_id": "c893b2a7-0dff-44cd-b74e-b043a9591de5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5c7bb7f0f1f4392baa239944077a4a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5c7bb7f0f1f4392baa239944077a4a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5c7bb7f0f1f4392baa239944077a4a3.jpg", "file_size": 75632, "is_delete": false, "file_type": 1, "original_file_name": "235#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c7bb7f0f1f4392baa239944077a4a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c7bb7f0f1f4392baa239944077a4a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5c7bb7f0f1f4392baa239944077a4a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5c7bb7f0f1f4392baa239944077a4a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5c7bb7f0f1f4392baa239944077a4a3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KDwYYd4oHFxK1m83AdFK5ZPYrIk=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.315237+00 2025-12-09 10:15:49.315243+00 19102 FX0003-82#玫红 SPMX-20240815314334 \N \N \N 1 \N [{"file_id": "5444f6a8-fca9-4bef-9608-109bb3ea4639", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbd40db196a54856a038eb03be60ddef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbd40db196a54856a038eb03be60ddef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbd40db196a54856a038eb03be60ddef.jpg", "file_size": 51490, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd40db196a54856a038eb03be60ddef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd40db196a54856a038eb03be60ddef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbd40db196a54856a038eb03be60ddef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbd40db196a54856a038eb03be60ddef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbd40db196a54856a038eb03be60ddef.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdLIkSAuPrYnt1FT4ySV5PBOx-w=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.318336+00 2025-12-09 10:15:49.318343+00 19103 JXY-1084#B19 SPMX-20240815314336 \N \N \N 1 \N [{"file_id": "05ddf011-5c6c-4305-a6ec-8118f24e5aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "291f6c96029c4ba781682bc80bee270a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "291f6c96029c4ba781682bc80bee270a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "291f6c96029c4ba781682bc80bee270a.jpg", "file_size": 21143, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B19.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291f6c96029c4ba781682bc80bee270a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291f6c96029c4ba781682bc80bee270a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/291f6c96029c4ba781682bc80bee270a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/291f6c96029c4ba781682bc80bee270a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/291f6c96029c4ba781682bc80bee270a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2CkKPNgq1l8n42l25EdqKNt-zk=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.32145+00 2025-12-09 10:15:49.321456+00 19104 DLDR023FWE#-A SPMX-20240815314327 \N \N \N 1 \N [{"file_id": "c148d98e-6385-4a39-80df-6c58fc113e9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b77d90abc04180b96fc7b6d570dc60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b77d90abc04180b96fc7b6d570dc60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b77d90abc04180b96fc7b6d570dc60.jpg", "file_size": 23646, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b77d90abc04180b96fc7b6d570dc60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b77d90abc04180b96fc7b6d570dc60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b77d90abc04180b96fc7b6d570dc60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b77d90abc04180b96fc7b6d570dc60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b77d90abc04180b96fc7b6d570dc60.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uR8xaqSh49IniosA4-iAIKpozb4=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.324547+00 2025-12-09 10:15:49.324554+00 19105 LJH2028#粉色 SPMX-20240815314330 \N \N \N 1 \N [{"file_id": "d34442e4-41d6-40ba-84c2-ae1e2cf9a036", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da3b655ede6a4e2ea908584097cc01c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da3b655ede6a4e2ea908584097cc01c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da3b655ede6a4e2ea908584097cc01c8.jpg", "file_size": 29709, "is_delete": false, "file_type": 1, "original_file_name": "LJH2028#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b655ede6a4e2ea908584097cc01c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b655ede6a4e2ea908584097cc01c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b655ede6a4e2ea908584097cc01c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da3b655ede6a4e2ea908584097cc01c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da3b655ede6a4e2ea908584097cc01c8.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8VNVsVK9KL36zxO3dkE3djUdwP4=", "createTime": "2024-08-15 15:05:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.327651+00 2025-12-09 10:15:49.327657+00 19106 HXF0008-11FWF#XL SPMX-20240815314331 \N \N \N 1 \N [{"file_id": "71b0d3df-5a83-45b4-ab35-7a9870806210", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ed785bca7cb43bcbb76b68a8cc1ece3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ed785bca7cb43bcbb76b68a8cc1ece3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ed785bca7cb43bcbb76b68a8cc1ece3.jpg", "file_size": 13610, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-11FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed785bca7cb43bcbb76b68a8cc1ece3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed785bca7cb43bcbb76b68a8cc1ece3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ed785bca7cb43bcbb76b68a8cc1ece3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ed785bca7cb43bcbb76b68a8cc1ece3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ed785bca7cb43bcbb76b68a8cc1ece3.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sF8oiqdvUgu388L_MR8ColZFZvI=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.330863+00 2025-12-09 10:15:49.330874+00 19107 8768FWE#玫红2XL VS-D3 SPMX-20240815314350 \N \N \N 1 \N [{"file_id": "edbff6c4-f241-4bc1-9171-144736e85e41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d865c79a4b3492f8538073ea1497960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d865c79a4b3492f8538073ea1497960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d865c79a4b3492f8538073ea1497960.jpg", "file_size": 16184, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#玫红2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d865c79a4b3492f8538073ea1497960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d865c79a4b3492f8538073ea1497960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d865c79a4b3492f8538073ea1497960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d865c79a4b3492f8538073ea1497960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d865c79a4b3492f8538073ea1497960.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfnQz3TBYeHk2OuD8j3lF9pa-sg=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.334022+00 2025-12-09 10:15:49.334028+00 19108 LJH2028#绿色 SPMX-20240815314342 \N \N \N 1 \N [{"file_id": "ebc56a70-21ac-4712-b187-33f52f13a941", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a380c98c81174a7f878530ef3db62b19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a380c98c81174a7f878530ef3db62b19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a380c98c81174a7f878530ef3db62b19.jpg", "file_size": 28959, "is_delete": false, "file_type": 1, "original_file_name": "LJH2028#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a380c98c81174a7f878530ef3db62b19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a380c98c81174a7f878530ef3db62b19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a380c98c81174a7f878530ef3db62b19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a380c98c81174a7f878530ef3db62b19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a380c98c81174a7f878530ef3db62b19.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Uttxdfd5Tz_8JOKsFBaGKcjiMjk=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.337094+00 2025-12-09 10:15:49.337101+00 19109 CGH4-23G173#上身西红 SPMX-20240815314348 \N \N \N 1 \N [{"file_id": "cf273c72-f0f9-4999-a235-7202aa7b1760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bdf5d391cd84564a6ada6c5cdcf1e59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bdf5d391cd84564a6ada6c5cdcf1e59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bdf5d391cd84564a6ada6c5cdcf1e59.jpg", "file_size": 21535, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#上身西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdf5d391cd84564a6ada6c5cdcf1e59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdf5d391cd84564a6ada6c5cdcf1e59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bdf5d391cd84564a6ada6c5cdcf1e59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bdf5d391cd84564a6ada6c5cdcf1e59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bdf5d391cd84564a6ada6c5cdcf1e59.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mog7BwcKksxMCnvQD9Zw4obLwI4=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.340137+00 2025-12-09 10:15:49.340143+00 19110 DLDR023FWE#-B SPMX-20240815314343 \N \N \N 1 \N [{"file_id": "3d351e60-9d55-4603-b23f-a3c6813d561b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3ef2c8df7a40fbb117f0a4d4a47e55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3ef2c8df7a40fbb117f0a4d4a47e55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3ef2c8df7a40fbb117f0a4d4a47e55.jpg", "file_size": 23408, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3ef2c8df7a40fbb117f0a4d4a47e55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3ef2c8df7a40fbb117f0a4d4a47e55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3ef2c8df7a40fbb117f0a4d4a47e55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3ef2c8df7a40fbb117f0a4d4a47e55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3ef2c8df7a40fbb117f0a4d4a47e55.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8malbuK4cSE2AmAlkv441bByos=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.343364+00 2025-12-09 10:15:49.34337+00 19111 JXY-1084#B2#RC23 SPMX-20240815314347 \N \N \N 1 \N [{"file_id": "4c9b459a-aa27-46b6-9956-e3b554359243", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56acb0b4b21546c7a60ad4395e78172e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56acb0b4b21546c7a60ad4395e78172e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56acb0b4b21546c7a60ad4395e78172e.jpg", "file_size": 74774, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56acb0b4b21546c7a60ad4395e78172e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56acb0b4b21546c7a60ad4395e78172e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56acb0b4b21546c7a60ad4395e78172e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56acb0b4b21546c7a60ad4395e78172e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56acb0b4b21546c7a60ad4395e78172e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fm2fIXG9WejCRXimFymvCr1YY0Q=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.346432+00 2025-12-09 10:15:49.346438+00 19112 LZ1397#上身2号色 SPMX-20240815314341 \N \N \N 1 \N [{"file_id": "b9484060-27a1-4307-a281-981078a0d664", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4d155f9d4af43d28041871a6ae9e706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4d155f9d4af43d28041871a6ae9e706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4d155f9d4af43d28041871a6ae9e706.jpg", "file_size": 18264, "is_delete": false, "file_type": 1, "original_file_name": "LZ1397#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d155f9d4af43d28041871a6ae9e706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d155f9d4af43d28041871a6ae9e706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4d155f9d4af43d28041871a6ae9e706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4d155f9d4af43d28041871a6ae9e706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4d155f9d4af43d28041871a6ae9e706.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LNc9naQ8IdS0WOk7niuZP17X8Ms=", "createTime": "2024-08-15 15:05:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.349595+00 2025-12-09 10:15:49.349601+00 19113 0012-9FWF#V5曲线 SPMX-20240815314349 \N \N \N 1 \N [{"file_id": "04f47478-8362-4373-a7aa-80b66596cf0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg", "file_size": 14904, "is_delete": false, "file_type": 1, "original_file_name": "0012-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16b0e9a490ad4ab59d5aaa28ef9da9c7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7wxuhlVTyelEpwAw7JrOnzMasZQ=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.352633+00 2025-12-09 10:15:49.35264+00 19114 FX0003-82#玫约 SPMX-20240815314346 \N \N \N 1 \N [{"file_id": "116569fb-f73f-40e4-8056-22cf0e81ae16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49e61a20ae4046f6a2ab588c08dfc615.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49e61a20ae4046f6a2ab588c08dfc615.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49e61a20ae4046f6a2ab588c08dfc615.jpg", "file_size": 51490, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#玫约.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e61a20ae4046f6a2ab588c08dfc615.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e61a20ae4046f6a2ab588c08dfc615.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49e61a20ae4046f6a2ab588c08dfc615.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49e61a20ae4046f6a2ab588c08dfc615.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49e61a20ae4046f6a2ab588c08dfc615.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0IInX0t3v3BtpX9sJwDszdMQxbU=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.355714+00 2025-12-09 10:15:49.355721+00 19115 1231-48FWF#中童袖领匹布 SPMX-20240815314344 \N \N \N 1 \N [{"file_id": "4df5d740-63cf-43e5-adff-3a4a8c348460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "577596b91b804bd7ac636ece234a263d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "577596b91b804bd7ac636ece234a263d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "577596b91b804bd7ac636ece234a263d.jpg", "file_size": 9864, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577596b91b804bd7ac636ece234a263d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577596b91b804bd7ac636ece234a263d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/577596b91b804bd7ac636ece234a263d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/577596b91b804bd7ac636ece234a263d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/577596b91b804bd7ac636ece234a263d.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gP-L0jTiYb6vdZGWiyx0H6AMPlA=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.358756+00 2025-12-09 10:15:49.358767+00 19116 235#-定位裁-黑色 SPMX-20240815314351 \N \N \N 1 \N [{"file_id": "92923fe5-1812-4a27-8827-d594bbac6762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2495631385db486a86d42101f0979800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2495631385db486a86d42101f0979800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2495631385db486a86d42101f0979800.jpg", "file_size": 71812, "is_delete": false, "file_type": 1, "original_file_name": "235#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495631385db486a86d42101f0979800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495631385db486a86d42101f0979800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2495631385db486a86d42101f0979800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2495631385db486a86d42101f0979800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2495631385db486a86d42101f0979800.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxSwEW9cgzg7CIDpX9tKWe61kTM=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.361828+00 2025-12-09 10:15:49.361835+00 19117 HXF0008-12#白色2XL SPMX-20240815314345 \N \N \N 1 \N [{"file_id": "5cf6c922-96a8-4d1a-b4ca-31fe361e2197", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d418ff58a9264090a0294ff0fda98bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d418ff58a9264090a0294ff0fda98bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d418ff58a9264090a0294ff0fda98bbe.jpg", "file_size": 15876, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d418ff58a9264090a0294ff0fda98bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d418ff58a9264090a0294ff0fda98bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d418ff58a9264090a0294ff0fda98bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d418ff58a9264090a0294ff0fda98bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d418ff58a9264090a0294ff0fda98bbe.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:356vhAyO0GDwk7QuHPtWc-M_ZKY=", "createTime": "2024-08-15 15:05:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.364937+00 2025-12-09 10:15:49.364944+00 19118 LJH2028#蓝色 SPMX-20240815314354 \N \N \N 1 \N [{"file_id": "5ce709aa-cfa5-4b9a-9a7b-98d5f5239102", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed7a3741af6045818fd0f0884173c918.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed7a3741af6045818fd0f0884173c918.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed7a3741af6045818fd0f0884173c918.jpg", "file_size": 29676, "is_delete": false, "file_type": 1, "original_file_name": "LJH2028#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a3741af6045818fd0f0884173c918.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a3741af6045818fd0f0884173c918.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed7a3741af6045818fd0f0884173c918.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed7a3741af6045818fd0f0884173c918.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed7a3741af6045818fd0f0884173c918.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPb8dlort3EDT0flgT5zZ3_K_Xg=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.36802+00 2025-12-09 10:15:49.368026+00 19119 1231-48FWF#小童6码 SPMX-20240815314358 \N \N \N 1 \N [{"file_id": "684b86ff-b35f-4b7e-9056-8cf4180c0016", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efef580334ae455fbc04a6e0cd3664c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efef580334ae455fbc04a6e0cd3664c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efef580334ae455fbc04a6e0cd3664c0.jpg", "file_size": 18901, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef580334ae455fbc04a6e0cd3664c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef580334ae455fbc04a6e0cd3664c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efef580334ae455fbc04a6e0cd3664c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efef580334ae455fbc04a6e0cd3664c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efef580334ae455fbc04a6e0cd3664c0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_jBUvaMojrZkkOjwqUTMGpPnDmw=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.371107+00 2025-12-09 10:15:49.371114+00 19120 JXY-1084#B20 SPMX-20240815314359 \N \N \N 1 \N [{"file_id": "2ea294cd-6478-4858-858a-0fa1d2773f91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33fac10d86fc497aa1d1b43f47233d5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33fac10d86fc497aa1d1b43f47233d5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33fac10d86fc497aa1d1b43f47233d5f.jpg", "file_size": 43772, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B20.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fac10d86fc497aa1d1b43f47233d5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fac10d86fc497aa1d1b43f47233d5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fac10d86fc497aa1d1b43f47233d5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33fac10d86fc497aa1d1b43f47233d5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33fac10d86fc497aa1d1b43f47233d5f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CFnr4es9L_r0zSsYBd_Kc0KSClk=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.374172+00 2025-12-09 10:15:49.374178+00 19121 LZ1397#上身3号色 SPMX-20240815314352 \N \N \N 1 \N [{"file_id": "3f0aa2ae-df9e-4132-b1e5-fd073340d82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f745ce3cdbf444ecbf26bcf55b03e6cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f745ce3cdbf444ecbf26bcf55b03e6cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f745ce3cdbf444ecbf26bcf55b03e6cc.jpg", "file_size": 18191, "is_delete": false, "file_type": 1, "original_file_name": "LZ1397#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f745ce3cdbf444ecbf26bcf55b03e6cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f745ce3cdbf444ecbf26bcf55b03e6cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f745ce3cdbf444ecbf26bcf55b03e6cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f745ce3cdbf444ecbf26bcf55b03e6cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f745ce3cdbf444ecbf26bcf55b03e6cc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dPAeXFw4vs9T_Abih5GnmQ9IAP0=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.377249+00 2025-12-09 10:15:49.377255+00 19122 0012-A1#LWQ15 SPMX-20240815314357 \N \N \N 1 \N [{"file_id": "f1674114-def3-4dfe-a0b6-b16cbb4aefe9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1ff5e5aa07349b9a6f86d27e0840d53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1ff5e5aa07349b9a6f86d27e0840d53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1ff5e5aa07349b9a6f86d27e0840d53.jpg", "file_size": 6484, "is_delete": false, "file_type": 1, "original_file_name": "0012-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ff5e5aa07349b9a6f86d27e0840d53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ff5e5aa07349b9a6f86d27e0840d53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1ff5e5aa07349b9a6f86d27e0840d53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1ff5e5aa07349b9a6f86d27e0840d53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1ff5e5aa07349b9a6f86d27e0840d53.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jgpkuw35-wKCBA1yR7k7ldLQfQc=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.380342+00 2025-12-09 10:15:49.380348+00 19123 8768FWE#玫红L VS-D3 SPMX-20240815314360 \N \N \N 1 \N [{"file_id": "b5e6b542-9651-4bba-8fa0-537336dee5a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e07bf75eda1047308af3fa0a3821a2b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e07bf75eda1047308af3fa0a3821a2b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e07bf75eda1047308af3fa0a3821a2b6.jpg", "file_size": 17811, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#玫红L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07bf75eda1047308af3fa0a3821a2b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07bf75eda1047308af3fa0a3821a2b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07bf75eda1047308af3fa0a3821a2b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e07bf75eda1047308af3fa0a3821a2b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e07bf75eda1047308af3fa0a3821a2b6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8nnW4VXD9BuIuA3oIoGYuNhJoFs=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.383432+00 2025-12-09 10:15:49.383438+00 19124 HXF0008-12#白色L SPMX-20240815314355 \N \N \N 1 \N [{"file_id": "ce084b72-51e6-4d18-8c21-45b022b50dfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "366c523b69cc48f98812e99646f620c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "366c523b69cc48f98812e99646f620c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "366c523b69cc48f98812e99646f620c6.jpg", "file_size": 16519, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366c523b69cc48f98812e99646f620c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366c523b69cc48f98812e99646f620c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/366c523b69cc48f98812e99646f620c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/366c523b69cc48f98812e99646f620c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/366c523b69cc48f98812e99646f620c6.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E_9795vMRAMe3LrmzpsNwJS4PVk=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.386841+00 2025-12-09 10:15:49.386847+00 19125 FX0003-82#紫色 SPMX-20240815314356 \N \N \N 1 \N [{"file_id": "faf4d803-1d6a-4fb8-9254-ec742c829864", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28d5d29158134653bca74a88a2667c59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28d5d29158134653bca74a88a2667c59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28d5d29158134653bca74a88a2667c59.jpg", "file_size": 48887, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d5d29158134653bca74a88a2667c59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d5d29158134653bca74a88a2667c59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28d5d29158134653bca74a88a2667c59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28d5d29158134653bca74a88a2667c59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28d5d29158134653bca74a88a2667c59.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6VghBhND-oYrNMm5itvX0CxBIdg=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.390214+00 2025-12-09 10:15:49.39022+00 19126 CGH4-23G173#下身原版色 SPMX-20240815314361 \N \N \N 1 \N [{"file_id": "4cb87a4c-f4ac-4611-8e52-bb556223a1b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69688c37b8b746948bff0053e3fc253e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69688c37b8b746948bff0053e3fc253e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69688c37b8b746948bff0053e3fc253e.jpg", "file_size": 19049, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#下身原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69688c37b8b746948bff0053e3fc253e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69688c37b8b746948bff0053e3fc253e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69688c37b8b746948bff0053e3fc253e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69688c37b8b746948bff0053e3fc253e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69688c37b8b746948bff0053e3fc253e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OyXgsmLX_JOEpn6IPG2aGg7cELs=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.393556+00 2025-12-09 10:15:49.393563+00 19127 DLDR023FWE#-D SPMX-20240815314353 \N \N \N 1 \N [{"file_id": "40e7497b-d18e-4365-8f9f-36dce0ecfb32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8966b29b33745b38f3b6f0bff9758c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8966b29b33745b38f3b6f0bff9758c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8966b29b33745b38f3b6f0bff9758c7.jpg", "file_size": 18734, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8966b29b33745b38f3b6f0bff9758c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8966b29b33745b38f3b6f0bff9758c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8966b29b33745b38f3b6f0bff9758c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8966b29b33745b38f3b6f0bff9758c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8966b29b33745b38f3b6f0bff9758c7.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVnZ0l65PMcFYKAmdZdEUpREmoE=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.396981+00 2025-12-09 10:15:49.396987+00 19128 DLDR023FWE#-E SPMX-20240815314367 \N \N \N 1 \N [{"file_id": "51bfb10f-4775-4a24-a8e4-15542bd62da6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efc3807ada9f4c7bb2e6857a0a25f273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efc3807ada9f4c7bb2e6857a0a25f273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efc3807ada9f4c7bb2e6857a0a25f273.jpg", "file_size": 25823, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc3807ada9f4c7bb2e6857a0a25f273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc3807ada9f4c7bb2e6857a0a25f273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc3807ada9f4c7bb2e6857a0a25f273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efc3807ada9f4c7bb2e6857a0a25f273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efc3807ada9f4c7bb2e6857a0a25f273.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lds9urUDHpfLiF8-5sn43yM3d_I=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.400332+00 2025-12-09 10:15:49.400339+00 19129 CGH4-23G173#下身土黄 SPMX-20240815314373 \N \N \N 1 \N [{"file_id": "c1fef8dc-e97e-4095-93b8-ccddd2edd793", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14dc179a164f468ab748fba09e14e045.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14dc179a164f468ab748fba09e14e045.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14dc179a164f468ab748fba09e14e045.jpg", "file_size": 18453, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#下身土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dc179a164f468ab748fba09e14e045.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dc179a164f468ab748fba09e14e045.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14dc179a164f468ab748fba09e14e045.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14dc179a164f468ab748fba09e14e045.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14dc179a164f468ab748fba09e14e045.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUKp-JVhspXAdRYlZqa2pFg6vn8=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.403696+00 2025-12-09 10:15:49.403703+00 19130 235#LWQ15 SPMX-20240815314362 \N \N \N 1 \N [{"file_id": "8a4a4595-e775-46d3-977f-3ccd1f8f8e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27d936ff55be4802aa4d77d299579898.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27d936ff55be4802aa4d77d299579898.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27d936ff55be4802aa4d77d299579898.jpg", "file_size": 17490, "is_delete": false, "file_type": 1, "original_file_name": "235#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d936ff55be4802aa4d77d299579898.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d936ff55be4802aa4d77d299579898.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27d936ff55be4802aa4d77d299579898.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27d936ff55be4802aa4d77d299579898.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27d936ff55be4802aa4d77d299579898.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64s0oXKuz2diuZWdbCPovScBR78=", "createTime": "2024-08-15 15:05:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.407104+00 2025-12-09 10:15:49.40711+00 19131 JXY-1084#B21 SPMX-20240815314370 \N \N \N 1 \N [{"file_id": "1cf74149-1240-4a60-8ffd-072b97be7ecb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c15da413b14a49439c6fcf705a71bb91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c15da413b14a49439c6fcf705a71bb91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c15da413b14a49439c6fcf705a71bb91.jpg", "file_size": 49118, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B21.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15da413b14a49439c6fcf705a71bb91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15da413b14a49439c6fcf705a71bb91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c15da413b14a49439c6fcf705a71bb91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c15da413b14a49439c6fcf705a71bb91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c15da413b14a49439c6fcf705a71bb91.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MKgEY-zs8tyX8WGiBWMAeEjRvmY=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.410459+00 2025-12-09 10:15:49.410465+00 19132 235#大红净色 SPMX-20240815314371 \N \N \N 1 \N [{"file_id": "5bbc2ecf-067e-4ff0-8f58-c022e97cff57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "562a55159f9b425fbde97ed5a06c8d95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "562a55159f9b425fbde97ed5a06c8d95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "562a55159f9b425fbde97ed5a06c8d95.jpg", "file_size": 6741, "is_delete": false, "file_type": 1, "original_file_name": "235#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/562a55159f9b425fbde97ed5a06c8d95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/562a55159f9b425fbde97ed5a06c8d95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/562a55159f9b425fbde97ed5a06c8d95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/562a55159f9b425fbde97ed5a06c8d95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/562a55159f9b425fbde97ed5a06c8d95.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nCEUSrMHCsR8WsS3wF2b1yhuwgo=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.413474+00 2025-12-09 10:15:49.413481+00 19133 LJH2028#黄色 SPMX-20240815314366 \N \N \N 1 \N [{"file_id": "875c8bde-d9e4-4a33-b08c-3ac5f1c25d36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44b1c8cb04714f22b3402e3d158a6371.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44b1c8cb04714f22b3402e3d158a6371.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44b1c8cb04714f22b3402e3d158a6371.jpg", "file_size": 29055, "is_delete": false, "file_type": 1, "original_file_name": "LJH2028#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b1c8cb04714f22b3402e3d158a6371.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b1c8cb04714f22b3402e3d158a6371.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b1c8cb04714f22b3402e3d158a6371.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44b1c8cb04714f22b3402e3d158a6371.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44b1c8cb04714f22b3402e3d158a6371.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EjXa_iErHD-s_XtXezJu8a9bWn4=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.417213+00 2025-12-09 10:15:49.41722+00 19134 1231-48FWF#小童8码+4码 SPMX-20240815314369 \N \N \N 1 \N [{"file_id": "9adbc51e-b0ed-4b4a-8df7-e6edb1501983", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "529608bfd8b14c429a9b45a9e51bfedc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "529608bfd8b14c429a9b45a9e51bfedc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "529608bfd8b14c429a9b45a9e51bfedc.jpg", "file_size": 18936, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529608bfd8b14c429a9b45a9e51bfedc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529608bfd8b14c429a9b45a9e51bfedc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/529608bfd8b14c429a9b45a9e51bfedc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/529608bfd8b14c429a9b45a9e51bfedc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/529608bfd8b14c429a9b45a9e51bfedc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnarmnHT1ECAWeKTUeclhBodEKU=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.420548+00 2025-12-09 10:15:49.420554+00 19135 8768FWE#玫红XL VS-D3 SPMX-20240815314372 \N \N \N 1 \N [{"file_id": "0bb4449f-08ab-4f18-93b7-741bc5d283e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f49f16fc54604deb87bee3de84ca2398.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f49f16fc54604deb87bee3de84ca2398.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f49f16fc54604deb87bee3de84ca2398.jpg", "file_size": 16639, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#玫红XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f16fc54604deb87bee3de84ca2398.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f16fc54604deb87bee3de84ca2398.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49f16fc54604deb87bee3de84ca2398.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f49f16fc54604deb87bee3de84ca2398.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f49f16fc54604deb87bee3de84ca2398.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_WJwMwEs2yKxz4gbUmOqkcG6JRI=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.424215+00 2025-12-09 10:15:49.424221+00 19136 HXF0008-12#白色M SPMX-20240815314364 \N \N \N 1 \N [{"file_id": "449b1d8c-b018-45a2-b401-52615a92f5a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a288aca3ae1461d8cab102fbb6bf4aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a288aca3ae1461d8cab102fbb6bf4aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a288aca3ae1461d8cab102fbb6bf4aa.jpg", "file_size": 17795, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a288aca3ae1461d8cab102fbb6bf4aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a288aca3ae1461d8cab102fbb6bf4aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a288aca3ae1461d8cab102fbb6bf4aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a288aca3ae1461d8cab102fbb6bf4aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a288aca3ae1461d8cab102fbb6bf4aa.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c49UoTa9QB62b1iKMB6DUWC8XN0=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.427319+00 2025-12-09 10:15:49.427326+00 19137 FX0003-82#绿色 SPMX-20240815314365 \N \N \N 1 \N [{"file_id": "660f5695-3366-43b9-9080-c4d7b5b88b68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15b732ace77041f6b2615e5423d18f7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15b732ace77041f6b2615e5423d18f7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15b732ace77041f6b2615e5423d18f7e.jpg", "file_size": 50459, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b732ace77041f6b2615e5423d18f7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b732ace77041f6b2615e5423d18f7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15b732ace77041f6b2615e5423d18f7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15b732ace77041f6b2615e5423d18f7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15b732ace77041f6b2615e5423d18f7e.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DO0HvWEDE_DRPWSehM8dvX39Ofs=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.430371+00 2025-12-09 10:15:49.430377+00 19138 0012-A2#绿色 SPMX-20240815314368 \N \N \N 1 \N [{"file_id": "347eac20-fc68-4227-9bf5-d3b1df6f1802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47614e27995642989b5a0099e04e530a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47614e27995642989b5a0099e04e530a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47614e27995642989b5a0099e04e530a.jpg", "file_size": 7318, "is_delete": false, "file_type": 1, "original_file_name": "0012-A2#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47614e27995642989b5a0099e04e530a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47614e27995642989b5a0099e04e530a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47614e27995642989b5a0099e04e530a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47614e27995642989b5a0099e04e530a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47614e27995642989b5a0099e04e530a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r57g73RPt0lMJmWaRUpZVfNi9Oc=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.433442+00 2025-12-09 10:15:49.433449+00 19139 LZ1397#上身4号色 SPMX-20240815314363 \N \N \N 1 \N [{"file_id": "8eb055e4-a626-447e-9bee-2a75cb5091e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fa94c0785e6406d95343ebf448f5198.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fa94c0785e6406d95343ebf448f5198.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fa94c0785e6406d95343ebf448f5198.jpg", "file_size": 18707, "is_delete": false, "file_type": 1, "original_file_name": "LZ1397#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa94c0785e6406d95343ebf448f5198.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa94c0785e6406d95343ebf448f5198.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fa94c0785e6406d95343ebf448f5198.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fa94c0785e6406d95343ebf448f5198.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fa94c0785e6406d95343ebf448f5198.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8TTlvf39eLCBbHPKew-jvEFrtc=", "createTime": "2024-08-15 15:05:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.436501+00 2025-12-09 10:15:49.436508+00 19140 FX0003-82#蓝色 SPMX-20240815314376 \N \N \N 1 \N [{"file_id": "d3974867-8a30-43bd-b0ae-81d4c60614e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "534b12ecb38741778f7839bdcdf84ab4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "534b12ecb38741778f7839bdcdf84ab4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "534b12ecb38741778f7839bdcdf84ab4.jpg", "file_size": 51556, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534b12ecb38741778f7839bdcdf84ab4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534b12ecb38741778f7839bdcdf84ab4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534b12ecb38741778f7839bdcdf84ab4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/534b12ecb38741778f7839bdcdf84ab4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/534b12ecb38741778f7839bdcdf84ab4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NVLMEPiqQWOGv_Ik0jgEU4sCbyc=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.439526+00 2025-12-09 10:15:49.439533+00 19141 0012-A2#黑色 SPMX-20240815314377 \N \N \N 1 \N [{"file_id": "b2e2014b-4170-46e3-9ac5-f295458247b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d4d55b3fa6347d0bded6eace354ba9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d4d55b3fa6347d0bded6eace354ba9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d4d55b3fa6347d0bded6eace354ba9f.jpg", "file_size": 7100, "is_delete": false, "file_type": 1, "original_file_name": "0012-A2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4d55b3fa6347d0bded6eace354ba9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4d55b3fa6347d0bded6eace354ba9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4d55b3fa6347d0bded6eace354ba9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d4d55b3fa6347d0bded6eace354ba9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d4d55b3fa6347d0bded6eace354ba9f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lbScr6C5mXmsxFDAQ3E8MSDWpvQ=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.442558+00 2025-12-09 10:15:49.442565+00 19142 DLDR023FWE#-H SPMX-20240815314379 \N \N \N 1 \N [{"file_id": "03fd9dbb-a4c8-4c15-a3aa-c3d863604be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3a9591435d547ae804722469f3f01c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3a9591435d547ae804722469f3f01c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3a9591435d547ae804722469f3f01c9.jpg", "file_size": 20288, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a9591435d547ae804722469f3f01c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a9591435d547ae804722469f3f01c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3a9591435d547ae804722469f3f01c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3a9591435d547ae804722469f3f01c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3a9591435d547ae804722469f3f01c9.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gKQ3qerUPkPUi2XZkJYp2GJq24Y=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.445592+00 2025-12-09 10:15:49.445598+00 19143 CGH4-23G173#下身大红 SPMX-20240815314384 \N \N \N 1 \N [{"file_id": "af3ceb4e-bc72-44b7-88bd-944040d97377", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "748fc7bac90148e1a504b09816df1d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "748fc7bac90148e1a504b09816df1d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "748fc7bac90148e1a504b09816df1d44.jpg", "file_size": 15670, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#下身大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748fc7bac90148e1a504b09816df1d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748fc7bac90148e1a504b09816df1d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/748fc7bac90148e1a504b09816df1d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/748fc7bac90148e1a504b09816df1d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/748fc7bac90148e1a504b09816df1d44.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uTe3OSABpoTX2hsbOon6_Ejziv4=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.448643+00 2025-12-09 10:15:49.448649+00 19144 JXY-1084#B22 SPMX-20240815314382 \N \N \N 1 \N [{"file_id": "db117626-a48e-426f-baf1-6517ef7fa7c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1fc7bc03ad94532b74230029817b9d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1fc7bc03ad94532b74230029817b9d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1fc7bc03ad94532b74230029817b9d5.jpg", "file_size": 52730, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fc7bc03ad94532b74230029817b9d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fc7bc03ad94532b74230029817b9d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1fc7bc03ad94532b74230029817b9d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1fc7bc03ad94532b74230029817b9d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1fc7bc03ad94532b74230029817b9d5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSvijYpu7RkOIbalOtNV1AO7p0E=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.451742+00 2025-12-09 10:15:49.451749+00 19145 8768FWE#紫色2XL VS-D3 SPMX-20240815314383 \N \N \N 1 \N [{"file_id": "4169de19-96bb-41b5-98c3-0f2146d80536", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77b5181bbcef4d2ea870efffe28426a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77b5181bbcef4d2ea870efffe28426a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77b5181bbcef4d2ea870efffe28426a4.jpg", "file_size": 16337, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#紫色2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b5181bbcef4d2ea870efffe28426a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b5181bbcef4d2ea870efffe28426a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77b5181bbcef4d2ea870efffe28426a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77b5181bbcef4d2ea870efffe28426a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77b5181bbcef4d2ea870efffe28426a4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_iEPcUl0S8IQ6cQy6U-Cdgb7N4=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.45482+00 2025-12-09 10:15:49.454831+00 19146 LJH2030#天兰 SPMX-20240815314378 \N \N \N 1 \N [{"file_id": "3927f084-6a1e-4f7c-b1b9-e6e7f5ec7866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ae200e7b1304a699c03a074539898e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ae200e7b1304a699c03a074539898e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ae200e7b1304a699c03a074539898e5.jpg", "file_size": 36485, "is_delete": false, "file_type": 1, "original_file_name": "LJH2030#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae200e7b1304a699c03a074539898e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae200e7b1304a699c03a074539898e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae200e7b1304a699c03a074539898e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ae200e7b1304a699c03a074539898e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ae200e7b1304a699c03a074539898e5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZWC2BcDPlzdru_NFPwmz1H2b31E=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.45788+00 2025-12-09 10:15:49.457886+00 19147 HXF0008-12#白色XL SPMX-20240815314375 \N \N \N 1 \N [{"file_id": "c162d0a0-7c96-4a5e-aeac-157a7ba00f1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "090bc649159b4da99461382a937e2d0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "090bc649159b4da99461382a937e2d0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "090bc649159b4da99461382a937e2d0f.jpg", "file_size": 16523, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090bc649159b4da99461382a937e2d0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090bc649159b4da99461382a937e2d0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090bc649159b4da99461382a937e2d0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/090bc649159b4da99461382a937e2d0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/090bc649159b4da99461382a937e2d0f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lGP7CTaYTthAbV4uxiY62g9ARjw=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.46094+00 2025-12-09 10:15:49.460946+00 19148 23523FWF#V5曲线 SPMX-20240815314381 \N \N \N 1 \N [{"file_id": "2997954a-2051-42df-8fe2-9f7e2a715ffd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4dde4870ac2645539902997e5c6e9db5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4dde4870ac2645539902997e5c6e9db5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4dde4870ac2645539902997e5c6e9db5.jpg", "file_size": 24820, "is_delete": false, "file_type": 1, "original_file_name": "23523FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde4870ac2645539902997e5c6e9db5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde4870ac2645539902997e5c6e9db5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4dde4870ac2645539902997e5c6e9db5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4dde4870ac2645539902997e5c6e9db5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4dde4870ac2645539902997e5c6e9db5.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUxMrObZCK5HD5HlXvsdf1dyqhI=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.463953+00 2025-12-09 10:15:49.46396+00 19149 LZ1397#上身5号色 SPMX-20240815314374 \N \N \N 1 \N [{"file_id": "679a1bc6-1f30-4938-8215-19708185694b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc47cd946d2444669dfbd7ddaad8860a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc47cd946d2444669dfbd7ddaad8860a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc47cd946d2444669dfbd7ddaad8860a.jpg", "file_size": 18047, "is_delete": false, "file_type": 1, "original_file_name": "LZ1397#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc47cd946d2444669dfbd7ddaad8860a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc47cd946d2444669dfbd7ddaad8860a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc47cd946d2444669dfbd7ddaad8860a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc47cd946d2444669dfbd7ddaad8860a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc47cd946d2444669dfbd7ddaad8860a.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8SE8DVM1COV0lCHTPTcmR3D1lck=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.467072+00 2025-12-09 10:15:49.467078+00 19150 1231-48FWF#小童袖领匹布 SPMX-20240815314380 \N \N \N 1 \N [{"file_id": "f795c270-aca9-4006-8408-61a82e5b8c0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b083678c2f64eadb379e49da3d75c29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b083678c2f64eadb379e49da3d75c29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b083678c2f64eadb379e49da3d75c29.jpg", "file_size": 8361, "is_delete": false, "file_type": 1, "original_file_name": "1231-48FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b083678c2f64eadb379e49da3d75c29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b083678c2f64eadb379e49da3d75c29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b083678c2f64eadb379e49da3d75c29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b083678c2f64eadb379e49da3d75c29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b083678c2f64eadb379e49da3d75c29.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECSA0OGXDhUQmD8FELoVIWYumLk=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.470107+00 2025-12-09 10:15:49.470113+00 19151 FX0003-82#黄色 SPMX-20240815314387 \N \N \N 1 \N [{"file_id": "3e3762cf-7fd4-47f5-838e-500dc3c93be3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "549589cfef9f4d88b2fae22e5f0d7ab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "549589cfef9f4d88b2fae22e5f0d7ab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "549589cfef9f4d88b2fae22e5f0d7ab0.jpg", "file_size": 51914, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549589cfef9f4d88b2fae22e5f0d7ab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549589cfef9f4d88b2fae22e5f0d7ab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/549589cfef9f4d88b2fae22e5f0d7ab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/549589cfef9f4d88b2fae22e5f0d7ab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/549589cfef9f4d88b2fae22e5f0d7ab0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0w18otWPU1UIoJK1H9twMSQI3Po=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.473184+00 2025-12-09 10:15:49.473191+00 19152 DLDR023FWE#-J SPMX-20240815314400 \N \N \N 1 \N [{"file_id": "51aa5148-ee37-4311-aaf7-fdfe098ddeda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72ef1ee338654fe0b730310d3bca8da4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72ef1ee338654fe0b730310d3bca8da4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72ef1ee338654fe0b730310d3bca8da4.jpg", "file_size": 17744, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-J.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ef1ee338654fe0b730310d3bca8da4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ef1ee338654fe0b730310d3bca8da4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72ef1ee338654fe0b730310d3bca8da4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72ef1ee338654fe0b730310d3bca8da4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72ef1ee338654fe0b730310d3bca8da4.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zo9RfNFPHzyLCd215z9iKlJWxVA=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.476217+00 2025-12-09 10:15:49.476224+00 19153 0012-A4#LWQ15 SPMX-20240815314398 \N \N \N 1 \N [{"file_id": "57d47add-3797-49d6-aa34-77ec370cabaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e513ebd72adc44b29c06b5902a924f14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e513ebd72adc44b29c06b5902a924f14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e513ebd72adc44b29c06b5902a924f14.jpg", "file_size": 14940, "is_delete": false, "file_type": 1, "original_file_name": "0012-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e513ebd72adc44b29c06b5902a924f14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e513ebd72adc44b29c06b5902a924f14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e513ebd72adc44b29c06b5902a924f14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e513ebd72adc44b29c06b5902a924f14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e513ebd72adc44b29c06b5902a924f14.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNWQjNBmA_5CiWEzmfjwE79_XHU=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.479231+00 2025-12-09 10:15:49.479237+00 19154 LZ1398#上身1号色 SPMX-20240815314386 \N \N \N 1 \N [{"file_id": "f9d1f278-bea7-44ab-844a-30823987569f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3861178320d0469680390234d21163e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3861178320d0469680390234d21163e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3861178320d0469680390234d21163e0.jpg", "file_size": 20345, "is_delete": false, "file_type": 1, "original_file_name": "LZ1398#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3861178320d0469680390234d21163e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3861178320d0469680390234d21163e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3861178320d0469680390234d21163e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3861178320d0469680390234d21163e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3861178320d0469680390234d21163e0.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G1K-y-rpjmuz3Ge8LPi0xoetsnI=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.482314+00 2025-12-09 10:15:49.48232+00 19155 LJH2030#粉色 SPMX-20240815314389 \N \N \N 1 \N [{"file_id": "1949a3af-1cb6-423b-8d7a-e0862e665a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436bc0f3466145fb9ec92692aab65157.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436bc0f3466145fb9ec92692aab65157.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436bc0f3466145fb9ec92692aab65157.jpg", "file_size": 35089, "is_delete": false, "file_type": 1, "original_file_name": "LJH2030#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436bc0f3466145fb9ec92692aab65157.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436bc0f3466145fb9ec92692aab65157.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436bc0f3466145fb9ec92692aab65157.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436bc0f3466145fb9ec92692aab65157.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436bc0f3466145fb9ec92692aab65157.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvuhBwa6uXDsVF2tanrG3DCVxkY=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.485354+00 2025-12-09 10:15:49.48536+00 19156 23529FWF#红花正身 SPMX-20240815314390 \N \N \N 1 \N [{"file_id": "056cdfcd-9590-4039-a488-75a93bad1628", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d5d501fda434b13b5ab2aaa3c27e7fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d5d501fda434b13b5ab2aaa3c27e7fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d5d501fda434b13b5ab2aaa3c27e7fc.jpg", "file_size": 8968, "is_delete": false, "file_type": 1, "original_file_name": "23529FWF#红花正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5d501fda434b13b5ab2aaa3c27e7fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5d501fda434b13b5ab2aaa3c27e7fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d5d501fda434b13b5ab2aaa3c27e7fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d5d501fda434b13b5ab2aaa3c27e7fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d5d501fda434b13b5ab2aaa3c27e7fc.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:notE60IsyetAZJ-KJwD2PR4tlh4=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.488446+00 2025-12-09 10:15:49.488454+00 19157 HXF0008-12#白色批布 SPMX-20240815314385 \N \N \N 1 \N [{"file_id": "ca6d7818-3116-4ab0-8742-79070274f3e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fd5c4c7ece74741924a0dad47e32bca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fd5c4c7ece74741924a0dad47e32bca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fd5c4c7ece74741924a0dad47e32bca.jpg", "file_size": 18420, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#白色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd5c4c7ece74741924a0dad47e32bca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd5c4c7ece74741924a0dad47e32bca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fd5c4c7ece74741924a0dad47e32bca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fd5c4c7ece74741924a0dad47e32bca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fd5c4c7ece74741924a0dad47e32bca.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvjXjMCK0nvsN33k5bQadBoksSE=", "createTime": "2024-08-15 15:06:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.491491+00 2025-12-09 10:15:49.491497+00 19158 DLDR023FWE#-I SPMX-20240815314391 \N \N \N 1 \N [{"file_id": "e5dcfa73-9ea0-4674-81cf-6c7a6dd83a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b8c3069bfa6460b9ccb297ff15c1959.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b8c3069bfa6460b9ccb297ff15c1959.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b8c3069bfa6460b9ccb297ff15c1959.jpg", "file_size": 16881, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-I.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c3069bfa6460b9ccb297ff15c1959.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c3069bfa6460b9ccb297ff15c1959.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b8c3069bfa6460b9ccb297ff15c1959.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b8c3069bfa6460b9ccb297ff15c1959.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b8c3069bfa6460b9ccb297ff15c1959.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OmRi2h99me7B-HSl4Lop6O_GU8E=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.494584+00 2025-12-09 10:15:49.494595+00 19159 8768FWE#紫色L VS-D3 SPMX-20240815314394 \N \N \N 1 \N [{"file_id": "65085f0d-28c8-45d3-8eee-ab9ab30ce21d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b0bea126df94cfd994855f8147a5d41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b0bea126df94cfd994855f8147a5d41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b0bea126df94cfd994855f8147a5d41.jpg", "file_size": 17175, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#紫色L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0bea126df94cfd994855f8147a5d41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0bea126df94cfd994855f8147a5d41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b0bea126df94cfd994855f8147a5d41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b0bea126df94cfd994855f8147a5d41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b0bea126df94cfd994855f8147a5d41.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TvIu1Xf7ssbw4ckax5tzjMgvFRs=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.497696+00 2025-12-09 10:15:49.497703+00 19160 0012-A3#LWQ15 SPMX-20240815314388 \N \N \N 1 \N [{"file_id": "adafd3f8-cd94-49bc-a7c5-4419008f4bbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f830a5de6144b6c881dfdc6f5308169.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f830a5de6144b6c881dfdc6f5308169.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f830a5de6144b6c881dfdc6f5308169.jpg", "file_size": 19932, "is_delete": false, "file_type": 1, "original_file_name": "0012-A3#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f830a5de6144b6c881dfdc6f5308169.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f830a5de6144b6c881dfdc6f5308169.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f830a5de6144b6c881dfdc6f5308169.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f830a5de6144b6c881dfdc6f5308169.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f830a5de6144b6c881dfdc6f5308169.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5wHFEB3y4GW5L0hcupjaSoBdvM=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.500795+00 2025-12-09 10:15:49.5008+00 19161 HXF0008-12#粉色2XL SPMX-20240815314397 \N \N \N 1 \N [{"file_id": "f66ca4ab-59cb-4159-bb47-a742feb11c05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10c9b2c863dc4466a624678faef76972.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10c9b2c863dc4466a624678faef76972.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10c9b2c863dc4466a624678faef76972.jpg", "file_size": 15880, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c9b2c863dc4466a624678faef76972.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c9b2c863dc4466a624678faef76972.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10c9b2c863dc4466a624678faef76972.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10c9b2c863dc4466a624678faef76972.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10c9b2c863dc4466a624678faef76972.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t_hgIsl2nPbnprJRVWSbJe3rgA8=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.503869+00 2025-12-09 10:15:49.503875+00 19162 JXY-1084#B23 SPMX-20240815314395 \N \N \N 1 \N [{"file_id": "b848f3b0-bcfb-4165-85ca-db243126db62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eca3a01efb4d41809cf9241da6558964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eca3a01efb4d41809cf9241da6558964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eca3a01efb4d41809cf9241da6558964.jpg", "file_size": 72814, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca3a01efb4d41809cf9241da6558964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca3a01efb4d41809cf9241da6558964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca3a01efb4d41809cf9241da6558964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eca3a01efb4d41809cf9241da6558964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eca3a01efb4d41809cf9241da6558964.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vq8dIsMVGIBpBJnqBocKkeANTVI=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.506856+00 2025-12-09 10:15:49.506862+00 19163 CGH4-23G173#下身彩兰 SPMX-20240815314393 \N \N \N 1 \N [{"file_id": "d2d52dbe-b768-40e8-b98a-6ea3f119787a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8acd34c320b44d429c987ad0eefcff75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8acd34c320b44d429c987ad0eefcff75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8acd34c320b44d429c987ad0eefcff75.jpg", "file_size": 14996, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#下身彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd34c320b44d429c987ad0eefcff75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd34c320b44d429c987ad0eefcff75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8acd34c320b44d429c987ad0eefcff75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8acd34c320b44d429c987ad0eefcff75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8acd34c320b44d429c987ad0eefcff75.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-Rjtl-evGtsua56Uuask-up5JM=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.509831+00 2025-12-09 10:15:49.509838+00 19164 FX0003-82#黑色 SPMX-20240815314399 \N \N \N 1 \N [{"file_id": "a15a249b-7922-42d0-af0e-5f88fe6feca2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06c78ff3bb28429ea21deeb40238a2e8.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06c78ff3bb28429ea21deeb40238a2e8.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06c78ff3bb28429ea21deeb40238a2e8.bmp", "file_size": 22658, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-82#黑色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c78ff3bb28429ea21deeb40238a2e8.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c78ff3bb28429ea21deeb40238a2e8.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06c78ff3bb28429ea21deeb40238a2e8.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06c78ff3bb28429ea21deeb40238a2e8.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06c78ff3bb28429ea21deeb40238a2e8.bmp?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXXFHp4uLmTnaQal1SYWCJFou0M=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.512932+00 2025-12-09 10:15:49.512939+00 19165 1231-49FWF#中童14码 SPMX-20240815314401 \N \N \N 1 \N [{"file_id": "8aa2a21b-21a5-4e7b-80e2-b8d615c04c11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6970ad54f0f49bb9fc0f937293aab1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6970ad54f0f49bb9fc0f937293aab1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6970ad54f0f49bb9fc0f937293aab1f.jpg", "file_size": 16028, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6970ad54f0f49bb9fc0f937293aab1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6970ad54f0f49bb9fc0f937293aab1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6970ad54f0f49bb9fc0f937293aab1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6970ad54f0f49bb9fc0f937293aab1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6970ad54f0f49bb9fc0f937293aab1f.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BA692D3yttEpQtA7TRbp-N7eBHc=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.515988+00 2025-12-09 10:15:49.515995+00 19166 23529FWF#红花配色 SPMX-20240815314402 \N \N \N 1 \N [{"file_id": "5e57ac68-b2aa-4dad-8363-bd57b18a0052", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "712bfc00c494489c9fceb3be6fd151a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "712bfc00c494489c9fceb3be6fd151a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "712bfc00c494489c9fceb3be6fd151a1.jpg", "file_size": 16349, "is_delete": false, "file_type": 1, "original_file_name": "23529FWF#红花配色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712bfc00c494489c9fceb3be6fd151a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712bfc00c494489c9fceb3be6fd151a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712bfc00c494489c9fceb3be6fd151a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/712bfc00c494489c9fceb3be6fd151a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/712bfc00c494489c9fceb3be6fd151a1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BUojMMWwtCJAUdgjdjcnGUOBKCc=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.519132+00 2025-12-09 10:15:49.519139+00 19167 LZ1398#上身2号色 SPMX-20240815314396 \N \N \N 1 \N [{"file_id": "9bb77c75-fd1a-4816-9224-c92f3212fbcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88404e3875284577ac621fbb9e0f6b01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88404e3875284577ac621fbb9e0f6b01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88404e3875284577ac621fbb9e0f6b01.jpg", "file_size": 20588, "is_delete": false, "file_type": 1, "original_file_name": "LZ1398#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88404e3875284577ac621fbb9e0f6b01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88404e3875284577ac621fbb9e0f6b01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88404e3875284577ac621fbb9e0f6b01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88404e3875284577ac621fbb9e0f6b01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88404e3875284577ac621fbb9e0f6b01.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8JveL9Wu62Voms0E6jgRYbVx8A=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:49.522274+00 2025-12-09 10:15:49.522281+00 19168 1231-49FWF#中童12码+10码 SPMX-20240815314392 \N \N \N 1 \N [{"file_id": "17cacb94-bc75-4083-8f48-9e557e528f44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc2964babf714e6f84c0f30b3a8929f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc2964babf714e6f84c0f30b3a8929f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc2964babf714e6f84c0f30b3a8929f1.jpg", "file_size": 18426, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2964babf714e6f84c0f30b3a8929f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2964babf714e6f84c0f30b3a8929f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2964babf714e6f84c0f30b3a8929f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc2964babf714e6f84c0f30b3a8929f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc2964babf714e6f84c0f30b3a8929f1.jpg?e=1765361748&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvWmlKk1_GxrB1298CINH5GZhFE=", "createTime": "2024-08-15 15:06:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.615599+00 2025-12-09 10:15:50.615608+00 19169 LJH2030#黑色 SPMX-20240815314403 \N \N \N 1 \N [{"file_id": "5f336b91-841f-4c60-a737-808bd4e448cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "242372c7cf5f47ddae5c320902f5c85f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "242372c7cf5f47ddae5c320902f5c85f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "242372c7cf5f47ddae5c320902f5c85f.jpg", "file_size": 32542, "is_delete": false, "file_type": 1, "original_file_name": "LJH2030#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242372c7cf5f47ddae5c320902f5c85f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242372c7cf5f47ddae5c320902f5c85f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/242372c7cf5f47ddae5c320902f5c85f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/242372c7cf5f47ddae5c320902f5c85f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/242372c7cf5f47ddae5c320902f5c85f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gt250F-tk9Rh-xgW88zeQWbiTZQ=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.620297+00 2025-12-09 10:15:50.620304+00 19170 8768FWE#紫色XL VS-D3 SPMX-20240815314404 \N \N \N 1 \N [{"file_id": "6a07828d-c2b9-4930-b410-2c2c7ac34e10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2f424e0503c43c7b0dfb5bcc4b950a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2f424e0503c43c7b0dfb5bcc4b950a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2f424e0503c43c7b0dfb5bcc4b950a6.jpg", "file_size": 16206, "is_delete": false, "file_type": 1, "original_file_name": "8768FWE#紫色XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f424e0503c43c7b0dfb5bcc4b950a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f424e0503c43c7b0dfb5bcc4b950a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f424e0503c43c7b0dfb5bcc4b950a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2f424e0503c43c7b0dfb5bcc4b950a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2f424e0503c43c7b0dfb5bcc4b950a6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uscroYV2KfPktr7KmRMbmxKvQ7Q=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.623388+00 2025-12-09 10:15:50.623394+00 19171 LZ1398#上身3号色 SPMX-20240815314406 \N \N \N 1 \N [{"file_id": "da79bf14-f65e-447f-9e6d-02238e291c9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60dba6d5bf8346a590829918ea0bf625.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60dba6d5bf8346a590829918ea0bf625.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60dba6d5bf8346a590829918ea0bf625.jpg", "file_size": 19819, "is_delete": false, "file_type": 1, "original_file_name": "LZ1398#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60dba6d5bf8346a590829918ea0bf625.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60dba6d5bf8346a590829918ea0bf625.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60dba6d5bf8346a590829918ea0bf625.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60dba6d5bf8346a590829918ea0bf625.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60dba6d5bf8346a590829918ea0bf625.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVEXrLV6nABPI17T5PFCJHQyFLI=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.626519+00 2025-12-09 10:15:50.626524+00 19172 HXF0008-12#粉色L SPMX-20240815314409 \N \N \N 1 \N [{"file_id": "ab3b99a1-6774-413c-90bc-9291dbc25955", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95c5e2b0ca534f529f55fdca44cd425b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95c5e2b0ca534f529f55fdca44cd425b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95c5e2b0ca534f529f55fdca44cd425b.jpg", "file_size": 16184, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c5e2b0ca534f529f55fdca44cd425b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c5e2b0ca534f529f55fdca44cd425b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95c5e2b0ca534f529f55fdca44cd425b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95c5e2b0ca534f529f55fdca44cd425b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95c5e2b0ca534f529f55fdca44cd425b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANQcXvHhvv8YbeAlY_QBHTtMR3k=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.629744+00 2025-12-09 10:15:50.62975+00 19173 FX0003-83#红色 SPMX-20240815314411 \N \N \N 1 \N [{"file_id": "dde23ef3-20e4-482f-b7f1-f78e94173694", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b480f50244e0483cb9c32cb15e13c768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b480f50244e0483cb9c32cb15e13c768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b480f50244e0483cb9c32cb15e13c768.jpg", "file_size": 23160, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-83#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b480f50244e0483cb9c32cb15e13c768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b480f50244e0483cb9c32cb15e13c768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b480f50244e0483cb9c32cb15e13c768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b480f50244e0483cb9c32cb15e13c768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b480f50244e0483cb9c32cb15e13c768.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4TXr_IRKuL9z0tCw71tGIDirK6k=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.632818+00 2025-12-09 10:15:50.632824+00 19174 JXY-1084#B25 SPMX-20240815314407 \N \N \N 1 \N [{"file_id": "40dbac76-6c0a-4184-a19b-e402b71a06ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg", "file_size": 27116, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B25.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60aa7d9d2ba04a4885d1a15a31cd6c3b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuBFfaiRLshqJXsi2visKOSEgM8=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.635859+00 2025-12-09 10:15:50.635866+00 19175 0013-6FWF#V5曲线 SPMX-20240815314408 \N \N \N 1 \N [{"file_id": "02880e74-30fa-4ad0-b87c-a836d8eb6ec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc6a4dc190641c28c3ef9c4ce593a72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc6a4dc190641c28c3ef9c4ce593a72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc6a4dc190641c28c3ef9c4ce593a72.jpg", "file_size": 8888, "is_delete": false, "file_type": 1, "original_file_name": "0013-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6a4dc190641c28c3ef9c4ce593a72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6a4dc190641c28c3ef9c4ce593a72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc6a4dc190641c28c3ef9c4ce593a72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc6a4dc190641c28c3ef9c4ce593a72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc6a4dc190641c28c3ef9c4ce593a72.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9D0pbZOGmBz_fTXvwlojybcmqU=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.638911+00 2025-12-09 10:15:50.638916+00 19176 CGH4-23G173#下身西红 SPMX-20240815314405 \N \N \N 1 \N [{"file_id": "e1953563-3509-4284-95db-0aa7ad9f0bcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f49d75a5b49d49cfb097837fe4d1b78e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f49d75a5b49d49cfb097837fe4d1b78e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f49d75a5b49d49cfb097837fe4d1b78e.jpg", "file_size": 16823, "is_delete": false, "file_type": 1, "original_file_name": "CGH4-23G173#下身西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49d75a5b49d49cfb097837fe4d1b78e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49d75a5b49d49cfb097837fe4d1b78e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f49d75a5b49d49cfb097837fe4d1b78e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f49d75a5b49d49cfb097837fe4d1b78e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f49d75a5b49d49cfb097837fe4d1b78e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrMBgoyloU18elHmcntUQ352CYA=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.642009+00 2025-12-09 10:15:50.642015+00 19177 DLDR023FWE#-K SPMX-20240815314410 \N \N \N 1 \N [{"file_id": "ba9a8bee-21b3-48dc-ad0e-7e6d065fb74a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "133a3fd92b71446184b43bda93cf34a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "133a3fd92b71446184b43bda93cf34a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "133a3fd92b71446184b43bda93cf34a6.jpg", "file_size": 19938, "is_delete": false, "file_type": 1, "original_file_name": "DLDR023FWE#-K.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133a3fd92b71446184b43bda93cf34a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133a3fd92b71446184b43bda93cf34a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/133a3fd92b71446184b43bda93cf34a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/133a3fd92b71446184b43bda93cf34a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/133a3fd92b71446184b43bda93cf34a6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7b7QYk8zZ9ShtlJQs1ezS2K4AMQ=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.645375+00 2025-12-09 10:15:50.645381+00 19178 CGH5028#WJC22 SPMX-20240815314416 \N \N \N 1 \N [{"file_id": "982ba4d8-7390-49fc-9479-a10c76da4477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58819588e8eb4fd4893b725e6b89da3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58819588e8eb4fd4893b725e6b89da3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58819588e8eb4fd4893b725e6b89da3d.jpg", "file_size": 12105, "is_delete": false, "file_type": 1, "original_file_name": "CGH5028#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58819588e8eb4fd4893b725e6b89da3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58819588e8eb4fd4893b725e6b89da3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58819588e8eb4fd4893b725e6b89da3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58819588e8eb4fd4893b725e6b89da3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58819588e8eb4fd4893b725e6b89da3d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mfgQIYCaFvkFEQ2Z06f0DtXui2I=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.648515+00 2025-12-09 10:15:50.648521+00 19179 0016-1#WJC22 SPMX-20240815314418 \N \N \N 1 \N [{"file_id": "6e89f102-aefe-48a1-bbf7-23130cc1ca43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fc21f5917aa42658656fbc801337dde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fc21f5917aa42658656fbc801337dde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fc21f5917aa42658656fbc801337dde.jpg", "file_size": 21270, "is_delete": false, "file_type": 1, "original_file_name": "0016-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc21f5917aa42658656fbc801337dde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc21f5917aa42658656fbc801337dde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fc21f5917aa42658656fbc801337dde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fc21f5917aa42658656fbc801337dde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fc21f5917aa42658656fbc801337dde.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b54eCjOY0soJJErJtGv4QUOp6vk=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.651603+00 2025-12-09 10:15:50.65161+00 19180 1231-49FWF#中童袖领匹布 SPMX-20240815314415 \N \N \N 1 \N [{"file_id": "9b2c7ead-8fb3-4e20-b12b-d0a4e11a29d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e052781d30f4cfabfa41227b83ebaad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e052781d30f4cfabfa41227b83ebaad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e052781d30f4cfabfa41227b83ebaad.jpg", "file_size": 10380, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e052781d30f4cfabfa41227b83ebaad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e052781d30f4cfabfa41227b83ebaad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e052781d30f4cfabfa41227b83ebaad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e052781d30f4cfabfa41227b83ebaad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e052781d30f4cfabfa41227b83ebaad.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DxAlwgLx5A9HoGSHXl3SqsrtMGg=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.654887+00 2025-12-09 10:15:50.654894+00 19181 8776#枣红 SPMX-20240815314414 \N \N \N 1 \N [{"file_id": "058d44e7-4bfe-4f11-9f70-66a165a31e69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b9a6fb1b4ed419fa1450a9d05d6f573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b9a6fb1b4ed419fa1450a9d05d6f573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b9a6fb1b4ed419fa1450a9d05d6f573.jpg", "file_size": 14234, "is_delete": false, "file_type": 1, "original_file_name": "8776#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9a6fb1b4ed419fa1450a9d05d6f573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9a6fb1b4ed419fa1450a9d05d6f573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b9a6fb1b4ed419fa1450a9d05d6f573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b9a6fb1b4ed419fa1450a9d05d6f573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b9a6fb1b4ed419fa1450a9d05d6f573.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z1deezyzDsJxOmHsbL0Nb-nOKqk=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.657998+00 2025-12-09 10:15:50.658005+00 19182 23529FWF#黄花正身 SPMX-20240815314412 \N \N \N 1 \N [{"file_id": "9e0dc031-6d2b-4eb6-9f86-304a9fa166e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10427dc7307a40a18eeb7d522e1b885f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10427dc7307a40a18eeb7d522e1b885f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10427dc7307a40a18eeb7d522e1b885f.jpg", "file_size": 8667, "is_delete": false, "file_type": 1, "original_file_name": "23529FWF#黄花正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10427dc7307a40a18eeb7d522e1b885f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10427dc7307a40a18eeb7d522e1b885f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10427dc7307a40a18eeb7d522e1b885f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10427dc7307a40a18eeb7d522e1b885f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10427dc7307a40a18eeb7d522e1b885f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcNEYLzEtEkbsABWXTC19ra8Xmo=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.661172+00 2025-12-09 10:15:50.661178+00 19183 HXF0008-12#粉色M SPMX-20240815314419 \N \N \N 1 \N [{"file_id": "bc8f17d9-a4f7-400e-b733-b3c689a4921f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "739f791e302147ff9105ac6e9c542a42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "739f791e302147ff9105ac6e9c542a42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "739f791e302147ff9105ac6e9c542a42.jpg", "file_size": 17858, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/739f791e302147ff9105ac6e9c542a42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/739f791e302147ff9105ac6e9c542a42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/739f791e302147ff9105ac6e9c542a42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/739f791e302147ff9105ac6e9c542a42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/739f791e302147ff9105ac6e9c542a42.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFR9moCgq3AahJCwsfjSpgllKuo=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.664371+00 2025-12-09 10:15:50.664377+00 19184 DLFS31210#墨绿 SPMX-20240815314420 \N \N \N 1 \N [{"file_id": "73f62e3d-bb14-4ec0-a72b-b54f98a77cf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0788c04607294dff84b44eb07e576dcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0788c04607294dff84b44eb07e576dcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0788c04607294dff84b44eb07e576dcc.jpg", "file_size": 11323, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0788c04607294dff84b44eb07e576dcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0788c04607294dff84b44eb07e576dcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0788c04607294dff84b44eb07e576dcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0788c04607294dff84b44eb07e576dcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0788c04607294dff84b44eb07e576dcc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HsR-Vb_5C9zA_uYwDBR15vdV_bI=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.667493+00 2025-12-09 10:15:50.667499+00 19185 LZ1398#上身4号色 SPMX-20240815314417 \N \N \N 1 \N [{"file_id": "89227583-9b43-4ab3-985d-dfb30308ff69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96d9807ca6d54746b13a416d3653f3c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96d9807ca6d54746b13a416d3653f3c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96d9807ca6d54746b13a416d3653f3c4.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "LZ1398#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d9807ca6d54746b13a416d3653f3c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d9807ca6d54746b13a416d3653f3c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d9807ca6d54746b13a416d3653f3c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96d9807ca6d54746b13a416d3653f3c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96d9807ca6d54746b13a416d3653f3c4.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQICFq3HAoFdYarzJv2PAevusXM=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.670638+00 2025-12-09 10:15:50.670645+00 19186 JXY-1084#B3#RC23 SPMX-20240815314421 \N \N \N 1 \N [{"file_id": "3fa17f50-59c5-4c67-8060-a046c29b8bbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "338368867b2f48539ddb1dd7235914ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "338368867b2f48539ddb1dd7235914ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "338368867b2f48539ddb1dd7235914ce.jpg", "file_size": 63525, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338368867b2f48539ddb1dd7235914ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338368867b2f48539ddb1dd7235914ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338368867b2f48539ddb1dd7235914ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/338368867b2f48539ddb1dd7235914ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/338368867b2f48539ddb1dd7235914ce.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QiuqpbakYwOMdcHLC-TvMk9PFlI=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.673692+00 2025-12-09 10:15:50.673699+00 19187 LJH2032#红色 SPMX-20240815314413 \N \N \N 1 \N [{"file_id": "7b819263-8356-4221-8d8c-f34dbc25a419", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5321fab961b94846bdf28087a312b339.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5321fab961b94846bdf28087a312b339.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5321fab961b94846bdf28087a312b339.jpg", "file_size": 48445, "is_delete": false, "file_type": 1, "original_file_name": "LJH2032#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5321fab961b94846bdf28087a312b339.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5321fab961b94846bdf28087a312b339.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5321fab961b94846bdf28087a312b339.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5321fab961b94846bdf28087a312b339.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5321fab961b94846bdf28087a312b339.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIfuksnSWzwYX4BFW3rBqEmPADQ=", "createTime": "2024-08-15 15:06:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.676707+00 2025-12-09 10:15:50.676713+00 19188 FX0003-83#蓝色 SPMX-20240815314422 \N \N \N 1 \N [{"file_id": "a675982e-01eb-4fe9-8093-cc90d45daaa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4566f883b6aa42f3a0929bbc0b7e7598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4566f883b6aa42f3a0929bbc0b7e7598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4566f883b6aa42f3a0929bbc0b7e7598.jpg", "file_size": 23904, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-83#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566f883b6aa42f3a0929bbc0b7e7598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566f883b6aa42f3a0929bbc0b7e7598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4566f883b6aa42f3a0929bbc0b7e7598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4566f883b6aa42f3a0929bbc0b7e7598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4566f883b6aa42f3a0929bbc0b7e7598.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqwHO1s7uJcKbO0rzYmsR7WDVVw=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.679794+00 2025-12-09 10:15:50.679799+00 19189 1231-49FWF#小童6码 SPMX-20240815314425 \N \N \N 1 \N [{"file_id": "8a814e1f-dcc1-4541-a58a-ba7dc647f26f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba4a31c56e7f4b0996a9e1d0e3a00478.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba4a31c56e7f4b0996a9e1d0e3a00478.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba4a31c56e7f4b0996a9e1d0e3a00478.jpg", "file_size": 19521, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4a31c56e7f4b0996a9e1d0e3a00478.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4a31c56e7f4b0996a9e1d0e3a00478.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba4a31c56e7f4b0996a9e1d0e3a00478.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba4a31c56e7f4b0996a9e1d0e3a00478.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba4a31c56e7f4b0996a9e1d0e3a00478.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ejlESFywM153SCHfkVGWGmILaw=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.682738+00 2025-12-09 10:15:50.682744+00 19190 LZ1398#上身5号色 SPMX-20240815314426 \N \N \N 1 \N [{"file_id": "8794f250-09fa-41f1-bf8d-f01aac4f4e99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d90c2da2874c473cb35c267fd8ba0ec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d90c2da2874c473cb35c267fd8ba0ec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d90c2da2874c473cb35c267fd8ba0ec4.jpg", "file_size": 21401, "is_delete": false, "file_type": 1, "original_file_name": "LZ1398#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d90c2da2874c473cb35c267fd8ba0ec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d90c2da2874c473cb35c267fd8ba0ec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d90c2da2874c473cb35c267fd8ba0ec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d90c2da2874c473cb35c267fd8ba0ec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d90c2da2874c473cb35c267fd8ba0ec4.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYSP7oioXc2_gjhebnOAPx600SE=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.686019+00 2025-12-09 10:15:50.686026+00 19191 LJH2032#绿 SPMX-20240815314427 \N \N \N 1 \N [{"file_id": "352a66d3-82dc-4f9b-9437-3e9f8876cb5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5ec1151c9544d2ca9949ab382723613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5ec1151c9544d2ca9949ab382723613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5ec1151c9544d2ca9949ab382723613.jpg", "file_size": 46904, "is_delete": false, "file_type": 1, "original_file_name": "LJH2032#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec1151c9544d2ca9949ab382723613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec1151c9544d2ca9949ab382723613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ec1151c9544d2ca9949ab382723613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5ec1151c9544d2ca9949ab382723613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5ec1151c9544d2ca9949ab382723613.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qtzh8zwpJcwnZES0xjdLQlqrj2A=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.689199+00 2025-12-09 10:15:50.689205+00 19192 23529FWF#黄花配色 SPMX-20240815314423 \N \N \N 1 \N [{"file_id": "aac0d60f-f101-468e-b6f3-f118f34dcb57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "687aec76316249c489b95dcf02ba5d26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "687aec76316249c489b95dcf02ba5d26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "687aec76316249c489b95dcf02ba5d26.jpg", "file_size": 9616, "is_delete": false, "file_type": 1, "original_file_name": "23529FWF#黄花配色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687aec76316249c489b95dcf02ba5d26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687aec76316249c489b95dcf02ba5d26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687aec76316249c489b95dcf02ba5d26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/687aec76316249c489b95dcf02ba5d26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/687aec76316249c489b95dcf02ba5d26.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0SV4BqSEnv3XLtSPh7tZkZ6nko=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.692386+00 2025-12-09 10:15:50.692393+00 19193 CGH5032#原版色 SPMX-20240815314428 \N \N \N 1 \N [{"file_id": "380bde5b-3248-4d81-bb71-5c71b905897b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e3c9bbc6853403db4d6131ed30dcfe1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e3c9bbc6853403db4d6131ed30dcfe1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e3c9bbc6853403db4d6131ed30dcfe1.jpg", "file_size": 14495, "is_delete": false, "file_type": 1, "original_file_name": "CGH5032#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3c9bbc6853403db4d6131ed30dcfe1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3c9bbc6853403db4d6131ed30dcfe1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e3c9bbc6853403db4d6131ed30dcfe1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e3c9bbc6853403db4d6131ed30dcfe1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e3c9bbc6853403db4d6131ed30dcfe1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vM0eNXaq9BUPohRMALg3QhlL_aM=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.695588+00 2025-12-09 10:15:50.695595+00 19194 JXY-1084#B4#RC23 SPMX-20240815314431 \N \N \N 1 \N [{"file_id": "899d9b88-6f92-4b44-81d9-255cfc02b47e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58e525a44d8d4e7ea68a024aa0fe623e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58e525a44d8d4e7ea68a024aa0fe623e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58e525a44d8d4e7ea68a024aa0fe623e.jpg", "file_size": 28573, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B4#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e525a44d8d4e7ea68a024aa0fe623e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e525a44d8d4e7ea68a024aa0fe623e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58e525a44d8d4e7ea68a024aa0fe623e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58e525a44d8d4e7ea68a024aa0fe623e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58e525a44d8d4e7ea68a024aa0fe623e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQws9FkRnx0cF7Du-F9zCGeZt1o=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.6992+00 2025-12-09 10:15:50.699206+00 19195 FX0003-83#黑色 SPMX-20240815314433 \N \N \N 1 \N [{"file_id": "3607063a-d472-41a1-af94-64702381e717", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b5911aedf5e483b99f962e751ca52e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b5911aedf5e483b99f962e751ca52e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b5911aedf5e483b99f962e751ca52e4.jpg", "file_size": 21224, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-83#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5911aedf5e483b99f962e751ca52e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5911aedf5e483b99f962e751ca52e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5911aedf5e483b99f962e751ca52e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b5911aedf5e483b99f962e751ca52e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b5911aedf5e483b99f962e751ca52e4.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o9kOCDJlhmh26pZ2dnhGR6hMY2U=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.702617+00 2025-12-09 10:15:50.702624+00 19196 DLFS31210#大红 SPMX-20240815314432 \N \N \N 1 \N [{"file_id": "0e2713be-a0c7-49dc-a521-13095f392148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5abf929b3d92404caa014d3505d575bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5abf929b3d92404caa014d3505d575bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5abf929b3d92404caa014d3505d575bf.jpg", "file_size": 9413, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abf929b3d92404caa014d3505d575bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abf929b3d92404caa014d3505d575bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5abf929b3d92404caa014d3505d575bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5abf929b3d92404caa014d3505d575bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5abf929b3d92404caa014d3505d575bf.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktKrYfI9OQIk9yDs3oZmyeTo4cM=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.705983+00 2025-12-09 10:15:50.705989+00 19197 HXF0008-12#粉色XL SPMX-20240815314429 \N \N \N 1 \N [{"file_id": "40af70dd-cffd-4b29-b70b-47cc31cbbab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6a78b88e5fe4022a16641691dce3d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6a78b88e5fe4022a16641691dce3d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6a78b88e5fe4022a16641691dce3d8f.jpg", "file_size": 16741, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a78b88e5fe4022a16641691dce3d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a78b88e5fe4022a16641691dce3d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a78b88e5fe4022a16641691dce3d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6a78b88e5fe4022a16641691dce3d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6a78b88e5fe4022a16641691dce3d8f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MV4kWcGgqztzCjwL_cJRs8dwj_k=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.709363+00 2025-12-09 10:15:50.709369+00 19198 8776#枣红净色 SPMX-20240815314424 \N \N \N 1 \N [{"file_id": "3a89a525-dc21-480f-b014-0f75a3b312b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1735a8d6f044e1cb321234a5c7bf52a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1735a8d6f044e1cb321234a5c7bf52a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1735a8d6f044e1cb321234a5c7bf52a.jpg", "file_size": 6137, "is_delete": false, "file_type": 1, "original_file_name": "8776#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1735a8d6f044e1cb321234a5c7bf52a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1735a8d6f044e1cb321234a5c7bf52a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1735a8d6f044e1cb321234a5c7bf52a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1735a8d6f044e1cb321234a5c7bf52a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1735a8d6f044e1cb321234a5c7bf52a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzdXDOZZGCU0VQ-GdnOBFamF3Zo=", "createTime": "2024-08-15 15:06:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.712747+00 2025-12-09 10:15:50.712758+00 19199 0016-1FWF#V5曲线 SPMX-20240815314430 \N \N \N 1 \N [{"file_id": "4087f348-2c72-43e1-9fb2-080c65cab3dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27f62c200dd34dfc9b6ef8dd1dc22647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27f62c200dd34dfc9b6ef8dd1dc22647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27f62c200dd34dfc9b6ef8dd1dc22647.jpg", "file_size": 15508, "is_delete": false, "file_type": 1, "original_file_name": "0016-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f62c200dd34dfc9b6ef8dd1dc22647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f62c200dd34dfc9b6ef8dd1dc22647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27f62c200dd34dfc9b6ef8dd1dc22647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27f62c200dd34dfc9b6ef8dd1dc22647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27f62c200dd34dfc9b6ef8dd1dc22647.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QgBVALlwP-Z8IpXnQoglTI-jT7c=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.716103+00 2025-12-09 10:15:50.71611+00 19200 8776#蓝 SPMX-20240815314434 \N \N \N 1 \N [{"file_id": "e7114349-d5f2-43e3-8fc7-28bb4c3c4d01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1252ca7c86b47eeadff9f0faac59d62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1252ca7c86b47eeadff9f0faac59d62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1252ca7c86b47eeadff9f0faac59d62.jpg", "file_size": 14359, "is_delete": false, "file_type": 1, "original_file_name": "8776#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1252ca7c86b47eeadff9f0faac59d62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1252ca7c86b47eeadff9f0faac59d62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1252ca7c86b47eeadff9f0faac59d62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1252ca7c86b47eeadff9f0faac59d62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1252ca7c86b47eeadff9f0faac59d62.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kahBM5KQ6yoXR2I3px9H3vg5Pc8=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.71945+00 2025-12-09 10:15:50.719456+00 19201 1231-49FWF#小童8码+4码 SPMX-20240815314435 \N \N \N 1 \N [{"file_id": "d92e5a20-e36d-4b29-84e5-73524bb3163f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f0b4a515c634136b930aaf5bd546e61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f0b4a515c634136b930aaf5bd546e61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f0b4a515c634136b930aaf5bd546e61.jpg", "file_size": 19881, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0b4a515c634136b930aaf5bd546e61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0b4a515c634136b930aaf5bd546e61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f0b4a515c634136b930aaf5bd546e61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f0b4a515c634136b930aaf5bd546e61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f0b4a515c634136b930aaf5bd546e61.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E5QFyKHcfJzBfUEGN9RShn5QU_g=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.722771+00 2025-12-09 10:15:50.722777+00 19202 236#-定位裁-卡其 SPMX-20240815314437 \N \N \N 1 \N [{"file_id": "c7363a91-f175-4403-bebe-2b7d1fa2634a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d8d223fc8cd4bbbbf2043eafa3d143b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d8d223fc8cd4bbbbf2043eafa3d143b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d8d223fc8cd4bbbbf2043eafa3d143b.jpg", "file_size": 78898, "is_delete": false, "file_type": 1, "original_file_name": "236#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8d223fc8cd4bbbbf2043eafa3d143b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8d223fc8cd4bbbbf2043eafa3d143b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d8d223fc8cd4bbbbf2043eafa3d143b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d8d223fc8cd4bbbbf2043eafa3d143b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d8d223fc8cd4bbbbf2043eafa3d143b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wz9KqL0PoKiEKN362ugUXlSgR0c=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.726056+00 2025-12-09 10:15:50.726062+00 19203 LZ1399#上身1号色 SPMX-20240815314436 \N \N \N 1 \N [{"file_id": "894ead78-9dd3-4632-b14f-f6182ab414a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3d7f69483d04eadbb7e89475c715f9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3d7f69483d04eadbb7e89475c715f9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3d7f69483d04eadbb7e89475c715f9a.jpg", "file_size": 19666, "is_delete": false, "file_type": 1, "original_file_name": "LZ1399#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3d7f69483d04eadbb7e89475c715f9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3d7f69483d04eadbb7e89475c715f9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3d7f69483d04eadbb7e89475c715f9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3d7f69483d04eadbb7e89475c715f9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3d7f69483d04eadbb7e89475c715f9a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MbuB0AJqHbZt_0GVwMkqu96ug8Y=", "createTime": "2024-08-15 15:06:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.729417+00 2025-12-09 10:15:50.729423+00 19204 HXF0008-12#粉色批布 SPMX-20240815314441 \N \N \N 1 \N [{"file_id": "c373ccd7-a171-4739-9675-ff1d3c58c77d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46fcc75fd51a4b8183110c29fd72b60e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46fcc75fd51a4b8183110c29fd72b60e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46fcc75fd51a4b8183110c29fd72b60e.jpg", "file_size": 17866, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-12#粉色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fcc75fd51a4b8183110c29fd72b60e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fcc75fd51a4b8183110c29fd72b60e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46fcc75fd51a4b8183110c29fd72b60e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46fcc75fd51a4b8183110c29fd72b60e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46fcc75fd51a4b8183110c29fd72b60e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aHA76cShiNUNBTc3z5KvAQ47_Cs=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.733173+00 2025-12-09 10:15:50.733181+00 19205 CGH5032#红色 SPMX-20240815314440 \N \N \N 1 \N [{"file_id": "b6cbc682-85a1-473d-9853-c91e2e712909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6841b3fb8e6e4a3b8138df53364a564b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6841b3fb8e6e4a3b8138df53364a564b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6841b3fb8e6e4a3b8138df53364a564b.jpg", "file_size": 14467, "is_delete": false, "file_type": 1, "original_file_name": "CGH5032#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6841b3fb8e6e4a3b8138df53364a564b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6841b3fb8e6e4a3b8138df53364a564b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6841b3fb8e6e4a3b8138df53364a564b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6841b3fb8e6e4a3b8138df53364a564b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6841b3fb8e6e4a3b8138df53364a564b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BeGN-v8mraqBiwKYcwvLYrd1TtY=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.73692+00 2025-12-09 10:15:50.736927+00 19206 LJH2032#绿色 SPMX-20240815314438 \N \N \N 1 \N [{"file_id": "e32cf01a-39c4-433b-9fca-ac0c13717cd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "306ec7d31383428c9ced6beb54d91b6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "306ec7d31383428c9ced6beb54d91b6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "306ec7d31383428c9ced6beb54d91b6a.jpg", "file_size": 46904, "is_delete": false, "file_type": 1, "original_file_name": "LJH2032#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306ec7d31383428c9ced6beb54d91b6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306ec7d31383428c9ced6beb54d91b6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/306ec7d31383428c9ced6beb54d91b6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/306ec7d31383428c9ced6beb54d91b6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/306ec7d31383428c9ced6beb54d91b6a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eLyDu78hsNeBFey-Ypj3DIG8-Fg=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.740321+00 2025-12-09 10:15:50.740327+00 19207 0016-2#WJC22 SPMX-20240815314439 \N \N \N 1 \N [{"file_id": "1c127b13-2942-4883-bf4f-817351bd9e28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68714c7b0d594df2854011a9ca2d54d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68714c7b0d594df2854011a9ca2d54d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68714c7b0d594df2854011a9ca2d54d6.jpg", "file_size": 10333, "is_delete": false, "file_type": 1, "original_file_name": "0016-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68714c7b0d594df2854011a9ca2d54d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68714c7b0d594df2854011a9ca2d54d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68714c7b0d594df2854011a9ca2d54d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68714c7b0d594df2854011a9ca2d54d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68714c7b0d594df2854011a9ca2d54d6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnMkvJ9-jkBnoJTO1OA8F9nF_8w=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.743639+00 2025-12-09 10:15:50.743645+00 19208 JXY-1084#B5#RC23 SPMX-20240815314442 \N \N \N 1 \N [{"file_id": "6043fdf2-8f29-4840-8330-5460ff7ad8cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32b573e7e86e4e99b26e81a8140f6591.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32b573e7e86e4e99b26e81a8140f6591.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32b573e7e86e4e99b26e81a8140f6591.jpg", "file_size": 38374, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B5#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b573e7e86e4e99b26e81a8140f6591.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b573e7e86e4e99b26e81a8140f6591.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b573e7e86e4e99b26e81a8140f6591.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32b573e7e86e4e99b26e81a8140f6591.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32b573e7e86e4e99b26e81a8140f6591.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcPCQ5avc3uO37JWv80h9tloubc=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.747024+00 2025-12-09 10:15:50.747035+00 19209 236#-定位裁-橙色 SPMX-20240815314448 \N \N \N 1 \N [{"file_id": "aa9ab150-c862-40d1-ae0d-9ff440805099", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d583012f1b804db0bdff4634befe8cf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d583012f1b804db0bdff4634befe8cf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d583012f1b804db0bdff4634befe8cf5.jpg", "file_size": 83938, "is_delete": false, "file_type": 1, "original_file_name": "236#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d583012f1b804db0bdff4634befe8cf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d583012f1b804db0bdff4634befe8cf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d583012f1b804db0bdff4634befe8cf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d583012f1b804db0bdff4634befe8cf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d583012f1b804db0bdff4634befe8cf5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EAL2cTQi1xjq0W_4NANvxAEtFRo=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.750292+00 2025-12-09 10:15:50.750297+00 19210 FX0003-84#RC23 SPMX-20240815314447 \N \N \N 1 \N [{"file_id": "9aede7d9-82fa-4c42-9882-9fa2ea3de171", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg", "file_size": 41614, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-84#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae11bc1d7e24ddcaca4a7b5b46d8c45.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZvBnd3ZKPjigEBZLFYF3eNcrr5U=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.75349+00 2025-12-09 10:15:50.753496+00 19211 LJH2032#黑色 SPMX-20240815314449 \N \N \N 1 \N [{"file_id": "ecfe6eb2-61ce-462c-b716-ff6e9b396b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg", "file_size": 43649, "is_delete": false, "file_type": 1, "original_file_name": "LJH2032#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2e4f7b6de6d4c2386a9f2881af6e0bc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rz04G328KTnCdGChh8GU6TKSggA=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.756783+00 2025-12-09 10:15:50.75679+00 19212 1231-49FWF#小童袖领匹布 SPMX-20240815314446 \N \N \N 1 \N [{"file_id": "0954395d-b9c2-4ecc-88c0-c9c1235c5b74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b76785eb15c04d788b725a7f895cd1ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b76785eb15c04d788b725a7f895cd1ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b76785eb15c04d788b725a7f895cd1ac.jpg", "file_size": 8619, "is_delete": false, "file_type": 1, "original_file_name": "1231-49FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b76785eb15c04d788b725a7f895cd1ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b76785eb15c04d788b725a7f895cd1ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b76785eb15c04d788b725a7f895cd1ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b76785eb15c04d788b725a7f895cd1ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b76785eb15c04d788b725a7f895cd1ac.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fe5-h3hDwE8Zf_pAAY3jHSaMbuk=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.760618+00 2025-12-09 10:15:50.760624+00 19213 CGH5032#蓝色 SPMX-20240815314450 \N \N \N 1 \N [{"file_id": "e59be823-789c-4cb8-840e-de4adb7f8a35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f212f202e2a245b187efbe538fe15c56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f212f202e2a245b187efbe538fe15c56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f212f202e2a245b187efbe538fe15c56.jpg", "file_size": 14827, "is_delete": false, "file_type": 1, "original_file_name": "CGH5032#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f212f202e2a245b187efbe538fe15c56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f212f202e2a245b187efbe538fe15c56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f212f202e2a245b187efbe538fe15c56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f212f202e2a245b187efbe538fe15c56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f212f202e2a245b187efbe538fe15c56.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dpgj-_Glz8jeRrZgvJ5fshHCF0=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.764205+00 2025-12-09 10:15:50.764212+00 19214 0017-1FWF#V5曲线 SPMX-20240815314451 \N \N \N 1 \N [{"file_id": "a7ab0671-04fa-4c4c-b9c2-28f1606ac5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg", "file_size": 8310, "is_delete": false, "file_type": 1, "original_file_name": "0017-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98a1ece0c9cc4f2bb31dca6a48f5ddbc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GnA1t4D5ti80mHwlJ1zY9fXhOeo=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.767682+00 2025-12-09 10:15:50.767688+00 19215 HXF0008-14#卡其色 SPMX-20240815314452 \N \N \N 1 \N [{"file_id": "07a5d863-66ba-487c-a7e5-2cf51892ff35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48229433174044888c394811ce7b508c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48229433174044888c394811ce7b508c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48229433174044888c394811ce7b508c.jpg", "file_size": 12069, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-14#卡其色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48229433174044888c394811ce7b508c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48229433174044888c394811ce7b508c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48229433174044888c394811ce7b508c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48229433174044888c394811ce7b508c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48229433174044888c394811ce7b508c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U7pEJUk_0SVfoMyB00BZ_Vuom-4=", "createTime": "2024-08-15 15:06:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.770874+00 2025-12-09 10:15:50.77088+00 19216 8776#蓝净色 SPMX-20240815314443 \N \N \N 1 \N [{"file_id": "86ad548f-c625-40cb-ab02-db43f951bdca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4505547fac24af0add11fb7a67b97ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4505547fac24af0add11fb7a67b97ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4505547fac24af0add11fb7a67b97ab.jpg", "file_size": 6868, "is_delete": false, "file_type": 1, "original_file_name": "8776#蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4505547fac24af0add11fb7a67b97ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4505547fac24af0add11fb7a67b97ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4505547fac24af0add11fb7a67b97ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4505547fac24af0add11fb7a67b97ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4505547fac24af0add11fb7a67b97ab.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWuqEAE93qgnN3ifYU9BIKzDoks=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.774093+00 2025-12-09 10:15:50.774099+00 19217 DLFS31210#彩兰 SPMX-20240815314444 \N \N \N 1 \N [{"file_id": "a80536fc-7b11-47a8-a280-1129da50f393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "723971019db64aaa9e9e198fdb032ae2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "723971019db64aaa9e9e198fdb032ae2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "723971019db64aaa9e9e198fdb032ae2.jpg", "file_size": 11136, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723971019db64aaa9e9e198fdb032ae2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723971019db64aaa9e9e198fdb032ae2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/723971019db64aaa9e9e198fdb032ae2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/723971019db64aaa9e9e198fdb032ae2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/723971019db64aaa9e9e198fdb032ae2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zht9WDBKOc0beOJUDfhCF_qYxIo=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.777201+00 2025-12-09 10:15:50.777208+00 19218 LZ1399#上身2号色 SPMX-20240815314445 \N \N \N 1 \N [{"file_id": "da1736a2-4275-4752-a6b8-09e8f318dc02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4ebb12f4bfd4372959bd512cb98d6a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4ebb12f4bfd4372959bd512cb98d6a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4ebb12f4bfd4372959bd512cb98d6a8.jpg", "file_size": 20125, "is_delete": false, "file_type": 1, "original_file_name": "LZ1399#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebb12f4bfd4372959bd512cb98d6a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebb12f4bfd4372959bd512cb98d6a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebb12f4bfd4372959bd512cb98d6a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4ebb12f4bfd4372959bd512cb98d6a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4ebb12f4bfd4372959bd512cb98d6a8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrBbJboU6-E0n4QlvyZxNtnu_9Q=", "createTime": "2024-08-15 15:06:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.780247+00 2025-12-09 10:15:50.780253+00 19219 DLFS31210#枣红 SPMX-20240815314453 \N \N \N 1 \N [{"file_id": "b2c985c7-6d03-497b-a3ca-30b98337a07f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f71b82ad75324954b2b4ddfb7d7e99fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f71b82ad75324954b2b4ddfb7d7e99fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f71b82ad75324954b2b4ddfb7d7e99fc.jpg", "file_size": 9815, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71b82ad75324954b2b4ddfb7d7e99fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71b82ad75324954b2b4ddfb7d7e99fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71b82ad75324954b2b4ddfb7d7e99fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f71b82ad75324954b2b4ddfb7d7e99fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f71b82ad75324954b2b4ddfb7d7e99fc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hT8LqugMmQhG4dnjTVMIgEm8R8E=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.783295+00 2025-12-09 10:15:50.783301+00 19220 8776#豆沙 SPMX-20240815314457 \N \N \N 1 \N [{"file_id": "a820711d-939f-4b4d-8833-477de6a4f0b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3f0f8c26077425092b772948eccde9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3f0f8c26077425092b772948eccde9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3f0f8c26077425092b772948eccde9f.jpg", "file_size": 13591, "is_delete": false, "file_type": 1, "original_file_name": "8776#豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f0f8c26077425092b772948eccde9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f0f8c26077425092b772948eccde9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3f0f8c26077425092b772948eccde9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3f0f8c26077425092b772948eccde9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3f0f8c26077425092b772948eccde9f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dKV30_PgyqbL8SoRxunWzRW9gQk=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.786391+00 2025-12-09 10:15:50.786397+00 19221 LZ1399#上身3号色 SPMX-20240815314455 \N \N \N 1 \N [{"file_id": "82eb5b72-d9f2-458c-9e99-d5f158e5fa88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96d40878b8d74fa4a3c59ec27560deac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96d40878b8d74fa4a3c59ec27560deac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96d40878b8d74fa4a3c59ec27560deac.jpg", "file_size": 20540, "is_delete": false, "file_type": 1, "original_file_name": "LZ1399#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d40878b8d74fa4a3c59ec27560deac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d40878b8d74fa4a3c59ec27560deac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d40878b8d74fa4a3c59ec27560deac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96d40878b8d74fa4a3c59ec27560deac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96d40878b8d74fa4a3c59ec27560deac.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7RB0mPuVvrme0xMaS484GmYw3TA=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.789486+00 2025-12-09 10:15:50.789492+00 19222 1231-4FWF#中童12码+10码 SPMX-20240815314456 \N \N \N 1 \N [{"file_id": "cd1ecf55-dbab-482f-afef-703fb49e06e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1c159224eb347bf88b0433cc5aa4b5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1c159224eb347bf88b0433cc5aa4b5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1c159224eb347bf88b0433cc5aa4b5a.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c159224eb347bf88b0433cc5aa4b5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c159224eb347bf88b0433cc5aa4b5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1c159224eb347bf88b0433cc5aa4b5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1c159224eb347bf88b0433cc5aa4b5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1c159224eb347bf88b0433cc5aa4b5a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQ9Om6Cq8s6UkcUOwIbJws1wycA=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.792639+00 2025-12-09 10:15:50.792646+00 19223 8776#豆沙净色 SPMX-20240815314467 \N \N \N 1 \N [{"file_id": "110cf5d3-fc79-41dd-8f7d-7eaaa576bf6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d99d80463c5a43929787e58fb6431cf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d99d80463c5a43929787e58fb6431cf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d99d80463c5a43929787e58fb6431cf7.jpg", "file_size": 5220, "is_delete": false, "file_type": 1, "original_file_name": "8776#豆沙净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99d80463c5a43929787e58fb6431cf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99d80463c5a43929787e58fb6431cf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99d80463c5a43929787e58fb6431cf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d99d80463c5a43929787e58fb6431cf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d99d80463c5a43929787e58fb6431cf7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dyzGM6C4T5Oacps1d1IVba6t_gM=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.795756+00 2025-12-09 10:15:50.795762+00 19224 1231-4FWF#中童14码 SPMX-20240815314468 \N \N \N 1 \N [{"file_id": "90dfdd9e-86df-45a9-8ee3-3a404e7e8744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c802000082741c79cc86be7bc18ce0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c802000082741c79cc86be7bc18ce0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c802000082741c79cc86be7bc18ce0b.jpg", "file_size": 17608, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c802000082741c79cc86be7bc18ce0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c802000082741c79cc86be7bc18ce0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c802000082741c79cc86be7bc18ce0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c802000082741c79cc86be7bc18ce0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c802000082741c79cc86be7bc18ce0b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z03Sj8aauT7S2VQymICsLYiT-DQ=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.798914+00 2025-12-09 10:15:50.79892+00 19225 HXF0008-14#蓝色 SPMX-20240815314460 \N \N \N 1 \N [{"file_id": "6837717b-68c7-44fc-b152-9e00d3e2df1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaa64a8e961d4f089f51c130361e5960.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaa64a8e961d4f089f51c130361e5960.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaa64a8e961d4f089f51c130361e5960.jpg", "file_size": 13433, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-14#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa64a8e961d4f089f51c130361e5960.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa64a8e961d4f089f51c130361e5960.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaa64a8e961d4f089f51c130361e5960.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaa64a8e961d4f089f51c130361e5960.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaa64a8e961d4f089f51c130361e5960.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLHhyXWqakG6yhfmWxMv6Thwa8g=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.802033+00 2025-12-09 10:15:50.802039+00 19226 JXY-1084#B6#RC23 SPMX-20240815314458 \N \N \N 1 \N [{"file_id": "69dc5759-870c-42bd-978c-045e528d7b61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e46ae90b46494aec9dc3d20b847d8c9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e46ae90b46494aec9dc3d20b847d8c9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e46ae90b46494aec9dc3d20b847d8c9c.jpg", "file_size": 56268, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B6#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46ae90b46494aec9dc3d20b847d8c9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46ae90b46494aec9dc3d20b847d8c9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e46ae90b46494aec9dc3d20b847d8c9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e46ae90b46494aec9dc3d20b847d8c9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e46ae90b46494aec9dc3d20b847d8c9c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kitfrXTxEi0_Yi24-Bss9HvOwU0=", "createTime": "2024-08-15 15:06:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.805128+00 2025-12-09 10:15:50.805134+00 19227 CGH5032#黄色 SPMX-20240815314461 \N \N \N 1 \N [{"file_id": "1056a547-652d-4d50-904c-cd80d4367479", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae9b52489b7140f2a9426b4d78bd660d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae9b52489b7140f2a9426b4d78bd660d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae9b52489b7140f2a9426b4d78bd660d.jpg", "file_size": 14442, "is_delete": false, "file_type": 1, "original_file_name": "CGH5032#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b52489b7140f2a9426b4d78bd660d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b52489b7140f2a9426b4d78bd660d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9b52489b7140f2a9426b4d78bd660d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae9b52489b7140f2a9426b4d78bd660d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae9b52489b7140f2a9426b4d78bd660d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t8Jnh6_6QpkOOUV2H_QUkLa8OcA=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.808202+00 2025-12-09 10:15:50.808208+00 19228 236#-定位裁-白色 SPMX-20240815314465 \N \N \N 1 \N [{"file_id": "ed437a8c-b91d-4d5a-8940-8f5ba96df970", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99d1bf96e5624891b0c2eb3008802fc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99d1bf96e5624891b0c2eb3008802fc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99d1bf96e5624891b0c2eb3008802fc4.jpg", "file_size": 74896, "is_delete": false, "file_type": 1, "original_file_name": "236#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d1bf96e5624891b0c2eb3008802fc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d1bf96e5624891b0c2eb3008802fc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d1bf96e5624891b0c2eb3008802fc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99d1bf96e5624891b0c2eb3008802fc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99d1bf96e5624891b0c2eb3008802fc4.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzhGwmnEVU_U3qIGRylDbVbjQH8=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.811357+00 2025-12-09 10:15:50.811363+00 19229 FX0003-85#RC23 SPMX-20240815314464 \N \N \N 1 \N [{"file_id": "2c45a715-8d50-4f4f-a05c-020703ebb29c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "303a94b5a528483a921d28a8d1a51fdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "303a94b5a528483a921d28a8d1a51fdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "303a94b5a528483a921d28a8d1a51fdf.jpg", "file_size": 69556, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-85#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a94b5a528483a921d28a8d1a51fdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a94b5a528483a921d28a8d1a51fdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a94b5a528483a921d28a8d1a51fdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/303a94b5a528483a921d28a8d1a51fdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/303a94b5a528483a921d28a8d1a51fdf.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HBr4BfuVtG_e9O1m9q-zYhNVik0=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.814478+00 2025-12-09 10:15:50.814483+00 19230 0017-2FWF#V5曲线 SPMX-20240815314462 \N \N \N 1 \N [{"file_id": "a1bcb7e4-a4e0-4d2c-b1af-049874fed1bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba6307e6282645e9b29d50f2227f3e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba6307e6282645e9b29d50f2227f3e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba6307e6282645e9b29d50f2227f3e11.jpg", "file_size": 17920, "is_delete": false, "file_type": 1, "original_file_name": "0017-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6307e6282645e9b29d50f2227f3e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6307e6282645e9b29d50f2227f3e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6307e6282645e9b29d50f2227f3e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba6307e6282645e9b29d50f2227f3e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba6307e6282645e9b29d50f2227f3e11.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4Zkyq8OWbhk0USo-3JAj8D3zcY=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.817601+00 2025-12-09 10:15:50.817608+00 19231 LJH2034#白色 SPMX-20240815314470 \N \N \N 1 \N [{"file_id": "151d4502-80d5-44a2-b455-8d6d834fad42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b15e039849bc4030ad86d8c5bbd67218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b15e039849bc4030ad86d8c5bbd67218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b15e039849bc4030ad86d8c5bbd67218.jpg", "file_size": 75442, "is_delete": false, "file_type": 1, "original_file_name": "LJH2034#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15e039849bc4030ad86d8c5bbd67218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15e039849bc4030ad86d8c5bbd67218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15e039849bc4030ad86d8c5bbd67218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b15e039849bc4030ad86d8c5bbd67218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b15e039849bc4030ad86d8c5bbd67218.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2LTCnwds_ByZ0xTEe-LDG96y-Y=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.820757+00 2025-12-09 10:15:50.820763+00 19232 0017-3FWF#V5曲线 SPMX-20240815314471 \N \N \N 1 \N [{"file_id": "7b97cdbe-0d29-4157-a395-9d4187c85b57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a04c0df78bd44cfb9292e3cb51ebc1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a04c0df78bd44cfb9292e3cb51ebc1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a04c0df78bd44cfb9292e3cb51ebc1a.jpg", "file_size": 5598, "is_delete": false, "file_type": 1, "original_file_name": "0017-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a04c0df78bd44cfb9292e3cb51ebc1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a04c0df78bd44cfb9292e3cb51ebc1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a04c0df78bd44cfb9292e3cb51ebc1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a04c0df78bd44cfb9292e3cb51ebc1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a04c0df78bd44cfb9292e3cb51ebc1a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cc0knv9qSjI6PP2Tf9kyXx6Fo_8=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.823927+00 2025-12-09 10:15:50.823932+00 19233 JXY-1084#B7 SPMX-20240815314469 \N \N \N 1 \N [{"file_id": "a6cc5de5-4534-4ab6-96dd-68f936fac0c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49923d4338fd422097976f5a1f2922fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49923d4338fd422097976f5a1f2922fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49923d4338fd422097976f5a1f2922fa.jpg", "file_size": 50907, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B7.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49923d4338fd422097976f5a1f2922fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49923d4338fd422097976f5a1f2922fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49923d4338fd422097976f5a1f2922fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49923d4338fd422097976f5a1f2922fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49923d4338fd422097976f5a1f2922fa.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IOHPH0cLka2U79m2UBrXj5JFndI=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.827021+00 2025-12-09 10:15:50.827029+00 19234 DLFS31210#浅粉 SPMX-20240815314463 \N \N \N 1 \N [{"file_id": "ff2ee1c7-ce05-4605-8b38-1d8420f98d32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef5e2630f924434dabe6cb4b78a01aa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef5e2630f924434dabe6cb4b78a01aa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef5e2630f924434dabe6cb4b78a01aa1.jpg", "file_size": 8968, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e2630f924434dabe6cb4b78a01aa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e2630f924434dabe6cb4b78a01aa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef5e2630f924434dabe6cb4b78a01aa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef5e2630f924434dabe6cb4b78a01aa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef5e2630f924434dabe6cb4b78a01aa1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8I2OTk1bi3Db1D0Jqz4MzsAeS88=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.830079+00 2025-12-09 10:15:50.830085+00 19235 LZ1399#上身4号色 SPMX-20240815314466 \N \N \N 1 \N [{"file_id": "886ac2ef-a1aa-49be-b72f-a5755874aa83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e903fc62ec964697973b7aedc69497f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e903fc62ec964697973b7aedc69497f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e903fc62ec964697973b7aedc69497f7.jpg", "file_size": 20329, "is_delete": false, "file_type": 1, "original_file_name": "LZ1399#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e903fc62ec964697973b7aedc69497f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e903fc62ec964697973b7aedc69497f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e903fc62ec964697973b7aedc69497f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e903fc62ec964697973b7aedc69497f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e903fc62ec964697973b7aedc69497f7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kdBSE6728e_Oj8wHod73Jax0oNE=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.833234+00 2025-12-09 10:15:50.833241+00 19236 LJH2033#天兰 SPMX-20240815314459 \N \N \N 1 \N [{"file_id": "a96a1e0e-1804-4df9-ab42-65414ab969c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66eae2d490014578b661f825625008c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66eae2d490014578b661f825625008c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66eae2d490014578b661f825625008c9.jpg", "file_size": 66189, "is_delete": false, "file_type": 1, "original_file_name": "LJH2033#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66eae2d490014578b661f825625008c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66eae2d490014578b661f825625008c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66eae2d490014578b661f825625008c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66eae2d490014578b661f825625008c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66eae2d490014578b661f825625008c9.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dI__-Pdc51l5EI10Wzzzsd1Jqk=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.836382+00 2025-12-09 10:15:50.836388+00 19237 CGH8747#原版色 SPMX-20240815314472 \N \N \N 1 \N [{"file_id": "07c18d23-e061-4962-9cf1-dd80402d89c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f874ed4f576a40a1bdb96812f4f70fc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f874ed4f576a40a1bdb96812f4f70fc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f874ed4f576a40a1bdb96812f4f70fc2.jpg", "file_size": 26394, "is_delete": false, "file_type": 1, "original_file_name": "CGH8747#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f874ed4f576a40a1bdb96812f4f70fc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f874ed4f576a40a1bdb96812f4f70fc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f874ed4f576a40a1bdb96812f4f70fc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f874ed4f576a40a1bdb96812f4f70fc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f874ed4f576a40a1bdb96812f4f70fc2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YgjqXU3n6yPwEZp-xpcvJMxkHbs=", "createTime": "2024-08-15 15:06:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.839624+00 2025-12-09 10:15:50.83963+00 19238 DLFS31210#草绿 SPMX-20240815314477 \N \N \N 1 \N [{"file_id": "6a349878-4655-4c6e-a423-839c91d5dfce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e94f5c1ecfc8494e80c89adcc258bd5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e94f5c1ecfc8494e80c89adcc258bd5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e94f5c1ecfc8494e80c89adcc258bd5d.jpg", "file_size": 9979, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e94f5c1ecfc8494e80c89adcc258bd5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e94f5c1ecfc8494e80c89adcc258bd5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e94f5c1ecfc8494e80c89adcc258bd5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e94f5c1ecfc8494e80c89adcc258bd5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e94f5c1ecfc8494e80c89adcc258bd5d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KPU0quZmIcZFmLvN6B_OXu0ypLY=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.842852+00 2025-12-09 10:15:50.842858+00 19239 DLFS31210#蓝绿 SPMX-20240815314486 \N \N \N 1 \N [{"file_id": "8527cedf-a5b4-45ab-a19e-9a3166dfcb85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b393a6bbe994c088b382a9e92a27ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b393a6bbe994c088b382a9e92a27ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b393a6bbe994c088b382a9e92a27ae5.jpg", "file_size": 10908, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b393a6bbe994c088b382a9e92a27ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b393a6bbe994c088b382a9e92a27ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b393a6bbe994c088b382a9e92a27ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b393a6bbe994c088b382a9e92a27ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b393a6bbe994c088b382a9e92a27ae5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i1eafkLuJlWxpXDT3fFtkKUOUDY=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.845999+00 2025-12-09 10:15:50.846005+00 19240 LZ1399#上身5号色 SPMX-20240815314475 \N \N \N 1 \N [{"file_id": "bc710ddb-d50f-469a-8a59-bc200797e6f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b25916aebbe44cc7bb0090b5a33b12d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b25916aebbe44cc7bb0090b5a33b12d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b25916aebbe44cc7bb0090b5a33b12d2.jpg", "file_size": 20154, "is_delete": false, "file_type": 1, "original_file_name": "LZ1399#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25916aebbe44cc7bb0090b5a33b12d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25916aebbe44cc7bb0090b5a33b12d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25916aebbe44cc7bb0090b5a33b12d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b25916aebbe44cc7bb0090b5a33b12d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b25916aebbe44cc7bb0090b5a33b12d2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZzzpWmA6rPSTfZ2OW-TmruOG-c=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.849135+00 2025-12-09 10:15:50.849141+00 19241 236#-定位裁-黄色 SPMX-20240815314476 \N \N \N 1 \N [{"file_id": "4f2a4f6f-c507-4187-a980-4e0973755731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53fadcc76a80470090d3992e22c3af10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53fadcc76a80470090d3992e22c3af10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53fadcc76a80470090d3992e22c3af10.jpg", "file_size": 87205, "is_delete": false, "file_type": 1, "original_file_name": "236#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fadcc76a80470090d3992e22c3af10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fadcc76a80470090d3992e22c3af10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53fadcc76a80470090d3992e22c3af10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53fadcc76a80470090d3992e22c3af10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53fadcc76a80470090d3992e22c3af10.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZPQPb_AUBeP5QJ9Dt7dSprErlwI=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.852275+00 2025-12-09 10:15:50.852281+00 19242 0017-4FWF#V5曲线 SPMX-20240815314481 \N \N \N 1 \N [{"file_id": "a94f24e5-f602-4f69-87ad-30dc6d49b27b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ad41e20885b49739f0c85b0ae0a9864.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ad41e20885b49739f0c85b0ae0a9864.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ad41e20885b49739f0c85b0ae0a9864.jpg", "file_size": 9727, "is_delete": false, "file_type": 1, "original_file_name": "0017-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad41e20885b49739f0c85b0ae0a9864.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad41e20885b49739f0c85b0ae0a9864.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ad41e20885b49739f0c85b0ae0a9864.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ad41e20885b49739f0c85b0ae0a9864.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ad41e20885b49739f0c85b0ae0a9864.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tXxH4uKsn4abOBxxqePZdVxe0og=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.855291+00 2025-12-09 10:15:50.855297+00 19243 FX0003-86#RC23 SPMX-20240815314473 \N \N \N 1 \N [{"file_id": "0716187c-4408-4844-8745-f63afe43b612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "226122a4a94c41ee9c6ee326b7920a80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "226122a4a94c41ee9c6ee326b7920a80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "226122a4a94c41ee9c6ee326b7920a80.jpg", "file_size": 29480, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-86#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226122a4a94c41ee9c6ee326b7920a80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226122a4a94c41ee9c6ee326b7920a80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226122a4a94c41ee9c6ee326b7920a80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/226122a4a94c41ee9c6ee326b7920a80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/226122a4a94c41ee9c6ee326b7920a80.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-doe6bqfW5IJd8IJCVEUXeCde3Q=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.858378+00 2025-12-09 10:15:50.858384+00 19244 1231-4FWF#中童袖领匹布 SPMX-20240815314478 \N \N \N 1 \N [{"file_id": "8240fc59-aaaa-4a28-8acf-0ac59c44ad42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8f964e33476432d8d30cc56209decd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8f964e33476432d8d30cc56209decd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8f964e33476432d8d30cc56209decd1.jpg", "file_size": 17867, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f964e33476432d8d30cc56209decd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f964e33476432d8d30cc56209decd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8f964e33476432d8d30cc56209decd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8f964e33476432d8d30cc56209decd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8f964e33476432d8d30cc56209decd1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NBANAy-PAvoeyAsZzQYHSBWhLA4=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.8615+00 2025-12-09 10:15:50.861505+00 19245 FX0003-87#RC23 SPMX-20240815314485 \N \N \N 1 \N [{"file_id": "299a6ca6-cdf7-4dae-85b0-962ac7f8c2b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2db016f360964e54be25e012b36f3088.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2db016f360964e54be25e012b36f3088.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2db016f360964e54be25e012b36f3088.jpg", "file_size": 24195, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-87#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db016f360964e54be25e012b36f3088.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db016f360964e54be25e012b36f3088.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2db016f360964e54be25e012b36f3088.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2db016f360964e54be25e012b36f3088.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2db016f360964e54be25e012b36f3088.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4mwFaT_pDB-bH8qhWhCvEO9ns0=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.864595+00 2025-12-09 10:15:50.864602+00 19246 CGH8747#彩兰 SPMX-20240815314482 \N \N \N 1 \N [{"file_id": "044565c6-8a6e-4070-b525-23a3774da55d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75fa163e8a0c44cc99eb497f89c67c12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75fa163e8a0c44cc99eb497f89c67c12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75fa163e8a0c44cc99eb497f89c67c12.jpg", "file_size": 25247, "is_delete": false, "file_type": 1, "original_file_name": "CGH8747#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa163e8a0c44cc99eb497f89c67c12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa163e8a0c44cc99eb497f89c67c12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75fa163e8a0c44cc99eb497f89c67c12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75fa163e8a0c44cc99eb497f89c67c12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75fa163e8a0c44cc99eb497f89c67c12.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-MXj27IEzGK2JQzbxfjSHHlxuI=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.867728+00 2025-12-09 10:15:50.867735+00 19247 JXY-1084#B8 SPMX-20240815314480 \N \N \N 1 \N [{"file_id": "4a1569f7-9e41-498e-814a-76742968bc6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e497d4ded1c64a3c84b26935b37267b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e497d4ded1c64a3c84b26935b37267b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e497d4ded1c64a3c84b26935b37267b5.jpg", "file_size": 64356, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e497d4ded1c64a3c84b26935b37267b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e497d4ded1c64a3c84b26935b37267b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e497d4ded1c64a3c84b26935b37267b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e497d4ded1c64a3c84b26935b37267b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e497d4ded1c64a3c84b26935b37267b5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iwnuZglejfRRfaaRPB74gbK2zFE=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.87086+00 2025-12-09 10:15:50.870865+00 19248 LJH2034#粉色 SPMX-20240815314487 \N \N \N 1 \N [{"file_id": "51c4b5a3-a447-4976-9218-6464560a3ede", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b2c6823bf814ea08a6c40a39b378d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b2c6823bf814ea08a6c40a39b378d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b2c6823bf814ea08a6c40a39b378d50.jpg", "file_size": 68802, "is_delete": false, "file_type": 1, "original_file_name": "LJH2034#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2c6823bf814ea08a6c40a39b378d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2c6823bf814ea08a6c40a39b378d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2c6823bf814ea08a6c40a39b378d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b2c6823bf814ea08a6c40a39b378d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b2c6823bf814ea08a6c40a39b378d50.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qD6CYSLJXarBapW03MhBBn8qt5Y=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.874034+00 2025-12-09 10:15:50.87404+00 19249 HXF0008-15#咖色 SPMX-20240815314474 \N \N \N 1 \N [{"file_id": "7402b1bc-1ad9-4a88-b8a4-60e9d48d923d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23dfc30f816b428f8d3e83fd0898d334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23dfc30f816b428f8d3e83fd0898d334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23dfc30f816b428f8d3e83fd0898d334.jpg", "file_size": 18626, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-15#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dfc30f816b428f8d3e83fd0898d334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dfc30f816b428f8d3e83fd0898d334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dfc30f816b428f8d3e83fd0898d334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23dfc30f816b428f8d3e83fd0898d334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23dfc30f816b428f8d3e83fd0898d334.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_bRdeY_ugFUFROdy3zx7jxJ3ofI=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.877743+00 2025-12-09 10:15:50.877749+00 19250 HXF0008-15#绿色 SPMX-20240815314483 \N \N \N 1 \N [{"file_id": "63333487-3263-4d3d-9418-8ded2f1c6d6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e38d652ad534260a760d1f28c2110ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e38d652ad534260a760d1f28c2110ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e38d652ad534260a760d1f28c2110ac.jpg", "file_size": 19690, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-15#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e38d652ad534260a760d1f28c2110ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e38d652ad534260a760d1f28c2110ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e38d652ad534260a760d1f28c2110ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e38d652ad534260a760d1f28c2110ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e38d652ad534260a760d1f28c2110ac.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MeJCJcz95CIFeD6KshM4dccSm5w=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.881468+00 2025-12-09 10:15:50.881475+00 19251 236#-定位裁-黑色 SPMX-20240815314484 \N \N \N 1 \N [{"file_id": "e5b6b029-d847-4f93-a09f-3d4edba98de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d77ef095785d418ba7269f1c86d9e2a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d77ef095785d418ba7269f1c86d9e2a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d77ef095785d418ba7269f1c86d9e2a1.jpg", "file_size": 77668, "is_delete": false, "file_type": 1, "original_file_name": "236#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d77ef095785d418ba7269f1c86d9e2a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d77ef095785d418ba7269f1c86d9e2a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d77ef095785d418ba7269f1c86d9e2a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d77ef095785d418ba7269f1c86d9e2a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d77ef095785d418ba7269f1c86d9e2a1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VWI646qi_bbWSBrOzx7ecCjhA5Y=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.88536+00 2025-12-09 10:15:50.885366+00 19252 8787#长款粉色 SPMX-20240815314479 \N \N \N 1 \N [{"file_id": "d11bca0b-ff89-4682-b4b3-baf58ec89cdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eccdd11803464554bbafe3589213f250.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eccdd11803464554bbafe3589213f250.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eccdd11803464554bbafe3589213f250.jpg", "file_size": 16078, "is_delete": false, "file_type": 1, "original_file_name": "8787#长款粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccdd11803464554bbafe3589213f250.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccdd11803464554bbafe3589213f250.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eccdd11803464554bbafe3589213f250.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eccdd11803464554bbafe3589213f250.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eccdd11803464554bbafe3589213f250.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qNSaTmtO6JLp8X5f3YNDezET_J0=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.889187+00 2025-12-09 10:15:50.889193+00 19253 0017-A1#粉花 SPMX-20240815314492 \N \N \N 1 \N [{"file_id": "c393eadf-f634-4de3-ac33-36a34cb04ef1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "963ad9fc21a743c08dc7c4d472becf08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "963ad9fc21a743c08dc7c4d472becf08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "963ad9fc21a743c08dc7c4d472becf08.jpg", "file_size": 14320, "is_delete": false, "file_type": 1, "original_file_name": "0017-A1#粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963ad9fc21a743c08dc7c4d472becf08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963ad9fc21a743c08dc7c4d472becf08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/963ad9fc21a743c08dc7c4d472becf08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/963ad9fc21a743c08dc7c4d472becf08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/963ad9fc21a743c08dc7c4d472becf08.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y8aLsj5pvgE9Q2dj_5pCxR9vPYs=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.893033+00 2025-12-09 10:15:50.89304+00 19254 236#大人原版色 SPMX-20240815314494 \N \N \N 1 \N [{"file_id": "94494112-58aa-4f6f-8c9b-6ec1390ddd30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfad9121d32c400e9606d2e86ac9822b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfad9121d32c400e9606d2e86ac9822b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfad9121d32c400e9606d2e86ac9822b.jpg", "file_size": 19962, "is_delete": false, "file_type": 1, "original_file_name": "236#大人原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfad9121d32c400e9606d2e86ac9822b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfad9121d32c400e9606d2e86ac9822b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfad9121d32c400e9606d2e86ac9822b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfad9121d32c400e9606d2e86ac9822b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfad9121d32c400e9606d2e86ac9822b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-ZjimgxavWZLLmgTGPg0pQqx37k=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.897012+00 2025-12-09 10:15:50.89702+00 19255 LJH2034#绿色 SPMX-20240815314498 \N \N \N 1 \N [{"file_id": "df1a6fbd-0894-4d3a-a8df-4556bcc0744e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4050af479b1f4cae8185b475ad00310c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4050af479b1f4cae8185b475ad00310c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4050af479b1f4cae8185b475ad00310c.jpg", "file_size": 71023, "is_delete": false, "file_type": 1, "original_file_name": "LJH2034#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4050af479b1f4cae8185b475ad00310c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4050af479b1f4cae8185b475ad00310c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4050af479b1f4cae8185b475ad00310c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4050af479b1f4cae8185b475ad00310c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4050af479b1f4cae8185b475ad00310c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwtz-6WMTVFn3_9x5ZOrJX2Y8aQ=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.900864+00 2025-12-09 10:15:50.90087+00 19256 1231-4FWF#小童6码 SPMX-20240815314489 \N \N \N 1 \N [{"file_id": "f5bc91d4-63bd-44d5-82ee-3f59d3cee96f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c3d87c5d57e4ba98095cb223f945f89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c3d87c5d57e4ba98095cb223f945f89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c3d87c5d57e4ba98095cb223f945f89.jpg", "file_size": 21617, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c3d87c5d57e4ba98095cb223f945f89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c3d87c5d57e4ba98095cb223f945f89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c3d87c5d57e4ba98095cb223f945f89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c3d87c5d57e4ba98095cb223f945f89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c3d87c5d57e4ba98095cb223f945f89.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RWhNr0YUKIJ8MZoNB5m5Tq9yzH4=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.904202+00 2025-12-09 10:15:50.904207+00 19257 DLFS31210#黄色 SPMX-20240815314499 \N \N \N 1 \N [{"file_id": "4ba99a74-39da-4629-b5c6-a71c208a900b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ac7e993c2c54c12a9af09b6982883ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ac7e993c2c54c12a9af09b6982883ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ac7e993c2c54c12a9af09b6982883ba.jpg", "file_size": 9032, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31210#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac7e993c2c54c12a9af09b6982883ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac7e993c2c54c12a9af09b6982883ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac7e993c2c54c12a9af09b6982883ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ac7e993c2c54c12a9af09b6982883ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ac7e993c2c54c12a9af09b6982883ba.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:goCbjYmkTwXD0ogIW07gi59CFKg=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.907599+00 2025-12-09 10:15:50.907603+00 19258 1231-4FWF#小童8码+4码 SPMX-20240815314501 \N \N \N 1 \N [{"file_id": "bbb7b3f9-a5e8-4012-b709-0299bf7ae7f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c183fb7deb0451182ff00277d11f5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c183fb7deb0451182ff00277d11f5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c183fb7deb0451182ff00277d11f5f3.jpg", "file_size": 21141, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c183fb7deb0451182ff00277d11f5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c183fb7deb0451182ff00277d11f5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c183fb7deb0451182ff00277d11f5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c183fb7deb0451182ff00277d11f5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c183fb7deb0451182ff00277d11f5f3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qgp1qcC3APgIxcPsNlgzR5Jk93g=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.910951+00 2025-12-09 10:15:50.910956+00 19259 JXY-1084#B9 SPMX-20240815314490 \N \N \N 1 \N [{"file_id": "9dc525ba-bbec-45d0-bee6-e20535db4760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "024ad7cbf60b4f4f813da5de235a31d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "024ad7cbf60b4f4f813da5de235a31d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "024ad7cbf60b4f4f813da5de235a31d1.jpg", "file_size": 61811, "is_delete": false, "file_type": 1, "original_file_name": "JXY-1084#B9.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024ad7cbf60b4f4f813da5de235a31d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024ad7cbf60b4f4f813da5de235a31d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024ad7cbf60b4f4f813da5de235a31d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/024ad7cbf60b4f4f813da5de235a31d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/024ad7cbf60b4f4f813da5de235a31d1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zxuJvvWPH97oeLfh-pztqFLebJY=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.915173+00 2025-12-09 10:15:50.915178+00 19260 HXF0008-16#WJC22 SPMX-20240815314497 \N \N \N 1 \N [{"file_id": "f0c84eb1-6891-4910-80de-03c253b13dec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f7a592f88bc45c68636a4b0d107ebc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f7a592f88bc45c68636a4b0d107ebc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f7a592f88bc45c68636a4b0d107ebc9.jpg", "file_size": 13883, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7a592f88bc45c68636a4b0d107ebc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7a592f88bc45c68636a4b0d107ebc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f7a592f88bc45c68636a4b0d107ebc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f7a592f88bc45c68636a4b0d107ebc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f7a592f88bc45c68636a4b0d107ebc9.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bw_TZ3yIXwl7HxfH0RexHIHZUM0=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.918675+00 2025-12-09 10:15:50.918681+00 19261 8787#长款紫色 SPMX-20240815314491 \N \N \N 1 \N [{"file_id": "1a2331d7-cb40-4460-af0b-f3b8fcaf5b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86739589a30d4be5b11c944bfe29a35d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86739589a30d4be5b11c944bfe29a35d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86739589a30d4be5b11c944bfe29a35d.jpg", "file_size": 13402, "is_delete": false, "file_type": 1, "original_file_name": "8787#长款紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86739589a30d4be5b11c944bfe29a35d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86739589a30d4be5b11c944bfe29a35d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86739589a30d4be5b11c944bfe29a35d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86739589a30d4be5b11c944bfe29a35d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86739589a30d4be5b11c944bfe29a35d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FZN2BZ19BfE0tm09AptJGrRawY=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.921809+00 2025-12-09 10:15:50.921814+00 19262 LZ139FWF#短袖1号色 SPMX-20240815314488 \N \N \N 1 \N [{"file_id": "c8f1fbea-48a4-48cd-8665-90780a733556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg", "file_size": 16453, "is_delete": false, "file_type": 1, "original_file_name": "LZ139FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4074c2f3cfe43b3a7adb7e1ca0b6484.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyegCttMbFCxYXoheTTTbz99f3U=", "createTime": "2024-08-15 15:06:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.92612+00 2025-12-09 10:15:50.926126+00 19263 CGH8747#绿色 SPMX-20240815314493 \N \N \N 1 \N [{"file_id": "29e9314f-6286-42c9-9abc-4f3d98afa8d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9632f882aee34e73b5c759b3ed028a50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9632f882aee34e73b5c759b3ed028a50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9632f882aee34e73b5c759b3ed028a50.jpg", "file_size": 25418, "is_delete": false, "file_type": 1, "original_file_name": "CGH8747#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9632f882aee34e73b5c759b3ed028a50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9632f882aee34e73b5c759b3ed028a50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9632f882aee34e73b5c759b3ed028a50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9632f882aee34e73b5c759b3ed028a50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9632f882aee34e73b5c759b3ed028a50.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-iQ9GTSjSF13dN6Be16S0gDxgE=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.929356+00 2025-12-09 10:15:50.929361+00 19264 LZ139FWF#短袖2号色 SPMX-20240815314496 \N \N \N 1 \N [{"file_id": "d8a4f0c6-19b7-455b-8f69-a1808bec1248", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e08121db9cc472c9fda9e48e82d2a18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e08121db9cc472c9fda9e48e82d2a18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e08121db9cc472c9fda9e48e82d2a18.jpg", "file_size": 16501, "is_delete": false, "file_type": 1, "original_file_name": "LZ139FWF#短袖2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e08121db9cc472c9fda9e48e82d2a18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e08121db9cc472c9fda9e48e82d2a18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e08121db9cc472c9fda9e48e82d2a18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e08121db9cc472c9fda9e48e82d2a18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e08121db9cc472c9fda9e48e82d2a18.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q7YqnBCmfKkzSRWuxwblnR5u7wQ=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.932491+00 2025-12-09 10:15:50.932496+00 19265 JY#1#蓝底粉花 SPMX-20240815314500 \N \N \N 1 \N [{"file_id": "f93c098f-a4b2-47e6-a1bc-2a8d0aa00686", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e7cdd9b2be4480a869ffaf4fb963d34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e7cdd9b2be4480a869ffaf4fb963d34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e7cdd9b2be4480a869ffaf4fb963d34.jpg", "file_size": 13923, "is_delete": false, "file_type": 1, "original_file_name": "JY#1#蓝底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7cdd9b2be4480a869ffaf4fb963d34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7cdd9b2be4480a869ffaf4fb963d34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e7cdd9b2be4480a869ffaf4fb963d34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e7cdd9b2be4480a869ffaf4fb963d34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e7cdd9b2be4480a869ffaf4fb963d34.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZW0KWwpOm18P6_-YxFg6GlHTE7Y=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.935356+00 2025-12-09 10:15:50.935361+00 19266 FX0003-88#RC23 SPMX-20240815314495 \N \N \N 1 \N [{"file_id": "f5a49162-60d8-4f3c-baec-650023d67865", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d76cee5ed4f4e72bddc432045fed8b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d76cee5ed4f4e72bddc432045fed8b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d76cee5ed4f4e72bddc432045fed8b5.jpg", "file_size": 22908, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-88#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d76cee5ed4f4e72bddc432045fed8b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d76cee5ed4f4e72bddc432045fed8b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d76cee5ed4f4e72bddc432045fed8b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d76cee5ed4f4e72bddc432045fed8b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d76cee5ed4f4e72bddc432045fed8b5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FHwUWykdTQOOS4ezKW_xlSlvApE=", "createTime": "2024-08-15 15:06:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.938066+00 2025-12-09 10:15:50.938071+00 19267 001FWE#2XL SPMX-20240815314506 \N \N \N 1 \N [{"file_id": "c7b4b7f0-fa53-4255-90a8-0eab9614c751", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65ece2e95aca4a8ea97d6b532da7bf0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65ece2e95aca4a8ea97d6b532da7bf0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65ece2e95aca4a8ea97d6b532da7bf0f.jpg", "file_size": 15622, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ece2e95aca4a8ea97d6b532da7bf0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ece2e95aca4a8ea97d6b532da7bf0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65ece2e95aca4a8ea97d6b532da7bf0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65ece2e95aca4a8ea97d6b532da7bf0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65ece2e95aca4a8ea97d6b532da7bf0f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0K6Bcv6gchs270XT1Gm2skWPD3k=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.940858+00 2025-12-09 10:15:50.940864+00 19268 DLFS31211#墨绿 SPMX-20240815314509 \N \N \N 1 \N [{"file_id": "73e808ca-3ca8-4cfd-87d9-d2ee574bd255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cfdf440856d4a1e9af8c685190115ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cfdf440856d4a1e9af8c685190115ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cfdf440856d4a1e9af8c685190115ba.jpg", "file_size": 23936, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfdf440856d4a1e9af8c685190115ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfdf440856d4a1e9af8c685190115ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cfdf440856d4a1e9af8c685190115ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cfdf440856d4a1e9af8c685190115ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cfdf440856d4a1e9af8c685190115ba.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pInLdOCs-L__yFUeRz8OlfJ0Jro=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.943838+00 2025-12-09 10:15:50.943843+00 19269 236#大人彩蓝 SPMX-20240815314503 \N \N \N 1 \N [{"file_id": "93f5aea4-c7d9-4e59-aaab-438e1a6ddbc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21fd80fd98c84f2ca495f8d3eb8f2a41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21fd80fd98c84f2ca495f8d3eb8f2a41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21fd80fd98c84f2ca495f8d3eb8f2a41.jpg", "file_size": 22347, "is_delete": false, "file_type": 1, "original_file_name": "236#大人彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fd80fd98c84f2ca495f8d3eb8f2a41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fd80fd98c84f2ca495f8d3eb8f2a41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fd80fd98c84f2ca495f8d3eb8f2a41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21fd80fd98c84f2ca495f8d3eb8f2a41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21fd80fd98c84f2ca495f8d3eb8f2a41.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XeSceXNVAknh9qQL3ap4ruFECbE=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.947163+00 2025-12-09 10:15:50.947169+00 19270 879# SPMX-20240815314502 \N \N \N 1 \N [{"file_id": "fee12db2-2407-4a8a-91b8-b6d21ca863b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895a9ce429db4ea0be4028593801a9dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895a9ce429db4ea0be4028593801a9dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895a9ce429db4ea0be4028593801a9dd.jpg", "file_size": 66787, "is_delete": false, "file_type": 1, "original_file_name": "879#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895a9ce429db4ea0be4028593801a9dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895a9ce429db4ea0be4028593801a9dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895a9ce429db4ea0be4028593801a9dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895a9ce429db4ea0be4028593801a9dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895a9ce429db4ea0be4028593801a9dd.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaRHw5oBd4r2-Zp2KqOYEwvcu0g=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.950479+00 2025-12-09 10:15:50.950485+00 19271 CGH8747#黄色 SPMX-20240815314504 \N \N \N 1 \N [{"file_id": "024adeae-a61e-4bc6-8624-1a7f1beb18ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "344e3e29efae493d9b22e5145467722b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "344e3e29efae493d9b22e5145467722b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "344e3e29efae493d9b22e5145467722b.jpg", "file_size": 26960, "is_delete": false, "file_type": 1, "original_file_name": "CGH8747#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344e3e29efae493d9b22e5145467722b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344e3e29efae493d9b22e5145467722b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/344e3e29efae493d9b22e5145467722b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/344e3e29efae493d9b22e5145467722b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/344e3e29efae493d9b22e5145467722b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vadO4uBpPk0ch1izCsu9ZxkRWyg=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.953558+00 2025-12-09 10:15:50.953563+00 19272 1231-4FWF#小童袖领匹布 SPMX-20240815314510 \N \N \N 1 \N [{"file_id": "047cab67-8f35-467d-a395-7fa6e2fb4fce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36d85c5a781b4a049f9871c2f1e77c43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36d85c5a781b4a049f9871c2f1e77c43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36d85c5a781b4a049f9871c2f1e77c43.jpg", "file_size": 13416, "is_delete": false, "file_type": 1, "original_file_name": "1231-4FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d85c5a781b4a049f9871c2f1e77c43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d85c5a781b4a049f9871c2f1e77c43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36d85c5a781b4a049f9871c2f1e77c43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36d85c5a781b4a049f9871c2f1e77c43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36d85c5a781b4a049f9871c2f1e77c43.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzJVK-4R3FGpYHoT3VjRoFNB1v0=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.956593+00 2025-12-09 10:15:50.956599+00 19273 HXF0008-17#红色 SPMX-20240815314508 \N \N \N 1 \N [{"file_id": "e01062e7-717b-4b1d-91b9-aca19480aacc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "749cd92df39349a5a187d6e2b21b87c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "749cd92df39349a5a187d6e2b21b87c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "749cd92df39349a5a187d6e2b21b87c3.jpg", "file_size": 13954, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-17#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749cd92df39349a5a187d6e2b21b87c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749cd92df39349a5a187d6e2b21b87c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/749cd92df39349a5a187d6e2b21b87c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/749cd92df39349a5a187d6e2b21b87c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/749cd92df39349a5a187d6e2b21b87c3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:txZqmt2czv4O6IlLBRX0jVqeP7g=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.959769+00 2025-12-09 10:15:50.959776+00 19274 LZ139FWF#短袖3号色 SPMX-20240815314505 \N \N \N 1 \N [{"file_id": "d20f2b75-bb29-4530-81f2-1ef8fdf2e1de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7203c796a14f16b96fb5d880d3310a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7203c796a14f16b96fb5d880d3310a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7203c796a14f16b96fb5d880d3310a.jpg", "file_size": 15934, "is_delete": false, "file_type": 1, "original_file_name": "LZ139FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7203c796a14f16b96fb5d880d3310a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7203c796a14f16b96fb5d880d3310a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7203c796a14f16b96fb5d880d3310a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7203c796a14f16b96fb5d880d3310a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7203c796a14f16b96fb5d880d3310a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nyMsM8nep0cK5KKXJ2pXSZ4cuEQ=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.962827+00 2025-12-09 10:15:50.962833+00 19275 FX0003-89#RC23 SPMX-20240815314507 \N \N \N 1 \N [{"file_id": "c91cef36-2a80-47b6-ae86-d529e543b568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbf22c0d965148f3845de0d27aba99b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbf22c0d965148f3845de0d27aba99b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbf22c0d965148f3845de0d27aba99b8.jpg", "file_size": 52389, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-89#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf22c0d965148f3845de0d27aba99b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf22c0d965148f3845de0d27aba99b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbf22c0d965148f3845de0d27aba99b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbf22c0d965148f3845de0d27aba99b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbf22c0d965148f3845de0d27aba99b8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJ23fEkDM7j3ILDJYqJYK_cGAuU=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.965971+00 2025-12-09 10:15:50.965978+00 19276 LJH2034#黄色 SPMX-20240815314511 \N \N \N 1 \N [{"file_id": "f38a3588-139d-4bcf-be02-d28695390eef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db8769b82ab41e2aff7a69823cbe4f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db8769b82ab41e2aff7a69823cbe4f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db8769b82ab41e2aff7a69823cbe4f3.jpg", "file_size": 74652, "is_delete": false, "file_type": 1, "original_file_name": "LJH2034#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db8769b82ab41e2aff7a69823cbe4f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db8769b82ab41e2aff7a69823cbe4f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db8769b82ab41e2aff7a69823cbe4f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db8769b82ab41e2aff7a69823cbe4f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db8769b82ab41e2aff7a69823cbe4f3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgUKOVDizu26ViCD1mVFtHzfFqc=", "createTime": "2024-08-15 15:06:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.969144+00 2025-12-09 10:15:50.969151+00 19277 LJH2034#黑色 SPMX-20240815314524 \N \N \N 1 \N [{"file_id": "ff180016-f8d6-4ab7-80d1-f6b37a117ab7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c1b1afbd93b4b3dbf80732528ce6753.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c1b1afbd93b4b3dbf80732528ce6753.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c1b1afbd93b4b3dbf80732528ce6753.jpg", "file_size": 75137, "is_delete": false, "file_type": 1, "original_file_name": "LJH2034#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1b1afbd93b4b3dbf80732528ce6753.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1b1afbd93b4b3dbf80732528ce6753.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c1b1afbd93b4b3dbf80732528ce6753.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c1b1afbd93b4b3dbf80732528ce6753.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c1b1afbd93b4b3dbf80732528ce6753.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vbei_fGKCji8VaZtI9t4aqaWKv4=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.972379+00 2025-12-09 10:15:50.972384+00 19278 1231-50FWF#中童12码+10码 SPMX-20240815314520 \N \N \N 1 \N [{"file_id": "ba4a1df0-125d-44cf-a088-3a85f3affe79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58eac5ee77384da491b05394bc6d73da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58eac5ee77384da491b05394bc6d73da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58eac5ee77384da491b05394bc6d73da.jpg", "file_size": 15730, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58eac5ee77384da491b05394bc6d73da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58eac5ee77384da491b05394bc6d73da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58eac5ee77384da491b05394bc6d73da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58eac5ee77384da491b05394bc6d73da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58eac5ee77384da491b05394bc6d73da.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0UJZ_lWWZZwrU6ri3FH3GXVabXs=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.975622+00 2025-12-09 10:15:50.975629+00 19279 HXF0008-17#绿色 SPMX-20240815314519 \N \N \N 1 \N [{"file_id": "0373e4b6-852e-42a0-9874-4166722d51e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2af046858fe4475ca8595cc65baeb67f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2af046858fe4475ca8595cc65baeb67f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2af046858fe4475ca8595cc65baeb67f.jpg", "file_size": 13232, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-17#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af046858fe4475ca8595cc65baeb67f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af046858fe4475ca8595cc65baeb67f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2af046858fe4475ca8595cc65baeb67f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2af046858fe4475ca8595cc65baeb67f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2af046858fe4475ca8595cc65baeb67f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W0efyJIyboabQNpAfKNFgCCxAEg=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.978772+00 2025-12-09 10:15:50.978778+00 19280 LZ139FWF#短袖5号色 SPMX-20240815314525 \N \N \N 1 \N [{"file_id": "30973c19-1fab-4b17-9168-8dedcee91797", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ce278723a1e44dcba88cac9b538f075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ce278723a1e44dcba88cac9b538f075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ce278723a1e44dcba88cac9b538f075.jpg", "file_size": 17280, "is_delete": false, "file_type": 1, "original_file_name": "LZ139FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce278723a1e44dcba88cac9b538f075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce278723a1e44dcba88cac9b538f075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ce278723a1e44dcba88cac9b538f075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ce278723a1e44dcba88cac9b538f075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ce278723a1e44dcba88cac9b538f075.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8F0FttHkW9WDHCuGCnKFQivm_T4=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.982132+00 2025-12-09 10:15:50.982141+00 19281 236#大人玫红 SPMX-20240815314526 \N \N \N 1 \N [{"file_id": "959a942e-aac8-43aa-a2ef-1d6342c759e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce7152afdb77467ca8dad76463f8a381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce7152afdb77467ca8dad76463f8a381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce7152afdb77467ca8dad76463f8a381.jpg", "file_size": 20759, "is_delete": false, "file_type": 1, "original_file_name": "236#大人玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7152afdb77467ca8dad76463f8a381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7152afdb77467ca8dad76463f8a381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce7152afdb77467ca8dad76463f8a381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce7152afdb77467ca8dad76463f8a381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce7152afdb77467ca8dad76463f8a381.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EmHxQV-V5wISxbtuapRamkMObZU=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.985462+00 2025-12-09 10:15:50.98547+00 19282 LZ139FWF#短袖4号色 SPMX-20240815314515 \N \N \N 1 \N [{"file_id": "95b1f54f-3300-4c78-aa40-082301ccf382", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b84963d65f0f46a8a0c41b990ef46215.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b84963d65f0f46a8a0c41b990ef46215.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b84963d65f0f46a8a0c41b990ef46215.jpg", "file_size": 15609, "is_delete": false, "file_type": 1, "original_file_name": "LZ139FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84963d65f0f46a8a0c41b990ef46215.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84963d65f0f46a8a0c41b990ef46215.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b84963d65f0f46a8a0c41b990ef46215.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b84963d65f0f46a8a0c41b990ef46215.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b84963d65f0f46a8a0c41b990ef46215.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ciBwlKHFvgRJ_P4-hgFfjlFMS0=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.988798+00 2025-12-09 10:15:50.988804+00 19283 FX0003-9#RC23 SPMX-20240815314518 \N \N \N 1 \N [{"file_id": "17110bd4-62aa-4f7b-817f-737f547e2cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "599f2b0638704656b1db8f5320b21d1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "599f2b0638704656b1db8f5320b21d1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "599f2b0638704656b1db8f5320b21d1b.jpg", "file_size": 26406, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-9#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599f2b0638704656b1db8f5320b21d1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599f2b0638704656b1db8f5320b21d1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/599f2b0638704656b1db8f5320b21d1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/599f2b0638704656b1db8f5320b21d1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/599f2b0638704656b1db8f5320b21d1b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mV0EDbAI5_dT6bPxQtWJKG2VdQ=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.991837+00 2025-12-09 10:15:50.991843+00 19284 JY#10#绿叶 SPMX-20240815314521 \N \N \N 1 \N [{"file_id": "cf2aa3d0-8660-4fd8-b330-2ced78df5557", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8105ff8610284a369927ca00dac6bba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8105ff8610284a369927ca00dac6bba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8105ff8610284a369927ca00dac6bba3.jpg", "file_size": 20858, "is_delete": false, "file_type": 1, "original_file_name": "JY#10#绿叶.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8105ff8610284a369927ca00dac6bba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8105ff8610284a369927ca00dac6bba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8105ff8610284a369927ca00dac6bba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8105ff8610284a369927ca00dac6bba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8105ff8610284a369927ca00dac6bba3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W15lLQ6X_lM5MB0MDJ1mr9ZLzT0=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.995112+00 2025-12-09 10:15:50.995119+00 19285 DLFS31211#彩兰 SPMX-20240815314523 \N \N \N 1 \N [{"file_id": "9019d6d1-fe46-4db0-961d-92798d0b2070", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21e35548ae854e99a95bb0e4f825b593.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21e35548ae854e99a95bb0e4f825b593.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21e35548ae854e99a95bb0e4f825b593.jpg", "file_size": 24285, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e35548ae854e99a95bb0e4f825b593.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e35548ae854e99a95bb0e4f825b593.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e35548ae854e99a95bb0e4f825b593.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21e35548ae854e99a95bb0e4f825b593.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21e35548ae854e99a95bb0e4f825b593.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jvMTu2gK7j-dVYKhjiwVbUv3aJI=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:50.998174+00 2025-12-09 10:15:50.99818+00 19286 JY#1#蓝底红花 SPMX-20240815314512 \N \N \N 1 \N [{"file_id": "6e3e0c9b-3613-487e-a8a0-aa8e4707fc27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f88d113727394ea8a01f069b0f40b7cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f88d113727394ea8a01f069b0f40b7cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f88d113727394ea8a01f069b0f40b7cc.jpg", "file_size": 16180, "is_delete": false, "file_type": 1, "original_file_name": "JY#1#蓝底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88d113727394ea8a01f069b0f40b7cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88d113727394ea8a01f069b0f40b7cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88d113727394ea8a01f069b0f40b7cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f88d113727394ea8a01f069b0f40b7cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f88d113727394ea8a01f069b0f40b7cc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcD0DD4ZmzXMYp4DjVUdr79QR_Y=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.001346+00 2025-12-09 10:15:51.001351+00 19287 8799FWF#正身 SPMX-20240815314522 \N \N \N 1 \N [{"file_id": "e388ca2c-477f-4150-8be1-a7d57eca5833", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fc043d6622b4b5ba83a1c4ceebb34c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fc043d6622b4b5ba83a1c4ceebb34c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fc043d6622b4b5ba83a1c4ceebb34c7.jpg", "file_size": 19275, "is_delete": false, "file_type": 1, "original_file_name": "8799FWF#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc043d6622b4b5ba83a1c4ceebb34c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc043d6622b4b5ba83a1c4ceebb34c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fc043d6622b4b5ba83a1c4ceebb34c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fc043d6622b4b5ba83a1c4ceebb34c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fc043d6622b4b5ba83a1c4ceebb34c7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RN1cWbJIBHIQFRuElbkNaSfrP1g=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.004402+00 2025-12-09 10:15:51.004409+00 19288 CGH8749#枣红 SPMX-20240815314527 \N \N \N 1 \N [{"file_id": "2d1774be-cef2-4d5d-affb-62d400b42f62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f496cc9095c54653b47ba37289e25304.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f496cc9095c54653b47ba37289e25304.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f496cc9095c54653b47ba37289e25304.jpg", "file_size": 16817, "is_delete": false, "file_type": 1, "original_file_name": "CGH8749#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f496cc9095c54653b47ba37289e25304.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f496cc9095c54653b47ba37289e25304.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f496cc9095c54653b47ba37289e25304.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f496cc9095c54653b47ba37289e25304.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f496cc9095c54653b47ba37289e25304.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lDqOITqPFiCVpHIiRUTjaxX7RAE=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.007471+00 2025-12-09 10:15:51.007477+00 19289 879-1# SPMX-20240815314513 \N \N \N 1 \N [{"file_id": "5439a0d5-9636-4581-a21f-c805994a57db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35f86ab26e15469e8b3c52f413508685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35f86ab26e15469e8b3c52f413508685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35f86ab26e15469e8b3c52f413508685.jpg", "file_size": 61110, "is_delete": false, "file_type": 1, "original_file_name": "879-1#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f86ab26e15469e8b3c52f413508685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f86ab26e15469e8b3c52f413508685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35f86ab26e15469e8b3c52f413508685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35f86ab26e15469e8b3c52f413508685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35f86ab26e15469e8b3c52f413508685.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:82DryLAK6BCeaY40zOsR97FMLn4=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.010469+00 2025-12-09 10:15:51.010475+00 19290 CGH8749#原版墨绿 SPMX-20240815314516 \N \N \N 1 \N [{"file_id": "9bf3d03a-51b6-49ef-87a6-52534e6a4692", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e5af074072d4823a64706b35fcd8a29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e5af074072d4823a64706b35fcd8a29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e5af074072d4823a64706b35fcd8a29.jpg", "file_size": 16624, "is_delete": false, "file_type": 1, "original_file_name": "CGH8749#原版墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5af074072d4823a64706b35fcd8a29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5af074072d4823a64706b35fcd8a29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5af074072d4823a64706b35fcd8a29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e5af074072d4823a64706b35fcd8a29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e5af074072d4823a64706b35fcd8a29.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nMVupWH8odvbRhVuRSZ5YxmGr6s=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.013584+00 2025-12-09 10:15:51.013591+00 19291 236#大人湖绿 SPMX-20240815314514 \N \N \N 1 \N [{"file_id": "e8a36ecc-8eec-453d-be86-1540aa430734", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1217685c010472c8b1634eb984cc1ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1217685c010472c8b1634eb984cc1ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1217685c010472c8b1634eb984cc1ce.jpg", "file_size": 21298, "is_delete": false, "file_type": 1, "original_file_name": "236#大人湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1217685c010472c8b1634eb984cc1ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1217685c010472c8b1634eb984cc1ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1217685c010472c8b1634eb984cc1ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1217685c010472c8b1634eb984cc1ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1217685c010472c8b1634eb984cc1ce.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5jAMYCFSJpbxcjtpqG3EB6Zad0=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.016699+00 2025-12-09 10:15:51.016709+00 19292 001FWE#3XL SPMX-20240815314517 \N \N \N 1 \N [{"file_id": "8e1baf75-4675-4478-82f5-4cbc94760605", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e145e8056da48b48fbca58311afeffc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e145e8056da48b48fbca58311afeffc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e145e8056da48b48fbca58311afeffc.jpg", "file_size": 16082, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e145e8056da48b48fbca58311afeffc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e145e8056da48b48fbca58311afeffc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e145e8056da48b48fbca58311afeffc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e145e8056da48b48fbca58311afeffc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e145e8056da48b48fbca58311afeffc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bxi_CWGaOd1tuHfva6tj31GDm9E=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.01982+00 2025-12-09 10:15:51.019827+00 19293 LJH2035#红色 SPMX-20240815314535 \N \N \N 1 \N [{"file_id": "4b3dc858-a04e-4794-b58b-08f453f5036a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa06307f4a31444189ba71cdff4812c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa06307f4a31444189ba71cdff4812c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa06307f4a31444189ba71cdff4812c3.jpg", "file_size": 64276, "is_delete": false, "file_type": 1, "original_file_name": "LJH2035#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06307f4a31444189ba71cdff4812c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06307f4a31444189ba71cdff4812c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa06307f4a31444189ba71cdff4812c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa06307f4a31444189ba71cdff4812c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa06307f4a31444189ba71cdff4812c3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRCSOJios3hiK0IRfVsFGPSYQUg=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.022897+00 2025-12-09 10:15:51.022903+00 19294 CGH8749#黄色 SPMX-20240815314539 \N \N \N 1 \N [{"file_id": "81c72b98-61c1-40b7-9862-a69cfef5c86a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e14089ae2a884f86844b6dd3004477a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e14089ae2a884f86844b6dd3004477a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e14089ae2a884f86844b6dd3004477a2.jpg", "file_size": 23288, "is_delete": false, "file_type": 1, "original_file_name": "CGH8749#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14089ae2a884f86844b6dd3004477a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14089ae2a884f86844b6dd3004477a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e14089ae2a884f86844b6dd3004477a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e14089ae2a884f86844b6dd3004477a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e14089ae2a884f86844b6dd3004477a2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtbFuaZQuZaKZr53-T7vPgtlCe8=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.026555+00 2025-12-09 10:15:51.026562+00 19295 001FWE#4XL SPMX-20240815314528 \N \N \N 1 \N [{"file_id": "1c97bc17-e738-40c5-94b8-41343729455f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5c5c22f98704f33ad5764112ee9bd5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5c5c22f98704f33ad5764112ee9bd5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5c5c22f98704f33ad5764112ee9bd5b.jpg", "file_size": 16023, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c5c22f98704f33ad5764112ee9bd5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c5c22f98704f33ad5764112ee9bd5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c5c22f98704f33ad5764112ee9bd5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5c5c22f98704f33ad5764112ee9bd5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5c5c22f98704f33ad5764112ee9bd5b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MXu0v3Pda1ZKQVQWlxgBEFnkqDk=", "createTime": "2024-08-15 15:06:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.030319+00 2025-12-09 10:15:51.030326+00 19296 JY#11#豹纹 SPMX-20240815314530 \N \N \N 1 \N [{"file_id": "3a36e4ab-e6c8-4cab-b68c-78eff4f68077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3848159b2474e099c6fea48528eb270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3848159b2474e099c6fea48528eb270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3848159b2474e099c6fea48528eb270.jpg", "file_size": 21060, "is_delete": false, "file_type": 1, "original_file_name": "JY#11#豹纹.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3848159b2474e099c6fea48528eb270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3848159b2474e099c6fea48528eb270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3848159b2474e099c6fea48528eb270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3848159b2474e099c6fea48528eb270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3848159b2474e099c6fea48528eb270.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_7wKU_ThQjzwBwLcJux5QXEIbU=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.033561+00 2025-12-09 10:15:51.033566+00 19297 FX0003-90#上身玫红 SPMX-20240815314531 \N \N \N 1 \N [{"file_id": "529abd4c-eb66-4701-9939-f6e021cf9e5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c301effa44e24c9a87669b3ef7293281.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c301effa44e24c9a87669b3ef7293281.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c301effa44e24c9a87669b3ef7293281.jpg", "file_size": 72932, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-90#上身玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c301effa44e24c9a87669b3ef7293281.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c301effa44e24c9a87669b3ef7293281.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c301effa44e24c9a87669b3ef7293281.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c301effa44e24c9a87669b3ef7293281.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c301effa44e24c9a87669b3ef7293281.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u7S2oAz0RgLxTMTdQ_30KnOUvQs=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.036737+00 2025-12-09 10:15:51.036744+00 19298 DLFS31211#枣红 SPMX-20240815314532 \N \N \N 1 \N [{"file_id": "e4bd6ff3-dc87-4060-ac2d-4151a568dd48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28a15e045ff84902bee305968da030dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28a15e045ff84902bee305968da030dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28a15e045ff84902bee305968da030dc.jpg", "file_size": 24022, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a15e045ff84902bee305968da030dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a15e045ff84902bee305968da030dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28a15e045ff84902bee305968da030dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28a15e045ff84902bee305968da030dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28a15e045ff84902bee305968da030dc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j31KVpl8lz_vv2YVjA0a3uYO2M0=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.039871+00 2025-12-09 10:15:51.039877+00 19299 HXF0008-18#WJC22 SPMX-20240815314529 \N \N \N 1 \N [{"file_id": "bcd1f152-60fd-4d58-ba4c-3ca3edd4cf5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92420e4f3db34e6c9d924821ba99256a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92420e4f3db34e6c9d924821ba99256a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92420e4f3db34e6c9d924821ba99256a.jpg", "file_size": 22642, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-18#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92420e4f3db34e6c9d924821ba99256a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92420e4f3db34e6c9d924821ba99256a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92420e4f3db34e6c9d924821ba99256a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92420e4f3db34e6c9d924821ba99256a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92420e4f3db34e6c9d924821ba99256a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vzY20VIvKpZKA1Y1aHxfsrsLjqA=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.043046+00 2025-12-09 10:15:51.043053+00 19300 8799FWF#袖口净色 SPMX-20240815314533 \N \N \N 1 \N [{"file_id": "14674027-f1e8-4fb6-9c7e-4f0b7dec7b72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71da2525cd9c47d5812dac5685fe423d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71da2525cd9c47d5812dac5685fe423d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71da2525cd9c47d5812dac5685fe423d.jpg", "file_size": 7270, "is_delete": false, "file_type": 1, "original_file_name": "8799FWF#袖口净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da2525cd9c47d5812dac5685fe423d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da2525cd9c47d5812dac5685fe423d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71da2525cd9c47d5812dac5685fe423d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71da2525cd9c47d5812dac5685fe423d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71da2525cd9c47d5812dac5685fe423d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z-S6EzDzSvCP1wV7sGe4hqceRwc=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.046145+00 2025-12-09 10:15:51.046151+00 19301 LZ1400#上身1号色 SPMX-20240815314534 \N \N \N 1 \N [{"file_id": "ef6b0cc5-1edf-4260-8e68-86d8115b7148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fffa704b4bfe4fd091706a991c1e2f9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fffa704b4bfe4fd091706a991c1e2f9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fffa704b4bfe4fd091706a991c1e2f9b.jpg", "file_size": 19979, "is_delete": false, "file_type": 1, "original_file_name": "LZ1400#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffa704b4bfe4fd091706a991c1e2f9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffa704b4bfe4fd091706a991c1e2f9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fffa704b4bfe4fd091706a991c1e2f9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fffa704b4bfe4fd091706a991c1e2f9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fffa704b4bfe4fd091706a991c1e2f9b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yY1a3cTLGoH5tDBfjxcZSLrAfQk=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.049309+00 2025-12-09 10:15:51.049316+00 19302 236#大红 SPMX-20240815314537 \N \N \N 1 \N [{"file_id": "1ab3d9b7-e65f-4a43-9362-624bc800f440", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8dc51a75b7af469a83a3c5e1c1961b62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8dc51a75b7af469a83a3c5e1c1961b62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8dc51a75b7af469a83a3c5e1c1961b62.jpg", "file_size": 21848, "is_delete": false, "file_type": 1, "original_file_name": "236#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc51a75b7af469a83a3c5e1c1961b62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc51a75b7af469a83a3c5e1c1961b62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8dc51a75b7af469a83a3c5e1c1961b62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8dc51a75b7af469a83a3c5e1c1961b62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8dc51a75b7af469a83a3c5e1c1961b62.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XTM6IDWc2QeGTqHc_ap-asKA7CA=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.052392+00 2025-12-09 10:15:51.052399+00 19303 1231-50FWF#中童14码 SPMX-20240815314536 \N \N \N 1 \N [{"file_id": "e13d74e5-fcf3-4a72-a850-b5053c15e318", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b71e2bf06b64368a7eba82b5ec225ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b71e2bf06b64368a7eba82b5ec225ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b71e2bf06b64368a7eba82b5ec225ac.jpg", "file_size": 14213, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b71e2bf06b64368a7eba82b5ec225ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b71e2bf06b64368a7eba82b5ec225ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b71e2bf06b64368a7eba82b5ec225ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b71e2bf06b64368a7eba82b5ec225ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b71e2bf06b64368a7eba82b5ec225ac.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t0oIEdPQYg_m19JUuE_Qf8omUM8=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.055475+00 2025-12-09 10:15:51.055482+00 19304 001FWE#L SPMX-20240815314538 \N \N \N 1 \N [{"file_id": "bb9c8d8a-a132-4799-97f7-4c1859b5f404", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74781dcc90ee4248af0f98b31b54d6c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74781dcc90ee4248af0f98b31b54d6c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74781dcc90ee4248af0f98b31b54d6c1.jpg", "file_size": 15442, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74781dcc90ee4248af0f98b31b54d6c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74781dcc90ee4248af0f98b31b54d6c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74781dcc90ee4248af0f98b31b54d6c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74781dcc90ee4248af0f98b31b54d6c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74781dcc90ee4248af0f98b31b54d6c1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJJX_51yNLxsT5yuAxHdMm2eXIU=", "createTime": "2024-08-15 15:06:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.058805+00 2025-12-09 10:15:51.058813+00 19305 JY#13#蓝底圈圈 SPMX-20240815314540 \N \N \N 1 \N [{"file_id": "8c6d0c85-d5df-40f8-a824-40503ac15753", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3050642110e64b86a2c3126cb11a51a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3050642110e64b86a2c3126cb11a51a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3050642110e64b86a2c3126cb11a51a7.jpg", "file_size": 22388, "is_delete": false, "file_type": 1, "original_file_name": "JY#13#蓝底圈圈.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3050642110e64b86a2c3126cb11a51a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3050642110e64b86a2c3126cb11a51a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3050642110e64b86a2c3126cb11a51a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3050642110e64b86a2c3126cb11a51a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3050642110e64b86a2c3126cb11a51a7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTpc04KISVMiPCngTf7GLLT9SRw=", "createTime": "2024-08-15 15:06:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.06207+00 2025-12-09 10:15:51.062076+00 19306 HXF0008-19#WJC22 SPMX-20240815314541 \N \N \N 1 \N [{"file_id": "f8d254ef-1faf-4f1a-b5d4-9a22217529f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81479c71cf2c41fa9bd8b8d4a0172a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81479c71cf2c41fa9bd8b8d4a0172a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81479c71cf2c41fa9bd8b8d4a0172a5c.jpg", "file_size": 13145, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-19#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81479c71cf2c41fa9bd8b8d4a0172a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81479c71cf2c41fa9bd8b8d4a0172a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81479c71cf2c41fa9bd8b8d4a0172a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81479c71cf2c41fa9bd8b8d4a0172a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81479c71cf2c41fa9bd8b8d4a0172a5c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aAqcju1e9d8YfcdX48VSuFKNnjs=", "createTime": "2024-08-15 15:06:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.065212+00 2025-12-09 10:15:51.065219+00 19307 CGH9052#LWQ15 SPMX-20240815314542 \N \N \N 1 \N [{"file_id": "87ab9b56-d911-457d-8882-f8eb2bead89c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db15ded71f904446beb76cd1b0f1f33d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db15ded71f904446beb76cd1b0f1f33d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db15ded71f904446beb76cd1b0f1f33d.jpg", "file_size": 15343, "is_delete": false, "file_type": 1, "original_file_name": "CGH9052#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db15ded71f904446beb76cd1b0f1f33d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db15ded71f904446beb76cd1b0f1f33d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db15ded71f904446beb76cd1b0f1f33d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db15ded71f904446beb76cd1b0f1f33d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db15ded71f904446beb76cd1b0f1f33d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EN2vOEoMeu7pLpAdD6UKobXJX98=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.068578+00 2025-12-09 10:15:51.068585+00 19308 8800FWF#V5曲线 SPMX-20240815314543 \N \N \N 1 \N [{"file_id": "d35a377c-ce01-40b9-ae21-901c953810e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1296f47efb644cafb1b6bb8af16c1c3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1296f47efb644cafb1b6bb8af16c1c3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1296f47efb644cafb1b6bb8af16c1c3d.jpg", "file_size": 6989, "is_delete": false, "file_type": 1, "original_file_name": "8800FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1296f47efb644cafb1b6bb8af16c1c3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1296f47efb644cafb1b6bb8af16c1c3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1296f47efb644cafb1b6bb8af16c1c3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1296f47efb644cafb1b6bb8af16c1c3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1296f47efb644cafb1b6bb8af16c1c3d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ofrrT5g4GHQQbLjM-fBKuwyuGA=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.071919+00 2025-12-09 10:15:51.071926+00 19309 1231-50FWF#中童袖领匹布 SPMX-20240815314546 \N \N \N 1 \N [{"file_id": "f2a2031a-dc2d-4bb4-95b8-c4951113a4f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edcee5b651d444269e78708571940fd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edcee5b651d444269e78708571940fd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edcee5b651d444269e78708571940fd1.jpg", "file_size": 8594, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edcee5b651d444269e78708571940fd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edcee5b651d444269e78708571940fd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edcee5b651d444269e78708571940fd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edcee5b651d444269e78708571940fd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edcee5b651d444269e78708571940fd1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CUP6i7uOFWWIknttOWsl7hjl3pE=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.075101+00 2025-12-09 10:15:51.075108+00 19310 DLFS31211#浅粉 SPMX-20240815314552 \N \N \N 1 \N [{"file_id": "0464697c-debc-4b44-827b-80d80ed2c926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf10f51e4c8f4e0c96891bae14429b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf10f51e4c8f4e0c96891bae14429b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf10f51e4c8f4e0c96891bae14429b5b.jpg", "file_size": 24693, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf10f51e4c8f4e0c96891bae14429b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf10f51e4c8f4e0c96891bae14429b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf10f51e4c8f4e0c96891bae14429b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf10f51e4c8f4e0c96891bae14429b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf10f51e4c8f4e0c96891bae14429b5b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-9neFj3BCYMGRLyjaTENusWiWIA=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.078155+00 2025-12-09 10:15:51.078161+00 19311 LJH2035#绿色 SPMX-20240815314545 \N \N \N 1 \N [{"file_id": "30264f3e-b27d-4581-816e-181a50075579", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aa5db82f4eb4ae28d12909b9112dcc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aa5db82f4eb4ae28d12909b9112dcc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aa5db82f4eb4ae28d12909b9112dcc6.jpg", "file_size": 58429, "is_delete": false, "file_type": 1, "original_file_name": "LJH2035#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa5db82f4eb4ae28d12909b9112dcc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa5db82f4eb4ae28d12909b9112dcc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa5db82f4eb4ae28d12909b9112dcc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aa5db82f4eb4ae28d12909b9112dcc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aa5db82f4eb4ae28d12909b9112dcc6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yn8UNvcPUrPbntfA4dZUTzKBDiE=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.0813+00 2025-12-09 10:15:51.081305+00 19312 236#大红净色 SPMX-20240815314549 \N \N \N 1 \N [{"file_id": "200f71ca-0190-42d7-93a2-c525cdb589c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63861605638f437899e7f2c8025143fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63861605638f437899e7f2c8025143fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63861605638f437899e7f2c8025143fa.jpg", "file_size": 8022, "is_delete": false, "file_type": 1, "original_file_name": "236#大红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63861605638f437899e7f2c8025143fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63861605638f437899e7f2c8025143fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63861605638f437899e7f2c8025143fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63861605638f437899e7f2c8025143fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63861605638f437899e7f2c8025143fa.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQ0J9njQIz4XmhHBS8C8Mt_i9fQ=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.084415+00 2025-12-09 10:15:51.084421+00 19313 HXF0008-2#粉色 SPMX-20240815314551 \N \N \N 1 \N [{"file_id": "b66a351a-d5b2-4c96-918b-0def5ada41b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "161c7001c89640b9961cac3d4b4bc9fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "161c7001c89640b9961cac3d4b4bc9fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "161c7001c89640b9961cac3d4b4bc9fe.jpg", "file_size": 17534, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-2#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161c7001c89640b9961cac3d4b4bc9fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161c7001c89640b9961cac3d4b4bc9fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/161c7001c89640b9961cac3d4b4bc9fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/161c7001c89640b9961cac3d4b4bc9fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/161c7001c89640b9961cac3d4b4bc9fe.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vDF6BFQWcy9MDuYfJh9HynXnhOY=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.087559+00 2025-12-09 10:15:51.087565+00 19314 LZ1400#上身2号色 SPMX-20240815314548 \N \N \N 1 \N [{"file_id": "f6d34430-87d0-44e7-9b36-f07bfc96f912", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6a591e937684980b81402ffa961a3c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6a591e937684980b81402ffa961a3c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6a591e937684980b81402ffa961a3c8.jpg", "file_size": 17432, "is_delete": false, "file_type": 1, "original_file_name": "LZ1400#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a591e937684980b81402ffa961a3c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a591e937684980b81402ffa961a3c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6a591e937684980b81402ffa961a3c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6a591e937684980b81402ffa961a3c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6a591e937684980b81402ffa961a3c8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sZC4Xj4P-2mbNKwVOOkCXza7zpA=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.090745+00 2025-12-09 10:15:51.090751+00 19315 FX0003-90#下摆玫红 SPMX-20240815314547 \N \N \N 1 \N [{"file_id": "198aa90b-acef-4c6b-859c-bc359b3582c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6c7428869804dc5aacdb2dce72dcb52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6c7428869804dc5aacdb2dce72dcb52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6c7428869804dc5aacdb2dce72dcb52.jpg", "file_size": 35516, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-90#下摆玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c7428869804dc5aacdb2dce72dcb52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c7428869804dc5aacdb2dce72dcb52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c7428869804dc5aacdb2dce72dcb52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6c7428869804dc5aacdb2dce72dcb52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6c7428869804dc5aacdb2dce72dcb52.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5vY0KxMLOXvkzW-NvraCUqZma58=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.0938+00 2025-12-09 10:15:51.093807+00 19316 001FWE#M SPMX-20240815314544 \N \N \N 1 \N [{"file_id": "965394e8-9af3-4ef4-8c36-db804a17bf8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ecf0e16142e454a9e8727c9ea66f64b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ecf0e16142e454a9e8727c9ea66f64b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ecf0e16142e454a9e8727c9ea66f64b.jpg", "file_size": 16193, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf0e16142e454a9e8727c9ea66f64b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf0e16142e454a9e8727c9ea66f64b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ecf0e16142e454a9e8727c9ea66f64b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ecf0e16142e454a9e8727c9ea66f64b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ecf0e16142e454a9e8727c9ea66f64b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mc_kALLi746-xguJPQxGx3IXOQ0=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.096972+00 2025-12-09 10:15:51.096977+00 19317 JY#14#藏蓝底圈圈 SPMX-20240815314550 \N \N \N 1 \N [{"file_id": "9babdb90-b64e-4d08-ba22-5e181bc3f3cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0164d44725640658395bd4c7c4e5053.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0164d44725640658395bd4c7c4e5053.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0164d44725640658395bd4c7c4e5053.jpg", "file_size": 21935, "is_delete": false, "file_type": 1, "original_file_name": "JY#14#藏蓝底圈圈.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0164d44725640658395bd4c7c4e5053.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0164d44725640658395bd4c7c4e5053.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0164d44725640658395bd4c7c4e5053.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0164d44725640658395bd4c7c4e5053.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0164d44725640658395bd4c7c4e5053.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZTq5Pz1RkfW_MtPAOlcoe1tXps=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.100176+00 2025-12-09 10:15:51.100183+00 19318 HXF0008-2#蓝色 SPMX-20240815314560 \N \N \N 1 \N [{"file_id": "215ac392-b3c6-4158-ae47-58b1076c2f25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f99a4aedc7b4536988bc1655a9dde01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f99a4aedc7b4536988bc1655a9dde01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f99a4aedc7b4536988bc1655a9dde01.jpg", "file_size": 20123, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-2#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f99a4aedc7b4536988bc1655a9dde01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f99a4aedc7b4536988bc1655a9dde01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f99a4aedc7b4536988bc1655a9dde01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f99a4aedc7b4536988bc1655a9dde01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f99a4aedc7b4536988bc1655a9dde01.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HEwQtXMXd9VdCa-qwTVG0BtBeps=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.10332+00 2025-12-09 10:15:51.103325+00 19319 CGH9088#WJC22 SPMX-20240815314553 \N \N \N 1 \N [{"file_id": "8c65d483-21ff-4dd0-ade8-cc36eab5abf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cb164d4487049d797b0d5dfea482612.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cb164d4487049d797b0d5dfea482612.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cb164d4487049d797b0d5dfea482612.jpg", "file_size": 15298, "is_delete": false, "file_type": 1, "original_file_name": "CGH9088#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb164d4487049d797b0d5dfea482612.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb164d4487049d797b0d5dfea482612.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cb164d4487049d797b0d5dfea482612.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cb164d4487049d797b0d5dfea482612.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cb164d4487049d797b0d5dfea482612.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KaFHaQSTGeM3T4SI8eoZiG9XQGY=", "createTime": "2024-08-15 15:06:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.106464+00 2025-12-09 10:15:51.10647+00 19320 1231-50FWF#小童6码 SPMX-20240815314555 \N \N \N 1 \N [{"file_id": "9e7a87cf-9658-44b2-abba-9c26d8674883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba6977fff84e414b8eea75e1d58b532a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba6977fff84e414b8eea75e1d58b532a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba6977fff84e414b8eea75e1d58b532a.jpg", "file_size": 16205, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6977fff84e414b8eea75e1d58b532a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6977fff84e414b8eea75e1d58b532a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba6977fff84e414b8eea75e1d58b532a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba6977fff84e414b8eea75e1d58b532a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba6977fff84e414b8eea75e1d58b532a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q1KlugRM52YD11Oubh0uhTTzdVU=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.109581+00 2025-12-09 10:15:51.109588+00 19321 8802FWE#2XL VS-D3 SPMX-20240815314554 \N \N \N 1 \N [{"file_id": "1f5c7f7e-e07b-4b37-aaab-9f7c9116db1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8177f4aeac384668820ffef3cfbc96f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8177f4aeac384668820ffef3cfbc96f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8177f4aeac384668820ffef3cfbc96f8.jpg", "file_size": 6217, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8177f4aeac384668820ffef3cfbc96f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8177f4aeac384668820ffef3cfbc96f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8177f4aeac384668820ffef3cfbc96f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8177f4aeac384668820ffef3cfbc96f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8177f4aeac384668820ffef3cfbc96f8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNemk8fGz7cflSzyRBWFdvMcvFk=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.11273+00 2025-12-09 10:15:51.112736+00 19322 LJH2035#黑色 SPMX-20240815314558 \N \N \N 1 \N [{"file_id": "10fb2eb0-8fc8-4d7b-a749-2a0d5788e9e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ac485053f8a45a49e8c5776ba96d864.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ac485053f8a45a49e8c5776ba96d864.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ac485053f8a45a49e8c5776ba96d864.jpg", "file_size": 63187, "is_delete": false, "file_type": 1, "original_file_name": "LJH2035#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac485053f8a45a49e8c5776ba96d864.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac485053f8a45a49e8c5776ba96d864.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ac485053f8a45a49e8c5776ba96d864.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ac485053f8a45a49e8c5776ba96d864.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ac485053f8a45a49e8c5776ba96d864.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDHAaG6UXpVjYQOxpgaTXxDA6T4=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.115932+00 2025-12-09 10:15:51.115938+00 19323 LZ1400#上身3号色 SPMX-20240815314557 \N \N \N 1 \N [{"file_id": "89248252-b825-4167-90a1-92a7c1f2cfc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4c582f1dff34179917f5cb4b1631912.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4c582f1dff34179917f5cb4b1631912.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4c582f1dff34179917f5cb4b1631912.jpg", "file_size": 19494, "is_delete": false, "file_type": 1, "original_file_name": "LZ1400#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c582f1dff34179917f5cb4b1631912.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c582f1dff34179917f5cb4b1631912.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c582f1dff34179917f5cb4b1631912.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4c582f1dff34179917f5cb4b1631912.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4c582f1dff34179917f5cb4b1631912.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PPDTYFmVpLr4BMVvtXzNspMupE4=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.119136+00 2025-12-09 10:15:51.119142+00 19324 DLFS31211#玫红 SPMX-20240815314561 \N \N \N 1 \N [{"file_id": "9e8a077b-8faf-4331-849a-fa04eedea3e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c25f291eb42f4c8e91c7e1939cf8643e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c25f291eb42f4c8e91c7e1939cf8643e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c25f291eb42f4c8e91c7e1939cf8643e.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25f291eb42f4c8e91c7e1939cf8643e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25f291eb42f4c8e91c7e1939cf8643e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25f291eb42f4c8e91c7e1939cf8643e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c25f291eb42f4c8e91c7e1939cf8643e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c25f291eb42f4c8e91c7e1939cf8643e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHJ3hm6Vo-ZDl3qxldSX_PNrhks=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.122337+00 2025-12-09 10:15:51.122343+00 19325 236#枣红 SPMX-20240815314559 \N \N \N 1 \N [{"file_id": "4388d999-7074-413a-9318-ab152609d591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dca2f29a6df94c82b924af3ec4ae1c49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dca2f29a6df94c82b924af3ec4ae1c49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dca2f29a6df94c82b924af3ec4ae1c49.jpg", "file_size": 21697, "is_delete": false, "file_type": 1, "original_file_name": "236#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca2f29a6df94c82b924af3ec4ae1c49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca2f29a6df94c82b924af3ec4ae1c49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dca2f29a6df94c82b924af3ec4ae1c49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dca2f29a6df94c82b924af3ec4ae1c49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dca2f29a6df94c82b924af3ec4ae1c49.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5gKjrzOwzFov5yXdxXjnQNskmQ=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.125507+00 2025-12-09 10:15:51.125513+00 19326 001FWE#XL SPMX-20240815314556 \N \N \N 1 \N [{"file_id": "7207cfc9-db3d-4fec-9b4e-870150c6d1ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1f163be3f7f4bcb869acc68d263c899.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1f163be3f7f4bcb869acc68d263c899.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1f163be3f7f4bcb869acc68d263c899.jpg", "file_size": 15584, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f163be3f7f4bcb869acc68d263c899.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f163be3f7f4bcb869acc68d263c899.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1f163be3f7f4bcb869acc68d263c899.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1f163be3f7f4bcb869acc68d263c899.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1f163be3f7f4bcb869acc68d263c899.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I6dprCTS2E2tiK9T2xD0k5AVG0U=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.128728+00 2025-12-09 10:15:51.128735+00 19327 LZ1400#上身4号色 SPMX-20240815314567 \N \N \N 1 \N [{"file_id": "431e61fd-9a80-45cc-8b2b-2f207de6fab6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "131c112aecd440bb8c403a19993dd2b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "131c112aecd440bb8c403a19993dd2b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "131c112aecd440bb8c403a19993dd2b7.jpg", "file_size": 19774, "is_delete": false, "file_type": 1, "original_file_name": "LZ1400#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131c112aecd440bb8c403a19993dd2b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131c112aecd440bb8c403a19993dd2b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/131c112aecd440bb8c403a19993dd2b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/131c112aecd440bb8c403a19993dd2b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/131c112aecd440bb8c403a19993dd2b7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCwvExj4lwKjP3l9vl8MNmI55Ao=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.131935+00 2025-12-09 10:15:51.131942+00 19328 LJH2038#粉色 SPMX-20240815314569 \N \N \N 1 \N [{"file_id": "c28a3920-94c6-4679-89e6-abd69e07da29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "423a044657594bbebbfd435a2bab05e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "423a044657594bbebbfd435a2bab05e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "423a044657594bbebbfd435a2bab05e9.jpg", "file_size": 71772, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423a044657594bbebbfd435a2bab05e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423a044657594bbebbfd435a2bab05e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/423a044657594bbebbfd435a2bab05e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/423a044657594bbebbfd435a2bab05e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/423a044657594bbebbfd435a2bab05e9.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jStT_Pf5sa0Q3Srs4-pWhbaEzxA=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.135131+00 2025-12-09 10:15:51.135138+00 19329 236#枣红净色 SPMX-20240815314571 \N \N \N 1 \N [{"file_id": "43c66f82-280d-4b69-96cf-1b52e9c03995", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "363db3bed4214144b5ccbaa4a503fa46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "363db3bed4214144b5ccbaa4a503fa46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "363db3bed4214144b5ccbaa4a503fa46.jpg", "file_size": 7490, "is_delete": false, "file_type": 1, "original_file_name": "236#枣红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363db3bed4214144b5ccbaa4a503fa46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363db3bed4214144b5ccbaa4a503fa46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/363db3bed4214144b5ccbaa4a503fa46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/363db3bed4214144b5ccbaa4a503fa46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/363db3bed4214144b5ccbaa4a503fa46.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u-2N7z55BB9TLmRvvrQpqAlO02U=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.138248+00 2025-12-09 10:15:51.138254+00 19330 HXF0008-20#WJC22 SPMX-20240815314570 \N \N \N 1 \N [{"file_id": "e8393a42-4eb0-4b29-b1ef-8cbf12fcf9be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a52c4dec2ff7417faf87f90da161f237.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a52c4dec2ff7417faf87f90da161f237.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a52c4dec2ff7417faf87f90da161f237.jpg", "file_size": 12380, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-20#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52c4dec2ff7417faf87f90da161f237.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52c4dec2ff7417faf87f90da161f237.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52c4dec2ff7417faf87f90da161f237.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a52c4dec2ff7417faf87f90da161f237.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a52c4dec2ff7417faf87f90da161f237.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VgtLfM0Ex7EKn2ZvO4-ylXx7AEE=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.141371+00 2025-12-09 10:15:51.141377+00 19331 JY#15#蓝底白花 SPMX-20240815314563 \N \N \N 1 \N [{"file_id": "f893da2d-32ae-46a8-8144-4156268d964a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "554a94e0f0a443d09e25f7679b9dfff5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "554a94e0f0a443d09e25f7679b9dfff5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "554a94e0f0a443d09e25f7679b9dfff5.jpg", "file_size": 12261, "is_delete": false, "file_type": 1, "original_file_name": "JY#15#蓝底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a94e0f0a443d09e25f7679b9dfff5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a94e0f0a443d09e25f7679b9dfff5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/554a94e0f0a443d09e25f7679b9dfff5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/554a94e0f0a443d09e25f7679b9dfff5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/554a94e0f0a443d09e25f7679b9dfff5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cuoOgqKIRKnj1i-GmEp72N8IPbY=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.144579+00 2025-12-09 10:15:51.144587+00 19332 1231-50FWF#小童8码+4码 SPMX-20240815314566 \N \N \N 1 \N [{"file_id": "a8ed4a68-7d33-44e3-9073-dcdb7b49c550", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc6e660b6fc448ffabb6b7d9b68d09fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc6e660b6fc448ffabb6b7d9b68d09fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc6e660b6fc448ffabb6b7d9b68d09fe.jpg", "file_size": 17156, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6e660b6fc448ffabb6b7d9b68d09fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6e660b6fc448ffabb6b7d9b68d09fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc6e660b6fc448ffabb6b7d9b68d09fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc6e660b6fc448ffabb6b7d9b68d09fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc6e660b6fc448ffabb6b7d9b68d09fe.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBetiTLyfSmXI3OrFY0oHn2mkJQ=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.147832+00 2025-12-09 10:15:51.147838+00 19333 001FWE#黑色匹布 SPMX-20240815314568 \N \N \N 1 \N [{"file_id": "913e6792-e256-4305-a1e6-939385eafb90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59784d74fb47401b99a17b576dd6e41a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59784d74fb47401b99a17b576dd6e41a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59784d74fb47401b99a17b576dd6e41a.jpg", "file_size": 6810, "is_delete": false, "file_type": 1, "original_file_name": "001FWE#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59784d74fb47401b99a17b576dd6e41a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59784d74fb47401b99a17b576dd6e41a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59784d74fb47401b99a17b576dd6e41a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59784d74fb47401b99a17b576dd6e41a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59784d74fb47401b99a17b576dd6e41a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jw8OqfK75S-k3eZViardX6bbfC8=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.151042+00 2025-12-09 10:15:51.151048+00 19334 FX0003-91#原版色 SPMX-20240815314562 \N \N \N 1 \N [{"file_id": "f8fd630a-d99d-4a35-9247-22bbdcd5313d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7155ff570f624568ac41e578cf99b1c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7155ff570f624568ac41e578cf99b1c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7155ff570f624568ac41e578cf99b1c6.jpg", "file_size": 43834, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-91#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7155ff570f624568ac41e578cf99b1c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7155ff570f624568ac41e578cf99b1c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7155ff570f624568ac41e578cf99b1c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7155ff570f624568ac41e578cf99b1c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7155ff570f624568ac41e578cf99b1c6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4thVbeQcYrHyQjPQ-5zU6b3uaI=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.154279+00 2025-12-09 10:15:51.154285+00 19335 CGH9284FWF#彩蓝 SPMX-20240815314564 \N \N \N 1 \N [{"file_id": "91c92021-0042-45f6-9e46-0f83e6a6136c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c6da85c64a4cdd9a0d8814d2026f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c6da85c64a4cdd9a0d8814d2026f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c6da85c64a4cdd9a0d8814d2026f95.jpg", "file_size": 22631, "is_delete": false, "file_type": 1, "original_file_name": "CGH9284FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c6da85c64a4cdd9a0d8814d2026f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c6da85c64a4cdd9a0d8814d2026f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c6da85c64a4cdd9a0d8814d2026f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c6da85c64a4cdd9a0d8814d2026f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c6da85c64a4cdd9a0d8814d2026f95.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04q2qJ08nx3aayTijzc0eV3WdsA=", "createTime": "2024-08-15 15:06:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.157468+00 2025-12-09 10:15:51.157475+00 19336 8802FWE#3XL VS-D3 SPMX-20240815314565 \N \N \N 1 \N [{"file_id": "753b8e58-b26e-49c8-a1f8-f5bcc55bc066", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efb7630cfd11409f8136ef3b6d3a5f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efb7630cfd11409f8136ef3b6d3a5f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efb7630cfd11409f8136ef3b6d3a5f69.jpg", "file_size": 6136, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb7630cfd11409f8136ef3b6d3a5f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb7630cfd11409f8136ef3b6d3a5f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efb7630cfd11409f8136ef3b6d3a5f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efb7630cfd11409f8136ef3b6d3a5f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efb7630cfd11409f8136ef3b6d3a5f69.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QfldouwX6lgp81FhMUXzeVyK4YA=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.160891+00 2025-12-09 10:15:51.160898+00 19337 LZ1400#上身5号色 SPMX-20240815314578 \N \N \N 1 \N [{"file_id": "708eb92e-5b36-499e-b41f-47abd03372b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e856672853fc4d96aef1a589d44bc30d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e856672853fc4d96aef1a589d44bc30d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e856672853fc4d96aef1a589d44bc30d.jpg", "file_size": 18609, "is_delete": false, "file_type": 1, "original_file_name": "LZ1400#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e856672853fc4d96aef1a589d44bc30d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e856672853fc4d96aef1a589d44bc30d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e856672853fc4d96aef1a589d44bc30d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e856672853fc4d96aef1a589d44bc30d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e856672853fc4d96aef1a589d44bc30d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwEAO17zSPQsrnje5p6cHwqolRo=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.164074+00 2025-12-09 10:15:51.164081+00 19338 8802FWE#L VS-D3 SPMX-20240815314576 \N \N \N 1 \N [{"file_id": "4af58142-0a3e-4a0e-8241-53d13e28254f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6683b2d87744b56ab93dcb5e61cd5ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6683b2d87744b56ab93dcb5e61cd5ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6683b2d87744b56ab93dcb5e61cd5ff.jpg", "file_size": 5699, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6683b2d87744b56ab93dcb5e61cd5ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6683b2d87744b56ab93dcb5e61cd5ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6683b2d87744b56ab93dcb5e61cd5ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6683b2d87744b56ab93dcb5e61cd5ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6683b2d87744b56ab93dcb5e61cd5ff.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHfdEz3McoRrpQn6QBFtJzs8q2U=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.167139+00 2025-12-09 10:15:51.167145+00 19339 JY#16#白底红花 SPMX-20240815314573 \N \N \N 1 \N [{"file_id": "0c2087b9-6bd5-4933-a6c4-e0f1c5428e04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f83f68dcb7c641b893255addc03b64c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f83f68dcb7c641b893255addc03b64c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f83f68dcb7c641b893255addc03b64c5.jpg", "file_size": 18298, "is_delete": false, "file_type": 1, "original_file_name": "JY#16#白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83f68dcb7c641b893255addc03b64c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83f68dcb7c641b893255addc03b64c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f83f68dcb7c641b893255addc03b64c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f83f68dcb7c641b893255addc03b64c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f83f68dcb7c641b893255addc03b64c5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDWpqt_brAv6CiUpxDSSn_K-MOY=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.170373+00 2025-12-09 10:15:51.170379+00 19340 LJH2038#粉色乱花 SPMX-20240815314581 \N \N \N 1 \N [{"file_id": "5f321aa2-1894-41e3-95b1-3e03d5f78901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76e697692d2543dda83d2610e383a0be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76e697692d2543dda83d2610e383a0be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76e697692d2543dda83d2610e383a0be.jpg", "file_size": 62128, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#粉色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e697692d2543dda83d2610e383a0be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e697692d2543dda83d2610e383a0be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76e697692d2543dda83d2610e383a0be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76e697692d2543dda83d2610e383a0be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76e697692d2543dda83d2610e383a0be.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLeYH2WJ5GcwQXIEvcalxhlDhAQ=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.173462+00 2025-12-09 10:15:51.173468+00 19341 FX0003-91#蓝色 SPMX-20240815314575 \N \N \N 1 \N [{"file_id": "69cc4a78-3510-4a86-952d-519eb4193545", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65bfd704a87142b7927dc5a794628708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65bfd704a87142b7927dc5a794628708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65bfd704a87142b7927dc5a794628708.jpg", "file_size": 48446, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-91#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bfd704a87142b7927dc5a794628708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bfd704a87142b7927dc5a794628708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65bfd704a87142b7927dc5a794628708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65bfd704a87142b7927dc5a794628708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65bfd704a87142b7927dc5a794628708.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bX5rHLGU6kUlCZMWYztdxtQxI5g=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.17653+00 2025-12-09 10:15:51.176541+00 19342 236#湖绿 SPMX-20240815314580 \N \N \N 1 \N [{"file_id": "6836f73b-8f78-4bbe-a84f-f53a54311f18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "354caccee4ee4d889d37b25f4e677231.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "354caccee4ee4d889d37b25f4e677231.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "354caccee4ee4d889d37b25f4e677231.jpg", "file_size": 20502, "is_delete": false, "file_type": 1, "original_file_name": "236#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/354caccee4ee4d889d37b25f4e677231.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/354caccee4ee4d889d37b25f4e677231.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/354caccee4ee4d889d37b25f4e677231.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/354caccee4ee4d889d37b25f4e677231.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/354caccee4ee4d889d37b25f4e677231.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rgU6zKdDq3LBTiwQlDwH2O3MBRc=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.179609+00 2025-12-09 10:15:51.179615+00 19343 1231-50FWF#小童袖领匹布 SPMX-20240815314577 \N \N \N 1 \N [{"file_id": "ea0d2bca-9803-44ac-b947-ea2bdc8a5722", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfbddadf461b489f91e5e9d8f1797319.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfbddadf461b489f91e5e9d8f1797319.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfbddadf461b489f91e5e9d8f1797319.jpg", "file_size": 6752, "is_delete": false, "file_type": 1, "original_file_name": "1231-50FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbddadf461b489f91e5e9d8f1797319.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbddadf461b489f91e5e9d8f1797319.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbddadf461b489f91e5e9d8f1797319.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfbddadf461b489f91e5e9d8f1797319.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfbddadf461b489f91e5e9d8f1797319.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:glvFNQr4rwSaNo7MMixNF0Gdjpg=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.182733+00 2025-12-09 10:15:51.182744+00 19344 HXF0008-21#WJC22 SPMX-20240815314582 \N \N \N 1 \N [{"file_id": "211e7a02-2762-46fa-af21-e961bce22f4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86c6640eb10e487393d42b6569b9748c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86c6640eb10e487393d42b6569b9748c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86c6640eb10e487393d42b6569b9748c.jpg", "file_size": 25749, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-21#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6640eb10e487393d42b6569b9748c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6640eb10e487393d42b6569b9748c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86c6640eb10e487393d42b6569b9748c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86c6640eb10e487393d42b6569b9748c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86c6640eb10e487393d42b6569b9748c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JETsMx1UPZgLc4teCjG_zO3qk3s=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.185895+00 2025-12-09 10:15:51.185901+00 19345 001FWF#原版色 SPMX-20240815314579 \N \N \N 1 \N [{"file_id": "01c5a276-7b54-4a85-ac80-249288e6555e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c7b1b07e228401e9ffce2b63fb3bcda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c7b1b07e228401e9ffce2b63fb3bcda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c7b1b07e228401e9ffce2b63fb3bcda.jpg", "file_size": 15274, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7b1b07e228401e9ffce2b63fb3bcda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7b1b07e228401e9ffce2b63fb3bcda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c7b1b07e228401e9ffce2b63fb3bcda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c7b1b07e228401e9ffce2b63fb3bcda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c7b1b07e228401e9ffce2b63fb3bcda.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rtu6CHDPWQH1047dCjnDDfpB56s=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.189005+00 2025-12-09 10:15:51.189012+00 19346 CGH9284FWF#粉色 SPMX-20240815314574 \N \N \N 1 \N [{"file_id": "d0ff7b80-2616-42b7-b3ce-914004c67e74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "300fdf998d644e7291b771167e47dd6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "300fdf998d644e7291b771167e47dd6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "300fdf998d644e7291b771167e47dd6d.jpg", "file_size": 20956, "is_delete": false, "file_type": 1, "original_file_name": "CGH9284FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300fdf998d644e7291b771167e47dd6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300fdf998d644e7291b771167e47dd6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/300fdf998d644e7291b771167e47dd6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/300fdf998d644e7291b771167e47dd6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/300fdf998d644e7291b771167e47dd6d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z3nYqK8UK8OFUYATM1I45VHXHSQ=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.192173+00 2025-12-09 10:15:51.19218+00 19347 DLFS31211#草绿 SPMX-20240815314572 \N \N \N 1 \N [{"file_id": "9eb9c927-2b73-415d-9693-38d0f4a27979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53041a9c83004a39a0bf07f9d7d00fce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53041a9c83004a39a0bf07f9d7d00fce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53041a9c83004a39a0bf07f9d7d00fce.jpg", "file_size": 23505, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53041a9c83004a39a0bf07f9d7d00fce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53041a9c83004a39a0bf07f9d7d00fce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53041a9c83004a39a0bf07f9d7d00fce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53041a9c83004a39a0bf07f9d7d00fce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53041a9c83004a39a0bf07f9d7d00fce.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUgPpkanr7sd1G-3wcxBY6ENm0o=", "createTime": "2024-08-15 15:06:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.195356+00 2025-12-09 10:15:51.195363+00 19348 DLFS31211#蓝绿 SPMX-20240815314583 \N \N \N 1 \N [{"file_id": "4a6825d7-4fdb-4a59-b071-e2287c11f978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d2d38239c8c49039732b87b5d6d435c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d2d38239c8c49039732b87b5d6d435c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d2d38239c8c49039732b87b5d6d435c.jpg", "file_size": 24186, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2d38239c8c49039732b87b5d6d435c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2d38239c8c49039732b87b5d6d435c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d2d38239c8c49039732b87b5d6d435c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d2d38239c8c49039732b87b5d6d435c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d2d38239c8c49039732b87b5d6d435c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ieuHX4l7t1H1AUk0Nb6S_4T8aeA=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.19855+00 2025-12-09 10:15:51.198556+00 19349 1231-51FWF#中童12码+10码 SPMX-20240815314588 \N \N \N 1 \N [{"file_id": "26b2c97e-05c5-466f-8168-ddfe3865053b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30570d560da04046bdbe81f1ef59ec1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30570d560da04046bdbe81f1ef59ec1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30570d560da04046bdbe81f1ef59ec1a.jpg", "file_size": 16738, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30570d560da04046bdbe81f1ef59ec1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30570d560da04046bdbe81f1ef59ec1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30570d560da04046bdbe81f1ef59ec1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30570d560da04046bdbe81f1ef59ec1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30570d560da04046bdbe81f1ef59ec1a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DvclgQVlco--lmi7cCQvYhv4jXY=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.201653+00 2025-12-09 10:15:51.201659+00 19350 8802FWE#M VS-D3 SPMX-20240815314584 \N \N \N 1 \N [{"file_id": "7c83c6fd-8385-4f3f-8a47-85a048876715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53799961f4b7459b863d9c7b2a3855d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53799961f4b7459b863d9c7b2a3855d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53799961f4b7459b863d9c7b2a3855d6.jpg", "file_size": 5954, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53799961f4b7459b863d9c7b2a3855d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53799961f4b7459b863d9c7b2a3855d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53799961f4b7459b863d9c7b2a3855d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53799961f4b7459b863d9c7b2a3855d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53799961f4b7459b863d9c7b2a3855d6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VQGhwcnM7B2pzLuWy3rbFxbYX8Q=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.204767+00 2025-12-09 10:15:51.204773+00 19351 FX0003-91#黄色 SPMX-20240815314586 \N \N \N 1 \N [{"file_id": "d0c752f4-9287-401b-989a-ee18de071040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91d5382dca6e4dcc90646bbf2b5a03a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91d5382dca6e4dcc90646bbf2b5a03a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91d5382dca6e4dcc90646bbf2b5a03a8.jpg", "file_size": 45434, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-91#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d5382dca6e4dcc90646bbf2b5a03a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d5382dca6e4dcc90646bbf2b5a03a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91d5382dca6e4dcc90646bbf2b5a03a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91d5382dca6e4dcc90646bbf2b5a03a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91d5382dca6e4dcc90646bbf2b5a03a8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F1Lz76qYN23BkQ_086guMGhT0mw=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.207975+00 2025-12-09 10:15:51.207981+00 19352 CGH9284FWF#黄色 SPMX-20240815314587 \N \N \N 1 \N [{"file_id": "c61ee8c0-fc6b-4ded-9145-f6bc5bec6bb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4caea829f6eb41f5af170ba4e9553ba1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4caea829f6eb41f5af170ba4e9553ba1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4caea829f6eb41f5af170ba4e9553ba1.jpg", "file_size": 22353, "is_delete": false, "file_type": 1, "original_file_name": "CGH9284FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caea829f6eb41f5af170ba4e9553ba1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caea829f6eb41f5af170ba4e9553ba1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4caea829f6eb41f5af170ba4e9553ba1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4caea829f6eb41f5af170ba4e9553ba1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4caea829f6eb41f5af170ba4e9553ba1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mtCzEZi13A4oune0IYQSFE21bwk=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.211085+00 2025-12-09 10:15:51.211092+00 19353 JY#17#红底白红花 SPMX-20240815314585 \N \N \N 1 \N [{"file_id": "86d07a16-58ec-432d-9ec1-db2f4f309989", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94dfc68672394428a0fb82a678ae40aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94dfc68672394428a0fb82a678ae40aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94dfc68672394428a0fb82a678ae40aa.jpg", "file_size": 13871, "is_delete": false, "file_type": 1, "original_file_name": "JY#17#红底白红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfc68672394428a0fb82a678ae40aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfc68672394428a0fb82a678ae40aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dfc68672394428a0fb82a678ae40aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94dfc68672394428a0fb82a678ae40aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94dfc68672394428a0fb82a678ae40aa.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9M1A1CRVMPfYIlZts5rDNInq9hM=", "createTime": "2024-08-15 15:06:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.214178+00 2025-12-09 10:15:51.214184+00 19354 LZ1401#大人T2号色 SPMX-20240815314589 \N \N \N 1 \N [{"file_id": "e519e5b6-e0d1-4663-a549-88f1b3493321", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4c50a14fddf4120b687050c553b10ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4c50a14fddf4120b687050c553b10ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4c50a14fddf4120b687050c553b10ab.jpg", "file_size": 16961, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c50a14fddf4120b687050c553b10ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c50a14fddf4120b687050c553b10ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4c50a14fddf4120b687050c553b10ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4c50a14fddf4120b687050c553b10ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4c50a14fddf4120b687050c553b10ab.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKoXksSzg7tcufPD8YNGNIlqbP0=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.217244+00 2025-12-09 10:15:51.217251+00 19355 001FWF#粉色 SPMX-20240815314590 \N \N \N 1 \N [{"file_id": "92c582ef-9236-4953-9fd2-c6c1186a6445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bed0b0d4262a4842816c62dce3b7dc51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bed0b0d4262a4842816c62dce3b7dc51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bed0b0d4262a4842816c62dce3b7dc51.jpg", "file_size": 13389, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed0b0d4262a4842816c62dce3b7dc51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed0b0d4262a4842816c62dce3b7dc51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed0b0d4262a4842816c62dce3b7dc51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bed0b0d4262a4842816c62dce3b7dc51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bed0b0d4262a4842816c62dce3b7dc51.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gBh5MpwAPy30_0YvnDIaQXn4z0o=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.220408+00 2025-12-09 10:15:51.220415+00 19356 LJH2038#绿色 SPMX-20240815314592 \N \N \N 1 \N [{"file_id": "2f2a4553-10d0-41df-abf9-c89d51bcbd3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1a6e4d4c4c436294e09671351bf1a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1a6e4d4c4c436294e09671351bf1a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1a6e4d4c4c436294e09671351bf1a8.jpg", "file_size": 74894, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1a6e4d4c4c436294e09671351bf1a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1a6e4d4c4c436294e09671351bf1a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1a6e4d4c4c436294e09671351bf1a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1a6e4d4c4c436294e09671351bf1a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1a6e4d4c4c436294e09671351bf1a8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PTJsRqFSs1c4Dfp5I46wgQfNTdo=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.223568+00 2025-12-09 10:15:51.223574+00 19357 DLFS31211#黄色 SPMX-20240815314594 \N \N \N 1 \N [{"file_id": "6f4c41b2-9c74-4a25-bf98-9cb4f804b737", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b64ee7c02b9842d2986138353498fdd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b64ee7c02b9842d2986138353498fdd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b64ee7c02b9842d2986138353498fdd4.jpg", "file_size": 25468, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31211#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ee7c02b9842d2986138353498fdd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ee7c02b9842d2986138353498fdd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b64ee7c02b9842d2986138353498fdd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b64ee7c02b9842d2986138353498fdd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b64ee7c02b9842d2986138353498fdd4.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwDcMh8wAyh__p40P-Fgq4Ov8QI=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.226712+00 2025-12-09 10:15:51.226719+00 19358 HXF0008-22#WJC22 SPMX-20240815314591 \N \N \N 1 \N [{"file_id": "cf9c3edc-323d-4a6a-9dd9-f5a2bcb10aa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89e0966513c541a08a0eeccca0e4d513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89e0966513c541a08a0eeccca0e4d513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89e0966513c541a08a0eeccca0e4d513.jpg", "file_size": 21192, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-22#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89e0966513c541a08a0eeccca0e4d513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89e0966513c541a08a0eeccca0e4d513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89e0966513c541a08a0eeccca0e4d513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89e0966513c541a08a0eeccca0e4d513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89e0966513c541a08a0eeccca0e4d513.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGMdT-UO7vACDmApAOn3VB9vaxE=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.229746+00 2025-12-09 10:15:51.229752+00 19359 236#湖绿净色 SPMX-20240815314593 \N \N \N 1 \N [{"file_id": "c7b65c0b-c2a4-4de0-a4c8-9386f8f1dc62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a6c4c259e5f47edb5402a65995d26a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a6c4c259e5f47edb5402a65995d26a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a6c4c259e5f47edb5402a65995d26a5.jpg", "file_size": 7809, "is_delete": false, "file_type": 1, "original_file_name": "236#湖绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a6c4c259e5f47edb5402a65995d26a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a6c4c259e5f47edb5402a65995d26a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a6c4c259e5f47edb5402a65995d26a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a6c4c259e5f47edb5402a65995d26a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a6c4c259e5f47edb5402a65995d26a5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ulx_vrjFbFleV4IrPEqA2g_Wz1Q=", "createTime": "2024-08-15 15:06:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.23291+00 2025-12-09 10:15:51.232916+00 19360 JY#18#黑底红花 SPMX-20240815314597 \N \N \N 1 \N [{"file_id": "a7a4e235-7e4a-4ffc-ba2b-411d6129e745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f92192c907a47f791d60a4663ee9090.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f92192c907a47f791d60a4663ee9090.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f92192c907a47f791d60a4663ee9090.jpg", "file_size": 15916, "is_delete": false, "file_type": 1, "original_file_name": "JY#18#黑底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92192c907a47f791d60a4663ee9090.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92192c907a47f791d60a4663ee9090.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f92192c907a47f791d60a4663ee9090.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f92192c907a47f791d60a4663ee9090.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f92192c907a47f791d60a4663ee9090.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Asc15CH2cqQ44lu5Zq8NPVtWhPs=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.235976+00 2025-12-09 10:15:51.235982+00 19361 8802FWE#净色 VS-D3 SPMX-20240815314607 \N \N \N 1 \N [{"file_id": "a01af124-5d88-42e6-baf4-7bf1ca24e0fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de553d8803fc41d08e3f96a4af662d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de553d8803fc41d08e3f96a4af662d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de553d8803fc41d08e3f96a4af662d15.jpg", "file_size": 7614, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#净色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de553d8803fc41d08e3f96a4af662d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de553d8803fc41d08e3f96a4af662d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de553d8803fc41d08e3f96a4af662d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de553d8803fc41d08e3f96a4af662d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de553d8803fc41d08e3f96a4af662d15.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:50yslICbQfAnFTOSOytPgx_0BaA=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.23905+00 2025-12-09 10:15:51.239056+00 19362 FX0003-91#黑色 SPMX-20240815314595 \N \N \N 1 \N [{"file_id": "ece54401-9735-4889-bfbd-8b88f92d0ab2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3abf3c15b65645beaa0fed3f08729674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3abf3c15b65645beaa0fed3f08729674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3abf3c15b65645beaa0fed3f08729674.jpg", "file_size": 46314, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-91#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abf3c15b65645beaa0fed3f08729674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abf3c15b65645beaa0fed3f08729674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abf3c15b65645beaa0fed3f08729674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3abf3c15b65645beaa0fed3f08729674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3abf3c15b65645beaa0fed3f08729674.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xqNYlsS2GlO1YflQTR1qyrXRcaY=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.242172+00 2025-12-09 10:15:51.242181+00 19363 CGH9368#LWQ15 SPMX-20240815314601 \N \N \N 1 \N [{"file_id": "dc73c674-27e1-41bf-9060-7440c493c8bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b6e35b08d7a4f0aa66814d40ffbfab2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b6e35b08d7a4f0aa66814d40ffbfab2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b6e35b08d7a4f0aa66814d40ffbfab2.jpg", "file_size": 27282, "is_delete": false, "file_type": 1, "original_file_name": "CGH9368#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6e35b08d7a4f0aa66814d40ffbfab2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6e35b08d7a4f0aa66814d40ffbfab2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b6e35b08d7a4f0aa66814d40ffbfab2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b6e35b08d7a4f0aa66814d40ffbfab2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b6e35b08d7a4f0aa66814d40ffbfab2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e1RCnnHXT12oHE_IKN0sIn4-xUk=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.245324+00 2025-12-09 10:15:51.245329+00 19364 HXF0008-23#粉底净色 SPMX-20240815314602 \N \N \N 1 \N [{"file_id": "b2b1d989-f6ed-4a7e-af86-7149dc2dd0b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg", "file_size": 7589, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-23#粉底净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0de0ccbe2b34f00aa0e319b9fd7cfd6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vhe4M0FPUz3RHDx_EenQ6PhES0s=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.24848+00 2025-12-09 10:15:51.248486+00 19365 LZ1401#大人上身1号色 SPMX-20240815314600 \N \N \N 1 \N [{"file_id": "61f99288-78f9-4a0d-a6a4-54e0c3e50ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "053d86d8df6a45ce90e3870514903814.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "053d86d8df6a45ce90e3870514903814.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "053d86d8df6a45ce90e3870514903814.jpg", "file_size": 17215, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/053d86d8df6a45ce90e3870514903814.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/053d86d8df6a45ce90e3870514903814.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/053d86d8df6a45ce90e3870514903814.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/053d86d8df6a45ce90e3870514903814.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/053d86d8df6a45ce90e3870514903814.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tJe29PYFgW0KHtS_Si-jPgx1u5E=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.251573+00 2025-12-09 10:15:51.251578+00 19366 236#白色 SPMX-20240815314604 \N \N \N 1 \N [{"file_id": "15d097f1-4143-4b96-acc6-5dd116ae2d8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "895e081019d547ac8a226b39bedfd2ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "895e081019d547ac8a226b39bedfd2ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "895e081019d547ac8a226b39bedfd2ae.jpg", "file_size": 19162, "is_delete": false, "file_type": 1, "original_file_name": "236#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895e081019d547ac8a226b39bedfd2ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895e081019d547ac8a226b39bedfd2ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/895e081019d547ac8a226b39bedfd2ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/895e081019d547ac8a226b39bedfd2ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/895e081019d547ac8a226b39bedfd2ae.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KrsyPXyHkm8Q9f2ZfInrp_momrM=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.254671+00 2025-12-09 10:15:51.254677+00 19367 1231-51FWF#中童袖领匹布 SPMX-20240815314605 \N \N \N 1 \N [{"file_id": "b200f7c5-a642-4802-9ebc-ab9b79e9dae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f08c7037ba6446d992888c6a778f24b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f08c7037ba6446d992888c6a778f24b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f08c7037ba6446d992888c6a778f24b.jpg", "file_size": 10133, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f08c7037ba6446d992888c6a778f24b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f08c7037ba6446d992888c6a778f24b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f08c7037ba6446d992888c6a778f24b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f08c7037ba6446d992888c6a778f24b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f08c7037ba6446d992888c6a778f24b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RD_EaK5c4uaD_yXD_II5eGo43HM=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.257771+00 2025-12-09 10:15:51.257777+00 19368 1231-51FWF#中童14码 SPMX-20240815314596 \N \N \N 1 \N [{"file_id": "96dd13df-a29f-4ba6-a8ea-1be1ab79ff13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "995219c99f9b4f0da9ff5929dd21320b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "995219c99f9b4f0da9ff5929dd21320b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "995219c99f9b4f0da9ff5929dd21320b.jpg", "file_size": 15887, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995219c99f9b4f0da9ff5929dd21320b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995219c99f9b4f0da9ff5929dd21320b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995219c99f9b4f0da9ff5929dd21320b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/995219c99f9b4f0da9ff5929dd21320b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/995219c99f9b4f0da9ff5929dd21320b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TkyB907rdBsc_lR7xCP5-G-vNk4=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.260923+00 2025-12-09 10:15:51.260929+00 19369 001FWF#链条彩兰 SPMX-20240815314599 \N \N \N 1 \N [{"file_id": "309ed053-e6a4-4e59-9059-fbcd53d39ec0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3de1e5f322f84a3e948296dbf463289d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3de1e5f322f84a3e948296dbf463289d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3de1e5f322f84a3e948296dbf463289d.jpg", "file_size": 21512, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#链条彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de1e5f322f84a3e948296dbf463289d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de1e5f322f84a3e948296dbf463289d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de1e5f322f84a3e948296dbf463289d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3de1e5f322f84a3e948296dbf463289d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3de1e5f322f84a3e948296dbf463289d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FBlznAuIZgJnXUdDgjaUgxBdmdc=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.264093+00 2025-12-09 10:15:51.264099+00 19370 LJH2038#绿色乱花 SPMX-20240815314603 \N \N \N 1 \N [{"file_id": "a41f5a9a-e301-471c-8b6d-e29c4a5e895d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2ae4eab5b2f4573b87daf87c73ab67b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2ae4eab5b2f4573b87daf87c73ab67b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2ae4eab5b2f4573b87daf87c73ab67b.jpg", "file_size": 62905, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#绿色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae4eab5b2f4573b87daf87c73ab67b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae4eab5b2f4573b87daf87c73ab67b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2ae4eab5b2f4573b87daf87c73ab67b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2ae4eab5b2f4573b87daf87c73ab67b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2ae4eab5b2f4573b87daf87c73ab67b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AweR0OB61oxvrv2mQ5nIUoIC2YI=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.267249+00 2025-12-09 10:15:51.267255+00 19371 FX0003-92#白色 SPMX-20240815314608 \N \N \N 1 \N [{"file_id": "082367a9-c0e2-4a2f-9535-216384d7fea0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84a1b9fda93842c3bdc5e051fb630f19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84a1b9fda93842c3bdc5e051fb630f19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84a1b9fda93842c3bdc5e051fb630f19.jpg", "file_size": 47507, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-92#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a1b9fda93842c3bdc5e051fb630f19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a1b9fda93842c3bdc5e051fb630f19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84a1b9fda93842c3bdc5e051fb630f19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84a1b9fda93842c3bdc5e051fb630f19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84a1b9fda93842c3bdc5e051fb630f19.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnMLkmv1G82W0l7L9NnGMyu6nDA=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.270333+00 2025-12-09 10:15:51.270339+00 19372 JY#19#黑底桔色 SPMX-20240815314609 \N \N \N 1 \N [{"file_id": "ccb4336e-83b7-45f7-99a0-1dbcf35cb252", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6c9d197d6664ac087543d83842d6695.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6c9d197d6664ac087543d83842d6695.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6c9d197d6664ac087543d83842d6695.jpg", "file_size": 17308, "is_delete": false, "file_type": 1, "original_file_name": "JY#19#黑底桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c9d197d6664ac087543d83842d6695.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c9d197d6664ac087543d83842d6695.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c9d197d6664ac087543d83842d6695.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6c9d197d6664ac087543d83842d6695.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6c9d197d6664ac087543d83842d6695.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N2w3GZpz2ItmNTQhApS0kP3PZDo=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.273444+00 2025-12-09 10:15:51.273451+00 19373 DLFS31212#墨绿 SPMX-20240815314606 \N \N \N 1 \N [{"file_id": "80107d17-3b45-4094-a6e8-025220b79ad9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a3c023df96949bbaafb6a5cea31e7dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a3c023df96949bbaafb6a5cea31e7dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a3c023df96949bbaafb6a5cea31e7dc.jpg", "file_size": 8316, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c023df96949bbaafb6a5cea31e7dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c023df96949bbaafb6a5cea31e7dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a3c023df96949bbaafb6a5cea31e7dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a3c023df96949bbaafb6a5cea31e7dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a3c023df96949bbaafb6a5cea31e7dc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B3LfyIxJo8_LUfTaV-NmEwnCd1Q=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.276458+00 2025-12-09 10:15:51.276465+00 19374 CGH9369#LWQ15 SPMX-20240815314610 \N \N \N 1 \N [{"file_id": "f720a5cc-37d2-49ac-bcab-4ac87991b344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45009aeed29d4237ac47dfe66f31cb5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45009aeed29d4237ac47dfe66f31cb5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45009aeed29d4237ac47dfe66f31cb5e.jpg", "file_size": 13152, "is_delete": false, "file_type": 1, "original_file_name": "CGH9369#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45009aeed29d4237ac47dfe66f31cb5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45009aeed29d4237ac47dfe66f31cb5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45009aeed29d4237ac47dfe66f31cb5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45009aeed29d4237ac47dfe66f31cb5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45009aeed29d4237ac47dfe66f31cb5e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nt6h5uLaVtQV0a_XFmZtTGzJnC4=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.279506+00 2025-12-09 10:15:51.279512+00 19375 8802FWE#XL VS-D3 SPMX-20240815314598 \N \N \N 1 \N [{"file_id": "1728bbe3-6060-45c6-b139-3c805720b899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c05b273984044e81a038bc361a0acc26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c05b273984044e81a038bc361a0acc26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c05b273984044e81a038bc361a0acc26.jpg", "file_size": 6099, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05b273984044e81a038bc361a0acc26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05b273984044e81a038bc361a0acc26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05b273984044e81a038bc361a0acc26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c05b273984044e81a038bc361a0acc26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c05b273984044e81a038bc361a0acc26.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEabWF66mA90U5bnCmvIEde1gfI=", "createTime": "2024-08-15 15:06:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.282656+00 2025-12-09 10:15:51.282662+00 19376 DLFS31212#彩兰 SPMX-20240815314615 \N \N \N 1 \N [{"file_id": "4c0723c1-7366-445f-a05e-a232628e0519", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d3f2153957d4534b1d88b389ac8201a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d3f2153957d4534b1d88b389ac8201a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d3f2153957d4534b1d88b389ac8201a.jpg", "file_size": 8796, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3f2153957d4534b1d88b389ac8201a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3f2153957d4534b1d88b389ac8201a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3f2153957d4534b1d88b389ac8201a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d3f2153957d4534b1d88b389ac8201a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d3f2153957d4534b1d88b389ac8201a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SEc4BufAVRCd3H6s_8hjHj_iw7M=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.286209+00 2025-12-09 10:15:51.286216+00 19377 FX0003-92#黑色 SPMX-20240815314618 \N \N \N 1 \N [{"file_id": "a78b34c5-415f-4ba9-9fea-152191869167", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5511b8530ea241f1a402f76c81d00928.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5511b8530ea241f1a402f76c81d00928.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5511b8530ea241f1a402f76c81d00928.jpg", "file_size": 45858, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-92#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5511b8530ea241f1a402f76c81d00928.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5511b8530ea241f1a402f76c81d00928.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5511b8530ea241f1a402f76c81d00928.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5511b8530ea241f1a402f76c81d00928.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5511b8530ea241f1a402f76c81d00928.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rhFske31Vhn7Eyz7jCBUEBWOrZs=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.289379+00 2025-12-09 10:15:51.289385+00 19378 8802FWE#裤子印花 VS-D3 SPMX-20240815314619 \N \N \N 1 \N [{"file_id": "22ed26c9-a097-411e-9c10-7a067e2b796e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5adbbbb79a3452bacf1107e4efea735.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5adbbbb79a3452bacf1107e4efea735.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5adbbbb79a3452bacf1107e4efea735.jpg", "file_size": 16370, "is_delete": false, "file_type": 1, "original_file_name": "8802FWE#裤子印花 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5adbbbb79a3452bacf1107e4efea735.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5adbbbb79a3452bacf1107e4efea735.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5adbbbb79a3452bacf1107e4efea735.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5adbbbb79a3452bacf1107e4efea735.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5adbbbb79a3452bacf1107e4efea735.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zo7OQCESHBdfcrmZrWcgZmngD50=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.292436+00 2025-12-09 10:15:51.292443+00 19379 236#金黄净色 SPMX-20240815314626 \N \N \N 1 \N [{"file_id": "6b43b807-f833-419d-97dc-cadecba2cb94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a8b382aa254424f9cc396e39425b3bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a8b382aa254424f9cc396e39425b3bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a8b382aa254424f9cc396e39425b3bf.jpg", "file_size": 8151, "is_delete": false, "file_type": 1, "original_file_name": "236#金黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8b382aa254424f9cc396e39425b3bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8b382aa254424f9cc396e39425b3bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a8b382aa254424f9cc396e39425b3bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a8b382aa254424f9cc396e39425b3bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a8b382aa254424f9cc396e39425b3bf.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:64getAxiSq3Ur33r8d3ZXSUCO7s=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.295572+00 2025-12-09 10:15:51.29558+00 19380 236#金黄 SPMX-20240815314616 \N \N \N 1 \N [{"file_id": "5f9e3ece-c0e1-4257-b261-b293a37b4c52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c8a3df1b35243d5bb82e85a12a17dc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c8a3df1b35243d5bb82e85a12a17dc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c8a3df1b35243d5bb82e85a12a17dc3.jpg", "file_size": 19913, "is_delete": false, "file_type": 1, "original_file_name": "236#金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8a3df1b35243d5bb82e85a12a17dc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8a3df1b35243d5bb82e85a12a17dc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c8a3df1b35243d5bb82e85a12a17dc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c8a3df1b35243d5bb82e85a12a17dc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c8a3df1b35243d5bb82e85a12a17dc3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kZjnNIjN2gn8qONjsxaDC8L7u7U=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.298736+00 2025-12-09 10:15:51.298742+00 19381 001FWF#链条红色 SPMX-20240815314621 \N \N \N 1 \N [{"file_id": "f1800feb-c76c-45df-b9fe-97934354137a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dd1475dbd604b4fa0d4ce73620b26f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dd1475dbd604b4fa0d4ce73620b26f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dd1475dbd604b4fa0d4ce73620b26f0.jpg", "file_size": 20074, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#链条红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd1475dbd604b4fa0d4ce73620b26f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd1475dbd604b4fa0d4ce73620b26f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dd1475dbd604b4fa0d4ce73620b26f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dd1475dbd604b4fa0d4ce73620b26f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dd1475dbd604b4fa0d4ce73620b26f0.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qzTVBHy_Z60re1lxH5A2i4rFa-U=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.30193+00 2025-12-09 10:15:51.301937+00 19382 LZ1401#大人上身3号色 SPMX-20240815314623 \N \N \N 1 \N [{"file_id": "4ef77717-d65a-42d4-b4c5-db1df0dd51d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3474379f5f748d5a66ba6619918d6ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3474379f5f748d5a66ba6619918d6ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3474379f5f748d5a66ba6619918d6ac.jpg", "file_size": 15005, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3474379f5f748d5a66ba6619918d6ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3474379f5f748d5a66ba6619918d6ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3474379f5f748d5a66ba6619918d6ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3474379f5f748d5a66ba6619918d6ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3474379f5f748d5a66ba6619918d6ac.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cT3USn5LCoxxmpjAfa7UBaxZTLs=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.305001+00 2025-12-09 10:15:51.305007+00 19383 001FWF#链条杏色 SPMX-20240815314611 \N \N \N 1 \N [{"file_id": "990988f7-dd0d-446e-a212-663cb214f758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb027047a544244852d5e44af33046c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb027047a544244852d5e44af33046c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb027047a544244852d5e44af33046c.jpg", "file_size": 17627, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#链条杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb027047a544244852d5e44af33046c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb027047a544244852d5e44af33046c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb027047a544244852d5e44af33046c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb027047a544244852d5e44af33046c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb027047a544244852d5e44af33046c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vfjh14YyiZYCMy4Fr75G5sdeX8w=", "createTime": "2024-08-15 15:06:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.308146+00 2025-12-09 10:15:51.308152+00 19384 LJH2038#蓝色乱花 SPMX-20240815314627 \N \N \N 1 \N [{"file_id": "4bb3fda1-2561-4a2a-850a-428263421009", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34b043e03e5241eeac802ead17d7c778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34b043e03e5241eeac802ead17d7c778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34b043e03e5241eeac802ead17d7c778.jpg", "file_size": 60799, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#蓝色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b043e03e5241eeac802ead17d7c778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b043e03e5241eeac802ead17d7c778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34b043e03e5241eeac802ead17d7c778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34b043e03e5241eeac802ead17d7c778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34b043e03e5241eeac802ead17d7c778.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IMjX2KSm3VLTPd05xCJ_Ly3_hu4=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.311163+00 2025-12-09 10:15:51.311169+00 19385 DLFS31212#浅粉 SPMX-20240815314625 \N \N \N 1 \N [{"file_id": "2112b87c-60b9-49f1-9425-739052a9f438", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "151e58595afd4d8a995bf5a3f81f17ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "151e58595afd4d8a995bf5a3f81f17ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "151e58595afd4d8a995bf5a3f81f17ef.jpg", "file_size": 7844, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/151e58595afd4d8a995bf5a3f81f17ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/151e58595afd4d8a995bf5a3f81f17ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/151e58595afd4d8a995bf5a3f81f17ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/151e58595afd4d8a995bf5a3f81f17ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/151e58595afd4d8a995bf5a3f81f17ef.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3CbNtRN2uzj0scIcHq2a1M8-GDc=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.314175+00 2025-12-09 10:15:51.314181+00 19386 HXF0008-23#粉底番禺调色 SPMX-20240815314613 \N \N \N 1 \N [{"file_id": "0d4424ec-f6d1-4705-beea-68fdc93bd019", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff01df6093df4c8ab3f43db75364f49e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff01df6093df4c8ab3f43db75364f49e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff01df6093df4c8ab3f43db75364f49e.jpg", "file_size": 21520, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-23#粉底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff01df6093df4c8ab3f43db75364f49e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff01df6093df4c8ab3f43db75364f49e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff01df6093df4c8ab3f43db75364f49e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff01df6093df4c8ab3f43db75364f49e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff01df6093df4c8ab3f43db75364f49e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYLc3_iJTWiqwz2I-e6x5jmoCn4=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.317298+00 2025-12-09 10:15:51.317303+00 19387 1231-51FWF#小童12码+10码 SPMX-20240815314617 \N \N \N 1 \N [{"file_id": "954b82e1-3f7f-4d8b-a799-711d6ebfc4c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0c1664241de44aca260988e04a92381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0c1664241de44aca260988e04a92381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0c1664241de44aca260988e04a92381.jpg", "file_size": 17952, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#小童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0c1664241de44aca260988e04a92381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0c1664241de44aca260988e04a92381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0c1664241de44aca260988e04a92381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0c1664241de44aca260988e04a92381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0c1664241de44aca260988e04a92381.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UrqYgaMLS2x5LLMbwOllmv2q2U=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.320555+00 2025-12-09 10:15:51.320561+00 19388 HXF0008-23#蓝底番禺调色 SPMX-20240815314624 \N \N \N 1 \N [{"file_id": "9b07e680-9de3-4e47-a224-770cc3f85638", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "091f92b0aeb34caea8d4ee93c7a790be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "091f92b0aeb34caea8d4ee93c7a790be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "091f92b0aeb34caea8d4ee93c7a790be.jpg", "file_size": 21485, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-23#蓝底番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091f92b0aeb34caea8d4ee93c7a790be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091f92b0aeb34caea8d4ee93c7a790be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/091f92b0aeb34caea8d4ee93c7a790be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/091f92b0aeb34caea8d4ee93c7a790be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/091f92b0aeb34caea8d4ee93c7a790be.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BttYCbbjI_rWV8ZMSg3HlHS8OiE=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.323779+00 2025-12-09 10:15:51.323786+00 19389 CGH9370#WJC22番禺调色 SPMX-20240815314620 \N \N \N 1 \N [{"file_id": "5545ee84-3bbe-4385-a633-bbc308f691d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e989720b6619487f99ae3f4a0eb42c0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e989720b6619487f99ae3f4a0eb42c0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e989720b6619487f99ae3f4a0eb42c0c.jpg", "file_size": 15716, "is_delete": false, "file_type": 1, "original_file_name": "CGH9370#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e989720b6619487f99ae3f4a0eb42c0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e989720b6619487f99ae3f4a0eb42c0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e989720b6619487f99ae3f4a0eb42c0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e989720b6619487f99ae3f4a0eb42c0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e989720b6619487f99ae3f4a0eb42c0c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAhlUsBXXsfOgH3ReRfye7Ub7AI=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.326885+00 2025-12-09 10:15:51.32689+00 19390 LZ1401#大人上身2号色 SPMX-20240815314612 \N \N \N 1 \N [{"file_id": "601b0e01-f4ed-412b-a771-09ece3ef35b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cba77f7cdbf460d8c19c1d9056ee48e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cba77f7cdbf460d8c19c1d9056ee48e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cba77f7cdbf460d8c19c1d9056ee48e.jpg", "file_size": 16769, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cba77f7cdbf460d8c19c1d9056ee48e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cba77f7cdbf460d8c19c1d9056ee48e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cba77f7cdbf460d8c19c1d9056ee48e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cba77f7cdbf460d8c19c1d9056ee48e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cba77f7cdbf460d8c19c1d9056ee48e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ue_KHJJ4HQGWqE6z1WSIxS4_G04=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.329929+00 2025-12-09 10:15:51.329935+00 19391 LJH2038#蓝色 SPMX-20240815314614 \N \N \N 1 \N [{"file_id": "0667520a-0023-4ece-8567-cab2ee293fd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0507b587cec44ba38877167102662cfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0507b587cec44ba38877167102662cfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0507b587cec44ba38877167102662cfc.jpg", "file_size": 69182, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0507b587cec44ba38877167102662cfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0507b587cec44ba38877167102662cfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0507b587cec44ba38877167102662cfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0507b587cec44ba38877167102662cfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0507b587cec44ba38877167102662cfc.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MD8HjCplNu9GRcPSGANMombnRv4=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.333177+00 2025-12-09 10:15:51.333184+00 19392 JY#19#黑底桔花 SPMX-20240815314622 \N \N \N 1 \N [{"file_id": "959378e4-3920-4014-ab0b-aa24b0c4628c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e868e0d838543db8b3ecb6a3327d20a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e868e0d838543db8b3ecb6a3327d20a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e868e0d838543db8b3ecb6a3327d20a.jpg", "file_size": 16884, "is_delete": false, "file_type": 1, "original_file_name": "JY#19#黑底桔花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e868e0d838543db8b3ecb6a3327d20a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e868e0d838543db8b3ecb6a3327d20a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e868e0d838543db8b3ecb6a3327d20a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e868e0d838543db8b3ecb6a3327d20a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e868e0d838543db8b3ecb6a3327d20a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cuuVhwxYEkN-nQSog5D9Lpug_fw=", "createTime": "2024-08-15 15:06:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.336347+00 2025-12-09 10:15:51.336353+00 19393 1231-51FWF#小童14码 SPMX-20240815314629 \N \N \N 1 \N [{"file_id": "d9ab49fc-742e-4528-879a-8e09c99d76f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88a1f3b8cf4646cb890e5bc94acddd3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88a1f3b8cf4646cb890e5bc94acddd3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88a1f3b8cf4646cb890e5bc94acddd3d.jpg", "file_size": 16208, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#小童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a1f3b8cf4646cb890e5bc94acddd3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a1f3b8cf4646cb890e5bc94acddd3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a1f3b8cf4646cb890e5bc94acddd3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88a1f3b8cf4646cb890e5bc94acddd3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88a1f3b8cf4646cb890e5bc94acddd3d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QnDzUJTX0i1ZIRTWjR4InW8zJyA=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.339462+00 2025-12-09 10:15:51.339467+00 19394 HXF0008-24#WJC22 SPMX-20240815314634 \N \N \N 1 \N [{"file_id": "5fc6a445-eb55-4004-b39c-36d6cb3915cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc8ccb75f48246ddad9da1c87d9853ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc8ccb75f48246ddad9da1c87d9853ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc8ccb75f48246ddad9da1c87d9853ca.jpg", "file_size": 14205, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8ccb75f48246ddad9da1c87d9853ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8ccb75f48246ddad9da1c87d9853ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc8ccb75f48246ddad9da1c87d9853ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc8ccb75f48246ddad9da1c87d9853ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc8ccb75f48246ddad9da1c87d9853ca.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AWRDkFOXNfH145HYqPvp_DF2dBs=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.342597+00 2025-12-09 10:15:51.342603+00 19395 236#黑武士 SPMX-20240815314637 \N \N \N 1 \N [{"file_id": "9ca46492-e471-4082-8334-51422d6d57de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9770b6070da74490aa7d493228e97c0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9770b6070da74490aa7d493228e97c0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9770b6070da74490aa7d493228e97c0b.jpg", "file_size": 8167, "is_delete": false, "file_type": 1, "original_file_name": "236#黑武士.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9770b6070da74490aa7d493228e97c0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9770b6070da74490aa7d493228e97c0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9770b6070da74490aa7d493228e97c0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9770b6070da74490aa7d493228e97c0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9770b6070da74490aa7d493228e97c0b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XC3aRSJ5YYZ6-sDhMkUqVp-mmGc=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.345745+00 2025-12-09 10:15:51.345756+00 19396 001FWF#链条黑色 SPMX-20240815314632 \N \N \N 1 \N [{"file_id": "d40fd778-e1e6-4f70-8faa-dbd2c1ace37c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg", "file_size": 21297, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#链条黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fae8abae2a0f4ab3ad670a8e2c6c1d6a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f4mHRJM7I4sEUY09_JhKp1UUT5w=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.348901+00 2025-12-09 10:15:51.348907+00 19397 8803#天蓝净色 SPMX-20240815314628 \N \N \N 1 \N [{"file_id": "817328d2-dd44-4293-94a6-80ff711c1c72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5921fa032add46beaf6336ff0967d86e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5921fa032add46beaf6336ff0967d86e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5921fa032add46beaf6336ff0967d86e.jpg", "file_size": 5306, "is_delete": false, "file_type": 1, "original_file_name": "8803#天蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5921fa032add46beaf6336ff0967d86e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5921fa032add46beaf6336ff0967d86e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5921fa032add46beaf6336ff0967d86e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5921fa032add46beaf6336ff0967d86e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5921fa032add46beaf6336ff0967d86e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QF-rvN1sQONPWfj7apQS39eOHnA=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.352016+00 2025-12-09 10:15:51.352022+00 19398 JY#2#蓝底粉白花 SPMX-20240815314635 \N \N \N 1 \N [{"file_id": "6d994975-aee8-4266-99ee-20f31ccfe73b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c5b9c1dcb494b028ccef0d146bd5e58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c5b9c1dcb494b028ccef0d146bd5e58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c5b9c1dcb494b028ccef0d146bd5e58.jpg", "file_size": 16426, "is_delete": false, "file_type": 1, "original_file_name": "JY#2#蓝底粉白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c5b9c1dcb494b028ccef0d146bd5e58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c5b9c1dcb494b028ccef0d146bd5e58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c5b9c1dcb494b028ccef0d146bd5e58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c5b9c1dcb494b028ccef0d146bd5e58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c5b9c1dcb494b028ccef0d146bd5e58.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4xwbYYyHfJfVaLSe1YP3Dpun0yY=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.355149+00 2025-12-09 10:15:51.355155+00 19399 FX0003-93#RC23 SPMX-20240815314630 \N \N \N 1 \N [{"file_id": "3168c0e5-10cb-4f23-bf32-6ac98e350774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8234d77637943f68dcbf91a6d1fc194.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8234d77637943f68dcbf91a6d1fc194.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8234d77637943f68dcbf91a6d1fc194.jpg", "file_size": 73186, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-93#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8234d77637943f68dcbf91a6d1fc194.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8234d77637943f68dcbf91a6d1fc194.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8234d77637943f68dcbf91a6d1fc194.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8234d77637943f68dcbf91a6d1fc194.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8234d77637943f68dcbf91a6d1fc194.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jb6_B14no-_iJUlH_u2NJAhZgtg=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.358196+00 2025-12-09 10:15:51.358203+00 19400 LZ1401#大人上身4号色 SPMX-20240815314633 \N \N \N 1 \N [{"file_id": "cc61932b-c1b0-42f0-90a9-dfb31dc46835", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1273ef824a74430afd25aa652ac6294.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1273ef824a74430afd25aa652ac6294.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1273ef824a74430afd25aa652ac6294.jpg", "file_size": 16545, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1273ef824a74430afd25aa652ac6294.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1273ef824a74430afd25aa652ac6294.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1273ef824a74430afd25aa652ac6294.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1273ef824a74430afd25aa652ac6294.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1273ef824a74430afd25aa652ac6294.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0yOG7OGNj9vNA-O1bhzybuFgH0=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.361295+00 2025-12-09 10:15:51.361301+00 19401 LJH2038#黑色 SPMX-20240815314638 \N \N \N 1 \N [{"file_id": "e6ace7fe-c0f5-43de-be4a-16a03041689c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "703c8cbb25994a8d9472d6c4973e479e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "703c8cbb25994a8d9472d6c4973e479e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "703c8cbb25994a8d9472d6c4973e479e.jpg", "file_size": 73823, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703c8cbb25994a8d9472d6c4973e479e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703c8cbb25994a8d9472d6c4973e479e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/703c8cbb25994a8d9472d6c4973e479e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/703c8cbb25994a8d9472d6c4973e479e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/703c8cbb25994a8d9472d6c4973e479e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d9Am5C7_OU6SPkvwnyP_23JWugQ=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.364495+00 2025-12-09 10:15:51.364502+00 19402 CGH9394#白色 SPMX-20240815314631 \N \N \N 1 \N [{"file_id": "a2f5c4aa-cb78-4966-b2d1-fa573fc86843", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37d1592878874717b69ec94c8a95d8ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37d1592878874717b69ec94c8a95d8ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37d1592878874717b69ec94c8a95d8ff.jpg", "file_size": 13544, "is_delete": false, "file_type": 1, "original_file_name": "CGH9394#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d1592878874717b69ec94c8a95d8ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d1592878874717b69ec94c8a95d8ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37d1592878874717b69ec94c8a95d8ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37d1592878874717b69ec94c8a95d8ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37d1592878874717b69ec94c8a95d8ff.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMWVa_puzGzjGmGXYYinxa0P7OQ=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.367487+00 2025-12-09 10:15:51.367494+00 19403 DLFS31212#草绿 SPMX-20240815314636 \N \N \N 1 \N [{"file_id": "5aeff647-7f51-4723-aa5b-0456a62c3779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1be1cded7423403b8777a8ef9e804450.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1be1cded7423403b8777a8ef9e804450.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1be1cded7423403b8777a8ef9e804450.jpg", "file_size": 8382, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1be1cded7423403b8777a8ef9e804450.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1be1cded7423403b8777a8ef9e804450.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1be1cded7423403b8777a8ef9e804450.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1be1cded7423403b8777a8ef9e804450.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1be1cded7423403b8777a8ef9e804450.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kze10MfxOeQAoA42BiHnifVSpkc=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.370518+00 2025-12-09 10:15:51.370524+00 19404 CGH9394#粉色 SPMX-20240815314641 \N \N \N 1 \N [{"file_id": "814dcfc5-a2dd-420f-8a0a-fd2550ab745e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd9375f108f14daa8a193c3727eb9ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd9375f108f14daa8a193c3727eb9ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd9375f108f14daa8a193c3727eb9ad1.jpg", "file_size": 14259, "is_delete": false, "file_type": 1, "original_file_name": "CGH9394#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd9375f108f14daa8a193c3727eb9ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd9375f108f14daa8a193c3727eb9ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd9375f108f14daa8a193c3727eb9ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd9375f108f14daa8a193c3727eb9ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd9375f108f14daa8a193c3727eb9ad1.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GQ5arZLgu-Lk6bHndrEHh3ZxP_g=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.373557+00 2025-12-09 10:15:51.373564+00 19405 8803#宝蓝净色 SPMX-20240815314640 \N \N \N 1 \N [{"file_id": "28303b54-7e94-4a8f-8a8f-322490878147", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b22fb49b78440e7b6eb26e3fd1fc182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b22fb49b78440e7b6eb26e3fd1fc182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b22fb49b78440e7b6eb26e3fd1fc182.jpg", "file_size": 7634, "is_delete": false, "file_type": 1, "original_file_name": "8803#宝蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b22fb49b78440e7b6eb26e3fd1fc182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b22fb49b78440e7b6eb26e3fd1fc182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b22fb49b78440e7b6eb26e3fd1fc182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b22fb49b78440e7b6eb26e3fd1fc182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b22fb49b78440e7b6eb26e3fd1fc182.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxAHGRKNrBL_HrdkqDiYgPzYSOc=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.376681+00 2025-12-09 10:15:51.376687+00 19406 8803#杏色净色 SPMX-20240815314652 \N \N \N 1 \N [{"file_id": "7981ffb0-a81d-4869-80e0-9847ac7ed45e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c10fd981836430e8b6326695488ca96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c10fd981836430e8b6326695488ca96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c10fd981836430e8b6326695488ca96.jpg", "file_size": 3468, "is_delete": false, "file_type": 1, "original_file_name": "8803#杏色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c10fd981836430e8b6326695488ca96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c10fd981836430e8b6326695488ca96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c10fd981836430e8b6326695488ca96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c10fd981836430e8b6326695488ca96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c10fd981836430e8b6326695488ca96.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKLGCpZQ85Pq121a95plB-0MqVY=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.379727+00 2025-12-09 10:15:51.379734+00 19407 FX0003-94#RC23 SPMX-20240815314653 \N \N \N 1 \N [{"file_id": "2c90d593-b50f-4de9-bbce-ac56fb20ecd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134356e8f0754a74977705b42e448a25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134356e8f0754a74977705b42e448a25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134356e8f0754a74977705b42e448a25.jpg", "file_size": 69245, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-94#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134356e8f0754a74977705b42e448a25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134356e8f0754a74977705b42e448a25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134356e8f0754a74977705b42e448a25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134356e8f0754a74977705b42e448a25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134356e8f0754a74977705b42e448a25.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:odfz4rWFAfFcGViZRJ0FV59fM90=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.395266+00 2025-12-09 10:15:51.395272+00 19412 JY#2#黑底红花 SPMX-20240815314646 \N \N \N 1 \N [{"file_id": "bb96d3eb-def3-4b31-ad80-a618b533e987", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fef507de198e49b89a1bb859b22d24ec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fef507de198e49b89a1bb859b22d24ec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fef507de198e49b89a1bb859b22d24ec.jpg", "file_size": 15800, "is_delete": false, "file_type": 1, "original_file_name": "JY#2#黑底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef507de198e49b89a1bb859b22d24ec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef507de198e49b89a1bb859b22d24ec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fef507de198e49b89a1bb859b22d24ec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fef507de198e49b89a1bb859b22d24ec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fef507de198e49b89a1bb859b22d24ec.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNY89-pi5m29jANHqQ6TiP8w8eA=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.382786+00 2025-12-09 10:15:51.382793+00 19408 HXF0008-24#粉色2XL SPMX-20240815314654 \N \N \N 1 \N [{"file_id": "f1b4beac-1476-4e09-900b-7088ac1f1991", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "311b7ad469494cb7a9f7b61feef753de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "311b7ad469494cb7a9f7b61feef753de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "311b7ad469494cb7a9f7b61feef753de.jpg", "file_size": 16133, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311b7ad469494cb7a9f7b61feef753de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311b7ad469494cb7a9f7b61feef753de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/311b7ad469494cb7a9f7b61feef753de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/311b7ad469494cb7a9f7b61feef753de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/311b7ad469494cb7a9f7b61feef753de.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPS5qo_aZ6wRTAEP3rhzgOZo7jY=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.385959+00 2025-12-09 10:15:51.385965+00 19409 001FWF#黄色 SPMX-20240815314639 \N \N \N 1 \N [{"file_id": "49a25bbd-5bb9-428c-b3c5-80e6ead1ef1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d37f427cd89340828c684459bc00ab82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d37f427cd89340828c684459bc00ab82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d37f427cd89340828c684459bc00ab82.jpg", "file_size": 14481, "is_delete": false, "file_type": 1, "original_file_name": "001FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f427cd89340828c684459bc00ab82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f427cd89340828c684459bc00ab82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d37f427cd89340828c684459bc00ab82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d37f427cd89340828c684459bc00ab82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d37f427cd89340828c684459bc00ab82.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t5vJdmiXYQrve00AxCFLdeCQwiE=", "createTime": "2024-08-15 15:06:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.389118+00 2025-12-09 10:15:51.389124+00 19410 002#0XL SPMX-20240815314650 \N \N \N 1 \N [{"file_id": "86d634a7-3c2b-4daf-880a-3e2d889e2118", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "12e682217ca64209abb79f3eceaeafe9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "12e682217ca64209abb79f3eceaeafe9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "12e682217ca64209abb79f3eceaeafe9.jpg", "file_size": 45500, "is_delete": false, "file_type": 1, "original_file_name": "eL8G1B6ded9c2uePd1en5baX7L2if5dq4D8c6Gd11b0Ycr582bdOf9dX0Sdp3dbf.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/12e682217ca64209abb79f3eceaeafe9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/12e682217ca64209abb79f3eceaeafe9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/12e682217ca64209abb79f3eceaeafe9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/12e682217ca64209abb79f3eceaeafe9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/12e682217ca64209abb79f3eceaeafe9.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UMBUi3cYoc-5kjBmrJgVfqckl78=", "createTime": "2024-11-12 16:43:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.392251+00 2025-12-09 10:15:51.392257+00 19411 HXF0008-24#粉净色 SPMX-20240815314642 \N \N \N 1 \N [{"file_id": "1e61ef14-cfce-4b9a-a091-a485d47262f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a13d3fefd3254abaa30b99633d5312ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a13d3fefd3254abaa30b99633d5312ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a13d3fefd3254abaa30b99633d5312ca.jpg", "file_size": 6351, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13d3fefd3254abaa30b99633d5312ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13d3fefd3254abaa30b99633d5312ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a13d3fefd3254abaa30b99633d5312ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a13d3fefd3254abaa30b99633d5312ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a13d3fefd3254abaa30b99633d5312ca.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NnOMAgT7YbjC9T7K2O8qkFxjotw=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.398398+00 2025-12-09 10:15:51.398405+00 19413 DLFS31212#蓝绿 SPMX-20240815314647 \N \N \N 1 \N [{"file_id": "3575abd2-8721-4b6a-912f-9af512eeb92f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2b3336253bb43a79aa166b4c20bfc64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2b3336253bb43a79aa166b4c20bfc64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2b3336253bb43a79aa166b4c20bfc64.jpg", "file_size": 8755, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b3336253bb43a79aa166b4c20bfc64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b3336253bb43a79aa166b4c20bfc64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2b3336253bb43a79aa166b4c20bfc64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2b3336253bb43a79aa166b4c20bfc64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2b3336253bb43a79aa166b4c20bfc64.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JkKShsajykiinlH796zPp-1C0M8=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.401506+00 2025-12-09 10:15:51.401512+00 19414 236#黑色 SPMX-20240815314649 \N \N \N 1 \N [{"file_id": "41d834d1-9ed3-44cc-ab5d-2de4deb6b625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b2ed1b5cb849f4bc54a20f27e8083d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b2ed1b5cb849f4bc54a20f27e8083d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b2ed1b5cb849f4bc54a20f27e8083d.jpg", "file_size": 21867, "is_delete": false, "file_type": 1, "original_file_name": "236#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b2ed1b5cb849f4bc54a20f27e8083d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b2ed1b5cb849f4bc54a20f27e8083d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b2ed1b5cb849f4bc54a20f27e8083d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b2ed1b5cb849f4bc54a20f27e8083d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b2ed1b5cb849f4bc54a20f27e8083d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U3M6QztcxGs7Hm_i2IFPMd1I_DI=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.404613+00 2025-12-09 10:15:51.404619+00 19415 1231-51FWF#小童8码+4码 SPMX-20240815314655 \N \N \N 1 \N [{"file_id": "b1c3c5a0-fb1e-4d98-8d04-f4bb2eb5bde9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3bcb35f1a414dc590dff0d822b362d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3bcb35f1a414dc590dff0d822b362d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3bcb35f1a414dc590dff0d822b362d8.jpg", "file_size": 18671, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bcb35f1a414dc590dff0d822b362d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bcb35f1a414dc590dff0d822b362d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3bcb35f1a414dc590dff0d822b362d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3bcb35f1a414dc590dff0d822b362d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3bcb35f1a414dc590dff0d822b362d8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z6v237pu3hHS7QOdob55rLTZVtg=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.407803+00 2025-12-09 10:15:51.407809+00 19416 CGH9394#紫色 SPMX-20240815314651 \N \N \N 1 \N [{"file_id": "fa267d17-dc43-4d04-817c-1c1e5a6c2841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fdcef303aae4b498a4a03cc3537f905.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fdcef303aae4b498a4a03cc3537f905.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fdcef303aae4b498a4a03cc3537f905.jpg", "file_size": 12860, "is_delete": false, "file_type": 1, "original_file_name": "CGH9394#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdcef303aae4b498a4a03cc3537f905.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdcef303aae4b498a4a03cc3537f905.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fdcef303aae4b498a4a03cc3537f905.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fdcef303aae4b498a4a03cc3537f905.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fdcef303aae4b498a4a03cc3537f905.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x_32dw_Do6EaYQNYL3CGJpuD76c=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.410942+00 2025-12-09 10:15:51.410948+00 19417 FX0003-93#黑色 SPMX-20240815314643 \N \N \N 1 \N [{"file_id": "8e23f9d7-3872-4c7c-94f5-b1fd963a0cee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a508e8d2ecfd48dbaaaa549efc6798b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a508e8d2ecfd48dbaaaa549efc6798b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a508e8d2ecfd48dbaaaa549efc6798b2.jpg", "file_size": 63216, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-93#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a508e8d2ecfd48dbaaaa549efc6798b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a508e8d2ecfd48dbaaaa549efc6798b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a508e8d2ecfd48dbaaaa549efc6798b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a508e8d2ecfd48dbaaaa549efc6798b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a508e8d2ecfd48dbaaaa549efc6798b2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u__ohso2zviO1XE_JGi47Fc80lM=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.414052+00 2025-12-09 10:15:51.414059+00 19418 LZ1401#大人上身5号色 SPMX-20240815314645 \N \N \N 1 \N [{"file_id": "0375d074-2d5c-4d68-9056-11b19c0c1568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5464b49ce0df49a8ba3ad44f4c518e0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5464b49ce0df49a8ba3ad44f4c518e0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5464b49ce0df49a8ba3ad44f4c518e0f.jpg", "file_size": 16833, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5464b49ce0df49a8ba3ad44f4c518e0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5464b49ce0df49a8ba3ad44f4c518e0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5464b49ce0df49a8ba3ad44f4c518e0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5464b49ce0df49a8ba3ad44f4c518e0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5464b49ce0df49a8ba3ad44f4c518e0f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sunzi9v9RUkwtkdOwVlfBU2njiA=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.417339+00 2025-12-09 10:15:51.417346+00 19419 1231-51FWF#小童6码 SPMX-20240815314644 \N \N \N 1 \N [{"file_id": "7afc69be-8d2a-49b4-ab90-99353f4051bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feebfeb171314606b420ce60a2c9337d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feebfeb171314606b420ce60a2c9337d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feebfeb171314606b420ce60a2c9337d.jpg", "file_size": 18096, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feebfeb171314606b420ce60a2c9337d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feebfeb171314606b420ce60a2c9337d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feebfeb171314606b420ce60a2c9337d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feebfeb171314606b420ce60a2c9337d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feebfeb171314606b420ce60a2c9337d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QEw6qlVN56yaHmSbQFPEGKJ020=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.420602+00 2025-12-09 10:15:51.420608+00 19420 LJH2038#黑色乱花 SPMX-20240815314648 \N \N \N 1 \N [{"file_id": "feb2d127-05f7-4896-8428-da5651f001dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f44ce56a6f74fae805a9d27cbdde7a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f44ce56a6f74fae805a9d27cbdde7a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f44ce56a6f74fae805a9d27cbdde7a8.jpg", "file_size": 64955, "is_delete": false, "file_type": 1, "original_file_name": "LJH2038#黑色乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f44ce56a6f74fae805a9d27cbdde7a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f44ce56a6f74fae805a9d27cbdde7a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f44ce56a6f74fae805a9d27cbdde7a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f44ce56a6f74fae805a9d27cbdde7a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f44ce56a6f74fae805a9d27cbdde7a8.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5SpN2j4mJk8MhK98G2uvKjGWUE=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.423819+00 2025-12-09 10:15:51.423825+00 19421 JY#20#蓝底玫红色 SPMX-20240815314657 \N \N \N 1 \N [{"file_id": "cf30987e-3d23-4dda-a11e-55961541fc48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b39c112ff14b4e19b7056da9b31c9b36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b39c112ff14b4e19b7056da9b31c9b36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b39c112ff14b4e19b7056da9b31c9b36.jpg", "file_size": 12370, "is_delete": false, "file_type": 1, "original_file_name": "JY#20#蓝底玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39c112ff14b4e19b7056da9b31c9b36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39c112ff14b4e19b7056da9b31c9b36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b39c112ff14b4e19b7056da9b31c9b36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b39c112ff14b4e19b7056da9b31c9b36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b39c112ff14b4e19b7056da9b31c9b36.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RQ6kcm1dU-C750vUDaXDg78FE6o=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.42687+00 2025-12-09 10:15:51.426877+00 19422 LJH2040#原版色 SPMX-20240815314661 \N \N \N 1 \N [{"file_id": "f23811c6-1e68-411c-8d1a-3f82707039a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1ef30dcbcf64c5399aa6105fd399adb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1ef30dcbcf64c5399aa6105fd399adb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1ef30dcbcf64c5399aa6105fd399adb.jpg", "file_size": 63611, "is_delete": false, "file_type": 1, "original_file_name": "LJH2040#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ef30dcbcf64c5399aa6105fd399adb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ef30dcbcf64c5399aa6105fd399adb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1ef30dcbcf64c5399aa6105fd399adb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1ef30dcbcf64c5399aa6105fd399adb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1ef30dcbcf64c5399aa6105fd399adb.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2d1--OmTh6getNV49nSgP-Hj0Jw=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.43004+00 2025-12-09 10:15:51.430046+00 19423 CGH9394#黄色 SPMX-20240815314660 \N \N \N 1 \N [{"file_id": "f71a12ba-6277-4583-81c8-ef5a031c139a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55df3098f0c04fa593ece17a20d18eae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55df3098f0c04fa593ece17a20d18eae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55df3098f0c04fa593ece17a20d18eae.jpg", "file_size": 14792, "is_delete": false, "file_type": 1, "original_file_name": "CGH9394#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55df3098f0c04fa593ece17a20d18eae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55df3098f0c04fa593ece17a20d18eae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55df3098f0c04fa593ece17a20d18eae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55df3098f0c04fa593ece17a20d18eae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55df3098f0c04fa593ece17a20d18eae.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oiNkNmKGL8uiDZT17TeD3M22bnw=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.433189+00 2025-12-09 10:15:51.433196+00 19424 1231-51FWF#小童袖领匹布 SPMX-20240815314666 \N \N \N 1 \N [{"file_id": "69ad875a-3d95-4e53-8e4d-80f4391f545a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ede08825077346b3ab7134769248a784.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ede08825077346b3ab7134769248a784.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ede08825077346b3ab7134769248a784.jpg", "file_size": 9881, "is_delete": false, "file_type": 1, "original_file_name": "1231-51FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede08825077346b3ab7134769248a784.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede08825077346b3ab7134769248a784.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ede08825077346b3ab7134769248a784.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ede08825077346b3ab7134769248a784.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ede08825077346b3ab7134769248a784.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fg4b2iPO5ZwZLzH0cxngd2xd-h8=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.436308+00 2025-12-09 10:15:51.436314+00 19425 DLFS31212#黄色 SPMX-20240815314658 \N \N \N 1 \N [{"file_id": "d3355cb5-44b5-4a1e-9895-50edd4e3f817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da0bc6393e8344cc999a0359f19b972a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da0bc6393e8344cc999a0359f19b972a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da0bc6393e8344cc999a0359f19b972a.jpg", "file_size": 8336, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31212#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0bc6393e8344cc999a0359f19b972a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0bc6393e8344cc999a0359f19b972a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da0bc6393e8344cc999a0359f19b972a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da0bc6393e8344cc999a0359f19b972a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da0bc6393e8344cc999a0359f19b972a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NM_bP0k5z9cRTHaJ5zldQEUlmF0=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.439871+00 2025-12-09 10:15:51.439878+00 19426 HXF0008-24#粉色L SPMX-20240815314665 \N \N \N 1 \N [{"file_id": "fd637ca3-82a9-4452-bdc9-53e305034817", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82a713588ae341d6ae6a94ace7e5ee0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82a713588ae341d6ae6a94ace7e5ee0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82a713588ae341d6ae6a94ace7e5ee0e.jpg", "file_size": 15278, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a713588ae341d6ae6a94ace7e5ee0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a713588ae341d6ae6a94ace7e5ee0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82a713588ae341d6ae6a94ace7e5ee0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82a713588ae341d6ae6a94ace7e5ee0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82a713588ae341d6ae6a94ace7e5ee0e.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrmP9zSfm94Bf5mNXwsMKbvo17U=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.443278+00 2025-12-09 10:15:51.443286+00 19427 8803#灰净色 SPMX-20240815314664 \N \N \N 1 \N [{"file_id": "cb8639c9-9449-4745-af30-1d51ed06db0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a94c732000da446493acba11ff297437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a94c732000da446493acba11ff297437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a94c732000da446493acba11ff297437.jpg", "file_size": 6216, "is_delete": false, "file_type": 1, "original_file_name": "8803#灰净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94c732000da446493acba11ff297437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94c732000da446493acba11ff297437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a94c732000da446493acba11ff297437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a94c732000da446493acba11ff297437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a94c732000da446493acba11ff297437.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BwvHB5WqtMfmwl6RE1dZyaIll94=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.446582+00 2025-12-09 10:15:51.446589+00 19428 LZ1401#大人上身6号色 SPMX-20240815314656 \N \N \N 1 \N [{"file_id": "e0908a0a-8b0f-4c6c-895f-0bb80d974f3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92b8984a4ba3438fb4689f38252b957d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92b8984a4ba3438fb4689f38252b957d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92b8984a4ba3438fb4689f38252b957d.jpg", "file_size": 17117, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#大人上身6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b8984a4ba3438fb4689f38252b957d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b8984a4ba3438fb4689f38252b957d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92b8984a4ba3438fb4689f38252b957d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92b8984a4ba3438fb4689f38252b957d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92b8984a4ba3438fb4689f38252b957d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_688QTkf_RPKdEI_gK1j6yXWkM=", "createTime": "2024-08-15 15:06:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.449781+00 2025-12-09 10:15:51.449789+00 19429 236#黑色净色 SPMX-20240815314662 \N \N \N 1 \N [{"file_id": "59eb19ae-44d5-47d1-b39b-ffe3cec0fa02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dc7098e67224bb398ccf3193ed98a2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dc7098e67224bb398ccf3193ed98a2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dc7098e67224bb398ccf3193ed98a2c.jpg", "file_size": 8167, "is_delete": false, "file_type": 1, "original_file_name": "236#黑色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc7098e67224bb398ccf3193ed98a2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc7098e67224bb398ccf3193ed98a2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc7098e67224bb398ccf3193ed98a2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dc7098e67224bb398ccf3193ed98a2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dc7098e67224bb398ccf3193ed98a2c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9YOZcUV6jluakzCf02ExjVlX9mQ=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.453072+00 2025-12-09 10:15:51.453078+00 19430 JY#21#粉灰圈圈 SPMX-20240815314669 \N \N \N 1 \N [{"file_id": "5612d844-ff68-4fd0-b3f1-759205168c73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40e9abeb8a9f44b995538ae02397e87f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40e9abeb8a9f44b995538ae02397e87f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40e9abeb8a9f44b995538ae02397e87f.jpg", "file_size": 21924, "is_delete": false, "file_type": 1, "original_file_name": "JY#21#粉灰圈圈.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e9abeb8a9f44b995538ae02397e87f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e9abeb8a9f44b995538ae02397e87f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40e9abeb8a9f44b995538ae02397e87f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40e9abeb8a9f44b995538ae02397e87f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40e9abeb8a9f44b995538ae02397e87f.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5ZTwnL7oWLzIB-v9bRAyRR2iB8=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.456299+00 2025-12-09 10:15:51.456307+00 19431 DLFS31213#墨绿 SPMX-20240815314667 \N \N \N 1 \N [{"file_id": "f3813121-c3d1-4567-98ab-e262a5634655", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "861d6e6be26848e7a5fb69ecbc3c4497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "861d6e6be26848e7a5fb69ecbc3c4497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "861d6e6be26848e7a5fb69ecbc3c4497.jpg", "file_size": 17125, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861d6e6be26848e7a5fb69ecbc3c4497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861d6e6be26848e7a5fb69ecbc3c4497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/861d6e6be26848e7a5fb69ecbc3c4497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/861d6e6be26848e7a5fb69ecbc3c4497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/861d6e6be26848e7a5fb69ecbc3c4497.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVczOD7PGcK-mBv_G9atkBBtC0k=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.45945+00 2025-12-09 10:15:51.459456+00 19432 002#1XL SPMX-20240815314659 \N \N \N 1 \N [{"file_id": "5143c2dc-63e9-4cb5-bdb5-775c23ae3633", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "de3bc8c698e84cb88e0e86e303848e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "de3bc8c698e84cb88e0e86e303848e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "de3bc8c698e84cb88e0e86e303848e0c.jpg", "file_size": 44448, "is_delete": false, "file_type": 1, "original_file_name": "7l343QbEee8nbqeP288Ac68md8af3W1y56dCbp7F7p7D2x4K340sfT648l2JdSaW.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/de3bc8c698e84cb88e0e86e303848e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/de3bc8c698e84cb88e0e86e303848e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/de3bc8c698e84cb88e0e86e303848e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/de3bc8c698e84cb88e0e86e303848e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/de3bc8c698e84cb88e0e86e303848e0c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cm7CuUZ_dypwuBGlDL6XmsH0Jg8=", "createTime": "2024-11-12 16:43:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.462534+00 2025-12-09 10:15:51.462541+00 19433 FX0003-95#1号色 SPMX-20240815314663 \N \N \N 1 \N [{"file_id": "c81873ed-9278-45bd-8bed-a8d265291b0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da5236a5deb54d94816ee596cadc658b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da5236a5deb54d94816ee596cadc658b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da5236a5deb54d94816ee596cadc658b.jpg", "file_size": 53120, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da5236a5deb54d94816ee596cadc658b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da5236a5deb54d94816ee596cadc658b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da5236a5deb54d94816ee596cadc658b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da5236a5deb54d94816ee596cadc658b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da5236a5deb54d94816ee596cadc658b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:alTlbty_3HObQbQM7o45pkaRSEk=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.465906+00 2025-12-09 10:15:51.465912+00 19434 LZ1401#童装上身1号色 SPMX-20240815314668 \N \N \N 1 \N [{"file_id": "52ca9cc2-9722-42c7-bdd8-1713cdff82c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9afedc1c420c4be4bb19249e30427ac9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9afedc1c420c4be4bb19249e30427ac9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9afedc1c420c4be4bb19249e30427ac9.jpg", "file_size": 20652, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afedc1c420c4be4bb19249e30427ac9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afedc1c420c4be4bb19249e30427ac9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9afedc1c420c4be4bb19249e30427ac9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9afedc1c420c4be4bb19249e30427ac9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9afedc1c420c4be4bb19249e30427ac9.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9m_1Q4ydHFmGEdGs8wrGkk6rPK8=", "createTime": "2024-08-15 15:06:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.469238+00 2025-12-09 10:15:51.469244+00 19435 HXF0008-24#粉色M SPMX-20240815314674 \N \N \N 1 \N [{"file_id": "4849ab21-29ed-4c6f-993c-5b113b327c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d76605545bf4e3e88f62e8c9ea6e433.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d76605545bf4e3e88f62e8c9ea6e433.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d76605545bf4e3e88f62e8c9ea6e433.jpg", "file_size": 15340, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d76605545bf4e3e88f62e8c9ea6e433.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d76605545bf4e3e88f62e8c9ea6e433.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d76605545bf4e3e88f62e8c9ea6e433.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d76605545bf4e3e88f62e8c9ea6e433.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d76605545bf4e3e88f62e8c9ea6e433.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ieSqjSB7bV77s-oumZNo4BSnGMw=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.472434+00 2025-12-09 10:15:51.472441+00 19436 JY#3#红底波点 SPMX-20240815314680 \N \N \N 1 \N [{"file_id": "fef4848c-7455-48ba-8702-0d43dd96d411", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3db92bb38431400cb971570b131e210b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3db92bb38431400cb971570b131e210b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3db92bb38431400cb971570b131e210b.jpg", "file_size": 8791, "is_delete": false, "file_type": 1, "original_file_name": "JY#3#红底波点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db92bb38431400cb971570b131e210b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db92bb38431400cb971570b131e210b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3db92bb38431400cb971570b131e210b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3db92bb38431400cb971570b131e210b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3db92bb38431400cb971570b131e210b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uSNxeczP1ocj-K4Ta5m7Rv0r4Hg=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.475676+00 2025-12-09 10:15:51.475683+00 19437 002#3XL SPMX-20240815314681 \N \N \N 1 \N [{"file_id": "52d1f8e2-5033-4a89-855b-5a3ce2731007", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "2235b04685564266aa291d3a8198db26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "2235b04685564266aa291d3a8198db26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "2235b04685564266aa291d3a8198db26.jpg", "file_size": 36852, "is_delete": false, "file_type": 1, "original_file_name": "5ffp2Ifu3S3C1P8V4M3D3oa5dafV9K5wdqcXbu8A2F03eQaZbyaCbg5z8t006M7y.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2235b04685564266aa291d3a8198db26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2235b04685564266aa291d3a8198db26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/2235b04685564266aa291d3a8198db26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/2235b04685564266aa291d3a8198db26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/2235b04685564266aa291d3a8198db26.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B90hIRUWgXNMhnyhyQqMzzIAgJw=", "createTime": "2024-11-12 16:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.478863+00 2025-12-09 10:15:51.478869+00 19438 CGH9409#原版色L SPMX-20240815314683 \N \N \N 1 \N [{"file_id": "7256bd51-88d4-466d-ae1c-dbf02ac1e979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb299092f34044f9927477ad9a3f3ccd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb299092f34044f9927477ad9a3f3ccd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb299092f34044f9927477ad9a3f3ccd.jpg", "file_size": 13548, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#原版色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb299092f34044f9927477ad9a3f3ccd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb299092f34044f9927477ad9a3f3ccd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb299092f34044f9927477ad9a3f3ccd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb299092f34044f9927477ad9a3f3ccd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb299092f34044f9927477ad9a3f3ccd.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:86g38PQzIqQ3xUXnqxgDBULb1Oo=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.482066+00 2025-12-09 10:15:51.482073+00 19439 2361#童装原版净色 SPMX-20240815314671 \N \N \N 1 \N [{"file_id": "0e76f078-59ce-461d-80ee-10156a149240", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15929d12c3e49e6b904b5149e8db705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15929d12c3e49e6b904b5149e8db705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15929d12c3e49e6b904b5149e8db705.jpg", "file_size": 7076, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装原版净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15929d12c3e49e6b904b5149e8db705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15929d12c3e49e6b904b5149e8db705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15929d12c3e49e6b904b5149e8db705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15929d12c3e49e6b904b5149e8db705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15929d12c3e49e6b904b5149e8db705.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kh-zbWb65EMi1vfMVf8mtZfIC-8=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.485249+00 2025-12-09 10:15:51.485256+00 19440 CGH9409#原版色2XL SPMX-20240815314672 \N \N \N 1 \N [{"file_id": "36ad14b9-1eec-4da2-8b55-613de379fed1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49f6d74adc494d47b4e439da91489f39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49f6d74adc494d47b4e439da91489f39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49f6d74adc494d47b4e439da91489f39.jpg", "file_size": 13532, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#原版色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f6d74adc494d47b4e439da91489f39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f6d74adc494d47b4e439da91489f39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f6d74adc494d47b4e439da91489f39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49f6d74adc494d47b4e439da91489f39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49f6d74adc494d47b4e439da91489f39.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbJkAkjtFiKJoxfdKYaD12Lk7Nc=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.488586+00 2025-12-09 10:15:51.488591+00 19441 FX0003-95#2号色 SPMX-20240815314673 \N \N \N 1 \N [{"file_id": "b31fc315-7d2c-4210-8237-220a168ff4e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78ea7c4aecce4acda6af817c95ba0ba2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78ea7c4aecce4acda6af817c95ba0ba2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78ea7c4aecce4acda6af817c95ba0ba2.jpg", "file_size": 52640, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ea7c4aecce4acda6af817c95ba0ba2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ea7c4aecce4acda6af817c95ba0ba2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ea7c4aecce4acda6af817c95ba0ba2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78ea7c4aecce4acda6af817c95ba0ba2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78ea7c4aecce4acda6af817c95ba0ba2.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1y-cmwFK0HYGN5QMCwudgnpipyk=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.491577+00 2025-12-09 10:15:51.491582+00 19442 LZ1401#童装上身2号色 SPMX-20240815314679 \N \N \N 1 \N [{"file_id": "6bd97a3d-58ff-411b-bd05-785f88251d20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c54a43738844c5bbb3ecc0df2535b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c54a43738844c5bbb3ecc0df2535b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c54a43738844c5bbb3ecc0df2535b7d.jpg", "file_size": 19991, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c54a43738844c5bbb3ecc0df2535b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c54a43738844c5bbb3ecc0df2535b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c54a43738844c5bbb3ecc0df2535b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c54a43738844c5bbb3ecc0df2535b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c54a43738844c5bbb3ecc0df2535b7d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PNYcKmWOH8TBuS099W0ISbDSb6Y=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.49436+00 2025-12-09 10:15:51.494364+00 19443 LJH2040#橙兰 SPMX-20240815314677 \N \N \N 1 \N [{"file_id": "af89f76a-4c57-40fa-a638-42115cbd9aa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8ba2c0f1da74f1eb0588a5a120a23df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8ba2c0f1da74f1eb0588a5a120a23df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8ba2c0f1da74f1eb0588a5a120a23df.jpg", "file_size": 67951, "is_delete": false, "file_type": 1, "original_file_name": "LJH2040#橙兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba2c0f1da74f1eb0588a5a120a23df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba2c0f1da74f1eb0588a5a120a23df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8ba2c0f1da74f1eb0588a5a120a23df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8ba2c0f1da74f1eb0588a5a120a23df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8ba2c0f1da74f1eb0588a5a120a23df.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VC82rBMhFvifb65V4LgAYGk4lT4=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.497119+00 2025-12-09 10:15:51.497124+00 19444 1231-52FWF#中童12码+10码 SPMX-20240815314676 \N \N \N 1 \N [{"file_id": "ed40f488-d467-46ff-8f7c-4a05da9316db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58ab7064cfdd464cad0d633ed582e800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58ab7064cfdd464cad0d633ed582e800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58ab7064cfdd464cad0d633ed582e800.jpg", "file_size": 20695, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ab7064cfdd464cad0d633ed582e800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ab7064cfdd464cad0d633ed582e800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58ab7064cfdd464cad0d633ed582e800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58ab7064cfdd464cad0d633ed582e800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58ab7064cfdd464cad0d633ed582e800.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xCrZwyxPPOeM7rGrpYXHxe_2rIA=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.499833+00 2025-12-09 10:15:51.499838+00 19445 DLFS31213#彩兰 SPMX-20240815314678 \N \N \N 1 \N [{"file_id": "0cd3d331-e8f6-4e5b-b3fa-11573b6f60bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01a6feac5b2748fd97ba0a81188327be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01a6feac5b2748fd97ba0a81188327be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01a6feac5b2748fd97ba0a81188327be.jpg", "file_size": 16987, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a6feac5b2748fd97ba0a81188327be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a6feac5b2748fd97ba0a81188327be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a6feac5b2748fd97ba0a81188327be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01a6feac5b2748fd97ba0a81188327be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01a6feac5b2748fd97ba0a81188327be.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPmzazGXU8HJSn4eKuChaH1c4K8=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.502594+00 2025-12-09 10:15:51.502598+00 19446 2361#童装原版色 SPMX-20240815314682 \N \N \N 1 \N [{"file_id": "c754d3fa-c824-4b77-81e5-eb2bfed59637", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "087b9dde53234611a828699aeaf1497b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "087b9dde53234611a828699aeaf1497b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "087b9dde53234611a828699aeaf1497b.jpg", "file_size": 17060, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087b9dde53234611a828699aeaf1497b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087b9dde53234611a828699aeaf1497b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087b9dde53234611a828699aeaf1497b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/087b9dde53234611a828699aeaf1497b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/087b9dde53234611a828699aeaf1497b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:avpGGfrlIqAphBoDcl4mvgEx_sE=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.505371+00 2025-12-09 10:15:51.505376+00 19447 002#2XL SPMX-20240815314670 \N \N \N 1 \N [{"file_id": "df6d0196-d9e6-4e5e-b95d-35339fc6549e", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "1b09e63c829542bc8021696b2d5ebcf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "1b09e63c829542bc8021696b2d5ebcf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "1b09e63c829542bc8021696b2d5ebcf7.jpg", "file_size": 40335, "is_delete": false, "file_type": 1, "original_file_name": "4P33eh1tfE0M1XaedO388qfU6X7B9e3r640L0a2qbg95af7ocx1p800O9P481vfL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1b09e63c829542bc8021696b2d5ebcf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1b09e63c829542bc8021696b2d5ebcf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/1b09e63c829542bc8021696b2d5ebcf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/1b09e63c829542bc8021696b2d5ebcf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/1b09e63c829542bc8021696b2d5ebcf7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tz0sMdOFx2P2roluR91Wo583EiE=", "createTime": "2024-11-12 16:43:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.508123+00 2025-12-09 10:15:51.508128+00 19448 8803#灰色净色 SPMX-20240815314675 \N \N \N 1 \N [{"file_id": "731384f6-3358-4dfc-9098-4cfb7777beb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "572f96113fdf4822a17130727119b3c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "572f96113fdf4822a17130727119b3c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "572f96113fdf4822a17130727119b3c3.jpg", "file_size": 4288, "is_delete": false, "file_type": 1, "original_file_name": "8803#灰色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f96113fdf4822a17130727119b3c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f96113fdf4822a17130727119b3c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/572f96113fdf4822a17130727119b3c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/572f96113fdf4822a17130727119b3c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/572f96113fdf4822a17130727119b3c3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khLfXhZf5Xuu8IjdvcsmtEWxjt8=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.510967+00 2025-12-09 10:15:51.510972+00 19449 CGH9409#原版色XL SPMX-20240815314694 \N \N \N 1 \N [{"file_id": "cbc46f51-b768-4da9-90f6-e60f23d34bec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7bb3b82524e4e80862a7103812d9f24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7bb3b82524e4e80862a7103812d9f24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7bb3b82524e4e80862a7103812d9f24.jpg", "file_size": 13495, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#原版色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bb3b82524e4e80862a7103812d9f24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bb3b82524e4e80862a7103812d9f24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7bb3b82524e4e80862a7103812d9f24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7bb3b82524e4e80862a7103812d9f24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7bb3b82524e4e80862a7103812d9f24.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbEGSrXXeA3zQx-WPxhycbPbgLo=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.513779+00 2025-12-09 10:15:51.513784+00 19450 HXF0008-24#粉色XL SPMX-20240815314684 \N \N \N 1 \N [{"file_id": "11c6b354-5144-422f-b48c-96849e350c2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "095f4c8cf27a4345b1f8389f68ceb697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "095f4c8cf27a4345b1f8389f68ceb697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "095f4c8cf27a4345b1f8389f68ceb697.jpg", "file_size": 15871, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f4c8cf27a4345b1f8389f68ceb697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f4c8cf27a4345b1f8389f68ceb697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/095f4c8cf27a4345b1f8389f68ceb697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/095f4c8cf27a4345b1f8389f68ceb697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/095f4c8cf27a4345b1f8389f68ceb697.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfeDABXYZlQq_NJDMp7DF-1QO8g=", "createTime": "2024-08-15 15:06:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.516532+00 2025-12-09 10:15:51.516537+00 19451 DLFS31213#枣红 SPMX-20240815314688 \N \N \N 1 \N [{"file_id": "8943ae6d-7298-4648-b518-684fdef0f81c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "447888b47194491e9ace69741a80875b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "447888b47194491e9ace69741a80875b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "447888b47194491e9ace69741a80875b.jpg", "file_size": 16724, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447888b47194491e9ace69741a80875b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447888b47194491e9ace69741a80875b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/447888b47194491e9ace69741a80875b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/447888b47194491e9ace69741a80875b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/447888b47194491e9ace69741a80875b.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1rSEZzkYcuMe4mzSpxpBCvdUulU=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.519271+00 2025-12-09 10:15:51.519277+00 19452 JY#3#蓝底白花 SPMX-20240815314689 \N \N \N 1 \N [{"file_id": "d50dbf2e-0ca6-40ed-bba5-e3689d22a251", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61eb96f188de4faab2eeb7eb519a71bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61eb96f188de4faab2eeb7eb519a71bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61eb96f188de4faab2eeb7eb519a71bf.jpg", "file_size": 12405, "is_delete": false, "file_type": 1, "original_file_name": "JY#3#蓝底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61eb96f188de4faab2eeb7eb519a71bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61eb96f188de4faab2eeb7eb519a71bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61eb96f188de4faab2eeb7eb519a71bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61eb96f188de4faab2eeb7eb519a71bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61eb96f188de4faab2eeb7eb519a71bf.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:795M6rMp50KJjTd2nAbew_Wj4DU=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.522028+00 2025-12-09 10:15:51.522032+00 19453 LJH2040#橙色 SPMX-20240815314690 \N \N \N 1 \N [{"file_id": "d489365a-ec4b-4a83-8258-f5a09a6cd721", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a76e6a7603e447a89ba8fd60f76596c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a76e6a7603e447a89ba8fd60f76596c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a76e6a7603e447a89ba8fd60f76596c5.jpg", "file_size": 64091, "is_delete": false, "file_type": 1, "original_file_name": "LJH2040#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76e6a7603e447a89ba8fd60f76596c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76e6a7603e447a89ba8fd60f76596c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76e6a7603e447a89ba8fd60f76596c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a76e6a7603e447a89ba8fd60f76596c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a76e6a7603e447a89ba8fd60f76596c5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BW8BV6IHJoMIzGgfdZVlCNqL7h4=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.524785+00 2025-12-09 10:15:51.52479+00 19454 1231-52FWF#中童14码 SPMX-20240815314687 \N \N \N 1 \N [{"file_id": "2ab85a64-035c-4866-9dec-b839c99a47cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b22e1eff50044ebf8fb093282b620f62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b22e1eff50044ebf8fb093282b620f62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b22e1eff50044ebf8fb093282b620f62.jpg", "file_size": 19155, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22e1eff50044ebf8fb093282b620f62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22e1eff50044ebf8fb093282b620f62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b22e1eff50044ebf8fb093282b620f62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b22e1eff50044ebf8fb093282b620f62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b22e1eff50044ebf8fb093282b620f62.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K3BqxWslS6VRVxupbny9CwrPhPw=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.527476+00 2025-12-09 10:15:51.527481+00 19455 2361#童装彩蓝 SPMX-20240815314692 \N \N \N 1 \N [{"file_id": "04333cfd-f507-41ba-b5ff-90ddd35fab17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0416d4f6547416093b14653893358e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0416d4f6547416093b14653893358e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0416d4f6547416093b14653893358e7.jpg", "file_size": 18516, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0416d4f6547416093b14653893358e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0416d4f6547416093b14653893358e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0416d4f6547416093b14653893358e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0416d4f6547416093b14653893358e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0416d4f6547416093b14653893358e7.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4RQ2gcsy8DZ5oc2y9jhiG1uHbkw=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.53023+00 2025-12-09 10:15:51.530235+00 19456 8803#粉净色 SPMX-20240815314686 \N \N \N 1 \N [{"file_id": "b19ad925-b4f3-4d4f-b965-e891e8ed739e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd2f696dae2745f5803830a70290c170.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd2f696dae2745f5803830a70290c170.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd2f696dae2745f5803830a70290c170.jpg", "file_size": 6289, "is_delete": false, "file_type": 1, "original_file_name": "8803#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2f696dae2745f5803830a70290c170.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2f696dae2745f5803830a70290c170.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2f696dae2745f5803830a70290c170.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd2f696dae2745f5803830a70290c170.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd2f696dae2745f5803830a70290c170.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSjvu0It_aesPZ6ac26UMse6NAY=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.533203+00 2025-12-09 10:15:51.533209+00 19457 FX0003-95#3号色 SPMX-20240815314685 \N \N \N 1 \N [{"file_id": "5c5132c9-289a-4e00-b31e-90d9f3d27eb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "218a046284d4401789c655ece1809fe5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "218a046284d4401789c655ece1809fe5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "218a046284d4401789c655ece1809fe5.jpg", "file_size": 46004, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a046284d4401789c655ece1809fe5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a046284d4401789c655ece1809fe5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/218a046284d4401789c655ece1809fe5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/218a046284d4401789c655ece1809fe5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/218a046284d4401789c655ece1809fe5.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDdF38hTO9n-kpW2M4uT6v7QX6g=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.536302+00 2025-12-09 10:15:51.536308+00 19458 LZ1401#童装上身3号色 SPMX-20240815314691 \N \N \N 1 \N [{"file_id": "9058c6e6-6ee4-478e-98b7-946f3ddd998e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11d0465114f4238b355bf43e8b89b3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11d0465114f4238b355bf43e8b89b3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11d0465114f4238b355bf43e8b89b3d.jpg", "file_size": 17418, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11d0465114f4238b355bf43e8b89b3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11d0465114f4238b355bf43e8b89b3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11d0465114f4238b355bf43e8b89b3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11d0465114f4238b355bf43e8b89b3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11d0465114f4238b355bf43e8b89b3d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GiVovbb8oMtV46Q8adGhEIBS7-M=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.539435+00 2025-12-09 10:15:51.539442+00 19459 002#4XL SPMX-20240815314693 \N \N \N 1 \N [{"file_id": "66fb29a0-7f2e-4681-a96a-2aede4de5c25", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "5a4c7b078c3f44aa846b509ee8558c40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "5a4c7b078c3f44aa846b509ee8558c40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "5a4c7b078c3f44aa846b509ee8558c40.jpg", "file_size": 38045, "is_delete": false, "file_type": 1, "original_file_name": "0Q58aXfjbAfM82eI0j78eWeR5raOd31qaLenft3obQcj5y9Nam7p0H6I421HbN7Q.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5a4c7b078c3f44aa846b509ee8558c40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5a4c7b078c3f44aa846b509ee8558c40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/5a4c7b078c3f44aa846b509ee8558c40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/5a4c7b078c3f44aa846b509ee8558c40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/5a4c7b078c3f44aa846b509ee8558c40.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NLxdKR8Uu-0Lty3HaYhmHG_iWa0=", "createTime": "2024-11-12 16:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.542614+00 2025-12-09 10:15:51.542621+00 19460 8803#紫色净色 SPMX-20240815314696 \N \N \N 1 \N [{"file_id": "25c044c2-74e3-49e4-89fd-48c1560676b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9be046ccfc5d41358ed9f86099af5b0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9be046ccfc5d41358ed9f86099af5b0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9be046ccfc5d41358ed9f86099af5b0d.jpg", "file_size": 4087, "is_delete": false, "file_type": 1, "original_file_name": "8803#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be046ccfc5d41358ed9f86099af5b0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be046ccfc5d41358ed9f86099af5b0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be046ccfc5d41358ed9f86099af5b0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9be046ccfc5d41358ed9f86099af5b0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9be046ccfc5d41358ed9f86099af5b0d.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2rGVeAl1tZqx9sEM5IPm7T6I_rg=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.545795+00 2025-12-09 10:15:51.545802+00 19461 JY#3#黑底蓝黄花 SPMX-20240815314699 \N \N \N 1 \N [{"file_id": "a188009a-0618-4825-a3ee-d6472afb41d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg", "file_size": 26114, "is_delete": false, "file_type": 1, "original_file_name": "JY#3#黑底蓝黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e48d9536a1f4b1fbc3454ea1fe3b74a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTx-UMpKUhHpvpkApD_2auuXxcM=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.548943+00 2025-12-09 10:15:51.548949+00 19462 2361#童装彩蓝净色 SPMX-20240815314701 \N \N \N 1 \N [{"file_id": "835c9e6e-c4f3-444d-a0b6-3b89b5adb792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f4a61231fce4cc797df9d95cea0e5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f4a61231fce4cc797df9d95cea0e5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f4a61231fce4cc797df9d95cea0e5f3.jpg", "file_size": 7633, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装彩蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4a61231fce4cc797df9d95cea0e5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4a61231fce4cc797df9d95cea0e5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4a61231fce4cc797df9d95cea0e5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f4a61231fce4cc797df9d95cea0e5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f4a61231fce4cc797df9d95cea0e5f3.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBFHc8ZBLhm15e-J7PtG0uAM0sk=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.552058+00 2025-12-09 10:15:51.552064+00 19463 002#玫红 SPMX-20240815314703 \N \N \N 1 \N [{"file_id": "ac79acb0-178e-4ff4-9a4a-29b56b0cf305", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "edfb20532e0747528e18663112ed5e9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "edfb20532e0747528e18663112ed5e9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "edfb20532e0747528e18663112ed5e9c.jpg", "file_size": 74877, "is_delete": false, "file_type": 1, "original_file_name": "4q5Ca32w6dfx8n653087fF9m4Ad2b7bX5D7C9qaefv8m5S6sec4ZdG5I798r9h3m.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/edfb20532e0747528e18663112ed5e9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/edfb20532e0747528e18663112ed5e9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/edfb20532e0747528e18663112ed5e9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/edfb20532e0747528e18663112ed5e9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/edfb20532e0747528e18663112ed5e9c.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5zGmPjlgBbSYbugDiVj1zwN7_I=", "createTime": "2024-11-12 16:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.555235+00 2025-12-09 10:15:51.555241+00 19464 DLFS31213#浅粉 SPMX-20240815314698 \N \N \N 1 \N [{"file_id": "8dfed728-5f8a-4838-bafd-7e14280efa5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44f600e7ce894125be903aa6aecc0008.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44f600e7ce894125be903aa6aecc0008.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44f600e7ce894125be903aa6aecc0008.jpg", "file_size": 14569, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f600e7ce894125be903aa6aecc0008.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f600e7ce894125be903aa6aecc0008.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44f600e7ce894125be903aa6aecc0008.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44f600e7ce894125be903aa6aecc0008.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44f600e7ce894125be903aa6aecc0008.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S1ldnRCl6gMff-Y_-RpXGaAfOfg=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.558406+00 2025-12-09 10:15:51.558411+00 19465 FX0003-95#4号色 SPMX-20240815314704 \N \N \N 1 \N [{"file_id": "6043986a-ccfe-49c2-9963-2be1858303f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e47f8c8586f43028dd9935333f83614.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e47f8c8586f43028dd9935333f83614.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e47f8c8586f43028dd9935333f83614.jpg", "file_size": 60448, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e47f8c8586f43028dd9935333f83614.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e47f8c8586f43028dd9935333f83614.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e47f8c8586f43028dd9935333f83614.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e47f8c8586f43028dd9935333f83614.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e47f8c8586f43028dd9935333f83614.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ROODl_PjFs-wcDwj9HkIbV_D9g=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.561627+00 2025-12-09 10:15:51.561633+00 19466 HXF0008-24#蓝色2XL SPMX-20240815314706 \N \N \N 1 \N [{"file_id": "df965437-9be5-4eba-97e1-ff211a625ed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0557a0a60012480cb2d682ffe2fbc49a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0557a0a60012480cb2d682ffe2fbc49a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0557a0a60012480cb2d682ffe2fbc49a.jpg", "file_size": 18335, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0557a0a60012480cb2d682ffe2fbc49a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0557a0a60012480cb2d682ffe2fbc49a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0557a0a60012480cb2d682ffe2fbc49a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0557a0a60012480cb2d682ffe2fbc49a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0557a0a60012480cb2d682ffe2fbc49a.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1frnVikR9taJgel2ytkFD0ZgSHE=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.564796+00 2025-12-09 10:15:51.564803+00 19467 1231-52FWF#中童袖领匹布 SPMX-20240815314697 \N \N \N 1 \N [{"file_id": "b87398a9-48b3-402b-bac2-79bbf88f5426", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b820dbedd8b942a3b6bb9d83dd388cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b820dbedd8b942a3b6bb9d83dd388cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b820dbedd8b942a3b6bb9d83dd388cc6.jpg", "file_size": 21266, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b820dbedd8b942a3b6bb9d83dd388cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b820dbedd8b942a3b6bb9d83dd388cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b820dbedd8b942a3b6bb9d83dd388cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b820dbedd8b942a3b6bb9d83dd388cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b820dbedd8b942a3b6bb9d83dd388cc6.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wZ4NjwE-PkQ3dNGHyGH5v6579QY=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:51.567864+00 2025-12-09 10:15:51.56787+00 19468 LZ1401#童装上身4号色 SPMX-20240815314702 \N \N \N 1 \N [{"file_id": "c4b861a5-d16d-416c-8f0e-d3518d6af8e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d67965da277d44b48d5d802a329e9a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d67965da277d44b48d5d802a329e9a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d67965da277d44b48d5d802a329e9a85.jpg", "file_size": 20183, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67965da277d44b48d5d802a329e9a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67965da277d44b48d5d802a329e9a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d67965da277d44b48d5d802a329e9a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d67965da277d44b48d5d802a329e9a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d67965da277d44b48d5d802a329e9a85.jpg?e=1765361750&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zZ9mPoO5fJVaCYb8SudqyP0jxuk=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.341935+00 2025-12-09 10:15:52.341947+00 19469 LJH2040#水蓝 SPMX-20240815314700 \N \N \N 1 \N [{"file_id": "cacfd091-b8a3-4f0e-911d-a88c0103dd86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cf172351b394cb29b9e6473bf750da6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cf172351b394cb29b9e6473bf750da6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cf172351b394cb29b9e6473bf750da6.jpg", "file_size": 67058, "is_delete": false, "file_type": 1, "original_file_name": "LJH2040#水蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf172351b394cb29b9e6473bf750da6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf172351b394cb29b9e6473bf750da6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cf172351b394cb29b9e6473bf750da6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cf172351b394cb29b9e6473bf750da6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cf172351b394cb29b9e6473bf750da6.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vawqV_VHEHSl2KQDPg8WSqu3GHU=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.346963+00 2025-12-09 10:15:52.346974+00 19470 HXF0008-24#蓝净色 SPMX-20240815314695 \N \N \N 1 \N [{"file_id": "6f7f910f-ba01-4e0c-87f1-1e37d34b6a3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2644226964ee41f09ff83fed11fddd17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2644226964ee41f09ff83fed11fddd17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2644226964ee41f09ff83fed11fddd17.jpg", "file_size": 7028, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2644226964ee41f09ff83fed11fddd17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2644226964ee41f09ff83fed11fddd17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2644226964ee41f09ff83fed11fddd17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2644226964ee41f09ff83fed11fddd17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2644226964ee41f09ff83fed11fddd17.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BQZ4sj8SbBfVacPqf4AvBqpxxyA=", "createTime": "2024-08-15 15:06:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.35111+00 2025-12-09 10:15:52.351122+00 19471 CGH9409#原版色净色 SPMX-20240815314705 \N \N \N 1 \N [{"file_id": "0b6fa441-9f48-4d8e-b922-98bf5d4f464d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8153ac34027243fe847244fa608c6f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8153ac34027243fe847244fa608c6f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8153ac34027243fe847244fa608c6f42.jpg", "file_size": 8137, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#原版色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8153ac34027243fe847244fa608c6f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8153ac34027243fe847244fa608c6f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8153ac34027243fe847244fa608c6f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8153ac34027243fe847244fa608c6f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8153ac34027243fe847244fa608c6f42.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kCk7wob-OT1YU83UZsy5Kbxsefo=", "createTime": "2024-08-15 15:06:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.354531+00 2025-12-09 10:15:52.354536+00 19472 JY#4#白底粉花 SPMX-20240815314713 \N \N \N 1 \N [{"file_id": "c8635d97-9099-4cab-b247-82605f9e0459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c21f15606525441c93010c7cbc4f4bbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c21f15606525441c93010c7cbc4f4bbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c21f15606525441c93010c7cbc4f4bbe.jpg", "file_size": 9490, "is_delete": false, "file_type": 1, "original_file_name": "JY#4#白底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21f15606525441c93010c7cbc4f4bbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21f15606525441c93010c7cbc4f4bbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c21f15606525441c93010c7cbc4f4bbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c21f15606525441c93010c7cbc4f4bbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c21f15606525441c93010c7cbc4f4bbe.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7tlUAoTteTsFR5kYBqlhPk5u2A=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.357751+00 2025-12-09 10:15:52.357756+00 19473 2361#童装湖蓝 SPMX-20240815314709 \N \N \N 1 \N [{"file_id": "ebcc316f-79b3-4976-b760-51b8fa509024", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7de727aef140339e9280d36734abe4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7de727aef140339e9280d36734abe4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7de727aef140339e9280d36734abe4.jpg", "file_size": 18477, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装湖蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7de727aef140339e9280d36734abe4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7de727aef140339e9280d36734abe4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7de727aef140339e9280d36734abe4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7de727aef140339e9280d36734abe4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7de727aef140339e9280d36734abe4.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_4jJOnolB-qRYOROupLWolssmE=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.360917+00 2025-12-09 10:15:52.360922+00 19474 CGH9409#深粉2XL SPMX-20240815314714 \N \N \N 1 \N [{"file_id": "ccb25ee2-c235-46b1-896f-8a6118af5350", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dc57d0816764a0eb54345d3f466705b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dc57d0816764a0eb54345d3f466705b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dc57d0816764a0eb54345d3f466705b.jpg", "file_size": 12567, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#深粉2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc57d0816764a0eb54345d3f466705b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc57d0816764a0eb54345d3f466705b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc57d0816764a0eb54345d3f466705b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dc57d0816764a0eb54345d3f466705b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dc57d0816764a0eb54345d3f466705b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0N5DtCvIlOYcyJeA0X8LgXHMrE=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.364049+00 2025-12-09 10:15:52.364055+00 19475 DLFS31213#玫红 SPMX-20240815314708 \N \N \N 1 \N [{"file_id": "f676d4d7-f186-4a98-ac2d-83122ab0790f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg", "file_size": 16164, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b53c5d8c6d54a5a8de1a0c0e3cf20ae.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ownZWFvit-qHCFnkgtdlMzrq1zY=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.367148+00 2025-12-09 10:15:52.367153+00 19476 LJH2040#绿色 SPMX-20240815314710 \N \N \N 1 \N [{"file_id": "6228d87d-b29b-471c-96c6-a3de4034ebf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e855f2fff144d69a6298d5dda3ac18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e855f2fff144d69a6298d5dda3ac18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e855f2fff144d69a6298d5dda3ac18.jpg", "file_size": 62926, "is_delete": false, "file_type": 1, "original_file_name": "LJH2040#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e855f2fff144d69a6298d5dda3ac18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e855f2fff144d69a6298d5dda3ac18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e855f2fff144d69a6298d5dda3ac18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e855f2fff144d69a6298d5dda3ac18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e855f2fff144d69a6298d5dda3ac18.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I3gGP56jBgE9NkbGB89zAzccuN4=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.370255+00 2025-12-09 10:15:52.37026+00 19477 FX0003-95#5号色 SPMX-20240815314716 \N \N \N 1 \N [{"file_id": "97d3bf62-bb76-4c04-94bf-ccdc1f85ad49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "207315092e784955973aedc6c41e9d4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "207315092e784955973aedc6c41e9d4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "207315092e784955973aedc6c41e9d4d.jpg", "file_size": 54530, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207315092e784955973aedc6c41e9d4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207315092e784955973aedc6c41e9d4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207315092e784955973aedc6c41e9d4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/207315092e784955973aedc6c41e9d4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/207315092e784955973aedc6c41e9d4d.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QkdypbvT9drUae1fSZC0qCes9yE=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.373374+00 2025-12-09 10:15:52.373379+00 19478 002#红色 SPMX-20240815314715 \N \N \N 1 \N [{"file_id": "fcda6b12-4342-4c77-b303-c2635a7c7785", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "d3014f8d53fc4c2ab904975b7a89b768.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "d3014f8d53fc4c2ab904975b7a89b768.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "d3014f8d53fc4c2ab904975b7a89b768.jpg", "file_size": 75896, "is_delete": false, "file_type": 1, "original_file_name": "29751cew1S8OeNfB9bdDcaaG1fdO71dc6w3eeYcJco88cG6s9k3Ae6eS6v3K549q.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d3014f8d53fc4c2ab904975b7a89b768.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d3014f8d53fc4c2ab904975b7a89b768.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/d3014f8d53fc4c2ab904975b7a89b768.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/d3014f8d53fc4c2ab904975b7a89b768.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/d3014f8d53fc4c2ab904975b7a89b768.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RxLaJjicM8apEVMNZ1Iuw4m_kxg=", "createTime": "2024-11-12 16:43:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.376578+00 2025-12-09 10:15:52.376583+00 19479 1231-52FWF#小童6码 SPMX-20240815314707 \N \N \N 1 \N [{"file_id": "fba8f47d-eb04-4db9-8642-e8e042cefa70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2bf8244adad442daea410ddc357460a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2bf8244adad442daea410ddc357460a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2bf8244adad442daea410ddc357460a.jpg", "file_size": 22965, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bf8244adad442daea410ddc357460a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bf8244adad442daea410ddc357460a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bf8244adad442daea410ddc357460a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2bf8244adad442daea410ddc357460a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2bf8244adad442daea410ddc357460a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fCpRJZEZYHUjbrLB1B61CWons_s=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.379839+00 2025-12-09 10:15:52.379844+00 19480 LZ1401#童装上身5号色 SPMX-20240815314712 \N \N \N 1 \N [{"file_id": "aade2f2d-1155-4d1b-bc37-89a157f74375", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b8b8d0b41f64805b01d95f148af4b30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b8b8d0b41f64805b01d95f148af4b30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b8b8d0b41f64805b01d95f148af4b30.jpg", "file_size": 20425, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8b8d0b41f64805b01d95f148af4b30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8b8d0b41f64805b01d95f148af4b30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b8b8d0b41f64805b01d95f148af4b30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b8b8d0b41f64805b01d95f148af4b30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b8b8d0b41f64805b01d95f148af4b30.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VURmoTtK1CtG3bfOp2jpq_BRSsk=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.383012+00 2025-12-09 10:15:52.383017+00 19481 HXF0008-24#蓝色L SPMX-20240815314717 \N \N \N 1 \N [{"file_id": "d7c841d7-4afd-4280-990d-7e424fa5c1b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8ad034205943038e8adc0cefacc48d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8ad034205943038e8adc0cefacc48d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8ad034205943038e8adc0cefacc48d.jpg", "file_size": 17353, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ad034205943038e8adc0cefacc48d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ad034205943038e8adc0cefacc48d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8ad034205943038e8adc0cefacc48d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8ad034205943038e8adc0cefacc48d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8ad034205943038e8adc0cefacc48d.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rl8jEgZpGuaKGUjH4h8fbSk7R5g=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.386522+00 2025-12-09 10:15:52.386527+00 19482 8803#绿净色 SPMX-20240815314711 \N \N \N 1 \N [{"file_id": "0301aeae-0a05-4628-a096-9d26bf16d666", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4452c7b7c3ba44e4974ef84a6db58fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4452c7b7c3ba44e4974ef84a6db58fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4452c7b7c3ba44e4974ef84a6db58fa8.jpg", "file_size": 6353, "is_delete": false, "file_type": 1, "original_file_name": "8803#绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c7b7c3ba44e4974ef84a6db58fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c7b7c3ba44e4974ef84a6db58fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4452c7b7c3ba44e4974ef84a6db58fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4452c7b7c3ba44e4974ef84a6db58fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4452c7b7c3ba44e4974ef84a6db58fa8.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MnJdJp9HQhyaiZHMbysNaMkm0Co=", "createTime": "2024-08-15 15:06:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.389908+00 2025-12-09 10:15:52.389915+00 19483 CGH9409#深粉L SPMX-20240815314724 \N \N \N 1 \N [{"file_id": "ac029a57-e8e7-49bc-8dda-9755c0786b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg", "file_size": 12238, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#深粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6fa0a1b6bc94c3ab5e8211fc99f31d7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eOH3PO3favVwmaPiCWlCx_u8D1g=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.393122+00 2025-12-09 10:15:52.393127+00 19484 LJH2041#-1-净色 SPMX-20240815314723 \N \N \N 1 \N [{"file_id": "d624a8f3-303a-4382-9b08-ff327289c2d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2a3ee911e9c4c3c990eeab712695143.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2a3ee911e9c4c3c990eeab712695143.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2a3ee911e9c4c3c990eeab712695143.jpg", "file_size": 16236, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-1-净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a3ee911e9c4c3c990eeab712695143.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a3ee911e9c4c3c990eeab712695143.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a3ee911e9c4c3c990eeab712695143.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2a3ee911e9c4c3c990eeab712695143.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2a3ee911e9c4c3c990eeab712695143.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NgcsYfB4amoUVlD5sm7x2wGXkds=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.396397+00 2025-12-09 10:15:52.396404+00 19485 FX0003-95#6号色 SPMX-20240815314727 \N \N \N 1 \N [{"file_id": "3c41e85a-26c2-420e-b382-38eb7c21cbf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8e1b045eac04f27b9c0d58041c57d59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8e1b045eac04f27b9c0d58041c57d59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8e1b045eac04f27b9c0d58041c57d59.jpg", "file_size": 64848, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8e1b045eac04f27b9c0d58041c57d59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8e1b045eac04f27b9c0d58041c57d59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8e1b045eac04f27b9c0d58041c57d59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8e1b045eac04f27b9c0d58041c57d59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8e1b045eac04f27b9c0d58041c57d59.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJidNyZUW0RBSe81OHQNB0o6nts=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.39972+00 2025-12-09 10:15:52.399726+00 19486 HXF0008-24#蓝色M SPMX-20240815314728 \N \N \N 1 \N [{"file_id": "e85f74fa-ee90-4c54-b6dc-84ac3741116e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bc8c7b6ed004cf6985b525e9b0ad93a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bc8c7b6ed004cf6985b525e9b0ad93a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bc8c7b6ed004cf6985b525e9b0ad93a.jpg", "file_size": 16606, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc8c7b6ed004cf6985b525e9b0ad93a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc8c7b6ed004cf6985b525e9b0ad93a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc8c7b6ed004cf6985b525e9b0ad93a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bc8c7b6ed004cf6985b525e9b0ad93a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bc8c7b6ed004cf6985b525e9b0ad93a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YglRv2gd-pjUBTmVi7KEIESdXlQ=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.402907+00 2025-12-09 10:15:52.402914+00 19487 JY#4#粉底红花 SPMX-20240815314725 \N \N \N 1 \N [{"file_id": "9e0bfa51-a232-4aa8-a4f8-4312e2d01c33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3119111cab56432eb47eb90345c586b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3119111cab56432eb47eb90345c586b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3119111cab56432eb47eb90345c586b6.jpg", "file_size": 13258, "is_delete": false, "file_type": 1, "original_file_name": "JY#4#粉底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3119111cab56432eb47eb90345c586b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3119111cab56432eb47eb90345c586b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3119111cab56432eb47eb90345c586b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3119111cab56432eb47eb90345c586b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3119111cab56432eb47eb90345c586b6.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHrVKE15VD9zvDBiMPOpzBRZxW8=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.40608+00 2025-12-09 10:15:52.406087+00 19488 2361#童装湖蓝净色 SPMX-20240815314720 \N \N \N 1 \N [{"file_id": "5fda15c2-8676-466c-a9fa-dcdbefa69110", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2495609e1e4972b9c5e3fe40a9e402.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2495609e1e4972b9c5e3fe40a9e402.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2495609e1e4972b9c5e3fe40a9e402.jpg", "file_size": 7712, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装湖蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2495609e1e4972b9c5e3fe40a9e402.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2495609e1e4972b9c5e3fe40a9e402.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2495609e1e4972b9c5e3fe40a9e402.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2495609e1e4972b9c5e3fe40a9e402.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2495609e1e4972b9c5e3fe40a9e402.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YJKFClCMKGCiffSrRmkteprMAs=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.409205+00 2025-12-09 10:15:52.409212+00 19489 8803#青色净色 SPMX-20240815314721 \N \N \N 1 \N [{"file_id": "f45aa121-750b-4b96-ad50-c98eb4a1a330", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97d9f4a0c88f44efa60a1888cd1a4e4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97d9f4a0c88f44efa60a1888cd1a4e4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97d9f4a0c88f44efa60a1888cd1a4e4c.jpg", "file_size": 3895, "is_delete": false, "file_type": 1, "original_file_name": "8803#青色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d9f4a0c88f44efa60a1888cd1a4e4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d9f4a0c88f44efa60a1888cd1a4e4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d9f4a0c88f44efa60a1888cd1a4e4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97d9f4a0c88f44efa60a1888cd1a4e4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97d9f4a0c88f44efa60a1888cd1a4e4c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fTI6ePMGbreLBPUOAv9cEx9WbsM=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.412353+00 2025-12-09 10:15:52.412359+00 19490 002#黄色 SPMX-20240815314726 \N \N \N 1 \N [{"file_id": "1cbce4eb-a89b-4a35-a0f3-5d51446b8e28", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "75a77dad71e049e2b087e8c5f49c0dbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "75a77dad71e049e2b087e8c5f49c0dbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "75a77dad71e049e2b087e8c5f49c0dbe.jpg", "file_size": 74478, "is_delete": false, "file_type": 1, "original_file_name": "0W7DbS3w7c8Q7ib70VbZ7U0kbPdgcP7o0i035Oa68iczd440575Of9314ddLbE6M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/75a77dad71e049e2b087e8c5f49c0dbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/75a77dad71e049e2b087e8c5f49c0dbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/75a77dad71e049e2b087e8c5f49c0dbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/75a77dad71e049e2b087e8c5f49c0dbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/75a77dad71e049e2b087e8c5f49c0dbe.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sa5PQD4t-NSgqwEBrJQ9uzmwb9A=", "createTime": "2024-11-12 16:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.415624+00 2025-12-09 10:15:52.415631+00 19491 LZ1401#童装上身6号色 SPMX-20240815314722 \N \N \N 1 \N [{"file_id": "f3f554ce-920b-4b33-b5fd-ca151a3f46dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edad062f506146c88f8b9d39f85364c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edad062f506146c88f8b9d39f85364c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edad062f506146c88f8b9d39f85364c1.jpg", "file_size": 20761, "is_delete": false, "file_type": 1, "original_file_name": "LZ1401#童装上身6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edad062f506146c88f8b9d39f85364c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edad062f506146c88f8b9d39f85364c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edad062f506146c88f8b9d39f85364c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edad062f506146c88f8b9d39f85364c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edad062f506146c88f8b9d39f85364c1.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KR3L9G4XQuSazQtp7j-Yp5COLmo=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.419161+00 2025-12-09 10:15:52.419169+00 19492 DLFS31213#草绿 SPMX-20240815314718 \N \N \N 1 \N [{"file_id": "235efd9c-2903-4a7c-b58c-e936a308dcfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a2b9a1dc8d4172b35db6ff65567dd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a2b9a1dc8d4172b35db6ff65567dd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a2b9a1dc8d4172b35db6ff65567dd0.jpg", "file_size": 16084, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a2b9a1dc8d4172b35db6ff65567dd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a2b9a1dc8d4172b35db6ff65567dd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a2b9a1dc8d4172b35db6ff65567dd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a2b9a1dc8d4172b35db6ff65567dd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a2b9a1dc8d4172b35db6ff65567dd0.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zn8o4G5SbzNsIMg3YEVPkJxzMVQ=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.422434+00 2025-12-09 10:15:52.42244+00 19493 1231-52FWF#小童8码+4码 SPMX-20240815314719 \N \N \N 1 \N [{"file_id": "d012ba31-6eb2-49da-9b24-895814ca6b1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2cef224aa894ff9930102fe3a080c1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2cef224aa894ff9930102fe3a080c1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2cef224aa894ff9930102fe3a080c1e.jpg", "file_size": 24145, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cef224aa894ff9930102fe3a080c1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cef224aa894ff9930102fe3a080c1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2cef224aa894ff9930102fe3a080c1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2cef224aa894ff9930102fe3a080c1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2cef224aa894ff9930102fe3a080c1e.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZTuNjEzojFL-jg1fUuhk3zOXPMU=", "createTime": "2024-08-15 15:06:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.425601+00 2025-12-09 10:15:52.425608+00 19494 1231-52FWF#小童袖领匹布 SPMX-20240815314730 \N \N \N 1 \N [{"file_id": "9aa23bf3-4ddf-4fd2-85af-6d9306c0d4e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0afb0d7bab8e406d92cd5b045e43eafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0afb0d7bab8e406d92cd5b045e43eafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0afb0d7bab8e406d92cd5b045e43eafd.jpg", "file_size": 21151, "is_delete": false, "file_type": 1, "original_file_name": "1231-52FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb0d7bab8e406d92cd5b045e43eafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb0d7bab8e406d92cd5b045e43eafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0afb0d7bab8e406d92cd5b045e43eafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0afb0d7bab8e406d92cd5b045e43eafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0afb0d7bab8e406d92cd5b045e43eafd.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JUUZ2NW-reYmiMyYkkb6lqZ_0qQ=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.428887+00 2025-12-09 10:15:52.428893+00 19495 HXF0008-24#蓝色XL SPMX-20240815314732 \N \N \N 1 \N [{"file_id": "3716e08d-b7f6-4d38-8a69-83c44ae4909e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebd6eee283d04ea29059e6ce647a717e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebd6eee283d04ea29059e6ce647a717e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebd6eee283d04ea29059e6ce647a717e.jpg", "file_size": 17815, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-24#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd6eee283d04ea29059e6ce647a717e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd6eee283d04ea29059e6ce647a717e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd6eee283d04ea29059e6ce647a717e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebd6eee283d04ea29059e6ce647a717e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebd6eee283d04ea29059e6ce647a717e.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fseUvP1nCpFzkQxYY6-R-p77D-0=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.432022+00 2025-12-09 10:15:52.432028+00 19496 DLFS31213#蓝绿 SPMX-20240815314731 \N \N \N 1 \N [{"file_id": "4bbe7245-ed75-4dc4-abd1-8380cbf5e5cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66837d89282748888a243fe40e7617df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66837d89282748888a243fe40e7617df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66837d89282748888a243fe40e7617df.jpg", "file_size": 16617, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66837d89282748888a243fe40e7617df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66837d89282748888a243fe40e7617df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66837d89282748888a243fe40e7617df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66837d89282748888a243fe40e7617df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66837d89282748888a243fe40e7617df.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5mrhEpYOG8zWuHszEpTj8bscmk=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.435162+00 2025-12-09 10:15:52.435168+00 19497 8803#黄净色 SPMX-20240815314729 \N \N \N 1 \N [{"file_id": "e8eabd4d-557c-4316-842e-e4b43d27d8c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8f350f0e8f0461a96fcd793406b59fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8f350f0e8f0461a96fcd793406b59fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8f350f0e8f0461a96fcd793406b59fa.jpg", "file_size": 6228, "is_delete": false, "file_type": 1, "original_file_name": "8803#黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f350f0e8f0461a96fcd793406b59fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f350f0e8f0461a96fcd793406b59fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f350f0e8f0461a96fcd793406b59fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8f350f0e8f0461a96fcd793406b59fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8f350f0e8f0461a96fcd793406b59fa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xwPLpQApPABPutxLrFC_Zv3hMd8=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.438651+00 2025-12-09 10:15:52.438657+00 19498 002-1#蓝色0XL SPMX-20240815314733 \N \N \N 1 \N [{"file_id": "370c668d-fa2f-4287-9f90-6d95f1b1f6ab", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "885c6ce0d2864cd1823e807fc6910d8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "885c6ce0d2864cd1823e807fc6910d8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "885c6ce0d2864cd1823e807fc6910d8b.jpg", "file_size": 48289, "is_delete": false, "file_type": 1, "original_file_name": "2X039M2C9abA2Jfe7z4GcMdab80M6Ff6bk4C9E7kaX2qeU4o5mcx66cl3E8m6q8A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/885c6ce0d2864cd1823e807fc6910d8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/885c6ce0d2864cd1823e807fc6910d8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/885c6ce0d2864cd1823e807fc6910d8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/885c6ce0d2864cd1823e807fc6910d8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/885c6ce0d2864cd1823e807fc6910d8b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wS7hRFzELhGOJkrZk7dLrO81Lss=", "createTime": "2024-11-12 16:43:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.442182+00 2025-12-09 10:15:52.442189+00 19499 FX0003-95#8号色 SPMX-20240815314744 \N \N \N 1 \N [{"file_id": "0793de90-e809-4462-be81-2c7765d7b395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49bdd382069346ac98876b6258da78c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49bdd382069346ac98876b6258da78c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49bdd382069346ac98876b6258da78c2.jpg", "file_size": 59672, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bdd382069346ac98876b6258da78c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bdd382069346ac98876b6258da78c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bdd382069346ac98876b6258da78c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49bdd382069346ac98876b6258da78c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49bdd382069346ac98876b6258da78c2.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2-mHY9EtS6UGpA1EyUbSBCtI9jg=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.445615+00 2025-12-09 10:15:52.44562+00 19500 LZ1402#童装T1号色 SPMX-20240815314735 \N \N \N 1 \N [{"file_id": "2ba0fb46-d34e-43e4-877a-276b50a0b68c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "444ef30b69d8488c93701be1190393cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "444ef30b69d8488c93701be1190393cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "444ef30b69d8488c93701be1190393cb.jpg", "file_size": 18384, "is_delete": false, "file_type": 1, "original_file_name": "LZ1402#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444ef30b69d8488c93701be1190393cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444ef30b69d8488c93701be1190393cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/444ef30b69d8488c93701be1190393cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/444ef30b69d8488c93701be1190393cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/444ef30b69d8488c93701be1190393cb.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d2UstypLqweIRDhcQZFo8FFKpkU=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.449111+00 2025-12-09 10:15:52.449118+00 19501 2361#童装玫红 SPMX-20240815314741 \N \N \N 1 \N [{"file_id": "b67b067a-60a7-4946-82a7-6df02eb107fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b0021b6783442a2a017266ba1b7c600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b0021b6783442a2a017266ba1b7c600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b0021b6783442a2a017266ba1b7c600.jpg", "file_size": 17504, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0021b6783442a2a017266ba1b7c600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0021b6783442a2a017266ba1b7c600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b0021b6783442a2a017266ba1b7c600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b0021b6783442a2a017266ba1b7c600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b0021b6783442a2a017266ba1b7c600.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkT6UzdbAP_1yXS_qU-cFjVJ9aI=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.452634+00 2025-12-09 10:15:52.452641+00 19502 JY#4#蓝底波点 SPMX-20240815314737 \N \N \N 1 \N [{"file_id": "b0ae7b6b-f4eb-44fe-ba03-412469855f95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6cef78f3a049b18fa0c7570a1919cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6cef78f3a049b18fa0c7570a1919cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6cef78f3a049b18fa0c7570a1919cc.jpg", "file_size": 9255, "is_delete": false, "file_type": 1, "original_file_name": "JY#4#蓝底波点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6cef78f3a049b18fa0c7570a1919cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6cef78f3a049b18fa0c7570a1919cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6cef78f3a049b18fa0c7570a1919cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6cef78f3a049b18fa0c7570a1919cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6cef78f3a049b18fa0c7570a1919cc.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UXSOeB705mytsAkStadg-HASmgE=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.456125+00 2025-12-09 10:15:52.456132+00 19503 8803FWF#通用宝蓝色 SPMX-20240815314739 \N \N \N 1 \N [{"file_id": "06f52aed-19bd-4ffc-9c32-b51c2be3b509", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "679de9e68176468b9a9a0a1879d909fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "679de9e68176468b9a9a0a1879d909fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "679de9e68176468b9a9a0a1879d909fa.jpg", "file_size": 6695, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679de9e68176468b9a9a0a1879d909fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679de9e68176468b9a9a0a1879d909fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/679de9e68176468b9a9a0a1879d909fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/679de9e68176468b9a9a0a1879d909fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/679de9e68176468b9a9a0a1879d909fa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jKjN9ptG_FDyfEtEbTNeq5cHho=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.459598+00 2025-12-09 10:15:52.459604+00 19504 LJH2041#-1 SPMX-20240815314738 \N \N \N 1 \N [{"file_id": "bd40f968-1c62-4414-985a-d42cfb3f0272", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a41278fb9a84705a6be9ca11781a6aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a41278fb9a84705a6be9ca11781a6aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a41278fb9a84705a6be9ca11781a6aa.jpg", "file_size": 54391, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41278fb9a84705a6be9ca11781a6aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41278fb9a84705a6be9ca11781a6aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a41278fb9a84705a6be9ca11781a6aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a41278fb9a84705a6be9ca11781a6aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a41278fb9a84705a6be9ca11781a6aa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYqa-hauWKmHEf_BwoRWnTrEUTc=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.462969+00 2025-12-09 10:15:52.462975+00 19505 HXF0008-25#WJC22 SPMX-20240815314743 \N \N \N 1 \N [{"file_id": "f95e3493-afb8-49bb-b89d-8ed0d70c9802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8492fbd753a14e8397454f87fa702779.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8492fbd753a14e8397454f87fa702779.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8492fbd753a14e8397454f87fa702779.jpg", "file_size": 17728, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8492fbd753a14e8397454f87fa702779.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8492fbd753a14e8397454f87fa702779.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8492fbd753a14e8397454f87fa702779.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8492fbd753a14e8397454f87fa702779.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8492fbd753a14e8397454f87fa702779.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PXwaGgHHd3_6jwJMoOkciWl_BGo=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.46619+00 2025-12-09 10:15:52.466196+00 19506 DLFS31213#黄色 SPMX-20240815314742 \N \N \N 1 \N [{"file_id": "463be4d8-3aee-4519-9eef-2d94b711b13c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1df7b00cacd845c1973455d55b6d405a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1df7b00cacd845c1973455d55b6d405a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1df7b00cacd845c1973455d55b6d405a.jpg", "file_size": 14901, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31213#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df7b00cacd845c1973455d55b6d405a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df7b00cacd845c1973455d55b6d405a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1df7b00cacd845c1973455d55b6d405a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1df7b00cacd845c1973455d55b6d405a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1df7b00cacd845c1973455d55b6d405a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xhAfatcUEjaIdaZQXO4VwGJYENM=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.469324+00 2025-12-09 10:15:52.46933+00 19507 CGH9409#深粉XL SPMX-20240815314736 \N \N \N 1 \N [{"file_id": "e9a0e40f-fbdf-448a-b37a-b05623322def", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e74c433eac934fac99fe0bc89426b1dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e74c433eac934fac99fe0bc89426b1dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e74c433eac934fac99fe0bc89426b1dc.jpg", "file_size": 12379, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#深粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74c433eac934fac99fe0bc89426b1dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74c433eac934fac99fe0bc89426b1dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e74c433eac934fac99fe0bc89426b1dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e74c433eac934fac99fe0bc89426b1dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e74c433eac934fac99fe0bc89426b1dc.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMu-NVV5Bs0hOVu4Nzc2l8xhyqk=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.472534+00 2025-12-09 10:15:52.47254+00 19508 1231-5FWF#中童12码+10码 SPMX-20240815314740 \N \N \N 1 \N [{"file_id": "1b8c738b-fa1b-47f4-a42a-d4ed93962688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c066977df4cc45f0940799d5c0223f0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c066977df4cc45f0940799d5c0223f0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c066977df4cc45f0940799d5c0223f0e.jpg", "file_size": 14802, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c066977df4cc45f0940799d5c0223f0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c066977df4cc45f0940799d5c0223f0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c066977df4cc45f0940799d5c0223f0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c066977df4cc45f0940799d5c0223f0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c066977df4cc45f0940799d5c0223f0e.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nIxisFCLZ3H19uTEzvQk0GU_I-E=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.47589+00 2025-12-09 10:15:52.475897+00 19509 FX0003-95#7号色 SPMX-20240815314734 \N \N \N 1 \N [{"file_id": "926e471f-cab9-4588-b4f4-2986d2f91825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67d9a216b68c4a19921407dc320440ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67d9a216b68c4a19921407dc320440ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67d9a216b68c4a19921407dc320440ab.jpg", "file_size": 56235, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d9a216b68c4a19921407dc320440ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d9a216b68c4a19921407dc320440ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d9a216b68c4a19921407dc320440ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67d9a216b68c4a19921407dc320440ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67d9a216b68c4a19921407dc320440ab.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMTU_RkS6Rdc7gdGMmi0tLQE0gM=", "createTime": "2024-08-15 15:06:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.479038+00 2025-12-09 10:15:52.479044+00 19510 LJH2041#-2 SPMX-20240815314750 \N \N \N 1 \N [{"file_id": "f9230731-e146-47e2-bd38-00eef88d517a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faa688f24dd64a43becb0b3b118dbe8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faa688f24dd64a43becb0b3b118dbe8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faa688f24dd64a43becb0b3b118dbe8f.jpg", "file_size": 55433, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa688f24dd64a43becb0b3b118dbe8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa688f24dd64a43becb0b3b118dbe8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa688f24dd64a43becb0b3b118dbe8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faa688f24dd64a43becb0b3b118dbe8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faa688f24dd64a43becb0b3b118dbe8f.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VBH_PdO-CptkyFus1n8J_OvLHrQ=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.482282+00 2025-12-09 10:15:52.482288+00 19511 1231-5FWF#中童14码 SPMX-20240815314748 \N \N \N 1 \N [{"file_id": "53bd6538-3e92-4a6e-a61e-a43d36157bb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b8cbd39dab49b3866aaf4783ec7235.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b8cbd39dab49b3866aaf4783ec7235.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b8cbd39dab49b3866aaf4783ec7235.jpg", "file_size": 12780, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b8cbd39dab49b3866aaf4783ec7235.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b8cbd39dab49b3866aaf4783ec7235.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b8cbd39dab49b3866aaf4783ec7235.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b8cbd39dab49b3866aaf4783ec7235.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b8cbd39dab49b3866aaf4783ec7235.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gwt0krCHAS78_zFByNyG6t5OcsA=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.485914+00 2025-12-09 10:15:52.485919+00 19512 JY#5#白底黄花 SPMX-20240815314749 \N \N \N 1 \N [{"file_id": "00c17f3b-65d4-4464-ac5f-6ff6d0706190", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a7965bab10c4092b5b79e007ee8a1cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a7965bab10c4092b5b79e007ee8a1cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a7965bab10c4092b5b79e007ee8a1cc.jpg", "file_size": 17030, "is_delete": false, "file_type": 1, "original_file_name": "JY#5#白底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7965bab10c4092b5b79e007ee8a1cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7965bab10c4092b5b79e007ee8a1cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a7965bab10c4092b5b79e007ee8a1cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a7965bab10c4092b5b79e007ee8a1cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a7965bab10c4092b5b79e007ee8a1cc.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Haxy_EBgRkRHK7Be-PQLDElhgY4=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.48911+00 2025-12-09 10:15:52.489117+00 19513 LZ1402#童装T3号色 SPMX-20240815314758 \N \N \N 1 \N [{"file_id": "e8ddb84c-214c-4d1a-9ce4-dd03c3a86679", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ea193a200ab4cc696c37f00d5e79979.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ea193a200ab4cc696c37f00d5e79979.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ea193a200ab4cc696c37f00d5e79979.jpg", "file_size": 17559, "is_delete": false, "file_type": 1, "original_file_name": "LZ1402#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea193a200ab4cc696c37f00d5e79979.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea193a200ab4cc696c37f00d5e79979.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ea193a200ab4cc696c37f00d5e79979.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ea193a200ab4cc696c37f00d5e79979.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ea193a200ab4cc696c37f00d5e79979.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jL203jMIXDzm8rnSzPzY2ifnvo=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.492539+00 2025-12-09 10:15:52.492545+00 19514 LZ1402#童装T2号色 SPMX-20240815314747 \N \N \N 1 \N [{"file_id": "866d97c4-9153-4a6f-9bb7-31f530dab993", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f8c24b100ee460badc06e264f4ecc16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f8c24b100ee460badc06e264f4ecc16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f8c24b100ee460badc06e264f4ecc16.jpg", "file_size": 18706, "is_delete": false, "file_type": 1, "original_file_name": "LZ1402#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f8c24b100ee460badc06e264f4ecc16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f8c24b100ee460badc06e264f4ecc16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f8c24b100ee460badc06e264f4ecc16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f8c24b100ee460badc06e264f4ecc16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f8c24b100ee460badc06e264f4ecc16.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tu13voGuZY_t715WN4PjD_9uRfk=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.495878+00 2025-12-09 10:15:52.495885+00 19515 DLFS31214#墨绿 SPMX-20240815314757 \N \N \N 1 \N [{"file_id": "32624b9f-1738-403a-a334-bb7ea064117e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82632fcc9d7545dc860caf6041832572.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82632fcc9d7545dc860caf6041832572.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82632fcc9d7545dc860caf6041832572.jpg", "file_size": 24733, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82632fcc9d7545dc860caf6041832572.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82632fcc9d7545dc860caf6041832572.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82632fcc9d7545dc860caf6041832572.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82632fcc9d7545dc860caf6041832572.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82632fcc9d7545dc860caf6041832572.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hsf04bbvgyBnuB7_jjQS3m59OJw=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.499071+00 2025-12-09 10:15:52.499077+00 19516 002-1#蓝色1XL SPMX-20240815314745 \N \N \N 1 \N [{"file_id": "e60dc63d-cdee-420f-b7c7-752e9f5298bf", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "dab33f439a52457fb42755852a8a1de9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "dab33f439a52457fb42755852a8a1de9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "dab33f439a52457fb42755852a8a1de9.jpg", "file_size": 46570, "is_delete": false, "file_type": 1, "original_file_name": "7m4MfsaE8UbUaE0z7BcJ2dan3edN4v5y7NendCaP9rfUf09U136J6L9y3mefez47.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/dab33f439a52457fb42755852a8a1de9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/dab33f439a52457fb42755852a8a1de9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/dab33f439a52457fb42755852a8a1de9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/dab33f439a52457fb42755852a8a1de9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/dab33f439a52457fb42755852a8a1de9.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gMI00vTgJxRcJBCZZQKMyFwjuY=", "createTime": "2024-11-12 16:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.502201+00 2025-12-09 10:15:52.502207+00 19517 CGH9409#深粉净色 SPMX-20240815314746 \N \N \N 1 \N [{"file_id": "f2ec0fd6-2e09-4129-8184-262671cb40e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52d09726da074ce09e2891c65db0df57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52d09726da074ce09e2891c65db0df57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52d09726da074ce09e2891c65db0df57.jpg", "file_size": 7822, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#深粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d09726da074ce09e2891c65db0df57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d09726da074ce09e2891c65db0df57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52d09726da074ce09e2891c65db0df57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52d09726da074ce09e2891c65db0df57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52d09726da074ce09e2891c65db0df57.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n78gpt38MYw_s9n_cNrq84NFR9k=", "createTime": "2024-08-15 15:06:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.505504+00 2025-12-09 10:15:52.505511+00 19518 2361#童装玫红净色 SPMX-20240815314751 \N \N \N 1 \N [{"file_id": "e6d348cf-8a0e-46ce-84cf-8a409b7e3883", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c3e44df4e34e1982424d5162878508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c3e44df4e34e1982424d5162878508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c3e44df4e34e1982424d5162878508.jpg", "file_size": 7366, "is_delete": false, "file_type": 1, "original_file_name": "2361#童装玫红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3e44df4e34e1982424d5162878508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3e44df4e34e1982424d5162878508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c3e44df4e34e1982424d5162878508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c3e44df4e34e1982424d5162878508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c3e44df4e34e1982424d5162878508.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPEtdUBE7EpBA-_7PM6rJZpDBT0=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.50866+00 2025-12-09 10:15:52.508666+00 19519 8803FWF#通用灰色 SPMX-20240815314752 \N \N \N 1 \N [{"file_id": "d5b692a2-3cdf-4bc5-89cd-024012dd5cc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1edd628739e1406992ee50b22db79a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1edd628739e1406992ee50b22db79a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1edd628739e1406992ee50b22db79a9b.jpg", "file_size": 6015, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edd628739e1406992ee50b22db79a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edd628739e1406992ee50b22db79a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1edd628739e1406992ee50b22db79a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1edd628739e1406992ee50b22db79a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1edd628739e1406992ee50b22db79a9b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RPw-rhdtPJN-vTPT7MGFtJjAvpw=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.511869+00 2025-12-09 10:15:52.511876+00 19520 HXF0008-25#粉色2XL SPMX-20240815314755 \N \N \N 1 \N [{"file_id": "7a944551-d48d-4b98-9eb8-d214c81687fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7de6e890fc948de97368b12ed5fe1e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7de6e890fc948de97368b12ed5fe1e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7de6e890fc948de97368b12ed5fe1e9.jpg", "file_size": 20939, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7de6e890fc948de97368b12ed5fe1e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7de6e890fc948de97368b12ed5fe1e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7de6e890fc948de97368b12ed5fe1e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7de6e890fc948de97368b12ed5fe1e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7de6e890fc948de97368b12ed5fe1e9.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JA9MEF5liVZHRyPWvxItSRFvbGI=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.515093+00 2025-12-09 10:15:52.5151+00 19521 CGH9409#紫色2XL SPMX-20240815314756 \N \N \N 1 \N [{"file_id": "a0e903ac-8882-4357-ab87-83bc2d3fdc8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "687d86a142f4454a8bdb27a487d891d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "687d86a142f4454a8bdb27a487d891d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "687d86a142f4454a8bdb27a487d891d4.jpg", "file_size": 13769, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#紫色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687d86a142f4454a8bdb27a487d891d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687d86a142f4454a8bdb27a487d891d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/687d86a142f4454a8bdb27a487d891d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/687d86a142f4454a8bdb27a487d891d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/687d86a142f4454a8bdb27a487d891d4.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yRBPdVRRoFhv_MqJMATjmJ-x9EI=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.51827+00 2025-12-09 10:15:52.518277+00 19522 002-1#蓝色2XL SPMX-20240815314754 \N \N \N 1 \N [{"file_id": "9efc3f2f-93be-4bc0-b136-edb87c4ce179", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "5f7d0dcc487f482ea8f52720545f6af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "5f7d0dcc487f482ea8f52720545f6af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "5f7d0dcc487f482ea8f52720545f6af2.jpg", "file_size": 42483, "is_delete": false, "file_type": 1, "original_file_name": "1DbHct6tcz7acm0l9KavcN3T2X1d5nd43vaj6Z0l2K172q9reR7pbp5hat5n3j1j.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5f7d0dcc487f482ea8f52720545f6af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5f7d0dcc487f482ea8f52720545f6af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/5f7d0dcc487f482ea8f52720545f6af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/5f7d0dcc487f482ea8f52720545f6af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/5f7d0dcc487f482ea8f52720545f6af2.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pihHk1EZ-PIKUEZo5nC_gwMHBHc=", "createTime": "2024-11-12 16:43:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.521408+00 2025-12-09 10:15:52.521414+00 19523 FX0003-95#9号色 SPMX-20240815314753 \N \N \N 1 \N [{"file_id": "0e0b4316-67c9-47a8-85a2-c6fc4173cfb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bb9b5bd74c84c0b82601254c0fa053a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bb9b5bd74c84c0b82601254c0fa053a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bb9b5bd74c84c0b82601254c0fa053a.jpg", "file_size": 58684, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#9号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bb9b5bd74c84c0b82601254c0fa053a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bb9b5bd74c84c0b82601254c0fa053a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bb9b5bd74c84c0b82601254c0fa053a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bb9b5bd74c84c0b82601254c0fa053a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bb9b5bd74c84c0b82601254c0fa053a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wspOQCA3RuxSXqmxhtJKfCt0r5M=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.524601+00 2025-12-09 10:15:52.524608+00 19524 JY#5#绿叶 SPMX-20240815314761 \N \N \N 1 \N [{"file_id": "0da4b4c0-150c-47af-bb7f-ec22f45c3013", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1c33a57e7ec4ee28ef1b6389067010f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1c33a57e7ec4ee28ef1b6389067010f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1c33a57e7ec4ee28ef1b6389067010f.jpg", "file_size": 20756, "is_delete": false, "file_type": 1, "original_file_name": "JY#5#绿叶.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1c33a57e7ec4ee28ef1b6389067010f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1c33a57e7ec4ee28ef1b6389067010f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1c33a57e7ec4ee28ef1b6389067010f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1c33a57e7ec4ee28ef1b6389067010f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1c33a57e7ec4ee28ef1b6389067010f.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOx5ixpmAbiQUI5NkQxfsbAjDwY=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.52777+00 2025-12-09 10:15:52.527776+00 19525 8803FWF#通用粉色 SPMX-20240815314762 \N \N \N 1 \N [{"file_id": "98276751-bf46-4414-83df-1013751ed48d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg", "file_size": 6287, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1e1b06dda5d4b0c9a1bbb5eeb6d4ec4.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZDg3sTcBscYclUXlQRlvAauyFA=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.530965+00 2025-12-09 10:15:52.530972+00 19526 2365#白底 SPMX-20240815314774 \N \N \N 1 \N [{"file_id": "e15a16fd-65b8-4ff2-a302-625802ea6818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04dc978cf1db4ade807f0588f488d9aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04dc978cf1db4ade807f0588f488d9aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04dc978cf1db4ade807f0588f488d9aa.jpg", "file_size": 9746, "is_delete": false, "file_type": 1, "original_file_name": "2365#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04dc978cf1db4ade807f0588f488d9aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04dc978cf1db4ade807f0588f488d9aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04dc978cf1db4ade807f0588f488d9aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04dc978cf1db4ade807f0588f488d9aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04dc978cf1db4ade807f0588f488d9aa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ZOuLJ9toXkCsTyKctYyhiQWF1U=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.534202+00 2025-12-09 10:15:52.534209+00 19527 1231-5FWF#小童6码 SPMX-20240815314773 \N \N \N 1 \N [{"file_id": "1ffae301-5cc8-4f61-b8c2-60ae2c079939", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc179375d6994e1ba7485cc945904e49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc179375d6994e1ba7485cc945904e49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc179375d6994e1ba7485cc945904e49.jpg", "file_size": 14811, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc179375d6994e1ba7485cc945904e49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc179375d6994e1ba7485cc945904e49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc179375d6994e1ba7485cc945904e49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc179375d6994e1ba7485cc945904e49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc179375d6994e1ba7485cc945904e49.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HG7UpFyNNDCEiSsXHXC4araNwzc=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.537995+00 2025-12-09 10:15:52.538002+00 19528 FX0003-95#原版色 SPMX-20240815314764 \N \N \N 1 \N [{"file_id": "c43c2642-6893-488c-82f7-509a2c0f6d28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3137450c5c8941c0966098f89631dc7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3137450c5c8941c0966098f89631dc7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3137450c5c8941c0966098f89631dc7b.jpg", "file_size": 60700, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3137450c5c8941c0966098f89631dc7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3137450c5c8941c0966098f89631dc7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3137450c5c8941c0966098f89631dc7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3137450c5c8941c0966098f89631dc7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3137450c5c8941c0966098f89631dc7b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yfwl6Lu92MkXbV2WKoeAVHmkbcM=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.541482+00 2025-12-09 10:15:52.541487+00 19529 CGH9409#紫色L SPMX-20240815314765 \N \N \N 1 \N [{"file_id": "c89e2e6c-d99c-4d58-8abc-dba5472503f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3dbaf4759074387a6f0208899072c6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3dbaf4759074387a6f0208899072c6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3dbaf4759074387a6f0208899072c6f.jpg", "file_size": 13424, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#紫色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbaf4759074387a6f0208899072c6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbaf4759074387a6f0208899072c6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbaf4759074387a6f0208899072c6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3dbaf4759074387a6f0208899072c6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3dbaf4759074387a6f0208899072c6f.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ee5kG3pNyO-Ibu6SgYUJDCkk8tc=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.544359+00 2025-12-09 10:15:52.544363+00 19530 DLFS31214#彩兰 SPMX-20240815314768 \N \N \N 1 \N [{"file_id": "4e93e7ae-24ae-4997-b71b-b3fed2edecfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5bdcc4df62e4e03892053b6e37a6497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5bdcc4df62e4e03892053b6e37a6497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5bdcc4df62e4e03892053b6e37a6497.jpg", "file_size": 25522, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bdcc4df62e4e03892053b6e37a6497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bdcc4df62e4e03892053b6e37a6497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bdcc4df62e4e03892053b6e37a6497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5bdcc4df62e4e03892053b6e37a6497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5bdcc4df62e4e03892053b6e37a6497.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Hec49E1KPinSj-ttjHGgn6VqQw=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.547147+00 2025-12-09 10:15:52.547152+00 19531 JY#5#绿底波点 SPMX-20240815314770 \N \N \N 1 \N [{"file_id": "d0c66e4b-7776-46fc-a375-c7696f6c5217", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "500faa45b66e4f93b3e7569c925d5482.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "500faa45b66e4f93b3e7569c925d5482.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "500faa45b66e4f93b3e7569c925d5482.jpg", "file_size": 7602, "is_delete": false, "file_type": 1, "original_file_name": "JY#5#绿底波点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500faa45b66e4f93b3e7569c925d5482.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500faa45b66e4f93b3e7569c925d5482.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/500faa45b66e4f93b3e7569c925d5482.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/500faa45b66e4f93b3e7569c925d5482.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/500faa45b66e4f93b3e7569c925d5482.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W61udYPgVFxsOc3PkcbZcwDdveo=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.549875+00 2025-12-09 10:15:52.549879+00 19532 2365#杏底 SPMX-20240815314763 \N \N \N 1 \N [{"file_id": "8a0fa644-8daf-432f-8ef3-dff5ac5ed2ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd37aa3b7b0d463c8238187a91f20a5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd37aa3b7b0d463c8238187a91f20a5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd37aa3b7b0d463c8238187a91f20a5c.jpg", "file_size": 6033, "is_delete": false, "file_type": 1, "original_file_name": "2365#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd37aa3b7b0d463c8238187a91f20a5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd37aa3b7b0d463c8238187a91f20a5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd37aa3b7b0d463c8238187a91f20a5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd37aa3b7b0d463c8238187a91f20a5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd37aa3b7b0d463c8238187a91f20a5c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v7IOQHJ-zUmdQaVpiNjjwfqQlFM=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.552592+00 2025-12-09 10:15:52.552597+00 19533 HXF0008-25#粉色L SPMX-20240815314769 \N \N \N 1 \N [{"file_id": "6678d05c-bc01-47a5-aa3e-36ab03c4187a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf1a365e68454c4dad6888db59a698bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf1a365e68454c4dad6888db59a698bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf1a365e68454c4dad6888db59a698bc.jpg", "file_size": 21673, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a365e68454c4dad6888db59a698bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a365e68454c4dad6888db59a698bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf1a365e68454c4dad6888db59a698bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf1a365e68454c4dad6888db59a698bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf1a365e68454c4dad6888db59a698bc.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mv__VJWbklI2jEuYhDMGQnMy5W4=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.555339+00 2025-12-09 10:15:52.555344+00 19534 8803FWF#通用红色 SPMX-20240815314771 \N \N \N 1 \N [{"file_id": "c95dde7e-7d0a-4c88-afd0-49cf8277ffca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "371c277b2f89455787e806e4159c3584.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "371c277b2f89455787e806e4159c3584.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "371c277b2f89455787e806e4159c3584.jpg", "file_size": 7265, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c277b2f89455787e806e4159c3584.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c277b2f89455787e806e4159c3584.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c277b2f89455787e806e4159c3584.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/371c277b2f89455787e806e4159c3584.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/371c277b2f89455787e806e4159c3584.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_S_NNL5nPWBLAt9mwMaksN7IJY=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.55802+00 2025-12-09 10:15:52.558026+00 19535 002-1#蓝色3XL SPMX-20240815314766 \N \N \N 1 \N [{"file_id": "809365c3-b356-4724-9dbe-ee5bdf48feb1", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "2b076339c1e341c6a82b54f73a3053e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "2b076339c1e341c6a82b54f73a3053e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "2b076339c1e341c6a82b54f73a3053e2.jpg", "file_size": 37341, "is_delete": false, "file_type": 1, "original_file_name": "9idL06b53h7Ibj5nfB7650c52yedfq2t7w41763Rcp3W14eGbKdq7I3yaQ1D6lbH.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2b076339c1e341c6a82b54f73a3053e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2b076339c1e341c6a82b54f73a3053e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/2b076339c1e341c6a82b54f73a3053e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/2b076339c1e341c6a82b54f73a3053e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/2b076339c1e341c6a82b54f73a3053e2.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oyN1wUMsvdzMo8WhwNyZEEjNU5g=", "createTime": "2024-11-12 16:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.560794+00 2025-12-09 10:15:52.560801+00 19536 1231-5FWF#中童袖领匹布 SPMX-20240815314759 \N \N \N 1 \N [{"file_id": "81e3411f-d525-4166-8cc3-af3f2bae5ae6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb7a78726a3c4af9a8e74678fb147b48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb7a78726a3c4af9a8e74678fb147b48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb7a78726a3c4af9a8e74678fb147b48.jpg", "file_size": 11481, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7a78726a3c4af9a8e74678fb147b48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7a78726a3c4af9a8e74678fb147b48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb7a78726a3c4af9a8e74678fb147b48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb7a78726a3c4af9a8e74678fb147b48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb7a78726a3c4af9a8e74678fb147b48.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b4a3D6xehoFhEWlbPxC-azJjQkI=", "createTime": "2024-08-15 15:06:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.563634+00 2025-12-09 10:15:52.563639+00 19537 LJH2041#-4 SPMX-20240815314772 \N \N \N 1 \N [{"file_id": "d239e20a-df47-4db8-be0d-f352cc71121c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aac1994c258145478d86e9d6b78b722c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aac1994c258145478d86e9d6b78b722c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aac1994c258145478d86e9d6b78b722c.jpg", "file_size": 61199, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac1994c258145478d86e9d6b78b722c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac1994c258145478d86e9d6b78b722c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aac1994c258145478d86e9d6b78b722c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aac1994c258145478d86e9d6b78b722c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aac1994c258145478d86e9d6b78b722c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSVQtCUVPt3yeGIm2Hto0_y-1fE=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.5664+00 2025-12-09 10:15:52.566404+00 19538 LJH2041#-3 SPMX-20240815314760 \N \N \N 1 \N [{"file_id": "12c60352-b7db-45f8-a42c-ca278ecea07d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04aaf83724af41958359da236c838322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04aaf83724af41958359da236c838322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04aaf83724af41958359da236c838322.jpg", "file_size": 55914, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04aaf83724af41958359da236c838322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04aaf83724af41958359da236c838322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04aaf83724af41958359da236c838322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04aaf83724af41958359da236c838322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04aaf83724af41958359da236c838322.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9XbUtqw_WjNFquExXmC0TMqQK_4=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.569047+00 2025-12-09 10:15:52.569052+00 19539 LZ1402#童装T4号色 SPMX-20240815314767 \N \N \N 1 \N [{"file_id": "c6c53546-2fc4-4f07-afef-76fbecbb058c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05149b8f2ca849dba35b8316beecb431.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05149b8f2ca849dba35b8316beecb431.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05149b8f2ca849dba35b8316beecb431.jpg", "file_size": 17933, "is_delete": false, "file_type": 1, "original_file_name": "LZ1402#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05149b8f2ca849dba35b8316beecb431.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05149b8f2ca849dba35b8316beecb431.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05149b8f2ca849dba35b8316beecb431.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05149b8f2ca849dba35b8316beecb431.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05149b8f2ca849dba35b8316beecb431.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ww6vdRfroQM97R6e9Eg-P-PDuH4=", "createTime": "2024-08-15 15:06:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.571837+00 2025-12-09 10:15:52.571842+00 19540 2366FWF#大红 SPMX-20240815314783 \N \N \N 1 \N [{"file_id": "1cc34dbb-5c90-4f0e-a8f6-d02b205702d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16c1005366984421a76e30ca813f7b1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16c1005366984421a76e30ca813f7b1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16c1005366984421a76e30ca813f7b1b.jpg", "file_size": 13334, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c1005366984421a76e30ca813f7b1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c1005366984421a76e30ca813f7b1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16c1005366984421a76e30ca813f7b1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16c1005366984421a76e30ca813f7b1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16c1005366984421a76e30ca813f7b1b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wT3Cq1saeoRvbl_LnLq69ZhtUQA=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.574612+00 2025-12-09 10:15:52.574617+00 19541 LZ1402#童装T5号色 SPMX-20240815314778 \N \N \N 1 \N [{"file_id": "66ab1c88-c385-4227-9ef2-a658c0ea2dd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdaff76fb4044191acec7f164771a84c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdaff76fb4044191acec7f164771a84c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdaff76fb4044191acec7f164771a84c.jpg", "file_size": 17327, "is_delete": false, "file_type": 1, "original_file_name": "LZ1402#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaff76fb4044191acec7f164771a84c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaff76fb4044191acec7f164771a84c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaff76fb4044191acec7f164771a84c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdaff76fb4044191acec7f164771a84c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdaff76fb4044191acec7f164771a84c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQITC12R3b1LcsOsSf_KoiWqYzc=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.577351+00 2025-12-09 10:15:52.577355+00 19542 002-1#蓝色4XL SPMX-20240815314777 \N \N \N 1 \N [{"file_id": "70f5cc23-c536-40d5-ac2b-00f01c84cfc0", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "798090ce09174490a0c5c9a6218d997a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "798090ce09174490a0c5c9a6218d997a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "798090ce09174490a0c5c9a6218d997a.jpg", "file_size": 39471, "is_delete": false, "file_type": 1, "original_file_name": "6L8t2mb37s616T99cY4dae5A22cf4Y3R167CfLcj6vfc65ar3F0Xba0n6b40aUar.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/798090ce09174490a0c5c9a6218d997a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/798090ce09174490a0c5c9a6218d997a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/798090ce09174490a0c5c9a6218d997a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/798090ce09174490a0c5c9a6218d997a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/798090ce09174490a0c5c9a6218d997a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sp9yr7GIfe4lc9W2xQGqO6tsKXE=", "createTime": "2024-11-12 16:43:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.580728+00 2025-12-09 10:15:52.580734+00 19543 JY#5#蓝底白花 SPMX-20240815314781 \N \N \N 1 \N [{"file_id": "4a16bd8f-7f34-4bbf-bb9a-9c21c6fe8a57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63e27277316f4723bacefbd818f82bbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63e27277316f4723bacefbd818f82bbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63e27277316f4723bacefbd818f82bbd.jpg", "file_size": 17913, "is_delete": false, "file_type": 1, "original_file_name": "JY#5#蓝底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27277316f4723bacefbd818f82bbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27277316f4723bacefbd818f82bbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63e27277316f4723bacefbd818f82bbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63e27277316f4723bacefbd818f82bbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63e27277316f4723bacefbd818f82bbd.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S-whHqi0fvMH3XeM2tWNxr01d14=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.583988+00 2025-12-09 10:15:52.583994+00 19544 DLFS31214#枣红 SPMX-20240815314780 \N \N \N 1 \N [{"file_id": "e0f30736-fe55-4922-b328-804f9ec3eccd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab0055936290466e996a88d20a4c2d10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab0055936290466e996a88d20a4c2d10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab0055936290466e996a88d20a4c2d10.jpg", "file_size": 25298, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0055936290466e996a88d20a4c2d10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0055936290466e996a88d20a4c2d10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab0055936290466e996a88d20a4c2d10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab0055936290466e996a88d20a4c2d10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab0055936290466e996a88d20a4c2d10.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AoxeMGhkao59c6StkXi8rmGVn-4=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.586882+00 2025-12-09 10:15:52.586886+00 19545 8803FWF#通用绿色 SPMX-20240815314782 \N \N \N 1 \N [{"file_id": "4f315bf8-5094-492c-9704-f2343664e24c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "959e00b345b644959b289c13e2310ece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "959e00b345b644959b289c13e2310ece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "959e00b345b644959b289c13e2310ece.jpg", "file_size": 6426, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959e00b345b644959b289c13e2310ece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959e00b345b644959b289c13e2310ece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/959e00b345b644959b289c13e2310ece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/959e00b345b644959b289c13e2310ece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/959e00b345b644959b289c13e2310ece.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bON1hrg_ZHngYWiAXlPxBiDV8Y=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.589657+00 2025-12-09 10:15:52.589661+00 19546 FX0003-95#黑色 SPMX-20240815314775 \N \N \N 1 \N [{"file_id": "e3f6b40a-80f6-435d-94b7-9ab2a9222b16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd9c01750a2b49cabb23d90972f38cfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd9c01750a2b49cabb23d90972f38cfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd9c01750a2b49cabb23d90972f38cfa.jpg", "file_size": 62357, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-95#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9c01750a2b49cabb23d90972f38cfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9c01750a2b49cabb23d90972f38cfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd9c01750a2b49cabb23d90972f38cfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd9c01750a2b49cabb23d90972f38cfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd9c01750a2b49cabb23d90972f38cfa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z3_PtwZlX1LAGXbMYiEkr_rlK4k=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.592433+00 2025-12-09 10:15:52.592437+00 19547 CGH9409#紫色XL SPMX-20240815314776 \N \N \N 1 \N [{"file_id": "a312148b-1a18-4f27-a1c1-bd0ac1f7017b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9613ac9d952f4a59960b558e0e77e45d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9613ac9d952f4a59960b558e0e77e45d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9613ac9d952f4a59960b558e0e77e45d.jpg", "file_size": 13842, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#紫色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9613ac9d952f4a59960b558e0e77e45d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9613ac9d952f4a59960b558e0e77e45d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9613ac9d952f4a59960b558e0e77e45d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9613ac9d952f4a59960b558e0e77e45d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9613ac9d952f4a59960b558e0e77e45d.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:93fnCZGjTFg5622RumUkzcsOpmc=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.595207+00 2025-12-09 10:15:52.595211+00 19548 HXF0008-25#粉色M SPMX-20240815314779 \N \N \N 1 \N [{"file_id": "febca321-dd59-42f0-9cf3-dde4252bb7f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24d7ede82bc7443d8ab10572181f24be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24d7ede82bc7443d8ab10572181f24be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24d7ede82bc7443d8ab10572181f24be.jpg", "file_size": 21774, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d7ede82bc7443d8ab10572181f24be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d7ede82bc7443d8ab10572181f24be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24d7ede82bc7443d8ab10572181f24be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24d7ede82bc7443d8ab10572181f24be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24d7ede82bc7443d8ab10572181f24be.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N6Vy7QsFaLv7l_4dLrmk3Xx0a3k=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.597975+00 2025-12-09 10:15:52.59798+00 19549 1231-5FWF#小童8码+4码 SPMX-20240815314785 \N \N \N 1 \N [{"file_id": "f6630bea-92ac-43a8-911f-cc4866e39f1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeaa7a1d8fd1400f985cdc69e1728dbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeaa7a1d8fd1400f985cdc69e1728dbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeaa7a1d8fd1400f985cdc69e1728dbe.jpg", "file_size": 14391, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeaa7a1d8fd1400f985cdc69e1728dbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeaa7a1d8fd1400f985cdc69e1728dbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeaa7a1d8fd1400f985cdc69e1728dbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeaa7a1d8fd1400f985cdc69e1728dbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeaa7a1d8fd1400f985cdc69e1728dbe.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yf5ZaFCkbbCrYLMR8FAS_qPfF0=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.600695+00 2025-12-09 10:15:52.600699+00 19550 FX0003-96#RC23 SPMX-20240815314786 \N \N \N 1 \N [{"file_id": "c1df6071-a314-4e57-bcfb-c384f636b3cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ce679731a9f4278ba8b4ec515c8dda2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ce679731a9f4278ba8b4ec515c8dda2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ce679731a9f4278ba8b4ec515c8dda2.jpg", "file_size": 40857, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-96#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce679731a9f4278ba8b4ec515c8dda2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce679731a9f4278ba8b4ec515c8dda2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce679731a9f4278ba8b4ec515c8dda2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ce679731a9f4278ba8b4ec515c8dda2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ce679731a9f4278ba8b4ec515c8dda2.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3x6j6pFa8VxGfaotexyGPNxgbJ0=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.603424+00 2025-12-09 10:15:52.603429+00 19551 LJH2041#-5 SPMX-20240815314784 \N \N \N 1 \N [{"file_id": "62e6f1c3-3a7f-4525-91ad-2f87ec616e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "164cd4693c37450fa1f5c01a2a87c317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "164cd4693c37450fa1f5c01a2a87c317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "164cd4693c37450fa1f5c01a2a87c317.jpg", "file_size": 49060, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-5.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164cd4693c37450fa1f5c01a2a87c317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164cd4693c37450fa1f5c01a2a87c317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/164cd4693c37450fa1f5c01a2a87c317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/164cd4693c37450fa1f5c01a2a87c317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/164cd4693c37450fa1f5c01a2a87c317.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qQzZBmXnUgabzEgBccwlFQTJIjM=", "createTime": "2024-08-15 15:06:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.606157+00 2025-12-09 10:15:52.606161+00 19552 CGH9409#紫色净色 SPMX-20240815314787 \N \N \N 1 \N [{"file_id": "0a62f2c4-aea6-4ad7-977b-4d01d304d42b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c25d7a23ba294c7287136256dc0cb247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c25d7a23ba294c7287136256dc0cb247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c25d7a23ba294c7287136256dc0cb247.jpg", "file_size": 7186, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#紫色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25d7a23ba294c7287136256dc0cb247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25d7a23ba294c7287136256dc0cb247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c25d7a23ba294c7287136256dc0cb247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c25d7a23ba294c7287136256dc0cb247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c25d7a23ba294c7287136256dc0cb247.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tAkJ0SuLL5PNXNnT_bRvcuHQL5A=", "createTime": "2024-08-15 15:06:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.608869+00 2025-12-09 10:15:52.608874+00 19553 002-1#蓝色捆条 SPMX-20240815314788 \N \N \N 1 \N [{"file_id": "a246116e-fadf-4087-a2e9-b13eee846065", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "256a4d3ec39d4741a603033114b5cf51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "256a4d3ec39d4741a603033114b5cf51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "256a4d3ec39d4741a603033114b5cf51.jpg", "file_size": 12352, "is_delete": false, "file_type": 1, "original_file_name": "0oem2Xcid5du5c289dch1r4ndD1vdF1Q376q7I5I0vcv7n9haUeZfXcBecc20k1S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/256a4d3ec39d4741a603033114b5cf51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/256a4d3ec39d4741a603033114b5cf51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/256a4d3ec39d4741a603033114b5cf51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/256a4d3ec39d4741a603033114b5cf51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/256a4d3ec39d4741a603033114b5cf51.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XpRI2lo8Z3lCaIX_-e2vhmomPfM=", "createTime": "2024-11-12 16:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.611549+00 2025-12-09 10:15:52.611553+00 19554 LZ1403#童装T1号色 SPMX-20240815314789 \N \N \N 1 \N [{"file_id": "dcbe64c8-f49a-4bf8-933d-e15d48adfb6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505097a5e10848cebabfaca76754c773.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505097a5e10848cebabfaca76754c773.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505097a5e10848cebabfaca76754c773.jpg", "file_size": 25276, "is_delete": false, "file_type": 1, "original_file_name": "LZ1403#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505097a5e10848cebabfaca76754c773.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505097a5e10848cebabfaca76754c773.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505097a5e10848cebabfaca76754c773.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505097a5e10848cebabfaca76754c773.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505097a5e10848cebabfaca76754c773.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SUPDNhV9vp1jLkeiR9Nl2hjlvGw=", "createTime": "2024-08-15 15:06:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.61428+00 2025-12-09 10:15:52.614285+00 19555 JY#6#黑底波点 SPMX-20240815314790 \N \N \N 1 \N [{"file_id": "f02ceb09-d653-4b4f-a974-30baffcf1a73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26e8e5391aff4035a70b3fc5fab2960b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26e8e5391aff4035a70b3fc5fab2960b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26e8e5391aff4035a70b3fc5fab2960b.jpg", "file_size": 8266, "is_delete": false, "file_type": 1, "original_file_name": "JY#6#黑底波点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e8e5391aff4035a70b3fc5fab2960b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e8e5391aff4035a70b3fc5fab2960b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26e8e5391aff4035a70b3fc5fab2960b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26e8e5391aff4035a70b3fc5fab2960b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26e8e5391aff4035a70b3fc5fab2960b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uQmVq69Jmq8ilt69GEYqWZ3VFZE=", "createTime": "2024-08-15 15:06:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.61694+00 2025-12-09 10:15:52.616945+00 19556 2366FWF#彩蓝 SPMX-20240815314791 \N \N \N 1 \N [{"file_id": "bf37f4d7-de29-47e8-90ef-595bd578375e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "464260bec8814c159a30146e8032e5df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "464260bec8814c159a30146e8032e5df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "464260bec8814c159a30146e8032e5df.jpg", "file_size": 14915, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/464260bec8814c159a30146e8032e5df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/464260bec8814c159a30146e8032e5df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/464260bec8814c159a30146e8032e5df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/464260bec8814c159a30146e8032e5df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/464260bec8814c159a30146e8032e5df.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igWqBWEoMnPTGvOIjTrDxwkojIU=", "createTime": "2024-08-15 15:06:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.619612+00 2025-12-09 10:15:52.619616+00 19557 DLFS31214#水红 SPMX-20240815314799 \N \N \N 1 \N [{"file_id": "8d31cf5e-944b-49ed-9779-d7ec64fb1459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69378365ec454b5c9bfdf381f4dff7aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69378365ec454b5c9bfdf381f4dff7aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69378365ec454b5c9bfdf381f4dff7aa.jpg", "file_size": 21502, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#水红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69378365ec454b5c9bfdf381f4dff7aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69378365ec454b5c9bfdf381f4dff7aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69378365ec454b5c9bfdf381f4dff7aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69378365ec454b5c9bfdf381f4dff7aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69378365ec454b5c9bfdf381f4dff7aa.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fJxJ4XKm_uryZAQdURqCu1pm30Q=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.625022+00 2025-12-09 10:15:52.625027+00 19559 HXF0008-25#粉色XL SPMX-20240815314800 \N \N \N 1 \N [{"file_id": "92895d7f-4f2d-43bc-be7d-223da72f17f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg", "file_size": 21283, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1d9971bd6fb4b0eb1ee9b1603b2a731.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBiiRXg6HFxxcnk0-T177fNqRbo=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.627762+00 2025-12-09 10:15:52.627767+00 19560 CGH9409#蓝色2XL SPMX-20240815314794 \N \N \N 1 \N [{"file_id": "30c64228-57e2-4c4e-b2af-a4754ecb9928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55bf8dc1bd83438f955e27da100c16e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55bf8dc1bd83438f955e27da100c16e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55bf8dc1bd83438f955e27da100c16e7.jpg", "file_size": 13747, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bf8dc1bd83438f955e27da100c16e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bf8dc1bd83438f955e27da100c16e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bf8dc1bd83438f955e27da100c16e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55bf8dc1bd83438f955e27da100c16e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55bf8dc1bd83438f955e27da100c16e7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlQGV9op4Uau1eMQ9Ew7Tg66dl8=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.6305+00 2025-12-09 10:15:52.630505+00 19561 8803FWF#通用黄色 SPMX-20240815314793 \N \N \N 1 \N [{"file_id": "01ff76c1-dfcd-4a69-9285-ac28877741a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d34801cb0c9f46e4966c8d26a47e639b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d34801cb0c9f46e4966c8d26a47e639b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d34801cb0c9f46e4966c8d26a47e639b.jpg", "file_size": 6313, "is_delete": false, "file_type": 1, "original_file_name": "8803FWF#通用黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34801cb0c9f46e4966c8d26a47e639b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34801cb0c9f46e4966c8d26a47e639b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d34801cb0c9f46e4966c8d26a47e639b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d34801cb0c9f46e4966c8d26a47e639b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d34801cb0c9f46e4966c8d26a47e639b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sudc4YF27fyxx_oepFFmG4dMik=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.622301+00 2025-12-09 10:15:52.622305+00 19558 LJH2041#-6 SPMX-20240815314797 \N \N \N 1 \N [{"file_id": "eae534c7-bbfd-4886-97cc-8d411c5e614b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09b67c351deb423dbdfe867cd6086fb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09b67c351deb423dbdfe867cd6086fb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09b67c351deb423dbdfe867cd6086fb7.jpg", "file_size": 51335, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-6.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b67c351deb423dbdfe867cd6086fb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b67c351deb423dbdfe867cd6086fb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09b67c351deb423dbdfe867cd6086fb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09b67c351deb423dbdfe867cd6086fb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09b67c351deb423dbdfe867cd6086fb7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZYQUMMja91xGbcaC0AjfXJslzs=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.636192+00 2025-12-09 10:15:52.636198+00 19562 JY#6#黑底红花 SPMX-20240815314795 \N \N \N 1 \N [{"file_id": "5b52c2dd-03e9-48fa-892b-8cb3e3379594", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24be7e5b25af4a109c9d20325e0a6080.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24be7e5b25af4a109c9d20325e0a6080.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24be7e5b25af4a109c9d20325e0a6080.jpg", "file_size": 14782, "is_delete": false, "file_type": 1, "original_file_name": "JY#6#黑底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24be7e5b25af4a109c9d20325e0a6080.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24be7e5b25af4a109c9d20325e0a6080.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24be7e5b25af4a109c9d20325e0a6080.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24be7e5b25af4a109c9d20325e0a6080.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24be7e5b25af4a109c9d20325e0a6080.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJWLkMEYCCbPbvBbmhxmLfjpPw4=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.638919+00 2025-12-09 10:15:52.638924+00 19563 1231-5FWF#小童袖领匹布 SPMX-20240815314792 \N \N \N 1 \N [{"file_id": "71b47881-a6fa-4266-b3af-39f335b8ed81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47ec4b2cd6054a18a5a3ca72b737d439.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47ec4b2cd6054a18a5a3ca72b737d439.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47ec4b2cd6054a18a5a3ca72b737d439.jpg", "file_size": 8775, "is_delete": false, "file_type": 1, "original_file_name": "1231-5FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ec4b2cd6054a18a5a3ca72b737d439.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ec4b2cd6054a18a5a3ca72b737d439.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ec4b2cd6054a18a5a3ca72b737d439.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47ec4b2cd6054a18a5a3ca72b737d439.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47ec4b2cd6054a18a5a3ca72b737d439.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D7k6I2tg7N_MkQJRM5F7ksmTq1A=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.641709+00 2025-12-09 10:15:52.641714+00 19564 002-1FWE#L SPMX-20240815314798 \N \N \N 1 \N [{"file_id": "85d50455-3678-448b-bbe3-5a21ce85c213", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "0adcc7c16b554ffbbc537811b2acff42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "0adcc7c16b554ffbbc537811b2acff42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "0adcc7c16b554ffbbc537811b2acff42.jpg", "file_size": 17733, "is_delete": false, "file_type": 1, "original_file_name": "358nbF7K6V0r9r5laN8Ce9fZ18aS9QaKbMdE5D8OaQ4Te40RaRbj2PeVb85a5w0K.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/0adcc7c16b554ffbbc537811b2acff42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/0adcc7c16b554ffbbc537811b2acff42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/0adcc7c16b554ffbbc537811b2acff42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/0adcc7c16b554ffbbc537811b2acff42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/0adcc7c16b554ffbbc537811b2acff42.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F6ZVrKe7UOFb6_7B7arTKd4WJ9o=", "createTime": "2024-11-12 16:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.644449+00 2025-12-09 10:15:52.644453+00 19565 1231-6FWF#中童12码+10码 SPMX-20240815314803 \N \N \N 1 \N [{"file_id": "02b548fd-6dca-4ab4-bbbc-918bbd0bbc27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c78e67f9ecc46be9934fc0e4c00e733.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c78e67f9ecc46be9934fc0e4c00e733.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c78e67f9ecc46be9934fc0e4c00e733.jpg", "file_size": 17451, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c78e67f9ecc46be9934fc0e4c00e733.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c78e67f9ecc46be9934fc0e4c00e733.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c78e67f9ecc46be9934fc0e4c00e733.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c78e67f9ecc46be9934fc0e4c00e733.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c78e67f9ecc46be9934fc0e4c00e733.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtTswEc98tLgIo1KyPPFYVTQZHM=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.647189+00 2025-12-09 10:15:52.647193+00 19566 002-1FWE#M SPMX-20240815314809 \N \N \N 1 \N [{"file_id": "e6f006c8-98fa-4532-8b29-0526766a6e5f", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "60fb5f45c92042248a5ce1f232f1e18f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "60fb5f45c92042248a5ce1f232f1e18f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "60fb5f45c92042248a5ce1f232f1e18f.jpg", "file_size": 17090, "is_delete": false, "file_type": 1, "original_file_name": "eianbN8Z6Vcq1O3qcB2q423m7D7J549gfk5p8Hdwaqb3dE7C5ebFbs9w6M3x0I3Y.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/60fb5f45c92042248a5ce1f232f1e18f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/60fb5f45c92042248a5ce1f232f1e18f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/60fb5f45c92042248a5ce1f232f1e18f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/60fb5f45c92042248a5ce1f232f1e18f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/60fb5f45c92042248a5ce1f232f1e18f.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BfFHgj17vkY7M3-wUAms53M4NEA=", "createTime": "2024-11-12 16:43:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.649891+00 2025-12-09 10:15:52.649895+00 19567 88053#军绿 SPMX-20240815314805 \N \N \N 1 \N [{"file_id": "90863b11-7a72-4ed0-8ff3-9a7a317776b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a20df16cc1bf4bebbc0eba53177555f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a20df16cc1bf4bebbc0eba53177555f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a20df16cc1bf4bebbc0eba53177555f7.jpg", "file_size": 16876, "is_delete": false, "file_type": 1, "original_file_name": "88053#军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20df16cc1bf4bebbc0eba53177555f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20df16cc1bf4bebbc0eba53177555f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20df16cc1bf4bebbc0eba53177555f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a20df16cc1bf4bebbc0eba53177555f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a20df16cc1bf4bebbc0eba53177555f7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WhZ6nkkWlWw7hWyqUPIWl8qHRXY=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.652587+00 2025-12-09 10:15:52.652592+00 19568 88053#原版色 SPMX-20240815314815 \N \N \N 1 \N [{"file_id": "d23c2e2b-a677-42d0-b6a0-62c902889bdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c552335fc7649a49f12d7c95715545a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c552335fc7649a49f12d7c95715545a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c552335fc7649a49f12d7c95715545a.jpg", "file_size": 15649, "is_delete": false, "file_type": 1, "original_file_name": "88053#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c552335fc7649a49f12d7c95715545a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c552335fc7649a49f12d7c95715545a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c552335fc7649a49f12d7c95715545a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c552335fc7649a49f12d7c95715545a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c552335fc7649a49f12d7c95715545a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7L1ZS26t_axXhSTN5eHW0SqlHSg=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.655316+00 2025-12-09 10:15:52.655321+00 19569 1231-6FWF#中童14码 SPMX-20240815314813 \N \N \N 1 \N [{"file_id": "4cf57975-12cf-4167-8f46-d23b71976177", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e601ed9e5d6e4018ad9883016eb0732d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e601ed9e5d6e4018ad9883016eb0732d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e601ed9e5d6e4018ad9883016eb0732d.jpg", "file_size": 15612, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601ed9e5d6e4018ad9883016eb0732d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601ed9e5d6e4018ad9883016eb0732d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e601ed9e5d6e4018ad9883016eb0732d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e601ed9e5d6e4018ad9883016eb0732d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e601ed9e5d6e4018ad9883016eb0732d.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4nBqBLIfd_gYm3qoFsY0Ms7ID8=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.658038+00 2025-12-09 10:15:52.658042+00 19570 CGH9409#蓝色L SPMX-20240815314804 \N \N \N 1 \N [{"file_id": "5f5dfc4c-ba56-4e71-80b6-271676dd17f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd0622c5500e4858852dadb702092fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd0622c5500e4858852dadb702092fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd0622c5500e4858852dadb702092fa8.jpg", "file_size": 13166, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0622c5500e4858852dadb702092fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0622c5500e4858852dadb702092fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0622c5500e4858852dadb702092fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd0622c5500e4858852dadb702092fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd0622c5500e4858852dadb702092fa8.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hbNKSKWTAjV5C71_m6OQCJS5Obw=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.660775+00 2025-12-09 10:15:52.660779+00 19571 LJH2041#-粉色净色 SPMX-20240815314806 \N \N \N 1 \N [{"file_id": "6563acb3-357a-45f2-acd1-8efd19ad3e6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9280fbc110834065a1df41feffac9845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9280fbc110834065a1df41feffac9845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9280fbc110834065a1df41feffac9845.jpg", "file_size": 14181, "is_delete": false, "file_type": 1, "original_file_name": "LJH2041#-粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9280fbc110834065a1df41feffac9845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9280fbc110834065a1df41feffac9845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9280fbc110834065a1df41feffac9845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9280fbc110834065a1df41feffac9845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9280fbc110834065a1df41feffac9845.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:527OKJjDrfeXCKGsUFn0RYF1X4I=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.663605+00 2025-12-09 10:15:52.66361+00 19572 FX0003-98#RC23 SPMX-20240815314808 \N \N \N 1 \N [{"file_id": "2cec5a14-2cb3-4b4b-aa64-59ad7e71022f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bdd7096879064271a06753b1938f627c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bdd7096879064271a06753b1938f627c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bdd7096879064271a06753b1938f627c.jpg", "file_size": 48126, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-98#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7096879064271a06753b1938f627c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7096879064271a06753b1938f627c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bdd7096879064271a06753b1938f627c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bdd7096879064271a06753b1938f627c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bdd7096879064271a06753b1938f627c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L5-Hm1LLWSo26wUCNqVp2fy5vvA=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.666424+00 2025-12-09 10:15:52.666428+00 19573 2366FWF#绿 SPMX-20240815314812 \N \N \N 1 \N [{"file_id": "a177bd10-fff2-484e-b3ca-5b43fab6daf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebc433d7e87d497f843992a4d4409868.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebc433d7e87d497f843992a4d4409868.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebc433d7e87d497f843992a4d4409868.jpg", "file_size": 12136, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc433d7e87d497f843992a4d4409868.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc433d7e87d497f843992a4d4409868.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebc433d7e87d497f843992a4d4409868.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebc433d7e87d497f843992a4d4409868.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebc433d7e87d497f843992a4d4409868.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XtHvuBFViyf-rmQajRCaNJMDngw=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.669217+00 2025-12-09 10:15:52.669221+00 19574 LZ1403#童装T3号色 SPMX-20240815314814 \N \N \N 1 \N [{"file_id": "b929bc1e-ee44-404a-bf82-1305fdfa2af7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dee0e3c7908425e8153558d1ceafd2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dee0e3c7908425e8153558d1ceafd2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dee0e3c7908425e8153558d1ceafd2a.jpg", "file_size": 22032, "is_delete": false, "file_type": 1, "original_file_name": "LZ1403#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dee0e3c7908425e8153558d1ceafd2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dee0e3c7908425e8153558d1ceafd2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dee0e3c7908425e8153558d1ceafd2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dee0e3c7908425e8153558d1ceafd2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dee0e3c7908425e8153558d1ceafd2a.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykIkbpjUt2qgMqnzbyeo98Dzy3s=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.671937+00 2025-12-09 10:15:52.671941+00 19575 DLFS31214#浅粉 SPMX-20240815314810 \N \N \N 1 \N [{"file_id": "0b3fd27d-b39b-405a-af71-46cf47066a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a7da956e4d741c98e1d8af85cbbe7d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a7da956e4d741c98e1d8af85cbbe7d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a7da956e4d741c98e1d8af85cbbe7d6.jpg", "file_size": 23517, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a7da956e4d741c98e1d8af85cbbe7d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a7da956e4d741c98e1d8af85cbbe7d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a7da956e4d741c98e1d8af85cbbe7d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a7da956e4d741c98e1d8af85cbbe7d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a7da956e4d741c98e1d8af85cbbe7d6.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jWOaLqglZzsmLows0H7l7EqcJ6k=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.674661+00 2025-12-09 10:15:52.674665+00 19576 HXF0008-25#蓝色2XL SPMX-20240815314811 \N \N \N 1 \N [{"file_id": "235f64de-8a67-4646-9cf0-750b549533f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb5d89b4727441aa5ca4a424d3428c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb5d89b4727441aa5ca4a424d3428c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb5d89b4727441aa5ca4a424d3428c1.jpg", "file_size": 22947, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb5d89b4727441aa5ca4a424d3428c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb5d89b4727441aa5ca4a424d3428c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb5d89b4727441aa5ca4a424d3428c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb5d89b4727441aa5ca4a424d3428c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb5d89b4727441aa5ca4a424d3428c1.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeH_dmtiCpuhHIB15AxtZ3lwJ90=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.677381+00 2025-12-09 10:15:52.677385+00 19577 JY#6#黑底黄红花 SPMX-20240815314807 \N \N \N 1 \N [{"file_id": "33cdcd92-edab-48f6-87b5-e5d3cf23e332", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42ea94f706b64a60a6d40d57d47dc456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42ea94f706b64a60a6d40d57d47dc456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42ea94f706b64a60a6d40d57d47dc456.jpg", "file_size": 13029, "is_delete": false, "file_type": 1, "original_file_name": "JY#6#黑底黄红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42ea94f706b64a60a6d40d57d47dc456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42ea94f706b64a60a6d40d57d47dc456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42ea94f706b64a60a6d40d57d47dc456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42ea94f706b64a60a6d40d57d47dc456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42ea94f706b64a60a6d40d57d47dc456.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ql2wLloixMt9vi0d9TF2Yy-GXiQ=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.680392+00 2025-12-09 10:15:52.680398+00 19578 LZ1403#童装T2号色 SPMX-20240815314802 \N \N \N 1 \N [{"file_id": "989b7037-0821-49d3-8e8f-61f2f954acf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a05f682bb7714e8dadd71a0dbbd1d3df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a05f682bb7714e8dadd71a0dbbd1d3df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a05f682bb7714e8dadd71a0dbbd1d3df.jpg", "file_size": 22134, "is_delete": false, "file_type": 1, "original_file_name": "LZ1403#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05f682bb7714e8dadd71a0dbbd1d3df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05f682bb7714e8dadd71a0dbbd1d3df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05f682bb7714e8dadd71a0dbbd1d3df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a05f682bb7714e8dadd71a0dbbd1d3df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a05f682bb7714e8dadd71a0dbbd1d3df.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoMvH3oGyejNtac4PXHHOZ-9DDk=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.683461+00 2025-12-09 10:15:52.683468+00 19579 2366FWF#玫红 SPMX-20240815314801 \N \N \N 1 \N [{"file_id": "667fd812-9087-4db9-a2a1-690a0e11bcc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c31a24f72f5245c5af65d4b385338113.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c31a24f72f5245c5af65d4b385338113.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c31a24f72f5245c5af65d4b385338113.jpg", "file_size": 13215, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a24f72f5245c5af65d4b385338113.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a24f72f5245c5af65d4b385338113.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c31a24f72f5245c5af65d4b385338113.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c31a24f72f5245c5af65d4b385338113.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c31a24f72f5245c5af65d4b385338113.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:veO9W3R9MHXPP-oB2fNY9HtAbUY=", "createTime": "2024-08-15 15:06:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.686585+00 2025-12-09 10:15:52.686592+00 19580 002-2FWE#L SPMX-20240815314822 \N \N \N 1 \N [{"file_id": "89f27000-2342-4640-bf1e-87b11d09cc5f", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "a83eb29297f849b6aadae666703f2f67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "a83eb29297f849b6aadae666703f2f67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "a83eb29297f849b6aadae666703f2f67.jpg", "file_size": 15787, "is_delete": false, "file_type": 1, "original_file_name": "dt001J7eao7v4J8u1C4SdbfV0j3J1k0B748K0A36bUdJci5tf5em75bWfK06aNeA.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/a83eb29297f849b6aadae666703f2f67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/a83eb29297f849b6aadae666703f2f67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/a83eb29297f849b6aadae666703f2f67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/a83eb29297f849b6aadae666703f2f67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/a83eb29297f849b6aadae666703f2f67.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RnlU7I-yjR6cCXeL7kiXpZshf44=", "createTime": "2024-11-12 16:43:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.689679+00 2025-12-09 10:15:52.689685+00 19581 LZ1403#童装T4号色 SPMX-20240815314823 \N \N \N 1 \N [{"file_id": "2b01d8dd-605c-4680-8a84-9decd4ca679d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa362cd1b96f450e82e85e15a7e1b2a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa362cd1b96f450e82e85e15a7e1b2a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa362cd1b96f450e82e85e15a7e1b2a4.jpg", "file_size": 23625, "is_delete": false, "file_type": 1, "original_file_name": "LZ1403#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa362cd1b96f450e82e85e15a7e1b2a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa362cd1b96f450e82e85e15a7e1b2a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa362cd1b96f450e82e85e15a7e1b2a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa362cd1b96f450e82e85e15a7e1b2a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa362cd1b96f450e82e85e15a7e1b2a4.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzs2aytpyyvTR-jMkw1Nl-acmLc=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.692782+00 2025-12-09 10:15:52.692789+00 19582 JY#7#白底蓝花 SPMX-20240815314821 \N \N \N 1 \N [{"file_id": "193e4244-1bae-4421-af68-ee8bcb89b144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d147b3353564c38ba380633541591ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d147b3353564c38ba380633541591ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d147b3353564c38ba380633541591ef.jpg", "file_size": 17616, "is_delete": false, "file_type": 1, "original_file_name": "JY#7#白底蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d147b3353564c38ba380633541591ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d147b3353564c38ba380633541591ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d147b3353564c38ba380633541591ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d147b3353564c38ba380633541591ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d147b3353564c38ba380633541591ef.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LT_Dg1iFyymOAXrOUdgoOOf_t00=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.695977+00 2025-12-09 10:15:52.695985+00 19583 2366FWF#蓝 SPMX-20240815314819 \N \N \N 1 \N [{"file_id": "6a3092e8-ba4b-4d90-9fda-e991ed5277fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de13d97802544d47b18d1a01dd626d46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de13d97802544d47b18d1a01dd626d46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de13d97802544d47b18d1a01dd626d46.jpg", "file_size": 14669, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de13d97802544d47b18d1a01dd626d46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de13d97802544d47b18d1a01dd626d46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de13d97802544d47b18d1a01dd626d46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de13d97802544d47b18d1a01dd626d46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de13d97802544d47b18d1a01dd626d46.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XMcC-ZIgHCvFByv9v4DsZjgoH8E=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.69914+00 2025-12-09 10:15:52.699147+00 19584 DLFS31214#玫红 SPMX-20240815314824 \N \N \N 1 \N [{"file_id": "0e164059-cc8f-40d7-a4be-139857ac8b22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "281b6a4e2e424f289c1685b77840b117.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "281b6a4e2e424f289c1685b77840b117.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "281b6a4e2e424f289c1685b77840b117.jpg", "file_size": 25213, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281b6a4e2e424f289c1685b77840b117.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281b6a4e2e424f289c1685b77840b117.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/281b6a4e2e424f289c1685b77840b117.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/281b6a4e2e424f289c1685b77840b117.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/281b6a4e2e424f289c1685b77840b117.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wu9__xYMmgKec_kXxxsY7PWd6bo=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.702248+00 2025-12-09 10:15:52.702255+00 19585 CGH9409#蓝色XL SPMX-20240815314816 \N \N \N 1 \N [{"file_id": "40af4090-94fd-429b-9ede-fd06a384f12a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg", "file_size": 13303, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7a7f7ef2cae4f0fb21f4cb275cf016f.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPoK6Bg4xqzbcid5JjtC3deZR-E=", "createTime": "2024-08-15 15:06:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.705387+00 2025-12-09 10:15:52.705394+00 19586 HXF0008-25#蓝色L SPMX-20240815314820 \N \N \N 1 \N [{"file_id": "2a45bc28-0b4e-405b-9f00-381b034acf99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d4bb547c72a445db1d076d02f944778.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d4bb547c72a445db1d076d02f944778.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d4bb547c72a445db1d076d02f944778.jpg", "file_size": 22787, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4bb547c72a445db1d076d02f944778.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4bb547c72a445db1d076d02f944778.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d4bb547c72a445db1d076d02f944778.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d4bb547c72a445db1d076d02f944778.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d4bb547c72a445db1d076d02f944778.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ch_wff_f2mlOqqywRMtHzvmYOf0=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.708436+00 2025-12-09 10:15:52.708442+00 19587 LJH2042#玫红 SPMX-20240815314817 \N \N \N 1 \N [{"file_id": "5ed028be-2fca-44f1-b01b-60ae9bdd5706", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c171f4aeb3a453c8905fde356d66ef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c171f4aeb3a453c8905fde356d66ef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c171f4aeb3a453c8905fde356d66ef6.jpg", "file_size": 46668, "is_delete": false, "file_type": 1, "original_file_name": "LJH2042#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c171f4aeb3a453c8905fde356d66ef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c171f4aeb3a453c8905fde356d66ef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c171f4aeb3a453c8905fde356d66ef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c171f4aeb3a453c8905fde356d66ef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c171f4aeb3a453c8905fde356d66ef6.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1KRZ1PgFDiHf7Z1ievRQZl4OoXk=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.711484+00 2025-12-09 10:15:52.711492+00 19588 1231-6FWF#中童袖领匹布 SPMX-20240815314825 \N \N \N 1 \N [{"file_id": "36a3651c-2acc-4815-833f-97570ce64c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a13114dff6243489102f658b7a4ee95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a13114dff6243489102f658b7a4ee95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a13114dff6243489102f658b7a4ee95.jpg", "file_size": 9317, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13114dff6243489102f658b7a4ee95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13114dff6243489102f658b7a4ee95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a13114dff6243489102f658b7a4ee95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a13114dff6243489102f658b7a4ee95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a13114dff6243489102f658b7a4ee95.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rxtKm08luu1J49UtPppVCIy4iNI=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.714546+00 2025-12-09 10:15:52.714553+00 19589 88053#玫红 SPMX-20240815314826 \N \N \N 1 \N [{"file_id": "826f23a9-1ed0-4409-a4c4-5f6ecef11283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db84145da25848fd80bf9da57f1207a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db84145da25848fd80bf9da57f1207a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db84145da25848fd80bf9da57f1207a0.jpg", "file_size": 11213, "is_delete": false, "file_type": 1, "original_file_name": "88053#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db84145da25848fd80bf9da57f1207a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db84145da25848fd80bf9da57f1207a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db84145da25848fd80bf9da57f1207a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db84145da25848fd80bf9da57f1207a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db84145da25848fd80bf9da57f1207a0.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kPY7sb9-1aBsvfAl0kN27C4jkGA=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.717822+00 2025-12-09 10:15:52.71783+00 19590 FX0003-99#RC23 SPMX-20240815314818 \N \N \N 1 \N [{"file_id": "0b3fe340-7c12-4189-a1cc-141ba1af4c73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b38cc3202a46403dbf0d59be2025add7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b38cc3202a46403dbf0d59be2025add7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b38cc3202a46403dbf0d59be2025add7.jpg", "file_size": 38309, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-99#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38cc3202a46403dbf0d59be2025add7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38cc3202a46403dbf0d59be2025add7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b38cc3202a46403dbf0d59be2025add7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b38cc3202a46403dbf0d59be2025add7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b38cc3202a46403dbf0d59be2025add7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GYjFwx27nDZx0JBU1ANZ2A7jaV0=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.721231+00 2025-12-09 10:15:52.721237+00 19591 FX0003-A1#RC23 SPMX-20240815314829 \N \N \N 1 \N [{"file_id": "612ae195-22d8-46d7-8e01-650790402bea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c4b525e1db64fe78701cf998013e022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c4b525e1db64fe78701cf998013e022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c4b525e1db64fe78701cf998013e022.jpg", "file_size": 7885, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A1#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b525e1db64fe78701cf998013e022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b525e1db64fe78701cf998013e022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c4b525e1db64fe78701cf998013e022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c4b525e1db64fe78701cf998013e022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c4b525e1db64fe78701cf998013e022.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWIT2_r8eqwrPGgq0TlgwZ_6gnQ=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.724386+00 2025-12-09 10:15:52.724393+00 19592 002-2FWE#M SPMX-20240815314832 \N \N \N 1 \N [{"file_id": "1e78ec0d-89c5-4ec8-b576-6518186699fb", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "1bb95e47d59c48369be630e6ae2501ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "1bb95e47d59c48369be630e6ae2501ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "1bb95e47d59c48369be630e6ae2501ef.jpg", "file_size": 16293, "is_delete": false, "file_type": 1, "original_file_name": "2G2D5xf15V9z6x6meF7K4He33Xb01Ub34fbo2B1Hf5cX2X3H520efT4gfi3q428p.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1bb95e47d59c48369be630e6ae2501ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1bb95e47d59c48369be630e6ae2501ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/1bb95e47d59c48369be630e6ae2501ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/1bb95e47d59c48369be630e6ae2501ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/1bb95e47d59c48369be630e6ae2501ef.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRAJ_DoLzAne_I6lznskN_ylceI=", "createTime": "2024-11-12 16:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.727566+00 2025-12-09 10:15:52.727572+00 19593 HXF0008-25#蓝色M SPMX-20240815314830 \N \N \N 1 \N [{"file_id": "067bfb68-cf02-43fe-b21c-b86650b3fdad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8385e1e6f4594a8090c4ffb05bc1c90d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8385e1e6f4594a8090c4ffb05bc1c90d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8385e1e6f4594a8090c4ffb05bc1c90d.jpg", "file_size": 23693, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8385e1e6f4594a8090c4ffb05bc1c90d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8385e1e6f4594a8090c4ffb05bc1c90d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8385e1e6f4594a8090c4ffb05bc1c90d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8385e1e6f4594a8090c4ffb05bc1c90d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8385e1e6f4594a8090c4ffb05bc1c90d.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GoFILH5CNAgt2pjjVi9Hn03JEB0=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.730824+00 2025-12-09 10:15:52.73083+00 19594 88053#绿色 SPMX-20240815314836 \N \N \N 1 \N [{"file_id": "60095050-709a-4126-b65e-a3a726ace05f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f81d6cb910d46d1943faf6fd7a2b657.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f81d6cb910d46d1943faf6fd7a2b657.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f81d6cb910d46d1943faf6fd7a2b657.jpg", "file_size": 12537, "is_delete": false, "file_type": 1, "original_file_name": "88053#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f81d6cb910d46d1943faf6fd7a2b657.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f81d6cb910d46d1943faf6fd7a2b657.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f81d6cb910d46d1943faf6fd7a2b657.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f81d6cb910d46d1943faf6fd7a2b657.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f81d6cb910d46d1943faf6fd7a2b657.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_GUFe8dQgozlQntAgrfq8Qjw6RI=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.734336+00 2025-12-09 10:15:52.734347+00 19595 LJH2042#黄色 SPMX-20240815314840 \N \N \N 1 \N [{"file_id": "ffe94d45-387f-4d79-9965-aeff0c6ae85c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d00d05377c98473b8ee0067f13236978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d00d05377c98473b8ee0067f13236978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d00d05377c98473b8ee0067f13236978.jpg", "file_size": 43486, "is_delete": false, "file_type": 1, "original_file_name": "LJH2042#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00d05377c98473b8ee0067f13236978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00d05377c98473b8ee0067f13236978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d00d05377c98473b8ee0067f13236978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d00d05377c98473b8ee0067f13236978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d00d05377c98473b8ee0067f13236978.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qw2bNV3yVdPkZdFvjoAXhg8AAdU=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.737639+00 2025-12-09 10:15:52.737646+00 19596 LJH2042#绿色 SPMX-20240815314827 \N \N \N 1 \N [{"file_id": "2aee9618-c928-4a29-82d9-b0882a2e14fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47b25c026e2e44f29631b2704f1b4db9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47b25c026e2e44f29631b2704f1b4db9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47b25c026e2e44f29631b2704f1b4db9.jpg", "file_size": 48478, "is_delete": false, "file_type": 1, "original_file_name": "LJH2042#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b25c026e2e44f29631b2704f1b4db9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b25c026e2e44f29631b2704f1b4db9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b25c026e2e44f29631b2704f1b4db9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47b25c026e2e44f29631b2704f1b4db9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47b25c026e2e44f29631b2704f1b4db9.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:birSQaF6Tx1LoFhJMyBDb3Sqzdc=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.740899+00 2025-12-09 10:15:52.740905+00 19597 CGH9409#金黄2XL SPMX-20240815314838 \N \N \N 1 \N [{"file_id": "43e5dc7a-f3fa-4c0d-8309-c722cd8e3b49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f198b5e24c5e4272a8a8d82ea12c423b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f198b5e24c5e4272a8a8d82ea12c423b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f198b5e24c5e4272a8a8d82ea12c423b.jpg", "file_size": 11417, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#金黄2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f198b5e24c5e4272a8a8d82ea12c423b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f198b5e24c5e4272a8a8d82ea12c423b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f198b5e24c5e4272a8a8d82ea12c423b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f198b5e24c5e4272a8a8d82ea12c423b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f198b5e24c5e4272a8a8d82ea12c423b.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HH-9jitPirWLWCsGvTT-syMSec0=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.744053+00 2025-12-09 10:15:52.744061+00 19598 FX0003-A1#粉底白RC23 SPMX-20240815314839 \N \N \N 1 \N [{"file_id": "34460249-f704-4db7-a1c5-7748526e017e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0848c2ff46594de8990b76f13dc4ed74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0848c2ff46594de8990b76f13dc4ed74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0848c2ff46594de8990b76f13dc4ed74.jpg", "file_size": 19916, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A1#粉底白RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0848c2ff46594de8990b76f13dc4ed74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0848c2ff46594de8990b76f13dc4ed74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0848c2ff46594de8990b76f13dc4ed74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0848c2ff46594de8990b76f13dc4ed74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0848c2ff46594de8990b76f13dc4ed74.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aKlm7lJIz3Rh0UytntLnYNwgtDw=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.747263+00 2025-12-09 10:15:52.74727+00 19599 1231-6FWF#小童6码 SPMX-20240815314835 \N \N \N 1 \N [{"file_id": "3d6bdaa0-76c4-4e8f-9012-2ea36a792db4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce8b9d98d4e4441cac937e0e2200e999.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce8b9d98d4e4441cac937e0e2200e999.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce8b9d98d4e4441cac937e0e2200e999.jpg", "file_size": 18272, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8b9d98d4e4441cac937e0e2200e999.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8b9d98d4e4441cac937e0e2200e999.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce8b9d98d4e4441cac937e0e2200e999.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce8b9d98d4e4441cac937e0e2200e999.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce8b9d98d4e4441cac937e0e2200e999.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6FCwX2bLbeaXQPZ6Q3mJYfjKXTU=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.750476+00 2025-12-09 10:15:52.750482+00 19600 2366FWF#黄 SPMX-20240815314831 \N \N \N 1 \N [{"file_id": "aaafde51-4d15-4ad4-b4a9-32b5496a87d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b306e723beb43baa411e8f3abe7f110.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b306e723beb43baa411e8f3abe7f110.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b306e723beb43baa411e8f3abe7f110.jpg", "file_size": 11414, "is_delete": false, "file_type": 1, "original_file_name": "2366FWF#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b306e723beb43baa411e8f3abe7f110.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b306e723beb43baa411e8f3abe7f110.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b306e723beb43baa411e8f3abe7f110.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b306e723beb43baa411e8f3abe7f110.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b306e723beb43baa411e8f3abe7f110.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NJYySI9PH7_mC0xhPiB-_cOp4Ho=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.75364+00 2025-12-09 10:15:52.753646+00 19601 JY#7#红底白花 SPMX-20240815314833 \N \N \N 1 \N [{"file_id": "59d7ca13-2c5a-41cf-8842-b4cb8aed0c82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34e80b6d19044bb1aceecf01c28459f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34e80b6d19044bb1aceecf01c28459f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34e80b6d19044bb1aceecf01c28459f3.jpg", "file_size": 13300, "is_delete": false, "file_type": 1, "original_file_name": "JY#7#红底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e80b6d19044bb1aceecf01c28459f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e80b6d19044bb1aceecf01c28459f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34e80b6d19044bb1aceecf01c28459f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34e80b6d19044bb1aceecf01c28459f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34e80b6d19044bb1aceecf01c28459f3.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ej6y7e9fBNlf1AP2c5KIxYFyixw=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.75683+00 2025-12-09 10:15:52.756836+00 19602 CGH9409#蓝色净色 SPMX-20240815314828 \N \N \N 1 \N [{"file_id": "eb031939-b649-48a1-bdd3-8eb28d607df5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d121a3ed1608452f9d68832cdb9c9ee1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d121a3ed1608452f9d68832cdb9c9ee1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d121a3ed1608452f9d68832cdb9c9ee1.jpg", "file_size": 7365, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d121a3ed1608452f9d68832cdb9c9ee1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d121a3ed1608452f9d68832cdb9c9ee1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d121a3ed1608452f9d68832cdb9c9ee1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d121a3ed1608452f9d68832cdb9c9ee1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d121a3ed1608452f9d68832cdb9c9ee1.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fr_1KoMjN12KWPq0invbYKQ4ns8=", "createTime": "2024-08-15 15:06:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.760005+00 2025-12-09 10:15:52.760011+00 19603 DLFS31214#草绿 SPMX-20240815314837 \N \N \N 1 \N [{"file_id": "1f7cd8fa-af58-47dd-bb96-a06ed0681763", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4915121984f544fe9e7a6e6387dce2f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4915121984f544fe9e7a6e6387dce2f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4915121984f544fe9e7a6e6387dce2f0.jpg", "file_size": 24030, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4915121984f544fe9e7a6e6387dce2f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4915121984f544fe9e7a6e6387dce2f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4915121984f544fe9e7a6e6387dce2f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4915121984f544fe9e7a6e6387dce2f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4915121984f544fe9e7a6e6387dce2f0.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vS-K5BYbBbPWaVoR3WXhgVmeAe8=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.76326+00 2025-12-09 10:15:52.763266+00 19604 LZ1403#童装T5号色 SPMX-20240815314834 \N \N \N 1 \N [{"file_id": "76ce7dd0-2fb5-4c5f-b2f2-2c88564a8788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b444cf61a02e4cf18047cbf164fe4e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b444cf61a02e4cf18047cbf164fe4e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b444cf61a02e4cf18047cbf164fe4e86.jpg", "file_size": 22806, "is_delete": false, "file_type": 1, "original_file_name": "LZ1403#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b444cf61a02e4cf18047cbf164fe4e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b444cf61a02e4cf18047cbf164fe4e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b444cf61a02e4cf18047cbf164fe4e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b444cf61a02e4cf18047cbf164fe4e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b444cf61a02e4cf18047cbf164fe4e86.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5dq0Y44I3Ck9hNKR10UBQPH6dyI=", "createTime": "2024-08-15 15:07:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.76642+00 2025-12-09 10:15:52.766426+00 19605 CGH9409#金黄L SPMX-20240815314848 \N \N \N 1 \N [{"file_id": "6b605633-6c6a-495b-8e4d-510bdb755ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa62f3505c534798afe7bbbf1b2515d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa62f3505c534798afe7bbbf1b2515d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa62f3505c534798afe7bbbf1b2515d7.jpg", "file_size": 11753, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#金黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62f3505c534798afe7bbbf1b2515d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62f3505c534798afe7bbbf1b2515d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa62f3505c534798afe7bbbf1b2515d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa62f3505c534798afe7bbbf1b2515d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa62f3505c534798afe7bbbf1b2515d7.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aT7I9Ddt3FL1xWDrliiNYzd8o3I=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.769661+00 2025-12-09 10:15:52.769668+00 19606 HXF0008-26#WJC22 SPMX-20240815314852 \N \N \N 1 \N [{"file_id": "8b74bd96-2761-4a98-833b-0f5f47cdf3c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e057f128ad474adfab582479b9c3008c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e057f128ad474adfab582479b9c3008c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e057f128ad474adfab582479b9c3008c.jpg", "file_size": 20436, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-26#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e057f128ad474adfab582479b9c3008c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e057f128ad474adfab582479b9c3008c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e057f128ad474adfab582479b9c3008c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e057f128ad474adfab582479b9c3008c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e057f128ad474adfab582479b9c3008c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GMsw7RaKqfCmbRaJ9lmLzu0dpNo=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.772873+00 2025-12-09 10:15:52.772879+00 19607 2367FWF#玫红 SPMX-20240815314842 \N \N \N 1 \N [{"file_id": "472c2d36-2c0a-4879-8385-6a0b9466581a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "041f22dac9d24f83806ea6078f5280e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "041f22dac9d24f83806ea6078f5280e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "041f22dac9d24f83806ea6078f5280e6.jpg", "file_size": 16043, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041f22dac9d24f83806ea6078f5280e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041f22dac9d24f83806ea6078f5280e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041f22dac9d24f83806ea6078f5280e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/041f22dac9d24f83806ea6078f5280e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/041f22dac9d24f83806ea6078f5280e6.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1BD_SEqCpDKUTGxIg8rrkQXMJIo=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.775946+00 2025-12-09 10:15:52.775951+00 19608 JY#8#蓝底圈圈 SPMX-20240815314844 \N \N \N 1 \N [{"file_id": "40a93dd1-e5a6-486a-9fef-9b29c44e21b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c65430ddc8e34d07832991186a8271db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c65430ddc8e34d07832991186a8271db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c65430ddc8e34d07832991186a8271db.jpg", "file_size": 22414, "is_delete": false, "file_type": 1, "original_file_name": "JY#8#蓝底圈圈.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65430ddc8e34d07832991186a8271db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65430ddc8e34d07832991186a8271db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c65430ddc8e34d07832991186a8271db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c65430ddc8e34d07832991186a8271db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c65430ddc8e34d07832991186a8271db.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OlJx0DvIKBfUlW-BKaIchmJve98=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.779158+00 2025-12-09 10:15:52.779165+00 19609 002-3FWE#L SPMX-20240815314845 \N \N \N 1 \N [{"file_id": "7e42a7b9-3567-43de-b579-15cace10b901", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "624d8e64200c421a8bf8f8a9aa9d0289.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "624d8e64200c421a8bf8f8a9aa9d0289.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "624d8e64200c421a8bf8f8a9aa9d0289.jpg", "file_size": 15898, "is_delete": false, "file_type": 1, "original_file_name": "3gaeapfb1hfr0x6b3Ub20m6pa3awcpcW10bsavdCaO9G1o0h6u3n0g6H5s9456dd.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/624d8e64200c421a8bf8f8a9aa9d0289.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/624d8e64200c421a8bf8f8a9aa9d0289.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/624d8e64200c421a8bf8f8a9aa9d0289.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/624d8e64200c421a8bf8f8a9aa9d0289.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/624d8e64200c421a8bf8f8a9aa9d0289.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:84_W1-Qh_k1tKDjpsLbnRcA8E-E=", "createTime": "2024-11-12 16:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.782355+00 2025-12-09 10:15:52.782361+00 19610 LJH2043#-20#粉色 SPMX-20240815314851 \N \N \N 1 \N [{"file_id": "797fb9eb-e132-403e-943e-6cedc6e21a87", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg", "file_size": 52653, "is_delete": false, "file_type": 1, "original_file_name": "LJH2043#-20#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ebc71feadcc4ae7afd3f9bdb4b0d253.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8uys_DlfteMKXLBi212aRQzUOw0=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.785546+00 2025-12-09 10:15:52.785553+00 19611 HXF0008-25#蓝色XL SPMX-20240815314841 \N \N \N 1 \N [{"file_id": "513cc560-1b11-4d12-ba14-e31dc43e4967", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd2c04ce690d46b4a04a99104527dce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd2c04ce690d46b4a04a99104527dce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd2c04ce690d46b4a04a99104527dce8.jpg", "file_size": 23169, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-25#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2c04ce690d46b4a04a99104527dce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2c04ce690d46b4a04a99104527dce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd2c04ce690d46b4a04a99104527dce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd2c04ce690d46b4a04a99104527dce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd2c04ce690d46b4a04a99104527dce8.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0lNpnXeQmI0ia4ym9jZe9cLwrg=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.788694+00 2025-12-09 10:15:52.7887+00 19612 LZ1404#童装T1号色 SPMX-20240815314843 \N \N \N 1 \N [{"file_id": "a878220a-f0e3-4296-8a66-cfa027cac0e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "527d48d080ac446c8d5142e95e588b3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "527d48d080ac446c8d5142e95e588b3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "527d48d080ac446c8d5142e95e588b3c.jpg", "file_size": 25964, "is_delete": false, "file_type": 1, "original_file_name": "LZ1404#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527d48d080ac446c8d5142e95e588b3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527d48d080ac446c8d5142e95e588b3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527d48d080ac446c8d5142e95e588b3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/527d48d080ac446c8d5142e95e588b3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/527d48d080ac446c8d5142e95e588b3c.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ImYMptuP2lkxRWLvOyBjz6LRTA=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.79187+00 2025-12-09 10:15:52.791876+00 19613 1231-6FWF#小童8码+4码 SPMX-20240815314847 \N \N \N 1 \N [{"file_id": "9efa9427-8b63-453c-bf96-f77e967729bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2a84771d37145bc9dccf23fb2a4cba1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2a84771d37145bc9dccf23fb2a4cba1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2a84771d37145bc9dccf23fb2a4cba1.jpg", "file_size": 18250, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a84771d37145bc9dccf23fb2a4cba1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a84771d37145bc9dccf23fb2a4cba1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2a84771d37145bc9dccf23fb2a4cba1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2a84771d37145bc9dccf23fb2a4cba1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2a84771d37145bc9dccf23fb2a4cba1.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ej_uq09qt8rzs7F5LL0R3KTh6tY=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.795028+00 2025-12-09 10:15:52.795034+00 19614 FX0003-A26#橙色 SPMX-20240815314850 \N \N \N 1 \N [{"file_id": "2a3ff8a6-7cde-4d87-aad0-980ee57ed94c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "484477ff3fc3474ba17966430fd09349.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "484477ff3fc3474ba17966430fd09349.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "484477ff3fc3474ba17966430fd09349.jpg", "file_size": 27903, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A26#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484477ff3fc3474ba17966430fd09349.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484477ff3fc3474ba17966430fd09349.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/484477ff3fc3474ba17966430fd09349.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/484477ff3fc3474ba17966430fd09349.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/484477ff3fc3474ba17966430fd09349.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aEDL9TLhIp23RPhaBHaTuwiqi3M=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.798303+00 2025-12-09 10:15:52.798309+00 19615 88053#黑色 SPMX-20240815314846 \N \N \N 1 \N [{"file_id": "1a4192b8-d8ce-4231-8a65-bf390c0e7a82", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6403079734b4d4586f83282e3addb36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6403079734b4d4586f83282e3addb36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6403079734b4d4586f83282e3addb36.jpg", "file_size": 16567, "is_delete": false, "file_type": 1, "original_file_name": "88053#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6403079734b4d4586f83282e3addb36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6403079734b4d4586f83282e3addb36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6403079734b4d4586f83282e3addb36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6403079734b4d4586f83282e3addb36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6403079734b4d4586f83282e3addb36.jpg?e=1765361751&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5bPCc83igJHW-AR7YI96pL3rcE=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.802181+00 2025-12-09 10:15:52.802189+00 19616 DLFS31214#蓝绿 SPMX-20240815314849 \N \N \N 1 \N [{"file_id": "8ade8a7e-afa7-4ec8-adf9-08ae09d745e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1331cbb13928452b93e153ae7778757d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1331cbb13928452b93e153ae7778757d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1331cbb13928452b93e153ae7778757d.jpg", "file_size": 24335, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1331cbb13928452b93e153ae7778757d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1331cbb13928452b93e153ae7778757d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1331cbb13928452b93e153ae7778757d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1331cbb13928452b93e153ae7778757d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1331cbb13928452b93e153ae7778757d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3F0uk9VQWQXsCKjz80kpI57KEfs=", "createTime": "2024-08-15 15:07:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.805968+00 2025-12-09 10:15:52.805975+00 19617 002-3FWE#M SPMX-20240815314853 \N \N \N 1 \N [{"file_id": "f18da515-8694-4f7c-8eeb-6d31985b7e81", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "e9f81b05a3e344dab7994c998c5886f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "e9f81b05a3e344dab7994c998c5886f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "e9f81b05a3e344dab7994c998c5886f0.jpg", "file_size": 16699, "is_delete": false, "file_type": 1, "original_file_name": "5J3T9dfQ2Z46el2ddw17ar5C6AcPc0fa0Kd45D203HbVbq891d63472Ecp8faDcL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/e9f81b05a3e344dab7994c998c5886f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/e9f81b05a3e344dab7994c998c5886f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/e9f81b05a3e344dab7994c998c5886f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/e9f81b05a3e344dab7994c998c5886f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/e9f81b05a3e344dab7994c998c5886f0.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tFXgHkaMvgFcsMXcT0oes5QkUSo=", "createTime": "2024-11-12 16:43:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.809401+00 2025-12-09 10:15:52.809406+00 19618 DLFS31214#黄色 SPMX-20240815314860 \N \N \N 1 \N [{"file_id": "68ed3ec8-c46a-4968-8610-68f5eaa35b4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcf8e660b9d34fe9a926f35633ea2958.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcf8e660b9d34fe9a926f35633ea2958.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcf8e660b9d34fe9a926f35633ea2958.jpg", "file_size": 23564, "is_delete": false, "file_type": 1, "original_file_name": "DLFS31214#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf8e660b9d34fe9a926f35633ea2958.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf8e660b9d34fe9a926f35633ea2958.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcf8e660b9d34fe9a926f35633ea2958.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcf8e660b9d34fe9a926f35633ea2958.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcf8e660b9d34fe9a926f35633ea2958.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8CFA1wWmz4nDs7bEenf0kvPb_A=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.812775+00 2025-12-09 10:15:52.812784+00 19619 LZ1404#童装T3号色 SPMX-20240815314868 \N \N \N 1 \N [{"file_id": "ea8a5a69-cee0-48fc-acb6-7ca93cf0f077", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5731a5b131d40afb6e8484b9df812a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5731a5b131d40afb6e8484b9df812a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5731a5b131d40afb6e8484b9df812a7.jpg", "file_size": 24357, "is_delete": false, "file_type": 1, "original_file_name": "LZ1404#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5731a5b131d40afb6e8484b9df812a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5731a5b131d40afb6e8484b9df812a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5731a5b131d40afb6e8484b9df812a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5731a5b131d40afb6e8484b9df812a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5731a5b131d40afb6e8484b9df812a7.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8ks5ntN81GoMIKXaBbxkbDNccM=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.815866+00 2025-12-09 10:15:52.815872+00 19620 88055#墨绿底 SPMX-20240815314862 \N \N \N 1 \N [{"file_id": "96112e13-4ae5-41ed-ba82-f8c1784100c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70dc238132284aa99fa5b8229bf63fcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70dc238132284aa99fa5b8229bf63fcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70dc238132284aa99fa5b8229bf63fcc.jpg", "file_size": 17042, "is_delete": false, "file_type": 1, "original_file_name": "88055#墨绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dc238132284aa99fa5b8229bf63fcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dc238132284aa99fa5b8229bf63fcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70dc238132284aa99fa5b8229bf63fcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70dc238132284aa99fa5b8229bf63fcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70dc238132284aa99fa5b8229bf63fcc.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GGugnQ9I7_8C5IU3dXPIeblbkQ4=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.819005+00 2025-12-09 10:15:52.819011+00 19621 2367FWF#绿 SPMX-20240815314854 \N \N \N 1 \N [{"file_id": "234e68be-d766-4833-8fbd-a31dfc52ef9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e6afc2f190143ed8f06454aeb6c643b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e6afc2f190143ed8f06454aeb6c643b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e6afc2f190143ed8f06454aeb6c643b.jpg", "file_size": 14866, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6afc2f190143ed8f06454aeb6c643b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6afc2f190143ed8f06454aeb6c643b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e6afc2f190143ed8f06454aeb6c643b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e6afc2f190143ed8f06454aeb6c643b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e6afc2f190143ed8f06454aeb6c643b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzUSAnUzLNJm0r7WQin-2ANfdgA=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.822315+00 2025-12-09 10:15:52.822323+00 19622 LZ1404#童装T2号色 SPMX-20240815314855 \N \N \N 1 \N [{"file_id": "1992ae72-0c5b-4173-93a4-2c6b96ddc502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b31dfbcea0a845d5a968adaf216fe0ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b31dfbcea0a845d5a968adaf216fe0ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b31dfbcea0a845d5a968adaf216fe0ab.jpg", "file_size": 25830, "is_delete": false, "file_type": 1, "original_file_name": "LZ1404#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b31dfbcea0a845d5a968adaf216fe0ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b31dfbcea0a845d5a968adaf216fe0ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b31dfbcea0a845d5a968adaf216fe0ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b31dfbcea0a845d5a968adaf216fe0ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b31dfbcea0a845d5a968adaf216fe0ab.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JYoCahxNCggZpZgMoFjU4XqeCzM=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.825584+00 2025-12-09 10:15:52.825589+00 19623 2367FWF#蓝 SPMX-20240815314865 \N \N \N 1 \N [{"file_id": "6d106fe4-0fe0-49cd-ac3a-da351d131cda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6503e7a8219459982965f2638d4e7d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6503e7a8219459982965f2638d4e7d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6503e7a8219459982965f2638d4e7d3.jpg", "file_size": 15668, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6503e7a8219459982965f2638d4e7d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6503e7a8219459982965f2638d4e7d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6503e7a8219459982965f2638d4e7d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6503e7a8219459982965f2638d4e7d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6503e7a8219459982965f2638d4e7d3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Y3txBpRFXiDjRhH1Mp5HGPhm1Y=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.82835+00 2025-12-09 10:15:52.828355+00 19624 CGH9409#金黄XL SPMX-20240815314856 \N \N \N 1 \N [{"file_id": "9d99237f-a70f-4965-bd83-d6b6efb0160a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b53b2eb76444469fb347a3d8f99de21a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b53b2eb76444469fb347a3d8f99de21a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b53b2eb76444469fb347a3d8f99de21a.jpg", "file_size": 12057, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#金黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53b2eb76444469fb347a3d8f99de21a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53b2eb76444469fb347a3d8f99de21a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b53b2eb76444469fb347a3d8f99de21a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b53b2eb76444469fb347a3d8f99de21a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b53b2eb76444469fb347a3d8f99de21a.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80-3ZLyTFfa-MJ1L9pbgdBpGqgU=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.83138+00 2025-12-09 10:15:52.831387+00 19625 LJH2043#-216#枣红 SPMX-20240815314859 \N \N \N 1 \N [{"file_id": "87d9ad9e-c7cd-4420-ad8a-d0bde184f2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74bb8ad889f6447bb68963063b1c6c15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74bb8ad889f6447bb68963063b1c6c15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74bb8ad889f6447bb68963063b1c6c15.jpg", "file_size": 54183, "is_delete": false, "file_type": 1, "original_file_name": "LJH2043#-216#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bb8ad889f6447bb68963063b1c6c15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bb8ad889f6447bb68963063b1c6c15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74bb8ad889f6447bb68963063b1c6c15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74bb8ad889f6447bb68963063b1c6c15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74bb8ad889f6447bb68963063b1c6c15.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QRjT1r9e00RC8V2rBNW4DbulWfw=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.835117+00 2025-12-09 10:15:52.835124+00 19626 1231-6FWF#小童袖领匹布 SPMX-20240815314863 \N \N \N 1 \N [{"file_id": "e5df474c-a4dd-445f-a662-adc25f8e34c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b53d655f91f4e15b27425bb5101f2ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b53d655f91f4e15b27425bb5101f2ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b53d655f91f4e15b27425bb5101f2ac.jpg", "file_size": 9573, "is_delete": false, "file_type": 1, "original_file_name": "1231-6FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b53d655f91f4e15b27425bb5101f2ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b53d655f91f4e15b27425bb5101f2ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b53d655f91f4e15b27425bb5101f2ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b53d655f91f4e15b27425bb5101f2ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b53d655f91f4e15b27425bb5101f2ac.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eHHPtDk6SSmq5Dmz2TMhk9opws=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.838812+00 2025-12-09 10:15:52.838819+00 19627 88055#宝兰底 SPMX-20240815314869 \N \N \N 1 \N [{"file_id": "e80aebaa-2143-45c0-b983-7d5da2c620a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21ca27847bf44cc0b8485444cf636de1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21ca27847bf44cc0b8485444cf636de1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21ca27847bf44cc0b8485444cf636de1.jpg", "file_size": 16938, "is_delete": false, "file_type": 1, "original_file_name": "88055#宝兰底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ca27847bf44cc0b8485444cf636de1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ca27847bf44cc0b8485444cf636de1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ca27847bf44cc0b8485444cf636de1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21ca27847bf44cc0b8485444cf636de1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21ca27847bf44cc0b8485444cf636de1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BTC5cQcLtAeY3oqp7bCPvYHgACQ=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.842582+00 2025-12-09 10:15:52.842587+00 19628 HXF0008-27#WJC22 SPMX-20240815314861 \N \N \N 1 \N [{"file_id": "eb39022a-32e9-4542-8dc7-fb125c6f6775", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6977d3894d91492da65edb8f9ed53ef4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6977d3894d91492da65edb8f9ed53ef4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6977d3894d91492da65edb8f9ed53ef4.jpg", "file_size": 22071, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-27#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977d3894d91492da65edb8f9ed53ef4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977d3894d91492da65edb8f9ed53ef4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6977d3894d91492da65edb8f9ed53ef4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6977d3894d91492da65edb8f9ed53ef4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6977d3894d91492da65edb8f9ed53ef4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2tCGqyLeUP8M-SaPgKV9xcPfsE8=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.845912+00 2025-12-09 10:15:52.845918+00 19629 JY#9#红底白花 SPMX-20240815314857 \N \N \N 1 \N [{"file_id": "c6f1e179-a771-4d44-aecb-79647de643a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "668d716501cd41b485f1fc60f79cbc85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "668d716501cd41b485f1fc60f79cbc85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "668d716501cd41b485f1fc60f79cbc85.jpg", "file_size": 14598, "is_delete": false, "file_type": 1, "original_file_name": "JY#9#红底白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668d716501cd41b485f1fc60f79cbc85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668d716501cd41b485f1fc60f79cbc85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668d716501cd41b485f1fc60f79cbc85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/668d716501cd41b485f1fc60f79cbc85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/668d716501cd41b485f1fc60f79cbc85.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NdVRt_4oVlZ6KA1nS5IlOPqCCtI=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.849303+00 2025-12-09 10:15:52.849311+00 19630 FX0003-A26#粉色 SPMX-20240815314858 \N \N \N 1 \N [{"file_id": "1ea8f28e-2657-4b34-a627-93082aba5965", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2390bc14754b4d55b07dfa1999d7e59f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2390bc14754b4d55b07dfa1999d7e59f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2390bc14754b4d55b07dfa1999d7e59f.jpg", "file_size": 26822, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A26#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2390bc14754b4d55b07dfa1999d7e59f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2390bc14754b4d55b07dfa1999d7e59f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2390bc14754b4d55b07dfa1999d7e59f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2390bc14754b4d55b07dfa1999d7e59f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2390bc14754b4d55b07dfa1999d7e59f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nceTukVka2l_2Tf5Ic9TN2RZl6k=", "createTime": "2024-08-15 15:07:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.852718+00 2025-12-09 10:15:52.852724+00 19631 002-4FWE#L SPMX-20240815314864 \N \N \N 1 \N [{"file_id": "4d8604fa-fcc2-4c71-95a7-42def5e2325c", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "1c2bf2df6eeb4756858738ff84587755.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "1c2bf2df6eeb4756858738ff84587755.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "1c2bf2df6eeb4756858738ff84587755.jpg", "file_size": 16572, "is_delete": false, "file_type": 1, "original_file_name": "9s8sbw7W0K17b55aeF3p6sd30z1he3979geM3Y9jcidgfb307r68cL952g1C2H52.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1c2bf2df6eeb4756858738ff84587755.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1c2bf2df6eeb4756858738ff84587755.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/1c2bf2df6eeb4756858738ff84587755.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/1c2bf2df6eeb4756858738ff84587755.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/1c2bf2df6eeb4756858738ff84587755.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeYQBJBzN8DXFZqpWNVkCu69Ufk=", "createTime": "2024-11-12 16:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.856155+00 2025-12-09 10:15:52.856162+00 19632 JY#W1FW#VS-D3 SPMX-20240815314867 \N \N \N 1 \N [{"file_id": "a6996bcd-bbfb-4faa-a172-22076eb1a535", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e5641707c9b475aa1fbbc1e56f0956f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e5641707c9b475aa1fbbc1e56f0956f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e5641707c9b475aa1fbbc1e56f0956f.jpg", "file_size": 9164, "is_delete": false, "file_type": 1, "original_file_name": "JY#W1FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5641707c9b475aa1fbbc1e56f0956f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5641707c9b475aa1fbbc1e56f0956f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5641707c9b475aa1fbbc1e56f0956f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e5641707c9b475aa1fbbc1e56f0956f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e5641707c9b475aa1fbbc1e56f0956f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afqGvvEGdrtRJya4Pjk3u2h0MD4=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.859279+00 2025-12-09 10:15:52.859285+00 19633 CGH9409#金黄净色 SPMX-20240815314866 \N \N \N 1 \N [{"file_id": "ea70d7f6-7ce9-40d2-bdea-73a12b1ff2ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b56e97eda370465cb26d4639d1b2a891.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b56e97eda370465cb26d4639d1b2a891.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b56e97eda370465cb26d4639d1b2a891.jpg", "file_size": 8173, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#金黄净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56e97eda370465cb26d4639d1b2a891.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56e97eda370465cb26d4639d1b2a891.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56e97eda370465cb26d4639d1b2a891.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b56e97eda370465cb26d4639d1b2a891.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b56e97eda370465cb26d4639d1b2a891.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VToHljq3nlRJlRq3OVp5U88q8Yc=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.862405+00 2025-12-09 10:15:52.862411+00 19634 1231-7FWF#中童12码+10码 SPMX-20240815314874 \N \N \N 1 \N [{"file_id": "a2abcffe-17eb-4e4b-ab24-0a9343f66467", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac686ac30e914de8a25ee694d240c97b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac686ac30e914de8a25ee694d240c97b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac686ac30e914de8a25ee694d240c97b.jpg", "file_size": 18919, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac686ac30e914de8a25ee694d240c97b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac686ac30e914de8a25ee694d240c97b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac686ac30e914de8a25ee694d240c97b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac686ac30e914de8a25ee694d240c97b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac686ac30e914de8a25ee694d240c97b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DgfcK54Fl5HYlGEfZD3gI_3WCLg=", "createTime": "2024-08-15 15:07:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.865621+00 2025-12-09 10:15:52.865627+00 19635 002-4FWE#M SPMX-20240815314875 \N \N \N 1 \N [{"file_id": "e399fe7a-797c-4e2f-a771-2a1631da0c46", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "d3e836615aaf48e2beb441614d6e275e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "d3e836615aaf48e2beb441614d6e275e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "d3e836615aaf48e2beb441614d6e275e.jpg", "file_size": 17043, "is_delete": false, "file_type": 1, "original_file_name": "60aW207XecbG0QcBfg6yfyb7bg8abMap78a9961ec12QaEd54K4b8d6Gca8Meb1T.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d3e836615aaf48e2beb441614d6e275e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d3e836615aaf48e2beb441614d6e275e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/d3e836615aaf48e2beb441614d6e275e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/d3e836615aaf48e2beb441614d6e275e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/d3e836615aaf48e2beb441614d6e275e.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sAT-iZ3YQIUaQ8HjIxAbPOTeJI8=", "createTime": "2024-11-12 16:43:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.868806+00 2025-12-09 10:15:52.868812+00 19636 HXF0008-28#橙色 SPMX-20240815314872 \N \N \N 1 \N [{"file_id": "49625995-3009-44b2-aa21-4846cbcca5c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e190164b85f54a8ea74bd0eeede638f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e190164b85f54a8ea74bd0eeede638f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e190164b85f54a8ea74bd0eeede638f7.jpg", "file_size": 10268, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-28#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e190164b85f54a8ea74bd0eeede638f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e190164b85f54a8ea74bd0eeede638f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e190164b85f54a8ea74bd0eeede638f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e190164b85f54a8ea74bd0eeede638f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e190164b85f54a8ea74bd0eeede638f7.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfczLLwvApdGRmOgj6HA_x4Jzz8=", "createTime": "2024-08-15 15:07:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.872035+00 2025-12-09 10:15:52.872042+00 19637 LJH2043#-278#绿色 SPMX-20240815314870 \N \N \N 1 \N [{"file_id": "8d1fde98-636f-47f2-90c5-f806b4f64c84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5a167800ef44be3b7a3af3035972bc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5a167800ef44be3b7a3af3035972bc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5a167800ef44be3b7a3af3035972bc2.jpg", "file_size": 55804, "is_delete": false, "file_type": 1, "original_file_name": "LJH2043#-278#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a167800ef44be3b7a3af3035972bc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a167800ef44be3b7a3af3035972bc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5a167800ef44be3b7a3af3035972bc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5a167800ef44be3b7a3af3035972bc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5a167800ef44be3b7a3af3035972bc2.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ecATlV5xMkTPOLZvZjV2ua-QnIA=", "createTime": "2024-08-15 15:07:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.875215+00 2025-12-09 10:15:52.875222+00 19638 FX0003-A26#紫色 SPMX-20240815314871 \N \N \N 1 \N [{"file_id": "632ccfe8-a4e6-48e6-8352-9e80c22b04cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f115ed8bea44b1bbc1c769284c40d06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f115ed8bea44b1bbc1c769284c40d06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f115ed8bea44b1bbc1c769284c40d06.jpg", "file_size": 27569, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A26#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f115ed8bea44b1bbc1c769284c40d06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f115ed8bea44b1bbc1c769284c40d06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f115ed8bea44b1bbc1c769284c40d06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f115ed8bea44b1bbc1c769284c40d06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f115ed8bea44b1bbc1c769284c40d06.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:veZEM9YDWieXDpdRbO9Jk30QMDk=", "createTime": "2024-08-15 15:07:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.87844+00 2025-12-09 10:15:52.878446+00 19639 DLOR023FWE#-A SPMX-20240815314873 \N \N \N 1 \N [{"file_id": "4b8b512c-c2a5-4c72-8423-b8cd27123181", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35d42aba6854488285adc5a5940b9278.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35d42aba6854488285adc5a5940b9278.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35d42aba6854488285adc5a5940b9278.jpg", "file_size": 24049, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d42aba6854488285adc5a5940b9278.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d42aba6854488285adc5a5940b9278.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d42aba6854488285adc5a5940b9278.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35d42aba6854488285adc5a5940b9278.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35d42aba6854488285adc5a5940b9278.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cdP8j0WCXUcen327Ln2sBuSfp0A=", "createTime": "2024-08-15 15:07:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.881593+00 2025-12-09 10:15:52.881599+00 19640 1231-7FWF#中童14码 SPMX-20240815314883 \N \N \N 1 \N [{"file_id": "a5322e79-4339-44b2-a523-badc9739c288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13d69abf706844b9bfb1acfa7659ef28.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13d69abf706844b9bfb1acfa7659ef28.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13d69abf706844b9bfb1acfa7659ef28.jpg", "file_size": 17187, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d69abf706844b9bfb1acfa7659ef28.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d69abf706844b9bfb1acfa7659ef28.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13d69abf706844b9bfb1acfa7659ef28.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13d69abf706844b9bfb1acfa7659ef28.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13d69abf706844b9bfb1acfa7659ef28.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFSbQG0FmeggEc6ssdMpdTKKiIU=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.884766+00 2025-12-09 10:15:52.884774+00 19641 CGH9409#黄色净色 SPMX-20240815314876 \N \N \N 1 \N [{"file_id": "f45f409e-ada1-4a17-91ed-a0ceed3113ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e50b1711db6476aae7deca3e1818077.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e50b1711db6476aae7deca3e1818077.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e50b1711db6476aae7deca3e1818077.jpg", "file_size": 6258, "is_delete": false, "file_type": 1, "original_file_name": "CGH9409#黄色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e50b1711db6476aae7deca3e1818077.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e50b1711db6476aae7deca3e1818077.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e50b1711db6476aae7deca3e1818077.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e50b1711db6476aae7deca3e1818077.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e50b1711db6476aae7deca3e1818077.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiP0A3z6Z2DcC09tEchvIOPoKV4=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.887996+00 2025-12-09 10:15:52.888003+00 19642 JY#W2FW#VS-D3 SPMX-20240815314878 \N \N \N 1 \N [{"file_id": "f1417b3b-576c-41bd-b7fc-c0b292bc7b78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg", "file_size": 9281, "is_delete": false, "file_type": 1, "original_file_name": "JY#W2FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6295e695c7ed4d1e8f5ea68ae57cdeb6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mSpd1nEMzXnDPbP0cn9pMkk3ipY=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.891271+00 2025-12-09 10:15:52.891278+00 19643 2367FWF#西红 SPMX-20240815314877 \N \N \N 1 \N [{"file_id": "5bde6c4e-3214-4dfd-9389-76af724f2858", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb8d0a4cbf8b4972af020f9fe164c682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb8d0a4cbf8b4972af020f9fe164c682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb8d0a4cbf8b4972af020f9fe164c682.jpg", "file_size": 16002, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8d0a4cbf8b4972af020f9fe164c682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8d0a4cbf8b4972af020f9fe164c682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb8d0a4cbf8b4972af020f9fe164c682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb8d0a4cbf8b4972af020f9fe164c682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb8d0a4cbf8b4972af020f9fe164c682.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7u_GDLeihexbVFYpHNDVzbM1PoE=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.894515+00 2025-12-09 10:15:52.894521+00 19644 88055#玫红 SPMX-20240815314879 \N \N \N 1 \N [{"file_id": "175ededd-f66d-4fcd-a879-c546c1b90472", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f8bee73506846b08c86b7a53bc4838f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f8bee73506846b08c86b7a53bc4838f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f8bee73506846b08c86b7a53bc4838f.jpg", "file_size": 15876, "is_delete": false, "file_type": 1, "original_file_name": "88055#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8bee73506846b08c86b7a53bc4838f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8bee73506846b08c86b7a53bc4838f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f8bee73506846b08c86b7a53bc4838f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f8bee73506846b08c86b7a53bc4838f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f8bee73506846b08c86b7a53bc4838f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6vCV6Rsx_lt1y2gTEGulDNj5g0=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.897817+00 2025-12-09 10:15:52.897825+00 19645 HXF0008-28#红色 SPMX-20240815314881 \N \N \N 1 \N [{"file_id": "5b7a3b7c-1b7c-46f1-aae3-d21aca8f41cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e2bfddcd26c470e9d5551611e591c8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e2bfddcd26c470e9d5551611e591c8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e2bfddcd26c470e9d5551611e591c8a.jpg", "file_size": 10126, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-28#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2bfddcd26c470e9d5551611e591c8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2bfddcd26c470e9d5551611e591c8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e2bfddcd26c470e9d5551611e591c8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e2bfddcd26c470e9d5551611e591c8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e2bfddcd26c470e9d5551611e591c8a.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XeREgiEsH2k-3X3GXfFqPwt6XqE=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.953436+00 2025-12-09 10:15:52.953442+00 19662 DLOR023FWE#-E SPMX-20240815314903 \N \N \N 1 \N [{"file_id": "24efa06a-cdb6-4259-837b-740767d1068c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0e2c56cae6b4851bab2def6e27a060e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0e2c56cae6b4851bab2def6e27a060e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0e2c56cae6b4851bab2def6e27a060e.jpg", "file_size": 25753, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2c56cae6b4851bab2def6e27a060e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2c56cae6b4851bab2def6e27a060e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0e2c56cae6b4851bab2def6e27a060e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0e2c56cae6b4851bab2def6e27a060e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0e2c56cae6b4851bab2def6e27a060e.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJTmkf38kTOr-Ks3RXizINtXdy0=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.901071+00 2025-12-09 10:15:52.901077+00 19646 002-5FWE#L SPMX-20240815314886 \N \N \N 1 \N [{"file_id": "d401e827-a126-40f5-9178-537163eb18b6", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "ecaf0d720eba48e7ba3dc290b5ecfc81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "ecaf0d720eba48e7ba3dc290b5ecfc81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "ecaf0d720eba48e7ba3dc290b5ecfc81.jpg", "file_size": 16113, "is_delete": false, "file_type": 1, "original_file_name": "6U7N2j6XbK7DaHd9ab7x7Acb2Qc5fs8j1naG38ce808obZ0D79aseYeD00ahdmf4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/ecaf0d720eba48e7ba3dc290b5ecfc81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/ecaf0d720eba48e7ba3dc290b5ecfc81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/ecaf0d720eba48e7ba3dc290b5ecfc81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/ecaf0d720eba48e7ba3dc290b5ecfc81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/ecaf0d720eba48e7ba3dc290b5ecfc81.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfrtXEXuMTRcLhj-2FZrbUavhNI=", "createTime": "2024-11-12 16:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.904297+00 2025-12-09 10:15:52.904304+00 19647 LZ1404#童装T4号色 SPMX-20240815314880 \N \N \N 1 \N [{"file_id": "86577122-5d39-4633-901e-82190e13c77a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85e1bc76d6f7439eb9638ed5490eb254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85e1bc76d6f7439eb9638ed5490eb254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85e1bc76d6f7439eb9638ed5490eb254.jpg", "file_size": 24130, "is_delete": false, "file_type": 1, "original_file_name": "LZ1404#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1bc76d6f7439eb9638ed5490eb254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1bc76d6f7439eb9638ed5490eb254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85e1bc76d6f7439eb9638ed5490eb254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85e1bc76d6f7439eb9638ed5490eb254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85e1bc76d6f7439eb9638ed5490eb254.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLrbwlNDi3QoOD4mQgU9zxzShYY=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.907503+00 2025-12-09 10:15:52.907509+00 19648 DLOR023FWE#-B SPMX-20240815314882 \N \N \N 1 \N [{"file_id": "5a73c967-fba4-4288-ac1c-0bdb3dfeec49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5af03722c1a1459cabeba14da3b9d1e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5af03722c1a1459cabeba14da3b9d1e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5af03722c1a1459cabeba14da3b9d1e5.jpg", "file_size": 23250, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af03722c1a1459cabeba14da3b9d1e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af03722c1a1459cabeba14da3b9d1e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5af03722c1a1459cabeba14da3b9d1e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5af03722c1a1459cabeba14da3b9d1e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5af03722c1a1459cabeba14da3b9d1e5.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNutSpZEch4-Vx4rSwCajJ8gSxU=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.910694+00 2025-12-09 10:15:52.910701+00 19649 FX0003-A26#红色 SPMX-20240815314885 \N \N \N 1 \N [{"file_id": "4ff9b759-361f-49bc-96ae-026338689222", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75851f0273564f02a3fe2dbaedeb112b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75851f0273564f02a3fe2dbaedeb112b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75851f0273564f02a3fe2dbaedeb112b.jpg", "file_size": 27578, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A26#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75851f0273564f02a3fe2dbaedeb112b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75851f0273564f02a3fe2dbaedeb112b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75851f0273564f02a3fe2dbaedeb112b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75851f0273564f02a3fe2dbaedeb112b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75851f0273564f02a3fe2dbaedeb112b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1rMoE9fKDtFKqcEaimCTb1pMo8=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.913893+00 2025-12-09 10:15:52.913899+00 19650 LJH2043#-527#桔色 SPMX-20240815314884 \N \N \N 1 \N [{"file_id": "9bda2049-d96d-45ad-9e7a-266dd4873769", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1decfca65e814c2a9cf14d28035b0e9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1decfca65e814c2a9cf14d28035b0e9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1decfca65e814c2a9cf14d28035b0e9d.jpg", "file_size": 57186, "is_delete": false, "file_type": 1, "original_file_name": "LJH2043#-527#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1decfca65e814c2a9cf14d28035b0e9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1decfca65e814c2a9cf14d28035b0e9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1decfca65e814c2a9cf14d28035b0e9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1decfca65e814c2a9cf14d28035b0e9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1decfca65e814c2a9cf14d28035b0e9d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jrYnXkVfIZk6XyX2hc12N60nPS4=", "createTime": "2024-08-15 15:07:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.917017+00 2025-12-09 10:15:52.917024+00 19651 LJH2043#-白色 SPMX-20240815314896 \N \N \N 1 \N [{"file_id": "535fd80b-7d1a-49a8-bda1-21113f69eaf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38cc7ccc77804fdf985eb31ab57e226b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38cc7ccc77804fdf985eb31ab57e226b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38cc7ccc77804fdf985eb31ab57e226b.jpg", "file_size": 51931, "is_delete": false, "file_type": 1, "original_file_name": "LJH2043#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38cc7ccc77804fdf985eb31ab57e226b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38cc7ccc77804fdf985eb31ab57e226b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38cc7ccc77804fdf985eb31ab57e226b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38cc7ccc77804fdf985eb31ab57e226b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38cc7ccc77804fdf985eb31ab57e226b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H2TtnCQY4IRD9E4Nn1m8XSa8Upc=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.920137+00 2025-12-09 10:15:52.920143+00 19652 CGH9443#桔红2XL SPMX-20240815314888 \N \N \N 1 \N [{"file_id": "1e51b454-3794-4230-9856-0c780ada3705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "450df624fd354ade9f72eef1d56b21c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "450df624fd354ade9f72eef1d56b21c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "450df624fd354ade9f72eef1d56b21c2.jpg", "file_size": 17180, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#桔红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/450df624fd354ade9f72eef1d56b21c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/450df624fd354ade9f72eef1d56b21c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/450df624fd354ade9f72eef1d56b21c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/450df624fd354ade9f72eef1d56b21c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/450df624fd354ade9f72eef1d56b21c2.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wDM_4SW7VGFg9RM4I6gV6w1jjqY=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.923307+00 2025-12-09 10:15:52.923313+00 19653 DLOR023FWE#-D SPMX-20240815314894 \N \N \N 1 \N [{"file_id": "8b32a113-7b01-4a72-874c-09505f407da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f73c6b5b5ae46e28b00f2adfa43cc16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f73c6b5b5ae46e28b00f2adfa43cc16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f73c6b5b5ae46e28b00f2adfa43cc16.jpg", "file_size": 19249, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f73c6b5b5ae46e28b00f2adfa43cc16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f73c6b5b5ae46e28b00f2adfa43cc16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f73c6b5b5ae46e28b00f2adfa43cc16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f73c6b5b5ae46e28b00f2adfa43cc16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f73c6b5b5ae46e28b00f2adfa43cc16.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0Lq-7E39vmaSqAbxrUn29i13mQ=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.926517+00 2025-12-09 10:15:52.926522+00 19654 002-5FWE#M SPMX-20240815314897 \N \N \N 1 \N [{"file_id": "d5d258e2-b87a-40d2-ada5-83d4ce41e43a", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "33f29b2ddd4745f5b935ad2998579df5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "33f29b2ddd4745f5b935ad2998579df5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "33f29b2ddd4745f5b935ad2998579df5.jpg", "file_size": 15761, "is_delete": false, "file_type": 1, "original_file_name": "ezdR3Z0NaX7X7Ea354c5eM357Ddz6l96brapbX6F98cj1pdl6m7se73Ycs3nbU3j.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/33f29b2ddd4745f5b935ad2998579df5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/33f29b2ddd4745f5b935ad2998579df5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/33f29b2ddd4745f5b935ad2998579df5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/33f29b2ddd4745f5b935ad2998579df5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/33f29b2ddd4745f5b935ad2998579df5.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQ8CIpH4RNQtME3UrRO5Gud7ASU=", "createTime": "2024-11-12 16:43:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.929766+00 2025-12-09 10:15:52.929774+00 19655 JY#W3FW#VS-D3 SPMX-20240815314887 \N \N \N 1 \N [{"file_id": "5cf0fd1d-dfb6-4588-8157-5694d0706072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "664ae911f85143a49bed27b25a45b824.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "664ae911f85143a49bed27b25a45b824.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "664ae911f85143a49bed27b25a45b824.jpg", "file_size": 8657, "is_delete": false, "file_type": 1, "original_file_name": "JY#W3FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664ae911f85143a49bed27b25a45b824.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664ae911f85143a49bed27b25a45b824.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/664ae911f85143a49bed27b25a45b824.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/664ae911f85143a49bed27b25a45b824.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/664ae911f85143a49bed27b25a45b824.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uE-cCnorku5BFikxeXys-6pGHbs=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.932997+00 2025-12-09 10:15:52.933004+00 19656 HXF0008-28#绿色 SPMX-20240815314892 \N \N \N 1 \N [{"file_id": "254258c8-56e3-48b8-a2f8-1cc26ae7dc13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe038524657a4aef939112b65ef2a2dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe038524657a4aef939112b65ef2a2dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe038524657a4aef939112b65ef2a2dd.jpg", "file_size": 10116, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-28#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe038524657a4aef939112b65ef2a2dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe038524657a4aef939112b65ef2a2dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe038524657a4aef939112b65ef2a2dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe038524657a4aef939112b65ef2a2dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe038524657a4aef939112b65ef2a2dd.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sJx3yWJHgWqbhI6G7IRH3m1YGLc=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.936131+00 2025-12-09 10:15:52.936138+00 19657 LZ1404#童装T5号色 SPMX-20240815314890 \N \N \N 1 \N [{"file_id": "d3d16565-a996-41e7-9f30-604b073b707a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4384f7330f9e4a77931e3dcd7d56b04b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4384f7330f9e4a77931e3dcd7d56b04b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4384f7330f9e4a77931e3dcd7d56b04b.jpg", "file_size": 26075, "is_delete": false, "file_type": 1, "original_file_name": "LZ1404#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4384f7330f9e4a77931e3dcd7d56b04b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4384f7330f9e4a77931e3dcd7d56b04b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4384f7330f9e4a77931e3dcd7d56b04b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4384f7330f9e4a77931e3dcd7d56b04b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4384f7330f9e4a77931e3dcd7d56b04b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:stMF1u2vU-giDCRo0LDJ7yj1rI4=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.939248+00 2025-12-09 10:15:52.939255+00 19658 1231-7FWF#中童袖领匹布 SPMX-20240815314893 \N \N \N 1 \N [{"file_id": "7a745f11-06a4-411c-8ac4-f887384f6ae1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3497228867004eaca5f4c88c2b9583c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3497228867004eaca5f4c88c2b9583c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3497228867004eaca5f4c88c2b9583c6.jpg", "file_size": 14234, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3497228867004eaca5f4c88c2b9583c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3497228867004eaca5f4c88c2b9583c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3497228867004eaca5f4c88c2b9583c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3497228867004eaca5f4c88c2b9583c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3497228867004eaca5f4c88c2b9583c6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IHqWcoDDWPCYl8Y-LlH2t5CzVD0=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.942809+00 2025-12-09 10:15:52.942816+00 19659 88055#白底 SPMX-20240815314889 \N \N \N 1 \N [{"file_id": "7c32cd17-3d20-4e2a-b370-adcdc5064cea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea91d897266145859d54583cd017754b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea91d897266145859d54583cd017754b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea91d897266145859d54583cd017754b.jpg", "file_size": 14330, "is_delete": false, "file_type": 1, "original_file_name": "88055#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea91d897266145859d54583cd017754b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea91d897266145859d54583cd017754b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea91d897266145859d54583cd017754b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea91d897266145859d54583cd017754b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea91d897266145859d54583cd017754b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqiZQHOd501OXmVSIoTsJrNgli8=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.946392+00 2025-12-09 10:15:52.946399+00 19660 2367FWF#黄 SPMX-20240815314891 \N \N \N 1 \N [{"file_id": "ee7ea045-042c-4a0e-af87-fb5757d4b9ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df3a0fb3ca594bdeab9d16be2773901e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df3a0fb3ca594bdeab9d16be2773901e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df3a0fb3ca594bdeab9d16be2773901e.jpg", "file_size": 12696, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3a0fb3ca594bdeab9d16be2773901e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3a0fb3ca594bdeab9d16be2773901e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df3a0fb3ca594bdeab9d16be2773901e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df3a0fb3ca594bdeab9d16be2773901e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df3a0fb3ca594bdeab9d16be2773901e.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UAjXJsLpvEPn1CIgpOl9kCJeZk0=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.95004+00 2025-12-09 10:15:52.950046+00 19661 FX0003-A26#绿色 SPMX-20240815314895 \N \N \N 1 \N [{"file_id": "d841eb73-97d8-4900-9ab8-c2ed71c190e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30abec3bb4f644e09bcdf39a426787a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30abec3bb4f644e09bcdf39a426787a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30abec3bb4f644e09bcdf39a426787a9.jpg", "file_size": 26880, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A26#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30abec3bb4f644e09bcdf39a426787a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30abec3bb4f644e09bcdf39a426787a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30abec3bb4f644e09bcdf39a426787a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30abec3bb4f644e09bcdf39a426787a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30abec3bb4f644e09bcdf39a426787a9.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BELhtjNVvHQuwi2qBLOp2P_w1pE=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.956786+00 2025-12-09 10:15:52.956792+00 19663 FX0003-A46#LWQ15 SPMX-20240815314906 \N \N \N 1 \N [{"file_id": "5f085067-1ce4-4cdc-a0c3-691950833b3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e6617fc5b634ab1a03589b1286c605a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e6617fc5b634ab1a03589b1286c605a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e6617fc5b634ab1a03589b1286c605a.jpg", "file_size": 37957, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A46#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6617fc5b634ab1a03589b1286c605a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6617fc5b634ab1a03589b1286c605a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e6617fc5b634ab1a03589b1286c605a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e6617fc5b634ab1a03589b1286c605a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e6617fc5b634ab1a03589b1286c605a.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nU1EyFO13IwvENddDVAOgJsgmhU=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.960583+00 2025-12-09 10:15:52.96059+00 19664 LJH2044#天兰 SPMX-20240815314907 \N \N \N 1 \N [{"file_id": "7d526654-3a20-4863-885a-9c3493ac652e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4344d3bf13ca421691f7b160c21b9ee1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4344d3bf13ca421691f7b160c21b9ee1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4344d3bf13ca421691f7b160c21b9ee1.jpg", "file_size": 69323, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4344d3bf13ca421691f7b160c21b9ee1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4344d3bf13ca421691f7b160c21b9ee1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4344d3bf13ca421691f7b160c21b9ee1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4344d3bf13ca421691f7b160c21b9ee1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4344d3bf13ca421691f7b160c21b9ee1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fc_oX3t6LGfd3WfwqvAoXMND5KE=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.964119+00 2025-12-09 10:15:52.964126+00 19665 88056#卡其 SPMX-20240815314902 \N \N \N 1 \N [{"file_id": "1c0c200a-07ac-4d70-83ac-5fb3cb1efea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50ca035d9f4e427f872882cf0d5251c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50ca035d9f4e427f872882cf0d5251c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50ca035d9f4e427f872882cf0d5251c3.jpg", "file_size": 21067, "is_delete": false, "file_type": 1, "original_file_name": "88056#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ca035d9f4e427f872882cf0d5251c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ca035d9f4e427f872882cf0d5251c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50ca035d9f4e427f872882cf0d5251c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50ca035d9f4e427f872882cf0d5251c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50ca035d9f4e427f872882cf0d5251c3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5wPeqGT_RAlqbdcuilDZ1r0RQuo=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.967438+00 2025-12-09 10:15:52.967444+00 19666 JY#W4FW#VS-D3 SPMX-20240815314900 \N \N \N 1 \N [{"file_id": "a4ad6f21-5d49-4457-b9f7-4387aabacb17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28bc6e23a0ba474db3c91ff25df4448f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28bc6e23a0ba474db3c91ff25df4448f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28bc6e23a0ba474db3c91ff25df4448f.jpg", "file_size": 8465, "is_delete": false, "file_type": 1, "original_file_name": "JY#W4FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28bc6e23a0ba474db3c91ff25df4448f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28bc6e23a0ba474db3c91ff25df4448f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28bc6e23a0ba474db3c91ff25df4448f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28bc6e23a0ba474db3c91ff25df4448f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28bc6e23a0ba474db3c91ff25df4448f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sz2QdO7yLH_2ZQi_wKCYlOGLmLs=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.970792+00 2025-12-09 10:15:52.970798+00 19667 HXF0008-28#黑色 SPMX-20240815314901 \N \N \N 1 \N [{"file_id": "589474a3-565e-4e75-807a-3e45ce14daa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57abda6d312f40f1b449e25acbb413d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57abda6d312f40f1b449e25acbb413d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57abda6d312f40f1b449e25acbb413d3.jpg", "file_size": 10838, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-28#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57abda6d312f40f1b449e25acbb413d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57abda6d312f40f1b449e25acbb413d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57abda6d312f40f1b449e25acbb413d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57abda6d312f40f1b449e25acbb413d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57abda6d312f40f1b449e25acbb413d3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yzJbYbc0ZRyGdOl4VXegrQY_syk=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.974179+00 2025-12-09 10:15:52.974186+00 19668 2367FWF#黑 SPMX-20240815314904 \N \N \N 1 \N [{"file_id": "902ed0e9-5222-444a-b9dd-f7f62ac2f556", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cb576dee52743529327ec0927bcde6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cb576dee52743529327ec0927bcde6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cb576dee52743529327ec0927bcde6a.jpg", "file_size": 17129, "is_delete": false, "file_type": 1, "original_file_name": "2367FWF#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb576dee52743529327ec0927bcde6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb576dee52743529327ec0927bcde6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cb576dee52743529327ec0927bcde6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cb576dee52743529327ec0927bcde6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cb576dee52743529327ec0927bcde6a.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7r2EbsaPMUrumvKcrWLgi3N6t4=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.977859+00 2025-12-09 10:15:52.977866+00 19669 LZ1405#童装T1号色 SPMX-20240815314899 \N \N \N 1 \N [{"file_id": "4a64c403-0a38-4f39-bb47-4d5b778e5b43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cfebf69213642a081df67cbac382db6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cfebf69213642a081df67cbac382db6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cfebf69213642a081df67cbac382db6.jpg", "file_size": 24822, "is_delete": false, "file_type": 1, "original_file_name": "LZ1405#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfebf69213642a081df67cbac382db6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfebf69213642a081df67cbac382db6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfebf69213642a081df67cbac382db6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cfebf69213642a081df67cbac382db6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cfebf69213642a081df67cbac382db6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:phVwtxTadYjRqbtJJragAADug4M=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.981617+00 2025-12-09 10:15:52.981626+00 19670 1231-7FWF#小童6码 SPMX-20240815314905 \N \N \N 1 \N [{"file_id": "13fc400c-0fed-410c-85e5-3ed5e6733252", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eab249722144e9c81cec4dd3fc21416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eab249722144e9c81cec4dd3fc21416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eab249722144e9c81cec4dd3fc21416.jpg", "file_size": 20590, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eab249722144e9c81cec4dd3fc21416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eab249722144e9c81cec4dd3fc21416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eab249722144e9c81cec4dd3fc21416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eab249722144e9c81cec4dd3fc21416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eab249722144e9c81cec4dd3fc21416.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CeYZDHjoE2DURWhQCOSFOhbXf04=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.985232+00 2025-12-09 10:15:52.985239+00 19671 CGH9443#桔红L SPMX-20240815314898 \N \N \N 1 \N [{"file_id": "fc8ff69e-fd50-4c3f-9c18-85e3affa88f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e070d4787a8a458db45869d13ee287c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e070d4787a8a458db45869d13ee287c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e070d4787a8a458db45869d13ee287c6.jpg", "file_size": 16894, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#桔红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e070d4787a8a458db45869d13ee287c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e070d4787a8a458db45869d13ee287c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e070d4787a8a458db45869d13ee287c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e070d4787a8a458db45869d13ee287c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e070d4787a8a458db45869d13ee287c6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8-F-peQxwMyVq9Wl_dDUJP1C26Q=", "createTime": "2024-08-15 15:07:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.988552+00 2025-12-09 10:15:52.988557+00 19672 0022-10FWF#V5曲线 SPMX-20240815314908 \N \N \N 1 \N [{"file_id": "4dbe4700-17d9-4295-ab16-26bb059733c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b4f56fd155b4631ab4c3c05223ade46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b4f56fd155b4631ab4c3c05223ade46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b4f56fd155b4631ab4c3c05223ade46.jpg", "file_size": 15089, "is_delete": false, "file_type": 1, "original_file_name": "0022-10FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4f56fd155b4631ab4c3c05223ade46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4f56fd155b4631ab4c3c05223ade46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4f56fd155b4631ab4c3c05223ade46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b4f56fd155b4631ab4c3c05223ade46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b4f56fd155b4631ab4c3c05223ade46.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FuwTpdT-vRPUQaIqAB5rzb5hKso=", "createTime": "2024-08-15 15:07:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.991807+00 2025-12-09 10:15:52.991812+00 19673 LZ1405#童装T2号色 SPMX-20240815314909 \N \N \N 1 \N [{"file_id": "3a67eb89-8051-4504-8861-22e9906e2b14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02b7221d59234e2381b16369da38372b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02b7221d59234e2381b16369da38372b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02b7221d59234e2381b16369da38372b.jpg", "file_size": 24770, "is_delete": false, "file_type": 1, "original_file_name": "LZ1405#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b7221d59234e2381b16369da38372b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b7221d59234e2381b16369da38372b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b7221d59234e2381b16369da38372b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02b7221d59234e2381b16369da38372b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02b7221d59234e2381b16369da38372b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8pOE7eXhuo4vnd7sdjK3Er5yU6o=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.995048+00 2025-12-09 10:15:52.995055+00 19674 HXF0008-29#WJC22 SPMX-20240815314910 \N \N \N 1 \N [{"file_id": "ebcb25f7-560e-4c76-bd7d-23b1a5411ab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d1ab04727bc45b3b45fd161cf6f9362.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d1ab04727bc45b3b45fd161cf6f9362.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d1ab04727bc45b3b45fd161cf6f9362.jpg", "file_size": 18011, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ab04727bc45b3b45fd161cf6f9362.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ab04727bc45b3b45fd161cf6f9362.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1ab04727bc45b3b45fd161cf6f9362.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d1ab04727bc45b3b45fd161cf6f9362.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d1ab04727bc45b3b45fd161cf6f9362.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUCqxhJ986ofn7LpjFIr1VrjugE=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:52.998355+00 2025-12-09 10:15:52.99836+00 19675 0022-11FWF#V5曲线 SPMX-20240815314912 \N \N \N 1 \N [{"file_id": "5d8593fd-be56-453e-be41-1e0722c28f41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e2919b339634e11bc10fd3558a836bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e2919b339634e11bc10fd3558a836bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e2919b339634e11bc10fd3558a836bb.jpg", "file_size": 20374, "is_delete": false, "file_type": 1, "original_file_name": "0022-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2919b339634e11bc10fd3558a836bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2919b339634e11bc10fd3558a836bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2919b339634e11bc10fd3558a836bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e2919b339634e11bc10fd3558a836bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e2919b339634e11bc10fd3558a836bb.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g_bXf3gtj8pDw8curw8fGINTpos=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.001446+00 2025-12-09 10:15:53.001451+00 19676 JY#W5FW#VS-D3 SPMX-20240815314917 \N \N \N 1 \N [{"file_id": "f93ab0d3-3bee-4a1b-b6c2-b938eb9d1823", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "335dc474d0c7491ebb84632051118e2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "335dc474d0c7491ebb84632051118e2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "335dc474d0c7491ebb84632051118e2c.jpg", "file_size": 8881, "is_delete": false, "file_type": 1, "original_file_name": "JY#W5FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335dc474d0c7491ebb84632051118e2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335dc474d0c7491ebb84632051118e2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335dc474d0c7491ebb84632051118e2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/335dc474d0c7491ebb84632051118e2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/335dc474d0c7491ebb84632051118e2c.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1A2W3hiuB-vRtj-X--AD-fvlok=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.004574+00 2025-12-09 10:15:53.004579+00 19677 0022-12FWF#V5曲线 SPMX-20240815314922 \N \N \N 1 \N [{"file_id": "5b48ad8f-f3cc-4a58-a703-5b7a20428c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afc48680d21b439f83bdd24a3c2172d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afc48680d21b439f83bdd24a3c2172d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afc48680d21b439f83bdd24a3c2172d4.jpg", "file_size": 27910, "is_delete": false, "file_type": 1, "original_file_name": "0022-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48680d21b439f83bdd24a3c2172d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48680d21b439f83bdd24a3c2172d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afc48680d21b439f83bdd24a3c2172d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afc48680d21b439f83bdd24a3c2172d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afc48680d21b439f83bdd24a3c2172d4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AOG3mMiGbTn0D8pqb1WHtabb3Ao=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.007605+00 2025-12-09 10:15:53.007611+00 19678 DLOR023FWE#-H SPMX-20240815314915 \N \N \N 1 \N [{"file_id": "403e332b-939d-480d-9931-8d0d0ba5561b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a884e1ad269f408399458feef858a689.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a884e1ad269f408399458feef858a689.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a884e1ad269f408399458feef858a689.jpg", "file_size": 20245, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a884e1ad269f408399458feef858a689.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a884e1ad269f408399458feef858a689.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a884e1ad269f408399458feef858a689.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a884e1ad269f408399458feef858a689.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a884e1ad269f408399458feef858a689.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48zR3mOpVGHxgV1siQ89DFNmbZM=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.010811+00 2025-12-09 10:15:53.010819+00 19679 88056#白底绿 SPMX-20240815314916 \N \N \N 1 \N [{"file_id": "f46ae322-9d8e-405b-a0f2-fbd9ffff849e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11e882c964d44a9481c0f0850675b5ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11e882c964d44a9481c0f0850675b5ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11e882c964d44a9481c0f0850675b5ab.jpg", "file_size": 27032, "is_delete": false, "file_type": 1, "original_file_name": "88056#白底绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e882c964d44a9481c0f0850675b5ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e882c964d44a9481c0f0850675b5ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e882c964d44a9481c0f0850675b5ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11e882c964d44a9481c0f0850675b5ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11e882c964d44a9481c0f0850675b5ab.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ZHWRvqWdYKGmC2VnQqYO_qPV-I=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.014015+00 2025-12-09 10:15:53.014021+00 19680 LZ1405#童装T3号色 SPMX-20240815314919 \N \N \N 1 \N [{"file_id": "90252be9-0f63-482a-bf5f-177ad8a1e254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96d37e3448db4de197c81143034beb0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96d37e3448db4de197c81143034beb0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96d37e3448db4de197c81143034beb0b.jpg", "file_size": 26307, "is_delete": false, "file_type": 1, "original_file_name": "LZ1405#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d37e3448db4de197c81143034beb0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d37e3448db4de197c81143034beb0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96d37e3448db4de197c81143034beb0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96d37e3448db4de197c81143034beb0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96d37e3448db4de197c81143034beb0b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4tAnQtZJ0t8aFmerQ0Ce8Ma6xh0=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.017242+00 2025-12-09 10:15:53.017249+00 19681 1231-7FWF#小童袖领匹布 SPMX-20240815314924 \N \N \N 1 \N [{"file_id": "a7a71831-8175-4a7c-a22f-e82f3d6d998d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f52b4e34b8c4fb087cd830d8ed81e43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f52b4e34b8c4fb087cd830d8ed81e43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f52b4e34b8c4fb087cd830d8ed81e43.jpg", "file_size": 16174, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f52b4e34b8c4fb087cd830d8ed81e43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f52b4e34b8c4fb087cd830d8ed81e43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f52b4e34b8c4fb087cd830d8ed81e43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f52b4e34b8c4fb087cd830d8ed81e43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f52b4e34b8c4fb087cd830d8ed81e43.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L0svQNFMs8gOTAUzS-BYuJiN_N4=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.020392+00 2025-12-09 10:15:53.020399+00 19682 1231-7FWF#小童8码+4码 SPMX-20240815314914 \N \N \N 1 \N [{"file_id": "e98f0eb0-ce45-498b-8915-19a6708b4468", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1430092eb77f43c0b8c630d2fd14c940.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1430092eb77f43c0b8c630d2fd14c940.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1430092eb77f43c0b8c630d2fd14c940.jpg", "file_size": 20552, "is_delete": false, "file_type": 1, "original_file_name": "1231-7FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1430092eb77f43c0b8c630d2fd14c940.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1430092eb77f43c0b8c630d2fd14c940.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1430092eb77f43c0b8c630d2fd14c940.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1430092eb77f43c0b8c630d2fd14c940.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1430092eb77f43c0b8c630d2fd14c940.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DezXenE-LCsVBP0sFs9vSazd7YY=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.023508+00 2025-12-09 10:15:53.023514+00 19683 CGH9443#白色2XL SPMX-20240815314921 \N \N \N 1 \N [{"file_id": "644150b4-a896-455d-97bf-6cc7fc4519c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73e6dde4c606433da1ac34de7706a08b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73e6dde4c606433da1ac34de7706a08b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73e6dde4c606433da1ac34de7706a08b.jpg", "file_size": 14819, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6dde4c606433da1ac34de7706a08b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6dde4c606433da1ac34de7706a08b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6dde4c606433da1ac34de7706a08b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73e6dde4c606433da1ac34de7706a08b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73e6dde4c606433da1ac34de7706a08b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqZN5TJbWniQ2JFzTrwZyuph9o0=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.026634+00 2025-12-09 10:15:53.02664+00 19684 LJH2044#玫红 SPMX-20240815314913 \N \N \N 1 \N [{"file_id": "aba326f8-a37d-4fe8-8754-844952225377", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b30cf7a7c741819b5a56c18484f873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b30cf7a7c741819b5a56c18484f873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b30cf7a7c741819b5a56c18484f873.jpg", "file_size": 67532, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b30cf7a7c741819b5a56c18484f873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b30cf7a7c741819b5a56c18484f873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b30cf7a7c741819b5a56c18484f873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b30cf7a7c741819b5a56c18484f873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b30cf7a7c741819b5a56c18484f873.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fiAwhyA88uquRJtxMr3jHlgyytE=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.029823+00 2025-12-09 10:15:53.029831+00 19685 HXF0008-29#宝蓝色2XL SPMX-20240815314923 \N \N \N 1 \N [{"file_id": "efed0489-06cd-40df-8953-54eea4a28195", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e26e439a49947b0aac8f34a3ef501b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e26e439a49947b0aac8f34a3ef501b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e26e439a49947b0aac8f34a3ef501b3.jpg", "file_size": 20647, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#宝蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e26e439a49947b0aac8f34a3ef501b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e26e439a49947b0aac8f34a3ef501b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e26e439a49947b0aac8f34a3ef501b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e26e439a49947b0aac8f34a3ef501b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e26e439a49947b0aac8f34a3ef501b3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NSf6Ld6Ancve2BoOo2sx1PnEd04=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.032994+00 2025-12-09 10:15:53.033001+00 19686 FX0003-A47#LWQ15 SPMX-20240815314920 \N \N \N 1 \N [{"file_id": "12acc865-b1ae-4c1c-8ed0-a88468a6739a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09137b552e624a5ca2abae27bc8367d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09137b552e624a5ca2abae27bc8367d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09137b552e624a5ca2abae27bc8367d8.jpg", "file_size": 64992, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A47#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09137b552e624a5ca2abae27bc8367d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09137b552e624a5ca2abae27bc8367d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09137b552e624a5ca2abae27bc8367d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09137b552e624a5ca2abae27bc8367d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09137b552e624a5ca2abae27bc8367d8.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lPyqzfrLGDx--tfHrShz2FvDHnE=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.036139+00 2025-12-09 10:15:53.036144+00 19687 237#-定位裁-卡其 SPMX-20240815314918 \N \N \N 1 \N [{"file_id": "77c0b1b0-5f59-4e68-bcb3-d5834bba1ef2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d66c079a769142bebfb7539b36ad1546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d66c079a769142bebfb7539b36ad1546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d66c079a769142bebfb7539b36ad1546.jpg", "file_size": 76700, "is_delete": false, "file_type": 1, "original_file_name": "237#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66c079a769142bebfb7539b36ad1546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66c079a769142bebfb7539b36ad1546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d66c079a769142bebfb7539b36ad1546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d66c079a769142bebfb7539b36ad1546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d66c079a769142bebfb7539b36ad1546.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jK2dxCh0bNwZy__A8j5xlJiagtI=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.039285+00 2025-12-09 10:15:53.039291+00 19688 CGH9443#桔红XL SPMX-20240815314911 \N \N \N 1 \N [{"file_id": "2b078dc3-97bb-4c5e-9387-d1d79c2505ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc77be10419144968f1a7edec255dc6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc77be10419144968f1a7edec255dc6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc77be10419144968f1a7edec255dc6c.jpg", "file_size": 17234, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#桔红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77be10419144968f1a7edec255dc6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77be10419144968f1a7edec255dc6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc77be10419144968f1a7edec255dc6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc77be10419144968f1a7edec255dc6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc77be10419144968f1a7edec255dc6c.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1Atra6TB7vGkvDaCpdkVWhNSZI=", "createTime": "2024-08-15 15:07:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.04251+00 2025-12-09 10:15:53.042516+00 19689 LJH2044#粉色 SPMX-20240815314925 \N \N \N 1 \N [{"file_id": "420872d0-1453-428d-bb74-1f606efff77f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc9db301a81744d2b1a8655ca91c77a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc9db301a81744d2b1a8655ca91c77a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc9db301a81744d2b1a8655ca91c77a8.jpg", "file_size": 65672, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9db301a81744d2b1a8655ca91c77a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9db301a81744d2b1a8655ca91c77a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc9db301a81744d2b1a8655ca91c77a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc9db301a81744d2b1a8655ca91c77a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc9db301a81744d2b1a8655ca91c77a8.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gu0rCqC3EmhGlFdbP5wKoKTLWWA=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.045736+00 2025-12-09 10:15:53.045742+00 19690 JY#W8FW#VS-D3 SPMX-20240815314938 \N \N \N 1 \N [{"file_id": "8f0c50b8-b119-4959-a257-008d05a48bdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2261832a50d454f967d368a4d604e3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2261832a50d454f967d368a4d604e3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2261832a50d454f967d368a4d604e3b.jpg", "file_size": 23526, "is_delete": false, "file_type": 1, "original_file_name": "JY#W8FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2261832a50d454f967d368a4d604e3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2261832a50d454f967d368a4d604e3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2261832a50d454f967d368a4d604e3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2261832a50d454f967d368a4d604e3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2261832a50d454f967d368a4d604e3b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qiC7xRT9BGrfTDMz-AvoAEHmZ-I=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.048814+00 2025-12-09 10:15:53.04882+00 19691 DLOR023FWE#-I SPMX-20240815314926 \N \N \N 1 \N [{"file_id": "f42661ea-4fae-4c04-ba1a-525befc3d6ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "636bea90c28b4beb8b0e429d5d10e577.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "636bea90c28b4beb8b0e429d5d10e577.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "636bea90c28b4beb8b0e429d5d10e577.jpg", "file_size": 17616, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-I.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636bea90c28b4beb8b0e429d5d10e577.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636bea90c28b4beb8b0e429d5d10e577.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/636bea90c28b4beb8b0e429d5d10e577.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/636bea90c28b4beb8b0e429d5d10e577.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/636bea90c28b4beb8b0e429d5d10e577.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYlw214zgaZ0kR9cRoE5LMEox5E=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.077421+00 2025-12-09 10:15:53.077426+00 19700 JY#W7FW#VS-D3 SPMX-20240815314928 \N \N \N 1 \N [{"file_id": "7da76f26-c1e3-4ed7-a3ea-9544f0a4ec6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "110e35bed19340a0b2082fe20a7fd7d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "110e35bed19340a0b2082fe20a7fd7d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "110e35bed19340a0b2082fe20a7fd7d4.jpg", "file_size": 23981, "is_delete": false, "file_type": 1, "original_file_name": "JY#W7FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110e35bed19340a0b2082fe20a7fd7d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110e35bed19340a0b2082fe20a7fd7d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/110e35bed19340a0b2082fe20a7fd7d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/110e35bed19340a0b2082fe20a7fd7d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/110e35bed19340a0b2082fe20a7fd7d4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xj34T_pxnuNbDOxpO5aFMXU41jw=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.051933+00 2025-12-09 10:15:53.051942+00 19692 0022-12FWF#V5曲线番禺调色 SPMX-20240815314935 \N \N \N 1 \N [{"file_id": "552ff11e-1c9b-40fd-919c-648bc346e53f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg", "file_size": 29322, "is_delete": false, "file_type": 1, "original_file_name": "0022-12FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd99dfaaeb3a4bacb65acb0f6e8c80c3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:judnEOAud6BUvH-bdN3U-HJ_ngE=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.055103+00 2025-12-09 10:15:53.05511+00 19693 FX0003-A48#LWQ15 SPMX-20240815314932 \N \N \N 1 \N [{"file_id": "cec74615-7c7d-466e-8b8c-87d456a606e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21fc5380fc3e4500b959a29bd5805300.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21fc5380fc3e4500b959a29bd5805300.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21fc5380fc3e4500b959a29bd5805300.jpg", "file_size": 46853, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A48#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fc5380fc3e4500b959a29bd5805300.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fc5380fc3e4500b959a29bd5805300.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fc5380fc3e4500b959a29bd5805300.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21fc5380fc3e4500b959a29bd5805300.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21fc5380fc3e4500b959a29bd5805300.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J1jSAcaAFr3dlhRff4uuBmwKIgU=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.058215+00 2025-12-09 10:15:53.058221+00 19694 HXF0008-29#宝蓝色L SPMX-20240815314934 \N \N \N 1 \N [{"file_id": "eb6cba2b-3a38-4837-ab1b-e4818c4d01e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5741517361c642ea9ec91798b20fc9bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5741517361c642ea9ec91798b20fc9bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5741517361c642ea9ec91798b20fc9bf.jpg", "file_size": 22174, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#宝蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5741517361c642ea9ec91798b20fc9bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5741517361c642ea9ec91798b20fc9bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5741517361c642ea9ec91798b20fc9bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5741517361c642ea9ec91798b20fc9bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5741517361c642ea9ec91798b20fc9bf.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlOBZ4oLbQG5aBA792s-w8dJT5A=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.0614+00 2025-12-09 10:15:53.061406+00 19695 CGH9443#白色L SPMX-20240815314931 \N \N \N 1 \N [{"file_id": "17e79a22-f208-4b90-b52e-12eb05a37c10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "777f004f412442f8bc713212b08d0256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "777f004f412442f8bc713212b08d0256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "777f004f412442f8bc713212b08d0256.jpg", "file_size": 14587, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777f004f412442f8bc713212b08d0256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777f004f412442f8bc713212b08d0256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/777f004f412442f8bc713212b08d0256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/777f004f412442f8bc713212b08d0256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/777f004f412442f8bc713212b08d0256.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cF3MGdaXWDYFhfcGnuxncV02E9U=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.064557+00 2025-12-09 10:15:53.064563+00 19696 1231-9FWF#中童12码+10码 SPMX-20240815314933 \N \N \N 1 \N [{"file_id": "87395adf-a098-4df4-bc3c-8f2e1c4aa64a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cd2341a6902456da48c3e751d7c01dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cd2341a6902456da48c3e751d7c01dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cd2341a6902456da48c3e751d7c01dd.jpg", "file_size": 19892, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#中童12码+10码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd2341a6902456da48c3e751d7c01dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd2341a6902456da48c3e751d7c01dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cd2341a6902456da48c3e751d7c01dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cd2341a6902456da48c3e751d7c01dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cd2341a6902456da48c3e751d7c01dd.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lOg2Ursb1qLw-OC5mBOaq118fs8=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.06771+00 2025-12-09 10:15:53.067717+00 19697 88056#粉色 SPMX-20240815314940 \N \N \N 1 \N [{"file_id": "b7d8cf51-7291-4b0e-8314-9bdcccbb040c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e36b277d8d048998930bd8ba8799efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e36b277d8d048998930bd8ba8799efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e36b277d8d048998930bd8ba8799efb.jpg", "file_size": 25368, "is_delete": false, "file_type": 1, "original_file_name": "88056#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e36b277d8d048998930bd8ba8799efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e36b277d8d048998930bd8ba8799efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e36b277d8d048998930bd8ba8799efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e36b277d8d048998930bd8ba8799efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e36b277d8d048998930bd8ba8799efb.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1McncOm0j3KdrPtOpEQIo4Oy64g=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.070981+00 2025-12-09 10:15:53.070987+00 19698 88056#白底黑 SPMX-20240815314927 \N \N \N 1 \N [{"file_id": "b1e6ccd6-ae6d-4ad8-9dd0-d9e759beaf1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bd36e2ad2a243cc8d963d7e133c8de1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bd36e2ad2a243cc8d963d7e133c8de1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bd36e2ad2a243cc8d963d7e133c8de1.jpg", "file_size": 26656, "is_delete": false, "file_type": 1, "original_file_name": "88056#白底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd36e2ad2a243cc8d963d7e133c8de1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd36e2ad2a243cc8d963d7e133c8de1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd36e2ad2a243cc8d963d7e133c8de1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bd36e2ad2a243cc8d963d7e133c8de1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bd36e2ad2a243cc8d963d7e133c8de1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AYSAA-zxsPrHOWXhUc0reuVXdhc=", "createTime": "2024-08-15 15:07:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.074258+00 2025-12-09 10:15:53.074265+00 19699 DLOR023FWE#-J SPMX-20240815314936 \N \N \N 1 \N [{"file_id": "c6532b9d-7132-488c-8084-74e800b6eb36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5596a9cfc8284572bf99f5b2882ef99a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5596a9cfc8284572bf99f5b2882ef99a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5596a9cfc8284572bf99f5b2882ef99a.jpg", "file_size": 17700, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-J.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5596a9cfc8284572bf99f5b2882ef99a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5596a9cfc8284572bf99f5b2882ef99a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5596a9cfc8284572bf99f5b2882ef99a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5596a9cfc8284572bf99f5b2882ef99a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5596a9cfc8284572bf99f5b2882ef99a.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R4XyUesQl0PZ3LQ3s9y0Aey2vc4=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.080602+00 2025-12-09 10:15:53.080608+00 19701 LZ1405#童装T5号色 SPMX-20240815314939 \N \N \N 1 \N [{"file_id": "056e2df5-cf37-48ff-ada4-0dd55013d34f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6810053a58b4e7fb561a9066948e6b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6810053a58b4e7fb561a9066948e6b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6810053a58b4e7fb561a9066948e6b1.jpg", "file_size": 25026, "is_delete": false, "file_type": 1, "original_file_name": "LZ1405#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6810053a58b4e7fb561a9066948e6b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6810053a58b4e7fb561a9066948e6b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6810053a58b4e7fb561a9066948e6b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6810053a58b4e7fb561a9066948e6b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6810053a58b4e7fb561a9066948e6b1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlIFlX_Nmivz8-9TKx6HDj4Qrgc=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.083708+00 2025-12-09 10:15:53.083715+00 19702 237#-定位裁-橙色 SPMX-20240815314929 \N \N \N 1 \N [{"file_id": "c50f19e6-ba4e-4d29-97da-39651ba900b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94feb585e5744e4e8c6ee5f886253ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94feb585e5744e4e8c6ee5f886253ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94feb585e5744e4e8c6ee5f886253ce3.jpg", "file_size": 81186, "is_delete": false, "file_type": 1, "original_file_name": "237#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94feb585e5744e4e8c6ee5f886253ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94feb585e5744e4e8c6ee5f886253ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94feb585e5744e4e8c6ee5f886253ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94feb585e5744e4e8c6ee5f886253ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94feb585e5744e4e8c6ee5f886253ce3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cXzOe6OrFGl-ZbMlsvbPASCIQeE=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.086902+00 2025-12-09 10:15:53.086909+00 19703 LZ1405#童装T4号色 SPMX-20240815314930 \N \N \N 1 \N [{"file_id": "fee67e59-e8df-4b8d-bff0-3633b976b2db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "805a397796974358ab31e4ab54d1e23b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "805a397796974358ab31e4ab54d1e23b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "805a397796974358ab31e4ab54d1e23b.jpg", "file_size": 26126, "is_delete": false, "file_type": 1, "original_file_name": "LZ1405#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805a397796974358ab31e4ab54d1e23b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805a397796974358ab31e4ab54d1e23b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/805a397796974358ab31e4ab54d1e23b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/805a397796974358ab31e4ab54d1e23b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/805a397796974358ab31e4ab54d1e23b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQWNpCOfmeduZgpkKgFbKUoFYnk=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.089989+00 2025-12-09 10:15:53.089995+00 19704 LJH2044#红色 SPMX-20240815314937 \N \N \N 1 \N [{"file_id": "2922c5dd-0cb9-44da-8c6d-a40e17e541b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "536680d9b8c443ed8d1d61d3ea953bad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "536680d9b8c443ed8d1d61d3ea953bad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "536680d9b8c443ed8d1d61d3ea953bad.jpg", "file_size": 68565, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536680d9b8c443ed8d1d61d3ea953bad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536680d9b8c443ed8d1d61d3ea953bad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/536680d9b8c443ed8d1d61d3ea953bad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/536680d9b8c443ed8d1d61d3ea953bad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/536680d9b8c443ed8d1d61d3ea953bad.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mQokmB5aUt1J9hlLCRTRWnCkPGI=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.093211+00 2025-12-09 10:15:53.093218+00 19705 CGH9443#白色XL SPMX-20240815314941 \N \N \N 1 \N [{"file_id": "5ccb741a-9a08-4ec2-98d2-03ba94c1f0b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4d21ccd8d34464a8f450a22f3487932.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4d21ccd8d34464a8f450a22f3487932.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4d21ccd8d34464a8f450a22f3487932.jpg", "file_size": 13867, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d21ccd8d34464a8f450a22f3487932.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d21ccd8d34464a8f450a22f3487932.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4d21ccd8d34464a8f450a22f3487932.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4d21ccd8d34464a8f450a22f3487932.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4d21ccd8d34464a8f450a22f3487932.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TmJbn2gJC32v3jaLivjxVpN9sGA=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.096382+00 2025-12-09 10:15:53.096389+00 19706 1231-9FWF#中童12码 SPMX-20240815314944 \N \N \N 1 \N [{"file_id": "4025ac31-59fb-4cf9-bcc7-0b994b48e236", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ba1a75b6e334e178b6938d3a950e2b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ba1a75b6e334e178b6938d3a950e2b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ba1a75b6e334e178b6938d3a950e2b4.jpg", "file_size": 19036, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#中童12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba1a75b6e334e178b6938d3a950e2b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba1a75b6e334e178b6938d3a950e2b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba1a75b6e334e178b6938d3a950e2b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ba1a75b6e334e178b6938d3a950e2b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ba1a75b6e334e178b6938d3a950e2b4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6lRIR3hwmjpmYuIDOLfkEcpF0I=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.099534+00 2025-12-09 10:15:53.099541+00 19707 LZ1406#童装T1号色 SPMX-20240815314949 \N \N \N 1 \N [{"file_id": "0fa6b4e8-d5eb-494f-83d1-be4d5e500be6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebd95ea8c97a40219f43d8f427ec0124.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebd95ea8c97a40219f43d8f427ec0124.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebd95ea8c97a40219f43d8f427ec0124.jpg", "file_size": 24236, "is_delete": false, "file_type": 1, "original_file_name": "LZ1406#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd95ea8c97a40219f43d8f427ec0124.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd95ea8c97a40219f43d8f427ec0124.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebd95ea8c97a40219f43d8f427ec0124.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebd95ea8c97a40219f43d8f427ec0124.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebd95ea8c97a40219f43d8f427ec0124.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NNsGuj5nVuKe9g9HgpgTWzyYf0g=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.10271+00 2025-12-09 10:15:53.102717+00 19708 HXF0008-29#宝蓝色XL SPMX-20240815314954 \N \N \N 1 \N [{"file_id": "0a603fdf-47c2-416d-96d9-84125c0c2ee4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50febbbce0084a93ac633d0564c3c877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50febbbce0084a93ac633d0564c3c877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50febbbce0084a93ac633d0564c3c877.jpg", "file_size": 21274, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#宝蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50febbbce0084a93ac633d0564c3c877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50febbbce0084a93ac633d0564c3c877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50febbbce0084a93ac633d0564c3c877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50febbbce0084a93ac633d0564c3c877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50febbbce0084a93ac633d0564c3c877.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxhV51zK59FsWoN3MtFPaabCBVU=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.105879+00 2025-12-09 10:15:53.105885+00 19709 JY-8081#RC23 SPMX-20240815314952 \N \N \N 1 \N [{"file_id": "af501e98-2581-4ffa-85d7-561abc3bdb8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f811bfac1ba1461893e19cd5be943ad3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f811bfac1ba1461893e19cd5be943ad3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f811bfac1ba1461893e19cd5be943ad3.jpg", "file_size": 70475, "is_delete": false, "file_type": 1, "original_file_name": "JY-8081#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f811bfac1ba1461893e19cd5be943ad3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f811bfac1ba1461893e19cd5be943ad3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f811bfac1ba1461893e19cd5be943ad3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f811bfac1ba1461893e19cd5be943ad3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f811bfac1ba1461893e19cd5be943ad3.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ut_UgTcfl728Mn37bBzUSA8oZNg=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.109065+00 2025-12-09 10:15:53.109072+00 19710 237#-定位裁-黄色 SPMX-20240815314953 \N \N \N 1 \N [{"file_id": "3fd39085-3ae0-4b93-8024-36f1b0ebfd5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfe5840594f6471da5e3a739dca1ab4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfe5840594f6471da5e3a739dca1ab4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfe5840594f6471da5e3a739dca1ab4b.jpg", "file_size": 83993, "is_delete": false, "file_type": 1, "original_file_name": "237#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe5840594f6471da5e3a739dca1ab4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe5840594f6471da5e3a739dca1ab4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe5840594f6471da5e3a739dca1ab4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfe5840594f6471da5e3a739dca1ab4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfe5840594f6471da5e3a739dca1ab4b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1yt2c1EC6MEQec-yMuuLfEin4nY=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.112233+00 2025-12-09 10:15:53.112241+00 19711 HXF0008-29#宝蓝色M SPMX-20240815314943 \N \N \N 1 \N [{"file_id": "bb7275be-ed1a-4bc8-823a-610d6a772b5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f908dfe012a493999d980864de2d35d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f908dfe012a493999d980864de2d35d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f908dfe012a493999d980864de2d35d.jpg", "file_size": 22729, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#宝蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f908dfe012a493999d980864de2d35d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f908dfe012a493999d980864de2d35d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f908dfe012a493999d980864de2d35d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f908dfe012a493999d980864de2d35d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f908dfe012a493999d980864de2d35d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FSu_Qvs_YQaWgWFoMmBgsXBuC4=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.115395+00 2025-12-09 10:15:53.115401+00 19712 FX0003-A49#红色 SPMX-20240815314945 \N \N \N 1 \N [{"file_id": "f5a1445b-5604-47cd-90c5-d1f3f91f2b8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e765a9154a75498e86eecc3989cb3188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e765a9154a75498e86eecc3989cb3188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e765a9154a75498e86eecc3989cb3188.jpg", "file_size": 51253, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A49#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e765a9154a75498e86eecc3989cb3188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e765a9154a75498e86eecc3989cb3188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e765a9154a75498e86eecc3989cb3188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e765a9154a75498e86eecc3989cb3188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e765a9154a75498e86eecc3989cb3188.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WA_2O3N7caJzCmMYO95GZchs7VE=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.118539+00 2025-12-09 10:15:53.118545+00 19713 LJH2044#绿色 SPMX-20240815314947 \N \N \N 1 \N [{"file_id": "63e1b0b5-f956-4013-8ffd-36e8b1937bbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2387aae7bfcd44b09e536a4eb610da16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2387aae7bfcd44b09e536a4eb610da16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2387aae7bfcd44b09e536a4eb610da16.jpg", "file_size": 71814, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2387aae7bfcd44b09e536a4eb610da16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2387aae7bfcd44b09e536a4eb610da16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2387aae7bfcd44b09e536a4eb610da16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2387aae7bfcd44b09e536a4eb610da16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2387aae7bfcd44b09e536a4eb610da16.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8z1cBD-8638m91y-UpQpJ6oNdU=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.121797+00 2025-12-09 10:15:53.121809+00 19714 DLOR023FWE#-K SPMX-20240815314950 \N \N \N 1 \N [{"file_id": "e9b027cb-6400-4ae6-8b2b-86c23ed2c104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1947dc4a0814ff29c5fc7e5ba369b8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1947dc4a0814ff29c5fc7e5ba369b8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1947dc4a0814ff29c5fc7e5ba369b8b.jpg", "file_size": 19999, "is_delete": false, "file_type": 1, "original_file_name": "DLOR023FWE#-K.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1947dc4a0814ff29c5fc7e5ba369b8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1947dc4a0814ff29c5fc7e5ba369b8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1947dc4a0814ff29c5fc7e5ba369b8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1947dc4a0814ff29c5fc7e5ba369b8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1947dc4a0814ff29c5fc7e5ba369b8b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6GeiTNSfK139Y5eQUjWx7XX_BQ=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.125025+00 2025-12-09 10:15:53.125031+00 19715 237#-定位裁-白色 SPMX-20240815314942 \N \N \N 1 \N [{"file_id": "f62745ae-f995-465e-afd0-4f5e018344a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4507181b9fea4dd0a6bb059baff64010.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4507181b9fea4dd0a6bb059baff64010.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4507181b9fea4dd0a6bb059baff64010.jpg", "file_size": 76432, "is_delete": false, "file_type": 1, "original_file_name": "237#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4507181b9fea4dd0a6bb059baff64010.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4507181b9fea4dd0a6bb059baff64010.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4507181b9fea4dd0a6bb059baff64010.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4507181b9fea4dd0a6bb059baff64010.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4507181b9fea4dd0a6bb059baff64010.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zfYSBmfPTg-qAL0CIKUyYlKHmTE=", "createTime": "2024-08-15 15:07:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.128238+00 2025-12-09 10:15:53.128244+00 19716 0022-13FWF#V5曲线 SPMX-20240815314946 \N \N \N 1 \N [{"file_id": "9ca78a34-5eab-43d6-804a-13b022022231", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dc846823fa84a02a45d1730f734cc51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dc846823fa84a02a45d1730f734cc51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dc846823fa84a02a45d1730f734cc51.jpg", "file_size": 8712, "is_delete": false, "file_type": 1, "original_file_name": "0022-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc846823fa84a02a45d1730f734cc51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc846823fa84a02a45d1730f734cc51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dc846823fa84a02a45d1730f734cc51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dc846823fa84a02a45d1730f734cc51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dc846823fa84a02a45d1730f734cc51.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imlCW3X9L1vE77Ee22Nm1mtRaZ8=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.131338+00 2025-12-09 10:15:53.131344+00 19717 88057#兰杏 SPMX-20240815314948 \N \N \N 1 \N [{"file_id": "51ea1d54-439f-4ffa-b756-0bfdd71c5c1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1e069f6d5d8468f8b00a4529d11e5a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1e069f6d5d8468f8b00a4529d11e5a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1e069f6d5d8468f8b00a4529d11e5a9.jpg", "file_size": 26983, "is_delete": false, "file_type": 1, "original_file_name": "88057#兰杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e069f6d5d8468f8b00a4529d11e5a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e069f6d5d8468f8b00a4529d11e5a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e069f6d5d8468f8b00a4529d11e5a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1e069f6d5d8468f8b00a4529d11e5a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1e069f6d5d8468f8b00a4529d11e5a9.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N9oYki9OdKXP2zfezt5X39y3utc=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.134501+00 2025-12-09 10:15:53.134509+00 19718 CGH9443#蓝色2XL SPMX-20240815314951 \N \N \N 1 \N [{"file_id": "1e1b702b-fad6-4c96-baed-f0b5d6021534", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e09f73b0f229453b92b59587c66a46dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e09f73b0f229453b92b59587c66a46dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e09f73b0f229453b92b59587c66a46dc.jpg", "file_size": 17050, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09f73b0f229453b92b59587c66a46dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09f73b0f229453b92b59587c66a46dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09f73b0f229453b92b59587c66a46dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e09f73b0f229453b92b59587c66a46dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e09f73b0f229453b92b59587c66a46dc.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IeKsRxHK0Qz0kBELTz24E6zrFg=", "createTime": "2024-08-15 15:07:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.137635+00 2025-12-09 10:15:53.137641+00 19719 LZ1406#童装T2号色 SPMX-20240815314958 \N \N \N 1 \N [{"file_id": "a9d7996c-a714-44ab-893a-fccea72a54d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a41ef8d92cd4102943e95a19da293b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a41ef8d92cd4102943e95a19da293b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a41ef8d92cd4102943e95a19da293b4.jpg", "file_size": 21566, "is_delete": false, "file_type": 1, "original_file_name": "LZ1406#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a41ef8d92cd4102943e95a19da293b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a41ef8d92cd4102943e95a19da293b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a41ef8d92cd4102943e95a19da293b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a41ef8d92cd4102943e95a19da293b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a41ef8d92cd4102943e95a19da293b4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZJ42Jarpkd2fdbBKQHEXBDFMU9Y=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.140863+00 2025-12-09 10:15:53.140872+00 19720 FX0003-A49#蓝色 SPMX-20240815314957 \N \N \N 1 \N [{"file_id": "bb505635-288e-484b-860b-7460ff065c37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b161cd484f9144199a2c112d05283d8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b161cd484f9144199a2c112d05283d8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b161cd484f9144199a2c112d05283d8f.jpg", "file_size": 54169, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A49#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b161cd484f9144199a2c112d05283d8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b161cd484f9144199a2c112d05283d8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b161cd484f9144199a2c112d05283d8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b161cd484f9144199a2c112d05283d8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b161cd484f9144199a2c112d05283d8f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ERDH4RhX5azhpzLHL8ApQV00c50=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.144+00 2025-12-09 10:15:53.144006+00 19721 LJH2044#蓝色 SPMX-20240815314963 \N \N \N 1 \N [{"file_id": "b919bf3d-fa22-4a1d-bf40-2ceecf48ccad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89eeb93c4e6f48eb807b6d5dd86589e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89eeb93c4e6f48eb807b6d5dd86589e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89eeb93c4e6f48eb807b6d5dd86589e1.jpg", "file_size": 70995, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89eeb93c4e6f48eb807b6d5dd86589e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89eeb93c4e6f48eb807b6d5dd86589e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89eeb93c4e6f48eb807b6d5dd86589e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89eeb93c4e6f48eb807b6d5dd86589e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89eeb93c4e6f48eb807b6d5dd86589e1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3_K_Lde4NWYXb9qTed8ZZyM8Zrw=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.147202+00 2025-12-09 10:15:53.147208+00 19722 HXF0008-29#宝蓝色批布 SPMX-20240815314966 \N \N \N 1 \N [{"file_id": "b128cdcc-1d9e-437a-8560-b2f984fb6324", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9258b487d3c743a7b701f725c05f1906.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9258b487d3c743a7b701f725c05f1906.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9258b487d3c743a7b701f725c05f1906.jpg", "file_size": 9784, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#宝蓝色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9258b487d3c743a7b701f725c05f1906.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9258b487d3c743a7b701f725c05f1906.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9258b487d3c743a7b701f725c05f1906.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9258b487d3c743a7b701f725c05f1906.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9258b487d3c743a7b701f725c05f1906.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aok7GO_PPsPpQnchvUwiNQwgI2c=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.15036+00 2025-12-09 10:15:53.150367+00 19723 FX0003-A50#LWQ15 SPMX-20240815314968 \N \N \N 1 \N [{"file_id": "5e7e3d5a-0200-4285-b303-a1c768547b5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24799072373541ca9b6bad6c1c224e43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24799072373541ca9b6bad6c1c224e43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24799072373541ca9b6bad6c1c224e43.jpg", "file_size": 74139, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A50#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24799072373541ca9b6bad6c1c224e43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24799072373541ca9b6bad6c1c224e43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24799072373541ca9b6bad6c1c224e43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24799072373541ca9b6bad6c1c224e43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24799072373541ca9b6bad6c1c224e43.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MxlB4ydMPHwip6G7n2Q2rzJPdT0=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.153442+00 2025-12-09 10:15:53.153448+00 19724 DLR023FWE#-A SPMX-20240815314962 \N \N \N 1 \N [{"file_id": "ba1882e2-5246-44db-be58-732951178739", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eb9239004964cc9a0717cafef05e2b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eb9239004964cc9a0717cafef05e2b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eb9239004964cc9a0717cafef05e2b7.jpg", "file_size": 24088, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb9239004964cc9a0717cafef05e2b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb9239004964cc9a0717cafef05e2b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eb9239004964cc9a0717cafef05e2b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eb9239004964cc9a0717cafef05e2b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eb9239004964cc9a0717cafef05e2b7.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1pQ6SQ6bZubDtN-ghBJjj0EvR2A=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.156614+00 2025-12-09 10:15:53.15662+00 19725 CGH9443#蓝色L SPMX-20240815314959 \N \N \N 1 \N [{"file_id": "99e7fd54-a931-4840-90d1-0c6ae617a94f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c39c4942f784977bfdeed420d46e504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c39c4942f784977bfdeed420d46e504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c39c4942f784977bfdeed420d46e504.jpg", "file_size": 17105, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39c4942f784977bfdeed420d46e504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39c4942f784977bfdeed420d46e504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c39c4942f784977bfdeed420d46e504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c39c4942f784977bfdeed420d46e504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c39c4942f784977bfdeed420d46e504.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cNROefPH6KoOS4rO2Fzv1p-JLc=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.159779+00 2025-12-09 10:15:53.159786+00 19726 JY-AD-120#1号蓝色 SPMX-20240815314965 \N \N \N 1 \N [{"file_id": "4645c5c7-cda6-46ad-b1ad-55ccba93b259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c609c5a5c89451aa5eae95d61762c91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c609c5a5c89451aa5eae95d61762c91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c609c5a5c89451aa5eae95d61762c91.jpg", "file_size": 23199, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c609c5a5c89451aa5eae95d61762c91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c609c5a5c89451aa5eae95d61762c91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c609c5a5c89451aa5eae95d61762c91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c609c5a5c89451aa5eae95d61762c91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c609c5a5c89451aa5eae95d61762c91.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7m28YK6q5YPwMrZxaUiUXvjtrFc=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.16293+00 2025-12-09 10:15:53.162936+00 19727 1231-9FWF#中童14码 SPMX-20240815314955 \N \N \N 1 \N [{"file_id": "8f984112-cef2-45ad-ac35-82031f98786c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b576dd9eab4219887bb36b113d31ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b576dd9eab4219887bb36b113d31ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b576dd9eab4219887bb36b113d31ea.jpg", "file_size": 17520, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#中童14码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b576dd9eab4219887bb36b113d31ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b576dd9eab4219887bb36b113d31ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b576dd9eab4219887bb36b113d31ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b576dd9eab4219887bb36b113d31ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b576dd9eab4219887bb36b113d31ea.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3P1QzP3-RPakwSDzVaZUUVAFIEM=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.166002+00 2025-12-09 10:15:53.166008+00 19728 0022-14FWF#V5曲线 SPMX-20240815314956 \N \N \N 1 \N [{"file_id": "c5120693-4d16-484d-b3dc-6578ccf9c91b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af28c7b0ce7d4486aa475026f984252d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af28c7b0ce7d4486aa475026f984252d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af28c7b0ce7d4486aa475026f984252d.jpg", "file_size": 14466, "is_delete": false, "file_type": 1, "original_file_name": "0022-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af28c7b0ce7d4486aa475026f984252d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af28c7b0ce7d4486aa475026f984252d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af28c7b0ce7d4486aa475026f984252d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af28c7b0ce7d4486aa475026f984252d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af28c7b0ce7d4486aa475026f984252d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nYg_SCSzOMtWI8JncNnMYSmKZBk=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.169187+00 2025-12-09 10:15:53.169193+00 19729 88057#兰粉色 SPMX-20240815314961 \N \N \N 1 \N [{"file_id": "8327a25b-03b2-4535-bf8b-305e89506448", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6941006f97043c69b99c8804a2cae54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6941006f97043c69b99c8804a2cae54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6941006f97043c69b99c8804a2cae54.jpg", "file_size": 21687, "is_delete": false, "file_type": 1, "original_file_name": "88057#兰粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6941006f97043c69b99c8804a2cae54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6941006f97043c69b99c8804a2cae54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6941006f97043c69b99c8804a2cae54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6941006f97043c69b99c8804a2cae54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6941006f97043c69b99c8804a2cae54.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:owRUXzma323YfK1_abdS3Ka89RA=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.172338+00 2025-12-09 10:15:53.172345+00 19730 237#-定位裁-黑色 SPMX-20240815314964 \N \N \N 1 \N [{"file_id": "b99d8871-da68-49b1-9601-ca481199c15e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15aa00d400d647f2949dad32a3a04d15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15aa00d400d647f2949dad32a3a04d15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15aa00d400d647f2949dad32a3a04d15.jpg", "file_size": 78699, "is_delete": false, "file_type": 1, "original_file_name": "237#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aa00d400d647f2949dad32a3a04d15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aa00d400d647f2949dad32a3a04d15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aa00d400d647f2949dad32a3a04d15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15aa00d400d647f2949dad32a3a04d15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15aa00d400d647f2949dad32a3a04d15.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxLPWuroYbr66p4jCu_X_sZXKcE=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.175503+00 2025-12-09 10:15:53.175509+00 19731 1231-9FWF#中童袖领匹布 SPMX-20240815314967 \N \N \N 1 \N [{"file_id": "b46e39f0-56af-44ff-8479-b21c8d9638b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c645db5ff0c6407a8548dcda067c9af7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c645db5ff0c6407a8548dcda067c9af7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c645db5ff0c6407a8548dcda067c9af7.jpg", "file_size": 13960, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#中童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c645db5ff0c6407a8548dcda067c9af7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c645db5ff0c6407a8548dcda067c9af7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c645db5ff0c6407a8548dcda067c9af7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c645db5ff0c6407a8548dcda067c9af7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c645db5ff0c6407a8548dcda067c9af7.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-Uf1slTUMPrd2_VPXZ7dHsT3ns=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.17872+00 2025-12-09 10:15:53.178727+00 19732 JY-AD-120#4号色暗桔 SPMX-20240815314977 \N \N \N 1 \N [{"file_id": "eca5ddd3-0bf1-4577-9d5e-4bf4fd3f2a50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b1b0759e6b9426381fbe40d41b32c82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b1b0759e6b9426381fbe40d41b32c82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b1b0759e6b9426381fbe40d41b32c82.jpg", "file_size": 24005, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#4号色暗桔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1b0759e6b9426381fbe40d41b32c82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1b0759e6b9426381fbe40d41b32c82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b1b0759e6b9426381fbe40d41b32c82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b1b0759e6b9426381fbe40d41b32c82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b1b0759e6b9426381fbe40d41b32c82.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQT900W_0cg8HCq0SIaHIxkC3s0=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.181855+00 2025-12-09 10:15:53.181861+00 19733 CGH9443#黄色2XL SPMX-20240815314981 \N \N \N 1 \N [{"file_id": "7cc12cf1-ab95-4115-82ad-ecdc34c523ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e29dee21bfa4574ab72f4de1e5d1e4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e29dee21bfa4574ab72f4de1e5d1e4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e29dee21bfa4574ab72f4de1e5d1e4c.jpg", "file_size": 16621, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e29dee21bfa4574ab72f4de1e5d1e4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e29dee21bfa4574ab72f4de1e5d1e4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e29dee21bfa4574ab72f4de1e5d1e4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e29dee21bfa4574ab72f4de1e5d1e4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e29dee21bfa4574ab72f4de1e5d1e4c.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RtxYHnvWF1jFy4j_obQf2hNPu48=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.185017+00 2025-12-09 10:15:53.185024+00 19734 1231-9FWF#小童6码 SPMX-20240815314978 \N \N \N 1 \N [{"file_id": "ba13c3c6-9569-416e-8b0a-75c9d5973fb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d42704003bd043cb8460dfff081185d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d42704003bd043cb8460dfff081185d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d42704003bd043cb8460dfff081185d2.jpg", "file_size": 20202, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#小童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42704003bd043cb8460dfff081185d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42704003bd043cb8460dfff081185d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42704003bd043cb8460dfff081185d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d42704003bd043cb8460dfff081185d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d42704003bd043cb8460dfff081185d2.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mGC3GyLVbYxuW1qepkB0EoupzNI=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.188096+00 2025-12-09 10:15:53.188102+00 19735 LZ1406#童装T4号色 SPMX-20240815314982 \N \N \N 1 \N [{"file_id": "549171e0-9a17-4b0c-b5fd-3744536959db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13283beac0ad424d8686b767590869d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13283beac0ad424d8686b767590869d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13283beac0ad424d8686b767590869d9.jpg", "file_size": 25165, "is_delete": false, "file_type": 1, "original_file_name": "LZ1406#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13283beac0ad424d8686b767590869d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13283beac0ad424d8686b767590869d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13283beac0ad424d8686b767590869d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13283beac0ad424d8686b767590869d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13283beac0ad424d8686b767590869d9.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fFt17htzFGh2ghg5xzhq39jM-qM=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.191335+00 2025-12-09 10:15:53.191342+00 19736 CGH9443#蓝色XL SPMX-20240815314971 \N \N \N 1 \N [{"file_id": "600b101d-a6dd-4c4f-bb36-5c6451b81e15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e28348c0976f4d21b49055b213590f81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e28348c0976f4d21b49055b213590f81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e28348c0976f4d21b49055b213590f81.jpg", "file_size": 16933, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28348c0976f4d21b49055b213590f81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28348c0976f4d21b49055b213590f81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28348c0976f4d21b49055b213590f81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e28348c0976f4d21b49055b213590f81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e28348c0976f4d21b49055b213590f81.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r19OjHTzrfqJ5Bjf-jfRNd-N6qU=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.194492+00 2025-12-09 10:15:53.1945+00 19737 0022-15FWF#V5曲线 SPMX-20240815314969 \N \N \N 1 \N [{"file_id": "df91ea31-1be7-45f6-bd11-d33e29ec5c5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cdcb8045a8c4999b43d06f90388821b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cdcb8045a8c4999b43d06f90388821b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cdcb8045a8c4999b43d06f90388821b.jpg", "file_size": 12088, "is_delete": false, "file_type": 1, "original_file_name": "0022-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdcb8045a8c4999b43d06f90388821b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdcb8045a8c4999b43d06f90388821b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cdcb8045a8c4999b43d06f90388821b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cdcb8045a8c4999b43d06f90388821b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cdcb8045a8c4999b43d06f90388821b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-8rsiNaVvRwtXk8_ACF9S4glDA=", "createTime": "2024-08-15 15:07:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.19763+00 2025-12-09 10:15:53.197636+00 19738 88057#红色 SPMX-20240815314983 \N \N \N 1 \N [{"file_id": "a1d9c6e0-98f8-430d-99de-4de66d1bf7f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f5948b0a4e94a3695a73b54d27e03d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f5948b0a4e94a3695a73b54d27e03d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f5948b0a4e94a3695a73b54d27e03d9.jpg", "file_size": 24477, "is_delete": false, "file_type": 1, "original_file_name": "88057#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5948b0a4e94a3695a73b54d27e03d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5948b0a4e94a3695a73b54d27e03d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f5948b0a4e94a3695a73b54d27e03d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f5948b0a4e94a3695a73b54d27e03d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f5948b0a4e94a3695a73b54d27e03d9.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWpZ9tojAqTjwUmQx29-4FKRme0=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.200828+00 2025-12-09 10:15:53.200835+00 19739 237#WJC22 SPMX-20240815314975 \N \N \N 1 \N [{"file_id": "097ee516-afec-48ca-b56a-28269c8f5037", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3fd9f534a6c4da7bbfb53a2af6bd770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3fd9f534a6c4da7bbfb53a2af6bd770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3fd9f534a6c4da7bbfb53a2af6bd770.jpg", "file_size": 13673, "is_delete": false, "file_type": 1, "original_file_name": "237#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3fd9f534a6c4da7bbfb53a2af6bd770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3fd9f534a6c4da7bbfb53a2af6bd770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3fd9f534a6c4da7bbfb53a2af6bd770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3fd9f534a6c4da7bbfb53a2af6bd770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3fd9f534a6c4da7bbfb53a2af6bd770.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rVvQ3egNeMU0Spax58J33Yqzvxw=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.204015+00 2025-12-09 10:15:53.20402+00 19740 88057#原版色 SPMX-20240815314972 \N \N \N 1 \N [{"file_id": "84ab8e9f-2f07-4f43-a765-56c6d2659c54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84317654d10e41d2974cd743c92585f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84317654d10e41d2974cd743c92585f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84317654d10e41d2974cd743c92585f8.jpg", "file_size": 18906, "is_delete": false, "file_type": 1, "original_file_name": "88057#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84317654d10e41d2974cd743c92585f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84317654d10e41d2974cd743c92585f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84317654d10e41d2974cd743c92585f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84317654d10e41d2974cd743c92585f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84317654d10e41d2974cd743c92585f8.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltLk5X-BtSawIjj2Tl4EM6kM9do=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.20709+00 2025-12-09 10:15:53.207097+00 19741 DLR023FWE#-B SPMX-20240815314973 \N \N \N 1 \N [{"file_id": "cc9e0d5c-70ab-4a76-90bf-de6777a007e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "871590263b2e4667b8e27c738947cf96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "871590263b2e4667b8e27c738947cf96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "871590263b2e4667b8e27c738947cf96.jpg", "file_size": 22985, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871590263b2e4667b8e27c738947cf96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871590263b2e4667b8e27c738947cf96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871590263b2e4667b8e27c738947cf96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/871590263b2e4667b8e27c738947cf96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/871590263b2e4667b8e27c738947cf96.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vijmThuOzTwum1y4opjB7uLP0Uw=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.210147+00 2025-12-09 10:15:53.210153+00 19742 FX0003-A51#LWQ15 SPMX-20240815314979 \N \N \N 1 \N [{"file_id": "aea92efa-3fcc-4bdd-8b3e-4d083578b059", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24aaa6b17337478089d29d5fb3d0c678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24aaa6b17337478089d29d5fb3d0c678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24aaa6b17337478089d29d5fb3d0c678.jpg", "file_size": 87956, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A51#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24aaa6b17337478089d29d5fb3d0c678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24aaa6b17337478089d29d5fb3d0c678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24aaa6b17337478089d29d5fb3d0c678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24aaa6b17337478089d29d5fb3d0c678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24aaa6b17337478089d29d5fb3d0c678.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zao01vDDcp8yNevferI_-yXOAwo=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.213396+00 2025-12-09 10:15:53.213401+00 19743 0022-16FWF#V5曲线 SPMX-20240815314980 \N \N \N 1 \N [{"file_id": "aa13dc9b-002b-4e57-928c-fb74f77718d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a20d19c541c04a6c8d0ece7907deeb2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a20d19c541c04a6c8d0ece7907deeb2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a20d19c541c04a6c8d0ece7907deeb2e.jpg", "file_size": 13614, "is_delete": false, "file_type": 1, "original_file_name": "0022-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20d19c541c04a6c8d0ece7907deeb2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20d19c541c04a6c8d0ece7907deeb2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a20d19c541c04a6c8d0ece7907deeb2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a20d19c541c04a6c8d0ece7907deeb2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a20d19c541c04a6c8d0ece7907deeb2e.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kjB9WSGbEET3Os1XiffR12mnngQ=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.216535+00 2025-12-09 10:15:53.216541+00 19744 DLR023FWE#-D SPMX-20240815314984 \N \N \N 1 \N [{"file_id": "e21cf81d-3c7b-4593-85a1-9798704d02a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "107c554a33054aa782ec13a5c22b8d9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "107c554a33054aa782ec13a5c22b8d9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "107c554a33054aa782ec13a5c22b8d9c.jpg", "file_size": 19093, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107c554a33054aa782ec13a5c22b8d9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107c554a33054aa782ec13a5c22b8d9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/107c554a33054aa782ec13a5c22b8d9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/107c554a33054aa782ec13a5c22b8d9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/107c554a33054aa782ec13a5c22b8d9c.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u_o-1L9ykeKQIHuaUMqr2o0mKSQ=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.219671+00 2025-12-09 10:15:53.219682+00 19745 LZ1406#童装T3号色 SPMX-20240815314970 \N \N \N 1 \N [{"file_id": "be5aed85-4d76-48f2-9e3a-63f703de9c78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "639f20032c804ec78ecb7885463ba71f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "639f20032c804ec78ecb7885463ba71f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "639f20032c804ec78ecb7885463ba71f.jpg", "file_size": 24010, "is_delete": false, "file_type": 1, "original_file_name": "LZ1406#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639f20032c804ec78ecb7885463ba71f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639f20032c804ec78ecb7885463ba71f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/639f20032c804ec78ecb7885463ba71f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/639f20032c804ec78ecb7885463ba71f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/639f20032c804ec78ecb7885463ba71f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eeVnV4GX2Wa23haXSVNf1sshd1Y=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.222833+00 2025-12-09 10:15:53.222839+00 19746 LJH2045#1号色 SPMX-20240815314985 \N \N \N 1 \N [{"file_id": "cbdb0816-ee3b-446f-9142-5f30ecc8b921", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33afd5c96efc422aad24e0f6cab46ad7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33afd5c96efc422aad24e0f6cab46ad7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33afd5c96efc422aad24e0f6cab46ad7.jpg", "file_size": 42121, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33afd5c96efc422aad24e0f6cab46ad7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33afd5c96efc422aad24e0f6cab46ad7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33afd5c96efc422aad24e0f6cab46ad7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33afd5c96efc422aad24e0f6cab46ad7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33afd5c96efc422aad24e0f6cab46ad7.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CC7crWxXbb1dlffkU_El0KZKw_o=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.225987+00 2025-12-09 10:15:53.225993+00 19747 LJH2044#黑色 SPMX-20240815314974 \N \N \N 1 \N [{"file_id": "8363b484-c2de-4ab3-b5aa-c271380a1673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c31f6766470474cb6725ca42bcc10df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c31f6766470474cb6725ca42bcc10df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c31f6766470474cb6725ca42bcc10df.jpg", "file_size": 64882, "is_delete": false, "file_type": 1, "original_file_name": "LJH2044#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c31f6766470474cb6725ca42bcc10df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c31f6766470474cb6725ca42bcc10df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c31f6766470474cb6725ca42bcc10df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c31f6766470474cb6725ca42bcc10df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c31f6766470474cb6725ca42bcc10df.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rzK40GywMo-znhr89fqQrCmUhK4=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.229155+00 2025-12-09 10:15:53.229162+00 19748 HXF0008-29#粉色2XL SPMX-20240815314976 \N \N \N 1 \N [{"file_id": "5297da74-aec3-4afd-babe-f528ec3bf625", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01a29247aa434cbe9fe2e29efeffb299.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01a29247aa434cbe9fe2e29efeffb299.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01a29247aa434cbe9fe2e29efeffb299.jpg", "file_size": 15648, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a29247aa434cbe9fe2e29efeffb299.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a29247aa434cbe9fe2e29efeffb299.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01a29247aa434cbe9fe2e29efeffb299.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01a29247aa434cbe9fe2e29efeffb299.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01a29247aa434cbe9fe2e29efeffb299.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oq-DKGAtsh6wQ9ztQz3ruBt9qf0=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.23224+00 2025-12-09 10:15:53.232247+00 19749 2370FWF#大红 SPMX-20240815314986 \N \N \N 1 \N [{"file_id": "0919ae85-fae2-44c9-8d66-7462f6711623", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4650ac5af054f25a2bdf3a761743f9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4650ac5af054f25a2bdf3a761743f9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4650ac5af054f25a2bdf3a761743f9e.jpg", "file_size": 22358, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4650ac5af054f25a2bdf3a761743f9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4650ac5af054f25a2bdf3a761743f9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4650ac5af054f25a2bdf3a761743f9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4650ac5af054f25a2bdf3a761743f9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4650ac5af054f25a2bdf3a761743f9e.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GPlP48RtzNa59V1LatzEpAQFEiA=", "createTime": "2024-08-15 15:07:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.235322+00 2025-12-09 10:15:53.235329+00 19750 LJH2045#3号色 SPMX-20240815314997 \N \N \N 1 \N [{"file_id": "557fad29-6aa5-4bdd-9f43-3447d1701fc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f122808dbb114db39957b6620e86c93d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f122808dbb114db39957b6620e86c93d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f122808dbb114db39957b6620e86c93d.jpg", "file_size": 40235, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f122808dbb114db39957b6620e86c93d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f122808dbb114db39957b6620e86c93d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f122808dbb114db39957b6620e86c93d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f122808dbb114db39957b6620e86c93d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f122808dbb114db39957b6620e86c93d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxZGjG6hooIwN81XRir0dIVzrp8=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.238402+00 2025-12-09 10:15:53.238408+00 19751 LZ1406#童装T5号色 SPMX-20240815314990 \N \N \N 1 \N [{"file_id": "dd8097dc-b01f-449e-9222-3a38238fa930", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46ecccb49b7e4e48b19b878d154f47fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46ecccb49b7e4e48b19b878d154f47fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46ecccb49b7e4e48b19b878d154f47fd.jpg", "file_size": 22585, "is_delete": false, "file_type": 1, "original_file_name": "LZ1406#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ecccb49b7e4e48b19b878d154f47fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ecccb49b7e4e48b19b878d154f47fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46ecccb49b7e4e48b19b878d154f47fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46ecccb49b7e4e48b19b878d154f47fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46ecccb49b7e4e48b19b878d154f47fd.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Idq5waMxuQdvZRBF_48k5Zkh158=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.24158+00 2025-12-09 10:15:53.241586+00 19752 88057#黑色 SPMX-20240815314991 \N \N \N 1 \N [{"file_id": "d8f20f4d-77da-497b-9dab-2481e13828bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b351d1a91d7489eb755934e91c25a86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b351d1a91d7489eb755934e91c25a86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b351d1a91d7489eb755934e91c25a86.jpg", "file_size": 29330, "is_delete": false, "file_type": 1, "original_file_name": "88057#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b351d1a91d7489eb755934e91c25a86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b351d1a91d7489eb755934e91c25a86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b351d1a91d7489eb755934e91c25a86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b351d1a91d7489eb755934e91c25a86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b351d1a91d7489eb755934e91c25a86.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IUB3IE3rIw5OKzWZ7FAYd41nZXg=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.244976+00 2025-12-09 10:15:53.244982+00 19753 HXF0008-29#粉色M SPMX-20240815315000 \N \N \N 1 \N [{"file_id": "a1f34625-c217-4b0a-a4f1-007e550be9e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a65cdd437b7e437e95594261788ca1e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a65cdd437b7e437e95594261788ca1e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a65cdd437b7e437e95594261788ca1e1.jpg", "file_size": 17418, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65cdd437b7e437e95594261788ca1e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65cdd437b7e437e95594261788ca1e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65cdd437b7e437e95594261788ca1e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a65cdd437b7e437e95594261788ca1e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a65cdd437b7e437e95594261788ca1e1.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFnEG8_ovCGlDMDLn9x3FcE6vUY=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.248455+00 2025-12-09 10:15:53.248461+00 19754 2370FWF#橙色 SPMX-20240815314995 \N \N \N 1 \N [{"file_id": "4608540a-9c69-493d-8017-4239863a5e98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "925f5d4a0e6e4ebcb72d910c238f9c9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "925f5d4a0e6e4ebcb72d910c238f9c9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "925f5d4a0e6e4ebcb72d910c238f9c9f.jpg", "file_size": 20100, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/925f5d4a0e6e4ebcb72d910c238f9c9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/925f5d4a0e6e4ebcb72d910c238f9c9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/925f5d4a0e6e4ebcb72d910c238f9c9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/925f5d4a0e6e4ebcb72d910c238f9c9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/925f5d4a0e6e4ebcb72d910c238f9c9f.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHUHCD3vEE08_WEmPIziVg8lmjk=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.251988+00 2025-12-09 10:15:53.251995+00 19755 0022-17FWF#V5曲线番禺调色 SPMX-20240815314999 \N \N \N 1 \N [{"file_id": "08b1e880-44ce-4eb6-8278-e10f1ddc7731", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "595841def61240a79e39c3f0bc8ea7db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "595841def61240a79e39c3f0bc8ea7db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "595841def61240a79e39c3f0bc8ea7db.jpg", "file_size": 9656, "is_delete": false, "file_type": 1, "original_file_name": "0022-17FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595841def61240a79e39c3f0bc8ea7db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595841def61240a79e39c3f0bc8ea7db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595841def61240a79e39c3f0bc8ea7db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/595841def61240a79e39c3f0bc8ea7db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/595841def61240a79e39c3f0bc8ea7db.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PKczVbHHgger7kv77ksOBZeGjU=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.255413+00 2025-12-09 10:15:53.255419+00 19756 HXF0008-29#粉色L SPMX-20240815314987 \N \N \N 1 \N [{"file_id": "2a38bef3-e75a-42a9-bda2-4cd54c578bcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e5f4a31a5fb4b85942c54e61e58bc43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e5f4a31a5fb4b85942c54e61e58bc43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e5f4a31a5fb4b85942c54e61e58bc43.jpg", "file_size": 16651, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5f4a31a5fb4b85942c54e61e58bc43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5f4a31a5fb4b85942c54e61e58bc43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e5f4a31a5fb4b85942c54e61e58bc43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e5f4a31a5fb4b85942c54e61e58bc43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e5f4a31a5fb4b85942c54e61e58bc43.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-3SFYcucBw4trCdU6V6Y0mEXlyM=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.258905+00 2025-12-09 10:15:53.258913+00 19757 1231-9FWF#小童8码+4码 SPMX-20240815314988 \N \N \N 1 \N [{"file_id": "9e7a9255-4ebc-49d6-bab2-df823519ae46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "486bf8e58599473e9e8964445b03a76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "486bf8e58599473e9e8964445b03a76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "486bf8e58599473e9e8964445b03a76d.jpg", "file_size": 20853, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#小童8码+4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486bf8e58599473e9e8964445b03a76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486bf8e58599473e9e8964445b03a76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/486bf8e58599473e9e8964445b03a76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/486bf8e58599473e9e8964445b03a76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/486bf8e58599473e9e8964445b03a76d.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WYNTdooo7DAKF0gM-en90z_Cuxg=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.262282+00 2025-12-09 10:15:53.262289+00 19758 JY-AD-120#5号黑色 SPMX-20240815314992 \N \N \N 1 \N [{"file_id": "c7aa3ffc-ffd1-4611-87f9-df5dae5b9ece", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c44e86f705b4431db772317ed73cf6d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c44e86f705b4431db772317ed73cf6d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c44e86f705b4431db772317ed73cf6d6.jpg", "file_size": 23151, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#5号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44e86f705b4431db772317ed73cf6d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44e86f705b4431db772317ed73cf6d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c44e86f705b4431db772317ed73cf6d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c44e86f705b4431db772317ed73cf6d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c44e86f705b4431db772317ed73cf6d6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SkFnITVSELCtSgG1XQ5pTqK2PrE=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.265737+00 2025-12-09 10:15:53.265743+00 19759 LZ1407#童装T1号色 SPMX-20240815315001 \N \N \N 1 \N [{"file_id": "6bab2f83-e5c1-486f-80dc-89f2b03aabc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463cfdbb6d204c418c31e57a69c97eba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463cfdbb6d204c418c31e57a69c97eba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463cfdbb6d204c418c31e57a69c97eba.jpg", "file_size": 22062, "is_delete": false, "file_type": 1, "original_file_name": "LZ1407#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463cfdbb6d204c418c31e57a69c97eba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463cfdbb6d204c418c31e57a69c97eba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463cfdbb6d204c418c31e57a69c97eba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463cfdbb6d204c418c31e57a69c97eba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463cfdbb6d204c418c31e57a69c97eba.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D-oqoUvgPUe59TnOJqQlBqX7138=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.269222+00 2025-12-09 10:15:53.269228+00 19760 CGH9443#黄色L SPMX-20240815314994 \N \N \N 1 \N [{"file_id": "6b13586e-6dfd-49b6-bffc-878c46ae7e55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae87d39cbc354bd78b047f378a523dd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae87d39cbc354bd78b047f378a523dd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae87d39cbc354bd78b047f378a523dd4.jpg", "file_size": 16190, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae87d39cbc354bd78b047f378a523dd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae87d39cbc354bd78b047f378a523dd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae87d39cbc354bd78b047f378a523dd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae87d39cbc354bd78b047f378a523dd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae87d39cbc354bd78b047f378a523dd4.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dVJMuDb57mfdmsYd6u2w7e_NBQg=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.27239+00 2025-12-09 10:15:53.272396+00 19761 1231-9FWF#小童袖领匹布 SPMX-20240815314998 \N \N \N 1 \N [{"file_id": "62ae6765-4967-4627-924a-07ec470067d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14e21e1b00f5451bb177da26e720e5c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14e21e1b00f5451bb177da26e720e5c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14e21e1b00f5451bb177da26e720e5c6.jpg", "file_size": 13884, "is_delete": false, "file_type": 1, "original_file_name": "1231-9FWF#小童袖领匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e21e1b00f5451bb177da26e720e5c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e21e1b00f5451bb177da26e720e5c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14e21e1b00f5451bb177da26e720e5c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14e21e1b00f5451bb177da26e720e5c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14e21e1b00f5451bb177da26e720e5c6.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2Ne0ERk7Gz8GGpE_MMOoJbjmyA=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.2756+00 2025-12-09 10:15:53.275606+00 19762 FX0003-A52#LWQ15 SPMX-20240815314993 \N \N \N 1 \N [{"file_id": "374e3221-c4ae-4724-889a-70c872b40fba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cdd379defdd40cea1d6e828f0f91dbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cdd379defdd40cea1d6e828f0f91dbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cdd379defdd40cea1d6e828f0f91dbf.jpg", "file_size": 70406, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A52#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdd379defdd40cea1d6e828f0f91dbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdd379defdd40cea1d6e828f0f91dbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cdd379defdd40cea1d6e828f0f91dbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cdd379defdd40cea1d6e828f0f91dbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cdd379defdd40cea1d6e828f0f91dbf.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qX0sLWZfKrdwhk8GuStubzsh60Y=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.278777+00 2025-12-09 10:15:53.278783+00 19763 DLR023FWE#-E SPMX-20240815314996 \N \N \N 1 \N [{"file_id": "ab6ef004-3a01-4c4a-9d8e-b8f4f545a0c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e37f0b1451748d6932b376bfe67c0f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e37f0b1451748d6932b376bfe67c0f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e37f0b1451748d6932b376bfe67c0f8.jpg", "file_size": 25531, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e37f0b1451748d6932b376bfe67c0f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e37f0b1451748d6932b376bfe67c0f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e37f0b1451748d6932b376bfe67c0f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e37f0b1451748d6932b376bfe67c0f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e37f0b1451748d6932b376bfe67c0f8.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:secmXwjoeHh9S35GUgUVTCFOfA4=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.281958+00 2025-12-09 10:15:53.281965+00 19764 0022-17FWF#V5曲线 SPMX-20240815314989 \N \N \N 1 \N [{"file_id": "bf8d8ad4-6696-4f72-876a-989d5d2e2cbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e3ff898f68d4818be36a76b3963b4e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e3ff898f68d4818be36a76b3963b4e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e3ff898f68d4818be36a76b3963b4e2.jpg", "file_size": 8899, "is_delete": false, "file_type": 1, "original_file_name": "0022-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3ff898f68d4818be36a76b3963b4e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3ff898f68d4818be36a76b3963b4e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e3ff898f68d4818be36a76b3963b4e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e3ff898f68d4818be36a76b3963b4e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e3ff898f68d4818be36a76b3963b4e2.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-K8sv1AHRRIQiSkGPHCCgKLA1hI=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.285089+00 2025-12-09 10:15:53.285096+00 19765 JY-AD-120#6号玫红 SPMX-20240815315002 \N \N \N 1 \N [{"file_id": "c71d678e-39d1-4596-b430-fff60e64f7d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db99830155514ff3aa9e84cb8a0aa12b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db99830155514ff3aa9e84cb8a0aa12b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db99830155514ff3aa9e84cb8a0aa12b.jpg", "file_size": 22467, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#6号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db99830155514ff3aa9e84cb8a0aa12b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db99830155514ff3aa9e84cb8a0aa12b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db99830155514ff3aa9e84cb8a0aa12b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db99830155514ff3aa9e84cb8a0aa12b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db99830155514ff3aa9e84cb8a0aa12b.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hld2Xe7LmhhGYKAnhkMtRoopPs8=", "createTime": "2024-08-15 15:07:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.288233+00 2025-12-09 10:15:53.288239+00 19766 CGH9443#黄色XL SPMX-20240815315004 \N \N \N 1 \N [{"file_id": "3965847f-e70f-4c38-aeb6-fc97a97e6b2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7c387abe7834a1ca75883f535db54bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7c387abe7834a1ca75883f535db54bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7c387abe7834a1ca75883f535db54bb.jpg", "file_size": 15857, "is_delete": false, "file_type": 1, "original_file_name": "CGH9443#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c387abe7834a1ca75883f535db54bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c387abe7834a1ca75883f535db54bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c387abe7834a1ca75883f535db54bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7c387abe7834a1ca75883f535db54bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7c387abe7834a1ca75883f535db54bb.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zqq0wOQSCXtS-pQDfcqtxTU2anI=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.291333+00 2025-12-09 10:15:53.291343+00 19767 HXF0008-29#粉色XL SPMX-20240815315009 \N \N \N 1 \N [{"file_id": "67dcf770-536f-48ad-b4bd-d0ab392a42d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51f949637916400f870c022364c87ceb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51f949637916400f870c022364c87ceb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51f949637916400f870c022364c87ceb.jpg", "file_size": 16046, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f949637916400f870c022364c87ceb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f949637916400f870c022364c87ceb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51f949637916400f870c022364c87ceb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51f949637916400f870c022364c87ceb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51f949637916400f870c022364c87ceb.jpg?e=1765361752&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chc0JWAfVC_ZWb-DYd_7I6uf50k=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:53.995974+00 2025-12-09 10:15:53.995983+00 19768 88058#墨绿 SPMX-20240815315013 \N \N \N 1 \N [{"file_id": "e38f7e16-eb64-4bd3-83d9-64b521ef2be1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8722f85628144a88fac5068df968472.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8722f85628144a88fac5068df968472.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8722f85628144a88fac5068df968472.jpg", "file_size": 27712, "is_delete": false, "file_type": 1, "original_file_name": "88058#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8722f85628144a88fac5068df968472.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8722f85628144a88fac5068df968472.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8722f85628144a88fac5068df968472.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8722f85628144a88fac5068df968472.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8722f85628144a88fac5068df968472.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKSJ4t2yNBjJxYLbbgWju-m2xak=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.000831+00 2025-12-09 10:15:54.00084+00 19769 0022-1FWE#墨绿底VS-D3 SPMX-20240815315010 \N \N \N 1 \N [{"file_id": "c28061ca-f32e-43af-a499-b4cae44121d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38d125c6b1fa4436a36e2d51593c8ffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38d125c6b1fa4436a36e2d51593c8ffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38d125c6b1fa4436a36e2d51593c8ffd.jpg", "file_size": 21143, "is_delete": false, "file_type": 1, "original_file_name": "0022-1FWE#墨绿底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d125c6b1fa4436a36e2d51593c8ffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d125c6b1fa4436a36e2d51593c8ffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38d125c6b1fa4436a36e2d51593c8ffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38d125c6b1fa4436a36e2d51593c8ffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38d125c6b1fa4436a36e2d51593c8ffd.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CHTnaN7QKBey6Za5oc7Im4juQbg=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.004362+00 2025-12-09 10:15:54.004371+00 19770 LZ1407#童装T2号色 SPMX-20240815315012 \N \N \N 1 \N [{"file_id": "71c89296-f326-4446-9c0e-e739d4551cfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1ca43c036694887a0f37a19e329273a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1ca43c036694887a0f37a19e329273a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1ca43c036694887a0f37a19e329273a.jpg", "file_size": 21561, "is_delete": false, "file_type": 1, "original_file_name": "LZ1407#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ca43c036694887a0f37a19e329273a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ca43c036694887a0f37a19e329273a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1ca43c036694887a0f37a19e329273a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1ca43c036694887a0f37a19e329273a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1ca43c036694887a0f37a19e329273a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpMDkuFK665os1TEMvvMhDQdV5o=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.007964+00 2025-12-09 10:15:54.007971+00 19771 LJH2045#4号色 SPMX-20240815315014 \N \N \N 1 \N [{"file_id": "442d4494-c9e8-46d5-980f-7c4a8127b085", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a67a48d7b1bd44e2b489dba262679056.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a67a48d7b1bd44e2b489dba262679056.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a67a48d7b1bd44e2b489dba262679056.jpg", "file_size": 41670, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67a48d7b1bd44e2b489dba262679056.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67a48d7b1bd44e2b489dba262679056.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a67a48d7b1bd44e2b489dba262679056.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a67a48d7b1bd44e2b489dba262679056.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a67a48d7b1bd44e2b489dba262679056.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3Gg5oDjhyLAlr_jAE-rrA9Bwnbk=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.011321+00 2025-12-09 10:15:54.011329+00 19772 CGH9451#桔红 SPMX-20240815315015 \N \N \N 1 \N [{"file_id": "b607c231-459c-46cc-a7d8-71eeba2503be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fc56f4168a14d25ba86e8e88193a13e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fc56f4168a14d25ba86e8e88193a13e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fc56f4168a14d25ba86e8e88193a13e.jpg", "file_size": 21188, "is_delete": false, "file_type": 1, "original_file_name": "CGH9451#桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc56f4168a14d25ba86e8e88193a13e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc56f4168a14d25ba86e8e88193a13e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fc56f4168a14d25ba86e8e88193a13e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fc56f4168a14d25ba86e8e88193a13e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fc56f4168a14d25ba86e8e88193a13e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OZUDxhh630zwAIK36ZhagBJLzL0=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.01467+00 2025-12-09 10:15:54.014676+00 19773 FX0003-A53#LWQ15 SPMX-20240815315006 \N \N \N 1 \N [{"file_id": "071c77e2-5b42-4af3-a1ad-f4581550a2bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae266c0fec6348849844ab03b16349eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae266c0fec6348849844ab03b16349eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae266c0fec6348849844ab03b16349eb.jpg", "file_size": 56096, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A53#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae266c0fec6348849844ab03b16349eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae266c0fec6348849844ab03b16349eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae266c0fec6348849844ab03b16349eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae266c0fec6348849844ab03b16349eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae266c0fec6348849844ab03b16349eb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khfhowQ6jPJ7Knbnks-Uag8SCv4=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.018005+00 2025-12-09 10:15:54.018011+00 19774 88058#兰色 SPMX-20240815315003 \N \N \N 1 \N [{"file_id": "bed11e8f-d05d-4885-922a-dd7bfadd9a21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1629ff3fa5f44e293584481961135b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1629ff3fa5f44e293584481961135b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1629ff3fa5f44e293584481961135b6.jpg", "file_size": 27292, "is_delete": false, "file_type": 1, "original_file_name": "88058#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1629ff3fa5f44e293584481961135b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1629ff3fa5f44e293584481961135b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1629ff3fa5f44e293584481961135b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1629ff3fa5f44e293584481961135b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1629ff3fa5f44e293584481961135b6.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WgBgMJR94uh6Jz2XZgVDoCqP3eY=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.021244+00 2025-12-09 10:15:54.021251+00 19775 JY-AD-120#7号绿色 SPMX-20240815315011 \N \N \N 1 \N [{"file_id": "874d32aa-af78-4824-8a1c-3c6364b96d6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41bd8466ac984be6b14b244b4b7ac4f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41bd8466ac984be6b14b244b4b7ac4f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41bd8466ac984be6b14b244b4b7ac4f1.jpg", "file_size": 23242, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#7号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bd8466ac984be6b14b244b4b7ac4f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bd8466ac984be6b14b244b4b7ac4f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41bd8466ac984be6b14b244b4b7ac4f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41bd8466ac984be6b14b244b4b7ac4f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41bd8466ac984be6b14b244b4b7ac4f1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdBYGJlNsKjGYVdxMarXi6QPXPU=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.024489+00 2025-12-09 10:15:54.024496+00 19776 DLR023FWE#-I SPMX-20240815315016 \N \N \N 1 \N [{"file_id": "38208337-67bc-4dcf-ae21-4caa402dce1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6cbaaac01b4437cb6f1aed6cb548291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6cbaaac01b4437cb6f1aed6cb548291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6cbaaac01b4437cb6f1aed6cb548291.jpg", "file_size": 16752, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-I.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cbaaac01b4437cb6f1aed6cb548291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cbaaac01b4437cb6f1aed6cb548291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6cbaaac01b4437cb6f1aed6cb548291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6cbaaac01b4437cb6f1aed6cb548291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6cbaaac01b4437cb6f1aed6cb548291.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5-pJv_DIx1y4W0G8if36_NAJxA=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.027662+00 2025-12-09 10:15:54.027669+00 19777 DLR023FWE#-H SPMX-20240815315005 \N \N \N 1 \N [{"file_id": "d1fb4899-fbec-4823-8a65-817f72d617b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efe311152b514b4292b18f03c7538191.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efe311152b514b4292b18f03c7538191.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efe311152b514b4292b18f03c7538191.jpg", "file_size": 20453, "is_delete": false, "file_type": 1, "original_file_name": "DLR023FWE#-H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe311152b514b4292b18f03c7538191.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe311152b514b4292b18f03c7538191.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efe311152b514b4292b18f03c7538191.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efe311152b514b4292b18f03c7538191.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efe311152b514b4292b18f03c7538191.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_IJJ_013GSt_g115xo4TCyO54U=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.030947+00 2025-12-09 10:15:54.030954+00 19778 2370FWF#湖绿 SPMX-20240815315008 \N \N \N 1 \N [{"file_id": "03501aee-f45f-4aa8-85aa-59be2e0ec546", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "431cd4cae5734f69af82032ad9ab2875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "431cd4cae5734f69af82032ad9ab2875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "431cd4cae5734f69af82032ad9ab2875.jpg", "file_size": 20269, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431cd4cae5734f69af82032ad9ab2875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431cd4cae5734f69af82032ad9ab2875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/431cd4cae5734f69af82032ad9ab2875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/431cd4cae5734f69af82032ad9ab2875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/431cd4cae5734f69af82032ad9ab2875.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HCjqK1SzUYjB7tLPkG-Kr9ffinA=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.034251+00 2025-12-09 10:15:54.034257+00 19779 1237#大红 SPMX-20240815315007 \N \N \N 1 \N [{"file_id": "55ee45d8-db00-4b89-9ee1-6aec55cf410d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c9529a1243c4e1091660f40a16c09b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c9529a1243c4e1091660f40a16c09b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c9529a1243c4e1091660f40a16c09b5.jpg", "file_size": 19135, "is_delete": false, "file_type": 1, "original_file_name": "1237#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9529a1243c4e1091660f40a16c09b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9529a1243c4e1091660f40a16c09b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c9529a1243c4e1091660f40a16c09b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c9529a1243c4e1091660f40a16c09b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c9529a1243c4e1091660f40a16c09b5.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjiDSvjxuX4hznNK0bWbX-Jyd6c=", "createTime": "2024-08-15 15:07:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.03758+00 2025-12-09 10:15:54.037586+00 19780 1237#彩兰 SPMX-20240815315017 \N \N \N 1 \N [{"file_id": "9d8f63dd-089b-4b88-b3de-06084f5e8b79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "530d63b6ded840a09f6372985d4bc54f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "530d63b6ded840a09f6372985d4bc54f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "530d63b6ded840a09f6372985d4bc54f.jpg", "file_size": 19686, "is_delete": false, "file_type": 1, "original_file_name": "1237#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/530d63b6ded840a09f6372985d4bc54f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/530d63b6ded840a09f6372985d4bc54f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/530d63b6ded840a09f6372985d4bc54f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/530d63b6ded840a09f6372985d4bc54f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/530d63b6ded840a09f6372985d4bc54f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khGlZZ17scTxtnHSWwxoJh8Udec=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.040809+00 2025-12-09 10:15:54.040815+00 19781 JY-AD-120#8号紫色 SPMX-20240815315023 \N \N \N 1 \N [{"file_id": "5494875a-95a9-479f-b838-9c28fa0d93b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eca43554b2a429d8f2e101611830c41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eca43554b2a429d8f2e101611830c41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eca43554b2a429d8f2e101611830c41.jpg", "file_size": 23375, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#8号紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca43554b2a429d8f2e101611830c41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca43554b2a429d8f2e101611830c41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eca43554b2a429d8f2e101611830c41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eca43554b2a429d8f2e101611830c41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eca43554b2a429d8f2e101611830c41.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wq4adRcwVX9-LBk0e375uSg2thw=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.044019+00 2025-12-09 10:15:54.044025+00 19782 LJH2045#原版色 SPMX-20240815315027 \N \N \N 1 \N [{"file_id": "dbafcd5b-28ac-4c19-89df-b37ae8f5e460", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d43d5747d04a495d9a00503234a693d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d43d5747d04a495d9a00503234a693d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d43d5747d04a495d9a00503234a693d1.jpg", "file_size": 40724, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43d5747d04a495d9a00503234a693d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43d5747d04a495d9a00503234a693d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43d5747d04a495d9a00503234a693d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d43d5747d04a495d9a00503234a693d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d43d5747d04a495d9a00503234a693d1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9585AxcCx69LClEiz0q7nqJMpU=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.047203+00 2025-12-09 10:15:54.047209+00 19783 HXF0008-29#粉色批布 SPMX-20240815315018 \N \N \N 1 \N [{"file_id": "6b1de0ca-1db9-494c-b8c4-0688f46e8b06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8646d2ce16324027b9e8a4b0688d1b7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8646d2ce16324027b9e8a4b0688d1b7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8646d2ce16324027b9e8a4b0688d1b7e.jpg", "file_size": 8244, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-29#粉色批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646d2ce16324027b9e8a4b0688d1b7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646d2ce16324027b9e8a4b0688d1b7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8646d2ce16324027b9e8a4b0688d1b7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8646d2ce16324027b9e8a4b0688d1b7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8646d2ce16324027b9e8a4b0688d1b7e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:10TXIErbYef8bVS6J9T6l52rHBY=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.050398+00 2025-12-09 10:15:54.050405+00 19784 FX0003-A54#桔色LWQ15 SPMX-20240815315019 \N \N \N 1 \N [{"file_id": "fa0d7e4f-73de-4ce9-bc25-e89310642de6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6eda36d130b4282b57a2ea1fcd5990f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6eda36d130b4282b57a2ea1fcd5990f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6eda36d130b4282b57a2ea1fcd5990f.jpg", "file_size": 37635, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A54#桔色LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6eda36d130b4282b57a2ea1fcd5990f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6eda36d130b4282b57a2ea1fcd5990f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6eda36d130b4282b57a2ea1fcd5990f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6eda36d130b4282b57a2ea1fcd5990f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6eda36d130b4282b57a2ea1fcd5990f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1GHNPF9SxtTZ3Dt-h03kwBK9RE=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.053564+00 2025-12-09 10:15:54.053569+00 19785 LZ1407#童装T3号色 SPMX-20240815315021 \N \N \N 1 \N [{"file_id": "f26a5aac-90f0-4506-99ae-d0977bb16355", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "015d926336554ca0a95b08d6a481442b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "015d926336554ca0a95b08d6a481442b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "015d926336554ca0a95b08d6a481442b.jpg", "file_size": 21321, "is_delete": false, "file_type": 1, "original_file_name": "LZ1407#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015d926336554ca0a95b08d6a481442b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015d926336554ca0a95b08d6a481442b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/015d926336554ca0a95b08d6a481442b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/015d926336554ca0a95b08d6a481442b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/015d926336554ca0a95b08d6a481442b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SIBA8Fi8jlRcEsL4b3LTpNBTGjs=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.056738+00 2025-12-09 10:15:54.056744+00 19786 88058#大红 SPMX-20240815315024 \N \N \N 1 \N [{"file_id": "34faf6ce-db17-4ec8-9106-d60b27856804", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75c70f2cc5d640aea32a06902076ecb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75c70f2cc5d640aea32a06902076ecb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75c70f2cc5d640aea32a06902076ecb6.jpg", "file_size": 29355, "is_delete": false, "file_type": 1, "original_file_name": "88058#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c70f2cc5d640aea32a06902076ecb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c70f2cc5d640aea32a06902076ecb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75c70f2cc5d640aea32a06902076ecb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75c70f2cc5d640aea32a06902076ecb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75c70f2cc5d640aea32a06902076ecb6.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFuVq4KWfTqGsUKVnIzHz5KFD0M=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.059864+00 2025-12-09 10:15:54.05987+00 19787 0022-1FWE#粉底VS-D3 SPMX-20240815315020 \N \N \N 1 \N [{"file_id": "e2633d3b-25f6-4098-86c6-53cc01ebdf2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "096e17708bf24c529cd4a59b64ad8b0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "096e17708bf24c529cd4a59b64ad8b0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "096e17708bf24c529cd4a59b64ad8b0e.jpg", "file_size": 17217, "is_delete": false, "file_type": 1, "original_file_name": "0022-1FWE#粉底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096e17708bf24c529cd4a59b64ad8b0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096e17708bf24c529cd4a59b64ad8b0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/096e17708bf24c529cd4a59b64ad8b0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/096e17708bf24c529cd4a59b64ad8b0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/096e17708bf24c529cd4a59b64ad8b0e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_zKtWjtL8BclOhi6_Oh5QROSFTU=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.063117+00 2025-12-09 10:15:54.063123+00 19788 DLSK045FWE#-A SPMX-20240815315026 \N \N \N 1 \N [{"file_id": "7ac1fec8-1006-4587-99aa-5b6acd0e7f38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25328d7c20f64133951f11d2542846b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25328d7c20f64133951f11d2542846b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25328d7c20f64133951f11d2542846b1.jpg", "file_size": 24070, "is_delete": false, "file_type": 1, "original_file_name": "DLSK045FWE#-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25328d7c20f64133951f11d2542846b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25328d7c20f64133951f11d2542846b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25328d7c20f64133951f11d2542846b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25328d7c20f64133951f11d2542846b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25328d7c20f64133951f11d2542846b1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK-b2H6srhBHN4I-dHfBkB9qEsI=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.066246+00 2025-12-09 10:15:54.066253+00 19789 CGH9451#紫色 SPMX-20240815315025 \N \N \N 1 \N [{"file_id": "fd6c26e4-4953-4d58-badf-be18b6184e3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ac36ee9ddc84f30901e9fdcedb3497f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ac36ee9ddc84f30901e9fdcedb3497f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ac36ee9ddc84f30901e9fdcedb3497f.jpg", "file_size": 22569, "is_delete": false, "file_type": 1, "original_file_name": "CGH9451#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac36ee9ddc84f30901e9fdcedb3497f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac36ee9ddc84f30901e9fdcedb3497f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ac36ee9ddc84f30901e9fdcedb3497f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ac36ee9ddc84f30901e9fdcedb3497f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ac36ee9ddc84f30901e9fdcedb3497f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:07xNLYfEic_iDqDMBd5X5PBuGmY=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.069658+00 2025-12-09 10:15:54.069666+00 19790 2370FWF#紫红 SPMX-20240815315022 \N \N \N 1 \N [{"file_id": "e4973a48-d15a-4aab-9b89-5000c2036bad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45fdd96fd79141f9814db28e55292a09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45fdd96fd79141f9814db28e55292a09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45fdd96fd79141f9814db28e55292a09.jpg", "file_size": 23244, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#紫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fdd96fd79141f9814db28e55292a09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fdd96fd79141f9814db28e55292a09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fdd96fd79141f9814db28e55292a09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45fdd96fd79141f9814db28e55292a09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45fdd96fd79141f9814db28e55292a09.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pTUZo1H4NE6Huo_6Jbo5yJwwuWE=", "createTime": "2024-08-15 15:07:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.073282+00 2025-12-09 10:15:54.073288+00 19791 2370FWF#绿色 SPMX-20240815315033 \N \N \N 1 \N [{"file_id": "20d00b1a-a208-4f38-8d87-76baae14fd37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f20f9332eff4261aa40b69a820128f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f20f9332eff4261aa40b69a820128f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f20f9332eff4261aa40b69a820128f4.jpg", "file_size": 18894, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f20f9332eff4261aa40b69a820128f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f20f9332eff4261aa40b69a820128f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f20f9332eff4261aa40b69a820128f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f20f9332eff4261aa40b69a820128f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f20f9332eff4261aa40b69a820128f4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UcqGy2CO7YmJLOg4bzH8ZF1QDgI=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.076863+00 2025-12-09 10:15:54.076869+00 19792 LZ1407#童装T4号色 SPMX-20240815315031 \N \N \N 1 \N [{"file_id": "e02111b9-a8f0-4b70-ae84-6a2c95fa11d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c2d5cf744704757a7092db9bb4d4c2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c2d5cf744704757a7092db9bb4d4c2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c2d5cf744704757a7092db9bb4d4c2b.jpg", "file_size": 21728, "is_delete": false, "file_type": 1, "original_file_name": "LZ1407#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2d5cf744704757a7092db9bb4d4c2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2d5cf744704757a7092db9bb4d4c2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2d5cf744704757a7092db9bb4d4c2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c2d5cf744704757a7092db9bb4d4c2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c2d5cf744704757a7092db9bb4d4c2b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2EpG5qQ9BqFKzl7WDxJRbc7t_Rk=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.080359+00 2025-12-09 10:15:54.080366+00 19793 0022-1FWE#黑底VS-D3 SPMX-20240815315032 \N \N \N 1 \N [{"file_id": "eb015c5b-c5fb-4ccd-978e-0920c722eda1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cfa6470233f40979dce22f292e7a729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cfa6470233f40979dce22f292e7a729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cfa6470233f40979dce22f292e7a729.jpg", "file_size": 21195, "is_delete": false, "file_type": 1, "original_file_name": "0022-1FWE#黑底VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfa6470233f40979dce22f292e7a729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfa6470233f40979dce22f292e7a729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cfa6470233f40979dce22f292e7a729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cfa6470233f40979dce22f292e7a729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cfa6470233f40979dce22f292e7a729.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxpz1EmM9f76161edNqkJ0gLunE=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.083751+00 2025-12-09 10:15:54.083758+00 19794 HXF0008-3#杏色 SPMX-20240815315028 \N \N \N 1 \N [{"file_id": "7a79c3b4-f8d8-4ab1-81fd-df832cbe59d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c4fb625e0d642189b093ec501798c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c4fb625e0d642189b093ec501798c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c4fb625e0d642189b093ec501798c13.jpg", "file_size": 23064, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-3#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4fb625e0d642189b093ec501798c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4fb625e0d642189b093ec501798c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c4fb625e0d642189b093ec501798c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c4fb625e0d642189b093ec501798c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c4fb625e0d642189b093ec501798c13.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4bbrJZTmo0RjNTYMquS0eIq4x3A=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.087205+00 2025-12-09 10:15:54.087212+00 19795 1237#粉色 SPMX-20240815315029 \N \N \N 1 \N [{"file_id": "0665622d-001b-492b-a62c-80e503128070", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a297050fd56c4f80a0d3fc6dee42e321.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a297050fd56c4f80a0d3fc6dee42e321.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a297050fd56c4f80a0d3fc6dee42e321.jpg", "file_size": 20508, "is_delete": false, "file_type": 1, "original_file_name": "1237#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a297050fd56c4f80a0d3fc6dee42e321.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a297050fd56c4f80a0d3fc6dee42e321.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a297050fd56c4f80a0d3fc6dee42e321.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a297050fd56c4f80a0d3fc6dee42e321.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a297050fd56c4f80a0d3fc6dee42e321.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p8cYs5HGsf8nxYmHxsZcQ3hcgLs=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.090531+00 2025-12-09 10:15:54.090537+00 19796 88058#玫红 SPMX-20240815315034 \N \N \N 1 \N [{"file_id": "deba1eea-2cd7-45bb-bcc9-a2069659f9cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17ce2759e84647a3aaba8f9531a89c94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17ce2759e84647a3aaba8f9531a89c94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17ce2759e84647a3aaba8f9531a89c94.jpg", "file_size": 26195, "is_delete": false, "file_type": 1, "original_file_name": "88058#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ce2759e84647a3aaba8f9531a89c94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ce2759e84647a3aaba8f9531a89c94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17ce2759e84647a3aaba8f9531a89c94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17ce2759e84647a3aaba8f9531a89c94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17ce2759e84647a3aaba8f9531a89c94.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OssFi5_Po4tTzpjOW5gQgsBzv9c=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.093964+00 2025-12-09 10:15:54.09397+00 19797 FX0003-A55#LWQ15 SPMX-20240815315030 \N \N \N 1 \N [{"file_id": "3d2a6419-11c3-4cc3-94b8-63bdc58c6a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab524b81f7c740aa88dddfd61dcaaf81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab524b81f7c740aa88dddfd61dcaaf81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab524b81f7c740aa88dddfd61dcaaf81.jpg", "file_size": 75459, "is_delete": false, "file_type": 1, "original_file_name": "FX0003-A55#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab524b81f7c740aa88dddfd61dcaaf81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab524b81f7c740aa88dddfd61dcaaf81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab524b81f7c740aa88dddfd61dcaaf81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab524b81f7c740aa88dddfd61dcaaf81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab524b81f7c740aa88dddfd61dcaaf81.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1ZI8UAXgfrcs3w4mVtZeDyw89Q=", "createTime": "2024-08-15 15:07:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.097347+00 2025-12-09 10:15:54.097354+00 19798 FX0003 SPMX-20240815315041 \N \N \N 1 \N [{"file_id": "561b30c7-173d-4bf3-9282-4adbe08fa6d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b680a3a4b5c44202aa5e708c076950af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b680a3a4b5c44202aa5e708c076950af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b680a3a4b5c44202aa5e708c076950af.jpg", "file_size": 72932, "is_delete": false, "file_type": 1, "original_file_name": "FX0003.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b680a3a4b5c44202aa5e708c076950af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b680a3a4b5c44202aa5e708c076950af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b680a3a4b5c44202aa5e708c076950af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b680a3a4b5c44202aa5e708c076950af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b680a3a4b5c44202aa5e708c076950af.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:st3DpGhT4iMB2P5waLEm639WqEY=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.1008+00 2025-12-09 10:15:54.100807+00 19799 88058#黑色 SPMX-20240815315042 \N \N \N 1 \N [{"file_id": "989acfa0-1b3b-4436-9091-14582e5a48bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cf5f48931584a8693639dd5c4e1d96d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cf5f48931584a8693639dd5c4e1d96d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cf5f48931584a8693639dd5c4e1d96d.jpg", "file_size": 29762, "is_delete": false, "file_type": 1, "original_file_name": "88058#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf5f48931584a8693639dd5c4e1d96d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf5f48931584a8693639dd5c4e1d96d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cf5f48931584a8693639dd5c4e1d96d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cf5f48931584a8693639dd5c4e1d96d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cf5f48931584a8693639dd5c4e1d96d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCsRMllmHRJ3X8F0VA7YUuck34k=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.104239+00 2025-12-09 10:15:54.104245+00 19800 JY-AD-120#号蓝色 SPMX-20240815315037 \N \N \N 1 \N [{"file_id": "af24cdde-f629-45d1-a77c-03ec30964978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ab3216aabee47bb98f9701de4a638a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ab3216aabee47bb98f9701de4a638a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ab3216aabee47bb98f9701de4a638a1.jpg", "file_size": 23219, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-120#号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab3216aabee47bb98f9701de4a638a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab3216aabee47bb98f9701de4a638a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ab3216aabee47bb98f9701de4a638a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ab3216aabee47bb98f9701de4a638a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ab3216aabee47bb98f9701de4a638a1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dJ2l0hHP6fXrbpOWi1oR6IWoP0Y=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.10766+00 2025-12-09 10:15:54.107666+00 19801 2370FWF#黄色 SPMX-20240815315039 \N \N \N 1 \N [{"file_id": "12266edb-39cc-45a5-b57f-f67f07346787", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6f000bb606b45a2a3f8d90adc79749d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6f000bb606b45a2a3f8d90adc79749d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6f000bb606b45a2a3f8d90adc79749d.jpg", "file_size": 19773, "is_delete": false, "file_type": 1, "original_file_name": "2370FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f000bb606b45a2a3f8d90adc79749d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f000bb606b45a2a3f8d90adc79749d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6f000bb606b45a2a3f8d90adc79749d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6f000bb606b45a2a3f8d90adc79749d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6f000bb606b45a2a3f8d90adc79749d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-s9RRIeuQZnXsHO8y1beabanHTA=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.111098+00 2025-12-09 10:15:54.111104+00 19802 CGH9451#黄色 SPMX-20240815315035 \N \N \N 1 \N [{"file_id": "56ef8bde-37aa-4f8a-9673-39c11dffb287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e4e72e0e6d74a8db94913c92ce3255d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e4e72e0e6d74a8db94913c92ce3255d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e4e72e0e6d74a8db94913c92ce3255d.jpg", "file_size": 22891, "is_delete": false, "file_type": 1, "original_file_name": "CGH9451#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4e72e0e6d74a8db94913c92ce3255d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4e72e0e6d74a8db94913c92ce3255d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4e72e0e6d74a8db94913c92ce3255d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e4e72e0e6d74a8db94913c92ce3255d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e4e72e0e6d74a8db94913c92ce3255d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kn9FhEGtEO6zSR8C3G2QIrUCUKY=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.114451+00 2025-12-09 10:15:54.114457+00 19803 LZ1407#童装T5号色 SPMX-20240815315040 \N \N \N 1 \N [{"file_id": "efd4c537-3552-4d8f-8542-2d21998960b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ce1fb513613471487256c5cd0e747d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ce1fb513613471487256c5cd0e747d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ce1fb513613471487256c5cd0e747d2.jpg", "file_size": 19372, "is_delete": false, "file_type": 1, "original_file_name": "LZ1407#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1fb513613471487256c5cd0e747d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1fb513613471487256c5cd0e747d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ce1fb513613471487256c5cd0e747d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ce1fb513613471487256c5cd0e747d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ce1fb513613471487256c5cd0e747d2.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9vi6NiihJTgCaq8tXC39JN8iOQ=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.118066+00 2025-12-09 10:15:54.118072+00 19804 1237#酒红 SPMX-20240815315043 \N \N \N 1 \N [{"file_id": "77fd0694-e541-4304-a64c-9661a4ee4612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f7cd1394066478cb5fc37c57956658e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f7cd1394066478cb5fc37c57956658e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f7cd1394066478cb5fc37c57956658e.jpg", "file_size": 18808, "is_delete": false, "file_type": 1, "original_file_name": "1237#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7cd1394066478cb5fc37c57956658e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7cd1394066478cb5fc37c57956658e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7cd1394066478cb5fc37c57956658e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f7cd1394066478cb5fc37c57956658e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f7cd1394066478cb5fc37c57956658e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEtvmgAhhZEFgwKi1j4YlEtxAC0=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.152551+00 2025-12-09 10:15:54.152557+00 19814 2371FWF#原版灰 SPMX-20240815315050 \N \N \N 1 \N [{"file_id": "7d5a6d21-a554-459e-bceb-b7186d0589de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31eb9daf5f4d4650b47c01b73e6558d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31eb9daf5f4d4650b47c01b73e6558d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31eb9daf5f4d4650b47c01b73e6558d1.jpg", "file_size": 12784, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#原版灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31eb9daf5f4d4650b47c01b73e6558d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31eb9daf5f4d4650b47c01b73e6558d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31eb9daf5f4d4650b47c01b73e6558d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31eb9daf5f4d4650b47c01b73e6558d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31eb9daf5f4d4650b47c01b73e6558d1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lZbt561apnpOuntzYOacoCukUfU=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.121702+00 2025-12-09 10:15:54.121721+00 19805 LJH2045-1#RC23-墨绿 SPMX-20240815315036 \N \N \N 1 \N [{"file_id": "2d73fdef-9595-46d3-b7fb-27dc9c3f0dcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da2741ea2202499bb5ceb421db99a427.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da2741ea2202499bb5ceb421db99a427.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da2741ea2202499bb5ceb421db99a427.jpg", "file_size": 57631, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-1#RC23-墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2741ea2202499bb5ceb421db99a427.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2741ea2202499bb5ceb421db99a427.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da2741ea2202499bb5ceb421db99a427.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da2741ea2202499bb5ceb421db99a427.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da2741ea2202499bb5ceb421db99a427.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iViD8vbBZKmH18QpGg7n94VU_cE=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.125275+00 2025-12-09 10:15:54.125282+00 19806 HXF0008-3#蓝色 SPMX-20240815315044 \N \N \N 1 \N [{"file_id": "fd89b62b-3a36-49eb-8d38-921efe918dff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3feeeb9a69c24ec199d97ef07df7d62f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3feeeb9a69c24ec199d97ef07df7d62f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3feeeb9a69c24ec199d97ef07df7d62f.jpg", "file_size": 22488, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-3#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feeeb9a69c24ec199d97ef07df7d62f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feeeb9a69c24ec199d97ef07df7d62f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3feeeb9a69c24ec199d97ef07df7d62f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3feeeb9a69c24ec199d97ef07df7d62f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3feeeb9a69c24ec199d97ef07df7d62f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oskRlQWf-uMQnaGowoL0gfRyfoU=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.128693+00 2025-12-09 10:15:54.1287+00 19807 DLSK045FWE#-B SPMX-20240815315038 \N \N \N 1 \N [{"file_id": "f019070c-b4ae-485c-8c7b-b3c44fcfca39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5d2174b2e5c45c8b28090a56ab6b62f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5d2174b2e5c45c8b28090a56ab6b62f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5d2174b2e5c45c8b28090a56ab6b62f.jpg", "file_size": 23121, "is_delete": false, "file_type": 1, "original_file_name": "DLSK045FWE#-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d2174b2e5c45c8b28090a56ab6b62f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d2174b2e5c45c8b28090a56ab6b62f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5d2174b2e5c45c8b28090a56ab6b62f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5d2174b2e5c45c8b28090a56ab6b62f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5d2174b2e5c45c8b28090a56ab6b62f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qj6agR3KCqmyhTE5PUn4Hv5mRFI=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.13209+00 2025-12-09 10:15:54.132097+00 19808 FX0003X#WJC22 SPMX-20240815315053 \N \N \N 1 \N [{"file_id": "82b6f94c-08b5-4c0e-849c-475f5a22af65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a1bdd10bfdb4adf91159974bb092c4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a1bdd10bfdb4adf91159974bb092c4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a1bdd10bfdb4adf91159974bb092c4d.jpg", "file_size": 15546, "is_delete": false, "file_type": 1, "original_file_name": "FX0003X#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1bdd10bfdb4adf91159974bb092c4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1bdd10bfdb4adf91159974bb092c4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a1bdd10bfdb4adf91159974bb092c4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a1bdd10bfdb4adf91159974bb092c4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a1bdd10bfdb4adf91159974bb092c4d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iT3GrQbd6Wgtowt9xpmpBbnTsuU=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.135485+00 2025-12-09 10:15:54.135491+00 19809 DLSK045FWE#-C SPMX-20240815315048 \N \N \N 1 \N [{"file_id": "4274c75d-c1e5-4032-a419-06bf5fe57b0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36b22dc23dd8429e9335e47164446b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36b22dc23dd8429e9335e47164446b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36b22dc23dd8429e9335e47164446b9c.jpg", "file_size": 18981, "is_delete": false, "file_type": 1, "original_file_name": "DLSK045FWE#-C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b22dc23dd8429e9335e47164446b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b22dc23dd8429e9335e47164446b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36b22dc23dd8429e9335e47164446b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36b22dc23dd8429e9335e47164446b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36b22dc23dd8429e9335e47164446b9c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FsVy0ZCrrPIJhMw_9ETZmw-tuaw=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.138913+00 2025-12-09 10:15:54.138919+00 19810 LJH2045-1#RC23-大红 SPMX-20240815315049 \N \N \N 1 \N [{"file_id": "a0e3477f-d9e9-4598-9f43-d3818f187bb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f14d9d0349a04af0ba8d36e1311b1daf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f14d9d0349a04af0ba8d36e1311b1daf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f14d9d0349a04af0ba8d36e1311b1daf.jpg", "file_size": 60829, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-1#RC23-大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14d9d0349a04af0ba8d36e1311b1daf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14d9d0349a04af0ba8d36e1311b1daf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f14d9d0349a04af0ba8d36e1311b1daf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f14d9d0349a04af0ba8d36e1311b1daf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f14d9d0349a04af0ba8d36e1311b1daf.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nC8tnX86WOk-wSZbqfI5eLjykss=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.142336+00 2025-12-09 10:15:54.142346+00 19811 DLSK045FWE#-D SPMX-20240815315059 \N \N \N 1 \N [{"file_id": "b345c661-3dac-4256-a560-2f00bcf7b7e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4ead825588b421c8077bd87ff1364fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4ead825588b421c8077bd87ff1364fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4ead825588b421c8077bd87ff1364fb.jpg", "file_size": 16791, "is_delete": false, "file_type": 1, "original_file_name": "DLSK045FWE#-D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4ead825588b421c8077bd87ff1364fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4ead825588b421c8077bd87ff1364fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4ead825588b421c8077bd87ff1364fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4ead825588b421c8077bd87ff1364fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4ead825588b421c8077bd87ff1364fb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kRmyFOPQRfsgre7D6qeTkOCcfmE=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.145764+00 2025-12-09 10:15:54.14577+00 19812 LZ1408#童装T1号色 SPMX-20240815315051 \N \N \N 1 \N [{"file_id": "15f7d204-07d5-4ae8-aada-46f52a5c57d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81a0baca2ab94ccb9e2446bf947964dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81a0baca2ab94ccb9e2446bf947964dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81a0baca2ab94ccb9e2446bf947964dd.jpg", "file_size": 19906, "is_delete": false, "file_type": 1, "original_file_name": "LZ1408#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0baca2ab94ccb9e2446bf947964dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0baca2ab94ccb9e2446bf947964dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a0baca2ab94ccb9e2446bf947964dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81a0baca2ab94ccb9e2446bf947964dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81a0baca2ab94ccb9e2446bf947964dd.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EPZCvF-BOfKHqMh_Ouwup9WSuMw=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.149165+00 2025-12-09 10:15:54.149172+00 19813 CGH9540#彩兰 SPMX-20240815315046 \N \N \N 1 \N [{"file_id": "3fae59d8-e96e-49a2-8456-ebd1bf0ebf04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d05c82c21df849d9b3d30cf9149b0678.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d05c82c21df849d9b3d30cf9149b0678.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d05c82c21df849d9b3d30cf9149b0678.jpg", "file_size": 25850, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05c82c21df849d9b3d30cf9149b0678.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05c82c21df849d9b3d30cf9149b0678.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d05c82c21df849d9b3d30cf9149b0678.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d05c82c21df849d9b3d30cf9149b0678.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d05c82c21df849d9b3d30cf9149b0678.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VizsvKqOVzXneTHMIQE7Noeg3Wg=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.155919+00 2025-12-09 10:15:54.155929+00 19815 HXF0008-30#WJC22 SPMX-20240815315054 \N \N \N 1 \N [{"file_id": "a4af3f76-e066-4b06-bf3e-df6e27e2c36c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "defb015a05d34e2fb7d6b3fe046e1b16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "defb015a05d34e2fb7d6b3fe046e1b16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "defb015a05d34e2fb7d6b3fe046e1b16.jpg", "file_size": 15214, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-30#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defb015a05d34e2fb7d6b3fe046e1b16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defb015a05d34e2fb7d6b3fe046e1b16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/defb015a05d34e2fb7d6b3fe046e1b16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/defb015a05d34e2fb7d6b3fe046e1b16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/defb015a05d34e2fb7d6b3fe046e1b16.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZLoWD0HtnjjzXp_--DxolRwT7zI=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.159325+00 2025-12-09 10:15:54.159331+00 19816 JY-AD-122#2号草绿色 SPMX-20240815315057 \N \N \N 1 \N [{"file_id": "7371e516-562b-4ee7-a994-a4d0f1c7d144", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb62f8ed90614c6da9a8d0f731fb2133.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb62f8ed90614c6da9a8d0f731fb2133.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb62f8ed90614c6da9a8d0f731fb2133.jpg", "file_size": 20461, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-122#2号草绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb62f8ed90614c6da9a8d0f731fb2133.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb62f8ed90614c6da9a8d0f731fb2133.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb62f8ed90614c6da9a8d0f731fb2133.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb62f8ed90614c6da9a8d0f731fb2133.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb62f8ed90614c6da9a8d0f731fb2133.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-godTk0eWDDf-JNqXxvTUys3_j8=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.162717+00 2025-12-09 10:15:54.162723+00 19817 1238#RC23 SPMX-20240815315058 \N \N \N 1 \N [{"file_id": "f9ef842b-442f-423c-9858-083f8181e591", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94c0fc219de447ca804e80549822cd23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94c0fc219de447ca804e80549822cd23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94c0fc219de447ca804e80549822cd23.jpg", "file_size": 63102, "is_delete": false, "file_type": 1, "original_file_name": "1238#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c0fc219de447ca804e80549822cd23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c0fc219de447ca804e80549822cd23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94c0fc219de447ca804e80549822cd23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94c0fc219de447ca804e80549822cd23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94c0fc219de447ca804e80549822cd23.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIvUzN9KCNXyodtkZhHkcOJ5tdc=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.166082+00 2025-12-09 10:15:54.166087+00 19818 JY-AD-122#1号玫红 SPMX-20240815315047 \N \N \N 1 \N [{"file_id": "85ed4bc6-1284-4292-9c79-2e6b821cdb1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c8977c3b3ac45f3ac838196f1a9e0ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c8977c3b3ac45f3ac838196f1a9e0ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c8977c3b3ac45f3ac838196f1a9e0ac.jpg", "file_size": 17106, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-122#1号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c8977c3b3ac45f3ac838196f1a9e0ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c8977c3b3ac45f3ac838196f1a9e0ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c8977c3b3ac45f3ac838196f1a9e0ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c8977c3b3ac45f3ac838196f1a9e0ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c8977c3b3ac45f3ac838196f1a9e0ac.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vmMLiYsGj_5jOcp5RAlh8rdXr1o=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.169379+00 2025-12-09 10:15:54.16939+00 19819 CGH9540#枣红 SPMX-20240815315055 \N \N \N 1 \N [{"file_id": "123b495f-f738-4f04-8ea7-6c5dedcfd2ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef9a096802b4418ab325b47acb4946ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef9a096802b4418ab325b47acb4946ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef9a096802b4418ab325b47acb4946ba.jpg", "file_size": 26188, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9a096802b4418ab325b47acb4946ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9a096802b4418ab325b47acb4946ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef9a096802b4418ab325b47acb4946ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef9a096802b4418ab325b47acb4946ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef9a096802b4418ab325b47acb4946ba.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NN4kx2EtHu8jOXkxBXJVo2iDXo8=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.17282+00 2025-12-09 10:15:54.172826+00 19820 0022-2FWE#VS-D3 SPMX-20240815315056 \N \N \N 1 \N [{"file_id": "ecab9ed5-a0ab-4303-bf9b-af8f1b236c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3b8902eeb9549779221ee2a8b96e4f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3b8902eeb9549779221ee2a8b96e4f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3b8902eeb9549779221ee2a8b96e4f1.jpg", "file_size": 19277, "is_delete": false, "file_type": 1, "original_file_name": "0022-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b8902eeb9549779221ee2a8b96e4f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b8902eeb9549779221ee2a8b96e4f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b8902eeb9549779221ee2a8b96e4f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3b8902eeb9549779221ee2a8b96e4f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3b8902eeb9549779221ee2a8b96e4f1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bjNbyKEewYji1QUBmW7QBVBB8FY=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.176243+00 2025-12-09 10:15:54.17625+00 19821 88059#兰色 SPMX-20240815315052 \N \N \N 1 \N [{"file_id": "6b3df71d-b9d5-4d69-9707-9b30029c8f38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac2622861c634d43af08c9ccc1023adc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac2622861c634d43af08c9ccc1023adc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac2622861c634d43af08c9ccc1023adc.jpg", "file_size": 22634, "is_delete": false, "file_type": 1, "original_file_name": "88059#兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2622861c634d43af08c9ccc1023adc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2622861c634d43af08c9ccc1023adc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac2622861c634d43af08c9ccc1023adc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac2622861c634d43af08c9ccc1023adc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac2622861c634d43af08c9ccc1023adc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TTtVGRIpCC7SN7INrpPCtsebjz8=", "createTime": "2024-08-15 15:07:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.179646+00 2025-12-09 10:15:54.179653+00 19822 0022-1FWF#V5曲线 SPMX-20240815315045 \N \N \N 1 \N [{"file_id": "1ba9ae02-33eb-4693-9fde-71f0106dafe4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "315cb0f9833b4b218fd7a62a22e3ca7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "315cb0f9833b4b218fd7a62a22e3ca7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "315cb0f9833b4b218fd7a62a22e3ca7c.jpg", "file_size": 23818, "is_delete": false, "file_type": 1, "original_file_name": "0022-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cb0f9833b4b218fd7a62a22e3ca7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cb0f9833b4b218fd7a62a22e3ca7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/315cb0f9833b4b218fd7a62a22e3ca7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/315cb0f9833b4b218fd7a62a22e3ca7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/315cb0f9833b4b218fd7a62a22e3ca7c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQcEeyHr0_lIv_FR7P4yPNqWAuY=", "createTime": "2024-08-15 15:07:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.183039+00 2025-12-09 10:15:54.183046+00 19823 LZ1408#童装T2号色 SPMX-20240815315060 \N \N \N 1 \N [{"file_id": "77906663-1df3-40fa-b95f-79ab010127df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505f1fad45424eb7aa28e2ba8fd421e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505f1fad45424eb7aa28e2ba8fd421e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505f1fad45424eb7aa28e2ba8fd421e9.jpg", "file_size": 19599, "is_delete": false, "file_type": 1, "original_file_name": "LZ1408#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505f1fad45424eb7aa28e2ba8fd421e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505f1fad45424eb7aa28e2ba8fd421e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505f1fad45424eb7aa28e2ba8fd421e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505f1fad45424eb7aa28e2ba8fd421e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505f1fad45424eb7aa28e2ba8fd421e9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fI5EdMi9qa94dkeWAh4lHQ7eU_c=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.186488+00 2025-12-09 10:15:54.186494+00 19824 0022-2FWF#V5曲线 SPMX-20240815315065 \N \N \N 1 \N [{"file_id": "9b675097-512a-487f-9c1d-506446ebd1b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "803908ae48dc44fc9cca2b154108a368.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "803908ae48dc44fc9cca2b154108a368.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "803908ae48dc44fc9cca2b154108a368.jpg", "file_size": 23244, "is_delete": false, "file_type": 1, "original_file_name": "0022-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803908ae48dc44fc9cca2b154108a368.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803908ae48dc44fc9cca2b154108a368.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/803908ae48dc44fc9cca2b154108a368.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/803908ae48dc44fc9cca2b154108a368.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/803908ae48dc44fc9cca2b154108a368.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aFuwKg8Ut3wEWAE3pypP0wyJY8M=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.189878+00 2025-12-09 10:15:54.189884+00 19825 DLT-332#前幅亮黄色2XL码 SPMX-20240815315066 \N \N \N 1 \N [{"file_id": "5dbafebb-815c-4912-8a25-ed8f95588a78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dfc8653b2494e8aa3ba06a39cd7a58a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dfc8653b2494e8aa3ba06a39cd7a58a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dfc8653b2494e8aa3ba06a39cd7a58a.jpg", "file_size": 15806, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅亮黄色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfc8653b2494e8aa3ba06a39cd7a58a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfc8653b2494e8aa3ba06a39cd7a58a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dfc8653b2494e8aa3ba06a39cd7a58a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dfc8653b2494e8aa3ba06a39cd7a58a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dfc8653b2494e8aa3ba06a39cd7a58a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c09nKmAtmrpumQkjtpbFHg3KW1U=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.193284+00 2025-12-09 10:15:54.193291+00 19826 88059#橙色 SPMX-20240815315073 \N \N \N 1 \N [{"file_id": "d2c4feee-21e7-4014-8859-d573e0214c9a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "498b4147346348e89b1e09276683eeec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "498b4147346348e89b1e09276683eeec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "498b4147346348e89b1e09276683eeec.jpg", "file_size": 20157, "is_delete": false, "file_type": 1, "original_file_name": "88059#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b4147346348e89b1e09276683eeec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b4147346348e89b1e09276683eeec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/498b4147346348e89b1e09276683eeec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/498b4147346348e89b1e09276683eeec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/498b4147346348e89b1e09276683eeec.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tw7cp78RsKKw1SLmdjTdyCdjpSg=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.196681+00 2025-12-09 10:15:54.196688+00 19827 LJH2045-2#RC23-紫色 SPMX-20240815315072 \N \N \N 1 \N [{"file_id": "e0b5335b-7f8a-48d3-8f21-446d4869ae08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d64d5adebce403facbc4bb02d040ed4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d64d5adebce403facbc4bb02d040ed4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d64d5adebce403facbc4bb02d040ed4.jpg", "file_size": 59781, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-2#RC23-紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d64d5adebce403facbc4bb02d040ed4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d64d5adebce403facbc4bb02d040ed4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d64d5adebce403facbc4bb02d040ed4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d64d5adebce403facbc4bb02d040ed4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d64d5adebce403facbc4bb02d040ed4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7xi_NXY_jMf0hwi9JI6UKMfadrI=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.200525+00 2025-12-09 10:15:54.200532+00 19828 1238#VS-D3 SPMX-20240815315069 \N \N \N 1 \N [{"file_id": "0d912c43-f111-4137-8877-3ebedb2dd16e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a08ff2df70be45e59ab6a5e8472d96ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a08ff2df70be45e59ab6a5e8472d96ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a08ff2df70be45e59ab6a5e8472d96ac.jpg", "file_size": 21665, "is_delete": false, "file_type": 1, "original_file_name": "1238#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ff2df70be45e59ab6a5e8472d96ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ff2df70be45e59ab6a5e8472d96ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a08ff2df70be45e59ab6a5e8472d96ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a08ff2df70be45e59ab6a5e8472d96ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a08ff2df70be45e59ab6a5e8472d96ac.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_5TGBprqo8izgVkzLH4tc-MbFh0=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.204018+00 2025-12-09 10:15:54.204025+00 19829 FX001# SPMX-20240815315062 \N \N \N 1 \N [{"file_id": "3cfe8462-a4b6-449a-8fa3-141c6d234f0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf06215b03194dc89fe6edcff2da47b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf06215b03194dc89fe6edcff2da47b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf06215b03194dc89fe6edcff2da47b4.jpg", "file_size": 14010, "is_delete": false, "file_type": 1, "original_file_name": "FX001#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf06215b03194dc89fe6edcff2da47b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf06215b03194dc89fe6edcff2da47b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf06215b03194dc89fe6edcff2da47b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf06215b03194dc89fe6edcff2da47b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf06215b03194dc89fe6edcff2da47b4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMflhyjiBpLIfaIXuU6lsDKzm-s=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.2075+00 2025-12-09 10:15:54.207507+00 19830 LZ1408#童装T3号色 SPMX-20240815315071 \N \N \N 1 \N [{"file_id": "728fb1bd-84e3-4b79-922c-48e8c9d53fbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b468bccbe6a42c9bcecdafb7b1c81e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b468bccbe6a42c9bcecdafb7b1c81e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b468bccbe6a42c9bcecdafb7b1c81e0.jpg", "file_size": 18819, "is_delete": false, "file_type": 1, "original_file_name": "LZ1408#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b468bccbe6a42c9bcecdafb7b1c81e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b468bccbe6a42c9bcecdafb7b1c81e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b468bccbe6a42c9bcecdafb7b1c81e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b468bccbe6a42c9bcecdafb7b1c81e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b468bccbe6a42c9bcecdafb7b1c81e0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Se57RdWyzGEB5NOpRSewuqAz9k=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.211019+00 2025-12-09 10:15:54.211026+00 19831 88059#卡其 SPMX-20240815315064 \N \N \N 1 \N [{"file_id": "3582ee34-7d07-4b47-842d-e68f6100cde1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc84ec2e763b4a71a8709a9d35a991f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc84ec2e763b4a71a8709a9d35a991f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc84ec2e763b4a71a8709a9d35a991f9.jpg", "file_size": 19360, "is_delete": false, "file_type": 1, "original_file_name": "88059#卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc84ec2e763b4a71a8709a9d35a991f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc84ec2e763b4a71a8709a9d35a991f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc84ec2e763b4a71a8709a9d35a991f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc84ec2e763b4a71a8709a9d35a991f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc84ec2e763b4a71a8709a9d35a991f9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9DH386AQa7zKRX74IsN1u2ak5YY=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.214439+00 2025-12-09 10:15:54.214446+00 19832 LJH2045-1#RC23-彩蓝 SPMX-20240815315061 \N \N \N 1 \N [{"file_id": "c8235bfc-36a0-4deb-aa12-020403b442d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "907e9c94171747a190fd46271376c755.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "907e9c94171747a190fd46271376c755.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "907e9c94171747a190fd46271376c755.jpg", "file_size": 62352, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-1#RC23-彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907e9c94171747a190fd46271376c755.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907e9c94171747a190fd46271376c755.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907e9c94171747a190fd46271376c755.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/907e9c94171747a190fd46271376c755.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/907e9c94171747a190fd46271376c755.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8nRTCECWggxjBlB4MDvDDD_lC0=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.217864+00 2025-12-09 10:15:54.21787+00 19833 JY-AD-122#3号红色 SPMX-20240815315067 \N \N \N 1 \N [{"file_id": "0692baa1-9d60-40f6-bee4-7591468b55ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc1cab74f304b429d0916b4529ad039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc1cab74f304b429d0916b4529ad039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc1cab74f304b429d0916b4529ad039.jpg", "file_size": 20937, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-122#3号红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc1cab74f304b429d0916b4529ad039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc1cab74f304b429d0916b4529ad039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc1cab74f304b429d0916b4529ad039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc1cab74f304b429d0916b4529ad039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc1cab74f304b429d0916b4529ad039.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-MQFdb4GTQbyedBHKbsjZ0G5Ao=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.221277+00 2025-12-09 10:15:54.221284+00 19834 HXF0008-31#WJC22 SPMX-20240815315070 \N \N \N 1 \N [{"file_id": "e9d03933-7829-493f-983d-cba88933c5aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec4801694c124bf3ac62530378ca8af1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec4801694c124bf3ac62530378ca8af1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec4801694c124bf3ac62530378ca8af1.jpg", "file_size": 16824, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-31#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4801694c124bf3ac62530378ca8af1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4801694c124bf3ac62530378ca8af1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4801694c124bf3ac62530378ca8af1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec4801694c124bf3ac62530378ca8af1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec4801694c124bf3ac62530378ca8af1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xUgWip8u0uHQfvqqA4XA9Wc9M_Y=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.224654+00 2025-12-09 10:15:54.22466+00 19835 2371FWF#原版灰番禺调色 SPMX-20240815315063 \N \N \N 1 \N [{"file_id": "03df6ce6-9f8e-4fc1-9b56-992ee0ce4065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72e5ff3b29b34cc8aa9c36cfafda63e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72e5ff3b29b34cc8aa9c36cfafda63e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72e5ff3b29b34cc8aa9c36cfafda63e1.jpg", "file_size": 11352, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#原版灰番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e5ff3b29b34cc8aa9c36cfafda63e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e5ff3b29b34cc8aa9c36cfafda63e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72e5ff3b29b34cc8aa9c36cfafda63e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72e5ff3b29b34cc8aa9c36cfafda63e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72e5ff3b29b34cc8aa9c36cfafda63e1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QYkFi6aWzUePWT_gzX0-coem1_Q=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.228066+00 2025-12-09 10:15:54.228072+00 19836 CGH9540#粉色 SPMX-20240815315068 \N \N \N 1 \N [{"file_id": "6366ed14-224e-4367-8c7d-7050aae7a420", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90518510622747b885ed5abfbaca5a89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90518510622747b885ed5abfbaca5a89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90518510622747b885ed5abfbaca5a89.jpg", "file_size": 16329, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90518510622747b885ed5abfbaca5a89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90518510622747b885ed5abfbaca5a89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90518510622747b885ed5abfbaca5a89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90518510622747b885ed5abfbaca5a89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90518510622747b885ed5abfbaca5a89.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzhSFl8lJaecEi81EDCSeSaWkuI=", "createTime": "2024-08-15 15:07:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.231511+00 2025-12-09 10:15:54.231516+00 19837 HXF0008-32#WJC22 SPMX-20240815315079 \N \N \N 1 \N [{"file_id": "465d1e6b-b5cb-443e-ac0b-427f52b701ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3be5af232e094c5ca1c0a8c15bd708ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3be5af232e094c5ca1c0a8c15bd708ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3be5af232e094c5ca1c0a8c15bd708ba.jpg", "file_size": 11473, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-32#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be5af232e094c5ca1c0a8c15bd708ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be5af232e094c5ca1c0a8c15bd708ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3be5af232e094c5ca1c0a8c15bd708ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3be5af232e094c5ca1c0a8c15bd708ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3be5af232e094c5ca1c0a8c15bd708ba.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZHzHZ_Y02jyHoNQL0ATnbw3jQQ=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.234915+00 2025-12-09 10:15:54.234922+00 19838 LZ1408#童装T4号色 SPMX-20240815315082 \N \N \N 1 \N [{"file_id": "b6cd3444-909a-47be-adb4-86a17c1c70a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a014653521a940fe9e748c1d877524bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a014653521a940fe9e748c1d877524bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a014653521a940fe9e748c1d877524bb.jpg", "file_size": 20178, "is_delete": false, "file_type": 1, "original_file_name": "LZ1408#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a014653521a940fe9e748c1d877524bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a014653521a940fe9e748c1d877524bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a014653521a940fe9e748c1d877524bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a014653521a940fe9e748c1d877524bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a014653521a940fe9e748c1d877524bb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcGu0l0UnXNNV8GFSGElWYjo0eY=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.238349+00 2025-12-09 10:15:54.238355+00 19839 DLT-332#前幅亮黄色XL码 SPMX-20240815315081 \N \N \N 1 \N [{"file_id": "67eb7a02-7c7a-4d80-8481-6849037f7c2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a5f97d0273b4f62be389a428ea93296.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a5f97d0273b4f62be389a428ea93296.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a5f97d0273b4f62be389a428ea93296.jpg", "file_size": 15337, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅亮黄色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f97d0273b4f62be389a428ea93296.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f97d0273b4f62be389a428ea93296.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a5f97d0273b4f62be389a428ea93296.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a5f97d0273b4f62be389a428ea93296.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a5f97d0273b4f62be389a428ea93296.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Zgl8PmXzMhDHmDapxAg9At1mGY=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.241759+00 2025-12-09 10:15:54.241765+00 19840 2371FWF#大红 SPMX-20240815315074 \N \N \N 1 \N [{"file_id": "27bb5f77-98f6-4cbe-aaca-e02315db3ea9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afa7a4a50a5149cbaae6787590ad085b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afa7a4a50a5149cbaae6787590ad085b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afa7a4a50a5149cbaae6787590ad085b.jpg", "file_size": 12244, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa7a4a50a5149cbaae6787590ad085b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa7a4a50a5149cbaae6787590ad085b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afa7a4a50a5149cbaae6787590ad085b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afa7a4a50a5149cbaae6787590ad085b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afa7a4a50a5149cbaae6787590ad085b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A5c4qHCn4nqhAjhK6KYyAvWDVsQ=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.245129+00 2025-12-09 10:15:54.245136+00 19841 1238#红色 SPMX-20240815315078 \N \N \N 1 \N [{"file_id": "4d8216ed-109b-45c0-9aa6-ac4e9f949f56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51ae72df66204627bc443e3934bc17ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51ae72df66204627bc443e3934bc17ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51ae72df66204627bc443e3934bc17ba.jpg", "file_size": 11347, "is_delete": false, "file_type": 1, "original_file_name": "1238#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae72df66204627bc443e3934bc17ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae72df66204627bc443e3934bc17ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51ae72df66204627bc443e3934bc17ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51ae72df66204627bc443e3934bc17ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51ae72df66204627bc443e3934bc17ba.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LJQR-8MeJxptSo8S0GP96qoY0Pg=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.248492+00 2025-12-09 10:15:54.248498+00 19842 FX001#D SPMX-20240815315075 \N \N \N 1 \N [{"file_id": "3e16b9ac-e896-4b77-842d-811eda7a9101", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f709d33686c343cb89f1f755f3935fdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f709d33686c343cb89f1f755f3935fdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f709d33686c343cb89f1f755f3935fdc.jpg", "file_size": 72944, "is_delete": false, "file_type": 1, "original_file_name": "FX001#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f709d33686c343cb89f1f755f3935fdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f709d33686c343cb89f1f755f3935fdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f709d33686c343cb89f1f755f3935fdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f709d33686c343cb89f1f755f3935fdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f709d33686c343cb89f1f755f3935fdc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBo72BTrcha7liDCQZfvpeHAJ5Y=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.251873+00 2025-12-09 10:15:54.251879+00 19843 LJH2045-2#RC23-红色 SPMX-20240815315083 \N \N \N 1 \N [{"file_id": "3cd6bcf3-4582-4dd4-a518-5b626a3d58a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7578ca811224fd0b46c69aa11cef2cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7578ca811224fd0b46c69aa11cef2cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7578ca811224fd0b46c69aa11cef2cc.jpg", "file_size": 60707, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-2#RC23-红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7578ca811224fd0b46c69aa11cef2cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7578ca811224fd0b46c69aa11cef2cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7578ca811224fd0b46c69aa11cef2cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7578ca811224fd0b46c69aa11cef2cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7578ca811224fd0b46c69aa11cef2cc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rRL7yrgqBhLi1Rf-8jAHPLsO-4A=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.255248+00 2025-12-09 10:15:54.255255+00 19844 FX001#杏 SPMX-20240815315087 \N \N \N 1 \N [{"file_id": "07c960f0-b83a-4968-a7cb-4e7c43bf2c24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a9ba30303454cfc96ed4deffca1cb7f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a9ba30303454cfc96ed4deffca1cb7f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a9ba30303454cfc96ed4deffca1cb7f.jpg", "file_size": 13700, "is_delete": false, "file_type": 1, "original_file_name": "FX001#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9ba30303454cfc96ed4deffca1cb7f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9ba30303454cfc96ed4deffca1cb7f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a9ba30303454cfc96ed4deffca1cb7f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a9ba30303454cfc96ed4deffca1cb7f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a9ba30303454cfc96ed4deffca1cb7f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ocg7r_YOK-ra8nWBTtWBNVvuDAk=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.26201+00 2025-12-09 10:15:54.262016+00 19846 CGH9540#藏青 SPMX-20240815315080 \N \N \N 1 \N [{"file_id": "877d0072-3efa-43c3-bcf2-91d064c23b2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4367ca781904f7080e1c6ad5aaf9fb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4367ca781904f7080e1c6ad5aaf9fb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4367ca781904f7080e1c6ad5aaf9fb8.jpg", "file_size": 27154, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4367ca781904f7080e1c6ad5aaf9fb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4367ca781904f7080e1c6ad5aaf9fb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4367ca781904f7080e1c6ad5aaf9fb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4367ca781904f7080e1c6ad5aaf9fb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4367ca781904f7080e1c6ad5aaf9fb8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IbmNZS2f-IV8rWlqgbkdrArlVY=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.265386+00 2025-12-09 10:15:54.265392+00 19847 0022-3FWF#V5曲线 SPMX-20240815315088 \N \N \N 1 \N [{"file_id": "7fbfad0f-9da4-4808-a8c8-dd977674db6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c5d443982b04d8d9c9e4462059f6c16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c5d443982b04d8d9c9e4462059f6c16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c5d443982b04d8d9c9e4462059f6c16.jpg", "file_size": 23701, "is_delete": false, "file_type": 1, "original_file_name": "0022-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5d443982b04d8d9c9e4462059f6c16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5d443982b04d8d9c9e4462059f6c16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c5d443982b04d8d9c9e4462059f6c16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c5d443982b04d8d9c9e4462059f6c16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c5d443982b04d8d9c9e4462059f6c16.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZch1rcl4p2LU-VsEzdM4MFo7fc=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.268752+00 2025-12-09 10:15:54.268758+00 19848 HXF0008-33#WJC22 SPMX-20240815315089 \N \N \N 1 \N [{"file_id": "92a5f2d7-e89f-4d58-87f4-7bcbd4322f81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b221aeb31682472c88fa06561f13fa48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b221aeb31682472c88fa06561f13fa48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b221aeb31682472c88fa06561f13fa48.jpg", "file_size": 10288, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-33#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b221aeb31682472c88fa06561f13fa48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b221aeb31682472c88fa06561f13fa48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b221aeb31682472c88fa06561f13fa48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b221aeb31682472c88fa06561f13fa48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b221aeb31682472c88fa06561f13fa48.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OsFD7TvGfTKdOczomWDzQiZfKW4=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.258586+00 2025-12-09 10:15:54.258592+00 19845 0022-3FWE#VS-D3 SPMX-20240815315077 \N \N \N 1 \N [{"file_id": "fc6c24f0-582f-4225-8bd5-15e04c950986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4a19e276d9444c1962ece6129708774.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4a19e276d9444c1962ece6129708774.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4a19e276d9444c1962ece6129708774.jpg", "file_size": 19172, "is_delete": false, "file_type": 1, "original_file_name": "0022-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19e276d9444c1962ece6129708774.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19e276d9444c1962ece6129708774.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4a19e276d9444c1962ece6129708774.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4a19e276d9444c1962ece6129708774.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4a19e276d9444c1962ece6129708774.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nNWqa55NklX4lJNPZwC-EOyJNYc=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.275822+00 2025-12-09 10:15:54.27583+00 19849 88059#玫红 SPMX-20240815315084 \N \N \N 1 \N [{"file_id": "3527abd9-f178-4321-ac5e-3ab2c5a3ddf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4264d19531946e2a63afc12c0f7964a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4264d19531946e2a63afc12c0f7964a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4264d19531946e2a63afc12c0f7964a.jpg", "file_size": 19272, "is_delete": false, "file_type": 1, "original_file_name": "88059#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4264d19531946e2a63afc12c0f7964a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4264d19531946e2a63afc12c0f7964a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4264d19531946e2a63afc12c0f7964a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4264d19531946e2a63afc12c0f7964a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4264d19531946e2a63afc12c0f7964a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qh93Dw1T3MSUssds1Kpngdcaz4g=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.279111+00 2025-12-09 10:15:54.279118+00 19850 2371FWF#彩蓝 SPMX-20240815315085 \N \N \N 1 \N [{"file_id": "c05c0407-3261-4b7b-b12f-c5938770d96a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baa32bd09559424c9455d24efab1a104.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baa32bd09559424c9455d24efab1a104.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baa32bd09559424c9455d24efab1a104.jpg", "file_size": 13225, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa32bd09559424c9455d24efab1a104.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa32bd09559424c9455d24efab1a104.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa32bd09559424c9455d24efab1a104.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baa32bd09559424c9455d24efab1a104.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baa32bd09559424c9455d24efab1a104.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o_ecxuEVF5QzmEgzd7R-_QOi1ic=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.282534+00 2025-12-09 10:15:54.28254+00 19851 1238#绿色 SPMX-20240815315086 \N \N \N 1 \N [{"file_id": "03e899e1-0000-453f-87e1-e84058e022ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65b6c816f2a447cbaeca896cc6c12845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65b6c816f2a447cbaeca896cc6c12845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65b6c816f2a447cbaeca896cc6c12845.jpg", "file_size": 10798, "is_delete": false, "file_type": 1, "original_file_name": "1238#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b6c816f2a447cbaeca896cc6c12845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b6c816f2a447cbaeca896cc6c12845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65b6c816f2a447cbaeca896cc6c12845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65b6c816f2a447cbaeca896cc6c12845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65b6c816f2a447cbaeca896cc6c12845.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eZKlyudPMzv9yz7JCPEDxSwsb40=", "createTime": "2024-08-15 15:07:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.285976+00 2025-12-09 10:15:54.285982+00 19852 JY-AD-122#7号黑色 SPMX-20240815315090 \N \N \N 1 \N [{"file_id": "269897c1-4968-4f3e-939f-35c3d1c9e6c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6fd714b5a7f4db1a6d40b19635bd4ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6fd714b5a7f4db1a6d40b19635bd4ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6fd714b5a7f4db1a6d40b19635bd4ab.jpg", "file_size": 19565, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-122#7号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fd714b5a7f4db1a6d40b19635bd4ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fd714b5a7f4db1a6d40b19635bd4ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6fd714b5a7f4db1a6d40b19635bd4ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6fd714b5a7f4db1a6d40b19635bd4ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6fd714b5a7f4db1a6d40b19635bd4ab.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mTil2Myqfxz20dqvykIn1g9PhU8=", "createTime": "2024-08-15 15:07:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.289383+00 2025-12-09 10:15:54.289389+00 19853 HXF0008-34#WJC22 SPMX-20240815315093 \N \N \N 1 \N [{"file_id": "b7182e16-be8e-4ec0-be1b-186fb515d4db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg", "file_size": 16623, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-34#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afba6f091a0a4cdfb7ce4f1a1293b1b0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yGmUEz1Zl2KnsaqcYMpRHkbeoeY=", "createTime": "2024-08-15 15:07:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.293061+00 2025-12-09 10:15:54.293067+00 19854 DLT-332#前幅彩兰色2XL码 SPMX-20240815315092 \N \N \N 1 \N [{"file_id": "f4860f4d-d8fd-498d-8230-3ac5f5fcd8ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bebca95af584a31a0ea875ba31e3293.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bebca95af584a31a0ea875ba31e3293.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bebca95af584a31a0ea875ba31e3293.jpg", "file_size": 15278, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅彩兰色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bebca95af584a31a0ea875ba31e3293.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bebca95af584a31a0ea875ba31e3293.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bebca95af584a31a0ea875ba31e3293.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bebca95af584a31a0ea875ba31e3293.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bebca95af584a31a0ea875ba31e3293.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5De1AlWFheA-Vj9DOCV3-fg9d4=", "createTime": "2024-08-15 15:07:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.296721+00 2025-12-09 10:15:54.296727+00 19855 CGH9540#黄色 SPMX-20240815315091 \N \N \N 1 \N [{"file_id": "3c6e3531-fbe1-44ef-b0fd-fc5ea41b67ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f19b3720ccf74805b650ee549d39a4c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f19b3720ccf74805b650ee549d39a4c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f19b3720ccf74805b650ee549d39a4c7.jpg", "file_size": 19686, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19b3720ccf74805b650ee549d39a4c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19b3720ccf74805b650ee549d39a4c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f19b3720ccf74805b650ee549d39a4c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f19b3720ccf74805b650ee549d39a4c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f19b3720ccf74805b650ee549d39a4c7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PLk7IedqFpNqIDEs2YSur1XRZkk=", "createTime": "2024-08-15 15:07:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.30019+00 2025-12-09 10:15:54.300197+00 19856 0022-4FWE#红色VS-D3 SPMX-20240815315094 \N \N \N 1 \N [{"file_id": "cc7c94eb-e2f3-449f-9f95-861f0bca556c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0ee2aed61ea43a49716eb46f2b70566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0ee2aed61ea43a49716eb46f2b70566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0ee2aed61ea43a49716eb46f2b70566.jpg", "file_size": 29051, "is_delete": false, "file_type": 1, "original_file_name": "0022-4FWE#红色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee2aed61ea43a49716eb46f2b70566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee2aed61ea43a49716eb46f2b70566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0ee2aed61ea43a49716eb46f2b70566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0ee2aed61ea43a49716eb46f2b70566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0ee2aed61ea43a49716eb46f2b70566.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqaWfiA9k2u0AWFFUQeT4mDpLuE=", "createTime": "2024-08-15 15:07:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.303624+00 2025-12-09 10:15:54.30363+00 19857 JY-AD-122#9号蓝色 SPMX-20240815315095 \N \N \N 1 \N [{"file_id": "b0925c9f-4017-495b-a46d-5ae0a4df3223", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2033812fd0da44cfaaead07477d6a2e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2033812fd0da44cfaaead07477d6a2e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2033812fd0da44cfaaead07477d6a2e4.jpg", "file_size": 18867, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-122#9号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2033812fd0da44cfaaead07477d6a2e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2033812fd0da44cfaaead07477d6a2e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2033812fd0da44cfaaead07477d6a2e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2033812fd0da44cfaaead07477d6a2e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2033812fd0da44cfaaead07477d6a2e4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fQ-ffBYQ-8r0JiiqMP6uMA85M1Y=", "createTime": "2024-08-15 15:07:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.307055+00 2025-12-09 10:15:54.307062+00 19858 LZ1408#童装T5号色 SPMX-20240815315097 \N \N \N 1 \N [{"file_id": "6bcff468-5aae-426b-ae3e-da24d9481ba8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "badd5f62904244c1acab955443955a3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "badd5f62904244c1acab955443955a3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "badd5f62904244c1acab955443955a3c.jpg", "file_size": 20763, "is_delete": false, "file_type": 1, "original_file_name": "LZ1408#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd5f62904244c1acab955443955a3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd5f62904244c1acab955443955a3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/badd5f62904244c1acab955443955a3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/badd5f62904244c1acab955443955a3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/badd5f62904244c1acab955443955a3c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vq-78-DqBRnvT1fXWFTX6SudCwo=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.310447+00 2025-12-09 10:15:54.310454+00 19859 2371FWF#紫红 SPMX-20240815315100 \N \N \N 1 \N [{"file_id": "043ff83b-5351-4bce-8e3e-de77d23c55fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a504e129ac1d4db2931c10347a361290.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a504e129ac1d4db2931c10347a361290.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a504e129ac1d4db2931c10347a361290.jpg", "file_size": 12058, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#紫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a504e129ac1d4db2931c10347a361290.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a504e129ac1d4db2931c10347a361290.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a504e129ac1d4db2931c10347a361290.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a504e129ac1d4db2931c10347a361290.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a504e129ac1d4db2931c10347a361290.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7s_iR6YqKQjmjlcqUyveioIsdRs=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.313849+00 2025-12-09 10:15:54.313856+00 19860 HXF0008-35#白色 SPMX-20240815315102 \N \N \N 1 \N [{"file_id": "a880959d-a64c-4f3e-86b7-2301966d5bd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f091ad854aad40b19fc8db69039b59d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f091ad854aad40b19fc8db69039b59d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f091ad854aad40b19fc8db69039b59d4.jpg", "file_size": 11097, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-35#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f091ad854aad40b19fc8db69039b59d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f091ad854aad40b19fc8db69039b59d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f091ad854aad40b19fc8db69039b59d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f091ad854aad40b19fc8db69039b59d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f091ad854aad40b19fc8db69039b59d4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uh2rPiViiYU_9bmUr0_esKJQn7Y=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.317256+00 2025-12-09 10:15:54.317262+00 19861 JY-AD-123#1号黑底叶子多色 SPMX-20240815315105 \N \N \N 1 \N [{"file_id": "5b142358-225f-439e-9fbb-9d92ecb9a834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79aca4a1db984f44857839fe04a498f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79aca4a1db984f44857839fe04a498f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79aca4a1db984f44857839fe04a498f4.jpg", "file_size": 26229, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-123#1号黑底叶子多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79aca4a1db984f44857839fe04a498f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79aca4a1db984f44857839fe04a498f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79aca4a1db984f44857839fe04a498f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79aca4a1db984f44857839fe04a498f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79aca4a1db984f44857839fe04a498f4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1RzUlK2cf7bYzsSJ_5zKy4uUCGI=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.320724+00 2025-12-09 10:15:54.32073+00 19862 LJH2045-2#RC23-绿色 SPMX-20240815315099 \N \N \N 1 \N [{"file_id": "f5a65153-9631-47c5-8fb4-f5e0e7217c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff56e60809ad42a7a2a86b0a93cc1287.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff56e60809ad42a7a2a86b0a93cc1287.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff56e60809ad42a7a2a86b0a93cc1287.jpg", "file_size": 62215, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-2#RC23-绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff56e60809ad42a7a2a86b0a93cc1287.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff56e60809ad42a7a2a86b0a93cc1287.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff56e60809ad42a7a2a86b0a93cc1287.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff56e60809ad42a7a2a86b0a93cc1287.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff56e60809ad42a7a2a86b0a93cc1287.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wFOnYPkotyikrgMRrEyI8-z2GE0=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.324058+00 2025-12-09 10:15:54.324065+00 19863 CGH9540#黑色 SPMX-20240815315104 \N \N \N 1 \N [{"file_id": "356477db-e5bd-4536-8264-d3b9fa9cfc35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff2f95c2a7d844c68a8503ee79a7e00c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff2f95c2a7d844c68a8503ee79a7e00c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff2f95c2a7d844c68a8503ee79a7e00c.jpg", "file_size": 25730, "is_delete": false, "file_type": 1, "original_file_name": "CGH9540#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2f95c2a7d844c68a8503ee79a7e00c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2f95c2a7d844c68a8503ee79a7e00c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2f95c2a7d844c68a8503ee79a7e00c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff2f95c2a7d844c68a8503ee79a7e00c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff2f95c2a7d844c68a8503ee79a7e00c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uoV-3zpYdroupwHUSlbWEjFGqNY=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.327426+00 2025-12-09 10:15:54.327433+00 19864 FX001#灰色格子 SPMX-20240815315101 \N \N \N 1 \N [{"file_id": "7baa0e9d-775d-4389-ab02-0ce3b9abd78e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63a3480ef9d1497ba22be11e223e606e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63a3480ef9d1497ba22be11e223e606e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63a3480ef9d1497ba22be11e223e606e.jpg", "file_size": 15528, "is_delete": false, "file_type": 1, "original_file_name": "FX001#灰色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3480ef9d1497ba22be11e223e606e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3480ef9d1497ba22be11e223e606e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63a3480ef9d1497ba22be11e223e606e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63a3480ef9d1497ba22be11e223e606e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63a3480ef9d1497ba22be11e223e606e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gmrfuR7lLp_rU7CztoOKepsjNNo=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.330889+00 2025-12-09 10:15:54.330896+00 19865 88059#绿色 SPMX-20240815315096 \N \N \N 1 \N [{"file_id": "8834775b-dff9-4014-b92c-9fd69db21cf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb6117ab05c044ec93465a69a1ef51ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb6117ab05c044ec93465a69a1ef51ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb6117ab05c044ec93465a69a1ef51ef.jpg", "file_size": 20883, "is_delete": false, "file_type": 1, "original_file_name": "88059#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6117ab05c044ec93465a69a1ef51ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6117ab05c044ec93465a69a1ef51ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb6117ab05c044ec93465a69a1ef51ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb6117ab05c044ec93465a69a1ef51ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb6117ab05c044ec93465a69a1ef51ef.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRYhT9gTLiHAHEyNIDLWNyww2x0=", "createTime": "2024-08-15 15:07:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.334343+00 2025-12-09 10:15:54.334349+00 19866 0022-4FWE#蓝色VS-D3 SPMX-20240815315106 \N \N \N 1 \N [{"file_id": "402bef29-64ba-42b8-a1ad-2f36b1e2adf4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "209340d4cf1c4d74ba21cca9e398980c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "209340d4cf1c4d74ba21cca9e398980c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "209340d4cf1c4d74ba21cca9e398980c.jpg", "file_size": 28877, "is_delete": false, "file_type": 1, "original_file_name": "0022-4FWE#蓝色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209340d4cf1c4d74ba21cca9e398980c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209340d4cf1c4d74ba21cca9e398980c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/209340d4cf1c4d74ba21cca9e398980c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/209340d4cf1c4d74ba21cca9e398980c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/209340d4cf1c4d74ba21cca9e398980c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNlQ9dganzaeSPhB77CA3eBixPI=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.337754+00 2025-12-09 10:15:54.33776+00 19867 1238#蓝色 SPMX-20240815315098 \N \N \N 1 \N [{"file_id": "2920cc16-87f1-45b8-beb3-6f8b461a2443", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8098598c314346dba671f6204bfdb7bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8098598c314346dba671f6204bfdb7bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8098598c314346dba671f6204bfdb7bb.jpg", "file_size": 12058, "is_delete": false, "file_type": 1, "original_file_name": "1238#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8098598c314346dba671f6204bfdb7bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8098598c314346dba671f6204bfdb7bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8098598c314346dba671f6204bfdb7bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8098598c314346dba671f6204bfdb7bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8098598c314346dba671f6204bfdb7bb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afTun0gUD9o4bXSkLXIWzoVSpsM=", "createTime": "2024-08-15 15:07:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.341246+00 2025-12-09 10:15:54.341253+00 19868 DLT-332#前幅彩兰色XL码 SPMX-20240815315103 \N \N \N 1 \N [{"file_id": "990173bd-8039-4823-b8fa-466a061ee0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6df179e2b9b4f57ad60e00a8e24b80c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6df179e2b9b4f57ad60e00a8e24b80c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6df179e2b9b4f57ad60e00a8e24b80c.jpg", "file_size": 15345, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅彩兰色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6df179e2b9b4f57ad60e00a8e24b80c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6df179e2b9b4f57ad60e00a8e24b80c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6df179e2b9b4f57ad60e00a8e24b80c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6df179e2b9b4f57ad60e00a8e24b80c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6df179e2b9b4f57ad60e00a8e24b80c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bnk--nlfDSl-TsH4ryXYdKjWDvk=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.344676+00 2025-12-09 10:15:54.344682+00 19869 2371FWF#绿色 SPMX-20240815315108 \N \N \N 1 \N [{"file_id": "d6f3dcfa-e84a-4b3f-bd4e-3c34f766be7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62a3ed97e2104d48bed7cd2fedb8792b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62a3ed97e2104d48bed7cd2fedb8792b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62a3ed97e2104d48bed7cd2fedb8792b.jpg", "file_size": 11755, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3ed97e2104d48bed7cd2fedb8792b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3ed97e2104d48bed7cd2fedb8792b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62a3ed97e2104d48bed7cd2fedb8792b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62a3ed97e2104d48bed7cd2fedb8792b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62a3ed97e2104d48bed7cd2fedb8792b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TEqZtducSJU-C6baZqAe5NJzK8Y=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.3481+00 2025-12-09 10:15:54.348106+00 19870 LZ1409#大人T1号色 SPMX-20240815315107 \N \N \N 1 \N [{"file_id": "9180c461-62ef-4bcf-9f55-c65c57e55b08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67fb0fdff4d441b38b230a7d2b2003fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67fb0fdff4d441b38b230a7d2b2003fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67fb0fdff4d441b38b230a7d2b2003fb.jpg", "file_size": 15945, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb0fdff4d441b38b230a7d2b2003fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb0fdff4d441b38b230a7d2b2003fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67fb0fdff4d441b38b230a7d2b2003fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67fb0fdff4d441b38b230a7d2b2003fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67fb0fdff4d441b38b230a7d2b2003fb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PNchdsd3U6BkWXYWKmmHho9CdeA=", "createTime": "2024-08-15 15:07:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.3514+00 2025-12-09 10:15:54.351406+00 19871 LJH2045-3#粉色 SPMX-20240815315109 \N \N \N 1 \N [{"file_id": "7f1afac8-d790-4fe7-94c0-200c9c90b208", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ce9807ae3d04799851ffc444792955e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ce9807ae3d04799851ffc444792955e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ce9807ae3d04799851ffc444792955e.jpg", "file_size": 52228, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-3#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce9807ae3d04799851ffc444792955e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce9807ae3d04799851ffc444792955e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce9807ae3d04799851ffc444792955e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ce9807ae3d04799851ffc444792955e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ce9807ae3d04799851ffc444792955e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_u6Sj1A0MPdUIUH_bzo6LwMedN4=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.354814+00 2025-12-09 10:15:54.354821+00 19872 1238#黄色 SPMX-20240815315110 \N \N \N 1 \N [{"file_id": "6c83fa10-2348-4bec-ae23-8bc6d364ff92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2b87f5b040b440ba0ca163d5856415f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2b87f5b040b440ba0ca163d5856415f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2b87f5b040b440ba0ca163d5856415f.jpg", "file_size": 10382, "is_delete": false, "file_type": 1, "original_file_name": "1238#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b87f5b040b440ba0ca163d5856415f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b87f5b040b440ba0ca163d5856415f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2b87f5b040b440ba0ca163d5856415f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2b87f5b040b440ba0ca163d5856415f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2b87f5b040b440ba0ca163d5856415f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BSRus0rMLmsmdaUzJYj7SXnpRj4=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.358226+00 2025-12-09 10:15:54.358232+00 19873 88059#黑色 SPMX-20240815315111 \N \N \N 1 \N [{"file_id": "d1b6e8dc-ae83-4121-b711-e6028efdd337", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f69cdd1276964a78b1917df998885db0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f69cdd1276964a78b1917df998885db0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f69cdd1276964a78b1917df998885db0.jpg", "file_size": 23137, "is_delete": false, "file_type": 1, "original_file_name": "88059#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f69cdd1276964a78b1917df998885db0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f69cdd1276964a78b1917df998885db0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f69cdd1276964a78b1917df998885db0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f69cdd1276964a78b1917df998885db0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f69cdd1276964a78b1917df998885db0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2k135c74HZya1j1XdB8h0aefdPI=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.361621+00 2025-12-09 10:15:54.361627+00 19874 DLT-332#前幅枣红色2XL码 SPMX-20240815315113 \N \N \N 1 \N [{"file_id": "be236615-88c8-473b-bafe-b4d11d60b132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db1a634d117d475b8f23f8ebfbd21315.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db1a634d117d475b8f23f8ebfbd21315.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db1a634d117d475b8f23f8ebfbd21315.jpg", "file_size": 15087, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅枣红色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a634d117d475b8f23f8ebfbd21315.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a634d117d475b8f23f8ebfbd21315.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1a634d117d475b8f23f8ebfbd21315.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db1a634d117d475b8f23f8ebfbd21315.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db1a634d117d475b8f23f8ebfbd21315.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btY2F_ytrJs7XABxoGzF5Ar3oBU=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.365031+00 2025-12-09 10:15:54.365037+00 19875 FX001#紫色格子 SPMX-20240815315112 \N \N \N 1 \N [{"file_id": "89622c16-98c1-4267-8fa3-c62a7f4b3510", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f25b6289d52d4e748b96dfafc381d860.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f25b6289d52d4e748b96dfafc381d860.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f25b6289d52d4e748b96dfafc381d860.jpg", "file_size": 16634, "is_delete": false, "file_type": 1, "original_file_name": "FX001#紫色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25b6289d52d4e748b96dfafc381d860.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25b6289d52d4e748b96dfafc381d860.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25b6289d52d4e748b96dfafc381d860.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f25b6289d52d4e748b96dfafc381d860.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f25b6289d52d4e748b96dfafc381d860.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWuQOgHA2Cgc2atlbuULbw47SAs=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.36841+00 2025-12-09 10:15:54.368415+00 19876 HXF0008-35#粉色 SPMX-20240815315114 \N \N \N 1 \N [{"file_id": "3636ae5d-50a6-4296-a639-b27bcb894d76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4fd078d4a7784a33ad90833bc3e9fef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4fd078d4a7784a33ad90833bc3e9fef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4fd078d4a7784a33ad90833bc3e9fef7.jpg", "file_size": 11261, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-35#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd078d4a7784a33ad90833bc3e9fef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd078d4a7784a33ad90833bc3e9fef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4fd078d4a7784a33ad90833bc3e9fef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4fd078d4a7784a33ad90833bc3e9fef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4fd078d4a7784a33ad90833bc3e9fef7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ss8IX4k5FwvlXuRgWCh_WIyy6wg=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.372093+00 2025-12-09 10:15:54.372099+00 19877 2371FWF#绿色番禺调色 SPMX-20240815315117 \N \N \N 1 \N [{"file_id": "ad514691-1d2c-4a6c-b4a3-78d58d2fd4bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69b7b4e034294a64b638562a47f3c40f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69b7b4e034294a64b638562a47f3c40f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69b7b4e034294a64b638562a47f3c40f.jpg", "file_size": 10331, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#绿色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b7b4e034294a64b638562a47f3c40f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b7b4e034294a64b638562a47f3c40f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b7b4e034294a64b638562a47f3c40f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69b7b4e034294a64b638562a47f3c40f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69b7b4e034294a64b638562a47f3c40f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_O2uBUeiL7Og9uX3E32LgRs82X8=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.375782+00 2025-12-09 10:15:54.375789+00 19878 JY-AD-123#5号黄底多色叶子 SPMX-20240815315128 \N \N \N 1 \N [{"file_id": "75b11827-3c00-4181-ac63-038184c7f6ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31ded491572c4821a5096a21ba9eafed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31ded491572c4821a5096a21ba9eafed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31ded491572c4821a5096a21ba9eafed.jpg", "file_size": 24395, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-123#5号黄底多色叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ded491572c4821a5096a21ba9eafed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ded491572c4821a5096a21ba9eafed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ded491572c4821a5096a21ba9eafed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31ded491572c4821a5096a21ba9eafed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31ded491572c4821a5096a21ba9eafed.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-0nnTogs7xy1CfGa4zCWlT39yQs=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.379477+00 2025-12-09 10:15:54.379483+00 19879 LZ1409#大人T2号色 SPMX-20240815315120 \N \N \N 1 \N [{"file_id": "86a2e946-06da-432b-966e-2aa4c97c3d64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1508ee124530461c927d7f21fae9364a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1508ee124530461c927d7f21fae9364a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1508ee124530461c927d7f21fae9364a.jpg", "file_size": 15491, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1508ee124530461c927d7f21fae9364a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1508ee124530461c927d7f21fae9364a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1508ee124530461c927d7f21fae9364a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1508ee124530461c927d7f21fae9364a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1508ee124530461c927d7f21fae9364a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gsYzlwLW0j9PkHojSLTsNCbSwU=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.383149+00 2025-12-09 10:15:54.383155+00 19880 DLT-332#前幅枣红色XL码 SPMX-20240815315124 \N \N \N 1 \N [{"file_id": "953f1fe0-03cf-408c-bf02-b63ba19233c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "148d221bcfa14c60a40ba2eff52b49e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "148d221bcfa14c60a40ba2eff52b49e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "148d221bcfa14c60a40ba2eff52b49e0.jpg", "file_size": 15818, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅枣红色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d221bcfa14c60a40ba2eff52b49e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d221bcfa14c60a40ba2eff52b49e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/148d221bcfa14c60a40ba2eff52b49e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/148d221bcfa14c60a40ba2eff52b49e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/148d221bcfa14c60a40ba2eff52b49e0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FKAtuaI7FnQGH6fOwB_fSs4EmTM=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.386809+00 2025-12-09 10:15:54.386815+00 19881 1238-10FWF#V5曲线 SPMX-20240815315119 \N \N \N 1 \N [{"file_id": "66797d4a-56a3-489c-9cff-8d2bd2f96919", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad1c6210a6b14fc5b46365cfdaf34369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad1c6210a6b14fc5b46365cfdaf34369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad1c6210a6b14fc5b46365cfdaf34369.jpg", "file_size": 21579, "is_delete": false, "file_type": 1, "original_file_name": "1238-10FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad1c6210a6b14fc5b46365cfdaf34369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad1c6210a6b14fc5b46365cfdaf34369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad1c6210a6b14fc5b46365cfdaf34369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad1c6210a6b14fc5b46365cfdaf34369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad1c6210a6b14fc5b46365cfdaf34369.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zcdUMshOqlTXXLQRXfrZOR3iFJA=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.390522+00 2025-12-09 10:15:54.390529+00 19882 HXF0008-36#粉色 SPMX-20240815315125 \N \N \N 1 \N [{"file_id": "ab649f00-1e29-470f-b76f-6b47f09ba072", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5893af5b1cd5477a8e66c61a749987b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5893af5b1cd5477a8e66c61a749987b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5893af5b1cd5477a8e66c61a749987b2.jpg", "file_size": 13974, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-36#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5893af5b1cd5477a8e66c61a749987b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5893af5b1cd5477a8e66c61a749987b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5893af5b1cd5477a8e66c61a749987b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5893af5b1cd5477a8e66c61a749987b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5893af5b1cd5477a8e66c61a749987b2.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uuVgHMbzwvDKxQSlsMfmy7duGAs=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.394266+00 2025-12-09 10:15:54.394273+00 19883 JY-AD-123#3号焦糖底多色叶子 SPMX-20240815315115 \N \N \N 1 \N [{"file_id": "28681334-5843-42ae-bdec-4d20b06adf0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1592c83c0a254f40a3001dfaf1e33e98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1592c83c0a254f40a3001dfaf1e33e98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1592c83c0a254f40a3001dfaf1e33e98.jpg", "file_size": 24665, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-123#3号焦糖底多色叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1592c83c0a254f40a3001dfaf1e33e98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1592c83c0a254f40a3001dfaf1e33e98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1592c83c0a254f40a3001dfaf1e33e98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1592c83c0a254f40a3001dfaf1e33e98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1592c83c0a254f40a3001dfaf1e33e98.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D1__WD0yY019VeR28KYmYTmFLdg=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.397952+00 2025-12-09 10:15:54.397958+00 19884 FX001#红底 SPMX-20240815315123 \N \N \N 1 \N [{"file_id": "c0f15be5-b86a-4964-a931-608ae984e654", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b47db5775934f3da0c68b4198109b4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b47db5775934f3da0c68b4198109b4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b47db5775934f3da0c68b4198109b4c.jpg", "file_size": 10353, "is_delete": false, "file_type": 1, "original_file_name": "FX001#红底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b47db5775934f3da0c68b4198109b4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b47db5775934f3da0c68b4198109b4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b47db5775934f3da0c68b4198109b4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b47db5775934f3da0c68b4198109b4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b47db5775934f3da0c68b4198109b4c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9OtqcTlOxigYu7gHECaVA8tHLvQ=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.40136+00 2025-12-09 10:15:54.401366+00 19885 CGL-A4810#M SPMX-20240815315127 \N \N \N 1 \N [{"file_id": "2d7ab35e-ca8f-4c96-a423-5e44859dc845", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a99f4dda27c4d7580178fded7c7372e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a99f4dda27c4d7580178fded7c7372e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a99f4dda27c4d7580178fded7c7372e.jpg", "file_size": 12742, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A4810#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a99f4dda27c4d7580178fded7c7372e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a99f4dda27c4d7580178fded7c7372e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a99f4dda27c4d7580178fded7c7372e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a99f4dda27c4d7580178fded7c7372e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a99f4dda27c4d7580178fded7c7372e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CsGdMuBZrNV9F7anPQLslMdhoH8=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.404805+00 2025-12-09 10:15:54.404812+00 19886 CGL-A4810#L SPMX-20240815315116 \N \N \N 1 \N [{"file_id": "a3621d07-e84d-4b1e-b34d-1d321dbd0e31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c043b270bf84273b4977236c6c3564c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c043b270bf84273b4977236c6c3564c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c043b270bf84273b4977236c6c3564c.jpg", "file_size": 12487, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A4810#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c043b270bf84273b4977236c6c3564c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c043b270bf84273b4977236c6c3564c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c043b270bf84273b4977236c6c3564c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c043b270bf84273b4977236c6c3564c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c043b270bf84273b4977236c6c3564c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3-omkzVHmMMT68lqT4cxwj15zI8=", "createTime": "2024-08-15 15:07:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.408294+00 2025-12-09 10:15:54.4083+00 19887 2371FWF#黄色 SPMX-20240815315126 \N \N \N 1 \N [{"file_id": "9bfe16ad-9f68-4b0a-842f-afc75962f755", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97832cc46c474ac28f92419aaa20654c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97832cc46c474ac28f92419aaa20654c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97832cc46c474ac28f92419aaa20654c.jpg", "file_size": 11437, "is_delete": false, "file_type": 1, "original_file_name": "2371FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97832cc46c474ac28f92419aaa20654c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97832cc46c474ac28f92419aaa20654c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97832cc46c474ac28f92419aaa20654c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97832cc46c474ac28f92419aaa20654c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97832cc46c474ac28f92419aaa20654c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R2yQYRFs9MCx7DAfSGCh1ritYh8=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.411687+00 2025-12-09 10:15:54.411693+00 19888 88059-1#墨绿色 SPMX-20240815315122 \N \N \N 1 \N [{"file_id": "9159bcc8-ae66-4fdf-ab99-b592524565c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe015f57ed3d437fa0c5e25c54bac764.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe015f57ed3d437fa0c5e25c54bac764.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe015f57ed3d437fa0c5e25c54bac764.jpg", "file_size": 23571, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe015f57ed3d437fa0c5e25c54bac764.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe015f57ed3d437fa0c5e25c54bac764.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe015f57ed3d437fa0c5e25c54bac764.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe015f57ed3d437fa0c5e25c54bac764.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe015f57ed3d437fa0c5e25c54bac764.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3DIbXmZQEPZl_q8HUV8L8TpnMAM=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.415092+00 2025-12-09 10:15:54.415098+00 19889 LJH2045-3#绿色 SPMX-20240815315118 \N \N \N 1 \N [{"file_id": "183cf142-d3f8-4f88-974c-415e435feadd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "623a566d9376419dbccc0a1aba5964e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "623a566d9376419dbccc0a1aba5964e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "623a566d9376419dbccc0a1aba5964e3.jpg", "file_size": 53692, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a566d9376419dbccc0a1aba5964e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a566d9376419dbccc0a1aba5964e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623a566d9376419dbccc0a1aba5964e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/623a566d9376419dbccc0a1aba5964e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/623a566d9376419dbccc0a1aba5964e3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aThpx5XI_V6Kfw6-b9-6xKyFSHk=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.418605+00 2025-12-09 10:15:54.418614+00 19890 0022-4FWF#V5曲线 SPMX-20240815315121 \N \N \N 1 \N [{"file_id": "59b6b900-dca7-4898-b2b3-205539bf0e95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c52907365e474257a6b832ad560390de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c52907365e474257a6b832ad560390de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c52907365e474257a6b832ad560390de.jpg", "file_size": 23338, "is_delete": false, "file_type": 1, "original_file_name": "0022-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52907365e474257a6b832ad560390de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52907365e474257a6b832ad560390de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c52907365e474257a6b832ad560390de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c52907365e474257a6b832ad560390de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c52907365e474257a6b832ad560390de.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwEPe4Fyr9FZ6YalvkFDE6JIeT0=", "createTime": "2024-08-15 15:07:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.422471+00 2025-12-09 10:15:54.422477+00 19891 0022-5FWF#V5曲线 SPMX-20240815315129 \N \N \N 1 \N [{"file_id": "6665960a-550d-492d-8878-6cc35a063b80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "402530c966474f4cb70b30aad5746a25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "402530c966474f4cb70b30aad5746a25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "402530c966474f4cb70b30aad5746a25.jpg", "file_size": 19122, "is_delete": false, "file_type": 1, "original_file_name": "0022-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402530c966474f4cb70b30aad5746a25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402530c966474f4cb70b30aad5746a25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/402530c966474f4cb70b30aad5746a25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/402530c966474f4cb70b30aad5746a25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/402530c966474f4cb70b30aad5746a25.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Il8UO1fLhcSSEykQDsTt4Aw0140=", "createTime": "2024-08-15 15:07:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.426263+00 2025-12-09 10:15:54.42627+00 19892 LJH2045-4#玫红色 SPMX-20240815315130 \N \N \N 1 \N [{"file_id": "31ef519e-a91e-4617-820e-b8ea1ca2ef7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "956bb7f071064efd84ba48a9639d952a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "956bb7f071064efd84ba48a9639d952a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "956bb7f071064efd84ba48a9639d952a.jpg", "file_size": 44041, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-4#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956bb7f071064efd84ba48a9639d952a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956bb7f071064efd84ba48a9639d952a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/956bb7f071064efd84ba48a9639d952a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/956bb7f071064efd84ba48a9639d952a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/956bb7f071064efd84ba48a9639d952a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MudktPG3vLZfr02z5B0XgDD40rw=", "createTime": "2024-08-15 15:07:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.429693+00 2025-12-09 10:15:54.4297+00 19893 88059-1#杏底绿 SPMX-20240815315134 \N \N \N 1 \N [{"file_id": "3facff9a-a646-4224-b996-f5110c3f3c65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg", "file_size": 21982, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#杏底绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8d8ddc2d44245dd8ec3d66c8553a3dc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V7GvBLSBQGZDgue3bIDiejEQ3hg=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.433112+00 2025-12-09 10:15:54.433119+00 19894 CGL-A4810#S SPMX-20240815315137 \N \N \N 1 \N [{"file_id": "1947a339-6924-49cc-b78a-a60843c96364", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4c137e5875440be9a3d0cf587b08139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4c137e5875440be9a3d0cf587b08139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4c137e5875440be9a3d0cf587b08139.jpg", "file_size": 12161, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A4810#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c137e5875440be9a3d0cf587b08139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c137e5875440be9a3d0cf587b08139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c137e5875440be9a3d0cf587b08139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4c137e5875440be9a3d0cf587b08139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4c137e5875440be9a3d0cf587b08139.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v5sr-s8wi5rkCmiCCPpincVaZjA=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.43659+00 2025-12-09 10:15:54.436596+00 19895 JY-AD-123#8号墨绿底多色叶子 SPMX-20240815315138 \N \N \N 1 \N [{"file_id": "a311e71c-103c-4570-949f-f2c28e6558cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78ddf5ae83f640b297f38454e62c0456.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78ddf5ae83f640b297f38454e62c0456.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78ddf5ae83f640b297f38454e62c0456.jpg", "file_size": 24637, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-123#8号墨绿底多色叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ddf5ae83f640b297f38454e62c0456.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ddf5ae83f640b297f38454e62c0456.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78ddf5ae83f640b297f38454e62c0456.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78ddf5ae83f640b297f38454e62c0456.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78ddf5ae83f640b297f38454e62c0456.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-iZ6bf6OtSfw2Q2UlCB81gxyFCc=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.44005+00 2025-12-09 10:15:54.440055+00 19896 DLT-332#前幅浅粉色XL码 SPMX-20240815315144 \N \N \N 1 \N [{"file_id": "ae611024-7602-41c5-98b2-c9c40d34a479", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2149475853914bcb8189285e0b0f315e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2149475853914bcb8189285e0b0f315e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2149475853914bcb8189285e0b0f315e.jpg", "file_size": 15592, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅浅粉色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2149475853914bcb8189285e0b0f315e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2149475853914bcb8189285e0b0f315e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2149475853914bcb8189285e0b0f315e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2149475853914bcb8189285e0b0f315e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2149475853914bcb8189285e0b0f315e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAS846hrbM0wrWHeZpXqaN-c_Ds=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.443495+00 2025-12-09 10:15:54.443501+00 19897 23721FWF#WJC22 SPMX-20240815315139 \N \N \N 1 \N [{"file_id": "0fdc5d75-7e2a-432a-973e-30a23f92cea2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a910bc12cc0647db91aeaa741080af0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a910bc12cc0647db91aeaa741080af0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a910bc12cc0647db91aeaa741080af0c.jpg", "file_size": 15797, "is_delete": false, "file_type": 1, "original_file_name": "23721FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a910bc12cc0647db91aeaa741080af0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a910bc12cc0647db91aeaa741080af0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a910bc12cc0647db91aeaa741080af0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a910bc12cc0647db91aeaa741080af0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a910bc12cc0647db91aeaa741080af0c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dB415CPOipoJmzLeOjRLrXnJU7U=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.446921+00 2025-12-09 10:15:54.446927+00 19898 DLT-332#前幅浅粉色2XL码 SPMX-20240815315135 \N \N \N 1 \N [{"file_id": "83c26c75-5060-47ee-b952-7fcb92a5c297", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aae3ba88fd3f4256a01d3b1a93a5b93e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aae3ba88fd3f4256a01d3b1a93a5b93e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aae3ba88fd3f4256a01d3b1a93a5b93e.jpg", "file_size": 14828, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅浅粉色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae3ba88fd3f4256a01d3b1a93a5b93e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae3ba88fd3f4256a01d3b1a93a5b93e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae3ba88fd3f4256a01d3b1a93a5b93e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aae3ba88fd3f4256a01d3b1a93a5b93e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aae3ba88fd3f4256a01d3b1a93a5b93e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htCQPJEGw3JTX9nFl8bwj5l8omc=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.450358+00 2025-12-09 10:15:54.450369+00 19899 HXF0008-36#黑色 SPMX-20240815315136 \N \N \N 1 \N [{"file_id": "8f19deb1-9745-4682-a55a-8d6eb116cce1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3353148ff94543728d69fc101f5ce689.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3353148ff94543728d69fc101f5ce689.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3353148ff94543728d69fc101f5ce689.jpg", "file_size": 27148, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-36#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3353148ff94543728d69fc101f5ce689.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3353148ff94543728d69fc101f5ce689.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3353148ff94543728d69fc101f5ce689.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3353148ff94543728d69fc101f5ce689.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3353148ff94543728d69fc101f5ce689.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6r0EmVA2_k7Ud_aEDc-BBpmwlMQ=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.453802+00 2025-12-09 10:15:54.453808+00 19900 LZ1409#大人T3号色 SPMX-20240815315131 \N \N \N 1 \N [{"file_id": "5be2e7b4-c8d2-40a7-bd1e-91485ca34860", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e3ae8c9b5244aa9977f679b6f186623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e3ae8c9b5244aa9977f679b6f186623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e3ae8c9b5244aa9977f679b6f186623.jpg", "file_size": 15873, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3ae8c9b5244aa9977f679b6f186623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3ae8c9b5244aa9977f679b6f186623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e3ae8c9b5244aa9977f679b6f186623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e3ae8c9b5244aa9977f679b6f186623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e3ae8c9b5244aa9977f679b6f186623.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wVtPbTyExkcUx6faFrillQRNPY=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.4572+00 2025-12-09 10:15:54.457207+00 19901 1238-11FWF#V5曲线 SPMX-20240815315133 \N \N \N 1 \N [{"file_id": "cb7a8732-b2be-4d43-b941-a0cc81d52189", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cbadf8fcd2d4de1a95fcb9e9780851d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cbadf8fcd2d4de1a95fcb9e9780851d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cbadf8fcd2d4de1a95fcb9e9780851d.jpg", "file_size": 23123, "is_delete": false, "file_type": 1, "original_file_name": "1238-11FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cbadf8fcd2d4de1a95fcb9e9780851d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cbadf8fcd2d4de1a95fcb9e9780851d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cbadf8fcd2d4de1a95fcb9e9780851d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cbadf8fcd2d4de1a95fcb9e9780851d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cbadf8fcd2d4de1a95fcb9e9780851d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ddod4IAmONxyK4JcYRJ57gBr7A=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.460635+00 2025-12-09 10:15:54.460641+00 19902 FX001#红色格子WJC22 SPMX-20240815315132 \N \N \N 1 \N [{"file_id": "a5ccaa16-4bb6-4343-b2d2-0c42b33b4288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65134c39cc674cd4a74dcc00867ea685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65134c39cc674cd4a74dcc00867ea685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65134c39cc674cd4a74dcc00867ea685.jpg", "file_size": 18542, "is_delete": false, "file_type": 1, "original_file_name": "FX001#红色格子WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65134c39cc674cd4a74dcc00867ea685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65134c39cc674cd4a74dcc00867ea685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65134c39cc674cd4a74dcc00867ea685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65134c39cc674cd4a74dcc00867ea685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65134c39cc674cd4a74dcc00867ea685.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sYxp2R6vRvgWpz81rOv1KHjaqdY=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.464053+00 2025-12-09 10:15:54.464059+00 19903 LJH2045-4#绿色 SPMX-20240815315140 \N \N \N 1 \N [{"file_id": "681cff6b-c0fb-4e7f-8232-1f16be985a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1bdafd9d236455db12b4cb0f0795d72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1bdafd9d236455db12b4cb0f0795d72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1bdafd9d236455db12b4cb0f0795d72.jpg", "file_size": 39448, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-4#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bdafd9d236455db12b4cb0f0795d72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bdafd9d236455db12b4cb0f0795d72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bdafd9d236455db12b4cb0f0795d72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1bdafd9d236455db12b4cb0f0795d72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1bdafd9d236455db12b4cb0f0795d72.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sa4fMp89z4nVCl0xcMuI0LqioRQ=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.467459+00 2025-12-09 10:15:54.467465+00 19904 FX001#绿色Z SPMX-20240815315142 \N \N \N 1 \N [{"file_id": "dfb77d33-d586-44a9-b7e1-1de62ec6dd02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0149530699b4425abeed32f1bfb8206b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0149530699b4425abeed32f1bfb8206b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0149530699b4425abeed32f1bfb8206b.jpg", "file_size": 7409, "is_delete": false, "file_type": 1, "original_file_name": "FX001#绿色Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0149530699b4425abeed32f1bfb8206b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0149530699b4425abeed32f1bfb8206b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0149530699b4425abeed32f1bfb8206b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0149530699b4425abeed32f1bfb8206b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0149530699b4425abeed32f1bfb8206b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7qGXDymDtm8qzXtpQfa_iUiT4K8=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.470863+00 2025-12-09 10:15:54.470869+00 19905 0022-6FWF#V5曲线 SPMX-20240815315141 \N \N \N 1 \N [{"file_id": "c5195130-fca7-4ad3-9af6-f30e94eb6ef3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4447b6bdaba444681501850976e6d54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4447b6bdaba444681501850976e6d54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4447b6bdaba444681501850976e6d54.jpg", "file_size": 12893, "is_delete": false, "file_type": 1, "original_file_name": "0022-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4447b6bdaba444681501850976e6d54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4447b6bdaba444681501850976e6d54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4447b6bdaba444681501850976e6d54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4447b6bdaba444681501850976e6d54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4447b6bdaba444681501850976e6d54.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0m8ysMUCHdjutcDZ3Q8XZrE8wkA=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.474262+00 2025-12-09 10:15:54.474272+00 19906 88059-1#橙色 SPMX-20240815315143 \N \N \N 1 \N [{"file_id": "e57a989e-8bce-4490-bc1b-b7597f361e9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42e1357efe414c3da09a9078786302ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42e1357efe414c3da09a9078786302ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42e1357efe414c3da09a9078786302ab.jpg", "file_size": 20742, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e1357efe414c3da09a9078786302ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e1357efe414c3da09a9078786302ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42e1357efe414c3da09a9078786302ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42e1357efe414c3da09a9078786302ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42e1357efe414c3da09a9078786302ab.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yJUt1wxOaUjycyoDG64OuO_mf48=", "createTime": "2024-08-15 15:07:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.477662+00 2025-12-09 10:15:54.477668+00 19907 CGL-A4810#XL SPMX-20240815315146 \N \N \N 1 \N [{"file_id": "c25d27cf-4fd6-432a-9cee-2c6426a5f733", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad182c011b8f414191809d6294922ec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad182c011b8f414191809d6294922ec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad182c011b8f414191809d6294922ec4.jpg", "file_size": 12489, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A4810#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad182c011b8f414191809d6294922ec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad182c011b8f414191809d6294922ec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad182c011b8f414191809d6294922ec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad182c011b8f414191809d6294922ec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad182c011b8f414191809d6294922ec4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HptH_1aZ66pFMgFwUjhIvb4bI2A=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.481071+00 2025-12-09 10:15:54.481078+00 19908 1238-12FWF#V5曲线 SPMX-20240815315147 \N \N \N 1 \N [{"file_id": "7cee6558-c837-4899-a5b9-5fa3e6931cfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d9feb73981a4280a3a1b0cbe926793e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d9feb73981a4280a3a1b0cbe926793e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d9feb73981a4280a3a1b0cbe926793e.jpg", "file_size": 24055, "is_delete": false, "file_type": 1, "original_file_name": "1238-12FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9feb73981a4280a3a1b0cbe926793e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9feb73981a4280a3a1b0cbe926793e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d9feb73981a4280a3a1b0cbe926793e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d9feb73981a4280a3a1b0cbe926793e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d9feb73981a4280a3a1b0cbe926793e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJdih7bw7rymgGJRh0BYzNev-_I=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.484478+00 2025-12-09 10:15:54.484484+00 19909 JY-AD-160#2号黑白色 SPMX-20240815315158 \N \N \N 1 \N [{"file_id": "37e550b1-ccff-4679-9bb6-484155a365af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "480ca1f7591f4f4ebba2d1776176b9c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "480ca1f7591f4f4ebba2d1776176b9c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "480ca1f7591f4f4ebba2d1776176b9c9.jpg", "file_size": 19371, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#2号黑白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480ca1f7591f4f4ebba2d1776176b9c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480ca1f7591f4f4ebba2d1776176b9c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/480ca1f7591f4f4ebba2d1776176b9c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/480ca1f7591f4f4ebba2d1776176b9c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/480ca1f7591f4f4ebba2d1776176b9c9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5RhvQVaTcgKD6Ik3cMQO3ZxwMxA=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.487883+00 2025-12-09 10:15:54.487889+00 19910 JY-AD-160#1号黑紫色 SPMX-20240815315148 \N \N \N 1 \N [{"file_id": "81abc1ef-a7cb-4d3e-90e1-40923be061f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0643cec284047fa86eed0867be771fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0643cec284047fa86eed0867be771fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0643cec284047fa86eed0867be771fe.jpg", "file_size": 18578, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#1号黑紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0643cec284047fa86eed0867be771fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0643cec284047fa86eed0867be771fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0643cec284047fa86eed0867be771fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0643cec284047fa86eed0867be771fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0643cec284047fa86eed0867be771fe.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXLk2vRhvNIZG-RstQFEiHVo24k=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.491236+00 2025-12-09 10:15:54.491242+00 19911 DLT-332#前幅玫红色2XL码 SPMX-20240815315155 \N \N \N 1 \N [{"file_id": "2e94a34a-c05b-4475-8c5d-f3085f827f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1168166633e4d9d9ee1c03dbb17d38b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1168166633e4d9d9ee1c03dbb17d38b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1168166633e4d9d9ee1c03dbb17d38b.jpg", "file_size": 15212, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅玫红色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1168166633e4d9d9ee1c03dbb17d38b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1168166633e4d9d9ee1c03dbb17d38b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1168166633e4d9d9ee1c03dbb17d38b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1168166633e4d9d9ee1c03dbb17d38b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1168166633e4d9d9ee1c03dbb17d38b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBgo3WdQMw3_KDOm9Oviryn8xIA=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.494633+00 2025-12-09 10:15:54.494644+00 19912 88059-1#玫红色 SPMX-20240815315153 \N \N \N 1 \N [{"file_id": "b0c2acdd-383c-4bdf-a217-1c8dda86cb51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c49374cbbe73430783b7ff44833687d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c49374cbbe73430783b7ff44833687d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c49374cbbe73430783b7ff44833687d9.jpg", "file_size": 20157, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c49374cbbe73430783b7ff44833687d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c49374cbbe73430783b7ff44833687d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c49374cbbe73430783b7ff44833687d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c49374cbbe73430783b7ff44833687d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c49374cbbe73430783b7ff44833687d9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDS5hcYVU729uWvzazZomtNM9fA=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.498091+00 2025-12-09 10:15:54.498097+00 19913 CGL-A4810#捆条 SPMX-20240815315156 \N \N \N 1 \N [{"file_id": "371bd845-2a48-4cc0-ba9c-6e4ae07c40cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5eafade7edd74cd9a72aaad8b31f4f1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5eafade7edd74cd9a72aaad8b31f4f1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5eafade7edd74cd9a72aaad8b31f4f1d.jpg", "file_size": 6166, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A4810#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eafade7edd74cd9a72aaad8b31f4f1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eafade7edd74cd9a72aaad8b31f4f1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eafade7edd74cd9a72aaad8b31f4f1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5eafade7edd74cd9a72aaad8b31f4f1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5eafade7edd74cd9a72aaad8b31f4f1d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y4uzIATFvuDLT5LzrmKZwC5wUE8=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.501556+00 2025-12-09 10:15:54.501563+00 19914 HXF0008-37#白色 SPMX-20240815315150 \N \N \N 1 \N [{"file_id": "850c704c-efaa-4403-9de6-eff39b479742", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "359e3e2a3da044cab53bb3a3298229ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "359e3e2a3da044cab53bb3a3298229ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "359e3e2a3da044cab53bb3a3298229ca.jpg", "file_size": 12284, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-37#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359e3e2a3da044cab53bb3a3298229ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359e3e2a3da044cab53bb3a3298229ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/359e3e2a3da044cab53bb3a3298229ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/359e3e2a3da044cab53bb3a3298229ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/359e3e2a3da044cab53bb3a3298229ca.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZgO3F7xqN6Hk1Dkaz5KSJzHPdxY=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.505019+00 2025-12-09 10:15:54.505026+00 19915 0022-7FWF#V5曲线 SPMX-20240815315152 \N \N \N 1 \N [{"file_id": "11e69844-f382-40c7-8545-9dfae2a139c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03c0f8c340b44fd2996c78cea92086b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03c0f8c340b44fd2996c78cea92086b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03c0f8c340b44fd2996c78cea92086b8.jpg", "file_size": 10065, "is_delete": false, "file_type": 1, "original_file_name": "0022-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0f8c340b44fd2996c78cea92086b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0f8c340b44fd2996c78cea92086b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0f8c340b44fd2996c78cea92086b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03c0f8c340b44fd2996c78cea92086b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03c0f8c340b44fd2996c78cea92086b8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3eaRZSPdzv3KhZOotTfF0so8Dww=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.508388+00 2025-12-09 10:15:54.508394+00 19916 23726FWF#WJC22 SPMX-20240815315149 \N \N \N 1 \N [{"file_id": "6ea6a48a-a189-4e5c-8852-62c600b2a327", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d81beb62fb524a24943e80da9989e990.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d81beb62fb524a24943e80da9989e990.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d81beb62fb524a24943e80da9989e990.jpg", "file_size": 17838, "is_delete": false, "file_type": 1, "original_file_name": "23726FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81beb62fb524a24943e80da9989e990.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81beb62fb524a24943e80da9989e990.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d81beb62fb524a24943e80da9989e990.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d81beb62fb524a24943e80da9989e990.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d81beb62fb524a24943e80da9989e990.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FkaJyewkVPcmCqqKmffqgrd7sbs=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.511804+00 2025-12-09 10:15:54.511811+00 19917 LZ1409#大人T5号色 SPMX-20240815315157 \N \N \N 1 \N [{"file_id": "40bb1f2f-2fc0-4d86-8ea7-c3cecdac0d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94dadbb9844e4e01b73269fe828cae0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94dadbb9844e4e01b73269fe828cae0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94dadbb9844e4e01b73269fe828cae0f.jpg", "file_size": 15687, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dadbb9844e4e01b73269fe828cae0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dadbb9844e4e01b73269fe828cae0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94dadbb9844e4e01b73269fe828cae0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94dadbb9844e4e01b73269fe828cae0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94dadbb9844e4e01b73269fe828cae0f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Trw90RPIDpJYo1H0ZTfK7icSiX8=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.515198+00 2025-12-09 10:15:54.515209+00 19918 2372FWF#原版红 SPMX-20240815315159 \N \N \N 1 \N [{"file_id": "a83be8e3-d449-4efc-9edf-5de3dac37623", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "682ddd4455e74babb1b7533263af2336.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "682ddd4455e74babb1b7533263af2336.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "682ddd4455e74babb1b7533263af2336.jpg", "file_size": 15412, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#原版红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/682ddd4455e74babb1b7533263af2336.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/682ddd4455e74babb1b7533263af2336.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/682ddd4455e74babb1b7533263af2336.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/682ddd4455e74babb1b7533263af2336.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/682ddd4455e74babb1b7533263af2336.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LhbxSGgFtSpTQPHfbUiSY_A1VtA=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.518602+00 2025-12-09 10:15:54.518609+00 19919 LZ1409#大人T4号色 SPMX-20240815315145 \N \N \N 1 \N [{"file_id": "c95e6548-8f81-41c8-afc4-4d89456eb19a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a503fbba9ac42dda234ca1ed40448ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a503fbba9ac42dda234ca1ed40448ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a503fbba9ac42dda234ca1ed40448ea.jpg", "file_size": 15749, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a503fbba9ac42dda234ca1ed40448ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a503fbba9ac42dda234ca1ed40448ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a503fbba9ac42dda234ca1ed40448ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a503fbba9ac42dda234ca1ed40448ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a503fbba9ac42dda234ca1ed40448ea.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmjC9Ig5Hy66qgjuW43vTSHXcDA=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.522118+00 2025-12-09 10:15:54.522125+00 19920 LJH2045-4#黑红色 SPMX-20240815315151 \N \N \N 1 \N [{"file_id": "ffb42f88-578a-463e-aab2-9c47d7a8380a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "035b7423678a46e2884a4a3e02a3174c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "035b7423678a46e2884a4a3e02a3174c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "035b7423678a46e2884a4a3e02a3174c.jpg", "file_size": 44458, "is_delete": false, "file_type": 1, "original_file_name": "LJH2045-4#黑红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035b7423678a46e2884a4a3e02a3174c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035b7423678a46e2884a4a3e02a3174c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/035b7423678a46e2884a4a3e02a3174c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/035b7423678a46e2884a4a3e02a3174c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/035b7423678a46e2884a4a3e02a3174c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t970tL3vgeL5_BNZKo_wLBNAihM=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.525563+00 2025-12-09 10:15:54.52557+00 19921 FX001#绿色格子WJC22 SPMX-20240815315154 \N \N \N 1 \N [{"file_id": "5ff10728-c93f-4e26-9303-47094dec223b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg", "file_size": 17585, "is_delete": false, "file_type": 1, "original_file_name": "FX001#绿色格子WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14cb45e3dd7e4f1e8fa0dc32cfea8b5f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9SLsQn_xhXihYvt1dlSZF7oCKN8=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.529003+00 2025-12-09 10:15:54.529009+00 19922 DLT-332#前幅玫红色XL码 SPMX-20240815315164 \N \N \N 1 \N [{"file_id": "24016528-3012-4eef-a02b-25981c2d2d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9af7fe8c626842c2b0572f2662ea6c97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9af7fe8c626842c2b0572f2662ea6c97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9af7fe8c626842c2b0572f2662ea6c97.jpg", "file_size": 15508, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅玫红色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af7fe8c626842c2b0572f2662ea6c97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af7fe8c626842c2b0572f2662ea6c97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af7fe8c626842c2b0572f2662ea6c97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9af7fe8c626842c2b0572f2662ea6c97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9af7fe8c626842c2b0572f2662ea6c97.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qH1VMf7Ui7-ylDLdNYW801B4SE8=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.532407+00 2025-12-09 10:15:54.532413+00 19923 HXF0008-37#粉色 SPMX-20240815315160 \N \N \N 1 \N [{"file_id": "05ed336d-639b-4053-a839-b9e123e3800f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15ebf9b2a4504be6affbe809a067963d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15ebf9b2a4504be6affbe809a067963d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15ebf9b2a4504be6affbe809a067963d.jpg", "file_size": 11296, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-37#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ebf9b2a4504be6affbe809a067963d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ebf9b2a4504be6affbe809a067963d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15ebf9b2a4504be6affbe809a067963d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15ebf9b2a4504be6affbe809a067963d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15ebf9b2a4504be6affbe809a067963d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDlUxlyL5PTRVw3HwblT0I-01rE=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.535822+00 2025-12-09 10:15:54.535828+00 19924 0022-8FWF#V5曲线 SPMX-20240815315162 \N \N \N 1 \N [{"file_id": "decbd004-c650-4f2d-b727-195455c39477", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg", "file_size": 10518, "is_delete": false, "file_type": 1, "original_file_name": "0022-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d623fd55eff4fa7bcb560d9a8cdf5d0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJoLYM2982CXv0wdFMq8eNZoKIA=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.539408+00 2025-12-09 10:15:54.539414+00 19925 FX001#蓝底 SPMX-20240815315165 \N \N \N 1 \N [{"file_id": "5562570d-6654-4020-a2a1-c76264bcd0e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4528e8f9ec4444f78581ae8394b1b210.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4528e8f9ec4444f78581ae8394b1b210.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4528e8f9ec4444f78581ae8394b1b210.jpg", "file_size": 11799, "is_delete": false, "file_type": 1, "original_file_name": "FX001#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4528e8f9ec4444f78581ae8394b1b210.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4528e8f9ec4444f78581ae8394b1b210.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4528e8f9ec4444f78581ae8394b1b210.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4528e8f9ec4444f78581ae8394b1b210.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4528e8f9ec4444f78581ae8394b1b210.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Or83em5WFXSDdMevLolBPUOXxKU=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.543049+00 2025-12-09 10:15:54.543057+00 19926 88059-1#红色 SPMX-20240815315167 \N \N \N 1 \N [{"file_id": "723ea70f-9441-44ee-9e62-33ac54075888", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5985b3fa695a47c9aa6098641f184d6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5985b3fa695a47c9aa6098641f184d6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5985b3fa695a47c9aa6098641f184d6c.jpg", "file_size": 22970, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5985b3fa695a47c9aa6098641f184d6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5985b3fa695a47c9aa6098641f184d6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5985b3fa695a47c9aa6098641f184d6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5985b3fa695a47c9aa6098641f184d6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5985b3fa695a47c9aa6098641f184d6c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c7mEBWrgz5uu7wJxAfmrJA5U02o=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.546581+00 2025-12-09 10:15:54.546593+00 19927 1238-13FWF#V5曲线 SPMX-20240815315161 \N \N \N 1 \N [{"file_id": "b4bf5435-1999-4ad9-9527-c391adb7b485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b5a43167be844be8c0f31d776b263d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b5a43167be844be8c0f31d776b263d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b5a43167be844be8c0f31d776b263d3.jpg", "file_size": 26045, "is_delete": false, "file_type": 1, "original_file_name": "1238-13FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a43167be844be8c0f31d776b263d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a43167be844be8c0f31d776b263d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5a43167be844be8c0f31d776b263d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b5a43167be844be8c0f31d776b263d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b5a43167be844be8c0f31d776b263d3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fTtBI_93TRP1ElVeTILmpS94naY=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.550027+00 2025-12-09 10:15:54.550033+00 19928 LJH2047#宝蓝色 SPMX-20240815315163 \N \N \N 1 \N [{"file_id": "30c60d47-bad8-46ce-b4af-048a1246f517", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d65238df202746f593413645b3978f24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d65238df202746f593413645b3978f24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d65238df202746f593413645b3978f24.jpg", "file_size": 41412, "is_delete": false, "file_type": 1, "original_file_name": "LJH2047#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65238df202746f593413645b3978f24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65238df202746f593413645b3978f24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d65238df202746f593413645b3978f24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d65238df202746f593413645b3978f24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d65238df202746f593413645b3978f24.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9IS1UDGan1JVoqPaCdW6Hg63i-8=", "createTime": "2024-08-15 15:07:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.553491+00 2025-12-09 10:15:54.553498+00 19929 LZ1409#童装T1号色 SPMX-20240815315168 \N \N \N 1 \N [{"file_id": "353fc930-7277-4a80-b24a-3e9d98b7574a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77bc5974be6a425cb5fb4ae173935a62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77bc5974be6a425cb5fb4ae173935a62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77bc5974be6a425cb5fb4ae173935a62.jpg", "file_size": 18983, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77bc5974be6a425cb5fb4ae173935a62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77bc5974be6a425cb5fb4ae173935a62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77bc5974be6a425cb5fb4ae173935a62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77bc5974be6a425cb5fb4ae173935a62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77bc5974be6a425cb5fb4ae173935a62.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JT6VyO23B3Zehaba8LOc4fbjt5s=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.55689+00 2025-12-09 10:15:54.556896+00 19930 CGL-A564#L SPMX-20240815315166 \N \N \N 1 \N [{"file_id": "b23928d1-1f61-4da4-b42a-f7057164a6d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5404380cf0fd485fbd8afa1b64b596b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5404380cf0fd485fbd8afa1b64b596b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5404380cf0fd485fbd8afa1b64b596b0.jpg", "file_size": 16325, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A564#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5404380cf0fd485fbd8afa1b64b596b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5404380cf0fd485fbd8afa1b64b596b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5404380cf0fd485fbd8afa1b64b596b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5404380cf0fd485fbd8afa1b64b596b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5404380cf0fd485fbd8afa1b64b596b0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXOhXRrq5pJ-VD5OjxNgR57QHMM=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.56037+00 2025-12-09 10:15:54.560376+00 19931 88059-1#蓝色 SPMX-20240815315179 \N \N \N 1 \N [{"file_id": "9f928c35-38be-45bc-891a-6b86f7191aa0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c14360ef72741208b9c3593156a14a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c14360ef72741208b9c3593156a14a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c14360ef72741208b9c3593156a14a1.jpg", "file_size": 23503, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c14360ef72741208b9c3593156a14a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c14360ef72741208b9c3593156a14a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c14360ef72741208b9c3593156a14a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c14360ef72741208b9c3593156a14a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c14360ef72741208b9c3593156a14a1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5jktTjI6YtHqakCTP16x9UXzfWM=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.563849+00 2025-12-09 10:15:54.563855+00 19932 2372FWF#绿色 SPMX-20240815315181 \N \N \N 1 \N [{"file_id": "abd58e9d-b752-41d7-a37c-0cef1a2f18ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84627752a5694702a332b2a78aa66903.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84627752a5694702a332b2a78aa66903.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84627752a5694702a332b2a78aa66903.jpg", "file_size": 14962, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84627752a5694702a332b2a78aa66903.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84627752a5694702a332b2a78aa66903.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84627752a5694702a332b2a78aa66903.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84627752a5694702a332b2a78aa66903.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84627752a5694702a332b2a78aa66903.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrrsCVzcXc3a5rWVejJ67dq5SN4=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.56725+00 2025-12-09 10:15:54.567256+00 19933 HXF0008-38#白色 SPMX-20240815315172 \N \N \N 1 \N [{"file_id": "a9c4bdc6-2934-4722-aeb6-072fb1395e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8b49f1f1ae74921a02f946a083f6f65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8b49f1f1ae74921a02f946a083f6f65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8b49f1f1ae74921a02f946a083f6f65.jpg", "file_size": 19506, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-38#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b49f1f1ae74921a02f946a083f6f65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b49f1f1ae74921a02f946a083f6f65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8b49f1f1ae74921a02f946a083f6f65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8b49f1f1ae74921a02f946a083f6f65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8b49f1f1ae74921a02f946a083f6f65.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrQCohobZnF26tkreB-MA4kJyxg=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.570702+00 2025-12-09 10:15:54.570713+00 19934 1238-15FWF#V5曲线 SPMX-20240815315183 \N \N \N 1 \N [{"file_id": "5cf0d2af-ecdc-4cbd-9976-075c29755ec9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dc8b59b452d453e897d2947af69fa48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dc8b59b452d453e897d2947af69fa48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dc8b59b452d453e897d2947af69fa48.jpg", "file_size": 25619, "is_delete": false, "file_type": 1, "original_file_name": "1238-15FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc8b59b452d453e897d2947af69fa48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc8b59b452d453e897d2947af69fa48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dc8b59b452d453e897d2947af69fa48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dc8b59b452d453e897d2947af69fa48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dc8b59b452d453e897d2947af69fa48.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LXrTw9G2onC5-a92o1ocGNKhlfU=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.574031+00 2025-12-09 10:15:54.574037+00 19935 JY-AD-160#5号桔黑色 SPMX-20240815315180 \N \N \N 1 \N [{"file_id": "9c69266b-fa33-40d7-a364-0d778207df48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4ebac5855ef476db7a1ffc1ccaf19f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4ebac5855ef476db7a1ffc1ccaf19f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4ebac5855ef476db7a1ffc1ccaf19f9.jpg", "file_size": 16818, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#5号桔黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebac5855ef476db7a1ffc1ccaf19f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebac5855ef476db7a1ffc1ccaf19f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4ebac5855ef476db7a1ffc1ccaf19f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4ebac5855ef476db7a1ffc1ccaf19f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4ebac5855ef476db7a1ffc1ccaf19f9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gsvp5FvIHjV-pKrpkE3PTQYQBNU=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.577514+00 2025-12-09 10:15:54.57752+00 19936 LJH2047#桔色 SPMX-20240815315174 \N \N \N 1 \N [{"file_id": "da29d378-8756-4e99-882f-68e882f22547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba3b3dcca0f64d3484a102c1cc50b085.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba3b3dcca0f64d3484a102c1cc50b085.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba3b3dcca0f64d3484a102c1cc50b085.jpg", "file_size": 44444, "is_delete": false, "file_type": 1, "original_file_name": "LJH2047#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3b3dcca0f64d3484a102c1cc50b085.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3b3dcca0f64d3484a102c1cc50b085.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba3b3dcca0f64d3484a102c1cc50b085.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba3b3dcca0f64d3484a102c1cc50b085.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba3b3dcca0f64d3484a102c1cc50b085.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cd08VjrfGzrFjxPCcnHvZzlvWU=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.580975+00 2025-12-09 10:15:54.580982+00 19937 1238-14FWF#V5曲线 SPMX-20240815315171 \N \N \N 1 \N [{"file_id": "57e33fb8-1e00-470b-a82c-6367310f8840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c24b9a4537ea407fb90068236e3ada42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c24b9a4537ea407fb90068236e3ada42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c24b9a4537ea407fb90068236e3ada42.jpg", "file_size": 23290, "is_delete": false, "file_type": 1, "original_file_name": "1238-14FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24b9a4537ea407fb90068236e3ada42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24b9a4537ea407fb90068236e3ada42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c24b9a4537ea407fb90068236e3ada42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c24b9a4537ea407fb90068236e3ada42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c24b9a4537ea407fb90068236e3ada42.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEuQx-iEqU27s5t_uPIHMSh472I=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.584473+00 2025-12-09 10:15:54.584479+00 19938 DLT-332#前幅蓝绿色2XL码 SPMX-20240815315175 \N \N \N 1 \N [{"file_id": "f6a74f5b-48dc-4282-9dd9-50ee4138fefc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ffad70d8fb54469900786c6f6110eee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ffad70d8fb54469900786c6f6110eee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ffad70d8fb54469900786c6f6110eee.jpg", "file_size": 15359, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅蓝绿色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffad70d8fb54469900786c6f6110eee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffad70d8fb54469900786c6f6110eee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ffad70d8fb54469900786c6f6110eee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ffad70d8fb54469900786c6f6110eee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ffad70d8fb54469900786c6f6110eee.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FfBv-0s_-vH1A4duz0DuqQcFT7A=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.58789+00 2025-12-09 10:15:54.587896+00 19939 JY-AD-160#3号墨绿色 SPMX-20240815315169 \N \N \N 1 \N [{"file_id": "285245f5-bd25-4901-99b6-fd62dc023469", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae9356719ffd47699ff4c05407381bb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae9356719ffd47699ff4c05407381bb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae9356719ffd47699ff4c05407381bb9.jpg", "file_size": 18631, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#3号墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9356719ffd47699ff4c05407381bb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9356719ffd47699ff4c05407381bb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae9356719ffd47699ff4c05407381bb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae9356719ffd47699ff4c05407381bb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae9356719ffd47699ff4c05407381bb9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EhyLozdBSZ7n5YE6rcc7YqxKxvo=", "createTime": "2024-08-15 15:07:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.591306+00 2025-12-09 10:15:54.591313+00 19940 CGL-A564#M SPMX-20240815315178 \N \N \N 1 \N [{"file_id": "4ab4cef6-d141-4655-9471-056f735d75da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ef2a6d84221485aaa4e009b8e4cf79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ef2a6d84221485aaa4e009b8e4cf79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ef2a6d84221485aaa4e009b8e4cf79f.jpg", "file_size": 15813, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A564#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef2a6d84221485aaa4e009b8e4cf79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef2a6d84221485aaa4e009b8e4cf79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ef2a6d84221485aaa4e009b8e4cf79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ef2a6d84221485aaa4e009b8e4cf79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ef2a6d84221485aaa4e009b8e4cf79f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3sch2-5p-7YLJenmb735v3o8ByU=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.594737+00 2025-12-09 10:15:54.594744+00 19941 2372FWF#灰色 SPMX-20240815315170 \N \N \N 1 \N [{"file_id": "0c2004d6-b1da-4aad-a2f7-b09955023148", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ebeea148073429d818b1ef5f41ceb03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ebeea148073429d818b1ef5f41ceb03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ebeea148073429d818b1ef5f41ceb03.jpg", "file_size": 14023, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ebeea148073429d818b1ef5f41ceb03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ebeea148073429d818b1ef5f41ceb03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ebeea148073429d818b1ef5f41ceb03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ebeea148073429d818b1ef5f41ceb03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ebeea148073429d818b1ef5f41ceb03.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_uH1ZEXEr7PPLWVdNTp14ogMpLg=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.598165+00 2025-12-09 10:15:54.598171+00 19942 0022-9FWF#V5曲线 SPMX-20240815315173 \N \N \N 1 \N [{"file_id": "a641d233-200e-40f2-a021-b873caba90d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "049e46b0febf47d38edb440cad674f1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "049e46b0febf47d38edb440cad674f1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "049e46b0febf47d38edb440cad674f1e.jpg", "file_size": 17606, "is_delete": false, "file_type": 1, "original_file_name": "0022-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049e46b0febf47d38edb440cad674f1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049e46b0febf47d38edb440cad674f1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049e46b0febf47d38edb440cad674f1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/049e46b0febf47d38edb440cad674f1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/049e46b0febf47d38edb440cad674f1e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2H0dAT8FNPKN3p83m9oZMS8Pbc=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.601589+00 2025-12-09 10:15:54.601595+00 19943 FX001#蓝色格子WJC22 SPMX-20240815315176 \N \N \N 1 \N [{"file_id": "2c1b688e-2c35-4719-867e-5d1d0871270b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1a9b684221f4048b8d74314539e0871.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1a9b684221f4048b8d74314539e0871.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1a9b684221f4048b8d74314539e0871.jpg", "file_size": 18128, "is_delete": false, "file_type": 1, "original_file_name": "FX001#蓝色格子WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a9b684221f4048b8d74314539e0871.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a9b684221f4048b8d74314539e0871.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1a9b684221f4048b8d74314539e0871.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1a9b684221f4048b8d74314539e0871.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1a9b684221f4048b8d74314539e0871.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yh6bDpewmyMwCZar9jntb7GXoXg=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.605038+00 2025-12-09 10:15:54.605049+00 19944 HXF0008-38#粉色 SPMX-20240815315182 \N \N \N 1 \N [{"file_id": "7f755c48-54f1-4e1d-af3a-99fa395a0f56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98bd38aa92ba4902aeb84a039e961dc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98bd38aa92ba4902aeb84a039e961dc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98bd38aa92ba4902aeb84a039e961dc3.jpg", "file_size": 19269, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-38#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bd38aa92ba4902aeb84a039e961dc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bd38aa92ba4902aeb84a039e961dc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98bd38aa92ba4902aeb84a039e961dc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98bd38aa92ba4902aeb84a039e961dc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98bd38aa92ba4902aeb84a039e961dc3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9eo9WobqKvMqY6fa_88_Nonz-NU=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.608445+00 2025-12-09 10:15:54.608451+00 19945 LZ1409#童装T2号色 SPMX-20240815315177 \N \N \N 1 \N [{"file_id": "aad30260-aee0-4e38-8452-ddccecdb4080", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8daf2ef93e4ebd8703ba432f6085f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8daf2ef93e4ebd8703ba432f6085f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8daf2ef93e4ebd8703ba432f6085f7.jpg", "file_size": 18417, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8daf2ef93e4ebd8703ba432f6085f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8daf2ef93e4ebd8703ba432f6085f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8daf2ef93e4ebd8703ba432f6085f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8daf2ef93e4ebd8703ba432f6085f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8daf2ef93e4ebd8703ba432f6085f7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ilSEg0Csd0VHfniDvgXTHUjS4bI=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.611885+00 2025-12-09 10:15:54.611891+00 19946 LJH2047#梅红色 SPMX-20240815315186 \N \N \N 1 \N [{"file_id": "a496e3dc-849c-4c4c-937a-50df6ee2644f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a82e717296444f98a00cc47fdac77eeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a82e717296444f98a00cc47fdac77eeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a82e717296444f98a00cc47fdac77eeb.jpg", "file_size": 40034, "is_delete": false, "file_type": 1, "original_file_name": "LJH2047#梅红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82e717296444f98a00cc47fdac77eeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82e717296444f98a00cc47fdac77eeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a82e717296444f98a00cc47fdac77eeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a82e717296444f98a00cc47fdac77eeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a82e717296444f98a00cc47fdac77eeb.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tfn8wRv6rfugSGCfhAzIKyDauCk=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.615294+00 2025-12-09 10:15:54.6153+00 19947 CGL-A564#S SPMX-20240815315189 \N \N \N 1 \N [{"file_id": "36b2178c-917d-463f-9749-a0c1734e0498", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa50cfeae03248bfb12660880b594a32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa50cfeae03248bfb12660880b594a32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa50cfeae03248bfb12660880b594a32.jpg", "file_size": 15643, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A564#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa50cfeae03248bfb12660880b594a32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa50cfeae03248bfb12660880b594a32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa50cfeae03248bfb12660880b594a32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa50cfeae03248bfb12660880b594a32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa50cfeae03248bfb12660880b594a32.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7suKlwjkmS0EXTpTs1-J8fX2t0E=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.618709+00 2025-12-09 10:15:54.618716+00 19948 HXF0008-39#白色 SPMX-20240815315193 \N \N \N 1 \N [{"file_id": "df8fd64b-ee0e-4226-b323-4c0cecfbb0de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3dd540acfce4f4aad603513a77dc2c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3dd540acfce4f4aad603513a77dc2c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3dd540acfce4f4aad603513a77dc2c3.jpg", "file_size": 14991, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-39#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd540acfce4f4aad603513a77dc2c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd540acfce4f4aad603513a77dc2c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd540acfce4f4aad603513a77dc2c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3dd540acfce4f4aad603513a77dc2c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3dd540acfce4f4aad603513a77dc2c3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BsqB10dMkAwTE0kXDGThgVxnzaI=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.622108+00 2025-12-09 10:15:54.622115+00 19949 2372FWF#蓝色 SPMX-20240815315192 \N \N \N 1 \N [{"file_id": "2b0b86fe-da9e-42c9-ad25-6f12782e01b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg", "file_size": 15272, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de4db5269ae4f5c9e99d27f8a9a9f1a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-tsWVyI8ziuBwnf4XXrgpvp56f8=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.625493+00 2025-12-09 10:15:54.6255+00 19950 JY-AD-160#6号姜黄色 SPMX-20240815315190 \N \N \N 1 \N [{"file_id": "0a35ebf4-9e63-44c0-a470-7c3ffc56dfc1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb0cab83afac446a924ce7bb348c37a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb0cab83afac446a924ce7bb348c37a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb0cab83afac446a924ce7bb348c37a0.jpg", "file_size": 19366, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#6号姜黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0cab83afac446a924ce7bb348c37a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0cab83afac446a924ce7bb348c37a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb0cab83afac446a924ce7bb348c37a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb0cab83afac446a924ce7bb348c37a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb0cab83afac446a924ce7bb348c37a0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHoVa6_fwG11XhRHHqfRY0I4mUg=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.628939+00 2025-12-09 10:15:54.628945+00 19951 FX001-1FW#VS-D3 SPMX-20240815315187 \N \N \N 1 \N [{"file_id": "a5dda0e3-0cbb-4021-a24f-97fc30a56991", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "327708f62e4e48a3acfc0104fd03575a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "327708f62e4e48a3acfc0104fd03575a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "327708f62e4e48a3acfc0104fd03575a.jpg", "file_size": 19897, "is_delete": false, "file_type": 1, "original_file_name": "FX001-1FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327708f62e4e48a3acfc0104fd03575a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327708f62e4e48a3acfc0104fd03575a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327708f62e4e48a3acfc0104fd03575a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/327708f62e4e48a3acfc0104fd03575a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/327708f62e4e48a3acfc0104fd03575a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wwz4tQCq_XOIGPyJDfcY--V8Fns=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.632338+00 2025-12-09 10:15:54.632345+00 19952 88059-1#黑色 SPMX-20240815315191 \N \N \N 1 \N [{"file_id": "8b59ba6c-b8d3-49b0-a13c-1bcf6edd4e49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0150a7faa9eb49298b96dce8155ef681.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0150a7faa9eb49298b96dce8155ef681.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0150a7faa9eb49298b96dce8155ef681.jpg", "file_size": 24558, "is_delete": false, "file_type": 1, "original_file_name": "88059-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0150a7faa9eb49298b96dce8155ef681.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0150a7faa9eb49298b96dce8155ef681.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0150a7faa9eb49298b96dce8155ef681.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0150a7faa9eb49298b96dce8155ef681.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0150a7faa9eb49298b96dce8155ef681.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2c8obWscHgLzuJxAgFFr0XKfJlE=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.635752+00 2025-12-09 10:15:54.635758+00 19953 0022-A1#LWQ15 SPMX-20240815315184 \N \N \N 1 \N [{"file_id": "ec17ab17-1204-4f2c-8be6-1373a793cd43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbb0756df129488e89be5be6f5616ec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbb0756df129488e89be5be6f5616ec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbb0756df129488e89be5be6f5616ec4.jpg", "file_size": 31066, "is_delete": false, "file_type": 1, "original_file_name": "0022-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb0756df129488e89be5be6f5616ec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb0756df129488e89be5be6f5616ec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb0756df129488e89be5be6f5616ec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbb0756df129488e89be5be6f5616ec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbb0756df129488e89be5be6f5616ec4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-19N-IzR-8DArfqRDp81uWsp-MI=", "createTime": "2024-08-15 15:07:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.639166+00 2025-12-09 10:15:54.639173+00 19954 LZ1409#童装T3号色 SPMX-20240815315188 \N \N \N 1 \N [{"file_id": "8b8458e8-c8f7-4449-9f03-0b8627e89e3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb9f55f9a7194b8ab581529899b8137d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb9f55f9a7194b8ab581529899b8137d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb9f55f9a7194b8ab581529899b8137d.jpg", "file_size": 18220, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9f55f9a7194b8ab581529899b8137d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9f55f9a7194b8ab581529899b8137d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9f55f9a7194b8ab581529899b8137d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb9f55f9a7194b8ab581529899b8137d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb9f55f9a7194b8ab581529899b8137d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aGhnwRFxs0cBhtPRz0lLvv1L-8E=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.642622+00 2025-12-09 10:15:54.642628+00 19955 DLT-332#前幅蓝绿色XL码 SPMX-20240815315185 \N \N \N 1 \N [{"file_id": "68b4eb56-3b69-4304-8be6-a552736c8a80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "798c4240de624fc18380767134ebe91a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "798c4240de624fc18380767134ebe91a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "798c4240de624fc18380767134ebe91a.jpg", "file_size": 15875, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#前幅蓝绿色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798c4240de624fc18380767134ebe91a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798c4240de624fc18380767134ebe91a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/798c4240de624fc18380767134ebe91a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/798c4240de624fc18380767134ebe91a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/798c4240de624fc18380767134ebe91a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sX5WgsUn0xpiBH8Yy6bVbjQE-Eo=", "createTime": "2024-08-15 15:07:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.646024+00 2025-12-09 10:15:54.646031+00 19956 JY-AD-160#7号灰绿色 SPMX-20240815315202 \N \N \N 1 \N [{"file_id": "b647b65b-1e60-4f05-828a-9a1addcb5566", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg", "file_size": 17297, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-160#7号灰绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d1cbe8d7f0f45e19f1dd80b056dcdd0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kBzd3gWiV6JvdReelW-_-6yiCz0=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.649425+00 2025-12-09 10:15:54.649431+00 19957 CGL-A564#XL SPMX-20240815315200 \N \N \N 1 \N [{"file_id": "66cf9801-f007-408e-a18e-fd12fe237456", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e665c0db3ee4f628f09cc1e52386735.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e665c0db3ee4f628f09cc1e52386735.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e665c0db3ee4f628f09cc1e52386735.jpg", "file_size": 15226, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A564#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e665c0db3ee4f628f09cc1e52386735.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e665c0db3ee4f628f09cc1e52386735.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e665c0db3ee4f628f09cc1e52386735.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e665c0db3ee4f628f09cc1e52386735.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e665c0db3ee4f628f09cc1e52386735.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xOr54G89ZaxakLFCo1K2GgknLjo=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.652867+00 2025-12-09 10:15:54.652874+00 19958 1238-15FWF#V5曲线番禺调色 SPMX-20240815315194 \N \N \N 1 \N [{"file_id": "b0bcc70d-54b0-441c-9b37-fcac85a3180a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e4df92cf00e4d7bbe988b96634100fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e4df92cf00e4d7bbe988b96634100fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e4df92cf00e4d7bbe988b96634100fe.jpg", "file_size": 25905, "is_delete": false, "file_type": 1, "original_file_name": "1238-15FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4df92cf00e4d7bbe988b96634100fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4df92cf00e4d7bbe988b96634100fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e4df92cf00e4d7bbe988b96634100fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e4df92cf00e4d7bbe988b96634100fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e4df92cf00e4d7bbe988b96634100fe.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1XlIX-rZWzoJJNu2IFfwlLdqG0=", "createTime": "2024-08-15 15:07:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.65633+00 2025-12-09 10:15:54.656336+00 19959 DLT-332#批布亮黄色 SPMX-20240815315197 \N \N \N 1 \N [{"file_id": "ba6d28ae-00f0-4416-8728-030f0e233391", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d8df45024ff4417b6a1b2ce5825711f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d8df45024ff4417b6a1b2ce5825711f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d8df45024ff4417b6a1b2ce5825711f.jpg", "file_size": 23434, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布亮黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8df45024ff4417b6a1b2ce5825711f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8df45024ff4417b6a1b2ce5825711f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8df45024ff4417b6a1b2ce5825711f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d8df45024ff4417b6a1b2ce5825711f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d8df45024ff4417b6a1b2ce5825711f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f5tDGzO59bZY8g1eTXvC4UMJby0=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.659739+00 2025-12-09 10:15:54.659746+00 19960 HXF0008-39#粉色 SPMX-20240815315203 \N \N \N 1 \N [{"file_id": "afeb46a2-1116-4aa9-b5e5-01f56be433a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a05c75bc588c436ca02a80978c1511b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a05c75bc588c436ca02a80978c1511b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a05c75bc588c436ca02a80978c1511b8.jpg", "file_size": 14404, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-39#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05c75bc588c436ca02a80978c1511b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05c75bc588c436ca02a80978c1511b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a05c75bc588c436ca02a80978c1511b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a05c75bc588c436ca02a80978c1511b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a05c75bc588c436ca02a80978c1511b8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a9PknS-NQPOKI3ifENz545s0aTw=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.663203+00 2025-12-09 10:15:54.66321+00 19961 LJH2047#绿色 SPMX-20240815315209 \N \N \N 1 \N [{"file_id": "d94234e0-f4e0-45c9-9a17-7df8a08a8bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dc5808395054dc5828608d558d7886f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dc5808395054dc5828608d558d7886f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dc5808395054dc5828608d558d7886f.jpg", "file_size": 42602, "is_delete": false, "file_type": 1, "original_file_name": "LJH2047#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc5808395054dc5828608d558d7886f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc5808395054dc5828608d558d7886f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dc5808395054dc5828608d558d7886f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dc5808395054dc5828608d558d7886f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dc5808395054dc5828608d558d7886f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKsXk4ZinBZ3dKdhR1ufK2IVqmk=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.666682+00 2025-12-09 10:15:54.666688+00 19962 1238-16FW# SPMX-20240815315205 \N \N \N 1 \N [{"file_id": "33eddf9a-c2ee-4d19-b5dd-41de78bfc2d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9979fbc48e1b4ea382d658c6e20443a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9979fbc48e1b4ea382d658c6e20443a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9979fbc48e1b4ea382d658c6e20443a8.jpg", "file_size": 23992, "is_delete": false, "file_type": 1, "original_file_name": "1238-16FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9979fbc48e1b4ea382d658c6e20443a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9979fbc48e1b4ea382d658c6e20443a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9979fbc48e1b4ea382d658c6e20443a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9979fbc48e1b4ea382d658c6e20443a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9979fbc48e1b4ea382d658c6e20443a8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnDRUcILLtPY_cG5QbnZBdN0x5A=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.67019+00 2025-12-09 10:15:54.670197+00 19963 0025-24#WJC22 SPMX-20240815315206 \N \N \N 1 \N [{"file_id": "36d0a154-832a-4c0a-8ab1-ecde1a1957f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c372f00a524741f0b12b8f6869385901.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c372f00a524741f0b12b8f6869385901.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c372f00a524741f0b12b8f6869385901.jpg", "file_size": 13172, "is_delete": false, "file_type": 1, "original_file_name": "0025-24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c372f00a524741f0b12b8f6869385901.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c372f00a524741f0b12b8f6869385901.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c372f00a524741f0b12b8f6869385901.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c372f00a524741f0b12b8f6869385901.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c372f00a524741f0b12b8f6869385901.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nm-_R5dB9mI_MAfAaQ0WD22gdKU=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.673582+00 2025-12-09 10:15:54.673589+00 19964 FX001-2FW#VS-D3 SPMX-20240815315198 \N \N \N 1 \N [{"file_id": "65b7afb5-21cf-489f-8be0-be4e3d7dd5cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cd7ac878df74428907a5af96d51b2fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cd7ac878df74428907a5af96d51b2fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cd7ac878df74428907a5af96d51b2fd.jpg", "file_size": 20093, "is_delete": false, "file_type": 1, "original_file_name": "FX001-2FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd7ac878df74428907a5af96d51b2fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd7ac878df74428907a5af96d51b2fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cd7ac878df74428907a5af96d51b2fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cd7ac878df74428907a5af96d51b2fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cd7ac878df74428907a5af96d51b2fd.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LuJgM1j2cK0UI-BfqyBK3bZ7Vbk=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.677364+00 2025-12-09 10:15:54.677371+00 19965 88063#A SPMX-20240815315201 \N \N \N 1 \N [{"file_id": "c28c4bb6-11e7-4c49-96a3-25300503688e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63ad1ee36d434cc7949a405b677e5a7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63ad1ee36d434cc7949a405b677e5a7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63ad1ee36d434cc7949a405b677e5a7b.jpg", "file_size": 21001, "is_delete": false, "file_type": 1, "original_file_name": "88063#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ad1ee36d434cc7949a405b677e5a7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ad1ee36d434cc7949a405b677e5a7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63ad1ee36d434cc7949a405b677e5a7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63ad1ee36d434cc7949a405b677e5a7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63ad1ee36d434cc7949a405b677e5a7b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XGa3jyJMLv4jFGokGOKG5j3BKs=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.680882+00 2025-12-09 10:15:54.680888+00 19966 FX001-3FW#VS-D3 SPMX-20240815315208 \N \N \N 1 \N [{"file_id": "432eed58-4f6f-4d7b-ba6d-286340b3deab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b9b11f6f5d4bb78e162bac84639a23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b9b11f6f5d4bb78e162bac84639a23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b9b11f6f5d4bb78e162bac84639a23.jpg", "file_size": 19167, "is_delete": false, "file_type": 1, "original_file_name": "FX001-3FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b9b11f6f5d4bb78e162bac84639a23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b9b11f6f5d4bb78e162bac84639a23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b9b11f6f5d4bb78e162bac84639a23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b9b11f6f5d4bb78e162bac84639a23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b9b11f6f5d4bb78e162bac84639a23.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2uFpXTFCeRYysKVf5wkXnkuQFhc=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.684318+00 2025-12-09 10:15:54.684325+00 19967 LZ1409#童装T4号色 SPMX-20240815315199 \N \N \N 1 \N [{"file_id": "8f3fc7ec-dd94-4789-b206-923f0f624f84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d410e6607fad4a95a1719da41de80c17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d410e6607fad4a95a1719da41de80c17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d410e6607fad4a95a1719da41de80c17.jpg", "file_size": 18046, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410e6607fad4a95a1719da41de80c17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410e6607fad4a95a1719da41de80c17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d410e6607fad4a95a1719da41de80c17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d410e6607fad4a95a1719da41de80c17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d410e6607fad4a95a1719da41de80c17.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXn7N84XNmz6OTFly6Jp44RUd38=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.687774+00 2025-12-09 10:15:54.68778+00 19968 DLT-332#批布彩兰色 SPMX-20240815315207 \N \N \N 1 \N [{"file_id": "6d65f4c4-138a-447d-9e2e-778f5f3d7629", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b83213533f76427cb97f209daeed29fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b83213533f76427cb97f209daeed29fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b83213533f76427cb97f209daeed29fc.jpg", "file_size": 18840, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布彩兰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83213533f76427cb97f209daeed29fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83213533f76427cb97f209daeed29fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b83213533f76427cb97f209daeed29fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b83213533f76427cb97f209daeed29fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b83213533f76427cb97f209daeed29fc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7Tolthnmolg89P_XymCObMdNrj8=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.691194+00 2025-12-09 10:15:54.691201+00 19969 2372FWF#黄色 SPMX-20240815315204 \N \N \N 1 \N [{"file_id": "87259afd-4faa-4165-8028-ed70b31952c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "614e35b20c8e41d4a1554672559e3970.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "614e35b20c8e41d4a1554672559e3970.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "614e35b20c8e41d4a1554672559e3970.jpg", "file_size": 14261, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614e35b20c8e41d4a1554672559e3970.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614e35b20c8e41d4a1554672559e3970.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/614e35b20c8e41d4a1554672559e3970.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/614e35b20c8e41d4a1554672559e3970.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/614e35b20c8e41d4a1554672559e3970.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nLI0c3R3BknFstB4LK3Uguns3g=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.694662+00 2025-12-09 10:15:54.694669+00 19970 0022-A2#LWQ15 SPMX-20240815315195 \N \N \N 1 \N [{"file_id": "2c07ce3e-1ccc-4cac-8021-87a99000a88b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0eaf5e905957456d807e9222ebbd2fed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0eaf5e905957456d807e9222ebbd2fed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0eaf5e905957456d807e9222ebbd2fed.jpg", "file_size": 20297, "is_delete": false, "file_type": 1, "original_file_name": "0022-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eaf5e905957456d807e9222ebbd2fed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eaf5e905957456d807e9222ebbd2fed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0eaf5e905957456d807e9222ebbd2fed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0eaf5e905957456d807e9222ebbd2fed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0eaf5e905957456d807e9222ebbd2fed.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g7Aj6y3A4TVgxjsQ6bFG6zBIs4c=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.698088+00 2025-12-09 10:15:54.698095+00 19971 LJH2047#紫色 SPMX-20240815315196 \N \N \N 1 \N [{"file_id": "934546a4-066e-469b-ae6d-9f230206ec98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afba79230bab41099a7dcac2fc1ef41a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afba79230bab41099a7dcac2fc1ef41a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afba79230bab41099a7dcac2fc1ef41a.jpg", "file_size": 42366, "is_delete": false, "file_type": 1, "original_file_name": "LJH2047#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba79230bab41099a7dcac2fc1ef41a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba79230bab41099a7dcac2fc1ef41a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afba79230bab41099a7dcac2fc1ef41a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afba79230bab41099a7dcac2fc1ef41a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afba79230bab41099a7dcac2fc1ef41a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SFNinSL7Di7N2AcRGXfwMdcDKRE=", "createTime": "2024-08-15 15:07:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.701568+00 2025-12-09 10:15:54.701579+00 19972 CGL-A564#捆条 SPMX-20240815315210 \N \N \N 1 \N [{"file_id": "9cbff32e-fcd7-47f8-aed8-3e114f9fb187", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d406e6027dff45218d57d08465be3b85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d406e6027dff45218d57d08465be3b85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d406e6027dff45218d57d08465be3b85.jpg", "file_size": 7548, "is_delete": false, "file_type": 1, "original_file_name": "CGL-A564#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d406e6027dff45218d57d08465be3b85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d406e6027dff45218d57d08465be3b85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d406e6027dff45218d57d08465be3b85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d406e6027dff45218d57d08465be3b85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d406e6027dff45218d57d08465be3b85.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6niCMwPgyUe8fpejq51QcuwXhsA=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.705014+00 2025-12-09 10:15:54.70502+00 19973 JY-AD-161#1号紫底绿花 SPMX-20240815315215 \N \N \N 1 \N [{"file_id": "e716089d-84d3-4d22-85e4-00c78f2d810a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a175fe6040d4486391c478788ee9c658.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a175fe6040d4486391c478788ee9c658.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a175fe6040d4486391c478788ee9c658.jpg", "file_size": 21443, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#1号紫底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a175fe6040d4486391c478788ee9c658.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a175fe6040d4486391c478788ee9c658.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a175fe6040d4486391c478788ee9c658.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a175fe6040d4486391c478788ee9c658.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a175fe6040d4486391c478788ee9c658.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5CoWArNSNyr7KOPwW8YefatgYg=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.708429+00 2025-12-09 10:15:54.708435+00 19974 1238-16FWF# SPMX-20240815315216 \N \N \N 1 \N [{"file_id": "36ba1d94-37ff-4cdd-a921-4734f5b2e1a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e7a3d5bec942559ae9a5acffa981ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e7a3d5bec942559ae9a5acffa981ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e7a3d5bec942559ae9a5acffa981ae.jpg", "file_size": 24391, "is_delete": false, "file_type": 1, "original_file_name": "1238-16FWF#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e7a3d5bec942559ae9a5acffa981ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e7a3d5bec942559ae9a5acffa981ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e7a3d5bec942559ae9a5acffa981ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e7a3d5bec942559ae9a5acffa981ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e7a3d5bec942559ae9a5acffa981ae.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yy43JCbfHyo2g69DoBIIus7XMAI=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.711837+00 2025-12-09 10:15:54.711843+00 19975 LJH2050#绿色 SPMX-20240815315220 \N \N \N 1 \N [{"file_id": "fc650b91-b974-4562-ae31-aba5e1fd6586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e7c4c5d1fd34acca3474139ca5c621e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e7c4c5d1fd34acca3474139ca5c621e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e7c4c5d1fd34acca3474139ca5c621e.jpg", "file_size": 57420, "is_delete": false, "file_type": 1, "original_file_name": "LJH2050#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c4c5d1fd34acca3474139ca5c621e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c4c5d1fd34acca3474139ca5c621e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e7c4c5d1fd34acca3474139ca5c621e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e7c4c5d1fd34acca3474139ca5c621e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e7c4c5d1fd34acca3474139ca5c621e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3QuXTIHKeNZFwQ06QWJl57hQ_y0=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.715291+00 2025-12-09 10:15:54.715298+00 19976 002c8f7fbd1278395d2b8f36c466fb4 SPMX-20240815315218 \N \N \N 1 \N [{"file_id": "ee0377a7-f279-4fe5-89db-9a2988166e49", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "2e5aac3b29f44474addb7e9fa7838452.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "2e5aac3b29f44474addb7e9fa7838452.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "2e5aac3b29f44474addb7e9fa7838452.jpg", "file_size": 12152, "is_delete": false, "file_type": 1, "original_file_name": "9z9ya59l2DdR5vf7fXdD7F546cebedct15ajcS6t196Y8K7sbA196HbA3H9yad5s.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2e5aac3b29f44474addb7e9fa7838452.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/2e5aac3b29f44474addb7e9fa7838452.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/2e5aac3b29f44474addb7e9fa7838452.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/2e5aac3b29f44474addb7e9fa7838452.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/2e5aac3b29f44474addb7e9fa7838452.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHgi38itLg2VyC_zz0d1-MBtJb4=", "createTime": "2024-11-12 16:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.718725+00 2025-12-09 10:15:54.718732+00 19977 FX001-4FW# SPMX-20240815315219 \N \N \N 1 \N [{"file_id": "b58a6ed0-a2e3-473f-9ab5-05bf26d11418", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac8e0af463474e089e1d60bf7c172636.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac8e0af463474e089e1d60bf7c172636.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac8e0af463474e089e1d60bf7c172636.jpg", "file_size": 20235, "is_delete": false, "file_type": 1, "original_file_name": "FX001-4FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e0af463474e089e1d60bf7c172636.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e0af463474e089e1d60bf7c172636.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac8e0af463474e089e1d60bf7c172636.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac8e0af463474e089e1d60bf7c172636.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac8e0af463474e089e1d60bf7c172636.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hRRmcF_sRPYb5S-qsoCITDcV3aM=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.722089+00 2025-12-09 10:15:54.722095+00 19978 LZ140FWF#短袖1号色 SPMX-20240815315222 \N \N \N 1 \N [{"file_id": "4f4573f9-3a94-43d6-b7bd-3664cd1d989b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91c10f2e1a8b4a1d901199a851a4e0b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91c10f2e1a8b4a1d901199a851a4e0b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91c10f2e1a8b4a1d901199a851a4e0b1.jpg", "file_size": 18790, "is_delete": false, "file_type": 1, "original_file_name": "LZ140FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c10f2e1a8b4a1d901199a851a4e0b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c10f2e1a8b4a1d901199a851a4e0b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91c10f2e1a8b4a1d901199a851a4e0b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91c10f2e1a8b4a1d901199a851a4e0b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91c10f2e1a8b4a1d901199a851a4e0b1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:je0PECHCVba4B9bPKgYp-EQTesg=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.725489+00 2025-12-09 10:15:54.725495+00 19979 CGL-X608F#白花 SPMX-20240815315221 \N \N \N 1 \N [{"file_id": "0ab87f8c-a03a-4026-894b-4ceb65676a62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0200b800df43456f994f09ae0e906940.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0200b800df43456f994f09ae0e906940.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0200b800df43456f994f09ae0e906940.jpg", "file_size": 25551, "is_delete": false, "file_type": 1, "original_file_name": "CGL-X608F#白花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0200b800df43456f994f09ae0e906940.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0200b800df43456f994f09ae0e906940.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0200b800df43456f994f09ae0e906940.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0200b800df43456f994f09ae0e906940.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0200b800df43456f994f09ae0e906940.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mjFztWdWx8CqhrtEbX-KLWhcetM=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.72891+00 2025-12-09 10:15:54.728916+00 19980 HXF0008-4#黑色 SPMX-20240815315223 \N \N \N 1 \N [{"file_id": "727e6966-64d1-41a8-830e-841231d56015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "584d2a03a2ad404bb8ba05b83a96f49c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "584d2a03a2ad404bb8ba05b83a96f49c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "584d2a03a2ad404bb8ba05b83a96f49c.jpg", "file_size": 14261, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-4#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584d2a03a2ad404bb8ba05b83a96f49c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584d2a03a2ad404bb8ba05b83a96f49c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/584d2a03a2ad404bb8ba05b83a96f49c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/584d2a03a2ad404bb8ba05b83a96f49c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/584d2a03a2ad404bb8ba05b83a96f49c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JqGNhIJQHfZUqEDSr_8Mus9vlWE=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.732299+00 2025-12-09 10:15:54.732306+00 19981 LZ1409#童装T5号色 SPMX-20240815315211 \N \N \N 1 \N [{"file_id": "cb5c6493-509c-4eda-8121-7bd74349cb05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4765234cdf4e43e0a56d4e4c11ff3c98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4765234cdf4e43e0a56d4e4c11ff3c98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4765234cdf4e43e0a56d4e4c11ff3c98.jpg", "file_size": 18083, "is_delete": false, "file_type": 1, "original_file_name": "LZ1409#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4765234cdf4e43e0a56d4e4c11ff3c98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4765234cdf4e43e0a56d4e4c11ff3c98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4765234cdf4e43e0a56d4e4c11ff3c98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4765234cdf4e43e0a56d4e4c11ff3c98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4765234cdf4e43e0a56d4e4c11ff3c98.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99KzBJcfnjrdogOLDI77RHTEFD0=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.735715+00 2025-12-09 10:15:54.735722+00 19982 88063#B SPMX-20240815315212 \N \N \N 1 \N [{"file_id": "0f1036ec-82aa-4a73-b1b7-703b0c4241e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12f0176570d6423e9e41ffd1ff26f6a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12f0176570d6423e9e41ffd1ff26f6a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12f0176570d6423e9e41ffd1ff26f6a4.jpg", "file_size": 15468, "is_delete": false, "file_type": 1, "original_file_name": "88063#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f0176570d6423e9e41ffd1ff26f6a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f0176570d6423e9e41ffd1ff26f6a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12f0176570d6423e9e41ffd1ff26f6a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12f0176570d6423e9e41ffd1ff26f6a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12f0176570d6423e9e41ffd1ff26f6a4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOReBE45jvC_AQq9amSahoLWz78=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.739177+00 2025-12-09 10:15:54.739183+00 19983 2372FWF#黑色 SPMX-20240815315214 \N \N \N 1 \N [{"file_id": "c4e45c97-aea1-438e-8d26-1984c4616a3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "876a300b1a444fb2a0bee0dd28f33d52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "876a300b1a444fb2a0bee0dd28f33d52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "876a300b1a444fb2a0bee0dd28f33d52.jpg", "file_size": 17263, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876a300b1a444fb2a0bee0dd28f33d52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876a300b1a444fb2a0bee0dd28f33d52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876a300b1a444fb2a0bee0dd28f33d52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/876a300b1a444fb2a0bee0dd28f33d52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/876a300b1a444fb2a0bee0dd28f33d52.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LReYG48EuyyZFmgUV5fQRQe94p0=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.742618+00 2025-12-09 10:15:54.742625+00 19984 HXF0008-4#白色 SPMX-20240815315213 \N \N \N 1 \N [{"file_id": "7b163259-34d3-420d-8f27-fb787b5365b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg", "file_size": 14380, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-4#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53a7d3a6c95e4bfd8c8ff30543b0a60a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLOC6KXR7HhYJibQAK4CXN4K56w=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.746075+00 2025-12-09 10:15:54.746081+00 19985 DLT-332#批布枣红色 SPMX-20240815315217 \N \N \N 1 \N [{"file_id": "36040b0a-8338-4534-a0e0-4d8a58cd01aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e4145e2e9ee479ca07d09ccb0e900a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e4145e2e9ee479ca07d09ccb0e900a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e4145e2e9ee479ca07d09ccb0e900a5.jpg", "file_size": 18051, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4145e2e9ee479ca07d09ccb0e900a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4145e2e9ee479ca07d09ccb0e900a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e4145e2e9ee479ca07d09ccb0e900a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e4145e2e9ee479ca07d09ccb0e900a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e4145e2e9ee479ca07d09ccb0e900a5.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SqH5V4VqpeJ81B1_VgMANzf0Q3I=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.749486+00 2025-12-09 10:15:54.749492+00 19986 LZ140FWF#短袖3号色 SPMX-20240815315233 \N \N \N 1 \N [{"file_id": "ea02a762-b3ba-4aac-a273-c6ebd4a94562", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c8f6728194a41ea8c8cdbfc51de6e37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c8f6728194a41ea8c8cdbfc51de6e37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c8f6728194a41ea8c8cdbfc51de6e37.jpg", "file_size": 17343, "is_delete": false, "file_type": 1, "original_file_name": "LZ140FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c8f6728194a41ea8c8cdbfc51de6e37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c8f6728194a41ea8c8cdbfc51de6e37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c8f6728194a41ea8c8cdbfc51de6e37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c8f6728194a41ea8c8cdbfc51de6e37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c8f6728194a41ea8c8cdbfc51de6e37.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KlRjQRd9EHlndbytpfjgvn05JmQ=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.752924+00 2025-12-09 10:15:54.75293+00 19987 1238-16FWF#V5曲线 SPMX-20240815315227 \N \N \N 1 \N [{"file_id": "5f146abf-6fb4-4ea2-902a-9b7a8553e495", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c1d27da1ad0496ba75f7cf8d902eb07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c1d27da1ad0496ba75f7cf8d902eb07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c1d27da1ad0496ba75f7cf8d902eb07.jpg", "file_size": 23926, "is_delete": false, "file_type": 1, "original_file_name": "1238-16FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1d27da1ad0496ba75f7cf8d902eb07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1d27da1ad0496ba75f7cf8d902eb07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c1d27da1ad0496ba75f7cf8d902eb07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c1d27da1ad0496ba75f7cf8d902eb07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c1d27da1ad0496ba75f7cf8d902eb07.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iz-QOppwV4_cxn5aJMOKTtrOaPE=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.756332+00 2025-12-09 10:15:54.756339+00 19988 2372FWF#黑色番禺调色 SPMX-20240815315225 \N \N \N 1 \N [{"file_id": "927fbb5c-a482-4a4b-ac5b-d437618181b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57476cd753d347a698e1ab6ce20df567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57476cd753d347a698e1ab6ce20df567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57476cd753d347a698e1ab6ce20df567.jpg", "file_size": 18499, "is_delete": false, "file_type": 1, "original_file_name": "2372FWF#黑色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57476cd753d347a698e1ab6ce20df567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57476cd753d347a698e1ab6ce20df567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57476cd753d347a698e1ab6ce20df567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57476cd753d347a698e1ab6ce20df567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57476cd753d347a698e1ab6ce20df567.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BIKU-g9_EWo5lFtKDj19A0QZnGw=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.759789+00 2025-12-09 10:15:54.759795+00 19989 CGL-X608F#粉花 SPMX-20240815315231 \N \N \N 1 \N [{"file_id": "09bec56c-65ca-4bcd-9412-a36e4c4d098e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2252ffe9ccd743289c3c3ce5aeabe2dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2252ffe9ccd743289c3c3ce5aeabe2dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2252ffe9ccd743289c3c3ce5aeabe2dc.jpg", "file_size": 28206, "is_delete": false, "file_type": 1, "original_file_name": "CGL-X608F#粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ffe9ccd743289c3c3ce5aeabe2dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ffe9ccd743289c3c3ce5aeabe2dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2252ffe9ccd743289c3c3ce5aeabe2dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2252ffe9ccd743289c3c3ce5aeabe2dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2252ffe9ccd743289c3c3ce5aeabe2dc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4SOz4mZsEvzgHTbHmavvgOuXY_o=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.763205+00 2025-12-09 10:15:54.763211+00 19990 DLT-332#批布浅粉色 SPMX-20240815315228 \N \N \N 1 \N [{"file_id": "74373773-1cee-4646-879a-ab9c2bd0e38b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c8e71500dc14bd5bd374c84fb17e26f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c8e71500dc14bd5bd374c84fb17e26f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c8e71500dc14bd5bd374c84fb17e26f.jpg", "file_size": 21100, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布浅粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8e71500dc14bd5bd374c84fb17e26f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8e71500dc14bd5bd374c84fb17e26f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c8e71500dc14bd5bd374c84fb17e26f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c8e71500dc14bd5bd374c84fb17e26f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c8e71500dc14bd5bd374c84fb17e26f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ThUlt4IXrHvxz64QIkFPLYEDWOU=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.76661+00 2025-12-09 10:15:54.766617+00 19991 88063#C SPMX-20240815315224 \N \N \N 1 \N [{"file_id": "64257665-0951-478a-8869-c3253b367a4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af800685773345e7a67a31f1a573fc47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af800685773345e7a67a31f1a573fc47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af800685773345e7a67a31f1a573fc47.jpg", "file_size": 27465, "is_delete": false, "file_type": 1, "original_file_name": "88063#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af800685773345e7a67a31f1a573fc47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af800685773345e7a67a31f1a573fc47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af800685773345e7a67a31f1a573fc47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af800685773345e7a67a31f1a573fc47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af800685773345e7a67a31f1a573fc47.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qG-66QVAHt9s1CWq6OetNBqYmM4=", "createTime": "2024-08-15 15:07:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.770008+00 2025-12-09 10:15:54.770014+00 19992 JY-AD-161#2号红底姜黄花 SPMX-20240815315226 \N \N \N 1 \N [{"file_id": "58d19a55-756f-489e-8fb9-f5e1b95abf1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bba5d0ebaaed4004905d226bcc3229e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bba5d0ebaaed4004905d226bcc3229e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bba5d0ebaaed4004905d226bcc3229e5.jpg", "file_size": 18285, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#2号红底姜黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba5d0ebaaed4004905d226bcc3229e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba5d0ebaaed4004905d226bcc3229e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bba5d0ebaaed4004905d226bcc3229e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bba5d0ebaaed4004905d226bcc3229e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bba5d0ebaaed4004905d226bcc3229e5.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCn7nsxDBF-t3tOMpbnWfnSdzM0=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.77343+00 2025-12-09 10:15:54.773436+00 19993 002FWF#上节 SPMX-20240815315229 \N \N \N 1 \N [{"file_id": "e0c8e62b-9d8e-4c9e-8e09-633c13d73271", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg", "file_size": 10759, "is_delete": false, "file_type": 1, "original_file_name": "9B3w2ad52F9Qdj240RcFaB21alcgajaZak7kakbl5K8z2w6Y3f9Q5P4T6vaS9kdj.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/5cc285f9f8ef4f6e9228c5c4c883d9c7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lVSpfDpW76QB2fdY3bsvyCAKPtQ=", "createTime": "2024-11-12 16:44:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.776846+00 2025-12-09 10:15:54.776852+00 19994 FX001-4FW#VS-D3 SPMX-20240815315230 \N \N \N 1 \N [{"file_id": "1a176aa2-9d9a-4f92-9a38-e638ff397fc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfb36045aff249d0ac662b98d68d2b61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfb36045aff249d0ac662b98d68d2b61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfb36045aff249d0ac662b98d68d2b61.jpg", "file_size": 20235, "is_delete": false, "file_type": 1, "original_file_name": "FX001-4FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb36045aff249d0ac662b98d68d2b61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb36045aff249d0ac662b98d68d2b61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb36045aff249d0ac662b98d68d2b61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfb36045aff249d0ac662b98d68d2b61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfb36045aff249d0ac662b98d68d2b61.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-SJXjMMoNGfsqAq1eQrNYHgQPY=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.780289+00 2025-12-09 10:15:54.780295+00 19995 LJH2050#黄色 SPMX-20240815315232 \N \N \N 1 \N [{"file_id": "cacc871a-3cee-4de8-a10f-3dd2033f89dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01b56928a9094c9b9298ef7dadfd1502.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01b56928a9094c9b9298ef7dadfd1502.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01b56928a9094c9b9298ef7dadfd1502.jpg", "file_size": 54154, "is_delete": false, "file_type": 1, "original_file_name": "LJH2050#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b56928a9094c9b9298ef7dadfd1502.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b56928a9094c9b9298ef7dadfd1502.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01b56928a9094c9b9298ef7dadfd1502.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01b56928a9094c9b9298ef7dadfd1502.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01b56928a9094c9b9298ef7dadfd1502.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9FgUkcv3tsaZxXFADe06-cgZILQ=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.783752+00 2025-12-09 10:15:54.783759+00 19996 HXF0008-40#白色 SPMX-20240815315234 \N \N \N 1 \N [{"file_id": "6f48371e-037d-4828-85b9-3f9d62313893", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2054f7f06ce0433aa18907e35510e390.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2054f7f06ce0433aa18907e35510e390.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2054f7f06ce0433aa18907e35510e390.jpg", "file_size": 23201, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-40#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054f7f06ce0433aa18907e35510e390.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054f7f06ce0433aa18907e35510e390.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2054f7f06ce0433aa18907e35510e390.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2054f7f06ce0433aa18907e35510e390.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2054f7f06ce0433aa18907e35510e390.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IOsNIDW-S7mqCnf3T52QAti6xj0=", "createTime": "2024-08-15 15:07:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.787238+00 2025-12-09 10:15:54.787244+00 19997 23763FWF#WJC22 SPMX-20240815315235 \N \N \N 1 \N [{"file_id": "da6fd6c7-9ef3-4528-87f7-f1ce5e2af0b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "041e3ba7358e4451958c43fd840a34d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "041e3ba7358e4451958c43fd840a34d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "041e3ba7358e4451958c43fd840a34d4.jpg", "file_size": 18111, "is_delete": false, "file_type": 1, "original_file_name": "23763FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041e3ba7358e4451958c43fd840a34d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041e3ba7358e4451958c43fd840a34d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/041e3ba7358e4451958c43fd840a34d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/041e3ba7358e4451958c43fd840a34d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/041e3ba7358e4451958c43fd840a34d4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UePViAXyhjTsV_o-hRckWMFgkMg=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.790671+00 2025-12-09 10:15:54.790678+00 19998 002FWF#下节枣红底大圆点 SPMX-20240815315236 \N \N \N 1 \N [{"file_id": "b5c06b6a-ee81-4719-9d01-5e49781bf316", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "446f4cf8e93446dda4b291d671f8f45e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "446f4cf8e93446dda4b291d671f8f45e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "446f4cf8e93446dda4b291d671f8f45e.jpg", "file_size": 10445, "is_delete": false, "file_type": 1, "original_file_name": "33dyfxaY6a5k5D7s0344fEaMe41w104q2t4C78fk9c2ubl0J0k1a9Meq1z3q5ubL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/446f4cf8e93446dda4b291d671f8f45e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/446f4cf8e93446dda4b291d671f8f45e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/446f4cf8e93446dda4b291d671f8f45e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/446f4cf8e93446dda4b291d671f8f45e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/446f4cf8e93446dda4b291d671f8f45e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:porOKXuMoNc917B2nhC5YdTLTwQ=", "createTime": "2024-11-12 16:44:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.794112+00 2025-12-09 10:15:54.794119+00 19999 LJH2051#原版色 SPMX-20240815315252 \N \N \N 1 \N [{"file_id": "362fa729-596b-44ea-aad7-49445c44edd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c108c68bab64cfab1405135123a1ea9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c108c68bab64cfab1405135123a1ea9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c108c68bab64cfab1405135123a1ea9.jpg", "file_size": 89111, "is_delete": false, "file_type": 1, "original_file_name": "LJH2051#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c108c68bab64cfab1405135123a1ea9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c108c68bab64cfab1405135123a1ea9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c108c68bab64cfab1405135123a1ea9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c108c68bab64cfab1405135123a1ea9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c108c68bab64cfab1405135123a1ea9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IGzz7xRfnXdGUT6ZH5p4gM3mbI=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.797524+00 2025-12-09 10:15:54.797531+00 20000 238#-定位裁-卡其 SPMX-20240815315247 \N \N \N 1 \N [{"file_id": "7fa67087-10f6-4fed-a6b7-eab62015062b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b492abfbb90d49f4b5d7e4e328bd2cce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b492abfbb90d49f4b5d7e4e328bd2cce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b492abfbb90d49f4b5d7e4e328bd2cce.jpg", "file_size": 69907, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492abfbb90d49f4b5d7e4e328bd2cce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492abfbb90d49f4b5d7e4e328bd2cce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b492abfbb90d49f4b5d7e4e328bd2cce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b492abfbb90d49f4b5d7e4e328bd2cce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b492abfbb90d49f4b5d7e4e328bd2cce.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1RKOzHZ9DCVFFFEeIT1WatPm854=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.800948+00 2025-12-09 10:15:54.800954+00 20001 88063#E SPMX-20240815315248 \N \N \N 1 \N [{"file_id": "bd53e575-b490-4c31-834b-8621ae6448a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "295cfd0c8f7f4fb18553e968a02b3e53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "295cfd0c8f7f4fb18553e968a02b3e53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "295cfd0c8f7f4fb18553e968a02b3e53.jpg", "file_size": 13042, "is_delete": false, "file_type": 1, "original_file_name": "88063#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295cfd0c8f7f4fb18553e968a02b3e53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295cfd0c8f7f4fb18553e968a02b3e53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295cfd0c8f7f4fb18553e968a02b3e53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/295cfd0c8f7f4fb18553e968a02b3e53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/295cfd0c8f7f4fb18553e968a02b3e53.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZLALi0KH-me7uITRult4CxioPE=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.804399+00 2025-12-09 10:15:54.804406+00 20002 DLT-332#批布蓝绿色 SPMX-20240815315254 \N \N \N 1 \N [{"file_id": "91f6ece0-f448-4166-b4fd-475e8cefae5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436f62dfee164bc0b8b65bef0e3a51af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436f62dfee164bc0b8b65bef0e3a51af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436f62dfee164bc0b8b65bef0e3a51af.jpg", "file_size": 19952, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布蓝绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436f62dfee164bc0b8b65bef0e3a51af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436f62dfee164bc0b8b65bef0e3a51af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436f62dfee164bc0b8b65bef0e3a51af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436f62dfee164bc0b8b65bef0e3a51af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436f62dfee164bc0b8b65bef0e3a51af.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqKVQA0i1bMiD0KAGCWJvHMCwFA=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.807849+00 2025-12-09 10:15:54.807856+00 20003 CGL-X608F#蓝花 SPMX-20240815315237 \N \N \N 1 \N [{"file_id": "dd8e9c21-9494-47fb-8d66-b8d6da658876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3233c404ec0341ab93f292fda83770a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3233c404ec0341ab93f292fda83770a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3233c404ec0341ab93f292fda83770a2.jpg", "file_size": 26474, "is_delete": false, "file_type": 1, "original_file_name": "CGL-X608F#蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3233c404ec0341ab93f292fda83770a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3233c404ec0341ab93f292fda83770a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3233c404ec0341ab93f292fda83770a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3233c404ec0341ab93f292fda83770a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3233c404ec0341ab93f292fda83770a2.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPTPZEJVVAliLHxDRsLAocIvplg=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.811294+00 2025-12-09 10:15:54.8113+00 20004 JY-AD-161#5号墨绿底粉色 SPMX-20240815315250 \N \N \N 1 \N [{"file_id": "963f5754-e587-4e18-be31-9f63fc59a9f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2512de042cc49059eea4403043b3966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2512de042cc49059eea4403043b3966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2512de042cc49059eea4403043b3966.jpg", "file_size": 19406, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#5号墨绿底粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2512de042cc49059eea4403043b3966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2512de042cc49059eea4403043b3966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2512de042cc49059eea4403043b3966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2512de042cc49059eea4403043b3966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2512de042cc49059eea4403043b3966.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bLlHPBU31topqyU59PZcjv426OY=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.815051+00 2025-12-09 10:15:54.815058+00 20005 HXF0008-40#粉色 SPMX-20240815315245 \N \N \N 1 \N [{"file_id": "a008180a-b95e-44ba-bd8c-b87c53aea185", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d629dec83fd642ad8e8fdfc71d374e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d629dec83fd642ad8e8fdfc71d374e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d629dec83fd642ad8e8fdfc71d374e0c.jpg", "file_size": 20838, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-40#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d629dec83fd642ad8e8fdfc71d374e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d629dec83fd642ad8e8fdfc71d374e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d629dec83fd642ad8e8fdfc71d374e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d629dec83fd642ad8e8fdfc71d374e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d629dec83fd642ad8e8fdfc71d374e0c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mK0171Cgu0i7R1I6kz6i8soUODM=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.818764+00 2025-12-09 10:15:54.818769+00 20006 CGLZ033#L SPMX-20240815315249 \N \N \N 1 \N [{"file_id": "a0261620-863f-4ca6-bc0d-1066193eca2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "227391b0df8e49a3be19b46876336835.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "227391b0df8e49a3be19b46876336835.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "227391b0df8e49a3be19b46876336835.jpg", "file_size": 12562, "is_delete": false, "file_type": 1, "original_file_name": "CGLZ033#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227391b0df8e49a3be19b46876336835.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227391b0df8e49a3be19b46876336835.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227391b0df8e49a3be19b46876336835.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/227391b0df8e49a3be19b46876336835.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/227391b0df8e49a3be19b46876336835.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqXZYFF2jDFvX_aZgV44PvBSCpQ=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.822405+00 2025-12-09 10:15:54.822411+00 20007 88063#D SPMX-20240815315240 \N \N \N 1 \N [{"file_id": "b3d04a16-9436-4442-a2fe-f37ab71303a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg", "file_size": 15989, "is_delete": false, "file_type": 1, "original_file_name": "88063#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d041685d87f74bbb8a1e7a7aeb5ebfc5.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7-W7O1Qf2p0255xUdDD3vyIoWE=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.826108+00 2025-12-09 10:15:54.826115+00 20008 JY-AD-161#4号藏蓝底绿色 SPMX-20240815315241 \N \N \N 1 \N [{"file_id": "a03d6c86-482a-45ad-bd80-8a2aaaec61d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13e1fecd469e40dfa16fa122c6846656.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13e1fecd469e40dfa16fa122c6846656.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13e1fecd469e40dfa16fa122c6846656.jpg", "file_size": 18867, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#4号藏蓝底绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e1fecd469e40dfa16fa122c6846656.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e1fecd469e40dfa16fa122c6846656.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13e1fecd469e40dfa16fa122c6846656.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13e1fecd469e40dfa16fa122c6846656.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13e1fecd469e40dfa16fa122c6846656.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1AM42OBSUvcRoxpDbu3J8yQ5bsQ=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.830003+00 2025-12-09 10:15:54.830009+00 20009 LZ140FWF#短袖5号色 SPMX-20240815315253 \N \N \N 1 \N [{"file_id": "0aefb389-ee0f-4745-828f-2868444342d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "391d1abc46074109ad9f22bc041cd05d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "391d1abc46074109ad9f22bc041cd05d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "391d1abc46074109ad9f22bc041cd05d.jpg", "file_size": 18689, "is_delete": false, "file_type": 1, "original_file_name": "LZ140FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391d1abc46074109ad9f22bc041cd05d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391d1abc46074109ad9f22bc041cd05d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/391d1abc46074109ad9f22bc041cd05d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/391d1abc46074109ad9f22bc041cd05d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/391d1abc46074109ad9f22bc041cd05d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nj1g7A452krTBRpUINlYTF8pKTg=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.83391+00 2025-12-09 10:15:54.833917+00 20010 DLT-332#批布玫红色 SPMX-20240815315239 \N \N \N 1 \N [{"file_id": "7be0b552-6ba7-4a4e-a6f0-fe81af75a2a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b51751a653f4f12b1b2413a075b64b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b51751a653f4f12b1b2413a075b64b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b51751a653f4f12b1b2413a075b64b2.jpg", "file_size": 19929, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332#批布玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b51751a653f4f12b1b2413a075b64b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b51751a653f4f12b1b2413a075b64b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b51751a653f4f12b1b2413a075b64b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b51751a653f4f12b1b2413a075b64b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b51751a653f4f12b1b2413a075b64b2.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hhk5LumiFNSqhgbnfOKqRNjnWzM=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.837658+00 2025-12-09 10:15:54.837664+00 20011 002FWF#下节白底大圆点 SPMX-20240815315246 \N \N \N 1 \N [{"file_id": "39177870-60a0-4099-bff0-631353525733", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "76b6a754017f4379b37f5315a334852e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "76b6a754017f4379b37f5315a334852e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "76b6a754017f4379b37f5315a334852e.jpg", "file_size": 10899, "is_delete": false, "file_type": 1, "original_file_name": "3qee2T9Y7U3ubu7cbxbS4fdN9l9m326h5g9H4F3dcI334s9Q1q9l6Z2zdVaLbN5r.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/76b6a754017f4379b37f5315a334852e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/76b6a754017f4379b37f5315a334852e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/76b6a754017f4379b37f5315a334852e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/76b6a754017f4379b37f5315a334852e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/76b6a754017f4379b37f5315a334852e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z48wO_pFTe3BPcBiFlReUolo6LY=", "createTime": "2024-11-12 16:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.841395+00 2025-12-09 10:15:54.841402+00 20012 LZ140FWF#短袖4号色 SPMX-20240815315244 \N \N \N 1 \N [{"file_id": "f46441f6-284d-4fa5-8869-e01dabc2a952", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0165c08f7f54bc580502e40b0864417.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0165c08f7f54bc580502e40b0864417.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0165c08f7f54bc580502e40b0864417.jpg", "file_size": 18184, "is_delete": false, "file_type": 1, "original_file_name": "LZ140FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0165c08f7f54bc580502e40b0864417.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0165c08f7f54bc580502e40b0864417.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0165c08f7f54bc580502e40b0864417.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0165c08f7f54bc580502e40b0864417.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0165c08f7f54bc580502e40b0864417.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CtNXRxk9qGYy8BKBxQd82K8ZO6s=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.845161+00 2025-12-09 10:15:54.845168+00 20013 FX001F#2XL VS-D3 SPMX-20240815315251 \N \N \N 1 \N [{"file_id": "2d0e62d3-07d9-4e7c-a409-af304fa9886a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b9f832eae4b4f4ab99dbab7f778fb7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b9f832eae4b4f4ab99dbab7f778fb7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b9f832eae4b4f4ab99dbab7f778fb7a.jpg", "file_size": 5756, "is_delete": false, "file_type": 1, "original_file_name": "FX001F#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9f832eae4b4f4ab99dbab7f778fb7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9f832eae4b4f4ab99dbab7f778fb7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b9f832eae4b4f4ab99dbab7f778fb7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b9f832eae4b4f4ab99dbab7f778fb7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b9f832eae4b4f4ab99dbab7f778fb7a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9WjIx15hw9_JVxb7H7dkXWWkHrQ=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.84884+00 2025-12-09 10:15:54.848847+00 20014 LJH2051#亮黄坯布 SPMX-20240815315238 \N \N \N 1 \N [{"file_id": "db036764-a21e-4185-a01b-fc6526a677e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2c6779e116043a493aed23b4abe6c9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2c6779e116043a493aed23b4abe6c9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2c6779e116043a493aed23b4abe6c9e.jpg", "file_size": 78291, "is_delete": false, "file_type": 1, "original_file_name": "LJH2051#亮黄坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6779e116043a493aed23b4abe6c9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6779e116043a493aed23b4abe6c9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2c6779e116043a493aed23b4abe6c9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2c6779e116043a493aed23b4abe6c9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2c6779e116043a493aed23b4abe6c9e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lxY1fUReaz3SEIdeVLqcsU2kAww=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.852329+00 2025-12-09 10:15:54.852335+00 20015 FX001-5FW#VS-D3 SPMX-20240815315242 \N \N \N 1 \N [{"file_id": "48d8e534-e639-44c3-bd69-d5e96cb75884", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05b43d206e734e498d61ba95415b0eb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05b43d206e734e498d61ba95415b0eb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05b43d206e734e498d61ba95415b0eb6.jpg", "file_size": 18998, "is_delete": false, "file_type": 1, "original_file_name": "FX001-5FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43d206e734e498d61ba95415b0eb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43d206e734e498d61ba95415b0eb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05b43d206e734e498d61ba95415b0eb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05b43d206e734e498d61ba95415b0eb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05b43d206e734e498d61ba95415b0eb6.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lQYs7Sp80Mp_XG6dC2f3rKWQmCA=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.855771+00 2025-12-09 10:15:54.855777+00 20016 1238-17FWF#V5曲线 SPMX-20240815315243 \N \N \N 1 \N [{"file_id": "4292bef4-907a-4b1b-b5f0-81a69ca13bd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ce08180b98e4507badc936fb7f5f06e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ce08180b98e4507badc936fb7f5f06e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ce08180b98e4507badc936fb7f5f06e.jpg", "file_size": 22918, "is_delete": false, "file_type": 1, "original_file_name": "1238-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce08180b98e4507badc936fb7f5f06e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce08180b98e4507badc936fb7f5f06e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ce08180b98e4507badc936fb7f5f06e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ce08180b98e4507badc936fb7f5f06e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ce08180b98e4507badc936fb7f5f06e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKZHDx6AcJUuBgUC7QXFLSTKx04=", "createTime": "2024-08-15 15:07:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.859193+00 2025-12-09 10:15:54.859199+00 20017 DLT-332前幅彩兰色2XL码 SPMX-20240815315268 \N \N \N 1 \N [{"file_id": "1296fd8b-dfc5-46c6-890f-a3f20f000446", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e8fbb4689b4131a9c31ddfbad05fc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e8fbb4689b4131a9c31ddfbad05fc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e8fbb4689b4131a9c31ddfbad05fc8.jpg", "file_size": 15056, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332前幅彩兰色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e8fbb4689b4131a9c31ddfbad05fc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e8fbb4689b4131a9c31ddfbad05fc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e8fbb4689b4131a9c31ddfbad05fc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e8fbb4689b4131a9c31ddfbad05fc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e8fbb4689b4131a9c31ddfbad05fc8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NEHOEZz4BduZW0vSrbiHWqprpM0=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.862626+00 2025-12-09 10:15:54.862632+00 20018 1238-18FWF# SPMX-20240815315255 \N \N \N 1 \N [{"file_id": "efb919a5-8d8a-4159-9c6d-c9f079fd12fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53bdaabcc2994bd381fe62a43d168f9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53bdaabcc2994bd381fe62a43d168f9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53bdaabcc2994bd381fe62a43d168f9d.jpg", "file_size": 28715, "is_delete": false, "file_type": 1, "original_file_name": "1238-18FWF#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bdaabcc2994bd381fe62a43d168f9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bdaabcc2994bd381fe62a43d168f9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bdaabcc2994bd381fe62a43d168f9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53bdaabcc2994bd381fe62a43d168f9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53bdaabcc2994bd381fe62a43d168f9d.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4V-VSh1GcAzS12m6Cfd5TFtAsQ=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.866102+00 2025-12-09 10:15:54.866108+00 20019 CGLZ033#M SPMX-20240815315260 \N \N \N 1 \N [{"file_id": "7f8d0604-1d28-4cee-9e30-711126c7b7c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95ab599148124fb181b1285481668e49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95ab599148124fb181b1285481668e49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95ab599148124fb181b1285481668e49.jpg", "file_size": 12293, "is_delete": false, "file_type": 1, "original_file_name": "CGLZ033#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab599148124fb181b1285481668e49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab599148124fb181b1285481668e49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ab599148124fb181b1285481668e49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95ab599148124fb181b1285481668e49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95ab599148124fb181b1285481668e49.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WyppmrBmjD3JBDGXSkAyg7H6AcY=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.869535+00 2025-12-09 10:15:54.869541+00 20020 JY-AD-161#8号黑底白色 SPMX-20240815315262 \N \N \N 1 \N [{"file_id": "54b6c4c1-1a43-4cda-bde4-5c3e5dd09276", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3dbf0577da3465dba90690e6d989f13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3dbf0577da3465dba90690e6d989f13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3dbf0577da3465dba90690e6d989f13.jpg", "file_size": 21680, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#8号黑底白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbf0577da3465dba90690e6d989f13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbf0577da3465dba90690e6d989f13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3dbf0577da3465dba90690e6d989f13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3dbf0577da3465dba90690e6d989f13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3dbf0577da3465dba90690e6d989f13.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6IRWRmylUO0awHGbMLQ5RAk4zzQ=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.873199+00 2025-12-09 10:15:54.873206+00 20021 HXF0008-41#-黑 SPMX-20240815315267 \N \N \N 1 \N [{"file_id": "9d24075f-10ed-4a15-855f-65d6d9b4574a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02f91a8b2c6f4af48d1ae5b3b516482a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02f91a8b2c6f4af48d1ae5b3b516482a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02f91a8b2c6f4af48d1ae5b3b516482a.jpg", "file_size": 16455, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-41#-黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f91a8b2c6f4af48d1ae5b3b516482a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f91a8b2c6f4af48d1ae5b3b516482a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02f91a8b2c6f4af48d1ae5b3b516482a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02f91a8b2c6f4af48d1ae5b3b516482a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02f91a8b2c6f4af48d1ae5b3b516482a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:csokdytnLbY_yWAL5cIxu_ofrxU=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.877343+00 2025-12-09 10:15:54.87735+00 20022 LZ140FWF#短袖6号色 SPMX-20240815315266 \N \N \N 1 \N [{"file_id": "26d04b99-c8d7-4e5e-960f-5a7731984f0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f8abe70ca8d45bea1c047a6f7838ca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f8abe70ca8d45bea1c047a6f7838ca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f8abe70ca8d45bea1c047a6f7838ca4.jpg", "file_size": 19740, "is_delete": false, "file_type": 1, "original_file_name": "LZ140FWF#短袖6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8abe70ca8d45bea1c047a6f7838ca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8abe70ca8d45bea1c047a6f7838ca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f8abe70ca8d45bea1c047a6f7838ca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f8abe70ca8d45bea1c047a6f7838ca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f8abe70ca8d45bea1c047a6f7838ca4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uKXWBzZYj8w4_Bt4_7LffJsL04c=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.88112+00 2025-12-09 10:15:54.881126+00 20023 238#-定位裁-橙色 SPMX-20240815315259 \N \N \N 1 \N [{"file_id": "286ab39d-1dda-44d8-b8ca-0a53ce2a0d37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eabd9601bc44ef49f6b4f16d04180e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eabd9601bc44ef49f6b4f16d04180e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eabd9601bc44ef49f6b4f16d04180e1.jpg", "file_size": 70161, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eabd9601bc44ef49f6b4f16d04180e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eabd9601bc44ef49f6b4f16d04180e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eabd9601bc44ef49f6b4f16d04180e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eabd9601bc44ef49f6b4f16d04180e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eabd9601bc44ef49f6b4f16d04180e1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oYRKybFa3vIb_hqLt1IuUIQcPX8=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.884636+00 2025-12-09 10:15:54.884643+00 20024 002FWF#下节黄底大圆点 SPMX-20240815315257 \N \N \N 1 \N [{"file_id": "2938c407-b8b8-4de4-8a45-1c25e7955342", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "b0dfde0ed13e44a880eee7cc6e0320b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "b0dfde0ed13e44a880eee7cc6e0320b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "b0dfde0ed13e44a880eee7cc6e0320b1.jpg", "file_size": 10630, "is_delete": false, "file_type": 1, "original_file_name": "3w3peq4K64bQ0e6d5McXeH87ej0Tb02jdP4J32360y3t7Ecr6ieh3O7p400s6B4y.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/b0dfde0ed13e44a880eee7cc6e0320b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/b0dfde0ed13e44a880eee7cc6e0320b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/b0dfde0ed13e44a880eee7cc6e0320b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/b0dfde0ed13e44a880eee7cc6e0320b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/b0dfde0ed13e44a880eee7cc6e0320b1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LlYgXkTc9tLmVW7IPXdv1G5s5WM=", "createTime": "2024-11-12 16:44:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.888012+00 2025-12-09 10:15:54.888017+00 20025 FX001F#5XL VS-D3 SPMX-20240815315261 \N \N \N 1 \N [{"file_id": "881bf1ad-c365-448a-9853-4bd388b125e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5c289b2086f4b7a83f3c777be7b0ca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5c289b2086f4b7a83f3c777be7b0ca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5c289b2086f4b7a83f3c777be7b0ca6.jpg", "file_size": 6242, "is_delete": false, "file_type": 1, "original_file_name": "FX001F#5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c289b2086f4b7a83f3c777be7b0ca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c289b2086f4b7a83f3c777be7b0ca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c289b2086f4b7a83f3c777be7b0ca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5c289b2086f4b7a83f3c777be7b0ca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5c289b2086f4b7a83f3c777be7b0ca6.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eMyO3DL-C9147EKtHYIcQnXXD40=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.891494+00 2025-12-09 10:15:54.891502+00 20026 1238-18FWF#V5曲线 SPMX-20240815315265 \N \N \N 1 \N [{"file_id": "cfc36ee4-e316-4c87-b26a-b9f2aeb538fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22e80c295b6746b09ea6262434dffeef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22e80c295b6746b09ea6262434dffeef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22e80c295b6746b09ea6262434dffeef.jpg", "file_size": 30252, "is_delete": false, "file_type": 1, "original_file_name": "1238-18FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e80c295b6746b09ea6262434dffeef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e80c295b6746b09ea6262434dffeef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22e80c295b6746b09ea6262434dffeef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22e80c295b6746b09ea6262434dffeef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22e80c295b6746b09ea6262434dffeef.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8TyPrm19TCnhO69bYVeuu0WVkI=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.895071+00 2025-12-09 10:15:54.895077+00 20027 88063#F SPMX-20240815315258 \N \N \N 1 \N [{"file_id": "de887503-8859-4d62-b34b-83204a6678ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24a984dff999449fae4f765be1c220e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24a984dff999449fae4f765be1c220e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24a984dff999449fae4f765be1c220e9.jpg", "file_size": 8536, "is_delete": false, "file_type": 1, "original_file_name": "88063#F.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a984dff999449fae4f765be1c220e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a984dff999449fae4f765be1c220e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24a984dff999449fae4f765be1c220e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24a984dff999449fae4f765be1c220e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24a984dff999449fae4f765be1c220e9.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2mjukaShVwAbLmfSOOj04RmgMfM=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.898448+00 2025-12-09 10:15:54.898453+00 20028 HXF0008-41#-粉 SPMX-20240815315256 \N \N \N 1 \N [{"file_id": "213af739-d26b-4ce8-b6fe-7de61f007b2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86d815d9a7ac491a9b68c578647891d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86d815d9a7ac491a9b68c578647891d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86d815d9a7ac491a9b68c578647891d6.jpg", "file_size": 11019, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-41#-粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d815d9a7ac491a9b68c578647891d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d815d9a7ac491a9b68c578647891d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d815d9a7ac491a9b68c578647891d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86d815d9a7ac491a9b68c578647891d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86d815d9a7ac491a9b68c578647891d6.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bi3SmSkd5Y8HiTcGj54g5v8Pups=", "createTime": "2024-08-15 15:07:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.90186+00 2025-12-09 10:15:54.901868+00 20029 LJH2051#彩蓝 SPMX-20240815315264 \N \N \N 1 \N [{"file_id": "4931bda3-0eac-47ab-a585-bbf1e57b266a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e682b0f770114d8fb7d87097a30e75be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e682b0f770114d8fb7d87097a30e75be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e682b0f770114d8fb7d87097a30e75be.jpg", "file_size": 90025, "is_delete": false, "file_type": 1, "original_file_name": "LJH2051#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e682b0f770114d8fb7d87097a30e75be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e682b0f770114d8fb7d87097a30e75be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e682b0f770114d8fb7d87097a30e75be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e682b0f770114d8fb7d87097a30e75be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e682b0f770114d8fb7d87097a30e75be.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gcGV80MAMZV37XCU1SGSW4ZbeUI=", "createTime": "2024-08-15 15:07:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.906133+00 2025-12-09 10:15:54.906141+00 20030 DLT-332前幅枣红色2XL码 SPMX-20240815315276 \N \N \N 1 \N [{"file_id": "ea494dbe-87b4-4fad-b482-652d214aadb2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54c0226b0a2b4c8abbf2d618d80364a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54c0226b0a2b4c8abbf2d618d80364a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54c0226b0a2b4c8abbf2d618d80364a1.jpg", "file_size": 15295, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332前幅枣红色2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c0226b0a2b4c8abbf2d618d80364a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c0226b0a2b4c8abbf2d618d80364a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54c0226b0a2b4c8abbf2d618d80364a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54c0226b0a2b4c8abbf2d618d80364a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54c0226b0a2b4c8abbf2d618d80364a1.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gjy4ibU0dzEMo9S8Wu7J34Mc3NA=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.910202+00 2025-12-09 10:15:54.910209+00 20031 002FWF#下节黑底大圆点 SPMX-20240815315269 \N \N \N 1 \N [{"file_id": "db734f10-8f82-4b43-8b45-83a14e5e43fb", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "f006c0dbd3a643b484e0f5af36d147e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "f006c0dbd3a643b484e0f5af36d147e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "f006c0dbd3a643b484e0f5af36d147e3.jpg", "file_size": 10401, "is_delete": false, "file_type": 1, "original_file_name": "010OccaJbP5M5W8IeddC2l1l0WfWaMf818bp6K7h9zfnfIdh8KbFblda7v632n4G.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/f006c0dbd3a643b484e0f5af36d147e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/f006c0dbd3a643b484e0f5af36d147e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/f006c0dbd3a643b484e0f5af36d147e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/f006c0dbd3a643b484e0f5af36d147e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/f006c0dbd3a643b484e0f5af36d147e3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YoICj5z5Y0QabAQ-VZgxvqgCeKc=", "createTime": "2024-11-12 16:44:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.914003+00 2025-12-09 10:15:54.914009+00 20032 FX001F#L VS-D3 SPMX-20240815315270 \N \N \N 1 \N [{"file_id": "e26b3267-58d8-437f-a0d6-f00e826d9396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee5df8650b164758b6584477d61de0e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee5df8650b164758b6584477d61de0e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee5df8650b164758b6584477d61de0e4.jpg", "file_size": 5089, "is_delete": false, "file_type": 1, "original_file_name": "FX001F#L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5df8650b164758b6584477d61de0e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5df8650b164758b6584477d61de0e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee5df8650b164758b6584477d61de0e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee5df8650b164758b6584477d61de0e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee5df8650b164758b6584477d61de0e4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1_IMfR_1_c6v-l38s6ioXrq8p8A=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.917333+00 2025-12-09 10:15:54.917339+00 20033 238#-定位裁-白色 SPMX-20240815315273 \N \N \N 1 \N [{"file_id": "a5974bad-501f-41ec-9456-2887fd6ed55d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4850590db8294867975b94f6ed994c90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4850590db8294867975b94f6ed994c90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4850590db8294867975b94f6ed994c90.jpg", "file_size": 70501, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4850590db8294867975b94f6ed994c90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4850590db8294867975b94f6ed994c90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4850590db8294867975b94f6ed994c90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4850590db8294867975b94f6ed994c90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4850590db8294867975b94f6ed994c90.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqbsFQZVCxDQQzBxQy278wjFUEU=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.920602+00 2025-12-09 10:15:54.920609+00 20034 HXF0008-42# SPMX-20240815315274 \N \N \N 1 \N [{"file_id": "363dd14e-97e8-4bb3-a145-a5659b3b1b05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "553de45bdb57423cb9e6176f8de64841.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "553de45bdb57423cb9e6176f8de64841.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "553de45bdb57423cb9e6176f8de64841.jpg", "file_size": 9831, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-42#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553de45bdb57423cb9e6176f8de64841.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553de45bdb57423cb9e6176f8de64841.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553de45bdb57423cb9e6176f8de64841.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/553de45bdb57423cb9e6176f8de64841.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/553de45bdb57423cb9e6176f8de64841.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UOlKOgAndLFmL23prSqTUTWfiLU=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.92372+00 2025-12-09 10:15:54.923725+00 20035 CGLZ033#S SPMX-20240815315272 \N \N \N 1 \N [{"file_id": "82e15576-f259-494f-990c-6fe626fcbdae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0caff5b0aedc4e8f96a99e190ea181b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0caff5b0aedc4e8f96a99e190ea181b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0caff5b0aedc4e8f96a99e190ea181b3.jpg", "file_size": 11770, "is_delete": false, "file_type": 1, "original_file_name": "CGLZ033#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caff5b0aedc4e8f96a99e190ea181b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caff5b0aedc4e8f96a99e190ea181b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0caff5b0aedc4e8f96a99e190ea181b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0caff5b0aedc4e8f96a99e190ea181b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0caff5b0aedc4e8f96a99e190ea181b3.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4W0DGxdqP_jsBMda8HIrioA3s_I=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.927026+00 2025-12-09 10:15:54.927032+00 20036 1238-19FWF#V5曲线 SPMX-20240815315278 \N \N \N 1 \N [{"file_id": "0b69b123-2aa3-449e-ad4c-bc442f6436ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18cd519f4d6f49879ad2f00458c44d4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18cd519f4d6f49879ad2f00458c44d4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18cd519f4d6f49879ad2f00458c44d4f.jpg", "file_size": 28436, "is_delete": false, "file_type": 1, "original_file_name": "1238-19FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18cd519f4d6f49879ad2f00458c44d4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18cd519f4d6f49879ad2f00458c44d4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18cd519f4d6f49879ad2f00458c44d4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18cd519f4d6f49879ad2f00458c44d4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18cd519f4d6f49879ad2f00458c44d4f.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gJzBpmnLr4xDHAGD12ERcEwISiU=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.930254+00 2025-12-09 10:15:54.930261+00 20037 880FWE#土黄 SPMX-20240815315271 \N \N \N 1 \N [{"file_id": "8dd2826c-45ff-47de-b438-ec8c01f99b05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02edfda07d354984aae6ead70cdcefce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02edfda07d354984aae6ead70cdcefce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02edfda07d354984aae6ead70cdcefce.jpg", "file_size": 30984, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02edfda07d354984aae6ead70cdcefce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02edfda07d354984aae6ead70cdcefce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02edfda07d354984aae6ead70cdcefce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02edfda07d354984aae6ead70cdcefce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02edfda07d354984aae6ead70cdcefce.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:su81WWuKnGR_I_ICSoaZmyhdRrY=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.933541+00 2025-12-09 10:15:54.933547+00 20038 JY-AD-161#墨绿底粉色 SPMX-20240815315275 \N \N \N 1 \N [{"file_id": "3f885224-5b8d-4cd5-a672-a22369978fd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adaef705959d480a92ef452255b7c995.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adaef705959d480a92ef452255b7c995.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adaef705959d480a92ef452255b7c995.jpg", "file_size": 19408, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#墨绿底粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaef705959d480a92ef452255b7c995.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaef705959d480a92ef452255b7c995.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adaef705959d480a92ef452255b7c995.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adaef705959d480a92ef452255b7c995.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adaef705959d480a92ef452255b7c995.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aHVaKZTZ9m6l2PD4LzH7UYL94YM=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.936913+00 2025-12-09 10:15:54.936921+00 20039 LZ1410#童装T1号色 SPMX-20240815315277 \N \N \N 1 \N [{"file_id": "ca87c935-0549-4610-88e5-680fa41bbd19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaedfafd2c074d4cbd145bf28e6b100e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaedfafd2c074d4cbd145bf28e6b100e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaedfafd2c074d4cbd145bf28e6b100e.jpg", "file_size": 23928, "is_delete": false, "file_type": 1, "original_file_name": "LZ1410#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaedfafd2c074d4cbd145bf28e6b100e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaedfafd2c074d4cbd145bf28e6b100e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaedfafd2c074d4cbd145bf28e6b100e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaedfafd2c074d4cbd145bf28e6b100e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaedfafd2c074d4cbd145bf28e6b100e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqBxll8ppO9kcKUe-YdezHvAaQo=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.940249+00 2025-12-09 10:15:54.940255+00 20040 FX001F#M VS-D3 SPMX-20240815315283 \N \N \N 1 \N [{"file_id": "131e21e2-3b55-4277-8642-305cd2a692e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a3f001943f04e738d57315ce2336547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a3f001943f04e738d57315ce2336547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a3f001943f04e738d57315ce2336547.jpg", "file_size": 5046, "is_delete": false, "file_type": 1, "original_file_name": "FX001F#M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a3f001943f04e738d57315ce2336547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a3f001943f04e738d57315ce2336547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a3f001943f04e738d57315ce2336547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a3f001943f04e738d57315ce2336547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a3f001943f04e738d57315ce2336547.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wPb87lwLiazWKaMc9PNWgKLT2Z4=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.943664+00 2025-12-09 10:15:54.94367+00 20041 LZ1410#童装T2号色 SPMX-20240815315284 \N \N \N 1 \N [{"file_id": "54da2df3-eba9-43d5-b88f-0fb81448a69f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b36b481d29bb4434849d6b9e6abbc726.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b36b481d29bb4434849d6b9e6abbc726.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b36b481d29bb4434849d6b9e6abbc726.jpg", "file_size": 24877, "is_delete": false, "file_type": 1, "original_file_name": "LZ1410#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b36b481d29bb4434849d6b9e6abbc726.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b36b481d29bb4434849d6b9e6abbc726.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b36b481d29bb4434849d6b9e6abbc726.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b36b481d29bb4434849d6b9e6abbc726.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b36b481d29bb4434849d6b9e6abbc726.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EUiL7PeLbwSIx4PkoiqXScwPbdo=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.946919+00 2025-12-09 10:15:54.946925+00 20042 002FWF#天蓝 SPMX-20240815315281 \N \N \N 1 \N [{"file_id": "78a0fad3-2a8b-459b-9802-118c1a12f1d0", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "ea89d3260008403fbe742bf536316883.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "ea89d3260008403fbe742bf536316883.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "ea89d3260008403fbe742bf536316883.jpg", "file_size": 24563, "is_delete": false, "file_type": 1, "original_file_name": "9H0Fe92mdo6vfP0dby4W8oa13pak0reV22cj0U6A7H3d7ofrbL2J4V4Bc53x6X5r.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/ea89d3260008403fbe742bf536316883.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/ea89d3260008403fbe742bf536316883.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/ea89d3260008403fbe742bf536316883.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/ea89d3260008403fbe742bf536316883.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/ea89d3260008403fbe742bf536316883.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5nI4-8m9HR0yjmxkQ0tsTvk-_Sc=", "createTime": "2024-11-12 16:44:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.950143+00 2025-12-09 10:15:54.950149+00 20043 HXF0008-42#紫色 SPMX-20240815315286 \N \N \N 1 \N [{"file_id": "34b659ba-0d2f-42d1-9d3b-b6b9cd2478bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "308e4f5a3a034b09883ce097ef1aa26a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "308e4f5a3a034b09883ce097ef1aa26a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "308e4f5a3a034b09883ce097ef1aa26a.jpg", "file_size": 7761, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-42#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308e4f5a3a034b09883ce097ef1aa26a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308e4f5a3a034b09883ce097ef1aa26a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/308e4f5a3a034b09883ce097ef1aa26a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/308e4f5a3a034b09883ce097ef1aa26a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/308e4f5a3a034b09883ce097ef1aa26a.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r8Z1JaoHHeKG8Hs55B4ROBUm3ow=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.953384+00 2025-12-09 10:15:54.95339+00 20044 CGLZ033#XL SPMX-20240815315280 \N \N \N 1 \N [{"file_id": "4ca996ad-df16-45b5-84e5-0b74a13584f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d351f50a8c194fdc9b44c1629372a9c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d351f50a8c194fdc9b44c1629372a9c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d351f50a8c194fdc9b44c1629372a9c0.jpg", "file_size": 12639, "is_delete": false, "file_type": 1, "original_file_name": "CGLZ033#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d351f50a8c194fdc9b44c1629372a9c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d351f50a8c194fdc9b44c1629372a9c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d351f50a8c194fdc9b44c1629372a9c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d351f50a8c194fdc9b44c1629372a9c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d351f50a8c194fdc9b44c1629372a9c0.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0LB-ssKfl5SNpohapFwwLRGZYI=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.956593+00 2025-12-09 10:15:54.9566+00 20045 880FWE#枣红色 SPMX-20240815315282 \N \N \N 1 \N [{"file_id": "ac14449f-ddc3-4660-91e4-086c661ce927", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8337ecb73ba84f3dab3b3872abfd1b20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8337ecb73ba84f3dab3b3872abfd1b20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8337ecb73ba84f3dab3b3872abfd1b20.jpg", "file_size": 28932, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8337ecb73ba84f3dab3b3872abfd1b20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8337ecb73ba84f3dab3b3872abfd1b20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8337ecb73ba84f3dab3b3872abfd1b20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8337ecb73ba84f3dab3b3872abfd1b20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8337ecb73ba84f3dab3b3872abfd1b20.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRW5gL7PJKBeYt1ISa2Uu0lF2aw=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.959905+00 2025-12-09 10:15:54.959912+00 20046 238#-定位裁-赤色 SPMX-20240815315285 \N \N \N 1 \N [{"file_id": "91c852c9-abb2-41d4-93c9-d755292ad862", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71f5730c779240bf80244e275452aaf7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71f5730c779240bf80244e275452aaf7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71f5730c779240bf80244e275452aaf7.jpg", "file_size": 72973, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-赤色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f5730c779240bf80244e275452aaf7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f5730c779240bf80244e275452aaf7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71f5730c779240bf80244e275452aaf7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71f5730c779240bf80244e275452aaf7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71f5730c779240bf80244e275452aaf7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqjXqOktOWR9nr0EZYayTNnJeyk=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.963205+00 2025-12-09 10:15:54.963211+00 20047 LJH2051#玫红 SPMX-20240815315279 \N \N \N 1 \N [{"file_id": "2b3057c3-8916-400d-ae8f-ccecb6c66f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7fff0b43c8e4673ad624d7e19c586ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7fff0b43c8e4673ad624d7e19c586ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7fff0b43c8e4673ad624d7e19c586ce.jpg", "file_size": 88027, "is_delete": false, "file_type": 1, "original_file_name": "LJH2051#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fff0b43c8e4673ad624d7e19c586ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fff0b43c8e4673ad624d7e19c586ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7fff0b43c8e4673ad624d7e19c586ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7fff0b43c8e4673ad624d7e19c586ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7fff0b43c8e4673ad624d7e19c586ce.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5sFg1IqAplC07a7AczW_Y6uUmo=", "createTime": "2024-08-15 15:07:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.966446+00 2025-12-09 10:15:54.966452+00 20048 FX001F#净色VS-D3 SPMX-20240815315292 \N \N \N 1 \N [{"file_id": "62545324-1c21-4bf0-9dd7-aa80792c1b47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2ac438b6a414683967f1166310c0c86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2ac438b6a414683967f1166310c0c86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2ac438b6a414683967f1166310c0c86.jpg", "file_size": 4395, "is_delete": false, "file_type": 1, "original_file_name": "FX001F#净色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ac438b6a414683967f1166310c0c86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ac438b6a414683967f1166310c0c86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2ac438b6a414683967f1166310c0c86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2ac438b6a414683967f1166310c0c86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2ac438b6a414683967f1166310c0c86.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5yuvy8T9ae6aJwTrOveujNeMF4U=", "createTime": "2024-08-15 15:07:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.969758+00 2025-12-09 10:15:54.969765+00 20049 880FWE#绿色 SPMX-20240815315294 \N \N \N 1 \N [{"file_id": "c37c0830-79f1-4ef7-8464-e1bdacb60ede", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b52665e873d64414870dc226d55bd547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b52665e873d64414870dc226d55bd547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b52665e873d64414870dc226d55bd547.jpg", "file_size": 28512, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52665e873d64414870dc226d55bd547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52665e873d64414870dc226d55bd547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b52665e873d64414870dc226d55bd547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b52665e873d64414870dc226d55bd547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b52665e873d64414870dc226d55bd547.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G_Ba-klFjyDEvXb0yae-LaXTP1Q=", "createTime": "2024-08-15 15:07:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.973208+00 2025-12-09 10:15:54.973215+00 20050 238#-定位裁-黄色 SPMX-20240815315295 \N \N \N 1 \N [{"file_id": "86444594-e1df-4511-988c-366b13d7c02e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea92998f7ace499fb9c9532634e511b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea92998f7ace499fb9c9532634e511b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea92998f7ace499fb9c9532634e511b4.jpg", "file_size": 75826, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea92998f7ace499fb9c9532634e511b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea92998f7ace499fb9c9532634e511b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea92998f7ace499fb9c9532634e511b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea92998f7ace499fb9c9532634e511b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea92998f7ace499fb9c9532634e511b4.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gGX1B6hB80ZykiBsetYl_dLi360=", "createTime": "2024-08-15 15:07:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.976578+00 2025-12-09 10:15:54.976586+00 20051 1238-1FWF#V5曲线 SPMX-20240815315287 \N \N \N 1 \N [{"file_id": "dfdb227b-7573-4e7f-b95a-9721d3ae2ba7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea221f4f67e74ac6b521e483ddfbc8e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea221f4f67e74ac6b521e483ddfbc8e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea221f4f67e74ac6b521e483ddfbc8e7.jpg", "file_size": 23619, "is_delete": false, "file_type": 1, "original_file_name": "1238-1FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea221f4f67e74ac6b521e483ddfbc8e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea221f4f67e74ac6b521e483ddfbc8e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea221f4f67e74ac6b521e483ddfbc8e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea221f4f67e74ac6b521e483ddfbc8e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea221f4f67e74ac6b521e483ddfbc8e7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rp7bI3fFwPY7p60udnkYawDJ6Uw=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.979849+00 2025-12-09 10:15:54.979855+00 20052 DLT-332前幅枣红色XL码 SPMX-20240815315288 \N \N \N 1 \N [{"file_id": "7850a4a6-6388-431b-a8d1-ce9a76e1b33c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fb7dab3ba004e4989ecec1a50aab2f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fb7dab3ba004e4989ecec1a50aab2f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fb7dab3ba004e4989ecec1a50aab2f8.jpg", "file_size": 15562, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332前幅枣红色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb7dab3ba004e4989ecec1a50aab2f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb7dab3ba004e4989ecec1a50aab2f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb7dab3ba004e4989ecec1a50aab2f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fb7dab3ba004e4989ecec1a50aab2f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fb7dab3ba004e4989ecec1a50aab2f8.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KR4TTnUfqElCrarGxM4AuiVn368=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.98319+00 2025-12-09 10:15:54.983197+00 20053 LJH2052#彩蓝色 SPMX-20240815315290 \N \N \N 1 \N [{"file_id": "2e4a01cd-b231-429d-9609-984163f11da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb80ea5c037a42fb85291bfe900dcebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb80ea5c037a42fb85291bfe900dcebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb80ea5c037a42fb85291bfe900dcebc.jpg", "file_size": 90106, "is_delete": false, "file_type": 1, "original_file_name": "LJH2052#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb80ea5c037a42fb85291bfe900dcebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb80ea5c037a42fb85291bfe900dcebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb80ea5c037a42fb85291bfe900dcebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb80ea5c037a42fb85291bfe900dcebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb80ea5c037a42fb85291bfe900dcebc.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eIqZb8EiJBWmQRpRifhOqOGXg8=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.986465+00 2025-12-09 10:15:54.986472+00 20054 002FWF#枣红净色 SPMX-20240815315293 \N \N \N 1 \N [{"file_id": "9c1dd89d-00c7-4c1c-81ce-6c124ea561ee", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "d9e624dd533d4022b635b776ebecc344.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "d9e624dd533d4022b635b776ebecc344.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "d9e624dd533d4022b635b776ebecc344.jpg", "file_size": 8073, "is_delete": false, "file_type": 1, "original_file_name": "6yeF58cCcg0D9u1B8z1J0E2k7E7qayfi7a5mbZeIf8fG118F17cK4rbOf40HbGfa.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d9e624dd533d4022b635b776ebecc344.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/d9e624dd533d4022b635b776ebecc344.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/d9e624dd533d4022b635b776ebecc344.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/d9e624dd533d4022b635b776ebecc344.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/d9e624dd533d4022b635b776ebecc344.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzdV6pVgFKt5IRZ8trdHeYqDeig=", "createTime": "2024-11-12 16:44:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.989751+00 2025-12-09 10:15:54.989758+00 20055 CGLZ033#捆条 SPMX-20240815315291 \N \N \N 1 \N [{"file_id": "2be3865f-d20c-4784-9745-86d46bb10090", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce3840825f7a4b1999d738c4ba91873b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce3840825f7a4b1999d738c4ba91873b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce3840825f7a4b1999d738c4ba91873b.jpg", "file_size": 10208, "is_delete": false, "file_type": 1, "original_file_name": "CGLZ033#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3840825f7a4b1999d738c4ba91873b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3840825f7a4b1999d738c4ba91873b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3840825f7a4b1999d738c4ba91873b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce3840825f7a4b1999d738c4ba91873b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce3840825f7a4b1999d738c4ba91873b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kg6nFvO4hd0EpX7LkB0MQ8dDlmg=", "createTime": "2024-08-15 15:07:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.993505+00 2025-12-09 10:15:54.993513+00 20056 JY-AD-161#紫底绿花 SPMX-20240815315289 \N \N \N 1 \N [{"file_id": "4804a157-fb00-46b7-b8b9-32762acbc84f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b71fb95a6a0b4ab18854b27ace5fc65c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b71fb95a6a0b4ab18854b27ace5fc65c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b71fb95a6a0b4ab18854b27ace5fc65c.jpg", "file_size": 20871, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#紫底绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fb95a6a0b4ab18854b27ace5fc65c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fb95a6a0b4ab18854b27ace5fc65c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b71fb95a6a0b4ab18854b27ace5fc65c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b71fb95a6a0b4ab18854b27ace5fc65c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b71fb95a6a0b4ab18854b27ace5fc65c.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0HVvPaLCDJm8NmOCdIW3vKwhVU=", "createTime": "2024-08-15 15:07:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:54.997431+00 2025-12-09 10:15:54.997438+00 20057 HXF0008-43#原版色 SPMX-20240815315296 \N \N \N 1 \N [{"file_id": "ba38e615-6e72-4b2c-88f1-acf5ee988e53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d3848b89d36494c91c577c7777f193e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d3848b89d36494c91c577c7777f193e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d3848b89d36494c91c577c7777f193e.jpg", "file_size": 12354, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-43#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3848b89d36494c91c577c7777f193e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3848b89d36494c91c577c7777f193e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d3848b89d36494c91c577c7777f193e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d3848b89d36494c91c577c7777f193e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d3848b89d36494c91c577c7777f193e.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NqY4A4mE8HuEx4rkdY9-VMZqKAg=", "createTime": "2024-08-15 15:07:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.001286+00 2025-12-09 10:15:55.001292+00 20058 CGS546#WJC22 SPMX-20240815315301 \N \N \N 1 \N [{"file_id": "8a175be6-df66-4c5d-bed5-68fb38d0c448", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d3467e669cc4550bcc0f948f8a79baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d3467e669cc4550bcc0f948f8a79baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d3467e669cc4550bcc0f948f8a79baa.jpg", "file_size": 29934, "is_delete": false, "file_type": 1, "original_file_name": "CGS546#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3467e669cc4550bcc0f948f8a79baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3467e669cc4550bcc0f948f8a79baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d3467e669cc4550bcc0f948f8a79baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d3467e669cc4550bcc0f948f8a79baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d3467e669cc4550bcc0f948f8a79baa.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mt_NOMbdzq77V6vK1nH1l-V-rWo=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.005269+00 2025-12-09 10:15:55.005275+00 20059 LZ1410#童装T3号色 SPMX-20240815315298 \N \N \N 1 \N [{"file_id": "0800b8f7-1d2f-405d-9fac-93ce1b996a8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "605b8a55b3ab42a8a45fc7f3e114a66b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "605b8a55b3ab42a8a45fc7f3e114a66b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "605b8a55b3ab42a8a45fc7f3e114a66b.jpg", "file_size": 24655, "is_delete": false, "file_type": 1, "original_file_name": "LZ1410#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605b8a55b3ab42a8a45fc7f3e114a66b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605b8a55b3ab42a8a45fc7f3e114a66b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605b8a55b3ab42a8a45fc7f3e114a66b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/605b8a55b3ab42a8a45fc7f3e114a66b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/605b8a55b3ab42a8a45fc7f3e114a66b.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vLQKwmlFkoi4uBzyRTSR77RN_98=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.009141+00 2025-12-09 10:15:55.009147+00 20060 1238-20FWF# SPMX-20240815315300 \N \N \N 1 \N [{"file_id": "0d1d577a-4ee9-41c1-a114-6b9841af0b3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80e5cc287dbd448ca4028eddffc780da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80e5cc287dbd448ca4028eddffc780da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80e5cc287dbd448ca4028eddffc780da.jpg", "file_size": 26914, "is_delete": false, "file_type": 1, "original_file_name": "1238-20FWF#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5cc287dbd448ca4028eddffc780da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5cc287dbd448ca4028eddffc780da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e5cc287dbd448ca4028eddffc780da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80e5cc287dbd448ca4028eddffc780da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80e5cc287dbd448ca4028eddffc780da.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JyoXMJ0m8zC_R9cOb5uHOmBvPh4=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.013033+00 2025-12-09 10:15:55.01304+00 20061 DLT-332前幅浅粉色XL码 SPMX-20240815315297 \N \N \N 1 \N [{"file_id": "6d7aa2c2-00b9-44d4-8291-68ad3464062e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f564fc15c04ca8831e70820b762b94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f564fc15c04ca8831e70820b762b94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f564fc15c04ca8831e70820b762b94.jpg", "file_size": 15223, "is_delete": false, "file_type": 1, "original_file_name": "DLT-332前幅浅粉色XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f564fc15c04ca8831e70820b762b94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f564fc15c04ca8831e70820b762b94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f564fc15c04ca8831e70820b762b94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f564fc15c04ca8831e70820b762b94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f564fc15c04ca8831e70820b762b94.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2v9z6z4NhbBjCF8tP0aH57qUCwU=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.017939+00 2025-12-09 10:15:55.017949+00 20062 JY-AD-161#红底姜黄花 SPMX-20240815315299 \N \N \N 1 \N [{"file_id": "b52d1340-3a08-456e-b6bb-da78cafc0796", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abbd665e47d34652bf7c81fb3273a608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abbd665e47d34652bf7c81fb3273a608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abbd665e47d34652bf7c81fb3273a608.jpg", "file_size": 18918, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#红底姜黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbd665e47d34652bf7c81fb3273a608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbd665e47d34652bf7c81fb3273a608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abbd665e47d34652bf7c81fb3273a608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abbd665e47d34652bf7c81fb3273a608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abbd665e47d34652bf7c81fb3273a608.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HjxeKeAKYiEP5nlHjnsIT5AlZbc=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.022883+00 2025-12-09 10:15:55.022894+00 20063 880FWE#豆沙红 SPMX-20240815315317 \N \N \N 1 \N [{"file_id": "68095c0b-fca5-4f41-9006-ccebedc1bbc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bacff829c11946dcadfd1420b4088a45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bacff829c11946dcadfd1420b4088a45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bacff829c11946dcadfd1420b4088a45.jpg", "file_size": 25450, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#豆沙红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacff829c11946dcadfd1420b4088a45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacff829c11946dcadfd1420b4088a45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bacff829c11946dcadfd1420b4088a45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bacff829c11946dcadfd1420b4088a45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bacff829c11946dcadfd1420b4088a45.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C2tMir7dYZ9g_00AOewuooGtfzY=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.028251+00 2025-12-09 10:15:55.028262+00 20064 DLT-334#亮黄2XL码 SPMX-20240815315308 \N \N \N 1 \N [{"file_id": "d6b0b2ed-19a0-4e7c-bcdc-98862f997e1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6ec14f016614e719f2bdfd45bd02c69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6ec14f016614e719f2bdfd45bd02c69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6ec14f016614e719f2bdfd45bd02c69.jpg", "file_size": 15543, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#亮黄2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ec14f016614e719f2bdfd45bd02c69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ec14f016614e719f2bdfd45bd02c69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6ec14f016614e719f2bdfd45bd02c69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6ec14f016614e719f2bdfd45bd02c69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6ec14f016614e719f2bdfd45bd02c69.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETlKju1oQvyglZHA3FB04mpiaUU=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.033663+00 2025-12-09 10:15:55.033674+00 20065 002FWF#桔红 SPMX-20240815315303 \N \N \N 1 \N [{"file_id": "118e9dd2-f2df-4327-acec-8223d5828ff2", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "766e3f12e2f24c7194e4b0c404cbe8a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "766e3f12e2f24c7194e4b0c404cbe8a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "766e3f12e2f24c7194e4b0c404cbe8a7.jpg", "file_size": 25965, "is_delete": false, "file_type": 1, "original_file_name": "eX72fU8pcn4s434Lea042tcw353d4IfZ6l0d0WbRbiaf4e9l5N1u5xbIbY4l0a4e.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/766e3f12e2f24c7194e4b0c404cbe8a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/766e3f12e2f24c7194e4b0c404cbe8a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/766e3f12e2f24c7194e4b0c404cbe8a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/766e3f12e2f24c7194e4b0c404cbe8a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/766e3f12e2f24c7194e4b0c404cbe8a7.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b3GjUeICSM-01e2H60WTj2FkCRg=", "createTime": "2024-11-12 16:44:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.039133+00 2025-12-09 10:15:55.039144+00 20066 HXF0008-43#红色 SPMX-20240815315304 \N \N \N 1 \N [{"file_id": "3d797550-bf4f-4674-92e3-d13052f22a61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b27b2cc1f0da4c0992da2f253bdc57aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b27b2cc1f0da4c0992da2f253bdc57aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b27b2cc1f0da4c0992da2f253bdc57aa.jpg", "file_size": 13422, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-43#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b2cc1f0da4c0992da2f253bdc57aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b2cc1f0da4c0992da2f253bdc57aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b27b2cc1f0da4c0992da2f253bdc57aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b27b2cc1f0da4c0992da2f253bdc57aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b27b2cc1f0da4c0992da2f253bdc57aa.jpg?e=1765361753&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0laJkUQzEiWLilE5rC3Hduv-fO4=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.723921+00 2025-12-09 10:15:55.72393+00 20067 HXF0008-43#绿色 SPMX-20240815315318 \N \N \N 1 \N [{"file_id": "1559d7a7-09aa-4867-bfdf-bec31a44f259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b66763fdb6413690acc340169fd414.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b66763fdb6413690acc340169fd414.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b66763fdb6413690acc340169fd414.jpg", "file_size": 12437, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-43#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b66763fdb6413690acc340169fd414.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b66763fdb6413690acc340169fd414.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b66763fdb6413690acc340169fd414.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b66763fdb6413690acc340169fd414.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b66763fdb6413690acc340169fd414.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cfqe7xdkk3lysACjoo__h9RVoME=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.728759+00 2025-12-09 10:15:55.728766+00 20068 DLT-334#亮黄XL码 SPMX-20240815315319 \N \N \N 1 \N [{"file_id": "c2bfeeba-5c46-4476-b1cb-597f679e1cfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ab4cc38c04b49299be6431dd783e0f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ab4cc38c04b49299be6431dd783e0f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ab4cc38c04b49299be6431dd783e0f5.jpg", "file_size": 15599, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#亮黄XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab4cc38c04b49299be6431dd783e0f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab4cc38c04b49299be6431dd783e0f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ab4cc38c04b49299be6431dd783e0f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ab4cc38c04b49299be6431dd783e0f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ab4cc38c04b49299be6431dd783e0f5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hd9U3WUmNH3sXSGXsE0Urz_CtZQ=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.732601+00 2025-12-09 10:15:55.732607+00 20069 FX001FW#VS-D3 SPMX-20240815315306 \N \N \N 1 \N [{"file_id": "acbb9fa6-08ae-4d29-bfb5-b2f0515ed1cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b69416318be42acbe695ccf07df93c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b69416318be42acbe695ccf07df93c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b69416318be42acbe695ccf07df93c3.jpg", "file_size": 11953, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b69416318be42acbe695ccf07df93c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b69416318be42acbe695ccf07df93c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b69416318be42acbe695ccf07df93c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b69416318be42acbe695ccf07df93c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b69416318be42acbe695ccf07df93c3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d75JxtN6fBaDFIr_3PGvN3SZibg=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.736183+00 2025-12-09 10:15:55.736188+00 20070 LZ1410#童装T4号色 SPMX-20240815315310 \N \N \N 1 \N [{"file_id": "057ee980-5ff1-4966-affb-c63e5f062402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg", "file_size": 25444, "is_delete": false, "file_type": 1, "original_file_name": "LZ1410#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be6a3f4b1ac04c37a1b2bd86c011fbfa.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omEc52qxszqk9GEFUASobCXEljo=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.739512+00 2025-12-09 10:15:55.739517+00 20071 1238-20FWF#V5曲线 SPMX-20240815315311 \N \N \N 1 \N [{"file_id": "75688c58-dbe5-448d-af65-02967d1d17e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a2cda6a9c654204bc21ed13d56db55e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a2cda6a9c654204bc21ed13d56db55e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a2cda6a9c654204bc21ed13d56db55e.jpg", "file_size": 21479, "is_delete": false, "file_type": 1, "original_file_name": "1238-20FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2cda6a9c654204bc21ed13d56db55e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2cda6a9c654204bc21ed13d56db55e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2cda6a9c654204bc21ed13d56db55e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a2cda6a9c654204bc21ed13d56db55e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a2cda6a9c654204bc21ed13d56db55e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S3eMjr6k2mXZ_-EZWMaksI0TYPY=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.74278+00 2025-12-09 10:15:55.742786+00 20072 LJH2052#玫红色 SPMX-20240815315302 \N \N \N 1 \N [{"file_id": "559cad2c-d33b-46ee-946a-0823f2f4d6e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "002a98c4f26d41108ba4a4cd6ec6298f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "002a98c4f26d41108ba4a4cd6ec6298f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "002a98c4f26d41108ba4a4cd6ec6298f.jpg", "file_size": 91099, "is_delete": false, "file_type": 1, "original_file_name": "LJH2052#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002a98c4f26d41108ba4a4cd6ec6298f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002a98c4f26d41108ba4a4cd6ec6298f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002a98c4f26d41108ba4a4cd6ec6298f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/002a98c4f26d41108ba4a4cd6ec6298f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/002a98c4f26d41108ba4a4cd6ec6298f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hdctvaMe2v6IA7fgeofx-6PL40=", "createTime": "2024-08-15 15:07:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.746087+00 2025-12-09 10:15:55.746094+00 20073 LJH2052#黑色 SPMX-20240815315313 \N \N \N 1 \N [{"file_id": "ff748a73-0f89-4dee-bd6f-2a3df87d3ded", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58884b1751ac46a18a7d3c7be41345b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58884b1751ac46a18a7d3c7be41345b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58884b1751ac46a18a7d3c7be41345b5.jpg", "file_size": 88950, "is_delete": false, "file_type": 1, "original_file_name": "LJH2052#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58884b1751ac46a18a7d3c7be41345b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58884b1751ac46a18a7d3c7be41345b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58884b1751ac46a18a7d3c7be41345b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58884b1751ac46a18a7d3c7be41345b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58884b1751ac46a18a7d3c7be41345b5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nhD1qd-qa6GFLLzVdBID8pNfcnE=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.749321+00 2025-12-09 10:15:55.749327+00 20074 002FWF#粉红 SPMX-20240815315315 \N \N \N 1 \N [{"file_id": "f03cf8bf-7b26-435f-bd08-b6794cd27aae", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "3ff8354c1a8248f2beaac1387e1088e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "3ff8354c1a8248f2beaac1387e1088e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "3ff8354c1a8248f2beaac1387e1088e4.jpg", "file_size": 24236, "is_delete": false, "file_type": 1, "original_file_name": "akeW6wd4a804fid8fHedeT4o2LczczeQb94QdH5Bc68n1h408Bb31EbGe77ycMah.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/3ff8354c1a8248f2beaac1387e1088e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/3ff8354c1a8248f2beaac1387e1088e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/3ff8354c1a8248f2beaac1387e1088e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/3ff8354c1a8248f2beaac1387e1088e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/3ff8354c1a8248f2beaac1387e1088e4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_3p5JiomfBVPMKtf8pMhYBsN70=", "createTime": "2024-11-12 16:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.752594+00 2025-12-09 10:15:55.7526+00 20075 238#-定位裁-黑色 SPMX-20240815315305 \N \N \N 1 \N [{"file_id": "2ed27ed0-37e3-4fa5-8ab5-aace30d13521", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c82f215677974f0f861c8d50da0891f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c82f215677974f0f861c8d50da0891f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c82f215677974f0f861c8d50da0891f7.jpg", "file_size": 72973, "is_delete": false, "file_type": 1, "original_file_name": "238#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c82f215677974f0f861c8d50da0891f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c82f215677974f0f861c8d50da0891f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c82f215677974f0f861c8d50da0891f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c82f215677974f0f861c8d50da0891f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c82f215677974f0f861c8d50da0891f7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gg0NQfT5xwxHL_2VEyNuAk37UKc=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.755797+00 2025-12-09 10:15:55.755803+00 20076 JY-AD-161#藏蓝底绿色 SPMX-20240815315309 \N \N \N 1 \N [{"file_id": "2116d30c-a7fe-4143-975d-3da78ed1f656", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdebe9c06c874431a42505426809d0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdebe9c06c874431a42505426809d0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdebe9c06c874431a42505426809d0a4.jpg", "file_size": 19020, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#藏蓝底绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebe9c06c874431a42505426809d0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebe9c06c874431a42505426809d0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdebe9c06c874431a42505426809d0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdebe9c06c874431a42505426809d0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdebe9c06c874431a42505426809d0a4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blvcr25olzpZczdCLf9-sticAiQ=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.759045+00 2025-12-09 10:15:55.759052+00 20077 FX001FW#宝蓝 SPMX-20240815315316 \N \N \N 1 \N [{"file_id": "bdc553f2-2978-42bf-b485-57fec1b17cb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cce919558fa343bab58cb8e485e11a90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cce919558fa343bab58cb8e485e11a90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cce919558fa343bab58cb8e485e11a90.jpg", "file_size": 17340, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce919558fa343bab58cb8e485e11a90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce919558fa343bab58cb8e485e11a90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cce919558fa343bab58cb8e485e11a90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cce919558fa343bab58cb8e485e11a90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cce919558fa343bab58cb8e485e11a90.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s4H7OioUrK_XILpM99QoxbRXOYk=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.762534+00 2025-12-09 10:15:55.762541+00 20078 880FWE#藏青 SPMX-20240815315307 \N \N \N 1 \N [{"file_id": "51ad2d07-0d23-4fa9-b713-b8a7ebace43a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3ece9b977a445d6a4f40b4e4c066a33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3ece9b977a445d6a4f40b4e4c066a33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3ece9b977a445d6a4f40b4e4c066a33.jpg", "file_size": 29740, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ece9b977a445d6a4f40b4e4c066a33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ece9b977a445d6a4f40b4e4c066a33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3ece9b977a445d6a4f40b4e4c066a33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3ece9b977a445d6a4f40b4e4c066a33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3ece9b977a445d6a4f40b4e4c066a33.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rp_FCq7qq3yb0Otn6AUWr0rlRag=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.765878+00 2025-12-09 10:15:55.765885+00 20079 CGZ-0107-3#RC23 SPMX-20240815315312 \N \N \N 1 \N [{"file_id": "6faf4b1f-68b1-4968-b80d-d6c26959328e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7897b48e863046fe91f8bc3ca9f88fca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7897b48e863046fe91f8bc3ca9f88fca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7897b48e863046fe91f8bc3ca9f88fca.jpg", "file_size": 47107, "is_delete": false, "file_type": 1, "original_file_name": "CGZ-0107-3#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7897b48e863046fe91f8bc3ca9f88fca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7897b48e863046fe91f8bc3ca9f88fca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7897b48e863046fe91f8bc3ca9f88fca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7897b48e863046fe91f8bc3ca9f88fca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7897b48e863046fe91f8bc3ca9f88fca.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1al3f5LNVkJHsKjQrkh4cdoj-H4=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.769355+00 2025-12-09 10:15:55.76936+00 20080 238458#WJC22 SPMX-20240815315314 \N \N \N 1 \N [{"file_id": "d331de3f-6644-4ef1-bde3-f4eeb7f5870e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "676795565f8540c79e8c0621adf1c832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "676795565f8540c79e8c0621adf1c832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "676795565f8540c79e8c0621adf1c832.jpg", "file_size": 11874, "is_delete": false, "file_type": 1, "original_file_name": "238458#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676795565f8540c79e8c0621adf1c832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676795565f8540c79e8c0621adf1c832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676795565f8540c79e8c0621adf1c832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/676795565f8540c79e8c0621adf1c832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/676795565f8540c79e8c0621adf1c832.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVjREKEJ33KO3QKhEIC6Zl4hxZo=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.772725+00 2025-12-09 10:15:55.772732+00 20081 CH001FWE#VS-D3 SPMX-20240815315323 \N \N \N 1 \N [{"file_id": "6ddbb4b5-9758-4063-9c2e-0f6f15c6b735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg", "file_size": 25246, "is_delete": false, "file_type": 1, "original_file_name": "CH001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1df4bf12fc14ff6bdf8b601a9a9d10f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLDGLiy7HLhAoRX99F7Nx4qF2Zs=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.775907+00 2025-12-09 10:15:55.775913+00 20082 239#-定位裁-卡其 SPMX-20240815315326 \N \N \N 1 \N [{"file_id": "196c64ca-0c4f-47cf-9960-21a453bd20e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg", "file_size": 78372, "is_delete": false, "file_type": 1, "original_file_name": "239#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0eabdd08c244b9d9dce6caf6a1cdfc3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MpSNvaeQKVSbW3DZ5FnYXTT-LrI=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.779173+00 2025-12-09 10:15:55.77918+00 20083 1238-22FWF#V5曲线 SPMX-20240815315333 \N \N \N 1 \N [{"file_id": "2c8d6018-c9d9-4c11-8296-faa5eb37a089", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e447e728a1b74c0badcf8c6d6f78107a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e447e728a1b74c0badcf8c6d6f78107a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e447e728a1b74c0badcf8c6d6f78107a.jpg", "file_size": 23809, "is_delete": false, "file_type": 1, "original_file_name": "1238-22FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e447e728a1b74c0badcf8c6d6f78107a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e447e728a1b74c0badcf8c6d6f78107a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e447e728a1b74c0badcf8c6d6f78107a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e447e728a1b74c0badcf8c6d6f78107a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e447e728a1b74c0badcf8c6d6f78107a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7yALti3sQRLjz_y2vizf0ULWk4A=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.782352+00 2025-12-09 10:15:55.782358+00 20084 FX001FW#橙 SPMX-20240815315327 \N \N \N 1 \N [{"file_id": "9e7ae6a0-bc40-46f8-a3d5-181485da2b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "560bfb6d02344dcb96937dac9c2713e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "560bfb6d02344dcb96937dac9c2713e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "560bfb6d02344dcb96937dac9c2713e9.jpg", "file_size": 13892, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#橙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560bfb6d02344dcb96937dac9c2713e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560bfb6d02344dcb96937dac9c2713e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/560bfb6d02344dcb96937dac9c2713e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/560bfb6d02344dcb96937dac9c2713e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/560bfb6d02344dcb96937dac9c2713e9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQTBRXcvLZ6s9Lx96kLkLlKcQNw=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.785467+00 2025-12-09 10:15:55.785473+00 20085 1238-21FWF#V5曲线 SPMX-20240815315322 \N \N \N 1 \N [{"file_id": "4f3a6209-c7b0-4e28-ba6c-dd85e176ff1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b92a52b11d314234b7c98f3eeded94b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b92a52b11d314234b7c98f3eeded94b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b92a52b11d314234b7c98f3eeded94b3.jpg", "file_size": 21256, "is_delete": false, "file_type": 1, "original_file_name": "1238-21FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92a52b11d314234b7c98f3eeded94b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92a52b11d314234b7c98f3eeded94b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b92a52b11d314234b7c98f3eeded94b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b92a52b11d314234b7c98f3eeded94b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b92a52b11d314234b7c98f3eeded94b3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EC5TH7cHbArdHewUXsV7ke2DXxY=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.788745+00 2025-12-09 10:15:55.788752+00 20086 JY-AD-161#黑底白色 SPMX-20240815315320 \N \N \N 1 \N [{"file_id": "3791eb0d-1dfa-45b2-a863-ab7a7c74793d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce3b516b05be4eb684e60151c7d9d564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce3b516b05be4eb684e60151c7d9d564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce3b516b05be4eb684e60151c7d9d564.jpg", "file_size": 21067, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-161#黑底白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3b516b05be4eb684e60151c7d9d564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3b516b05be4eb684e60151c7d9d564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce3b516b05be4eb684e60151c7d9d564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce3b516b05be4eb684e60151c7d9d564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce3b516b05be4eb684e60151c7d9d564.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FjOsk5gAJtD8GXse6Fq7rurGDnY=", "createTime": "2024-08-15 15:07:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.791931+00 2025-12-09 10:15:55.791937+00 20087 JY-AD-166#1号蓝色 SPMX-20240815315329 \N \N \N 1 \N [{"file_id": "d9b1899e-dc3a-4b95-999c-7935b44e866f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56c33f40bcbc4ec2afd3a77cf036eede.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56c33f40bcbc4ec2afd3a77cf036eede.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56c33f40bcbc4ec2afd3a77cf036eede.jpg", "file_size": 14220, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-166#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c33f40bcbc4ec2afd3a77cf036eede.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c33f40bcbc4ec2afd3a77cf036eede.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56c33f40bcbc4ec2afd3a77cf036eede.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56c33f40bcbc4ec2afd3a77cf036eede.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56c33f40bcbc4ec2afd3a77cf036eede.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bbpqb1knZmM5_OjfDIG-seW533k=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.795207+00 2025-12-09 10:15:55.795213+00 20088 002FWF#红色 SPMX-20240815315325 \N \N \N 1 \N [{"file_id": "8560f5c0-6938-4e06-91b9-7c74e9a28d14", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "3c6c8a30fa404eb5af02c3478c950ec9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "3c6c8a30fa404eb5af02c3478c950ec9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "3c6c8a30fa404eb5af02c3478c950ec9.jpg", "file_size": 26212, "is_delete": false, "file_type": 1, "original_file_name": "2k7s3vdS2K7ufHak12bOfpfiaR4bdI6N1o4Vd20N8vclbe6l57cy6I7hfkeZcV2G.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/3c6c8a30fa404eb5af02c3478c950ec9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/3c6c8a30fa404eb5af02c3478c950ec9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/3c6c8a30fa404eb5af02c3478c950ec9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/3c6c8a30fa404eb5af02c3478c950ec9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/3c6c8a30fa404eb5af02c3478c950ec9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMqSnpJjC4O6tPXT19QoGbS_e7o=", "createTime": "2024-11-12 16:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.79849+00 2025-12-09 10:15:55.798496+00 20089 LZ1410#童装T5号色 SPMX-20240815315321 \N \N \N 1 \N [{"file_id": "54eceb84-d049-4c4a-a18d-17b57b43674a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b410505d27464acfb11d1aa66dd3a7bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b410505d27464acfb11d1aa66dd3a7bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b410505d27464acfb11d1aa66dd3a7bf.jpg", "file_size": 24879, "is_delete": false, "file_type": 1, "original_file_name": "LZ1410#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b410505d27464acfb11d1aa66dd3a7bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b410505d27464acfb11d1aa66dd3a7bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b410505d27464acfb11d1aa66dd3a7bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b410505d27464acfb11d1aa66dd3a7bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b410505d27464acfb11d1aa66dd3a7bf.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2XCwt6mznS245lvVJJ4MgxyL5jg=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.801761+00 2025-12-09 10:15:55.801767+00 20090 LZ1411#上身4号色 SPMX-20240815315332 \N \N \N 1 \N [{"file_id": "4999e433-49b2-4951-96b2-62048322bfd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b22235942124597a3f0d84b395ac6a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b22235942124597a3f0d84b395ac6a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b22235942124597a3f0d84b395ac6a6.jpg", "file_size": 11418, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b22235942124597a3f0d84b395ac6a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b22235942124597a3f0d84b395ac6a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b22235942124597a3f0d84b395ac6a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b22235942124597a3f0d84b395ac6a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b22235942124597a3f0d84b395ac6a6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iykxNbd-ohetNnkSR5o4XFGPQJc=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.805043+00 2025-12-09 10:15:55.805049+00 20091 LJH2055#浅蓝 SPMX-20240815315324 \N \N \N 1 \N [{"file_id": "8dc9b1df-2605-4c75-8f8b-8901614e90e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16bf2ca97a884c509a2b6ae40d1c8159.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16bf2ca97a884c509a2b6ae40d1c8159.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16bf2ca97a884c509a2b6ae40d1c8159.jpg", "file_size": 65900, "is_delete": false, "file_type": 1, "original_file_name": "LJH2055#浅蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16bf2ca97a884c509a2b6ae40d1c8159.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16bf2ca97a884c509a2b6ae40d1c8159.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16bf2ca97a884c509a2b6ae40d1c8159.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16bf2ca97a884c509a2b6ae40d1c8159.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16bf2ca97a884c509a2b6ae40d1c8159.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hr5zlYgr0vvC1rIMs_c6EYki0rI=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.808363+00 2025-12-09 10:15:55.808369+00 20092 880FWE#黑色 SPMX-20240815315328 \N \N \N 1 \N [{"file_id": "1c0b2cc1-e277-49fc-83d2-94841e57a35c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3048efb74a964a7da65c127e4763c4bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3048efb74a964a7da65c127e4763c4bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3048efb74a964a7da65c127e4763c4bb.jpg", "file_size": 29012, "is_delete": false, "file_type": 1, "original_file_name": "880FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3048efb74a964a7da65c127e4763c4bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3048efb74a964a7da65c127e4763c4bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3048efb74a964a7da65c127e4763c4bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3048efb74a964a7da65c127e4763c4bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3048efb74a964a7da65c127e4763c4bb.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:REmzPM0zQhagVmUoPJbd73KV6xc=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.811572+00 2025-12-09 10:15:55.811579+00 20093 HXF0008-43#蓝色 SPMX-20240815315331 \N \N \N 1 \N [{"file_id": "cb18c466-eb2b-4b52-946f-4c0fc83f9512", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a79fc439314afe8419be19f6670df7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a79fc439314afe8419be19f6670df7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a79fc439314afe8419be19f6670df7.jpg", "file_size": 12277, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-43#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a79fc439314afe8419be19f6670df7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a79fc439314afe8419be19f6670df7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a79fc439314afe8419be19f6670df7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a79fc439314afe8419be19f6670df7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a79fc439314afe8419be19f6670df7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EO7TyGmfmDuDD__wGxuYTnCt2x4=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.814816+00 2025-12-09 10:15:55.814823+00 20094 DLT-334#墨绿2XL码 SPMX-20240815315330 \N \N \N 1 \N [{"file_id": "488b743d-4ad3-4fca-b4ec-a0328647ca1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee545ba872514224a5b8de6b2100d413.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee545ba872514224a5b8de6b2100d413.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee545ba872514224a5b8de6b2100d413.jpg", "file_size": 15734, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#墨绿2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee545ba872514224a5b8de6b2100d413.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee545ba872514224a5b8de6b2100d413.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee545ba872514224a5b8de6b2100d413.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee545ba872514224a5b8de6b2100d413.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee545ba872514224a5b8de6b2100d413.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vUIBBz_8EV03Ixed0rqNa9THC38=", "createTime": "2024-08-15 15:07:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.818019+00 2025-12-09 10:15:55.818026+00 20095 002FWF#黄色净色 SPMX-20240815315334 \N \N \N 1 \N [{"file_id": "e1c4dbe9-b06c-4e59-8126-27bb4c619f1b", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "1047a3b4b3a449efa7ceb859d4f61b2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "1047a3b4b3a449efa7ceb859d4f61b2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "1047a3b4b3a449efa7ceb859d4f61b2e.jpg", "file_size": 8223, "is_delete": false, "file_type": 1, "original_file_name": "1td3er336L3GalaY0BfH6G4Qdf6Lc94Vdw8M1fcD7o241O6v9A4t8R9s4UfYaM37.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1047a3b4b3a449efa7ceb859d4f61b2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/1047a3b4b3a449efa7ceb859d4f61b2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/1047a3b4b3a449efa7ceb859d4f61b2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/1047a3b4b3a449efa7ceb859d4f61b2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/1047a3b4b3a449efa7ceb859d4f61b2e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4aIadB_bqutR-OIY_XjoClhtllE=", "createTime": "2024-11-12 16:43:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.82121+00 2025-12-09 10:15:55.821217+00 20096 JY-AD-166#3号红色 SPMX-20240815315339 \N \N \N 1 \N [{"file_id": "a5bd7e70-fa33-475c-8642-5bf8a22d7309", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19c5503f5b5d46a292e0f07f792bf12e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19c5503f5b5d46a292e0f07f792bf12e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19c5503f5b5d46a292e0f07f792bf12e.jpg", "file_size": 15097, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-166#3号红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c5503f5b5d46a292e0f07f792bf12e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c5503f5b5d46a292e0f07f792bf12e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19c5503f5b5d46a292e0f07f792bf12e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19c5503f5b5d46a292e0f07f792bf12e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19c5503f5b5d46a292e0f07f792bf12e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0-ckU3b5n1rj4OKtoGC3VVutbsE=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.824458+00 2025-12-09 10:15:55.824464+00 20097 FX001FW#玫红 SPMX-20240815315335 \N \N \N 1 \N [{"file_id": "d5b87673-65d1-411b-b3db-dd395da811ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ad2d08cc1a4494b6c415a9d60429c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ad2d08cc1a4494b6c415a9d60429c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ad2d08cc1a4494b6c415a9d60429c9.jpg", "file_size": 14223, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ad2d08cc1a4494b6c415a9d60429c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ad2d08cc1a4494b6c415a9d60429c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ad2d08cc1a4494b6c415a9d60429c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ad2d08cc1a4494b6c415a9d60429c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ad2d08cc1a4494b6c415a9d60429c9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xUJV3h04CeylKRpulHD7xx193Lk=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.827637+00 2025-12-09 10:15:55.827644+00 20098 CH002FWE#粉格子 SPMX-20240815315337 \N \N \N 1 \N [{"file_id": "3710f8ee-f414-4995-adac-c67d20ccc870", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24931da9ce494ba39ec5807b3aa6d4b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24931da9ce494ba39ec5807b3aa6d4b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24931da9ce494ba39ec5807b3aa6d4b8.jpg", "file_size": 12489, "is_delete": false, "file_type": 1, "original_file_name": "CH002FWE#粉格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24931da9ce494ba39ec5807b3aa6d4b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24931da9ce494ba39ec5807b3aa6d4b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24931da9ce494ba39ec5807b3aa6d4b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24931da9ce494ba39ec5807b3aa6d4b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24931da9ce494ba39ec5807b3aa6d4b8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cK75Mn4vPU_CSA4Gayzbpsz21Gk=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.830931+00 2025-12-09 10:15:55.830939+00 20099 DLT-334#墨绿XL码 SPMX-20240815315344 \N \N \N 1 \N [{"file_id": "b1dd0e22-ad28-4038-99df-e7f742502945", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39b449acfae64d59996252188feeb1b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39b449acfae64d59996252188feeb1b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39b449acfae64d59996252188feeb1b4.jpg", "file_size": 15796, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#墨绿XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b449acfae64d59996252188feeb1b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b449acfae64d59996252188feeb1b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39b449acfae64d59996252188feeb1b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39b449acfae64d59996252188feeb1b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39b449acfae64d59996252188feeb1b4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4gXFsDcbamxyvqeOErTUaMvG_PY=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.834133+00 2025-12-09 10:15:55.83414+00 20100 LZ1411#童装T1号色 SPMX-20240815315343 \N \N \N 1 \N [{"file_id": "4d9695a1-a7e6-4905-88f4-e5de34a2a1e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1dd725178c545fb845d52deeb927560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1dd725178c545fb845d52deeb927560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1dd725178c545fb845d52deeb927560.jpg", "file_size": 27273, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1dd725178c545fb845d52deeb927560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1dd725178c545fb845d52deeb927560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1dd725178c545fb845d52deeb927560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1dd725178c545fb845d52deeb927560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1dd725178c545fb845d52deeb927560.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPgsNsfxQfCjZMg8ROkCNSM84No=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.837313+00 2025-12-09 10:15:55.83732+00 20101 LJH2055#浅黄 SPMX-20240815315342 \N \N \N 1 \N [{"file_id": "d012d2b3-9d1f-42f3-8a34-63a30f0a83d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa70d69f62c845cabc4fb14b8400f794.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa70d69f62c845cabc4fb14b8400f794.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa70d69f62c845cabc4fb14b8400f794.jpg", "file_size": 72221, "is_delete": false, "file_type": 1, "original_file_name": "LJH2055#浅黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa70d69f62c845cabc4fb14b8400f794.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa70d69f62c845cabc4fb14b8400f794.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa70d69f62c845cabc4fb14b8400f794.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa70d69f62c845cabc4fb14b8400f794.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa70d69f62c845cabc4fb14b8400f794.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GdpPPPel3ffbU4JphKSIU4ISBtw=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.840622+00 2025-12-09 10:15:55.840629+00 20102 1238-23FWF#V5曲线 SPMX-20240815315338 \N \N \N 1 \N [{"file_id": "c34545c5-ec17-4283-91fa-4b51f3acb4d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg", "file_size": 27391, "is_delete": false, "file_type": 1, "original_file_name": "1238-23FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa9f40aa9a8a43cbbf3cbf768d338c6b.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxPBkQZt54orx6ksGuWyfxrQX1g=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.843771+00 2025-12-09 10:15:55.843777+00 20103 239#-定位裁-橙色 SPMX-20240815315340 \N \N \N 1 \N [{"file_id": "d4f7dd6b-f3de-45ea-a326-724bc28f6e5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e865d27296b04904a3c5b358fc3a1a0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e865d27296b04904a3c5b358fc3a1a0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e865d27296b04904a3c5b358fc3a1a0b.jpg", "file_size": 82163, "is_delete": false, "file_type": 1, "original_file_name": "239#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e865d27296b04904a3c5b358fc3a1a0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e865d27296b04904a3c5b358fc3a1a0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e865d27296b04904a3c5b358fc3a1a0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e865d27296b04904a3c5b358fc3a1a0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e865d27296b04904a3c5b358fc3a1a0b.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6z0xAV42aMUaBSiIWAdVa3RdW5Y=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.847019+00 2025-12-09 10:15:55.847026+00 20104 HXF0008-5#白色 SPMX-20240815315336 \N \N \N 1 \N [{"file_id": "7ab02ad5-1429-421a-ac02-e59961599b7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13327fd6aa3f40ca96212ff44b72c3f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13327fd6aa3f40ca96212ff44b72c3f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13327fd6aa3f40ca96212ff44b72c3f0.jpg", "file_size": 12111, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13327fd6aa3f40ca96212ff44b72c3f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13327fd6aa3f40ca96212ff44b72c3f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13327fd6aa3f40ca96212ff44b72c3f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13327fd6aa3f40ca96212ff44b72c3f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13327fd6aa3f40ca96212ff44b72c3f0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c--V2dxbXuQ9w_-OgleerQUlXNs=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.850487+00 2025-12-09 10:15:55.850494+00 20105 8810-1#土黄色 SPMX-20240815315341 \N \N \N 1 \N [{"file_id": "c628163d-fee2-48ad-ba44-034f1908ab3c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "986734c0b8394127999e5d9b0ef77825.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "986734c0b8394127999e5d9b0ef77825.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "986734c0b8394127999e5d9b0ef77825.jpg", "file_size": 18607, "is_delete": false, "file_type": 1, "original_file_name": "8810-1#土黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986734c0b8394127999e5d9b0ef77825.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986734c0b8394127999e5d9b0ef77825.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/986734c0b8394127999e5d9b0ef77825.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/986734c0b8394127999e5d9b0ef77825.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/986734c0b8394127999e5d9b0ef77825.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iyPkU91HCLFOhsrKkWHJQSXcFO0=", "createTime": "2024-08-15 15:07:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.853788+00 2025-12-09 10:15:55.853795+00 20106 8810-1#彩蓝色 SPMX-20240815315353 \N \N \N 1 \N [{"file_id": "00c3d08f-5dd3-4960-8582-247081b36c53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebdc575c3fc3436da1486005c6a497f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebdc575c3fc3436da1486005c6a497f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebdc575c3fc3436da1486005c6a497f1.jpg", "file_size": 17560, "is_delete": false, "file_type": 1, "original_file_name": "8810-1#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebdc575c3fc3436da1486005c6a497f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebdc575c3fc3436da1486005c6a497f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebdc575c3fc3436da1486005c6a497f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebdc575c3fc3436da1486005c6a497f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebdc575c3fc3436da1486005c6a497f1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hg05Vbkq55zt2PbCjhZTrrc8Aps=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.857243+00 2025-12-09 10:15:55.85725+00 20107 HXF0008-5#白色L SPMX-20240815315355 \N \N \N 1 \N [{"file_id": "056f1bf5-6a69-4af4-8a47-d34ce601ff02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eec63470ba2a4f8b8c61a2eb460f26a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eec63470ba2a4f8b8c61a2eb460f26a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eec63470ba2a4f8b8c61a2eb460f26a5.jpg", "file_size": 11883, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec63470ba2a4f8b8c61a2eb460f26a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec63470ba2a4f8b8c61a2eb460f26a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eec63470ba2a4f8b8c61a2eb460f26a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eec63470ba2a4f8b8c61a2eb460f26a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eec63470ba2a4f8b8c61a2eb460f26a5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3RsXhV0vSZrzVUuNgcJxkMOpDBM=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.860559+00 2025-12-09 10:15:55.860566+00 20108 002FWF#黑色净色 SPMX-20240815315348 \N \N \N 1 \N [{"file_id": "5b061bf3-54cc-4271-9638-2e2ab934ddec", "thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "thumbnail_name": "c2cea348b0a84fdc98e5980a1cd6b0f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://pic.mingdao.com/pic/20241112/", "large_thumbnail_name": "c2cea348b0a84fdc98e5980a1cd6b0f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://pic.mingdao.com/pic/20241112/", "file_name": "c2cea348b0a84fdc98e5980a1cd6b0f5.jpg", "file_size": 7741, "is_delete": false, "file_type": 1, "original_file_name": "7D9pfb8ZdLfS5AfF8D3UaS40ca4k0Macb65n7E0y7ncs6zeM0Q3f5e1U8R4Kcb7K.jpg", "allow_down": true, "large_thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/c2cea348b0a84fdc98e5980a1cd6b0f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://pic.mingdao.com/pic/20241112/c2cea348b0a84fdc98e5980a1cd6b0f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/pic/20241112/c2cea348b0a84fdc98e5980a1cd6b0f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/pic/20241112/c2cea348b0a84fdc98e5980a1cd6b0f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/pic/20241112/c2cea348b0a84fdc98e5980a1cd6b0f5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:87UMaWm5lJD3dEwKJJIUgLauCSU=", "createTime": "2024-11-12 16:43:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.863797+00 2025-12-09 10:15:55.863803+00 20109 DLT-334#彩兰2XL码 SPMX-20240815315350 \N \N \N 1 \N [{"file_id": "aae9a5da-fc33-43ce-9ae8-ccdfce30c609", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69a70b577bdd48d48f41ec01883f2944.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69a70b577bdd48d48f41ec01883f2944.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69a70b577bdd48d48f41ec01883f2944.jpg", "file_size": 15560, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#彩兰2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a70b577bdd48d48f41ec01883f2944.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a70b577bdd48d48f41ec01883f2944.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a70b577bdd48d48f41ec01883f2944.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69a70b577bdd48d48f41ec01883f2944.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69a70b577bdd48d48f41ec01883f2944.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnwLk4kZ-GP99fPbG9Ie0D3pekc=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.867056+00 2025-12-09 10:15:55.867063+00 20110 CH003FWE#粉格子 SPMX-20240815315347 \N \N \N 1 \N [{"file_id": "98c8d533-0c2a-4591-ba58-89e6749ca5b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f2c7f37261642a388d562aecfc84b57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f2c7f37261642a388d562aecfc84b57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f2c7f37261642a388d562aecfc84b57.jpg", "file_size": 11828, "is_delete": false, "file_type": 1, "original_file_name": "CH003FWE#粉格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7f37261642a388d562aecfc84b57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7f37261642a388d562aecfc84b57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7f37261642a388d562aecfc84b57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7f37261642a388d562aecfc84b57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f2c7f37261642a388d562aecfc84b57.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tsbMJP5ksZIOiNq7jes5ZOohZ70=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.870357+00 2025-12-09 10:15:55.870363+00 20111 FX001FW#紫 SPMX-20240815315346 \N \N \N 1 \N [{"file_id": "0dbc7e59-c12c-4635-8ccb-6df592f7cd86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d73d633546ae4418a66200ccb9519cba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d73d633546ae4418a66200ccb9519cba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d73d633546ae4418a66200ccb9519cba.jpg", "file_size": 13248, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73d633546ae4418a66200ccb9519cba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73d633546ae4418a66200ccb9519cba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d73d633546ae4418a66200ccb9519cba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d73d633546ae4418a66200ccb9519cba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d73d633546ae4418a66200ccb9519cba.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yo7QP2wsvmgRmU60kEWD7q3KhtQ=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.873602+00 2025-12-09 10:15:55.873608+00 20112 1238-23FWF#V5曲线番禺调色 SPMX-20240815315352 \N \N \N 1 \N [{"file_id": "b6606718-0601-4b04-b54a-c8872bdd4e38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9044a10a0cdd421188d6ce558d935efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9044a10a0cdd421188d6ce558d935efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9044a10a0cdd421188d6ce558d935efb.jpg", "file_size": 28244, "is_delete": false, "file_type": 1, "original_file_name": "1238-23FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9044a10a0cdd421188d6ce558d935efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9044a10a0cdd421188d6ce558d935efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9044a10a0cdd421188d6ce558d935efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9044a10a0cdd421188d6ce558d935efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9044a10a0cdd421188d6ce558d935efb.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JBQtHjd6l1TzI5E42_uQi7-CJD4=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.876807+00 2025-12-09 10:15:55.876813+00 20113 LJH2055#绿色 SPMX-20240815315356 \N \N \N 1 \N [{"file_id": "3511d9fc-c03d-4833-aabc-c4c724fbe198", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a595ba714c034656b7eab7409fc4cea0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a595ba714c034656b7eab7409fc4cea0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a595ba714c034656b7eab7409fc4cea0.jpg", "file_size": 67728, "is_delete": false, "file_type": 1, "original_file_name": "LJH2055#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a595ba714c034656b7eab7409fc4cea0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a595ba714c034656b7eab7409fc4cea0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a595ba714c034656b7eab7409fc4cea0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a595ba714c034656b7eab7409fc4cea0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a595ba714c034656b7eab7409fc4cea0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kmfUdoHEXaq9xp4kg6yE7CA2ws=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.880295+00 2025-12-09 10:15:55.880303+00 20114 239#-定位裁-白色 SPMX-20240815315349 \N \N \N 1 \N [{"file_id": "8a449d48-02ac-4a8b-91e6-c5c344373d66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5aec9044146e4af1b72c4e1881a0b619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5aec9044146e4af1b72c4e1881a0b619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5aec9044146e4af1b72c4e1881a0b619.jpg", "file_size": 79156, "is_delete": false, "file_type": 1, "original_file_name": "239#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aec9044146e4af1b72c4e1881a0b619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aec9044146e4af1b72c4e1881a0b619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5aec9044146e4af1b72c4e1881a0b619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5aec9044146e4af1b72c4e1881a0b619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5aec9044146e4af1b72c4e1881a0b619.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztJ5AQK0pM85la1U5kam3DKx0HQ=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.883613+00 2025-12-09 10:15:55.88362+00 20115 LZ1411#童装T2号色 SPMX-20240815315351 \N \N \N 1 \N [{"file_id": "3bebcbb6-7d4e-4c8f-8cbd-fd357167590f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3df1dfd8023a45f987ea64b7e1169edf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3df1dfd8023a45f987ea64b7e1169edf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3df1dfd8023a45f987ea64b7e1169edf.jpg", "file_size": 26633, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1dfd8023a45f987ea64b7e1169edf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1dfd8023a45f987ea64b7e1169edf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df1dfd8023a45f987ea64b7e1169edf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3df1dfd8023a45f987ea64b7e1169edf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3df1dfd8023a45f987ea64b7e1169edf.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyC8xvA41CrmZKXra72xesU5eHM=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.886846+00 2025-12-09 10:15:55.886852+00 20116 HXF0008-5#白色2XL SPMX-20240815315345 \N \N \N 1 \N [{"file_id": "facabcfd-db32-47fc-9530-453fded8e7a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ba4ac4a33eb4a288402e9916b8acbd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ba4ac4a33eb4a288402e9916b8acbd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ba4ac4a33eb4a288402e9916b8acbd4.jpg", "file_size": 12687, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba4ac4a33eb4a288402e9916b8acbd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba4ac4a33eb4a288402e9916b8acbd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ba4ac4a33eb4a288402e9916b8acbd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ba4ac4a33eb4a288402e9916b8acbd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ba4ac4a33eb4a288402e9916b8acbd4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oujsztK42pudR0DlpTEPIZ22DSo=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.890056+00 2025-12-09 10:15:55.890062+00 20117 JY-AD-166#5号墨绿 SPMX-20240815315354 \N \N \N 1 \N [{"file_id": "b86552ec-29eb-4827-afba-c617b96cbb03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f05704742dc4f009fc3a3e130d5715b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f05704742dc4f009fc3a3e130d5715b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f05704742dc4f009fc3a3e130d5715b.jpg", "file_size": 14969, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-166#5号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f05704742dc4f009fc3a3e130d5715b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f05704742dc4f009fc3a3e130d5715b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f05704742dc4f009fc3a3e130d5715b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f05704742dc4f009fc3a3e130d5715b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f05704742dc4f009fc3a3e130d5715b.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nPExVttQSORbMHYWs6Jm7rrJLr8=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.893286+00 2025-12-09 10:15:55.893293+00 20118 FX001FW#红 SPMX-20240815315357 \N \N \N 1 \N [{"file_id": "0216893a-ab50-40db-b465-0b2182de1441", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c6ce3da1087456d82173c9186a01704.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c6ce3da1087456d82173c9186a01704.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c6ce3da1087456d82173c9186a01704.jpg", "file_size": 16132, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6ce3da1087456d82173c9186a01704.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6ce3da1087456d82173c9186a01704.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c6ce3da1087456d82173c9186a01704.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c6ce3da1087456d82173c9186a01704.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c6ce3da1087456d82173c9186a01704.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tG3-JFoNx2pwNkchwWWZIoU41Vk=", "createTime": "2024-08-15 15:07:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.896618+00 2025-12-09 10:15:55.896624+00 20119 CH004FWE#VS-D3 SPMX-20240815315369 \N \N \N 1 \N [{"file_id": "3a20b211-bdcd-45ee-9b1c-79a6e145a81b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "954c9659e2664f8e91f023f918d280c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "954c9659e2664f8e91f023f918d280c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "954c9659e2664f8e91f023f918d280c0.jpg", "file_size": 16337, "is_delete": false, "file_type": 1, "original_file_name": "CH004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954c9659e2664f8e91f023f918d280c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954c9659e2664f8e91f023f918d280c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/954c9659e2664f8e91f023f918d280c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/954c9659e2664f8e91f023f918d280c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/954c9659e2664f8e91f023f918d280c0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4so2puuLTzAFxzl7pa8XnRYOLso=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.900022+00 2025-12-09 10:15:55.900029+00 20120 JY-AD-166#8号黑色 SPMX-20240815315364 \N \N \N 1 \N [{"file_id": "3b8e95ef-bedf-466e-ac6a-1198285d64d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg", "file_size": 16786, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-166#8号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b5d11e13f2a42d0af4c7c5d9aaf50cc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tc_K7qSOiAyFhBO5doO9EosCirY=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.903308+00 2025-12-09 10:15:55.903315+00 20121 FX001FW#黄 SPMX-20240815315367 \N \N \N 1 \N [{"file_id": "ddfe5188-9396-4e8f-837c-7f63f3890e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d417286a766c4a218bb5be4acd884f3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d417286a766c4a218bb5be4acd884f3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d417286a766c4a218bb5be4acd884f3d.jpg", "file_size": 12162, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d417286a766c4a218bb5be4acd884f3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d417286a766c4a218bb5be4acd884f3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d417286a766c4a218bb5be4acd884f3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d417286a766c4a218bb5be4acd884f3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d417286a766c4a218bb5be4acd884f3d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NRMYHo2QbX8cE7Ln6MO5lfTrUW8=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.906639+00 2025-12-09 10:15:55.906648+00 20122 LJH2059#大白底 SPMX-20240815315368 \N \N \N 1 \N [{"file_id": "5cb11935-6a4d-457c-a14a-1b1104c01218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f9345da462e4c40ac2da626fc836be4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f9345da462e4c40ac2da626fc836be4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f9345da462e4c40ac2da626fc836be4.jpg", "file_size": 52066, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#大白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9345da462e4c40ac2da626fc836be4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9345da462e4c40ac2da626fc836be4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f9345da462e4c40ac2da626fc836be4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f9345da462e4c40ac2da626fc836be4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f9345da462e4c40ac2da626fc836be4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNrTLAvDcSQ6dZEnfjUujPpkBWU=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.910291+00 2025-12-09 10:15:55.910297+00 20123 1238-24FWF#V5曲线 SPMX-20240815315363 \N \N \N 1 \N [{"file_id": "aa60dba8-db3b-4dc6-b5e3-e2925dba3992", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "078378074bb543188aabdb0f597748fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "078378074bb543188aabdb0f597748fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "078378074bb543188aabdb0f597748fd.jpg", "file_size": 24709, "is_delete": false, "file_type": 1, "original_file_name": "1238-24FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078378074bb543188aabdb0f597748fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078378074bb543188aabdb0f597748fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/078378074bb543188aabdb0f597748fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/078378074bb543188aabdb0f597748fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/078378074bb543188aabdb0f597748fd.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZY6Dv1hckow-Ynndgq6rqnAMEcc=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.913992+00 2025-12-09 10:15:55.913998+00 20124 239#-定位裁-黄色 SPMX-20240815315359 \N \N \N 1 \N [{"file_id": "e2e8f647-be7c-4b3d-9354-523bee429f4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e52ed714876476e871db2551fda35f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e52ed714876476e871db2551fda35f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e52ed714876476e871db2551fda35f7.jpg", "file_size": 83471, "is_delete": false, "file_type": 1, "original_file_name": "239#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52ed714876476e871db2551fda35f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52ed714876476e871db2551fda35f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e52ed714876476e871db2551fda35f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e52ed714876476e871db2551fda35f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e52ed714876476e871db2551fda35f7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3V92XrU0oejmkLTIM_CCIbKDWBw=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.917462+00 2025-12-09 10:15:55.917468+00 20125 DLT-334#彩兰XL码 SPMX-20240815315360 \N \N \N 1 \N [{"file_id": "17bcbfb3-a1f1-4d04-84dd-0c0ba3e571d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bc1a1ebfc6e4300b13de3971b400ca9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bc1a1ebfc6e4300b13de3971b400ca9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bc1a1ebfc6e4300b13de3971b400ca9.jpg", "file_size": 15308, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#彩兰XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bc1a1ebfc6e4300b13de3971b400ca9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bc1a1ebfc6e4300b13de3971b400ca9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bc1a1ebfc6e4300b13de3971b400ca9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bc1a1ebfc6e4300b13de3971b400ca9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bc1a1ebfc6e4300b13de3971b400ca9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mAgKMCxwkolRRYxoYV37L6FNT5o=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.920732+00 2025-12-09 10:15:55.920739+00 20126 CH003FWE#紫格子 SPMX-20240815315358 \N \N \N 1 \N [{"file_id": "6303b081-f048-42f5-bd4d-a9f4d2c31a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8469ec15ba034333befd5a1ec55b5c31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8469ec15ba034333befd5a1ec55b5c31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8469ec15ba034333befd5a1ec55b5c31.jpg", "file_size": 12160, "is_delete": false, "file_type": 1, "original_file_name": "CH003FWE#紫格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8469ec15ba034333befd5a1ec55b5c31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8469ec15ba034333befd5a1ec55b5c31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8469ec15ba034333befd5a1ec55b5c31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8469ec15ba034333befd5a1ec55b5c31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8469ec15ba034333befd5a1ec55b5c31.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V0hXVQXBir0iIYEFdI0b7YIueAU=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.924124+00 2025-12-09 10:15:55.924132+00 20127 LZ1411#童装T3号色 SPMX-20240815315362 \N \N \N 1 \N [{"file_id": "4bf91b44-2862-4c59-99b3-4c80566c7b52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5bf039853d9458597ccf5e5aa49da87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5bf039853d9458597ccf5e5aa49da87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5bf039853d9458597ccf5e5aa49da87.jpg", "file_size": 25003, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf039853d9458597ccf5e5aa49da87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf039853d9458597ccf5e5aa49da87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5bf039853d9458597ccf5e5aa49da87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5bf039853d9458597ccf5e5aa49da87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5bf039853d9458597ccf5e5aa49da87.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OfQviEF6Qyaj4CMDDWwglYis7yM=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.927793+00 2025-12-09 10:15:55.927801+00 20128 8810-1#枣红色 SPMX-20240815315365 \N \N \N 1 \N [{"file_id": "d36963c5-312c-4fc8-80bf-21d07cc2fe1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43333ddcc49e4e758495f1ecf6bb6bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43333ddcc49e4e758495f1ecf6bb6bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43333ddcc49e4e758495f1ecf6bb6bc7.jpg", "file_size": 16689, "is_delete": false, "file_type": 1, "original_file_name": "8810-1#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43333ddcc49e4e758495f1ecf6bb6bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43333ddcc49e4e758495f1ecf6bb6bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43333ddcc49e4e758495f1ecf6bb6bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43333ddcc49e4e758495f1ecf6bb6bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43333ddcc49e4e758495f1ecf6bb6bc7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ynHyh_YUpEfrX1XUCuOUjkFf6HI=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.931777+00 2025-12-09 10:15:55.931784+00 20129 HXF0008-5#白色M SPMX-20240815315366 \N \N \N 1 \N [{"file_id": "cdbfcfc6-84b9-473e-a686-4123eea4b5c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddf44ddeb32c41e496b8f49055ae0817.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddf44ddeb32c41e496b8f49055ae0817.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddf44ddeb32c41e496b8f49055ae0817.jpg", "file_size": 12162, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf44ddeb32c41e496b8f49055ae0817.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf44ddeb32c41e496b8f49055ae0817.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddf44ddeb32c41e496b8f49055ae0817.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddf44ddeb32c41e496b8f49055ae0817.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddf44ddeb32c41e496b8f49055ae0817.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dZ9mWAcCHa50W8j8Tep6cXKpzHA=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.935279+00 2025-12-09 10:15:55.935286+00 20130 003#2XL门边 SPMX-20240815315361 \N \N \N 1 \N [{"file_id": "376c7626-65ae-487e-b4d8-29a22f37be79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83954ad87a4b4a76b3641037858b560f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83954ad87a4b4a76b3641037858b560f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83954ad87a4b4a76b3641037858b560f.jpg", "file_size": 19308, "is_delete": false, "file_type": 1, "original_file_name": "003#2XL门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83954ad87a4b4a76b3641037858b560f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83954ad87a4b4a76b3641037858b560f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83954ad87a4b4a76b3641037858b560f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83954ad87a4b4a76b3641037858b560f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83954ad87a4b4a76b3641037858b560f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uzFLYFjFTyoEk8oLVQZH4FEOggg=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.938579+00 2025-12-09 10:15:55.938586+00 20131 239#-定位裁-黑色 SPMX-20240815315370 \N \N \N 1 \N [{"file_id": "c04e647b-9e79-4de1-bd03-d72f4bf630d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f5dd4ac6bc4434289521b9b94265855.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f5dd4ac6bc4434289521b9b94265855.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f5dd4ac6bc4434289521b9b94265855.jpg", "file_size": 79238, "is_delete": false, "file_type": 1, "original_file_name": "239#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5dd4ac6bc4434289521b9b94265855.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5dd4ac6bc4434289521b9b94265855.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f5dd4ac6bc4434289521b9b94265855.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f5dd4ac6bc4434289521b9b94265855.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f5dd4ac6bc4434289521b9b94265855.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UZdgixN6AqPBkNOyj1yWgm7K0Vc=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.942539+00 2025-12-09 10:15:55.942545+00 20132 LZ1411#童装T4号色 SPMX-20240815315373 \N \N \N 1 \N [{"file_id": "041ab246-6929-4efe-a25f-beed8fe2476d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1663988bc8c24f84b02550ec0c6e2570.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1663988bc8c24f84b02550ec0c6e2570.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1663988bc8c24f84b02550ec0c6e2570.jpg", "file_size": 24917, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1663988bc8c24f84b02550ec0c6e2570.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1663988bc8c24f84b02550ec0c6e2570.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1663988bc8c24f84b02550ec0c6e2570.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1663988bc8c24f84b02550ec0c6e2570.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1663988bc8c24f84b02550ec0c6e2570.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvGcKxfIZ7O4QXEKYx6HOQ4OnDg=", "createTime": "2024-08-15 15:07:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.946716+00 2025-12-09 10:15:55.946725+00 20133 003#WJC22 SPMX-20240815315372 \N \N \N 1 \N [{"file_id": "735af6a3-4595-47b2-a191-92e004f5100c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "709a40708123478eb3e480e223d7f165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "709a40708123478eb3e480e223d7f165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "709a40708123478eb3e480e223d7f165.jpg", "file_size": 29612, "is_delete": false, "file_type": 1, "original_file_name": "003#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709a40708123478eb3e480e223d7f165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709a40708123478eb3e480e223d7f165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/709a40708123478eb3e480e223d7f165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/709a40708123478eb3e480e223d7f165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/709a40708123478eb3e480e223d7f165.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFaph47f8lIbKmzhR9eIGw--Axs=", "createTime": "2024-08-15 15:07:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.950415+00 2025-12-09 10:15:55.950421+00 20134 DLT-334#批布亮黄 SPMX-20240815315371 \N \N \N 1 \N [{"file_id": "c74ba53f-7d42-4d0b-9eb1-47b13bab26ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "689c2311872a409d9f30051b7b73c818.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "689c2311872a409d9f30051b7b73c818.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "689c2311872a409d9f30051b7b73c818.jpg", "file_size": 17405, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布亮黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689c2311872a409d9f30051b7b73c818.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689c2311872a409d9f30051b7b73c818.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/689c2311872a409d9f30051b7b73c818.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/689c2311872a409d9f30051b7b73c818.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/689c2311872a409d9f30051b7b73c818.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BzDuK2_fwOdYrT7Z1m7gNKxW_3A=", "createTime": "2024-08-15 15:07:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.954051+00 2025-12-09 10:15:55.954057+00 20135 LJH2059#浅兰 SPMX-20240815315377 \N \N \N 1 \N [{"file_id": "d90077da-64df-4c01-87a6-1673ef88ea26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30bac6c2f18945e7b3264f250fc1a775.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30bac6c2f18945e7b3264f250fc1a775.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30bac6c2f18945e7b3264f250fc1a775.jpg", "file_size": 51257, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#浅兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bac6c2f18945e7b3264f250fc1a775.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bac6c2f18945e7b3264f250fc1a775.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30bac6c2f18945e7b3264f250fc1a775.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30bac6c2f18945e7b3264f250fc1a775.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30bac6c2f18945e7b3264f250fc1a775.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oLCCaMhr9QhZUC0v-0G5ZuFs_hQ=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.957565+00 2025-12-09 10:15:55.957572+00 20136 8810-1#湖绿色 SPMX-20240815315374 \N \N \N 1 \N [{"file_id": "f2e90897-368d-4d55-8b3f-68944e1ea103", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eae86f2b37064a82a19d2c871f1d15b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eae86f2b37064a82a19d2c871f1d15b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eae86f2b37064a82a19d2c871f1d15b6.jpg", "file_size": 17950, "is_delete": false, "file_type": 1, "original_file_name": "8810-1#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae86f2b37064a82a19d2c871f1d15b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae86f2b37064a82a19d2c871f1d15b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eae86f2b37064a82a19d2c871f1d15b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eae86f2b37064a82a19d2c871f1d15b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eae86f2b37064a82a19d2c871f1d15b6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OZiQSXD8Y6xKtWyJCYDB2gPWs0=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.961393+00 2025-12-09 10:15:55.961399+00 20137 FX001FW#黑 SPMX-20240815315379 \N \N \N 1 \N [{"file_id": "b9299117-277c-4094-ac77-5b68d538a04d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daef9eeb952e4455acd46a0257a6c81d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daef9eeb952e4455acd46a0257a6c81d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daef9eeb952e4455acd46a0257a6c81d.jpg", "file_size": 16416, "is_delete": false, "file_type": 1, "original_file_name": "FX001FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daef9eeb952e4455acd46a0257a6c81d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daef9eeb952e4455acd46a0257a6c81d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daef9eeb952e4455acd46a0257a6c81d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daef9eeb952e4455acd46a0257a6c81d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daef9eeb952e4455acd46a0257a6c81d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rTBUbsmcoxwxEB7nkXWoHTt6NMU=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.964938+00 2025-12-09 10:15:55.964945+00 20138 003#天蓝 SPMX-20240815315382 \N \N \N 1 \N [{"file_id": "3f8c37c6-692f-4a96-b949-c56a8a396f88", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2a52f0b3d2f4ebab380a010fca4f9ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2a52f0b3d2f4ebab380a010fca4f9ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2a52f0b3d2f4ebab380a010fca4f9ad.jpg", "file_size": 16397, "is_delete": false, "file_type": 1, "original_file_name": "003#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a52f0b3d2f4ebab380a010fca4f9ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a52f0b3d2f4ebab380a010fca4f9ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2a52f0b3d2f4ebab380a010fca4f9ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2a52f0b3d2f4ebab380a010fca4f9ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2a52f0b3d2f4ebab380a010fca4f9ad.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P54jMKSG6xObJTG4kDvBhHj1LI8=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.968496+00 2025-12-09 10:15:55.968503+00 20139 1238-25FWF#V5曲线 SPMX-20240815315375 \N \N \N 1 \N [{"file_id": "13ff3412-8297-4c35-9f6f-02e99cb1cc81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64c96e53cd6d46878e9d56e40fbbc8a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64c96e53cd6d46878e9d56e40fbbc8a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64c96e53cd6d46878e9d56e40fbbc8a3.jpg", "file_size": 24813, "is_delete": false, "file_type": 1, "original_file_name": "1238-25FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c96e53cd6d46878e9d56e40fbbc8a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c96e53cd6d46878e9d56e40fbbc8a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64c96e53cd6d46878e9d56e40fbbc8a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64c96e53cd6d46878e9d56e40fbbc8a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64c96e53cd6d46878e9d56e40fbbc8a3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNJRMPm-ZCEVKCjby9yQoyBaNpw=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.972298+00 2025-12-09 10:15:55.972304+00 20140 DLT-334#批布墨绿 SPMX-20240815315380 \N \N \N 1 \N [{"file_id": "2a77b242-f671-470c-a59b-6e15f4672bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57522097c74543b9aff0cbd6916791d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57522097c74543b9aff0cbd6916791d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57522097c74543b9aff0cbd6916791d0.jpg", "file_size": 15937, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57522097c74543b9aff0cbd6916791d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57522097c74543b9aff0cbd6916791d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57522097c74543b9aff0cbd6916791d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57522097c74543b9aff0cbd6916791d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57522097c74543b9aff0cbd6916791d0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ON_51_bPXCRXb1Mxtl7gRSE_l7E=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.97557+00 2025-12-09 10:15:55.975576+00 20141 JY-AD-166#9号姜黄 SPMX-20240815315376 \N \N \N 1 \N [{"file_id": "f1280f9c-731d-4104-b71c-81c1885026b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40fddc8ef16f415b873d239c61c7f4ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40fddc8ef16f415b873d239c61c7f4ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40fddc8ef16f415b873d239c61c7f4ad.jpg", "file_size": 16317, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-166#9号姜黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40fddc8ef16f415b873d239c61c7f4ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40fddc8ef16f415b873d239c61c7f4ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40fddc8ef16f415b873d239c61c7f4ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40fddc8ef16f415b873d239c61c7f4ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40fddc8ef16f415b873d239c61c7f4ad.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CwBxD9S4VRxDwsoIq-GXyC7jZhQ=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.978975+00 2025-12-09 10:15:55.978982+00 20142 HXF0008-5#白色XL SPMX-20240815315381 \N \N \N 1 \N [{"file_id": "776e060a-032f-4147-9db2-85b076458992", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae69cfaebb9d4962966968547cd8b9ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae69cfaebb9d4962966968547cd8b9ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae69cfaebb9d4962966968547cd8b9ca.jpg", "file_size": 12537, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae69cfaebb9d4962966968547cd8b9ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae69cfaebb9d4962966968547cd8b9ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae69cfaebb9d4962966968547cd8b9ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae69cfaebb9d4962966968547cd8b9ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae69cfaebb9d4962966968547cd8b9ca.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxwZhI4BF2UNrLYLkbqCWcwcSZ8=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.982216+00 2025-12-09 10:15:55.982222+00 20143 23P10#红色L SPMX-20240815315395 \N \N \N 1 \N [{"file_id": "f355bf15-b5ea-420a-b3f8-b7c66bdbdf57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a24c54e58f449569281bf0b7975a161.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a24c54e58f449569281bf0b7975a161.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a24c54e58f449569281bf0b7975a161.jpg", "file_size": 14842, "is_delete": false, "file_type": 1, "original_file_name": "23P10#红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a24c54e58f449569281bf0b7975a161.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a24c54e58f449569281bf0b7975a161.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a24c54e58f449569281bf0b7975a161.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a24c54e58f449569281bf0b7975a161.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a24c54e58f449569281bf0b7975a161.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zm8jdy74v-qd-44ET0tbs6TMSVY=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.985476+00 2025-12-09 10:15:55.985482+00 20144 88120-2#彩蓝色 SPMX-20240815315387 \N \N \N 1 \N [{"file_id": "3a6111a2-ce87-41a1-8d59-9d691254155f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7744100de9f24c5495562538d09d9b5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7744100de9f24c5495562538d09d9b5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7744100de9f24c5495562538d09d9b5d.jpg", "file_size": 26805, "is_delete": false, "file_type": 1, "original_file_name": "88120-2#彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7744100de9f24c5495562538d09d9b5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7744100de9f24c5495562538d09d9b5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7744100de9f24c5495562538d09d9b5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7744100de9f24c5495562538d09d9b5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7744100de9f24c5495562538d09d9b5d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZufPLiyACd-0oGjrZRwO-Ewr1w=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.988799+00 2025-12-09 10:15:55.988805+00 20145 HXF0008-5#粉色 SPMX-20240815315392 \N \N \N 1 \N [{"file_id": "f50dcef5-35f1-476b-b414-709bc572edbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f05203da685d4a2797b29bc42cb3c193.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f05203da685d4a2797b29bc42cb3c193.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f05203da685d4a2797b29bc42cb3c193.jpg", "file_size": 12002, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05203da685d4a2797b29bc42cb3c193.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05203da685d4a2797b29bc42cb3c193.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f05203da685d4a2797b29bc42cb3c193.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f05203da685d4a2797b29bc42cb3c193.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f05203da685d4a2797b29bc42cb3c193.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E6aN54OBUPHpe5T8bcHPk43PtYQ=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.992055+00 2025-12-09 10:15:55.992062+00 20146 003#女插肩2XL码-童4T码番禺调色 SPMX-20240815315390 \N \N \N 1 \N [{"file_id": "eb113e75-ae7b-4ec2-a52c-5f5d81d0942e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60927e60f9934ed49818729d8845fb49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60927e60f9934ed49818729d8845fb49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60927e60f9934ed49818729d8845fb49.jpg", "file_size": 13175, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩2XL码-童4T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60927e60f9934ed49818729d8845fb49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60927e60f9934ed49818729d8845fb49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60927e60f9934ed49818729d8845fb49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60927e60f9934ed49818729d8845fb49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60927e60f9934ed49818729d8845fb49.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H-5V3U5s7MvnTOI1Sk_KJLGWOkg=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.995337+00 2025-12-09 10:15:55.995342+00 20147 88120-2#枣红色 SPMX-20240815315397 \N \N \N 1 \N [{"file_id": "a912e8a5-3481-4147-9327-20af767a63d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eef9660de87343eba55bdb3ea19d12bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eef9660de87343eba55bdb3ea19d12bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eef9660de87343eba55bdb3ea19d12bb.jpg", "file_size": 26599, "is_delete": false, "file_type": 1, "original_file_name": "88120-2#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9660de87343eba55bdb3ea19d12bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9660de87343eba55bdb3ea19d12bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9660de87343eba55bdb3ea19d12bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eef9660de87343eba55bdb3ea19d12bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eef9660de87343eba55bdb3ea19d12bb.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgSeYCqaHU__19DOHfBX6mdEI6g=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:55.998641+00 2025-12-09 10:15:55.998647+00 20148 1238-3FWF#V5曲线 SPMX-20240815315398 \N \N \N 1 \N [{"file_id": "b08d0938-86e9-44d2-8c64-704b3fbf09df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30828b40feb246999d259030b51378ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30828b40feb246999d259030b51378ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30828b40feb246999d259030b51378ae.jpg", "file_size": 26829, "is_delete": false, "file_type": 1, "original_file_name": "1238-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30828b40feb246999d259030b51378ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30828b40feb246999d259030b51378ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30828b40feb246999d259030b51378ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30828b40feb246999d259030b51378ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30828b40feb246999d259030b51378ae.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GZ6Fn4Paezk-r4TOZJ04tridZSM=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.001958+00 2025-12-09 10:15:56.001964+00 20149 JY-AD-167#1号色 SPMX-20240815315389 \N \N \N 1 \N [{"file_id": "9a7bc722-d6b5-400e-bcc5-f34bb0d2a284", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d6175e4495345e9814c74e138a96435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d6175e4495345e9814c74e138a96435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d6175e4495345e9814c74e138a96435.jpg", "file_size": 17913, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-167#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d6175e4495345e9814c74e138a96435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d6175e4495345e9814c74e138a96435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d6175e4495345e9814c74e138a96435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d6175e4495345e9814c74e138a96435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d6175e4495345e9814c74e138a96435.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PMvU9VOY8T0YScW1HQfBIACLn0U=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.005186+00 2025-12-09 10:15:56.005192+00 20150 CH01997FW#L SPMX-20240815315394 \N \N \N 1 \N [{"file_id": "1e76f92b-2793-4880-84ee-6597707129ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "129abcd5eb1e410bafa6f9fa6d147cdc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "129abcd5eb1e410bafa6f9fa6d147cdc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "129abcd5eb1e410bafa6f9fa6d147cdc.jpg", "file_size": 13126, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/129abcd5eb1e410bafa6f9fa6d147cdc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/129abcd5eb1e410bafa6f9fa6d147cdc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/129abcd5eb1e410bafa6f9fa6d147cdc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/129abcd5eb1e410bafa6f9fa6d147cdc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/129abcd5eb1e410bafa6f9fa6d147cdc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o-WoD9TX0yeMpiZXa3t4t8pWyJI=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.008421+00 2025-12-09 10:15:56.008427+00 20151 1238-2FWF#V5曲线 SPMX-20240815315386 \N \N \N 1 \N [{"file_id": "bb5b05a0-cbb4-4d9d-a1c6-5b37a8119928", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e24f1d1601b4671a8cfb1627098a197.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e24f1d1601b4671a8cfb1627098a197.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e24f1d1601b4671a8cfb1627098a197.jpg", "file_size": 24750, "is_delete": false, "file_type": 1, "original_file_name": "1238-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24f1d1601b4671a8cfb1627098a197.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24f1d1601b4671a8cfb1627098a197.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e24f1d1601b4671a8cfb1627098a197.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e24f1d1601b4671a8cfb1627098a197.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e24f1d1601b4671a8cfb1627098a197.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:41MFUNF_-kMcEUUf4JuyJfyBYqc=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.011692+00 2025-12-09 10:15:56.011699+00 20152 LZ1412#童装T1号色 SPMX-20240815315396 \N \N \N 1 \N [{"file_id": "e61645b5-3af3-416c-9d60-e33245f26bc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32470d3c8e1044b5a2d0d5b5e39dfd45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32470d3c8e1044b5a2d0d5b5e39dfd45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32470d3c8e1044b5a2d0d5b5e39dfd45.jpg", "file_size": 21905, "is_delete": false, "file_type": 1, "original_file_name": "LZ1412#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32470d3c8e1044b5a2d0d5b5e39dfd45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32470d3c8e1044b5a2d0d5b5e39dfd45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32470d3c8e1044b5a2d0d5b5e39dfd45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32470d3c8e1044b5a2d0d5b5e39dfd45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32470d3c8e1044b5a2d0d5b5e39dfd45.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Speqje0f_ukdmMTVHyu6JWXp_Lw=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.014961+00 2025-12-09 10:15:56.014967+00 20153 DLT-334#批布彩兰 SPMX-20240815315393 \N \N \N 1 \N [{"file_id": "076497e4-6e11-4635-a9a3-0334868109ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "768150340a0a46da94d3e6665c3cdc51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "768150340a0a46da94d3e6665c3cdc51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "768150340a0a46da94d3e6665c3cdc51.jpg", "file_size": 16808, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/768150340a0a46da94d3e6665c3cdc51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/768150340a0a46da94d3e6665c3cdc51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/768150340a0a46da94d3e6665c3cdc51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/768150340a0a46da94d3e6665c3cdc51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/768150340a0a46da94d3e6665c3cdc51.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iPi7TVlwawVt9ivO-pYhVpML8lI=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.018236+00 2025-12-09 10:15:56.018243+00 20154 23901FWF#WJC22 SPMX-20240815315385 \N \N \N 1 \N [{"file_id": "d1140cad-7597-4f1e-854d-14ebf2e2399f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb30d2ed4f3c4eb89b117d1295400cbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb30d2ed4f3c4eb89b117d1295400cbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb30d2ed4f3c4eb89b117d1295400cbd.jpg", "file_size": 22583, "is_delete": false, "file_type": 1, "original_file_name": "23901FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb30d2ed4f3c4eb89b117d1295400cbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb30d2ed4f3c4eb89b117d1295400cbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb30d2ed4f3c4eb89b117d1295400cbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb30d2ed4f3c4eb89b117d1295400cbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb30d2ed4f3c4eb89b117d1295400cbd.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CP44DwCqRumFjVd41YZ7uGW6ykc=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.021427+00 2025-12-09 10:15:56.021434+00 20155 LJH2059#粉色 SPMX-20240815315388 \N \N \N 1 \N [{"file_id": "0fa0dbad-7b5c-431c-99c8-a12e7bcee5c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e89726cba5704eba996f5527722cf59e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e89726cba5704eba996f5527722cf59e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e89726cba5704eba996f5527722cf59e.jpg", "file_size": 44707, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89726cba5704eba996f5527722cf59e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89726cba5704eba996f5527722cf59e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e89726cba5704eba996f5527722cf59e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e89726cba5704eba996f5527722cf59e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e89726cba5704eba996f5527722cf59e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OPr931nvi7jCvu73wmO724Zw7sQ=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.025215+00 2025-12-09 10:15:56.025221+00 20156 CH01997FW#2XL SPMX-20240815315383 \N \N \N 1 \N [{"file_id": "72ea3da4-7245-4591-ba86-3f2c4db16165", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be163fc818344b26a350875e1a07f289.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be163fc818344b26a350875e1a07f289.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be163fc818344b26a350875e1a07f289.jpg", "file_size": 19830, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be163fc818344b26a350875e1a07f289.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be163fc818344b26a350875e1a07f289.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be163fc818344b26a350875e1a07f289.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be163fc818344b26a350875e1a07f289.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be163fc818344b26a350875e1a07f289.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dLstQgMgGCkyrtz3ACZaHqgozdE=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.028421+00 2025-12-09 10:15:56.028427+00 20157 LZ1411#童装T5号色 SPMX-20240815315384 \N \N \N 1 \N [{"file_id": "b7afc72f-7346-4d56-a5e2-da184be83c35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d45b2bf1d2745a38a59b43e74282633.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d45b2bf1d2745a38a59b43e74282633.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d45b2bf1d2745a38a59b43e74282633.jpg", "file_size": 25563, "is_delete": false, "file_type": 1, "original_file_name": "LZ1411#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d45b2bf1d2745a38a59b43e74282633.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d45b2bf1d2745a38a59b43e74282633.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d45b2bf1d2745a38a59b43e74282633.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d45b2bf1d2745a38a59b43e74282633.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d45b2bf1d2745a38a59b43e74282633.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ww1Eibu_2fD_VxG76BJ6zo3GXLI=", "createTime": "2024-08-15 15:07:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.031525+00 2025-12-09 10:15:56.03153+00 20158 FX001FWE#VS-D3 SPMX-20240815315391 \N \N \N 1 \N [{"file_id": "eb806a3b-88dd-4c07-9733-600865de2dea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3856437dba49420d9173e35d0f413d27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3856437dba49420d9173e35d0f413d27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3856437dba49420d9173e35d0f413d27.jpg", "file_size": 17446, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3856437dba49420d9173e35d0f413d27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3856437dba49420d9173e35d0f413d27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3856437dba49420d9173e35d0f413d27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3856437dba49420d9173e35d0f413d27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3856437dba49420d9173e35d0f413d27.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DR4eNzOJxZOmXNfzbKRlHkshMRw=", "createTime": "2024-08-15 15:07:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.03477+00 2025-12-09 10:15:56.034779+00 20159 CH01997FW#M SPMX-20240815315405 \N \N \N 1 \N [{"file_id": "45be2898-3c55-4e56-9325-32ed131ea1bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "496efb64b4b14b6f9e9f86b42bd2e3d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "496efb64b4b14b6f9e9f86b42bd2e3d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "496efb64b4b14b6f9e9f86b42bd2e3d6.jpg", "file_size": 12625, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496efb64b4b14b6f9e9f86b42bd2e3d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496efb64b4b14b6f9e9f86b42bd2e3d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/496efb64b4b14b6f9e9f86b42bd2e3d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/496efb64b4b14b6f9e9f86b42bd2e3d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/496efb64b4b14b6f9e9f86b42bd2e3d6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjFgRZfdc7-CHZzWPEKDHRqr9iY=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.064249+00 2025-12-09 10:15:56.064256+00 20168 23P10#红色M SPMX-20240815315406 \N \N \N 1 \N [{"file_id": "518977b3-922c-46c0-9c8f-ae707408c52a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0acbcf87a2004e3ea851c8a835c3cbad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0acbcf87a2004e3ea851c8a835c3cbad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0acbcf87a2004e3ea851c8a835c3cbad.jpg", "file_size": 15495, "is_delete": false, "file_type": 1, "original_file_name": "23P10#红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0acbcf87a2004e3ea851c8a835c3cbad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0acbcf87a2004e3ea851c8a835c3cbad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0acbcf87a2004e3ea851c8a835c3cbad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0acbcf87a2004e3ea851c8a835c3cbad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0acbcf87a2004e3ea851c8a835c3cbad.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FIRtzkj2NTcQftorkAkHlHYA-0=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.03799+00 2025-12-09 10:15:56.037996+00 20160 DLT-334#批布浅粉 SPMX-20240815315404 \N \N \N 1 \N [{"file_id": "a216216c-025a-4e67-ae0f-c43cd7738dba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfc2844402584bd6b4ffe455d3c1aa46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfc2844402584bd6b4ffe455d3c1aa46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfc2844402584bd6b4ffe455d3c1aa46.jpg", "file_size": 14158, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布浅粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfc2844402584bd6b4ffe455d3c1aa46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfc2844402584bd6b4ffe455d3c1aa46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfc2844402584bd6b4ffe455d3c1aa46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfc2844402584bd6b4ffe455d3c1aa46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfc2844402584bd6b4ffe455d3c1aa46.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BeMT41Fnr_GwwmJhk1TXgQtRjU8=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.041298+00 2025-12-09 10:15:56.041305+00 20161 JY-AD-167#6号色 SPMX-20240815315413 \N \N \N 1 \N [{"file_id": "0fcc39e3-1825-4dff-9f57-25e1367bf1bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b0efad204364a938f68a7aa8458abb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b0efad204364a938f68a7aa8458abb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b0efad204364a938f68a7aa8458abb7.jpg", "file_size": 17259, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-167#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0efad204364a938f68a7aa8458abb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0efad204364a938f68a7aa8458abb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b0efad204364a938f68a7aa8458abb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b0efad204364a938f68a7aa8458abb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b0efad204364a938f68a7aa8458abb7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spOx6en1Iy0KDEsSFVNovx2962E=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.044551+00 2025-12-09 10:15:56.044558+00 20162 FX001FWE#玫红底军绿 SPMX-20240815315402 \N \N \N 1 \N [{"file_id": "b4e5d6db-5e2f-4d07-ba79-00c035bd3f8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "163e26eed6b84d8baef6c3b34ebd9b9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "163e26eed6b84d8baef6c3b34ebd9b9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "163e26eed6b84d8baef6c3b34ebd9b9f.jpg", "file_size": 18298, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#玫红底军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/163e26eed6b84d8baef6c3b34ebd9b9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/163e26eed6b84d8baef6c3b34ebd9b9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/163e26eed6b84d8baef6c3b34ebd9b9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/163e26eed6b84d8baef6c3b34ebd9b9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/163e26eed6b84d8baef6c3b34ebd9b9f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jbGrpFHnIEXPK1nrzBXXhIUvW0Y=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.048018+00 2025-12-09 10:15:56.048025+00 20163 LZ1412#童装T2号色 SPMX-20240815315409 \N \N \N 1 \N [{"file_id": "21ef661f-d6e1-4f94-9c48-d08bba293e93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd10885b031940e48506037028e74031.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd10885b031940e48506037028e74031.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd10885b031940e48506037028e74031.jpg", "file_size": 19902, "is_delete": false, "file_type": 1, "original_file_name": "LZ1412#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd10885b031940e48506037028e74031.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd10885b031940e48506037028e74031.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd10885b031940e48506037028e74031.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd10885b031940e48506037028e74031.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd10885b031940e48506037028e74031.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ujtCsx3BruV-UPTWMsPR42cBDng=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.051347+00 2025-12-09 10:15:56.051354+00 20164 HXF0008-5#粉色2XL SPMX-20240815315403 \N \N \N 1 \N [{"file_id": "4df4d6ce-cd9b-4c68-b49d-8dd6856ef58a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3071a59beffd424f9628687bc4cf007d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3071a59beffd424f9628687bc4cf007d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3071a59beffd424f9628687bc4cf007d.jpg", "file_size": 12846, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3071a59beffd424f9628687bc4cf007d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3071a59beffd424f9628687bc4cf007d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3071a59beffd424f9628687bc4cf007d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3071a59beffd424f9628687bc4cf007d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3071a59beffd424f9628687bc4cf007d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5PULQ7_7yS-d-OcMYQxv58lgZpU=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.054583+00 2025-12-09 10:15:56.054588+00 20165 003#女插肩L码-童12T码番禺调色 SPMX-20240815315411 \N \N \N 1 \N [{"file_id": "c640716d-a4ea-4498-9e28-f030cf645700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6d33caf6b55418fb0081c2f477b7a9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6d33caf6b55418fb0081c2f477b7a9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6d33caf6b55418fb0081c2f477b7a9a.jpg", "file_size": 13417, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩L码-童12T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d33caf6b55418fb0081c2f477b7a9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d33caf6b55418fb0081c2f477b7a9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d33caf6b55418fb0081c2f477b7a9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6d33caf6b55418fb0081c2f477b7a9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6d33caf6b55418fb0081c2f477b7a9a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sR0x1zDzaHaAWAaNUrht7dVLlKM=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.057884+00 2025-12-09 10:15:56.05789+00 20166 JY-AD-167#4号色 SPMX-20240815315399 \N \N \N 1 \N [{"file_id": "09dece1f-9901-45f1-a738-65d058baa0d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b876b4e1ad204650b96b61dcffb1fb06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b876b4e1ad204650b96b61dcffb1fb06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b876b4e1ad204650b96b61dcffb1fb06.jpg", "file_size": 17385, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-167#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b876b4e1ad204650b96b61dcffb1fb06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b876b4e1ad204650b96b61dcffb1fb06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b876b4e1ad204650b96b61dcffb1fb06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b876b4e1ad204650b96b61dcffb1fb06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b876b4e1ad204650b96b61dcffb1fb06.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQPW7srCdmq7UsxF76JUOCYiNHk=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.06108+00 2025-12-09 10:15:56.061087+00 20167 LJH2059#红色 SPMX-20240815315400 \N \N \N 1 \N [{"file_id": "ffab7bfd-583f-404b-8546-e7ff069f6fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca7ec10a73934a76bc8df4fbe96873b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca7ec10a73934a76bc8df4fbe96873b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca7ec10a73934a76bc8df4fbe96873b7.jpg", "file_size": 53844, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7ec10a73934a76bc8df4fbe96873b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7ec10a73934a76bc8df4fbe96873b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7ec10a73934a76bc8df4fbe96873b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca7ec10a73934a76bc8df4fbe96873b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca7ec10a73934a76bc8df4fbe96873b7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiN4CmF6wzwIPgvqv_x6HvW6e94=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.067533+00 2025-12-09 10:15:56.067539+00 20169 1238-4FWF#V5曲线 SPMX-20240815315408 \N \N \N 1 \N [{"file_id": "52305e7a-6d19-4e41-885a-382de7ff9a1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3a201fee6654d5aaf2aba22787c51ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3a201fee6654d5aaf2aba22787c51ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3a201fee6654d5aaf2aba22787c51ee.jpg", "file_size": 28475, "is_delete": false, "file_type": 1, "original_file_name": "1238-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a201fee6654d5aaf2aba22787c51ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a201fee6654d5aaf2aba22787c51ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3a201fee6654d5aaf2aba22787c51ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3a201fee6654d5aaf2aba22787c51ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3a201fee6654d5aaf2aba22787c51ee.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ruoGngPG3ep1LDZXMsZhkwnwo60=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.070822+00 2025-12-09 10:15:56.070829+00 20170 FX001FWE#玫红底军绿匹布 SPMX-20240815315412 \N \N \N 1 \N [{"file_id": "c933bced-9883-42de-bce3-2c98ce644653", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "575e67097b204b9eae11183b8934b9a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "575e67097b204b9eae11183b8934b9a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "575e67097b204b9eae11183b8934b9a9.jpg", "file_size": 11252, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#玫红底军绿匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575e67097b204b9eae11183b8934b9a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575e67097b204b9eae11183b8934b9a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/575e67097b204b9eae11183b8934b9a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/575e67097b204b9eae11183b8934b9a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/575e67097b204b9eae11183b8934b9a9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nqa-6puoQej3nj6RBxG6tuyWfs0=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.074057+00 2025-12-09 10:15:56.074063+00 20171 003#女插肩3XL码-童2T码番禺调色 SPMX-20240815315401 \N \N \N 1 \N [{"file_id": "92f4c6d8-4b3e-4747-b97e-f9bbb702ede3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab7adc8f793c4c979f587c887d575f59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab7adc8f793c4c979f587c887d575f59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab7adc8f793c4c979f587c887d575f59.jpg", "file_size": 13372, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩3XL码-童2T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7adc8f793c4c979f587c887d575f59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7adc8f793c4c979f587c887d575f59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab7adc8f793c4c979f587c887d575f59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab7adc8f793c4c979f587c887d575f59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab7adc8f793c4c979f587c887d575f59.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FWNas4TRJIrhQwnEw96-DA5P4ys=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.077303+00 2025-12-09 10:15:56.077309+00 20172 88120-2#湖绿色 SPMX-20240815315407 \N \N \N 1 \N [{"file_id": "5e865ce3-a266-42b6-ac8f-38468e799644", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c404ecc614443daaac86d37bb46fb38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c404ecc614443daaac86d37bb46fb38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c404ecc614443daaac86d37bb46fb38.jpg", "file_size": 25183, "is_delete": false, "file_type": 1, "original_file_name": "88120-2#湖绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c404ecc614443daaac86d37bb46fb38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c404ecc614443daaac86d37bb46fb38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c404ecc614443daaac86d37bb46fb38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c404ecc614443daaac86d37bb46fb38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c404ecc614443daaac86d37bb46fb38.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6v8xQiqlVSq7WXvaRG2l1l7xwzE=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.080643+00 2025-12-09 10:15:56.080649+00 20173 LJH2059#绿色 SPMX-20240815315410 \N \N \N 1 \N [{"file_id": "70cb09b5-afef-4f03-8371-b4a56f8f6395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcf84c1659d04cdc95e73cdae951cfd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcf84c1659d04cdc95e73cdae951cfd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcf84c1659d04cdc95e73cdae951cfd7.jpg", "file_size": 52008, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf84c1659d04cdc95e73cdae951cfd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf84c1659d04cdc95e73cdae951cfd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcf84c1659d04cdc95e73cdae951cfd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcf84c1659d04cdc95e73cdae951cfd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcf84c1659d04cdc95e73cdae951cfd7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MoFfxXuv_31-a5uCgKynFlZZP-0=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.083937+00 2025-12-09 10:15:56.083943+00 20174 HXF0008-5#粉色M SPMX-20240815315425 \N \N \N 1 \N [{"file_id": "e75928ea-1a80-4ffd-afda-3c6b29d48175", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg", "file_size": 12124, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfbb3eea1ea047f1b0f1143cc58f4b9c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1lEtQeqc_NiLNdWqdwEgZwSUkfM=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.087108+00 2025-12-09 10:15:56.087116+00 20175 FX001FWE#白底军绿 SPMX-20240815315423 \N \N \N 1 \N [{"file_id": "d63bf8b3-0824-4327-9e9b-51ebc7e111a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "372fc70a78b046b1935283eec2d847f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "372fc70a78b046b1935283eec2d847f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "372fc70a78b046b1935283eec2d847f1.jpg", "file_size": 19042, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#白底军绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372fc70a78b046b1935283eec2d847f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372fc70a78b046b1935283eec2d847f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/372fc70a78b046b1935283eec2d847f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/372fc70a78b046b1935283eec2d847f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/372fc70a78b046b1935283eec2d847f1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CuG6Wwq1AZqTRNgCHaBcNgO3pcY=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.090335+00 2025-12-09 10:15:56.090341+00 20176 88120-2#玫红色 SPMX-20240815315417 \N \N \N 1 \N [{"file_id": "7a05bfdc-1b88-4114-ab4f-5e4ddae035f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d873b2141b54b5e8bf3c6dbdead8ec7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d873b2141b54b5e8bf3c6dbdead8ec7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d873b2141b54b5e8bf3c6dbdead8ec7.jpg", "file_size": 25723, "is_delete": false, "file_type": 1, "original_file_name": "88120-2#玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d873b2141b54b5e8bf3c6dbdead8ec7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d873b2141b54b5e8bf3c6dbdead8ec7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d873b2141b54b5e8bf3c6dbdead8ec7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d873b2141b54b5e8bf3c6dbdead8ec7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d873b2141b54b5e8bf3c6dbdead8ec7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ntjE_oDLxldEZCQPcOII1S8I3oE=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.093578+00 2025-12-09 10:15:56.093587+00 20177 LZ1412#童装T3号色 SPMX-20240815315421 \N \N \N 1 \N [{"file_id": "f24f2894-eff2-4a6c-80a0-4537d1f5eba1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13165da94fa0466f9a35493f1238aa82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13165da94fa0466f9a35493f1238aa82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13165da94fa0466f9a35493f1238aa82.jpg", "file_size": 20808, "is_delete": false, "file_type": 1, "original_file_name": "LZ1412#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13165da94fa0466f9a35493f1238aa82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13165da94fa0466f9a35493f1238aa82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13165da94fa0466f9a35493f1238aa82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13165da94fa0466f9a35493f1238aa82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13165da94fa0466f9a35493f1238aa82.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ECVShgS1wbdX57FY7qzDUEiUzfQ=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.096834+00 2025-12-09 10:15:56.09684+00 20178 23P10#红色S SPMX-20240815315416 \N \N \N 1 \N [{"file_id": "e5dd00bd-08da-48c0-9335-ec20bca4a714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09d3d8cd8d1f46648851c49d12e4207b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09d3d8cd8d1f46648851c49d12e4207b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09d3d8cd8d1f46648851c49d12e4207b.jpg", "file_size": 14543, "is_delete": false, "file_type": 1, "original_file_name": "23P10#红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d3d8cd8d1f46648851c49d12e4207b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d3d8cd8d1f46648851c49d12e4207b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d3d8cd8d1f46648851c49d12e4207b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09d3d8cd8d1f46648851c49d12e4207b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09d3d8cd8d1f46648851c49d12e4207b.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xk2gpQ0vI4Ameqk064SJpmBo6Bo=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.100063+00 2025-12-09 10:15:56.10007+00 20179 1238-5FWF#V5曲线 SPMX-20240815315419 \N \N \N 1 \N [{"file_id": "6c7016fc-6ad2-4e50-9fa9-32c92417d0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg", "file_size": 26455, "is_delete": false, "file_type": 1, "original_file_name": "1238-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3c7f9f3d11945d6a5cd8aa41772dd7e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iiSvv7tseVkV4PspkKksdwf0U1Q=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.103241+00 2025-12-09 10:15:56.103248+00 20180 HXF0008-5#粉色L SPMX-20240815315414 \N \N \N 1 \N [{"file_id": "6513f796-e7f8-4aec-90d6-f82c8e00cd85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e40533a038894a39ad50f09724d391d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e40533a038894a39ad50f09724d391d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e40533a038894a39ad50f09724d391d7.jpg", "file_size": 12209, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40533a038894a39ad50f09724d391d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40533a038894a39ad50f09724d391d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e40533a038894a39ad50f09724d391d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e40533a038894a39ad50f09724d391d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e40533a038894a39ad50f09724d391d7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o4t11cRnNmzby9KEQ3F2NX4Te8U=", "createTime": "2024-08-15 15:07:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.106665+00 2025-12-09 10:15:56.106673+00 20181 DLT-334#批布浅蓝绿 SPMX-20240815315415 \N \N \N 1 \N [{"file_id": "0346d001-4666-4311-9591-090d9c678eaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg", "file_size": 16775, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布浅蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9a1a6e6df9b4b6eb9ced001b9a8cbe3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RZlDhMVg_1wyYC80a1AyDV03nsk=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.109989+00 2025-12-09 10:15:56.109994+00 20182 003#女插肩M码-童14T码番禺调色 SPMX-20240815315420 \N \N \N 1 \N [{"file_id": "10a06df6-df29-424b-8ee5-20fe3cbbc8a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eadcb8ce1634df79d6047af56ad4985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eadcb8ce1634df79d6047af56ad4985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eadcb8ce1634df79d6047af56ad4985.jpg", "file_size": 12966, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩M码-童14T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eadcb8ce1634df79d6047af56ad4985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eadcb8ce1634df79d6047af56ad4985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eadcb8ce1634df79d6047af56ad4985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eadcb8ce1634df79d6047af56ad4985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eadcb8ce1634df79d6047af56ad4985.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:42MYP015BaHS9x07J9eEmKJA_HU=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.113489+00 2025-12-09 10:15:56.113499+00 20183 LJH2059#黑色 SPMX-20240815315422 \N \N \N 1 \N [{"file_id": "df3b7a58-3f67-4cd0-8638-ede297d7d7f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "348192dde1a54d34b51949de66d715ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "348192dde1a54d34b51949de66d715ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "348192dde1a54d34b51949de66d715ed.jpg", "file_size": 50141, "is_delete": false, "file_type": 1, "original_file_name": "LJH2059#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348192dde1a54d34b51949de66d715ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348192dde1a54d34b51949de66d715ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/348192dde1a54d34b51949de66d715ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/348192dde1a54d34b51949de66d715ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/348192dde1a54d34b51949de66d715ed.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d1kWZGM8b2-8F2n6qwE6JK4ZIWw=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.116933+00 2025-12-09 10:15:56.116939+00 20184 JY-AD-167#7号色 SPMX-20240815315424 \N \N \N 1 \N [{"file_id": "8b580113-0730-4f23-9f45-ef18b2fdc859", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74ec3675a7084e588627c4ec7cf124ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74ec3675a7084e588627c4ec7cf124ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74ec3675a7084e588627c4ec7cf124ad.jpg", "file_size": 17112, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-167#7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ec3675a7084e588627c4ec7cf124ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ec3675a7084e588627c4ec7cf124ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ec3675a7084e588627c4ec7cf124ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74ec3675a7084e588627c4ec7cf124ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74ec3675a7084e588627c4ec7cf124ad.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ycGMVZoXJr4MWCpF_aShlu5KP_c=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.120285+00 2025-12-09 10:15:56.120291+00 20185 CH01997FW#S SPMX-20240815315418 \N \N \N 1 \N [{"file_id": "7f2fdb1e-633f-4dbd-b9d2-8a3767b4fb0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75867d1fbd6b4a5ca0b19d1e9871c909.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75867d1fbd6b4a5ca0b19d1e9871c909.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75867d1fbd6b4a5ca0b19d1e9871c909.jpg", "file_size": 12085, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75867d1fbd6b4a5ca0b19d1e9871c909.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75867d1fbd6b4a5ca0b19d1e9871c909.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75867d1fbd6b4a5ca0b19d1e9871c909.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75867d1fbd6b4a5ca0b19d1e9871c909.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75867d1fbd6b4a5ca0b19d1e9871c909.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vA2AujxWidj0L2WptAuUBHMalBA=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.123578+00 2025-12-09 10:15:56.123584+00 20186 88300FWF#彩蓝 SPMX-20240815315428 \N \N \N 1 \N [{"file_id": "622fb88f-5d2c-4a78-a0e0-915d434116e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e60a5e0cd53d4837b6c1b44aab438e75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e60a5e0cd53d4837b6c1b44aab438e75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e60a5e0cd53d4837b6c1b44aab438e75.jpg", "file_size": 7915, "is_delete": false, "file_type": 1, "original_file_name": "88300FWF#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60a5e0cd53d4837b6c1b44aab438e75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60a5e0cd53d4837b6c1b44aab438e75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60a5e0cd53d4837b6c1b44aab438e75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e60a5e0cd53d4837b6c1b44aab438e75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e60a5e0cd53d4837b6c1b44aab438e75.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lOV988ovyay5G2KGSm10gSBtIT8=", "createTime": "2024-08-15 15:07:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.127003+00 2025-12-09 10:15:56.127009+00 20187 CH01997FW#XL SPMX-20240815315429 \N \N \N 1 \N [{"file_id": "c73cac21-212d-40e4-b54d-dfef99dec8c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a71b75e566be4ad7927b2ddb043ff8e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a71b75e566be4ad7927b2ddb043ff8e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a71b75e566be4ad7927b2ddb043ff8e7.jpg", "file_size": 19832, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71b75e566be4ad7927b2ddb043ff8e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71b75e566be4ad7927b2ddb043ff8e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71b75e566be4ad7927b2ddb043ff8e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a71b75e566be4ad7927b2ddb043ff8e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a71b75e566be4ad7927b2ddb043ff8e7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-vEGiS2OsT1IeZhgXzNLf7flkJg=", "createTime": "2024-08-15 15:07:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.130306+00 2025-12-09 10:15:56.130313+00 20188 1238-5FWF#V5曲线番禺调色 SPMX-20240815315430 \N \N \N 1 \N [{"file_id": "067287e3-0f1c-446a-91c8-a2bf8011620b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b2f5e47fa9497687f81a5a6a0feed5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b2f5e47fa9497687f81a5a6a0feed5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b2f5e47fa9497687f81a5a6a0feed5.jpg", "file_size": 27353, "is_delete": false, "file_type": 1, "original_file_name": "1238-5FWF#V5曲线番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b2f5e47fa9497687f81a5a6a0feed5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b2f5e47fa9497687f81a5a6a0feed5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b2f5e47fa9497687f81a5a6a0feed5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b2f5e47fa9497687f81a5a6a0feed5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b2f5e47fa9497687f81a5a6a0feed5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5haNnbFK19bxk-rqx7ftQNtm6w=", "createTime": "2024-08-15 15:07:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.133592+00 2025-12-09 10:15:56.133599+00 20189 DLT-334#批布蓝绿 SPMX-20240815315426 \N \N \N 1 \N [{"file_id": "6af1ece0-742b-4277-8e44-24882f768b6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23f59b920976454abcf690aa2761a70f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23f59b920976454abcf690aa2761a70f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23f59b920976454abcf690aa2761a70f.jpg", "file_size": 16562, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#批布蓝绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f59b920976454abcf690aa2761a70f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f59b920976454abcf690aa2761a70f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23f59b920976454abcf690aa2761a70f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23f59b920976454abcf690aa2761a70f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23f59b920976454abcf690aa2761a70f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ghdx86Ipl-C2SVDS0Z5TNwnRBHQ=", "createTime": "2024-08-15 15:07:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.136846+00 2025-12-09 10:15:56.136853+00 20190 23P10#红色XL SPMX-20240815315427 \N \N \N 1 \N [{"file_id": "4a797cd9-647e-429e-a066-d7e9abbe699f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dccc64cfc1c84c0280ba8cbbd47f81e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dccc64cfc1c84c0280ba8cbbd47f81e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dccc64cfc1c84c0280ba8cbbd47f81e8.jpg", "file_size": 15057, "is_delete": false, "file_type": 1, "original_file_name": "23P10#红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccc64cfc1c84c0280ba8cbbd47f81e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccc64cfc1c84c0280ba8cbbd47f81e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dccc64cfc1c84c0280ba8cbbd47f81e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dccc64cfc1c84c0280ba8cbbd47f81e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dccc64cfc1c84c0280ba8cbbd47f81e8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaSFcI8hp8tdt5Z6KTeR6eFyga0=", "createTime": "2024-08-15 15:07:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.140134+00 2025-12-09 10:15:56.140141+00 20191 DLT-334#浅粉21XL码 SPMX-20240815315436 \N \N \N 1 \N [{"file_id": "0c8ad9a6-4324-4548-9aeb-571d54e295d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0e79a89e21f42739c403d2a14c657b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0e79a89e21f42739c403d2a14c657b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0e79a89e21f42739c403d2a14c657b9.jpg", "file_size": 14930, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#浅粉21XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0e79a89e21f42739c403d2a14c657b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0e79a89e21f42739c403d2a14c657b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0e79a89e21f42739c403d2a14c657b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0e79a89e21f42739c403d2a14c657b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0e79a89e21f42739c403d2a14c657b9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jUa5GexkyMmjK9DLTGK9pOEwyOw=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.143426+00 2025-12-09 10:15:56.143432+00 20192 LJH2063#橙色 SPMX-20240815315438 \N \N \N 1 \N [{"file_id": "3113bc61-1c8f-44e5-9586-d9daf37c1f97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "255f7bdeadbf4c8db552498c1017a1bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "255f7bdeadbf4c8db552498c1017a1bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "255f7bdeadbf4c8db552498c1017a1bb.jpg", "file_size": 76755, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255f7bdeadbf4c8db552498c1017a1bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255f7bdeadbf4c8db552498c1017a1bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255f7bdeadbf4c8db552498c1017a1bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/255f7bdeadbf4c8db552498c1017a1bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/255f7bdeadbf4c8db552498c1017a1bb.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HKiTT4eqpv2OJIc5onD0hakhD3M=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.146678+00 2025-12-09 10:15:56.146685+00 20193 1238-6FWF# SPMX-20240815315441 \N \N \N 1 \N [{"file_id": "503aeee3-758a-4b88-aa79-99062001e8f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbba4194d20040e3bc4cc4f22f825e80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbba4194d20040e3bc4cc4f22f825e80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbba4194d20040e3bc4cc4f22f825e80.jpg", "file_size": 21928, "is_delete": false, "file_type": 1, "original_file_name": "1238-6FWF#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbba4194d20040e3bc4cc4f22f825e80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbba4194d20040e3bc4cc4f22f825e80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbba4194d20040e3bc4cc4f22f825e80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbba4194d20040e3bc4cc4f22f825e80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbba4194d20040e3bc4cc4f22f825e80.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfqs3I9Jo_2J104xNJ6oIz_uA3c=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.149977+00 2025-12-09 10:15:56.149984+00 20194 JY-AD-192#1号蓝拼绿多色 SPMX-20240815315434 \N \N \N 1 \N [{"file_id": "b9d57c81-209c-4bae-8b1a-e0715e22ec0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccdebddb99a14800a26ddbf417bd10a9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccdebddb99a14800a26ddbf417bd10a9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccdebddb99a14800a26ddbf417bd10a9.jpg", "file_size": 24371, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-192#1号蓝拼绿多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdebddb99a14800a26ddbf417bd10a9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdebddb99a14800a26ddbf417bd10a9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccdebddb99a14800a26ddbf417bd10a9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccdebddb99a14800a26ddbf417bd10a9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccdebddb99a14800a26ddbf417bd10a9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wVFg8J7qFUtmV6ePuW63Pph43vA=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.153302+00 2025-12-09 10:15:56.153308+00 20195 HXF0008-5#粉色XL SPMX-20240815315433 \N \N \N 1 \N [{"file_id": "bd99304c-e692-4935-b013-53af42c0cb7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd0dd675894840a1b04a07fcf333c24e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd0dd675894840a1b04a07fcf333c24e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd0dd675894840a1b04a07fcf333c24e.jpg", "file_size": 12830, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-5#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0dd675894840a1b04a07fcf333c24e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0dd675894840a1b04a07fcf333c24e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0dd675894840a1b04a07fcf333c24e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd0dd675894840a1b04a07fcf333c24e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd0dd675894840a1b04a07fcf333c24e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oU9T2hG4Xx7xLQrRrBiq4PQjIuk=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.156603+00 2025-12-09 10:15:56.15661+00 20196 23P10#黑色M SPMX-20240815315442 \N \N \N 1 \N [{"file_id": "cb98e089-7570-403b-b538-8355c4dc72b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg", "file_size": 18383, "is_delete": false, "file_type": 1, "original_file_name": "23P10#黑色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6d3f2dd68a84f41a47a9f0d2d979b2a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETpxtbZ1Nq8cg49-TnI8rAFNmy0=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.159842+00 2025-12-09 10:15:56.159848+00 20197 JY-AD-192#4号黄拼红多色 SPMX-20240815315443 \N \N \N 1 \N [{"file_id": "e47eeb16-a814-4f75-a677-800002d2c3d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02e114770f284134a14fc1f26d34a537.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02e114770f284134a14fc1f26d34a537.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02e114770f284134a14fc1f26d34a537.jpg", "file_size": 24250, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-192#4号黄拼红多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e114770f284134a14fc1f26d34a537.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e114770f284134a14fc1f26d34a537.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e114770f284134a14fc1f26d34a537.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02e114770f284134a14fc1f26d34a537.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02e114770f284134a14fc1f26d34a537.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dhh11Ztq0b2MKNToIEvIopXXVCQ=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.163097+00 2025-12-09 10:15:56.163103+00 20198 88300FWF#果绿 SPMX-20240815315435 \N \N \N 1 \N [{"file_id": "d320940a-01c5-4071-893f-ed84fc7a946e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a678221e66174e5fbf7d2ccd8820a722.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a678221e66174e5fbf7d2ccd8820a722.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a678221e66174e5fbf7d2ccd8820a722.jpg", "file_size": 7938, "is_delete": false, "file_type": 1, "original_file_name": "88300FWF#果绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a678221e66174e5fbf7d2ccd8820a722.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a678221e66174e5fbf7d2ccd8820a722.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a678221e66174e5fbf7d2ccd8820a722.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a678221e66174e5fbf7d2ccd8820a722.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a678221e66174e5fbf7d2ccd8820a722.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JzpfvtcbF-gJli4ASIIAn0pOfKw=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.166368+00 2025-12-09 10:15:56.166375+00 20199 FX001FWE#白底军绿匹布 SPMX-20240815315439 \N \N \N 1 \N [{"file_id": "85fbebfd-f0e0-4536-a5a6-154e6cf2d2e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f458a593bc44209a64009aea37e7f69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f458a593bc44209a64009aea37e7f69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f458a593bc44209a64009aea37e7f69.jpg", "file_size": 11931, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#白底军绿匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f458a593bc44209a64009aea37e7f69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f458a593bc44209a64009aea37e7f69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f458a593bc44209a64009aea37e7f69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f458a593bc44209a64009aea37e7f69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f458a593bc44209a64009aea37e7f69.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fqoeO96AKly3uleqpcGca_nWETM=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.169581+00 2025-12-09 10:15:56.169588+00 20200 LZ1412#童装T4号色 SPMX-20240815315437 \N \N \N 1 \N [{"file_id": "b5699516-a47a-4f01-8517-ea02ff9339b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "309a351a59d3421cbdfa67de5e028183.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "309a351a59d3421cbdfa67de5e028183.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "309a351a59d3421cbdfa67de5e028183.jpg", "file_size": 21671, "is_delete": false, "file_type": 1, "original_file_name": "LZ1412#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a351a59d3421cbdfa67de5e028183.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a351a59d3421cbdfa67de5e028183.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/309a351a59d3421cbdfa67de5e028183.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/309a351a59d3421cbdfa67de5e028183.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/309a351a59d3421cbdfa67de5e028183.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONN6eKaheBnMcmPEfZADf4WOkVM=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.172758+00 2025-12-09 10:15:56.172765+00 20201 CH01997FW#XS SPMX-20240815315440 \N \N \N 1 \N [{"file_id": "a81c60f7-ae64-4ef1-b494-61edfb98a447", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00a4ccb448bd48749a7237f9e44f2fb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00a4ccb448bd48749a7237f9e44f2fb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00a4ccb448bd48749a7237f9e44f2fb0.jpg", "file_size": 12072, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a4ccb448bd48749a7237f9e44f2fb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a4ccb448bd48749a7237f9e44f2fb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00a4ccb448bd48749a7237f9e44f2fb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00a4ccb448bd48749a7237f9e44f2fb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00a4ccb448bd48749a7237f9e44f2fb0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UqYOwN9eiuDe8D0AXK0TIH4DFFs=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.175886+00 2025-12-09 10:15:56.175893+00 20202 23P10#黑色L SPMX-20240815315431 \N \N \N 1 \N [{"file_id": "52cedfc9-6ab8-4f16-b778-cfdc13db51b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04ccbdf5376b4149be8f8f377237e951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04ccbdf5376b4149be8f8f377237e951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04ccbdf5376b4149be8f8f377237e951.jpg", "file_size": 17719, "is_delete": false, "file_type": 1, "original_file_name": "23P10#黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ccbdf5376b4149be8f8f377237e951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ccbdf5376b4149be8f8f377237e951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04ccbdf5376b4149be8f8f377237e951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04ccbdf5376b4149be8f8f377237e951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04ccbdf5376b4149be8f8f377237e951.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mqCTlEijAGgcGxTwfnajEwysF6Q=", "createTime": "2024-08-15 15:07:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.179228+00 2025-12-09 10:15:56.179234+00 20203 003#女插肩S码番禺调色 SPMX-20240815315432 \N \N \N 1 \N [{"file_id": "aa592daa-6c9d-412d-b891-fd2a9feb2f0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eb82449526e435d86c085231fbc130e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eb82449526e435d86c085231fbc130e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eb82449526e435d86c085231fbc130e.jpg", "file_size": 18262, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩S码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb82449526e435d86c085231fbc130e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb82449526e435d86c085231fbc130e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb82449526e435d86c085231fbc130e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eb82449526e435d86c085231fbc130e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eb82449526e435d86c085231fbc130e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYDZOzu77l2Y7EE7d0ex7EMlIuA=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.18245+00 2025-12-09 10:15:56.182457+00 20204 23P10#黑色S SPMX-20240815315453 \N \N \N 1 \N [{"file_id": "c370d106-5d11-4904-90dd-2dd81aeb2e97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa9efcdf6cba44bdb158c4d406c8b4df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa9efcdf6cba44bdb158c4d406c8b4df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa9efcdf6cba44bdb158c4d406c8b4df.jpg", "file_size": 18003, "is_delete": false, "file_type": 1, "original_file_name": "23P10#黑色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9efcdf6cba44bdb158c4d406c8b4df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9efcdf6cba44bdb158c4d406c8b4df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9efcdf6cba44bdb158c4d406c8b4df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa9efcdf6cba44bdb158c4d406c8b4df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa9efcdf6cba44bdb158c4d406c8b4df.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CWntF8iqDA0uYq1MjqSyAUD5wmk=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.185671+00 2025-12-09 10:15:56.185677+00 20205 DLT-334#浅粉2XL码 SPMX-20240815315447 \N \N \N 1 \N [{"file_id": "2a0b90ea-ffcf-41a4-aa74-0701ab21d4ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8da9d752cb0f40a1883d0fead0d8370d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8da9d752cb0f40a1883d0fead0d8370d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8da9d752cb0f40a1883d0fead0d8370d.jpg", "file_size": 14930, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#浅粉2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da9d752cb0f40a1883d0fead0d8370d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da9d752cb0f40a1883d0fead0d8370d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8da9d752cb0f40a1883d0fead0d8370d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8da9d752cb0f40a1883d0fead0d8370d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8da9d752cb0f40a1883d0fead0d8370d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JKoeAGRlZ5jzPUsagtqh2cJrxeo=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.188986+00 2025-12-09 10:15:56.188993+00 20206 JY-AD-192#5号果绿拼粉多色 SPMX-20240815315454 \N \N \N 1 \N [{"file_id": "2e067c7d-aeaf-4d26-891e-ebf3e6e3eed3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f997f2c006974d959bbaf46e27881168.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f997f2c006974d959bbaf46e27881168.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f997f2c006974d959bbaf46e27881168.jpg", "file_size": 23621, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-192#5号果绿拼粉多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f997f2c006974d959bbaf46e27881168.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f997f2c006974d959bbaf46e27881168.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f997f2c006974d959bbaf46e27881168.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f997f2c006974d959bbaf46e27881168.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f997f2c006974d959bbaf46e27881168.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d5gSaHd3U3MAXQFuXopWXQ7HAQM=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.192267+00 2025-12-09 10:15:56.192274+00 20207 DLT-334#浅粉XL码 SPMX-20240815315460 \N \N \N 1 \N [{"file_id": "f67b25f5-ddeb-4bbc-952f-567186f39700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c703e2bf5193416f84d67182ec0d0f2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c703e2bf5193416f84d67182ec0d0f2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c703e2bf5193416f84d67182ec0d0f2f.jpg", "file_size": 15056, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#浅粉XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c703e2bf5193416f84d67182ec0d0f2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c703e2bf5193416f84d67182ec0d0f2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c703e2bf5193416f84d67182ec0d0f2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c703e2bf5193416f84d67182ec0d0f2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c703e2bf5193416f84d67182ec0d0f2f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SuAE81xjN_H7qRdtjZPQAiwRkKs=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.195564+00 2025-12-09 10:15:56.195571+00 20208 FX001FWE#白底黑色 SPMX-20240815315449 \N \N \N 1 \N [{"file_id": "efc029db-8ded-45b7-aac0-cbbcf54f7bb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5907f9c395d94288bd2314cfe995c933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5907f9c395d94288bd2314cfe995c933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5907f9c395d94288bd2314cfe995c933.jpg", "file_size": 20628, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#白底黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5907f9c395d94288bd2314cfe995c933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5907f9c395d94288bd2314cfe995c933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5907f9c395d94288bd2314cfe995c933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5907f9c395d94288bd2314cfe995c933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5907f9c395d94288bd2314cfe995c933.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8P7jQR7kLz-_z8-UCcs_NHfvUlw=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.19883+00 2025-12-09 10:15:56.198836+00 20209 1238-6FWF#V5曲线 SPMX-20240815315452 \N \N \N 1 \N [{"file_id": "4a67b957-4821-4a72-a7d8-8f7351ca6528", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bb05b7b429d4337ab4ddcffc7d189bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bb05b7b429d4337ab4ddcffc7d189bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bb05b7b429d4337ab4ddcffc7d189bf.jpg", "file_size": 22757, "is_delete": false, "file_type": 1, "original_file_name": "1238-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb05b7b429d4337ab4ddcffc7d189bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb05b7b429d4337ab4ddcffc7d189bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb05b7b429d4337ab4ddcffc7d189bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bb05b7b429d4337ab4ddcffc7d189bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bb05b7b429d4337ab4ddcffc7d189bf.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vg6mc5SM02QSNiQruJKHWgN0LtU=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.202365+00 2025-12-09 10:15:56.20237+00 20210 LZ1412#童装T5号色 SPMX-20240815315448 \N \N \N 1 \N [{"file_id": "e94d5912-18b3-41ee-9323-4cee7d623c00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "165d2b05ef5d4c88bf985fa5b16405e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "165d2b05ef5d4c88bf985fa5b16405e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "165d2b05ef5d4c88bf985fa5b16405e7.jpg", "file_size": 20734, "is_delete": false, "file_type": 1, "original_file_name": "LZ1412#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165d2b05ef5d4c88bf985fa5b16405e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165d2b05ef5d4c88bf985fa5b16405e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/165d2b05ef5d4c88bf985fa5b16405e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/165d2b05ef5d4c88bf985fa5b16405e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/165d2b05ef5d4c88bf985fa5b16405e7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9efK1Hy8Wvu80Y1oux15irPH9RI=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.205875+00 2025-12-09 10:15:56.205882+00 20211 88300FWF#粉色 SPMX-20240815315446 \N \N \N 1 \N [{"file_id": "7691b26b-6e67-4d8e-b5be-0ac683b3b786", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cda0c361f82b4eb7a369e3d92c456ebf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cda0c361f82b4eb7a369e3d92c456ebf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cda0c361f82b4eb7a369e3d92c456ebf.jpg", "file_size": 7839, "is_delete": false, "file_type": 1, "original_file_name": "88300FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda0c361f82b4eb7a369e3d92c456ebf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda0c361f82b4eb7a369e3d92c456ebf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda0c361f82b4eb7a369e3d92c456ebf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cda0c361f82b4eb7a369e3d92c456ebf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cda0c361f82b4eb7a369e3d92c456ebf.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k-yesDlgjN2YAqzJC35Zl8ki04U=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.209172+00 2025-12-09 10:15:56.209178+00 20212 CH09304FWD#无字母炫彩粉L SPMX-20240815315459 \N \N \N 1 \N [{"file_id": "75935599-e6c1-4c4d-b0a2-3092ed84ff4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "855d18d7eb5c4d7284aedbf22cfdc33c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "855d18d7eb5c4d7284aedbf22cfdc33c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "855d18d7eb5c4d7284aedbf22cfdc33c.jpg", "file_size": 14565, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855d18d7eb5c4d7284aedbf22cfdc33c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855d18d7eb5c4d7284aedbf22cfdc33c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/855d18d7eb5c4d7284aedbf22cfdc33c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/855d18d7eb5c4d7284aedbf22cfdc33c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/855d18d7eb5c4d7284aedbf22cfdc33c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtHO4Ss7Qe0pDHemltClJGYG6-A=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.212639+00 2025-12-09 10:15:56.212645+00 20213 HXF0008-A1#白色RC23 SPMX-20240815315451 \N \N \N 1 \N [{"file_id": "a4d14ec8-14ce-417a-9390-f3ae9825b487", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "597af4585bae4bed96bf29dc3798b5f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "597af4585bae4bed96bf29dc3798b5f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "597af4585bae4bed96bf29dc3798b5f5.jpg", "file_size": 22231, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-A1#白色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af4585bae4bed96bf29dc3798b5f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af4585bae4bed96bf29dc3798b5f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/597af4585bae4bed96bf29dc3798b5f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/597af4585bae4bed96bf29dc3798b5f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/597af4585bae4bed96bf29dc3798b5f5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f6tKaELmrTo0W2VZDcDSPVeoGBk=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.215876+00 2025-12-09 10:15:56.215884+00 20214 CH01997FW#净色 SPMX-20240815315450 \N \N \N 1 \N [{"file_id": "269502a0-9cf4-41b4-a7f1-ba53c714f5cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36259ec95ff24cc285262cf10a56bebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36259ec95ff24cc285262cf10a56bebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36259ec95ff24cc285262cf10a56bebc.jpg", "file_size": 4850, "is_delete": false, "file_type": 1, "original_file_name": "CH01997FW#净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36259ec95ff24cc285262cf10a56bebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36259ec95ff24cc285262cf10a56bebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36259ec95ff24cc285262cf10a56bebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36259ec95ff24cc285262cf10a56bebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36259ec95ff24cc285262cf10a56bebc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZsgjjGR0GsX8nkUKqgzRj7kyr3c=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.219223+00 2025-12-09 10:15:56.21923+00 20215 88300FWF#红色 SPMX-20240815315455 \N \N \N 1 \N [{"file_id": "59fed235-0d96-4bf3-84f0-56c527862c1b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d9436432f2f4786aa362bf9f2611b38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d9436432f2f4786aa362bf9f2611b38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d9436432f2f4786aa362bf9f2611b38.jpg", "file_size": 8004, "is_delete": false, "file_type": 1, "original_file_name": "88300FWF#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9436432f2f4786aa362bf9f2611b38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9436432f2f4786aa362bf9f2611b38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d9436432f2f4786aa362bf9f2611b38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d9436432f2f4786aa362bf9f2611b38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d9436432f2f4786aa362bf9f2611b38.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zv3bp27Bb8L3uRKiBimhAULDlnk=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.222472+00 2025-12-09 10:15:56.222479+00 20216 FX001FWE#白底黑色匹布 SPMX-20240815315461 \N \N \N 1 \N [{"file_id": "083211b0-7c45-4e4d-bc69-5b04b7524c1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "765ca840385049c9a5d3059ffc155b81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "765ca840385049c9a5d3059ffc155b81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "765ca840385049c9a5d3059ffc155b81.jpg", "file_size": 13313, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#白底黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765ca840385049c9a5d3059ffc155b81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765ca840385049c9a5d3059ffc155b81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/765ca840385049c9a5d3059ffc155b81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/765ca840385049c9a5d3059ffc155b81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/765ca840385049c9a5d3059ffc155b81.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kpZpz-ih4dmPdix52TaAcVu_cbA=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.22575+00 2025-12-09 10:15:56.225756+00 20217 003#女插肩XL码-童10T码番禺调色 SPMX-20240815315445 \N \N \N 1 \N [{"file_id": "631a40f5-d407-4985-9d37-57d3c6583b9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fb071c64a064a71aea3ca5c55b52ae0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fb071c64a064a71aea3ca5c55b52ae0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fb071c64a064a71aea3ca5c55b52ae0.jpg", "file_size": 13414, "is_delete": false, "file_type": 1, "original_file_name": "003#女插肩XL码-童10T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb071c64a064a71aea3ca5c55b52ae0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb071c64a064a71aea3ca5c55b52ae0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fb071c64a064a71aea3ca5c55b52ae0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fb071c64a064a71aea3ca5c55b52ae0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fb071c64a064a71aea3ca5c55b52ae0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgwGsoGjOW5cwW0riOU75W2mqMY=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.228992+00 2025-12-09 10:15:56.228999+00 20218 003#玫红 SPMX-20240815315456 \N \N \N 1 \N [{"file_id": "e3a5dd8c-62bb-458f-bebc-bfcc74b6cffd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "726803b7e72c4f4ca169d6346890dc41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "726803b7e72c4f4ca169d6346890dc41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "726803b7e72c4f4ca169d6346890dc41.jpg", "file_size": 15793, "is_delete": false, "file_type": 1, "original_file_name": "003#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/726803b7e72c4f4ca169d6346890dc41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/726803b7e72c4f4ca169d6346890dc41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/726803b7e72c4f4ca169d6346890dc41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/726803b7e72c4f4ca169d6346890dc41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/726803b7e72c4f4ca169d6346890dc41.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GM9xaRDExPY9bWE9Z9LvUWrHNdA=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.232264+00 2025-12-09 10:15:56.23227+00 20219 LJH2063#红色 SPMX-20240815315457 \N \N \N 1 \N [{"file_id": "c49144b3-b6fb-4b75-9f88-38daa191fada", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbd5b85ecb374d3d97f5cde8905d74e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbd5b85ecb374d3d97f5cde8905d74e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbd5b85ecb374d3d97f5cde8905d74e5.jpg", "file_size": 75170, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd5b85ecb374d3d97f5cde8905d74e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd5b85ecb374d3d97f5cde8905d74e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbd5b85ecb374d3d97f5cde8905d74e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbd5b85ecb374d3d97f5cde8905d74e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbd5b85ecb374d3d97f5cde8905d74e5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H7qw9CcfbYsDdffTSPnHg8jNP0c=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.235527+00 2025-12-09 10:15:56.235533+00 20220 LJH2063#玫红 SPMX-20240815315444 \N \N \N 1 \N [{"file_id": "5319a9af-ce14-4466-ad84-e51bad36a57e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68b1c25a253f44f0abbe617d3b35e2a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68b1c25a253f44f0abbe617d3b35e2a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68b1c25a253f44f0abbe617d3b35e2a4.jpg", "file_size": 74191, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b1c25a253f44f0abbe617d3b35e2a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b1c25a253f44f0abbe617d3b35e2a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68b1c25a253f44f0abbe617d3b35e2a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68b1c25a253f44f0abbe617d3b35e2a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68b1c25a253f44f0abbe617d3b35e2a4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UGzTRi9QRgOV5dJdxHFNf-hs20=", "createTime": "2024-08-15 15:08:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.238757+00 2025-12-09 10:15:56.238764+00 20221 LZ1413#童装T1号色 SPMX-20240815315458 \N \N \N 1 \N [{"file_id": "98c50b69-16d6-4c7c-a597-b000f4b0cbbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6397267c9ecf4b5f87fea956ea447822.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6397267c9ecf4b5f87fea956ea447822.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6397267c9ecf4b5f87fea956ea447822.jpg", "file_size": 22116, "is_delete": false, "file_type": 1, "original_file_name": "LZ1413#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6397267c9ecf4b5f87fea956ea447822.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6397267c9ecf4b5f87fea956ea447822.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6397267c9ecf4b5f87fea956ea447822.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6397267c9ecf4b5f87fea956ea447822.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6397267c9ecf4b5f87fea956ea447822.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zF8SIHq1dOBaN6NI82XAePVS_JU=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.242082+00 2025-12-09 10:15:56.242088+00 20222 1238-7FWF#V5曲线 SPMX-20240815315462 \N \N \N 1 \N [{"file_id": "6e7b17fb-db26-43f4-b331-f283e2f3d6c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a538d35a41244d549373c958e636c2e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a538d35a41244d549373c958e636c2e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a538d35a41244d549373c958e636c2e3.jpg", "file_size": 22826, "is_delete": false, "file_type": 1, "original_file_name": "1238-7FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538d35a41244d549373c958e636c2e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538d35a41244d549373c958e636c2e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a538d35a41244d549373c958e636c2e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a538d35a41244d549373c958e636c2e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a538d35a41244d549373c958e636c2e3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bqAnh2NPfP8njbpbR13l9nHhgU=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.245275+00 2025-12-09 10:15:56.245281+00 20223 DLT-334#浅蓝绿2XL码 SPMX-20240815315472 \N \N \N 1 \N [{"file_id": "d487ea3f-a75f-4d78-b3d3-9d54af8938cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a17bab08d86447bace08d5626231c08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a17bab08d86447bace08d5626231c08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a17bab08d86447bace08d5626231c08.jpg", "file_size": 15416, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#浅蓝绿2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a17bab08d86447bace08d5626231c08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a17bab08d86447bace08d5626231c08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a17bab08d86447bace08d5626231c08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a17bab08d86447bace08d5626231c08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a17bab08d86447bace08d5626231c08.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mrKphFr1xoPCgtoGgVIm23WdrIo=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.248628+00 2025-12-09 10:15:56.248634+00 20224 8831#灰色净色 SPMX-20240815315465 \N \N \N 1 \N [{"file_id": "07f32dff-f558-4811-9bc3-fe74d8a61613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e373f3dcb5e44329a73da8e7b00bd88b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e373f3dcb5e44329a73da8e7b00bd88b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e373f3dcb5e44329a73da8e7b00bd88b.jpg", "file_size": 6809, "is_delete": false, "file_type": 1, "original_file_name": "8831#灰色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e373f3dcb5e44329a73da8e7b00bd88b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e373f3dcb5e44329a73da8e7b00bd88b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e373f3dcb5e44329a73da8e7b00bd88b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e373f3dcb5e44329a73da8e7b00bd88b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e373f3dcb5e44329a73da8e7b00bd88b.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XxW15LjMhn3mKSR48J5H-2VufaE=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.251981+00 2025-12-09 10:15:56.251987+00 20225 HXF0008-A1#粉色RC23 SPMX-20240815315463 \N \N \N 1 \N [{"file_id": "be97b8b8-b0ea-41f7-b1e8-4e360eaa23fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2c3aa00bd6e4384913220f52be9ef38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2c3aa00bd6e4384913220f52be9ef38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2c3aa00bd6e4384913220f52be9ef38.jpg", "file_size": 22037, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-A1#粉色RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c3aa00bd6e4384913220f52be9ef38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c3aa00bd6e4384913220f52be9ef38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c3aa00bd6e4384913220f52be9ef38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2c3aa00bd6e4384913220f52be9ef38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2c3aa00bd6e4384913220f52be9ef38.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gUjXKK50K0kDmDA_RPm9euY2pt0=", "createTime": "2024-08-15 15:08:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.25524+00 2025-12-09 10:15:56.255246+00 20226 003#男插肩2XL码番禺调色 SPMX-20240815315467 \N \N \N 1 \N [{"file_id": "be876d49-8e12-4ebd-9192-305ec8d1f4de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68dd290ea2f2413c85b09402a0c3c9f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68dd290ea2f2413c85b09402a0c3c9f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68dd290ea2f2413c85b09402a0c3c9f1.jpg", "file_size": 17336, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩2XL码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68dd290ea2f2413c85b09402a0c3c9f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68dd290ea2f2413c85b09402a0c3c9f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68dd290ea2f2413c85b09402a0c3c9f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68dd290ea2f2413c85b09402a0c3c9f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68dd290ea2f2413c85b09402a0c3c9f1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OY0FhkNT-o07GuIF27TA5wd3qQk=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.258493+00 2025-12-09 10:15:56.258501+00 20227 JY-AD-192#7号紫拼黄多色 SPMX-20240815315466 \N \N \N 1 \N [{"file_id": "61bea916-7e49-44f8-bcf6-201a8851fea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cec24904c124992b7b6fab4f6e95d80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cec24904c124992b7b6fab4f6e95d80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cec24904c124992b7b6fab4f6e95d80.jpg", "file_size": 23203, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-192#7号紫拼黄多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cec24904c124992b7b6fab4f6e95d80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cec24904c124992b7b6fab4f6e95d80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cec24904c124992b7b6fab4f6e95d80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cec24904c124992b7b6fab4f6e95d80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cec24904c124992b7b6fab4f6e95d80.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4kJsJWYyveDfA9XxYv3mu2m-1A4=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.261742+00 2025-12-09 10:15:56.26175+00 20228 23P10#黑色XL SPMX-20240815315464 \N \N \N 1 \N [{"file_id": "83fc4723-b29c-4700-9476-219f8b6405d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "475bd82227c54227b312138aa2902178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "475bd82227c54227b312138aa2902178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "475bd82227c54227b312138aa2902178.jpg", "file_size": 18273, "is_delete": false, "file_type": 1, "original_file_name": "23P10#黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475bd82227c54227b312138aa2902178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475bd82227c54227b312138aa2902178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/475bd82227c54227b312138aa2902178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/475bd82227c54227b312138aa2902178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/475bd82227c54227b312138aa2902178.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SW2OqEmylr3ssDXjXQMCNRxyYuc=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.264995+00 2025-12-09 10:15:56.265001+00 20229 LJH2063#绿色 SPMX-20240815315469 \N \N \N 1 \N [{"file_id": "abdeafe7-cdda-4d81-bd6f-07e35948adb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d900b63f8bbb4df9a4fd1a5785cf44e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d900b63f8bbb4df9a4fd1a5785cf44e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d900b63f8bbb4df9a4fd1a5785cf44e5.jpg", "file_size": 81053, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d900b63f8bbb4df9a4fd1a5785cf44e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d900b63f8bbb4df9a4fd1a5785cf44e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d900b63f8bbb4df9a4fd1a5785cf44e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d900b63f8bbb4df9a4fd1a5785cf44e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d900b63f8bbb4df9a4fd1a5785cf44e5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1VO1hgBWhnmLcLrAkb9tztASJQ=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.268249+00 2025-12-09 10:15:56.268255+00 20230 FX001FWE#紫色底暗黄 SPMX-20240815315470 \N \N \N 1 \N [{"file_id": "9b91c378-04c3-455c-88c9-9d33164fa1f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19d025415a4944d388381e8c8842f969.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19d025415a4944d388381e8c8842f969.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19d025415a4944d388381e8c8842f969.jpg", "file_size": 16399, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#紫色底暗黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d025415a4944d388381e8c8842f969.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d025415a4944d388381e8c8842f969.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d025415a4944d388381e8c8842f969.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19d025415a4944d388381e8c8842f969.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19d025415a4944d388381e8c8842f969.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1TmGFkn2Lb10qhDW-ERzLfyAsUQ=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.271425+00 2025-12-09 10:15:56.271431+00 20231 CH09304FWD#无字母炫彩粉M SPMX-20240815315471 \N \N \N 1 \N [{"file_id": "77a3e8fb-01ce-4c94-b732-156aa51fef5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09d39144647b4569835ff7aa41973c75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09d39144647b4569835ff7aa41973c75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09d39144647b4569835ff7aa41973c75.jpg", "file_size": 14086, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩粉M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d39144647b4569835ff7aa41973c75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d39144647b4569835ff7aa41973c75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09d39144647b4569835ff7aa41973c75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09d39144647b4569835ff7aa41973c75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09d39144647b4569835ff7aa41973c75.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FhK5ab1rdYafvYKknuj_V4r-D5U=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.274753+00 2025-12-09 10:15:56.274759+00 20232 1238-7FWF#番禺调色 SPMX-20240815315473 \N \N \N 1 \N [{"file_id": "14f60c75-3f45-46ee-a889-e05749ce21dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3017c7bbc62245f8ab4258fd3fe13706.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3017c7bbc62245f8ab4258fd3fe13706.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3017c7bbc62245f8ab4258fd3fe13706.jpg", "file_size": 24625, "is_delete": false, "file_type": 1, "original_file_name": "1238-7FWF#番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017c7bbc62245f8ab4258fd3fe13706.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017c7bbc62245f8ab4258fd3fe13706.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017c7bbc62245f8ab4258fd3fe13706.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3017c7bbc62245f8ab4258fd3fe13706.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3017c7bbc62245f8ab4258fd3fe13706.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKNoilhrs99ZjAkcdj67O8cZnIU=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.277967+00 2025-12-09 10:15:56.277974+00 20233 LZ1413#童装T2号色 SPMX-20240815315468 \N \N \N 1 \N [{"file_id": "7669cbb6-24e5-403f-a1f0-8bf959fdd4ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed77e24c61ea43a98dad1690bdb828e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed77e24c61ea43a98dad1690bdb828e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed77e24c61ea43a98dad1690bdb828e1.jpg", "file_size": 20117, "is_delete": false, "file_type": 1, "original_file_name": "LZ1413#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed77e24c61ea43a98dad1690bdb828e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed77e24c61ea43a98dad1690bdb828e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed77e24c61ea43a98dad1690bdb828e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed77e24c61ea43a98dad1690bdb828e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed77e24c61ea43a98dad1690bdb828e1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nSzONbh2N4afSU9WQudlj0bQ7rM=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.281295+00 2025-12-09 10:15:56.281301+00 20234 HXF0008-A2#RC23 SPMX-20240815315474 \N \N \N 1 \N [{"file_id": "628091a0-efb1-43b5-95d0-de9531f2bddc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bc3902bd9dc406a84cca7848d5b0718.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bc3902bd9dc406a84cca7848d5b0718.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bc3902bd9dc406a84cca7848d5b0718.jpg", "file_size": 22697, "is_delete": false, "file_type": 1, "original_file_name": "HXF0008-A2#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc3902bd9dc406a84cca7848d5b0718.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc3902bd9dc406a84cca7848d5b0718.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bc3902bd9dc406a84cca7848d5b0718.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bc3902bd9dc406a84cca7848d5b0718.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bc3902bd9dc406a84cca7848d5b0718.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sIX7RuV3TCuo3EjoSpz9tVwh0gI=", "createTime": "2024-08-15 15:08:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.284538+00 2025-12-09 10:15:56.284545+00 20235 FX001FWE#紫色底暗黄匹布 SPMX-20240815315478 \N \N \N 1 \N [{"file_id": "6fa0cc39-ad02-4fe2-ab39-6ee87a101d3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67e9561d00f84a0f82ba5864368e3d81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67e9561d00f84a0f82ba5864368e3d81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67e9561d00f84a0f82ba5864368e3d81.jpg", "file_size": 9539, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#紫色底暗黄匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e9561d00f84a0f82ba5864368e3d81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e9561d00f84a0f82ba5864368e3d81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67e9561d00f84a0f82ba5864368e3d81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67e9561d00f84a0f82ba5864368e3d81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67e9561d00f84a0f82ba5864368e3d81.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YIznRzPKyxJTqZ4msEzY5blFzo=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.287824+00 2025-12-09 10:15:56.287829+00 20236 DLT-334#浅蓝绿XL码 SPMX-20240815315481 \N \N \N 1 \N [{"file_id": "997a85de-f4ac-412b-98f5-6fcf65620127", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c97c96363f70438c856f827fc5097721.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c97c96363f70438c856f827fc5097721.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c97c96363f70438c856f827fc5097721.jpg", "file_size": 15418, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#浅蓝绿XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97c96363f70438c856f827fc5097721.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97c96363f70438c856f827fc5097721.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97c96363f70438c856f827fc5097721.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c97c96363f70438c856f827fc5097721.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c97c96363f70438c856f827fc5097721.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rN5o9RZaB-v4n7HT5DGRr-GZO3U=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.291141+00 2025-12-09 10:15:56.291147+00 20237 003#男插肩3XL码番禺调色 SPMX-20240815315477 \N \N \N 1 \N [{"file_id": "30d003d9-3863-4f22-9550-2c13820afabb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d559ce9f5a94418cb740f16f4e751802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d559ce9f5a94418cb740f16f4e751802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d559ce9f5a94418cb740f16f4e751802.jpg", "file_size": 17759, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩3XL码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d559ce9f5a94418cb740f16f4e751802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d559ce9f5a94418cb740f16f4e751802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d559ce9f5a94418cb740f16f4e751802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d559ce9f5a94418cb740f16f4e751802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d559ce9f5a94418cb740f16f4e751802.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JwQXVb2VKNz-m568JwkdujKpRDQ=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.294411+00 2025-12-09 10:15:56.294418+00 20238 CH09304FWD#无字母炫彩粉S SPMX-20240815315484 \N \N \N 1 \N [{"file_id": "50e803e1-0868-4360-bcba-e9ceae296e42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2840732a8b264a7eaa9a772ba805883a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2840732a8b264a7eaa9a772ba805883a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2840732a8b264a7eaa9a772ba805883a.jpg", "file_size": 14083, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩粉S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2840732a8b264a7eaa9a772ba805883a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2840732a8b264a7eaa9a772ba805883a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2840732a8b264a7eaa9a772ba805883a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2840732a8b264a7eaa9a772ba805883a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2840732a8b264a7eaa9a772ba805883a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMhU2s2k9U0zTQ_B4R62w2xUGvo=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.297659+00 2025-12-09 10:15:56.297665+00 20239 240#-定位裁-卡其 SPMX-20240815315479 \N \N \N 1 \N [{"file_id": "292a9b3e-3dd7-4d1b-b37b-d68c6ae5e764", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07b28a6c2d414fc6b5909dc15d6fbad4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07b28a6c2d414fc6b5909dc15d6fbad4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07b28a6c2d414fc6b5909dc15d6fbad4.jpg", "file_size": 78127, "is_delete": false, "file_type": 1, "original_file_name": "240#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b28a6c2d414fc6b5909dc15d6fbad4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b28a6c2d414fc6b5909dc15d6fbad4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07b28a6c2d414fc6b5909dc15d6fbad4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07b28a6c2d414fc6b5909dc15d6fbad4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07b28a6c2d414fc6b5909dc15d6fbad4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vRXdLVHSWSYkds3d7EFihcFXkJk=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.300933+00 2025-12-09 10:15:56.300939+00 20240 88327FWF#深兰粉 SPMX-20240815315475 \N \N \N 1 \N [{"file_id": "30413e58-bec6-43c2-84f3-1e55c7ac3ecb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae4ffc66ee044db48f93f1aff29c5364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae4ffc66ee044db48f93f1aff29c5364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae4ffc66ee044db48f93f1aff29c5364.jpg", "file_size": 25795, "is_delete": false, "file_type": 1, "original_file_name": "88327FWF#深兰粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4ffc66ee044db48f93f1aff29c5364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4ffc66ee044db48f93f1aff29c5364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae4ffc66ee044db48f93f1aff29c5364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae4ffc66ee044db48f93f1aff29c5364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae4ffc66ee044db48f93f1aff29c5364.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5-hPe4Ai2Jwgj4go098Za_YQQ0w=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.304198+00 2025-12-09 10:15:56.304205+00 20241 JY-AD-192#8号粉红拼紫多色 SPMX-20240815315476 \N \N \N 1 \N [{"file_id": "8cd4278f-f039-4a7a-ab36-1c8d90d01d2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f07988a5793f45e8a881c83b553033ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f07988a5793f45e8a881c83b553033ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f07988a5793f45e8a881c83b553033ee.jpg", "file_size": 24954, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-192#8号粉红拼紫多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07988a5793f45e8a881c83b553033ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07988a5793f45e8a881c83b553033ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f07988a5793f45e8a881c83b553033ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f07988a5793f45e8a881c83b553033ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f07988a5793f45e8a881c83b553033ee.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TYhvLWRCZN8KjwRtBO_cwbrimI=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.30742+00 2025-12-09 10:15:56.307426+00 20242 LJH2063#蓝色 SPMX-20240815315480 \N \N \N 1 \N [{"file_id": "6ccc0b49-8a4b-4f83-8530-e02b6534fea7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "219c69c125b742088a92512f1ace8069.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "219c69c125b742088a92512f1ace8069.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "219c69c125b742088a92512f1ace8069.jpg", "file_size": 78467, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c69c125b742088a92512f1ace8069.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c69c125b742088a92512f1ace8069.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/219c69c125b742088a92512f1ace8069.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/219c69c125b742088a92512f1ace8069.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/219c69c125b742088a92512f1ace8069.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZQk5kRjJDCfTjfMAf4Pd03r1G4=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.31038+00 2025-12-09 10:15:56.310384+00 20243 1238-8FWF#V5曲线 SPMX-20240815315485 \N \N \N 1 \N [{"file_id": "da798374-1127-4211-b8bd-08f9b7b6f07b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acd75bffa96f427186808d8442f0f470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acd75bffa96f427186808d8442f0f470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acd75bffa96f427186808d8442f0f470.jpg", "file_size": 24045, "is_delete": false, "file_type": 1, "original_file_name": "1238-8FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd75bffa96f427186808d8442f0f470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd75bffa96f427186808d8442f0f470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd75bffa96f427186808d8442f0f470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acd75bffa96f427186808d8442f0f470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acd75bffa96f427186808d8442f0f470.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SbgxAusI8QaUNn9reoQEeRfm3xw=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.313231+00 2025-12-09 10:15:56.313236+00 20244 HXF001#L白VS-D3 SPMX-20240815315483 \N \N \N 1 \N [{"file_id": "8a5b48fe-ff27-4e97-80db-3129dc3468f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2d43ee1c1df4f018d9e375942290ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2d43ee1c1df4f018d9e375942290ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2d43ee1c1df4f018d9e375942290ee0.jpg", "file_size": 14641, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#L白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43ee1c1df4f018d9e375942290ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43ee1c1df4f018d9e375942290ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2d43ee1c1df4f018d9e375942290ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2d43ee1c1df4f018d9e375942290ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2d43ee1c1df4f018d9e375942290ee0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RGX2n78LYYrqp2N2PXh1KMUTM_4=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.31599+00 2025-12-09 10:15:56.315994+00 20245 88327FWF#黑浅兰 SPMX-20240815315486 \N \N \N 1 \N [{"file_id": "d63ee992-43f8-455d-9837-272819638b95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4295dc7d945b48599236667ea622f6c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4295dc7d945b48599236667ea622f6c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4295dc7d945b48599236667ea622f6c0.jpg", "file_size": 24291, "is_delete": false, "file_type": 1, "original_file_name": "88327FWF#黑浅兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4295dc7d945b48599236667ea622f6c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4295dc7d945b48599236667ea622f6c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4295dc7d945b48599236667ea622f6c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4295dc7d945b48599236667ea622f6c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4295dc7d945b48599236667ea622f6c0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:atvdM4Ryc3SPZX6AtQAt6rA7Iu4=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.318796+00 2025-12-09 10:15:56.318802+00 20246 LZ1413#童装T3号色 SPMX-20240815315482 \N \N \N 1 \N [{"file_id": "0844a11f-e9b1-419d-bbb1-2a1ddb811de4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1ee31c29a824397b7961deb65ae28a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1ee31c29a824397b7961deb65ae28a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1ee31c29a824397b7961deb65ae28a0.jpg", "file_size": 20634, "is_delete": false, "file_type": 1, "original_file_name": "LZ1413#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ee31c29a824397b7961deb65ae28a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ee31c29a824397b7961deb65ae28a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ee31c29a824397b7961deb65ae28a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1ee31c29a824397b7961deb65ae28a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1ee31c29a824397b7961deb65ae28a0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FxzkbjiQ5KR5vJZHgBFWn2OPFP0=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.322129+00 2025-12-09 10:15:56.322135+00 20247 HXF001#L粉VS-D3 SPMX-20240815315495 \N \N \N 1 \N [{"file_id": "8f6e3424-7106-4d9e-952c-55e54bdb38f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c35ba967f3f41dfb761c481beffad67.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c35ba967f3f41dfb761c481beffad67.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c35ba967f3f41dfb761c481beffad67.jpg", "file_size": 14836, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#L粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c35ba967f3f41dfb761c481beffad67.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c35ba967f3f41dfb761c481beffad67.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c35ba967f3f41dfb761c481beffad67.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c35ba967f3f41dfb761c481beffad67.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c35ba967f3f41dfb761c481beffad67.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85vX1sF-2eZdkcVoTKRvcmdPh4g=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.325512+00 2025-12-09 10:15:56.325518+00 20248 CH09304FWD#无字母炫彩粉XL SPMX-20240815315494 \N \N \N 1 \N [{"file_id": "e1e24d72-ef6c-4604-86a6-2ec1c8815915", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21ba251739b5422ebf628150175e1bcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21ba251739b5422ebf628150175e1bcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21ba251739b5422ebf628150175e1bcc.jpg", "file_size": 14733, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ba251739b5422ebf628150175e1bcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ba251739b5422ebf628150175e1bcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ba251739b5422ebf628150175e1bcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21ba251739b5422ebf628150175e1bcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21ba251739b5422ebf628150175e1bcc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Wv9hXVGrMzcMO1XiSJjX0i4H_w=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.328729+00 2025-12-09 10:15:56.328735+00 20249 FX001FWE#青底绿色 SPMX-20240815315488 \N \N \N 1 \N [{"file_id": "dfd1c2df-60dd-463f-ad7a-d4f28c8f6bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dff47b4b9d4943378c24cf171e075aa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dff47b4b9d4943378c24cf171e075aa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dff47b4b9d4943378c24cf171e075aa8.jpg", "file_size": 17562, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#青底绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dff47b4b9d4943378c24cf171e075aa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dff47b4b9d4943378c24cf171e075aa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dff47b4b9d4943378c24cf171e075aa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dff47b4b9d4943378c24cf171e075aa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dff47b4b9d4943378c24cf171e075aa8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6tE-0w_DBsZAcvlpnI7axazyPxo=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.331957+00 2025-12-09 10:15:56.331964+00 20250 1238-9FWF#V5曲线 SPMX-20240815315492 \N \N \N 1 \N [{"file_id": "eed4cb65-03d7-4e7b-9d93-ca5a80c10708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96eb7e7b39184cb4afe3f1aa05a192f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96eb7e7b39184cb4afe3f1aa05a192f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96eb7e7b39184cb4afe3f1aa05a192f2.jpg", "file_size": 25901, "is_delete": false, "file_type": 1, "original_file_name": "1238-9FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96eb7e7b39184cb4afe3f1aa05a192f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96eb7e7b39184cb4afe3f1aa05a192f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96eb7e7b39184cb4afe3f1aa05a192f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96eb7e7b39184cb4afe3f1aa05a192f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96eb7e7b39184cb4afe3f1aa05a192f2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b8S8X7DsrvUxWFiYFnm4eGwU-ps=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.335155+00 2025-12-09 10:15:56.335162+00 20251 003#男插肩L码-童5T码番禺调色 SPMX-20240815315487 \N \N \N 1 \N [{"file_id": "08d9efb3-4e54-4ce4-9902-dd333dc32518", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cae51bd47d6246e48d634a2698039519.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cae51bd47d6246e48d634a2698039519.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cae51bd47d6246e48d634a2698039519.jpg", "file_size": 13449, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩L码-童5T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae51bd47d6246e48d634a2698039519.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae51bd47d6246e48d634a2698039519.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cae51bd47d6246e48d634a2698039519.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cae51bd47d6246e48d634a2698039519.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cae51bd47d6246e48d634a2698039519.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDhAM-XeMOX6OgpuHEmOrhJOzc0=", "createTime": "2024-08-15 15:08:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.338463+00 2025-12-09 10:15:56.33847+00 20252 LZ1413#童装T4号色 SPMX-20240815315491 \N \N \N 1 \N [{"file_id": "b687d835-cf79-4aa4-b223-764ea2e6895c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8724156bf6f47df822d274817a5f2b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8724156bf6f47df822d274817a5f2b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8724156bf6f47df822d274817a5f2b3.jpg", "file_size": 21430, "is_delete": false, "file_type": 1, "original_file_name": "LZ1413#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8724156bf6f47df822d274817a5f2b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8724156bf6f47df822d274817a5f2b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8724156bf6f47df822d274817a5f2b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8724156bf6f47df822d274817a5f2b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8724156bf6f47df822d274817a5f2b3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvnV4aMsNrlCRtvCX_Of23TNwJs=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.341731+00 2025-12-09 10:15:56.341738+00 20253 DLT-334#蓝绿2XL码 SPMX-20240815315493 \N \N \N 1 \N [{"file_id": "691411a8-5382-46dc-8407-2ac588699ecb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16cdb4acae5a425188fdf6db1ad78956.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16cdb4acae5a425188fdf6db1ad78956.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16cdb4acae5a425188fdf6db1ad78956.jpg", "file_size": 15667, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#蓝绿2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cdb4acae5a425188fdf6db1ad78956.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cdb4acae5a425188fdf6db1ad78956.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16cdb4acae5a425188fdf6db1ad78956.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16cdb4acae5a425188fdf6db1ad78956.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16cdb4acae5a425188fdf6db1ad78956.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TLzT9vO9QkEmHIy_5PQ_hscRR3w=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.344911+00 2025-12-09 10:15:56.344918+00 20254 JY-AD-200#1号蓝色 SPMX-20240815315490 \N \N \N 1 \N [{"file_id": "c9835b74-c2d4-498a-82ae-fe7190da80c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65a3632a02b749f2adccaaf51f54c1a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65a3632a02b749f2adccaaf51f54c1a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65a3632a02b749f2adccaaf51f54c1a6.jpg", "file_size": 23804, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a3632a02b749f2adccaaf51f54c1a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a3632a02b749f2adccaaf51f54c1a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65a3632a02b749f2adccaaf51f54c1a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65a3632a02b749f2adccaaf51f54c1a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65a3632a02b749f2adccaaf51f54c1a6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CquOsYUBs2hsHIynfRmA-UTBP4=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.348048+00 2025-12-09 10:15:56.348055+00 20255 240#-定位裁-橙色 SPMX-20240815315489 \N \N \N 1 \N [{"file_id": "dd1a0c99-fa33-4e3b-9f11-73cc2c4cc317", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cc8a65f5641497a82200e74fc12d92a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cc8a65f5641497a82200e74fc12d92a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cc8a65f5641497a82200e74fc12d92a.jpg", "file_size": 79840, "is_delete": false, "file_type": 1, "original_file_name": "240#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc8a65f5641497a82200e74fc12d92a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc8a65f5641497a82200e74fc12d92a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cc8a65f5641497a82200e74fc12d92a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cc8a65f5641497a82200e74fc12d92a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cc8a65f5641497a82200e74fc12d92a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3O-X8QUQGLciKTNc_13U0pbnvXg=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.351343+00 2025-12-09 10:15:56.351349+00 20256 003#男插肩M码-童6T码番禺调色 SPMX-20240815315500 \N \N \N 1 \N [{"file_id": "cdd0252b-a009-44dd-8beb-e0509eb2395e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eea17a6ce0240cfb31d2d7bf87b7160.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eea17a6ce0240cfb31d2d7bf87b7160.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eea17a6ce0240cfb31d2d7bf87b7160.jpg", "file_size": 13252, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩M码-童6T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eea17a6ce0240cfb31d2d7bf87b7160.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eea17a6ce0240cfb31d2d7bf87b7160.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eea17a6ce0240cfb31d2d7bf87b7160.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eea17a6ce0240cfb31d2d7bf87b7160.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eea17a6ce0240cfb31d2d7bf87b7160.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wxr8Yotl2SZCSFUa2xAKhoBgzRg=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.35459+00 2025-12-09 10:15:56.354596+00 20257 FX001FWE#青底绿色匹布 SPMX-20240815315498 \N \N \N 1 \N [{"file_id": "94717aa5-23fa-4812-a2aa-7fca283cb253", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f787494a5b3c47af8441ed3ae488b199.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f787494a5b3c47af8441ed3ae488b199.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f787494a5b3c47af8441ed3ae488b199.jpg", "file_size": 11007, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#青底绿色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f787494a5b3c47af8441ed3ae488b199.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f787494a5b3c47af8441ed3ae488b199.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f787494a5b3c47af8441ed3ae488b199.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f787494a5b3c47af8441ed3ae488b199.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f787494a5b3c47af8441ed3ae488b199.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEX1ZmF3dHjME6f0oVhzcALiSnA=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.357769+00 2025-12-09 10:15:56.357775+00 20258 CH09304FWD#无字母炫彩粉XS SPMX-20240815315503 \N \N \N 1 \N [{"file_id": "694c8ce2-46aa-44ce-8349-835ce91dd601", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f63fb47961d84366bc4a17e0a9f3bb17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f63fb47961d84366bc4a17e0a9f3bb17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f63fb47961d84366bc4a17e0a9f3bb17.jpg", "file_size": 13592, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩粉XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63fb47961d84366bc4a17e0a9f3bb17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63fb47961d84366bc4a17e0a9f3bb17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f63fb47961d84366bc4a17e0a9f3bb17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f63fb47961d84366bc4a17e0a9f3bb17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f63fb47961d84366bc4a17e0a9f3bb17.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IVchI0gB49hirP2S9tRwhLTJsY=", "createTime": "2024-08-15 15:08:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.360983+00 2025-12-09 10:15:56.36099+00 20259 123A#原版色 SPMX-20240815315505 \N \N \N 1 \N [{"file_id": "7e255bf8-3ef3-4afa-8f52-c5743e2bfbcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8a873b6a43042edb0b4cdd1ff216da9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8a873b6a43042edb0b4cdd1ff216da9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8a873b6a43042edb0b4cdd1ff216da9.jpg", "file_size": 61227, "is_delete": false, "file_type": 1, "original_file_name": "123A#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a873b6a43042edb0b4cdd1ff216da9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a873b6a43042edb0b4cdd1ff216da9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a873b6a43042edb0b4cdd1ff216da9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8a873b6a43042edb0b4cdd1ff216da9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8a873b6a43042edb0b4cdd1ff216da9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhbIDbk7HAeGQDJSFdMd0omYblg=", "createTime": "2024-08-15 15:08:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.364194+00 2025-12-09 10:15:56.3642+00 20260 DLT-334#蓝绿XL码 SPMX-20240815315504 \N \N \N 1 \N [{"file_id": "dfa60f95-a430-4982-9a27-85248c2a708c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0d4e1178ea04f879949d6301617ccfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0d4e1178ea04f879949d6301617ccfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0d4e1178ea04f879949d6301617ccfd.jpg", "file_size": 15363, "is_delete": false, "file_type": 1, "original_file_name": "DLT-334#蓝绿XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d4e1178ea04f879949d6301617ccfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d4e1178ea04f879949d6301617ccfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0d4e1178ea04f879949d6301617ccfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0d4e1178ea04f879949d6301617ccfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0d4e1178ea04f879949d6301617ccfd.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SRymTeZqPRiwuG8djt5l3FM7g40=", "createTime": "2024-08-15 15:08:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.367815+00 2025-12-09 10:15:56.367822+00 20261 88327FWF#黑粉色 SPMX-20240815315497 \N \N \N 1 \N [{"file_id": "c19e8383-ad8b-42a9-a4b1-82f5d1da97a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cb6b8164e9f44f589fab3f42ac30a5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cb6b8164e9f44f589fab3f42ac30a5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cb6b8164e9f44f589fab3f42ac30a5d.jpg", "file_size": 24139, "is_delete": false, "file_type": 1, "original_file_name": "88327FWF#黑粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb6b8164e9f44f589fab3f42ac30a5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb6b8164e9f44f589fab3f42ac30a5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cb6b8164e9f44f589fab3f42ac30a5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cb6b8164e9f44f589fab3f42ac30a5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cb6b8164e9f44f589fab3f42ac30a5d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4B9iI73C2NxqLMhQ7lgS3JOiyNU=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.371349+00 2025-12-09 10:15:56.371356+00 20262 HXF001#L蓝VS-D3 SPMX-20240815315506 \N \N \N 1 \N [{"file_id": "108fb4cc-270e-4b19-bb69-31e75b3838f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e901875ceac54a148ba503e821d6c293.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e901875ceac54a148ba503e821d6c293.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e901875ceac54a148ba503e821d6c293.jpg", "file_size": 14725, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#L蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e901875ceac54a148ba503e821d6c293.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e901875ceac54a148ba503e821d6c293.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e901875ceac54a148ba503e821d6c293.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e901875ceac54a148ba503e821d6c293.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e901875ceac54a148ba503e821d6c293.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0dAsQu15mjM_MQtdPfsjhpVns0=", "createTime": "2024-08-15 15:08:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.374901+00 2025-12-09 10:15:56.374912+00 20263 240#-定位裁-白色 SPMX-20240815315499 \N \N \N 1 \N [{"file_id": "f0201230-88c5-4476-9c6b-2b1d9958840a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7af454ff9eb64945a19749f7fa4064f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7af454ff9eb64945a19749f7fa4064f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7af454ff9eb64945a19749f7fa4064f1.jpg", "file_size": 77180, "is_delete": false, "file_type": 1, "original_file_name": "240#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af454ff9eb64945a19749f7fa4064f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af454ff9eb64945a19749f7fa4064f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7af454ff9eb64945a19749f7fa4064f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7af454ff9eb64945a19749f7fa4064f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7af454ff9eb64945a19749f7fa4064f1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rkw7jBC4RKmU4b_W5B8Eg2RWRro=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.378465+00 2025-12-09 10:15:56.378473+00 20264 JY-AD-200#4号色暗桔 SPMX-20240815315501 \N \N \N 1 \N [{"file_id": "39cfec32-c496-460f-b589-a86266577ebd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e6fa8fb039243b5bcd3ba6d6756fbda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e6fa8fb039243b5bcd3ba6d6756fbda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e6fa8fb039243b5bcd3ba6d6756fbda.jpg", "file_size": 23532, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#4号色暗桔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6fa8fb039243b5bcd3ba6d6756fbda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6fa8fb039243b5bcd3ba6d6756fbda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e6fa8fb039243b5bcd3ba6d6756fbda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e6fa8fb039243b5bcd3ba6d6756fbda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e6fa8fb039243b5bcd3ba6d6756fbda.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h1du53jfnY-73ktH5ZlTUpJ4X10=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.382042+00 2025-12-09 10:15:56.382049+00 20265 LZ1413#童装T5号色 SPMX-20240815315502 \N \N \N 1 \N [{"file_id": "3ab29401-b998-4308-8a2c-5d741c330ce7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "056ae673fe2145379563f1ba6169914c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "056ae673fe2145379563f1ba6169914c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "056ae673fe2145379563f1ba6169914c.jpg", "file_size": 20364, "is_delete": false, "file_type": 1, "original_file_name": "LZ1413#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056ae673fe2145379563f1ba6169914c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056ae673fe2145379563f1ba6169914c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/056ae673fe2145379563f1ba6169914c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/056ae673fe2145379563f1ba6169914c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/056ae673fe2145379563f1ba6169914c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6mnbri9ZY1sq6cT-3nfd5Eelm8=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.385536+00 2025-12-09 10:15:56.385543+00 20266 LJH2063#黄色 SPMX-20240815315496 \N \N \N 1 \N [{"file_id": "15f6785e-c38f-42b0-b0d4-66ebec58c07c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80d86cfbe1fa43638e76f8355f243048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80d86cfbe1fa43638e76f8355f243048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80d86cfbe1fa43638e76f8355f243048.jpg", "file_size": 76377, "is_delete": false, "file_type": 1, "original_file_name": "LJH2063#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d86cfbe1fa43638e76f8355f243048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d86cfbe1fa43638e76f8355f243048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80d86cfbe1fa43638e76f8355f243048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80d86cfbe1fa43638e76f8355f243048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80d86cfbe1fa43638e76f8355f243048.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UzfZ2Ujhbum-wt32att4jbfCC7s=", "createTime": "2024-08-15 15:08:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.389128+00 2025-12-09 10:15:56.389135+00 20267 88327FWF#黑红 SPMX-20240815315512 \N \N \N 1 \N [{"file_id": "214ce461-5c18-41c3-a388-80d0f19dddca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c8dd725892d4d6b93b199144d95a182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c8dd725892d4d6b93b199144d95a182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c8dd725892d4d6b93b199144d95a182.jpg", "file_size": 18262, "is_delete": false, "file_type": 1, "original_file_name": "88327FWF#黑红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8dd725892d4d6b93b199144d95a182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8dd725892d4d6b93b199144d95a182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c8dd725892d4d6b93b199144d95a182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c8dd725892d4d6b93b199144d95a182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c8dd725892d4d6b93b199144d95a182.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIkTeAyza6sZ3C6PtRMMgjom3g4=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.392716+00 2025-12-09 10:15:56.392722+00 20268 HXF001#M白VS-D3 SPMX-20240815315516 \N \N \N 1 \N [{"file_id": "8afbaee6-cdb1-48f4-b8e3-c0823705bb11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec812c4066d04a41a7c42e5ec7419c1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec812c4066d04a41a7c42e5ec7419c1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec812c4066d04a41a7c42e5ec7419c1c.jpg", "file_size": 15046, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#M白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec812c4066d04a41a7c42e5ec7419c1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec812c4066d04a41a7c42e5ec7419c1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec812c4066d04a41a7c42e5ec7419c1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec812c4066d04a41a7c42e5ec7419c1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec812c4066d04a41a7c42e5ec7419c1c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vtQE09P9GE0rNR0-rLTIR3X0wAQ=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.396001+00 2025-12-09 10:15:56.396009+00 20269 240#-定位裁-黄色 SPMX-20240815315511 \N \N \N 1 \N [{"file_id": "e5f7d5c7-6c6e-4bcc-9439-4f6492dec978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8d173f930854b8bbb9ca29d799f6e1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8d173f930854b8bbb9ca29d799f6e1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8d173f930854b8bbb9ca29d799f6e1f.jpg", "file_size": 83633, "is_delete": false, "file_type": 1, "original_file_name": "240#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d173f930854b8bbb9ca29d799f6e1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d173f930854b8bbb9ca29d799f6e1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d173f930854b8bbb9ca29d799f6e1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8d173f930854b8bbb9ca29d799f6e1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8d173f930854b8bbb9ca29d799f6e1f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DNgYRaCzU5aQl03GppS4aqp1RxQ=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.399228+00 2025-12-09 10:15:56.399234+00 20270 LZ1414#大人T2号色 SPMX-20240815315520 \N \N \N 1 \N [{"file_id": "f27b540a-73f7-4fb9-a707-c54a05e95652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04a5dce654de48ca8badac9d6de32b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04a5dce654de48ca8badac9d6de32b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04a5dce654de48ca8badac9d6de32b84.jpg", "file_size": 18092, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a5dce654de48ca8badac9d6de32b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a5dce654de48ca8badac9d6de32b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04a5dce654de48ca8badac9d6de32b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04a5dce654de48ca8badac9d6de32b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04a5dce654de48ca8badac9d6de32b84.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h5Cfo9F0ORVwT7gOuqFk7kZpNmk=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.402485+00 2025-12-09 10:15:56.402492+00 20271 LJH2065#咖色 SPMX-20240815315507 \N \N \N 1 \N [{"file_id": "cdeb39f8-8535-47af-aa37-c7241a8b59ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2220aadb96f54cc98be3db15c5f8295d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2220aadb96f54cc98be3db15c5f8295d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2220aadb96f54cc98be3db15c5f8295d.jpg", "file_size": 45809, "is_delete": false, "file_type": 1, "original_file_name": "LJH2065#咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2220aadb96f54cc98be3db15c5f8295d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2220aadb96f54cc98be3db15c5f8295d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2220aadb96f54cc98be3db15c5f8295d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2220aadb96f54cc98be3db15c5f8295d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2220aadb96f54cc98be3db15c5f8295d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6CWAyPIuOsniTElK8IZxPVP9g8=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.405712+00 2025-12-09 10:15:56.405719+00 20272 LZ1414#大人T1号色 SPMX-20240815315509 \N \N \N 1 \N [{"file_id": "43fef509-e0c5-43da-a12b-d4a7a77e55bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c1cc70fa1f0476e9c0bfeaa434c713f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c1cc70fa1f0476e9c0bfeaa434c713f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c1cc70fa1f0476e9c0bfeaa434c713f.jpg", "file_size": 18207, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1cc70fa1f0476e9c0bfeaa434c713f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1cc70fa1f0476e9c0bfeaa434c713f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c1cc70fa1f0476e9c0bfeaa434c713f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c1cc70fa1f0476e9c0bfeaa434c713f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c1cc70fa1f0476e9c0bfeaa434c713f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJiYbQY1ByNSJMPeLNPwKYQNBn0=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.409241+00 2025-12-09 10:15:56.409247+00 20273 CH09304FWD#无字母炫彩紫L SPMX-20240815315514 \N \N \N 1 \N [{"file_id": "c1de0795-5598-411d-b0a2-3dd8024ec890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ab10e2306c54cd2aa2bc4e06515b590.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ab10e2306c54cd2aa2bc4e06515b590.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ab10e2306c54cd2aa2bc4e06515b590.jpg", "file_size": 14122, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩紫L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab10e2306c54cd2aa2bc4e06515b590.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab10e2306c54cd2aa2bc4e06515b590.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ab10e2306c54cd2aa2bc4e06515b590.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ab10e2306c54cd2aa2bc4e06515b590.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ab10e2306c54cd2aa2bc4e06515b590.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZGvzQRIrx9qM5t__cDB5Ks3XFU=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.412598+00 2025-12-09 10:15:56.412605+00 20274 003#男插肩XL码-童3T码番禺调色 SPMX-20240815315519 \N \N \N 1 \N [{"file_id": "f688cee2-5886-4777-bc08-86a391771252", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c122c7bde9b243e2b2c74926d3027302.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c122c7bde9b243e2b2c74926d3027302.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c122c7bde9b243e2b2c74926d3027302.jpg", "file_size": 13273, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩XL码-童3T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c122c7bde9b243e2b2c74926d3027302.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c122c7bde9b243e2b2c74926d3027302.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c122c7bde9b243e2b2c74926d3027302.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c122c7bde9b243e2b2c74926d3027302.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c122c7bde9b243e2b2c74926d3027302.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfQ-Q7BdDbBizks3HeGUHlAy7uM=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.415843+00 2025-12-09 10:15:56.41585+00 20275 FX001FWE#黄底枣红匹布 SPMX-20240815315521 \N \N \N 1 \N [{"file_id": "fba8edcb-2120-4010-93b2-210749bc7d20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20a6c83d953b41959bc18b58f13cda04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20a6c83d953b41959bc18b58f13cda04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20a6c83d953b41959bc18b58f13cda04.jpg", "file_size": 11980, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#黄底枣红匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a6c83d953b41959bc18b58f13cda04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a6c83d953b41959bc18b58f13cda04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20a6c83d953b41959bc18b58f13cda04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20a6c83d953b41959bc18b58f13cda04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20a6c83d953b41959bc18b58f13cda04.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nAuwJFgesBuUuTvtP8w8gad12p8=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.419067+00 2025-12-09 10:15:56.419074+00 20276 DLVEL039FWE#-A1 SPMX-20240815315515 \N \N \N 1 \N [{"file_id": "23f698b0-745a-4253-9fee-818f204754a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "116fa5f554ac48c9a017c4df9c1f3a8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "116fa5f554ac48c9a017c4df9c1f3a8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "116fa5f554ac48c9a017c4df9c1f3a8c.jpg", "file_size": 16979, "is_delete": false, "file_type": 1, "original_file_name": "DLVEL039FWE#-A1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116fa5f554ac48c9a017c4df9c1f3a8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116fa5f554ac48c9a017c4df9c1f3a8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116fa5f554ac48c9a017c4df9c1f3a8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/116fa5f554ac48c9a017c4df9c1f3a8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/116fa5f554ac48c9a017c4df9c1f3a8c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6n8dl19ArQR1g-lEMKHxQRnThQ=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.422574+00 2025-12-09 10:15:56.422581+00 20277 JY-AD-200#5号黑色 SPMX-20240815315513 \N \N \N 1 \N [{"file_id": "6f8071c5-d4c0-4d52-b29c-fa6af2e1520f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6b54df5aed453e9785ca6996edf1c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6b54df5aed453e9785ca6996edf1c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6b54df5aed453e9785ca6996edf1c2.jpg", "file_size": 22662, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#5号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b54df5aed453e9785ca6996edf1c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b54df5aed453e9785ca6996edf1c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b54df5aed453e9785ca6996edf1c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6b54df5aed453e9785ca6996edf1c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6b54df5aed453e9785ca6996edf1c2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNmB7ZFrrQaubEQKGU4sIdm7fGg=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.426044+00 2025-12-09 10:15:56.426051+00 20278 123A#玫红 SPMX-20240815315517 \N \N \N 1 \N [{"file_id": "b8e862f7-d3b1-42b8-99f2-f0bb607c7dbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff329dc0a1804144952275ad961bd392.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff329dc0a1804144952275ad961bd392.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff329dc0a1804144952275ad961bd392.jpg", "file_size": 63028, "is_delete": false, "file_type": 1, "original_file_name": "123A#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff329dc0a1804144952275ad961bd392.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff329dc0a1804144952275ad961bd392.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff329dc0a1804144952275ad961bd392.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff329dc0a1804144952275ad961bd392.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff329dc0a1804144952275ad961bd392.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V5ayoHB4hOi5tkuIfF6Ky1KzF5Q=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.429332+00 2025-12-09 10:15:56.429339+00 20279 003#男插肩S码-童8T码番禺调色 SPMX-20240815315508 \N \N \N 1 \N [{"file_id": "81e36e0e-5fe6-4cab-b498-9ba9b39a75cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9f8df2d530b478e8dd55c74e3c01f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9f8df2d530b478e8dd55c74e3c01f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9f8df2d530b478e8dd55c74e3c01f4d.jpg", "file_size": 12875, "is_delete": false, "file_type": 1, "original_file_name": "003#男插肩S码-童8T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f8df2d530b478e8dd55c74e3c01f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f8df2d530b478e8dd55c74e3c01f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f8df2d530b478e8dd55c74e3c01f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9f8df2d530b478e8dd55c74e3c01f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9f8df2d530b478e8dd55c74e3c01f4d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0p3vw01KvpVrACWyNu6PD1V2Nog=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.432518+00 2025-12-09 10:15:56.432524+00 20280 FX001FWE#黄底枣红 SPMX-20240815315510 \N \N \N 1 \N [{"file_id": "240b1db1-49ca-463e-859d-3f03347bd5aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae6ada0c12504565839f311414cdb6ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae6ada0c12504565839f311414cdb6ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae6ada0c12504565839f311414cdb6ee.jpg", "file_size": 18951, "is_delete": false, "file_type": 1, "original_file_name": "FX001FWE#黄底枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6ada0c12504565839f311414cdb6ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6ada0c12504565839f311414cdb6ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae6ada0c12504565839f311414cdb6ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae6ada0c12504565839f311414cdb6ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae6ada0c12504565839f311414cdb6ee.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XjJrUDF0bzOuwN5lmHP09OihIng=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.435862+00 2025-12-09 10:15:56.435869+00 20281 LJH2065#扎染款墨绿 SPMX-20240815315518 \N \N \N 1 \N [{"file_id": "6fb42336-01dd-4064-a3ef-d5c6eab04aa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "206c117cded14d33870ae8ebaf9f4097.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "206c117cded14d33870ae8ebaf9f4097.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "206c117cded14d33870ae8ebaf9f4097.jpg", "file_size": 48770, "is_delete": false, "file_type": 1, "original_file_name": "LJH2065#扎染款墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206c117cded14d33870ae8ebaf9f4097.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206c117cded14d33870ae8ebaf9f4097.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206c117cded14d33870ae8ebaf9f4097.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/206c117cded14d33870ae8ebaf9f4097.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/206c117cded14d33870ae8ebaf9f4097.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1s8U8Df-9HWykiyx_xDHXCzpo7c=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.439548+00 2025-12-09 10:15:56.439556+00 20282 LJH2065#扎染款宝蓝 SPMX-20240815315529 \N \N \N 1 \N [{"file_id": "8c493136-f2ab-4dd4-8e36-0cfd434c77b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ad584da29940c182d326e60bfd9118.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ad584da29940c182d326e60bfd9118.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ad584da29940c182d326e60bfd9118.jpg", "file_size": 48773, "is_delete": false, "file_type": 1, "original_file_name": "LJH2065#扎染款宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad584da29940c182d326e60bfd9118.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad584da29940c182d326e60bfd9118.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ad584da29940c182d326e60bfd9118.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ad584da29940c182d326e60bfd9118.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ad584da29940c182d326e60bfd9118.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AnyszK0Q5OukcJlopXsL7NzAoxg=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.443251+00 2025-12-09 10:15:56.443258+00 20283 123A#红色 SPMX-20240815315528 \N \N \N 1 \N [{"file_id": "b7c45ba4-0c19-455d-9600-f8f97b416a21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e97478d97c544dd8ac42b1ba0f44743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e97478d97c544dd8ac42b1ba0f44743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e97478d97c544dd8ac42b1ba0f44743.jpg", "file_size": 64535, "is_delete": false, "file_type": 1, "original_file_name": "123A#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97478d97c544dd8ac42b1ba0f44743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97478d97c544dd8ac42b1ba0f44743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e97478d97c544dd8ac42b1ba0f44743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e97478d97c544dd8ac42b1ba0f44743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e97478d97c544dd8ac42b1ba0f44743.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v_GGVJAADaLnn8BfIxAxrzH9U4w=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.446624+00 2025-12-09 10:15:56.44663+00 20284 DLVEL039FWE#-A2 SPMX-20240815315526 \N \N \N 1 \N [{"file_id": "2b20d041-9887-47ce-a4f4-e1b861cfc83f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f89df8021554409b82022f7348b239c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f89df8021554409b82022f7348b239c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f89df8021554409b82022f7348b239c.jpg", "file_size": 20136, "is_delete": false, "file_type": 1, "original_file_name": "DLVEL039FWE#-A2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f89df8021554409b82022f7348b239c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f89df8021554409b82022f7348b239c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f89df8021554409b82022f7348b239c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f89df8021554409b82022f7348b239c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f89df8021554409b82022f7348b239c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFgwB1Trcb8TUotqSwXAQk66AYo=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.449981+00 2025-12-09 10:15:56.449987+00 20285 HXF001#M粉VS-D3 SPMX-20240815315527 \N \N \N 1 \N [{"file_id": "11c9e961-1ab8-49d6-9e18-152a6915e912", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "874ac8523ca547948ae89ea1076f51a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "874ac8523ca547948ae89ea1076f51a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "874ac8523ca547948ae89ea1076f51a5.jpg", "file_size": 15048, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#M粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874ac8523ca547948ae89ea1076f51a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874ac8523ca547948ae89ea1076f51a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874ac8523ca547948ae89ea1076f51a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/874ac8523ca547948ae89ea1076f51a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/874ac8523ca547948ae89ea1076f51a5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14M1nxqag4lg6y8Fb4ExF8HX6-s=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.453087+00 2025-12-09 10:15:56.453094+00 20286 8837#皮带 SPMX-20240815315523 \N \N \N 1 \N [{"file_id": "8b5591ce-e011-49be-bf0c-c82587c0b328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "506f58fae5a04429b7df42d7f7d9139d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "506f58fae5a04429b7df42d7f7d9139d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "506f58fae5a04429b7df42d7f7d9139d.jpg", "file_size": 20202, "is_delete": false, "file_type": 1, "original_file_name": "8837#皮带.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506f58fae5a04429b7df42d7f7d9139d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506f58fae5a04429b7df42d7f7d9139d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506f58fae5a04429b7df42d7f7d9139d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/506f58fae5a04429b7df42d7f7d9139d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/506f58fae5a04429b7df42d7f7d9139d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zjsYFpUqmU1UxvKOujqUSk5WfmM=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.482261+00 2025-12-09 10:15:56.482267+00 20295 HXF001#M蓝VS-D3 SPMX-20240815315541 \N \N \N 1 \N [{"file_id": "2a363def-3dec-46ca-a4d0-663b20e063f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95d319cb67d343f192e8d9edbe461bc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95d319cb67d343f192e8d9edbe461bc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95d319cb67d343f192e8d9edbe461bc3.jpg", "file_size": 14702, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#M蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d319cb67d343f192e8d9edbe461bc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d319cb67d343f192e8d9edbe461bc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95d319cb67d343f192e8d9edbe461bc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95d319cb67d343f192e8d9edbe461bc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95d319cb67d343f192e8d9edbe461bc3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3rcnUUGgBBpLCtiorJinNEUZg8I=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.456431+00 2025-12-09 10:15:56.456437+00 20287 240#-定位裁-黑色 SPMX-20240815315524 \N \N \N 1 \N [{"file_id": "235b8279-c212-4613-baa7-01bf8be3c83b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e67d593ac1ea412f974f3adbd38f840a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e67d593ac1ea412f974f3adbd38f840a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e67d593ac1ea412f974f3adbd38f840a.jpg", "file_size": 79246, "is_delete": false, "file_type": 1, "original_file_name": "240#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67d593ac1ea412f974f3adbd38f840a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67d593ac1ea412f974f3adbd38f840a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e67d593ac1ea412f974f3adbd38f840a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e67d593ac1ea412f974f3adbd38f840a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e67d593ac1ea412f974f3adbd38f840a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7_gxy2SzgNi0fU-mdgXfXAraRE=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.459681+00 2025-12-09 10:15:56.459688+00 20288 CH09304FWD#无字母炫彩紫M SPMX-20240815315525 \N \N \N 1 \N [{"file_id": "1ff429db-cd7e-48dd-9e32-f8c779c1362a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "676fcbc29576402bb60b203e0a93352d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "676fcbc29576402bb60b203e0a93352d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "676fcbc29576402bb60b203e0a93352d.jpg", "file_size": 14027, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩紫M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676fcbc29576402bb60b203e0a93352d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676fcbc29576402bb60b203e0a93352d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/676fcbc29576402bb60b203e0a93352d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/676fcbc29576402bb60b203e0a93352d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/676fcbc29576402bb60b203e0a93352d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NcSKrxORl3N6pcK82FJZW74ajBA=", "createTime": "2024-08-15 15:08:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.462828+00 2025-12-09 10:15:56.462834+00 20289 JY-AD-200#6号玫红 SPMX-20240815315522 \N \N \N 1 \N [{"file_id": "0666b683-3985-4ee3-bc6b-cf39230e1449", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1293daf9b3a04d6ea149067de70d25e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1293daf9b3a04d6ea149067de70d25e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1293daf9b3a04d6ea149067de70d25e9.jpg", "file_size": 23098, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#6号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1293daf9b3a04d6ea149067de70d25e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1293daf9b3a04d6ea149067de70d25e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1293daf9b3a04d6ea149067de70d25e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1293daf9b3a04d6ea149067de70d25e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1293daf9b3a04d6ea149067de70d25e9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7VPCexgDzfqcffY1P1hkznd7GQ=", "createTime": "2024-08-15 15:08:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.466039+00 2025-12-09 10:15:56.466045+00 20290 LJH2065#橘色 SPMX-20240815315540 \N \N \N 1 \N [{"file_id": "3aa546d1-e249-400e-b104-983f6092adc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae250a5de4d44d0e91e56196d634c7da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae250a5de4d44d0e91e56196d634c7da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae250a5de4d44d0e91e56196d634c7da.jpg", "file_size": 46674, "is_delete": false, "file_type": 1, "original_file_name": "LJH2065#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae250a5de4d44d0e91e56196d634c7da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae250a5de4d44d0e91e56196d634c7da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae250a5de4d44d0e91e56196d634c7da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae250a5de4d44d0e91e56196d634c7da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae250a5de4d44d0e91e56196d634c7da.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XEWyG9dDjloA5BRxPethNt7gRU0=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.469186+00 2025-12-09 10:15:56.469193+00 20291 JY-AD-200#7号绿色 SPMX-20240815315532 \N \N \N 1 \N [{"file_id": "ba1b131a-5618-4ee2-ba22-8845af4ab0c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463fa9b494454c48b3a490530724bd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463fa9b494454c48b3a490530724bd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463fa9b494454c48b3a490530724bd2f.jpg", "file_size": 23530, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#7号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463fa9b494454c48b3a490530724bd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463fa9b494454c48b3a490530724bd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463fa9b494454c48b3a490530724bd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463fa9b494454c48b3a490530724bd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463fa9b494454c48b3a490530724bd2f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS2e2UaCBpZAKS07rr9bWVsig-w=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.472448+00 2025-12-09 10:15:56.472454+00 20292 FX002#D深蓝 SPMX-20240815315533 \N \N \N 1 \N [{"file_id": "b22e7ded-5bf2-41a4-abf7-9e4688945baa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09210e7556444fc6b8b0fe0d25a23f86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09210e7556444fc6b8b0fe0d25a23f86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09210e7556444fc6b8b0fe0d25a23f86.jpg", "file_size": 20616, "is_delete": false, "file_type": 1, "original_file_name": "FX002#D深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09210e7556444fc6b8b0fe0d25a23f86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09210e7556444fc6b8b0fe0d25a23f86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09210e7556444fc6b8b0fe0d25a23f86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09210e7556444fc6b8b0fe0d25a23f86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09210e7556444fc6b8b0fe0d25a23f86.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkfqIDzwvKRzav9mW9XBpiiHgbk=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.475664+00 2025-12-09 10:15:56.475671+00 20293 DLVEL039FWE#-B SPMX-20240815315534 \N \N \N 1 \N [{"file_id": "d6cfc303-0745-4578-b8d9-e9bd8a81678c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab04b5e2a75a46c597c4a970574aa701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab04b5e2a75a46c597c4a970574aa701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab04b5e2a75a46c597c4a970574aa701.jpg", "file_size": 23136, "is_delete": false, "file_type": 1, "original_file_name": "DLVEL039FWE#-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab04b5e2a75a46c597c4a970574aa701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab04b5e2a75a46c597c4a970574aa701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab04b5e2a75a46c597c4a970574aa701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab04b5e2a75a46c597c4a970574aa701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab04b5e2a75a46c597c4a970574aa701.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WTNvPNU9zfHNIIIo5AFCKROt8bs=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.478903+00 2025-12-09 10:15:56.478909+00 20294 003#童12T码番禺调色 SPMX-20240815315544 \N \N \N 1 \N [{"file_id": "5e41f6db-0fb8-4b4a-a72e-63f7cfcf4395", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe40f54b16294b0e8060ca6e8455f651.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe40f54b16294b0e8060ca6e8455f651.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe40f54b16294b0e8060ca6e8455f651.jpg", "file_size": 11404, "is_delete": false, "file_type": 1, "original_file_name": "003#童12T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe40f54b16294b0e8060ca6e8455f651.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe40f54b16294b0e8060ca6e8455f651.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe40f54b16294b0e8060ca6e8455f651.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe40f54b16294b0e8060ca6e8455f651.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe40f54b16294b0e8060ca6e8455f651.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3b9tzGyIDDWsUYVyf8dTs3r4y58=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.485572+00 2025-12-09 10:15:56.485578+00 20296 2402#-童装定位裁红色 SPMX-20240815315535 \N \N \N 1 \N [{"file_id": "ea537dc7-9a67-40c8-adc5-f55e2cd4d034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a252dc706fd249859b609da5b14f9ec2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a252dc706fd249859b609da5b14f9ec2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a252dc706fd249859b609da5b14f9ec2.jpg", "file_size": 54088, "is_delete": false, "file_type": 1, "original_file_name": "2402#-童装定位裁红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a252dc706fd249859b609da5b14f9ec2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a252dc706fd249859b609da5b14f9ec2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a252dc706fd249859b609da5b14f9ec2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a252dc706fd249859b609da5b14f9ec2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a252dc706fd249859b609da5b14f9ec2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ktngnsGgmV0NdcvpGJfGG6NLmU4=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.48889+00 2025-12-09 10:15:56.488897+00 20297 JY-AD-200#8号紫色 SPMX-20240815315542 \N \N \N 1 \N [{"file_id": "7004104b-9537-4fa4-bb91-f5e653dfaebf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "087bae85e8a14f9ca9c4bb0b0520bb17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "087bae85e8a14f9ca9c4bb0b0520bb17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "087bae85e8a14f9ca9c4bb0b0520bb17.jpg", "file_size": 22927, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-200#8号紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087bae85e8a14f9ca9c4bb0b0520bb17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087bae85e8a14f9ca9c4bb0b0520bb17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/087bae85e8a14f9ca9c4bb0b0520bb17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/087bae85e8a14f9ca9c4bb0b0520bb17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/087bae85e8a14f9ca9c4bb0b0520bb17.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xx_pjwpvi5hDgE6v95B6FZ7yPfU=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.492194+00 2025-12-09 10:15:56.492202+00 20298 LZ1414#大人T3号色 SPMX-20240815315530 \N \N \N 1 \N [{"file_id": "05b264dd-022c-4db7-96a0-357a56e3ad20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18fbdebc44dd48ca8c2b799ba68d18b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18fbdebc44dd48ca8c2b799ba68d18b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18fbdebc44dd48ca8c2b799ba68d18b2.jpg", "file_size": 20366, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fbdebc44dd48ca8c2b799ba68d18b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fbdebc44dd48ca8c2b799ba68d18b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18fbdebc44dd48ca8c2b799ba68d18b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18fbdebc44dd48ca8c2b799ba68d18b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18fbdebc44dd48ca8c2b799ba68d18b2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v3wUedGbkOj0xRdm2i4XQtosNQc=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.495391+00 2025-12-09 10:15:56.495397+00 20299 88380#I-卡其42码 SPMX-20240815315536 \N \N \N 1 \N [{"file_id": "c1cb6923-a5f4-4938-b098-e10aa6453f75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c92a66a33d7243d89438b014c9cbf4b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c92a66a33d7243d89438b014c9cbf4b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c92a66a33d7243d89438b014c9cbf4b3.jpg", "file_size": 17342, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-卡其42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92a66a33d7243d89438b014c9cbf4b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92a66a33d7243d89438b014c9cbf4b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c92a66a33d7243d89438b014c9cbf4b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c92a66a33d7243d89438b014c9cbf4b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c92a66a33d7243d89438b014c9cbf4b3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M8I6JvIZEECQzggJsSZLuefydo8=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.49865+00 2025-12-09 10:15:56.498657+00 20300 LZ1414#大人T4号色 SPMX-20240815315539 \N \N \N 1 \N [{"file_id": "f2680188-c227-44dc-a2d7-423a002ed735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4981e0531d39446c98ea61877c3012f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4981e0531d39446c98ea61877c3012f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4981e0531d39446c98ea61877c3012f5.jpg", "file_size": 20598, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4981e0531d39446c98ea61877c3012f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4981e0531d39446c98ea61877c3012f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4981e0531d39446c98ea61877c3012f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4981e0531d39446c98ea61877c3012f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4981e0531d39446c98ea61877c3012f5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DbK1vn4z7Y_sj1V-E3y-wna4jvk=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.501832+00 2025-12-09 10:15:56.501838+00 20301 123A#绿色 SPMX-20240815315537 \N \N \N 1 \N [{"file_id": "971d0d5f-3623-48ef-b55b-2ae05cfbf3d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60b3488533ef41a98a2f2f7f968f77ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60b3488533ef41a98a2f2f7f968f77ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60b3488533ef41a98a2f2f7f968f77ba.jpg", "file_size": 59891, "is_delete": false, "file_type": 1, "original_file_name": "123A#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3488533ef41a98a2f2f7f968f77ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3488533ef41a98a2f2f7f968f77ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60b3488533ef41a98a2f2f7f968f77ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60b3488533ef41a98a2f2f7f968f77ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60b3488533ef41a98a2f2f7f968f77ba.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MryqZfNv13HFtnWBT7AsFpgWrTA=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.505101+00 2025-12-09 10:15:56.505107+00 20302 003#童10T码番禺调色 SPMX-20240815315531 \N \N \N 1 \N [{"file_id": "d19d4ed9-0b13-4987-a977-7a12c76cfacd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8772ff26de0f4316aacf55bb19b8cbb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8772ff26de0f4316aacf55bb19b8cbb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8772ff26de0f4316aacf55bb19b8cbb1.jpg", "file_size": 16030, "is_delete": false, "file_type": 1, "original_file_name": "003#童10T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772ff26de0f4316aacf55bb19b8cbb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772ff26de0f4316aacf55bb19b8cbb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772ff26de0f4316aacf55bb19b8cbb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8772ff26de0f4316aacf55bb19b8cbb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8772ff26de0f4316aacf55bb19b8cbb1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AsZXCs3bk1FC4YXSNgPe_oCQnac=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.508448+00 2025-12-09 10:15:56.508453+00 20303 FX002#D灰 SPMX-20240815315543 \N \N \N 1 \N [{"file_id": "9178ef46-23c0-4657-b856-5e9e171c4b0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "def1ce531f564c809c3e45fdc73931b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "def1ce531f564c809c3e45fdc73931b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "def1ce531f564c809c3e45fdc73931b4.jpg", "file_size": 9675, "is_delete": false, "file_type": 1, "original_file_name": "FX002#D灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def1ce531f564c809c3e45fdc73931b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def1ce531f564c809c3e45fdc73931b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/def1ce531f564c809c3e45fdc73931b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/def1ce531f564c809c3e45fdc73931b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/def1ce531f564c809c3e45fdc73931b4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfBzvSk1N5_QmbLkbkUbAuyR7kI=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.512013+00 2025-12-09 10:15:56.512019+00 20304 CH09304FWD#无字母炫彩紫S SPMX-20240815315538 \N \N \N 1 \N [{"file_id": "e654a4d2-1017-46e0-b32d-2eaed7a7b76e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf15197a86214c58989ecf0bf506d34c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf15197a86214c58989ecf0bf506d34c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf15197a86214c58989ecf0bf506d34c.jpg", "file_size": 13581, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩紫S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf15197a86214c58989ecf0bf506d34c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf15197a86214c58989ecf0bf506d34c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf15197a86214c58989ecf0bf506d34c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf15197a86214c58989ecf0bf506d34c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf15197a86214c58989ecf0bf506d34c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y4GmPzNGhdjLJfnbmAgkool_go0=", "createTime": "2024-08-15 15:08:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.51545+00 2025-12-09 10:15:56.515456+00 20305 2402#-童装定位裁绿色 SPMX-20240815315546 \N \N \N 1 \N [{"file_id": "b3766960-1121-4fbe-a066-16ed3ce80f0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a948c685720840c9926869d79a6f58d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a948c685720840c9926869d79a6f58d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a948c685720840c9926869d79a6f58d0.jpg", "file_size": 50384, "is_delete": false, "file_type": 1, "original_file_name": "2402#-童装定位裁绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a948c685720840c9926869d79a6f58d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a948c685720840c9926869d79a6f58d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a948c685720840c9926869d79a6f58d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a948c685720840c9926869d79a6f58d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a948c685720840c9926869d79a6f58d0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8bYlMa5_tdf3duK-VKWy2p882YA=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.518799+00 2025-12-09 10:15:56.518806+00 20306 LJH2065#绿色 SPMX-20240815315555 \N \N \N 1 \N [{"file_id": "be2fd544-a147-4658-abb7-b883947868b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51789337d7e2402a9166d1c53da9d14e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51789337d7e2402a9166d1c53da9d14e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51789337d7e2402a9166d1c53da9d14e.jpg", "file_size": 45917, "is_delete": false, "file_type": 1, "original_file_name": "LJH2065#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51789337d7e2402a9166d1c53da9d14e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51789337d7e2402a9166d1c53da9d14e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51789337d7e2402a9166d1c53da9d14e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51789337d7e2402a9166d1c53da9d14e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51789337d7e2402a9166d1c53da9d14e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tMGze_eZ8LGCKxj0M3Ny3-eVBlA=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.522124+00 2025-12-09 10:15:56.52213+00 20307 LZ1414#大人T5号色 SPMX-20240815315549 \N \N \N 1 \N [{"file_id": "64e5acc7-8f4a-4641-8dc7-48db3e9be2a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21fccd0937034cf282a026af3ca6cb43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21fccd0937034cf282a026af3ca6cb43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21fccd0937034cf282a026af3ca6cb43.jpg", "file_size": 19832, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fccd0937034cf282a026af3ca6cb43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fccd0937034cf282a026af3ca6cb43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21fccd0937034cf282a026af3ca6cb43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21fccd0937034cf282a026af3ca6cb43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21fccd0937034cf282a026af3ca6cb43.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iiECYljF-DSvCCfBvaOrfez3FyY=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.525437+00 2025-12-09 10:15:56.525443+00 20308 JY-AD-203#1号黑底叶子多色 SPMX-20240815315551 \N \N \N 1 \N [{"file_id": "952bab96-9fb5-4c2d-80b4-ade697103061", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47319b258c50441ba7f80b0b0e215501.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47319b258c50441ba7f80b0b0e215501.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47319b258c50441ba7f80b0b0e215501.jpg", "file_size": 26105, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-203#1号黑底叶子多色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47319b258c50441ba7f80b0b0e215501.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47319b258c50441ba7f80b0b0e215501.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47319b258c50441ba7f80b0b0e215501.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47319b258c50441ba7f80b0b0e215501.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47319b258c50441ba7f80b0b0e215501.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5HwvWN7Sv-wuUM00wauPNFqBoA=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.52874+00 2025-12-09 10:15:56.528747+00 20309 HXF001#VS-D3粉 SPMX-20240815315554 \N \N \N 1 \N [{"file_id": "20184820-8ff3-4dfc-a2be-aacaaf5c8876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21e2ece8562e41b99299abb6e06402d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21e2ece8562e41b99299abb6e06402d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21e2ece8562e41b99299abb6e06402d5.jpg", "file_size": 14166, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e2ece8562e41b99299abb6e06402d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e2ece8562e41b99299abb6e06402d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21e2ece8562e41b99299abb6e06402d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21e2ece8562e41b99299abb6e06402d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21e2ece8562e41b99299abb6e06402d5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VpYfl-xhXLiOSSvZsZe9ke73mVs=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.532092+00 2025-12-09 10:15:56.532099+00 20310 003#童14T码番禺调色 SPMX-20240815315556 \N \N \N 1 \N [{"file_id": "cf5cc5b1-759f-4775-b427-d916cfbb2a1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "897c2c1275e1448397e0740f6522f569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "897c2c1275e1448397e0740f6522f569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "897c2c1275e1448397e0740f6522f569.jpg", "file_size": 12181, "is_delete": false, "file_type": 1, "original_file_name": "003#童14T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897c2c1275e1448397e0740f6522f569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897c2c1275e1448397e0740f6522f569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897c2c1275e1448397e0740f6522f569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/897c2c1275e1448397e0740f6522f569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/897c2c1275e1448397e0740f6522f569.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yXbh5z2U1PZArJoL5yLuGgL8Q8A=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.535333+00 2025-12-09 10:15:56.53534+00 20311 88380#I-卡其46码 SPMX-20240815315558 \N \N \N 1 \N [{"file_id": "cc242c9a-7daa-49e0-99a9-40dd294811f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3be308d1286476b9ced7231f0f636f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3be308d1286476b9ced7231f0f636f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3be308d1286476b9ced7231f0f636f2.jpg", "file_size": 17681, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-卡其46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3be308d1286476b9ced7231f0f636f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3be308d1286476b9ced7231f0f636f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3be308d1286476b9ced7231f0f636f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3be308d1286476b9ced7231f0f636f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3be308d1286476b9ced7231f0f636f2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AkuXvDwInhmIT_XsYpFmz13VI6Q=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.538682+00 2025-12-09 10:15:56.538689+00 20312 CH09304FWD#无字母炫彩紫XL SPMX-20240815315548 \N \N \N 1 \N [{"file_id": "9020a3bc-bf9b-45bd-bd33-57208db5772a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92609842e9404a81be66ffc8e0620e20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92609842e9404a81be66ffc8e0620e20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92609842e9404a81be66ffc8e0620e20.jpg", "file_size": 14435, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩紫XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92609842e9404a81be66ffc8e0620e20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92609842e9404a81be66ffc8e0620e20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92609842e9404a81be66ffc8e0620e20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92609842e9404a81be66ffc8e0620e20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92609842e9404a81be66ffc8e0620e20.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q0EkbNvyFwsGxv3K6buqRWB-in4=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.542246+00 2025-12-09 10:15:56.542254+00 20313 DL小米粒#格子粉 SPMX-20240815315545 \N \N \N 1 \N [{"file_id": "b66253b5-3766-4057-82c1-bc3c63cac2d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fc2ecaf6d3943119b830d279eb062cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fc2ecaf6d3943119b830d279eb062cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fc2ecaf6d3943119b830d279eb062cc.jpg", "file_size": 13290, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc2ecaf6d3943119b830d279eb062cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc2ecaf6d3943119b830d279eb062cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fc2ecaf6d3943119b830d279eb062cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fc2ecaf6d3943119b830d279eb062cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fc2ecaf6d3943119b830d279eb062cc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrZshVTQwrIwnnJaNxWNQaLZME8=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.545729+00 2025-12-09 10:15:56.545737+00 20314 DL小米粒#格子粉净色 SPMX-20240815315557 \N \N \N 1 \N [{"file_id": "973fffe7-8bbb-449f-a002-ce21db86c406", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91cceba8e8564d2ba0c557a267ddb064.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91cceba8e8564d2ba0c557a267ddb064.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91cceba8e8564d2ba0c557a267ddb064.jpg", "file_size": 13119, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91cceba8e8564d2ba0c557a267ddb064.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91cceba8e8564d2ba0c557a267ddb064.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91cceba8e8564d2ba0c557a267ddb064.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91cceba8e8564d2ba0c557a267ddb064.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91cceba8e8564d2ba0c557a267ddb064.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tu989bSvA1jbmY_wgKSziIcrP94=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.548997+00 2025-12-09 10:15:56.549003+00 20315 FX002#D白底黑 SPMX-20240815315553 \N \N \N 1 \N [{"file_id": "44507026-55cf-4548-bc1f-baab8b23a1e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "541588ea57a248f09cd7bb3cdfd020dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "541588ea57a248f09cd7bb3cdfd020dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "541588ea57a248f09cd7bb3cdfd020dc.jpg", "file_size": 21364, "is_delete": false, "file_type": 1, "original_file_name": "FX002#D白底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541588ea57a248f09cd7bb3cdfd020dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541588ea57a248f09cd7bb3cdfd020dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/541588ea57a248f09cd7bb3cdfd020dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/541588ea57a248f09cd7bb3cdfd020dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/541588ea57a248f09cd7bb3cdfd020dc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UhSypLdfYk4aAyBiqubRl2hBOic=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.552163+00 2025-12-09 10:15:56.552169+00 20316 88380#I-卡其44码 SPMX-20240815315547 \N \N \N 1 \N [{"file_id": "ec6b3740-edf5-40d4-b4db-3161194a2b34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c20abe5c547240e19b7b70c123f3f6ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c20abe5c547240e19b7b70c123f3f6ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c20abe5c547240e19b7b70c123f3f6ac.jpg", "file_size": 17933, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-卡其44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20abe5c547240e19b7b70c123f3f6ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20abe5c547240e19b7b70c123f3f6ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c20abe5c547240e19b7b70c123f3f6ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c20abe5c547240e19b7b70c123f3f6ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c20abe5c547240e19b7b70c123f3f6ac.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:osK5ACwSlmz9BwYX79uu5BGND6E=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.555545+00 2025-12-09 10:15:56.555551+00 20317 123A#蓝色 SPMX-20240815315552 \N \N \N 1 \N [{"file_id": "5101fe3d-a0c5-4a82-ad97-a2fb9ca4dac6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19966c15a30e4ccaa365519ecf8e2f47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19966c15a30e4ccaa365519ecf8e2f47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19966c15a30e4ccaa365519ecf8e2f47.jpg", "file_size": 67370, "is_delete": false, "file_type": 1, "original_file_name": "123A#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19966c15a30e4ccaa365519ecf8e2f47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19966c15a30e4ccaa365519ecf8e2f47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19966c15a30e4ccaa365519ecf8e2f47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19966c15a30e4ccaa365519ecf8e2f47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19966c15a30e4ccaa365519ecf8e2f47.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jsaMUpYcIGgmfb5Ee7hFV7ZeBo=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.558817+00 2025-12-09 10:15:56.558824+00 20318 CH09304FWD#无字母炫彩紫XS SPMX-20240815315560 \N \N \N 1 \N [{"file_id": "efa611f0-ec7f-44c9-ba8c-adf78bacd376", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b02c0e8fe54b4acfacd6629e7debc74c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b02c0e8fe54b4acfacd6629e7debc74c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b02c0e8fe54b4acfacd6629e7debc74c.jpg", "file_size": 13478, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#无字母炫彩紫XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02c0e8fe54b4acfacd6629e7debc74c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02c0e8fe54b4acfacd6629e7debc74c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b02c0e8fe54b4acfacd6629e7debc74c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b02c0e8fe54b4acfacd6629e7debc74c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b02c0e8fe54b4acfacd6629e7debc74c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NsRh3vO-uwyr8C4Cchnjr1_EU1Y=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.562041+00 2025-12-09 10:15:56.562048+00 20319 123A#黄色 SPMX-20240815315563 \N \N \N 1 \N [{"file_id": "2376be04-c977-449b-9e34-b9d7633efaba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "717026e8eba548b39c0f183eb17605dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "717026e8eba548b39c0f183eb17605dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "717026e8eba548b39c0f183eb17605dc.jpg", "file_size": 62306, "is_delete": false, "file_type": 1, "original_file_name": "123A#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717026e8eba548b39c0f183eb17605dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717026e8eba548b39c0f183eb17605dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717026e8eba548b39c0f183eb17605dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/717026e8eba548b39c0f183eb17605dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/717026e8eba548b39c0f183eb17605dc.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBeM53FHknxSDOYam5AKDqPT7g0=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.565281+00 2025-12-09 10:15:56.565287+00 20320 FX002#D红 SPMX-20240815315565 \N \N \N 1 \N [{"file_id": "e1d7f6c6-a710-4373-8862-fc9a4bece3d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3894b27c07d94cb28d6c0f0df6d546f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3894b27c07d94cb28d6c0f0df6d546f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3894b27c07d94cb28d6c0f0df6d546f3.jpg", "file_size": 20047, "is_delete": false, "file_type": 1, "original_file_name": "FX002#D红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3894b27c07d94cb28d6c0f0df6d546f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3894b27c07d94cb28d6c0f0df6d546f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3894b27c07d94cb28d6c0f0df6d546f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3894b27c07d94cb28d6c0f0df6d546f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3894b27c07d94cb28d6c0f0df6d546f3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJD_Nw1Bm-wtnCEXI65XILvDkdg=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.568542+00 2025-12-09 10:15:56.568549+00 20321 2402#-童装定位裁蓝色 SPMX-20240815315559 \N \N \N 1 \N [{"file_id": "a1af6248-71cb-45d8-9cbf-ee33285d6abd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c7748cfc6c04aa49bc9b04977938945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c7748cfc6c04aa49bc9b04977938945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c7748cfc6c04aa49bc9b04977938945.jpg", "file_size": 49847, "is_delete": false, "file_type": 1, "original_file_name": "2402#-童装定位裁蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7748cfc6c04aa49bc9b04977938945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7748cfc6c04aa49bc9b04977938945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c7748cfc6c04aa49bc9b04977938945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c7748cfc6c04aa49bc9b04977938945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c7748cfc6c04aa49bc9b04977938945.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PV2SwC_f7-Qt9csCaai3--HAWT8=", "createTime": "2024-08-15 15:08:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.571738+00 2025-12-09 10:15:56.571743+00 20322 LZ1414#童装T1号色 SPMX-20240815315561 \N \N \N 1 \N [{"file_id": "b6cf4e02-8bee-4252-bfc9-0934ab587229", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9939953bcdaf4a5ba07733059ad5cb3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9939953bcdaf4a5ba07733059ad5cb3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9939953bcdaf4a5ba07733059ad5cb3f.jpg", "file_size": 22377, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9939953bcdaf4a5ba07733059ad5cb3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9939953bcdaf4a5ba07733059ad5cb3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9939953bcdaf4a5ba07733059ad5cb3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9939953bcdaf4a5ba07733059ad5cb3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9939953bcdaf4a5ba07733059ad5cb3f.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3ykDFzr8muxaDLyazRrfxyD7Gs=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.575018+00 2025-12-09 10:15:56.575024+00 20323 HXF001#VS-D3黑 SPMX-20240815315564 \N \N \N 1 \N [{"file_id": "af21f4a6-702c-459b-846b-27ad9e5330f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2280bffadb13480c871f95a4e0efef97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2280bffadb13480c871f95a4e0efef97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2280bffadb13480c871f95a4e0efef97.jpg", "file_size": 25223, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2280bffadb13480c871f95a4e0efef97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2280bffadb13480c871f95a4e0efef97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2280bffadb13480c871f95a4e0efef97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2280bffadb13480c871f95a4e0efef97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2280bffadb13480c871f95a4e0efef97.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jQLnR1-3rqLBqE4gegavO5g2ocU=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.578347+00 2025-12-09 10:15:56.578353+00 20324 JY-AD-203#3号焦糖底多色叶子 SPMX-20240815315562 \N \N \N 1 \N [{"file_id": "fe79ef41-c002-45d2-82c8-75a97b2eff93", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3254e1dd62b455cbfc17d049c2f3eb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3254e1dd62b455cbfc17d049c2f3eb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3254e1dd62b455cbfc17d049c2f3eb0.jpg", "file_size": 24486, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-203#3号焦糖底多色叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3254e1dd62b455cbfc17d049c2f3eb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3254e1dd62b455cbfc17d049c2f3eb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3254e1dd62b455cbfc17d049c2f3eb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3254e1dd62b455cbfc17d049c2f3eb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3254e1dd62b455cbfc17d049c2f3eb0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvQgLXWb2d-wgxoJqCHT-jGVzus=", "createTime": "2024-08-15 15:08:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.581979+00 2025-12-09 10:15:56.581988+00 20325 DL小米粒#格子红 SPMX-20240815315570 \N \N \N 1 \N [{"file_id": "a0951a8f-5122-4271-b182-85799ea0024e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e817aee937dc4e60863d8153ce1d39fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e817aee937dc4e60863d8153ce1d39fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e817aee937dc4e60863d8153ce1d39fd.jpg", "file_size": 15186, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e817aee937dc4e60863d8153ce1d39fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e817aee937dc4e60863d8153ce1d39fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e817aee937dc4e60863d8153ce1d39fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e817aee937dc4e60863d8153ce1d39fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e817aee937dc4e60863d8153ce1d39fd.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TF9ItAE1KxrmxWEKJKeCYEEa_kE=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.585332+00 2025-12-09 10:15:56.58534+00 20326 CH09304FWD#橙粉色L SPMX-20240815315577 \N \N \N 1 \N [{"file_id": "c0ef3004-b992-4e96-82ed-d4488b567e3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba0207f3af204ad98165531b22c49685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba0207f3af204ad98165531b22c49685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba0207f3af204ad98165531b22c49685.jpg", "file_size": 13882, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#橙粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0207f3af204ad98165531b22c49685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0207f3af204ad98165531b22c49685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba0207f3af204ad98165531b22c49685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba0207f3af204ad98165531b22c49685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba0207f3af204ad98165531b22c49685.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htoJ3YFWvcDKbX7oFgacQSpJ0dA=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.588631+00 2025-12-09 10:15:56.588637+00 20327 LJH2106#天兰 SPMX-20240815315568 \N \N \N 1 \N [{"file_id": "56067ca7-7b54-4017-9a1e-acef50cb3d5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b090b0279243ffb087919e0fa5aa32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b090b0279243ffb087919e0fa5aa32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b090b0279243ffb087919e0fa5aa32.jpg", "file_size": 58094, "is_delete": false, "file_type": 1, "original_file_name": "LJH2106#天兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b090b0279243ffb087919e0fa5aa32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b090b0279243ffb087919e0fa5aa32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b090b0279243ffb087919e0fa5aa32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b090b0279243ffb087919e0fa5aa32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b090b0279243ffb087919e0fa5aa32.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1IDq4yM2N-OF3KZLDV1sYw9NtWQ=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.591944+00 2025-12-09 10:15:56.59195+00 20328 HXF001#XL白VS-D3 SPMX-20240815315571 \N \N \N 1 \N [{"file_id": "ed27cb44-6661-458f-abbe-2dc227f50808", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2177cb51c2e54904b948245849f880fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2177cb51c2e54904b948245849f880fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2177cb51c2e54904b948245849f880fd.jpg", "file_size": 14990, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#XL白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2177cb51c2e54904b948245849f880fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2177cb51c2e54904b948245849f880fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2177cb51c2e54904b948245849f880fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2177cb51c2e54904b948245849f880fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2177cb51c2e54904b948245849f880fd.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rLIRPa_j7nBN8IiuLiP-iRhDyg4=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.595345+00 2025-12-09 10:15:56.595352+00 20329 003#童2T码番禺调色 SPMX-20240815315566 \N \N \N 1 \N [{"file_id": "b4e29347-8f87-461d-bc2e-ef9554975473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45d21b83ec9f4894aec0699c0d6e4359.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45d21b83ec9f4894aec0699c0d6e4359.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45d21b83ec9f4894aec0699c0d6e4359.jpg", "file_size": 10531, "is_delete": false, "file_type": 1, "original_file_name": "003#童2T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d21b83ec9f4894aec0699c0d6e4359.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d21b83ec9f4894aec0699c0d6e4359.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45d21b83ec9f4894aec0699c0d6e4359.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45d21b83ec9f4894aec0699c0d6e4359.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45d21b83ec9f4894aec0699c0d6e4359.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trvYNqdeAC7k1Ubw2haAl0TocEg=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.601755+00 2025-12-09 10:15:56.60176+00 20331 003#童3T码番禺调色 SPMX-20240815315576 \N \N \N 1 \N [{"file_id": "0b5e9f66-463f-4261-8603-5a35d904cf09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "801c175880444e9b975d2da12b32daa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "801c175880444e9b975d2da12b32daa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "801c175880444e9b975d2da12b32daa9.jpg", "file_size": 10755, "is_delete": false, "file_type": 1, "original_file_name": "003#童3T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801c175880444e9b975d2da12b32daa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801c175880444e9b975d2da12b32daa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/801c175880444e9b975d2da12b32daa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/801c175880444e9b975d2da12b32daa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/801c175880444e9b975d2da12b32daa9.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cDoTZ_VPbvVgWX5xrmF7p5FxYXc=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.605061+00 2025-12-09 10:15:56.605067+00 20332 LZ1414#童装T2号色 SPMX-20240815315569 \N \N \N 1 \N [{"file_id": "8b7687b0-37c3-4609-a08a-780abd9e9054", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6266ed387004adb9cd2bff622de8c50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6266ed387004adb9cd2bff622de8c50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6266ed387004adb9cd2bff622de8c50.jpg", "file_size": 22002, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6266ed387004adb9cd2bff622de8c50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6266ed387004adb9cd2bff622de8c50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6266ed387004adb9cd2bff622de8c50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6266ed387004adb9cd2bff622de8c50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6266ed387004adb9cd2bff622de8c50.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8HJ3nFUb6DbWPO1LyVsy6VyiOCI=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.608467+00 2025-12-09 10:15:56.608474+00 20333 124#-杏色 SPMX-20240815315572 \N \N \N 1 \N [{"file_id": "3ea182ca-b5b3-4350-bf95-750ea933b8b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2324ff59718944c6a0af11d1357da3e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2324ff59718944c6a0af11d1357da3e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2324ff59718944c6a0af11d1357da3e5.jpg", "file_size": 48503, "is_delete": false, "file_type": 1, "original_file_name": "124#-杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2324ff59718944c6a0af11d1357da3e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2324ff59718944c6a0af11d1357da3e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2324ff59718944c6a0af11d1357da3e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2324ff59718944c6a0af11d1357da3e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2324ff59718944c6a0af11d1357da3e5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CZVHO6X-JUm7tJCxkbhMXVR-OTg=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.598551+00 2025-12-09 10:15:56.598557+00 20330 2402#-童装定位裁黄绿 SPMX-20240815315574 \N \N \N 1 \N [{"file_id": "6791a317-f259-42d1-be2f-db13e21d2cfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7abaa0f1385c43ea906dafa3590f0a35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7abaa0f1385c43ea906dafa3590f0a35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7abaa0f1385c43ea906dafa3590f0a35.jpg", "file_size": 51955, "is_delete": false, "file_type": 1, "original_file_name": "2402#-童装定位裁黄绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abaa0f1385c43ea906dafa3590f0a35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abaa0f1385c43ea906dafa3590f0a35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7abaa0f1385c43ea906dafa3590f0a35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7abaa0f1385c43ea906dafa3590f0a35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7abaa0f1385c43ea906dafa3590f0a35.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KNpPePMEkeFJbFNvXiv1PSgOA5E=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.615296+00 2025-12-09 10:15:56.615304+00 20334 88380#I-卡其48码 SPMX-20240815315567 \N \N \N 1 \N [{"file_id": "24c4d0c0-085e-451e-8eb2-8434001b53e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a3a9f9bd7f14964841bfff6016940d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a3a9f9bd7f14964841bfff6016940d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a3a9f9bd7f14964841bfff6016940d8.jpg", "file_size": 17778, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-卡其48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3a9f9bd7f14964841bfff6016940d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3a9f9bd7f14964841bfff6016940d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3a9f9bd7f14964841bfff6016940d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a3a9f9bd7f14964841bfff6016940d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a3a9f9bd7f14964841bfff6016940d8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RKFjF7pXLNt1wIgrfKhMFkJ4d4o=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.618515+00 2025-12-09 10:15:56.618521+00 20335 FX002#VS-D3 SPMX-20240815315575 \N \N \N 1 \N [{"file_id": "8c04ab2d-38b2-463c-bcb9-3058cd320389", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd2e83fe7bf0445fb45d0e6656cd6c83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd2e83fe7bf0445fb45d0e6656cd6c83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd2e83fe7bf0445fb45d0e6656cd6c83.jpg", "file_size": 16803, "is_delete": false, "file_type": 1, "original_file_name": "FX002#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2e83fe7bf0445fb45d0e6656cd6c83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2e83fe7bf0445fb45d0e6656cd6c83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd2e83fe7bf0445fb45d0e6656cd6c83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd2e83fe7bf0445fb45d0e6656cd6c83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd2e83fe7bf0445fb45d0e6656cd6c83.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cFV6mAnFXMMmTRXkBnysWlqLZxs=", "createTime": "2024-08-15 15:08:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.621867+00 2025-12-09 10:15:56.621875+00 20336 88380#I-卡其50码 SPMX-20240815315579 \N \N \N 1 \N [{"file_id": "dcd62fa6-2012-42b2-aae2-e8ceddcfb63f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09549ff7ff984e7a8ad9561c2f0b4bc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09549ff7ff984e7a8ad9561c2f0b4bc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09549ff7ff984e7a8ad9561c2f0b4bc6.jpg", "file_size": 18009, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-卡其50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09549ff7ff984e7a8ad9561c2f0b4bc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09549ff7ff984e7a8ad9561c2f0b4bc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09549ff7ff984e7a8ad9561c2f0b4bc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09549ff7ff984e7a8ad9561c2f0b4bc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09549ff7ff984e7a8ad9561c2f0b4bc6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FuWHF5_F4ArHn5-GVCn4UgpOfTY=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.625142+00 2025-12-09 10:15:56.625149+00 20337 DL小米粒#格子红净色 SPMX-20240815315580 \N \N \N 1 \N [{"file_id": "27dc0418-122f-4fc6-9db2-169d8bea14de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17f483a80de440efa481a97506476073.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17f483a80de440efa481a97506476073.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17f483a80de440efa481a97506476073.jpg", "file_size": 13848, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子红净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f483a80de440efa481a97506476073.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f483a80de440efa481a97506476073.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17f483a80de440efa481a97506476073.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17f483a80de440efa481a97506476073.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17f483a80de440efa481a97506476073.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fwoOsiqNv5IFed1E0VRJNNbgjLk=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.628371+00 2025-12-09 10:15:56.628378+00 20338 HXF001#XL粉VS-D3 SPMX-20240815315583 \N \N \N 1 \N [{"file_id": "fd461e42-2aee-4199-bdaa-c5c1d8f4675d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a449d610a5a446e8b68256eeaa3bb8a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a449d610a5a446e8b68256eeaa3bb8a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a449d610a5a446e8b68256eeaa3bb8a4.jpg", "file_size": 14610, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#XL粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a449d610a5a446e8b68256eeaa3bb8a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a449d610a5a446e8b68256eeaa3bb8a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a449d610a5a446e8b68256eeaa3bb8a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a449d610a5a446e8b68256eeaa3bb8a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a449d610a5a446e8b68256eeaa3bb8a4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WhjyxiXPsoqk5U1N5CKpQg-0cE=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.63156+00 2025-12-09 10:15:56.631565+00 20339 CH09304FWD#橙粉色M SPMX-20240815315581 \N \N \N 1 \N [{"file_id": "2e266e94-3a89-4f7d-adb7-56921e14c81b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "958dce7d6e6d4626a0ae39c355c493a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "958dce7d6e6d4626a0ae39c355c493a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "958dce7d6e6d4626a0ae39c355c493a0.jpg", "file_size": 13773, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#橙粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958dce7d6e6d4626a0ae39c355c493a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958dce7d6e6d4626a0ae39c355c493a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958dce7d6e6d4626a0ae39c355c493a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/958dce7d6e6d4626a0ae39c355c493a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/958dce7d6e6d4626a0ae39c355c493a0.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X6cuJ9pApxZskFnRwnXBg8uFR5w=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.634971+00 2025-12-09 10:15:56.634977+00 20340 124#-灰色 SPMX-20240815315584 \N \N \N 1 \N [{"file_id": "efa6c260-09cd-4382-ab60-4c5666887572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f96fadf66e6d48c38de9d792eaf47b3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f96fadf66e6d48c38de9d792eaf47b3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f96fadf66e6d48c38de9d792eaf47b3c.jpg", "file_size": 58908, "is_delete": false, "file_type": 1, "original_file_name": "124#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f96fadf66e6d48c38de9d792eaf47b3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f96fadf66e6d48c38de9d792eaf47b3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f96fadf66e6d48c38de9d792eaf47b3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f96fadf66e6d48c38de9d792eaf47b3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f96fadf66e6d48c38de9d792eaf47b3c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qj5f8lSR5HVPRR4uUxuQz-pIIrg=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.638146+00 2025-12-09 10:15:56.638152+00 20341 LJH2106#红色 SPMX-20240815315578 \N \N \N 1 \N [{"file_id": "5a95a8d7-d0de-440e-a3ff-8ee37e57a244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5599aa7be42644b3bcec6c9dd3456948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5599aa7be42644b3bcec6c9dd3456948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5599aa7be42644b3bcec6c9dd3456948.jpg", "file_size": 58600, "is_delete": false, "file_type": 1, "original_file_name": "LJH2106#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5599aa7be42644b3bcec6c9dd3456948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5599aa7be42644b3bcec6c9dd3456948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5599aa7be42644b3bcec6c9dd3456948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5599aa7be42644b3bcec6c9dd3456948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5599aa7be42644b3bcec6c9dd3456948.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNg-QFDeC-FfmS7t40tOPMIVTU0=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.641716+00 2025-12-09 10:15:56.641723+00 20342 FX002FW#VS-D3 SPMX-20240815315585 \N \N \N 1 \N [{"file_id": "398a8e2c-e489-4b24-ac12-9e2721403a9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0565046767944b759e170afd622755d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0565046767944b759e170afd622755d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0565046767944b759e170afd622755d4.jpg", "file_size": 20009, "is_delete": false, "file_type": 1, "original_file_name": "FX002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0565046767944b759e170afd622755d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0565046767944b759e170afd622755d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0565046767944b759e170afd622755d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0565046767944b759e170afd622755d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0565046767944b759e170afd622755d4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UyZ9a1Vppe8nOjXEGny7WGuDPrY=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.667511+00 2025-12-09 10:15:56.667517+00 20351 FX002FWE#VS-D3 SPMX-20240815315596 \N \N \N 1 \N [{"file_id": "fc91d4f5-7b2e-484c-a5ba-1af30d67bf27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a156e0d57ea48079662911adbb69b6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a156e0d57ea48079662911adbb69b6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a156e0d57ea48079662911adbb69b6e.jpg", "file_size": 15382, "is_delete": false, "file_type": 1, "original_file_name": "FX002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a156e0d57ea48079662911adbb69b6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a156e0d57ea48079662911adbb69b6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a156e0d57ea48079662911adbb69b6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a156e0d57ea48079662911adbb69b6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a156e0d57ea48079662911adbb69b6e.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:omYL-6LDbRUjwurGQlWp8LYWgDo=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.644876+00 2025-12-09 10:15:56.644882+00 20343 2402#-童装定位裁黄色 SPMX-20240815315586 \N \N \N 1 \N [{"file_id": "52e751e8-2df1-4edc-9366-851c9dddcef1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e5535b54f2f4f3780139f84302456a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e5535b54f2f4f3780139f84302456a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e5535b54f2f4f3780139f84302456a1.jpg", "file_size": 52521, "is_delete": false, "file_type": 1, "original_file_name": "2402#-童装定位裁黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5535b54f2f4f3780139f84302456a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5535b54f2f4f3780139f84302456a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e5535b54f2f4f3780139f84302456a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e5535b54f2f4f3780139f84302456a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e5535b54f2f4f3780139f84302456a1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duizibOGbMVGR9lP4GYr5Zx3jMM=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.647762+00 2025-12-09 10:15:56.647766+00 20344 LZ1414#童装T3号色 SPMX-20240815315582 \N \N \N 1 \N [{"file_id": "2755dc69-d072-490c-a513-5fff23f02a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e24d05bc6b244ae8706400c8f0406f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e24d05bc6b244ae8706400c8f0406f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e24d05bc6b244ae8706400c8f0406f1.jpg", "file_size": 25559, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e24d05bc6b244ae8706400c8f0406f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e24d05bc6b244ae8706400c8f0406f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e24d05bc6b244ae8706400c8f0406f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e24d05bc6b244ae8706400c8f0406f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e24d05bc6b244ae8706400c8f0406f1.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BK8XQnakzPwpUlUyGaWXdKveAio=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.650576+00 2025-12-09 10:15:56.65058+00 20345 88380#I-彩蓝42码 SPMX-20240815315588 \N \N \N 1 \N [{"file_id": "ce829013-fa56-4668-a171-a9b2b89b8e7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "079d1d56a39441eaa7d28b02421f3dfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "079d1d56a39441eaa7d28b02421f3dfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "079d1d56a39441eaa7d28b02421f3dfe.jpg", "file_size": 19123, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-彩蓝42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079d1d56a39441eaa7d28b02421f3dfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079d1d56a39441eaa7d28b02421f3dfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/079d1d56a39441eaa7d28b02421f3dfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/079d1d56a39441eaa7d28b02421f3dfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/079d1d56a39441eaa7d28b02421f3dfe.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gZyH3q5pJhQWIErv4q-UFIBEB5k=", "createTime": "2024-08-15 15:08:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.653313+00 2025-12-09 10:15:56.653317+00 20346 JY-AD-203#8号墨绿底多色叶子 SPMX-20240815315587 \N \N \N 1 \N [{"file_id": "f9454c81-5fe2-47fe-b2ad-53adefc44d27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2edc32cdbd14497d90e37a6016c08376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2edc32cdbd14497d90e37a6016c08376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2edc32cdbd14497d90e37a6016c08376.jpg", "file_size": 24852, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-203#8号墨绿底多色叶子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edc32cdbd14497d90e37a6016c08376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edc32cdbd14497d90e37a6016c08376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2edc32cdbd14497d90e37a6016c08376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2edc32cdbd14497d90e37a6016c08376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2edc32cdbd14497d90e37a6016c08376.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xnR_IDRwKKu_IjzseTqazMoanvo=", "createTime": "2024-08-15 15:08:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.656092+00 2025-12-09 10:15:56.656096+00 20347 003#童4T码番禺调色 SPMX-20240815315590 \N \N \N 1 \N [{"file_id": "e415d9c0-805e-4c66-90bb-ceb8f6e47855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg", "file_size": 10847, "is_delete": false, "file_type": 1, "original_file_name": "003#童4T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13fedf6c9a394bfd8d0b5dd8c8cbc8b5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C-j0mTltsgk4QzL7CWDGzHOIzUA=", "createTime": "2024-08-15 15:08:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.658893+00 2025-12-09 10:15:56.658897+00 20348 LJH2106#黄色 SPMX-20240815315589 \N \N \N 1 \N [{"file_id": "8e71631d-afd5-4bd8-be11-8a0b2bae3603", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5949e5b736da4ba7b176c5d920609829.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5949e5b736da4ba7b176c5d920609829.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5949e5b736da4ba7b176c5d920609829.jpg", "file_size": 57850, "is_delete": false, "file_type": 1, "original_file_name": "LJH2106#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5949e5b736da4ba7b176c5d920609829.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5949e5b736da4ba7b176c5d920609829.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5949e5b736da4ba7b176c5d920609829.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5949e5b736da4ba7b176c5d920609829.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5949e5b736da4ba7b176c5d920609829.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jm-Nz7bEW6vKxKwdTGz3A9KEk2o=", "createTime": "2024-08-15 15:08:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.661622+00 2025-12-09 10:15:56.661627+00 20349 HXF001#XL蓝VS-D3 SPMX-20240815315591 \N \N \N 1 \N [{"file_id": "e7b297db-1b5c-499f-954c-246f53da28f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56915329950f4d4da1e5a650381cb0f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56915329950f4d4da1e5a650381cb0f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56915329950f4d4da1e5a650381cb0f5.jpg", "file_size": 14553, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#XL蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56915329950f4d4da1e5a650381cb0f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56915329950f4d4da1e5a650381cb0f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56915329950f4d4da1e5a650381cb0f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56915329950f4d4da1e5a650381cb0f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56915329950f4d4da1e5a650381cb0f5.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mYbBZQgSwgW0OGpK6QJPJF6obpk=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.664536+00 2025-12-09 10:15:56.664541+00 20350 124#-白色 SPMX-20240815315595 \N \N \N 1 \N [{"file_id": "eadb461e-52fe-4e9d-9d26-fd6f4bc8061b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dab6438c75cf4e0f8d0490857ef42db3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dab6438c75cf4e0f8d0490857ef42db3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dab6438c75cf4e0f8d0490857ef42db3.jpg", "file_size": 47110, "is_delete": false, "file_type": 1, "original_file_name": "124#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab6438c75cf4e0f8d0490857ef42db3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab6438c75cf4e0f8d0490857ef42db3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dab6438c75cf4e0f8d0490857ef42db3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dab6438c75cf4e0f8d0490857ef42db3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dab6438c75cf4e0f8d0490857ef42db3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1y3ygqakV34VaifAivS3rsQPeck=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.670379+00 2025-12-09 10:15:56.670384+00 20352 88380#I-彩蓝44码 SPMX-20240815315597 \N \N \N 1 \N [{"file_id": "72a94cb9-814f-4c70-9984-f83d3f5007af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b19e75f487b0471bbb8f0cde16312ce3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b19e75f487b0471bbb8f0cde16312ce3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b19e75f487b0471bbb8f0cde16312ce3.jpg", "file_size": 19405, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-彩蓝44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e75f487b0471bbb8f0cde16312ce3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e75f487b0471bbb8f0cde16312ce3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b19e75f487b0471bbb8f0cde16312ce3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b19e75f487b0471bbb8f0cde16312ce3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b19e75f487b0471bbb8f0cde16312ce3.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrLbA6Jr47Jmxkt8HmtI6JXe9pU=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.67324+00 2025-12-09 10:15:56.673244+00 20353 LZ1414#童装T4号色 SPMX-20240815315593 \N \N \N 1 \N [{"file_id": "d405a14b-1147-4f9e-8687-fb6d0355df0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44e948ea770a42e5aaff6d55b8e0116d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44e948ea770a42e5aaff6d55b8e0116d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44e948ea770a42e5aaff6d55b8e0116d.jpg", "file_size": 25396, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e948ea770a42e5aaff6d55b8e0116d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e948ea770a42e5aaff6d55b8e0116d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44e948ea770a42e5aaff6d55b8e0116d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44e948ea770a42e5aaff6d55b8e0116d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44e948ea770a42e5aaff6d55b8e0116d.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gHjGbU64E2AvupH28diyXQ7o0gY=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.676026+00 2025-12-09 10:15:56.67603+00 20354 DL小米粒#格子绿 SPMX-20240815315592 \N \N \N 1 \N [{"file_id": "e49d47df-19b0-4891-9df6-21b5389030df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d2f02b214d546f39d69dfc2204df701.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d2f02b214d546f39d69dfc2204df701.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d2f02b214d546f39d69dfc2204df701.jpg", "file_size": 13395, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2f02b214d546f39d69dfc2204df701.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2f02b214d546f39d69dfc2204df701.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d2f02b214d546f39d69dfc2204df701.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d2f02b214d546f39d69dfc2204df701.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d2f02b214d546f39d69dfc2204df701.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IpSIoF4om7I2EnObKyKlTr4Pd4Q=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.678825+00 2025-12-09 10:15:56.67883+00 20355 JY-AD-207#1号白底蓝色2XL SPMX-20240815315594 \N \N \N 1 \N [{"file_id": "0ffd57d5-d615-4179-83ba-95acf638e079", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "137b2e3125d84fac8739d28ab3df41a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "137b2e3125d84fac8739d28ab3df41a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "137b2e3125d84fac8739d28ab3df41a8.jpg", "file_size": 24174, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137b2e3125d84fac8739d28ab3df41a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137b2e3125d84fac8739d28ab3df41a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/137b2e3125d84fac8739d28ab3df41a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/137b2e3125d84fac8739d28ab3df41a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/137b2e3125d84fac8739d28ab3df41a8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TehawyXPatBQ26LJdMScwoXJY2E=", "createTime": "2024-08-15 15:08:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.681883+00 2025-12-09 10:15:56.681889+00 20356 DL小米粒#格子蓝 SPMX-20240815315610 \N \N \N 1 \N [{"file_id": "d117b09c-aecb-445f-b4b8-dbcdda0259ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7039f2c3fe140ba86145e23f75424a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7039f2c3fe140ba86145e23f75424a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7039f2c3fe140ba86145e23f75424a8.jpg", "file_size": 15072, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7039f2c3fe140ba86145e23f75424a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7039f2c3fe140ba86145e23f75424a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7039f2c3fe140ba86145e23f75424a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7039f2c3fe140ba86145e23f75424a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7039f2c3fe140ba86145e23f75424a8.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nRj-yuQVGHiCJ9o0P_X6IOcK5xY=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.685406+00 2025-12-09 10:15:56.685412+00 20357 DL小米粒#格子绿净色 SPMX-20240815315603 \N \N \N 1 \N [{"file_id": "c4e0e104-ed91-4a7f-a44d-f2f7f29254f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ef3720683ee4507ae9c07883fd824b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ef3720683ee4507ae9c07883fd824b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ef3720683ee4507ae9c07883fd824b7.jpg", "file_size": 14591, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef3720683ee4507ae9c07883fd824b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef3720683ee4507ae9c07883fd824b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ef3720683ee4507ae9c07883fd824b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ef3720683ee4507ae9c07883fd824b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ef3720683ee4507ae9c07883fd824b7.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8dyQcWn0rdcECRI0Xw_6uUiWrVk=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.688768+00 2025-12-09 10:15:56.688776+00 20358 124#-黑色 SPMX-20240815315607 \N \N \N 1 \N [{"file_id": "ccf60d05-9333-46b6-b608-9810f1175f22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db1da5cd8e6d467dbf3d1393840ff92c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db1da5cd8e6d467dbf3d1393840ff92c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db1da5cd8e6d467dbf3d1393840ff92c.jpg", "file_size": 48741, "is_delete": false, "file_type": 1, "original_file_name": "124#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1da5cd8e6d467dbf3d1393840ff92c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1da5cd8e6d467dbf3d1393840ff92c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db1da5cd8e6d467dbf3d1393840ff92c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db1da5cd8e6d467dbf3d1393840ff92c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db1da5cd8e6d467dbf3d1393840ff92c.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xe2Y9fmq8a0_U6eG9mO3HLkSoGM=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.692035+00 2025-12-09 10:15:56.692041+00 20359 LJH2408#桔色 SPMX-20240815315609 \N \N \N 1 \N [{"file_id": "2567688b-3d9c-40c2-8efc-499f7e73b3cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a71aacdfeb8648cd934b7c9f4ea498c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a71aacdfeb8648cd934b7c9f4ea498c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a71aacdfeb8648cd934b7c9f4ea498c6.jpg", "file_size": 42715, "is_delete": false, "file_type": 1, "original_file_name": "LJH2408#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71aacdfeb8648cd934b7c9f4ea498c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71aacdfeb8648cd934b7c9f4ea498c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a71aacdfeb8648cd934b7c9f4ea498c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a71aacdfeb8648cd934b7c9f4ea498c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a71aacdfeb8648cd934b7c9f4ea498c6.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXHO3sCDLQE_L0NLfdJ_lqhZ-wg=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.6953+00 2025-12-09 10:15:56.695306+00 20360 HXF001#蓝 SPMX-20240815315612 \N \N \N 1 \N [{"file_id": "37b15cfb-da3e-43ac-8ef0-6eaad8af501e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ba4fa285a34a7cb95c255c6d515f81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ba4fa285a34a7cb95c255c6d515f81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ba4fa285a34a7cb95c255c6d515f81.jpg", "file_size": 18224, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba4fa285a34a7cb95c255c6d515f81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba4fa285a34a7cb95c255c6d515f81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ba4fa285a34a7cb95c255c6d515f81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ba4fa285a34a7cb95c255c6d515f81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ba4fa285a34a7cb95c255c6d515f81.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZShvvVX_78KZwrFx2HuzrnR3vFM=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.698554+00 2025-12-09 10:15:56.69856+00 20361 240390#-02-5-2XL码 SPMX-20240815315600 \N \N \N 1 \N [{"file_id": "82024df8-1a28-486b-b4e7-ea6bed11330f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac0cb2af0fa14a9aad69402d53728423.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac0cb2af0fa14a9aad69402d53728423.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac0cb2af0fa14a9aad69402d53728423.jpg", "file_size": 62900, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-5-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0cb2af0fa14a9aad69402d53728423.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0cb2af0fa14a9aad69402d53728423.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac0cb2af0fa14a9aad69402d53728423.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac0cb2af0fa14a9aad69402d53728423.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac0cb2af0fa14a9aad69402d53728423.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jS4PG_Wep8mvKBhS7EQwHzrXQbQ=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.701886+00 2025-12-09 10:15:56.701892+00 20362 JY-AD-207#1号白底蓝色3XL SPMX-20240815315604 \N \N \N 1 \N [{"file_id": "63210cd2-8b66-413f-8463-42665d37a72c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg", "file_size": 23882, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bbbf8fec90d46fc80c7c9f61ca9d0a4.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zltQ2guLs6ft4d5Nfwp12uPQduk=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.705079+00 2025-12-09 10:15:56.705086+00 20363 003#童5T码番禺调色 SPMX-20240815315601 \N \N \N 1 \N [{"file_id": "8f25d459-e499-4bae-a36f-eef2e97b0906", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e1ff944570f4f41aeb6edb65207b5e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e1ff944570f4f41aeb6edb65207b5e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e1ff944570f4f41aeb6edb65207b5e2.jpg", "file_size": 15735, "is_delete": false, "file_type": 1, "original_file_name": "003#童5T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1ff944570f4f41aeb6edb65207b5e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1ff944570f4f41aeb6edb65207b5e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e1ff944570f4f41aeb6edb65207b5e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e1ff944570f4f41aeb6edb65207b5e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e1ff944570f4f41aeb6edb65207b5e2.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hIzHT5Z5pntrBfm7TvlYg8WPyuU=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.708385+00 2025-12-09 10:15:56.708391+00 20364 LZ1414#童装T5号色 SPMX-20240815315606 \N \N \N 1 \N [{"file_id": "6a49e100-36fe-4e3d-b3c8-1b5057531bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec8523cb2d0d4264b5b5da1f26525f5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec8523cb2d0d4264b5b5da1f26525f5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec8523cb2d0d4264b5b5da1f26525f5a.jpg", "file_size": 24600, "is_delete": false, "file_type": 1, "original_file_name": "LZ1414#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8523cb2d0d4264b5b5da1f26525f5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8523cb2d0d4264b5b5da1f26525f5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec8523cb2d0d4264b5b5da1f26525f5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec8523cb2d0d4264b5b5da1f26525f5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec8523cb2d0d4264b5b5da1f26525f5a.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iIIj9uDwd-yk5qGLiHzOj4wP878=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:56.711801+00 2025-12-09 10:15:56.711807+00 20365 HXF001#红 SPMX-20240815315602 \N \N \N 1 \N [{"file_id": "e1b017c8-5d6a-4857-8906-ae92e22c158c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1939b7fa2f4c48359348b66ac74d4641.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1939b7fa2f4c48359348b66ac74d4641.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1939b7fa2f4c48359348b66ac74d4641.jpg", "file_size": 16996, "is_delete": false, "file_type": 1, "original_file_name": "HXF001#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1939b7fa2f4c48359348b66ac74d4641.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1939b7fa2f4c48359348b66ac74d4641.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1939b7fa2f4c48359348b66ac74d4641.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1939b7fa2f4c48359348b66ac74d4641.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1939b7fa2f4c48359348b66ac74d4641.jpg?e=1765361755&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NT28G_Y07NBai1S7-W7HfQp8MjY=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.392048+00 2025-12-09 10:15:57.39206+00 20366 CH09304FWD#橙粉色XL SPMX-20240815315611 \N \N \N 1 \N [{"file_id": "41619f3e-ca82-4e2e-b8a7-adb8bdccab28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f95a4658c664b87991aa01d46cd3257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f95a4658c664b87991aa01d46cd3257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f95a4658c664b87991aa01d46cd3257.jpg", "file_size": 14339, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#橙粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f95a4658c664b87991aa01d46cd3257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f95a4658c664b87991aa01d46cd3257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f95a4658c664b87991aa01d46cd3257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f95a4658c664b87991aa01d46cd3257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f95a4658c664b87991aa01d46cd3257.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_H57tIBXhORYZGIfEVGBnFj_9m8=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.397224+00 2025-12-09 10:15:57.397236+00 20367 88380#I-彩蓝46码 SPMX-20240815315608 \N \N \N 1 \N [{"file_id": "e915cd7d-6d83-4377-a42e-21501df37d94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35b927f0745f4613af80030fec1ace3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35b927f0745f4613af80030fec1ace3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35b927f0745f4613af80030fec1ace3b.jpg", "file_size": 19759, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-彩蓝46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b927f0745f4613af80030fec1ace3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b927f0745f4613af80030fec1ace3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35b927f0745f4613af80030fec1ace3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35b927f0745f4613af80030fec1ace3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35b927f0745f4613af80030fec1ace3b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KicHuK3ZB8UAKYTA7DbRMvgktjA=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.401275+00 2025-12-09 10:15:57.401282+00 20368 CH09304FWD#橙粉色S SPMX-20240815315599 \N \N \N 1 \N [{"file_id": "d5784a87-d084-4954-a0bc-add90b0f9e4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c748a0e21c804be384f76e3db9679a48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c748a0e21c804be384f76e3db9679a48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c748a0e21c804be384f76e3db9679a48.jpg", "file_size": 13502, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#橙粉色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c748a0e21c804be384f76e3db9679a48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c748a0e21c804be384f76e3db9679a48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c748a0e21c804be384f76e3db9679a48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c748a0e21c804be384f76e3db9679a48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c748a0e21c804be384f76e3db9679a48.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Urzm_svTI_v4o2U7vl-bLmV2NNg=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.40464+00 2025-12-09 10:15:57.404645+00 20369 LJH2408#宝蓝色 SPMX-20240815315598 \N \N \N 1 \N [{"file_id": "5f8fe842-b889-46ef-9799-e7d2557abb83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a59adb763534649a617529dbffde360.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a59adb763534649a617529dbffde360.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a59adb763534649a617529dbffde360.jpg", "file_size": 40411, "is_delete": false, "file_type": 1, "original_file_name": "LJH2408#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a59adb763534649a617529dbffde360.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a59adb763534649a617529dbffde360.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a59adb763534649a617529dbffde360.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a59adb763534649a617529dbffde360.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a59adb763534649a617529dbffde360.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M2XWsVaZU_N9zdlvRZD-fRSqi2w=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.408048+00 2025-12-09 10:15:57.408055+00 20370 FX003# SPMX-20240815315605 \N \N \N 1 \N [{"file_id": "f10b43fa-3825-4caa-9055-c020ce1f4e7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "392fc3da34bc45529d376e289decf097.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "392fc3da34bc45529d376e289decf097.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "392fc3da34bc45529d376e289decf097.jpg", "file_size": 9916, "is_delete": false, "file_type": 1, "original_file_name": "FX003#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392fc3da34bc45529d376e289decf097.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392fc3da34bc45529d376e289decf097.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/392fc3da34bc45529d376e289decf097.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/392fc3da34bc45529d376e289decf097.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/392fc3da34bc45529d376e289decf097.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q862nzOKe9KDZouhzMTHIjLgtPE=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.411364+00 2025-12-09 10:15:57.411371+00 20371 JY-AD-207#1号白底蓝色L SPMX-20240815315615 \N \N \N 1 \N [{"file_id": "a9ca559f-e966-439c-80b1-758c58044cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3df416e2bc1343a6b3f5dd63a6e8d067.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3df416e2bc1343a6b3f5dd63a6e8d067.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3df416e2bc1343a6b3f5dd63a6e8d067.jpg", "file_size": 26022, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df416e2bc1343a6b3f5dd63a6e8d067.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df416e2bc1343a6b3f5dd63a6e8d067.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3df416e2bc1343a6b3f5dd63a6e8d067.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3df416e2bc1343a6b3f5dd63a6e8d067.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3df416e2bc1343a6b3f5dd63a6e8d067.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wfq7ry6KJLziclZasOgXF_xLn64=", "createTime": "2024-08-15 15:08:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.414627+00 2025-12-09 10:15:57.414633+00 20372 LZ1415#童装T1号色 SPMX-20240815315616 \N \N \N 1 \N [{"file_id": "5dceb90f-3d2a-4f5b-b109-7c0490200f90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e07688ea5f834ad3a637bd4168ba46cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e07688ea5f834ad3a637bd4168ba46cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e07688ea5f834ad3a637bd4168ba46cb.jpg", "file_size": 21856, "is_delete": false, "file_type": 1, "original_file_name": "LZ1415#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07688ea5f834ad3a637bd4168ba46cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07688ea5f834ad3a637bd4168ba46cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07688ea5f834ad3a637bd4168ba46cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e07688ea5f834ad3a637bd4168ba46cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e07688ea5f834ad3a637bd4168ba46cb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4M4MfU9iKvVHH8pP0xn5qsC9DtE=", "createTime": "2024-08-15 15:08:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.417968+00 2025-12-09 10:15:57.417975+00 20373 FX003#D SPMX-20240815315617 \N \N \N 1 \N [{"file_id": "a45af080-979a-43a6-b3a6-1d75fbc6b11b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ae83898d6f042d7b5fb21931415068f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ae83898d6f042d7b5fb21931415068f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ae83898d6f042d7b5fb21931415068f.jpg", "file_size": 8787, "is_delete": false, "file_type": 1, "original_file_name": "FX003#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae83898d6f042d7b5fb21931415068f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae83898d6f042d7b5fb21931415068f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ae83898d6f042d7b5fb21931415068f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ae83898d6f042d7b5fb21931415068f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ae83898d6f042d7b5fb21931415068f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-D6WMK4PVEarDbMmgbPswtJXBcw=", "createTime": "2024-08-15 15:08:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.421403+00 2025-12-09 10:15:57.42141+00 20374 88380#I-彩蓝48码 SPMX-20240815315618 \N \N \N 1 \N [{"file_id": "686d9447-e7a4-4e57-bf06-64cd231b4316", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58d94e4a6b99409985fd061e587725bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58d94e4a6b99409985fd061e587725bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58d94e4a6b99409985fd061e587725bd.jpg", "file_size": 19627, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-彩蓝48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d94e4a6b99409985fd061e587725bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d94e4a6b99409985fd061e587725bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58d94e4a6b99409985fd061e587725bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58d94e4a6b99409985fd061e587725bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58d94e4a6b99409985fd061e587725bd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eTNiq4jMLXao1tzq-2kBT3ASC5k=", "createTime": "2024-08-15 15:08:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.424753+00 2025-12-09 10:15:57.424761+00 20375 240390#-02-5-3XL码 SPMX-20240815315614 \N \N \N 1 \N [{"file_id": "9a259ed2-62fb-48ad-b3a2-c84b5f0bd19c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b059acab4ac341218ffcfae94dece95e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b059acab4ac341218ffcfae94dece95e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b059acab4ac341218ffcfae94dece95e.jpg", "file_size": 62773, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-5-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b059acab4ac341218ffcfae94dece95e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b059acab4ac341218ffcfae94dece95e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b059acab4ac341218ffcfae94dece95e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b059acab4ac341218ffcfae94dece95e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b059acab4ac341218ffcfae94dece95e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:76M7ymfL4TGvB5sREt7j2lDbPtg=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.428312+00 2025-12-09 10:15:57.42832+00 20376 003#童6T码番禺调色 SPMX-20240815315613 \N \N \N 1 \N [{"file_id": "129e1567-7032-456b-8a89-698cd495e6e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbbae4c81a4442579596be92813b3c85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbbae4c81a4442579596be92813b3c85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbbae4c81a4442579596be92813b3c85.jpg", "file_size": 15842, "is_delete": false, "file_type": 1, "original_file_name": "003#童6T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbae4c81a4442579596be92813b3c85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbae4c81a4442579596be92813b3c85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbae4c81a4442579596be92813b3c85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbbae4c81a4442579596be92813b3c85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbbae4c81a4442579596be92813b3c85.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HJpzZhDy7T58Xqcfzh1tJSPCT6Y=", "createTime": "2024-08-15 15:08:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.431849+00 2025-12-09 10:15:57.431856+00 20377 1240#红色 SPMX-20240815315619 \N \N \N 1 \N [{"file_id": "60d80045-5edc-4152-b730-5b567557bb1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8fbc8b842a84be59d1dd92683b47e23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8fbc8b842a84be59d1dd92683b47e23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8fbc8b842a84be59d1dd92683b47e23.jpg", "file_size": 10095, "is_delete": false, "file_type": 1, "original_file_name": "1240#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbc8b842a84be59d1dd92683b47e23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbc8b842a84be59d1dd92683b47e23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8fbc8b842a84be59d1dd92683b47e23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8fbc8b842a84be59d1dd92683b47e23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8fbc8b842a84be59d1dd92683b47e23.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PcsBfDJzWRl4yX4SvF8Qkd2Vcmc=", "createTime": "2024-08-15 15:08:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.434898+00 2025-12-09 10:15:57.434903+00 20378 DL小米粒#格子蓝净色 SPMX-20240815315620 \N \N \N 1 \N [{"file_id": "f45d8ee9-9030-4a51-94bf-746a77ce2bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5cdb1450d5146b4af048e205380001e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5cdb1450d5146b4af048e205380001e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5cdb1450d5146b4af048e205380001e.jpg", "file_size": 13515, "is_delete": false, "file_type": 1, "original_file_name": "DL小米粒#格子蓝净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cdb1450d5146b4af048e205380001e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cdb1450d5146b4af048e205380001e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5cdb1450d5146b4af048e205380001e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5cdb1450d5146b4af048e205380001e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5cdb1450d5146b4af048e205380001e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRZP0XkXiUr_q6bYwqmJotjZodA=", "createTime": "2024-08-15 15:08:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.437792+00 2025-12-09 10:15:57.437797+00 20379 JY-AD-207#1号白底蓝色M SPMX-20240815315630 \N \N \N 1 \N [{"file_id": "fd13fd14-174d-4bef-abb6-0e9fbeb8afa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5e678ffa4244a1bb2280a873baec5cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5e678ffa4244a1bb2280a873baec5cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5e678ffa4244a1bb2280a873baec5cd.jpg", "file_size": 26781, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e678ffa4244a1bb2280a873baec5cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e678ffa4244a1bb2280a873baec5cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5e678ffa4244a1bb2280a873baec5cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5e678ffa4244a1bb2280a873baec5cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5e678ffa4244a1bb2280a873baec5cd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AFHIzMgpc-mW4aWP3XRR6_Lz8ps=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.440631+00 2025-12-09 10:15:57.440635+00 20380 1240#绿色 SPMX-20240815315629 \N \N \N 1 \N [{"file_id": "7b3c405f-d473-4398-9be0-4afbf0ad2836", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e626709e0da7473bb8eb560c724e99a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e626709e0da7473bb8eb560c724e99a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e626709e0da7473bb8eb560c724e99a6.jpg", "file_size": 9772, "is_delete": false, "file_type": 1, "original_file_name": "1240#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e626709e0da7473bb8eb560c724e99a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e626709e0da7473bb8eb560c724e99a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e626709e0da7473bb8eb560c724e99a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e626709e0da7473bb8eb560c724e99a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e626709e0da7473bb8eb560c724e99a6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9NLNORuQ5dMKt-OM26h45KPv44=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.44348+00 2025-12-09 10:15:57.443485+00 20381 LJH2408#梅红色 SPMX-20240815315622 \N \N \N 1 \N [{"file_id": "1beee827-24db-4182-ba8c-53adcdf03586", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7726ffb1c8248bf960842bf61d896ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7726ffb1c8248bf960842bf61d896ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7726ffb1c8248bf960842bf61d896ff.jpg", "file_size": 40715, "is_delete": false, "file_type": 1, "original_file_name": "LJH2408#梅红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7726ffb1c8248bf960842bf61d896ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7726ffb1c8248bf960842bf61d896ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7726ffb1c8248bf960842bf61d896ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7726ffb1c8248bf960842bf61d896ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7726ffb1c8248bf960842bf61d896ff.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_3VRM6GtkBHRsGZ6Z_8RPgBptfo=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.446307+00 2025-12-09 10:15:57.446312+00 20382 CH09304FWD#橙粉色XS SPMX-20240815315623 \N \N \N 1 \N [{"file_id": "a4743118-2996-4808-bde5-80095ca250f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f34d39ba2294434a3cb78250220a5b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f34d39ba2294434a3cb78250220a5b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f34d39ba2294434a3cb78250220a5b7.jpg", "file_size": 13371, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#橙粉色XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34d39ba2294434a3cb78250220a5b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34d39ba2294434a3cb78250220a5b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f34d39ba2294434a3cb78250220a5b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f34d39ba2294434a3cb78250220a5b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f34d39ba2294434a3cb78250220a5b7.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkl3tR0HqRbpT9MMXbZk5MQT1g0=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.449102+00 2025-12-09 10:15:57.449106+00 20383 LZ1415#童装T2号色 SPMX-20240815315625 \N \N \N 1 \N [{"file_id": "a3f4d539-9eee-42d3-bd32-50a77fd522a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6632acc3c6414306b3b7377629a52ae7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6632acc3c6414306b3b7377629a52ae7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6632acc3c6414306b3b7377629a52ae7.jpg", "file_size": 22179, "is_delete": false, "file_type": 1, "original_file_name": "LZ1415#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6632acc3c6414306b3b7377629a52ae7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6632acc3c6414306b3b7377629a52ae7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6632acc3c6414306b3b7377629a52ae7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6632acc3c6414306b3b7377629a52ae7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6632acc3c6414306b3b7377629a52ae7.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:184P7cnXVBM55_YsYhm9okvG3K4=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.451905+00 2025-12-09 10:15:57.451909+00 20384 FX003#杏底 SPMX-20240815315628 \N \N \N 1 \N [{"file_id": "24e95b2b-642b-4c4f-a380-7f5c2bc9b688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e784883edb314b998ff1f7c2bd9ffe0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e784883edb314b998ff1f7c2bd9ffe0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e784883edb314b998ff1f7c2bd9ffe0f.jpg", "file_size": 14348, "is_delete": false, "file_type": 1, "original_file_name": "FX003#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e784883edb314b998ff1f7c2bd9ffe0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e784883edb314b998ff1f7c2bd9ffe0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e784883edb314b998ff1f7c2bd9ffe0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e784883edb314b998ff1f7c2bd9ffe0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e784883edb314b998ff1f7c2bd9ffe0f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:13DvBlYkUyi3b7FrgNjqJVuwIKs=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.454714+00 2025-12-09 10:15:57.454719+00 20385 240390#-02-6-2XL码 SPMX-20240815315624 \N \N \N 1 \N [{"file_id": "fa547f2f-c982-410e-9d65-bd4da4a7ccb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "295a5cbf8b3f4672b0c01b087b588480.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "295a5cbf8b3f4672b0c01b087b588480.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "295a5cbf8b3f4672b0c01b087b588480.jpg", "file_size": 60013, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-6-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295a5cbf8b3f4672b0c01b087b588480.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295a5cbf8b3f4672b0c01b087b588480.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/295a5cbf8b3f4672b0c01b087b588480.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/295a5cbf8b3f4672b0c01b087b588480.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/295a5cbf8b3f4672b0c01b087b588480.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4dAS-h7pa8qzELt51RNQoURte0=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.457416+00 2025-12-09 10:15:57.457421+00 20386 003#童8T码番禺调色 SPMX-20240815315626 \N \N \N 1 \N [{"file_id": "1035e3cd-2fbd-4b19-be57-e6bd45f53c36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ae39ae8e5af4f9a92310be8207268e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ae39ae8e5af4f9a92310be8207268e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ae39ae8e5af4f9a92310be8207268e2.jpg", "file_size": 12012, "is_delete": false, "file_type": 1, "original_file_name": "003#童8T码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae39ae8e5af4f9a92310be8207268e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae39ae8e5af4f9a92310be8207268e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ae39ae8e5af4f9a92310be8207268e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ae39ae8e5af4f9a92310be8207268e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ae39ae8e5af4f9a92310be8207268e2.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P9fxyMdlOiaivkXvXrHNN0IInns=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.460189+00 2025-12-09 10:15:57.460193+00 20387 HXF001FW#VS-D3 SPMX-20240815315627 \N \N \N 1 \N [{"file_id": "a76d1737-1e9d-492f-ab54-6a56445f45ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94358304e5c147a6b275adcafe7f9d42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94358304e5c147a6b275adcafe7f9d42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94358304e5c147a6b275adcafe7f9d42.jpg", "file_size": 29713, "is_delete": false, "file_type": 1, "original_file_name": "HXF001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94358304e5c147a6b275adcafe7f9d42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94358304e5c147a6b275adcafe7f9d42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94358304e5c147a6b275adcafe7f9d42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94358304e5c147a6b275adcafe7f9d42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94358304e5c147a6b275adcafe7f9d42.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FLpPMeRtpSQlSU1a8Yz35gkpHn8=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.463323+00 2025-12-09 10:15:57.463328+00 20388 DM001FW#粉底 SPMX-20240815315631 \N \N \N 1 \N [{"file_id": "346dfeba-6d28-4efb-9cbd-b76ad62fdefd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31e5a8105c9344d98a4ce1952c0c4588.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31e5a8105c9344d98a4ce1952c0c4588.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31e5a8105c9344d98a4ce1952c0c4588.jpg", "file_size": 13548, "is_delete": false, "file_type": 1, "original_file_name": "DM001FW#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e5a8105c9344d98a4ce1952c0c4588.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e5a8105c9344d98a4ce1952c0c4588.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e5a8105c9344d98a4ce1952c0c4588.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31e5a8105c9344d98a4ce1952c0c4588.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31e5a8105c9344d98a4ce1952c0c4588.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oE1qjlmtXRnxZrf0-e8F6FA-n9E=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.466489+00 2025-12-09 10:15:57.466493+00 20389 88380#I-彩蓝50码 SPMX-20240815315621 \N \N \N 1 \N [{"file_id": "33992fc1-47e6-4dbb-b608-70a72b2b041a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e8630e18aa4d6a91da89c74b80e509.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e8630e18aa4d6a91da89c74b80e509.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e8630e18aa4d6a91da89c74b80e509.jpg", "file_size": 20020, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-彩蓝50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e8630e18aa4d6a91da89c74b80e509.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e8630e18aa4d6a91da89c74b80e509.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e8630e18aa4d6a91da89c74b80e509.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e8630e18aa4d6a91da89c74b80e509.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e8630e18aa4d6a91da89c74b80e509.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3ftfgKz5s9Tz54wL3q0VE5Rdkwg=", "createTime": "2024-08-15 15:08:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.46965+00 2025-12-09 10:15:57.469654+00 20390 88380#I-水绿42码 SPMX-20240815315632 \N \N \N 1 \N [{"file_id": "98f49ede-8b43-4aa5-85b7-02e2c96d5d30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bc683ed6392435e9fcd7ebc510ccc83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bc683ed6392435e9fcd7ebc510ccc83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bc683ed6392435e9fcd7ebc510ccc83.jpg", "file_size": 18779, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-水绿42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc683ed6392435e9fcd7ebc510ccc83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc683ed6392435e9fcd7ebc510ccc83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc683ed6392435e9fcd7ebc510ccc83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bc683ed6392435e9fcd7ebc510ccc83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bc683ed6392435e9fcd7ebc510ccc83.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t1TGhzqMMEbBR-noQ0cM0srXsmo=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.472725+00 2025-12-09 10:15:57.472729+00 20391 003#绿色 SPMX-20240815315637 \N \N \N 1 \N [{"file_id": "f311e119-7826-4ce5-b435-ef41543923ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8b04be0b46143eea744eb51bad71045.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8b04be0b46143eea744eb51bad71045.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8b04be0b46143eea744eb51bad71045.jpg", "file_size": 16563, "is_delete": false, "file_type": 1, "original_file_name": "003#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b04be0b46143eea744eb51bad71045.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b04be0b46143eea744eb51bad71045.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8b04be0b46143eea744eb51bad71045.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8b04be0b46143eea744eb51bad71045.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8b04be0b46143eea744eb51bad71045.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8J3n-JZTnxgulxv0coXRhtGm_AU=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.475845+00 2025-12-09 10:15:57.47585+00 20392 FX003#白底黑点 SPMX-20240815315638 \N \N \N 1 \N [{"file_id": "1faa5ea6-d21f-4171-872f-3b28b59c766f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f37b50141e4683927c3a9a64633d43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f37b50141e4683927c3a9a64633d43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f37b50141e4683927c3a9a64633d43.jpg", "file_size": 18004, "is_delete": false, "file_type": 1, "original_file_name": "FX003#白底黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f37b50141e4683927c3a9a64633d43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f37b50141e4683927c3a9a64633d43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f37b50141e4683927c3a9a64633d43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f37b50141e4683927c3a9a64633d43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f37b50141e4683927c3a9a64633d43.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:exeiaMhievfR7WZoDwWaGkiLx1c=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.478934+00 2025-12-09 10:15:57.478938+00 20393 240390#-02-6-3XL码 SPMX-20240815315633 \N \N \N 1 \N [{"file_id": "0425bb3d-49fb-4a33-8122-5a26d6987583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f172713756964c488c95f22cc0d5e6ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f172713756964c488c95f22cc0d5e6ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f172713756964c488c95f22cc0d5e6ff.jpg", "file_size": 58601, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-6-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f172713756964c488c95f22cc0d5e6ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f172713756964c488c95f22cc0d5e6ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f172713756964c488c95f22cc0d5e6ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f172713756964c488c95f22cc0d5e6ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f172713756964c488c95f22cc0d5e6ff.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kUvjzZCsewDVEcrft6LEH5TU4uk=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.482005+00 2025-12-09 10:15:57.482011+00 20394 LJH2408#紫色 SPMX-20240815315636 \N \N \N 1 \N [{"file_id": "01d5dd41-f862-46ce-9418-3cd5e42c0bc5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "276ac284056e4eeca7edd9fa0fbab1f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "276ac284056e4eeca7edd9fa0fbab1f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "276ac284056e4eeca7edd9fa0fbab1f6.jpg", "file_size": 41665, "is_delete": false, "file_type": 1, "original_file_name": "LJH2408#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276ac284056e4eeca7edd9fa0fbab1f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276ac284056e4eeca7edd9fa0fbab1f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/276ac284056e4eeca7edd9fa0fbab1f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/276ac284056e4eeca7edd9fa0fbab1f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/276ac284056e4eeca7edd9fa0fbab1f6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8w83baWrU7ppGjiAds7QKAwmnhg=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.48513+00 2025-12-09 10:15:57.485134+00 20395 LZ1415#童装T3号色 SPMX-20240815315634 \N \N \N 1 \N [{"file_id": "f5ed6e8e-6ac8-4fce-94ce-6a93fcb30ca9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e07556fb62d94f718f9fce7cbf397c60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e07556fb62d94f718f9fce7cbf397c60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e07556fb62d94f718f9fce7cbf397c60.jpg", "file_size": 23199, "is_delete": false, "file_type": 1, "original_file_name": "LZ1415#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07556fb62d94f718f9fce7cbf397c60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07556fb62d94f718f9fce7cbf397c60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e07556fb62d94f718f9fce7cbf397c60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e07556fb62d94f718f9fce7cbf397c60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e07556fb62d94f718f9fce7cbf397c60.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tdk28S74TvwgR0zEjCwwO_4Bq1g=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.487977+00 2025-12-09 10:15:57.487982+00 20396 CH09304FWD#炫彩灰L SPMX-20240815315635 \N \N \N 1 \N [{"file_id": "4c6fd3f6-1c61-499a-add4-e906b36bf18b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5510219b4f849fb850180d6684edafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5510219b4f849fb850180d6684edafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5510219b4f849fb850180d6684edafd.jpg", "file_size": 13533, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩灰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5510219b4f849fb850180d6684edafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5510219b4f849fb850180d6684edafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5510219b4f849fb850180d6684edafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5510219b4f849fb850180d6684edafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5510219b4f849fb850180d6684edafd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i7jxJd6tp5v3zLr_fPfA8uauJts=", "createTime": "2024-08-15 15:08:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.490785+00 2025-12-09 10:15:57.49079+00 20397 DM001FW#紫底 SPMX-20240815315641 \N \N \N 1 \N [{"file_id": "9ae4b0ce-0b4f-440c-9b0b-f42e6b3e76dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af6916e7b03d4aea9192a3f2522bb959.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af6916e7b03d4aea9192a3f2522bb959.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af6916e7b03d4aea9192a3f2522bb959.jpg", "file_size": 13818, "is_delete": false, "file_type": 1, "original_file_name": "DM001FW#紫底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af6916e7b03d4aea9192a3f2522bb959.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af6916e7b03d4aea9192a3f2522bb959.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af6916e7b03d4aea9192a3f2522bb959.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af6916e7b03d4aea9192a3f2522bb959.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af6916e7b03d4aea9192a3f2522bb959.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOVGSI0rPXY1mauVpQ_TtcZLZmk=", "createTime": "2024-08-15 15:08:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.493481+00 2025-12-09 10:15:57.493485+00 20398 HXF001FW#粉VS-D3 SPMX-20240815315642 \N \N \N 1 \N [{"file_id": "91166914-caa0-4a7c-8f80-d6fbcfd686f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1feb8181a46f4c9e8493ebfc485c13f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1feb8181a46f4c9e8493ebfc485c13f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1feb8181a46f4c9e8493ebfc485c13f8.jpg", "file_size": 12756, "is_delete": false, "file_type": 1, "original_file_name": "HXF001FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feb8181a46f4c9e8493ebfc485c13f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feb8181a46f4c9e8493ebfc485c13f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1feb8181a46f4c9e8493ebfc485c13f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1feb8181a46f4c9e8493ebfc485c13f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1feb8181a46f4c9e8493ebfc485c13f8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4Ty9lCmhGpXPNFv35XIQj-xI-8=", "createTime": "2024-08-15 15:08:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.496326+00 2025-12-09 10:15:57.496332+00 20399 JY-AD-207#1号白底蓝色S SPMX-20240815315639 \N \N \N 1 \N [{"file_id": "aac7d058-b8cc-46d1-81c6-cb8a7ef77532", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07a48e850a2f4010b9cacf8130af5b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07a48e850a2f4010b9cacf8130af5b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07a48e850a2f4010b9cacf8130af5b3b.jpg", "file_size": 27163, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a48e850a2f4010b9cacf8130af5b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a48e850a2f4010b9cacf8130af5b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a48e850a2f4010b9cacf8130af5b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07a48e850a2f4010b9cacf8130af5b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07a48e850a2f4010b9cacf8130af5b3b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r_6Cgyb3c0sQ8A_Devwn-b_lI24=", "createTime": "2024-08-15 15:08:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.499813+00 2025-12-09 10:15:57.499819+00 20400 1240#蓝色 SPMX-20240815315640 \N \N \N 1 \N [{"file_id": "0863d6cc-60a1-464e-8e37-ae614c45a31d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac6cefb53669463e9e894a2a00cf771c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac6cefb53669463e9e894a2a00cf771c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac6cefb53669463e9e894a2a00cf771c.jpg", "file_size": 10111, "is_delete": false, "file_type": 1, "original_file_name": "1240#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6cefb53669463e9e894a2a00cf771c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6cefb53669463e9e894a2a00cf771c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac6cefb53669463e9e894a2a00cf771c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac6cefb53669463e9e894a2a00cf771c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac6cefb53669463e9e894a2a00cf771c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tpt0qyKpsvLvCTvVev6eL215NYM=", "createTime": "2024-08-15 15:08:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.503327+00 2025-12-09 10:15:57.503333+00 20401 FX003#黄底黑点 SPMX-20240815315648 \N \N \N 1 \N [{"file_id": "ab91dd2f-2653-41e5-a428-86383b24ff90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74feafa7f6794021b7aad2f2846b8ece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74feafa7f6794021b7aad2f2846b8ece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74feafa7f6794021b7aad2f2846b8ece.jpg", "file_size": 18855, "is_delete": false, "file_type": 1, "original_file_name": "FX003#黄底黑点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74feafa7f6794021b7aad2f2846b8ece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74feafa7f6794021b7aad2f2846b8ece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74feafa7f6794021b7aad2f2846b8ece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74feafa7f6794021b7aad2f2846b8ece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74feafa7f6794021b7aad2f2846b8ece.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1SziBydX3NtEBOZ-5tLqasmQDk0=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.506669+00 2025-12-09 10:15:57.506676+00 20402 LZ1415#童装T4号色 SPMX-20240815315649 \N \N \N 1 \N [{"file_id": "e4b08bbf-c0df-48da-80e6-65555a9e584c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg", "file_size": 22922, "is_delete": false, "file_type": 1, "original_file_name": "LZ1415#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21b2bd6f8c5e4cab8d09c2d1f9eb76ef.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rFViBRYO9I7CRWZuVnAqhl9S36s=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.509963+00 2025-12-09 10:15:57.50997+00 20403 DM001FW#黄底 SPMX-20240815315646 \N \N \N 1 \N [{"file_id": "efd25c07-1b2f-49d0-b566-0048a7523efb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5786ab6d79c0413c92cde68ccb96bf19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5786ab6d79c0413c92cde68ccb96bf19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5786ab6d79c0413c92cde68ccb96bf19.jpg", "file_size": 13901, "is_delete": false, "file_type": 1, "original_file_name": "DM001FW#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5786ab6d79c0413c92cde68ccb96bf19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5786ab6d79c0413c92cde68ccb96bf19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5786ab6d79c0413c92cde68ccb96bf19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5786ab6d79c0413c92cde68ccb96bf19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5786ab6d79c0413c92cde68ccb96bf19.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XFTF53q0B-f4JmWePy5sqBHcwMo=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.513284+00 2025-12-09 10:15:57.51329+00 20404 CH09304FWD#炫彩灰M SPMX-20240815315644 \N \N \N 1 \N [{"file_id": "dcc47d6b-70e2-4459-847e-8bd8f4b8947d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba66da314d8d43f4884e4545bff9edce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba66da314d8d43f4884e4545bff9edce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba66da314d8d43f4884e4545bff9edce.jpg", "file_size": 13659, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩灰M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66da314d8d43f4884e4545bff9edce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66da314d8d43f4884e4545bff9edce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba66da314d8d43f4884e4545bff9edce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba66da314d8d43f4884e4545bff9edce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba66da314d8d43f4884e4545bff9edce.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8w_VtKmziq7HPkmYRPWAXK7Qpo=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.516602+00 2025-12-09 10:15:57.516608+00 20405 88380#I-水绿44码 SPMX-20240815315645 \N \N \N 1 \N [{"file_id": "df1dfad3-e26d-4634-8e79-db176fb80492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b06fe7b8f4044018907d5f5ba507ed2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b06fe7b8f4044018907d5f5ba507ed2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b06fe7b8f4044018907d5f5ba507ed2.jpg", "file_size": 19073, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-水绿44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b06fe7b8f4044018907d5f5ba507ed2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b06fe7b8f4044018907d5f5ba507ed2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b06fe7b8f4044018907d5f5ba507ed2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b06fe7b8f4044018907d5f5ba507ed2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b06fe7b8f4044018907d5f5ba507ed2.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yG34djV-JMgpOjSpKisnzE06R8Y=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.519911+00 2025-12-09 10:15:57.519917+00 20406 HXF001FW#蓝VS-D3 SPMX-20240815315650 \N \N \N 1 \N [{"file_id": "489ee0ff-24ed-411c-b542-5dc6574fa545", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eee9fc05efa434881ca3c0974c936ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eee9fc05efa434881ca3c0974c936ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eee9fc05efa434881ca3c0974c936ac.jpg", "file_size": 18318, "is_delete": false, "file_type": 1, "original_file_name": "HXF001FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eee9fc05efa434881ca3c0974c936ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eee9fc05efa434881ca3c0974c936ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eee9fc05efa434881ca3c0974c936ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eee9fc05efa434881ca3c0974c936ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eee9fc05efa434881ca3c0974c936ac.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HzUTHjap2TmYmXbRqT4qERkU0OA=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.523169+00 2025-12-09 10:15:57.523175+00 20407 LJH2408#绿色 SPMX-20240815315647 \N \N \N 1 \N [{"file_id": "6affa5f7-76a2-4f2c-b2a3-8d265c4ac721", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c698868faef24037a40e4ad76d86f8c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c698868faef24037a40e4ad76d86f8c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c698868faef24037a40e4ad76d86f8c9.jpg", "file_size": 38991, "is_delete": false, "file_type": 1, "original_file_name": "LJH2408#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c698868faef24037a40e4ad76d86f8c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c698868faef24037a40e4ad76d86f8c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c698868faef24037a40e4ad76d86f8c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c698868faef24037a40e4ad76d86f8c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c698868faef24037a40e4ad76d86f8c9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ImJHGghZRTKWljCxqqaRgqctKw=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.526437+00 2025-12-09 10:15:57.526443+00 20408 003#蓝色小熊净色番禺调色 SPMX-20240815315643 \N \N \N 1 \N [{"file_id": "2c563fdf-b2d9-4726-8aca-873df6189d74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c10f945f61254f3e9a47f10d5a38e54c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c10f945f61254f3e9a47f10d5a38e54c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c10f945f61254f3e9a47f10d5a38e54c.jpg", "file_size": 8044, "is_delete": false, "file_type": 1, "original_file_name": "003#蓝色小熊净色番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10f945f61254f3e9a47f10d5a38e54c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10f945f61254f3e9a47f10d5a38e54c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c10f945f61254f3e9a47f10d5a38e54c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c10f945f61254f3e9a47f10d5a38e54c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c10f945f61254f3e9a47f10d5a38e54c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMV_pcTyIN7Qp-5T261xYY2EisE=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.529756+00 2025-12-09 10:15:57.529762+00 20409 JY-AD-207#1号白底蓝色XL SPMX-20240815315651 \N \N \N 1 \N [{"file_id": "180c9154-8941-43ee-af07-cf8962a5c9fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29a2a977e08849f9b00ab7bf0195d92f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29a2a977e08849f9b00ab7bf0195d92f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29a2a977e08849f9b00ab7bf0195d92f.jpg", "file_size": 24585, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#1号白底蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a2a977e08849f9b00ab7bf0195d92f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a2a977e08849f9b00ab7bf0195d92f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29a2a977e08849f9b00ab7bf0195d92f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29a2a977e08849f9b00ab7bf0195d92f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29a2a977e08849f9b00ab7bf0195d92f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJUkx7YD6QV7xCimxjepOsfuUUU=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.533215+00 2025-12-09 10:15:57.533221+00 20410 CH09304FWD#炫彩灰S SPMX-20240815315654 \N \N \N 1 \N [{"file_id": "28a9428d-baf2-46ca-ac83-db0e0f61514a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf947c3b6e94473ba6677a293a9febde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf947c3b6e94473ba6677a293a9febde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf947c3b6e94473ba6677a293a9febde.jpg", "file_size": 12984, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩灰S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf947c3b6e94473ba6677a293a9febde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf947c3b6e94473ba6677a293a9febde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf947c3b6e94473ba6677a293a9febde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf947c3b6e94473ba6677a293a9febde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf947c3b6e94473ba6677a293a9febde.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80Y_zxFxJRY2R13d2iaHM9CuwJA=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.536191+00 2025-12-09 10:15:57.536197+00 20411 DM001FW#黑底 SPMX-20240815315656 \N \N \N 1 \N [{"file_id": "9b5494f5-1d39-45bc-9335-2fa212bb4d14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "508bc19fa7c74cac8dd83cc34d8baf0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "508bc19fa7c74cac8dd83cc34d8baf0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "508bc19fa7c74cac8dd83cc34d8baf0c.jpg", "file_size": 14091, "is_delete": false, "file_type": 1, "original_file_name": "DM001FW#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508bc19fa7c74cac8dd83cc34d8baf0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508bc19fa7c74cac8dd83cc34d8baf0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/508bc19fa7c74cac8dd83cc34d8baf0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/508bc19fa7c74cac8dd83cc34d8baf0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/508bc19fa7c74cac8dd83cc34d8baf0c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:es3hVKokISLaQYAz_BVFta9BP_s=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.539092+00 2025-12-09 10:15:57.539097+00 20412 LZ1415#童装T5号色 SPMX-20240815315659 \N \N \N 1 \N [{"file_id": "f2b7753b-2375-473c-bbd3-caaaaa6b990a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ddfa618daa94cf7859e5c19d2685cf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ddfa618daa94cf7859e5c19d2685cf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ddfa618daa94cf7859e5c19d2685cf5.jpg", "file_size": 22472, "is_delete": false, "file_type": 1, "original_file_name": "LZ1415#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ddfa618daa94cf7859e5c19d2685cf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ddfa618daa94cf7859e5c19d2685cf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ddfa618daa94cf7859e5c19d2685cf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ddfa618daa94cf7859e5c19d2685cf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ddfa618daa94cf7859e5c19d2685cf5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lHSJyHlrQL0N_kXkgYY4zHs8Fmk=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.542006+00 2025-12-09 10:15:57.542011+00 20413 LJH25008-1#白色 SPMX-20240815315658 \N \N \N 1 \N [{"file_id": "ceed8716-f3a2-4d01-83b3-22105ee95590", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg", "file_size": 71046, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-1#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd1c97efcbe0407e8fa0ec5f9fa01e09.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDZrYytkq6Tc7teXZIgqVaNxU30=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.544895+00 2025-12-09 10:15:57.5449+00 20414 JY-AD-207#3号白底黑色2XL SPMX-20240815315660 \N \N \N 1 \N [{"file_id": "ffb3e171-f0fd-4f7c-be31-bacb679c0ba3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e5b99e882b64d17950b6f2854e647cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e5b99e882b64d17950b6f2854e647cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e5b99e882b64d17950b6f2854e647cc.jpg", "file_size": 23115, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5b99e882b64d17950b6f2854e647cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5b99e882b64d17950b6f2854e647cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5b99e882b64d17950b6f2854e647cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e5b99e882b64d17950b6f2854e647cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e5b99e882b64d17950b6f2854e647cc.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DRE0ZIC8QINdvhKF13Sn_e5M7k4=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.547946+00 2025-12-09 10:15:57.547952+00 20415 HXF002#VS-D3 SPMX-20240815315661 \N \N \N 1 \N [{"file_id": "10ba12c5-c56c-40ea-af4b-8821740e4cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e7b1c7b570d45299e024b1e83923eef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e7b1c7b570d45299e024b1e83923eef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e7b1c7b570d45299e024b1e83923eef.jpg", "file_size": 20721, "is_delete": false, "file_type": 1, "original_file_name": "HXF002#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7b1c7b570d45299e024b1e83923eef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7b1c7b570d45299e024b1e83923eef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e7b1c7b570d45299e024b1e83923eef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e7b1c7b570d45299e024b1e83923eef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e7b1c7b570d45299e024b1e83923eef.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:anwGk_mp7dFZimZ7s_IBFaV_sPE=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.551175+00 2025-12-09 10:15:57.551181+00 20416 003#黄色 SPMX-20240815315662 \N \N \N 1 \N [{"file_id": "572d5ee9-f1be-49e0-a97c-fdad9d2040e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3100a57b8bc14be58aa80792ba1dd5bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3100a57b8bc14be58aa80792ba1dd5bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3100a57b8bc14be58aa80792ba1dd5bc.jpg", "file_size": 15853, "is_delete": false, "file_type": 1, "original_file_name": "003#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3100a57b8bc14be58aa80792ba1dd5bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3100a57b8bc14be58aa80792ba1dd5bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3100a57b8bc14be58aa80792ba1dd5bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3100a57b8bc14be58aa80792ba1dd5bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3100a57b8bc14be58aa80792ba1dd5bc.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:03ae79wAGvPW6w1esbgIf_g9muE=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.554441+00 2025-12-09 10:15:57.554448+00 20417 1240#黄色 SPMX-20240815315652 \N \N \N 1 \N [{"file_id": "e5abe9c3-00de-425b-901a-7c7b857f7762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760496790d1840d9932e30b625c55c23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760496790d1840d9932e30b625c55c23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760496790d1840d9932e30b625c55c23.jpg", "file_size": 9880, "is_delete": false, "file_type": 1, "original_file_name": "1240#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760496790d1840d9932e30b625c55c23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760496790d1840d9932e30b625c55c23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760496790d1840d9932e30b625c55c23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760496790d1840d9932e30b625c55c23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760496790d1840d9932e30b625c55c23.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WI5g12ExJw8ZwE0R3MZZdHCXGCM=", "createTime": "2024-08-15 15:08:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.557638+00 2025-12-09 10:15:57.557644+00 20418 003#蓝色裤子印花番禺调色 SPMX-20240815315653 \N \N \N 1 \N [{"file_id": "10c3582a-fc6f-4056-9fc6-bf7c86170bba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20d7f59193cf4e58906290da2eefa52e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20d7f59193cf4e58906290da2eefa52e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20d7f59193cf4e58906290da2eefa52e.jpg", "file_size": 23086, "is_delete": false, "file_type": 1, "original_file_name": "003#蓝色裤子印花番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d7f59193cf4e58906290da2eefa52e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d7f59193cf4e58906290da2eefa52e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20d7f59193cf4e58906290da2eefa52e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20d7f59193cf4e58906290da2eefa52e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20d7f59193cf4e58906290da2eefa52e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gOZYKy1MR--KwAvsVx5TaFFhYs8=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.560993+00 2025-12-09 10:15:57.560997+00 20419 FX003-148#WJC22 SPMX-20240815315657 \N \N \N 1 \N [{"file_id": "7352d491-c9b7-45d6-84c3-8d5f7c3c6ee3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "742afe893f6d4202810024dd6d2b33f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "742afe893f6d4202810024dd6d2b33f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "742afe893f6d4202810024dd6d2b33f3.jpg", "file_size": 16672, "is_delete": false, "file_type": 1, "original_file_name": "FX003-148#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742afe893f6d4202810024dd6d2b33f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742afe893f6d4202810024dd6d2b33f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742afe893f6d4202810024dd6d2b33f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/742afe893f6d4202810024dd6d2b33f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/742afe893f6d4202810024dd6d2b33f3.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pq6AovXD2W3nA4xlm3HOut6vGE0=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.564386+00 2025-12-09 10:15:57.564393+00 20420 88380#I-水绿46码 SPMX-20240815315655 \N \N \N 1 \N [{"file_id": "8bf28d63-2f9e-48b8-a3a0-0dce4ff4a6f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "327dd24cd1f9455f82bfb61e8ef8e864.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "327dd24cd1f9455f82bfb61e8ef8e864.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "327dd24cd1f9455f82bfb61e8ef8e864.jpg", "file_size": 19094, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-水绿46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327dd24cd1f9455f82bfb61e8ef8e864.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327dd24cd1f9455f82bfb61e8ef8e864.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/327dd24cd1f9455f82bfb61e8ef8e864.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/327dd24cd1f9455f82bfb61e8ef8e864.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/327dd24cd1f9455f82bfb61e8ef8e864.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y81_wkpwVR9QCQG-9SFve5CPbM0=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.567705+00 2025-12-09 10:15:57.567712+00 20421 CH09304FWD#炫彩灰XL SPMX-20240815315664 \N \N \N 1 \N [{"file_id": "3ef07f4c-dfa0-4514-b186-f3965d2f1db0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b17c718ad2fb4631aa7e8c191ef88cc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b17c718ad2fb4631aa7e8c191ef88cc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b17c718ad2fb4631aa7e8c191ef88cc0.jpg", "file_size": 13973, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩灰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17c718ad2fb4631aa7e8c191ef88cc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17c718ad2fb4631aa7e8c191ef88cc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b17c718ad2fb4631aa7e8c191ef88cc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b17c718ad2fb4631aa7e8c191ef88cc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b17c718ad2fb4631aa7e8c191ef88cc0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G30J96FDBihidSe6TnuGdhhb6bU=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.570999+00 2025-12-09 10:15:57.571005+00 20422 1242#红色 SPMX-20240815315663 \N \N \N 1 \N [{"file_id": "7e23203a-8a41-40b6-950f-0d0061d04d18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69b54caa70184641b1d542927e1db6f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69b54caa70184641b1d542927e1db6f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69b54caa70184641b1d542927e1db6f0.jpg", "file_size": 9268, "is_delete": false, "file_type": 1, "original_file_name": "1242#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b54caa70184641b1d542927e1db6f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b54caa70184641b1d542927e1db6f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69b54caa70184641b1d542927e1db6f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69b54caa70184641b1d542927e1db6f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69b54caa70184641b1d542927e1db6f0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y05gpAAnY0Y005InEw4mvu1ohPs=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.574344+00 2025-12-09 10:15:57.57435+00 20423 240390#-02-7-2XL码 SPMX-20240815315665 \N \N \N 1 \N [{"file_id": "cf79ec52-3d2a-4fb2-ba4a-c97484c509b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fb83a24807643c5be937717ec347707.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fb83a24807643c5be937717ec347707.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fb83a24807643c5be937717ec347707.jpg", "file_size": 60227, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-7-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83a24807643c5be937717ec347707.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83a24807643c5be937717ec347707.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83a24807643c5be937717ec347707.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fb83a24807643c5be937717ec347707.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fb83a24807643c5be937717ec347707.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-6wCjJ7P2gxuT4QJwHd6cX_bqtE=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.577648+00 2025-12-09 10:15:57.577654+00 20424 003-1FWE#L SPMX-20240815315672 \N \N \N 1 \N [{"file_id": "a83b0213-2faa-4bf4-844f-d68352c41288", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1d02a288a1f47b68399f755c3c02096.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1d02a288a1f47b68399f755c3c02096.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1d02a288a1f47b68399f755c3c02096.jpg", "file_size": 17195, "is_delete": false, "file_type": 1, "original_file_name": "003-1FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d02a288a1f47b68399f755c3c02096.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d02a288a1f47b68399f755c3c02096.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1d02a288a1f47b68399f755c3c02096.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1d02a288a1f47b68399f755c3c02096.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1d02a288a1f47b68399f755c3c02096.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:duJ88UAlqeIuehUEk3n0AsttEwA=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.580956+00 2025-12-09 10:15:57.580962+00 20425 LJH25008-1#红色 SPMX-20240815315670 \N \N \N 1 \N [{"file_id": "6d0e7d16-9ea6-4dd6-bedb-29a9d2c7336c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb37442e4ebe4f879ce92d313481d39c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb37442e4ebe4f879ce92d313481d39c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb37442e4ebe4f879ce92d313481d39c.jpg", "file_size": 71028, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-1#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb37442e4ebe4f879ce92d313481d39c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb37442e4ebe4f879ce92d313481d39c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb37442e4ebe4f879ce92d313481d39c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb37442e4ebe4f879ce92d313481d39c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb37442e4ebe4f879ce92d313481d39c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zbOtlwj0j8ykRuiRKyfZ07AYZpA=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.584438+00 2025-12-09 10:15:57.584444+00 20426 LZ1416#童装T1号色 SPMX-20240815315671 \N \N \N 1 \N [{"file_id": "ac5c86f2-aba9-48e3-b03a-a2288341ab55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "519bbb82190c49ba91b8f2c6c18a5e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "519bbb82190c49ba91b8f2c6c18a5e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "519bbb82190c49ba91b8f2c6c18a5e34.jpg", "file_size": 19277, "is_delete": false, "file_type": 1, "original_file_name": "LZ1416#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519bbb82190c49ba91b8f2c6c18a5e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519bbb82190c49ba91b8f2c6c18a5e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519bbb82190c49ba91b8f2c6c18a5e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/519bbb82190c49ba91b8f2c6c18a5e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/519bbb82190c49ba91b8f2c6c18a5e34.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtUrbmpgicFgLPp5wAZ_OgWxFY8=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.587744+00 2025-12-09 10:15:57.58775+00 20427 CH09304FWD#炫彩灰XS SPMX-20240815315675 \N \N \N 1 \N [{"file_id": "2d39c207-5873-42fa-90ad-4512579d8678", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8763ccfcfbf74baa9920e65a27f79c22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8763ccfcfbf74baa9920e65a27f79c22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8763ccfcfbf74baa9920e65a27f79c22.jpg", "file_size": 13112, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩灰XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8763ccfcfbf74baa9920e65a27f79c22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8763ccfcfbf74baa9920e65a27f79c22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8763ccfcfbf74baa9920e65a27f79c22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8763ccfcfbf74baa9920e65a27f79c22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8763ccfcfbf74baa9920e65a27f79c22.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tHay4RlulAUbsbxB-o1bOj1SVFg=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.591057+00 2025-12-09 10:15:57.591063+00 20428 HXF002#粉色 SPMX-20240815315674 \N \N \N 1 \N [{"file_id": "30cb6830-990b-41de-83c2-1685386e5f13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "504a451ff14b433bb80b288e834ad2b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "504a451ff14b433bb80b288e834ad2b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "504a451ff14b433bb80b288e834ad2b0.jpg", "file_size": 8626, "is_delete": false, "file_type": 1, "original_file_name": "HXF002#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504a451ff14b433bb80b288e834ad2b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504a451ff14b433bb80b288e834ad2b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/504a451ff14b433bb80b288e834ad2b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/504a451ff14b433bb80b288e834ad2b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/504a451ff14b433bb80b288e834ad2b0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1MGJgUjH9n6TA1ohuwonUKy-MCE=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.594378+00 2025-12-09 10:15:57.594384+00 20429 FX003-418#WJC22 SPMX-20240815315669 \N \N \N 1 \N [{"file_id": "8e199f4e-674d-4a71-8144-4f4779ab3baf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4e303d676be4ca59e1c988795bfd01f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4e303d676be4ca59e1c988795bfd01f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4e303d676be4ca59e1c988795bfd01f.jpg", "file_size": 16450, "is_delete": false, "file_type": 1, "original_file_name": "FX003-418#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e303d676be4ca59e1c988795bfd01f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e303d676be4ca59e1c988795bfd01f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4e303d676be4ca59e1c988795bfd01f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4e303d676be4ca59e1c988795bfd01f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4e303d676be4ca59e1c988795bfd01f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bfeIwNj4hpvFkyOjjR51gGc4D9k=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.597672+00 2025-12-09 10:15:57.597679+00 20430 1242#绿色 SPMX-20240815315673 \N \N \N 1 \N [{"file_id": "b5257556-017d-4b31-99d4-90607e38ac2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "421b07754d3f4f3da078b0b9b260de0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "421b07754d3f4f3da078b0b9b260de0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "421b07754d3f4f3da078b0b9b260de0d.jpg", "file_size": 9034, "is_delete": false, "file_type": 1, "original_file_name": "1242#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421b07754d3f4f3da078b0b9b260de0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421b07754d3f4f3da078b0b9b260de0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/421b07754d3f4f3da078b0b9b260de0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/421b07754d3f4f3da078b0b9b260de0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/421b07754d3f4f3da078b0b9b260de0d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOANtToon3lhNMv1wnFH_rRpQvo=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.600985+00 2025-12-09 10:15:57.600991+00 20431 240390#-02-7-3XL码 SPMX-20240815315676 \N \N \N 1 \N [{"file_id": "c9f81a71-e7f0-4c77-850b-0abdf3c6284f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d0b4147304c4d8bac055e55eea5a06d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d0b4147304c4d8bac055e55eea5a06d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d0b4147304c4d8bac055e55eea5a06d.jpg", "file_size": 59936, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-7-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0b4147304c4d8bac055e55eea5a06d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0b4147304c4d8bac055e55eea5a06d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d0b4147304c4d8bac055e55eea5a06d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d0b4147304c4d8bac055e55eea5a06d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d0b4147304c4d8bac055e55eea5a06d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UUQbaWATaW7oddhQlAxyUgOzXZc=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.604189+00 2025-12-09 10:15:57.604195+00 20432 88380#I-水绿48码 SPMX-20240815315666 \N \N \N 1 \N [{"file_id": "b04a0cd4-0e0e-46d6-a714-9566fdd39d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8f0347f728a48cc801a702538f812da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8f0347f728a48cc801a702538f812da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8f0347f728a48cc801a702538f812da.jpg", "file_size": 19425, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-水绿48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f0347f728a48cc801a702538f812da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f0347f728a48cc801a702538f812da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f0347f728a48cc801a702538f812da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8f0347f728a48cc801a702538f812da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8f0347f728a48cc801a702538f812da.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xf3aZoUjktcfYgKzo-FSZSDRF_Q=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.607434+00 2025-12-09 10:15:57.60744+00 20433 DM002FW#玫红底 SPMX-20240815315667 \N \N \N 1 \N [{"file_id": "3cba25ec-3928-42c2-85ae-22efbc1d0206", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a3093ffd26f4236b9e6571340b1865d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a3093ffd26f4236b9e6571340b1865d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a3093ffd26f4236b9e6571340b1865d.jpg", "file_size": 19867, "is_delete": false, "file_type": 1, "original_file_name": "DM002FW#玫红底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3093ffd26f4236b9e6571340b1865d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3093ffd26f4236b9e6571340b1865d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a3093ffd26f4236b9e6571340b1865d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a3093ffd26f4236b9e6571340b1865d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a3093ffd26f4236b9e6571340b1865d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jds5v3VEkMuxE9IR6fo_X6q2tTw=", "createTime": "2024-08-15 15:08:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.610688+00 2025-12-09 10:15:57.610694+00 20434 JY-AD-207#3号白底黑色3XL SPMX-20240815315668 \N \N \N 1 \N [{"file_id": "62a164d7-c899-4b5d-8818-e160fa01bc62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebe89d1eef4942ae8ef5de17a33aab52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebe89d1eef4942ae8ef5de17a33aab52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebe89d1eef4942ae8ef5de17a33aab52.jpg", "file_size": 22800, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe89d1eef4942ae8ef5de17a33aab52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe89d1eef4942ae8ef5de17a33aab52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe89d1eef4942ae8ef5de17a33aab52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebe89d1eef4942ae8ef5de17a33aab52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebe89d1eef4942ae8ef5de17a33aab52.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4nUo-E05Mgc-MCbotNAU3nNHjGo=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.61396+00 2025-12-09 10:15:57.613967+00 20435 DM002FW#白底 SPMX-20240815315677 \N \N \N 1 \N [{"file_id": "b7fb0af0-1e02-475c-827d-cbb0ac9f0071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc88d0a587c14272a685964f7c2fbad4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc88d0a587c14272a685964f7c2fbad4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc88d0a587c14272a685964f7c2fbad4.jpg", "file_size": 20496, "is_delete": false, "file_type": 1, "original_file_name": "DM002FW#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88d0a587c14272a685964f7c2fbad4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88d0a587c14272a685964f7c2fbad4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc88d0a587c14272a685964f7c2fbad4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc88d0a587c14272a685964f7c2fbad4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc88d0a587c14272a685964f7c2fbad4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VLtKYSJGwEAixfQWkm7iGrXQRow=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.617641+00 2025-12-09 10:15:57.617648+00 20436 240390#-02-8-2XL码 SPMX-20240815315687 \N \N \N 1 \N [{"file_id": "c99d30fd-826c-49ed-b736-a9f586de6ae0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d2ad25d27884b4d9a300a3321329109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d2ad25d27884b4d9a300a3321329109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d2ad25d27884b4d9a300a3321329109.jpg", "file_size": 66367, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-8-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ad25d27884b4d9a300a3321329109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ad25d27884b4d9a300a3321329109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d2ad25d27884b4d9a300a3321329109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d2ad25d27884b4d9a300a3321329109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d2ad25d27884b4d9a300a3321329109.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6glb-jikZL0Qkfmyzp-24nWouY=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.621171+00 2025-12-09 10:15:57.621178+00 20437 JY-AD-207#3号白底黑色L SPMX-20240815315679 \N \N \N 1 \N [{"file_id": "3a6bed2f-543a-4be8-a1e6-85c661f8f152", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ade52f174624e5981651aa5f8ffc0a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ade52f174624e5981651aa5f8ffc0a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ade52f174624e5981651aa5f8ffc0a8.jpg", "file_size": 25449, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ade52f174624e5981651aa5f8ffc0a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ade52f174624e5981651aa5f8ffc0a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ade52f174624e5981651aa5f8ffc0a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ade52f174624e5981651aa5f8ffc0a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ade52f174624e5981651aa5f8ffc0a8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YzL4bVRgbvRmatFdSh4Uoy2ImQ=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.624693+00 2025-12-09 10:15:57.624699+00 20438 JY-AD-207#3号白底黑色M SPMX-20240815315689 \N \N \N 1 \N [{"file_id": "4fcae21c-6b90-4538-bae5-bdb54bb96cc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6084dc8e5ec4d55b6102dcb39afbdab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6084dc8e5ec4d55b6102dcb39afbdab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6084dc8e5ec4d55b6102dcb39afbdab.jpg", "file_size": 25596, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6084dc8e5ec4d55b6102dcb39afbdab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6084dc8e5ec4d55b6102dcb39afbdab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6084dc8e5ec4d55b6102dcb39afbdab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6084dc8e5ec4d55b6102dcb39afbdab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6084dc8e5ec4d55b6102dcb39afbdab.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4EKXMPIQNO7NW5x0zzGyR5NwHxk=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.628086+00 2025-12-09 10:15:57.628092+00 20439 LJH25008-1#黄色 SPMX-20240815315684 \N \N \N 1 \N [{"file_id": "9c751c39-494c-4380-943c-9d437d697bb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "492b879f0a924dffa2275ac8dd4101f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "492b879f0a924dffa2275ac8dd4101f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "492b879f0a924dffa2275ac8dd4101f5.jpg", "file_size": 77521, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-1#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b879f0a924dffa2275ac8dd4101f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b879f0a924dffa2275ac8dd4101f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/492b879f0a924dffa2275ac8dd4101f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/492b879f0a924dffa2275ac8dd4101f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/492b879f0a924dffa2275ac8dd4101f5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POj5Ssiwug5J8Sb2Ayr7Jo85Jbw=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.63137+00 2025-12-09 10:15:57.631377+00 20440 88380#I-粉色42码 SPMX-20240815315688 \N \N \N 1 \N [{"file_id": "f50ca955-78dc-4135-a997-02a4405ebeb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c05cf3655aa4eea96171540e3c8dec4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c05cf3655aa4eea96171540e3c8dec4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c05cf3655aa4eea96171540e3c8dec4.jpg", "file_size": 17254, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-粉色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c05cf3655aa4eea96171540e3c8dec4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c05cf3655aa4eea96171540e3c8dec4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c05cf3655aa4eea96171540e3c8dec4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c05cf3655aa4eea96171540e3c8dec4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c05cf3655aa4eea96171540e3c8dec4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8SDF_DUEJXykRE8MIkTN4B3g40=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.634692+00 2025-12-09 10:15:57.634698+00 20441 1242#蓝色 SPMX-20240815315682 \N \N \N 1 \N [{"file_id": "4c167070-be30-430e-a5f7-3f3997ca771c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "303a85aead514148b76f0968a92b72d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "303a85aead514148b76f0968a92b72d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "303a85aead514148b76f0968a92b72d5.jpg", "file_size": 8743, "is_delete": false, "file_type": 1, "original_file_name": "1242#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a85aead514148b76f0968a92b72d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a85aead514148b76f0968a92b72d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/303a85aead514148b76f0968a92b72d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/303a85aead514148b76f0968a92b72d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/303a85aead514148b76f0968a92b72d5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ymFVaVC4BOZK0F1dIyeLkwLSNN4=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.63801+00 2025-12-09 10:15:57.638016+00 20442 CH09304FWD#炫彩粉L SPMX-20240815315686 \N \N \N 1 \N [{"file_id": "d49a3e40-cac8-4638-9e34-cfca8b8b3990", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc73d282eabf43b58d89d1abbfc61233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc73d282eabf43b58d89d1abbfc61233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc73d282eabf43b58d89d1abbfc61233.jpg", "file_size": 14587, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩粉L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc73d282eabf43b58d89d1abbfc61233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc73d282eabf43b58d89d1abbfc61233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc73d282eabf43b58d89d1abbfc61233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc73d282eabf43b58d89d1abbfc61233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc73d282eabf43b58d89d1abbfc61233.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2N2AX8z7IlLCt47Zfg5JTp4iSks=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.641254+00 2025-12-09 10:15:57.64126+00 20443 1242#黄色 SPMX-20240815315691 \N \N \N 1 \N [{"file_id": "9f49af50-6138-4af3-81a7-8664f08e0b50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d165011e906143beb9b81fb25f86968c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d165011e906143beb9b81fb25f86968c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d165011e906143beb9b81fb25f86968c.jpg", "file_size": 8657, "is_delete": false, "file_type": 1, "original_file_name": "1242#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d165011e906143beb9b81fb25f86968c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d165011e906143beb9b81fb25f86968c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d165011e906143beb9b81fb25f86968c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d165011e906143beb9b81fb25f86968c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d165011e906143beb9b81fb25f86968c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfJHn3h_mipGTH7tAYvA-jc0ya0=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.644757+00 2025-12-09 10:15:57.644763+00 20444 DM002FW#黄底 SPMX-20240815315690 \N \N \N 1 \N [{"file_id": "f1f096e3-6d21-4843-ba7f-df81a280438b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebe5deb1784d4a22bdef447909382686.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebe5deb1784d4a22bdef447909382686.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebe5deb1784d4a22bdef447909382686.jpg", "file_size": 19857, "is_delete": false, "file_type": 1, "original_file_name": "DM002FW#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5deb1784d4a22bdef447909382686.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5deb1784d4a22bdef447909382686.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebe5deb1784d4a22bdef447909382686.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebe5deb1784d4a22bdef447909382686.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebe5deb1784d4a22bdef447909382686.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmups1NSiSIRnoLosvZzoY9oM04=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.648294+00 2025-12-09 10:15:57.648301+00 20445 HXF002#蓝色 SPMX-20240815315685 \N \N \N 1 \N [{"file_id": "718c8bc0-cff0-4437-9f0e-cb63e44fec8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06efd93b79df47278aeea29e5d25d111.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06efd93b79df47278aeea29e5d25d111.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06efd93b79df47278aeea29e5d25d111.jpg", "file_size": 9660, "is_delete": false, "file_type": 1, "original_file_name": "HXF002#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06efd93b79df47278aeea29e5d25d111.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06efd93b79df47278aeea29e5d25d111.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06efd93b79df47278aeea29e5d25d111.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06efd93b79df47278aeea29e5d25d111.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06efd93b79df47278aeea29e5d25d111.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jd6ErxeXM2wbmFS2pFgBHDDRlQ0=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.651607+00 2025-12-09 10:15:57.651613+00 20446 88380#I-水绿50码 SPMX-20240815315678 \N \N \N 1 \N [{"file_id": "cdfd794e-88e9-4c1b-805c-8abc7a666792", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "341117b55ce84594bbf4992a56b736da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "341117b55ce84594bbf4992a56b736da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "341117b55ce84594bbf4992a56b736da.jpg", "file_size": 19660, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-水绿50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341117b55ce84594bbf4992a56b736da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341117b55ce84594bbf4992a56b736da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/341117b55ce84594bbf4992a56b736da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/341117b55ce84594bbf4992a56b736da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/341117b55ce84594bbf4992a56b736da.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aUXmHN6T9em5zctTSZiUrg7W8eI=", "createTime": "2024-08-15 15:08:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.65488+00 2025-12-09 10:15:57.654886+00 20447 003-1FWE#M SPMX-20240815315681 \N \N \N 1 \N [{"file_id": "c6bdc755-1860-4ddd-a051-2941e3416ed5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57adb879cc754f1caea93b6875c41537.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57adb879cc754f1caea93b6875c41537.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57adb879cc754f1caea93b6875c41537.jpg", "file_size": 16964, "is_delete": false, "file_type": 1, "original_file_name": "003-1FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57adb879cc754f1caea93b6875c41537.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57adb879cc754f1caea93b6875c41537.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57adb879cc754f1caea93b6875c41537.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57adb879cc754f1caea93b6875c41537.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57adb879cc754f1caea93b6875c41537.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:34MvpIqM154PrEkU5lQ_Qty8oYA=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.658184+00 2025-12-09 10:15:57.658191+00 20448 LZ1416#童装T2号色 SPMX-20240815315683 \N \N \N 1 \N [{"file_id": "87dc5681-3fbe-4916-8f0a-19bc5a4e0798", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg", "file_size": 19668, "is_delete": false, "file_type": 1, "original_file_name": "LZ1416#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e04e3a5ec47c41d1b4ae10f8fdb2fb83.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZP-CASSUSrjxtyyEI2tQLcdqmQ=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.661427+00 2025-12-09 10:15:57.661433+00 20449 003-2FWE#L SPMX-20240815315692 \N \N \N 1 \N [{"file_id": "1e35604e-2270-4206-9ab2-fdf02bd7591f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "135ac434fa7641d18cd08720a2a9f34d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "135ac434fa7641d18cd08720a2a9f34d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "135ac434fa7641d18cd08720a2a9f34d.jpg", "file_size": 16462, "is_delete": false, "file_type": 1, "original_file_name": "003-2FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/135ac434fa7641d18cd08720a2a9f34d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/135ac434fa7641d18cd08720a2a9f34d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/135ac434fa7641d18cd08720a2a9f34d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/135ac434fa7641d18cd08720a2a9f34d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/135ac434fa7641d18cd08720a2a9f34d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmROBuGeD21L7ezomL3GBwBBNiM=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.664784+00 2025-12-09 10:15:57.66479+00 20450 FX003-A32#LWQ15 SPMX-20240815315680 \N \N \N 1 \N [{"file_id": "6578e5dc-39cc-492a-9d08-e0e2980b6695", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c75c2935f7f041cfb02cebb4747e0ecf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c75c2935f7f041cfb02cebb4747e0ecf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c75c2935f7f041cfb02cebb4747e0ecf.jpg", "file_size": 13605, "is_delete": false, "file_type": 1, "original_file_name": "FX003-A32#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75c2935f7f041cfb02cebb4747e0ecf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75c2935f7f041cfb02cebb4747e0ecf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c75c2935f7f041cfb02cebb4747e0ecf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c75c2935f7f041cfb02cebb4747e0ecf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c75c2935f7f041cfb02cebb4747e0ecf.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:27Q6WT74V03ucnlPUCiIkOSdTpI=", "createTime": "2024-08-15 15:08:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.668154+00 2025-12-09 10:15:57.668162+00 20451 JY-AD-207#3号白底黑色S SPMX-20240815315699 \N \N \N 1 \N [{"file_id": "173cd70a-b7bb-461e-99b6-10898dc14c83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66bf4ed8a139418ea1c114221b24cd63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66bf4ed8a139418ea1c114221b24cd63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66bf4ed8a139418ea1c114221b24cd63.jpg", "file_size": 26087, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf4ed8a139418ea1c114221b24cd63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf4ed8a139418ea1c114221b24cd63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66bf4ed8a139418ea1c114221b24cd63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66bf4ed8a139418ea1c114221b24cd63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66bf4ed8a139418ea1c114221b24cd63.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JvBRxXJFaotNtdD-_CsY251eGeY=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.671812+00 2025-12-09 10:15:57.671819+00 20452 HXF002FWE#黄 VS-D3 SPMX-20240815315706 \N \N \N 1 \N [{"file_id": "5e8a5db6-f8e9-4cee-a2b7-0f6c7caa3fa7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf131421c80e42979c24bbcf453f49f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf131421c80e42979c24bbcf453f49f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf131421c80e42979c24bbcf453f49f0.jpg", "file_size": 10639, "is_delete": false, "file_type": 1, "original_file_name": "HXF002FWE#黄 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf131421c80e42979c24bbcf453f49f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf131421c80e42979c24bbcf453f49f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf131421c80e42979c24bbcf453f49f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf131421c80e42979c24bbcf453f49f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf131421c80e42979c24bbcf453f49f0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rsAPjzaeFeE8iMlz3P73f5WckSg=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.675344+00 2025-12-09 10:15:57.675351+00 20453 DM002FW#黑底 SPMX-20240815315701 \N \N \N 1 \N [{"file_id": "ab5692cd-b18c-4a60-8602-9849b3d2e6ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fef730471ba4aca9e947f680dd50182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fef730471ba4aca9e947f680dd50182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fef730471ba4aca9e947f680dd50182.jpg", "file_size": 22113, "is_delete": false, "file_type": 1, "original_file_name": "DM002FW#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fef730471ba4aca9e947f680dd50182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fef730471ba4aca9e947f680dd50182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fef730471ba4aca9e947f680dd50182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fef730471ba4aca9e947f680dd50182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fef730471ba4aca9e947f680dd50182.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N1lj0EfYHZDRHaxogYpAPn390m8=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.678674+00 2025-12-09 10:15:57.67868+00 20454 240390#-02-8-3XL码 SPMX-20240815315700 \N \N \N 1 \N [{"file_id": "6ea7782a-869b-4c61-9531-5dbb78cec8a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab6547b6fe6a4814b78d38096d1b40c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab6547b6fe6a4814b78d38096d1b40c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab6547b6fe6a4814b78d38096d1b40c8.jpg", "file_size": 68488, "is_delete": false, "file_type": 1, "original_file_name": "240390#-02-8-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6547b6fe6a4814b78d38096d1b40c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6547b6fe6a4814b78d38096d1b40c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab6547b6fe6a4814b78d38096d1b40c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab6547b6fe6a4814b78d38096d1b40c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab6547b6fe6a4814b78d38096d1b40c8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H6KLtKOSzY_OwgzJylAC2uKQ0LU=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.682025+00 2025-12-09 10:15:57.682032+00 20455 1245-1FWE#粉色4XL SPMX-20240815315702 \N \N \N 1 \N [{"file_id": "45e9d0ab-72cd-4590-92a2-fcf0be5fc5d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d971c873e1234c908090b311afedb4ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d971c873e1234c908090b311afedb4ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d971c873e1234c908090b311afedb4ed.jpg", "file_size": 14887, "is_delete": false, "file_type": 1, "original_file_name": "1245-1FWE#粉色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d971c873e1234c908090b311afedb4ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d971c873e1234c908090b311afedb4ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d971c873e1234c908090b311afedb4ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d971c873e1234c908090b311afedb4ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d971c873e1234c908090b311afedb4ed.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z44lpM9djvS0QvE93JJI9MHmRaw=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.685335+00 2025-12-09 10:15:57.68534+00 20456 LZ1416#童装T4号色 SPMX-20240815315708 \N \N \N 1 \N [{"file_id": "dddea223-1f1d-47c4-b37f-d9f6312fc716", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "483301c347e54e92a76e5ea559e6a369.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "483301c347e54e92a76e5ea559e6a369.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "483301c347e54e92a76e5ea559e6a369.jpg", "file_size": 19216, "is_delete": false, "file_type": 1, "original_file_name": "LZ1416#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483301c347e54e92a76e5ea559e6a369.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483301c347e54e92a76e5ea559e6a369.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/483301c347e54e92a76e5ea559e6a369.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/483301c347e54e92a76e5ea559e6a369.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/483301c347e54e92a76e5ea559e6a369.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A8vwwxtAQt82_nGBnr5M_6j4vR8=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.688721+00 2025-12-09 10:15:57.688729+00 20457 003-2FWE#M SPMX-20240815315703 \N \N \N 1 \N [{"file_id": "0522e214-2a9b-4edc-b2a7-676ab1ca54f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e31869d3e74e4256b154902bf660c3c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e31869d3e74e4256b154902bf660c3c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e31869d3e74e4256b154902bf660c3c4.jpg", "file_size": 17042, "is_delete": false, "file_type": 1, "original_file_name": "003-2FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31869d3e74e4256b154902bf660c3c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31869d3e74e4256b154902bf660c3c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e31869d3e74e4256b154902bf660c3c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e31869d3e74e4256b154902bf660c3c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e31869d3e74e4256b154902bf660c3c4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXBz-V20WafnIUhVroccbtR-s6M=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.692045+00 2025-12-09 10:15:57.692052+00 20458 FX003FWE#VS-D3 SPMX-20240815315707 \N \N \N 1 \N [{"file_id": "2b3fe74d-1952-44a0-bffb-a206bf0e0a4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7df9d602f0244e1ca9186399e2a65d99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7df9d602f0244e1ca9186399e2a65d99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7df9d602f0244e1ca9186399e2a65d99.jpg", "file_size": 9580, "is_delete": false, "file_type": 1, "original_file_name": "FX003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d602f0244e1ca9186399e2a65d99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d602f0244e1ca9186399e2a65d99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7df9d602f0244e1ca9186399e2a65d99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7df9d602f0244e1ca9186399e2a65d99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7df9d602f0244e1ca9186399e2a65d99.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VeveAplYE7oI0PS3yZuKVtCNVh0=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.695571+00 2025-12-09 10:15:57.695577+00 20459 LJH25008-2#黑色 SPMX-20240815315705 \N \N \N 1 \N [{"file_id": "cce26b2f-a72e-4f37-9150-985e5c9f71c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "958c3c281844457fbd8b8e9f823cdb59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "958c3c281844457fbd8b8e9f823cdb59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "958c3c281844457fbd8b8e9f823cdb59.jpg", "file_size": 63696, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-2#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958c3c281844457fbd8b8e9f823cdb59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958c3c281844457fbd8b8e9f823cdb59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/958c3c281844457fbd8b8e9f823cdb59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/958c3c281844457fbd8b8e9f823cdb59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/958c3c281844457fbd8b8e9f823cdb59.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCxQRVoOFCeODaKgpnFEm_O8TTw=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.698951+00 2025-12-09 10:15:57.698957+00 20460 HXF002FW#VS-D3 SPMX-20240815315695 \N \N \N 1 \N [{"file_id": "4093dfbb-d456-434d-8991-95c6898b60fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9646e18d9c14961aa7c470da6ecc903.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9646e18d9c14961aa7c470da6ecc903.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9646e18d9c14961aa7c470da6ecc903.jpg", "file_size": 29413, "is_delete": false, "file_type": 1, "original_file_name": "HXF002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9646e18d9c14961aa7c470da6ecc903.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9646e18d9c14961aa7c470da6ecc903.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9646e18d9c14961aa7c470da6ecc903.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9646e18d9c14961aa7c470da6ecc903.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9646e18d9c14961aa7c470da6ecc903.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dQpffn0X62qoLDExgM1Xih6O5l0=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.70223+00 2025-12-09 10:15:57.702237+00 20461 CH09304FWD#炫彩粉M SPMX-20240815315693 \N \N \N 1 \N [{"file_id": "3ad96012-3863-4743-9807-0c324384d88b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "36af418fc7ee43f29d8c33ec685fc26b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "36af418fc7ee43f29d8c33ec685fc26b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "36af418fc7ee43f29d8c33ec685fc26b.jpg", "file_size": 13688, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩粉M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36af418fc7ee43f29d8c33ec685fc26b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36af418fc7ee43f29d8c33ec685fc26b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/36af418fc7ee43f29d8c33ec685fc26b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/36af418fc7ee43f29d8c33ec685fc26b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/36af418fc7ee43f29d8c33ec685fc26b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IFncSPRoDy0IbrraCAbDwiZ5Ns=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.705566+00 2025-12-09 10:15:57.705572+00 20462 LJH25008-1#黑色 SPMX-20240815315694 \N \N \N 1 \N [{"file_id": "5dc76182-162b-453f-9c51-d5fa57106f49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0cb1b0b404446498ad260fe955e2613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0cb1b0b404446498ad260fe955e2613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0cb1b0b404446498ad260fe955e2613.jpg", "file_size": 72683, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-1#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cb1b0b404446498ad260fe955e2613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cb1b0b404446498ad260fe955e2613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cb1b0b404446498ad260fe955e2613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0cb1b0b404446498ad260fe955e2613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0cb1b0b404446498ad260fe955e2613.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LaCzzJPZxEORX2RN4b8XzlFH79I=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.708878+00 2025-12-09 10:15:57.708885+00 20463 LZ1416#童装T3号色 SPMX-20240815315697 \N \N \N 1 \N [{"file_id": "1eca4e36-f9a3-4bbf-b0fb-bab5683575d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "039a63d14a284174b2587d4f1dd25b77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "039a63d14a284174b2587d4f1dd25b77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "039a63d14a284174b2587d4f1dd25b77.jpg", "file_size": 20314, "is_delete": false, "file_type": 1, "original_file_name": "LZ1416#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039a63d14a284174b2587d4f1dd25b77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039a63d14a284174b2587d4f1dd25b77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/039a63d14a284174b2587d4f1dd25b77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/039a63d14a284174b2587d4f1dd25b77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/039a63d14a284174b2587d4f1dd25b77.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i5o03pv1PPGz116eQ7Ye0ITrMOU=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.712451+00 2025-12-09 10:15:57.712458+00 20464 FX003FW#VS-D3 SPMX-20240815315696 \N \N \N 1 \N [{"file_id": "1d771f33-1f75-4da1-b73f-3519ed302a61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e08c098874d49bbb0b7d141a2422637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e08c098874d49bbb0b7d141a2422637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e08c098874d49bbb0b7d141a2422637.jpg", "file_size": 22263, "is_delete": false, "file_type": 1, "original_file_name": "FX003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e08c098874d49bbb0b7d141a2422637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e08c098874d49bbb0b7d141a2422637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e08c098874d49bbb0b7d141a2422637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e08c098874d49bbb0b7d141a2422637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e08c098874d49bbb0b7d141a2422637.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BjBIGzv8GpKIIWvigerm8cVnUSA=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.716121+00 2025-12-09 10:15:57.716127+00 20465 88380#I-粉色44码 SPMX-20240815315698 \N \N \N 1 \N [{"file_id": "07a9ac1d-f3a8-40c8-87c0-78a00ffb5783", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "affbf3225bc0492dad09cb3515df7249.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "affbf3225bc0492dad09cb3515df7249.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "affbf3225bc0492dad09cb3515df7249.jpg", "file_size": 17503, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-粉色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/affbf3225bc0492dad09cb3515df7249.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/affbf3225bc0492dad09cb3515df7249.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/affbf3225bc0492dad09cb3515df7249.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/affbf3225bc0492dad09cb3515df7249.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/affbf3225bc0492dad09cb3515df7249.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4taqmgLELJDHwwB1rXQyXg31I-o=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.719748+00 2025-12-09 10:15:57.719755+00 20466 CH09304FWD#炫彩粉S SPMX-20240815315704 \N \N \N 1 \N [{"file_id": "b88228cb-115f-4e51-a06b-114f926a4041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a336f6c363514946aec1ec7100358a94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a336f6c363514946aec1ec7100358a94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a336f6c363514946aec1ec7100358a94.jpg", "file_size": 13699, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩粉S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a336f6c363514946aec1ec7100358a94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a336f6c363514946aec1ec7100358a94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a336f6c363514946aec1ec7100358a94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a336f6c363514946aec1ec7100358a94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a336f6c363514946aec1ec7100358a94.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jufUpe1tyMmgfzFsHb5wEvjQeUM=", "createTime": "2024-08-15 15:08:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.72317+00 2025-12-09 10:15:57.723177+00 20467 88380#I-粉色46码 SPMX-20240815315711 \N \N \N 1 \N [{"file_id": "3d458ac3-9f11-407e-8fdd-b24925995faf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "828c3b26e3124cc8a29140ff8497ff8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "828c3b26e3124cc8a29140ff8497ff8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "828c3b26e3124cc8a29140ff8497ff8a.jpg", "file_size": 17271, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-粉色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c3b26e3124cc8a29140ff8497ff8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c3b26e3124cc8a29140ff8497ff8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/828c3b26e3124cc8a29140ff8497ff8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/828c3b26e3124cc8a29140ff8497ff8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/828c3b26e3124cc8a29140ff8497ff8a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4wsoDXzvVD4CoEbFQfepOuVtjOE=", "createTime": "2024-08-15 15:08:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.726525+00 2025-12-09 10:15:57.726532+00 20468 24077#-1-A-左 SPMX-20240815315710 \N \N \N 1 \N [{"file_id": "aa868733-a637-4339-85bc-90c23d6e1e7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a54550c1d63e49b19f25bead9ba6ed9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a54550c1d63e49b19f25bead9ba6ed9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a54550c1d63e49b19f25bead9ba6ed9a.jpg", "file_size": 43274, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-A-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a54550c1d63e49b19f25bead9ba6ed9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a54550c1d63e49b19f25bead9ba6ed9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a54550c1d63e49b19f25bead9ba6ed9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a54550c1d63e49b19f25bead9ba6ed9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a54550c1d63e49b19f25bead9ba6ed9a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZhAKG5nXsfz9nvwigv1sWNzlrYI=", "createTime": "2024-08-15 15:08:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.729892+00 2025-12-09 10:15:57.729903+00 20469 JY-AD-207#3号白底黑色XL SPMX-20240815315709 \N \N \N 1 \N [{"file_id": "f425ffe6-66bd-4fca-8417-00690e397b5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fa91eaa62714c379bc1b4a29773135c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fa91eaa62714c379bc1b4a29773135c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fa91eaa62714c379bc1b4a29773135c.jpg", "file_size": 23585, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#3号白底黑色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa91eaa62714c379bc1b4a29773135c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa91eaa62714c379bc1b4a29773135c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fa91eaa62714c379bc1b4a29773135c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fa91eaa62714c379bc1b4a29773135c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fa91eaa62714c379bc1b4a29773135c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-m62dbz2BGQhQDnXRRwKvOn0TLk=", "createTime": "2024-08-15 15:08:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.733174+00 2025-12-09 10:15:57.73318+00 20470 DM003-1FW#VS-D3 SPMX-20240815315712 \N \N \N 1 \N [{"file_id": "c8410fe6-dfb3-42a6-96a9-dcfabf2edeaf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea4cda21a27449fdab4b4958965c6033.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea4cda21a27449fdab4b4958965c6033.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea4cda21a27449fdab4b4958965c6033.jpg", "file_size": 14184, "is_delete": false, "file_type": 1, "original_file_name": "DM003-1FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4cda21a27449fdab4b4958965c6033.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4cda21a27449fdab4b4958965c6033.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea4cda21a27449fdab4b4958965c6033.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea4cda21a27449fdab4b4958965c6033.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea4cda21a27449fdab4b4958965c6033.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0_mDl73fMxz9I0s8GmFGk5a2DoM=", "createTime": "2024-08-15 15:08:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.736531+00 2025-12-09 10:15:57.736537+00 20471 CH09304FWD#炫彩粉XL SPMX-20240815315721 \N \N \N 1 \N [{"file_id": "453fd8ab-c179-4d95-ad2b-e7b5f4bcb572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b104c150cf44295b9fbaba3dfe5ae23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b104c150cf44295b9fbaba3dfe5ae23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b104c150cf44295b9fbaba3dfe5ae23.jpg", "file_size": 14531, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩粉XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b104c150cf44295b9fbaba3dfe5ae23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b104c150cf44295b9fbaba3dfe5ae23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b104c150cf44295b9fbaba3dfe5ae23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b104c150cf44295b9fbaba3dfe5ae23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b104c150cf44295b9fbaba3dfe5ae23.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7brukmhjoEoU7nv1aGQ0DMob1FA=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.739874+00 2025-12-09 10:15:57.739882+00 20472 24077#-1-A SPMX-20240815315714 \N \N \N 1 \N [{"file_id": "58af0323-c894-4276-a692-8cb566849929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5332ce8e1c1f41efa32e238e6b0bca29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5332ce8e1c1f41efa32e238e6b0bca29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5332ce8e1c1f41efa32e238e6b0bca29.jpg", "file_size": 42005, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5332ce8e1c1f41efa32e238e6b0bca29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5332ce8e1c1f41efa32e238e6b0bca29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5332ce8e1c1f41efa32e238e6b0bca29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5332ce8e1c1f41efa32e238e6b0bca29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5332ce8e1c1f41efa32e238e6b0bca29.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zW5NnnMzIuSTqjE_ZgAfc1wKgR0=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.743197+00 2025-12-09 10:15:57.743203+00 20473 LZ1416#童装T5号色 SPMX-20240815315718 \N \N \N 1 \N [{"file_id": "23e833e9-4811-4eb5-ab72-83b0b5611278", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f66a1329cb00433599b102192e851f8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f66a1329cb00433599b102192e851f8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f66a1329cb00433599b102192e851f8f.jpg", "file_size": 19519, "is_delete": false, "file_type": 1, "original_file_name": "LZ1416#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66a1329cb00433599b102192e851f8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66a1329cb00433599b102192e851f8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f66a1329cb00433599b102192e851f8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f66a1329cb00433599b102192e851f8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f66a1329cb00433599b102192e851f8f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cbCsxU4R0a-BB3NVLa8zvGwC6_I=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.746534+00 2025-12-09 10:15:57.74654+00 20474 LJH25008-3#白色 SPMX-20240815315720 \N \N \N 1 \N [{"file_id": "b7dd4325-c7be-44e7-95fd-eb54a3efada8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aae105e8ebc6420fb75f9fc109bbeefd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aae105e8ebc6420fb75f9fc109bbeefd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aae105e8ebc6420fb75f9fc109bbeefd.jpg", "file_size": 62252, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-3#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae105e8ebc6420fb75f9fc109bbeefd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae105e8ebc6420fb75f9fc109bbeefd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aae105e8ebc6420fb75f9fc109bbeefd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aae105e8ebc6420fb75f9fc109bbeefd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aae105e8ebc6420fb75f9fc109bbeefd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffHke_Id08Bd2Rz7i3nH0kmMwFc=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.749924+00 2025-12-09 10:15:57.749929+00 20475 124A#原版色 SPMX-20240815315713 \N \N \N 1 \N [{"file_id": "c00b8bf7-169d-41aa-bb30-d6b7967348cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e0ad4fee4e94970879bf6be77407c3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e0ad4fee4e94970879bf6be77407c3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e0ad4fee4e94970879bf6be77407c3b.jpg", "file_size": 61149, "is_delete": false, "file_type": 1, "original_file_name": "124A#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0ad4fee4e94970879bf6be77407c3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0ad4fee4e94970879bf6be77407c3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e0ad4fee4e94970879bf6be77407c3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e0ad4fee4e94970879bf6be77407c3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e0ad4fee4e94970879bf6be77407c3b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5cSHwAk7hu4Lj9QVsPx1ojhL4nc=", "createTime": "2024-08-15 15:08:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.753277+00 2025-12-09 10:15:57.753283+00 20476 88380#I-粉色48码 SPMX-20240815315719 \N \N \N 1 \N [{"file_id": "d6de532d-d9e8-486a-b502-468bf63d24e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d7218833bc9463da315584ac0008aa0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d7218833bc9463da315584ac0008aa0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d7218833bc9463da315584ac0008aa0.jpg", "file_size": 17392, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-粉色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7218833bc9463da315584ac0008aa0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7218833bc9463da315584ac0008aa0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d7218833bc9463da315584ac0008aa0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d7218833bc9463da315584ac0008aa0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d7218833bc9463da315584ac0008aa0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HtBQebUfZX4RxjdO2WAHlsDtLjA=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.756552+00 2025-12-09 10:15:57.756559+00 20477 003-2XL SPMX-20240815315722 \N \N \N 1 \N [{"file_id": "ce807c1d-1041-4772-8a7f-3f008535717f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d6a4484e41247bb9fb6437b249d8eb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d6a4484e41247bb9fb6437b249d8eb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d6a4484e41247bb9fb6437b249d8eb9.jpg", "file_size": 14058, "is_delete": false, "file_type": 1, "original_file_name": "003-2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a4484e41247bb9fb6437b249d8eb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a4484e41247bb9fb6437b249d8eb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d6a4484e41247bb9fb6437b249d8eb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d6a4484e41247bb9fb6437b249d8eb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d6a4484e41247bb9fb6437b249d8eb9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b0mFzLV2rdDxer9ekbQGRVuWIqM=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.759834+00 2025-12-09 10:15:57.75984+00 20478 HXF003#VS-D3白 SPMX-20240815315724 \N \N \N 1 \N [{"file_id": "02435789-9d28-45a1-88e8-cdcbb241d691", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4f8c8606244236a623220bb188c99b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4f8c8606244236a623220bb188c99b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4f8c8606244236a623220bb188c99b.jpg", "file_size": 11007, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#VS-D3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f8c8606244236a623220bb188c99b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f8c8606244236a623220bb188c99b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f8c8606244236a623220bb188c99b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4f8c8606244236a623220bb188c99b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4f8c8606244236a623220bb188c99b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iUQBgXPu1UOzHls3fEW1JuGZ58M=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.763208+00 2025-12-09 10:15:57.763214+00 20479 JY-AD-207#4号墨绿色2XL SPMX-20240815315717 \N \N \N 1 \N [{"file_id": "f456a6ea-68e3-4f3c-9a54-5372a175fd6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "361fbaee5f4e46e3921b5d688e29a48d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "361fbaee5f4e46e3921b5d688e29a48d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "361fbaee5f4e46e3921b5d688e29a48d.jpg", "file_size": 21994, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361fbaee5f4e46e3921b5d688e29a48d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361fbaee5f4e46e3921b5d688e29a48d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/361fbaee5f4e46e3921b5d688e29a48d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/361fbaee5f4e46e3921b5d688e29a48d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/361fbaee5f4e46e3921b5d688e29a48d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZEcVv57P0B18L75NvjNCdS0FUc=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.766558+00 2025-12-09 10:15:57.766564+00 20480 HXF002FWE#黑 VS-D3 SPMX-20240815315716 \N \N \N 1 \N [{"file_id": "5c6f5625-f29e-4b2b-81ba-cf3d4e793cb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad4d0090259742ec97251dd448205608.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad4d0090259742ec97251dd448205608.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad4d0090259742ec97251dd448205608.jpg", "file_size": 11435, "is_delete": false, "file_type": 1, "original_file_name": "HXF002FWE#黑 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4d0090259742ec97251dd448205608.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4d0090259742ec97251dd448205608.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad4d0090259742ec97251dd448205608.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad4d0090259742ec97251dd448205608.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad4d0090259742ec97251dd448205608.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1aKbHr7XS1mgT7-NhgKaT7Kqr6A=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.769912+00 2025-12-09 10:15:57.76992+00 20481 FX003FWF#LWQ15 SPMX-20240815315715 \N \N \N 1 \N [{"file_id": "1e9f82f1-ecf6-49e5-b689-44bcca14766f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bbf7a1af1b14124b7621550bb109542.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bbf7a1af1b14124b7621550bb109542.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bbf7a1af1b14124b7621550bb109542.jpg", "file_size": 8774, "is_delete": false, "file_type": 1, "original_file_name": "FX003FWF#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbf7a1af1b14124b7621550bb109542.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbf7a1af1b14124b7621550bb109542.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bbf7a1af1b14124b7621550bb109542.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bbf7a1af1b14124b7621550bb109542.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bbf7a1af1b14124b7621550bb109542.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqX7VmBrt1zmVVeFp3IbL3gQvaU=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.773207+00 2025-12-09 10:15:57.773214+00 20482 DM003-2FW#VS-D3 SPMX-20240815315723 \N \N \N 1 \N [{"file_id": "1ff9567e-65d4-44f4-8553-c00c621f2bc0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "982924b2f7a04ae79dd52266dea1797f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "982924b2f7a04ae79dd52266dea1797f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "982924b2f7a04ae79dd52266dea1797f.jpg", "file_size": 13626, "is_delete": false, "file_type": 1, "original_file_name": "DM003-2FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982924b2f7a04ae79dd52266dea1797f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982924b2f7a04ae79dd52266dea1797f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982924b2f7a04ae79dd52266dea1797f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/982924b2f7a04ae79dd52266dea1797f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/982924b2f7a04ae79dd52266dea1797f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iAIlsbv2iFRGJwHnvE5WnIZo1jA=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.776524+00 2025-12-09 10:15:57.77653+00 20483 FX003FWF#加大版番禺调色 SPMX-20240815315725 \N \N \N 1 \N [{"file_id": "5c9ef42e-0f05-498f-848c-d6188efd7994", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dec10f038a8e4c0fa265402020fb9da6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dec10f038a8e4c0fa265402020fb9da6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dec10f038a8e4c0fa265402020fb9da6.jpg", "file_size": 10461, "is_delete": false, "file_type": 1, "original_file_name": "FX003FWF#加大版番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec10f038a8e4c0fa265402020fb9da6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec10f038a8e4c0fa265402020fb9da6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec10f038a8e4c0fa265402020fb9da6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dec10f038a8e4c0fa265402020fb9da6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dec10f038a8e4c0fa265402020fb9da6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2wehaP3ImGa-r5CX73YW2LChbAQ=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.779811+00 2025-12-09 10:15:57.779817+00 20484 124A#大红 SPMX-20240815315727 \N \N \N 1 \N [{"file_id": "8c46a5b4-bf47-46a7-a3e8-b06c03d76ce6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4b503d5bd604d92bff5f1c978fcfb91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4b503d5bd604d92bff5f1c978fcfb91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4b503d5bd604d92bff5f1c978fcfb91.jpg", "file_size": 62087, "is_delete": false, "file_type": 1, "original_file_name": "124A#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b503d5bd604d92bff5f1c978fcfb91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b503d5bd604d92bff5f1c978fcfb91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4b503d5bd604d92bff5f1c978fcfb91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4b503d5bd604d92bff5f1c978fcfb91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4b503d5bd604d92bff5f1c978fcfb91.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qI6ILN0Y-2Obq5gaPUQV_nXQsJs=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.783156+00 2025-12-09 10:15:57.783161+00 20485 CH09304FWD#炫彩粉XS SPMX-20240815315731 \N \N \N 1 \N [{"file_id": "6309784b-f270-4731-a034-d5435a3d13fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca2be04a488748038baa4620a7b00922.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca2be04a488748038baa4620a7b00922.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca2be04a488748038baa4620a7b00922.jpg", "file_size": 13450, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩粉XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca2be04a488748038baa4620a7b00922.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca2be04a488748038baa4620a7b00922.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca2be04a488748038baa4620a7b00922.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca2be04a488748038baa4620a7b00922.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca2be04a488748038baa4620a7b00922.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N_OKNzhqxan208s_labll6qWUCU=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.786422+00 2025-12-09 10:15:57.78643+00 20486 LJH25008-3#绿色 SPMX-20240815315733 \N \N \N 1 \N [{"file_id": "33945baf-c5ef-4a21-87f3-bad9f880a652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2eb97628bc24a788a9824bcd7855c8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2eb97628bc24a788a9824bcd7855c8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2eb97628bc24a788a9824bcd7855c8b.jpg", "file_size": 64309, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2eb97628bc24a788a9824bcd7855c8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2eb97628bc24a788a9824bcd7855c8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2eb97628bc24a788a9824bcd7855c8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2eb97628bc24a788a9824bcd7855c8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2eb97628bc24a788a9824bcd7855c8b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dachELUJPs3LiqhcaSqrlnb_Ai4=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.789687+00 2025-12-09 10:15:57.789691+00 20487 003-2XL袖口 SPMX-20240815315732 \N \N \N 1 \N [{"file_id": "fb098692-a7b2-4432-b195-2e20a35241ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a4581fa70694d51a58ef3f7d879df10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a4581fa70694d51a58ef3f7d879df10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a4581fa70694d51a58ef3f7d879df10.jpg", "file_size": 5480, "is_delete": false, "file_type": 1, "original_file_name": "003-2XL袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4581fa70694d51a58ef3f7d879df10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4581fa70694d51a58ef3f7d879df10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a4581fa70694d51a58ef3f7d879df10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a4581fa70694d51a58ef3f7d879df10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a4581fa70694d51a58ef3f7d879df10.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRAp6-4JusFbySbzsbneG8ma5eI=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.792987+00 2025-12-09 10:15:57.792994+00 20488 24077#-1-B-中间 SPMX-20240815315726 \N \N \N 1 \N [{"file_id": "71fb62f9-187e-47e7-a4bb-b2a7e6ef157d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a14e435482af48f3b3281fd715a9f2f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a14e435482af48f3b3281fd715a9f2f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a14e435482af48f3b3281fd715a9f2f7.jpg", "file_size": 49781, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-B-中间.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14e435482af48f3b3281fd715a9f2f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14e435482af48f3b3281fd715a9f2f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a14e435482af48f3b3281fd715a9f2f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a14e435482af48f3b3281fd715a9f2f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a14e435482af48f3b3281fd715a9f2f7.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:edqA-QPM8VGGpdlvAUXRR_K9_Qw=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.796365+00 2025-12-09 10:15:57.796373+00 20489 88380#I-粉色50码 SPMX-20240815315730 \N \N \N 1 \N [{"file_id": "9bb7002f-4838-43af-9212-9f3f30e0b937", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b9eff98d5eb4a5487941b3faf78df4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b9eff98d5eb4a5487941b3faf78df4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b9eff98d5eb4a5487941b3faf78df4d.jpg", "file_size": 17990, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-粉色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9eff98d5eb4a5487941b3faf78df4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9eff98d5eb4a5487941b3faf78df4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b9eff98d5eb4a5487941b3faf78df4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b9eff98d5eb4a5487941b3faf78df4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b9eff98d5eb4a5487941b3faf78df4d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfmwN26GibnPQRRapQUrgKL8R3c=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.799679+00 2025-12-09 10:15:57.799685+00 20490 JY-AD-207#4号墨绿色3XL SPMX-20240815315728 \N \N \N 1 \N [{"file_id": "c65f9147-2b89-4cff-a92d-5220e7ffa07a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd979ecf92aa416e84c80c942eade4bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd979ecf92aa416e84c80c942eade4bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd979ecf92aa416e84c80c942eade4bb.jpg", "file_size": 21490, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979ecf92aa416e84c80c942eade4bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979ecf92aa416e84c80c942eade4bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd979ecf92aa416e84c80c942eade4bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd979ecf92aa416e84c80c942eade4bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd979ecf92aa416e84c80c942eade4bb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dvhVVO_uEQQrkGiXUc03Eu1bGTk=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.803442+00 2025-12-09 10:15:57.803449+00 20491 LZ1417#童装T1号色 SPMX-20240815315729 \N \N \N 1 \N [{"file_id": "6bb70b31-7ffc-45d8-84b9-ae4395b8f6dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09130df93433488780f5d553e61a7017.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09130df93433488780f5d553e61a7017.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09130df93433488780f5d553e61a7017.jpg", "file_size": 23486, "is_delete": false, "file_type": 1, "original_file_name": "LZ1417#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09130df93433488780f5d553e61a7017.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09130df93433488780f5d553e61a7017.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09130df93433488780f5d553e61a7017.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09130df93433488780f5d553e61a7017.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09130df93433488780f5d553e61a7017.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IacaDqQ1_o08mYC7dso_hxBjfvc=", "createTime": "2024-08-15 15:08:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.807118+00 2025-12-09 10:15:57.807124+00 20492 DM003-4FW#VS-D3 SPMX-20240815315734 \N \N \N 1 \N [{"file_id": "19934933-9cce-4d82-b320-e3f096564ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "238767bf87be46e2b613cb1e3f121156.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "238767bf87be46e2b613cb1e3f121156.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "238767bf87be46e2b613cb1e3f121156.jpg", "file_size": 14160, "is_delete": false, "file_type": 1, "original_file_name": "DM003-4FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238767bf87be46e2b613cb1e3f121156.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238767bf87be46e2b613cb1e3f121156.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/238767bf87be46e2b613cb1e3f121156.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/238767bf87be46e2b613cb1e3f121156.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/238767bf87be46e2b613cb1e3f121156.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyrJc_5DUNW5Hql56moC-1gWqMk=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.810597+00 2025-12-09 10:15:57.810603+00 20493 003-3FWE#L SPMX-20240815315743 \N \N \N 1 \N [{"file_id": "eca69c99-b462-4813-9e00-6948b00b7da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a88cf93b721e44aab566ae0f37c97baa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a88cf93b721e44aab566ae0f37c97baa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a88cf93b721e44aab566ae0f37c97baa.jpg", "file_size": 17123, "is_delete": false, "file_type": 1, "original_file_name": "003-3FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88cf93b721e44aab566ae0f37c97baa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88cf93b721e44aab566ae0f37c97baa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a88cf93b721e44aab566ae0f37c97baa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a88cf93b721e44aab566ae0f37c97baa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a88cf93b721e44aab566ae0f37c97baa.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wqQcQqiCElKTBojA3BA0_5vAzH0=", "createTime": "2024-08-15 15:08:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.814049+00 2025-12-09 10:15:57.814055+00 20494 124A#玫红 SPMX-20240815315739 \N \N \N 1 \N [{"file_id": "b40bdfbe-dff8-4b08-9be9-a10da2551468", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b112c3ad8e1b4b92942a5e1708e0541a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b112c3ad8e1b4b92942a5e1708e0541a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b112c3ad8e1b4b92942a5e1708e0541a.jpg", "file_size": 62237, "is_delete": false, "file_type": 1, "original_file_name": "124A#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b112c3ad8e1b4b92942a5e1708e0541a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b112c3ad8e1b4b92942a5e1708e0541a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b112c3ad8e1b4b92942a5e1708e0541a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b112c3ad8e1b4b92942a5e1708e0541a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b112c3ad8e1b4b92942a5e1708e0541a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CU7WEAZDicRUCnwEuY9jFdiLFvA=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.817398+00 2025-12-09 10:15:57.817405+00 20495 HXF003#VS-D3粉 SPMX-20240815315735 \N \N \N 1 \N [{"file_id": "1cbb3122-81c1-48a4-864a-29d29b835668", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b643d273b4924f3aa703a219c3194b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b643d273b4924f3aa703a219c3194b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b643d273b4924f3aa703a219c3194b46.jpg", "file_size": 10451, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643d273b4924f3aa703a219c3194b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643d273b4924f3aa703a219c3194b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b643d273b4924f3aa703a219c3194b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b643d273b4924f3aa703a219c3194b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b643d273b4924f3aa703a219c3194b46.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sViG2GssH5O8ReumvBvyIlQ1yHw=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.820765+00 2025-12-09 10:15:57.820772+00 20496 LJH25008-3#黄色 SPMX-20240815315744 \N \N \N 1 \N [{"file_id": "7def2b4d-45d2-42b7-bce0-1c2bcab351b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a68c9da8aab4798a8554ce42a31d9de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a68c9da8aab4798a8554ce42a31d9de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a68c9da8aab4798a8554ce42a31d9de.jpg", "file_size": 62924, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-3#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a68c9da8aab4798a8554ce42a31d9de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a68c9da8aab4798a8554ce42a31d9de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a68c9da8aab4798a8554ce42a31d9de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a68c9da8aab4798a8554ce42a31d9de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a68c9da8aab4798a8554ce42a31d9de.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L031ppDNWAmXfju43vzGTIY3-Ow=", "createTime": "2024-08-15 15:08:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.824097+00 2025-12-09 10:15:57.824103+00 20497 JY-AD-207#4号墨绿色L SPMX-20240815315736 \N \N \N 1 \N [{"file_id": "01d4ad1f-00fa-4189-9ae6-5509283dbe69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f4c86c84052492eb7e4ede1504dc289.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f4c86c84052492eb7e4ede1504dc289.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f4c86c84052492eb7e4ede1504dc289.jpg", "file_size": 24539, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4c86c84052492eb7e4ede1504dc289.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4c86c84052492eb7e4ede1504dc289.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f4c86c84052492eb7e4ede1504dc289.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f4c86c84052492eb7e4ede1504dc289.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f4c86c84052492eb7e4ede1504dc289.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ckSCQzn3di_DGp9Kjg42nNtdnLI=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.827304+00 2025-12-09 10:15:57.82731+00 20498 88380#I-紫色42码 SPMX-20240815315741 \N \N \N 1 \N [{"file_id": "1cad5ed2-bf16-428a-b413-1e3ab1acc15c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c5266f8947941f5a08b29a964092a4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c5266f8947941f5a08b29a964092a4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c5266f8947941f5a08b29a964092a4a.jpg", "file_size": 19302, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-紫色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5266f8947941f5a08b29a964092a4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5266f8947941f5a08b29a964092a4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c5266f8947941f5a08b29a964092a4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c5266f8947941f5a08b29a964092a4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c5266f8947941f5a08b29a964092a4a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y1dx3p4lT6w2lPBNzlJcbs6tT-M=", "createTime": "2024-08-15 15:08:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.830548+00 2025-12-09 10:15:57.830554+00 20499 FX004#D SPMX-20240815315737 \N \N \N 1 \N [{"file_id": "b4630ad7-d595-40b4-bcac-d0f6eaf042b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ad37b7e82e341028157ba1ab3ab039f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ad37b7e82e341028157ba1ab3ab039f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ad37b7e82e341028157ba1ab3ab039f.jpg", "file_size": 19778, "is_delete": false, "file_type": 1, "original_file_name": "FX004#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad37b7e82e341028157ba1ab3ab039f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad37b7e82e341028157ba1ab3ab039f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ad37b7e82e341028157ba1ab3ab039f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ad37b7e82e341028157ba1ab3ab039f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ad37b7e82e341028157ba1ab3ab039f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LlqNXZ3CyKr2I_vjtWEZUE-3KRo=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.83385+00 2025-12-09 10:15:57.833858+00 20500 24077#-1-B SPMX-20240815315738 \N \N \N 1 \N [{"file_id": "85ed1abc-dc67-42e5-bb8f-79827a074cf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b50be93f7ec441c2858c57883e3b7c8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b50be93f7ec441c2858c57883e3b7c8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b50be93f7ec441c2858c57883e3b7c8e.jpg", "file_size": 52623, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50be93f7ec441c2858c57883e3b7c8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50be93f7ec441c2858c57883e3b7c8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50be93f7ec441c2858c57883e3b7c8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b50be93f7ec441c2858c57883e3b7c8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b50be93f7ec441c2858c57883e3b7c8e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9BhuELCTp_j6Bbstni3H7JIO7c=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.837201+00 2025-12-09 10:15:57.837208+00 20501 LZ1417#童装T2号色 SPMX-20240815315740 \N \N \N 1 \N [{"file_id": "3f57457b-1b53-443c-b114-a4fd2474e831", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ce69ed3dc4494689d8082a339b9b0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ce69ed3dc4494689d8082a339b9b0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ce69ed3dc4494689d8082a339b9b0e.jpg", "file_size": 22298, "is_delete": false, "file_type": 1, "original_file_name": "LZ1417#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ce69ed3dc4494689d8082a339b9b0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ce69ed3dc4494689d8082a339b9b0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ce69ed3dc4494689d8082a339b9b0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ce69ed3dc4494689d8082a339b9b0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ce69ed3dc4494689d8082a339b9b0e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kijoT54RSnHRsRFIK_HNTagraLY=", "createTime": "2024-08-15 15:08:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.840488+00 2025-12-09 10:15:57.840495+00 20502 CH09304FWD#炫彩紫L SPMX-20240815315742 \N \N \N 1 \N [{"file_id": "d93cc7cc-e41e-4d12-88e0-8e89ba05b66f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8bec98c2b12476494c0fbd1c289ae9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8bec98c2b12476494c0fbd1c289ae9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8bec98c2b12476494c0fbd1c289ae9a.jpg", "file_size": 14214, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩紫L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bec98c2b12476494c0fbd1c289ae9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bec98c2b12476494c0fbd1c289ae9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bec98c2b12476494c0fbd1c289ae9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8bec98c2b12476494c0fbd1c289ae9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8bec98c2b12476494c0fbd1c289ae9a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cmbHeh-WUtfUIFGR5Bg00AFvK-E=", "createTime": "2024-08-15 15:08:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.8438+00 2025-12-09 10:15:57.843807+00 20503 LZ1417#童装T3号色 SPMX-20240815315745 \N \N \N 1 \N [{"file_id": "9387e8bd-608e-4de4-bab3-9b996440f5e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bf7f0f67daf48f9b9c3e66770be4e23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bf7f0f67daf48f9b9c3e66770be4e23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bf7f0f67daf48f9b9c3e66770be4e23.jpg", "file_size": 22771, "is_delete": false, "file_type": 1, "original_file_name": "LZ1417#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf7f0f67daf48f9b9c3e66770be4e23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf7f0f67daf48f9b9c3e66770be4e23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bf7f0f67daf48f9b9c3e66770be4e23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bf7f0f67daf48f9b9c3e66770be4e23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bf7f0f67daf48f9b9c3e66770be4e23.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:io83yVXQywJ79pIaBmcgp-VXsS8=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.847139+00 2025-12-09 10:15:57.847145+00 20504 88380#I-紫色44码 SPMX-20240815315752 \N \N \N 1 \N [{"file_id": "d72b7ec7-d371-4b63-a593-de4212b06ddd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb15d9d2d61f4e01977bf3a13391fe1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb15d9d2d61f4e01977bf3a13391fe1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb15d9d2d61f4e01977bf3a13391fe1c.jpg", "file_size": 19976, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-紫色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb15d9d2d61f4e01977bf3a13391fe1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb15d9d2d61f4e01977bf3a13391fe1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb15d9d2d61f4e01977bf3a13391fe1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb15d9d2d61f4e01977bf3a13391fe1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb15d9d2d61f4e01977bf3a13391fe1c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OdConbrE3NrEMMu1uUe9r10d-Wk=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.850424+00 2025-12-09 10:15:57.850431+00 20505 FX004#绿色格子 SPMX-20240815315758 \N \N \N 1 \N [{"file_id": "da2b5d46-89a6-4293-ae30-b3f86cb425be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d8c6174b7db42a0999df34c0426fbdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d8c6174b7db42a0999df34c0426fbdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d8c6174b7db42a0999df34c0426fbdd.jpg", "file_size": 16733, "is_delete": false, "file_type": 1, "original_file_name": "FX004#绿色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8c6174b7db42a0999df34c0426fbdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8c6174b7db42a0999df34c0426fbdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8c6174b7db42a0999df34c0426fbdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d8c6174b7db42a0999df34c0426fbdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d8c6174b7db42a0999df34c0426fbdd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fRleoevETKcIgw_9oC0r3p7s34=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.853758+00 2025-12-09 10:15:57.853764+00 20506 LZ1417#童装T4号色 SPMX-20240815315756 \N \N \N 1 \N [{"file_id": "471875e1-e401-48de-90cf-5a8423799131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fcdb55a42e242e08d81e256356a4d78.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fcdb55a42e242e08d81e256356a4d78.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fcdb55a42e242e08d81e256356a4d78.jpg", "file_size": 23897, "is_delete": false, "file_type": 1, "original_file_name": "LZ1417#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdb55a42e242e08d81e256356a4d78.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdb55a42e242e08d81e256356a4d78.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdb55a42e242e08d81e256356a4d78.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fcdb55a42e242e08d81e256356a4d78.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fcdb55a42e242e08d81e256356a4d78.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkuVkjoDhszq9bYgkiXsBje3D9g=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.857006+00 2025-12-09 10:15:57.857012+00 20507 HXF003#Z粉底 SPMX-20240815315757 \N \N \N 1 \N [{"file_id": "379d2525-c155-4dd2-aff4-694e7dab461b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "386012fb947345c6bb866d8f6debd386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "386012fb947345c6bb866d8f6debd386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "386012fb947345c6bb866d8f6debd386.jpg", "file_size": 12290, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#Z粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386012fb947345c6bb866d8f6debd386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386012fb947345c6bb866d8f6debd386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/386012fb947345c6bb866d8f6debd386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/386012fb947345c6bb866d8f6debd386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/386012fb947345c6bb866d8f6debd386.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uATKSMS5OMwA5Xe8Zf6rqxz3hqk=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.860312+00 2025-12-09 10:15:57.860319+00 20508 HXF003#Z白底 SPMX-20240815315746 \N \N \N 1 \N [{"file_id": "2e7c2c9d-47ae-47e6-94c7-c63b768fea29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe78b0c5844c4d259402dc721bddf85d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe78b0c5844c4d259402dc721bddf85d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe78b0c5844c4d259402dc721bddf85d.jpg", "file_size": 13550, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#Z白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe78b0c5844c4d259402dc721bddf85d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe78b0c5844c4d259402dc721bddf85d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe78b0c5844c4d259402dc721bddf85d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe78b0c5844c4d259402dc721bddf85d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe78b0c5844c4d259402dc721bddf85d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0C1HZwvPN666ZJzSIGysWtpbdk=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.863674+00 2025-12-09 10:15:57.863682+00 20509 DM003-5FW#VS-D3 SPMX-20240815315749 \N \N \N 1 \N [{"file_id": "fbfb17a8-56a3-4a1f-837d-9116df78bf5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "534e1b7f10094581aa4c26e7775638bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "534e1b7f10094581aa4c26e7775638bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "534e1b7f10094581aa4c26e7775638bb.jpg", "file_size": 13796, "is_delete": false, "file_type": 1, "original_file_name": "DM003-5FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534e1b7f10094581aa4c26e7775638bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534e1b7f10094581aa4c26e7775638bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/534e1b7f10094581aa4c26e7775638bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/534e1b7f10094581aa4c26e7775638bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/534e1b7f10094581aa4c26e7775638bb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UmvzPWAUByPhayb6Z2abpQLwEB4=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.867028+00 2025-12-09 10:15:57.867034+00 20510 24077#-1-C-右 SPMX-20240815315753 \N \N \N 1 \N [{"file_id": "5d730e82-b50d-4fcf-8e15-9aee3d7aa900", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60069a2c966d4fc9b0aabf2c8cd65351.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60069a2c966d4fc9b0aabf2c8cd65351.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60069a2c966d4fc9b0aabf2c8cd65351.jpg", "file_size": 43396, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-C-右.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60069a2c966d4fc9b0aabf2c8cd65351.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60069a2c966d4fc9b0aabf2c8cd65351.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60069a2c966d4fc9b0aabf2c8cd65351.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60069a2c966d4fc9b0aabf2c8cd65351.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60069a2c966d4fc9b0aabf2c8cd65351.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UsfceAyCe-wue-Jnlk-8UaDc_3w=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.870349+00 2025-12-09 10:15:57.870355+00 20511 CH09304FWD#炫彩紫S SPMX-20240815315760 \N \N \N 1 \N [{"file_id": "faad7f93-e22f-41a6-9e7c-58f5afb6e789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a8143f6ba8c4882b271a3407815358e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a8143f6ba8c4882b271a3407815358e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a8143f6ba8c4882b271a3407815358e.jpg", "file_size": 13584, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩紫S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8143f6ba8c4882b271a3407815358e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8143f6ba8c4882b271a3407815358e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8143f6ba8c4882b271a3407815358e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a8143f6ba8c4882b271a3407815358e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a8143f6ba8c4882b271a3407815358e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IH67swl972jpg1R_8EC3Dhkd3RE=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.873628+00 2025-12-09 10:15:57.873639+00 20512 FX004#红色格子 SPMX-20240815315747 \N \N \N 1 \N [{"file_id": "379ebc3a-16fc-468b-9c3b-3a0f271601f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09360c15b02b49718673923ddf216817.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09360c15b02b49718673923ddf216817.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09360c15b02b49718673923ddf216817.jpg", "file_size": 15711, "is_delete": false, "file_type": 1, "original_file_name": "FX004#红色格子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09360c15b02b49718673923ddf216817.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09360c15b02b49718673923ddf216817.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09360c15b02b49718673923ddf216817.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09360c15b02b49718673923ddf216817.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09360c15b02b49718673923ddf216817.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P8Wk46A92MWMlyMQPzt40q5ygMw=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.876971+00 2025-12-09 10:15:57.876977+00 20513 003-3FWE#M SPMX-20240815315751 \N \N \N 1 \N [{"file_id": "421ac9d0-acb7-49ca-b8a6-8d70dc24cafb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "134ede3f4bd44741b95941881c4d7e80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "134ede3f4bd44741b95941881c4d7e80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "134ede3f4bd44741b95941881c4d7e80.jpg", "file_size": 16789, "is_delete": false, "file_type": 1, "original_file_name": "003-3FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134ede3f4bd44741b95941881c4d7e80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134ede3f4bd44741b95941881c4d7e80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/134ede3f4bd44741b95941881c4d7e80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/134ede3f4bd44741b95941881c4d7e80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/134ede3f4bd44741b95941881c4d7e80.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YECLwnyDJ6Xoo5HoKKFfnMtlUmQ=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.88021+00 2025-12-09 10:15:57.880216+00 20514 124A#绿色 SPMX-20240815315748 \N \N \N 1 \N [{"file_id": "19c17a2c-f5de-4e99-8f0c-4ec19a2aafc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f08d13ac00f477b9844c28876165cc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f08d13ac00f477b9844c28876165cc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f08d13ac00f477b9844c28876165cc4.jpg", "file_size": 60217, "is_delete": false, "file_type": 1, "original_file_name": "124A#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f08d13ac00f477b9844c28876165cc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f08d13ac00f477b9844c28876165cc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f08d13ac00f477b9844c28876165cc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f08d13ac00f477b9844c28876165cc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f08d13ac00f477b9844c28876165cc4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xX8JlBEnH0mD8OtW1ZPtlRB_dE=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.88351+00 2025-12-09 10:15:57.883516+00 20515 CH09304FWD#炫彩紫M SPMX-20240815315750 \N \N \N 1 \N [{"file_id": "c28e3de4-cce1-4201-8002-c16db5d8d00a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f3d716c266e44098abec06c707302ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f3d716c266e44098abec06c707302ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f3d716c266e44098abec06c707302ad.jpg", "file_size": 13753, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩紫M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3d716c266e44098abec06c707302ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3d716c266e44098abec06c707302ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3d716c266e44098abec06c707302ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f3d716c266e44098abec06c707302ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f3d716c266e44098abec06c707302ad.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u515A0hT4hpHBjha2C9fuzKpDZg=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.916216+00 2025-12-09 10:15:57.916222+00 20524 003-3XL门边 SPMX-20240815315762 \N \N \N 1 \N [{"file_id": "a377cdff-3950-4f12-99cb-7c15b87aa03b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ead7d19065d2476287f8fc17e9e58e2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ead7d19065d2476287f8fc17e9e58e2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ead7d19065d2476287f8fc17e9e58e2e.jpg", "file_size": 19543, "is_delete": false, "file_type": 1, "original_file_name": "003-3XL门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead7d19065d2476287f8fc17e9e58e2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead7d19065d2476287f8fc17e9e58e2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ead7d19065d2476287f8fc17e9e58e2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ead7d19065d2476287f8fc17e9e58e2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ead7d19065d2476287f8fc17e9e58e2e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kXGkyGJx5TYzgdxfmELfLPYZvq4=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.887086+00 2025-12-09 10:15:57.887092+00 20516 JY-AD-207#4号墨绿色M SPMX-20240815315754 \N \N \N 1 \N [{"file_id": "8ff321ad-3bb0-4c70-867f-bfc703a366ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "116554c638fe4ce1995df9ae4d28c7ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "116554c638fe4ce1995df9ae4d28c7ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "116554c638fe4ce1995df9ae4d28c7ff.jpg", "file_size": 24498, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116554c638fe4ce1995df9ae4d28c7ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116554c638fe4ce1995df9ae4d28c7ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/116554c638fe4ce1995df9ae4d28c7ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/116554c638fe4ce1995df9ae4d28c7ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/116554c638fe4ce1995df9ae4d28c7ff.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OQ5XslkCBjmOMU8aHIRIsp8PDfc=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.89069+00 2025-12-09 10:15:57.890697+00 20517 DM027#1XL SPMX-20240815315759 \N \N \N 1 \N [{"file_id": "67c1f8d6-136b-407d-b39f-747029d1e490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b86fcdf62d84409f8e49ebd174b4d176.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b86fcdf62d84409f8e49ebd174b4d176.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b86fcdf62d84409f8e49ebd174b4d176.jpg", "file_size": 65617, "is_delete": false, "file_type": 1, "original_file_name": "DM027#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86fcdf62d84409f8e49ebd174b4d176.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86fcdf62d84409f8e49ebd174b4d176.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86fcdf62d84409f8e49ebd174b4d176.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b86fcdf62d84409f8e49ebd174b4d176.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b86fcdf62d84409f8e49ebd174b4d176.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BsKuL_7Vtt-v3qfKLvJrDv4-fsg=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.894261+00 2025-12-09 10:15:57.894268+00 20518 LJH25008-3#黑色 SPMX-20240815315755 \N \N \N 1 \N [{"file_id": "771bab33-89dc-4263-b4e8-6593dec4c37b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64a180dc8b63482ab0cb7154443441a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64a180dc8b63482ab0cb7154443441a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64a180dc8b63482ab0cb7154443441a8.jpg", "file_size": 64201, "is_delete": false, "file_type": 1, "original_file_name": "LJH25008-3#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a180dc8b63482ab0cb7154443441a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a180dc8b63482ab0cb7154443441a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64a180dc8b63482ab0cb7154443441a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64a180dc8b63482ab0cb7154443441a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64a180dc8b63482ab0cb7154443441a8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U-o-kZJXDgm_1B-txAJnGsp4h5o=", "createTime": "2024-08-15 15:08:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.897886+00 2025-12-09 10:15:57.897893+00 20519 LJH6627#枣红色 SPMX-20240815315764 \N \N \N 1 \N [{"file_id": "d0833311-e324-4a3f-8add-e38b6742c934", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf853aea80d8408ab372ae02fe719dce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf853aea80d8408ab372ae02fe719dce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf853aea80d8408ab372ae02fe719dce.jpg", "file_size": 55584, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf853aea80d8408ab372ae02fe719dce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf853aea80d8408ab372ae02fe719dce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf853aea80d8408ab372ae02fe719dce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf853aea80d8408ab372ae02fe719dce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf853aea80d8408ab372ae02fe719dce.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XUOg_rZUDiRwQfL-KmxFvblKw1Y=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.901463+00 2025-12-09 10:15:57.90147+00 20520 88380#I-紫色46码 SPMX-20240815315761 \N \N \N 1 \N [{"file_id": "994424ac-b0cc-4a80-9645-1a815398d3ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6b359cf153144a5bbb2c1a5ad4f9d22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6b359cf153144a5bbb2c1a5ad4f9d22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6b359cf153144a5bbb2c1a5ad4f9d22.jpg", "file_size": 19716, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-紫色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b359cf153144a5bbb2c1a5ad4f9d22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b359cf153144a5bbb2c1a5ad4f9d22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6b359cf153144a5bbb2c1a5ad4f9d22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6b359cf153144a5bbb2c1a5ad4f9d22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6b359cf153144a5bbb2c1a5ad4f9d22.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yr1Oaw7h2CpVC_EDANHolI-Y7ys=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.905067+00 2025-12-09 10:15:57.905073+00 20521 JY-AD-207#4号墨绿色S SPMX-20240815315763 \N \N \N 1 \N [{"file_id": "96681a3b-c9ad-452c-988d-81f842872df1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e550d8380f524ef786850584b3e96139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e550d8380f524ef786850584b3e96139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e550d8380f524ef786850584b3e96139.jpg", "file_size": 24821, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e550d8380f524ef786850584b3e96139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e550d8380f524ef786850584b3e96139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e550d8380f524ef786850584b3e96139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e550d8380f524ef786850584b3e96139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e550d8380f524ef786850584b3e96139.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFPIVufHsnT-psZ9-jJighUGls4=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.908911+00 2025-12-09 10:15:57.908917+00 20522 FX0042#L码 SPMX-20240815315766 \N \N \N 1 \N [{"file_id": "686257a9-4598-4ea8-846f-9acd1c73f735", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7564558388c463aa15cadfbea2c9ee3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7564558388c463aa15cadfbea2c9ee3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7564558388c463aa15cadfbea2c9ee3.jpg", "file_size": 26428, "is_delete": false, "file_type": 1, "original_file_name": "FX0042#L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7564558388c463aa15cadfbea2c9ee3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7564558388c463aa15cadfbea2c9ee3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7564558388c463aa15cadfbea2c9ee3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7564558388c463aa15cadfbea2c9ee3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7564558388c463aa15cadfbea2c9ee3.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KP6yBwmcVPaL2mMZvI7-6SFl3dc=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.912754+00 2025-12-09 10:15:57.912761+00 20523 HXF003#白 SPMX-20240815315765 \N \N \N 1 \N [{"file_id": "d1d73538-c96a-4089-b5cf-d97cc8c0e3f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5c8ad7e80584413872c671cb206d68f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5c8ad7e80584413872c671cb206d68f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5c8ad7e80584413872c671cb206d68f.jpg", "file_size": 13773, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c8ad7e80584413872c671cb206d68f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c8ad7e80584413872c671cb206d68f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5c8ad7e80584413872c671cb206d68f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5c8ad7e80584413872c671cb206d68f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5c8ad7e80584413872c671cb206d68f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chUIpytOrqkE5UgYNLoVMmORNjs=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.919563+00 2025-12-09 10:15:57.91957+00 20525 JY-AD-207#4号墨绿色XL SPMX-20240815315774 \N \N \N 1 \N [{"file_id": "a3afb91d-577a-4c87-96ec-ca4c7035df36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg", "file_size": 22903, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号墨绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff2dc9c6d5e8471d8d98e631dc61ce4a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P7fyrgeP4MK-o8h1Q2xb7GIzvHc=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.922947+00 2025-12-09 10:15:57.922954+00 20526 CH09304FWD#炫彩紫XL SPMX-20240815315769 \N \N \N 1 \N [{"file_id": "00b0a476-9ccf-44bc-925a-54c26c126c74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d99b5bbedccd45d8be00f467250fe0fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d99b5bbedccd45d8be00f467250fe0fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d99b5bbedccd45d8be00f467250fe0fe.jpg", "file_size": 14234, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩紫XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99b5bbedccd45d8be00f467250fe0fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99b5bbedccd45d8be00f467250fe0fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d99b5bbedccd45d8be00f467250fe0fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d99b5bbedccd45d8be00f467250fe0fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d99b5bbedccd45d8be00f467250fe0fe.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mgpdrj-nb8qpdpIdwuXSbEBt3Gw=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.92629+00 2025-12-09 10:15:57.926296+00 20527 88380#I-紫色48码 SPMX-20240815315773 \N \N \N 1 \N [{"file_id": "f460054d-a5e3-40b9-b525-7c6ca7b9a728", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f4270b7063e4160992a9185d5c5e961.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f4270b7063e4160992a9185d5c5e961.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f4270b7063e4160992a9185d5c5e961.jpg", "file_size": 19829, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-紫色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4270b7063e4160992a9185d5c5e961.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4270b7063e4160992a9185d5c5e961.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f4270b7063e4160992a9185d5c5e961.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f4270b7063e4160992a9185d5c5e961.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f4270b7063e4160992a9185d5c5e961.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iBfxb6OANqYtlk4d9ZsWGr6KYMY=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.929623+00 2025-12-09 10:15:57.92963+00 20528 LJH6627#橙色 SPMX-20240815315775 \N \N \N 1 \N [{"file_id": "632cf079-7b91-4891-bb7e-2d2877b01da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a0ec97b33974736bed72cbcce723cb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a0ec97b33974736bed72cbcce723cb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a0ec97b33974736bed72cbcce723cb5.jpg", "file_size": 54079, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0ec97b33974736bed72cbcce723cb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0ec97b33974736bed72cbcce723cb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a0ec97b33974736bed72cbcce723cb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a0ec97b33974736bed72cbcce723cb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a0ec97b33974736bed72cbcce723cb5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e6BdBDe-exLeTUMo-vB8Fmc_ah8=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.932959+00 2025-12-09 10:15:57.932965+00 20529 DM027#2XL SPMX-20240815315768 \N \N \N 1 \N [{"file_id": "097a343d-d106-4212-a04b-c43571c45e40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a81d1e6fc9234f52a26e289825c913a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a81d1e6fc9234f52a26e289825c913a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a81d1e6fc9234f52a26e289825c913a0.jpg", "file_size": 51807, "is_delete": false, "file_type": 1, "original_file_name": "DM027#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81d1e6fc9234f52a26e289825c913a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81d1e6fc9234f52a26e289825c913a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81d1e6fc9234f52a26e289825c913a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a81d1e6fc9234f52a26e289825c913a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a81d1e6fc9234f52a26e289825c913a0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cc3n7Ao9E_eSJvpm9mABX37Fd5k=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.936297+00 2025-12-09 10:15:57.936304+00 20530 HXF003#粉 SPMX-20240815315776 \N \N \N 1 \N [{"file_id": "f094914b-9cb9-4df8-9c5e-717cad91ec5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7314f02890e04fe290b72c743a8f134d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7314f02890e04fe290b72c743a8f134d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7314f02890e04fe290b72c743a8f134d.jpg", "file_size": 12666, "is_delete": false, "file_type": 1, "original_file_name": "HXF003#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314f02890e04fe290b72c743a8f134d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314f02890e04fe290b72c743a8f134d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7314f02890e04fe290b72c743a8f134d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7314f02890e04fe290b72c743a8f134d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7314f02890e04fe290b72c743a8f134d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sxHMNGoWn1G3i8Ab_0L7OhMXTBg=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.939719+00 2025-12-09 10:15:57.939726+00 20531 LZ1417#童装T5号色 SPMX-20240815315767 \N \N \N 1 \N [{"file_id": "94db4050-f3ed-47bf-98b9-8eb3b3b4e223", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44fd23b256794cad892231047ebe53b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44fd23b256794cad892231047ebe53b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44fd23b256794cad892231047ebe53b9.jpg", "file_size": 23090, "is_delete": false, "file_type": 1, "original_file_name": "LZ1417#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fd23b256794cad892231047ebe53b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fd23b256794cad892231047ebe53b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44fd23b256794cad892231047ebe53b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44fd23b256794cad892231047ebe53b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44fd23b256794cad892231047ebe53b9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lyGP25AQcU3cx4Sw4y6GhWFJSBE=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.943053+00 2025-12-09 10:15:57.94306+00 20532 24077#-1-C SPMX-20240815315770 \N \N \N 1 \N [{"file_id": "297d2107-9702-45ec-8741-f556313c19e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e4b30fa00ef483499b4dc6a027a5f8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e4b30fa00ef483499b4dc6a027a5f8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e4b30fa00ef483499b4dc6a027a5f8d.jpg", "file_size": 44599, "is_delete": false, "file_type": 1, "original_file_name": "24077#-1-C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4b30fa00ef483499b4dc6a027a5f8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4b30fa00ef483499b4dc6a027a5f8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e4b30fa00ef483499b4dc6a027a5f8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e4b30fa00ef483499b4dc6a027a5f8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e4b30fa00ef483499b4dc6a027a5f8d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjyTkzyMvmZg2P347qbp_wBUna8=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.946451+00 2025-12-09 10:15:57.946458+00 20533 124A#蓝色 SPMX-20240815315771 \N \N \N 1 \N [{"file_id": "fc269b6a-9fb6-45c3-900f-f5930155cfdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30114dd6106f4c77a24648029ec197cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30114dd6106f4c77a24648029ec197cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30114dd6106f4c77a24648029ec197cd.jpg", "file_size": 62677, "is_delete": false, "file_type": 1, "original_file_name": "124A#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30114dd6106f4c77a24648029ec197cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30114dd6106f4c77a24648029ec197cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30114dd6106f4c77a24648029ec197cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30114dd6106f4c77a24648029ec197cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30114dd6106f4c77a24648029ec197cd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p0_TETMWoseGEEWrPL3vkB-mHeY=", "createTime": "2024-08-15 15:08:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.949692+00 2025-12-09 10:15:57.949703+00 20534 003-453#WJC22 SPMX-20240815315772 \N \N \N 1 \N [{"file_id": "a335a875-2ded-49c2-a702-7e242e00e834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b40320ad18cb4bf49fd8c63241e3d4fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b40320ad18cb4bf49fd8c63241e3d4fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b40320ad18cb4bf49fd8c63241e3d4fb.jpg", "file_size": 14842, "is_delete": false, "file_type": 1, "original_file_name": "003-453#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40320ad18cb4bf49fd8c63241e3d4fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40320ad18cb4bf49fd8c63241e3d4fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b40320ad18cb4bf49fd8c63241e3d4fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b40320ad18cb4bf49fd8c63241e3d4fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b40320ad18cb4bf49fd8c63241e3d4fb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fivi0VPNdvoWHoB9_uxURMGpWn4=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.953194+00 2025-12-09 10:15:57.953201+00 20535 CH09304FWD#炫彩紫XS SPMX-20240815315780 \N \N \N 1 \N [{"file_id": "3f379b8e-6509-48f5-b76c-86bccc182837", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90654e36b3984a78bdec60a05125e1f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90654e36b3984a78bdec60a05125e1f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90654e36b3984a78bdec60a05125e1f1.jpg", "file_size": 13593, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩紫XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90654e36b3984a78bdec60a05125e1f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90654e36b3984a78bdec60a05125e1f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90654e36b3984a78bdec60a05125e1f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90654e36b3984a78bdec60a05125e1f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90654e36b3984a78bdec60a05125e1f1.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kwo5FuOCj8dip1obvgtMcLxn-ww=", "createTime": "2024-08-15 15:08:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.956563+00 2025-12-09 10:15:57.95657+00 20536 FX0042#M码 SPMX-20240815315777 \N \N \N 1 \N [{"file_id": "62dd7e4c-e738-423a-8911-ae8668fcba0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fac882835b45435a9ad403c013be8d04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fac882835b45435a9ad403c013be8d04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fac882835b45435a9ad403c013be8d04.jpg", "file_size": 27665, "is_delete": false, "file_type": 1, "original_file_name": "FX0042#M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac882835b45435a9ad403c013be8d04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac882835b45435a9ad403c013be8d04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fac882835b45435a9ad403c013be8d04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fac882835b45435a9ad403c013be8d04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fac882835b45435a9ad403c013be8d04.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yQYbXBMU3welpJrwN2u_eIXyLjo=", "createTime": "2024-08-15 15:08:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.959911+00 2025-12-09 10:15:57.959918+00 20537 LZ1418#童装T1号色 SPMX-20240815315779 \N \N \N 1 \N [{"file_id": "084662b7-5505-4f2f-afe9-90b40dabd096", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4da2bfff11d4e5d89c07bb99afc7d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4da2bfff11d4e5d89c07bb99afc7d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4da2bfff11d4e5d89c07bb99afc7d31.jpg", "file_size": 26559, "is_delete": false, "file_type": 1, "original_file_name": "LZ1418#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4da2bfff11d4e5d89c07bb99afc7d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4da2bfff11d4e5d89c07bb99afc7d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4da2bfff11d4e5d89c07bb99afc7d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4da2bfff11d4e5d89c07bb99afc7d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4da2bfff11d4e5d89c07bb99afc7d31.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vieoxhUBOcb-hrGR5Ct0zQpy-5c=", "createTime": "2024-08-15 15:08:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.96322+00 2025-12-09 10:15:57.963226+00 20538 DM027#3XL SPMX-20240815315778 \N \N \N 1 \N [{"file_id": "a9d184e7-c6f4-4afd-b245-d4a6dbb93a64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "717d01c6db60486dbaa6baadef9e172e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "717d01c6db60486dbaa6baadef9e172e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "717d01c6db60486dbaa6baadef9e172e.jpg", "file_size": 53188, "is_delete": false, "file_type": 1, "original_file_name": "DM027#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717d01c6db60486dbaa6baadef9e172e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717d01c6db60486dbaa6baadef9e172e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/717d01c6db60486dbaa6baadef9e172e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/717d01c6db60486dbaa6baadef9e172e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/717d01c6db60486dbaa6baadef9e172e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2d84fdyqv8uTasEULNzKLDd4Sw=", "createTime": "2024-08-15 15:08:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.966567+00 2025-12-09 10:15:57.966573+00 20539 88380#I-紫色50码 SPMX-20240815315786 \N \N \N 1 \N [{"file_id": "5d08dd5a-f292-47d9-b49e-d9b0413de366", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c53071cf4223468c935636840644788d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c53071cf4223468c935636840644788d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c53071cf4223468c935636840644788d.jpg", "file_size": 20400, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-紫色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53071cf4223468c935636840644788d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53071cf4223468c935636840644788d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c53071cf4223468c935636840644788d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c53071cf4223468c935636840644788d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c53071cf4223468c935636840644788d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4sr8i7nzx6I7nxmrMFznPW19m4w=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.969919+00 2025-12-09 10:15:57.969926+00 20540 003-454#WJC22 SPMX-20240815315781 \N \N \N 1 \N [{"file_id": "9eb15879-fb03-4a54-a4d0-a0c31a5bbbea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f653d7f6fffc4e18a8197d264f90b60a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f653d7f6fffc4e18a8197d264f90b60a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f653d7f6fffc4e18a8197d264f90b60a.jpg", "file_size": 16736, "is_delete": false, "file_type": 1, "original_file_name": "003-454#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f653d7f6fffc4e18a8197d264f90b60a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f653d7f6fffc4e18a8197d264f90b60a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f653d7f6fffc4e18a8197d264f90b60a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f653d7f6fffc4e18a8197d264f90b60a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f653d7f6fffc4e18a8197d264f90b60a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2dHVtXuveXjqe5np2fL3SgpEps=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.973504+00 2025-12-09 10:15:57.973511+00 20541 124A#黄色 SPMX-20240815315784 \N \N \N 1 \N [{"file_id": "61722d74-55a0-4eaa-a3f3-17e425ee6f03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "415a90c51b2e4b17a69e9a2a27b4cda0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "415a90c51b2e4b17a69e9a2a27b4cda0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "415a90c51b2e4b17a69e9a2a27b4cda0.jpg", "file_size": 60742, "is_delete": false, "file_type": 1, "original_file_name": "124A#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415a90c51b2e4b17a69e9a2a27b4cda0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415a90c51b2e4b17a69e9a2a27b4cda0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415a90c51b2e4b17a69e9a2a27b4cda0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/415a90c51b2e4b17a69e9a2a27b4cda0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/415a90c51b2e4b17a69e9a2a27b4cda0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqXZT-xBGJ-Wyb6JrExQ2qC1fxI=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.976972+00 2025-12-09 10:15:57.976979+00 20542 DM027#4XL SPMX-20240815315789 \N \N \N 1 \N [{"file_id": "dd204b73-62ce-4121-9a98-67590b1eeb0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d42ca0edfd184f93a404453cc924b966.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d42ca0edfd184f93a404453cc924b966.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d42ca0edfd184f93a404453cc924b966.jpg", "file_size": 53731, "is_delete": false, "file_type": 1, "original_file_name": "DM027#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42ca0edfd184f93a404453cc924b966.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42ca0edfd184f93a404453cc924b966.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d42ca0edfd184f93a404453cc924b966.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d42ca0edfd184f93a404453cc924b966.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d42ca0edfd184f93a404453cc924b966.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zce_U2THpNOICyZTUugzUlvwaCA=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.981027+00 2025-12-09 10:15:57.981035+00 20543 FX0042#S码 SPMX-20240815315788 \N \N \N 1 \N [{"file_id": "7e40368d-4f39-4e26-be15-7d18caec24ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8654c3ab5e3345d7a0263555387f5234.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8654c3ab5e3345d7a0263555387f5234.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8654c3ab5e3345d7a0263555387f5234.jpg", "file_size": 28081, "is_delete": false, "file_type": 1, "original_file_name": "FX0042#S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8654c3ab5e3345d7a0263555387f5234.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8654c3ab5e3345d7a0263555387f5234.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8654c3ab5e3345d7a0263555387f5234.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8654c3ab5e3345d7a0263555387f5234.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8654c3ab5e3345d7a0263555387f5234.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hQaPrtGlcwOAefgNxb8LU8jIV8=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.984955+00 2025-12-09 10:15:57.984962+00 20544 LJH6627#粉色 SPMX-20240815315787 \N \N \N 1 \N [{"file_id": "1762b8a4-7dba-4af2-bf73-3ba4ac3d0b5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f92d36a0094345f4a459d085be7b198c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f92d36a0094345f4a459d085be7b198c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f92d36a0094345f4a459d085be7b198c.jpg", "file_size": 51695, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92d36a0094345f4a459d085be7b198c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92d36a0094345f4a459d085be7b198c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f92d36a0094345f4a459d085be7b198c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f92d36a0094345f4a459d085be7b198c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f92d36a0094345f4a459d085be7b198c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0R2rZ00PPQOiF0PH4UBfFdG_2M=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.988652+00 2025-12-09 10:15:57.988659+00 20545 JY-AD-207#4号白底墨绿色2XL SPMX-20240815315785 \N \N \N 1 \N [{"file_id": "b692e37b-d29a-4a1b-af6c-880a4e1e60a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf0157f9b3e54af2ad34e228b55d2a34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf0157f9b3e54af2ad34e228b55d2a34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf0157f9b3e54af2ad34e228b55d2a34.jpg", "file_size": 22265, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0157f9b3e54af2ad34e228b55d2a34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0157f9b3e54af2ad34e228b55d2a34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0157f9b3e54af2ad34e228b55d2a34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf0157f9b3e54af2ad34e228b55d2a34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf0157f9b3e54af2ad34e228b55d2a34.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QhJ304cMVq7kcq8bnvhhKCLX4WE=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.992173+00 2025-12-09 10:15:57.99218+00 20546 24077#-10-A SPMX-20240815315783 \N \N \N 1 \N [{"file_id": "00ab45a0-09c4-40fe-85ee-4ba2f85b2bff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e4b8f39b25b490286212adbc9547bd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e4b8f39b25b490286212adbc9547bd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e4b8f39b25b490286212adbc9547bd3.jpg", "file_size": 42966, "is_delete": false, "file_type": 1, "original_file_name": "24077#-10-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4b8f39b25b490286212adbc9547bd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4b8f39b25b490286212adbc9547bd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e4b8f39b25b490286212adbc9547bd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e4b8f39b25b490286212adbc9547bd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e4b8f39b25b490286212adbc9547bd3.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jjmcgxEAdPMp3PCe3iPe3m5if8E=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.995494+00 2025-12-09 10:15:57.9955+00 20547 LZ1418#童装T2号色 SPMX-20240815315790 \N \N \N 1 \N [{"file_id": "b57f9647-5228-4c8b-b9bc-903bfe173ad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3040b12a7e5448e986f1330a7d2ee27c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3040b12a7e5448e986f1330a7d2ee27c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3040b12a7e5448e986f1330a7d2ee27c.jpg", "file_size": 25877, "is_delete": false, "file_type": 1, "original_file_name": "LZ1418#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3040b12a7e5448e986f1330a7d2ee27c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3040b12a7e5448e986f1330a7d2ee27c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3040b12a7e5448e986f1330a7d2ee27c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3040b12a7e5448e986f1330a7d2ee27c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3040b12a7e5448e986f1330a7d2ee27c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RY4tcBT1eBf5iTh3OmwWCMXMYlI=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:57.999163+00 2025-12-09 10:15:57.999169+00 20548 CH09304FWD#炫彩黄L SPMX-20240815315791 \N \N \N 1 \N [{"file_id": "f2018840-1b25-460e-95d0-3acb1989d7c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "969fb790eadf42c4be023afa01df3cb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "969fb790eadf42c4be023afa01df3cb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "969fb790eadf42c4be023afa01df3cb9.jpg", "file_size": 13391, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩黄L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969fb790eadf42c4be023afa01df3cb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969fb790eadf42c4be023afa01df3cb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/969fb790eadf42c4be023afa01df3cb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/969fb790eadf42c4be023afa01df3cb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/969fb790eadf42c4be023afa01df3cb9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r32-F3uazleES2RfWyeiGABQrgU=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.002602+00 2025-12-09 10:15:58.002608+00 20549 HXF003FW#VS-D3 SPMX-20240815315782 \N \N \N 1 \N [{"file_id": "a8ef1e75-13d3-4052-af21-9043a0e3810d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "119cdba40175427283c29bc141544247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "119cdba40175427283c29bc141544247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "119cdba40175427283c29bc141544247.jpg", "file_size": 19935, "is_delete": false, "file_type": 1, "original_file_name": "HXF003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/119cdba40175427283c29bc141544247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/119cdba40175427283c29bc141544247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/119cdba40175427283c29bc141544247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/119cdba40175427283c29bc141544247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/119cdba40175427283c29bc141544247.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TpvXDaOpEWIOk9-u9WCk05SOnVA=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.005817+00 2025-12-09 10:15:58.005823+00 20550 003-4FWE#L SPMX-20240815315792 \N \N \N 1 \N [{"file_id": "6cc3011d-45b0-435f-a57a-4baa6ab7f39a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd4567620de34fa4b001886d8ebe033e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd4567620de34fa4b001886d8ebe033e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd4567620de34fa4b001886d8ebe033e.jpg", "file_size": 16710, "is_delete": false, "file_type": 1, "original_file_name": "003-4FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4567620de34fa4b001886d8ebe033e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4567620de34fa4b001886d8ebe033e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4567620de34fa4b001886d8ebe033e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd4567620de34fa4b001886d8ebe033e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd4567620de34fa4b001886d8ebe033e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SPnvCyg5oA-50giUd72hQABLeYc=", "createTime": "2024-08-15 15:08:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.009765+00 2025-12-09 10:15:58.009772+00 20551 HXF003FWE#VS-D3 SPMX-20240815315793 \N \N \N 1 \N [{"file_id": "0c626ade-d17d-4496-bd02-d3decdf36e17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecea74a45c994d899f723e3a9317a602.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecea74a45c994d899f723e3a9317a602.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecea74a45c994d899f723e3a9317a602.jpg", "file_size": 20549, "is_delete": false, "file_type": 1, "original_file_name": "HXF003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecea74a45c994d899f723e3a9317a602.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecea74a45c994d899f723e3a9317a602.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecea74a45c994d899f723e3a9317a602.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecea74a45c994d899f723e3a9317a602.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecea74a45c994d899f723e3a9317a602.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYIIG4xvZZh47bfsPioYlEIbcE0=", "createTime": "2024-08-15 15:08:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.013504+00 2025-12-09 10:15:58.01351+00 20552 24077#-10-B SPMX-20240815315795 \N \N \N 1 \N [{"file_id": "417ab63f-39d7-4050-a6ee-25ace45a8469", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e2131f05ab94be2a10e631a2db1df36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e2131f05ab94be2a10e631a2db1df36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e2131f05ab94be2a10e631a2db1df36.jpg", "file_size": 43147, "is_delete": false, "file_type": 1, "original_file_name": "24077#-10-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2131f05ab94be2a10e631a2db1df36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2131f05ab94be2a10e631a2db1df36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e2131f05ab94be2a10e631a2db1df36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e2131f05ab94be2a10e631a2db1df36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e2131f05ab94be2a10e631a2db1df36.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_oc8fJzUf_cN8qNq7sqmNoX4bD0=", "createTime": "2024-08-15 15:08:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.017151+00 2025-12-09 10:15:58.017159+00 20553 88380#I-黑42码 SPMX-20240815315796 \N \N \N 1 \N [{"file_id": "333551f5-1f6b-4747-8e02-e29bbdbc9b0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b0efeb401cf4efb8b24caa3aa9af3cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b0efeb401cf4efb8b24caa3aa9af3cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b0efeb401cf4efb8b24caa3aa9af3cb.jpg", "file_size": 19424, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-黑42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0efeb401cf4efb8b24caa3aa9af3cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0efeb401cf4efb8b24caa3aa9af3cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b0efeb401cf4efb8b24caa3aa9af3cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b0efeb401cf4efb8b24caa3aa9af3cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b0efeb401cf4efb8b24caa3aa9af3cb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bh8qBnhx0sfX_Vus3lqiBsx51aY=", "createTime": "2024-08-15 15:08:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.020525+00 2025-12-09 10:15:58.02053+00 20554 JY-AD-207#4号白底墨绿色3XL SPMX-20240815315794 \N \N \N 1 \N [{"file_id": "106b98fc-2240-45bf-91c5-ae2c47e8f1b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb035c404ce447c3b68dbb34ce06d540.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb035c404ce447c3b68dbb34ce06d540.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb035c404ce447c3b68dbb34ce06d540.jpg", "file_size": 22324, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb035c404ce447c3b68dbb34ce06d540.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb035c404ce447c3b68dbb34ce06d540.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb035c404ce447c3b68dbb34ce06d540.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb035c404ce447c3b68dbb34ce06d540.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb035c404ce447c3b68dbb34ce06d540.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16IhanTvBO_8QZCWdOddklOg2_Y=", "createTime": "2024-08-15 15:08:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.023926+00 2025-12-09 10:15:58.023932+00 20555 FX0042#XS码 SPMX-20240815315797 \N \N \N 1 \N [{"file_id": "35c28b9b-0638-4e6a-8216-39c8952f68d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccad1881ac3949299c35b6a1ff4d7887.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccad1881ac3949299c35b6a1ff4d7887.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccad1881ac3949299c35b6a1ff4d7887.jpg", "file_size": 29565, "is_delete": false, "file_type": 1, "original_file_name": "FX0042#XS码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad1881ac3949299c35b6a1ff4d7887.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad1881ac3949299c35b6a1ff4d7887.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccad1881ac3949299c35b6a1ff4d7887.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccad1881ac3949299c35b6a1ff4d7887.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccad1881ac3949299c35b6a1ff4d7887.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2CHxcDV2vFoWnspv6GCplqNkDL8=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.027314+00 2025-12-09 10:15:58.02732+00 20556 003-4FWE#M SPMX-20240815315801 \N \N \N 1 \N [{"file_id": "d17b0060-db42-4cb5-bf4b-712841db6dfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64854d21972f471b97ff48b487bb9fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64854d21972f471b97ff48b487bb9fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64854d21972f471b97ff48b487bb9fa8.jpg", "file_size": 17386, "is_delete": false, "file_type": 1, "original_file_name": "003-4FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64854d21972f471b97ff48b487bb9fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64854d21972f471b97ff48b487bb9fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64854d21972f471b97ff48b487bb9fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64854d21972f471b97ff48b487bb9fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64854d21972f471b97ff48b487bb9fa8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sMGOOLlohlr6c1g_NimwgU8WdPM=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.030812+00 2025-12-09 10:15:58.030819+00 20557 DM027#5XL SPMX-20240815315804 \N \N \N 1 \N [{"file_id": "c5fba298-44e7-48af-a6be-ec8b8ca739cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a1583fee414bcfabeee2c903173074.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a1583fee414bcfabeee2c903173074.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a1583fee414bcfabeee2c903173074.jpg", "file_size": 55074, "is_delete": false, "file_type": 1, "original_file_name": "DM027#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1583fee414bcfabeee2c903173074.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1583fee414bcfabeee2c903173074.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a1583fee414bcfabeee2c903173074.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a1583fee414bcfabeee2c903173074.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a1583fee414bcfabeee2c903173074.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PhJwzmJ5u_eHlwS7t3YT_6XsTbM=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.034213+00 2025-12-09 10:15:58.03422+00 20558 LJH6627#紫色 SPMX-20240815315800 \N \N \N 1 \N [{"file_id": "81c765fc-6023-4ec9-aece-3b3baa9fea96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2d5bd2d01914983ae505c695a639d06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2d5bd2d01914983ae505c695a639d06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2d5bd2d01914983ae505c695a639d06.jpg", "file_size": 52927, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d5bd2d01914983ae505c695a639d06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d5bd2d01914983ae505c695a639d06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2d5bd2d01914983ae505c695a639d06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2d5bd2d01914983ae505c695a639d06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2d5bd2d01914983ae505c695a639d06.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ntzcyTP0-5IaTTaoBc5TfwC1qG4=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.037639+00 2025-12-09 10:15:58.037645+00 20559 125#-深杏 SPMX-20240815315802 \N \N \N 1 \N [{"file_id": "d7436fc1-8c8c-457c-b06f-6fe538e52465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37525bde65d04704b0a8a486ec33585d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37525bde65d04704b0a8a486ec33585d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37525bde65d04704b0a8a486ec33585d.jpg", "file_size": 48971, "is_delete": false, "file_type": 1, "original_file_name": "125#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37525bde65d04704b0a8a486ec33585d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37525bde65d04704b0a8a486ec33585d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37525bde65d04704b0a8a486ec33585d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37525bde65d04704b0a8a486ec33585d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37525bde65d04704b0a8a486ec33585d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fgvkKd-YbyLH2eDXaLtBLg8SzHg=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.042582+00 2025-12-09 10:15:58.042589+00 20560 HXF004#白 SPMX-20240815315799 \N \N \N 1 \N [{"file_id": "98ba125f-4023-4e9f-bc57-0d2b1c564dfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09df10a4081f44c8b5e2fc8760e77dc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09df10a4081f44c8b5e2fc8760e77dc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09df10a4081f44c8b5e2fc8760e77dc5.jpg", "file_size": 11187, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09df10a4081f44c8b5e2fc8760e77dc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09df10a4081f44c8b5e2fc8760e77dc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09df10a4081f44c8b5e2fc8760e77dc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09df10a4081f44c8b5e2fc8760e77dc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09df10a4081f44c8b5e2fc8760e77dc5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JWGlnChmqXPXLIFADTsZ3Wtnw4Q=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.04718+00 2025-12-09 10:15:58.047186+00 20561 CH09304FWD#炫彩黄M SPMX-20240815315798 \N \N \N 1 \N [{"file_id": "f363ee2f-1169-4fd8-9e98-8431b93e9a12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfb75fc136e64a79912fb2e797505426.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfb75fc136e64a79912fb2e797505426.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfb75fc136e64a79912fb2e797505426.jpg", "file_size": 13383, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩黄M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb75fc136e64a79912fb2e797505426.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb75fc136e64a79912fb2e797505426.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfb75fc136e64a79912fb2e797505426.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfb75fc136e64a79912fb2e797505426.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfb75fc136e64a79912fb2e797505426.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dS_JRxi9MhlV1tXv6XIra5bQh84=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.051468+00 2025-12-09 10:15:58.051475+00 20562 JY-AD-207#4号白底墨绿色L SPMX-20240815315803 \N \N \N 1 \N [{"file_id": "2130e80c-0005-4bcb-9307-d5988bfcc887", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "819e02a7a44c4571a504b9f2f2f75f0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "819e02a7a44c4571a504b9f2f2f75f0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "819e02a7a44c4571a504b9f2f2f75f0d.jpg", "file_size": 24714, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819e02a7a44c4571a504b9f2f2f75f0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819e02a7a44c4571a504b9f2f2f75f0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/819e02a7a44c4571a504b9f2f2f75f0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/819e02a7a44c4571a504b9f2f2f75f0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/819e02a7a44c4571a504b9f2f2f75f0d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BPT13WTvnUQo3cB5bIQ3akIhuos=", "createTime": "2024-08-15 15:08:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.055528+00 2025-12-09 10:15:58.055535+00 20563 24077#-10-C SPMX-20240815315805 \N \N \N 1 \N [{"file_id": "29823b69-3949-4182-a480-98cc7efe57a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4da4ff74bc974171b8cd0f5aecf428a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4da4ff74bc974171b8cd0f5aecf428a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4da4ff74bc974171b8cd0f5aecf428a8.jpg", "file_size": 44003, "is_delete": false, "file_type": 1, "original_file_name": "24077#-10-C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4da4ff74bc974171b8cd0f5aecf428a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4da4ff74bc974171b8cd0f5aecf428a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4da4ff74bc974171b8cd0f5aecf428a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4da4ff74bc974171b8cd0f5aecf428a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4da4ff74bc974171b8cd0f5aecf428a8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pv2MmqXGEQpVgELxm_eD8cLboTs=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.058769+00 2025-12-09 10:15:58.058776+00 20564 DM027#捆条 SPMX-20240815315809 \N \N \N 1 \N [{"file_id": "92ffc256-6337-4f66-864c-ae9f4565ee1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60cbbd9a3743417e85283c57a7a35a1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60cbbd9a3743417e85283c57a7a35a1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60cbbd9a3743417e85283c57a7a35a1e.jpg", "file_size": 63160, "is_delete": false, "file_type": 1, "original_file_name": "DM027#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cbbd9a3743417e85283c57a7a35a1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cbbd9a3743417e85283c57a7a35a1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60cbbd9a3743417e85283c57a7a35a1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60cbbd9a3743417e85283c57a7a35a1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60cbbd9a3743417e85283c57a7a35a1e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7bpRsLOlm1khwt4ow3betK5aUHE=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.062101+00 2025-12-09 10:15:58.062108+00 20565 CH09304FWD#炫彩黄S SPMX-20240815315815 \N \N \N 1 \N [{"file_id": "377264b6-cbc6-4e8a-8a6d-d74bb1e5f492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d81b88aa6bd47028c338dd46fcfa158.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d81b88aa6bd47028c338dd46fcfa158.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d81b88aa6bd47028c338dd46fcfa158.jpg", "file_size": 13451, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩黄S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81b88aa6bd47028c338dd46fcfa158.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81b88aa6bd47028c338dd46fcfa158.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d81b88aa6bd47028c338dd46fcfa158.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d81b88aa6bd47028c338dd46fcfa158.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d81b88aa6bd47028c338dd46fcfa158.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nK_IW19dcPfvlJ3OegbeL5bl4IE=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.065396+00 2025-12-09 10:15:58.065402+00 20566 JY-AD-207#4号白底墨绿色M SPMX-20240815315806 \N \N \N 1 \N [{"file_id": "9f890187-34fb-4152-b7ad-532c57794eca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea093e51ee7342c38fe26b70aebf6508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea093e51ee7342c38fe26b70aebf6508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea093e51ee7342c38fe26b70aebf6508.jpg", "file_size": 25022, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea093e51ee7342c38fe26b70aebf6508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea093e51ee7342c38fe26b70aebf6508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea093e51ee7342c38fe26b70aebf6508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea093e51ee7342c38fe26b70aebf6508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea093e51ee7342c38fe26b70aebf6508.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wsc8v561bazzdci-gOz0nCHM9XI=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.068744+00 2025-12-09 10:15:58.068751+00 20567 88380#I-黑44码 SPMX-20240815315811 \N \N \N 1 \N [{"file_id": "55d3b7bd-10d9-4c8a-9e21-97e64455e818", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c086a4ba35943daa26887f31625d72b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c086a4ba35943daa26887f31625d72b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c086a4ba35943daa26887f31625d72b.jpg", "file_size": 19994, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-黑44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c086a4ba35943daa26887f31625d72b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c086a4ba35943daa26887f31625d72b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c086a4ba35943daa26887f31625d72b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c086a4ba35943daa26887f31625d72b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c086a4ba35943daa26887f31625d72b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaBeXMNMXExJSd3-utac4Z6Tpj4=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.071974+00 2025-12-09 10:15:58.071981+00 20568 LZ1418#童装T3号色 SPMX-20240815315810 \N \N \N 1 \N [{"file_id": "cdfaac9a-45c7-4a34-bb07-2e31ebfaefe1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21ced7e765934bd2a4ea47df0568f22e.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21ced7e765934bd2a4ea47df0568f22e.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21ced7e765934bd2a4ea47df0568f22e.bmp", "file_size": 360294, "is_delete": false, "file_type": 1, "original_file_name": "LZ1418#童装T3号色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ced7e765934bd2a4ea47df0568f22e.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ced7e765934bd2a4ea47df0568f22e.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21ced7e765934bd2a4ea47df0568f22e.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21ced7e765934bd2a4ea47df0568f22e.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21ced7e765934bd2a4ea47df0568f22e.bmp?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aOaBmXjvsh8MTYtIcrxFpVBRJKM=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.075246+00 2025-12-09 10:15:58.075252+00 20569 FX004FW# SPMX-20240815315814 \N \N \N 1 \N [{"file_id": "d7fb28a4-e8b1-44d8-a387-65114c1c6d10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d4d80883234e3eb99626515c27d839.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d4d80883234e3eb99626515c27d839.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d4d80883234e3eb99626515c27d839.jpg", "file_size": 20610, "is_delete": false, "file_type": 1, "original_file_name": "FX004FW#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4d80883234e3eb99626515c27d839.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4d80883234e3eb99626515c27d839.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d4d80883234e3eb99626515c27d839.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d4d80883234e3eb99626515c27d839.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d4d80883234e3eb99626515c27d839.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XbNZUMNUE8qlIy-RuHplMuHsXU4=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.078546+00 2025-12-09 10:15:58.078553+00 20570 HXF004#白VS-D3 SPMX-20240815315807 \N \N \N 1 \N [{"file_id": "afc3d090-b4fb-4d24-b002-f48ea742726c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a59b93ae8e04cc3a24f551ef619d894.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a59b93ae8e04cc3a24f551ef619d894.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a59b93ae8e04cc3a24f551ef619d894.jpg", "file_size": 16987, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a59b93ae8e04cc3a24f551ef619d894.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a59b93ae8e04cc3a24f551ef619d894.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a59b93ae8e04cc3a24f551ef619d894.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a59b93ae8e04cc3a24f551ef619d894.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a59b93ae8e04cc3a24f551ef619d894.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:imyV08W_da2ZC-llSAijJumrgR0=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.082129+00 2025-12-09 10:15:58.082136+00 20571 24077#-10A SPMX-20240815315816 \N \N \N 1 \N [{"file_id": "35121df0-8c2e-420e-b42a-fa54d0f8d96a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b62444f22f684f17a8a99e4341699cd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b62444f22f684f17a8a99e4341699cd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b62444f22f684f17a8a99e4341699cd6.jpg", "file_size": 43676, "is_delete": false, "file_type": 1, "original_file_name": "24077#-10A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62444f22f684f17a8a99e4341699cd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62444f22f684f17a8a99e4341699cd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b62444f22f684f17a8a99e4341699cd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b62444f22f684f17a8a99e4341699cd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b62444f22f684f17a8a99e4341699cd6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fdqMFxRFbXYklA0kmu5CAqJGjv4=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.085676+00 2025-12-09 10:15:58.085683+00 20572 125#-灰色 SPMX-20240815315812 \N \N \N 1 \N [{"file_id": "cc7be2e1-f3cb-4972-ab3b-fe5e884b20cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46b2165cb0de4956a04f8af552c7292d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46b2165cb0de4956a04f8af552c7292d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46b2165cb0de4956a04f8af552c7292d.jpg", "file_size": 58328, "is_delete": false, "file_type": 1, "original_file_name": "125#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b2165cb0de4956a04f8af552c7292d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b2165cb0de4956a04f8af552c7292d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b2165cb0de4956a04f8af552c7292d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46b2165cb0de4956a04f8af552c7292d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46b2165cb0de4956a04f8af552c7292d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92Bg3azDsOqnor2_EpUpS9jgAag=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.089242+00 2025-12-09 10:15:58.089248+00 20573 003-5FWE#L SPMX-20240815315813 \N \N \N 1 \N [{"file_id": "7af0f17c-37dd-42b1-8c3f-31313873b2be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12693126356146cfa3866f31abf52d33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12693126356146cfa3866f31abf52d33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12693126356146cfa3866f31abf52d33.jpg", "file_size": 16639, "is_delete": false, "file_type": 1, "original_file_name": "003-5FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12693126356146cfa3866f31abf52d33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12693126356146cfa3866f31abf52d33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12693126356146cfa3866f31abf52d33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12693126356146cfa3866f31abf52d33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12693126356146cfa3866f31abf52d33.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PA8PDvYN6B4UsdmfOscLwP2AcOA=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.092709+00 2025-12-09 10:15:58.092716+00 20574 LJH6627#红色 SPMX-20240815315808 \N \N \N 1 \N [{"file_id": "dc6007a4-b2cf-4299-ad7d-b128d7a2c5be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab471f1bb94c4218ae4b2df6030d3f42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab471f1bb94c4218ae4b2df6030d3f42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab471f1bb94c4218ae4b2df6030d3f42.jpg", "file_size": 58267, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab471f1bb94c4218ae4b2df6030d3f42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab471f1bb94c4218ae4b2df6030d3f42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab471f1bb94c4218ae4b2df6030d3f42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab471f1bb94c4218ae4b2df6030d3f42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab471f1bb94c4218ae4b2df6030d3f42.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2vfOqJxgG2XORgw0kCKN7JT9JHs=", "createTime": "2024-08-15 15:08:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.096197+00 2025-12-09 10:15:58.096203+00 20575 DM215FW#2XL VS-D3 SPMX-20240815315817 \N \N \N 1 \N [{"file_id": "65a93c43-ab1b-4167-bfa3-e204efbdaadb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5124968ec9bf495bada5f202fcfff166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5124968ec9bf495bada5f202fcfff166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5124968ec9bf495bada5f202fcfff166.jpg", "file_size": 27565, "is_delete": false, "file_type": 1, "original_file_name": "DM215FW#2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5124968ec9bf495bada5f202fcfff166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5124968ec9bf495bada5f202fcfff166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5124968ec9bf495bada5f202fcfff166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5124968ec9bf495bada5f202fcfff166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5124968ec9bf495bada5f202fcfff166.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NS1p3CyFgusj3mSa_sWHRe30jKo=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.099676+00 2025-12-09 10:15:58.099682+00 20576 LJH6627#蓝色 SPMX-20240815315822 \N \N \N 1 \N [{"file_id": "358c38be-f1d5-47dd-88a9-e5cf86a214a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc28ba5339bb4673a2b4a5bd500f8fc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc28ba5339bb4673a2b4a5bd500f8fc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc28ba5339bb4673a2b4a5bd500f8fc4.jpg", "file_size": 57666, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc28ba5339bb4673a2b4a5bd500f8fc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc28ba5339bb4673a2b4a5bd500f8fc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc28ba5339bb4673a2b4a5bd500f8fc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc28ba5339bb4673a2b4a5bd500f8fc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc28ba5339bb4673a2b4a5bd500f8fc4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UvP8BJlXpha7AoLmKA0CIsmtktU=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.103188+00 2025-12-09 10:15:58.103194+00 20577 JY-AD-207#4号白底墨绿色XL SPMX-20240815315829 \N \N \N 1 \N [{"file_id": "29c81fb4-cbc6-45ae-b9e7-f45c9410fcd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dce161a3cdb048bb809b4b1cd288b268.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dce161a3cdb048bb809b4b1cd288b268.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dce161a3cdb048bb809b4b1cd288b268.jpg", "file_size": 22852, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce161a3cdb048bb809b4b1cd288b268.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce161a3cdb048bb809b4b1cd288b268.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce161a3cdb048bb809b4b1cd288b268.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dce161a3cdb048bb809b4b1cd288b268.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dce161a3cdb048bb809b4b1cd288b268.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z_0VyUvnXGthiyVPG7tfjB7Fij4=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.106796+00 2025-12-09 10:15:58.106803+00 20578 125#-白色 SPMX-20240815315821 \N \N \N 1 \N [{"file_id": "641efcfb-9eb5-4838-a5fb-4b0b36a33dad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b2393e00c074c69a957c75da41570be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b2393e00c074c69a957c75da41570be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b2393e00c074c69a957c75da41570be.jpg", "file_size": 47602, "is_delete": false, "file_type": 1, "original_file_name": "125#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2393e00c074c69a957c75da41570be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2393e00c074c69a957c75da41570be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2393e00c074c69a957c75da41570be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b2393e00c074c69a957c75da41570be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b2393e00c074c69a957c75da41570be.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oi3ojTH6rPUkV1LAHyUTxQ4LdwI=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.110375+00 2025-12-09 10:15:58.110381+00 20579 LZ1418#童装T4号色 SPMX-20240815315826 \N \N \N 1 \N [{"file_id": "0b596944-0902-4f1d-80a2-2364709747ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "884f736adf4e4a32a01797bb8a659a18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "884f736adf4e4a32a01797bb8a659a18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "884f736adf4e4a32a01797bb8a659a18.jpg", "file_size": 25696, "is_delete": false, "file_type": 1, "original_file_name": "LZ1418#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/884f736adf4e4a32a01797bb8a659a18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/884f736adf4e4a32a01797bb8a659a18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/884f736adf4e4a32a01797bb8a659a18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/884f736adf4e4a32a01797bb8a659a18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/884f736adf4e4a32a01797bb8a659a18.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6ssKVnxoOCuar407nv-a0gZ344=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.11395+00 2025-12-09 10:15:58.113957+00 20580 FX005# VS-D3 SPMX-20240815315832 \N \N \N 1 \N [{"file_id": "3cc0252b-14c2-4c28-b9d3-dd6f283d00ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b9805999e54fbda50806b2930b98cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b9805999e54fbda50806b2930b98cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b9805999e54fbda50806b2930b98cd.jpg", "file_size": 18278, "is_delete": false, "file_type": 1, "original_file_name": "FX005# VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b9805999e54fbda50806b2930b98cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b9805999e54fbda50806b2930b98cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b9805999e54fbda50806b2930b98cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b9805999e54fbda50806b2930b98cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b9805999e54fbda50806b2930b98cd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DDaJ-8w6sl3OZbRGVfeJCfWensg=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.11745+00 2025-12-09 10:15:58.117457+00 20581 HXF004#粉 SPMX-20240815315820 \N \N \N 1 \N [{"file_id": "380a93b2-16bf-4085-94a9-67b0abd86453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f8ae95c52a454a8db6173336558b20ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f8ae95c52a454a8db6173336558b20ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f8ae95c52a454a8db6173336558b20ab.jpg", "file_size": 21409, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ae95c52a454a8db6173336558b20ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ae95c52a454a8db6173336558b20ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f8ae95c52a454a8db6173336558b20ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f8ae95c52a454a8db6173336558b20ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f8ae95c52a454a8db6173336558b20ab.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UKUVhOTOHdskV4mFLdfyVW9RjBo=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.120912+00 2025-12-09 10:15:58.120919+00 20582 FX004FWE#VS-D3 SPMX-20240815315823 \N \N \N 1 \N [{"file_id": "29143c49-cecf-4718-a496-82eefa59aee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b0de0435691462ead42c22b145e83b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b0de0435691462ead42c22b145e83b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b0de0435691462ead42c22b145e83b2.jpg", "file_size": 16255, "is_delete": false, "file_type": 1, "original_file_name": "FX004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0de0435691462ead42c22b145e83b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0de0435691462ead42c22b145e83b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b0de0435691462ead42c22b145e83b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b0de0435691462ead42c22b145e83b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b0de0435691462ead42c22b145e83b2.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:667bYeORpEj8bczuT1Qwf6xILyM=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.124384+00 2025-12-09 10:15:58.12439+00 20583 DM215FW#3XL VS-D3 SPMX-20240815315828 \N \N \N 1 \N [{"file_id": "152aeb4e-9e9f-4a15-99dd-f3e73c278063", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53ce1323b7fd4f769ea632f2de978a98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53ce1323b7fd4f769ea632f2de978a98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53ce1323b7fd4f769ea632f2de978a98.jpg", "file_size": 27343, "is_delete": false, "file_type": 1, "original_file_name": "DM215FW#3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ce1323b7fd4f769ea632f2de978a98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ce1323b7fd4f769ea632f2de978a98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53ce1323b7fd4f769ea632f2de978a98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53ce1323b7fd4f769ea632f2de978a98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53ce1323b7fd4f769ea632f2de978a98.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G6897rkNW9yKMNPl4Kavqrj7wvE=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.127984+00 2025-12-09 10:15:58.127991+00 20584 88380#I-黑46码 SPMX-20240815315819 \N \N \N 1 \N [{"file_id": "52a01a3d-40d0-4bf0-9f44-ab856f577fa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85bc783c76c24eff8ed628646dd8d352.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85bc783c76c24eff8ed628646dd8d352.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85bc783c76c24eff8ed628646dd8d352.jpg", "file_size": 20134, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-黑46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85bc783c76c24eff8ed628646dd8d352.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85bc783c76c24eff8ed628646dd8d352.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85bc783c76c24eff8ed628646dd8d352.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85bc783c76c24eff8ed628646dd8d352.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85bc783c76c24eff8ed628646dd8d352.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nzeVGbqn9UnV4iJZJjzjuSuw8Ys=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.131636+00 2025-12-09 10:15:58.131643+00 20585 88380#I-黑48码 SPMX-20240815315830 \N \N \N 1 \N [{"file_id": "cb9faf76-0b96-4843-b534-333d3ab917f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "696aa4a1a61a4e4d849417f6976444eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "696aa4a1a61a4e4d849417f6976444eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "696aa4a1a61a4e4d849417f6976444eb.jpg", "file_size": 19651, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-黑48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/696aa4a1a61a4e4d849417f6976444eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/696aa4a1a61a4e4d849417f6976444eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/696aa4a1a61a4e4d849417f6976444eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/696aa4a1a61a4e4d849417f6976444eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/696aa4a1a61a4e4d849417f6976444eb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LRhzGgB8u9JHVj3E6hrZpboR0X0=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.13526+00 2025-12-09 10:15:58.135266+00 20586 HXF004#粉VS-D3 SPMX-20240815315831 \N \N \N 1 \N [{"file_id": "b3b078fa-35fc-486f-97d4-2b122216341c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75ad85dc7ead429d8c86ff8a08c0cee4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75ad85dc7ead429d8c86ff8a08c0cee4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75ad85dc7ead429d8c86ff8a08c0cee4.jpg", "file_size": 16665, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ad85dc7ead429d8c86ff8a08c0cee4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ad85dc7ead429d8c86ff8a08c0cee4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75ad85dc7ead429d8c86ff8a08c0cee4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75ad85dc7ead429d8c86ff8a08c0cee4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75ad85dc7ead429d8c86ff8a08c0cee4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KW05_3XsGbS6mt6WmwIMMI6W2ns=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.138788+00 2025-12-09 10:15:58.138794+00 20587 003-5FWE#M SPMX-20240815315824 \N \N \N 1 \N [{"file_id": "99a06b03-351d-4dd3-bae4-ca65bf42326d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa9eff883b2542ca9662992f208b2003.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa9eff883b2542ca9662992f208b2003.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa9eff883b2542ca9662992f208b2003.jpg", "file_size": 16430, "is_delete": false, "file_type": 1, "original_file_name": "003-5FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9eff883b2542ca9662992f208b2003.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9eff883b2542ca9662992f208b2003.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa9eff883b2542ca9662992f208b2003.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa9eff883b2542ca9662992f208b2003.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa9eff883b2542ca9662992f208b2003.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2yIgf-mvmZceHIFKLgoNPmlA184=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.142387+00 2025-12-09 10:15:58.142398+00 20588 JY-AD-207#4号白底墨绿色S SPMX-20240815315818 \N \N \N 1 \N [{"file_id": "5eb2f4cd-a6d1-45d7-b697-379bd19d5d3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg", "file_size": 25105, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#4号白底墨绿色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bc0008f8b4a4eb6b916cbeb5a4c3629.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P0lucr5itutCS0Hwy8eNvidWKM0=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.145947+00 2025-12-09 10:15:58.145954+00 20589 CH09304FWD#炫彩黄XL SPMX-20240815315825 \N \N \N 1 \N [{"file_id": "e5082e4b-d452-4765-bd0e-7250f0b0b8c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e503046351f4ad6b4f408742736a8fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e503046351f4ad6b4f408742736a8fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e503046351f4ad6b4f408742736a8fb.jpg", "file_size": 13222, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩黄XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e503046351f4ad6b4f408742736a8fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e503046351f4ad6b4f408742736a8fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e503046351f4ad6b4f408742736a8fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e503046351f4ad6b4f408742736a8fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e503046351f4ad6b4f408742736a8fb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4BBv6S1p2B7k_fYb2R-E-1DDTt0=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.149493+00 2025-12-09 10:15:58.149499+00 20590 24077#-10B SPMX-20240815315827 \N \N \N 1 \N [{"file_id": "73b9819a-a848-415a-8c4c-6284d4e529f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b53e44e5fa34c7b8ffd35f96260f83c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b53e44e5fa34c7b8ffd35f96260f83c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b53e44e5fa34c7b8ffd35f96260f83c.jpg", "file_size": 43014, "is_delete": false, "file_type": 1, "original_file_name": "24077#-10B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53e44e5fa34c7b8ffd35f96260f83c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53e44e5fa34c7b8ffd35f96260f83c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b53e44e5fa34c7b8ffd35f96260f83c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b53e44e5fa34c7b8ffd35f96260f83c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b53e44e5fa34c7b8ffd35f96260f83c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TsKKkQB4p4oDvX7ryyyTh6tytQg=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.15301+00 2025-12-09 10:15:58.153017+00 20591 CH09304FWD#炫彩黄XS SPMX-20240815315836 \N \N \N 1 \N [{"file_id": "03fd2075-1238-4d49-90be-e6e9ac7c9acb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6538fdd88f11447bb0bdd4ccef4fb3a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6538fdd88f11447bb0bdd4ccef4fb3a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6538fdd88f11447bb0bdd4ccef4fb3a6.jpg", "file_size": 12869, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#炫彩黄XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6538fdd88f11447bb0bdd4ccef4fb3a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6538fdd88f11447bb0bdd4ccef4fb3a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6538fdd88f11447bb0bdd4ccef4fb3a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6538fdd88f11447bb0bdd4ccef4fb3a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6538fdd88f11447bb0bdd4ccef4fb3a6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2NhNuSsjPzSfgS78f52rFnndA04=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.160111+00 2025-12-09 10:15:58.160118+00 20593 24077#-2-A#-左 SPMX-20240815315838 \N \N \N 1 \N [{"file_id": "90f01a05-586a-4021-86e2-00b1b9ba56e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg", "file_size": 43687, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-A#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25b2fa897cbf47c0aa0c16c0b4ff03d2.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lmgaLHEVHXjSwra1H4zISC_LqB8=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.163653+00 2025-12-09 10:15:58.163659+00 20594 JY-AD-207#5号白底焦糖色2XL SPMX-20240815315840 \N \N \N 1 \N [{"file_id": "65c4d6c9-8a3d-43ad-8490-b8c37d25d246", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65cb4cfbbe7044b681ec5a33a98b2e08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65cb4cfbbe7044b681ec5a33a98b2e08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65cb4cfbbe7044b681ec5a33a98b2e08.jpg", "file_size": 21341, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb4cfbbe7044b681ec5a33a98b2e08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb4cfbbe7044b681ec5a33a98b2e08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65cb4cfbbe7044b681ec5a33a98b2e08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65cb4cfbbe7044b681ec5a33a98b2e08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65cb4cfbbe7044b681ec5a33a98b2e08.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTayDJY4AIhLEI5ZLmZQoyslSaQ=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.167123+00 2025-12-09 10:15:58.16713+00 20595 LZ1418#童装T5号色 SPMX-20240815315837 \N \N \N 1 \N [{"file_id": "d84b3a51-867b-4a72-a104-2bbb76a722f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8386425cc8f84cdea52ffa4549e6d291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8386425cc8f84cdea52ffa4549e6d291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8386425cc8f84cdea52ffa4549e6d291.jpg", "file_size": 25219, "is_delete": false, "file_type": 1, "original_file_name": "LZ1418#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8386425cc8f84cdea52ffa4549e6d291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8386425cc8f84cdea52ffa4549e6d291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8386425cc8f84cdea52ffa4549e6d291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8386425cc8f84cdea52ffa4549e6d291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8386425cc8f84cdea52ffa4549e6d291.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08in-84jDVj9Ms4dOC7nHgoVQEs=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.156555+00 2025-12-09 10:15:58.156561+00 20592 LJH6627#黑色 SPMX-20240815315835 \N \N \N 1 \N [{"file_id": "30bcf4dc-c0ea-4871-af26-15966e915514", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "247432ca2c06411680aad650691cad1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "247432ca2c06411680aad650691cad1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "247432ca2c06411680aad650691cad1e.jpg", "file_size": 49003, "is_delete": false, "file_type": 1, "original_file_name": "LJH6627#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247432ca2c06411680aad650691cad1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247432ca2c06411680aad650691cad1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/247432ca2c06411680aad650691cad1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/247432ca2c06411680aad650691cad1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/247432ca2c06411680aad650691cad1e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfXKzmPbud7e81Cm4D0BwaScPA8=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.174445+00 2025-12-09 10:15:58.174452+00 20596 HXF004#紫 SPMX-20240815315843 \N \N \N 1 \N [{"file_id": "2e88a4bd-deb0-4e5e-ab05-6907ea3aee75", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7eff74658cb548129a89dccc8fd2b09a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7eff74658cb548129a89dccc8fd2b09a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7eff74658cb548129a89dccc8fd2b09a.jpg", "file_size": 10132, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff74658cb548129a89dccc8fd2b09a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff74658cb548129a89dccc8fd2b09a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7eff74658cb548129a89dccc8fd2b09a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7eff74658cb548129a89dccc8fd2b09a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7eff74658cb548129a89dccc8fd2b09a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nlBIMyBJjsahgvMXafPDe-C-Tlo=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.178027+00 2025-12-09 10:15:58.178034+00 20597 DM215FW#4XL VS-D3 SPMX-20240815315839 \N \N \N 1 \N [{"file_id": "a7ec3cb5-580b-45ee-9b9f-bf44b0aca2c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef7d1b8b5a994315a032dbbc98709466.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef7d1b8b5a994315a032dbbc98709466.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef7d1b8b5a994315a032dbbc98709466.jpg", "file_size": 27205, "is_delete": false, "file_type": 1, "original_file_name": "DM215FW#4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7d1b8b5a994315a032dbbc98709466.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7d1b8b5a994315a032dbbc98709466.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef7d1b8b5a994315a032dbbc98709466.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef7d1b8b5a994315a032dbbc98709466.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef7d1b8b5a994315a032dbbc98709466.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YCwNjo581GAJjn22gRkjbVkiyig=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.181542+00 2025-12-09 10:15:58.181548+00 20598 FX005# SPMX-20240815315842 \N \N \N 1 \N [{"file_id": "0530f929-1ab6-41bc-a6a8-56c3e3dc40ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "439d64c08d9c462293973acb5958efa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "439d64c08d9c462293973acb5958efa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "439d64c08d9c462293973acb5958efa9.jpg", "file_size": 5803, "is_delete": false, "file_type": 1, "original_file_name": "FX005#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439d64c08d9c462293973acb5958efa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439d64c08d9c462293973acb5958efa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/439d64c08d9c462293973acb5958efa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/439d64c08d9c462293973acb5958efa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/439d64c08d9c462293973acb5958efa9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYhUcF9oXmzk5G0YpHIQ9pVIGB4=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.185086+00 2025-12-09 10:15:58.185092+00 20599 88380#I-黑50码 SPMX-20240815315841 \N \N \N 1 \N [{"file_id": "6c16369b-8881-4f50-8ac4-65bde882b1b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afe8e34b788842a3886a481f22a43f1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afe8e34b788842a3886a481f22a43f1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afe8e34b788842a3886a481f22a43f1a.jpg", "file_size": 20488, "is_delete": false, "file_type": 1, "original_file_name": "88380#I-黑50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe8e34b788842a3886a481f22a43f1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe8e34b788842a3886a481f22a43f1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe8e34b788842a3886a481f22a43f1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afe8e34b788842a3886a481f22a43f1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afe8e34b788842a3886a481f22a43f1a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jn8O83Egs0YBxv00iTtZq6XV4qI=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.188625+00 2025-12-09 10:15:58.188631+00 20600 1257FWF#V5曲线 SPMX-20240815315844 \N \N \N 1 \N [{"file_id": "c7e2e84e-74e5-426c-8c8d-a5d5d61e321e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80dc8858ee144721a411b224b9cc8c04.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80dc8858ee144721a411b224b9cc8c04.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80dc8858ee144721a411b224b9cc8c04.jpg", "file_size": 18012, "is_delete": false, "file_type": 1, "original_file_name": "1257FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80dc8858ee144721a411b224b9cc8c04.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80dc8858ee144721a411b224b9cc8c04.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80dc8858ee144721a411b224b9cc8c04.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80dc8858ee144721a411b224b9cc8c04.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80dc8858ee144721a411b224b9cc8c04.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jiy3b-9UuGSeOhtXNM58NoSIpco=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.192117+00 2025-12-09 10:15:58.192123+00 20601 003-L SPMX-20240815315833 \N \N \N 1 \N [{"file_id": "f74b3b71-6065-4a9c-a39d-5aec5ba8815d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba1bcaec0ec4c298410f6d32fa0f363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba1bcaec0ec4c298410f6d32fa0f363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba1bcaec0ec4c298410f6d32fa0f363.jpg", "file_size": 15186, "is_delete": false, "file_type": 1, "original_file_name": "003-L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1bcaec0ec4c298410f6d32fa0f363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1bcaec0ec4c298410f6d32fa0f363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba1bcaec0ec4c298410f6d32fa0f363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba1bcaec0ec4c298410f6d32fa0f363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba1bcaec0ec4c298410f6d32fa0f363.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZ4SFS9st32QxFFcVMTyeL7HWSA=", "createTime": "2024-08-15 15:08:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.195691+00 2025-12-09 10:15:58.195699+00 20602 LJH6630#粉色 SPMX-20240815315846 \N \N \N 1 \N [{"file_id": "1d84ede0-e43d-49b6-8ddc-a3df02f7452d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60ed954147ab4c45af77f37d012e20d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60ed954147ab4c45af77f37d012e20d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60ed954147ab4c45af77f37d012e20d6.jpg", "file_size": 43376, "is_delete": false, "file_type": 1, "original_file_name": "LJH6630#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ed954147ab4c45af77f37d012e20d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ed954147ab4c45af77f37d012e20d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60ed954147ab4c45af77f37d012e20d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60ed954147ab4c45af77f37d012e20d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60ed954147ab4c45af77f37d012e20d6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_24JhLb2L7K_d_xSQpkJVWE3FE=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.199268+00 2025-12-09 10:15:58.199274+00 20603 003-L袖口 SPMX-20240815315845 \N \N \N 1 \N [{"file_id": "735fb017-11f4-4d79-bb15-732d34faf6dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6497483608354bcfb8f1e2c42ba4e812.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6497483608354bcfb8f1e2c42ba4e812.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6497483608354bcfb8f1e2c42ba4e812.jpg", "file_size": 5086, "is_delete": false, "file_type": 1, "original_file_name": "003-L袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6497483608354bcfb8f1e2c42ba4e812.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6497483608354bcfb8f1e2c42ba4e812.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6497483608354bcfb8f1e2c42ba4e812.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6497483608354bcfb8f1e2c42ba4e812.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6497483608354bcfb8f1e2c42ba4e812.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:He1THE94gg_Xeb3Il4v3G7Nzio8=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.20283+00 2025-12-09 10:15:58.202836+00 20604 LZ1419#大人T1号色 SPMX-20240815315847 \N \N \N 1 \N [{"file_id": "38513729-27ce-4442-be8f-7ef8952fe83d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56824215e020451aad1aa9cfd8386f20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56824215e020451aad1aa9cfd8386f20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56824215e020451aad1aa9cfd8386f20.jpg", "file_size": 19360, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56824215e020451aad1aa9cfd8386f20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56824215e020451aad1aa9cfd8386f20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56824215e020451aad1aa9cfd8386f20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56824215e020451aad1aa9cfd8386f20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56824215e020451aad1aa9cfd8386f20.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jJVEIVb0sC5y93dPNgXr9ddpWI=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.206327+00 2025-12-09 10:15:58.206333+00 20605 CH09304FWD#迷彩L SPMX-20240815315848 \N \N \N 1 \N [{"file_id": "18cf512b-6362-4f40-917e-d244f6842137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4049e380747e4aa8a9919f4115ee8b27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4049e380747e4aa8a9919f4115ee8b27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4049e380747e4aa8a9919f4115ee8b27.jpg", "file_size": 18066, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#迷彩L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4049e380747e4aa8a9919f4115ee8b27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4049e380747e4aa8a9919f4115ee8b27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4049e380747e4aa8a9919f4115ee8b27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4049e380747e4aa8a9919f4115ee8b27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4049e380747e4aa8a9919f4115ee8b27.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IFz29Zf-GtxQxDxgB3khlAoZ84k=", "createTime": "2024-08-15 15:08:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.209868+00 2025-12-09 10:15:58.209875+00 20606 24077#-2-A# SPMX-20240815315849 \N \N \N 1 \N [{"file_id": "e11094be-886f-4734-a98a-fbbb60fc9d7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a537f4e6f6344babd6f4f048da814b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a537f4e6f6344babd6f4f048da814b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a537f4e6f6344babd6f4f048da814b5.jpg", "file_size": 45205, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-A#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a537f4e6f6344babd6f4f048da814b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a537f4e6f6344babd6f4f048da814b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a537f4e6f6344babd6f4f048da814b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a537f4e6f6344babd6f4f048da814b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a537f4e6f6344babd6f4f048da814b5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLDOZqvM-xVHt3jnHx_4wwxCTFA=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.213399+00 2025-12-09 10:15:58.213406+00 20607 LJH6630#紫色 SPMX-20240815315854 \N \N \N 1 \N [{"file_id": "b591bf43-fb49-400a-b862-8d86ce525afe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "996933ab5ff64535ab8cb84a0864f2c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "996933ab5ff64535ab8cb84a0864f2c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "996933ab5ff64535ab8cb84a0864f2c5.jpg", "file_size": 40790, "is_delete": false, "file_type": 1, "original_file_name": "LJH6630#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996933ab5ff64535ab8cb84a0864f2c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996933ab5ff64535ab8cb84a0864f2c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/996933ab5ff64535ab8cb84a0864f2c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/996933ab5ff64535ab8cb84a0864f2c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/996933ab5ff64535ab8cb84a0864f2c5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c34pxjTsYlA97P29pZ0-tQZ_PL0=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.216912+00 2025-12-09 10:15:58.216919+00 20608 DM215FW#5XL VS-D3 SPMX-20240815315850 \N \N \N 1 \N [{"file_id": "8788f3ae-f29e-4334-9a22-f5725f19df2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d128007dabd40c7b03c1cb41bbb7eb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d128007dabd40c7b03c1cb41bbb7eb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d128007dabd40c7b03c1cb41bbb7eb9.jpg", "file_size": 26306, "is_delete": false, "file_type": 1, "original_file_name": "DM215FW#5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d128007dabd40c7b03c1cb41bbb7eb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d128007dabd40c7b03c1cb41bbb7eb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d128007dabd40c7b03c1cb41bbb7eb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d128007dabd40c7b03c1cb41bbb7eb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d128007dabd40c7b03c1cb41bbb7eb9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tjnl9pSmPXsV9FTVz9zH5Z6Z6cM=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.220413+00 2025-12-09 10:15:58.22042+00 20609 FX005#D SPMX-20240815315853 \N \N \N 1 \N [{"file_id": "13b0e59f-1317-4542-b885-f0526ee225d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f8dc8ccf10743dc9582826930383218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f8dc8ccf10743dc9582826930383218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f8dc8ccf10743dc9582826930383218.jpg", "file_size": 12327, "is_delete": false, "file_type": 1, "original_file_name": "FX005#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8dc8ccf10743dc9582826930383218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8dc8ccf10743dc9582826930383218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f8dc8ccf10743dc9582826930383218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f8dc8ccf10743dc9582826930383218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f8dc8ccf10743dc9582826930383218.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_CxMdME_y7YjqgEdGQgtYzizWQ=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.223941+00 2025-12-09 10:15:58.223947+00 20610 LZ1419#大人T2号色 SPMX-20240815315851 \N \N \N 1 \N [{"file_id": "fdbf09f1-b0c4-4b5e-8514-ab65dc1d32c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77da3aa6cc554f35b54b5ca75a52d547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77da3aa6cc554f35b54b5ca75a52d547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77da3aa6cc554f35b54b5ca75a52d547.jpg", "file_size": 19841, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77da3aa6cc554f35b54b5ca75a52d547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77da3aa6cc554f35b54b5ca75a52d547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77da3aa6cc554f35b54b5ca75a52d547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77da3aa6cc554f35b54b5ca75a52d547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77da3aa6cc554f35b54b5ca75a52d547.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lXQ_eR-9S1VpnF9frPJT2KP0384=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.227472+00 2025-12-09 10:15:58.227478+00 20611 CH09304FWD#迷彩M SPMX-20240815315855 \N \N \N 1 \N [{"file_id": "d851409a-aa9e-4b9e-8e09-d7415e94c70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "412fa95123354b4b93ca0a83c34cf447.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "412fa95123354b4b93ca0a83c34cf447.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "412fa95123354b4b93ca0a83c34cf447.jpg", "file_size": 17866, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#迷彩M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412fa95123354b4b93ca0a83c34cf447.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412fa95123354b4b93ca0a83c34cf447.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/412fa95123354b4b93ca0a83c34cf447.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/412fa95123354b4b93ca0a83c34cf447.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/412fa95123354b4b93ca0a83c34cf447.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_caWykCxw9JPasXGhFMc6LiUmYc=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.231048+00 2025-12-09 10:15:58.231054+00 20612 HXF004#蓝 SPMX-20240815315852 \N \N \N 1 \N [{"file_id": "e3d7ecc8-eeb7-4f1c-9f96-c92ed8fc2462", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efc5a3b5b092442889034a09e63dc692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efc5a3b5b092442889034a09e63dc692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efc5a3b5b092442889034a09e63dc692.jpg", "file_size": 20086, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5a3b5b092442889034a09e63dc692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5a3b5b092442889034a09e63dc692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efc5a3b5b092442889034a09e63dc692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efc5a3b5b092442889034a09e63dc692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efc5a3b5b092442889034a09e63dc692.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:heB9DefJBIZW1kENEiv8BbhGlTc=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.234567+00 2025-12-09 10:15:58.234574+00 20613 88380FWF#A咖色44码 SPMX-20240815315869 \N \N \N 1 \N [{"file_id": "e4033fe6-d560-42f8-b745-c9bb2a010917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "892edaae60b44ca685d9785e029d300a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "892edaae60b44ca685d9785e029d300a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "892edaae60b44ca685d9785e029d300a.jpg", "file_size": 21913, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A咖色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/892edaae60b44ca685d9785e029d300a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/892edaae60b44ca685d9785e029d300a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/892edaae60b44ca685d9785e029d300a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/892edaae60b44ca685d9785e029d300a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/892edaae60b44ca685d9785e029d300a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rMZTxsUNq_4JenGqAFcvvx0sMTs=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.238158+00 2025-12-09 10:15:58.238165+00 20614 LZ1419#大人T3号色 SPMX-20240815315861 \N \N \N 1 \N [{"file_id": "674a273b-de4b-4598-8403-017119325d7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b28366032bc4733b0b9b9d91f0f0c83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b28366032bc4733b0b9b9d91f0f0c83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b28366032bc4733b0b9b9d91f0f0c83.jpg", "file_size": 18029, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b28366032bc4733b0b9b9d91f0f0c83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b28366032bc4733b0b9b9d91f0f0c83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b28366032bc4733b0b9b9d91f0f0c83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b28366032bc4733b0b9b9d91f0f0c83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b28366032bc4733b0b9b9d91f0f0c83.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y9zZYtnv1TMSnjEYMV86mp2Hyyo=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.241718+00 2025-12-09 10:15:58.241725+00 20615 FX005#VS-D3 SPMX-20240815315864 \N \N \N 1 \N [{"file_id": "b5a58688-edc3-4794-8c03-b5ea08860cd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760f662b7d6a467c9b623ca496c14264.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760f662b7d6a467c9b623ca496c14264.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760f662b7d6a467c9b623ca496c14264.jpg", "file_size": 9488, "is_delete": false, "file_type": 1, "original_file_name": "FX005#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760f662b7d6a467c9b623ca496c14264.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760f662b7d6a467c9b623ca496c14264.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760f662b7d6a467c9b623ca496c14264.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760f662b7d6a467c9b623ca496c14264.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760f662b7d6a467c9b623ca496c14264.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Gd41ivnLQ2XWybedc6liuEt3rtc=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.245322+00 2025-12-09 10:15:58.245328+00 20616 HXF004#黄 SPMX-20240815315862 \N \N \N 1 \N [{"file_id": "ea9443ce-459d-4c38-8f89-6ac87e78431b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d9441a783f2410c8ca9fb81b07577ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d9441a783f2410c8ca9fb81b07577ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d9441a783f2410c8ca9fb81b07577ae.jpg", "file_size": 11316, "is_delete": false, "file_type": 1, "original_file_name": "HXF004#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9441a783f2410c8ca9fb81b07577ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9441a783f2410c8ca9fb81b07577ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d9441a783f2410c8ca9fb81b07577ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d9441a783f2410c8ca9fb81b07577ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d9441a783f2410c8ca9fb81b07577ae.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0WNjJuGkh9Rf-3U4_s0tWWH67I=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.248894+00 2025-12-09 10:15:58.2489+00 20617 CH09304FWD#迷彩S SPMX-20240815315865 \N \N \N 1 \N [{"file_id": "4fec8b0f-8f33-49ff-9eac-304a0965506b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1388ddc975144ed8ee76c6df28bd04f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1388ddc975144ed8ee76c6df28bd04f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1388ddc975144ed8ee76c6df28bd04f.jpg", "file_size": 17750, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#迷彩S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1388ddc975144ed8ee76c6df28bd04f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1388ddc975144ed8ee76c6df28bd04f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1388ddc975144ed8ee76c6df28bd04f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1388ddc975144ed8ee76c6df28bd04f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1388ddc975144ed8ee76c6df28bd04f.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9uKMe7r4lmxLFXCT_DaGYwTiPo=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.252542+00 2025-12-09 10:15:58.252548+00 20618 DM215FW#XL VS-D3 SPMX-20240815315863 \N \N \N 1 \N [{"file_id": "a05394dd-607e-43a7-9be9-fde3ad4f36af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5ec1fea1a294c8c89761e246bcc30ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5ec1fea1a294c8c89761e246bcc30ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5ec1fea1a294c8c89761e246bcc30ba.jpg", "file_size": 27960, "is_delete": false, "file_type": 1, "original_file_name": "DM215FW#XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ec1fea1a294c8c89761e246bcc30ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ec1fea1a294c8c89761e246bcc30ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5ec1fea1a294c8c89761e246bcc30ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5ec1fea1a294c8c89761e246bcc30ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5ec1fea1a294c8c89761e246bcc30ba.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F4k0qHY3a04YerTpjLJJR5h0AC4=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.256141+00 2025-12-09 10:15:58.256147+00 20619 003-L门边 SPMX-20240815315856 \N \N \N 1 \N [{"file_id": "c17d7c0f-bee6-4e35-9a93-b62bfc75c652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4be4a2fb3b994763abbab7c7f9839a86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4be4a2fb3b994763abbab7c7f9839a86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4be4a2fb3b994763abbab7c7f9839a86.jpg", "file_size": 19055, "is_delete": false, "file_type": 1, "original_file_name": "003-L门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4be4a2fb3b994763abbab7c7f9839a86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4be4a2fb3b994763abbab7c7f9839a86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4be4a2fb3b994763abbab7c7f9839a86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4be4a2fb3b994763abbab7c7f9839a86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4be4a2fb3b994763abbab7c7f9839a86.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZth-3R5aYtAnYhYW-lqv4hA2tc=", "createTime": "2024-08-15 15:08:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.259719+00 2025-12-09 10:15:58.259726+00 20620 LJH6630#绿色 SPMX-20240815315866 \N \N \N 1 \N [{"file_id": "2faed8b9-05ee-46d7-a5fa-5a8b563ff3ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a86b1b920c4d486f993f0022ea872618.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a86b1b920c4d486f993f0022ea872618.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a86b1b920c4d486f993f0022ea872618.jpg", "file_size": 45419, "is_delete": false, "file_type": 1, "original_file_name": "LJH6630#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b1b920c4d486f993f0022ea872618.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b1b920c4d486f993f0022ea872618.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a86b1b920c4d486f993f0022ea872618.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a86b1b920c4d486f993f0022ea872618.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a86b1b920c4d486f993f0022ea872618.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IAPxF9CFojCziPDoT_iOq2DSrDQ=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.263246+00 2025-12-09 10:15:58.263253+00 20621 003-M SPMX-20240815315867 \N \N \N 1 \N [{"file_id": "81aad2be-b5e0-409a-8c27-49fbbd55bf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26ab749027c34d55b25b7bab7b5a279d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26ab749027c34d55b25b7bab7b5a279d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26ab749027c34d55b25b7bab7b5a279d.jpg", "file_size": 15364, "is_delete": false, "file_type": 1, "original_file_name": "003-M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ab749027c34d55b25b7bab7b5a279d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ab749027c34d55b25b7bab7b5a279d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26ab749027c34d55b25b7bab7b5a279d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26ab749027c34d55b25b7bab7b5a279d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26ab749027c34d55b25b7bab7b5a279d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JNS4n2jMrcA1uX0i7bzplJfu8_I=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.266796+00 2025-12-09 10:15:58.266802+00 20622 24077#-2-b#-左 SPMX-20240815315860 \N \N \N 1 \N [{"file_id": "ab21c4c9-b927-4de3-b01f-b1c981da4c09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8eb8fe20e014c2c8116ada01fb397ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8eb8fe20e014c2c8116ada01fb397ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8eb8fe20e014c2c8116ada01fb397ea.jpg", "file_size": 48300, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-b#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8eb8fe20e014c2c8116ada01fb397ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8eb8fe20e014c2c8116ada01fb397ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8eb8fe20e014c2c8116ada01fb397ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8eb8fe20e014c2c8116ada01fb397ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8eb8fe20e014c2c8116ada01fb397ea.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VNq-qwqh3CRZxJC6XvJxuNV3qs0=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.270367+00 2025-12-09 10:15:58.270373+00 20623 126#-深杏 SPMX-20240815315859 \N \N \N 1 \N [{"file_id": "51d95ed7-4a8b-40fd-97bd-5aec7a417ab7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b4d15fb1b684836a2e73fc4f2732be1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b4d15fb1b684836a2e73fc4f2732be1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b4d15fb1b684836a2e73fc4f2732be1.jpg", "file_size": 42571, "is_delete": false, "file_type": 1, "original_file_name": "126#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4d15fb1b684836a2e73fc4f2732be1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4d15fb1b684836a2e73fc4f2732be1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4d15fb1b684836a2e73fc4f2732be1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b4d15fb1b684836a2e73fc4f2732be1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b4d15fb1b684836a2e73fc4f2732be1.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tRcixVwlcot96O4bOlAHLk_zesY=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.273956+00 2025-12-09 10:15:58.273962+00 20624 88380FWF#A咖色42码 SPMX-20240815315857 \N \N \N 1 \N [{"file_id": "38241bbc-1eac-479e-ae89-781348f3fe6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5aa6304a6d5408990282969f579dbe8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5aa6304a6d5408990282969f579dbe8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5aa6304a6d5408990282969f579dbe8.jpg", "file_size": 21626, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A咖色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5aa6304a6d5408990282969f579dbe8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5aa6304a6d5408990282969f579dbe8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5aa6304a6d5408990282969f579dbe8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5aa6304a6d5408990282969f579dbe8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5aa6304a6d5408990282969f579dbe8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2LDnfki0IeT5GrQI14-4480UFY=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.277499+00 2025-12-09 10:15:58.277506+00 20625 JY-AD-207#5号白底焦糖色3XL SPMX-20240815315858 \N \N \N 1 \N [{"file_id": "1267944f-3fdf-4db8-a686-2397a2f606d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d30264caf3be4d10b20801b298c3ade8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d30264caf3be4d10b20801b298c3ade8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d30264caf3be4d10b20801b298c3ade8.jpg", "file_size": 21582, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30264caf3be4d10b20801b298c3ade8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30264caf3be4d10b20801b298c3ade8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30264caf3be4d10b20801b298c3ade8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d30264caf3be4d10b20801b298c3ade8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d30264caf3be4d10b20801b298c3ade8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uqJxlO212ChN9WiDJt4fgyk3Cm0=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.281092+00 2025-12-09 10:15:58.281099+00 20626 JY-AD-207#5号白底焦糖色L SPMX-20240815315868 \N \N \N 1 \N [{"file_id": "f219b9df-2849-4a86-91f7-07470949366f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "271da1c589e14ec4a226b574fcac0652.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "271da1c589e14ec4a226b574fcac0652.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "271da1c589e14ec4a226b574fcac0652.jpg", "file_size": 23554, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271da1c589e14ec4a226b574fcac0652.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271da1c589e14ec4a226b574fcac0652.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/271da1c589e14ec4a226b574fcac0652.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/271da1c589e14ec4a226b574fcac0652.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/271da1c589e14ec4a226b574fcac0652.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:626wRFyMOvDTJEY9pGfLMYWbLDY=", "createTime": "2024-08-15 15:08:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.284644+00 2025-12-09 10:15:58.284649+00 20627 HXF004FW#VS-D3 SPMX-20240815315871 \N \N \N 1 \N [{"file_id": "7d9fd770-3ce5-46aa-b9aa-d93a04838266", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5a8b918d19c47b2a664d42e43fd7670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5a8b918d19c47b2a664d42e43fd7670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5a8b918d19c47b2a664d42e43fd7670.jpg", "file_size": 19657, "is_delete": false, "file_type": 1, "original_file_name": "HXF004FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a8b918d19c47b2a664d42e43fd7670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a8b918d19c47b2a664d42e43fd7670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a8b918d19c47b2a664d42e43fd7670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5a8b918d19c47b2a664d42e43fd7670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5a8b918d19c47b2a664d42e43fd7670.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DnZykLe7hWEvjObTToNgBGNuzVU=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.288185+00 2025-12-09 10:15:58.288191+00 20628 CH09304FWD#迷彩XL SPMX-20240815315877 \N \N \N 1 \N [{"file_id": "285181d1-2fa3-4537-bb35-c89cc872bee8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce4ba16b46a047908682295111574332.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce4ba16b46a047908682295111574332.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce4ba16b46a047908682295111574332.jpg", "file_size": 18731, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#迷彩XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce4ba16b46a047908682295111574332.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce4ba16b46a047908682295111574332.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce4ba16b46a047908682295111574332.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce4ba16b46a047908682295111574332.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce4ba16b46a047908682295111574332.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5ShfmNmzpCoLr7EYrr8mijRyoY=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.291697+00 2025-12-09 10:15:58.291707+00 20629 003-M袖口 SPMX-20240815315879 \N \N \N 1 \N [{"file_id": "8823c5e8-a546-4969-98a2-ebb1b4f5f76b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a49457a442f4646a41f3f9f385903fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a49457a442f4646a41f3f9f385903fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a49457a442f4646a41f3f9f385903fd.jpg", "file_size": 5273, "is_delete": false, "file_type": 1, "original_file_name": "003-M袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49457a442f4646a41f3f9f385903fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49457a442f4646a41f3f9f385903fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a49457a442f4646a41f3f9f385903fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a49457a442f4646a41f3f9f385903fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a49457a442f4646a41f3f9f385903fd.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GHx1fzwr-5aKvQjfROvvbUh_NJs=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.295326+00 2025-12-09 10:15:58.295332+00 20630 88380FWF#A咖色46码 SPMX-20240815315878 \N \N \N 1 \N [{"file_id": "ee72cea4-f05f-44b7-a4cd-21f5ddab063f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "338233300b9f41a4a240291277413a1e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "338233300b9f41a4a240291277413a1e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "338233300b9f41a4a240291277413a1e.jpg", "file_size": 22616, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A咖色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338233300b9f41a4a240291277413a1e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338233300b9f41a4a240291277413a1e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338233300b9f41a4a240291277413a1e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/338233300b9f41a4a240291277413a1e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/338233300b9f41a4a240291277413a1e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQ7t53F8qYpPUGTuI8gU-IuCu9E=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.298959+00 2025-12-09 10:15:58.298966+00 20631 DM22133#2XL-番禺调色 SPMX-20240815315870 \N \N \N 1 \N [{"file_id": "13bc4845-0c4c-43cc-89b8-8118e6ff1046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b748182a6c543f4ad4187bdb3710166.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b748182a6c543f4ad4187bdb3710166.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b748182a6c543f4ad4187bdb3710166.jpg", "file_size": 8178, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#2XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b748182a6c543f4ad4187bdb3710166.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b748182a6c543f4ad4187bdb3710166.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b748182a6c543f4ad4187bdb3710166.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b748182a6c543f4ad4187bdb3710166.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b748182a6c543f4ad4187bdb3710166.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EXRkJkmow-hEvvjhWVZJPCwshOE=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.30251+00 2025-12-09 10:15:58.302516+00 20632 LZ1419#大人T4号色 SPMX-20240815315874 \N \N \N 1 \N [{"file_id": "a1499525-59c5-47c8-89cf-4b65c7e809e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7981f50ea574c0b80e6411f5b558164.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7981f50ea574c0b80e6411f5b558164.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7981f50ea574c0b80e6411f5b558164.jpg", "file_size": 17963, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7981f50ea574c0b80e6411f5b558164.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7981f50ea574c0b80e6411f5b558164.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7981f50ea574c0b80e6411f5b558164.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7981f50ea574c0b80e6411f5b558164.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7981f50ea574c0b80e6411f5b558164.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0q8SCXJtU5M1qLi3qEJepSx4FcI=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.306053+00 2025-12-09 10:15:58.306059+00 20633 JY-AD-207#5号白底焦糖色M SPMX-20240815315875 \N \N \N 1 \N [{"file_id": "062fa605-9141-4e46-b6f0-f00d468e77d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b45bd9658c064deb88f5be5d42cfa0a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b45bd9658c064deb88f5be5d42cfa0a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b45bd9658c064deb88f5be5d42cfa0a8.jpg", "file_size": 23681, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b45bd9658c064deb88f5be5d42cfa0a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b45bd9658c064deb88f5be5d42cfa0a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b45bd9658c064deb88f5be5d42cfa0a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b45bd9658c064deb88f5be5d42cfa0a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b45bd9658c064deb88f5be5d42cfa0a8.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ySwaSBxlmjIkmz7QR8okNx0Jui4=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.30965+00 2025-12-09 10:15:58.309656+00 20634 126#-灰色 SPMX-20240815315872 \N \N \N 1 \N [{"file_id": "a2e2a824-d5d5-4d4c-ab17-0c06ea0110c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c87c428e9c44d31b1b0c7049689cc6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c87c428e9c44d31b1b0c7049689cc6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c87c428e9c44d31b1b0c7049689cc6c.jpg", "file_size": 59166, "is_delete": false, "file_type": 1, "original_file_name": "126#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c87c428e9c44d31b1b0c7049689cc6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c87c428e9c44d31b1b0c7049689cc6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c87c428e9c44d31b1b0c7049689cc6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c87c428e9c44d31b1b0c7049689cc6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c87c428e9c44d31b1b0c7049689cc6c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pT-A-Pu8xSJzD8D32ZqtZwc7w8I=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.313212+00 2025-12-09 10:15:58.31322+00 20635 FX005FW#VS-D3 SPMX-20240815315876 \N \N \N 1 \N [{"file_id": "e8ab5cb8-1410-4f62-a81b-765ccbaf59d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8673aecbc45453f8cf45237d476ae21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8673aecbc45453f8cf45237d476ae21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8673aecbc45453f8cf45237d476ae21.jpg", "file_size": 14551, "is_delete": false, "file_type": 1, "original_file_name": "FX005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8673aecbc45453f8cf45237d476ae21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8673aecbc45453f8cf45237d476ae21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8673aecbc45453f8cf45237d476ae21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8673aecbc45453f8cf45237d476ae21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8673aecbc45453f8cf45237d476ae21.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Do28byEXFJnr5EIXL4ay6kD2-fo=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.316774+00 2025-12-09 10:15:58.316781+00 20636 24077#-2-B# SPMX-20240815315873 \N \N \N 1 \N [{"file_id": "dcce5a65-5c71-4503-b091-026b387d7b81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7640e7ee0bad473a8ee2336e35afa76b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7640e7ee0bad473a8ee2336e35afa76b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7640e7ee0bad473a8ee2336e35afa76b.jpg", "file_size": 45588, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-B#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7640e7ee0bad473a8ee2336e35afa76b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7640e7ee0bad473a8ee2336e35afa76b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7640e7ee0bad473a8ee2336e35afa76b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7640e7ee0bad473a8ee2336e35afa76b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7640e7ee0bad473a8ee2336e35afa76b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C7stMMi6kSMZCr2Ccd_foPVVB8k=", "createTime": "2024-08-15 15:08:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.32027+00 2025-12-09 10:15:58.320276+00 20637 LJH6633#宝蓝 SPMX-20240815315880 \N \N \N 1 \N [{"file_id": "9d8f13b1-03ff-435c-a4ac-80b8ded6ef58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12c164bf08ed4e3f9aecb7fcb9a682b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12c164bf08ed4e3f9aecb7fcb9a682b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12c164bf08ed4e3f9aecb7fcb9a682b6.jpg", "file_size": 44092, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c164bf08ed4e3f9aecb7fcb9a682b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c164bf08ed4e3f9aecb7fcb9a682b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12c164bf08ed4e3f9aecb7fcb9a682b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12c164bf08ed4e3f9aecb7fcb9a682b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12c164bf08ed4e3f9aecb7fcb9a682b6.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSQihtZAlVDq8EbizN72RaroJKk=", "createTime": "2024-08-15 15:08:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.323789+00 2025-12-09 10:15:58.323796+00 20638 DM22133#3XL-番禺调色 SPMX-20240815315881 \N \N \N 1 \N [{"file_id": "5d233bec-6e8e-46e8-9b5d-1f72f154fc25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2117ae048a5d4ac393be4cc69e41e63e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2117ae048a5d4ac393be4cc69e41e63e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2117ae048a5d4ac393be4cc69e41e63e.jpg", "file_size": 8406, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#3XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2117ae048a5d4ac393be4cc69e41e63e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2117ae048a5d4ac393be4cc69e41e63e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2117ae048a5d4ac393be4cc69e41e63e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2117ae048a5d4ac393be4cc69e41e63e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2117ae048a5d4ac393be4cc69e41e63e.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uliH35cQ157VHrPc2eEGgkXw9m8=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.327287+00 2025-12-09 10:15:58.327294+00 20639 88380FWF#A咖色48码 SPMX-20240815315888 \N \N \N 1 \N [{"file_id": "37243fb0-8373-4e66-b979-a01962c2c82a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44b333ec1b754ca5bf5f0963180171d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44b333ec1b754ca5bf5f0963180171d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44b333ec1b754ca5bf5f0963180171d5.jpg", "file_size": 22473, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A咖色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b333ec1b754ca5bf5f0963180171d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b333ec1b754ca5bf5f0963180171d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44b333ec1b754ca5bf5f0963180171d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44b333ec1b754ca5bf5f0963180171d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44b333ec1b754ca5bf5f0963180171d5.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_BTvgFXQ4Vv5Y8_IEzs9XOvs-lU=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.330814+00 2025-12-09 10:15:58.33082+00 20640 LJH6633#玫红 SPMX-20240815315887 \N \N \N 1 \N [{"file_id": "2ec9d55a-6c0c-457a-8753-e826d54336fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8bb32da4950432eafac3f96105180a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8bb32da4950432eafac3f96105180a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8bb32da4950432eafac3f96105180a2.jpg", "file_size": 48349, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bb32da4950432eafac3f96105180a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bb32da4950432eafac3f96105180a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bb32da4950432eafac3f96105180a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8bb32da4950432eafac3f96105180a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8bb32da4950432eafac3f96105180a2.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z29vBB7Mjhw-0UWihy--WHGZeko=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.334231+00 2025-12-09 10:15:58.334237+00 20641 126#-白色 SPMX-20240815315884 \N \N \N 1 \N [{"file_id": "ff850c3a-047e-403f-9acb-80ef44a24dc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb9b734054ec4e1f8dd8bcac43f2e335.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb9b734054ec4e1f8dd8bcac43f2e335.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb9b734054ec4e1f8dd8bcac43f2e335.jpg", "file_size": 47376, "is_delete": false, "file_type": 1, "original_file_name": "126#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b734054ec4e1f8dd8bcac43f2e335.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b734054ec4e1f8dd8bcac43f2e335.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb9b734054ec4e1f8dd8bcac43f2e335.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb9b734054ec4e1f8dd8bcac43f2e335.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb9b734054ec4e1f8dd8bcac43f2e335.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2lOUhtGiC_sjIoQQIen0RrS0Wrk=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.337805+00 2025-12-09 10:15:58.337812+00 20642 24077#-2-c#-左 SPMX-20240815315885 \N \N \N 1 \N [{"file_id": "9e86ea25-59e0-49e2-968a-a1eeb47f553b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e323b3dd980845e29a1f58bf7235c138.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e323b3dd980845e29a1f58bf7235c138.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e323b3dd980845e29a1f58bf7235c138.jpg", "file_size": 45820, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-c#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e323b3dd980845e29a1f58bf7235c138.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e323b3dd980845e29a1f58bf7235c138.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e323b3dd980845e29a1f58bf7235c138.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e323b3dd980845e29a1f58bf7235c138.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e323b3dd980845e29a1f58bf7235c138.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AXvIxn-EhyNYskpNHrWY0IivAzM=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.341755+00 2025-12-09 10:15:58.341763+00 20643 LZ1419#大人T5号色 SPMX-20240815315882 \N \N \N 1 \N [{"file_id": "1682e261-533d-41ef-aafc-fc639231a7a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d96cce3fd51644a686b20a470d65be89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d96cce3fd51644a686b20a470d65be89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d96cce3fd51644a686b20a470d65be89.jpg", "file_size": 19588, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96cce3fd51644a686b20a470d65be89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96cce3fd51644a686b20a470d65be89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d96cce3fd51644a686b20a470d65be89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d96cce3fd51644a686b20a470d65be89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d96cce3fd51644a686b20a470d65be89.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FFmJEbYWRRXqsDpKd1D1pYlviOQ=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.34575+00 2025-12-09 10:15:58.345757+00 20644 HXF004FWE#VS-D3 SPMX-20240815315883 \N \N \N 1 \N [{"file_id": "dff35e85-1608-4d37-9935-da1ffe64a8a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6a5b489b1de4505b29a76c96a1b1bae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6a5b489b1de4505b29a76c96a1b1bae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6a5b489b1de4505b29a76c96a1b1bae.jpg", "file_size": 14715, "is_delete": false, "file_type": 1, "original_file_name": "HXF004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a5b489b1de4505b29a76c96a1b1bae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a5b489b1de4505b29a76c96a1b1bae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6a5b489b1de4505b29a76c96a1b1bae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6a5b489b1de4505b29a76c96a1b1bae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6a5b489b1de4505b29a76c96a1b1bae.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_KzXT8imxIi0yrsPZY7YriPB3Vs=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.349566+00 2025-12-09 10:15:58.349572+00 20645 JY-AD-207#5号白底焦糖色S SPMX-20240815315886 \N \N \N 1 \N [{"file_id": "3bca5034-1eb5-4f93-8016-361d2d6b6426", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cfaedcccd604a2abaa3f4823818ca62.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cfaedcccd604a2abaa3f4823818ca62.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cfaedcccd604a2abaa3f4823818ca62.jpg", "file_size": 24178, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfaedcccd604a2abaa3f4823818ca62.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfaedcccd604a2abaa3f4823818ca62.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cfaedcccd604a2abaa3f4823818ca62.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cfaedcccd604a2abaa3f4823818ca62.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cfaedcccd604a2abaa3f4823818ca62.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEn-clPEN9Pdx_aQTEkciWOAiDg=", "createTime": "2024-08-15 15:08:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.353434+00 2025-12-09 10:15:58.353441+00 20646 CH09304FWD#迷彩XS SPMX-20240815315889 \N \N \N 1 \N [{"file_id": "9db89aa4-ef2e-4bdb-a7e9-07fa807a06e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e5ef0b9df1546b6ac468b8ecc369a1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e5ef0b9df1546b6ac468b8ecc369a1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e5ef0b9df1546b6ac468b8ecc369a1d.jpg", "file_size": 17568, "is_delete": false, "file_type": 1, "original_file_name": "CH09304FWD#迷彩XS.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ef0b9df1546b6ac468b8ecc369a1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ef0b9df1546b6ac468b8ecc369a1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e5ef0b9df1546b6ac468b8ecc369a1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e5ef0b9df1546b6ac468b8ecc369a1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e5ef0b9df1546b6ac468b8ecc369a1d.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HnZlwXEArSGAHTFGOZ3F_Z-p4Vs=", "createTime": "2024-08-15 15:08:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.35732+00 2025-12-09 10:15:58.357327+00 20647 88380FWF#A咖色50码 SPMX-20240815315892 \N \N \N 1 \N [{"file_id": "73e2bbd1-07bb-405e-9bb5-3db5d35d0cce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30b2898f6b8246928fed53b93cd1c288.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30b2898f6b8246928fed53b93cd1c288.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30b2898f6b8246928fed53b93cd1c288.jpg", "file_size": 23311, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A咖色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b2898f6b8246928fed53b93cd1c288.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b2898f6b8246928fed53b93cd1c288.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30b2898f6b8246928fed53b93cd1c288.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30b2898f6b8246928fed53b93cd1c288.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30b2898f6b8246928fed53b93cd1c288.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Z-Geibd9kEjjYFlp40OFakLLAk=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.361151+00 2025-12-09 10:15:58.361157+00 20648 JY-AD-207#5号白底焦糖色XL SPMX-20240815315895 \N \N \N 1 \N [{"file_id": "b3b5f7d8-27bb-423c-bf6a-80f6b37f0761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9b2fabae3e34a9aa167c825c595ba42.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9b2fabae3e34a9aa167c825c595ba42.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9b2fabae3e34a9aa167c825c595ba42.jpg", "file_size": 21624, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#5号白底焦糖色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b2fabae3e34a9aa167c825c595ba42.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b2fabae3e34a9aa167c825c595ba42.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9b2fabae3e34a9aa167c825c595ba42.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9b2fabae3e34a9aa167c825c595ba42.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9b2fabae3e34a9aa167c825c595ba42.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sG2HR50yujC-9SREtjzI7BTkyZY=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.36505+00 2025-12-09 10:15:58.365056+00 20649 88380FWF#A枣红42码 SPMX-20240815315905 \N \N \N 1 \N [{"file_id": "8c817677-1217-450f-aec5-c84065d1996a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08c7a971000c461faf3de82b32cf8c7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08c7a971000c461faf3de82b32cf8c7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08c7a971000c461faf3de82b32cf8c7b.jpg", "file_size": 22093, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A枣红42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c7a971000c461faf3de82b32cf8c7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c7a971000c461faf3de82b32cf8c7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08c7a971000c461faf3de82b32cf8c7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08c7a971000c461faf3de82b32cf8c7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08c7a971000c461faf3de82b32cf8c7b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u0VG6TZW0FsS25pAEV9dC6EM5yI=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.368793+00 2025-12-09 10:15:58.368799+00 20650 JY-AD-207#6号白底红色2XL SPMX-20240815315906 \N \N \N 1 \N [{"file_id": "75f75985-338a-418c-a9ac-bb47781e12e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "034bc8636225468cbface5b819456429.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "034bc8636225468cbface5b819456429.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "034bc8636225468cbface5b819456429.jpg", "file_size": 21890, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034bc8636225468cbface5b819456429.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034bc8636225468cbface5b819456429.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/034bc8636225468cbface5b819456429.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/034bc8636225468cbface5b819456429.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/034bc8636225468cbface5b819456429.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kaGuV0Dj6IQFyVlHhym1Y3GKEzw=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.372295+00 2025-12-09 10:15:58.372301+00 20651 126#-黑色 SPMX-20240815315898 \N \N \N 1 \N [{"file_id": "d8299d86-282e-4326-9860-4437b9f82c03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2c552b632f64cff896fd0f9a130bc02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2c552b632f64cff896fd0f9a130bc02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2c552b632f64cff896fd0f9a130bc02.jpg", "file_size": 44997, "is_delete": false, "file_type": 1, "original_file_name": "126#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c552b632f64cff896fd0f9a130bc02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c552b632f64cff896fd0f9a130bc02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2c552b632f64cff896fd0f9a130bc02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2c552b632f64cff896fd0f9a130bc02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2c552b632f64cff896fd0f9a130bc02.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:85fq68YuEtWsejGCmIcKFNLydAg=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.375805+00 2025-12-09 10:15:58.375812+00 20652 HXF005#VS-D3粉 SPMX-20240815315899 \N \N \N 1 \N [{"file_id": "7ffebe75-efbb-495d-ad2e-999e1097c415", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a51ae43880264d769fcf00c55d11f9ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a51ae43880264d769fcf00c55d11f9ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a51ae43880264d769fcf00c55d11f9ba.jpg", "file_size": 21183, "is_delete": false, "file_type": 1, "original_file_name": "HXF005#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51ae43880264d769fcf00c55d11f9ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51ae43880264d769fcf00c55d11f9ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a51ae43880264d769fcf00c55d11f9ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a51ae43880264d769fcf00c55d11f9ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a51ae43880264d769fcf00c55d11f9ba.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PkCGTTBT6c6_89CmGpZx7fcMsYw=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.379255+00 2025-12-09 10:15:58.379261+00 20653 FX006#D黄 SPMX-20240815315901 \N \N \N 1 \N [{"file_id": "8c727400-fcb2-4e0c-a06a-86a4ceae3848", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70787eeb6d874fa9992e019d87e3a802.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70787eeb6d874fa9992e019d87e3a802.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70787eeb6d874fa9992e019d87e3a802.jpg", "file_size": 10635, "is_delete": false, "file_type": 1, "original_file_name": "FX006#D黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70787eeb6d874fa9992e019d87e3a802.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70787eeb6d874fa9992e019d87e3a802.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70787eeb6d874fa9992e019d87e3a802.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70787eeb6d874fa9992e019d87e3a802.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70787eeb6d874fa9992e019d87e3a802.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eXE067jw_IDifrE5hY3_0ru6bPM=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.382817+00 2025-12-09 10:15:58.382824+00 20654 LZ1419#童装T2号色 SPMX-20240815315907 \N \N \N 1 \N [{"file_id": "a2e6737d-c74a-4347-8936-5867cd59f3b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8e2d2f6a80f495688600cc38e97c99b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8e2d2f6a80f495688600cc38e97c99b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8e2d2f6a80f495688600cc38e97c99b.jpg", "file_size": 26075, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e2d2f6a80f495688600cc38e97c99b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e2d2f6a80f495688600cc38e97c99b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8e2d2f6a80f495688600cc38e97c99b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8e2d2f6a80f495688600cc38e97c99b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8e2d2f6a80f495688600cc38e97c99b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uNUjZzh2Es_OwG5Rf0rITHZNIDY=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.386609+00 2025-12-09 10:15:58.386615+00 20655 LJH6633#红色 SPMX-20240815315896 \N \N \N 1 \N [{"file_id": "9d7da77e-2383-4ac0-ad5d-9341b3b9d855", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f795e46c30b7429b894a49a639348bc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f795e46c30b7429b894a49a639348bc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f795e46c30b7429b894a49a639348bc0.jpg", "file_size": 49243, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f795e46c30b7429b894a49a639348bc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f795e46c30b7429b894a49a639348bc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f795e46c30b7429b894a49a639348bc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f795e46c30b7429b894a49a639348bc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f795e46c30b7429b894a49a639348bc0.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i9fcyFOSoKKc9MCcHu_B5q3UNeI=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.390241+00 2025-12-09 10:15:58.390247+00 20656 LZ1419#童装T1号色 SPMX-20240815315897 \N \N \N 1 \N [{"file_id": "ae2f6b4a-ab42-4d0a-9c5b-fea40ec2903c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f859603e95740199b99a4cdc0d825eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f859603e95740199b99a4cdc0d825eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f859603e95740199b99a4cdc0d825eb.jpg", "file_size": 25475, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f859603e95740199b99a4cdc0d825eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f859603e95740199b99a4cdc0d825eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f859603e95740199b99a4cdc0d825eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f859603e95740199b99a4cdc0d825eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f859603e95740199b99a4cdc0d825eb.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAplq35tNr7S0-yMkySarQQ0WHI=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.393874+00 2025-12-09 10:15:58.39388+00 20657 DM22133#5XL-番禺调色 SPMX-20240815315903 \N \N \N 1 \N [{"file_id": "9c90a052-189f-4aeb-a089-6ce952d5b8b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b97de62223ba4fef907d3dd9c3ec73e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b97de62223ba4fef907d3dd9c3ec73e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b97de62223ba4fef907d3dd9c3ec73e4.jpg", "file_size": 8356, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#5XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b97de62223ba4fef907d3dd9c3ec73e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b97de62223ba4fef907d3dd9c3ec73e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b97de62223ba4fef907d3dd9c3ec73e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b97de62223ba4fef907d3dd9c3ec73e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b97de62223ba4fef907d3dd9c3ec73e4.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVYebbeKG7OSWroUwjYhDNswOps=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.397445+00 2025-12-09 10:15:58.397452+00 20658 003-M门边 SPMX-20240815315890 \N \N \N 1 \N [{"file_id": "24574e96-d92d-4823-ac7a-187a26a615dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9fdd210c13a34cfd8cb3001018bf346c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9fdd210c13a34cfd8cb3001018bf346c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9fdd210c13a34cfd8cb3001018bf346c.jpg", "file_size": 19102, "is_delete": false, "file_type": 1, "original_file_name": "003-M门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd210c13a34cfd8cb3001018bf346c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd210c13a34cfd8cb3001018bf346c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9fdd210c13a34cfd8cb3001018bf346c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9fdd210c13a34cfd8cb3001018bf346c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9fdd210c13a34cfd8cb3001018bf346c.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rmP69FC8iCS25_ey5372eZ5xl5g=", "createTime": "2024-08-15 15:08:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.401015+00 2025-12-09 10:15:58.401021+00 20659 FX005FWE#VS-D3 SPMX-20240815315891 \N \N \N 1 \N [{"file_id": "c1023c66-3040-4056-a3bc-4950bd6b0a15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18931682eb4643d8ab6cb6fdfe47d193.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18931682eb4643d8ab6cb6fdfe47d193.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18931682eb4643d8ab6cb6fdfe47d193.jpg", "file_size": 16590, "is_delete": false, "file_type": 1, "original_file_name": "FX005FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18931682eb4643d8ab6cb6fdfe47d193.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18931682eb4643d8ab6cb6fdfe47d193.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18931682eb4643d8ab6cb6fdfe47d193.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18931682eb4643d8ab6cb6fdfe47d193.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18931682eb4643d8ab6cb6fdfe47d193.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPc4NOkmnQV8T-O37_E4_AilZr8=", "createTime": "2024-08-15 15:08:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.404594+00 2025-12-09 10:15:58.404601+00 20660 CH125FWE#斗牛2XL SPMX-20240815315900 \N \N \N 1 \N [{"file_id": "ddb73355-a814-40ed-a820-c7437e3170ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c02853dcee1477193a0c005f4e2cefa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c02853dcee1477193a0c005f4e2cefa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c02853dcee1477193a0c005f4e2cefa.jpg", "file_size": 12342, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c02853dcee1477193a0c005f4e2cefa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c02853dcee1477193a0c005f4e2cefa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c02853dcee1477193a0c005f4e2cefa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c02853dcee1477193a0c005f4e2cefa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c02853dcee1477193a0c005f4e2cefa.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BvDi5qq0UpNUQrI4e8m5RUNsS_o=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.408199+00 2025-12-09 10:15:58.408205+00 20661 003-S SPMX-20240815315902 \N \N \N 1 \N [{"file_id": "5889ac74-c859-43bd-aa54-cc1911b5076a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dda31d7e4d246f487be40d8765b834b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dda31d7e4d246f487be40d8765b834b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dda31d7e4d246f487be40d8765b834b.jpg", "file_size": 15914, "is_delete": false, "file_type": 1, "original_file_name": "003-S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dda31d7e4d246f487be40d8765b834b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dda31d7e4d246f487be40d8765b834b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dda31d7e4d246f487be40d8765b834b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dda31d7e4d246f487be40d8765b834b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dda31d7e4d246f487be40d8765b834b.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sHLx-2UWARBJOLuyZeIpiPZnSEc=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.411734+00 2025-12-09 10:15:58.41174+00 20662 24077#-2-C# SPMX-20240815315894 \N \N \N 1 \N [{"file_id": "18e112ae-754a-4df4-92b9-491048023964", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd89d69d1ab6462d811a7b711d3d9ee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd89d69d1ab6462d811a7b711d3d9ee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd89d69d1ab6462d811a7b711d3d9ee9.jpg", "file_size": 46066, "is_delete": false, "file_type": 1, "original_file_name": "24077#-2-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd89d69d1ab6462d811a7b711d3d9ee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd89d69d1ab6462d811a7b711d3d9ee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd89d69d1ab6462d811a7b711d3d9ee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd89d69d1ab6462d811a7b711d3d9ee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd89d69d1ab6462d811a7b711d3d9ee9.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ts-ZFhK672fL33RBilI3Zeti1G8=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.415342+00 2025-12-09 10:15:58.415348+00 20663 24077#-3#A-左 SPMX-20240815315904 \N \N \N 1 \N [{"file_id": "007d9b27-2f00-4e09-8ed5-023f9b826571", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee7513eab4c14304988f26b6a3428e6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee7513eab4c14304988f26b6a3428e6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee7513eab4c14304988f26b6a3428e6a.jpg", "file_size": 44221, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3#A-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7513eab4c14304988f26b6a3428e6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7513eab4c14304988f26b6a3428e6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee7513eab4c14304988f26b6a3428e6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee7513eab4c14304988f26b6a3428e6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee7513eab4c14304988f26b6a3428e6a.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QG-oYQ-49g7dSa93_uA4ukCHyZ0=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:58.418915+00 2025-12-09 10:15:58.418921+00 20664 DM22133#4XL-番禺调色 SPMX-20240815315893 \N \N \N 1 \N [{"file_id": "c113c290-0974-49ab-9987-a07932147b51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e95f89e000b4101a4dc7877174d9253.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e95f89e000b4101a4dc7877174d9253.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e95f89e000b4101a4dc7877174d9253.jpg", "file_size": 8327, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#4XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e95f89e000b4101a4dc7877174d9253.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e95f89e000b4101a4dc7877174d9253.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e95f89e000b4101a4dc7877174d9253.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e95f89e000b4101a4dc7877174d9253.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e95f89e000b4101a4dc7877174d9253.jpg?e=1765361757&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QWz_zee8jYPmgN-jR5RC63aD3ig=", "createTime": "2024-08-15 15:08:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.147573+00 2025-12-09 10:15:59.147586+00 20665 LJH6633#绿色 SPMX-20240815315910 \N \N \N 1 \N [{"file_id": "8c8cdc6f-dbcd-42cb-89e4-1077403644b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b77e62688a4a44ac85da62e49c6d39bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b77e62688a4a44ac85da62e49c6d39bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b77e62688a4a44ac85da62e49c6d39bf.jpg", "file_size": 45970, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77e62688a4a44ac85da62e49c6d39bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77e62688a4a44ac85da62e49c6d39bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b77e62688a4a44ac85da62e49c6d39bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b77e62688a4a44ac85da62e49c6d39bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b77e62688a4a44ac85da62e49c6d39bf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lk8yiTVjIg1esXCIlAnFmOjeHc4=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.157792+00 2025-12-09 10:15:59.157799+00 20666 DM22133#6XL-番禺调色 SPMX-20240815315912 \N \N \N 1 \N [{"file_id": "eea6c084-8f86-4f10-a3f3-900ef6683028", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87b0299ef8414fe88a691bfa3c2466be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87b0299ef8414fe88a691bfa3c2466be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87b0299ef8414fe88a691bfa3c2466be.jpg", "file_size": 8327, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#6XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b0299ef8414fe88a691bfa3c2466be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b0299ef8414fe88a691bfa3c2466be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b0299ef8414fe88a691bfa3c2466be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87b0299ef8414fe88a691bfa3c2466be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87b0299ef8414fe88a691bfa3c2466be.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9zxhr7LZlGiicnecbV8xESEil0U=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.163659+00 2025-12-09 10:15:59.163666+00 20667 FX006#D黑 SPMX-20240815315913 \N \N \N 1 \N [{"file_id": "5ff848e1-98ea-4b84-ab6b-32cd9d7ae8e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "66e576a4333d486f9608f8dcf4f8aaf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "66e576a4333d486f9608f8dcf4f8aaf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "66e576a4333d486f9608f8dcf4f8aaf9.jpg", "file_size": 12123, "is_delete": false, "file_type": 1, "original_file_name": "FX006#D黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66e576a4333d486f9608f8dcf4f8aaf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66e576a4333d486f9608f8dcf4f8aaf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/66e576a4333d486f9608f8dcf4f8aaf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/66e576a4333d486f9608f8dcf4f8aaf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/66e576a4333d486f9608f8dcf4f8aaf9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pf7WF0bU5zDSMvFWVE2Wp-jR-cM=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.169675+00 2025-12-09 10:15:59.169681+00 20668 003-S袖口 SPMX-20240815315914 \N \N \N 1 \N [{"file_id": "a1bca02a-2426-42cb-bfd8-101433f85029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07280f2958dc4d999c71592e034587ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07280f2958dc4d999c71592e034587ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07280f2958dc4d999c71592e034587ac.jpg", "file_size": 5791, "is_delete": false, "file_type": 1, "original_file_name": "003-S袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07280f2958dc4d999c71592e034587ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07280f2958dc4d999c71592e034587ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07280f2958dc4d999c71592e034587ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07280f2958dc4d999c71592e034587ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07280f2958dc4d999c71592e034587ac.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3kEx9zwQ5AiP83bO2TzPm67aDVo=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.174693+00 2025-12-09 10:15:59.1747+00 20669 HXF005#VS-D3黑 SPMX-20240815315909 \N \N \N 1 \N [{"file_id": "52bed1d4-1c4e-42db-af03-a7a83b37fa12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d579507afe240fbb6330abbef1707ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d579507afe240fbb6330abbef1707ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d579507afe240fbb6330abbef1707ef.jpg", "file_size": 21880, "is_delete": false, "file_type": 1, "original_file_name": "HXF005#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d579507afe240fbb6330abbef1707ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d579507afe240fbb6330abbef1707ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d579507afe240fbb6330abbef1707ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d579507afe240fbb6330abbef1707ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d579507afe240fbb6330abbef1707ef.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2fU1eiD_XhFw8YauHFUqW5014s=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.178288+00 2025-12-09 10:15:59.178294+00 20670 24077#-3#A SPMX-20240815315915 \N \N \N 1 \N [{"file_id": "4e4a3e46-b2bf-496c-8c17-5fba95c857e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6b614d11776408cb13673b3544db70f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6b614d11776408cb13673b3544db70f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6b614d11776408cb13673b3544db70f.jpg", "file_size": 42521, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b614d11776408cb13673b3544db70f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b614d11776408cb13673b3544db70f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6b614d11776408cb13673b3544db70f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6b614d11776408cb13673b3544db70f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6b614d11776408cb13673b3544db70f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qgSPvsP5k7i-Qd3SXARg9Vi1xZg=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.181743+00 2025-12-09 10:15:59.181748+00 20671 126-1#2XL SPMX-20240815315908 \N \N \N 1 \N [{"file_id": "cb0561e0-5acc-4a7a-9ca3-8bfe7e09f67f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3186e50be5d4fc89124001af6fb053b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3186e50be5d4fc89124001af6fb053b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3186e50be5d4fc89124001af6fb053b.jpg", "file_size": 63054, "is_delete": false, "file_type": 1, "original_file_name": "126-1#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3186e50be5d4fc89124001af6fb053b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3186e50be5d4fc89124001af6fb053b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3186e50be5d4fc89124001af6fb053b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3186e50be5d4fc89124001af6fb053b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3186e50be5d4fc89124001af6fb053b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkSI1a-uDZuUnmrUjc-Vo0PCC84=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.185083+00 2025-12-09 10:15:59.185089+00 20672 CH125FWE#斗牛3XL SPMX-20240815315911 \N \N \N 1 \N [{"file_id": "f1ec7e6a-bc35-4ada-9544-922c880ea118", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c52eb118584498e9f8c8c513424935e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c52eb118584498e9f8c8c513424935e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c52eb118584498e9f8c8c513424935e.jpg", "file_size": 12103, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c52eb118584498e9f8c8c513424935e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c52eb118584498e9f8c8c513424935e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c52eb118584498e9f8c8c513424935e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c52eb118584498e9f8c8c513424935e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c52eb118584498e9f8c8c513424935e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zRv43NSBZitPi6TYgmmGTCHgiU8=", "createTime": "2024-08-15 15:08:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.188318+00 2025-12-09 10:15:59.188323+00 20673 CH125FWE#斗牛4XL SPMX-20240815315921 \N \N \N 1 \N [{"file_id": "4410b4ad-bb18-4c52-a20d-d3a89cc9e968", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd773d28b52146afbbc6a0f4902e1531.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd773d28b52146afbbc6a0f4902e1531.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd773d28b52146afbbc6a0f4902e1531.jpg", "file_size": 12388, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd773d28b52146afbbc6a0f4902e1531.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd773d28b52146afbbc6a0f4902e1531.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd773d28b52146afbbc6a0f4902e1531.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd773d28b52146afbbc6a0f4902e1531.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd773d28b52146afbbc6a0f4902e1531.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rz5G8GM55cp8O2_Xq0F4nmXpUlA=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.191567+00 2025-12-09 10:15:59.191572+00 20674 JY-AD-207#6号白底红色3XL SPMX-20240815315916 \N \N \N 1 \N [{"file_id": "b594f27b-fc82-4aaf-b5d7-4bf7381ccf19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42aa933b780d429d934bab667db2930a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42aa933b780d429d934bab667db2930a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42aa933b780d429d934bab667db2930a.jpg", "file_size": 21769, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42aa933b780d429d934bab667db2930a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42aa933b780d429d934bab667db2930a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42aa933b780d429d934bab667db2930a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42aa933b780d429d934bab667db2930a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42aa933b780d429d934bab667db2930a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hTWDWNTUkBVgs2uEAnBoIzJfbKs=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.194946+00 2025-12-09 10:15:59.194954+00 20675 126-1#3XL SPMX-20240815315920 \N \N \N 1 \N [{"file_id": "1fa891f0-af9c-4c1a-89e6-7a516c84207b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0756a48efc343b8b0243bdf3d0d3075.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0756a48efc343b8b0243bdf3d0d3075.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0756a48efc343b8b0243bdf3d0d3075.jpg", "file_size": 65711, "is_delete": false, "file_type": 1, "original_file_name": "126-1#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0756a48efc343b8b0243bdf3d0d3075.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0756a48efc343b8b0243bdf3d0d3075.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0756a48efc343b8b0243bdf3d0d3075.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0756a48efc343b8b0243bdf3d0d3075.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0756a48efc343b8b0243bdf3d0d3075.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IaXyP9HLh41f4m1pkl-KV-ColbE=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.198339+00 2025-12-09 10:15:59.198345+00 20676 LZ1419#童装T3号色 SPMX-20240815315918 \N \N \N 1 \N [{"file_id": "4d5b89d6-dc55-4c0e-8eb4-fee2b98465b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6201020a99fe4f62af5dc44cfa33b7ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6201020a99fe4f62af5dc44cfa33b7ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6201020a99fe4f62af5dc44cfa33b7ae.jpg", "file_size": 23454, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6201020a99fe4f62af5dc44cfa33b7ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6201020a99fe4f62af5dc44cfa33b7ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6201020a99fe4f62af5dc44cfa33b7ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6201020a99fe4f62af5dc44cfa33b7ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6201020a99fe4f62af5dc44cfa33b7ae.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2XNCE-bbrSiZJ1PxW7xaPaNnHJA=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.201785+00 2025-12-09 10:15:59.201792+00 20677 003-S门边 SPMX-20240815315924 \N \N \N 1 \N [{"file_id": "0237a3ef-d52e-4dd1-8733-4085f5fe9159", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e1a121db35e4e298b1dbe6bea3acd17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e1a121db35e4e298b1dbe6bea3acd17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e1a121db35e4e298b1dbe6bea3acd17.jpg", "file_size": 18494, "is_delete": false, "file_type": 1, "original_file_name": "003-S门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1a121db35e4e298b1dbe6bea3acd17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1a121db35e4e298b1dbe6bea3acd17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e1a121db35e4e298b1dbe6bea3acd17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e1a121db35e4e298b1dbe6bea3acd17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e1a121db35e4e298b1dbe6bea3acd17.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:V2t41pa6kcA8EA1xq0ZVFLIAmD4=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.204895+00 2025-12-09 10:15:59.204902+00 20678 DM22133#L-番禺调色 SPMX-20240815315919 \N \N \N 1 \N [{"file_id": "615ccdb8-82c1-4b47-8406-d9cc9dce2c8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e5ad19dcde44c0bbcd41bfb00da7d91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e5ad19dcde44c0bbcd41bfb00da7d91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e5ad19dcde44c0bbcd41bfb00da7d91.jpg", "file_size": 8188, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#L-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5ad19dcde44c0bbcd41bfb00da7d91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5ad19dcde44c0bbcd41bfb00da7d91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e5ad19dcde44c0bbcd41bfb00da7d91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e5ad19dcde44c0bbcd41bfb00da7d91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e5ad19dcde44c0bbcd41bfb00da7d91.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ir9k5pz0CK6nr-qGefhasa5pKY0=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.208283+00 2025-12-09 10:15:59.20829+00 20679 HXF005#粉 SPMX-20240815315917 \N \N \N 1 \N [{"file_id": "ae4d23f7-8d7d-456b-b217-1fb1898b2f13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb1613ed05c74245bf551c7f476d8e44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb1613ed05c74245bf551c7f476d8e44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb1613ed05c74245bf551c7f476d8e44.jpg", "file_size": 10573, "is_delete": false, "file_type": 1, "original_file_name": "HXF005#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1613ed05c74245bf551c7f476d8e44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1613ed05c74245bf551c7f476d8e44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb1613ed05c74245bf551c7f476d8e44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb1613ed05c74245bf551c7f476d8e44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb1613ed05c74245bf551c7f476d8e44.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TfGzeneToqoBu5-y6RfDbOmRQKc=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.21159+00 2025-12-09 10:15:59.211596+00 20680 FX006#VS-D3 SPMX-20240815315922 \N \N \N 1 \N [{"file_id": "ec0441c1-2517-455f-9ec2-e4a06c4ec640", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19bf20c46ec2462db9eea96a989307f7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19bf20c46ec2462db9eea96a989307f7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19bf20c46ec2462db9eea96a989307f7.jpg", "file_size": 9295, "is_delete": false, "file_type": 1, "original_file_name": "FX006#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19bf20c46ec2462db9eea96a989307f7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19bf20c46ec2462db9eea96a989307f7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19bf20c46ec2462db9eea96a989307f7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19bf20c46ec2462db9eea96a989307f7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19bf20c46ec2462db9eea96a989307f7.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JiTqS26Kx4v220jp8pzNiCrChN0=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.215223+00 2025-12-09 10:15:59.21523+00 20681 88380FWF#A枣红44码 SPMX-20240815315923 \N \N \N 1 \N [{"file_id": "0902095b-df57-4bf7-bb76-bfe871642d8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c903b1577bd74b35803d7ecddb0c9342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c903b1577bd74b35803d7ecddb0c9342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c903b1577bd74b35803d7ecddb0c9342.jpg", "file_size": 22620, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A枣红44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c903b1577bd74b35803d7ecddb0c9342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c903b1577bd74b35803d7ecddb0c9342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c903b1577bd74b35803d7ecddb0c9342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c903b1577bd74b35803d7ecddb0c9342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c903b1577bd74b35803d7ecddb0c9342.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctug7wILLFZMuZl7jkRww_ExLaU=", "createTime": "2024-08-15 15:08:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.218782+00 2025-12-09 10:15:59.218788+00 20682 LZ1419#童装T4号色 SPMX-20240815315934 \N \N \N 1 \N [{"file_id": "9505fc44-54f2-4f02-b8ca-c3d7ed875e9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg", "file_size": 23480, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e1d1cfa6efd459cbdf6d36b8bbeccf9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wXMmi6gZE1IwXbgd90HC70KqdFc=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.222387+00 2025-12-09 10:15:59.222394+00 20683 88380FWF#A枣红46码 SPMX-20240815315933 \N \N \N 1 \N [{"file_id": "1220a7ea-f2ec-498a-9091-a3a0ca968341", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67597a5128b647fa8a8dd1ac945b65fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67597a5128b647fa8a8dd1ac945b65fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67597a5128b647fa8a8dd1ac945b65fd.jpg", "file_size": 23293, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A枣红46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67597a5128b647fa8a8dd1ac945b65fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67597a5128b647fa8a8dd1ac945b65fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67597a5128b647fa8a8dd1ac945b65fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67597a5128b647fa8a8dd1ac945b65fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67597a5128b647fa8a8dd1ac945b65fd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrJjqHqD61DtoEuIXJOReVYKBZY=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.22592+00 2025-12-09 10:15:59.225926+00 20684 FX006#WJC22番禺调色 SPMX-20240815315932 \N \N \N 1 \N [{"file_id": "376f5cd3-2d35-4a48-a292-daed5003b824", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c4791e62d5f4a66b4e2e27d540ce071.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c4791e62d5f4a66b4e2e27d540ce071.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c4791e62d5f4a66b4e2e27d540ce071.jpg", "file_size": 6758, "is_delete": false, "file_type": 1, "original_file_name": "FX006#WJC22番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4791e62d5f4a66b4e2e27d540ce071.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4791e62d5f4a66b4e2e27d540ce071.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c4791e62d5f4a66b4e2e27d540ce071.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c4791e62d5f4a66b4e2e27d540ce071.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c4791e62d5f4a66b4e2e27d540ce071.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CYBphJBoiiY_NWgGdzv0Kh3Epy8=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.229517+00 2025-12-09 10:15:59.229523+00 20685 HXF005#紫 SPMX-20240815315928 \N \N \N 1 \N [{"file_id": "7322e0bf-4dd1-4d2f-8564-5e0ddc4cd694", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "976884d6b2a74467a379d7603a31d73b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "976884d6b2a74467a379d7603a31d73b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "976884d6b2a74467a379d7603a31d73b.jpg", "file_size": 13760, "is_delete": false, "file_type": 1, "original_file_name": "HXF005#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976884d6b2a74467a379d7603a31d73b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976884d6b2a74467a379d7603a31d73b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976884d6b2a74467a379d7603a31d73b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/976884d6b2a74467a379d7603a31d73b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/976884d6b2a74467a379d7603a31d73b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hkirnkiRoKQ3sY1epT2TkJAz0RY=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.233076+00 2025-12-09 10:15:59.233083+00 20686 LJH6633#蓝色 SPMX-20240815315925 \N \N \N 1 \N [{"file_id": "2dd6f16d-d6d4-47c8-9e99-4aceeabf49be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b4477c01a4143f9856ce82f19a6bf70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b4477c01a4143f9856ce82f19a6bf70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b4477c01a4143f9856ce82f19a6bf70.jpg", "file_size": 52663, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4477c01a4143f9856ce82f19a6bf70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4477c01a4143f9856ce82f19a6bf70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4477c01a4143f9856ce82f19a6bf70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b4477c01a4143f9856ce82f19a6bf70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b4477c01a4143f9856ce82f19a6bf70.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uxzLcWFKISNuC_rYoQA-zu5J6M0=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.236629+00 2025-12-09 10:15:59.236635+00 20687 DM22133#M-番禺调色 SPMX-20240815315929 \N \N \N 1 \N [{"file_id": "adf238ff-a9d2-409d-b0f0-154a88de6e7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f48d032b5641b9bc7943b6db9e7eb3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f48d032b5641b9bc7943b6db9e7eb3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f48d032b5641b9bc7943b6db9e7eb3.jpg", "file_size": 8337, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#M-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f48d032b5641b9bc7943b6db9e7eb3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f48d032b5641b9bc7943b6db9e7eb3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f48d032b5641b9bc7943b6db9e7eb3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f48d032b5641b9bc7943b6db9e7eb3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f48d032b5641b9bc7943b6db9e7eb3.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l3R9_N63SzuDM_ZAE88TVhczDmE=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.240206+00 2025-12-09 10:15:59.240212+00 20688 JY-AD-207#6号白底红色L SPMX-20240815315926 \N \N \N 1 \N [{"file_id": "67f4a058-27e2-457c-a628-6d834544d3c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8993138b9ff4359bc19044b8a8ccf3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8993138b9ff4359bc19044b8a8ccf3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8993138b9ff4359bc19044b8a8ccf3b.jpg", "file_size": 23629, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8993138b9ff4359bc19044b8a8ccf3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8993138b9ff4359bc19044b8a8ccf3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8993138b9ff4359bc19044b8a8ccf3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8993138b9ff4359bc19044b8a8ccf3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8993138b9ff4359bc19044b8a8ccf3b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iRICLcR-748zdNhLVThy_SD5mkg=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.243796+00 2025-12-09 10:15:59.243802+00 20689 24077#-3#B-左 SPMX-20240815315930 \N \N \N 1 \N [{"file_id": "810a4362-eb5d-442a-aa0d-70f51acf04c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47ff631018b149aaa186696bf6579c40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47ff631018b149aaa186696bf6579c40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47ff631018b149aaa186696bf6579c40.jpg", "file_size": 43242, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3#B-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ff631018b149aaa186696bf6579c40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ff631018b149aaa186696bf6579c40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47ff631018b149aaa186696bf6579c40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47ff631018b149aaa186696bf6579c40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47ff631018b149aaa186696bf6579c40.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6cN59YVEzW3wzfJe4uGXtSNPs3E=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.247351+00 2025-12-09 10:15:59.247357+00 20690 CH125FWE#斗牛5XL SPMX-20240815315931 \N \N \N 1 \N [{"file_id": "178af489-9328-46c2-9db6-6844fd8e032f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20f08de70e2d44b7aa0ef4bd925d6ad6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20f08de70e2d44b7aa0ef4bd925d6ad6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20f08de70e2d44b7aa0ef4bd925d6ad6.jpg", "file_size": 13178, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f08de70e2d44b7aa0ef4bd925d6ad6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f08de70e2d44b7aa0ef4bd925d6ad6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20f08de70e2d44b7aa0ef4bd925d6ad6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20f08de70e2d44b7aa0ef4bd925d6ad6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20f08de70e2d44b7aa0ef4bd925d6ad6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pDOldyrB-r4rdrHokPPf6hEZSUQ=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.250823+00 2025-12-09 10:15:59.250834+00 20691 126-1#L SPMX-20240815315927 \N \N \N 1 \N [{"file_id": "dbb487ef-e53b-4fb1-ac9e-dffc22771811", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a6b2ed5bbba4129b976903cf19c3594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a6b2ed5bbba4129b976903cf19c3594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a6b2ed5bbba4129b976903cf19c3594.jpg", "file_size": 57241, "is_delete": false, "file_type": 1, "original_file_name": "126-1#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6b2ed5bbba4129b976903cf19c3594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6b2ed5bbba4129b976903cf19c3594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a6b2ed5bbba4129b976903cf19c3594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a6b2ed5bbba4129b976903cf19c3594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a6b2ed5bbba4129b976903cf19c3594.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJI-irWc-6WVlbyb4iuTWiLEWGs=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.254357+00 2025-12-09 10:15:59.254363+00 20692 003-XL SPMX-20240815315935 \N \N \N 1 \N [{"file_id": "076d6eb3-977c-4b02-b215-78b49743a995", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34a0cc4c75f147f39ad5745025c646ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34a0cc4c75f147f39ad5745025c646ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34a0cc4c75f147f39ad5745025c646ae.jpg", "file_size": 14921, "is_delete": false, "file_type": 1, "original_file_name": "003-XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a0cc4c75f147f39ad5745025c646ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a0cc4c75f147f39ad5745025c646ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34a0cc4c75f147f39ad5745025c646ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34a0cc4c75f147f39ad5745025c646ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34a0cc4c75f147f39ad5745025c646ae.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MkNcP1k0lZ0BTUi3yj-ehfiGcJo=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.257906+00 2025-12-09 10:15:59.257913+00 20693 LJH6633#黑色 SPMX-20240815315936 \N \N \N 1 \N [{"file_id": "d6608e03-1b10-449e-ae03-34c4462c5c08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2a63cc7e34140828cf4055f821d414b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2a63cc7e34140828cf4055f821d414b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2a63cc7e34140828cf4055f821d414b.jpg", "file_size": 43603, "is_delete": false, "file_type": 1, "original_file_name": "LJH6633#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a63cc7e34140828cf4055f821d414b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a63cc7e34140828cf4055f821d414b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a63cc7e34140828cf4055f821d414b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2a63cc7e34140828cf4055f821d414b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2a63cc7e34140828cf4055f821d414b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U2amsL89bq_A1eAZreYa3p2mxxo=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.261453+00 2025-12-09 10:15:59.261459+00 20694 003-XL袖口 SPMX-20240815315946 \N \N \N 1 \N [{"file_id": "fad2d7ba-f24a-4b5c-aeee-ba0759aa2a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ce0efeb9c3541578443c77eb64b7772.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ce0efeb9c3541578443c77eb64b7772.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ce0efeb9c3541578443c77eb64b7772.jpg", "file_size": 5398, "is_delete": false, "file_type": 1, "original_file_name": "003-XL袖口.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce0efeb9c3541578443c77eb64b7772.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce0efeb9c3541578443c77eb64b7772.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce0efeb9c3541578443c77eb64b7772.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ce0efeb9c3541578443c77eb64b7772.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ce0efeb9c3541578443c77eb64b7772.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKa8uKhv82obKAPFtZSZgrsNykI=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.265026+00 2025-12-09 10:15:59.265033+00 20695 JY-AD-207#6号白底红色M SPMX-20240815315939 \N \N \N 1 \N [{"file_id": "9b8b1230-ea6c-45a8-be62-f114c28fa8e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b4a6296feeb441592206e833b186c5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b4a6296feeb441592206e833b186c5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b4a6296feeb441592206e833b186c5f.jpg", "file_size": 24230, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4a6296feeb441592206e833b186c5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4a6296feeb441592206e833b186c5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b4a6296feeb441592206e833b186c5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b4a6296feeb441592206e833b186c5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b4a6296feeb441592206e833b186c5f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8vJe7FEic3VAANa3S1R0UKEUmIg=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.268588+00 2025-12-09 10:15:59.268594+00 20696 JY-AD-207#6号白底红色S SPMX-20240815315947 \N \N \N 1 \N [{"file_id": "5f94d57f-a2ce-4083-b4ae-c1664e5922b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0779dfe67b4f444c95a284737ee70b48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0779dfe67b4f444c95a284737ee70b48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0779dfe67b4f444c95a284737ee70b48.jpg", "file_size": 24220, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0779dfe67b4f444c95a284737ee70b48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0779dfe67b4f444c95a284737ee70b48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0779dfe67b4f444c95a284737ee70b48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0779dfe67b4f444c95a284737ee70b48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0779dfe67b4f444c95a284737ee70b48.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ylb1x9MKCCPL4TwFFKEqXWFHUBw=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.272151+00 2025-12-09 10:15:59.272157+00 20697 CH125FWE#斗牛L SPMX-20240815315941 \N \N \N 1 \N [{"file_id": "79cb3c1c-79df-418b-8b07-194b46826296", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e168d243c2e4e53b79417aaa5d82547.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e168d243c2e4e53b79417aaa5d82547.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e168d243c2e4e53b79417aaa5d82547.jpg", "file_size": 11745, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e168d243c2e4e53b79417aaa5d82547.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e168d243c2e4e53b79417aaa5d82547.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e168d243c2e4e53b79417aaa5d82547.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e168d243c2e4e53b79417aaa5d82547.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e168d243c2e4e53b79417aaa5d82547.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3lx-rxqdzv7GAI4Su3luheSZcnM=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.275725+00 2025-12-09 10:15:59.275731+00 20698 FX006#批布 SPMX-20240815315942 \N \N \N 1 \N [{"file_id": "8d66074e-8c15-4f21-8994-b94492162104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adccb4953ebd462884ce189091882d1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adccb4953ebd462884ce189091882d1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adccb4953ebd462884ce189091882d1f.jpg", "file_size": 54231, "is_delete": false, "file_type": 1, "original_file_name": "FX006#批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adccb4953ebd462884ce189091882d1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adccb4953ebd462884ce189091882d1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adccb4953ebd462884ce189091882d1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adccb4953ebd462884ce189091882d1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adccb4953ebd462884ce189091882d1f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ea8xeZD41CF9nttaa9e6QwqY7yQ=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.279262+00 2025-12-09 10:15:59.279268+00 20699 24077#-3#B SPMX-20240815315943 \N \N \N 1 \N [{"file_id": "57c33157-46ae-4a7e-95ca-f9aea5a35a77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1ce2aa5cc8d4393a67341492c4ada3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1ce2aa5cc8d4393a67341492c4ada3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1ce2aa5cc8d4393a67341492c4ada3f.jpg", "file_size": 44333, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ce2aa5cc8d4393a67341492c4ada3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ce2aa5cc8d4393a67341492c4ada3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1ce2aa5cc8d4393a67341492c4ada3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1ce2aa5cc8d4393a67341492c4ada3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1ce2aa5cc8d4393a67341492c4ada3f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLXbP5skUdCaN2qtS_jVcAbcQ9Q=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.282797+00 2025-12-09 10:15:59.282803+00 20700 CH125FWE#斗牛M SPMX-20240815315951 \N \N \N 1 \N [{"file_id": "28dd1f2a-7acd-4e6e-8481-9ce20ef05137", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8358c95ab8649f59eab2ea2e5c60ba6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8358c95ab8649f59eab2ea2e5c60ba6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8358c95ab8649f59eab2ea2e5c60ba6.jpg", "file_size": 11476, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8358c95ab8649f59eab2ea2e5c60ba6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8358c95ab8649f59eab2ea2e5c60ba6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8358c95ab8649f59eab2ea2e5c60ba6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8358c95ab8649f59eab2ea2e5c60ba6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8358c95ab8649f59eab2ea2e5c60ba6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEDHSL14SgPJK93nMSbKP3P_Q7o=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.286373+00 2025-12-09 10:15:59.286384+00 20701 LZ1419#童装T5号色 SPMX-20240815315944 \N \N \N 1 \N [{"file_id": "77d92169-7f02-47e7-933c-922d13f8754b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21aacf21a6e54caaa815a845f94a90bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21aacf21a6e54caaa815a845f94a90bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21aacf21a6e54caaa815a845f94a90bd.jpg", "file_size": 24267, "is_delete": false, "file_type": 1, "original_file_name": "LZ1419#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21aacf21a6e54caaa815a845f94a90bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21aacf21a6e54caaa815a845f94a90bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21aacf21a6e54caaa815a845f94a90bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21aacf21a6e54caaa815a845f94a90bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21aacf21a6e54caaa815a845f94a90bd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eW1OM5ulzJSa7mi_WwQAeg9uln8=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.289957+00 2025-12-09 10:15:59.289964+00 20702 DM2257#白色2XL SPMX-20240815315949 \N \N \N 1 \N [{"file_id": "3c3cd247-aac9-4f25-ad84-6334e878090e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7cfcad391f742219549ed6376ff65bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7cfcad391f742219549ed6376ff65bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7cfcad391f742219549ed6376ff65bd.jpg", "file_size": 16656, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cfcad391f742219549ed6376ff65bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cfcad391f742219549ed6376ff65bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7cfcad391f742219549ed6376ff65bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7cfcad391f742219549ed6376ff65bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7cfcad391f742219549ed6376ff65bd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xJ9PKFW9NfDT07E4W-qqxuGe3Qo=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.293578+00 2025-12-09 10:15:59.293585+00 20703 HXF005FW#VS-D3 SPMX-20240815315940 \N \N \N 1 \N [{"file_id": "92afc44f-d994-477e-84f1-b58c08ded791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e6444ac43014caa9ddf1236c20da93b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e6444ac43014caa9ddf1236c20da93b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e6444ac43014caa9ddf1236c20da93b.jpg", "file_size": 24604, "is_delete": false, "file_type": 1, "original_file_name": "HXF005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6444ac43014caa9ddf1236c20da93b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6444ac43014caa9ddf1236c20da93b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e6444ac43014caa9ddf1236c20da93b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e6444ac43014caa9ddf1236c20da93b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e6444ac43014caa9ddf1236c20da93b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o8F2am51gmQRtgVjPFm3GiL8oFA=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.297168+00 2025-12-09 10:15:59.297176+00 20704 126-1#S SPMX-20240815315950 \N \N \N 1 \N [{"file_id": "89d9c580-3793-4c1f-b3f1-0818c926c8e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "604c3df3b9a94d719753f859686beac4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "604c3df3b9a94d719753f859686beac4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "604c3df3b9a94d719753f859686beac4.jpg", "file_size": 53572, "is_delete": false, "file_type": 1, "original_file_name": "126-1#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604c3df3b9a94d719753f859686beac4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604c3df3b9a94d719753f859686beac4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604c3df3b9a94d719753f859686beac4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/604c3df3b9a94d719753f859686beac4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/604c3df3b9a94d719753f859686beac4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wuRf8TZdUM9yehIEzxZ8tvbr66U=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.300736+00 2025-12-09 10:15:59.300744+00 20705 FX006#烧花 SPMX-20240815315952 \N \N \N 1 \N [{"file_id": "342ee1b8-f1bb-4265-9bbf-44a8af10f421", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cc81852d8f44bbe992276d6e4d9df6a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cc81852d8f44bbe992276d6e4d9df6a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cc81852d8f44bbe992276d6e4d9df6a.jpg", "file_size": 69634, "is_delete": false, "file_type": 1, "original_file_name": "FX006#烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc81852d8f44bbe992276d6e4d9df6a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc81852d8f44bbe992276d6e4d9df6a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cc81852d8f44bbe992276d6e4d9df6a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cc81852d8f44bbe992276d6e4d9df6a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cc81852d8f44bbe992276d6e4d9df6a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-2UTiXri3pBoZPD0FOY5JQY88Rk=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.304322+00 2025-12-09 10:15:59.304329+00 20706 LJH829#原版 SPMX-20240815315948 \N \N \N 1 \N [{"file_id": "79538953-dd24-40a8-8c08-b53067f62027", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f4e219a870d4676950bc10214c5a232.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f4e219a870d4676950bc10214c5a232.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f4e219a870d4676950bc10214c5a232.jpg", "file_size": 68140, "is_delete": false, "file_type": 1, "original_file_name": "LJH829#原版.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4e219a870d4676950bc10214c5a232.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4e219a870d4676950bc10214c5a232.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f4e219a870d4676950bc10214c5a232.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f4e219a870d4676950bc10214c5a232.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f4e219a870d4676950bc10214c5a232.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wzcU_Y6qDRTBSyh7BhLwH69ez3g=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.307855+00 2025-12-09 10:15:59.307861+00 20707 88380FWF#A枣红48码 SPMX-20240815315945 \N \N \N 1 \N [{"file_id": "134cdf40-ed4d-407b-b9e5-68952da77750", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8bd32214612474f87a793f654daf16c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8bd32214612474f87a793f654daf16c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8bd32214612474f87a793f654daf16c.jpg", "file_size": 23093, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A枣红48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bd32214612474f87a793f654daf16c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bd32214612474f87a793f654daf16c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bd32214612474f87a793f654daf16c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8bd32214612474f87a793f654daf16c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8bd32214612474f87a793f654daf16c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0-93Zvx-nVcODco8QXI4PnG7Js=", "createTime": "2024-08-15 15:09:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.311455+00 2025-12-09 10:15:59.311462+00 20708 DM22133#XL-番禺调色 SPMX-20240815315937 \N \N \N 1 \N [{"file_id": "29ce9a7e-531a-4c0f-a7e0-2412abb2226e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f4e65fa52f543a2a7442e3ad798dae6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f4e65fa52f543a2a7442e3ad798dae6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f4e65fa52f543a2a7442e3ad798dae6.jpg", "file_size": 8309, "is_delete": false, "file_type": 1, "original_file_name": "DM22133#XL-番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4e65fa52f543a2a7442e3ad798dae6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4e65fa52f543a2a7442e3ad798dae6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f4e65fa52f543a2a7442e3ad798dae6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f4e65fa52f543a2a7442e3ad798dae6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f4e65fa52f543a2a7442e3ad798dae6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oNOo0EUzbRZIpKjd78Gquu7ctQ4=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.315002+00 2025-12-09 10:15:59.315008+00 20709 126-1#M SPMX-20240815315938 \N \N \N 1 \N [{"file_id": "7000c102-1981-440f-9e90-0b7088706bdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30ba7777cf994ede801f0de7fb96535e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30ba7777cf994ede801f0de7fb96535e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30ba7777cf994ede801f0de7fb96535e.jpg", "file_size": 55523, "is_delete": false, "file_type": 1, "original_file_name": "126-1#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ba7777cf994ede801f0de7fb96535e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ba7777cf994ede801f0de7fb96535e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30ba7777cf994ede801f0de7fb96535e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30ba7777cf994ede801f0de7fb96535e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30ba7777cf994ede801f0de7fb96535e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l4NRKHMwIvzkFPC2iumNiHdd0BM=", "createTime": "2024-08-15 15:08:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.318571+00 2025-12-09 10:15:59.318577+00 20710 24077#-3-A# SPMX-20240815315954 \N \N \N 1 \N [{"file_id": "fa3bbdac-9f8f-4063-8dee-b2bdb4bf3043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb5d679dd75247729305b5042c333f41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb5d679dd75247729305b5042c333f41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb5d679dd75247729305b5042c333f41.jpg", "file_size": 42569, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3-A#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5d679dd75247729305b5042c333f41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5d679dd75247729305b5042c333f41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb5d679dd75247729305b5042c333f41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb5d679dd75247729305b5042c333f41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb5d679dd75247729305b5042c333f41.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVFdS6BwsnqgrR_Ba7onTdyVM-A=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.322127+00 2025-12-09 10:15:59.322137+00 20711 003-XL门边 SPMX-20240815315955 \N \N \N 1 \N [{"file_id": "0bf38455-cd25-49ca-8973-09e67ceafe26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f89fe401c5e4ee39801bc7f1d7ee38c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f89fe401c5e4ee39801bc7f1d7ee38c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f89fe401c5e4ee39801bc7f1d7ee38c.jpg", "file_size": 19408, "is_delete": false, "file_type": 1, "original_file_name": "003-XL门边.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f89fe401c5e4ee39801bc7f1d7ee38c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f89fe401c5e4ee39801bc7f1d7ee38c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f89fe401c5e4ee39801bc7f1d7ee38c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f89fe401c5e4ee39801bc7f1d7ee38c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f89fe401c5e4ee39801bc7f1d7ee38c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cMqO5Pby06Qn1mWHnrQE1JueFaY=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.32569+00 2025-12-09 10:15:59.325696+00 20712 126-1#XL SPMX-20240815315963 \N \N \N 1 \N [{"file_id": "aec79c9b-9e49-450d-8487-c8f319746c22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "711b004fe08b4c23a6d7cf00f8632b86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "711b004fe08b4c23a6d7cf00f8632b86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "711b004fe08b4c23a6d7cf00f8632b86.jpg", "file_size": 60232, "is_delete": false, "file_type": 1, "original_file_name": "126-1#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711b004fe08b4c23a6d7cf00f8632b86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711b004fe08b4c23a6d7cf00f8632b86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/711b004fe08b4c23a6d7cf00f8632b86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/711b004fe08b4c23a6d7cf00f8632b86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/711b004fe08b4c23a6d7cf00f8632b86.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-LDmoAWtfoHd3bTc8UOT67qsZ8=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.329235+00 2025-12-09 10:15:59.329242+00 20713 LZ141FWF#短袖1号色 SPMX-20240815315957 \N \N \N 1 \N [{"file_id": "df2a9140-2894-4f63-9f8a-bed9042e56b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "994a101d25ff4faa90ddc89c39fb1bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "994a101d25ff4faa90ddc89c39fb1bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "994a101d25ff4faa90ddc89c39fb1bfb.jpg", "file_size": 17042, "is_delete": false, "file_type": 1, "original_file_name": "LZ141FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994a101d25ff4faa90ddc89c39fb1bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994a101d25ff4faa90ddc89c39fb1bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/994a101d25ff4faa90ddc89c39fb1bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/994a101d25ff4faa90ddc89c39fb1bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/994a101d25ff4faa90ddc89c39fb1bfb.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpYTq398zyZAEFAh_3ovGQEfcRk=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.332791+00 2025-12-09 10:15:59.332797+00 20714 LJH829#绿色 SPMX-20240815315959 \N \N \N 1 \N [{"file_id": "ca791854-db07-42f4-8e1c-c570572ecd55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8ab6508a31e4129bf9702021c55ecdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8ab6508a31e4129bf9702021c55ecdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8ab6508a31e4129bf9702021c55ecdb.jpg", "file_size": 73482, "is_delete": false, "file_type": 1, "original_file_name": "LJH829#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ab6508a31e4129bf9702021c55ecdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ab6508a31e4129bf9702021c55ecdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8ab6508a31e4129bf9702021c55ecdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8ab6508a31e4129bf9702021c55ecdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8ab6508a31e4129bf9702021c55ecdb.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tm6XeCkTaspYT5J4lChYJ57YuT8=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.336366+00 2025-12-09 10:15:59.336372+00 20715 88380FWF#A枣红50码 SPMX-20240815315956 \N \N \N 1 \N [{"file_id": "64abee11-6fed-4b69-8e78-4d7195da298a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "454f2676e7ce4afabfc50f8c04a12a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "454f2676e7ce4afabfc50f8c04a12a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "454f2676e7ce4afabfc50f8c04a12a60.jpg", "file_size": 23994, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A枣红50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2676e7ce4afabfc50f8c04a12a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2676e7ce4afabfc50f8c04a12a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2676e7ce4afabfc50f8c04a12a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/454f2676e7ce4afabfc50f8c04a12a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/454f2676e7ce4afabfc50f8c04a12a60.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zF_FNe-am5FFbBHEiyLkq6qafXs=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.339964+00 2025-12-09 10:15:59.339969+00 20716 HXF005FWE#VS-D3 SPMX-20240815315953 \N \N \N 1 \N [{"file_id": "fb25ee8a-56e6-4cbd-a068-427071613b0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec2a8bd2bf00452c930d6586923c15dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec2a8bd2bf00452c930d6586923c15dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec2a8bd2bf00452c930d6586923c15dd.jpg", "file_size": 17963, "is_delete": false, "file_type": 1, "original_file_name": "HXF005FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2a8bd2bf00452c930d6586923c15dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2a8bd2bf00452c930d6586923c15dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec2a8bd2bf00452c930d6586923c15dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec2a8bd2bf00452c930d6586923c15dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec2a8bd2bf00452c930d6586923c15dd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_QnZ6SWSBnfKIv1fWt2YkDELil4=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.343608+00 2025-12-09 10:15:59.343615+00 20717 JY-AD-207#6号白底红色XL SPMX-20240815315958 \N \N \N 1 \N [{"file_id": "f3a86d55-a1b3-48ac-86ef-3343c2913ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29dc72dc484845d8b4882ab2cae1e6a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29dc72dc484845d8b4882ab2cae1e6a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29dc72dc484845d8b4882ab2cae1e6a0.jpg", "file_size": 22318, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#6号白底红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dc72dc484845d8b4882ab2cae1e6a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dc72dc484845d8b4882ab2cae1e6a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29dc72dc484845d8b4882ab2cae1e6a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29dc72dc484845d8b4882ab2cae1e6a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29dc72dc484845d8b4882ab2cae1e6a0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wgr_kiY0hMtdckqGo_cswBeSJ1I=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.347218+00 2025-12-09 10:15:59.347225+00 20718 DM2257#白色3XL SPMX-20240815315962 \N \N \N 1 \N [{"file_id": "0def7d60-3655-462a-88c9-f0ca3c0475ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76fa67a928e54a4897314603fb479cac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76fa67a928e54a4897314603fb479cac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76fa67a928e54a4897314603fb479cac.jpg", "file_size": 17232, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fa67a928e54a4897314603fb479cac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fa67a928e54a4897314603fb479cac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fa67a928e54a4897314603fb479cac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76fa67a928e54a4897314603fb479cac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76fa67a928e54a4897314603fb479cac.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5oCmAmdcsXDEEs7y4JI5FbDp-Qo=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.350776+00 2025-12-09 10:15:59.350782+00 20719 FX006#粉 SPMX-20240815315961 \N \N \N 1 \N [{"file_id": "b177658f-0ff2-42f3-b2d7-c7e1b6ec5aa4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg", "file_size": 4792, "is_delete": false, "file_type": 1, "original_file_name": "FX006#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45fd1d8ee22e4cc0ac06e17c0e6106ba.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S_iEk5jhx3XzzwWBikdGL7mb7NA=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.354322+00 2025-12-09 10:15:59.354328+00 20720 CH125FWE#斗牛S SPMX-20240815315960 \N \N \N 1 \N [{"file_id": "e1b5e9e8-9773-4766-bfd3-d6237258d5dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ea0d8263cb41dd896711490f9e4416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ea0d8263cb41dd896711490f9e4416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ea0d8263cb41dd896711490f9e4416.jpg", "file_size": 11181, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ea0d8263cb41dd896711490f9e4416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ea0d8263cb41dd896711490f9e4416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ea0d8263cb41dd896711490f9e4416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ea0d8263cb41dd896711490f9e4416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ea0d8263cb41dd896711490f9e4416.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B6RMf9dN_ypbMg9fWaizxcBf9_M=", "createTime": "2024-08-15 15:09:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.357913+00 2025-12-09 10:15:59.357919+00 20721 HXF006#乱花 SPMX-20240815315964 \N \N \N 1 \N [{"file_id": "e0d7e20b-4802-4d2c-9087-be70bb176e34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9314c5ec1e38470f95299419c40cc476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9314c5ec1e38470f95299419c40cc476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9314c5ec1e38470f95299419c40cc476.jpg", "file_size": 9851, "is_delete": false, "file_type": 1, "original_file_name": "HXF006#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9314c5ec1e38470f95299419c40cc476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9314c5ec1e38470f95299419c40cc476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9314c5ec1e38470f95299419c40cc476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9314c5ec1e38470f95299419c40cc476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9314c5ec1e38470f95299419c40cc476.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4s9qY0uN3yVYMyu0_WQhQROQq4=", "createTime": "2024-08-15 15:09:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.361384+00 2025-12-09 10:15:59.361391+00 20722 003-领带通码 SPMX-20240815315965 \N \N \N 1 \N [{"file_id": "b337565f-5d4a-47f9-96c7-712c24d5a979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "657eda68214245ac968d518790d58c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "657eda68214245ac968d518790d58c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "657eda68214245ac968d518790d58c13.jpg", "file_size": 5005, "is_delete": false, "file_type": 1, "original_file_name": "003-领带通码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657eda68214245ac968d518790d58c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657eda68214245ac968d518790d58c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/657eda68214245ac968d518790d58c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/657eda68214245ac968d518790d58c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/657eda68214245ac968d518790d58c13.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SS9MiaNz77KFeOrvXgwV01_5bso=", "createTime": "2024-08-15 15:09:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.364937+00 2025-12-09 10:15:59.364943+00 20723 LZ141FWF#短袖2号色 SPMX-20240815315966 \N \N \N 1 \N [{"file_id": "ecf19da8-558a-42eb-927b-6a83af978b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3db9a5b11d049a3bd7d8a5bae534db4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3db9a5b11d049a3bd7d8a5bae534db4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3db9a5b11d049a3bd7d8a5bae534db4.jpg", "file_size": 16734, "is_delete": false, "file_type": 1, "original_file_name": "LZ141FWF#短袖2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3db9a5b11d049a3bd7d8a5bae534db4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3db9a5b11d049a3bd7d8a5bae534db4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3db9a5b11d049a3bd7d8a5bae534db4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3db9a5b11d049a3bd7d8a5bae534db4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3db9a5b11d049a3bd7d8a5bae534db4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vEye_EXbp_FZ-nGIvIY33YTF1M0=", "createTime": "2024-08-15 15:09:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.368497+00 2025-12-09 10:15:59.368504+00 20724 LJH829#蓝色 SPMX-20240815315976 \N \N \N 1 \N [{"file_id": "61d4a26a-4608-49cb-8e24-1359511cc305", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b812a64ec6c3424db0f6e4ce8d527aba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b812a64ec6c3424db0f6e4ce8d527aba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b812a64ec6c3424db0f6e4ce8d527aba.jpg", "file_size": 72014, "is_delete": false, "file_type": 1, "original_file_name": "LJH829#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b812a64ec6c3424db0f6e4ce8d527aba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b812a64ec6c3424db0f6e4ce8d527aba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b812a64ec6c3424db0f6e4ce8d527aba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b812a64ec6c3424db0f6e4ce8d527aba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b812a64ec6c3424db0f6e4ce8d527aba.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mL3BGI-lYqz2HKXlYjAc2CCqNOY=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.372085+00 2025-12-09 10:15:59.372091+00 20725 DM2257#白色4XL SPMX-20240815315970 \N \N \N 1 \N [{"file_id": "79434ce3-2027-47b0-8ce0-bd84914343bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97b1f49e18f546cb91775fcc1d5ba544.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97b1f49e18f546cb91775fcc1d5ba544.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97b1f49e18f546cb91775fcc1d5ba544.jpg", "file_size": 16898, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b1f49e18f546cb91775fcc1d5ba544.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b1f49e18f546cb91775fcc1d5ba544.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97b1f49e18f546cb91775fcc1d5ba544.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97b1f49e18f546cb91775fcc1d5ba544.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97b1f49e18f546cb91775fcc1d5ba544.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EV_tTHO2LpGiB369eJktcCpVm74=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.375639+00 2025-12-09 10:15:59.37565+00 20726 JY-AD-207#白底红色2XL SPMX-20240815315972 \N \N \N 1 \N [{"file_id": "007037b1-f9f4-4106-8f1e-85c9266609f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63292f91c99b4617a141bd0434d2d2cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63292f91c99b4617a141bd0434d2d2cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63292f91c99b4617a141bd0434d2d2cf.jpg", "file_size": 21851, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63292f91c99b4617a141bd0434d2d2cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63292f91c99b4617a141bd0434d2d2cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63292f91c99b4617a141bd0434d2d2cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63292f91c99b4617a141bd0434d2d2cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63292f91c99b4617a141bd0434d2d2cf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z1oxo6nEPFS7UD4ZF8VLjuRooeA=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.379166+00 2025-12-09 10:15:59.379171+00 20727 0030-1#WJC22 SPMX-20240815315974 \N \N \N 1 \N [{"file_id": "ab7ada6c-f98f-4d89-b27b-a36fc616e3f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79bdc352ecfd408f82f6c6054b27c4b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79bdc352ecfd408f82f6c6054b27c4b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79bdc352ecfd408f82f6c6054b27c4b3.jpg", "file_size": 16927, "is_delete": false, "file_type": 1, "original_file_name": "0030-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79bdc352ecfd408f82f6c6054b27c4b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79bdc352ecfd408f82f6c6054b27c4b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79bdc352ecfd408f82f6c6054b27c4b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79bdc352ecfd408f82f6c6054b27c4b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79bdc352ecfd408f82f6c6054b27c4b3.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3X73bRQYzMp2NB1CPCe3A5t1g7Y=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.382789+00 2025-12-09 10:15:59.382796+00 20728 HXF006#定位花 SPMX-20240815315975 \N \N \N 1 \N [{"file_id": "d2d9cdaf-2241-49f7-a803-648e09d932ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "060ea282079f4096b5acb94b8c674209.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "060ea282079f4096b5acb94b8c674209.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "060ea282079f4096b5acb94b8c674209.jpg", "file_size": 6195, "is_delete": false, "file_type": 1, "original_file_name": "HXF006#定位花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060ea282079f4096b5acb94b8c674209.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060ea282079f4096b5acb94b8c674209.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060ea282079f4096b5acb94b8c674209.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/060ea282079f4096b5acb94b8c674209.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/060ea282079f4096b5acb94b8c674209.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:23o3j6w30BkXSgASilEmkkufomg=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.386414+00 2025-12-09 10:15:59.38642+00 20729 FX006FW#VS-D3 SPMX-20240815315971 \N \N \N 1 \N [{"file_id": "afcb0aed-cc32-4f49-93cd-cf46325d8736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff0384a9bd7d473e8a276e6438894f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff0384a9bd7d473e8a276e6438894f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff0384a9bd7d473e8a276e6438894f4d.jpg", "file_size": 21049, "is_delete": false, "file_type": 1, "original_file_name": "FX006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0384a9bd7d473e8a276e6438894f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0384a9bd7d473e8a276e6438894f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff0384a9bd7d473e8a276e6438894f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff0384a9bd7d473e8a276e6438894f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff0384a9bd7d473e8a276e6438894f4d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jANEs_LMegi-UwMXDNK84rce2S8=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.389953+00 2025-12-09 10:15:59.38996+00 20730 88380FWF#A橙色42码 SPMX-20240815315967 \N \N \N 1 \N [{"file_id": "109fc4f0-e2dd-4c49-b083-28b818cd0ece", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c4802ddc3134d48a7435e1562b6fd3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c4802ddc3134d48a7435e1562b6fd3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c4802ddc3134d48a7435e1562b6fd3f.jpg", "file_size": 22279, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A橙色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4802ddc3134d48a7435e1562b6fd3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4802ddc3134d48a7435e1562b6fd3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c4802ddc3134d48a7435e1562b6fd3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c4802ddc3134d48a7435e1562b6fd3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c4802ddc3134d48a7435e1562b6fd3f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNgshUodQF2JHre3U2c8q51F9N4=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.393519+00 2025-12-09 10:15:59.393525+00 20731 CH125FWE#斗牛XL SPMX-20240815315968 \N \N \N 1 \N [{"file_id": "b461f911-b820-44cf-a61a-c6d864504edf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0a8c3f43df8411499006860da33dea7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0a8c3f43df8411499006860da33dea7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0a8c3f43df8411499006860da33dea7.jpg", "file_size": 12010, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#斗牛XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0a8c3f43df8411499006860da33dea7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0a8c3f43df8411499006860da33dea7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0a8c3f43df8411499006860da33dea7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0a8c3f43df8411499006860da33dea7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0a8c3f43df8411499006860da33dea7.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0sPIOMzTIOvh1buDVU9x1be1wzw=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.397134+00 2025-12-09 10:15:59.39714+00 20732 24077#-3-B# SPMX-20240815315969 \N \N \N 1 \N [{"file_id": "ca8566d1-c77e-49c2-87a6-91447c92d7c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87ef297d1ce94c70b2499633ab13cdb2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87ef297d1ce94c70b2499633ab13cdb2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87ef297d1ce94c70b2499633ab13cdb2.jpg", "file_size": 44396, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3-B#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ef297d1ce94c70b2499633ab13cdb2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ef297d1ce94c70b2499633ab13cdb2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87ef297d1ce94c70b2499633ab13cdb2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87ef297d1ce94c70b2499633ab13cdb2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87ef297d1ce94c70b2499633ab13cdb2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sknQHGfq00Ffyf3xRMJDkcAILG8=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.4007+00 2025-12-09 10:15:59.40071+00 20733 126-1#捆条 SPMX-20240815315973 \N \N \N 1 \N [{"file_id": "f4efe286-9c80-4329-95b8-9b656905a52a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2aacb763b554afcab5c5d02630a9e92.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2aacb763b554afcab5c5d02630a9e92.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2aacb763b554afcab5c5d02630a9e92.jpg", "file_size": 53462, "is_delete": false, "file_type": 1, "original_file_name": "126-1#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aacb763b554afcab5c5d02630a9e92.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aacb763b554afcab5c5d02630a9e92.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2aacb763b554afcab5c5d02630a9e92.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2aacb763b554afcab5c5d02630a9e92.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2aacb763b554afcab5c5d02630a9e92.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TWOdnAO2psbhc96xaHE8N7fW3n0=", "createTime": "2024-08-15 15:09:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.404251+00 2025-12-09 10:15:59.404257+00 20734 1262FWF#2XL SPMX-20240815315981 \N \N \N 1 \N [{"file_id": "e1411014-7843-4132-b9ea-7df07fc51fe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9da775458204009865551fb7e29e5cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9da775458204009865551fb7e29e5cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9da775458204009865551fb7e29e5cd.jpg", "file_size": 24497, "is_delete": false, "file_type": 1, "original_file_name": "1262FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9da775458204009865551fb7e29e5cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9da775458204009865551fb7e29e5cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9da775458204009865551fb7e29e5cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9da775458204009865551fb7e29e5cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9da775458204009865551fb7e29e5cd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Ld8lHxuY5fMO4eLHtIbt4Q4jNo=", "createTime": "2024-08-15 15:09:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.407812+00 2025-12-09 10:15:59.407819+00 20735 JY-AD-207#白底红色3XL SPMX-20240815315980 \N \N \N 1 \N [{"file_id": "89652b27-7ffb-4929-97c7-7fba435c08bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70d291715f854bb584a27dae0980be6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70d291715f854bb584a27dae0980be6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70d291715f854bb584a27dae0980be6f.jpg", "file_size": 21188, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d291715f854bb584a27dae0980be6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d291715f854bb584a27dae0980be6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70d291715f854bb584a27dae0980be6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70d291715f854bb584a27dae0980be6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70d291715f854bb584a27dae0980be6f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWWJgRNoK4Qquc7IV4jzK7zP5l4=", "createTime": "2024-08-15 15:09:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.411321+00 2025-12-09 10:15:59.411327+00 20736 LZ141FWF#短袖3号色 SPMX-20240815315978 \N \N \N 1 \N [{"file_id": "2c7b505f-ccd4-408e-af17-7d2887a4d200", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3edfca67bc47472d87f7f69d32570d1d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3edfca67bc47472d87f7f69d32570d1d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3edfca67bc47472d87f7f69d32570d1d.jpg", "file_size": 17370, "is_delete": false, "file_type": 1, "original_file_name": "LZ141FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edfca67bc47472d87f7f69d32570d1d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edfca67bc47472d87f7f69d32570d1d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edfca67bc47472d87f7f69d32570d1d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3edfca67bc47472d87f7f69d32570d1d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3edfca67bc47472d87f7f69d32570d1d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s2xe7x07gZDFX_9S9Or1VMds0Ls=", "createTime": "2024-08-15 15:09:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.414922+00 2025-12-09 10:15:59.414929+00 20737 CH125FWE#时髦牛郎2XL SPMX-20240815315977 \N \N \N 1 \N [{"file_id": "b109854c-bd33-4038-a147-8f0a55f67098", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c165ca2b491d48bb8e475a6e632326a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c165ca2b491d48bb8e475a6e632326a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c165ca2b491d48bb8e475a6e632326a8.jpg", "file_size": 9245, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c165ca2b491d48bb8e475a6e632326a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c165ca2b491d48bb8e475a6e632326a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c165ca2b491d48bb8e475a6e632326a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c165ca2b491d48bb8e475a6e632326a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c165ca2b491d48bb8e475a6e632326a8.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNpOL-epLiljoA8-umzZO_L2c1I=", "createTime": "2024-08-15 15:09:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.41846+00 2025-12-09 10:15:59.418468+00 20738 88380FWF#A橙色44码 SPMX-20240815315979 \N \N \N 1 \N [{"file_id": "c5ba7c73-9b85-4a6f-a459-33435049ec2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg", "file_size": 22708, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A橙色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3778fdfcb5bd4bc580a8b56ee0f0e36c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ih6e7jU9f2QLEsaObb3rDr3KzKU=", "createTime": "2024-08-15 15:09:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.422133+00 2025-12-09 10:15:59.422141+00 20739 0030-10#咖底 SPMX-20240815315983 \N \N \N 1 \N [{"file_id": "0f3a6cd7-81b5-4dc1-8a33-dde69a6aaa2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43a4a406d87b420cbccaf81b7ed9f609.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43a4a406d87b420cbccaf81b7ed9f609.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43a4a406d87b420cbccaf81b7ed9f609.jpg", "file_size": 12752, "is_delete": false, "file_type": 1, "original_file_name": "0030-10#咖底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4a406d87b420cbccaf81b7ed9f609.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4a406d87b420cbccaf81b7ed9f609.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43a4a406d87b420cbccaf81b7ed9f609.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43a4a406d87b420cbccaf81b7ed9f609.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43a4a406d87b420cbccaf81b7ed9f609.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Joh77Ks3hkzOa5_mrqNYWd2A9s=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.425832+00 2025-12-09 10:15:59.425838+00 20740 24077#-3-C#-左 SPMX-20240815315984 \N \N \N 1 \N [{"file_id": "b3ce4210-813a-4924-a2f8-89c0595f65fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc982a31e357414e93ce8b2b2ab94fe2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc982a31e357414e93ce8b2b2ab94fe2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc982a31e357414e93ce8b2b2ab94fe2.jpg", "file_size": 46629, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3-C#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc982a31e357414e93ce8b2b2ab94fe2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc982a31e357414e93ce8b2b2ab94fe2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc982a31e357414e93ce8b2b2ab94fe2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc982a31e357414e93ce8b2b2ab94fe2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc982a31e357414e93ce8b2b2ab94fe2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxaUblx-W8syZjB2RTJkSfW5pfs=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.429539+00 2025-12-09 10:15:59.429548+00 20741 FX006FWE#VS-D3 SPMX-20240815315982 \N \N \N 1 \N [{"file_id": "3544f8fd-37ea-454e-aa48-c4fe9bdad07e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0be9daa71e640e499fcf5eab9d1d7ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0be9daa71e640e499fcf5eab9d1d7ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0be9daa71e640e499fcf5eab9d1d7ae.jpg", "file_size": 21840, "is_delete": false, "file_type": 1, "original_file_name": "FX006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0be9daa71e640e499fcf5eab9d1d7ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0be9daa71e640e499fcf5eab9d1d7ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0be9daa71e640e499fcf5eab9d1d7ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0be9daa71e640e499fcf5eab9d1d7ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0be9daa71e640e499fcf5eab9d1d7ae.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4zxf5m4Wyh8VoDYM40pMA9fNI9o=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.433256+00 2025-12-09 10:15:59.433262+00 20742 LJH829#黄色 SPMX-20240815315985 \N \N \N 1 \N [{"file_id": "5ffc5a4e-ca9e-427f-840e-e6f6830baf5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1660c92a58d4c2da81ada562a86db58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1660c92a58d4c2da81ada562a86db58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1660c92a58d4c2da81ada562a86db58.jpg", "file_size": 68196, "is_delete": false, "file_type": 1, "original_file_name": "LJH829#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1660c92a58d4c2da81ada562a86db58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1660c92a58d4c2da81ada562a86db58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1660c92a58d4c2da81ada562a86db58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1660c92a58d4c2da81ada562a86db58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1660c92a58d4c2da81ada562a86db58.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CseNOA0wv476IubZ56xvBlGtzQI=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.436851+00 2025-12-09 10:15:59.436858+00 20743 HXF006#白 SPMX-20240815315986 \N \N \N 1 \N [{"file_id": "5d707cdf-7641-4dad-bcfd-691594af0d81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb3051fe9758411a8266c8ddfd5fecd4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb3051fe9758411a8266c8ddfd5fecd4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb3051fe9758411a8266c8ddfd5fecd4.jpg", "file_size": 25092, "is_delete": false, "file_type": 1, "original_file_name": "HXF006#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3051fe9758411a8266c8ddfd5fecd4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3051fe9758411a8266c8ddfd5fecd4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb3051fe9758411a8266c8ddfd5fecd4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb3051fe9758411a8266c8ddfd5fecd4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb3051fe9758411a8266c8ddfd5fecd4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EHbqr0dmMn4cHvl16dU93uFMQuY=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.44046+00 2025-12-09 10:15:59.440467+00 20744 DM2257#白色L SPMX-20240815315998 \N \N \N 1 \N [{"file_id": "d3976f41-ed8a-49a7-b1d7-251b8d4e1d48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98514e9e3aff41cdbd5889ec47a92070.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98514e9e3aff41cdbd5889ec47a92070.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98514e9e3aff41cdbd5889ec47a92070.jpg", "file_size": 16768, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98514e9e3aff41cdbd5889ec47a92070.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98514e9e3aff41cdbd5889ec47a92070.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98514e9e3aff41cdbd5889ec47a92070.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98514e9e3aff41cdbd5889ec47a92070.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98514e9e3aff41cdbd5889ec47a92070.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLOb7Pl_8MJ2pEhcmvefCLz_-Io=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.444051+00 2025-12-09 10:15:59.444058+00 20745 LZ141FWF#短袖5号色 SPMX-20240815315999 \N \N \N 1 \N [{"file_id": "0bce7a28-2df7-4e43-87e4-36c4e4287c6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83bce505ea6a4abe96a8cf912ba6721b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83bce505ea6a4abe96a8cf912ba6721b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83bce505ea6a4abe96a8cf912ba6721b.jpg", "file_size": 17455, "is_delete": false, "file_type": 1, "original_file_name": "LZ141FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bce505ea6a4abe96a8cf912ba6721b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bce505ea6a4abe96a8cf912ba6721b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83bce505ea6a4abe96a8cf912ba6721b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83bce505ea6a4abe96a8cf912ba6721b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83bce505ea6a4abe96a8cf912ba6721b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5tzglRxpfBix0rpIYvhM9c9j9es=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.447562+00 2025-12-09 10:15:59.447568+00 20746 88380FWF#A橙色46码 SPMX-20240815315990 \N \N \N 1 \N [{"file_id": "073505c9-9c66-4df9-ba76-f4d4a6253f37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c0a81be7ba44207955e1e132a2ba6a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c0a81be7ba44207955e1e132a2ba6a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c0a81be7ba44207955e1e132a2ba6a2.jpg", "file_size": 23073, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A橙色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0a81be7ba44207955e1e132a2ba6a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0a81be7ba44207955e1e132a2ba6a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c0a81be7ba44207955e1e132a2ba6a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c0a81be7ba44207955e1e132a2ba6a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c0a81be7ba44207955e1e132a2ba6a2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kpdG14pgzcYOBp1ylwUCtl7H-tc=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.451027+00 2025-12-09 10:15:59.451034+00 20747 DM2257#白色5XL SPMX-20240815315987 \N \N \N 1 \N [{"file_id": "71c42776-a4ab-4036-9af2-0c13ac9c53ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7263cff143b45b487da78ccaa261c58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7263cff143b45b487da78ccaa261c58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7263cff143b45b487da78ccaa261c58.jpg", "file_size": 16985, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7263cff143b45b487da78ccaa261c58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7263cff143b45b487da78ccaa261c58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7263cff143b45b487da78ccaa261c58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7263cff143b45b487da78ccaa261c58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7263cff143b45b487da78ccaa261c58.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUbWHZQj4GJ9pzMMA3RfwxP6Y7o=", "createTime": "2024-08-15 15:09:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.454583+00 2025-12-09 10:15:59.45459+00 20748 1262FWF#L SPMX-20240815315991 \N \N \N 1 \N [{"file_id": "1bee3650-eac8-4acb-b708-15977d1cbb8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b2c18e66fa3460f86ded6e845dcefee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b2c18e66fa3460f86ded6e845dcefee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b2c18e66fa3460f86ded6e845dcefee.jpg", "file_size": 22565, "is_delete": false, "file_type": 1, "original_file_name": "1262FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c18e66fa3460f86ded6e845dcefee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c18e66fa3460f86ded6e845dcefee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b2c18e66fa3460f86ded6e845dcefee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b2c18e66fa3460f86ded6e845dcefee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b2c18e66fa3460f86ded6e845dcefee.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aD2drwUggM4jd8uOJZYSb0A8MdI=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.45815+00 2025-12-09 10:15:59.458156+00 20749 CH125FWE#时髦牛郎3XL SPMX-20240815315992 \N \N \N 1 \N [{"file_id": "a7e0ecfe-be18-4692-aea3-08cd41562905", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eebbd9d882314f9cabf5f08207b1f658.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eebbd9d882314f9cabf5f08207b1f658.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eebbd9d882314f9cabf5f08207b1f658.jpg", "file_size": 9285, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eebbd9d882314f9cabf5f08207b1f658.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eebbd9d882314f9cabf5f08207b1f658.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eebbd9d882314f9cabf5f08207b1f658.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eebbd9d882314f9cabf5f08207b1f658.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eebbd9d882314f9cabf5f08207b1f658.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vjaypU5bJNLI-cqDsXIneG8axoU=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.46172+00 2025-12-09 10:15:59.461726+00 20750 LJH84122#桔色 SPMX-20240815315995 \N \N \N 1 \N [{"file_id": "6faf76d2-cd23-470e-bcde-5c057ff806da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "465df9cae68942fa85b17d76c3862d5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "465df9cae68942fa85b17d76c3862d5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "465df9cae68942fa85b17d76c3862d5c.jpg", "file_size": 66236, "is_delete": false, "file_type": 1, "original_file_name": "LJH84122#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465df9cae68942fa85b17d76c3862d5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465df9cae68942fa85b17d76c3862d5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/465df9cae68942fa85b17d76c3862d5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/465df9cae68942fa85b17d76c3862d5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/465df9cae68942fa85b17d76c3862d5c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KMKWxnTncZQ9HOfTZUbD3I9K0Ks=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.465273+00 2025-12-09 10:15:59.465279+00 20751 LZ141FWF#短袖4号色 SPMX-20240815315988 \N \N \N 1 \N [{"file_id": "f252b679-4e70-44d8-b6d1-f20905679c4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3290f0b14fb4b81a36e589c74f3b83c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3290f0b14fb4b81a36e589c74f3b83c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3290f0b14fb4b81a36e589c74f3b83c.jpg", "file_size": 17414, "is_delete": false, "file_type": 1, "original_file_name": "LZ141FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3290f0b14fb4b81a36e589c74f3b83c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3290f0b14fb4b81a36e589c74f3b83c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3290f0b14fb4b81a36e589c74f3b83c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3290f0b14fb4b81a36e589c74f3b83c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3290f0b14fb4b81a36e589c74f3b83c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JHLAtq2tzP0UewGQzvOg9s6J86Y=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.468859+00 2025-12-09 10:15:59.468866+00 20752 JY-AD-207#白底红色L SPMX-20240815315989 \N \N \N 1 \N [{"file_id": "64d3c17c-d01f-4810-a715-4b2c6288ffb5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39c709eb774b4dfea86f910bd5b6e20a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39c709eb774b4dfea86f910bd5b6e20a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39c709eb774b4dfea86f910bd5b6e20a.jpg", "file_size": 23664, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c709eb774b4dfea86f910bd5b6e20a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c709eb774b4dfea86f910bd5b6e20a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39c709eb774b4dfea86f910bd5b6e20a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39c709eb774b4dfea86f910bd5b6e20a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39c709eb774b4dfea86f910bd5b6e20a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mF6u8qpW0er86KgEKlWWqXy4SWE=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.472423+00 2025-12-09 10:15:59.47243+00 20753 FX007# SPMX-20240815315994 \N \N \N 1 \N [{"file_id": "e4b7e5d4-c372-4586-9927-5afe30e3e277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0de4bdbb38bb45568888f0a88d39eb77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0de4bdbb38bb45568888f0a88d39eb77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0de4bdbb38bb45568888f0a88d39eb77.jpg", "file_size": 16605, "is_delete": false, "file_type": 1, "original_file_name": "FX007#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de4bdbb38bb45568888f0a88d39eb77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de4bdbb38bb45568888f0a88d39eb77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de4bdbb38bb45568888f0a88d39eb77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0de4bdbb38bb45568888f0a88d39eb77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0de4bdbb38bb45568888f0a88d39eb77.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ow3z4M_HxtfrHMjhhBkrEYBJdQM=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.476041+00 2025-12-09 10:15:59.476048+00 20754 24077#-3-C# SPMX-20240815315997 \N \N \N 1 \N [{"file_id": "d6559642-4b19-4fc6-8b88-215204e028b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4794623e975945b086016eda43fc3211.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4794623e975945b086016eda43fc3211.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4794623e975945b086016eda43fc3211.jpg", "file_size": 46112, "is_delete": false, "file_type": 1, "original_file_name": "24077#-3-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794623e975945b086016eda43fc3211.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794623e975945b086016eda43fc3211.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4794623e975945b086016eda43fc3211.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4794623e975945b086016eda43fc3211.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4794623e975945b086016eda43fc3211.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YwcaD_Bkns6Nz2-tMkr-FcOppXs=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.47964+00 2025-12-09 10:15:59.479647+00 20755 HXF006#粉 SPMX-20240815315996 \N \N \N 1 \N [{"file_id": "29740d8c-e641-42d4-8469-f8738dd9688f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5fbd8bcf8714b8cbbb04899a145ee76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5fbd8bcf8714b8cbbb04899a145ee76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5fbd8bcf8714b8cbbb04899a145ee76.jpg", "file_size": 22610, "is_delete": false, "file_type": 1, "original_file_name": "HXF006#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fbd8bcf8714b8cbbb04899a145ee76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fbd8bcf8714b8cbbb04899a145ee76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5fbd8bcf8714b8cbbb04899a145ee76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5fbd8bcf8714b8cbbb04899a145ee76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5fbd8bcf8714b8cbbb04899a145ee76.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7rBLTglPltvt7fqnFZh0PV9stk=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.483248+00 2025-12-09 10:15:59.483254+00 20756 0030-10#杏底 SPMX-20240815315993 \N \N \N 1 \N [{"file_id": "2ff6d92f-047a-420d-a384-dfd8ba60a599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "632c484978db48bf93a77e13ac321fd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "632c484978db48bf93a77e13ac321fd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "632c484978db48bf93a77e13ac321fd0.jpg", "file_size": 14184, "is_delete": false, "file_type": 1, "original_file_name": "0030-10#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c484978db48bf93a77e13ac321fd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c484978db48bf93a77e13ac321fd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c484978db48bf93a77e13ac321fd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/632c484978db48bf93a77e13ac321fd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/632c484978db48bf93a77e13ac321fd0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XsL_9qSK6NL5rxvlwzPZ8SyNKAs=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.486868+00 2025-12-09 10:15:59.486875+00 20757 LJH84122#洋红 SPMX-20240815316006 \N \N \N 1 \N [{"file_id": "27968ec2-9b41-40aa-ab33-8b05f2be9393", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19a76caf34af4c209a8bd6fc429e0f4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19a76caf34af4c209a8bd6fc429e0f4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19a76caf34af4c209a8bd6fc429e0f4d.jpg", "file_size": 65494, "is_delete": false, "file_type": 1, "original_file_name": "LJH84122#洋红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a76caf34af4c209a8bd6fc429e0f4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a76caf34af4c209a8bd6fc429e0f4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19a76caf34af4c209a8bd6fc429e0f4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19a76caf34af4c209a8bd6fc429e0f4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19a76caf34af4c209a8bd6fc429e0f4d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FYphA9z9MKzBpJEF3HBbGIRJoac=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.490476+00 2025-12-09 10:15:59.490483+00 20758 LZ1420#童装T1号色 SPMX-20240815316008 \N \N \N 1 \N [{"file_id": "56abcfe6-84f3-4e5f-8271-4951c876efd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20604a7d53ac4f51a3ae00345f5ae079.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20604a7d53ac4f51a3ae00345f5ae079.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20604a7d53ac4f51a3ae00345f5ae079.jpg", "file_size": 23209, "is_delete": false, "file_type": 1, "original_file_name": "LZ1420#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20604a7d53ac4f51a3ae00345f5ae079.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20604a7d53ac4f51a3ae00345f5ae079.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20604a7d53ac4f51a3ae00345f5ae079.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20604a7d53ac4f51a3ae00345f5ae079.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20604a7d53ac4f51a3ae00345f5ae079.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvcfOhbPl8xsNqBn9NBkwIEg7QE=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.494097+00 2025-12-09 10:15:59.494104+00 20759 JY-AD-207#白底红色M SPMX-20240815316001 \N \N \N 1 \N [{"file_id": "1e5cbe96-bef9-4cdd-bf41-36b6cb212bc7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a24662b1420c4f06b6b8c04d7ccfb9ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a24662b1420c4f06b6b8c04d7ccfb9ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a24662b1420c4f06b6b8c04d7ccfb9ef.jpg", "file_size": 24042, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24662b1420c4f06b6b8c04d7ccfb9ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24662b1420c4f06b6b8c04d7ccfb9ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a24662b1420c4f06b6b8c04d7ccfb9ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a24662b1420c4f06b6b8c04d7ccfb9ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a24662b1420c4f06b6b8c04d7ccfb9ef.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:msxV8JGMe0bTTz5WlQmEAfr2x9A=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.497601+00 2025-12-09 10:15:59.497608+00 20760 JY-AD-207#白底红色S SPMX-20240815316010 \N \N \N 1 \N [{"file_id": "7e815340-2ca2-4836-9bf7-9a67e92d853d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f54c8523b864afea49b356f07b58ac6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f54c8523b864afea49b356f07b58ac6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f54c8523b864afea49b356f07b58ac6.jpg", "file_size": 24646, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f54c8523b864afea49b356f07b58ac6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f54c8523b864afea49b356f07b58ac6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f54c8523b864afea49b356f07b58ac6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f54c8523b864afea49b356f07b58ac6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f54c8523b864afea49b356f07b58ac6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Mzo3Hr44ZdWxjXdq5kFQ_yKDhs=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.50124+00 2025-12-09 10:15:59.501247+00 20761 24077#-4#A-左 SPMX-20240815316011 \N \N \N 1 \N [{"file_id": "8f8b71c8-95fa-4aa0-8731-614ba1bdf041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9da981513aea47b6a969775ce86af182.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9da981513aea47b6a969775ce86af182.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9da981513aea47b6a969775ce86af182.jpg", "file_size": 49114, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4#A-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da981513aea47b6a969775ce86af182.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da981513aea47b6a969775ce86af182.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9da981513aea47b6a969775ce86af182.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9da981513aea47b6a969775ce86af182.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9da981513aea47b6a969775ce86af182.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ip1hiYQUlP6DKhhcbzL-uf9U8os=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.504792+00 2025-12-09 10:15:59.504799+00 20762 1262FWF#XL SPMX-20240815316012 \N \N \N 1 \N [{"file_id": "9d8a5b00-f668-4f54-95fb-8b95344880a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74471b51970b47aeafa6811b417badb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74471b51970b47aeafa6811b417badb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74471b51970b47aeafa6811b417badb5.jpg", "file_size": 23939, "is_delete": false, "file_type": 1, "original_file_name": "1262FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74471b51970b47aeafa6811b417badb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74471b51970b47aeafa6811b417badb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74471b51970b47aeafa6811b417badb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74471b51970b47aeafa6811b417badb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74471b51970b47aeafa6811b417badb5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fg8aoR3mSxEzqtRFacOD6X_9h20=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.508453+00 2025-12-09 10:15:59.508459+00 20763 FX007#E SPMX-20240815316007 \N \N \N 1 \N [{"file_id": "11130f2f-3eb8-4d21-bdd4-aed54962f605", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5ffe846dab44c7b86ead90157a9c3cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5ffe846dab44c7b86ead90157a9c3cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5ffe846dab44c7b86ead90157a9c3cd.jpg", "file_size": 13191, "is_delete": false, "file_type": 1, "original_file_name": "FX007#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ffe846dab44c7b86ead90157a9c3cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ffe846dab44c7b86ead90157a9c3cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5ffe846dab44c7b86ead90157a9c3cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5ffe846dab44c7b86ead90157a9c3cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5ffe846dab44c7b86ead90157a9c3cd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r9P78bhpdzv6N2u_GbaHhSiR-QQ=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.512047+00 2025-12-09 10:15:59.512054+00 20764 DM2257#白色M SPMX-20240815316009 \N \N \N 1 \N [{"file_id": "46ad6e67-9dab-4f48-bb93-b7d5d1088f17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a50c978d3174c33a76acfba3de6cdc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a50c978d3174c33a76acfba3de6cdc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a50c978d3174c33a76acfba3de6cdc8.jpg", "file_size": 16846, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a50c978d3174c33a76acfba3de6cdc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a50c978d3174c33a76acfba3de6cdc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a50c978d3174c33a76acfba3de6cdc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a50c978d3174c33a76acfba3de6cdc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a50c978d3174c33a76acfba3de6cdc8.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xRud77u2FpqCCS9B1-0CeK57gsc=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.515924+00 2025-12-09 10:15:59.515931+00 20765 88380FWF#A橙色48码 SPMX-20240815316000 \N \N \N 1 \N [{"file_id": "e27ecd68-f4fd-4290-bc7d-598e736c06f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e859726672d40f6b5952c2808918850.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e859726672d40f6b5952c2808918850.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e859726672d40f6b5952c2808918850.jpg", "file_size": 23873, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A橙色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e859726672d40f6b5952c2808918850.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e859726672d40f6b5952c2808918850.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e859726672d40f6b5952c2808918850.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e859726672d40f6b5952c2808918850.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e859726672d40f6b5952c2808918850.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e85JnjGoLjeIy_jD_bOeqhI-Z5U=", "createTime": "2024-08-15 15:09:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.519769+00 2025-12-09 10:15:59.519776+00 20766 1262FWF#V5曲线 SPMX-20240815316002 \N \N \N 1 \N [{"file_id": "116d54a9-6aa2-4eea-b003-551df04fa3e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94906244fceb432085f8df03cfd8bf32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94906244fceb432085f8df03cfd8bf32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94906244fceb432085f8df03cfd8bf32.jpg", "file_size": 14376, "is_delete": false, "file_type": 1, "original_file_name": "1262FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94906244fceb432085f8df03cfd8bf32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94906244fceb432085f8df03cfd8bf32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94906244fceb432085f8df03cfd8bf32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94906244fceb432085f8df03cfd8bf32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94906244fceb432085f8df03cfd8bf32.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AL51fhoN5VHhR9tksS-PR1FQajY=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.523281+00 2025-12-09 10:15:59.523287+00 20767 CH125FWE#时髦牛郎4XL SPMX-20240815316003 \N \N \N 1 \N [{"file_id": "14aa88a6-2cfc-493a-a612-e714b73aac39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9929145c5c2a4407b982133a2d656680.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9929145c5c2a4407b982133a2d656680.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9929145c5c2a4407b982133a2d656680.jpg", "file_size": 9184, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9929145c5c2a4407b982133a2d656680.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9929145c5c2a4407b982133a2d656680.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9929145c5c2a4407b982133a2d656680.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9929145c5c2a4407b982133a2d656680.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9929145c5c2a4407b982133a2d656680.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SUYKMRUDJQMsKSxa6dlgrCDAfo=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.527086+00 2025-12-09 10:15:59.527093+00 20768 HXF006FW#VS-D3 SPMX-20240815316005 \N \N \N 1 \N [{"file_id": "16a05a53-d91b-434a-b1bd-aef112840667", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2539a304e7d54ec2abebb885926543f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2539a304e7d54ec2abebb885926543f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2539a304e7d54ec2abebb885926543f5.jpg", "file_size": 24580, "is_delete": false, "file_type": 1, "original_file_name": "HXF006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2539a304e7d54ec2abebb885926543f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2539a304e7d54ec2abebb885926543f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2539a304e7d54ec2abebb885926543f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2539a304e7d54ec2abebb885926543f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2539a304e7d54ec2abebb885926543f5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lskz8mcT1JXTWZadiG0XMDoOW7Y=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.530689+00 2025-12-09 10:15:59.530695+00 20769 0030-10FWF#小花鸽子 SPMX-20240815316004 \N \N \N 1 \N [{"file_id": "e21faec2-ec8a-491f-80d8-04c80347d43b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95ac3bc06e8c4d67b99f09710ef8b366.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95ac3bc06e8c4d67b99f09710ef8b366.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95ac3bc06e8c4d67b99f09710ef8b366.jpg", "file_size": 20134, "is_delete": false, "file_type": 1, "original_file_name": "0030-10FWF#小花鸽子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ac3bc06e8c4d67b99f09710ef8b366.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ac3bc06e8c4d67b99f09710ef8b366.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95ac3bc06e8c4d67b99f09710ef8b366.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95ac3bc06e8c4d67b99f09710ef8b366.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95ac3bc06e8c4d67b99f09710ef8b366.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LZvq-PWZXOIIgz3uqHkf89vNkTw=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.534311+00 2025-12-09 10:15:59.534317+00 20770 88380FWF#A橙色50码 SPMX-20240815316013 \N \N \N 1 \N [{"file_id": "0c477429-0986-4178-a742-bf6c56b5fc8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5828c373ef304bfdb329ed393e20e52c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5828c373ef304bfdb329ed393e20e52c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5828c373ef304bfdb329ed393e20e52c.jpg", "file_size": 24138, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A橙色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5828c373ef304bfdb329ed393e20e52c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5828c373ef304bfdb329ed393e20e52c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5828c373ef304bfdb329ed393e20e52c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5828c373ef304bfdb329ed393e20e52c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5828c373ef304bfdb329ed393e20e52c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N-M5LWetIZbgJrPc_IhV62PCkmA=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.537885+00 2025-12-09 10:15:59.537892+00 20771 CH125FWE#时髦牛郎5XL SPMX-20240815316014 \N \N \N 1 \N [{"file_id": "313131ea-14b6-41bb-99ab-a0a571aedad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ccecc8ba86c41f8947d695afd88013c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ccecc8ba86c41f8947d695afd88013c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ccecc8ba86c41f8947d695afd88013c.jpg", "file_size": 9515, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ccecc8ba86c41f8947d695afd88013c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ccecc8ba86c41f8947d695afd88013c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ccecc8ba86c41f8947d695afd88013c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ccecc8ba86c41f8947d695afd88013c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ccecc8ba86c41f8947d695afd88013c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Yphw9UVy17ARU7lJpPEoj9BVr8=", "createTime": "2024-08-15 15:09:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.541628+00 2025-12-09 10:15:59.541634+00 20772 24077#-4#A SPMX-20240815316021 \N \N \N 1 \N [{"file_id": "faa99531-bd5a-409c-b78b-0a4304bb81c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "436428c402694832bf377a6da6a6e512.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "436428c402694832bf377a6da6a6e512.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "436428c402694832bf377a6da6a6e512.jpg", "file_size": 49502, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436428c402694832bf377a6da6a6e512.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436428c402694832bf377a6da6a6e512.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/436428c402694832bf377a6da6a6e512.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/436428c402694832bf377a6da6a6e512.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/436428c402694832bf377a6da6a6e512.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cWOXDzD2OTCT1hXOWysvyVSEmsU=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.545295+00 2025-12-09 10:15:59.5453+00 20773 FX007#WJC22 SPMX-20240815316017 \N \N \N 1 \N [{"file_id": "f94cfc9f-41cd-48e9-9325-fe9ab07bdb8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a26e24548cf540d49c801e5b65d9ded0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a26e24548cf540d49c801e5b65d9ded0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a26e24548cf540d49c801e5b65d9ded0.jpg", "file_size": 19479, "is_delete": false, "file_type": 1, "original_file_name": "FX007#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e24548cf540d49c801e5b65d9ded0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e24548cf540d49c801e5b65d9ded0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a26e24548cf540d49c801e5b65d9ded0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a26e24548cf540d49c801e5b65d9ded0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a26e24548cf540d49c801e5b65d9ded0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2GP_sBuW5AVXU2Gs56Ta8I6S_4=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.548953+00 2025-12-09 10:15:59.54896+00 20774 JY-AD-207#白底红色XL SPMX-20240815316022 \N \N \N 1 \N [{"file_id": "bdb42a5e-038d-4cdb-94b3-3cbbfc427ce6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "759ba02dadcf4121a0a62cdf6c99f974.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "759ba02dadcf4121a0a62cdf6c99f974.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "759ba02dadcf4121a0a62cdf6c99f974.jpg", "file_size": 21941, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-207#白底红色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759ba02dadcf4121a0a62cdf6c99f974.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759ba02dadcf4121a0a62cdf6c99f974.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/759ba02dadcf4121a0a62cdf6c99f974.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/759ba02dadcf4121a0a62cdf6c99f974.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/759ba02dadcf4121a0a62cdf6c99f974.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VL3zHNFOLaz9-P2mHQN9_00cMNs=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.552459+00 2025-12-09 10:15:59.552466+00 20775 0030-11FWF#白贵宾 SPMX-20240815316015 \N \N \N 1 \N [{"file_id": "0945356f-3587-4601-afd7-e3b816094a49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12087aa486de4e5db45b8005894ecd56.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12087aa486de4e5db45b8005894ecd56.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12087aa486de4e5db45b8005894ecd56.jpg", "file_size": 12489, "is_delete": false, "file_type": 1, "original_file_name": "0030-11FWF#白贵宾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12087aa486de4e5db45b8005894ecd56.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12087aa486de4e5db45b8005894ecd56.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12087aa486de4e5db45b8005894ecd56.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12087aa486de4e5db45b8005894ecd56.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12087aa486de4e5db45b8005894ecd56.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:57NQ0kh_emwDLtfcqdbCCnOXJLk=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.555805+00 2025-12-09 10:15:59.555811+00 20776 HXF006FWE#VS-D3 SPMX-20240815316018 \N \N \N 1 \N [{"file_id": "409ff08a-4632-4e6c-88c9-a465566acea2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "069bf557588f47a7bf2449c3371ee0df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "069bf557588f47a7bf2449c3371ee0df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "069bf557588f47a7bf2449c3371ee0df.jpg", "file_size": 29172, "is_delete": false, "file_type": 1, "original_file_name": "HXF006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/069bf557588f47a7bf2449c3371ee0df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/069bf557588f47a7bf2449c3371ee0df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/069bf557588f47a7bf2449c3371ee0df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/069bf557588f47a7bf2449c3371ee0df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/069bf557588f47a7bf2449c3371ee0df.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pVjkio3H1FZ8CyweEnMGJcaFEKE=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.559116+00 2025-12-09 10:15:59.559126+00 20777 CH125FWE#时髦牛郎L SPMX-20240815316024 \N \N \N 1 \N [{"file_id": "2469fad4-6adc-4ccc-b6a5-db2b34903825", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b5f24a79d7b4ad5bca3790d70e71288.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b5f24a79d7b4ad5bca3790d70e71288.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b5f24a79d7b4ad5bca3790d70e71288.jpg", "file_size": 9162, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5f24a79d7b4ad5bca3790d70e71288.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5f24a79d7b4ad5bca3790d70e71288.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b5f24a79d7b4ad5bca3790d70e71288.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b5f24a79d7b4ad5bca3790d70e71288.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b5f24a79d7b4ad5bca3790d70e71288.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZblbl_9uUOyJNnYhDU3_eGPAIY=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.562765+00 2025-12-09 10:15:59.562772+00 20778 DM2257#白色XL SPMX-20240815316016 \N \N \N 1 \N [{"file_id": "fe4b2db8-5d4a-4a91-ba79-862a2c3eb0a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6fce8b6597c14eff89150cd7c4bf3bb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6fce8b6597c14eff89150cd7c4bf3bb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6fce8b6597c14eff89150cd7c4bf3bb5.jpg", "file_size": 16707, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fce8b6597c14eff89150cd7c4bf3bb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fce8b6597c14eff89150cd7c4bf3bb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6fce8b6597c14eff89150cd7c4bf3bb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6fce8b6597c14eff89150cd7c4bf3bb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6fce8b6597c14eff89150cd7c4bf3bb5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JxOfIt7lo0qx_7nh1JCE323nIIg=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.566181+00 2025-12-09 10:15:59.566188+00 20779 88380FWF#A粉色42码 SPMX-20240815316023 \N \N \N 1 \N [{"file_id": "bda3c000-b64a-426a-b160-be2c023b5eec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a5e10ea1234c288d7765b4dfa5e1f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a5e10ea1234c288d7765b4dfa5e1f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a5e10ea1234c288d7765b4dfa5e1f8.jpg", "file_size": 21491, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A粉色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5e10ea1234c288d7765b4dfa5e1f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5e10ea1234c288d7765b4dfa5e1f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a5e10ea1234c288d7765b4dfa5e1f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a5e10ea1234c288d7765b4dfa5e1f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a5e10ea1234c288d7765b4dfa5e1f8.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vwPz70yQznmX-ZQZ28efd-fbsz4=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.569745+00 2025-12-09 10:15:59.569751+00 20780 LJH84126#粉色 SPMX-20240815316019 \N \N \N 1 \N [{"file_id": "12c37393-aee2-4669-8352-0daf1de8c5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "832468773a3c4741a2d9af1dd00d5b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "832468773a3c4741a2d9af1dd00d5b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "832468773a3c4741a2d9af1dd00d5b1f.jpg", "file_size": 65797, "is_delete": false, "file_type": 1, "original_file_name": "LJH84126#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832468773a3c4741a2d9af1dd00d5b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832468773a3c4741a2d9af1dd00d5b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/832468773a3c4741a2d9af1dd00d5b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/832468773a3c4741a2d9af1dd00d5b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/832468773a3c4741a2d9af1dd00d5b1f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:niELU7MBse_HQ1UXkI0N-8atnpo=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.573126+00 2025-12-09 10:15:59.573133+00 20781 0030-11FWF#蓝贵宾 SPMX-20240815316025 \N \N \N 1 \N [{"file_id": "c17d6b5d-0579-4b14-a68a-64e94f48365d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc2267a02e9f4a24acbbe5df49d3fd77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc2267a02e9f4a24acbbe5df49d3fd77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc2267a02e9f4a24acbbe5df49d3fd77.jpg", "file_size": 15738, "is_delete": false, "file_type": 1, "original_file_name": "0030-11FWF#蓝贵宾.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2267a02e9f4a24acbbe5df49d3fd77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2267a02e9f4a24acbbe5df49d3fd77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc2267a02e9f4a24acbbe5df49d3fd77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc2267a02e9f4a24acbbe5df49d3fd77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc2267a02e9f4a24acbbe5df49d3fd77.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jJapROgk89kQ6z6lGr9wAhyge5I=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.576521+00 2025-12-09 10:15:59.576527+00 20782 LZ1420#童装T2号色 SPMX-20240815316026 \N \N \N 1 \N [{"file_id": "9553df49-8aa8-4fdb-b0e7-09f91e2afa5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57f196598f37427fbcbcb742cf5f60f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57f196598f37427fbcbcb742cf5f60f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57f196598f37427fbcbcb742cf5f60f0.jpg", "file_size": 23183, "is_delete": false, "file_type": 1, "original_file_name": "LZ1420#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f196598f37427fbcbcb742cf5f60f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f196598f37427fbcbcb742cf5f60f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57f196598f37427fbcbcb742cf5f60f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57f196598f37427fbcbcb742cf5f60f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57f196598f37427fbcbcb742cf5f60f0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w74QHm4DZO605eZlIRdXfOnWpO0=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.580012+00 2025-12-09 10:15:59.580019+00 20783 1262FWF#下摆 SPMX-20240815316020 \N \N \N 1 \N [{"file_id": "74602418-3cbc-409d-834c-28cd7d5716dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85820c963d064ef1a25048eb52499d93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85820c963d064ef1a25048eb52499d93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85820c963d064ef1a25048eb52499d93.jpg", "file_size": 20478, "is_delete": false, "file_type": 1, "original_file_name": "1262FWF#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85820c963d064ef1a25048eb52499d93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85820c963d064ef1a25048eb52499d93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85820c963d064ef1a25048eb52499d93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85820c963d064ef1a25048eb52499d93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85820c963d064ef1a25048eb52499d93.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IbnzOmI874Yev-WQnOQNGFs8120=", "createTime": "2024-08-15 15:09:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.583808+00 2025-12-09 10:15:59.583815+00 20784 DM2257#雾蓝2XL SPMX-20240815316027 \N \N \N 1 \N [{"file_id": "3d6b557a-a33b-4a43-b331-d78c82f19e0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6e5738f45d429dac9c275af3b2d41d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6e5738f45d429dac9c275af3b2d41d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6e5738f45d429dac9c275af3b2d41d.jpg", "file_size": 17305, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6e5738f45d429dac9c275af3b2d41d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6e5738f45d429dac9c275af3b2d41d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6e5738f45d429dac9c275af3b2d41d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6e5738f45d429dac9c275af3b2d41d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6e5738f45d429dac9c275af3b2d41d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n54wJ8dFAf973VNM-4SL6SFr1Cg=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.587457+00 2025-12-09 10:15:59.587465+00 20785 24077#-4#B-左 SPMX-20240815316030 \N \N \N 1 \N [{"file_id": "edaec727-0b7f-4880-a427-4229a1f26f33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d8faeb33ace4ac6bc2eea829bf64213.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d8faeb33ace4ac6bc2eea829bf64213.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d8faeb33ace4ac6bc2eea829bf64213.jpg", "file_size": 50850, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4#B-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8faeb33ace4ac6bc2eea829bf64213.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8faeb33ace4ac6bc2eea829bf64213.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d8faeb33ace4ac6bc2eea829bf64213.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d8faeb33ace4ac6bc2eea829bf64213.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d8faeb33ace4ac6bc2eea829bf64213.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xr5rwpyBy152PpjL-ia6Jf0aPD8=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.591064+00 2025-12-09 10:15:59.59107+00 20786 CH125FWE#时髦牛郎M SPMX-20240815316033 \N \N \N 1 \N [{"file_id": "478509e9-4270-42bc-8e10-f0abd349b289", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60750062e31e4a9c9b45c6fe53e1aeb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60750062e31e4a9c9b45c6fe53e1aeb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60750062e31e4a9c9b45c6fe53e1aeb1.jpg", "file_size": 9019, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60750062e31e4a9c9b45c6fe53e1aeb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60750062e31e4a9c9b45c6fe53e1aeb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60750062e31e4a9c9b45c6fe53e1aeb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60750062e31e4a9c9b45c6fe53e1aeb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60750062e31e4a9c9b45c6fe53e1aeb1.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AzwuutqLmxYUFigXsdNWeKQ4-NY=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.594709+00 2025-12-09 10:15:59.594716+00 20787 FX007#杏VS-D3 SPMX-20240815316028 \N \N \N 1 \N [{"file_id": "4e60455a-07fb-4f5e-bf84-26e38d8f9dfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9a62c8c027d45c4ad9191cd3fb84a30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9a62c8c027d45c4ad9191cd3fb84a30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9a62c8c027d45c4ad9191cd3fb84a30.jpg", "file_size": 24506, "is_delete": false, "file_type": 1, "original_file_name": "FX007#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a62c8c027d45c4ad9191cd3fb84a30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a62c8c027d45c4ad9191cd3fb84a30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9a62c8c027d45c4ad9191cd3fb84a30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9a62c8c027d45c4ad9191cd3fb84a30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9a62c8c027d45c4ad9191cd3fb84a30.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ks7wXWDgkQwEalocfwh3PDBMFYU=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.598292+00 2025-12-09 10:15:59.598298+00 20788 12633#土黄 SPMX-20240815316031 \N \N \N 1 \N [{"file_id": "93e1b3c6-65fd-4fd1-a905-54b323981725", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b99260692c3e4736a736139521a14948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b99260692c3e4736a736139521a14948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b99260692c3e4736a736139521a14948.jpg", "file_size": 12913, "is_delete": false, "file_type": 1, "original_file_name": "12633#土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99260692c3e4736a736139521a14948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99260692c3e4736a736139521a14948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b99260692c3e4736a736139521a14948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b99260692c3e4736a736139521a14948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b99260692c3e4736a736139521a14948.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0x7qxWA5aN7plT52fPeUE4ryhi4=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.601898+00 2025-12-09 10:15:59.601905+00 20789 DM2257#雾蓝3XL SPMX-20240815316039 \N \N \N 1 \N [{"file_id": "989ec2a0-d69a-44dd-8a37-ceecadc70e30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c033c82750aa451d8be5c4e6f602bc47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c033c82750aa451d8be5c4e6f602bc47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c033c82750aa451d8be5c4e6f602bc47.jpg", "file_size": 17064, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033c82750aa451d8be5c4e6f602bc47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033c82750aa451d8be5c4e6f602bc47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033c82750aa451d8be5c4e6f602bc47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c033c82750aa451d8be5c4e6f602bc47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c033c82750aa451d8be5c4e6f602bc47.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y6kxYnlqvHSCfdT_Rgb5r9vxlkc=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.605497+00 2025-12-09 10:15:59.605503+00 20790 0030-12FWF#美女蓝 SPMX-20240815316036 \N \N \N 1 \N [{"file_id": "c26b6b1b-39c6-4788-ad5e-3309f9ab4340", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d367a0a781c6448a9504e68ded438d0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d367a0a781c6448a9504e68ded438d0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d367a0a781c6448a9504e68ded438d0c.jpg", "file_size": 19493, "is_delete": false, "file_type": 1, "original_file_name": "0030-12FWF#美女蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d367a0a781c6448a9504e68ded438d0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d367a0a781c6448a9504e68ded438d0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d367a0a781c6448a9504e68ded438d0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d367a0a781c6448a9504e68ded438d0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d367a0a781c6448a9504e68ded438d0c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X3qFvkf8xl8y-zRxm03KM7_NUG0=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.609107+00 2025-12-09 10:15:59.609113+00 20791 88380FWF#A粉色44码 SPMX-20240815316035 \N \N \N 1 \N [{"file_id": "cc6fb15f-e933-485a-8af3-81343a1d581b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8e7d2c0b67424d329a574f0753b7bb58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8e7d2c0b67424d329a574f0753b7bb58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8e7d2c0b67424d329a574f0753b7bb58.jpg", "file_size": 22442, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A粉色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e7d2c0b67424d329a574f0753b7bb58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e7d2c0b67424d329a574f0753b7bb58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8e7d2c0b67424d329a574f0753b7bb58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8e7d2c0b67424d329a574f0753b7bb58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8e7d2c0b67424d329a574f0753b7bb58.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xZUa4PvGvE5iLYrcbUkndjvy9Zs=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.612621+00 2025-12-09 10:15:59.612632+00 20792 JY-AD-210#1号原版色 SPMX-20240815316032 \N \N \N 1 \N [{"file_id": "22d56c64-eb40-40f2-b954-bc31966e5a43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43972de2eeb24d90b8d621d8ea0bb791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43972de2eeb24d90b8d621d8ea0bb791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43972de2eeb24d90b8d621d8ea0bb791.jpg", "file_size": 14601, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#1号原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43972de2eeb24d90b8d621d8ea0bb791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43972de2eeb24d90b8d621d8ea0bb791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43972de2eeb24d90b8d621d8ea0bb791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43972de2eeb24d90b8d621d8ea0bb791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43972de2eeb24d90b8d621d8ea0bb791.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h7qAVl8wXeIIBrLRQIA9pDQUcTM=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.616228+00 2025-12-09 10:15:59.616235+00 20793 LZ1420#童装T3号色 SPMX-20240815316037 \N \N \N 1 \N [{"file_id": "11436024-35ce-4dac-b50f-f8d5adc6f0f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffe61e716c8a4c01836a45deb1d23e68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffe61e716c8a4c01836a45deb1d23e68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffe61e716c8a4c01836a45deb1d23e68.jpg", "file_size": 22749, "is_delete": false, "file_type": 1, "original_file_name": "LZ1420#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe61e716c8a4c01836a45deb1d23e68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe61e716c8a4c01836a45deb1d23e68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffe61e716c8a4c01836a45deb1d23e68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffe61e716c8a4c01836a45deb1d23e68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffe61e716c8a4c01836a45deb1d23e68.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAAqcHXqvqbYC1cZHZFgA4DC9N4=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.619865+00 2025-12-09 10:15:59.619872+00 20794 HXF007#乱花 SPMX-20240815316029 \N \N \N 1 \N [{"file_id": "7df5acb7-f2b2-40cb-ba14-b4488c95b57c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c05943f53c0c40b88a15d2496f5c7446.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c05943f53c0c40b88a15d2496f5c7446.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c05943f53c0c40b88a15d2496f5c7446.jpg", "file_size": 7198, "is_delete": false, "file_type": 1, "original_file_name": "HXF007#乱花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05943f53c0c40b88a15d2496f5c7446.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05943f53c0c40b88a15d2496f5c7446.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05943f53c0c40b88a15d2496f5c7446.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c05943f53c0c40b88a15d2496f5c7446.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c05943f53c0c40b88a15d2496f5c7446.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZNtnSDGlZZnxQXUMYxO_5zbyzN4=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.623444+00 2025-12-09 10:15:59.623451+00 20795 LJH84126#绿色 SPMX-20240815316034 \N \N \N 1 \N [{"file_id": "921dd56f-5e84-4359-8375-a2c63ef4a1c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a3ccfb9ae474f9693cc03bb4881e873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a3ccfb9ae474f9693cc03bb4881e873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a3ccfb9ae474f9693cc03bb4881e873.jpg", "file_size": 64169, "is_delete": false, "file_type": 1, "original_file_name": "LJH84126#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a3ccfb9ae474f9693cc03bb4881e873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a3ccfb9ae474f9693cc03bb4881e873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a3ccfb9ae474f9693cc03bb4881e873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a3ccfb9ae474f9693cc03bb4881e873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a3ccfb9ae474f9693cc03bb4881e873.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-8p8DnqOh8vfzQn0UGiZ5uWTlMM=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.626998+00 2025-12-09 10:15:59.627004+00 20796 FX007#紫VS-D3 SPMX-20240815316038 \N \N \N 1 \N [{"file_id": "520f2951-5444-4869-b17d-9ddcf368e5a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78d6f9d9e72d41579b0b57c9b14478b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78d6f9d9e72d41579b0b57c9b14478b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78d6f9d9e72d41579b0b57c9b14478b5.jpg", "file_size": 23786, "is_delete": false, "file_type": 1, "original_file_name": "FX007#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d6f9d9e72d41579b0b57c9b14478b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d6f9d9e72d41579b0b57c9b14478b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78d6f9d9e72d41579b0b57c9b14478b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78d6f9d9e72d41579b0b57c9b14478b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78d6f9d9e72d41579b0b57c9b14478b5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LDj3VSHRtLVmWJXKe2ATNeINhXk=", "createTime": "2024-08-15 15:09:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.630592+00 2025-12-09 10:15:59.630599+00 20797 88380FWF#A粉色46码 SPMX-20240815316044 \N \N \N 1 \N [{"file_id": "6db2f665-b3a6-4726-8ae7-57d5cb2012de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0290534c6244edb9faabe97a3d691ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0290534c6244edb9faabe97a3d691ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0290534c6244edb9faabe97a3d691ba.jpg", "file_size": 22668, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A粉色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0290534c6244edb9faabe97a3d691ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0290534c6244edb9faabe97a3d691ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0290534c6244edb9faabe97a3d691ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0290534c6244edb9faabe97a3d691ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0290534c6244edb9faabe97a3d691ba.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SGi2NUSpyuaaQyXCN4o3yEiRffE=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.634186+00 2025-12-09 10:15:59.634194+00 20798 12633#大红 SPMX-20240815316041 \N \N \N 1 \N [{"file_id": "2ff9d592-c741-4b7c-b131-d96c7c8f8082", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d32293502864a7e900a70b2d8d296f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d32293502864a7e900a70b2d8d296f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d32293502864a7e900a70b2d8d296f5.jpg", "file_size": 14479, "is_delete": false, "file_type": 1, "original_file_name": "12633#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d32293502864a7e900a70b2d8d296f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d32293502864a7e900a70b2d8d296f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d32293502864a7e900a70b2d8d296f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d32293502864a7e900a70b2d8d296f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d32293502864a7e900a70b2d8d296f5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FpjexySAlm_oQhpRiOrmFxtaRLk=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.637754+00 2025-12-09 10:15:59.63776+00 20799 DM2257#雾蓝4XL SPMX-20240815316050 \N \N \N 1 \N [{"file_id": "911fdf38-16ba-4d3b-8086-cf79e3c8117c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8d011bb96914bb495e444dc55cdbc8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8d011bb96914bb495e444dc55cdbc8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8d011bb96914bb495e444dc55cdbc8d.jpg", "file_size": 17443, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d011bb96914bb495e444dc55cdbc8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d011bb96914bb495e444dc55cdbc8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8d011bb96914bb495e444dc55cdbc8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8d011bb96914bb495e444dc55cdbc8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8d011bb96914bb495e444dc55cdbc8d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-lS2P5BwarlueNQiiFrPxWehoHQ=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.641377+00 2025-12-09 10:15:59.641385+00 20800 HXF007#宝蓝 SPMX-20240815316051 \N \N \N 1 \N [{"file_id": "1c35548f-0a6d-49af-8cfa-fea9981ca37d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6c8cfa47f4348ed967d4d6e400003d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6c8cfa47f4348ed967d4d6e400003d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6c8cfa47f4348ed967d4d6e400003d1.jpg", "file_size": 30407, "is_delete": false, "file_type": 1, "original_file_name": "HXF007#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c8cfa47f4348ed967d4d6e400003d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c8cfa47f4348ed967d4d6e400003d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6c8cfa47f4348ed967d4d6e400003d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6c8cfa47f4348ed967d4d6e400003d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6c8cfa47f4348ed967d4d6e400003d1.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v8QW41xicW8arn2Ptzi1e2FK3tc=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.645022+00 2025-12-09 10:15:59.64503+00 20801 HXF007#定位花 SPMX-20240815316040 \N \N \N 1 \N [{"file_id": "3af87c7b-e4b9-4966-b761-3d0ffacd7aff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "691953ad16aa4f63951ea7ae69588789.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "691953ad16aa4f63951ea7ae69588789.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "691953ad16aa4f63951ea7ae69588789.jpg", "file_size": 6913, "is_delete": false, "file_type": 1, "original_file_name": "HXF007#定位花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691953ad16aa4f63951ea7ae69588789.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691953ad16aa4f63951ea7ae69588789.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/691953ad16aa4f63951ea7ae69588789.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/691953ad16aa4f63951ea7ae69588789.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/691953ad16aa4f63951ea7ae69588789.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h0Rd-5jM2jzYQ1irdk-69p07Kpc=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.64871+00 2025-12-09 10:15:59.648718+00 20802 JY-AD-210#2号玫红色 SPMX-20240815316043 \N \N \N 1 \N [{"file_id": "77fefc6a-f38f-429d-9cf7-46610a5badab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67d1ffb4f57d4ee6b519dadb21185c52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67d1ffb4f57d4ee6b519dadb21185c52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67d1ffb4f57d4ee6b519dadb21185c52.jpg", "file_size": 13860, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#2号玫红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d1ffb4f57d4ee6b519dadb21185c52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d1ffb4f57d4ee6b519dadb21185c52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d1ffb4f57d4ee6b519dadb21185c52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67d1ffb4f57d4ee6b519dadb21185c52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67d1ffb4f57d4ee6b519dadb21185c52.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JEzSpW4iDFMUiDSlM-oqimCEP-s=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.652338+00 2025-12-09 10:15:59.65235+00 20803 24077#-4#B SPMX-20240815316047 \N \N \N 1 \N [{"file_id": "da990c46-c277-41e8-9f29-47f6203c7363", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bea916c4e8ec4d78852e267733e22fd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bea916c4e8ec4d78852e267733e22fd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bea916c4e8ec4d78852e267733e22fd3.jpg", "file_size": 51231, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea916c4e8ec4d78852e267733e22fd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea916c4e8ec4d78852e267733e22fd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bea916c4e8ec4d78852e267733e22fd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bea916c4e8ec4d78852e267733e22fd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bea916c4e8ec4d78852e267733e22fd3.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mj2TjVcz3Qo3C7xaCuJC1Fc3hOA=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.655932+00 2025-12-09 10:15:59.655938+00 20804 LZ1420#童装T4号色 SPMX-20240815316049 \N \N \N 1 \N [{"file_id": "5f9291b8-8509-42c1-a8d1-08739baddb92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f1fd74251846aba358360f9265d90e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f1fd74251846aba358360f9265d90e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f1fd74251846aba358360f9265d90e.jpg", "file_size": 23514, "is_delete": false, "file_type": 1, "original_file_name": "LZ1420#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f1fd74251846aba358360f9265d90e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f1fd74251846aba358360f9265d90e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f1fd74251846aba358360f9265d90e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f1fd74251846aba358360f9265d90e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f1fd74251846aba358360f9265d90e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d3MNy3zZdENx_dg0_Idfsx4XFis=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.659478+00 2025-12-09 10:15:59.659485+00 20805 FX007#蓝VS-D3 SPMX-20240815316048 \N \N \N 1 \N [{"file_id": "a9c36d13-6277-42c6-9d6a-aa9c42300cbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76b7223523994a27ae91e3d2f0d9c058.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76b7223523994a27ae91e3d2f0d9c058.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76b7223523994a27ae91e3d2f0d9c058.jpg", "file_size": 23546, "is_delete": false, "file_type": 1, "original_file_name": "FX007#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b7223523994a27ae91e3d2f0d9c058.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b7223523994a27ae91e3d2f0d9c058.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76b7223523994a27ae91e3d2f0d9c058.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76b7223523994a27ae91e3d2f0d9c058.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76b7223523994a27ae91e3d2f0d9c058.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5fi9r4xwYCjW11hacr0d9ysiN0=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.663071+00 2025-12-09 10:15:59.663077+00 20806 0030-13FWF#气球熊 SPMX-20240815316045 \N \N \N 1 \N [{"file_id": "0f03d91b-209b-4a93-8229-8511921c09ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "256bd484216a417bb3dfceea16cc0cdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "256bd484216a417bb3dfceea16cc0cdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "256bd484216a417bb3dfceea16cc0cdb.jpg", "file_size": 11453, "is_delete": false, "file_type": 1, "original_file_name": "0030-13FWF#气球熊.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256bd484216a417bb3dfceea16cc0cdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256bd484216a417bb3dfceea16cc0cdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/256bd484216a417bb3dfceea16cc0cdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/256bd484216a417bb3dfceea16cc0cdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/256bd484216a417bb3dfceea16cc0cdb.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:prgslHU5IwnpBiJMnrcs3-lSJ6w=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.666654+00 2025-12-09 10:15:59.66666+00 20807 LJH84126#蓝色 SPMX-20240815316046 \N \N \N 1 \N [{"file_id": "96e0b3ed-48bc-41d9-8d19-abc00fecf94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5dea047d994439ea9fa3a2bca85f5fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5dea047d994439ea9fa3a2bca85f5fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5dea047d994439ea9fa3a2bca85f5fa.jpg", "file_size": 64889, "is_delete": false, "file_type": 1, "original_file_name": "LJH84126#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5dea047d994439ea9fa3a2bca85f5fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5dea047d994439ea9fa3a2bca85f5fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5dea047d994439ea9fa3a2bca85f5fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5dea047d994439ea9fa3a2bca85f5fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5dea047d994439ea9fa3a2bca85f5fa.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N614x-BTPVh2qv5pj8QKnSKy0gw=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.6702+00 2025-12-09 10:15:59.670206+00 20808 CH125FWE#时髦牛郎S SPMX-20240815316042 \N \N \N 1 \N [{"file_id": "64843c9a-d72d-4ee2-afa9-3e022014e311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dace9314e6204ae6917fe8ba0535d5f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dace9314e6204ae6917fe8ba0535d5f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dace9314e6204ae6917fe8ba0535d5f4.jpg", "file_size": 9221, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dace9314e6204ae6917fe8ba0535d5f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dace9314e6204ae6917fe8ba0535d5f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dace9314e6204ae6917fe8ba0535d5f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dace9314e6204ae6917fe8ba0535d5f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dace9314e6204ae6917fe8ba0535d5f4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HL6QknCMvHXeV4tB50oTe8vzNoU=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.673708+00 2025-12-09 10:15:59.673714+00 20809 0030-14FWF#海狮蓝 SPMX-20240815316060 \N \N \N 1 \N [{"file_id": "d4ac07ff-7d4a-4d42-a9ee-699129f8e5c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a4d4091873a42d8bbe70957b84d4e22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a4d4091873a42d8bbe70957b84d4e22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a4d4091873a42d8bbe70957b84d4e22.jpg", "file_size": 9266, "is_delete": false, "file_type": 1, "original_file_name": "0030-14FWF#海狮蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4d4091873a42d8bbe70957b84d4e22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4d4091873a42d8bbe70957b84d4e22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a4d4091873a42d8bbe70957b84d4e22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a4d4091873a42d8bbe70957b84d4e22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a4d4091873a42d8bbe70957b84d4e22.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kQpvsD4w0UDXccycrDQ2dptj5tI=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.677287+00 2025-12-09 10:15:59.677293+00 20810 88380FWF#A粉色48码 SPMX-20240815316062 \N \N \N 1 \N [{"file_id": "5952bf57-df3d-4593-b6d6-74e24e0c5e8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3227c8145b94bb7823fd8b4c931dfaf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3227c8145b94bb7823fd8b4c931dfaf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3227c8145b94bb7823fd8b4c931dfaf.jpg", "file_size": 22957, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A粉色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3227c8145b94bb7823fd8b4c931dfaf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3227c8145b94bb7823fd8b4c931dfaf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3227c8145b94bb7823fd8b4c931dfaf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3227c8145b94bb7823fd8b4c931dfaf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3227c8145b94bb7823fd8b4c931dfaf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wI09RJvQJGIgfALqRqlY9Alp3EU=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.680832+00 2025-12-09 10:15:59.680838+00 20811 JY-AD-210#4号蓝色 SPMX-20240815316054 \N \N \N 1 \N [{"file_id": "5e7914c1-e928-4183-a34b-3507035af69d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f69678a1f1e47aab2ba2a23be876805.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f69678a1f1e47aab2ba2a23be876805.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f69678a1f1e47aab2ba2a23be876805.jpg", "file_size": 15287, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#4号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f69678a1f1e47aab2ba2a23be876805.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f69678a1f1e47aab2ba2a23be876805.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f69678a1f1e47aab2ba2a23be876805.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f69678a1f1e47aab2ba2a23be876805.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f69678a1f1e47aab2ba2a23be876805.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HqqgAaF4NJnoxMW7tW0hEcrlMFM=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.684432+00 2025-12-09 10:15:59.684439+00 20812 DM2257#雾蓝5XL SPMX-20240815316058 \N \N \N 1 \N [{"file_id": "0596f5b9-7da9-4f25-a659-7fa5f59375ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bd7d3fc028b4d33a4d16c54d7463ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bd7d3fc028b4d33a4d16c54d7463ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bd7d3fc028b4d33a4d16c54d7463ad1.jpg", "file_size": 16758, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd7d3fc028b4d33a4d16c54d7463ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd7d3fc028b4d33a4d16c54d7463ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bd7d3fc028b4d33a4d16c54d7463ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bd7d3fc028b4d33a4d16c54d7463ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bd7d3fc028b4d33a4d16c54d7463ad1.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XKcOsr7HOoZ75KJ23qX7vz8PpTc=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.688023+00 2025-12-09 10:15:59.688029+00 20813 12633#彩兰 SPMX-20240815316063 \N \N \N 1 \N [{"file_id": "3f5169e3-eadf-41b4-bb3f-b4b7c947583c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e79488870ab943aa8804664bf1ae113d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e79488870ab943aa8804664bf1ae113d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e79488870ab943aa8804664bf1ae113d.jpg", "file_size": 14328, "is_delete": false, "file_type": 1, "original_file_name": "12633#彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79488870ab943aa8804664bf1ae113d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79488870ab943aa8804664bf1ae113d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e79488870ab943aa8804664bf1ae113d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e79488870ab943aa8804664bf1ae113d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e79488870ab943aa8804664bf1ae113d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z4I4u8yWxekrOpTFNH0RPaWYVr4=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.691639+00 2025-12-09 10:15:59.691645+00 20814 FX007#黄VS-D3 SPMX-20240815316059 \N \N \N 1 \N [{"file_id": "cae8929f-eb4a-479c-8866-18aecd1a2e48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1e9ed89293f456a81aab8275f2da594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1e9ed89293f456a81aab8275f2da594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1e9ed89293f456a81aab8275f2da594.jpg", "file_size": 26208, "is_delete": false, "file_type": 1, "original_file_name": "FX007#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e9ed89293f456a81aab8275f2da594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e9ed89293f456a81aab8275f2da594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1e9ed89293f456a81aab8275f2da594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1e9ed89293f456a81aab8275f2da594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1e9ed89293f456a81aab8275f2da594.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MTU09Oz76--0E1rgjUNlydg_aT4=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.695208+00 2025-12-09 10:15:59.695214+00 20815 HXF007#红 SPMX-20240815316061 \N \N \N 1 \N [{"file_id": "25b0a541-7cf4-4414-b3e8-6eb4e14cd768", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad800ba2f43c44049ef329dcea3116b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad800ba2f43c44049ef329dcea3116b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad800ba2f43c44049ef329dcea3116b6.jpg", "file_size": 28769, "is_delete": false, "file_type": 1, "original_file_name": "HXF007#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad800ba2f43c44049ef329dcea3116b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad800ba2f43c44049ef329dcea3116b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad800ba2f43c44049ef329dcea3116b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad800ba2f43c44049ef329dcea3116b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad800ba2f43c44049ef329dcea3116b6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNGDRSbHip-Or_tXtJr1lIefb74=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.698774+00 2025-12-09 10:15:59.698781+00 20816 CH326FWE#VS-D3 SPMX-20240815316064 \N \N \N 1 \N [{"file_id": "ce9cc5ab-7c26-4dea-8e91-a0843341d49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2713fdd063aa41a09f11b37ba2a2e4e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2713fdd063aa41a09f11b37ba2a2e4e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2713fdd063aa41a09f11b37ba2a2e4e6.jpg", "file_size": 10052, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713fdd063aa41a09f11b37ba2a2e4e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713fdd063aa41a09f11b37ba2a2e4e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2713fdd063aa41a09f11b37ba2a2e4e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2713fdd063aa41a09f11b37ba2a2e4e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2713fdd063aa41a09f11b37ba2a2e4e6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z9yNYI0lHwyufx9FK3ZlwmtzwFE=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.70234+00 2025-12-09 10:15:59.702347+00 20817 12633#宝蓝 SPMX-20240815316052 \N \N \N 1 \N [{"file_id": "a7c78d67-164f-4368-b1e2-256e838b82a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1690cafc68de414594f23d5e4c552d85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1690cafc68de414594f23d5e4c552d85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1690cafc68de414594f23d5e4c552d85.jpg", "file_size": 14536, "is_delete": false, "file_type": 1, "original_file_name": "12633#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1690cafc68de414594f23d5e4c552d85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1690cafc68de414594f23d5e4c552d85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1690cafc68de414594f23d5e4c552d85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1690cafc68de414594f23d5e4c552d85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1690cafc68de414594f23d5e4c552d85.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1nYtBsR0pWPnvhXJ-qIltG9xEjU=", "createTime": "2024-08-15 15:09:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.705829+00 2025-12-09 10:15:59.705835+00 20818 LJH84126#黄色 SPMX-20240815316056 \N \N \N 1 \N [{"file_id": "ed326b82-99e1-499a-aa83-3233819f2235", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e13eca4c2094032b20229f5e6025705.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e13eca4c2094032b20229f5e6025705.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e13eca4c2094032b20229f5e6025705.jpg", "file_size": 64964, "is_delete": false, "file_type": 1, "original_file_name": "LJH84126#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e13eca4c2094032b20229f5e6025705.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e13eca4c2094032b20229f5e6025705.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e13eca4c2094032b20229f5e6025705.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e13eca4c2094032b20229f5e6025705.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e13eca4c2094032b20229f5e6025705.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6lJNBEUj3nW_Jv7Az2iqLJjVRpc=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.709427+00 2025-12-09 10:15:59.709433+00 20819 CH125FWE#时髦牛郎XL SPMX-20240815316053 \N \N \N 1 \N [{"file_id": "a4488898-533c-4cb6-a612-1adcf4917e32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18129cf1491d45fa876e36092d733149.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18129cf1491d45fa876e36092d733149.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18129cf1491d45fa876e36092d733149.jpg", "file_size": 9265, "is_delete": false, "file_type": 1, "original_file_name": "CH125FWE#时髦牛郎XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18129cf1491d45fa876e36092d733149.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18129cf1491d45fa876e36092d733149.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18129cf1491d45fa876e36092d733149.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18129cf1491d45fa876e36092d733149.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18129cf1491d45fa876e36092d733149.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_WOi9nWZP6Dj5je6aFYMWfZVXPA=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.712999+00 2025-12-09 10:15:59.713005+00 20820 24077#-4-A# SPMX-20240815316057 \N \N \N 1 \N [{"file_id": "a682a41e-c5c8-46e1-b3a2-843ee8554613", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7aa2cec311644998013a597b81fd876.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7aa2cec311644998013a597b81fd876.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7aa2cec311644998013a597b81fd876.jpg", "file_size": 50200, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4-A#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa2cec311644998013a597b81fd876.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa2cec311644998013a597b81fd876.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7aa2cec311644998013a597b81fd876.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7aa2cec311644998013a597b81fd876.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7aa2cec311644998013a597b81fd876.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KmHcK3R8A_C-OlpP7RsZj-1mBK8=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.716562+00 2025-12-09 10:15:59.716568+00 20821 LZ1420#童装T5号色 SPMX-20240815316055 \N \N \N 1 \N [{"file_id": "39976a06-126d-4d40-97a0-0f2999d8b2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3f078be2422441381ebb0ea26bd943c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3f078be2422441381ebb0ea26bd943c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3f078be2422441381ebb0ea26bd943c.jpg", "file_size": 23103, "is_delete": false, "file_type": 1, "original_file_name": "LZ1420#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f078be2422441381ebb0ea26bd943c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f078be2422441381ebb0ea26bd943c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3f078be2422441381ebb0ea26bd943c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3f078be2422441381ebb0ea26bd943c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3f078be2422441381ebb0ea26bd943c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hWTZ3W_VxdgxGxh9w6DfVLi7AY=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.720162+00 2025-12-09 10:15:59.720167+00 20822 LZ1421#童装T1号色 SPMX-20240815316065 \N \N \N 1 \N [{"file_id": "16342839-caac-4b63-acad-05220eb578c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eff88ff78e84eb78f7842210af9c2b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eff88ff78e84eb78f7842210af9c2b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eff88ff78e84eb78f7842210af9c2b6.jpg", "file_size": 25613, "is_delete": false, "file_type": 1, "original_file_name": "LZ1421#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff88ff78e84eb78f7842210af9c2b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff88ff78e84eb78f7842210af9c2b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eff88ff78e84eb78f7842210af9c2b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eff88ff78e84eb78f7842210af9c2b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eff88ff78e84eb78f7842210af9c2b6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xetxvthksw261V2-msL1Q-5-O6o=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.723751+00 2025-12-09 10:15:59.723757+00 20823 FX007FW#VS-D3 SPMX-20240815316069 \N \N \N 1 \N [{"file_id": "cc551aff-d148-49d7-834e-f31354970f92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a1353cfe1e241a78277a12577662d5d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a1353cfe1e241a78277a12577662d5d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a1353cfe1e241a78277a12577662d5d.jpg", "file_size": 16649, "is_delete": false, "file_type": 1, "original_file_name": "FX007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1353cfe1e241a78277a12577662d5d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1353cfe1e241a78277a12577662d5d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a1353cfe1e241a78277a12577662d5d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a1353cfe1e241a78277a12577662d5d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a1353cfe1e241a78277a12577662d5d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KhHebwCw5Na_VlKQsnYaByHos54=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.727302+00 2025-12-09 10:15:59.727309+00 20824 LJH84132#白色 SPMX-20240815316068 \N \N \N 1 \N [{"file_id": "0c9d322b-7368-4788-9a1f-7dee4eb64312", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12f812297dc40d49a6f3cc41454e806.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12f812297dc40d49a6f3cc41454e806.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12f812297dc40d49a6f3cc41454e806.jpg", "file_size": 60886, "is_delete": false, "file_type": 1, "original_file_name": "LJH84132#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12f812297dc40d49a6f3cc41454e806.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12f812297dc40d49a6f3cc41454e806.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12f812297dc40d49a6f3cc41454e806.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12f812297dc40d49a6f3cc41454e806.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12f812297dc40d49a6f3cc41454e806.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UIqk8gsViDZOrM0mMNHw1Br0wVk=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.730857+00 2025-12-09 10:15:59.730863+00 20825 DM2257#雾蓝L SPMX-20240815316071 \N \N \N 1 \N [{"file_id": "c6df607a-d010-480c-8bd3-9548c2a88cbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2ec842aa1924f24b43a70fc8d4da559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2ec842aa1924f24b43a70fc8d4da559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2ec842aa1924f24b43a70fc8d4da559.jpg", "file_size": 16962, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ec842aa1924f24b43a70fc8d4da559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ec842aa1924f24b43a70fc8d4da559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2ec842aa1924f24b43a70fc8d4da559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2ec842aa1924f24b43a70fc8d4da559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2ec842aa1924f24b43a70fc8d4da559.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ElxDbVNVqr3I8lnYkyTB68WmjaM=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.734426+00 2025-12-09 10:15:59.734433+00 20826 JY-AD-210#8号黑白色 SPMX-20240815316066 \N \N \N 1 \N [{"file_id": "a54373a8-8c7c-4672-9bfa-2a45ebfa4744", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45378023c08246de90dafbef140d724c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45378023c08246de90dafbef140d724c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45378023c08246de90dafbef140d724c.jpg", "file_size": 16323, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#8号黑白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45378023c08246de90dafbef140d724c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45378023c08246de90dafbef140d724c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45378023c08246de90dafbef140d724c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45378023c08246de90dafbef140d724c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45378023c08246de90dafbef140d724c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3qSISx3CJWF6ILko85B8aFn8uSo=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.738031+00 2025-12-09 10:15:59.738038+00 20827 24077#-4-B# SPMX-20240815316067 \N \N \N 1 \N [{"file_id": "33044aed-fc30-4d45-88dc-9ccab07a7aad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca7b06b4fec94fa299bc7a24bf1cb255.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca7b06b4fec94fa299bc7a24bf1cb255.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca7b06b4fec94fa299bc7a24bf1cb255.jpg", "file_size": 51226, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4-B#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7b06b4fec94fa299bc7a24bf1cb255.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7b06b4fec94fa299bc7a24bf1cb255.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca7b06b4fec94fa299bc7a24bf1cb255.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca7b06b4fec94fa299bc7a24bf1cb255.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca7b06b4fec94fa299bc7a24bf1cb255.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zY_83qQ7piHiNhU5caopagFLcO0=", "createTime": "2024-08-15 15:09:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.741594+00 2025-12-09 10:15:59.741601+00 20828 HXF007FW#VS-D3 SPMX-20240815316070 \N \N \N 1 \N [{"file_id": "b3f7fedc-f5b3-43f7-98b0-49b28d8a236a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f92d4c589b74c438d41897a86166c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f92d4c589b74c438d41897a86166c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f92d4c589b74c438d41897a86166c14.jpg", "file_size": 10771, "is_delete": false, "file_type": 1, "original_file_name": "HXF007FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f92d4c589b74c438d41897a86166c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f92d4c589b74c438d41897a86166c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f92d4c589b74c438d41897a86166c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f92d4c589b74c438d41897a86166c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f92d4c589b74c438d41897a86166c14.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PA0HL7qy6pyHqAbZHHOgY5RrkcA=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.745212+00 2025-12-09 10:15:59.745218+00 20829 88380FWF#A粉色50码 SPMX-20240815316072 \N \N \N 1 \N [{"file_id": "fd53fea7-c95f-4f0b-9520-280aec5265f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "722c4c52f25548e69eca0dd5bc98759f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "722c4c52f25548e69eca0dd5bc98759f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "722c4c52f25548e69eca0dd5bc98759f.jpg", "file_size": 23602, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A粉色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722c4c52f25548e69eca0dd5bc98759f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722c4c52f25548e69eca0dd5bc98759f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/722c4c52f25548e69eca0dd5bc98759f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/722c4c52f25548e69eca0dd5bc98759f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/722c4c52f25548e69eca0dd5bc98759f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:51AIXP_KQ3Sn6XvQNMreT_9Mg4Y=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.748894+00 2025-12-09 10:15:59.748901+00 20830 JY-AD-210#9号墨绿色 SPMX-20240815316076 \N \N \N 1 \N [{"file_id": "3c41fa05-4dd1-428c-97a5-1fb8c483a5fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "260defe77e314b92bcdc3b131c3e8bd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "260defe77e314b92bcdc3b131c3e8bd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "260defe77e314b92bcdc3b131c3e8bd0.jpg", "file_size": 16275, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#9号墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260defe77e314b92bcdc3b131c3e8bd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260defe77e314b92bcdc3b131c3e8bd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/260defe77e314b92bcdc3b131c3e8bd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/260defe77e314b92bcdc3b131c3e8bd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/260defe77e314b92bcdc3b131c3e8bd0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGuc507vnz-blJYnMpYCHxBddg8=", "createTime": "2024-08-15 15:09:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.752425+00 2025-12-09 10:15:59.752431+00 20831 CH326FWE#鳄鱼头2XL SPMX-20240815316075 \N \N \N 1 \N [{"file_id": "34b62c51-efdf-4cd6-9b2a-c5bbe91c09be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5bcb5b85ad247b288306c29a6be115a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5bcb5b85ad247b288306c29a6be115a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5bcb5b85ad247b288306c29a6be115a.jpg", "file_size": 10542, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bcb5b85ad247b288306c29a6be115a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bcb5b85ad247b288306c29a6be115a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5bcb5b85ad247b288306c29a6be115a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5bcb5b85ad247b288306c29a6be115a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5bcb5b85ad247b288306c29a6be115a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xXV-tieNDFZOKYeQMWwY4ylyHiQ=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.75604+00 2025-12-09 10:15:59.756046+00 20832 12633#玫红 SPMX-20240815316074 \N \N \N 1 \N [{"file_id": "555f3f5d-89b2-4dbe-b3d3-09f4daf6bc04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5b24e4ec2954c72802b639508c5fbe4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5b24e4ec2954c72802b639508c5fbe4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5b24e4ec2954c72802b639508c5fbe4.jpg", "file_size": 12875, "is_delete": false, "file_type": 1, "original_file_name": "12633#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5b24e4ec2954c72802b639508c5fbe4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5b24e4ec2954c72802b639508c5fbe4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5b24e4ec2954c72802b639508c5fbe4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5b24e4ec2954c72802b639508c5fbe4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5b24e4ec2954c72802b639508c5fbe4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:829jB9_fjW1P0MiQn8Y12ZjIxsY=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.759588+00 2025-12-09 10:15:59.759595+00 20833 0030-15FWF#白大恐龙 SPMX-20240815316073 \N \N \N 1 \N [{"file_id": "0869d7f1-6941-45f9-b54f-21b20344c410", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79c665b69352491493c47395038634c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79c665b69352491493c47395038634c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79c665b69352491493c47395038634c9.jpg", "file_size": 12530, "is_delete": false, "file_type": 1, "original_file_name": "0030-15FWF#白大恐龙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c665b69352491493c47395038634c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c665b69352491493c47395038634c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c665b69352491493c47395038634c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79c665b69352491493c47395038634c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79c665b69352491493c47395038634c9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TualpomTIJUNub3LpwZOo4nPgPM=", "createTime": "2024-08-15 15:09:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.763162+00 2025-12-09 10:15:59.763168+00 20834 LZ1421#童装T2号色 SPMX-20240815316077 \N \N \N 1 \N [{"file_id": "18c96493-a36a-45d7-ae09-4314ba08f761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a646baa6a4174139a52ef04bf1fd22b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a646baa6a4174139a52ef04bf1fd22b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a646baa6a4174139a52ef04bf1fd22b9.jpg", "file_size": 24679, "is_delete": false, "file_type": 1, "original_file_name": "LZ1421#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a646baa6a4174139a52ef04bf1fd22b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a646baa6a4174139a52ef04bf1fd22b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a646baa6a4174139a52ef04bf1fd22b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a646baa6a4174139a52ef04bf1fd22b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a646baa6a4174139a52ef04bf1fd22b9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bG9IG21PdOrEt66Gic5qHFBnD-M=", "createTime": "2024-08-15 15:09:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.76676+00 2025-12-09 10:15:59.766767+00 20835 12633#西红 SPMX-20240815316087 \N \N \N 1 \N [{"file_id": "59b61fdf-177e-40fb-97b7-2e157e3443dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "197893a13b45444595e2f4fc2f2354d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "197893a13b45444595e2f4fc2f2354d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "197893a13b45444595e2f4fc2f2354d0.jpg", "file_size": 13433, "is_delete": false, "file_type": 1, "original_file_name": "12633#西红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197893a13b45444595e2f4fc2f2354d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197893a13b45444595e2f4fc2f2354d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/197893a13b45444595e2f4fc2f2354d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/197893a13b45444595e2f4fc2f2354d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/197893a13b45444595e2f4fc2f2354d0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y3eh5TTLH13Zg_Ryy-oWnqJZjp4=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.770356+00 2025-12-09 10:15:59.770362+00 20836 LJH84132#黑色 SPMX-20240815316078 \N \N \N 1 \N [{"file_id": "a356d1b5-ada3-4496-bd64-ce516f344863", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04894461947b4f43b8f692966bc802f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04894461947b4f43b8f692966bc802f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04894461947b4f43b8f692966bc802f2.jpg", "file_size": 65230, "is_delete": false, "file_type": 1, "original_file_name": "LJH84132#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04894461947b4f43b8f692966bc802f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04894461947b4f43b8f692966bc802f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04894461947b4f43b8f692966bc802f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04894461947b4f43b8f692966bc802f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04894461947b4f43b8f692966bc802f2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oAnwAc_kzlMTDvoV7A9Tm77tko8=", "createTime": "2024-08-15 15:09:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.773949+00 2025-12-09 10:15:59.773955+00 20837 0030-16FWF#动物蓝 SPMX-20240815316081 \N \N \N 1 \N [{"file_id": "cc4a2c97-6425-4ed3-9b09-1007c09a7f1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af18f2cc6bd94dd0a8e70dad1573cc58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af18f2cc6bd94dd0a8e70dad1573cc58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af18f2cc6bd94dd0a8e70dad1573cc58.jpg", "file_size": 11946, "is_delete": false, "file_type": 1, "original_file_name": "0030-16FWF#动物蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af18f2cc6bd94dd0a8e70dad1573cc58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af18f2cc6bd94dd0a8e70dad1573cc58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af18f2cc6bd94dd0a8e70dad1573cc58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af18f2cc6bd94dd0a8e70dad1573cc58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af18f2cc6bd94dd0a8e70dad1573cc58.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U1u_n_6TCEsopJEla-LOMXUGRjE=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.777527+00 2025-12-09 10:15:59.777533+00 20838 JY-AD-210#原版色 SPMX-20240815316086 \N \N \N 1 \N [{"file_id": "1d5f3c92-5b0a-4a2b-8a2d-c4cfe1d61b59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f7a177652f045a79731329d2f8dda9d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f7a177652f045a79731329d2f8dda9d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f7a177652f045a79731329d2f8dda9d.jpg", "file_size": 14175, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-210#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a177652f045a79731329d2f8dda9d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a177652f045a79731329d2f8dda9d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f7a177652f045a79731329d2f8dda9d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f7a177652f045a79731329d2f8dda9d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f7a177652f045a79731329d2f8dda9d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ZWxkfuNunLy08ddGWFg1tQJBm4=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.781131+00 2025-12-09 10:15:59.781137+00 20839 DM2257#雾蓝M SPMX-20240815316083 \N \N \N 1 \N [{"file_id": "81636781-ee73-4244-bc24-878739c3dd7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "553245adba1e4516a02ea99f084be6bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "553245adba1e4516a02ea99f084be6bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "553245adba1e4516a02ea99f084be6bd.jpg", "file_size": 17129, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553245adba1e4516a02ea99f084be6bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553245adba1e4516a02ea99f084be6bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/553245adba1e4516a02ea99f084be6bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/553245adba1e4516a02ea99f084be6bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/553245adba1e4516a02ea99f084be6bd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:70U6Df3UjUcocZTrMME-wVfg8Pg=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.784662+00 2025-12-09 10:15:59.784668+00 20840 FX007FWE#VS-D3 SPMX-20240815316079 \N \N \N 1 \N [{"file_id": "b31bb7b4-a743-4c7d-b92c-161a0f2a9d80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9009050abc25417785201cda1fae410a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9009050abc25417785201cda1fae410a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9009050abc25417785201cda1fae410a.jpg", "file_size": 25955, "is_delete": false, "file_type": 1, "original_file_name": "FX007FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9009050abc25417785201cda1fae410a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9009050abc25417785201cda1fae410a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9009050abc25417785201cda1fae410a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9009050abc25417785201cda1fae410a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9009050abc25417785201cda1fae410a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x8kWIs2wrwXs4qz2HSbhOLKWqaE=", "createTime": "2024-08-15 15:09:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.788252+00 2025-12-09 10:15:59.788258+00 20841 LZ1421#童装T3号色 SPMX-20240815316088 \N \N \N 1 \N [{"file_id": "77d1db15-3cb8-40e4-9cf3-149cbbbd36fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b0688a57f794fa7bbd71ca2b5ccedbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b0688a57f794fa7bbd71ca2b5ccedbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b0688a57f794fa7bbd71ca2b5ccedbd.jpg", "file_size": 25297, "is_delete": false, "file_type": 1, "original_file_name": "LZ1421#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0688a57f794fa7bbd71ca2b5ccedbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0688a57f794fa7bbd71ca2b5ccedbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b0688a57f794fa7bbd71ca2b5ccedbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b0688a57f794fa7bbd71ca2b5ccedbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b0688a57f794fa7bbd71ca2b5ccedbd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:baiuQVtF0G4UbNRKgVhStQleYw8=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.791862+00 2025-12-09 10:15:59.791869+00 20842 24077#-4-C#-左 SPMX-20240815316080 \N \N \N 1 \N [{"file_id": "aee10add-44a8-4911-b2a2-ddd5b08da75e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02dab200cf74fcfb192f58455687459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02dab200cf74fcfb192f58455687459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02dab200cf74fcfb192f58455687459.jpg", "file_size": 42338, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4-C#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02dab200cf74fcfb192f58455687459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02dab200cf74fcfb192f58455687459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02dab200cf74fcfb192f58455687459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02dab200cf74fcfb192f58455687459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02dab200cf74fcfb192f58455687459.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9_cHBEa4u9BUruppTjiXBLzhQqw=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.795464+00 2025-12-09 10:15:59.79547+00 20843 HXF007FWE#VS-D3 SPMX-20240815316082 \N \N \N 1 \N [{"file_id": "506accf3-73bf-42dd-a0e8-7de3ef256dfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7904aec1a68d41ab881b75f73bd48afc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7904aec1a68d41ab881b75f73bd48afc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7904aec1a68d41ab881b75f73bd48afc.jpg", "file_size": 27138, "is_delete": false, "file_type": 1, "original_file_name": "HXF007FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7904aec1a68d41ab881b75f73bd48afc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7904aec1a68d41ab881b75f73bd48afc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7904aec1a68d41ab881b75f73bd48afc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7904aec1a68d41ab881b75f73bd48afc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7904aec1a68d41ab881b75f73bd48afc.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxOQ-6afyI94M6-x97qsdMWare0=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.799047+00 2025-12-09 10:15:59.799053+00 20844 CH326FWE#鳄鱼头3XL SPMX-20240815316085 \N \N \N 1 \N [{"file_id": "04db2221-a84d-406d-aa42-462a71ba57b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4b6c4da9191449a94c2fa4ce352784d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4b6c4da9191449a94c2fa4ce352784d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4b6c4da9191449a94c2fa4ce352784d.jpg", "file_size": 10290, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b6c4da9191449a94c2fa4ce352784d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b6c4da9191449a94c2fa4ce352784d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b6c4da9191449a94c2fa4ce352784d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4b6c4da9191449a94c2fa4ce352784d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4b6c4da9191449a94c2fa4ce352784d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DW4a6ayu9aIJu5ws0RltLQ8fYU8=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.80261+00 2025-12-09 10:15:59.802616+00 20845 88380FWF#A紫色42码 SPMX-20240815316084 \N \N \N 1 \N [{"file_id": "8338dfcc-2040-471b-8ac3-c5413b4a2673", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ef53558321d4c7ab7aadfc072204d79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ef53558321d4c7ab7aadfc072204d79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ef53558321d4c7ab7aadfc072204d79.jpg", "file_size": 22412, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A紫色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef53558321d4c7ab7aadfc072204d79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef53558321d4c7ab7aadfc072204d79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef53558321d4c7ab7aadfc072204d79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ef53558321d4c7ab7aadfc072204d79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ef53558321d4c7ab7aadfc072204d79.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oF1yKoPbeMLHQsBfyrWchzEmG1I=", "createTime": "2024-08-15 15:09:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.806157+00 2025-12-09 10:15:59.806163+00 20846 24077#-4-C# SPMX-20240815316089 \N \N \N 1 \N [{"file_id": "fc3261ec-d823-4f07-9fca-cd4168cc2300", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fb753d593fe45788466bcc68e1f2ec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fb753d593fe45788466bcc68e1f2ec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fb753d593fe45788466bcc68e1f2ec5.jpg", "file_size": 41716, "is_delete": false, "file_type": 1, "original_file_name": "24077#-4-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fb753d593fe45788466bcc68e1f2ec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fb753d593fe45788466bcc68e1f2ec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fb753d593fe45788466bcc68e1f2ec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fb753d593fe45788466bcc68e1f2ec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fb753d593fe45788466bcc68e1f2ec5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_yms5Tm435jGRqAVbQ4XuHbowg0=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.809773+00 2025-12-09 10:15:59.809779+00 20847 FX008#D白底黑 SPMX-20240815316091 \N \N \N 1 \N [{"file_id": "a7a3bc49-c79e-4f17-b92c-f69921717f7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9270e4dc9474dfc8a23f2a65e31c74d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9270e4dc9474dfc8a23f2a65e31c74d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9270e4dc9474dfc8a23f2a65e31c74d.jpg", "file_size": 19674, "is_delete": false, "file_type": 1, "original_file_name": "FX008#D白底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9270e4dc9474dfc8a23f2a65e31c74d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9270e4dc9474dfc8a23f2a65e31c74d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9270e4dc9474dfc8a23f2a65e31c74d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9270e4dc9474dfc8a23f2a65e31c74d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9270e4dc9474dfc8a23f2a65e31c74d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rhhecZYMJobq4-XDXstwQgZtPPA=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.813338+00 2025-12-09 10:15:59.813345+00 20848 JY-AD-219#1号黑色 SPMX-20240815316097 \N \N \N 1 \N [{"file_id": "7b42a5e1-037b-4e92-a4a5-79a88b57f34d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8afdf89967a64021b185fd2a50926d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8afdf89967a64021b185fd2a50926d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8afdf89967a64021b185fd2a50926d0e.jpg", "file_size": 15566, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#1号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afdf89967a64021b185fd2a50926d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afdf89967a64021b185fd2a50926d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8afdf89967a64021b185fd2a50926d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8afdf89967a64021b185fd2a50926d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8afdf89967a64021b185fd2a50926d0e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lct--Jh23y2I5UfRuuVZLMCqL2k=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.816907+00 2025-12-09 10:15:59.816913+00 20849 HXF008#粉 SPMX-20240815316090 \N \N \N 1 \N [{"file_id": "41c55d40-4f90-4320-b7aa-66d26910bd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a000cf5e614b4b68a2d0774c5e1510d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a000cf5e614b4b68a2d0774c5e1510d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a000cf5e614b4b68a2d0774c5e1510d3.jpg", "file_size": 11741, "is_delete": false, "file_type": 1, "original_file_name": "HXF008#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a000cf5e614b4b68a2d0774c5e1510d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a000cf5e614b4b68a2d0774c5e1510d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a000cf5e614b4b68a2d0774c5e1510d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a000cf5e614b4b68a2d0774c5e1510d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a000cf5e614b4b68a2d0774c5e1510d3.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8PMfo7l6r_bpTWJ0TU-dfrzsI0=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.877877+00 2025-12-09 10:15:59.877882+00 20866 HXF008FW#VS-D3粉 SPMX-20240815316101 \N \N \N 1 \N [{"file_id": "412c7ea2-7eaf-4e3b-81a3-e91c942c44b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87e71fde50f0460fb387faf0529d812f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87e71fde50f0460fb387faf0529d812f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87e71fde50f0460fb387faf0529d812f.jpg", "file_size": 10710, "is_delete": false, "file_type": 1, "original_file_name": "HXF008FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e71fde50f0460fb387faf0529d812f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e71fde50f0460fb387faf0529d812f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e71fde50f0460fb387faf0529d812f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87e71fde50f0460fb387faf0529d812f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87e71fde50f0460fb387faf0529d812f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fkmSoSLaV37bPFWC4PRGMhw_OZw=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.820467+00 2025-12-09 10:15:59.820473+00 20850 LJH84133#上节粉色净色 SPMX-20240815316092 \N \N \N 1 \N [{"file_id": "f15c1f61-ab03-47de-815b-b1a1aecb1c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd7f95c02dd4ef1842d13ff589a5ed0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd7f95c02dd4ef1842d13ff589a5ed0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd7f95c02dd4ef1842d13ff589a5ed0.jpg", "file_size": 14278, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#上节粉色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7f95c02dd4ef1842d13ff589a5ed0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7f95c02dd4ef1842d13ff589a5ed0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd7f95c02dd4ef1842d13ff589a5ed0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd7f95c02dd4ef1842d13ff589a5ed0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd7f95c02dd4ef1842d13ff589a5ed0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O6UbEvZ4LFFlXTfFlaqZkiUiPws=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.824139+00 2025-12-09 10:15:59.824145+00 20851 1263FWF#2XL SPMX-20240815316098 \N \N \N 1 \N [{"file_id": "c9046140-6a6d-4c60-b3e3-00bbfe96a093", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7972f3f610d46d3bac3fb15206a0933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7972f3f610d46d3bac3fb15206a0933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7972f3f610d46d3bac3fb15206a0933.jpg", "file_size": 15020, "is_delete": false, "file_type": 1, "original_file_name": "1263FWF#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7972f3f610d46d3bac3fb15206a0933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7972f3f610d46d3bac3fb15206a0933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7972f3f610d46d3bac3fb15206a0933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7972f3f610d46d3bac3fb15206a0933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7972f3f610d46d3bac3fb15206a0933.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pmBqKqSQalwwVNvLvafNJld1DVc=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.827716+00 2025-12-09 10:15:59.827722+00 20852 88380FWF#A紫色44码 SPMX-20240815316093 \N \N \N 1 \N [{"file_id": "e5adce02-cb7d-490f-8cf3-6d5e0a196ffa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54adf935f262459bb334db9d5d31615b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54adf935f262459bb334db9d5d31615b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54adf935f262459bb334db9d5d31615b.jpg", "file_size": 23106, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A紫色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54adf935f262459bb334db9d5d31615b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54adf935f262459bb334db9d5d31615b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54adf935f262459bb334db9d5d31615b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54adf935f262459bb334db9d5d31615b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54adf935f262459bb334db9d5d31615b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NWbdAWFVgTZMZdwyv8e7T3QxSBA=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.831414+00 2025-12-09 10:15:59.831421+00 20853 DM2257#雾蓝XL SPMX-20240815316094 \N \N \N 1 \N [{"file_id": "bf77c1e1-f16e-4258-b3b2-aabdcb60a42e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "987d3cdb65e040aa95da529fefaf7fb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "987d3cdb65e040aa95da529fefaf7fb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "987d3cdb65e040aa95da529fefaf7fb0.jpg", "file_size": 16763, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#雾蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987d3cdb65e040aa95da529fefaf7fb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987d3cdb65e040aa95da529fefaf7fb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/987d3cdb65e040aa95da529fefaf7fb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/987d3cdb65e040aa95da529fefaf7fb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/987d3cdb65e040aa95da529fefaf7fb0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_iRC6tBbwdnob_DH1NzFkQLW2Rw=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.835031+00 2025-12-09 10:15:59.835038+00 20854 CH326FWE#鳄鱼头4XL SPMX-20240815316095 \N \N \N 1 \N [{"file_id": "7f5e9906-907c-4e97-afa5-2679bfb1f13f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c30fa39d4b82401fa68e5e5225eccbb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c30fa39d4b82401fa68e5e5225eccbb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c30fa39d4b82401fa68e5e5225eccbb1.jpg", "file_size": 10409, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30fa39d4b82401fa68e5e5225eccbb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30fa39d4b82401fa68e5e5225eccbb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c30fa39d4b82401fa68e5e5225eccbb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c30fa39d4b82401fa68e5e5225eccbb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c30fa39d4b82401fa68e5e5225eccbb1.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6SjwsK9UziUpWXcrcjL8pzFHzrM=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.838626+00 2025-12-09 10:15:59.838633+00 20855 0030-17FWF#V5曲线 SPMX-20240815316096 \N \N \N 1 \N [{"file_id": "20aa4a71-e19a-4ff5-9324-89be34a268b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6b4479a0b0f46f0a44ae5158d66dd6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6b4479a0b0f46f0a44ae5158d66dd6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6b4479a0b0f46f0a44ae5158d66dd6b.jpg", "file_size": 20953, "is_delete": false, "file_type": 1, "original_file_name": "0030-17FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b4479a0b0f46f0a44ae5158d66dd6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b4479a0b0f46f0a44ae5158d66dd6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b4479a0b0f46f0a44ae5158d66dd6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6b4479a0b0f46f0a44ae5158d66dd6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6b4479a0b0f46f0a44ae5158d66dd6b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0L4WML04FDzi7u7wCjaKdDHbco=", "createTime": "2024-08-15 15:09:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.842182+00 2025-12-09 10:15:59.842188+00 20856 FX008#WJC22 SPMX-20240815316102 \N \N \N 1 \N [{"file_id": "0a9f1eb4-9087-40b3-a8ba-3f299b40bf61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2006d02b103c4e09ab646f4861f53d8c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2006d02b103c4e09ab646f4861f53d8c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2006d02b103c4e09ab646f4861f53d8c.jpg", "file_size": 20899, "is_delete": false, "file_type": 1, "original_file_name": "FX008#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2006d02b103c4e09ab646f4861f53d8c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2006d02b103c4e09ab646f4861f53d8c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2006d02b103c4e09ab646f4861f53d8c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2006d02b103c4e09ab646f4861f53d8c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2006d02b103c4e09ab646f4861f53d8c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WoH262juvWtIpTt8JuEA52-vud0=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.845722+00 2025-12-09 10:15:59.845728+00 20857 DM2257#香芋紫2XL SPMX-20240815316104 \N \N \N 1 \N [{"file_id": "9abdc059-1523-48a2-ac28-da8099f4cb92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67ced4bbb1b14e7fa5662bc5928b746a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67ced4bbb1b14e7fa5662bc5928b746a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67ced4bbb1b14e7fa5662bc5928b746a.jpg", "file_size": 16946, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ced4bbb1b14e7fa5662bc5928b746a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ced4bbb1b14e7fa5662bc5928b746a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67ced4bbb1b14e7fa5662bc5928b746a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67ced4bbb1b14e7fa5662bc5928b746a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67ced4bbb1b14e7fa5662bc5928b746a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zOz0EiZ8zcDNkqpqEh5UjQl1u10=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.849307+00 2025-12-09 10:15:59.849313+00 20858 LJH84133#上节绿色净色 SPMX-20240815316107 \N \N \N 1 \N [{"file_id": "e74a64c2-5aae-4ca2-a97b-376598a67255", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26393e351f9e4cfa842bd20bb7b81295.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26393e351f9e4cfa842bd20bb7b81295.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26393e351f9e4cfa842bd20bb7b81295.jpg", "file_size": 14958, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#上节绿色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26393e351f9e4cfa842bd20bb7b81295.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26393e351f9e4cfa842bd20bb7b81295.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26393e351f9e4cfa842bd20bb7b81295.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26393e351f9e4cfa842bd20bb7b81295.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26393e351f9e4cfa842bd20bb7b81295.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xMXzh2XBoqDUjANZilA81y5YwRc=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.852919+00 2025-12-09 10:15:59.852925+00 20859 88380FWF#A紫色46码 SPMX-20240815316108 \N \N \N 1 \N [{"file_id": "27d3250c-d230-4e21-a6d2-16e50c135abe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ca7c51d3aff47feb65627696f956257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ca7c51d3aff47feb65627696f956257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ca7c51d3aff47feb65627696f956257.jpg", "file_size": 23471, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A紫色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca7c51d3aff47feb65627696f956257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca7c51d3aff47feb65627696f956257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ca7c51d3aff47feb65627696f956257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ca7c51d3aff47feb65627696f956257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ca7c51d3aff47feb65627696f956257.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8PwzFGyJ18j1ypAj39UPEUO8itg=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.856471+00 2025-12-09 10:15:59.856477+00 20860 24077#-5-A# SPMX-20240815316100 \N \N \N 1 \N [{"file_id": "0800a5a6-f602-47a6-854b-391a102fe0a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c325dec5dd046e2bc823888f41053d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c325dec5dd046e2bc823888f41053d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c325dec5dd046e2bc823888f41053d5.jpg", "file_size": 44382, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-A#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c325dec5dd046e2bc823888f41053d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c325dec5dd046e2bc823888f41053d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c325dec5dd046e2bc823888f41053d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c325dec5dd046e2bc823888f41053d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c325dec5dd046e2bc823888f41053d5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gH_SzCwPuvdxq2Rc-C9C3LamZ1Q=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.860016+00 2025-12-09 10:15:59.860022+00 20861 LZ1421#童装T4号色 SPMX-20240815316099 \N \N \N 1 \N [{"file_id": "4f2668aa-2269-4bc6-8773-8701f0977649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e78946e3f9cc4e3e8c33536974ec3498.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e78946e3f9cc4e3e8c33536974ec3498.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e78946e3f9cc4e3e8c33536974ec3498.jpg", "file_size": 23030, "is_delete": false, "file_type": 1, "original_file_name": "LZ1421#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e78946e3f9cc4e3e8c33536974ec3498.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e78946e3f9cc4e3e8c33536974ec3498.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e78946e3f9cc4e3e8c33536974ec3498.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e78946e3f9cc4e3e8c33536974ec3498.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e78946e3f9cc4e3e8c33536974ec3498.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QMBccpBmYJodDh93xEdq7TM2DT8=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.863587+00 2025-12-09 10:15:59.863594+00 20862 JY-AD-219#2号桔色 SPMX-20240815316105 \N \N \N 1 \N [{"file_id": "4dcabe38-df4f-40ab-81d0-32e22f07286f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af15991f6ae74203a166dc1b4d2b899a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af15991f6ae74203a166dc1b4d2b899a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af15991f6ae74203a166dc1b4d2b899a.jpg", "file_size": 15657, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#2号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af15991f6ae74203a166dc1b4d2b899a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af15991f6ae74203a166dc1b4d2b899a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af15991f6ae74203a166dc1b4d2b899a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af15991f6ae74203a166dc1b4d2b899a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af15991f6ae74203a166dc1b4d2b899a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6VfCapcKvQir4-tPKeD0ZhHYbI=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.867201+00 2025-12-09 10:15:59.867207+00 20863 CH326FWE#鳄鱼头5XL SPMX-20240815316103 \N \N \N 1 \N [{"file_id": "2df5d35a-bae5-4c62-a288-6242b06a8707", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0792aa7f4da405aaeb8e5ae8efd95d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0792aa7f4da405aaeb8e5ae8efd95d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0792aa7f4da405aaeb8e5ae8efd95d1.jpg", "file_size": 10548, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0792aa7f4da405aaeb8e5ae8efd95d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0792aa7f4da405aaeb8e5ae8efd95d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0792aa7f4da405aaeb8e5ae8efd95d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0792aa7f4da405aaeb8e5ae8efd95d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0792aa7f4da405aaeb8e5ae8efd95d1.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GaxkIh-uJ38yUtFGl-b4YkBkOx0=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.870757+00 2025-12-09 10:15:59.870763+00 20864 1263FWF#L SPMX-20240815316109 \N \N \N 1 \N [{"file_id": "53d83323-026d-4936-a4b4-de1555f3ce31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39d84c57bb564ee080e9b422c215fdbf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39d84c57bb564ee080e9b422c215fdbf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39d84c57bb564ee080e9b422c215fdbf.jpg", "file_size": 15623, "is_delete": false, "file_type": 1, "original_file_name": "1263FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d84c57bb564ee080e9b422c215fdbf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d84c57bb564ee080e9b422c215fdbf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39d84c57bb564ee080e9b422c215fdbf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39d84c57bb564ee080e9b422c215fdbf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39d84c57bb564ee080e9b422c215fdbf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NeO4QAZ_5l8sVmAdogBMZN0NDds=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.874355+00 2025-12-09 10:15:59.874362+00 20865 0030-18FWF#宝蓝 SPMX-20240815316106 \N \N \N 1 \N [{"file_id": "f46cb40c-7efd-4d04-ad62-541376bf8018", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "662e94912c9b4713ae801b2c011c53ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "662e94912c9b4713ae801b2c011c53ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "662e94912c9b4713ae801b2c011c53ca.jpg", "file_size": 16386, "is_delete": false, "file_type": 1, "original_file_name": "0030-18FWF#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662e94912c9b4713ae801b2c011c53ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662e94912c9b4713ae801b2c011c53ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/662e94912c9b4713ae801b2c011c53ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/662e94912c9b4713ae801b2c011c53ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/662e94912c9b4713ae801b2c011c53ca.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TSWCUzkY75PoICvo4qMmqAofbi0=", "createTime": "2024-08-15 15:09:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.881443+00 2025-12-09 10:15:59.881449+00 20867 24077#-5-A-左 SPMX-20240815316114 \N \N \N 1 \N [{"file_id": "980db421-b7bb-4a33-936a-d27e6a44076d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31ba96b8293a469f90512ebac4172604.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31ba96b8293a469f90512ebac4172604.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31ba96b8293a469f90512ebac4172604.jpg", "file_size": 45301, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-A-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ba96b8293a469f90512ebac4172604.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ba96b8293a469f90512ebac4172604.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31ba96b8293a469f90512ebac4172604.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31ba96b8293a469f90512ebac4172604.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31ba96b8293a469f90512ebac4172604.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_xyStHuxxXhsWcxaY93E0zq90RI=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.885034+00 2025-12-09 10:15:59.88504+00 20868 88380FWF#A紫色48码 SPMX-20240815316120 \N \N \N 1 \N [{"file_id": "57765520-94b9-412e-aa52-263f416fffab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45ae85adf3d248abb498054040050fa7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45ae85adf3d248abb498054040050fa7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45ae85adf3d248abb498054040050fa7.jpg", "file_size": 24074, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A紫色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ae85adf3d248abb498054040050fa7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ae85adf3d248abb498054040050fa7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ae85adf3d248abb498054040050fa7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45ae85adf3d248abb498054040050fa7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45ae85adf3d248abb498054040050fa7.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uo_f7qrzw03G_otGGqm-H4r_fwo=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.888735+00 2025-12-09 10:15:59.888742+00 20869 DM2257#香芋紫3XL SPMX-20240815316116 \N \N \N 1 \N [{"file_id": "ab00a84f-3eb2-435d-9332-55fa741c8179", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7613698df893406095a89ee8377d655d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7613698df893406095a89ee8377d655d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7613698df893406095a89ee8377d655d.jpg", "file_size": 17156, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7613698df893406095a89ee8377d655d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7613698df893406095a89ee8377d655d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7613698df893406095a89ee8377d655d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7613698df893406095a89ee8377d655d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7613698df893406095a89ee8377d655d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PlhoCh2PjtkBv6nYOmr8eRYjVmE=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.892466+00 2025-12-09 10:15:59.892478+00 20870 0030-18FWF#杏色 SPMX-20240815316118 \N \N \N 1 \N [{"file_id": "3ab4105c-f0f1-46de-bff9-d1f4043832ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "526e7e5e99824712abbed59a33c501e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "526e7e5e99824712abbed59a33c501e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "526e7e5e99824712abbed59a33c501e8.jpg", "file_size": 11915, "is_delete": false, "file_type": 1, "original_file_name": "0030-18FWF#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e7e5e99824712abbed59a33c501e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e7e5e99824712abbed59a33c501e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/526e7e5e99824712abbed59a33c501e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/526e7e5e99824712abbed59a33c501e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/526e7e5e99824712abbed59a33c501e8.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:onU-MnBHNybDPTnB8VENn4qK2z0=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.896026+00 2025-12-09 10:15:59.896032+00 20871 CH326FWE#鳄鱼头M SPMX-20240815316123 \N \N \N 1 \N [{"file_id": "5f467605-2d3a-4312-9ad7-5e31424c435e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d41d9c04595b4877b8cfe9951b9d5f4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d41d9c04595b4877b8cfe9951b9d5f4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d41d9c04595b4877b8cfe9951b9d5f4f.jpg", "file_size": 9884, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41d9c04595b4877b8cfe9951b9d5f4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41d9c04595b4877b8cfe9951b9d5f4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41d9c04595b4877b8cfe9951b9d5f4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d41d9c04595b4877b8cfe9951b9d5f4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d41d9c04595b4877b8cfe9951b9d5f4f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sUXWg30E8ycjbRN0x7CGE9TxFAE=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.89972+00 2025-12-09 10:15:59.899727+00 20872 DM2257#香芋紫4XL SPMX-20240815316126 \N \N \N 1 \N [{"file_id": "2dfde5d8-e2c9-416a-bd5f-0e6879782e6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8f56da5d8d24cc7b2ed0097cbcef75b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8f56da5d8d24cc7b2ed0097cbcef75b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8f56da5d8d24cc7b2ed0097cbcef75b.jpg", "file_size": 16922, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f56da5d8d24cc7b2ed0097cbcef75b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f56da5d8d24cc7b2ed0097cbcef75b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8f56da5d8d24cc7b2ed0097cbcef75b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8f56da5d8d24cc7b2ed0097cbcef75b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8f56da5d8d24cc7b2ed0097cbcef75b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JP92tfzsV_AIYuUvtfx9sHf0Cd4=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.903342+00 2025-12-09 10:15:59.903349+00 20873 FX008#红VS-D3 SPMX-20240815316111 \N \N \N 1 \N [{"file_id": "9d6e2ed1-9123-4fec-88a6-c52626fa46bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4b4046290e84eaa8e3706ba9631832c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4b4046290e84eaa8e3706ba9631832c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4b4046290e84eaa8e3706ba9631832c.jpg", "file_size": 9027, "is_delete": false, "file_type": 1, "original_file_name": "FX008#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b4046290e84eaa8e3706ba9631832c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b4046290e84eaa8e3706ba9631832c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4b4046290e84eaa8e3706ba9631832c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4b4046290e84eaa8e3706ba9631832c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4b4046290e84eaa8e3706ba9631832c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGqvORt_c7T6waNPBmxNWa1RHBM=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.907006+00 2025-12-09 10:15:59.907014+00 20874 CH326FWE#鳄鱼头L SPMX-20240815316113 \N \N \N 1 \N [{"file_id": "a288c470-fad1-4bf1-8ed7-dccb64c4cbd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85b24445280240aa9a9d1fbcff28524a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85b24445280240aa9a9d1fbcff28524a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85b24445280240aa9a9d1fbcff28524a.jpg", "file_size": 10136, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b24445280240aa9a9d1fbcff28524a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b24445280240aa9a9d1fbcff28524a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85b24445280240aa9a9d1fbcff28524a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85b24445280240aa9a9d1fbcff28524a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85b24445280240aa9a9d1fbcff28524a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnCRyjQwAszZS5lRhUVZQ6T0ePw=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.910578+00 2025-12-09 10:15:59.910584+00 20875 FX008#蓝VS-D3 SPMX-20240815316124 \N \N \N 1 \N [{"file_id": "47e07a3e-809e-4dc7-8534-ef4f2f09c0d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg", "file_size": 8703, "is_delete": false, "file_type": 1, "original_file_name": "FX008#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6dfb7f8de02b4ba6b6f6b92530a93dbc.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4B88nlH49n0c6cs7o7GodbyzQL8=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.914179+00 2025-12-09 10:15:59.914186+00 20876 HXF009#白 SPMX-20240815316122 \N \N \N 1 \N [{"file_id": "e22f6e1c-d1b3-4814-8084-8f512addddee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56174ae85c2943aa976e964b44b968e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56174ae85c2943aa976e964b44b968e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56174ae85c2943aa976e964b44b968e6.jpg", "file_size": 26212, "is_delete": false, "file_type": 1, "original_file_name": "HXF009#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56174ae85c2943aa976e964b44b968e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56174ae85c2943aa976e964b44b968e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56174ae85c2943aa976e964b44b968e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56174ae85c2943aa976e964b44b968e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56174ae85c2943aa976e964b44b968e6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCjo_lWVQNIyTDBIR-xcbvh9vys=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.917745+00 2025-12-09 10:15:59.917752+00 20877 1263FWF#XL SPMX-20240815316119 \N \N \N 1 \N [{"file_id": "463b7ba7-ad33-46ae-95f5-75e9fd7435aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fe9a26e09ac44c09d96a23144de0b3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fe9a26e09ac44c09d96a23144de0b3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fe9a26e09ac44c09d96a23144de0b3b.jpg", "file_size": 15424, "is_delete": false, "file_type": 1, "original_file_name": "1263FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe9a26e09ac44c09d96a23144de0b3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe9a26e09ac44c09d96a23144de0b3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fe9a26e09ac44c09d96a23144de0b3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fe9a26e09ac44c09d96a23144de0b3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fe9a26e09ac44c09d96a23144de0b3b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YVa8ZJkXQWELifSoXBy2AN2hLLs=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.921347+00 2025-12-09 10:15:59.921353+00 20878 24077#-5-A SPMX-20240815316125 \N \N \N 1 \N [{"file_id": "0c6f048d-6a3d-437d-8cf8-bc1b1992de39", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45505181fc964a2592a98b086e0fb4ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45505181fc964a2592a98b086e0fb4ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45505181fc964a2592a98b086e0fb4ef.jpg", "file_size": 45404, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45505181fc964a2592a98b086e0fb4ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45505181fc964a2592a98b086e0fb4ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45505181fc964a2592a98b086e0fb4ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45505181fc964a2592a98b086e0fb4ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45505181fc964a2592a98b086e0fb4ef.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OYb2az4oz1fASaaHSPbYE20dfwQ=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.924882+00 2025-12-09 10:15:59.924888+00 20879 HXF008FWE#VS-D3 SPMX-20240815316110 \N \N \N 1 \N [{"file_id": "0ac0db8e-660a-497c-9a14-7ca553bd24dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "addfe66cab674c818dfddda62dab6cc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "addfe66cab674c818dfddda62dab6cc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "addfe66cab674c818dfddda62dab6cc6.jpg", "file_size": 14623, "is_delete": false, "file_type": 1, "original_file_name": "HXF008FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addfe66cab674c818dfddda62dab6cc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addfe66cab674c818dfddda62dab6cc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/addfe66cab674c818dfddda62dab6cc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/addfe66cab674c818dfddda62dab6cc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/addfe66cab674c818dfddda62dab6cc6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i3Eh8X-3psSu07iN5EfGkG-IFfg=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.92844+00 2025-12-09 10:15:59.928446+00 20880 LZ1421#童装T5号色 SPMX-20240815316112 \N \N \N 1 \N [{"file_id": "6c06fcf3-9498-456c-a10d-43dee7940909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51a4da3f51ab4e24be5f983eae437275.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51a4da3f51ab4e24be5f983eae437275.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51a4da3f51ab4e24be5f983eae437275.jpg", "file_size": 24757, "is_delete": false, "file_type": 1, "original_file_name": "LZ1421#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a4da3f51ab4e24be5f983eae437275.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a4da3f51ab4e24be5f983eae437275.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51a4da3f51ab4e24be5f983eae437275.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51a4da3f51ab4e24be5f983eae437275.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51a4da3f51ab4e24be5f983eae437275.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbTBsaRVGkk_qdzUZRfW-TVLJaU=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.932041+00 2025-12-09 10:15:59.932047+00 20881 JY-AD-219#3号焦糖色 SPMX-20240815316115 \N \N \N 1 \N [{"file_id": "0a041377-aedd-4c87-aa3d-b72b1bfe620d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab49764259304d6598bcc9d6a2c4f12a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab49764259304d6598bcc9d6a2c4f12a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab49764259304d6598bcc9d6a2c4f12a.jpg", "file_size": 14957, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#3号焦糖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab49764259304d6598bcc9d6a2c4f12a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab49764259304d6598bcc9d6a2c4f12a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab49764259304d6598bcc9d6a2c4f12a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab49764259304d6598bcc9d6a2c4f12a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab49764259304d6598bcc9d6a2c4f12a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4U2FbhEC_6djkSm3Ndk8Awnzhk=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.935618+00 2025-12-09 10:15:59.935624+00 20882 LJH84133#上节蓝色净色 SPMX-20240815316117 \N \N \N 1 \N [{"file_id": "37fe4e9e-6f4a-4181-90e6-c007e4759040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6b7d8f337b405f97ea82001049925b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6b7d8f337b405f97ea82001049925b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6b7d8f337b405f97ea82001049925b.jpg", "file_size": 15803, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#上节蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6b7d8f337b405f97ea82001049925b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6b7d8f337b405f97ea82001049925b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6b7d8f337b405f97ea82001049925b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6b7d8f337b405f97ea82001049925b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6b7d8f337b405f97ea82001049925b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pd0Z8FN62DLC6YmIyB0Mz0wiHTI=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.939152+00 2025-12-09 10:15:59.939158+00 20883 LZ1422#童装T1号色 SPMX-20240815316121 \N \N \N 1 \N [{"file_id": "225b84d9-23c0-4631-99b0-0e46d4d52e90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f7413167c484deca5654829d88fb3e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f7413167c484deca5654829d88fb3e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f7413167c484deca5654829d88fb3e6.jpg", "file_size": 23013, "is_delete": false, "file_type": 1, "original_file_name": "LZ1422#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7413167c484deca5654829d88fb3e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7413167c484deca5654829d88fb3e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f7413167c484deca5654829d88fb3e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f7413167c484deca5654829d88fb3e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f7413167c484deca5654829d88fb3e6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fWyMMwDcqwx_BYHJm-5Vt4hk3G8=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.942727+00 2025-12-09 10:15:59.942733+00 20884 FX008FW#VS-D3 SPMX-20240815316136 \N \N \N 1 \N [{"file_id": "d5e1c10c-4b90-49cc-b869-3847fbd7f77e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4595b5c4043d41e68480cb843b7354e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4595b5c4043d41e68480cb843b7354e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4595b5c4043d41e68480cb843b7354e7.jpg", "file_size": 17157, "is_delete": false, "file_type": 1, "original_file_name": "FX008FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4595b5c4043d41e68480cb843b7354e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4595b5c4043d41e68480cb843b7354e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4595b5c4043d41e68480cb843b7354e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4595b5c4043d41e68480cb843b7354e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4595b5c4043d41e68480cb843b7354e7.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sK7RNArKZsITYIx5bSndgDgeAfI=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.946338+00 2025-12-09 10:15:59.946344+00 20885 DM2257#香芋紫5XL SPMX-20240815316139 \N \N \N 1 \N [{"file_id": "15ef2932-4a0a-4a01-b29d-d157e3249226", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b50b28a9696b4a389b728079dabc642f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b50b28a9696b4a389b728079dabc642f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b50b28a9696b4a389b728079dabc642f.jpg", "file_size": 17446, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50b28a9696b4a389b728079dabc642f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50b28a9696b4a389b728079dabc642f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b50b28a9696b4a389b728079dabc642f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b50b28a9696b4a389b728079dabc642f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b50b28a9696b4a389b728079dabc642f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ai2FDHN1K21QkTkGdV517yR-wao=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.949903+00 2025-12-09 10:15:59.949908+00 20886 24077#-5-B# SPMX-20240815316135 \N \N \N 1 \N [{"file_id": "797d011b-aeee-4927-b834-82895811cb30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cad45a4657e4b03b8f52f797824a2f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cad45a4657e4b03b8f52f797824a2f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cad45a4657e4b03b8f52f797824a2f3.jpg", "file_size": 51585, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-B#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cad45a4657e4b03b8f52f797824a2f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cad45a4657e4b03b8f52f797824a2f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cad45a4657e4b03b8f52f797824a2f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cad45a4657e4b03b8f52f797824a2f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cad45a4657e4b03b8f52f797824a2f3.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WSBI7YDB2ttcmk_n0GSn2kRkELI=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.95343+00 2025-12-09 10:15:59.953436+00 20887 0030-1FWE#VS-D3番禺调色 SPMX-20240815316138 \N \N \N 1 \N [{"file_id": "156fc5b7-d15d-4a3c-80ce-af49e23d0e32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f22e4a71e144ac9c3c359b8784606a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f22e4a71e144ac9c3c359b8784606a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f22e4a71e144ac9c3c359b8784606a.jpg", "file_size": 14012, "is_delete": false, "file_type": 1, "original_file_name": "0030-1FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f22e4a71e144ac9c3c359b8784606a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f22e4a71e144ac9c3c359b8784606a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f22e4a71e144ac9c3c359b8784606a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f22e4a71e144ac9c3c359b8784606a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f22e4a71e144ac9c3c359b8784606a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qYUxnN7NvT9ptd01cv9fBZ9Vv8=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.957045+00 2025-12-09 10:15:59.957051+00 20888 1264FWF#V5曲线 SPMX-20240815316140 \N \N \N 1 \N [{"file_id": "ebe87202-6067-44ad-bd48-1645d2c60006", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bf3bf35335742478ce0d301b75829c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bf3bf35335742478ce0d301b75829c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bf3bf35335742478ce0d301b75829c0.jpg", "file_size": 15636, "is_delete": false, "file_type": 1, "original_file_name": "1264FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bf3bf35335742478ce0d301b75829c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bf3bf35335742478ce0d301b75829c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bf3bf35335742478ce0d301b75829c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bf3bf35335742478ce0d301b75829c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bf3bf35335742478ce0d301b75829c0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XCxhkm1DvCF60UAVumWeYC4vSlQ=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.960687+00 2025-12-09 10:15:59.960693+00 20889 0030-19FWF#V5曲线 SPMX-20240815316128 \N \N \N 1 \N [{"file_id": "5e59ea32-cf0f-4820-9732-0104bdbd9d55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c83d3db6d3804e65b948a0531b3baed7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c83d3db6d3804e65b948a0531b3baed7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c83d3db6d3804e65b948a0531b3baed7.jpg", "file_size": 8556, "is_delete": false, "file_type": 1, "original_file_name": "0030-19FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83d3db6d3804e65b948a0531b3baed7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83d3db6d3804e65b948a0531b3baed7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c83d3db6d3804e65b948a0531b3baed7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c83d3db6d3804e65b948a0531b3baed7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c83d3db6d3804e65b948a0531b3baed7.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LsiPTOfda8SradrUIBw1v9FSC8I=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.96421+00 2025-12-09 10:15:59.964216+00 20890 HXF009#粉 SPMX-20240815316134 \N \N \N 1 \N [{"file_id": "bf0164fd-fb5d-4132-b147-0151dfbdfda8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37f76d5f118d421dad646f5e0abe3d06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37f76d5f118d421dad646f5e0abe3d06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37f76d5f118d421dad646f5e0abe3d06.jpg", "file_size": 25835, "is_delete": false, "file_type": 1, "original_file_name": "HXF009#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f76d5f118d421dad646f5e0abe3d06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f76d5f118d421dad646f5e0abe3d06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f76d5f118d421dad646f5e0abe3d06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37f76d5f118d421dad646f5e0abe3d06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37f76d5f118d421dad646f5e0abe3d06.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EBm7G1MSk18XJpXv0pbbn8THLrE=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.967787+00 2025-12-09 10:15:59.967793+00 20891 JY-AD-219#4号墨绿色 SPMX-20240815316127 \N \N \N 1 \N [{"file_id": "8469bd43-d503-4023-a50c-3ce96b48d7c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42effdf827ad4d3cb7854105bcf8dc03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42effdf827ad4d3cb7854105bcf8dc03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42effdf827ad4d3cb7854105bcf8dc03.jpg", "file_size": 15362, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#4号墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42effdf827ad4d3cb7854105bcf8dc03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42effdf827ad4d3cb7854105bcf8dc03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42effdf827ad4d3cb7854105bcf8dc03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42effdf827ad4d3cb7854105bcf8dc03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42effdf827ad4d3cb7854105bcf8dc03.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tfu9Th5qRx0ZClwB_FnHOu0c55M=", "createTime": "2024-08-15 15:09:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.971385+00 2025-12-09 10:15:59.971391+00 20892 CH326FWE#鳄鱼头S SPMX-20240815316133 \N \N \N 1 \N [{"file_id": "502a8620-5d4a-411b-bb63-9e8e6c10dafc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc0d6bd405444d0f96190e182e9dd9d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc0d6bd405444d0f96190e182e9dd9d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc0d6bd405444d0f96190e182e9dd9d0.jpg", "file_size": 9985, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0d6bd405444d0f96190e182e9dd9d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0d6bd405444d0f96190e182e9dd9d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0d6bd405444d0f96190e182e9dd9d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc0d6bd405444d0f96190e182e9dd9d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc0d6bd405444d0f96190e182e9dd9d0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6dRmV5PhhdAWfLzMytP0dgiojtQ=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.974968+00 2025-12-09 10:15:59.974975+00 20893 JY-AD-219#5号梅红 SPMX-20240815316137 \N \N \N 1 \N [{"file_id": "6cdcf792-a2a5-4697-916d-95a3d811dcf5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3f03f57444d46b0beda8cb45ff3d562.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3f03f57444d46b0beda8cb45ff3d562.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3f03f57444d46b0beda8cb45ff3d562.jpg", "file_size": 14876, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#5号梅红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f03f57444d46b0beda8cb45ff3d562.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f03f57444d46b0beda8cb45ff3d562.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3f03f57444d46b0beda8cb45ff3d562.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3f03f57444d46b0beda8cb45ff3d562.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3f03f57444d46b0beda8cb45ff3d562.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ul1ivt3F7N9rjr0KXjfze1ZR3Go=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.978592+00 2025-12-09 10:15:59.978598+00 20894 1263FWF#匹布 SPMX-20240815316129 \N \N \N 1 \N [{"file_id": "c43b31ef-bce0-4a98-ae40-0465ce7d069d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f25fbf17f0194c258bc6946753a91409.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f25fbf17f0194c258bc6946753a91409.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f25fbf17f0194c258bc6946753a91409.jpg", "file_size": 11989, "is_delete": false, "file_type": 1, "original_file_name": "1263FWF#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25fbf17f0194c258bc6946753a91409.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25fbf17f0194c258bc6946753a91409.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f25fbf17f0194c258bc6946753a91409.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f25fbf17f0194c258bc6946753a91409.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f25fbf17f0194c258bc6946753a91409.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLBp9K66AbBdBoVUKB6cQEc4La4=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.982709+00 2025-12-09 10:15:59.982716+00 20895 88380FWF#A紫色50码 SPMX-20240815316130 \N \N \N 1 \N [{"file_id": "972d068f-9fe0-4a04-83f0-b9fdadca8e14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1653358c052a4b6d83b2c50445a9a60c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1653358c052a4b6d83b2c50445a9a60c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1653358c052a4b6d83b2c50445a9a60c.jpg", "file_size": 24632, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A紫色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653358c052a4b6d83b2c50445a9a60c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653358c052a4b6d83b2c50445a9a60c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1653358c052a4b6d83b2c50445a9a60c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1653358c052a4b6d83b2c50445a9a60c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1653358c052a4b6d83b2c50445a9a60c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eaU_iv2ZdieifscL2r2bjCEdo8M=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.986264+00 2025-12-09 10:15:59.986271+00 20896 LJH84133#粉色 SPMX-20240815316131 \N \N \N 1 \N [{"file_id": "fc83d483-cec8-4c3f-9166-b0560056452d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75b06ede85b94e29989fd0114a2aecd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75b06ede85b94e29989fd0114a2aecd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75b06ede85b94e29989fd0114a2aecd5.jpg", "file_size": 52064, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b06ede85b94e29989fd0114a2aecd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b06ede85b94e29989fd0114a2aecd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75b06ede85b94e29989fd0114a2aecd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75b06ede85b94e29989fd0114a2aecd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75b06ede85b94e29989fd0114a2aecd5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNV1ikbnwBzC6ORPyStKMG6T7Mk=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.989891+00 2025-12-09 10:15:59.989899+00 20897 LZ1422#童装T2号色 SPMX-20240815316132 \N \N \N 1 \N [{"file_id": "1ecd2549-b4dc-4993-8f7e-462de1ad60a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e683426d92d54b308424cf8f35185040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e683426d92d54b308424cf8f35185040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e683426d92d54b308424cf8f35185040.jpg", "file_size": 25469, "is_delete": false, "file_type": 1, "original_file_name": "LZ1422#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683426d92d54b308424cf8f35185040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683426d92d54b308424cf8f35185040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683426d92d54b308424cf8f35185040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e683426d92d54b308424cf8f35185040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e683426d92d54b308424cf8f35185040.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8cSWDbVW08-SzmHQ8DG6Wmz1g4s=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.993465+00 2025-12-09 10:15:59.993472+00 20898 FX008FWE#VS-D3 SPMX-20240815316145 \N \N \N 1 \N [{"file_id": "75be6a51-89a7-4c7a-a0b6-b1d2a5fd2540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "510caf80e1104698b384aa1e79ecc945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "510caf80e1104698b384aa1e79ecc945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "510caf80e1104698b384aa1e79ecc945.jpg", "file_size": 12131, "is_delete": false, "file_type": 1, "original_file_name": "FX008FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510caf80e1104698b384aa1e79ecc945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510caf80e1104698b384aa1e79ecc945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/510caf80e1104698b384aa1e79ecc945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/510caf80e1104698b384aa1e79ecc945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/510caf80e1104698b384aa1e79ecc945.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PW20Z7jWySwZdO1x2d2icQbjuSg=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:15:59.997087+00 2025-12-09 10:15:59.997095+00 20899 DM2257#香芋紫L SPMX-20240815316149 \N \N \N 1 \N [{"file_id": "a6ad436a-6ba4-4b41-94fc-b4a14c58dc21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f1960ad7ef24491b87027fc8cd94d1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f1960ad7ef24491b87027fc8cd94d1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f1960ad7ef24491b87027fc8cd94d1a.jpg", "file_size": 16620, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1960ad7ef24491b87027fc8cd94d1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1960ad7ef24491b87027fc8cd94d1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f1960ad7ef24491b87027fc8cd94d1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f1960ad7ef24491b87027fc8cd94d1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f1960ad7ef24491b87027fc8cd94d1a.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lamFkDjWfCaPpVgn-QCtvwgNgN0=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.000716+00 2025-12-09 10:16:00.000723+00 20900 HXF009FW#VS-D3 SPMX-20240815316144 \N \N \N 1 \N [{"file_id": "8c4eb683-cdeb-4f04-9028-0952c49b59cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf03a6a8262a4744987d3f3fe2b7ba33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf03a6a8262a4744987d3f3fe2b7ba33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf03a6a8262a4744987d3f3fe2b7ba33.jpg", "file_size": 17273, "is_delete": false, "file_type": 1, "original_file_name": "HXF009FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf03a6a8262a4744987d3f3fe2b7ba33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf03a6a8262a4744987d3f3fe2b7ba33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf03a6a8262a4744987d3f3fe2b7ba33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf03a6a8262a4744987d3f3fe2b7ba33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf03a6a8262a4744987d3f3fe2b7ba33.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZCVRD2X8Br2R9WwnPnMLbxte1nA=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.004475+00 2025-12-09 10:16:00.004481+00 20901 CH326FWE#鳄鱼头XL SPMX-20240815316143 \N \N \N 1 \N [{"file_id": "ef7d830e-c149-4bdd-81eb-d16351f2ee64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8bdb0d143b34a009e56933c798e8e19.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8bdb0d143b34a009e56933c798e8e19.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8bdb0d143b34a009e56933c798e8e19.jpg", "file_size": 10445, "is_delete": false, "file_type": 1, "original_file_name": "CH326FWE#鳄鱼头XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bdb0d143b34a009e56933c798e8e19.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bdb0d143b34a009e56933c798e8e19.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bdb0d143b34a009e56933c798e8e19.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8bdb0d143b34a009e56933c798e8e19.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8bdb0d143b34a009e56933c798e8e19.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yHCAHHwqLlf-lK9cgKuwFZc-CT0=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.007962+00 2025-12-09 10:16:00.007967+00 20902 LZ1422#童装T3号色 SPMX-20240815316147 \N \N \N 1 \N [{"file_id": "2f273d0f-4a65-4e9c-a93a-81441eabad05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c9894975b5743c08a9e1667ae07937d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c9894975b5743c08a9e1667ae07937d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c9894975b5743c08a9e1667ae07937d.jpg", "file_size": 25787, "is_delete": false, "file_type": 1, "original_file_name": "LZ1422#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894975b5743c08a9e1667ae07937d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894975b5743c08a9e1667ae07937d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c9894975b5743c08a9e1667ae07937d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c9894975b5743c08a9e1667ae07937d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c9894975b5743c08a9e1667ae07937d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9jOl1NxUwGjW9ZIM0UXPvw-P4oc=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.011131+00 2025-12-09 10:16:00.011136+00 20903 LJH84133#绿色 SPMX-20240815316142 \N \N \N 1 \N [{"file_id": "844bbe41-994b-4128-9651-cbc79da07674", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4c73720dcee4b15b0fd1b37f20f1680.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4c73720dcee4b15b0fd1b37f20f1680.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4c73720dcee4b15b0fd1b37f20f1680.jpg", "file_size": 51736, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c73720dcee4b15b0fd1b37f20f1680.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c73720dcee4b15b0fd1b37f20f1680.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4c73720dcee4b15b0fd1b37f20f1680.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4c73720dcee4b15b0fd1b37f20f1680.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4c73720dcee4b15b0fd1b37f20f1680.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cm3pj55zB6XTaaMC7HR1rHDfvdM=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.014255+00 2025-12-09 10:16:00.01426+00 20904 88380FWF#A黑色42码 SPMX-20240815316141 \N \N \N 1 \N [{"file_id": "c44c3351-4d2d-4356-99a6-2d66f1ff4a00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc808fbcb80843788daa0b9a5d0b0a6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc808fbcb80843788daa0b9a5d0b0a6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc808fbcb80843788daa0b9a5d0b0a6f.jpg", "file_size": 22883, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A黑色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc808fbcb80843788daa0b9a5d0b0a6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc808fbcb80843788daa0b9a5d0b0a6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc808fbcb80843788daa0b9a5d0b0a6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc808fbcb80843788daa0b9a5d0b0a6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc808fbcb80843788daa0b9a5d0b0a6f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cpCEgxpaWrGSgoNAP4wonv9ZC3s=", "createTime": "2024-08-15 15:09:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.017361+00 2025-12-09 10:16:00.017365+00 20905 JY-AD-219#6号白色 SPMX-20240815316148 \N \N \N 1 \N [{"file_id": "fe8d2e44-fc5e-4868-a475-658df16bc7c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6d75b6390814aa391c99fd4f382cd9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6d75b6390814aa391c99fd4f382cd9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6d75b6390814aa391c99fd4f382cd9e.jpg", "file_size": 14306, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-219#6号白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d75b6390814aa391c99fd4f382cd9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d75b6390814aa391c99fd4f382cd9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6d75b6390814aa391c99fd4f382cd9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6d75b6390814aa391c99fd4f382cd9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6d75b6390814aa391c99fd4f382cd9e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqAzKKG-X-oQ8dENVlzMm93-z6s=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.020875+00 2025-12-09 10:16:00.020884+00 20906 24077#-5-B-中 SPMX-20240815316146 \N \N \N 1 \N [{"file_id": "135fa025-6cc2-4311-bffe-f5125660a549", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c1bddb37a26e41e1bb11e8a2d26be834.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c1bddb37a26e41e1bb11e8a2d26be834.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c1bddb37a26e41e1bb11e8a2d26be834.jpg", "file_size": 49968, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-B-中.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bddb37a26e41e1bb11e8a2d26be834.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bddb37a26e41e1bb11e8a2d26be834.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c1bddb37a26e41e1bb11e8a2d26be834.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c1bddb37a26e41e1bb11e8a2d26be834.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c1bddb37a26e41e1bb11e8a2d26be834.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-_lVePHsRAGnABB3FXeeaKsMvQ=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.02427+00 2025-12-09 10:16:00.024276+00 20907 88380FWF#A黑色46码 SPMX-20240815316163 \N \N \N 1 \N [{"file_id": "177a272a-d483-4f0f-8706-bc19d2200f3e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e29ea57843924ffa9e01d487cae09a17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e29ea57843924ffa9e01d487cae09a17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e29ea57843924ffa9e01d487cae09a17.jpg", "file_size": 23561, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A黑色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ea57843924ffa9e01d487cae09a17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ea57843924ffa9e01d487cae09a17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29ea57843924ffa9e01d487cae09a17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e29ea57843924ffa9e01d487cae09a17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e29ea57843924ffa9e01d487cae09a17.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ZLowPrjdNzHg51VIELgOZN7i3w=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.027768+00 2025-12-09 10:16:00.02778+00 20908 1268FWE#杏色改3XL SPMX-20240815316164 \N \N \N 1 \N [{"file_id": "cef76453-23ac-41e2-a4fd-03538786eb17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d6ac0eae0e24dbe8282621364d04567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d6ac0eae0e24dbe8282621364d04567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d6ac0eae0e24dbe8282621364d04567.jpg", "file_size": 15620, "is_delete": false, "file_type": 1, "original_file_name": "1268FWE#杏色改3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6ac0eae0e24dbe8282621364d04567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6ac0eae0e24dbe8282621364d04567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6ac0eae0e24dbe8282621364d04567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d6ac0eae0e24dbe8282621364d04567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d6ac0eae0e24dbe8282621364d04567.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxFFM9uJjNutl_ndWpbKUm6IWWA=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.031269+00 2025-12-09 10:16:00.031276+00 20909 88380FWF#A黑色44码 SPMX-20240815316152 \N \N \N 1 \N [{"file_id": "10b09436-1821-498a-bcb7-808fb4fc190a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "740ebabde9a545adbd860d5a6999bdd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "740ebabde9a545adbd860d5a6999bdd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "740ebabde9a545adbd860d5a6999bdd0.jpg", "file_size": 23062, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A黑色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740ebabde9a545adbd860d5a6999bdd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740ebabde9a545adbd860d5a6999bdd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/740ebabde9a545adbd860d5a6999bdd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/740ebabde9a545adbd860d5a6999bdd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/740ebabde9a545adbd860d5a6999bdd0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kfOYC05iHkocLT4cL452zW-0h7Q=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.034696+00 2025-12-09 10:16:00.034707+00 20910 LZ1422#童装T4号色 SPMX-20240815316154 \N \N \N 1 \N [{"file_id": "b570d02a-5e1c-4d84-86e8-cffd041fd662", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebcb3bb75b504fbab7e3bb22d7714436.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebcb3bb75b504fbab7e3bb22d7714436.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebcb3bb75b504fbab7e3bb22d7714436.jpg", "file_size": 25438, "is_delete": false, "file_type": 1, "original_file_name": "LZ1422#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebcb3bb75b504fbab7e3bb22d7714436.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebcb3bb75b504fbab7e3bb22d7714436.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebcb3bb75b504fbab7e3bb22d7714436.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebcb3bb75b504fbab7e3bb22d7714436.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebcb3bb75b504fbab7e3bb22d7714436.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yvvs4eTDN5LRsufS3EyodNPWHso=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.038135+00 2025-12-09 10:16:00.038142+00 20911 CH590FWE#斗牛2XL SPMX-20240815316156 \N \N \N 1 \N [{"file_id": "f509f629-d76a-4ec5-88e6-04e2c8b16a1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e980962f984a4058904e7f54bebaa598.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e980962f984a4058904e7f54bebaa598.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e980962f984a4058904e7f54bebaa598.jpg", "file_size": 12387, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e980962f984a4058904e7f54bebaa598.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e980962f984a4058904e7f54bebaa598.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e980962f984a4058904e7f54bebaa598.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e980962f984a4058904e7f54bebaa598.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e980962f984a4058904e7f54bebaa598.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:md8CQuK-dlumwICwtD8LbxC713o=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.041569+00 2025-12-09 10:16:00.041575+00 20912 0030-1FWF#白色 SPMX-20240815316161 \N \N \N 1 \N [{"file_id": "49538c8e-c8a2-4b89-ac47-301c2ebb29b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2f8cefe0d84422287ab20c56041e022.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2f8cefe0d84422287ab20c56041e022.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2f8cefe0d84422287ab20c56041e022.jpg", "file_size": 16754, "is_delete": false, "file_type": 1, "original_file_name": "0030-1FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f8cefe0d84422287ab20c56041e022.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f8cefe0d84422287ab20c56041e022.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2f8cefe0d84422287ab20c56041e022.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2f8cefe0d84422287ab20c56041e022.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2f8cefe0d84422287ab20c56041e022.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2Xe9L0mycKe6cRgaY_MPVf_wWU=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.045085+00 2025-12-09 10:16:00.045092+00 20913 0030-1FWE#VS-D3龙潭调色 SPMX-20240815316150 \N \N \N 1 \N [{"file_id": "d0ba9975-c7bd-44a6-99f6-dfef4e54c73f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ba2a10615d3490588d0dec50a3eee7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ba2a10615d3490588d0dec50a3eee7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ba2a10615d3490588d0dec50a3eee7b.jpg", "file_size": 12857, "is_delete": false, "file_type": 1, "original_file_name": "0030-1FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba2a10615d3490588d0dec50a3eee7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba2a10615d3490588d0dec50a3eee7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ba2a10615d3490588d0dec50a3eee7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ba2a10615d3490588d0dec50a3eee7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ba2a10615d3490588d0dec50a3eee7b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixvMr9D1GlckJ50bgo75ZHUjfQI=", "createTime": "2024-08-15 15:09:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.048949+00 2025-12-09 10:16:00.048956+00 20914 HXF010# SPMX-20240815316153 \N \N \N 1 \N [{"file_id": "a8086726-c115-4a33-ad0f-e58a716606c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f966d874975466d86c362c9184c0421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f966d874975466d86c362c9184c0421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f966d874975466d86c362c9184c0421.jpg", "file_size": 27037, "is_delete": false, "file_type": 1, "original_file_name": "HXF010#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f966d874975466d86c362c9184c0421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f966d874975466d86c362c9184c0421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f966d874975466d86c362c9184c0421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f966d874975466d86c362c9184c0421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f966d874975466d86c362c9184c0421.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:db-ZnpvCVYVxR16CwVFSVxfNLcI=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.052793+00 2025-12-09 10:16:00.052799+00 20915 DM2257#香芋紫M SPMX-20240815316159 \N \N \N 1 \N [{"file_id": "6cec8f17-0ed7-4972-89e5-a8874f0a7571", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69db2640129f4f8d937f9559755c484c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69db2640129f4f8d937f9559755c484c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69db2640129f4f8d937f9559755c484c.jpg", "file_size": 16798, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69db2640129f4f8d937f9559755c484c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69db2640129f4f8d937f9559755c484c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69db2640129f4f8d937f9559755c484c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69db2640129f4f8d937f9559755c484c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69db2640129f4f8d937f9559755c484c.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cGY3-pvvJEzexLp8lPZy6ikmoYs=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.056723+00 2025-12-09 10:16:00.056728+00 20916 JY-AD-249#1号白底蓝花 SPMX-20240815316158 \N \N \N 1 \N [{"file_id": "a14b0266-9e48-4c33-9b23-284cef1f40e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg", "file_size": 48974, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-249#1号白底蓝花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dd29ffedc0d4d6bbdc6f8f809e9952e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YTaU-TYtkgf6_aoSzgS7Zk-q9Rg=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.06056+00 2025-12-09 10:16:00.060565+00 20917 HXF010FW#VS-D3 SPMX-20240815316162 \N \N \N 1 \N [{"file_id": "dd9d0ae4-32b6-4753-a3ca-d42e439f7fa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b51a1806fe841948f462361837e4b76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b51a1806fe841948f462361837e4b76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b51a1806fe841948f462361837e4b76.jpg", "file_size": 16578, "is_delete": false, "file_type": 1, "original_file_name": "HXF010FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51a1806fe841948f462361837e4b76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51a1806fe841948f462361837e4b76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b51a1806fe841948f462361837e4b76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b51a1806fe841948f462361837e4b76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b51a1806fe841948f462361837e4b76.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M3ouuOkit-iRHHY-yCvc5eMFfyU=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.064313+00 2025-12-09 10:16:00.064319+00 20918 LJH84133#蓝我 SPMX-20240815316160 \N \N \N 1 \N [{"file_id": "8cd8e93e-d86b-4c5c-85b6-e354bffae5b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf4bd298412143f19f1d25d82125c76d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf4bd298412143f19f1d25d82125c76d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf4bd298412143f19f1d25d82125c76d.jpg", "file_size": 53200, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#蓝我.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4bd298412143f19f1d25d82125c76d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4bd298412143f19f1d25d82125c76d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf4bd298412143f19f1d25d82125c76d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf4bd298412143f19f1d25d82125c76d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf4bd298412143f19f1d25d82125c76d.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4hZg0210FkGCF1sCpGRu9qc3d48=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.067989+00 2025-12-09 10:16:00.067995+00 20919 1268#VS-D3 SPMX-20240815316151 \N \N \N 1 \N [{"file_id": "da2f0bd9-8127-4245-b97b-42462e3319b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea9b77e4663e4b09b748a7a19eca9f82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea9b77e4663e4b09b748a7a19eca9f82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea9b77e4663e4b09b748a7a19eca9f82.jpg", "file_size": 17768, "is_delete": false, "file_type": 1, "original_file_name": "1268#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9b77e4663e4b09b748a7a19eca9f82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9b77e4663e4b09b748a7a19eca9f82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea9b77e4663e4b09b748a7a19eca9f82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea9b77e4663e4b09b748a7a19eca9f82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea9b77e4663e4b09b748a7a19eca9f82.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_0IAb6qGnjJXgja3bIQGH-0yVos=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.07155+00 2025-12-09 10:16:00.071556+00 20920 24077#-5-B SPMX-20240815316157 \N \N \N 1 \N [{"file_id": "efc6eca5-7b21-4037-ac62-8621856a321f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c086b2329aab47a3a76d5eba03e3da50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c086b2329aab47a3a76d5eba03e3da50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c086b2329aab47a3a76d5eba03e3da50.jpg", "file_size": 51916, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c086b2329aab47a3a76d5eba03e3da50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c086b2329aab47a3a76d5eba03e3da50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c086b2329aab47a3a76d5eba03e3da50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c086b2329aab47a3a76d5eba03e3da50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c086b2329aab47a3a76d5eba03e3da50.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vG6qhgH6zNqmSpG1wS4vpBEZTY=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.074999+00 2025-12-09 10:16:00.075005+00 20921 FX009#E SPMX-20240815316155 \N \N \N 1 \N [{"file_id": "50816ad5-a904-41e7-ab5e-948be96aeb72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb676ee897134e668f79327343b807e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb676ee897134e668f79327343b807e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb676ee897134e668f79327343b807e8.jpg", "file_size": 9796, "is_delete": false, "file_type": 1, "original_file_name": "FX009#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb676ee897134e668f79327343b807e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb676ee897134e668f79327343b807e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb676ee897134e668f79327343b807e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb676ee897134e668f79327343b807e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb676ee897134e668f79327343b807e8.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ae3G-g7smLjlOxXv15bBCkcG68g=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.078103+00 2025-12-09 10:16:00.078108+00 20922 DM2257 SPMX-20240815316179 \N \N \N 1 \N [{"file_id": "5863650e-c4e0-4ca0-a135-5049070ab624", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0adf1bc41ce74f7d8453fa3a40971b5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0adf1bc41ce74f7d8453fa3a40971b5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0adf1bc41ce74f7d8453fa3a40971b5f.jpg", "file_size": 15340, "is_delete": false, "file_type": 1, "original_file_name": "DM2257.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adf1bc41ce74f7d8453fa3a40971b5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adf1bc41ce74f7d8453fa3a40971b5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0adf1bc41ce74f7d8453fa3a40971b5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0adf1bc41ce74f7d8453fa3a40971b5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0adf1bc41ce74f7d8453fa3a40971b5f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mhuD3h0-mCTlMa5qWbrG8PSyjqg=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.081867+00 2025-12-09 10:16:00.081874+00 20923 88380FWF#A黑色48码 SPMX-20240815316174 \N \N \N 1 \N [{"file_id": "a719a7ef-d6d2-4d15-ba15-6a813689a92e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9ea0a9af3284cf1bb5dee2623f55ad9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9ea0a9af3284cf1bb5dee2623f55ad9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9ea0a9af3284cf1bb5dee2623f55ad9.jpg", "file_size": 23863, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A黑色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ea0a9af3284cf1bb5dee2623f55ad9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ea0a9af3284cf1bb5dee2623f55ad9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9ea0a9af3284cf1bb5dee2623f55ad9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9ea0a9af3284cf1bb5dee2623f55ad9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9ea0a9af3284cf1bb5dee2623f55ad9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KU6Dr9I5N7pk3mW6OnnRTW1sD-o=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.085766+00 2025-12-09 10:16:00.085772+00 20924 CH590FWE#斗牛4XL SPMX-20240815316178 \N \N \N 1 \N [{"file_id": "8700ae93-e373-45cd-9b48-86539b1bba57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2f7dcd141d6494c8f5cb0d987928488.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2f7dcd141d6494c8f5cb0d987928488.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2f7dcd141d6494c8f5cb0d987928488.jpg", "file_size": 12377, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f7dcd141d6494c8f5cb0d987928488.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f7dcd141d6494c8f5cb0d987928488.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2f7dcd141d6494c8f5cb0d987928488.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2f7dcd141d6494c8f5cb0d987928488.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2f7dcd141d6494c8f5cb0d987928488.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mvABYSbNq3l7XCAPBYZF_Q9FUc0=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.089708+00 2025-12-09 10:16:00.089716+00 20925 LJH84133#蓝色 SPMX-20240815316172 \N \N \N 1 \N [{"file_id": "65838b93-a530-4c80-ab23-4a9b3fc64c3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e60ac033e50a45efab2a6441973451cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e60ac033e50a45efab2a6441973451cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e60ac033e50a45efab2a6441973451cf.jpg", "file_size": 53200, "is_delete": false, "file_type": 1, "original_file_name": "LJH84133#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60ac033e50a45efab2a6441973451cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60ac033e50a45efab2a6441973451cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e60ac033e50a45efab2a6441973451cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e60ac033e50a45efab2a6441973451cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e60ac033e50a45efab2a6441973451cf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35X4FvrnT7-Od6QtosXd7RbyRvo=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.093474+00 2025-12-09 10:16:00.09348+00 20926 FX009#H SPMX-20240815316166 \N \N \N 1 \N [{"file_id": "d0de3b84-a13a-44c8-9774-9f6aec19e1d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "506e973877d045ecb512176ea151d10e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "506e973877d045ecb512176ea151d10e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "506e973877d045ecb512176ea151d10e.jpg", "file_size": 9823, "is_delete": false, "file_type": 1, "original_file_name": "FX009#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506e973877d045ecb512176ea151d10e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506e973877d045ecb512176ea151d10e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506e973877d045ecb512176ea151d10e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/506e973877d045ecb512176ea151d10e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/506e973877d045ecb512176ea151d10e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6jeJ7Nd6AOAv3F29qcAFu_n8qCM=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.097107+00 2025-12-09 10:16:00.097114+00 20927 LZ1422#童装T5号色 SPMX-20240815316165 \N \N \N 1 \N [{"file_id": "0c7b7bb0-bc04-4a4f-8fd5-2fd6b883c612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f57b217af164ce0ad3c8d856665c9c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f57b217af164ce0ad3c8d856665c9c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f57b217af164ce0ad3c8d856665c9c5.jpg", "file_size": 23080, "is_delete": false, "file_type": 1, "original_file_name": "LZ1422#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f57b217af164ce0ad3c8d856665c9c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f57b217af164ce0ad3c8d856665c9c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f57b217af164ce0ad3c8d856665c9c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f57b217af164ce0ad3c8d856665c9c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f57b217af164ce0ad3c8d856665c9c5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hl_1z28zEtWMCASW3j09JwfIiU=", "createTime": "2024-08-15 15:09:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.100713+00 2025-12-09 10:16:00.100719+00 20928 HXF011# SPMX-20240815316173 \N \N \N 1 \N [{"file_id": "52a728bf-edfa-4079-81b3-4978bbe2e2ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfd1552acb064fc7be5e8965792d37ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfd1552acb064fc7be5e8965792d37ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfd1552acb064fc7be5e8965792d37ed.jpg", "file_size": 11515, "is_delete": false, "file_type": 1, "original_file_name": "HXF011#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd1552acb064fc7be5e8965792d37ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd1552acb064fc7be5e8965792d37ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfd1552acb064fc7be5e8965792d37ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfd1552acb064fc7be5e8965792d37ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfd1552acb064fc7be5e8965792d37ed.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9tEkJ57XdlFHcTKtC89as_Au204=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.104309+00 2025-12-09 10:16:00.104316+00 20929 JY-AD-249#3号白底墨绿花 SPMX-20240815316171 \N \N \N 1 \N [{"file_id": "58f4e201-2d42-412d-801a-815c1e7b067f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "289386baab4045e49476e204e7146444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "289386baab4045e49476e204e7146444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "289386baab4045e49476e204e7146444.jpg", "file_size": 47364, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-249#3号白底墨绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289386baab4045e49476e204e7146444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289386baab4045e49476e204e7146444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289386baab4045e49476e204e7146444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/289386baab4045e49476e204e7146444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/289386baab4045e49476e204e7146444.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gx2A1QW6e0c0sNzatMbon_LWLiw=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.107924+00 2025-12-09 10:16:00.107931+00 20930 1268FWE#杏色改XL SPMX-20240815316175 \N \N \N 1 \N [{"file_id": "2a8286f0-d390-4f92-88e3-560f8691c30a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca3da526bb424b1abc778aadb619ec4f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca3da526bb424b1abc778aadb619ec4f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca3da526bb424b1abc778aadb619ec4f.jpg", "file_size": 15807, "is_delete": false, "file_type": 1, "original_file_name": "1268FWE#杏色改XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3da526bb424b1abc778aadb619ec4f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3da526bb424b1abc778aadb619ec4f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca3da526bb424b1abc778aadb619ec4f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca3da526bb424b1abc778aadb619ec4f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca3da526bb424b1abc778aadb619ec4f.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPHzT5EkAC_xHSxmACdyIgt7TTU=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.11154+00 2025-12-09 10:16:00.111547+00 20931 FX009#VS-D3 SPMX-20240815316176 \N \N \N 1 \N [{"file_id": "a8512fdb-41a8-4461-99fe-5a3bc0f6dd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03d23deb36a94fca8f6c28b94a07fadd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03d23deb36a94fca8f6c28b94a07fadd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03d23deb36a94fca8f6c28b94a07fadd.jpg", "file_size": 19869, "is_delete": false, "file_type": 1, "original_file_name": "FX009#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03d23deb36a94fca8f6c28b94a07fadd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03d23deb36a94fca8f6c28b94a07fadd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03d23deb36a94fca8f6c28b94a07fadd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03d23deb36a94fca8f6c28b94a07fadd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03d23deb36a94fca8f6c28b94a07fadd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ltibgWUX2_uwuNp3iuUwqqIYMCc=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.115113+00 2025-12-09 10:16:00.115119+00 20932 CH590FWE#斗牛3XL SPMX-20240815316167 \N \N \N 1 \N [{"file_id": "4d2e339c-25f3-4f1f-80cb-847c503a2dd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b30f2266bb94b908b18bd8703e7220e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b30f2266bb94b908b18bd8703e7220e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b30f2266bb94b908b18bd8703e7220e.jpg", "file_size": 12674, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b30f2266bb94b908b18bd8703e7220e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b30f2266bb94b908b18bd8703e7220e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b30f2266bb94b908b18bd8703e7220e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b30f2266bb94b908b18bd8703e7220e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b30f2266bb94b908b18bd8703e7220e.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:svKkReK6FhlKrcI4zHg-SmmM88g=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.118736+00 2025-12-09 10:16:00.118742+00 20933 DM2257#香芋紫XL SPMX-20240815316168 \N \N \N 1 \N [{"file_id": "fb3a8b8a-7eb4-4b91-aeac-839894df67f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "045302d7762c4f7ea4147933dfb75831.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "045302d7762c4f7ea4147933dfb75831.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "045302d7762c4f7ea4147933dfb75831.jpg", "file_size": 16818, "is_delete": false, "file_type": 1, "original_file_name": "DM2257#香芋紫XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045302d7762c4f7ea4147933dfb75831.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045302d7762c4f7ea4147933dfb75831.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/045302d7762c4f7ea4147933dfb75831.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/045302d7762c4f7ea4147933dfb75831.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/045302d7762c4f7ea4147933dfb75831.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vJ6gP9kzvFEMXKlu9FPg1GDyPFM=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.12235+00 2025-12-09 10:16:00.122357+00 20934 24077#-5-C#-左 SPMX-20240815316169 \N \N \N 1 \N [{"file_id": "602aad8b-87fa-4f76-a33e-537d7efa7adf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ffffd85cd1c4afc934961c3fcdc5440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ffffd85cd1c4afc934961c3fcdc5440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ffffd85cd1c4afc934961c3fcdc5440.jpg", "file_size": 40224, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-C#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffffd85cd1c4afc934961c3fcdc5440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffffd85cd1c4afc934961c3fcdc5440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ffffd85cd1c4afc934961c3fcdc5440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ffffd85cd1c4afc934961c3fcdc5440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ffffd85cd1c4afc934961c3fcdc5440.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-T1SfWgZMfEAcmwoXubNW7fCoQ=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.125954+00 2025-12-09 10:16:00.125959+00 20935 0030-1FWF#蓝色 SPMX-20240815316170 \N \N \N 1 \N [{"file_id": "0bc54984-b8a5-4e34-a764-0028e70ec0b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9719a733ce7a4f0a988e9370765139ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9719a733ce7a4f0a988e9370765139ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9719a733ce7a4f0a988e9370765139ac.jpg", "file_size": 15668, "is_delete": false, "file_type": 1, "original_file_name": "0030-1FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9719a733ce7a4f0a988e9370765139ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9719a733ce7a4f0a988e9370765139ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9719a733ce7a4f0a988e9370765139ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9719a733ce7a4f0a988e9370765139ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9719a733ce7a4f0a988e9370765139ac.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Og7JmRSVhrs9yoNLuGMg0upUUi0=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.129563+00 2025-12-09 10:16:00.12957+00 20936 JY-AD-249#4号白底玫红花 SPMX-20240815316180 \N \N \N 1 \N [{"file_id": "3be3d88a-6cb8-493c-a7e9-6c96b447b320", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9407c015bbd24cb5ae7f2a1e4f7ca697.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9407c015bbd24cb5ae7f2a1e4f7ca697.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9407c015bbd24cb5ae7f2a1e4f7ca697.jpg", "file_size": 45736, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-249#4号白底玫红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9407c015bbd24cb5ae7f2a1e4f7ca697.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9407c015bbd24cb5ae7f2a1e4f7ca697.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9407c015bbd24cb5ae7f2a1e4f7ca697.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9407c015bbd24cb5ae7f2a1e4f7ca697.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9407c015bbd24cb5ae7f2a1e4f7ca697.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nsIZo4L8c2-lNHfnugiCRVziYys=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.133158+00 2025-12-09 10:16:00.133163+00 20937 24077#-5-C# SPMX-20240815316181 \N \N \N 1 \N [{"file_id": "af99e7a5-38ef-444b-ba06-df6ad27fa1a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0fc9208263b4d27af2c281a9adac55b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0fc9208263b4d27af2c281a9adac55b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0fc9208263b4d27af2c281a9adac55b.jpg", "file_size": 41740, "is_delete": false, "file_type": 1, "original_file_name": "24077#-5-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fc9208263b4d27af2c281a9adac55b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fc9208263b4d27af2c281a9adac55b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0fc9208263b4d27af2c281a9adac55b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0fc9208263b4d27af2c281a9adac55b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0fc9208263b4d27af2c281a9adac55b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFDU4zqzPSZXGfceM95KftW_MYw=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.136709+00 2025-12-09 10:16:00.13672+00 20938 0030-2#WJC22 SPMX-20240815316182 \N \N \N 1 \N [{"file_id": "6adbc557-d9d4-40a4-8300-79ce0db87a8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d57f9775eed543a39387c0e83218d5c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d57f9775eed543a39387c0e83218d5c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d57f9775eed543a39387c0e83218d5c5.jpg", "file_size": 18322, "is_delete": false, "file_type": 1, "original_file_name": "0030-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57f9775eed543a39387c0e83218d5c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57f9775eed543a39387c0e83218d5c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d57f9775eed543a39387c0e83218d5c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d57f9775eed543a39387c0e83218d5c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d57f9775eed543a39387c0e83218d5c5.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8fxGnZj2x-83ry0EsvqQFbIVOJ4=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.140315+00 2025-12-09 10:16:00.140321+00 20939 LZ1423#大人T1号色 SPMX-20240815316177 \N \N \N 1 \N [{"file_id": "f3fae818-c6d5-4077-b732-70a2d9d78351", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5ae31f149284780a19b4bdaa349c1b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5ae31f149284780a19b4bdaa349c1b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5ae31f149284780a19b4bdaa349c1b6.jpg", "file_size": 18980, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ae31f149284780a19b4bdaa349c1b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ae31f149284780a19b4bdaa349c1b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5ae31f149284780a19b4bdaa349c1b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5ae31f149284780a19b4bdaa349c1b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5ae31f149284780a19b4bdaa349c1b6.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aipoM1J-zi0LVYGMlfR9BAaIkro=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.143929+00 2025-12-09 10:16:00.14394+00 20940 LJH84165#彩蓝 SPMX-20240815316183 \N \N \N 1 \N [{"file_id": "536466b5-4455-4b4b-9f2f-dcfdaf2df56e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0357287b81c1488d82b3d291e8def73b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0357287b81c1488d82b3d291e8def73b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0357287b81c1488d82b3d291e8def73b.jpg", "file_size": 49213, "is_delete": false, "file_type": 1, "original_file_name": "LJH84165#彩蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0357287b81c1488d82b3d291e8def73b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0357287b81c1488d82b3d291e8def73b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0357287b81c1488d82b3d291e8def73b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0357287b81c1488d82b3d291e8def73b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0357287b81c1488d82b3d291e8def73b.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQOdMZ4VE39idbamZgJE0TPx0jU=", "createTime": "2024-08-15 15:09:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.147531+00 2025-12-09 10:16:00.147538+00 20941 FX009#杏色 SPMX-20240815316187 \N \N \N 1 \N [{"file_id": "1740e2c5-394e-414a-a448-63fbea631712", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15bb37ef9c2474c85588aba1cc191fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15bb37ef9c2474c85588aba1cc191fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15bb37ef9c2474c85588aba1cc191fa.jpg", "file_size": 8032, "is_delete": false, "file_type": 1, "original_file_name": "FX009#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15bb37ef9c2474c85588aba1cc191fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15bb37ef9c2474c85588aba1cc191fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15bb37ef9c2474c85588aba1cc191fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15bb37ef9c2474c85588aba1cc191fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15bb37ef9c2474c85588aba1cc191fa.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hesMIEdCSEpgmdp-TSMQC9qMr3g=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.1511+00 2025-12-09 10:16:00.151106+00 20942 CH590FWE#斗牛5XL SPMX-20240815316188 \N \N \N 1 \N [{"file_id": "58867a2a-f2a5-4d13-9200-7eceba824bdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b15d38854bc4fabb034d649fdbae438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b15d38854bc4fabb034d649fdbae438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b15d38854bc4fabb034d649fdbae438.jpg", "file_size": 13060, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b15d38854bc4fabb034d649fdbae438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b15d38854bc4fabb034d649fdbae438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b15d38854bc4fabb034d649fdbae438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b15d38854bc4fabb034d649fdbae438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b15d38854bc4fabb034d649fdbae438.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0I1gq8PLpo3h1rBdlcTZK4Yer0k=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.15467+00 2025-12-09 10:16:00.154676+00 20943 JY-AD-249#5号白底黑花 SPMX-20240815316190 \N \N \N 1 \N [{"file_id": "47b2ed7d-13e8-4563-9290-b3b508cc213a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26663235f13b4975a59e5b0e9deea762.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26663235f13b4975a59e5b0e9deea762.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26663235f13b4975a59e5b0e9deea762.jpg", "file_size": 41618, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-249#5号白底黑花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26663235f13b4975a59e5b0e9deea762.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26663235f13b4975a59e5b0e9deea762.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26663235f13b4975a59e5b0e9deea762.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26663235f13b4975a59e5b0e9deea762.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26663235f13b4975a59e5b0e9deea762.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:943_wlJBygtjhR6fMB9dd9c8XG0=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.158291+00 2025-12-09 10:16:00.158297+00 20944 DM8182#RC23 SPMX-20240815316192 \N \N \N 1 \N [{"file_id": "60890a7f-8c47-4c75-bb1c-7a126a613a03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4223e10e03ed49d3adc9d159fbec3ecf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4223e10e03ed49d3adc9d159fbec3ecf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4223e10e03ed49d3adc9d159fbec3ecf.jpg", "file_size": 20690, "is_delete": false, "file_type": 1, "original_file_name": "DM8182#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4223e10e03ed49d3adc9d159fbec3ecf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4223e10e03ed49d3adc9d159fbec3ecf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4223e10e03ed49d3adc9d159fbec3ecf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4223e10e03ed49d3adc9d159fbec3ecf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4223e10e03ed49d3adc9d159fbec3ecf.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0m0MA-oJhscbKXQDWuZSVX5X2w=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.16188+00 2025-12-09 10:16:00.161887+00 20945 HXF012#VS-D3 SPMX-20240815316194 \N \N \N 1 \N [{"file_id": "25bb4e05-4ed2-46a4-8a07-fee0daf9f624", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "335471ee47fd4437a5f53316bc484fbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "335471ee47fd4437a5f53316bc484fbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "335471ee47fd4437a5f53316bc484fbb.jpg", "file_size": 18032, "is_delete": false, "file_type": 1, "original_file_name": "HXF012#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335471ee47fd4437a5f53316bc484fbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335471ee47fd4437a5f53316bc484fbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/335471ee47fd4437a5f53316bc484fbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/335471ee47fd4437a5f53316bc484fbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/335471ee47fd4437a5f53316bc484fbb.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S7InEcSCt_mUv2x1Zb6s7Tqn9FE=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.165421+00 2025-12-09 10:16:00.165427+00 20946 LJH84165#白色 SPMX-20240815316193 \N \N \N 1 \N [{"file_id": "d110e70c-504c-4b68-a921-0543cd0061ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fadbf110cdfe426e92a56462cfc1b5e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fadbf110cdfe426e92a56462cfc1b5e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fadbf110cdfe426e92a56462cfc1b5e0.jpg", "file_size": 50087, "is_delete": false, "file_type": 1, "original_file_name": "LJH84165#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadbf110cdfe426e92a56462cfc1b5e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadbf110cdfe426e92a56462cfc1b5e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fadbf110cdfe426e92a56462cfc1b5e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fadbf110cdfe426e92a56462cfc1b5e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fadbf110cdfe426e92a56462cfc1b5e0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LVW0PgJbJ51_RpXBnybd262fsU0=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.169071+00 2025-12-09 10:16:00.169077+00 20947 1268FWE#黑色改3XL SPMX-20240815316185 \N \N \N 1 \N [{"file_id": "d585d126-dbcd-4a55-b8fb-d147100eda20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76357b5c560c412987885dcc16b7e055.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76357b5c560c412987885dcc16b7e055.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76357b5c560c412987885dcc16b7e055.jpg", "file_size": 17849, "is_delete": false, "file_type": 1, "original_file_name": "1268FWE#黑色改3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76357b5c560c412987885dcc16b7e055.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76357b5c560c412987885dcc16b7e055.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76357b5c560c412987885dcc16b7e055.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76357b5c560c412987885dcc16b7e055.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76357b5c560c412987885dcc16b7e055.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2zN51dFwXNvYU8TXhDM9EFCRIpM=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.172658+00 2025-12-09 10:16:00.172665+00 20948 88380FWF#A黑色50码 SPMX-20240815316186 \N \N \N 1 \N [{"file_id": "ad650a3f-e952-4faa-a394-6ba3f2f83b17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3252725618614d0aba0ed8cecf4150d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3252725618614d0aba0ed8cecf4150d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3252725618614d0aba0ed8cecf4150d2.jpg", "file_size": 24541, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#A黑色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3252725618614d0aba0ed8cecf4150d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3252725618614d0aba0ed8cecf4150d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3252725618614d0aba0ed8cecf4150d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3252725618614d0aba0ed8cecf4150d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3252725618614d0aba0ed8cecf4150d2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5KBAIzOhkwaSYR10OXZmEzvn1hU=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.176259+00 2025-12-09 10:16:00.176265+00 20949 0030-2FWE#VS-D3番禺调色 SPMX-20240815316191 \N \N \N 1 \N [{"file_id": "658ad3b6-2087-403e-b5fc-ae3a993b67b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25279906c69242edaebcc6d0718a7bee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25279906c69242edaebcc6d0718a7bee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25279906c69242edaebcc6d0718a7bee.jpg", "file_size": 9788, "is_delete": false, "file_type": 1, "original_file_name": "0030-2FWE#VS-D3番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25279906c69242edaebcc6d0718a7bee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25279906c69242edaebcc6d0718a7bee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25279906c69242edaebcc6d0718a7bee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25279906c69242edaebcc6d0718a7bee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25279906c69242edaebcc6d0718a7bee.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PsAlpqp_QB1lYiFD8-1bylQKxJM=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.179841+00 2025-12-09 10:16:00.179847+00 20950 24077#-6-A# SPMX-20240815316195 \N \N \N 1 \N [{"file_id": "c07c7d70-0c20-4962-ba29-5f06a5136166", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c628290d7c10466cbf6e126f384a7c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c628290d7c10466cbf6e126f384a7c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c628290d7c10466cbf6e126f384a7c72.jpg", "file_size": 43668, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-A#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c628290d7c10466cbf6e126f384a7c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c628290d7c10466cbf6e126f384a7c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c628290d7c10466cbf6e126f384a7c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c628290d7c10466cbf6e126f384a7c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c628290d7c10466cbf6e126f384a7c72.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U6KJLmZ6TpmtkP_AhSTTLnc4xVU=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.183432+00 2025-12-09 10:16:00.183443+00 20951 HXF011FW#VS-D3 SPMX-20240815316184 \N \N \N 1 \N [{"file_id": "7724c4c4-7e37-479a-8b64-0895d3288bcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg", "file_size": 23290, "is_delete": false, "file_type": 1, "original_file_name": "HXF011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/907a6b3fe61147ceb8a1ed9e5daf1eaa.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KK3mcJI9PF-Zxbq2EWtLauZAVV8=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.187047+00 2025-12-09 10:16:00.187053+00 20952 LZ1423#大人T2号色 SPMX-20240815316189 \N \N \N 1 \N [{"file_id": "a04c887e-0d6b-4140-8bb6-45c70486177e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91616e832c564bfdac368123a8c0bbfd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91616e832c564bfdac368123a8c0bbfd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91616e832c564bfdac368123a8c0bbfd.jpg", "file_size": 19450, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91616e832c564bfdac368123a8c0bbfd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91616e832c564bfdac368123a8c0bbfd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91616e832c564bfdac368123a8c0bbfd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91616e832c564bfdac368123a8c0bbfd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91616e832c564bfdac368123a8c0bbfd.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QjazQXppsICOAdTJYdQRgvk6Lhg=", "createTime": "2024-08-15 15:09:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.190651+00 2025-12-09 10:16:00.190662+00 20953 LZ1423#大人T3号色 SPMX-20240815316196 \N \N \N 1 \N [{"file_id": "5f2cbefa-b904-42d2-9050-925b06bbbc07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fb0683765d147118c07bfb129630b75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fb0683765d147118c07bfb129630b75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fb0683765d147118c07bfb129630b75.jpg", "file_size": 18703, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb0683765d147118c07bfb129630b75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb0683765d147118c07bfb129630b75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb0683765d147118c07bfb129630b75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fb0683765d147118c07bfb129630b75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fb0683765d147118c07bfb129630b75.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Ds5KEVS5NbOrmnRhJAJwdT0uZ4=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.194237+00 2025-12-09 10:16:00.194243+00 20954 0030-2FWE#VS-D3龙潭调色 SPMX-20240815316204 \N \N \N 1 \N [{"file_id": "122fb29e-8466-4f09-a75d-3b0730b6794d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b3721b0d4a449e69de9e324911fcb35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b3721b0d4a449e69de9e324911fcb35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b3721b0d4a449e69de9e324911fcb35.jpg", "file_size": 9349, "is_delete": false, "file_type": 1, "original_file_name": "0030-2FWE#VS-D3龙潭调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3721b0d4a449e69de9e324911fcb35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3721b0d4a449e69de9e324911fcb35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b3721b0d4a449e69de9e324911fcb35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b3721b0d4a449e69de9e324911fcb35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b3721b0d4a449e69de9e324911fcb35.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1S830EbG_9p96HkAMSDnn99mhlk=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.19785+00 2025-12-09 10:16:00.197856+00 20955 FX009FW#VS-D3 SPMX-20240815316200 \N \N \N 1 \N [{"file_id": "ab32a7d9-8852-4a74-ba6d-ac48678ea4e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b13e7bd280b4e93a871960f02f829fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b13e7bd280b4e93a871960f02f829fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b13e7bd280b4e93a871960f02f829fc.jpg", "file_size": 12965, "is_delete": false, "file_type": 1, "original_file_name": "FX009FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b13e7bd280b4e93a871960f02f829fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b13e7bd280b4e93a871960f02f829fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b13e7bd280b4e93a871960f02f829fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b13e7bd280b4e93a871960f02f829fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b13e7bd280b4e93a871960f02f829fc.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gfcaObbcFMRgd8RuqNDss7-umz8=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.20144+00 2025-12-09 10:16:00.201447+00 20956 CH590FWE#斗牛L SPMX-20240815316205 \N \N \N 1 \N [{"file_id": "4c9670cb-4602-45f0-8fa5-13f18ddcefcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87bff749aa9b4bc79f73fdb1e106ebeb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87bff749aa9b4bc79f73fdb1e106ebeb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87bff749aa9b4bc79f73fdb1e106ebeb.jpg", "file_size": 11746, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bff749aa9b4bc79f73fdb1e106ebeb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bff749aa9b4bc79f73fdb1e106ebeb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87bff749aa9b4bc79f73fdb1e106ebeb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87bff749aa9b4bc79f73fdb1e106ebeb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87bff749aa9b4bc79f73fdb1e106ebeb.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_aADAso10acl05PzpG6sMEeEsO0=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.204955+00 2025-12-09 10:16:00.204961+00 20957 DM8185#1XL SPMX-20240815316203 \N \N \N 1 \N [{"file_id": "80670369-98ae-4187-bb42-747c2171393b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2beb31053a1a4a61a51e07670177f1b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2beb31053a1a4a61a51e07670177f1b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2beb31053a1a4a61a51e07670177f1b2.jpg", "file_size": 20361, "is_delete": false, "file_type": 1, "original_file_name": "DM8185#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb31053a1a4a61a51e07670177f1b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb31053a1a4a61a51e07670177f1b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2beb31053a1a4a61a51e07670177f1b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2beb31053a1a4a61a51e07670177f1b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2beb31053a1a4a61a51e07670177f1b2.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RUL_BDjDWYP5uDYpkwDiTGXPvRI=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.208523+00 2025-12-09 10:16:00.208528+00 20958 JY-AD-249#6号白底桔花 SPMX-20240815316197 \N \N \N 1 \N [{"file_id": "48a1e1a2-0c8f-49fc-918c-9e1606f18791", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59174212ae454c2daa196c3f552f84d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59174212ae454c2daa196c3f552f84d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59174212ae454c2daa196c3f552f84d9.jpg", "file_size": 48475, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD-249#6号白底桔花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59174212ae454c2daa196c3f552f84d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59174212ae454c2daa196c3f552f84d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59174212ae454c2daa196c3f552f84d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59174212ae454c2daa196c3f552f84d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59174212ae454c2daa196c3f552f84d9.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yx89gKF0rVgCLwqbAYvnyBC_QDI=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.212147+00 2025-12-09 10:16:00.212154+00 20959 1268FWE#黑色改XL SPMX-20240815316201 \N \N \N 1 \N [{"file_id": "e661ef1e-7553-4cf5-8010-7d93eb58eaf9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "976d832965e247b6af94697e704417ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "976d832965e247b6af94697e704417ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "976d832965e247b6af94697e704417ab.jpg", "file_size": 17943, "is_delete": false, "file_type": 1, "original_file_name": "1268FWE#黑色改XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976d832965e247b6af94697e704417ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976d832965e247b6af94697e704417ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/976d832965e247b6af94697e704417ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/976d832965e247b6af94697e704417ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/976d832965e247b6af94697e704417ab.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_tPTrZfdvbq2dqMkDpzIfDFU1n4=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.21573+00 2025-12-09 10:16:00.215736+00 20960 88380FWF#D咖色42码 SPMX-20240815316202 \N \N \N 1 \N [{"file_id": "5d874b57-2e7c-4941-bf90-5e2df9deb583", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b7ae7b6ac56483aa115022e6780eba0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b7ae7b6ac56483aa115022e6780eba0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b7ae7b6ac56483aa115022e6780eba0.jpg", "file_size": 23608, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ae7b6ac56483aa115022e6780eba0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ae7b6ac56483aa115022e6780eba0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b7ae7b6ac56483aa115022e6780eba0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b7ae7b6ac56483aa115022e6780eba0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b7ae7b6ac56483aa115022e6780eba0.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IA0cR2kfUcW0WadLKFGP9J9uYcg=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.21933+00 2025-12-09 10:16:00.219337+00 20961 FX009FWE# VS-D3 SPMX-20240815316212 \N \N \N 1 \N [{"file_id": "9de026d9-56ce-4bd9-8237-cbf4a177916e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b809f2aff2b4337babaee8437f76894.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b809f2aff2b4337babaee8437f76894.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b809f2aff2b4337babaee8437f76894.jpg", "file_size": 16053, "is_delete": false, "file_type": 1, "original_file_name": "FX009FWE# VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b809f2aff2b4337babaee8437f76894.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b809f2aff2b4337babaee8437f76894.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b809f2aff2b4337babaee8437f76894.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b809f2aff2b4337babaee8437f76894.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b809f2aff2b4337babaee8437f76894.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L_FjkHT6m2PS_IiXa2LtssVk3Ck=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.222934+00 2025-12-09 10:16:00.222941+00 20962 CH590FWE#斗牛M SPMX-20240815316217 \N \N \N 1 \N [{"file_id": "65f2b5a0-857e-4f76-ad7b-40d6002b98f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "124e8acf86694d5d96dcd2720f63da06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "124e8acf86694d5d96dcd2720f63da06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "124e8acf86694d5d96dcd2720f63da06.jpg", "file_size": 12516, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124e8acf86694d5d96dcd2720f63da06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124e8acf86694d5d96dcd2720f63da06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124e8acf86694d5d96dcd2720f63da06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/124e8acf86694d5d96dcd2720f63da06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/124e8acf86694d5d96dcd2720f63da06.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:umo_lcRC3DBAhn-wvqP4PHGrgIU=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.226555+00 2025-12-09 10:16:00.226561+00 20963 HXF012FW#VS-D3 SPMX-20240815316216 \N \N \N 1 \N [{"file_id": "a771e9f3-4d1a-4353-91ff-7b0acb5f0bd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "109479d508564572a89feb5080d76d93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "109479d508564572a89feb5080d76d93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "109479d508564572a89feb5080d76d93.jpg", "file_size": 31782, "is_delete": false, "file_type": 1, "original_file_name": "HXF012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109479d508564572a89feb5080d76d93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109479d508564572a89feb5080d76d93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/109479d508564572a89feb5080d76d93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/109479d508564572a89feb5080d76d93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/109479d508564572a89feb5080d76d93.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hhx8esJwVXkyEt3516IohAotE-Y=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.230142+00 2025-12-09 10:16:00.230148+00 20964 LZ1423#大人T5号色 SPMX-20240815316220 \N \N \N 1 \N [{"file_id": "b888f7c5-735c-4ade-b0fa-299152a3c94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe29e6f7d07c4a68a2f61c44939ba9d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe29e6f7d07c4a68a2f61c44939ba9d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe29e6f7d07c4a68a2f61c44939ba9d4.jpg", "file_size": 19388, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe29e6f7d07c4a68a2f61c44939ba9d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe29e6f7d07c4a68a2f61c44939ba9d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe29e6f7d07c4a68a2f61c44939ba9d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe29e6f7d07c4a68a2f61c44939ba9d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe29e6f7d07c4a68a2f61c44939ba9d4.jpg?e=1765361758&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I1OgJ08TdIdZuhoaRyci0ItGu3w=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.926732+00 2025-12-09 10:16:00.926741+00 20965 LZ1423#大人T4号色 SPMX-20240815316209 \N \N \N 1 \N [{"file_id": "9a545098-72c3-44ad-afe8-c26aa1c631cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6e7e4088b894d99b7f8d0ab41e13302.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6e7e4088b894d99b7f8d0ab41e13302.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6e7e4088b894d99b7f8d0ab41e13302.jpg", "file_size": 19325, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e4088b894d99b7f8d0ab41e13302.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e4088b894d99b7f8d0ab41e13302.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e4088b894d99b7f8d0ab41e13302.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e4088b894d99b7f8d0ab41e13302.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6e7e4088b894d99b7f8d0ab41e13302.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v6hWARbAGN96EtARlLcLtEanwig=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.931548+00 2025-12-09 10:16:00.931554+00 20966 JY-AD121#桔色 SPMX-20240815316211 \N \N \N 1 \N [{"file_id": "1a1d2b3a-9da4-42a5-80e5-61369a90765e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1d70a22a0414284a4cf657868a8098d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1d70a22a0414284a4cf657868a8098d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1d70a22a0414284a4cf657868a8098d.jpg", "file_size": 21905, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD121#桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d70a22a0414284a4cf657868a8098d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d70a22a0414284a4cf657868a8098d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d70a22a0414284a4cf657868a8098d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1d70a22a0414284a4cf657868a8098d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1d70a22a0414284a4cf657868a8098d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8UUdtWX9_uqREorkXbtA3KBvmzs=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.935109+00 2025-12-09 10:16:00.935115+00 20967 88380FWF#D咖色42码番禺调色 SPMX-20240815316210 \N \N \N 1 \N [{"file_id": "e6b06cbc-4e63-4900-96e3-e5a385aad834", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffed659b5a774b59b6782197e9a596f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffed659b5a774b59b6782197e9a596f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffed659b5a774b59b6782197e9a596f1.jpg", "file_size": 24639, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色42码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed659b5a774b59b6782197e9a596f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed659b5a774b59b6782197e9a596f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffed659b5a774b59b6782197e9a596f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffed659b5a774b59b6782197e9a596f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffed659b5a774b59b6782197e9a596f1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LEts6PrO-aPtYsrf3XrnWKmvAqU=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.938519+00 2025-12-09 10:16:00.938525+00 20968 24077#-6-A-左 SPMX-20240815316207 \N \N \N 1 \N [{"file_id": "7c15b902-0a44-49af-8db0-704d6d85c660", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21c92e8a7c994b6e96a2d54f7ed54067.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21c92e8a7c994b6e96a2d54f7ed54067.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21c92e8a7c994b6e96a2d54f7ed54067.jpg", "file_size": 43664, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-A-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c92e8a7c994b6e96a2d54f7ed54067.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c92e8a7c994b6e96a2d54f7ed54067.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21c92e8a7c994b6e96a2d54f7ed54067.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21c92e8a7c994b6e96a2d54f7ed54067.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21c92e8a7c994b6e96a2d54f7ed54067.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QSNWFBkAev4l920xhdC6tkTvwnc=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.941938+00 2025-12-09 10:16:00.941944+00 20969 LJH84165#绿色 SPMX-20240815316208 \N \N \N 1 \N [{"file_id": "96752c39-59d5-40fb-8e12-1280dbe021c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d80eb0d050444c2382cadacc10b2c82b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d80eb0d050444c2382cadacc10b2c82b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d80eb0d050444c2382cadacc10b2c82b.jpg", "file_size": 48031, "is_delete": false, "file_type": 1, "original_file_name": "LJH84165#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80eb0d050444c2382cadacc10b2c82b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80eb0d050444c2382cadacc10b2c82b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80eb0d050444c2382cadacc10b2c82b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d80eb0d050444c2382cadacc10b2c82b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d80eb0d050444c2382cadacc10b2c82b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XGuwsJ5jppZ5REYYNMkWWvBSCt4=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.945435+00 2025-12-09 10:16:00.945442+00 20970 DM8185#2XL SPMX-20240815316213 \N \N \N 1 \N [{"file_id": "0635ecbf-91d2-45d0-ace0-a88b6f14381a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf7435c0eba4e12925710c847bccc88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf7435c0eba4e12925710c847bccc88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf7435c0eba4e12925710c847bccc88.jpg", "file_size": 19835, "is_delete": false, "file_type": 1, "original_file_name": "DM8185#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf7435c0eba4e12925710c847bccc88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf7435c0eba4e12925710c847bccc88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf7435c0eba4e12925710c847bccc88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf7435c0eba4e12925710c847bccc88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf7435c0eba4e12925710c847bccc88.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fvjGUrAu96PQTEJoIgYujlBVASA=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.94884+00 2025-12-09 10:16:00.948846+00 20971 LJJ3186#-彩蓝L码 SPMX-20240815316219 \N \N \N 1 \N [{"file_id": "31936ca4-4882-4722-a94d-a66817aefd16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f3aa648a7fd4c16ace73b227e9199ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f3aa648a7fd4c16ace73b227e9199ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f3aa648a7fd4c16ace73b227e9199ee.jpg", "file_size": 15878, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-彩蓝L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3aa648a7fd4c16ace73b227e9199ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3aa648a7fd4c16ace73b227e9199ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f3aa648a7fd4c16ace73b227e9199ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f3aa648a7fd4c16ace73b227e9199ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f3aa648a7fd4c16ace73b227e9199ee.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SKVoglGlyPq_ARtkECSh_9VeLFY=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.952238+00 2025-12-09 10:16:00.952244+00 20972 24077#-6-A SPMX-20240815316218 \N \N \N 1 \N [{"file_id": "b7ecdb79-f3a6-4912-bfd3-c63d144aae25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a13c14d61bf49cc91af28071077e0af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a13c14d61bf49cc91af28071077e0af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a13c14d61bf49cc91af28071077e0af.jpg", "file_size": 47006, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a13c14d61bf49cc91af28071077e0af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a13c14d61bf49cc91af28071077e0af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a13c14d61bf49cc91af28071077e0af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a13c14d61bf49cc91af28071077e0af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a13c14d61bf49cc91af28071077e0af.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZAGXOxDyAAvk5kk6JSKka_nRAKI=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.955648+00 2025-12-09 10:16:00.955655+00 20973 0030-2FWF#V5曲线 SPMX-20240815316215 \N \N \N 1 \N [{"file_id": "827c4e4b-cf15-415b-922a-eab08fd34929", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ef5f10ac95745f2933bcc45414d83d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ef5f10ac95745f2933bcc45414d83d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ef5f10ac95745f2933bcc45414d83d7.jpg", "file_size": 12389, "is_delete": false, "file_type": 1, "original_file_name": "0030-2FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef5f10ac95745f2933bcc45414d83d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef5f10ac95745f2933bcc45414d83d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ef5f10ac95745f2933bcc45414d83d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ef5f10ac95745f2933bcc45414d83d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ef5f10ac95745f2933bcc45414d83d7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OxZK2W4Pxc4bwWe8tVX3Ku-mREg=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.958991+00 2025-12-09 10:16:00.958998+00 20974 HXF012#粉 SPMX-20240815316206 \N \N \N 1 \N [{"file_id": "8669e82d-0d6d-42fb-a0db-09bc3e042542", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdcbad561a904c51a123e92f8fda49bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdcbad561a904c51a123e92f8fda49bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdcbad561a904c51a123e92f8fda49bd.jpg", "file_size": 17109, "is_delete": false, "file_type": 1, "original_file_name": "HXF012#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcbad561a904c51a123e92f8fda49bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcbad561a904c51a123e92f8fda49bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdcbad561a904c51a123e92f8fda49bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdcbad561a904c51a123e92f8fda49bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdcbad561a904c51a123e92f8fda49bd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjfINmkpqJqbVM2GITWN2HjSEM8=", "createTime": "2024-08-15 15:09:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.962361+00 2025-12-09 10:16:00.962367+00 20975 127#-深杏 SPMX-20240815316214 \N \N \N 1 \N [{"file_id": "7e2dbaac-3ed5-42a5-9c9b-fa21aa58ddee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ead20d625f946eab54022ad894920cf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ead20d625f946eab54022ad894920cf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ead20d625f946eab54022ad894920cf.jpg", "file_size": 46656, "is_delete": false, "file_type": 1, "original_file_name": "127#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ead20d625f946eab54022ad894920cf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ead20d625f946eab54022ad894920cf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ead20d625f946eab54022ad894920cf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ead20d625f946eab54022ad894920cf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ead20d625f946eab54022ad894920cf.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qu8a9jXSgr9oUTgnYbSpi7t83os=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.965913+00 2025-12-09 10:16:00.965919+00 20976 88380FWF#D咖色44码 SPMX-20240815316221 \N \N \N 1 \N [{"file_id": "bbfdc70a-5a48-48eb-b369-6fdd1c7a98bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg", "file_size": 24483, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b301f421c5a1409ab2dcc5cd8b5bfe6e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQZGqdc6NQ8tnt-K_AhlVRAKtmc=", "createTime": "2024-08-15 15:09:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.969313+00 2025-12-09 10:16:00.969318+00 20977 JY-AD121#绿色 SPMX-20240815316223 \N \N \N 1 \N [{"file_id": "0ffe3882-92b3-4c67-9ef7-d878dca6a0af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23dae593c0f34ea3920a944323d04804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23dae593c0f34ea3920a944323d04804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23dae593c0f34ea3920a944323d04804.jpg", "file_size": 21975, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD121#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dae593c0f34ea3920a944323d04804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dae593c0f34ea3920a944323d04804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23dae593c0f34ea3920a944323d04804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23dae593c0f34ea3920a944323d04804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23dae593c0f34ea3920a944323d04804.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VA-hma8RWzPzfEewMN2rma75Wsg=", "createTime": "2024-08-15 15:09:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.972723+00 2025-12-09 10:16:00.972729+00 20978 FX009FWE#VS-D3 SPMX-20240815316222 \N \N \N 1 \N [{"file_id": "1b8de9df-070a-4626-80ab-5e28d86cf9cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3950bffa84034f769044229d52063fe7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3950bffa84034f769044229d52063fe7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3950bffa84034f769044229d52063fe7.jpg", "file_size": 15601, "is_delete": false, "file_type": 1, "original_file_name": "FX009FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3950bffa84034f769044229d52063fe7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3950bffa84034f769044229d52063fe7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3950bffa84034f769044229d52063fe7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3950bffa84034f769044229d52063fe7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3950bffa84034f769044229d52063fe7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y67t-OhYskyen7ez2aN9zYY32LQ=", "createTime": "2024-08-15 15:09:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.976268+00 2025-12-09 10:16:00.976274+00 20979 127#-灰色 SPMX-20240815316226 \N \N \N 1 \N [{"file_id": "edfe30c1-5bb7-4593-bb89-c8a54e495302", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8a09e307adf428e8d8fab2e36be933f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8a09e307adf428e8d8fab2e36be933f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8a09e307adf428e8d8fab2e36be933f.jpg", "file_size": 65070, "is_delete": false, "file_type": 1, "original_file_name": "127#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a09e307adf428e8d8fab2e36be933f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a09e307adf428e8d8fab2e36be933f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8a09e307adf428e8d8fab2e36be933f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8a09e307adf428e8d8fab2e36be933f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8a09e307adf428e8d8fab2e36be933f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JnguVohS5Wvik2iIyJz99OwTCUI=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.979657+00 2025-12-09 10:16:00.979664+00 20980 88380FWF#D咖色44码番禺调色 SPMX-20240815316230 \N \N \N 1 \N [{"file_id": "63aa9846-86fb-4122-9fea-2b8db761dc5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ade08e3e35e40d695813becc7e4ff5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ade08e3e35e40d695813becc7e4ff5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ade08e3e35e40d695813becc7e4ff5e.jpg", "file_size": 25105, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色44码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ade08e3e35e40d695813becc7e4ff5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ade08e3e35e40d695813becc7e4ff5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ade08e3e35e40d695813becc7e4ff5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ade08e3e35e40d695813becc7e4ff5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ade08e3e35e40d695813becc7e4ff5e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tSl1T0u_9Ax7QtZG9cPordYPmgk=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.983051+00 2025-12-09 10:16:00.983058+00 20981 24077#-6-B# SPMX-20240815316232 \N \N \N 1 \N [{"file_id": "580ddae1-e0c3-46a7-8840-dab654830708", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c116f02aeadd4939b6a418c45f37eeb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c116f02aeadd4939b6a418c45f37eeb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c116f02aeadd4939b6a418c45f37eeb1.jpg", "file_size": 42353, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-B#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c116f02aeadd4939b6a418c45f37eeb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c116f02aeadd4939b6a418c45f37eeb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c116f02aeadd4939b6a418c45f37eeb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c116f02aeadd4939b6a418c45f37eeb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c116f02aeadd4939b6a418c45f37eeb1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0MzUhbZMMU_HE55x1yN8z3gHWnM=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.986489+00 2025-12-09 10:16:00.986496+00 20982 0030-3#米色 SPMX-20240815316233 \N \N \N 1 \N [{"file_id": "f584dac8-eeb6-4148-a2cd-da9293695984", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4abf62672e6c4467b4068ad5cc5fa4fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4abf62672e6c4467b4068ad5cc5fa4fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4abf62672e6c4467b4068ad5cc5fa4fe.jpg", "file_size": 8643, "is_delete": false, "file_type": 1, "original_file_name": "0030-3#米色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abf62672e6c4467b4068ad5cc5fa4fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abf62672e6c4467b4068ad5cc5fa4fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4abf62672e6c4467b4068ad5cc5fa4fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4abf62672e6c4467b4068ad5cc5fa4fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4abf62672e6c4467b4068ad5cc5fa4fe.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9B1J9zEBUpV3G7uC94F86SLg-cE=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.989856+00 2025-12-09 10:16:00.989862+00 20983 0030-3#宝蓝 SPMX-20240815316224 \N \N \N 1 \N [{"file_id": "a0cc754a-3f9e-4135-bcca-d9b17dcf859b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bc41257309e44318c8895643f1d19c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bc41257309e44318c8895643f1d19c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bc41257309e44318c8895643f1d19c1.jpg", "file_size": 9265, "is_delete": false, "file_type": 1, "original_file_name": "0030-3#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc41257309e44318c8895643f1d19c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc41257309e44318c8895643f1d19c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bc41257309e44318c8895643f1d19c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bc41257309e44318c8895643f1d19c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bc41257309e44318c8895643f1d19c1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eSkjg3PvDG0c_VxCJJv5o9OTmHU=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.993275+00 2025-12-09 10:16:00.993281+00 20984 DM8185#3XL SPMX-20240815316225 \N \N \N 1 \N [{"file_id": "5ef534a8-7d21-4ab3-b2ba-654310681d68", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2dfa8f7d2514405da8e552f397dcdcae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2dfa8f7d2514405da8e552f397dcdcae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2dfa8f7d2514405da8e552f397dcdcae.jpg", "file_size": 19224, "is_delete": false, "file_type": 1, "original_file_name": "DM8185#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfa8f7d2514405da8e552f397dcdcae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfa8f7d2514405da8e552f397dcdcae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2dfa8f7d2514405da8e552f397dcdcae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2dfa8f7d2514405da8e552f397dcdcae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2dfa8f7d2514405da8e552f397dcdcae.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JK6_6UIWz9yRLj3-pcEtBymC1dI=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:00.996713+00 2025-12-09 10:16:00.99672+00 20985 CH590FWE#斗牛S SPMX-20240815316231 \N \N \N 1 \N [{"file_id": "56f73985-f2aa-4a79-b079-1b96d6c03d94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc507147ac94438f8278728fdb9458b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc507147ac94438f8278728fdb9458b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc507147ac94438f8278728fdb9458b6.jpg", "file_size": 11406, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc507147ac94438f8278728fdb9458b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc507147ac94438f8278728fdb9458b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc507147ac94438f8278728fdb9458b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc507147ac94438f8278728fdb9458b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc507147ac94438f8278728fdb9458b6.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4hV4YqFHeKE_xnsNVabmRG8e8CM=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.000051+00 2025-12-09 10:16:01.000057+00 20986 FX009FWE#浅紫 SPMX-20240815316228 \N \N \N 1 \N [{"file_id": "86a1396f-fb04-4799-9af7-b81ced5578be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e563ee2f6604457ab0514f337cd08324.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e563ee2f6604457ab0514f337cd08324.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e563ee2f6604457ab0514f337cd08324.jpg", "file_size": 12877, "is_delete": false, "file_type": 1, "original_file_name": "FX009FWE#浅紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e563ee2f6604457ab0514f337cd08324.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e563ee2f6604457ab0514f337cd08324.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e563ee2f6604457ab0514f337cd08324.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e563ee2f6604457ab0514f337cd08324.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e563ee2f6604457ab0514f337cd08324.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LBnz3iuxHbl53hgeEVxqHGk4hY4=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.00343+00 2025-12-09 10:16:01.003436+00 20987 LZ1423#童装 SPMX-20240815316234 \N \N \N 1 \N [{"file_id": "e4a50f7f-7d93-4abb-b66a-fe205ed7c0b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4856f97b4584929bf05a553e55f63c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4856f97b4584929bf05a553e55f63c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4856f97b4584929bf05a553e55f63c4.jpg", "file_size": 23254, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4856f97b4584929bf05a553e55f63c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4856f97b4584929bf05a553e55f63c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4856f97b4584929bf05a553e55f63c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4856f97b4584929bf05a553e55f63c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4856f97b4584929bf05a553e55f63c4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CI01Upx30JdmlsM53igxt9ki4MI=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.006903+00 2025-12-09 10:16:01.006909+00 20988 LJJ3186#-彩蓝M码 SPMX-20240815316235 \N \N \N 1 \N [{"file_id": "59a116e9-eaa9-46af-91c7-13db1c9050e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f97560ffb21428b9576db250ad45816.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f97560ffb21428b9576db250ad45816.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f97560ffb21428b9576db250ad45816.jpg", "file_size": 16496, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-彩蓝M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f97560ffb21428b9576db250ad45816.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f97560ffb21428b9576db250ad45816.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f97560ffb21428b9576db250ad45816.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f97560ffb21428b9576db250ad45816.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f97560ffb21428b9576db250ad45816.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_52LFW_CwD8cenr-YQM0AuQD-5k=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.010268+00 2025-12-09 10:16:01.010274+00 20989 HXF013#咖啡 SPMX-20240815316227 \N \N \N 1 \N [{"file_id": "eecd02a1-b14c-466a-a913-904cc86e9cbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49327e1b9ba343c6bc1ae4f007f7c583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49327e1b9ba343c6bc1ae4f007f7c583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49327e1b9ba343c6bc1ae4f007f7c583.jpg", "file_size": 10881, "is_delete": false, "file_type": 1, "original_file_name": "HXF013#咖啡.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49327e1b9ba343c6bc1ae4f007f7c583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49327e1b9ba343c6bc1ae4f007f7c583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49327e1b9ba343c6bc1ae4f007f7c583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49327e1b9ba343c6bc1ae4f007f7c583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49327e1b9ba343c6bc1ae4f007f7c583.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GgqFnE4KW3vUOxQI_G_EmMADzLw=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.013711+00 2025-12-09 10:16:01.013717+00 20990 JY-AD121#黑色 SPMX-20240815316229 \N \N \N 1 \N [{"file_id": "f0b4b5c3-8613-4e95-b090-c70d011942da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "437540d376f44995ab5518b1905ccf58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "437540d376f44995ab5518b1905ccf58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "437540d376f44995ab5518b1905ccf58.jpg", "file_size": 22073, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD121#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437540d376f44995ab5518b1905ccf58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437540d376f44995ab5518b1905ccf58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/437540d376f44995ab5518b1905ccf58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/437540d376f44995ab5518b1905ccf58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/437540d376f44995ab5518b1905ccf58.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:02GPxIPqFiXAnBlu_c5h0h71RVo=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.016997+00 2025-12-09 10:16:01.017004+00 20991 DM8185#4XL SPMX-20240815316236 \N \N \N 1 \N [{"file_id": "1e18d387-74a8-459e-85fb-8ca4e3d6f61d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8259535c126644c3be0ccbc1c933f381.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8259535c126644c3be0ccbc1c933f381.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8259535c126644c3be0ccbc1c933f381.jpg", "file_size": 18820, "is_delete": false, "file_type": 1, "original_file_name": "DM8185#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8259535c126644c3be0ccbc1c933f381.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8259535c126644c3be0ccbc1c933f381.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8259535c126644c3be0ccbc1c933f381.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8259535c126644c3be0ccbc1c933f381.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8259535c126644c3be0ccbc1c933f381.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IOdVDh_dTV0ab3uETnja0gKGfc=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.020457+00 2025-12-09 10:16:01.020463+00 20992 CH590FWE#斗牛XL SPMX-20240815316242 \N \N \N 1 \N [{"file_id": "5d9a9b91-8e09-45de-bbf8-4475a02dc442", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ae17fb50aaa4d74b57f069d18f19a60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ae17fb50aaa4d74b57f069d18f19a60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ae17fb50aaa4d74b57f069d18f19a60.jpg", "file_size": 11761, "is_delete": false, "file_type": 1, "original_file_name": "CH590FWE#斗牛XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae17fb50aaa4d74b57f069d18f19a60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae17fb50aaa4d74b57f069d18f19a60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ae17fb50aaa4d74b57f069d18f19a60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ae17fb50aaa4d74b57f069d18f19a60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ae17fb50aaa4d74b57f069d18f19a60.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FODwhyDkJdxbyhxcTEbAFNUm_ps=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.035935+00 2025-12-09 10:16:01.035939+00 20997 24077#-6-B-中 SPMX-20240815316243 \N \N \N 1 \N [{"file_id": "38346e41-03a0-447a-8e8b-25a0241b9ff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "595ec792899a4038a6ffdd258830f943.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "595ec792899a4038a6ffdd258830f943.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "595ec792899a4038a6ffdd258830f943.jpg", "file_size": 41065, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-B-中.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ec792899a4038a6ffdd258830f943.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ec792899a4038a6ffdd258830f943.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ec792899a4038a6ffdd258830f943.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/595ec792899a4038a6ffdd258830f943.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/595ec792899a4038a6ffdd258830f943.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LPQcSv7JalYfnYt4CULhBjyBqrs=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.024128+00 2025-12-09 10:16:01.024133+00 20993 LJJ3186#-彩蓝加金黄L码 SPMX-20240815316244 \N \N \N 1 \N [{"file_id": "dc7e51c0-f301-4097-854e-176f63deb192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3edf9a11b16b429cb673fd66cb32815d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3edf9a11b16b429cb673fd66cb32815d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3edf9a11b16b429cb673fd66cb32815d.jpg", "file_size": 19555, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-彩蓝加金黄L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edf9a11b16b429cb673fd66cb32815d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edf9a11b16b429cb673fd66cb32815d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3edf9a11b16b429cb673fd66cb32815d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3edf9a11b16b429cb673fd66cb32815d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3edf9a11b16b429cb673fd66cb32815d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QvFFDVe47jJW9eCAiG9LVB40vOw=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.027245+00 2025-12-09 10:16:01.027251+00 20994 LZ1423#童装T1号色 SPMX-20240815316246 \N \N \N 1 \N [{"file_id": "2dabfecf-631c-479d-b8b7-8eaa53daac40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15a7acc7072d4972a26202909073f7fa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15a7acc7072d4972a26202909073f7fa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15a7acc7072d4972a26202909073f7fa.jpg", "file_size": 24514, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a7acc7072d4972a26202909073f7fa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a7acc7072d4972a26202909073f7fa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15a7acc7072d4972a26202909073f7fa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15a7acc7072d4972a26202909073f7fa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15a7acc7072d4972a26202909073f7fa.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHAQjGccTbouLw7Pwom-mRV9u50=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.030209+00 2025-12-09 10:16:01.030214+00 20995 DM8185#5XL SPMX-20240815316245 \N \N \N 1 \N [{"file_id": "87414374-fefc-4fc6-a28a-853e8cdfae07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d24654efb35b4747a4c9f8441b1a3525.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d24654efb35b4747a4c9f8441b1a3525.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d24654efb35b4747a4c9f8441b1a3525.jpg", "file_size": 18775, "is_delete": false, "file_type": 1, "original_file_name": "DM8185#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24654efb35b4747a4c9f8441b1a3525.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24654efb35b4747a4c9f8441b1a3525.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24654efb35b4747a4c9f8441b1a3525.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d24654efb35b4747a4c9f8441b1a3525.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d24654efb35b4747a4c9f8441b1a3525.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I49wbw2dHaQ2lSZ9Y87Pv6S703A=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.03308+00 2025-12-09 10:16:01.033085+00 20996 JY-AD148#1号玫红 SPMX-20240815316240 \N \N \N 1 \N [{"file_id": "c336493d-11d7-4760-90dc-23084040e5de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e00d227f32f748a59c1832a6c89b934a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e00d227f32f748a59c1832a6c89b934a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e00d227f32f748a59c1832a6c89b934a.jpg", "file_size": 16876, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD148#1号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00d227f32f748a59c1832a6c89b934a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00d227f32f748a59c1832a6c89b934a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e00d227f32f748a59c1832a6c89b934a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e00d227f32f748a59c1832a6c89b934a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e00d227f32f748a59c1832a6c89b934a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3nQFPkMMoWwiEEts0qIYFs71cQ8=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.038854+00 2025-12-09 10:16:01.038859+00 20998 0030-3#蓝色 SPMX-20240815316247 \N \N \N 1 \N [{"file_id": "bda3c846-87e3-44ce-819c-47cf27a5b868", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7040335a180b4b87a61b1d5ceb4a9819.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7040335a180b4b87a61b1d5ceb4a9819.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7040335a180b4b87a61b1d5ceb4a9819.jpg", "file_size": 8582, "is_delete": false, "file_type": 1, "original_file_name": "0030-3#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7040335a180b4b87a61b1d5ceb4a9819.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7040335a180b4b87a61b1d5ceb4a9819.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7040335a180b4b87a61b1d5ceb4a9819.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7040335a180b4b87a61b1d5ceb4a9819.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7040335a180b4b87a61b1d5ceb4a9819.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JLFV6X9KSDVwDQ0chBGtEJ6Y210=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.041745+00 2025-12-09 10:16:01.041749+00 20999 HXF013FW#VS-D3 SPMX-20240815316248 \N \N \N 1 \N [{"file_id": "6d481265-082d-425c-9b96-3606aa78b8e1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f2ce50c53c84227bd1e66838a7e026e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f2ce50c53c84227bd1e66838a7e026e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f2ce50c53c84227bd1e66838a7e026e.jpg", "file_size": 16097, "is_delete": false, "file_type": 1, "original_file_name": "HXF013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ce50c53c84227bd1e66838a7e026e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ce50c53c84227bd1e66838a7e026e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f2ce50c53c84227bd1e66838a7e026e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f2ce50c53c84227bd1e66838a7e026e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f2ce50c53c84227bd1e66838a7e026e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g-nDeIcGdD9_cfecnZef0wVtdp0=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.044621+00 2025-12-09 10:16:01.044626+00 21000 JY-AD148#2号绿黄色 SPMX-20240815316249 \N \N \N 1 \N [{"file_id": "671d4d85-abc5-4904-884a-094b5ef721a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1b1b5bbc2e14662a2395f723430d331.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1b1b5bbc2e14662a2395f723430d331.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1b1b5bbc2e14662a2395f723430d331.jpg", "file_size": 18569, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD148#2号绿黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1b5bbc2e14662a2395f723430d331.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1b5bbc2e14662a2395f723430d331.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1b1b5bbc2e14662a2395f723430d331.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1b1b5bbc2e14662a2395f723430d331.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1b1b5bbc2e14662a2395f723430d331.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_D9QfaNTP2y3ZNtR5BFbr_KYI4w=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.047512+00 2025-12-09 10:16:01.047516+00 21001 FX010#VS-D3 SPMX-20240815316250 \N \N \N 1 \N [{"file_id": "4f94ddcf-7543-445b-a40c-6f52045b320f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfe70a3987a7428ebea9ff273c981c75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfe70a3987a7428ebea9ff273c981c75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfe70a3987a7428ebea9ff273c981c75.jpg", "file_size": 21322, "is_delete": false, "file_type": 1, "original_file_name": "FX010#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe70a3987a7428ebea9ff273c981c75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe70a3987a7428ebea9ff273c981c75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe70a3987a7428ebea9ff273c981c75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfe70a3987a7428ebea9ff273c981c75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfe70a3987a7428ebea9ff273c981c75.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9LmcY__SUXV3PGJ5XvCqE1EE5H8=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.073894+00 2025-12-09 10:16:01.073901+00 21010 24077#-6-B SPMX-20240815316254 \N \N \N 1 \N [{"file_id": "68833b21-0e0f-4059-8c28-a2d27baf32bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56d9484c3ece414984222f9f4f0cc945.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56d9484c3ece414984222f9f4f0cc945.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56d9484c3ece414984222f9f4f0cc945.jpg", "file_size": 40465, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d9484c3ece414984222f9f4f0cc945.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d9484c3ece414984222f9f4f0cc945.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56d9484c3ece414984222f9f4f0cc945.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56d9484c3ece414984222f9f4f0cc945.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56d9484c3ece414984222f9f4f0cc945.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OMH4i6IqsRLXN0dxBuyNPFDW98Q=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.050404+00 2025-12-09 10:16:01.050408+00 21002 88380FWF#D咖色46码 SPMX-20240815316241 \N \N \N 1 \N [{"file_id": "65e5f14d-7557-4a93-b0b2-d73327c087fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ec982f72f7d4aa9a722f6c911263792.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ec982f72f7d4aa9a722f6c911263792.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ec982f72f7d4aa9a722f6c911263792.jpg", "file_size": 24656, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec982f72f7d4aa9a722f6c911263792.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec982f72f7d4aa9a722f6c911263792.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec982f72f7d4aa9a722f6c911263792.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ec982f72f7d4aa9a722f6c911263792.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ec982f72f7d4aa9a722f6c911263792.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eAfTPFWcxv1saEirmMNKJu8j2XM=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.053252+00 2025-12-09 10:16:01.053257+00 21003 127#-黑色 SPMX-20240815316251 \N \N \N 1 \N [{"file_id": "41031729-0947-42b4-ba2d-ea82ee089db4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62dd9cf898fb469ab50555c2509339da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62dd9cf898fb469ab50555c2509339da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62dd9cf898fb469ab50555c2509339da.jpg", "file_size": 50550, "is_delete": false, "file_type": 1, "original_file_name": "127#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dd9cf898fb469ab50555c2509339da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dd9cf898fb469ab50555c2509339da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62dd9cf898fb469ab50555c2509339da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62dd9cf898fb469ab50555c2509339da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62dd9cf898fb469ab50555c2509339da.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrITi7PAsiMRx3_0PWfy5fXhqDM=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.056111+00 2025-12-09 10:16:01.056115+00 21004 HXF013#宝蓝 SPMX-20240815316237 \N \N \N 1 \N [{"file_id": "7a01cccd-e5e6-4cc5-8954-76a5794785f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61a03537982f47d883f5b1a66e05e9e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61a03537982f47d883f5b1a66e05e9e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61a03537982f47d883f5b1a66e05e9e7.jpg", "file_size": 10750, "is_delete": false, "file_type": 1, "original_file_name": "HXF013#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a03537982f47d883f5b1a66e05e9e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a03537982f47d883f5b1a66e05e9e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61a03537982f47d883f5b1a66e05e9e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61a03537982f47d883f5b1a66e05e9e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61a03537982f47d883f5b1a66e05e9e7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4geHwVl4NLI9N7U3Aq-aXLD3hc=", "createTime": "2024-08-15 15:09:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.058969+00 2025-12-09 10:16:01.058973+00 21005 CH595FWE#鳄鱼头2XL SPMX-20240815316252 \N \N \N 1 \N [{"file_id": "791ed887-4bd3-450a-af76-10d9a6cf7bc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a7e110fe5c74829a3383d283e798567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a7e110fe5c74829a3383d283e798567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a7e110fe5c74829a3383d283e798567.jpg", "file_size": 11431, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e110fe5c74829a3383d283e798567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e110fe5c74829a3383d283e798567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a7e110fe5c74829a3383d283e798567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a7e110fe5c74829a3383d283e798567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a7e110fe5c74829a3383d283e798567.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HarP96jka-EsxGEgjd4J_eiR4tk=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.06185+00 2025-12-09 10:16:01.061855+00 21006 88380FWF#D咖色46码番禺调色 SPMX-20240815316253 \N \N \N 1 \N [{"file_id": "b6e05a3a-ec17-4783-b176-1eefe1a6bc96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05ff89f2e32f413fbe44b2fca3d57a8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05ff89f2e32f413fbe44b2fca3d57a8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05ff89f2e32f413fbe44b2fca3d57a8a.jpg", "file_size": 25208, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色46码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff89f2e32f413fbe44b2fca3d57a8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff89f2e32f413fbe44b2fca3d57a8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05ff89f2e32f413fbe44b2fca3d57a8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05ff89f2e32f413fbe44b2fca3d57a8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05ff89f2e32f413fbe44b2fca3d57a8a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TObd9VBMYG58f2kN4FP2KdFMlrQ=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.06489+00 2025-12-09 10:16:01.064896+00 21007 FX010# SPMX-20240815316238 \N \N \N 1 \N [{"file_id": "997b818d-0402-4d12-a63c-7f5dea8ede8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "051d9f233bcb4524b5b089cfde3bd0d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "051d9f233bcb4524b5b089cfde3bd0d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "051d9f233bcb4524b5b089cfde3bd0d2.jpg", "file_size": 14801, "is_delete": false, "file_type": 1, "original_file_name": "FX010#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051d9f233bcb4524b5b089cfde3bd0d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051d9f233bcb4524b5b089cfde3bd0d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/051d9f233bcb4524b5b089cfde3bd0d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/051d9f233bcb4524b5b089cfde3bd0d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/051d9f233bcb4524b5b089cfde3bd0d2.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2sP7zz9zR7YhtXiVw7mAc56GefM=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.068004+00 2025-12-09 10:16:01.068009+00 21008 127#-白色 SPMX-20240815316239 \N \N \N 1 \N [{"file_id": "ad298dbc-650b-4fb4-8f96-306a99d8e149", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09e98671f2d14d8184f984332e546cd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09e98671f2d14d8184f984332e546cd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09e98671f2d14d8184f984332e546cd8.jpg", "file_size": 50459, "is_delete": false, "file_type": 1, "original_file_name": "127#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e98671f2d14d8184f984332e546cd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e98671f2d14d8184f984332e546cd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09e98671f2d14d8184f984332e546cd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09e98671f2d14d8184f984332e546cd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09e98671f2d14d8184f984332e546cd8.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9Wtv7VdqDab4bYglIhxbAXw88s=", "createTime": "2024-08-15 15:09:29"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.070954+00 2025-12-09 10:16:01.070959+00 21009 LJJ3186#-彩蓝加金黄M码 SPMX-20240815316255 \N \N \N 1 \N [{"file_id": "2059b962-3fea-4dfe-95cc-6bc03de150b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67b50395a32c462e9d17ab29271c738e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67b50395a32c462e9d17ab29271c738e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67b50395a32c462e9d17ab29271c738e.jpg", "file_size": 20205, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-彩蓝加金黄M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b50395a32c462e9d17ab29271c738e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b50395a32c462e9d17ab29271c738e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67b50395a32c462e9d17ab29271c738e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67b50395a32c462e9d17ab29271c738e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67b50395a32c462e9d17ab29271c738e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6eQIGegE3c5BBTWGUpGaqXeVCBM=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.07686+00 2025-12-09 10:16:01.076865+00 21011 CH595FWE#鳄鱼头3XL SPMX-20240815316263 \N \N \N 1 \N [{"file_id": "cee44ff8-4607-454e-9ca4-3736886c087b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e20981c5fca4e31bba4e35faaffc6fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e20981c5fca4e31bba4e35faaffc6fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e20981c5fca4e31bba4e35faaffc6fb.jpg", "file_size": 11590, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20981c5fca4e31bba4e35faaffc6fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20981c5fca4e31bba4e35faaffc6fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e20981c5fca4e31bba4e35faaffc6fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e20981c5fca4e31bba4e35faaffc6fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e20981c5fca4e31bba4e35faaffc6fb.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s-CXp_ovjo5NYBNq4AYYz28h5I4=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.079824+00 2025-12-09 10:16:01.079829+00 21012 JY-AD148#4号焦糖青蓝色 SPMX-20240815316259 \N \N \N 1 \N [{"file_id": "ae3b992f-0a52-4b27-a4e0-fc16d55f3e20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7402b25da6864674a47179df4114c3b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7402b25da6864674a47179df4114c3b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7402b25da6864674a47179df4114c3b2.jpg", "file_size": 17651, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD148#4号焦糖青蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7402b25da6864674a47179df4114c3b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7402b25da6864674a47179df4114c3b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7402b25da6864674a47179df4114c3b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7402b25da6864674a47179df4114c3b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7402b25da6864674a47179df4114c3b2.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o0Ivj8DYZVEcO_ehxV7v4votAto=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.082715+00 2025-12-09 10:16:01.08272+00 21013 0030-3FWE#VS-D3 SPMX-20240815316260 \N \N \N 1 \N [{"file_id": "ec22509a-d5cb-49d5-9f6c-da048fb8f10f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8efad136a5fb4465a5678717054c64d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8efad136a5fb4465a5678717054c64d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8efad136a5fb4465a5678717054c64d0.jpg", "file_size": 15546, "is_delete": false, "file_type": 1, "original_file_name": "0030-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efad136a5fb4465a5678717054c64d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efad136a5fb4465a5678717054c64d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efad136a5fb4465a5678717054c64d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8efad136a5fb4465a5678717054c64d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8efad136a5fb4465a5678717054c64d0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGTjUGyqv4jBATqsoSPQQz7pwjg=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.086509+00 2025-12-09 10:16:01.086516+00 21014 DM8186#1XL SPMX-20240815316257 \N \N \N 1 \N [{"file_id": "ef97987d-3a04-4e4b-a494-49a1507752ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb457d430e4c4eb1b5074c5bc15adf09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb457d430e4c4eb1b5074c5bc15adf09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb457d430e4c4eb1b5074c5bc15adf09.jpg", "file_size": 21507, "is_delete": false, "file_type": 1, "original_file_name": "DM8186#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb457d430e4c4eb1b5074c5bc15adf09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb457d430e4c4eb1b5074c5bc15adf09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb457d430e4c4eb1b5074c5bc15adf09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb457d430e4c4eb1b5074c5bc15adf09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb457d430e4c4eb1b5074c5bc15adf09.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YmgDZzoLmapYSc-K4JlK2oVCZDU=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.090403+00 2025-12-09 10:16:01.09041+00 21015 1270FWF#1号色捆条 SPMX-20240815316258 \N \N \N 1 \N [{"file_id": "e563c609-ef1e-4d4c-b4eb-d5d5476b1396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d285cdc5423242ee877b3403466f47e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d285cdc5423242ee877b3403466f47e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d285cdc5423242ee877b3403466f47e1.jpg", "file_size": 12924, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#1号色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d285cdc5423242ee877b3403466f47e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d285cdc5423242ee877b3403466f47e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d285cdc5423242ee877b3403466f47e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d285cdc5423242ee877b3403466f47e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d285cdc5423242ee877b3403466f47e1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JA1lL6wxNwHFs4Q-GZ87heYZHiA=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.094401+00 2025-12-09 10:16:01.094409+00 21016 LZ1423#童装T2号色 SPMX-20240815316256 \N \N \N 1 \N [{"file_id": "fdd21322-504a-4b63-b314-1e0e896a3c43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d777d29678cf4714b5cf85f82a6f750f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d777d29678cf4714b5cf85f82a6f750f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d777d29678cf4714b5cf85f82a6f750f.jpg", "file_size": 24275, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d777d29678cf4714b5cf85f82a6f750f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d777d29678cf4714b5cf85f82a6f750f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d777d29678cf4714b5cf85f82a6f750f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d777d29678cf4714b5cf85f82a6f750f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d777d29678cf4714b5cf85f82a6f750f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rXLMF-piRZPMhpTCM3ikbUJs7Yc=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.098433+00 2025-12-09 10:16:01.09844+00 21017 HXF014#大红 SPMX-20240815316261 \N \N \N 1 \N [{"file_id": "889ddd3c-a551-40c6-b9ef-f9787ee03b91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2e4c104be3f44a179596852991e84416.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2e4c104be3f44a179596852991e84416.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2e4c104be3f44a179596852991e84416.jpg", "file_size": 17674, "is_delete": false, "file_type": 1, "original_file_name": "HXF014#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e4c104be3f44a179596852991e84416.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e4c104be3f44a179596852991e84416.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2e4c104be3f44a179596852991e84416.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2e4c104be3f44a179596852991e84416.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2e4c104be3f44a179596852991e84416.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KAHr30YyFozdQsDA_ka8lEjxDtE=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.102275+00 2025-12-09 10:16:01.102281+00 21018 FX010#粉色 SPMX-20240815316264 \N \N \N 1 \N [{"file_id": "ee49623a-d4b7-4a37-b8d8-9b2dc9bfce14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87c1dc2791d94a07afc97c8d2ce7e35b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87c1dc2791d94a07afc97c8d2ce7e35b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87c1dc2791d94a07afc97c8d2ce7e35b.jpg", "file_size": 8165, "is_delete": false, "file_type": 1, "original_file_name": "FX010#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c1dc2791d94a07afc97c8d2ce7e35b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c1dc2791d94a07afc97c8d2ce7e35b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87c1dc2791d94a07afc97c8d2ce7e35b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87c1dc2791d94a07afc97c8d2ce7e35b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87c1dc2791d94a07afc97c8d2ce7e35b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMGxZpjETgvBKvDA198sofnCW2c=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.106037+00 2025-12-09 10:16:01.106045+00 21019 88380FWF#D咖色48码 SPMX-20240815316262 \N \N \N 1 \N [{"file_id": "9651982f-b1a4-42be-84f4-621b928276e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afae0f75266e4b478ac0ee27d04493c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afae0f75266e4b478ac0ee27d04493c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afae0f75266e4b478ac0ee27d04493c7.jpg", "file_size": 25340, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afae0f75266e4b478ac0ee27d04493c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afae0f75266e4b478ac0ee27d04493c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afae0f75266e4b478ac0ee27d04493c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afae0f75266e4b478ac0ee27d04493c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afae0f75266e4b478ac0ee27d04493c7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:re9li7ouFWAZPGUfTSe_Xjkxf70=", "createTime": "2024-08-15 15:09:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.109954+00 2025-12-09 10:16:01.109959+00 21020 24077#-6-C#-左 SPMX-20240815316265 \N \N \N 1 \N [{"file_id": "9f1fdf8f-ea31-4175-85fb-9a450fa0bd8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5782bd89b6640ee8c0787a43b2e6f32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5782bd89b6640ee8c0787a43b2e6f32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5782bd89b6640ee8c0787a43b2e6f32.jpg", "file_size": 47501, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-C#-左.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5782bd89b6640ee8c0787a43b2e6f32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5782bd89b6640ee8c0787a43b2e6f32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5782bd89b6640ee8c0787a43b2e6f32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5782bd89b6640ee8c0787a43b2e6f32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5782bd89b6640ee8c0787a43b2e6f32.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PFHK5_3HJ-F2y6yTaA4u8NKztlU=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.117583+00 2025-12-09 10:16:01.11759+00 21022 LJJ3186#-白红L码 SPMX-20240815316266 \N \N \N 1 \N [{"file_id": "93c4a1d5-f9a4-41ba-a17e-e7d235bcc49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "63c9f3293eaf4430ba0ca8a8dd9495be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "63c9f3293eaf4430ba0ca8a8dd9495be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "63c9f3293eaf4430ba0ca8a8dd9495be.jpg", "file_size": 15958, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白红L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c9f3293eaf4430ba0ca8a8dd9495be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c9f3293eaf4430ba0ca8a8dd9495be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/63c9f3293eaf4430ba0ca8a8dd9495be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/63c9f3293eaf4430ba0ca8a8dd9495be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/63c9f3293eaf4430ba0ca8a8dd9495be.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ux6oquTK5d91_5R1Y-y1B26Hldc=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.121866+00 2025-12-09 10:16:01.121872+00 21023 HXF014#枣红 SPMX-20240815316271 \N \N \N 1 \N [{"file_id": "91c54a8e-7438-48a7-84aa-8a06240fa98a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "587b7402b2624d66bbbbb2e0aeb96e0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "587b7402b2624d66bbbbb2e0aeb96e0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "587b7402b2624d66bbbbb2e0aeb96e0d.jpg", "file_size": 16979, "is_delete": false, "file_type": 1, "original_file_name": "HXF014#枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/587b7402b2624d66bbbbb2e0aeb96e0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/587b7402b2624d66bbbbb2e0aeb96e0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/587b7402b2624d66bbbbb2e0aeb96e0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/587b7402b2624d66bbbbb2e0aeb96e0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/587b7402b2624d66bbbbb2e0aeb96e0d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D6-A91Nr4XW0Rt-5Z_vTRm3w5CU=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.125695+00 2025-12-09 10:16:01.125702+00 21024 24077#-6-C# SPMX-20240815316277 \N \N \N 1 \N [{"file_id": "27da437d-6eb7-44c6-8ed6-e9bdc78a18ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "494aaf4c99414143bbb7783dcc3aed0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "494aaf4c99414143bbb7783dcc3aed0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "494aaf4c99414143bbb7783dcc3aed0d.jpg", "file_size": 47154, "is_delete": false, "file_type": 1, "original_file_name": "24077#-6-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494aaf4c99414143bbb7783dcc3aed0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494aaf4c99414143bbb7783dcc3aed0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494aaf4c99414143bbb7783dcc3aed0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/494aaf4c99414143bbb7783dcc3aed0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/494aaf4c99414143bbb7783dcc3aed0d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NA_i_U1J2-jefnkaVbYcBLRWGk=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.129343+00 2025-12-09 10:16:01.129349+00 21025 LJJ3186#-白红M码 SPMX-20240815316276 \N \N \N 1 \N [{"file_id": "b040c71b-a023-4783-a37f-67e21082514a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3806f18eaae4f5b95b2fcb3263eadb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3806f18eaae4f5b95b2fcb3263eadb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3806f18eaae4f5b95b2fcb3263eadb7.jpg", "file_size": 16656, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白红M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3806f18eaae4f5b95b2fcb3263eadb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3806f18eaae4f5b95b2fcb3263eadb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3806f18eaae4f5b95b2fcb3263eadb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3806f18eaae4f5b95b2fcb3263eadb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3806f18eaae4f5b95b2fcb3263eadb7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2JRQQFuMmZSN6TzzV5pl3jhhVw=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.132842+00 2025-12-09 10:16:01.132848+00 21026 0030-3FWF#白桃 SPMX-20240815316269 \N \N \N 1 \N [{"file_id": "e3c1be79-92cd-4ea2-9c92-52b7f3716030", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce76ea6a5ed1443ea1d3ec5ab472920d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce76ea6a5ed1443ea1d3ec5ab472920d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce76ea6a5ed1443ea1d3ec5ab472920d.jpg", "file_size": 11331, "is_delete": false, "file_type": 1, "original_file_name": "0030-3FWF#白桃.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76ea6a5ed1443ea1d3ec5ab472920d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76ea6a5ed1443ea1d3ec5ab472920d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce76ea6a5ed1443ea1d3ec5ab472920d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce76ea6a5ed1443ea1d3ec5ab472920d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce76ea6a5ed1443ea1d3ec5ab472920d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PBK95W150569_n4l5wmGKfmb6WY=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.136202+00 2025-12-09 10:16:01.136208+00 21027 DM8186#2XL SPMX-20240815316268 \N \N \N 1 \N [{"file_id": "fe1851ae-df3c-4ea9-8ef4-59b10f3ed9af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34334b349b5b45b3826df447f30e0f50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34334b349b5b45b3826df447f30e0f50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34334b349b5b45b3826df447f30e0f50.jpg", "file_size": 20494, "is_delete": false, "file_type": 1, "original_file_name": "DM8186#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34334b349b5b45b3826df447f30e0f50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34334b349b5b45b3826df447f30e0f50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34334b349b5b45b3826df447f30e0f50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34334b349b5b45b3826df447f30e0f50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34334b349b5b45b3826df447f30e0f50.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bzzfOuZPpdB7nCCpYatQTu4cKCs=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.139533+00 2025-12-09 10:16:01.139539+00 21028 JY-AD148#5号绿蓝色 SPMX-20240815316270 \N \N \N 1 \N [{"file_id": "b84f85d2-7ab5-4e04-b0c3-c5f02886c39e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3481e8da33948a987cd5dd6d9c87ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3481e8da33948a987cd5dd6d9c87ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3481e8da33948a987cd5dd6d9c87ad1.jpg", "file_size": 18379, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD148#5号绿蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3481e8da33948a987cd5dd6d9c87ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3481e8da33948a987cd5dd6d9c87ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3481e8da33948a987cd5dd6d9c87ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3481e8da33948a987cd5dd6d9c87ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3481e8da33948a987cd5dd6d9c87ad1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4IJL3I0VzRArs5NMz3pB4VKxAow=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.142984+00 2025-12-09 10:16:01.142991+00 21029 88380FWF#D咖色48码番禺调色 SPMX-20240815316272 \N \N \N 1 \N [{"file_id": "8a858bac-cbd7-4c47-b6e1-be1af0ccd125", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeec0a59a8e54e6abf6c8f706068c9a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeec0a59a8e54e6abf6c8f706068c9a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeec0a59a8e54e6abf6c8f706068c9a4.jpg", "file_size": 26019, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色48码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeec0a59a8e54e6abf6c8f706068c9a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeec0a59a8e54e6abf6c8f706068c9a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeec0a59a8e54e6abf6c8f706068c9a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeec0a59a8e54e6abf6c8f706068c9a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeec0a59a8e54e6abf6c8f706068c9a4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wGgZ5U2UHb_qE37jJhCIaGrHBY=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.146536+00 2025-12-09 10:16:01.146542+00 21030 LZ1423#童装T3号色 SPMX-20240815316267 \N \N \N 1 \N [{"file_id": "15f0caf9-fcfc-4645-8f21-19c195b14293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15d7e4de5fd148eaa5d4fb2129d172bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15d7e4de5fd148eaa5d4fb2129d172bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15d7e4de5fd148eaa5d4fb2129d172bb.jpg", "file_size": 22928, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d7e4de5fd148eaa5d4fb2129d172bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d7e4de5fd148eaa5d4fb2129d172bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15d7e4de5fd148eaa5d4fb2129d172bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15d7e4de5fd148eaa5d4fb2129d172bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15d7e4de5fd148eaa5d4fb2129d172bb.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gfYypBq4tgfMHwVbaDKUvdKaqY=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.149986+00 2025-12-09 10:16:01.149993+00 21031 FX010FW#改VS-D3 SPMX-20240815316275 \N \N \N 1 \N [{"file_id": "12a18989-93fd-4af5-af55-77020da5819c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68cb39f258c9478aac767f7b08cd935e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68cb39f258c9478aac767f7b08cd935e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68cb39f258c9478aac767f7b08cd935e.jpg", "file_size": 17269, "is_delete": false, "file_type": 1, "original_file_name": "FX010FW#改VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb39f258c9478aac767f7b08cd935e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb39f258c9478aac767f7b08cd935e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68cb39f258c9478aac767f7b08cd935e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68cb39f258c9478aac767f7b08cd935e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68cb39f258c9478aac767f7b08cd935e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ugzP-sLCFYHbipxRVJqQjLKUEUM=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.113652+00 2025-12-09 10:16:01.113658+00 21021 1270FWF#1号色正身 SPMX-20240815316274 \N \N \N 1 \N [{"file_id": "a6092380-066c-4f47-98c0-eb2034a4bf2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "113c97d2012c440c8f82ec4506be8807.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "113c97d2012c440c8f82ec4506be8807.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "113c97d2012c440c8f82ec4506be8807.jpg", "file_size": 16043, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#1号色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113c97d2012c440c8f82ec4506be8807.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113c97d2012c440c8f82ec4506be8807.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/113c97d2012c440c8f82ec4506be8807.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/113c97d2012c440c8f82ec4506be8807.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/113c97d2012c440c8f82ec4506be8807.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ArNRWlIDUVGZWwkzo5hA0GKaMsQ=", "createTime": "2024-08-15 15:09:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.156975+00 2025-12-09 10:16:01.156984+00 21032 HXF014FW#VS-D3 SPMX-20240815316286 \N \N \N 1 \N [{"file_id": "1b876d6a-c591-4cac-ad95-06c4ddf27ffd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fae218986aa4565bd2ec76e8797d6b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fae218986aa4565bd2ec76e8797d6b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fae218986aa4565bd2ec76e8797d6b2.jpg", "file_size": 20262, "is_delete": false, "file_type": 1, "original_file_name": "HXF014FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fae218986aa4565bd2ec76e8797d6b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fae218986aa4565bd2ec76e8797d6b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fae218986aa4565bd2ec76e8797d6b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fae218986aa4565bd2ec76e8797d6b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fae218986aa4565bd2ec76e8797d6b2.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m7pjbeM7e5NJNa9CTNyU1TF8i6E=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.160397+00 2025-12-09 10:16:01.160405+00 21033 88380FWF#D咖色50码 SPMX-20240815316282 \N \N \N 1 \N [{"file_id": "f08ed414-505d-4a0a-9145-70d4544bb86c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1706937c4d94485bb25cc50321002c54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1706937c4d94485bb25cc50321002c54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1706937c4d94485bb25cc50321002c54.jpg", "file_size": 25058, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1706937c4d94485bb25cc50321002c54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1706937c4d94485bb25cc50321002c54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1706937c4d94485bb25cc50321002c54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1706937c4d94485bb25cc50321002c54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1706937c4d94485bb25cc50321002c54.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DggC-S3p8KyeljyZTv9vUvwk0-Y=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.163783+00 2025-12-09 10:16:01.163789+00 21034 CH595FWE#鳄鱼头5XL SPMX-20240815316283 \N \N \N 1 \N [{"file_id": "4a082d13-fcef-49e5-8095-43f4bcdd898e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3de720cbceee4a94a43b93202b689e50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3de720cbceee4a94a43b93202b689e50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3de720cbceee4a94a43b93202b689e50.jpg", "file_size": 11331, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de720cbceee4a94a43b93202b689e50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de720cbceee4a94a43b93202b689e50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de720cbceee4a94a43b93202b689e50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3de720cbceee4a94a43b93202b689e50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3de720cbceee4a94a43b93202b689e50.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IDdIhwzEpXxQ01Lr7Wd5zbCwUbQ=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.167134+00 2025-12-09 10:16:01.16714+00 21035 FX010FW#裤子 SPMX-20240815316285 \N \N \N 1 \N [{"file_id": "33087897-0340-4f09-8285-2ce9e49b8379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2439338e621c4c3ab94c86185f892c4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2439338e621c4c3ab94c86185f892c4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2439338e621c4c3ab94c86185f892c4b.jpg", "file_size": 18488, "is_delete": false, "file_type": 1, "original_file_name": "FX010FW#裤子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2439338e621c4c3ab94c86185f892c4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2439338e621c4c3ab94c86185f892c4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2439338e621c4c3ab94c86185f892c4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2439338e621c4c3ab94c86185f892c4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2439338e621c4c3ab94c86185f892c4b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WtddRmf2ogVJj8QEk_dyWy711Ms=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.170579+00 2025-12-09 10:16:01.170585+00 21036 LJJ3186#-白绿L码 SPMX-20240815316287 \N \N \N 1 \N [{"file_id": "a43f3867-17ef-4d31-a3aa-d81dac8d38c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34038473e44f40c9a092dd892dbe3109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34038473e44f40c9a092dd892dbe3109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34038473e44f40c9a092dd892dbe3109.jpg", "file_size": 15968, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白绿L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34038473e44f40c9a092dd892dbe3109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34038473e44f40c9a092dd892dbe3109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34038473e44f40c9a092dd892dbe3109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34038473e44f40c9a092dd892dbe3109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34038473e44f40c9a092dd892dbe3109.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jkCNI_8Zoo_gCxEyVGY0lXbwtWA=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.17413+00 2025-12-09 10:16:01.174136+00 21037 0030-4#宝蓝 SPMX-20240815316291 \N \N \N 1 \N [{"file_id": "55816f4a-b24e-4fec-9d02-869e63cae398", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg", "file_size": 8522, "is_delete": false, "file_type": 1, "original_file_name": "0030-4#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d482dd9a4ada4e199b94ccb9dc4ea8a3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gzwZzB-uGYlZpvMC4b6HoKMSFPk=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.177803+00 2025-12-09 10:16:01.177809+00 21038 JY-AD240#1号桔色 SPMX-20240815316279 \N \N \N 1 \N [{"file_id": "f180d09a-ffe9-455d-85ab-4a6f16b9770b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c6591f8b92a45f3a88f8cc0d4b590ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c6591f8b92a45f3a88f8cc0d4b590ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c6591f8b92a45f3a88f8cc0d4b590ae.jpg", "file_size": 19036, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#1号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6591f8b92a45f3a88f8cc0d4b590ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6591f8b92a45f3a88f8cc0d4b590ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c6591f8b92a45f3a88f8cc0d4b590ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c6591f8b92a45f3a88f8cc0d4b590ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c6591f8b92a45f3a88f8cc0d4b590ae.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4NrgvopXHteCIsrJz2Tx-JSmg-8=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.181855+00 2025-12-09 10:16:01.181862+00 21039 DM8186#4XL SPMX-20240815316290 \N \N \N 1 \N [{"file_id": "5f3173ce-5cc5-40e0-854b-9f35a7ea0d63", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "932900361e0c406da508e880ec940ee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "932900361e0c406da508e880ec940ee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "932900361e0c406da508e880ec940ee7.jpg", "file_size": 19323, "is_delete": false, "file_type": 1, "original_file_name": "DM8186#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932900361e0c406da508e880ec940ee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932900361e0c406da508e880ec940ee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932900361e0c406da508e880ec940ee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/932900361e0c406da508e880ec940ee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/932900361e0c406da508e880ec940ee7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HL7G2Um6rzhEtRAu0T_TwIZa4J8=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.185636+00 2025-12-09 10:16:01.185642+00 21040 JY-AD240#1号绿色 SPMX-20240815316292 \N \N \N 1 \N [{"file_id": "e8530b9d-d2a9-40c9-834a-60ca35089e11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f90b8a5cc94d4a4fb5cc258555958585.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f90b8a5cc94d4a4fb5cc258555958585.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f90b8a5cc94d4a4fb5cc258555958585.jpg", "file_size": 19102, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#1号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90b8a5cc94d4a4fb5cc258555958585.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90b8a5cc94d4a4fb5cc258555958585.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f90b8a5cc94d4a4fb5cc258555958585.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f90b8a5cc94d4a4fb5cc258555958585.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f90b8a5cc94d4a4fb5cc258555958585.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OuOG1qfTls4Ci5lbteBiB2AWCp0=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.189281+00 2025-12-09 10:16:01.189288+00 21041 LZ1423#童装T4号色 SPMX-20240815316278 \N \N \N 1 \N [{"file_id": "c9bae3a0-855e-4e7b-8df7-a375353f6fa5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cda933b9d3c64a2e9477d8b1cfcee06a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cda933b9d3c64a2e9477d8b1cfcee06a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cda933b9d3c64a2e9477d8b1cfcee06a.jpg", "file_size": 23254, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda933b9d3c64a2e9477d8b1cfcee06a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda933b9d3c64a2e9477d8b1cfcee06a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cda933b9d3c64a2e9477d8b1cfcee06a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cda933b9d3c64a2e9477d8b1cfcee06a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cda933b9d3c64a2e9477d8b1cfcee06a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a5yjbAL8tdcVBMZ3vPkY-nIlbwI=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.192817+00 2025-12-09 10:16:01.192823+00 21042 DM8186#3XL SPMX-20240815316280 \N \N \N 1 \N [{"file_id": "59ca17a3-0eb0-4248-9921-b20d5d78ba21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dae8dc13ac34831bbc2dab5e6c56ff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dae8dc13ac34831bbc2dab5e6c56ff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dae8dc13ac34831bbc2dab5e6c56ff7.jpg", "file_size": 19784, "is_delete": false, "file_type": 1, "original_file_name": "DM8186#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dae8dc13ac34831bbc2dab5e6c56ff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dae8dc13ac34831bbc2dab5e6c56ff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dae8dc13ac34831bbc2dab5e6c56ff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dae8dc13ac34831bbc2dab5e6c56ff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dae8dc13ac34831bbc2dab5e6c56ff7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vxc9TuBgaAWdT50v4yvkLW0aEZY=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.196722+00 2025-12-09 10:16:01.196728+00 21043 24077#-7-A SPMX-20240815316288 \N \N \N 1 \N [{"file_id": "f179c348-2444-4c4a-b748-dfd30b69a3ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a8a60112100425191496f43a1f6409b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a8a60112100425191496f43a1f6409b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a8a60112100425191496f43a1f6409b.jpg", "file_size": 46559, "is_delete": false, "file_type": 1, "original_file_name": "24077#-7-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8a60112100425191496f43a1f6409b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8a60112100425191496f43a1f6409b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a8a60112100425191496f43a1f6409b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a8a60112100425191496f43a1f6409b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a8a60112100425191496f43a1f6409b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPtpL4Pg5dlvR9tCgZzcZnaACFU=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.215352+00 2025-12-09 10:16:01.215358+00 21048 HXF015#粉 SPMX-20240815316295 \N \N \N 1 \N [{"file_id": "1a6636ba-f8ba-442b-a3d7-7e19a5579c3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760544a0a284488a9ab8c16ebb10b0c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760544a0a284488a9ab8c16ebb10b0c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760544a0a284488a9ab8c16ebb10b0c3.jpg", "file_size": 10126, "is_delete": false, "file_type": 1, "original_file_name": "HXF015#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760544a0a284488a9ab8c16ebb10b0c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760544a0a284488a9ab8c16ebb10b0c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760544a0a284488a9ab8c16ebb10b0c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760544a0a284488a9ab8c16ebb10b0c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760544a0a284488a9ab8c16ebb10b0c3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iU6WhXZ2Jc7sdube55FYgQf3sMM=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.200353+00 2025-12-09 10:16:01.200359+00 21044 CH595FWE#鳄鱼头L SPMX-20240815316293 \N \N \N 1 \N [{"file_id": "dd1a4e05-a8b0-4748-947e-75c3f8e65d40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "404f28c3d1a04ee8a0b296fb3129625e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "404f28c3d1a04ee8a0b296fb3129625e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "404f28c3d1a04ee8a0b296fb3129625e.jpg", "file_size": 11075, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404f28c3d1a04ee8a0b296fb3129625e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404f28c3d1a04ee8a0b296fb3129625e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/404f28c3d1a04ee8a0b296fb3129625e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/404f28c3d1a04ee8a0b296fb3129625e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/404f28c3d1a04ee8a0b296fb3129625e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4ld8kn2TIdy51hl8oP6JNovbCSA=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.204009+00 2025-12-09 10:16:01.204015+00 21045 1270FWF#3号色捆条 SPMX-20240815316284 \N \N \N 1 \N [{"file_id": "24b1021a-bef8-468d-9ea7-002d63394778", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ed112e02d3948bf8d51a72487e51b2c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ed112e02d3948bf8d51a72487e51b2c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ed112e02d3948bf8d51a72487e51b2c.jpg", "file_size": 12237, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#3号色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed112e02d3948bf8d51a72487e51b2c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed112e02d3948bf8d51a72487e51b2c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ed112e02d3948bf8d51a72487e51b2c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ed112e02d3948bf8d51a72487e51b2c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ed112e02d3948bf8d51a72487e51b2c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EiEKT37AvNkVpQBuMpagPqBeL64=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.207723+00 2025-12-09 10:16:01.20773+00 21046 LZ1423#童装T5号色 SPMX-20240815316289 \N \N \N 1 \N [{"file_id": "f8bbb221-7179-4051-84c6-d210edb2e5c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "207c02abbb67417b9c51018cc032e44a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "207c02abbb67417b9c51018cc032e44a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "207c02abbb67417b9c51018cc032e44a.jpg", "file_size": 23631, "is_delete": false, "file_type": 1, "original_file_name": "LZ1423#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207c02abbb67417b9c51018cc032e44a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207c02abbb67417b9c51018cc032e44a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/207c02abbb67417b9c51018cc032e44a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/207c02abbb67417b9c51018cc032e44a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/207c02abbb67417b9c51018cc032e44a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Yr5BD0zYnrRnjIBxx_AyYKBJk8=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.211599+00 2025-12-09 10:16:01.211606+00 21047 0030-3FWF#粉桃 SPMX-20240815316281 \N \N \N 1 \N [{"file_id": "5085ad49-5004-43e0-a8e0-9891b9038b86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2a6220da7cf4a3798d5c7af4670f240.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2a6220da7cf4a3798d5c7af4670f240.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2a6220da7cf4a3798d5c7af4670f240.jpg", "file_size": 11261, "is_delete": false, "file_type": 1, "original_file_name": "0030-3FWF#粉桃.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a6220da7cf4a3798d5c7af4670f240.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a6220da7cf4a3798d5c7af4670f240.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2a6220da7cf4a3798d5c7af4670f240.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2a6220da7cf4a3798d5c7af4670f240.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2a6220da7cf4a3798d5c7af4670f240.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cPgSi3hhbumtLgWfU-XHBHCSH9I=", "createTime": "2024-08-15 15:09:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.219063+00 2025-12-09 10:16:01.219069+00 21049 88380FWF#D咖色50码番禺调色 SPMX-20240815316296 \N \N \N 1 \N [{"file_id": "2b9ff47c-185c-4df5-803e-cbbb375ad258", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "595ee6e4b0ab4bf6998eb3c70a6d3981.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "595ee6e4b0ab4bf6998eb3c70a6d3981.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "595ee6e4b0ab4bf6998eb3c70a6d3981.jpg", "file_size": 26397, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D咖色50码番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ee6e4b0ab4bf6998eb3c70a6d3981.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ee6e4b0ab4bf6998eb3c70a6d3981.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/595ee6e4b0ab4bf6998eb3c70a6d3981.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/595ee6e4b0ab4bf6998eb3c70a6d3981.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/595ee6e4b0ab4bf6998eb3c70a6d3981.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XJEoLGS6e2nygoOWydZQY9KYukA=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.222829+00 2025-12-09 10:16:01.222835+00 21050 DM8186#5XL SPMX-20240815316302 \N \N \N 1 \N [{"file_id": "61b0a423-e271-444f-bc7e-2fdbe28117fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8cc81e15f4b94a99af511d2f84e208fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8cc81e15f4b94a99af511d2f84e208fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8cc81e15f4b94a99af511d2f84e208fd.jpg", "file_size": 19234, "is_delete": false, "file_type": 1, "original_file_name": "DM8186#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc81e15f4b94a99af511d2f84e208fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc81e15f4b94a99af511d2f84e208fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8cc81e15f4b94a99af511d2f84e208fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8cc81e15f4b94a99af511d2f84e208fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8cc81e15f4b94a99af511d2f84e208fd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FzxlnCu6XjsulmBLeM9pOBv2I-Q=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.226668+00 2025-12-09 10:16:01.226673+00 21051 LJJ3186#-白绿M码 SPMX-20240815316298 \N \N \N 1 \N [{"file_id": "d8a04b3e-600b-456e-8194-bd0e615c85d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67716e1a34e74079b6d0a5d175a7fe2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67716e1a34e74079b6d0a5d175a7fe2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67716e1a34e74079b6d0a5d175a7fe2f.jpg", "file_size": 16534, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白绿M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67716e1a34e74079b6d0a5d175a7fe2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67716e1a34e74079b6d0a5d175a7fe2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67716e1a34e74079b6d0a5d175a7fe2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67716e1a34e74079b6d0a5d175a7fe2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67716e1a34e74079b6d0a5d175a7fe2f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:71nVZJJFtTAtYqUzL7pu5n-s5hE=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.230438+00 2025-12-09 10:16:01.230446+00 21052 24077#-7-B SPMX-20240815316299 \N \N \N 1 \N [{"file_id": "06bf0f96-4565-4a28-a9c8-18643341ae76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10d6d7f526174641bd497c7b1b93c88d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10d6d7f526174641bd497c7b1b93c88d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10d6d7f526174641bd497c7b1b93c88d.jpg", "file_size": 43966, "is_delete": false, "file_type": 1, "original_file_name": "24077#-7-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6d7f526174641bd497c7b1b93c88d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6d7f526174641bd497c7b1b93c88d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d6d7f526174641bd497c7b1b93c88d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10d6d7f526174641bd497c7b1b93c88d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10d6d7f526174641bd497c7b1b93c88d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXfowSS92FhtkenTPZP12y73xrM=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.233925+00 2025-12-09 10:16:01.233932+00 21053 1270FWF#5号色捆条 SPMX-20240815316305 \N \N \N 1 \N [{"file_id": "57ca7b5a-136a-420a-ae09-4ae1bacfe48f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8731b507b5194fb98b8e88744b988499.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8731b507b5194fb98b8e88744b988499.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8731b507b5194fb98b8e88744b988499.jpg", "file_size": 12672, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#5号色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731b507b5194fb98b8e88744b988499.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731b507b5194fb98b8e88744b988499.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8731b507b5194fb98b8e88744b988499.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8731b507b5194fb98b8e88744b988499.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8731b507b5194fb98b8e88744b988499.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LA5iBDweOgLPlmHVZuCoeRIBhuU=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.237439+00 2025-12-09 10:16:01.237445+00 21054 LZ1424#大人T2号色 SPMX-20240815316310 \N \N \N 1 \N [{"file_id": "55fa5164-9cd4-4030-b5c3-1b5083c34015", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d40054cd5934578958f3297ea3c198b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d40054cd5934578958f3297ea3c198b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d40054cd5934578958f3297ea3c198b.jpg", "file_size": 18310, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d40054cd5934578958f3297ea3c198b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d40054cd5934578958f3297ea3c198b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d40054cd5934578958f3297ea3c198b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d40054cd5934578958f3297ea3c198b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d40054cd5934578958f3297ea3c198b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A0oeRG0DO1LI4Z1Eet0o_Q38BWE=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.240731+00 2025-12-09 10:16:01.240737+00 21055 0030-4#白色 SPMX-20240815316301 \N \N \N 1 \N [{"file_id": "001981e0-c354-467e-b6de-a938bacc5754", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9378e1e8418a41d0bbae05f4ceafcc71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9378e1e8418a41d0bbae05f4ceafcc71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9378e1e8418a41d0bbae05f4ceafcc71.jpg", "file_size": 8447, "is_delete": false, "file_type": 1, "original_file_name": "0030-4#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9378e1e8418a41d0bbae05f4ceafcc71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9378e1e8418a41d0bbae05f4ceafcc71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9378e1e8418a41d0bbae05f4ceafcc71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9378e1e8418a41d0bbae05f4ceafcc71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9378e1e8418a41d0bbae05f4ceafcc71.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:69dngIWpUZpviCiVKlEwL9piOFQ=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.244299+00 2025-12-09 10:16:01.244306+00 21056 JY-AD240#1号蓝色 SPMX-20240815316303 \N \N \N 1 \N [{"file_id": "6537574b-7bd4-4d5f-a24a-66ef22f7c3d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b326bf8d2e3e4ee99f32012f18d8ff6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b326bf8d2e3e4ee99f32012f18d8ff6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b326bf8d2e3e4ee99f32012f18d8ff6f.jpg", "file_size": 19254, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b326bf8d2e3e4ee99f32012f18d8ff6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b326bf8d2e3e4ee99f32012f18d8ff6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b326bf8d2e3e4ee99f32012f18d8ff6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b326bf8d2e3e4ee99f32012f18d8ff6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b326bf8d2e3e4ee99f32012f18d8ff6f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vNsBMJwIaxa4KUejxcHTWxpSVjE=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.247943+00 2025-12-09 10:16:01.24795+00 21057 FX010FWE#绿VS-D3 SPMX-20240815316306 \N \N \N 1 \N [{"file_id": "ab42e859-0941-447a-816e-bb6612797c33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29064b06bf564c78a4b35b447807d85d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29064b06bf564c78a4b35b447807d85d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29064b06bf564c78a4b35b447807d85d.jpg", "file_size": 20617, "is_delete": false, "file_type": 1, "original_file_name": "FX010FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29064b06bf564c78a4b35b447807d85d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29064b06bf564c78a4b35b447807d85d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29064b06bf564c78a4b35b447807d85d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29064b06bf564c78a4b35b447807d85d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29064b06bf564c78a4b35b447807d85d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOvKCuXrggq5i-TL4M79sVu_Lq8=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.251499+00 2025-12-09 10:16:01.251505+00 21058 HXF015#黄 SPMX-20240815316307 \N \N \N 1 \N [{"file_id": "f99ecb69-ac24-4d5b-a289-c666d813a8c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "265b517eafe04d44842fcda5faf4ed83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "265b517eafe04d44842fcda5faf4ed83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "265b517eafe04d44842fcda5faf4ed83.jpg", "file_size": 11988, "is_delete": false, "file_type": 1, "original_file_name": "HXF015#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/265b517eafe04d44842fcda5faf4ed83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/265b517eafe04d44842fcda5faf4ed83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/265b517eafe04d44842fcda5faf4ed83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/265b517eafe04d44842fcda5faf4ed83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/265b517eafe04d44842fcda5faf4ed83.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RjG6mRHMvZJq9X2NavbdvgIrWVg=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.25509+00 2025-12-09 10:16:01.255096+00 21059 1270FWF#3号色正身 SPMX-20240815316294 \N \N \N 1 \N [{"file_id": "5a309c2d-bbf8-4c1a-bdc2-cf883f8ec2e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5d05336298a448586e6d38fa415c8a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5d05336298a448586e6d38fa415c8a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5d05336298a448586e6d38fa415c8a0.jpg", "file_size": 16627, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#3号色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d05336298a448586e6d38fa415c8a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d05336298a448586e6d38fa415c8a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5d05336298a448586e6d38fa415c8a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5d05336298a448586e6d38fa415c8a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5d05336298a448586e6d38fa415c8a0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfUnWl-pOqmQ2cChhB08kU2v3co=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.258718+00 2025-12-09 10:16:01.258725+00 21060 FX010FWE#紫VS-D3 SPMX-20240815316297 \N \N \N 1 \N [{"file_id": "5a97b181-a053-4cec-aeab-c02ee7f6beb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "519b1011d4ab4eaa9956ea42bcb225c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "519b1011d4ab4eaa9956ea42bcb225c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "519b1011d4ab4eaa9956ea42bcb225c2.jpg", "file_size": 19335, "is_delete": false, "file_type": 1, "original_file_name": "FX010FWE#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519b1011d4ab4eaa9956ea42bcb225c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519b1011d4ab4eaa9956ea42bcb225c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/519b1011d4ab4eaa9956ea42bcb225c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/519b1011d4ab4eaa9956ea42bcb225c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/519b1011d4ab4eaa9956ea42bcb225c2.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zohpez3UA9cFwN07oAw8A7SajLY=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.262321+00 2025-12-09 10:16:01.262327+00 21061 LZ1424#大人T1号色 SPMX-20240815316300 \N \N \N 1 \N [{"file_id": "af475331-1ab8-40ec-8b2d-ea2ff8eaa9d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd4ace439928464c808286eb2543d66d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd4ace439928464c808286eb2543d66d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd4ace439928464c808286eb2543d66d.jpg", "file_size": 18576, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4ace439928464c808286eb2543d66d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4ace439928464c808286eb2543d66d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd4ace439928464c808286eb2543d66d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd4ace439928464c808286eb2543d66d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd4ace439928464c808286eb2543d66d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KfLf_280apc3TZdUNrXxUPUlTk0=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.265981+00 2025-12-09 10:16:01.265989+00 21062 88380FWF#D枣红42码 SPMX-20240815316309 \N \N \N 1 \N [{"file_id": "088ea282-9057-4787-a9e1-081b2fe57fcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cac62447dd1495a80b702315efeaa4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cac62447dd1495a80b702315efeaa4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cac62447dd1495a80b702315efeaa4c.jpg", "file_size": 24349, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D枣红42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac62447dd1495a80b702315efeaa4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac62447dd1495a80b702315efeaa4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cac62447dd1495a80b702315efeaa4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cac62447dd1495a80b702315efeaa4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cac62447dd1495a80b702315efeaa4c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hsp47uid76NlKOy6k4Zmc_GdLF4=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.269574+00 2025-12-09 10:16:01.26958+00 21063 CH595FWE#鳄鱼头M SPMX-20240815316304 \N \N \N 1 \N [{"file_id": "da974c45-9535-4142-a85c-69c6a7030bf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "809b73789d63464e857a337115966cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "809b73789d63464e857a337115966cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "809b73789d63464e857a337115966cea.jpg", "file_size": 10991, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809b73789d63464e857a337115966cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809b73789d63464e857a337115966cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809b73789d63464e857a337115966cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/809b73789d63464e857a337115966cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/809b73789d63464e857a337115966cea.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFViVMj5WLhFATw2wKmVZq51hpU=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.273174+00 2025-12-09 10:16:01.273181+00 21064 LJJ3186#-白草绿L码 SPMX-20240815316308 \N \N \N 1 \N [{"file_id": "383dcc56-3284-4d7b-8426-4eadd02710f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1781ffd18efb407c8411f4fc25eb4997.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1781ffd18efb407c8411f4fc25eb4997.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1781ffd18efb407c8411f4fc25eb4997.jpg", "file_size": 15903, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白草绿L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1781ffd18efb407c8411f4fc25eb4997.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1781ffd18efb407c8411f4fc25eb4997.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1781ffd18efb407c8411f4fc25eb4997.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1781ffd18efb407c8411f4fc25eb4997.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1781ffd18efb407c8411f4fc25eb4997.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OygiAJMCIoW-rsLbsv9Dn14BQ6A=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.276762+00 2025-12-09 10:16:01.276769+00 21065 24077#-7-C# SPMX-20240815316311 \N \N \N 1 \N [{"file_id": "ab0f3b20-9046-49d2-bbf3-a509cdd269c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71679b7e1d114952a2538dde43328725.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71679b7e1d114952a2538dde43328725.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71679b7e1d114952a2538dde43328725.jpg", "file_size": 51248, "is_delete": false, "file_type": 1, "original_file_name": "24077#-7-C#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679b7e1d114952a2538dde43328725.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679b7e1d114952a2538dde43328725.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71679b7e1d114952a2538dde43328725.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71679b7e1d114952a2538dde43328725.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71679b7e1d114952a2538dde43328725.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVea3j3_sCKb2eooZAUZpG6jz7M=", "createTime": "2024-08-15 15:09:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.28037+00 2025-12-09 10:16:01.280377+00 21066 24077#-8#A SPMX-20240815316313 \N \N \N 1 \N [{"file_id": "5b20c4cf-294d-4ea6-8157-0b104e58de14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc3f8ec055fc4babb2f65c09d5d239ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc3f8ec055fc4babb2f65c09d5d239ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc3f8ec055fc4babb2f65c09d5d239ad.jpg", "file_size": 48153, "is_delete": false, "file_type": 1, "original_file_name": "24077#-8#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3f8ec055fc4babb2f65c09d5d239ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3f8ec055fc4babb2f65c09d5d239ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3f8ec055fc4babb2f65c09d5d239ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc3f8ec055fc4babb2f65c09d5d239ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc3f8ec055fc4babb2f65c09d5d239ad.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hiIssuKtT4rNL3rUlvRgSE7rZqU=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.283955+00 2025-12-09 10:16:01.283961+00 21067 1270FWF#5号色正身 SPMX-20240815316312 \N \N \N 1 \N [{"file_id": "9d052f04-73d1-41de-a3ba-d14fb62590c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "440604d7912245eb8635bb220d12ed8b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "440604d7912245eb8635bb220d12ed8b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "440604d7912245eb8635bb220d12ed8b.jpg", "file_size": 16457, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#5号色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440604d7912245eb8635bb220d12ed8b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440604d7912245eb8635bb220d12ed8b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/440604d7912245eb8635bb220d12ed8b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/440604d7912245eb8635bb220d12ed8b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/440604d7912245eb8635bb220d12ed8b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:StvKKyiUF6Z05-JTyegysqQC1vg=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.287632+00 2025-12-09 10:16:01.287643+00 21068 0030-4FWE#VS-D3 SPMX-20240815316319 \N \N \N 1 \N [{"file_id": "821e0fd6-3f25-43ed-83b9-56cf456980f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5c7f57ef58945afb750a0b06b2dc102.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5c7f57ef58945afb750a0b06b2dc102.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5c7f57ef58945afb750a0b06b2dc102.jpg", "file_size": 12393, "is_delete": false, "file_type": 1, "original_file_name": "0030-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c7f57ef58945afb750a0b06b2dc102.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c7f57ef58945afb750a0b06b2dc102.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c7f57ef58945afb750a0b06b2dc102.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5c7f57ef58945afb750a0b06b2dc102.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5c7f57ef58945afb750a0b06b2dc102.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3TWAA9TeaEXoyA23fYUEmvZf5k=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.353188+00 2025-12-09 10:16:01.353194+00 21086 DM9015#2XL SPMX-20240815316333 \N \N \N 1 \N [{"file_id": "ffe26565-1a03-48c3-ba76-fe710dcf5c8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2d6329d0ba04f238af4e60260a03792.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2d6329d0ba04f238af4e60260a03792.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2d6329d0ba04f238af4e60260a03792.jpg", "file_size": 61675, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d6329d0ba04f238af4e60260a03792.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d6329d0ba04f238af4e60260a03792.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2d6329d0ba04f238af4e60260a03792.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2d6329d0ba04f238af4e60260a03792.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2d6329d0ba04f238af4e60260a03792.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJnJBBqhJJAxY2wYg1nDRAJweow=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.291183+00 2025-12-09 10:16:01.29119+00 21069 CH595FWE#鳄鱼头S SPMX-20240815316321 \N \N \N 1 \N [{"file_id": "a4a1531a-b076-4298-af10-6ffb461884d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0e9a4365f904521be205661e09cec58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0e9a4365f904521be205661e09cec58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0e9a4365f904521be205661e09cec58.jpg", "file_size": 11058, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e9a4365f904521be205661e09cec58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e9a4365f904521be205661e09cec58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0e9a4365f904521be205661e09cec58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0e9a4365f904521be205661e09cec58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0e9a4365f904521be205661e09cec58.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hjuhMjYiexG9wyzIwWxSwu-KRtY=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.294791+00 2025-12-09 10:16:01.294797+00 21070 1270FWF#6号色捆条 SPMX-20240815316323 \N \N \N 1 \N [{"file_id": "82ef8075-5757-42c6-9ff0-88594144f01a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fb83f570abb40ed99ed7d71235be0a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fb83f570abb40ed99ed7d71235be0a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fb83f570abb40ed99ed7d71235be0a4.jpg", "file_size": 12815, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#6号色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83f570abb40ed99ed7d71235be0a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83f570abb40ed99ed7d71235be0a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fb83f570abb40ed99ed7d71235be0a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fb83f570abb40ed99ed7d71235be0a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fb83f570abb40ed99ed7d71235be0a4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PV3d91Scv3YZclJkAgK5B_o5I5w=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.298448+00 2025-12-09 10:16:01.298455+00 21071 DM9015#1XL SPMX-20240815316314 \N \N \N 1 \N [{"file_id": "f74c8cbb-4cb2-4454-b795-a33c58b7f46a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c18586a5b3b46a8b15c9260a6896f80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c18586a5b3b46a8b15c9260a6896f80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c18586a5b3b46a8b15c9260a6896f80.jpg", "file_size": 58950, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c18586a5b3b46a8b15c9260a6896f80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c18586a5b3b46a8b15c9260a6896f80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c18586a5b3b46a8b15c9260a6896f80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c18586a5b3b46a8b15c9260a6896f80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c18586a5b3b46a8b15c9260a6896f80.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WtjeadAYtijT_EQ_GcY7D7mf7g=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.302136+00 2025-12-09 10:16:01.302143+00 21072 FX011# SPMX-20240815316317 \N \N \N 1 \N [{"file_id": "00b209cc-a92e-4991-92ea-d290fdc9c016", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07f5fbda68a54ae989a8807d0f5b171e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07f5fbda68a54ae989a8807d0f5b171e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07f5fbda68a54ae989a8807d0f5b171e.jpg", "file_size": 8367, "is_delete": false, "file_type": 1, "original_file_name": "FX011#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f5fbda68a54ae989a8807d0f5b171e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f5fbda68a54ae989a8807d0f5b171e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07f5fbda68a54ae989a8807d0f5b171e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07f5fbda68a54ae989a8807d0f5b171e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07f5fbda68a54ae989a8807d0f5b171e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KEcP_GjsKvW0j0NIZBVG5y_XfXw=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.305788+00 2025-12-09 10:16:01.305794+00 21073 LJJ3186#-白草绿M码 SPMX-20240815316322 \N \N \N 1 \N [{"file_id": "2051f8eb-728d-4907-9a7c-017c79e7ec49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be107e2d924a4b98b05f71009f73c4ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be107e2d924a4b98b05f71009f73c4ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be107e2d924a4b98b05f71009f73c4ce.jpg", "file_size": 16188, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白草绿M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be107e2d924a4b98b05f71009f73c4ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be107e2d924a4b98b05f71009f73c4ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be107e2d924a4b98b05f71009f73c4ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be107e2d924a4b98b05f71009f73c4ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be107e2d924a4b98b05f71009f73c4ce.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kTKar7jHrzM8v1r0VNmQgpKKJSs=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.309495+00 2025-12-09 10:16:01.309502+00 21074 LZ1424#大人T3号色 SPMX-20240815316316 \N \N \N 1 \N [{"file_id": "bbd0ba9a-e7fd-4874-8aab-e1b0ff9fdd46", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "058736b8f4cb42a7a114151571a3e805.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "058736b8f4cb42a7a114151571a3e805.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "058736b8f4cb42a7a114151571a3e805.jpg", "file_size": 17864, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058736b8f4cb42a7a114151571a3e805.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058736b8f4cb42a7a114151571a3e805.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/058736b8f4cb42a7a114151571a3e805.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/058736b8f4cb42a7a114151571a3e805.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/058736b8f4cb42a7a114151571a3e805.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uDEdOd6G-Xx4pg2TUxS1cM9XoA0=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.313158+00 2025-12-09 10:16:01.313165+00 21075 88380FWF#D枣红44码 SPMX-20240815316318 \N \N \N 1 \N [{"file_id": "e031a010-8f3d-4457-9423-0c123d5978a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33bfb899a6e7401a91cc3b25921f182f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33bfb899a6e7401a91cc3b25921f182f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33bfb899a6e7401a91cc3b25921f182f.jpg", "file_size": 24972, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D枣红44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33bfb899a6e7401a91cc3b25921f182f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33bfb899a6e7401a91cc3b25921f182f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33bfb899a6e7401a91cc3b25921f182f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33bfb899a6e7401a91cc3b25921f182f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33bfb899a6e7401a91cc3b25921f182f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f7AaaU5VLK9x_O_f63qHZ0eA5nE=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.316821+00 2025-12-09 10:16:01.316828+00 21076 CH595FWE#鳄鱼头XL SPMX-20240815316329 \N \N \N 1 \N [{"file_id": "20cdf48a-0d51-4d27-aa9c-67ef902d3471", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "daea6b6557e54f34b86cf582e6c1394d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "daea6b6557e54f34b86cf582e6c1394d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "daea6b6557e54f34b86cf582e6c1394d.jpg", "file_size": 11192, "is_delete": false, "file_type": 1, "original_file_name": "CH595FWE#鳄鱼头XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daea6b6557e54f34b86cf582e6c1394d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daea6b6557e54f34b86cf582e6c1394d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/daea6b6557e54f34b86cf582e6c1394d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/daea6b6557e54f34b86cf582e6c1394d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/daea6b6557e54f34b86cf582e6c1394d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7WbZt2iDUXIqfDjpclf6Ftlnhwk=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.320563+00 2025-12-09 10:16:01.32057+00 21077 24077#-8#B SPMX-20240815316324 \N \N \N 1 \N [{"file_id": "627a57b0-234d-442d-8911-d13864e34770", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf88c092b314809a598482cc26d003e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf88c092b314809a598482cc26d003e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf88c092b314809a598482cc26d003e.jpg", "file_size": 43452, "is_delete": false, "file_type": 1, "original_file_name": "24077#-8#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf88c092b314809a598482cc26d003e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf88c092b314809a598482cc26d003e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf88c092b314809a598482cc26d003e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf88c092b314809a598482cc26d003e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf88c092b314809a598482cc26d003e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xvwrfEx0D14A7Y421xp1CTr-5Mg=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.324266+00 2025-12-09 10:16:01.324273+00 21078 JY-AD240#3号绿色 SPMX-20240815316320 \N \N \N 1 \N [{"file_id": "74e1d8cc-4299-47b2-a667-03d26868eee6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "005ac21a0c1248d88586c39aa33e8f02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "005ac21a0c1248d88586c39aa33e8f02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "005ac21a0c1248d88586c39aa33e8f02.jpg", "file_size": 18671, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#3号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005ac21a0c1248d88586c39aa33e8f02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005ac21a0c1248d88586c39aa33e8f02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/005ac21a0c1248d88586c39aa33e8f02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/005ac21a0c1248d88586c39aa33e8f02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/005ac21a0c1248d88586c39aa33e8f02.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bpA57R_t0x5YuCEq6ZRI9VNYtEg=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.327907+00 2025-12-09 10:16:01.327916+00 21079 HXF016#天蓝 SPMX-20240815316325 \N \N \N 1 \N [{"file_id": "79187aed-3236-4a71-b6df-a7805e90c23d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6e239f5b191402e80ab2a2a680cf670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6e239f5b191402e80ab2a2a680cf670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6e239f5b191402e80ab2a2a680cf670.jpg", "file_size": 13608, "is_delete": false, "file_type": 1, "original_file_name": "HXF016#天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e239f5b191402e80ab2a2a680cf670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e239f5b191402e80ab2a2a680cf670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6e239f5b191402e80ab2a2a680cf670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6e239f5b191402e80ab2a2a680cf670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6e239f5b191402e80ab2a2a680cf670.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G9yajNxPjvZgXGz6sUCNQ_2We3I=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.331564+00 2025-12-09 10:16:01.331571+00 21080 0030-4FWF#V5曲线 SPMX-20240815316326 \N \N \N 1 \N [{"file_id": "4fe3f102-e367-4448-95f9-2ef70e9755f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad9ec1c17a924f7e8e1713769af8b6eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad9ec1c17a924f7e8e1713769af8b6eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad9ec1c17a924f7e8e1713769af8b6eb.jpg", "file_size": 6193, "is_delete": false, "file_type": 1, "original_file_name": "0030-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9ec1c17a924f7e8e1713769af8b6eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9ec1c17a924f7e8e1713769af8b6eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad9ec1c17a924f7e8e1713769af8b6eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad9ec1c17a924f7e8e1713769af8b6eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad9ec1c17a924f7e8e1713769af8b6eb.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O32MNfNB7fgG2wGoJB7pZGyC-r0=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.335156+00 2025-12-09 10:16:01.335162+00 21081 HXF015FW#VS-D3 SPMX-20240815316315 \N \N \N 1 \N [{"file_id": "9267d111-e3a7-4f08-9952-57c30bd4da7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "732fde1426dd4431a623efaecbe4d603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "732fde1426dd4431a623efaecbe4d603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "732fde1426dd4431a623efaecbe4d603.jpg", "file_size": 18170, "is_delete": false, "file_type": 1, "original_file_name": "HXF015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/732fde1426dd4431a623efaecbe4d603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/732fde1426dd4431a623efaecbe4d603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/732fde1426dd4431a623efaecbe4d603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/732fde1426dd4431a623efaecbe4d603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/732fde1426dd4431a623efaecbe4d603.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Df_o9_WWwzThLF6zajB9EzA0awY=", "createTime": "2024-08-15 15:09:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.33867+00 2025-12-09 10:16:01.338676+00 21082 88380FWF#D枣红46码 SPMX-20240815316327 \N \N \N 1 \N [{"file_id": "898db023-2c7e-4876-94f4-047f5162de18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d15a70b2c04246d985533c07d4af5321.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d15a70b2c04246d985533c07d4af5321.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d15a70b2c04246d985533c07d4af5321.jpg", "file_size": 25710, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D枣红46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d15a70b2c04246d985533c07d4af5321.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d15a70b2c04246d985533c07d4af5321.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d15a70b2c04246d985533c07d4af5321.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d15a70b2c04246d985533c07d4af5321.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d15a70b2c04246d985533c07d4af5321.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DuOcYR_adSQ_2nV-yQJs2VordD0=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.342315+00 2025-12-09 10:16:01.342321+00 21083 FX011#蓝VS-D3 SPMX-20240815316328 \N \N \N 1 \N [{"file_id": "62a215db-8b7a-43c0-ab6f-153e7a9ce6cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42b089c02a8943638151f3dc24e57c57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42b089c02a8943638151f3dc24e57c57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42b089c02a8943638151f3dc24e57c57.jpg", "file_size": 11434, "is_delete": false, "file_type": 1, "original_file_name": "FX011#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b089c02a8943638151f3dc24e57c57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b089c02a8943638151f3dc24e57c57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42b089c02a8943638151f3dc24e57c57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42b089c02a8943638151f3dc24e57c57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42b089c02a8943638151f3dc24e57c57.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tuuO6Oqt2qVWZ3bR26ufL2P5aQ4=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.346006+00 2025-12-09 10:16:01.346012+00 21084 CH640FWE#时髦女郎2XL SPMX-20240815316335 \N \N \N 1 \N [{"file_id": "5ea07bcc-8343-4e1d-b2a2-3d73436fa56f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6a542993487423e87e4cb80f2ac3f74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6a542993487423e87e4cb80f2ac3f74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6a542993487423e87e4cb80f2ac3f74.jpg", "file_size": 9745, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a542993487423e87e4cb80f2ac3f74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a542993487423e87e4cb80f2ac3f74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6a542993487423e87e4cb80f2ac3f74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6a542993487423e87e4cb80f2ac3f74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6a542993487423e87e4cb80f2ac3f74.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eHVA5j9xGtC9Fc8vsQoS_QiAog0=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.349593+00 2025-12-09 10:16:01.349599+00 21085 88380FWF#D枣红48码 SPMX-20240815316338 \N \N \N 1 \N [{"file_id": "baa7bbed-5e07-40fe-bb2a-59bee459d2ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18bc580c5fde475595f5e62b89cb1566.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18bc580c5fde475595f5e62b89cb1566.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18bc580c5fde475595f5e62b89cb1566.jpg", "file_size": 25883, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D枣红48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bc580c5fde475595f5e62b89cb1566.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bc580c5fde475595f5e62b89cb1566.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18bc580c5fde475595f5e62b89cb1566.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18bc580c5fde475595f5e62b89cb1566.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18bc580c5fde475595f5e62b89cb1566.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LaN5XfFgwR_EysvYR0J-9GcI06c=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.356785+00 2025-12-09 10:16:01.356791+00 21087 JY-AD240#5号桔色 SPMX-20240815316331 \N \N \N 1 \N [{"file_id": "1ed656f4-260c-468d-8b61-9cedb1f96a29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "511a48c80e674eb1be99285b3a1ba12b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "511a48c80e674eb1be99285b3a1ba12b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "511a48c80e674eb1be99285b3a1ba12b.jpg", "file_size": 18037, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#5号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511a48c80e674eb1be99285b3a1ba12b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511a48c80e674eb1be99285b3a1ba12b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511a48c80e674eb1be99285b3a1ba12b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/511a48c80e674eb1be99285b3a1ba12b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/511a48c80e674eb1be99285b3a1ba12b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xmb3K8xz6ucx6zoKjwBIz3V-5O4=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.360416+00 2025-12-09 10:16:01.360422+00 21088 1270FWF#6号色正身 SPMX-20240815316334 \N \N \N 1 \N [{"file_id": "8c20450a-051d-4219-aed7-1952713388f3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42cc1fb7ba114f11a80e7335d05fc85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42cc1fb7ba114f11a80e7335d05fc85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42cc1fb7ba114f11a80e7335d05fc85c.jpg", "file_size": 15905, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#6号色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42cc1fb7ba114f11a80e7335d05fc85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42cc1fb7ba114f11a80e7335d05fc85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42cc1fb7ba114f11a80e7335d05fc85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42cc1fb7ba114f11a80e7335d05fc85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42cc1fb7ba114f11a80e7335d05fc85c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CDeehQ-L2kAhnJttB6x3Tg8s-io=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.364054+00 2025-12-09 10:16:01.36406+00 21089 LJJ3186#-白蓝M码 SPMX-20240815316340 \N \N \N 1 \N [{"file_id": "fb166add-7763-4fc6-bde4-61ae60c58c83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c67c1cbebc1c4d6894fceeea7f421f02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c67c1cbebc1c4d6894fceeea7f421f02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c67c1cbebc1c4d6894fceeea7f421f02.jpg", "file_size": 16511, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白蓝M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c67c1cbebc1c4d6894fceeea7f421f02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c67c1cbebc1c4d6894fceeea7f421f02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c67c1cbebc1c4d6894fceeea7f421f02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c67c1cbebc1c4d6894fceeea7f421f02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c67c1cbebc1c4d6894fceeea7f421f02.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8tcGtCMO99b-F8eL7ujNsFxsmQU=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.367717+00 2025-12-09 10:16:01.367723+00 21090 24077#-8-A SPMX-20240815316342 \N \N \N 1 \N [{"file_id": "8c7ae2b0-825d-48b1-9169-b6447a454a37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bd16a0655e074e3bbde60360c3c1869d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bd16a0655e074e3bbde60360c3c1869d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bd16a0655e074e3bbde60360c3c1869d.jpg", "file_size": 50303, "is_delete": false, "file_type": 1, "original_file_name": "24077#-8-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd16a0655e074e3bbde60360c3c1869d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd16a0655e074e3bbde60360c3c1869d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bd16a0655e074e3bbde60360c3c1869d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bd16a0655e074e3bbde60360c3c1869d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bd16a0655e074e3bbde60360c3c1869d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rEoDDs28Bml0co_11NGRrFk00iw=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.371283+00 2025-12-09 10:16:01.371288+00 21091 FX011FW#VS-D3 SPMX-20240815316336 \N \N \N 1 \N [{"file_id": "8cec3e05-e7b0-4f2a-bd5d-0a8bb7298df0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e483751a0dd4834ace94f871aafe438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e483751a0dd4834ace94f871aafe438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e483751a0dd4834ace94f871aafe438.jpg", "file_size": 9807, "is_delete": false, "file_type": 1, "original_file_name": "FX011FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e483751a0dd4834ace94f871aafe438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e483751a0dd4834ace94f871aafe438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e483751a0dd4834ace94f871aafe438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e483751a0dd4834ace94f871aafe438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e483751a0dd4834ace94f871aafe438.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sonGRj8xxNwKGYUnooruu7b1uhc=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.374893+00 2025-12-09 10:16:01.374899+00 21092 HXF016#粉色 SPMX-20240815316337 \N \N \N 1 \N [{"file_id": "2f682965-dccc-4281-8e02-e37b3fe79c5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c62d60c036a94af1b7056bc66dc77267.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c62d60c036a94af1b7056bc66dc77267.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c62d60c036a94af1b7056bc66dc77267.jpg", "file_size": 11701, "is_delete": false, "file_type": 1, "original_file_name": "HXF016#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62d60c036a94af1b7056bc66dc77267.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62d60c036a94af1b7056bc66dc77267.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c62d60c036a94af1b7056bc66dc77267.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c62d60c036a94af1b7056bc66dc77267.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c62d60c036a94af1b7056bc66dc77267.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dCoULD2Z_0JqUkmKiQO067vJdLM=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.378516+00 2025-12-09 10:16:01.378523+00 21093 0030-5#WJC22 SPMX-20240815316339 \N \N \N 1 \N [{"file_id": "34c18e5f-26b7-4342-ae3a-a82cee0b6bfa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09bade1858044afab3ff48ccd5ba7b2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09bade1858044afab3ff48ccd5ba7b2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09bade1858044afab3ff48ccd5ba7b2e.jpg", "file_size": 9037, "is_delete": false, "file_type": 1, "original_file_name": "0030-5#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09bade1858044afab3ff48ccd5ba7b2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09bade1858044afab3ff48ccd5ba7b2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09bade1858044afab3ff48ccd5ba7b2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09bade1858044afab3ff48ccd5ba7b2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09bade1858044afab3ff48ccd5ba7b2e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RguoLKSHryZ7nPwuHX3eHZTQvdw=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.38207+00 2025-12-09 10:16:01.382076+00 21094 JY-AD240#6号白色 SPMX-20240815316341 \N \N \N 1 \N [{"file_id": "ab0be2be-e006-4727-901a-6e40957b0379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a2478f6e8324eaea78d93bc8c2e0f2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a2478f6e8324eaea78d93bc8c2e0f2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a2478f6e8324eaea78d93bc8c2e0f2e.jpg", "file_size": 16815, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#6号白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2478f6e8324eaea78d93bc8c2e0f2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2478f6e8324eaea78d93bc8c2e0f2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a2478f6e8324eaea78d93bc8c2e0f2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a2478f6e8324eaea78d93bc8c2e0f2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a2478f6e8324eaea78d93bc8c2e0f2e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aDHDcQnpeeXbjzekPNdAi0golvQ=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.400109+00 2025-12-09 10:16:01.400115+00 21099 HXF016FW#VS-D3 SPMX-20240815316345 \N \N \N 1 \N [{"file_id": "27153721-cbee-4ba7-816b-5f93e69c8c64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01f1bdc5927d41f4900f68b63d1ac810.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01f1bdc5927d41f4900f68b63d1ac810.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01f1bdc5927d41f4900f68b63d1ac810.jpg", "file_size": 9537, "is_delete": false, "file_type": 1, "original_file_name": "HXF016FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f1bdc5927d41f4900f68b63d1ac810.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f1bdc5927d41f4900f68b63d1ac810.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01f1bdc5927d41f4900f68b63d1ac810.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01f1bdc5927d41f4900f68b63d1ac810.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01f1bdc5927d41f4900f68b63d1ac810.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eeTLhXW9fCR3soJRUerJ3NgFyB4=", "createTime": "2024-08-15 15:09:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.385681+00 2025-12-09 10:16:01.385688+00 21095 LJJ3186#-白蓝L码 SPMX-20240815316330 \N \N \N 1 \N [{"file_id": "997704f5-79c4-4de6-b5a4-f165ed758502", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c509328eca34f9397c43dc984dd36fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c509328eca34f9397c43dc984dd36fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c509328eca34f9397c43dc984dd36fb.jpg", "file_size": 16658, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白蓝L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c509328eca34f9397c43dc984dd36fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c509328eca34f9397c43dc984dd36fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c509328eca34f9397c43dc984dd36fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c509328eca34f9397c43dc984dd36fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c509328eca34f9397c43dc984dd36fb.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RAToYI7D2o_dpRBiLrZmSCFdKGI=", "createTime": "2024-08-15 15:09:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.389301+00 2025-12-09 10:16:01.389308+00 21096 LZ1424#大人T4号色 SPMX-20240815316332 \N \N \N 1 \N [{"file_id": "c2221bbd-841d-4479-a745-c4f1198de6bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b790ffbf1d480982c9b456bb3e4072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b790ffbf1d480982c9b456bb3e4072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b790ffbf1d480982c9b456bb3e4072.jpg", "file_size": 19326, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b790ffbf1d480982c9b456bb3e4072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b790ffbf1d480982c9b456bb3e4072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b790ffbf1d480982c9b456bb3e4072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b790ffbf1d480982c9b456bb3e4072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b790ffbf1d480982c9b456bb3e4072.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f1qfgcTR1QrlYMqk5UOFlFgRlrM=", "createTime": "2024-08-15 15:09:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.392904+00 2025-12-09 10:16:01.39291+00 21097 DM9015#3XL SPMX-20240815316344 \N \N \N 1 \N [{"file_id": "e5197619-a135-496f-a405-8bf8113a118c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f7c4dc4740f46d493ec170a0fc0177d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f7c4dc4740f46d493ec170a0fc0177d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f7c4dc4740f46d493ec170a0fc0177d.jpg", "file_size": 50780, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7c4dc4740f46d493ec170a0fc0177d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7c4dc4740f46d493ec170a0fc0177d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f7c4dc4740f46d493ec170a0fc0177d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f7c4dc4740f46d493ec170a0fc0177d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f7c4dc4740f46d493ec170a0fc0177d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J5iBZa2uaxUPqJiS8hmg9LdRWCk=", "createTime": "2024-08-15 15:09:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.396494+00 2025-12-09 10:16:01.396501+00 21098 LZ1424#大人T5号色 SPMX-20240815316343 \N \N \N 1 \N [{"file_id": "ac88f25c-1b15-4c48-91b1-bc49660ae558", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5341b3ce3024d998737ca33fce26b7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5341b3ce3024d998737ca33fce26b7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5341b3ce3024d998737ca33fce26b7a.jpg", "file_size": 19440, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5341b3ce3024d998737ca33fce26b7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5341b3ce3024d998737ca33fce26b7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5341b3ce3024d998737ca33fce26b7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5341b3ce3024d998737ca33fce26b7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5341b3ce3024d998737ca33fce26b7a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xINPnEuWA5xAiYZuEwWk7YrfdSY=", "createTime": "2024-08-15 15:09:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.403685+00 2025-12-09 10:16:01.403691+00 21100 HXF017# SPMX-20240815316357 \N \N \N 1 \N [{"file_id": "174f1fb1-eedf-4636-bb26-6ddc82829bbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a5060d37cff4a81b1288905d1c5db45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a5060d37cff4a81b1288905d1c5db45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a5060d37cff4a81b1288905d1c5db45.jpg", "file_size": 25192, "is_delete": false, "file_type": 1, "original_file_name": "HXF017#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5060d37cff4a81b1288905d1c5db45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5060d37cff4a81b1288905d1c5db45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a5060d37cff4a81b1288905d1c5db45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a5060d37cff4a81b1288905d1c5db45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a5060d37cff4a81b1288905d1c5db45.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Kvj04jR4cBFxdptNzJ6WniN2_U=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.407344+00 2025-12-09 10:16:01.40735+00 21101 CH640FWE#时髦女郎5XL SPMX-20240815316358 \N \N \N 1 \N [{"file_id": "abdcc7da-1678-487d-8627-50c3a662e9bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg", "file_size": 9764, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5d5ca6d02514cfc97fcf50aa02ea5c0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nv80KPqzg9zm5SXxWDp9J_PEAkU=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.411015+00 2025-12-09 10:16:01.411021+00 21102 FX012# SPMX-20240815316355 \N \N \N 1 \N [{"file_id": "224e0833-6e9a-492c-9478-5141a7f63014", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fd2be875a5443b1a200ce2653b7748e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fd2be875a5443b1a200ce2653b7748e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fd2be875a5443b1a200ce2653b7748e.jpg", "file_size": 8679, "is_delete": false, "file_type": 1, "original_file_name": "FX012#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd2be875a5443b1a200ce2653b7748e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd2be875a5443b1a200ce2653b7748e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fd2be875a5443b1a200ce2653b7748e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fd2be875a5443b1a200ce2653b7748e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fd2be875a5443b1a200ce2653b7748e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FIfItSAdxpvZVA0oxgj15Qq2zm0=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.414644+00 2025-12-09 10:16:01.414651+00 21103 JY-AD240#7号白色 SPMX-20240815316349 \N \N \N 1 \N [{"file_id": "3f3c8935-e0f6-413b-b7f3-b9272c69f464", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a675eee2b65c435797eeaa8d06aeb45f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a675eee2b65c435797eeaa8d06aeb45f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a675eee2b65c435797eeaa8d06aeb45f.jpg", "file_size": 16795, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#7号白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a675eee2b65c435797eeaa8d06aeb45f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a675eee2b65c435797eeaa8d06aeb45f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a675eee2b65c435797eeaa8d06aeb45f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a675eee2b65c435797eeaa8d06aeb45f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a675eee2b65c435797eeaa8d06aeb45f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1V1EgqXcLXgYaj_WLb-AL-TMojo=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.535966+00 2025-12-09 10:16:01.535973+00 21138 1272#5XL SPMX-20240815316371 \N \N \N 1 \N [{"file_id": "f142c840-bde1-4876-9d57-49a3bbf54f4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f2142b70d654b07908c65f3c061f832.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f2142b70d654b07908c65f3c061f832.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f2142b70d654b07908c65f3c061f832.jpg", "file_size": 33668, "is_delete": false, "file_type": 1, "original_file_name": "1272#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2142b70d654b07908c65f3c061f832.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2142b70d654b07908c65f3c061f832.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f2142b70d654b07908c65f3c061f832.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f2142b70d654b07908c65f3c061f832.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f2142b70d654b07908c65f3c061f832.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vPIfxnsf_QiPkOL65FjHdtz-CQw=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.418282+00 2025-12-09 10:16:01.418289+00 21104 LZ1424#大人T号色 SPMX-20240815316352 \N \N \N 1 \N [{"file_id": "c3cee4b0-2217-4eac-97c5-6c9dfdb1a78f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51888ec592fe487ba7739a6e2babee1f.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51888ec592fe487ba7739a6e2babee1f.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51888ec592fe487ba7739a6e2babee1f.png", "file_size": 90560, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#大人T号色.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51888ec592fe487ba7739a6e2babee1f.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51888ec592fe487ba7739a6e2babee1f.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51888ec592fe487ba7739a6e2babee1f.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51888ec592fe487ba7739a6e2babee1f.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51888ec592fe487ba7739a6e2babee1f.png?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-bNLijFEgRD39otm1uOOpppzfZ0=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.421924+00 2025-12-09 10:16:01.421932+00 21105 DM9015#4XL SPMX-20240815316356 \N \N \N 1 \N [{"file_id": "fa039888-5e8c-4219-8147-f1f62e0a4e02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "984426e9c80b4a229d48ae699419f672.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "984426e9c80b4a229d48ae699419f672.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "984426e9c80b4a229d48ae699419f672.jpg", "file_size": 46670, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/984426e9c80b4a229d48ae699419f672.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/984426e9c80b4a229d48ae699419f672.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/984426e9c80b4a229d48ae699419f672.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/984426e9c80b4a229d48ae699419f672.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/984426e9c80b4a229d48ae699419f672.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bi8K_nrPsdIJ3ralN03-Sjx6M4Q=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.426105+00 2025-12-09 10:16:01.426112+00 21106 88380FWF#D枣红50码 SPMX-20240815316350 \N \N \N 1 \N [{"file_id": "cc7a1a21-a135-44f5-b97a-9f5f7d1930c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "521a6f01f06f4cae8d6890b5f9c5bd38.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "521a6f01f06f4cae8d6890b5f9c5bd38.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "521a6f01f06f4cae8d6890b5f9c5bd38.jpg", "file_size": 26080, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D枣红50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521a6f01f06f4cae8d6890b5f9c5bd38.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521a6f01f06f4cae8d6890b5f9c5bd38.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/521a6f01f06f4cae8d6890b5f9c5bd38.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/521a6f01f06f4cae8d6890b5f9c5bd38.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/521a6f01f06f4cae8d6890b5f9c5bd38.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ynkjZDTV4UqZG8EZpXZgFgjjXw=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.430106+00 2025-12-09 10:16:01.430113+00 21107 24077#-8-B SPMX-20240815316353 \N \N \N 1 \N [{"file_id": "da514f0d-39a4-49b9-a114-43ae5e950a9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4e57318974e4565a10b4daefea567dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4e57318974e4565a10b4daefea567dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4e57318974e4565a10b4daefea567dd.jpg", "file_size": 43690, "is_delete": false, "file_type": 1, "original_file_name": "24077#-8-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e57318974e4565a10b4daefea567dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e57318974e4565a10b4daefea567dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e57318974e4565a10b4daefea567dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4e57318974e4565a10b4daefea567dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4e57318974e4565a10b4daefea567dd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iQu08ApztyOPndvv73hM25rPSz4=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.568377+00 2025-12-09 10:16:01.568384+00 21147 FX012FW#VS-D3 SPMX-20240815316392 \N \N \N 1 \N [{"file_id": "df4be340-57fd-4c49-bcf5-35dc64c4848b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "843efd152bfd4b128e2a76817ae503a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "843efd152bfd4b128e2a76817ae503a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "843efd152bfd4b128e2a76817ae503a7.jpg", "file_size": 11163, "is_delete": false, "file_type": 1, "original_file_name": "FX012FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843efd152bfd4b128e2a76817ae503a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843efd152bfd4b128e2a76817ae503a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/843efd152bfd4b128e2a76817ae503a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/843efd152bfd4b128e2a76817ae503a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/843efd152bfd4b128e2a76817ae503a7.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3ljEInj_zyMvTVTzSzHUTDkg3w=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.433901+00 2025-12-09 10:16:01.433908+00 21108 CH640FWE#时髦女郎3XL SPMX-20240815316347 \N \N \N 1 \N [{"file_id": "af24b29f-9354-4454-8487-ee2e9b06b9be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b654d070a941487bbe2b2f1d3427bdce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b654d070a941487bbe2b2f1d3427bdce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b654d070a941487bbe2b2f1d3427bdce.jpg", "file_size": 9309, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b654d070a941487bbe2b2f1d3427bdce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b654d070a941487bbe2b2f1d3427bdce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b654d070a941487bbe2b2f1d3427bdce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b654d070a941487bbe2b2f1d3427bdce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b654d070a941487bbe2b2f1d3427bdce.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wZWJvoeSJYiGB1cOzpD_gbDTzeg=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.437591+00 2025-12-09 10:16:01.437597+00 21109 0030-5FWE#VS-D3 SPMX-20240815316354 \N \N \N 1 \N [{"file_id": "cf4a80e9-3fc9-4b66-8424-288670474687", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c5a16e9fea449c79af187c6cc2dfbd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c5a16e9fea449c79af187c6cc2dfbd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c5a16e9fea449c79af187c6cc2dfbd1.jpg", "file_size": 12263, "is_delete": false, "file_type": 1, "original_file_name": "0030-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5a16e9fea449c79af187c6cc2dfbd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5a16e9fea449c79af187c6cc2dfbd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c5a16e9fea449c79af187c6cc2dfbd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c5a16e9fea449c79af187c6cc2dfbd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c5a16e9fea449c79af187c6cc2dfbd1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rI_Slrj3EVqcTxO2eis58kewYEc=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.441497+00 2025-12-09 10:16:01.441504+00 21110 1270FWF#原版色捆条 SPMX-20240815316348 \N \N \N 1 \N [{"file_id": "df65ae06-d79a-4a7a-a04a-73ca05c9cc94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3733d1ddff6c42439edafad756a46c14.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3733d1ddff6c42439edafad756a46c14.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3733d1ddff6c42439edafad756a46c14.jpg", "file_size": 12829, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#原版色捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3733d1ddff6c42439edafad756a46c14.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3733d1ddff6c42439edafad756a46c14.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3733d1ddff6c42439edafad756a46c14.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3733d1ddff6c42439edafad756a46c14.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3733d1ddff6c42439edafad756a46c14.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sr5v79sES-MsCtYp1TO7aemO0l4=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.445264+00 2025-12-09 10:16:01.445271+00 21111 LJJ3186#-白黑L码 SPMX-20240815316351 \N \N \N 1 \N [{"file_id": "918def8f-84cd-4f33-bc17-a880467c6688", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d43b6c0938a84f8088bb66fd401953a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d43b6c0938a84f8088bb66fd401953a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d43b6c0938a84f8088bb66fd401953a4.jpg", "file_size": 15815, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白黑L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43b6c0938a84f8088bb66fd401953a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43b6c0938a84f8088bb66fd401953a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d43b6c0938a84f8088bb66fd401953a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d43b6c0938a84f8088bb66fd401953a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d43b6c0938a84f8088bb66fd401953a4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yr_L-2S9eY_8BvFWr2Gomn27eG8=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.448729+00 2025-12-09 10:16:01.448734+00 21112 1270FWF#原版色正身 SPMX-20240815316359 \N \N \N 1 \N [{"file_id": "7bdcf301-b547-43a2-a4a3-9e05e1cbe3b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaeed51dedda43d1b8e664de1ff1d6b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaeed51dedda43d1b8e664de1ff1d6b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaeed51dedda43d1b8e664de1ff1d6b0.jpg", "file_size": 16905, "is_delete": false, "file_type": 1, "original_file_name": "1270FWF#原版色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeed51dedda43d1b8e664de1ff1d6b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeed51dedda43d1b8e664de1ff1d6b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaeed51dedda43d1b8e664de1ff1d6b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaeed51dedda43d1b8e664de1ff1d6b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaeed51dedda43d1b8e664de1ff1d6b0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2oG8QMAre5IHF-HBjsWrztUsjeI=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.451864+00 2025-12-09 10:16:01.451868+00 21113 FX011FWE#VS-D3 SPMX-20240815316346 \N \N \N 1 \N [{"file_id": "88fd138c-56d3-4237-8398-50768959f9ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a299ef2f2a144cfaad83e3ac3536bf37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a299ef2f2a144cfaad83e3ac3536bf37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a299ef2f2a144cfaad83e3ac3536bf37.jpg", "file_size": 8810, "is_delete": false, "file_type": 1, "original_file_name": "FX011FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299ef2f2a144cfaad83e3ac3536bf37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299ef2f2a144cfaad83e3ac3536bf37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a299ef2f2a144cfaad83e3ac3536bf37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a299ef2f2a144cfaad83e3ac3536bf37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a299ef2f2a144cfaad83e3ac3536bf37.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:npeiNuOMJJ3ykS-pF0_3gCHJtEI=", "createTime": "2024-08-15 15:09:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.45483+00 2025-12-09 10:16:01.454835+00 21114 HXF017#点点 SPMX-20240815316367 \N \N \N 1 \N [{"file_id": "3c5269c9-7f50-4998-998a-e62500e610b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74842eaaeb954804890ab0264814534e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74842eaaeb954804890ab0264814534e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74842eaaeb954804890ab0264814534e.jpg", "file_size": 21033, "is_delete": false, "file_type": 1, "original_file_name": "HXF017#点点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74842eaaeb954804890ab0264814534e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74842eaaeb954804890ab0264814534e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74842eaaeb954804890ab0264814534e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74842eaaeb954804890ab0264814534e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74842eaaeb954804890ab0264814534e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1Rn_fgO21TadxZAg7nqU6JFsS7c=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.457758+00 2025-12-09 10:16:01.457762+00 21115 JY-AD240#7号黄色 SPMX-20240815316360 \N \N \N 1 \N [{"file_id": "ace371bb-0709-4291-b5fa-af643c090b3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "809acc3ada904400a6019eea32245da3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "809acc3ada904400a6019eea32245da3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "809acc3ada904400a6019eea32245da3.jpg", "file_size": 17126, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#7号黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809acc3ada904400a6019eea32245da3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809acc3ada904400a6019eea32245da3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/809acc3ada904400a6019eea32245da3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/809acc3ada904400a6019eea32245da3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/809acc3ada904400a6019eea32245da3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wkCoJVY3SV8SYPvaVRO8WNTcAQ=", "createTime": "2024-08-15 15:09:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.46067+00 2025-12-09 10:16:01.460675+00 21116 LJJ3186#-白黑M码 SPMX-20240815316362 \N \N \N 1 \N [{"file_id": "0f62b279-cf7c-45c2-9364-48923cd1502e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8044ea6a5304a60af90bdc608ca572a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8044ea6a5304a60af90bdc608ca572a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8044ea6a5304a60af90bdc608ca572a.jpg", "file_size": 16217, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-白黑M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8044ea6a5304a60af90bdc608ca572a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8044ea6a5304a60af90bdc608ca572a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8044ea6a5304a60af90bdc608ca572a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8044ea6a5304a60af90bdc608ca572a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8044ea6a5304a60af90bdc608ca572a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s169Gi_X1wobGagXearvvabV6gM=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.46375+00 2025-12-09 10:16:01.463756+00 21117 LZ1424#童装T1号色 SPMX-20240815316364 \N \N \N 1 \N [{"file_id": "da91488c-878e-47d5-8576-8b9dada9c815", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg", "file_size": 21964, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51b4e981dc6e4d8ca508cc0ffe0b1a79.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ZzXqHmioWiWSIOsW64VyLIsB3c=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.467211+00 2025-12-09 10:16:01.467217+00 21118 0030-5FWF#灰蓝小花 SPMX-20240815316363 \N \N \N 1 \N [{"file_id": "9b87a105-e795-490c-a918-84d69261ef03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f16ba4690d4457aa4fc3628a2c7f5b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f16ba4690d4457aa4fc3628a2c7f5b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f16ba4690d4457aa4fc3628a2c7f5b1.jpg", "file_size": 18116, "is_delete": false, "file_type": 1, "original_file_name": "0030-5FWF#灰蓝小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f16ba4690d4457aa4fc3628a2c7f5b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f16ba4690d4457aa4fc3628a2c7f5b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f16ba4690d4457aa4fc3628a2c7f5b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f16ba4690d4457aa4fc3628a2c7f5b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f16ba4690d4457aa4fc3628a2c7f5b1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XqA0IbIYo4iUQ72PludD2aLwzvU=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.470631+00 2025-12-09 10:16:01.470637+00 21119 FX012#绿VS-D3 SPMX-20240815316366 \N \N \N 1 \N [{"file_id": "0a080e55-1bb3-48ee-8386-83c504c553a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b86b5cae4e174d2faefa12caa13bba05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b86b5cae4e174d2faefa12caa13bba05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b86b5cae4e174d2faefa12caa13bba05.jpg", "file_size": 10717, "is_delete": false, "file_type": 1, "original_file_name": "FX012#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86b5cae4e174d2faefa12caa13bba05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86b5cae4e174d2faefa12caa13bba05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86b5cae4e174d2faefa12caa13bba05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b86b5cae4e174d2faefa12caa13bba05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b86b5cae4e174d2faefa12caa13bba05.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Quc5oaMXZ0IvUhwpP0pFmsg3U_0=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.474027+00 2025-12-09 10:16:01.474033+00 21120 88380FWF#D水绿42码 SPMX-20240815316361 \N \N \N 1 \N [{"file_id": "759a2dda-7654-4640-b837-2df152394ec2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c611ba91cb204ac288f55181ba02dbf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c611ba91cb204ac288f55181ba02dbf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c611ba91cb204ac288f55181ba02dbf9.jpg", "file_size": 23268, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D水绿42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c611ba91cb204ac288f55181ba02dbf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c611ba91cb204ac288f55181ba02dbf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c611ba91cb204ac288f55181ba02dbf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c611ba91cb204ac288f55181ba02dbf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c611ba91cb204ac288f55181ba02dbf9.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bj6LBlA1qB5bk7rqD4oDHIbIeAw=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.477532+00 2025-12-09 10:16:01.477539+00 21121 24077#-8-C SPMX-20240815316365 \N \N \N 1 \N [{"file_id": "10f9386d-3c32-4843-9b38-6c82234a7ad6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a85bbb070ab4425dbe3705bb3edef2aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a85bbb070ab4425dbe3705bb3edef2aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a85bbb070ab4425dbe3705bb3edef2aa.jpg", "file_size": 42599, "is_delete": false, "file_type": 1, "original_file_name": "24077#-8-C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bbb070ab4425dbe3705bb3edef2aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bbb070ab4425dbe3705bb3edef2aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a85bbb070ab4425dbe3705bb3edef2aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a85bbb070ab4425dbe3705bb3edef2aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a85bbb070ab4425dbe3705bb3edef2aa.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KULWAjUHFIi76lORgAnZsSGoa_w=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.480884+00 2025-12-09 10:16:01.480891+00 21122 0030-5FWF#米小花 SPMX-20240815316373 \N \N \N 1 \N [{"file_id": "a3bc2d78-e1e6-4a0f-b71e-01fa8a5c71ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ade4d34f8b64d1d9c67746a2af0e48d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ade4d34f8b64d1d9c67746a2af0e48d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ade4d34f8b64d1d9c67746a2af0e48d.jpg", "file_size": 18139, "is_delete": false, "file_type": 1, "original_file_name": "0030-5FWF#米小花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ade4d34f8b64d1d9c67746a2af0e48d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ade4d34f8b64d1d9c67746a2af0e48d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ade4d34f8b64d1d9c67746a2af0e48d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ade4d34f8b64d1d9c67746a2af0e48d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ade4d34f8b64d1d9c67746a2af0e48d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIoXYJOxCk8ZlYk5Yi7003HlDeA=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.48426+00 2025-12-09 10:16:01.484267+00 21123 JY-AD242#1号军绿底白色花朵 SPMX-20240815316377 \N \N \N 1 \N [{"file_id": "adf82ec2-ba86-4ecc-8686-502297ecaf4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bf1607008914f47b1fa1690522ef091.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bf1607008914f47b1fa1690522ef091.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bf1607008914f47b1fa1690522ef091.jpg", "file_size": 17594, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD242#1号军绿底白色花朵.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf1607008914f47b1fa1690522ef091.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf1607008914f47b1fa1690522ef091.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bf1607008914f47b1fa1690522ef091.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bf1607008914f47b1fa1690522ef091.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bf1607008914f47b1fa1690522ef091.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9HZ3cduhUIcqbYAQZhJBHb8qKaE=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.487651+00 2025-12-09 10:16:01.487657+00 21124 CH640FWE#时髦女郎M SPMX-20240815316379 \N \N \N 1 \N [{"file_id": "98f29a4c-19ec-4fbc-bf0f-60a32abf1021", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11066221546148f49223da2ec480061b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11066221546148f49223da2ec480061b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11066221546148f49223da2ec480061b.jpg", "file_size": 9333, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11066221546148f49223da2ec480061b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11066221546148f49223da2ec480061b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11066221546148f49223da2ec480061b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11066221546148f49223da2ec480061b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11066221546148f49223da2ec480061b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VEYXjPprrgvHEaS2cdj7jDpjJH8=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.491075+00 2025-12-09 10:16:01.491081+00 21125 CH640FWE#时髦女郎L SPMX-20240815316370 \N \N \N 1 \N [{"file_id": "ad01a58a-fba1-417b-8776-23eb25eb2876", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "760443f342fd448287d669a79c17a648.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "760443f342fd448287d669a79c17a648.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "760443f342fd448287d669a79c17a648.jpg", "file_size": 8991, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760443f342fd448287d669a79c17a648.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760443f342fd448287d669a79c17a648.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/760443f342fd448287d669a79c17a648.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/760443f342fd448287d669a79c17a648.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/760443f342fd448287d669a79c17a648.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3S1zHYc_DUH92flPziE074HJp1Y=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.494606+00 2025-12-09 10:16:01.494614+00 21126 0030-6#WJC22 SPMX-20240815316383 \N \N \N 1 \N [{"file_id": "44748038-bd79-47bf-b696-2157d40d1deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0440eeef44584a18a107af2852b40ebf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0440eeef44584a18a107af2852b40ebf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0440eeef44584a18a107af2852b40ebf.jpg", "file_size": 9171, "is_delete": false, "file_type": 1, "original_file_name": "0030-6#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0440eeef44584a18a107af2852b40ebf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0440eeef44584a18a107af2852b40ebf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0440eeef44584a18a107af2852b40ebf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0440eeef44584a18a107af2852b40ebf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0440eeef44584a18a107af2852b40ebf.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bFhX3pals43B3jiwTz1LhLbfeug=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.498235+00 2025-12-09 10:16:01.498242+00 21127 88380FWF#D水绿44码 SPMX-20240815316372 \N \N \N 1 \N [{"file_id": "4819a6b4-a415-4491-a479-7f4115a2ae6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4eaac3a601bc4f6aaf14ae743559ff2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4eaac3a601bc4f6aaf14ae743559ff2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4eaac3a601bc4f6aaf14ae743559ff2d.jpg", "file_size": 23926, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D水绿44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eaac3a601bc4f6aaf14ae743559ff2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eaac3a601bc4f6aaf14ae743559ff2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4eaac3a601bc4f6aaf14ae743559ff2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4eaac3a601bc4f6aaf14ae743559ff2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4eaac3a601bc4f6aaf14ae743559ff2d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rN-GYWnW9f813MvXs3C60UdB-P8=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.501787+00 2025-12-09 10:16:01.501793+00 21128 LZ1424#童装T3号色 SPMX-20240815316384 \N \N \N 1 \N [{"file_id": "92d7a877-ec2f-4c11-b25c-9eb686c4e37a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f9710398cd4e2babed9ad80810f714.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f9710398cd4e2babed9ad80810f714.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f9710398cd4e2babed9ad80810f714.jpg", "file_size": 20681, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f9710398cd4e2babed9ad80810f714.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f9710398cd4e2babed9ad80810f714.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f9710398cd4e2babed9ad80810f714.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f9710398cd4e2babed9ad80810f714.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f9710398cd4e2babed9ad80810f714.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rAigKcopBXI4qBrzqdZHfee81aE=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.505209+00 2025-12-09 10:16:01.505215+00 21129 HXF017#粉 SPMX-20240815316378 \N \N \N 1 \N [{"file_id": "8d2723c5-785b-4587-add8-4a73fa8e4224", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc39423cc134b4db5982b62d97a5c11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc39423cc134b4db5982b62d97a5c11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc39423cc134b4db5982b62d97a5c11.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "HXF017#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc39423cc134b4db5982b62d97a5c11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc39423cc134b4db5982b62d97a5c11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc39423cc134b4db5982b62d97a5c11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc39423cc134b4db5982b62d97a5c11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc39423cc134b4db5982b62d97a5c11.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9oR9il6CJ-ULiWbKqdCQqFE_5Dw=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.508668+00 2025-12-09 10:16:01.508674+00 21130 88380FWF#D水绿46码 SPMX-20240815316382 \N \N \N 1 \N [{"file_id": "c4a07325-c3b9-47e6-ba73-8ce1c75983b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7237dacb31fc4838918ddf59f81f17b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7237dacb31fc4838918ddf59f81f17b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7237dacb31fc4838918ddf59f81f17b6.jpg", "file_size": 24554, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D水绿46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7237dacb31fc4838918ddf59f81f17b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7237dacb31fc4838918ddf59f81f17b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7237dacb31fc4838918ddf59f81f17b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7237dacb31fc4838918ddf59f81f17b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7237dacb31fc4838918ddf59f81f17b6.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3gWIJC3e38zPCVX_RU7fgp8X0j8=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.512132+00 2025-12-09 10:16:01.512139+00 21131 FX0121# SPMX-20240815316381 \N \N \N 1 \N [{"file_id": "d3932071-c301-4a9f-9a86-00ca8c7c4049", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f5bcf10006c4b76bf40dc0d90a28b01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f5bcf10006c4b76bf40dc0d90a28b01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f5bcf10006c4b76bf40dc0d90a28b01.jpg", "file_size": 5944, "is_delete": false, "file_type": 1, "original_file_name": "FX0121#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5bcf10006c4b76bf40dc0d90a28b01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5bcf10006c4b76bf40dc0d90a28b01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f5bcf10006c4b76bf40dc0d90a28b01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f5bcf10006c4b76bf40dc0d90a28b01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f5bcf10006c4b76bf40dc0d90a28b01.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QmY43TPE7tBsiooAjRCjw1q2L2E=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.515459+00 2025-12-09 10:16:01.515465+00 21132 24077#-9#A SPMX-20240815316376 \N \N \N 1 \N [{"file_id": "51bdc797-e8f5-44e7-a9c6-b032f44f83cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1764687d8d3f46b19bc0018e301e6fa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1764687d8d3f46b19bc0018e301e6fa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1764687d8d3f46b19bc0018e301e6fa8.jpg", "file_size": 43376, "is_delete": false, "file_type": 1, "original_file_name": "24077#-9#A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1764687d8d3f46b19bc0018e301e6fa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1764687d8d3f46b19bc0018e301e6fa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1764687d8d3f46b19bc0018e301e6fa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1764687d8d3f46b19bc0018e301e6fa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1764687d8d3f46b19bc0018e301e6fa8.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O48394T0exvAZGQGxjeW-4CmuG8=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.518801+00 2025-12-09 10:16:01.518807+00 21133 JY-AD240#8号玫红 SPMX-20240815316368 \N \N \N 1 \N [{"file_id": "f2745cac-7832-45d4-882c-178dd5e8dd85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34d91dd49f4d470e82c1ffc5c0b6db9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34d91dd49f4d470e82c1ffc5c0b6db9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34d91dd49f4d470e82c1ffc5c0b6db9e.jpg", "file_size": 18229, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD240#8号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d91dd49f4d470e82c1ffc5c0b6db9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d91dd49f4d470e82c1ffc5c0b6db9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d91dd49f4d470e82c1ffc5c0b6db9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34d91dd49f4d470e82c1ffc5c0b6db9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34d91dd49f4d470e82c1ffc5c0b6db9e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O2N0zIhnZu85ko5Mi4ZCaiZ9ENE=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.522221+00 2025-12-09 10:16:01.522227+00 21134 LJJ3186#-金黄黑色L码 SPMX-20240815316374 \N \N \N 1 \N [{"file_id": "42470bc5-a084-44d0-89d7-0d0f39ad9a10", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "41e616e73cc84867ab95569b436e7ab8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "41e616e73cc84867ab95569b436e7ab8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "41e616e73cc84867ab95569b436e7ab8.jpg", "file_size": 18104, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-金黄黑色L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e616e73cc84867ab95569b436e7ab8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e616e73cc84867ab95569b436e7ab8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/41e616e73cc84867ab95569b436e7ab8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/41e616e73cc84867ab95569b436e7ab8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/41e616e73cc84867ab95569b436e7ab8.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ugy1Gb8JhoTYeJSP7l_pDzzbk7w=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.525672+00 2025-12-09 10:16:01.525679+00 21135 DM9015#5XL SPMX-20240815316369 \N \N \N 1 \N [{"file_id": "fc3fd4dc-b376-492b-8b43-a269b62369c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "278fbe0d0c7449af8278b48b6a8c7e81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "278fbe0d0c7449af8278b48b6a8c7e81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "278fbe0d0c7449af8278b48b6a8c7e81.jpg", "file_size": 52288, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278fbe0d0c7449af8278b48b6a8c7e81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278fbe0d0c7449af8278b48b6a8c7e81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/278fbe0d0c7449af8278b48b6a8c7e81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/278fbe0d0c7449af8278b48b6a8c7e81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/278fbe0d0c7449af8278b48b6a8c7e81.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KRnuXTeJs20bx6GF11sSnGbU6ys=", "createTime": "2024-08-15 15:09:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.529093+00 2025-12-09 10:16:01.5291+00 21136 1273#WJC22 SPMX-20240815316380 \N \N \N 1 \N [{"file_id": "0d9b00c4-5c75-45c9-ba0c-f8984cc64978", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b12aa81435564ec0acd38dc71b564ddc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b12aa81435564ec0acd38dc71b564ddc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b12aa81435564ec0acd38dc71b564ddc.jpg", "file_size": 17712, "is_delete": false, "file_type": 1, "original_file_name": "1273#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12aa81435564ec0acd38dc71b564ddc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12aa81435564ec0acd38dc71b564ddc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b12aa81435564ec0acd38dc71b564ddc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b12aa81435564ec0acd38dc71b564ddc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b12aa81435564ec0acd38dc71b564ddc.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hAQvqg83qC80NjM9bfIqfhURvgM=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.53251+00 2025-12-09 10:16:01.532516+00 21137 DM9015#捆条 SPMX-20240815316385 \N \N \N 1 \N [{"file_id": "ec1f264f-bb9a-4896-a793-db6adcffa84c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49eb7a71a38c4167a5c08faff3aba479.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49eb7a71a38c4167a5c08faff3aba479.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49eb7a71a38c4167a5c08faff3aba479.jpg", "file_size": 40314, "is_delete": false, "file_type": 1, "original_file_name": "DM9015#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49eb7a71a38c4167a5c08faff3aba479.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49eb7a71a38c4167a5c08faff3aba479.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49eb7a71a38c4167a5c08faff3aba479.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49eb7a71a38c4167a5c08faff3aba479.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49eb7a71a38c4167a5c08faff3aba479.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Bq-55jZ0WFuUzSWiQ4fAINtJzs=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.539319+00 2025-12-09 10:16:01.539326+00 21139 LZ1424#童装T2号色 SPMX-20240815316375 \N \N \N 1 \N [{"file_id": "0b29ceea-c3ae-4fba-a315-b294321139b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da8cacc164754fe2ac2be53dac76f46b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da8cacc164754fe2ac2be53dac76f46b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da8cacc164754fe2ac2be53dac76f46b.jpg", "file_size": 21628, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cacc164754fe2ac2be53dac76f46b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cacc164754fe2ac2be53dac76f46b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da8cacc164754fe2ac2be53dac76f46b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da8cacc164754fe2ac2be53dac76f46b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da8cacc164754fe2ac2be53dac76f46b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8jX8dw8MtU0vZ7a1V0pTN3ASuTE=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.5428+00 2025-12-09 10:16:01.542807+00 21140 HXF017#粉点点 SPMX-20240815316390 \N \N \N 1 \N [{"file_id": "3f45637f-6c9e-4e3a-bb27-5cfb5de14a26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg", "file_size": 21065, "is_delete": false, "file_type": 1, "original_file_name": "HXF017#粉点点.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd7bdeaf4be1455bbf8c69d2ddfeb613.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5ypIq2cbAGJLQapIvIcVvb8JC0k=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.546353+00 2025-12-09 10:16:01.546365+00 21141 88380FWF#D水绿48码 SPMX-20240815316394 \N \N \N 1 \N [{"file_id": "b08af8c8-c4df-4cda-8e4f-7bac580380ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edf4f011842a4df095ab5f4f16e4aa3c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edf4f011842a4df095ab5f4f16e4aa3c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edf4f011842a4df095ab5f4f16e4aa3c.jpg", "file_size": 24552, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D水绿48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edf4f011842a4df095ab5f4f16e4aa3c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edf4f011842a4df095ab5f4f16e4aa3c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edf4f011842a4df095ab5f4f16e4aa3c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edf4f011842a4df095ab5f4f16e4aa3c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edf4f011842a4df095ab5f4f16e4aa3c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I_Mgi9gSb1EORuHxccn04C4LVsc=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.549775+00 2025-12-09 10:16:01.549781+00 21142 CH640FWE#时髦女郎S SPMX-20240815316393 \N \N \N 1 \N [{"file_id": "7ec09d30-6a46-4ed3-adc5-210840ca39fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d608222d5fb430e80791cd011420aa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d608222d5fb430e80791cd011420aa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d608222d5fb430e80791cd011420aa1.jpg", "file_size": 9328, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d608222d5fb430e80791cd011420aa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d608222d5fb430e80791cd011420aa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d608222d5fb430e80791cd011420aa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d608222d5fb430e80791cd011420aa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d608222d5fb430e80791cd011420aa1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BnQ9GeEArrviUdQLv9T5gnA3x5o=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.553545+00 2025-12-09 10:16:01.553551+00 21143 LJJ3186#-金黄黑色M码 SPMX-20240815316387 \N \N \N 1 \N [{"file_id": "3733b25c-f545-4ddb-a710-4c460eeb24ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "608fdad5fa0c4fc1af296e0314c045c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "608fdad5fa0c4fc1af296e0314c045c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "608fdad5fa0c4fc1af296e0314c045c8.jpg", "file_size": 18613, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-金黄黑色M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608fdad5fa0c4fc1af296e0314c045c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608fdad5fa0c4fc1af296e0314c045c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608fdad5fa0c4fc1af296e0314c045c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/608fdad5fa0c4fc1af296e0314c045c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/608fdad5fa0c4fc1af296e0314c045c8.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpmdH5AZGLTLH4flwxGBU20mNcs=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.557339+00 2025-12-09 10:16:01.557345+00 21144 JY-AD242#2号焦糖底白色花 SPMX-20240815316388 \N \N \N 1 \N [{"file_id": "918a1f01-d33b-4891-bb6b-2cad38cc390e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "097614d5965b4815a44c7aca0d6b2ffe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "097614d5965b4815a44c7aca0d6b2ffe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "097614d5965b4815a44c7aca0d6b2ffe.jpg", "file_size": 21518, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD242#2号焦糖底白色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097614d5965b4815a44c7aca0d6b2ffe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097614d5965b4815a44c7aca0d6b2ffe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/097614d5965b4815a44c7aca0d6b2ffe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/097614d5965b4815a44c7aca0d6b2ffe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/097614d5965b4815a44c7aca0d6b2ffe.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JZg-XWkaJbfOq4-G6ULkeqldoD4=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.561021+00 2025-12-09 10:16:01.561027+00 21145 1275#WJC22 SPMX-20240815316389 \N \N \N 1 \N [{"file_id": "da580dc6-dfd5-4389-86c5-bacc247f9045", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc81b480bc104efc816e10498b1d7dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc81b480bc104efc816e10498b1d7dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc81b480bc104efc816e10498b1d7dcd.jpg", "file_size": 27618, "is_delete": false, "file_type": 1, "original_file_name": "1275#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81b480bc104efc816e10498b1d7dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81b480bc104efc816e10498b1d7dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc81b480bc104efc816e10498b1d7dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc81b480bc104efc816e10498b1d7dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc81b480bc104efc816e10498b1d7dcd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OVGf_9QBwV7l2X9y5IzfqDJ6ECE=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.564771+00 2025-12-09 10:16:01.564778+00 21146 0030-6FWE#VS-D3 SPMX-20240815316391 \N \N \N 1 \N [{"file_id": "c30a7388-d0b6-4a7c-aa27-1c8a7d7c5279", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7d8936c1adc4a86b3a1b4b710dc9661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7d8936c1adc4a86b3a1b4b710dc9661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7d8936c1adc4a86b3a1b4b710dc9661.jpg", "file_size": 13276, "is_delete": false, "file_type": 1, "original_file_name": "0030-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d8936c1adc4a86b3a1b4b710dc9661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d8936c1adc4a86b3a1b4b710dc9661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7d8936c1adc4a86b3a1b4b710dc9661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7d8936c1adc4a86b3a1b4b710dc9661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7d8936c1adc4a86b3a1b4b710dc9661.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yu_z6zj6RnXfF3BJf-CnOIUOHlE=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.572096+00 2025-12-09 10:16:01.572103+00 21148 LZ1424#童装T4号色 SPMX-20240815316395 \N \N \N 1 \N [{"file_id": "c4ba1eca-4063-414f-835a-a90c45849203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84456210efbd42c2b82b169e6ec2b9d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84456210efbd42c2b82b169e6ec2b9d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84456210efbd42c2b82b169e6ec2b9d5.jpg", "file_size": 22496, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84456210efbd42c2b82b169e6ec2b9d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84456210efbd42c2b82b169e6ec2b9d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84456210efbd42c2b82b169e6ec2b9d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84456210efbd42c2b82b169e6ec2b9d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84456210efbd42c2b82b169e6ec2b9d5.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IlDy3NfYVvB6dEuoKZaXs2gp_FA=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.575756+00 2025-12-09 10:16:01.575763+00 21149 24077#-9#B SPMX-20240815316386 \N \N \N 1 \N [{"file_id": "2cdadad0-9508-48a7-b600-8c9b24abe204", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e57ce03529549eeb80f1a854d2f20ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e57ce03529549eeb80f1a854d2f20ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e57ce03529549eeb80f1a854d2f20ea.jpg", "file_size": 53102, "is_delete": false, "file_type": 1, "original_file_name": "24077#-9#B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e57ce03529549eeb80f1a854d2f20ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e57ce03529549eeb80f1a854d2f20ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e57ce03529549eeb80f1a854d2f20ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e57ce03529549eeb80f1a854d2f20ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e57ce03529549eeb80f1a854d2f20ea.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w6nSgtJJZN8DKIsvjiJHFcU1LPk=", "createTime": "2024-08-15 15:09:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.579459+00 2025-12-09 10:16:01.579465+00 21150 0030-6FWF#灰蓝汽车 SPMX-20240815316402 \N \N \N 1 \N [{"file_id": "c8f3519d-ef07-4d8d-9319-d6845d1b094c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "db33218f14fb4476b3fb49b2f841b917.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "db33218f14fb4476b3fb49b2f841b917.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "db33218f14fb4476b3fb49b2f841b917.jpg", "file_size": 13564, "is_delete": false, "file_type": 1, "original_file_name": "0030-6FWF#灰蓝汽车.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33218f14fb4476b3fb49b2f841b917.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33218f14fb4476b3fb49b2f841b917.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/db33218f14fb4476b3fb49b2f841b917.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/db33218f14fb4476b3fb49b2f841b917.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/db33218f14fb4476b3fb49b2f841b917.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PwvgsOnl1-KIIj-NQMQG1QG2rcY=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.582889+00 2025-12-09 10:16:01.582897+00 21151 1275FWF#粉色 SPMX-20240815316400 \N \N \N 1 \N [{"file_id": "db4a01c3-f347-4c71-a3cd-8dbb8b70c0e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d8982e363fa419ca422cf1f0ca42eb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d8982e363fa419ca422cf1f0ca42eb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d8982e363fa419ca422cf1f0ca42eb9.jpg", "file_size": 18110, "is_delete": false, "file_type": 1, "original_file_name": "1275FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8982e363fa419ca422cf1f0ca42eb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8982e363fa419ca422cf1f0ca42eb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d8982e363fa419ca422cf1f0ca42eb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d8982e363fa419ca422cf1f0ca42eb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d8982e363fa419ca422cf1f0ca42eb9.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bj3zJ8Xc-1aM7cmrsDucugoygw=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.586282+00 2025-12-09 10:16:01.586289+00 21152 JY-AD242#6号蓝色底白色花 SPMX-20240815316398 \N \N \N 1 \N [{"file_id": "87fec5db-aec5-4bc9-bc2f-22acf76d8d47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd2236b3b3c4481b99f7eba89639447b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd2236b3b3c4481b99f7eba89639447b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd2236b3b3c4481b99f7eba89639447b.jpg", "file_size": 19499, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD242#6号蓝色底白色花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2236b3b3c4481b99f7eba89639447b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2236b3b3c4481b99f7eba89639447b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd2236b3b3c4481b99f7eba89639447b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd2236b3b3c4481b99f7eba89639447b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd2236b3b3c4481b99f7eba89639447b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFsCqVNvaFXeEmD4wUFL7LtH8mY=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.589648+00 2025-12-09 10:16:01.589659+00 21153 LJJ3186#-黑白L码 SPMX-20240815316399 \N \N \N 1 \N [{"file_id": "5430a30c-faf1-403c-b681-57c99f3ff331", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92bb7ffdc49541a9aac0a1e02bed2025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92bb7ffdc49541a9aac0a1e02bed2025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92bb7ffdc49541a9aac0a1e02bed2025.jpg", "file_size": 17495, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-黑白L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bb7ffdc49541a9aac0a1e02bed2025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bb7ffdc49541a9aac0a1e02bed2025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92bb7ffdc49541a9aac0a1e02bed2025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92bb7ffdc49541a9aac0a1e02bed2025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92bb7ffdc49541a9aac0a1e02bed2025.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3mxLE9aoLmTHC8uV5sQ9IDn-cF4=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.593075+00 2025-12-09 10:16:01.593082+00 21154 FX012FW#红VS-D3 SPMX-20240815316403 \N \N \N 1 \N [{"file_id": "1b68e1ec-8120-430a-987d-c5d450647874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "023fd223acde47d0a7b4adca8b8157b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "023fd223acde47d0a7b4adca8b8157b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "023fd223acde47d0a7b4adca8b8157b1.jpg", "file_size": 24612, "is_delete": false, "file_type": 1, "original_file_name": "FX012FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fd223acde47d0a7b4adca8b8157b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fd223acde47d0a7b4adca8b8157b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023fd223acde47d0a7b4adca8b8157b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/023fd223acde47d0a7b4adca8b8157b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/023fd223acde47d0a7b4adca8b8157b1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-mGMxl4UkJVXFMKAYElrxHLovZo=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.596547+00 2025-12-09 10:16:01.596553+00 21155 DM9152#RC23 SPMX-20240815316396 \N \N \N 1 \N [{"file_id": "2ba1c9f9-e8f4-487f-a281-f24e642520f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f757455f1a7b418b876a33a0f343851e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f757455f1a7b418b876a33a0f343851e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f757455f1a7b418b876a33a0f343851e.jpg", "file_size": 58479, "is_delete": false, "file_type": 1, "original_file_name": "DM9152#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f757455f1a7b418b876a33a0f343851e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f757455f1a7b418b876a33a0f343851e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f757455f1a7b418b876a33a0f343851e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f757455f1a7b418b876a33a0f343851e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f757455f1a7b418b876a33a0f343851e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i-MIcqTqVAaf0rzp0VIBfk4AwZQ=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.599965+00 2025-12-09 10:16:01.599971+00 21156 88380FWF#D水绿50码 SPMX-20240815316404 \N \N \N 1 \N [{"file_id": "b7f1ff3b-66eb-45a6-86d3-de93fa6735a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10be2245becf4ea99e0d3c2a6c8bed00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10be2245becf4ea99e0d3c2a6c8bed00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10be2245becf4ea99e0d3c2a6c8bed00.jpg", "file_size": 25013, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D水绿50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10be2245becf4ea99e0d3c2a6c8bed00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10be2245becf4ea99e0d3c2a6c8bed00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10be2245becf4ea99e0d3c2a6c8bed00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10be2245becf4ea99e0d3c2a6c8bed00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10be2245becf4ea99e0d3c2a6c8bed00.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SC89OZYD0ZbVmEawpfbg5aGr0vw=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.603393+00 2025-12-09 10:16:01.603399+00 21157 24077#-9-A SPMX-20240815316397 \N \N \N 1 \N [{"file_id": "21d6a00f-e152-4667-b340-c587007b4da1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05a86878ebfd478c8581c43535a6223f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05a86878ebfd478c8581c43535a6223f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05a86878ebfd478c8581c43535a6223f.jpg", "file_size": 43157, "is_delete": false, "file_type": 1, "original_file_name": "24077#-9-A.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a86878ebfd478c8581c43535a6223f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a86878ebfd478c8581c43535a6223f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a86878ebfd478c8581c43535a6223f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05a86878ebfd478c8581c43535a6223f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05a86878ebfd478c8581c43535a6223f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LzINi_f63VYDKc9YeXE74IjfaY0=", "createTime": "2024-08-15 15:09:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.606788+00 2025-12-09 10:16:01.606794+00 21158 CH640FWE#时髦女郎XL SPMX-20240815316405 \N \N \N 1 \N [{"file_id": "c9461cd1-ecb8-40f3-85ff-257add070d78", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3dc3a2cc5f14487e99461ad61a563b0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3dc3a2cc5f14487e99461ad61a563b0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3dc3a2cc5f14487e99461ad61a563b0d.jpg", "file_size": 9440, "is_delete": false, "file_type": 1, "original_file_name": "CH640FWE#时髦女郎XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc3a2cc5f14487e99461ad61a563b0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc3a2cc5f14487e99461ad61a563b0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3dc3a2cc5f14487e99461ad61a563b0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3dc3a2cc5f14487e99461ad61a563b0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3dc3a2cc5f14487e99461ad61a563b0d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a4iuAdSMniqkNAYYJw5w8uRnHYE=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.61028+00 2025-12-09 10:16:01.610287+00 21159 HXF017FW#VS-D3 SPMX-20240815316401 \N \N \N 1 \N [{"file_id": "101bb2e5-12b5-4789-b9d4-6d5dad1fc19a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82bddb12a9494167baa84ad94b0cff61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82bddb12a9494167baa84ad94b0cff61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82bddb12a9494167baa84ad94b0cff61.jpg", "file_size": 9415, "is_delete": false, "file_type": 1, "original_file_name": "HXF017FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bddb12a9494167baa84ad94b0cff61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bddb12a9494167baa84ad94b0cff61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82bddb12a9494167baa84ad94b0cff61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82bddb12a9494167baa84ad94b0cff61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82bddb12a9494167baa84ad94b0cff61.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJtVV-UdHZbX8tV_iO-BvSfNV44=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.613685+00 2025-12-09 10:16:01.613691+00 21160 LZ1424#童装T5号色 SPMX-20240815316406 \N \N \N 1 \N [{"file_id": "839dc3d8-05c2-4ce2-84fc-ec045c64f82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3deb6f1ed64b43c4a16463ecde5ab0d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3deb6f1ed64b43c4a16463ecde5ab0d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3deb6f1ed64b43c4a16463ecde5ab0d5.jpg", "file_size": 22727, "is_delete": false, "file_type": 1, "original_file_name": "LZ1424#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3deb6f1ed64b43c4a16463ecde5ab0d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3deb6f1ed64b43c4a16463ecde5ab0d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3deb6f1ed64b43c4a16463ecde5ab0d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3deb6f1ed64b43c4a16463ecde5ab0d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3deb6f1ed64b43c4a16463ecde5ab0d5.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GzEgQcE4wXaM5rW5a1YXz61b3EI=", "createTime": "2024-08-15 15:09:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.617145+00 2025-12-09 10:16:01.617152+00 21161 0030-7#杏色 SPMX-20240815316413 \N \N \N 1 \N [{"file_id": "bb201d07-b1d4-44da-8e15-32cd799de6f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34f5d8e4bcb243268e24b64f824e8889.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34f5d8e4bcb243268e24b64f824e8889.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34f5d8e4bcb243268e24b64f824e8889.jpg", "file_size": 10741, "is_delete": false, "file_type": 1, "original_file_name": "0030-7#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f5d8e4bcb243268e24b64f824e8889.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f5d8e4bcb243268e24b64f824e8889.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34f5d8e4bcb243268e24b64f824e8889.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34f5d8e4bcb243268e24b64f824e8889.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34f5d8e4bcb243268e24b64f824e8889.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HlsvHiUrfIAgrDWsSlrlw8DMNQk=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.620495+00 2025-12-09 10:16:01.620502+00 21162 24077#-9-B SPMX-20240815316409 \N \N \N 1 \N [{"file_id": "7abe01c9-28e1-4726-abaa-35e948ea7da4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88f6698a151f4e5591464ef360c82435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88f6698a151f4e5591464ef360c82435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88f6698a151f4e5591464ef360c82435.jpg", "file_size": 50811, "is_delete": false, "file_type": 1, "original_file_name": "24077#-9-B.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f6698a151f4e5591464ef360c82435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f6698a151f4e5591464ef360c82435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88f6698a151f4e5591464ef360c82435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88f6698a151f4e5591464ef360c82435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88f6698a151f4e5591464ef360c82435.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9qcJiwIaxlRdLxYfo5_pp_xOePo=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.623859+00 2025-12-09 10:16:01.623871+00 21163 JY-AD242#7号桔色底白色花朵 SPMX-20240815316410 \N \N \N 1 \N [{"file_id": "d50ff786-d6fc-42c0-908d-535756f55bc9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c056885ff0a24d12b1a0ac2fc50806ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c056885ff0a24d12b1a0ac2fc50806ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c056885ff0a24d12b1a0ac2fc50806ae.jpg", "file_size": 19354, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD242#7号桔色底白色花朵.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056885ff0a24d12b1a0ac2fc50806ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056885ff0a24d12b1a0ac2fc50806ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c056885ff0a24d12b1a0ac2fc50806ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c056885ff0a24d12b1a0ac2fc50806ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c056885ff0a24d12b1a0ac2fc50806ae.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gqT1ijTUQXwyJkdUNsjSzBplx6g=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.627382+00 2025-12-09 10:16:01.627388+00 21164 HXF018# SPMX-20240815316411 \N \N \N 1 \N [{"file_id": "ba97ebe2-1f09-4d24-bf59-7e2892658483", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbf3da2a5faa4399ace053372cf2c35b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbf3da2a5faa4399ace053372cf2c35b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbf3da2a5faa4399ace053372cf2c35b.jpg", "file_size": 13153, "is_delete": false, "file_type": 1, "original_file_name": "HXF018#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf3da2a5faa4399ace053372cf2c35b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf3da2a5faa4399ace053372cf2c35b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbf3da2a5faa4399ace053372cf2c35b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbf3da2a5faa4399ace053372cf2c35b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbf3da2a5faa4399ace053372cf2c35b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:slVe5JW7WlrbKNQ8y3FCBZrMd1w=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.630836+00 2025-12-09 10:16:01.630843+00 21165 FX012FW#蓝VS-D3 SPMX-20240815316415 \N \N \N 1 \N [{"file_id": "e7bcc34b-be2e-4c9b-8be7-31cc049dbccb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8efd1da3ac0f487c997a18bed73e3efc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8efd1da3ac0f487c997a18bed73e3efc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8efd1da3ac0f487c997a18bed73e3efc.jpg", "file_size": 24811, "is_delete": false, "file_type": 1, "original_file_name": "FX012FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efd1da3ac0f487c997a18bed73e3efc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efd1da3ac0f487c997a18bed73e3efc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8efd1da3ac0f487c997a18bed73e3efc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8efd1da3ac0f487c997a18bed73e3efc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8efd1da3ac0f487c997a18bed73e3efc.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hkul-IzIsGD85VjaQP0mjta4XYc=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.634192+00 2025-12-09 10:16:01.634198+00 21166 1275FWF#蓝色 SPMX-20240815316408 \N \N \N 1 \N [{"file_id": "61a3a096-27bc-4ed8-b689-adffc2c65439", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49441d6245a04a4bb6e16140645d9909.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49441d6245a04a4bb6e16140645d9909.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49441d6245a04a4bb6e16140645d9909.jpg", "file_size": 18477, "is_delete": false, "file_type": 1, "original_file_name": "1275FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49441d6245a04a4bb6e16140645d9909.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49441d6245a04a4bb6e16140645d9909.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49441d6245a04a4bb6e16140645d9909.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49441d6245a04a4bb6e16140645d9909.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49441d6245a04a4bb6e16140645d9909.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R3CwHENuh2n_XRUN4SrQrHkx1ig=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.637549+00 2025-12-09 10:16:01.637556+00 21167 LJJ3186#-黑白M码 SPMX-20240815316412 \N \N \N 1 \N [{"file_id": "d3f1ca2d-703c-4be8-a799-dfb98a49e874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acbd9103778c4f9cb939f41a5f09e2f9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acbd9103778c4f9cb939f41a5f09e2f9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acbd9103778c4f9cb939f41a5f09e2f9.jpg", "file_size": 17799, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-黑白M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbd9103778c4f9cb939f41a5f09e2f9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbd9103778c4f9cb939f41a5f09e2f9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acbd9103778c4f9cb939f41a5f09e2f9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acbd9103778c4f9cb939f41a5f09e2f9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acbd9103778c4f9cb939f41a5f09e2f9.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sRQPuEMfF5HNqFuo18qAcFaNI74=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.655148+00 2025-12-09 10:16:01.655155+00 21172 HXF018#粉 SPMX-20240815316423 \N \N \N 1 \N [{"file_id": "14ab8647-4d79-44f6-be1d-78869c0ef38d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58933801c4514dbfab49720062182508.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58933801c4514dbfab49720062182508.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58933801c4514dbfab49720062182508.jpg", "file_size": 12330, "is_delete": false, "file_type": 1, "original_file_name": "HXF018#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58933801c4514dbfab49720062182508.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58933801c4514dbfab49720062182508.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58933801c4514dbfab49720062182508.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58933801c4514dbfab49720062182508.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58933801c4514dbfab49720062182508.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6NHs8gKAOzW8FofS6FJTspKeHfE=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.64122+00 2025-12-09 10:16:01.641227+00 21168 CH641FWE#国际女郎2XL SPMX-20240815316414 \N \N \N 1 \N [{"file_id": "437b532f-f42a-4665-ba91-43540e69da26", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c20ac2922b1485ba11e565faca103ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c20ac2922b1485ba11e565faca103ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c20ac2922b1485ba11e565faca103ae.jpg", "file_size": 14601, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c20ac2922b1485ba11e565faca103ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c20ac2922b1485ba11e565faca103ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c20ac2922b1485ba11e565faca103ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c20ac2922b1485ba11e565faca103ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c20ac2922b1485ba11e565faca103ae.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpxBGcLoti86Yrz730Rl22A7UMU=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.644742+00 2025-12-09 10:16:01.644749+00 21169 88380FWF#D粉色42码 SPMX-20240815316416 \N \N \N 1 \N [{"file_id": "214813b8-efea-4cd2-8f6e-74483e994f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45ff3a9cf3bd405493982d917d231b68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45ff3a9cf3bd405493982d917d231b68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45ff3a9cf3bd405493982d917d231b68.jpg", "file_size": 23212, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D粉色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff3a9cf3bd405493982d917d231b68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff3a9cf3bd405493982d917d231b68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45ff3a9cf3bd405493982d917d231b68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45ff3a9cf3bd405493982d917d231b68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45ff3a9cf3bd405493982d917d231b68.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zgYpg_a3KzIDzldT-SfjqwYLNIY=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.648263+00 2025-12-09 10:16:01.64827+00 21170 LZ1425#大人T1号色 SPMX-20240815316417 \N \N \N 1 \N [{"file_id": "348b639a-01e0-41d3-b3e2-3f1861857c36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33c42fa7228d419686949c89b60f1dda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33c42fa7228d419686949c89b60f1dda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33c42fa7228d419686949c89b60f1dda.jpg", "file_size": 19790, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c42fa7228d419686949c89b60f1dda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c42fa7228d419686949c89b60f1dda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33c42fa7228d419686949c89b60f1dda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33c42fa7228d419686949c89b60f1dda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33c42fa7228d419686949c89b60f1dda.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PmT6sKmOK_-HvoxHQOJS8vqVBSE=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.651716+00 2025-12-09 10:16:01.651721+00 21171 DM9158#RC23 SPMX-20240815316407 \N \N \N 1 \N [{"file_id": "695a32b3-8690-4aaf-9802-e5c953672f6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d95f9b3aea146048bbf218413c9f5ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d95f9b3aea146048bbf218413c9f5ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d95f9b3aea146048bbf218413c9f5ee.jpg", "file_size": 69768, "is_delete": false, "file_type": 1, "original_file_name": "DM9158#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d95f9b3aea146048bbf218413c9f5ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d95f9b3aea146048bbf218413c9f5ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d95f9b3aea146048bbf218413c9f5ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d95f9b3aea146048bbf218413c9f5ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d95f9b3aea146048bbf218413c9f5ee.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iVCuf3BKjAJBwcssa0mSv2WXKrM=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.658502+00 2025-12-09 10:16:01.658508+00 21173 1275FWF#黄色 SPMX-20240815316418 \N \N \N 1 \N [{"file_id": "120f4d40-c5c8-45dd-8bb9-89955f11c780", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8207e9e267564a028f27e21f5c4a92dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8207e9e267564a028f27e21f5c4a92dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8207e9e267564a028f27e21f5c4a92dc.jpg", "file_size": 19383, "is_delete": false, "file_type": 1, "original_file_name": "1275FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8207e9e267564a028f27e21f5c4a92dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8207e9e267564a028f27e21f5c4a92dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8207e9e267564a028f27e21f5c4a92dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8207e9e267564a028f27e21f5c4a92dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8207e9e267564a028f27e21f5c4a92dc.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LzGNbMswfYoAe27gjp2FAEgSxds=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.661939+00 2025-12-09 10:16:01.661946+00 21174 24079#-1主色橙色 SPMX-20240815316432 \N \N \N 1 \N [{"file_id": "aedeffa3-022f-43af-ad89-bb181fbddb19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1662df5acfa4146802f0afc887952c1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1662df5acfa4146802f0afc887952c1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1662df5acfa4146802f0afc887952c1.jpg", "file_size": 46975, "is_delete": false, "file_type": 1, "original_file_name": "24079#-1主色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1662df5acfa4146802f0afc887952c1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1662df5acfa4146802f0afc887952c1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1662df5acfa4146802f0afc887952c1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1662df5acfa4146802f0afc887952c1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1662df5acfa4146802f0afc887952c1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1y3YzLPo_A27qAGI0CrKYiS_aA8=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.665318+00 2025-12-09 10:16:01.665324+00 21175 JY-BX1051#LWQ15 SPMX-20240815316433 \N \N \N 1 \N [{"file_id": "03bf785f-4175-4d9e-939d-bcaba70731f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bc9c1027f8144adb6db465ae1d6a47d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bc9c1027f8144adb6db465ae1d6a47d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bc9c1027f8144adb6db465ae1d6a47d.jpg", "file_size": 45154, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1051#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc9c1027f8144adb6db465ae1d6a47d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc9c1027f8144adb6db465ae1d6a47d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc9c1027f8144adb6db465ae1d6a47d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bc9c1027f8144adb6db465ae1d6a47d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bc9c1027f8144adb6db465ae1d6a47d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z2H0o1Ba1o7HnYLkSIBen3npbEQ=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.6687+00 2025-12-09 10:16:01.668712+00 21176 DM9182#1XL SPMX-20240815316419 \N \N \N 1 \N [{"file_id": "727dd1b6-b31b-4570-860a-a0a8c8ef29ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb5c61f867ec49bbb23e5eb966d3feed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb5c61f867ec49bbb23e5eb966d3feed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb5c61f867ec49bbb23e5eb966d3feed.jpg", "file_size": 57296, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5c61f867ec49bbb23e5eb966d3feed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5c61f867ec49bbb23e5eb966d3feed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb5c61f867ec49bbb23e5eb966d3feed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb5c61f867ec49bbb23e5eb966d3feed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb5c61f867ec49bbb23e5eb966d3feed.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hmelwP9MOaNX3YAr5KOtFi8yQMc=", "createTime": "2024-08-15 15:09:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.672104+00 2025-12-09 10:16:01.67211+00 21177 HXF018FW#白VS-D3 SPMX-20240815316434 \N \N \N 1 \N [{"file_id": "2b98be05-203c-4d37-b6d7-55a91139ba5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e733e8854eb2476b8d47611aa1b373ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e733e8854eb2476b8d47611aa1b373ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e733e8854eb2476b8d47611aa1b373ed.jpg", "file_size": 23244, "is_delete": false, "file_type": 1, "original_file_name": "HXF018FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e733e8854eb2476b8d47611aa1b373ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e733e8854eb2476b8d47611aa1b373ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e733e8854eb2476b8d47611aa1b373ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e733e8854eb2476b8d47611aa1b373ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e733e8854eb2476b8d47611aa1b373ed.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UGOgkmnbilmSkOqz18igV-rbyqM=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.675436+00 2025-12-09 10:16:01.675443+00 21178 FX012FWE#VS-D3 SPMX-20240815316435 \N \N \N 1 \N [{"file_id": "af6256c2-cea9-468c-970b-36401026f37a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4e4269f00f4362ab0b8be0d7b3f60b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4e4269f00f4362ab0b8be0d7b3f60b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4e4269f00f4362ab0b8be0d7b3f60b.jpg", "file_size": 18196, "is_delete": false, "file_type": 1, "original_file_name": "FX012FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4e4269f00f4362ab0b8be0d7b3f60b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4e4269f00f4362ab0b8be0d7b3f60b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4e4269f00f4362ab0b8be0d7b3f60b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4e4269f00f4362ab0b8be0d7b3f60b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4e4269f00f4362ab0b8be0d7b3f60b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O_1c_EN0c13xNjnNrdfkzd2mb6E=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.678908+00 2025-12-09 10:16:01.678915+00 21179 88380FWF#D粉色44码 SPMX-20240815316427 \N \N \N 1 \N [{"file_id": "ab732855-30ad-4cca-9c73-468d18fa842c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc0da558c5494c0f972bf5b962c02c37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc0da558c5494c0f972bf5b962c02c37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc0da558c5494c0f972bf5b962c02c37.jpg", "file_size": 24129, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D粉色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0da558c5494c0f972bf5b962c02c37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0da558c5494c0f972bf5b962c02c37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc0da558c5494c0f972bf5b962c02c37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc0da558c5494c0f972bf5b962c02c37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc0da558c5494c0f972bf5b962c02c37.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jre_XCOrgpYDYi5eej-omKswDHs=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.682351+00 2025-12-09 10:16:01.682356+00 21180 DM9182#2XL SPMX-20240815316431 \N \N \N 1 \N [{"file_id": "0af3bda3-626a-4011-9868-25febc9d06dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d858e13c99f460e85da6a1e3123063c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d858e13c99f460e85da6a1e3123063c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d858e13c99f460e85da6a1e3123063c.jpg", "file_size": 52893, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d858e13c99f460e85da6a1e3123063c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d858e13c99f460e85da6a1e3123063c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d858e13c99f460e85da6a1e3123063c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d858e13c99f460e85da6a1e3123063c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d858e13c99f460e85da6a1e3123063c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qCTgzKQqKX_a6VyIIhE9DjTxFfQ=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.685736+00 2025-12-09 10:16:01.685743+00 21181 24077#-9-C SPMX-20240815316420 \N \N \N 1 \N [{"file_id": "afeb8795-c49e-4a78-9f92-2325df8e1ce0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aa9a3994d364d79ba4e882e381dac50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aa9a3994d364d79ba4e882e381dac50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aa9a3994d364d79ba4e882e381dac50.jpg", "file_size": 47174, "is_delete": false, "file_type": 1, "original_file_name": "24077#-9-C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa9a3994d364d79ba4e882e381dac50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa9a3994d364d79ba4e882e381dac50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aa9a3994d364d79ba4e882e381dac50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aa9a3994d364d79ba4e882e381dac50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aa9a3994d364d79ba4e882e381dac50.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NkxXQH_eQuKITVm05GVQk_DNYDE=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.689122+00 2025-12-09 10:16:01.689128+00 21182 0030-7#绿色 SPMX-20240815316421 \N \N \N 1 \N [{"file_id": "0fd3a6f9-d673-4728-91cc-6e1b2657139d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f36a0c6ace942d0b3660683a6e8a7b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f36a0c6ace942d0b3660683a6e8a7b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f36a0c6ace942d0b3660683a6e8a7b1.jpg", "file_size": 9661, "is_delete": false, "file_type": 1, "original_file_name": "0030-7#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f36a0c6ace942d0b3660683a6e8a7b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f36a0c6ace942d0b3660683a6e8a7b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f36a0c6ace942d0b3660683a6e8a7b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f36a0c6ace942d0b3660683a6e8a7b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f36a0c6ace942d0b3660683a6e8a7b1.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQ3iQfcxpysvuArjMeGhouQQLxM=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.692554+00 2025-12-09 10:16:01.69256+00 21183 CH641FWE#国际女郎4XL SPMX-20240815316426 \N \N \N 1 \N [{"file_id": "8cbe07be-6c75-4b63-b4c0-a95fe4b32880", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88d70317147e457f8f56ef1b93c95f12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88d70317147e457f8f56ef1b93c95f12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88d70317147e457f8f56ef1b93c95f12.jpg", "file_size": 14442, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d70317147e457f8f56ef1b93c95f12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d70317147e457f8f56ef1b93c95f12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88d70317147e457f8f56ef1b93c95f12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88d70317147e457f8f56ef1b93c95f12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88d70317147e457f8f56ef1b93c95f12.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W8V3sksyQRCiF-vCI9UB17to0hc=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.696167+00 2025-12-09 10:16:01.696175+00 21184 FX012FW#黄VS-D3 SPMX-20240815316425 \N \N \N 1 \N [{"file_id": "6ce8de1d-7141-48c7-8f17-8054b0bc8216", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdaf82bab35645a8ac486ed769051259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdaf82bab35645a8ac486ed769051259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdaf82bab35645a8ac486ed769051259.jpg", "file_size": 20048, "is_delete": false, "file_type": 1, "original_file_name": "FX012FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaf82bab35645a8ac486ed769051259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaf82bab35645a8ac486ed769051259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdaf82bab35645a8ac486ed769051259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdaf82bab35645a8ac486ed769051259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdaf82bab35645a8ac486ed769051259.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vskkprGttqQpNKSfzkMEVussXUI=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.699795+00 2025-12-09 10:16:01.699802+00 21185 LJJ3186#-黑红L码 SPMX-20240815316424 \N \N \N 1 \N [{"file_id": "1aca1b5e-1bc8-49de-b1b1-3527fcd366fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "712c7637a3e44f54afd63bb087d3bb37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "712c7637a3e44f54afd63bb087d3bb37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "712c7637a3e44f54afd63bb087d3bb37.jpg", "file_size": 16508, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-黑红L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712c7637a3e44f54afd63bb087d3bb37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712c7637a3e44f54afd63bb087d3bb37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/712c7637a3e44f54afd63bb087d3bb37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/712c7637a3e44f54afd63bb087d3bb37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/712c7637a3e44f54afd63bb087d3bb37.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:800gIN2hMGveGP8yBB5vH5TweLw=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.703313+00 2025-12-09 10:16:01.70332+00 21186 0030-7FWE#VS-D3 SPMX-20240815316430 \N \N \N 1 \N [{"file_id": "bb8e4537-2b9f-402a-8ba4-b4efe98ef46e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "088e955a26394236bd438be9a2c0d7f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "088e955a26394236bd438be9a2c0d7f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "088e955a26394236bd438be9a2c0d7f0.jpg", "file_size": 11443, "is_delete": false, "file_type": 1, "original_file_name": "0030-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088e955a26394236bd438be9a2c0d7f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088e955a26394236bd438be9a2c0d7f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/088e955a26394236bd438be9a2c0d7f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/088e955a26394236bd438be9a2c0d7f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/088e955a26394236bd438be9a2c0d7f0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zq3_-xEHJ8Nvm-6r4R3ksw6Taf8=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.70667+00 2025-12-09 10:16:01.706677+00 21187 LZ1425#大人T2号色 SPMX-20240815316428 \N \N \N 1 \N [{"file_id": "1c37243c-65ca-4bfc-b284-bd3e0ef6c684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c57f9a960b814275b06f8c62e9db3235.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c57f9a960b814275b06f8c62e9db3235.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c57f9a960b814275b06f8c62e9db3235.jpg", "file_size": 17462, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57f9a960b814275b06f8c62e9db3235.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57f9a960b814275b06f8c62e9db3235.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c57f9a960b814275b06f8c62e9db3235.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c57f9a960b814275b06f8c62e9db3235.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c57f9a960b814275b06f8c62e9db3235.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xzmG1VqGcgHo0ghdMMUitqIjsAA=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.71018+00 2025-12-09 10:16:01.710187+00 21188 1277#袖子补数XL SPMX-20240815316429 \N \N \N 1 \N [{"file_id": "9eca00a7-c2a6-40c7-925f-05b550591106", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2bbacc66cc04f74b7802290c7e3fbda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2bbacc66cc04f74b7802290c7e3fbda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2bbacc66cc04f74b7802290c7e3fbda.jpg", "file_size": 14120, "is_delete": false, "file_type": 1, "original_file_name": "1277#袖子补数XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bbacc66cc04f74b7802290c7e3fbda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bbacc66cc04f74b7802290c7e3fbda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bbacc66cc04f74b7802290c7e3fbda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2bbacc66cc04f74b7802290c7e3fbda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2bbacc66cc04f74b7802290c7e3fbda.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9PwzIHu2m0Gp2io7JRDS8poUxY=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.713527+00 2025-12-09 10:16:01.713534+00 21189 JY-AD242#8号白底黑色花朵 SPMX-20240815316422 \N \N \N 1 \N [{"file_id": "aaf64508-3641-4823-9d7d-36e67f903029", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebb6a5d20cd5480a8ffd874a0ee74005.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebb6a5d20cd5480a8ffd874a0ee74005.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebb6a5d20cd5480a8ffd874a0ee74005.jpg", "file_size": 19704, "is_delete": false, "file_type": 1, "original_file_name": "JY-AD242#8号白底黑色花朵.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb6a5d20cd5480a8ffd874a0ee74005.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb6a5d20cd5480a8ffd874a0ee74005.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebb6a5d20cd5480a8ffd874a0ee74005.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebb6a5d20cd5480a8ffd874a0ee74005.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebb6a5d20cd5480a8ffd874a0ee74005.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X14YnbG3izhKHnwR8dDESDPzVUA=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.717003+00 2025-12-09 10:16:01.717009+00 21190 88380FWF#D粉色46码 SPMX-20240815316437 \N \N \N 1 \N [{"file_id": "aa5ad8ea-8b12-4b43-9753-d0bb9cb6fd7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c902935c1fb340ffa4dbc8054dfab336.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c902935c1fb340ffa4dbc8054dfab336.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c902935c1fb340ffa4dbc8054dfab336.jpg", "file_size": 24605, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D粉色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c902935c1fb340ffa4dbc8054dfab336.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c902935c1fb340ffa4dbc8054dfab336.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c902935c1fb340ffa4dbc8054dfab336.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c902935c1fb340ffa4dbc8054dfab336.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c902935c1fb340ffa4dbc8054dfab336.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:73VHzIKgg6m_wHT741T0dvo6AB4=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.723888+00 2025-12-09 10:16:01.723897+00 21192 LZ1425#大人T4号色 SPMX-20240815316452 \N \N \N 1 \N [{"file_id": "3a6e4299-221a-410b-94b7-ff0911b9a7da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19f9decbd29c4207af312d53d2ca3559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19f9decbd29c4207af312d53d2ca3559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19f9decbd29c4207af312d53d2ca3559.jpg", "file_size": 17277, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f9decbd29c4207af312d53d2ca3559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f9decbd29c4207af312d53d2ca3559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19f9decbd29c4207af312d53d2ca3559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19f9decbd29c4207af312d53d2ca3559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19f9decbd29c4207af312d53d2ca3559.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NOq04G5JdgTxdG3D3kXDVSuC31I=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.72724+00 2025-12-09 10:16:01.727247+00 21193 LZ1425#大人T3号色 SPMX-20240815316441 \N \N \N 1 \N [{"file_id": "181f4ec4-05c2-49de-8484-167180ef353b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35ec9bf09ac64811b626c157bf2caa73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35ec9bf09ac64811b626c157bf2caa73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35ec9bf09ac64811b626c157bf2caa73.jpg", "file_size": 17409, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ec9bf09ac64811b626c157bf2caa73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ec9bf09ac64811b626c157bf2caa73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35ec9bf09ac64811b626c157bf2caa73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35ec9bf09ac64811b626c157bf2caa73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35ec9bf09ac64811b626c157bf2caa73.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:943J5kbtsvapwCyz6Im3JTyqxro=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.730596+00 2025-12-09 10:16:01.730607+00 21194 HXF018FW#粉VS-D3 SPMX-20240815316444 \N \N \N 1 \N [{"file_id": "42be175a-7ac2-4780-8a52-c6d4842369a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f04e5491b0004a168dd768cb62fe4068.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f04e5491b0004a168dd768cb62fe4068.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f04e5491b0004a168dd768cb62fe4068.jpg", "file_size": 21052, "is_delete": false, "file_type": 1, "original_file_name": "HXF018FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e5491b0004a168dd768cb62fe4068.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e5491b0004a168dd768cb62fe4068.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f04e5491b0004a168dd768cb62fe4068.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f04e5491b0004a168dd768cb62fe4068.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f04e5491b0004a168dd768cb62fe4068.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFqEG7ysT8CXDdZahjFsQtjXY5s=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.733974+00 2025-12-09 10:16:01.73398+00 21195 CH641FWE#国际女郎M SPMX-20240815316449 \N \N \N 1 \N [{"file_id": "5aa278bd-9f14-41ca-b2e3-c496fb5de9cd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "605af9c60cdf43a3a1c8bdc8f1f84c13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "605af9c60cdf43a3a1c8bdc8f1f84c13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "605af9c60cdf43a3a1c8bdc8f1f84c13.jpg", "file_size": 15067, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605af9c60cdf43a3a1c8bdc8f1f84c13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605af9c60cdf43a3a1c8bdc8f1f84c13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/605af9c60cdf43a3a1c8bdc8f1f84c13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/605af9c60cdf43a3a1c8bdc8f1f84c13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/605af9c60cdf43a3a1c8bdc8f1f84c13.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z4jWwZvGmGuSMp63Fe1DffruRBo=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.737395+00 2025-12-09 10:16:01.737401+00 21196 LJJ3186#-黑红M码 SPMX-20240815316436 \N \N \N 1 \N [{"file_id": "f537c3fb-61b0-4515-af5d-d9a94db856c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb6fba0abfa43dbbd193bfa934e6b87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb6fba0abfa43dbbd193bfa934e6b87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb6fba0abfa43dbbd193bfa934e6b87.jpg", "file_size": 16649, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3186#-黑红M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb6fba0abfa43dbbd193bfa934e6b87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb6fba0abfa43dbbd193bfa934e6b87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb6fba0abfa43dbbd193bfa934e6b87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb6fba0abfa43dbbd193bfa934e6b87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb6fba0abfa43dbbd193bfa934e6b87.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_ELA0uiXnUwIoPjrgrz3viBi-9s=", "createTime": "2024-08-15 15:09:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.740656+00 2025-12-09 10:16:01.74066+00 21197 LJJ3187#-彩蓝金黄L码 SPMX-20240815316446 \N \N \N 1 \N [{"file_id": "1e506747-b7ee-472e-8b42-a45598aadbec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49bb96dc64b944fe8a90fbcf09c1f54a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49bb96dc64b944fe8a90fbcf09c1f54a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49bb96dc64b944fe8a90fbcf09c1f54a.jpg", "file_size": 21193, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-彩蓝金黄L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bb96dc64b944fe8a90fbcf09c1f54a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bb96dc64b944fe8a90fbcf09c1f54a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49bb96dc64b944fe8a90fbcf09c1f54a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49bb96dc64b944fe8a90fbcf09c1f54a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49bb96dc64b944fe8a90fbcf09c1f54a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qpVlUTsXIuqK_APWiF2ACcKpGw4=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.743928+00 2025-12-09 10:16:01.743934+00 21198 FX013# SPMX-20240815316447 \N \N \N 1 \N [{"file_id": "86c59cfb-5f6c-4c45-a980-c8dc433848d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77aa47d19cea4168a63d2aa955c0b782.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77aa47d19cea4168a63d2aa955c0b782.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77aa47d19cea4168a63d2aa955c0b782.jpg", "file_size": 20494, "is_delete": false, "file_type": 1, "original_file_name": "FX013#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa47d19cea4168a63d2aa955c0b782.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa47d19cea4168a63d2aa955c0b782.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aa47d19cea4168a63d2aa955c0b782.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77aa47d19cea4168a63d2aa955c0b782.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77aa47d19cea4168a63d2aa955c0b782.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9XRJjtIHfpeyG1GxvL750VYrvU=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.747351+00 2025-12-09 10:16:01.747357+00 21199 0030-8#杏 SPMX-20240815316450 \N \N \N 1 \N [{"file_id": "f636dfcf-d7b1-4f49-ba5d-cfb0e574385a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf0b64ca1b944754aaf2247dc946e379.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf0b64ca1b944754aaf2247dc946e379.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf0b64ca1b944754aaf2247dc946e379.jpg", "file_size": 13320, "is_delete": false, "file_type": 1, "original_file_name": "0030-8#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0b64ca1b944754aaf2247dc946e379.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0b64ca1b944754aaf2247dc946e379.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf0b64ca1b944754aaf2247dc946e379.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf0b64ca1b944754aaf2247dc946e379.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf0b64ca1b944754aaf2247dc946e379.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u3I4jX7S25A09rSC08BNpTHZ_j8=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.720371+00 2025-12-09 10:16:01.720377+00 21191 JY-BX1351#正身 SPMX-20240815316445 \N \N \N 1 \N [{"file_id": "ae733e53-0b15-448d-b8e2-10f536ea1efe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f32bff6406b64bcda9c1e768f36a927b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f32bff6406b64bcda9c1e768f36a927b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f32bff6406b64bcda9c1e768f36a927b.jpg", "file_size": 28684, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1351#正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32bff6406b64bcda9c1e768f36a927b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32bff6406b64bcda9c1e768f36a927b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f32bff6406b64bcda9c1e768f36a927b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f32bff6406b64bcda9c1e768f36a927b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f32bff6406b64bcda9c1e768f36a927b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ys-enYVCNuAZ6iRi0BJjtnw9UUc=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.754389+00 2025-12-09 10:16:01.754397+00 21200 88380FWF#D粉色48码 SPMX-20240815316448 \N \N \N 1 \N [{"file_id": "5e17ef41-2dd3-4ced-b7f8-3e297a7dc453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32db43f2fb944ff5ade682a728bdce5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32db43f2fb944ff5ade682a728bdce5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32db43f2fb944ff5ade682a728bdce5f.jpg", "file_size": 24332, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D粉色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32db43f2fb944ff5ade682a728bdce5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32db43f2fb944ff5ade682a728bdce5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32db43f2fb944ff5ade682a728bdce5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32db43f2fb944ff5ade682a728bdce5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32db43f2fb944ff5ade682a728bdce5f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1DbPtSR5ohCvjthvNKMdaSJPw1k=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.757812+00 2025-12-09 10:16:01.75782+00 21201 CH641FWE#国际女郎L SPMX-20240815316438 \N \N \N 1 \N [{"file_id": "74728eb6-ca4b-4ef3-a93e-0b18e436a612", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c5202e9fbe45be938edbc9b092b26a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c5202e9fbe45be938edbc9b092b26a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c5202e9fbe45be938edbc9b092b26a.jpg", "file_size": 14768, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5202e9fbe45be938edbc9b092b26a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5202e9fbe45be938edbc9b092b26a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c5202e9fbe45be938edbc9b092b26a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c5202e9fbe45be938edbc9b092b26a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c5202e9fbe45be938edbc9b092b26a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:05C05LEyYcESzevOxcTsVaCjm58=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.761281+00 2025-12-09 10:16:01.761288+00 21202 1277-1FWE#下摆彩兰 SPMX-20240815316451 \N \N \N 1 \N [{"file_id": "7324c0e4-4f2c-4a48-bb03-cb9a7c7287fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0162c95234a466e92185afe9f63ff69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0162c95234a466e92185afe9f63ff69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0162c95234a466e92185afe9f63ff69.jpg", "file_size": 14183, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆彩兰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0162c95234a466e92185afe9f63ff69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0162c95234a466e92185afe9f63ff69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0162c95234a466e92185afe9f63ff69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0162c95234a466e92185afe9f63ff69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0162c95234a466e92185afe9f63ff69.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6O8IXhVAc3gVbQYFqKmbmMT5IfA=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.764858+00 2025-12-09 10:16:01.764864+00 21203 DM9182#3XL SPMX-20240815316442 \N \N \N 1 \N [{"file_id": "8ba167cc-2b03-4aa9-a82a-2dede61684c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b649799e8bca4eadaf3a2054ae2e6264.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b649799e8bca4eadaf3a2054ae2e6264.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b649799e8bca4eadaf3a2054ae2e6264.jpg", "file_size": 51972, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649799e8bca4eadaf3a2054ae2e6264.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649799e8bca4eadaf3a2054ae2e6264.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b649799e8bca4eadaf3a2054ae2e6264.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b649799e8bca4eadaf3a2054ae2e6264.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b649799e8bca4eadaf3a2054ae2e6264.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5nGsQ735Wsu9-dLUhxPfUs0bVY=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.768282+00 2025-12-09 10:16:01.768288+00 21204 0030-7FWF#白兔子 SPMX-20240815316439 \N \N \N 1 \N [{"file_id": "17fb6a54-4830-42d8-8b57-42908428c756", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e63c03129c6454095aa7e082743c48f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e63c03129c6454095aa7e082743c48f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e63c03129c6454095aa7e082743c48f.jpg", "file_size": 19980, "is_delete": false, "file_type": 1, "original_file_name": "0030-7FWF#白兔子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e63c03129c6454095aa7e082743c48f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e63c03129c6454095aa7e082743c48f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e63c03129c6454095aa7e082743c48f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e63c03129c6454095aa7e082743c48f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e63c03129c6454095aa7e082743c48f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zt9XsI0gGmz4LXvfM_e8LId2t2c=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.771697+00 2025-12-09 10:16:01.77171+00 21205 1277-1FWE#下摆墨绿 SPMX-20240815316440 \N \N \N 1 \N [{"file_id": "13af8110-7d55-4eb0-99e6-06649ed9dc7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fcdf618f0844d6b8ce67e6675e497cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fcdf618f0844d6b8ce67e6675e497cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fcdf618f0844d6b8ce67e6675e497cd.jpg", "file_size": 14225, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdf618f0844d6b8ce67e6675e497cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdf618f0844d6b8ce67e6675e497cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fcdf618f0844d6b8ce67e6675e497cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fcdf618f0844d6b8ce67e6675e497cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fcdf618f0844d6b8ce67e6675e497cd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tt6Uqf9NF_ygEpgHA5efaJDQq7U=", "createTime": "2024-08-15 15:09:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.775129+00 2025-12-09 10:16:01.775135+00 21206 CH641FWE#国际女郎S SPMX-20240815316459 \N \N \N 1 \N [{"file_id": "3b32460e-b06a-4341-bfaf-3b9ab05139ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d50cfc38fe624731b105cf9147343824.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d50cfc38fe624731b105cf9147343824.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d50cfc38fe624731b105cf9147343824.jpg", "file_size": 14485, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50cfc38fe624731b105cf9147343824.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50cfc38fe624731b105cf9147343824.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d50cfc38fe624731b105cf9147343824.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d50cfc38fe624731b105cf9147343824.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d50cfc38fe624731b105cf9147343824.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d8hCY2qexwV0r92VaMEOUQ_sAY8=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.778582+00 2025-12-09 10:16:01.778589+00 21207 1277-1FWE#下摆枣红 SPMX-20240815316461 \N \N \N 1 \N [{"file_id": "f837f721-29ab-4f3f-b8c6-db8fa880c7c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b16d2075066b417b944c098e20341dd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b16d2075066b417b944c098e20341dd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b16d2075066b417b944c098e20341dd5.jpg", "file_size": 14680, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b16d2075066b417b944c098e20341dd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b16d2075066b417b944c098e20341dd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b16d2075066b417b944c098e20341dd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b16d2075066b417b944c098e20341dd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b16d2075066b417b944c098e20341dd5.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlwoVhCKEff2igiPptFGIoVCfho=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.781951+00 2025-12-09 10:16:01.781957+00 21208 JY-BX1526#RC23 SPMX-20240815316456 \N \N \N 1 \N [{"file_id": "0b4120f9-edbc-4435-a72d-bad0faf3138f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7fe4f095afc940a182d9ccfc82090178.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7fe4f095afc940a182d9ccfc82090178.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7fe4f095afc940a182d9ccfc82090178.jpg", "file_size": 33755, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1526#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4f095afc940a182d9ccfc82090178.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4f095afc940a182d9ccfc82090178.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7fe4f095afc940a182d9ccfc82090178.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7fe4f095afc940a182d9ccfc82090178.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7fe4f095afc940a182d9ccfc82090178.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcSF-OMuCsX0uafN067USoILOi4=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.785389+00 2025-12-09 10:16:01.785396+00 21209 LZ1425#大人T5号色 SPMX-20240815316463 \N \N \N 1 \N [{"file_id": "106ba746-fb1d-4ef8-81a3-cd54ff3efe6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dce56c3dceb34b9cb73034e9ca9c0c65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dce56c3dceb34b9cb73034e9ca9c0c65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dce56c3dceb34b9cb73034e9ca9c0c65.jpg", "file_size": 18208, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce56c3dceb34b9cb73034e9ca9c0c65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce56c3dceb34b9cb73034e9ca9c0c65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dce56c3dceb34b9cb73034e9ca9c0c65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dce56c3dceb34b9cb73034e9ca9c0c65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dce56c3dceb34b9cb73034e9ca9c0c65.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MLFvav_msPz8meEuAyR1h2JPcfc=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.788789+00 2025-12-09 10:16:01.788797+00 21210 24079#-2主色玫红 SPMX-20240815316455 \N \N \N 1 \N [{"file_id": "b26f919c-a62a-4d06-8181-6f7b4c003d2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1dd0d0b243674d878e5d7d501a7b142c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1dd0d0b243674d878e5d7d501a7b142c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1dd0d0b243674d878e5d7d501a7b142c.jpg", "file_size": 46529, "is_delete": false, "file_type": 1, "original_file_name": "24079#-2主色玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd0d0b243674d878e5d7d501a7b142c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd0d0b243674d878e5d7d501a7b142c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1dd0d0b243674d878e5d7d501a7b142c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1dd0d0b243674d878e5d7d501a7b142c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1dd0d0b243674d878e5d7d501a7b142c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6nuakN_zeH98MFKJaZSlkwZ97ws=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.792225+00 2025-12-09 10:16:01.792231+00 21211 LJJ3187#-彩蓝金黄M码 SPMX-20240815316457 \N \N \N 1 \N [{"file_id": "2eca6a0e-13dd-42fe-9713-e1f7462f61c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3e9883ec1864637a09d5c1d24b9cfc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3e9883ec1864637a09d5c1d24b9cfc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3e9883ec1864637a09d5c1d24b9cfc3.jpg", "file_size": 21986, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-彩蓝金黄M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e9883ec1864637a09d5c1d24b9cfc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e9883ec1864637a09d5c1d24b9cfc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3e9883ec1864637a09d5c1d24b9cfc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3e9883ec1864637a09d5c1d24b9cfc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3e9883ec1864637a09d5c1d24b9cfc3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8Ft7NbH9y6xrVNF4ChdOzbe33o=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.795644+00 2025-12-09 10:16:01.795651+00 21212 DM9182#4XL SPMX-20240815316453 \N \N \N 1 \N [{"file_id": "617578d5-9a7a-42a8-97ef-830757af3608", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d6ea2af985440b2905a4e9d4d65826a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d6ea2af985440b2905a4e9d4d65826a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d6ea2af985440b2905a4e9d4d65826a.jpg", "file_size": 49357, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6ea2af985440b2905a4e9d4d65826a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6ea2af985440b2905a4e9d4d65826a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d6ea2af985440b2905a4e9d4d65826a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d6ea2af985440b2905a4e9d4d65826a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d6ea2af985440b2905a4e9d4d65826a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M1M160B_k07wnqdhWJDetxw0eu8=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.799096+00 2025-12-09 10:16:01.799103+00 21213 HXF019#白底 SPMX-20240815316454 \N \N \N 1 \N [{"file_id": "5574dbe6-1d99-4fa5-acd6-67165d0a5039", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d044829ac0cf49848db0480ed12e5272.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d044829ac0cf49848db0480ed12e5272.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d044829ac0cf49848db0480ed12e5272.jpg", "file_size": 21119, "is_delete": false, "file_type": 1, "original_file_name": "HXF019#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044829ac0cf49848db0480ed12e5272.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044829ac0cf49848db0480ed12e5272.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d044829ac0cf49848db0480ed12e5272.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d044829ac0cf49848db0480ed12e5272.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d044829ac0cf49848db0480ed12e5272.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oumPJmI2h23NXJNRT9U7tVCGzUc=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.802507+00 2025-12-09 10:16:01.802517+00 21214 FX013#VS-D3 SPMX-20240815316458 \N \N \N 1 \N [{"file_id": "754d673f-5101-4984-b9f2-3086e008e2ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f798e241a2064ed097a354bc6cc686cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f798e241a2064ed097a354bc6cc686cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f798e241a2064ed097a354bc6cc686cc.jpg", "file_size": 12464, "is_delete": false, "file_type": 1, "original_file_name": "FX013#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f798e241a2064ed097a354bc6cc686cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f798e241a2064ed097a354bc6cc686cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f798e241a2064ed097a354bc6cc686cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f798e241a2064ed097a354bc6cc686cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f798e241a2064ed097a354bc6cc686cc.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zB418qH8nwaiEjmlpNDlxfShxLU=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.80593+00 2025-12-09 10:16:01.805937+00 21215 0030-8#绿 SPMX-20240815316462 \N \N \N 1 \N [{"file_id": "172f0c69-005b-4a1c-87e1-37231535ba00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9c801f9e24ce443882a2532e8dca7a22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9c801f9e24ce443882a2532e8dca7a22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9c801f9e24ce443882a2532e8dca7a22.jpg", "file_size": 11982, "is_delete": false, "file_type": 1, "original_file_name": "0030-8#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c801f9e24ce443882a2532e8dca7a22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c801f9e24ce443882a2532e8dca7a22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9c801f9e24ce443882a2532e8dca7a22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9c801f9e24ce443882a2532e8dca7a22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9c801f9e24ce443882a2532e8dca7a22.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:reQRvfgYk9uzVZ1iZbyu-Zogl-U=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.809402+00 2025-12-09 10:16:01.809409+00 21216 88380FWF#D粉色50码 SPMX-20240815316460 \N \N \N 1 \N [{"file_id": "1e636532-1db5-4253-b139-1efd2f1d179c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7e674a8cf06b43f8aa813350b3d15e5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7e674a8cf06b43f8aa813350b3d15e5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7e674a8cf06b43f8aa813350b3d15e5a.jpg", "file_size": 25104, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#D粉色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e674a8cf06b43f8aa813350b3d15e5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e674a8cf06b43f8aa813350b3d15e5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7e674a8cf06b43f8aa813350b3d15e5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7e674a8cf06b43f8aa813350b3d15e5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7e674a8cf06b43f8aa813350b3d15e5a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kMqM5VIAPrsnq00BKt54VrQODNA=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.812827+00 2025-12-09 10:16:01.812834+00 21217 HXF019#黑底 SPMX-20240815316465 \N \N \N 1 \N [{"file_id": "b434f368-8657-4b54-84df-05ab95c0cde8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8c5a0ee679844569c3bfe5f573987e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8c5a0ee679844569c3bfe5f573987e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8c5a0ee679844569c3bfe5f573987e9.jpg", "file_size": 23179, "is_delete": false, "file_type": 1, "original_file_name": "HXF019#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8c5a0ee679844569c3bfe5f573987e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8c5a0ee679844569c3bfe5f573987e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8c5a0ee679844569c3bfe5f573987e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8c5a0ee679844569c3bfe5f573987e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8c5a0ee679844569c3bfe5f573987e9.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H1wV0ioyKTH0Paz-DpE7qcK1VPo=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.816183+00 2025-12-09 10:16:01.816189+00 21218 LJJ3187#-白红L码 SPMX-20240815316467 \N \N \N 1 \N [{"file_id": "96016ee4-92d7-486d-9377-def69cbdbe2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80acf92e386242ca84fc3e3c7e192120.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80acf92e386242ca84fc3e3c7e192120.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80acf92e386242ca84fc3e3c7e192120.jpg", "file_size": 18188, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白红L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80acf92e386242ca84fc3e3c7e192120.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80acf92e386242ca84fc3e3c7e192120.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80acf92e386242ca84fc3e3c7e192120.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80acf92e386242ca84fc3e3c7e192120.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80acf92e386242ca84fc3e3c7e192120.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PJBJ7Q8Caramv3lnAP6pDUYKT4E=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.819604+00 2025-12-09 10:16:01.819611+00 21219 FX013FW#VS-D3 SPMX-20240815316469 \N \N \N 1 \N [{"file_id": "40ca36bc-1b8a-42b3-af33-e47eaed15f6d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a38aafae9a74bdb90d8b879aea55d41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a38aafae9a74bdb90d8b879aea55d41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a38aafae9a74bdb90d8b879aea55d41.jpg", "file_size": 11900, "is_delete": false, "file_type": 1, "original_file_name": "FX013FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a38aafae9a74bdb90d8b879aea55d41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a38aafae9a74bdb90d8b879aea55d41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a38aafae9a74bdb90d8b879aea55d41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a38aafae9a74bdb90d8b879aea55d41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a38aafae9a74bdb90d8b879aea55d41.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jm6yrfGOw6OJNPXjNA3i6H181hs=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.823042+00 2025-12-09 10:16:01.823049+00 21220 DM9182#捆条 SPMX-20240815316475 \N \N \N 1 \N [{"file_id": "a0db9e24-862a-40dc-a4f2-452ef84caea8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09518299e39a4fc1baed01e32edab656.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09518299e39a4fc1baed01e32edab656.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09518299e39a4fc1baed01e32edab656.jpg", "file_size": 33035, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09518299e39a4fc1baed01e32edab656.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09518299e39a4fc1baed01e32edab656.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09518299e39a4fc1baed01e32edab656.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09518299e39a4fc1baed01e32edab656.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09518299e39a4fc1baed01e32edab656.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TIMlJ5_tm0OsOsjPV1W8UfF_cMI=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.826524+00 2025-12-09 10:16:01.82653+00 21221 1277-1FWE#下摆粉色 SPMX-20240815316470 \N \N \N 1 \N [{"file_id": "7e4062af-a383-4e3f-9520-de40240eaa21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e37101a5beba44b6a9c540ba4d7a348b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e37101a5beba44b6a9c540ba4d7a348b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e37101a5beba44b6a9c540ba4d7a348b.jpg", "file_size": 13733, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37101a5beba44b6a9c540ba4d7a348b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37101a5beba44b6a9c540ba4d7a348b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37101a5beba44b6a9c540ba4d7a348b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e37101a5beba44b6a9c540ba4d7a348b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e37101a5beba44b6a9c540ba4d7a348b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8oBcGcBfctymQeBljH4ldkS6rA=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.830566+00 2025-12-09 10:16:01.830573+00 21222 JY-BX1530#RC23 SPMX-20240815316468 \N \N \N 1 \N [{"file_id": "1803d774-9141-481b-8df5-1eafdb7b94f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e390d1884ef453a8276b01ec90fa4ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e390d1884ef453a8276b01ec90fa4ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e390d1884ef453a8276b01ec90fa4ce.jpg", "file_size": 69513, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1530#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e390d1884ef453a8276b01ec90fa4ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e390d1884ef453a8276b01ec90fa4ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e390d1884ef453a8276b01ec90fa4ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e390d1884ef453a8276b01ec90fa4ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e390d1884ef453a8276b01ec90fa4ce.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHhIKHqWiEb4dhRdSVc_ZqncKVs=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.904079+00 2025-12-09 10:16:01.904086+00 21243 JY-BX1601#RC23 SPMX-20240815316488 \N \N \N 1 \N [{"file_id": "cb3b7f13-6c1c-4a34-9f50-dbfd9c93aaba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9a039e44b024b61b1cabfb71a8bcdc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9a039e44b024b61b1cabfb71a8bcdc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9a039e44b024b61b1cabfb71a8bcdc6.jpg", "file_size": 45778, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1601#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a039e44b024b61b1cabfb71a8bcdc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a039e44b024b61b1cabfb71a8bcdc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9a039e44b024b61b1cabfb71a8bcdc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9a039e44b024b61b1cabfb71a8bcdc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9a039e44b024b61b1cabfb71a8bcdc6.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J0P3N3PWSML-RtcqPXh24UnD-nk=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.834366+00 2025-12-09 10:16:01.834374+00 21223 CH641FWE#国际女郎XL SPMX-20240815316471 \N \N \N 1 \N [{"file_id": "f198c1f8-d190-4ede-b05e-951c3ea90a81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6a1dcac6b82401baf204c611af968b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6a1dcac6b82401baf204c611af968b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6a1dcac6b82401baf204c611af968b6.jpg", "file_size": 14956, "is_delete": false, "file_type": 1, "original_file_name": "CH641FWE#国际女郎XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a1dcac6b82401baf204c611af968b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a1dcac6b82401baf204c611af968b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a1dcac6b82401baf204c611af968b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6a1dcac6b82401baf204c611af968b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6a1dcac6b82401baf204c611af968b6.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:da1lyEkG2AIEKRC7_5LOxGmW6b0=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.837895+00 2025-12-09 10:16:01.837901+00 21224 LZ1425#童装T1号色 SPMX-20240815316473 \N \N \N 1 \N [{"file_id": "d6c94683-2c64-4726-aff9-9337fb8f7427", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab1cd640f3684db2ab164d42dd617639.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab1cd640f3684db2ab164d42dd617639.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab1cd640f3684db2ab164d42dd617639.jpg", "file_size": 23737, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1cd640f3684db2ab164d42dd617639.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1cd640f3684db2ab164d42dd617639.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab1cd640f3684db2ab164d42dd617639.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab1cd640f3684db2ab164d42dd617639.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab1cd640f3684db2ab164d42dd617639.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hy77b7BTt6dOS14O8L-GGP0CODI=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.841354+00 2025-12-09 10:16:01.84136+00 21225 DM9182#5XL SPMX-20240815316464 \N \N \N 1 \N [{"file_id": "f901750b-3e67-4029-9f69-fe707d8f2ead", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a2d8f2ab30d4f18b179aa8f5180629f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a2d8f2ab30d4f18b179aa8f5180629f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a2d8f2ab30d4f18b179aa8f5180629f.jpg", "file_size": 45124, "is_delete": false, "file_type": 1, "original_file_name": "DM9182#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2d8f2ab30d4f18b179aa8f5180629f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2d8f2ab30d4f18b179aa8f5180629f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a2d8f2ab30d4f18b179aa8f5180629f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a2d8f2ab30d4f18b179aa8f5180629f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a2d8f2ab30d4f18b179aa8f5180629f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1YyRTgKs-GdhhrHRqO6egEsSVBU=", "createTime": "2024-08-15 15:09:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.844789+00 2025-12-09 10:16:01.844796+00 21226 24079#-2插色绿色 SPMX-20240815316466 \N \N \N 1 \N [{"file_id": "c8439d5e-70af-4ec4-8b98-bbe410ae2d0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "023706a96e094662b13cf8f612c4047b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "023706a96e094662b13cf8f612c4047b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "023706a96e094662b13cf8f612c4047b.jpg", "file_size": 44187, "is_delete": false, "file_type": 1, "original_file_name": "24079#-2插色绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023706a96e094662b13cf8f612c4047b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023706a96e094662b13cf8f612c4047b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/023706a96e094662b13cf8f612c4047b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/023706a96e094662b13cf8f612c4047b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/023706a96e094662b13cf8f612c4047b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9t6t4g2OmYvydaK8tGTUxHasQVA=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.848198+00 2025-12-09 10:16:01.848204+00 21227 88380FWF#H彩兰42码 SPMX-20240815316472 \N \N \N 1 \N [{"file_id": "5f033ee6-7668-4878-bb13-9f2da5388d09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "369c30b2dfc94753ae260e56567b65ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "369c30b2dfc94753ae260e56567b65ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "369c30b2dfc94753ae260e56567b65ac.jpg", "file_size": 25380, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H彩兰42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369c30b2dfc94753ae260e56567b65ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369c30b2dfc94753ae260e56567b65ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/369c30b2dfc94753ae260e56567b65ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/369c30b2dfc94753ae260e56567b65ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/369c30b2dfc94753ae260e56567b65ac.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qaq1kqR4ubRuAjqo_OVmVDVPM8=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.851795+00 2025-12-09 10:16:01.851803+00 21228 0030-8#蓝 SPMX-20240815316474 \N \N \N 1 \N [{"file_id": "91d3f8c5-22c1-4180-9c3b-392045d8db28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8762e6bc77ef4d2bb0caa35d09709d0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8762e6bc77ef4d2bb0caa35d09709d0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8762e6bc77ef4d2bb0caa35d09709d0a.jpg", "file_size": 11199, "is_delete": false, "file_type": 1, "original_file_name": "0030-8#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8762e6bc77ef4d2bb0caa35d09709d0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8762e6bc77ef4d2bb0caa35d09709d0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8762e6bc77ef4d2bb0caa35d09709d0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8762e6bc77ef4d2bb0caa35d09709d0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8762e6bc77ef4d2bb0caa35d09709d0a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bq0PnC9AN7ZB26uTgtjNWMKKtGA=", "createTime": "2024-08-15 15:09:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.855521+00 2025-12-09 10:16:01.855528+00 21229 88380FWF#H彩兰44码 SPMX-20240815316483 \N \N \N 1 \N [{"file_id": "15edfb5e-1a0e-4e20-81f4-ecf40c82bfd3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "494f72abba8543368862d0d05d2465eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "494f72abba8543368862d0d05d2465eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "494f72abba8543368862d0d05d2465eb.jpg", "file_size": 25817, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H彩兰44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494f72abba8543368862d0d05d2465eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494f72abba8543368862d0d05d2465eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/494f72abba8543368862d0d05d2465eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/494f72abba8543368862d0d05d2465eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/494f72abba8543368862d0d05d2465eb.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G-KAK8PUDzvsduBC5_K_4TBNNrs=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.859146+00 2025-12-09 10:16:01.859153+00 21230 LZ1425#童装T2号色 SPMX-20240815316484 \N \N \N 1 \N [{"file_id": "99bfb689-054f-4d76-bba4-5e4a12eaac31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11e0ee71f5ec4f6faafe2946f5a18eef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11e0ee71f5ec4f6faafe2946f5a18eef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11e0ee71f5ec4f6faafe2946f5a18eef.jpg", "file_size": 20769, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e0ee71f5ec4f6faafe2946f5a18eef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e0ee71f5ec4f6faafe2946f5a18eef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11e0ee71f5ec4f6faafe2946f5a18eef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11e0ee71f5ec4f6faafe2946f5a18eef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11e0ee71f5ec4f6faafe2946f5a18eef.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bwosUUNH_ALzrZ6Y29ACHYj82Lw=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.862632+00 2025-12-09 10:16:01.862639+00 21231 1277-1FWE#下摆豆沙 SPMX-20240815316482 \N \N \N 1 \N [{"file_id": "213a1089-857f-4cfc-897e-240dfb0e79c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aed640890dd64d2a8de496ebf01833a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aed640890dd64d2a8de496ebf01833a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aed640890dd64d2a8de496ebf01833a4.jpg", "file_size": 13949, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed640890dd64d2a8de496ebf01833a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed640890dd64d2a8de496ebf01833a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed640890dd64d2a8de496ebf01833a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aed640890dd64d2a8de496ebf01833a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aed640890dd64d2a8de496ebf01833a4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iXxu4-Jx3KkMFMoputWhuFvqC5k=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.866107+00 2025-12-09 10:16:01.866113+00 21232 FX013FWE#白VS-D3 SPMX-20240815316478 \N \N \N 1 \N [{"file_id": "c6d57cd8-c2d6-4c80-a55f-5251ee1362d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c86a097d2b8d4100ae17d352cca22d8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c86a097d2b8d4100ae17d352cca22d8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c86a097d2b8d4100ae17d352cca22d8e.jpg", "file_size": 15934, "is_delete": false, "file_type": 1, "original_file_name": "FX013FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86a097d2b8d4100ae17d352cca22d8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86a097d2b8d4100ae17d352cca22d8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86a097d2b8d4100ae17d352cca22d8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c86a097d2b8d4100ae17d352cca22d8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c86a097d2b8d4100ae17d352cca22d8e.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yLbs6RGKN2s4ni-l9Y4kg3kI7IA=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.869701+00 2025-12-09 10:16:01.869714+00 21233 HXF019FW#原版色VS-D3 SPMX-20240815316476 \N \N \N 1 \N [{"file_id": "d75548fa-ed91-4cfb-bd64-6043d3a20218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b2ca368d86344f59d94304822d43b8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b2ca368d86344f59d94304822d43b8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b2ca368d86344f59d94304822d43b8d.jpg", "file_size": 13668, "is_delete": false, "file_type": 1, "original_file_name": "HXF019FW#原版色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2ca368d86344f59d94304822d43b8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2ca368d86344f59d94304822d43b8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2ca368d86344f59d94304822d43b8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b2ca368d86344f59d94304822d43b8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b2ca368d86344f59d94304822d43b8d.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELtZhMfk8N7HeiVr6-khwfgYpf4=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.873252+00 2025-12-09 10:16:01.873258+00 21234 CH643FWE#摩登女郎2XL SPMX-20240815316481 \N \N \N 1 \N [{"file_id": "83d319e3-0dc5-418b-8359-89fc2b2499eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6a879f72eb347d19ba75d5faa2d5a6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6a879f72eb347d19ba75d5faa2d5a6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6a879f72eb347d19ba75d5faa2d5a6f.jpg", "file_size": 9165, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a879f72eb347d19ba75d5faa2d5a6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a879f72eb347d19ba75d5faa2d5a6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6a879f72eb347d19ba75d5faa2d5a6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6a879f72eb347d19ba75d5faa2d5a6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6a879f72eb347d19ba75d5faa2d5a6f.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TR9w2nkEkUj0s4qU3J7SbuiChiw=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.876696+00 2025-12-09 10:16:01.876701+00 21235 LJJ3187#-白红M码 SPMX-20240815316480 \N \N \N 1 \N [{"file_id": "a2a978e4-5b45-412c-824e-b1c2dba02b5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29558ee31f3d40b7bd213326b5242bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29558ee31f3d40b7bd213326b5242bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29558ee31f3d40b7bd213326b5242bb0.jpg", "file_size": 18759, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白红M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558ee31f3d40b7bd213326b5242bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558ee31f3d40b7bd213326b5242bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29558ee31f3d40b7bd213326b5242bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29558ee31f3d40b7bd213326b5242bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29558ee31f3d40b7bd213326b5242bb0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYQ4m62eNovi5vZO42ONg0SE0Ug=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.880138+00 2025-12-09 10:16:01.880145+00 21236 24079#-3主色橙色 SPMX-20240815316477 \N \N \N 1 \N [{"file_id": "7458d7ca-9a1e-43dd-9016-38661905affd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b3dc16c6ab041e0a02a870beece9378.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b3dc16c6ab041e0a02a870beece9378.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b3dc16c6ab041e0a02a870beece9378.jpg", "file_size": 46483, "is_delete": false, "file_type": 1, "original_file_name": "24079#-3主色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3dc16c6ab041e0a02a870beece9378.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3dc16c6ab041e0a02a870beece9378.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b3dc16c6ab041e0a02a870beece9378.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b3dc16c6ab041e0a02a870beece9378.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b3dc16c6ab041e0a02a870beece9378.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oQjma23QGn2NkzNjGV5XJpOgQEQ=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.883477+00 2025-12-09 10:16:01.883483+00 21237 JY-BX1535#RC23 SPMX-20240815316479 \N \N \N 1 \N [{"file_id": "5a21a847-6827-4e94-888f-d93671decfa9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cd92708b7de428faccdadd43698b9e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cd92708b7de428faccdadd43698b9e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cd92708b7de428faccdadd43698b9e4.jpg", "file_size": 44362, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1535#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd92708b7de428faccdadd43698b9e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd92708b7de428faccdadd43698b9e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cd92708b7de428faccdadd43698b9e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cd92708b7de428faccdadd43698b9e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cd92708b7de428faccdadd43698b9e4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yiGLDtxnVuNNU5C9pGezGJQ-OcQ=", "createTime": "2024-08-15 15:09:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.886935+00 2025-12-09 10:16:01.886942+00 21238 DM9189#RC23 SPMX-20240815316487 \N \N \N 1 \N [{"file_id": "90c83287-5542-4eed-9d0d-47550f30d551", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fd4c87784e24989b51aaaf6ca0d9fb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fd4c87784e24989b51aaaf6ca0d9fb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fd4c87784e24989b51aaaf6ca0d9fb4.jpg", "file_size": 72649, "is_delete": false, "file_type": 1, "original_file_name": "DM9189#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4c87784e24989b51aaaf6ca0d9fb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4c87784e24989b51aaaf6ca0d9fb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fd4c87784e24989b51aaaf6ca0d9fb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fd4c87784e24989b51aaaf6ca0d9fb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fd4c87784e24989b51aaaf6ca0d9fb4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xQxsJNrpIaBsdg0gzWP17oTRtI=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.890341+00 2025-12-09 10:16:01.890347+00 21239 88380FWF#H彩兰46码 SPMX-20240815316489 \N \N \N 1 \N [{"file_id": "f17833a5-7687-4f2f-9148-3fa4bde1ffb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04c097ab971244538f4c0a3c61a5f69a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04c097ab971244538f4c0a3c61a5f69a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04c097ab971244538f4c0a3c61a5f69a.jpg", "file_size": 26111, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H彩兰46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c097ab971244538f4c0a3c61a5f69a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c097ab971244538f4c0a3c61a5f69a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04c097ab971244538f4c0a3c61a5f69a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04c097ab971244538f4c0a3c61a5f69a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04c097ab971244538f4c0a3c61a5f69a.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tyuOPNDMmSpLGeByRcO1aZ1zYLo=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.893747+00 2025-12-09 10:16:01.893753+00 21240 CH643FWE#摩登女郎3XL SPMX-20240815316492 \N \N \N 1 \N [{"file_id": "03523d37-bd2a-499f-8298-ef0fef3729c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b910627d91124994858d779eed85e399.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b910627d91124994858d779eed85e399.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b910627d91124994858d779eed85e399.jpg", "file_size": 9039, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b910627d91124994858d779eed85e399.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b910627d91124994858d779eed85e399.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b910627d91124994858d779eed85e399.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b910627d91124994858d779eed85e399.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b910627d91124994858d779eed85e399.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tNu1fMOTPpDoFX2BlZ2GLpwsqhE=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.897151+00 2025-12-09 10:16:01.897158+00 21241 1277-1FWE#下摆黄色 SPMX-20240815316491 \N \N \N 1 \N [{"file_id": "10de2aa6-6a67-4796-afe8-10fae89a07e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6110e0a6294ea4bc6463c5a68dcf48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6110e0a6294ea4bc6463c5a68dcf48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6110e0a6294ea4bc6463c5a68dcf48.jpg", "file_size": 13324, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#下摆黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6110e0a6294ea4bc6463c5a68dcf48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6110e0a6294ea4bc6463c5a68dcf48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6110e0a6294ea4bc6463c5a68dcf48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6110e0a6294ea4bc6463c5a68dcf48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6110e0a6294ea4bc6463c5a68dcf48.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSFbdAEUxxl7AxmzCnPqPrcK_3U=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.900657+00 2025-12-09 10:16:01.900664+00 21242 HXF019FW#粉色VS-D3 SPMX-20240815316486 \N \N \N 1 \N [{"file_id": "c5d35ebe-ed3b-4daa-87da-7c9951d0563c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e09a5cb598d24b1d9ec44dd6c77b517b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e09a5cb598d24b1d9ec44dd6c77b517b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e09a5cb598d24b1d9ec44dd6c77b517b.jpg", "file_size": 13646, "is_delete": false, "file_type": 1, "original_file_name": "HXF019FW#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09a5cb598d24b1d9ec44dd6c77b517b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09a5cb598d24b1d9ec44dd6c77b517b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e09a5cb598d24b1d9ec44dd6c77b517b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e09a5cb598d24b1d9ec44dd6c77b517b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e09a5cb598d24b1d9ec44dd6c77b517b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8M8_iftUWTgRMxvdRtHbAY9ix08=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.907449+00 2025-12-09 10:16:01.907455+00 21244 LZ1425#童装T3号色 SPMX-20240815316493 \N \N \N 1 \N [{"file_id": "5d3c0e9b-0a92-46bc-9a44-83f52e8d9ec4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg", "file_size": 21276, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46effcc7ff9d48e4b8d1d0f2aa63e9ea.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0GgcaMKMxbgWhCT1EGV36MGQZQE=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.910958+00 2025-12-09 10:16:01.910964+00 21245 LJJ3187#-白绿L码 SPMX-20240815316495 \N \N \N 1 \N [{"file_id": "2e273540-1716-4874-9d66-755247587d8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de444efd66cd4327b81c7fca7eeadb1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de444efd66cd4327b81c7fca7eeadb1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de444efd66cd4327b81c7fca7eeadb1b.jpg", "file_size": 18300, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白绿L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de444efd66cd4327b81c7fca7eeadb1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de444efd66cd4327b81c7fca7eeadb1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de444efd66cd4327b81c7fca7eeadb1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de444efd66cd4327b81c7fca7eeadb1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de444efd66cd4327b81c7fca7eeadb1b.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:POqSylsltMulSyoRNeZnXRH9V2c=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.914344+00 2025-12-09 10:16:01.914351+00 21246 FX013FWE#粉VS-D3 SPMX-20240815316490 \N \N \N 1 \N [{"file_id": "1fe46e39-2587-47ac-87e9-17788398d4f2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fad412c6ae6b4f729404dc284750eef4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fad412c6ae6b4f729404dc284750eef4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fad412c6ae6b4f729404dc284750eef4.jpg", "file_size": 16671, "is_delete": false, "file_type": 1, "original_file_name": "FX013FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad412c6ae6b4f729404dc284750eef4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad412c6ae6b4f729404dc284750eef4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fad412c6ae6b4f729404dc284750eef4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fad412c6ae6b4f729404dc284750eef4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fad412c6ae6b4f729404dc284750eef4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wf8DKKkBhb4cz23mUK4oa2pIpaw=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.917866+00 2025-12-09 10:16:01.917872+00 21247 24079#-3插色土黄 SPMX-20240815316494 \N \N \N 1 \N [{"file_id": "d0ada276-61ff-4e26-8ce6-596bb672124a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99d7810db47c49f9a5381329397bf286.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99d7810db47c49f9a5381329397bf286.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99d7810db47c49f9a5381329397bf286.jpg", "file_size": 43886, "is_delete": false, "file_type": 1, "original_file_name": "24079#-3插色土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d7810db47c49f9a5381329397bf286.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d7810db47c49f9a5381329397bf286.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99d7810db47c49f9a5381329397bf286.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99d7810db47c49f9a5381329397bf286.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99d7810db47c49f9a5381329397bf286.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EMJShgXUJGx7Yhf3D7_iJBoaivk=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.921277+00 2025-12-09 10:16:01.921285+00 21248 0030-8FWF#绿公主 SPMX-20240815316485 \N \N \N 1 \N [{"file_id": "8e5737c7-082c-40d1-aad8-2d1baa403ed6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd238e07202943dea9eff3a7676b0911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd238e07202943dea9eff3a7676b0911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd238e07202943dea9eff3a7676b0911.jpg", "file_size": 13801, "is_delete": false, "file_type": 1, "original_file_name": "0030-8FWF#绿公主.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd238e07202943dea9eff3a7676b0911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd238e07202943dea9eff3a7676b0911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd238e07202943dea9eff3a7676b0911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd238e07202943dea9eff3a7676b0911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd238e07202943dea9eff3a7676b0911.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1fxoKdqOmOdz1LynEZCPzN4jJoI=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.924802+00 2025-12-09 10:16:01.924809+00 21249 0030-9#白底 SPMX-20240815316496 \N \N \N 1 \N [{"file_id": "58a1bf13-b00e-45c3-978c-39a0e259f66f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8478792225014dcd9f7748a5ec083ffd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8478792225014dcd9f7748a5ec083ffd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8478792225014dcd9f7748a5ec083ffd.jpg", "file_size": 11659, "is_delete": false, "file_type": 1, "original_file_name": "0030-9#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8478792225014dcd9f7748a5ec083ffd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8478792225014dcd9f7748a5ec083ffd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8478792225014dcd9f7748a5ec083ffd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8478792225014dcd9f7748a5ec083ffd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8478792225014dcd9f7748a5ec083ffd.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VTEls2ubLQUS3qVO668UZKgTyNU=", "createTime": "2024-08-15 15:09:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.928405+00 2025-12-09 10:16:01.928411+00 21250 1277-1FWE#墨绿2XL SPMX-20240815316505 \N \N \N 1 \N [{"file_id": "bb3cadd3-7306-4228-a699-fcfdefed895a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17e0a33db0be4ae595153b5242fcdc05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17e0a33db0be4ae595153b5242fcdc05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17e0a33db0be4ae595153b5242fcdc05.jpg", "file_size": 18578, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#墨绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e0a33db0be4ae595153b5242fcdc05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e0a33db0be4ae595153b5242fcdc05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17e0a33db0be4ae595153b5242fcdc05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17e0a33db0be4ae595153b5242fcdc05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17e0a33db0be4ae595153b5242fcdc05.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vCUol8ClK8UMExUs7u6gfISkx6o=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.931843+00 2025-12-09 10:16:01.931849+00 21251 HXF02#粉色 SPMX-20240815316500 \N \N \N 1 \N [{"file_id": "b294f92d-887b-46eb-94aa-db6d5c1e586e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9faf34a1807047a292e5d41c9399e941.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9faf34a1807047a292e5d41c9399e941.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9faf34a1807047a292e5d41c9399e941.jpg", "file_size": 15800, "is_delete": false, "file_type": 1, "original_file_name": "HXF02#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9faf34a1807047a292e5d41c9399e941.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9faf34a1807047a292e5d41c9399e941.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9faf34a1807047a292e5d41c9399e941.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9faf34a1807047a292e5d41c9399e941.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9faf34a1807047a292e5d41c9399e941.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3afwTmosCuVjZ7l05C1rAOtFzFM=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.935261+00 2025-12-09 10:16:01.935268+00 21252 LZ1425#童装T4号色 SPMX-20240815316508 \N \N \N 1 \N [{"file_id": "d712accf-a6f6-4bf7-8d20-9796a27122a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "046e4309116f4a44923118bcef0ccaee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "046e4309116f4a44923118bcef0ccaee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "046e4309116f4a44923118bcef0ccaee.jpg", "file_size": 20633, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046e4309116f4a44923118bcef0ccaee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046e4309116f4a44923118bcef0ccaee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/046e4309116f4a44923118bcef0ccaee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/046e4309116f4a44923118bcef0ccaee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/046e4309116f4a44923118bcef0ccaee.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W1rW5RT-sXifltxvea1k1QoSDRw=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.938709+00 2025-12-09 10:16:01.938716+00 21253 24079#-4-主色橙色 SPMX-20240815316504 \N \N \N 1 \N [{"file_id": "d7b7426d-83d9-4e12-ab0a-b5c0fae31ae3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08db75577cd740a2a2602ef00dce50b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08db75577cd740a2a2602ef00dce50b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08db75577cd740a2a2602ef00dce50b8.jpg", "file_size": 46031, "is_delete": false, "file_type": 1, "original_file_name": "24079#-4-主色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db75577cd740a2a2602ef00dce50b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db75577cd740a2a2602ef00dce50b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08db75577cd740a2a2602ef00dce50b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08db75577cd740a2a2602ef00dce50b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08db75577cd740a2a2602ef00dce50b8.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oWmOtTyAuMb6AXO3VxrncwAUco8=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.942132+00 2025-12-09 10:16:01.942139+00 21254 88380FWF#H彩兰48码 SPMX-20240815316497 \N \N \N 1 \N [{"file_id": "859e3983-e71b-438c-b846-b484be922741", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c75426a1d3347dfac8e09c505064423.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c75426a1d3347dfac8e09c505064423.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c75426a1d3347dfac8e09c505064423.jpg", "file_size": 26502, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H彩兰48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c75426a1d3347dfac8e09c505064423.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c75426a1d3347dfac8e09c505064423.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c75426a1d3347dfac8e09c505064423.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c75426a1d3347dfac8e09c505064423.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c75426a1d3347dfac8e09c505064423.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mDgodglji54Tk7vJnrKXpyZFBGk=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.945593+00 2025-12-09 10:16:01.945598+00 21255 0030-9#蓝底 SPMX-20240815316506 \N \N \N 1 \N [{"file_id": "3c79c520-2165-49ad-84ba-aaf1179752f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e973081eac84f4b959df23d627bb53c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e973081eac84f4b959df23d627bb53c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e973081eac84f4b959df23d627bb53c.jpg", "file_size": 12560, "is_delete": false, "file_type": 1, "original_file_name": "0030-9#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e973081eac84f4b959df23d627bb53c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e973081eac84f4b959df23d627bb53c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e973081eac84f4b959df23d627bb53c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e973081eac84f4b959df23d627bb53c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e973081eac84f4b959df23d627bb53c.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O-K7wzAo_fXP8cEYp9zGWzNIeNI=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.949211+00 2025-12-09 10:16:01.949217+00 21256 CH643FWE#摩登女郎4XL SPMX-20240815316502 \N \N \N 1 \N [{"file_id": "f6a129f4-c97b-43fd-b6b2-4f13d032641c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a6b800b828347368f40d056d2c794a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a6b800b828347368f40d056d2c794a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a6b800b828347368f40d056d2c794a4.jpg", "file_size": 9432, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b800b828347368f40d056d2c794a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b800b828347368f40d056d2c794a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a6b800b828347368f40d056d2c794a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a6b800b828347368f40d056d2c794a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a6b800b828347368f40d056d2c794a4.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3xK6ZfGxXg-vMeIgvqDtrbH6sF0=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.952678+00 2025-12-09 10:16:01.952684+00 21257 FX013FWE#红VS-D3 SPMX-20240815316503 \N \N \N 1 \N [{"file_id": "a0401c43-fd0d-452b-885d-b04d821fabd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg", "file_size": 17941, "is_delete": false, "file_type": 1, "original_file_name": "FX013FWE#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5bc4cfcc58e6429b8dca2d5d7ec7f941.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VnR75dlbDpHdWn4Um70ostymcQE=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.956187+00 2025-12-09 10:16:01.956193+00 21258 LJJ3187#-白绿M码 SPMX-20240815316507 \N \N \N 1 \N [{"file_id": "73e1b50f-d5a7-41d0-80d4-da3348a849b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56f5472640a04ee18cb6c0573452df24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56f5472640a04ee18cb6c0573452df24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56f5472640a04ee18cb6c0573452df24.jpg", "file_size": 18550, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白绿M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f5472640a04ee18cb6c0573452df24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f5472640a04ee18cb6c0573452df24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56f5472640a04ee18cb6c0573452df24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56f5472640a04ee18cb6c0573452df24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56f5472640a04ee18cb6c0573452df24.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eRepd30_alf7_MBjHrQSs_v-Eow=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.959542+00 2025-12-09 10:16:01.959549+00 21259 DM9193#RC23 SPMX-20240815316499 \N \N \N 1 \N [{"file_id": "bbc5ad8f-665a-4e78-bd00-0f0973adc333", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dee2dfb294bc4d62b8f81d0d2e046edc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dee2dfb294bc4d62b8f81d0d2e046edc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dee2dfb294bc4d62b8f81d0d2e046edc.jpg", "file_size": 58169, "is_delete": false, "file_type": 1, "original_file_name": "DM9193#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee2dfb294bc4d62b8f81d0d2e046edc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee2dfb294bc4d62b8f81d0d2e046edc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dee2dfb294bc4d62b8f81d0d2e046edc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dee2dfb294bc4d62b8f81d0d2e046edc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dee2dfb294bc4d62b8f81d0d2e046edc.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULTUOLr9YwpEhV49d4x9cBcz1Mo=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.974943+00 2025-12-09 10:16:01.974949+00 21260 JY-BX1617#RC23 SPMX-20240815316501 \N \N \N 1 \N [{"file_id": "63e485b4-3832-4a85-a380-4fc77d536c58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "802acac681944dedbfecc2a47a2078f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "802acac681944dedbfecc2a47a2078f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "802acac681944dedbfecc2a47a2078f3.jpg", "file_size": 64543, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1617#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802acac681944dedbfecc2a47a2078f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802acac681944dedbfecc2a47a2078f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/802acac681944dedbfecc2a47a2078f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/802acac681944dedbfecc2a47a2078f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/802acac681944dedbfecc2a47a2078f3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Cfx_rPYxsszCmrNy2LdZjL5G6M=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.97869+00 2025-12-09 10:16:01.978702+00 21261 HXF020# SPMX-20240815316511 \N \N \N 1 \N [{"file_id": "a7df8e70-3e3a-46e5-a70d-bc89df0ee045", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "124111a1ddc6433195f633beb4530ae3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "124111a1ddc6433195f633beb4530ae3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "124111a1ddc6433195f633beb4530ae3.jpg", "file_size": 16022, "is_delete": false, "file_type": 1, "original_file_name": "HXF020#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124111a1ddc6433195f633beb4530ae3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124111a1ddc6433195f633beb4530ae3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/124111a1ddc6433195f633beb4530ae3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/124111a1ddc6433195f633beb4530ae3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/124111a1ddc6433195f633beb4530ae3.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cTyUsYNlUQR3z6A8dBuT89A5OMI=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:01.982254+00 2025-12-09 10:16:01.982261+00 21262 LJJ3187#-白草绿L码 SPMX-20240815316513 \N \N \N 1 \N [{"file_id": "d6745dcc-eb40-4a7e-9f8c-c3d1f78e7484", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3d93460d9f74e07b01a1126a85054f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3d93460d9f74e07b01a1126a85054f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3d93460d9f74e07b01a1126a85054f0.jpg", "file_size": 18089, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白草绿L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d93460d9f74e07b01a1126a85054f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d93460d9f74e07b01a1126a85054f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3d93460d9f74e07b01a1126a85054f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3d93460d9f74e07b01a1126a85054f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3d93460d9f74e07b01a1126a85054f0.jpg?e=1765361760&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6-lkIXi1-KdW6x4AsPy0EpTCRtE=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.631485+00 2025-12-09 10:16:02.631498+00 21263 JY-BX1690#RC23 SPMX-20240815316514 \N \N \N 1 \N [{"file_id": "1e18e2c2-1413-4b28-918d-6ee9ec8443b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a841c5083d7a407ab8c92488f7ce3d4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a841c5083d7a407ab8c92488f7ce3d4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a841c5083d7a407ab8c92488f7ce3d4e.jpg", "file_size": 71059, "is_delete": false, "file_type": 1, "original_file_name": "JY-BX1690#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a841c5083d7a407ab8c92488f7ce3d4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a841c5083d7a407ab8c92488f7ce3d4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a841c5083d7a407ab8c92488f7ce3d4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a841c5083d7a407ab8c92488f7ce3d4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a841c5083d7a407ab8c92488f7ce3d4e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvIkUXkeBP4k1RtbeM79Owr2rck=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.652848+00 2025-12-09 10:16:02.652854+00 21268 FX014# SPMX-20240815316515 \N \N \N 1 \N [{"file_id": "ce2c4c02-d018-4889-899e-be73aa358f77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5002dd11c344c36ad0baa6dcb7e2842.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5002dd11c344c36ad0baa6dcb7e2842.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5002dd11c344c36ad0baa6dcb7e2842.jpg", "file_size": 10130, "is_delete": false, "file_type": 1, "original_file_name": "FX014#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5002dd11c344c36ad0baa6dcb7e2842.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5002dd11c344c36ad0baa6dcb7e2842.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5002dd11c344c36ad0baa6dcb7e2842.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5002dd11c344c36ad0baa6dcb7e2842.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5002dd11c344c36ad0baa6dcb7e2842.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J_sUfRlnGMQwv-wsehxiHok8xC0=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.63729+00 2025-12-09 10:16:02.637302+00 21264 CH643FWE#摩登女郎5XL SPMX-20240815316512 \N \N \N 1 \N [{"file_id": "2fddd6e4-c475-4388-9a1b-31cc283de6d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddd222a62512436ebdd6cf4f32d3ac86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddd222a62512436ebdd6cf4f32d3ac86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddd222a62512436ebdd6cf4f32d3ac86.jpg", "file_size": 9352, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd222a62512436ebdd6cf4f32d3ac86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd222a62512436ebdd6cf4f32d3ac86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd222a62512436ebdd6cf4f32d3ac86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddd222a62512436ebdd6cf4f32d3ac86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddd222a62512436ebdd6cf4f32d3ac86.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QZTWU0UR9V6BqRi1viRShBYUtvU=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.641625+00 2025-12-09 10:16:02.641631+00 21265 88380FWF#H彩兰50码 SPMX-20240815316509 \N \N \N 1 \N [{"file_id": "983891c2-fe09-4cd0-a1e5-8aa02b2dfde3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b259bf09afb5435cb2c471b6171ffe61.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b259bf09afb5435cb2c471b6171ffe61.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b259bf09afb5435cb2c471b6171ffe61.jpg", "file_size": 26929, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H彩兰50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b259bf09afb5435cb2c471b6171ffe61.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b259bf09afb5435cb2c471b6171ffe61.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b259bf09afb5435cb2c471b6171ffe61.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b259bf09afb5435cb2c471b6171ffe61.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b259bf09afb5435cb2c471b6171ffe61.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XDe1tveDCoQ1vc6JDaaDVrM9ARU=", "createTime": "2024-08-15 15:09:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.645509+00 2025-12-09 10:16:02.645514+00 21266 1277-1FWE#墨绿L SPMX-20240815316517 \N \N \N 1 \N [{"file_id": "72319863-638d-44e3-8c7d-b425bbd0a4c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ec1317295874dee89bc407eeb06dbf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ec1317295874dee89bc407eeb06dbf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ec1317295874dee89bc407eeb06dbf5.jpg", "file_size": 18038, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec1317295874dee89bc407eeb06dbf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec1317295874dee89bc407eeb06dbf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ec1317295874dee89bc407eeb06dbf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ec1317295874dee89bc407eeb06dbf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ec1317295874dee89bc407eeb06dbf5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GAWkmW2YsWzoHsD-qhUyYS6x6Po=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.649192+00 2025-12-09 10:16:02.649197+00 21267 0030-9FWF#蓝白鹅 SPMX-20240815316518 \N \N \N 1 \N [{"file_id": "9be9e727-850f-4a50-8d58-d45e6a1466c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05a2775972d046a7a941151638069670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05a2775972d046a7a941151638069670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05a2775972d046a7a941151638069670.jpg", "file_size": 23016, "is_delete": false, "file_type": 1, "original_file_name": "0030-9FWF#蓝白鹅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a2775972d046a7a941151638069670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a2775972d046a7a941151638069670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a2775972d046a7a941151638069670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05a2775972d046a7a941151638069670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05a2775972d046a7a941151638069670.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQicllVQGwn-ppcOwWz7J2xI6_o=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.656515+00 2025-12-09 10:16:02.65652+00 21269 DM9198##3XL SPMX-20240815316510 \N \N \N 1 \N [{"file_id": "28a15a96-5e9a-46e5-9c13-d550b7250411", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f3f08dc9d7740fa9c89ab91bab85425.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f3f08dc9d7740fa9c89ab91bab85425.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f3f08dc9d7740fa9c89ab91bab85425.jpg", "file_size": 42919, "is_delete": false, "file_type": 1, "original_file_name": "DM9198##3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f3f08dc9d7740fa9c89ab91bab85425.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f3f08dc9d7740fa9c89ab91bab85425.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f3f08dc9d7740fa9c89ab91bab85425.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f3f08dc9d7740fa9c89ab91bab85425.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f3f08dc9d7740fa9c89ab91bab85425.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WauEKRfRzSespuRntHVcVH6rYV8=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.660239+00 2025-12-09 10:16:02.660244+00 21270 LZ1425#童装T5号色 SPMX-20240815316520 \N \N \N 1 \N [{"file_id": "b97fedbc-3619-4026-affe-5e7e2550f5fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d7f6f4281404cfcbd31a1883e3bc2af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d7f6f4281404cfcbd31a1883e3bc2af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d7f6f4281404cfcbd31a1883e3bc2af.jpg", "file_size": 22243, "is_delete": false, "file_type": 1, "original_file_name": "LZ1425#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7f6f4281404cfcbd31a1883e3bc2af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7f6f4281404cfcbd31a1883e3bc2af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d7f6f4281404cfcbd31a1883e3bc2af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d7f6f4281404cfcbd31a1883e3bc2af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d7f6f4281404cfcbd31a1883e3bc2af.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q3cHbFzMJ8O4_y7eSirMBELHPhk=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.66399+00 2025-12-09 10:16:02.663995+00 21271 88380FWF#H水绿42码 SPMX-20240815316519 \N \N \N 1 \N [{"file_id": "1ceb97c7-0cdd-4e69-a584-d3c874ef1849", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg", "file_size": 24798, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H水绿42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4472ec2b0eec4cc1a230bfe82dc9d8ca.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VnVWUoLmORB4d3E8geuU-JGUEg=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.667522+00 2025-12-09 10:16:02.667527+00 21272 24079#-4主色橙色 SPMX-20240815316516 \N \N \N 1 \N [{"file_id": "7bd96d43-1687-4186-9bd1-38910c0c95bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d553be0e60ff44529bcd975a87284114.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d553be0e60ff44529bcd975a87284114.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d553be0e60ff44529bcd975a87284114.jpg", "file_size": 44548, "is_delete": false, "file_type": 1, "original_file_name": "24079#-4主色橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d553be0e60ff44529bcd975a87284114.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d553be0e60ff44529bcd975a87284114.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d553be0e60ff44529bcd975a87284114.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d553be0e60ff44529bcd975a87284114.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d553be0e60ff44529bcd975a87284114.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zHybnguSvKW2AgQ6IQFz_QdVBQ4=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.671256+00 2025-12-09 10:16:02.671262+00 21273 CH643FWE#摩登女郎L SPMX-20240815316522 \N \N \N 1 \N [{"file_id": "77fa5bb5-cd1e-45ef-bddf-508bcee3368c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ec790b816fc4e0ca7b9b2f26eac1e21.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ec790b816fc4e0ca7b9b2f26eac1e21.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ec790b816fc4e0ca7b9b2f26eac1e21.jpg", "file_size": 8896, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec790b816fc4e0ca7b9b2f26eac1e21.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec790b816fc4e0ca7b9b2f26eac1e21.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ec790b816fc4e0ca7b9b2f26eac1e21.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ec790b816fc4e0ca7b9b2f26eac1e21.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ec790b816fc4e0ca7b9b2f26eac1e21.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KR1EYcTsDtr1VwTeLa94GC3XC9s=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.674903+00 2025-12-09 10:16:02.674909+00 21274 LZ1426#童装T1号色 SPMX-20240815316531 \N \N \N 1 \N [{"file_id": "5c16ea19-ea37-4722-a990-6344a77a37f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a340b23ce3584c75bf3f0c7f1af7559d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a340b23ce3584c75bf3f0c7f1af7559d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a340b23ce3584c75bf3f0c7f1af7559d.jpg", "file_size": 19490, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a340b23ce3584c75bf3f0c7f1af7559d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a340b23ce3584c75bf3f0c7f1af7559d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a340b23ce3584c75bf3f0c7f1af7559d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a340b23ce3584c75bf3f0c7f1af7559d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a340b23ce3584c75bf3f0c7f1af7559d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqeDV0eza_qOrHmQVOHFQ5MypSM=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.67847+00 2025-12-09 10:16:02.678477+00 21275 1277-1FWE#墨绿XL SPMX-20240815316524 \N \N \N 1 \N [{"file_id": "edc1e6d6-bed6-4b78-8eb7-6b20423614f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f43cf2d308744ca1ad0988466dad06a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f43cf2d308744ca1ad0988466dad06a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f43cf2d308744ca1ad0988466dad06a2.jpg", "file_size": 18286, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43cf2d308744ca1ad0988466dad06a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43cf2d308744ca1ad0988466dad06a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f43cf2d308744ca1ad0988466dad06a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f43cf2d308744ca1ad0988466dad06a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f43cf2d308744ca1ad0988466dad06a2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L18HMkchRuo60aiuJqSW_zo8dBE=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.681901+00 2025-12-09 10:16:02.681907+00 21276 0030-9FWF#黄白鹅 SPMX-20240815316529 \N \N \N 1 \N [{"file_id": "9554dc92-294f-4091-b29e-f4666dcab49e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg", "file_size": 15646, "is_delete": false, "file_type": 1, "original_file_name": "0030-9FWF#黄白鹅.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f977c7bc4e2246b6a96e0f0fb8d1ef59.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A_EoGl2eyAzEVOw_-yQeyywY3nc=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.685262+00 2025-12-09 10:16:02.685268+00 21277 FX014#VS-D3 SPMX-20240815316526 \N \N \N 1 \N [{"file_id": "ceb2daf9-acbe-44e7-be8f-6d0d837ed26b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "abd36d9e09824378b60d7c284d03fb20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "abd36d9e09824378b60d7c284d03fb20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "abd36d9e09824378b60d7c284d03fb20.jpg", "file_size": 17521, "is_delete": false, "file_type": 1, "original_file_name": "FX014#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd36d9e09824378b60d7c284d03fb20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd36d9e09824378b60d7c284d03fb20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/abd36d9e09824378b60d7c284d03fb20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/abd36d9e09824378b60d7c284d03fb20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/abd36d9e09824378b60d7c284d03fb20.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KXmPDWEa9x7cBwq1lgblfzz5Q6o=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.68866+00 2025-12-09 10:16:02.688665+00 21278 DM9198#2XL SPMX-20240815316532 \N \N \N 1 \N [{"file_id": "0126a4a2-d851-43ee-b5fc-3efca4bbb352", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1956fc883364d61b9cc8d0d830e94d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1956fc883364d61b9cc8d0d830e94d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1956fc883364d61b9cc8d0d830e94d6.jpg", "file_size": 43396, "is_delete": false, "file_type": 1, "original_file_name": "DM9198#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1956fc883364d61b9cc8d0d830e94d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1956fc883364d61b9cc8d0d830e94d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1956fc883364d61b9cc8d0d830e94d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1956fc883364d61b9cc8d0d830e94d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1956fc883364d61b9cc8d0d830e94d6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s1ed6DoUVUVYXLFtTBsoFsW3pLU=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.692101+00 2025-12-09 10:16:02.692107+00 21279 DM9198#1XL SPMX-20240815316521 \N \N \N 1 \N [{"file_id": "920794de-b982-4007-94ec-19225268afc8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a970501b9f88448ba39578b1dda3c1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a970501b9f88448ba39578b1dda3c1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a970501b9f88448ba39578b1dda3c1dd.jpg", "file_size": 45316, "is_delete": false, "file_type": 1, "original_file_name": "DM9198#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a970501b9f88448ba39578b1dda3c1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a970501b9f88448ba39578b1dda3c1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a970501b9f88448ba39578b1dda3c1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a970501b9f88448ba39578b1dda3c1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a970501b9f88448ba39578b1dda3c1dd.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m2w0GmZMxc4fj85R-Ntklpec3yQ=", "createTime": "2024-08-15 15:09:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.695536+00 2025-12-09 10:16:02.695542+00 21280 LJJ3187#-白草绿M码 SPMX-20240815316525 \N \N \N 1 \N [{"file_id": "53ea4721-fe9b-4d8c-8fb2-774c9631a853", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8bfaaab79d544c2986d87c7e48f0c83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8bfaaab79d544c2986d87c7e48f0c83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8bfaaab79d544c2986d87c7e48f0c83.jpg", "file_size": 18043, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白草绿M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bfaaab79d544c2986d87c7e48f0c83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bfaaab79d544c2986d87c7e48f0c83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8bfaaab79d544c2986d87c7e48f0c83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8bfaaab79d544c2986d87c7e48f0c83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8bfaaab79d544c2986d87c7e48f0c83.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ecpx4FWUEVFt7YgRAU5Kv0tcMYI=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.69901+00 2025-12-09 10:16:02.699017+00 21281 24079#-4插色蓝色 SPMX-20240815316528 \N \N \N 1 \N [{"file_id": "5be07b13-39a5-429b-aa0c-94775a230052", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b5c78635b010432492916b86073b3364.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b5c78635b010432492916b86073b3364.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b5c78635b010432492916b86073b3364.jpg", "file_size": 47117, "is_delete": false, "file_type": 1, "original_file_name": "24079#-4插色蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c78635b010432492916b86073b3364.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c78635b010432492916b86073b3364.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b5c78635b010432492916b86073b3364.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b5c78635b010432492916b86073b3364.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b5c78635b010432492916b86073b3364.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YY4jDfj03KyM61CfgRxAXMMPHqI=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.702393+00 2025-12-09 10:16:02.702399+00 21282 88380FWF#H水绿44码 SPMX-20240815316530 \N \N \N 1 \N [{"file_id": "d14d3c6e-b51e-442f-bffe-62e3576985cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b322cf3611e84ebb82355f42f29de471.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b322cf3611e84ebb82355f42f29de471.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b322cf3611e84ebb82355f42f29de471.jpg", "file_size": 25221, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H水绿44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b322cf3611e84ebb82355f42f29de471.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b322cf3611e84ebb82355f42f29de471.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b322cf3611e84ebb82355f42f29de471.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b322cf3611e84ebb82355f42f29de471.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b322cf3611e84ebb82355f42f29de471.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k79XpsIGuE8NZskXvLFiRa8Hajs=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.705846+00 2025-12-09 10:16:02.705852+00 21283 HXF020FW#VS-D3 SPMX-20240815316523 \N \N \N 1 \N [{"file_id": "ea02b746-c505-4437-b9b0-e39fa99f9c7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec0ab40303bd41f1b48e50ba583e4583.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec0ab40303bd41f1b48e50ba583e4583.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec0ab40303bd41f1b48e50ba583e4583.jpg", "file_size": 25166, "is_delete": false, "file_type": 1, "original_file_name": "HXF020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec0ab40303bd41f1b48e50ba583e4583.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec0ab40303bd41f1b48e50ba583e4583.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec0ab40303bd41f1b48e50ba583e4583.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec0ab40303bd41f1b48e50ba583e4583.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec0ab40303bd41f1b48e50ba583e4583.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Ly3LMBPVP2L8s5Yniy98kDHR5Q=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.709196+00 2025-12-09 10:16:02.709203+00 21284 JY-BXCV1009#LWQ15 SPMX-20240815316527 \N \N \N 1 \N [{"file_id": "327ff144-fe3c-41df-a91e-df1c75a7fa31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00bd13625014446faa9de66877a3a6fd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00bd13625014446faa9de66877a3a6fd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00bd13625014446faa9de66877a3a6fd.jpg", "file_size": 67233, "is_delete": false, "file_type": 1, "original_file_name": "JY-BXCV1009#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00bd13625014446faa9de66877a3a6fd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00bd13625014446faa9de66877a3a6fd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00bd13625014446faa9de66877a3a6fd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00bd13625014446faa9de66877a3a6fd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00bd13625014446faa9de66877a3a6fd.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fDL0ZhAKdJCkcQxFjbOa40twmLk=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.712759+00 2025-12-09 10:16:02.712766+00 21285 FX014FWE#紫VS-D3 SPMX-20240815316547 \N \N \N 1 \N [{"file_id": "097b2d71-cdf2-4e10-951f-ff5453a2271a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "952b9ec0551e4fa19ecc8e4f408b4962.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "952b9ec0551e4fa19ecc8e4f408b4962.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "952b9ec0551e4fa19ecc8e4f408b4962.jpg", "file_size": 15523, "is_delete": false, "file_type": 1, "original_file_name": "FX014FWE#紫VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952b9ec0551e4fa19ecc8e4f408b4962.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952b9ec0551e4fa19ecc8e4f408b4962.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/952b9ec0551e4fa19ecc8e4f408b4962.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/952b9ec0551e4fa19ecc8e4f408b4962.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/952b9ec0551e4fa19ecc8e4f408b4962.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7IWEkkEYFGf9BwlT3blB1pHnC2M=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.716185+00 2025-12-09 10:16:02.716191+00 21286 HXF021#大白 SPMX-20240815316534 \N \N \N 1 \N [{"file_id": "fc8c281a-f69f-480d-9a6d-081cf82e4a3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee27043fd8d040828c1f857c7527f016.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee27043fd8d040828c1f857c7527f016.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee27043fd8d040828c1f857c7527f016.jpg", "file_size": 13220, "is_delete": false, "file_type": 1, "original_file_name": "HXF021#大白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee27043fd8d040828c1f857c7527f016.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee27043fd8d040828c1f857c7527f016.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee27043fd8d040828c1f857c7527f016.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee27043fd8d040828c1f857c7527f016.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee27043fd8d040828c1f857c7527f016.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N8I7iCvoL0tNCMn2eA3WGOhH7bI=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.71958+00 2025-12-09 10:16:02.719586+00 21287 1277-1FWE#彩兰2XL SPMX-20240815316535 \N \N \N 1 \N [{"file_id": "4552b71a-df82-40c8-b3ff-dbe43d63c703", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32a4f0965336446b8daf2cf1b7fa8ff6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32a4f0965336446b8daf2cf1b7fa8ff6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32a4f0965336446b8daf2cf1b7fa8ff6.jpg", "file_size": 18610, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a4f0965336446b8daf2cf1b7fa8ff6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a4f0965336446b8daf2cf1b7fa8ff6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32a4f0965336446b8daf2cf1b7fa8ff6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32a4f0965336446b8daf2cf1b7fa8ff6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32a4f0965336446b8daf2cf1b7fa8ff6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WatdL8hBW005W0_Q4TOXcAibm40=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.723093+00 2025-12-09 10:16:02.7231+00 21288 24079#-5主色土黄 SPMX-20240815316540 \N \N \N 1 \N [{"file_id": "0b881fa3-6e72-45c3-a068-a653793d7ae8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9651aee78fe547fa8ea1525a897756e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9651aee78fe547fa8ea1525a897756e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9651aee78fe547fa8ea1525a897756e0.jpg", "file_size": 41981, "is_delete": false, "file_type": 1, "original_file_name": "24079#-5主色土黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9651aee78fe547fa8ea1525a897756e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9651aee78fe547fa8ea1525a897756e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9651aee78fe547fa8ea1525a897756e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9651aee78fe547fa8ea1525a897756e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9651aee78fe547fa8ea1525a897756e0.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ueox2s9_iMP_4zuVHTm2qk-VXYA=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.726419+00 2025-12-09 10:16:02.726425+00 21289 LJJ3187#-白蓝L码 SPMX-20240815316537 \N \N \N 1 \N [{"file_id": "bb843007-cb18-4341-9fbc-80787b888b77", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c451569168146e4853fc7cd16e88875.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c451569168146e4853fc7cd16e88875.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c451569168146e4853fc7cd16e88875.jpg", "file_size": 18897, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白蓝L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c451569168146e4853fc7cd16e88875.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c451569168146e4853fc7cd16e88875.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c451569168146e4853fc7cd16e88875.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c451569168146e4853fc7cd16e88875.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c451569168146e4853fc7cd16e88875.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P6UAMadKpYgVLxjjE9ySXVzAPfM=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.730009+00 2025-12-09 10:16:02.730016+00 21290 LZ1426#童装T2号色 SPMX-20240815316541 \N \N \N 1 \N [{"file_id": "b423bbe1-2393-45f4-9a83-aba152c8c139", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dea09eef76e3440facf01f0dad18bfff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dea09eef76e3440facf01f0dad18bfff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dea09eef76e3440facf01f0dad18bfff.jpg", "file_size": 19002, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea09eef76e3440facf01f0dad18bfff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea09eef76e3440facf01f0dad18bfff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dea09eef76e3440facf01f0dad18bfff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dea09eef76e3440facf01f0dad18bfff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dea09eef76e3440facf01f0dad18bfff.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rUzFwvbIztEa4hRDO7inqv8fsbk=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.733462+00 2025-12-09 10:16:02.733469+00 21291 FX014FWE#粉VS-D3 SPMX-20240815316536 \N \N \N 1 \N [{"file_id": "f26caa6e-a228-487f-8298-610c23e28478", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9ec90f1dc414c36a09367839eee1763.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9ec90f1dc414c36a09367839eee1763.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9ec90f1dc414c36a09367839eee1763.jpg", "file_size": 15030, "is_delete": false, "file_type": 1, "original_file_name": "FX014FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ec90f1dc414c36a09367839eee1763.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ec90f1dc414c36a09367839eee1763.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9ec90f1dc414c36a09367839eee1763.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9ec90f1dc414c36a09367839eee1763.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9ec90f1dc414c36a09367839eee1763.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w3-v0jf301cs_7AZ8vxTvX8n7Y8=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.736906+00 2025-12-09 10:16:02.736912+00 21292 DM9198#3XL SPMX-20240815316543 \N \N \N 1 \N [{"file_id": "094afb76-5130-47ae-b27a-b0238afec2b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b585bd595c0d4d159aa71933aca2bbbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b585bd595c0d4d159aa71933aca2bbbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b585bd595c0d4d159aa71933aca2bbbb.jpg", "file_size": 37305, "is_delete": false, "file_type": 1, "original_file_name": "DM9198#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b585bd595c0d4d159aa71933aca2bbbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b585bd595c0d4d159aa71933aca2bbbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b585bd595c0d4d159aa71933aca2bbbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b585bd595c0d4d159aa71933aca2bbbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b585bd595c0d4d159aa71933aca2bbbb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6UTsLNTniBkW7mI6QPUtJLL7HtU=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.740547+00 2025-12-09 10:16:02.740555+00 21293 88380FWF#H水绿46码 SPMX-20240815316544 \N \N \N 1 \N [{"file_id": "57b6e6cf-2dbf-4d4e-a294-14308beac2e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "330a3accdb114dcbbce90193e10bbb01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "330a3accdb114dcbbce90193e10bbb01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "330a3accdb114dcbbce90193e10bbb01.jpg", "file_size": 25766, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H水绿46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330a3accdb114dcbbce90193e10bbb01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330a3accdb114dcbbce90193e10bbb01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/330a3accdb114dcbbce90193e10bbb01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/330a3accdb114dcbbce90193e10bbb01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/330a3accdb114dcbbce90193e10bbb01.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOYUoRTLRysZMqC68TwmEw1UtTg=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.745965+00 2025-12-09 10:16:02.745972+00 21294 003FWE#2XL SPMX-20240815316538 \N \N \N 1 \N [{"file_id": "17a53739-d483-4e1b-bab2-5cf95cc44aa6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dac31ac6b6e144c2b322a59d0591172e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dac31ac6b6e144c2b322a59d0591172e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dac31ac6b6e144c2b322a59d0591172e.jpg", "file_size": 13185, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac31ac6b6e144c2b322a59d0591172e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac31ac6b6e144c2b322a59d0591172e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dac31ac6b6e144c2b322a59d0591172e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dac31ac6b6e144c2b322a59d0591172e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dac31ac6b6e144c2b322a59d0591172e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XZj3wjPw2_8yYCzdf71NQm__rD0=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.750181+00 2025-12-09 10:16:02.750187+00 21295 JY-BXCV1010#LWQ15 SPMX-20240815316539 \N \N \N 1 \N [{"file_id": "a99f6b52-59fd-4d75-8a8c-05ff0698a9fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d41b2d32798b477ba5dbe65fdba47ddf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d41b2d32798b477ba5dbe65fdba47ddf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d41b2d32798b477ba5dbe65fdba47ddf.jpg", "file_size": 70205, "is_delete": false, "file_type": 1, "original_file_name": "JY-BXCV1010#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41b2d32798b477ba5dbe65fdba47ddf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41b2d32798b477ba5dbe65fdba47ddf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d41b2d32798b477ba5dbe65fdba47ddf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d41b2d32798b477ba5dbe65fdba47ddf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d41b2d32798b477ba5dbe65fdba47ddf.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBffq4u5GJqKA8vFLd-jC3DUHlA=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.753723+00 2025-12-09 10:16:02.753731+00 21296 1277-1FWE#彩兰L SPMX-20240815316548 \N \N \N 1 \N [{"file_id": "af8bb54c-054d-43c6-822f-0182610817a5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6daafcbc3f744e2bbf02a09355957256.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6daafcbc3f744e2bbf02a09355957256.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6daafcbc3f744e2bbf02a09355957256.jpg", "file_size": 18386, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6daafcbc3f744e2bbf02a09355957256.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6daafcbc3f744e2bbf02a09355957256.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6daafcbc3f744e2bbf02a09355957256.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6daafcbc3f744e2bbf02a09355957256.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6daafcbc3f744e2bbf02a09355957256.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qef_dWrnUmy0Tm21ZO4uNdCZ6zU=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.757322+00 2025-12-09 10:16:02.757329+00 21297 HXF021#大粉 SPMX-20240815316546 \N \N \N 1 \N [{"file_id": "f4b5c85c-7402-46de-9f3a-3af1e932efcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b0e532c66124d4ca7d31178274c3415.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b0e532c66124d4ca7d31178274c3415.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b0e532c66124d4ca7d31178274c3415.jpg", "file_size": 11162, "is_delete": false, "file_type": 1, "original_file_name": "HXF021#大粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0e532c66124d4ca7d31178274c3415.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0e532c66124d4ca7d31178274c3415.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0e532c66124d4ca7d31178274c3415.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b0e532c66124d4ca7d31178274c3415.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b0e532c66124d4ca7d31178274c3415.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tY3EtWR-sg5VuQEr1NZ3fu_PExM=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.760905+00 2025-12-09 10:16:02.760913+00 21298 CH643FWE#摩登女郎M SPMX-20240815316533 \N \N \N 1 \N [{"file_id": "94f8801f-7281-4246-97aa-da82bb7044e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77947f55a9be4a1cb3195c2f07e6bbb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77947f55a9be4a1cb3195c2f07e6bbb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77947f55a9be4a1cb3195c2f07e6bbb4.jpg", "file_size": 9210, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77947f55a9be4a1cb3195c2f07e6bbb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77947f55a9be4a1cb3195c2f07e6bbb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77947f55a9be4a1cb3195c2f07e6bbb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77947f55a9be4a1cb3195c2f07e6bbb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77947f55a9be4a1cb3195c2f07e6bbb4.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBbf4eV23PYXQispE88fh_MNDeY=", "createTime": "2024-08-15 15:09:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.764382+00 2025-12-09 10:16:02.764389+00 21299 CH643FWE#摩登女郎S SPMX-20240815316545 \N \N \N 1 \N [{"file_id": "c95acde4-2a19-40df-b983-67eaac1055d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc03bd8165604535912ba97cb08864d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc03bd8165604535912ba97cb08864d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc03bd8165604535912ba97cb08864d9.jpg", "file_size": 8834, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc03bd8165604535912ba97cb08864d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc03bd8165604535912ba97cb08864d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc03bd8165604535912ba97cb08864d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc03bd8165604535912ba97cb08864d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc03bd8165604535912ba97cb08864d9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xaabCYB94BZgjF3Trk8fLnQUN-Y=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.7679+00 2025-12-09 10:16:02.767907+00 21300 JY-DR-09#1号色 SPMX-20240815316552 \N \N \N 1 \N [{"file_id": "f577ecb3-21d0-4671-8e70-c4945503dcf3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6426dd2d77bb4bfa99bc8b252d586c9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6426dd2d77bb4bfa99bc8b252d586c9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6426dd2d77bb4bfa99bc8b252d586c9b.jpg", "file_size": 5883, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-09#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6426dd2d77bb4bfa99bc8b252d586c9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6426dd2d77bb4bfa99bc8b252d586c9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6426dd2d77bb4bfa99bc8b252d586c9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6426dd2d77bb4bfa99bc8b252d586c9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6426dd2d77bb4bfa99bc8b252d586c9b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8TiwI5cvfGbYf1mrrvwC3HT-4L8=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.771349+00 2025-12-09 10:16:02.771356+00 21301 DM9198#4XL SPMX-20240815316554 \N \N \N 1 \N [{"file_id": "f1a8eeac-bd31-4a1e-a827-65aa07cbbf6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdbc23e26da749ddadc0021ef4714b09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdbc23e26da749ddadc0021ef4714b09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdbc23e26da749ddadc0021ef4714b09.jpg", "file_size": 42704, "is_delete": false, "file_type": 1, "original_file_name": "DM9198#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbc23e26da749ddadc0021ef4714b09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbc23e26da749ddadc0021ef4714b09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdbc23e26da749ddadc0021ef4714b09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdbc23e26da749ddadc0021ef4714b09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdbc23e26da749ddadc0021ef4714b09.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BnSqUQd8QFq4_6YUPBo-GjSdpfc=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.774734+00 2025-12-09 10:16:02.774741+00 21302 003FWE#3XL SPMX-20240815316550 \N \N \N 1 \N [{"file_id": "9f81f891-e3ad-4bd7-96ab-9175feaf0446", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f694e0f4adb4d00bb57042e5ffa0deb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f694e0f4adb4d00bb57042e5ffa0deb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f694e0f4adb4d00bb57042e5ffa0deb.jpg", "file_size": 13341, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f694e0f4adb4d00bb57042e5ffa0deb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f694e0f4adb4d00bb57042e5ffa0deb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f694e0f4adb4d00bb57042e5ffa0deb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f694e0f4adb4d00bb57042e5ffa0deb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f694e0f4adb4d00bb57042e5ffa0deb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nQk6Ob8_BBzExt1McO463BY8hdo=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.778186+00 2025-12-09 10:16:02.778193+00 21303 88380FWF#H水绿48码 SPMX-20240815316551 \N \N \N 1 \N [{"file_id": "fbcf3f5b-8724-4f48-920b-b3f48ce3f4dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2bd93e92ffe4eb3963fc8df875a58b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2bd93e92ffe4eb3963fc8df875a58b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2bd93e92ffe4eb3963fc8df875a58b3.jpg", "file_size": 26078, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H水绿48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bd93e92ffe4eb3963fc8df875a58b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bd93e92ffe4eb3963fc8df875a58b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2bd93e92ffe4eb3963fc8df875a58b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2bd93e92ffe4eb3963fc8df875a58b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2bd93e92ffe4eb3963fc8df875a58b3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vlrD1u9Bk_RW2yEoIO36qIZU9i4=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.78164+00 2025-12-09 10:16:02.781647+00 21304 CH643FWE#摩登女郎XL SPMX-20240815316553 \N \N \N 1 \N [{"file_id": "b1899bb5-ef6a-4eb7-a6cf-1f2beab8d64d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7dff8aca45004e75924b5acaac06ddfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7dff8aca45004e75924b5acaac06ddfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7dff8aca45004e75924b5acaac06ddfe.jpg", "file_size": 9217, "is_delete": false, "file_type": 1, "original_file_name": "CH643FWE#摩登女郎XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dff8aca45004e75924b5acaac06ddfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dff8aca45004e75924b5acaac06ddfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7dff8aca45004e75924b5acaac06ddfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7dff8aca45004e75924b5acaac06ddfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7dff8aca45004e75924b5acaac06ddfe.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pk2ezI1YBixMFVbw3Ykf1nlLw6U=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.785122+00 2025-12-09 10:16:02.785128+00 21305 LJJ3187#-白蓝M码 SPMX-20240815316549 \N \N \N 1 \N [{"file_id": "dd93bad2-3b3a-4abc-b62c-23e40adb3131", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d77414711be4f9586bfba3d1875a180.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d77414711be4f9586bfba3d1875a180.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d77414711be4f9586bfba3d1875a180.jpg", "file_size": 19153, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白蓝M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d77414711be4f9586bfba3d1875a180.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d77414711be4f9586bfba3d1875a180.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d77414711be4f9586bfba3d1875a180.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d77414711be4f9586bfba3d1875a180.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d77414711be4f9586bfba3d1875a180.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2_WGVG-L5U48UDG9nARz66f150=", "createTime": "2024-08-15 15:09:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.788684+00 2025-12-09 10:16:02.788692+00 21306 HXF021FW#VS-D3 SPMX-20240815316558 \N \N \N 1 \N [{"file_id": "282a99a9-c827-4f0b-80ad-e2efde528da3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eee7c802084745c08c918632331ed781.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eee7c802084745c08c918632331ed781.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eee7c802084745c08c918632331ed781.jpg", "file_size": 22224, "is_delete": false, "file_type": 1, "original_file_name": "HXF021FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee7c802084745c08c918632331ed781.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee7c802084745c08c918632331ed781.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eee7c802084745c08c918632331ed781.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eee7c802084745c08c918632331ed781.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eee7c802084745c08c918632331ed781.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NaUz6q6Qs8AWr2ysHtQp3IcYVe4=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.792078+00 2025-12-09 10:16:02.792085+00 21307 003FWE#4XL SPMX-20240815316561 \N \N \N 1 \N [{"file_id": "39e018a7-dfae-49db-9933-aacf2a9a248c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2eac697e9f3b440bac07c9933ec7c41e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2eac697e9f3b440bac07c9933ec7c41e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2eac697e9f3b440bac07c9933ec7c41e.jpg", "file_size": 13549, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eac697e9f3b440bac07c9933ec7c41e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eac697e9f3b440bac07c9933ec7c41e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2eac697e9f3b440bac07c9933ec7c41e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2eac697e9f3b440bac07c9933ec7c41e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2eac697e9f3b440bac07c9933ec7c41e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ZM-mGozS7fAP1slLE1Hvh-kCSo=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.795533+00 2025-12-09 10:16:02.795539+00 21308 LJJ3187#-白黑L码 SPMX-20240815316560 \N \N \N 1 \N [{"file_id": "feb5d77b-b80c-4b19-87f0-e696afd43bb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "506496d7d48d469ba667fc860d4798f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "506496d7d48d469ba667fc860d4798f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "506496d7d48d469ba667fc860d4798f4.jpg", "file_size": 18352, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白黑L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506496d7d48d469ba667fc860d4798f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506496d7d48d469ba667fc860d4798f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/506496d7d48d469ba667fc860d4798f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/506496d7d48d469ba667fc860d4798f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/506496d7d48d469ba667fc860d4798f4.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MifoNes8BWAuHAKyXJUBvyAAC98=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.798944+00 2025-12-09 10:16:02.798952+00 21309 CHB001#杏 SPMX-20240815316564 \N \N \N 1 \N [{"file_id": "33b8fbc5-d0d6-4f7a-b8df-bccd65440ae2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a65525a505d646839f814cec0a8bbbfc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a65525a505d646839f814cec0a8bbbfc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a65525a505d646839f814cec0a8bbbfc.jpg", "file_size": 8060, "is_delete": false, "file_type": 1, "original_file_name": "CHB001#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65525a505d646839f814cec0a8bbbfc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65525a505d646839f814cec0a8bbbfc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a65525a505d646839f814cec0a8bbbfc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a65525a505d646839f814cec0a8bbbfc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a65525a505d646839f814cec0a8bbbfc.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PpdQMggm-bCw8SBErti3Ur8lkoY=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.802396+00 2025-12-09 10:16:02.802403+00 21310 FX015#D紫 番禺调色 SPMX-20240815316566 \N \N \N 1 \N [{"file_id": "32044edf-6af1-4352-925b-e58d351220f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ceccdc93261743308c87a7c337bba243.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ceccdc93261743308c87a7c337bba243.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ceccdc93261743308c87a7c337bba243.jpg", "file_size": 20464, "is_delete": false, "file_type": 1, "original_file_name": "FX015#D紫 番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceccdc93261743308c87a7c337bba243.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceccdc93261743308c87a7c337bba243.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ceccdc93261743308c87a7c337bba243.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ceccdc93261743308c87a7c337bba243.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ceccdc93261743308c87a7c337bba243.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eN3YUhNnITR0CvDK8-DBgfKay3I=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.805826+00 2025-12-09 10:16:02.805838+00 21311 24079#-6主色金黄 SPMX-20240815316567 \N \N \N 1 \N [{"file_id": "524e563a-7b9f-4661-b182-d010e9794f23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cac45664093b455bbf2d471357b28cd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cac45664093b455bbf2d471357b28cd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cac45664093b455bbf2d471357b28cd2.jpg", "file_size": 42543, "is_delete": false, "file_type": 1, "original_file_name": "24079#-6主色金黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac45664093b455bbf2d471357b28cd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac45664093b455bbf2d471357b28cd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac45664093b455bbf2d471357b28cd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cac45664093b455bbf2d471357b28cd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cac45664093b455bbf2d471357b28cd2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7zVQ2wSfr0C3P5gM8QNXen3yXmk=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.809218+00 2025-12-09 10:16:02.809225+00 21312 FX015#D橙 番禺调色 SPMX-20240815316556 \N \N \N 1 \N [{"file_id": "ed8338a0-e88c-4e7d-9335-a303d14e3ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a60b3c6a3bbb41f2822dbeff16945d40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a60b3c6a3bbb41f2822dbeff16945d40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a60b3c6a3bbb41f2822dbeff16945d40.jpg", "file_size": 22888, "is_delete": false, "file_type": 1, "original_file_name": "FX015#D橙 番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60b3c6a3bbb41f2822dbeff16945d40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60b3c6a3bbb41f2822dbeff16945d40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a60b3c6a3bbb41f2822dbeff16945d40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a60b3c6a3bbb41f2822dbeff16945d40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a60b3c6a3bbb41f2822dbeff16945d40.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JGbWQknPBo67OGr1GVbp4krXLMg=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.81268+00 2025-12-09 10:16:02.812686+00 21313 HXF022#小白 SPMX-20240815316568 \N \N \N 1 \N [{"file_id": "668dc4cb-29df-432b-ab31-ad8225187758", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28fb606f13f54691861d112663a9c857.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28fb606f13f54691861d112663a9c857.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28fb606f13f54691861d112663a9c857.jpg", "file_size": 12795, "is_delete": false, "file_type": 1, "original_file_name": "HXF022#小白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fb606f13f54691861d112663a9c857.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fb606f13f54691861d112663a9c857.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fb606f13f54691861d112663a9c857.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28fb606f13f54691861d112663a9c857.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28fb606f13f54691861d112663a9c857.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzVm3Bjo2t36cUvvli9jIhi1OW4=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.816117+00 2025-12-09 10:16:02.816124+00 21314 JY-DR-09#2号色 SPMX-20240815316563 \N \N \N 1 \N [{"file_id": "97cee147-3c61-46bf-8be3-065cb59e2de9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04f183dff8c64ff09bfe70a30bc6e90c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04f183dff8c64ff09bfe70a30bc6e90c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04f183dff8c64ff09bfe70a30bc6e90c.jpg", "file_size": 6639, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-09#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04f183dff8c64ff09bfe70a30bc6e90c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04f183dff8c64ff09bfe70a30bc6e90c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04f183dff8c64ff09bfe70a30bc6e90c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04f183dff8c64ff09bfe70a30bc6e90c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04f183dff8c64ff09bfe70a30bc6e90c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iYzoFIm-0f6Lg1Lwjk4xSyCDKZ0=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.819542+00 2025-12-09 10:16:02.819547+00 21315 24079#-5插色紫色 SPMX-20240815316555 \N \N \N 1 \N [{"file_id": "93457b93-5545-4cf3-baab-c9da91235dcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14b73a58799747f88398d66e927f4c66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14b73a58799747f88398d66e927f4c66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14b73a58799747f88398d66e927f4c66.jpg", "file_size": 46183, "is_delete": false, "file_type": 1, "original_file_name": "24079#-5插色紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b73a58799747f88398d66e927f4c66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b73a58799747f88398d66e927f4c66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14b73a58799747f88398d66e927f4c66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14b73a58799747f88398d66e927f4c66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14b73a58799747f88398d66e927f4c66.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:37WLcZzf5FkmmSOLLucOiuFc2v8=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.823016+00 2025-12-09 10:16:02.823023+00 21316 LZ1426#童装T3号色 SPMX-20240815316557 \N \N \N 1 \N [{"file_id": "04a22f68-9340-4b9c-82d9-364ccf7e0901", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a916e2cf1034e0ea138cb57bc5d154e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a916e2cf1034e0ea138cb57bc5d154e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a916e2cf1034e0ea138cb57bc5d154e.jpg", "file_size": 17009, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a916e2cf1034e0ea138cb57bc5d154e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a916e2cf1034e0ea138cb57bc5d154e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a916e2cf1034e0ea138cb57bc5d154e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a916e2cf1034e0ea138cb57bc5d154e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a916e2cf1034e0ea138cb57bc5d154e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rZDwf1uwtuv1Hra3H3tsXVN3d1U=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.82647+00 2025-12-09 10:16:02.826477+00 21317 1277-1FWE#彩兰XL SPMX-20240815316559 \N \N \N 1 \N [{"file_id": "61b0b922-34af-4b35-899b-1d38edba5ef4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50382f1ca41447dc9c598bf1c387f5f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50382f1ca41447dc9c598bf1c387f5f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50382f1ca41447dc9c598bf1c387f5f3.jpg", "file_size": 18332, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50382f1ca41447dc9c598bf1c387f5f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50382f1ca41447dc9c598bf1c387f5f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50382f1ca41447dc9c598bf1c387f5f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50382f1ca41447dc9c598bf1c387f5f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50382f1ca41447dc9c598bf1c387f5f3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6YGODEzRxbLHD9sL92uyV5LOO48=", "createTime": "2024-08-15 15:09:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.829951+00 2025-12-09 10:16:02.829957+00 21318 88380FWF#H水绿50码 SPMX-20240815316562 \N \N \N 1 \N [{"file_id": "b500a261-f9dc-4672-9fc6-2f6b1e5671d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a2c8fbde3fe47b398af2f6163a93351.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a2c8fbde3fe47b398af2f6163a93351.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a2c8fbde3fe47b398af2f6163a93351.jpg", "file_size": 26378, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H水绿50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2c8fbde3fe47b398af2f6163a93351.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2c8fbde3fe47b398af2f6163a93351.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a2c8fbde3fe47b398af2f6163a93351.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a2c8fbde3fe47b398af2f6163a93351.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a2c8fbde3fe47b398af2f6163a93351.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:67HHnrxgME1qBo2Lw6n_qcM1_8s=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.833396+00 2025-12-09 10:16:02.833403+00 21319 DM9198#5XL SPMX-20240815316565 \N \N \N 1 \N [{"file_id": "813bac82-d037-497a-80e7-25b464412d85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ce5c5618b7e4dc69b965c019354dcca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ce5c5618b7e4dc69b965c019354dcca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ce5c5618b7e4dc69b965c019354dcca.jpg", "file_size": 42638, "is_delete": false, "file_type": 1, "original_file_name": "DM9198#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce5c5618b7e4dc69b965c019354dcca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce5c5618b7e4dc69b965c019354dcca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ce5c5618b7e4dc69b965c019354dcca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ce5c5618b7e4dc69b965c019354dcca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ce5c5618b7e4dc69b965c019354dcca.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s8AuJXyAcSmWu_X51XR-sKsH4GA=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.836869+00 2025-12-09 10:16:02.836876+00 21320 88380FWF#H粉色44码 SPMX-20240815316579 \N \N \N 1 \N [{"file_id": "767c36e3-da0f-4c4d-9176-89d4a4c7016a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "351052edb0dd4c0e84781e0f83291334.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "351052edb0dd4c0e84781e0f83291334.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "351052edb0dd4c0e84781e0f83291334.jpg", "file_size": 24970, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H粉色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351052edb0dd4c0e84781e0f83291334.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351052edb0dd4c0e84781e0f83291334.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351052edb0dd4c0e84781e0f83291334.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/351052edb0dd4c0e84781e0f83291334.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/351052edb0dd4c0e84781e0f83291334.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kma6TT3DSHYkgTmWezMwRtBiyj4=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.84035+00 2025-12-09 10:16:02.840356+00 21321 003FWE#5XL SPMX-20240815316574 \N \N \N 1 \N [{"file_id": "68c5307a-ee0b-485e-b23f-0817ad320e27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e22db1ff8124c2198ca370c1387f31a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e22db1ff8124c2198ca370c1387f31a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e22db1ff8124c2198ca370c1387f31a.jpg", "file_size": 12404, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e22db1ff8124c2198ca370c1387f31a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e22db1ff8124c2198ca370c1387f31a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e22db1ff8124c2198ca370c1387f31a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e22db1ff8124c2198ca370c1387f31a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e22db1ff8124c2198ca370c1387f31a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IduCqFApJeNdlDxSfxZjnirAqSo=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.843836+00 2025-12-09 10:16:02.843843+00 21322 1277-1FWE#枣红L SPMX-20240815316582 \N \N \N 1 \N [{"file_id": "6728f97d-fbec-4e7a-80f5-56e32c4ccbae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb01bfb69e3e4a3aa8dd212d02831e68.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb01bfb69e3e4a3aa8dd212d02831e68.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb01bfb69e3e4a3aa8dd212d02831e68.jpg", "file_size": 18548, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb01bfb69e3e4a3aa8dd212d02831e68.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb01bfb69e3e4a3aa8dd212d02831e68.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb01bfb69e3e4a3aa8dd212d02831e68.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb01bfb69e3e4a3aa8dd212d02831e68.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb01bfb69e3e4a3aa8dd212d02831e68.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mpklKYAxNvMiutXupefl_QLBmLU=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.847215+00 2025-12-09 10:16:02.847222+00 21323 LZ1426#童装T5号色 SPMX-20240815316586 \N \N \N 1 \N [{"file_id": "1624de82-052f-40d0-94d3-819d7f2637ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc62f186adc04fb487fa85a20fee0d7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc62f186adc04fb487fa85a20fee0d7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc62f186adc04fb487fa85a20fee0d7a.jpg", "file_size": 19821, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc62f186adc04fb487fa85a20fee0d7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc62f186adc04fb487fa85a20fee0d7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc62f186adc04fb487fa85a20fee0d7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc62f186adc04fb487fa85a20fee0d7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc62f186adc04fb487fa85a20fee0d7a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SmsYf8tKfoxnvIa7jpwIA9eE24o=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.85069+00 2025-12-09 10:16:02.850697+00 21324 LJJ3187#-蓝黑L码 SPMX-20240815316584 \N \N \N 1 \N [{"file_id": "07dd8a96-661f-40ab-af53-c8a5ef63503d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f350a9b71acf41daa10c8edc06d4b7fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f350a9b71acf41daa10c8edc06d4b7fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f350a9b71acf41daa10c8edc06d4b7fe.jpg", "file_size": 17049, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-蓝黑L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f350a9b71acf41daa10c8edc06d4b7fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f350a9b71acf41daa10c8edc06d4b7fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f350a9b71acf41daa10c8edc06d4b7fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f350a9b71acf41daa10c8edc06d4b7fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f350a9b71acf41daa10c8edc06d4b7fe.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlUXCl7gbZpGENUN1BNKsmley-k=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.854175+00 2025-12-09 10:16:02.854183+00 21325 JY-DR-09#4号色 SPMX-20240815316573 \N \N \N 1 \N [{"file_id": "c8849a45-f530-4f24-bec9-09f591c5388c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c3b644ce80b4c10a4e2dbd30791770d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c3b644ce80b4c10a4e2dbd30791770d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c3b644ce80b4c10a4e2dbd30791770d.jpg", "file_size": 6733, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-09#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3b644ce80b4c10a4e2dbd30791770d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3b644ce80b4c10a4e2dbd30791770d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c3b644ce80b4c10a4e2dbd30791770d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c3b644ce80b4c10a4e2dbd30791770d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c3b644ce80b4c10a4e2dbd30791770d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-xUbfjZd4Pi8Zw0o3jtwieO0Rog=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.85768+00 2025-12-09 10:16:02.857687+00 21326 88380FWF#H粉色42码 SPMX-20240815316575 \N \N \N 1 \N [{"file_id": "1048f4b1-f8a0-489f-a14d-3172a99766c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dcfb4d9513f48608ce1ff53fb3cde65.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dcfb4d9513f48608ce1ff53fb3cde65.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dcfb4d9513f48608ce1ff53fb3cde65.jpg", "file_size": 24133, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H粉色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcfb4d9513f48608ce1ff53fb3cde65.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcfb4d9513f48608ce1ff53fb3cde65.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcfb4d9513f48608ce1ff53fb3cde65.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dcfb4d9513f48608ce1ff53fb3cde65.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dcfb4d9513f48608ce1ff53fb3cde65.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ytnpfAd-iSZM_bklUACvOVuWFw8=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.861474+00 2025-12-09 10:16:02.86148+00 21327 LZ1426#童装T4号色 SPMX-20240815316570 \N \N \N 1 \N [{"file_id": "674ac6e1-19bb-4ed8-a93d-f2d7632cbafc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb16fee6a1ab484fa0ce60253b64130c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb16fee6a1ab484fa0ce60253b64130c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb16fee6a1ab484fa0ce60253b64130c.jpg", "file_size": 18885, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb16fee6a1ab484fa0ce60253b64130c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb16fee6a1ab484fa0ce60253b64130c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb16fee6a1ab484fa0ce60253b64130c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb16fee6a1ab484fa0ce60253b64130c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb16fee6a1ab484fa0ce60253b64130c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-qpff1sy7gGYluqo-UvVHX33V20=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.864831+00 2025-12-09 10:16:02.864839+00 21328 FX015#VS-D3 SPMX-20240815316578 \N \N \N 1 \N [{"file_id": "f2d11155-ccfc-4d57-85d6-7dcd1448361e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81805b30aaaa46078c58dcff1d781322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81805b30aaaa46078c58dcff1d781322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81805b30aaaa46078c58dcff1d781322.jpg", "file_size": 23675, "is_delete": false, "file_type": 1, "original_file_name": "FX015#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81805b30aaaa46078c58dcff1d781322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81805b30aaaa46078c58dcff1d781322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81805b30aaaa46078c58dcff1d781322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81805b30aaaa46078c58dcff1d781322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81805b30aaaa46078c58dcff1d781322.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ALz1ijBIMKRUCX4oB7_SAfz1j2c=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.868454+00 2025-12-09 10:16:02.868461+00 21329 1277-1FWE#枣红2XL SPMX-20240815316571 \N \N \N 1 \N [{"file_id": "95ca37e0-d69c-418a-bc0c-b53121511d61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd0d4eb886a640929ea5020a5b535cdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd0d4eb886a640929ea5020a5b535cdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd0d4eb886a640929ea5020a5b535cdf.jpg", "file_size": 19501, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#枣红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0d4eb886a640929ea5020a5b535cdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0d4eb886a640929ea5020a5b535cdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd0d4eb886a640929ea5020a5b535cdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd0d4eb886a640929ea5020a5b535cdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd0d4eb886a640929ea5020a5b535cdf.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qd1EC6N7iMOD7gW8Evpf4Fv4P8s=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.872003+00 2025-12-09 10:16:02.87201+00 21330 CHB001#蓝 SPMX-20240815316576 \N \N \N 1 \N [{"file_id": "4bbdd0fd-872a-48df-9dfd-be1b8d93d25c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52e02277feb04f1095245871275c77e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52e02277feb04f1095245871275c77e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52e02277feb04f1095245871275c77e2.jpg", "file_size": 6387, "is_delete": false, "file_type": 1, "original_file_name": "CHB001#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e02277feb04f1095245871275c77e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e02277feb04f1095245871275c77e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e02277feb04f1095245871275c77e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52e02277feb04f1095245871275c77e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52e02277feb04f1095245871275c77e2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Phc95GsNtOcrxKQHyt1NeqOSJ4s=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.875483+00 2025-12-09 10:16:02.875491+00 21331 DM9209#1XL码 SPMX-20240815316577 \N \N \N 1 \N [{"file_id": "096490cf-9085-40d1-b270-abb697ffaee0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d920c1b5dce343e990d4a4db39307f95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d920c1b5dce343e990d4a4db39307f95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d920c1b5dce343e990d4a4db39307f95.jpg", "file_size": 49377, "is_delete": false, "file_type": 1, "original_file_name": "DM9209#1XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d920c1b5dce343e990d4a4db39307f95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d920c1b5dce343e990d4a4db39307f95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d920c1b5dce343e990d4a4db39307f95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d920c1b5dce343e990d4a4db39307f95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d920c1b5dce343e990d4a4db39307f95.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_wjFTQR86MKDvNoEZKvBuUvONI=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.878833+00 2025-12-09 10:16:02.87884+00 21332 24079#-6插色枣红 SPMX-20240815316580 \N \N \N 1 \N [{"file_id": "a55534e2-1127-4c5c-886f-9e320b798b8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a21587b35a5469db9dc95887c8f86e2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a21587b35a5469db9dc95887c8f86e2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a21587b35a5469db9dc95887c8f86e2.jpg", "file_size": 44871, "is_delete": false, "file_type": 1, "original_file_name": "24079#-6插色枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a21587b35a5469db9dc95887c8f86e2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a21587b35a5469db9dc95887c8f86e2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a21587b35a5469db9dc95887c8f86e2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a21587b35a5469db9dc95887c8f86e2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a21587b35a5469db9dc95887c8f86e2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DQhV9rUuVZMxXVIN705s_Vzx22I=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.882207+00 2025-12-09 10:16:02.882217+00 21333 JY-DR-09#5号色 SPMX-20240815316583 \N \N \N 1 \N [{"file_id": "95795a3a-c3b8-405d-9e05-f0f663669a27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e92026632cf04859b48f74e8ec9af4f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e92026632cf04859b48f74e8ec9af4f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e92026632cf04859b48f74e8ec9af4f1.jpg", "file_size": 6649, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-09#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92026632cf04859b48f74e8ec9af4f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92026632cf04859b48f74e8ec9af4f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e92026632cf04859b48f74e8ec9af4f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e92026632cf04859b48f74e8ec9af4f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e92026632cf04859b48f74e8ec9af4f1.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bVC4HJu5HudG3_KFpRfEdpqVlmk=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.885711+00 2025-12-09 10:16:02.885718+00 21334 LJJ3187#-白黑M码 SPMX-20240815316569 \N \N \N 1 \N [{"file_id": "a9912cf4-42f9-4400-a71d-c3a6dc65bcdd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b629349389d41bca3b8793576a0c408.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b629349389d41bca3b8793576a0c408.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b629349389d41bca3b8793576a0c408.jpg", "file_size": 18743, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-白黑M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b629349389d41bca3b8793576a0c408.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b629349389d41bca3b8793576a0c408.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b629349389d41bca3b8793576a0c408.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b629349389d41bca3b8793576a0c408.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b629349389d41bca3b8793576a0c408.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GJrNO1o2kVnNbVht2NyVPFCnJd8=", "createTime": "2024-08-15 15:09:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.889177+00 2025-12-09 10:16:02.889184+00 21335 003FWE#L SPMX-20240815316585 \N \N \N 1 \N [{"file_id": "0ce32c7e-e00e-49aa-98ea-cadb479579ed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1dc45e64a1740b8bd9a49cda6ad867c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1dc45e64a1740b8bd9a49cda6ad867c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1dc45e64a1740b8bd9a49cda6ad867c.jpg", "file_size": 13880, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1dc45e64a1740b8bd9a49cda6ad867c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1dc45e64a1740b8bd9a49cda6ad867c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1dc45e64a1740b8bd9a49cda6ad867c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1dc45e64a1740b8bd9a49cda6ad867c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1dc45e64a1740b8bd9a49cda6ad867c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:agmBielUb3Wc55YOOZ_CEuslVqg=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.892587+00 2025-12-09 10:16:02.892594+00 21336 HXF022#小粉 SPMX-20240815316581 \N \N \N 1 \N [{"file_id": "8bc4fadb-c83e-4f8b-9434-f58f2cc515a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cffdcc37d7f4bf5afd1d6dc7736197a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cffdcc37d7f4bf5afd1d6dc7736197a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cffdcc37d7f4bf5afd1d6dc7736197a.jpg", "file_size": 10950, "is_delete": false, "file_type": 1, "original_file_name": "HXF022#小粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cffdcc37d7f4bf5afd1d6dc7736197a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cffdcc37d7f4bf5afd1d6dc7736197a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cffdcc37d7f4bf5afd1d6dc7736197a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cffdcc37d7f4bf5afd1d6dc7736197a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cffdcc37d7f4bf5afd1d6dc7736197a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZfGLE_GDiGkudImkl5vt6q0VuDQ=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.895969+00 2025-12-09 10:16:02.895976+00 21337 1277-1FWE#枣红XL SPMX-20240815316592 \N \N \N 1 \N [{"file_id": "b68c1739-f653-4f3a-ae9e-0b392144fc14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0cd2fcc363c42ef99563c88cc8550b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0cd2fcc363c42ef99563c88cc8550b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0cd2fcc363c42ef99563c88cc8550b3.jpg", "file_size": 18916, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cd2fcc363c42ef99563c88cc8550b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cd2fcc363c42ef99563c88cc8550b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cd2fcc363c42ef99563c88cc8550b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0cd2fcc363c42ef99563c88cc8550b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0cd2fcc363c42ef99563c88cc8550b3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MJ_g6VXicVhrYEbiNEbd4kWvpjQ=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.8994+00 2025-12-09 10:16:02.899406+00 21338 HXF0226#2XL SPMX-20240815316591 \N \N \N 1 \N [{"file_id": "ece7c306-7f93-4ee3-98a4-ec51638a4c28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d23b81635ac4d87ad7534a03bd40716.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d23b81635ac4d87ad7534a03bd40716.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d23b81635ac4d87ad7534a03bd40716.jpg", "file_size": 22442, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d23b81635ac4d87ad7534a03bd40716.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d23b81635ac4d87ad7534a03bd40716.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d23b81635ac4d87ad7534a03bd40716.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d23b81635ac4d87ad7534a03bd40716.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d23b81635ac4d87ad7534a03bd40716.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u83q0_kK_5WsME3BfymF0sULc_g=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.902852+00 2025-12-09 10:16:02.90286+00 21339 CHB2506#浅咖 SPMX-20240815316598 \N \N \N 1 \N [{"file_id": "7b469fcc-c4ae-4599-850c-5ec79223800c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb8850bc357f49c293e575510125c920.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb8850bc357f49c293e575510125c920.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb8850bc357f49c293e575510125c920.jpg", "file_size": 12420, "is_delete": false, "file_type": 1, "original_file_name": "CHB2506#浅咖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8850bc357f49c293e575510125c920.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8850bc357f49c293e575510125c920.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb8850bc357f49c293e575510125c920.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb8850bc357f49c293e575510125c920.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb8850bc357f49c293e575510125c920.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uL1LIEyaGknN20RxvGMG8lUrnqw=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.906292+00 2025-12-09 10:16:02.906298+00 21340 24079#-7主色玫红 SPMX-20240815316593 \N \N \N 1 \N [{"file_id": "72b688a3-a959-4a90-ab24-010f8bb4d72c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0cb07bea44df4fe5a63ba4d617d2177e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0cb07bea44df4fe5a63ba4d617d2177e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0cb07bea44df4fe5a63ba4d617d2177e.jpg", "file_size": 48817, "is_delete": false, "file_type": 1, "original_file_name": "24079#-7主色玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb07bea44df4fe5a63ba4d617d2177e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb07bea44df4fe5a63ba4d617d2177e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0cb07bea44df4fe5a63ba4d617d2177e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0cb07bea44df4fe5a63ba4d617d2177e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0cb07bea44df4fe5a63ba4d617d2177e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hwDnYLEl_ofP7AEImWwXwpGpYSI=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.909816+00 2025-12-09 10:16:02.909823+00 21341 CHB001#黑 SPMX-20240815316587 \N \N \N 1 \N [{"file_id": "073c11fb-ad15-4c3d-8645-c4e1a4606459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16479d1dae414c6ca582a2b9fcd9836c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16479d1dae414c6ca582a2b9fcd9836c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16479d1dae414c6ca582a2b9fcd9836c.jpg", "file_size": 9510, "is_delete": false, "file_type": 1, "original_file_name": "CHB001#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16479d1dae414c6ca582a2b9fcd9836c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16479d1dae414c6ca582a2b9fcd9836c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16479d1dae414c6ca582a2b9fcd9836c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16479d1dae414c6ca582a2b9fcd9836c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16479d1dae414c6ca582a2b9fcd9836c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q9-mqA6H_UEsM2E4kn2Hw-1oGTc=", "createTime": "2024-08-15 15:09:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.913197+00 2025-12-09 10:16:02.913203+00 21342 003FWE#M SPMX-20240815316597 \N \N \N 1 \N [{"file_id": "12ad30c2-87d8-4f0e-989f-9fcba09aea31", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a45feaa26ff8490a88e0171aea922930.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a45feaa26ff8490a88e0171aea922930.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a45feaa26ff8490a88e0171aea922930.jpg", "file_size": 14340, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45feaa26ff8490a88e0171aea922930.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45feaa26ff8490a88e0171aea922930.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a45feaa26ff8490a88e0171aea922930.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a45feaa26ff8490a88e0171aea922930.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a45feaa26ff8490a88e0171aea922930.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwArW4zCo2DKbbpufznMLJyvuJI=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.9166+00 2025-12-09 10:16:02.916606+00 21343 LJJ3187#-蓝黑M码 SPMX-20240815316594 \N \N \N 1 \N [{"file_id": "9463913e-3b32-4fa1-b098-551321726dcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "89d206ba4550434a8ecf27f0272de1c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "89d206ba4550434a8ecf27f0272de1c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "89d206ba4550434a8ecf27f0272de1c5.jpg", "file_size": 17175, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-蓝黑M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d206ba4550434a8ecf27f0272de1c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d206ba4550434a8ecf27f0272de1c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/89d206ba4550434a8ecf27f0272de1c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/89d206ba4550434a8ecf27f0272de1c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/89d206ba4550434a8ecf27f0272de1c5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CrB-cnoNWtbqlaiUGY4cB9wtmh0=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.920159+00 2025-12-09 10:16:02.920166+00 21344 HXF0226#L SPMX-20240815316600 \N \N \N 1 \N [{"file_id": "4f24f619-8007-4d4d-a195-e6ba3de8d414", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3509ba1df6bc436c89f952173a1d95a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3509ba1df6bc436c89f952173a1d95a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3509ba1df6bc436c89f952173a1d95a6.jpg", "file_size": 20813, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3509ba1df6bc436c89f952173a1d95a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3509ba1df6bc436c89f952173a1d95a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3509ba1df6bc436c89f952173a1d95a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3509ba1df6bc436c89f952173a1d95a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3509ba1df6bc436c89f952173a1d95a6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rn8Db3CmR0ph52IsdxTnOCe1yq4=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.923521+00 2025-12-09 10:16:02.923527+00 21345 FX015#蓝底 SPMX-20240815316588 \N \N \N 1 \N [{"file_id": "49a1d7ea-98ac-490c-9591-88460004bd5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "042342e306de43eba47449c7a578563d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "042342e306de43eba47449c7a578563d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "042342e306de43eba47449c7a578563d.jpg", "file_size": 14846, "is_delete": false, "file_type": 1, "original_file_name": "FX015#蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042342e306de43eba47449c7a578563d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042342e306de43eba47449c7a578563d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/042342e306de43eba47449c7a578563d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/042342e306de43eba47449c7a578563d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/042342e306de43eba47449c7a578563d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HMYe8alsFEhfOYzR5N5Nkq1CJtM=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.927003+00 2025-12-09 10:16:02.927009+00 21346 JY-DR-183#1号蓝色 SPMX-20240815316595 \N \N \N 1 \N [{"file_id": "34427ba8-4162-4f0d-8fdf-4db3dfcef511", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "733e8ca416f4455e8593f3cd1012c36a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "733e8ca416f4455e8593f3cd1012c36a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "733e8ca416f4455e8593f3cd1012c36a.jpg", "file_size": 17075, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-183#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/733e8ca416f4455e8593f3cd1012c36a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/733e8ca416f4455e8593f3cd1012c36a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/733e8ca416f4455e8593f3cd1012c36a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/733e8ca416f4455e8593f3cd1012c36a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/733e8ca416f4455e8593f3cd1012c36a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YzQSZk595jYk7MtPW9arFzS1kxE=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.930454+00 2025-12-09 10:16:02.93046+00 21347 FX015#黑底 SPMX-20240815316599 \N \N \N 1 \N [{"file_id": "089add85-f671-4326-83a5-406f5ec369a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6122c327c1e441a1a28a6f7b8e88d615.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6122c327c1e441a1a28a6f7b8e88d615.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6122c327c1e441a1a28a6f7b8e88d615.jpg", "file_size": 16893, "is_delete": false, "file_type": 1, "original_file_name": "FX015#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6122c327c1e441a1a28a6f7b8e88d615.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6122c327c1e441a1a28a6f7b8e88d615.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6122c327c1e441a1a28a6f7b8e88d615.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6122c327c1e441a1a28a6f7b8e88d615.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6122c327c1e441a1a28a6f7b8e88d615.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hiOmSzo-3ZTga-ddmXkXHskOVAk=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.933912+00 2025-12-09 10:16:02.933919+00 21348 88380FWF#H粉色46码 SPMX-20240815316590 \N \N \N 1 \N [{"file_id": "87443f53-0e69-4971-a0fd-bca71d178ba6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6cbcd944acfe47cfb21c0b5cc0904496.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6cbcd944acfe47cfb21c0b5cc0904496.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6cbcd944acfe47cfb21c0b5cc0904496.jpg", "file_size": 25240, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H粉色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbcd944acfe47cfb21c0b5cc0904496.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbcd944acfe47cfb21c0b5cc0904496.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6cbcd944acfe47cfb21c0b5cc0904496.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6cbcd944acfe47cfb21c0b5cc0904496.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6cbcd944acfe47cfb21c0b5cc0904496.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c5JyL7ltOkISix-p2JMeMmnSHj8=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.937375+00 2025-12-09 10:16:02.937382+00 21349 LZ1426FWF#WJC22 SPMX-20240815316596 \N \N \N 1 \N [{"file_id": "954bce16-cb12-4f07-852e-e32d5fb4bad6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4725421e65b74f3e87288bd7d6d12da5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4725421e65b74f3e87288bd7d6d12da5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4725421e65b74f3e87288bd7d6d12da5.jpg", "file_size": 23033, "is_delete": false, "file_type": 1, "original_file_name": "LZ1426FWF#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725421e65b74f3e87288bd7d6d12da5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725421e65b74f3e87288bd7d6d12da5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4725421e65b74f3e87288bd7d6d12da5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4725421e65b74f3e87288bd7d6d12da5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4725421e65b74f3e87288bd7d6d12da5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M9PGpid7iCImsjbk6CyDDXsMg6I=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.940851+00 2025-12-09 10:16:02.940857+00 21350 88380FWF#H粉色48码 SPMX-20240815316601 \N \N \N 1 \N [{"file_id": "35e07c84-d2db-4d11-9798-d97aa468d3a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ea452af561e408ab3abbfc7770ec247.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ea452af561e408ab3abbfc7770ec247.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ea452af561e408ab3abbfc7770ec247.jpg", "file_size": 25793, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H粉色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea452af561e408ab3abbfc7770ec247.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea452af561e408ab3abbfc7770ec247.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ea452af561e408ab3abbfc7770ec247.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ea452af561e408ab3abbfc7770ec247.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ea452af561e408ab3abbfc7770ec247.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oFUQt6QhINCzj7h6SrYb0bRzm-A=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.944342+00 2025-12-09 10:16:02.944349+00 21351 DM9209#2XL码 SPMX-20240815316589 \N \N \N 1 \N [{"file_id": "00e51a55-f4eb-417c-ac0a-50e4ece6ec9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb736bd7c2e245efb6549eed56e240da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb736bd7c2e245efb6549eed56e240da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb736bd7c2e245efb6549eed56e240da.jpg", "file_size": 53814, "is_delete": false, "file_type": 1, "original_file_name": "DM9209#2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb736bd7c2e245efb6549eed56e240da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb736bd7c2e245efb6549eed56e240da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb736bd7c2e245efb6549eed56e240da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb736bd7c2e245efb6549eed56e240da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb736bd7c2e245efb6549eed56e240da.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lvynKsL5nEBCH738nTOwLi7MJb0=", "createTime": "2024-08-15 15:10:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.947744+00 2025-12-09 10:16:02.947751+00 21352 HXF0226#M SPMX-20240815316610 \N \N \N 1 \N [{"file_id": "c8d69a0e-5921-444f-8a6a-7b0c277809bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99015e58f9574edd9fbf2f3cf4cf2ac2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99015e58f9574edd9fbf2f3cf4cf2ac2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99015e58f9574edd9fbf2f3cf4cf2ac2.jpg", "file_size": 20394, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99015e58f9574edd9fbf2f3cf4cf2ac2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99015e58f9574edd9fbf2f3cf4cf2ac2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99015e58f9574edd9fbf2f3cf4cf2ac2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99015e58f9574edd9fbf2f3cf4cf2ac2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99015e58f9574edd9fbf2f3cf4cf2ac2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqDJ5kSBLOhsyAnklaPte337aMI=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.951202+00 2025-12-09 10:16:02.95121+00 21353 88380FWF#H粉色50码 SPMX-20240815316612 \N \N \N 1 \N [{"file_id": "cdb38ebd-0d82-4d7f-bf65-3b96cdba8419", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bab1ee502284624bef72d40eb8a230c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bab1ee502284624bef72d40eb8a230c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bab1ee502284624bef72d40eb8a230c.jpg", "file_size": 26105, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H粉色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab1ee502284624bef72d40eb8a230c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab1ee502284624bef72d40eb8a230c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bab1ee502284624bef72d40eb8a230c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bab1ee502284624bef72d40eb8a230c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bab1ee502284624bef72d40eb8a230c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_JalHly1w_afp_N1hqnKWS_yZFY=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.954632+00 2025-12-09 10:16:02.954637+00 21354 DM9209#4XL码 SPMX-20240815316613 \N \N \N 1 \N [{"file_id": "af2e962f-3724-488e-9fab-e3b02c75645a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64bc689f2b3c4a3f8300f59b82368ec5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64bc689f2b3c4a3f8300f59b82368ec5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64bc689f2b3c4a3f8300f59b82368ec5.jpg", "file_size": 53191, "is_delete": false, "file_type": 1, "original_file_name": "DM9209#4XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bc689f2b3c4a3f8300f59b82368ec5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bc689f2b3c4a3f8300f59b82368ec5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64bc689f2b3c4a3f8300f59b82368ec5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64bc689f2b3c4a3f8300f59b82368ec5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64bc689f2b3c4a3f8300f59b82368ec5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dRK_GSqAHDJqAH92E5om1R1vJKo=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.958017+00 2025-12-09 10:16:02.958024+00 21355 DM9209#3XL码 SPMX-20240815316602 \N \N \N 1 \N [{"file_id": "e7b604ba-24b9-4a50-91ef-8389a30ccee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "364b6e71fbd448eca2b1ee98b7b4e12a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "364b6e71fbd448eca2b1ee98b7b4e12a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "364b6e71fbd448eca2b1ee98b7b4e12a.jpg", "file_size": 53527, "is_delete": false, "file_type": 1, "original_file_name": "DM9209#3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364b6e71fbd448eca2b1ee98b7b4e12a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364b6e71fbd448eca2b1ee98b7b4e12a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/364b6e71fbd448eca2b1ee98b7b4e12a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/364b6e71fbd448eca2b1ee98b7b4e12a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/364b6e71fbd448eca2b1ee98b7b4e12a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sLBoMb9l7GDCNSjWAhpemq6JUsM=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.961409+00 2025-12-09 10:16:02.961414+00 21356 003FWE#XL SPMX-20240815316607 \N \N \N 1 \N [{"file_id": "4894476c-b23e-49e8-ac6b-9648dd07ca35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "482b7a5d9e934dfbb740fd84f83757aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "482b7a5d9e934dfbb740fd84f83757aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "482b7a5d9e934dfbb740fd84f83757aa.jpg", "file_size": 13634, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b7a5d9e934dfbb740fd84f83757aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b7a5d9e934dfbb740fd84f83757aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/482b7a5d9e934dfbb740fd84f83757aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/482b7a5d9e934dfbb740fd84f83757aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/482b7a5d9e934dfbb740fd84f83757aa.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GByWBYyNRVQdr-0XE77TD6QsTcU=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.964792+00 2025-12-09 10:16:02.964799+00 21357 1277-1FWE#粉色2XL SPMX-20240815316603 \N \N \N 1 \N [{"file_id": "5892f1b4-3d0f-4aae-b892-fb20e9cf74b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c45b1286fa0249fb9f66e5d335256c57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c45b1286fa0249fb9f66e5d335256c57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c45b1286fa0249fb9f66e5d335256c57.jpg", "file_size": 18079, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45b1286fa0249fb9f66e5d335256c57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45b1286fa0249fb9f66e5d335256c57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c45b1286fa0249fb9f66e5d335256c57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c45b1286fa0249fb9f66e5d335256c57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c45b1286fa0249fb9f66e5d335256c57.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:laOnVweyIq10rb4HSQgMsaJrHi8=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.968141+00 2025-12-09 10:16:02.968146+00 21358 LJJ3187#-黄黑L码 SPMX-20240815316604 \N \N \N 1 \N [{"file_id": "2151e5ab-825c-4a06-80f1-81331b4e4f6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e5b34a8eec45329860b6145b28e98c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e5b34a8eec45329860b6145b28e98c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e5b34a8eec45329860b6145b28e98c.jpg", "file_size": 19656, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黄黑L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e5b34a8eec45329860b6145b28e98c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e5b34a8eec45329860b6145b28e98c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e5b34a8eec45329860b6145b28e98c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e5b34a8eec45329860b6145b28e98c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e5b34a8eec45329860b6145b28e98c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NG04pFcWdDL2yahAtLFLSmMmOyA=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.971552+00 2025-12-09 10:16:02.971558+00 21359 24079#-7插色蓝色 SPMX-20240815316605 \N \N \N 1 \N [{"file_id": "69c72d9d-e898-4d18-ae3e-9881fb5f69f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7ff81b1d4664a8190651d669c6e7a63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7ff81b1d4664a8190651d669c6e7a63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7ff81b1d4664a8190651d669c6e7a63.jpg", "file_size": 47773, "is_delete": false, "file_type": 1, "original_file_name": "24079#-7插色蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ff81b1d4664a8190651d669c6e7a63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ff81b1d4664a8190651d669c6e7a63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7ff81b1d4664a8190651d669c6e7a63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7ff81b1d4664a8190651d669c6e7a63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7ff81b1d4664a8190651d669c6e7a63.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IfqHZhQsWfyYSP2OZ9NGD3dU7oM=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.974962+00 2025-12-09 10:16:02.974968+00 21360 FX015FW#VS-D3 SPMX-20240815316611 \N \N \N 1 \N [{"file_id": "5e40ecdc-7187-462e-ad4c-1124133e5926", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0fadcbb50e1c4e7eadf7152efbf66d01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0fadcbb50e1c4e7eadf7152efbf66d01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0fadcbb50e1c4e7eadf7152efbf66d01.jpg", "file_size": 5854, "is_delete": false, "file_type": 1, "original_file_name": "FX015FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fadcbb50e1c4e7eadf7152efbf66d01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fadcbb50e1c4e7eadf7152efbf66d01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0fadcbb50e1c4e7eadf7152efbf66d01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0fadcbb50e1c4e7eadf7152efbf66d01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0fadcbb50e1c4e7eadf7152efbf66d01.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HTm9onku1cqN8klnu7dLsImdQ1Q=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.978416+00 2025-12-09 10:16:02.978422+00 21361 LZ1427#大人T1号色 SPMX-20240815316606 \N \N \N 1 \N [{"file_id": "f7c73b4e-cd00-44e7-b560-e0d1a304cbcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "472dfad8a9724ea18db69c199aabcfcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "472dfad8a9724ea18db69c199aabcfcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "472dfad8a9724ea18db69c199aabcfcb.jpg", "file_size": 18330, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472dfad8a9724ea18db69c199aabcfcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472dfad8a9724ea18db69c199aabcfcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/472dfad8a9724ea18db69c199aabcfcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/472dfad8a9724ea18db69c199aabcfcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/472dfad8a9724ea18db69c199aabcfcb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g847_c2DhsIcEfl5e3SXkctbyNc=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.982001+00 2025-12-09 10:16:02.982008+00 21362 CHB2506#白 SPMX-20240815316609 \N \N \N 1 \N [{"file_id": "92045824-34aa-45f5-ac28-8785e769ced2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a60604f625044e0b3b046a0437c7c23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a60604f625044e0b3b046a0437c7c23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a60604f625044e0b3b046a0437c7c23.jpg", "file_size": 11820, "is_delete": false, "file_type": 1, "original_file_name": "CHB2506#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a60604f625044e0b3b046a0437c7c23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a60604f625044e0b3b046a0437c7c23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a60604f625044e0b3b046a0437c7c23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a60604f625044e0b3b046a0437c7c23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a60604f625044e0b3b046a0437c7c23.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TMw3tO-mC77I3X_eMDkS5zgt9FM=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.985369+00 2025-12-09 10:16:02.985376+00 21363 1277-1FWE#粉色L SPMX-20240815316614 \N \N \N 1 \N [{"file_id": "dddb3137-6e7e-42e5-9edf-88f51be1813e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e074a4d66b2423bbc49cb58ab94477f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e074a4d66b2423bbc49cb58ab94477f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e074a4d66b2423bbc49cb58ab94477f.jpg", "file_size": 17881, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e074a4d66b2423bbc49cb58ab94477f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e074a4d66b2423bbc49cb58ab94477f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e074a4d66b2423bbc49cb58ab94477f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e074a4d66b2423bbc49cb58ab94477f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e074a4d66b2423bbc49cb58ab94477f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QQ6XtOvpzQa1FDgVG7F7OJxDEf4=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.988803+00 2025-12-09 10:16:02.988808+00 21364 JY-DR-183#2号桔色 SPMX-20240815316608 \N \N \N 1 \N [{"file_id": "9a85a8fd-6ac5-47c5-bdc6-644cac92db72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7dc2c11f09941d69eebd3adfa2e2025.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7dc2c11f09941d69eebd3adfa2e2025.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7dc2c11f09941d69eebd3adfa2e2025.jpg", "file_size": 16677, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-183#2号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dc2c11f09941d69eebd3adfa2e2025.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dc2c11f09941d69eebd3adfa2e2025.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dc2c11f09941d69eebd3adfa2e2025.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7dc2c11f09941d69eebd3adfa2e2025.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7dc2c11f09941d69eebd3adfa2e2025.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3pl8tePWAIcdVjOOCreoW8AHcSg=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.992141+00 2025-12-09 10:16:02.992148+00 21365 LJJ3187#-黄黑M码 SPMX-20240815316615 \N \N \N 1 \N [{"file_id": "57bb2cfa-472d-44cf-b043-9fe5a685da7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08de5df87f8041f8ae0092a364101eff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08de5df87f8041f8ae0092a364101eff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08de5df87f8041f8ae0092a364101eff.jpg", "file_size": 20575, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黄黑M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08de5df87f8041f8ae0092a364101eff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08de5df87f8041f8ae0092a364101eff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08de5df87f8041f8ae0092a364101eff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08de5df87f8041f8ae0092a364101eff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08de5df87f8041f8ae0092a364101eff.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g1VpIjjJqf8BCJi_CGCaMr5c4B4=", "createTime": "2024-08-15 15:10:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.995603+00 2025-12-09 10:16:02.99561+00 21366 HXF0226#XL SPMX-20240815316619 \N \N \N 1 \N [{"file_id": "512572c2-6a2c-4a18-81f3-14951b31502d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "458949f785c54d07abd800542c67cb1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "458949f785c54d07abd800542c67cb1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "458949f785c54d07abd800542c67cb1f.jpg", "file_size": 21621, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458949f785c54d07abd800542c67cb1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458949f785c54d07abd800542c67cb1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/458949f785c54d07abd800542c67cb1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/458949f785c54d07abd800542c67cb1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/458949f785c54d07abd800542c67cb1f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jEOaJuomZoc_0H-Ke7C8z7UIVNY=", "createTime": "2024-08-15 15:10:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:02.999032+00 2025-12-09 10:16:02.999038+00 21367 003FWE#抓毛-女2XL+童6码 SPMX-20240815316618 \N \N \N 1 \N [{"file_id": "e51e3a16-d65a-4c3d-8d43-69fbadd3e7a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34752d41c4264859b089ef19c133852f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34752d41c4264859b089ef19c133852f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34752d41c4264859b089ef19c133852f.jpg", "file_size": 12462, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女2XL+童6码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34752d41c4264859b089ef19c133852f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34752d41c4264859b089ef19c133852f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34752d41c4264859b089ef19c133852f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34752d41c4264859b089ef19c133852f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34752d41c4264859b089ef19c133852f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jbMdWCPYOBV7nDH7qCRJokGUQxY=", "createTime": "2024-08-15 15:10:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.002461+00 2025-12-09 10:16:03.002468+00 21368 24079#-8主色绿色 SPMX-20240815316616 \N \N \N 1 \N [{"file_id": "49e04e63-62df-4c82-8f8b-b832cb7952da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "60fccc3675c146669e2ce0d196f56254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "60fccc3675c146669e2ce0d196f56254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "60fccc3675c146669e2ce0d196f56254.jpg", "file_size": 44542, "is_delete": false, "file_type": 1, "original_file_name": "24079#-8主色绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fccc3675c146669e2ce0d196f56254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fccc3675c146669e2ce0d196f56254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/60fccc3675c146669e2ce0d196f56254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/60fccc3675c146669e2ce0d196f56254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/60fccc3675c146669e2ce0d196f56254.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eUJBvBHgBtrx24D-8lTrh4MacpA=", "createTime": "2024-08-15 15:10:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.005832+00 2025-12-09 10:16:03.005838+00 21369 JY-DR-183#5号玫红 SPMX-20240815316617 \N \N \N 1 \N [{"file_id": "967b0361-cb36-4bb7-b723-56c35c265b4c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "931042d98e424b1cbed5a09f77530ecf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "931042d98e424b1cbed5a09f77530ecf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "931042d98e424b1cbed5a09f77530ecf.jpg", "file_size": 16849, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-183#5号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931042d98e424b1cbed5a09f77530ecf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931042d98e424b1cbed5a09f77530ecf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931042d98e424b1cbed5a09f77530ecf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/931042d98e424b1cbed5a09f77530ecf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/931042d98e424b1cbed5a09f77530ecf.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xApn0TSZZN9RzTTsg0U9FP1ltbw=", "createTime": "2024-08-15 15:10:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.009651+00 2025-12-09 10:16:03.009659+00 21370 88380FWF#H黄色42码 SPMX-20240815316622 \N \N \N 1 \N [{"file_id": "601f4363-c3b5-431f-935c-6c5cbacfa68a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1a4f995c33945fa80a010e0ddd6e2f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1a4f995c33945fa80a010e0ddd6e2f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1a4f995c33945fa80a010e0ddd6e2f8.jpg", "file_size": 25392, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H黄色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a4f995c33945fa80a010e0ddd6e2f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a4f995c33945fa80a010e0ddd6e2f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1a4f995c33945fa80a010e0ddd6e2f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1a4f995c33945fa80a010e0ddd6e2f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1a4f995c33945fa80a010e0ddd6e2f8.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uuAfqCfNo_oYyof8MABK4Ipuu2k=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.013401+00 2025-12-09 10:16:03.013407+00 21371 FX015FWE#VS-D3 SPMX-20240815316621 \N \N \N 1 \N [{"file_id": "d726df17-1e36-4f4b-9bf5-762d34684b29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25f318db29bf412c8eaaf01a670d2adb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25f318db29bf412c8eaaf01a670d2adb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25f318db29bf412c8eaaf01a670d2adb.jpg", "file_size": 18051, "is_delete": false, "file_type": 1, "original_file_name": "FX015FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f318db29bf412c8eaaf01a670d2adb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f318db29bf412c8eaaf01a670d2adb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25f318db29bf412c8eaaf01a670d2adb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25f318db29bf412c8eaaf01a670d2adb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25f318db29bf412c8eaaf01a670d2adb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBex0npl9zVMW0GPdosazuAI-sA=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.016859+00 2025-12-09 10:16:03.016865+00 21372 1277-1FWE#粉色XL SPMX-20240815316626 \N \N \N 1 \N [{"file_id": "6a4d3836-47fc-44fa-8fb6-56b3f418c475", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c2fe87c8da74b02abe56d27bea1028c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c2fe87c8da74b02abe56d27bea1028c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c2fe87c8da74b02abe56d27bea1028c.jpg", "file_size": 18288, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2fe87c8da74b02abe56d27bea1028c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2fe87c8da74b02abe56d27bea1028c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c2fe87c8da74b02abe56d27bea1028c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c2fe87c8da74b02abe56d27bea1028c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c2fe87c8da74b02abe56d27bea1028c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKu2jGWXr9LCVMA4BtyVkq6YknE=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.020298+00 2025-12-09 10:16:03.020304+00 21373 CHB2512#白 SPMX-20240815316620 \N \N \N 1 \N [{"file_id": "eaea8b2f-bce2-4456-8bf7-93b3c4038fd8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d4bef2cd48d4b77af6453764f3c8333.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d4bef2cd48d4b77af6453764f3c8333.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d4bef2cd48d4b77af6453764f3c8333.jpg", "file_size": 13853, "is_delete": false, "file_type": 1, "original_file_name": "CHB2512#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4bef2cd48d4b77af6453764f3c8333.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4bef2cd48d4b77af6453764f3c8333.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d4bef2cd48d4b77af6453764f3c8333.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d4bef2cd48d4b77af6453764f3c8333.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d4bef2cd48d4b77af6453764f3c8333.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_7uYyfgP5UuAKblDngoVUHXpcck=", "createTime": "2024-08-15 15:10:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.023682+00 2025-12-09 10:16:03.023688+00 21374 DM9209#5XL码 SPMX-20240815316625 \N \N \N 1 \N [{"file_id": "d8a097b3-e47c-4614-ab87-ca93155f0f2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26da4a5695034560b4e336a18f734ba9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26da4a5695034560b4e336a18f734ba9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26da4a5695034560b4e336a18f734ba9.jpg", "file_size": 50468, "is_delete": false, "file_type": 1, "original_file_name": "DM9209#5XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da4a5695034560b4e336a18f734ba9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da4a5695034560b4e336a18f734ba9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26da4a5695034560b4e336a18f734ba9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26da4a5695034560b4e336a18f734ba9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26da4a5695034560b4e336a18f734ba9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L07rnxaOldTK6LH7lYpV38KSK7Q=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.027417+00 2025-12-09 10:16:03.027424+00 21375 JY-DR-183#8号绿色 SPMX-20240815316628 \N \N \N 1 \N [{"file_id": "76a5a4b6-6df2-48cc-b138-71448beaaa34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b56198cb104216b6e128fa23cd9476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b56198cb104216b6e128fa23cd9476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b56198cb104216b6e128fa23cd9476.jpg", "file_size": 16409, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-183#8号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b56198cb104216b6e128fa23cd9476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b56198cb104216b6e128fa23cd9476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b56198cb104216b6e128fa23cd9476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b56198cb104216b6e128fa23cd9476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b56198cb104216b6e128fa23cd9476.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZxDFIVY0UGKbiQujglSEmLBxXRQ=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.030937+00 2025-12-09 10:16:03.030944+00 21376 LJJ3187#-黑白L码 SPMX-20240815316627 \N \N \N 1 \N [{"file_id": "9cdcdd8c-30a9-4035-859d-63f80072c79f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0f2ffc7969247489e5542b7ee5374e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0f2ffc7969247489e5542b7ee5374e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0f2ffc7969247489e5542b7ee5374e3.jpg", "file_size": 20355, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黑白L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2ffc7969247489e5542b7ee5374e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2ffc7969247489e5542b7ee5374e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0f2ffc7969247489e5542b7ee5374e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0f2ffc7969247489e5542b7ee5374e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0f2ffc7969247489e5542b7ee5374e3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HprfZQQ1mCkfN6vEQwiQD-Ffgbw=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.034403+00 2025-12-09 10:16:03.03441+00 21377 HXF0226#蓝色净色 SPMX-20240815316630 \N \N \N 1 \N [{"file_id": "94b331d7-8d71-4773-af8d-2e599f5243e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69c896e52ee2479eb07d030ca119fd80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69c896e52ee2479eb07d030ca119fd80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69c896e52ee2479eb07d030ca119fd80.jpg", "file_size": 8110, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#蓝色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c896e52ee2479eb07d030ca119fd80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c896e52ee2479eb07d030ca119fd80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69c896e52ee2479eb07d030ca119fd80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69c896e52ee2479eb07d030ca119fd80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69c896e52ee2479eb07d030ca119fd80.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qk97mK9VHiyU1aQUdR7WT-eom0I=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.037954+00 2025-12-09 10:16:03.037961+00 21378 CHB2512#黑 SPMX-20240815316631 \N \N \N 1 \N [{"file_id": "20f56ee4-2a4c-433f-a396-636242cc3473", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd918685bb9c485198ca770f1fd6f527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd918685bb9c485198ca770f1fd6f527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd918685bb9c485198ca770f1fd6f527.jpg", "file_size": 12375, "is_delete": false, "file_type": 1, "original_file_name": "CHB2512#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd918685bb9c485198ca770f1fd6f527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd918685bb9c485198ca770f1fd6f527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd918685bb9c485198ca770f1fd6f527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd918685bb9c485198ca770f1fd6f527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd918685bb9c485198ca770f1fd6f527.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gkl5QM_BPjDIbQQcZj__WMrN-Ik=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.041517+00 2025-12-09 10:16:03.041524+00 21379 24079#-8插色紫色 SPMX-20240815316623 \N \N \N 1 \N [{"file_id": "dad9fce4-555d-4422-b617-58a287d7c840", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd717131df9a46d7bd43615c0d101087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd717131df9a46d7bd43615c0d101087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd717131df9a46d7bd43615c0d101087.jpg", "file_size": 44823, "is_delete": false, "file_type": 1, "original_file_name": "24079#-8插色紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd717131df9a46d7bd43615c0d101087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd717131df9a46d7bd43615c0d101087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd717131df9a46d7bd43615c0d101087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd717131df9a46d7bd43615c0d101087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd717131df9a46d7bd43615c0d101087.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MqmnCUbwG6PeJWv-bsxBkZP0n_Q=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.045082+00 2025-12-09 10:16:03.045089+00 21380 LZ1427#大人T2号色 SPMX-20240815316624 \N \N \N 1 \N [{"file_id": "3c4c0d93-13fe-4af7-84bd-8dea921760dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe68cc15882b40958d8220f4f8f83c8e.bmp?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe68cc15882b40958d8220f4f8f83c8e.bmp?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe68cc15882b40958d8220f4f8f83c8e.bmp", "file_size": 396630, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#大人T2号色.bmp", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe68cc15882b40958d8220f4f8f83c8e.bmp?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe68cc15882b40958d8220f4f8f83c8e.bmp?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe68cc15882b40958d8220f4f8f83c8e.bmp", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe68cc15882b40958d8220f4f8f83c8e.bmp", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe68cc15882b40958d8220f4f8f83c8e.bmp?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKzjyJYCw-fyTMPepfD9ecdN8Dc=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.048527+00 2025-12-09 10:16:03.048534+00 21381 003FWE#抓毛-女L+童8码 SPMX-20240815316629 \N \N \N 1 \N [{"file_id": "993a8eca-cbdd-42ce-8dbf-f7b3731f7e4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg", "file_size": 11761, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女L+童8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f4a2f4d7d04ea7b566dd90fe1d12a1.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jufAyfmM3E2Uy2VaWkqF54JNxXk=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.051904+00 2025-12-09 10:16:03.05191+00 21382 DM9223#RC23 SPMX-20240815316636 \N \N \N 1 \N [{"file_id": "1e44e86a-1fc5-4f25-ad2a-78e47631e80d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc955e97737e40e18870bf3db4e3109f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc955e97737e40e18870bf3db4e3109f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc955e97737e40e18870bf3db4e3109f.jpg", "file_size": 49736, "is_delete": false, "file_type": 1, "original_file_name": "DM9223#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc955e97737e40e18870bf3db4e3109f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc955e97737e40e18870bf3db4e3109f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc955e97737e40e18870bf3db4e3109f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc955e97737e40e18870bf3db4e3109f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc955e97737e40e18870bf3db4e3109f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aqc3YwDhW-4Ggo6cOiwpFmO8lUc=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.055369+00 2025-12-09 10:16:03.055376+00 21383 FX016#E SPMX-20240815316643 \N \N \N 1 \N [{"file_id": "4759618e-c3e1-4e33-86cc-75a7f7b75e90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b5649dd7f3a47a3b1ce0e63440b3b24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b5649dd7f3a47a3b1ce0e63440b3b24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b5649dd7f3a47a3b1ce0e63440b3b24.jpg", "file_size": 7852, "is_delete": false, "file_type": 1, "original_file_name": "FX016#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5649dd7f3a47a3b1ce0e63440b3b24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5649dd7f3a47a3b1ce0e63440b3b24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b5649dd7f3a47a3b1ce0e63440b3b24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b5649dd7f3a47a3b1ce0e63440b3b24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b5649dd7f3a47a3b1ce0e63440b3b24.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cew4KLTDZxOXhzc8Tkq7IDHipo0=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.058824+00 2025-12-09 10:16:03.05883+00 21384 LZ1427#大人T3号色 SPMX-20240815316637 \N \N \N 1 \N [{"file_id": "9e8befdd-f51b-4a7f-8353-156cbb6c044b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57d2b89809284da092e34ba06dee2f0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57d2b89809284da092e34ba06dee2f0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57d2b89809284da092e34ba06dee2f0c.jpg", "file_size": 16932, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2b89809284da092e34ba06dee2f0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2b89809284da092e34ba06dee2f0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57d2b89809284da092e34ba06dee2f0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57d2b89809284da092e34ba06dee2f0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57d2b89809284da092e34ba06dee2f0c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q_S_JAa9o5Dg93leglV-i3Q87Ck=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.062304+00 2025-12-09 10:16:03.06231+00 21385 HXF0226#长款2XL SPMX-20240815316641 \N \N \N 1 \N [{"file_id": "c771f318-7d23-4027-a423-be44baed0213", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc6b276fbad54ab18a53c3bcb72896f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc6b276fbad54ab18a53c3bcb72896f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc6b276fbad54ab18a53c3bcb72896f6.jpg", "file_size": 28332, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#长款2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6b276fbad54ab18a53c3bcb72896f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6b276fbad54ab18a53c3bcb72896f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc6b276fbad54ab18a53c3bcb72896f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc6b276fbad54ab18a53c3bcb72896f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc6b276fbad54ab18a53c3bcb72896f6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VvmnyOcApjYoSK_XKdV2eYVci54=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.065772+00 2025-12-09 10:16:03.065778+00 21386 1277-1FWE#罗马批布 SPMX-20240815316634 \N \N \N 1 \N [{"file_id": "0ef3e47c-6160-4d86-b6f2-53d80c3769a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55fc506fedb84bbe8333af0676b9b80d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55fc506fedb84bbe8333af0676b9b80d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55fc506fedb84bbe8333af0676b9b80d.jpg", "file_size": 17859, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#罗马批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fc506fedb84bbe8333af0676b9b80d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fc506fedb84bbe8333af0676b9b80d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55fc506fedb84bbe8333af0676b9b80d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55fc506fedb84bbe8333af0676b9b80d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55fc506fedb84bbe8333af0676b9b80d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rOuClZomDI3GL9SK9PFYddF1F6A=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.069315+00 2025-12-09 10:16:03.069321+00 21387 24079#主色玫红 SPMX-20240815316635 \N \N \N 1 \N [{"file_id": "a6132ff4-c0bf-45f4-8d97-a9643c82a150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b425f83a47e4e05943b781892909126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b425f83a47e4e05943b781892909126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b425f83a47e4e05943b781892909126.jpg", "file_size": 47920, "is_delete": false, "file_type": 1, "original_file_name": "24079#主色玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b425f83a47e4e05943b781892909126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b425f83a47e4e05943b781892909126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b425f83a47e4e05943b781892909126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b425f83a47e4e05943b781892909126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b425f83a47e4e05943b781892909126.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vj-2df8Q8CqyPOh0Mr8Xqa9RftE=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.073152+00 2025-12-09 10:16:03.073157+00 21388 LJJ3187#-黑白M码 SPMX-20240815316638 \N \N \N 1 \N [{"file_id": "c2930679-f8c4-4cb2-8fea-ea229f9cb956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78cef38c316d4a01a374b85bb608077d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78cef38c316d4a01a374b85bb608077d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78cef38c316d4a01a374b85bb608077d.jpg", "file_size": 20391, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黑白M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cef38c316d4a01a374b85bb608077d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cef38c316d4a01a374b85bb608077d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78cef38c316d4a01a374b85bb608077d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78cef38c316d4a01a374b85bb608077d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78cef38c316d4a01a374b85bb608077d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-Vs7w64LZGmrNyNk1H2XIo9Sqjs=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.076899+00 2025-12-09 10:16:03.076907+00 21389 003FWE#抓毛-女M+童12码 SPMX-20240815316639 \N \N \N 1 \N [{"file_id": "dd098cba-7af5-4692-938c-88532719e76a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0b603a0bcb044d6b2ed7efbeb15d11d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0b603a0bcb044d6b2ed7efbeb15d11d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0b603a0bcb044d6b2ed7efbeb15d11d.jpg", "file_size": 12191, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女M+童12码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b603a0bcb044d6b2ed7efbeb15d11d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b603a0bcb044d6b2ed7efbeb15d11d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0b603a0bcb044d6b2ed7efbeb15d11d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0b603a0bcb044d6b2ed7efbeb15d11d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0b603a0bcb044d6b2ed7efbeb15d11d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1FmzSzXIaYngux9eI_PBBuXCuNQ=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.081716+00 2025-12-09 10:16:03.081724+00 21390 88380FWF#H黄色46码 SPMX-20240815316642 \N \N \N 1 \N [{"file_id": "ac8376a0-16a7-46f2-981c-062fa3d7fd2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf7cdb458415436d984012a79b257565.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf7cdb458415436d984012a79b257565.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf7cdb458415436d984012a79b257565.jpg", "file_size": 26083, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H黄色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7cdb458415436d984012a79b257565.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7cdb458415436d984012a79b257565.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf7cdb458415436d984012a79b257565.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf7cdb458415436d984012a79b257565.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf7cdb458415436d984012a79b257565.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dGpfvlJirtGyLlGWrcZQY3X5Nc4=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.086942+00 2025-12-09 10:16:03.086951+00 21391 1277-1FWE#豆沙2XL SPMX-20240815316645 \N \N \N 1 \N [{"file_id": "4f906b8d-ddfd-4849-a646-f38ec4f8696d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d20b7ba159fa408782b5f52fd176b759.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d20b7ba159fa408782b5f52fd176b759.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d20b7ba159fa408782b5f52fd176b759.jpg", "file_size": 18010, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#豆沙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d20b7ba159fa408782b5f52fd176b759.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d20b7ba159fa408782b5f52fd176b759.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d20b7ba159fa408782b5f52fd176b759.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d20b7ba159fa408782b5f52fd176b759.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d20b7ba159fa408782b5f52fd176b759.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LD8AA0NbAwncWKUWSFTaSsgAPZA=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.091019+00 2025-12-09 10:16:03.091027+00 21392 JY-DR-251#A料 SPMX-20240815316640 \N \N \N 1 \N [{"file_id": "b889ad9b-c576-44a4-9d84-6441fbcc73ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0592dcb025c4b1499352bd01c023990.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0592dcb025c4b1499352bd01c023990.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0592dcb025c4b1499352bd01c023990.jpg", "file_size": 69885, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0592dcb025c4b1499352bd01c023990.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0592dcb025c4b1499352bd01c023990.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0592dcb025c4b1499352bd01c023990.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0592dcb025c4b1499352bd01c023990.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0592dcb025c4b1499352bd01c023990.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3fwHqI7Ko9a1XCzkNP3S-D57Ge0=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.09525+00 2025-12-09 10:16:03.095257+00 21393 FX016#D SPMX-20240815316632 \N \N \N 1 \N [{"file_id": "90cd6efb-767a-413b-a3d3-458144b52396", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e580656de078405798b4b28675cff5ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e580656de078405798b4b28675cff5ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e580656de078405798b4b28675cff5ba.jpg", "file_size": 11076, "is_delete": false, "file_type": 1, "original_file_name": "FX016#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e580656de078405798b4b28675cff5ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e580656de078405798b4b28675cff5ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e580656de078405798b4b28675cff5ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e580656de078405798b4b28675cff5ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e580656de078405798b4b28675cff5ba.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8F-cX9x-l-lIoLdzHRSTDLLosj0=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.099259+00 2025-12-09 10:16:03.099266+00 21394 88380FWF#H黄色44码 SPMX-20240815316633 \N \N \N 1 \N [{"file_id": "d6765408-23bf-4693-8d51-78396b0c7d42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c02350974b564f029fa2d6e14f78b9b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c02350974b564f029fa2d6e14f78b9b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c02350974b564f029fa2d6e14f78b9b5.jpg", "file_size": 26206, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H黄色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02350974b564f029fa2d6e14f78b9b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02350974b564f029fa2d6e14f78b9b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c02350974b564f029fa2d6e14f78b9b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c02350974b564f029fa2d6e14f78b9b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c02350974b564f029fa2d6e14f78b9b5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YNBOiz8UqZddAGyYw3OGT6Lh-KI=", "createTime": "2024-08-15 15:10:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.103123+00 2025-12-09 10:16:03.10313+00 21395 CHG0323#白色 SPMX-20240815316644 \N \N \N 1 \N [{"file_id": "2eedcb71-5242-4e14-b47d-140b691e0b99", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88553e5e536f4309baa3351d092903c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88553e5e536f4309baa3351d092903c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88553e5e536f4309baa3351d092903c7.jpg", "file_size": 22941, "is_delete": false, "file_type": 1, "original_file_name": "CHG0323#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88553e5e536f4309baa3351d092903c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88553e5e536f4309baa3351d092903c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88553e5e536f4309baa3351d092903c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88553e5e536f4309baa3351d092903c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88553e5e536f4309baa3351d092903c7.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6Cl0dsoFUA018PYDZZv8LtpIT1Y=", "createTime": "2024-08-15 15:10:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.106876+00 2025-12-09 10:16:03.106882+00 21396 24079-2#主色玫红 SPMX-20240815316651 \N \N \N 1 \N [{"file_id": "58923af0-2369-4111-b552-dbb058168607", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6280f3847736430f84630d92481f7d3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6280f3847736430f84630d92481f7d3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6280f3847736430f84630d92481f7d3d.jpg", "file_size": 47693, "is_delete": false, "file_type": 1, "original_file_name": "24079-2#主色玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6280f3847736430f84630d92481f7d3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6280f3847736430f84630d92481f7d3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6280f3847736430f84630d92481f7d3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6280f3847736430f84630d92481f7d3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6280f3847736430f84630d92481f7d3d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7dAT18hBXiVc_cdUwtfcqREH1jU=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.110576+00 2025-12-09 10:16:03.110582+00 21397 1277-1FWE#豆沙L SPMX-20240815316656 \N \N \N 1 \N [{"file_id": "0fb292d2-6382-4641-bab1-cbf4c4665631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d69fc1feebf4eb794f9fc8c29601a36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d69fc1feebf4eb794f9fc8c29601a36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d69fc1feebf4eb794f9fc8c29601a36.jpg", "file_size": 17646, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#豆沙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69fc1feebf4eb794f9fc8c29601a36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69fc1feebf4eb794f9fc8c29601a36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d69fc1feebf4eb794f9fc8c29601a36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d69fc1feebf4eb794f9fc8c29601a36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d69fc1feebf4eb794f9fc8c29601a36.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6TDQzjYJF3RyL6PcnYv1m8RxvL4=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.114307+00 2025-12-09 10:16:03.114313+00 21398 HXF0226#长款L SPMX-20240815316652 \N \N \N 1 \N [{"file_id": "24d42dc3-c402-4098-849f-405f8ed0dda3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1041a8ec22e24f099cfd9e5585ea35d5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1041a8ec22e24f099cfd9e5585ea35d5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1041a8ec22e24f099cfd9e5585ea35d5.jpg", "file_size": 27495, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#长款L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1041a8ec22e24f099cfd9e5585ea35d5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1041a8ec22e24f099cfd9e5585ea35d5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1041a8ec22e24f099cfd9e5585ea35d5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1041a8ec22e24f099cfd9e5585ea35d5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1041a8ec22e24f099cfd9e5585ea35d5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7pV4OsJC0a5UK3jBn36J0DV-yx4=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.118099+00 2025-12-09 10:16:03.118105+00 21399 JY-DR-251#A料1#浅杏底黑 SPMX-20240815316648 \N \N \N 1 \N [{"file_id": "50e16886-6da3-4013-b23c-736135a5db47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c851d832f0844363ab456c49def3330f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c851d832f0844363ab456c49def3330f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c851d832f0844363ab456c49def3330f.jpg", "file_size": 63207, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料1#浅杏底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c851d832f0844363ab456c49def3330f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c851d832f0844363ab456c49def3330f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c851d832f0844363ab456c49def3330f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c851d832f0844363ab456c49def3330f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c851d832f0844363ab456c49def3330f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VtGKKUeW_psiYEq7cZbRb1XjYcs=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.121489+00 2025-12-09 10:16:03.121496+00 21400 LZ1427#大人T5号色 SPMX-20240815316658 \N \N \N 1 \N [{"file_id": "276ac5c1-e28a-4ced-a6f7-0f726260b387", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "668747c6c05c4cb9846330f5154d38c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "668747c6c05c4cb9846330f5154d38c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "668747c6c05c4cb9846330f5154d38c6.jpg", "file_size": 18725, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668747c6c05c4cb9846330f5154d38c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668747c6c05c4cb9846330f5154d38c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/668747c6c05c4cb9846330f5154d38c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/668747c6c05c4cb9846330f5154d38c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/668747c6c05c4cb9846330f5154d38c6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W57fFVr27z3tP_kvviBvWN7H64Q=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.12495+00 2025-12-09 10:16:03.124957+00 21401 003FWE#抓毛-女S SPMX-20240815316659 \N \N \N 1 \N [{"file_id": "6d7d69ce-41ac-4731-9b45-163c88ef8287", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8abf858ad7174ed38ecb02cd71e3f74c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8abf858ad7174ed38ecb02cd71e3f74c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8abf858ad7174ed38ecb02cd71e3f74c.jpg", "file_size": 11162, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abf858ad7174ed38ecb02cd71e3f74c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abf858ad7174ed38ecb02cd71e3f74c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8abf858ad7174ed38ecb02cd71e3f74c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8abf858ad7174ed38ecb02cd71e3f74c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8abf858ad7174ed38ecb02cd71e3f74c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1uMt9jQei4nnzgKM-xIMZTTgKc=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.128434+00 2025-12-09 10:16:03.128442+00 21402 LJJ3187#-黑红L码 SPMX-20240815316650 \N \N \N 1 \N [{"file_id": "d258a52e-9cf6-43b5-acbb-4aa932e59948", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f7acc3ba73445f3a54c0a122106f02c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f7acc3ba73445f3a54c0a122106f02c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f7acc3ba73445f3a54c0a122106f02c.jpg", "file_size": 17463, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黑红L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7acc3ba73445f3a54c0a122106f02c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7acc3ba73445f3a54c0a122106f02c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f7acc3ba73445f3a54c0a122106f02c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f7acc3ba73445f3a54c0a122106f02c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f7acc3ba73445f3a54c0a122106f02c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XmY2dQdJy77okGSw7_eEgdQr2Zo=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.131905+00 2025-12-09 10:16:03.131912+00 21403 003FWE#抓毛-女M SPMX-20240815316649 \N \N \N 1 \N [{"file_id": "7e0723a0-3641-42ec-8a25-b0d3580ad6a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76fb0962b5074a2e9fbd954e7e4dad17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76fb0962b5074a2e9fbd954e7e4dad17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76fb0962b5074a2e9fbd954e7e4dad17.jpg", "file_size": 11875, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fb0962b5074a2e9fbd954e7e4dad17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fb0962b5074a2e9fbd954e7e4dad17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76fb0962b5074a2e9fbd954e7e4dad17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76fb0962b5074a2e9fbd954e7e4dad17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76fb0962b5074a2e9fbd954e7e4dad17.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88No5QqBNRGVzkbsomp0GNnZAy8=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.135303+00 2025-12-09 10:16:03.13531+00 21404 LZ1427#大人T4号色 SPMX-20240815316647 \N \N \N 1 \N [{"file_id": "30bf2ac3-b131-430a-be53-172cdef4f046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "351cb29f26f84a398de94fd11a5b6f7e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "351cb29f26f84a398de94fd11a5b6f7e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "351cb29f26f84a398de94fd11a5b6f7e.jpg", "file_size": 20031, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351cb29f26f84a398de94fd11a5b6f7e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351cb29f26f84a398de94fd11a5b6f7e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/351cb29f26f84a398de94fd11a5b6f7e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/351cb29f26f84a398de94fd11a5b6f7e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/351cb29f26f84a398de94fd11a5b6f7e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ONIm1VYI0W4Hk305EBU4-YHywlY=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.138851+00 2025-12-09 10:16:03.138857+00 21405 FX016#VS-D3 SPMX-20240815316654 \N \N \N 1 \N [{"file_id": "c94a894a-aa55-4e41-a20a-b65ca01ef245", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d77bd98f6ce4d5fb6b555a4dc29a470.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d77bd98f6ce4d5fb6b555a4dc29a470.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d77bd98f6ce4d5fb6b555a4dc29a470.jpg", "file_size": 27154, "is_delete": false, "file_type": 1, "original_file_name": "FX016#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77bd98f6ce4d5fb6b555a4dc29a470.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77bd98f6ce4d5fb6b555a4dc29a470.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77bd98f6ce4d5fb6b555a4dc29a470.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d77bd98f6ce4d5fb6b555a4dc29a470.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d77bd98f6ce4d5fb6b555a4dc29a470.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uhyISriUIMGDicPU5AP_m1HKJCk=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.142273+00 2025-12-09 10:16:03.142279+00 21406 DM9229#RC23 SPMX-20240815316646 \N \N \N 1 \N [{"file_id": "c2e33779-e833-4e81-9f37-93c033fca2b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70ead1af75a64a87817a44a2ef0bbe9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70ead1af75a64a87817a44a2ef0bbe9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70ead1af75a64a87817a44a2ef0bbe9c.jpg", "file_size": 67705, "is_delete": false, "file_type": 1, "original_file_name": "DM9229#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ead1af75a64a87817a44a2ef0bbe9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ead1af75a64a87817a44a2ef0bbe9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70ead1af75a64a87817a44a2ef0bbe9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70ead1af75a64a87817a44a2ef0bbe9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70ead1af75a64a87817a44a2ef0bbe9c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FUbHjtDAonS9V_bMkbfBogc6l_Y=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.145747+00 2025-12-09 10:16:03.145754+00 21407 88380FWF#H黄色48码 SPMX-20240815316653 \N \N \N 1 \N [{"file_id": "120016ac-7234-4054-8c36-958af307dfce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d1de4a9d0b64247aac98ddcc2b64ad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d1de4a9d0b64247aac98ddcc2b64ad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d1de4a9d0b64247aac98ddcc2b64ad1.jpg", "file_size": 26571, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H黄色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d1de4a9d0b64247aac98ddcc2b64ad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d1de4a9d0b64247aac98ddcc2b64ad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d1de4a9d0b64247aac98ddcc2b64ad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d1de4a9d0b64247aac98ddcc2b64ad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d1de4a9d0b64247aac98ddcc2b64ad1.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzctHIYwVbk4WgA9IFsBgR7dWPU=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.149158+00 2025-12-09 10:16:03.149164+00 21408 CHG0323#蓝色 SPMX-20240815316655 \N \N \N 1 \N [{"file_id": "a2b26ea9-6ace-4683-8014-1bc2d79c767d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a689c777d8d47aa808d8f7d2bfd59a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a689c777d8d47aa808d8f7d2bfd59a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a689c777d8d47aa808d8f7d2bfd59a6.jpg", "file_size": 20818, "is_delete": false, "file_type": 1, "original_file_name": "CHG0323#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a689c777d8d47aa808d8f7d2bfd59a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a689c777d8d47aa808d8f7d2bfd59a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a689c777d8d47aa808d8f7d2bfd59a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a689c777d8d47aa808d8f7d2bfd59a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a689c777d8d47aa808d8f7d2bfd59a6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0nIGtriBRA3J33gzGRNvDt46yrY=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.152627+00 2025-12-09 10:16:03.152633+00 21409 DM9238#RC23 SPMX-20240815316657 \N \N \N 1 \N [{"file_id": "5b476ea8-c0d4-4dfc-8027-53dde60ae4bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546ec77b6179408da3fc1be10e8fd11c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546ec77b6179408da3fc1be10e8fd11c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546ec77b6179408da3fc1be10e8fd11c.jpg", "file_size": 78628, "is_delete": false, "file_type": 1, "original_file_name": "DM9238#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ec77b6179408da3fc1be10e8fd11c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ec77b6179408da3fc1be10e8fd11c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546ec77b6179408da3fc1be10e8fd11c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546ec77b6179408da3fc1be10e8fd11c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546ec77b6179408da3fc1be10e8fd11c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FPj5T3R0LDZRJ_UlqvLYushBS_k=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.156041+00 2025-12-09 10:16:03.156047+00 21410 LJJ3187#-黑红M码 SPMX-20240815316660 \N \N \N 1 \N [{"file_id": "87043935-846e-4151-9f48-710d695904ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "090d3643107a4eefa07fd5e7855bee5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "090d3643107a4eefa07fd5e7855bee5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "090d3643107a4eefa07fd5e7855bee5b.jpg", "file_size": 17607, "is_delete": false, "file_type": 1, "original_file_name": "LJJ3187#-黑红M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090d3643107a4eefa07fd5e7855bee5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090d3643107a4eefa07fd5e7855bee5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/090d3643107a4eefa07fd5e7855bee5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/090d3643107a4eefa07fd5e7855bee5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/090d3643107a4eefa07fd5e7855bee5b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCnEU0CSen0zMxC43tfxgy-iS5Q=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.160135+00 2025-12-09 10:16:03.160141+00 21411 DM9331#1XL SPMX-20240815316669 \N \N \N 1 \N [{"file_id": "043aeaf1-f271-412c-86d8-493174380a7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4024b923f5c84c52b640c28723f5ec45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4024b923f5c84c52b640c28723f5ec45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4024b923f5c84c52b640c28723f5ec45.jpg", "file_size": 56788, "is_delete": false, "file_type": 1, "original_file_name": "DM9331#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4024b923f5c84c52b640c28723f5ec45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4024b923f5c84c52b640c28723f5ec45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4024b923f5c84c52b640c28723f5ec45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4024b923f5c84c52b640c28723f5ec45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4024b923f5c84c52b640c28723f5ec45.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5bXsB9lWhmIUPa2ySRlvKRaQzOg=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.164005+00 2025-12-09 10:16:03.16401+00 21412 CHG0323#黄色 SPMX-20240815316666 \N \N \N 1 \N [{"file_id": "e2338d27-66e3-46e1-8fc8-b87e58ea4d6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e508f08efd50483e820b2eee672623d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e508f08efd50483e820b2eee672623d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e508f08efd50483e820b2eee672623d3.jpg", "file_size": 22249, "is_delete": false, "file_type": 1, "original_file_name": "CHG0323#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e508f08efd50483e820b2eee672623d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e508f08efd50483e820b2eee672623d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e508f08efd50483e820b2eee672623d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e508f08efd50483e820b2eee672623d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e508f08efd50483e820b2eee672623d3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MuvNirrg30MgeR5alnflFl71TlQ=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.167798+00 2025-12-09 10:16:03.167807+00 21413 FX016#紫 SPMX-20240815316664 \N \N \N 1 \N [{"file_id": "b7220fbb-5237-4f40-b7f1-22a4a10698d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e1deabcb9f6449ca79d3fef7f5427a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e1deabcb9f6449ca79d3fef7f5427a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e1deabcb9f6449ca79d3fef7f5427a2.jpg", "file_size": 9614, "is_delete": false, "file_type": 1, "original_file_name": "FX016#紫.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1deabcb9f6449ca79d3fef7f5427a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1deabcb9f6449ca79d3fef7f5427a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e1deabcb9f6449ca79d3fef7f5427a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e1deabcb9f6449ca79d3fef7f5427a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e1deabcb9f6449ca79d3fef7f5427a2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a2QMUQT976ZSuHQWWzy6F9pQ6tM=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.171358+00 2025-12-09 10:16:03.171364+00 21414 88380FWF#H黄色50码 SPMX-20240815316662 \N \N \N 1 \N [{"file_id": "10a43215-2aa8-459a-8e8d-d4e9e1ea3a40", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58b08f6123ac4c13b0219dd09a3e1d05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58b08f6123ac4c13b0219dd09a3e1d05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58b08f6123ac4c13b0219dd09a3e1d05.jpg", "file_size": 27060, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#H黄色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b08f6123ac4c13b0219dd09a3e1d05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b08f6123ac4c13b0219dd09a3e1d05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b08f6123ac4c13b0219dd09a3e1d05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58b08f6123ac4c13b0219dd09a3e1d05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58b08f6123ac4c13b0219dd09a3e1d05.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uIcdrolIqz2Z88TTeoVMRxdivBE=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.174807+00 2025-12-09 10:16:03.174814+00 21415 1277-1FWE#豆沙XL SPMX-20240815316667 \N \N \N 1 \N [{"file_id": "2c2d995f-5654-4daa-b131-e083788de7c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8fe2f7a39c34d27b0478632ab5565a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8fe2f7a39c34d27b0478632ab5565a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8fe2f7a39c34d27b0478632ab5565a6.jpg", "file_size": 18096, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#豆沙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fe2f7a39c34d27b0478632ab5565a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fe2f7a39c34d27b0478632ab5565a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8fe2f7a39c34d27b0478632ab5565a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8fe2f7a39c34d27b0478632ab5565a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8fe2f7a39c34d27b0478632ab5565a6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Il9sDBHtW6mWyau84baQnd3bH4Y=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.178289+00 2025-12-09 10:16:03.178295+00 21416 LZ1427#童装T1号色 SPMX-20240815316668 \N \N \N 1 \N [{"file_id": "a5b46818-dc97-4245-ac25-66d8e015f703", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee504af7e88e458890212ac9ac9b43d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee504af7e88e458890212ac9ac9b43d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee504af7e88e458890212ac9ac9b43d7.jpg", "file_size": 22966, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#童装T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee504af7e88e458890212ac9ac9b43d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee504af7e88e458890212ac9ac9b43d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee504af7e88e458890212ac9ac9b43d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee504af7e88e458890212ac9ac9b43d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee504af7e88e458890212ac9ac9b43d7.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o5fyitWkBp6hujdhx_uWu5D2w18=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.181771+00 2025-12-09 10:16:03.181777+00 21417 JY-DR-251#A料1#黑底杏色 SPMX-20240815316661 \N \N \N 1 \N [{"file_id": "012aa1c7-3400-4950-be9a-efad022d7d7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "618caace89054a44909054f5c950aeb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "618caace89054a44909054f5c950aeb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "618caace89054a44909054f5c950aeb0.jpg", "file_size": 63283, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料1#黑底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618caace89054a44909054f5c950aeb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618caace89054a44909054f5c950aeb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/618caace89054a44909054f5c950aeb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/618caace89054a44909054f5c950aeb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/618caace89054a44909054f5c950aeb0.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ickng1PwZ4cv-L0yWdHgI7dRTo4=", "createTime": "2024-08-15 15:10:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.185485+00 2025-12-09 10:16:03.185492+00 21418 HXF0226#长款M SPMX-20240815316663 \N \N \N 1 \N [{"file_id": "c5b5dee8-ab6f-40b1-a3f9-699cbca0380e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47b0cbb6d32546038bd5e80c8610fbe5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47b0cbb6d32546038bd5e80c8610fbe5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47b0cbb6d32546038bd5e80c8610fbe5.jpg", "file_size": 27049, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#长款M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b0cbb6d32546038bd5e80c8610fbe5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b0cbb6d32546038bd5e80c8610fbe5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47b0cbb6d32546038bd5e80c8610fbe5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47b0cbb6d32546038bd5e80c8610fbe5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47b0cbb6d32546038bd5e80c8610fbe5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fz-Fx7jruNSSkNHt1C-khKOqSc8=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.191377+00 2025-12-09 10:16:03.191384+00 21419 241#-定位裁-卡其 SPMX-20240815316665 \N \N \N 1 \N [{"file_id": "f965633c-5fcf-4d80-a788-df6547269f1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c04d29777a834079bf98f5634f259fd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c04d29777a834079bf98f5634f259fd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c04d29777a834079bf98f5634f259fd8.jpg", "file_size": 67250, "is_delete": false, "file_type": 1, "original_file_name": "241#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d29777a834079bf98f5634f259fd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d29777a834079bf98f5634f259fd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c04d29777a834079bf98f5634f259fd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c04d29777a834079bf98f5634f259fd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c04d29777a834079bf98f5634f259fd8.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19v_BmKoVcAi4tV_jJYZX3CBn2I=", "createTime": "2024-08-15 15:10:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.196218+00 2025-12-09 10:16:03.196225+00 21420 CHiC139#13号色-21码 SPMX-20240815316673 \N \N \N 1 \N [{"file_id": "c934265e-a5c5-496f-83e3-87dfb7a209fd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3abb15ec3fda4fcd887ec59aa161776b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3abb15ec3fda4fcd887ec59aa161776b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3abb15ec3fda4fcd887ec59aa161776b.jpg", "file_size": 44107, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abb15ec3fda4fcd887ec59aa161776b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abb15ec3fda4fcd887ec59aa161776b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abb15ec3fda4fcd887ec59aa161776b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3abb15ec3fda4fcd887ec59aa161776b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3abb15ec3fda4fcd887ec59aa161776b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a1aog4014R9lWzTYDIakFmNOVV0=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.199687+00 2025-12-09 10:16:03.199694+00 21421 DM9331#2XL SPMX-20240815316680 \N \N \N 1 \N [{"file_id": "f7413234-3eb9-496d-abc0-4711221d13c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef4154e1486842c3aed6bb07bbd15f10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef4154e1486842c3aed6bb07bbd15f10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef4154e1486842c3aed6bb07bbd15f10.jpg", "file_size": 55850, "is_delete": false, "file_type": 1, "original_file_name": "DM9331#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4154e1486842c3aed6bb07bbd15f10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4154e1486842c3aed6bb07bbd15f10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef4154e1486842c3aed6bb07bbd15f10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef4154e1486842c3aed6bb07bbd15f10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef4154e1486842c3aed6bb07bbd15f10.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ON0GJimvylMaAP9WB8itUCiVCY0=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.203399+00 2025-12-09 10:16:03.203407+00 21422 1277-1FWE#雪纺批布 SPMX-20240815316675 \N \N \N 1 \N [{"file_id": "77493d5b-68fa-48f7-91e5-4042dd4106e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3962f712321148dab894a33a82e62fcc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3962f712321148dab894a33a82e62fcc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3962f712321148dab894a33a82e62fcc.jpg", "file_size": 17784, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#雪纺批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3962f712321148dab894a33a82e62fcc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3962f712321148dab894a33a82e62fcc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3962f712321148dab894a33a82e62fcc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3962f712321148dab894a33a82e62fcc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3962f712321148dab894a33a82e62fcc.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4-sb4AQHHwzGwE9_nxBrpvZTHc8=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.207034+00 2025-12-09 10:16:03.20704+00 21423 LJJ712-3186#白+草绿L码 SPMX-20240815316670 \N \N \N 1 \N [{"file_id": "89b24b10-f575-416e-aa46-a60192d6d9e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90135fca695b4870815f4bd824b4ea4d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90135fca695b4870815f4bd824b4ea4d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90135fca695b4870815f4bd824b4ea4d.jpg", "file_size": 15905, "is_delete": false, "file_type": 1, "original_file_name": "LJJ712-3186#白+草绿L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90135fca695b4870815f4bd824b4ea4d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90135fca695b4870815f4bd824b4ea4d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90135fca695b4870815f4bd824b4ea4d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90135fca695b4870815f4bd824b4ea4d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90135fca695b4870815f4bd824b4ea4d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SnCuj5sT6K7MKxiOTQKXPrRS9N8=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.210595+00 2025-12-09 10:16:03.210601+00 21424 88380FWF#J彩兰42码 SPMX-20240815316674 \N \N \N 1 \N [{"file_id": "04957141-d418-4e22-a954-af1d91625c2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9bd3ce928fac4b8bb287445172a68a09.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9bd3ce928fac4b8bb287445172a68a09.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9bd3ce928fac4b8bb287445172a68a09.jpg", "file_size": 23942, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J彩兰42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd3ce928fac4b8bb287445172a68a09.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd3ce928fac4b8bb287445172a68a09.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9bd3ce928fac4b8bb287445172a68a09.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9bd3ce928fac4b8bb287445172a68a09.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9bd3ce928fac4b8bb287445172a68a09.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bhbq8Sw_jus1hkJYPZGAmloaPow=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.214007+00 2025-12-09 10:16:03.214014+00 21425 FX016FW#VS-D3 SPMX-20240815316677 \N \N \N 1 \N [{"file_id": "1ff0de38-f671-4b2e-af03-646daf6680d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "932c9352e8bf438682796f618358d74a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "932c9352e8bf438682796f618358d74a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "932c9352e8bf438682796f618358d74a.jpg", "file_size": 7771, "is_delete": false, "file_type": 1, "original_file_name": "FX016FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932c9352e8bf438682796f618358d74a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932c9352e8bf438682796f618358d74a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/932c9352e8bf438682796f618358d74a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/932c9352e8bf438682796f618358d74a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/932c9352e8bf438682796f618358d74a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vcJB2nxYrj3XH13kyqzHXRfmM88=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.217501+00 2025-12-09 10:16:03.217508+00 21426 JY-DR-251#A料10#杏底黑 SPMX-20240815316672 \N \N \N 1 \N [{"file_id": "67a813c0-a76b-4815-9d72-155d6a39cf5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e440837ce0b4fcf92c63fb65cb798bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e440837ce0b4fcf92c63fb65cb798bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e440837ce0b4fcf92c63fb65cb798bf.jpg", "file_size": 33920, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料10#杏底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e440837ce0b4fcf92c63fb65cb798bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e440837ce0b4fcf92c63fb65cb798bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e440837ce0b4fcf92c63fb65cb798bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e440837ce0b4fcf92c63fb65cb798bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e440837ce0b4fcf92c63fb65cb798bf.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mwN9J5C-cPGID1kAsdK0r0Gdbmc=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.221004+00 2025-12-09 10:16:03.221012+00 21427 LZ1427#童装T2号色 SPMX-20240815316676 \N \N \N 1 \N [{"file_id": "dcadb40f-b70e-4767-842f-7739c16b1b2b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "59b21fc5978f4aad90b134a2a852dee9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "59b21fc5978f4aad90b134a2a852dee9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "59b21fc5978f4aad90b134a2a852dee9.jpg", "file_size": 24503, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b21fc5978f4aad90b134a2a852dee9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b21fc5978f4aad90b134a2a852dee9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/59b21fc5978f4aad90b134a2a852dee9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/59b21fc5978f4aad90b134a2a852dee9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/59b21fc5978f4aad90b134a2a852dee9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KN3xAxnnb33KQDJxaIfEtdGDTXU=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.224628+00 2025-12-09 10:16:03.224635+00 21428 241#-定位裁-橙色 SPMX-20240815316679 \N \N \N 1 \N [{"file_id": "7db0944c-a778-43f2-8eca-66354fe1fcbe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6174d9cdb4d24197ba8a333a41ea0751.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6174d9cdb4d24197ba8a333a41ea0751.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6174d9cdb4d24197ba8a333a41ea0751.jpg", "file_size": 68950, "is_delete": false, "file_type": 1, "original_file_name": "241#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174d9cdb4d24197ba8a333a41ea0751.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174d9cdb4d24197ba8a333a41ea0751.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6174d9cdb4d24197ba8a333a41ea0751.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6174d9cdb4d24197ba8a333a41ea0751.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6174d9cdb4d24197ba8a333a41ea0751.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9p-RW5Se2YQlgDTNSf8173zm4ZU=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.228793+00 2025-12-09 10:16:03.228801+00 21429 HXF0226#长款XL SPMX-20240815316678 \N \N \N 1 \N [{"file_id": "58009969-c9f3-45b9-acba-647fa287903f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56810269b96f4fddb9440506201888fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56810269b96f4fddb9440506201888fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56810269b96f4fddb9440506201888fb.jpg", "file_size": 28015, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#长款XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56810269b96f4fddb9440506201888fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56810269b96f4fddb9440506201888fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56810269b96f4fddb9440506201888fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56810269b96f4fddb9440506201888fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56810269b96f4fddb9440506201888fb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TqoEJUlUMNPyyHEHa1NFYHwESZA=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.233031+00 2025-12-09 10:16:03.233037+00 21430 003FWE#抓毛-女XL+童8码 SPMX-20240815316671 \N \N \N 1 \N [{"file_id": "b26e64b2-b5cb-453e-8d78-5fcf9f56a0cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4bd1376db39413eb14522289d216748.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4bd1376db39413eb14522289d216748.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4bd1376db39413eb14522289d216748.jpg", "file_size": 12406, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-女XL+童8码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bd1376db39413eb14522289d216748.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bd1376db39413eb14522289d216748.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4bd1376db39413eb14522289d216748.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4bd1376db39413eb14522289d216748.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4bd1376db39413eb14522289d216748.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_8pXPYpXGlBK_vMd-yTPbuuoAPE=", "createTime": "2024-08-15 15:10:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.237089+00 2025-12-09 10:16:03.237094+00 21431 HXF0226#长款净色 SPMX-20240815316688 \N \N \N 1 \N [{"file_id": "c730f745-5868-4d99-aab3-122206c7a1c0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5486df59d8f6411483925affde7e760c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5486df59d8f6411483925affde7e760c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5486df59d8f6411483925affde7e760c.jpg", "file_size": 7080, "is_delete": false, "file_type": 1, "original_file_name": "HXF0226#长款净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5486df59d8f6411483925affde7e760c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5486df59d8f6411483925affde7e760c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5486df59d8f6411483925affde7e760c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5486df59d8f6411483925affde7e760c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5486df59d8f6411483925affde7e760c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MYrVKSBXQjOTafgyYDYCfSgpQrE=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.240805+00 2025-12-09 10:16:03.24081+00 21432 CHiC139#13号色-22码 SPMX-20240815316683 \N \N \N 1 \N [{"file_id": "8ebfc10a-572a-4458-8dce-5fa607fc6412", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1a5617f8bb34edd95e27de56c5e9590.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1a5617f8bb34edd95e27de56c5e9590.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1a5617f8bb34edd95e27de56c5e9590.jpg", "file_size": 45344, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a5617f8bb34edd95e27de56c5e9590.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a5617f8bb34edd95e27de56c5e9590.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1a5617f8bb34edd95e27de56c5e9590.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1a5617f8bb34edd95e27de56c5e9590.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1a5617f8bb34edd95e27de56c5e9590.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ClHrNUd9ZDmTQwJuPnKtqDiSSkA=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.244353+00 2025-12-09 10:16:03.244358+00 21433 88380FWF#J彩兰44码 SPMX-20240815316684 \N \N \N 1 \N [{"file_id": "af071442-5c1c-43fa-9712-2be79ef014e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fae15b43f5e14ea8a148bfcf3e4b274a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fae15b43f5e14ea8a148bfcf3e4b274a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fae15b43f5e14ea8a148bfcf3e4b274a.jpg", "file_size": 24924, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J彩兰44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae15b43f5e14ea8a148bfcf3e4b274a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae15b43f5e14ea8a148bfcf3e4b274a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae15b43f5e14ea8a148bfcf3e4b274a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fae15b43f5e14ea8a148bfcf3e4b274a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fae15b43f5e14ea8a148bfcf3e4b274a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C9VR7EIcctVfQE-7TiBuSXAS4Z4=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.247769+00 2025-12-09 10:16:03.247774+00 21434 DM9331#3XL SPMX-20240815316690 \N \N \N 1 \N [{"file_id": "4f66b227-a038-46ff-810a-7624db1b95be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "744b7ef52cb34724ab572addc577b6bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "744b7ef52cb34724ab572addc577b6bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "744b7ef52cb34724ab572addc577b6bc.jpg", "file_size": 52828, "is_delete": false, "file_type": 1, "original_file_name": "DM9331#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744b7ef52cb34724ab572addc577b6bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744b7ef52cb34724ab572addc577b6bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/744b7ef52cb34724ab572addc577b6bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/744b7ef52cb34724ab572addc577b6bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/744b7ef52cb34724ab572addc577b6bc.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LTZhoh5CO5GgQ3IdqYNYYpo4g-c=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.251045+00 2025-12-09 10:16:03.25105+00 21435 241#-定位裁-白色 SPMX-20240815316691 \N \N \N 1 \N [{"file_id": "6b6cf3a5-f4e6-4106-b3d2-1ed67318a62e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "147dfd1de2ad4aba82d90f60fc157040.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "147dfd1de2ad4aba82d90f60fc157040.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "147dfd1de2ad4aba82d90f60fc157040.jpg", "file_size": 63510, "is_delete": false, "file_type": 1, "original_file_name": "241#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dfd1de2ad4aba82d90f60fc157040.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dfd1de2ad4aba82d90f60fc157040.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/147dfd1de2ad4aba82d90f60fc157040.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/147dfd1de2ad4aba82d90f60fc157040.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/147dfd1de2ad4aba82d90f60fc157040.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzpcjaxOI94i39x6vfi5UWXM0s0=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.25434+00 2025-12-09 10:16:03.254344+00 21436 JY-DR-251#A料10#杏底黑色 SPMX-20240815316687 \N \N \N 1 \N [{"file_id": "cb825843-780c-47b8-baa9-2da850744f54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80167dc4312a4ba5b6d252ef7d0fb6df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80167dc4312a4ba5b6d252ef7d0fb6df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80167dc4312a4ba5b6d252ef7d0fb6df.jpg", "file_size": 65522, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料10#杏底黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80167dc4312a4ba5b6d252ef7d0fb6df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80167dc4312a4ba5b6d252ef7d0fb6df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80167dc4312a4ba5b6d252ef7d0fb6df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80167dc4312a4ba5b6d252ef7d0fb6df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80167dc4312a4ba5b6d252ef7d0fb6df.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Tzn_43l3dwkvLqTooisWWPXwFc=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.257816+00 2025-12-09 10:16:03.257822+00 21437 003FWE#抓毛-男2XL SPMX-20240815316682 \N \N \N 1 \N [{"file_id": "6ef88995-a60f-43e2-8956-9e8d84124121", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfd5c287cab544bfafaeeb04cb474cc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfd5c287cab544bfafaeeb04cb474cc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfd5c287cab544bfafaeeb04cb474cc4.jpg", "file_size": 17093, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-男2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfd5c287cab544bfafaeeb04cb474cc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfd5c287cab544bfafaeeb04cb474cc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfd5c287cab544bfafaeeb04cb474cc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfd5c287cab544bfafaeeb04cb474cc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfd5c287cab544bfafaeeb04cb474cc4.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vn_qCHg64QPjt4wz4-bB1fa0-a8=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.261444+00 2025-12-09 10:16:03.261451+00 21438 FX016FWE#VS-D3 SPMX-20240815316689 \N \N \N 1 \N [{"file_id": "f2a98599-3ae4-45d7-9eea-e626c4825407", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d683eeaceae4a51b45f5a3425843dd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d683eeaceae4a51b45f5a3425843dd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d683eeaceae4a51b45f5a3425843dd9.jpg", "file_size": 17958, "is_delete": false, "file_type": 1, "original_file_name": "FX016FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d683eeaceae4a51b45f5a3425843dd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d683eeaceae4a51b45f5a3425843dd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d683eeaceae4a51b45f5a3425843dd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d683eeaceae4a51b45f5a3425843dd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d683eeaceae4a51b45f5a3425843dd9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EdaoS-Otf_FH0DSgLGqJ5dvcsyk=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.265165+00 2025-12-09 10:16:03.26517+00 21439 LZ1427#童装T3号色 SPMX-20240815316685 \N \N \N 1 \N [{"file_id": "10e11c85-6da4-4b25-8ffe-6e8a5d874ee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "642c7579fd66406b98d30cabca2f87de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "642c7579fd66406b98d30cabca2f87de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "642c7579fd66406b98d30cabca2f87de.jpg", "file_size": 21400, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642c7579fd66406b98d30cabca2f87de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642c7579fd66406b98d30cabca2f87de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/642c7579fd66406b98d30cabca2f87de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/642c7579fd66406b98d30cabca2f87de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/642c7579fd66406b98d30cabca2f87de.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yFTm8xRnIVkNPmnhGtYfp51g6Os=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.268666+00 2025-12-09 10:16:03.268671+00 21440 1277-1FWE#黄色2XL SPMX-20240815316686 \N \N \N 1 \N [{"file_id": "462d558a-318b-48cf-896f-94e0d1a9aa50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fa18b7ed1e34332aeadd38133101389.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fa18b7ed1e34332aeadd38133101389.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fa18b7ed1e34332aeadd38133101389.jpg", "file_size": 18554, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fa18b7ed1e34332aeadd38133101389.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fa18b7ed1e34332aeadd38133101389.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fa18b7ed1e34332aeadd38133101389.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fa18b7ed1e34332aeadd38133101389.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fa18b7ed1e34332aeadd38133101389.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:U4NgF8etM_k0z11Pk-gTXQUEOXc=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.272311+00 2025-12-09 10:16:03.272317+00 21441 LJJR010-F#绿2XL VS-D3 SPMX-20240815316681 \N \N \N 1 \N [{"file_id": "d076da75-f04c-44f8-9785-ad93e4a0a69c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3669e8af545349298590f41f7c1434f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3669e8af545349298590f41f7c1434f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3669e8af545349298590f41f7c1434f8.jpg", "file_size": 17578, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3669e8af545349298590f41f7c1434f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3669e8af545349298590f41f7c1434f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3669e8af545349298590f41f7c1434f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3669e8af545349298590f41f7c1434f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3669e8af545349298590f41f7c1434f8.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-cKTwgNztIJWuVSWiWLZfM5cEQ=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.276089+00 2025-12-09 10:16:03.276095+00 21442 241#-定位裁-黄色 SPMX-20240815316700 \N \N \N 1 \N [{"file_id": "6a8fd3e7-8cb7-4130-abec-d63e3095ae2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30c6b1e6b4024b049ae37aa67a12e668.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30c6b1e6b4024b049ae37aa67a12e668.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30c6b1e6b4024b049ae37aa67a12e668.jpg", "file_size": 68181, "is_delete": false, "file_type": 1, "original_file_name": "241#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c6b1e6b4024b049ae37aa67a12e668.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c6b1e6b4024b049ae37aa67a12e668.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30c6b1e6b4024b049ae37aa67a12e668.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30c6b1e6b4024b049ae37aa67a12e668.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30c6b1e6b4024b049ae37aa67a12e668.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CNjprDXB_zzbDoDL-ODf1CrjYIs=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.279885+00 2025-12-09 10:16:03.279891+00 21443 CHiC139#13号色-23码 SPMX-20240815316692 \N \N \N 1 \N [{"file_id": "21517934-5e1c-468a-9d54-ac5a4d644cd1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "52e5f109548a4ba68b2e9da7d186c923.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "52e5f109548a4ba68b2e9da7d186c923.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "52e5f109548a4ba68b2e9da7d186c923.jpg", "file_size": 44904, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e5f109548a4ba68b2e9da7d186c923.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e5f109548a4ba68b2e9da7d186c923.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/52e5f109548a4ba68b2e9da7d186c923.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/52e5f109548a4ba68b2e9da7d186c923.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/52e5f109548a4ba68b2e9da7d186c923.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TCaYX0wfbeYTXO5DlPXUd1jGfsA=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.283614+00 2025-12-09 10:16:03.28362+00 21444 FX017#VS-D3 SPMX-20240815316699 \N \N \N 1 \N [{"file_id": "cc963958-10a6-4a33-bc6f-5cf105e8d175", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b8a2b32f2d14ea1928e7444fd5dcadc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b8a2b32f2d14ea1928e7444fd5dcadc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b8a2b32f2d14ea1928e7444fd5dcadc.jpg", "file_size": 14924, "is_delete": false, "file_type": 1, "original_file_name": "FX017#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8a2b32f2d14ea1928e7444fd5dcadc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8a2b32f2d14ea1928e7444fd5dcadc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b8a2b32f2d14ea1928e7444fd5dcadc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b8a2b32f2d14ea1928e7444fd5dcadc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b8a2b32f2d14ea1928e7444fd5dcadc.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yi3Yv13ileK0F3EFf5wlGA01hxw=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.287311+00 2025-12-09 10:16:03.287317+00 21445 1277-1FWE#黄色L SPMX-20240815316697 \N \N \N 1 \N [{"file_id": "0cf812be-06bb-4d89-ae8f-8c2c70c0bcda", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aa8efc0264f40a5b2ee27efcc847638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aa8efc0264f40a5b2ee27efcc847638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aa8efc0264f40a5b2ee27efcc847638.jpg", "file_size": 17835, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa8efc0264f40a5b2ee27efcc847638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa8efc0264f40a5b2ee27efcc847638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa8efc0264f40a5b2ee27efcc847638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aa8efc0264f40a5b2ee27efcc847638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aa8efc0264f40a5b2ee27efcc847638.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bX1-e8goNtbNF40xya0ArdR0dq8=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.291007+00 2025-12-09 10:16:03.291013+00 21446 003FWE#抓毛-男3XL SPMX-20240815316693 \N \N \N 1 \N [{"file_id": "aede9964-8e1c-4fd2-b3dd-d735d629e1b3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "454f2fa2c0d04d7180b1aa3347fc83b1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "454f2fa2c0d04d7180b1aa3347fc83b1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "454f2fa2c0d04d7180b1aa3347fc83b1.jpg", "file_size": 16746, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-男3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2fa2c0d04d7180b1aa3347fc83b1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2fa2c0d04d7180b1aa3347fc83b1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/454f2fa2c0d04d7180b1aa3347fc83b1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/454f2fa2c0d04d7180b1aa3347fc83b1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/454f2fa2c0d04d7180b1aa3347fc83b1.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IrXwaPl4UZfsm8N6zJ5vVB9IBY8=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.295006+00 2025-12-09 10:16:03.295012+00 21447 LJJR010-F#绿3XL VS-D3 SPMX-20240815316694 \N \N \N 1 \N [{"file_id": "3d8da87a-ba00-44a9-adbc-cccb6643750b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24c1f6e30af44374b4c93e931b87b516.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24c1f6e30af44374b4c93e931b87b516.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24c1f6e30af44374b4c93e931b87b516.jpg", "file_size": 18089, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c1f6e30af44374b4c93e931b87b516.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c1f6e30af44374b4c93e931b87b516.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c1f6e30af44374b4c93e931b87b516.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24c1f6e30af44374b4c93e931b87b516.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24c1f6e30af44374b4c93e931b87b516.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1JurPAiToZt0piGV9hVHPIZNlMI=", "createTime": "2024-08-15 15:10:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.298778+00 2025-12-09 10:16:03.298785+00 21448 LZ1427#童装T4号色 SPMX-20240815316696 \N \N \N 1 \N [{"file_id": "38eaa7ea-432b-4afb-b68e-4673bc782cdb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b583f581ab91432a81e115db310f60f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b583f581ab91432a81e115db310f60f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b583f581ab91432a81e115db310f60f3.jpg", "file_size": 24925, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583f581ab91432a81e115db310f60f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583f581ab91432a81e115db310f60f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b583f581ab91432a81e115db310f60f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b583f581ab91432a81e115db310f60f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b583f581ab91432a81e115db310f60f3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:utkyykvPyFT3EV1i-npVK1M8oLM=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.302345+00 2025-12-09 10:16:03.302352+00 21449 HXF022FW#粉VS-D3 SPMX-20240815316698 \N \N \N 1 \N [{"file_id": "051dec5f-5459-404c-bc11-0cd197bd7ec1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d8eb985dad24f32919c7e5eae2b34bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d8eb985dad24f32919c7e5eae2b34bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d8eb985dad24f32919c7e5eae2b34bd.jpg", "file_size": 8738, "is_delete": false, "file_type": 1, "original_file_name": "HXF022FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d8eb985dad24f32919c7e5eae2b34bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d8eb985dad24f32919c7e5eae2b34bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d8eb985dad24f32919c7e5eae2b34bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d8eb985dad24f32919c7e5eae2b34bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d8eb985dad24f32919c7e5eae2b34bd.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGYv6BodLdWaI-HJ3iXB_PqKfOI=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.305845+00 2025-12-09 10:16:03.305851+00 21450 88380FWF#J彩兰46码 SPMX-20240815316695 \N \N \N 1 \N [{"file_id": "8c776728-40d9-4d10-a4e6-674b24eb1c23", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7bfe587fd87f431fa3c6c35ec9320dc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7bfe587fd87f431fa3c6c35ec9320dc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7bfe587fd87f431fa3c6c35ec9320dc2.jpg", "file_size": 25200, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J彩兰46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfe587fd87f431fa3c6c35ec9320dc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfe587fd87f431fa3c6c35ec9320dc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7bfe587fd87f431fa3c6c35ec9320dc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7bfe587fd87f431fa3c6c35ec9320dc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7bfe587fd87f431fa3c6c35ec9320dc2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ehQ9lBNxh5GEvx4-vx2FYGRzzns=", "createTime": "2024-08-15 15:10:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.309439+00 2025-12-09 10:16:03.309447+00 21451 1277-1FWE#黄色XL SPMX-20240815316703 \N \N \N 1 \N [{"file_id": "ba5fdbb5-5eee-426e-8339-a1eb1048489c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "255c660c32fb4699bdcce8e7779c0879.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "255c660c32fb4699bdcce8e7779c0879.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "255c660c32fb4699bdcce8e7779c0879.jpg", "file_size": 18175, "is_delete": false, "file_type": 1, "original_file_name": "1277-1FWE#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255c660c32fb4699bdcce8e7779c0879.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255c660c32fb4699bdcce8e7779c0879.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/255c660c32fb4699bdcce8e7779c0879.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/255c660c32fb4699bdcce8e7779c0879.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/255c660c32fb4699bdcce8e7779c0879.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:77a6EKTMyrGYsAAyhECuRZPMxcU=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.313212+00 2025-12-09 10:16:03.313219+00 21452 003FWE#抓毛-男L+婴12码+婴18码 SPMX-20240815316706 \N \N \N 1 \N [{"file_id": "7910a162-4148-4695-abc1-277338370063", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6eb4bfd1f3634f58a85345f00795c057.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6eb4bfd1f3634f58a85345f00795c057.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6eb4bfd1f3634f58a85345f00795c057.jpg", "file_size": 20093, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-男L+婴12码+婴18码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb4bfd1f3634f58a85345f00795c057.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb4bfd1f3634f58a85345f00795c057.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6eb4bfd1f3634f58a85345f00795c057.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6eb4bfd1f3634f58a85345f00795c057.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6eb4bfd1f3634f58a85345f00795c057.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZxT6sOcVd9uc7p9fH9Nto9FqgE=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.316855+00 2025-12-09 10:16:03.316861+00 21453 LJJR010-F#绿4XL VS-D3 SPMX-20240815316709 \N \N \N 1 \N [{"file_id": "543fb266-4bd8-4525-b437-4dd989927d00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95a212c3ca6442a8ab2c459d3f4e8992.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95a212c3ca6442a8ab2c459d3f4e8992.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95a212c3ca6442a8ab2c459d3f4e8992.jpg", "file_size": 18009, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a212c3ca6442a8ab2c459d3f4e8992.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a212c3ca6442a8ab2c459d3f4e8992.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95a212c3ca6442a8ab2c459d3f4e8992.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95a212c3ca6442a8ab2c459d3f4e8992.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95a212c3ca6442a8ab2c459d3f4e8992.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3SXSLYtFIO62NC1ebr2woXC5w8=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.320603+00 2025-12-09 10:16:03.32061+00 21454 DM9331#4XL SPMX-20240815316701 \N \N \N 1 \N [{"file_id": "679b3dce-80fc-40e8-9e85-ba7da03df046", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5f5b530f632e446d9e2cc038bdb86e72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5f5b530f632e446d9e2cc038bdb86e72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5f5b530f632e446d9e2cc038bdb86e72.jpg", "file_size": 51855, "is_delete": false, "file_type": 1, "original_file_name": "DM9331#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5b530f632e446d9e2cc038bdb86e72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5b530f632e446d9e2cc038bdb86e72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5f5b530f632e446d9e2cc038bdb86e72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5f5b530f632e446d9e2cc038bdb86e72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5f5b530f632e446d9e2cc038bdb86e72.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iA5WVH-ok-dP81wjAH3yKtTXqbs=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.324196+00 2025-12-09 10:16:03.324203+00 21455 LZ1427#童装T5号色 SPMX-20240815316705 \N \N \N 1 \N [{"file_id": "3054a1d9-9559-4663-8349-f4c3faf93ef9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg", "file_size": 23511, "is_delete": false, "file_type": 1, "original_file_name": "LZ1427#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4ea46f2cd7d4f378676e44b6d8d3a4b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJVoCdsqF8xF8YO9TtPcmq09stQ=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.327771+00 2025-12-09 10:16:03.327777+00 21456 CHiC139#13号色-24码 SPMX-20240815316708 \N \N \N 1 \N [{"file_id": "e00ac025-088a-432a-8fb1-2329397261d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b639c3b2f56344b89eb614086b76a9b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b639c3b2f56344b89eb614086b76a9b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b639c3b2f56344b89eb614086b76a9b6.jpg", "file_size": 45050, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639c3b2f56344b89eb614086b76a9b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639c3b2f56344b89eb614086b76a9b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b639c3b2f56344b89eb614086b76a9b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b639c3b2f56344b89eb614086b76a9b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b639c3b2f56344b89eb614086b76a9b6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w--HcNQ7PotG4UgEKhRUNBRzHgw=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.331341+00 2025-12-09 10:16:03.331349+00 21457 FX017#灰 SPMX-20240815316711 \N \N \N 1 \N [{"file_id": "03d9a4ce-5de4-4605-8027-6a2621aea259", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e87a7936f1e649b2b8b59158c308f219.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e87a7936f1e649b2b8b59158c308f219.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e87a7936f1e649b2b8b59158c308f219.jpg", "file_size": 18701, "is_delete": false, "file_type": 1, "original_file_name": "FX017#灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87a7936f1e649b2b8b59158c308f219.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87a7936f1e649b2b8b59158c308f219.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e87a7936f1e649b2b8b59158c308f219.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e87a7936f1e649b2b8b59158c308f219.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e87a7936f1e649b2b8b59158c308f219.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKv8J2mnpLq70VXhXa6GaPVDd2g=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.334843+00 2025-12-09 10:16:03.33485+00 21458 HXF022FW#蓝VS-D3 SPMX-20240815316707 \N \N \N 1 \N [{"file_id": "0b730f2e-bd0b-4e29-b15a-9ae97fc105e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c36345e6d4425abd1b07c0fc57f3f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c36345e6d4425abd1b07c0fc57f3f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c36345e6d4425abd1b07c0fc57f3f1.jpg", "file_size": 13101, "is_delete": false, "file_type": 1, "original_file_name": "HXF022FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c36345e6d4425abd1b07c0fc57f3f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c36345e6d4425abd1b07c0fc57f3f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c36345e6d4425abd1b07c0fc57f3f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c36345e6d4425abd1b07c0fc57f3f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c36345e6d4425abd1b07c0fc57f3f1.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ffSzQB_zFTbawji8fF8Zz5Wg-Uw=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.338268+00 2025-12-09 10:16:03.338274+00 21459 DM9331#5XL SPMX-20240815316710 \N \N \N 1 \N [{"file_id": "75050810-16aa-405a-842f-72584b7f18c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31b9556b9ecd4e869d90a885ca250910.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31b9556b9ecd4e869d90a885ca250910.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31b9556b9ecd4e869d90a885ca250910.jpg", "file_size": 47548, "is_delete": false, "file_type": 1, "original_file_name": "DM9331#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b9556b9ecd4e869d90a885ca250910.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b9556b9ecd4e869d90a885ca250910.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31b9556b9ecd4e869d90a885ca250910.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31b9556b9ecd4e869d90a885ca250910.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31b9556b9ecd4e869d90a885ca250910.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e4hrmFgewfn6ycNHlglQ9iqoZgo=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.341771+00 2025-12-09 10:16:03.341778+00 21460 241#-定位裁-黑色 SPMX-20240815316713 \N \N \N 1 \N [{"file_id": "3f8b4dee-ce81-4660-8d03-71859330e0e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb4fbeac67db4d86912905824f10c9bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb4fbeac67db4d86912905824f10c9bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb4fbeac67db4d86912905824f10c9bb.jpg", "file_size": 61960, "is_delete": false, "file_type": 1, "original_file_name": "241#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4fbeac67db4d86912905824f10c9bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4fbeac67db4d86912905824f10c9bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb4fbeac67db4d86912905824f10c9bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb4fbeac67db4d86912905824f10c9bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb4fbeac67db4d86912905824f10c9bb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1iZ8jIxrKP_8FOjloi6vY-0u4I=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.34514+00 2025-12-09 10:16:03.345147+00 21461 88380FWF#J彩兰48码 SPMX-20240815316704 \N \N \N 1 \N [{"file_id": "185a7077-58b0-49c8-b18d-c04d9b5704ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05a3aecf3a5e4615b8c14c3a4b7139ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05a3aecf3a5e4615b8c14c3a4b7139ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05a3aecf3a5e4615b8c14c3a4b7139ed.jpg", "file_size": 25276, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J彩兰48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a3aecf3a5e4615b8c14c3a4b7139ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a3aecf3a5e4615b8c14c3a4b7139ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a3aecf3a5e4615b8c14c3a4b7139ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05a3aecf3a5e4615b8c14c3a4b7139ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05a3aecf3a5e4615b8c14c3a4b7139ed.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JjzEcJDecbF00scrThhWsISUQHs=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.348602+00 2025-12-09 10:16:03.348609+00 21462 JY-DR-251#A料2#浅杏底焦糖 SPMX-20240815316712 \N \N \N 1 \N [{"file_id": "989b5c28-6070-4a92-ab64-242393f3fd34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dba19bb9b847418496666664cf2aa119.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dba19bb9b847418496666664cf2aa119.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dba19bb9b847418496666664cf2aa119.jpg", "file_size": 70860, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料2#浅杏底焦糖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba19bb9b847418496666664cf2aa119.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba19bb9b847418496666664cf2aa119.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba19bb9b847418496666664cf2aa119.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dba19bb9b847418496666664cf2aa119.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dba19bb9b847418496666664cf2aa119.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8EZQiPTcUsgSGKm0AXHQSA1lmas=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.352017+00 2025-12-09 10:16:03.352023+00 21463 JY-DR-251#A料10#白底杏色 SPMX-20240815316702 \N \N \N 1 \N [{"file_id": "8e58ed86-0631-4bfa-8b9b-473076205a4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5426fe65c8b645e7b543d9bfd7efe7c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5426fe65c8b645e7b543d9bfd7efe7c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5426fe65c8b645e7b543d9bfd7efe7c6.jpg", "file_size": 64331, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料10#白底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426fe65c8b645e7b543d9bfd7efe7c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426fe65c8b645e7b543d9bfd7efe7c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5426fe65c8b645e7b543d9bfd7efe7c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5426fe65c8b645e7b543d9bfd7efe7c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5426fe65c8b645e7b543d9bfd7efe7c6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4WoNTaqWs0wnaDi2ayp0wn0fbes=", "createTime": "2024-08-15 15:10:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.355503+00 2025-12-09 10:16:03.355511+00 21464 003FWE#抓毛-男XL+童4码 SPMX-20240815316717 \N \N \N 1 \N [{"file_id": "e91ec31e-9bce-4db4-a8d0-a0d5209ee2b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58864170147c41dfbf71da787a62c5d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58864170147c41dfbf71da787a62c5d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58864170147c41dfbf71da787a62c5d7.jpg", "file_size": 12360, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-男XL+童4码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58864170147c41dfbf71da787a62c5d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58864170147c41dfbf71da787a62c5d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58864170147c41dfbf71da787a62c5d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58864170147c41dfbf71da787a62c5d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58864170147c41dfbf71da787a62c5d7.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:17DUoP1dw1yGXbb38HT77tf-IGk=", "createTime": "2024-08-15 15:10:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.359002+00 2025-12-09 10:16:03.359008+00 21465 1277FWE#下身彩兰4XL SPMX-20240815316716 \N \N \N 1 \N [{"file_id": "13efa547-a6ed-4c24-a1f3-911fe24f2186", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8be69dccc7e045989312ea19c14ef66d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8be69dccc7e045989312ea19c14ef66d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8be69dccc7e045989312ea19c14ef66d.jpg", "file_size": 17576, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#下身彩兰4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be69dccc7e045989312ea19c14ef66d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be69dccc7e045989312ea19c14ef66d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be69dccc7e045989312ea19c14ef66d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8be69dccc7e045989312ea19c14ef66d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8be69dccc7e045989312ea19c14ef66d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vHj1bl1w08p1a9fnjzV2ZoYClhc=", "createTime": "2024-08-15 15:10:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.362404+00 2025-12-09 10:16:03.362411+00 21466 88380FWF#J彩兰50码 SPMX-20240815316715 \N \N \N 1 \N [{"file_id": "ba0b8e14-dfb8-453f-94b9-4cba5f11522b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "061654ddba1445dda14712aad529e728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "061654ddba1445dda14712aad529e728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "061654ddba1445dda14712aad529e728.jpg", "file_size": 25563, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J彩兰50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061654ddba1445dda14712aad529e728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061654ddba1445dda14712aad529e728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061654ddba1445dda14712aad529e728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/061654ddba1445dda14712aad529e728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/061654ddba1445dda14712aad529e728.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t9EVqDmfXnst5ih5iLoXWBsK_18=", "createTime": "2024-08-15 15:10:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.365864+00 2025-12-09 10:16:03.36587+00 21467 LZ1428#上身1号色 SPMX-20240815316714 \N \N \N 1 \N [{"file_id": "219629bc-7b97-4493-b633-c7774255c435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f31f78a63f94f8686da58c7c3a8306c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f31f78a63f94f8686da58c7c3a8306c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f31f78a63f94f8686da58c7c3a8306c.jpg", "file_size": 19198, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f31f78a63f94f8686da58c7c3a8306c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f31f78a63f94f8686da58c7c3a8306c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f31f78a63f94f8686da58c7c3a8306c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f31f78a63f94f8686da58c7c3a8306c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f31f78a63f94f8686da58c7c3a8306c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:klXonKZ3IxccbhFY-7tDBSbBD_M=", "createTime": "2024-08-15 15:10:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.369331+00 2025-12-09 10:16:03.369337+00 21468 HXF022FW#黑VS-D3 SPMX-20240815316719 \N \N \N 1 \N [{"file_id": "e5952912-659c-4f27-a876-3aa98b5fc5c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15aaf12475824566b8144f0efc363076.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15aaf12475824566b8144f0efc363076.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15aaf12475824566b8144f0efc363076.jpg", "file_size": 13730, "is_delete": false, "file_type": 1, "original_file_name": "HXF022FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aaf12475824566b8144f0efc363076.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aaf12475824566b8144f0efc363076.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15aaf12475824566b8144f0efc363076.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15aaf12475824566b8144f0efc363076.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15aaf12475824566b8144f0efc363076.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rjNgdPAc9F3wmnG4QNRQs9M2_3Y=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.372718+00 2025-12-09 10:16:03.372724+00 21469 JY-DR-251#A料2#焦糖底杏 SPMX-20240815316720 \N \N \N 1 \N [{"file_id": "2d664dd9-da19-4699-86f9-12a9adc56538", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d87f1707d65433d9fa7d9e875eab2c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d87f1707d65433d9fa7d9e875eab2c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d87f1707d65433d9fa7d9e875eab2c3.jpg", "file_size": 70826, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料2#焦糖底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87f1707d65433d9fa7d9e875eab2c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87f1707d65433d9fa7d9e875eab2c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d87f1707d65433d9fa7d9e875eab2c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d87f1707d65433d9fa7d9e875eab2c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d87f1707d65433d9fa7d9e875eab2c3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PCBiGXSneh7CHKk-1piZUCduCRM=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.376505+00 2025-12-09 10:16:03.376512+00 21470 1277FWE#墨绿2XL SPMX-20240815316724 \N \N \N 1 \N [{"file_id": "37d40854-932f-4568-afc2-d76a61b62501", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1b33c8bfd66417abf3c7f5320eb16e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1b33c8bfd66417abf3c7f5320eb16e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1b33c8bfd66417abf3c7f5320eb16e9.jpg", "file_size": 18641, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#墨绿2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b33c8bfd66417abf3c7f5320eb16e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b33c8bfd66417abf3c7f5320eb16e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1b33c8bfd66417abf3c7f5320eb16e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1b33c8bfd66417abf3c7f5320eb16e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1b33c8bfd66417abf3c7f5320eb16e9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FNlBaiXi7WsnhCW2vSsJducjrUc=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.380074+00 2025-12-09 10:16:03.380081+00 21471 CHiC139#13号色-25码 SPMX-20240815316722 \N \N \N 1 \N [{"file_id": "9e83eb37-9a32-4cf5-8ceb-bdab1581fd72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "647587d1ac7c4881bb6feb96ee4c990f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "647587d1ac7c4881bb6feb96ee4c990f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "647587d1ac7c4881bb6feb96ee4c990f.jpg", "file_size": 43434, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647587d1ac7c4881bb6feb96ee4c990f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647587d1ac7c4881bb6feb96ee4c990f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/647587d1ac7c4881bb6feb96ee4c990f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/647587d1ac7c4881bb6feb96ee4c990f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/647587d1ac7c4881bb6feb96ee4c990f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kJf8wClmL8e0Zp2rVxHwK7wHyj0=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.383551+00 2025-12-09 10:16:03.383558+00 21472 DM9356#1XL SPMX-20240815316721 \N \N \N 1 \N [{"file_id": "9a8cd2d4-a3fd-47f1-972d-80c77c4ccff1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6311567b119d48f09bd09726843b8b18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6311567b119d48f09bd09726843b8b18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6311567b119d48f09bd09726843b8b18.jpg", "file_size": 66431, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6311567b119d48f09bd09726843b8b18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6311567b119d48f09bd09726843b8b18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6311567b119d48f09bd09726843b8b18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6311567b119d48f09bd09726843b8b18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6311567b119d48f09bd09726843b8b18.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gutn-QsSxZBtWR3eFbzg-qMrMt4=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.387057+00 2025-12-09 10:16:03.387063+00 21473 FX017#红 SPMX-20240815316718 \N \N \N 1 \N [{"file_id": "08697d90-27c0-48bb-845c-d8762f37fa95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0338c750a7bc4d9a8addce2d9d36875f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0338c750a7bc4d9a8addce2d9d36875f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0338c750a7bc4d9a8addce2d9d36875f.jpg", "file_size": 22114, "is_delete": false, "file_type": 1, "original_file_name": "FX017#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0338c750a7bc4d9a8addce2d9d36875f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0338c750a7bc4d9a8addce2d9d36875f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0338c750a7bc4d9a8addce2d9d36875f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0338c750a7bc4d9a8addce2d9d36875f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0338c750a7bc4d9a8addce2d9d36875f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M-RKrWo7Zz55egPADtHWHssbm9s=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.390573+00 2025-12-09 10:16:03.39058+00 21474 LJJR010-F#绿5XL VS-D3 SPMX-20240815316723 \N \N \N 1 \N [{"file_id": "0347c6f2-5219-44f3-a3e2-135ecd97e0a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe240a143eba40debc703f2883963dfa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe240a143eba40debc703f2883963dfa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe240a143eba40debc703f2883963dfa.jpg", "file_size": 17864, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe240a143eba40debc703f2883963dfa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe240a143eba40debc703f2883963dfa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe240a143eba40debc703f2883963dfa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe240a143eba40debc703f2883963dfa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe240a143eba40debc703f2883963dfa.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:blFqEanqDbGpJcmcbq3AalvnNm0=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.394061+00 2025-12-09 10:16:03.394067+00 21475 HXF023#白 SPMX-20240815316730 \N \N \N 1 \N [{"file_id": "63ad7dd0-5ab4-4c67-b633-130ba25d3cce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2014b08cf44417190c4057e14ad2cdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2014b08cf44417190c4057e14ad2cdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2014b08cf44417190c4057e14ad2cdf.jpg", "file_size": 11274, "is_delete": false, "file_type": 1, "original_file_name": "HXF023#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2014b08cf44417190c4057e14ad2cdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2014b08cf44417190c4057e14ad2cdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2014b08cf44417190c4057e14ad2cdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2014b08cf44417190c4057e14ad2cdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2014b08cf44417190c4057e14ad2cdf.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F3v9Gq4bQWAziLx0RYmnhOGo_rc=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.397565+00 2025-12-09 10:16:03.397571+00 21476 CHiC139#13号色净色 SPMX-20240815316732 \N \N \N 1 \N [{"file_id": "0edc0fba-af36-4960-b0d2-d09ba0e2044e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fec3e18790c41a2a208710058ae747d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fec3e18790c41a2a208710058ae747d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fec3e18790c41a2a208710058ae747d.jpg", "file_size": 11298, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#13号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fec3e18790c41a2a208710058ae747d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fec3e18790c41a2a208710058ae747d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fec3e18790c41a2a208710058ae747d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fec3e18790c41a2a208710058ae747d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fec3e18790c41a2a208710058ae747d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lElr0M6_EVdUkOj4GlRPdw_506U=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.400988+00 2025-12-09 10:16:03.400994+00 21477 LZ1428#上身3号色 SPMX-20240815316738 \N \N \N 1 \N [{"file_id": "ebeaa50b-116b-4bb5-81ed-3fdd97fb175a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4623c9b08464db3a110e3be7e6671c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4623c9b08464db3a110e3be7e6671c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4623c9b08464db3a110e3be7e6671c4.jpg", "file_size": 20874, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4623c9b08464db3a110e3be7e6671c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4623c9b08464db3a110e3be7e6671c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4623c9b08464db3a110e3be7e6671c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4623c9b08464db3a110e3be7e6671c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4623c9b08464db3a110e3be7e6671c4.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wn5jV0mGGlvsrRCR3_mQ8hh0hxo=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.404453+00 2025-12-09 10:16:03.40446+00 21478 003FWE#抓毛-童12码+童6码+童5码 SPMX-20240815316726 \N \N \N 1 \N [{"file_id": "8876eaa4-acec-468d-a194-30b55dba500d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9657b14b175f4959b7a3fd28a7c73ead.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9657b14b175f4959b7a3fd28a7c73ead.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9657b14b175f4959b7a3fd28a7c73ead.jpg", "file_size": 13141, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-童12码+童6码+童5码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657b14b175f4959b7a3fd28a7c73ead.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657b14b175f4959b7a3fd28a7c73ead.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9657b14b175f4959b7a3fd28a7c73ead.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9657b14b175f4959b7a3fd28a7c73ead.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9657b14b175f4959b7a3fd28a7c73ead.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EIsk6zMLJbRIXBH-uktDHY8DlT8=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.40792+00 2025-12-09 10:16:03.407926+00 21479 003FWE#抓毛-童5码 SPMX-20240815316736 \N \N \N 1 \N [{"file_id": "6afc8f67-a444-40f0-bccd-b9acee074fdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b3f52ef85e043cc89b407dcd5ba638f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b3f52ef85e043cc89b407dcd5ba638f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b3f52ef85e043cc89b407dcd5ba638f.jpg", "file_size": 10242, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛-童5码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3f52ef85e043cc89b407dcd5ba638f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3f52ef85e043cc89b407dcd5ba638f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b3f52ef85e043cc89b407dcd5ba638f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b3f52ef85e043cc89b407dcd5ba638f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b3f52ef85e043cc89b407dcd5ba638f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y_gnn8eC3Kxe4tahbd-piN683ZI=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.411367+00 2025-12-09 10:16:03.411374+00 21480 88380FWF#J紫色44码 SPMX-20240815316737 \N \N \N 1 \N [{"file_id": "cb89d013-5eec-4ee9-a5a7-4a1d3c67f3e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c3a58ab5edd4a12a559334274133a95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c3a58ab5edd4a12a559334274133a95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c3a58ab5edd4a12a559334274133a95.jpg", "file_size": 24823, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J紫色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3a58ab5edd4a12a559334274133a95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3a58ab5edd4a12a559334274133a95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c3a58ab5edd4a12a559334274133a95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c3a58ab5edd4a12a559334274133a95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c3a58ab5edd4a12a559334274133a95.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x2bT1ILlV9t3UOuYIIke4xMzYM4=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.414806+00 2025-12-09 10:16:03.414812+00 21481 LJJR010-F#绿L VS-D3 SPMX-20240815316733 \N \N \N 1 \N [{"file_id": "91fb3889-fec8-4d54-bcc5-8e22591f358e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf96dfe8bef54fa6ba0635551c721ddb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf96dfe8bef54fa6ba0635551c721ddb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf96dfe8bef54fa6ba0635551c721ddb.jpg", "file_size": 17021, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf96dfe8bef54fa6ba0635551c721ddb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf96dfe8bef54fa6ba0635551c721ddb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf96dfe8bef54fa6ba0635551c721ddb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf96dfe8bef54fa6ba0635551c721ddb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf96dfe8bef54fa6ba0635551c721ddb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4c7ZQyJ0xWTO_Ayz7KtzoJ_F4p8=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.418325+00 2025-12-09 10:16:03.418332+00 21482 FX017#蓝 SPMX-20240815316729 \N \N \N 1 \N [{"file_id": "0a8ee301-c73f-4df3-8a33-2bcd6978490f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg", "file_size": 19351, "is_delete": false, "file_type": 1, "original_file_name": "FX017#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f71285ffe2cd4b3e9fb17bb2c6b9d234.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OEMHIyz9JWvlNkR7EvDqLv_wgNY=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.42178+00 2025-12-09 10:16:03.421787+00 21483 JY-DR-251#A料2#焦糖杏色 SPMX-20240815316731 \N \N \N 1 \N [{"file_id": "5ca709bd-8b62-4db7-8aeb-ff01ba1d2aa2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10334a9240204afcaad086fe259660b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10334a9240204afcaad086fe259660b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10334a9240204afcaad086fe259660b8.jpg", "file_size": 39517, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料2#焦糖杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10334a9240204afcaad086fe259660b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10334a9240204afcaad086fe259660b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10334a9240204afcaad086fe259660b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10334a9240204afcaad086fe259660b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10334a9240204afcaad086fe259660b8.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gCg-AJkrHwx-shXSvmUkiMdUODQ=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.425366+00 2025-12-09 10:16:03.425374+00 21484 LZ1428#上身2号色 SPMX-20240815316725 \N \N \N 1 \N [{"file_id": "8edcaa42-bbe0-4264-a6ab-6c78c57c9481", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c986d4d7aeb423da13a5f2bd8c70c6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c986d4d7aeb423da13a5f2bd8c70c6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c986d4d7aeb423da13a5f2bd8c70c6f.jpg", "file_size": 18229, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c986d4d7aeb423da13a5f2bd8c70c6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c986d4d7aeb423da13a5f2bd8c70c6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c986d4d7aeb423da13a5f2bd8c70c6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c986d4d7aeb423da13a5f2bd8c70c6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c986d4d7aeb423da13a5f2bd8c70c6f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:teJ_P3i8UbJykn1LyoK02zTL9Es=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.428839+00 2025-12-09 10:16:03.428846+00 21485 241217#-01-1 SPMX-20240815316727 \N \N \N 1 \N [{"file_id": "93950d03-156e-46d7-9c18-b1e7bd793f62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eaa449a2c0ad4494b2da711d49534e27.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eaa449a2c0ad4494b2da711d49534e27.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eaa449a2c0ad4494b2da711d49534e27.jpg", "file_size": 67010, "is_delete": false, "file_type": 1, "original_file_name": "241217#-01-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa449a2c0ad4494b2da711d49534e27.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa449a2c0ad4494b2da711d49534e27.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eaa449a2c0ad4494b2da711d49534e27.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eaa449a2c0ad4494b2da711d49534e27.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eaa449a2c0ad4494b2da711d49534e27.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HeOXjrUm7B4RSw2XQEbjsd78LR8=", "createTime": "2024-08-15 15:10:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.432514+00 2025-12-09 10:16:03.43252+00 21486 DM9356#2XL SPMX-20240815316734 \N \N \N 1 \N [{"file_id": "d9cf449a-8a8d-45da-8b05-85358f0b9fcc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3374d3467bfc47ff9bc42f11b1018b4c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3374d3467bfc47ff9bc42f11b1018b4c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3374d3467bfc47ff9bc42f11b1018b4c.jpg", "file_size": 68420, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3374d3467bfc47ff9bc42f11b1018b4c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3374d3467bfc47ff9bc42f11b1018b4c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3374d3467bfc47ff9bc42f11b1018b4c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3374d3467bfc47ff9bc42f11b1018b4c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3374d3467bfc47ff9bc42f11b1018b4c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNMaBceQ0RfvzlmtwK6sYEbyEF8=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.436002+00 2025-12-09 10:16:03.436009+00 21487 1277FWE#墨绿4XL SPMX-20240815316735 \N \N \N 1 \N [{"file_id": "09f708c8-d3a2-4907-a979-1f094a2af6f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e566bd2519d4bd59708999f08d849b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e566bd2519d4bd59708999f08d849b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e566bd2519d4bd59708999f08d849b6.jpg", "file_size": 18575, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#墨绿4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e566bd2519d4bd59708999f08d849b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e566bd2519d4bd59708999f08d849b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e566bd2519d4bd59708999f08d849b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e566bd2519d4bd59708999f08d849b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e566bd2519d4bd59708999f08d849b6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jq3X-OgA9rrUpQ-vo83PUFmDUkQ=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.439471+00 2025-12-09 10:16:03.439479+00 21488 88380FWF#J紫色42码 SPMX-20240815316728 \N \N \N 1 \N [{"file_id": "1ac695d5-d072-458a-83a4-3bb14e26eb4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4550779fe354d89bcc6de5e697bffad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4550779fe354d89bcc6de5e697bffad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4550779fe354d89bcc6de5e697bffad.jpg", "file_size": 23456, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J紫色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4550779fe354d89bcc6de5e697bffad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4550779fe354d89bcc6de5e697bffad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4550779fe354d89bcc6de5e697bffad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4550779fe354d89bcc6de5e697bffad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4550779fe354d89bcc6de5e697bffad.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h8w_Latt6ApHKwuT7eZClgDUHkw=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.442899+00 2025-12-09 10:16:03.442905+00 21489 241217#-01-2 SPMX-20240815316739 \N \N \N 1 \N [{"file_id": "c6010653-11d6-45f4-bdb0-72df564eab37", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6194aec8b78744f6a2a51627fc5476c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6194aec8b78744f6a2a51627fc5476c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6194aec8b78744f6a2a51627fc5476c7.jpg", "file_size": 64514, "is_delete": false, "file_type": 1, "original_file_name": "241217#-01-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6194aec8b78744f6a2a51627fc5476c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6194aec8b78744f6a2a51627fc5476c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6194aec8b78744f6a2a51627fc5476c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6194aec8b78744f6a2a51627fc5476c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6194aec8b78744f6a2a51627fc5476c7.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Us2yQE94LkJKUT8omfcYBFtXyTM=", "createTime": "2024-08-15 15:10:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.446258+00 2025-12-09 10:16:03.446265+00 21490 FX017FW#VS-D3 SPMX-20240815316741 \N \N \N 1 \N [{"file_id": "ec32fb43-84ec-456b-8a13-a5e08885ab30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9af569f0d6b6430eb987edba8a787327.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9af569f0d6b6430eb987edba8a787327.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9af569f0d6b6430eb987edba8a787327.jpg", "file_size": 6463, "is_delete": false, "file_type": 1, "original_file_name": "FX017FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af569f0d6b6430eb987edba8a787327.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af569f0d6b6430eb987edba8a787327.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9af569f0d6b6430eb987edba8a787327.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9af569f0d6b6430eb987edba8a787327.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9af569f0d6b6430eb987edba8a787327.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YOiyQSgBae7siRfuqOPf_0Xa1L0=", "createTime": "2024-08-15 15:10:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.449679+00 2025-12-09 10:16:03.449685+00 21491 88380FWF#J紫色46码 SPMX-20240815316742 \N \N \N 1 \N [{"file_id": "2ead7c1e-22ff-4e0b-a990-237bcfd45daa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "101674fcc5f64409b5fe21b34eebcbfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "101674fcc5f64409b5fe21b34eebcbfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "101674fcc5f64409b5fe21b34eebcbfe.jpg", "file_size": 24893, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J紫色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101674fcc5f64409b5fe21b34eebcbfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101674fcc5f64409b5fe21b34eebcbfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/101674fcc5f64409b5fe21b34eebcbfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/101674fcc5f64409b5fe21b34eebcbfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/101674fcc5f64409b5fe21b34eebcbfe.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yT9a-M9qxqALD_3Cr5RzE9X609w=", "createTime": "2024-08-15 15:10:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.453193+00 2025-12-09 10:16:03.4532+00 21492 HXF023#粉 SPMX-20240815316740 \N \N \N 1 \N [{"file_id": "af229c52-a8f9-4029-8b5e-6490ff7878dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c299e4282814917a2f89c59c8c30358.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c299e4282814917a2f89c59c8c30358.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c299e4282814917a2f89c59c8c30358.jpg", "file_size": 10252, "is_delete": false, "file_type": 1, "original_file_name": "HXF023#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c299e4282814917a2f89c59c8c30358.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c299e4282814917a2f89c59c8c30358.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c299e4282814917a2f89c59c8c30358.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c299e4282814917a2f89c59c8c30358.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c299e4282814917a2f89c59c8c30358.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8IqujB_-rNnSyN-h3CI4kaSeKws=", "createTime": "2024-08-15 15:10:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.456682+00 2025-12-09 10:16:03.456689+00 21493 1277FWE#墨绿L SPMX-20240815316747 \N \N \N 1 \N [{"file_id": "6f751f5e-ccf6-4684-bca6-c702d77720e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7c6a8ced3144894b897e53ce75b1150.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7c6a8ced3144894b897e53ce75b1150.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7c6a8ced3144894b897e53ce75b1150.jpg", "file_size": 18160, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#墨绿L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c6a8ced3144894b897e53ce75b1150.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c6a8ced3144894b897e53ce75b1150.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c6a8ced3144894b897e53ce75b1150.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7c6a8ced3144894b897e53ce75b1150.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7c6a8ced3144894b897e53ce75b1150.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LqQAUVIhfBjeYRAiTTup5fF-mE=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.50257+00 2025-12-09 10:16:03.502577+00 21506 FX017FWE#白VS-D3 SPMX-20240815316751 \N \N \N 1 \N [{"file_id": "6972408a-cbdc-4222-a6c3-6e851b2399be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81325445306245888240e2c308a39bd5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81325445306245888240e2c308a39bd5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81325445306245888240e2c308a39bd5.jpg", "file_size": 14020, "is_delete": false, "file_type": 1, "original_file_name": "FX017FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81325445306245888240e2c308a39bd5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81325445306245888240e2c308a39bd5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81325445306245888240e2c308a39bd5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81325445306245888240e2c308a39bd5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81325445306245888240e2c308a39bd5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-gP6RE2cbdDNpu577_to_3784Ik=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.460121+00 2025-12-09 10:16:03.460128+00 21494 003FWE#抓毛女2XL+童2 SPMX-20240815316746 \N \N \N 1 \N [{"file_id": "2e73ad0e-4d9b-4a0c-9173-603c31898ea1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b74e64ea37d6419cb0537051557ad010.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b74e64ea37d6419cb0537051557ad010.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b74e64ea37d6419cb0537051557ad010.jpg", "file_size": 11938, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女2XL+童2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74e64ea37d6419cb0537051557ad010.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74e64ea37d6419cb0537051557ad010.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74e64ea37d6419cb0537051557ad010.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b74e64ea37d6419cb0537051557ad010.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b74e64ea37d6419cb0537051557ad010.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hSJNEsqq-UYfM3nBRTIS9ben2Ec=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.46353+00 2025-12-09 10:16:03.463536+00 21495 LJJR010-F#绿M VS-D3 SPMX-20240815316750 \N \N \N 1 \N [{"file_id": "e268962b-4fd4-4fc0-b3a1-61fc4c54d82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "28fc5a2722964202860f3ee67da68c82.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "28fc5a2722964202860f3ee67da68c82.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "28fc5a2722964202860f3ee67da68c82.jpg", "file_size": 16553, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fc5a2722964202860f3ee67da68c82.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fc5a2722964202860f3ee67da68c82.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/28fc5a2722964202860f3ee67da68c82.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/28fc5a2722964202860f3ee67da68c82.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/28fc5a2722964202860f3ee67da68c82.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ii1bW1xm7B9q9PCZeRcLnO_Hk3w=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.466964+00 2025-12-09 10:16:03.46697+00 21496 1277FWE#墨绿XL SPMX-20240815316757 \N \N \N 1 \N [{"file_id": "aa7e0efd-812a-45f5-b943-13d46897f06b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "816ac4b1dec7454ab4fd57f2f24e1131.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "816ac4b1dec7454ab4fd57f2f24e1131.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "816ac4b1dec7454ab4fd57f2f24e1131.jpg", "file_size": 18528, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#墨绿XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816ac4b1dec7454ab4fd57f2f24e1131.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816ac4b1dec7454ab4fd57f2f24e1131.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/816ac4b1dec7454ab4fd57f2f24e1131.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/816ac4b1dec7454ab4fd57f2f24e1131.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/816ac4b1dec7454ab4fd57f2f24e1131.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1tGActJLnIgVtYEhZk9pNVO0-g=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.47047+00 2025-12-09 10:16:03.470476+00 21497 CHiC139#17号色-21码 SPMX-20240815316745 \N \N \N 1 \N [{"file_id": "e0af8e7a-6a5a-4c2e-82f2-d88bad563ae9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "588553277218462380f29a9f6be19dd3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "588553277218462380f29a9f6be19dd3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "588553277218462380f29a9f6be19dd3.jpg", "file_size": 44015, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588553277218462380f29a9f6be19dd3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588553277218462380f29a9f6be19dd3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588553277218462380f29a9f6be19dd3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/588553277218462380f29a9f6be19dd3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/588553277218462380f29a9f6be19dd3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CRHV5YIPl1y2Mz5x1KnpzMIMsl0=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.474104+00 2025-12-09 10:16:03.474111+00 21498 LZ1428#上身5号色 SPMX-20240815316755 \N \N \N 1 \N [{"file_id": "1ce2c3b5-aeea-4188-b2ad-6824e4f3c4cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92dece4a20d34458a2b05da435979082.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92dece4a20d34458a2b05da435979082.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92dece4a20d34458a2b05da435979082.jpg", "file_size": 19660, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dece4a20d34458a2b05da435979082.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dece4a20d34458a2b05da435979082.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92dece4a20d34458a2b05da435979082.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92dece4a20d34458a2b05da435979082.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92dece4a20d34458a2b05da435979082.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AVYkLkv3n_tXkCOwsO14Hm6pXkM=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.477885+00 2025-12-09 10:16:03.477892+00 21499 HXF023FW#VS-D3 SPMX-20240815316749 \N \N \N 1 \N [{"file_id": "9c1924e6-6281-4870-8618-181b2f3b0ca0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b55774356dac408face5d1448a01e978.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b55774356dac408face5d1448a01e978.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b55774356dac408face5d1448a01e978.jpg", "file_size": 10698, "is_delete": false, "file_type": 1, "original_file_name": "HXF023FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b55774356dac408face5d1448a01e978.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b55774356dac408face5d1448a01e978.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b55774356dac408face5d1448a01e978.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b55774356dac408face5d1448a01e978.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b55774356dac408face5d1448a01e978.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B2qWTuhxXoRBMaJ3hgYRyrPNiZo=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.481449+00 2025-12-09 10:16:03.481456+00 21500 CHiC139#17号色-22码 SPMX-20240815316756 \N \N \N 1 \N [{"file_id": "aa901621-05f7-454b-9201-2edea2bedf4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcea904759b947198bc01dbf7375d879.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcea904759b947198bc01dbf7375d879.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcea904759b947198bc01dbf7375d879.jpg", "file_size": 44571, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcea904759b947198bc01dbf7375d879.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcea904759b947198bc01dbf7375d879.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcea904759b947198bc01dbf7375d879.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcea904759b947198bc01dbf7375d879.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcea904759b947198bc01dbf7375d879.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5lkw-Y6hGyMnWg9Vtw1qxZ3xmho=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.485017+00 2025-12-09 10:16:03.485025+00 21501 241217#-01-3 SPMX-20240815316752 \N \N \N 1 \N [{"file_id": "6f3cf301-f657-45a6-b371-ae98c79a3401", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12a9450814d5433789821337dab7b3e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12a9450814d5433789821337dab7b3e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12a9450814d5433789821337dab7b3e0.jpg", "file_size": 63674, "is_delete": false, "file_type": 1, "original_file_name": "241217#-01-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a9450814d5433789821337dab7b3e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a9450814d5433789821337dab7b3e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12a9450814d5433789821337dab7b3e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12a9450814d5433789821337dab7b3e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12a9450814d5433789821337dab7b3e0.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0Ey1iqB4qTZH941Sutwe66npvQ=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.488526+00 2025-12-09 10:16:03.488533+00 21502 88380FWF#J紫色48码 SPMX-20240815316753 \N \N \N 1 \N [{"file_id": "f211c76c-fab9-4f2e-bd25-7359ade3af05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6edad81d33f24796a0d3b112e44e6103.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6edad81d33f24796a0d3b112e44e6103.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6edad81d33f24796a0d3b112e44e6103.jpg", "file_size": 24963, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J紫色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6edad81d33f24796a0d3b112e44e6103.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6edad81d33f24796a0d3b112e44e6103.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6edad81d33f24796a0d3b112e44e6103.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6edad81d33f24796a0d3b112e44e6103.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6edad81d33f24796a0d3b112e44e6103.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yj3vQNVhXz3AOwLfH8Y2UYQegBQ=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.492049+00 2025-12-09 10:16:03.492056+00 21503 JY-DR-251#A料3#墨绿底杏 SPMX-20240815316743 \N \N \N 1 \N [{"file_id": "cbbdbd58-856e-4a4f-b7d7-975658913841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31dbd3577caf4ce3aaff63b317d113e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31dbd3577caf4ce3aaff63b317d113e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31dbd3577caf4ce3aaff63b317d113e3.jpg", "file_size": 70283, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料3#墨绿底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dbd3577caf4ce3aaff63b317d113e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dbd3577caf4ce3aaff63b317d113e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31dbd3577caf4ce3aaff63b317d113e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31dbd3577caf4ce3aaff63b317d113e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31dbd3577caf4ce3aaff63b317d113e3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7PeX6NzboGle0Gowf6a6D-otIpQ=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.495508+00 2025-12-09 10:16:03.495515+00 21504 LZ1428#上身4号色 SPMX-20240815316744 \N \N \N 1 \N [{"file_id": "87ba6ca9-f665-4475-b963-e2a2e7ffd715", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc60a368f927478f8633db62a38f5f24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc60a368f927478f8633db62a38f5f24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc60a368f927478f8633db62a38f5f24.jpg", "file_size": 20244, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60a368f927478f8633db62a38f5f24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60a368f927478f8633db62a38f5f24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60a368f927478f8633db62a38f5f24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc60a368f927478f8633db62a38f5f24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc60a368f927478f8633db62a38f5f24.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qGYE5YN-bT-OsQf8JoUroHAOnc8=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.499004+00 2025-12-09 10:16:03.49901+00 21505 003FWE#抓毛女3XL SPMX-20240815316758 \N \N \N 1 \N [{"file_id": "660c2e10-32cf-4983-9f80-b664be30599f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "719eccc284a74ce3b32cf5460b92c78f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "719eccc284a74ce3b32cf5460b92c78f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "719eccc284a74ce3b32cf5460b92c78f.jpg", "file_size": 10477, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719eccc284a74ce3b32cf5460b92c78f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719eccc284a74ce3b32cf5460b92c78f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719eccc284a74ce3b32cf5460b92c78f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/719eccc284a74ce3b32cf5460b92c78f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/719eccc284a74ce3b32cf5460b92c78f.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PNR7xFeqVVHOk9YNvjvxqw0YTkM=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.506159+00 2025-12-09 10:16:03.506165+00 21507 JY-DR-251#A料3#浅杏底墨绿 SPMX-20240815316754 \N \N \N 1 \N [{"file_id": "c00451fb-a109-41fb-844a-15f4e92d16ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ebd80becdf24705be86eca87299ef41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ebd80becdf24705be86eca87299ef41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ebd80becdf24705be86eca87299ef41.jpg", "file_size": 69885, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料3#浅杏底墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ebd80becdf24705be86eca87299ef41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ebd80becdf24705be86eca87299ef41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ebd80becdf24705be86eca87299ef41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ebd80becdf24705be86eca87299ef41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ebd80becdf24705be86eca87299ef41.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lLPNOGYk--8g3-ozF1ehO_93pNw=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.509692+00 2025-12-09 10:16:03.509698+00 21508 DM9356#3XL SPMX-20240815316748 \N \N \N 1 \N [{"file_id": "d4d6cab2-918a-4777-ab08-bb89cd8f40a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18611b41eee64210a5bde1f72cfe9342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18611b41eee64210a5bde1f72cfe9342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18611b41eee64210a5bde1f72cfe9342.jpg", "file_size": 67860, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18611b41eee64210a5bde1f72cfe9342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18611b41eee64210a5bde1f72cfe9342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18611b41eee64210a5bde1f72cfe9342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18611b41eee64210a5bde1f72cfe9342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18611b41eee64210a5bde1f72cfe9342.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EX196_-ogeL9DDWVBfx7pgTfACA=", "createTime": "2024-08-15 15:10:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.513124+00 2025-12-09 10:16:03.51313+00 21509 241217#-01-4 SPMX-20240815316763 \N \N \N 1 \N [{"file_id": "fe910edb-0c0e-4894-93f1-895c50e84fe2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "671884ae0e564ef5ac8e59d4092769ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "671884ae0e564ef5ac8e59d4092769ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "671884ae0e564ef5ac8e59d4092769ca.jpg", "file_size": 71129, "is_delete": false, "file_type": 1, "original_file_name": "241217#-01-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671884ae0e564ef5ac8e59d4092769ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671884ae0e564ef5ac8e59d4092769ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/671884ae0e564ef5ac8e59d4092769ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/671884ae0e564ef5ac8e59d4092769ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/671884ae0e564ef5ac8e59d4092769ca.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zi18QrKLOt8u1drAlPfvY3Mq5yk=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.516679+00 2025-12-09 10:16:03.516686+00 21510 LJJR010-F#绿S VS-D3 SPMX-20240815316759 \N \N \N 1 \N [{"file_id": "317b0295-1a73-4983-a6d4-d32f88084095", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72cd26faca904ef7a04d47be83ee20a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72cd26faca904ef7a04d47be83ee20a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72cd26faca904ef7a04d47be83ee20a5.jpg", "file_size": 16697, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cd26faca904ef7a04d47be83ee20a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cd26faca904ef7a04d47be83ee20a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72cd26faca904ef7a04d47be83ee20a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72cd26faca904ef7a04d47be83ee20a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72cd26faca904ef7a04d47be83ee20a5.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WPedFgBYfnU8b5zuw6N5-aXauk8=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.520194+00 2025-12-09 10:16:03.5202+00 21511 DM9356#4XL SPMX-20240815316761 \N \N \N 1 \N [{"file_id": "5954686b-ad70-4fbc-83ab-5c0df8ec4f2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2df9b9132dd444ff97a5b8f94118da85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2df9b9132dd444ff97a5b8f94118da85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2df9b9132dd444ff97a5b8f94118da85.jpg", "file_size": 69103, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df9b9132dd444ff97a5b8f94118da85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df9b9132dd444ff97a5b8f94118da85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2df9b9132dd444ff97a5b8f94118da85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2df9b9132dd444ff97a5b8f94118da85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2df9b9132dd444ff97a5b8f94118da85.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6C4sXU3Vg9igBE_3P5OZkr7gGB0=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.523731+00 2025-12-09 10:16:03.523738+00 21512 HXF023FW#白 SPMX-20240815316760 \N \N \N 1 \N [{"file_id": "841d23f6-a82b-47f6-b2dd-c46f5d34fecf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "540077bcdb034c1fb3b272baf011fcae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "540077bcdb034c1fb3b272baf011fcae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "540077bcdb034c1fb3b272baf011fcae.jpg", "file_size": 13125, "is_delete": false, "file_type": 1, "original_file_name": "HXF023FW#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540077bcdb034c1fb3b272baf011fcae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540077bcdb034c1fb3b272baf011fcae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/540077bcdb034c1fb3b272baf011fcae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/540077bcdb034c1fb3b272baf011fcae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/540077bcdb034c1fb3b272baf011fcae.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O0hlEJdVd-zbWqhKrvczuix2HPo=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.527193+00 2025-12-09 10:16:03.5272+00 21513 88380FWF#J紫色50码 SPMX-20240815316764 \N \N \N 1 \N [{"file_id": "39b9c6a2-c6fd-4c07-9a48-464d79da2eb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "61334a2ea3794eecae24dcd4790ce6b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "61334a2ea3794eecae24dcd4790ce6b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "61334a2ea3794eecae24dcd4790ce6b3.jpg", "file_size": 25201, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J紫色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61334a2ea3794eecae24dcd4790ce6b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61334a2ea3794eecae24dcd4790ce6b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/61334a2ea3794eecae24dcd4790ce6b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/61334a2ea3794eecae24dcd4790ce6b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/61334a2ea3794eecae24dcd4790ce6b3.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8l-9DFwheeDrDZK3gAD_Oja8D1M=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.530894+00 2025-12-09 10:16:03.5309+00 21514 FX017FWE#黑VS-D3 SPMX-20240815316762 \N \N \N 1 \N [{"file_id": "01d6f505-7cb7-48d9-8e0f-ff541959fe01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4fdbccd823149e88798d29a8fa400b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4fdbccd823149e88798d29a8fa400b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4fdbccd823149e88798d29a8fa400b4.jpg", "file_size": 19037, "is_delete": false, "file_type": 1, "original_file_name": "FX017FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4fdbccd823149e88798d29a8fa400b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4fdbccd823149e88798d29a8fa400b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4fdbccd823149e88798d29a8fa400b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4fdbccd823149e88798d29a8fa400b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4fdbccd823149e88798d29a8fa400b4.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14lAYXPtKg95af_mOFUbiqpJNCM=", "createTime": "2024-08-15 15:10:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.534351+00 2025-12-09 10:16:03.534357+00 21515 HXF023FW#蓝 SPMX-20240815316774 \N \N \N 1 \N [{"file_id": "2413e1c3-f786-4794-ad04-e298ddb9f705", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1275b0e6d5f46baa0794df0b1e9c1aa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1275b0e6d5f46baa0794df0b1e9c1aa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1275b0e6d5f46baa0794df0b1e9c1aa.jpg", "file_size": 15558, "is_delete": false, "file_type": 1, "original_file_name": "HXF023FW#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1275b0e6d5f46baa0794df0b1e9c1aa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1275b0e6d5f46baa0794df0b1e9c1aa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1275b0e6d5f46baa0794df0b1e9c1aa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1275b0e6d5f46baa0794df0b1e9c1aa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1275b0e6d5f46baa0794df0b1e9c1aa.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDDVDwD0K4capF_FPZgXAggb_Hg=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.537838+00 2025-12-09 10:16:03.537844+00 21516 CHiC139#17号色-23码 SPMX-20240815316765 \N \N \N 1 \N [{"file_id": "9916794b-2f00-46b7-a146-c1140f0439e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d1f5fe47dfe64128b0b3cf61db79732a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d1f5fe47dfe64128b0b3cf61db79732a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d1f5fe47dfe64128b0b3cf61db79732a.jpg", "file_size": 41239, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1f5fe47dfe64128b0b3cf61db79732a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1f5fe47dfe64128b0b3cf61db79732a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d1f5fe47dfe64128b0b3cf61db79732a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d1f5fe47dfe64128b0b3cf61db79732a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d1f5fe47dfe64128b0b3cf61db79732a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bu0HwXfagMvmj6if330DPp2SVa0=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.541309+00 2025-12-09 10:16:03.541315+00 21517 LZ1428#大人T1号色 SPMX-20240815316766 \N \N \N 1 \N [{"file_id": "50b59df2-81de-42b8-8fc6-775967a127de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87abf5ee66904e8aae823d04f4207642.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87abf5ee66904e8aae823d04f4207642.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87abf5ee66904e8aae823d04f4207642.jpg", "file_size": 18987, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#大人T1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87abf5ee66904e8aae823d04f4207642.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87abf5ee66904e8aae823d04f4207642.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87abf5ee66904e8aae823d04f4207642.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87abf5ee66904e8aae823d04f4207642.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87abf5ee66904e8aae823d04f4207642.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SNx6h8Nr09Q1a2bfFrrD6cTSwhY=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.544889+00 2025-12-09 10:16:03.544896+00 21518 FX018#D SPMX-20240815316776 \N \N \N 1 \N [{"file_id": "671db576-bbec-469e-a9d8-c8fe537ffd7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "beea391ecf26492d88b204aaa3de14f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "beea391ecf26492d88b204aaa3de14f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "beea391ecf26492d88b204aaa3de14f0.jpg", "file_size": 7145, "is_delete": false, "file_type": 1, "original_file_name": "FX018#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beea391ecf26492d88b204aaa3de14f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beea391ecf26492d88b204aaa3de14f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/beea391ecf26492d88b204aaa3de14f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/beea391ecf26492d88b204aaa3de14f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/beea391ecf26492d88b204aaa3de14f0.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rfSMYPL2bpN1A_WbKIdiJ5gH7og=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.548426+00 2025-12-09 10:16:03.548433+00 21519 LJJR010-F#绿XL VS-D3 SPMX-20240815316770 \N \N \N 1 \N [{"file_id": "4d006a38-d805-445a-87c6-277cd45c1b5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcb3f868cf6247ad941dfdf6a0d882b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcb3f868cf6247ad941dfdf6a0d882b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcb3f868cf6247ad941dfdf6a0d882b2.jpg", "file_size": 17721, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3f868cf6247ad941dfdf6a0d882b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3f868cf6247ad941dfdf6a0d882b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb3f868cf6247ad941dfdf6a0d882b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcb3f868cf6247ad941dfdf6a0d882b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcb3f868cf6247ad941dfdf6a0d882b2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KkOFkjFFFlSIQCG2TGNGluF6hwg=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.552205+00 2025-12-09 10:16:03.552211+00 21520 DM9356#5XL SPMX-20240815316771 \N \N \N 1 \N [{"file_id": "40edc8f0-6eb8-4514-a160-e11b6b74cd4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44c46965794d4f5db502dcf8b4a63322.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44c46965794d4f5db502dcf8b4a63322.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44c46965794d4f5db502dcf8b4a63322.jpg", "file_size": 68064, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c46965794d4f5db502dcf8b4a63322.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c46965794d4f5db502dcf8b4a63322.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44c46965794d4f5db502dcf8b4a63322.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44c46965794d4f5db502dcf8b4a63322.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44c46965794d4f5db502dcf8b4a63322.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Oln4-Ksz9MZM7VNygCY7ZoU-K0=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.556159+00 2025-12-09 10:16:03.556166+00 21521 1277FWE#彩兰2XL SPMX-20240815316767 \N \N \N 1 \N [{"file_id": "269d629f-6d2a-4d8a-8438-f061308cd2e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92f0c7bf68794f4088ffcc390268c292.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92f0c7bf68794f4088ffcc390268c292.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92f0c7bf68794f4088ffcc390268c292.jpg", "file_size": 18649, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#彩兰2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f0c7bf68794f4088ffcc390268c292.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f0c7bf68794f4088ffcc390268c292.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92f0c7bf68794f4088ffcc390268c292.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92f0c7bf68794f4088ffcc390268c292.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92f0c7bf68794f4088ffcc390268c292.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3NyLhRwBANld9_6Z1eaiF6Z7AWM=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.560039+00 2025-12-09 10:16:03.560046+00 21522 JY-DR-251#A料9#枣红底杏 SPMX-20240815316768 \N \N \N 1 \N [{"file_id": "cd6bdd63-fa13-4ca8-86c3-592399f19986", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bcb2905f5060411cb01448be7eb27955.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bcb2905f5060411cb01448be7eb27955.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bcb2905f5060411cb01448be7eb27955.jpg", "file_size": 69126, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料9#枣红底杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb2905f5060411cb01448be7eb27955.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb2905f5060411cb01448be7eb27955.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bcb2905f5060411cb01448be7eb27955.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bcb2905f5060411cb01448be7eb27955.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bcb2905f5060411cb01448be7eb27955.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zDQNU8K8lrnE_bG5kZncX3_WKSI=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.563898+00 2025-12-09 10:16:03.563904+00 21523 88380FWF#J红色42码 SPMX-20240815316772 \N \N \N 1 \N [{"file_id": "f0cf0040-555d-4168-b079-17cbf2bbc1e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7d00a5255814265ad43fba065f57430.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7d00a5255814265ad43fba065f57430.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7d00a5255814265ad43fba065f57430.jpg", "file_size": 23962, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J红色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d00a5255814265ad43fba065f57430.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d00a5255814265ad43fba065f57430.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7d00a5255814265ad43fba065f57430.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7d00a5255814265ad43fba065f57430.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7d00a5255814265ad43fba065f57430.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2pneD89Ar0iGx2NIXPr94Bqglw=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.567598+00 2025-12-09 10:16:03.567605+00 21524 241217#-02-1 SPMX-20240815316775 \N \N \N 1 \N [{"file_id": "d4c8e4c5-9d79-4c0b-abb7-7cd9876896be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "517deae23a584406887813e88095fb3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "517deae23a584406887813e88095fb3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "517deae23a584406887813e88095fb3a.jpg", "file_size": 70254, "is_delete": false, "file_type": 1, "original_file_name": "241217#-02-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517deae23a584406887813e88095fb3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517deae23a584406887813e88095fb3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/517deae23a584406887813e88095fb3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/517deae23a584406887813e88095fb3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/517deae23a584406887813e88095fb3a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VSc_EG9izrU380UhKssV-5iprOM=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.571381+00 2025-12-09 10:16:03.571388+00 21525 003FWE#抓毛女L+童12 SPMX-20240815316769 \N \N \N 1 \N [{"file_id": "1266989c-999d-4906-afd9-f079b8216599", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dcd0f69ff4db4402924acfe4310b078c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dcd0f69ff4db4402924acfe4310b078c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dcd0f69ff4db4402924acfe4310b078c.jpg", "file_size": 12214, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女L+童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd0f69ff4db4402924acfe4310b078c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd0f69ff4db4402924acfe4310b078c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dcd0f69ff4db4402924acfe4310b078c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dcd0f69ff4db4402924acfe4310b078c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dcd0f69ff4db4402924acfe4310b078c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2z_LLczAigUk1ROjsZljLN7-1WU=", "createTime": "2024-08-15 15:10:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.575118+00 2025-12-09 10:16:03.575125+00 21526 LZ1428#大人T2号色 SPMX-20240815316786 \N \N \N 1 \N [{"file_id": "eb2073bf-5fc8-49f4-b25a-81c3b799ac95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg", "file_size": 17082, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#大人T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4a66eaec9cf47e0960c6a4f4e61ca6b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rb4stkeXEXX-vQFGi-_gVPbgonw=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.578961+00 2025-12-09 10:16:03.578968+00 21527 003FWE#抓毛女M SPMX-20240815316783 \N \N \N 1 \N [{"file_id": "778b1993-a03c-4dde-a3ec-22d4ebfd0b8a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43f90aa21eaa45abb1618943465c9925.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43f90aa21eaa45abb1618943465c9925.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43f90aa21eaa45abb1618943465c9925.jpg", "file_size": 11340, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f90aa21eaa45abb1618943465c9925.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f90aa21eaa45abb1618943465c9925.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43f90aa21eaa45abb1618943465c9925.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43f90aa21eaa45abb1618943465c9925.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43f90aa21eaa45abb1618943465c9925.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nxedPFwPybk6H0cml7AJHgCPHKk=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.582374+00 2025-12-09 10:16:03.582381+00 21528 FX018#VS-D3 SPMX-20240815316779 \N \N \N 1 \N [{"file_id": "3479adff-3f01-423c-a3cc-ee199d348ab8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "463f9b84fbf04db49521c295ff7cb635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "463f9b84fbf04db49521c295ff7cb635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "463f9b84fbf04db49521c295ff7cb635.jpg", "file_size": 10260, "is_delete": false, "file_type": 1, "original_file_name": "FX018#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463f9b84fbf04db49521c295ff7cb635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463f9b84fbf04db49521c295ff7cb635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/463f9b84fbf04db49521c295ff7cb635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/463f9b84fbf04db49521c295ff7cb635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/463f9b84fbf04db49521c295ff7cb635.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JhmHxxPiu7-XGtbTzbdbmfHRiSs=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.585929+00 2025-12-09 10:16:03.585936+00 21529 88380FWF#J红色44码 SPMX-20240815316782 \N \N \N 1 \N [{"file_id": "dac95e6d-dbd5-4320-80fd-6e5aa27b87eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc3abf403d1e4583bdb8caef40af91df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc3abf403d1e4583bdb8caef40af91df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc3abf403d1e4583bdb8caef40af91df.jpg", "file_size": 24760, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J红色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3abf403d1e4583bdb8caef40af91df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3abf403d1e4583bdb8caef40af91df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc3abf403d1e4583bdb8caef40af91df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc3abf403d1e4583bdb8caef40af91df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc3abf403d1e4583bdb8caef40af91df.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IEh1K-Sl7a3xbFrC29JT0m1BSyo=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.589385+00 2025-12-09 10:16:03.589391+00 21530 LJJR010-F#绿捆条VS-D3 SPMX-20240815316784 \N \N \N 1 \N [{"file_id": "31c5f5a2-9aac-4fb2-8b58-c4d5b1714841", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "751025fb4731415aaa90d9ccab22511e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "751025fb4731415aaa90d9ccab22511e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "751025fb4731415aaa90d9ccab22511e.jpg", "file_size": 9640, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#绿捆条VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751025fb4731415aaa90d9ccab22511e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751025fb4731415aaa90d9ccab22511e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/751025fb4731415aaa90d9ccab22511e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/751025fb4731415aaa90d9ccab22511e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/751025fb4731415aaa90d9ccab22511e.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFpKGP2q84xvJwcvllx5ihlDpT0=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.592794+00 2025-12-09 10:16:03.592805+00 21531 HXF024# SPMX-20240815316787 \N \N \N 1 \N [{"file_id": "bfe21ca4-0291-492b-b02a-4ae05eece89e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf29acc8b664442c827a5752ab225d3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf29acc8b664442c827a5752ab225d3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf29acc8b664442c827a5752ab225d3a.jpg", "file_size": 12196, "is_delete": false, "file_type": 1, "original_file_name": "HXF024#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf29acc8b664442c827a5752ab225d3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf29acc8b664442c827a5752ab225d3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf29acc8b664442c827a5752ab225d3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf29acc8b664442c827a5752ab225d3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf29acc8b664442c827a5752ab225d3a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fnFXT2o33YyuGQO4nb8QkO9k4q0=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.596261+00 2025-12-09 10:16:03.596269+00 21532 DM9356#捆条 SPMX-20240815316785 \N \N \N 1 \N [{"file_id": "891a4eca-439e-44b3-a32a-18dd870daf5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b78b970d189405b90f35b061fc5aad6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b78b970d189405b90f35b061fc5aad6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b78b970d189405b90f35b061fc5aad6.jpg", "file_size": 13192, "is_delete": false, "file_type": 1, "original_file_name": "DM9356#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b78b970d189405b90f35b061fc5aad6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b78b970d189405b90f35b061fc5aad6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b78b970d189405b90f35b061fc5aad6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b78b970d189405b90f35b061fc5aad6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b78b970d189405b90f35b061fc5aad6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiLsJiWGh797V8VE8hmstTSlO9Q=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.599718+00 2025-12-09 10:16:03.599725+00 21533 CHiC139#17号色-24码 SPMX-20240815316777 \N \N \N 1 \N [{"file_id": "bad7258f-e084-44e8-9fe4-5efc8089245f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49f8e9adcecf4f9995e16ccd8f6c601d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49f8e9adcecf4f9995e16ccd8f6c601d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49f8e9adcecf4f9995e16ccd8f6c601d.jpg", "file_size": 41268, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f8e9adcecf4f9995e16ccd8f6c601d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f8e9adcecf4f9995e16ccd8f6c601d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49f8e9adcecf4f9995e16ccd8f6c601d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49f8e9adcecf4f9995e16ccd8f6c601d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49f8e9adcecf4f9995e16ccd8f6c601d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dEEU5CyuFJG1BOrvSJWOhF9iBOc=", "createTime": "2024-08-15 15:10:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.603263+00 2025-12-09 10:16:03.60327+00 21534 241217#-02-2 SPMX-20240815316781 \N \N \N 1 \N [{"file_id": "987b4afd-8206-4b36-bd76-53a2e5c53de7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af7f73cf2f634b99a296271e9351329a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af7f73cf2f634b99a296271e9351329a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af7f73cf2f634b99a296271e9351329a.jpg", "file_size": 66830, "is_delete": false, "file_type": 1, "original_file_name": "241217#-02-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7f73cf2f634b99a296271e9351329a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7f73cf2f634b99a296271e9351329a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af7f73cf2f634b99a296271e9351329a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af7f73cf2f634b99a296271e9351329a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af7f73cf2f634b99a296271e9351329a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G3vTY1xpcjOqdouBXpWLREfgF1Y=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.606701+00 2025-12-09 10:16:03.606712+00 21535 JY-DR-251#A料9#浅杏底枣红 SPMX-20240815316778 \N \N \N 1 \N [{"file_id": "6699cb3d-6c7e-4aad-84f4-430b26e3c69f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3017b57f473f4408a98fcb63491fb5a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3017b57f473f4408a98fcb63491fb5a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3017b57f473f4408a98fcb63491fb5a6.jpg", "file_size": 70343, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#A料9#浅杏底枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017b57f473f4408a98fcb63491fb5a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017b57f473f4408a98fcb63491fb5a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3017b57f473f4408a98fcb63491fb5a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3017b57f473f4408a98fcb63491fb5a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3017b57f473f4408a98fcb63491fb5a6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ra2ZfVknSgU0hPsBDU1F_eTz2cI=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.610116+00 2025-12-09 10:16:03.610123+00 21536 1277FWE#彩兰4XL SPMX-20240815316780 \N \N \N 1 \N [{"file_id": "a1c9a9b1-05a9-4d08-9f24-ff9d3573a0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baa678cd9f194fc88bea86b36665be7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baa678cd9f194fc88bea86b36665be7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baa678cd9f194fc88bea86b36665be7d.jpg", "file_size": 17858, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#彩兰4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa678cd9f194fc88bea86b36665be7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa678cd9f194fc88bea86b36665be7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baa678cd9f194fc88bea86b36665be7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baa678cd9f194fc88bea86b36665be7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baa678cd9f194fc88bea86b36665be7d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:joJT_X36BzfyTSFcTqLu-Qiokk0=", "createTime": "2024-08-15 15:10:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.613568+00 2025-12-09 10:16:03.613574+00 21537 HXF024FW#VS-D3 SPMX-20240815316796 \N \N \N 1 \N [{"file_id": "73e24d90-bfb2-4e83-a18a-40a80630e598", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74b8a9f4cfac4e77b0b7f57d4a431991.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74b8a9f4cfac4e77b0b7f57d4a431991.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74b8a9f4cfac4e77b0b7f57d4a431991.jpg", "file_size": 24380, "is_delete": false, "file_type": 1, "original_file_name": "HXF024FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8a9f4cfac4e77b0b7f57d4a431991.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8a9f4cfac4e77b0b7f57d4a431991.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74b8a9f4cfac4e77b0b7f57d4a431991.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74b8a9f4cfac4e77b0b7f57d4a431991.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74b8a9f4cfac4e77b0b7f57d4a431991.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGVvz_unsiA62eRhIivw824EKHQ=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.617023+00 2025-12-09 10:16:03.61703+00 21538 LZ1428#大人T3号色 SPMX-20240815316795 \N \N \N 1 \N [{"file_id": "6460d72c-225e-4692-9818-9473d83f4e92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0d65cd813d04a809580381b10896342.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0d65cd813d04a809580381b10896342.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0d65cd813d04a809580381b10896342.jpg", "file_size": 17963, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#大人T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d65cd813d04a809580381b10896342.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d65cd813d04a809580381b10896342.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0d65cd813d04a809580381b10896342.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0d65cd813d04a809580381b10896342.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0d65cd813d04a809580381b10896342.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W2AvFHKSKppVJfyIN2vcz6VxM0Y=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.62045+00 2025-12-09 10:16:03.620457+00 21539 1277FWE#彩兰L SPMX-20240815316791 \N \N \N 1 \N [{"file_id": "622e5927-cad1-495c-83ef-548363f0cff3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb22cc0527c04b9ba7ac7b3cd612b42d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb22cc0527c04b9ba7ac7b3cd612b42d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb22cc0527c04b9ba7ac7b3cd612b42d.jpg", "file_size": 18537, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#彩兰L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb22cc0527c04b9ba7ac7b3cd612b42d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb22cc0527c04b9ba7ac7b3cd612b42d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb22cc0527c04b9ba7ac7b3cd612b42d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb22cc0527c04b9ba7ac7b3cd612b42d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb22cc0527c04b9ba7ac7b3cd612b42d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3SVf1SIDj2ck5WNbjNDlkq91OZ8=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.623919+00 2025-12-09 10:16:03.623926+00 21540 003FWE#抓毛女S SPMX-20240815316792 \N \N \N 1 \N [{"file_id": "b23c32dc-f835-4074-b73c-2119829431d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "07a2970ed5dd463d8b9deb9d414c9db9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "07a2970ed5dd463d8b9deb9d414c9db9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "07a2970ed5dd463d8b9deb9d414c9db9.jpg", "file_size": 11146, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a2970ed5dd463d8b9deb9d414c9db9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a2970ed5dd463d8b9deb9d414c9db9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/07a2970ed5dd463d8b9deb9d414c9db9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/07a2970ed5dd463d8b9deb9d414c9db9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/07a2970ed5dd463d8b9deb9d414c9db9.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4lGb5ugs4juntvJV4CgBB8_tVhE=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.627388+00 2025-12-09 10:16:03.627395+00 21541 DM9357#1XL SPMX-20240815316797 \N \N \N 1 \N [{"file_id": "220bf408-c0c3-47e5-ae77-0268ead952a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d9f509c7c854dca9c2141c267707e86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d9f509c7c854dca9c2141c267707e86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d9f509c7c854dca9c2141c267707e86.jpg", "file_size": 60384, "is_delete": false, "file_type": 1, "original_file_name": "DM9357#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9f509c7c854dca9c2141c267707e86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9f509c7c854dca9c2141c267707e86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d9f509c7c854dca9c2141c267707e86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d9f509c7c854dca9c2141c267707e86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d9f509c7c854dca9c2141c267707e86.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UqSuaTo3QL8sr2MBJWfsNZXiKA=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.630984+00 2025-12-09 10:16:03.63099+00 21542 88380FWF#J红色46码 SPMX-20240815316793 \N \N \N 1 \N [{"file_id": "5fcf0228-e960-4907-b5d3-30a957c0d89e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a229f7828c94eeb8c1e10350588f10b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a229f7828c94eeb8c1e10350588f10b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a229f7828c94eeb8c1e10350588f10b.jpg", "file_size": 25537, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J红色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a229f7828c94eeb8c1e10350588f10b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a229f7828c94eeb8c1e10350588f10b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a229f7828c94eeb8c1e10350588f10b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a229f7828c94eeb8c1e10350588f10b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a229f7828c94eeb8c1e10350588f10b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jVwjmjd5-s7d2uMMKfOZwo1B4a0=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.63448+00 2025-12-09 10:16:03.634487+00 21543 241217#-02-3 SPMX-20240815316788 \N \N \N 1 \N [{"file_id": "f893f5b9-a81e-435f-be98-2e688b6f350a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa9833dd744f460cbb6ae7e70b243c76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa9833dd744f460cbb6ae7e70b243c76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa9833dd744f460cbb6ae7e70b243c76.jpg", "file_size": 69143, "is_delete": false, "file_type": 1, "original_file_name": "241217#-02-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa9833dd744f460cbb6ae7e70b243c76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa9833dd744f460cbb6ae7e70b243c76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa9833dd744f460cbb6ae7e70b243c76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa9833dd744f460cbb6ae7e70b243c76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa9833dd744f460cbb6ae7e70b243c76.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kbD2-WwKoc-P9DuTrZRGgrxfN2Y=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.641359+00 2025-12-09 10:16:03.641367+00 21545 LJJR010-F#蓝2XL VS-D3 SPMX-20240815316794 \N \N \N 1 \N [{"file_id": "02ead856-36b9-42da-acd5-9fa3142e642e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8edce8de3cef4be9828f414b4c9fc7d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8edce8de3cef4be9828f414b4c9fc7d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8edce8de3cef4be9828f414b4c9fc7d6.jpg", "file_size": 19078, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝2XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edce8de3cef4be9828f414b4c9fc7d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edce8de3cef4be9828f414b4c9fc7d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8edce8de3cef4be9828f414b4c9fc7d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8edce8de3cef4be9828f414b4c9fc7d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8edce8de3cef4be9828f414b4c9fc7d6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8p8AIHNrCXneXmDNZKnV4_il9yo=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.637922+00 2025-12-09 10:16:03.637928+00 21544 JY-DR-251#B料1#浅杏底黑 SPMX-20240815316790 \N \N \N 1 \N [{"file_id": "c46c664e-3d4f-48f5-be4d-a97320c0d771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7b887399adc420b849224d24baadcd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7b887399adc420b849224d24baadcd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7b887399adc420b849224d24baadcd2.jpg", "file_size": 37114, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料1#浅杏底黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b887399adc420b849224d24baadcd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b887399adc420b849224d24baadcd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7b887399adc420b849224d24baadcd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7b887399adc420b849224d24baadcd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7b887399adc420b849224d24baadcd2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nEB-1rHDane0f651k29NKGdk7nE=", "createTime": "2024-08-15 15:10:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.648334+00 2025-12-09 10:16:03.648342+00 21546 241217#-02-4 SPMX-20240815316799 \N \N \N 1 \N [{"file_id": "287962af-3a40-412d-b2bc-7380697cd392", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b4eb3342b9445f6967820190c29869b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b4eb3342b9445f6967820190c29869b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b4eb3342b9445f6967820190c29869b.jpg", "file_size": 71602, "is_delete": false, "file_type": 1, "original_file_name": "241217#-02-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4eb3342b9445f6967820190c29869b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4eb3342b9445f6967820190c29869b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b4eb3342b9445f6967820190c29869b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b4eb3342b9445f6967820190c29869b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b4eb3342b9445f6967820190c29869b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KyEr9YmAZnQutZBVuo9ABkhBoQc=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.651775+00 2025-12-09 10:16:03.651782+00 21547 88380FWF#J红色48码 SPMX-20240815316801 \N \N \N 1 \N [{"file_id": "cb360307-bd93-4434-95bb-6e4756065de3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d37b51303b24c8793e39a53ee2dee94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d37b51303b24c8793e39a53ee2dee94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d37b51303b24c8793e39a53ee2dee94.jpg", "file_size": 25538, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J红色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d37b51303b24c8793e39a53ee2dee94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d37b51303b24c8793e39a53ee2dee94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d37b51303b24c8793e39a53ee2dee94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d37b51303b24c8793e39a53ee2dee94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d37b51303b24c8793e39a53ee2dee94.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TJZ30wUihyKJTM8W2a9QPEUq6G8=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.655244+00 2025-12-09 10:16:03.65525+00 21548 FX018#红色 SPMX-20240815316807 \N \N \N 1 \N [{"file_id": "1e4f8115-70db-440d-92f9-48f063e97d47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99ede00d6e834c31a5c993c56efbeece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99ede00d6e834c31a5c993c56efbeece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99ede00d6e834c31a5c993c56efbeece.jpg", "file_size": 29104, "is_delete": false, "file_type": 1, "original_file_name": "FX018#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ede00d6e834c31a5c993c56efbeece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ede00d6e834c31a5c993c56efbeece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99ede00d6e834c31a5c993c56efbeece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99ede00d6e834c31a5c993c56efbeece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99ede00d6e834c31a5c993c56efbeece.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JTZsOm77KCbQs0Ej_uqcmtoGa6s=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.658775+00 2025-12-09 10:16:03.658782+00 21549 HXF025# SPMX-20240815316805 \N \N \N 1 \N [{"file_id": "4c17b7a5-9aeb-4a31-b788-bf73805d3be7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "432abf4e91304b50a314b1316babaedb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "432abf4e91304b50a314b1316babaedb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "432abf4e91304b50a314b1316babaedb.jpg", "file_size": 6005, "is_delete": false, "file_type": 1, "original_file_name": "HXF025#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432abf4e91304b50a314b1316babaedb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432abf4e91304b50a314b1316babaedb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/432abf4e91304b50a314b1316babaedb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/432abf4e91304b50a314b1316babaedb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/432abf4e91304b50a314b1316babaedb.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xkowA0Lo4TlOmuTphuIMN6ZgdpQ=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.662189+00 2025-12-09 10:16:03.662195+00 21550 DM9357#2XL SPMX-20240815316808 \N \N \N 1 \N [{"file_id": "eb7b2bb8-4a48-4fc6-a742-03d2c6dbc126", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57490633a1aa426c9bfb7e319b715e01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57490633a1aa426c9bfb7e319b715e01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57490633a1aa426c9bfb7e319b715e01.jpg", "file_size": 60844, "is_delete": false, "file_type": 1, "original_file_name": "DM9357#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57490633a1aa426c9bfb7e319b715e01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57490633a1aa426c9bfb7e319b715e01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57490633a1aa426c9bfb7e319b715e01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57490633a1aa426c9bfb7e319b715e01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57490633a1aa426c9bfb7e319b715e01.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1edZ7Us3SuP1VcWFfqe-AdHwOPI=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.66563+00 2025-12-09 10:16:03.66564+00 21551 003FWE#抓毛女XL+童10 SPMX-20240815316800 \N \N \N 1 \N [{"file_id": "ff7151c1-7c58-489d-8af1-f5c70f67c3df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fee3f3f1f9d7473b98dfd16fef1d834d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fee3f3f1f9d7473b98dfd16fef1d834d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fee3f3f1f9d7473b98dfd16fef1d834d.jpg", "file_size": 12648, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛女XL+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee3f3f1f9d7473b98dfd16fef1d834d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee3f3f1f9d7473b98dfd16fef1d834d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fee3f3f1f9d7473b98dfd16fef1d834d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fee3f3f1f9d7473b98dfd16fef1d834d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fee3f3f1f9d7473b98dfd16fef1d834d.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q5KV5VvwEAPyJpdEFcXoipKWIWo=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.696755+00 2025-12-09 10:16:03.696761+00 21560 DM9357#3XL SPMX-20240815316819 \N \N \N 1 \N [{"file_id": "989b7cdf-12d7-4a0d-9cb8-f9b460ec26bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f41a00f69ee34e0a92c3117637227b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f41a00f69ee34e0a92c3117637227b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f41a00f69ee34e0a92c3117637227b5b.jpg", "file_size": 57330, "is_delete": false, "file_type": 1, "original_file_name": "DM9357#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41a00f69ee34e0a92c3117637227b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41a00f69ee34e0a92c3117637227b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f41a00f69ee34e0a92c3117637227b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f41a00f69ee34e0a92c3117637227b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f41a00f69ee34e0a92c3117637227b5b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:y7yqOcH4tRYw3DiCsSuPuo6TODA=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.669065+00 2025-12-09 10:16:03.669072+00 21552 JY-DR-251#B料1#黑底杏色 SPMX-20240815316802 \N \N \N 1 \N [{"file_id": "37e0a8d9-4110-4259-befe-6a339de97a97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b755637fc14cceb0283c776fef9b90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b755637fc14cceb0283c776fef9b90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b755637fc14cceb0283c776fef9b90.jpg", "file_size": 36913, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料1#黑底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b755637fc14cceb0283c776fef9b90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b755637fc14cceb0283c776fef9b90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b755637fc14cceb0283c776fef9b90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b755637fc14cceb0283c776fef9b90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b755637fc14cceb0283c776fef9b90.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:whb2bs2wSM6tuTW7p37rG1jqI1c=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.672517+00 2025-12-09 10:16:03.672523+00 21553 LZ1428#大人T4号色 SPMX-20240815316804 \N \N \N 1 \N [{"file_id": "cb07a2dd-542c-4091-a46e-2e1dbb2e45b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98eca4ecc9274504b3078d4a91697af2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98eca4ecc9274504b3078d4a91697af2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98eca4ecc9274504b3078d4a91697af2.jpg", "file_size": 16592, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#大人T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98eca4ecc9274504b3078d4a91697af2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98eca4ecc9274504b3078d4a91697af2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98eca4ecc9274504b3078d4a91697af2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98eca4ecc9274504b3078d4a91697af2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98eca4ecc9274504b3078d4a91697af2.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTCzY-EU69VpiRzjH1nBD5N_cM8=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.675901+00 2025-12-09 10:16:03.675907+00 21554 CHiC139#17号色-25码 SPMX-20240815316803 \N \N \N 1 \N [{"file_id": "ce3792d8-7bd1-4713-88de-3d70f050c69e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c0b2b8d601e4a12b790335dc9f10f81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c0b2b8d601e4a12b790335dc9f10f81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c0b2b8d601e4a12b790335dc9f10f81.jpg", "file_size": 42615, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0b2b8d601e4a12b790335dc9f10f81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0b2b8d601e4a12b790335dc9f10f81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c0b2b8d601e4a12b790335dc9f10f81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c0b2b8d601e4a12b790335dc9f10f81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c0b2b8d601e4a12b790335dc9f10f81.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4PnhT4DkS_lHAtTnctpiShiSVhM=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.679353+00 2025-12-09 10:16:03.679359+00 21555 1277FWE#彩兰XL SPMX-20240815316798 \N \N \N 1 \N [{"file_id": "60f6c82b-b67f-4023-9458-1a75316fbeac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "371c250773f741a183b103ebb040518b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "371c250773f741a183b103ebb040518b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "371c250773f741a183b103ebb040518b.jpg", "file_size": 16365, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c250773f741a183b103ebb040518b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c250773f741a183b103ebb040518b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/371c250773f741a183b103ebb040518b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/371c250773f741a183b103ebb040518b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/371c250773f741a183b103ebb040518b.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UWOVHxu319HTtbjbH4VbWOXX-3g=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.682809+00 2025-12-09 10:16:03.682815+00 21556 LJJR010-F#蓝3XL VS-D3 SPMX-20240815316806 \N \N \N 1 \N [{"file_id": "2ffc2471-5b97-456a-b9c8-af945a6850c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97c0095978cf4aa190780f4c13a471dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97c0095978cf4aa190780f4c13a471dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97c0095978cf4aa190780f4c13a471dc.jpg", "file_size": 19118, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝3XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c0095978cf4aa190780f4c13a471dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c0095978cf4aa190780f4c13a471dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97c0095978cf4aa190780f4c13a471dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97c0095978cf4aa190780f4c13a471dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97c0095978cf4aa190780f4c13a471dc.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UeV515HErDB0yKLQ-BTmhVP1z8M=", "createTime": "2024-08-15 15:10:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.686361+00 2025-12-09 10:16:03.686368+00 21557 CHiC139#17号色净色 SPMX-20240815316813 \N \N \N 1 \N [{"file_id": "74e7acf1-e1b0-4c6a-ac2a-2a787f0e0ea9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc68476ce096413f97fcecf1d060caa8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc68476ce096413f97fcecf1d060caa8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc68476ce096413f97fcecf1d060caa8.jpg", "file_size": 11462, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#17号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc68476ce096413f97fcecf1d060caa8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc68476ce096413f97fcecf1d060caa8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc68476ce096413f97fcecf1d060caa8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc68476ce096413f97fcecf1d060caa8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc68476ce096413f97fcecf1d060caa8.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H3SH9icGsi9VgrPSx34PqyxS4jQ=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.68979+00 2025-12-09 10:16:03.689796+00 21558 FX018#绿色 SPMX-20240815316818 \N \N \N 1 \N [{"file_id": "832a489c-866b-46a4-b386-1cd4b2a52b72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "632c179f798c483789968fd2dd878d2a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "632c179f798c483789968fd2dd878d2a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "632c179f798c483789968fd2dd878d2a.jpg", "file_size": 29813, "is_delete": false, "file_type": 1, "original_file_name": "FX018#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c179f798c483789968fd2dd878d2a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c179f798c483789968fd2dd878d2a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/632c179f798c483789968fd2dd878d2a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/632c179f798c483789968fd2dd878d2a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/632c179f798c483789968fd2dd878d2a.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CegpZ2jfbm8CR0xivTKRghq40x8=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.693232+00 2025-12-09 10:16:03.693239+00 21559 LJJR010-F#蓝4XL VS-D3 SPMX-20240815316816 \N \N \N 1 \N [{"file_id": "fdf0e09b-f06c-45b9-87f3-ab44699c5bfd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5a4beadb39044daa20dd4c00a160bf6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5a4beadb39044daa20dd4c00a160bf6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5a4beadb39044daa20dd4c00a160bf6.jpg", "file_size": 19297, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝4XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a4beadb39044daa20dd4c00a160bf6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a4beadb39044daa20dd4c00a160bf6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5a4beadb39044daa20dd4c00a160bf6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5a4beadb39044daa20dd4c00a160bf6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5a4beadb39044daa20dd4c00a160bf6.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RNhKXZaM9uI50QmPdVQ1UHbvZgE=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:03.700102+00 2025-12-09 10:16:03.700108+00 21561 241217#-03-1 SPMX-20240815316811 \N \N \N 1 \N [{"file_id": "030b1651-7b77-478f-b669-a83f90afe6ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "96b0d4254e7642949558ea86ce8b220c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "96b0d4254e7642949558ea86ce8b220c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "96b0d4254e7642949558ea86ce8b220c.jpg", "file_size": 66280, "is_delete": false, "file_type": 1, "original_file_name": "241217#-03-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b0d4254e7642949558ea86ce8b220c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b0d4254e7642949558ea86ce8b220c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/96b0d4254e7642949558ea86ce8b220c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/96b0d4254e7642949558ea86ce8b220c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/96b0d4254e7642949558ea86ce8b220c.jpg?e=1765361762&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YmP5bBFn_TqfxwlOOMW2G6Oq_QA=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.410877+00 2025-12-09 10:16:04.410889+00 21562 1277FWE#枣红2XL SPMX-20240815316809 \N \N \N 1 \N [{"file_id": "d45ff672-4970-4e41-8a19-0e42063e9442", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2717d2332b14245a60664a0f6d53dc5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2717d2332b14245a60664a0f6d53dc5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2717d2332b14245a60664a0f6d53dc5.jpg", "file_size": 19447, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#枣红2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2717d2332b14245a60664a0f6d53dc5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2717d2332b14245a60664a0f6d53dc5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2717d2332b14245a60664a0f6d53dc5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2717d2332b14245a60664a0f6d53dc5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2717d2332b14245a60664a0f6d53dc5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qu2kdl8xPtM4rANB5ueI-WWgoag=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.416206+00 2025-12-09 10:16:04.416218+00 21563 LZ1428#大人T5号色 SPMX-20240815316817 \N \N \N 1 \N [{"file_id": "81fcf7bf-75ee-4579-8a80-bec2fefff0fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4483f0d2794345b7932f04152d713b49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4483f0d2794345b7932f04152d713b49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4483f0d2794345b7932f04152d713b49.jpg", "file_size": 19058, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#大人T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4483f0d2794345b7932f04152d713b49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4483f0d2794345b7932f04152d713b49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4483f0d2794345b7932f04152d713b49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4483f0d2794345b7932f04152d713b49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4483f0d2794345b7932f04152d713b49.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6l78K3Jrm-FKo7e1br1PP1hy8o=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.420838+00 2025-12-09 10:16:04.42085+00 21564 88380FWF#J红色50码 SPMX-20240815316812 \N \N \N 1 \N [{"file_id": "07a4e726-166e-439f-a7cd-c6684f7df2fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e683dfffaa1a4fceb6cdece6baca9fbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e683dfffaa1a4fceb6cdece6baca9fbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e683dfffaa1a4fceb6cdece6baca9fbd.jpg", "file_size": 25697, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J红色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683dfffaa1a4fceb6cdece6baca9fbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683dfffaa1a4fceb6cdece6baca9fbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e683dfffaa1a4fceb6cdece6baca9fbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e683dfffaa1a4fceb6cdece6baca9fbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e683dfffaa1a4fceb6cdece6baca9fbd.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q9XW2uDkSPtkgsKygtBQzYn_YmE=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.424739+00 2025-12-09 10:16:04.424747+00 21565 003FWE#抓毛男2XL SPMX-20240815316810 \N \N \N 1 \N [{"file_id": "99e0c3b1-4a8e-45a6-bbbd-51ca8d7d9838", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0939d248837744429116422542fd56d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0939d248837744429116422542fd56d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0939d248837744429116422542fd56d9.jpg", "file_size": 16124, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0939d248837744429116422542fd56d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0939d248837744429116422542fd56d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0939d248837744429116422542fd56d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0939d248837744429116422542fd56d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0939d248837744429116422542fd56d9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FcF4J7cw55BTDDcYMWuhho4AiR0=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.428475+00 2025-12-09 10:16:04.42848+00 21566 JY-DR-251#B料10#白底杏色 SPMX-20240815316814 \N \N \N 1 \N [{"file_id": "255566a2-e083-4fd2-8ede-a5ff561387a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f59be6b7fd9748b593a58ce2bd8c03d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f59be6b7fd9748b593a58ce2bd8c03d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f59be6b7fd9748b593a58ce2bd8c03d6.jpg", "file_size": 33907, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料10#白底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59be6b7fd9748b593a58ce2bd8c03d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59be6b7fd9748b593a58ce2bd8c03d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f59be6b7fd9748b593a58ce2bd8c03d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f59be6b7fd9748b593a58ce2bd8c03d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f59be6b7fd9748b593a58ce2bd8c03d6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NO1CS7gJHKO9fGKEsZavI8WuCic=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.432044+00 2025-12-09 10:16:04.43205+00 21567 HXF025FW#VS-D3 SPMX-20240815316815 \N \N \N 1 \N [{"file_id": "477440e5-e358-4194-9385-58bc3d4c5ba5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aefa0de8da5b4fadb52225f19b44c8bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aefa0de8da5b4fadb52225f19b44c8bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aefa0de8da5b4fadb52225f19b44c8bd.jpg", "file_size": 24895, "is_delete": false, "file_type": 1, "original_file_name": "HXF025FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefa0de8da5b4fadb52225f19b44c8bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefa0de8da5b4fadb52225f19b44c8bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aefa0de8da5b4fadb52225f19b44c8bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aefa0de8da5b4fadb52225f19b44c8bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aefa0de8da5b4fadb52225f19b44c8bd.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mkKAqFuPYTCXCf825s1CL93wchI=", "createTime": "2024-08-15 15:10:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.435564+00 2025-12-09 10:16:04.43557+00 21568 1277FWE#枣红4XL SPMX-20240815316820 \N \N \N 1 \N [{"file_id": "64835dd8-6a71-4be2-ac5a-843f1283ca8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d095dbc02f14368b4cfd51e460914a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d095dbc02f14368b4cfd51e460914a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d095dbc02f14368b4cfd51e460914a2.jpg", "file_size": 17320, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#枣红4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d095dbc02f14368b4cfd51e460914a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d095dbc02f14368b4cfd51e460914a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d095dbc02f14368b4cfd51e460914a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d095dbc02f14368b4cfd51e460914a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d095dbc02f14368b4cfd51e460914a2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ssjr_bFrOXG11ImhgZm5pJfNUOo=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.439051+00 2025-12-09 10:16:04.439058+00 21569 003FWE#抓毛男3XL SPMX-20240815316821 \N \N \N 1 \N [{"file_id": "c0c3fc22-335b-4bb2-bc1e-350607e330bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b439309aa344e7a98d6199d69e961d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b439309aa344e7a98d6199d69e961d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b439309aa344e7a98d6199d69e961d8.jpg", "file_size": 16726, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b439309aa344e7a98d6199d69e961d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b439309aa344e7a98d6199d69e961d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b439309aa344e7a98d6199d69e961d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b439309aa344e7a98d6199d69e961d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b439309aa344e7a98d6199d69e961d8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4KNHdCQnUqxGCr7lh8EUnGBFMBg=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.442559+00 2025-12-09 10:16:04.442566+00 21570 88380FWF#J黄色42码 SPMX-20240815316822 \N \N \N 1 \N [{"file_id": "f995f936-0b46-4a0b-946f-9e100a4d8736", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5fedcc7cb1924609a239ae0e81e8f737.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5fedcc7cb1924609a239ae0e81e8f737.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5fedcc7cb1924609a239ae0e81e8f737.jpg", "file_size": 24316, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J黄色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fedcc7cb1924609a239ae0e81e8f737.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fedcc7cb1924609a239ae0e81e8f737.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5fedcc7cb1924609a239ae0e81e8f737.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5fedcc7cb1924609a239ae0e81e8f737.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5fedcc7cb1924609a239ae0e81e8f737.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x5zBm5A9sEfdH2yRXFXrulbySAA=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.4461+00 2025-12-09 10:16:04.446106+00 21571 LJJR010-F#蓝5XL VS-D3 SPMX-20240815316824 \N \N \N 1 \N [{"file_id": "7f9d2f48-4943-4336-bf5d-4524dcf367ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b457fe352dfc4228965c2380f577d1a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b457fe352dfc4228965c2380f577d1a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b457fe352dfc4228965c2380f577d1a0.jpg", "file_size": 19127, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝5XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b457fe352dfc4228965c2380f577d1a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b457fe352dfc4228965c2380f577d1a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b457fe352dfc4228965c2380f577d1a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b457fe352dfc4228965c2380f577d1a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b457fe352dfc4228965c2380f577d1a0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULuSOUwTD0gegiom7keuC-7BFbE=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.449687+00 2025-12-09 10:16:04.449694+00 21572 HXF026#粉底 SPMX-20240815316826 \N \N \N 1 \N [{"file_id": "bc00322c-424a-4a84-90e0-7d52e6f07797", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14afd992ab33424d920b1d340f6c9e01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14afd992ab33424d920b1d340f6c9e01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14afd992ab33424d920b1d340f6c9e01.jpg", "file_size": 13798, "is_delete": false, "file_type": 1, "original_file_name": "HXF026#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14afd992ab33424d920b1d340f6c9e01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14afd992ab33424d920b1d340f6c9e01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14afd992ab33424d920b1d340f6c9e01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14afd992ab33424d920b1d340f6c9e01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14afd992ab33424d920b1d340f6c9e01.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZL5WDNHuPhJpHENe1kGuTKz2CQ=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.453541+00 2025-12-09 10:16:04.453547+00 21573 JY-DR-251#B料2#浅杏底焦糖 SPMX-20240815316827 \N \N \N 1 \N [{"file_id": "1e360e05-9bf9-4aff-8e5f-c9c57e9a8447", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dfe9e36bead34a2fafc91e8d4362281d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dfe9e36bead34a2fafc91e8d4362281d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dfe9e36bead34a2fafc91e8d4362281d.jpg", "file_size": 41473, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料2#浅杏底焦糖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe9e36bead34a2fafc91e8d4362281d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe9e36bead34a2fafc91e8d4362281d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dfe9e36bead34a2fafc91e8d4362281d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dfe9e36bead34a2fafc91e8d4362281d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dfe9e36bead34a2fafc91e8d4362281d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNYE37mqx8AESm1-QeBkys7X_UQ=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.457112+00 2025-12-09 10:16:04.457119+00 21574 241217#-03-2 SPMX-20240815316823 \N \N \N 1 \N [{"file_id": "df9f043c-e10a-4d8f-9c11-b0c1649664da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e27c4d599eb04b2197af53e92a5f22ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e27c4d599eb04b2197af53e92a5f22ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e27c4d599eb04b2197af53e92a5f22ff.jpg", "file_size": 65009, "is_delete": false, "file_type": 1, "original_file_name": "241217#-03-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27c4d599eb04b2197af53e92a5f22ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27c4d599eb04b2197af53e92a5f22ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e27c4d599eb04b2197af53e92a5f22ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e27c4d599eb04b2197af53e92a5f22ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e27c4d599eb04b2197af53e92a5f22ff.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0zFAmYe20C6clLKNzodruiE3zBQ=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.460608+00 2025-12-09 10:16:04.460615+00 21575 CHiC139#18号色-21码 SPMX-20240815316825 \N \N \N 1 \N [{"file_id": "a2d015c2-8e6f-4947-998e-cfa32130ae8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ad05f356566a4b1daee697bd027800b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ad05f356566a4b1daee697bd027800b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ad05f356566a4b1daee697bd027800b4.jpg", "file_size": 45906, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05f356566a4b1daee697bd027800b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05f356566a4b1daee697bd027800b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ad05f356566a4b1daee697bd027800b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ad05f356566a4b1daee697bd027800b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ad05f356566a4b1daee697bd027800b4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZSmcU9i1Xf707iQ4xc-GtHFNVUQ=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.464205+00 2025-12-09 10:16:04.464213+00 21576 DM9357#4XL SPMX-20240815316828 \N \N \N 1 \N [{"file_id": "e38cf786-ac64-4af2-8477-2f48838e903c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9b85ff9caf04209b1028d3b8daac2af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9b85ff9caf04209b1028d3b8daac2af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9b85ff9caf04209b1028d3b8daac2af.jpg", "file_size": 58195, "is_delete": false, "file_type": 1, "original_file_name": "DM9357#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b85ff9caf04209b1028d3b8daac2af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b85ff9caf04209b1028d3b8daac2af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9b85ff9caf04209b1028d3b8daac2af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9b85ff9caf04209b1028d3b8daac2af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9b85ff9caf04209b1028d3b8daac2af.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NQArDFu3AHBxeQB5xlpQayeVXvY=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.467978+00 2025-12-09 10:16:04.467983+00 21577 LZ1428#童装T1号色 SPMX-20240815316829 \N \N \N 1 \N [{"file_id": "4fbb7ffc-f2f1-4af9-aa9d-73ce95ffc509", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94f039593a124bb4bd0d6cca4ebf9ab3.png?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94f039593a124bb4bd0d6cca4ebf9ab3.png?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94f039593a124bb4bd0d6cca4ebf9ab3.png", "file_size": 110493, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#童装T1号色.png", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f039593a124bb4bd0d6cca4ebf9ab3.png?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f039593a124bb4bd0d6cca4ebf9ab3.png?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94f039593a124bb4bd0d6cca4ebf9ab3.png", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94f039593a124bb4bd0d6cca4ebf9ab3.png", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94f039593a124bb4bd0d6cca4ebf9ab3.png?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:shJrwnWjtV0KOc70Naxkani5elI=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.471586+00 2025-12-09 10:16:04.471593+00 21578 88380FWF#J黄色44码 SPMX-20240815316832 \N \N \N 1 \N [{"file_id": "7ee7873d-d9de-4e24-888a-eefc8460b42e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e212b472a4064f13b07d1a6dde7eba6d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e212b472a4064f13b07d1a6dde7eba6d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e212b472a4064f13b07d1a6dde7eba6d.jpg", "file_size": 25010, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J黄色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e212b472a4064f13b07d1a6dde7eba6d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e212b472a4064f13b07d1a6dde7eba6d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e212b472a4064f13b07d1a6dde7eba6d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e212b472a4064f13b07d1a6dde7eba6d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e212b472a4064f13b07d1a6dde7eba6d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RohDWO0czvBtK9hJrhUIWbl5jGg=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.475077+00 2025-12-09 10:16:04.475083+00 21579 FX018FW#VS-D3 SPMX-20240815316839 \N \N \N 1 \N [{"file_id": "e5ad84ad-e9a0-4312-8512-aab741a14344", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8f5156e642f4561be948d54980bbdd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8f5156e642f4561be948d54980bbdd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8f5156e642f4561be948d54980bbdd8.jpg", "file_size": 15943, "is_delete": false, "file_type": 1, "original_file_name": "FX018FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f5156e642f4561be948d54980bbdd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f5156e642f4561be948d54980bbdd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8f5156e642f4561be948d54980bbdd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8f5156e642f4561be948d54980bbdd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8f5156e642f4561be948d54980bbdd8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cHFd2jK4pKkrrHz_kE0hS_OkTIw=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.478573+00 2025-12-09 10:16:04.47858+00 21580 JY-DR-251#B料3#浅杏底墨绿 SPMX-20240815316840 \N \N \N 1 \N [{"file_id": "2cb0a189-3e69-4b7e-8c2d-1ca2fc0391bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b60f2d2306e748f1aadb7de3a57b0f34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b60f2d2306e748f1aadb7de3a57b0f34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b60f2d2306e748f1aadb7de3a57b0f34.jpg", "file_size": 40310, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料3#浅杏底墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60f2d2306e748f1aadb7de3a57b0f34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60f2d2306e748f1aadb7de3a57b0f34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b60f2d2306e748f1aadb7de3a57b0f34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b60f2d2306e748f1aadb7de3a57b0f34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b60f2d2306e748f1aadb7de3a57b0f34.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRKOM-0MqMtAUcRb8usHxf1DT0Q=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.482096+00 2025-12-09 10:16:04.482102+00 21581 FX018#黄色 SPMX-20240815316830 \N \N \N 1 \N [{"file_id": "26a9c2b8-1750-4c11-bc8b-62a4738c3777", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "093d877cfba942799647cd044039b996.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "093d877cfba942799647cd044039b996.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "093d877cfba942799647cd044039b996.jpg", "file_size": 28510, "is_delete": false, "file_type": 1, "original_file_name": "FX018#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093d877cfba942799647cd044039b996.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093d877cfba942799647cd044039b996.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/093d877cfba942799647cd044039b996.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/093d877cfba942799647cd044039b996.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/093d877cfba942799647cd044039b996.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wj2ZEOPkZ2wRQUYwJlzXE3E0onk=", "createTime": "2024-08-15 15:10:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.485731+00 2025-12-09 10:16:04.485738+00 21582 1277FWE#枣红XL SPMX-20240815316843 \N \N \N 1 \N [{"file_id": "e4ab0d83-174a-4c22-bde9-54497bf38a12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff1bf1f4e12f43ec8890630e515f884a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff1bf1f4e12f43ec8890630e515f884a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff1bf1f4e12f43ec8890630e515f884a.jpg", "file_size": 18834, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#枣红XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1bf1f4e12f43ec8890630e515f884a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1bf1f4e12f43ec8890630e515f884a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff1bf1f4e12f43ec8890630e515f884a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff1bf1f4e12f43ec8890630e515f884a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff1bf1f4e12f43ec8890630e515f884a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eyeq8Ch0HU8__GAqDhPK8Ru-c6E=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.489114+00 2025-12-09 10:16:04.489121+00 21583 CHiC139#18号色-22码 SPMX-20240815316837 \N \N \N 1 \N [{"file_id": "7ce6d0a5-8c73-4f4c-83d0-1fc5af54278c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ba603e25fcd43ca92f32e952622a0f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ba603e25fcd43ca92f32e952622a0f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ba603e25fcd43ca92f32e952622a0f2.jpg", "file_size": 43477, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba603e25fcd43ca92f32e952622a0f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba603e25fcd43ca92f32e952622a0f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ba603e25fcd43ca92f32e952622a0f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ba603e25fcd43ca92f32e952622a0f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ba603e25fcd43ca92f32e952622a0f2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fH-fSXYnC8no8vySi60W_3mI4E4=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.492652+00 2025-12-09 10:16:04.492658+00 21584 LZ1428#童装T2号色 SPMX-20240815316841 \N \N \N 1 \N [{"file_id": "bf814aa4-cd78-4735-9beb-fca5f7d1c894", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb9d823af43f45dab7d05eda4d2e401b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb9d823af43f45dab7d05eda4d2e401b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb9d823af43f45dab7d05eda4d2e401b.jpg", "file_size": 20879, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#童装T2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9d823af43f45dab7d05eda4d2e401b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9d823af43f45dab7d05eda4d2e401b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9d823af43f45dab7d05eda4d2e401b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb9d823af43f45dab7d05eda4d2e401b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb9d823af43f45dab7d05eda4d2e401b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IgE5daAIoRHHFyMJKQBhdtP7u_o=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.496172+00 2025-12-09 10:16:04.496179+00 21585 HXF026#黑底 SPMX-20240815316835 \N \N \N 1 \N [{"file_id": "d4c9295c-3171-4bcf-81ae-0e442481a24c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4061503c15a84748bb8e8228861eebdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4061503c15a84748bb8e8228861eebdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4061503c15a84748bb8e8228861eebdb.jpg", "file_size": 15406, "is_delete": false, "file_type": 1, "original_file_name": "HXF026#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4061503c15a84748bb8e8228861eebdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4061503c15a84748bb8e8228861eebdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4061503c15a84748bb8e8228861eebdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4061503c15a84748bb8e8228861eebdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4061503c15a84748bb8e8228861eebdb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wTp8TiTzr0YYwsoZ6F56Kl96cl4=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.499662+00 2025-12-09 10:16:04.499669+00 21586 88380FWF#J黄色46码 SPMX-20240815316842 \N \N \N 1 \N [{"file_id": "255758fd-fd1d-4dce-9517-adc4e96596f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4b248d610264d8b8d2320396921bdd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4b248d610264d8b8d2320396921bdd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4b248d610264d8b8d2320396921bdd8.jpg", "file_size": 25906, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J黄色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b248d610264d8b8d2320396921bdd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b248d610264d8b8d2320396921bdd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4b248d610264d8b8d2320396921bdd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4b248d610264d8b8d2320396921bdd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4b248d610264d8b8d2320396921bdd8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NiuOjyItizZWOR7vA-Jdj9WiQU0=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.503204+00 2025-12-09 10:16:04.50321+00 21587 DM9357#5XL SPMX-20240815316838 \N \N \N 1 \N [{"file_id": "cf92f14d-4edc-4a32-b2e7-268fd3cdfe80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f2c2c64ef7741d9b75d373cf3c36573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f2c2c64ef7741d9b75d373cf3c36573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f2c2c64ef7741d9b75d373cf3c36573.jpg", "file_size": 54102, "is_delete": false, "file_type": 1, "original_file_name": "DM9357#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2c2c64ef7741d9b75d373cf3c36573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2c2c64ef7741d9b75d373cf3c36573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f2c2c64ef7741d9b75d373cf3c36573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f2c2c64ef7741d9b75d373cf3c36573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f2c2c64ef7741d9b75d373cf3c36573.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XX4xzKfakjbja-ozXz38ikE0Dtc=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.506609+00 2025-12-09 10:16:04.506616+00 21588 1277FWE#枣红L SPMX-20240815316831 \N \N \N 1 \N [{"file_id": "6782c5ac-1095-4ed5-b6b0-70f336240fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "caf765b344ed468c950406737490f68e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "caf765b344ed468c950406737490f68e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "caf765b344ed468c950406737490f68e.jpg", "file_size": 18727, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#枣红L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf765b344ed468c950406737490f68e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf765b344ed468c950406737490f68e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/caf765b344ed468c950406737490f68e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/caf765b344ed468c950406737490f68e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/caf765b344ed468c950406737490f68e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t-1Zj-H5VAkCuVoh8MLyn9eZDAQ=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.510177+00 2025-12-09 10:16:04.510184+00 21589 241217#-03-3 SPMX-20240815316834 \N \N \N 1 \N [{"file_id": "c6167c05-1480-40f3-a024-942a1d5eb359", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e274e4b5d57499989ba115d79ba6195.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e274e4b5d57499989ba115d79ba6195.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e274e4b5d57499989ba115d79ba6195.jpg", "file_size": 61880, "is_delete": false, "file_type": 1, "original_file_name": "241217#-03-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e274e4b5d57499989ba115d79ba6195.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e274e4b5d57499989ba115d79ba6195.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e274e4b5d57499989ba115d79ba6195.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e274e4b5d57499989ba115d79ba6195.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e274e4b5d57499989ba115d79ba6195.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CCHHuRfQc271GYVAwVbfwmAtl-U=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.513626+00 2025-12-09 10:16:04.513637+00 21590 LJJR010-F#蓝L VS-D3 SPMX-20240815316836 \N \N \N 1 \N [{"file_id": "f29ddca4-6425-4297-99e0-34092b5b5518", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7ca705d4fa9409ca21a68f297f0611a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7ca705d4fa9409ca21a68f297f0611a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7ca705d4fa9409ca21a68f297f0611a.jpg", "file_size": 18354, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝L VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7ca705d4fa9409ca21a68f297f0611a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7ca705d4fa9409ca21a68f297f0611a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7ca705d4fa9409ca21a68f297f0611a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7ca705d4fa9409ca21a68f297f0611a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7ca705d4fa9409ca21a68f297f0611a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qBLrDqPvn5OJK2tuRAyneF2HUdA=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.517142+00 2025-12-09 10:16:04.517148+00 21591 003FWE#抓毛男L+童8 SPMX-20240815316833 \N \N \N 1 \N [{"file_id": "f5a32f39-c97e-49ef-b949-691b7571fdf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a3cf96e1ace4166af721a9e2dc41482.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a3cf96e1ace4166af721a9e2dc41482.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a3cf96e1ace4166af721a9e2dc41482.jpg", "file_size": 12232, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男L+童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3cf96e1ace4166af721a9e2dc41482.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3cf96e1ace4166af721a9e2dc41482.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a3cf96e1ace4166af721a9e2dc41482.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a3cf96e1ace4166af721a9e2dc41482.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a3cf96e1ace4166af721a9e2dc41482.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eQ6EEcqYbMn_QTD-L1zgJ7mHX7Q=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.520646+00 2025-12-09 10:16:04.520654+00 21592 003FWE#抓毛男M+童10 SPMX-20240815316844 \N \N \N 1 \N [{"file_id": "f13da176-18a7-4e9c-ac71-584ffce76030", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f51d03d3ce544c35af4f445342409da2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f51d03d3ce544c35af4f445342409da2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f51d03d3ce544c35af4f445342409da2.jpg", "file_size": 12151, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男M+童10.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d03d3ce544c35af4f445342409da2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d03d3ce544c35af4f445342409da2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f51d03d3ce544c35af4f445342409da2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f51d03d3ce544c35af4f445342409da2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f51d03d3ce544c35af4f445342409da2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwZJ-_3vAR4B_Fct_dLWhdUy7ek=", "createTime": "2024-08-15 15:10:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.524265+00 2025-12-09 10:16:04.524272+00 21593 HXF026FW#宝蓝VS-D3 SPMX-20240815316845 \N \N \N 1 \N [{"file_id": "57bf8588-e65c-46f6-a119-4b84b906e319", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f75659739df74e4eb5242272a50dab5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f75659739df74e4eb5242272a50dab5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f75659739df74e4eb5242272a50dab5b.jpg", "file_size": 16565, "is_delete": false, "file_type": 1, "original_file_name": "HXF026FW#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75659739df74e4eb5242272a50dab5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75659739df74e4eb5242272a50dab5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f75659739df74e4eb5242272a50dab5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f75659739df74e4eb5242272a50dab5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f75659739df74e4eb5242272a50dab5b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xq2eg2vHbHn1HxUxaCMI1RMPEs=", "createTime": "2024-08-15 15:10:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.527751+00 2025-12-09 10:16:04.527757+00 21594 DM9363#1XL SPMX-20240815316856 \N \N \N 1 \N [{"file_id": "4b063e56-98d6-45bf-8547-158d2df36e28", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7593de60b4c4359a7c635fa2ff7e291.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7593de60b4c4359a7c635fa2ff7e291.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7593de60b4c4359a7c635fa2ff7e291.jpg", "file_size": 43912, "is_delete": false, "file_type": 1, "original_file_name": "DM9363#1XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7593de60b4c4359a7c635fa2ff7e291.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7593de60b4c4359a7c635fa2ff7e291.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7593de60b4c4359a7c635fa2ff7e291.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7593de60b4c4359a7c635fa2ff7e291.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7593de60b4c4359a7c635fa2ff7e291.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aZLWMbdUNs5Rf442DCS-fifUofY=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.531326+00 2025-12-09 10:16:04.531332+00 21595 LJJR010-F#蓝M VS-D3 SPMX-20240815316848 \N \N \N 1 \N [{"file_id": "bbb490e8-6164-4a72-9fce-70fc3291705b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a20b2d2c5fd4d169560fb6c196edad5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a20b2d2c5fd4d169560fb6c196edad5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a20b2d2c5fd4d169560fb6c196edad5.jpg", "file_size": 18163, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝M VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a20b2d2c5fd4d169560fb6c196edad5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a20b2d2c5fd4d169560fb6c196edad5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a20b2d2c5fd4d169560fb6c196edad5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a20b2d2c5fd4d169560fb6c196edad5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a20b2d2c5fd4d169560fb6c196edad5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gLcGjdEa9T4Q-9geOiMlL_87Gos=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.534856+00 2025-12-09 10:16:04.534863+00 21596 003FWE#抓毛男S+童12 SPMX-20240815316854 \N \N \N 1 \N [{"file_id": "fb0ce381-8a68-477b-b0d6-76995ccb1626", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6fc4250962c4c0386489aee3e2dc181.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6fc4250962c4c0386489aee3e2dc181.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6fc4250962c4c0386489aee3e2dc181.jpg", "file_size": 12333, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男S+童12.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc4250962c4c0386489aee3e2dc181.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc4250962c4c0386489aee3e2dc181.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6fc4250962c4c0386489aee3e2dc181.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6fc4250962c4c0386489aee3e2dc181.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6fc4250962c4c0386489aee3e2dc181.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vTAGwGHtKTHcF3LBgfhtABF9H1I=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.538628+00 2025-12-09 10:16:04.538635+00 21597 241217#-03-4 SPMX-20240815316847 \N \N \N 1 \N [{"file_id": "4351f3c0-8103-4316-bc3e-a488df331311", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e5fafd28784423a9615b170cc9dccbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e5fafd28784423a9615b170cc9dccbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e5fafd28784423a9615b170cc9dccbb.jpg", "file_size": 71699, "is_delete": false, "file_type": 1, "original_file_name": "241217#-03-4.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5fafd28784423a9615b170cc9dccbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5fafd28784423a9615b170cc9dccbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e5fafd28784423a9615b170cc9dccbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e5fafd28784423a9615b170cc9dccbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e5fafd28784423a9615b170cc9dccbb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D9D25ZIVvFE3fVJBQ9KP_Mh1XZ0=", "createTime": "2024-08-15 15:10:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.542326+00 2025-12-09 10:16:04.542333+00 21598 CHiC139#18号色-23码 SPMX-20240815316846 \N \N \N 1 \N [{"file_id": "f388ddb9-03b9-4055-9950-3d2d88ed462c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "503afed48c7b41f7b25e90229e26b729.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "503afed48c7b41f7b25e90229e26b729.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "503afed48c7b41f7b25e90229e26b729.jpg", "file_size": 44048, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503afed48c7b41f7b25e90229e26b729.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503afed48c7b41f7b25e90229e26b729.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/503afed48c7b41f7b25e90229e26b729.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/503afed48c7b41f7b25e90229e26b729.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/503afed48c7b41f7b25e90229e26b729.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TUQgvqLlYSzvKXktXm3DDT6IHVQ=", "createTime": "2024-08-15 15:10:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.546148+00 2025-12-09 10:16:04.546154+00 21599 HXF026FW#粉VS-D3 SPMX-20240815316853 \N \N \N 1 \N [{"file_id": "0b4cb635-7188-4fb0-b59f-5b0d6fb253a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04eeb85c2c704460a9575166e8c7f406.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04eeb85c2c704460a9575166e8c7f406.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04eeb85c2c704460a9575166e8c7f406.jpg", "file_size": 10255, "is_delete": false, "file_type": 1, "original_file_name": "HXF026FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04eeb85c2c704460a9575166e8c7f406.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04eeb85c2c704460a9575166e8c7f406.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04eeb85c2c704460a9575166e8c7f406.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04eeb85c2c704460a9575166e8c7f406.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04eeb85c2c704460a9575166e8c7f406.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EZfqAgnQnVGppImqBkQvJ8r6v8Y=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.550269+00 2025-12-09 10:16:04.550278+00 21600 FX018FWE#宝蓝VS-D3 SPMX-20240815316849 \N \N \N 1 \N [{"file_id": "88e8636c-3da3-4663-9d57-8ba6d44218b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa99caf12a4349f89ade12f8e63eed18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa99caf12a4349f89ade12f8e63eed18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa99caf12a4349f89ade12f8e63eed18.jpg", "file_size": 14946, "is_delete": false, "file_type": 1, "original_file_name": "FX018FWE#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa99caf12a4349f89ade12f8e63eed18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa99caf12a4349f89ade12f8e63eed18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa99caf12a4349f89ade12f8e63eed18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa99caf12a4349f89ade12f8e63eed18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa99caf12a4349f89ade12f8e63eed18.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uJlTy9j90JZSIUf6FovYvysq4sY=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.553907+00 2025-12-09 10:16:04.553914+00 21601 JY-DR-251#B料9#浅杏底枣红 SPMX-20240815316851 \N \N \N 1 \N [{"file_id": "74521ffe-87c9-4cc0-bba6-a313f2553225", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc33032c17734bffa65c127033e9659d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc33032c17734bffa65c127033e9659d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc33032c17734bffa65c127033e9659d.jpg", "file_size": 42175, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B料9#浅杏底枣红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc33032c17734bffa65c127033e9659d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc33032c17734bffa65c127033e9659d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc33032c17734bffa65c127033e9659d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc33032c17734bffa65c127033e9659d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc33032c17734bffa65c127033e9659d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CduszwXUwhKe_NOC-_HMIkqam3U=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.557489+00 2025-12-09 10:16:04.557496+00 21602 LZ1428#童装T3号色 SPMX-20240815316855 \N \N \N 1 \N [{"file_id": "f8518d7e-8805-403e-9efc-d0cf02758e16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e61b5c851744b2e88ff3cf0465bc37f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e61b5c851744b2e88ff3cf0465bc37f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e61b5c851744b2e88ff3cf0465bc37f.jpg", "file_size": 22059, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#童装T3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e61b5c851744b2e88ff3cf0465bc37f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e61b5c851744b2e88ff3cf0465bc37f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e61b5c851744b2e88ff3cf0465bc37f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e61b5c851744b2e88ff3cf0465bc37f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e61b5c851744b2e88ff3cf0465bc37f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CkkqQmPF3r3scGz3Aq-zNY89Ktg=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.560934+00 2025-12-09 10:16:04.560941+00 21603 88380FWF#J黄色48码 SPMX-20240815316850 \N \N \N 1 \N [{"file_id": "44f84552-c4fe-4977-9a85-7463272f2800", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e1afce5f046470dac9e83a4113613d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e1afce5f046470dac9e83a4113613d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e1afce5f046470dac9e83a4113613d2.jpg", "file_size": 26110, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J黄色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1afce5f046470dac9e83a4113613d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1afce5f046470dac9e83a4113613d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e1afce5f046470dac9e83a4113613d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e1afce5f046470dac9e83a4113613d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e1afce5f046470dac9e83a4113613d2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DZg7PQe86KQhkkbbqjLknCXND4Y=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.564392+00 2025-12-09 10:16:04.564399+00 21604 1277FWE#粉色2XL SPMX-20240815316852 \N \N \N 1 \N [{"file_id": "4fbbfd99-b503-46b1-94b9-72fa1d5d362a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d375245ad5cd4df8830caa54784af2da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d375245ad5cd4df8830caa54784af2da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d375245ad5cd4df8830caa54784af2da.jpg", "file_size": 18123, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d375245ad5cd4df8830caa54784af2da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d375245ad5cd4df8830caa54784af2da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d375245ad5cd4df8830caa54784af2da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d375245ad5cd4df8830caa54784af2da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d375245ad5cd4df8830caa54784af2da.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JPPaibOspHxtvqM5DMyhWudj4QU=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.567749+00 2025-12-09 10:16:04.567757+00 21605 LJJR010-F#蓝S VS-D3 SPMX-20240815316860 \N \N \N 1 \N [{"file_id": "d0eea131-105b-456b-8fa2-7b5933b338ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c476ff84adaf40078a96881afcc741ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c476ff84adaf40078a96881afcc741ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c476ff84adaf40078a96881afcc741ab.jpg", "file_size": 18043, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝S VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c476ff84adaf40078a96881afcc741ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c476ff84adaf40078a96881afcc741ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c476ff84adaf40078a96881afcc741ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c476ff84adaf40078a96881afcc741ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c476ff84adaf40078a96881afcc741ab.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1948ERVTCBKkx4QLsr7Mnit8oI0=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.571218+00 2025-12-09 10:16:04.571224+00 21606 JY-DR-251#B粒10#白底杏色 SPMX-20240815316864 \N \N \N 1 \N [{"file_id": "9db7eadf-67ba-4c2c-9fb0-2b900abe5cb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ddd71c4fc94f4f368cffa9914ba218f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ddd71c4fc94f4f368cffa9914ba218f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ddd71c4fc94f4f368cffa9914ba218f6.jpg", "file_size": 62559, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-251#B粒10#白底杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd71c4fc94f4f368cffa9914ba218f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd71c4fc94f4f368cffa9914ba218f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ddd71c4fc94f4f368cffa9914ba218f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ddd71c4fc94f4f368cffa9914ba218f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ddd71c4fc94f4f368cffa9914ba218f6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:80VfIIaRcIZvKgJm0Ey2XfstFsY=", "createTime": "2024-08-15 15:10:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.574645+00 2025-12-09 10:16:04.574652+00 21607 241275#-001-1 SPMX-20240815316859 \N \N \N 1 \N [{"file_id": "3802cca0-2821-4182-bad7-81ff5961c71c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "08fe34a8727240fcb26b6b0cd75e1a80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "08fe34a8727240fcb26b6b0cd75e1a80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "08fe34a8727240fcb26b6b0cd75e1a80.jpg", "file_size": 26338, "is_delete": false, "file_type": 1, "original_file_name": "241275#-001-1.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fe34a8727240fcb26b6b0cd75e1a80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fe34a8727240fcb26b6b0cd75e1a80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/08fe34a8727240fcb26b6b0cd75e1a80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/08fe34a8727240fcb26b6b0cd75e1a80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/08fe34a8727240fcb26b6b0cd75e1a80.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UfG5so3tLIIvts1H3OWt4QBt5dc=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.578078+00 2025-12-09 10:16:04.578084+00 21608 88380FWF#J黄色50码 SPMX-20240815316861 \N \N \N 1 \N [{"file_id": "b2fda194-8b02-4a0a-9377-f5d9aeb5de18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1fbda9a803749839e294e33d1d89495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1fbda9a803749839e294e33d1d89495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1fbda9a803749839e294e33d1d89495.jpg", "file_size": 25921, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#J黄色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1fbda9a803749839e294e33d1d89495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1fbda9a803749839e294e33d1d89495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1fbda9a803749839e294e33d1d89495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1fbda9a803749839e294e33d1d89495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1fbda9a803749839e294e33d1d89495.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JOoH3SeNYFLja4ugFEpMYvorVC0=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.581517+00 2025-12-09 10:16:04.581523+00 21609 FX018FWE#白VS-D3 SPMX-20240815316858 \N \N \N 1 \N [{"file_id": "0f664ca7-1655-4d41-862a-c3568e9d454f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2466ff8753d14e0b8d06ffecc35dddea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2466ff8753d14e0b8d06ffecc35dddea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2466ff8753d14e0b8d06ffecc35dddea.jpg", "file_size": 11038, "is_delete": false, "file_type": 1, "original_file_name": "FX018FWE#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2466ff8753d14e0b8d06ffecc35dddea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2466ff8753d14e0b8d06ffecc35dddea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2466ff8753d14e0b8d06ffecc35dddea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2466ff8753d14e0b8d06ffecc35dddea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2466ff8753d14e0b8d06ffecc35dddea.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zGDHTLeUOgEtj5-gy1hHHVOHbRM=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.584998+00 2025-12-09 10:16:04.585004+00 21610 HXF027#VS-D3 SPMX-20240815316863 \N \N \N 1 \N [{"file_id": "641193cf-54d9-4ba0-b498-7934de0f97aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3caa7a08550340b9ab722bb0189c4192.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3caa7a08550340b9ab722bb0189c4192.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3caa7a08550340b9ab722bb0189c4192.jpg", "file_size": 8532, "is_delete": false, "file_type": 1, "original_file_name": "HXF027#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caa7a08550340b9ab722bb0189c4192.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caa7a08550340b9ab722bb0189c4192.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3caa7a08550340b9ab722bb0189c4192.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3caa7a08550340b9ab722bb0189c4192.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3caa7a08550340b9ab722bb0189c4192.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JJy0GwC4VFQicQ6ryLCJVY7iwT8=", "createTime": "2024-08-15 15:10:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.592109+00 2025-12-09 10:16:04.592117+00 21611 LZ1428#童装T4号色 SPMX-20240815316866 \N \N \N 1 \N [{"file_id": "a20a4951-6c71-4414-bb7e-f2589178390c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a23ded06521143698196ec7f13a49a72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a23ded06521143698196ec7f13a49a72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a23ded06521143698196ec7f13a49a72.jpg", "file_size": 20354, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#童装T4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ded06521143698196ec7f13a49a72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ded06521143698196ec7f13a49a72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a23ded06521143698196ec7f13a49a72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a23ded06521143698196ec7f13a49a72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a23ded06521143698196ec7f13a49a72.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3U7p5JT2mH9KnOBc-58ZZaLxZlA=", "createTime": "2024-08-15 15:10:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.595649+00 2025-12-09 10:16:04.59566+00 21612 CHiC139#18号色-24码 SPMX-20240815316857 \N \N \N 1 \N [{"file_id": "3b29162a-8f0a-40ba-9372-bc00886e5ef9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "737ba72163064795b490f23e0aa62bde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "737ba72163064795b490f23e0aa62bde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "737ba72163064795b490f23e0aa62bde.jpg", "file_size": 45405, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737ba72163064795b490f23e0aa62bde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737ba72163064795b490f23e0aa62bde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/737ba72163064795b490f23e0aa62bde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/737ba72163064795b490f23e0aa62bde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/737ba72163064795b490f23e0aa62bde.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AJ9_eRiCwkOyv1DV11-DE0VSlgk=", "createTime": "2024-08-15 15:10:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.599261+00 2025-12-09 10:16:04.599267+00 21613 003FWE#抓毛男XL+童2 SPMX-20240815316865 \N \N \N 1 \N [{"file_id": "840343b0-7d1a-4df6-b98d-de3ddb322008", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f9fb714f907470aaf092d8178ec0c97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f9fb714f907470aaf092d8178ec0c97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f9fb714f907470aaf092d8178ec0c97.jpg", "file_size": 12113, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛男XL+童2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9fb714f907470aaf092d8178ec0c97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9fb714f907470aaf092d8178ec0c97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f9fb714f907470aaf092d8178ec0c97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f9fb714f907470aaf092d8178ec0c97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f9fb714f907470aaf092d8178ec0c97.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PHsxNz69xvHqqbGguXSwDOQTdtM=", "createTime": "2024-08-15 15:10:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.602776+00 2025-12-09 10:16:04.602783+00 21614 DM9363#2XL SPMX-20240815316867 \N \N \N 1 \N [{"file_id": "5e47164f-00e9-4c53-af53-2b99eb9c8788", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f68bcff3c40c4257aaeec23e9cfbeaa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f68bcff3c40c4257aaeec23e9cfbeaa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f68bcff3c40c4257aaeec23e9cfbeaa1.jpg", "file_size": 45990, "is_delete": false, "file_type": 1, "original_file_name": "DM9363#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68bcff3c40c4257aaeec23e9cfbeaa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68bcff3c40c4257aaeec23e9cfbeaa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f68bcff3c40c4257aaeec23e9cfbeaa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f68bcff3c40c4257aaeec23e9cfbeaa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f68bcff3c40c4257aaeec23e9cfbeaa1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CnETO36Jc_-8VcMhqXU_0qyjqbM=", "createTime": "2024-08-15 15:10:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.606302+00 2025-12-09 10:16:04.606309+00 21615 FX018FWE#粉VS-D3 SPMX-20240815316868 \N \N \N 1 \N [{"file_id": "b43ea0a3-0f41-419f-beac-c594d8c40bea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c383c2d04a5f462aa4b7e2c2d4225087.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c383c2d04a5f462aa4b7e2c2d4225087.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c383c2d04a5f462aa4b7e2c2d4225087.jpg", "file_size": 11099, "is_delete": false, "file_type": 1, "original_file_name": "FX018FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c383c2d04a5f462aa4b7e2c2d4225087.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c383c2d04a5f462aa4b7e2c2d4225087.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c383c2d04a5f462aa4b7e2c2d4225087.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c383c2d04a5f462aa4b7e2c2d4225087.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c383c2d04a5f462aa4b7e2c2d4225087.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7UXonJD3MAP0xSJ-Ic8RIjqJ2B0=", "createTime": "2024-08-15 15:10:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.609751+00 2025-12-09 10:16:04.609757+00 21616 241275#-001-2 SPMX-20240815316869 \N \N \N 1 \N [{"file_id": "013df71d-e2fb-466a-8c3d-f1d7a2b49664", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "51eeaafc7fe14f83a876e7c962c2ad1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "51eeaafc7fe14f83a876e7c962c2ad1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "51eeaafc7fe14f83a876e7c962c2ad1c.jpg", "file_size": 23308, "is_delete": false, "file_type": 1, "original_file_name": "241275#-001-2.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51eeaafc7fe14f83a876e7c962c2ad1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51eeaafc7fe14f83a876e7c962c2ad1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/51eeaafc7fe14f83a876e7c962c2ad1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/51eeaafc7fe14f83a876e7c962c2ad1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/51eeaafc7fe14f83a876e7c962c2ad1c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wmkrZY7QL_8MQSxRgvna8ZASowI=", "createTime": "2024-08-15 15:10:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.613132+00 2025-12-09 10:16:04.613139+00 21617 CHiC139#18号色-25码 SPMX-20240815316871 \N \N \N 1 \N [{"file_id": "4a192fb6-5e61-4adf-ace4-5250babe819a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "898ad67606e74cb68e7ece029c84d211.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "898ad67606e74cb68e7ece029c84d211.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "898ad67606e74cb68e7ece029c84d211.jpg", "file_size": 44165, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ad67606e74cb68e7ece029c84d211.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ad67606e74cb68e7ece029c84d211.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/898ad67606e74cb68e7ece029c84d211.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/898ad67606e74cb68e7ece029c84d211.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/898ad67606e74cb68e7ece029c84d211.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8Hhmy0NgxVYngO3s_cSY1v_DAYA=", "createTime": "2024-08-15 15:10:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.616555+00 2025-12-09 10:16:04.616561+00 21618 HXF027#粉 SPMX-20240815316870 \N \N \N 1 \N [{"file_id": "2182f628-245d-49c3-90c0-457c049a91b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b6df915d13145f5b29365b8da5d978a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b6df915d13145f5b29365b8da5d978a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b6df915d13145f5b29365b8da5d978a.jpg", "file_size": 16095, "is_delete": false, "file_type": 1, "original_file_name": "HXF027#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6df915d13145f5b29365b8da5d978a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6df915d13145f5b29365b8da5d978a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b6df915d13145f5b29365b8da5d978a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b6df915d13145f5b29365b8da5d978a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b6df915d13145f5b29365b8da5d978a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNTHtEdQRJVj_8JLv31DtvkyaPo=", "createTime": "2024-08-15 15:10:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.620091+00 2025-12-09 10:16:04.620098+00 21619 FX018FWE#绿VS-D3 SPMX-20240815316879 \N \N \N 1 \N [{"file_id": "938a3f8f-cfdf-45cf-aade-455e9057476d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bed69944c15d48c09df53fb37485124b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bed69944c15d48c09df53fb37485124b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bed69944c15d48c09df53fb37485124b.jpg", "file_size": 14089, "is_delete": false, "file_type": 1, "original_file_name": "FX018FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed69944c15d48c09df53fb37485124b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed69944c15d48c09df53fb37485124b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bed69944c15d48c09df53fb37485124b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bed69944c15d48c09df53fb37485124b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bed69944c15d48c09df53fb37485124b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WJoSCg4iqqhqJ7buWim2oc3DhxA=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.623551+00 2025-12-09 10:16:04.623557+00 21620 003FWE#男4XL番禺调色 SPMX-20240815316886 \N \N \N 1 \N [{"file_id": "3447babe-c9e4-40d8-8c0b-766271935fbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3dd335062ea425eba635bf41e169650.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3dd335062ea425eba635bf41e169650.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3dd335062ea425eba635bf41e169650.jpg", "file_size": 19906, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#男4XL番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd335062ea425eba635bf41e169650.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd335062ea425eba635bf41e169650.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3dd335062ea425eba635bf41e169650.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3dd335062ea425eba635bf41e169650.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3dd335062ea425eba635bf41e169650.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TjTHisYS4cbqDWiD_gKpVf8rYtE=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.627044+00 2025-12-09 10:16:04.627051+00 21621 LJJR010-F#蓝捆条VS-D3 SPMX-20240815316885 \N \N \N 1 \N [{"file_id": "4713d10e-3ca8-4081-a08e-eeb48293ebd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4fb621bad2f4cbc91cccc6d9e72abcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4fb621bad2f4cbc91cccc6d9e72abcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4fb621bad2f4cbc91cccc6d9e72abcb.jpg", "file_size": 10298, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝捆条VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fb621bad2f4cbc91cccc6d9e72abcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fb621bad2f4cbc91cccc6d9e72abcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4fb621bad2f4cbc91cccc6d9e72abcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4fb621bad2f4cbc91cccc6d9e72abcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4fb621bad2f4cbc91cccc6d9e72abcb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e7XwEfJ3Pb9DZaZ9BVMrEDEEVtc=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.630531+00 2025-12-09 10:16:04.630538+00 21622 DM9363#3XL SPMX-20240815316876 \N \N \N 1 \N [{"file_id": "fae02476-08aa-46ca-a2d0-75c9922eacd6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "72fde8ba9e5e426fb7ab098086445b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "72fde8ba9e5e426fb7ab098086445b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "72fde8ba9e5e426fb7ab098086445b46.jpg", "file_size": 47494, "is_delete": false, "file_type": 1, "original_file_name": "DM9363#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72fde8ba9e5e426fb7ab098086445b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72fde8ba9e5e426fb7ab098086445b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/72fde8ba9e5e426fb7ab098086445b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/72fde8ba9e5e426fb7ab098086445b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/72fde8ba9e5e426fb7ab098086445b46.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SjPq5dAy5kR2JE94udwdqOhqwgA=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.634065+00 2025-12-09 10:16:04.634072+00 21623 1277FWE#粉色L SPMX-20240815316874 \N \N \N 1 \N [{"file_id": "7d0603ef-5cd8-4a65-bfed-fc4a5e536f66", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "144b2ee3a8c24174b2d7b2426423094a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "144b2ee3a8c24174b2d7b2426423094a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "144b2ee3a8c24174b2d7b2426423094a.jpg", "file_size": 17721, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144b2ee3a8c24174b2d7b2426423094a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144b2ee3a8c24174b2d7b2426423094a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/144b2ee3a8c24174b2d7b2426423094a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/144b2ee3a8c24174b2d7b2426423094a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/144b2ee3a8c24174b2d7b2426423094a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rt8Jxcoxt4TPdTAoKdWxmNrGdkw=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.637574+00 2025-12-09 10:16:04.63758+00 21624 88380FWF#K杏色42码 SPMX-20240815316878 \N \N \N 1 \N [{"file_id": "41040446-020a-4eb7-af7d-209475a05a58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81087262d9a3404895156c43cd9c8023.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81087262d9a3404895156c43cd9c8023.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81087262d9a3404895156c43cd9c8023.jpg", "file_size": 23571, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K杏色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81087262d9a3404895156c43cd9c8023.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81087262d9a3404895156c43cd9c8023.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81087262d9a3404895156c43cd9c8023.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81087262d9a3404895156c43cd9c8023.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81087262d9a3404895156c43cd9c8023.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:d6y6dAmcJeG8xJjTlYRk_W3rqIg=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.641123+00 2025-12-09 10:16:04.64113+00 21625 1277FWE#粉色XL SPMX-20240815316884 \N \N \N 1 \N [{"file_id": "bd1c68fd-eec8-4d95-8ed5-abc9e493dfb8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "806bd46701cd424985a508188390f610.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "806bd46701cd424985a508188390f610.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "806bd46701cd424985a508188390f610.jpg", "file_size": 17838, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806bd46701cd424985a508188390f610.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806bd46701cd424985a508188390f610.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/806bd46701cd424985a508188390f610.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/806bd46701cd424985a508188390f610.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/806bd46701cd424985a508188390f610.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wQil3C8pLwk1dafsjC2T63lUFuM=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.644625+00 2025-12-09 10:16:04.644632+00 21626 003FWE#抓毛童8 SPMX-20240815316873 \N \N \N 1 \N [{"file_id": "71af9d03-5a85-4f2e-9a12-1eeaa7a420b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05621ce51ef64c4bb5e5f13c6df92667.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05621ce51ef64c4bb5e5f13c6df92667.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05621ce51ef64c4bb5e5f13c6df92667.jpg", "file_size": 10492, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#抓毛童8.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05621ce51ef64c4bb5e5f13c6df92667.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05621ce51ef64c4bb5e5f13c6df92667.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05621ce51ef64c4bb5e5f13c6df92667.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05621ce51ef64c4bb5e5f13c6df92667.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05621ce51ef64c4bb5e5f13c6df92667.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kc33qgkkLzWKZhmHDthr8I9fjS4=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.648108+00 2025-12-09 10:16:04.648115+00 21627 CHiC139#18号色净色 SPMX-20240815316882 \N \N \N 1 \N [{"file_id": "830a6855-f8a9-4be0-bbba-d25265a97842", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "908ccf8ea6a64a079c19293e70aa8504.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "908ccf8ea6a64a079c19293e70aa8504.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "908ccf8ea6a64a079c19293e70aa8504.jpg", "file_size": 13250, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#18号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ccf8ea6a64a079c19293e70aa8504.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ccf8ea6a64a079c19293e70aa8504.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/908ccf8ea6a64a079c19293e70aa8504.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/908ccf8ea6a64a079c19293e70aa8504.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/908ccf8ea6a64a079c19293e70aa8504.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K-kvSaIXW5QUsgonlPzr56dybT8=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.65168+00 2025-12-09 10:16:04.651687+00 21628 JY-DR-78#1号绿色 SPMX-20240815316872 \N \N \N 1 \N [{"file_id": "4f240d2f-f8a3-40e8-a187-97fbb73d1a67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "874f402eb2f14a7eac6574f1eb67a85c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "874f402eb2f14a7eac6574f1eb67a85c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "874f402eb2f14a7eac6574f1eb67a85c.jpg", "file_size": 15639, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-78#1号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874f402eb2f14a7eac6574f1eb67a85c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874f402eb2f14a7eac6574f1eb67a85c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/874f402eb2f14a7eac6574f1eb67a85c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/874f402eb2f14a7eac6574f1eb67a85c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/874f402eb2f14a7eac6574f1eb67a85c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tESs5NLV0JWklB10fyYZe8MvJ48=", "createTime": "2024-08-15 15:10:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.655135+00 2025-12-09 10:16:04.655141+00 21629 241275#-001-3 SPMX-20240815316880 \N \N \N 1 \N [{"file_id": "ab805d03-9064-4a92-bb70-0a87ec120b19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c80feb1992c64f759ee8d5f85c156ca6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c80feb1992c64f759ee8d5f85c156ca6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c80feb1992c64f759ee8d5f85c156ca6.jpg", "file_size": 27096, "is_delete": false, "file_type": 1, "original_file_name": "241275#-001-3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c80feb1992c64f759ee8d5f85c156ca6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c80feb1992c64f759ee8d5f85c156ca6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c80feb1992c64f759ee8d5f85c156ca6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c80feb1992c64f759ee8d5f85c156ca6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c80feb1992c64f759ee8d5f85c156ca6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zpIk8yp6eTRez0P3Wxw23OVpywY=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.658551+00 2025-12-09 10:16:04.658557+00 21630 LZ1428#童装T5号色 SPMX-20240815316877 \N \N \N 1 \N [{"file_id": "66b73dc7-6dbe-4c7e-9b83-5031d37896af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a4344a39b8349ac982ab6cc610fd0ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a4344a39b8349ac982ab6cc610fd0ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a4344a39b8349ac982ab6cc610fd0ba.jpg", "file_size": 24196, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#童装T5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4344a39b8349ac982ab6cc610fd0ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4344a39b8349ac982ab6cc610fd0ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a4344a39b8349ac982ab6cc610fd0ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a4344a39b8349ac982ab6cc610fd0ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a4344a39b8349ac982ab6cc610fd0ba.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWDPnE2LYAN21BsFFOnTIK9GRXU=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.662039+00 2025-12-09 10:16:04.662046+00 21631 LJJR010-F#蓝XL VS-D3 SPMX-20240815316875 \N \N \N 1 \N [{"file_id": "5706eefa-c944-4b97-86ce-2f4d7866aad8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5353362910742bdad005bccf23c2493.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5353362910742bdad005bccf23c2493.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5353362910742bdad005bccf23c2493.jpg", "file_size": 18186, "is_delete": false, "file_type": 1, "original_file_name": "LJJR010-F#蓝XL VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5353362910742bdad005bccf23c2493.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5353362910742bdad005bccf23c2493.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5353362910742bdad005bccf23c2493.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5353362910742bdad005bccf23c2493.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5353362910742bdad005bccf23c2493.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oly5lOsfdWw-yjDiIC_NoTnlTSA=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.665466+00 2025-12-09 10:16:04.665472+00 21632 HXF027#红 SPMX-20240815316881 \N \N \N 1 \N [{"file_id": "f013e866-90a7-41be-a5f3-a5134ed5852e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5419922aa0345bfb3bb1c18d577613d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5419922aa0345bfb3bb1c18d577613d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5419922aa0345bfb3bb1c18d577613d.jpg", "file_size": 17485, "is_delete": false, "file_type": 1, "original_file_name": "HXF027#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5419922aa0345bfb3bb1c18d577613d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5419922aa0345bfb3bb1c18d577613d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5419922aa0345bfb3bb1c18d577613d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5419922aa0345bfb3bb1c18d577613d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5419922aa0345bfb3bb1c18d577613d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tBLwJl__d0wg4K8FeVD8b5A2XJk=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.669003+00 2025-12-09 10:16:04.66901+00 21633 JY-DR-78#2号蓝色 SPMX-20240815316883 \N \N \N 1 \N [{"file_id": "b34321e9-ec35-4c10-9ec2-d778c7840c6c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4451dd5bb2f8452e82262aac768d4f43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4451dd5bb2f8452e82262aac768d4f43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4451dd5bb2f8452e82262aac768d4f43.jpg", "file_size": 13056, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-78#2号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451dd5bb2f8452e82262aac768d4f43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451dd5bb2f8452e82262aac768d4f43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4451dd5bb2f8452e82262aac768d4f43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4451dd5bb2f8452e82262aac768d4f43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4451dd5bb2f8452e82262aac768d4f43.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AORQHOynCGGyx9G6C7uRVNt37DU=", "createTime": "2024-08-15 15:10:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.672507+00 2025-12-09 10:16:04.672513+00 21634 DM9363#4XL SPMX-20240815316889 \N \N \N 1 \N [{"file_id": "3fa200d6-33e9-4193-a7e6-4ed07cc33f74", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "871cd42bbc6f471da3dc3ff64a3ce37a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "871cd42bbc6f471da3dc3ff64a3ce37a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "871cd42bbc6f471da3dc3ff64a3ce37a.jpg", "file_size": 47268, "is_delete": false, "file_type": 1, "original_file_name": "DM9363#4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871cd42bbc6f471da3dc3ff64a3ce37a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871cd42bbc6f471da3dc3ff64a3ce37a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/871cd42bbc6f471da3dc3ff64a3ce37a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/871cd42bbc6f471da3dc3ff64a3ce37a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/871cd42bbc6f471da3dc3ff64a3ce37a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pL5BLl-DWAd9rQKv1DWlJLS9OKU=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.676023+00 2025-12-09 10:16:04.676031+00 21635 88380FWF#K杏色44码 SPMX-20240815316891 \N \N \N 1 \N [{"file_id": "6d3b4105-ba54-4386-b7f2-ae247c0b9a3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "883fdb66040242dd9ed501f63fdbfb41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "883fdb66040242dd9ed501f63fdbfb41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "883fdb66040242dd9ed501f63fdbfb41.jpg", "file_size": 24403, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K杏色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883fdb66040242dd9ed501f63fdbfb41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883fdb66040242dd9ed501f63fdbfb41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/883fdb66040242dd9ed501f63fdbfb41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/883fdb66040242dd9ed501f63fdbfb41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/883fdb66040242dd9ed501f63fdbfb41.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SM_DimgPdD8qwkqA-de8R5xqJTQ=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.67944+00 2025-12-09 10:16:04.679446+00 21636 1277FWE#豆沙2XL SPMX-20240815316892 \N \N \N 1 \N [{"file_id": "316ec5d1-85bd-457c-a294-3c31b994be5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c97eb3be29c34dbbb02e921c57dcae6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c97eb3be29c34dbbb02e921c57dcae6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c97eb3be29c34dbbb02e921c57dcae6c.jpg", "file_size": 18512, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#豆沙2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97eb3be29c34dbbb02e921c57dcae6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97eb3be29c34dbbb02e921c57dcae6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c97eb3be29c34dbbb02e921c57dcae6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c97eb3be29c34dbbb02e921c57dcae6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c97eb3be29c34dbbb02e921c57dcae6c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F_kI6KitV6rAzGlKD6blXlOt2vk=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.683139+00 2025-12-09 10:16:04.683146+00 21637 LZ1428#粉M SPMX-20240815316887 \N \N \N 1 \N [{"file_id": "2bf1335f-8fa4-46c0-a249-f4632b923f7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9ff0a992c1a945f986536a0b28b09e5e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9ff0a992c1a945f986536a0b28b09e5e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9ff0a992c1a945f986536a0b28b09e5e.jpg", "file_size": 14816, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#粉M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff0a992c1a945f986536a0b28b09e5e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff0a992c1a945f986536a0b28b09e5e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9ff0a992c1a945f986536a0b28b09e5e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9ff0a992c1a945f986536a0b28b09e5e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9ff0a992c1a945f986536a0b28b09e5e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kx12TOsM2_ofhU54wEQJve3fVLs=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.686723+00 2025-12-09 10:16:04.68673+00 21638 FX018FWE#黑VS-D3 SPMX-20240815316890 \N \N \N 1 \N [{"file_id": "4950153c-b59f-4943-99c6-e46068e02e8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fcb142f55f61446190647f907f3e53e9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fcb142f55f61446190647f907f3e53e9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fcb142f55f61446190647f907f3e53e9.jpg", "file_size": 14334, "is_delete": false, "file_type": 1, "original_file_name": "FX018FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb142f55f61446190647f907f3e53e9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb142f55f61446190647f907f3e53e9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fcb142f55f61446190647f907f3e53e9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fcb142f55f61446190647f907f3e53e9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fcb142f55f61446190647f907f3e53e9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OCW-kGigE-FMQWIcme5PG3le7A4=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.690283+00 2025-12-09 10:16:04.690289+00 21639 2417FWF#黄色前后片 SPMX-20240815316893 \N \N \N 1 \N [{"file_id": "7845eccf-e8ae-463b-b486-02e87085e153", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a052684eee7e44239bd4b46d6b357fb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a052684eee7e44239bd4b46d6b357fb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a052684eee7e44239bd4b46d6b357fb6.jpg", "file_size": 13640, "is_delete": false, "file_type": 1, "original_file_name": "2417FWF#黄色前后片.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a052684eee7e44239bd4b46d6b357fb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a052684eee7e44239bd4b46d6b357fb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a052684eee7e44239bd4b46d6b357fb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a052684eee7e44239bd4b46d6b357fb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a052684eee7e44239bd4b46d6b357fb6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wa-zdhZulGGYpHSmCAD5pHUOVBU=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.693806+00 2025-12-09 10:16:04.693813+00 21640 003FWE#黑色匹布 SPMX-20240815316894 \N \N \N 1 \N [{"file_id": "8aaefc0a-8c36-482e-a91a-a3117fa9057c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5277818f0474a52a74a58c99e4afd47.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5277818f0474a52a74a58c99e4afd47.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5277818f0474a52a74a58c99e4afd47.jpg", "file_size": 6608, "is_delete": false, "file_type": 1, "original_file_name": "003FWE#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5277818f0474a52a74a58c99e4afd47.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5277818f0474a52a74a58c99e4afd47.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5277818f0474a52a74a58c99e4afd47.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5277818f0474a52a74a58c99e4afd47.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5277818f0474a52a74a58c99e4afd47.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SioyQJmKYgROuQW3RGKOG7uOtmA=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.697341+00 2025-12-09 10:16:04.697348+00 21641 HXF027#蓝 SPMX-20240815316888 \N \N \N 1 \N [{"file_id": "b8aabdb7-29bb-484f-9246-55b88724eba9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e20949a16b5c442d82a2fdf79ec20e75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e20949a16b5c442d82a2fdf79ec20e75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e20949a16b5c442d82a2fdf79ec20e75.jpg", "file_size": 16174, "is_delete": false, "file_type": 1, "original_file_name": "HXF027#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20949a16b5c442d82a2fdf79ec20e75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20949a16b5c442d82a2fdf79ec20e75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e20949a16b5c442d82a2fdf79ec20e75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e20949a16b5c442d82a2fdf79ec20e75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e20949a16b5c442d82a2fdf79ec20e75.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eukLuAe6Lc4WCOf0yHG0vDnYx0M=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.700943+00 2025-12-09 10:16:04.700949+00 21642 CHiC139#1号色-22码 SPMX-20240815316906 \N \N \N 1 \N [{"file_id": "10bffdda-88f3-4ee4-a24d-1f3834b4c31b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea0fa00d379340c080f31faf2a740935.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea0fa00d379340c080f31faf2a740935.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea0fa00d379340c080f31faf2a740935.jpg", "file_size": 47209, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0fa00d379340c080f31faf2a740935.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0fa00d379340c080f31faf2a740935.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea0fa00d379340c080f31faf2a740935.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea0fa00d379340c080f31faf2a740935.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea0fa00d379340c080f31faf2a740935.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:evxb0wMGAQMm5NzF5a9LxBqfebk=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.704459+00 2025-12-09 10:16:04.704466+00 21643 LZ1428#粉净色 SPMX-20240815316898 \N \N \N 1 \N [{"file_id": "46ec8002-c64c-4d4c-9695-77045ad26494", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0f1c168f8d645eba29f6e32df4d1e0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0f1c168f8d645eba29f6e32df4d1e0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0f1c168f8d645eba29f6e32df4d1e0f.jpg", "file_size": 7255, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#粉净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f1c168f8d645eba29f6e32df4d1e0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f1c168f8d645eba29f6e32df4d1e0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0f1c168f8d645eba29f6e32df4d1e0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0f1c168f8d645eba29f6e32df4d1e0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0f1c168f8d645eba29f6e32df4d1e0f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mHR-fzrSQJTLYS_xJ2taceZHgU0=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.707909+00 2025-12-09 10:16:04.707916+00 21644 FX019# SPMX-20240815316900 \N \N \N 1 \N [{"file_id": "a997fd73-8a79-474f-ab7d-16c0a7c201b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f94018497024fcab6ca6f5b04a43061.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f94018497024fcab6ca6f5b04a43061.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f94018497024fcab6ca6f5b04a43061.jpg", "file_size": 6213, "is_delete": false, "file_type": 1, "original_file_name": "FX019#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f94018497024fcab6ca6f5b04a43061.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f94018497024fcab6ca6f5b04a43061.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f94018497024fcab6ca6f5b04a43061.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f94018497024fcab6ca6f5b04a43061.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f94018497024fcab6ca6f5b04a43061.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:INOAoA0USp3jaPuHBbbI0IkWWIA=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.711627+00 2025-12-09 10:16:04.711634+00 21645 1277FWE#豆沙4XL SPMX-20240815316903 \N \N \N 1 \N [{"file_id": "6085e29a-c960-4fd2-8fb6-a0dea1551104", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a9b9ead19474c6c897350016914fece.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a9b9ead19474c6c897350016914fece.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a9b9ead19474c6c897350016914fece.jpg", "file_size": 16688, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#豆沙4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b9ead19474c6c897350016914fece.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b9ead19474c6c897350016914fece.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a9b9ead19474c6c897350016914fece.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a9b9ead19474c6c897350016914fece.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a9b9ead19474c6c897350016914fece.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CbypCminx-yDgH7sHwGnug_WME0=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.715781+00 2025-12-09 10:16:04.715788+00 21646 CHiC139#1号色-21码 SPMX-20240815316896 \N \N \N 1 \N [{"file_id": "184f09da-fbc3-491d-995f-5a80515ddd95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d5331ae247646109f86011fa21e703f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d5331ae247646109f86011fa21e703f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d5331ae247646109f86011fa21e703f.jpg", "file_size": 48566, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5331ae247646109f86011fa21e703f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5331ae247646109f86011fa21e703f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d5331ae247646109f86011fa21e703f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d5331ae247646109f86011fa21e703f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d5331ae247646109f86011fa21e703f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EW_zYWEr-STr0QiEuBUd-UWGxL0=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.719937+00 2025-12-09 10:16:04.719944+00 21647 LJM0709-24FWE#VS-D3 SPMX-20240815316897 \N \N \N 1 \N [{"file_id": "139113ae-a18b-44df-b387-dbc562857bf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c2cb608e7fc4436a4743db53883d982.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c2cb608e7fc4436a4743db53883d982.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c2cb608e7fc4436a4743db53883d982.jpg", "file_size": 14458, "is_delete": false, "file_type": 1, "original_file_name": "LJM0709-24FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2cb608e7fc4436a4743db53883d982.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2cb608e7fc4436a4743db53883d982.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c2cb608e7fc4436a4743db53883d982.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c2cb608e7fc4436a4743db53883d982.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c2cb608e7fc4436a4743db53883d982.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bDz4tk-6Qd7to-ZY68_49eyxtRo=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.724016+00 2025-12-09 10:16:04.724022+00 21648 HXF027#黄 SPMX-20240815316901 \N \N \N 1 \N [{"file_id": "52008890-3c04-4ac2-a7cb-b20c73fb32dd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d041ae3d3f284032b697458ce4729376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d041ae3d3f284032b697458ce4729376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d041ae3d3f284032b697458ce4729376.jpg", "file_size": 17261, "is_delete": false, "file_type": 1, "original_file_name": "HXF027#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041ae3d3f284032b697458ce4729376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041ae3d3f284032b697458ce4729376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d041ae3d3f284032b697458ce4729376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d041ae3d3f284032b697458ce4729376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d041ae3d3f284032b697458ce4729376.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r6DAdCvXJNEljyFatXOyFnQiUEs=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.728009+00 2025-12-09 10:16:04.728015+00 21649 JY-DR-78#5号红色 SPMX-20240815316895 \N \N \N 1 \N [{"file_id": "359b9e0c-b11b-4647-a3ab-1974e4455136", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3448693c04414e0a9275013e26d65579.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3448693c04414e0a9275013e26d65579.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3448693c04414e0a9275013e26d65579.jpg", "file_size": 17691, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-78#5号红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3448693c04414e0a9275013e26d65579.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3448693c04414e0a9275013e26d65579.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3448693c04414e0a9275013e26d65579.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3448693c04414e0a9275013e26d65579.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3448693c04414e0a9275013e26d65579.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oxtVjooa5UrHI4BnZmRiayNgdlw=", "createTime": "2024-08-15 15:10:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.731941+00 2025-12-09 10:16:04.731948+00 21650 88380FWF#K杏色46码 SPMX-20240815316899 \N \N \N 1 \N [{"file_id": "4a5a1dfa-dd54-49cb-b285-eb5271b0cc01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeb7a39cd0a2457ebb4e448cc4059754.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeb7a39cd0a2457ebb4e448cc4059754.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeb7a39cd0a2457ebb4e448cc4059754.jpg", "file_size": 24655, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K杏色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb7a39cd0a2457ebb4e448cc4059754.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb7a39cd0a2457ebb4e448cc4059754.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeb7a39cd0a2457ebb4e448cc4059754.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeb7a39cd0a2457ebb4e448cc4059754.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeb7a39cd0a2457ebb4e448cc4059754.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiOZivAlZoMlbDchLMxh9XtGrz0=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.735892+00 2025-12-09 10:16:04.735898+00 21651 2417FWF#黄色匹布 SPMX-20240815316907 \N \N \N 1 \N [{"file_id": "b3ac3575-ec1c-443d-ba13-2f4c41cf5485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1f04b790b774a95bbfa7d2e4842aecb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1f04b790b774a95bbfa7d2e4842aecb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1f04b790b774a95bbfa7d2e4842aecb.jpg", "file_size": 12684, "is_delete": false, "file_type": 1, "original_file_name": "2417FWF#黄色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f04b790b774a95bbfa7d2e4842aecb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f04b790b774a95bbfa7d2e4842aecb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f04b790b774a95bbfa7d2e4842aecb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1f04b790b774a95bbfa7d2e4842aecb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1f04b790b774a95bbfa7d2e4842aecb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q12RWt-FlIF8foQ-LxyKi8raPlM=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.739966+00 2025-12-09 10:16:04.739974+00 21652 DM9363#5XL SPMX-20240815316902 \N \N \N 1 \N [{"file_id": "c6076a56-e7a6-49d5-909f-6ad1e33960ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4169ba5fe7374919aaa89e9ea3fef89e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4169ba5fe7374919aaa89e9ea3fef89e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4169ba5fe7374919aaa89e9ea3fef89e.jpg", "file_size": 47642, "is_delete": false, "file_type": 1, "original_file_name": "DM9363#5XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169ba5fe7374919aaa89e9ea3fef89e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169ba5fe7374919aaa89e9ea3fef89e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4169ba5fe7374919aaa89e9ea3fef89e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4169ba5fe7374919aaa89e9ea3fef89e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4169ba5fe7374919aaa89e9ea3fef89e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vgTTkQ8m6b4P220BGFmY80QW0CY=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.743996+00 2025-12-09 10:16:04.744004+00 21653 LZ1428#绿M SPMX-20240815316905 \N \N \N 1 \N [{"file_id": "39ff0643-3d6a-4711-86cc-826437744138", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faf32abd8ac8463a9a9ea4b152c69994.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faf32abd8ac8463a9a9ea4b152c69994.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faf32abd8ac8463a9a9ea4b152c69994.jpg", "file_size": 14107, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#绿M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf32abd8ac8463a9a9ea4b152c69994.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf32abd8ac8463a9a9ea4b152c69994.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faf32abd8ac8463a9a9ea4b152c69994.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faf32abd8ac8463a9a9ea4b152c69994.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faf32abd8ac8463a9a9ea4b152c69994.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p_D8-CzxufY2uQeZqXbwo2sJO04=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.74774+00 2025-12-09 10:16:04.747747+00 21654 JY-DR-78#6号草绿 SPMX-20240815316904 \N \N \N 1 \N [{"file_id": "a5afb68d-625e-4b3c-83d2-c2d59d95f1fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a2de953b64d4c068042be6fbd784d99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a2de953b64d4c068042be6fbd784d99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a2de953b64d4c068042be6fbd784d99.jpg", "file_size": 18324, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-78#6号草绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2de953b64d4c068042be6fbd784d99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2de953b64d4c068042be6fbd784d99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a2de953b64d4c068042be6fbd784d99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a2de953b64d4c068042be6fbd784d99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a2de953b64d4c068042be6fbd784d99.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxpSiX3woQUB-lTT-OTvgPRUKEQ=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.751489+00 2025-12-09 10:16:04.751496+00 21655 CHiC139#1号色-23码 SPMX-20240815316921 \N \N \N 1 \N [{"file_id": "9a7f5f8a-9847-4bf2-9d30-cd1efe7b87f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78c3b5f8711e426d98aa1339dfd32a48.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78c3b5f8711e426d98aa1339dfd32a48.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78c3b5f8711e426d98aa1339dfd32a48.jpg", "file_size": 47422, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c3b5f8711e426d98aa1339dfd32a48.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c3b5f8711e426d98aa1339dfd32a48.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78c3b5f8711e426d98aa1339dfd32a48.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78c3b5f8711e426d98aa1339dfd32a48.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78c3b5f8711e426d98aa1339dfd32a48.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yyEhp2Xz9e1jkniHOotgn5dRhec=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.755195+00 2025-12-09 10:16:04.755201+00 21656 1277FWE#豆沙L SPMX-20240815316912 \N \N \N 1 \N [{"file_id": "d0e3ac0a-aaaf-4acc-b541-21246e85621e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e35631d49898434a91f86803e3ba3f8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e35631d49898434a91f86803e3ba3f8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e35631d49898434a91f86803e3ba3f8a.jpg", "file_size": 18311, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#豆沙L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35631d49898434a91f86803e3ba3f8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35631d49898434a91f86803e3ba3f8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e35631d49898434a91f86803e3ba3f8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e35631d49898434a91f86803e3ba3f8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e35631d49898434a91f86803e3ba3f8a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rBZq8FDqcfSB1aeh1STRvPpf8QA=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.75886+00 2025-12-09 10:16:04.758866+00 21657 LZ1428#绿净色 SPMX-20240815316915 \N \N \N 1 \N [{"file_id": "51ce17f2-1e34-4571-a459-5da8eb114949", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f867695135c4f4d936b402e25cb7e1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f867695135c4f4d936b402e25cb7e1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f867695135c4f4d936b402e25cb7e1f.jpg", "file_size": 6994, "is_delete": false, "file_type": 1, "original_file_name": "LZ1428#绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f867695135c4f4d936b402e25cb7e1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f867695135c4f4d936b402e25cb7e1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f867695135c4f4d936b402e25cb7e1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f867695135c4f4d936b402e25cb7e1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f867695135c4f4d936b402e25cb7e1f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ef8lJiXNuaBJxhXwoN_wIwAQ1I=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.76244+00 2025-12-09 10:16:04.762446+00 21658 HXF028FW#VS-D3 SPMX-20240815316922 \N \N \N 1 \N [{"file_id": "84059395-702a-44aa-8645-62c69c6a88a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09ed908263e44dc8b58362de74067743.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09ed908263e44dc8b58362de74067743.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09ed908263e44dc8b58362de74067743.jpg", "file_size": 12126, "is_delete": false, "file_type": 1, "original_file_name": "HXF028FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ed908263e44dc8b58362de74067743.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ed908263e44dc8b58362de74067743.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09ed908263e44dc8b58362de74067743.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09ed908263e44dc8b58362de74067743.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09ed908263e44dc8b58362de74067743.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KzgTUjNdaeg_yFr09E6ek1nkkTg=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.766174+00 2025-12-09 10:16:04.76618+00 21659 HXF027FW#VS-D3 SPMX-20240815316911 \N \N \N 1 \N [{"file_id": "8766436b-e13b-4cba-95bb-0f53ed96f9d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8882a6cc1cf497981f103ba7b5f335f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8882a6cc1cf497981f103ba7b5f335f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8882a6cc1cf497981f103ba7b5f335f.jpg", "file_size": 15415, "is_delete": false, "file_type": 1, "original_file_name": "HXF027FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8882a6cc1cf497981f103ba7b5f335f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8882a6cc1cf497981f103ba7b5f335f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8882a6cc1cf497981f103ba7b5f335f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8882a6cc1cf497981f103ba7b5f335f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8882a6cc1cf497981f103ba7b5f335f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dUWgHgH6fsGJryAuDzQNNGAF5Bg=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.769923+00 2025-12-09 10:16:04.769929+00 21660 88380FWF#K杏色48码 SPMX-20240815316909 \N \N \N 1 \N [{"file_id": "c7804f01-988e-46ee-a7f3-538ef2dbab02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b0fc9a90374b4521b4ef35dace9b667f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b0fc9a90374b4521b4ef35dace9b667f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b0fc9a90374b4521b4ef35dace9b667f.jpg", "file_size": 25112, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K杏色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fc9a90374b4521b4ef35dace9b667f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fc9a90374b4521b4ef35dace9b667f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b0fc9a90374b4521b4ef35dace9b667f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b0fc9a90374b4521b4ef35dace9b667f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b0fc9a90374b4521b4ef35dace9b667f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QBaUYtmbVfKmLam5--ZdIZzYjhI=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.773562+00 2025-12-09 10:16:04.773567+00 21661 88380FWF#K杏色50码 SPMX-20240815316919 \N \N \N 1 \N [{"file_id": "946236d9-a389-4045-aff3-e68c389ba078", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8110db18b968472d863eb76079e4f774.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8110db18b968472d863eb76079e4f774.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8110db18b968472d863eb76079e4f774.jpg", "file_size": 24962, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K杏色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8110db18b968472d863eb76079e4f774.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8110db18b968472d863eb76079e4f774.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8110db18b968472d863eb76079e4f774.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8110db18b968472d863eb76079e4f774.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8110db18b968472d863eb76079e4f774.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6XeOKh_YNlQHAv-iFY2H8vEqQEw=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.77718+00 2025-12-09 10:16:04.777187+00 21662 2417FWF#黄色袖子 SPMX-20240815316916 \N \N \N 1 \N [{"file_id": "503ddde6-d249-4fcf-a6e2-26a13d4034b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eb5a7c2254de4417a4f6a88f8582b53d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eb5a7c2254de4417a4f6a88f8582b53d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eb5a7c2254de4417a4f6a88f8582b53d.jpg", "file_size": 11135, "is_delete": false, "file_type": 1, "original_file_name": "2417FWF#黄色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5a7c2254de4417a4f6a88f8582b53d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5a7c2254de4417a4f6a88f8582b53d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eb5a7c2254de4417a4f6a88f8582b53d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eb5a7c2254de4417a4f6a88f8582b53d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eb5a7c2254de4417a4f6a88f8582b53d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7hrrk-Shq65wJsBMwl8-cN-dsq0=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.780803+00 2025-12-09 10:16:04.780809+00 21663 003FWF#大红 SPMX-20240815316914 \N \N \N 1 \N [{"file_id": "66e1630f-d022-47bb-a581-5d42e7bb5bed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ff5e67a898645e2915923a4c919ddd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ff5e67a898645e2915923a4c919ddd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ff5e67a898645e2915923a4c919ddd8.jpg", "file_size": 21004, "is_delete": false, "file_type": 1, "original_file_name": "003FWF#大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff5e67a898645e2915923a4c919ddd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff5e67a898645e2915923a4c919ddd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ff5e67a898645e2915923a4c919ddd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ff5e67a898645e2915923a4c919ddd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ff5e67a898645e2915923a4c919ddd8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cr9LfXxHq0wt0cpvaOrP9KIJdd8=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.784392+00 2025-12-09 10:16:04.784399+00 21664 1277FWE#豆沙XL SPMX-20240815316923 \N \N \N 1 \N [{"file_id": "f9db7682-e9d3-4918-bd12-282b9f4c0a9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d8a10d9259564b12b8f04fc2946a6518.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d8a10d9259564b12b8f04fc2946a6518.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d8a10d9259564b12b8f04fc2946a6518.jpg", "file_size": 18058, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#豆沙XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a10d9259564b12b8f04fc2946a6518.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a10d9259564b12b8f04fc2946a6518.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d8a10d9259564b12b8f04fc2946a6518.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d8a10d9259564b12b8f04fc2946a6518.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d8a10d9259564b12b8f04fc2946a6518.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CIcuZCu3iMEBRTw5mOBL_ZW385Y=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.788027+00 2025-12-09 10:16:04.788034+00 21665 LJM0709-26FWE#VS-D3 SPMX-20240815316920 \N \N \N 1 \N [{"file_id": "e20067c3-197d-417a-a16c-f77d9ef89e58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b25309e3be7a43be8741f2e12630426a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b25309e3be7a43be8741f2e12630426a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b25309e3be7a43be8741f2e12630426a.jpg", "file_size": 22145, "is_delete": false, "file_type": 1, "original_file_name": "LJM0709-26FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25309e3be7a43be8741f2e12630426a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25309e3be7a43be8741f2e12630426a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b25309e3be7a43be8741f2e12630426a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b25309e3be7a43be8741f2e12630426a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b25309e3be7a43be8741f2e12630426a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Bxv0lN2miBohDU9VRgnoRIIEoxo=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.791632+00 2025-12-09 10:16:04.791639+00 21666 LJM0709-25FWE#VS-D3 SPMX-20240815316910 \N \N \N 1 \N [{"file_id": "75c547e7-ff48-4105-8ee7-013450c8b950", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dba0d844775540b99f759b0e9e444c52.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dba0d844775540b99f759b0e9e444c52.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dba0d844775540b99f759b0e9e444c52.jpg", "file_size": 10332, "is_delete": false, "file_type": 1, "original_file_name": "LJM0709-25FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba0d844775540b99f759b0e9e444c52.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba0d844775540b99f759b0e9e444c52.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dba0d844775540b99f759b0e9e444c52.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dba0d844775540b99f759b0e9e444c52.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dba0d844775540b99f759b0e9e444c52.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OS1oAcGpjjySiH1Zgv1jRlqONKY=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.795257+00 2025-12-09 10:16:04.795264+00 21667 DN#珠地布黑色净色布 SPMX-20240815316913 \N \N \N 1 \N [{"file_id": "680ea142-a773-419d-aea9-83f0fd896a6a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg", "file_size": 13383, "is_delete": false, "file_type": 1, "original_file_name": "DN#珠地布黑色净色布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecf9bd2ca9fb4bd0be51ae0e9b83068a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EoRkIHSahqu4lr-jL9RRIFifhiU=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.798833+00 2025-12-09 10:16:04.798839+00 21668 FX019#C SPMX-20240815316908 \N \N \N 1 \N [{"file_id": "c4685bb6-a245-4b1d-a308-cdc87ce096a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9fa1928f39f41feb4741399a1b7040b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9fa1928f39f41feb4741399a1b7040b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9fa1928f39f41feb4741399a1b7040b.jpg", "file_size": 11126, "is_delete": false, "file_type": 1, "original_file_name": "FX019#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fa1928f39f41feb4741399a1b7040b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fa1928f39f41feb4741399a1b7040b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fa1928f39f41feb4741399a1b7040b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9fa1928f39f41feb4741399a1b7040b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9fa1928f39f41feb4741399a1b7040b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jXxJf8Xn0sOzpDbtXNSUINoiy_8=", "createTime": "2024-08-15 15:10:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.802423+00 2025-12-09 10:16:04.80243+00 21669 FX019#D SPMX-20240815316918 \N \N \N 1 \N [{"file_id": "85e57c63-33ba-4cee-b953-75bea4bf5e81", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24c511b92372403288533f382ccfad37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24c511b92372403288533f382ccfad37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24c511b92372403288533f382ccfad37.jpg", "file_size": 13509, "is_delete": false, "file_type": 1, "original_file_name": "FX019#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c511b92372403288533f382ccfad37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c511b92372403288533f382ccfad37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c511b92372403288533f382ccfad37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24c511b92372403288533f382ccfad37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24c511b92372403288533f382ccfad37.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KIH544k2NZFsss1iqx9BE1f7HC4=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.805976+00 2025-12-09 10:16:04.805982+00 21670 JY-DR-88#蓝色#RC23 SPMX-20240815316917 \N \N \N 1 \N [{"file_id": "ead5d1af-90ea-4fdb-aae9-574639b5a7bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e832b63e69b245048bec4932d64fa9fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e832b63e69b245048bec4932d64fa9fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e832b63e69b245048bec4932d64fa9fb.jpg", "file_size": 21520, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR-88#蓝色#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e832b63e69b245048bec4932d64fa9fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e832b63e69b245048bec4932d64fa9fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e832b63e69b245048bec4932d64fa9fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e832b63e69b245048bec4932d64fa9fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e832b63e69b245048bec4932d64fa9fb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LWS7A6Xb1pPZs8YR7uTg-p9XeuU=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.809537+00 2025-12-09 10:16:04.809543+00 21671 JY-DR141#2XL SPMX-20240815316930 \N \N \N 1 \N [{"file_id": "76a73816-eafb-43c5-bbf6-454f1bfc3bc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7b243ff15e1487b8e451ab0c358aa1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7b243ff15e1487b8e451ab0c358aa1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7b243ff15e1487b8e451ab0c358aa1b.jpg", "file_size": 15758, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR141#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b243ff15e1487b8e451ab0c358aa1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b243ff15e1487b8e451ab0c358aa1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7b243ff15e1487b8e451ab0c358aa1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7b243ff15e1487b8e451ab0c358aa1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7b243ff15e1487b8e451ab0c358aa1b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NaB3wOhh-xq0NiPhjQ3D1Jp71s=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.813261+00 2025-12-09 10:16:04.813269+00 21672 DN-4455#已放缩水2XL SPMX-20240815316935 \N \N \N 1 \N [{"file_id": "403ddfb1-fe61-461a-88fd-2acfcca46bbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e621e0f1ebd44cd28cd73545a08d0c17.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e621e0f1ebd44cd28cd73545a08d0c17.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e621e0f1ebd44cd28cd73545a08d0c17.jpg", "file_size": 44259, "is_delete": false, "file_type": 1, "original_file_name": "DN-4455#已放缩水2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e621e0f1ebd44cd28cd73545a08d0c17.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e621e0f1ebd44cd28cd73545a08d0c17.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e621e0f1ebd44cd28cd73545a08d0c17.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e621e0f1ebd44cd28cd73545a08d0c17.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e621e0f1ebd44cd28cd73545a08d0c17.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sstlbwnz62fnztn6Ana8rsyD7Ow=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.81693+00 2025-12-09 10:16:04.816937+00 21673 003FWF#粉色 SPMX-20240815316936 \N \N \N 1 \N [{"file_id": "b378252d-b789-40b2-a9ac-d304537db537", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ed4f2274fdb42f3b7b83f591432bdc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ed4f2274fdb42f3b7b83f591432bdc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ed4f2274fdb42f3b7b83f591432bdc4.jpg", "file_size": 20633, "is_delete": false, "file_type": 1, "original_file_name": "003FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed4f2274fdb42f3b7b83f591432bdc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed4f2274fdb42f3b7b83f591432bdc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ed4f2274fdb42f3b7b83f591432bdc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ed4f2274fdb42f3b7b83f591432bdc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ed4f2274fdb42f3b7b83f591432bdc4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PVPdPHKxQg8PIZT-OCErlpBbvS8=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.820404+00 2025-12-09 10:16:04.820411+00 21674 FX019#E SPMX-20240815316928 \N \N \N 1 \N [{"file_id": "9c9f0b9f-308b-4bc1-a1f1-dc18659d891b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf949211818444629eb3a4472b0000bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf949211818444629eb3a4472b0000bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf949211818444629eb3a4472b0000bf.jpg", "file_size": 10692, "is_delete": false, "file_type": 1, "original_file_name": "FX019#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf949211818444629eb3a4472b0000bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf949211818444629eb3a4472b0000bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf949211818444629eb3a4472b0000bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf949211818444629eb3a4472b0000bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf949211818444629eb3a4472b0000bf.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7n1QhEc2cmsXOtGoAkjyO1sn2Tk=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.823978+00 2025-12-09 10:16:04.823985+00 21675 LJM0709-27FWE#VS-D3 SPMX-20240815316932 \N \N \N 1 \N [{"file_id": "c2548911-159d-4785-ad02-4b5edebbbe04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39bef585ef0049e0895bce43aa9b51f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39bef585ef0049e0895bce43aa9b51f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39bef585ef0049e0895bce43aa9b51f3.jpg", "file_size": 21884, "is_delete": false, "file_type": 1, "original_file_name": "LJM0709-27FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bef585ef0049e0895bce43aa9b51f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bef585ef0049e0895bce43aa9b51f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39bef585ef0049e0895bce43aa9b51f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39bef585ef0049e0895bce43aa9b51f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39bef585ef0049e0895bce43aa9b51f3.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OnsPLWMwlXh5_83ol3tdHAMEPIg=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.827614+00 2025-12-09 10:16:04.82762+00 21676 2418FWF#红色正身 SPMX-20240815316927 \N \N \N 1 \N [{"file_id": "b389c584-a80f-4017-a0e2-a2d4ddfc130a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3c080e27a1f4d24aba786bfd9ba404b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3c080e27a1f4d24aba786bfd9ba404b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3c080e27a1f4d24aba786bfd9ba404b.jpg", "file_size": 14088, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#红色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c080e27a1f4d24aba786bfd9ba404b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c080e27a1f4d24aba786bfd9ba404b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3c080e27a1f4d24aba786bfd9ba404b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3c080e27a1f4d24aba786bfd9ba404b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3c080e27a1f4d24aba786bfd9ba404b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GBh_oFjGB6ig5OCh2QTeqgcb49U=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.831248+00 2025-12-09 10:16:04.831254+00 21677 HXF029FW#VS-D3 SPMX-20240815316933 \N \N \N 1 \N [{"file_id": "8c9f3439-ec3e-4edd-9783-06922a3b88a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9123d5401234f5286b4187c42cc70e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9123d5401234f5286b4187c42cc70e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9123d5401234f5286b4187c42cc70e4.jpg", "file_size": 17132, "is_delete": false, "file_type": 1, "original_file_name": "HXF029FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9123d5401234f5286b4187c42cc70e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9123d5401234f5286b4187c42cc70e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9123d5401234f5286b4187c42cc70e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9123d5401234f5286b4187c42cc70e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9123d5401234f5286b4187c42cc70e4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x7plLp-STrtGvi4sbLJXeULtM1M=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.834793+00 2025-12-09 10:16:04.834799+00 21678 003FWF#湖绿 SPMX-20240815316925 \N \N \N 1 \N [{"file_id": "a240b158-4b5f-4124-ac7d-2d83a414d76a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dffc2ad284044999a446af5c0efb39ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dffc2ad284044999a446af5c0efb39ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dffc2ad284044999a446af5c0efb39ee.jpg", "file_size": 21007, "is_delete": false, "file_type": 1, "original_file_name": "003FWF#湖绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffc2ad284044999a446af5c0efb39ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffc2ad284044999a446af5c0efb39ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dffc2ad284044999a446af5c0efb39ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dffc2ad284044999a446af5c0efb39ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dffc2ad284044999a446af5c0efb39ee.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y7zD7aetna-mM_xhSONv9Tc45qk=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.838454+00 2025-12-09 10:16:04.838461+00 21679 1277FWE#黄色2XL SPMX-20240815316934 \N \N \N 1 \N [{"file_id": "2287f915-2932-4a1b-88d5-339338f3e82f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b3f2651e7d34ae9b444c79f6bf0d82e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b3f2651e7d34ae9b444c79f6bf0d82e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b3f2651e7d34ae9b444c79f6bf0d82e.jpg", "file_size": 18276, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#黄色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b3f2651e7d34ae9b444c79f6bf0d82e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b3f2651e7d34ae9b444c79f6bf0d82e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b3f2651e7d34ae9b444c79f6bf0d82e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b3f2651e7d34ae9b444c79f6bf0d82e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b3f2651e7d34ae9b444c79f6bf0d82e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VShZvdYDDQieE7lFt_vuFFVysOM=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.842319+00 2025-12-09 10:16:04.842325+00 21680 DN#黑色领子布 SPMX-20240815316924 \N \N \N 1 \N [{"file_id": "0f0361e6-e55e-4264-9e55-882f781f66ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc60ce185cb54b989c90fc1b7b064933.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc60ce185cb54b989c90fc1b7b064933.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc60ce185cb54b989c90fc1b7b064933.jpg", "file_size": 6503, "is_delete": false, "file_type": 1, "original_file_name": "DN#黑色领子布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60ce185cb54b989c90fc1b7b064933.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60ce185cb54b989c90fc1b7b064933.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc60ce185cb54b989c90fc1b7b064933.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc60ce185cb54b989c90fc1b7b064933.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc60ce185cb54b989c90fc1b7b064933.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aitxlg6oLmTRc5iycMsRdEYBUSQ=", "createTime": "2024-08-15 15:10:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.845853+00 2025-12-09 10:16:04.845861+00 21681 LZ1429#上身1号色 SPMX-20240815316926 \N \N \N 1 \N [{"file_id": "e1f367f7-4513-42b1-9cee-197907400693", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ec4c094959445bfa63bf7c7edd97911.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ec4c094959445bfa63bf7c7edd97911.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ec4c094959445bfa63bf7c7edd97911.jpg", "file_size": 15488, "is_delete": false, "file_type": 1, "original_file_name": "LZ1429#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec4c094959445bfa63bf7c7edd97911.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec4c094959445bfa63bf7c7edd97911.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ec4c094959445bfa63bf7c7edd97911.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ec4c094959445bfa63bf7c7edd97911.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ec4c094959445bfa63bf7c7edd97911.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BW_kl-5Th3E7RWIchbrm14zn2A0=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.84935+00 2025-12-09 10:16:04.849356+00 21682 88380FWF#K枣红42码 SPMX-20240815316929 \N \N \N 1 \N [{"file_id": "f7643325-e4ed-4a90-b10e-2edc45122709", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed06d9976c5a4212a2d53b931e34dde9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed06d9976c5a4212a2d53b931e34dde9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed06d9976c5a4212a2d53b931e34dde9.jpg", "file_size": 25180, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K枣红42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed06d9976c5a4212a2d53b931e34dde9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed06d9976c5a4212a2d53b931e34dde9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed06d9976c5a4212a2d53b931e34dde9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed06d9976c5a4212a2d53b931e34dde9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed06d9976c5a4212a2d53b931e34dde9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9mKIaHuTbaltVnwNz28SyDHqDjw=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.852782+00 2025-12-09 10:16:04.852789+00 21683 CHiC139#1号色-24码 SPMX-20240815316931 \N \N \N 1 \N [{"file_id": "8b1c1699-300f-4805-8313-3797d1ee7bc4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "982202ee5e914392a468bc362a8c3a89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "982202ee5e914392a468bc362a8c3a89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "982202ee5e914392a468bc362a8c3a89.jpg", "file_size": 45791, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982202ee5e914392a468bc362a8c3a89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982202ee5e914392a468bc362a8c3a89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/982202ee5e914392a468bc362a8c3a89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/982202ee5e914392a468bc362a8c3a89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/982202ee5e914392a468bc362a8c3a89.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K7xxM1TGuW8oKoM73Y-J51cK2I4=", "createTime": "2024-08-15 15:10:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.856335+00 2025-12-09 10:16:04.856341+00 21684 LZ1429#上身2号色 SPMX-20240815316937 \N \N \N 1 \N [{"file_id": "799e00c7-72bc-45b6-a476-79c51b97d99a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e967bc35615c4b4aa4d54535c903c8c2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e967bc35615c4b4aa4d54535c903c8c2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e967bc35615c4b4aa4d54535c903c8c2.jpg", "file_size": 17638, "is_delete": false, "file_type": 1, "original_file_name": "LZ1429#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e967bc35615c4b4aa4d54535c903c8c2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e967bc35615c4b4aa4d54535c903c8c2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e967bc35615c4b4aa4d54535c903c8c2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e967bc35615c4b4aa4d54535c903c8c2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e967bc35615c4b4aa4d54535c903c8c2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QU6924LCp9s6QFDQO5zASEvu2HU=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.859796+00 2025-12-09 10:16:04.859803+00 21685 LJV226FWE#VS-D3 SPMX-20240815316944 \N \N \N 1 \N [{"file_id": "6d862d69-85f7-4e77-a0b8-dc6cd4522b9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1ac14fda9af4409ae48b6078e64787f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1ac14fda9af4409ae48b6078e64787f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1ac14fda9af4409ae48b6078e64787f.jpg", "file_size": 10344, "is_delete": false, "file_type": 1, "original_file_name": "LJV226FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ac14fda9af4409ae48b6078e64787f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ac14fda9af4409ae48b6078e64787f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1ac14fda9af4409ae48b6078e64787f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1ac14fda9af4409ae48b6078e64787f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1ac14fda9af4409ae48b6078e64787f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrNuEj-_zsQ8i2Jss8ICyl38mrQ=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.863466+00 2025-12-09 10:16:04.863473+00 21686 CHiC139#1号色-25码 SPMX-20240815316943 \N \N \N 1 \N [{"file_id": "cbd07e94-10ec-4267-b835-a83272baabe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d9f0c248c464371a83537f48ba7ec7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d9f0c248c464371a83537f48ba7ec7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d9f0c248c464371a83537f48ba7ec7c.jpg", "file_size": 45069, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9f0c248c464371a83537f48ba7ec7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9f0c248c464371a83537f48ba7ec7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d9f0c248c464371a83537f48ba7ec7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d9f0c248c464371a83537f48ba7ec7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d9f0c248c464371a83537f48ba7ec7c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kFrU1I442aV-V7O7iSQa8U-XSi0=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.867177+00 2025-12-09 10:16:04.867183+00 21687 1277FWE#黄色4XL SPMX-20240815316946 \N \N \N 1 \N [{"file_id": "fa93c375-ca4c-4bf9-a778-f427c31e4a0d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f16bf2c3a1c64b30bf8a575c6c93cf98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f16bf2c3a1c64b30bf8a575c6c93cf98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f16bf2c3a1c64b30bf8a575c6c93cf98.jpg", "file_size": 16569, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#黄色4XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16bf2c3a1c64b30bf8a575c6c93cf98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16bf2c3a1c64b30bf8a575c6c93cf98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f16bf2c3a1c64b30bf8a575c6c93cf98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f16bf2c3a1c64b30bf8a575c6c93cf98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f16bf2c3a1c64b30bf8a575c6c93cf98.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sS9DU_T5j2smNqFPQ5tRfKp0QXI=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.87084+00 2025-12-09 10:16:04.870847+00 21688 HXF03011#白色2XL SPMX-20240815316941 \N \N \N 1 \N [{"file_id": "dd5830fe-6c1f-45e4-ad5f-07b28308fc49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bd2127ee4634b079bc63911b7e30ce8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bd2127ee4634b079bc63911b7e30ce8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bd2127ee4634b079bc63911b7e30ce8.jpg", "file_size": 20403, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#白色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd2127ee4634b079bc63911b7e30ce8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd2127ee4634b079bc63911b7e30ce8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bd2127ee4634b079bc63911b7e30ce8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bd2127ee4634b079bc63911b7e30ce8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bd2127ee4634b079bc63911b7e30ce8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ip_EUvZw8-45l43dvD-8gcGgC4Q=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.874367+00 2025-12-09 10:16:04.874374+00 21689 JY-DR141#L SPMX-20240815316939 \N \N \N 1 \N [{"file_id": "aaf1a4f2-d5c3-47ba-a41c-a6c343f90822", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3215a6fcf8104535bb0105fe7c4f8a3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3215a6fcf8104535bb0105fe7c4f8a3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3215a6fcf8104535bb0105fe7c4f8a3d.jpg", "file_size": 15344, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR141#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3215a6fcf8104535bb0105fe7c4f8a3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3215a6fcf8104535bb0105fe7c4f8a3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3215a6fcf8104535bb0105fe7c4f8a3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3215a6fcf8104535bb0105fe7c4f8a3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3215a6fcf8104535bb0105fe7c4f8a3d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gVZHp1P79no3gfT_tJJoqbeM3Wg=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.877918+00 2025-12-09 10:16:04.877925+00 21690 FX019#白VS-D3 SPMX-20240815316940 \N \N \N 1 \N [{"file_id": "d6ec14bc-9181-434a-9966-997cfd1f580b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55bb0b7dda0d415da4620051af9c421a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55bb0b7dda0d415da4620051af9c421a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55bb0b7dda0d415da4620051af9c421a.jpg", "file_size": 18807, "is_delete": false, "file_type": 1, "original_file_name": "FX019#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bb0b7dda0d415da4620051af9c421a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bb0b7dda0d415da4620051af9c421a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55bb0b7dda0d415da4620051af9c421a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55bb0b7dda0d415da4620051af9c421a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55bb0b7dda0d415da4620051af9c421a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yUE5-mQAZGw6R3tIsRGKnu6yDI4=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.881451+00 2025-12-09 10:16:04.881458+00 21691 2418FWF#红色袖子 SPMX-20240815316938 \N \N \N 1 \N [{"file_id": "9b11b1e1-7b2a-4136-bdeb-45bc552030e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaccd7e2d9b041758f6a718cdfe08f99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaccd7e2d9b041758f6a718cdfe08f99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaccd7e2d9b041758f6a718cdfe08f99.jpg", "file_size": 11244, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#红色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaccd7e2d9b041758f6a718cdfe08f99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaccd7e2d9b041758f6a718cdfe08f99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaccd7e2d9b041758f6a718cdfe08f99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaccd7e2d9b041758f6a718cdfe08f99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaccd7e2d9b041758f6a718cdfe08f99.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qg-AoY9cTF7ppX2NL99BbtXTEeM=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.884912+00 2025-12-09 10:16:04.88492+00 21692 88380FWF#K枣红44码 SPMX-20240815316942 \N \N \N 1 \N [{"file_id": "f490cc81-399b-4e42-9073-3a4ff697cf3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac566e89ed1e4c5088f1ee7afd81917f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac566e89ed1e4c5088f1ee7afd81917f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac566e89ed1e4c5088f1ee7afd81917f.jpg", "file_size": 26070, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K枣红44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac566e89ed1e4c5088f1ee7afd81917f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac566e89ed1e4c5088f1ee7afd81917f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac566e89ed1e4c5088f1ee7afd81917f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac566e89ed1e4c5088f1ee7afd81917f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac566e89ed1e4c5088f1ee7afd81917f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qffoLGSi6TnZKW5KfYLpUwPnfWc=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.888365+00 2025-12-09 10:16:04.888372+00 21693 003FWF#黄色 SPMX-20240815316945 \N \N \N 1 \N [{"file_id": "902384c2-5532-4f44-bc2a-8c858f91f307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86d0813f31904d46abf7b2da7ef93ccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86d0813f31904d46abf7b2da7ef93ccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86d0813f31904d46abf7b2da7ef93ccf.jpg", "file_size": 21858, "is_delete": false, "file_type": 1, "original_file_name": "003FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d0813f31904d46abf7b2da7ef93ccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d0813f31904d46abf7b2da7ef93ccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86d0813f31904d46abf7b2da7ef93ccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86d0813f31904d46abf7b2da7ef93ccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86d0813f31904d46abf7b2da7ef93ccf.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJ2PjPZig1ys8jFWVAgPPHkmT7U=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.891873+00 2025-12-09 10:16:04.891879+00 21694 DN-4455#已放缩水3XL SPMX-20240815316947 \N \N \N 1 \N [{"file_id": "cb656d35-59d6-4608-b1bb-efd9a6b161e2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ee9fa28678946488496b36cca934142.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ee9fa28678946488496b36cca934142.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ee9fa28678946488496b36cca934142.jpg", "file_size": 43598, "is_delete": false, "file_type": 1, "original_file_name": "DN-4455#已放缩水3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9fa28678946488496b36cca934142.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9fa28678946488496b36cca934142.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ee9fa28678946488496b36cca934142.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ee9fa28678946488496b36cca934142.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ee9fa28678946488496b36cca934142.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oalQHK71rM01kx21w_ZpbtZq2d0=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.895362+00 2025-12-09 10:16:04.895369+00 21695 004#WJC22 SPMX-20240815316954 \N \N \N 1 \N [{"file_id": "aa753216-dd64-40d7-bc22-67eef2c8d465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df9ade7a8b6846d59123a39068a31e34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df9ade7a8b6846d59123a39068a31e34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df9ade7a8b6846d59123a39068a31e34.jpg", "file_size": 25678, "is_delete": false, "file_type": 1, "original_file_name": "004#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9ade7a8b6846d59123a39068a31e34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9ade7a8b6846d59123a39068a31e34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df9ade7a8b6846d59123a39068a31e34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df9ade7a8b6846d59123a39068a31e34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df9ade7a8b6846d59123a39068a31e34.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TPUctmlYclkhbO_POxgdpZnAy4s=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.898804+00 2025-12-09 10:16:04.898811+00 21696 CHiC139#1号色净色 SPMX-20240815316952 \N \N \N 1 \N [{"file_id": "c0f7f7f5-e20e-418f-8c93-e015799a38ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0ca26b9693941b4818ddf7d39b8d442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0ca26b9693941b4818ddf7d39b8d442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0ca26b9693941b4818ddf7d39b8d442.jpg", "file_size": 12450, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#1号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca26b9693941b4818ddf7d39b8d442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca26b9693941b4818ddf7d39b8d442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0ca26b9693941b4818ddf7d39b8d442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0ca26b9693941b4818ddf7d39b8d442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0ca26b9693941b4818ddf7d39b8d442.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tIuSsJoZK3Q87rL8OdruBQm1HEQ=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.902312+00 2025-12-09 10:16:04.902318+00 21697 FX019#黑 SPMX-20240815316950 \N \N \N 1 \N [{"file_id": "53c8e8d3-47ff-4ac4-a891-72dfa97576a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b246db10d0284bd1b7534f65e5679683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b246db10d0284bd1b7534f65e5679683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b246db10d0284bd1b7534f65e5679683.jpg", "file_size": 6837, "is_delete": false, "file_type": 1, "original_file_name": "FX019#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b246db10d0284bd1b7534f65e5679683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b246db10d0284bd1b7534f65e5679683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b246db10d0284bd1b7534f65e5679683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b246db10d0284bd1b7534f65e5679683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b246db10d0284bd1b7534f65e5679683.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49PR3b1mTQPsMincNYpXAj0KvsU=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.905853+00 2025-12-09 10:16:04.90586+00 21698 LJV252FW#VS-D3 SPMX-20240815316953 \N \N \N 1 \N [{"file_id": "2e55cb99-fd85-4d25-8dd4-4dd160e58627", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43ae75f01e574daab20fd973e66e5d0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43ae75f01e574daab20fd973e66e5d0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43ae75f01e574daab20fd973e66e5d0b.jpg", "file_size": 15589, "is_delete": false, "file_type": 1, "original_file_name": "LJV252FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ae75f01e574daab20fd973e66e5d0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ae75f01e574daab20fd973e66e5d0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43ae75f01e574daab20fd973e66e5d0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43ae75f01e574daab20fd973e66e5d0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43ae75f01e574daab20fd973e66e5d0b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ljFYbVPIBP-tFLZVMbEaXTyiMAU=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.909279+00 2025-12-09 10:16:04.909286+00 21699 LJV257FW#VS-D3 SPMX-20240815316962 \N \N \N 1 \N [{"file_id": "8d441077-022c-4cbf-bd41-b9de30cd5041", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "830fc48fb89241b889ed8f729d3cde1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "830fc48fb89241b889ed8f729d3cde1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "830fc48fb89241b889ed8f729d3cde1f.jpg", "file_size": 11407, "is_delete": false, "file_type": 1, "original_file_name": "LJV257FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/830fc48fb89241b889ed8f729d3cde1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/830fc48fb89241b889ed8f729d3cde1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/830fc48fb89241b889ed8f729d3cde1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/830fc48fb89241b889ed8f729d3cde1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/830fc48fb89241b889ed8f729d3cde1f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6T0hBlst1O6_cLelf63dVrTvYeE=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.912718+00 2025-12-09 10:16:04.912725+00 21700 DN-4455#已放缩水L SPMX-20240815316958 \N \N \N 1 \N [{"file_id": "927614a2-3feb-4fe9-92f9-2a3bb176624a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "398239524b1447f1aa19776ec3c1d434.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "398239524b1447f1aa19776ec3c1d434.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "398239524b1447f1aa19776ec3c1d434.jpg", "file_size": 44113, "is_delete": false, "file_type": 1, "original_file_name": "DN-4455#已放缩水L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398239524b1447f1aa19776ec3c1d434.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398239524b1447f1aa19776ec3c1d434.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/398239524b1447f1aa19776ec3c1d434.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/398239524b1447f1aa19776ec3c1d434.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/398239524b1447f1aa19776ec3c1d434.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dzj2vns7Nm7CV8t5j7N0b1ULVp4=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.916058+00 2025-12-09 10:16:04.916065+00 21701 JY-DR141#M SPMX-20240815316949 \N \N \N 1 \N [{"file_id": "24124015-4a8d-4e94-8ece-03286fb5cb25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fea791e1235742e69b0655f6ce1291be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fea791e1235742e69b0655f6ce1291be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fea791e1235742e69b0655f6ce1291be.jpg", "file_size": 16625, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR141#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea791e1235742e69b0655f6ce1291be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea791e1235742e69b0655f6ce1291be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fea791e1235742e69b0655f6ce1291be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fea791e1235742e69b0655f6ce1291be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fea791e1235742e69b0655f6ce1291be.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GNtpS5r0ysUtsGUmK6DfbkwNGGY=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.919531+00 2025-12-09 10:16:04.919537+00 21702 CHiC139#7号色-21码 SPMX-20240815316960 \N \N \N 1 \N [{"file_id": "2aef44cd-f11f-4015-aacd-97adcb891bec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3737e869ecb44e788c3d542adf55e997.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3737e869ecb44e788c3d542adf55e997.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3737e869ecb44e788c3d542adf55e997.jpg", "file_size": 43959, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3737e869ecb44e788c3d542adf55e997.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3737e869ecb44e788c3d542adf55e997.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3737e869ecb44e788c3d542adf55e997.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3737e869ecb44e788c3d542adf55e997.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3737e869ecb44e788c3d542adf55e997.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1hacUB-KmtXyqKnnE6nOCo7eza4=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.923039+00 2025-12-09 10:16:04.923046+00 21703 004-1FWE# SPMX-20240815316961 \N \N \N 1 \N [{"file_id": "f0d83036-682a-4ed0-85c7-9b12f03505ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d95e09ac2ee9489591dfab34da8b1cbd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d95e09ac2ee9489591dfab34da8b1cbd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d95e09ac2ee9489591dfab34da8b1cbd.jpg", "file_size": 22132, "is_delete": false, "file_type": 1, "original_file_name": "004-1FWE#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95e09ac2ee9489591dfab34da8b1cbd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95e09ac2ee9489591dfab34da8b1cbd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d95e09ac2ee9489591dfab34da8b1cbd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d95e09ac2ee9489591dfab34da8b1cbd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d95e09ac2ee9489591dfab34da8b1cbd.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tESIhoBXODvdUHURMO8QE36kjRQ=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.926333+00 2025-12-09 10:16:04.926339+00 21704 HXF03011#白色L SPMX-20240815316955 \N \N \N 1 \N [{"file_id": "a80357eb-5015-4cc2-879a-5c2a4b4fa99f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ff5a314900614bcf9f8d139ee7290804.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ff5a314900614bcf9f8d139ee7290804.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ff5a314900614bcf9f8d139ee7290804.jpg", "file_size": 19726, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#白色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5a314900614bcf9f8d139ee7290804.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5a314900614bcf9f8d139ee7290804.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ff5a314900614bcf9f8d139ee7290804.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ff5a314900614bcf9f8d139ee7290804.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ff5a314900614bcf9f8d139ee7290804.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5xudjmisU_ur84NO5Gi-gO0OuqU=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.929845+00 2025-12-09 10:16:04.929851+00 21705 88380FWF#K枣红46码 SPMX-20240815316956 \N \N \N 1 \N [{"file_id": "5c0c6d8f-a29c-472e-b563-f264f1e82dbb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55e5cda72aad4a1688f99731d59212a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55e5cda72aad4a1688f99731d59212a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55e5cda72aad4a1688f99731d59212a4.jpg", "file_size": 26454, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K枣红46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e5cda72aad4a1688f99731d59212a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e5cda72aad4a1688f99731d59212a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55e5cda72aad4a1688f99731d59212a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55e5cda72aad4a1688f99731d59212a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55e5cda72aad4a1688f99731d59212a4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KdNSe56Nk23DJiicDQ4ITcS-NM8=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.933276+00 2025-12-09 10:16:04.933283+00 21706 1277FWE#黄色L SPMX-20240815316957 \N \N \N 1 \N [{"file_id": "d8c0b527-b94a-48f1-aceb-e87f89108b12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ccf1942eb33499ab0f8dc67007fae51.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ccf1942eb33499ab0f8dc67007fae51.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ccf1942eb33499ab0f8dc67007fae51.jpg", "file_size": 17869, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#黄色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf1942eb33499ab0f8dc67007fae51.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf1942eb33499ab0f8dc67007fae51.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf1942eb33499ab0f8dc67007fae51.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ccf1942eb33499ab0f8dc67007fae51.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ccf1942eb33499ab0f8dc67007fae51.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HPs7eh3x6f03BQtxps-xfjdPos0=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.936901+00 2025-12-09 10:16:04.936909+00 21707 JY-DR141#S SPMX-20240815316959 \N \N \N 1 \N [{"file_id": "c26758a2-588c-4923-8f0f-3df0d1357874", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6f0a428525bf470882ce19ea1cdbd46d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6f0a428525bf470882ce19ea1cdbd46d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6f0a428525bf470882ce19ea1cdbd46d.jpg", "file_size": 15189, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR141#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a428525bf470882ce19ea1cdbd46d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a428525bf470882ce19ea1cdbd46d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6f0a428525bf470882ce19ea1cdbd46d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6f0a428525bf470882ce19ea1cdbd46d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6f0a428525bf470882ce19ea1cdbd46d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9w-Cv5DfKIrAdS15bpjhtdhqPok=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.940506+00 2025-12-09 10:16:04.940512+00 21708 LZ1429#上身3号色 SPMX-20240815316948 \N \N \N 1 \N [{"file_id": "4ce5f530-60a5-4b8b-96aa-e56c7ad75c15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd57af8e65a45a5a1bf599990593619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd57af8e65a45a5a1bf599990593619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd57af8e65a45a5a1bf599990593619.jpg", "file_size": 19567, "is_delete": false, "file_type": 1, "original_file_name": "LZ1429#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57af8e65a45a5a1bf599990593619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57af8e65a45a5a1bf599990593619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd57af8e65a45a5a1bf599990593619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd57af8e65a45a5a1bf599990593619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd57af8e65a45a5a1bf599990593619.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Sk8whwtt2BwpeQ0zaorfvEfhYsA=", "createTime": "2024-08-15 15:10:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.944081+00 2025-12-09 10:16:04.944087+00 21709 2418FWF#红色领条 SPMX-20240815316951 \N \N \N 1 \N [{"file_id": "4518e84a-219f-4502-b3a0-43b36e3d1e0f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11bfc1c306014d5ba1e8ba00fbff9a6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11bfc1c306014d5ba1e8ba00fbff9a6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11bfc1c306014d5ba1e8ba00fbff9a6b.jpg", "file_size": 9652, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#红色领条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11bfc1c306014d5ba1e8ba00fbff9a6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11bfc1c306014d5ba1e8ba00fbff9a6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11bfc1c306014d5ba1e8ba00fbff9a6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11bfc1c306014d5ba1e8ba00fbff9a6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11bfc1c306014d5ba1e8ba00fbff9a6b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7o2KXBUcb74__yXBy0yLMcmD_NQ=", "createTime": "2024-08-15 15:10:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.947628+00 2025-12-09 10:16:04.947634+00 21710 LZ1429#上身4号色 SPMX-20240815316963 \N \N \N 1 \N [{"file_id": "059a2fb0-37c1-4089-92db-aa87f1e9c87d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6d3752ea1f54857ad76b340f6f001c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6d3752ea1f54857ad76b340f6f001c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6d3752ea1f54857ad76b340f6f001c5.jpg", "file_size": 19056, "is_delete": false, "file_type": 1, "original_file_name": "LZ1429#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6d3752ea1f54857ad76b340f6f001c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6d3752ea1f54857ad76b340f6f001c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6d3752ea1f54857ad76b340f6f001c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6d3752ea1f54857ad76b340f6f001c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6d3752ea1f54857ad76b340f6f001c5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sFwjoRstFjSg5dICPI4FgXu0z1E=", "createTime": "2024-08-15 15:10:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.951223+00 2025-12-09 10:16:04.951231+00 21711 DN-4455#已放缩水M SPMX-20240815316966 \N \N \N 1 \N [{"file_id": "25fac7ae-3b84-496f-a377-3de233e28ee2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0168aadb6b0e48f18a6834efbe665cd2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0168aadb6b0e48f18a6834efbe665cd2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0168aadb6b0e48f18a6834efbe665cd2.jpg", "file_size": 45766, "is_delete": false, "file_type": 1, "original_file_name": "DN-4455#已放缩水M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0168aadb6b0e48f18a6834efbe665cd2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0168aadb6b0e48f18a6834efbe665cd2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0168aadb6b0e48f18a6834efbe665cd2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0168aadb6b0e48f18a6834efbe665cd2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0168aadb6b0e48f18a6834efbe665cd2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZOfWWoEymlXqzCU4CblyQ_vGeLg=", "createTime": "2024-08-15 15:10:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.954834+00 2025-12-09 10:16:04.954842+00 21712 1277FWE#黄色XL SPMX-20240815316964 \N \N \N 1 \N [{"file_id": "913f4ce9-74cf-4865-85b4-d20c2d1f2f76", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "794b837363da44ac838634bb627cc62c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "794b837363da44ac838634bb627cc62c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "794b837363da44ac838634bb627cc62c.jpg", "file_size": 18140, "is_delete": false, "file_type": 1, "original_file_name": "1277FWE#黄色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/794b837363da44ac838634bb627cc62c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/794b837363da44ac838634bb627cc62c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/794b837363da44ac838634bb627cc62c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/794b837363da44ac838634bb627cc62c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/794b837363da44ac838634bb627cc62c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3FUkJIo98f03KLBJJ8IZL9EMaXQ=", "createTime": "2024-08-15 15:10:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.958594+00 2025-12-09 10:16:04.9586+00 21713 JY-DR141#XL SPMX-20240815316965 \N \N \N 1 \N [{"file_id": "33b53447-b9d8-469d-9f81-b93076f50ac7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg", "file_size": 15693, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR141#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d3fc6c0fbc14b13baebdae6fc1df6b4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BrCiBmVTxcD5A9JFm-NnIRatElU=", "createTime": "2024-08-15 15:10:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.962242+00 2025-12-09 10:16:04.962249+00 21714 HXF03011#白色M SPMX-20240815316969 \N \N \N 1 \N [{"file_id": "12016ae0-0e2c-42f3-a735-42b12254cb50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7c4344f3afeb44d3b941d56555af726a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7c4344f3afeb44d3b941d56555af726a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7c4344f3afeb44d3b941d56555af726a.jpg", "file_size": 19248, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#白色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4344f3afeb44d3b941d56555af726a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4344f3afeb44d3b941d56555af726a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7c4344f3afeb44d3b941d56555af726a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7c4344f3afeb44d3b941d56555af726a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7c4344f3afeb44d3b941d56555af726a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rw0uOS2m-6fZmQx7cCaMk__n2co=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.965834+00 2025-12-09 10:16:04.965841+00 21715 004-1FWE#L SPMX-20240815316971 \N \N \N 1 \N [{"file_id": "0c66f21a-8ea8-4808-9d19-7161e882c01a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1882de3c3c1445d5837be30e02546139.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1882de3c3c1445d5837be30e02546139.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1882de3c3c1445d5837be30e02546139.jpg", "file_size": 22858, "is_delete": false, "file_type": 1, "original_file_name": "004-1FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1882de3c3c1445d5837be30e02546139.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1882de3c3c1445d5837be30e02546139.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1882de3c3c1445d5837be30e02546139.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1882de3c3c1445d5837be30e02546139.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1882de3c3c1445d5837be30e02546139.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ni2406rOfHDbOLIHqz4judFcWg=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.969338+00 2025-12-09 10:16:04.969346+00 21716 2418FWF#黄色正身 SPMX-20240815316972 \N \N \N 1 \N [{"file_id": "4bb1075a-d7bd-45ba-b09a-b446d1a9cf27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "362c388ae1c14dd388125de0b286f800.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "362c388ae1c14dd388125de0b286f800.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "362c388ae1c14dd388125de0b286f800.jpg", "file_size": 14744, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#黄色正身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362c388ae1c14dd388125de0b286f800.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362c388ae1c14dd388125de0b286f800.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/362c388ae1c14dd388125de0b286f800.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/362c388ae1c14dd388125de0b286f800.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/362c388ae1c14dd388125de0b286f800.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kLcbCEsJYuANk6fCTKKAOp6NLmU=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.972774+00 2025-12-09 10:16:04.972781+00 21717 JY-DR225#1号桔红 SPMX-20240815316975 \N \N \N 1 \N [{"file_id": "4012abd0-2e5b-4894-a25a-9e65cd108783", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc9a13ab3889449c944c7c35f81c5029.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc9a13ab3889449c944c7c35f81c5029.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc9a13ab3889449c944c7c35f81c5029.jpg", "file_size": 17260, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR225#1号桔红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9a13ab3889449c944c7c35f81c5029.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9a13ab3889449c944c7c35f81c5029.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc9a13ab3889449c944c7c35f81c5029.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc9a13ab3889449c944c7c35f81c5029.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc9a13ab3889449c944c7c35f81c5029.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Db62sNLI3-JbsbbeTEaBJlbik4g=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.9763+00 2025-12-09 10:16:04.976307+00 21718 FX019#黑VS-D3 SPMX-20240815316967 \N \N \N 1 \N [{"file_id": "18e6530a-0c2a-4ce5-9d64-b525ec57963d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7bb22e44264b778de8428d7725a40b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7bb22e44264b778de8428d7725a40b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7bb22e44264b778de8428d7725a40b.jpg", "file_size": 15552, "is_delete": false, "file_type": 1, "original_file_name": "FX019#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7bb22e44264b778de8428d7725a40b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7bb22e44264b778de8428d7725a40b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7bb22e44264b778de8428d7725a40b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7bb22e44264b778de8428d7725a40b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7bb22e44264b778de8428d7725a40b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PGSpc2K0nbB-cLO2xST0XdLOHro=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.979895+00 2025-12-09 10:16:04.979902+00 21719 CHiC139#7号色-22码 SPMX-20240815316970 \N \N \N 1 \N [{"file_id": "a3d559a9-e818-4212-809d-68ee48d82e43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "055c2c2997274a0a8942d83f833540f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "055c2c2997274a0a8942d83f833540f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "055c2c2997274a0a8942d83f833540f1.jpg", "file_size": 45446, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055c2c2997274a0a8942d83f833540f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055c2c2997274a0a8942d83f833540f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/055c2c2997274a0a8942d83f833540f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/055c2c2997274a0a8942d83f833540f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/055c2c2997274a0a8942d83f833540f1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1OwoAmJSLm__HH4cJdID_0AdI3M=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.98341+00 2025-12-09 10:16:04.983417+00 21720 88380FWF#K枣红48码 SPMX-20240815316968 \N \N \N 1 \N [{"file_id": "420c7eaf-7329-4ea7-a7d5-1fa3cc5185c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19371de87a2f48cf94c1dfe11e82b6ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19371de87a2f48cf94c1dfe11e82b6ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19371de87a2f48cf94c1dfe11e82b6ce.jpg", "file_size": 26311, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K枣红48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19371de87a2f48cf94c1dfe11e82b6ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19371de87a2f48cf94c1dfe11e82b6ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19371de87a2f48cf94c1dfe11e82b6ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19371de87a2f48cf94c1dfe11e82b6ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19371de87a2f48cf94c1dfe11e82b6ce.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-IW3G9F5JWiOZm31ekI-D4bgFl8=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.986938+00 2025-12-09 10:16:04.986945+00 21721 LZ1429#上身5号色 SPMX-20240815316973 \N \N \N 1 \N [{"file_id": "ea8d0b18-b5e6-476f-9ede-328a08b93500", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "061450f557c04db7b0297e8e416163b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "061450f557c04db7b0297e8e416163b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "061450f557c04db7b0297e8e416163b9.jpg", "file_size": 16668, "is_delete": false, "file_type": 1, "original_file_name": "LZ1429#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061450f557c04db7b0297e8e416163b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061450f557c04db7b0297e8e416163b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/061450f557c04db7b0297e8e416163b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/061450f557c04db7b0297e8e416163b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/061450f557c04db7b0297e8e416163b9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nr6SvcDxTg9Lw8Pr-3Qj5fLvNSE=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.990366+00 2025-12-09 10:16:04.990373+00 21722 LJV271FW#VS-D3 SPMX-20240815316974 \N \N \N 1 \N [{"file_id": "9c5faa7a-62ac-407f-b0f5-824055a14c7f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7c21976d66542c79e66edd3cfec33ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7c21976d66542c79e66edd3cfec33ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7c21976d66542c79e66edd3cfec33ad.jpg", "file_size": 14531, "is_delete": false, "file_type": 1, "original_file_name": "LJV271FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c21976d66542c79e66edd3cfec33ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c21976d66542c79e66edd3cfec33ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7c21976d66542c79e66edd3cfec33ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7c21976d66542c79e66edd3cfec33ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7c21976d66542c79e66edd3cfec33ad.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BjxHLxyDspJ-DYPrSZgJ-Wr8AVQ=", "createTime": "2024-08-15 15:10:40"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.99397+00 2025-12-09 10:16:04.993976+00 21723 2418FWF#黄色袖子 SPMX-20240815316979 \N \N \N 1 \N [{"file_id": "0a0f43a7-92e0-485d-a00d-13296047b922", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "22b054c5797347be8ab9a51f091780a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "22b054c5797347be8ab9a51f091780a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "22b054c5797347be8ab9a51f091780a2.jpg", "file_size": 11772, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#黄色袖子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b054c5797347be8ab9a51f091780a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b054c5797347be8ab9a51f091780a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/22b054c5797347be8ab9a51f091780a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/22b054c5797347be8ab9a51f091780a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/22b054c5797347be8ab9a51f091780a2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Oq2XK_Q-eyUOyjx4cGQmpnXkYQ=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:04.997486+00 2025-12-09 10:16:04.997493+00 21724 HXF03011#白色XL SPMX-20240815316986 \N \N \N 1 \N [{"file_id": "e456ae27-774d-4ce8-92a6-819e1bcb300a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3538dc7e73f943eaa2d8fa7f319c99af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3538dc7e73f943eaa2d8fa7f319c99af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3538dc7e73f943eaa2d8fa7f319c99af.jpg", "file_size": 20278, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#白色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3538dc7e73f943eaa2d8fa7f319c99af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3538dc7e73f943eaa2d8fa7f319c99af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3538dc7e73f943eaa2d8fa7f319c99af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3538dc7e73f943eaa2d8fa7f319c99af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3538dc7e73f943eaa2d8fa7f319c99af.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KZceAaaA9JB7qN-MVcgc2bjMUE=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.00104+00 2025-12-09 10:16:05.001047+00 21725 88380FWF#K枣红50码 SPMX-20240815316981 \N \N \N 1 \N [{"file_id": "314d7462-a4e3-40fd-8981-bcdd7d2bf307", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d68612e8a0e4853a59d591e4ada5e24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d68612e8a0e4853a59d591e4ada5e24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d68612e8a0e4853a59d591e4ada5e24.jpg", "file_size": 27155, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K枣红50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d68612e8a0e4853a59d591e4ada5e24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d68612e8a0e4853a59d591e4ada5e24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d68612e8a0e4853a59d591e4ada5e24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d68612e8a0e4853a59d591e4ada5e24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d68612e8a0e4853a59d591e4ada5e24.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C6vqG6q3iLgJGsHuLTpVCTGJrPM=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.004452+00 2025-12-09 10:16:05.004459+00 21726 1277FWF#条纹罗马布 SPMX-20240815316987 \N \N \N 1 \N [{"file_id": "04fe71fc-43a8-476f-b858-7af99f206fb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a6aae7b3caf4946ab840a173c0426fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a6aae7b3caf4946ab840a173c0426fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a6aae7b3caf4946ab840a173c0426fb.jpg", "file_size": 18131, "is_delete": false, "file_type": 1, "original_file_name": "1277FWF#条纹罗马布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a6aae7b3caf4946ab840a173c0426fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a6aae7b3caf4946ab840a173c0426fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a6aae7b3caf4946ab840a173c0426fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a6aae7b3caf4946ab840a173c0426fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a6aae7b3caf4946ab840a173c0426fb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pnhkEHAz96A2vGFfv8ryBkptlTQ=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.00795+00 2025-12-09 10:16:05.007958+00 21727 1277FWF#彩兰XL SPMX-20240815316976 \N \N \N 1 \N [{"file_id": "40ad444e-7b40-4037-8cc7-9f089b57e3b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5cd82b7e036140018c422014f2c81527.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5cd82b7e036140018c422014f2c81527.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5cd82b7e036140018c422014f2c81527.jpg", "file_size": 18592, "is_delete": false, "file_type": 1, "original_file_name": "1277FWF#彩兰XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd82b7e036140018c422014f2c81527.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd82b7e036140018c422014f2c81527.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5cd82b7e036140018c422014f2c81527.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5cd82b7e036140018c422014f2c81527.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5cd82b7e036140018c422014f2c81527.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rQULz5PI28UY2ZCzAV0Kdl9rCS4=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.011386+00 2025-12-09 10:16:05.011393+00 21728 FX019#黑紫竖条WJC22 SPMX-20240815316982 \N \N \N 1 \N [{"file_id": "05acfbed-37e4-45dc-953d-89ef48c69993", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7606520a86e24b5fa5b24239bb9cd059.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7606520a86e24b5fa5b24239bb9cd059.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7606520a86e24b5fa5b24239bb9cd059.jpg", "file_size": 7203, "is_delete": false, "file_type": 1, "original_file_name": "FX019#黑紫竖条WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7606520a86e24b5fa5b24239bb9cd059.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7606520a86e24b5fa5b24239bb9cd059.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7606520a86e24b5fa5b24239bb9cd059.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7606520a86e24b5fa5b24239bb9cd059.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7606520a86e24b5fa5b24239bb9cd059.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GUiTfJ_9PqbafPpQcuLSVQnnLAc=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.01492+00 2025-12-09 10:16:05.014928+00 21729 JY-DR225#2号绿色 SPMX-20240815316980 \N \N \N 1 \N [{"file_id": "fbe8c134-08d6-4fff-b913-bb3a98c6c5aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f2105ee62bd4340b1ba6557d4ff9e60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f2105ee62bd4340b1ba6557d4ff9e60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f2105ee62bd4340b1ba6557d4ff9e60.jpg", "file_size": 17120, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR225#2号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2105ee62bd4340b1ba6557d4ff9e60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2105ee62bd4340b1ba6557d4ff9e60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f2105ee62bd4340b1ba6557d4ff9e60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f2105ee62bd4340b1ba6557d4ff9e60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f2105ee62bd4340b1ba6557d4ff9e60.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WfHpfNqaaYqrvFS8A3bINiKiadw=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.018377+00 2025-12-09 10:16:05.018384+00 21730 004-1FWE#M SPMX-20240815316985 \N \N \N 1 \N [{"file_id": "54e3120c-65f9-410a-99d4-b680b5a2f511", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4ea5034d0ec491bbf08ed03487d420d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4ea5034d0ec491bbf08ed03487d420d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4ea5034d0ec491bbf08ed03487d420d.jpg", "file_size": 23579, "is_delete": false, "file_type": 1, "original_file_name": "004-1FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ea5034d0ec491bbf08ed03487d420d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ea5034d0ec491bbf08ed03487d420d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4ea5034d0ec491bbf08ed03487d420d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4ea5034d0ec491bbf08ed03487d420d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4ea5034d0ec491bbf08ed03487d420d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaHLooEZrijYqapntmYQ6b-gYUA=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.021839+00 2025-12-09 10:16:05.021845+00 21731 CHiC139#7号色-23码 SPMX-20240815316983 \N \N \N 1 \N [{"file_id": "a9bdc3ab-4f11-42b0-a564-a11938fb72ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a53b0982644e487c8d68a8df5e8b18b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a53b0982644e487c8d68a8df5e8b18b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a53b0982644e487c8d68a8df5e8b18b7.jpg", "file_size": 43095, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a53b0982644e487c8d68a8df5e8b18b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a53b0982644e487c8d68a8df5e8b18b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a53b0982644e487c8d68a8df5e8b18b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a53b0982644e487c8d68a8df5e8b18b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a53b0982644e487c8d68a8df5e8b18b7.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wYfLwzZLGyuGxCpX4WnBoRZ-BAE=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.025268+00 2025-12-09 10:16:05.025274+00 21732 LZ142FWF#短袖1号色 SPMX-20240815316984 \N \N \N 1 \N [{"file_id": "eafade8a-ae53-49e1-8950-84a0f7f32de1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cdda1e6a8d964bc789d6787468e44244.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cdda1e6a8d964bc789d6787468e44244.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cdda1e6a8d964bc789d6787468e44244.jpg", "file_size": 18561, "is_delete": false, "file_type": 1, "original_file_name": "LZ142FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdda1e6a8d964bc789d6787468e44244.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdda1e6a8d964bc789d6787468e44244.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cdda1e6a8d964bc789d6787468e44244.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cdda1e6a8d964bc789d6787468e44244.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cdda1e6a8d964bc789d6787468e44244.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eArnJWnO07Q9uxYaUTmeV712Jgs=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.028823+00 2025-12-09 10:16:05.02883+00 21733 DN-4455#已放缩水XL SPMX-20240815316977 \N \N \N 1 \N [{"file_id": "c59a5030-28c0-4060-b381-19128a7b7c0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f67ad730eba74defa236b7dfbc9e657c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f67ad730eba74defa236b7dfbc9e657c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f67ad730eba74defa236b7dfbc9e657c.jpg", "file_size": 45608, "is_delete": false, "file_type": 1, "original_file_name": "DN-4455#已放缩水XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67ad730eba74defa236b7dfbc9e657c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67ad730eba74defa236b7dfbc9e657c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f67ad730eba74defa236b7dfbc9e657c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f67ad730eba74defa236b7dfbc9e657c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f67ad730eba74defa236b7dfbc9e657c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7szpkzSFkSptCzLXyqZNlXMzfDM=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.032309+00 2025-12-09 10:16:05.032316+00 21734 LJV275FW#VS-D3 SPMX-20240815316978 \N \N \N 1 \N [{"file_id": "c02d7f50-333e-494a-9ddc-8a2630ceeb1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84fedcfaad474644bbbfab687cc35791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84fedcfaad474644bbbfab687cc35791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84fedcfaad474644bbbfab687cc35791.jpg", "file_size": 18806, "is_delete": false, "file_type": 1, "original_file_name": "LJV275FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84fedcfaad474644bbbfab687cc35791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84fedcfaad474644bbbfab687cc35791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84fedcfaad474644bbbfab687cc35791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84fedcfaad474644bbbfab687cc35791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84fedcfaad474644bbbfab687cc35791.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tL3qS2wP9kt8D93LTYyzPlMOVEc=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.035811+00 2025-12-09 10:16:05.035818+00 21735 LZ142FWF#短袖2号色 SPMX-20240815316999 \N \N \N 1 \N [{"file_id": "1246e145-31e8-497f-98e9-88577dd579b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4d9e15306364ea1bd14e012b98fcd18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4d9e15306364ea1bd14e012b98fcd18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4d9e15306364ea1bd14e012b98fcd18.jpg", "file_size": 18322, "is_delete": false, "file_type": 1, "original_file_name": "LZ142FWF#短袖2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d9e15306364ea1bd14e012b98fcd18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d9e15306364ea1bd14e012b98fcd18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4d9e15306364ea1bd14e012b98fcd18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4d9e15306364ea1bd14e012b98fcd18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4d9e15306364ea1bd14e012b98fcd18.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2U7AB0vHoXlpcNtXd2O8fb-dyO8=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.039293+00 2025-12-09 10:16:05.039299+00 21736 LJV281FWE#VS-D3 SPMX-20240815317000 \N \N \N 1 \N [{"file_id": "4e1e32bb-2b3e-4d58-b862-484fed60ebf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33abaa127f384627ae088a044dd77747.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33abaa127f384627ae088a044dd77747.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33abaa127f384627ae088a044dd77747.jpg", "file_size": 15078, "is_delete": false, "file_type": 1, "original_file_name": "LJV281FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33abaa127f384627ae088a044dd77747.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33abaa127f384627ae088a044dd77747.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33abaa127f384627ae088a044dd77747.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33abaa127f384627ae088a044dd77747.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33abaa127f384627ae088a044dd77747.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cQRzwBfxpeWds5jVTr4gueHda4I=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.04285+00 2025-12-09 10:16:05.042857+00 21737 JY-DR225#4号紫色 SPMX-20240815317001 \N \N \N 1 \N [{"file_id": "9d887792-69d3-4abd-a544-c31b0a784585", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "471c91b4cf00457886bd4bb974ff768f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "471c91b4cf00457886bd4bb974ff768f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "471c91b4cf00457886bd4bb974ff768f.jpg", "file_size": 17532, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR225#4号紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471c91b4cf00457886bd4bb974ff768f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471c91b4cf00457886bd4bb974ff768f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471c91b4cf00457886bd4bb974ff768f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/471c91b4cf00457886bd4bb974ff768f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/471c91b4cf00457886bd4bb974ff768f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B70jYpzqqULkLTSOs0cA8pnpE5k=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.046375+00 2025-12-09 10:16:05.046382+00 21738 2418FWF#黄色领条 SPMX-20240815316988 \N \N \N 1 \N [{"file_id": "63bcfb28-6ab5-49a6-acd7-f4b231040175", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d558c4e31426483683556c2a490347de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d558c4e31426483683556c2a490347de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d558c4e31426483683556c2a490347de.jpg", "file_size": 10364, "is_delete": false, "file_type": 1, "original_file_name": "2418FWF#黄色领条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d558c4e31426483683556c2a490347de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d558c4e31426483683556c2a490347de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d558c4e31426483683556c2a490347de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d558c4e31426483683556c2a490347de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d558c4e31426483683556c2a490347de.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:udJf5FnikMWmVHWEjGTmHqDDzDQ=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.049878+00 2025-12-09 10:16:05.049884+00 21739 LJV277FWE#VS-D3 SPMX-20240815316989 \N \N \N 1 \N [{"file_id": "d787bf7e-76ea-4dce-b95a-8b22af21a902", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf4211317c9d477aabd0cb62be33cef6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf4211317c9d477aabd0cb62be33cef6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf4211317c9d477aabd0cb62be33cef6.jpg", "file_size": 15155, "is_delete": false, "file_type": 1, "original_file_name": "LJV277FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4211317c9d477aabd0cb62be33cef6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4211317c9d477aabd0cb62be33cef6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf4211317c9d477aabd0cb62be33cef6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf4211317c9d477aabd0cb62be33cef6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf4211317c9d477aabd0cb62be33cef6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LrJgj_bMyp1fMdpXmzYyCp1IHhc=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.053403+00 2025-12-09 10:16:05.053409+00 21740 DN-6606#已放缩水2XL SPMX-20240815316990 \N \N \N 1 \N [{"file_id": "5d4b2108-b94f-4893-abee-fc456ead5ef7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b91b76135fe484899d5fd46c114de91.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b91b76135fe484899d5fd46c114de91.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b91b76135fe484899d5fd46c114de91.jpg", "file_size": 46882, "is_delete": false, "file_type": 1, "original_file_name": "DN-6606#已放缩水2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91b76135fe484899d5fd46c114de91.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91b76135fe484899d5fd46c114de91.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b91b76135fe484899d5fd46c114de91.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b91b76135fe484899d5fd46c114de91.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b91b76135fe484899d5fd46c114de91.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SoDBfWg2IOCRu0oJnJxxcIQoXbg=", "createTime": "2024-08-15 15:10:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.056877+00 2025-12-09 10:16:05.056883+00 21741 FX019 SPMX-20240815316992 \N \N \N 1 \N [{"file_id": "3bc30924-b39c-4fac-8c75-9e9b5e46fa4d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d58b06df423e452781651f5cd0aac728.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d58b06df423e452781651f5cd0aac728.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d58b06df423e452781651f5cd0aac728.jpg", "file_size": 10837, "is_delete": false, "file_type": 1, "original_file_name": "FX019.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58b06df423e452781651f5cd0aac728.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58b06df423e452781651f5cd0aac728.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d58b06df423e452781651f5cd0aac728.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d58b06df423e452781651f5cd0aac728.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d58b06df423e452781651f5cd0aac728.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MHpx-cIHIGobIEPkj8wQSetFOAk=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.0603+00 2025-12-09 10:16:05.060307+00 21742 242#-定位裁-卡其 SPMX-20240815317003 \N \N \N 1 \N [{"file_id": "94ddc596-6eb0-4057-983d-22ac0e953548", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fe7474fbb564e068e55c873c000014a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fe7474fbb564e068e55c873c000014a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fe7474fbb564e068e55c873c000014a.jpg", "file_size": 75538, "is_delete": false, "file_type": 1, "original_file_name": "242#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7474fbb564e068e55c873c000014a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7474fbb564e068e55c873c000014a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fe7474fbb564e068e55c873c000014a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fe7474fbb564e068e55c873c000014a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fe7474fbb564e068e55c873c000014a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nmEy1Yo_rBt0CXxdRA_ec2wg60A=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.06385+00 2025-12-09 10:16:05.063856+00 21743 004-2FWE#L SPMX-20240815316995 \N \N \N 1 \N [{"file_id": "d1939fd3-e3e4-42ff-b8ac-6eccfacdd863", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5f8c182d42546e580dfd49fb5f5a018.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5f8c182d42546e580dfd49fb5f5a018.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5f8c182d42546e580dfd49fb5f5a018.jpg", "file_size": 22782, "is_delete": false, "file_type": 1, "original_file_name": "004-2FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f8c182d42546e580dfd49fb5f5a018.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f8c182d42546e580dfd49fb5f5a018.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5f8c182d42546e580dfd49fb5f5a018.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5f8c182d42546e580dfd49fb5f5a018.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5f8c182d42546e580dfd49fb5f5a018.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kq5UoahJj5E0wdDiVahzDNFJP-M=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.06731+00 2025-12-09 10:16:05.067316+00 21744 HXF03011#粉色2XL SPMX-20240815316997 \N \N \N 1 \N [{"file_id": "08017ec9-0b83-4d2a-841a-3035dfe4beb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3e52a634ea546208b457a2d787dadab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3e52a634ea546208b457a2d787dadab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3e52a634ea546208b457a2d787dadab.jpg", "file_size": 20126, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e52a634ea546208b457a2d787dadab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e52a634ea546208b457a2d787dadab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3e52a634ea546208b457a2d787dadab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3e52a634ea546208b457a2d787dadab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3e52a634ea546208b457a2d787dadab.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pODxqrU1BVk-1hPnQNPOgaJrA0g=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.070771+00 2025-12-09 10:16:05.070778+00 21745 1277FWF#条纹雪纺 SPMX-20240815316998 \N \N \N 1 \N [{"file_id": "eacf2475-6314-4a2f-b1ac-4e6cfbfca1ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42d85f23175d4ab488a26cbb75d7cd7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42d85f23175d4ab488a26cbb75d7cd7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42d85f23175d4ab488a26cbb75d7cd7c.jpg", "file_size": 17756, "is_delete": false, "file_type": 1, "original_file_name": "1277FWF#条纹雪纺.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d85f23175d4ab488a26cbb75d7cd7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d85f23175d4ab488a26cbb75d7cd7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42d85f23175d4ab488a26cbb75d7cd7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42d85f23175d4ab488a26cbb75d7cd7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42d85f23175d4ab488a26cbb75d7cd7c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Apv7dQOXtmUd3_FGsbD1AmrOOc0=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.074271+00 2025-12-09 10:16:05.074277+00 21746 CHiC139#7号色-24码 SPMX-20240815316996 \N \N \N 1 \N [{"file_id": "af908b3c-2056-4638-a1f5-42f6cb5e1d8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e41f8d0c2c3d4d48bc6f57f5f349d222.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e41f8d0c2c3d4d48bc6f57f5f349d222.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e41f8d0c2c3d4d48bc6f57f5f349d222.jpg", "file_size": 42929, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41f8d0c2c3d4d48bc6f57f5f349d222.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41f8d0c2c3d4d48bc6f57f5f349d222.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e41f8d0c2c3d4d48bc6f57f5f349d222.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e41f8d0c2c3d4d48bc6f57f5f349d222.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e41f8d0c2c3d4d48bc6f57f5f349d222.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BXEfZKkCVq4NdXWb4Qene0rIWM4=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.077795+00 2025-12-09 10:16:05.077802+00 21747 JY-DR225#3号蓝色 SPMX-20240815316991 \N \N \N 1 \N [{"file_id": "2e5ed80d-3757-49fd-a880-0152939a9dbd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02b72712bdac4e73b2a7466904dde012.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02b72712bdac4e73b2a7466904dde012.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02b72712bdac4e73b2a7466904dde012.jpg", "file_size": 16886, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR225#3号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b72712bdac4e73b2a7466904dde012.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b72712bdac4e73b2a7466904dde012.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02b72712bdac4e73b2a7466904dde012.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02b72712bdac4e73b2a7466904dde012.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02b72712bdac4e73b2a7466904dde012.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkkflaMLJbb6Ig0IBgCk7vFQMhA=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.081326+00 2025-12-09 10:16:05.081333+00 21748 88380FWF#K深蓝42码 SPMX-20240815316993 \N \N \N 1 \N [{"file_id": "56b78dce-74e7-47d8-a7c3-b6405e384f7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1e88ab8293854079bf646b6e72e4a621.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1e88ab8293854079bf646b6e72e4a621.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1e88ab8293854079bf646b6e72e4a621.jpg", "file_size": 25444, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K深蓝42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e88ab8293854079bf646b6e72e4a621.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e88ab8293854079bf646b6e72e4a621.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1e88ab8293854079bf646b6e72e4a621.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1e88ab8293854079bf646b6e72e4a621.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1e88ab8293854079bf646b6e72e4a621.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6LLs9CexHwblqlSuGHyVGCGcRA=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.084968+00 2025-12-09 10:16:05.084975+00 21749 DN-6606#已放缩水3XL SPMX-20240815317002 \N \N \N 1 \N [{"file_id": "81ef3149-b597-47ec-afdf-dc909486d795", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2af57dc4f314083b230306422ef9f33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2af57dc4f314083b230306422ef9f33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2af57dc4f314083b230306422ef9f33.jpg", "file_size": 47821, "is_delete": false, "file_type": 1, "original_file_name": "DN-6606#已放缩水3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2af57dc4f314083b230306422ef9f33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2af57dc4f314083b230306422ef9f33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2af57dc4f314083b230306422ef9f33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2af57dc4f314083b230306422ef9f33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2af57dc4f314083b230306422ef9f33.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zvqCYk1RK1N4HESstXdbfW7UXbw=", "createTime": "2024-08-15 15:10:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.088578+00 2025-12-09 10:16:05.088585+00 21750 004-2FWE#M SPMX-20240815317008 \N \N \N 1 \N [{"file_id": "a8ba4ce2-1a9a-4a25-8327-74211935ca2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fcc90a7ed744d2d9786700a6b8ebe08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fcc90a7ed744d2d9786700a6b8ebe08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fcc90a7ed744d2d9786700a6b8ebe08.jpg", "file_size": 22739, "is_delete": false, "file_type": 1, "original_file_name": "004-2FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcc90a7ed744d2d9786700a6b8ebe08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcc90a7ed744d2d9786700a6b8ebe08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fcc90a7ed744d2d9786700a6b8ebe08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fcc90a7ed744d2d9786700a6b8ebe08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fcc90a7ed744d2d9786700a6b8ebe08.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gEx7CAT756tMQnu8mOX2rHg6Wn0=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.092214+00 2025-12-09 10:16:05.09222+00 21751 DN-6606#已放缩水L SPMX-20240815317012 \N \N \N 1 \N [{"file_id": "775aa8ee-8b02-48c0-874a-42ac2ba559e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "489fcbe5aec04f03b356f120722a0e0c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "489fcbe5aec04f03b356f120722a0e0c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "489fcbe5aec04f03b356f120722a0e0c.jpg", "file_size": 49870, "is_delete": false, "file_type": 1, "original_file_name": "DN-6606#已放缩水L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489fcbe5aec04f03b356f120722a0e0c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489fcbe5aec04f03b356f120722a0e0c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489fcbe5aec04f03b356f120722a0e0c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/489fcbe5aec04f03b356f120722a0e0c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/489fcbe5aec04f03b356f120722a0e0c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E7x3pQ8LfHciqtpZ-NRozovLRtg=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.095832+00 2025-12-09 10:16:05.095838+00 21752 FX019FW#VS-D3 SPMX-20240815317004 \N \N \N 1 \N [{"file_id": "d7e88391-8a31-44d6-a2f8-2bc5e208cb1a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c8e188760e6464fb3f88d047edb1eff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c8e188760e6464fb3f88d047edb1eff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c8e188760e6464fb3f88d047edb1eff.jpg", "file_size": 15423, "is_delete": false, "file_type": 1, "original_file_name": "FX019FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8e188760e6464fb3f88d047edb1eff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8e188760e6464fb3f88d047edb1eff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c8e188760e6464fb3f88d047edb1eff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c8e188760e6464fb3f88d047edb1eff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c8e188760e6464fb3f88d047edb1eff.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6ZNIg-CDiBn8q2OdGLNbVhG4LJs=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.099588+00 2025-12-09 10:16:05.099595+00 21753 88380FWF#K深蓝44码 SPMX-20240815317005 \N \N \N 1 \N [{"file_id": "d1be5cee-a7d0-4f81-9aec-b6f73f23e730", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg", "file_size": 25770, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K深蓝44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c511e3a7e8b048da9e5d11e1d8eb4a2d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l_k7Dz27QiBSpOkiTu69i7GNoII=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.103308+00 2025-12-09 10:16:05.103314+00 21754 HXF03011#粉色L SPMX-20240815317006 \N \N \N 1 \N [{"file_id": "e7295d30-848b-40b2-b4f2-d9bd3bbab9a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05d1a752f64d4e80a48870323f06fb16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05d1a752f64d4e80a48870323f06fb16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05d1a752f64d4e80a48870323f06fb16.jpg", "file_size": 19355, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d1a752f64d4e80a48870323f06fb16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d1a752f64d4e80a48870323f06fb16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d1a752f64d4e80a48870323f06fb16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05d1a752f64d4e80a48870323f06fb16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05d1a752f64d4e80a48870323f06fb16.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:chirlhWNkPgG6g89bWvyuxWTQJw=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.106873+00 2025-12-09 10:16:05.10688+00 21755 LZ142FWF#短袖3号色 SPMX-20240815317010 \N \N \N 1 \N [{"file_id": "0abf7404-bd74-4014-99a6-10fcc453d3ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77f677d05e964f9592c3b7d2ffa9c1af.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77f677d05e964f9592c3b7d2ffa9c1af.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77f677d05e964f9592c3b7d2ffa9c1af.jpg", "file_size": 18888, "is_delete": false, "file_type": 1, "original_file_name": "LZ142FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f677d05e964f9592c3b7d2ffa9c1af.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f677d05e964f9592c3b7d2ffa9c1af.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77f677d05e964f9592c3b7d2ffa9c1af.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77f677d05e964f9592c3b7d2ffa9c1af.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77f677d05e964f9592c3b7d2ffa9c1af.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGwChwp-c2jC1aboaqLvbZ9SFtI=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.110437+00 2025-12-09 10:16:05.110442+00 21756 LJW0005-33#杏色 SPMX-20240815317011 \N \N \N 1 \N [{"file_id": "53ae020f-2bbd-46d7-a039-918af821163f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "786361ab1b914d6d8077c4c7e2a28843.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "786361ab1b914d6d8077c4c7e2a28843.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "786361ab1b914d6d8077c4c7e2a28843.jpg", "file_size": 15883, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786361ab1b914d6d8077c4c7e2a28843.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786361ab1b914d6d8077c4c7e2a28843.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/786361ab1b914d6d8077c4c7e2a28843.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/786361ab1b914d6d8077c4c7e2a28843.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/786361ab1b914d6d8077c4c7e2a28843.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kwc5DB5fBTqsxV-FFtFU0y0DIFg=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.114001+00 2025-12-09 10:16:05.114007+00 21757 88380FWF#K深蓝46码 SPMX-20240815317015 \N \N \N 1 \N [{"file_id": "2f1c73e1-7d69-466c-b43b-b70fe7586293", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4e7d9f730c8483a996fc50527e57aea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4e7d9f730c8483a996fc50527e57aea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4e7d9f730c8483a996fc50527e57aea.jpg", "file_size": 26598, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K深蓝46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e7d9f730c8483a996fc50527e57aea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e7d9f730c8483a996fc50527e57aea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4e7d9f730c8483a996fc50527e57aea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4e7d9f730c8483a996fc50527e57aea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4e7d9f730c8483a996fc50527e57aea.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:STVyJfeR8ZwJ6CRUoyHLRhDGsJg=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.117461+00 2025-12-09 10:16:05.117468+00 21758 242#-定位裁-橙色 SPMX-20240815317018 \N \N \N 1 \N [{"file_id": "f22f45ac-4bd8-4353-b2ab-522c87378a27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1f8a660b0ad4441b2e95322248ab2e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1f8a660b0ad4441b2e95322248ab2e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1f8a660b0ad4441b2e95322248ab2e5.jpg", "file_size": 78868, "is_delete": false, "file_type": 1, "original_file_name": "242#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f8a660b0ad4441b2e95322248ab2e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f8a660b0ad4441b2e95322248ab2e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1f8a660b0ad4441b2e95322248ab2e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1f8a660b0ad4441b2e95322248ab2e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1f8a660b0ad4441b2e95322248ab2e5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mRlCUz7cVE2XZZACAWH2vi_Th08=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.120998+00 2025-12-09 10:16:05.121005+00 21759 128#-深杏 SPMX-20240815317009 \N \N \N 1 \N [{"file_id": "8edbc902-7513-4ae1-b8b0-25b42ae044e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2e8c18573d34567aff05d6b6dc1fb85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2e8c18573d34567aff05d6b6dc1fb85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2e8c18573d34567aff05d6b6dc1fb85.jpg", "file_size": 52180, "is_delete": false, "file_type": 1, "original_file_name": "128#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e8c18573d34567aff05d6b6dc1fb85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e8c18573d34567aff05d6b6dc1fb85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2e8c18573d34567aff05d6b6dc1fb85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2e8c18573d34567aff05d6b6dc1fb85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2e8c18573d34567aff05d6b6dc1fb85.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iZRLaXz22Vz1WVvU8BYi0FfFgEk=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.124493+00 2025-12-09 10:16:05.1245+00 21760 JY-DR225#5号色黑色 SPMX-20240815317013 \N \N \N 1 \N [{"file_id": "9c23eba8-d516-4154-85fa-6ea2d8334346", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33fb78e79c9740279e824a6497456ff7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33fb78e79c9740279e824a6497456ff7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33fb78e79c9740279e824a6497456ff7.jpg", "file_size": 17101, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR225#5号色黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fb78e79c9740279e824a6497456ff7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fb78e79c9740279e824a6497456ff7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33fb78e79c9740279e824a6497456ff7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33fb78e79c9740279e824a6497456ff7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33fb78e79c9740279e824a6497456ff7.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VB1L3HG1-STDF_FV8ImBhFtWhWY=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.127995+00 2025-12-09 10:16:05.128002+00 21761 CHiC139#7号色-25码 SPMX-20240815317007 \N \N \N 1 \N [{"file_id": "4df935be-09bc-42bf-a44f-181d0f62c6eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b3f743394c8d4fffa51abead2b51d1c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b3f743394c8d4fffa51abead2b51d1c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b3f743394c8d4fffa51abead2b51d1c6.jpg", "file_size": 42285, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f743394c8d4fffa51abead2b51d1c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f743394c8d4fffa51abead2b51d1c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b3f743394c8d4fffa51abead2b51d1c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b3f743394c8d4fffa51abead2b51d1c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b3f743394c8d4fffa51abead2b51d1c6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFMo6xR7Jrfw74v4wstoxsI5Gkg=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.131504+00 2025-12-09 10:16:05.131512+00 21762 FX019FWE#VS-D3 SPMX-20240815317014 \N \N \N 1 \N [{"file_id": "dcc07347-09da-411a-9239-2e89897d1d94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3786da0f5634d3ab9c07b8af41cc5ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3786da0f5634d3ab9c07b8af41cc5ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3786da0f5634d3ab9c07b8af41cc5ab.jpg", "file_size": 15746, "is_delete": false, "file_type": 1, "original_file_name": "FX019FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3786da0f5634d3ab9c07b8af41cc5ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3786da0f5634d3ab9c07b8af41cc5ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3786da0f5634d3ab9c07b8af41cc5ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3786da0f5634d3ab9c07b8af41cc5ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3786da0f5634d3ab9c07b8af41cc5ab.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wxgh3UkSY-hR7y3Hs3JeSqyULF4=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.135043+00 2025-12-09 10:16:05.13505+00 21763 HXF03011#粉色M SPMX-20240815317016 \N \N \N 1 \N [{"file_id": "d20f42c1-e823-4177-b146-f638160bfc29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11823f2499144f9abc203ddfa2c3d1b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11823f2499144f9abc203ddfa2c3d1b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11823f2499144f9abc203ddfa2c3d1b9.jpg", "file_size": 18560, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11823f2499144f9abc203ddfa2c3d1b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11823f2499144f9abc203ddfa2c3d1b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11823f2499144f9abc203ddfa2c3d1b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11823f2499144f9abc203ddfa2c3d1b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11823f2499144f9abc203ddfa2c3d1b9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bMUDTHBrSAbsSZ7qJBeVjlf1HHU=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.138636+00 2025-12-09 10:16:05.138643+00 21764 CHiC139#7号色净色 SPMX-20240815317019 \N \N \N 1 \N [{"file_id": "6c0a5072-0761-4221-9bb6-7a374d6f2821", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd6e874d4b6949538ecf70e1a375d3be.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd6e874d4b6949538ecf70e1a375d3be.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd6e874d4b6949538ecf70e1a375d3be.jpg", "file_size": 13162, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#7号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6e874d4b6949538ecf70e1a375d3be.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6e874d4b6949538ecf70e1a375d3be.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd6e874d4b6949538ecf70e1a375d3be.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd6e874d4b6949538ecf70e1a375d3be.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd6e874d4b6949538ecf70e1a375d3be.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NyHdGzzNmf_BA_Jze4DB9xxUYbA=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.142166+00 2025-12-09 10:16:05.142171+00 21765 DN-6606#已放缩水M SPMX-20240815317024 \N \N \N 1 \N [{"file_id": "0868954a-432e-4525-9fe1-aed4759a5a6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e783b93048ab4bc6a47a96190bf50dc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e783b93048ab4bc6a47a96190bf50dc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e783b93048ab4bc6a47a96190bf50dc7.jpg", "file_size": 48942, "is_delete": false, "file_type": 1, "original_file_name": "DN-6606#已放缩水M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e783b93048ab4bc6a47a96190bf50dc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e783b93048ab4bc6a47a96190bf50dc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e783b93048ab4bc6a47a96190bf50dc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e783b93048ab4bc6a47a96190bf50dc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e783b93048ab4bc6a47a96190bf50dc7.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OJcQelExEHkT1Pl4rsPhk6yfC60=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.145804+00 2025-12-09 10:16:05.145816+00 21766 128#-灰色 SPMX-20240815317022 \N \N \N 1 \N [{"file_id": "c67f93b0-8ef5-4bcc-b943-2963e0fc58d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg", "file_size": 63074, "is_delete": false, "file_type": 1, "original_file_name": "128#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14bab72e0ebb4bd8a7f7fa01876fdc5c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ANULw7r3G3q18eujibCMDf5BBm0=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.149384+00 2025-12-09 10:16:05.14939+00 21767 FX019FWF#正身番禺调色 SPMX-20240815317025 \N \N \N 1 \N [{"file_id": "38d85187-2906-47c7-8917-6d4a97912669", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0034d5475f0b49f0a49f45f269cf581e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0034d5475f0b49f0a49f45f269cf581e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0034d5475f0b49f0a49f45f269cf581e.jpg", "file_size": 21730, "is_delete": false, "file_type": 1, "original_file_name": "FX019FWF#正身番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0034d5475f0b49f0a49f45f269cf581e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0034d5475f0b49f0a49f45f269cf581e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0034d5475f0b49f0a49f45f269cf581e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0034d5475f0b49f0a49f45f269cf581e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0034d5475f0b49f0a49f45f269cf581e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y5ktzmrS1aXZYhaJZmf0ifOrkRg=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.152934+00 2025-12-09 10:16:05.152941+00 21768 JY-DR236#1号深玫红 SPMX-20240815317028 \N \N \N 1 \N [{"file_id": "57033a0b-26de-4673-b0e3-3801af8f3b13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3de8de65872b40cc8a15f06294e53e0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3de8de65872b40cc8a15f06294e53e0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3de8de65872b40cc8a15f06294e53e0d.jpg", "file_size": 48160, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR236#1号深玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de8de65872b40cc8a15f06294e53e0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de8de65872b40cc8a15f06294e53e0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3de8de65872b40cc8a15f06294e53e0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3de8de65872b40cc8a15f06294e53e0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3de8de65872b40cc8a15f06294e53e0d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NBdtCX_OjyCz1CYyNk_3uAn-FVM=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.156468+00 2025-12-09 10:16:05.156474+00 21769 004-3FWE#L SPMX-20240815317020 \N \N \N 1 \N [{"file_id": "76603cbe-2a62-4200-9942-43a3f6cb8f4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3051f497fbcc4ff2a3dc2f9319376270.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3051f497fbcc4ff2a3dc2f9319376270.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3051f497fbcc4ff2a3dc2f9319376270.jpg", "file_size": 23501, "is_delete": false, "file_type": 1, "original_file_name": "004-3FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3051f497fbcc4ff2a3dc2f9319376270.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3051f497fbcc4ff2a3dc2f9319376270.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3051f497fbcc4ff2a3dc2f9319376270.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3051f497fbcc4ff2a3dc2f9319376270.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3051f497fbcc4ff2a3dc2f9319376270.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zJMz8NRGaa9L7mIEt9uO5VnmeBY=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.159918+00 2025-12-09 10:16:05.159924+00 21770 128#-白色 SPMX-20240815317030 \N \N \N 1 \N [{"file_id": "9b0d2836-1900-4631-9487-9ba82e96e5fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ded084d867944fbea3e5549c60589546.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ded084d867944fbea3e5549c60589546.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ded084d867944fbea3e5549c60589546.jpg", "file_size": 53138, "is_delete": false, "file_type": 1, "original_file_name": "128#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded084d867944fbea3e5549c60589546.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded084d867944fbea3e5549c60589546.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ded084d867944fbea3e5549c60589546.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ded084d867944fbea3e5549c60589546.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ded084d867944fbea3e5549c60589546.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:55JxO_CMNA1g2w-XZ1XfS8df61A=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.163478+00 2025-12-09 10:16:05.163484+00 21771 004-3FWE#M SPMX-20240815317031 \N \N \N 1 \N [{"file_id": "334cecd3-ae8b-43f7-90cd-fa07f4276fde", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5938eb878684542820140e45d7b747e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5938eb878684542820140e45d7b747e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5938eb878684542820140e45d7b747e.jpg", "file_size": 23884, "is_delete": false, "file_type": 1, "original_file_name": "004-3FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5938eb878684542820140e45d7b747e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5938eb878684542820140e45d7b747e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5938eb878684542820140e45d7b747e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5938eb878684542820140e45d7b747e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5938eb878684542820140e45d7b747e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPwG7rmVocvxfHNCidjkucdc-_M=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.166976+00 2025-12-09 10:16:05.166984+00 21772 88380FWF#K深蓝48码 SPMX-20240815317026 \N \N \N 1 \N [{"file_id": "2d07c5bc-20b3-41d9-ad7a-d6b806c82a2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06b80eefa51a4bb3ab04350175582975.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06b80eefa51a4bb3ab04350175582975.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06b80eefa51a4bb3ab04350175582975.jpg", "file_size": 26524, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K深蓝48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b80eefa51a4bb3ab04350175582975.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b80eefa51a4bb3ab04350175582975.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b80eefa51a4bb3ab04350175582975.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06b80eefa51a4bb3ab04350175582975.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06b80eefa51a4bb3ab04350175582975.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dtqlAnDHLqO4NhpS-q9yPe3Njyc=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.170476+00 2025-12-09 10:16:05.170482+00 21773 CHiC139#8号色-21码 SPMX-20240815317027 \N \N \N 1 \N [{"file_id": "e776a619-44da-4cb6-b717-c33b44f34375", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3167887993b84101b37161dac20849a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3167887993b84101b37161dac20849a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3167887993b84101b37161dac20849a1.jpg", "file_size": 43032, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3167887993b84101b37161dac20849a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3167887993b84101b37161dac20849a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3167887993b84101b37161dac20849a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3167887993b84101b37161dac20849a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3167887993b84101b37161dac20849a1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdVMilOdr3nZY7a24IOPw09irJU=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.174252+00 2025-12-09 10:16:05.174258+00 21774 HXF03011#粉色XL SPMX-20240815317029 \N \N \N 1 \N [{"file_id": "ec91f047-0829-4295-84b3-c431613291d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3d8566b77534c668c70dc3fa7be853d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3d8566b77534c668c70dc3fa7be853d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3d8566b77534c668c70dc3fa7be853d.jpg", "file_size": 19551, "is_delete": false, "file_type": 1, "original_file_name": "HXF03011#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3d8566b77534c668c70dc3fa7be853d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3d8566b77534c668c70dc3fa7be853d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3d8566b77534c668c70dc3fa7be853d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3d8566b77534c668c70dc3fa7be853d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3d8566b77534c668c70dc3fa7be853d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bJkToT3DBfSVsroUX4IoADfYOZQ=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.178077+00 2025-12-09 10:16:05.178084+00 21775 LZ142FWF#短袖4号色 SPMX-20240815317021 \N \N \N 1 \N [{"file_id": "ba5d897b-4a49-4155-96fe-2b92dbc52ea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7537889d5a714ad9b522729af6ccadbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7537889d5a714ad9b522729af6ccadbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7537889d5a714ad9b522729af6ccadbb.jpg", "file_size": 18324, "is_delete": false, "file_type": 1, "original_file_name": "LZ142FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7537889d5a714ad9b522729af6ccadbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7537889d5a714ad9b522729af6ccadbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7537889d5a714ad9b522729af6ccadbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7537889d5a714ad9b522729af6ccadbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7537889d5a714ad9b522729af6ccadbb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEBQcSqhBc0M3to5MRo9Hfdpcl0=", "createTime": "2024-08-15 15:10:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.181928+00 2025-12-09 10:16:05.181934+00 21776 242#-定位裁-白色 SPMX-20240815317032 \N \N \N 1 \N [{"file_id": "06cb4521-3ae8-4645-8a9a-1ebf4c399ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "55699c3bef484f0d94e1af0840ba1e74.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "55699c3bef484f0d94e1af0840ba1e74.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "55699c3bef484f0d94e1af0840ba1e74.jpg", "file_size": 74991, "is_delete": false, "file_type": 1, "original_file_name": "242#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55699c3bef484f0d94e1af0840ba1e74.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55699c3bef484f0d94e1af0840ba1e74.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/55699c3bef484f0d94e1af0840ba1e74.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/55699c3bef484f0d94e1af0840ba1e74.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/55699c3bef484f0d94e1af0840ba1e74.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B1_a5MtItLWOPtn_WQch3DkLE0Y=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.185743+00 2025-12-09 10:16:05.18575+00 21777 LJW0005-33#杏色匹布 SPMX-20240815317023 \N \N \N 1 \N [{"file_id": "9b267a2e-4132-4ff0-b687-f6ebcfdd9767", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf50a99e94b84e35859dd39c492b92e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf50a99e94b84e35859dd39c492b92e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf50a99e94b84e35859dd39c492b92e8.jpg", "file_size": 7637, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#杏色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf50a99e94b84e35859dd39c492b92e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf50a99e94b84e35859dd39c492b92e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf50a99e94b84e35859dd39c492b92e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf50a99e94b84e35859dd39c492b92e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf50a99e94b84e35859dd39c492b92e8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xGjeuuPHCRZXc5ltXcWaxcRXhBs=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.189598+00 2025-12-09 10:16:05.189604+00 21778 LZ142FWF#短袖5号色 SPMX-20240815317033 \N \N \N 1 \N [{"file_id": "ec30f8d5-4ad7-4e35-b49d-542f5184a37b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7334befc97849708898a14f71ecde2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7334befc97849708898a14f71ecde2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7334befc97849708898a14f71ecde2e.jpg", "file_size": 19569, "is_delete": false, "file_type": 1, "original_file_name": "LZ142FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7334befc97849708898a14f71ecde2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7334befc97849708898a14f71ecde2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7334befc97849708898a14f71ecde2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7334befc97849708898a14f71ecde2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7334befc97849708898a14f71ecde2e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wR4iQvOP4r2REV3C27seSpasBOE=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.193424+00 2025-12-09 10:16:05.19343+00 21779 FX019FWF#袖子番禺调色 SPMX-20240815317037 \N \N \N 1 \N [{"file_id": "193af3ec-b79c-407d-ba84-3f81e675feaa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb8d34ffad0c4cdb82a8da92669d5e6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb8d34ffad0c4cdb82a8da92669d5e6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb8d34ffad0c4cdb82a8da92669d5e6c.jpg", "file_size": 19189, "is_delete": false, "file_type": 1, "original_file_name": "FX019FWF#袖子番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8d34ffad0c4cdb82a8da92669d5e6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8d34ffad0c4cdb82a8da92669d5e6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb8d34ffad0c4cdb82a8da92669d5e6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb8d34ffad0c4cdb82a8da92669d5e6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb8d34ffad0c4cdb82a8da92669d5e6c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bulctBNg9ifYvhWGchBU0PHpoto=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.19722+00 2025-12-09 10:16:05.197226+00 21780 LJW0005-33#橘色 SPMX-20240815317034 \N \N \N 1 \N [{"file_id": "dcd8a3f1-53c6-40d6-849f-15c74c6e1d06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "706f3d9484644b569117e7655be41a02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "706f3d9484644b569117e7655be41a02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "706f3d9484644b569117e7655be41a02.jpg", "file_size": 15751, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706f3d9484644b569117e7655be41a02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706f3d9484644b569117e7655be41a02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/706f3d9484644b569117e7655be41a02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/706f3d9484644b569117e7655be41a02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/706f3d9484644b569117e7655be41a02.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bZxXcs1TJiccDr0oGUInlXa_zEM=", "createTime": "2024-08-15 15:10:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.201249+00 2025-12-09 10:16:05.201257+00 21781 HXF0302#粉色2XL SPMX-20240815317040 \N \N \N 1 \N [{"file_id": "bb71083f-5b93-4190-990e-38273403526e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbfa70042c5a43a7a7ad59d0596b1fea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbfa70042c5a43a7a7ad59d0596b1fea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbfa70042c5a43a7a7ad59d0596b1fea.jpg", "file_size": 13038, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#粉色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa70042c5a43a7a7ad59d0596b1fea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa70042c5a43a7a7ad59d0596b1fea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbfa70042c5a43a7a7ad59d0596b1fea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbfa70042c5a43a7a7ad59d0596b1fea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbfa70042c5a43a7a7ad59d0596b1fea.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RVOwPdfTXfEp9JehOPSMud85tug=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.204781+00 2025-12-09 10:16:05.204788+00 21782 CHiC139#8号色-22码 SPMX-20240815317039 \N \N \N 1 \N [{"file_id": "756a6fd8-9b1c-4ba0-9dd1-7a172790b6a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53e9364f20d941b6befe9c5a0b4bfab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53e9364f20d941b6befe9c5a0b4bfab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53e9364f20d941b6befe9c5a0b4bfab0.jpg", "file_size": 45495, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e9364f20d941b6befe9c5a0b4bfab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e9364f20d941b6befe9c5a0b4bfab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53e9364f20d941b6befe9c5a0b4bfab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53e9364f20d941b6befe9c5a0b4bfab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53e9364f20d941b6befe9c5a0b4bfab0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TwkUA4cCXXkDko3x8qf_DNVPDg0=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.208538+00 2025-12-09 10:16:05.208545+00 21783 88380FWF#K深蓝50码 SPMX-20240815317036 \N \N \N 1 \N [{"file_id": "9510dc38-7a03-49e4-94f4-e27f1b003866", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56107b1979984fa285f23f0760b491d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56107b1979984fa285f23f0760b491d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56107b1979984fa285f23f0760b491d1.jpg", "file_size": 26951, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K深蓝50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56107b1979984fa285f23f0760b491d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56107b1979984fa285f23f0760b491d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56107b1979984fa285f23f0760b491d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56107b1979984fa285f23f0760b491d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56107b1979984fa285f23f0760b491d1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qP0ldMMkWjY7h6jl6qPg3EMQDXs=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.212176+00 2025-12-09 10:16:05.212182+00 21784 242#-定位裁-黄色 SPMX-20240815317041 \N \N \N 1 \N [{"file_id": "6eb71313-af66-4322-89e3-b0f8badd1a8f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "83ca1813cddb4b85ad4ad45191ec2050.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "83ca1813cddb4b85ad4ad45191ec2050.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "83ca1813cddb4b85ad4ad45191ec2050.jpg", "file_size": 82544, "is_delete": false, "file_type": 1, "original_file_name": "242#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ca1813cddb4b85ad4ad45191ec2050.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ca1813cddb4b85ad4ad45191ec2050.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/83ca1813cddb4b85ad4ad45191ec2050.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/83ca1813cddb4b85ad4ad45191ec2050.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/83ca1813cddb4b85ad4ad45191ec2050.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61M11zzdkhU6jgf15s790VjlKcI=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.215608+00 2025-12-09 10:16:05.215613+00 21785 DN-6606#已放缩水XL SPMX-20240815317035 \N \N \N 1 \N [{"file_id": "2a7008ff-677e-4428-8c2e-2b5c3519a03f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd1aa1adca3f4c6b87b2268fdba52ca2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd1aa1adca3f4c6b87b2268fdba52ca2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd1aa1adca3f4c6b87b2268fdba52ca2.jpg", "file_size": 46813, "is_delete": false, "file_type": 1, "original_file_name": "DN-6606#已放缩水XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1aa1adca3f4c6b87b2268fdba52ca2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1aa1adca3f4c6b87b2268fdba52ca2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd1aa1adca3f4c6b87b2268fdba52ca2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd1aa1adca3f4c6b87b2268fdba52ca2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd1aa1adca3f4c6b87b2268fdba52ca2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QxZ439F6V2xRyj6TwF485OChaT8=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.218751+00 2025-12-09 10:16:05.218756+00 21786 JY-DR236#6号橘色 SPMX-20240815317038 \N \N \N 1 \N [{"file_id": "86961fce-8af8-44d4-8e31-b0b7c9257c58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg", "file_size": 48121, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR236#6号橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebde2d7b17984bf8b6e6051c2bc7fc3d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8oJ0lqr9uTbuMnpIouYP9dfOj8=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.222394+00 2025-12-09 10:16:05.222401+00 21787 128#-黑色 SPMX-20240815317042 \N \N \N 1 \N [{"file_id": "f36e7ea8-fde3-42d6-a8aa-127c15821d12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c5c36044bd8a4f9d8337d11e7d7972a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c5c36044bd8a4f9d8337d11e7d7972a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c5c36044bd8a4f9d8337d11e7d7972a8.jpg", "file_size": 49423, "is_delete": false, "file_type": 1, "original_file_name": "128#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c36044bd8a4f9d8337d11e7d7972a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c36044bd8a4f9d8337d11e7d7972a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c5c36044bd8a4f9d8337d11e7d7972a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c5c36044bd8a4f9d8337d11e7d7972a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c5c36044bd8a4f9d8337d11e7d7972a8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DX2cr6sBEf1yNOwqeHnuZAhjIuE=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.226665+00 2025-12-09 10:16:05.226671+00 21788 FX020# SPMX-20240815317046 \N \N \N 1 \N [{"file_id": "15f0dac1-693a-46b9-8026-df94847712d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09fe8f77c8a5447ea677cdd4016e3eb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09fe8f77c8a5447ea677cdd4016e3eb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09fe8f77c8a5447ea677cdd4016e3eb0.jpg", "file_size": 25956, "is_delete": false, "file_type": 1, "original_file_name": "FX020#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09fe8f77c8a5447ea677cdd4016e3eb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09fe8f77c8a5447ea677cdd4016e3eb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09fe8f77c8a5447ea677cdd4016e3eb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09fe8f77c8a5447ea677cdd4016e3eb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09fe8f77c8a5447ea677cdd4016e3eb0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PB58LLVoGq7nZPHw2N3crnSOOO4=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.230492+00 2025-12-09 10:16:05.230499+00 21789 128#LWQ15原版色 SPMX-20240815317053 \N \N \N 1 \N [{"file_id": "a90f2d92-d8ad-471d-8419-b8268ff47445", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a59085259b8244908d25765a09578072.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a59085259b8244908d25765a09578072.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a59085259b8244908d25765a09578072.jpg", "file_size": 26725, "is_delete": false, "file_type": 1, "original_file_name": "128#LWQ15原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59085259b8244908d25765a09578072.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59085259b8244908d25765a09578072.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59085259b8244908d25765a09578072.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a59085259b8244908d25765a09578072.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a59085259b8244908d25765a09578072.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VPy9zgUIX5I8-fZB4TuZS7T0THE=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.234243+00 2025-12-09 10:16:05.23425+00 21790 LZ1430#上身2号色 SPMX-20240815317054 \N \N \N 1 \N [{"file_id": "8511986e-7869-47ad-95a6-0ec40d493530", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e55c1655fe1a487aa583bab6e12bdc4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e55c1655fe1a487aa583bab6e12bdc4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e55c1655fe1a487aa583bab6e12bdc4b.jpg", "file_size": 20248, "is_delete": false, "file_type": 1, "original_file_name": "LZ1430#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c1655fe1a487aa583bab6e12bdc4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c1655fe1a487aa583bab6e12bdc4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e55c1655fe1a487aa583bab6e12bdc4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e55c1655fe1a487aa583bab6e12bdc4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e55c1655fe1a487aa583bab6e12bdc4b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:u30SdSKtrSbGQoQsR0rBqVxqTYI=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.237888+00 2025-12-09 10:16:05.237894+00 21791 LJW0005-33#橘色匹布 SPMX-20240815317045 \N \N \N 1 \N [{"file_id": "4bba5d35-b02d-49fc-99d7-2f4db2e55f94", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae945e4c69d44814af9fa375089c276e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae945e4c69d44814af9fa375089c276e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae945e4c69d44814af9fa375089c276e.jpg", "file_size": 8351, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#橘色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae945e4c69d44814af9fa375089c276e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae945e4c69d44814af9fa375089c276e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae945e4c69d44814af9fa375089c276e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae945e4c69d44814af9fa375089c276e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae945e4c69d44814af9fa375089c276e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7xbEBDTvAqckkTQRrAzw9ptUj0=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.241524+00 2025-12-09 10:16:05.24153+00 21792 DN-6610#已放缩水2XL SPMX-20240815317048 \N \N \N 1 \N [{"file_id": "694050b9-8c2e-472b-b529-418e26cfb8ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7db2f12ab6b48f1b18e856111103e9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7db2f12ab6b48f1b18e856111103e9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7db2f12ab6b48f1b18e856111103e9b.jpg", "file_size": 45451, "is_delete": false, "file_type": 1, "original_file_name": "DN-6610#已放缩水2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7db2f12ab6b48f1b18e856111103e9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7db2f12ab6b48f1b18e856111103e9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7db2f12ab6b48f1b18e856111103e9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7db2f12ab6b48f1b18e856111103e9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7db2f12ab6b48f1b18e856111103e9b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q4ymE5R1omoLuifmqzEbyRQaCXc=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.245126+00 2025-12-09 10:16:05.245133+00 21793 CHiC139#8号色-23码 SPMX-20240815317049 \N \N \N 1 \N [{"file_id": "ad761bfb-bec3-460e-9434-be3548ac8160", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d2f287c1a49486da84beca4297b897c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d2f287c1a49486da84beca4297b897c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d2f287c1a49486da84beca4297b897c.jpg", "file_size": 44196, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2f287c1a49486da84beca4297b897c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2f287c1a49486da84beca4297b897c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d2f287c1a49486da84beca4297b897c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d2f287c1a49486da84beca4297b897c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d2f287c1a49486da84beca4297b897c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lA842MLY95zBmqaLf7AwT2GFNDA=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.248874+00 2025-12-09 10:16:05.24888+00 21794 LJW0005-33#白色 SPMX-20240815317055 \N \N \N 1 \N [{"file_id": "713ca86b-ab96-4b52-88fa-515b8b4e4edc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "df58cf7eb73941369d8d3d2abcf90b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "df58cf7eb73941369d8d3d2abcf90b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "df58cf7eb73941369d8d3d2abcf90b1f.jpg", "file_size": 16302, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df58cf7eb73941369d8d3d2abcf90b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df58cf7eb73941369d8d3d2abcf90b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/df58cf7eb73941369d8d3d2abcf90b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/df58cf7eb73941369d8d3d2abcf90b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/df58cf7eb73941369d8d3d2abcf90b1f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yI2lokO-toQ92LZgEJYtH_yY18E=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.252329+00 2025-12-09 10:16:05.252334+00 21795 LZ1430#上身1号色 SPMX-20240815317044 \N \N \N 1 \N [{"file_id": "4bad6b1f-13a5-4e11-b5c2-4a91d32de618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e5adf6285db49df90e3b09c3c01c4f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e5adf6285db49df90e3b09c3c01c4f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e5adf6285db49df90e3b09c3c01c4f0.jpg", "file_size": 20420, "is_delete": false, "file_type": 1, "original_file_name": "LZ1430#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5adf6285db49df90e3b09c3c01c4f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5adf6285db49df90e3b09c3c01c4f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e5adf6285db49df90e3b09c3c01c4f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e5adf6285db49df90e3b09c3c01c4f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e5adf6285db49df90e3b09c3c01c4f0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WF6HOjZvDaVzUsApLRA2YMDH9vw=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.255713+00 2025-12-09 10:16:05.255719+00 21796 HXF0302#粉色L SPMX-20240815317051 \N \N \N 1 \N [{"file_id": "f489de04-0b56-41a5-9648-aae311ac280b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "305daa7990f347cd8cc60160d36d3def.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "305daa7990f347cd8cc60160d36d3def.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "305daa7990f347cd8cc60160d36d3def.jpg", "file_size": 14053, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#粉色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305daa7990f347cd8cc60160d36d3def.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305daa7990f347cd8cc60160d36d3def.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/305daa7990f347cd8cc60160d36d3def.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/305daa7990f347cd8cc60160d36d3def.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/305daa7990f347cd8cc60160d36d3def.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:04uEVwGWsVzGEb4wtWwXVd2UD_A=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.259456+00 2025-12-09 10:16:05.259462+00 21797 004-4FWE#L SPMX-20240815317043 \N \N \N 1 \N [{"file_id": "148cf69d-fe17-4d61-a382-ad2611013778", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0919ada17f014f388e4a5faa32b6dbd6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0919ada17f014f388e4a5faa32b6dbd6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0919ada17f014f388e4a5faa32b6dbd6.jpg", "file_size": 25091, "is_delete": false, "file_type": 1, "original_file_name": "004-4FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0919ada17f014f388e4a5faa32b6dbd6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0919ada17f014f388e4a5faa32b6dbd6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0919ada17f014f388e4a5faa32b6dbd6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0919ada17f014f388e4a5faa32b6dbd6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0919ada17f014f388e4a5faa32b6dbd6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqmS_0u81vm3CndeDIsVLY6L818=", "createTime": "2024-08-15 15:10:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.263211+00 2025-12-09 10:16:05.263218+00 21798 JY-DR236#7号蓝色 SPMX-20240815317050 \N \N \N 1 \N [{"file_id": "f61f1bf6-99ed-482e-bd95-e61242a97ef0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d9cebab93a96484dbcb150161366b77d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d9cebab93a96484dbcb150161366b77d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d9cebab93a96484dbcb150161366b77d.jpg", "file_size": 51813, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR236#7号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cebab93a96484dbcb150161366b77d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cebab93a96484dbcb150161366b77d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d9cebab93a96484dbcb150161366b77d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d9cebab93a96484dbcb150161366b77d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d9cebab93a96484dbcb150161366b77d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZyzcyAYPSSx2aVGxSKFielj3nnY=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.267015+00 2025-12-09 10:16:05.26702+00 21799 242#-定位裁-黑色 SPMX-20240815317052 \N \N \N 1 \N [{"file_id": "41f0692b-4fbd-40ec-8a61-10864df1ba50", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4b6d36c1860542f7afe120b9dd5362d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4b6d36c1860542f7afe120b9dd5362d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4b6d36c1860542f7afe120b9dd5362d6.jpg", "file_size": 78817, "is_delete": false, "file_type": 1, "original_file_name": "242#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d36c1860542f7afe120b9dd5362d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d36c1860542f7afe120b9dd5362d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4b6d36c1860542f7afe120b9dd5362d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4b6d36c1860542f7afe120b9dd5362d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4b6d36c1860542f7afe120b9dd5362d6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ASYoGfUAgY_DLnPlP-kYP1x899A=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.270634+00 2025-12-09 10:16:05.27064+00 21800 88380FWF#K粉色42码 SPMX-20240815317047 \N \N \N 1 \N [{"file_id": "dc2a22c1-2e50-4f7d-a2ee-24f4783546df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a31c71d18f5b4aefb8033fa068bac5cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a31c71d18f5b4aefb8033fa068bac5cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a31c71d18f5b4aefb8033fa068bac5cb.jpg", "file_size": 24067, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K粉色42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c71d18f5b4aefb8033fa068bac5cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c71d18f5b4aefb8033fa068bac5cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a31c71d18f5b4aefb8033fa068bac5cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a31c71d18f5b4aefb8033fa068bac5cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a31c71d18f5b4aefb8033fa068bac5cb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FoJLPGqAzNATvxMvNc7zXZVNOao=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.274214+00 2025-12-09 10:16:05.274221+00 21801 DN-6610#已放缩水L SPMX-20240815317068 \N \N \N 1 \N [{"file_id": "99d27e5b-f789-46af-9588-be76a3e6891a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b483b7f353a4f84a463c972e76d36b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b483b7f353a4f84a463c972e76d36b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b483b7f353a4f84a463c972e76d36b5.jpg", "file_size": 47193, "is_delete": false, "file_type": 1, "original_file_name": "DN-6610#已放缩水L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b483b7f353a4f84a463c972e76d36b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b483b7f353a4f84a463c972e76d36b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b483b7f353a4f84a463c972e76d36b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b483b7f353a4f84a463c972e76d36b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b483b7f353a4f84a463c972e76d36b5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0YqCAj90IMc66YZ-iYhMer6j0o=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.277931+00 2025-12-09 10:16:05.277936+00 21802 88380FWF#K粉色44码 SPMX-20240815317059 \N \N \N 1 \N [{"file_id": "327c2f7a-7925-47b0-869d-8da65ea77218", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a407f747f364a0e9ba5f60707aed90a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a407f747f364a0e9ba5f60707aed90a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a407f747f364a0e9ba5f60707aed90a.jpg", "file_size": 24421, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K粉色44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a407f747f364a0e9ba5f60707aed90a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a407f747f364a0e9ba5f60707aed90a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a407f747f364a0e9ba5f60707aed90a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a407f747f364a0e9ba5f60707aed90a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a407f747f364a0e9ba5f60707aed90a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJnaPlvOzGJRzxHNZW4W73mFXoU=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.281742+00 2025-12-09 10:16:05.281748+00 21803 128#LWQ15彩蓝色 SPMX-20240815317065 \N \N \N 1 \N [{"file_id": "de8f6072-0d94-4fdf-9ff0-6b8db844cad5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1fca83601e624d07be4a9086568448f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1fca83601e624d07be4a9086568448f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1fca83601e624d07be4a9086568448f0.jpg", "file_size": 27839, "is_delete": false, "file_type": 1, "original_file_name": "128#LWQ15彩蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca83601e624d07be4a9086568448f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca83601e624d07be4a9086568448f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1fca83601e624d07be4a9086568448f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1fca83601e624d07be4a9086568448f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1fca83601e624d07be4a9086568448f0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qruKIxVKgqdkAV98xfnO6WihaOA=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.2868+00 2025-12-09 10:16:05.286806+00 21804 88380FWF#K粉色46码 SPMX-20240815317069 \N \N \N 1 \N [{"file_id": "e2de6281-1404-4224-845b-97efb1b48168", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "158bcc9db111448382b8440981c99ee2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "158bcc9db111448382b8440981c99ee2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "158bcc9db111448382b8440981c99ee2.jpg", "file_size": 25066, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K粉色46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158bcc9db111448382b8440981c99ee2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158bcc9db111448382b8440981c99ee2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/158bcc9db111448382b8440981c99ee2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/158bcc9db111448382b8440981c99ee2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/158bcc9db111448382b8440981c99ee2.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RMHARYvmGHLpDU-v13VphvGC7WY=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.290829+00 2025-12-09 10:16:05.290837+00 21805 FX020#VS-D3 SPMX-20240815317070 \N \N \N 1 \N [{"file_id": "0b7607da-64f2-4e6e-bfd9-42a7f53b9afc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebfaa9cf5cd949008121e647429aef26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebfaa9cf5cd949008121e647429aef26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebfaa9cf5cd949008121e647429aef26.jpg", "file_size": 12215, "is_delete": false, "file_type": 1, "original_file_name": "FX020#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfaa9cf5cd949008121e647429aef26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfaa9cf5cd949008121e647429aef26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebfaa9cf5cd949008121e647429aef26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebfaa9cf5cd949008121e647429aef26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebfaa9cf5cd949008121e647429aef26.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1F6eNRMuqLJEkYFAvwzk7jQn3wo=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.294595+00 2025-12-09 10:16:05.294601+00 21806 004-5FWE#L SPMX-20240815317066 \N \N \N 1 \N [{"file_id": "4a317e7d-7904-4ba8-9cec-e4a97ad16af2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f3dfd5ce0254d03902b8e4514f4db3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f3dfd5ce0254d03902b8e4514f4db3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f3dfd5ce0254d03902b8e4514f4db3b.jpg", "file_size": 23293, "is_delete": false, "file_type": 1, "original_file_name": "004-5FWE#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3dfd5ce0254d03902b8e4514f4db3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3dfd5ce0254d03902b8e4514f4db3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f3dfd5ce0254d03902b8e4514f4db3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f3dfd5ce0254d03902b8e4514f4db3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f3dfd5ce0254d03902b8e4514f4db3b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Srso93UQbID3R2ijwtm1vArPTHE=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.299124+00 2025-12-09 10:16:05.29913+00 21807 LJW0005-33#黑色 SPMX-20240815317067 \N \N \N 1 \N [{"file_id": "3c400328-7b45-45d7-9104-daf8196ca1f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53bf035dfb9f4acfb4db5c552e52c893.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53bf035dfb9f4acfb4db5c552e52c893.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53bf035dfb9f4acfb4db5c552e52c893.jpg", "file_size": 17640, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bf035dfb9f4acfb4db5c552e52c893.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bf035dfb9f4acfb4db5c552e52c893.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53bf035dfb9f4acfb4db5c552e52c893.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53bf035dfb9f4acfb4db5c552e52c893.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53bf035dfb9f4acfb4db5c552e52c893.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nbij_P-PCRRbCQpX1lV90VzLneE=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.303141+00 2025-12-09 10:16:05.303147+00 21808 CHiC139#8号色-24码 SPMX-20240815317060 \N \N \N 1 \N [{"file_id": "e424ba65-c04a-453b-bfea-44ec4057461c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "47f6856594be48cdb0d8e435ef0ec559.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "47f6856594be48cdb0d8e435ef0ec559.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "47f6856594be48cdb0d8e435ef0ec559.jpg", "file_size": 42150, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f6856594be48cdb0d8e435ef0ec559.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f6856594be48cdb0d8e435ef0ec559.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/47f6856594be48cdb0d8e435ef0ec559.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/47f6856594be48cdb0d8e435ef0ec559.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/47f6856594be48cdb0d8e435ef0ec559.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KYhKCY9Hhdy_tyD3JGuUyfZk38M=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.307385+00 2025-12-09 10:16:05.307393+00 21809 JY-DR236#8号绿色 SPMX-20240815317061 \N \N \N 1 \N [{"file_id": "b810aeab-d7d0-40dc-bb6a-c636dd5fd20d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "546d2a8da875487fb15c2faf3caa7cf5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "546d2a8da875487fb15c2faf3caa7cf5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "546d2a8da875487fb15c2faf3caa7cf5.jpg", "file_size": 52431, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR236#8号绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546d2a8da875487fb15c2faf3caa7cf5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546d2a8da875487fb15c2faf3caa7cf5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/546d2a8da875487fb15c2faf3caa7cf5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/546d2a8da875487fb15c2faf3caa7cf5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/546d2a8da875487fb15c2faf3caa7cf5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:askQ90xbQgZNJ_jfGQbqW9n9tpw=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.311509+00 2025-12-09 10:16:05.311515+00 21810 004-4FWE#M SPMX-20240815317057 \N \N \N 1 \N [{"file_id": "bdd7312a-49fb-48c1-a4c8-2f6fe25216a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a7aa921f6979418fad524bf9bab985ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a7aa921f6979418fad524bf9bab985ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a7aa921f6979418fad524bf9bab985ab.jpg", "file_size": 25058, "is_delete": false, "file_type": 1, "original_file_name": "004-4FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7aa921f6979418fad524bf9bab985ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7aa921f6979418fad524bf9bab985ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a7aa921f6979418fad524bf9bab985ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a7aa921f6979418fad524bf9bab985ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a7aa921f6979418fad524bf9bab985ab.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ttsh-fqSCCtfBrqs51jMPj1zcts=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.315526+00 2025-12-09 10:16:05.315533+00 21811 FX020#C SPMX-20240815317058 \N \N \N 1 \N [{"file_id": "0cbd0e25-e2af-4c80-9b30-e629798e2913", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd04bee2124e47fdb86bbfd869e19862.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd04bee2124e47fdb86bbfd869e19862.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd04bee2124e47fdb86bbfd869e19862.jpg", "file_size": 13522, "is_delete": false, "file_type": 1, "original_file_name": "FX020#C.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd04bee2124e47fdb86bbfd869e19862.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd04bee2124e47fdb86bbfd869e19862.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd04bee2124e47fdb86bbfd869e19862.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd04bee2124e47fdb86bbfd869e19862.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd04bee2124e47fdb86bbfd869e19862.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BxKQSsq7of8ERLjZY0KebIsro-0=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.376741+00 2025-12-09 10:16:05.376748+00 21828 0040-1#WJC22 SPMX-20240815317085 \N \N \N 1 \N [{"file_id": "bf77ba3b-6d00-4423-a64e-7bcd50946919", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "477e16cfd0f144fe93ccadbd33cbafed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "477e16cfd0f144fe93ccadbd33cbafed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "477e16cfd0f144fe93ccadbd33cbafed.jpg", "file_size": 14346, "is_delete": false, "file_type": 1, "original_file_name": "0040-1#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477e16cfd0f144fe93ccadbd33cbafed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477e16cfd0f144fe93ccadbd33cbafed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/477e16cfd0f144fe93ccadbd33cbafed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/477e16cfd0f144fe93ccadbd33cbafed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/477e16cfd0f144fe93ccadbd33cbafed.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qUMVvHJ5BJIWxj6Wgq0xaXgtA90=", "createTime": "2024-08-15 15:10:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.319788+00 2025-12-09 10:16:05.319798+00 21812 243#-定位裁-卡其 SPMX-20240815317063 \N \N \N 1 \N [{"file_id": "0d9a9713-1fe6-4b4c-95ca-8c9c5f37356e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "263d4c9063f34e8995307453f6d82bb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "263d4c9063f34e8995307453f6d82bb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "263d4c9063f34e8995307453f6d82bb0.jpg", "file_size": 58368, "is_delete": false, "file_type": 1, "original_file_name": "243#-定位裁-卡其.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/263d4c9063f34e8995307453f6d82bb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/263d4c9063f34e8995307453f6d82bb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/263d4c9063f34e8995307453f6d82bb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/263d4c9063f34e8995307453f6d82bb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/263d4c9063f34e8995307453f6d82bb0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZA7jCkUIOb3Z97ElMTHPb0a_deE=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.323884+00 2025-12-09 10:16:05.32389+00 21813 LZ1430#上身3号色 SPMX-20240815317064 \N \N \N 1 \N [{"file_id": "67b62630-08ac-4a72-8aa5-c2f6f5ab4da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d80257d4bdc74da69a1745d8b526abb6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d80257d4bdc74da69a1745d8b526abb6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d80257d4bdc74da69a1745d8b526abb6.jpg", "file_size": 19915, "is_delete": false, "file_type": 1, "original_file_name": "LZ1430#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80257d4bdc74da69a1745d8b526abb6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80257d4bdc74da69a1745d8b526abb6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d80257d4bdc74da69a1745d8b526abb6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d80257d4bdc74da69a1745d8b526abb6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d80257d4bdc74da69a1745d8b526abb6.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WvAduURbdpD2UNOw5lDT1JrAuXE=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.327642+00 2025-12-09 10:16:05.327648+00 21814 DN-6610#已放缩水3XL SPMX-20240815317056 \N \N \N 1 \N [{"file_id": "9d68b733-d43a-4b1c-9e0d-da94a3bfcb2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6b0ba79524e4e539b6fb1e0c25f00ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6b0ba79524e4e539b6fb1e0c25f00ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6b0ba79524e4e539b6fb1e0c25f00ed.jpg", "file_size": 44543, "is_delete": false, "file_type": 1, "original_file_name": "DN-6610#已放缩水3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b0ba79524e4e539b6fb1e0c25f00ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b0ba79524e4e539b6fb1e0c25f00ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b0ba79524e4e539b6fb1e0c25f00ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6b0ba79524e4e539b6fb1e0c25f00ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6b0ba79524e4e539b6fb1e0c25f00ed.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zmjTJtfHLEBVgv6FpXguVuw7Q64=", "createTime": "2024-08-15 15:10:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.331497+00 2025-12-09 10:16:05.331504+00 21815 HXF0302#粉色M SPMX-20240815317062 \N \N \N 1 \N [{"file_id": "1857e93c-1a43-4f62-ae63-5297d529017b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cecad91f27514d9ab4c19505f81f08a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cecad91f27514d9ab4c19505f81f08a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cecad91f27514d9ab4c19505f81f08a5.jpg", "file_size": 14042, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#粉色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecad91f27514d9ab4c19505f81f08a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecad91f27514d9ab4c19505f81f08a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cecad91f27514d9ab4c19505f81f08a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cecad91f27514d9ab4c19505f81f08a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cecad91f27514d9ab4c19505f81f08a5.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:47610iC1mMJypwC64DTcD149tYM=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.335211+00 2025-12-09 10:16:05.335219+00 21816 LJW0005-33#黑色匹布 SPMX-20240815317079 \N \N \N 1 \N [{"file_id": "cd53ba67-40e1-4b38-89e8-ff7cfb073afa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8fbd2b9f46524a5da609db8bd0779798.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8fbd2b9f46524a5da609db8bd0779798.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8fbd2b9f46524a5da609db8bd0779798.jpg", "file_size": 7773, "is_delete": false, "file_type": 1, "original_file_name": "LJW0005-33#黑色匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbd2b9f46524a5da609db8bd0779798.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbd2b9f46524a5da609db8bd0779798.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8fbd2b9f46524a5da609db8bd0779798.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8fbd2b9f46524a5da609db8bd0779798.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8fbd2b9f46524a5da609db8bd0779798.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyCngMeEf0JZfc5WhaGkOYSeho4=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.338814+00 2025-12-09 10:16:05.338821+00 21817 FX020FW#VS-D3 SPMX-20240815317078 \N \N \N 1 \N [{"file_id": "a8a613ec-b8e4-4de0-92ad-f2c8f8af4f56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0b275b82e494f929fa440b8029fcacd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0b275b82e494f929fa440b8029fcacd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0b275b82e494f929fa440b8029fcacd.jpg", "file_size": 16692, "is_delete": false, "file_type": 1, "original_file_name": "FX020FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b275b82e494f929fa440b8029fcacd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b275b82e494f929fa440b8029fcacd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0b275b82e494f929fa440b8029fcacd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0b275b82e494f929fa440b8029fcacd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0b275b82e494f929fa440b8029fcacd.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLMvkx9QWrDtcjNfnBwZ8oS94Gw=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.342312+00 2025-12-09 10:16:05.342319+00 21818 JY-DR88#棕色 SPMX-20240815317071 \N \N \N 1 \N [{"file_id": "631b9081-b2b6-4571-aa25-1458bfb45283", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "623e2657d2aa4a2094342ad36008f2bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "623e2657d2aa4a2094342ad36008f2bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "623e2657d2aa4a2094342ad36008f2bb.jpg", "file_size": 20076, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR88#棕色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e2657d2aa4a2094342ad36008f2bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e2657d2aa4a2094342ad36008f2bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/623e2657d2aa4a2094342ad36008f2bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/623e2657d2aa4a2094342ad36008f2bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/623e2657d2aa4a2094342ad36008f2bb.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-FAo_R1CalJVY0djQlH9m9DQbcM=", "createTime": "2024-08-15 15:10:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.345753+00 2025-12-09 10:16:05.345759+00 21819 128#LWQ15灰色 SPMX-20240815317077 \N \N \N 1 \N [{"file_id": "b83cc357-bf8b-465c-97a5-4514ff5332ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cccdc5b7c321463e87c13055dd77c376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cccdc5b7c321463e87c13055dd77c376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cccdc5b7c321463e87c13055dd77c376.jpg", "file_size": 25561, "is_delete": false, "file_type": 1, "original_file_name": "128#LWQ15灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccdc5b7c321463e87c13055dd77c376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccdc5b7c321463e87c13055dd77c376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccdc5b7c321463e87c13055dd77c376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cccdc5b7c321463e87c13055dd77c376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cccdc5b7c321463e87c13055dd77c376.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2AHIH18gupXQaVelD9QdXv5z5Q=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.349112+00 2025-12-09 10:16:05.349118+00 21820 88380FWF#K粉色48码 SPMX-20240815317080 \N \N \N 1 \N [{"file_id": "9e0b3a7a-8733-4fa3-89db-ee7ce7cebcf1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65d12cd8b3b54550a84cf00e98e5641c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65d12cd8b3b54550a84cf00e98e5641c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65d12cd8b3b54550a84cf00e98e5641c.jpg", "file_size": 25360, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K粉色48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d12cd8b3b54550a84cf00e98e5641c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d12cd8b3b54550a84cf00e98e5641c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d12cd8b3b54550a84cf00e98e5641c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65d12cd8b3b54550a84cf00e98e5641c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65d12cd8b3b54550a84cf00e98e5641c.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UK35DmCDT3VFgqSxRCWRhQnTXMI=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.352593+00 2025-12-09 10:16:05.3526+00 21821 243#-定位裁-橙色 SPMX-20240815317075 \N \N \N 1 \N [{"file_id": "c63ab434-c6b8-4916-9fb6-6636b492b931", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "73e6efa0ae1443d3ade743544a46aef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "73e6efa0ae1443d3ade743544a46aef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "73e6efa0ae1443d3ade743544a46aef7.jpg", "file_size": 61023, "is_delete": false, "file_type": 1, "original_file_name": "243#-定位裁-橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6efa0ae1443d3ade743544a46aef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6efa0ae1443d3ade743544a46aef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/73e6efa0ae1443d3ade743544a46aef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/73e6efa0ae1443d3ade743544a46aef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/73e6efa0ae1443d3ade743544a46aef7.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZKCUtUki_8lIVZla4DVBb515ZVc=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.355999+00 2025-12-09 10:16:05.356005+00 21822 004-5FWE#M SPMX-20240815317074 \N \N \N 1 \N [{"file_id": "f722f988-c012-4407-916c-459b58c3ccd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg", "file_size": 23012, "is_delete": false, "file_type": 1, "original_file_name": "004-5FWE#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24ed3bcdf5b2450aa30fa0a1e2f6961e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NyQPd0i0c53Lgdf_QES9n0Tna8=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.359434+00 2025-12-09 10:16:05.359441+00 21823 HXF0302#粉色XL SPMX-20240815317072 \N \N \N 1 \N [{"file_id": "6db09bd1-0b3a-4574-8080-02522064da2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a38a2a4d191a48efacdff0c638d667fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a38a2a4d191a48efacdff0c638d667fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a38a2a4d191a48efacdff0c638d667fe.jpg", "file_size": 13549, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#粉色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38a2a4d191a48efacdff0c638d667fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38a2a4d191a48efacdff0c638d667fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a38a2a4d191a48efacdff0c638d667fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a38a2a4d191a48efacdff0c638d667fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a38a2a4d191a48efacdff0c638d667fe.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mdGd5PYmpwsTj_WJ5Ic7jChqrKc=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.362918+00 2025-12-09 10:16:05.362925+00 21824 LZ1430#上身4号色 SPMX-20240815317076 \N \N \N 1 \N [{"file_id": "0d1a0ef1-bbc2-4233-b8e6-39d084d2ad2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "949146977c85485ba875e5e4dbd233ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "949146977c85485ba875e5e4dbd233ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "949146977c85485ba875e5e4dbd233ed.jpg", "file_size": 19812, "is_delete": false, "file_type": 1, "original_file_name": "LZ1430#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949146977c85485ba875e5e4dbd233ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949146977c85485ba875e5e4dbd233ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/949146977c85485ba875e5e4dbd233ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/949146977c85485ba875e5e4dbd233ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/949146977c85485ba875e5e4dbd233ed.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lwORbNBtHl814OtkwYr6Wx3BKxM=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.366416+00 2025-12-09 10:16:05.366423+00 21825 JY-DR88#焦糖色 SPMX-20240815317081 \N \N \N 1 \N [{"file_id": "486df428-b97d-4264-a5bd-fa6ff4d494d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78af00032be44ef0ba5258049cbaabf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78af00032be44ef0ba5258049cbaabf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78af00032be44ef0ba5258049cbaabf0.jpg", "file_size": 20227, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR88#焦糖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78af00032be44ef0ba5258049cbaabf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78af00032be44ef0ba5258049cbaabf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78af00032be44ef0ba5258049cbaabf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78af00032be44ef0ba5258049cbaabf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78af00032be44ef0ba5258049cbaabf0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2wlAs2VDqtzr1Im9rXmYQW8u5E=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.36988+00 2025-12-09 10:16:05.369887+00 21826 CHiC139#8号色-25码 SPMX-20240815317073 \N \N \N 1 \N [{"file_id": "65bd385b-c286-4c02-96bb-4bf0460cca41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5215ea0a11d14be2a0fc0c121c1fed44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5215ea0a11d14be2a0fc0c121c1fed44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5215ea0a11d14be2a0fc0c121c1fed44.jpg", "file_size": 41432, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215ea0a11d14be2a0fc0c121c1fed44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215ea0a11d14be2a0fc0c121c1fed44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5215ea0a11d14be2a0fc0c121c1fed44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5215ea0a11d14be2a0fc0c121c1fed44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5215ea0a11d14be2a0fc0c121c1fed44.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:doY0A9pf-tUweBO6XC3K1g80KAA=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.373291+00 2025-12-09 10:16:05.373299+00 21827 CHiC139#8号色净色 SPMX-20240815317084 \N \N \N 1 \N [{"file_id": "d8fb9b18-b3a1-4189-998a-b560bdad1ad7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf12b6b4b3a6487cb6b54ef18b08b90d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf12b6b4b3a6487cb6b54ef18b08b90d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf12b6b4b3a6487cb6b54ef18b08b90d.jpg", "file_size": 11261, "is_delete": false, "file_type": 1, "original_file_name": "CHiC139#8号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12b6b4b3a6487cb6b54ef18b08b90d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12b6b4b3a6487cb6b54ef18b08b90d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf12b6b4b3a6487cb6b54ef18b08b90d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf12b6b4b3a6487cb6b54ef18b08b90d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf12b6b4b3a6487cb6b54ef18b08b90d.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vhaK8KcuSof78a7NE1BymUvODOA=", "createTime": "2024-08-15 15:10:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.380352+00 2025-12-09 10:16:05.380359+00 21829 DN-6610#已放缩水M SPMX-20240815317082 \N \N \N 1 \N [{"file_id": "78620f07-0072-444a-a751-cd5160cdd956", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a279a49471d4557bb2b595aa6b59bdf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a279a49471d4557bb2b595aa6b59bdf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a279a49471d4557bb2b595aa6b59bdf.jpg", "file_size": 48403, "is_delete": false, "file_type": 1, "original_file_name": "DN-6610#已放缩水M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a279a49471d4557bb2b595aa6b59bdf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a279a49471d4557bb2b595aa6b59bdf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a279a49471d4557bb2b595aa6b59bdf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a279a49471d4557bb2b595aa6b59bdf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a279a49471d4557bb2b595aa6b59bdf.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AX8nde8NkSHn1z6rTGSDrsDZ8m8=", "createTime": "2024-08-15 15:10:49"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.38469+00 2025-12-09 10:16:05.384699+00 21830 HXF0302#蓝色2XL SPMX-20240815317083 \N \N \N 1 \N [{"file_id": "3ae2ea62-f434-4b3d-a9ab-c7cb9807719d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c73fe6aad6e4477a4c07f9e0a710513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c73fe6aad6e4477a4c07f9e0a710513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c73fe6aad6e4477a4c07f9e0a710513.jpg", "file_size": 19679, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c73fe6aad6e4477a4c07f9e0a710513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c73fe6aad6e4477a4c07f9e0a710513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c73fe6aad6e4477a4c07f9e0a710513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c73fe6aad6e4477a4c07f9e0a710513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c73fe6aad6e4477a4c07f9e0a710513.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SgiUvs9FwweCpstVInjcAWD3odY=", "createTime": "2024-08-15 15:10:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.388928+00 2025-12-09 10:16:05.388939+00 21831 LZ1430#上身5号色 SPMX-20240815317086 \N \N \N 1 \N [{"file_id": "0698419b-f986-48c1-9cfc-31cb1b268d06", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0ef3013699a46b68c7edeb469aec5e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0ef3013699a46b68c7edeb469aec5e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0ef3013699a46b68c7edeb469aec5e1.jpg", "file_size": 19507, "is_delete": false, "file_type": 1, "original_file_name": "LZ1430#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ef3013699a46b68c7edeb469aec5e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ef3013699a46b68c7edeb469aec5e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0ef3013699a46b68c7edeb469aec5e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0ef3013699a46b68c7edeb469aec5e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0ef3013699a46b68c7edeb469aec5e1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fLow0IkUlNldH_FejZOvNwNRzyg=", "createTime": "2024-08-15 15:10:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.393344+00 2025-12-09 10:16:05.393355+00 21832 128#LWQ15黄色 SPMX-20240815317091 \N \N \N 1 \N [{"file_id": "6550be98-83a3-4664-8b84-08ac809cb31e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "859da1e56f2349568d7e64ef73ea5541.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "859da1e56f2349568d7e64ef73ea5541.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "859da1e56f2349568d7e64ef73ea5541.jpg", "file_size": 25711, "is_delete": false, "file_type": 1, "original_file_name": "128#LWQ15黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859da1e56f2349568d7e64ef73ea5541.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859da1e56f2349568d7e64ef73ea5541.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/859da1e56f2349568d7e64ef73ea5541.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/859da1e56f2349568d7e64ef73ea5541.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/859da1e56f2349568d7e64ef73ea5541.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nukfH557kWZ-P-GWZMiJslI7QWc=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.397665+00 2025-12-09 10:16:05.397676+00 21833 88380FWF#K粉色50码 SPMX-20240815317092 \N \N \N 1 \N [{"file_id": "01f71b17-929a-410b-961e-9c9fd09005bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "375e3c189e3a48b2aa748f8ba30b5c88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "375e3c189e3a48b2aa748f8ba30b5c88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "375e3c189e3a48b2aa748f8ba30b5c88.jpg", "file_size": 25604, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#K粉色50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e3c189e3a48b2aa748f8ba30b5c88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e3c189e3a48b2aa748f8ba30b5c88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/375e3c189e3a48b2aa748f8ba30b5c88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/375e3c189e3a48b2aa748f8ba30b5c88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/375e3c189e3a48b2aa748f8ba30b5c88.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:v1HKTccH0U2-QHqgNyhhRajWn-I=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.401762+00 2025-12-09 10:16:05.401771+00 21834 JY-DR88#绿色 SPMX-20240815317095 \N \N \N 1 \N [{"file_id": "c7ed8695-a3ea-4d61-a3ea-e0de16d7a985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a83c9038ad8f45549108e43d82419aad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a83c9038ad8f45549108e43d82419aad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a83c9038ad8f45549108e43d82419aad.jpg", "file_size": 19270, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR88#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83c9038ad8f45549108e43d82419aad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83c9038ad8f45549108e43d82419aad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a83c9038ad8f45549108e43d82419aad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a83c9038ad8f45549108e43d82419aad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a83c9038ad8f45549108e43d82419aad.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l9XK2zMppkrEX0ZyewJwLD80gBc=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.405443+00 2025-12-09 10:16:05.40545+00 21835 243#-定位裁-白色 SPMX-20240815317088 \N \N \N 1 \N [{"file_id": "a3695722-62f5-4d48-bb33-bb0130c16cfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2cfc0c1e0c144b34abbcb33a9a60512e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2cfc0c1e0c144b34abbcb33a9a60512e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2cfc0c1e0c144b34abbcb33a9a60512e.jpg", "file_size": 56231, "is_delete": false, "file_type": 1, "original_file_name": "243#-定位裁-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cfc0c1e0c144b34abbcb33a9a60512e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cfc0c1e0c144b34abbcb33a9a60512e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2cfc0c1e0c144b34abbcb33a9a60512e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2cfc0c1e0c144b34abbcb33a9a60512e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2cfc0c1e0c144b34abbcb33a9a60512e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r3Q293qgaPUNFbRKQvErKRchzxA=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.409077+00 2025-12-09 10:16:05.409084+00 21836 0044-10FWE#VS-D3 SPMX-20240815317093 \N \N \N 1 \N [{"file_id": "52f591e8-cd27-4e9c-bdd7-d65f678bc23a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b48f4b34724848aceab7c22a6d55cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b48f4b34724848aceab7c22a6d55cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b48f4b34724848aceab7c22a6d55cc.jpg", "file_size": 11722, "is_delete": false, "file_type": 1, "original_file_name": "0044-10FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b48f4b34724848aceab7c22a6d55cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b48f4b34724848aceab7c22a6d55cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b48f4b34724848aceab7c22a6d55cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b48f4b34724848aceab7c22a6d55cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b48f4b34724848aceab7c22a6d55cc.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WwdeZeSIFgKIbyOw9MShc7S6u8A=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.412593+00 2025-12-09 10:16:05.4126+00 21837 DN-6610#已放缩水XL SPMX-20240815317096 \N \N \N 1 \N [{"file_id": "0796aea5-c6c0-4a1f-828c-1b15bca88f89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "23e222ef2f764a00b0df4f5d26230e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "23e222ef2f764a00b0df4f5d26230e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "23e222ef2f764a00b0df4f5d26230e8a.jpg", "file_size": 46913, "is_delete": false, "file_type": 1, "original_file_name": "DN-6610#已放缩水XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e222ef2f764a00b0df4f5d26230e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e222ef2f764a00b0df4f5d26230e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/23e222ef2f764a00b0df4f5d26230e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/23e222ef2f764a00b0df4f5d26230e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/23e222ef2f764a00b0df4f5d26230e8a.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GXLfkGjYOTghpuo_19FevxauGHA=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.416235+00 2025-12-09 10:16:05.416241+00 21838 LJW001#D SPMX-20240815317089 \N \N \N 1 \N [{"file_id": "a83e9990-8f93-4682-8df5-7d3b2e5c0cc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0b9756d97254dd2a6cf8ee8801e5cd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0b9756d97254dd2a6cf8ee8801e5cd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0b9756d97254dd2a6cf8ee8801e5cd9.jpg", "file_size": 23849, "is_delete": false, "file_type": 1, "original_file_name": "LJW001#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b9756d97254dd2a6cf8ee8801e5cd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b9756d97254dd2a6cf8ee8801e5cd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b9756d97254dd2a6cf8ee8801e5cd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0b9756d97254dd2a6cf8ee8801e5cd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0b9756d97254dd2a6cf8ee8801e5cd9.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TZqbZ-t5O6o944nS7PIfzPuoM4w=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.41979+00 2025-12-09 10:16:05.419797+00 21839 HXF0302#蓝色L SPMX-20240815317090 \N \N \N 1 \N [{"file_id": "31ca4f8d-bc32-4adf-96c3-095f91223f07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a59f07f28333439a9797d9aeb3f98039.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a59f07f28333439a9797d9aeb3f98039.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a59f07f28333439a9797d9aeb3f98039.jpg", "file_size": 21074, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#蓝色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59f07f28333439a9797d9aeb3f98039.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59f07f28333439a9797d9aeb3f98039.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a59f07f28333439a9797d9aeb3f98039.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a59f07f28333439a9797d9aeb3f98039.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a59f07f28333439a9797d9aeb3f98039.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LkvEjiX6kr7IwtLJu0Yz9NJnimk=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.423325+00 2025-12-09 10:16:05.423332+00 21840 FX020FWE#VS-D3 SPMX-20240815317087 \N \N \N 1 \N [{"file_id": "4c6b2aef-f840-4597-93e5-87c211ebadeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17eaf68e97684841b04c0abdb82ac1ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17eaf68e97684841b04c0abdb82ac1ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17eaf68e97684841b04c0abdb82ac1ca.jpg", "file_size": 21410, "is_delete": false, "file_type": 1, "original_file_name": "FX020FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17eaf68e97684841b04c0abdb82ac1ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17eaf68e97684841b04c0abdb82ac1ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17eaf68e97684841b04c0abdb82ac1ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17eaf68e97684841b04c0abdb82ac1ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17eaf68e97684841b04c0abdb82ac1ca.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7apQOn38NnwGHEJoypBtOMZpSjQ=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.475109+00 2025-12-09 10:16:05.475115+00 21854 FX021#D上身 SPMX-20240815317111 \N \N \N 1 \N [{"file_id": "7d2f2948-fe7e-41f4-9bf6-4f2a049c30fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2243b11e5d3487fba82f77c91aee0c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2243b11e5d3487fba82f77c91aee0c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2243b11e5d3487fba82f77c91aee0c7.jpg", "file_size": 6768, "is_delete": false, "file_type": 1, "original_file_name": "FX021#D上身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2243b11e5d3487fba82f77c91aee0c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2243b11e5d3487fba82f77c91aee0c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2243b11e5d3487fba82f77c91aee0c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2243b11e5d3487fba82f77c91aee0c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2243b11e5d3487fba82f77c91aee0c7.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hyAxF2kJ6ayj2KYfvHhRwKbxwWw=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.427107+00 2025-12-09 10:16:05.427115+00 21841 CHiC140#11号色-21码 SPMX-20240815317094 \N \N \N 1 \N [{"file_id": "b5f0650d-54cf-45e8-8059-78cb3784a435", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "734d143c614f4d4b841dfec6757ca6ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "734d143c614f4d4b841dfec6757ca6ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "734d143c614f4d4b841dfec6757ca6ea.jpg", "file_size": 48075, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d143c614f4d4b841dfec6757ca6ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d143c614f4d4b841dfec6757ca6ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/734d143c614f4d4b841dfec6757ca6ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/734d143c614f4d4b841dfec6757ca6ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/734d143c614f4d4b841dfec6757ca6ea.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X2tPyeJb0o0bISZ54GazQG9cjv8=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.430994+00 2025-12-09 10:16:05.431001+00 21842 LZ1431#上身1号色 SPMX-20240815317097 \N \N \N 1 \N [{"file_id": "06c350d2-2519-4a2d-9dd5-f8d62195a815", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "301f0aed63724087a2258668e84b96d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "301f0aed63724087a2258668e84b96d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "301f0aed63724087a2258668e84b96d0.jpg", "file_size": 15822, "is_delete": false, "file_type": 1, "original_file_name": "LZ1431#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301f0aed63724087a2258668e84b96d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301f0aed63724087a2258668e84b96d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301f0aed63724087a2258668e84b96d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/301f0aed63724087a2258668e84b96d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/301f0aed63724087a2258668e84b96d0.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KimbBMv_D5xs87rCke-_p44MawQ=", "createTime": "2024-08-15 15:10:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.434658+00 2025-12-09 10:16:05.434667+00 21843 LJW001#D白底 SPMX-20240815317104 \N \N \N 1 \N [{"file_id": "49d7b3d9-af3c-4425-81fc-d5760fdb4ae5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e778eef8e654b96a9638a09134f486e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e778eef8e654b96a9638a09134f486e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e778eef8e654b96a9638a09134f486e.jpg", "file_size": 14126, "is_delete": false, "file_type": 1, "original_file_name": "LJW001#D白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e778eef8e654b96a9638a09134f486e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e778eef8e654b96a9638a09134f486e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e778eef8e654b96a9638a09134f486e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e778eef8e654b96a9638a09134f486e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e778eef8e654b96a9638a09134f486e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-SGivcW1UMnLFh_4a7XtQIQlowU=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.438327+00 2025-12-09 10:16:05.438335+00 21844 FX021# SPMX-20240815317100 \N \N \N 1 \N [{"file_id": "d1f3add1-7d0b-425d-bf74-b14d42e2ac0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "604787baf54b4205a11a64a465f5954e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "604787baf54b4205a11a64a465f5954e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "604787baf54b4205a11a64a465f5954e.jpg", "file_size": 23077, "is_delete": false, "file_type": 1, "original_file_name": "FX021#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604787baf54b4205a11a64a465f5954e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604787baf54b4205a11a64a465f5954e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/604787baf54b4205a11a64a465f5954e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/604787baf54b4205a11a64a465f5954e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/604787baf54b4205a11a64a465f5954e.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yoLjOSYFg4KucIDfStmuSUWlQ5w=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.44197+00 2025-12-09 10:16:05.441976+00 21845 0044-11FWE#VS-D3 SPMX-20240815317101 \N \N \N 1 \N [{"file_id": "a1f3966d-0f51-413d-ab6f-d20ba4d77ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0fae048622c4368977c2c3cc6dbeb3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0fae048622c4368977c2c3cc6dbeb3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0fae048622c4368977c2c3cc6dbeb3b.jpg", "file_size": 12620, "is_delete": false, "file_type": 1, "original_file_name": "0044-11FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fae048622c4368977c2c3cc6dbeb3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fae048622c4368977c2c3cc6dbeb3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0fae048622c4368977c2c3cc6dbeb3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0fae048622c4368977c2c3cc6dbeb3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0fae048622c4368977c2c3cc6dbeb3b.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ETQRlxZ7BzVWyCSFTE3Dx9x1xHM=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.445535+00 2025-12-09 10:16:05.445542+00 21846 243#-定位裁-黄色 SPMX-20240815317103 \N \N \N 1 \N [{"file_id": "30c5d458-c24a-41d4-aa1e-0f8655478b60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "318729c3b2e144ce837a78c91c79f2c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "318729c3b2e144ce837a78c91c79f2c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "318729c3b2e144ce837a78c91c79f2c8.jpg", "file_size": 57452, "is_delete": false, "file_type": 1, "original_file_name": "243#-定位裁-黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318729c3b2e144ce837a78c91c79f2c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318729c3b2e144ce837a78c91c79f2c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/318729c3b2e144ce837a78c91c79f2c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/318729c3b2e144ce837a78c91c79f2c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/318729c3b2e144ce837a78c91c79f2c8.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:705JGq8Gd5N7rQem5dQNxnBh_mM=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.449263+00 2025-12-09 10:16:05.449269+00 21847 128-1#原版色WJC22 SPMX-20240815317105 \N \N \N 1 \N [{"file_id": "492b937b-34df-44a2-9031-ceadf0c6c47c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c39e6c390c14c92ab521f5b6f6354a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c39e6c390c14c92ab521f5b6f6354a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c39e6c390c14c92ab521f5b6f6354a4.jpg", "file_size": 15325, "is_delete": false, "file_type": 1, "original_file_name": "128-1#原版色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39e6c390c14c92ab521f5b6f6354a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39e6c390c14c92ab521f5b6f6354a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c39e6c390c14c92ab521f5b6f6354a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c39e6c390c14c92ab521f5b6f6354a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c39e6c390c14c92ab521f5b6f6354a4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tva4IcfLEGndN3VZMeztAFSKHdE=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.452826+00 2025-12-09 10:16:05.452834+00 21848 JY-DR88#蓝色 SPMX-20240815317102 \N \N \N 1 \N [{"file_id": "27034f71-ec6a-475b-8533-d6f88f50e040", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c312081d67be41c698930a6e37b6a474.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c312081d67be41c698930a6e37b6a474.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c312081d67be41c698930a6e37b6a474.jpg", "file_size": 21296, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR88#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c312081d67be41c698930a6e37b6a474.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c312081d67be41c698930a6e37b6a474.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c312081d67be41c698930a6e37b6a474.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c312081d67be41c698930a6e37b6a474.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c312081d67be41c698930a6e37b6a474.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CdqxZsRBQglZBZOGJfUNYvDDAWw=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.45657+00 2025-12-09 10:16:05.456578+00 21849 LZ1431#上身2号色 SPMX-20240815317099 \N \N \N 1 \N [{"file_id": "829e12b7-a1ef-42cb-b08e-4c604713e6e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8a046d43c8674c07a5057ffd99a75e6f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8a046d43c8674c07a5057ffd99a75e6f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8a046d43c8674c07a5057ffd99a75e6f.jpg", "file_size": 17101, "is_delete": false, "file_type": 1, "original_file_name": "LZ1431#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a046d43c8674c07a5057ffd99a75e6f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a046d43c8674c07a5057ffd99a75e6f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8a046d43c8674c07a5057ffd99a75e6f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8a046d43c8674c07a5057ffd99a75e6f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8a046d43c8674c07a5057ffd99a75e6f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:leXiKH8QUAvlSHE8JsqoadGZY8Q=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.460268+00 2025-12-09 10:16:05.460274+00 21850 CHiC140#11号色-22码 SPMX-20240815317098 \N \N \N 1 \N [{"file_id": "e325dd50-c539-44f3-bd8a-3888198e9fe7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfddbf1b7f604bb9b16a64a83df3a66f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfddbf1b7f604bb9b16a64a83df3a66f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfddbf1b7f604bb9b16a64a83df3a66f.jpg", "file_size": 48881, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfddbf1b7f604bb9b16a64a83df3a66f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfddbf1b7f604bb9b16a64a83df3a66f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfddbf1b7f604bb9b16a64a83df3a66f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfddbf1b7f604bb9b16a64a83df3a66f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfddbf1b7f604bb9b16a64a83df3a66f.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7QT0LhRXJpN7JKuCwIkJCnzvT4=", "createTime": "2024-08-15 15:10:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.463895+00 2025-12-09 10:16:05.463903+00 21851 DN-80024#-S码 SPMX-20240815317107 \N \N \N 1 \N [{"file_id": "e8bd53cf-127f-4127-93ee-276b509e197e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5449135872844d7181cba969e2bbee70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5449135872844d7181cba969e2bbee70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5449135872844d7181cba969e2bbee70.jpg", "file_size": 50326, "is_delete": false, "file_type": 1, "original_file_name": "DN-80024#-S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5449135872844d7181cba969e2bbee70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5449135872844d7181cba969e2bbee70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5449135872844d7181cba969e2bbee70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5449135872844d7181cba969e2bbee70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5449135872844d7181cba969e2bbee70.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_Bxk7Ket5OmOWkO1wYG-MkdQn0=", "createTime": "2024-08-15 15:10:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.467459+00 2025-12-09 10:16:05.467465+00 21852 88380FWF#乱花-枣红42码 SPMX-20240815317108 \N \N \N 1 \N [{"file_id": "d6e55ad2-49b4-46c2-82d9-6028d6b710d5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "304209eb5dfd48fe8c7765c50d216a07.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "304209eb5dfd48fe8c7765c50d216a07.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "304209eb5dfd48fe8c7765c50d216a07.jpg", "file_size": 22213, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#乱花-枣红42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304209eb5dfd48fe8c7765c50d216a07.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304209eb5dfd48fe8c7765c50d216a07.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/304209eb5dfd48fe8c7765c50d216a07.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/304209eb5dfd48fe8c7765c50d216a07.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/304209eb5dfd48fe8c7765c50d216a07.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ma7PThDQvpfiuEBaYaxWDaJ8xOY=", "createTime": "2024-08-15 15:10:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.471373+00 2025-12-09 10:16:05.47138+00 21853 HXF0302#蓝色M SPMX-20240815317106 \N \N \N 1 \N [{"file_id": "f63efdaf-e045-4f1a-abfd-bba3fec0bef2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5573c6d17a154d96a56d71404e556fc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5573c6d17a154d96a56d71404e556fc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5573c6d17a154d96a56d71404e556fc1.jpg", "file_size": 21085, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#蓝色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573c6d17a154d96a56d71404e556fc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573c6d17a154d96a56d71404e556fc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5573c6d17a154d96a56d71404e556fc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5573c6d17a154d96a56d71404e556fc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5573c6d17a154d96a56d71404e556fc1.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jmltvcaQ-3lm9OIeS2G7FWzZJLE=", "createTime": "2024-08-15 15:10:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.478984+00 2025-12-09 10:16:05.47899+00 21855 243#-定位裁-黑色 SPMX-20240815317116 \N \N \N 1 \N [{"file_id": "5d9d5193-a5e4-456e-8f5a-0744158c5da8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c044fa3955844d083fd807e12424cea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c044fa3955844d083fd807e12424cea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c044fa3955844d083fd807e12424cea.jpg", "file_size": 55812, "is_delete": false, "file_type": 1, "original_file_name": "243#-定位裁-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c044fa3955844d083fd807e12424cea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c044fa3955844d083fd807e12424cea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c044fa3955844d083fd807e12424cea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c044fa3955844d083fd807e12424cea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c044fa3955844d083fd807e12424cea.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kGE2p_ySeo_K4hjFdSiBRJwOQRw=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.482861+00 2025-12-09 10:16:05.482867+00 21856 JY-DR88#黑色 SPMX-20240815317109 \N \N \N 1 \N [{"file_id": "af747ace-5530-4daa-bea7-3019c9d7f1ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e01efae6b534b4a9881ae3dc37c4d69.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e01efae6b534b4a9881ae3dc37c4d69.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e01efae6b534b4a9881ae3dc37c4d69.jpg", "file_size": 20809, "is_delete": false, "file_type": 1, "original_file_name": "JY-DR88#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e01efae6b534b4a9881ae3dc37c4d69.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e01efae6b534b4a9881ae3dc37c4d69.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e01efae6b534b4a9881ae3dc37c4d69.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e01efae6b534b4a9881ae3dc37c4d69.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e01efae6b534b4a9881ae3dc37c4d69.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yrt13zeVEP2ba7OB4bits3nPt8M=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.486589+00 2025-12-09 10:16:05.486596+00 21857 LJW001#D黑底 SPMX-20240815317114 \N \N \N 1 \N [{"file_id": "60bb05e6-2177-47fd-8e8d-04c0d61f204e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67d4e25ee1764eb0b09179a959c24314.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67d4e25ee1764eb0b09179a959c24314.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67d4e25ee1764eb0b09179a959c24314.jpg", "file_size": 14076, "is_delete": false, "file_type": 1, "original_file_name": "LJW001#D黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d4e25ee1764eb0b09179a959c24314.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d4e25ee1764eb0b09179a959c24314.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67d4e25ee1764eb0b09179a959c24314.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67d4e25ee1764eb0b09179a959c24314.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67d4e25ee1764eb0b09179a959c24314.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WZAt6M0mp23aSUmdiSm8h_ArpSU=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.49021+00 2025-12-09 10:16:05.490217+00 21858 88380FWF#乱花-枣红44码 SPMX-20240815317118 \N \N \N 1 \N [{"file_id": "663792b5-0bb1-40cd-b872-4154c3ecb16c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "608c5df843ad48caa9e26083a6758ea4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "608c5df843ad48caa9e26083a6758ea4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "608c5df843ad48caa9e26083a6758ea4.jpg", "file_size": 23022, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#乱花-枣红44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608c5df843ad48caa9e26083a6758ea4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608c5df843ad48caa9e26083a6758ea4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/608c5df843ad48caa9e26083a6758ea4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/608c5df843ad48caa9e26083a6758ea4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/608c5df843ad48caa9e26083a6758ea4.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-uktpY7bf6p5Av4vIfUWDcm2oSU=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.49376+00 2025-12-09 10:16:05.493767+00 21859 CHiC140#11号色-23码 SPMX-20240815317112 \N \N \N 1 \N [{"file_id": "b74f949a-f605-4848-af40-0af5d417c25a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f410bddd5e741ab834f5f8aad285413.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f410bddd5e741ab834f5f8aad285413.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f410bddd5e741ab834f5f8aad285413.jpg", "file_size": 47333, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f410bddd5e741ab834f5f8aad285413.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f410bddd5e741ab834f5f8aad285413.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f410bddd5e741ab834f5f8aad285413.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f410bddd5e741ab834f5f8aad285413.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f410bddd5e741ab834f5f8aad285413.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EgRK6f_5c2SM3zUNEILWdVQFfkA=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:05.497358+00 2025-12-09 10:16:05.497364+00 21860 HXF0302#蓝色XL SPMX-20240815317115 \N \N \N 1 \N [{"file_id": "68fccc0f-ad0b-4816-811f-3be0ae770e79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "607052f5e6ae43718ed685d6f93d9d44.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "607052f5e6ae43718ed685d6f93d9d44.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "607052f5e6ae43718ed685d6f93d9d44.jpg", "file_size": 20696, "is_delete": false, "file_type": 1, "original_file_name": "HXF0302#蓝色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607052f5e6ae43718ed685d6f93d9d44.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607052f5e6ae43718ed685d6f93d9d44.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/607052f5e6ae43718ed685d6f93d9d44.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/607052f5e6ae43718ed685d6f93d9d44.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/607052f5e6ae43718ed685d6f93d9d44.jpg?e=1765361764&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rYMvKL1Fs4MM9Ij3vjWGPnRpUOE=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.20987+00 2025-12-09 10:16:06.209881+00 21861 128-1#红色WJC22 SPMX-20240815317117 \N \N \N 1 \N [{"file_id": "e4f6f71f-eaf0-4135-b9ba-1409d056bbf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "792f2354c10446479eb410b37ee8303f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "792f2354c10446479eb410b37ee8303f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "792f2354c10446479eb410b37ee8303f.jpg", "file_size": 12695, "is_delete": false, "file_type": 1, "original_file_name": "128-1#红色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f2354c10446479eb410b37ee8303f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f2354c10446479eb410b37ee8303f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/792f2354c10446479eb410b37ee8303f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/792f2354c10446479eb410b37ee8303f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/792f2354c10446479eb410b37ee8303f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fHVP5R7qJmzCLghNkQXxb-BmQ4=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.214556+00 2025-12-09 10:16:06.214563+00 21862 DN-D3004#2XL SPMX-20240815317119 \N \N \N 1 \N [{"file_id": "0283d627-8664-46a1-a0d5-47ac4f607f47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg", "file_size": 52487, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3004#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dec8b0a3aefc4f96a09a1c9dac0edaa5.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:daD4JJhTVkxXaV7TDdjeORHsLYA=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.218399+00 2025-12-09 10:16:06.218407+00 21863 0044-12FWE#红色 SPMX-20240815317110 \N \N \N 1 \N [{"file_id": "919c946b-2df8-4745-8cef-2d5238a986ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acc9c29d1f2946cc8c8d3da3601dc7a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acc9c29d1f2946cc8c8d3da3601dc7a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acc9c29d1f2946cc8c8d3da3601dc7a1.jpg", "file_size": 20362, "is_delete": false, "file_type": 1, "original_file_name": "0044-12FWE#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc9c29d1f2946cc8c8d3da3601dc7a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc9c29d1f2946cc8c8d3da3601dc7a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acc9c29d1f2946cc8c8d3da3601dc7a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acc9c29d1f2946cc8c8d3da3601dc7a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acc9c29d1f2946cc8c8d3da3601dc7a1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lNS8JWg073OsxD4BDbCuyzZkvEk=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.222126+00 2025-12-09 10:16:06.222132+00 21864 LZ1431#上身3号色 SPMX-20240815317113 \N \N \N 1 \N [{"file_id": "190e8c94-ea13-4347-990b-43a148d238d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3688bfe48bd547e997594c1f9b523efb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3688bfe48bd547e997594c1f9b523efb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3688bfe48bd547e997594c1f9b523efb.jpg", "file_size": 16257, "is_delete": false, "file_type": 1, "original_file_name": "LZ1431#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3688bfe48bd547e997594c1f9b523efb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3688bfe48bd547e997594c1f9b523efb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3688bfe48bd547e997594c1f9b523efb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3688bfe48bd547e997594c1f9b523efb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3688bfe48bd547e997594c1f9b523efb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z6AxK9-Twk-ea2WDV8dR49v-_M8=", "createTime": "2024-08-15 15:10:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.225875+00 2025-12-09 10:16:06.225883+00 21865 DN-D3004#3XL SPMX-20240815317130 \N \N \N 1 \N [{"file_id": "eab1a184-1fbb-43ba-8df8-cf1c4e4f0ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98be84f50ae54e2488fb474056a942e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98be84f50ae54e2488fb474056a942e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98be84f50ae54e2488fb474056a942e4.jpg", "file_size": 52834, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3004#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98be84f50ae54e2488fb474056a942e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98be84f50ae54e2488fb474056a942e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98be84f50ae54e2488fb474056a942e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98be84f50ae54e2488fb474056a942e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98be84f50ae54e2488fb474056a942e4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4rPuvbM3dP5QhMt6VDHi8WM7Xd8=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.229482+00 2025-12-09 10:16:06.229488+00 21866 JY-E0006#3XL SPMX-20240815317133 \N \N \N 1 \N [{"file_id": "539b7ebe-b6a0-4ddc-93c3-ad1b4cf65149", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "38a9f209a884461d9f9f11e4f9fbff34.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "38a9f209a884461d9f9f11e4f9fbff34.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "38a9f209a884461d9f9f11e4f9fbff34.jpg", "file_size": 71429, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a9f209a884461d9f9f11e4f9fbff34.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a9f209a884461d9f9f11e4f9fbff34.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/38a9f209a884461d9f9f11e4f9fbff34.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/38a9f209a884461d9f9f11e4f9fbff34.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/38a9f209a884461d9f9f11e4f9fbff34.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BbmrKImdIZmXJxtEVBJZVQH8-eU=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.232946+00 2025-12-09 10:16:06.232952+00 21867 FX021#D下身 SPMX-20240815317122 \N \N \N 1 \N [{"file_id": "345a8789-6c93-4673-a387-a928d946bf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40de41f0a63d4643926308c26562e45e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40de41f0a63d4643926308c26562e45e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40de41f0a63d4643926308c26562e45e.jpg", "file_size": 7999, "is_delete": false, "file_type": 1, "original_file_name": "FX021#D下身.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40de41f0a63d4643926308c26562e45e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40de41f0a63d4643926308c26562e45e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40de41f0a63d4643926308c26562e45e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40de41f0a63d4643926308c26562e45e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40de41f0a63d4643926308c26562e45e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjimlU4rREtolpROSTq9LQwc9kw=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.236373+00 2025-12-09 10:16:06.23638+00 21868 243020#-01-1-2XL码 SPMX-20240815317125 \N \N \N 1 \N [{"file_id": "deca23ad-fac2-43fe-8b29-82024a245d04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c76619f672d945519531a602daeae90c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c76619f672d945519531a602daeae90c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c76619f672d945519531a602daeae90c.jpg", "file_size": 59027, "is_delete": false, "file_type": 1, "original_file_name": "243020#-01-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76619f672d945519531a602daeae90c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76619f672d945519531a602daeae90c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c76619f672d945519531a602daeae90c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c76619f672d945519531a602daeae90c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c76619f672d945519531a602daeae90c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DIXI73LhjZmm8bgzLXcxn6xvY60=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.239924+00 2025-12-09 10:16:06.239931+00 21869 0044-1FWE#VS-D3 SPMX-20240815317131 \N \N \N 1 \N [{"file_id": "35e4dc2b-c650-4caf-bd64-e44d021480f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe2511cb75a847ee882702a86930f509.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe2511cb75a847ee882702a86930f509.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe2511cb75a847ee882702a86930f509.jpg", "file_size": 16464, "is_delete": false, "file_type": 1, "original_file_name": "0044-1FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2511cb75a847ee882702a86930f509.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2511cb75a847ee882702a86930f509.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe2511cb75a847ee882702a86930f509.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe2511cb75a847ee882702a86930f509.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe2511cb75a847ee882702a86930f509.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lz84fYsDfzNoXqZMRdJsNVDTL08=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.24344+00 2025-12-09 10:16:06.243446+00 21870 128-1#蓝色WJC22 SPMX-20240815317129 \N \N \N 1 \N [{"file_id": "8893cb66-5dd9-4320-9c32-69e0e3018142", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18f4d2d402ea45a8b9812c111460c733.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18f4d2d402ea45a8b9812c111460c733.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18f4d2d402ea45a8b9812c111460c733.jpg", "file_size": 15829, "is_delete": false, "file_type": 1, "original_file_name": "128-1#蓝色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f4d2d402ea45a8b9812c111460c733.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f4d2d402ea45a8b9812c111460c733.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18f4d2d402ea45a8b9812c111460c733.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18f4d2d402ea45a8b9812c111460c733.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18f4d2d402ea45a8b9812c111460c733.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KddBoWUJolrAF_Q8BlSw6WY05PI=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.247038+00 2025-12-09 10:16:06.247045+00 21871 0044-12FWE#绿色 SPMX-20240815317121 \N \N \N 1 \N [{"file_id": "99de98ca-3b32-47a5-b927-de78ecc58f53", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1494817d6cfd47bebdd12b10c3e02513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1494817d6cfd47bebdd12b10c3e02513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1494817d6cfd47bebdd12b10c3e02513.jpg", "file_size": 20326, "is_delete": false, "file_type": 1, "original_file_name": "0044-12FWE#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1494817d6cfd47bebdd12b10c3e02513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1494817d6cfd47bebdd12b10c3e02513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1494817d6cfd47bebdd12b10c3e02513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1494817d6cfd47bebdd12b10c3e02513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1494817d6cfd47bebdd12b10c3e02513.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dSapNlQ6VpOFdwwhJLiEMqYMnrQ=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.250613+00 2025-12-09 10:16:06.250619+00 21872 JY-E0006#2XL SPMX-20240815317120 \N \N \N 1 \N [{"file_id": "61253859-4a54-44da-b1de-6a4bf7007f12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3d9f0cf4e442d38c52702998894248.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3d9f0cf4e442d38c52702998894248.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3d9f0cf4e442d38c52702998894248.jpg", "file_size": 65608, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d9f0cf4e442d38c52702998894248.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d9f0cf4e442d38c52702998894248.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3d9f0cf4e442d38c52702998894248.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3d9f0cf4e442d38c52702998894248.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3d9f0cf4e442d38c52702998894248.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-Hj2Vzh_JZRvg7u1WEk9ZVr18M=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.254191+00 2025-12-09 10:16:06.254197+00 21873 LZ1431#上身4号色 SPMX-20240815317124 \N \N \N 1 \N [{"file_id": "dfe5a997-b6c5-4872-bf03-e9c4c182206a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eca5daf22ee948429b9fae1fea3b0dc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eca5daf22ee948429b9fae1fea3b0dc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eca5daf22ee948429b9fae1fea3b0dc2.jpg", "file_size": 15474, "is_delete": false, "file_type": 1, "original_file_name": "LZ1431#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca5daf22ee948429b9fae1fea3b0dc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca5daf22ee948429b9fae1fea3b0dc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eca5daf22ee948429b9fae1fea3b0dc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eca5daf22ee948429b9fae1fea3b0dc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eca5daf22ee948429b9fae1fea3b0dc2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bB3DED7DxgIOPlDtDKKBC80sV50=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.257774+00 2025-12-09 10:16:06.257785+00 21874 CHiC140#11号色-24码 SPMX-20240815317123 \N \N \N 1 \N [{"file_id": "e1e6ab93-398e-464e-9345-e87244cde2fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26331739c8e644498025c377fff23237.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26331739c8e644498025c377fff23237.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26331739c8e644498025c377fff23237.jpg", "file_size": 47255, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26331739c8e644498025c377fff23237.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26331739c8e644498025c377fff23237.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26331739c8e644498025c377fff23237.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26331739c8e644498025c377fff23237.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26331739c8e644498025c377fff23237.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OIvcQeA10tZNWoH1g0uoHGJbl20=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.261413+00 2025-12-09 10:16:06.26142+00 21875 FX021#D净色 SPMX-20240815317132 \N \N \N 1 \N [{"file_id": "0131fac7-172c-4472-abb5-a0b8a13ecf05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a36710c8e238412482f0831b503c5221.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a36710c8e238412482f0831b503c5221.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a36710c8e238412482f0831b503c5221.jpg", "file_size": 5936, "is_delete": false, "file_type": 1, "original_file_name": "FX021#D净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36710c8e238412482f0831b503c5221.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36710c8e238412482f0831b503c5221.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a36710c8e238412482f0831b503c5221.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a36710c8e238412482f0831b503c5221.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a36710c8e238412482f0831b503c5221.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r4FNVUy4GP67vgia4aO_m3vMxG4=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.265497+00 2025-12-09 10:16:06.265504+00 21876 HXF030FW#VS-D3 SPMX-20240815317126 \N \N \N 1 \N [{"file_id": "f3fce3e7-cd2e-4594-a79a-119bd340fc18", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a4f94b3d13040c8af58413a15366cc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a4f94b3d13040c8af58413a15366cc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a4f94b3d13040c8af58413a15366cc7.jpg", "file_size": 8473, "is_delete": false, "file_type": 1, "original_file_name": "HXF030FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f94b3d13040c8af58413a15366cc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f94b3d13040c8af58413a15366cc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a4f94b3d13040c8af58413a15366cc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a4f94b3d13040c8af58413a15366cc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a4f94b3d13040c8af58413a15366cc7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jGZzUZ5fjx9BT1hyMnTdyLW8N_I=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.269289+00 2025-12-09 10:16:06.269295+00 21877 LJW001FW#VS-D3 SPMX-20240815317127 \N \N \N 1 \N [{"file_id": "5688fc0b-e7d8-4b70-931e-e54a7ca2eb15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3369fe980dea49f0a7222b1661ff23d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3369fe980dea49f0a7222b1661ff23d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3369fe980dea49f0a7222b1661ff23d8.jpg", "file_size": 18297, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3369fe980dea49f0a7222b1661ff23d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3369fe980dea49f0a7222b1661ff23d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3369fe980dea49f0a7222b1661ff23d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3369fe980dea49f0a7222b1661ff23d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3369fe980dea49f0a7222b1661ff23d8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TGilm7_vnzGCwzUm5DFc7vREOMU=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.272798+00 2025-12-09 10:16:06.272806+00 21878 88380FWF#乱花-枣红46码 SPMX-20240815317128 \N \N \N 1 \N [{"file_id": "1f4496d0-f540-4030-8eff-1301d976d129", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6579404065aa451bb46e81b5a88d19c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6579404065aa451bb46e81b5a88d19c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6579404065aa451bb46e81b5a88d19c0.jpg", "file_size": 23477, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#乱花-枣红46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6579404065aa451bb46e81b5a88d19c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6579404065aa451bb46e81b5a88d19c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6579404065aa451bb46e81b5a88d19c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6579404065aa451bb46e81b5a88d19c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6579404065aa451bb46e81b5a88d19c0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zXjYaEVw3d5NP2EGI_OniJXc3qM=", "createTime": "2024-08-15 15:10:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.276155+00 2025-12-09 10:16:06.276161+00 21879 LJW001FW#VS-D3大白底布 SPMX-20240815317137 \N \N \N 1 \N [{"file_id": "dbcbbe58-248d-4f5a-a036-2e73db80082c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10a2d58e9bcc4956bb96e050518b2a8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10a2d58e9bcc4956bb96e050518b2a8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10a2d58e9bcc4956bb96e050518b2a8e.jpg", "file_size": 18162, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FW#VS-D3大白底布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a2d58e9bcc4956bb96e050518b2a8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a2d58e9bcc4956bb96e050518b2a8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10a2d58e9bcc4956bb96e050518b2a8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10a2d58e9bcc4956bb96e050518b2a8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10a2d58e9bcc4956bb96e050518b2a8e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2_xkwxRwm_KV5YKLa83bWFJJoiI=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.279894+00 2025-12-09 10:16:06.279901+00 21880 CHiC140#11号色-25码 SPMX-20240815317135 \N \N \N 1 \N [{"file_id": "abb3a584-3cc0-4da0-8e3b-6efd95b27ed2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79ce2a820f574a4a9cc0cb0080c4d569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79ce2a820f574a4a9cc0cb0080c4d569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79ce2a820f574a4a9cc0cb0080c4d569.jpg", "file_size": 45896, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ce2a820f574a4a9cc0cb0080c4d569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ce2a820f574a4a9cc0cb0080c4d569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79ce2a820f574a4a9cc0cb0080c4d569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79ce2a820f574a4a9cc0cb0080c4d569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79ce2a820f574a4a9cc0cb0080c4d569.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fM1vzFlDCdlW3JoiWyGZtG_L7bI=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.283643+00 2025-12-09 10:16:06.283649+00 21881 LZ1431#上身5号色 SPMX-20240815317134 \N \N \N 1 \N [{"file_id": "bcebbf1d-b5a2-48a8-80ed-17f9cb7ab1d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "75887d30df0f40a78c82733fea804b1c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "75887d30df0f40a78c82733fea804b1c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "75887d30df0f40a78c82733fea804b1c.jpg", "file_size": 15704, "is_delete": false, "file_type": 1, "original_file_name": "LZ1431#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75887d30df0f40a78c82733fea804b1c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75887d30df0f40a78c82733fea804b1c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/75887d30df0f40a78c82733fea804b1c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/75887d30df0f40a78c82733fea804b1c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/75887d30df0f40a78c82733fea804b1c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6SLoYoeBbHtj0LQPKNL7gOhnUu4=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.287177+00 2025-12-09 10:16:06.287183+00 21882 HXF031FW#VS-D3 SPMX-20240815317136 \N \N \N 1 \N [{"file_id": "9a2ce1b1-5537-442b-a924-58d9e3542a7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "112954f78e9b42a19d6288b102fd117f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "112954f78e9b42a19d6288b102fd117f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "112954f78e9b42a19d6288b102fd117f.jpg", "file_size": 8771, "is_delete": false, "file_type": 1, "original_file_name": "HXF031FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112954f78e9b42a19d6288b102fd117f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112954f78e9b42a19d6288b102fd117f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112954f78e9b42a19d6288b102fd117f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/112954f78e9b42a19d6288b102fd117f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/112954f78e9b42a19d6288b102fd117f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:35_UNcmfDgHZofkJoeSMdKEg0pY=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.291219+00 2025-12-09 10:16:06.291227+00 21883 243020#-01-1-3XL码 SPMX-20240815317141 \N \N \N 1 \N [{"file_id": "ef0d2599-9aaf-48db-92d9-6d870ac4efb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4464c13dd95414dadaccf9370c9fd1b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4464c13dd95414dadaccf9370c9fd1b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4464c13dd95414dadaccf9370c9fd1b.jpg", "file_size": 56446, "is_delete": false, "file_type": 1, "original_file_name": "243020#-01-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4464c13dd95414dadaccf9370c9fd1b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4464c13dd95414dadaccf9370c9fd1b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4464c13dd95414dadaccf9370c9fd1b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4464c13dd95414dadaccf9370c9fd1b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4464c13dd95414dadaccf9370c9fd1b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ci82qNeFT396gZ3HD43yFtKiA0c=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.295226+00 2025-12-09 10:16:06.295232+00 21884 LZ1432#上身1号色 SPMX-20240815317142 \N \N \N 1 \N [{"file_id": "c9e26b36-a8c4-4bfc-b11f-7de931c07968", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "024a2c2ad0d84dcfb4a19a3c7db85846.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "024a2c2ad0d84dcfb4a19a3c7db85846.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "024a2c2ad0d84dcfb4a19a3c7db85846.jpg", "file_size": 22830, "is_delete": false, "file_type": 1, "original_file_name": "LZ1432#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024a2c2ad0d84dcfb4a19a3c7db85846.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024a2c2ad0d84dcfb4a19a3c7db85846.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/024a2c2ad0d84dcfb4a19a3c7db85846.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/024a2c2ad0d84dcfb4a19a3c7db85846.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/024a2c2ad0d84dcfb4a19a3c7db85846.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43J3LhbjTd4kViGptKxARmGkN10=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.299194+00 2025-12-09 10:16:06.299201+00 21885 CHiC140#11号色净色 SPMX-20240815317140 \N \N \N 1 \N [{"file_id": "80aee04c-1f58-497e-b0c4-7c5d61929789", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17266697a2d94bc297fc45e1925396a0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17266697a2d94bc297fc45e1925396a0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17266697a2d94bc297fc45e1925396a0.jpg", "file_size": 13270, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#11号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17266697a2d94bc297fc45e1925396a0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17266697a2d94bc297fc45e1925396a0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17266697a2d94bc297fc45e1925396a0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17266697a2d94bc297fc45e1925396a0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17266697a2d94bc297fc45e1925396a0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W-O8OMlezU940h_Dz-a0p6M_oCE=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.302943+00 2025-12-09 10:16:06.30295+00 21886 128-1#黄色WJC22 SPMX-20240815317143 \N \N \N 1 \N [{"file_id": "8a454f54-2348-4329-a556-d9ecc813668e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg", "file_size": 19165, "is_delete": false, "file_type": 1, "original_file_name": "128-1#黄色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d77edbf0d984fa9a011e2f3aaf3ec1a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_6yQDL5K4ggKeIbNdQdN4SkBd50=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.306617+00 2025-12-09 10:16:06.306623+00 21887 DN-D3004#L SPMX-20240815317145 \N \N \N 1 \N [{"file_id": "7fba0b0c-afcc-40fb-989c-77cd12f6d3c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "294065c90e4d4eb49d9d442e81c72e23.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "294065c90e4d4eb49d9d442e81c72e23.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "294065c90e4d4eb49d9d442e81c72e23.jpg", "file_size": 56440, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3004#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294065c90e4d4eb49d9d442e81c72e23.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294065c90e4d4eb49d9d442e81c72e23.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/294065c90e4d4eb49d9d442e81c72e23.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/294065c90e4d4eb49d9d442e81c72e23.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/294065c90e4d4eb49d9d442e81c72e23.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gbQAst-PvCUELwDFSnN3P7vZhDk=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.310213+00 2025-12-09 10:16:06.310219+00 21888 FX021#VSD3 SPMX-20240815317146 \N \N \N 1 \N [{"file_id": "15f8d892-1806-43df-bdd0-57168972c453", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5de33114c0d04152b7284c82679812dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5de33114c0d04152b7284c82679812dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5de33114c0d04152b7284c82679812dc.jpg", "file_size": 17943, "is_delete": false, "file_type": 1, "original_file_name": "FX021#VSD3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de33114c0d04152b7284c82679812dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de33114c0d04152b7284c82679812dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5de33114c0d04152b7284c82679812dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5de33114c0d04152b7284c82679812dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5de33114c0d04152b7284c82679812dc.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0T3oolpDBEmKI8u73Y_ZOgrKWsc=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.313693+00 2025-12-09 10:16:06.3137+00 21889 0044-1FWF#蓝咖色 SPMX-20240815317148 \N \N \N 1 \N [{"file_id": "e08bb650-e4da-48f6-ba0a-0dac3207392b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afd59136b520429885d817617315b376.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afd59136b520429885d817617315b376.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afd59136b520429885d817617315b376.jpg", "file_size": 10696, "is_delete": false, "file_type": 1, "original_file_name": "0044-1FWF#蓝咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd59136b520429885d817617315b376.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd59136b520429885d817617315b376.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afd59136b520429885d817617315b376.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afd59136b520429885d817617315b376.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afd59136b520429885d817617315b376.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:T7h-0ykASsAeBefi2f1FUg7lpxU=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.317302+00 2025-12-09 10:16:06.317309+00 21890 0044-1FWF#原版色 SPMX-20240815317138 \N \N \N 1 \N [{"file_id": "979b2cdb-4690-4fc9-a4e7-acd1028dd3ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77eecbb4c3844ad583ba7f91618fe206.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77eecbb4c3844ad583ba7f91618fe206.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77eecbb4c3844ad583ba7f91618fe206.jpg", "file_size": 15226, "is_delete": false, "file_type": 1, "original_file_name": "0044-1FWF#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecbb4c3844ad583ba7f91618fe206.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecbb4c3844ad583ba7f91618fe206.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77eecbb4c3844ad583ba7f91618fe206.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77eecbb4c3844ad583ba7f91618fe206.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77eecbb4c3844ad583ba7f91618fe206.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EJDCPN9GtQrLEsSp0e7Z_XzoWqA=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.321001+00 2025-12-09 10:16:06.321008+00 21891 JY-E0006#L SPMX-20240815317144 \N \N \N 1 \N [{"file_id": "783c5f91-fccc-4bc7-b9be-d86196ebe75e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37eff05847e441ed89e68e51fcb531ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37eff05847e441ed89e68e51fcb531ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37eff05847e441ed89e68e51fcb531ea.jpg", "file_size": 59869, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37eff05847e441ed89e68e51fcb531ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37eff05847e441ed89e68e51fcb531ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37eff05847e441ed89e68e51fcb531ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37eff05847e441ed89e68e51fcb531ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37eff05847e441ed89e68e51fcb531ea.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P5SIERNOsQgFrRATa3NyXthnbhI=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.324636+00 2025-12-09 10:16:06.324646+00 21892 LJW001FW#VS-D3玫红底布 SPMX-20240815317149 \N \N \N 1 \N [{"file_id": "4123594f-bd46-494e-b0e8-d90c39593fe0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f6b6c21aacc14a80b5055112ef39518a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f6b6c21aacc14a80b5055112ef39518a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f6b6c21aacc14a80b5055112ef39518a.jpg", "file_size": 18577, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FW#VS-D3玫红底布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6c21aacc14a80b5055112ef39518a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6c21aacc14a80b5055112ef39518a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f6b6c21aacc14a80b5055112ef39518a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f6b6c21aacc14a80b5055112ef39518a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f6b6c21aacc14a80b5055112ef39518a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QY9m7HGKSkSeYd49AIvfZ1j4IHM=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.328365+00 2025-12-09 10:16:06.328371+00 21893 HXF032FW#VS-D3 SPMX-20240815317147 \N \N \N 1 \N [{"file_id": "5103de25-a9d6-4801-9ffe-8b11bafcca5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77569ff6438e49a2a2314e433f530c02.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77569ff6438e49a2a2314e433f530c02.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77569ff6438e49a2a2314e433f530c02.jpg", "file_size": 6563, "is_delete": false, "file_type": 1, "original_file_name": "HXF032FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77569ff6438e49a2a2314e433f530c02.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77569ff6438e49a2a2314e433f530c02.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77569ff6438e49a2a2314e433f530c02.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77569ff6438e49a2a2314e433f530c02.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77569ff6438e49a2a2314e433f530c02.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YBlpZS3YMcWbc40LqNnbJuvW4dA=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.331896+00 2025-12-09 10:16:06.331903+00 21894 88380FWF#乱花-枣红50码 SPMX-20240815317151 \N \N \N 1 \N [{"file_id": "ac126446-3dee-4b7a-b28d-fc50708263e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9e6884fe19049079090ec00bc326f4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9e6884fe19049079090ec00bc326f4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9e6884fe19049079090ec00bc326f4a.jpg", "file_size": 24225, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#乱花-枣红50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6884fe19049079090ec00bc326f4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6884fe19049079090ec00bc326f4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9e6884fe19049079090ec00bc326f4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9e6884fe19049079090ec00bc326f4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9e6884fe19049079090ec00bc326f4a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zBHdJkXaL2Lwr_aJQykALQeHr6M=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.33539+00 2025-12-09 10:16:06.335396+00 21895 CHiC140#3号色-21码 SPMX-20240815317150 \N \N \N 1 \N [{"file_id": "95f56b74-f901-4a35-8069-696d6447641c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "112f75dc8445475f8d20728127320bf9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "112f75dc8445475f8d20728127320bf9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "112f75dc8445475f8d20728127320bf9.jpg", "file_size": 47021, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112f75dc8445475f8d20728127320bf9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112f75dc8445475f8d20728127320bf9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/112f75dc8445475f8d20728127320bf9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/112f75dc8445475f8d20728127320bf9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/112f75dc8445475f8d20728127320bf9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EVEoZoGqICcy0G5bYxWoL3_cuxg=", "createTime": "2024-08-15 15:10:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.338965+00 2025-12-09 10:16:06.338972+00 21896 88380FWF#乱花-枣红48码 SPMX-20240815317139 \N \N \N 1 \N [{"file_id": "373590c4-8a73-448f-ab90-ee30accdb93b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2e2e5a4c5504db4a0d4e6ff477d686c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2e2e5a4c5504db4a0d4e6ff477d686c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2e2e5a4c5504db4a0d4e6ff477d686c.jpg", "file_size": 23422, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#乱花-枣红48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e2e5a4c5504db4a0d4e6ff477d686c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e2e5a4c5504db4a0d4e6ff477d686c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2e2e5a4c5504db4a0d4e6ff477d686c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2e2e5a4c5504db4a0d4e6ff477d686c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2e2e5a4c5504db4a0d4e6ff477d686c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NObIlirOFXDNp_FK9Urs4mEkxUg=", "createTime": "2024-08-15 15:10:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.342467+00 2025-12-09 10:16:06.342474+00 21897 JY-E0006#M SPMX-20240815317152 \N \N \N 1 \N [{"file_id": "6b9c4ae5-59d0-4e9d-9aef-8cebb3de2d1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f568095681e74cb88cf17ae223072a24.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f568095681e74cb88cf17ae223072a24.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f568095681e74cb88cf17ae223072a24.jpg", "file_size": 57601, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f568095681e74cb88cf17ae223072a24.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f568095681e74cb88cf17ae223072a24.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f568095681e74cb88cf17ae223072a24.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f568095681e74cb88cf17ae223072a24.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f568095681e74cb88cf17ae223072a24.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hszSGfJnV_q_fKbzTxGDvECJsB0=", "createTime": "2024-08-15 15:10:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.346051+00 2025-12-09 10:16:06.346058+00 21898 CHiC140#3号色-22码 SPMX-20240815317156 \N \N \N 1 \N [{"file_id": "95615052-28ea-437b-8b84-a2fc5315e0fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "18c41f4f869d4e6c885448d7e52f6a71.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "18c41f4f869d4e6c885448d7e52f6a71.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "18c41f4f869d4e6c885448d7e52f6a71.jpg", "file_size": 47695, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c41f4f869d4e6c885448d7e52f6a71.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c41f4f869d4e6c885448d7e52f6a71.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/18c41f4f869d4e6c885448d7e52f6a71.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/18c41f4f869d4e6c885448d7e52f6a71.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/18c41f4f869d4e6c885448d7e52f6a71.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iqj_MGehz816aght2IbKeHODxLs=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.349659+00 2025-12-09 10:16:06.349665+00 21899 LJW001FW#VS-D3红底布 SPMX-20240815317160 \N \N \N 1 \N [{"file_id": "b4a936ae-73e8-4adf-87ed-547d7ed19b91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5410cd0ec42b4af6bdb5a642d2e02d0f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5410cd0ec42b4af6bdb5a642d2e02d0f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5410cd0ec42b4af6bdb5a642d2e02d0f.jpg", "file_size": 18162, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FW#VS-D3红底布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cd0ec42b4af6bdb5a642d2e02d0f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cd0ec42b4af6bdb5a642d2e02d0f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5410cd0ec42b4af6bdb5a642d2e02d0f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5410cd0ec42b4af6bdb5a642d2e02d0f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5410cd0ec42b4af6bdb5a642d2e02d0f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ks_ijd-ykJ6TYOVpCU3TouAY8zY=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.353244+00 2025-12-09 10:16:06.35325+00 21900 1281-13FWF#粉色 SPMX-20240815317154 \N \N \N 1 \N [{"file_id": "71d92ccd-7838-43cf-af67-bcfbbd5a5b49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77aaff1198db476394318868bbac10a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77aaff1198db476394318868bbac10a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77aaff1198db476394318868bbac10a7.jpg", "file_size": 11203, "is_delete": false, "file_type": 1, "original_file_name": "1281-13FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aaff1198db476394318868bbac10a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aaff1198db476394318868bbac10a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77aaff1198db476394318868bbac10a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77aaff1198db476394318868bbac10a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77aaff1198db476394318868bbac10a7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L9QILVpsmf2NzSe4T19G19EtKiI=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.356976+00 2025-12-09 10:16:06.356983+00 21901 243020#-02-1-2XL码 SPMX-20240815317157 \N \N \N 1 \N [{"file_id": "3ba5ff33-3568-49e2-97c3-c31a7c0039df", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd190b6ba6c436e806197c894ec700c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd190b6ba6c436e806197c894ec700c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd190b6ba6c436e806197c894ec700c.jpg", "file_size": 57534, "is_delete": false, "file_type": 1, "original_file_name": "243020#-02-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd190b6ba6c436e806197c894ec700c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd190b6ba6c436e806197c894ec700c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd190b6ba6c436e806197c894ec700c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd190b6ba6c436e806197c894ec700c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd190b6ba6c436e806197c894ec700c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7CjtwRh7ViFxl9gN95qVSVafP30=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.360995+00 2025-12-09 10:16:06.361003+00 21902 88380FWF#卡其42码 SPMX-20240815317161 \N \N \N 1 \N [{"file_id": "26e04e73-62aa-4858-a186-0cd0bf295c5f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d24853fefbaf47db8fd56ef98f9cdbb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d24853fefbaf47db8fd56ef98f9cdbb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d24853fefbaf47db8fd56ef98f9cdbb5.jpg", "file_size": 20233, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#卡其42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24853fefbaf47db8fd56ef98f9cdbb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24853fefbaf47db8fd56ef98f9cdbb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d24853fefbaf47db8fd56ef98f9cdbb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d24853fefbaf47db8fd56ef98f9cdbb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d24853fefbaf47db8fd56ef98f9cdbb5.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HxQ2Tk70owsNZ-xsmVigIHgtOUA=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.364863+00 2025-12-09 10:16:06.36487+00 21903 LZ1432#上身2号色 SPMX-20240815317153 \N \N \N 1 \N [{"file_id": "0a66c8d2-ed57-4cf6-ac11-329bc06d1492", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40111ce94b774e2ba29d66b00dc8d826.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40111ce94b774e2ba29d66b00dc8d826.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40111ce94b774e2ba29d66b00dc8d826.jpg", "file_size": 20388, "is_delete": false, "file_type": 1, "original_file_name": "LZ1432#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40111ce94b774e2ba29d66b00dc8d826.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40111ce94b774e2ba29d66b00dc8d826.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40111ce94b774e2ba29d66b00dc8d826.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40111ce94b774e2ba29d66b00dc8d826.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40111ce94b774e2ba29d66b00dc8d826.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q8BH7-PptUY240ZTvQC17If6HGk=", "createTime": "2024-08-15 15:10:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.368651+00 2025-12-09 10:16:06.368657+00 21904 JY-E0006#S SPMX-20240815317162 \N \N \N 1 \N [{"file_id": "d2dbd022-c542-44d3-b81c-a537adfe4882", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "57c9254c61794cab9f55f20377f40ffe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "57c9254c61794cab9f55f20377f40ffe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "57c9254c61794cab9f55f20377f40ffe.jpg", "file_size": 55934, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c9254c61794cab9f55f20377f40ffe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c9254c61794cab9f55f20377f40ffe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/57c9254c61794cab9f55f20377f40ffe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/57c9254c61794cab9f55f20377f40ffe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/57c9254c61794cab9f55f20377f40ffe.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xcA1MyVy5g7H8nIuYw9gcn8f6jA=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.372438+00 2025-12-09 10:16:06.372444+00 21905 DN-D3004#M SPMX-20240815317155 \N \N \N 1 \N [{"file_id": "f74afde6-b6ee-4628-b41a-75f567c6d203", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76ac5bd9280740b88da3100309195497.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76ac5bd9280740b88da3100309195497.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76ac5bd9280740b88da3100309195497.jpg", "file_size": 58449, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3004#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76ac5bd9280740b88da3100309195497.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76ac5bd9280740b88da3100309195497.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76ac5bd9280740b88da3100309195497.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76ac5bd9280740b88da3100309195497.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76ac5bd9280740b88da3100309195497.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RrAglBRxxQIa2-RiY2lnJVncoP8=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.376306+00 2025-12-09 10:16:06.376313+00 21906 0044-1FWF#蓝红色 SPMX-20240815317158 \N \N \N 1 \N [{"file_id": "ff1587a0-4a49-47d6-926e-0fc8540099b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc874a70082a4febb20f435526964d75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc874a70082a4febb20f435526964d75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc874a70082a4febb20f435526964d75.jpg", "file_size": 14113, "is_delete": false, "file_type": 1, "original_file_name": "0044-1FWF#蓝红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc874a70082a4febb20f435526964d75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc874a70082a4febb20f435526964d75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc874a70082a4febb20f435526964d75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc874a70082a4febb20f435526964d75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc874a70082a4febb20f435526964d75.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdWALbUiMKvHIfjIi-EvGU5KyQ8=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.380343+00 2025-12-09 10:16:06.380349+00 21907 HXF033FW#VS-D3 SPMX-20240815317159 \N \N \N 1 \N [{"file_id": "769d9ddc-7bfc-4f48-9f26-f84b473b658f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0dcd833c96544982867f484bb95f5fe4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0dcd833c96544982867f484bb95f5fe4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0dcd833c96544982867f484bb95f5fe4.jpg", "file_size": 17967, "is_delete": false, "file_type": 1, "original_file_name": "HXF033FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcd833c96544982867f484bb95f5fe4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcd833c96544982867f484bb95f5fe4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0dcd833c96544982867f484bb95f5fe4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0dcd833c96544982867f484bb95f5fe4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0dcd833c96544982867f484bb95f5fe4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dTtlCcZMzcrYewnvSIIzcDnHYRc=", "createTime": "2024-08-15 15:11:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.384346+00 2025-12-09 10:16:06.384352+00 21908 JY-E0006#XL SPMX-20240815317169 \N \N \N 1 \N [{"file_id": "ee901fc0-3c4d-4c53-9cda-63644fbeccb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "301dd59acc46474cafbf57fe0fb30fe3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "301dd59acc46474cafbf57fe0fb30fe3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "301dd59acc46474cafbf57fe0fb30fe3.jpg", "file_size": 61918, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301dd59acc46474cafbf57fe0fb30fe3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301dd59acc46474cafbf57fe0fb30fe3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/301dd59acc46474cafbf57fe0fb30fe3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/301dd59acc46474cafbf57fe0fb30fe3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/301dd59acc46474cafbf57fe0fb30fe3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XN5QnqCYZdg79UrJWBelqimEyLk=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.416816+00 2025-12-09 10:16:06.416822+00 21917 DN-D3043#2XL SPMX-20240815317174 \N \N \N 1 \N [{"file_id": "9467e97f-6f0b-4936-a2e2-73d83a395456", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce98cb3d801e4052bce11806223a68b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce98cb3d801e4052bce11806223a68b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce98cb3d801e4052bce11806223a68b7.jpg", "file_size": 42859, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce98cb3d801e4052bce11806223a68b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce98cb3d801e4052bce11806223a68b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce98cb3d801e4052bce11806223a68b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce98cb3d801e4052bce11806223a68b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce98cb3d801e4052bce11806223a68b7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cnEYDOi3WyD42Xb-Xa5hr8ti9T8=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.388308+00 2025-12-09 10:16:06.388315+00 21909 LJW001FW#VS-D3黄底布 SPMX-20240815317170 \N \N \N 1 \N [{"file_id": "7c9a19b6-9c90-4c25-b031-665988006951", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fefaf1220e46493f9cdba9986d3c5770.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fefaf1220e46493f9cdba9986d3c5770.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fefaf1220e46493f9cdba9986d3c5770.jpg", "file_size": 18162, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FW#VS-D3黄底布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefaf1220e46493f9cdba9986d3c5770.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefaf1220e46493f9cdba9986d3c5770.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefaf1220e46493f9cdba9986d3c5770.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fefaf1220e46493f9cdba9986d3c5770.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fefaf1220e46493f9cdba9986d3c5770.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SCUpIvOeP7OzlIKYSJIx9AEECx0=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.391889+00 2025-12-09 10:16:06.391896+00 21910 88380FWF#卡其44码 SPMX-20240815317171 \N \N \N 1 \N [{"file_id": "99244a0b-ec1c-4387-a4ac-53f5f999573c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a90b13092924cbca76e6c7c0b824e94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a90b13092924cbca76e6c7c0b824e94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a90b13092924cbca76e6c7c0b824e94.jpg", "file_size": 20995, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#卡其44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a90b13092924cbca76e6c7c0b824e94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a90b13092924cbca76e6c7c0b824e94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a90b13092924cbca76e6c7c0b824e94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a90b13092924cbca76e6c7c0b824e94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a90b13092924cbca76e6c7c0b824e94.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E1FWrNRdPAJAZzRAFZ9YJLJ5pC8=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.395391+00 2025-12-09 10:16:06.395397+00 21911 DN-D3004#XL SPMX-20240815317165 \N \N \N 1 \N [{"file_id": "4e8e634b-7cce-4d9d-a44b-427d1af69d7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d557e31873b41da93d59d3fab3d19ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d557e31873b41da93d59d3fab3d19ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d557e31873b41da93d59d3fab3d19ce.jpg", "file_size": 53193, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3004#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d557e31873b41da93d59d3fab3d19ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d557e31873b41da93d59d3fab3d19ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d557e31873b41da93d59d3fab3d19ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d557e31873b41da93d59d3fab3d19ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d557e31873b41da93d59d3fab3d19ce.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XW0mdz6U_f-GV7gmv56d2XShCUM=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.398842+00 2025-12-09 10:16:06.398847+00 21912 0044-2FWE#VS-D3 SPMX-20240815317167 \N \N \N 1 \N [{"file_id": "f342148d-8caf-4e3a-8b80-64fb0ba0abcf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4cdcaeffb3be4980859e404289b1559d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4cdcaeffb3be4980859e404289b1559d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4cdcaeffb3be4980859e404289b1559d.jpg", "file_size": 17593, "is_delete": false, "file_type": 1, "original_file_name": "0044-2FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdcaeffb3be4980859e404289b1559d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdcaeffb3be4980859e404289b1559d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4cdcaeffb3be4980859e404289b1559d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4cdcaeffb3be4980859e404289b1559d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4cdcaeffb3be4980859e404289b1559d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yfyhPBf7MrOIzwU1C0PhCZbXpy4=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.402508+00 2025-12-09 10:16:06.402514+00 21913 243020#-02-1-3XL码 SPMX-20240815317166 \N \N \N 1 \N [{"file_id": "f0e6436e-ed22-40fa-ae1a-fc8a273f7ca1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88ad998526a947d4a36be62fb062e14e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88ad998526a947d4a36be62fb062e14e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88ad998526a947d4a36be62fb062e14e.jpg", "file_size": 56963, "is_delete": false, "file_type": 1, "original_file_name": "243020#-02-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ad998526a947d4a36be62fb062e14e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ad998526a947d4a36be62fb062e14e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88ad998526a947d4a36be62fb062e14e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88ad998526a947d4a36be62fb062e14e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88ad998526a947d4a36be62fb062e14e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggcFgE7_wRxuFjugrrX-u5JHf3Q=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.406068+00 2025-12-09 10:16:06.406075+00 21914 1281FWF#3XL SPMX-20240815317172 \N \N \N 1 \N [{"file_id": "a12460bf-906b-4c19-ac6b-f851eaa1650d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90ab93dbb2c94132bbc7888d5a4920f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90ab93dbb2c94132bbc7888d5a4920f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90ab93dbb2c94132bbc7888d5a4920f6.jpg", "file_size": 10054, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ab93dbb2c94132bbc7888d5a4920f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ab93dbb2c94132bbc7888d5a4920f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90ab93dbb2c94132bbc7888d5a4920f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90ab93dbb2c94132bbc7888d5a4920f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90ab93dbb2c94132bbc7888d5a4920f6.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GsAg7pPhLNIuzDLurbliJnD1oGU=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.409597+00 2025-12-09 10:16:06.409603+00 21915 CHiC140#3号色-23码 SPMX-20240815317164 \N \N \N 1 \N [{"file_id": "5312c363-2b49-4da5-b23f-bec618a431c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19d65a549153448b81f82138c328961f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19d65a549153448b81f82138c328961f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19d65a549153448b81f82138c328961f.jpg", "file_size": 46927, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d65a549153448b81f82138c328961f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d65a549153448b81f82138c328961f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19d65a549153448b81f82138c328961f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19d65a549153448b81f82138c328961f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19d65a549153448b81f82138c328961f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sVY_NU8htGuad21Bnj8qtXp0F0c=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.413285+00 2025-12-09 10:16:06.413291+00 21916 1281-27FWF#黄色 SPMX-20240815317163 \N \N \N 1 \N [{"file_id": "c214cc0d-9dc5-4dc8-b2ae-19fba622c9b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3b5c999856342ed834827ffb18d89dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3b5c999856342ed834827ffb18d89dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3b5c999856342ed834827ffb18d89dc.jpg", "file_size": 11599, "is_delete": false, "file_type": 1, "original_file_name": "1281-27FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b5c999856342ed834827ffb18d89dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b5c999856342ed834827ffb18d89dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3b5c999856342ed834827ffb18d89dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3b5c999856342ed834827ffb18d89dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3b5c999856342ed834827ffb18d89dc.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3EzUuKolVjMWkjOTQal7f2_GybQ=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.420328+00 2025-12-09 10:16:06.420335+00 21918 CHiC140#3号色-24码 SPMX-20240815317173 \N \N \N 1 \N [{"file_id": "1fb3761a-cd8d-4391-b122-e9edc2c9f9f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4b6d47e34454477bc41b055e8f4b3de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4b6d47e34454477bc41b055e8f4b3de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4b6d47e34454477bc41b055e8f4b3de.jpg", "file_size": 46325, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b6d47e34454477bc41b055e8f4b3de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b6d47e34454477bc41b055e8f4b3de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4b6d47e34454477bc41b055e8f4b3de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4b6d47e34454477bc41b055e8f4b3de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4b6d47e34454477bc41b055e8f4b3de.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:99_vH8CU_wjFZNkLIYcZhkxSAus=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.424032+00 2025-12-09 10:16:06.424039+00 21919 HXF034FW#VS-D3粉 SPMX-20240815317168 \N \N \N 1 \N [{"file_id": "85508bb6-3265-4ed3-b873-723186917ef9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b53cca2e9f74778953ea4f17f44b61b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b53cca2e9f74778953ea4f17f44b61b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b53cca2e9f74778953ea4f17f44b61b.jpg", "file_size": 6297, "is_delete": false, "file_type": 1, "original_file_name": "HXF034FW#VS-D3粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53cca2e9f74778953ea4f17f44b61b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53cca2e9f74778953ea4f17f44b61b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b53cca2e9f74778953ea4f17f44b61b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b53cca2e9f74778953ea4f17f44b61b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b53cca2e9f74778953ea4f17f44b61b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nLGAvJwAvFxqVdLsWNGd-xIZoco=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.427818+00 2025-12-09 10:16:06.427824+00 21920 0044-2FWF#粉蓝色 SPMX-20240815317181 \N \N \N 1 \N [{"file_id": "7c005453-a050-4013-859c-c26ba0a8a979", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be292cb72134d2bbd2830dfe0c38cfe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be292cb72134d2bbd2830dfe0c38cfe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be292cb72134d2bbd2830dfe0c38cfe.jpg", "file_size": 11365, "is_delete": false, "file_type": 1, "original_file_name": "0044-2FWF#粉蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be292cb72134d2bbd2830dfe0c38cfe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be292cb72134d2bbd2830dfe0c38cfe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be292cb72134d2bbd2830dfe0c38cfe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be292cb72134d2bbd2830dfe0c38cfe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be292cb72134d2bbd2830dfe0c38cfe.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QB7497ahP8E7P3rcpOADi6OZGUM=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.431443+00 2025-12-09 10:16:06.431451+00 21921 1281FWF#L SPMX-20240815317180 \N \N \N 1 \N [{"file_id": "d2dfbfde-be7a-445a-b5ce-085d91ccf8e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d400f64a3ae14f7887ce5e1bbaeaef0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d400f64a3ae14f7887ce5e1bbaeaef0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d400f64a3ae14f7887ce5e1bbaeaef0b.jpg", "file_size": 9273, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d400f64a3ae14f7887ce5e1bbaeaef0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d400f64a3ae14f7887ce5e1bbaeaef0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d400f64a3ae14f7887ce5e1bbaeaef0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d400f64a3ae14f7887ce5e1bbaeaef0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d400f64a3ae14f7887ce5e1bbaeaef0b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vn8zN5eULBVX34-xg5Cp3EdH6Rc=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.435085+00 2025-12-09 10:16:06.435092+00 21922 HXF034FW#VS-D3蓝 SPMX-20240815317176 \N \N \N 1 \N [{"file_id": "11d2743b-30b1-4b0a-9280-a1a19f3ae304", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67138291321e4a28b942f5d5cb5e4e8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67138291321e4a28b942f5d5cb5e4e8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67138291321e4a28b942f5d5cb5e4e8a.jpg", "file_size": 6911, "is_delete": false, "file_type": 1, "original_file_name": "HXF034FW#VS-D3蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67138291321e4a28b942f5d5cb5e4e8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67138291321e4a28b942f5d5cb5e4e8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67138291321e4a28b942f5d5cb5e4e8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67138291321e4a28b942f5d5cb5e4e8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67138291321e4a28b942f5d5cb5e4e8a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WF4zXfh0ItIKsiT-tONRpDx89LQ=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.43865+00 2025-12-09 10:16:06.438657+00 21923 243020#-03-1-2XL码 SPMX-20240815317177 \N \N \N 1 \N [{"file_id": "19313c77-2e09-493f-8110-c1a206b8a8e6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cb5145384af4c9bba6dcea66f68437c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cb5145384af4c9bba6dcea66f68437c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cb5145384af4c9bba6dcea66f68437c.jpg", "file_size": 65822, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb5145384af4c9bba6dcea66f68437c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb5145384af4c9bba6dcea66f68437c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb5145384af4c9bba6dcea66f68437c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cb5145384af4c9bba6dcea66f68437c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cb5145384af4c9bba6dcea66f68437c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Lj5W1p4xrHk0YyvT37FdeewN4t8=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.442583+00 2025-12-09 10:16:06.44259+00 21924 LJW001FWE#黑VS-D3 SPMX-20240815317186 \N \N \N 1 \N [{"file_id": "47ad5ef0-d63d-494a-a041-165aa49e42ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6321fc2869b4027939964957fc5fbaa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6321fc2869b4027939964957fc5fbaa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6321fc2869b4027939964957fc5fbaa.jpg", "file_size": 18892, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6321fc2869b4027939964957fc5fbaa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6321fc2869b4027939964957fc5fbaa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6321fc2869b4027939964957fc5fbaa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6321fc2869b4027939964957fc5fbaa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6321fc2869b4027939964957fc5fbaa.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LE3-YEidtyz7NppAWasLwewBk_Q=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.446206+00 2025-12-09 10:16:06.446213+00 21925 0044-2FWF#原版色 SPMX-20240815317175 \N \N \N 1 \N [{"file_id": "05a604e7-7867-4705-8f9f-1f810b0b7e5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2f08670462242f8bdf2289dee4a15b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2f08670462242f8bdf2289dee4a15b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2f08670462242f8bdf2289dee4a15b3.jpg", "file_size": 15212, "is_delete": false, "file_type": 1, "original_file_name": "0044-2FWF#原版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f08670462242f8bdf2289dee4a15b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f08670462242f8bdf2289dee4a15b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f08670462242f8bdf2289dee4a15b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2f08670462242f8bdf2289dee4a15b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2f08670462242f8bdf2289dee4a15b3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m3_fY3RnD2M9iy4yLyWNfx82oAg=", "createTime": "2024-08-15 15:11:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.449859+00 2025-12-09 10:16:06.449865+00 21926 HXF035FW#白VS-D3 SPMX-20240815317184 \N \N \N 1 \N [{"file_id": "97de4b5d-2302-4b48-ae3e-9e79f5c1e159", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4de9fa2041944ac3a38cf5752ffd391c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4de9fa2041944ac3a38cf5752ffd391c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4de9fa2041944ac3a38cf5752ffd391c.jpg", "file_size": 9687, "is_delete": false, "file_type": 1, "original_file_name": "HXF035FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de9fa2041944ac3a38cf5752ffd391c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de9fa2041944ac3a38cf5752ffd391c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4de9fa2041944ac3a38cf5752ffd391c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4de9fa2041944ac3a38cf5752ffd391c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4de9fa2041944ac3a38cf5752ffd391c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sdf6pD9aMeedT6bFY1bMnhkeBvg=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.45344+00 2025-12-09 10:16:06.453446+00 21927 88380FWF#卡其46码 SPMX-20240815317179 \N \N \N 1 \N [{"file_id": "544d5b1d-bc1f-4435-8213-36decb8ff04b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d1eebaaa4264dde8cfbacafad9ff84b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d1eebaaa4264dde8cfbacafad9ff84b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d1eebaaa4264dde8cfbacafad9ff84b.jpg", "file_size": 21267, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#卡其46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1eebaaa4264dde8cfbacafad9ff84b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1eebaaa4264dde8cfbacafad9ff84b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d1eebaaa4264dde8cfbacafad9ff84b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d1eebaaa4264dde8cfbacafad9ff84b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d1eebaaa4264dde8cfbacafad9ff84b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7rHlipW-FwF653B0Va2UPPIQ6m0=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.456988+00 2025-12-09 10:16:06.456994+00 21928 243020#-03-1-3XL码 SPMX-20240815317185 \N \N \N 1 \N [{"file_id": "99be75b6-0755-41b7-8002-6809c8198c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ebc3492407e4e378db39ef071044915.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ebc3492407e4e378db39ef071044915.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ebc3492407e4e378db39ef071044915.jpg", "file_size": 65394, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebc3492407e4e378db39ef071044915.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebc3492407e4e378db39ef071044915.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebc3492407e4e378db39ef071044915.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ebc3492407e4e378db39ef071044915.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ebc3492407e4e378db39ef071044915.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ztp-BsEE157E3j6s_uNyf37QO1M=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.460396+00 2025-12-09 10:16:06.460402+00 21929 88380FWF#卡其48码 SPMX-20240815317187 \N \N \N 1 \N [{"file_id": "5857c7b1-b4be-4707-9645-645f5f9ba91a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da4db2fa8fbc462e930c8f658f1b0f26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da4db2fa8fbc462e930c8f658f1b0f26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da4db2fa8fbc462e930c8f658f1b0f26.jpg", "file_size": 21410, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#卡其48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4db2fa8fbc462e930c8f658f1b0f26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4db2fa8fbc462e930c8f658f1b0f26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da4db2fa8fbc462e930c8f658f1b0f26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da4db2fa8fbc462e930c8f658f1b0f26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da4db2fa8fbc462e930c8f658f1b0f26.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QPgPeI02lZIyDJajGjwymjwj9mg=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.463794+00 2025-12-09 10:16:06.463801+00 21930 LJW001FWE#VS-D3 SPMX-20240815317178 \N \N \N 1 \N [{"file_id": "4cda2861-27df-449e-afb6-e95cb33c277f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0cfa6183c4a4ac3babc92dd99988cf2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0cfa6183c4a4ac3babc92dd99988cf2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0cfa6183c4a4ac3babc92dd99988cf2.jpg", "file_size": 20643, "is_delete": false, "file_type": 1, "original_file_name": "LJW001FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cfa6183c4a4ac3babc92dd99988cf2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cfa6183c4a4ac3babc92dd99988cf2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0cfa6183c4a4ac3babc92dd99988cf2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0cfa6183c4a4ac3babc92dd99988cf2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0cfa6183c4a4ac3babc92dd99988cf2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PxXinwFDjRf1xO0p362W9UZHHXE=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.467522+00 2025-12-09 10:16:06.467529+00 21931 DN-D3043#3XL SPMX-20240815317183 \N \N \N 1 \N [{"file_id": "dc6af872-baf4-474f-ac1d-1973c066575d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f43fcf443e845fab45e33ef05268c73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f43fcf443e845fab45e33ef05268c73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f43fcf443e845fab45e33ef05268c73.jpg", "file_size": 43405, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f43fcf443e845fab45e33ef05268c73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f43fcf443e845fab45e33ef05268c73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f43fcf443e845fab45e33ef05268c73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f43fcf443e845fab45e33ef05268c73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f43fcf443e845fab45e33ef05268c73.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mn3oyaTYbfWuAXZZIjYsoSYKseE=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.471176+00 2025-12-09 10:16:06.471182+00 21932 CHiC140#3号色-25码 SPMX-20240815317182 \N \N \N 1 \N [{"file_id": "c296899a-80c1-4dcf-8f90-6f595be4dfab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31565b39b4324b8c9df70291d7f24348.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31565b39b4324b8c9df70291d7f24348.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31565b39b4324b8c9df70291d7f24348.jpg", "file_size": 43931, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31565b39b4324b8c9df70291d7f24348.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31565b39b4324b8c9df70291d7f24348.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31565b39b4324b8c9df70291d7f24348.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31565b39b4324b8c9df70291d7f24348.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31565b39b4324b8c9df70291d7f24348.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8gMaLabEDcIChBYDLL5ZtLIXlnc=", "createTime": "2024-08-15 15:11:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.474777+00 2025-12-09 10:16:06.474784+00 21933 LJW002#D SPMX-20240815317192 \N \N \N 1 \N [{"file_id": "059720d8-e4bb-421e-8c38-10be18b86a67", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17d2da250a2d4fdc87d891c85c205021.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17d2da250a2d4fdc87d891c85c205021.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17d2da250a2d4fdc87d891c85c205021.jpg", "file_size": 15179, "is_delete": false, "file_type": 1, "original_file_name": "LJW002#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2da250a2d4fdc87d891c85c205021.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2da250a2d4fdc87d891c85c205021.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17d2da250a2d4fdc87d891c85c205021.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17d2da250a2d4fdc87d891c85c205021.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17d2da250a2d4fdc87d891c85c205021.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PR40iZh__Bl9YQGJEn3cLOj5Ubk=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.478324+00 2025-12-09 10:16:06.47833+00 21934 DN-D3043#L SPMX-20240815317190 \N \N \N 1 \N [{"file_id": "fb70b009-89c5-469a-97f5-94b5c6deec6e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4a11b3868bd4003b9864a423790fb88.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4a11b3868bd4003b9864a423790fb88.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4a11b3868bd4003b9864a423790fb88.jpg", "file_size": 45609, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a11b3868bd4003b9864a423790fb88.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a11b3868bd4003b9864a423790fb88.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4a11b3868bd4003b9864a423790fb88.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4a11b3868bd4003b9864a423790fb88.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4a11b3868bd4003b9864a423790fb88.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A7A267dJJCINglBqMG61ZI9gHwA=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.481854+00 2025-12-09 10:16:06.481861+00 21935 88380FWF#卡其50码 SPMX-20240815317193 \N \N \N 1 \N [{"file_id": "fbf35cfc-a73e-4a8b-8c86-89aba52a035f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a503662397994089b111658513f84ba4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a503662397994089b111658513f84ba4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a503662397994089b111658513f84ba4.jpg", "file_size": 22010, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#卡其50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a503662397994089b111658513f84ba4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a503662397994089b111658513f84ba4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a503662397994089b111658513f84ba4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a503662397994089b111658513f84ba4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a503662397994089b111658513f84ba4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:R1j6Y810i7icpd4GoV5iE88rB0k=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.485365+00 2025-12-09 10:16:06.485372+00 21936 CHiC140#3号色净色 SPMX-20240815317189 \N \N \N 1 \N [{"file_id": "ef721ab2-c6f7-475e-bc43-9f4fa8348c5d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acace551208f4238bf5a63e7af42d813.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acace551208f4238bf5a63e7af42d813.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acace551208f4238bf5a63e7af42d813.jpg", "file_size": 10828, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#3号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acace551208f4238bf5a63e7af42d813.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acace551208f4238bf5a63e7af42d813.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acace551208f4238bf5a63e7af42d813.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acace551208f4238bf5a63e7af42d813.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acace551208f4238bf5a63e7af42d813.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O02ODjwUCQVAWNgO056qXdu0p3Q=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.488811+00 2025-12-09 10:16:06.488818+00 21937 243020#-03-2-2XL码 SPMX-20240815317191 \N \N \N 1 \N [{"file_id": "6e2b5a62-a48f-44a1-a67e-41ab382e4d07", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13bfa3e900f640e689a436b0e2d86631.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13bfa3e900f640e689a436b0e2d86631.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13bfa3e900f640e689a436b0e2d86631.jpg", "file_size": 69768, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bfa3e900f640e689a436b0e2d86631.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bfa3e900f640e689a436b0e2d86631.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bfa3e900f640e689a436b0e2d86631.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13bfa3e900f640e689a436b0e2d86631.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13bfa3e900f640e689a436b0e2d86631.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X4zf_CDxTap86WQpDIpPoMTKTF0=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.49222+00 2025-12-09 10:16:06.492226+00 21938 0044-2FWF#蓝咖色 SPMX-20240815317188 \N \N \N 1 \N [{"file_id": "2acf7ca6-10e4-4daa-bb34-366948799774", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ae1e41dc1094c4db51c259d03e7373f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ae1e41dc1094c4db51c259d03e7373f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ae1e41dc1094c4db51c259d03e7373f.jpg", "file_size": 13131, "is_delete": false, "file_type": 1, "original_file_name": "0044-2FWF#蓝咖色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae1e41dc1094c4db51c259d03e7373f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae1e41dc1094c4db51c259d03e7373f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ae1e41dc1094c4db51c259d03e7373f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ae1e41dc1094c4db51c259d03e7373f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ae1e41dc1094c4db51c259d03e7373f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwM20ZCBWN3XgnhnzNBEQb138aw=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.495819+00 2025-12-09 10:16:06.495826+00 21939 DN-D3043#M SPMX-20240815317195 \N \N \N 1 \N [{"file_id": "72d06009-502e-468b-9770-2e3eeebb34a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ce20aa502f24b0ba52f2ded873d49ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ce20aa502f24b0ba52f2ded873d49ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ce20aa502f24b0ba52f2ded873d49ab.jpg", "file_size": 46965, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce20aa502f24b0ba52f2ded873d49ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce20aa502f24b0ba52f2ded873d49ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ce20aa502f24b0ba52f2ded873d49ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ce20aa502f24b0ba52f2ded873d49ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ce20aa502f24b0ba52f2ded873d49ab.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZdYmS0h6x6accj0nsEhSQNw5gWA=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.49939+00 2025-12-09 10:16:06.499397+00 21940 243020#-03-2-3XL码 SPMX-20240815317198 \N \N \N 1 \N [{"file_id": "62536480-49ff-4671-b738-a43aa183d88e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15559622504c41108e9ba4b4cf1141da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15559622504c41108e9ba4b4cf1141da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15559622504c41108e9ba4b4cf1141da.jpg", "file_size": 67920, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15559622504c41108e9ba4b4cf1141da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15559622504c41108e9ba4b4cf1141da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15559622504c41108e9ba4b4cf1141da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15559622504c41108e9ba4b4cf1141da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15559622504c41108e9ba4b4cf1141da.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QOAXfzU3u37wAHcUESszLxwIco8=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.502956+00 2025-12-09 10:16:06.502963+00 21941 CHiC140#4号色-21码 SPMX-20240815317196 \N \N \N 1 \N [{"file_id": "1639592b-5608-4466-aad1-739a58cfd3d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea5e129757624685a0a1845618d81d30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea5e129757624685a0a1845618d81d30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea5e129757624685a0a1845618d81d30.jpg", "file_size": 48917, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea5e129757624685a0a1845618d81d30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea5e129757624685a0a1845618d81d30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea5e129757624685a0a1845618d81d30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea5e129757624685a0a1845618d81d30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea5e129757624685a0a1845618d81d30.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kox1MrEUxJO6HckXZMIVsXogPEI=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.506488+00 2025-12-09 10:16:06.506495+00 21942 LJW002#D白底 SPMX-20240815317199 \N \N \N 1 \N [{"file_id": "f9d0398d-671e-496f-82bf-3b6ec5ac7c89", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7ec9f11d1ed4e0491f88d68127469b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7ec9f11d1ed4e0491f88d68127469b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7ec9f11d1ed4e0491f88d68127469b3.jpg", "file_size": 11487, "is_delete": false, "file_type": 1, "original_file_name": "LJW002#D白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ec9f11d1ed4e0491f88d68127469b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ec9f11d1ed4e0491f88d68127469b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7ec9f11d1ed4e0491f88d68127469b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7ec9f11d1ed4e0491f88d68127469b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7ec9f11d1ed4e0491f88d68127469b3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:S5OpTxfVdpixRn0rK2CIgZzjT44=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.510039+00 2025-12-09 10:16:06.510046+00 21943 88380FWF#彩兰克42码 SPMX-20240815317197 \N \N \N 1 \N [{"file_id": "36539e29-c120-4e35-bf68-dc914bb9bffb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43367126c8da45448ca7c75d1f923d4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43367126c8da45448ca7c75d1f923d4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43367126c8da45448ca7c75d1f923d4b.jpg", "file_size": 23774, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#彩兰克42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43367126c8da45448ca7c75d1f923d4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43367126c8da45448ca7c75d1f923d4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43367126c8da45448ca7c75d1f923d4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43367126c8da45448ca7c75d1f923d4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43367126c8da45448ca7c75d1f923d4b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2jFnc9RRa-A4Gc7xD2ofdIRUBU0=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.5135+00 2025-12-09 10:16:06.513508+00 21944 0044-3FWE#VS-D3 SPMX-20240815317194 \N \N \N 1 \N [{"file_id": "44ba2583-fa9f-4901-a1c2-46c38d30b936", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eef9293cfa4c4e588296e81ca55f362b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eef9293cfa4c4e588296e81ca55f362b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eef9293cfa4c4e588296e81ca55f362b.jpg", "file_size": 12407, "is_delete": false, "file_type": 1, "original_file_name": "0044-3FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9293cfa4c4e588296e81ca55f362b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9293cfa4c4e588296e81ca55f362b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eef9293cfa4c4e588296e81ca55f362b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eef9293cfa4c4e588296e81ca55f362b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eef9293cfa4c4e588296e81ca55f362b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dYyw-aKDqidzmnY4ZJY_RSJyFVM=", "createTime": "2024-08-15 15:11:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.517053+00 2025-12-09 10:16:06.51706+00 21945 DN-D3043#XL SPMX-20240815317206 \N \N \N 1 \N [{"file_id": "eacc44f1-364a-4006-b1d8-1d347f359fb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb80f5c9009f407495f4a44aba757e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb80f5c9009f407495f4a44aba757e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb80f5c9009f407495f4a44aba757e9f.jpg", "file_size": 43677, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb80f5c9009f407495f4a44aba757e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb80f5c9009f407495f4a44aba757e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb80f5c9009f407495f4a44aba757e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb80f5c9009f407495f4a44aba757e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb80f5c9009f407495f4a44aba757e9f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2w2fSfNsrihjCEsLspxUp66iV8=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.520545+00 2025-12-09 10:16:06.520551+00 21946 HXF035FW#粉VS-D3 SPMX-20240815317201 \N \N \N 1 \N [{"file_id": "84e7ba71-bce2-4d62-84da-c977ad945b02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5eb6a9c50ff048f6954c0b7e4297412f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5eb6a9c50ff048f6954c0b7e4297412f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5eb6a9c50ff048f6954c0b7e4297412f.jpg", "file_size": 9290, "is_delete": false, "file_type": 1, "original_file_name": "HXF035FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb6a9c50ff048f6954c0b7e4297412f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb6a9c50ff048f6954c0b7e4297412f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5eb6a9c50ff048f6954c0b7e4297412f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5eb6a9c50ff048f6954c0b7e4297412f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5eb6a9c50ff048f6954c0b7e4297412f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JFRPHgRTCCzEUbn0d0kiNscy1tc=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.524096+00 2025-12-09 10:16:06.524102+00 21947 CHiC140#4号色-22码 SPMX-20240815317207 \N \N \N 1 \N [{"file_id": "c9448a87-9096-45ea-acc3-6b0d1d47ae6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a33b7f0302b849cb8c0fee983faefb3e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a33b7f0302b849cb8c0fee983faefb3e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a33b7f0302b849cb8c0fee983faefb3e.jpg", "file_size": 49848, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33b7f0302b849cb8c0fee983faefb3e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33b7f0302b849cb8c0fee983faefb3e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a33b7f0302b849cb8c0fee983faefb3e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a33b7f0302b849cb8c0fee983faefb3e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a33b7f0302b849cb8c0fee983faefb3e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hytN0fGHB74jtV3uK5waat15OAc=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.527659+00 2025-12-09 10:16:06.527666+00 21948 LZ1432#上身3号色 SPMX-20240815317204 \N \N \N 1 \N [{"file_id": "b8b74cb0-0a42-499e-b27a-a76d6b88beff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ae1cddd526541c3ab5f2b258f517758.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ae1cddd526541c3ab5f2b258f517758.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ae1cddd526541c3ab5f2b258f517758.jpg", "file_size": 20154, "is_delete": false, "file_type": 1, "original_file_name": "LZ1432#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae1cddd526541c3ab5f2b258f517758.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae1cddd526541c3ab5f2b258f517758.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae1cddd526541c3ab5f2b258f517758.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ae1cddd526541c3ab5f2b258f517758.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ae1cddd526541c3ab5f2b258f517758.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ndduk6GIi79tCQuBhBK5zbiKCnE=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.531204+00 2025-12-09 10:16:06.53121+00 21949 JY-E0006#捆条 SPMX-20240815317203 \N \N \N 1 \N [{"file_id": "5306889a-f33f-4c1c-acb1-5838e59bdc4e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "298842df9dd042c0ae730092bea54638.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "298842df9dd042c0ae730092bea54638.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "298842df9dd042c0ae730092bea54638.jpg", "file_size": 61576, "is_delete": false, "file_type": 1, "original_file_name": "JY-E0006#捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298842df9dd042c0ae730092bea54638.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298842df9dd042c0ae730092bea54638.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/298842df9dd042c0ae730092bea54638.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/298842df9dd042c0ae730092bea54638.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/298842df9dd042c0ae730092bea54638.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KgK0lEdDn3PH_nogtYugC_cw4qA=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.534778+00 2025-12-09 10:16:06.534785+00 21950 1281FWF#M SPMX-20240815317205 \N \N \N 1 \N [{"file_id": "51d18031-4a24-4f69-8af2-76f7524fc2db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f00f96ff498842b6b55a3104367d354d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f00f96ff498842b6b55a3104367d354d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f00f96ff498842b6b55a3104367d354d.jpg", "file_size": 9398, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00f96ff498842b6b55a3104367d354d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00f96ff498842b6b55a3104367d354d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f00f96ff498842b6b55a3104367d354d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f00f96ff498842b6b55a3104367d354d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f00f96ff498842b6b55a3104367d354d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ggzeMBCVpC51PPL5ndi8GuDCoLM=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.538224+00 2025-12-09 10:16:06.538231+00 21951 243020#-03-3-2XL码 SPMX-20240815317208 \N \N \N 1 \N [{"file_id": "a08b97c3-2230-4532-bfb3-5fe68be6a7ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b20374885d3463d8dc3c3e77bdb2387.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b20374885d3463d8dc3c3e77bdb2387.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b20374885d3463d8dc3c3e77bdb2387.jpg", "file_size": 66384, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b20374885d3463d8dc3c3e77bdb2387.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b20374885d3463d8dc3c3e77bdb2387.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b20374885d3463d8dc3c3e77bdb2387.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b20374885d3463d8dc3c3e77bdb2387.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b20374885d3463d8dc3c3e77bdb2387.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Nob-bLyb7xhOohbqkxmvUw6F4ko=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.541929+00 2025-12-09 10:16:06.541937+00 21952 88380FWF#彩兰克44码 SPMX-20240815317209 \N \N \N 1 \N [{"file_id": "14702c58-c6ac-4f8d-860c-6bc966e38b47", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd8885b756e64364950b9fa4fe693689.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd8885b756e64364950b9fa4fe693689.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd8885b756e64364950b9fa4fe693689.jpg", "file_size": 24673, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#彩兰克44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8885b756e64364950b9fa4fe693689.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8885b756e64364950b9fa4fe693689.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8885b756e64364950b9fa4fe693689.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd8885b756e64364950b9fa4fe693689.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd8885b756e64364950b9fa4fe693689.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zXPKOYzCMnZkS0uGxnG00fFNiWU=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.545478+00 2025-12-09 10:16:06.545485+00 21953 LJW002#D粉底 SPMX-20240815317210 \N \N \N 1 \N [{"file_id": "29e28538-7395-41d2-a1aa-36a6c8f4e568", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37f99a7076ca4a39800a2fab29c671c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37f99a7076ca4a39800a2fab29c671c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37f99a7076ca4a39800a2fab29c671c0.jpg", "file_size": 11759, "is_delete": false, "file_type": 1, "original_file_name": "LJW002#D粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f99a7076ca4a39800a2fab29c671c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f99a7076ca4a39800a2fab29c671c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37f99a7076ca4a39800a2fab29c671c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37f99a7076ca4a39800a2fab29c671c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37f99a7076ca4a39800a2fab29c671c0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wyaTnJHEMcaGCMdETWEuXO5RXdA=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.549078+00 2025-12-09 10:16:06.549085+00 21954 0044-3FWF#V5曲线 SPMX-20240815317200 \N \N \N 1 \N [{"file_id": "5264b38e-d749-455d-8548-44b7822f0328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce1d89ae4e3a4340bd79d4e8e3b65165.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce1d89ae4e3a4340bd79d4e8e3b65165.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce1d89ae4e3a4340bd79d4e8e3b65165.jpg", "file_size": 18513, "is_delete": false, "file_type": 1, "original_file_name": "0044-3FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d89ae4e3a4340bd79d4e8e3b65165.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d89ae4e3a4340bd79d4e8e3b65165.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce1d89ae4e3a4340bd79d4e8e3b65165.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce1d89ae4e3a4340bd79d4e8e3b65165.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce1d89ae4e3a4340bd79d4e8e3b65165.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KTJ8kye8NxsOo76U4wgvbPJ5hso=", "createTime": "2024-08-15 15:11:04"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.552898+00 2025-12-09 10:16:06.552904+00 21955 FX021#z SPMX-20240815317202 \N \N \N 1 \N [{"file_id": "4b007182-fdf5-479a-8d9e-e2768f99acf7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2247f8b4787f465e9368f0053215debd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2247f8b4787f465e9368f0053215debd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2247f8b4787f465e9368f0053215debd.jpg", "file_size": 23199, "is_delete": false, "file_type": 1, "original_file_name": "FX021#z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2247f8b4787f465e9368f0053215debd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2247f8b4787f465e9368f0053215debd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2247f8b4787f465e9368f0053215debd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2247f8b4787f465e9368f0053215debd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2247f8b4787f465e9368f0053215debd.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zVR0_awfQTijbb5K_Y26ok7q8sU=", "createTime": "2024-08-15 15:11:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.556754+00 2025-12-09 10:16:06.556761+00 21956 FX021#灰色 SPMX-20240815317211 \N \N \N 1 \N [{"file_id": "705ddffe-31ab-4da7-ab8b-8d4604109937", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4996e43363b46ffb83b29fe5ad4a1e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4996e43363b46ffb83b29fe5ad4a1e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4996e43363b46ffb83b29fe5ad4a1e3.jpg", "file_size": 20707, "is_delete": false, "file_type": 1, "original_file_name": "FX021#灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4996e43363b46ffb83b29fe5ad4a1e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4996e43363b46ffb83b29fe5ad4a1e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4996e43363b46ffb83b29fe5ad4a1e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4996e43363b46ffb83b29fe5ad4a1e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4996e43363b46ffb83b29fe5ad4a1e3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PB6eFlu9Tj9uDeAh7liaN9LcNyc=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.560414+00 2025-12-09 10:16:06.560421+00 21957 LZ1432#上身4号色 SPMX-20240815317219 \N \N \N 1 \N [{"file_id": "ade61f17-a95d-4606-8381-d49c8b2bd5e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc976b79ca254055b7417868b467a279.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc976b79ca254055b7417868b467a279.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc976b79ca254055b7417868b467a279.jpg", "file_size": 20228, "is_delete": false, "file_type": 1, "original_file_name": "LZ1432#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc976b79ca254055b7417868b467a279.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc976b79ca254055b7417868b467a279.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc976b79ca254055b7417868b467a279.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc976b79ca254055b7417868b467a279.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc976b79ca254055b7417868b467a279.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WaWuIZX1DwKmEzQLVOpd7ElaYI0=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.564091+00 2025-12-09 10:16:06.564097+00 21958 HXF036FW#VS-D3 SPMX-20240815317212 \N \N \N 1 \N [{"file_id": "b1f32cbc-fc46-49d2-8215-c897b36b0e59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6be5cf9352e64e6799b56d041d56b92f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6be5cf9352e64e6799b56d041d56b92f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6be5cf9352e64e6799b56d041d56b92f.jpg", "file_size": 13377, "is_delete": false, "file_type": 1, "original_file_name": "HXF036FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5cf9352e64e6799b56d041d56b92f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5cf9352e64e6799b56d041d56b92f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6be5cf9352e64e6799b56d041d56b92f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6be5cf9352e64e6799b56d041d56b92f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6be5cf9352e64e6799b56d041d56b92f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MaTB_nQGGJ3mQ7-TcAHDlsid0sg=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.567869+00 2025-12-09 10:16:06.567877+00 21959 243020#-03-3-3XL码 SPMX-20240815317221 \N \N \N 1 \N [{"file_id": "d54a3871-07e4-4244-9606-a63e8aeb34f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "feb7d4c1d03e4a8898048d42c435dc1a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "feb7d4c1d03e4a8898048d42c435dc1a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "feb7d4c1d03e4a8898048d42c435dc1a.jpg", "file_size": 65487, "is_delete": false, "file_type": 1, "original_file_name": "243020#-03-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7d4c1d03e4a8898048d42c435dc1a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7d4c1d03e4a8898048d42c435dc1a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/feb7d4c1d03e4a8898048d42c435dc1a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/feb7d4c1d03e4a8898048d42c435dc1a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/feb7d4c1d03e4a8898048d42c435dc1a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GiwM8EMuxYB5_P4LyK1ac8TFYsg=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.571399+00 2025-12-09 10:16:06.571406+00 21960 CHiC140#4号色-23码 SPMX-20240815317220 \N \N \N 1 \N [{"file_id": "ec232a85-23c5-4087-a59c-39e215992d86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edb00183aa8f4bd0ba34a046ab5a2a85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edb00183aa8f4bd0ba34a046ab5a2a85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edb00183aa8f4bd0ba34a046ab5a2a85.jpg", "file_size": 48427, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb00183aa8f4bd0ba34a046ab5a2a85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb00183aa8f4bd0ba34a046ab5a2a85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edb00183aa8f4bd0ba34a046ab5a2a85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edb00183aa8f4bd0ba34a046ab5a2a85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edb00183aa8f4bd0ba34a046ab5a2a85.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QytBlvLTRDYDCPWS1ZfFTUFfUvY=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.574912+00 2025-12-09 10:16:06.574919+00 21961 LJW002#D蓝底 SPMX-20240815317217 \N \N \N 1 \N [{"file_id": "4facd43d-dda4-4dfd-a4f0-daefa27fc0d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e6de78b008144a29382a929983da23f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e6de78b008144a29382a929983da23f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e6de78b008144a29382a929983da23f.jpg", "file_size": 11138, "is_delete": false, "file_type": 1, "original_file_name": "LJW002#D蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6de78b008144a29382a929983da23f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6de78b008144a29382a929983da23f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6de78b008144a29382a929983da23f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e6de78b008144a29382a929983da23f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e6de78b008144a29382a929983da23f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AGZ7NDKihaZS3MesSPAjeIvU88w=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.578454+00 2025-12-09 10:16:06.578461+00 21962 1281FWF#S SPMX-20240815317213 \N \N \N 1 \N [{"file_id": "f1531707-2e81-485a-9b50-07f6362dfd29", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6615873e002440eab706315cd55f494d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6615873e002440eab706315cd55f494d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6615873e002440eab706315cd55f494d.jpg", "file_size": 9275, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615873e002440eab706315cd55f494d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615873e002440eab706315cd55f494d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6615873e002440eab706315cd55f494d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6615873e002440eab706315cd55f494d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6615873e002440eab706315cd55f494d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbUxi6pFln94lqbOOp3PxMcfO_I=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.581916+00 2025-12-09 10:16:06.581923+00 21963 JY-ED0891#蓝黑2XL SPMX-20240815317214 \N \N \N 1 \N [{"file_id": "9b138e5f-bbbf-4056-94fa-cb039fe2857b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b191bf49b5ef478aa8134903f5539bdb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b191bf49b5ef478aa8134903f5539bdb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b191bf49b5ef478aa8134903f5539bdb.jpg", "file_size": 55259, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b191bf49b5ef478aa8134903f5539bdb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b191bf49b5ef478aa8134903f5539bdb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b191bf49b5ef478aa8134903f5539bdb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b191bf49b5ef478aa8134903f5539bdb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b191bf49b5ef478aa8134903f5539bdb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7sADgkKtPtd6VS56icLo40OvqAg=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.585437+00 2025-12-09 10:16:06.585443+00 21964 DN-D3043#领子+门筒 SPMX-20240815317215 \N \N \N 1 \N [{"file_id": "540cd5c7-55e2-4c44-9b7e-56c3a15c180f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee03867f61c947e3aba837f33344877f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee03867f61c947e3aba837f33344877f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee03867f61c947e3aba837f33344877f.jpg", "file_size": 15824, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#领子+门筒.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee03867f61c947e3aba837f33344877f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee03867f61c947e3aba837f33344877f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee03867f61c947e3aba837f33344877f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee03867f61c947e3aba837f33344877f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee03867f61c947e3aba837f33344877f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b6jnEruCbEYxaJLJv-7FjHWd8jU=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.588959+00 2025-12-09 10:16:06.588966+00 21965 0044-4FWE#VS-D3 SPMX-20240815317216 \N \N \N 1 \N [{"file_id": "374e27aa-7d42-4be7-956f-0d00f4241e97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6f5e4af25c848c1a02418dee48fc989.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6f5e4af25c848c1a02418dee48fc989.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6f5e4af25c848c1a02418dee48fc989.jpg", "file_size": 17676, "is_delete": false, "file_type": 1, "original_file_name": "0044-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f5e4af25c848c1a02418dee48fc989.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f5e4af25c848c1a02418dee48fc989.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6f5e4af25c848c1a02418dee48fc989.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6f5e4af25c848c1a02418dee48fc989.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6f5e4af25c848c1a02418dee48fc989.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2SRdRB36zwM50g9X55NY33uJSy8=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.59248+00 2025-12-09 10:16:06.592486+00 21966 88380FWF#彩兰克46码 SPMX-20240815317218 \N \N \N 1 \N [{"file_id": "3bdafd1c-a415-4491-8d15-cbc78d6765cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69a7610820824e1c92a8e1d17dc5457d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69a7610820824e1c92a8e1d17dc5457d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69a7610820824e1c92a8e1d17dc5457d.jpg", "file_size": 24810, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#彩兰克46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a7610820824e1c92a8e1d17dc5457d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a7610820824e1c92a8e1d17dc5457d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69a7610820824e1c92a8e1d17dc5457d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69a7610820824e1c92a8e1d17dc5457d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69a7610820824e1c92a8e1d17dc5457d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:38P9kFu8-2kIUhy-OoOfz44xDV4=", "createTime": "2024-08-15 15:11:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.595937+00 2025-12-09 10:16:06.595949+00 21967 JY-ED0891#蓝黑2XL码 SPMX-20240815317231 \N \N \N 1 \N [{"file_id": "37b48420-63f7-4093-b0d1-7e19b9450ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "909e400135b6462cacd8cc91116ee757.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "909e400135b6462cacd8cc91116ee757.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "909e400135b6462cacd8cc91116ee757.jpg", "file_size": 68552, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909e400135b6462cacd8cc91116ee757.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909e400135b6462cacd8cc91116ee757.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/909e400135b6462cacd8cc91116ee757.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/909e400135b6462cacd8cc91116ee757.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/909e400135b6462cacd8cc91116ee757.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LGy1IURx90e4vtL9NgrqnxDMVMw=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.599418+00 2025-12-09 10:16:06.599424+00 21968 0044-4FWF#V5曲线 SPMX-20240815317227 \N \N \N 1 \N [{"file_id": "7ec2b254-b634-493c-9df2-e18dbb95773b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e47bda31c37d4b8fbdc441811bf9b76a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e47bda31c37d4b8fbdc441811bf9b76a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e47bda31c37d4b8fbdc441811bf9b76a.jpg", "file_size": 21502, "is_delete": false, "file_type": 1, "original_file_name": "0044-4FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47bda31c37d4b8fbdc441811bf9b76a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47bda31c37d4b8fbdc441811bf9b76a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e47bda31c37d4b8fbdc441811bf9b76a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e47bda31c37d4b8fbdc441811bf9b76a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e47bda31c37d4b8fbdc441811bf9b76a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:r02DAeH90qS7zLP781vFqf22aKU=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.603035+00 2025-12-09 10:16:06.603041+00 21969 HXF037FW#VS-D3 SPMX-20240815317223 \N \N \N 1 \N [{"file_id": "fd2a1571-9b7b-4d9c-b4c3-ebe6c51c4d04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e97295a6d2f41e586b6e145869ddc00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e97295a6d2f41e586b6e145869ddc00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e97295a6d2f41e586b6e145869ddc00.jpg", "file_size": 12191, "is_delete": false, "file_type": 1, "original_file_name": "HXF037FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e97295a6d2f41e586b6e145869ddc00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e97295a6d2f41e586b6e145869ddc00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e97295a6d2f41e586b6e145869ddc00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e97295a6d2f41e586b6e145869ddc00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e97295a6d2f41e586b6e145869ddc00.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ut4It4u17W65tM34VMCP_Mi2xPU=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.606605+00 2025-12-09 10:16:06.606612+00 21970 88380FWF#彩兰克48码 SPMX-20240815317229 \N \N \N 1 \N [{"file_id": "e850315c-18fd-4a58-9be4-f0b3ec6acd33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "195ddef2d57442a3a234f0eb62a0ad89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "195ddef2d57442a3a234f0eb62a0ad89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "195ddef2d57442a3a234f0eb62a0ad89.jpg", "file_size": 24947, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#彩兰克48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195ddef2d57442a3a234f0eb62a0ad89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195ddef2d57442a3a234f0eb62a0ad89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/195ddef2d57442a3a234f0eb62a0ad89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/195ddef2d57442a3a234f0eb62a0ad89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/195ddef2d57442a3a234f0eb62a0ad89.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PyWxlFCFcofUX8aCYOaKHK1IfGA=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.610247+00 2025-12-09 10:16:06.610253+00 21971 LJW002#D黄底 SPMX-20240815317225 \N \N \N 1 \N [{"file_id": "7c093033-f585-4d67-969e-bc1c5acb5c09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d36dd5086464824a08ffb375d3168ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d36dd5086464824a08ffb375d3168ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d36dd5086464824a08ffb375d3168ff.jpg", "file_size": 11451, "is_delete": false, "file_type": 1, "original_file_name": "LJW002#D黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d36dd5086464824a08ffb375d3168ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d36dd5086464824a08ffb375d3168ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d36dd5086464824a08ffb375d3168ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d36dd5086464824a08ffb375d3168ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d36dd5086464824a08ffb375d3168ff.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Zi-gw53hy4ipivyCUMf9GTh45BU=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.613731+00 2025-12-09 10:16:06.613737+00 21972 243020#-04-1-2XL码 SPMX-20240815317232 \N \N \N 1 \N [{"file_id": "19cef8ba-0932-4f9e-b769-604e1176fb20", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe8e836808804a848e23ca3beed8c68e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe8e836808804a848e23ca3beed8c68e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe8e836808804a848e23ca3beed8c68e.jpg", "file_size": 57383, "is_delete": false, "file_type": 1, "original_file_name": "243020#-04-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8e836808804a848e23ca3beed8c68e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8e836808804a848e23ca3beed8c68e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe8e836808804a848e23ca3beed8c68e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe8e836808804a848e23ca3beed8c68e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe8e836808804a848e23ca3beed8c68e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kqucRyp_WlXN5AXzx8DMA3KnY94=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.617216+00 2025-12-09 10:16:06.617223+00 21973 CHiC140#4号色-24码 SPMX-20240815317230 \N \N \N 1 \N [{"file_id": "772ebd50-0d34-4d9a-a5a6-d522293c5184", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baffc798caa34927bd63f62406f5e259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baffc798caa34927bd63f62406f5e259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baffc798caa34927bd63f62406f5e259.jpg", "file_size": 46420, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baffc798caa34927bd63f62406f5e259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baffc798caa34927bd63f62406f5e259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baffc798caa34927bd63f62406f5e259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baffc798caa34927bd63f62406f5e259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baffc798caa34927bd63f62406f5e259.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_uuUAhsmw5Me9pwjSRuMTKY6aRI=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.620768+00 2025-12-09 10:16:06.620776+00 21974 1281FWF#XL SPMX-20240815317222 \N \N \N 1 \N [{"file_id": "81e22ddc-a8d2-478a-a1b2-1e3b7b6ae09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11b8c2afb778446cb591199dfac433f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11b8c2afb778446cb591199dfac433f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11b8c2afb778446cb591199dfac433f6.jpg", "file_size": 9509, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b8c2afb778446cb591199dfac433f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b8c2afb778446cb591199dfac433f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11b8c2afb778446cb591199dfac433f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11b8c2afb778446cb591199dfac433f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11b8c2afb778446cb591199dfac433f6.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H_yEchv2iZ1V0BrhklvnPAx9K4Y=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.624294+00 2025-12-09 10:16:06.624299+00 21975 DN-D3043#领子+门筒批布 SPMX-20240815317224 \N \N \N 1 \N [{"file_id": "d2d8ca0e-b404-48aa-a9ba-f9f131c8a7bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ca104087eab34ec2a74e5ba841b78db0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ca104087eab34ec2a74e5ba841b78db0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ca104087eab34ec2a74e5ba841b78db0.jpg", "file_size": 15824, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3043#领子+门筒批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca104087eab34ec2a74e5ba841b78db0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca104087eab34ec2a74e5ba841b78db0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ca104087eab34ec2a74e5ba841b78db0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ca104087eab34ec2a74e5ba841b78db0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ca104087eab34ec2a74e5ba841b78db0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GVrLhsK3KJE4Flhhc_XMoC78djM=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.627814+00 2025-12-09 10:16:06.627821+00 21976 FX021#紫色 SPMX-20240815317226 \N \N \N 1 \N [{"file_id": "c0e9569a-d064-4de3-9126-6329942c4e59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2aae6b224044fae9c769e6d9bd16013.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2aae6b224044fae9c769e6d9bd16013.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2aae6b224044fae9c769e6d9bd16013.jpg", "file_size": 19874, "is_delete": false, "file_type": 1, "original_file_name": "FX021#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2aae6b224044fae9c769e6d9bd16013.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2aae6b224044fae9c769e6d9bd16013.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2aae6b224044fae9c769e6d9bd16013.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2aae6b224044fae9c769e6d9bd16013.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2aae6b224044fae9c769e6d9bd16013.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0CIswB_dNvAe_q3vLsc0kPrBODY=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.631276+00 2025-12-09 10:16:06.631284+00 21977 LZ1432#上身5号色 SPMX-20240815317228 \N \N \N 1 \N [{"file_id": "fe6b784b-5e28-498e-8d7f-fd155b344d98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b74783b0a5a14f848563a119b43b284c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b74783b0a5a14f848563a119b43b284c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b74783b0a5a14f848563a119b43b284c.jpg", "file_size": 19810, "is_delete": false, "file_type": 1, "original_file_name": "LZ1432#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74783b0a5a14f848563a119b43b284c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74783b0a5a14f848563a119b43b284c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b74783b0a5a14f848563a119b43b284c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b74783b0a5a14f848563a119b43b284c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b74783b0a5a14f848563a119b43b284c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJiFkHReHqWK7FOtmSHypy3uUKU=", "createTime": "2024-08-15 15:11:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.634722+00 2025-12-09 10:16:06.63473+00 21978 HXF039FW#VS-D3 SPMX-20240815317233 \N \N \N 1 \N [{"file_id": "8f72369d-ecc5-4e8b-996f-38de83426ad0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3953b1217ed54aeaa75fa6ecd85cc6c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3953b1217ed54aeaa75fa6ecd85cc6c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3953b1217ed54aeaa75fa6ecd85cc6c8.jpg", "file_size": 15495, "is_delete": false, "file_type": 1, "original_file_name": "HXF039FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3953b1217ed54aeaa75fa6ecd85cc6c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3953b1217ed54aeaa75fa6ecd85cc6c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3953b1217ed54aeaa75fa6ecd85cc6c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3953b1217ed54aeaa75fa6ecd85cc6c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3953b1217ed54aeaa75fa6ecd85cc6c8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rRheB1-l8Pxl-_pTSqgPpY4ZPeY=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.638307+00 2025-12-09 10:16:06.638314+00 21979 1281FWF#乱花捆条 SPMX-20240815317235 \N \N \N 1 \N [{"file_id": "09720d53-b20c-4823-a78a-4d6c31584036", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1263be09e9e540d4bae1b5a253ece91e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1263be09e9e540d4bae1b5a253ece91e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1263be09e9e540d4bae1b5a253ece91e.jpg", "file_size": 8386, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#乱花捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1263be09e9e540d4bae1b5a253ece91e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1263be09e9e540d4bae1b5a253ece91e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1263be09e9e540d4bae1b5a253ece91e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1263be09e9e540d4bae1b5a253ece91e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1263be09e9e540d4bae1b5a253ece91e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NrsYMAwsCvo13nsu-upWSt11awc=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.641844+00 2025-12-09 10:16:06.641856+00 21980 243020#-04-1-3XL码 SPMX-20240815317243 \N \N \N 1 \N [{"file_id": "7f6ce62a-d992-4a28-b36f-39e0f5bba82e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26d1a296a6e54ca086b6ee81a484eb3f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26d1a296a6e54ca086b6ee81a484eb3f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26d1a296a6e54ca086b6ee81a484eb3f.jpg", "file_size": 56695, "is_delete": false, "file_type": 1, "original_file_name": "243020#-04-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1a296a6e54ca086b6ee81a484eb3f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1a296a6e54ca086b6ee81a484eb3f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26d1a296a6e54ca086b6ee81a484eb3f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26d1a296a6e54ca086b6ee81a484eb3f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26d1a296a6e54ca086b6ee81a484eb3f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tzWbrLeN1E4fwwytGhwZvps-dAQ=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.645471+00 2025-12-09 10:16:06.645477+00 21981 0044-5FWE#VS-D3 SPMX-20240815317237 \N \N \N 1 \N [{"file_id": "2558277e-6fa3-49a0-89d6-9d945985f6f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3b825c8e2664a0cbb97059a2695c311.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3b825c8e2664a0cbb97059a2695c311.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3b825c8e2664a0cbb97059a2695c311.jpg", "file_size": 24384, "is_delete": false, "file_type": 1, "original_file_name": "0044-5FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b825c8e2664a0cbb97059a2695c311.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b825c8e2664a0cbb97059a2695c311.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b825c8e2664a0cbb97059a2695c311.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3b825c8e2664a0cbb97059a2695c311.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3b825c8e2664a0cbb97059a2695c311.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kNWKC7I-jCU3aAfZR86GpIx2ZCs=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.649024+00 2025-12-09 10:16:06.64903+00 21982 JY-ED0891#蓝黑3XL码 SPMX-20240815317240 \N \N \N 1 \N [{"file_id": "35891761-46f1-4c67-a5e2-643fa4ffb8d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "414471ca966748f4981ebe76ef9edfcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "414471ca966748f4981ebe76ef9edfcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "414471ca966748f4981ebe76ef9edfcb.jpg", "file_size": 64392, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414471ca966748f4981ebe76ef9edfcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414471ca966748f4981ebe76ef9edfcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/414471ca966748f4981ebe76ef9edfcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/414471ca966748f4981ebe76ef9edfcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/414471ca966748f4981ebe76ef9edfcb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mi_yeN2mQmvYAggUJ4m-JWTy_XM=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.652538+00 2025-12-09 10:16:06.652545+00 21983 LZ1433#上身1号色 SPMX-20240815317236 \N \N \N 1 \N [{"file_id": "1c0571b5-3662-46e8-bfa6-19ecfc3d7bfc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33b9183c3acf448aae87f2fcc7ad9711.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33b9183c3acf448aae87f2fcc7ad9711.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33b9183c3acf448aae87f2fcc7ad9711.jpg", "file_size": 20303, "is_delete": false, "file_type": 1, "original_file_name": "LZ1433#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33b9183c3acf448aae87f2fcc7ad9711.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33b9183c3acf448aae87f2fcc7ad9711.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33b9183c3acf448aae87f2fcc7ad9711.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33b9183c3acf448aae87f2fcc7ad9711.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33b9183c3acf448aae87f2fcc7ad9711.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcVsfQ6z-XlUfQutMTaztl8n9Ng=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.656101+00 2025-12-09 10:16:06.656107+00 21984 88380FWF#彩兰克50码 SPMX-20240815317239 \N \N \N 1 \N [{"file_id": "24efcca9-347f-4644-bab3-807a7966830f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b886e88fdb2499f8581f53546ac519b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b886e88fdb2499f8581f53546ac519b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b886e88fdb2499f8581f53546ac519b.jpg", "file_size": 25480, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#彩兰克50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b886e88fdb2499f8581f53546ac519b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b886e88fdb2499f8581f53546ac519b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b886e88fdb2499f8581f53546ac519b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b886e88fdb2499f8581f53546ac519b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b886e88fdb2499f8581f53546ac519b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEoMN2lxQSgzd60D9Snec0PRw70=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.659551+00 2025-12-09 10:16:06.659557+00 21985 FX021#红色 SPMX-20240815317241 \N \N \N 1 \N [{"file_id": "e45ca0c4-fc54-47f5-b94a-4a90665eb51a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5c1a675f34c475db2194cefc5f527ce.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5c1a675f34c475db2194cefc5f527ce.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5c1a675f34c475db2194cefc5f527ce.jpg", "file_size": 19396, "is_delete": false, "file_type": 1, "original_file_name": "FX021#红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a675f34c475db2194cefc5f527ce.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a675f34c475db2194cefc5f527ce.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a675f34c475db2194cefc5f527ce.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a675f34c475db2194cefc5f527ce.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5c1a675f34c475db2194cefc5f527ce.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bgwWhxPPKOPC-DTbGtaWOmv6Dqo=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.663139+00 2025-12-09 10:16:06.663146+00 21986 LJW002FW#VS-D3 SPMX-20240815317234 \N \N \N 1 \N [{"file_id": "1f680038-8e6c-4067-8bbc-2d5fc43a7ab5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7f58f1bbd2e40e0948cbc0cadae141a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7f58f1bbd2e40e0948cbc0cadae141a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7f58f1bbd2e40e0948cbc0cadae141a.jpg", "file_size": 17413, "is_delete": false, "file_type": 1, "original_file_name": "LJW002FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f58f1bbd2e40e0948cbc0cadae141a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f58f1bbd2e40e0948cbc0cadae141a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7f58f1bbd2e40e0948cbc0cadae141a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7f58f1bbd2e40e0948cbc0cadae141a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7f58f1bbd2e40e0948cbc0cadae141a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gMlVEt1IdQFyt57bPYjtOHdWsaU=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.666591+00 2025-12-09 10:16:06.666597+00 21987 DN-D3073#2XL SPMX-20240815317238 \N \N \N 1 \N [{"file_id": "91c3b063-290b-40f8-bc7c-adba980d5f86", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ee029a7f24b4270a7209203a573c2e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ee029a7f24b4270a7209203a573c2e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ee029a7f24b4270a7209203a573c2e1.jpg", "file_size": 61484, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3073#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee029a7f24b4270a7209203a573c2e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee029a7f24b4270a7209203a573c2e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ee029a7f24b4270a7209203a573c2e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ee029a7f24b4270a7209203a573c2e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ee029a7f24b4270a7209203a573c2e1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UDbThxfHdgtnTDvVhmfwZgss5a8=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.670181+00 2025-12-09 10:16:06.670191+00 21988 CHiC140#4号色-25码 SPMX-20240815317242 \N \N \N 1 \N [{"file_id": "3254a6d9-4b4c-434d-9b30-b68a6644609d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67f45287fd494ab7b08261e8976c30dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67f45287fd494ab7b08261e8976c30dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67f45287fd494ab7b08261e8976c30dd.jpg", "file_size": 46528, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f45287fd494ab7b08261e8976c30dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f45287fd494ab7b08261e8976c30dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67f45287fd494ab7b08261e8976c30dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67f45287fd494ab7b08261e8976c30dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67f45287fd494ab7b08261e8976c30dd.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n0V3znWf16AoNa_qQ3n1i_XVTXo=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.673897+00 2025-12-09 10:16:06.673903+00 21989 LJW002FWE#VS-D3 SPMX-20240815317244 \N \N \N 1 \N [{"file_id": "5685aebe-2afb-44ff-a0c3-a049905d47de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bce7da1e17f04fdcac9636aed3eebfdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bce7da1e17f04fdcac9636aed3eebfdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bce7da1e17f04fdcac9636aed3eebfdd.jpg", "file_size": 17949, "is_delete": false, "file_type": 1, "original_file_name": "LJW002FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce7da1e17f04fdcac9636aed3eebfdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce7da1e17f04fdcac9636aed3eebfdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bce7da1e17f04fdcac9636aed3eebfdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bce7da1e17f04fdcac9636aed3eebfdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bce7da1e17f04fdcac9636aed3eebfdd.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:moWmBq7_vZWcrToKDFk0CNdjFaE=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.677456+00 2025-12-09 10:16:06.677462+00 21990 0044-6FWE#VS-D3 SPMX-20240815317257 \N \N \N 1 \N [{"file_id": "79dc910c-7572-4787-890d-5539356d0192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "684e24a47b4c4c75ba2e6712686edc6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "684e24a47b4c4c75ba2e6712686edc6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "684e24a47b4c4c75ba2e6712686edc6c.jpg", "file_size": 23570, "is_delete": false, "file_type": 1, "original_file_name": "0044-6FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684e24a47b4c4c75ba2e6712686edc6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684e24a47b4c4c75ba2e6712686edc6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/684e24a47b4c4c75ba2e6712686edc6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/684e24a47b4c4c75ba2e6712686edc6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/684e24a47b4c4c75ba2e6712686edc6c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IKstTC8FNnCx1_AfdqjJVpl5BZU=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.681004+00 2025-12-09 10:16:06.68101+00 21991 LZ1433#上身3号色 SPMX-20240815317259 \N \N \N 1 \N [{"file_id": "290d45d7-8059-4f07-bbef-9f4e1638fdeb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a38404b336446f4b1e2905e73cfd7f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a38404b336446f4b1e2905e73cfd7f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a38404b336446f4b1e2905e73cfd7f0.jpg", "file_size": 21090, "is_delete": false, "file_type": 1, "original_file_name": "LZ1433#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a38404b336446f4b1e2905e73cfd7f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a38404b336446f4b1e2905e73cfd7f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a38404b336446f4b1e2905e73cfd7f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a38404b336446f4b1e2905e73cfd7f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a38404b336446f4b1e2905e73cfd7f0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tvb_ECgimIN4A3WooaXvZ4M7KLM=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.684517+00 2025-12-09 10:16:06.684524+00 21992 HXF040FW#VS-D3 SPMX-20240815317245 \N \N \N 1 \N [{"file_id": "5fefe491-0357-46f2-a2f6-f87e1a312a41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8c1ec0d9ec1b48928938b4e37eaae578.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8c1ec0d9ec1b48928938b4e37eaae578.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8c1ec0d9ec1b48928938b4e37eaae578.jpg", "file_size": 13964, "is_delete": false, "file_type": 1, "original_file_name": "HXF040FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1ec0d9ec1b48928938b4e37eaae578.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1ec0d9ec1b48928938b4e37eaae578.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8c1ec0d9ec1b48928938b4e37eaae578.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8c1ec0d9ec1b48928938b4e37eaae578.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8c1ec0d9ec1b48928938b4e37eaae578.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lalkS7h2G4hshirbdXXpmp33M-A=", "createTime": "2024-08-15 15:11:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.688118+00 2025-12-09 10:16:06.688125+00 21993 CHiC140#4号色净色 SPMX-20240815317251 \N \N \N 1 \N [{"file_id": "551ca36f-66b8-455f-a653-0336093777e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "836af72b2d6642b0aaaf0d97d36aaa12.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "836af72b2d6642b0aaaf0d97d36aaa12.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "836af72b2d6642b0aaaf0d97d36aaa12.jpg", "file_size": 12917, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#4号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836af72b2d6642b0aaaf0d97d36aaa12.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836af72b2d6642b0aaaf0d97d36aaa12.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/836af72b2d6642b0aaaf0d97d36aaa12.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/836af72b2d6642b0aaaf0d97d36aaa12.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/836af72b2d6642b0aaaf0d97d36aaa12.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rJw2sb3ikcQYPSiFNNhY6f3RHBQ=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.691663+00 2025-12-09 10:16:06.691669+00 21994 LJW002FWE#黑VS-D3 SPMX-20240815317254 \N \N \N 1 \N [{"file_id": "39bb5b00-a53d-4697-adb3-54efad06a890", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ebd9136e3414d11b46f505b74f45ee0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ebd9136e3414d11b46f505b74f45ee0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ebd9136e3414d11b46f505b74f45ee0.jpg", "file_size": 18002, "is_delete": false, "file_type": 1, "original_file_name": "LJW002FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebd9136e3414d11b46f505b74f45ee0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebd9136e3414d11b46f505b74f45ee0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ebd9136e3414d11b46f505b74f45ee0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ebd9136e3414d11b46f505b74f45ee0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ebd9136e3414d11b46f505b74f45ee0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ULElwiWdBGyJdoETojk7gtq1if0=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.69521+00 2025-12-09 10:16:06.695216+00 21995 HXF040FW SPMX-20240815317255 \N \N \N 1 \N [{"file_id": "3ebd2483-39c3-4bd0-a982-6349b00ec249", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e9cd73e90a0424dac94aca8c09d7bb9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e9cd73e90a0424dac94aca8c09d7bb9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e9cd73e90a0424dac94aca8c09d7bb9.jpg", "file_size": 13964, "is_delete": false, "file_type": 1, "original_file_name": "HXF040FW.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9cd73e90a0424dac94aca8c09d7bb9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9cd73e90a0424dac94aca8c09d7bb9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e9cd73e90a0424dac94aca8c09d7bb9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e9cd73e90a0424dac94aca8c09d7bb9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e9cd73e90a0424dac94aca8c09d7bb9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t80IFmydetm6UTece1Qdq5chPjQ=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.712784+00 2025-12-09 10:16:06.71279+00 22000 0044-5FWF#V5曲线 SPMX-20240815317247 \N \N \N 1 \N [{"file_id": "620fd1a1-b65a-4a8d-9819-26bf863dcea4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd4222e9acc45f581dbe371b14f1553.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd4222e9acc45f581dbe371b14f1553.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd4222e9acc45f581dbe371b14f1553.jpg", "file_size": 17343, "is_delete": false, "file_type": 1, "original_file_name": "0044-5FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd4222e9acc45f581dbe371b14f1553.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd4222e9acc45f581dbe371b14f1553.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd4222e9acc45f581dbe371b14f1553.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd4222e9acc45f581dbe371b14f1553.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd4222e9acc45f581dbe371b14f1553.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FR2s0bZFNOhQNLWSgA77OKDH7A8=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.698653+00 2025-12-09 10:16:06.698659+00 21996 243075#-01-1-2XL码 SPMX-20240815317256 \N \N \N 1 \N [{"file_id": "4152b17b-027c-43c8-ae2e-08e417385973", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd6498e3556f4130bbe52f883df733ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd6498e3556f4130bbe52f883df733ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd6498e3556f4130bbe52f883df733ef.jpg", "file_size": 76785, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6498e3556f4130bbe52f883df733ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6498e3556f4130bbe52f883df733ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd6498e3556f4130bbe52f883df733ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd6498e3556f4130bbe52f883df733ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd6498e3556f4130bbe52f883df733ef.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K6Kn1rB8W2FQF9k44_85uIkYb3o=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.702222+00 2025-12-09 10:16:06.70223+00 21997 1281FWF#巧克力 SPMX-20240815317246 \N \N \N 1 \N [{"file_id": "d4c3b2dc-b820-4be0-acd2-0068f930d87d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0de342d17f041b5b0f539efb3997d83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0de342d17f041b5b0f539efb3997d83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0de342d17f041b5b0f539efb3997d83.jpg", "file_size": 11748, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#巧克力.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0de342d17f041b5b0f539efb3997d83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0de342d17f041b5b0f539efb3997d83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0de342d17f041b5b0f539efb3997d83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0de342d17f041b5b0f539efb3997d83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0de342d17f041b5b0f539efb3997d83.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h3RX8-VxCsAW5riUdROLqlOtMXk=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.705695+00 2025-12-09 10:16:06.705702+00 21998 LZ1433#上身2号色 SPMX-20240815317248 \N \N \N 1 \N [{"file_id": "9032a690-a505-415a-80a7-bc8ee6234649", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30febf38a8e9460d8cc076357dbe70a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30febf38a8e9460d8cc076357dbe70a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30febf38a8e9460d8cc076357dbe70a7.jpg", "file_size": 20798, "is_delete": false, "file_type": 1, "original_file_name": "LZ1433#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30febf38a8e9460d8cc076357dbe70a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30febf38a8e9460d8cc076357dbe70a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30febf38a8e9460d8cc076357dbe70a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30febf38a8e9460d8cc076357dbe70a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30febf38a8e9460d8cc076357dbe70a7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdCMaf26L4KV1rJAzS87IIcN3wo=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.709227+00 2025-12-09 10:16:06.709234+00 21999 JY-ED0891#蓝黑L码 SPMX-20240815317252 \N \N \N 1 \N [{"file_id": "938b338e-3969-4f2f-8021-cbef052fe7f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d538e61f888406e8213da3c36ad4bb7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d538e61f888406e8213da3c36ad4bb7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d538e61f888406e8213da3c36ad4bb7.jpg", "file_size": 68173, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑L码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d538e61f888406e8213da3c36ad4bb7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d538e61f888406e8213da3c36ad4bb7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d538e61f888406e8213da3c36ad4bb7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d538e61f888406e8213da3c36ad4bb7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d538e61f888406e8213da3c36ad4bb7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XLZiNt6RN33NnBNEdp_WVcsJL_Q=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.716268+00 2025-12-09 10:16:06.716274+00 22001 88380FWF#水绿42码 SPMX-20240815317250 \N \N \N 1 \N [{"file_id": "bcc337cd-d0af-4550-92ae-2ec7da0477fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "40673b9e32114284b8137bca1c55477f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "40673b9e32114284b8137bca1c55477f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "40673b9e32114284b8137bca1c55477f.jpg", "file_size": 23409, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#水绿42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40673b9e32114284b8137bca1c55477f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40673b9e32114284b8137bca1c55477f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/40673b9e32114284b8137bca1c55477f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/40673b9e32114284b8137bca1c55477f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/40673b9e32114284b8137bca1c55477f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ips7qr0g3K9wOxW1XYuLF620BI4=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.719763+00 2025-12-09 10:16:06.719769+00 22002 FX021#裙子VS-D3 SPMX-20240815317253 \N \N \N 1 \N [{"file_id": "87d811c2-80c6-45c4-94cf-34502312791d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "049bade8baf2426c8d23aa1402e3f34a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "049bade8baf2426c8d23aa1402e3f34a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "049bade8baf2426c8d23aa1402e3f34a.jpg", "file_size": 18401, "is_delete": false, "file_type": 1, "original_file_name": "FX021#裙子VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049bade8baf2426c8d23aa1402e3f34a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049bade8baf2426c8d23aa1402e3f34a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/049bade8baf2426c8d23aa1402e3f34a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/049bade8baf2426c8d23aa1402e3f34a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/049bade8baf2426c8d23aa1402e3f34a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7xhxMUP1IkgboJPqT6B12VSQJo=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.723276+00 2025-12-09 10:16:06.723282+00 22003 1281FWF#巧克力番禺调色 SPMX-20240815317258 \N \N \N 1 \N [{"file_id": "15542410-64e5-4ebb-a8e4-78463334221f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f2fd563fa384e58be0b4d0b7affa442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f2fd563fa384e58be0b4d0b7affa442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f2fd563fa384e58be0b4d0b7affa442.jpg", "file_size": 12609, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#巧克力番禺调色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2fd563fa384e58be0b4d0b7affa442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2fd563fa384e58be0b4d0b7affa442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f2fd563fa384e58be0b4d0b7affa442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f2fd563fa384e58be0b4d0b7affa442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f2fd563fa384e58be0b4d0b7affa442.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LdPBnfETMcuph7dPuPKO_Ewwey0=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.726722+00 2025-12-09 10:16:06.726729+00 22004 DN-D3073#3XL SPMX-20240815317249 \N \N \N 1 \N [{"file_id": "f34ede03-8680-443f-bf45-caef10ee9624", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5261124f55944acf84f3b4f2217571f1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5261124f55944acf84f3b4f2217571f1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5261124f55944acf84f3b4f2217571f1.jpg", "file_size": 61659, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3073#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261124f55944acf84f3b4f2217571f1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261124f55944acf84f3b4f2217571f1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5261124f55944acf84f3b4f2217571f1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5261124f55944acf84f3b4f2217571f1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5261124f55944acf84f3b4f2217571f1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gQTZSjHDKC5a9mOE1KoW4t-3qjY=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.730288+00 2025-12-09 10:16:06.730295+00 22005 LJW003# SPMX-20240815317265 \N \N \N 1 \N [{"file_id": "0efaaeea-4b73-46da-af9f-3b054c582592", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "faa497fdfabb4912a0d3764981a956c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "faa497fdfabb4912a0d3764981a956c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "faa497fdfabb4912a0d3764981a956c0.jpg", "file_size": 16389, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa497fdfabb4912a0d3764981a956c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa497fdfabb4912a0d3764981a956c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/faa497fdfabb4912a0d3764981a956c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/faa497fdfabb4912a0d3764981a956c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/faa497fdfabb4912a0d3764981a956c0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:esNvvNQWUWL9vr1QyxoJflUuyUY=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.733807+00 2025-12-09 10:16:06.733814+00 22006 DN-D3073#L SPMX-20240815317261 \N \N \N 1 \N [{"file_id": "0370efe8-c975-4f4f-bb87-cbba86e5f3db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "631a75fe8f9944a981266db37ac203d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "631a75fe8f9944a981266db37ac203d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "631a75fe8f9944a981266db37ac203d3.jpg", "file_size": 63750, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3073#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631a75fe8f9944a981266db37ac203d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631a75fe8f9944a981266db37ac203d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631a75fe8f9944a981266db37ac203d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/631a75fe8f9944a981266db37ac203d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/631a75fe8f9944a981266db37ac203d3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Y6IgRa-WgXc4Ixeg6iT60zvsA4=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.737322+00 2025-12-09 10:16:06.737328+00 22007 JY-ED0891#蓝黑M码 SPMX-20240815317264 \N \N \N 1 \N [{"file_id": "76fab689-2f14-460f-8c74-92a48740408f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b506273024f3492f9c5d0d567f228b5b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b506273024f3492f9c5d0d567f228b5b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b506273024f3492f9c5d0d567f228b5b.jpg", "file_size": 70900, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑M码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b506273024f3492f9c5d0d567f228b5b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b506273024f3492f9c5d0d567f228b5b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b506273024f3492f9c5d0d567f228b5b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b506273024f3492f9c5d0d567f228b5b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b506273024f3492f9c5d0d567f228b5b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NOquklIu5s43f18nRTkGu2hSz8=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.741005+00 2025-12-09 10:16:06.741013+00 22008 88380FWF#水绿44码 SPMX-20240815317260 \N \N \N 1 \N [{"file_id": "6a1f606e-9cc8-468a-ac32-14e137df4357", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "15140a939f7241ab8b30c79627df9b1f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "15140a939f7241ab8b30c79627df9b1f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "15140a939f7241ab8b30c79627df9b1f.jpg", "file_size": 24431, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#水绿44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15140a939f7241ab8b30c79627df9b1f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15140a939f7241ab8b30c79627df9b1f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/15140a939f7241ab8b30c79627df9b1f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/15140a939f7241ab8b30c79627df9b1f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/15140a939f7241ab8b30c79627df9b1f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QHAsOigvRfCNOcIfGWUZsTz90a0=", "createTime": "2024-08-15 15:11:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.759186+00 2025-12-09 10:16:06.759192+00 22013 FX021FWE#VS-D3 SPMX-20240815317271 \N \N \N 1 \N [{"file_id": "e7e07d8b-0c13-474d-ba68-8358d8b4f94a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7120881713944e0caf5196ca0a97df20.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7120881713944e0caf5196ca0a97df20.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7120881713944e0caf5196ca0a97df20.jpg", "file_size": 12314, "is_delete": false, "file_type": 1, "original_file_name": "FX021FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7120881713944e0caf5196ca0a97df20.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7120881713944e0caf5196ca0a97df20.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7120881713944e0caf5196ca0a97df20.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7120881713944e0caf5196ca0a97df20.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7120881713944e0caf5196ca0a97df20.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:15JFBvAMHCUg-FAFNJgoMLk31Jk=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.74487+00 2025-12-09 10:16:06.744876+00 22009 CHiC140#5号色-21码 SPMX-20240815317263 \N \N \N 1 \N [{"file_id": "7ab884c2-ed49-4c7a-9109-64d8e4a7e4b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a5b9e03076dc41099d7ef2e928c6db01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a5b9e03076dc41099d7ef2e928c6db01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a5b9e03076dc41099d7ef2e928c6db01.jpg", "file_size": 52987, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b9e03076dc41099d7ef2e928c6db01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b9e03076dc41099d7ef2e928c6db01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a5b9e03076dc41099d7ef2e928c6db01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a5b9e03076dc41099d7ef2e928c6db01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a5b9e03076dc41099d7ef2e928c6db01.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hw3Faei4pOERY74SRcMC8i6uyhA=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.748452+00 2025-12-09 10:16:06.748461+00 22010 FX021FW#蓝黑绿VS-D3 SPMX-20240815317262 \N \N \N 1 \N [{"file_id": "e2ddb1c3-7372-4b46-bf7a-95c96c71dee1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68d22f86d165469a992b80bd47a2f687.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68d22f86d165469a992b80bd47a2f687.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68d22f86d165469a992b80bd47a2f687.jpg", "file_size": 8177, "is_delete": false, "file_type": 1, "original_file_name": "FX021FW#蓝黑绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d22f86d165469a992b80bd47a2f687.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d22f86d165469a992b80bd47a2f687.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68d22f86d165469a992b80bd47a2f687.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68d22f86d165469a992b80bd47a2f687.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68d22f86d165469a992b80bd47a2f687.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9t8QBlVs53yW3F1loxc5zjGjFA=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.752044+00 2025-12-09 10:16:06.752051+00 22011 0044-6FWF#V5曲线 SPMX-20240815317267 \N \N \N 1 \N [{"file_id": "8c4b692d-d0db-4c87-929d-b33b3cc55eed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "965abf3eba424f12a525a01b3d4571e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "965abf3eba424f12a525a01b3d4571e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "965abf3eba424f12a525a01b3d4571e4.jpg", "file_size": 27492, "is_delete": false, "file_type": 1, "original_file_name": "0044-6FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965abf3eba424f12a525a01b3d4571e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965abf3eba424f12a525a01b3d4571e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/965abf3eba424f12a525a01b3d4571e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/965abf3eba424f12a525a01b3d4571e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/965abf3eba424f12a525a01b3d4571e4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:itV-A4tn3VGwAJotTXcM4Wq1UDw=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.755615+00 2025-12-09 10:16:06.755621+00 22012 HXF041FW#VS-D3 SPMX-20240815317266 \N \N \N 1 \N [{"file_id": "3f2777b5-6143-4c90-b99a-449b47c3d937", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4741ae51692846548d67dc9b7fc4fda9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4741ae51692846548d67dc9b7fc4fda9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4741ae51692846548d67dc9b7fc4fda9.jpg", "file_size": 10580, "is_delete": false, "file_type": 1, "original_file_name": "HXF041FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4741ae51692846548d67dc9b7fc4fda9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4741ae51692846548d67dc9b7fc4fda9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4741ae51692846548d67dc9b7fc4fda9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4741ae51692846548d67dc9b7fc4fda9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4741ae51692846548d67dc9b7fc4fda9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0upCFwAX49uUZWLq7mCMjjTpKgw=", "createTime": "2024-08-15 15:11:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.762787+00 2025-12-09 10:16:06.762796+00 22014 CHiC140#5号色-22码 SPMX-20240815317276 \N \N \N 1 \N [{"file_id": "fe306d0a-1c8c-4980-9369-7ac77bbb2e9e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a5374a100e849cda93ab59898bdbe40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a5374a100e849cda93ab59898bdbe40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a5374a100e849cda93ab59898bdbe40.jpg", "file_size": 52151, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a5374a100e849cda93ab59898bdbe40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a5374a100e849cda93ab59898bdbe40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a5374a100e849cda93ab59898bdbe40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a5374a100e849cda93ab59898bdbe40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a5374a100e849cda93ab59898bdbe40.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:92O0OEQn5jEJrO8TAGmobPbl1mI=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.766596+00 2025-12-09 10:16:06.766603+00 22015 DN-D3073#M SPMX-20240815317277 \N \N \N 1 \N [{"file_id": "a0ce50f2-8495-4218-8082-26e1fc2a26e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b2b57db432c46a392ddd4d31936d573.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b2b57db432c46a392ddd4d31936d573.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b2b57db432c46a392ddd4d31936d573.jpg", "file_size": 66956, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3073#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2b57db432c46a392ddd4d31936d573.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2b57db432c46a392ddd4d31936d573.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b2b57db432c46a392ddd4d31936d573.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b2b57db432c46a392ddd4d31936d573.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b2b57db432c46a392ddd4d31936d573.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jxdtrzSLCAa9nCHgCIip82sgk3E=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.770381+00 2025-12-09 10:16:06.770388+00 22016 JY-ED0891#蓝黑S SPMX-20240815317275 \N \N \N 1 \N [{"file_id": "ca6a448c-0c55-4cbe-8982-03eb0ce3a554", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "70357453ee0f40f7a5d0b7af6af67cd1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "70357453ee0f40f7a5d0b7af6af67cd1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "70357453ee0f40f7a5d0b7af6af67cd1.jpg", "file_size": 49936, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70357453ee0f40f7a5d0b7af6af67cd1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70357453ee0f40f7a5d0b7af6af67cd1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/70357453ee0f40f7a5d0b7af6af67cd1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/70357453ee0f40f7a5d0b7af6af67cd1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/70357453ee0f40f7a5d0b7af6af67cd1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMga5bvunxJvRBqiQVthjhMlJxA=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.774146+00 2025-12-09 10:16:06.774152+00 22017 88380FWF#水绿46码 SPMX-20240815317268 \N \N \N 1 \N [{"file_id": "dc33fe44-7283-44fb-a4de-2adf419f54c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25dee5fbe5e0400d8ac027fa87746b73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25dee5fbe5e0400d8ac027fa87746b73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25dee5fbe5e0400d8ac027fa87746b73.jpg", "file_size": 24011, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#水绿46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dee5fbe5e0400d8ac027fa87746b73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dee5fbe5e0400d8ac027fa87746b73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25dee5fbe5e0400d8ac027fa87746b73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25dee5fbe5e0400d8ac027fa87746b73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25dee5fbe5e0400d8ac027fa87746b73.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UEDulA-pvUMtb3WGwO_jyewj-T0=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.777919+00 2025-12-09 10:16:06.777925+00 22018 0044-7FWE#VS-D3 SPMX-20240815317273 \N \N \N 1 \N [{"file_id": "f7ee41fc-b4ad-4177-ae75-cbfd7891e720", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00af917eb1b744199bd7860b8c8a6fca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00af917eb1b744199bd7860b8c8a6fca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00af917eb1b744199bd7860b8c8a6fca.jpg", "file_size": 25183, "is_delete": false, "file_type": 1, "original_file_name": "0044-7FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00af917eb1b744199bd7860b8c8a6fca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00af917eb1b744199bd7860b8c8a6fca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00af917eb1b744199bd7860b8c8a6fca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00af917eb1b744199bd7860b8c8a6fca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00af917eb1b744199bd7860b8c8a6fca.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0SvXPo2aPbRIqclz14X5U_8hS5k=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.781782+00 2025-12-09 10:16:06.781789+00 22019 HXF042FW#VS-D3 SPMX-20240815317278 \N \N \N 1 \N [{"file_id": "d468af53-0ff2-4f82-84e8-1205a4943d14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "610074c7f1bb4c07be899396bb5871bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "610074c7f1bb4c07be899396bb5871bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "610074c7f1bb4c07be899396bb5871bd.jpg", "file_size": 13558, "is_delete": false, "file_type": 1, "original_file_name": "HXF042FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610074c7f1bb4c07be899396bb5871bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610074c7f1bb4c07be899396bb5871bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/610074c7f1bb4c07be899396bb5871bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/610074c7f1bb4c07be899396bb5871bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/610074c7f1bb4c07be899396bb5871bd.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qbFs8Jk2btNZm0xMkbwouAb_iW0=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.785626+00 2025-12-09 10:16:06.785633+00 22020 LZ1433#上身4号色 SPMX-20240815317272 \N \N \N 1 \N [{"file_id": "4c2b17a4-1650-4ebc-9187-7e8e6f5971af", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25b183489149432397675140904df386.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25b183489149432397675140904df386.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25b183489149432397675140904df386.jpg", "file_size": 20116, "is_delete": false, "file_type": 1, "original_file_name": "LZ1433#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b183489149432397675140904df386.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b183489149432397675140904df386.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25b183489149432397675140904df386.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25b183489149432397675140904df386.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25b183489149432397675140904df386.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kxFEspX8ufWVND14WbN14xq0IIY=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.789522+00 2025-12-09 10:16:06.78953+00 22021 1281FWF#藏青 SPMX-20240815317270 \N \N \N 1 \N [{"file_id": "ff112a70-5592-4731-9a50-beaecbd6d88b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62b38994c7084e73a503b48e58b184ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62b38994c7084e73a503b48e58b184ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62b38994c7084e73a503b48e58b184ad.jpg", "file_size": 11959, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b38994c7084e73a503b48e58b184ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b38994c7084e73a503b48e58b184ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62b38994c7084e73a503b48e58b184ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62b38994c7084e73a503b48e58b184ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62b38994c7084e73a503b48e58b184ad.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OoQe9MNuVpYt5bdEOHr_c2i7szo=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.793325+00 2025-12-09 10:16:06.793333+00 22022 LJW003#VS-D3柠檬色 SPMX-20240815317274 \N \N \N 1 \N [{"file_id": "91f43aad-ae77-4b5b-9bc1-77f3b3c4aa3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0d2e41e5b0842fa9504a4c5dcdd1438.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0d2e41e5b0842fa9504a4c5dcdd1438.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0d2e41e5b0842fa9504a4c5dcdd1438.jpg", "file_size": 9684, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#VS-D3柠檬色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d2e41e5b0842fa9504a4c5dcdd1438.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d2e41e5b0842fa9504a4c5dcdd1438.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0d2e41e5b0842fa9504a4c5dcdd1438.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0d2e41e5b0842fa9504a4c5dcdd1438.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0d2e41e5b0842fa9504a4c5dcdd1438.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SyOixDRVbUpr9aW-AHwsG0RGpjw=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.797184+00 2025-12-09 10:16:06.797193+00 22023 243075#-01-1-3XL码 SPMX-20240815317269 \N \N \N 1 \N [{"file_id": "67eb79bc-93a3-4da1-b407-b951841fa7cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fa22b3fd8f7146da969121591a47d603.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fa22b3fd8f7146da969121591a47d603.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fa22b3fd8f7146da969121591a47d603.jpg", "file_size": 73504, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa22b3fd8f7146da969121591a47d603.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa22b3fd8f7146da969121591a47d603.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fa22b3fd8f7146da969121591a47d603.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fa22b3fd8f7146da969121591a47d603.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fa22b3fd8f7146da969121591a47d603.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q8rx_K8h4NGAHc-X5lH8H-EAnvc=", "createTime": "2024-08-15 15:11:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.800966+00 2025-12-09 10:16:06.800973+00 22024 1281FWF#酒红 SPMX-20240815317279 \N \N \N 1 \N [{"file_id": "1072eed3-ccfc-48b0-8be6-162b88ae3db9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24c4b1074bc041b6a596913403d1f395.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24c4b1074bc041b6a596913403d1f395.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24c4b1074bc041b6a596913403d1f395.jpg", "file_size": 12535, "is_delete": false, "file_type": 1, "original_file_name": "1281FWF#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c4b1074bc041b6a596913403d1f395.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c4b1074bc041b6a596913403d1f395.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24c4b1074bc041b6a596913403d1f395.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24c4b1074bc041b6a596913403d1f395.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24c4b1074bc041b6a596913403d1f395.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2Y1b88Y2RnVHecxsJXgMmU51_w0=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.804875+00 2025-12-09 10:16:06.804882+00 22025 243075#-01-1-坯布 SPMX-20240815317283 \N \N \N 1 \N [{"file_id": "2ecfb2d5-d784-4e74-9b7d-2694f6bc00bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8c834b8e9564950ad93d9f39c8b0833.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8c834b8e9564950ad93d9f39c8b0833.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8c834b8e9564950ad93d9f39c8b0833.jpg", "file_size": 62604, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-1-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c834b8e9564950ad93d9f39c8b0833.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c834b8e9564950ad93d9f39c8b0833.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8c834b8e9564950ad93d9f39c8b0833.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8c834b8e9564950ad93d9f39c8b0833.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8c834b8e9564950ad93d9f39c8b0833.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iw4mGo4Xjynvx9LqJQ2iCXTSTIc=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.808613+00 2025-12-09 10:16:06.80862+00 22026 88380FWF#水绿50码 SPMX-20240815317291 \N \N \N 1 \N [{"file_id": "66a8d491-d081-4a48-a478-9cf1d4ab329a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b696e957b51a458d9f4bb565940db44a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b696e957b51a458d9f4bb565940db44a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b696e957b51a458d9f4bb565940db44a.jpg", "file_size": 25793, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#水绿50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b696e957b51a458d9f4bb565940db44a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b696e957b51a458d9f4bb565940db44a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b696e957b51a458d9f4bb565940db44a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b696e957b51a458d9f4bb565940db44a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b696e957b51a458d9f4bb565940db44a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xeDRyflp4bv2wc2b0bu6mWJzfak=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.81251+00 2025-12-09 10:16:06.812518+00 22027 FX022#D SPMX-20240815317281 \N \N \N 1 \N [{"file_id": "fc173bae-5b06-40fc-96fb-e7f1abb7f1e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "115b24ae03054c97b7eb394e13205e4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "115b24ae03054c97b7eb394e13205e4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "115b24ae03054c97b7eb394e13205e4e.jpg", "file_size": 18542, "is_delete": false, "file_type": 1, "original_file_name": "FX022#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115b24ae03054c97b7eb394e13205e4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115b24ae03054c97b7eb394e13205e4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/115b24ae03054c97b7eb394e13205e4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/115b24ae03054c97b7eb394e13205e4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/115b24ae03054c97b7eb394e13205e4e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Msgicz1bIT3pHyUMU-q-1IrPWlM=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.816367+00 2025-12-09 10:16:06.816373+00 22028 LZ1433#上身5号色 SPMX-20240815317282 \N \N \N 1 \N [{"file_id": "49f1da62-9a22-4781-9813-994a43b8c45d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a76efaed52d84cae945ab8ab78a51cf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a76efaed52d84cae945ab8ab78a51cf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a76efaed52d84cae945ab8ab78a51cf1.jpg", "file_size": 20902, "is_delete": false, "file_type": 1, "original_file_name": "LZ1433#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76efaed52d84cae945ab8ab78a51cf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76efaed52d84cae945ab8ab78a51cf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76efaed52d84cae945ab8ab78a51cf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a76efaed52d84cae945ab8ab78a51cf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a76efaed52d84cae945ab8ab78a51cf1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pOqmd9SdIdozNfdquUvdhxs_g1Q=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.820313+00 2025-12-09 10:16:06.820319+00 22029 0044-8FWE#VS-D3 SPMX-20240815317284 \N \N \N 1 \N [{"file_id": "556d731d-da47-4c10-b159-4fcabf09aa6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "906981129095478693ae9bed0be55b35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "906981129095478693ae9bed0be55b35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "906981129095478693ae9bed0be55b35.jpg", "file_size": 10998, "is_delete": false, "file_type": 1, "original_file_name": "0044-8FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906981129095478693ae9bed0be55b35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906981129095478693ae9bed0be55b35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906981129095478693ae9bed0be55b35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/906981129095478693ae9bed0be55b35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/906981129095478693ae9bed0be55b35.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1LfUSoJ7IeJfliC-ZRYavJTIFf0=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.8246+00 2025-12-09 10:16:06.824607+00 22030 DN-D3073#XL SPMX-20240815317288 \N \N \N 1 \N [{"file_id": "6c985f24-d8df-4fce-a4e0-96703e668779", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc451a469e614f9d89d9dc65d0850699.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc451a469e614f9d89d9dc65d0850699.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc451a469e614f9d89d9dc65d0850699.jpg", "file_size": 61938, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3073#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc451a469e614f9d89d9dc65d0850699.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc451a469e614f9d89d9dc65d0850699.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc451a469e614f9d89d9dc65d0850699.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc451a469e614f9d89d9dc65d0850699.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc451a469e614f9d89d9dc65d0850699.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1xEQzrmNYBvgNUnF_T7aPtBw7KA=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.828789+00 2025-12-09 10:16:06.828796+00 22031 LZ1434#上身1号色 SPMX-20240815317292 \N \N \N 1 \N [{"file_id": "9c57298d-3918-47ec-93b9-88768953e12f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "efd6352336ea4d94985004b1da984acc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "efd6352336ea4d94985004b1da984acc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "efd6352336ea4d94985004b1da984acc.jpg", "file_size": 20242, "is_delete": false, "file_type": 1, "original_file_name": "LZ1434#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd6352336ea4d94985004b1da984acc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd6352336ea4d94985004b1da984acc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/efd6352336ea4d94985004b1da984acc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/efd6352336ea4d94985004b1da984acc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/efd6352336ea4d94985004b1da984acc.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bb1Rh-EV7OV3joUXYNUk0x5ATWc=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.833006+00 2025-12-09 10:16:06.833012+00 22032 88380FWF#水绿48码 SPMX-20240815317280 \N \N \N 1 \N [{"file_id": "3081b07e-1ed2-44f1-a363-6b5a769b1ccc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69cb9ebe5fae457b98b91a0b77c99498.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69cb9ebe5fae457b98b91a0b77c99498.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69cb9ebe5fae457b98b91a0b77c99498.jpg", "file_size": 24818, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#水绿48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb9ebe5fae457b98b91a0b77c99498.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb9ebe5fae457b98b91a0b77c99498.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69cb9ebe5fae457b98b91a0b77c99498.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69cb9ebe5fae457b98b91a0b77c99498.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69cb9ebe5fae457b98b91a0b77c99498.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jAzifC4xmV5PKJShBkxY4GM4hw=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.837172+00 2025-12-09 10:16:06.837179+00 22033 LJW003#VS-D3灰 SPMX-20240815317285 \N \N \N 1 \N [{"file_id": "a34db9b6-0751-43f7-9b94-7264c9f8b48e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3194dfcc3944ca6966685f42525b298.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3194dfcc3944ca6966685f42525b298.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3194dfcc3944ca6966685f42525b298.jpg", "file_size": 10911, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#VS-D3灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3194dfcc3944ca6966685f42525b298.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3194dfcc3944ca6966685f42525b298.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3194dfcc3944ca6966685f42525b298.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3194dfcc3944ca6966685f42525b298.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3194dfcc3944ca6966685f42525b298.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtUzdM6zduAgFRsLZMY9Ve-_yRc=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.8413+00 2025-12-09 10:16:06.841306+00 22034 HXF043FW#VS-D3 SPMX-20240815317289 \N \N \N 1 \N [{"file_id": "4da71d6b-9bac-47da-98ec-37c44cd8df25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "724e68b52a6d4242b279d381e8463a4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "724e68b52a6d4242b279d381e8463a4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "724e68b52a6d4242b279d381e8463a4b.jpg", "file_size": 19973, "is_delete": false, "file_type": 1, "original_file_name": "HXF043FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724e68b52a6d4242b279d381e8463a4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724e68b52a6d4242b279d381e8463a4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/724e68b52a6d4242b279d381e8463a4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/724e68b52a6d4242b279d381e8463a4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/724e68b52a6d4242b279d381e8463a4b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jgY3qNBZO7s8ohQjliycy1M9i0s=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.845534+00 2025-12-09 10:16:06.84554+00 22035 CHiC140#5号色-23码 SPMX-20240815317286 \N \N \N 1 \N [{"file_id": "6feb44e9-9ef3-486c-8d0e-2a091028c07d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b732b45a95849cc82f2f6259f2b20f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b732b45a95849cc82f2f6259f2b20f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b732b45a95849cc82f2f6259f2b20f2.jpg", "file_size": 50759, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b732b45a95849cc82f2f6259f2b20f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b732b45a95849cc82f2f6259f2b20f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b732b45a95849cc82f2f6259f2b20f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b732b45a95849cc82f2f6259f2b20f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b732b45a95849cc82f2f6259f2b20f2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3vCBn5BYZp59JTlrSPOKe5cbTRI=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.849637+00 2025-12-09 10:16:06.849644+00 22036 JY-ED0891#蓝黑S码 SPMX-20240815317287 \N \N \N 1 \N [{"file_id": "1532913b-a29d-4cb8-ba13-38101ab37c27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "56ae227a3bee4dd3ba248d86a09b36a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "56ae227a3bee4dd3ba248d86a09b36a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "56ae227a3bee4dd3ba248d86a09b36a1.jpg", "file_size": 74323, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑S码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ae227a3bee4dd3ba248d86a09b36a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ae227a3bee4dd3ba248d86a09b36a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/56ae227a3bee4dd3ba248d86a09b36a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/56ae227a3bee4dd3ba248d86a09b36a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/56ae227a3bee4dd3ba248d86a09b36a1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n-snhbfBYuDexE01t8XOSiejF3A=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.853823+00 2025-12-09 10:16:06.85383+00 22037 1283#WJC22 SPMX-20240815317290 \N \N \N 1 \N [{"file_id": "7afbbbdd-44f2-4ae7-ae41-54b2bb543a05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0089278e54bd48a4b36f12f33d778259.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0089278e54bd48a4b36f12f33d778259.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0089278e54bd48a4b36f12f33d778259.jpg", "file_size": 15269, "is_delete": false, "file_type": 1, "original_file_name": "1283#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0089278e54bd48a4b36f12f33d778259.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0089278e54bd48a4b36f12f33d778259.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0089278e54bd48a4b36f12f33d778259.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0089278e54bd48a4b36f12f33d778259.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0089278e54bd48a4b36f12f33d778259.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0pSToVcXSmL-Z0r285Znfu2eHg=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.85765+00 2025-12-09 10:16:06.857656+00 22038 FX022#匹布 SPMX-20240815317293 \N \N \N 1 \N [{"file_id": "f8d3abf4-2b30-475d-b0ec-29e082094b97", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f4f90f66f1b343709c30f9b0583be7f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f4f90f66f1b343709c30f9b0583be7f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f4f90f66f1b343709c30f9b0583be7f3.jpg", "file_size": 53275, "is_delete": false, "file_type": 1, "original_file_name": "FX022#匹布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f90f66f1b343709c30f9b0583be7f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f90f66f1b343709c30f9b0583be7f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f4f90f66f1b343709c30f9b0583be7f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f4f90f66f1b343709c30f9b0583be7f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f4f90f66f1b343709c30f9b0583be7f3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2aC6S8grDFpDN2pGbfGfGVMOQgA=", "createTime": "2024-08-15 15:11:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.861445+00 2025-12-09 10:16:06.861456+00 22039 243075#-01-2-2XL码 SPMX-20240815317294 \N \N \N 1 \N [{"file_id": "b97b5816-b611-4a50-9ce5-6f8a37cba98b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e362db7bc34f4c20b87df5bd0f55a6ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e362db7bc34f4c20b87df5bd0f55a6ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e362db7bc34f4c20b87df5bd0f55a6ee.jpg", "file_size": 69426, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e362db7bc34f4c20b87df5bd0f55a6ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e362db7bc34f4c20b87df5bd0f55a6ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e362db7bc34f4c20b87df5bd0f55a6ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e362db7bc34f4c20b87df5bd0f55a6ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e362db7bc34f4c20b87df5bd0f55a6ee.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Grey28Cu3HhW86uoLOhBaWUlZm0=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.865256+00 2025-12-09 10:16:06.865263+00 22040 LJW003#VS-D3黄 SPMX-20240815317306 \N \N \N 1 \N [{"file_id": "ad7050f7-377b-40e8-8e68-17326f2b6aea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbaecf58529b4544ac2a66368922f4a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbaecf58529b4544ac2a66368922f4a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbaecf58529b4544ac2a66368922f4a2.jpg", "file_size": 9620, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaecf58529b4544ac2a66368922f4a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaecf58529b4544ac2a66368922f4a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbaecf58529b4544ac2a66368922f4a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbaecf58529b4544ac2a66368922f4a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbaecf58529b4544ac2a66368922f4a2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DAXobtYXC18n077aFBWTB4mlmtg=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.869076+00 2025-12-09 10:16:06.869083+00 22041 88380FWF#深兰42码 SPMX-20240815317303 \N \N \N 1 \N [{"file_id": "f2f54937-aa46-4e80-8725-9738c9577d45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4c61ca06bf464ee4bdda75e135a8215f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4c61ca06bf464ee4bdda75e135a8215f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4c61ca06bf464ee4bdda75e135a8215f.jpg", "file_size": 23929, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#深兰42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c61ca06bf464ee4bdda75e135a8215f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c61ca06bf464ee4bdda75e135a8215f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4c61ca06bf464ee4bdda75e135a8215f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4c61ca06bf464ee4bdda75e135a8215f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4c61ca06bf464ee4bdda75e135a8215f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:iieBZcsKFoqrFa9brB6yhsaxCQc=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.872931+00 2025-12-09 10:16:06.87294+00 22042 1283-1FWF#粉色 SPMX-20240815317301 \N \N \N 1 \N [{"file_id": "f8c067ef-d7a3-428e-846a-bec3a1230458", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6ec35d8e42164527ac18edb7e48b82f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6ec35d8e42164527ac18edb7e48b82f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6ec35d8e42164527ac18edb7e48b82f6.jpg", "file_size": 18181, "is_delete": false, "file_type": 1, "original_file_name": "1283-1FWF#粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec35d8e42164527ac18edb7e48b82f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec35d8e42164527ac18edb7e48b82f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6ec35d8e42164527ac18edb7e48b82f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6ec35d8e42164527ac18edb7e48b82f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6ec35d8e42164527ac18edb7e48b82f6.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2WKzUrI3xJ-bHFxLoJoiNZhQubg=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.876807+00 2025-12-09 10:16:06.876813+00 22043 LZ1434#上身2号色 SPMX-20240815317302 \N \N \N 1 \N [{"file_id": "09c9c486-4ed8-4e14-90d0-fa45cdad3f9f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc7d2c46221a428b8616906973094126.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc7d2c46221a428b8616906973094126.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc7d2c46221a428b8616906973094126.jpg", "file_size": 21159, "is_delete": false, "file_type": 1, "original_file_name": "LZ1434#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7d2c46221a428b8616906973094126.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7d2c46221a428b8616906973094126.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc7d2c46221a428b8616906973094126.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc7d2c46221a428b8616906973094126.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc7d2c46221a428b8616906973094126.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VqcojOzlwMNCMAsdS4XMB3aZFg=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.880503+00 2025-12-09 10:16:06.880509+00 22044 FX022#烧花 SPMX-20240815317304 \N \N \N 1 \N [{"file_id": "a62aa0bb-6cfd-41c9-99a0-0b75b1d4f94e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e023d04ab9b94733a8c421da452e6e9f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e023d04ab9b94733a8c421da452e6e9f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e023d04ab9b94733a8c421da452e6e9f.jpg", "file_size": 71756, "is_delete": false, "file_type": 1, "original_file_name": "FX022#烧花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e023d04ab9b94733a8c421da452e6e9f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e023d04ab9b94733a8c421da452e6e9f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e023d04ab9b94733a8c421da452e6e9f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e023d04ab9b94733a8c421da452e6e9f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e023d04ab9b94733a8c421da452e6e9f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bibGt7ybv2I5fotBo-uF35jOoBc=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.884322+00 2025-12-09 10:16:06.884334+00 22045 243075#-01-2-3XL码 SPMX-20240815317305 \N \N \N 1 \N [{"file_id": "a4a2968c-6bc1-459b-95e7-3930b8946277", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33d12fe2d6a04a418f203a50a3e56276.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33d12fe2d6a04a418f203a50a3e56276.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33d12fe2d6a04a418f203a50a3e56276.jpg", "file_size": 66689, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d12fe2d6a04a418f203a50a3e56276.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d12fe2d6a04a418f203a50a3e56276.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d12fe2d6a04a418f203a50a3e56276.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33d12fe2d6a04a418f203a50a3e56276.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33d12fe2d6a04a418f203a50a3e56276.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c9tw8WDmuaT924R7GyxRj-UdP_o=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.891966+00 2025-12-09 10:16:06.891974+00 22047 LJW003#VS-D3玫红 SPMX-20240815317295 \N \N \N 1 \N [{"file_id": "cac6a55f-d973-4ad1-98b0-4cdc7c24b27a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03f29981bba94ea6a6e9bef5ccbd73f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03f29981bba94ea6a6e9bef5ccbd73f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03f29981bba94ea6a6e9bef5ccbd73f0.jpg", "file_size": 10770, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#VS-D3玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f29981bba94ea6a6e9bef5ccbd73f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f29981bba94ea6a6e9bef5ccbd73f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03f29981bba94ea6a6e9bef5ccbd73f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03f29981bba94ea6a6e9bef5ccbd73f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03f29981bba94ea6a6e9bef5ccbd73f0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WrZubHYxkucMYq8u6dxgwPz5LL4=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.895948+00 2025-12-09 10:16:06.895955+00 22048 JY-ED0891#蓝黑XL码 SPMX-20240815317298 \N \N \N 1 \N [{"file_id": "58490d6c-95ae-41c4-8cb0-c241ef41e45d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b15c32d26db74f19920b4b991f72e210.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b15c32d26db74f19920b4b991f72e210.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b15c32d26db74f19920b4b991f72e210.jpg", "file_size": 69357, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15c32d26db74f19920b4b991f72e210.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15c32d26db74f19920b4b991f72e210.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b15c32d26db74f19920b4b991f72e210.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b15c32d26db74f19920b4b991f72e210.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b15c32d26db74f19920b4b991f72e210.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ecqn9vsbkEX_RjKm6anRLyFtLzk=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.899802+00 2025-12-09 10:16:06.899809+00 22049 CHiC140#5号色-24码 SPMX-20240815317297 \N \N \N 1 \N [{"file_id": "ee14730b-9270-485a-8dca-71c78776cd24", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acca08816abb4fe2811d8dcf9b5abefe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acca08816abb4fe2811d8dcf9b5abefe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acca08816abb4fe2811d8dcf9b5abefe.jpg", "file_size": 50851, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acca08816abb4fe2811d8dcf9b5abefe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acca08816abb4fe2811d8dcf9b5abefe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acca08816abb4fe2811d8dcf9b5abefe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acca08816abb4fe2811d8dcf9b5abefe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acca08816abb4fe2811d8dcf9b5abefe.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9s3YLQPpq0i7kZ1FpzaSjo5lEY=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.888132+00 2025-12-09 10:16:06.888138+00 22046 HXF044FW#VS-D3 SPMX-20240815317300 \N \N \N 1 \N [{"file_id": "73ceb5c2-dab9-4f51-88be-fc8f03991e17", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "289f4a47ae9d4cc3a4e1aadd0eec4564.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "289f4a47ae9d4cc3a4e1aadd0eec4564.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "289f4a47ae9d4cc3a4e1aadd0eec4564.jpg", "file_size": 9034, "is_delete": false, "file_type": 1, "original_file_name": "HXF044FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f4a47ae9d4cc3a4e1aadd0eec4564.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f4a47ae9d4cc3a4e1aadd0eec4564.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/289f4a47ae9d4cc3a4e1aadd0eec4564.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/289f4a47ae9d4cc3a4e1aadd0eec4564.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/289f4a47ae9d4cc3a4e1aadd0eec4564.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HWr27ozmJOJtfeyDqZpySW8S1Gs=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.90772+00 2025-12-09 10:16:06.907728+00 22050 0044-9FWE#VS-D3 SPMX-20240815317296 \N \N \N 1 \N [{"file_id": "18a2b62f-1e39-4adc-b26f-f23acd57cb21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f88535cfd95f4be9b6240597de135c87.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f88535cfd95f4be9b6240597de135c87.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f88535cfd95f4be9b6240597de135c87.jpg", "file_size": 13679, "is_delete": false, "file_type": 1, "original_file_name": "0044-9FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88535cfd95f4be9b6240597de135c87.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88535cfd95f4be9b6240597de135c87.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f88535cfd95f4be9b6240597de135c87.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f88535cfd95f4be9b6240597de135c87.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f88535cfd95f4be9b6240597de135c87.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXqDGwQQm9etf6JaceNnOgQMIJk=", "createTime": "2024-08-15 15:11:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.911568+00 2025-12-09 10:16:06.911576+00 22051 1283-1FWF#绿色 SPMX-20240815317311 \N \N \N 1 \N [{"file_id": "d2e57aef-0db8-494a-abfc-242845d65746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fec4dbe02fde47bd8f8076b9564b2fa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fec4dbe02fde47bd8f8076b9564b2fa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fec4dbe02fde47bd8f8076b9564b2fa1.jpg", "file_size": 16648, "is_delete": false, "file_type": 1, "original_file_name": "1283-1FWF#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec4dbe02fde47bd8f8076b9564b2fa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec4dbe02fde47bd8f8076b9564b2fa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fec4dbe02fde47bd8f8076b9564b2fa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fec4dbe02fde47bd8f8076b9564b2fa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fec4dbe02fde47bd8f8076b9564b2fa1.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YKsdtRIAw7kIbqBH8hp6X-YznwM=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.915337+00 2025-12-09 10:16:06.915344+00 22052 JY-ED0891#蓝黑捆条 SPMX-20240815317307 \N \N \N 1 \N [{"file_id": "dddab680-53ef-4fd0-ba28-176681abea54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7536721fb02b432ba70458a87030225c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7536721fb02b432ba70458a87030225c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7536721fb02b432ba70458a87030225c.jpg", "file_size": 69529, "is_delete": false, "file_type": 1, "original_file_name": "JY-ED0891#蓝黑捆条.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7536721fb02b432ba70458a87030225c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7536721fb02b432ba70458a87030225c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7536721fb02b432ba70458a87030225c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7536721fb02b432ba70458a87030225c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7536721fb02b432ba70458a87030225c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4AAUb84OFwPE3J5T4VtLRowdYSs=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.919142+00 2025-12-09 10:16:06.919149+00 22053 HXF045FW#VS-D3 SPMX-20240815317309 \N \N \N 1 \N [{"file_id": "02f4265d-f327-44b7-b893-3b62bd14a0f7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71429c9bbbdd4d5db272394f320ebe77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71429c9bbbdd4d5db272394f320ebe77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71429c9bbbdd4d5db272394f320ebe77.jpg", "file_size": 7804, "is_delete": false, "file_type": 1, "original_file_name": "HXF045FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71429c9bbbdd4d5db272394f320ebe77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71429c9bbbdd4d5db272394f320ebe77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71429c9bbbdd4d5db272394f320ebe77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71429c9bbbdd4d5db272394f320ebe77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71429c9bbbdd4d5db272394f320ebe77.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OwMKhwuoNPVo4rDvtmJNLQrdyhM=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.922922+00 2025-12-09 10:16:06.922929+00 22054 FX022#白红VS-D3 SPMX-20240815317316 \N \N \N 1 \N [{"file_id": "841b5662-0a6e-4b27-b832-f53f928e26cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16a5c4aa1e7a4716b85ed714fe8afd2f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16a5c4aa1e7a4716b85ed714fe8afd2f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16a5c4aa1e7a4716b85ed714fe8afd2f.jpg", "file_size": 23779, "is_delete": false, "file_type": 1, "original_file_name": "FX022#白红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5c4aa1e7a4716b85ed714fe8afd2f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5c4aa1e7a4716b85ed714fe8afd2f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16a5c4aa1e7a4716b85ed714fe8afd2f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16a5c4aa1e7a4716b85ed714fe8afd2f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16a5c4aa1e7a4716b85ed714fe8afd2f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trDo_XFvLDIw9NREfiQccrHpUV8=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.926723+00 2025-12-09 10:16:06.926729+00 22055 0044-A1#LWQ15 SPMX-20240815317308 \N \N \N 1 \N [{"file_id": "96295e24-96d3-40ed-a6c6-613e2451c4ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80b872577ddf4ce79c59a23630dc1208.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80b872577ddf4ce79c59a23630dc1208.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80b872577ddf4ce79c59a23630dc1208.jpg", "file_size": 14644, "is_delete": false, "file_type": 1, "original_file_name": "0044-A1#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b872577ddf4ce79c59a23630dc1208.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b872577ddf4ce79c59a23630dc1208.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80b872577ddf4ce79c59a23630dc1208.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80b872577ddf4ce79c59a23630dc1208.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80b872577ddf4ce79c59a23630dc1208.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qIrgzR59Enq-ubEYIbE0eLcqL84=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.930509+00 2025-12-09 10:16:06.930516+00 22056 DN-D3074#2XL SPMX-20240815317312 \N \N \N 1 \N [{"file_id": "a8ae0c7a-d0f2-41aa-a234-2d301532b2ea", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64530c0b045b4804a0e812090c2960d2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64530c0b045b4804a0e812090c2960d2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64530c0b045b4804a0e812090c2960d2.jpg", "file_size": 67151, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64530c0b045b4804a0e812090c2960d2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64530c0b045b4804a0e812090c2960d2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64530c0b045b4804a0e812090c2960d2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64530c0b045b4804a0e812090c2960d2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64530c0b045b4804a0e812090c2960d2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Jit_ytV2QXeSvU1Urh3jxbCXcts=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.934269+00 2025-12-09 10:16:06.934276+00 22057 HXF046FW#VS-D3 SPMX-20240815317320 \N \N \N 1 \N [{"file_id": "aac632e7-4ba1-4237-bdd0-0b3dcb2e4ac2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7529a85813454d19ac36d149c1b3a01a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7529a85813454d19ac36d149c1b3a01a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7529a85813454d19ac36d149c1b3a01a.jpg", "file_size": 10923, "is_delete": false, "file_type": 1, "original_file_name": "HXF046FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7529a85813454d19ac36d149c1b3a01a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7529a85813454d19ac36d149c1b3a01a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7529a85813454d19ac36d149c1b3a01a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7529a85813454d19ac36d149c1b3a01a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7529a85813454d19ac36d149c1b3a01a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aMflmYW8uwBqz6A854A-ymosLnY=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.938138+00 2025-12-09 10:16:06.938145+00 22058 LJW003#VS-D3黑 SPMX-20240815317315 \N \N \N 1 \N [{"file_id": "7f7bde23-dd8d-437a-b26a-b08996941761", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8019aceb97464619a52fa7d77d1cc420.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8019aceb97464619a52fa7d77d1cc420.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8019aceb97464619a52fa7d77d1cc420.jpg", "file_size": 12122, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8019aceb97464619a52fa7d77d1cc420.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8019aceb97464619a52fa7d77d1cc420.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8019aceb97464619a52fa7d77d1cc420.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8019aceb97464619a52fa7d77d1cc420.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8019aceb97464619a52fa7d77d1cc420.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GxkJFV09LUS-OPSeXEA8FCDxnVg=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.943578+00 2025-12-09 10:16:06.943585+00 22059 88380FWF#深兰44码 SPMX-20240815317313 \N \N \N 1 \N [{"file_id": "a7e5fc13-95d3-492e-8437-71fd2b5fb2e7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b3bbdb24963471385f9b2560bbfa5a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b3bbdb24963471385f9b2560bbfa5a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b3bbdb24963471385f9b2560bbfa5a5.jpg", "file_size": 24972, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#深兰44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3bbdb24963471385f9b2560bbfa5a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3bbdb24963471385f9b2560bbfa5a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b3bbdb24963471385f9b2560bbfa5a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b3bbdb24963471385f9b2560bbfa5a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b3bbdb24963471385f9b2560bbfa5a5.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVXysxsB_mASJib-EOAqbqssQEg=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.948134+00 2025-12-09 10:16:06.948139+00 22060 LZ1434#上身3号色 SPMX-20240815317314 \N \N \N 1 \N [{"file_id": "a4395011-44ba-41cf-9239-1242a96fd525", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9a8174d91154cd281dc8be9c3be3665.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9a8174d91154cd281dc8be9c3be3665.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9a8174d91154cd281dc8be9c3be3665.jpg", "file_size": 20284, "is_delete": false, "file_type": 1, "original_file_name": "LZ1434#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8174d91154cd281dc8be9c3be3665.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8174d91154cd281dc8be9c3be3665.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9a8174d91154cd281dc8be9c3be3665.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9a8174d91154cd281dc8be9c3be3665.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9a8174d91154cd281dc8be9c3be3665.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9RdzG0FYec402kA5YHjCrqRAZIc=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.952768+00 2025-12-09 10:16:06.952774+00 22061 243075#-01-2-坯布 SPMX-20240815317319 \N \N \N 1 \N [{"file_id": "d9468733-e2bd-4318-992c-2ed4b983188f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "995cb09243a74dd286be25a6b5a389d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "995cb09243a74dd286be25a6b5a389d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "995cb09243a74dd286be25a6b5a389d3.jpg", "file_size": 58700, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-2-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995cb09243a74dd286be25a6b5a389d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995cb09243a74dd286be25a6b5a389d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/995cb09243a74dd286be25a6b5a389d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/995cb09243a74dd286be25a6b5a389d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/995cb09243a74dd286be25a6b5a389d3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vxiTlKB0ghURSYJVVJJJQcu6UJM=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.957218+00 2025-12-09 10:16:06.957225+00 22062 CHiC140#5号色-25码 SPMX-20240815317310 \N \N \N 1 \N [{"file_id": "e1956c77-1779-4579-81ec-0d0ae3505402", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a41eae76a5134867bcbe97da2f042673.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a41eae76a5134867bcbe97da2f042673.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a41eae76a5134867bcbe97da2f042673.jpg", "file_size": 48285, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41eae76a5134867bcbe97da2f042673.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41eae76a5134867bcbe97da2f042673.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a41eae76a5134867bcbe97da2f042673.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a41eae76a5134867bcbe97da2f042673.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a41eae76a5134867bcbe97da2f042673.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bWdMg9fOIo2OVEJXPqqgQjftCek=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.961143+00 2025-12-09 10:16:06.961148+00 22063 JY-HS-168#正身1号色 SPMX-20240815317317 \N \N \N 1 \N [{"file_id": "49ff296b-0e99-459f-8995-af50fc1bf710", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da3b3f2e3d444f5999b2fb5861c2445a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da3b3f2e3d444f5999b2fb5861c2445a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da3b3f2e3d444f5999b2fb5861c2445a.jpg", "file_size": 14631, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#正身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b3f2e3d444f5999b2fb5861c2445a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b3f2e3d444f5999b2fb5861c2445a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da3b3f2e3d444f5999b2fb5861c2445a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da3b3f2e3d444f5999b2fb5861c2445a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da3b3f2e3d444f5999b2fb5861c2445a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JXYKc7GUxVE16JpgQ02oToA_2zE=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.964299+00 2025-12-09 10:16:06.964304+00 22064 0044-A10#LWQ15 SPMX-20240815317318 \N \N \N 1 \N [{"file_id": "ed25a33d-d5eb-4774-b83e-99f0382ff5d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d4153f633e34293b40c6c2a353bdfcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d4153f633e34293b40c6c2a353bdfcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d4153f633e34293b40c6c2a353bdfcf.jpg", "file_size": 23476, "is_delete": false, "file_type": 1, "original_file_name": "0044-A10#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4153f633e34293b40c6c2a353bdfcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4153f633e34293b40c6c2a353bdfcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d4153f633e34293b40c6c2a353bdfcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d4153f633e34293b40c6c2a353bdfcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d4153f633e34293b40c6c2a353bdfcf.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E1wX5Dp7c6O9Y2ovekg3gbREn6Y=", "createTime": "2024-08-15 15:11:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.967396+00 2025-12-09 10:16:06.967401+00 22065 FX022 SPMX-20240815317327 \N \N \N 1 \N [{"file_id": "f625b1d8-9242-43ec-a5d5-9b8f92e126eb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg", "file_size": 42623, "is_delete": false, "file_type": 1, "original_file_name": "FX022.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14de51cc5bf44f6b8bdfa2d4bee7ed60.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yxGlL0fBXgvu2jBgNczTMPwmRTo=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.970465+00 2025-12-09 10:16:06.970469+00 22066 HXF047FW#VS-D3 SPMX-20240815317329 \N \N \N 1 \N [{"file_id": "ca60c916-337b-4ad2-8b86-2db609b40894", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e3136310768a4516b7d63ac74a2931c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e3136310768a4516b7d63ac74a2931c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e3136310768a4516b7d63ac74a2931c8.jpg", "file_size": 21656, "is_delete": false, "file_type": 1, "original_file_name": "HXF047FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3136310768a4516b7d63ac74a2931c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3136310768a4516b7d63ac74a2931c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e3136310768a4516b7d63ac74a2931c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e3136310768a4516b7d63ac74a2931c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e3136310768a4516b7d63ac74a2931c8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uAejSHE2lsQsC8uVy6Dv8HTGZlI=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.973729+00 2025-12-09 10:16:06.973734+00 22067 1283-1FWF#黄色 SPMX-20240815317333 \N \N \N 1 \N [{"file_id": "e9ab2b4e-6152-45b1-8c43-bc06b74536d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d79a94e53bce4b138216d6fc630f2b84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d79a94e53bce4b138216d6fc630f2b84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d79a94e53bce4b138216d6fc630f2b84.jpg", "file_size": 19594, "is_delete": false, "file_type": 1, "original_file_name": "1283-1FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79a94e53bce4b138216d6fc630f2b84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79a94e53bce4b138216d6fc630f2b84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d79a94e53bce4b138216d6fc630f2b84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d79a94e53bce4b138216d6fc630f2b84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d79a94e53bce4b138216d6fc630f2b84.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sXc7LCBeMGJyjzPHLjyvAMa27H0=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.976847+00 2025-12-09 10:16:06.976852+00 22068 LZ1434#上身4号色 SPMX-20240815317324 \N \N \N 1 \N [{"file_id": "21ca09da-9d20-4774-9349-56783a6003b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg", "file_size": 20300, "is_delete": false, "file_type": 1, "original_file_name": "LZ1434#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c6f08a8f5f24ad4a7e92cdc722b3a64.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xt0uWqlIB2HP-MfnfemCR4Rz2zo=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.979982+00 2025-12-09 10:16:06.979986+00 22069 88380FWF#深兰46码 SPMX-20240815317325 \N \N \N 1 \N [{"file_id": "53cf7148-bccd-4c38-a3b6-d9fde7083a04", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9be5ccd07392417e894087cabd732c2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9be5ccd07392417e894087cabd732c2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9be5ccd07392417e894087cabd732c2e.jpg", "file_size": 25107, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#深兰46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be5ccd07392417e894087cabd732c2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be5ccd07392417e894087cabd732c2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9be5ccd07392417e894087cabd732c2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9be5ccd07392417e894087cabd732c2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9be5ccd07392417e894087cabd732c2e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4k5vnoGqU2WhU2QjBYIRz-Vq5Ns=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.983259+00 2025-12-09 10:16:06.983265+00 22070 CHiC140#6号色-21码 SPMX-20240815317332 \N \N \N 1 \N [{"file_id": "3829febf-0279-4715-9bb8-24e86e0db0b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "90b38e2d7fbe48718be6698bcb4f33ea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "90b38e2d7fbe48718be6698bcb4f33ea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "90b38e2d7fbe48718be6698bcb4f33ea.jpg", "file_size": 50668, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b38e2d7fbe48718be6698bcb4f33ea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b38e2d7fbe48718be6698bcb4f33ea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/90b38e2d7fbe48718be6698bcb4f33ea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/90b38e2d7fbe48718be6698bcb4f33ea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/90b38e2d7fbe48718be6698bcb4f33ea.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Vpt03r-Mxu2y--1fQXfa_nTcMqE=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.987107+00 2025-12-09 10:16:06.987114+00 22071 JY-HS-168#正身7号色 SPMX-20240815317331 \N \N \N 1 \N [{"file_id": "a1b46048-d1f3-403d-bdcd-2785ccb1258a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a949a4baacb24c049d10871a5e039560.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a949a4baacb24c049d10871a5e039560.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a949a4baacb24c049d10871a5e039560.jpg", "file_size": 14199, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#正身7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a949a4baacb24c049d10871a5e039560.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a949a4baacb24c049d10871a5e039560.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a949a4baacb24c049d10871a5e039560.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a949a4baacb24c049d10871a5e039560.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a949a4baacb24c049d10871a5e039560.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZpSrhRtrN-H9a5_OnxMAXJNY5eM=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.990773+00 2025-12-09 10:16:06.99078+00 22072 1283-1FWF#豆沙 SPMX-20240815317322 \N \N \N 1 \N [{"file_id": "fc210eb4-ac30-4716-aa7d-160285354bf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88c79321c90a4733ac1dbba57d43488f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88c79321c90a4733ac1dbba57d43488f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88c79321c90a4733ac1dbba57d43488f.jpg", "file_size": 16194, "is_delete": false, "file_type": 1, "original_file_name": "1283-1FWF#豆沙.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c79321c90a4733ac1dbba57d43488f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c79321c90a4733ac1dbba57d43488f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88c79321c90a4733ac1dbba57d43488f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88c79321c90a4733ac1dbba57d43488f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88c79321c90a4733ac1dbba57d43488f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kyceNeHHrxswUWMCYgZe2jvPB1c=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.99437+00 2025-12-09 10:16:06.994376+00 22073 LZ1434#上身5号色 SPMX-20240815317335 \N \N \N 1 \N [{"file_id": "8a7c91b8-5f8e-4fd6-8816-caac8f688136", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "78637481d0eb47b187b740b069cf9e76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "78637481d0eb47b187b740b069cf9e76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "78637481d0eb47b187b740b069cf9e76.jpg", "file_size": 20422, "is_delete": false, "file_type": 1, "original_file_name": "LZ1434#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78637481d0eb47b187b740b069cf9e76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78637481d0eb47b187b740b069cf9e76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/78637481d0eb47b187b740b069cf9e76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/78637481d0eb47b187b740b069cf9e76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/78637481d0eb47b187b740b069cf9e76.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I486Mtb0BNgIPegd43hdmSXYDhg=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:06.997844+00 2025-12-09 10:16:06.997851+00 22074 LJW003#柠檬 SPMX-20240815317326 \N \N \N 1 \N [{"file_id": "f6d50941-0811-4b1f-a43e-3fcdc3ad7954", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84e7fedee2714a359521e6af31d7651b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84e7fedee2714a359521e6af31d7651b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84e7fedee2714a359521e6af31d7651b.jpg", "file_size": 9590, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#柠檬.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e7fedee2714a359521e6af31d7651b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e7fedee2714a359521e6af31d7651b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84e7fedee2714a359521e6af31d7651b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84e7fedee2714a359521e6af31d7651b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84e7fedee2714a359521e6af31d7651b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mlD5PpdZPSK_FfFiaRLoE2ZVMNA=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.001371+00 2025-12-09 10:16:07.001378+00 22075 0044-A11#LWQ15 SPMX-20240815317328 \N \N \N 1 \N [{"file_id": "f53cd7ed-f796-46db-9f38-f9ed30343400", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d5223f793dff4319bf1ad65253f62be9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d5223f793dff4319bf1ad65253f62be9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d5223f793dff4319bf1ad65253f62be9.jpg", "file_size": 19808, "is_delete": false, "file_type": 1, "original_file_name": "0044-A11#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5223f793dff4319bf1ad65253f62be9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5223f793dff4319bf1ad65253f62be9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d5223f793dff4319bf1ad65253f62be9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d5223f793dff4319bf1ad65253f62be9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d5223f793dff4319bf1ad65253f62be9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QJKU9HacY_myZ2YK2FTes_FfFXU=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.004912+00 2025-12-09 10:16:07.004919+00 22076 CHiC140#5号色净色 SPMX-20240815317321 \N \N \N 1 \N [{"file_id": "47009a69-5c77-46ea-9e40-d51ad8d353f9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "320fffc6785246f3ae6316a069ca62c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "320fffc6785246f3ae6316a069ca62c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "320fffc6785246f3ae6316a069ca62c4.jpg", "file_size": 12215, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#5号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320fffc6785246f3ae6316a069ca62c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320fffc6785246f3ae6316a069ca62c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/320fffc6785246f3ae6316a069ca62c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/320fffc6785246f3ae6316a069ca62c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/320fffc6785246f3ae6316a069ca62c4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TzHeYC4SoeSz9xtBht4jKOabP9s=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.008425+00 2025-12-09 10:16:07.008432+00 22077 243075#-01-3-2XL码 SPMX-20240815317330 \N \N \N 1 \N [{"file_id": "a630c07c-2753-4944-8afe-0d636ed83fd5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1b5c82e94e6241379af0ad25ef78d54b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1b5c82e94e6241379af0ad25ef78d54b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1b5c82e94e6241379af0ad25ef78d54b.jpg", "file_size": 67891, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5c82e94e6241379af0ad25ef78d54b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5c82e94e6241379af0ad25ef78d54b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1b5c82e94e6241379af0ad25ef78d54b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1b5c82e94e6241379af0ad25ef78d54b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1b5c82e94e6241379af0ad25ef78d54b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BuFgSEPq5zZvD7Ijoijloqj62UY=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.011818+00 2025-12-09 10:16:07.011825+00 22078 DN-D3074#3XL SPMX-20240815317323 \N \N \N 1 \N [{"file_id": "d25bcb7e-6170-4fb6-9a4f-d46f96caaaf2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cbb5f06670194be2a43a9f946789610e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cbb5f06670194be2a43a9f946789610e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cbb5f06670194be2a43a9f946789610e.jpg", "file_size": 65264, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb5f06670194be2a43a9f946789610e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb5f06670194be2a43a9f946789610e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cbb5f06670194be2a43a9f946789610e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cbb5f06670194be2a43a9f946789610e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cbb5f06670194be2a43a9f946789610e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tgHBIIflqFW3FKgImAn5BnFUPBY=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.015377+00 2025-12-09 10:16:07.015383+00 22079 DN-D3074#L SPMX-20240815317334 \N \N \N 1 \N [{"file_id": "9de6d154-1e1d-4908-b013-e614d5273856", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e86318d3c0634cf795c5288a8ecc1c36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e86318d3c0634cf795c5288a8ecc1c36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e86318d3c0634cf795c5288a8ecc1c36.jpg", "file_size": 69412, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86318d3c0634cf795c5288a8ecc1c36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86318d3c0634cf795c5288a8ecc1c36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e86318d3c0634cf795c5288a8ecc1c36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e86318d3c0634cf795c5288a8ecc1c36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e86318d3c0634cf795c5288a8ecc1c36.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i0JXim5tmIKCmpsvw47idqPYoDo=", "createTime": "2024-08-15 15:11:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.018872+00 2025-12-09 10:16:07.018879+00 22080 88380FWF#深兰48码 SPMX-20240815317337 \N \N \N 1 \N [{"file_id": "6ef35299-8d70-4dd9-8107-b0fb96f8abca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e49ab565266545dea6e6625c7791268b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e49ab565266545dea6e6625c7791268b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e49ab565266545dea6e6625c7791268b.jpg", "file_size": 25690, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#深兰48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49ab565266545dea6e6625c7791268b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49ab565266545dea6e6625c7791268b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e49ab565266545dea6e6625c7791268b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e49ab565266545dea6e6625c7791268b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e49ab565266545dea6e6625c7791268b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6n7vMFJiLuj8g2HPPkNBfc3-ygc=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.022424+00 2025-12-09 10:16:07.022431+00 22081 1286FWE#宝蓝 SPMX-20240815317342 \N \N \N 1 \N [{"file_id": "777823c5-1698-412e-9358-80f6ead5dd79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e4db4b282e04be5afe280494309530e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e4db4b282e04be5afe280494309530e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e4db4b282e04be5afe280494309530e.jpg", "file_size": 18344, "is_delete": false, "file_type": 1, "original_file_name": "1286FWE#宝蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4db4b282e04be5afe280494309530e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4db4b282e04be5afe280494309530e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e4db4b282e04be5afe280494309530e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e4db4b282e04be5afe280494309530e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e4db4b282e04be5afe280494309530e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DfPgGu6XTjRRWxf1qigCBwmwMRU=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.025943+00 2025-12-09 10:16:07.02595+00 22082 HXF049FW#VS-D3 SPMX-20240815317350 \N \N \N 1 \N [{"file_id": "ab43a3a6-e29e-4759-9657-7236e8953ce8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3abd0a8a3e0c4bf69443570e29867199.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3abd0a8a3e0c4bf69443570e29867199.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3abd0a8a3e0c4bf69443570e29867199.jpg", "file_size": 12483, "is_delete": false, "file_type": 1, "original_file_name": "HXF049FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd0a8a3e0c4bf69443570e29867199.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd0a8a3e0c4bf69443570e29867199.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3abd0a8a3e0c4bf69443570e29867199.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3abd0a8a3e0c4bf69443570e29867199.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3abd0a8a3e0c4bf69443570e29867199.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MuzRJJGdK_BLldE6H3GleelMJj0=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.029451+00 2025-12-09 10:16:07.029457+00 22083 DN-D3074#M SPMX-20240815317344 \N \N \N 1 \N [{"file_id": "6d908894-40cd-4eec-946e-8bfee7c82f2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3a5a9e400a648a99b56525e737ec1ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3a5a9e400a648a99b56525e737ec1ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3a5a9e400a648a99b56525e737ec1ca.jpg", "file_size": 72714, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a5a9e400a648a99b56525e737ec1ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a5a9e400a648a99b56525e737ec1ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3a5a9e400a648a99b56525e737ec1ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3a5a9e400a648a99b56525e737ec1ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3a5a9e400a648a99b56525e737ec1ca.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gyzVPMFgtwfWc0zIckf_RTt2NwM=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.064559+00 2025-12-09 10:16:07.064566+00 22092 FX022FW#黄VS-D3 SPMX-20240815317347 \N \N \N 1 \N [{"file_id": "361cd3ec-308e-4aca-8054-9454bdae30cf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "11d4bc9c19174a5e9f22d8e7fbe6168a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "11d4bc9c19174a5e9f22d8e7fbe6168a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "11d4bc9c19174a5e9f22d8e7fbe6168a.jpg", "file_size": 16831, "is_delete": false, "file_type": 1, "original_file_name": "FX022FW#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d4bc9c19174a5e9f22d8e7fbe6168a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d4bc9c19174a5e9f22d8e7fbe6168a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/11d4bc9c19174a5e9f22d8e7fbe6168a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/11d4bc9c19174a5e9f22d8e7fbe6168a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/11d4bc9c19174a5e9f22d8e7fbe6168a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRT1rA_kY0yI-hBNLYIZmQIMiTA=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.032942+00 2025-12-09 10:16:07.032949+00 22084 JY-HS-168#正身8号色 SPMX-20240815317343 \N \N \N 1 \N [{"file_id": "583866cc-56de-4a99-a976-e57db3fe4aed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5dcda91fe4b046bd9f2993d21b1c0d84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5dcda91fe4b046bd9f2993d21b1c0d84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5dcda91fe4b046bd9f2993d21b1c0d84.jpg", "file_size": 14437, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#正身8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcda91fe4b046bd9f2993d21b1c0d84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcda91fe4b046bd9f2993d21b1c0d84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5dcda91fe4b046bd9f2993d21b1c0d84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5dcda91fe4b046bd9f2993d21b1c0d84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5dcda91fe4b046bd9f2993d21b1c0d84.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I4AoSTxeJxATK16b8xfvAsuqZVI=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.036598+00 2025-12-09 10:16:07.036605+00 22085 243075#-01-3-3XL码 SPMX-20240815317341 \N \N \N 1 \N [{"file_id": "7d0a9f25-d091-4ace-8ba0-9d1682e8ed1f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c080bbb4f5964885a43cce1aafbbb024.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c080bbb4f5964885a43cce1aafbbb024.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c080bbb4f5964885a43cce1aafbbb024.jpg", "file_size": 66829, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c080bbb4f5964885a43cce1aafbbb024.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c080bbb4f5964885a43cce1aafbbb024.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c080bbb4f5964885a43cce1aafbbb024.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c080bbb4f5964885a43cce1aafbbb024.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c080bbb4f5964885a43cce1aafbbb024.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1RUY7YqCMPAU9qQ8Qbi5684R-CY=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.04015+00 2025-12-09 10:16:07.040156+00 22086 LZ1435#上身1号色 SPMX-20240815317346 \N \N \N 1 \N [{"file_id": "e2c7e640-cb7c-4f26-9fe3-86dfa3c1a5c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "26729976be574af99a8d6e34e8ac0f5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "26729976be574af99a8d6e34e8ac0f5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "26729976be574af99a8d6e34e8ac0f5f.jpg", "file_size": 16274, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26729976be574af99a8d6e34e8ac0f5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26729976be574af99a8d6e34e8ac0f5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/26729976be574af99a8d6e34e8ac0f5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/26729976be574af99a8d6e34e8ac0f5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/26729976be574af99a8d6e34e8ac0f5f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E0SVBVRgvKVggIoLUHEoOAytV1A=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.043958+00 2025-12-09 10:16:07.043967+00 22087 0044-A13#紫色 SPMX-20240815317349 \N \N \N 1 \N [{"file_id": "6b5d068f-38b4-41b8-83bd-887ebf09e310", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "29448b9f7c7348388eec93adf0cd57c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "29448b9f7c7348388eec93adf0cd57c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "29448b9f7c7348388eec93adf0cd57c6.jpg", "file_size": 24836, "is_delete": false, "file_type": 1, "original_file_name": "0044-A13#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29448b9f7c7348388eec93adf0cd57c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29448b9f7c7348388eec93adf0cd57c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/29448b9f7c7348388eec93adf0cd57c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/29448b9f7c7348388eec93adf0cd57c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/29448b9f7c7348388eec93adf0cd57c6.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a19wXExBgTMDgSN1XWDEZUig8OA=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.048337+00 2025-12-09 10:16:07.048347+00 22088 243075#-01-3-坯布 SPMX-20240815317351 \N \N \N 1 \N [{"file_id": "7c3b5a99-11f2-44df-9101-8b6ff3df2329", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "da24aced4c874e4993640f0708cb8ca4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "da24aced4c874e4993640f0708cb8ca4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "da24aced4c874e4993640f0708cb8ca4.jpg", "file_size": 54561, "is_delete": false, "file_type": 1, "original_file_name": "243075#-01-3-坯布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da24aced4c874e4993640f0708cb8ca4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da24aced4c874e4993640f0708cb8ca4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/da24aced4c874e4993640f0708cb8ca4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/da24aced4c874e4993640f0708cb8ca4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/da24aced4c874e4993640f0708cb8ca4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6wHaCV_W-oTveydt_F-oMEd4m2E=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.052469+00 2025-12-09 10:16:07.052479+00 22089 LJW003#灰 SPMX-20240815317336 \N \N \N 1 \N [{"file_id": "5d04a5b9-c914-4cdf-b323-8dc590d2f618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6557a8018df345f5a9ad8bba02e4ad3d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6557a8018df345f5a9ad8bba02e4ad3d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6557a8018df345f5a9ad8bba02e4ad3d.jpg", "file_size": 10727, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#灰.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6557a8018df345f5a9ad8bba02e4ad3d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6557a8018df345f5a9ad8bba02e4ad3d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6557a8018df345f5a9ad8bba02e4ad3d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6557a8018df345f5a9ad8bba02e4ad3d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6557a8018df345f5a9ad8bba02e4ad3d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cEmBg28Oz45I8QFlpdtCZlVSXxQ=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.056717+00 2025-12-09 10:16:07.056727+00 22090 CHiC140#6号色-22码 SPMX-20240815317345 \N \N \N 1 \N [{"file_id": "79b167fb-3f2a-457e-bfaf-e3901e3b33de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b5f30878bd74f1db205aeded677703e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b5f30878bd74f1db205aeded677703e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b5f30878bd74f1db205aeded677703e.jpg", "file_size": 52134, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5f30878bd74f1db205aeded677703e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5f30878bd74f1db205aeded677703e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b5f30878bd74f1db205aeded677703e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b5f30878bd74f1db205aeded677703e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b5f30878bd74f1db205aeded677703e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OXoKomsQD5e2tCegRaePiMoVfP8=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.060882+00 2025-12-09 10:16:07.060891+00 22091 FX022FW#蓝VS-D3 SPMX-20240815317338 \N \N \N 1 \N [{"file_id": "512265df-d4bd-4b18-847a-6177fb6a9a69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5daf63fa97474aabbd4c30d4f6cdf877.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5daf63fa97474aabbd4c30d4f6cdf877.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5daf63fa97474aabbd4c30d4f6cdf877.jpg", "file_size": 23141, "is_delete": false, "file_type": 1, "original_file_name": "FX022FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf63fa97474aabbd4c30d4f6cdf877.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf63fa97474aabbd4c30d4f6cdf877.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5daf63fa97474aabbd4c30d4f6cdf877.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5daf63fa97474aabbd4c30d4f6cdf877.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5daf63fa97474aabbd4c30d4f6cdf877.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YXu1pJXfSeJ4YkA6Eqn5iYkBALs=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.068264+00 2025-12-09 10:16:07.068272+00 22093 0044-A12#LWQ15 SPMX-20240815317339 \N \N \N 1 \N [{"file_id": "7e4d2b1a-11da-4a25-886a-60cfa59e4542", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f3808d4ce2a645f9ac18dbc9194d9905.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f3808d4ce2a645f9ac18dbc9194d9905.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f3808d4ce2a645f9ac18dbc9194d9905.jpg", "file_size": 26342, "is_delete": false, "file_type": 1, "original_file_name": "0044-A12#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3808d4ce2a645f9ac18dbc9194d9905.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3808d4ce2a645f9ac18dbc9194d9905.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f3808d4ce2a645f9ac18dbc9194d9905.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f3808d4ce2a645f9ac18dbc9194d9905.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f3808d4ce2a645f9ac18dbc9194d9905.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ok8s-wN3mXkyRvlBQXhfyMw15Fo=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.071889+00 2025-12-09 10:16:07.071896+00 22094 LJW003#玫红 SPMX-20240815317348 \N \N \N 1 \N [{"file_id": "e1838a78-ad11-46df-847d-2fa3cd19a242", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f000508a96b24d279503210d365cb55f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f000508a96b24d279503210d365cb55f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f000508a96b24d279503210d365cb55f.jpg", "file_size": 11217, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f000508a96b24d279503210d365cb55f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f000508a96b24d279503210d365cb55f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f000508a96b24d279503210d365cb55f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f000508a96b24d279503210d365cb55f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f000508a96b24d279503210d365cb55f.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D2hEfndyMOCxQcUqTSb05kGcBMQ=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.075501+00 2025-12-09 10:16:07.075508+00 22095 HXF048FW#VS-D3 SPMX-20240815317340 \N \N \N 1 \N [{"file_id": "2906b02a-dd94-442e-a4f6-b3e4ef6bb89b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33924e812fa149d9948eb1058ef5ccbb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33924e812fa149d9948eb1058ef5ccbb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33924e812fa149d9948eb1058ef5ccbb.jpg", "file_size": 20825, "is_delete": false, "file_type": 1, "original_file_name": "HXF048FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33924e812fa149d9948eb1058ef5ccbb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33924e812fa149d9948eb1058ef5ccbb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33924e812fa149d9948eb1058ef5ccbb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33924e812fa149d9948eb1058ef5ccbb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33924e812fa149d9948eb1058ef5ccbb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bqK7ZfOzzydHmIoRHdCVw9xwxjg=", "createTime": "2024-08-15 15:11:18"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.079168+00 2025-12-09 10:16:07.079176+00 22096 243075#-02-1-2XL码 SPMX-20240815317362 \N \N \N 1 \N [{"file_id": "f7e2f181-ed75-40d1-bd03-efb67c512291", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87307a236cf84d389399ae170d00706e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87307a236cf84d389399ae170d00706e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87307a236cf84d389399ae170d00706e.jpg", "file_size": 50835, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87307a236cf84d389399ae170d00706e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87307a236cf84d389399ae170d00706e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87307a236cf84d389399ae170d00706e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87307a236cf84d389399ae170d00706e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87307a236cf84d389399ae170d00706e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XX2mBUdW2yhqf88Ug65BB2k5_ys=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.082748+00 2025-12-09 10:16:07.082756+00 22097 DN-D3074#领子 SPMX-20240815317363 \N \N \N 1 \N [{"file_id": "b752bf4e-2a7f-4b33-932b-4e078e8748dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8772dbb78a9d43849de1604a5e5be5c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8772dbb78a9d43849de1604a5e5be5c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8772dbb78a9d43849de1604a5e5be5c4.jpg", "file_size": 10836, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772dbb78a9d43849de1604a5e5be5c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772dbb78a9d43849de1604a5e5be5c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8772dbb78a9d43849de1604a5e5be5c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8772dbb78a9d43849de1604a5e5be5c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8772dbb78a9d43849de1604a5e5be5c4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TxPw9bluxcY9TjTHreTAKIzPW-I=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.086366+00 2025-12-09 10:16:07.086375+00 22098 JY-HS-168#袖子1号色 SPMX-20240815317367 \N \N \N 1 \N [{"file_id": "7c4acf8e-377e-4dad-8137-9b2357fcd5c2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7af5f61a6c94673a8abfd249bf6cb5a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7af5f61a6c94673a8abfd249bf6cb5a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7af5f61a6c94673a8abfd249bf6cb5a.jpg", "file_size": 14016, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#袖子1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7af5f61a6c94673a8abfd249bf6cb5a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7af5f61a6c94673a8abfd249bf6cb5a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7af5f61a6c94673a8abfd249bf6cb5a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7af5f61a6c94673a8abfd249bf6cb5a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7af5f61a6c94673a8abfd249bf6cb5a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_IvbQvAYpKwGcmwWtv8hUcqi_ws=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.089978+00 2025-12-09 10:16:07.08999+00 22099 DN-D3074#XL SPMX-20240815317354 \N \N \N 1 \N [{"file_id": "4e21f2c7-d71d-4601-b7a6-76d784d6359d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03c0bca6785e490faf4d3f75ec4a26e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03c0bca6785e490faf4d3f75ec4a26e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03c0bca6785e490faf4d3f75ec4a26e8.jpg", "file_size": 67454, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3074#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0bca6785e490faf4d3f75ec4a26e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0bca6785e490faf4d3f75ec4a26e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03c0bca6785e490faf4d3f75ec4a26e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03c0bca6785e490faf4d3f75ec4a26e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03c0bca6785e490faf4d3f75ec4a26e8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rGBhV4eYwg3t9HODBDwhORhm7SI=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.094012+00 2025-12-09 10:16:07.094018+00 22100 CHiC140#6号色-23码 SPMX-20240815317357 \N \N \N 1 \N [{"file_id": "f0f9a2f6-6b35-4f6f-bf0e-00dfa92c6b32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f649f5ca480e4ff3a3197bf6df9a7563.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f649f5ca480e4ff3a3197bf6df9a7563.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f649f5ca480e4ff3a3197bf6df9a7563.jpg", "file_size": 50383, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f649f5ca480e4ff3a3197bf6df9a7563.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f649f5ca480e4ff3a3197bf6df9a7563.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f649f5ca480e4ff3a3197bf6df9a7563.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f649f5ca480e4ff3a3197bf6df9a7563.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f649f5ca480e4ff3a3197bf6df9a7563.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W9MlmRS2uvw7BzlG_yL-h39e2hY=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.097575+00 2025-12-09 10:16:07.097583+00 22101 0044-A13#绿色 SPMX-20240815317360 \N \N \N 1 \N [{"file_id": "2980c15b-f9c0-42bd-a1dc-6109adb77a83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84827cfcca9d4b298849c1379ec030d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84827cfcca9d4b298849c1379ec030d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84827cfcca9d4b298849c1379ec030d0.jpg", "file_size": 25334, "is_delete": false, "file_type": 1, "original_file_name": "0044-A13#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84827cfcca9d4b298849c1379ec030d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84827cfcca9d4b298849c1379ec030d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84827cfcca9d4b298849c1379ec030d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84827cfcca9d4b298849c1379ec030d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84827cfcca9d4b298849c1379ec030d0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdpZ_zSM-_DtYvU1KeyL2o2ABwU=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.101229+00 2025-12-09 10:16:07.101235+00 22102 LZ1435#上身32号色 SPMX-20240815317365 \N \N \N 1 \N [{"file_id": "7e1b33a4-18b4-40e8-be82-d1e9849289b7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3b086928a9548599fb5df4cad5a3713.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3b086928a9548599fb5df4cad5a3713.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3b086928a9548599fb5df4cad5a3713.jpg", "file_size": 16343, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身32号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b086928a9548599fb5df4cad5a3713.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b086928a9548599fb5df4cad5a3713.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3b086928a9548599fb5df4cad5a3713.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3b086928a9548599fb5df4cad5a3713.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3b086928a9548599fb5df4cad5a3713.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TQrWq67SQARDuEYXT_6avchx2H4=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.104795+00 2025-12-09 10:16:07.104802+00 22103 88380FWF#深兰50码 SPMX-20240815317352 \N \N \N 1 \N [{"file_id": "0aeee801-e0fc-4241-83e1-014cf806fa5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69646b8a1dbe4c57bb6c58810455dba3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69646b8a1dbe4c57bb6c58810455dba3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69646b8a1dbe4c57bb6c58810455dba3.jpg", "file_size": 25879, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#深兰50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69646b8a1dbe4c57bb6c58810455dba3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69646b8a1dbe4c57bb6c58810455dba3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69646b8a1dbe4c57bb6c58810455dba3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69646b8a1dbe4c57bb6c58810455dba3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69646b8a1dbe4c57bb6c58810455dba3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FRHmpKhOQHm1Mejs77O_b79A8IM=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.108381+00 2025-12-09 10:16:07.108388+00 22104 LJW003#绿 SPMX-20240815317358 \N \N \N 1 \N [{"file_id": "47b313de-ff8a-4a8d-87d6-6dd166373a1d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45b0f573ba6544f9a6adce7c60178905.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45b0f573ba6544f9a6adce7c60178905.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45b0f573ba6544f9a6adce7c60178905.jpg", "file_size": 20943, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b0f573ba6544f9a6adce7c60178905.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b0f573ba6544f9a6adce7c60178905.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b0f573ba6544f9a6adce7c60178905.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45b0f573ba6544f9a6adce7c60178905.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45b0f573ba6544f9a6adce7c60178905.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yIHULprUncF6XGc-5Km4IARVQhk=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.111954+00 2025-12-09 10:16:07.111961+00 22105 HXF050FW#VS-D3 SPMX-20240815317359 \N \N \N 1 \N [{"file_id": "31041df0-2254-4e76-a2d3-c35c29690b00", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bbb7ed1a61f468abba189f66136d8c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bbb7ed1a61f468abba189f66136d8c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bbb7ed1a61f468abba189f66136d8c9.jpg", "file_size": 20925, "is_delete": false, "file_type": 1, "original_file_name": "HXF050FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb7ed1a61f468abba189f66136d8c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb7ed1a61f468abba189f66136d8c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bbb7ed1a61f468abba189f66136d8c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bbb7ed1a61f468abba189f66136d8c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bbb7ed1a61f468abba189f66136d8c9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OTTivHWZ5ciqN70ZjHMOrkXUGFQ=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.116506+00 2025-12-09 10:16:07.116513+00 22106 JY-HS-168#正身9号色 SPMX-20240815317356 \N \N \N 1 \N [{"file_id": "67723c05-e3ce-42c1-9b9c-aef582601361", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fe054be81a1b4ffdaeb2b625771a4ba7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fe054be81a1b4ffdaeb2b625771a4ba7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fe054be81a1b4ffdaeb2b625771a4ba7.jpg", "file_size": 13992, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#正身9号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe054be81a1b4ffdaeb2b625771a4ba7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe054be81a1b4ffdaeb2b625771a4ba7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fe054be81a1b4ffdaeb2b625771a4ba7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fe054be81a1b4ffdaeb2b625771a4ba7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fe054be81a1b4ffdaeb2b625771a4ba7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGKHOm2eMZjDGRd1mRooScBdId0=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.120365+00 2025-12-09 10:16:07.12037+00 22107 88380FWF#红克42码 SPMX-20240815317366 \N \N \N 1 \N [{"file_id": "fc22a76b-ce14-4ea4-8942-4f2e56b32da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fdd42cf7170a4ddba11a2036fe66085b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fdd42cf7170a4ddba11a2036fe66085b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fdd42cf7170a4ddba11a2036fe66085b.jpg", "file_size": 22410, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#红克42码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd42cf7170a4ddba11a2036fe66085b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd42cf7170a4ddba11a2036fe66085b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fdd42cf7170a4ddba11a2036fe66085b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fdd42cf7170a4ddba11a2036fe66085b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fdd42cf7170a4ddba11a2036fe66085b.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SJWj1mmszLdmSYCVHUBPt0DT30U=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.123901+00 2025-12-09 10:16:07.123908+00 22108 1286FWE#橙色 SPMX-20240815317353 \N \N \N 1 \N [{"file_id": "9c0b1b41-0d18-4475-adf2-a714deeaee35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d88c22a8d17c4059a957a3f91b971449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d88c22a8d17c4059a957a3f91b971449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d88c22a8d17c4059a957a3f91b971449.jpg", "file_size": 18183, "is_delete": false, "file_type": 1, "original_file_name": "1286FWE#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88c22a8d17c4059a957a3f91b971449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88c22a8d17c4059a957a3f91b971449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d88c22a8d17c4059a957a3f91b971449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d88c22a8d17c4059a957a3f91b971449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d88c22a8d17c4059a957a3f91b971449.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oc2RkD9RL5GRnrUt406q3p8Tmb8=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.12766+00 2025-12-09 10:16:07.127666+00 22109 LZ1435#上身2号色 SPMX-20240815317355 \N \N \N 1 \N [{"file_id": "d90db5fd-c2bf-4ad1-abb1-53f8e9b2c58b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "411b439f816e40228e20f4eacde30f54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "411b439f816e40228e20f4eacde30f54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "411b439f816e40228e20f4eacde30f54.jpg", "file_size": 15519, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411b439f816e40228e20f4eacde30f54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411b439f816e40228e20f4eacde30f54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/411b439f816e40228e20f4eacde30f54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/411b439f816e40228e20f4eacde30f54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/411b439f816e40228e20f4eacde30f54.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:33yJ53aPzMm0M8MoSh-MtHG-mBI=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.131237+00 2025-12-09 10:16:07.131244+00 22110 1286FWE#紫色 SPMX-20240815317364 \N \N \N 1 \N [{"file_id": "ddb0e5fc-0fde-4b00-99db-32409108def5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6bb8f842df8a4a3985938f5f437e1c63.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6bb8f842df8a4a3985938f5f437e1c63.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6bb8f842df8a4a3985938f5f437e1c63.jpg", "file_size": 17604, "is_delete": false, "file_type": 1, "original_file_name": "1286FWE#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb8f842df8a4a3985938f5f437e1c63.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb8f842df8a4a3985938f5f437e1c63.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6bb8f842df8a4a3985938f5f437e1c63.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6bb8f842df8a4a3985938f5f437e1c63.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6bb8f842df8a4a3985938f5f437e1c63.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5QVmcKBx5ZUXDE3ICGUTiY7d9X4=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.134809+00 2025-12-09 10:16:07.134816+00 22111 FX022FWE#VS-D3 SPMX-20240815317361 \N \N \N 1 \N [{"file_id": "1d1196ab-6726-4252-b9eb-650cc9fd71b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aed6fb6ace2f456cae262978fc4f1eb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aed6fb6ace2f456cae262978fc4f1eb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aed6fb6ace2f456cae262978fc4f1eb8.jpg", "file_size": 16971, "is_delete": false, "file_type": 1, "original_file_name": "FX022FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed6fb6ace2f456cae262978fc4f1eb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed6fb6ace2f456cae262978fc4f1eb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aed6fb6ace2f456cae262978fc4f1eb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aed6fb6ace2f456cae262978fc4f1eb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aed6fb6ace2f456cae262978fc4f1eb8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZySZmL54Pmc_A_R_FnqKwsJDeTk=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.138344+00 2025-12-09 10:16:07.138351+00 22112 88380FWF#红克44码 SPMX-20240815317377 \N \N \N 1 \N [{"file_id": "ad08a231-2814-4557-8e88-2492ffe81c48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c670f9bdc56459ea4d482b895677727.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c670f9bdc56459ea4d482b895677727.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c670f9bdc56459ea4d482b895677727.jpg", "file_size": 23193, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#红克44码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c670f9bdc56459ea4d482b895677727.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c670f9bdc56459ea4d482b895677727.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c670f9bdc56459ea4d482b895677727.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c670f9bdc56459ea4d482b895677727.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c670f9bdc56459ea4d482b895677727.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aVywnjPtryD7ogEP7N9iHv2gOw8=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.141939+00 2025-12-09 10:16:07.141946+00 22113 0044-A14#粉红 SPMX-20240815317382 \N \N \N 1 \N [{"file_id": "f9dd7950-5210-429d-b74e-5cf3a8846676", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0de5b4dada60442e91f90d0de005ad05.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0de5b4dada60442e91f90d0de005ad05.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0de5b4dada60442e91f90d0de005ad05.jpg", "file_size": 8310, "is_delete": false, "file_type": 1, "original_file_name": "0044-A14#粉红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de5b4dada60442e91f90d0de005ad05.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de5b4dada60442e91f90d0de005ad05.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0de5b4dada60442e91f90d0de005ad05.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0de5b4dada60442e91f90d0de005ad05.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0de5b4dada60442e91f90d0de005ad05.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h4FmFYFHGzcQHusIZH6nT-fPB7k=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.145536+00 2025-12-09 10:16:07.145541+00 22114 FX023#CCD SPMX-20240815317383 \N \N \N 1 \N [{"file_id": "034dab1f-8ad9-4dc5-ad4d-e97b5aeb60d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37e8359bd8594764816167b11fc2ad55.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37e8359bd8594764816167b11fc2ad55.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37e8359bd8594764816167b11fc2ad55.jpg", "file_size": 15836, "is_delete": false, "file_type": 1, "original_file_name": "FX023#CCD.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e8359bd8594764816167b11fc2ad55.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e8359bd8594764816167b11fc2ad55.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37e8359bd8594764816167b11fc2ad55.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37e8359bd8594764816167b11fc2ad55.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37e8359bd8594764816167b11fc2ad55.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qifCDsec1-Xa8P6vf29LKE84ZY4=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.149107+00 2025-12-09 10:16:07.149114+00 22115 LZ1435#上身3号色 SPMX-20240815317378 \N \N \N 1 \N [{"file_id": "b45497cc-2c66-4d1e-ba60-ba0cf9de2d4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ef77c9ac22bd47aa8ed45f215c5736b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ef77c9ac22bd47aa8ed45f215c5736b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ef77c9ac22bd47aa8ed45f215c5736b6.jpg", "file_size": 16343, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef77c9ac22bd47aa8ed45f215c5736b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef77c9ac22bd47aa8ed45f215c5736b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ef77c9ac22bd47aa8ed45f215c5736b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ef77c9ac22bd47aa8ed45f215c5736b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ef77c9ac22bd47aa8ed45f215c5736b6.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ReRZKeX6u4kuf-V8ELssq4O-844=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.152687+00 2025-12-09 10:16:07.152695+00 22116 0044-A14#样版色 SPMX-20240815317371 \N \N \N 1 \N [{"file_id": "03db54ef-d0fe-4cae-a902-766fedb8e70b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2825b72eb01147b38f40d0bf32b2bfa3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2825b72eb01147b38f40d0bf32b2bfa3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2825b72eb01147b38f40d0bf32b2bfa3.jpg", "file_size": 8923, "is_delete": false, "file_type": 1, "original_file_name": "0044-A14#样版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2825b72eb01147b38f40d0bf32b2bfa3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2825b72eb01147b38f40d0bf32b2bfa3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2825b72eb01147b38f40d0bf32b2bfa3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2825b72eb01147b38f40d0bf32b2bfa3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2825b72eb01147b38f40d0bf32b2bfa3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9nk2V-stZ9OMNiyo3RrG_n3Tmlg=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.156245+00 2025-12-09 10:16:07.156252+00 22117 DN-D3075#2XL SPMX-20240815317375 \N \N \N 1 \N [{"file_id": "cedb7a3c-d674-44a9-9856-08eb28fe7c70", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d08998930614a00b8e346cdaf0156bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d08998930614a00b8e346cdaf0156bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d08998930614a00b8e346cdaf0156bc.jpg", "file_size": 74244, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d08998930614a00b8e346cdaf0156bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d08998930614a00b8e346cdaf0156bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d08998930614a00b8e346cdaf0156bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d08998930614a00b8e346cdaf0156bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d08998930614a00b8e346cdaf0156bc.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GfUd-TbTLGa93tVIXqCX9t_Mdoc=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.15976+00 2025-12-09 10:16:07.159766+00 22118 243075#-02-1-3XL码 SPMX-20240815317373 \N \N \N 1 \N [{"file_id": "b36b33a4-80b2-44f3-81a4-1acc3eab0036", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b04d8401d1a4603bc06f6a20e58fd39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b04d8401d1a4603bc06f6a20e58fd39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b04d8401d1a4603bc06f6a20e58fd39.jpg", "file_size": 51217, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d8401d1a4603bc06f6a20e58fd39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d8401d1a4603bc06f6a20e58fd39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d8401d1a4603bc06f6a20e58fd39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b04d8401d1a4603bc06f6a20e58fd39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b04d8401d1a4603bc06f6a20e58fd39.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fMAEsycAGi06FzZ1lZk5WDU5hEU=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.16377+00 2025-12-09 10:16:07.163778+00 22119 1286FWE#黄色 SPMX-20240815317374 \N \N \N 1 \N [{"file_id": "26cf621f-c1f2-4577-8af3-321a186360a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a329442ea054d9f9eb6837b5c4f8ad4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a329442ea054d9f9eb6837b5c4f8ad4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a329442ea054d9f9eb6837b5c4f8ad4.jpg", "file_size": 18674, "is_delete": false, "file_type": 1, "original_file_name": "1286FWE#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a329442ea054d9f9eb6837b5c4f8ad4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a329442ea054d9f9eb6837b5c4f8ad4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a329442ea054d9f9eb6837b5c4f8ad4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a329442ea054d9f9eb6837b5c4f8ad4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a329442ea054d9f9eb6837b5c4f8ad4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M-zsJjchs3fXvv_fL0x6z-eF1iI=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.167583+00 2025-12-09 10:16:07.16759+00 22120 FX023# SPMX-20240815317372 \N \N \N 1 \N [{"file_id": "e5e9e2a5-2e2d-4221-85ba-55fa974d3760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8204ebf5df7544c9a6fbfda0039856cb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8204ebf5df7544c9a6fbfda0039856cb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8204ebf5df7544c9a6fbfda0039856cb.jpg", "file_size": 8269, "is_delete": false, "file_type": 1, "original_file_name": "FX023#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8204ebf5df7544c9a6fbfda0039856cb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8204ebf5df7544c9a6fbfda0039856cb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8204ebf5df7544c9a6fbfda0039856cb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8204ebf5df7544c9a6fbfda0039856cb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8204ebf5df7544c9a6fbfda0039856cb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5NpQEVvNGhzY9KqMomqbLSZRpPw=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.171237+00 2025-12-09 10:16:07.171243+00 22121 JY-HS-168#袖子7号色 SPMX-20240815317376 \N \N \N 1 \N [{"file_id": "933b476e-a525-41fe-a5ef-39d6437f446d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ece94ac38f89474388f3920caba9951d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ece94ac38f89474388f3920caba9951d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ece94ac38f89474388f3920caba9951d.jpg", "file_size": 12646, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#袖子7号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece94ac38f89474388f3920caba9951d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece94ac38f89474388f3920caba9951d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ece94ac38f89474388f3920caba9951d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ece94ac38f89474388f3920caba9951d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ece94ac38f89474388f3920caba9951d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CVsRSf1DgTMLomu3kX39AiYs_6A=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.174711+00 2025-12-09 10:16:07.174719+00 22122 LJW003#黑 SPMX-20240815317379 \N \N \N 1 \N [{"file_id": "9883d8ac-15d9-4a2f-a385-36bd39191920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aecba19f8b0148579277969c30d582e8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aecba19f8b0148579277969c30d582e8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aecba19f8b0148579277969c30d582e8.jpg", "file_size": 12557, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecba19f8b0148579277969c30d582e8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecba19f8b0148579277969c30d582e8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aecba19f8b0148579277969c30d582e8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aecba19f8b0148579277969c30d582e8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aecba19f8b0148579277969c30d582e8.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UHp190vQcG2E59zwbjC9kIhbxQ0=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.178257+00 2025-12-09 10:16:07.178264+00 22123 CHiC140#6号色-25码 SPMX-20240815317381 \N \N \N 1 \N [{"file_id": "56e3e414-dd1b-4c80-8967-dbaaa350b5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fb9302ed26e54eb692bb0febd4be8fc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fb9302ed26e54eb692bb0febd4be8fc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fb9302ed26e54eb692bb0febd4be8fc9.jpg", "file_size": 50727, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9302ed26e54eb692bb0febd4be8fc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9302ed26e54eb692bb0febd4be8fc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fb9302ed26e54eb692bb0febd4be8fc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fb9302ed26e54eb692bb0febd4be8fc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fb9302ed26e54eb692bb0febd4be8fc9.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DFaeyUXS06GS2rNFBkbSNBh24fs=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.181761+00 2025-12-09 10:16:07.181768+00 22124 CHiC140#6号色-24码 SPMX-20240815317369 \N \N \N 1 \N [{"file_id": "4663fe5b-34b1-431f-97eb-bad80aa580ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45b3772c014b41c38b4fcc3910db643c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45b3772c014b41c38b4fcc3910db643c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45b3772c014b41c38b4fcc3910db643c.jpg", "file_size": 49180, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b3772c014b41c38b4fcc3910db643c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b3772c014b41c38b4fcc3910db643c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45b3772c014b41c38b4fcc3910db643c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45b3772c014b41c38b4fcc3910db643c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45b3772c014b41c38b4fcc3910db643c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:w7dd0ZWsKmw-v_ujOkaY0sWq2IA=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.185287+00 2025-12-09 10:16:07.185294+00 22125 HXF051FW#VS-D3大红 SPMX-20240815317370 \N \N \N 1 \N [{"file_id": "fb8e927a-f317-44ba-905e-95d948d7b985", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7025accbe8540d6a68874ad59e3d985.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7025accbe8540d6a68874ad59e3d985.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7025accbe8540d6a68874ad59e3d985.jpg", "file_size": 20680, "is_delete": false, "file_type": 1, "original_file_name": "HXF051FW#VS-D3大红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7025accbe8540d6a68874ad59e3d985.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7025accbe8540d6a68874ad59e3d985.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7025accbe8540d6a68874ad59e3d985.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7025accbe8540d6a68874ad59e3d985.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7025accbe8540d6a68874ad59e3d985.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:suMsj4X0URzxtSeeUae30UOWmng=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.18869+00 2025-12-09 10:16:07.1887+00 22126 LJW003#黄 SPMX-20240815317368 \N \N \N 1 \N [{"file_id": "57bd539d-0d3c-45a2-bdb3-f4929c48ba69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d114ba99c5dc4388adcba66023a841c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d114ba99c5dc4388adcba66023a841c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d114ba99c5dc4388adcba66023a841c5.jpg", "file_size": 20896, "is_delete": false, "file_type": 1, "original_file_name": "LJW003#黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d114ba99c5dc4388adcba66023a841c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d114ba99c5dc4388adcba66023a841c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d114ba99c5dc4388adcba66023a841c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d114ba99c5dc4388adcba66023a841c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d114ba99c5dc4388adcba66023a841c5.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g3Ac2quEs4FAvdhN9W5RYnZkQpc=", "createTime": "2024-08-15 15:11:19"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.192249+00 2025-12-09 10:16:07.192255+00 22127 HXF052FW#VS-D3粉色 SPMX-20240815317380 \N \N \N 1 \N [{"file_id": "0252a7c3-d3b9-40be-b8c8-5f05f77ea85b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbe3acab48b14db0bc7529c6e5c4cada.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbe3acab48b14db0bc7529c6e5c4cada.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbe3acab48b14db0bc7529c6e5c4cada.jpg", "file_size": 10915, "is_delete": false, "file_type": 1, "original_file_name": "HXF052FW#VS-D3粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe3acab48b14db0bc7529c6e5c4cada.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe3acab48b14db0bc7529c6e5c4cada.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbe3acab48b14db0bc7529c6e5c4cada.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbe3acab48b14db0bc7529c6e5c4cada.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbe3acab48b14db0bc7529c6e5c4cada.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ykS_LiF6u9PHlAXDBo1Ie0Vapw0=", "createTime": "2024-08-15 15:11:20"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.195656+00 2025-12-09 10:16:07.195663+00 22128 LZ1435#上身5号色 SPMX-20240815317398 \N \N \N 1 \N [{"file_id": "ed25ea93-468f-4ecb-b2ae-1f0b656e57ec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7df1ea661c14ae0b756b8b9c7631333.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7df1ea661c14ae0b756b8b9c7631333.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7df1ea661c14ae0b756b8b9c7631333.jpg", "file_size": 16518, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7df1ea661c14ae0b756b8b9c7631333.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7df1ea661c14ae0b756b8b9c7631333.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7df1ea661c14ae0b756b8b9c7631333.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7df1ea661c14ae0b756b8b9c7631333.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7df1ea661c14ae0b756b8b9c7631333.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:khHMNC4jgItem36jL7hMEm3EugI=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.199195+00 2025-12-09 10:16:07.199202+00 22129 243075#-02-2-2XL码 SPMX-20240815317384 \N \N \N 1 \N [{"file_id": "00e416b4-7624-4c2c-b3b7-66a3bd91c909", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "88a9949ee61b4ef79a5eeacbca83ef9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "88a9949ee61b4ef79a5eeacbca83ef9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "88a9949ee61b4ef79a5eeacbca83ef9e.jpg", "file_size": 48333, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9949ee61b4ef79a5eeacbca83ef9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9949ee61b4ef79a5eeacbca83ef9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/88a9949ee61b4ef79a5eeacbca83ef9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/88a9949ee61b4ef79a5eeacbca83ef9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/88a9949ee61b4ef79a5eeacbca83ef9e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQSecAqToE_twq7UYYEaN2giX9k=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.202637+00 2025-12-09 10:16:07.202644+00 22130 JY-HS-168#袖子8号色 SPMX-20240815317387 \N \N \N 1 \N [{"file_id": "6bcb2de0-998a-4d89-8984-12b3ab68f1fc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f1e2796d3c499aa8019a05325bbef7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f1e2796d3c499aa8019a05325bbef7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f1e2796d3c499aa8019a05325bbef7.jpg", "file_size": 13802, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#袖子8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f1e2796d3c499aa8019a05325bbef7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f1e2796d3c499aa8019a05325bbef7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f1e2796d3c499aa8019a05325bbef7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f1e2796d3c499aa8019a05325bbef7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f1e2796d3c499aa8019a05325bbef7.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1bothXKlALy2IdocOdCSp9Gx7bg=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.206403+00 2025-12-09 10:16:07.206411+00 22131 243075#-02-2-3XL码 SPMX-20240815317395 \N \N \N 1 \N [{"file_id": "d273b837-9095-44d5-aabf-f6a775d2724d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1f41b0672ecc4be6bca9f24026883ad4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1f41b0672ecc4be6bca9f24026883ad4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1f41b0672ecc4be6bca9f24026883ad4.jpg", "file_size": 47244, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f41b0672ecc4be6bca9f24026883ad4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f41b0672ecc4be6bca9f24026883ad4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1f41b0672ecc4be6bca9f24026883ad4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1f41b0672ecc4be6bca9f24026883ad4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1f41b0672ecc4be6bca9f24026883ad4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6NHK5srEumS-q2Tl5MuKJ-3ipck=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.210278+00 2025-12-09 10:16:07.210284+00 22132 HXF052FW#VS-D3蓝色 SPMX-20240815317391 \N \N \N 1 \N [{"file_id": "aece0b8b-29ad-42d6-908c-666bb080adac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "999b8e190a6c419a891393980d7e23d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "999b8e190a6c419a891393980d7e23d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "999b8e190a6c419a891393980d7e23d4.jpg", "file_size": 18699, "is_delete": false, "file_type": 1, "original_file_name": "HXF052FW#VS-D3蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999b8e190a6c419a891393980d7e23d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999b8e190a6c419a891393980d7e23d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999b8e190a6c419a891393980d7e23d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/999b8e190a6c419a891393980d7e23d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/999b8e190a6c419a891393980d7e23d4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eNUMGoVURnqjITGVgDEavrb-eMA=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.214003+00 2025-12-09 10:16:07.214011+00 22133 DN-D3075#3XL SPMX-20240815317388 \N \N \N 1 \N [{"file_id": "ad97840b-b79a-40b9-9368-b66dcd5d38b1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2d02a5fe1240451cb68c8a05644a4742.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2d02a5fe1240451cb68c8a05644a4742.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2d02a5fe1240451cb68c8a05644a4742.jpg", "file_size": 71697, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d02a5fe1240451cb68c8a05644a4742.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d02a5fe1240451cb68c8a05644a4742.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2d02a5fe1240451cb68c8a05644a4742.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2d02a5fe1240451cb68c8a05644a4742.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2d02a5fe1240451cb68c8a05644a4742.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kquar6spXybug-ZLdrCPndXulb8=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.217535+00 2025-12-09 10:16:07.217542+00 22134 88380FWF#红克46码 SPMX-20240815317386 \N \N \N 1 \N [{"file_id": "42eaf902-b4f6-4330-8de8-514e516cbe43", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77a88fe79c224028b0eebc10b00e7cdd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77a88fe79c224028b0eebc10b00e7cdd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77a88fe79c224028b0eebc10b00e7cdd.jpg", "file_size": 23427, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#红克46码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a88fe79c224028b0eebc10b00e7cdd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a88fe79c224028b0eebc10b00e7cdd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a88fe79c224028b0eebc10b00e7cdd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77a88fe79c224028b0eebc10b00e7cdd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77a88fe79c224028b0eebc10b00e7cdd.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmTdjh7EBtUBiy92xgS9Xu_y9xE=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.221123+00 2025-12-09 10:16:07.221129+00 22135 129#-深杏 SPMX-20240815317396 \N \N \N 1 \N [{"file_id": "0c1c55c5-bd7e-470b-b13a-6c51a6f2ed7d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e834f68771e34722b94fbbf3a4251e4a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e834f68771e34722b94fbbf3a4251e4a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e834f68771e34722b94fbbf3a4251e4a.jpg", "file_size": 49331, "is_delete": false, "file_type": 1, "original_file_name": "129#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e834f68771e34722b94fbbf3a4251e4a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e834f68771e34722b94fbbf3a4251e4a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e834f68771e34722b94fbbf3a4251e4a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e834f68771e34722b94fbbf3a4251e4a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e834f68771e34722b94fbbf3a4251e4a.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jOJf5LDEustxlvCBfbVJs6YJBk4=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.224762+00 2025-12-09 10:16:07.224767+00 22136 LZ1435#上身4号色 SPMX-20240815317389 \N \N \N 1 \N [{"file_id": "c5676dee-db70-4668-8215-523781f811be", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d228209cf79240a0be468e9d156605f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d228209cf79240a0be468e9d156605f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d228209cf79240a0be468e9d156605f0.jpg", "file_size": 16429, "is_delete": false, "file_type": 1, "original_file_name": "LZ1435#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d228209cf79240a0be468e9d156605f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d228209cf79240a0be468e9d156605f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d228209cf79240a0be468e9d156605f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d228209cf79240a0be468e9d156605f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d228209cf79240a0be468e9d156605f0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cRMLFKwJ-sD9G1uA7lpsGL-A9_U=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.228867+00 2025-12-09 10:16:07.228876+00 22137 DN-D3075#L SPMX-20240815317397 \N \N \N 1 \N [{"file_id": "0eda6474-448d-4c66-a212-06a8e17bc892", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7745bc9504ea401da1b07a85f27c6449.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7745bc9504ea401da1b07a85f27c6449.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7745bc9504ea401da1b07a85f27c6449.jpg", "file_size": 75718, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7745bc9504ea401da1b07a85f27c6449.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7745bc9504ea401da1b07a85f27c6449.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7745bc9504ea401da1b07a85f27c6449.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7745bc9504ea401da1b07a85f27c6449.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7745bc9504ea401da1b07a85f27c6449.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NGXCvK636lygkceU1Sdms2LuyP4=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.232804+00 2025-12-09 10:16:07.232812+00 22138 0044-A15#LWQ15 SPMX-20240815317394 \N \N \N 1 \N [{"file_id": "81324472-5300-495e-adf4-86b8d265a5f4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ae4c7457cca40fc94a70f86cf6f57a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ae4c7457cca40fc94a70f86cf6f57a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ae4c7457cca40fc94a70f86cf6f57a4.jpg", "file_size": 14180, "is_delete": false, "file_type": 1, "original_file_name": "0044-A15#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae4c7457cca40fc94a70f86cf6f57a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae4c7457cca40fc94a70f86cf6f57a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae4c7457cca40fc94a70f86cf6f57a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ae4c7457cca40fc94a70f86cf6f57a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ae4c7457cca40fc94a70f86cf6f57a4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_f8iX9BAM8webLweoGbe80X2WyM=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.236451+00 2025-12-09 10:16:07.236458+00 22139 FX023#D SPMX-20240815317392 \N \N \N 1 \N [{"file_id": "da1614c8-3a0b-451f-b165-0ab94ead4fec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fccb16e02c3d4427915d8e71cb1b69dc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fccb16e02c3d4427915d8e71cb1b69dc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fccb16e02c3d4427915d8e71cb1b69dc.jpg", "file_size": 15596, "is_delete": false, "file_type": 1, "original_file_name": "FX023#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fccb16e02c3d4427915d8e71cb1b69dc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fccb16e02c3d4427915d8e71cb1b69dc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fccb16e02c3d4427915d8e71cb1b69dc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fccb16e02c3d4427915d8e71cb1b69dc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fccb16e02c3d4427915d8e71cb1b69dc.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ipp1vUTa78rpAUDY2MZGp-n2wio=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.239999+00 2025-12-09 10:16:07.240005+00 22140 LJW003FW#VS-3白 SPMX-20240815317390 \N \N \N 1 \N [{"file_id": "edbbc572-4160-475d-88de-1052d7f4f3c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3e2e856d84db49fead5e8c65cd3c64ff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3e2e856d84db49fead5e8c65cd3c64ff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3e2e856d84db49fead5e8c65cd3c64ff.jpg", "file_size": 20848, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2e856d84db49fead5e8c65cd3c64ff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2e856d84db49fead5e8c65cd3c64ff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3e2e856d84db49fead5e8c65cd3c64ff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3e2e856d84db49fead5e8c65cd3c64ff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3e2e856d84db49fead5e8c65cd3c64ff.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HuvQH06pv-RnyL8f8z3VqAhW8wU=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.243875+00 2025-12-09 10:16:07.243882+00 22141 CHiC140#6号色净色 SPMX-20240815317393 \N \N \N 1 \N [{"file_id": "038bb23b-0127-483c-8bdc-59f2170d18bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c05e6d8d2d2249e2ab604b4b13203239.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c05e6d8d2d2249e2ab604b4b13203239.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c05e6d8d2d2249e2ab604b4b13203239.jpg", "file_size": 13527, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#6号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05e6d8d2d2249e2ab604b4b13203239.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05e6d8d2d2249e2ab604b4b13203239.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c05e6d8d2d2249e2ab604b4b13203239.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c05e6d8d2d2249e2ab604b4b13203239.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c05e6d8d2d2249e2ab604b4b13203239.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:g8UpsOI0VxYUy-J0NpTUwR1kMsg=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.247541+00 2025-12-09 10:16:07.247547+00 22142 1286FWE#黑色 SPMX-20240815317385 \N \N \N 1 \N [{"file_id": "5ae3edc1-eec6-4ca3-9201-14b8d6c8a394", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2693a7a0a1f4d1ca5b37132dde5c43d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2693a7a0a1f4d1ca5b37132dde5c43d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2693a7a0a1f4d1ca5b37132dde5c43d.jpg", "file_size": 19425, "is_delete": false, "file_type": 1, "original_file_name": "1286FWE#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2693a7a0a1f4d1ca5b37132dde5c43d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2693a7a0a1f4d1ca5b37132dde5c43d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2693a7a0a1f4d1ca5b37132dde5c43d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2693a7a0a1f4d1ca5b37132dde5c43d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2693a7a0a1f4d1ca5b37132dde5c43d.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dDzvMm4v7vWq02QeNkBRpFpz8qc=", "createTime": "2024-08-15 15:11:21"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.251137+00 2025-12-09 10:16:07.251143+00 22143 88380FWF#红克48码 SPMX-20240815317399 \N \N \N 1 \N [{"file_id": "425d66d4-0fde-47ad-8889-0ae183f760d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ebaa687bfba44af9a19da993900e2c72.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ebaa687bfba44af9a19da993900e2c72.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ebaa687bfba44af9a19da993900e2c72.jpg", "file_size": 24008, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#红克48码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaa687bfba44af9a19da993900e2c72.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaa687bfba44af9a19da993900e2c72.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ebaa687bfba44af9a19da993900e2c72.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ebaa687bfba44af9a19da993900e2c72.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ebaa687bfba44af9a19da993900e2c72.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XdkQsa4_6LslvhBTUUvZfUo0xyU=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.254927+00 2025-12-09 10:16:07.254934+00 22144 JY-HS-168#袖子9号色 SPMX-20240815317400 \N \N \N 1 \N [{"file_id": "4e3a116a-c981-4d23-86b6-25cc4669bc7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "191b5b898a4743bf9a32082a9a51bc94.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "191b5b898a4743bf9a32082a9a51bc94.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "191b5b898a4743bf9a32082a9a51bc94.jpg", "file_size": 13912, "is_delete": false, "file_type": 1, "original_file_name": "JY-HS-168#袖子9号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191b5b898a4743bf9a32082a9a51bc94.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191b5b898a4743bf9a32082a9a51bc94.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/191b5b898a4743bf9a32082a9a51bc94.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/191b5b898a4743bf9a32082a9a51bc94.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/191b5b898a4743bf9a32082a9a51bc94.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:48xrPdweAPJfTK5N9PXarJ_ppg4=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.258753+00 2025-12-09 10:16:07.258759+00 22145 CHiC140#7号色-21码 SPMX-20240815317404 \N \N \N 1 \N [{"file_id": "1d8c9425-46f1-4aba-877f-f2c4a30d4192", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69f4dec0f59848d3af224464f3aa73ee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69f4dec0f59848d3af224464f3aa73ee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69f4dec0f59848d3af224464f3aa73ee.jpg", "file_size": 54084, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f4dec0f59848d3af224464f3aa73ee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f4dec0f59848d3af224464f3aa73ee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69f4dec0f59848d3af224464f3aa73ee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69f4dec0f59848d3af224464f3aa73ee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69f4dec0f59848d3af224464f3aa73ee.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hQQwg_3TblziycgMwAmFURpCepM=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.262521+00 2025-12-09 10:16:07.262528+00 22146 CHiC140#7号色-22码 SPMX-20240815317414 \N \N \N 1 \N [{"file_id": "a79cab71-a857-452d-ba64-f32376e99879", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e32d364312a41008454d62734ae8048.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e32d364312a41008454d62734ae8048.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e32d364312a41008454d62734ae8048.jpg", "file_size": 51983, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e32d364312a41008454d62734ae8048.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e32d364312a41008454d62734ae8048.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e32d364312a41008454d62734ae8048.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e32d364312a41008454d62734ae8048.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e32d364312a41008454d62734ae8048.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4Wtb6KFQxN6hmMJxj9oBwSo954M=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.266097+00 2025-12-09 10:16:07.266103+00 22147 88380FWF#红克50码 SPMX-20240815317407 \N \N \N 1 \N [{"file_id": "30529d9b-dc8f-4a78-b86d-ec5e6699b289", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg", "file_size": 24129, "is_delete": false, "file_type": 1, "original_file_name": "88380FWF#红克50码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b7b018f62c04cb8a8e16d14e9ce8ee3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9NQu4qGGn-pWtsBzoSh-2OqIPjo=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.269763+00 2025-12-09 10:16:07.269769+00 22148 HXF054FW#白VS-D3 SPMX-20240815317411 \N \N \N 1 \N [{"file_id": "5fd63080-a916-4de8-b11b-f187db141920", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9a6addb020c4f26a76140c6dd90d5bb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9a6addb020c4f26a76140c6dd90d5bb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9a6addb020c4f26a76140c6dd90d5bb.jpg", "file_size": 11707, "is_delete": false, "file_type": 1, "original_file_name": "HXF054FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a6addb020c4f26a76140c6dd90d5bb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a6addb020c4f26a76140c6dd90d5bb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9a6addb020c4f26a76140c6dd90d5bb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9a6addb020c4f26a76140c6dd90d5bb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9a6addb020c4f26a76140c6dd90d5bb.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z8VniOgTAxQebImFUBS5hY80azw=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.273365+00 2025-12-09 10:16:07.273372+00 22149 HXF053FW#VS-D3 SPMX-20240815317401 \N \N \N 1 \N [{"file_id": "a685eaea-697b-4c59-ba8e-fd0a4844dfe6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf81577c92884043abbec30e129788e0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf81577c92884043abbec30e129788e0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf81577c92884043abbec30e129788e0.jpg", "file_size": 14382, "is_delete": false, "file_type": 1, "original_file_name": "HXF053FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf81577c92884043abbec30e129788e0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf81577c92884043abbec30e129788e0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf81577c92884043abbec30e129788e0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf81577c92884043abbec30e129788e0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf81577c92884043abbec30e129788e0.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zdR_Y0EqxJOoLDjaj1FaEUklNpM=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.2771+00 2025-12-09 10:16:07.277106+00 22150 FX023FW#VS-D3 SPMX-20240815317415 \N \N \N 1 \N [{"file_id": "3e8a3b14-d0fb-4a8c-a001-8996e67f25b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05d8528664d54ef49cf0682607ecb254.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05d8528664d54ef49cf0682607ecb254.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05d8528664d54ef49cf0682607ecb254.jpg", "file_size": 11848, "is_delete": false, "file_type": 1, "original_file_name": "FX023FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d8528664d54ef49cf0682607ecb254.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d8528664d54ef49cf0682607ecb254.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05d8528664d54ef49cf0682607ecb254.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05d8528664d54ef49cf0682607ecb254.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05d8528664d54ef49cf0682607ecb254.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:H4aBS2Ki0bJpPLQUmOIfUxSocbc=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.280615+00 2025-12-09 10:16:07.280622+00 22151 LJW003FW#VS-D3 SPMX-20240815317402 \N \N \N 1 \N [{"file_id": "938d3953-8896-403f-afe5-046a33e8dc8c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d10cc721d2b744599dcbba145b1a36f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d10cc721d2b744599dcbba145b1a36f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d10cc721d2b744599dcbba145b1a36f5.jpg", "file_size": 21460, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10cc721d2b744599dcbba145b1a36f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10cc721d2b744599dcbba145b1a36f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d10cc721d2b744599dcbba145b1a36f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d10cc721d2b744599dcbba145b1a36f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d10cc721d2b744599dcbba145b1a36f5.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N4izdIs8ZfOOw72D6Dy6Z7DVpoo=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.284265+00 2025-12-09 10:16:07.284271+00 22152 243075#-02-3-2XL码 SPMX-20240815317405 \N \N \N 1 \N [{"file_id": "feb2a113-a881-4df9-b4cc-fe4d5741b684", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "383af1b6d68d473ca5bc7c109615734c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "383af1b6d68d473ca5bc7c109615734c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "383af1b6d68d473ca5bc7c109615734c.jpg", "file_size": 45888, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383af1b6d68d473ca5bc7c109615734c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383af1b6d68d473ca5bc7c109615734c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/383af1b6d68d473ca5bc7c109615734c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/383af1b6d68d473ca5bc7c109615734c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/383af1b6d68d473ca5bc7c109615734c.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Wr_Au9-G2lHmwOMqh7Rht-XqJhA=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.287886+00 2025-12-09 10:16:07.287893+00 22153 129#-灰色 SPMX-20240815317413 \N \N \N 1 \N [{"file_id": "0811e0e8-c1a6-4e52-a13e-c5d4c041868d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "742cf18a3d3f4cda88edabc7fc494f36.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "742cf18a3d3f4cda88edabc7fc494f36.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "742cf18a3d3f4cda88edabc7fc494f36.jpg", "file_size": 62076, "is_delete": false, "file_type": 1, "original_file_name": "129#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742cf18a3d3f4cda88edabc7fc494f36.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742cf18a3d3f4cda88edabc7fc494f36.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/742cf18a3d3f4cda88edabc7fc494f36.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/742cf18a3d3f4cda88edabc7fc494f36.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/742cf18a3d3f4cda88edabc7fc494f36.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BOr4pZeSXHj__dclDEwmX0Qb0bU=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.292132+00 2025-12-09 10:16:07.292138+00 22154 FX023#下摆 SPMX-20240815317403 \N \N \N 1 \N [{"file_id": "53ffa868-c78f-4b72-8665-acb305aa206f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "401d35b977ec42789d574681306981a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "401d35b977ec42789d574681306981a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "401d35b977ec42789d574681306981a2.jpg", "file_size": 18623, "is_delete": false, "file_type": 1, "original_file_name": "FX023#下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401d35b977ec42789d574681306981a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401d35b977ec42789d574681306981a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/401d35b977ec42789d574681306981a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/401d35b977ec42789d574681306981a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/401d35b977ec42789d574681306981a2.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l8Lyg9zAfCdL4PUjQFql7U1g26w=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.296935+00 2025-12-09 10:16:07.296941+00 22155 LZ1436#上身1号色 SPMX-20240815317406 \N \N \N 1 \N [{"file_id": "457da357-03cf-4d92-b280-57d51d9f990b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "27a8dc714d7d4d59a80de1cbdf4de9d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "27a8dc714d7d4d59a80de1cbdf4de9d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "27a8dc714d7d4d59a80de1cbdf4de9d3.jpg", "file_size": 18595, "is_delete": false, "file_type": 1, "original_file_name": "LZ1436#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a8dc714d7d4d59a80de1cbdf4de9d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a8dc714d7d4d59a80de1cbdf4de9d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/27a8dc714d7d4d59a80de1cbdf4de9d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/27a8dc714d7d4d59a80de1cbdf4de9d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/27a8dc714d7d4d59a80de1cbdf4de9d3.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LqZ6EeudIRzavx8vCJ_hU6rhku8=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.30085+00 2025-12-09 10:16:07.300856+00 22156 JY-JA-208#1号玫红 SPMX-20240815317408 \N \N \N 1 \N [{"file_id": "3c3e017f-da68-4e20-b2f8-a7a2a64f2f03", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ae10fbbb60704df194e1d3e96de70619.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ae10fbbb60704df194e1d3e96de70619.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ae10fbbb60704df194e1d3e96de70619.jpg", "file_size": 7790, "is_delete": false, "file_type": 1, "original_file_name": "JY-JA-208#1号玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae10fbbb60704df194e1d3e96de70619.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae10fbbb60704df194e1d3e96de70619.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ae10fbbb60704df194e1d3e96de70619.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ae10fbbb60704df194e1d3e96de70619.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ae10fbbb60704df194e1d3e96de70619.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fxoG6xPKYa4riHbk91KgJQpLqsQ=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.304691+00 2025-12-09 10:16:07.304701+00 22157 DN-D3075#M SPMX-20240815317409 \N \N \N 1 \N [{"file_id": "af07151f-ab71-4ee0-a4f8-fbf3fa2d6e7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0d0ab13740740c596711ee5e0d417c4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0d0ab13740740c596711ee5e0d417c4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0d0ab13740740c596711ee5e0d417c4.jpg", "file_size": 79629, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d0ab13740740c596711ee5e0d417c4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d0ab13740740c596711ee5e0d417c4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d0ab13740740c596711ee5e0d417c4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0d0ab13740740c596711ee5e0d417c4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0d0ab13740740c596711ee5e0d417c4.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lFBb5Xh76JAxS35kUs3O6aoxSss=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.308391+00 2025-12-09 10:16:07.308397+00 22158 0044-A17#LWQ15 SPMX-20240815317410 \N \N \N 1 \N [{"file_id": "113581a8-570b-4147-97cf-41c2154bfb2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "80e0bb4158ef4709a8077061b2eda72e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "80e0bb4158ef4709a8077061b2eda72e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "80e0bb4158ef4709a8077061b2eda72e.jpg", "file_size": 17022, "is_delete": false, "file_type": 1, "original_file_name": "0044-A17#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e0bb4158ef4709a8077061b2eda72e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e0bb4158ef4709a8077061b2eda72e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/80e0bb4158ef4709a8077061b2eda72e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/80e0bb4158ef4709a8077061b2eda72e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/80e0bb4158ef4709a8077061b2eda72e.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:81PIeMy5McFP0mxX5IlyjbE9kAc=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:07.312004+00 2025-12-09 10:16:07.312011+00 22159 LJW003FW#VS-D3白 SPMX-20240815317412 \N \N \N 1 \N [{"file_id": "bdac4473-55af-4f1d-8868-50ec84a395e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7ccefd771664841821bba10ef7aa710.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7ccefd771664841821bba10ef7aa710.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7ccefd771664841821bba10ef7aa710.jpg", "file_size": 20800, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ccefd771664841821bba10ef7aa710.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ccefd771664841821bba10ef7aa710.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7ccefd771664841821bba10ef7aa710.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7ccefd771664841821bba10ef7aa710.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7ccefd771664841821bba10ef7aa710.jpg?e=1765361765&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uelFkVaPNKSEYQf1H0qEjBodrBM=", "createTime": "2024-08-15 15:11:22"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.093945+00 2025-12-09 10:16:08.093956+00 22160 LZ1436#上身2号色 SPMX-20240815317417 \N \N \N 1 \N [{"file_id": "1e47f7e3-194e-4d10-8b8c-5767b5d3a51a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64f2e50675554a99a0c50d404bda32fe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64f2e50675554a99a0c50d404bda32fe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64f2e50675554a99a0c50d404bda32fe.jpg", "file_size": 17295, "is_delete": false, "file_type": 1, "original_file_name": "LZ1436#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f2e50675554a99a0c50d404bda32fe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f2e50675554a99a0c50d404bda32fe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64f2e50675554a99a0c50d404bda32fe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64f2e50675554a99a0c50d404bda32fe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64f2e50675554a99a0c50d404bda32fe.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nD3s_71EEMBqzyth3dL_HIXQ0vM=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.098758+00 2025-12-09 10:16:08.098766+00 22161 243075#-02-3-3XL码 SPMX-20240815317416 \N \N \N 1 \N [{"file_id": "3288a409-a087-4d2d-8dc6-0553bfcc9f8b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54431825e17e4f6886b9d60349c7edd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54431825e17e4f6886b9d60349c7edd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54431825e17e4f6886b9d60349c7edd0.jpg", "file_size": 45492, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54431825e17e4f6886b9d60349c7edd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54431825e17e4f6886b9d60349c7edd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54431825e17e4f6886b9d60349c7edd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54431825e17e4f6886b9d60349c7edd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54431825e17e4f6886b9d60349c7edd0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEekXzQqZlBQy0ahE8qSpcoaAHA=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.10255+00 2025-12-09 10:16:08.102556+00 22162 FX023FWE#VS-D3 SPMX-20240815317426 \N \N \N 1 \N [{"file_id": "622ae34e-7e41-4629-938e-408228975bfb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "afe485febaec4e56be5ba58b66f3323d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "afe485febaec4e56be5ba58b66f3323d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "afe485febaec4e56be5ba58b66f3323d.jpg", "file_size": 14107, "is_delete": false, "file_type": 1, "original_file_name": "FX023FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe485febaec4e56be5ba58b66f3323d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe485febaec4e56be5ba58b66f3323d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/afe485febaec4e56be5ba58b66f3323d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/afe485febaec4e56be5ba58b66f3323d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/afe485febaec4e56be5ba58b66f3323d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pdE0qc6CwPhaZORmLbu01VIGEAo=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.106277+00 2025-12-09 10:16:08.106283+00 22163 129#-白色 SPMX-20240815317423 \N \N \N 1 \N [{"file_id": "1b4e6751-1212-4ccf-b2e4-500b00967d42", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f399c1b0e6654a0f894f7bdfc1f013d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f399c1b0e6654a0f894f7bdfc1f013d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f399c1b0e6654a0f894f7bdfc1f013d9.jpg", "file_size": 45218, "is_delete": false, "file_type": 1, "original_file_name": "129#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f399c1b0e6654a0f894f7bdfc1f013d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f399c1b0e6654a0f894f7bdfc1f013d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f399c1b0e6654a0f894f7bdfc1f013d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f399c1b0e6654a0f894f7bdfc1f013d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f399c1b0e6654a0f894f7bdfc1f013d9.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:43RK6BrxH-WLQJa9Ux6NcHXREWw=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.109887+00 2025-12-09 10:16:08.109893+00 22164 CHiC140#7号色-23码 SPMX-20240815317425 \N \N \N 1 \N [{"file_id": "b4ade4ca-a417-451d-950e-222d16cf6d38", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6db0b90231b477c955904d53fc90440.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6db0b90231b477c955904d53fc90440.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6db0b90231b477c955904d53fc90440.jpg", "file_size": 51859, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6db0b90231b477c955904d53fc90440.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6db0b90231b477c955904d53fc90440.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6db0b90231b477c955904d53fc90440.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6db0b90231b477c955904d53fc90440.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6db0b90231b477c955904d53fc90440.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcHhbtpOzGE3fg7IvQuwVbN7eKQ=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.113407+00 2025-12-09 10:16:08.113413+00 22165 243075#-02-4-2XL码 SPMX-20240815317427 \N \N \N 1 \N [{"file_id": "aec1d1f2-3ed3-4eb2-a125-3d0dc2a95713", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f466776173d544ddb5eccadbd188f688.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f466776173d544ddb5eccadbd188f688.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f466776173d544ddb5eccadbd188f688.jpg", "file_size": 52093, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-4-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f466776173d544ddb5eccadbd188f688.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f466776173d544ddb5eccadbd188f688.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f466776173d544ddb5eccadbd188f688.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f466776173d544ddb5eccadbd188f688.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f466776173d544ddb5eccadbd188f688.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wiDx5r2ff1EQXonOojE57WEaYLs=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.117023+00 2025-12-09 10:16:08.117029+00 22166 HXF054FW#红VS-D3 SPMX-20240815317421 \N \N \N 1 \N [{"file_id": "8ca75c87-b849-4525-b8aa-6b841cd731a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ab955385c9ba47cd8159290ba33f53ba.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ab955385c9ba47cd8159290ba33f53ba.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ab955385c9ba47cd8159290ba33f53ba.jpg", "file_size": 15931, "is_delete": false, "file_type": 1, "original_file_name": "HXF054FW#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab955385c9ba47cd8159290ba33f53ba.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab955385c9ba47cd8159290ba33f53ba.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ab955385c9ba47cd8159290ba33f53ba.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ab955385c9ba47cd8159290ba33f53ba.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ab955385c9ba47cd8159290ba33f53ba.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sNKsK2V4qga1JXCJLrj09MAN9yo=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.120762+00 2025-12-09 10:16:08.120768+00 22167 LJW003FW#VS-D3红 SPMX-20240815317424 \N \N \N 1 \N [{"file_id": "b4321185-3fc4-4354-9eef-866c07c7e23f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e4f09b460ac49f491f52ded963d7328.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e4f09b460ac49f491f52ded963d7328.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e4f09b460ac49f491f52ded963d7328.jpg", "file_size": 20800, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4f09b460ac49f491f52ded963d7328.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4f09b460ac49f491f52ded963d7328.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e4f09b460ac49f491f52ded963d7328.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e4f09b460ac49f491f52ded963d7328.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e4f09b460ac49f491f52ded963d7328.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n8XFXMOaHWmKvfrYABZG0_1PD1s=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.124634+00 2025-12-09 10:16:08.124639+00 22168 8839#WJC22 SPMX-20240815317418 \N \N \N 1 \N [{"file_id": "b0e33bd9-73f6-4c3f-9448-d6ef58fc1971", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c7a7725ce2634aeaa686ae091fd38bc2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c7a7725ce2634aeaa686ae091fd38bc2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c7a7725ce2634aeaa686ae091fd38bc2.jpg", "file_size": 14894, "is_delete": false, "file_type": 1, "original_file_name": "8839#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a7725ce2634aeaa686ae091fd38bc2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a7725ce2634aeaa686ae091fd38bc2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c7a7725ce2634aeaa686ae091fd38bc2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c7a7725ce2634aeaa686ae091fd38bc2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c7a7725ce2634aeaa686ae091fd38bc2.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:yf0s4W_q8n3eGFrT56PXof5HusA=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.128253+00 2025-12-09 10:16:08.128258+00 22169 0044-A18#LWQ15 SPMX-20240815317420 \N \N \N 1 \N [{"file_id": "6c545ce1-fa0b-4274-8899-8d893665b50c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76cadb0039a9421e8263047a400ad2f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76cadb0039a9421e8263047a400ad2f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76cadb0039a9421e8263047a400ad2f6.jpg", "file_size": 18036, "is_delete": false, "file_type": 1, "original_file_name": "0044-A18#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cadb0039a9421e8263047a400ad2f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cadb0039a9421e8263047a400ad2f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76cadb0039a9421e8263047a400ad2f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76cadb0039a9421e8263047a400ad2f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76cadb0039a9421e8263047a400ad2f6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:49KhQBJ989C3NCBh7HKtkvmuM4Q=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.131855+00 2025-12-09 10:16:08.131862+00 22170 DN-D3075#XL SPMX-20240815317422 \N \N \N 1 \N [{"file_id": "d3d60460-1335-4da2-b3d0-f4add81b6d5e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eecc3dce190d416dab6f81c42633fffa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eecc3dce190d416dab6f81c42633fffa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eecc3dce190d416dab6f81c42633fffa.jpg", "file_size": 74318, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eecc3dce190d416dab6f81c42633fffa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eecc3dce190d416dab6f81c42633fffa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eecc3dce190d416dab6f81c42633fffa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eecc3dce190d416dab6f81c42633fffa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eecc3dce190d416dab6f81c42633fffa.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KtVkz3agYZTVQNlBDFQmgLijPp0=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.135617+00 2025-12-09 10:16:08.135624+00 22171 JY-JA-208#2号焦糖 SPMX-20240815317419 \N \N \N 1 \N [{"file_id": "3ffe6ebe-fc63-44b7-b8d9-45f805f418db", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f69b3392fe44ac081b465306d5c547a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f69b3392fe44ac081b465306d5c547a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f69b3392fe44ac081b465306d5c547a.jpg", "file_size": 7999, "is_delete": false, "file_type": 1, "original_file_name": "JY-JA-208#2号焦糖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f69b3392fe44ac081b465306d5c547a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f69b3392fe44ac081b465306d5c547a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f69b3392fe44ac081b465306d5c547a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f69b3392fe44ac081b465306d5c547a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f69b3392fe44ac081b465306d5c547a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lrngZRP3Swd1ZgMU1G0YAjNWwaQ=", "createTime": "2024-08-15 15:11:23"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.139347+00 2025-12-09 10:16:08.139353+00 22172 LZ1436#上身3号色 SPMX-20240815317428 \N \N \N 1 \N [{"file_id": "de168322-334e-4a73-b025-325c438905b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adc237873326453db32725ec3fa47346.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adc237873326453db32725ec3fa47346.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adc237873326453db32725ec3fa47346.jpg", "file_size": 17323, "is_delete": false, "file_type": 1, "original_file_name": "LZ1436#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc237873326453db32725ec3fa47346.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc237873326453db32725ec3fa47346.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adc237873326453db32725ec3fa47346.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adc237873326453db32725ec3fa47346.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adc237873326453db32725ec3fa47346.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5lyfcQd0WPBgYkys2m6x4tkYTes=", "createTime": "2024-08-15 15:11:24"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.143087+00 2025-12-09 10:16:08.143094+00 22173 JY-JA-208#4号桔色 SPMX-20240815317431 \N \N \N 1 \N [{"file_id": "d20ca2ce-e2bf-4a79-84f0-517a25d315bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f94f9f19bec042ebbec56d2be64106f3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f94f9f19bec042ebbec56d2be64106f3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f94f9f19bec042ebbec56d2be64106f3.jpg", "file_size": 8020, "is_delete": false, "file_type": 1, "original_file_name": "JY-JA-208#4号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94f9f19bec042ebbec56d2be64106f3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94f9f19bec042ebbec56d2be64106f3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f94f9f19bec042ebbec56d2be64106f3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f94f9f19bec042ebbec56d2be64106f3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f94f9f19bec042ebbec56d2be64106f3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7R2kP7rPDvNlAT38cMBdWUMpAk=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.146733+00 2025-12-09 10:16:08.14674+00 22174 CHiC140#7号色-24码 SPMX-20240815317436 \N \N \N 1 \N [{"file_id": "641a1edc-8b8d-46ed-87a9-1c7510e504a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54de38f0e9b148a6b9e7700d18c6bb90.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54de38f0e9b148a6b9e7700d18c6bb90.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54de38f0e9b148a6b9e7700d18c6bb90.jpg", "file_size": 49848, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54de38f0e9b148a6b9e7700d18c6bb90.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54de38f0e9b148a6b9e7700d18c6bb90.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54de38f0e9b148a6b9e7700d18c6bb90.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54de38f0e9b148a6b9e7700d18c6bb90.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54de38f0e9b148a6b9e7700d18c6bb90.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uV-ElSJgnJtigv7tkNt5NX4Wlbo=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.150292+00 2025-12-09 10:16:08.150298+00 22175 LJW003FW#VS-D3绿 SPMX-20240815317430 \N \N \N 1 \N [{"file_id": "a3ce73c6-e60f-43b7-98fc-14e39f0d35c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3496b45233a64f0aad73d67e96af97db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3496b45233a64f0aad73d67e96af97db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3496b45233a64f0aad73d67e96af97db.jpg", "file_size": 20997, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3496b45233a64f0aad73d67e96af97db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3496b45233a64f0aad73d67e96af97db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3496b45233a64f0aad73d67e96af97db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3496b45233a64f0aad73d67e96af97db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3496b45233a64f0aad73d67e96af97db.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e_8wD9EbO_SnIL9OARdyR3lMiSA=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.153992+00 2025-12-09 10:16:08.153999+00 22176 129#-黑色 SPMX-20240815317433 \N \N \N 1 \N [{"file_id": "761b31bf-c1b3-4f2a-97d0-9adb22ae248b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d69e1879e6214451b6ddefa25e8ba670.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d69e1879e6214451b6ddefa25e8ba670.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d69e1879e6214451b6ddefa25e8ba670.jpg", "file_size": 47010, "is_delete": false, "file_type": 1, "original_file_name": "129#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69e1879e6214451b6ddefa25e8ba670.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69e1879e6214451b6ddefa25e8ba670.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d69e1879e6214451b6ddefa25e8ba670.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d69e1879e6214451b6ddefa25e8ba670.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d69e1879e6214451b6ddefa25e8ba670.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5eJZEsie5b6o7OpXEDP34smINow=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.157706+00 2025-12-09 10:16:08.157715+00 22177 DN-D3075#领子 SPMX-20240815317437 \N \N \N 1 \N [{"file_id": "5d7275d8-27cd-4454-bd4e-25e3ff6fd762", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8068e116ce4e44238b226743dea175ca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8068e116ce4e44238b226743dea175ca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8068e116ce4e44238b226743dea175ca.jpg", "file_size": 9882, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3075#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8068e116ce4e44238b226743dea175ca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8068e116ce4e44238b226743dea175ca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8068e116ce4e44238b226743dea175ca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8068e116ce4e44238b226743dea175ca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8068e116ce4e44238b226743dea175ca.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qcDTZlqEYZaVzCQjzsTok27mBFY=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.161381+00 2025-12-09 10:16:08.161387+00 22178 8839#WJIC22 SPMX-20240815317434 \N \N \N 1 \N [{"file_id": "c8903c37-eeb5-488f-ae43-e0a2d291de15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a4a9525e962433ab228c5880772637e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a4a9525e962433ab228c5880772637e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a4a9525e962433ab228c5880772637e.jpg", "file_size": 14597, "is_delete": false, "file_type": 1, "original_file_name": "8839#WJIC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4a9525e962433ab228c5880772637e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4a9525e962433ab228c5880772637e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a4a9525e962433ab228c5880772637e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a4a9525e962433ab228c5880772637e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a4a9525e962433ab228c5880772637e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CT31TTm5NGEOR7y-QqkW7CSLf1Y=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.165054+00 2025-12-09 10:16:08.165062+00 22179 0044-A19#LWQ15 SPMX-20240815317432 \N \N \N 1 \N [{"file_id": "05fec097-58ea-44cb-bcbe-0805057c85fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fddb8159121418ba39929b4bfa724c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fddb8159121418ba39929b4bfa724c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fddb8159121418ba39929b4bfa724c9.jpg", "file_size": 22612, "is_delete": false, "file_type": 1, "original_file_name": "0044-A19#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddb8159121418ba39929b4bfa724c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddb8159121418ba39929b4bfa724c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fddb8159121418ba39929b4bfa724c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fddb8159121418ba39929b4bfa724c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fddb8159121418ba39929b4bfa724c9.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:amDRomi0YGmxXm9_vN6We7UkIzU=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.168872+00 2025-12-09 10:16:08.168879+00 22180 LZ1436#上身4号色 SPMX-20240815317435 \N \N \N 1 \N [{"file_id": "6807b9f3-fda3-49f2-92e0-1dc55bb58deb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "002eae3552c04a059f15430a6ca84459.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "002eae3552c04a059f15430a6ca84459.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "002eae3552c04a059f15430a6ca84459.jpg", "file_size": 17161, "is_delete": false, "file_type": 1, "original_file_name": "LZ1436#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002eae3552c04a059f15430a6ca84459.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002eae3552c04a059f15430a6ca84459.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/002eae3552c04a059f15430a6ca84459.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/002eae3552c04a059f15430a6ca84459.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/002eae3552c04a059f15430a6ca84459.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BOuWsew7jZ3I7vbHqiH81JMOZ30=", "createTime": "2024-08-15 15:11:26"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.172532+00 2025-12-09 10:16:08.172538+00 22181 HXF054FW#蓝VS-D3 SPMX-20240815317429 \N \N \N 1 \N [{"file_id": "ef5c804f-d4ea-4b19-b229-11ce190400a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1f6615e42384297ba37d4f85dbeddf0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1f6615e42384297ba37d4f85dbeddf0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1f6615e42384297ba37d4f85dbeddf0.jpg", "file_size": 17228, "is_delete": false, "file_type": 1, "original_file_name": "HXF054FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f6615e42384297ba37d4f85dbeddf0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f6615e42384297ba37d4f85dbeddf0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1f6615e42384297ba37d4f85dbeddf0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1f6615e42384297ba37d4f85dbeddf0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1f6615e42384297ba37d4f85dbeddf0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4UAQy9juQ9rOcB881_kQRkwkb_4=", "createTime": "2024-08-15 15:11:25"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.176222+00 2025-12-09 10:16:08.176229+00 22182 FX024# SPMX-20240815317439 \N \N \N 1 \N [{"file_id": "f794e66f-fe24-478f-b93e-b605f02e2479", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af5075821cda4e5590ee7935f1970109.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af5075821cda4e5590ee7935f1970109.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af5075821cda4e5590ee7935f1970109.jpg", "file_size": 25220, "is_delete": false, "file_type": 1, "original_file_name": "FX024#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af5075821cda4e5590ee7935f1970109.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af5075821cda4e5590ee7935f1970109.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af5075821cda4e5590ee7935f1970109.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af5075821cda4e5590ee7935f1970109.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af5075821cda4e5590ee7935f1970109.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wd_P8mXAErPR4eyx4mT1MgFY2so=", "createTime": "2024-08-15 15:11:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.179834+00 2025-12-09 10:16:08.179841+00 22183 JY-JA-208#7号黑色 SPMX-20240815317440 \N \N \N 1 \N [{"file_id": "77b1e12d-d89c-4940-af0f-4787f22aa9e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a4cd08825a349d2b772d968c59f57b3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a4cd08825a349d2b772d968c59f57b3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a4cd08825a349d2b772d968c59f57b3.jpg", "file_size": 8242, "is_delete": false, "file_type": 1, "original_file_name": "JY-JA-208#7号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4cd08825a349d2b772d968c59f57b3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4cd08825a349d2b772d968c59f57b3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a4cd08825a349d2b772d968c59f57b3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a4cd08825a349d2b772d968c59f57b3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a4cd08825a349d2b772d968c59f57b3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZSH9Z4p7_-tuZmpYVcrRJDwiVE=", "createTime": "2024-08-15 15:11:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.183418+00 2025-12-09 10:16:08.183429+00 22184 0044-A2#LWQ15 SPMX-20240815317441 \N \N \N 1 \N [{"file_id": "4b87c164-70fd-4aaa-99d8-557722f2a465", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd427446fe6c40e8a487ecf66b59fa2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd427446fe6c40e8a487ecf66b59fa2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd427446fe6c40e8a487ecf66b59fa2e.jpg", "file_size": 8294, "is_delete": false, "file_type": 1, "original_file_name": "0044-A2#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd427446fe6c40e8a487ecf66b59fa2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd427446fe6c40e8a487ecf66b59fa2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd427446fe6c40e8a487ecf66b59fa2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd427446fe6c40e8a487ecf66b59fa2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd427446fe6c40e8a487ecf66b59fa2e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2KGm-B12c6ntpG0rfGsaulrigJk=", "createTime": "2024-08-15 15:11:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.187033+00 2025-12-09 10:16:08.18704+00 22185 LJW003FW#VS-D3黄 SPMX-20240815317438 \N \N \N 1 \N [{"file_id": "7367c85d-e7d2-44df-b7f5-d48725db59ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce40c25e89c64114bf7f06296a414b49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce40c25e89c64114bf7f06296a414b49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce40c25e89c64114bf7f06296a414b49.jpg", "file_size": 20997, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce40c25e89c64114bf7f06296a414b49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce40c25e89c64114bf7f06296a414b49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce40c25e89c64114bf7f06296a414b49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce40c25e89c64114bf7f06296a414b49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce40c25e89c64114bf7f06296a414b49.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0CpPUwsRpoZ1GJa6xN078l2k3PI=", "createTime": "2024-08-15 15:11:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.190576+00 2025-12-09 10:16:08.190583+00 22186 LZ1436#上身5号色 SPMX-20240815317444 \N \N \N 1 \N [{"file_id": "61b88012-89fe-4732-8784-8883108dd3ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f92b8854ef44f6fb734b91e5ecbb0de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f92b8854ef44f6fb734b91e5ecbb0de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f92b8854ef44f6fb734b91e5ecbb0de.jpg", "file_size": 17440, "is_delete": false, "file_type": 1, "original_file_name": "LZ1436#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f92b8854ef44f6fb734b91e5ecbb0de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f92b8854ef44f6fb734b91e5ecbb0de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f92b8854ef44f6fb734b91e5ecbb0de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f92b8854ef44f6fb734b91e5ecbb0de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f92b8854ef44f6fb734b91e5ecbb0de.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0ZN9ReGxzsDATcQGbk8QI4nMm8c=", "createTime": "2024-08-15 15:11:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.194244+00 2025-12-09 10:16:08.194251+00 22187 243075#-02-4-3XL码 SPMX-20240815317443 \N \N \N 1 \N [{"file_id": "013632fc-e411-4ddc-8aba-9182e197233a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "45c78e43640940d4910171ce495c0656.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "45c78e43640940d4910171ce495c0656.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "45c78e43640940d4910171ce495c0656.jpg", "file_size": 52880, "is_delete": false, "file_type": 1, "original_file_name": "243075#-02-4-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c78e43640940d4910171ce495c0656.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c78e43640940d4910171ce495c0656.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/45c78e43640940d4910171ce495c0656.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/45c78e43640940d4910171ce495c0656.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/45c78e43640940d4910171ce495c0656.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3WaUBStvyMrsNFJj6k-0WgiMBw4=", "createTime": "2024-08-15 15:11:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.197831+00 2025-12-09 10:16:08.197839+00 22188 88390FWF#宝蓝色 SPMX-20240815317442 \N \N \N 1 \N [{"file_id": "8ce4e0ad-59a0-441e-bd41-a16fe2312c7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "10d7374b5e6e4409bae17d832001b7fb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "10d7374b5e6e4409bae17d832001b7fb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "10d7374b5e6e4409bae17d832001b7fb.jpg", "file_size": 7895, "is_delete": false, "file_type": 1, "original_file_name": "88390FWF#宝蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7374b5e6e4409bae17d832001b7fb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7374b5e6e4409bae17d832001b7fb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/10d7374b5e6e4409bae17d832001b7fb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/10d7374b5e6e4409bae17d832001b7fb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/10d7374b5e6e4409bae17d832001b7fb.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TbwD4C-nB0PIaiupBsEt73zv0_s=", "createTime": "2024-08-15 15:11:27"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.201437+00 2025-12-09 10:16:08.201444+00 22189 DN-D3076#2XL SPMX-20240815317445 \N \N \N 1 \N [{"file_id": "338568d7-aab9-4e1c-aa6f-3530ece90bc2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "229a1e97fb5043b885ae83dd02ed1d9e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "229a1e97fb5043b885ae83dd02ed1d9e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "229a1e97fb5043b885ae83dd02ed1d9e.jpg", "file_size": 72137, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3076#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229a1e97fb5043b885ae83dd02ed1d9e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229a1e97fb5043b885ae83dd02ed1d9e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/229a1e97fb5043b885ae83dd02ed1d9e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/229a1e97fb5043b885ae83dd02ed1d9e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/229a1e97fb5043b885ae83dd02ed1d9e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZUhAaItDrGyeVt78Lu4UkJIEqaQ=", "createTime": "2024-08-15 15:11:28"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.204929+00 2025-12-09 10:16:08.204936+00 22190 LZ1437#上身1号色 SPMX-20240815317453 \N \N \N 1 \N [{"file_id": "d7c87a0e-78fb-4388-bfda-1542ee887a57", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84b6679838024b599f0fe2e19b897188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84b6679838024b599f0fe2e19b897188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84b6679838024b599f0fe2e19b897188.jpg", "file_size": 18853, "is_delete": false, "file_type": 1, "original_file_name": "LZ1437#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6679838024b599f0fe2e19b897188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6679838024b599f0fe2e19b897188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84b6679838024b599f0fe2e19b897188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84b6679838024b599f0fe2e19b897188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84b6679838024b599f0fe2e19b897188.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QLKa6sE9PkBPWBmn1dR2zWsFSho=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.208558+00 2025-12-09 10:16:08.208565+00 22191 JY-JA-208#8号墨绿 SPMX-20240815317448 \N \N \N 1 \N [{"file_id": "59d690e3-fcaf-4fe2-aca2-fe7e4700c677", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6c0a1f975a5480298bffcc9f5cad9b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6c0a1f975a5480298bffcc9f5cad9b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6c0a1f975a5480298bffcc9f5cad9b8.jpg", "file_size": 8175, "is_delete": false, "file_type": 1, "original_file_name": "JY-JA-208#8号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c0a1f975a5480298bffcc9f5cad9b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c0a1f975a5480298bffcc9f5cad9b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6c0a1f975a5480298bffcc9f5cad9b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6c0a1f975a5480298bffcc9f5cad9b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6c0a1f975a5480298bffcc9f5cad9b8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7ESvUMfGHwmuLDGPBERFQWp-0xc=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.215603+00 2025-12-09 10:16:08.21561+00 22193 1297#VS-D3 SPMX-20240815317446 \N \N \N 1 \N [{"file_id": "f05a6ed4-b90a-4d37-a820-09546be39031", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33890182a1a64a73b7ecc486f3c5dc76.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33890182a1a64a73b7ecc486f3c5dc76.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33890182a1a64a73b7ecc486f3c5dc76.jpg", "file_size": 16704, "is_delete": false, "file_type": 1, "original_file_name": "1297#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33890182a1a64a73b7ecc486f3c5dc76.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33890182a1a64a73b7ecc486f3c5dc76.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33890182a1a64a73b7ecc486f3c5dc76.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33890182a1a64a73b7ecc486f3c5dc76.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33890182a1a64a73b7ecc486f3c5dc76.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DKp5kpi43kBFc0nV6IJGj1u7Ulg=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.212082+00 2025-12-09 10:16:08.212088+00 22192 DN-D3076#3XL SPMX-20240815317452 \N \N \N 1 \N [{"file_id": "bfbf7da2-c97a-49a5-a9d2-d1f730a34bdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "03fe679659f9460c9fbb2a5b4740f00a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "03fe679659f9460c9fbb2a5b4740f00a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "03fe679659f9460c9fbb2a5b4740f00a.jpg", "file_size": 70607, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3076#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03fe679659f9460c9fbb2a5b4740f00a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03fe679659f9460c9fbb2a5b4740f00a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/03fe679659f9460c9fbb2a5b4740f00a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/03fe679659f9460c9fbb2a5b4740f00a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/03fe679659f9460c9fbb2a5b4740f00a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPK9s5_IwRVTSqralU56OcOdcOA=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.219228+00 2025-12-09 10:16:08.219235+00 22194 CHiC140#7号色-25 SPMX-20240815317450 \N \N \N 1 \N [{"file_id": "a4a6a60f-b051-44b2-8e12-c8247f5caa4f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31182336528b4a389741020f2fd1c9cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31182336528b4a389741020f2fd1c9cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31182336528b4a389741020f2fd1c9cc.jpg", "file_size": 50416, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-25.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31182336528b4a389741020f2fd1c9cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31182336528b4a389741020f2fd1c9cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31182336528b4a389741020f2fd1c9cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31182336528b4a389741020f2fd1c9cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31182336528b4a389741020f2fd1c9cc.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lNhsUNd7cs6wv5eG_hQrOCPMFIY=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.222756+00 2025-12-09 10:16:08.222762+00 22195 LJW003FW#VS-D3黑 SPMX-20240815317449 \N \N \N 1 \N [{"file_id": "dd950fc4-042a-4ec2-8ee0-d8eb371ebc33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a04d22f7a4dc47df856e30ef27ba408e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a04d22f7a4dc47df856e30ef27ba408e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a04d22f7a4dc47df856e30ef27ba408e.jpg", "file_size": 20138, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FW#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a04d22f7a4dc47df856e30ef27ba408e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a04d22f7a4dc47df856e30ef27ba408e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a04d22f7a4dc47df856e30ef27ba408e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a04d22f7a4dc47df856e30ef27ba408e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a04d22f7a4dc47df856e30ef27ba408e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:joiuClbPqwtZt8XaQPC4KHsxw4Y=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.226257+00 2025-12-09 10:16:08.226267+00 22196 243075#-03-1-2XL码 SPMX-20240815317454 \N \N \N 1 \N [{"file_id": "b6249691-7305-4a79-832b-b5b4683c6c92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fefff53136dc44f3bdf0081ac8f75773.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fefff53136dc44f3bdf0081ac8f75773.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fefff53136dc44f3bdf0081ac8f75773.jpg", "file_size": 62375, "is_delete": false, "file_type": 1, "original_file_name": "243075#-03-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefff53136dc44f3bdf0081ac8f75773.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefff53136dc44f3bdf0081ac8f75773.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fefff53136dc44f3bdf0081ac8f75773.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fefff53136dc44f3bdf0081ac8f75773.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fefff53136dc44f3bdf0081ac8f75773.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kvU37kspB1agPi9CHDX9FciB_js=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.229791+00 2025-12-09 10:16:08.229797+00 22197 HXF055FW#VS-D3 SPMX-20240815317447 \N \N \N 1 \N [{"file_id": "b38dc840-f31c-4cf2-b74e-e9e7d004a4ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cccf725f29294ee5b696f5dde886bc33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cccf725f29294ee5b696f5dde886bc33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cccf725f29294ee5b696f5dde886bc33.jpg", "file_size": 17637, "is_delete": false, "file_type": 1, "original_file_name": "HXF055FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccf725f29294ee5b696f5dde886bc33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccf725f29294ee5b696f5dde886bc33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cccf725f29294ee5b696f5dde886bc33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cccf725f29294ee5b696f5dde886bc33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cccf725f29294ee5b696f5dde886bc33.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:61EVkD8hP1E4l_nwWn2_Yg-p3Sk=", "createTime": "2024-08-15 15:11:30"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.237156+00 2025-12-09 10:16:08.237164+00 22198 88390FWF#枣红色 SPMX-20240815317456 \N \N \N 1 \N [{"file_id": "e1be9828-df82-4038-a83c-282dc638de7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62145a352da74b2480cd09804c394223.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62145a352da74b2480cd09804c394223.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62145a352da74b2480cd09804c394223.jpg", "file_size": 8109, "is_delete": false, "file_type": 1, "original_file_name": "88390FWF#枣红色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62145a352da74b2480cd09804c394223.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62145a352da74b2480cd09804c394223.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62145a352da74b2480cd09804c394223.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62145a352da74b2480cd09804c394223.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62145a352da74b2480cd09804c394223.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3JJ4h-CjFhn09FTr6pXdX0_nL6s=", "createTime": "2024-08-15 15:11:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.24076+00 2025-12-09 10:16:08.240767+00 22199 FX024#E SPMX-20240815317455 \N \N \N 1 \N [{"file_id": "7b6a81f3-00a3-46b6-b30f-c122cbd21ac6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d30fcba453bb4ea8aad2e485794c79f4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d30fcba453bb4ea8aad2e485794c79f4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d30fcba453bb4ea8aad2e485794c79f4.jpg", "file_size": 31263, "is_delete": false, "file_type": 1, "original_file_name": "FX024#E.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30fcba453bb4ea8aad2e485794c79f4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30fcba453bb4ea8aad2e485794c79f4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d30fcba453bb4ea8aad2e485794c79f4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d30fcba453bb4ea8aad2e485794c79f4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d30fcba453bb4ea8aad2e485794c79f4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3VKTIHUr2Zed7NWyBm7oN0Wdt5E=", "createTime": "2024-08-15 15:11:31"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.244266+00 2025-12-09 10:16:08.244272+00 22200 LJW003FWE#VS-D3 SPMX-20240815317458 \N \N \N 1 \N [{"file_id": "85bb0975-f9cd-4c27-8b9c-1c9a44697bb9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "916e3d6c62854e59bf11a64489b786e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "916e3d6c62854e59bf11a64489b786e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "916e3d6c62854e59bf11a64489b786e4.jpg", "file_size": 20430, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/916e3d6c62854e59bf11a64489b786e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/916e3d6c62854e59bf11a64489b786e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/916e3d6c62854e59bf11a64489b786e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/916e3d6c62854e59bf11a64489b786e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/916e3d6c62854e59bf11a64489b786e4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5aoENYgByyH8uLwA73ODVRP1ZTY=", "createTime": "2024-08-15 15:11:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.247892+00 2025-12-09 10:16:08.247901+00 22201 LZ1437#上身2号色 SPMX-20240815317459 \N \N \N 1 \N [{"file_id": "fd036b50-d151-4c99-bb69-fc14bf417a69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1961f5364692427ca657e3bc47cc9fde.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1961f5364692427ca657e3bc47cc9fde.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1961f5364692427ca657e3bc47cc9fde.jpg", "file_size": 18908, "is_delete": false, "file_type": 1, "original_file_name": "LZ1437#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1961f5364692427ca657e3bc47cc9fde.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1961f5364692427ca657e3bc47cc9fde.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1961f5364692427ca657e3bc47cc9fde.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1961f5364692427ca657e3bc47cc9fde.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1961f5364692427ca657e3bc47cc9fde.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_lnXSAY9kgVucQdLGAiy-VHWfUI=", "createTime": "2024-08-15 15:11:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.251523+00 2025-12-09 10:16:08.25153+00 22202 HXF056FW#VS-D3 SPMX-20240815317457 \N \N \N 1 \N [{"file_id": "857f1d2f-2c39-4860-bdcf-28d46f730d32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e03c9e0d7d6945e88201bb30b8bd139c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e03c9e0d7d6945e88201bb30b8bd139c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e03c9e0d7d6945e88201bb30b8bd139c.jpg", "file_size": 22868, "is_delete": false, "file_type": 1, "original_file_name": "HXF056FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03c9e0d7d6945e88201bb30b8bd139c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03c9e0d7d6945e88201bb30b8bd139c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e03c9e0d7d6945e88201bb30b8bd139c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e03c9e0d7d6945e88201bb30b8bd139c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e03c9e0d7d6945e88201bb30b8bd139c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:c8PZwEzhYkyBGF8KugNTfpIdCLY=", "createTime": "2024-08-15 15:11:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.255103+00 2025-12-09 10:16:08.255109+00 22203 243075#-03-1-3XL码 SPMX-20240815317463 \N \N \N 1 \N [{"file_id": "b76c383e-1e24-4728-8334-5d15031a8a01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02e71e9451ce4aa49d274ed1db8f1ecd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02e71e9451ce4aa49d274ed1db8f1ecd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02e71e9451ce4aa49d274ed1db8f1ecd.jpg", "file_size": 59555, "is_delete": false, "file_type": 1, "original_file_name": "243075#-03-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e71e9451ce4aa49d274ed1db8f1ecd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e71e9451ce4aa49d274ed1db8f1ecd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02e71e9451ce4aa49d274ed1db8f1ecd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02e71e9451ce4aa49d274ed1db8f1ecd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02e71e9451ce4aa49d274ed1db8f1ecd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LbghWQXzSBuxjRnbPZZTaCvBmzI=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.258699+00 2025-12-09 10:16:08.258711+00 22204 FX024#VS-D3 SPMX-20240815317465 \N \N \N 1 \N [{"file_id": "1bb4452f-5df8-4ad1-9059-498fe535f63a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adae674d51a24cfba82888624548de7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adae674d51a24cfba82888624548de7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adae674d51a24cfba82888624548de7c.jpg", "file_size": 14343, "is_delete": false, "file_type": 1, "original_file_name": "FX024#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adae674d51a24cfba82888624548de7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adae674d51a24cfba82888624548de7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adae674d51a24cfba82888624548de7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adae674d51a24cfba82888624548de7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adae674d51a24cfba82888624548de7c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jX2oYlNoCgjCf-jm6NX_lFcI9mI=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.262175+00 2025-12-09 10:16:08.262182+00 22205 JY-ML60024#1号色 SPMX-20240815317462 \N \N \N 1 \N [{"file_id": "4412ae29-9936-48b3-b860-c0483557ae05", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94515543d7624c80bc89d6ac846ffcd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94515543d7624c80bc89d6ac846ffcd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94515543d7624c80bc89d6ac846ffcd7.jpg", "file_size": 16154, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60024#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94515543d7624c80bc89d6ac846ffcd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94515543d7624c80bc89d6ac846ffcd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94515543d7624c80bc89d6ac846ffcd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94515543d7624c80bc89d6ac846ffcd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94515543d7624c80bc89d6ac846ffcd7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tnGu_tbZdqu8qx5-O7MQ7YChQpc=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.265795+00 2025-12-09 10:16:08.265801+00 22206 DN-D3076#L SPMX-20240815317464 \N \N \N 1 \N [{"file_id": "10eb4914-c773-4e1b-bf8a-6ff8a0d2ac2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4f93eeebb9948cf8ad5cf9df87b8442.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4f93eeebb9948cf8ad5cf9df87b8442.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4f93eeebb9948cf8ad5cf9df87b8442.jpg", "file_size": 74342, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3076#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f93eeebb9948cf8ad5cf9df87b8442.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f93eeebb9948cf8ad5cf9df87b8442.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4f93eeebb9948cf8ad5cf9df87b8442.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4f93eeebb9948cf8ad5cf9df87b8442.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4f93eeebb9948cf8ad5cf9df87b8442.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gxdrzAS2uGduK2a-v2gMt_hleJM=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.283667+00 2025-12-09 10:16:08.283673+00 22211 HXF057FW#VS-D3 SPMX-20240815317468 \N \N \N 1 \N [{"file_id": "2d7955ed-0ccb-4b64-b3e1-62235e5a31c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e014deba472146eeb0884c842190159c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e014deba472146eeb0884c842190159c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e014deba472146eeb0884c842190159c.jpg", "file_size": 17103, "is_delete": false, "file_type": 1, "original_file_name": "HXF057FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e014deba472146eeb0884c842190159c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e014deba472146eeb0884c842190159c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e014deba472146eeb0884c842190159c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e014deba472146eeb0884c842190159c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e014deba472146eeb0884c842190159c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CKFeApyelixARr1fYplqR4_gxdo=", "createTime": "2024-08-15 15:11:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.26939+00 2025-12-09 10:16:08.269397+00 22207 CHiC140#7号色-25码 SPMX-20240815317461 \N \N \N 1 \N [{"file_id": "3d46ac75-fd87-4f6c-bc67-036b5098cec6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fae5124d773f48a8aaf634312b376363.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fae5124d773f48a8aaf634312b376363.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fae5124d773f48a8aaf634312b376363.jpg", "file_size": 48719, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae5124d773f48a8aaf634312b376363.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae5124d773f48a8aaf634312b376363.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fae5124d773f48a8aaf634312b376363.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fae5124d773f48a8aaf634312b376363.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fae5124d773f48a8aaf634312b376363.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:l0311kzuFEX6Ne4iGn8dBaLSqLE=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.272958+00 2025-12-09 10:16:08.272964+00 22208 88390FWF#深绿色 SPMX-20240815317466 \N \N \N 1 \N [{"file_id": "b3d2ef58-9e4c-4df0-b71c-bc0afb9c5215", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49b45f42242e40619f444496ad2887b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49b45f42242e40619f444496ad2887b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49b45f42242e40619f444496ad2887b6.jpg", "file_size": 7585, "is_delete": false, "file_type": 1, "original_file_name": "88390FWF#深绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b45f42242e40619f444496ad2887b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b45f42242e40619f444496ad2887b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49b45f42242e40619f444496ad2887b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49b45f42242e40619f444496ad2887b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49b45f42242e40619f444496ad2887b6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ihaXLSK6604aKtFeGjGLR5KhWAE=", "createTime": "2024-08-15 15:11:33"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.276558+00 2025-12-09 10:16:08.276564+00 22209 0044-A21#LWQ15 SPMX-20240815317460 \N \N \N 1 \N [{"file_id": "c2c1e5ce-8b6a-47ff-a981-928c43c30fcb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d893b5f60454fc5a21d774274cac92c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d893b5f60454fc5a21d774274cac92c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d893b5f60454fc5a21d774274cac92c.jpg", "file_size": 24313, "is_delete": false, "file_type": 1, "original_file_name": "0044-A21#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d893b5f60454fc5a21d774274cac92c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d893b5f60454fc5a21d774274cac92c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d893b5f60454fc5a21d774274cac92c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d893b5f60454fc5a21d774274cac92c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d893b5f60454fc5a21d774274cac92c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a3Y9G6PRk_ouGED5QyPrE70GlfU=", "createTime": "2024-08-15 15:11:32"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.280114+00 2025-12-09 10:16:08.280121+00 22210 LJW003FWE#黑VS-D3 SPMX-20240815317467 \N \N \N 1 \N [{"file_id": "4bc55ebb-9ae8-4d66-bafe-d7b6bfb81379", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "226daca99aa54fe492c60cf40612c444.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "226daca99aa54fe492c60cf40612c444.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "226daca99aa54fe492c60cf40612c444.jpg", "file_size": 19560, "is_delete": false, "file_type": 1, "original_file_name": "LJW003FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226daca99aa54fe492c60cf40612c444.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226daca99aa54fe492c60cf40612c444.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/226daca99aa54fe492c60cf40612c444.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/226daca99aa54fe492c60cf40612c444.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/226daca99aa54fe492c60cf40612c444.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KbkfCN1dzgq_4XaxlXfdN-CLUDU=", "createTime": "2024-08-15 15:11:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.287253+00 2025-12-09 10:16:08.28726+00 22212 HXF058FW#VS-D3 SPMX-20240815317479 \N \N \N 1 \N [{"file_id": "5c6a50e3-65bb-4029-915f-de2215a6a811", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "505b4c2588e7413d9640246ec6638bab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "505b4c2588e7413d9640246ec6638bab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "505b4c2588e7413d9640246ec6638bab.jpg", "file_size": 30096, "is_delete": false, "file_type": 1, "original_file_name": "HXF058FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b4c2588e7413d9640246ec6638bab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b4c2588e7413d9640246ec6638bab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/505b4c2588e7413d9640246ec6638bab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/505b4c2588e7413d9640246ec6638bab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/505b4c2588e7413d9640246ec6638bab.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VK0v6oN4X9WIT2cMJ127bkgXgP4=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.290877+00 2025-12-09 10:16:08.290883+00 22213 LJW004# SPMX-20240815317478 \N \N \N 1 \N [{"file_id": "8bf8ea9c-2b8d-449f-8323-0f56f5150e12", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b0eaa45afaa4e10b0e52042bc183a3b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b0eaa45afaa4e10b0e52042bc183a3b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b0eaa45afaa4e10b0e52042bc183a3b.jpg", "file_size": 9712, "is_delete": false, "file_type": 1, "original_file_name": "LJW004#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0eaa45afaa4e10b0e52042bc183a3b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0eaa45afaa4e10b0e52042bc183a3b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b0eaa45afaa4e10b0e52042bc183a3b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b0eaa45afaa4e10b0e52042bc183a3b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b0eaa45afaa4e10b0e52042bc183a3b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UwgKmKOfJl5mzEwfdw9vxArxsE4=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.294756+00 2025-12-09 10:16:08.294764+00 22214 DN-D3076#M SPMX-20240815317470 \N \N \N 1 \N [{"file_id": "037e6e2a-1afb-4d2f-b26c-200c4855d59e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f113012799a2445881d2da9201ce1e80.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f113012799a2445881d2da9201ce1e80.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f113012799a2445881d2da9201ce1e80.jpg", "file_size": 79396, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3076#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f113012799a2445881d2da9201ce1e80.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f113012799a2445881d2da9201ce1e80.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f113012799a2445881d2da9201ce1e80.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f113012799a2445881d2da9201ce1e80.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f113012799a2445881d2da9201ce1e80.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:16sQIzLutjeeu7CgzBbiyjrkDUw=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.298728+00 2025-12-09 10:16:08.298736+00 22215 FX024FW#VS-D3 SPMX-20240815317475 \N \N \N 1 \N [{"file_id": "4be7b6ee-ef5a-4a44-a5de-5673d1a9b298", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "16921b776dfb48a09996b6f1224e8355.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "16921b776dfb48a09996b6f1224e8355.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "16921b776dfb48a09996b6f1224e8355.jpg", "file_size": 12203, "is_delete": false, "file_type": 1, "original_file_name": "FX024FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16921b776dfb48a09996b6f1224e8355.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16921b776dfb48a09996b6f1224e8355.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/16921b776dfb48a09996b6f1224e8355.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/16921b776dfb48a09996b6f1224e8355.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/16921b776dfb48a09996b6f1224e8355.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:naDnjweB4uWUhP0WZ2D_YqZj5nA=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.302593+00 2025-12-09 10:16:08.302601+00 22216 12个批布 SPMX-20240815317477 \N \N \N 1 \N [{"file_id": "a1b2a6df-50a3-47e8-a5ec-0c5a5a3c6093", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b80e9ba0f643f496848c26c02806da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b80e9ba0f643f496848c26c02806da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b80e9ba0f643f496848c26c02806da.jpg", "file_size": 198642, "is_delete": false, "file_type": 1, "original_file_name": "12个批布.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b80e9ba0f643f496848c26c02806da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b80e9ba0f643f496848c26c02806da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b80e9ba0f643f496848c26c02806da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b80e9ba0f643f496848c26c02806da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b80e9ba0f643f496848c26c02806da.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cBxaEDKaNp78MjClr5cqBC_s4WQ=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.306553+00 2025-12-09 10:16:08.306561+00 22217 LZ1437#上身3号色 SPMX-20240815317473 \N \N \N 1 \N [{"file_id": "fb70bd04-10ff-4005-a08e-7e9ad57f5d91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "227f6b1c7a704d74b5a38234765cf310.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "227f6b1c7a704d74b5a38234765cf310.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "227f6b1c7a704d74b5a38234765cf310.jpg", "file_size": 18371, "is_delete": false, "file_type": 1, "original_file_name": "LZ1437#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227f6b1c7a704d74b5a38234765cf310.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227f6b1c7a704d74b5a38234765cf310.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/227f6b1c7a704d74b5a38234765cf310.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/227f6b1c7a704d74b5a38234765cf310.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/227f6b1c7a704d74b5a38234765cf310.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nejwp2IsZomBV71bolmTzYQr4VA=", "createTime": "2024-08-15 15:11:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.310575+00 2025-12-09 10:16:08.310582+00 22218 0044-A3#咖啡色 SPMX-20240815317471 \N \N \N 1 \N [{"file_id": "3c8ff92b-5ca6-450a-b68d-bb768ee04444", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f37f067ce3c5484ba0b2867d1b06afc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f37f067ce3c5484ba0b2867d1b06afc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f37f067ce3c5484ba0b2867d1b06afc3.jpg", "file_size": 26184, "is_delete": false, "file_type": 1, "original_file_name": "0044-A3#咖啡色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37f067ce3c5484ba0b2867d1b06afc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37f067ce3c5484ba0b2867d1b06afc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f37f067ce3c5484ba0b2867d1b06afc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f37f067ce3c5484ba0b2867d1b06afc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f37f067ce3c5484ba0b2867d1b06afc3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9Y3cIuglxcKTGVkUkAykbWtSJ3s=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.314447+00 2025-12-09 10:16:08.314456+00 22219 88390FWF#紫色 SPMX-20240815317476 \N \N \N 1 \N [{"file_id": "d340a259-6487-421c-908d-63aa3a339dd9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ff44f29d6f04c469ac828c816ef9cb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ff44f29d6f04c469ac828c816ef9cb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ff44f29d6f04c469ac828c816ef9cb4.jpg", "file_size": 7344, "is_delete": false, "file_type": 1, "original_file_name": "88390FWF#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff44f29d6f04c469ac828c816ef9cb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff44f29d6f04c469ac828c816ef9cb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ff44f29d6f04c469ac828c816ef9cb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ff44f29d6f04c469ac828c816ef9cb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ff44f29d6f04c469ac828c816ef9cb4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zKMbpbysO7iH0-z7HPFlnoGfK1Y=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.318296+00 2025-12-09 10:16:08.318303+00 22220 243075#-03-2-2XL码 SPMX-20240815317472 \N \N \N 1 \N [{"file_id": "49b44885-f54f-4619-87e6-54fab5087eb3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f2c584bc1bbc4a158ef368d275a9d7b2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f2c584bc1bbc4a158ef368d275a9d7b2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f2c584bc1bbc4a158ef368d275a9d7b2.jpg", "file_size": 57849, "is_delete": false, "file_type": 1, "original_file_name": "243075#-03-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c584bc1bbc4a158ef368d275a9d7b2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c584bc1bbc4a158ef368d275a9d7b2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f2c584bc1bbc4a158ef368d275a9d7b2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f2c584bc1bbc4a158ef368d275a9d7b2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f2c584bc1bbc4a158ef368d275a9d7b2.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2PhCpTxiRZDxL69BN9KTEIr8OAs=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.322122+00 2025-12-09 10:16:08.322129+00 22221 CHiC140#7号色净色 SPMX-20240815317469 \N \N \N 1 \N [{"file_id": "a0013385-3843-4f2e-b7f0-dd508231a4ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13bd64ae641943d1bc27d6e09df5c7b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13bd64ae641943d1bc27d6e09df5c7b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13bd64ae641943d1bc27d6e09df5c7b6.jpg", "file_size": 13162, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#7号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd64ae641943d1bc27d6e09df5c7b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd64ae641943d1bc27d6e09df5c7b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13bd64ae641943d1bc27d6e09df5c7b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13bd64ae641943d1bc27d6e09df5c7b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13bd64ae641943d1bc27d6e09df5c7b6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6EXL04wFZOyZvMcgDguBYNFe58I=", "createTime": "2024-08-15 15:11:34"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.326016+00 2025-12-09 10:16:08.326022+00 22222 JY-ML60024#3号色 SPMX-20240815317474 \N \N \N 1 \N [{"file_id": "ebf8cf1e-6bfc-45ee-a3bb-d3f891289a14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30f56cb77f364cc2ab6831472d265eb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30f56cb77f364cc2ab6831472d265eb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30f56cb77f364cc2ab6831472d265eb5.jpg", "file_size": 22577, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60024#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f56cb77f364cc2ab6831472d265eb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f56cb77f364cc2ab6831472d265eb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30f56cb77f364cc2ab6831472d265eb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30f56cb77f364cc2ab6831472d265eb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30f56cb77f364cc2ab6831472d265eb5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ScSJZSYzaE__jurT_xcgGMKBGkc=", "createTime": "2024-08-15 15:11:35"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.329839+00 2025-12-09 10:16:08.329846+00 22223 0044-A3#绿色 SPMX-20240815317483 \N \N \N 1 \N [{"file_id": "72db17d5-b976-436d-ae9b-9c1262c90618", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5a305afea61a44f2b5aecad5a5fcaa3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5a305afea61a44f2b5aecad5a5fcaa3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5a305afea61a44f2b5aecad5a5fcaa3a.jpg", "file_size": 25848, "is_delete": false, "file_type": 1, "original_file_name": "0044-A3#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a305afea61a44f2b5aecad5a5fcaa3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a305afea61a44f2b5aecad5a5fcaa3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5a305afea61a44f2b5aecad5a5fcaa3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5a305afea61a44f2b5aecad5a5fcaa3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5a305afea61a44f2b5aecad5a5fcaa3a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:btvwCUs6vs47otoEq30pdCzWZQk=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.33406+00 2025-12-09 10:16:08.334067+00 22224 LZ1437#上身4号色 SPMX-20240815317481 \N \N \N 1 \N [{"file_id": "cd371a32-5545-42a4-8619-dfb8c044e3c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4738a475217b4e11a3be09d5b0d3dd0d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4738a475217b4e11a3be09d5b0d3dd0d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4738a475217b4e11a3be09d5b0d3dd0d.jpg", "file_size": 17997, "is_delete": false, "file_type": 1, "original_file_name": "LZ1437#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4738a475217b4e11a3be09d5b0d3dd0d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4738a475217b4e11a3be09d5b0d3dd0d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4738a475217b4e11a3be09d5b0d3dd0d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4738a475217b4e11a3be09d5b0d3dd0d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4738a475217b4e11a3be09d5b0d3dd0d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Pefr8HMnvbsm5nSRYCdRRNlfKgQ=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.338312+00 2025-12-09 10:16:08.338319+00 22225 DN-D3076#XL SPMX-20240815317480 \N \N \N 1 \N [{"file_id": "c998a341-5d62-4e60-8c3d-bb901ffe9c91", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c0feca794e3046019f59ba91c2e5fd89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c0feca794e3046019f59ba91c2e5fd89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c0feca794e3046019f59ba91c2e5fd89.jpg", "file_size": 72154, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3076#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0feca794e3046019f59ba91c2e5fd89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0feca794e3046019f59ba91c2e5fd89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c0feca794e3046019f59ba91c2e5fd89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c0feca794e3046019f59ba91c2e5fd89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c0feca794e3046019f59ba91c2e5fd89.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ixQekqw6RZKT3bVv-Peo15zf3IA=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.342658+00 2025-12-09 10:16:08.342665+00 22226 243075#-03-2-3XL码 SPMX-20240815317485 \N \N \N 1 \N [{"file_id": "62675327-231b-4b8a-b2b0-f200f8543e9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cac248a04f0a4fc7a26847592995d704.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cac248a04f0a4fc7a26847592995d704.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cac248a04f0a4fc7a26847592995d704.jpg", "file_size": 57067, "is_delete": false, "file_type": 1, "original_file_name": "243075#-03-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac248a04f0a4fc7a26847592995d704.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac248a04f0a4fc7a26847592995d704.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cac248a04f0a4fc7a26847592995d704.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cac248a04f0a4fc7a26847592995d704.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cac248a04f0a4fc7a26847592995d704.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AKUIGdNvLi6ehwD9BU71BD5xhNQ=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.346802+00 2025-12-09 10:16:08.346809+00 22227 JY-ML60024#图片色 SPMX-20240815317482 \N \N \N 1 \N [{"file_id": "74cb410b-35c0-4d94-b6f9-2161a00d374c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68a3d141d6dd4e3091099fa8cf97d408.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68a3d141d6dd4e3091099fa8cf97d408.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68a3d141d6dd4e3091099fa8cf97d408.jpg", "file_size": 21354, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60024#图片色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a3d141d6dd4e3091099fa8cf97d408.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a3d141d6dd4e3091099fa8cf97d408.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68a3d141d6dd4e3091099fa8cf97d408.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68a3d141d6dd4e3091099fa8cf97d408.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68a3d141d6dd4e3091099fa8cf97d408.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ELURVPM4c6jfO3LSmUF2yKIaF1k=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.350793+00 2025-12-09 10:16:08.3508+00 22228 CHiC140#8号色-21码 SPMX-20240815317484 \N \N \N 1 \N [{"file_id": "77bbf65f-41fb-40a1-8802-3dd8ce768899", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1cac9152e6e5458a862f1da1741348ef.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1cac9152e6e5458a862f1da1741348ef.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1cac9152e6e5458a862f1da1741348ef.jpg", "file_size": 51016, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cac9152e6e5458a862f1da1741348ef.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cac9152e6e5458a862f1da1741348ef.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1cac9152e6e5458a862f1da1741348ef.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1cac9152e6e5458a862f1da1741348ef.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1cac9152e6e5458a862f1da1741348ef.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hHg8HwKE21z-dsFZxbuJjX0br0g=", "createTime": "2024-08-15 15:11:36"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.354807+00 2025-12-09 10:16:08.354816+00 22229 HXF059FW#VS-D3 SPMX-20240815317491 \N \N \N 1 \N [{"file_id": "e83e8fd3-73e2-43d5-aa73-d556ca7ff9e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a29f6ef6f64646fa9ff215b5b6352ffb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a29f6ef6f64646fa9ff215b5b6352ffb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a29f6ef6f64646fa9ff215b5b6352ffb.jpg", "file_size": 16461, "is_delete": false, "file_type": 1, "original_file_name": "HXF059FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29f6ef6f64646fa9ff215b5b6352ffb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29f6ef6f64646fa9ff215b5b6352ffb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a29f6ef6f64646fa9ff215b5b6352ffb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a29f6ef6f64646fa9ff215b5b6352ffb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a29f6ef6f64646fa9ff215b5b6352ffb.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BZMIBylLmATY-jkYXqH6XPMG4zI=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.359047+00 2025-12-09 10:16:08.359055+00 22230 0044-A4#LWQ15 SPMX-20240815317488 \N \N \N 1 \N [{"file_id": "0bd2d823-83e1-4ec8-b65e-424a0ca48504", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0d1fb107388f40f08484532c85f44f86.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0d1fb107388f40f08484532c85f44f86.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0d1fb107388f40f08484532c85f44f86.jpg", "file_size": 11934, "is_delete": false, "file_type": 1, "original_file_name": "0044-A4#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1fb107388f40f08484532c85f44f86.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1fb107388f40f08484532c85f44f86.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0d1fb107388f40f08484532c85f44f86.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0d1fb107388f40f08484532c85f44f86.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0d1fb107388f40f08484532c85f44f86.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n_hm5vrgzwOJxPAxiLV5L4QPLOo=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.363181+00 2025-12-09 10:16:08.363188+00 22231 JY-ML60024#样衣色 SPMX-20240815317489 \N \N \N 1 \N [{"file_id": "ba8f623c-fbfc-4dc0-aafa-74aece4fc700", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99978dd4d2b6441b8c6218f15a3672e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99978dd4d2b6441b8c6218f15a3672e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99978dd4d2b6441b8c6218f15a3672e6.jpg", "file_size": 16573, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60024#样衣色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99978dd4d2b6441b8c6218f15a3672e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99978dd4d2b6441b8c6218f15a3672e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99978dd4d2b6441b8c6218f15a3672e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99978dd4d2b6441b8c6218f15a3672e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99978dd4d2b6441b8c6218f15a3672e6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kYuwjW5-hccjPdfiRqRPPIl5whk=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.367099+00 2025-12-09 10:16:08.367104+00 22232 243075#-04-1-2XL码 SPMX-20240815317494 \N \N \N 1 \N [{"file_id": "42661088-6c61-424c-a45c-a12d46b6df34", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bae914ab9e4c4277b574eb3bbb272f06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bae914ab9e4c4277b574eb3bbb272f06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bae914ab9e4c4277b574eb3bbb272f06.jpg", "file_size": 68459, "is_delete": false, "file_type": 1, "original_file_name": "243075#-04-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae914ab9e4c4277b574eb3bbb272f06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae914ab9e4c4277b574eb3bbb272f06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bae914ab9e4c4277b574eb3bbb272f06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bae914ab9e4c4277b574eb3bbb272f06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bae914ab9e4c4277b574eb3bbb272f06.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RJYlK557mJ2_72g9OdJLpTsTqYc=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.370702+00 2025-12-09 10:16:08.370712+00 22233 DN-D3077#2XL SPMX-20240815317490 \N \N \N 1 \N [{"file_id": "5d13283f-b696-4754-9c72-c6dcff4687dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8be05589a62e49c3a4f4a9f32245a568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8be05589a62e49c3a4f4a9f32245a568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8be05589a62e49c3a4f4a9f32245a568.jpg", "file_size": 65111, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3077#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be05589a62e49c3a4f4a9f32245a568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be05589a62e49c3a4f4a9f32245a568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8be05589a62e49c3a4f4a9f32245a568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8be05589a62e49c3a4f4a9f32245a568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8be05589a62e49c3a4f4a9f32245a568.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:By1Y3J_xrKCwEdQGHjMylE2uTMY=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.374269+00 2025-12-09 10:16:08.374275+00 22234 88390FWF#黑色 SPMX-20240815317487 \N \N \N 1 \N [{"file_id": "01db1b3a-d6a6-41e6-8020-de487bcfbd85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a2cfb7a1b0f4daead2bd1fcbb618783.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a2cfb7a1b0f4daead2bd1fcbb618783.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a2cfb7a1b0f4daead2bd1fcbb618783.jpg", "file_size": 7551, "is_delete": false, "file_type": 1, "original_file_name": "88390FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2cfb7a1b0f4daead2bd1fcbb618783.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2cfb7a1b0f4daead2bd1fcbb618783.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a2cfb7a1b0f4daead2bd1fcbb618783.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a2cfb7a1b0f4daead2bd1fcbb618783.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a2cfb7a1b0f4daead2bd1fcbb618783.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VKLfAhet_IeGY6GYC653cXYApqs=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.377783+00 2025-12-09 10:16:08.377789+00 22235 12个批布VS-D3 SPMX-20240815317492 \N \N \N 1 \N [{"file_id": "dd8280a5-0408-42b9-8da4-27106e8a71d6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ccf84a232bb450d89dc3331d06b0476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ccf84a232bb450d89dc3331d06b0476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ccf84a232bb450d89dc3331d06b0476.jpg", "file_size": 195026, "is_delete": false, "file_type": 1, "original_file_name": "12个批布VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf84a232bb450d89dc3331d06b0476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf84a232bb450d89dc3331d06b0476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ccf84a232bb450d89dc3331d06b0476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ccf84a232bb450d89dc3331d06b0476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ccf84a232bb450d89dc3331d06b0476.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CFilO-VxIS55DkZOAg6fK3tfS3E=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.381322+00 2025-12-09 10:16:08.381328+00 22236 FX024FWE#VS-D3 SPMX-20240815317486 \N \N \N 1 \N [{"file_id": "eba90062-4b9a-4875-816a-b0afd4ac430e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24fb8b48dfb24211bb0012f1f366514e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24fb8b48dfb24211bb0012f1f366514e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24fb8b48dfb24211bb0012f1f366514e.jpg", "file_size": 24551, "is_delete": false, "file_type": 1, "original_file_name": "FX024FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fb8b48dfb24211bb0012f1f366514e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fb8b48dfb24211bb0012f1f366514e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24fb8b48dfb24211bb0012f1f366514e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24fb8b48dfb24211bb0012f1f366514e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24fb8b48dfb24211bb0012f1f366514e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tZbABxwdj_UPrAShkeWrekFo1eE=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.384852+00 2025-12-09 10:16:08.384858+00 22237 LJW004#D SPMX-20240815317493 \N \N \N 1 \N [{"file_id": "9d831e68-a8fb-41d1-a422-5e342659d328", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "19ff50ce726340548ce0fdebd1074fa4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "19ff50ce726340548ce0fdebd1074fa4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "19ff50ce726340548ce0fdebd1074fa4.jpg", "file_size": 26861, "is_delete": false, "file_type": 1, "original_file_name": "LJW004#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ff50ce726340548ce0fdebd1074fa4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ff50ce726340548ce0fdebd1074fa4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/19ff50ce726340548ce0fdebd1074fa4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/19ff50ce726340548ce0fdebd1074fa4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/19ff50ce726340548ce0fdebd1074fa4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jfIHCEHOulvxOHooKxcwfhHWdRI=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.388493+00 2025-12-09 10:16:08.388499+00 22238 CHiC140#8号色-23码 SPMX-20240815317508 \N \N \N 1 \N [{"file_id": "fe82ce16-00d6-40a4-ba81-4fb1bd41719e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e24def37cd5448d9853563a98cded317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e24def37cd5448d9853563a98cded317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e24def37cd5448d9853563a98cded317.jpg", "file_size": 49374, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24def37cd5448d9853563a98cded317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24def37cd5448d9853563a98cded317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e24def37cd5448d9853563a98cded317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e24def37cd5448d9853563a98cded317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e24def37cd5448d9853563a98cded317.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UfBQISRYu7kh2pMW_M9NSqK732k=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.392292+00 2025-12-09 10:16:08.392297+00 22239 12个腰头 SPMX-20240815317506 \N \N \N 1 \N [{"file_id": "0f2b0b80-fb6e-476f-8cb4-29fbc3eee221", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbbf4c77cc384e98866f0b40a56d0f84.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbbf4c77cc384e98866f0b40a56d0f84.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbbf4c77cc384e98866f0b40a56d0f84.jpg", "file_size": 102009, "is_delete": false, "file_type": 1, "original_file_name": "12个腰头.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbf4c77cc384e98866f0b40a56d0f84.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbf4c77cc384e98866f0b40a56d0f84.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbbf4c77cc384e98866f0b40a56d0f84.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbbf4c77cc384e98866f0b40a56d0f84.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbbf4c77cc384e98866f0b40a56d0f84.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tg6KvSwZqRd5Fr9FVNOtXKHtNrg=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.396004+00 2025-12-09 10:16:08.396009+00 22240 FX025#VS-D3 SPMX-20240815317507 \N \N \N 1 \N [{"file_id": "f5c3ec21-9b83-406b-92fe-12ee73d0121b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0c7c7e9498594061afe8ca30ccfda76a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0c7c7e9498594061afe8ca30ccfda76a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0c7c7e9498594061afe8ca30ccfda76a.jpg", "file_size": 14421, "is_delete": false, "file_type": 1, "original_file_name": "FX025#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7c7e9498594061afe8ca30ccfda76a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7c7e9498594061afe8ca30ccfda76a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0c7c7e9498594061afe8ca30ccfda76a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0c7c7e9498594061afe8ca30ccfda76a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0c7c7e9498594061afe8ca30ccfda76a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:060RcPeSm1zLvljRF1BywSTgyzs=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.399567+00 2025-12-09 10:16:08.399575+00 22241 HXF060FW#VS-D3 SPMX-20240815317502 \N \N \N 1 \N [{"file_id": "c83c9897-a0fd-40d9-b566-256129b05a41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d38032dff8e4611aea1ca61df6c5836.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d38032dff8e4611aea1ca61df6c5836.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d38032dff8e4611aea1ca61df6c5836.jpg", "file_size": 19555, "is_delete": false, "file_type": 1, "original_file_name": "HXF060FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d38032dff8e4611aea1ca61df6c5836.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d38032dff8e4611aea1ca61df6c5836.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d38032dff8e4611aea1ca61df6c5836.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d38032dff8e4611aea1ca61df6c5836.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d38032dff8e4611aea1ca61df6c5836.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiZ85aqfI94h5W7bopkz2tBitPo=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.403201+00 2025-12-09 10:16:08.403206+00 22242 LJW004#VS-D3 SPMX-20240815317503 \N \N \N 1 \N [{"file_id": "420fd1d0-bd34-4617-b6ba-11631723d39c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32ccff8d3c054edb99ffb567bb930aa9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32ccff8d3c054edb99ffb567bb930aa9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32ccff8d3c054edb99ffb567bb930aa9.jpg", "file_size": 16392, "is_delete": false, "file_type": 1, "original_file_name": "LJW004#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ccff8d3c054edb99ffb567bb930aa9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ccff8d3c054edb99ffb567bb930aa9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32ccff8d3c054edb99ffb567bb930aa9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32ccff8d3c054edb99ffb567bb930aa9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32ccff8d3c054edb99ffb567bb930aa9.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Efd8reKMF62WNaWmtcuvHvPdKKk=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.406728+00 2025-12-09 10:16:08.406734+00 22243 LZ1437#上身5号色 SPMX-20240815317496 \N \N \N 1 \N [{"file_id": "e1905901-f904-45b3-9720-9c33f783ddec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d100f5276b74804b0b614678baaf0e5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d100f5276b74804b0b614678baaf0e5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d100f5276b74804b0b614678baaf0e5.jpg", "file_size": 18788, "is_delete": false, "file_type": 1, "original_file_name": "LZ1437#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d100f5276b74804b0b614678baaf0e5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d100f5276b74804b0b614678baaf0e5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d100f5276b74804b0b614678baaf0e5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d100f5276b74804b0b614678baaf0e5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d100f5276b74804b0b614678baaf0e5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rNNtQ1o3K26jYpRR3T5Kfe9So4w=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.41029+00 2025-12-09 10:16:08.410296+00 22244 FX025#D SPMX-20240815317497 \N \N \N 1 \N [{"file_id": "1d4995e7-bd7c-47b3-8c6c-d7b7e90adbcd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "82b24b7488e54a29bdd7b577af34d95b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "82b24b7488e54a29bdd7b577af34d95b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "82b24b7488e54a29bdd7b577af34d95b.jpg", "file_size": 11918, "is_delete": false, "file_type": 1, "original_file_name": "FX025#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b24b7488e54a29bdd7b577af34d95b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b24b7488e54a29bdd7b577af34d95b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/82b24b7488e54a29bdd7b577af34d95b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/82b24b7488e54a29bdd7b577af34d95b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/82b24b7488e54a29bdd7b577af34d95b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DmwJpWfl7I0mFCGcmL35pMRC8Pc=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.413955+00 2025-12-09 10:16:08.413962+00 22245 0044-A5#LWQ15 SPMX-20240815317500 \N \N \N 1 \N [{"file_id": "c8ba4f34-02c4-4d7f-ba20-d247af0fde02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4d986501db44648a726fe5570eb20de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4d986501db44648a726fe5570eb20de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4d986501db44648a726fe5570eb20de.jpg", "file_size": 13976, "is_delete": false, "file_type": 1, "original_file_name": "0044-A5#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d986501db44648a726fe5570eb20de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d986501db44648a726fe5570eb20de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4d986501db44648a726fe5570eb20de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4d986501db44648a726fe5570eb20de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4d986501db44648a726fe5570eb20de.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:s9sieTj-r3xfWgOEYEejoxmOTkU=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.417609+00 2025-12-09 10:16:08.417615+00 22246 JY-ML60026#白底 SPMX-20240815317501 \N \N \N 1 \N [{"file_id": "bc7aff94-8c34-4d03-8198-b36432a5c682", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1815d76600b04b80b05933efe35afb2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1815d76600b04b80b05933efe35afb2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1815d76600b04b80b05933efe35afb2b.jpg", "file_size": 14948, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60026#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1815d76600b04b80b05933efe35afb2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1815d76600b04b80b05933efe35afb2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1815d76600b04b80b05933efe35afb2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1815d76600b04b80b05933efe35afb2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1815d76600b04b80b05933efe35afb2b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KW0zmyzko5PnOD4_oA2bTBYntEc=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.53323+00 2025-12-09 10:16:08.533236+00 22276 LJW004FW#VS-D3绿 SPMX-20240815317535 \N \N \N 1 \N [{"file_id": "4edf7a67-1475-476f-b60b-bab446232ee7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a91a8291ab1a4adeb8c1e2aaf0a29370.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a91a8291ab1a4adeb8c1e2aaf0a29370.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a91a8291ab1a4adeb8c1e2aaf0a29370.jpg", "file_size": 19900, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91a8291ab1a4adeb8c1e2aaf0a29370.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91a8291ab1a4adeb8c1e2aaf0a29370.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a91a8291ab1a4adeb8c1e2aaf0a29370.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a91a8291ab1a4adeb8c1e2aaf0a29370.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a91a8291ab1a4adeb8c1e2aaf0a29370.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SLVhFt0yfru3Oh9lW9hrWw5hIik=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.421258+00 2025-12-09 10:16:08.421264+00 22247 LZ1438#上身1号色 SPMX-20240815317505 \N \N \N 1 \N [{"file_id": "ba861904-595f-43f4-8b0a-c29e8784f2b0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01da681b4cd643c2b69421d8c65a6720.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01da681b4cd643c2b69421d8c65a6720.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01da681b4cd643c2b69421d8c65a6720.jpg", "file_size": 19563, "is_delete": false, "file_type": 1, "original_file_name": "LZ1438#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01da681b4cd643c2b69421d8c65a6720.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01da681b4cd643c2b69421d8c65a6720.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01da681b4cd643c2b69421d8c65a6720.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01da681b4cd643c2b69421d8c65a6720.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01da681b4cd643c2b69421d8c65a6720.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:th16m_2fGH2K_VSKwrZNGcy09P8=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.424891+00 2025-12-09 10:16:08.424897+00 22248 CHiC140#8号色-22码 SPMX-20240815317495 \N \N \N 1 \N [{"file_id": "a7bc5de3-4666-4516-a2d3-9f3ebd8e8b0b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5782578d313d47f1a7fa2ad218281a70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5782578d313d47f1a7fa2ad218281a70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5782578d313d47f1a7fa2ad218281a70.jpg", "file_size": 49444, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5782578d313d47f1a7fa2ad218281a70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5782578d313d47f1a7fa2ad218281a70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5782578d313d47f1a7fa2ad218281a70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5782578d313d47f1a7fa2ad218281a70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5782578d313d47f1a7fa2ad218281a70.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZaGKILcxw3dNc__AKrVbHddBjq0=", "createTime": "2024-08-15 15:11:37"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.428793+00 2025-12-09 10:16:08.4288+00 22249 DN-D3077#3XL SPMX-20240815317499 \N \N \N 1 \N [{"file_id": "bdaa50e2-e471-48fa-847a-6c4ed32ee6a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ed4183719c74989b659cc091ce17ab0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ed4183719c74989b659cc091ce17ab0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ed4183719c74989b659cc091ce17ab0.jpg", "file_size": 62770, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3077#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed4183719c74989b659cc091ce17ab0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed4183719c74989b659cc091ce17ab0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ed4183719c74989b659cc091ce17ab0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ed4183719c74989b659cc091ce17ab0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ed4183719c74989b659cc091ce17ab0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5hXEOwEwGkRUAOwCpE_IIwWjgs4=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.432799+00 2025-12-09 10:16:08.432807+00 22250 88447#A深蓝 SPMX-20240815317498 \N \N \N 1 \N [{"file_id": "a40fa5ea-f7fc-4338-981c-e58f78b59958", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "189a307925d8486daecb6133706bfcc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "189a307925d8486daecb6133706bfcc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "189a307925d8486daecb6133706bfcc6.jpg", "file_size": 24578, "is_delete": false, "file_type": 1, "original_file_name": "88447#A深蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a307925d8486daecb6133706bfcc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a307925d8486daecb6133706bfcc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/189a307925d8486daecb6133706bfcc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/189a307925d8486daecb6133706bfcc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/189a307925d8486daecb6133706bfcc6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_1_GjcYI1nMlfS2pwaWjQDczywQ=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.436828+00 2025-12-09 10:16:08.436835+00 22251 243075#-04-1-3XL码 SPMX-20240815317504 \N \N \N 1 \N [{"file_id": "8a5dcd45-079b-4c6f-93f3-070a34e1620c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cc2432746a714fc4a5c14a46e142faf4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cc2432746a714fc4a5c14a46e142faf4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cc2432746a714fc4a5c14a46e142faf4.jpg", "file_size": 65084, "is_delete": false, "file_type": 1, "original_file_name": "243075#-04-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2432746a714fc4a5c14a46e142faf4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2432746a714fc4a5c14a46e142faf4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cc2432746a714fc4a5c14a46e142faf4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cc2432746a714fc4a5c14a46e142faf4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cc2432746a714fc4a5c14a46e142faf4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uTBf_Q2_ysJpZG9M46DXcaLItds=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.440711+00 2025-12-09 10:16:08.440719+00 22252 0044-A6#粉底 SPMX-20240815317522 \N \N \N 1 \N [{"file_id": "5f23fb0f-4619-4b24-a6a0-6ec1cdd6964e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baaa96e6c7a24289b06431d1c72c04c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baaa96e6c7a24289b06431d1c72c04c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baaa96e6c7a24289b06431d1c72c04c6.jpg", "file_size": 15355, "is_delete": false, "file_type": 1, "original_file_name": "0044-A6#粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa96e6c7a24289b06431d1c72c04c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa96e6c7a24289b06431d1c72c04c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baaa96e6c7a24289b06431d1c72c04c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baaa96e6c7a24289b06431d1c72c04c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baaa96e6c7a24289b06431d1c72c04c6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:19Sqai4f0cfjfk2kNlg0cRs9lsI=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.444515+00 2025-12-09 10:16:08.444522+00 22253 HXF061FW#VS-D3 SPMX-20240815317513 \N \N \N 1 \N [{"file_id": "f77f423c-4f47-4d1b-aec3-542b109c4723", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e6f66f869db484885dd72f87424c411.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e6f66f869db484885dd72f87424c411.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e6f66f869db484885dd72f87424c411.jpg", "file_size": 6514, "is_delete": false, "file_type": 1, "original_file_name": "HXF061FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6f66f869db484885dd72f87424c411.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6f66f869db484885dd72f87424c411.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6f66f869db484885dd72f87424c411.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e6f66f869db484885dd72f87424c411.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e6f66f869db484885dd72f87424c411.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ucMH59Zkl5VgYJYsMakpMw_-vs=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.44838+00 2025-12-09 10:16:08.448386+00 22254 FX025FW#VS-D3 SPMX-20240815317517 \N \N \N 1 \N [{"file_id": "97515305-e6ba-4aca-8185-d772db6a6672", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "283b3dbe72e440438eeca1e379d9e2f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "283b3dbe72e440438eeca1e379d9e2f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "283b3dbe72e440438eeca1e379d9e2f5.jpg", "file_size": 10896, "is_delete": false, "file_type": 1, "original_file_name": "FX025FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283b3dbe72e440438eeca1e379d9e2f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283b3dbe72e440438eeca1e379d9e2f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/283b3dbe72e440438eeca1e379d9e2f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/283b3dbe72e440438eeca1e379d9e2f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/283b3dbe72e440438eeca1e379d9e2f5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WG4g7m17HlKblJNSmq-x_qZP9zQ=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.452218+00 2025-12-09 10:16:08.452225+00 22255 13 SPMX-20240815317518 \N \N \N 1 \N [{"file_id": "57e95fdd-761e-45d3-8606-bf707f4806a2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8800c8571fe04735a213af27b3071567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8800c8571fe04735a213af27b3071567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8800c8571fe04735a213af27b3071567.jpg", "file_size": 26574, "is_delete": false, "file_type": 1, "original_file_name": "13.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800c8571fe04735a213af27b3071567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800c8571fe04735a213af27b3071567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8800c8571fe04735a213af27b3071567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8800c8571fe04735a213af27b3071567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8800c8571fe04735a213af27b3071567.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FEUH9ERUh3GT4xRWJt-1zDMugqs=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.456048+00 2025-12-09 10:16:08.456054+00 22256 LZ1438#上身2号色 SPMX-20240815317516 \N \N \N 1 \N [{"file_id": "5b7b0230-2b72-4649-b3ba-cafb3d0a1bb0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "790d0e09ad6c4af483c52788aa3ad2c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "790d0e09ad6c4af483c52788aa3ad2c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "790d0e09ad6c4af483c52788aa3ad2c0.jpg", "file_size": 17472, "is_delete": false, "file_type": 1, "original_file_name": "LZ1438#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790d0e09ad6c4af483c52788aa3ad2c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790d0e09ad6c4af483c52788aa3ad2c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/790d0e09ad6c4af483c52788aa3ad2c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/790d0e09ad6c4af483c52788aa3ad2c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/790d0e09ad6c4af483c52788aa3ad2c0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sAb6MYqMaWJphP7Xl2-pVNJKrFA=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.459925+00 2025-12-09 10:16:08.459934+00 22257 DN-D3077#M SPMX-20240815317519 \N \N \N 1 \N [{"file_id": "509043b7-66fc-4698-b452-371c62dcd112", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "04fa316e02554d099136d97c24a36661.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "04fa316e02554d099136d97c24a36661.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "04fa316e02554d099136d97c24a36661.jpg", "file_size": 70229, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3077#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fa316e02554d099136d97c24a36661.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fa316e02554d099136d97c24a36661.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/04fa316e02554d099136d97c24a36661.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/04fa316e02554d099136d97c24a36661.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/04fa316e02554d099136d97c24a36661.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:166X2393Dwlz8LgDjgLhezxjQQM=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.46365+00 2025-12-09 10:16:08.463656+00 22258 JY-ML60026#黑底 SPMX-20240815317523 \N \N \N 1 \N [{"file_id": "bb461bea-b825-4012-aad7-fe151ecec50e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84745b4a35154e48a4afe3ec1bb98ffa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84745b4a35154e48a4afe3ec1bb98ffa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84745b4a35154e48a4afe3ec1bb98ffa.jpg", "file_size": 15561, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60026#黑底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84745b4a35154e48a4afe3ec1bb98ffa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84745b4a35154e48a4afe3ec1bb98ffa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84745b4a35154e48a4afe3ec1bb98ffa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84745b4a35154e48a4afe3ec1bb98ffa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84745b4a35154e48a4afe3ec1bb98ffa.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TmHOMAhYaOVR2uqlcATfm015ShI=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.467531+00 2025-12-09 10:16:08.467538+00 22259 88447#A白底粉 SPMX-20240815317510 \N \N \N 1 \N [{"file_id": "be200045-f860-406b-9011-13e58c1a4b61", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be0ce9f237fa4443b250741babda8ccf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be0ce9f237fa4443b250741babda8ccf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be0ce9f237fa4443b250741babda8ccf.jpg", "file_size": 21922, "is_delete": false, "file_type": 1, "original_file_name": "88447#A白底粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ce9f237fa4443b250741babda8ccf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ce9f237fa4443b250741babda8ccf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be0ce9f237fa4443b250741babda8ccf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be0ce9f237fa4443b250741babda8ccf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be0ce9f237fa4443b250741babda8ccf.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8efkqeDhRVoymDTLH-qQ0CvEry4=", "createTime": "2024-08-15 15:11:38"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.471409+00 2025-12-09 10:16:08.471416+00 22260 243075#-04-2-2XL码 SPMX-20240815317515 \N \N \N 1 \N [{"file_id": "c4bde782-177d-40ab-96e9-c188e540e982", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a488f35c99b484aa1c4bf227e1ce1b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a488f35c99b484aa1c4bf227e1ce1b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a488f35c99b484aa1c4bf227e1ce1b6.jpg", "file_size": 57760, "is_delete": false, "file_type": 1, "original_file_name": "243075#-04-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a488f35c99b484aa1c4bf227e1ce1b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a488f35c99b484aa1c4bf227e1ce1b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a488f35c99b484aa1c4bf227e1ce1b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a488f35c99b484aa1c4bf227e1ce1b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a488f35c99b484aa1c4bf227e1ce1b6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M6ERZeFqct8QS-03Pd8lBgkgjiY=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.475336+00 2025-12-09 10:16:08.475345+00 22261 88447#A粉色 SPMX-20240815317521 \N \N \N 1 \N [{"file_id": "87021bc8-b8ea-4333-afb9-cdd1cdff6cb4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "419d64c6314f424da055569d03e65506.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "419d64c6314f424da055569d03e65506.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "419d64c6314f424da055569d03e65506.jpg", "file_size": 19765, "is_delete": false, "file_type": 1, "original_file_name": "88447#A粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419d64c6314f424da055569d03e65506.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419d64c6314f424da055569d03e65506.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/419d64c6314f424da055569d03e65506.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/419d64c6314f424da055569d03e65506.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/419d64c6314f424da055569d03e65506.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vgphUtg18vCaHXkVvkBeWVKdTbs=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.479438+00 2025-12-09 10:16:08.479445+00 22262 LJW004FW#VS-D3白 SPMX-20240815317514 \N \N \N 1 \N [{"file_id": "cda7a611-0b2f-46cc-a6ad-cd2d330c6375", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "869ab9b3f46041f6afe6e956ac08c495.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "869ab9b3f46041f6afe6e956ac08c495.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "869ab9b3f46041f6afe6e956ac08c495.jpg", "file_size": 18954, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FW#VS-D3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/869ab9b3f46041f6afe6e956ac08c495.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/869ab9b3f46041f6afe6e956ac08c495.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/869ab9b3f46041f6afe6e956ac08c495.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/869ab9b3f46041f6afe6e956ac08c495.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/869ab9b3f46041f6afe6e956ac08c495.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IX-m1hR-mfu63T6zsDqtsScCg4A=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.483086+00 2025-12-09 10:16:08.483092+00 22263 0044-A6#LW浅15 SPMX-20240815317512 \N \N \N 1 \N [{"file_id": "2e34e527-342e-44b6-b6e6-14cdf237693c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "befa877a004f46a28a361c5b55da0a26.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "befa877a004f46a28a361c5b55da0a26.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "befa877a004f46a28a361c5b55da0a26.jpg", "file_size": 17704, "is_delete": false, "file_type": 1, "original_file_name": "0044-A6#LW浅15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befa877a004f46a28a361c5b55da0a26.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befa877a004f46a28a361c5b55da0a26.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/befa877a004f46a28a361c5b55da0a26.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/befa877a004f46a28a361c5b55da0a26.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/befa877a004f46a28a361c5b55da0a26.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ap77omIhkyy55xWAKCKrO3E6aeo=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.486699+00 2025-12-09 10:16:08.486707+00 22264 CHiC140#8号色-24码 SPMX-20240815317520 \N \N \N 1 \N [{"file_id": "a5a0f1e9-203d-4234-94af-1916ef98de51", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1a8f4e4625a64390a5509352f1683970.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1a8f4e4625a64390a5509352f1683970.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1a8f4e4625a64390a5509352f1683970.jpg", "file_size": 49382, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8f4e4625a64390a5509352f1683970.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8f4e4625a64390a5509352f1683970.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1a8f4e4625a64390a5509352f1683970.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1a8f4e4625a64390a5509352f1683970.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1a8f4e4625a64390a5509352f1683970.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sl_1JdlHFm7tmtMRF_9S993PnmA=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.490299+00 2025-12-09 10:16:08.490305+00 22265 DN-D3077#L SPMX-20240815317509 \N \N \N 1 \N [{"file_id": "6f51ac6a-782d-466f-8782-344d1b5b9bf0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af42e7cf21614ce9abaf9f1c517fab70.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af42e7cf21614ce9abaf9f1c517fab70.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af42e7cf21614ce9abaf9f1c517fab70.jpg", "file_size": 65523, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3077#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af42e7cf21614ce9abaf9f1c517fab70.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af42e7cf21614ce9abaf9f1c517fab70.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af42e7cf21614ce9abaf9f1c517fab70.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af42e7cf21614ce9abaf9f1c517fab70.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af42e7cf21614ce9abaf9f1c517fab70.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:46QAZkjZwtZS3TU1_8326tmnzrQ=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.493806+00 2025-12-09 10:16:08.493812+00 22266 JY-ML60026#藏青 SPMX-20240815317511 \N \N \N 1 \N [{"file_id": "7c5b29bd-dc81-4cb7-977c-734d9fe0169a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc926f0e478441329f37b0fdebabae32.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc926f0e478441329f37b0fdebabae32.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc926f0e478441329f37b0fdebabae32.jpg", "file_size": 16766, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60026#藏青.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc926f0e478441329f37b0fdebabae32.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc926f0e478441329f37b0fdebabae32.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc926f0e478441329f37b0fdebabae32.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc926f0e478441329f37b0fdebabae32.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc926f0e478441329f37b0fdebabae32.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BLD6DIoQg0U3aQWRkM3jm9aUC5s=", "createTime": "2024-08-15 15:11:39"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.497629+00 2025-12-09 10:16:08.497637+00 22267 DN-D3077#XL SPMX-20240815317533 \N \N \N 1 \N [{"file_id": "5b553be3-f284-46a5-b3e3-2d5f2aec9d33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c216384c1def459c8ed34a03554f47a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c216384c1def459c8ed34a03554f47a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c216384c1def459c8ed34a03554f47a7.jpg", "file_size": 64913, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3077#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c216384c1def459c8ed34a03554f47a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c216384c1def459c8ed34a03554f47a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c216384c1def459c8ed34a03554f47a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c216384c1def459c8ed34a03554f47a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c216384c1def459c8ed34a03554f47a7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qoML-T8N6YAajl3UB7zREqBT2Zc=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.537357+00 2025-12-09 10:16:08.537364+00 22277 0044-A6#黄底 SPMX-20240815317528 \N \N \N 1 \N [{"file_id": "302fdec6-6a83-473c-be95-639b53b960fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "631ebe9f2f13443aa5fdf7589442aed0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "631ebe9f2f13443aa5fdf7589442aed0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "631ebe9f2f13443aa5fdf7589442aed0.jpg", "file_size": 15948, "is_delete": false, "file_type": 1, "original_file_name": "0044-A6#黄底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631ebe9f2f13443aa5fdf7589442aed0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631ebe9f2f13443aa5fdf7589442aed0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/631ebe9f2f13443aa5fdf7589442aed0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/631ebe9f2f13443aa5fdf7589442aed0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/631ebe9f2f13443aa5fdf7589442aed0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OGp7Fg_vgP_Dp1hSySvkID2gIAM=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.50141+00 2025-12-09 10:16:08.501417+00 22268 88447#B-枣红底粉花 SPMX-20240815317534 \N \N \N 1 \N [{"file_id": "fe2347bd-0d7a-4712-b972-878b7f8b552d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "95b67d19b9204aada99eeb5df810260d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "95b67d19b9204aada99eeb5df810260d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "95b67d19b9204aada99eeb5df810260d.jpg", "file_size": 22736, "is_delete": false, "file_type": 1, "original_file_name": "88447#B-枣红底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b67d19b9204aada99eeb5df810260d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b67d19b9204aada99eeb5df810260d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/95b67d19b9204aada99eeb5df810260d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/95b67d19b9204aada99eeb5df810260d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/95b67d19b9204aada99eeb5df810260d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNGysKNsnpWma3xajZeEngmMXJs=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.505265+00 2025-12-09 10:16:08.505272+00 22269 LJW004FW#VS-D3红 SPMX-20240815317524 \N \N \N 1 \N [{"file_id": "0d224fcd-1d2f-48f1-983f-ce58ee80c037", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4fe15512db548849508e03235ee042a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4fe15512db548849508e03235ee042a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4fe15512db548849508e03235ee042a.jpg", "file_size": 19900, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FW#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe15512db548849508e03235ee042a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe15512db548849508e03235ee042a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4fe15512db548849508e03235ee042a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4fe15512db548849508e03235ee042a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4fe15512db548849508e03235ee042a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ttg2lnedhhzkTUrgjex0hESDFoU=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.509116+00 2025-12-09 10:16:08.509123+00 22270 FX025FWE#VS-D3 SPMX-20240815317527 \N \N \N 1 \N [{"file_id": "7e4650d3-a685-4564-a95b-208f3a6a559e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4e1de4fc912a4a2a95810ab6e1eef821.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4e1de4fc912a4a2a95810ab6e1eef821.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4e1de4fc912a4a2a95810ab6e1eef821.jpg", "file_size": 7813, "is_delete": false, "file_type": 1, "original_file_name": "FX025FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1de4fc912a4a2a95810ab6e1eef821.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1de4fc912a4a2a95810ab6e1eef821.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4e1de4fc912a4a2a95810ab6e1eef821.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4e1de4fc912a4a2a95810ab6e1eef821.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4e1de4fc912a4a2a95810ab6e1eef821.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XcVQfRCV9BoIiIzO4UdUohEXOTE=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.512991+00 2025-12-09 10:16:08.512999+00 22271 JY-ML60060#LWQ15 SPMX-20240815317532 \N \N \N 1 \N [{"file_id": "78e80403-2e36-42f4-b6de-ac6f4086a917", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46f263cd5b804941b0e0ec20727b0c0a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46f263cd5b804941b0e0ec20727b0c0a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46f263cd5b804941b0e0ec20727b0c0a.jpg", "file_size": 15306, "is_delete": false, "file_type": 1, "original_file_name": "JY-ML60060#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f263cd5b804941b0e0ec20727b0c0a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f263cd5b804941b0e0ec20727b0c0a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f263cd5b804941b0e0ec20727b0c0a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46f263cd5b804941b0e0ec20727b0c0a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46f263cd5b804941b0e0ec20727b0c0a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bUkV47yXBGBF1UmuLxc4pLXaG6g=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.516796+00 2025-12-09 10:16:08.516802+00 22272 243075#-04-2-3XL码 SPMX-20240815317526 \N \N \N 1 \N [{"file_id": "4f5ad416-8e3c-446a-9beb-46802c57ca64", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "931d98494ede464b80cf5c3cbf176d57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "931d98494ede464b80cf5c3cbf176d57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "931d98494ede464b80cf5c3cbf176d57.jpg", "file_size": 58979, "is_delete": false, "file_type": 1, "original_file_name": "243075#-04-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931d98494ede464b80cf5c3cbf176d57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931d98494ede464b80cf5c3cbf176d57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/931d98494ede464b80cf5c3cbf176d57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/931d98494ede464b80cf5c3cbf176d57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/931d98494ede464b80cf5c3cbf176d57.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ar9cbtj7JtED4bK6GDHxnKj7eow=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.520566+00 2025-12-09 10:16:08.520573+00 22273 HXF062FW#VS-D3 SPMX-20240815317525 \N \N \N 1 \N [{"file_id": "318a8d44-a246-4c0b-a87f-4528e60609f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43bd852da540405281afe67419ff468d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43bd852da540405281afe67419ff468d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43bd852da540405281afe67419ff468d.jpg", "file_size": 13276, "is_delete": false, "file_type": 1, "original_file_name": "HXF062FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43bd852da540405281afe67419ff468d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43bd852da540405281afe67419ff468d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43bd852da540405281afe67419ff468d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43bd852da540405281afe67419ff468d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43bd852da540405281afe67419ff468d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RvLfx55jh7TbvT0_-b0JcT3WJ3E=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.524782+00 2025-12-09 10:16:08.524789+00 22274 LZ1438#上身3号色 SPMX-20240815317529 \N \N \N 1 \N [{"file_id": "f9ff14fd-a89a-421f-a486-7631ebe009c5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b2bb9c9ef464413a12d76763d201618.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b2bb9c9ef464413a12d76763d201618.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b2bb9c9ef464413a12d76763d201618.jpg", "file_size": 18978, "is_delete": false, "file_type": 1, "original_file_name": "LZ1438#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2bb9c9ef464413a12d76763d201618.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2bb9c9ef464413a12d76763d201618.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b2bb9c9ef464413a12d76763d201618.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b2bb9c9ef464413a12d76763d201618.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b2bb9c9ef464413a12d76763d201618.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7-wyWwSruVbR24YvqRtzXbSFb-M=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.529048+00 2025-12-09 10:16:08.529055+00 22275 CHiC140#8号色-25码 SPMX-20240815317530 \N \N \N 1 \N [{"file_id": "dafa5615-f116-4476-a472-5d0b2016fc22", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "704c548ecc6e4fe5af6185587854f873.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "704c548ecc6e4fe5af6185587854f873.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "704c548ecc6e4fe5af6185587854f873.jpg", "file_size": 49902, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/704c548ecc6e4fe5af6185587854f873.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/704c548ecc6e4fe5af6185587854f873.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/704c548ecc6e4fe5af6185587854f873.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/704c548ecc6e4fe5af6185587854f873.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/704c548ecc6e4fe5af6185587854f873.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Lq422xodVbPWPq-Dchd5m1eQWY=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.541462+00 2025-12-09 10:16:08.541469+00 22278 130#-深杏 SPMX-20240815317531 \N \N \N 1 \N [{"file_id": "3ee3ee0c-a73d-4b72-9b97-094ca23602a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "280bd530f20a48e1bd8753748ded7203.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "280bd530f20a48e1bd8753748ded7203.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "280bd530f20a48e1bd8753748ded7203.jpg", "file_size": 41775, "is_delete": false, "file_type": 1, "original_file_name": "130#-深杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280bd530f20a48e1bd8753748ded7203.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280bd530f20a48e1bd8753748ded7203.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/280bd530f20a48e1bd8753748ded7203.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/280bd530f20a48e1bd8753748ded7203.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/280bd530f20a48e1bd8753748ded7203.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NG7pIUUUUQll7m0srKh8pMV1FYk=", "createTime": "2024-08-15 15:11:41"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.545617+00 2025-12-09 10:16:08.545624+00 22279 DN-D3078#2XL SPMX-20240815317543 \N \N \N 1 \N [{"file_id": "706d44e3-ca1b-4735-8759-fc2047147d5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "779eaeb6f5ce49fe8574fc791690ba43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "779eaeb6f5ce49fe8574fc791690ba43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "779eaeb6f5ce49fe8574fc791690ba43.jpg", "file_size": 76168, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779eaeb6f5ce49fe8574fc791690ba43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779eaeb6f5ce49fe8574fc791690ba43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/779eaeb6f5ce49fe8574fc791690ba43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/779eaeb6f5ce49fe8574fc791690ba43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/779eaeb6f5ce49fe8574fc791690ba43.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sq3S3NBeDvlIz0YxRQ1zSGz8tQs=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.549859+00 2025-12-09 10:16:08.549865+00 22280 HXF064FW#VS-D3 SPMX-20240815317550 \N \N \N 1 \N [{"file_id": "de044087-766f-4c98-b949-eaef5c7e2faf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "53eee77bdb1c4f5388e523ba691162b8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "53eee77bdb1c4f5388e523ba691162b8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "53eee77bdb1c4f5388e523ba691162b8.jpg", "file_size": 23512, "is_delete": false, "file_type": 1, "original_file_name": "HXF064FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53eee77bdb1c4f5388e523ba691162b8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53eee77bdb1c4f5388e523ba691162b8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/53eee77bdb1c4f5388e523ba691162b8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/53eee77bdb1c4f5388e523ba691162b8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/53eee77bdb1c4f5388e523ba691162b8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jLQrazJ3qAIuR17OqdFz_5MRXEU=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.554151+00 2025-12-09 10:16:08.554159+00 22281 CHiC140#8号色净色 SPMX-20240815317542 \N \N \N 1 \N [{"file_id": "706eb008-93ea-49af-ade1-f29718fd5aa8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2bd556264e6840e1952dc6883bea88d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2bd556264e6840e1952dc6883bea88d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2bd556264e6840e1952dc6883bea88d4.jpg", "file_size": 12901, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#8号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd556264e6840e1952dc6883bea88d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd556264e6840e1952dc6883bea88d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2bd556264e6840e1952dc6883bea88d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2bd556264e6840e1952dc6883bea88d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2bd556264e6840e1952dc6883bea88d4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:X5xTYeourZ8bkslRFlJkJYQwHOU=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.573597+00 2025-12-09 10:16:08.573605+00 22286 0044-A63lwq15 SPMX-20240815317537 \N \N \N 1 \N [{"file_id": "ce60d20f-a170-4a3a-ba92-0a30be1d8e9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f90c6825f114a11be40ebf6f2f28a9b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f90c6825f114a11be40ebf6f2f28a9b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f90c6825f114a11be40ebf6f2f28a9b.jpg", "file_size": 18054, "is_delete": false, "file_type": 1, "original_file_name": "0044-A63lwq15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f90c6825f114a11be40ebf6f2f28a9b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f90c6825f114a11be40ebf6f2f28a9b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f90c6825f114a11be40ebf6f2f28a9b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f90c6825f114a11be40ebf6f2f28a9b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f90c6825f114a11be40ebf6f2f28a9b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tl-87TAA6o4aOZE663GGJID5LUw=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.558055+00 2025-12-09 10:16:08.558062+00 22282 243075#-05-1-2XL码 SPMX-20240815317538 \N \N \N 1 \N [{"file_id": "9b928c51-b659-499a-ab42-eb473eb96714", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44d08a10e5bd409a9f4ca8269ad00faa.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44d08a10e5bd409a9f4ca8269ad00faa.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44d08a10e5bd409a9f4ca8269ad00faa.jpg", "file_size": 47576, "is_delete": false, "file_type": 1, "original_file_name": "243075#-05-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d08a10e5bd409a9f4ca8269ad00faa.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d08a10e5bd409a9f4ca8269ad00faa.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44d08a10e5bd409a9f4ca8269ad00faa.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44d08a10e5bd409a9f4ca8269ad00faa.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44d08a10e5bd409a9f4ca8269ad00faa.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6H9LZhkvxgpKII-PjFcaPCuy33s=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.562017+00 2025-12-09 10:16:08.562025+00 22283 LZ1438#上身4号色 SPMX-20240815317539 \N \N \N 1 \N [{"file_id": "496e56d3-015e-456a-ae7a-8d01699b9fd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9cc9a9bd7388439d841ffd0835e7665c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9cc9a9bd7388439d841ffd0835e7665c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9cc9a9bd7388439d841ffd0835e7665c.jpg", "file_size": 19264, "is_delete": false, "file_type": 1, "original_file_name": "LZ1438#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc9a9bd7388439d841ffd0835e7665c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc9a9bd7388439d841ffd0835e7665c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9cc9a9bd7388439d841ffd0835e7665c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9cc9a9bd7388439d841ffd0835e7665c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9cc9a9bd7388439d841ffd0835e7665c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Y0byPbTfhwO-LsQIb-NsYFIrSOw=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.565945+00 2025-12-09 10:16:08.565953+00 22284 JY-OQ230814-P38#1号色 SPMX-20240815317541 \N \N \N 1 \N [{"file_id": "7213484f-934f-41f0-b6c5-519c28ed8c80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "76599a4e3e1c4303822ca0d99e816a9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "76599a4e3e1c4303822ca0d99e816a9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "76599a4e3e1c4303822ca0d99e816a9a.jpg", "file_size": 22820, "is_delete": false, "file_type": 1, "original_file_name": "JY-OQ230814-P38#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76599a4e3e1c4303822ca0d99e816a9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76599a4e3e1c4303822ca0d99e816a9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/76599a4e3e1c4303822ca0d99e816a9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/76599a4e3e1c4303822ca0d99e816a9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/76599a4e3e1c4303822ca0d99e816a9a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:x-2waKZjlF3LRsD9qSZMfcKNERo=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.569776+00 2025-12-09 10:16:08.569783+00 22285 LJW004FW#VS-D3黄 SPMX-20240815317545 \N \N \N 1 \N [{"file_id": "654fc31e-8e3d-4b7a-aab0-0bb1ccfceb16", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bc00a9147f1240d090ed0594e7821fbc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bc00a9147f1240d090ed0594e7821fbc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bc00a9147f1240d090ed0594e7821fbc.jpg", "file_size": 19900, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc00a9147f1240d090ed0594e7821fbc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc00a9147f1240d090ed0594e7821fbc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bc00a9147f1240d090ed0594e7821fbc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bc00a9147f1240d090ed0594e7821fbc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bc00a9147f1240d090ed0594e7821fbc.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ba78eON5TCsE87uonUWt1EOMFPA=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.577402+00 2025-12-09 10:16:08.577408+00 22287 88447#B-深蓝底粉花 SPMX-20240815317544 \N \N \N 1 \N [{"file_id": "ba6ee38c-ab48-4f12-b634-fd6dfe9ca69d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9eb99905e12416881e3607ad816edf1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9eb99905e12416881e3607ad816edf1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9eb99905e12416881e3607ad816edf1.jpg", "file_size": 24661, "is_delete": false, "file_type": 1, "original_file_name": "88447#B-深蓝底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eb99905e12416881e3607ad816edf1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eb99905e12416881e3607ad816edf1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9eb99905e12416881e3607ad816edf1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9eb99905e12416881e3607ad816edf1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9eb99905e12416881e3607ad816edf1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rtvdNmyj1xy_R3lyjpUUWaewPe0=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.5813+00 2025-12-09 10:16:08.581307+00 22288 LZ1438#上身5号色 SPMX-20240815317548 \N \N \N 1 \N [{"file_id": "cef7f9af-e6d7-428b-b47d-c9da3f84b00d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35e02aa81edc468ab56205cffae34dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35e02aa81edc468ab56205cffae34dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35e02aa81edc468ab56205cffae34dcd.jpg", "file_size": 17754, "is_delete": false, "file_type": 1, "original_file_name": "LZ1438#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e02aa81edc468ab56205cffae34dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e02aa81edc468ab56205cffae34dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35e02aa81edc468ab56205cffae34dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35e02aa81edc468ab56205cffae34dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35e02aa81edc468ab56205cffae34dcd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FiENZLgz9niKW_Od7qb4XpwH1Do=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.585241+00 2025-12-09 10:16:08.585248+00 22289 0044-A7#LWQ15 SPMX-20240815317549 \N \N \N 1 \N [{"file_id": "91a46507-19dd-4a1d-99ca-bde892e13b90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8a7634559244bd48dd9982dc3b663e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8a7634559244bd48dd9982dc3b663e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8a7634559244bd48dd9982dc3b663e1.jpg", "file_size": 28271, "is_delete": false, "file_type": 1, "original_file_name": "0044-A7#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a7634559244bd48dd9982dc3b663e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a7634559244bd48dd9982dc3b663e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8a7634559244bd48dd9982dc3b663e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8a7634559244bd48dd9982dc3b663e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8a7634559244bd48dd9982dc3b663e1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VkMChy87TROiwhbaOJtR8-By-T4=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.589075+00 2025-12-09 10:16:08.589088+00 22290 130#-灰色 SPMX-20240815317546 \N \N \N 1 \N [{"file_id": "7ae8423c-015b-4fca-9c5d-bb526f002cf6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea81d6fcae3e4a65bab83267054b9968.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea81d6fcae3e4a65bab83267054b9968.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea81d6fcae3e4a65bab83267054b9968.jpg", "file_size": 55267, "is_delete": false, "file_type": 1, "original_file_name": "130#-灰色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea81d6fcae3e4a65bab83267054b9968.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea81d6fcae3e4a65bab83267054b9968.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea81d6fcae3e4a65bab83267054b9968.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea81d6fcae3e4a65bab83267054b9968.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea81d6fcae3e4a65bab83267054b9968.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ExGJuOcisyHDAYE1OCLiLIxVIk0=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.592864+00 2025-12-09 10:16:08.592872+00 22291 FX026#VS-D3 SPMX-20240815317547 \N \N \N 1 \N [{"file_id": "dcb58ee4-7b48-48bf-9031-1e3d3b99fd2f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3d6022d888db4367a7ec1ca0c0d6ac7c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3d6022d888db4367a7ec1ca0c0d6ac7c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3d6022d888db4367a7ec1ca0c0d6ac7c.jpg", "file_size": 30299, "is_delete": false, "file_type": 1, "original_file_name": "FX026#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6022d888db4367a7ec1ca0c0d6ac7c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6022d888db4367a7ec1ca0c0d6ac7c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3d6022d888db4367a7ec1ca0c0d6ac7c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3d6022d888db4367a7ec1ca0c0d6ac7c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3d6022d888db4367a7ec1ca0c0d6ac7c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JRZZxZfnZ1NtGmxiBVPtU2lOuLk=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.596757+00 2025-12-09 10:16:08.596764+00 22292 FX026#D SPMX-20240815317536 \N \N \N 1 \N [{"file_id": "53517af9-275f-49f7-97b9-6b5537d16ba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d7dbb8a0020a448995a2909f175c13f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d7dbb8a0020a448995a2909f175c13f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d7dbb8a0020a448995a2909f175c13f6.jpg", "file_size": 10824, "is_delete": false, "file_type": 1, "original_file_name": "FX026#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dbb8a0020a448995a2909f175c13f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dbb8a0020a448995a2909f175c13f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d7dbb8a0020a448995a2909f175c13f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d7dbb8a0020a448995a2909f175c13f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d7dbb8a0020a448995a2909f175c13f6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ft8qfK8mCpp52jsfGrz0d7IiO5k=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.600596+00 2025-12-09 10:16:08.600603+00 22293 HXF063FW#VS-D3 SPMX-20240815317540 \N \N \N 1 \N [{"file_id": "9e5210b2-fbf2-4a7c-90b8-69e2e31ca6d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6aac182693e439abf4e6997f2920c00.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6aac182693e439abf4e6997f2920c00.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6aac182693e439abf4e6997f2920c00.jpg", "file_size": 20924, "is_delete": false, "file_type": 1, "original_file_name": "HXF063FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aac182693e439abf4e6997f2920c00.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aac182693e439abf4e6997f2920c00.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6aac182693e439abf4e6997f2920c00.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6aac182693e439abf4e6997f2920c00.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6aac182693e439abf4e6997f2920c00.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k9A_mL_60ors1lsnmrg8xnazH5A=", "createTime": "2024-08-15 15:11:42"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.604402+00 2025-12-09 10:16:08.604408+00 22294 CHiC140#9号色-21码 SPMX-20240815317555 \N \N \N 1 \N [{"file_id": "daf2821a-84e8-4656-aae8-6dd4ffd755bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "91e7c2cb71a0443b81bd68601173158d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "91e7c2cb71a0443b81bd68601173158d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "91e7c2cb71a0443b81bd68601173158d.jpg", "file_size": 51056, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色-21码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91e7c2cb71a0443b81bd68601173158d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91e7c2cb71a0443b81bd68601173158d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/91e7c2cb71a0443b81bd68601173158d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/91e7c2cb71a0443b81bd68601173158d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/91e7c2cb71a0443b81bd68601173158d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rbLrFPe2pozP2YmU7IPbFxnES6s=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.608407+00 2025-12-09 10:16:08.608413+00 22295 243075#-05-1-3XL码 SPMX-20240815317552 \N \N \N 1 \N [{"file_id": "c7809605-02a1-4238-8d3f-43a17591b2fb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9d06a43ac24c470e8f4d350a41a4b1eb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9d06a43ac24c470e8f4d350a41a4b1eb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9d06a43ac24c470e8f4d350a41a4b1eb.jpg", "file_size": 47776, "is_delete": false, "file_type": 1, "original_file_name": "243075#-05-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d06a43ac24c470e8f4d350a41a4b1eb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d06a43ac24c470e8f4d350a41a4b1eb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9d06a43ac24c470e8f4d350a41a4b1eb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9d06a43ac24c470e8f4d350a41a4b1eb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9d06a43ac24c470e8f4d350a41a4b1eb.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NtPhqAjXSUtrLZKhZLlIYACbglQ=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.612333+00 2025-12-09 10:16:08.61234+00 22296 DN-D3078#3XL SPMX-20240815317553 \N \N \N 1 \N [{"file_id": "3bfbc16d-f42f-45ad-9e1d-4ab00175ac08", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "821509fe73894936b136d88e4edb47e6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "821509fe73894936b136d88e4edb47e6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "821509fe73894936b136d88e4edb47e6.jpg", "file_size": 73340, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821509fe73894936b136d88e4edb47e6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821509fe73894936b136d88e4edb47e6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/821509fe73894936b136d88e4edb47e6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/821509fe73894936b136d88e4edb47e6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/821509fe73894936b136d88e4edb47e6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AZt2pK0H6UhXGgK58onIknv6LnA=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.616323+00 2025-12-09 10:16:08.61633+00 22297 88447#B-灰底粉花 SPMX-20240815317554 \N \N \N 1 \N [{"file_id": "8e1e700f-a823-4515-891e-638f08ad9e1c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1234effcb104d359680b158cdd8c7cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1234effcb104d359680b158cdd8c7cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1234effcb104d359680b158cdd8c7cd.jpg", "file_size": 19508, "is_delete": false, "file_type": 1, "original_file_name": "88447#B-灰底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1234effcb104d359680b158cdd8c7cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1234effcb104d359680b158cdd8c7cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1234effcb104d359680b158cdd8c7cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1234effcb104d359680b158cdd8c7cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1234effcb104d359680b158cdd8c7cd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MpX6OFwcVGklxbMUiOs5aL-fi6M=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.620178+00 2025-12-09 10:16:08.620185+00 22298 JY-OQ230814-P38#2号色 SPMX-20240815317551 \N \N \N 1 \N [{"file_id": "0a491a8d-cff5-435e-975d-7472bcd08c36", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "32b1e4ea44784dc084846a9a51b2fa8a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "32b1e4ea44784dc084846a9a51b2fa8a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "32b1e4ea44784dc084846a9a51b2fa8a.jpg", "file_size": 22949, "is_delete": false, "file_type": 1, "original_file_name": "JY-OQ230814-P38#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b1e4ea44784dc084846a9a51b2fa8a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b1e4ea44784dc084846a9a51b2fa8a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/32b1e4ea44784dc084846a9a51b2fa8a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/32b1e4ea44784dc084846a9a51b2fa8a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/32b1e4ea44784dc084846a9a51b2fa8a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hrtQnYMxuj5Z7pQPQVPbGxQGoKY=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.624029+00 2025-12-09 10:16:08.624037+00 22299 JY-OQ230814-P38#3号色 SPMX-20240815317556 \N \N \N 1 \N [{"file_id": "90a58b6c-1f50-4be2-8ed3-b724420c58ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "44a05d3babd34a24b7f6df66e5f51eb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "44a05d3babd34a24b7f6df66e5f51eb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "44a05d3babd34a24b7f6df66e5f51eb0.jpg", "file_size": 23750, "is_delete": false, "file_type": 1, "original_file_name": "JY-OQ230814-P38#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44a05d3babd34a24b7f6df66e5f51eb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44a05d3babd34a24b7f6df66e5f51eb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/44a05d3babd34a24b7f6df66e5f51eb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/44a05d3babd34a24b7f6df66e5f51eb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/44a05d3babd34a24b7f6df66e5f51eb0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UThsB-swuY0BTXdYfbRyqUgKoeM=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.627887+00 2025-12-09 10:16:08.627894+00 22300 LZ1439#上身2号色 SPMX-20240815317564 \N \N \N 1 \N [{"file_id": "0e5cbb11-81ca-4492-ba9a-189bc3e2a745", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a03cc78a843d4c449999787bc9790a95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a03cc78a843d4c449999787bc9790a95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a03cc78a843d4c449999787bc9790a95.jpg", "file_size": 17292, "is_delete": false, "file_type": 1, "original_file_name": "LZ1439#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03cc78a843d4c449999787bc9790a95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03cc78a843d4c449999787bc9790a95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a03cc78a843d4c449999787bc9790a95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a03cc78a843d4c449999787bc9790a95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a03cc78a843d4c449999787bc9790a95.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WXxPuhpZehIEOxDcOg5Ac6zhOXE=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.631883+00 2025-12-09 10:16:08.631891+00 22301 243075#-06-1-2XL码 SPMX-20240815317557 \N \N \N 1 \N [{"file_id": "e5ecd67b-530d-49ad-beb0-556a4de3d802", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a0451ae225c4d698f8374f91eddf79f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a0451ae225c4d698f8374f91eddf79f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a0451ae225c4d698f8374f91eddf79f.jpg", "file_size": 57836, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0451ae225c4d698f8374f91eddf79f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0451ae225c4d698f8374f91eddf79f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a0451ae225c4d698f8374f91eddf79f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a0451ae225c4d698f8374f91eddf79f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a0451ae225c4d698f8374f91eddf79f.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Afts5pg2ulI5urRhz0p4IMIlefk=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.635718+00 2025-12-09 10:16:08.635725+00 22302 LJW004FW#VS-D3黑 SPMX-20240815317561 \N \N \N 1 \N [{"file_id": "524420ec-3f3a-4432-b3bf-13d392cee13c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06f6bd63d2cd452db6eb9be537459010.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06f6bd63d2cd452db6eb9be537459010.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06f6bd63d2cd452db6eb9be537459010.jpg", "file_size": 18339, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FW#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f6bd63d2cd452db6eb9be537459010.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f6bd63d2cd452db6eb9be537459010.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06f6bd63d2cd452db6eb9be537459010.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06f6bd63d2cd452db6eb9be537459010.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06f6bd63d2cd452db6eb9be537459010.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j6MmPgfehTm0xM14DSdHOV5u8fI=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.639696+00 2025-12-09 10:16:08.639708+00 22303 CHiC140#9号色-22码 SPMX-20240815317569 \N \N \N 1 \N [{"file_id": "be293a1c-3459-4b00-ab53-b66954e1c652", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a0db61a7ac5454dbb3e4b1b66667170.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a0db61a7ac5454dbb3e4b1b66667170.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a0db61a7ac5454dbb3e4b1b66667170.jpg", "file_size": 48417, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色-22码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0db61a7ac5454dbb3e4b1b66667170.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0db61a7ac5454dbb3e4b1b66667170.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a0db61a7ac5454dbb3e4b1b66667170.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a0db61a7ac5454dbb3e4b1b66667170.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a0db61a7ac5454dbb3e4b1b66667170.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-jxEqEkcArVJq7N_p54_lW0NgK4=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.643591+00 2025-12-09 10:16:08.643598+00 22304 JY-OQ230814-P38#6号色 SPMX-20240815317568 \N \N \N 1 \N [{"file_id": "81c4e5a3-e809-442e-a071-d7a2d4bca107", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97f8fcba6fbf452fb442360079b77057.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97f8fcba6fbf452fb442360079b77057.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97f8fcba6fbf452fb442360079b77057.jpg", "file_size": 21755, "is_delete": false, "file_type": 1, "original_file_name": "JY-OQ230814-P38#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f8fcba6fbf452fb442360079b77057.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f8fcba6fbf452fb442360079b77057.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97f8fcba6fbf452fb442360079b77057.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97f8fcba6fbf452fb442360079b77057.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97f8fcba6fbf452fb442360079b77057.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Tz8nxFz7nA7pjQ6HjC6ZjIKJfWM=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.647496+00 2025-12-09 10:16:08.647502+00 22305 FX026#杏底 SPMX-20240815317558 \N \N \N 1 \N [{"file_id": "76da1cd1-7ba7-4038-8625-a89daf1732c9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "284f42858c8e4f0e93ad1c208c01beda.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "284f42858c8e4f0e93ad1c208c01beda.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "284f42858c8e4f0e93ad1c208c01beda.jpg", "file_size": 14283, "is_delete": false, "file_type": 1, "original_file_name": "FX026#杏底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284f42858c8e4f0e93ad1c208c01beda.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284f42858c8e4f0e93ad1c208c01beda.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/284f42858c8e4f0e93ad1c208c01beda.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/284f42858c8e4f0e93ad1c208c01beda.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/284f42858c8e4f0e93ad1c208c01beda.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:6P9jKshbzNdMQP7RlzGNFwi0N0I=", "createTime": "2024-08-15 15:11:43"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.651333+00 2025-12-09 10:16:08.65134+00 22306 0044-A8#LWQ15 SPMX-20240815317562 \N \N \N 1 \N [{"file_id": "c0ecfd95-f31a-42d4-a8e5-3d9df4f940bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "040d36b77ac24ea694ed27721363a4de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "040d36b77ac24ea694ed27721363a4de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "040d36b77ac24ea694ed27721363a4de.jpg", "file_size": 22643, "is_delete": false, "file_type": 1, "original_file_name": "0044-A8#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040d36b77ac24ea694ed27721363a4de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040d36b77ac24ea694ed27721363a4de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/040d36b77ac24ea694ed27721363a4de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/040d36b77ac24ea694ed27721363a4de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/040d36b77ac24ea694ed27721363a4de.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kh4Z4IoO0zgkps2kjPiGeuiDia8=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.655196+00 2025-12-09 10:16:08.655207+00 22307 FX026#杏色 SPMX-20240815317565 \N \N \N 1 \N [{"file_id": "c87b7598-0576-4df9-aa46-9f278cef4c33", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "962f37172be64f898798579eca112bea.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "962f37172be64f898798579eca112bea.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "962f37172be64f898798579eca112bea.jpg", "file_size": 15681, "is_delete": false, "file_type": 1, "original_file_name": "FX026#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962f37172be64f898798579eca112bea.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962f37172be64f898798579eca112bea.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/962f37172be64f898798579eca112bea.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/962f37172be64f898798579eca112bea.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/962f37172be64f898798579eca112bea.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7BcBIve3-bvboRWZWoRE3jJk-GU=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.659045+00 2025-12-09 10:16:08.659052+00 22308 HXF066FW#杏VS-D3 SPMX-20240815317570 \N \N \N 1 \N [{"file_id": "d3af5dfe-d91d-4e3c-a050-99371f9d056c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "140ff5110b7149f8ae6ff50beb1b52dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "140ff5110b7149f8ae6ff50beb1b52dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "140ff5110b7149f8ae6ff50beb1b52dd.jpg", "file_size": 12713, "is_delete": false, "file_type": 1, "original_file_name": "HXF066FW#杏VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/140ff5110b7149f8ae6ff50beb1b52dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/140ff5110b7149f8ae6ff50beb1b52dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/140ff5110b7149f8ae6ff50beb1b52dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/140ff5110b7149f8ae6ff50beb1b52dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/140ff5110b7149f8ae6ff50beb1b52dd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KHtHiqOK5ac3bVA9BVv2IpcqyJU=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.662953+00 2025-12-09 10:16:08.662961+00 22309 LZ1439#上身1号色 SPMX-20240815317559 \N \N \N 1 \N [{"file_id": "15a2d6ce-1f6c-48d9-9410-1e363ad37c90", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "de7bcabd93b343008fe1ec1cd607e062.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "de7bcabd93b343008fe1ec1cd607e062.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "de7bcabd93b343008fe1ec1cd607e062.jpg", "file_size": 17012, "is_delete": false, "file_type": 1, "original_file_name": "LZ1439#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7bcabd93b343008fe1ec1cd607e062.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7bcabd93b343008fe1ec1cd607e062.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/de7bcabd93b343008fe1ec1cd607e062.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/de7bcabd93b343008fe1ec1cd607e062.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/de7bcabd93b343008fe1ec1cd607e062.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7eYbBVGIfTe26Bxe6UBVWPMA3eU=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.666862+00 2025-12-09 10:16:08.666869+00 22310 88447#B-白底红花 SPMX-20240815317563 \N \N \N 1 \N [{"file_id": "a528a6c1-7bc7-4806-815e-2be0cad4346d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1d2bed589d9445fa646631d35449501.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1d2bed589d9445fa646631d35449501.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1d2bed589d9445fa646631d35449501.jpg", "file_size": 22341, "is_delete": false, "file_type": 1, "original_file_name": "88447#B-白底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d2bed589d9445fa646631d35449501.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d2bed589d9445fa646631d35449501.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1d2bed589d9445fa646631d35449501.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1d2bed589d9445fa646631d35449501.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1d2bed589d9445fa646631d35449501.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxnqZQrp4U3sreIXPWbQQRTQlbo=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.670723+00 2025-12-09 10:16:08.67073+00 22311 HXF065FW#VS-D3 SPMX-20240815317560 \N \N \N 1 \N [{"file_id": "1d7e9c14-b898-4984-853e-6ba50f10e4da", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "067df1b6fef84f50a8c545be3cfd50a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "067df1b6fef84f50a8c545be3cfd50a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "067df1b6fef84f50a8c545be3cfd50a1.jpg", "file_size": 19842, "is_delete": false, "file_type": 1, "original_file_name": "HXF065FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/067df1b6fef84f50a8c545be3cfd50a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/067df1b6fef84f50a8c545be3cfd50a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/067df1b6fef84f50a8c545be3cfd50a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/067df1b6fef84f50a8c545be3cfd50a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/067df1b6fef84f50a8c545be3cfd50a1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EQwmC8_ZzL7HziFj1VwUgZxDd7o=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.674835+00 2025-12-09 10:16:08.674842+00 22312 DN-D3078#L SPMX-20240815317566 \N \N \N 1 \N [{"file_id": "3de5f349-81f5-4090-9775-5d9c2c922ac5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f97e76e696164b5ba994fa8914c509c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f97e76e696164b5ba994fa8914c509c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f97e76e696164b5ba994fa8914c509c9.jpg", "file_size": 76239, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97e76e696164b5ba994fa8914c509c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97e76e696164b5ba994fa8914c509c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f97e76e696164b5ba994fa8914c509c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f97e76e696164b5ba994fa8914c509c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f97e76e696164b5ba994fa8914c509c9.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q6C-Bgnj2KKBgesrKyMWXcqkZO4=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.678617+00 2025-12-09 10:16:08.678623+00 22313 243075#-06-1-3XL码 SPMX-20240815317567 \N \N \N 1 \N [{"file_id": "99b7ccf2-41fb-4318-b6a0-96d018cd86d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c89eb6dec43e482b914b841af3d5559d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c89eb6dec43e482b914b841af3d5559d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c89eb6dec43e482b914b841af3d5559d.jpg", "file_size": 57936, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89eb6dec43e482b914b841af3d5559d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89eb6dec43e482b914b841af3d5559d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c89eb6dec43e482b914b841af3d5559d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c89eb6dec43e482b914b841af3d5559d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c89eb6dec43e482b914b841af3d5559d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tO7z9DysbeVkUR_9MgminMY7lo0=", "createTime": "2024-08-15 15:11:44"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.682385+00 2025-12-09 10:16:08.682392+00 22314 LJW004FWE#VS-D3 SPMX-20240815317571 \N \N \N 1 \N [{"file_id": "c9987ba6-e0e1-4c01-a852-26bcc438afe3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "876515ad7af2472f984dc08742746129.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "876515ad7af2472f984dc08742746129.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "876515ad7af2472f984dc08742746129.jpg", "file_size": 19246, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876515ad7af2472f984dc08742746129.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876515ad7af2472f984dc08742746129.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/876515ad7af2472f984dc08742746129.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/876515ad7af2472f984dc08742746129.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/876515ad7af2472f984dc08742746129.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TFM95Mfezdtg33qv-VRPRm4H14M=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.685982+00 2025-12-09 10:16:08.685988+00 22315 LZ1439#上身3号色 SPMX-20240815317577 \N \N \N 1 \N [{"file_id": "fefda2f8-370a-4bf0-bf62-dfd975a3291e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eadeabf3eb4347c197317e27614b13b0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eadeabf3eb4347c197317e27614b13b0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eadeabf3eb4347c197317e27614b13b0.jpg", "file_size": 17672, "is_delete": false, "file_type": 1, "original_file_name": "LZ1439#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeabf3eb4347c197317e27614b13b0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeabf3eb4347c197317e27614b13b0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eadeabf3eb4347c197317e27614b13b0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eadeabf3eb4347c197317e27614b13b0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eadeabf3eb4347c197317e27614b13b0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J8UZbU1vMZpaABjBeMkKbYqdcyU=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.689518+00 2025-12-09 10:16:08.689525+00 22316 DN-D3078#M SPMX-20240815317576 \N \N \N 1 \N [{"file_id": "318a07e6-e2cb-4908-855d-2157bdba0d41", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "624ccf1528e747f49ca182a1f51da8e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "624ccf1528e747f49ca182a1f51da8e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "624ccf1528e747f49ca182a1f51da8e7.jpg", "file_size": 81822, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ccf1528e747f49ca182a1f51da8e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ccf1528e747f49ca182a1f51da8e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/624ccf1528e747f49ca182a1f51da8e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/624ccf1528e747f49ca182a1f51da8e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/624ccf1528e747f49ca182a1f51da8e7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N0oWH4N6jKcs80LtIq8bYWVwkTA=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.693209+00 2025-12-09 10:16:08.693215+00 22317 130#-白色 SPMX-20240815317574 \N \N \N 1 \N [{"file_id": "3ea2ba51-c948-44e7-8159-d3897a42c16b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd7c713f031048e0928831f1ebcb492c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd7c713f031048e0928831f1ebcb492c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd7c713f031048e0928831f1ebcb492c.jpg", "file_size": 40398, "is_delete": false, "file_type": 1, "original_file_name": "130#-白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7c713f031048e0928831f1ebcb492c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7c713f031048e0928831f1ebcb492c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd7c713f031048e0928831f1ebcb492c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd7c713f031048e0928831f1ebcb492c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd7c713f031048e0928831f1ebcb492c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:h-3Ba6fj4EZFW7qNVuGz5jXC5vo=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.697163+00 2025-12-09 10:16:08.697169+00 22318 243075#-06-2-2XL码 SPMX-20240815317578 \N \N \N 1 \N [{"file_id": "01c64009-9047-4a49-b049-531d236f37a0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "338ba95775494a80bf58e7d973f2eee5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "338ba95775494a80bf58e7d973f2eee5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "338ba95775494a80bf58e7d973f2eee5.jpg", "file_size": 60032, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338ba95775494a80bf58e7d973f2eee5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338ba95775494a80bf58e7d973f2eee5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338ba95775494a80bf58e7d973f2eee5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/338ba95775494a80bf58e7d973f2eee5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/338ba95775494a80bf58e7d973f2eee5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XgZ43UjTJBQMw7GJ6wzzf-xShq0=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.700899+00 2025-12-09 10:16:08.700905+00 22319 FX026#棕底 SPMX-20240815317575 \N \N \N 1 \N [{"file_id": "4ca56f70-4822-4923-8462-3cf2614749f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8844f679d104e229cbac88c41a7e5da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8844f679d104e229cbac88c41a7e5da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8844f679d104e229cbac88c41a7e5da.jpg", "file_size": 20345, "is_delete": false, "file_type": 1, "original_file_name": "FX026#棕底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8844f679d104e229cbac88c41a7e5da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8844f679d104e229cbac88c41a7e5da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8844f679d104e229cbac88c41a7e5da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8844f679d104e229cbac88c41a7e5da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8844f679d104e229cbac88c41a7e5da.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Iz2QGBDJQ2auAWAnwHO70NtJgMg=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.708148+00 2025-12-09 10:16:08.708154+00 22321 LJW004FWE#黑VS-D3 SPMX-20240815317581 \N \N \N 1 \N [{"file_id": "71136522-be64-42b9-a644-6a84d87ccc5b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ce6407009934b5e852889c2913cdd9a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ce6407009934b5e852889c2913cdd9a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ce6407009934b5e852889c2913cdd9a.jpg", "file_size": 18388, "is_delete": false, "file_type": 1, "original_file_name": "LJW004FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce6407009934b5e852889c2913cdd9a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce6407009934b5e852889c2913cdd9a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ce6407009934b5e852889c2913cdd9a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ce6407009934b5e852889c2913cdd9a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ce6407009934b5e852889c2913cdd9a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dxOG29LqiBw2PD9dA0fsqh7pT_8=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.71173+00 2025-12-09 10:16:08.711736+00 22322 CHiC140#9号色-23码 SPMX-20240815317582 \N \N \N 1 \N [{"file_id": "a7e1d98e-e83a-48fe-bc2c-a71502f521c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "81a3b2ae94d746428c5afa7aa839a3c6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "81a3b2ae94d746428c5afa7aa839a3c6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "81a3b2ae94d746428c5afa7aa839a3c6.jpg", "file_size": 47275, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色-23码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a3b2ae94d746428c5afa7aa839a3c6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a3b2ae94d746428c5afa7aa839a3c6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/81a3b2ae94d746428c5afa7aa839a3c6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/81a3b2ae94d746428c5afa7aa839a3c6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/81a3b2ae94d746428c5afa7aa839a3c6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uMt8kSRGVdWKaLemaU-IPePx9Ng=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.704543+00 2025-12-09 10:16:08.70455+00 22320 0044-A9#LWQ15 SPMX-20240815317573 \N \N \N 1 \N [{"file_id": "8ceb420b-cadb-4388-968f-8198773a0ecd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bc303640f244164a97556ed4e5e2187.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bc303640f244164a97556ed4e5e2187.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bc303640f244164a97556ed4e5e2187.jpg", "file_size": 17666, "is_delete": false, "file_type": 1, "original_file_name": "0044-A9#LWQ15.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc303640f244164a97556ed4e5e2187.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc303640f244164a97556ed4e5e2187.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bc303640f244164a97556ed4e5e2187.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bc303640f244164a97556ed4e5e2187.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bc303640f244164a97556ed4e5e2187.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rD38R-DalQOoIeW0PXAHNidyi44=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.719127+00 2025-12-09 10:16:08.719135+00 22323 HXF066FW#粉VS-D3 SPMX-20240815317579 \N \N \N 1 \N [{"file_id": "fe336282-f68c-4eb4-b14d-1761b29701ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1bdaddd45c8a40df860c07bede9e14d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1bdaddd45c8a40df860c07bede9e14d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1bdaddd45c8a40df860c07bede9e14d7.jpg", "file_size": 12181, "is_delete": false, "file_type": 1, "original_file_name": "HXF066FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdaddd45c8a40df860c07bede9e14d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdaddd45c8a40df860c07bede9e14d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1bdaddd45c8a40df860c07bede9e14d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1bdaddd45c8a40df860c07bede9e14d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1bdaddd45c8a40df860c07bede9e14d7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Fb3xLs3arzRJGuMzAelwCoEJy6c=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.722734+00 2025-12-09 10:16:08.72274+00 22324 JY-OQ230814-P38#8号色 SPMX-20240815317580 \N \N \N 1 \N [{"file_id": "d07593f4-6181-4bcb-b3a3-5596768be837", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "62ac3858782d42bf98f16dd8e108af49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "62ac3858782d42bf98f16dd8e108af49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "62ac3858782d42bf98f16dd8e108af49.jpg", "file_size": 22830, "is_delete": false, "file_type": 1, "original_file_name": "JY-OQ230814-P38#8号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac3858782d42bf98f16dd8e108af49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac3858782d42bf98f16dd8e108af49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/62ac3858782d42bf98f16dd8e108af49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/62ac3858782d42bf98f16dd8e108af49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/62ac3858782d42bf98f16dd8e108af49.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:spNNVsAEVPX-373ncppxsDQfFlA=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.726397+00 2025-12-09 10:16:08.726405+00 22325 88447#B-黑底黄花 SPMX-20240815317583 \N \N \N 1 \N [{"file_id": "20557962-6fcb-48d3-9b10-dcf68ed15111", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46b992b7925b4abd80e202205a95d319.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46b992b7925b4abd80e202205a95d319.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46b992b7925b4abd80e202205a95d319.jpg", "file_size": 24617, "is_delete": false, "file_type": 1, "original_file_name": "88447#B-黑底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b992b7925b4abd80e202205a95d319.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b992b7925b4abd80e202205a95d319.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46b992b7925b4abd80e202205a95d319.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46b992b7925b4abd80e202205a95d319.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46b992b7925b4abd80e202205a95d319.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ycoiy7opZ0nNtvaHPuND4vzXDIg=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.730014+00 2025-12-09 10:16:08.730021+00 22326 FX026FW#VS-D3 SPMX-20240815317596 \N \N \N 1 \N [{"file_id": "1bdfc74d-827a-497b-a1d4-894934b0eda0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9744baeb3e04b1da90c933662f1a5d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9744baeb3e04b1da90c933662f1a5d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9744baeb3e04b1da90c933662f1a5d0.jpg", "file_size": 11180, "is_delete": false, "file_type": 1, "original_file_name": "FX026FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9744baeb3e04b1da90c933662f1a5d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9744baeb3e04b1da90c933662f1a5d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9744baeb3e04b1da90c933662f1a5d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9744baeb3e04b1da90c933662f1a5d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9744baeb3e04b1da90c933662f1a5d0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:cYMFCnom8-kV9PbH-n-8FFzZF2Y=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.733549+00 2025-12-09 10:16:08.733556+00 22327 LJW005#D SPMX-20240815317592 \N \N \N 1 \N [{"file_id": "3eb04073-9a28-4cd8-b27c-23e661e6e925", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "68fcca2b60c642859adc4e212db5ee18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "68fcca2b60c642859adc4e212db5ee18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "68fcca2b60c642859adc4e212db5ee18.jpg", "file_size": 21009, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68fcca2b60c642859adc4e212db5ee18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68fcca2b60c642859adc4e212db5ee18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/68fcca2b60c642859adc4e212db5ee18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/68fcca2b60c642859adc4e212db5ee18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/68fcca2b60c642859adc4e212db5ee18.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:30YajKSjWFYE1ufisKCt-xL9BQY=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.73712+00 2025-12-09 10:16:08.737126+00 22328 243075#-06-2-3XL码 SPMX-20240815317590 \N \N \N 1 \N [{"file_id": "bce1d214-8119-4086-ba65-3a342964ad56", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f7c169210f8d4e87b760ea9c29d8fdb1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f7c169210f8d4e87b760ea9c29d8fdb1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f7c169210f8d4e87b760ea9c29d8fdb1.jpg", "file_size": 58392, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7c169210f8d4e87b760ea9c29d8fdb1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7c169210f8d4e87b760ea9c29d8fdb1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f7c169210f8d4e87b760ea9c29d8fdb1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f7c169210f8d4e87b760ea9c29d8fdb1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f7c169210f8d4e87b760ea9c29d8fdb1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rs6Mn_FeTqIUtUziHiKlfeYasQI=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.740728+00 2025-12-09 10:16:08.740734+00 22329 0048-1FWE#粉色VS-D3 SPMX-20240815317595 \N \N \N 1 \N [{"file_id": "95583977-06b8-4bba-9b0c-40087c0b9be8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2604b72e9ad94e7eb98c17633ab4e3db.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2604b72e9ad94e7eb98c17633ab4e3db.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2604b72e9ad94e7eb98c17633ab4e3db.jpg", "file_size": 23795, "is_delete": false, "file_type": 1, "original_file_name": "0048-1FWE#粉色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2604b72e9ad94e7eb98c17633ab4e3db.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2604b72e9ad94e7eb98c17633ab4e3db.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2604b72e9ad94e7eb98c17633ab4e3db.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2604b72e9ad94e7eb98c17633ab4e3db.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2604b72e9ad94e7eb98c17633ab4e3db.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLiRvX9sdjUYBpGbAZZIYof1k4M=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.74439+00 2025-12-09 10:16:08.744396+00 22330 0048-1FWE#杏色VS-D3 SPMX-20240815317584 \N \N \N 1 \N [{"file_id": "0132c57d-e6fb-4aea-84ee-6d7dc7a62e69", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4e90e7f34e04bf4b8fb841e383cbbcf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4e90e7f34e04bf4b8fb841e383cbbcf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4e90e7f34e04bf4b8fb841e383cbbcf.jpg", "file_size": 26171, "is_delete": false, "file_type": 1, "original_file_name": "0048-1FWE#杏色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e90e7f34e04bf4b8fb841e383cbbcf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e90e7f34e04bf4b8fb841e383cbbcf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4e90e7f34e04bf4b8fb841e383cbbcf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4e90e7f34e04bf4b8fb841e383cbbcf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4e90e7f34e04bf4b8fb841e383cbbcf.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HeDyHGCGoLXNQCSPnxrFc08-wZk=", "createTime": "2024-08-15 15:11:45"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.747989+00 2025-12-09 10:16:08.747996+00 22331 1300FWF#白色 SPMX-20240815317597 \N \N \N 1 \N [{"file_id": "500717fe-319b-48c4-a75b-e1066c37ab01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "880c99fa6a504602a03dad2bb8ce9bc7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "880c99fa6a504602a03dad2bb8ce9bc7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "880c99fa6a504602a03dad2bb8ce9bc7.jpg", "file_size": 9942, "is_delete": false, "file_type": 1, "original_file_name": "1300FWF#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c99fa6a504602a03dad2bb8ce9bc7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c99fa6a504602a03dad2bb8ce9bc7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/880c99fa6a504602a03dad2bb8ce9bc7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/880c99fa6a504602a03dad2bb8ce9bc7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/880c99fa6a504602a03dad2bb8ce9bc7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xPpXvtiHs5D89FIG7zzgKa9sxFM=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.751715+00 2025-12-09 10:16:08.751721+00 22332 130#-黑色 SPMX-20240815317586 \N \N \N 1 \N [{"file_id": "2ca7f263-9792-4e68-9005-7a37d73d8fdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "94af0836948a45409c33d6932aba1383.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "94af0836948a45409c33d6932aba1383.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "94af0836948a45409c33d6932aba1383.jpg", "file_size": 41894, "is_delete": false, "file_type": 1, "original_file_name": "130#-黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94af0836948a45409c33d6932aba1383.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94af0836948a45409c33d6932aba1383.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/94af0836948a45409c33d6932aba1383.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/94af0836948a45409c33d6932aba1383.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/94af0836948a45409c33d6932aba1383.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qxp1bOJUTjkTHVOxNwnrL_ro0As=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.755384+00 2025-12-09 10:16:08.755389+00 22333 88447#C枣红底杏花 SPMX-20240815317593 \N \N \N 1 \N [{"file_id": "9c22caf1-cf3d-4fc0-9975-49b9a4b35301", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg", "file_size": 18222, "is_delete": false, "file_type": 1, "original_file_name": "88447#C枣红底杏花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ddf66bfcbcc4b5cafb3cabfd30b8110.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NKjEKrSlL45kgIxPIgX1YEgVHJg=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.759078+00 2025-12-09 10:16:08.759085+00 22334 HXF067FW#VS-D3 SPMX-20240815317588 \N \N \N 1 \N [{"file_id": "448058a9-6016-4f86-a4c9-0b33a53a2eb7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee23e2f8d89a47f989140eb377fc19a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee23e2f8d89a47f989140eb377fc19a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee23e2f8d89a47f989140eb377fc19a7.jpg", "file_size": 24415, "is_delete": false, "file_type": 1, "original_file_name": "HXF067FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee23e2f8d89a47f989140eb377fc19a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee23e2f8d89a47f989140eb377fc19a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee23e2f8d89a47f989140eb377fc19a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee23e2f8d89a47f989140eb377fc19a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee23e2f8d89a47f989140eb377fc19a7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sjPG0FHJorhe6XofG23F8uo3KuY=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.762761+00 2025-12-09 10:16:08.762767+00 22335 DN-D3078#XL SPMX-20240815317589 \N \N \N 1 \N [{"file_id": "ebdb2515-b551-4b87-aec4-514e716b04c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00be78505372477db7a76ce90aa59dd8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00be78505372477db7a76ce90aa59dd8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00be78505372477db7a76ce90aa59dd8.jpg", "file_size": 74951, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00be78505372477db7a76ce90aa59dd8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00be78505372477db7a76ce90aa59dd8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00be78505372477db7a76ce90aa59dd8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00be78505372477db7a76ce90aa59dd8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00be78505372477db7a76ce90aa59dd8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:a024Q1Pl85NxgVkbxwxeEb9397g=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.795732+00 2025-12-09 10:16:08.795738+00 22344 DN-D3078#领子 SPMX-20240815317600 \N \N \N 1 \N [{"file_id": "4c55921d-9a50-45bc-bbba-a289374a4018", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4ddbada0b5f54fe7aee12a5dd2a08c03.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4ddbada0b5f54fe7aee12a5dd2a08c03.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4ddbada0b5f54fe7aee12a5dd2a08c03.jpg", "file_size": 24027, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3078#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ddbada0b5f54fe7aee12a5dd2a08c03.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ddbada0b5f54fe7aee12a5dd2a08c03.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4ddbada0b5f54fe7aee12a5dd2a08c03.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4ddbada0b5f54fe7aee12a5dd2a08c03.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4ddbada0b5f54fe7aee12a5dd2a08c03.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bKQo-gWcXCPEoDU-GkyPVrHVuDI=", "createTime": "2024-08-15 15:11:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.766375+00 2025-12-09 10:16:08.766381+00 22336 CHiC140#9号色-24码 SPMX-20240815317594 \N \N \N 1 \N [{"file_id": "91f2f2ff-357c-4cd5-a34f-294cdc21f7c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d13e154b0a64e32b7dab8acfb3191d4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d13e154b0a64e32b7dab8acfb3191d4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d13e154b0a64e32b7dab8acfb3191d4.jpg", "file_size": 46626, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色-24码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d13e154b0a64e32b7dab8acfb3191d4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d13e154b0a64e32b7dab8acfb3191d4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d13e154b0a64e32b7dab8acfb3191d4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d13e154b0a64e32b7dab8acfb3191d4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d13e154b0a64e32b7dab8acfb3191d4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e0QInqDtBeTQIJkDEQe3JQZ7g9U=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.770091+00 2025-12-09 10:16:08.770097+00 22337 LZ1439#上身5号色 SPMX-20240815317598 \N \N \N 1 \N [{"file_id": "087bc7b2-3acf-4580-ab8e-eeb396b510f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1ae5da66e685451b9a3dd400f311c77c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1ae5da66e685451b9a3dd400f311c77c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1ae5da66e685451b9a3dd400f311c77c.jpg", "file_size": 18327, "is_delete": false, "file_type": 1, "original_file_name": "LZ1439#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae5da66e685451b9a3dd400f311c77c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae5da66e685451b9a3dd400f311c77c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1ae5da66e685451b9a3dd400f311c77c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1ae5da66e685451b9a3dd400f311c77c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1ae5da66e685451b9a3dd400f311c77c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EFC99mqhTk3Armdift3ZZcRTFjg=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.773785+00 2025-12-09 10:16:08.773792+00 22338 FX026#白底 SPMX-20240815317585 \N \N \N 1 \N [{"file_id": "6e87cb6c-fbaf-46bb-bb43-a7574c8eee21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a1021cb98aa3451f8a0f61d4c3acbbc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a1021cb98aa3451f8a0f61d4c3acbbc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a1021cb98aa3451f8a0f61d4c3acbbc6.jpg", "file_size": 26358, "is_delete": false, "file_type": 1, "original_file_name": "FX026#白底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1021cb98aa3451f8a0f61d4c3acbbc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1021cb98aa3451f8a0f61d4c3acbbc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a1021cb98aa3451f8a0f61d4c3acbbc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a1021cb98aa3451f8a0f61d4c3acbbc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a1021cb98aa3451f8a0f61d4c3acbbc6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fKXGyCD5cjjZ59BT366D7yeQAWs=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.77737+00 2025-12-09 10:16:08.777375+00 22339 JY-QC230718#1号红 SPMX-20240815317591 \N \N \N 1 \N [{"file_id": "e111184b-5bba-47ea-9960-a3f90579b12e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bb9661e6fefa47c39ea013e62f4728e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bb9661e6fefa47c39ea013e62f4728e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bb9661e6fefa47c39ea013e62f4728e1.jpg", "file_size": 8890, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#1号红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9661e6fefa47c39ea013e62f4728e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9661e6fefa47c39ea013e62f4728e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bb9661e6fefa47c39ea013e62f4728e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bb9661e6fefa47c39ea013e62f4728e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bb9661e6fefa47c39ea013e62f4728e1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eY36gmbI94ml5qx9-WWFjU-rWt4=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.780993+00 2025-12-09 10:16:08.781+00 22340 LZ1439#上身4号色 SPMX-20240815317587 \N \N \N 1 \N [{"file_id": "2afe3444-1b00-4cea-a845-e8cad3dec56b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3142271ba2c4025892e442e9983fc6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3142271ba2c4025892e442e9983fc6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3142271ba2c4025892e442e9983fc6c.jpg", "file_size": 18013, "is_delete": false, "file_type": 1, "original_file_name": "LZ1439#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3142271ba2c4025892e442e9983fc6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3142271ba2c4025892e442e9983fc6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3142271ba2c4025892e442e9983fc6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3142271ba2c4025892e442e9983fc6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3142271ba2c4025892e442e9983fc6c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UitX3M28ZoW4y7MmzEZJIqWo0Kk=", "createTime": "2024-08-15 15:11:46"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.784748+00 2025-12-09 10:16:08.784755+00 22341 243075#-06-3-2XL码 SPMX-20240815317601 \N \N \N 1 \N [{"file_id": "763fd2cd-d8b9-4990-b9d1-083eebb56dac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c033dca54b694187a4528158593a63e3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c033dca54b694187a4528158593a63e3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c033dca54b694187a4528158593a63e3.jpg", "file_size": 55238, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033dca54b694187a4528158593a63e3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033dca54b694187a4528158593a63e3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c033dca54b694187a4528158593a63e3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c033dca54b694187a4528158593a63e3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c033dca54b694187a4528158593a63e3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lEnKOT62yWlHsa7-SUF6qxN3bFw=", "createTime": "2024-08-15 15:11:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.788369+00 2025-12-09 10:16:08.788375+00 22342 JY-QC230718#2号焦糖 SPMX-20240815317603 \N \N \N 1 \N [{"file_id": "1a13ff82-f5a6-49f4-a60a-e18d6a5749e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3528c7133fa54aeb9de4962c480f19f8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3528c7133fa54aeb9de4962c480f19f8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3528c7133fa54aeb9de4962c480f19f8.jpg", "file_size": 9347, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#2号焦糖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3528c7133fa54aeb9de4962c480f19f8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3528c7133fa54aeb9de4962c480f19f8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3528c7133fa54aeb9de4962c480f19f8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3528c7133fa54aeb9de4962c480f19f8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3528c7133fa54aeb9de4962c480f19f8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KLReutUZCTrlJ1tepWb92PKImKY=", "createTime": "2024-08-15 15:11:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.792008+00 2025-12-09 10:16:08.792015+00 22343 HXF068FW#粉VS-D3 SPMX-20240815317599 \N \N \N 1 \N [{"file_id": "d28e50ad-7c8b-4c7c-9837-28330542c0a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3cb9aedac2d04bb685066b05cd692c59.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3cb9aedac2d04bb685066b05cd692c59.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3cb9aedac2d04bb685066b05cd692c59.jpg", "file_size": 13132, "is_delete": false, "file_type": 1, "original_file_name": "HXF068FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb9aedac2d04bb685066b05cd692c59.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb9aedac2d04bb685066b05cd692c59.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3cb9aedac2d04bb685066b05cd692c59.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3cb9aedac2d04bb685066b05cd692c59.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3cb9aedac2d04bb685066b05cd692c59.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TaNF6FofwJSHMC0U3Ql5TQ0aLbw=", "createTime": "2024-08-15 15:11:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.799396+00 2025-12-09 10:16:08.799403+00 22345 88447#C深蓝底红花 SPMX-20240815317602 \N \N \N 1 \N [{"file_id": "625042fb-1d58-4fbf-b72d-501d44afe09e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77fb837c200f47cb95792b6a6aaca4d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77fb837c200f47cb95792b6a6aaca4d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77fb837c200f47cb95792b6a6aaca4d8.jpg", "file_size": 17246, "is_delete": false, "file_type": 1, "original_file_name": "88447#C深蓝底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb837c200f47cb95792b6a6aaca4d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb837c200f47cb95792b6a6aaca4d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77fb837c200f47cb95792b6a6aaca4d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77fb837c200f47cb95792b6a6aaca4d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77fb837c200f47cb95792b6a6aaca4d8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GvBb7FhRVkKON06540we-9DiE3g=", "createTime": "2024-08-15 15:11:47"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.803289+00 2025-12-09 10:16:08.803295+00 22346 CHiC140#9号色-25码 SPMX-20240815317608 \N \N \N 1 \N [{"file_id": "969e3164-0da4-411d-b389-e4be570a7716", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35d641b48f8148f3a335f43c63f5cebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35d641b48f8148f3a335f43c63f5cebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35d641b48f8148f3a335f43c63f5cebc.jpg", "file_size": 45056, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色-25码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d641b48f8148f3a335f43c63f5cebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d641b48f8148f3a335f43c63f5cebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35d641b48f8148f3a335f43c63f5cebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35d641b48f8148f3a335f43c63f5cebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35d641b48f8148f3a335f43c63f5cebc.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wLA_PVRHbTwnJOetq45DDkjKqUU=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.807227+00 2025-12-09 10:16:08.807235+00 22347 DN-D3079#2XL SPMX-20240815317614 \N \N \N 1 \N [{"file_id": "141b816e-f36b-4ace-8dbd-b7bb6887b463", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b880dec64f6548a289d3bcab06805fc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b880dec64f6548a289d3bcab06805fc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b880dec64f6548a289d3bcab06805fc3.jpg", "file_size": 68096, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b880dec64f6548a289d3bcab06805fc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b880dec64f6548a289d3bcab06805fc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b880dec64f6548a289d3bcab06805fc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b880dec64f6548a289d3bcab06805fc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b880dec64f6548a289d3bcab06805fc3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VzXf501OmiLfUGKt-51qxUNjcww=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.811004+00 2025-12-09 10:16:08.81101+00 22348 FX026FWE#VS-D3 SPMX-20240815317605 \N \N \N 1 \N [{"file_id": "ec296862-91db-4a69-9759-b11b337670c3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98f726739c2e48c2a3111cd9536aeeab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98f726739c2e48c2a3111cd9536aeeab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98f726739c2e48c2a3111cd9536aeeab.jpg", "file_size": 18457, "is_delete": false, "file_type": 1, "original_file_name": "FX026FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f726739c2e48c2a3111cd9536aeeab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f726739c2e48c2a3111cd9536aeeab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98f726739c2e48c2a3111cd9536aeeab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98f726739c2e48c2a3111cd9536aeeab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98f726739c2e48c2a3111cd9536aeeab.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9gWEp2FFlPqA81Xd1VugHRrJhlU=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.814612+00 2025-12-09 10:16:08.814618+00 22349 LZ143FWF#短袖1号色 SPMX-20240815317606 \N \N \N 1 \N [{"file_id": "fba53c70-da05-4ab0-9de4-4ded5f213abf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f13fb405f09b43ee986376d706c3a32f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f13fb405f09b43ee986376d706c3a32f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f13fb405f09b43ee986376d706c3a32f.jpg", "file_size": 19344, "is_delete": false, "file_type": 1, "original_file_name": "LZ143FWF#短袖1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13fb405f09b43ee986376d706c3a32f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13fb405f09b43ee986376d706c3a32f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f13fb405f09b43ee986376d706c3a32f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f13fb405f09b43ee986376d706c3a32f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f13fb405f09b43ee986376d706c3a32f.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xKLa3Logm0wygdEQQaNU54OykaY=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.818325+00 2025-12-09 10:16:08.818331+00 22350 JY-QC230718#4号桔 SPMX-20240815317613 \N \N \N 1 \N [{"file_id": "048b0f73-9da6-45a5-9fe6-b1e432a8cd72", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9dbb2322a0d24f93be316979d7f31bee.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9dbb2322a0d24f93be316979d7f31bee.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9dbb2322a0d24f93be316979d7f31bee.jpg", "file_size": 9852, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#4号桔.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dbb2322a0d24f93be316979d7f31bee.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dbb2322a0d24f93be316979d7f31bee.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9dbb2322a0d24f93be316979d7f31bee.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9dbb2322a0d24f93be316979d7f31bee.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9dbb2322a0d24f93be316979d7f31bee.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:weZm2-YzSe_UXvnEdRFdRsOq9Fw=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.821999+00 2025-12-09 10:16:08.822005+00 22351 243075#-06-3-3XL码 SPMX-20240815317611 \N \N \N 1 \N [{"file_id": "03baa3e2-10b2-4d2e-a19d-6d06fe9e81ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f9fe1427c488470b9b384774e9d77188.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f9fe1427c488470b9b384774e9d77188.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f9fe1427c488470b9b384774e9d77188.jpg", "file_size": 53685, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe1427c488470b9b384774e9d77188.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe1427c488470b9b384774e9d77188.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f9fe1427c488470b9b384774e9d77188.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f9fe1427c488470b9b384774e9d77188.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f9fe1427c488470b9b384774e9d77188.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lBjs7jFX2Z9sDkL2PfO6qK1QkBs=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.825531+00 2025-12-09 10:16:08.825537+00 22352 HXF068FW#绿VS-D3 SPMX-20240815317609 \N \N \N 1 \N [{"file_id": "ef2ea719-5a84-4375-b0f3-b2130c6963bf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a81e20c9588941fba828b5790ccc9be7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a81e20c9588941fba828b5790ccc9be7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a81e20c9588941fba828b5790ccc9be7.jpg", "file_size": 13082, "is_delete": false, "file_type": 1, "original_file_name": "HXF068FW#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81e20c9588941fba828b5790ccc9be7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81e20c9588941fba828b5790ccc9be7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a81e20c9588941fba828b5790ccc9be7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a81e20c9588941fba828b5790ccc9be7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a81e20c9588941fba828b5790ccc9be7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TVw1Eoh9WGjiZRsCtsQ6bvR6oIk=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.82914+00 2025-12-09 10:16:08.829149+00 22353 0048-1FWE#紫色VS-D3 SPMX-20240815317610 \N \N \N 1 \N [{"file_id": "b3255453-f0c6-4320-89d5-18a4fb27cbb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b9c1ad062b5f4e80bdab975e9d72523b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b9c1ad062b5f4e80bdab975e9d72523b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b9c1ad062b5f4e80bdab975e9d72523b.jpg", "file_size": 22374, "is_delete": false, "file_type": 1, "original_file_name": "0048-1FWE#紫色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c1ad062b5f4e80bdab975e9d72523b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c1ad062b5f4e80bdab975e9d72523b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b9c1ad062b5f4e80bdab975e9d72523b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b9c1ad062b5f4e80bdab975e9d72523b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b9c1ad062b5f4e80bdab975e9d72523b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GLaluyE78n20DHAF6WvHeohNnaQ=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.832715+00 2025-12-09 10:16:08.832722+00 22354 88447#C深蓝底黄花 SPMX-20240815317612 \N \N \N 1 \N [{"file_id": "5ec863f4-4389-4e1d-93b8-b1a98c56301b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e1362f077f194367808499c413c3d513.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e1362f077f194367808499c413c3d513.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e1362f077f194367808499c413c3d513.jpg", "file_size": 20754, "is_delete": false, "file_type": 1, "original_file_name": "88447#C深蓝底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1362f077f194367808499c413c3d513.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1362f077f194367808499c413c3d513.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e1362f077f194367808499c413c3d513.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e1362f077f194367808499c413c3d513.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e1362f077f194367808499c413c3d513.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WQXixgx7MYbMSQ9dgUQfc0Jfuj8=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.836355+00 2025-12-09 10:16:08.836362+00 22355 LJW005#VS-D3 SPMX-20240815317607 \N \N \N 1 \N [{"file_id": "925d0704-606c-48da-9703-0861cd6bf323", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4d2c22b4b4514854904d6d6d350506c3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4d2c22b4b4514854904d6d6d350506c3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4d2c22b4b4514854904d6d6d350506c3.jpg", "file_size": 27935, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2c22b4b4514854904d6d6d350506c3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2c22b4b4514854904d6d6d350506c3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4d2c22b4b4514854904d6d6d350506c3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4d2c22b4b4514854904d6d6d350506c3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4d2c22b4b4514854904d6d6d350506c3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:mVW-KpAYk9t6OpuDkDKid8kCCqk=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.840024+00 2025-12-09 10:16:08.84003+00 22356 1300FWF#蓝色 SPMX-20240815317604 \N \N \N 1 \N [{"file_id": "d59f6dd4-b03d-4863-a540-2b8a80d07457", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd8bc9c90db64153b1453ce25664f845.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd8bc9c90db64153b1453ce25664f845.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd8bc9c90db64153b1453ce25664f845.jpg", "file_size": 9971, "is_delete": false, "file_type": 1, "original_file_name": "1300FWF#蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8bc9c90db64153b1453ce25664f845.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8bc9c90db64153b1453ce25664f845.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd8bc9c90db64153b1453ce25664f845.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd8bc9c90db64153b1453ce25664f845.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd8bc9c90db64153b1453ce25664f845.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xgnR-0t9e198xIR4a-v5vMNQP-I=", "createTime": "2024-08-15 15:11:48"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.844886+00 2025-12-09 10:16:08.844893+00 22357 FX027# SPMX-20240815317616 \N \N \N 1 \N [{"file_id": "542c1938-2475-43d6-8fd6-145c35871391", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "670bd268add7414da08eec0b577e40e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "670bd268add7414da08eec0b577e40e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "670bd268add7414da08eec0b577e40e4.jpg", "file_size": 17208, "is_delete": false, "file_type": 1, "original_file_name": "FX027#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670bd268add7414da08eec0b577e40e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670bd268add7414da08eec0b577e40e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/670bd268add7414da08eec0b577e40e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/670bd268add7414da08eec0b577e40e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/670bd268add7414da08eec0b577e40e4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0QWCmQQXnmiMDNKqVAlxdjCReB8=", "createTime": "2024-08-15 15:11:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.84862+00 2025-12-09 10:16:08.848628+00 22358 1300FWF#黄色 SPMX-20240815317615 \N \N \N 1 \N [{"file_id": "83af6e90-d3b5-4fd4-972c-0e9d5c8cc661", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a934f7a45e794a54b281858de4b15b46.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a934f7a45e794a54b281858de4b15b46.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a934f7a45e794a54b281858de4b15b46.jpg", "file_size": 9101, "is_delete": false, "file_type": 1, "original_file_name": "1300FWF#黄色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a934f7a45e794a54b281858de4b15b46.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a934f7a45e794a54b281858de4b15b46.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a934f7a45e794a54b281858de4b15b46.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a934f7a45e794a54b281858de4b15b46.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a934f7a45e794a54b281858de4b15b46.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dbGsA0wEmwoqiPdayB2-EwUdBFQ=", "createTime": "2024-08-15 15:11:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.852469+00 2025-12-09 10:16:08.852476+00 22359 LZ143FWF#短袖2号色 SPMX-20240815317619 \N \N \N 1 \N [{"file_id": "1e0ce9a3-a643-45d3-9da4-6a2ed510f6e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "999f7de2c2d24c059cd83a7f30e44674.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "999f7de2c2d24c059cd83a7f30e44674.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "999f7de2c2d24c059cd83a7f30e44674.jpg", "file_size": 19411, "is_delete": false, "file_type": 1, "original_file_name": "LZ143FWF#短袖2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999f7de2c2d24c059cd83a7f30e44674.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999f7de2c2d24c059cd83a7f30e44674.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/999f7de2c2d24c059cd83a7f30e44674.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/999f7de2c2d24c059cd83a7f30e44674.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/999f7de2c2d24c059cd83a7f30e44674.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IvhqlYhfPsDSNi2Q82JDqdesSsU=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.856103+00 2025-12-09 10:16:08.85611+00 22360 1300FWF#黑色 SPMX-20240815317627 \N \N \N 1 \N [{"file_id": "a29ae388-5c7a-4fca-b051-762a729cb47e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7facb18793fb460681a5ba06326d6d89.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7facb18793fb460681a5ba06326d6d89.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7facb18793fb460681a5ba06326d6d89.jpg", "file_size": 9612, "is_delete": false, "file_type": 1, "original_file_name": "1300FWF#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7facb18793fb460681a5ba06326d6d89.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7facb18793fb460681a5ba06326d6d89.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7facb18793fb460681a5ba06326d6d89.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7facb18793fb460681a5ba06326d6d89.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7facb18793fb460681a5ba06326d6d89.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4unGiLS-cdTRFzd4EjHU7t9mm0c=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.859734+00 2025-12-09 10:16:08.859741+00 22361 CHS001# SPMX-20240815317626 \N \N \N 1 \N [{"file_id": "146dd23d-039a-46ec-b5b2-a83bc7d0b4c6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5024ff6f32b14031baa0bd47eb04b7bf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5024ff6f32b14031baa0bd47eb04b7bf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5024ff6f32b14031baa0bd47eb04b7bf.jpg", "file_size": 9035, "is_delete": false, "file_type": 1, "original_file_name": "CHS001#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5024ff6f32b14031baa0bd47eb04b7bf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5024ff6f32b14031baa0bd47eb04b7bf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5024ff6f32b14031baa0bd47eb04b7bf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5024ff6f32b14031baa0bd47eb04b7bf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5024ff6f32b14031baa0bd47eb04b7bf.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z0ELSYO-N5fnHS3yvdsAcpTJues=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.86339+00 2025-12-09 10:16:08.863397+00 22362 243075#-06-4-2XL码 SPMX-20240815317621 \N \N \N 1 \N [{"file_id": "28265d03-fb6c-4b51-b8af-6a3fb893e14f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a81f52eb6704170bdc2fa4aef808543.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a81f52eb6704170bdc2fa4aef808543.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a81f52eb6704170bdc2fa4aef808543.jpg", "file_size": 52640, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-4-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81f52eb6704170bdc2fa4aef808543.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81f52eb6704170bdc2fa4aef808543.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a81f52eb6704170bdc2fa4aef808543.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a81f52eb6704170bdc2fa4aef808543.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a81f52eb6704170bdc2fa4aef808543.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrdrHzhO_WD8DhyG5-q87JKIAx8=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.866935+00 2025-12-09 10:16:08.866941+00 22363 0048-1FWE#青色VS-D3 SPMX-20240815317618 \N \N \N 1 \N [{"file_id": "6bfa3380-04c5-4152-b34a-df8dacc08b2a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba9044a745db405c9b64cad9955246df.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba9044a745db405c9b64cad9955246df.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba9044a745db405c9b64cad9955246df.jpg", "file_size": 23236, "is_delete": false, "file_type": 1, "original_file_name": "0048-1FWE#青色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9044a745db405c9b64cad9955246df.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9044a745db405c9b64cad9955246df.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba9044a745db405c9b64cad9955246df.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba9044a745db405c9b64cad9955246df.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba9044a745db405c9b64cad9955246df.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ol6wAOGqNxl7LoznNcnlIADzzpw=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.870385+00 2025-12-09 10:16:08.870394+00 22364 HXF069FW#白VS-D3 SPMX-20240815317625 \N \N \N 1 \N [{"file_id": "899f0d6f-67bb-49e2-9510-72cd1b404814", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ea1475ebbb8d4f068ccc320d9ed89569.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ea1475ebbb8d4f068ccc320d9ed89569.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ea1475ebbb8d4f068ccc320d9ed89569.jpg", "file_size": 14543, "is_delete": false, "file_type": 1, "original_file_name": "HXF069FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1475ebbb8d4f068ccc320d9ed89569.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1475ebbb8d4f068ccc320d9ed89569.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ea1475ebbb8d4f068ccc320d9ed89569.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ea1475ebbb8d4f068ccc320d9ed89569.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ea1475ebbb8d4f068ccc320d9ed89569.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:08IY5vVils2jNsZw5jHq5snsQHw=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.874001+00 2025-12-09 10:16:08.874008+00 22365 88447#C黑底水绿花 SPMX-20240815317620 \N \N \N 1 \N [{"file_id": "4e10fdba-0678-427b-80ec-1defe322997f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8a5f2b7e6c54cd496530880f4c6e33a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8a5f2b7e6c54cd496530880f4c6e33a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8a5f2b7e6c54cd496530880f4c6e33a.jpg", "file_size": 17108, "is_delete": false, "file_type": 1, "original_file_name": "88447#C黑底水绿花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a5f2b7e6c54cd496530880f4c6e33a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a5f2b7e6c54cd496530880f4c6e33a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8a5f2b7e6c54cd496530880f4c6e33a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8a5f2b7e6c54cd496530880f4c6e33a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8a5f2b7e6c54cd496530880f4c6e33a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FL2pcqMI1e0mDFpXF5MAh_BrGF4=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.877625+00 2025-12-09 10:16:08.877631+00 22366 JY-QC230718#7号黑白 SPMX-20240815317623 \N \N \N 1 \N [{"file_id": "49786bc7-49c8-4dec-bc29-1c266351de3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0b68b17f976477abd43ec216c972629.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0b68b17f976477abd43ec216c972629.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0b68b17f976477abd43ec216c972629.jpg", "file_size": 9496, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#7号黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b68b17f976477abd43ec216c972629.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b68b17f976477abd43ec216c972629.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0b68b17f976477abd43ec216c972629.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0b68b17f976477abd43ec216c972629.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0b68b17f976477abd43ec216c972629.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:M5TwWWsdvuNTS23QGNrUOGbTfdM=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.881317+00 2025-12-09 10:16:08.881324+00 22367 DN-D3079#3XL SPMX-20240815317624 \N \N \N 1 \N [{"file_id": "9aad7045-9671-4044-bd53-27c03cec526a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f15d5e019f474a9993db23921016493c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f15d5e019f474a9993db23921016493c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f15d5e019f474a9993db23921016493c.jpg", "file_size": 67917, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15d5e019f474a9993db23921016493c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15d5e019f474a9993db23921016493c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f15d5e019f474a9993db23921016493c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f15d5e019f474a9993db23921016493c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f15d5e019f474a9993db23921016493c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ptntn7YjM0y6D3KEA4aHVioF1t8=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.884918+00 2025-12-09 10:16:08.884925+00 22368 CHiC140#9号色净色 SPMX-20240815317617 \N \N \N 1 \N [{"file_id": "c008e34c-de28-44ef-8692-8df7e13b61b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a0d45d6f589443ea0677cdb0863a065.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a0d45d6f589443ea0677cdb0863a065.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a0d45d6f589443ea0677cdb0863a065.jpg", "file_size": 11671, "is_delete": false, "file_type": 1, "original_file_name": "CHiC140#9号色净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0d45d6f589443ea0677cdb0863a065.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0d45d6f589443ea0677cdb0863a065.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a0d45d6f589443ea0677cdb0863a065.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a0d45d6f589443ea0677cdb0863a065.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a0d45d6f589443ea0677cdb0863a065.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ACwpTWgRfWk_tKiiEBu6S-Nwrgo=", "createTime": "2024-08-15 15:11:50"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.888483+00 2025-12-09 10:16:08.888488+00 22369 LJW005#白VS-D3 SPMX-20240815317622 \N \N \N 1 \N [{"file_id": "e7c86de8-9f0c-4cde-8fb2-020fc9cef703", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c84de70911d641d0a4715fbc0e02cb96.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c84de70911d641d0a4715fbc0e02cb96.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c84de70911d641d0a4715fbc0e02cb96.jpg", "file_size": 24091, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84de70911d641d0a4715fbc0e02cb96.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84de70911d641d0a4715fbc0e02cb96.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c84de70911d641d0a4715fbc0e02cb96.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c84de70911d641d0a4715fbc0e02cb96.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c84de70911d641d0a4715fbc0e02cb96.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88VqlV5lfSx3LKfgNgc1H0OhJ88=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.892121+00 2025-12-09 10:16:08.892128+00 22370 FX027#H SPMX-20240815317628 \N \N \N 1 \N [{"file_id": "5918151f-0c24-4d38-a147-d71dfe023a49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ec4b8d5221ca48539fbeedde9d34c437.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ec4b8d5221ca48539fbeedde9d34c437.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ec4b8d5221ca48539fbeedde9d34c437.jpg", "file_size": 15271, "is_delete": false, "file_type": 1, "original_file_name": "FX027#H.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4b8d5221ca48539fbeedde9d34c437.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4b8d5221ca48539fbeedde9d34c437.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ec4b8d5221ca48539fbeedde9d34c437.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ec4b8d5221ca48539fbeedde9d34c437.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ec4b8d5221ca48539fbeedde9d34c437.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:L62t19aDAXGeCmM8nz_QFx2WHZw=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.895662+00 2025-12-09 10:16:08.895668+00 22371 HXF069FW#粉VS-D3 SPMX-20240815317634 \N \N \N 1 \N [{"file_id": "95fa48af-0479-4f47-9d20-0758f7a08651", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7d0c6999783344c58c2e6ba99b9aed01.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7d0c6999783344c58c2e6ba99b9aed01.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7d0c6999783344c58c2e6ba99b9aed01.jpg", "file_size": 13568, "is_delete": false, "file_type": 1, "original_file_name": "HXF069FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c6999783344c58c2e6ba99b9aed01.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c6999783344c58c2e6ba99b9aed01.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7d0c6999783344c58c2e6ba99b9aed01.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7d0c6999783344c58c2e6ba99b9aed01.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7d0c6999783344c58c2e6ba99b9aed01.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wlwCPHgk6EsTNycpayKT8uhbMuM=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.899303+00 2025-12-09 10:16:08.89931+00 22372 88447#D深蓝底粉花 SPMX-20240815317631 \N \N \N 1 \N [{"file_id": "822fb589-82d5-4ab8-97f6-19d6cdcafae1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a73255fcc9384ae99ebd423f219eae7a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a73255fcc9384ae99ebd423f219eae7a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a73255fcc9384ae99ebd423f219eae7a.jpg", "file_size": 21238, "is_delete": false, "file_type": 1, "original_file_name": "88447#D深蓝底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73255fcc9384ae99ebd423f219eae7a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73255fcc9384ae99ebd423f219eae7a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a73255fcc9384ae99ebd423f219eae7a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a73255fcc9384ae99ebd423f219eae7a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a73255fcc9384ae99ebd423f219eae7a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p3sglxqwGlIt_JKRL6RyTnpYPDw=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.902894+00 2025-12-09 10:16:08.902902+00 22373 0048-1FWE#黄色VS-D3 SPMX-20240815317630 \N \N \N 1 \N [{"file_id": "ed1f6b7b-de53-4039-938b-672dca3958d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a6f6d47788d2463b9c023a722a6871d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a6f6d47788d2463b9c023a722a6871d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a6f6d47788d2463b9c023a722a6871d6.jpg", "file_size": 27064, "is_delete": false, "file_type": 1, "original_file_name": "0048-1FWE#黄色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6f6d47788d2463b9c023a722a6871d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6f6d47788d2463b9c023a722a6871d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a6f6d47788d2463b9c023a722a6871d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a6f6d47788d2463b9c023a722a6871d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a6f6d47788d2463b9c023a722a6871d6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1F8xgV47SbCLFrYKXrEQ4XvwcEo=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.906598+00 2025-12-09 10:16:08.906604+00 22374 243075#-06-4-3XL码 SPMX-20240815317633 \N \N \N 1 \N [{"file_id": "9ae1e17a-37de-4181-80de-f4f856ec8c7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "50c1c82eb4784c83b5cfcaeaa88bf767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "50c1c82eb4784c83b5cfcaeaa88bf767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "50c1c82eb4784c83b5cfcaeaa88bf767.jpg", "file_size": 51553, "is_delete": false, "file_type": 1, "original_file_name": "243075#-06-4-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50c1c82eb4784c83b5cfcaeaa88bf767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50c1c82eb4784c83b5cfcaeaa88bf767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/50c1c82eb4784c83b5cfcaeaa88bf767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/50c1c82eb4784c83b5cfcaeaa88bf767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/50c1c82eb4784c83b5cfcaeaa88bf767.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4osD0qeJn48OAu9kKc4B2Q032OM=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.91027+00 2025-12-09 10:16:08.910277+00 22375 LJW005#红VS-D3 SPMX-20240815317635 \N \N \N 1 \N [{"file_id": "8e30bcb2-1c10-4823-975a-df1f4d42c365", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "907cf9931ccb4840b6090bc58980ddb5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "907cf9931ccb4840b6090bc58980ddb5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "907cf9931ccb4840b6090bc58980ddb5.jpg", "file_size": 24091, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#红VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907cf9931ccb4840b6090bc58980ddb5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907cf9931ccb4840b6090bc58980ddb5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/907cf9931ccb4840b6090bc58980ddb5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/907cf9931ccb4840b6090bc58980ddb5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/907cf9931ccb4840b6090bc58980ddb5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:hNA_9HjiLcNuBnEKwKUteEj5EgE=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.913807+00 2025-12-09 10:16:08.913814+00 22376 DN-D3079#; SPMX-20240815317638 \N \N \N 1 \N [{"file_id": "54fa18e5-6945-4107-9c7b-8b7119beb7d1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c04f10c4efa459985be6cf13bf0e637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c04f10c4efa459985be6cf13bf0e637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c04f10c4efa459985be6cf13bf0e637.jpg", "file_size": 70340, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#;.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c04f10c4efa459985be6cf13bf0e637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c04f10c4efa459985be6cf13bf0e637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c04f10c4efa459985be6cf13bf0e637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c04f10c4efa459985be6cf13bf0e637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c04f10c4efa459985be6cf13bf0e637.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z9y69JzFQT1xQUDdyO84-Ij9Blg=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.917363+00 2025-12-09 10:16:08.917369+00 22377 FX027#VS-D3 SPMX-20240815317639 \N \N \N 1 \N [{"file_id": "bc2632e1-3555-4d74-aaf0-7d75e1480c3a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "192aedaaf3604858945a76c934254682.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "192aedaaf3604858945a76c934254682.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "192aedaaf3604858945a76c934254682.jpg", "file_size": 10305, "is_delete": false, "file_type": 1, "original_file_name": "FX027#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192aedaaf3604858945a76c934254682.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192aedaaf3604858945a76c934254682.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/192aedaaf3604858945a76c934254682.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/192aedaaf3604858945a76c934254682.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/192aedaaf3604858945a76c934254682.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CxAYANU0w4eqtEmu2Yb8lsW7Iak=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.920938+00 2025-12-09 10:16:08.920944+00 22378 JY-QC230718#8号墨绿 SPMX-20240815317632 \N \N \N 1 \N [{"file_id": "5b6c89f2-1bc4-488c-9998-fd3ce72555ce", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "33d7ee49ca18438fb078cce041c472a2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "33d7ee49ca18438fb078cce041c472a2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "33d7ee49ca18438fb078cce041c472a2.jpg", "file_size": 9277, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#8号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d7ee49ca18438fb078cce041c472a2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d7ee49ca18438fb078cce041c472a2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/33d7ee49ca18438fb078cce041c472a2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/33d7ee49ca18438fb078cce041c472a2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/33d7ee49ca18438fb078cce041c472a2.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HOsSrMQ0Aph1Boyq2U78XqUHM-Y=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.924537+00 2025-12-09 10:16:08.924543+00 22379 13010#-12后片净色 SPMX-20240815317636 \N \N \N 1 \N [{"file_id": "f12cb280-196e-4258-a3a9-792b2dfa0211", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79a0805ec51943358411f43e04926ad0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79a0805ec51943358411f43e04926ad0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79a0805ec51943358411f43e04926ad0.jpg", "file_size": 6390, "is_delete": false, "file_type": 1, "original_file_name": "13010#-12后片净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79a0805ec51943358411f43e04926ad0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79a0805ec51943358411f43e04926ad0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79a0805ec51943358411f43e04926ad0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79a0805ec51943358411f43e04926ad0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79a0805ec51943358411f43e04926ad0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oD3zoIXzKAsz-1j2otKyClQoGxE=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.928331+00 2025-12-09 10:16:08.928338+00 22380 LZ143FWF#短袖3号色 SPMX-20240815317629 \N \N \N 1 \N [{"file_id": "17984ac7-a752-485e-926f-6ccb7a152b45", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8960e13fa80f46a7a37d0601b7359621.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8960e13fa80f46a7a37d0601b7359621.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8960e13fa80f46a7a37d0601b7359621.jpg", "file_size": 19635, "is_delete": false, "file_type": 1, "original_file_name": "LZ143FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8960e13fa80f46a7a37d0601b7359621.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8960e13fa80f46a7a37d0601b7359621.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8960e13fa80f46a7a37d0601b7359621.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8960e13fa80f46a7a37d0601b7359621.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8960e13fa80f46a7a37d0601b7359621.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Amh4yZMzH7j8J2PaX5IzRsXZkw0=", "createTime": "2024-08-15 15:11:51"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.932286+00 2025-12-09 10:16:08.932292+00 22381 CHS0375-10#WJC22 SPMX-20240815317637 \N \N \N 1 \N [{"file_id": "11898dc4-60da-4700-a44b-c963bb663760", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "99e1761111054cecb87f4a92c39e04c8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "99e1761111054cecb87f4a92c39e04c8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "99e1761111054cecb87f4a92c39e04c8.jpg", "file_size": 14059, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-10#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1761111054cecb87f4a92c39e04c8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1761111054cecb87f4a92c39e04c8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/99e1761111054cecb87f4a92c39e04c8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/99e1761111054cecb87f4a92c39e04c8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/99e1761111054cecb87f4a92c39e04c8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:krO6n2UdJLcLABXVUhdgdq3JNgU=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.936109+00 2025-12-09 10:16:08.936116+00 22382 88447#D深蓝底红花 SPMX-20240815317641 \N \N \N 1 \N [{"file_id": "5c14b53d-e599-49aa-8d9c-62007da6743d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "85cbb1fd60864d4c8019da9c78778e11.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "85cbb1fd60864d4c8019da9c78778e11.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "85cbb1fd60864d4c8019da9c78778e11.jpg", "file_size": 21293, "is_delete": false, "file_type": 1, "original_file_name": "88447#D深蓝底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cbb1fd60864d4c8019da9c78778e11.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cbb1fd60864d4c8019da9c78778e11.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/85cbb1fd60864d4c8019da9c78778e11.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/85cbb1fd60864d4c8019da9c78778e11.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/85cbb1fd60864d4c8019da9c78778e11.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oniZVUx1uTq-tKftN3AVlGWBM4g=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.939863+00 2025-12-09 10:16:08.93987+00 22383 0048-2FWE#杏色VS-D3 SPMX-20240815317640 \N \N \N 1 \N [{"file_id": "75439c5d-a994-4966-ae5c-7d6b9370eb3f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fc6d042a6cfa48f792bfe5931b27725f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fc6d042a6cfa48f792bfe5931b27725f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fc6d042a6cfa48f792bfe5931b27725f.jpg", "file_size": 11514, "is_delete": false, "file_type": 1, "original_file_name": "0048-2FWE#杏色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d042a6cfa48f792bfe5931b27725f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d042a6cfa48f792bfe5931b27725f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fc6d042a6cfa48f792bfe5931b27725f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fc6d042a6cfa48f792bfe5931b27725f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fc6d042a6cfa48f792bfe5931b27725f.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ojNzvBfYS6lwwyvBlSJUxbMrSrY=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.943543+00 2025-12-09 10:16:08.94355+00 22384 HXF070FW#VS-D3 SPMX-20240815317646 \N \N \N 1 \N [{"file_id": "d8d155b2-5193-43ce-bf62-3adcc70ca8bd", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b6b2411db52c404dad66552895319594.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b6b2411db52c404dad66552895319594.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b6b2411db52c404dad66552895319594.jpg", "file_size": 17833, "is_delete": false, "file_type": 1, "original_file_name": "HXF070FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b2411db52c404dad66552895319594.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b2411db52c404dad66552895319594.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b6b2411db52c404dad66552895319594.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b6b2411db52c404dad66552895319594.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b6b2411db52c404dad66552895319594.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UQDSZPO8fO31WNzZNSrGg58vnPw=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.947214+00 2025-12-09 10:16:08.947221+00 22385 88447#D粉底红花 SPMX-20240815317649 \N \N \N 1 \N [{"file_id": "b4ede74b-e52f-43e4-a5a5-c8fa76eac2ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aa34f7bfecd4d4bbdd81a76bd364718.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aa34f7bfecd4d4bbdd81a76bd364718.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aa34f7bfecd4d4bbdd81a76bd364718.jpg", "file_size": 15533, "is_delete": false, "file_type": 1, "original_file_name": "88447#D粉底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa34f7bfecd4d4bbdd81a76bd364718.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa34f7bfecd4d4bbdd81a76bd364718.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aa34f7bfecd4d4bbdd81a76bd364718.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aa34f7bfecd4d4bbdd81a76bd364718.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aa34f7bfecd4d4bbdd81a76bd364718.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5Q_pSzt_BCiKydMTAlDSPqRJAH8=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.950992+00 2025-12-09 10:16:08.950999+00 22386 DN-D3079#L SPMX-20240815317651 \N \N \N 1 \N [{"file_id": "104ec827-11db-41fc-b7b1-925675f4bc11", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aaf81c7835f2474392b4ca5597c0c1bd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aaf81c7835f2474392b4ca5597c0c1bd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aaf81c7835f2474392b4ca5597c0c1bd.jpg", "file_size": 70340, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf81c7835f2474392b4ca5597c0c1bd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf81c7835f2474392b4ca5597c0c1bd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aaf81c7835f2474392b4ca5597c0c1bd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aaf81c7835f2474392b4ca5597c0c1bd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aaf81c7835f2474392b4ca5597c0c1bd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WcpHKfe_ClltG1vxmjo2hoHOHgk=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.954928+00 2025-12-09 10:16:08.954939+00 22387 LZ143FWF#短袖4号色 SPMX-20240815317642 \N \N \N 1 \N [{"file_id": "f4c009ab-a720-4e59-9c44-8922b45fe46e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b01642e473648e8bb41d18bd6291a73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b01642e473648e8bb41d18bd6291a73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b01642e473648e8bb41d18bd6291a73.jpg", "file_size": 18776, "is_delete": false, "file_type": 1, "original_file_name": "LZ143FWF#短袖4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b01642e473648e8bb41d18bd6291a73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b01642e473648e8bb41d18bd6291a73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b01642e473648e8bb41d18bd6291a73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b01642e473648e8bb41d18bd6291a73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b01642e473648e8bb41d18bd6291a73.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KCfu0FiC8FPmThofDMUEQXl0YCI=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.95861+00 2025-12-09 10:16:08.958616+00 22388 243081#-01-1-2XL码 SPMX-20240815317645 \N \N \N 1 \N [{"file_id": "c597b18c-64b1-429b-9b31-b47ebfb185b5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfa31054a2964e1e940c28940774ca6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfa31054a2964e1e940c28940774ca6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfa31054a2964e1e940c28940774ca6c.jpg", "file_size": 48989, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa31054a2964e1e940c28940774ca6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa31054a2964e1e940c28940774ca6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfa31054a2964e1e940c28940774ca6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfa31054a2964e1e940c28940774ca6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfa31054a2964e1e940c28940774ca6c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2Od-gwfY-W_1dVw0f72Sok0D8M=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.962297+00 2025-12-09 10:16:08.962304+00 22389 JY-QC230719-P13#墨绿 SPMX-20240815317650 \N \N \N 1 \N [{"file_id": "b456f21d-fd35-433c-b6f7-dbe9dfcbb2f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "49a62401c7694bc19402fd8f980835a5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "49a62401c7694bc19402fd8f980835a5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "49a62401c7694bc19402fd8f980835a5.jpg", "file_size": 23610, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230719-P13#墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49a62401c7694bc19402fd8f980835a5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49a62401c7694bc19402fd8f980835a5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/49a62401c7694bc19402fd8f980835a5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/49a62401c7694bc19402fd8f980835a5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/49a62401c7694bc19402fd8f980835a5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rcHVhtasYQv7ei6TOBWp0UoKisI=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.965835+00 2025-12-09 10:16:08.965842+00 22390 13010-1#前片2XL SPMX-20240815317648 \N \N \N 1 \N [{"file_id": "b344e1cb-f7b2-4a42-aaf8-12dae7b49540", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a76b820b121b4862910816a2a0265685.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a76b820b121b4862910816a2a0265685.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a76b820b121b4862910816a2a0265685.jpg", "file_size": 11869, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#前片2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76b820b121b4862910816a2a0265685.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76b820b121b4862910816a2a0265685.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a76b820b121b4862910816a2a0265685.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a76b820b121b4862910816a2a0265685.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a76b820b121b4862910816a2a0265685.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k2KAJ6qSTD5I6eEtLecRTPi3H6k=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.969481+00 2025-12-09 10:16:08.969487+00 22391 FX027FW#VS-D3 SPMX-20240815317653 \N \N \N 1 \N [{"file_id": "7734780f-0870-4bc8-8384-87aab0f9d322", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cde3a6d3a89c492fbc06de0076cf1837.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cde3a6d3a89c492fbc06de0076cf1837.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cde3a6d3a89c492fbc06de0076cf1837.jpg", "file_size": 9483, "is_delete": false, "file_type": 1, "original_file_name": "FX027FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde3a6d3a89c492fbc06de0076cf1837.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde3a6d3a89c492fbc06de0076cf1837.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cde3a6d3a89c492fbc06de0076cf1837.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cde3a6d3a89c492fbc06de0076cf1837.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cde3a6d3a89c492fbc06de0076cf1837.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdUwMHqiPSR0wpkOUeUIW1OGlTU=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.973117+00 2025-12-09 10:16:08.973124+00 22392 CHS0375-11#WJC22 SPMX-20240815317647 \N \N \N 1 \N [{"file_id": "f2a2f606-7f76-4474-b12e-e20916ad0339", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "945f3a047c024816bcadb3f50495f635.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "945f3a047c024816bcadb3f50495f635.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "945f3a047c024816bcadb3f50495f635.jpg", "file_size": 24645, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-11#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/945f3a047c024816bcadb3f50495f635.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/945f3a047c024816bcadb3f50495f635.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/945f3a047c024816bcadb3f50495f635.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/945f3a047c024816bcadb3f50495f635.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/945f3a047c024816bcadb3f50495f635.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IuwbBlW9hKXimo-1qCFXip5yJeg=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.976649+00 2025-12-09 10:16:08.976656+00 22393 LJW005#绿VS-D3 SPMX-20240815317644 \N \N \N 1 \N [{"file_id": "eedaa128-e3ef-407e-a5a4-7b22db9b087a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c38b98eccc24749883eb250c2816d31.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c38b98eccc24749883eb250c2816d31.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c38b98eccc24749883eb250c2816d31.jpg", "file_size": 24030, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c38b98eccc24749883eb250c2816d31.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c38b98eccc24749883eb250c2816d31.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c38b98eccc24749883eb250c2816d31.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c38b98eccc24749883eb250c2816d31.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c38b98eccc24749883eb250c2816d31.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:07b52UGfNoDOsq0lwYSNLhKCWM0=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.980428+00 2025-12-09 10:16:08.980436+00 22394 0048-2FWE#橙绿色VS-D3 SPMX-20240815317652 \N \N \N 1 \N [{"file_id": "fc20e66c-400b-4027-b328-3a7496aa6038", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "84369ef8a1014ec2a923d9cc5e04654c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "84369ef8a1014ec2a923d9cc5e04654c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "84369ef8a1014ec2a923d9cc5e04654c.jpg", "file_size": 11883, "is_delete": false, "file_type": 1, "original_file_name": "0048-2FWE#橙绿色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84369ef8a1014ec2a923d9cc5e04654c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84369ef8a1014ec2a923d9cc5e04654c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/84369ef8a1014ec2a923d9cc5e04654c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/84369ef8a1014ec2a923d9cc5e04654c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/84369ef8a1014ec2a923d9cc5e04654c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z40n68ei1zWC7C1_uL9yEi5Nn6w=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.984142+00 2025-12-09 10:16:08.984149+00 22395 JY-QC230718#橙色 SPMX-20240815317643 \N \N \N 1 \N [{"file_id": "8c694fa8-d402-4ba9-b365-ae586761618b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg", "file_size": 9978, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230718#橙色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e5f85e9d8e0840f5aa90dc5fd37d5ea6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hn5slcSQ9z5K2WjzdJSXI6kBRfo=", "createTime": "2024-08-15 15:11:52"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.987861+00 2025-12-09 10:16:08.987868+00 22396 CHS0375-12#WJC22 SPMX-20240815317659 \N \N \N 1 \N [{"file_id": "74938533-ed71-4f5b-a793-3992500dee85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46d3facbcdee47899b7e9ee1c2a7d273.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46d3facbcdee47899b7e9ee1c2a7d273.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46d3facbcdee47899b7e9ee1c2a7d273.jpg", "file_size": 17401, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-12#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d3facbcdee47899b7e9ee1c2a7d273.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d3facbcdee47899b7e9ee1c2a7d273.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46d3facbcdee47899b7e9ee1c2a7d273.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46d3facbcdee47899b7e9ee1c2a7d273.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46d3facbcdee47899b7e9ee1c2a7d273.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:m0hfa-Jz4XXMJ5T-88oCOvu8wOE=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.991739+00 2025-12-09 10:16:08.991745+00 22397 DN-D3079#M SPMX-20240815317663 \N \N \N 1 \N [{"file_id": "817f717e-8024-491b-bda1-c1d97003a953", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adf89ef329ce4e3fbe565d5a633f40a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adf89ef329ce4e3fbe565d5a633f40a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adf89ef329ce4e3fbe565d5a633f40a8.jpg", "file_size": 74727, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf89ef329ce4e3fbe565d5a633f40a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf89ef329ce4e3fbe565d5a633f40a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adf89ef329ce4e3fbe565d5a633f40a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adf89ef329ce4e3fbe565d5a633f40a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adf89ef329ce4e3fbe565d5a633f40a8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O5ih7NNkRnZ3IY242T3hSe6MvHg=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.99506+00 2025-12-09 10:16:08.995065+00 22398 LJW005#黄VS-D3 SPMX-20240815317655 \N \N \N 1 \N [{"file_id": "eb4532d5-283e-4000-902d-b90b4a31c06c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3885fe02864d41f6851effd1b7eed50b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3885fe02864d41f6851effd1b7eed50b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3885fe02864d41f6851effd1b7eed50b.jpg", "file_size": 24091, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#黄VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3885fe02864d41f6851effd1b7eed50b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3885fe02864d41f6851effd1b7eed50b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3885fe02864d41f6851effd1b7eed50b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3885fe02864d41f6851effd1b7eed50b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3885fe02864d41f6851effd1b7eed50b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rvnsnzqohyxmwGsg1RT3pZYhpsw=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:08.998165+00 2025-12-09 10:16:08.998169+00 22399 243081#-01-1-3XL码 SPMX-20240815317657 \N \N \N 1 \N [{"file_id": "13d52d92-6ccc-4696-8a03-4d127ac2a28e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2b04d59ff1ce48f3a2db6e2aa0f28233.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2b04d59ff1ce48f3a2db6e2aa0f28233.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2b04d59ff1ce48f3a2db6e2aa0f28233.jpg", "file_size": 46729, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d59ff1ce48f3a2db6e2aa0f28233.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d59ff1ce48f3a2db6e2aa0f28233.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2b04d59ff1ce48f3a2db6e2aa0f28233.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2b04d59ff1ce48f3a2db6e2aa0f28233.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2b04d59ff1ce48f3a2db6e2aa0f28233.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xjpXjf3eqKI4TYHiG32ad40dt4Y=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.001111+00 2025-12-09 10:16:09.001116+00 22400 13010-1#前片L SPMX-20240815317658 \N \N \N 1 \N [{"file_id": "6c37c64c-a77e-4dc8-9407-54fb771e371b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37fd555dff204f7ba3c896d1aab24db1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37fd555dff204f7ba3c896d1aab24db1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37fd555dff204f7ba3c896d1aab24db1.jpg", "file_size": 13831, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#前片L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd555dff204f7ba3c896d1aab24db1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd555dff204f7ba3c896d1aab24db1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37fd555dff204f7ba3c896d1aab24db1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37fd555dff204f7ba3c896d1aab24db1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37fd555dff204f7ba3c896d1aab24db1.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZ11TXwo1cf0N-YDD293T-aod-k=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.004528+00 2025-12-09 10:16:09.004532+00 22401 HXF071FW#VS-D3 SPMX-20240815317656 \N \N \N 1 \N [{"file_id": "7502366e-0e2e-4d4e-b49b-551e08a59254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a52398549ce6403291cb6b89a9e68d5f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a52398549ce6403291cb6b89a9e68d5f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a52398549ce6403291cb6b89a9e68d5f.jpg", "file_size": 10591, "is_delete": false, "file_type": 1, "original_file_name": "HXF071FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52398549ce6403291cb6b89a9e68d5f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52398549ce6403291cb6b89a9e68d5f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52398549ce6403291cb6b89a9e68d5f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a52398549ce6403291cb6b89a9e68d5f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a52398549ce6403291cb6b89a9e68d5f.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Aifu4EGZZ3TAI3AJ70L7qiUkERI=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.007921+00 2025-12-09 10:16:09.007926+00 22402 0048-2FWE#橙色VS-D3 SPMX-20240815317662 \N \N \N 1 \N [{"file_id": "6f27c42e-374f-4a06-ab63-e31a3d1d74ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87e07062ff3b4e7e9338917e1b7238f5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87e07062ff3b4e7e9338917e1b7238f5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87e07062ff3b4e7e9338917e1b7238f5.jpg", "file_size": 12074, "is_delete": false, "file_type": 1, "original_file_name": "0048-2FWE#橙色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e07062ff3b4e7e9338917e1b7238f5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e07062ff3b4e7e9338917e1b7238f5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87e07062ff3b4e7e9338917e1b7238f5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87e07062ff3b4e7e9338917e1b7238f5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87e07062ff3b4e7e9338917e1b7238f5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ADwtQor87Ti5sG6lcvFvJcs8KXU=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.011345+00 2025-12-09 10:16:09.011349+00 22403 LZ1440#上身1号色 SPMX-20240815317664 \N \N \N 1 \N [{"file_id": "034034a3-c5ce-47ee-b8cd-8712ed916037", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cf25437a553e44049bc308cb6032a7f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cf25437a553e44049bc308cb6032a7f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cf25437a553e44049bc308cb6032a7f6.jpg", "file_size": 18443, "is_delete": false, "file_type": 1, "original_file_name": "LZ1440#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf25437a553e44049bc308cb6032a7f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf25437a553e44049bc308cb6032a7f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cf25437a553e44049bc308cb6032a7f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cf25437a553e44049bc308cb6032a7f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cf25437a553e44049bc308cb6032a7f6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4k62L7A-vNdVL8ZECkH-vkx8vHg=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.01473+00 2025-12-09 10:16:09.014734+00 22404 LZ143FWF#短袖5号色 SPMX-20240815317654 \N \N \N 1 \N [{"file_id": "5d6da2f8-391b-4510-bcb1-78b5bf875d6b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65beee8c892347dea7aefa76e3c4fd73.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65beee8c892347dea7aefa76e3c4fd73.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65beee8c892347dea7aefa76e3c4fd73.jpg", "file_size": 20112, "is_delete": false, "file_type": 1, "original_file_name": "LZ143FWF#短袖5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65beee8c892347dea7aefa76e3c4fd73.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65beee8c892347dea7aefa76e3c4fd73.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65beee8c892347dea7aefa76e3c4fd73.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65beee8c892347dea7aefa76e3c4fd73.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65beee8c892347dea7aefa76e3c4fd73.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BFyPOy6LdIRxYPxaB6GzACbXnLk=", "createTime": "2024-08-15 15:11:53"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.018088+00 2025-12-09 10:16:09.018092+00 22405 JY-QC230719-P13#焦糖 SPMX-20240815317661 \N \N \N 1 \N [{"file_id": "559b67bf-5d82-43de-b58b-ec7e645c912b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfe3e009581049d39fbaa3c3437947b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfe3e009581049d39fbaa3c3437947b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfe3e009581049d39fbaa3c3437947b5.jpg", "file_size": 15998, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230719-P13#焦糖.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe3e009581049d39fbaa3c3437947b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe3e009581049d39fbaa3c3437947b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfe3e009581049d39fbaa3c3437947b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfe3e009581049d39fbaa3c3437947b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfe3e009581049d39fbaa3c3437947b5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FmnTEFhMdvu2f_SjsNjxAA2nhmM=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.021412+00 2025-12-09 10:16:09.021417+00 22406 88447#D黑底黄花 SPMX-20240815317660 \N \N \N 1 \N [{"file_id": "e965fdd6-0093-47f1-b6c9-db1fb7d5adef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2fdb670fb72846b0bc97717104153bc8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2fdb670fb72846b0bc97717104153bc8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2fdb670fb72846b0bc97717104153bc8.jpg", "file_size": 20994, "is_delete": false, "file_type": 1, "original_file_name": "88447#D黑底黄花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fdb670fb72846b0bc97717104153bc8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fdb670fb72846b0bc97717104153bc8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2fdb670fb72846b0bc97717104153bc8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2fdb670fb72846b0bc97717104153bc8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2fdb670fb72846b0bc97717104153bc8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JDq81FBTVtCZUv2uJTO1SZ9ebYA=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.025026+00 2025-12-09 10:16:09.025032+00 22407 FX027FW3vs-d3 SPMX-20240815317665 \N \N \N 1 \N [{"file_id": "a3f73023-131d-430f-a043-54d6c57e3757", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ba2bc1363c142a59082029dab348a40.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ba2bc1363c142a59082029dab348a40.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ba2bc1363c142a59082029dab348a40.jpg", "file_size": 9523, "is_delete": false, "file_type": 1, "original_file_name": "FX027FW3vs-d3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba2bc1363c142a59082029dab348a40.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba2bc1363c142a59082029dab348a40.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ba2bc1363c142a59082029dab348a40.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ba2bc1363c142a59082029dab348a40.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ba2bc1363c142a59082029dab348a40.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WZvxtdSXZHsU3LG1yFX5f0gVcjM=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.028947+00 2025-12-09 10:16:09.028952+00 22408 LZ1440#上身2号色 SPMX-20240815317675 \N \N \N 1 \N [{"file_id": "69fd3d84-7ccb-4fbc-be2c-f4813f67cd62", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c08f0de2d76849a9bb00bd5a2c3f9f37.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c08f0de2d76849a9bb00bd5a2c3f9f37.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c08f0de2d76849a9bb00bd5a2c3f9f37.jpg", "file_size": 16874, "is_delete": false, "file_type": 1, "original_file_name": "LZ1440#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08f0de2d76849a9bb00bd5a2c3f9f37.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08f0de2d76849a9bb00bd5a2c3f9f37.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c08f0de2d76849a9bb00bd5a2c3f9f37.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c08f0de2d76849a9bb00bd5a2c3f9f37.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c08f0de2d76849a9bb00bd5a2c3f9f37.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nQWnoJ6asJ0S7Wg_5SyoX_Rm9WU=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.032227+00 2025-12-09 10:16:09.032232+00 22409 88447#E枣红底灰粉花 SPMX-20240815317672 \N \N \N 1 \N [{"file_id": "985242f3-162e-4bb6-928b-2d9c3830ce14", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0747d521a6114a3888b75f0ef6a3e128.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0747d521a6114a3888b75f0ef6a3e128.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0747d521a6114a3888b75f0ef6a3e128.jpg", "file_size": 16409, "is_delete": false, "file_type": 1, "original_file_name": "88447#E枣红底灰粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0747d521a6114a3888b75f0ef6a3e128.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0747d521a6114a3888b75f0ef6a3e128.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0747d521a6114a3888b75f0ef6a3e128.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0747d521a6114a3888b75f0ef6a3e128.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0747d521a6114a3888b75f0ef6a3e128.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HDhIeSFpZAyD-k6ljGAwI9WL4EA=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.035251+00 2025-12-09 10:16:09.035256+00 22410 LJW005FW#VS-D3 SPMX-20240815317679 \N \N \N 1 \N [{"file_id": "b0a44ced-d936-4dfc-83bc-9b4e42e755a9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "513210856c4d43cd91218b32248c2c99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "513210856c4d43cd91218b32248c2c99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "513210856c4d43cd91218b32248c2c99.jpg", "file_size": 19644, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513210856c4d43cd91218b32248c2c99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513210856c4d43cd91218b32248c2c99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/513210856c4d43cd91218b32248c2c99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/513210856c4d43cd91218b32248c2c99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/513210856c4d43cd91218b32248c2c99.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FO4PkFkbUiMYhb1b146jhOsE7Iw=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.038256+00 2025-12-09 10:16:09.03826+00 22411 HXF072FW#VS-D3 SPMX-20240815317666 \N \N \N 1 \N [{"file_id": "b07370d1-141d-459b-92aa-fec96eb475d9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b5c047584fd4e12bf2de6cf8aaa0c22.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b5c047584fd4e12bf2de6cf8aaa0c22.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b5c047584fd4e12bf2de6cf8aaa0c22.jpg", "file_size": 19403, "is_delete": false, "file_type": 1, "original_file_name": "HXF072FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5c047584fd4e12bf2de6cf8aaa0c22.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5c047584fd4e12bf2de6cf8aaa0c22.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b5c047584fd4e12bf2de6cf8aaa0c22.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b5c047584fd4e12bf2de6cf8aaa0c22.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b5c047584fd4e12bf2de6cf8aaa0c22.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bilOrc4Af1DJEBK8QsjoLG-JBHk=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.041297+00 2025-12-09 10:16:09.041302+00 22412 CHS0375-13#黑色 SPMX-20240815317678 \N \N \N 1 \N [{"file_id": "79f29d6b-c303-478e-a671-7d9aac8b0a65", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a166e39307e6403ca1cf86ba2e42b736.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a166e39307e6403ca1cf86ba2e42b736.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a166e39307e6403ca1cf86ba2e42b736.jpg", "file_size": 16406, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-13#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a166e39307e6403ca1cf86ba2e42b736.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a166e39307e6403ca1cf86ba2e42b736.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a166e39307e6403ca1cf86ba2e42b736.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a166e39307e6403ca1cf86ba2e42b736.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a166e39307e6403ca1cf86ba2e42b736.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Md6qW8-Bjgal7NxNS0W4EUxLoXI=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.044363+00 2025-12-09 10:16:09.044368+00 22413 FX027FWE#VS-D3 SPMX-20240815317676 \N \N \N 1 \N [{"file_id": "1327a14e-a180-4452-8564-98ca5e07e2d4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "34d1929bade94e55bbc6b05caea1366e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "34d1929bade94e55bbc6b05caea1366e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "34d1929bade94e55bbc6b05caea1366e.jpg", "file_size": 8715, "is_delete": false, "file_type": 1, "original_file_name": "FX027FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d1929bade94e55bbc6b05caea1366e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d1929bade94e55bbc6b05caea1366e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/34d1929bade94e55bbc6b05caea1366e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/34d1929bade94e55bbc6b05caea1366e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/34d1929bade94e55bbc6b05caea1366e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wEzqKpHqRmdAacgqXR_fJNz7P88=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.047398+00 2025-12-09 10:16:09.047403+00 22414 CHS0375-13#WJC22 SPMX-20240815317670 \N \N \N 1 \N [{"file_id": "334a9f0d-ae99-48f4-9226-d327794ddc3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4193814a069e4f99864a3ff5130fecc0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4193814a069e4f99864a3ff5130fecc0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4193814a069e4f99864a3ff5130fecc0.jpg", "file_size": 16414, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-13#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4193814a069e4f99864a3ff5130fecc0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4193814a069e4f99864a3ff5130fecc0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4193814a069e4f99864a3ff5130fecc0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4193814a069e4f99864a3ff5130fecc0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4193814a069e4f99864a3ff5130fecc0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IZ4Y6OIKtV4JGlypL__f2ZsfGFI=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.0505+00 2025-12-09 10:16:09.050505+00 22415 243081#-01-2-2XL码 SPMX-20240815317669 \N \N \N 1 \N [{"file_id": "b7fed404-7b8c-4625-8c48-eb1d3445d557", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "00f25cc37bfa475d98b70ea89ddd39a4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "00f25cc37bfa475d98b70ea89ddd39a4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "00f25cc37bfa475d98b70ea89ddd39a4.jpg", "file_size": 46878, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f25cc37bfa475d98b70ea89ddd39a4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f25cc37bfa475d98b70ea89ddd39a4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/00f25cc37bfa475d98b70ea89ddd39a4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/00f25cc37bfa475d98b70ea89ddd39a4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/00f25cc37bfa475d98b70ea89ddd39a4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I8hJuZ_zwaOFyGacSoEBB0BeG3g=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.053597+00 2025-12-09 10:16:09.053601+00 22416 DN-D3079#XL SPMX-20240815317674 \N \N \N 1 \N [{"file_id": "c5cb6423-5d58-4d0a-a775-c08eea46cc3b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d456c083ac2d40899c9669e6093fedb0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d456c083ac2d40899c9669e6093fedb0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d456c083ac2d40899c9669e6093fedb0.jpg", "file_size": 69256, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d456c083ac2d40899c9669e6093fedb0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d456c083ac2d40899c9669e6093fedb0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d456c083ac2d40899c9669e6093fedb0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d456c083ac2d40899c9669e6093fedb0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d456c083ac2d40899c9669e6093fedb0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7h2z_zJopAlZt8k-XG_RP5iVbnA=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.056656+00 2025-12-09 10:16:09.05666+00 22417 JY-QC230719-P13#玫红 SPMX-20240815317671 \N \N \N 1 \N [{"file_id": "cbf498f1-34b6-402d-8f72-fc264318bf19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c984f79233294c20aa1ad6eeb25b939b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c984f79233294c20aa1ad6eeb25b939b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c984f79233294c20aa1ad6eeb25b939b.jpg", "file_size": 20569, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230719-P13#玫红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984f79233294c20aa1ad6eeb25b939b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984f79233294c20aa1ad6eeb25b939b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c984f79233294c20aa1ad6eeb25b939b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c984f79233294c20aa1ad6eeb25b939b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c984f79233294c20aa1ad6eeb25b939b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2SNprrioIsW2EdlmApO3QeEghPI=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.059709+00 2025-12-09 10:16:09.059713+00 22418 LJW005#黑VS-D3 SPMX-20240815317668 \N \N \N 1 \N [{"file_id": "e6d654ee-8f28-47f7-8917-32774e73f49b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa214a7f558149509e250e82839b1a9c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa214a7f558149509e250e82839b1a9c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa214a7f558149509e250e82839b1a9c.jpg", "file_size": 26201, "is_delete": false, "file_type": 1, "original_file_name": "LJW005#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa214a7f558149509e250e82839b1a9c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa214a7f558149509e250e82839b1a9c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa214a7f558149509e250e82839b1a9c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa214a7f558149509e250e82839b1a9c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa214a7f558149509e250e82839b1a9c.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:D0nTKaIfLUt-8EmQ3acTDXkycZk=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.062758+00 2025-12-09 10:16:09.062763+00 22419 13010-1#前片M SPMX-20240815317667 \N \N \N 1 \N [{"file_id": "42c0c352-0147-4c96-8696-3c911252d380", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "452adbcff675460a9ef474dbc89e03d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "452adbcff675460a9ef474dbc89e03d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "452adbcff675460a9ef474dbc89e03d7.jpg", "file_size": 12990, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#前片M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452adbcff675460a9ef474dbc89e03d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452adbcff675460a9ef474dbc89e03d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/452adbcff675460a9ef474dbc89e03d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/452adbcff675460a9ef474dbc89e03d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/452adbcff675460a9ef474dbc89e03d7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DLu7cP4hmlu-ATX5cyptXJBHixI=", "createTime": "2024-08-15 15:11:54"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.065822+00 2025-12-09 10:16:09.065827+00 22420 HXF072FW#红 SPMX-20240815317677 \N \N \N 1 \N [{"file_id": "eae7be79-8696-49e3-aa6e-7730ccbe20b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8b549f0823b74a9fae3d99f70dfb40d3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8b549f0823b74a9fae3d99f70dfb40d3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8b549f0823b74a9fae3d99f70dfb40d3.jpg", "file_size": 20854, "is_delete": false, "file_type": 1, "original_file_name": "HXF072FW#红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b549f0823b74a9fae3d99f70dfb40d3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b549f0823b74a9fae3d99f70dfb40d3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8b549f0823b74a9fae3d99f70dfb40d3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8b549f0823b74a9fae3d99f70dfb40d3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8b549f0823b74a9fae3d99f70dfb40d3.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xdo-Ac0CRIGhyZjVPHrs78X9GFo=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.068932+00 2025-12-09 10:16:09.068937+00 22421 0048-2FWE#紫色VS-D3 SPMX-20240815317673 \N \N \N 1 \N [{"file_id": "19cc5dfe-7044-41bb-bc48-1e6cf2658ef2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "64b4bbc617044b168c85a291f4592bfb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "64b4bbc617044b168c85a291f4592bfb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "64b4bbc617044b168c85a291f4592bfb.jpg", "file_size": 12256, "is_delete": false, "file_type": 1, "original_file_name": "0048-2FWE#紫色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b4bbc617044b168c85a291f4592bfb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b4bbc617044b168c85a291f4592bfb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/64b4bbc617044b168c85a291f4592bfb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/64b4bbc617044b168c85a291f4592bfb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/64b4bbc617044b168c85a291f4592bfb.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jHpJm1Ko1Yt6AXaGm8HclZuqNv4=", "createTime": "2024-08-15 15:11:55"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.072045+00 2025-12-09 10:16:09.07205+00 22422 JY-QC230719-P13#黑白 SPMX-20240815317680 \N \N \N 1 \N [{"file_id": "6ecaf9e1-eed2-4e71-beb5-d24c48cedf96", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e9f866ab1fc4c3f86b8695ab638e796.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e9f866ab1fc4c3f86b8695ab638e796.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e9f866ab1fc4c3f86b8695ab638e796.jpg", "file_size": 22808, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230719-P13#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9f866ab1fc4c3f86b8695ab638e796.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9f866ab1fc4c3f86b8695ab638e796.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e9f866ab1fc4c3f86b8695ab638e796.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e9f866ab1fc4c3f86b8695ab638e796.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e9f866ab1fc4c3f86b8695ab638e796.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZZ1Xf7kvZk8-URyMSO77JaNMouU=", "createTime": "2024-08-15 15:11:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.075753+00 2025-12-09 10:16:09.07576+00 22423 0048-2FWE#红色VS-D3 SPMX-20240815317683 \N \N \N 1 \N [{"file_id": "1f59d2a0-913c-44f6-af99-da844bdd70ad", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4384de6910f48e2a52a28197b87d708.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4384de6910f48e2a52a28197b87d708.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4384de6910f48e2a52a28197b87d708.jpg", "file_size": 13056, "is_delete": false, "file_type": 1, "original_file_name": "0048-2FWE#红色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4384de6910f48e2a52a28197b87d708.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4384de6910f48e2a52a28197b87d708.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4384de6910f48e2a52a28197b87d708.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4384de6910f48e2a52a28197b87d708.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4384de6910f48e2a52a28197b87d708.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0502KVvWz29N241fyrd8j3ch6y8=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.079466+00 2025-12-09 10:16:09.079472+00 22424 243081#-01-2-3XL码 SPMX-20240815317681 \N \N \N 1 \N [{"file_id": "a7953366-295c-4d82-b2fd-aa924098fd8e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8f4456dbc835477a81e2096a58f49dd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8f4456dbc835477a81e2096a58f49dd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8f4456dbc835477a81e2096a58f49dd0.jpg", "file_size": 43993, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4456dbc835477a81e2096a58f49dd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4456dbc835477a81e2096a58f49dd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8f4456dbc835477a81e2096a58f49dd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8f4456dbc835477a81e2096a58f49dd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8f4456dbc835477a81e2096a58f49dd0.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TBkPQIpCh2DoeB8tSmav3mhXDpA=", "createTime": "2024-08-15 15:11:56"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.083123+00 2025-12-09 10:16:09.083129+00 22425 13010-1#前片S SPMX-20240815317682 \N \N \N 1 \N [{"file_id": "e373ca61-ff89-4e32-a62f-a7af668f6547", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3c82828d42f8465e9d3550a8b77f5d95.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3c82828d42f8465e9d3550a8b77f5d95.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3c82828d42f8465e9d3550a8b77f5d95.jpg", "file_size": 12591, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#前片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c82828d42f8465e9d3550a8b77f5d95.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c82828d42f8465e9d3550a8b77f5d95.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3c82828d42f8465e9d3550a8b77f5d95.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3c82828d42f8465e9d3550a8b77f5d95.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3c82828d42f8465e9d3550a8b77f5d95.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bBWaJIM4bsgGAigiSZ6JuvZ7zDc=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.087004+00 2025-12-09 10:16:09.08701+00 22426 0048-3FWE#A色VS-D3 SPMX-20240815317693 \N \N \N 1 \N [{"file_id": "21a3c50e-cf6e-47d5-b796-9eaf57332244", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3bc76402790d4887b8ad9bca04c8ec99.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3bc76402790d4887b8ad9bca04c8ec99.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3bc76402790d4887b8ad9bca04c8ec99.jpg", "file_size": 6565, "is_delete": false, "file_type": 1, "original_file_name": "0048-3FWE#A色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc76402790d4887b8ad9bca04c8ec99.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc76402790d4887b8ad9bca04c8ec99.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3bc76402790d4887b8ad9bca04c8ec99.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3bc76402790d4887b8ad9bca04c8ec99.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3bc76402790d4887b8ad9bca04c8ec99.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JmgiZ8rVTMvMcTa5IUGtM93bPmM=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.09444+00 2025-12-09 10:16:09.094448+00 22428 JY-QC230720-P(31)#白色 SPMX-20240815317692 \N \N \N 1 \N [{"file_id": "154500e7-05e1-4700-95e6-2df48bffdc19", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ffd2ced8eb324e1488ba2be62aee823b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ffd2ced8eb324e1488ba2be62aee823b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ffd2ced8eb324e1488ba2be62aee823b.jpg", "file_size": 18687, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P(31)#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd2ced8eb324e1488ba2be62aee823b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd2ced8eb324e1488ba2be62aee823b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ffd2ced8eb324e1488ba2be62aee823b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ffd2ced8eb324e1488ba2be62aee823b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ffd2ced8eb324e1488ba2be62aee823b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Oqy4fvk2tP6eaZ6giTEzAiGjZNk=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.09073+00 2025-12-09 10:16:09.090738+00 22427 DN-D3079#领子 SPMX-20240815317686 \N \N \N 1 \N [{"file_id": "491c5357-4eff-484f-b7c4-050e6f9bcbd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "471b8c27809c4aa5886e1e2e1d953418.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "471b8c27809c4aa5886e1e2e1d953418.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "471b8c27809c4aa5886e1e2e1d953418.jpg", "file_size": 21815, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3079#领子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471b8c27809c4aa5886e1e2e1d953418.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471b8c27809c4aa5886e1e2e1d953418.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/471b8c27809c4aa5886e1e2e1d953418.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/471b8c27809c4aa5886e1e2e1d953418.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/471b8c27809c4aa5886e1e2e1d953418.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dgqsqqTyU7GFaoIXal5_CJ7QNas=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.102293+00 2025-12-09 10:16:09.102302+00 22429 88447#E枣红底灰粉花下摆 SPMX-20240815317684 \N \N \N 1 \N [{"file_id": "86964c19-0b8d-4830-9180-5a2f48434150", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e6748208c00d44b2959b5a1a2db6f15b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e6748208c00d44b2959b5a1a2db6f15b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e6748208c00d44b2959b5a1a2db6f15b.jpg", "file_size": 9161, "is_delete": false, "file_type": 1, "original_file_name": "88447#E枣红底灰粉花下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6748208c00d44b2959b5a1a2db6f15b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6748208c00d44b2959b5a1a2db6f15b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e6748208c00d44b2959b5a1a2db6f15b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e6748208c00d44b2959b5a1a2db6f15b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e6748208c00d44b2959b5a1a2db6f15b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z-_lZg9cucgyxK85eR1MY84R0pg=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.105948+00 2025-12-09 10:16:09.105955+00 22430 CHS0375-14#WJC22 SPMX-20240815317687 \N \N \N 1 \N [{"file_id": "5c720840-df2d-48ab-93fd-5dee14516838", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "97d0f5e03b454ce0b80a38e36e7056cd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "97d0f5e03b454ce0b80a38e36e7056cd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "97d0f5e03b454ce0b80a38e36e7056cd.jpg", "file_size": 18202, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-14#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d0f5e03b454ce0b80a38e36e7056cd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d0f5e03b454ce0b80a38e36e7056cd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/97d0f5e03b454ce0b80a38e36e7056cd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/97d0f5e03b454ce0b80a38e36e7056cd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/97d0f5e03b454ce0b80a38e36e7056cd.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HWkJ4JmOP2rXnmrNXpgJ0l7afUQ=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.109662+00 2025-12-09 10:16:09.109668+00 22431 HXF073FW#粉 SPMX-20240815317689 \N \N \N 1 \N [{"file_id": "2316185d-6952-4f0d-aaea-02f8645e18d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e2fad828724244a286e0755b1b606167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e2fad828724244a286e0755b1b606167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e2fad828724244a286e0755b1b606167.jpg", "file_size": 13956, "is_delete": false, "file_type": 1, "original_file_name": "HXF073FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fad828724244a286e0755b1b606167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fad828724244a286e0755b1b606167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e2fad828724244a286e0755b1b606167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e2fad828724244a286e0755b1b606167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e2fad828724244a286e0755b1b606167.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wI7RAkb5p1dJd8vQQKP1wgpLyZ0=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.113506+00 2025-12-09 10:16:09.113514+00 22432 243081#-01-3-2XL码 SPMX-20240815317691 \N \N \N 1 \N [{"file_id": "7e9ddfee-5483-4588-aab3-70658ca47aa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "672752cd850044e99d8529ebcf73a2e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "672752cd850044e99d8529ebcf73a2e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "672752cd850044e99d8529ebcf73a2e4.jpg", "file_size": 52284, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672752cd850044e99d8529ebcf73a2e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672752cd850044e99d8529ebcf73a2e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/672752cd850044e99d8529ebcf73a2e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/672752cd850044e99d8529ebcf73a2e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/672752cd850044e99d8529ebcf73a2e4.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RW-V2qXognoR_sx8ZtNxAr_CYsc=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.117301+00 2025-12-09 10:16:09.117308+00 22433 LJW005FW#VS-D3红 SPMX-20240815317690 \N \N \N 1 \N [{"file_id": "7683c1ef-6be9-4ce3-aec6-8fb27cd5af4b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e7e60bc363145a8b540df46f05add54.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e7e60bc363145a8b540df46f05add54.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e7e60bc363145a8b540df46f05add54.jpg", "file_size": 19644, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FW#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7e60bc363145a8b540df46f05add54.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7e60bc363145a8b540df46f05add54.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e7e60bc363145a8b540df46f05add54.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e7e60bc363145a8b540df46f05add54.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e7e60bc363145a8b540df46f05add54.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:VhaNDorcKp9u6f85SrQSByCQuuY=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.121007+00 2025-12-09 10:16:09.121014+00 22434 FX028#VS-D3 SPMX-20240815317688 \N \N \N 1 \N [{"file_id": "38fdfeee-02a5-4e6b-83c4-eb7363a64c5a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74f77d6455a34ed9896c8afb873b8c57.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74f77d6455a34ed9896c8afb873b8c57.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74f77d6455a34ed9896c8afb873b8c57.jpg", "file_size": 17441, "is_delete": false, "file_type": 1, "original_file_name": "FX028#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74f77d6455a34ed9896c8afb873b8c57.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74f77d6455a34ed9896c8afb873b8c57.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74f77d6455a34ed9896c8afb873b8c57.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74f77d6455a34ed9896c8afb873b8c57.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74f77d6455a34ed9896c8afb873b8c57.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CiwY82NFIRLS9WzQmXRKCMj6hg0=", "createTime": "2024-08-15 15:11:57"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.124644+00 2025-12-09 10:16:09.124651+00 22435 LJW005FW#VS-D3绿 SPMX-20240815317700 \N \N \N 1 \N [{"file_id": "e6d428e9-b129-4574-8e1b-35cb54f7d4cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7beb497db083401ab7a3dd31b84f98b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7beb497db083401ab7a3dd31b84f98b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7beb497db083401ab7a3dd31b84f98b6.jpg", "file_size": 19644, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7beb497db083401ab7a3dd31b84f98b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7beb497db083401ab7a3dd31b84f98b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7beb497db083401ab7a3dd31b84f98b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7beb497db083401ab7a3dd31b84f98b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7beb497db083401ab7a3dd31b84f98b6.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:k0vhXBH1XHhNy8arXykGRPKwlfI=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.128307+00 2025-12-09 10:16:09.128313+00 22436 LJW005FW#VS-D3黄 SPMX-20240815317710 \N \N \N 1 \N [{"file_id": "750243d7-3b7d-492b-a6ed-345984982cdf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8e95c71e64e41ffbaebf61de642aea8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8e95c71e64e41ffbaebf61de642aea8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8e95c71e64e41ffbaebf61de642aea8.jpg", "file_size": 19644, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e95c71e64e41ffbaebf61de642aea8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e95c71e64e41ffbaebf61de642aea8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8e95c71e64e41ffbaebf61de642aea8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8e95c71e64e41ffbaebf61de642aea8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8e95c71e64e41ffbaebf61de642aea8.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:W3fDd4CIavUzaiUGlSw3pyWoavc=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.132113+00 2025-12-09 10:16:09.132119+00 22437 88447#E深蓝底粉花 SPMX-20240815317696 \N \N \N 1 \N [{"file_id": "fbb0c070-de2d-4aad-8844-07393d635707", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3defda69d3fa4a359e8ea813657b6132.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3defda69d3fa4a359e8ea813657b6132.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3defda69d3fa4a359e8ea813657b6132.jpg", "file_size": 17277, "is_delete": false, "file_type": 1, "original_file_name": "88447#E深蓝底粉花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3defda69d3fa4a359e8ea813657b6132.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3defda69d3fa4a359e8ea813657b6132.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3defda69d3fa4a359e8ea813657b6132.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3defda69d3fa4a359e8ea813657b6132.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3defda69d3fa4a359e8ea813657b6132.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zQgYyK62gglA2fIzEu_qzwNHcV4=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.13596+00 2025-12-09 10:16:09.135966+00 22438 88447#E深蓝底粉花下摆 SPMX-20240815317706 \N \N \N 1 \N [{"file_id": "ae49c55c-d4fc-40a2-b65b-bc39fb40879b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7ebca04d46ed4a3fa47f5fe2409b449b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7ebca04d46ed4a3fa47f5fe2409b449b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7ebca04d46ed4a3fa47f5fe2409b449b.jpg", "file_size": 8992, "is_delete": false, "file_type": 1, "original_file_name": "88447#E深蓝底粉花下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebca04d46ed4a3fa47f5fe2409b449b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebca04d46ed4a3fa47f5fe2409b449b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7ebca04d46ed4a3fa47f5fe2409b449b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7ebca04d46ed4a3fa47f5fe2409b449b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7ebca04d46ed4a3fa47f5fe2409b449b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAKS_Rv2oE8uv0nHLyBChqwPHTM=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.1397+00 2025-12-09 10:16:09.13971+00 22439 13010-1#前片XL SPMX-20240815317695 \N \N \N 1 \N [{"file_id": "151e27b6-a1b2-456e-a9c7-516580d6c254", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3537338e8f1e4e3abf79792ca4130647.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3537338e8f1e4e3abf79792ca4130647.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3537338e8f1e4e3abf79792ca4130647.jpg", "file_size": 12232, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#前片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3537338e8f1e4e3abf79792ca4130647.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3537338e8f1e4e3abf79792ca4130647.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3537338e8f1e4e3abf79792ca4130647.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3537338e8f1e4e3abf79792ca4130647.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3537338e8f1e4e3abf79792ca4130647.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xFOaz2_6LAM9r78BDxG0hzGFJ-A=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.143271+00 2025-12-09 10:16:09.143279+00 22440 0048-3FWE#B色VS-D3 SPMX-20240815317704 \N \N \N 1 \N [{"file_id": "709742e2-a0cd-4140-9618-dc7ccb0ac263", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "060d959f0cf34562b925edee2734e8ac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "060d959f0cf34562b925edee2734e8ac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "060d959f0cf34562b925edee2734e8ac.jpg", "file_size": 7057, "is_delete": false, "file_type": 1, "original_file_name": "0048-3FWE#B色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060d959f0cf34562b925edee2734e8ac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060d959f0cf34562b925edee2734e8ac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/060d959f0cf34562b925edee2734e8ac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/060d959f0cf34562b925edee2734e8ac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/060d959f0cf34562b925edee2734e8ac.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YS_sQ46bG96rGZQytJ3jngGkNb0=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.146497+00 2025-12-09 10:16:09.146501+00 22441 CHS0375-15#WJC22 SPMX-20240815317697 \N \N \N 1 \N [{"file_id": "3e024e9a-3d01-4ba3-9fb0-ea393294d28a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ee6469a9930249bea5868f01b23a99bc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ee6469a9930249bea5868f01b23a99bc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ee6469a9930249bea5868f01b23a99bc.jpg", "file_size": 10347, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-15#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6469a9930249bea5868f01b23a99bc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6469a9930249bea5868f01b23a99bc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ee6469a9930249bea5868f01b23a99bc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ee6469a9930249bea5868f01b23a99bc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ee6469a9930249bea5868f01b23a99bc.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j-ldZo5qCyJaOGfsD3TGh2BHNc4=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.149536+00 2025-12-09 10:16:09.149541+00 22442 DN-D3080#2XL SPMX-20240815317699 \N \N \N 1 \N [{"file_id": "079c9478-d021-48b1-8cb5-ed871222a406", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2611fffe6fc43bf822f1bbe7322cb6e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2611fffe6fc43bf822f1bbe7322cb6e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2611fffe6fc43bf822f1bbe7322cb6e.jpg", "file_size": 56157, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3080#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2611fffe6fc43bf822f1bbe7322cb6e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2611fffe6fc43bf822f1bbe7322cb6e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2611fffe6fc43bf822f1bbe7322cb6e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2611fffe6fc43bf822f1bbe7322cb6e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2611fffe6fc43bf822f1bbe7322cb6e.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0uOBn4IH1AIt8HS7oXXU3e4qFzc=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.152595+00 2025-12-09 10:16:09.1526+00 22443 JY-QC230720-P(31)#绿色 SPMX-20240815317703 \N \N \N 1 \N [{"file_id": "8ac0c5d7-d162-44ad-9fac-84312bb9e023", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "71b2f21c20b7419ca7f80a10d6b88e10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "71b2f21c20b7419ca7f80a10d6b88e10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "71b2f21c20b7419ca7f80a10d6b88e10.jpg", "file_size": 19107, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P(31)#绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b2f21c20b7419ca7f80a10d6b88e10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b2f21c20b7419ca7f80a10d6b88e10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/71b2f21c20b7419ca7f80a10d6b88e10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/71b2f21c20b7419ca7f80a10d6b88e10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/71b2f21c20b7419ca7f80a10d6b88e10.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:14Lr3UXxvAYfznPvH9l_PKnlCBA=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.15572+00 2025-12-09 10:16:09.155724+00 22444 HXF073FW#蓝 SPMX-20240815317701 \N \N \N 1 \N [{"file_id": "09d06515-8d09-42e2-be10-5da754f959bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "adadbf158c3143288c3bf964c0bacfcb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "adadbf158c3143288c3bf964c0bacfcb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "adadbf158c3143288c3bf964c0bacfcb.jpg", "file_size": 15634, "is_delete": false, "file_type": 1, "original_file_name": "HXF073FW#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adadbf158c3143288c3bf964c0bacfcb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adadbf158c3143288c3bf964c0bacfcb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/adadbf158c3143288c3bf964c0bacfcb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/adadbf158c3143288c3bf964c0bacfcb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/adadbf158c3143288c3bf964c0bacfcb.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xtm-74y4_dEugGA8y_KRtjP80oo=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.158766+00 2025-12-09 10:16:09.158771+00 22445 LZ1440#上身4号色 SPMX-20240815317694 \N \N \N 1 \N [{"file_id": "6b487cbd-3a77-4139-af65-89d0d0e9a0d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "92285a7dfad5443db11acfdf7a48b325.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "92285a7dfad5443db11acfdf7a48b325.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "92285a7dfad5443db11acfdf7a48b325.jpg", "file_size": 18204, "is_delete": false, "file_type": 1, "original_file_name": "LZ1440#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92285a7dfad5443db11acfdf7a48b325.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92285a7dfad5443db11acfdf7a48b325.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/92285a7dfad5443db11acfdf7a48b325.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/92285a7dfad5443db11acfdf7a48b325.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/92285a7dfad5443db11acfdf7a48b325.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TToZWk9yVDkNmNPbaK4ovzKr2GU=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.16181+00 2025-12-09 10:16:09.161815+00 22446 CHS0375-16#WJC22 SPMX-20240815317709 \N \N \N 1 \N [{"file_id": "d09a71b9-1df9-48d2-b73a-1e87d5378f44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79987f2fc35f4b88a87c7b33d5c91eff.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79987f2fc35f4b88a87c7b33d5c91eff.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79987f2fc35f4b88a87c7b33d5c91eff.jpg", "file_size": 15593, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-16#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79987f2fc35f4b88a87c7b33d5c91eff.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79987f2fc35f4b88a87c7b33d5c91eff.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79987f2fc35f4b88a87c7b33d5c91eff.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79987f2fc35f4b88a87c7b33d5c91eff.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79987f2fc35f4b88a87c7b33d5c91eff.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:afg2N2j-B7xs0EIWgNWbtpHXHt0=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.164851+00 2025-12-09 10:16:09.164856+00 22447 LZ1440#上身5号色 SPMX-20240815317705 \N \N \N 1 \N [{"file_id": "ae4825ec-a79b-4620-b57b-954c6a0fdf7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg", "file_size": 17871, "is_delete": false, "file_type": 1, "original_file_name": "LZ1440#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/669078b91ddd4d6ca6d3d5fff3ccf0b7.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:trI1KI7Ftu7JbqVnPJKfvHMCYc0=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.168107+00 2025-12-09 10:16:09.168114+00 22448 FX028#浅黄 SPMX-20240815317698 \N \N \N 1 \N [{"file_id": "bc76cd47-6142-43bd-bc06-c5f33671918f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2aeb8ac187d84e2f95e249670af924cc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2aeb8ac187d84e2f95e249670af924cc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2aeb8ac187d84e2f95e249670af924cc.jpg", "file_size": 5991, "is_delete": false, "file_type": 1, "original_file_name": "FX028#浅黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aeb8ac187d84e2f95e249670af924cc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aeb8ac187d84e2f95e249670af924cc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2aeb8ac187d84e2f95e249670af924cc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2aeb8ac187d84e2f95e249670af924cc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2aeb8ac187d84e2f95e249670af924cc.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yd2GmkMUWZu1MAuFehz2KsviqyU=", "createTime": "2024-08-15 15:11:58"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.171782+00 2025-12-09 10:16:09.171789+00 22449 243081#-01-3-3XL码 SPMX-20240815317702 \N \N \N 1 \N [{"file_id": "d35dd7eb-997d-42c9-991a-388165791ee9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "69d559e3da9c4cfc88202dd65a441257.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "69d559e3da9c4cfc88202dd65a441257.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "69d559e3da9c4cfc88202dd65a441257.jpg", "file_size": 51378, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d559e3da9c4cfc88202dd65a441257.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d559e3da9c4cfc88202dd65a441257.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/69d559e3da9c4cfc88202dd65a441257.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/69d559e3da9c4cfc88202dd65a441257.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/69d559e3da9c4cfc88202dd65a441257.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KguxRzSjj77tFX_29deO7CU2fUQ=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.175461+00 2025-12-09 10:16:09.175468+00 22450 13010-1#后片2XL SPMX-20240815317707 \N \N \N 1 \N [{"file_id": "09aa829b-dcdc-4a7b-985e-730c6076fe52", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2f6e09751f840b38e350c4800bc6ae5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2f6e09751f840b38e350c4800bc6ae5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2f6e09751f840b38e350c4800bc6ae5.jpg", "file_size": 11759, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f6e09751f840b38e350c4800bc6ae5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f6e09751f840b38e350c4800bc6ae5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2f6e09751f840b38e350c4800bc6ae5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2f6e09751f840b38e350c4800bc6ae5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2f6e09751f840b38e350c4800bc6ae5.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7jEqElHpPynTTpwZKFaLe2qLn6o=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.178983+00 2025-12-09 10:16:09.17899+00 22451 DN-D3080#3XL SPMX-20240815317708 \N \N \N 1 \N [{"file_id": "04b31f9f-1f06-41b6-8a2a-776631a507a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5d363a731e0345aba6376eb8e0155cc9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5d363a731e0345aba6376eb8e0155cc9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5d363a731e0345aba6376eb8e0155cc9.jpg", "file_size": 54578, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3080#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d363a731e0345aba6376eb8e0155cc9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d363a731e0345aba6376eb8e0155cc9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5d363a731e0345aba6376eb8e0155cc9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5d363a731e0345aba6376eb8e0155cc9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5d363a731e0345aba6376eb8e0155cc9.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zkiNg5aeSDdmeMBDhpSb5qhyyKg=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.182518+00 2025-12-09 10:16:09.182525+00 22452 HXF074FW#VS-D3天蓝 SPMX-20240815317711 \N \N \N 1 \N [{"file_id": "0a819aae-0152-4017-acb9-7f8b9b283384", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6428cb571ae84bfe8667406ae1e3f683.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6428cb571ae84bfe8667406ae1e3f683.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6428cb571ae84bfe8667406ae1e3f683.jpg", "file_size": 13153, "is_delete": false, "file_type": 1, "original_file_name": "HXF074FW#VS-D3天蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6428cb571ae84bfe8667406ae1e3f683.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6428cb571ae84bfe8667406ae1e3f683.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6428cb571ae84bfe8667406ae1e3f683.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6428cb571ae84bfe8667406ae1e3f683.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6428cb571ae84bfe8667406ae1e3f683.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2eZ9Jm3ebxdYEowEm-F7a2MK-Bo=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.186167+00 2025-12-09 10:16:09.186175+00 22453 FX028#白黑 SPMX-20240815317712 \N \N \N 1 \N [{"file_id": "40fec0ea-f48d-4356-93d7-2638ef0d24a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "67879593f0014465a6fea465258ac035.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "67879593f0014465a6fea465258ac035.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "67879593f0014465a6fea465258ac035.jpg", "file_size": 15196, "is_delete": false, "file_type": 1, "original_file_name": "FX028#白黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67879593f0014465a6fea465258ac035.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67879593f0014465a6fea465258ac035.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/67879593f0014465a6fea465258ac035.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/67879593f0014465a6fea465258ac035.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/67879593f0014465a6fea465258ac035.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I7R9Dpe2s1MdDyu8y961dCjF7gU=", "createTime": "2024-08-15 15:11:59"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.190073+00 2025-12-09 10:16:09.190081+00 22454 LJW005FW#VS-D3黑 SPMX-20240815317722 \N \N \N 1 \N [{"file_id": "6532f058-1a62-4cf3-ad70-73e586d89773", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c339018ebbb434c96b955e245b2a76b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c339018ebbb434c96b955e245b2a76b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c339018ebbb434c96b955e245b2a76b.jpg", "file_size": 20641, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FW#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c339018ebbb434c96b955e245b2a76b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c339018ebbb434c96b955e245b2a76b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c339018ebbb434c96b955e245b2a76b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c339018ebbb434c96b955e245b2a76b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c339018ebbb434c96b955e245b2a76b.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7jQ2mTorwTfOe-9PhUxwASZ0qE=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.193905+00 2025-12-09 10:16:09.193911+00 22455 243081#-01-4-3XL码 SPMX-20240815317724 \N \N \N 1 \N [{"file_id": "69191c02-527d-4338-ad85-f75402084e3d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "997b0588753f48f0a8b309cbf09a507d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "997b0588753f48f0a8b309cbf09a507d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "997b0588753f48f0a8b309cbf09a507d.jpg", "file_size": 52679, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-4-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b0588753f48f0a8b309cbf09a507d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b0588753f48f0a8b309cbf09a507d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/997b0588753f48f0a8b309cbf09a507d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/997b0588753f48f0a8b309cbf09a507d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/997b0588753f48f0a8b309cbf09a507d.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uZSwZBe6hG23qGWYhujJrXqgbWo=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:09.197666+00 2025-12-09 10:16:09.197673+00 22456 LZ1441#上身1号色 SPMX-20240815317715 \N \N \N 1 \N [{"file_id": "ec601e7f-b511-41a4-ae13-3ae19d4969ae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c70c23748cca46758ab28118b7f3779a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c70c23748cca46758ab28118b7f3779a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c70c23748cca46758ab28118b7f3779a.jpg", "file_size": 18223, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70c23748cca46758ab28118b7f3779a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70c23748cca46758ab28118b7f3779a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c70c23748cca46758ab28118b7f3779a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c70c23748cca46758ab28118b7f3779a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c70c23748cca46758ab28118b7f3779a.jpg?e=1765361767&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:igYwNXrNMPU_GvpEp6qI7j8Fm3Q=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.201494+00 2025-12-09 10:16:10.201505+00 22457 HXF074FW#VS-D3粉色 SPMX-20240815317721 \N \N \N 1 \N [{"file_id": "0d8deed1-bfe3-4c8a-a6d1-f334b8890a9d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "14445f59c8f84cf488e460326586de08.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "14445f59c8f84cf488e460326586de08.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "14445f59c8f84cf488e460326586de08.jpg", "file_size": 15572, "is_delete": false, "file_type": 1, "original_file_name": "HXF074FW#VS-D3粉色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14445f59c8f84cf488e460326586de08.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14445f59c8f84cf488e460326586de08.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/14445f59c8f84cf488e460326586de08.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/14445f59c8f84cf488e460326586de08.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/14445f59c8f84cf488e460326586de08.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:O7_T75Wn0G6qvm1qAGnPIlRRsaQ=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.206531+00 2025-12-09 10:16:10.20654+00 22458 FX028#黑白 SPMX-20240815317723 \N \N \N 1 \N [{"file_id": "cbc8712a-a338-4518-a50c-e9ed713f7d0c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7131e876bbcb416a9f1220ac353b680e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7131e876bbcb416a9f1220ac353b680e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7131e876bbcb416a9f1220ac353b680e.jpg", "file_size": 15342, "is_delete": false, "file_type": 1, "original_file_name": "FX028#黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7131e876bbcb416a9f1220ac353b680e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7131e876bbcb416a9f1220ac353b680e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7131e876bbcb416a9f1220ac353b680e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7131e876bbcb416a9f1220ac353b680e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7131e876bbcb416a9f1220ac353b680e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z2OdCofOM53dpLlIZOXakS-fCaw=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.2105+00 2025-12-09 10:16:10.210507+00 22459 13010-1#后片L SPMX-20240815317716 \N \N \N 1 \N [{"file_id": "adf7ec85-5d70-4d8a-8504-89b6ad626bef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "baf6d2ec84ee4512a2b674543da7bb3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "baf6d2ec84ee4512a2b674543da7bb3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "baf6d2ec84ee4512a2b674543da7bb3a.jpg", "file_size": 11011, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf6d2ec84ee4512a2b674543da7bb3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf6d2ec84ee4512a2b674543da7bb3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/baf6d2ec84ee4512a2b674543da7bb3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/baf6d2ec84ee4512a2b674543da7bb3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/baf6d2ec84ee4512a2b674543da7bb3a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pqH45i6ggMg7N6F2Tzv0dN942oA=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.214177+00 2025-12-09 10:16:10.214183+00 22460 DN-D3080#L SPMX-20240815317720 \N \N \N 1 \N [{"file_id": "0379940f-f2f6-4d51-b60a-4163a78ca0d2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c8b9a4746cf44003a5cc5d388b586159.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c8b9a4746cf44003a5cc5d388b586159.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c8b9a4746cf44003a5cc5d388b586159.jpg", "file_size": 58071, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3080#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b9a4746cf44003a5cc5d388b586159.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b9a4746cf44003a5cc5d388b586159.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c8b9a4746cf44003a5cc5d388b586159.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c8b9a4746cf44003a5cc5d388b586159.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c8b9a4746cf44003a5cc5d388b586159.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7GME3B-GjjXf1B8ehoJDAiT9rqo=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.217992+00 2025-12-09 10:16:10.217999+00 22461 CHS0375-18#样版色 SPMX-20240815317719 \N \N \N 1 \N [{"file_id": "77468102-2bf7-4280-a603-c9f4678314bc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "212fe89829fb463ba7609f0989745ee7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "212fe89829fb463ba7609f0989745ee7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "212fe89829fb463ba7609f0989745ee7.jpg", "file_size": 8481, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-18#样版色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212fe89829fb463ba7609f0989745ee7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212fe89829fb463ba7609f0989745ee7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/212fe89829fb463ba7609f0989745ee7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/212fe89829fb463ba7609f0989745ee7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/212fe89829fb463ba7609f0989745ee7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkDH0hgRviNeE-WgfGfF9IlshtA=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.221591+00 2025-12-09 10:16:10.221597+00 22462 0048-3FWE#C色VS-D3 SPMX-20240815317718 \N \N \N 1 \N [{"file_id": "2ae7f5f6-ccbc-40fe-b107-7eeb029dc9ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "98c5e6c1fc4b477aa7cf34b99e09a88d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "98c5e6c1fc4b477aa7cf34b99e09a88d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "98c5e6c1fc4b477aa7cf34b99e09a88d.jpg", "file_size": 7251, "is_delete": false, "file_type": 1, "original_file_name": "0048-3FWE#C色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c5e6c1fc4b477aa7cf34b99e09a88d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c5e6c1fc4b477aa7cf34b99e09a88d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/98c5e6c1fc4b477aa7cf34b99e09a88d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/98c5e6c1fc4b477aa7cf34b99e09a88d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/98c5e6c1fc4b477aa7cf34b99e09a88d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LCjYifp96_ZzDfqZs3VW1dDjsEw=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.225269+00 2025-12-09 10:16:10.225278+00 22463 88447#E粉底红花 SPMX-20240815317717 \N \N \N 1 \N [{"file_id": "23c5587a-bec9-4785-9679-d65cee20729d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f019931ca7b415fa15cedc89d924f93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f019931ca7b415fa15cedc89d924f93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f019931ca7b415fa15cedc89d924f93.jpg", "file_size": 16924, "is_delete": false, "file_type": 1, "original_file_name": "88447#E粉底红花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f019931ca7b415fa15cedc89d924f93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f019931ca7b415fa15cedc89d924f93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f019931ca7b415fa15cedc89d924f93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f019931ca7b415fa15cedc89d924f93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f019931ca7b415fa15cedc89d924f93.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AiAqGVJf9Sfvj24Xk9151JhJaS8=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.22887+00 2025-12-09 10:16:10.228877+00 22464 243081#-01-4-2XL码 SPMX-20240815317714 \N \N \N 1 \N [{"file_id": "4da4e859-9c63-4b27-9aaa-5dc26e78000e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3f9bda8f62c443cf82e6dcf6efb11c2e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3f9bda8f62c443cf82e6dcf6efb11c2e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3f9bda8f62c443cf82e6dcf6efb11c2e.jpg", "file_size": 51103, "is_delete": false, "file_type": 1, "original_file_name": "243081#-01-4-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9bda8f62c443cf82e6dcf6efb11c2e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9bda8f62c443cf82e6dcf6efb11c2e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3f9bda8f62c443cf82e6dcf6efb11c2e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3f9bda8f62c443cf82e6dcf6efb11c2e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3f9bda8f62c443cf82e6dcf6efb11c2e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wtyeM5YwGxQAuMio2sVvKKd-bFw=", "createTime": "2024-08-15 15:12:00"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.232473+00 2025-12-09 10:16:10.232478+00 22465 LZ1441#上身2号色 SPMX-20240815317727 \N \N \N 1 \N [{"file_id": "a37714e5-07cc-4b77-a7c3-f339d7255e73", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "30e6d366559a432d84f2883b61931964.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "30e6d366559a432d84f2883b61931964.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "30e6d366559a432d84f2883b61931964.jpg", "file_size": 16928, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e6d366559a432d84f2883b61931964.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e6d366559a432d84f2883b61931964.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/30e6d366559a432d84f2883b61931964.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/30e6d366559a432d84f2883b61931964.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/30e6d366559a432d84f2883b61931964.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lfCL68VMuKMR_mUtgWi6jPhpoEU=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.236133+00 2025-12-09 10:16:10.236139+00 22466 13010-1#后片S SPMX-20240815317737 \N \N \N 1 \N [{"file_id": "d6b3908e-eac4-4dc3-96a0-fe4f8d0936ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5c51955e813d423b836fc1772d013948.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5c51955e813d423b836fc1772d013948.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5c51955e813d423b836fc1772d013948.jpg", "file_size": 10557, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c51955e813d423b836fc1772d013948.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c51955e813d423b836fc1772d013948.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5c51955e813d423b836fc1772d013948.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5c51955e813d423b836fc1772d013948.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5c51955e813d423b836fc1772d013948.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:KnGIoZVa2udNRwjIjui8xu6i3QQ=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.239875+00 2025-12-09 10:16:10.239882+00 22467 13010-1#后片M SPMX-20240815317726 \N \N \N 1 \N [{"file_id": "0b415af8-b6c1-4a61-9cb8-8290c87b1bfe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "206f536d28324e15b27f1c6c586b2665.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "206f536d28324e15b27f1c6c586b2665.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "206f536d28324e15b27f1c6c586b2665.jpg", "file_size": 10569, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206f536d28324e15b27f1c6c586b2665.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206f536d28324e15b27f1c6c586b2665.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/206f536d28324e15b27f1c6c586b2665.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/206f536d28324e15b27f1c6c586b2665.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/206f536d28324e15b27f1c6c586b2665.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Yqddow0I0f-dMKaWUTKXhjb4z7k=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.243691+00 2025-12-09 10:16:10.243697+00 22468 JY-QC230720-P(31)#酒红 SPMX-20240815317725 \N \N \N 1 \N [{"file_id": "ad5b849f-c27a-462b-a7f8-bb92582c09e0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f041ea2e6d854369a9169f1933b20c77.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f041ea2e6d854369a9169f1933b20c77.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f041ea2e6d854369a9169f1933b20c77.jpg", "file_size": 18676, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P(31)#酒红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041ea2e6d854369a9169f1933b20c77.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041ea2e6d854369a9169f1933b20c77.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f041ea2e6d854369a9169f1933b20c77.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f041ea2e6d854369a9169f1933b20c77.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f041ea2e6d854369a9169f1933b20c77.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Um4P6sNpn2CIM9_hEpGggyuhnpk=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.247355+00 2025-12-09 10:16:10.247362+00 22469 DN-D3080#M SPMX-20240815317730 \N \N \N 1 \N [{"file_id": "37fb45e0-1e67-482b-9e09-6a9e32641fed", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f5285656c50d4e84a9fee7f7fb5b3b33.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f5285656c50d4e84a9fee7f7fb5b3b33.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f5285656c50d4e84a9fee7f7fb5b3b33.jpg", "file_size": 60158, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3080#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5285656c50d4e84a9fee7f7fb5b3b33.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5285656c50d4e84a9fee7f7fb5b3b33.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f5285656c50d4e84a9fee7f7fb5b3b33.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f5285656c50d4e84a9fee7f7fb5b3b33.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f5285656c50d4e84a9fee7f7fb5b3b33.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Z7TXmu5ihAlyfkq8e1Mew8O8tDw=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.250989+00 2025-12-09 10:16:10.250996+00 22470 243082#-01-1-2XL码 SPMX-20240815317735 \N \N \N 1 \N [{"file_id": "8f999d36-9802-495a-a1a7-adf7577e8f5c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "46f5eddde7494fb4afcd736cc5874cd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "46f5eddde7494fb4afcd736cc5874cd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "46f5eddde7494fb4afcd736cc5874cd7.jpg", "file_size": 50568, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f5eddde7494fb4afcd736cc5874cd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f5eddde7494fb4afcd736cc5874cd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/46f5eddde7494fb4afcd736cc5874cd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/46f5eddde7494fb4afcd736cc5874cd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/46f5eddde7494fb4afcd736cc5874cd7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wNPsCASAwofXGGGbH6Kd-RZF9fE=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.254836+00 2025-12-09 10:16:10.254843+00 22471 FX028FW#VS-D3 SPMX-20240815317732 \N \N \N 1 \N [{"file_id": "49fca701-846d-4e9a-8d4b-bbf63f52be49", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e4d820191dfc4ac483b04b86fed383d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e4d820191dfc4ac483b04b86fed383d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e4d820191dfc4ac483b04b86fed383d6.jpg", "file_size": 24328, "is_delete": false, "file_type": 1, "original_file_name": "FX028FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d820191dfc4ac483b04b86fed383d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d820191dfc4ac483b04b86fed383d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e4d820191dfc4ac483b04b86fed383d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e4d820191dfc4ac483b04b86fed383d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e4d820191dfc4ac483b04b86fed383d6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sH8uuz7OFE3RDcA2aGVzeAi7D0o=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.258549+00 2025-12-09 10:16:10.258556+00 22472 CHS0375-18#橘色 SPMX-20240815317731 \N \N \N 1 \N [{"file_id": "7d1f3fb6-3f35-4392-8ef1-3d1b619ae220", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dd09e5e47b0f4e32b90e34eb9557e3f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dd09e5e47b0f4e32b90e34eb9557e3f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dd09e5e47b0f4e32b90e34eb9557e3f2.jpg", "file_size": 9253, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-18#橘色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd09e5e47b0f4e32b90e34eb9557e3f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd09e5e47b0f4e32b90e34eb9557e3f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dd09e5e47b0f4e32b90e34eb9557e3f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dd09e5e47b0f4e32b90e34eb9557e3f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dd09e5e47b0f4e32b90e34eb9557e3f2.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-joCikJYkovUavm08wDf7ZLAZxU=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.26219+00 2025-12-09 10:16:10.262198+00 22473 LJW005FWE#VS-D3 SPMX-20240815317733 \N \N \N 1 \N [{"file_id": "26f93c22-fb3a-4f3e-ac15-38a4688469b2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a77139129cca4bd8a6f51eacf54815da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a77139129cca4bd8a6f51eacf54815da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a77139129cca4bd8a6f51eacf54815da.jpg", "file_size": 18540, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77139129cca4bd8a6f51eacf54815da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77139129cca4bd8a6f51eacf54815da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a77139129cca4bd8a6f51eacf54815da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a77139129cca4bd8a6f51eacf54815da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a77139129cca4bd8a6f51eacf54815da.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B56j7gnvlseXq6_-tIeSqB7JZRE=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.265889+00 2025-12-09 10:16:10.265894+00 22474 HXF075FW#粉 SPMX-20240815317734 \N \N \N 1 \N [{"file_id": "2faa6ede-cf6f-4a4d-bf04-c8d47f2d1f55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0792c170be4945d1809f56b6ced9762a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0792c170be4945d1809f56b6ced9762a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0792c170be4945d1809f56b6ced9762a.jpg", "file_size": 16390, "is_delete": false, "file_type": 1, "original_file_name": "HXF075FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0792c170be4945d1809f56b6ced9762a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0792c170be4945d1809f56b6ced9762a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0792c170be4945d1809f56b6ced9762a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0792c170be4945d1809f56b6ced9762a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0792c170be4945d1809f56b6ced9762a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KbBU5wVWpkM13QKmMUKYYly-bw=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.298982+00 2025-12-09 10:16:10.298989+00 22483 13010-1#后片XL SPMX-20240815317746 \N \N \N 1 \N [{"file_id": "4d36f83f-50fa-44a9-ac05-e4cfa557932b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "17552737dba14e8c97feca2215b8d93f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "17552737dba14e8c97feca2215b8d93f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "17552737dba14e8c97feca2215b8d93f.jpg", "file_size": 11552, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17552737dba14e8c97feca2215b8d93f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17552737dba14e8c97feca2215b8d93f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/17552737dba14e8c97feca2215b8d93f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/17552737dba14e8c97feca2215b8d93f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/17552737dba14e8c97feca2215b8d93f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UCxtC-3bdSrNwYuDGiyyElSQEsk=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.269554+00 2025-12-09 10:16:10.26956+00 22475 88447#E粉底红花下摆 SPMX-20240815317728 \N \N \N 1 \N [{"file_id": "ec819068-cd05-4a0f-b3be-067bef3fbd55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "489df4784516495aa544b0d06b5a2edc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "489df4784516495aa544b0d06b5a2edc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "489df4784516495aa544b0d06b5a2edc.jpg", "file_size": 8523, "is_delete": false, "file_type": 1, "original_file_name": "88447#E粉底红花下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489df4784516495aa544b0d06b5a2edc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489df4784516495aa544b0d06b5a2edc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/489df4784516495aa544b0d06b5a2edc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/489df4784516495aa544b0d06b5a2edc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/489df4784516495aa544b0d06b5a2edc.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_qIUhfnRB7k9nwPrAQu4HItN0qM=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.273287+00 2025-12-09 10:16:10.273293+00 22476 0048-3FWE#D色VS-D3 SPMX-20240815317729 \N \N \N 1 \N [{"file_id": "c5459233-5090-46bb-9251-db3cda846d21", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9f562b91089c4248900d8e0f52d565d8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9f562b91089c4248900d8e0f52d565d8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9f562b91089c4248900d8e0f52d565d8.jpg", "file_size": 7185, "is_delete": false, "file_type": 1, "original_file_name": "0048-3FWE#D色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f562b91089c4248900d8e0f52d565d8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f562b91089c4248900d8e0f52d565d8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9f562b91089c4248900d8e0f52d565d8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9f562b91089c4248900d8e0f52d565d8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9f562b91089c4248900d8e0f52d565d8.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ko6zCocgt3yyphuDhNVbHtr_2Yg=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.276971+00 2025-12-09 10:16:10.276978+00 22477 JY-QC230720-P(31)#黑色 SPMX-20240815317736 \N \N \N 1 \N [{"file_id": "46732f6d-7b06-4f71-8bd7-5f2abeca48f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5e6c1bc31fb042b288be51f999115694.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5e6c1bc31fb042b288be51f999115694.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5e6c1bc31fb042b288be51f999115694.jpg", "file_size": 19776, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P(31)#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6c1bc31fb042b288be51f999115694.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6c1bc31fb042b288be51f999115694.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5e6c1bc31fb042b288be51f999115694.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5e6c1bc31fb042b288be51f999115694.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5e6c1bc31fb042b288be51f999115694.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:j76Xfauu400nX8rAinQxp39dX9M=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.280633+00 2025-12-09 10:16:10.280639+00 22478 LZ1441#上身3号色 SPMX-20240815317738 \N \N \N 1 \N [{"file_id": "e23153c8-cc17-4047-a3fc-0a5b8171528c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f44577d986a2481fb715297993546394.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f44577d986a2481fb715297993546394.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f44577d986a2481fb715297993546394.jpg", "file_size": 16603, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44577d986a2481fb715297993546394.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44577d986a2481fb715297993546394.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f44577d986a2481fb715297993546394.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f44577d986a2481fb715297993546394.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f44577d986a2481fb715297993546394.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BJRspld5BhGjtGov8hBqQuC7GYc=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.284279+00 2025-12-09 10:16:10.284285+00 22479 0048-3FWE#E色VS-D3 SPMX-20240815317739 \N \N \N 1 \N [{"file_id": "e556a50d-d025-42f3-93a1-1fca416d26f1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg", "file_size": 7342, "is_delete": false, "file_type": 1, "original_file_name": "0048-3FWE#E色VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ef98cdc7e8b462ca9d8c4dc5f3a21d1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q-sf7N_XfNox13zE8SxennEP7gs=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.287882+00 2025-12-09 10:16:10.287889+00 22480 CHS0375-19#WJC22 SPMX-20240815317752 \N \N \N 1 \N [{"file_id": "620e5832-dd9b-409c-a944-5fe1b61bbce7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b372de00164c4ced914efbbc88f56e29.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b372de00164c4ced914efbbc88f56e29.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b372de00164c4ced914efbbc88f56e29.jpg", "file_size": 19860, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-19#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372de00164c4ced914efbbc88f56e29.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372de00164c4ced914efbbc88f56e29.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b372de00164c4ced914efbbc88f56e29.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b372de00164c4ced914efbbc88f56e29.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b372de00164c4ced914efbbc88f56e29.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i58CSTjhBeSw58VYeMEHvSwKin4=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.291598+00 2025-12-09 10:16:10.291605+00 22481 CHS0375-18#浅绿色 SPMX-20240815317740 \N \N \N 1 \N [{"file_id": "5ea5084b-7afb-49f3-af1c-e1f2617c62f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "af3044347d83481c919d7de49f042e06.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "af3044347d83481c919d7de49f042e06.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "af3044347d83481c919d7de49f042e06.jpg", "file_size": 9635, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-18#浅绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3044347d83481c919d7de49f042e06.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3044347d83481c919d7de49f042e06.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/af3044347d83481c919d7de49f042e06.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/af3044347d83481c919d7de49f042e06.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/af3044347d83481c919d7de49f042e06.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lECgbGCzJX82rYtvq-QJ-7ucOOY=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.29527+00 2025-12-09 10:16:10.295277+00 22482 DN-D3080#XL SPMX-20240815317742 \N \N \N 1 \N [{"file_id": "dda7132e-9cf7-4f59-a6f4-3a4dd314d40e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8bbe92643e543e08a0b8a2d476c4b58.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8bbe92643e543e08a0b8a2d476c4b58.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8bbe92643e543e08a0b8a2d476c4b58.jpg", "file_size": 56302, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3080#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bbe92643e543e08a0b8a2d476c4b58.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bbe92643e543e08a0b8a2d476c4b58.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8bbe92643e543e08a0b8a2d476c4b58.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8bbe92643e543e08a0b8a2d476c4b58.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8bbe92643e543e08a0b8a2d476c4b58.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2ew6e45husmShkSLEMnN7_conao=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.302573+00 2025-12-09 10:16:10.302579+00 22484 FX028FWE#宝蓝VS-D3 SPMX-20240815317743 \N \N \N 1 \N [{"file_id": "7ab76a54-ef93-41a7-b188-2dcf97b0f40e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "906cfb1403e643e09e706ebc4f357c81.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "906cfb1403e643e09e706ebc4f357c81.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "906cfb1403e643e09e706ebc4f357c81.jpg", "file_size": 19160, "is_delete": false, "file_type": 1, "original_file_name": "FX028FWE#宝蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906cfb1403e643e09e706ebc4f357c81.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906cfb1403e643e09e706ebc4f357c81.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/906cfb1403e643e09e706ebc4f357c81.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/906cfb1403e643e09e706ebc4f357c81.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/906cfb1403e643e09e706ebc4f357c81.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2fuimX4F4dau1ogCVarHeNrfuOw=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.306361+00 2025-12-09 10:16:10.306368+00 22485 HXF075FW#黑 SPMX-20240815317744 \N \N \N 1 \N [{"file_id": "317e6119-43cb-49af-8add-c5ae20aaeb79", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a0dcee089fee473ca1395e625a54618b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a0dcee089fee473ca1395e625a54618b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a0dcee089fee473ca1395e625a54618b.jpg", "file_size": 19047, "is_delete": false, "file_type": 1, "original_file_name": "HXF075FW#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0dcee089fee473ca1395e625a54618b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0dcee089fee473ca1395e625a54618b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a0dcee089fee473ca1395e625a54618b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a0dcee089fee473ca1395e625a54618b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a0dcee089fee473ca1395e625a54618b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IP6vYoFzXk_D5ILsAXSLLTr_o3s=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.309944+00 2025-12-09 10:16:10.309951+00 22486 243082#-01-1-3XL码 SPMX-20240815317748 \N \N \N 1 \N [{"file_id": "2ecafdb2-4643-4cb9-9f89-06c7f51dc534", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6387122cb8854ec9a3b17601b3db4010.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6387122cb8854ec9a3b17601b3db4010.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6387122cb8854ec9a3b17601b3db4010.jpg", "file_size": 50429, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6387122cb8854ec9a3b17601b3db4010.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6387122cb8854ec9a3b17601b3db4010.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6387122cb8854ec9a3b17601b3db4010.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6387122cb8854ec9a3b17601b3db4010.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6387122cb8854ec9a3b17601b3db4010.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcWLV_G8tvrvYB6MzoynAZeMkTQ=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.313662+00 2025-12-09 10:16:10.313669+00 22487 0048-4FWE#VS-D3 SPMX-20240815317751 \N \N \N 1 \N [{"file_id": "0db74ac7-d9ee-4b00-9db6-8d2fbb3086ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e29d13ea3b8042c5a421eb4d944c9710.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e29d13ea3b8042c5a421eb4d944c9710.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e29d13ea3b8042c5a421eb4d944c9710.jpg", "file_size": 17380, "is_delete": false, "file_type": 1, "original_file_name": "0048-4FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29d13ea3b8042c5a421eb4d944c9710.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29d13ea3b8042c5a421eb4d944c9710.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e29d13ea3b8042c5a421eb4d944c9710.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e29d13ea3b8042c5a421eb4d944c9710.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e29d13ea3b8042c5a421eb4d944c9710.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A4UG68FEbC1y_E0DpHSuXsspz7E=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.317288+00 2025-12-09 10:16:10.317294+00 22488 LJW005FWE#黑VS-D3 SPMX-20240815317745 \N \N \N 1 \N [{"file_id": "9c24be2c-a143-4785-a81c-e7a6282c65ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a3aefec514ba4290bb9cfc113a69e9ae.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a3aefec514ba4290bb9cfc113a69e9ae.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a3aefec514ba4290bb9cfc113a69e9ae.jpg", "file_size": 15225, "is_delete": false, "file_type": 1, "original_file_name": "LJW005FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3aefec514ba4290bb9cfc113a69e9ae.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3aefec514ba4290bb9cfc113a69e9ae.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a3aefec514ba4290bb9cfc113a69e9ae.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a3aefec514ba4290bb9cfc113a69e9ae.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a3aefec514ba4290bb9cfc113a69e9ae.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:doHZf0-Rp-X3S5rrPr3Dsk-xNDM=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.320897+00 2025-12-09 10:16:10.320904+00 22489 JY-QC230720-P24#1号蓝色 SPMX-20240815317747 \N \N \N 1 \N [{"file_id": "36ca283a-8e09-4e93-9f70-647bb27479ff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "299e24bf31a9423bae02301bcb1dcd25.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "299e24bf31a9423bae02301bcb1dcd25.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "299e24bf31a9423bae02301bcb1dcd25.jpg", "file_size": 13397, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P24#1号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299e24bf31a9423bae02301bcb1dcd25.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299e24bf31a9423bae02301bcb1dcd25.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/299e24bf31a9423bae02301bcb1dcd25.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/299e24bf31a9423bae02301bcb1dcd25.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/299e24bf31a9423bae02301bcb1dcd25.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QKqlUwRxmIFG72_dsGQ_O8W3jqs=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.324608+00 2025-12-09 10:16:10.324619+00 22490 LZ1441#上身4号色 SPMX-20240815317749 \N \N \N 1 \N [{"file_id": "b4623bfd-6b7d-4506-9ecd-0816e5143e44", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e8856ec0b1814fb8a00c8d1f0efceaca.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e8856ec0b1814fb8a00c8d1f0efceaca.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e8856ec0b1814fb8a00c8d1f0efceaca.jpg", "file_size": 17587, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8856ec0b1814fb8a00c8d1f0efceaca.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8856ec0b1814fb8a00c8d1f0efceaca.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e8856ec0b1814fb8a00c8d1f0efceaca.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e8856ec0b1814fb8a00c8d1f0efceaca.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e8856ec0b1814fb8a00c8d1f0efceaca.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:IV4o6JvlVBFO8dydf3WrxZEay1E=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.328267+00 2025-12-09 10:16:10.328273+00 22491 88447#E黑底水绿 SPMX-20240815317741 \N \N \N 1 \N [{"file_id": "8172eb95-375f-4699-b368-a84f1b8f9fb1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecc1b0cda638400fb55faf8143862a8d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecc1b0cda638400fb55faf8143862a8d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecc1b0cda638400fb55faf8143862a8d.jpg", "file_size": 16685, "is_delete": false, "file_type": 1, "original_file_name": "88447#E黑底水绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc1b0cda638400fb55faf8143862a8d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc1b0cda638400fb55faf8143862a8d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecc1b0cda638400fb55faf8143862a8d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecc1b0cda638400fb55faf8143862a8d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecc1b0cda638400fb55faf8143862a8d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nlq2qpn0f1B--0PMJQRlXXUuo0o=", "createTime": "2024-08-15 15:12:01"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.331884+00 2025-12-09 10:16:10.33189+00 22492 88447#E黑底水绿下摆 SPMX-20240815317750 \N \N \N 1 \N [{"file_id": "c4bb238d-e2ed-490b-bd9e-d1dedbde8afc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a776bd5a146a41fcb267b0caabc101d7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a776bd5a146a41fcb267b0caabc101d7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a776bd5a146a41fcb267b0caabc101d7.jpg", "file_size": 9185, "is_delete": false, "file_type": 1, "original_file_name": "88447#E黑底水绿下摆.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a776bd5a146a41fcb267b0caabc101d7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a776bd5a146a41fcb267b0caabc101d7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a776bd5a146a41fcb267b0caabc101d7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a776bd5a146a41fcb267b0caabc101d7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a776bd5a146a41fcb267b0caabc101d7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YZPLUzig8kXPL91nvMcbrGUS7PQ=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.335554+00 2025-12-09 10:16:10.33556+00 22493 CHS0375-2#WJC22 SPMX-20240815317763 \N \N \N 1 \N [{"file_id": "bb564956-60fd-46e8-99c0-9f9835aba67c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2506698672f54be6b9509702318ec1dd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2506698672f54be6b9509702318ec1dd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2506698672f54be6b9509702318ec1dd.jpg", "file_size": 14667, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-2#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2506698672f54be6b9509702318ec1dd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2506698672f54be6b9509702318ec1dd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2506698672f54be6b9509702318ec1dd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2506698672f54be6b9509702318ec1dd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2506698672f54be6b9509702318ec1dd.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WNrrC4om63Uk7hrETulorDed2zo=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.339449+00 2025-12-09 10:16:10.339457+00 22494 13010-1#后片净色 SPMX-20240815317757 \N \N \N 1 \N [{"file_id": "5ac39074-b189-45a3-96b1-4a306eea5811", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "be959bc69fd4469d85faef0d5cc9178b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "be959bc69fd4469d85faef0d5cc9178b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "be959bc69fd4469d85faef0d5cc9178b.jpg", "file_size": 6509, "is_delete": false, "file_type": 1, "original_file_name": "13010-1#后片净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be959bc69fd4469d85faef0d5cc9178b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be959bc69fd4469d85faef0d5cc9178b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/be959bc69fd4469d85faef0d5cc9178b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/be959bc69fd4469d85faef0d5cc9178b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/be959bc69fd4469d85faef0d5cc9178b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:QEAS7YPrT9Ey-FC0xDlh1o6W-R4=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.343393+00 2025-12-09 10:16:10.3434+00 22495 LJW006#D SPMX-20240815317766 \N \N \N 1 \N [{"file_id": "a20ace4a-9d45-445f-acc7-80fca3ff152d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0586e1fbc2c14973a9221665c685e41f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0586e1fbc2c14973a9221665c685e41f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0586e1fbc2c14973a9221665c685e41f.jpg", "file_size": 22572, "is_delete": false, "file_type": 1, "original_file_name": "LJW006#D.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0586e1fbc2c14973a9221665c685e41f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0586e1fbc2c14973a9221665c685e41f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0586e1fbc2c14973a9221665c685e41f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0586e1fbc2c14973a9221665c685e41f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0586e1fbc2c14973a9221665c685e41f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Q7FKcknkEM6jbaV8CYZoGKluijw=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.347309+00 2025-12-09 10:16:10.347316+00 22496 LJW006# SPMX-20240815317756 \N \N \N 1 \N [{"file_id": "62273805-4922-4582-aa47-786faca775e9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0469a79e93004467addb3b499225bc97.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0469a79e93004467addb3b499225bc97.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0469a79e93004467addb3b499225bc97.jpg", "file_size": 22181, "is_delete": false, "file_type": 1, "original_file_name": "LJW006#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0469a79e93004467addb3b499225bc97.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0469a79e93004467addb3b499225bc97.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0469a79e93004467addb3b499225bc97.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0469a79e93004467addb3b499225bc97.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0469a79e93004467addb3b499225bc97.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:RyQmOXeUet-TUA5NJ2SVVWbtYoI=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.351241+00 2025-12-09 10:16:10.351249+00 22497 LZ1441#上身5号色 SPMX-20240815317759 \N \N \N 1 \N [{"file_id": "63d3d96a-6169-4258-9ac2-f12bffd58459", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8d3d295a271b4813b1618bd25a9da791.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8d3d295a271b4813b1618bd25a9da791.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8d3d295a271b4813b1618bd25a9da791.jpg", "file_size": 16570, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3d295a271b4813b1618bd25a9da791.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3d295a271b4813b1618bd25a9da791.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8d3d295a271b4813b1618bd25a9da791.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8d3d295a271b4813b1618bd25a9da791.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8d3d295a271b4813b1618bd25a9da791.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:o03OzGnUihIDgUGVYUXw0Yc_ML4=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.355271+00 2025-12-09 10:16:10.355279+00 22498 JY-QC230720-P24#4号桔色 SPMX-20240815317758 \N \N \N 1 \N [{"file_id": "8c3f7462-ae81-4065-8ac6-1a197981b100", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e764a643002c4e8f974c31509972a73a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e764a643002c4e8f974c31509972a73a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e764a643002c4e8f974c31509972a73a.jpg", "file_size": 16187, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P24#4号桔色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e764a643002c4e8f974c31509972a73a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e764a643002c4e8f974c31509972a73a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e764a643002c4e8f974c31509972a73a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e764a643002c4e8f974c31509972a73a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e764a643002c4e8f974c31509972a73a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gn7_4sub2mYMy5f1EDARFXTntE4=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.359251+00 2025-12-09 10:16:10.359258+00 22499 88465FWF#咖啡色2XL SPMX-20240815317761 \N \N \N 1 \N [{"file_id": "19c120be-6044-4cb0-bbd8-35d4344f7851", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b1d9f8a6fceb4450a080a8f3561c75e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b1d9f8a6fceb4450a080a8f3561c75e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b1d9f8a6fceb4450a080a8f3561c75e1.jpg", "file_size": 19244, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#咖啡色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d9f8a6fceb4450a080a8f3561c75e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d9f8a6fceb4450a080a8f3561c75e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b1d9f8a6fceb4450a080a8f3561c75e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b1d9f8a6fceb4450a080a8f3561c75e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b1d9f8a6fceb4450a080a8f3561c75e1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Izky0LLTVCCMzkVh8y_R8X2cbrY=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.363239+00 2025-12-09 10:16:10.363247+00 22500 FX029#D浅绿底 SPMX-20240815317762 \N \N \N 1 \N [{"file_id": "6fa8e189-61a5-4aac-a063-6f498463da59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2dfd1af67c44b87a7da7a46040c5317.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2dfd1af67c44b87a7da7a46040c5317.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2dfd1af67c44b87a7da7a46040c5317.jpg", "file_size": 14284, "is_delete": false, "file_type": 1, "original_file_name": "FX029#D浅绿底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2dfd1af67c44b87a7da7a46040c5317.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2dfd1af67c44b87a7da7a46040c5317.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2dfd1af67c44b87a7da7a46040c5317.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2dfd1af67c44b87a7da7a46040c5317.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2dfd1af67c44b87a7da7a46040c5317.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XQrDJlu2-e6RjOzT_2liuAiGAQg=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.367202+00 2025-12-09 10:16:10.36721+00 22501 FX028FWE#绿VS-D3 SPMX-20240815317753 \N \N \N 1 \N [{"file_id": "d9837a2d-2ea9-49bb-9602-fe1c72ece0b6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "05a06d5734ed4aa0b4751f61b63e3e49.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "05a06d5734ed4aa0b4751f61b63e3e49.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "05a06d5734ed4aa0b4751f61b63e3e49.jpg", "file_size": 17574, "is_delete": false, "file_type": 1, "original_file_name": "FX028FWE#绿VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a06d5734ed4aa0b4751f61b63e3e49.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a06d5734ed4aa0b4751f61b63e3e49.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/05a06d5734ed4aa0b4751f61b63e3e49.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/05a06d5734ed4aa0b4751f61b63e3e49.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/05a06d5734ed4aa0b4751f61b63e3e49.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Xc20k9d0wRpkrQw8A2mUytggdG8=", "createTime": "2024-08-15 15:12:02"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.371092+00 2025-12-09 10:16:10.371098+00 22502 HXF076FW#杏 SPMX-20240815317754 \N \N \N 1 \N [{"file_id": "adce09ad-f0f8-49ac-81f2-658deec986ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d33e18a2bf374bde932ce8d13e105b7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d33e18a2bf374bde932ce8d13e105b7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d33e18a2bf374bde932ce8d13e105b7d.jpg", "file_size": 22784, "is_delete": false, "file_type": 1, "original_file_name": "HXF076FW#杏.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33e18a2bf374bde932ce8d13e105b7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33e18a2bf374bde932ce8d13e105b7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d33e18a2bf374bde932ce8d13e105b7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d33e18a2bf374bde932ce8d13e105b7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d33e18a2bf374bde932ce8d13e105b7d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ojxRiqJjKwnsTWPJPJTPKh2uOG8=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.375004+00 2025-12-09 10:16:10.37501+00 22503 243082#-01-1-XL码 SPMX-20240815317760 \N \N \N 1 \N [{"file_id": "50ce93c3-3b3e-4d69-b041-d39aff5aeb84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "490b69849ff349c68d88cdb784effc13.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "490b69849ff349c68d88cdb784effc13.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "490b69849ff349c68d88cdb784effc13.jpg", "file_size": 50429, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-1-XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490b69849ff349c68d88cdb784effc13.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490b69849ff349c68d88cdb784effc13.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/490b69849ff349c68d88cdb784effc13.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/490b69849ff349c68d88cdb784effc13.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/490b69849ff349c68d88cdb784effc13.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:z7PFo0AwuOlf1y-uUev1cl3f_UY=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.378936+00 2025-12-09 10:16:10.378944+00 22504 004FWE#女2XL-10.30 SPMX-20240815317764 \N \N \N 1 \N [{"file_id": "cef2f0cb-d3bb-49e5-89d8-e23ee810fe2e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ad8a961744541ffa5a94a98708c3624.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ad8a961744541ffa5a94a98708c3624.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ad8a961744541ffa5a94a98708c3624.jpg", "file_size": 16230, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女2XL-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad8a961744541ffa5a94a98708c3624.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad8a961744541ffa5a94a98708c3624.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ad8a961744541ffa5a94a98708c3624.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ad8a961744541ffa5a94a98708c3624.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ad8a961744541ffa5a94a98708c3624.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zef7tu1v_nsoI-rxW6d6M0ZgWXc=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.383102+00 2025-12-09 10:16:10.383112+00 22505 HXF076FW#粉 SPMX-20240815317765 \N \N \N 1 \N [{"file_id": "a1ebdd33-dd96-464c-8976-b4f4faadb7ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "420ee21f8acf441fb635cc2a8f2830f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "420ee21f8acf441fb635cc2a8f2830f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "420ee21f8acf441fb635cc2a8f2830f6.jpg", "file_size": 22599, "is_delete": false, "file_type": 1, "original_file_name": "HXF076FW#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420ee21f8acf441fb635cc2a8f2830f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420ee21f8acf441fb635cc2a8f2830f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/420ee21f8acf441fb635cc2a8f2830f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/420ee21f8acf441fb635cc2a8f2830f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/420ee21f8acf441fb635cc2a8f2830f6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:euv5hM0Z7B46MwovNdCFPGlbj_I=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.38748+00 2025-12-09 10:16:10.38749+00 22506 DN-D3081#3XL SPMX-20240815317767 \N \N \N 1 \N [{"file_id": "52446387-d792-49c7-84cd-745ca23b3490", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a03fcab7eec4f97b83b99bccc1169da.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a03fcab7eec4f97b83b99bccc1169da.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a03fcab7eec4f97b83b99bccc1169da.jpg", "file_size": 65231, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3081#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a03fcab7eec4f97b83b99bccc1169da.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a03fcab7eec4f97b83b99bccc1169da.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a03fcab7eec4f97b83b99bccc1169da.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a03fcab7eec4f97b83b99bccc1169da.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a03fcab7eec4f97b83b99bccc1169da.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:juAx6b1uTkscdkw8e9GulR6neLY=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.392019+00 2025-12-09 10:16:10.39203+00 22507 DN-D3081#2XL SPMX-20240815317755 \N \N \N 1 \N [{"file_id": "a6e40060-7999-40d2-a4e8-0f1fd9169765", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9e00e8a2c4034e3c817519ec1edda308.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9e00e8a2c4034e3c817519ec1edda308.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9e00e8a2c4034e3c817519ec1edda308.jpg", "file_size": 64092, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3081#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e00e8a2c4034e3c817519ec1edda308.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e00e8a2c4034e3c817519ec1edda308.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9e00e8a2c4034e3c817519ec1edda308.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9e00e8a2c4034e3c817519ec1edda308.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9e00e8a2c4034e3c817519ec1edda308.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Mvo5KIRvqlqvGCPKi9DtoQ9ypfg=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.396401+00 2025-12-09 10:16:10.39641+00 22508 13010-10#前片2XL SPMX-20240815317768 \N \N \N 1 \N [{"file_id": "e57240aa-c9c3-4702-8f4a-d546cbae73f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ecb7fe262f014f0fbb950054958c417b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ecb7fe262f014f0fbb950054958c417b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ecb7fe262f014f0fbb950054958c417b.jpg", "file_size": 11665, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#前片2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb7fe262f014f0fbb950054958c417b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb7fe262f014f0fbb950054958c417b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ecb7fe262f014f0fbb950054958c417b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ecb7fe262f014f0fbb950054958c417b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ecb7fe262f014f0fbb950054958c417b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qjm38g8hLXV_LMzlQBqidqYDj_Y=", "createTime": "2024-08-15 15:12:03"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.400782+00 2025-12-09 10:16:10.400789+00 22509 HXF077FW#粉VS-D3 SPMX-20240815317775 \N \N \N 1 \N [{"file_id": "29680bf0-48b5-440c-805c-ec6d360cbba4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6987ea66e3964f8ca5754b3e44ddfbc4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6987ea66e3964f8ca5754b3e44ddfbc4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6987ea66e3964f8ca5754b3e44ddfbc4.jpg", "file_size": 7676, "is_delete": false, "file_type": 1, "original_file_name": "HXF077FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6987ea66e3964f8ca5754b3e44ddfbc4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6987ea66e3964f8ca5754b3e44ddfbc4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6987ea66e3964f8ca5754b3e44ddfbc4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6987ea66e3964f8ca5754b3e44ddfbc4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6987ea66e3964f8ca5754b3e44ddfbc4.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BU6mZA8Y5MY3z9c4ZOT_XFSq0tY=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.404915+00 2025-12-09 10:16:10.404921+00 22510 004FWE#女2XL SPMX-20240815317776 \N \N \N 1 \N [{"file_id": "89704ed0-5ed2-4552-ad60-cd9fad7921ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b2fadc8365c4a60a959438e17455563.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b2fadc8365c4a60a959438e17455563.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b2fadc8365c4a60a959438e17455563.jpg", "file_size": 16334, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2fadc8365c4a60a959438e17455563.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2fadc8365c4a60a959438e17455563.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b2fadc8365c4a60a959438e17455563.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b2fadc8365c4a60a959438e17455563.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b2fadc8365c4a60a959438e17455563.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cgafhrfvhl1bfEbEUgQuIYoTA2g=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.408877+00 2025-12-09 10:16:10.408883+00 22511 FX029#D粉底 SPMX-20240815317779 \N \N \N 1 \N [{"file_id": "c950a240-6c0f-4dfd-8077-8e5442e1745e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6d63230c202246ccb6e5e70ce2e2daed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6d63230c202246ccb6e5e70ce2e2daed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6d63230c202246ccb6e5e70ce2e2daed.jpg", "file_size": 14286, "is_delete": false, "file_type": 1, "original_file_name": "FX029#D粉底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63230c202246ccb6e5e70ce2e2daed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63230c202246ccb6e5e70ce2e2daed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6d63230c202246ccb6e5e70ce2e2daed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6d63230c202246ccb6e5e70ce2e2daed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6d63230c202246ccb6e5e70ce2e2daed.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NfGANxgkDOvaXxwJ6ygZKwhy40M=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.412736+00 2025-12-09 10:16:10.412742+00 22512 LZ1441#上身号色 SPMX-20240815317771 \N \N \N 1 \N [{"file_id": "b9c857a8-41b9-4302-8c84-a1b1e89442f5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "142c38aca0724297a6c5b1ada4e233e7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "142c38aca0724297a6c5b1ada4e233e7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "142c38aca0724297a6c5b1ada4e233e7.jpg", "file_size": 16928, "is_delete": false, "file_type": 1, "original_file_name": "LZ1441#上身号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142c38aca0724297a6c5b1ada4e233e7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142c38aca0724297a6c5b1ada4e233e7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/142c38aca0724297a6c5b1ada4e233e7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/142c38aca0724297a6c5b1ada4e233e7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/142c38aca0724297a6c5b1ada4e233e7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:n2Js5ZWsbSapBD51z3piMiz86JQ=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.416516+00 2025-12-09 10:16:10.416523+00 22513 JY-QC230720-P24#5号墨绿 SPMX-20240815317769 \N \N \N 1 \N [{"file_id": "806a28d8-17e7-4c3d-a550-7eb64eecb071", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "35000ebe3cd94e2fafe53fa5557537f6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "35000ebe3cd94e2fafe53fa5557537f6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "35000ebe3cd94e2fafe53fa5557537f6.jpg", "file_size": 10411, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P24#5号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35000ebe3cd94e2fafe53fa5557537f6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35000ebe3cd94e2fafe53fa5557537f6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/35000ebe3cd94e2fafe53fa5557537f6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/35000ebe3cd94e2fafe53fa5557537f6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/35000ebe3cd94e2fafe53fa5557537f6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PWZ1DD5mQndvh6-O8T-0PFMApog=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.420224+00 2025-12-09 10:16:10.420231+00 22514 243082#-01-2-2XL码 SPMX-20240815317773 \N \N \N 1 \N [{"file_id": "1ec58a51-fb21-4bfc-9eda-7b2ba0a3a154", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "edba487523af47bdaf1d804b5991f9a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "edba487523af47bdaf1d804b5991f9a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "edba487523af47bdaf1d804b5991f9a7.jpg", "file_size": 45978, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edba487523af47bdaf1d804b5991f9a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edba487523af47bdaf1d804b5991f9a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/edba487523af47bdaf1d804b5991f9a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/edba487523af47bdaf1d804b5991f9a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/edba487523af47bdaf1d804b5991f9a7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qZG1VjvNwF3IRklpwBEFajFOH9o=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.424094+00 2025-12-09 10:16:10.4241+00 22515 CHS0375-20#WJC22 SPMX-20240815317770 \N \N \N 1 \N [{"file_id": "3b51624f-4bf7-432f-914f-1eab8a4418ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6e87f284922d4b2b913a7b572969ad18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6e87f284922d4b2b913a7b572969ad18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6e87f284922d4b2b913a7b572969ad18.jpg", "file_size": 19063, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-20#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e87f284922d4b2b913a7b572969ad18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e87f284922d4b2b913a7b572969ad18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6e87f284922d4b2b913a7b572969ad18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6e87f284922d4b2b913a7b572969ad18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6e87f284922d4b2b913a7b572969ad18.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jFNkfwtbyvcbCF8du2rktkkLAss=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.429173+00 2025-12-09 10:16:10.429179+00 22516 88465FWF#咖啡色L SPMX-20240815317774 \N \N \N 1 \N [{"file_id": "80c17f16-d0f3-4eec-a2af-5add71d2f713", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d451b3e5db154067ba5b5e16d9f2780d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d451b3e5db154067ba5b5e16d9f2780d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d451b3e5db154067ba5b5e16d9f2780d.jpg", "file_size": 18317, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#咖啡色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d451b3e5db154067ba5b5e16d9f2780d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d451b3e5db154067ba5b5e16d9f2780d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d451b3e5db154067ba5b5e16d9f2780d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d451b3e5db154067ba5b5e16d9f2780d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d451b3e5db154067ba5b5e16d9f2780d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3W__mTtq-AmerjtzwgRaINqSBaI=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.43492+00 2025-12-09 10:16:10.434927+00 22517 DN-D3081#L SPMX-20240815317777 \N \N \N 1 \N [{"file_id": "cacbd367-fb30-4367-a844-26da8ace1c8d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6a6ad8d428b74c9099a297a7f9c3638f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6a6ad8d428b74c9099a297a7f9c3638f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6a6ad8d428b74c9099a297a7f9c3638f.jpg", "file_size": 68949, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3081#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ad8d428b74c9099a297a7f9c3638f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ad8d428b74c9099a297a7f9c3638f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6a6ad8d428b74c9099a297a7f9c3638f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6a6ad8d428b74c9099a297a7f9c3638f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6a6ad8d428b74c9099a297a7f9c3638f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bdUWaa_U292wyUjimQrXExuKelY=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.439859+00 2025-12-09 10:16:10.439865+00 22518 LJW006#VS-D3 SPMX-20240815317778 \N \N \N 1 \N [{"file_id": "2698e758-0dc3-436f-8d0b-ad9e684a8bbf", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9b2756929ac041748b9976c4427f5c10.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9b2756929ac041748b9976c4427f5c10.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9b2756929ac041748b9976c4427f5c10.jpg", "file_size": 13701, "is_delete": false, "file_type": 1, "original_file_name": "LJW006#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2756929ac041748b9976c4427f5c10.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2756929ac041748b9976c4427f5c10.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9b2756929ac041748b9976c4427f5c10.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9b2756929ac041748b9976c4427f5c10.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9b2756929ac041748b9976c4427f5c10.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fHkbeGEN4J2zXzpltBkqmrFOw8Q=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.443787+00 2025-12-09 10:16:10.443794+00 22519 13010-10#前片L SPMX-20240815317772 \N \N \N 1 \N [{"file_id": "7c7ac799-c565-44fe-8939-30ce48ead0de", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "12df07bbe93d47879a9f4e94c764eab4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "12df07bbe93d47879a9f4e94c764eab4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "12df07bbe93d47879a9f4e94c764eab4.jpg", "file_size": 11036, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#前片L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12df07bbe93d47879a9f4e94c764eab4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12df07bbe93d47879a9f4e94c764eab4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/12df07bbe93d47879a9f4e94c764eab4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/12df07bbe93d47879a9f4e94c764eab4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/12df07bbe93d47879a9f4e94c764eab4.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GFiODaVIK4LQJgWuU4cEApF-vSQ=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.447626+00 2025-12-09 10:16:10.447634+00 22520 CHS0375-21#WJC22 SPMX-20240815317781 \N \N \N 1 \N [{"file_id": "3723603b-be08-4728-a48c-3e14d41f12ba", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b56cff7196a84ab1b86b1a96369efdc6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b56cff7196a84ab1b86b1a96369efdc6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b56cff7196a84ab1b86b1a96369efdc6.jpg", "file_size": 16227, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-21#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cff7196a84ab1b86b1a96369efdc6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cff7196a84ab1b86b1a96369efdc6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b56cff7196a84ab1b86b1a96369efdc6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b56cff7196a84ab1b86b1a96369efdc6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b56cff7196a84ab1b86b1a96369efdc6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t4i0WMjtzzDqulsEteBbdRWcH60=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.451263+00 2025-12-09 10:16:10.451269+00 22521 LZ1442#上身1号色 SPMX-20240815317783 \N \N \N 1 \N [{"file_id": "d1d8d6e9-5fcf-49e1-a604-5899569b4921", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21bd7a82951a4e979d84473fa992b81d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21bd7a82951a4e979d84473fa992b81d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21bd7a82951a4e979d84473fa992b81d.jpg", "file_size": 15420, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#上身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bd7a82951a4e979d84473fa992b81d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bd7a82951a4e979d84473fa992b81d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21bd7a82951a4e979d84473fa992b81d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21bd7a82951a4e979d84473fa992b81d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21bd7a82951a4e979d84473fa992b81d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vRB0OUf5jpSYHMRYONIbNxh5iMc=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.454966+00 2025-12-09 10:16:10.454973+00 22522 CHS0375-22#WJC22 SPMX-20240815317792 \N \N \N 1 \N [{"file_id": "2d3d692f-4073-41c9-b675-edbbda31b611", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg", "file_size": 16229, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-22#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0f8b0d944cbc4eaeb41a6dcefe037ab1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:PDNMeXk-6PCnRxZuQk3sOrkM474=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.458656+00 2025-12-09 10:16:10.458663+00 22523 13010-10#前片M SPMX-20240815317782 \N \N \N 1 \N [{"file_id": "eda3b395-d2fd-4426-8f9f-9b5f02d6c83f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3002a9ff82934ac0bffdd3468cd6c637.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3002a9ff82934ac0bffdd3468cd6c637.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3002a9ff82934ac0bffdd3468cd6c637.jpg", "file_size": 13141, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#前片M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3002a9ff82934ac0bffdd3468cd6c637.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3002a9ff82934ac0bffdd3468cd6c637.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3002a9ff82934ac0bffdd3468cd6c637.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3002a9ff82934ac0bffdd3468cd6c637.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3002a9ff82934ac0bffdd3468cd6c637.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0lTN10fEi68PctPzBENOvtdWOps=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.462281+00 2025-12-09 10:16:10.462288+00 22524 243082#-01-2-3XL码 SPMX-20240815317784 \N \N \N 1 \N [{"file_id": "10aa4345-836c-4f42-9b9e-aead1448e522", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "325dd265d87b46cca48c99acf83f53b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "325dd265d87b46cca48c99acf83f53b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "325dd265d87b46cca48c99acf83f53b6.jpg", "file_size": 43664, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325dd265d87b46cca48c99acf83f53b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325dd265d87b46cca48c99acf83f53b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/325dd265d87b46cca48c99acf83f53b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/325dd265d87b46cca48c99acf83f53b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/325dd265d87b46cca48c99acf83f53b6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:F2z547FS2Azb8Ex4_R6-qcbEcP8=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.466454+00 2025-12-09 10:16:10.466461+00 22525 88465FWF#咖啡色M SPMX-20240815317785 \N \N \N 1 \N [{"file_id": "d2bd24c2-7a11-4f4f-8c82-6738aba40746", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "eeecdb3eed6f41899c273a9987869dd7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "eeecdb3eed6f41899c273a9987869dd7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "eeecdb3eed6f41899c273a9987869dd7.jpg", "file_size": 18306, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#咖啡色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeecdb3eed6f41899c273a9987869dd7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeecdb3eed6f41899c273a9987869dd7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/eeecdb3eed6f41899c273a9987869dd7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/eeecdb3eed6f41899c273a9987869dd7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/eeecdb3eed6f41899c273a9987869dd7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XNespe48Ma79-zqXG8Q72VrlRuI=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.470374+00 2025-12-09 10:16:10.470381+00 22526 LJW006#黑VS-D3 SPMX-20240815317791 \N \N \N 1 \N [{"file_id": "a2cadfa1-5323-44be-ab32-ddb87e55d3fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ecd9edb39914ed9a476b45eff1d551b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ecd9edb39914ed9a476b45eff1d551b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ecd9edb39914ed9a476b45eff1d551b.jpg", "file_size": 14344, "is_delete": false, "file_type": 1, "original_file_name": "LJW006#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecd9edb39914ed9a476b45eff1d551b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecd9edb39914ed9a476b45eff1d551b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ecd9edb39914ed9a476b45eff1d551b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ecd9edb39914ed9a476b45eff1d551b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ecd9edb39914ed9a476b45eff1d551b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1jVp-8tE_9iot8b6Z186AOgk26s=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.474374+00 2025-12-09 10:16:10.474382+00 22527 13010-10#前片S SPMX-20240815317795 \N \N \N 1 \N [{"file_id": "0a912a22-dd4b-462a-bc77-bc68b0f496ca", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1c49ec6307a14e5797eda75870f3b9c5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1c49ec6307a14e5797eda75870f3b9c5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1c49ec6307a14e5797eda75870f3b9c5.jpg", "file_size": 12575, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#前片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c49ec6307a14e5797eda75870f3b9c5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c49ec6307a14e5797eda75870f3b9c5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1c49ec6307a14e5797eda75870f3b9c5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1c49ec6307a14e5797eda75870f3b9c5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1c49ec6307a14e5797eda75870f3b9c5.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:f3-maAgcY2S_nhISlzFxN0Uqjqs=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.478345+00 2025-12-09 10:16:10.478352+00 22528 DN-D3081#M SPMX-20240815317788 \N \N \N 1 \N [{"file_id": "14b8e6d7-2f1f-4410-b916-4e920fbde132", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "938d1d8301f74da2864f0cb7c360b6fc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "938d1d8301f74da2864f0cb7c360b6fc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "938d1d8301f74da2864f0cb7c360b6fc.jpg", "file_size": 73067, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3081#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938d1d8301f74da2864f0cb7c360b6fc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938d1d8301f74da2864f0cb7c360b6fc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/938d1d8301f74da2864f0cb7c360b6fc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/938d1d8301f74da2864f0cb7c360b6fc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/938d1d8301f74da2864f0cb7c360b6fc.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:aA5fxg_o9fhLgz-kHpBCnAUZrp4=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.482332+00 2025-12-09 10:16:10.482338+00 22529 243082#-01-3-2XL码 SPMX-20240815317796 \N \N \N 1 \N [{"file_id": "fd78f4c4-5c81-4c83-83bf-e54279572349", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "21a58cf10e294ca180d5636dc2219b2b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "21a58cf10e294ca180d5636dc2219b2b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "21a58cf10e294ca180d5636dc2219b2b.jpg", "file_size": 43653, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a58cf10e294ca180d5636dc2219b2b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a58cf10e294ca180d5636dc2219b2b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/21a58cf10e294ca180d5636dc2219b2b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/21a58cf10e294ca180d5636dc2219b2b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/21a58cf10e294ca180d5636dc2219b2b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ImFUUiXETrkTxcAuQuHKKvq8cC4=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.486269+00 2025-12-09 10:16:10.486276+00 22530 LZ1442#上身2号色 SPMX-20240815317794 \N \N \N 1 \N [{"file_id": "e41bd0e6-ebe0-485a-ac60-cb6f8bfdc533", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e37f9a276f5c45869aca397994b05add.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e37f9a276f5c45869aca397994b05add.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e37f9a276f5c45869aca397994b05add.jpg", "file_size": 15678, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#上身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37f9a276f5c45869aca397994b05add.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37f9a276f5c45869aca397994b05add.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e37f9a276f5c45869aca397994b05add.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e37f9a276f5c45869aca397994b05add.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e37f9a276f5c45869aca397994b05add.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oBnu5NqJA060wvs6lSdYibH6lLI=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.490274+00 2025-12-09 10:16:10.490282+00 22531 JY-QC230720-P24#6号白色 SPMX-20240815317780 \N \N \N 1 \N [{"file_id": "74dc2f3a-debe-4622-9888-e99d6569e7b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c4b17c7e07d34f2c89ae430ac6f037b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c4b17c7e07d34f2c89ae430ac6f037b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c4b17c7e07d34f2c89ae430ac6f037b6.jpg", "file_size": 16742, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P24#6号白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b17c7e07d34f2c89ae430ac6f037b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b17c7e07d34f2c89ae430ac6f037b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c4b17c7e07d34f2c89ae430ac6f037b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c4b17c7e07d34f2c89ae430ac6f037b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c4b17c7e07d34f2c89ae430ac6f037b6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5m3f23JXa48tvbtXn2ylxFPC78w=", "createTime": "2024-08-15 15:12:05"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.494268+00 2025-12-09 10:16:10.494275+00 22532 JY-QC230720-P24#7号黑色 SPMX-20240815317793 \N \N \N 1 \N [{"file_id": "3dd1dd43-6bc3-4097-860d-d9feac92bd30", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "457b9fae7bb3406fa9eece0fea950340.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "457b9fae7bb3406fa9eece0fea950340.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "457b9fae7bb3406fa9eece0fea950340.jpg", "file_size": 17647, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230720-P24#7号黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457b9fae7bb3406fa9eece0fea950340.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457b9fae7bb3406fa9eece0fea950340.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/457b9fae7bb3406fa9eece0fea950340.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/457b9fae7bb3406fa9eece0fea950340.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/457b9fae7bb3406fa9eece0fea950340.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ev5UAbnw6uSFxt1LVEu4Z5M6ivY=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.498223+00 2025-12-09 10:16:10.498231+00 22533 HXF077FW#蓝VS-D3 SPMX-20240815317786 \N \N \N 1 \N [{"file_id": "c16a415d-5c63-4041-8070-b9d47d01688b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f12a66618bea46c2a1e20b7f3a055229.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f12a66618bea46c2a1e20b7f3a055229.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f12a66618bea46c2a1e20b7f3a055229.jpg", "file_size": 8347, "is_delete": false, "file_type": 1, "original_file_name": "HXF077FW#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a66618bea46c2a1e20b7f3a055229.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a66618bea46c2a1e20b7f3a055229.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f12a66618bea46c2a1e20b7f3a055229.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f12a66618bea46c2a1e20b7f3a055229.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f12a66618bea46c2a1e20b7f3a055229.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i28VTM0SHhcilxKA256jDfOUEKQ=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.501861+00 2025-12-09 10:16:10.501868+00 22534 FX029#D紫底 SPMX-20240815317790 \N \N \N 1 \N [{"file_id": "e1c5cdbc-7d70-4418-ae45-886c2fb5f5d8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "65d2f5e53b6e4c9b8f56a659cf47a12c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "65d2f5e53b6e4c9b8f56a659cf47a12c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "65d2f5e53b6e4c9b8f56a659cf47a12c.jpg", "file_size": 15746, "is_delete": false, "file_type": 1, "original_file_name": "FX029#D紫底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d2f5e53b6e4c9b8f56a659cf47a12c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d2f5e53b6e4c9b8f56a659cf47a12c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/65d2f5e53b6e4c9b8f56a659cf47a12c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/65d2f5e53b6e4c9b8f56a659cf47a12c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/65d2f5e53b6e4c9b8f56a659cf47a12c.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MI0rd2AeX0A8oB39nFGZ2bmWVRY=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.505659+00 2025-12-09 10:16:10.50567+00 22535 004FWE#女3XL+女2XL-11.19 SPMX-20240815317787 \N \N \N 1 \N [{"file_id": "c43d4172-37a6-4263-a9a1-eb0683f8a5ac", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "388c124cd8224a58a2256cf87a18b2c0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "388c124cd8224a58a2256cf87a18b2c0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "388c124cd8224a58a2256cf87a18b2c0.jpg", "file_size": 17376, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女3XL+女2XL-11.19.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388c124cd8224a58a2256cf87a18b2c0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388c124cd8224a58a2256cf87a18b2c0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/388c124cd8224a58a2256cf87a18b2c0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/388c124cd8224a58a2256cf87a18b2c0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/388c124cd8224a58a2256cf87a18b2c0.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rHMS4_5Q_fMFjNypcctbOdQPJO0=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.509468+00 2025-12-09 10:16:10.509475+00 22536 004FWE#女3XL-10.30 SPMX-20240815317798 \N \N \N 1 \N [{"file_id": "df28072b-018f-40e9-9a7f-d6583f825b98", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7f42611c5f694431a43975d1cce42366.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7f42611c5f694431a43975d1cce42366.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7f42611c5f694431a43975d1cce42366.jpg", "file_size": 16907, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女3XL-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42611c5f694431a43975d1cce42366.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42611c5f694431a43975d1cce42366.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7f42611c5f694431a43975d1cce42366.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7f42611c5f694431a43975d1cce42366.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7f42611c5f694431a43975d1cce42366.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:K0tZv4i6QFMZAc1-gpn3tmekn84=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.513174+00 2025-12-09 10:16:10.51318+00 22537 HXF078FW#白VS-D3 SPMX-20240815317803 \N \N \N 1 \N [{"file_id": "65d979be-717a-474c-a19e-5aef3b07076d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0c909bccd4246f68b6935503625976e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0c909bccd4246f68b6935503625976e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0c909bccd4246f68b6935503625976e.jpg", "file_size": 19035, "is_delete": false, "file_type": 1, "original_file_name": "HXF078FW#白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0c909bccd4246f68b6935503625976e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0c909bccd4246f68b6935503625976e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0c909bccd4246f68b6935503625976e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0c909bccd4246f68b6935503625976e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0c909bccd4246f68b6935503625976e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88-DvCD90BGL8Bg13DgUWbLXYZ0=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.516925+00 2025-12-09 10:16:10.516932+00 22538 CHS0375-24#WJC22 SPMX-20240815317812 \N \N \N 1 \N [{"file_id": "fd6c587a-c079-44d4-8930-3dfe7113a908", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c86ef7aa28cf46e392f141cb24658fb4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c86ef7aa28cf46e392f141cb24658fb4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c86ef7aa28cf46e392f141cb24658fb4.jpg", "file_size": 12219, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-24#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ef7aa28cf46e392f141cb24658fb4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ef7aa28cf46e392f141cb24658fb4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c86ef7aa28cf46e392f141cb24658fb4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c86ef7aa28cf46e392f141cb24658fb4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c86ef7aa28cf46e392f141cb24658fb4.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:depRB9zNG506TPFDda_L-I6kURg=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.520649+00 2025-12-09 10:16:10.520655+00 22539 LZ1442#上身3号色 SPMX-20240815317804 \N \N \N 1 \N [{"file_id": "fa00b0fc-d779-4267-aa97-3e9af4a01a32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba263d9d9a0742808445160cc66cf951.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba263d9d9a0742808445160cc66cf951.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba263d9d9a0742808445160cc66cf951.jpg", "file_size": 14472, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#上身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba263d9d9a0742808445160cc66cf951.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba263d9d9a0742808445160cc66cf951.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba263d9d9a0742808445160cc66cf951.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba263d9d9a0742808445160cc66cf951.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba263d9d9a0742808445160cc66cf951.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2LaI-FUh7uddcqcsDU4O-UBugL8=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.524331+00 2025-12-09 10:16:10.524337+00 22540 004FWE#女3XL SPMX-20240815317809 \N \N \N 1 \N [{"file_id": "72b4e9c5-6619-485c-b923-2c64583a7f55", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "09aeb9f591e442179b951c6bd3eefabe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "09aeb9f591e442179b951c6bd3eefabe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "09aeb9f591e442179b951c6bd3eefabe.jpg", "file_size": 16886, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09aeb9f591e442179b951c6bd3eefabe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09aeb9f591e442179b951c6bd3eefabe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/09aeb9f591e442179b951c6bd3eefabe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/09aeb9f591e442179b951c6bd3eefabe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/09aeb9f591e442179b951c6bd3eefabe.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zryvQ10H9mY9LT5BlMM1lg7bzKk=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.528029+00 2025-12-09 10:16:10.528036+00 22541 88465FWF#彩蓝2XL SPMX-20240815317808 \N \N \N 1 \N [{"file_id": "397da0af-5dd9-417e-a5ad-57665a298507", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "24006e613ab74bf58c1fc92060610ce7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "24006e613ab74bf58c1fc92060610ce7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "24006e613ab74bf58c1fc92060610ce7.jpg", "file_size": 22450, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#彩蓝2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24006e613ab74bf58c1fc92060610ce7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24006e613ab74bf58c1fc92060610ce7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/24006e613ab74bf58c1fc92060610ce7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/24006e613ab74bf58c1fc92060610ce7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/24006e613ab74bf58c1fc92060610ce7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:md03jsY5coU14KPe4D3_17GRvVc=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.531744+00 2025-12-09 10:16:10.531751+00 22542 88465FWF#咖啡色XL SPMX-20240815317797 \N \N \N 1 \N [{"file_id": "b6cc88b1-3838-4f79-b82b-2f800a0c2373", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ed50ca1ffab2490f9750df4e2952568d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ed50ca1ffab2490f9750df4e2952568d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ed50ca1ffab2490f9750df4e2952568d.jpg", "file_size": 18621, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#咖啡色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed50ca1ffab2490f9750df4e2952568d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed50ca1ffab2490f9750df4e2952568d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ed50ca1ffab2490f9750df4e2952568d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ed50ca1ffab2490f9750df4e2952568d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ed50ca1ffab2490f9750df4e2952568d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0N8VujrZSwz-yfbFkp8LPvMsdTQ=", "createTime": "2024-08-15 15:12:06"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.535518+00 2025-12-09 10:16:10.535524+00 22543 FX029#D蓝底 SPMX-20240815317801 \N \N \N 1 \N [{"file_id": "7988000a-3907-45d5-bbd4-22c31fb7dcd7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a40ac5530a8b45d9bf170b574185c55d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a40ac5530a8b45d9bf170b574185c55d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a40ac5530a8b45d9bf170b574185c55d.jpg", "file_size": 16363, "is_delete": false, "file_type": 1, "original_file_name": "FX029#D蓝底.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ac5530a8b45d9bf170b574185c55d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ac5530a8b45d9bf170b574185c55d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a40ac5530a8b45d9bf170b574185c55d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a40ac5530a8b45d9bf170b574185c55d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a40ac5530a8b45d9bf170b574185c55d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vAGoLLDooz-pBQNSSKUSG3bQyrs=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.539222+00 2025-12-09 10:16:10.539229+00 22544 JY-QC230820-P30#1号黑白 SPMX-20240815317805 \N \N \N 1 \N [{"file_id": "d95af523-433d-4697-a664-26425e58aa7e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a971d539a164d198e6b00dd7f956a43.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a971d539a164d198e6b00dd7f956a43.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a971d539a164d198e6b00dd7f956a43.jpg", "file_size": 27960, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230820-P30#1号黑白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a971d539a164d198e6b00dd7f956a43.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a971d539a164d198e6b00dd7f956a43.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a971d539a164d198e6b00dd7f956a43.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a971d539a164d198e6b00dd7f956a43.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a971d539a164d198e6b00dd7f956a43.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jNgjUuHtUcsb9JVwJ4627-JEIjs=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.542983+00 2025-12-09 10:16:10.54299+00 22545 LJW006FW#VS-D3白 SPMX-20240815317810 \N \N \N 1 \N [{"file_id": "d19ba2f5-b406-44e0-9ab0-40c271bfa6fe", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f0d50c1098a94bbc963775df45854893.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f0d50c1098a94bbc963775df45854893.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f0d50c1098a94bbc963775df45854893.jpg", "file_size": 20886, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d50c1098a94bbc963775df45854893.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d50c1098a94bbc963775df45854893.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f0d50c1098a94bbc963775df45854893.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f0d50c1098a94bbc963775df45854893.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f0d50c1098a94bbc963775df45854893.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8ilvBaC3OrHX9vhvvPdfYLocPFo=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.546643+00 2025-12-09 10:16:10.54665+00 22546 13010-10#前片XL SPMX-20240815317806 \N \N \N 1 \N [{"file_id": "03c605a7-3d8b-4736-bbe0-287c9770c96b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3ceff225f8d43daae252648e26286a3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3ceff225f8d43daae252648e26286a3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3ceff225f8d43daae252648e26286a3.jpg", "file_size": 11516, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#前片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ceff225f8d43daae252648e26286a3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ceff225f8d43daae252648e26286a3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3ceff225f8d43daae252648e26286a3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3ceff225f8d43daae252648e26286a3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3ceff225f8d43daae252648e26286a3.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KtSOfj91L_cdOt5ayg3StpuCds=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.550457+00 2025-12-09 10:16:10.550464+00 22547 DN-D3081#XL SPMX-20240815317799 \N \N \N 1 \N [{"file_id": "31815b14-360f-4926-9b38-675e0e8ea631", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg", "file_size": 65970, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3081#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/37c9fc0f6e2c4bd49aa9b270e8fd007e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:htmr9xM0KkdwF3hStu1pX39i1cI=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.554375+00 2025-12-09 10:16:10.554383+00 22548 LJW006FW#VS-D3 SPMX-20240815317800 \N \N \N 1 \N [{"file_id": "2b834cef-8e45-4964-b0e3-78dbab55baff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c11692cfcdd94bc399a2ff3a84aeb8f0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c11692cfcdd94bc399a2ff3a84aeb8f0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c11692cfcdd94bc399a2ff3a84aeb8f0.jpg", "file_size": 20981, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11692cfcdd94bc399a2ff3a84aeb8f0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11692cfcdd94bc399a2ff3a84aeb8f0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c11692cfcdd94bc399a2ff3a84aeb8f0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c11692cfcdd94bc399a2ff3a84aeb8f0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c11692cfcdd94bc399a2ff3a84aeb8f0.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:I0X0X2fzEZQizbJtxNPZpvr3ics=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.558356+00 2025-12-09 10:16:10.558363+00 22549 243082#-01-3-3XL码 SPMX-20240815317807 \N \N \N 1 \N [{"file_id": "8a4f0b38-0f25-4bf6-9f98-4b686a623544", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "42644af1f9a9469da8237a0b6a29b0b7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "42644af1f9a9469da8237a0b6a29b0b7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "42644af1f9a9469da8237a0b6a29b0b7.jpg", "file_size": 44095, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42644af1f9a9469da8237a0b6a29b0b7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42644af1f9a9469da8237a0b6a29b0b7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/42644af1f9a9469da8237a0b6a29b0b7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/42644af1f9a9469da8237a0b6a29b0b7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/42644af1f9a9469da8237a0b6a29b0b7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YYyh0RtpdTs6eeWfFNI321uo9nE=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.562193+00 2025-12-09 10:16:10.5622+00 22550 CHS0375-23#WJC22 SPMX-20240815317802 \N \N \N 1 \N [{"file_id": "1620f2f2-821b-49d7-a6db-7da8b6d047c1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2ca54d202f54429984b40102ebef8d0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2ca54d202f54429984b40102ebef8d0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2ca54d202f54429984b40102ebef8d0e.jpg", "file_size": 13438, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-23#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca54d202f54429984b40102ebef8d0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca54d202f54429984b40102ebef8d0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2ca54d202f54429984b40102ebef8d0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2ca54d202f54429984b40102ebef8d0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2ca54d202f54429984b40102ebef8d0e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A6B7v2knWkM29shr4cBS1G-U-bo=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.565962+00 2025-12-09 10:16:10.565969+00 22551 DN-D3082#2XL SPMX-20240815317811 \N \N \N 1 \N [{"file_id": "ad55ab61-f956-49ae-bfb8-9dc1cdc1dbd2", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5da177572e4f4b96920e6380bb950f8e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5da177572e4f4b96920e6380bb950f8e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5da177572e4f4b96920e6380bb950f8e.jpg", "file_size": 46326, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3082#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da177572e4f4b96920e6380bb950f8e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da177572e4f4b96920e6380bb950f8e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5da177572e4f4b96920e6380bb950f8e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5da177572e4f4b96920e6380bb950f8e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5da177572e4f4b96920e6380bb950f8e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eqpR6fVvPWV-dbIpEBDL4vT57tg=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.569729+00 2025-12-09 10:16:10.569735+00 22552 HXF079FW#粉VS-D3 SPMX-20240815317814 \N \N \N 1 \N [{"file_id": "e1caa0ed-63d7-46a7-9acd-57222c2f7051", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "086f97227bc84e729e677bebb08beef9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "086f97227bc84e729e677bebb08beef9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "086f97227bc84e729e677bebb08beef9.jpg", "file_size": 19319, "is_delete": false, "file_type": 1, "original_file_name": "HXF079FW#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f97227bc84e729e677bebb08beef9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f97227bc84e729e677bebb08beef9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/086f97227bc84e729e677bebb08beef9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/086f97227bc84e729e677bebb08beef9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/086f97227bc84e729e677bebb08beef9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:4iyiQHAm5LNLwkHJt1Yb3L_hEVs=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.57341+00 2025-12-09 10:16:10.573417+00 22553 LZ1442#上身4号色 SPMX-20240815317815 \N \N \N 1 \N [{"file_id": "92c34bf3-c47f-4a6b-a100-09e7ce5e1f48", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "882cabf1fdf0440aba88dd22e0b62e3a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "882cabf1fdf0440aba88dd22e0b62e3a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "882cabf1fdf0440aba88dd22e0b62e3a.jpg", "file_size": 16130, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#上身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882cabf1fdf0440aba88dd22e0b62e3a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882cabf1fdf0440aba88dd22e0b62e3a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/882cabf1fdf0440aba88dd22e0b62e3a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/882cabf1fdf0440aba88dd22e0b62e3a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/882cabf1fdf0440aba88dd22e0b62e3a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FGt5AM7YaF3qbFwdPZ0Vx-nyzAk=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.577048+00 2025-12-09 10:16:10.577054+00 22554 CHS0375-25#条子 SPMX-20240815317823 \N \N \N 1 \N [{"file_id": "6be7e45c-7a21-49af-8339-197779ed4670", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "58b11b45ea18446c875ce8e0d8c9359c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "58b11b45ea18446c875ce8e0d8c9359c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "58b11b45ea18446c875ce8e0d8c9359c.jpg", "file_size": 12099, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-25#条子.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b11b45ea18446c875ce8e0d8c9359c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b11b45ea18446c875ce8e0d8c9359c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/58b11b45ea18446c875ce8e0d8c9359c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/58b11b45ea18446c875ce8e0d8c9359c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/58b11b45ea18446c875ce8e0d8c9359c.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:sv80ma-OKB-GIMuJ-bHG03fdU0g=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.580822+00 2025-12-09 10:16:10.580828+00 22555 LZ1442#下身1号色 SPMX-20240815317824 \N \N \N 1 \N [{"file_id": "b9d02e01-ca54-4754-b888-882c4ce1ae84", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ace0c3eb6ca54764b7f04038aa19f2a6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ace0c3eb6ca54764b7f04038aa19f2a6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ace0c3eb6ca54764b7f04038aa19f2a6.jpg", "file_size": 15379, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#下身1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace0c3eb6ca54764b7f04038aa19f2a6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace0c3eb6ca54764b7f04038aa19f2a6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ace0c3eb6ca54764b7f04038aa19f2a6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ace0c3eb6ca54764b7f04038aa19f2a6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ace0c3eb6ca54764b7f04038aa19f2a6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:grxlqju3GCCq4yMNlJuLw6rTHgQ=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.584515+00 2025-12-09 10:16:10.584521+00 22556 FX029#VS-D3 SPMX-20240815317813 \N \N \N 1 \N [{"file_id": "c1c4192d-8436-4685-98cc-a8ed6ac24910", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01965f1852be42f5a2e48c821b609567.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01965f1852be42f5a2e48c821b609567.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01965f1852be42f5a2e48c821b609567.jpg", "file_size": 29038, "is_delete": false, "file_type": 1, "original_file_name": "FX029#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01965f1852be42f5a2e48c821b609567.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01965f1852be42f5a2e48c821b609567.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01965f1852be42f5a2e48c821b609567.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01965f1852be42f5a2e48c821b609567.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01965f1852be42f5a2e48c821b609567.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:q_wFavHKv6qu58Ox0AY4IOOUP6w=", "createTime": "2024-08-15 15:12:07"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.588438+00 2025-12-09 10:16:10.588445+00 22557 004FWE#女L-10.30 SPMX-20240815317820 \N \N \N 1 \N [{"file_id": "b32574d1-6402-4209-9709-43d085d0d903", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "87b9ea7331f24664938f483d75c39ffc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "87b9ea7331f24664938f483d75c39ffc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "87b9ea7331f24664938f483d75c39ffc.jpg", "file_size": 15401, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女L-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9ea7331f24664938f483d75c39ffc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9ea7331f24664938f483d75c39ffc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/87b9ea7331f24664938f483d75c39ffc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/87b9ea7331f24664938f483d75c39ffc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/87b9ea7331f24664938f483d75c39ffc.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:OrZ0lFbbjN-6Fo-hZyKIeChRBsU=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.592296+00 2025-12-09 10:16:10.592304+00 22558 LJW006FW#VS-D3红 SPMX-20240815317821 \N \N \N 1 \N [{"file_id": "e94d29a3-c20b-465d-9072-f723e1da6b58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f738f9e7e0a48ed904f04b1e367ee45.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f738f9e7e0a48ed904f04b1e367ee45.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f738f9e7e0a48ed904f04b1e367ee45.jpg", "file_size": 20886, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f738f9e7e0a48ed904f04b1e367ee45.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f738f9e7e0a48ed904f04b1e367ee45.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f738f9e7e0a48ed904f04b1e367ee45.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f738f9e7e0a48ed904f04b1e367ee45.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f738f9e7e0a48ed904f04b1e367ee45.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:DzTYV8IE3_4dvvs3O0PwfLF2QOw=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.596068+00 2025-12-09 10:16:10.596074+00 22559 DN-D3082#3XL SPMX-20240815317822 \N \N \N 1 \N [{"file_id": "9b2100ad-2e77-42e7-974e-67f334684f25", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6c803a021ea442c9a2b6af283fddc530.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6c803a021ea442c9a2b6af283fddc530.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6c803a021ea442c9a2b6af283fddc530.jpg", "file_size": 45716, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3082#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c803a021ea442c9a2b6af283fddc530.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c803a021ea442c9a2b6af283fddc530.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6c803a021ea442c9a2b6af283fddc530.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6c803a021ea442c9a2b6af283fddc530.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6c803a021ea442c9a2b6af283fddc530.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7eaqTfHqoTQ48YXl0rUYUa_5JsU=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.599826+00 2025-12-09 10:16:10.599833+00 22560 243082#-01-4-2XL码 SPMX-20240815317818 \N \N \N 1 \N [{"file_id": "f7fcedf8-f461-4f9c-b412-5744843c811c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "338eeeaab8a642858493fe27965eeafd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "338eeeaab8a642858493fe27965eeafd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "338eeeaab8a642858493fe27965eeafd.jpg", "file_size": 52758, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-4-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338eeeaab8a642858493fe27965eeafd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338eeeaab8a642858493fe27965eeafd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/338eeeaab8a642858493fe27965eeafd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/338eeeaab8a642858493fe27965eeafd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/338eeeaab8a642858493fe27965eeafd.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HfmH-5Zpc_uJttXWaXJlP5SqdrY=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.603742+00 2025-12-09 10:16:10.60375+00 22561 JY-QC230820-P30#2号黑 SPMX-20240815317816 \N \N \N 1 \N [{"file_id": "9c1e180f-1b96-423a-9de4-9c5828e8a4b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg", "file_size": 28548, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230820-P30#2号黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ac63f6a08dab4f9bb1b5c186ebaa01b9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:SDOzF-_dK0uCiWo07dwVNc1PpTA=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.607551+00 2025-12-09 10:16:10.607556+00 22562 HXF080FW#粉色 VS-D3 SPMX-20240815317825 \N \N \N 1 \N [{"file_id": "98a94440-db0c-496b-9ee6-b58f734e6572", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b541775e46f247b6b9b4caa76720fdd0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b541775e46f247b6b9b4caa76720fdd0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b541775e46f247b6b9b4caa76720fdd0.jpg", "file_size": 17818, "is_delete": false, "file_type": 1, "original_file_name": "HXF080FW#粉色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b541775e46f247b6b9b4caa76720fdd0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b541775e46f247b6b9b4caa76720fdd0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b541775e46f247b6b9b4caa76720fdd0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b541775e46f247b6b9b4caa76720fdd0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b541775e46f247b6b9b4caa76720fdd0.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:G8Nd6kmc8gjU_TruKRv2eAP2wYs=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.611012+00 2025-12-09 10:16:10.611017+00 22563 88465FWF#彩蓝L SPMX-20240815317819 \N \N \N 1 \N [{"file_id": "b5bc1aa4-f482-4a56-8d0d-6ca9174f6e59", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "aa57d5b8b43b476e9150dcdd4469ec30.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "aa57d5b8b43b476e9150dcdd4469ec30.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "aa57d5b8b43b476e9150dcdd4469ec30.jpg", "file_size": 22104, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#彩蓝L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa57d5b8b43b476e9150dcdd4469ec30.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa57d5b8b43b476e9150dcdd4469ec30.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/aa57d5b8b43b476e9150dcdd4469ec30.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/aa57d5b8b43b476e9150dcdd4469ec30.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/aa57d5b8b43b476e9150dcdd4469ec30.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ViNoF_liuQWB1b7QpLtse0yhfaU=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.614238+00 2025-12-09 10:16:10.614242+00 22564 FX029#Z SPMX-20240815317826 \N \N \N 1 \N [{"file_id": "21fb682b-e363-4509-bb2d-28af1c81f485", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e0550ff1925d4542ac8af0da2054999b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e0550ff1925d4542ac8af0da2054999b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e0550ff1925d4542ac8af0da2054999b.jpg", "file_size": 6853, "is_delete": false, "file_type": 1, "original_file_name": "FX029#Z.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0550ff1925d4542ac8af0da2054999b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0550ff1925d4542ac8af0da2054999b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e0550ff1925d4542ac8af0da2054999b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e0550ff1925d4542ac8af0da2054999b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e0550ff1925d4542ac8af0da2054999b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:EbSgivONvq4MwnNkDeqPoCXjEQc=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.617319+00 2025-12-09 10:16:10.617324+00 22565 13010-10#后片2XL SPMX-20240815317817 \N \N \N 1 \N [{"file_id": "b76b99af-11f7-4b6d-942f-bda5915047aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dbd757bf44df441c8514173f6f12bc93.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dbd757bf44df441c8514173f6f12bc93.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dbd757bf44df441c8514173f6f12bc93.jpg", "file_size": 11752, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd757bf44df441c8514173f6f12bc93.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd757bf44df441c8514173f6f12bc93.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dbd757bf44df441c8514173f6f12bc93.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dbd757bf44df441c8514173f6f12bc93.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dbd757bf44df441c8514173f6f12bc93.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:AHp10c0T9RyofIBGDktPgynrxIM=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.6205+00 2025-12-09 10:16:10.620505+00 22566 88465FWF#彩蓝M SPMX-20240815317830 \N \N \N 1 \N [{"file_id": "f86e3add-391e-48d7-95c1-e2e2133b5ac8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "06b2df31c0ea4b7187489a899a39cc8f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "06b2df31c0ea4b7187489a899a39cc8f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "06b2df31c0ea4b7187489a899a39cc8f.jpg", "file_size": 21537, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#彩蓝M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b2df31c0ea4b7187489a899a39cc8f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b2df31c0ea4b7187489a899a39cc8f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/06b2df31c0ea4b7187489a899a39cc8f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/06b2df31c0ea4b7187489a899a39cc8f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/06b2df31c0ea4b7187489a899a39cc8f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pPC-hs25HzQhnMnY9JSJ3oxcO8U=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.62408+00 2025-12-09 10:16:10.624087+00 22567 004FWE#女L-11.07 SPMX-20240815317831 \N \N \N 1 \N [{"file_id": "25931467-b585-4eb3-a836-fc09cd99195a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ba40d4800d014a398804cf0dd60e20d0.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ba40d4800d014a398804cf0dd60e20d0.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ba40d4800d014a398804cf0dd60e20d0.jpg", "file_size": 13385, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女L-11.07.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba40d4800d014a398804cf0dd60e20d0.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba40d4800d014a398804cf0dd60e20d0.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ba40d4800d014a398804cf0dd60e20d0.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ba40d4800d014a398804cf0dd60e20d0.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ba40d4800d014a398804cf0dd60e20d0.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LMocqTGgSkrIHKkJl3ybaEc0yGc=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.627754+00 2025-12-09 10:16:10.627761+00 22568 LJW006FW#VS-D3绿 SPMX-20240815317832 \N \N \N 1 \N [{"file_id": "4be74969-11a8-4483-a049-67ff4315273f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "028b0984c9b141569fe593f15a304184.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "028b0984c9b141569fe593f15a304184.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "028b0984c9b141569fe593f15a304184.jpg", "file_size": 21287, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028b0984c9b141569fe593f15a304184.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028b0984c9b141569fe593f15a304184.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/028b0984c9b141569fe593f15a304184.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/028b0984c9b141569fe593f15a304184.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/028b0984c9b141569fe593f15a304184.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5BOYRKZKz93b1vb-DDT3zrwI6SA=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.631397+00 2025-12-09 10:16:10.631403+00 22569 FX029#黄色WJC22 SPMX-20240815317834 \N \N \N 1 \N [{"file_id": "24230801-7a61-4b1a-a75b-71edf6a03234", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3a18c27af32f410aaba8bcad58f59421.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3a18c27af32f410aaba8bcad58f59421.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3a18c27af32f410aaba8bcad58f59421.jpg", "file_size": 8314, "is_delete": false, "file_type": 1, "original_file_name": "FX029#黄色WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a18c27af32f410aaba8bcad58f59421.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a18c27af32f410aaba8bcad58f59421.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3a18c27af32f410aaba8bcad58f59421.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3a18c27af32f410aaba8bcad58f59421.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3a18c27af32f410aaba8bcad58f59421.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDJ1B2kqWIUfj_y0niTW7ylESmw=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.63502+00 2025-12-09 10:16:10.635029+00 22570 13010-10#后片L SPMX-20240815317829 \N \N \N 1 \N [{"file_id": "6ed37243-e548-4e07-ac54-621031aa8e83", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8ad9d3159db448e5a60d0e06b8f7fda8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8ad9d3159db448e5a60d0e06b8f7fda8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8ad9d3159db448e5a60d0e06b8f7fda8.jpg", "file_size": 11015, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad9d3159db448e5a60d0e06b8f7fda8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad9d3159db448e5a60d0e06b8f7fda8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8ad9d3159db448e5a60d0e06b8f7fda8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8ad9d3159db448e5a60d0e06b8f7fda8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8ad9d3159db448e5a60d0e06b8f7fda8.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xNGEg9Qceu7lSddHErg7HJ88lNA=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.638646+00 2025-12-09 10:16:10.638652+00 22571 JY-QC230820-P30#4号墨绿 SPMX-20240815317827 \N \N \N 1 \N [{"file_id": "69c5c335-7580-42c6-a9f2-b714344eed13", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6b2d5028f4814dbdadce95dcc4f45772.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6b2d5028f4814dbdadce95dcc4f45772.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6b2d5028f4814dbdadce95dcc4f45772.jpg", "file_size": 28306, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230820-P30#4号墨绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2d5028f4814dbdadce95dcc4f45772.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2d5028f4814dbdadce95dcc4f45772.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6b2d5028f4814dbdadce95dcc4f45772.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6b2d5028f4814dbdadce95dcc4f45772.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6b2d5028f4814dbdadce95dcc4f45772.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bhfPpFKtKpBNqMuz4z3HHocvZ-M=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.64229+00 2025-12-09 10:16:10.642296+00 22572 DN-D3082#L SPMX-20240815317833 \N \N \N 1 \N [{"file_id": "ab969b1b-0b1b-4bfa-af01-9c0036419ec5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "735f9b17362b4d509c53efe6d68f1a6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "735f9b17362b4d509c53efe6d68f1a6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "735f9b17362b4d509c53efe6d68f1a6c.jpg", "file_size": 46548, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3082#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735f9b17362b4d509c53efe6d68f1a6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735f9b17362b4d509c53efe6d68f1a6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/735f9b17362b4d509c53efe6d68f1a6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/735f9b17362b4d509c53efe6d68f1a6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/735f9b17362b4d509c53efe6d68f1a6c.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rAIPZoaTmk3des-j07yrDW8d2Vs=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.64589+00 2025-12-09 10:16:10.645901+00 22573 243082#-01-4-3XL码 SPMX-20240815317828 \N \N \N 1 \N [{"file_id": "659b43c2-6cd1-403f-a2c0-e4a2cf616d01", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "588038d8dd954c5aa2cb18f5438b828b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "588038d8dd954c5aa2cb18f5438b828b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "588038d8dd954c5aa2cb18f5438b828b.jpg", "file_size": 49936, "is_delete": false, "file_type": 1, "original_file_name": "243082#-01-4-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588038d8dd954c5aa2cb18f5438b828b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588038d8dd954c5aa2cb18f5438b828b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/588038d8dd954c5aa2cb18f5438b828b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/588038d8dd954c5aa2cb18f5438b828b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/588038d8dd954c5aa2cb18f5438b828b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E4VoSfspeEHMlMtBPzgllpcc2Ck=", "createTime": "2024-08-15 15:12:08"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.649608+00 2025-12-09 10:16:10.649614+00 22574 HXF080FW#黄色 VS-D3 SPMX-20240815317836 \N \N \N 1 \N [{"file_id": "d508542f-f007-4500-a50c-9dfa351db0dc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d293cf041e4040e59386d9c462153377.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d293cf041e4040e59386d9c462153377.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d293cf041e4040e59386d9c462153377.jpg", "file_size": 18369, "is_delete": false, "file_type": 1, "original_file_name": "HXF080FW#黄色 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d293cf041e4040e59386d9c462153377.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d293cf041e4040e59386d9c462153377.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d293cf041e4040e59386d9c462153377.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d293cf041e4040e59386d9c462153377.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d293cf041e4040e59386d9c462153377.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ck1M2m9IuXONXWHC5N2APu3Gd1s=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.653364+00 2025-12-09 10:16:10.65337+00 22575 LZ1442#下身2号色 SPMX-20240815317835 \N \N \N 1 \N [{"file_id": "ddb57582-7389-4a1f-907b-829de022eace", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg", "file_size": 15948, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#下身2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bf0ebdcd5ea64dc6aab0a463ee9bca7d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7FMDRUY7Ej6w1QZLLpRgA9YRBSs=", "createTime": "2024-08-15 15:12:09"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.657046+00 2025-12-09 10:16:10.657052+00 22576 JY-QC230820-P30#7号蓝色 SPMX-20240815317837 \N \N \N 1 \N [{"file_id": "e1ab13ef-23a9-449e-993b-50d20435c067", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "74ed9524d6214986b3a115912a222d6b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "74ed9524d6214986b3a115912a222d6b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "74ed9524d6214986b3a115912a222d6b.jpg", "file_size": 28857, "is_delete": false, "file_type": 1, "original_file_name": "JY-QC230820-P30#7号蓝色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ed9524d6214986b3a115912a222d6b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ed9524d6214986b3a115912a222d6b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/74ed9524d6214986b3a115912a222d6b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/74ed9524d6214986b3a115912a222d6b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/74ed9524d6214986b3a115912a222d6b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WkFwWCRNqkgSxjgST2GVGfGi3S0=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.660743+00 2025-12-09 10:16:10.660749+00 22577 88465FWF#彩蓝XL SPMX-20240815317842 \N \N \N 1 \N [{"file_id": "4e519f95-5025-48aa-9aec-6aecb923f350", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a315437df386479786dbe0360d153c98.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a315437df386479786dbe0360d153c98.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a315437df386479786dbe0360d153c98.jpg", "file_size": 22091, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#彩蓝XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a315437df386479786dbe0360d153c98.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a315437df386479786dbe0360d153c98.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a315437df386479786dbe0360d153c98.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a315437df386479786dbe0360d153c98.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a315437df386479786dbe0360d153c98.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0Uk3ULm45m8lZHiSqgrovpM0Dnk=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.664425+00 2025-12-09 10:16:10.664432+00 22578 CHS0375-25#花 SPMX-20240815317839 \N \N \N 1 \N [{"file_id": "dc771c42-fccf-4527-87a1-a9e9253134c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc4aedb206d448ff824c07412043af18.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc4aedb206d448ff824c07412043af18.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc4aedb206d448ff824c07412043af18.jpg", "file_size": 24525, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-25#花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4aedb206d448ff824c07412043af18.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4aedb206d448ff824c07412043af18.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc4aedb206d448ff824c07412043af18.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc4aedb206d448ff824c07412043af18.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc4aedb206d448ff824c07412043af18.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:kH9wZgrD4VDSy-faJuz6l2-Spgs=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.668204+00 2025-12-09 10:16:10.668211+00 22579 HXF081FW#白底 VS-D3 SPMX-20240815317843 \N \N \N 1 \N [{"file_id": "66a180a2-754b-4b85-8169-870aa9a5c1fa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f39aabfd087b4e60bf31fa52f5ec3654.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f39aabfd087b4e60bf31fa52f5ec3654.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f39aabfd087b4e60bf31fa52f5ec3654.jpg", "file_size": 18035, "is_delete": false, "file_type": 1, "original_file_name": "HXF081FW#白底 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39aabfd087b4e60bf31fa52f5ec3654.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39aabfd087b4e60bf31fa52f5ec3654.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f39aabfd087b4e60bf31fa52f5ec3654.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f39aabfd087b4e60bf31fa52f5ec3654.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f39aabfd087b4e60bf31fa52f5ec3654.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lkln9nEUmH8BTCsBgnxXnuP3cz8=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.671919+00 2025-12-09 10:16:10.671926+00 22580 LJW006FW#VS-D3黄 SPMX-20240815317845 \N \N \N 1 \N [{"file_id": "52f3e9ec-887f-4fd7-a767-299d2cbdf9e8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "455b942734714c98b571832bf92c1734.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "455b942734714c98b571832bf92c1734.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "455b942734714c98b571832bf92c1734.jpg", "file_size": 21287, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3黄.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455b942734714c98b571832bf92c1734.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455b942734714c98b571832bf92c1734.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/455b942734714c98b571832bf92c1734.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/455b942734714c98b571832bf92c1734.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/455b942734714c98b571832bf92c1734.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:9ZpTeqNT_DlwFt1aMd9Itm71XJ0=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.67584+00 2025-12-09 10:16:10.675847+00 22581 004FWE#女M-10.30 SPMX-20240815317838 \N \N \N 1 \N [{"file_id": "b76b1d3e-326d-41dc-8645-a51b2022f043", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7aceb40033bb4e46a17f6fbc56ffb767.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7aceb40033bb4e46a17f6fbc56ffb767.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7aceb40033bb4e46a17f6fbc56ffb767.jpg", "file_size": 14928, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女M-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aceb40033bb4e46a17f6fbc56ffb767.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aceb40033bb4e46a17f6fbc56ffb767.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7aceb40033bb4e46a17f6fbc56ffb767.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7aceb40033bb4e46a17f6fbc56ffb767.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7aceb40033bb4e46a17f6fbc56ffb767.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:1E7a1TFEMOkEEYhUO332RT_FL-4=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.679609+00 2025-12-09 10:16:10.679614+00 22582 243082#-02-1-2XL码 SPMX-20240815317841 \N \N \N 1 \N [{"file_id": "2cd9b377-f610-4569-a1ea-4fc109e015e5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7b888739fc28446fa19b1eac8c5688de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7b888739fc28446fa19b1eac8c5688de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7b888739fc28446fa19b1eac8c5688de.jpg", "file_size": 42113, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b888739fc28446fa19b1eac8c5688de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b888739fc28446fa19b1eac8c5688de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7b888739fc28446fa19b1eac8c5688de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7b888739fc28446fa19b1eac8c5688de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7b888739fc28446fa19b1eac8c5688de.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:CoSbucWneJtNo3dAQpZ9Btz6Quk=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.683274+00 2025-12-09 10:16:10.68328+00 22583 DN-D3082#M SPMX-20240815317847 \N \N \N 1 \N [{"file_id": "ed055a42-4ab3-42e3-a956-39ae69039f35", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a43d612853774912aaebdcf3aaef04ed.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a43d612853774912aaebdcf3aaef04ed.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a43d612853774912aaebdcf3aaef04ed.jpg", "file_size": 48240, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3082#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43d612853774912aaebdcf3aaef04ed.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43d612853774912aaebdcf3aaef04ed.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a43d612853774912aaebdcf3aaef04ed.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a43d612853774912aaebdcf3aaef04ed.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a43d612853774912aaebdcf3aaef04ed.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GOMn45vyZMV9OyJC2RcRy-YQsuk=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.68692+00 2025-12-09 10:16:10.686926+00 22584 004FWE#女M-11.07 SPMX-20240815317848 \N \N \N 1 \N [{"file_id": "7379fd03-e057-4f44-a19a-b866c382afc3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cb5fe263a2cd483b96ce0161b842330f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cb5fe263a2cd483b96ce0161b842330f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cb5fe263a2cd483b96ce0161b842330f.jpg", "file_size": 12959, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女M-11.07.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5fe263a2cd483b96ce0161b842330f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5fe263a2cd483b96ce0161b842330f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cb5fe263a2cd483b96ce0161b842330f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cb5fe263a2cd483b96ce0161b842330f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cb5fe263a2cd483b96ce0161b842330f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:fAmWL-cbetFrX47fKN_zkc79r-s=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.690524+00 2025-12-09 10:16:10.690531+00 22585 FX029FW#VS-D3 SPMX-20240815317844 \N \N \N 1 \N [{"file_id": "87ed041d-b0e0-448f-868c-02f87b2c7771", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bbb8096f54e648eaa389886cb7976623.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bbb8096f54e648eaa389886cb7976623.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bbb8096f54e648eaa389886cb7976623.jpg", "file_size": 16465, "is_delete": false, "file_type": 1, "original_file_name": "FX029FW#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb8096f54e648eaa389886cb7976623.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb8096f54e648eaa389886cb7976623.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bbb8096f54e648eaa389886cb7976623.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bbb8096f54e648eaa389886cb7976623.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bbb8096f54e648eaa389886cb7976623.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:E3lbopPjORaxq7cBRV7XA0S7HNE=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.738058+00 2025-12-09 10:16:10.738065+00 22598 LJW006FW#VS-D3黑 SPMX-20240815317859 \N \N \N 1 \N [{"file_id": "3d004569-ef05-4e21-bd0f-924bffda5a0e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e9f061541cc44313b900357a89d576ab.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e9f061541cc44313b900357a89d576ab.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e9f061541cc44313b900357a89d576ab.jpg", "file_size": 21641, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#VS-D3黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f061541cc44313b900357a89d576ab.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f061541cc44313b900357a89d576ab.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e9f061541cc44313b900357a89d576ab.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e9f061541cc44313b900357a89d576ab.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e9f061541cc44313b900357a89d576ab.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Ybpq28KRtcgll6HaDNGJbfM6lOI=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.694203+00 2025-12-09 10:16:10.69421+00 22586 LZ1442#下身3号色 SPMX-20240815317846 \N \N \N 1 \N [{"file_id": "496f808a-0c84-49bd-9e16-bf1b5bef39f0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "86535defe01f421586930ed2389a092c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "86535defe01f421586930ed2389a092c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "86535defe01f421586930ed2389a092c.jpg", "file_size": 15221, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#下身3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86535defe01f421586930ed2389a092c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86535defe01f421586930ed2389a092c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/86535defe01f421586930ed2389a092c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/86535defe01f421586930ed2389a092c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/86535defe01f421586930ed2389a092c.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:P95utEe8zSzVlS1wlHwxD4ykK3c=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.697879+00 2025-12-09 10:16:10.697886+00 22587 13010-10#后片M SPMX-20240815317840 \N \N \N 1 \N [{"file_id": "b41e5192-566a-4ec9-b0e9-0812f3242c80", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b6e02907624944a32ab27b6cad56b5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b6e02907624944a32ab27b6cad56b5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b6e02907624944a32ab27b6cad56b5.jpg", "file_size": 10461, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6e02907624944a32ab27b6cad56b5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6e02907624944a32ab27b6cad56b5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6e02907624944a32ab27b6cad56b5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b6e02907624944a32ab27b6cad56b5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b6e02907624944a32ab27b6cad56b5.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jsI29kp7KBwZnOyQN2OAqvWEPuA=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.701455+00 2025-12-09 10:16:10.701461+00 22588 JY-SE-190#2号蓝色2XL SPMX-20240815317853 \N \N \N 1 \N [{"file_id": "133ec07d-653c-4a01-b1b1-251459ae0739", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1d2cdae622394db89ecd692608b26e75.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1d2cdae622394db89ecd692608b26e75.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1d2cdae622394db89ecd692608b26e75.jpg", "file_size": 39076, "is_delete": false, "file_type": 1, "original_file_name": "JY-SE-190#2号蓝色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2cdae622394db89ecd692608b26e75.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2cdae622394db89ecd692608b26e75.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1d2cdae622394db89ecd692608b26e75.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1d2cdae622394db89ecd692608b26e75.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1d2cdae622394db89ecd692608b26e75.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:nVEQoyh1WS2AQe7s8KRqj4CUd6g=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.705129+00 2025-12-09 10:16:10.705137+00 22589 CHS0375-26#WJC22 SPMX-20240815317850 \N \N \N 1 \N [{"file_id": "78c09ddb-7213-4823-ba1b-0b4e4d3e6889", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "77a936080bcf4f69acebe0d65671d830.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "77a936080bcf4f69acebe0d65671d830.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "77a936080bcf4f69acebe0d65671d830.jpg", "file_size": 13074, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-26#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a936080bcf4f69acebe0d65671d830.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a936080bcf4f69acebe0d65671d830.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/77a936080bcf4f69acebe0d65671d830.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/77a936080bcf4f69acebe0d65671d830.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/77a936080bcf4f69acebe0d65671d830.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lSbIldLCpT_qBzZpQAT18qz4tYM=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.708806+00 2025-12-09 10:16:10.708813+00 22590 HXF081FW#粉底 VS-D3 SPMX-20240815317852 \N \N \N 1 \N [{"file_id": "b28841cc-330c-4188-ba11-cc06c77366c4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fbc0aafc3f504b06a4e719166871963b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fbc0aafc3f504b06a4e719166871963b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fbc0aafc3f504b06a4e719166871963b.jpg", "file_size": 17669, "is_delete": false, "file_type": 1, "original_file_name": "HXF081FW#粉底 VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc0aafc3f504b06a4e719166871963b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc0aafc3f504b06a4e719166871963b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fbc0aafc3f504b06a4e719166871963b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fbc0aafc3f504b06a4e719166871963b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fbc0aafc3f504b06a4e719166871963b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:bGOlbXMSVL67LQN45lvnPjYeMV4=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.712469+00 2025-12-09 10:16:10.712475+00 22591 FX029FWE#粉VS-D3 SPMX-20240815317854 \N \N \N 1 \N [{"file_id": "9035a124-5277-4c73-8aa3-4e30437497d0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg", "file_size": 8435, "is_delete": false, "file_type": 1, "original_file_name": "FX029FWE#粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b4cb28dc3d0c414895ba0a6b2b3fa3e4.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-fJbkidkfFRHwzXy9g1PvbdF6gs=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.716054+00 2025-12-09 10:16:10.716061+00 22592 LZ1442#下身4号色 SPMX-20240815317856 \N \N \N 1 \N [{"file_id": "b291d9a9-e648-4169-b6c1-624456492513", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d3259994e2e043968e05701f4701b99e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d3259994e2e043968e05701f4701b99e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d3259994e2e043968e05701f4701b99e.jpg", "file_size": 16346, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442#下身4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3259994e2e043968e05701f4701b99e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3259994e2e043968e05701f4701b99e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d3259994e2e043968e05701f4701b99e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d3259994e2e043968e05701f4701b99e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d3259994e2e043968e05701f4701b99e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:J2h_vHcZtA3S0u7EfdFGbHOdXyg=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.719615+00 2025-12-09 10:16:10.719622+00 22593 13010-10#后片S SPMX-20240815317851 \N \N \N 1 \N [{"file_id": "2ce67116-2d5c-40ac-9dc5-e0b0ebed4034", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4613237f33a642f8bfe5153738857edb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4613237f33a642f8bfe5153738857edb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4613237f33a642f8bfe5153738857edb.jpg", "file_size": 10630, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4613237f33a642f8bfe5153738857edb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4613237f33a642f8bfe5153738857edb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4613237f33a642f8bfe5153738857edb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4613237f33a642f8bfe5153738857edb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4613237f33a642f8bfe5153738857edb.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8mWa1k8xxM1Xlerwwi9XPBUEtsU=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.723244+00 2025-12-09 10:16:10.723251+00 22594 243082#-02-1-3XL码 SPMX-20240815317855 \N \N \N 1 \N [{"file_id": "278fcfe9-07ac-4eaf-bd33-8d63d4a47a09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "01263f65d58543cba75c296c46d88ff5.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "01263f65d58543cba75c296c46d88ff5.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "01263f65d58543cba75c296c46d88ff5.jpg", "file_size": 43188, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01263f65d58543cba75c296c46d88ff5.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01263f65d58543cba75c296c46d88ff5.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/01263f65d58543cba75c296c46d88ff5.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/01263f65d58543cba75c296c46d88ff5.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/01263f65d58543cba75c296c46d88ff5.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ABSYpgqTX9BTBGu823GIU9VOZBI=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.727048+00 2025-12-09 10:16:10.727055+00 22595 004FWE#女M-11.19 SPMX-20240815317857 \N \N \N 1 \N [{"file_id": "8dfe5d45-da42-4c1e-adaa-6d4fe100b0d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4608792e8a30467484d401636bc521a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4608792e8a30467484d401636bc521a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4608792e8a30467484d401636bc521a7.jpg", "file_size": 13067, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女M-11.19.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4608792e8a30467484d401636bc521a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4608792e8a30467484d401636bc521a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4608792e8a30467484d401636bc521a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4608792e8a30467484d401636bc521a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4608792e8a30467484d401636bc521a7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FqCGj8TLoNV0aFuOQyyU0NqzAY4=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.730778+00 2025-12-09 10:16:10.730785+00 22596 88465FWF#绿色2XL SPMX-20240815317849 \N \N \N 1 \N [{"file_id": "bc922ac7-49de-4e9a-bbf1-ae1aee22fa85", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "415580afb8d14090a7a76dd7c24e9745.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "415580afb8d14090a7a76dd7c24e9745.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "415580afb8d14090a7a76dd7c24e9745.jpg", "file_size": 22055, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#绿色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415580afb8d14090a7a76dd7c24e9745.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415580afb8d14090a7a76dd7c24e9745.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/415580afb8d14090a7a76dd7c24e9745.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/415580afb8d14090a7a76dd7c24e9745.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/415580afb8d14090a7a76dd7c24e9745.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dg4ZDEHYirietPIGePEsPOeGk9E=", "createTime": "2024-08-15 15:12:10"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.734488+00 2025-12-09 10:16:10.734494+00 22597 DN-D3082#XL SPMX-20240815317858 \N \N \N 1 \N [{"file_id": "ebdb7e42-2aba-419a-9419-38d476c91cbc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "54b6c4c7096244909528c2bfc3b23d16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "54b6c4c7096244909528c2bfc3b23d16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "54b6c4c7096244909528c2bfc3b23d16.jpg", "file_size": 45730, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3082#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6c4c7096244909528c2bfc3b23d16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6c4c7096244909528c2bfc3b23d16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/54b6c4c7096244909528c2bfc3b23d16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/54b6c4c7096244909528c2bfc3b23d16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/54b6c4c7096244909528c2bfc3b23d16.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:dNLzNzPyDKDfomIBCbOItGxsvAA=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.741685+00 2025-12-09 10:16:10.741692+00 22599 CHS0375-26#小碎花 SPMX-20240815317860 \N \N \N 1 \N [{"file_id": "264c2367-5baf-4fdf-976c-d2cac5db4c54", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5b6c275f4ae149f883ca63c2fcd8ae41.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5b6c275f4ae149f883ca63c2fcd8ae41.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5b6c275f4ae149f883ca63c2fcd8ae41.jpg", "file_size": 12924, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-26#小碎花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6c275f4ae149f883ca63c2fcd8ae41.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6c275f4ae149f883ca63c2fcd8ae41.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5b6c275f4ae149f883ca63c2fcd8ae41.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5b6c275f4ae149f883ca63c2fcd8ae41.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5b6c275f4ae149f883ca63c2fcd8ae41.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:GO4l3SU4siPvWHqdOSOIhRWWO1o=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.745344+00 2025-12-09 10:16:10.745351+00 22600 243082#-02-2-2XL码 SPMX-20240815317866 \N \N \N 1 \N [{"file_id": "5ff1b953-3509-40ff-bb47-3a837d4c15f8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cfcd6c323ab5469b8453ef62c70b93b6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cfcd6c323ab5469b8453ef62c70b93b6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cfcd6c323ab5469b8453ef62c70b93b6.jpg", "file_size": 44412, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcd6c323ab5469b8453ef62c70b93b6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcd6c323ab5469b8453ef62c70b93b6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cfcd6c323ab5469b8453ef62c70b93b6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cfcd6c323ab5469b8453ef62c70b93b6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cfcd6c323ab5469b8453ef62c70b93b6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wwKJOQfnOkxD6sl6dlqP52H_B3k=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.749052+00 2025-12-09 10:16:10.749059+00 22601 HXF088#蓝 SPMX-20240815317871 \N \N \N 1 \N [{"file_id": "c952d4e3-01d9-4066-8dd2-b959c0b930b9", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "fd979ca11cc34e05b7f56fc7063ee72e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "fd979ca11cc34e05b7f56fc7063ee72e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "fd979ca11cc34e05b7f56fc7063ee72e.jpg", "file_size": 13141, "is_delete": false, "file_type": 1, "original_file_name": "HXF088#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd979ca11cc34e05b7f56fc7063ee72e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd979ca11cc34e05b7f56fc7063ee72e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/fd979ca11cc34e05b7f56fc7063ee72e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/fd979ca11cc34e05b7f56fc7063ee72e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/fd979ca11cc34e05b7f56fc7063ee72e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xIW4ik03KYt1C7DsqyVFFNikWYs=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.752687+00 2025-12-09 10:16:10.752695+00 22602 HXF088#粉 SPMX-20240815317861 \N \N \N 1 \N [{"file_id": "e4582ee8-f35f-4cb0-a7dd-8a7a751c0ec7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d32b4a48977844d5bce6f247366a6337.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d32b4a48977844d5bce6f247366a6337.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d32b4a48977844d5bce6f247366a6337.jpg", "file_size": 10072, "is_delete": false, "file_type": 1, "original_file_name": "HXF088#粉.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32b4a48977844d5bce6f247366a6337.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32b4a48977844d5bce6f247366a6337.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d32b4a48977844d5bce6f247366a6337.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d32b4a48977844d5bce6f247366a6337.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d32b4a48977844d5bce6f247366a6337.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:gSltQwxcROpyKqQdbJTsRFwxD7I=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.75667+00 2025-12-09 10:16:10.756677+00 22603 FX029FWE#蓝VS-D3 SPMX-20240815317864 \N \N \N 1 \N [{"file_id": "93bac9d8-ea6c-4759-a678-6dfeed221c4a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f1313528e9c94f908b9fb1ecf0139904.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f1313528e9c94f908b9fb1ecf0139904.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f1313528e9c94f908b9fb1ecf0139904.jpg", "file_size": 10632, "is_delete": false, "file_type": 1, "original_file_name": "FX029FWE#蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1313528e9c94f908b9fb1ecf0139904.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1313528e9c94f908b9fb1ecf0139904.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f1313528e9c94f908b9fb1ecf0139904.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f1313528e9c94f908b9fb1ecf0139904.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f1313528e9c94f908b9fb1ecf0139904.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Rv0pI9Wd5SgZHERZhWQh335jjoo=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.760697+00 2025-12-09 10:16:10.760707+00 22604 FX030#D绿 SPMX-20240815317875 \N \N \N 1 \N [{"file_id": "50d7e57f-677d-49ac-a8b9-3fadddf5bb02", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1871f0c96b2d417398daf989423710ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1871f0c96b2d417398daf989423710ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1871f0c96b2d417398daf989423710ad.jpg", "file_size": 8610, "is_delete": false, "file_type": 1, "original_file_name": "FX030#D绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871f0c96b2d417398daf989423710ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871f0c96b2d417398daf989423710ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1871f0c96b2d417398daf989423710ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1871f0c96b2d417398daf989423710ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1871f0c96b2d417398daf989423710ad.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:BHi7JSlhuoCfc9JtOGhfsQvNTxo=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.764654+00 2025-12-09 10:16:10.76466+00 22605 88465FWF#绿色L SPMX-20240815317862 \N \N \N 1 \N [{"file_id": "a3d4691f-59b4-4999-a6c7-8357b8623b1e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "6903e22340fc4b9db0ec2dad0e267dcd.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "6903e22340fc4b9db0ec2dad0e267dcd.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "6903e22340fc4b9db0ec2dad0e267dcd.jpg", "file_size": 21386, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#绿色L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6903e22340fc4b9db0ec2dad0e267dcd.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6903e22340fc4b9db0ec2dad0e267dcd.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/6903e22340fc4b9db0ec2dad0e267dcd.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/6903e22340fc4b9db0ec2dad0e267dcd.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/6903e22340fc4b9db0ec2dad0e267dcd.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_Ngu3G_Jv164Pu3Ng8Bse8d4Zy8=", "createTime": "2024-08-15 15:12:11"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.768614+00 2025-12-09 10:16:10.768619+00 22606 88465FWF#绿色M SPMX-20240815317872 \N \N \N 1 \N [{"file_id": "fdff060e-5688-44c2-9c72-bd0cfbcbefc6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d4811c6a397e42b6b134ae1b84853b7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d4811c6a397e42b6b134ae1b84853b7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d4811c6a397e42b6b134ae1b84853b7b.jpg", "file_size": 21204, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#绿色M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4811c6a397e42b6b134ae1b84853b7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4811c6a397e42b6b134ae1b84853b7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d4811c6a397e42b6b134ae1b84853b7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d4811c6a397e42b6b134ae1b84853b7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d4811c6a397e42b6b134ae1b84853b7b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pufbxGT2vr9plMg4BlnHBquTWkQ=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.772528+00 2025-12-09 10:16:10.772536+00 22607 004FWE#女S-10.30 SPMX-20240815317867 \N \N \N 1 \N [{"file_id": "4b3d4e8d-b2ab-4db1-8a4d-a2b52d939a58", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "cd81a819c8114015bb5aa9547154bb0b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "cd81a819c8114015bb5aa9547154bb0b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "cd81a819c8114015bb5aa9547154bb0b.jpg", "file_size": 12150, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女S-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd81a819c8114015bb5aa9547154bb0b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd81a819c8114015bb5aa9547154bb0b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/cd81a819c8114015bb5aa9547154bb0b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/cd81a819c8114015bb5aa9547154bb0b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/cd81a819c8114015bb5aa9547154bb0b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:WIcGhUzDp1GQi-L0paEEvLaZOC0=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.806547+00 2025-12-09 10:16:10.806554+00 22616 004FWE#女S SPMX-20240815317888 \N \N \N 1 \N [{"file_id": "6e422754-b541-410a-bf16-4f51a0adafa1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c9cf5e30f1904738a7c35dc0abd7f7d6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c9cf5e30f1904738a7c35dc0abd7f7d6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c9cf5e30f1904738a7c35dc0abd7f7d6.jpg", "file_size": 12143, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cf5e30f1904738a7c35dc0abd7f7d6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cf5e30f1904738a7c35dc0abd7f7d6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c9cf5e30f1904738a7c35dc0abd7f7d6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c9cf5e30f1904738a7c35dc0abd7f7d6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c9cf5e30f1904738a7c35dc0abd7f7d6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:HLN2GmrN_xHO7AzkSZjWV1ul9A8=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.776327+00 2025-12-09 10:16:10.776334+00 22608 LZ1442FWF#短袖3号色 SPMX-20240815317868 \N \N \N 1 \N [{"file_id": "9ee8b2e4-c922-4fff-9138-a0c712e283bb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5be66b55d95643828c9c5c56b8177545.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5be66b55d95643828c9c5c56b8177545.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5be66b55d95643828c9c5c56b8177545.jpg", "file_size": 19084, "is_delete": false, "file_type": 1, "original_file_name": "LZ1442FWF#短袖3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be66b55d95643828c9c5c56b8177545.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be66b55d95643828c9c5c56b8177545.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5be66b55d95643828c9c5c56b8177545.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5be66b55d95643828c9c5c56b8177545.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5be66b55d95643828c9c5c56b8177545.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:62R2lxhM7JFh0VX0tu7l29sOZjI=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.78008+00 2025-12-09 10:16:10.780086+00 22609 13010-10#后片XL SPMX-20240815317863 \N \N \N 1 \N [{"file_id": "320a81c0-7706-4fea-a073-9aabd8005cf8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "02c60241e9b141b9a4f9275a33a03600.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "02c60241e9b141b9a4f9275a33a03600.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "02c60241e9b141b9a4f9275a33a03600.jpg", "file_size": 11866, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c60241e9b141b9a4f9275a33a03600.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c60241e9b141b9a4f9275a33a03600.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/02c60241e9b141b9a4f9275a33a03600.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/02c60241e9b141b9a4f9275a33a03600.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/02c60241e9b141b9a4f9275a33a03600.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-nZzdA_xITnfudJunp7eX-0eKxo=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.784031+00 2025-12-09 10:16:10.784039+00 22610 CHS0375-27#蝴蝶花 SPMX-20240815317874 \N \N \N 1 \N [{"file_id": "88940dfc-0ad0-400b-b762-a9bb2d9b97cc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a2343ea207ac4151b3651055c59d9568.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a2343ea207ac4151b3651055c59d9568.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a2343ea207ac4151b3651055c59d9568.jpg", "file_size": 19229, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-27#蝴蝶花.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2343ea207ac4151b3651055c59d9568.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2343ea207ac4151b3651055c59d9568.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a2343ea207ac4151b3651055c59d9568.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a2343ea207ac4151b3651055c59d9568.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a2343ea207ac4151b3651055c59d9568.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LROYTj5AG6WBbvw6Gg3yGJ80vCM=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.78789+00 2025-12-09 10:16:10.787898+00 22611 DN-D3083#2XL SPMX-20240815317869 \N \N \N 1 \N [{"file_id": "5c655f4e-08de-47d0-92ef-5e85da93acb6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c2513ce77e3e40509f4bd5475dfcbcbe.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c2513ce77e3e40509f4bd5475dfcbcbe.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c2513ce77e3e40509f4bd5475dfcbcbe.jpg", "file_size": 46352, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3083#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2513ce77e3e40509f4bd5475dfcbcbe.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2513ce77e3e40509f4bd5475dfcbcbe.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c2513ce77e3e40509f4bd5475dfcbcbe.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c2513ce77e3e40509f4bd5475dfcbcbe.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c2513ce77e3e40509f4bd5475dfcbcbe.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tqy13XmwCVQmhzq1_XqaReFQzKI=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.791579+00 2025-12-09 10:16:10.791585+00 22612 13010-10#后片净色 SPMX-20240815317873 \N \N \N 1 \N [{"file_id": "216591c4-7305-4bf2-996d-a73bd87bbbdc", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0a7e5ef31bf44658b9724ab8a1483ebb.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0a7e5ef31bf44658b9724ab8a1483ebb.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0a7e5ef31bf44658b9724ab8a1483ebb.jpg", "file_size": 6667, "is_delete": false, "file_type": 1, "original_file_name": "13010-10#后片净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e5ef31bf44658b9724ab8a1483ebb.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e5ef31bf44658b9724ab8a1483ebb.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0a7e5ef31bf44658b9724ab8a1483ebb.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0a7e5ef31bf44658b9724ab8a1483ebb.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0a7e5ef31bf44658b9724ab8a1483ebb.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:zNtOoT1qFCjMmj2BYsWC21cSAng=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.795305+00 2025-12-09 10:16:10.795311+00 22613 JY-SK-175#1号样板色 SPMX-20240815317865 \N \N \N 1 \N [{"file_id": "87d32d4d-7551-4aca-9a94-4364bdfd06cb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b8cb90fe74844f768d5d0300a059b9a8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b8cb90fe74844f768d5d0300a059b9a8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b8cb90fe74844f768d5d0300a059b9a8.jpg", "file_size": 16000, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-175#1号样板色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8cb90fe74844f768d5d0300a059b9a8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8cb90fe74844f768d5d0300a059b9a8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b8cb90fe74844f768d5d0300a059b9a8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b8cb90fe74844f768d5d0300a059b9a8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b8cb90fe74844f768d5d0300a059b9a8.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pQHI2umdvtBaTPfvPkzPphPd8c4=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.799168+00 2025-12-09 10:16:10.799175+00 22614 LJW006FW#黑VS-D3 SPMX-20240815317870 \N \N \N 1 \N [{"file_id": "c6840890-7e17-4f5c-93eb-2f23da0b9ab0", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a9f936ec1cb348888a84595da4fc21ad.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a9f936ec1cb348888a84595da4fc21ad.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a9f936ec1cb348888a84595da4fc21ad.jpg", "file_size": 21440, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FW#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f936ec1cb348888a84595da4fc21ad.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f936ec1cb348888a84595da4fc21ad.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a9f936ec1cb348888a84595da4fc21ad.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a9f936ec1cb348888a84595da4fc21ad.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a9f936ec1cb348888a84595da4fc21ad.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vfJYVIlpRgEHKsfDr5L0WIRY554=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.802827+00 2025-12-09 10:16:10.802834+00 22615 LJW006FWE#VS-D3 SPMX-20240815317880 \N \N \N 1 \N [{"file_id": "76a48bf7-1001-4da1-86b9-879b6955cf0a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c763da9f8aa447708ce474c08d5d89a1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c763da9f8aa447708ce474c08d5d89a1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c763da9f8aa447708ce474c08d5d89a1.jpg", "file_size": 28303, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FWE#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c763da9f8aa447708ce474c08d5d89a1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c763da9f8aa447708ce474c08d5d89a1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c763da9f8aa447708ce474c08d5d89a1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c763da9f8aa447708ce474c08d5d89a1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c763da9f8aa447708ce474c08d5d89a1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:C1gyzAwmEam-zdLd_-LiPM0fo3o=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.810126+00 2025-12-09 10:16:10.810133+00 22617 88465FWF#绿色XL SPMX-20240815317884 \N \N \N 1 \N [{"file_id": "0f510c38-65f2-4829-ac1a-4249ce42b809", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3fc9b94b54274911b24239a00140eee2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3fc9b94b54274911b24239a00140eee2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3fc9b94b54274911b24239a00140eee2.jpg", "file_size": 21695, "is_delete": false, "file_type": 1, "original_file_name": "88465FWF#绿色XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc9b94b54274911b24239a00140eee2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc9b94b54274911b24239a00140eee2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3fc9b94b54274911b24239a00140eee2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3fc9b94b54274911b24239a00140eee2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3fc9b94b54274911b24239a00140eee2.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZDNmWMIDRY_prwqAR03So5-v8rg=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.813854+00 2025-12-09 10:16:10.813861+00 22618 JY-SK-175#8号军绿色 SPMX-20240815317876 \N \N \N 1 \N [{"file_id": "02f0a348-dc84-4030-9950-892d5f85969f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2f97031de16446de8152d2b42a4ef167.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2f97031de16446de8152d2b42a4ef167.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2f97031de16446de8152d2b42a4ef167.jpg", "file_size": 17150, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-175#8号军绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f97031de16446de8152d2b42a4ef167.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f97031de16446de8152d2b42a4ef167.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2f97031de16446de8152d2b42a4ef167.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2f97031de16446de8152d2b42a4ef167.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2f97031de16446de8152d2b42a4ef167.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Hfg14FwE28wJ18nf4O-KPZRwK30=", "createTime": "2024-08-15 15:12:12"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.817588+00 2025-12-09 10:16:10.817594+00 22619 DN-D3083#3XL SPMX-20240815317881 \N \N \N 1 \N [{"file_id": "b04e15e0-a67d-4bfe-ba5e-0df66fd590a1", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "dc8f77d835fb48ca98106b854e2c3aac.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "dc8f77d835fb48ca98106b854e2c3aac.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "dc8f77d835fb48ca98106b854e2c3aac.jpg", "file_size": 46463, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3083#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8f77d835fb48ca98106b854e2c3aac.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8f77d835fb48ca98106b854e2c3aac.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/dc8f77d835fb48ca98106b854e2c3aac.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/dc8f77d835fb48ca98106b854e2c3aac.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/dc8f77d835fb48ca98106b854e2c3aac.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qwXZBfW2be4wqUIoWOo-x0mr9Iw=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.821397+00 2025-12-09 10:16:10.821405+00 22620 004FWE#女S-11.07 SPMX-20240815317877 \N \N \N 1 \N [{"file_id": "3897432d-ae28-49e4-8821-fd9b03e1a6d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b86c1f634edb4763ab392b994b07c59a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b86c1f634edb4763ab392b994b07c59a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b86c1f634edb4763ab392b994b07c59a.jpg", "file_size": 12483, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女S-11.07.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86c1f634edb4763ab392b994b07c59a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86c1f634edb4763ab392b994b07c59a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b86c1f634edb4763ab392b994b07c59a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b86c1f634edb4763ab392b994b07c59a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b86c1f634edb4763ab392b994b07c59a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:eDzt94G_R3badCdZ0Uk4cgyE3II=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.82529+00 2025-12-09 10:16:10.825298+00 22621 243082#-02-2-3XL码 SPMX-20240815317879 \N \N \N 1 \N [{"file_id": "d4d49779-813e-408c-9f4b-ad081acc060a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2640378ce969466782e3453293485e83.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2640378ce969466782e3453293485e83.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2640378ce969466782e3453293485e83.jpg", "file_size": 43251, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-2-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2640378ce969466782e3453293485e83.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2640378ce969466782e3453293485e83.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2640378ce969466782e3453293485e83.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2640378ce969466782e3453293485e83.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2640378ce969466782e3453293485e83.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:LpTJ1gGrV19wAeeViHkSoEAbAu0=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.829232+00 2025-12-09 10:16:10.829239+00 22622 13010-11#2XL SPMX-20240815317882 \N \N \N 1 \N [{"file_id": "992bf9a0-02f0-4145-a3c3-818c35bec03d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b2e57a7787a746f8ad2d5401732d971e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b2e57a7787a746f8ad2d5401732d971e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b2e57a7787a746f8ad2d5401732d971e.jpg", "file_size": 17347, "is_delete": false, "file_type": 1, "original_file_name": "13010-11#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e57a7787a746f8ad2d5401732d971e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e57a7787a746f8ad2d5401732d971e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b2e57a7787a746f8ad2d5401732d971e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b2e57a7787a746f8ad2d5401732d971e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b2e57a7787a746f8ad2d5401732d971e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YIGNDIEzbW1VN_WpLiPWOeuH4Po=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.833105+00 2025-12-09 10:16:10.833113+00 22623 CHS0375-28# SPMX-20240815317885 \N \N \N 1 \N [{"file_id": "c52aa759-afcd-40e0-af26-b4b21dd7d9aa", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7819281bffee46109265069672e94805.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7819281bffee46109265069672e94805.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7819281bffee46109265069672e94805.jpg", "file_size": 17430, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-28#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7819281bffee46109265069672e94805.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7819281bffee46109265069672e94805.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7819281bffee46109265069672e94805.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7819281bffee46109265069672e94805.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7819281bffee46109265069672e94805.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:vqNLp9vQ04gLhn3rzvTSHq8z5no=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.836966+00 2025-12-09 10:16:10.836973+00 22624 FX030#D绿净色 SPMX-20240815317886 \N \N \N 1 \N [{"file_id": "61b97271-4cf4-4d05-868e-c63b61d8e9a7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3443c637e28148d593c5c90a5b7aaa0e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3443c637e28148d593c5c90a5b7aaa0e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3443c637e28148d593c5c90a5b7aaa0e.jpg", "file_size": 8019, "is_delete": false, "file_type": 1, "original_file_name": "FX030#D绿净色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3443c637e28148d593c5c90a5b7aaa0e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3443c637e28148d593c5c90a5b7aaa0e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3443c637e28148d593c5c90a5b7aaa0e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3443c637e28148d593c5c90a5b7aaa0e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3443c637e28148d593c5c90a5b7aaa0e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:b2jTy3N8JaerssT-1v14QIiwBbY=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.840902+00 2025-12-09 10:16:10.84091+00 22625 243082#-02-3-2XL码 SPMX-20240815317890 \N \N \N 1 \N [{"file_id": "bc09e9d2-bb6d-4581-9ee9-9a75d8a4b702", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a8d5569c244b4fde8f0deb6307f3a972.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a8d5569c244b4fde8f0deb6307f3a972.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a8d5569c244b4fde8f0deb6307f3a972.jpg", "file_size": 53317, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-3-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d5569c244b4fde8f0deb6307f3a972.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d5569c244b4fde8f0deb6307f3a972.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a8d5569c244b4fde8f0deb6307f3a972.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a8d5569c244b4fde8f0deb6307f3a972.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a8d5569c244b4fde8f0deb6307f3a972.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pJxJC3CquGewafFsf20EtnJo4p8=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.844891+00 2025-12-09 10:16:10.844898+00 22626 LZ1443#1号色 SPMX-20240815317878 \N \N \N 1 \N [{"file_id": "ca2fb1bc-1fbc-4fb3-8ed9-336203fc527b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0bb66ce998934d99a8c0da527792b218.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0bb66ce998934d99a8c0da527792b218.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0bb66ce998934d99a8c0da527792b218.jpg", "file_size": 18348, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#1号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb66ce998934d99a8c0da527792b218.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb66ce998934d99a8c0da527792b218.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0bb66ce998934d99a8c0da527792b218.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0bb66ce998934d99a8c0da527792b218.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0bb66ce998934d99a8c0da527792b218.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:N21psKLKL7aM4y12425AFgNy41w=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.848866+00 2025-12-09 10:16:10.848874+00 22627 HXF10008-38#白色 SPMX-20240815317883 \N \N \N 1 \N [{"file_id": "241dd49d-fe18-4417-a725-8882ac05a469", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e7f362bdb406480da806b53546d650e1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e7f362bdb406480da806b53546d650e1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e7f362bdb406480da806b53546d650e1.jpg", "file_size": 19327, "is_delete": false, "file_type": 1, "original_file_name": "HXF10008-38#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f362bdb406480da806b53546d650e1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f362bdb406480da806b53546d650e1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e7f362bdb406480da806b53546d650e1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e7f362bdb406480da806b53546d650e1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e7f362bdb406480da806b53546d650e1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:MdvDaquhMBsMoupIWO7VQ8pZTB0=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.852791+00 2025-12-09 10:16:10.852798+00 22628 LZ1443#2号色 SPMX-20240815317889 \N \N \N 1 \N [{"file_id": "410fb2fa-68d1-4b34-b991-abac84951b7a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "1aa47bee699b43d98cc377e4c0280e53.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "1aa47bee699b43d98cc377e4c0280e53.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "1aa47bee699b43d98cc377e4c0280e53.jpg", "file_size": 18490, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#2号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa47bee699b43d98cc377e4c0280e53.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa47bee699b43d98cc377e4c0280e53.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/1aa47bee699b43d98cc377e4c0280e53.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/1aa47bee699b43d98cc377e4c0280e53.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/1aa47bee699b43d98cc377e4c0280e53.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-wsegm7MC3oyOzkwCIJwVlTwv3k=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.856843+00 2025-12-09 10:16:10.85685+00 22629 JY-SK-175#8号迷彩色 SPMX-20240815317887 \N \N \N 1 \N [{"file_id": "1a4e12de-d182-4016-9a75-662bfd0ad9a4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2a139c38f52e4acbbd273f6872c5afec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2a139c38f52e4acbbd273f6872c5afec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2a139c38f52e4acbbd273f6872c5afec.jpg", "file_size": 16830, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-175#8号迷彩色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a139c38f52e4acbbd273f6872c5afec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a139c38f52e4acbbd273f6872c5afec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2a139c38f52e4acbbd273f6872c5afec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2a139c38f52e4acbbd273f6872c5afec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2a139c38f52e4acbbd273f6872c5afec.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Dl-jolh7Be7x1_FV7qiwTqotgSY=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.860854+00 2025-12-09 10:16:10.860861+00 22630 HXF1001#紫色 SPMX-20240815317894 \N \N \N 1 \N [{"file_id": "46efceaf-07a2-4b9d-8631-d4e674a90e95", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4f434752c1df4919ab3476552f4e2ebc.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4f434752c1df4919ab3476552f4e2ebc.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4f434752c1df4919ab3476552f4e2ebc.jpg", "file_size": 8439, "is_delete": false, "file_type": 1, "original_file_name": "HXF1001#紫色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f434752c1df4919ab3476552f4e2ebc.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f434752c1df4919ab3476552f4e2ebc.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4f434752c1df4919ab3476552f4e2ebc.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4f434752c1df4919ab3476552f4e2ebc.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4f434752c1df4919ab3476552f4e2ebc.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:-rvqFscvSQ0u9K5T19hIvz-dO1E=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.864804+00 2025-12-09 10:16:10.86481+00 22631 LJW007# SPMX-20240815317902 \N \N \N 1 \N [{"file_id": "7ffd5b44-1f2b-4ac6-9768-253d2b781e7c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e53eb52ed9b847af861369fadd508f15.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e53eb52ed9b847af861369fadd508f15.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e53eb52ed9b847af861369fadd508f15.jpg", "file_size": 16052, "is_delete": false, "file_type": 1, "original_file_name": "LJW007#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53eb52ed9b847af861369fadd508f15.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53eb52ed9b847af861369fadd508f15.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e53eb52ed9b847af861369fadd508f15.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e53eb52ed9b847af861369fadd508f15.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e53eb52ed9b847af861369fadd508f15.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3R9Sj2u2nqWAev6luoIXeYNMfU=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.868686+00 2025-12-09 10:16:10.868693+00 22632 CHS0375-3#杏色 SPMX-20240815317906 \N \N \N 1 \N [{"file_id": "a177a5bc-59ce-4c1a-9527-2d7083a27fd4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f95e1a553647450aaac874328f16c692.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f95e1a553647450aaac874328f16c692.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f95e1a553647450aaac874328f16c692.jpg", "file_size": 17845, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-3#杏色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95e1a553647450aaac874328f16c692.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95e1a553647450aaac874328f16c692.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f95e1a553647450aaac874328f16c692.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f95e1a553647450aaac874328f16c692.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f95e1a553647450aaac874328f16c692.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:5XVzPu-RPQbWEtgVD-onEQajVXs=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.872657+00 2025-12-09 10:16:10.872664+00 22633 JY-SK-244#1#浅黑色 SPMX-20240815317899 \N \N \N 1 \N [{"file_id": "a912c4e6-f7e8-4d12-9b32-b687ae5b807e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d6eece4b1f0948639418d66043fe5ae1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d6eece4b1f0948639418d66043fe5ae1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d6eece4b1f0948639418d66043fe5ae1.jpg", "file_size": 71177, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-244#1#浅黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6eece4b1f0948639418d66043fe5ae1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6eece4b1f0948639418d66043fe5ae1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d6eece4b1f0948639418d66043fe5ae1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d6eece4b1f0948639418d66043fe5ae1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d6eece4b1f0948639418d66043fe5ae1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ww6CAesedfUrKyQ8HYHslV1KlgQ=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.876691+00 2025-12-09 10:16:10.876698+00 22634 8852# SPMX-20240815317895 \N \N \N 1 \N [{"file_id": "5f1c0aa2-e518-457a-9e73-3c6a923733a8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3629c3a8a68e4fd8b8536c640527e72f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3629c3a8a68e4fd8b8536c640527e72f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3629c3a8a68e4fd8b8536c640527e72f.jpg", "file_size": 16852, "is_delete": false, "file_type": 1, "original_file_name": "8852#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3629c3a8a68e4fd8b8536c640527e72f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3629c3a8a68e4fd8b8536c640527e72f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3629c3a8a68e4fd8b8536c640527e72f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3629c3a8a68e4fd8b8536c640527e72f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3629c3a8a68e4fd8b8536c640527e72f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ctxnooSXnsPf4EjYfddTlmyIWYw=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.880655+00 2025-12-09 10:16:10.880663+00 22635 HXF1013#L白VS-D3 SPMX-20240815317903 \N \N \N 1 \N [{"file_id": "5724bfa9-39b4-475f-aa55-e7c0f19ea78c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4a58f6396c9d4a9e969a63ec41f1eb64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4a58f6396c9d4a9e969a63ec41f1eb64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4a58f6396c9d4a9e969a63ec41f1eb64.jpg", "file_size": 15307, "is_delete": false, "file_type": 1, "original_file_name": "HXF1013#L白VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a58f6396c9d4a9e969a63ec41f1eb64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a58f6396c9d4a9e969a63ec41f1eb64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4a58f6396c9d4a9e969a63ec41f1eb64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4a58f6396c9d4a9e969a63ec41f1eb64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4a58f6396c9d4a9e969a63ec41f1eb64.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:A3dUHa2bEAm0UWQZP0wsjPUs2Oc=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.884552+00 2025-12-09 10:16:10.884559+00 22636 13010-11#L SPMX-20240815317893 \N \N \N 1 \N [{"file_id": "79976198-f395-44ef-bf2e-c38495fd2a15", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "b7c3b990ea684a67b599472d2ee8880d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "b7c3b990ea684a67b599472d2ee8880d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "b7c3b990ea684a67b599472d2ee8880d.jpg", "file_size": 15669, "is_delete": false, "file_type": 1, "original_file_name": "13010-11#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c3b990ea684a67b599472d2ee8880d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c3b990ea684a67b599472d2ee8880d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/b7c3b990ea684a67b599472d2ee8880d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/b7c3b990ea684a67b599472d2ee8880d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/b7c3b990ea684a67b599472d2ee8880d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:0xgr19NizRKjAU8TpxVgXKobe8w=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.888571+00 2025-12-09 10:16:10.888579+00 22637 8853# SPMX-20240815317904 \N \N \N 1 \N [{"file_id": "7a7923e9-4d7a-4485-be95-370db74f9fae", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a4f2d2dc85cc4db4aea1b74a7144f66a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a4f2d2dc85cc4db4aea1b74a7144f66a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a4f2d2dc85cc4db4aea1b74a7144f66a.jpg", "file_size": 10683, "is_delete": false, "file_type": 1, "original_file_name": "8853#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f2d2dc85cc4db4aea1b74a7144f66a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f2d2dc85cc4db4aea1b74a7144f66a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a4f2d2dc85cc4db4aea1b74a7144f66a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a4f2d2dc85cc4db4aea1b74a7144f66a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a4f2d2dc85cc4db4aea1b74a7144f66a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tg2bZOY3M7VRRyu5vVn7XcKpw9w=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.892519+00 2025-12-09 10:16:10.892527+00 22638 LJW006FWE#黑VS-D3 SPMX-20240815317891 \N \N \N 1 \N [{"file_id": "acc4c2da-9f63-4c99-a856-3cd0d02cb5b4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3b1c74121fcd4897ac4c2da33781bd16.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3b1c74121fcd4897ac4c2da33781bd16.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3b1c74121fcd4897ac4c2da33781bd16.jpg", "file_size": 28697, "is_delete": false, "file_type": 1, "original_file_name": "LJW006FWE#黑VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1c74121fcd4897ac4c2da33781bd16.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1c74121fcd4897ac4c2da33781bd16.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3b1c74121fcd4897ac4c2da33781bd16.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3b1c74121fcd4897ac4c2da33781bd16.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3b1c74121fcd4897ac4c2da33781bd16.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Qq7cC6c_0BfpcLUQz0EiDFCjh_c=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.896508+00 2025-12-09 10:16:10.896515+00 22639 DN-D3083#L SPMX-20240815317892 \N \N \N 1 \N [{"file_id": "50669a09-fa09-49be-84d1-2bca1aeb332c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "f61fe69808094000a702e3712e1aeb35.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "f61fe69808094000a702e3712e1aeb35.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "f61fe69808094000a702e3712e1aeb35.jpg", "file_size": 48168, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3083#L.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61fe69808094000a702e3712e1aeb35.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61fe69808094000a702e3712e1aeb35.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/f61fe69808094000a702e3712e1aeb35.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/f61fe69808094000a702e3712e1aeb35.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/f61fe69808094000a702e3712e1aeb35.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:xsWNAqHEX2P0Q8LoRQqXrU74zkQ=", "createTime": "2024-08-15 15:12:13"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.900464+00 2025-12-09 10:16:10.90047+00 22640 004FWE#女XL+女L-11.19 SPMX-20240815317900 \N \N \N 1 \N [{"file_id": "5d80bd4f-62de-459e-8b64-00362a7d087e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8df1922349bc44c3b1514e97f0cd2fa1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8df1922349bc44c3b1514e97f0cd2fa1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8df1922349bc44c3b1514e97f0cd2fa1.jpg", "file_size": 16485, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女XL+女L-11.19.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df1922349bc44c3b1514e97f0cd2fa1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df1922349bc44c3b1514e97f0cd2fa1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8df1922349bc44c3b1514e97f0cd2fa1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8df1922349bc44c3b1514e97f0cd2fa1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8df1922349bc44c3b1514e97f0cd2fa1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ar5h190nVf6h6DYz-ck9ixW4qOQ=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.904419+00 2025-12-09 10:16:10.904427+00 22641 LZ1443#3号色 SPMX-20240815317898 \N \N \N 1 \N [{"file_id": "4ca63bfd-8045-45cd-b8a2-186f58db0c2d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3cca7de5a8646febcf00ce41c609b7b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3cca7de5a8646febcf00ce41c609b7b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3cca7de5a8646febcf00ce41c609b7b.jpg", "file_size": 16380, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#3号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cca7de5a8646febcf00ce41c609b7b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cca7de5a8646febcf00ce41c609b7b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3cca7de5a8646febcf00ce41c609b7b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3cca7de5a8646febcf00ce41c609b7b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3cca7de5a8646febcf00ce41c609b7b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pl0GyQ6t3upQ7kL7k-lNO6CZjkM=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.90844+00 2025-12-09 10:16:10.908448+00 22642 DN-D3083#M SPMX-20240815317907 \N \N \N 1 \N [{"file_id": "bb2d4fe4-17aa-40bd-950b-445218bbc18b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "527274078da84fcf85411bcbb704b6c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "527274078da84fcf85411bcbb704b6c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "527274078da84fcf85411bcbb704b6c9.jpg", "file_size": 49712, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3083#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527274078da84fcf85411bcbb704b6c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527274078da84fcf85411bcbb704b6c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/527274078da84fcf85411bcbb704b6c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/527274078da84fcf85411bcbb704b6c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/527274078da84fcf85411bcbb704b6c9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7S7hwVe2TCWkFwGVFZnNhuMrIFE=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.912354+00 2025-12-09 10:16:10.912361+00 22643 13010-11#M SPMX-20240815317905 \N \N \N 1 \N [{"file_id": "021db173-3e09-4f81-8f16-9887d7c10b9c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e28beb9c536f488fbbed20f4ba3228a7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e28beb9c536f488fbbed20f4ba3228a7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e28beb9c536f488fbbed20f4ba3228a7.jpg", "file_size": 14451, "is_delete": false, "file_type": 1, "original_file_name": "13010-11#M.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28beb9c536f488fbbed20f4ba3228a7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28beb9c536f488fbbed20f4ba3228a7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e28beb9c536f488fbbed20f4ba3228a7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e28beb9c536f488fbbed20f4ba3228a7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e28beb9c536f488fbbed20f4ba3228a7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Kdi30FaxbEzXteVd1dlcGmv00fE=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.916208+00 2025-12-09 10:16:10.916214+00 22644 FX030#D黑 SPMX-20240815317897 \N \N \N 1 \N [{"file_id": "b24a4928-2be4-4edc-8aa7-5ae18a8f89d7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0ed3698674bb4a38b7e510a0717a5e64.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0ed3698674bb4a38b7e510a0717a5e64.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0ed3698674bb4a38b7e510a0717a5e64.jpg", "file_size": 10033, "is_delete": false, "file_type": 1, "original_file_name": "FX030#D黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed3698674bb4a38b7e510a0717a5e64.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed3698674bb4a38b7e510a0717a5e64.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0ed3698674bb4a38b7e510a0717a5e64.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0ed3698674bb4a38b7e510a0717a5e64.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0ed3698674bb4a38b7e510a0717a5e64.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qJKra6BRE8RerX3iZLVa4Q8Ncuk=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.919975+00 2025-12-09 10:16:10.919981+00 22645 243082#-02-3-3XL码 SPMX-20240815317901 \N \N \N 1 \N [{"file_id": "cd80335f-ce50-4f50-b835-ce793d17182d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "48f13bc17873478c9634fb8a874734f2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "48f13bc17873478c9634fb8a874734f2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "48f13bc17873478c9634fb8a874734f2.jpg", "file_size": 50901, "is_delete": false, "file_type": 1, "original_file_name": "243082#-02-3-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f13bc17873478c9634fb8a874734f2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f13bc17873478c9634fb8a874734f2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/48f13bc17873478c9634fb8a874734f2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/48f13bc17873478c9634fb8a874734f2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/48f13bc17873478c9634fb8a874734f2.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oJsxOCQ3REyg--R8_inyrEkD8Kg=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.923659+00 2025-12-09 10:16:10.923665+00 22646 CHS0375-29# SPMX-20240815317896 \N \N \N 1 \N [{"file_id": "de849767-5977-4e98-8182-813184a427ab", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce5c1f0e8c5046b08df9200ca2b200c7.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce5c1f0e8c5046b08df9200ca2b200c7.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce5c1f0e8c5046b08df9200ca2b200c7.jpg", "file_size": 7665, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-29#.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5c1f0e8c5046b08df9200ca2b200c7.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5c1f0e8c5046b08df9200ca2b200c7.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce5c1f0e8c5046b08df9200ca2b200c7.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce5c1f0e8c5046b08df9200ca2b200c7.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce5c1f0e8c5046b08df9200ca2b200c7.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:e3vfgKrn08azzmn_ZCs3iSaQX_Q=", "createTime": "2024-08-15 15:12:14"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.927297+00 2025-12-09 10:16:10.927304+00 22647 JY-SK-244#3#墨绿色 SPMX-20240815317909 \N \N \N 1 \N [{"file_id": "708dd0ac-0a79-4596-a456-4b846c75c7c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "9a9d6210978043e4888cf0a582c09476.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "9a9d6210978043e4888cf0a582c09476.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "9a9d6210978043e4888cf0a582c09476.jpg", "file_size": 72573, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-244#3#墨绿色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9d6210978043e4888cf0a582c09476.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9d6210978043e4888cf0a582c09476.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/9a9d6210978043e4888cf0a582c09476.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/9a9d6210978043e4888cf0a582c09476.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/9a9d6210978043e4888cf0a582c09476.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:jwRK5dLgDqo9NDFth8Faun4mwUw=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.930967+00 2025-12-09 10:16:10.930973+00 22648 8853#蓝 SPMX-20240815317915 \N \N \N 1 \N [{"file_id": "ce8ed9a0-bfa4-4a5a-a4d7-b78c522a8c09", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "3ca6b81ec2ac4acd82af85d3a99a2d50.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "3ca6b81ec2ac4acd82af85d3a99a2d50.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "3ca6b81ec2ac4acd82af85d3a99a2d50.jpg", "file_size": 11010, "is_delete": false, "file_type": 1, "original_file_name": "8853#蓝.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca6b81ec2ac4acd82af85d3a99a2d50.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca6b81ec2ac4acd82af85d3a99a2d50.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/3ca6b81ec2ac4acd82af85d3a99a2d50.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/3ca6b81ec2ac4acd82af85d3a99a2d50.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/3ca6b81ec2ac4acd82af85d3a99a2d50.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:pgfJvJpfDIwrbyUoc9UZlz6P92U=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.934669+00 2025-12-09 10:16:10.934675+00 22649 HXF1013#L粉VS-D3 SPMX-20240815317913 \N \N \N 1 \N [{"file_id": "89b8f7cf-662b-4971-b96e-98fd16b9cedb", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d2cb8c559aca4cc2b2500337d21efba6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d2cb8c559aca4cc2b2500337d21efba6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d2cb8c559aca4cc2b2500337d21efba6.jpg", "file_size": 15009, "is_delete": false, "file_type": 1, "original_file_name": "HXF1013#L粉VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2cb8c559aca4cc2b2500337d21efba6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2cb8c559aca4cc2b2500337d21efba6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d2cb8c559aca4cc2b2500337d21efba6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d2cb8c559aca4cc2b2500337d21efba6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d2cb8c559aca4cc2b2500337d21efba6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lhRaKtPX8ZPPHMFzHRg3EueBybM=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.942299+00 2025-12-09 10:16:10.942306+00 22651 JY-SK-244#5#黑色 SPMX-20240815317921 \N \N \N 1 \N [{"file_id": "a2435836-bbab-4650-a545-0833659e28a6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "511637dec1a04748abf1696b79286435.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "511637dec1a04748abf1696b79286435.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "511637dec1a04748abf1696b79286435.jpg", "file_size": 65082, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK-244#5#黑色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511637dec1a04748abf1696b79286435.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511637dec1a04748abf1696b79286435.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/511637dec1a04748abf1696b79286435.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/511637dec1a04748abf1696b79286435.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/511637dec1a04748abf1696b79286435.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uVzpBn-XOJyB27-JZzWX86F0ZNA=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.946023+00 2025-12-09 10:16:10.94603+00 22652 LJW007#VS-D3 SPMX-20240815317914 \N \N \N 1 \N [{"file_id": "cc45887d-622a-4c31-9e47-7897a5e81bec", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c6ec8e67ad9e41da93dec97f036a008a.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c6ec8e67ad9e41da93dec97f036a008a.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c6ec8e67ad9e41da93dec97f036a008a.jpg", "file_size": 12905, "is_delete": false, "file_type": 1, "original_file_name": "LJW007#VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6ec8e67ad9e41da93dec97f036a008a.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6ec8e67ad9e41da93dec97f036a008a.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c6ec8e67ad9e41da93dec97f036a008a.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c6ec8e67ad9e41da93dec97f036a008a.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c6ec8e67ad9e41da93dec97f036a008a.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tEctY2tCE7IdamWzx6gwpUGonzE=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.949802+00 2025-12-09 10:16:10.949808+00 22653 CHS0375-3#白色 SPMX-20240815317918 \N \N \N 1 \N [{"file_id": "413a063e-a9bb-4d5a-bd86-6b235980ff60", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "919724ba45804eeca917c25a8d3db08f.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "919724ba45804eeca917c25a8d3db08f.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "919724ba45804eeca917c25a8d3db08f.jpg", "file_size": 18654, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-3#白色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919724ba45804eeca917c25a8d3db08f.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919724ba45804eeca917c25a8d3db08f.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/919724ba45804eeca917c25a8d3db08f.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/919724ba45804eeca917c25a8d3db08f.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/919724ba45804eeca917c25a8d3db08f.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:TRxiFAZ97x4i6KBuktpRQqmq0tM=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.953802+00 2025-12-09 10:16:10.953809+00 22654 243082#-03-1-3XL码 SPMX-20240815317922 \N \N \N 1 \N [{"file_id": "84a126df-56b5-43c6-9615-70d1a9a686e3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7a8236e1235f4cd38b7814bd2c39a67b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7a8236e1235f4cd38b7814bd2c39a67b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7a8236e1235f4cd38b7814bd2c39a67b.jpg", "file_size": 39714, "is_delete": false, "file_type": 1, "original_file_name": "243082#-03-1-3XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a8236e1235f4cd38b7814bd2c39a67b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a8236e1235f4cd38b7814bd2c39a67b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7a8236e1235f4cd38b7814bd2c39a67b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7a8236e1235f4cd38b7814bd2c39a67b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7a8236e1235f4cd38b7814bd2c39a67b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:2N7OB5TL4Rs9DwAdvTm6lrCjQ0g=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.957866+00 2025-12-09 10:16:10.957872+00 22655 004FWE#女XL-10.30 SPMX-20240815317912 \N \N \N 1 \N [{"file_id": "84cf51d1-6d42-4567-b8f4-8bede2d5db27", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "20ac0f6792a84ff19912c273a5b53e66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "20ac0f6792a84ff19912c273a5b53e66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "20ac0f6792a84ff19912c273a5b53e66.jpg", "file_size": 15873, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女XL-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20ac0f6792a84ff19912c273a5b53e66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20ac0f6792a84ff19912c273a5b53e66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/20ac0f6792a84ff19912c273a5b53e66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/20ac0f6792a84ff19912c273a5b53e66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/20ac0f6792a84ff19912c273a5b53e66.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:_HmR-QO7QAihOfilZjSG03ZcbW8=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.961959+00 2025-12-09 10:16:10.961966+00 22656 243082#-03-1-2XL码 SPMX-20240815317911 \N \N \N 1 \N [{"file_id": "6b4d89a3-80f1-44dd-809f-14a839987cff", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0e7a045253834e5099a79019237e6fec.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0e7a045253834e5099a79019237e6fec.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0e7a045253834e5099a79019237e6fec.jpg", "file_size": 39690, "is_delete": false, "file_type": 1, "original_file_name": "243082#-03-1-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7a045253834e5099a79019237e6fec.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7a045253834e5099a79019237e6fec.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0e7a045253834e5099a79019237e6fec.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0e7a045253834e5099a79019237e6fec.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0e7a045253834e5099a79019237e6fec.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:FlqSC_YdmL-K0rcNH2YMFZatoWU=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.93841+00 2025-12-09 10:16:10.938417+00 22650 LZ1443#5号色 SPMX-20240815317920 \N \N \N 1 \N [{"file_id": "3cebfbef-35f3-492c-b8ce-e34a6f2f3b6f", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "a52f8112fd1f466bb0a8eb47f60df777.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "a52f8112fd1f466bb0a8eb47f60df777.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "a52f8112fd1f466bb0a8eb47f60df777.jpg", "file_size": 18046, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#5号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52f8112fd1f466bb0a8eb47f60df777.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52f8112fd1f466bb0a8eb47f60df777.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/a52f8112fd1f466bb0a8eb47f60df777.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/a52f8112fd1f466bb0a8eb47f60df777.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/a52f8112fd1f466bb0a8eb47f60df777.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:uu-r2JLwvGh6gY8YkZQUFHSVNnI=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.970379+00 2025-12-09 10:16:10.970387+00 22657 13010-11#S SPMX-20240815317916 \N \N \N 1 \N [{"file_id": "4923f1fb-c840-4073-a012-fe1d10f2d6ef", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "719ed4ef68d14d929232b1fa64bbdacf.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "719ed4ef68d14d929232b1fa64bbdacf.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "719ed4ef68d14d929232b1fa64bbdacf.jpg", "file_size": 14670, "is_delete": false, "file_type": 1, "original_file_name": "13010-11#S.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719ed4ef68d14d929232b1fa64bbdacf.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719ed4ef68d14d929232b1fa64bbdacf.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/719ed4ef68d14d929232b1fa64bbdacf.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/719ed4ef68d14d929232b1fa64bbdacf.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/719ed4ef68d14d929232b1fa64bbdacf.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:NZXGcbjNEtsXvMC0MMW_9WE8odE=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.974425+00 2025-12-09 10:16:10.974432+00 22658 DN-D3083#XL SPMX-20240815317917 \N \N \N 1 \N [{"file_id": "7ee94f54-1b67-403a-bb75-1d84fb7b864e", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "43d1d67cc9dd4e49909f0287b7a24dc1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "43d1d67cc9dd4e49909f0287b7a24dc1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "43d1d67cc9dd4e49909f0287b7a24dc1.jpg", "file_size": 46498, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3083#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d1d67cc9dd4e49909f0287b7a24dc1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d1d67cc9dd4e49909f0287b7a24dc1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/43d1d67cc9dd4e49909f0287b7a24dc1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/43d1d67cc9dd4e49909f0287b7a24dc1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/43d1d67cc9dd4e49909f0287b7a24dc1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:tlXAjDdrWrUriAIvMdrTiWtlpVY=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.978481+00 2025-12-09 10:16:10.978487+00 22659 LZ1443#4号色 SPMX-20240815317908 \N \N \N 1 \N [{"file_id": "f2d72af1-f06f-464b-a105-529c43f2b6d3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "897ec26ff09245799bc515d87ef806de.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "897ec26ff09245799bc515d87ef806de.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "897ec26ff09245799bc515d87ef806de.jpg", "file_size": 20916, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#4号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897ec26ff09245799bc515d87ef806de.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897ec26ff09245799bc515d87ef806de.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/897ec26ff09245799bc515d87ef806de.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/897ec26ff09245799bc515d87ef806de.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/897ec26ff09245799bc515d87ef806de.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:t90Dpkp8-iqjqQRx584YCUTQiug=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.982566+00 2025-12-09 10:16:10.982573+00 22660 FX030#白 SPMX-20240815317910 \N \N \N 1 \N [{"file_id": "12830158-ee80-4715-b0c1-a0988ba51065", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ce97e2505ddc42749b632414421a8355.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ce97e2505ddc42749b632414421a8355.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ce97e2505ddc42749b632414421a8355.jpg", "file_size": 13548, "is_delete": false, "file_type": 1, "original_file_name": "FX030#白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce97e2505ddc42749b632414421a8355.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce97e2505ddc42749b632414421a8355.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ce97e2505ddc42749b632414421a8355.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ce97e2505ddc42749b632414421a8355.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ce97e2505ddc42749b632414421a8355.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:lRPp_5dg6MimbFg6Ns-OrlH_iPo=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.986294+00 2025-12-09 10:16:10.9863+00 22661 JY-SK211#1号浅卡其拼黑色2XL SPMX-20240815317931 \N \N \N 1 \N [{"file_id": "ec046f48-9514-493a-9196-ec10447312e4", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "bfe09b9f75c442e3889e566f351b9a4b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "bfe09b9f75c442e3889e566f351b9a4b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "bfe09b9f75c442e3889e566f351b9a4b.jpg", "file_size": 21230, "is_delete": false, "file_type": 1, "original_file_name": "JY-SK211#1号浅卡其拼黑色2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe09b9f75c442e3889e566f351b9a4b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe09b9f75c442e3889e566f351b9a4b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/bfe09b9f75c442e3889e566f351b9a4b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/bfe09b9f75c442e3889e566f351b9a4b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/bfe09b9f75c442e3889e566f351b9a4b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:JP9KPh_u079oMVf8d5ouQwPvLj0=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.990015+00 2025-12-09 10:16:10.990021+00 22662 LJW007#VS-D3白 SPMX-20240815317923 \N \N \N 1 \N [{"file_id": "39da2a16-6023-4f00-813d-f569265218ee", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c77b638a98324d82b4de00ff2428f916.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c77b638a98324d82b4de00ff2428f916.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c77b638a98324d82b4de00ff2428f916.jpg", "file_size": 18549, "is_delete": false, "file_type": 1, "original_file_name": "LJW007#VS-D3白.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77b638a98324d82b4de00ff2428f916.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77b638a98324d82b4de00ff2428f916.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c77b638a98324d82b4de00ff2428f916.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c77b638a98324d82b4de00ff2428f916.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c77b638a98324d82b4de00ff2428f916.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:i_GUCmeVSGPKGu10JXqALL5U6ac=", "createTime": "2024-08-15 15:12:15"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.993748+00 2025-12-09 10:16:10.993755+00 22663 FX030#绿 SPMX-20240815317930 \N \N \N 1 \N [{"file_id": "7d22605d-77a8-4c09-ae68-45ed5e06db2c", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "7cbe4f19bad748fd8ffc1772db560cb8.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "7cbe4f19bad748fd8ffc1772db560cb8.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "7cbe4f19bad748fd8ffc1772db560cb8.jpg", "file_size": 12300, "is_delete": false, "file_type": 1, "original_file_name": "FX030#绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbe4f19bad748fd8ffc1772db560cb8.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbe4f19bad748fd8ffc1772db560cb8.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/7cbe4f19bad748fd8ffc1772db560cb8.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/7cbe4f19bad748fd8ffc1772db560cb8.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/7cbe4f19bad748fd8ffc1772db560cb8.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:oRsk5dZHILqqFMpHmPxW79KEpZM=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:10.99746+00 2025-12-09 10:16:10.997467+00 22664 LJW007#VS-D3红 SPMX-20240815317934 \N \N \N 1 \N [{"file_id": "2a805034-27b5-46a6-8d56-3e92a661480d", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "c3de98b4a6ee45dfbc5f7ea6270768c9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "c3de98b4a6ee45dfbc5f7ea6270768c9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "c3de98b4a6ee45dfbc5f7ea6270768c9.jpg", "file_size": 18549, "is_delete": false, "file_type": 1, "original_file_name": "LJW007#VS-D3红.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3de98b4a6ee45dfbc5f7ea6270768c9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3de98b4a6ee45dfbc5f7ea6270768c9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/c3de98b4a6ee45dfbc5f7ea6270768c9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/c3de98b4a6ee45dfbc5f7ea6270768c9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/c3de98b4a6ee45dfbc5f7ea6270768c9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:59jwOSHTu43VCjuh9vsYuKKA02I=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.001067+00 2025-12-09 10:16:11.001074+00 22665 8854#黑 SPMX-20240815317925 \N \N \N 1 \N [{"file_id": "e91aebf5-7ac6-4dc9-a742-3fb23a92cd32", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "0b7ee0c4f82841b49f85b68befd5011b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "0b7ee0c4f82841b49f85b68befd5011b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "0b7ee0c4f82841b49f85b68befd5011b.jpg", "file_size": 15755, "is_delete": false, "file_type": 1, "original_file_name": "8854#黑.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7ee0c4f82841b49f85b68befd5011b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7ee0c4f82841b49f85b68befd5011b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/0b7ee0c4f82841b49f85b68befd5011b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/0b7ee0c4f82841b49f85b68befd5011b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/0b7ee0c4f82841b49f85b68befd5011b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:p23w7BJ-zxCRHeHmZHUM9ilL3d0=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.004702+00 2025-12-09 10:16:11.004714+00 22666 HXF1013#L蓝VS-D3 SPMX-20240815317926 \N \N \N 1 \N [{"file_id": "81a10101-6045-4fe3-914e-503767c9f660", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "acd7af6a816c4f0d8b7cf4063752223b.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "acd7af6a816c4f0d8b7cf4063752223b.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "acd7af6a816c4f0d8b7cf4063752223b.jpg", "file_size": 15052, "is_delete": false, "file_type": 1, "original_file_name": "HXF1013#L蓝VS-D3.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd7af6a816c4f0d8b7cf4063752223b.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd7af6a816c4f0d8b7cf4063752223b.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/acd7af6a816c4f0d8b7cf4063752223b.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/acd7af6a816c4f0d8b7cf4063752223b.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/acd7af6a816c4f0d8b7cf4063752223b.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:XoKb_d30S9934SwWgQggCZjg7kE=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.008452+00 2025-12-09 10:16:11.008459+00 22667 LZ1443#6号色 SPMX-20240815317932 \N \N \N 1 \N [{"file_id": "1874c86f-eda8-48cb-85f6-153d28535a9b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "13526de7bea647a293fa3c525e470595.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "13526de7bea647a293fa3c525e470595.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "13526de7bea647a293fa3c525e470595.jpg", "file_size": 18185, "is_delete": false, "file_type": 1, "original_file_name": "LZ1443#6号色.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13526de7bea647a293fa3c525e470595.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13526de7bea647a293fa3c525e470595.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/13526de7bea647a293fa3c525e470595.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/13526de7bea647a293fa3c525e470595.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/13526de7bea647a293fa3c525e470595.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ePbsWb_wIsOjXmethUZtW8tZVzM=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.012101+00 2025-12-09 10:16:11.012107+00 22668 13010-11#XL SPMX-20240815317927 \N \N \N 1 \N [{"file_id": "cabb9851-4a8d-495a-97dd-396ce6972da5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "39110d1409cf46d8acb758fb795e3c85.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "39110d1409cf46d8acb758fb795e3c85.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "39110d1409cf46d8acb758fb795e3c85.jpg", "file_size": 16126, "is_delete": false, "file_type": 1, "original_file_name": "13010-11#XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39110d1409cf46d8acb758fb795e3c85.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39110d1409cf46d8acb758fb795e3c85.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/39110d1409cf46d8acb758fb795e3c85.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/39110d1409cf46d8acb758fb795e3c85.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/39110d1409cf46d8acb758fb795e3c85.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:Cwdb58DbzNzFJqMtyI7VwWKUhew=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.01583+00 2025-12-09 10:16:11.015837+00 22669 004FWE#女XL SPMX-20240815317924 \N \N \N 1 \N [{"file_id": "060d70a8-0bd5-420d-81c5-314f0bc50e92", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "2c7ead192fd04b489b1a6d1f5d787f7d.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "2c7ead192fd04b489b1a6d1f5d787f7d.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "2c7ead192fd04b489b1a6d1f5d787f7d.jpg", "file_size": 15642, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#女XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7ead192fd04b489b1a6d1f5d787f7d.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7ead192fd04b489b1a6d1f5d787f7d.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/2c7ead192fd04b489b1a6d1f5d787f7d.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/2c7ead192fd04b489b1a6d1f5d787f7d.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/2c7ead192fd04b489b1a6d1f5d787f7d.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:8wUzGPotlauSiqs--ibhhJixcaQ=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.019428+00 2025-12-09 10:16:11.019448+00 22670 004FWE#婴18 SPMX-20240815317933 \N \N \N 1 \N [{"file_id": "81b8f893-fc53-4fa9-b4bf-105edcafe005", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "e997e315c86d476eb953a7e745effb4e.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "e997e315c86d476eb953a7e745effb4e.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "e997e315c86d476eb953a7e745effb4e.jpg", "file_size": 12654, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#婴18.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e997e315c86d476eb953a7e745effb4e.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e997e315c86d476eb953a7e745effb4e.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/e997e315c86d476eb953a7e745effb4e.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/e997e315c86d476eb953a7e745effb4e.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/e997e315c86d476eb953a7e745effb4e.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:UPeOTWJpXmaZT8hOjLAkPfD3SxA=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.023133+00 2025-12-09 10:16:11.02314+00 22671 243082#-03-2-2XL码 SPMX-20240815317935 \N \N \N 1 \N [{"file_id": "9708330e-b4c8-4a10-b372-658415d2c4b8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "5ee55264c3ad4a6c8072cfed09b9ef6c.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "5ee55264c3ad4a6c8072cfed09b9ef6c.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "5ee55264c3ad4a6c8072cfed09b9ef6c.jpg", "file_size": 39526, "is_delete": false, "file_type": 1, "original_file_name": "243082#-03-2-2XL码.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee55264c3ad4a6c8072cfed09b9ef6c.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee55264c3ad4a6c8072cfed09b9ef6c.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/5ee55264c3ad4a6c8072cfed09b9ef6c.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/5ee55264c3ad4a6c8072cfed09b9ef6c.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/5ee55264c3ad4a6c8072cfed09b9ef6c.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:qMIgN2VKp17nL8mvNg4imOMjlDs=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.026902+00 2025-12-09 10:16:11.026908+00 22672 13010-12#前片2XL SPMX-20240815317936 \N \N \N 1 \N [{"file_id": "9921a78b-d4fd-4147-8f49-961c4214d7f6", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "d0b7ab3d83cc49edaade9e9df94f7bd9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "d0b7ab3d83cc49edaade9e9df94f7bd9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "d0b7ab3d83cc49edaade9e9df94f7bd9.jpg", "file_size": 12332, "is_delete": false, "file_type": 1, "original_file_name": "13010-12#前片2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b7ab3d83cc49edaade9e9df94f7bd9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b7ab3d83cc49edaade9e9df94f7bd9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/d0b7ab3d83cc49edaade9e9df94f7bd9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/d0b7ab3d83cc49edaade9e9df94f7bd9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/d0b7ab3d83cc49edaade9e9df94f7bd9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:B5956gSwgKuLXHjqnB5vtLOlAMA=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.030725+00 2025-12-09 10:16:11.030732+00 22673 8859FWF#V5曲线 SPMX-20240815317937 \N \N \N 1 \N [{"file_id": "2db546cf-891a-45d5-a168-65651872ebe5", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "ccb468ecaf984dfdbf9ef3603a60de39.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "ccb468ecaf984dfdbf9ef3603a60de39.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "ccb468ecaf984dfdbf9ef3603a60de39.jpg", "file_size": 8161, "is_delete": false, "file_type": 1, "original_file_name": "8859FWF#V5曲线.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb468ecaf984dfdbf9ef3603a60de39.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb468ecaf984dfdbf9ef3603a60de39.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/ccb468ecaf984dfdbf9ef3603a60de39.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/ccb468ecaf984dfdbf9ef3603a60de39.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/ccb468ecaf984dfdbf9ef3603a60de39.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:rr3RG2cYft_Upp1JagaiIju7GvI=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.034499+00 2025-12-09 10:16:11.034505+00 22674 CHS0375-30#WJC22 SPMX-20240815317928 \N \N \N 1 \N [{"file_id": "bf953527-79ab-4a99-8367-e67286fc35a3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "356db8c371fe432584d6e248c4344b66.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "356db8c371fe432584d6e248c4344b66.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "356db8c371fe432584d6e248c4344b66.jpg", "file_size": 19169, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-30#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/356db8c371fe432584d6e248c4344b66.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/356db8c371fe432584d6e248c4344b66.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/356db8c371fe432584d6e248c4344b66.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/356db8c371fe432584d6e248c4344b66.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/356db8c371fe432584d6e248c4344b66.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:7KeyB3JA_qLxd1eTGy3fsLDx-lI=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.038244+00 2025-12-09 10:16:11.03825+00 22675 DN-D3084#2XL SPMX-20240815317929 \N \N \N 1 \N [{"file_id": "086bc99d-5a0d-40e3-98ec-9de128a3734a", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "31e16146c7994507899d6076a1621da6.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "31e16146c7994507899d6076a1621da6.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "31e16146c7994507899d6076a1621da6.jpg", "file_size": 41933, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3084#2XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e16146c7994507899d6076a1621da6.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e16146c7994507899d6076a1621da6.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/31e16146c7994507899d6076a1621da6.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/31e16146c7994507899d6076a1621da6.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/31e16146c7994507899d6076a1621da6.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:88KwABtVwUbMFtPeIikHhxRqYA4=", "createTime": "2024-08-15 15:12:16"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.041911+00 2025-12-09 10:16:11.041918+00 22676 FX0308-151#RC23 SPMX-20240815317939 \N \N \N 1 \N [{"file_id": "e649d880-dc55-4d97-b03e-8733727263c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "79c479c8751a4834a243d3e6c928ffc3.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "79c479c8751a4834a243d3e6c928ffc3.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "79c479c8751a4834a243d3e6c928ffc3.jpg", "file_size": 48071, "is_delete": false, "file_type": 1, "original_file_name": "FX0308-151#RC23.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c479c8751a4834a243d3e6c928ffc3.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c479c8751a4834a243d3e6c928ffc3.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/79c479c8751a4834a243d3e6c928ffc3.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/79c479c8751a4834a243d3e6c928ffc3.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/79c479c8751a4834a243d3e6c928ffc3.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:wuEMNlru-3aqqOB82Kb4I-kDOkY=", "createTime": "2024-08-15 15:12:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.045576+00 2025-12-09 10:16:11.045582+00 22677 CHS0375-31#WJC22 SPMX-20240815317941 \N \N \N 1 \N [{"file_id": "e5bb7b44-2bb1-44b2-a0ee-f35cbb847fa3", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "4bc51bcec3a449118da684163edbd7d9.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "4bc51bcec3a449118da684163edbd7d9.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "4bc51bcec3a449118da684163edbd7d9.jpg", "file_size": 18228, "is_delete": false, "file_type": 1, "original_file_name": "CHS0375-31#WJC22.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc51bcec3a449118da684163edbd7d9.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc51bcec3a449118da684163edbd7d9.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/4bc51bcec3a449118da684163edbd7d9.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/4bc51bcec3a449118da684163edbd7d9.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/4bc51bcec3a449118da684163edbd7d9.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:YEzzFh0FxdcTUhQDM1d9YzV6qeI=", "createTime": "2024-08-15 15:12:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.049314+00 2025-12-09 10:16:11.049321+00 22678 004FWE#男2XL-10.30 SPMX-20240815317946 \N \N \N 1 \N [{"file_id": "cba50b3f-3272-4014-9742-41e6dcad313b", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "8bb7e4bb458b49fa974629206decfce2.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "8bb7e4bb458b49fa974629206decfce2.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "8bb7e4bb458b49fa974629206decfce2.jpg", "file_size": 16424, "is_delete": false, "file_type": 1, "original_file_name": "004FWE#男2XL-10.30.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e4bb458b49fa974629206decfce2.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e4bb458b49fa974629206decfce2.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e4bb458b49fa974629206decfce2.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e4bb458b49fa974629206decfce2.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/8bb7e4bb458b49fa974629206decfce2.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ISrGMMv8DsSrnwUyeGt670bS_vY=", "createTime": "2024-08-15 15:12:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.053051+00 2025-12-09 10:16:11.053057+00 22679 DN-D3084#3XL SPMX-20240815317940 \N \N \N 1 \N [{"file_id": "7995387c-8663-4bd8-8b54-e7459d5d18c8", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "837d1e6dfb9f4b41b78e7b141f11cad1.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "837d1e6dfb9f4b41b78e7b141f11cad1.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "837d1e6dfb9f4b41b78e7b141f11cad1.jpg", "file_size": 42476, "is_delete": false, "file_type": 1, "original_file_name": "DN-D3084#3XL.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/837d1e6dfb9f4b41b78e7b141f11cad1.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/837d1e6dfb9f4b41b78e7b141f11cad1.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/837d1e6dfb9f4b41b78e7b141f11cad1.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/837d1e6dfb9f4b41b78e7b141f11cad1.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/837d1e6dfb9f4b41b78e7b141f11cad1.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:3oRux-TE3n0iryE_tMCHxllZZao=", "createTime": "2024-08-15 15:12:17"}] \N 1 1 \N t \N \N \N 2025-12-09 10:16:11.056907+00 2025-12-09 10:16:11.056913+00 22680 LJW007#VS-D3绿 SPMX-20240815317944 \N \N \N 1 \N [{"file_id": "b2710a39-136c-4fa5-9ce7-15efc13c70c7", "thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "thumbnail_name": "25481c682753445e96036f9c41a2b867.jpg?imageView2/1/w/200/h/118", "large_thumbnail_path": "https://p1.mingdaoyun.cn/normal/20240815/", "large_thumbnail_name": "25481c682753445e96036f9c41a2b867.jpg?imageView2/2/w/1280/h/800", "file_path": "https://p1.mingdaoyun.cn/normal/20240815/", "file_name": "25481c682753445e96036f9c41a2b867.jpg", "file_size": 18549, "is_delete": false, "file_type": 1, "original_file_name": "LJW007#VS-D3绿.jpg", "allow_down": true, "large_thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25481c682753445e96036f9c41a2b867.jpg?imageView2/2/w/1280/h/800", "thumbnail_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25481c682753445e96036f9c41a2b867.jpg?imageView2/1/w/200/h/118", "original_file_full_path": "https://p1.mingdaoyun.cn/normal/20240815/25481c682753445e96036f9c41a2b867.jpg", "origin_link_url": null, "short_link_url": null, "share_folder_url": null, "is_knowledge": false, "node_id": "", "allow_view": true, "width": 0, "height": 0, "duration": 0.0, "allow_edit": false, "DownloadUrl": "https://p1.mingdaoyun.cn/normal/20240815/25481c682753445e96036f9c41a2b867.jpg", "WaterMarkInfo": null, "preview_url": "https://p1.mingdaoyun.cn/normal/20240815/25481c682753445e96036f9c41a2b867.jpg?e=1765361769&token=mN_sp-Y4_5zePppXZC8fTktRmKMNiYlC8jl_yeGZ:ZcUDEeb9YdYqwJrpfrNhsrmqDxQ=", "createTime": "2024-08-15 15:12:17"}] \N 1 1 \N t \N \N \N \. -- -- Data for Name: basic_info_productcategory; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_productcategory (created_at, updated_at, id, name, description, product_prefix, merchant_id) FROM stdin; 2025-11-18 08:21:39.444624+00 2025-11-18 08:21:39.444631+00 1 印花 \N RC 1 \. -- -- Data for Name: basic_info_quickinput; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_quickinput (created_at, updated_at, id, name, value, "group") FROM stdin; 2025-11-18 09:48:48.101462+00 2025-11-18 09:48:48.10147+00 2 中大 中大 地区 2025-11-18 15:31:40.483308+00 2025-11-18 15:31:40.483315+00 4 1.5米 1.5米 幅宽 2025-11-19 04:41:28.625384+00 2025-11-19 04:41:28.625402+00 5 批布 批布 工艺 2025-11-19 04:46:07.968444+00 2025-11-19 04:46:07.968452+00 6 仓库布 仓库布 布源 2025-11-19 06:09:13.561928+00 2025-11-19 06:09:13.561936+00 7 测试 测试 曲线 2025-11-19 06:09:18.26355+00 2025-11-19 06:09:18.263558+00 8 3124123 3124123 新加曲线 2025-11-20 06:13:06.17721+00 2025-11-20 06:13:06.177218+00 10 画图难度1 画图难度1 画图评级 2025-11-20 06:13:20.783887+00 2025-11-20 06:13:20.783896+00 11 调色难度1 调色难度1 调色评级 2025-11-20 06:13:34.886151+00 2025-11-20 06:13:34.886159+00 12 套样难度1 套样难度1 套样评级 2025-11-20 06:13:57.754838+00 2025-11-20 06:13:57.75485+00 13 难度1 难度1 难度评级 2025-11-20 06:17:51.458274+00 2025-11-20 06:17:51.458287+00 14 首版 首版 起版情况 2025-11-20 06:18:08.574225+00 2025-11-20 06:18:08.574233+00 15 加急 加急 紧急程度 2025-11-20 06:18:21.724272+00 2025-11-20 06:18:21.724285+00 16 匹布 匹布 做货方式 2025-11-20 06:18:34.280577+00 2025-11-20 06:18:34.280585+00 17 图片开版 图片开版 开版方式 2025-11-21 08:42:37.687031+00 2025-11-21 08:42:37.687043+00 18 样衣开版 样衣开版 开版方式 2025-11-21 08:42:43.58409+00 2025-11-21 08:42:43.584103+00 19 文件开版 文件开版 开版方式 2025-11-21 08:42:47.910144+00 2025-11-21 08:42:47.910152+00 20 定位 定位 做货方式 2025-11-21 08:43:02.652536+00 2025-11-21 08:43:02.652544+00 21 紧急已下单 紧急已下单 紧急程度 2025-11-23 13:09:39.526104+00 2025-11-23 13:09:39.526113+00 22 修改单 修改单 起版情况 2025-11-24 11:29:21.156305+00 2025-11-24 11:29:21.156323+00 23 周边 周边 地区 2025-12-05 10:36:43.035366+00 2025-12-05 10:36:43.035376+00 24 测试 测试 起版情况 2025-12-08 09:41:43.36996+00 2025-12-08 09:41:43.369974+00 25 客户布 客户布 布源 2025-12-09 02:18:36.510827+00 2025-12-09 02:18:47.011889+00 26 金钻绒布 金钻绒布 布料 2025-12-09 02:18:36.512378+00 2025-12-09 02:18:47.013748+00 27 628#仿麻竹节白色 628#仿麻竹节白色 布料 2025-12-09 02:18:36.513248+00 2025-12-09 02:18:47.014997+00 28 烧花 烧花 布料 2025-12-09 02:18:36.514053+00 2025-12-09 02:18:47.0162+00 29 斜纹梭织 斜纹梭织 布料 2025-12-09 02:18:36.514849+00 2025-12-09 02:18:47.017565+00 30 K002仿天丝 K002仿天丝 布料 2025-12-09 02:18:47.019564+00 2025-12-09 02:18:47.019571+00 31 酷丝平纹 酷丝平纹 布料 2025-12-09 02:18:47.029825+00 2025-12-09 02:18:47.029828+00 39 提花C501# 提花C501# 布料 2025-12-09 02:18:47.177841+00 2025-12-09 02:18:47.177846+00 191 1 1 布料 2025-12-09 02:18:47.406136+00 2025-12-09 02:18:47.406139+00 410 230克大白罗马布 230克大白罗马布 布料 2025-12-09 02:18:47.48031+00 2025-12-09 02:18:47.480314+00 494 梭织仿棉 梭织仿棉 布料 2025-12-09 02:18:47.55633+00 2025-12-09 02:18:47.556334+00 583 651麻棉 651麻棉 布料 2025-12-09 02:18:47.600135+00 2025-12-09 02:18:47.600139+00 629 h8784 h8784 布料 2025-12-09 02:18:47.633819+00 2025-12-09 02:18:47.633823+00 668 宽坑条 宽坑条 布料 2025-12-09 02:18:47.720177+00 2025-12-09 02:18:47.720182+00 774 15A 15A 布料 2025-12-09 02:18:47.841368+00 2025-12-09 02:18:47.841372+00 920 酷丝棉A 酷丝棉A 布料 2025-12-09 02:18:47.922515+00 2025-12-09 02:18:47.922519+00 1002 250克米白卫衣 250克米白卫衣 布料 2025-12-09 02:18:48.785286+00 2025-12-09 02:18:48.78529+00 1084 230克单磨 230克单磨 布料 2025-12-09 02:18:48.837366+00 2025-12-09 02:18:48.83737+00 1140 剪花 剪花 布料 2025-12-09 02:18:49.429732+00 2025-12-09 02:18:49.429736+00 1767 40D 40D 布料 2025-12-09 02:18:50.314987+00 2025-12-09 02:18:50.314991+00 2179 韩国网 韩国网 布料 2025-12-09 02:18:47.021201+00 2025-12-09 02:18:47.021207+00 32 120克本白四面弹单定 120克本白四面弹单定 布料 2025-12-09 02:18:47.022472+00 2025-12-09 02:18:47.022477+00 33 C227婚纱缎 C227婚纱缎 布料 2025-12-09 02:18:47.023733+00 2025-12-09 02:18:47.023739+00 34 220克双磨牛奶丝 220克双磨牛奶丝 布料 2025-12-09 02:18:47.024993+00 2025-12-09 02:18:47.024998+00 35 200克双磨牛奶丝 200克双磨牛奶丝 布料 2025-12-09 02:18:47.02623+00 2025-12-09 02:18:47.026235+00 36 蓝光大白 蓝光大白 布料 2025-12-09 02:18:47.027476+00 2025-12-09 02:18:47.027481+00 37 复合华尔缎 复合华尔缎 布料 2025-12-09 02:18:47.028766+00 2025-12-09 02:18:47.028771+00 38 闪光平布 闪光平布 布料 2025-12-09 02:18:47.030655+00 2025-12-09 02:18:47.030659+00 40 8069无弹竹节 8069无弹竹节 布料 2025-12-09 02:18:47.03148+00 2025-12-09 02:18:47.031484+00 41 HG428# HG428# 布料 2025-12-09 02:18:47.03229+00 2025-12-09 02:18:47.032294+00 42 100D精品平纹四面弹130克039#C 100D精品平纹四面弹130克039#C 布料 2025-12-09 02:18:47.033085+00 2025-12-09 02:18:47.033089+00 43 假冰丝 假冰丝 布料 2025-12-09 02:18:47.033853+00 2025-12-09 02:18:47.033856+00 44 160克70D涤氨 160克70D涤氨 布料 2025-12-09 02:18:47.034684+00 2025-12-09 02:18:47.034688+00 45 匹印 110g 雪纺起版 匹印 110g 雪纺起版 布料 2025-12-09 02:18:47.035505+00 2025-12-09 02:18:47.035509+00 46 36A本白19条X175 36A本白19条X175 布料 2025-12-09 02:18:47.036286+00 2025-12-09 02:18:47.036289+00 47 210克本白牛奶丝双磨 210克本白牛奶丝双磨 布料 2025-12-09 02:18:47.037051+00 2025-12-09 02:18:47.037054+00 48 锦纶冰感 锦纶冰感 布料 2025-12-09 02:18:47.037843+00 2025-12-09 02:18:47.037847+00 49 米兰网 米兰网 布料 2025-12-09 02:18:47.038607+00 2025-12-09 02:18:47.03861+00 50 06-36A本白16码 06-36A本白16码 布料 2025-12-09 02:18:47.039367+00 2025-12-09 02:18:47.039371+00 51 米白韩国网 米白韩国网 布料 2025-12-09 02:18:47.040155+00 2025-12-09 02:18:47.040158+00 52 120克100D加密四面弹 120克100D加密四面弹 布料 2025-12-09 02:18:47.040923+00 2025-12-09 02:18:47.040926+00 53 罗马蓝光大白 罗马蓝光大白 布料 2025-12-09 02:18:47.041876+00 2025-12-09 02:18:47.04188+00 54 15-玉兰稠 白色 15-玉兰稠 白色 布料 2025-12-09 02:18:47.042651+00 2025-12-09 02:18:47.042655+00 55 M3361缎面 M3361缎面 布料 2025-12-09 02:18:47.043404+00 2025-12-09 02:18:47.043407+00 56 单丝足节麻料 单丝足节麻料 布料 2025-12-09 02:18:47.044181+00 2025-12-09 02:18:47.044185+00 57 155克四面弹 155克四面弹 布料 2025-12-09 02:18:47.044958+00 2025-12-09 02:18:47.044961+00 58 120克100D精品平纹四面弹 120克100D精品平纹四面弹 布料 2025-12-09 02:18:47.04572+00 2025-12-09 02:18:47.045723+00 59 240克大白罗马布 240克大白罗马布 布料 2025-12-09 02:18:47.046497+00 2025-12-09 02:18:47.046501+00 60 两款布料 两款布料 布料 2025-12-09 02:18:47.047249+00 2025-12-09 02:18:47.047253+00 61 200克冰丝百褶条 200克冰丝百褶条 布料 2025-12-09 02:18:47.048025+00 2025-12-09 02:18:47.048028+00 62 2*2坑条印花 2*2坑条印花 布料 2025-12-09 02:18:47.049069+00 2025-12-09 02:18:47.049073+00 63 100克弹力色丁 100克弹力色丁 布料 2025-12-09 02:18:47.050118+00 2025-12-09 02:18:47.050122+00 64 36A网布 36A网布 布料 2025-12-09 02:18:47.051175+00 2025-12-09 02:18:47.051178+00 65 105克本白泡泡皱 105克本白泡泡皱 布料 2025-12-09 02:18:47.059442+00 2025-12-09 02:18:47.059449+00 66 雷丝布 雷丝布 布料 2025-12-09 02:18:47.060862+00 2025-12-09 02:18:47.060868+00 67 140克70D涤氨网布 140克70D涤氨网布 布料 2025-12-09 02:18:47.062165+00 2025-12-09 02:18:47.06217+00 68 米白健康布 米白健康布 布料 2025-12-09 02:18:47.063475+00 2025-12-09 02:18:47.06348+00 69 网布40d涤氨花型 网布40d涤氨花型 布料 2025-12-09 02:18:47.064735+00 2025-12-09 02:18:47.064739+00 70 丹麦网 丹麦网 布料 2025-12-09 02:18:47.065727+00 2025-12-09 02:18:47.065731+00 71 70D涤氨网布 70D涤氨网布 布料 2025-12-09 02:18:47.066701+00 2025-12-09 02:18:47.066711+00 72 坑条磨毛 坑条磨毛 布料 2025-12-09 02:18:47.067664+00 2025-12-09 02:18:47.067668+00 73 本厂40D涤氨网 本厂40D涤氨网 布料 2025-12-09 02:18:47.068638+00 2025-12-09 02:18:47.068642+00 74 面料12*4坑条磨毛 面料12*4坑条磨毛 布料 2025-12-09 02:18:47.06962+00 2025-12-09 02:18:47.069624+00 75 100G-弹力色丁(仿真丝)印花 100G-弹力色丁(仿真丝)印花 布料 2025-12-09 02:18:47.070587+00 2025-12-09 02:18:47.070591+00 76 理想泡泡格 理想泡泡格 布料 2025-12-09 02:18:47.071546+00 2025-12-09 02:18:47.07155+00 77 弹力面料 弹力面料 布料 2025-12-09 02:18:47.072722+00 2025-12-09 02:18:47.072726+00 78 弹力色丁(仿真丝) 弹力色丁(仿真丝) 布料 2025-12-09 02:18:47.073681+00 2025-12-09 02:18:47.073686+00 79 提花C227# 提花C227# 布料 2025-12-09 02:18:47.074646+00 2025-12-09 02:18:47.07465+00 80 棉纶冰感 棉纶冰感 布料 2025-12-09 02:18:47.075621+00 2025-12-09 02:18:47.075625+00 81 180克本白坑条2*2 180克本白坑条2*2 布料 2025-12-09 02:18:47.076696+00 2025-12-09 02:18:47.076701+00 82 180克本白坑条212 180克本白坑条212 布料 2025-12-09 02:18:47.077665+00 2025-12-09 02:18:47.07767+00 83 210克大白坑条布 210克大白坑条布 布料 2025-12-09 02:18:47.078632+00 2025-12-09 02:18:47.078636+00 84 粘丝乱麻 粘丝乱麻 布料 2025-12-09 02:18:47.079635+00 2025-12-09 02:18:47.079639+00 85 190克大白卫衣布 190克大白卫衣布 布料 2025-12-09 02:18:47.080483+00 2025-12-09 02:18:47.080487+00 86 200克米白仿棉拉架 200克米白仿棉拉架 布料 2025-12-09 02:18:47.081274+00 2025-12-09 02:18:47.081277+00 87 120克双层四面弹 120克双层四面弹 布料 2025-12-09 02:18:47.082081+00 2025-12-09 02:18:47.082085+00 88 缎面M3361 缎面M3361 布料 2025-12-09 02:18:47.082878+00 2025-12-09 02:18:47.082881+00 89 120克漂白四面弹 120克漂白四面弹 布料 2025-12-09 02:18:47.083652+00 2025-12-09 02:18:47.083655+00 90 105克泡泡皱 105克泡泡皱 布料 2025-12-09 02:18:47.084464+00 2025-12-09 02:18:47.084468+00 91 白色美人条 白色美人条 布料 2025-12-09 02:18:47.08524+00 2025-12-09 02:18:47.085243+00 92 130克半消光破卡 130克半消光破卡 布料 2025-12-09 02:18:47.086018+00 2025-12-09 02:18:47.086022+00 93 提花A82110 提花A82110 布料 2025-12-09 02:18:47.086804+00 2025-12-09 02:18:47.086808+00 94 泡泡皱雪纺 泡泡皱雪纺 布料 2025-12-09 02:18:47.087561+00 2025-12-09 02:18:47.087565+00 95 210克高弹牛奶丝拉架 210克高弹牛奶丝拉架 布料 2025-12-09 02:18:47.088334+00 2025-12-09 02:18:47.088338+00 96 120克加厚四面弹 120克加厚四面弹 布料 2025-12-09 02:18:47.089112+00 2025-12-09 02:18:47.089116+00 97 本白雪纺 本白雪纺 布料 2025-12-09 02:18:47.089989+00 2025-12-09 02:18:47.089994+00 98 白色的美人条 白色的美人条 布料 2025-12-09 02:18:47.091029+00 2025-12-09 02:18:47.091033+00 99 70克油丁布 70克油丁布 布料 2025-12-09 02:18:47.091997+00 2025-12-09 02:18:47.092002+00 100 丝绒烧花 丝绒烧花 布料 2025-12-09 02:18:47.092966+00 2025-12-09 02:18:47.09297+00 101 190大白罗马 190大白罗马 布料 2025-12-09 02:18:47.094096+00 2025-12-09 02:18:47.094101+00 102 韩国绒布 韩国绒布 布料 2025-12-09 02:18:47.095065+00 2025-12-09 02:18:47.095069+00 103 180克乱麻 180克乱麻 布料 2025-12-09 02:18:47.096033+00 2025-12-09 02:18:47.096038+00 104 190克大白卫衣 190克大白卫衣 布料 2025-12-09 02:18:47.097003+00 2025-12-09 02:18:47.097007+00 105 BX锦涤直弹 BX锦涤直弹 布料 2025-12-09 02:18:47.097982+00 2025-12-09 02:18:47.097987+00 106 大白捻丝乱麻 大白捻丝乱麻 布料 2025-12-09 02:18:47.09896+00 2025-12-09 02:18:47.098965+00 107 90克大白纬弹 90克大白纬弹 布料 2025-12-09 02:18:47.099927+00 2025-12-09 02:18:47.099932+00 108 90克本白伟弹 90克本白伟弹 布料 2025-12-09 02:18:47.100899+00 2025-12-09 02:18:47.100904+00 109 250克大白乱麻 250克大白乱麻 布料 2025-12-09 02:18:47.101866+00 2025-12-09 02:18:47.101871+00 110 75D涤氨 75D涤氨 布料 2025-12-09 02:18:47.102853+00 2025-12-09 02:18:47.102857+00 111 提花239c 提花239c 布料 2025-12-09 02:18:47.103825+00 2025-12-09 02:18:47.103829+00 112 提花237# 提花237# 布料 2025-12-09 02:18:47.104798+00 2025-12-09 02:18:47.104803+00 113 提花C226 提花C226 布料 2025-12-09 02:18:47.105769+00 2025-12-09 02:18:47.105774+00 114 本白斜纹磨毛 本白斜纹磨毛 布料 2025-12-09 02:18:47.106732+00 2025-12-09 02:18:47.106736+00 115 D9734 D9734 布料 2025-12-09 02:18:47.107735+00 2025-12-09 02:18:47.10774+00 116 油丁布料 油丁布料 布料 2025-12-09 02:18:47.108715+00 2025-12-09 02:18:47.108719+00 117 160克大白直贡呢 160克大白直贡呢 布料 2025-12-09 02:18:47.109682+00 2025-12-09 02:18:47.109687+00 118 120克四面弹米白 120克四面弹米白 布料 2025-12-09 02:18:47.110659+00 2025-12-09 02:18:47.110663+00 119 120克泡泡皱理想格 120克泡泡皱理想格 布料 2025-12-09 02:18:47.111627+00 2025-12-09 02:18:47.111631+00 120 斜纹卫衣190克 斜纹卫衣190克 布料 2025-12-09 02:18:47.112613+00 2025-12-09 02:18:47.112617+00 121 华棉 华棉 布料 2025-12-09 02:18:47.113598+00 2025-12-09 02:18:47.113603+00 122 120克精品四面弹 120克精品四面弹 布料 2025-12-09 02:18:47.114563+00 2025-12-09 02:18:47.114567+00 123 236c提花 236c提花 布料 2025-12-09 02:18:47.115536+00 2025-12-09 02:18:47.115541+00 124 c226提花 c226提花 布料 2025-12-09 02:18:47.116508+00 2025-12-09 02:18:47.116512+00 125 160G70涤氨网布 160G70涤氨网布 布料 2025-12-09 02:18:47.11747+00 2025-12-09 02:18:47.117475+00 126 广承珍珠雪纺80克 广承珍珠雪纺80克 布料 2025-12-09 02:18:47.118415+00 2025-12-09 02:18:47.11842+00 127 120克四面弹数码 120克四面弹数码 布料 2025-12-09 02:18:47.119265+00 2025-12-09 02:18:47.119269+00 128 200克鹿皮绒 200克鹿皮绒 布料 2025-12-09 02:18:47.120063+00 2025-12-09 02:18:47.120067+00 129 四方绒起杏色 四方绒起杏色 布料 2025-12-09 02:18:47.120859+00 2025-12-09 02:18:47.120863+00 130 四面弹网纱 四面弹网纱 布料 2025-12-09 02:18:47.121642+00 2025-12-09 02:18:47.121645+00 131 本厂弹力锻 本厂弹力锻 布料 2025-12-09 02:18:47.122424+00 2025-12-09 02:18:47.122428+00 132 3366提花 3366提花 布料 2025-12-09 02:18:47.123213+00 2025-12-09 02:18:47.123217+00 133 提花9904 提花9904 布料 2025-12-09 02:18:47.123988+00 2025-12-09 02:18:47.123992+00 134 186#35支仿麻竹节120克 186#35支仿麻竹节120克 布料 2025-12-09 02:18:47.124761+00 2025-12-09 02:18:47.124765+00 135 C227提花 C227提花 布料 2025-12-09 02:18:47.125523+00 2025-12-09 02:18:47.125527+00 136 120克本白泡泡格 120克本白泡泡格 布料 2025-12-09 02:18:47.126291+00 2025-12-09 02:18:47.126295+00 137 雪纺驺底料 雪纺驺底料 布料 2025-12-09 02:18:47.127068+00 2025-12-09 02:18:47.127071+00 138 提花c227 提花c227 布料 2025-12-09 02:18:47.127854+00 2025-12-09 02:18:47.127857+00 139 底布小坑条 底布小坑条 布料 2025-12-09 02:18:47.128721+00 2025-12-09 02:18:47.128725+00 140 杏色底布 杏色底布 布料 2025-12-09 02:18:47.129525+00 2025-12-09 02:18:47.129529+00 141 120G-泡泡格印花 120G-泡泡格印花 布料 2025-12-09 02:18:47.130308+00 2025-12-09 02:18:47.130312+00 142 杏色提花布 杏色提花布 布料 2025-12-09 02:18:47.131093+00 2025-12-09 02:18:47.131097+00 143 杏色提花竹节 杏色提花竹节 布料 2025-12-09 02:18:47.131954+00 2025-12-09 02:18:47.131959+00 144 网纱印花 网纱印花 布料 2025-12-09 02:18:47.132964+00 2025-12-09 02:18:47.132969+00 145 白色金钻绒 白色金钻绒 布料 2025-12-09 02:18:47.133935+00 2025-12-09 02:18:47.13394+00 146 水晶段 水晶段 布料 2025-12-09 02:18:47.134919+00 2025-12-09 02:18:47.134924+00 147 罗马布大白 罗马布大白 布料 2025-12-09 02:18:47.135897+00 2025-12-09 02:18:47.135902+00 148 280克斜纹 280克斜纹 布料 2025-12-09 02:18:47.136875+00 2025-12-09 02:18:47.13688+00 149 130克鸟眼布 130克鸟眼布 布料 2025-12-09 02:18:47.137853+00 2025-12-09 02:18:47.137858+00 150 牛津布幅宽155 牛津布幅宽155 布料 2025-12-09 02:18:47.138815+00 2025-12-09 02:18:47.138819+00 151 280克梭织 280克梭织 布料 2025-12-09 02:18:47.139783+00 2025-12-09 02:18:47.139787+00 152 8028#酷丝棉 8028#酷丝棉 布料 2025-12-09 02:18:47.140765+00 2025-12-09 02:18:47.14077+00 153 花瑶缎 花瑶缎 布料 2025-12-09 02:18:47.141738+00 2025-12-09 02:18:47.141743+00 154 日本抓毛 日本抓毛 布料 2025-12-09 02:18:47.142698+00 2025-12-09 02:18:47.142702+00 155 条纹缎面 条纹缎面 布料 2025-12-09 02:18:47.143662+00 2025-12-09 02:18:47.143667+00 156 锦氨牛奶丝 锦氨牛奶丝 布料 2025-12-09 02:18:47.144635+00 2025-12-09 02:18:47.144639+00 157 高弹冰感 高弹冰感 布料 2025-12-09 02:18:47.145595+00 2025-12-09 02:18:47.145599+00 158 巴黎绉 巴黎绉 布料 2025-12-09 02:18:47.146565+00 2025-12-09 02:18:47.14657+00 159 纱洗细斜 纱洗细斜 布料 2025-12-09 02:18:47.147531+00 2025-12-09 02:18:47.147535+00 160 40D涤纶网 40D涤纶网 布料 2025-12-09 02:18:47.148495+00 2025-12-09 02:18:47.1485+00 161 180克罗马布 180克罗马布 布料 2025-12-09 02:18:47.149468+00 2025-12-09 02:18:47.149473+00 162 涤安气网 涤安气网 布料 2025-12-09 02:18:47.150431+00 2025-12-09 02:18:47.150436+00 163 厚色丁 厚色丁 布料 2025-12-09 02:18:47.306063+00 2025-12-09 02:18:47.306066+00 327 全涤粗针麻 全涤粗针麻 布料 2025-12-09 02:18:47.151386+00 2025-12-09 02:18:47.15139+00 164 水晶缎面复合面料 水晶缎面复合面料 布料 2025-12-09 02:18:47.152368+00 2025-12-09 02:18:47.152372+00 165 砂洗棉锦皱 砂洗棉锦皱 布料 2025-12-09 02:18:47.15334+00 2025-12-09 02:18:47.153345+00 166 雪尼尔提花色布 雪尼尔提花色布 布料 2025-12-09 02:18:47.154295+00 2025-12-09 02:18:47.1543+00 167 本白弹力缎 本白弹力缎 布料 2025-12-09 02:18:47.155263+00 2025-12-09 02:18:47.155268+00 168 50D网纱 50D网纱 布料 2025-12-09 02:18:47.156217+00 2025-12-09 02:18:47.156221+00 169 四方绒 四方绒 布料 2025-12-09 02:18:47.157178+00 2025-12-09 02:18:47.157182+00 170 5085乐丽丝 5085乐丽丝 布料 2025-12-09 02:18:47.158141+00 2025-12-09 02:18:47.158145+00 171 40支仿棉平纹布 40支仿棉平纹布 布料 2025-12-09 02:18:47.159108+00 2025-12-09 02:18:47.159112+00 172 杏色单面尼 杏色单面尼 布料 2025-12-09 02:18:47.160083+00 2025-12-09 02:18:47.160088+00 173 格子毛毛布 格子毛毛布 布料 2025-12-09 02:18:47.161047+00 2025-12-09 02:18:47.161051+00 174 8013高品质全工艺棉锦绉 8013高品质全工艺棉锦绉 布料 2025-12-09 02:18:47.162022+00 2025-12-09 02:18:47.162026+00 175 布料编号4438# 50号 布料编号4438# 50号 布料 2025-12-09 02:18:47.163012+00 2025-12-09 02:18:47.163016+00 176 40网布 40网布 布料 2025-12-09 02:18:47.163985+00 2025-12-09 02:18:47.163989+00 177 布料编号1015 布料编号1015 布料 2025-12-09 02:18:47.164953+00 2025-12-09 02:18:47.164957+00 178 200克直贡尼 200克直贡尼 布料 2025-12-09 02:18:47.165917+00 2025-12-09 02:18:47.165922+00 179 不复合水晶段 不复合水晶段 布料 2025-12-09 02:18:47.166882+00 2025-12-09 02:18:47.166886+00 180 蚨昕布 蚨昕布 布料 2025-12-09 02:18:47.167845+00 2025-12-09 02:18:47.167849+00 181 布料编号800# 布料编号800# 布料 2025-12-09 02:18:47.168813+00 2025-12-09 02:18:47.168817+00 182 260克鸟眼布 260克鸟眼布 布料 2025-12-09 02:18:47.169767+00 2025-12-09 02:18:47.169772+00 183 龙凤布 龙凤布 布料 2025-12-09 02:18:47.17074+00 2025-12-09 02:18:47.170743+00 184 230克本白牛奶丝 230克本白牛奶丝 布料 2025-12-09 02:18:47.171711+00 2025-12-09 02:18:47.171715+00 185 咖色双面德绒 咖色双面德绒 布料 2025-12-09 02:18:47.172675+00 2025-12-09 02:18:47.17268+00 186 水光缎 水光缎 布料 2025-12-09 02:18:47.173659+00 2025-12-09 02:18:47.173663+00 187 全涤精品仿棉 全涤精品仿棉 布料 2025-12-09 02:18:47.174625+00 2025-12-09 02:18:47.174629+00 188 123123123 123123123 布料 2025-12-09 02:18:47.175595+00 2025-12-09 02:18:47.175599+00 189 250克乱麻 250克乱麻 布料 2025-12-09 02:18:47.176576+00 2025-12-09 02:18:47.17658+00 190 95克花瑶皱 95克花瑶皱 布料 2025-12-09 02:18:47.179104+00 2025-12-09 02:18:47.179109+00 192 123 123 布料 2025-12-09 02:18:47.18035+00 2025-12-09 02:18:47.180355+00 193 12 12 布料 2025-12-09 02:18:47.181594+00 2025-12-09 02:18:47.181598+00 194 11 11 布料 2025-12-09 02:18:47.182836+00 2025-12-09 02:18:47.182841+00 195 140G牛奶丝 140G牛奶丝 布料 2025-12-09 02:18:47.184079+00 2025-12-09 02:18:47.184083+00 196 140克本厂四面弹 140克本厂四面弹 布料 2025-12-09 02:18:47.185347+00 2025-12-09 02:18:47.185351+00 197 130克本白半消光破卡 130克本白半消光破卡 布料 2025-12-09 02:18:47.186595+00 2025-12-09 02:18:47.186599+00 198 100D双斜套 100D双斜套 布料 2025-12-09 02:18:47.187572+00 2025-12-09 02:18:47.187576+00 199 260克大白鸟眼布 260克大白鸟眼布 布料 2025-12-09 02:18:47.188536+00 2025-12-09 02:18:47.18854+00 200 提花绒底 提花绒底 布料 2025-12-09 02:18:47.189571+00 2025-12-09 02:18:47.189575+00 201 33斜 33斜 布料 2025-12-09 02:18:47.190557+00 2025-12-09 02:18:47.19056+00 202 230大白罗马布 230大白罗马布 布料 2025-12-09 02:18:47.191523+00 2025-12-09 02:18:47.191528+00 203 棉感 棉感 布料 2025-12-09 02:18:47.192496+00 2025-12-09 02:18:47.1925+00 204 牛奶丝码数 牛奶丝码数 布料 2025-12-09 02:18:47.193465+00 2025-12-09 02:18:47.193469+00 205 单定120克四面弹 单定120克四面弹 布料 2025-12-09 02:18:47.194448+00 2025-12-09 02:18:47.194453+00 206 梭织皱布 梭织皱布 布料 2025-12-09 02:18:47.195422+00 2025-12-09 02:18:47.195427+00 207 乐丽丝三三斜 乐丽丝三三斜 布料 2025-12-09 02:18:47.196387+00 2025-12-09 02:18:47.196392+00 208 250克米白日本卫衣 250克米白日本卫衣 布料 2025-12-09 02:18:47.197356+00 2025-12-09 02:18:47.19736+00 209 120克兰光白四面弹 120克兰光白四面弹 布料 2025-12-09 02:18:47.198236+00 2025-12-09 02:18:47.19824+00 210 100D米白加密雪纺 100D米白加密雪纺 布料 2025-12-09 02:18:47.199063+00 2025-12-09 02:18:47.199067+00 211 黄色底灯芯绒 黄色底灯芯绒 布料 2025-12-09 02:18:47.199872+00 2025-12-09 02:18:47.199876+00 212 小卫衣拉架 小卫衣拉架 布料 2025-12-09 02:18:47.200707+00 2025-12-09 02:18:47.200712+00 213 40D本白涤氨网布 40D本白涤氨网布 布料 2025-12-09 02:18:47.201516+00 2025-12-09 02:18:47.20152+00 214 T391#酷丝棉 T391#酷丝棉 布料 2025-12-09 02:18:47.20232+00 2025-12-09 02:18:47.202324+00 215 190克流线棉 190克流线棉 布料 2025-12-09 02:18:47.203125+00 2025-12-09 02:18:47.203129+00 216 34号珍珠雪纺 34号珍珠雪纺 布料 2025-12-09 02:18:47.203944+00 2025-12-09 02:18:47.203948+00 217 53号冰丝皱 53号冰丝皱 布料 2025-12-09 02:18:47.204739+00 2025-12-09 02:18:47.204743+00 218 120克黑色四面弹 120克黑色四面弹 布料 2025-12-09 02:18:47.205544+00 2025-12-09 02:18:47.205548+00 219 200克本白卫衣 200克本白卫衣 布料 2025-12-09 02:18:47.206348+00 2025-12-09 02:18:47.206352+00 220 编号627 编号627 布料 2025-12-09 02:18:47.207154+00 2025-12-09 02:18:47.207158+00 221 100D高密雪纺 100D高密雪纺 布料 2025-12-09 02:18:47.208192+00 2025-12-09 02:18:47.208196+00 222 米白斜纹段 米白斜纹段 布料 2025-12-09 02:18:47.209023+00 2025-12-09 02:18:47.209026+00 223 百合段 百合段 布料 2025-12-09 02:18:47.209833+00 2025-12-09 02:18:47.209837+00 224 米白针织弹力色丁 米白针织弹力色丁 布料 2025-12-09 02:18:47.210622+00 2025-12-09 02:18:47.210626+00 225 1号布2447# 1号布2447# 布料 2025-12-09 02:18:47.211427+00 2025-12-09 02:18:47.211431+00 226 2号布M17# 2号布M17# 布料 2025-12-09 02:18:47.212229+00 2025-12-09 02:18:47.212233+00 227 3号布小米子 3号布小米子 布料 2025-12-09 02:18:47.213027+00 2025-12-09 02:18:47.213031+00 228 4号布小蜘蛛 4号布小蜘蛛 布料 2025-12-09 02:18:47.213833+00 2025-12-09 02:18:47.213837+00 229 110克蓝光大白四面弹 110克蓝光大白四面弹 布料 2025-12-09 02:18:47.214631+00 2025-12-09 02:18:47.214635+00 230 210克本白坑条 210克本白坑条 布料 2025-12-09 02:18:47.21544+00 2025-12-09 02:18:47.215445+00 231 300克罗马布 300克罗马布 布料 2025-12-09 02:18:47.216231+00 2025-12-09 02:18:47.216235+00 232 本白弹力双绉 本白弹力双绉 布料 2025-12-09 02:18:47.21705+00 2025-12-09 02:18:47.217054+00 233 CC 提花布 CC 提花布 布料 2025-12-09 02:18:47.217838+00 2025-12-09 02:18:47.217842+00 234 本白卫衣布 本白卫衣布 布料 2025-12-09 02:18:47.218643+00 2025-12-09 02:18:47.218646+00 235 本白卫衣 本白卫衣 布料 2025-12-09 02:18:47.219454+00 2025-12-09 02:18:47.219458+00 236 本白婚纱缎 本白婚纱缎 布料 2025-12-09 02:18:47.220252+00 2025-12-09 02:18:47.220255+00 237 Z6807#25#棕 Z6807#25#棕 布料 2025-12-09 02:18:47.221054+00 2025-12-09 02:18:47.221057+00 238 50D本白四面弹 50D本白四面弹 布料 2025-12-09 02:18:47.221853+00 2025-12-09 02:18:47.221857+00 239 200克健康布 200克健康布 布料 2025-12-09 02:18:47.222641+00 2025-12-09 02:18:47.222645+00 240 酷丝棉2/1 酷丝棉2/1 布料 2025-12-09 02:18:47.223438+00 2025-12-09 02:18:47.223441+00 241 230克米白小卫衣拉架 230克米白小卫衣拉架 布料 2025-12-09 02:18:47.224234+00 2025-12-09 02:18:47.224238+00 242 8070缎面 8070缎面 布料 2025-12-09 02:18:47.225017+00 2025-12-09 02:18:47.225021+00 243 水晶超柔 水晶超柔 布料 2025-12-09 02:18:47.225821+00 2025-12-09 02:18:47.225825+00 244 50D纬捻仿记忆 50D纬捻仿记忆 布料 2025-12-09 02:18:47.226606+00 2025-12-09 02:18:47.226609+00 245 消光骑兵斜纹 消光骑兵斜纹 布料 2025-12-09 02:18:47.227631+00 2025-12-09 02:18:47.227635+00 246 奥迪条 奥迪条 布料 2025-12-09 02:18:47.228449+00 2025-12-09 02:18:47.228453+00 247 260克70D双层四面弹 260克70D双层四面弹 布料 2025-12-09 02:18:47.229259+00 2025-12-09 02:18:47.229263+00 248 170克直贡尼 170克直贡尼 布料 2025-12-09 02:18:47.230062+00 2025-12-09 02:18:47.230066+00 249 CEY中毛球 CEY中毛球 布料 2025-12-09 02:18:47.230852+00 2025-12-09 02:18:47.230855+00 250 130克本白玲珑麻 130克本白玲珑麻 布料 2025-12-09 02:18:47.231652+00 2025-12-09 02:18:47.231656+00 251 250克米白健康布 250克米白健康布 布料 2025-12-09 02:18:47.232445+00 2025-12-09 02:18:47.232449+00 252 柔美尼 柔美尼 布料 2025-12-09 02:18:47.233253+00 2025-12-09 02:18:47.233256+00 253 杏色底鹿皮绒空气层 杏色底鹿皮绒空气层 布料 2025-12-09 02:18:47.234063+00 2025-12-09 02:18:47.234068+00 254 深咖色底鹿皮绒空气层 深咖色底鹿皮绒空气层 布料 2025-12-09 02:18:47.234958+00 2025-12-09 02:18:47.234961+00 255 高密乱麻 高密乱麻 布料 2025-12-09 02:18:47.235947+00 2025-12-09 02:18:47.235951+00 256 190克健康布 190克健康布 布料 2025-12-09 02:18:47.236917+00 2025-12-09 02:18:47.236922+00 257 彩色灯芯绒 彩色灯芯绒 布料 2025-12-09 02:18:47.237891+00 2025-12-09 02:18:47.237896+00 258 40D米白涤氨 40D米白涤氨 布料 2025-12-09 02:18:47.238856+00 2025-12-09 02:18:47.23886+00 259 S755# S755# 布料 2025-12-09 02:18:47.239826+00 2025-12-09 02:18:47.239831+00 260 170克本白牛奶丝抓毛 170克本白牛奶丝抓毛 布料 2025-12-09 02:18:47.240808+00 2025-12-09 02:18:47.240813+00 261 170克超柔大白牛奶丝 170克超柔大白牛奶丝 布料 2025-12-09 02:18:47.241786+00 2025-12-09 02:18:47.24179+00 262 180克本白牛奶丝双磨 180克本白牛奶丝双磨 布料 2025-12-09 02:18:47.242745+00 2025-12-09 02:18:47.242749+00 263 120克大白四面弹(蓝光白) 120克大白四面弹(蓝光白) 布料 2025-12-09 02:18:47.243715+00 2025-12-09 02:18:47.243719+00 264 170克大白牛奶丝双磨 170克大白牛奶丝双磨 布料 2025-12-09 02:18:47.244683+00 2025-12-09 02:18:47.244687+00 265 TR417 平纹酷丝棉 TR417 平纹酷丝棉 布料 2025-12-09 02:18:47.245653+00 2025-12-09 02:18:47.245657+00 266 180克大白牛奶丝 180克大白牛奶丝 布料 2025-12-09 02:18:47.246621+00 2025-12-09 02:18:47.246626+00 267 米白坑条布 米白坑条布 布料 2025-12-09 02:18:47.247589+00 2025-12-09 02:18:47.247593+00 268 本白百合缎 本白百合缎 布料 2025-12-09 02:18:47.248578+00 2025-12-09 02:18:47.248582+00 269 400克大白色复合创新革 400克大白色复合创新革 布料 2025-12-09 02:18:47.249555+00 2025-12-09 02:18:47.24956+00 270 米白酷丝棉 米白酷丝棉 布料 2025-12-09 02:18:47.250513+00 2025-12-09 02:18:47.250517+00 271 140克大白鸟眼布 140克大白鸟眼布 布料 2025-12-09 02:18:47.251499+00 2025-12-09 02:18:47.251503+00 272 本白韩国网 本白韩国网 布料 2025-12-09 02:18:47.252477+00 2025-12-09 02:18:47.252481+00 273 110克涤安 110克涤安 布料 2025-12-09 02:18:47.253449+00 2025-12-09 02:18:47.253453+00 274 大网纱 大网纱 布料 2025-12-09 02:18:47.254415+00 2025-12-09 02:18:47.254419+00 275 1057#底布 1057#底布 布料 2025-12-09 02:18:47.255384+00 2025-12-09 02:18:47.255389+00 276 130克大白消光破卡 130克大白消光破卡 布料 2025-12-09 02:18:47.256356+00 2025-12-09 02:18:47.256361+00 277 651#麻棉布 651#麻棉布 布料 2025-12-09 02:18:47.257316+00 2025-12-09 02:18:47.25732+00 278 130克大白四面弹 130克大白四面弹 布料 2025-12-09 02:18:47.258283+00 2025-12-09 02:18:47.258288+00 279 200克米白罗马布 200克米白罗马布 布料 2025-12-09 02:18:47.259243+00 2025-12-09 02:18:47.259247+00 280 M3361#米白缎面 M3361#米白缎面 布料 2025-12-09 02:18:47.260201+00 2025-12-09 02:18:47.260205+00 281 桃心格 桃心格 布料 2025-12-09 02:18:47.261155+00 2025-12-09 02:18:47.261159+00 282 格子平泡泡 格子平泡泡 布料 2025-12-09 02:18:47.262124+00 2025-12-09 02:18:47.262129+00 283 830米白醋酸缎 830米白醋酸缎 布料 2025-12-09 02:18:47.263109+00 2025-12-09 02:18:47.263114+00 284 250克复合破卡 250克复合破卡 布料 2025-12-09 02:18:47.264082+00 2025-12-09 02:18:47.264086+00 285 醋酸单面麻米白 醋酸单面麻米白 布料 2025-12-09 02:18:47.265048+00 2025-12-09 02:18:47.265053+00 286 250克小卫衣 250克小卫衣 布料 2025-12-09 02:18:47.266027+00 2025-12-09 02:18:47.266032+00 287 115克酷丝棉平纹 115克酷丝棉平纹 布料 2025-12-09 02:18:47.267004+00 2025-12-09 02:18:47.267009+00 288 平板布 平板布 布料 2025-12-09 02:18:47.26798+00 2025-12-09 02:18:47.267984+00 289 厚四面弹 厚四面弹 布料 2025-12-09 02:18:47.268956+00 2025-12-09 02:18:47.26896+00 290 绉绉布 绉绉布 布料 2025-12-09 02:18:47.269926+00 2025-12-09 02:18:47.269931+00 291 丝光卫衣 丝光卫衣 布料 2025-12-09 02:18:47.270905+00 2025-12-09 02:18:47.270909+00 292 本白云朵棉 本白云朵棉 布料 2025-12-09 02:18:47.271882+00 2025-12-09 02:18:47.271886+00 293 40D本白涤安 40D本白涤安 布料 2025-12-09 02:18:47.272865+00 2025-12-09 02:18:47.272869+00 294 20D本白涤安 20D本白涤安 布料 2025-12-09 02:18:47.273846+00 2025-12-09 02:18:47.27385+00 295 玉米格 玉米格 布料 2025-12-09 02:18:47.274821+00 2025-12-09 02:18:47.274826+00 296 200克短纤卫衣布 200克短纤卫衣布 布料 2025-12-09 02:18:47.275791+00 2025-12-09 02:18:47.275795+00 297 亿程G34 亿程G34 布料 2025-12-09 02:18:47.276763+00 2025-12-09 02:18:47.276768+00 298 120克直贡尼 120克直贡尼 布料 2025-12-09 02:18:47.277735+00 2025-12-09 02:18:47.277739+00 299 130克本白全消光破卡 130克本白全消光破卡 布料 2025-12-09 02:18:47.278728+00 2025-12-09 02:18:47.278732+00 300 180克摇粒绒 180克摇粒绒 布料 2025-12-09 02:18:47.279692+00 2025-12-09 02:18:47.279697+00 301 韩国网纱 韩国网纱 布料 2025-12-09 02:18:47.280662+00 2025-12-09 02:18:47.280666+00 302 230克本白卫衣拉架 230克本白卫衣拉架 布料 2025-12-09 02:18:47.281629+00 2025-12-09 02:18:47.281633+00 303 200克牛奶丝大白 200克牛奶丝大白 布料 2025-12-09 02:18:47.282605+00 2025-12-09 02:18:47.282609+00 304 200克卫衣布 200克卫衣布 布料 2025-12-09 02:18:47.283572+00 2025-12-09 02:18:47.283576+00 305 CC提花布 CC提花布 布料 2025-12-09 02:18:47.284559+00 2025-12-09 02:18:47.284563+00 306 骑兵斜纹 骑兵斜纹 布料 2025-12-09 02:18:47.285528+00 2025-12-09 02:18:47.285532+00 307 用仿棉面料 用仿棉面料 布料 2025-12-09 02:18:47.286492+00 2025-12-09 02:18:47.286496+00 308 韩国网米白 韩国网米白 布料 2025-12-09 02:18:47.287468+00 2025-12-09 02:18:47.287472+00 309 四面弹开版 四面弹开版 布料 2025-12-09 02:18:47.288428+00 2025-12-09 02:18:47.288432+00 310 140克鸟眼 140克鸟眼 布料 2025-12-09 02:18:47.289383+00 2025-12-09 02:18:47.289388+00 311 140克鸟眼布 140克鸟眼布 布料 2025-12-09 02:18:47.290355+00 2025-12-09 02:18:47.29036+00 312 雪纺版 雪纺版 布料 2025-12-09 02:18:47.291313+00 2025-12-09 02:18:47.291317+00 313 高密120克四面弹 高密120克四面弹 布料 2025-12-09 02:18:47.292282+00 2025-12-09 02:18:47.292286+00 314 110克特白四面弹100D 110克特白四面弹100D 布料 2025-12-09 02:18:47.293243+00 2025-12-09 02:18:47.293247+00 315 120克本白四面弹100D 120克本白四面弹100D 布料 2025-12-09 02:18:47.294206+00 2025-12-09 02:18:47.29421+00 316 加厚牛奶丝单磨 加厚牛奶丝单磨 布料 2025-12-09 02:18:47.295172+00 2025-12-09 02:18:47.295176+00 317 四面弹120D 四面弹120D 布料 2025-12-09 02:18:47.296141+00 2025-12-09 02:18:47.296145+00 318 玫瑰缎本白 玫瑰缎本白 布料 2025-12-09 02:18:47.297379+00 2025-12-09 02:18:47.297383+00 319 天盛120大白 天盛120大白 布料 2025-12-09 02:18:47.298604+00 2025-12-09 02:18:47.298608+00 320 捻丝 捻丝 布料 2025-12-09 02:18:47.299747+00 2025-12-09 02:18:47.299751+00 321 亮面弹力缎 亮面弹力缎 布料 2025-12-09 02:18:47.300861+00 2025-12-09 02:18:47.300865+00 322 面料抓毛 面料抓毛 布料 2025-12-09 02:18:47.301969+00 2025-12-09 02:18:47.301973+00 323 100竹节罗纹 100竹节罗纹 布料 2025-12-09 02:18:47.303049+00 2025-12-09 02:18:47.303053+00 324 竹节螺纹 竹节螺纹 布料 2025-12-09 02:18:47.30417+00 2025-12-09 02:18:47.304174+00 325 75D双面四面弹 75D双面四面弹 布料 2025-12-09 02:18:47.305245+00 2025-12-09 02:18:47.305249+00 326 250健康布 250健康布 布料 2025-12-09 02:18:47.306855+00 2025-12-09 02:18:47.306859+00 328 双色罗马抓毛 双色罗马抓毛 布料 2025-12-09 02:18:47.307673+00 2025-12-09 02:18:47.307677+00 329 B乐丽丝斜软 B乐丽丝斜软 布料 2025-12-09 02:18:47.308481+00 2025-12-09 02:18:47.308485+00 330 新光缎 新光缎 布料 2025-12-09 02:18:47.309279+00 2025-12-09 02:18:47.309283+00 331 泡泡条纹 泡泡条纹 布料 2025-12-09 02:18:47.310094+00 2025-12-09 02:18:47.310098+00 332 180克本白牛奶丝拉架 180克本白牛奶丝拉架 布料 2025-12-09 02:18:47.310904+00 2025-12-09 02:18:47.310908+00 333 100D四米面弹白印 100D四米面弹白印 布料 2025-12-09 02:18:47.311741+00 2025-12-09 02:18:47.311745+00 334 160克大白鸟眼布 160克大白鸟眼布 布料 2025-12-09 02:18:47.312726+00 2025-12-09 02:18:47.312731+00 335 180克无安空气层 180克无安空气层 布料 2025-12-09 02:18:47.313694+00 2025-12-09 02:18:47.313698+00 336 无安空气层 无安空气层 布料 2025-12-09 02:18:47.31466+00 2025-12-09 02:18:47.314664+00 337 精品天丝棉米白 精品天丝棉米白 布料 2025-12-09 02:18:47.315635+00 2025-12-09 02:18:47.315639+00 338 涤贡 涤贡 布料 2025-12-09 02:18:47.316599+00 2025-12-09 02:18:47.316604+00 339 防棉 防棉 布料 2025-12-09 02:18:47.31756+00 2025-12-09 02:18:47.317565+00 340 小方格提花布 小方格提花布 布料 2025-12-09 02:18:47.318535+00 2025-12-09 02:18:47.318539+00 341 250米白健康布印豹纹 250米白健康布印豹纹 布料 2025-12-09 02:18:47.341539+00 2025-12-09 02:18:47.341544+00 342 酷酸单面麻米白 酷酸单面麻米白 布料 2025-12-09 02:18:47.342514+00 2025-12-09 02:18:47.342519+00 343 直贡尼 直贡尼 布料 2025-12-09 02:18:47.343478+00 2025-12-09 02:18:47.343483+00 344 螺纹坑条 螺纹坑条 布料 2025-12-09 02:18:47.344439+00 2025-12-09 02:18:47.344443+00 345 佐织麻 佐织麻 布料 2025-12-09 02:18:47.345413+00 2025-12-09 02:18:47.345417+00 346 230克本白牛奶丝单磨 230克本白牛奶丝单磨 布料 2025-12-09 02:18:47.346369+00 2025-12-09 02:18:47.346373+00 347 牛奶丝230G单磨 牛奶丝230G单磨 布料 2025-12-09 02:18:47.347339+00 2025-12-09 02:18:47.347343+00 348 涤防麻 涤防麻 布料 2025-12-09 02:18:47.348305+00 2025-12-09 02:18:47.348309+00 349 120克蓝光大白四面弹 120克蓝光大白四面弹 布料 2025-12-09 02:18:47.349272+00 2025-12-09 02:18:47.349276+00 350 涤氨直供尼 涤氨直供尼 布料 2025-12-09 02:18:47.350226+00 2025-12-09 02:18:47.350231+00 351 本白酷丝棉 本白酷丝棉 布料 2025-12-09 02:18:47.351183+00 2025-12-09 02:18:47.351187+00 352 40d涤安 40d涤安 布料 2025-12-09 02:18:47.352146+00 2025-12-09 02:18:47.35215+00 353 编号S746 编号S746 布料 2025-12-09 02:18:47.353121+00 2025-12-09 02:18:47.353125+00 354 竖条皱 竖条皱 布料 2025-12-09 02:18:47.354087+00 2025-12-09 02:18:47.354091+00 355 160克鸟眼 160克鸟眼 布料 2025-12-09 02:18:47.355054+00 2025-12-09 02:18:47.355058+00 356 120克四面弹大白 120克四面弹大白 布料 2025-12-09 02:18:47.356034+00 2025-12-09 02:18:47.356038+00 357 洗水皱面料 洗水皱面料 布料 2025-12-09 02:18:47.356999+00 2025-12-09 02:18:47.357004+00 358 涤安网 涤安网 布料 2025-12-09 02:18:47.357963+00 2025-12-09 02:18:47.357967+00 359 亮丝雪纺 亮丝雪纺 布料 2025-12-09 02:18:47.358936+00 2025-12-09 02:18:47.35894+00 360 冰感丝 冰感丝 布料 2025-12-09 02:18:47.359898+00 2025-12-09 02:18:47.359903+00 361 1020克本白四面弹 1020克本白四面弹 布料 2025-12-09 02:18:47.36087+00 2025-12-09 02:18:47.360874+00 362 200克罗马布 200克罗马布 布料 2025-12-09 02:18:47.361851+00 2025-12-09 02:18:47.361856+00 363 TR面料 TR面料 布料 2025-12-09 02:18:47.362816+00 2025-12-09 02:18:47.36282+00 364 16支仿麻竹节 16支仿麻竹节 布料 2025-12-09 02:18:47.363788+00 2025-12-09 02:18:47.363793+00 365 酷丝绵卫衣 酷丝绵卫衣 布料 2025-12-09 02:18:47.364855+00 2025-12-09 02:18:47.36486+00 366 140克大白四面弹 140克大白四面弹 布料 2025-12-09 02:18:47.365823+00 2025-12-09 02:18:47.365828+00 367 韩国韩国银线网布米白 韩国韩国银线网布米白 布料 2025-12-09 02:18:47.366783+00 2025-12-09 02:18:47.366788+00 368 120克的四面弹 120克的四面弹 布料 2025-12-09 02:18:47.36776+00 2025-12-09 02:18:47.367764+00 369 230牛奶丝 230牛奶丝 布料 2025-12-09 02:18:47.368727+00 2025-12-09 02:18:47.368731+00 370 流光缎 流光缎 布料 2025-12-09 02:18:47.369671+00 2025-12-09 02:18:47.369675+00 371 1770阳光麻 1770阳光麻 布料 2025-12-09 02:18:47.370653+00 2025-12-09 02:18:47.370657+00 372 大白仿麻料 大白仿麻料 布料 2025-12-09 02:18:47.371629+00 2025-12-09 02:18:47.371633+00 373 高密珍珠米白 高密珍珠米白 布料 2025-12-09 02:18:47.372585+00 2025-12-09 02:18:47.37259+00 374 锦丝皱米白 锦丝皱米白 布料 2025-12-09 02:18:47.373561+00 2025-12-09 02:18:47.373565+00 375 冰丝邹 冰丝邹 布料 2025-12-09 02:18:47.374522+00 2025-12-09 02:18:47.374526+00 376 230克大白全涤帆布 230克大白全涤帆布 布料 2025-12-09 02:18:47.375498+00 2025-12-09 02:18:47.375502+00 377 大白全涤帆布 大白全涤帆布 布料 2025-12-09 02:18:47.376468+00 2025-12-09 02:18:47.376472+00 378 160克鸟眼大白 160克鸟眼大白 布料 2025-12-09 02:18:47.377417+00 2025-12-09 02:18:47.377421+00 379 棉拉架 棉拉架 布料 2025-12-09 02:18:47.378383+00 2025-12-09 02:18:47.378388+00 380 200克小卫衣 200克小卫衣 布料 2025-12-09 02:18:47.379348+00 2025-12-09 02:18:47.379352+00 381 200克大白空气层 200克大白空气层 布料 2025-12-09 02:18:47.380309+00 2025-12-09 02:18:47.380313+00 382 120克平纹酷丝棉 120克平纹酷丝棉 布料 2025-12-09 02:18:47.381284+00 2025-12-09 02:18:47.381288+00 383 竹节网布 竹节网布 布料 2025-12-09 02:18:47.382243+00 2025-12-09 02:18:47.382248+00 384 160克仿麻条 160克仿麻条 布料 2025-12-09 02:18:47.383212+00 2025-12-09 02:18:47.383217+00 385 135克酷丝棉 135克酷丝棉 布料 2025-12-09 02:18:47.384165+00 2025-12-09 02:18:47.384169+00 386 200克捻丝罗马 200克捻丝罗马 布料 2025-12-09 02:18:47.385122+00 2025-12-09 02:18:47.385127+00 387 200克捻丝乱麻 200克捻丝乱麻 布料 2025-12-09 02:18:47.386099+00 2025-12-09 02:18:47.386103+00 388 复合水晶缎 复合水晶缎 布料 2025-12-09 02:18:47.387071+00 2025-12-09 02:18:47.387076+00 389 160克鸟眼布 160克鸟眼布 布料 2025-12-09 02:18:47.388131+00 2025-12-09 02:18:47.388135+00 390 流星条 流星条 布料 2025-12-09 02:18:47.389101+00 2025-12-09 02:18:47.389105+00 391 南韩丝 南韩丝 布料 2025-12-09 02:18:47.390071+00 2025-12-09 02:18:47.390075+00 392 不复合水晶缎 不复合水晶缎 布料 2025-12-09 02:18:47.391035+00 2025-12-09 02:18:47.39104+00 393 网红棉 网红棉 布料 2025-12-09 02:18:47.392013+00 2025-12-09 02:18:47.392018+00 394 网红棉做豹纹 网红棉做豹纹 布料 2025-12-09 02:18:47.392971+00 2025-12-09 02:18:47.392975+00 395 清爽棉 清爽棉 布料 2025-12-09 02:18:47.393941+00 2025-12-09 02:18:47.393945+00 396 泳衣面料 泳衣面料 布料 2025-12-09 02:18:47.394914+00 2025-12-09 02:18:47.394918+00 397 120克大白四面弹印花 120克大白四面弹印花 布料 2025-12-09 02:18:47.395882+00 2025-12-09 02:18:47.395886+00 398 230克大白罗马印花 230克大白罗马印花 布料 2025-12-09 02:18:47.396844+00 2025-12-09 02:18:47.396849+00 399 260克卫衣拉架 260克卫衣拉架 布料 2025-12-09 02:18:47.397817+00 2025-12-09 02:18:47.397822+00 400 170克超柔大白牛奶丝磨毛 170克超柔大白牛奶丝磨毛 布料 2025-12-09 02:18:47.398723+00 2025-12-09 02:18:47.398727+00 401 180克四面弹 180克四面弹 布料 2025-12-09 02:18:47.399543+00 2025-12-09 02:18:47.399546+00 402 260克卫衣拉架米白色 260克卫衣拉架米白色 布料 2025-12-09 02:18:47.400371+00 2025-12-09 02:18:47.400375+00 403 米白芙蓉麻 米白芙蓉麻 布料 2025-12-09 02:18:47.401193+00 2025-12-09 02:18:47.401197+00 404 160克大白鸟眼 160克大白鸟眼 布料 2025-12-09 02:18:47.402005+00 2025-12-09 02:18:47.402009+00 405 8064骑兵斜纹 8064骑兵斜纹 布料 2025-12-09 02:18:47.402821+00 2025-12-09 02:18:47.402825+00 406 小方格 小方格 布料 2025-12-09 02:18:47.403633+00 2025-12-09 02:18:47.403637+00 407 呢料 呢料 布料 2025-12-09 02:18:47.404441+00 2025-12-09 02:18:47.404445+00 408 仿棉空气层 仿棉空气层 布料 2025-12-09 02:18:47.405322+00 2025-12-09 02:18:47.405327+00 409 120D米白四面弹 120D米白四面弹 布料 2025-12-09 02:18:47.406954+00 2025-12-09 02:18:47.406958+00 411 树条皱 树条皱 布料 2025-12-09 02:18:47.407761+00 2025-12-09 02:18:47.407764+00 412 哑光色丁 哑光色丁 布料 2025-12-09 02:18:47.408569+00 2025-12-09 02:18:47.408573+00 413 大白弹力色丁 大白弹力色丁 布料 2025-12-09 02:18:47.409476+00 2025-12-09 02:18:47.40948+00 414 弹力峰巢 弹力峰巢 布料 2025-12-09 02:18:47.410291+00 2025-12-09 02:18:47.410295+00 415 白色网布 白色网布 布料 2025-12-09 02:18:47.411077+00 2025-12-09 02:18:47.411081+00 416 酷丝棉卫衣 酷丝棉卫衣 布料 2025-12-09 02:18:47.411877+00 2025-12-09 02:18:47.411881+00 417 普通珍珠雪纺 普通珍珠雪纺 布料 2025-12-09 02:18:47.412673+00 2025-12-09 02:18:47.412677+00 418 170克大白牛奶丝磨毛 170克大白牛奶丝磨毛 布料 2025-12-09 02:18:47.413529+00 2025-12-09 02:18:47.413533+00 419 细线格 细线格 布料 2025-12-09 02:18:47.414343+00 2025-12-09 02:18:47.414347+00 420 40D涤纶 40D涤纶 布料 2025-12-09 02:18:47.415151+00 2025-12-09 02:18:47.415155+00 421 230克蓝光大白 全涤帆布 230克蓝光大白 全涤帆布 布料 2025-12-09 02:18:47.416034+00 2025-12-09 02:18:47.416039+00 422 s409 s409 布料 2025-12-09 02:18:47.417024+00 2025-12-09 02:18:47.417028+00 423 雪花皱 雪花皱 布料 2025-12-09 02:18:47.417988+00 2025-12-09 02:18:47.417992+00 424 米白皱布泡泡 米白皱布泡泡 布料 2025-12-09 02:18:47.418951+00 2025-12-09 02:18:47.418955+00 425 大泡格 大泡格 布料 2025-12-09 02:18:47.419916+00 2025-12-09 02:18:47.41992+00 426 S66 S66 布料 2025-12-09 02:18:47.420858+00 2025-12-09 02:18:47.420862+00 427 8坑 8坑 布料 2025-12-09 02:18:47.421799+00 2025-12-09 02:18:47.421803+00 428 634 634 布料 2025-12-09 02:18:47.422748+00 2025-12-09 02:18:47.422752+00 429 绿色酷似棉 绿色酷似棉 布料 2025-12-09 02:18:47.423688+00 2025-12-09 02:18:47.423692+00 430 亮光缎面提花 亮光缎面提花 布料 2025-12-09 02:18:47.424639+00 2025-12-09 02:18:47.424644+00 431 95克色丁 95克色丁 布料 2025-12-09 02:18:47.42558+00 2025-12-09 02:18:47.425584+00 432 100D120克面弹 100D120克面弹 布料 2025-12-09 02:18:47.426537+00 2025-12-09 02:18:47.426542+00 433 香奈儿面料 香奈儿面料 布料 2025-12-09 02:18:47.42748+00 2025-12-09 02:18:47.427485+00 434 7754 7754 布料 2025-12-09 02:18:47.428415+00 2025-12-09 02:18:47.428419+00 435 2*2小坑条 2*2小坑条 布料 2025-12-09 02:18:47.429372+00 2025-12-09 02:18:47.429376+00 436 230克罗马布 230克罗马布 布料 2025-12-09 02:18:47.430322+00 2025-12-09 02:18:47.430327+00 437 125克本白半消光破卡 125克本白半消光破卡 布料 2025-12-09 02:18:47.432433+00 2025-12-09 02:18:47.432437+00 439 200g牛奶丝拉架 200g牛奶丝拉架 布料 2025-12-09 02:18:47.433376+00 2025-12-09 02:18:47.43338+00 440 130克本白消光破卡B(半光) 130克本白消光破卡B(半光) 布料 2025-12-09 02:18:47.434319+00 2025-12-09 02:18:47.434323+00 441 钻石孔 钻石孔 布料 2025-12-09 02:18:47.435261+00 2025-12-09 02:18:47.435265+00 442 135克本白冰丝皱 135克本白冰丝皱 布料 2025-12-09 02:18:47.436206+00 2025-12-09 02:18:47.436211+00 443 捻丝麻 捻丝麻 布料 2025-12-09 02:18:47.437142+00 2025-12-09 02:18:47.437146+00 444 S601 S601 布料 2025-12-09 02:18:47.438104+00 2025-12-09 02:18:47.438108+00 445 220克本白牛奶丝 220克本白牛奶丝 布料 2025-12-09 02:18:47.439065+00 2025-12-09 02:18:47.439069+00 446 100克40D涤氨 100克40D涤氨 布料 2025-12-09 02:18:47.440193+00 2025-12-09 02:18:47.440197+00 447 180克鸟眼大白 180克鸟眼大白 布料 2025-12-09 02:18:47.441269+00 2025-12-09 02:18:47.441272+00 448 弹力缎米白 弹力缎米白 布料 2025-12-09 02:18:47.442343+00 2025-12-09 02:18:47.442347+00 449 针织色丁 针织色丁 布料 2025-12-09 02:18:47.443397+00 2025-12-09 02:18:47.443401+00 450 卫衣色布 卫衣色布 布料 2025-12-09 02:18:47.444449+00 2025-12-09 02:18:47.444453+00 451 120克破卡 120克破卡 布料 2025-12-09 02:18:47.445522+00 2025-12-09 02:18:47.445526+00 452 三喷格 三喷格 布料 2025-12-09 02:18:47.446569+00 2025-12-09 02:18:47.446573+00 453 添棉布 添棉布 布料 2025-12-09 02:18:47.447629+00 2025-12-09 02:18:47.447633+00 454 180克单磨牛奶丝 180克单磨牛奶丝 布料 2025-12-09 02:18:47.448392+00 2025-12-09 02:18:47.448395+00 455 面料940 面料940 布料 2025-12-09 02:18:47.449153+00 2025-12-09 02:18:47.449156+00 456 针织布 针织布 布料 2025-12-09 02:18:47.44996+00 2025-12-09 02:18:47.449963+00 457 大白酷丝棉 大白酷丝棉 布料 2025-12-09 02:18:47.45073+00 2025-12-09 02:18:47.450733+00 458 S647-1 S647-1 布料 2025-12-09 02:18:47.451507+00 2025-12-09 02:18:47.451511+00 459 8040#100D斜纹四面弹 8040#100D斜纹四面弹 布料 2025-12-09 02:18:47.452275+00 2025-12-09 02:18:47.452278+00 460 锦丝绉 锦丝绉 布料 2025-12-09 02:18:47.453043+00 2025-12-09 02:18:47.453047+00 461 编号8065底布 编号8065底布 布料 2025-12-09 02:18:47.453919+00 2025-12-09 02:18:47.453922+00 462 135克冰丝皱 135克冰丝皱 布料 2025-12-09 02:18:47.454683+00 2025-12-09 02:18:47.454687+00 463 192 192 布料 2025-12-09 02:18:47.455462+00 2025-12-09 02:18:47.455466+00 464 韩国摩毛 韩国摩毛 布料 2025-12-09 02:18:47.456226+00 2025-12-09 02:18:47.456229+00 465 厚罗马 厚罗马 布料 2025-12-09 02:18:47.457011+00 2025-12-09 02:18:47.457015+00 466 单定120克本白四面弹 单定120克本白四面弹 布料 2025-12-09 02:18:47.457817+00 2025-12-09 02:18:47.457821+00 467 230克本白涤卫衣拉架 230克本白涤卫衣拉架 布料 2025-12-09 02:18:47.458608+00 2025-12-09 02:18:47.458613+00 468 G21(不起皱) G21(不起皱) 布料 2025-12-09 02:18:47.459393+00 2025-12-09 02:18:47.459397+00 469 黄色底仿棉绉 黄色底仿棉绉 布料 2025-12-09 02:18:47.460146+00 2025-12-09 02:18:47.460149+00 470 沙面平纹 沙面平纹 布料 2025-12-09 02:18:47.460936+00 2025-12-09 02:18:47.46094+00 471 大白消光仿麻 大白消光仿麻 布料 2025-12-09 02:18:47.461697+00 2025-12-09 02:18:47.4617+00 472 仿棉绉 仿棉绉 布料 2025-12-09 02:18:47.462455+00 2025-12-09 02:18:47.462459+00 473 皱感四面弹 皱感四面弹 布料 2025-12-09 02:18:47.463245+00 2025-12-09 02:18:47.463248+00 474 雪花真丝 雪花真丝 布料 2025-12-09 02:18:47.464005+00 2025-12-09 02:18:47.464008+00 475 雪纺皱小毛花 雪纺皱小毛花 布料 2025-12-09 02:18:47.464762+00 2025-12-09 02:18:47.464766+00 476 美达M147米白底 美达M147米白底 布料 2025-12-09 02:18:47.465538+00 2025-12-09 02:18:47.465542+00 477 银丝布 银丝布 布料 2025-12-09 02:18:47.466289+00 2025-12-09 02:18:47.466292+00 478 天丝子母条 天丝子母条 布料 2025-12-09 02:18:47.46706+00 2025-12-09 02:18:47.467064+00 479 理想格泡泡皱 理想格泡泡皱 布料 2025-12-09 02:18:47.467822+00 2025-12-09 02:18:47.467825+00 480 棉感斜纹 棉感斜纹 布料 2025-12-09 02:18:47.468567+00 2025-12-09 02:18:47.468571+00 481 6009B 6009B 布料 2025-12-09 02:18:47.469355+00 2025-12-09 02:18:47.469358+00 482 40D-涤氨网布-100克 40D-涤氨网布-100克 布料 2025-12-09 02:18:47.470107+00 2025-12-09 02:18:47.47011+00 483 100克涤氨网布 100克涤氨网布 布料 2025-12-09 02:18:47.470882+00 2025-12-09 02:18:47.470886+00 484 40D涤安网布 40D涤安网布 布料 2025-12-09 02:18:47.471652+00 2025-12-09 02:18:47.471655+00 485 网沙 网沙 布料 2025-12-09 02:18:47.472708+00 2025-12-09 02:18:47.472713+00 486 218布 218布 布料 2025-12-09 02:18:47.473649+00 2025-12-09 02:18:47.473653+00 487 100克雪纺 100克雪纺 布料 2025-12-09 02:18:47.4746+00 2025-12-09 02:18:47.474604+00 488 加密绒雪纺 加密绒雪纺 布料 2025-12-09 02:18:47.475549+00 2025-12-09 02:18:47.475554+00 489 仿牛仔 仿牛仔 布料 2025-12-09 02:18:47.476507+00 2025-12-09 02:18:47.476512+00 490 消光仿麻大白 消光仿麻大白 布料 2025-12-09 02:18:47.477448+00 2025-12-09 02:18:47.477452+00 491 92克本白纬弹 92克本白纬弹 布料 2025-12-09 02:18:47.478401+00 2025-12-09 02:18:47.478405+00 492 仿麻料(先缩后印) 仿麻料(先缩后印) 布料 2025-12-09 02:18:47.479357+00 2025-12-09 02:18:47.479361+00 493 180克本白乐丽丝斜纹四面弹 180克本白乐丽丝斜纹四面弹 布料 2025-12-09 02:18:47.481275+00 2025-12-09 02:18:47.481279+00 495 大白牛奶丝磨毛 大白牛奶丝磨毛 布料 2025-12-09 02:18:47.482214+00 2025-12-09 02:18:47.482218+00 496 针织竹节拉架 针织竹节拉架 布料 2025-12-09 02:18:47.483158+00 2025-12-09 02:18:47.483163+00 497 米白棉感斜纹 米白棉感斜纹 布料 2025-12-09 02:18:47.484101+00 2025-12-09 02:18:47.484105+00 498 150克四面弹 150克四面弹 布料 2025-12-09 02:18:47.485037+00 2025-12-09 02:18:47.485041+00 499 毛衣 毛衣 布料 2025-12-09 02:18:47.486+00 2025-12-09 02:18:47.486004+00 500 翩翩皱 翩翩皱 布料 2025-12-09 02:18:47.486951+00 2025-12-09 02:18:47.486956+00 501 180g牛奶丝拉架 180g牛奶丝拉架 布料 2025-12-09 02:18:47.487902+00 2025-12-09 02:18:47.487906+00 502 皱布泡泡 皱布泡泡 布料 2025-12-09 02:18:47.488863+00 2025-12-09 02:18:47.488867+00 503 摩根丝色布 摩根丝色布 布料 2025-12-09 02:18:47.489814+00 2025-12-09 02:18:47.489818+00 504 D256提花 D256提花 布料 2025-12-09 02:18:47.490769+00 2025-12-09 02:18:47.490773+00 505 涤仿麻 涤仿麻 布料 2025-12-09 02:18:47.491709+00 2025-12-09 02:18:47.491713+00 506 消光仿麻 消光仿麻 布料 2025-12-09 02:18:47.492646+00 2025-12-09 02:18:47.492651+00 507 S746 S746 布料 2025-12-09 02:18:47.493597+00 2025-12-09 02:18:47.493601+00 508 618 618 布料 2025-12-09 02:18:47.49455+00 2025-12-09 02:18:47.494554+00 509 120克兰光大白 120克兰光大白 布料 2025-12-09 02:18:47.495734+00 2025-12-09 02:18:47.495738+00 510 95克弹力雪纺 95克弹力雪纺 布料 2025-12-09 02:18:47.497585+00 2025-12-09 02:18:47.49759+00 512 斜纹 斜纹 布料 2025-12-09 02:18:47.498402+00 2025-12-09 02:18:47.498406+00 513 缎面绒 缎面绒 布料 2025-12-09 02:18:47.499176+00 2025-12-09 02:18:47.49918+00 514 绒面缎 绒面缎 布料 2025-12-09 02:18:47.499959+00 2025-12-09 02:18:47.499962+00 515 190克大白罗马布 190克大白罗马布 布料 2025-12-09 02:18:47.500732+00 2025-12-09 02:18:47.500736+00 516 斜纹缎米白 斜纹缎米白 布料 2025-12-09 02:18:47.501523+00 2025-12-09 02:18:47.501526+00 517 小香风竹节 小香风竹节 布料 2025-12-09 02:18:47.502276+00 2025-12-09 02:18:47.502279+00 518 台湾涤底布 台湾涤底布 布料 2025-12-09 02:18:47.503048+00 2025-12-09 02:18:47.503052+00 519 本厂90克本白纬弹 本厂90克本白纬弹 布料 2025-12-09 02:18:47.503822+00 2025-12-09 02:18:47.503826+00 520 3017泡泡格 3017泡泡格 布料 2025-12-09 02:18:47.504589+00 2025-12-09 02:18:47.504593+00 521 180克75D牛奶丝 180克75D牛奶丝 布料 2025-12-09 02:18:47.505368+00 2025-12-09 02:18:47.505372+00 522 175克75D双层四面弹 175克75D双层四面弹 布料 2025-12-09 02:18:47.506151+00 2025-12-09 02:18:47.506155+00 523 斜纹全涤 斜纹全涤 布料 2025-12-09 02:18:47.506927+00 2025-12-09 02:18:47.50693+00 524 闪光泡泡纱 闪光泡泡纱 布料 2025-12-09 02:18:47.5077+00 2025-12-09 02:18:47.507707+00 525 起皱四面弹 起皱四面弹 布料 2025-12-09 02:18:47.50849+00 2025-12-09 02:18:47.508493+00 526 锦丝皱 锦丝皱 布料 2025-12-09 02:18:47.509244+00 2025-12-09 02:18:47.509247+00 527 210克米白牛奶丝双磨 210克米白牛奶丝双磨 布料 2025-12-09 02:18:47.51001+00 2025-12-09 02:18:47.510014+00 528 100克珍珠雪纺 100克珍珠雪纺 布料 2025-12-09 02:18:47.510786+00 2025-12-09 02:18:47.51079+00 529 8043泡泡皱 8043泡泡皱 布料 2025-12-09 02:18:47.511548+00 2025-12-09 02:18:47.511551+00 530 38# 38# 布料 2025-12-09 02:18:47.512328+00 2025-12-09 02:18:47.512332+00 531 纳米皱花 纳米皱花 布料 2025-12-09 02:18:47.513095+00 2025-12-09 02:18:47.513099+00 532 菱形格 菱形格 布料 2025-12-09 02:18:47.513848+00 2025-12-09 02:18:47.513852+00 533 101 101 布料 2025-12-09 02:18:47.514714+00 2025-12-09 02:18:47.514717+00 534 148 148 布料 2025-12-09 02:18:47.515476+00 2025-12-09 02:18:47.515479+00 535 121 121 布料 2025-12-09 02:18:47.516224+00 2025-12-09 02:18:47.516227+00 536 绣花 绣花 布料 2025-12-09 02:18:47.517094+00 2025-12-09 02:18:47.517099+00 537 新澳棉 新澳棉 布料 2025-12-09 02:18:47.517933+00 2025-12-09 02:18:47.517937+00 538 弹力双皱 弹力双皱 布料 2025-12-09 02:18:47.518732+00 2025-12-09 02:18:47.518736+00 539 8697 8697 布料 2025-12-09 02:18:47.519544+00 2025-12-09 02:18:47.519548+00 540 秋霜绒 秋霜绒 布料 2025-12-09 02:18:47.520345+00 2025-12-09 02:18:47.520348+00 541 7791 7791 布料 2025-12-09 02:18:47.521156+00 2025-12-09 02:18:47.52116+00 542 654麻棉 654麻棉 布料 2025-12-09 02:18:47.521957+00 2025-12-09 02:18:47.521961+00 543 亚麻 亚麻 布料 2025-12-09 02:18:47.522763+00 2025-12-09 02:18:47.522768+00 544 旺麻格子 旺麻格子 布料 2025-12-09 02:18:47.523561+00 2025-12-09 02:18:47.523565+00 545 条子雪纺 条子雪纺 布料 2025-12-09 02:18:47.524377+00 2025-12-09 02:18:47.524381+00 546 75D米白双面平板布 75D米白双面平板布 布料 2025-12-09 02:18:47.525166+00 2025-12-09 02:18:47.52517+00 547 130克本白消光破卡 130克本白消光破卡 布料 2025-12-09 02:18:47.525973+00 2025-12-09 02:18:47.525977+00 548 纱 纱 布料 2025-12-09 02:18:47.526785+00 2025-12-09 02:18:47.526789+00 549 1767 1767 布料 2025-12-09 02:18:47.527583+00 2025-12-09 02:18:47.527587+00 550 天丝仿棉 天丝仿棉 布料 2025-12-09 02:18:47.528394+00 2025-12-09 02:18:47.528399+00 551 956 956 布料 2025-12-09 02:18:47.529195+00 2025-12-09 02:18:47.529199+00 552 940 940 布料 2025-12-09 02:18:47.529998+00 2025-12-09 02:18:47.530002+00 553 米白缎面 米白缎面 布料 2025-12-09 02:18:47.530801+00 2025-12-09 02:18:47.530805+00 554 Y598 Y598 布料 2025-12-09 02:18:47.531602+00 2025-12-09 02:18:47.531606+00 555 丫908 丫908 布料 2025-12-09 02:18:47.532406+00 2025-12-09 02:18:47.53241+00 556 75D米白双面印 75D米白双面印 布料 2025-12-09 02:18:47.533193+00 2025-12-09 02:18:47.533197+00 557 667# 667# 布料 2025-12-09 02:18:47.534069+00 2025-12-09 02:18:47.534072+00 558 110本白四面弹 110本白四面弹 布料 2025-12-09 02:18:47.534862+00 2025-12-09 02:18:47.534866+00 559 120克四面弹大白底 120克四面弹大白底 布料 2025-12-09 02:18:47.535662+00 2025-12-09 02:18:47.535665+00 560 海草条 海草条 布料 2025-12-09 02:18:47.536451+00 2025-12-09 02:18:47.536455+00 561 五朵金线花 五朵金线花 布料 2025-12-09 02:18:47.537244+00 2025-12-09 02:18:47.537248+00 562 提花点 提花点 布料 2025-12-09 02:18:47.538043+00 2025-12-09 02:18:47.538047+00 563 弹皱 弹皱 布料 2025-12-09 02:18:47.538866+00 2025-12-09 02:18:47.538869+00 564 120克酷丝绵 120克酷丝绵 布料 2025-12-09 02:18:47.539654+00 2025-12-09 02:18:47.539658+00 565 仿棉底布35号杏 仿棉底布35号杏 布料 2025-12-09 02:18:47.540464+00 2025-12-09 02:18:47.540467+00 566 7725 7725 布料 2025-12-09 02:18:47.541256+00 2025-12-09 02:18:47.54126+00 567 S618 S618 布料 2025-12-09 02:18:47.542059+00 2025-12-09 02:18:47.542063+00 568 230克牛奶丝磨毛 230克牛奶丝磨毛 布料 2025-12-09 02:18:47.542858+00 2025-12-09 02:18:47.542862+00 569 提花皱 提花皱 布料 2025-12-09 02:18:47.543646+00 2025-12-09 02:18:47.54365+00 570 250克金丝绒 250克金丝绒 布料 2025-12-09 02:18:47.544463+00 2025-12-09 02:18:47.544467+00 571 100D四面弹120克 100D四面弹120克 布料 2025-12-09 02:18:47.545258+00 2025-12-09 02:18:47.545261+00 572 200克米白直贡呢 200克米白直贡呢 布料 2025-12-09 02:18:47.546065+00 2025-12-09 02:18:47.546069+00 573 200克双磨牛奶丝米白 200克双磨牛奶丝米白 布料 2025-12-09 02:18:47.546878+00 2025-12-09 02:18:47.546881+00 574 s451 s451 布料 2025-12-09 02:18:47.547952+00 2025-12-09 02:18:47.547955+00 575 日本棉 日本棉 布料 2025-12-09 02:18:47.54904+00 2025-12-09 02:18:47.549044+00 576 596#布料 596#布料 布料 2025-12-09 02:18:47.550119+00 2025-12-09 02:18:47.550123+00 577 7756 7756 布料 2025-12-09 02:18:47.551208+00 2025-12-09 02:18:47.551211+00 578 纱布 纱布 布料 2025-12-09 02:18:47.552286+00 2025-12-09 02:18:47.55229+00 579 粉色新港棉 粉色新港棉 布料 2025-12-09 02:18:47.553364+00 2025-12-09 02:18:47.553368+00 580 579亮丝 579亮丝 布料 2025-12-09 02:18:47.554452+00 2025-12-09 02:18:47.554455+00 581 数码楼梯布 数码楼梯布 布料 2025-12-09 02:18:47.555531+00 2025-12-09 02:18:47.555535+00 582 2X2坑条蓝光大白 2X2坑条蓝光大白 布料 2025-12-09 02:18:47.557159+00 2025-12-09 02:18:47.557162+00 584 170克大白超柔仿棉 170克大白超柔仿棉 布料 2025-12-09 02:18:47.557962+00 2025-12-09 02:18:47.557966+00 585 120克仿棉 120克仿棉 布料 2025-12-09 02:18:47.55877+00 2025-12-09 02:18:47.558774+00 586 弹力皱印花底布 弹力皱印花底布 布料 2025-12-09 02:18:47.559564+00 2025-12-09 02:18:47.559568+00 587 200克捻丝 200克捻丝 布料 2025-12-09 02:18:47.560366+00 2025-12-09 02:18:47.56037+00 588 156大泡泡 156大泡泡 布料 2025-12-09 02:18:47.561165+00 2025-12-09 02:18:47.561169+00 589 起皱冰丝皱 起皱冰丝皱 布料 2025-12-09 02:18:47.561957+00 2025-12-09 02:18:47.56196+00 590 双色乐丽丝斜纹 双色乐丽丝斜纹 布料 2025-12-09 02:18:47.562834+00 2025-12-09 02:18:47.562838+00 591 桃花皱 桃花皱 布料 2025-12-09 02:18:47.564125+00 2025-12-09 02:18:47.56413+00 592 捻丝米白布 捻丝米白布 布料 2025-12-09 02:18:47.56508+00 2025-12-09 02:18:47.565084+00 593 宫廷锁面料 宫廷锁面料 布料 2025-12-09 02:18:47.567029+00 2025-12-09 02:18:47.567033+00 595 醋酸双面缎色布 醋酸双面缎色布 布料 2025-12-09 02:18:47.567995+00 2025-12-09 02:18:47.567999+00 596 90克纬弹数码印花 90克纬弹数码印花 布料 2025-12-09 02:18:47.568977+00 2025-12-09 02:18:47.568981+00 597 仿棉米线条 仿棉米线条 布料 2025-12-09 02:18:47.569941+00 2025-12-09 02:18:47.569945+00 598 230克大白牛奶丝单磨 230克大白牛奶丝单磨 布料 2025-12-09 02:18:47.570918+00 2025-12-09 02:18:47.570922+00 599 仿麻格子 仿麻格子 布料 2025-12-09 02:18:47.571893+00 2025-12-09 02:18:47.571898+00 600 40D本白涤氨 40D本白涤氨 布料 2025-12-09 02:18:47.572853+00 2025-12-09 02:18:47.572857+00 601 100克天丝棉 100克天丝棉 布料 2025-12-09 02:18:47.573832+00 2025-12-09 02:18:47.573836+00 602 泡泡格子布 泡泡格子布 布料 2025-12-09 02:18:47.574804+00 2025-12-09 02:18:47.574808+00 603 编号9005 编号9005 布料 2025-12-09 02:18:47.575774+00 2025-12-09 02:18:47.575778+00 604 消光泡格 消光泡格 布料 2025-12-09 02:18:47.576755+00 2025-12-09 02:18:47.57676+00 605 全涤网布 全涤网布 布料 2025-12-09 02:18:47.577876+00 2025-12-09 02:18:47.577881+00 606 厚弹力雪纺 厚弹力雪纺 布料 2025-12-09 02:18:47.578843+00 2025-12-09 02:18:47.578848+00 607 185克牛奶丝双磨 185克牛奶丝双磨 布料 2025-12-09 02:18:47.579809+00 2025-12-09 02:18:47.579813+00 608 160克酷丝棉 160克酷丝棉 布料 2025-12-09 02:18:47.580765+00 2025-12-09 02:18:47.58077+00 609 1341剪花 1341剪花 布料 2025-12-09 02:18:47.581739+00 2025-12-09 02:18:47.581744+00 610 6688斜纹布 6688斜纹布 布料 2025-12-09 02:18:47.582718+00 2025-12-09 02:18:47.582723+00 611 95克韩国网 95克韩国网 布料 2025-12-09 02:18:47.583677+00 2025-12-09 02:18:47.583681+00 612 花灰坑条 花灰坑条 布料 2025-12-09 02:18:47.584652+00 2025-12-09 02:18:47.584656+00 613 牛津布 牛津布 布料 2025-12-09 02:18:47.585616+00 2025-12-09 02:18:47.585621+00 614 160克酷丝棉斜纹 160克酷丝棉斜纹 布料 2025-12-09 02:18:47.586578+00 2025-12-09 02:18:47.586582+00 615 雪纺真丝 雪纺真丝 布料 2025-12-09 02:18:47.587542+00 2025-12-09 02:18:47.587546+00 616 速干网眼 速干网眼 布料 2025-12-09 02:18:47.588511+00 2025-12-09 02:18:47.588516+00 617 单面麻手抓花 单面麻手抓花 布料 2025-12-09 02:18:47.589474+00 2025-12-09 02:18:47.589478+00 618 特白四面弹 特白四面弹 布料 2025-12-09 02:18:47.590445+00 2025-12-09 02:18:47.59045+00 619 40D涤安网 40D涤安网 布料 2025-12-09 02:18:47.591412+00 2025-12-09 02:18:47.591417+00 620 酷丝斜纹 酷丝斜纹 布料 2025-12-09 02:18:47.592383+00 2025-12-09 02:18:47.592387+00 621 8023玲珑麻B 8023玲珑麻B 布料 2025-12-09 02:18:47.593347+00 2025-12-09 02:18:47.593352+00 622 精棉拉架 精棉拉架 布料 2025-12-09 02:18:47.594297+00 2025-12-09 02:18:47.594302+00 623 玉兰皱 玉兰皱 布料 2025-12-09 02:18:47.595255+00 2025-12-09 02:18:47.595259+00 624 细斜四面弹 细斜四面弹 布料 2025-12-09 02:18:47.596233+00 2025-12-09 02:18:47.596238+00 625 3060网纱 3060网纱 布料 2025-12-09 02:18:47.597205+00 2025-12-09 02:18:47.597209+00 626 水晶缎面 水晶缎面 布料 2025-12-09 02:18:47.598172+00 2025-12-09 02:18:47.598177+00 627 涤氨网布韩国网 涤氨网布韩国网 布料 2025-12-09 02:18:47.59916+00 2025-12-09 02:18:47.599164+00 628 面料编号19385 面料编号19385 布料 2025-12-09 02:18:47.601173+00 2025-12-09 02:18:47.601178+00 630 200G双磨牛奶丝 200G双磨牛奶丝 布料 2025-12-09 02:18:47.602124+00 2025-12-09 02:18:47.602128+00 631 75D全光里布 75D全光里布 布料 2025-12-09 02:18:47.603102+00 2025-12-09 02:18:47.603106+00 632 大华夫格布料 大华夫格布料 布料 2025-12-09 02:18:47.604069+00 2025-12-09 02:18:47.604073+00 633 白色雪仿提花布 白色雪仿提花布 布料 2025-12-09 02:18:47.605044+00 2025-12-09 02:18:47.605049+00 634 米白水晶段 米白水晶段 布料 2025-12-09 02:18:47.60601+00 2025-12-09 02:18:47.606015+00 635 罗马大白 罗马大白 布料 2025-12-09 02:18:47.606969+00 2025-12-09 02:18:47.606973+00 636 651ma麻棉 651ma麻棉 布料 2025-12-09 02:18:47.607948+00 2025-12-09 02:18:47.607953+00 637 斜纹布大白 斜纹布大白 布料 2025-12-09 02:18:47.608909+00 2025-12-09 02:18:47.608914+00 638 面料9067 面料9067 布料 2025-12-09 02:18:47.609871+00 2025-12-09 02:18:47.609876+00 639 面料667 面料667 布料 2025-12-09 02:18:47.610836+00 2025-12-09 02:18:47.610841+00 640 夹丝布料 夹丝布料 布料 2025-12-09 02:18:47.611801+00 2025-12-09 02:18:47.611805+00 641 180克鸟眼布 180克鸟眼布 布料 2025-12-09 02:18:47.612761+00 2025-12-09 02:18:47.612765+00 642 经纬竹节 经纬竹节 布料 2025-12-09 02:18:47.613712+00 2025-12-09 02:18:47.613717+00 643 100D顺宇皱 100D顺宇皱 布料 2025-12-09 02:18:47.614673+00 2025-12-09 02:18:47.614677+00 644 数码罗马布 数码罗马布 布料 2025-12-09 02:18:47.615658+00 2025-12-09 02:18:47.615663+00 645 160克四面弹 160克四面弹 布料 2025-12-09 02:18:47.616669+00 2025-12-09 02:18:47.616673+00 646 180克鸟眼 180克鸟眼 布料 2025-12-09 02:18:47.617561+00 2025-12-09 02:18:47.617565+00 647 170克直贡呢兰光大白 170克直贡呢兰光大白 布料 2025-12-09 02:18:47.618426+00 2025-12-09 02:18:47.61843+00 648 本白酷丝棉A 本白酷丝棉A 布料 2025-12-09 02:18:47.619213+00 2025-12-09 02:18:47.619217+00 649 条纹雪纺 条纹雪纺 布料 2025-12-09 02:18:47.620003+00 2025-12-09 02:18:47.620007+00 650 流线棉 流线棉 布料 2025-12-09 02:18:47.620786+00 2025-12-09 02:18:47.620789+00 651 油丁布 油丁布 布料 2025-12-09 02:18:47.621541+00 2025-12-09 02:18:47.621544+00 652 G12# G12# 布料 2025-12-09 02:18:47.62233+00 2025-12-09 02:18:47.622334+00 653 60D特密纱欧根纱 60D特密纱欧根纱 布料 2025-12-09 02:18:47.623096+00 2025-12-09 02:18:47.6231+00 654 G196 G196 布料 2025-12-09 02:18:47.623879+00 2025-12-09 02:18:47.623883+00 655 98克芙蓉麻 98克芙蓉麻 布料 2025-12-09 02:18:47.62464+00 2025-12-09 02:18:47.624643+00 656 100D纬弹 100D纬弹 布料 2025-12-09 02:18:47.6254+00 2025-12-09 02:18:47.625404+00 657 180克牛奶丝双面磨毛 180克牛奶丝双面磨毛 布料 2025-12-09 02:18:47.626169+00 2025-12-09 02:18:47.626172+00 658 7768 7768 布料 2025-12-09 02:18:47.626929+00 2025-12-09 02:18:47.626933+00 659 雪丝 雪丝 布料 2025-12-09 02:18:47.627697+00 2025-12-09 02:18:47.627701+00 660 梳织布 梳织布 布料 2025-12-09 02:18:47.628469+00 2025-12-09 02:18:47.628473+00 661 华丽双斜 华丽双斜 布料 2025-12-09 02:18:47.629255+00 2025-12-09 02:18:47.629259+00 662 D8499春风格 D8499春风格 布料 2025-12-09 02:18:47.630025+00 2025-12-09 02:18:47.630029+00 663 MF1082 MF1082 布料 2025-12-09 02:18:47.63078+00 2025-12-09 02:18:47.630783+00 664 罗纹竹节 罗纹竹节 布料 2025-12-09 02:18:47.631553+00 2025-12-09 02:18:47.631557+00 665 1+1高弹 1+1高弹 布料 2025-12-09 02:18:47.632307+00 2025-12-09 02:18:47.632311+00 666 0105仿棉 0105仿棉 布料 2025-12-09 02:18:47.633049+00 2025-12-09 02:18:47.633053+00 667 8030#本白华尔缎 8030#本白华尔缎 布料 2025-12-09 02:18:47.634596+00 2025-12-09 02:18:47.6346+00 669 125克本白冰丝皱B 125克本白冰丝皱B 布料 2025-12-09 02:18:47.635362+00 2025-12-09 02:18:47.635366+00 670 双绉底布 双绉底布 布料 2025-12-09 02:18:47.636123+00 2025-12-09 02:18:47.636127+00 671 901 901 布料 2025-12-09 02:18:47.636881+00 2025-12-09 02:18:47.636885+00 672 S755 S755 布料 2025-12-09 02:18:47.637653+00 2025-12-09 02:18:47.637656+00 673 40D本白涤氨网 40D本白涤氨网 布料 2025-12-09 02:18:47.638424+00 2025-12-09 02:18:47.638428+00 674 短纤小卫衣 短纤小卫衣 布料 2025-12-09 02:18:47.639187+00 2025-12-09 02:18:47.639191+00 675 270克楼梯布 270克楼梯布 布料 2025-12-09 02:18:47.639952+00 2025-12-09 02:18:47.639956+00 676 编号810 编号810 布料 2025-12-09 02:18:47.640719+00 2025-12-09 02:18:47.640723+00 677 180克本白仿棉拉架 180克本白仿棉拉架 布料 2025-12-09 02:18:47.641495+00 2025-12-09 02:18:47.641498+00 678 105仿棉 105仿棉 布料 2025-12-09 02:18:47.642274+00 2025-12-09 02:18:47.642277+00 679 90克纬弹数码 90克纬弹数码 布料 2025-12-09 02:18:47.643028+00 2025-12-09 02:18:47.643031+00 680 雪纺色布 雪纺色布 布料 2025-12-09 02:18:47.643797+00 2025-12-09 02:18:47.643801+00 681 光丝螺纹 光丝螺纹 布料 2025-12-09 02:18:47.644569+00 2025-12-09 02:18:47.644572+00 682 G128纱 G128纱 布料 2025-12-09 02:18:47.645331+00 2025-12-09 02:18:47.645335+00 683 140克星光麻 140克星光麻 布料 2025-12-09 02:18:47.646102+00 2025-12-09 02:18:47.646105+00 684 G12 G12 布料 2025-12-09 02:18:47.646862+00 2025-12-09 02:18:47.646865+00 685 150D长丝四面弹 150D长丝四面弹 布料 2025-12-09 02:18:47.647635+00 2025-12-09 02:18:47.647638+00 686 双层斜纹 双层斜纹 布料 2025-12-09 02:18:47.648409+00 2025-12-09 02:18:47.648413+00 687 150克涤氨网布 150克涤氨网布 布料 2025-12-09 02:18:47.649179+00 2025-12-09 02:18:47.649183+00 688 1*1高弹 1*1高弹 布料 2025-12-09 02:18:47.649945+00 2025-12-09 02:18:47.649949+00 689 黄色酷丝棉 黄色酷丝棉 布料 2025-12-09 02:18:47.650719+00 2025-12-09 02:18:47.650722+00 690 条子纱 条子纱 布料 2025-12-09 02:18:47.651477+00 2025-12-09 02:18:47.651481+00 691 提花c77 提花c77 布料 2025-12-09 02:18:47.65224+00 2025-12-09 02:18:47.652243+00 692 冰丝坑条 冰丝坑条 布料 2025-12-09 02:18:47.652991+00 2025-12-09 02:18:47.652995+00 693 180克大白鸟眼布 180克大白鸟眼布 布料 2025-12-09 02:18:47.653773+00 2025-12-09 02:18:47.653777+00 694 140克本白玲珑麻 140克本白玲珑麻 布料 2025-12-09 02:18:47.654527+00 2025-12-09 02:18:47.654531+00 695 11克四面弹 11克四面弹 布料 2025-12-09 02:18:47.655302+00 2025-12-09 02:18:47.655306+00 696 格子纱 格子纱 布料 2025-12-09 02:18:47.656063+00 2025-12-09 02:18:47.656066+00 697 格子大花布 格子大花布 布料 2025-12-09 02:18:47.656807+00 2025-12-09 02:18:47.656811+00 698 仿棉细斜皱 仿棉细斜皱 布料 2025-12-09 02:18:47.657573+00 2025-12-09 02:18:47.657577+00 699 170克8099砂洗细斜仿棉皱 170克8099砂洗细斜仿棉皱 布料 2025-12-09 02:18:47.658333+00 2025-12-09 02:18:47.658337+00 700 编号652 编号652 布料 2025-12-09 02:18:47.659088+00 2025-12-09 02:18:47.659092+00 701 100D彩虹斜 100D彩虹斜 布料 2025-12-09 02:18:47.660015+00 2025-12-09 02:18:47.660019+00 702 小网眼 小网眼 布料 2025-12-09 02:18:47.661095+00 2025-12-09 02:18:47.6611+00 703 200克本白牛奶丝单磨 200克本白牛奶丝单磨 布料 2025-12-09 02:18:47.662366+00 2025-12-09 02:18:47.66237+00 704 19558提花布 19558提花布 布料 2025-12-09 02:18:47.663597+00 2025-12-09 02:18:47.663601+00 705 小竹节香风 小竹节香风 布料 2025-12-09 02:18:47.664837+00 2025-12-09 02:18:47.664841+00 706 45D涤氨 45D涤氨 布料 2025-12-09 02:18:47.666064+00 2025-12-09 02:18:47.666068+00 707 泡泡网 泡泡网 布料 2025-12-09 02:18:47.66729+00 2025-12-09 02:18:47.667295+00 708 超涤 超涤 布料 2025-12-09 02:18:47.668419+00 2025-12-09 02:18:47.668423+00 709 170克双磨牛奶丝 170克双磨牛奶丝 布料 2025-12-09 02:18:47.669502+00 2025-12-09 02:18:47.669505+00 710 沙丁布 沙丁布 布料 2025-12-09 02:18:47.670292+00 2025-12-09 02:18:47.670296+00 711 时尚巴黎皱 时尚巴黎皱 布料 2025-12-09 02:18:47.67108+00 2025-12-09 02:18:47.671084+00 712 150克涤氨大网眼布 150克涤氨大网眼布 布料 2025-12-09 02:18:47.671846+00 2025-12-09 02:18:47.671849+00 713 12*2坑条 12*2坑条 布料 2025-12-09 02:18:47.672741+00 2025-12-09 02:18:47.672745+00 714 36眼网布 36眼网布 布料 2025-12-09 02:18:47.673511+00 2025-12-09 02:18:47.673515+00 715 编号1875 编号1875 布料 2025-12-09 02:18:47.674307+00 2025-12-09 02:18:47.674311+00 716 170克米白仿棉拉架 170克米白仿棉拉架 布料 2025-12-09 02:18:47.675078+00 2025-12-09 02:18:47.675082+00 717 编号339 编号339 布料 2025-12-09 02:18:47.675843+00 2025-12-09 02:18:47.675847+00 718 粉色竹节 粉色竹节 布料 2025-12-09 02:18:47.677391+00 2025-12-09 02:18:47.677394+00 720 40D涤氨网纱 40D涤氨网纱 布料 2025-12-09 02:18:47.678166+00 2025-12-09 02:18:47.67817+00 721 Y729泡 Y729泡 布料 2025-12-09 02:18:47.678932+00 2025-12-09 02:18:47.678936+00 722 编号186# 编号186# 布料 2025-12-09 02:18:47.680455+00 2025-12-09 02:18:47.680458+00 724 200克本白直贡呢 200克本白直贡呢 布料 2025-12-09 02:18:47.681235+00 2025-12-09 02:18:47.681239+00 725 棉感记忆 棉感记忆 布料 2025-12-09 02:18:47.681996+00 2025-12-09 02:18:47.681999+00 726 621# 621# 布料 2025-12-09 02:18:47.682746+00 2025-12-09 02:18:47.682749+00 727 120克大白加捻罗马 120克大白加捻罗马 布料 2025-12-09 02:18:47.683532+00 2025-12-09 02:18:47.683536+00 728 编号7759 编号7759 布料 2025-12-09 02:18:47.6843+00 2025-12-09 02:18:47.684304+00 729 B442#菱形提花布 B442#菱形提花布 布料 2025-12-09 02:18:47.685059+00 2025-12-09 02:18:47.685062+00 730 200克大白小卫衣 200克大白小卫衣 布料 2025-12-09 02:18:47.685847+00 2025-12-09 02:18:47.685851+00 731 编号9012 编号9012 布料 2025-12-09 02:18:47.686612+00 2025-12-09 02:18:47.686615+00 732 8030华尔缎 8030华尔缎 布料 2025-12-09 02:18:47.687377+00 2025-12-09 02:18:47.68738+00 733 240X180楼梯布 240X180楼梯布 布料 2025-12-09 02:18:47.688142+00 2025-12-09 02:18:47.688146+00 734 170克华卫本白 170克华卫本白 布料 2025-12-09 02:18:47.688891+00 2025-12-09 02:18:47.688895+00 735 190克本白健康布 190克本白健康布 布料 2025-12-09 02:18:47.689666+00 2025-12-09 02:18:47.68967+00 736 剪花皱 剪花皱 布料 2025-12-09 02:18:47.690419+00 2025-12-09 02:18:47.690423+00 737 160克弹力蜂巢 160克弹力蜂巢 布料 2025-12-09 02:18:47.691196+00 2025-12-09 02:18:47.691199+00 738 172/180拉架 172/180拉架 布料 2025-12-09 02:18:47.691954+00 2025-12-09 02:18:47.691957+00 739 40D网纱 40D网纱 布料 2025-12-09 02:18:47.692719+00 2025-12-09 02:18:47.692723+00 740 240克楼梯布 240克楼梯布 布料 2025-12-09 02:18:47.693485+00 2025-12-09 02:18:47.693489+00 741 仿真色丁 仿真色丁 布料 2025-12-09 02:18:47.694251+00 2025-12-09 02:18:47.694255+00 742 洞洞提花布 洞洞提花布 布料 2025-12-09 02:18:47.695033+00 2025-12-09 02:18:47.695036+00 743 3215薄麻料 3215薄麻料 布料 2025-12-09 02:18:47.695796+00 2025-12-09 02:18:47.695799+00 744 大白鸟眼布 大白鸟眼布 布料 2025-12-09 02:18:47.696561+00 2025-12-09 02:18:47.696564+00 745 单安布 单安布 布料 2025-12-09 02:18:47.697336+00 2025-12-09 02:18:47.69734+00 746 B881# B881# 布料 2025-12-09 02:18:47.698079+00 2025-12-09 02:18:47.698082+00 747 牛奶丝双面磨毛 牛奶丝双面磨毛 布料 2025-12-09 02:18:47.698952+00 2025-12-09 02:18:47.698957+00 748 443 443 布料 2025-12-09 02:18:47.699908+00 2025-12-09 02:18:47.699912+00 749 40D网布底布 40D网布底布 布料 2025-12-09 02:18:47.700858+00 2025-12-09 02:18:47.700862+00 750 加厚消光 加厚消光 布料 2025-12-09 02:18:47.701802+00 2025-12-09 02:18:47.701807+00 751 180克本白牛奶丝单磨 180克本白牛奶丝单磨 布料 2025-12-09 02:18:47.702777+00 2025-12-09 02:18:47.702782+00 752 缎面提花 缎面提花 布料 2025-12-09 02:18:47.703697+00 2025-12-09 02:18:47.703701+00 753 薄仿棉 薄仿棉 布料 2025-12-09 02:18:47.676623+00 2025-12-09 02:18:50.210317+00 719 90克纬弹 90克纬弹 布料 2025-12-09 02:18:47.704515+00 2025-12-09 02:18:47.704518+00 754 鸡眼布 鸡眼布 布料 2025-12-09 02:18:47.705317+00 2025-12-09 02:18:47.705321+00 755 250克罗纹 250克罗纹 布料 2025-12-09 02:18:47.706103+00 2025-12-09 02:18:47.706107+00 756 冰丝大起皱 冰丝大起皱 布料 2025-12-09 02:18:47.706876+00 2025-12-09 02:18:47.706879+00 757 泡泡皱理想格 泡泡皱理想格 布料 2025-12-09 02:18:47.707651+00 2025-12-09 02:18:47.707654+00 758 洗水棉 洗水棉 布料 2025-12-09 02:18:47.708416+00 2025-12-09 02:18:47.70842+00 759 G34欧根纱足节 G34欧根纱足节 布料 2025-12-09 02:18:47.709184+00 2025-12-09 02:18:47.709188+00 760 180克弹力蜂巢 180克弹力蜂巢 布料 2025-12-09 02:18:47.70995+00 2025-12-09 02:18:47.709953+00 761 泡泡提花 泡泡提花 布料 2025-12-09 02:18:47.710715+00 2025-12-09 02:18:47.710719+00 762 金丝提花 金丝提花 布料 2025-12-09 02:18:47.711483+00 2025-12-09 02:18:47.711487+00 763 180克乐丽丝斜纹 180克乐丽丝斜纹 布料 2025-12-09 02:18:47.712241+00 2025-12-09 02:18:47.712244+00 764 醋酸双缎面 醋酸双缎面 布料 2025-12-09 02:18:47.71303+00 2025-12-09 02:18:47.713033+00 765 缎面雪纺 缎面雪纺 布料 2025-12-09 02:18:47.713781+00 2025-12-09 02:18:47.713784+00 766 冰丝鸟眼布 冰丝鸟眼布 布料 2025-12-09 02:18:47.714524+00 2025-12-09 02:18:47.714528+00 767 170克75D双层四面弹 170克75D双层四面弹 布料 2025-12-09 02:18:47.715301+00 2025-12-09 02:18:47.715304+00 768 140克牛奶丝米白 140克牛奶丝米白 布料 2025-12-09 02:18:47.716175+00 2025-12-09 02:18:47.71618+00 769 仿人丝 仿人丝 布料 2025-12-09 02:18:47.716993+00 2025-12-09 02:18:47.716997+00 770 千千皱 千千皱 布料 2025-12-09 02:18:47.717767+00 2025-12-09 02:18:47.71777+00 771 测试-吴 测试-吴 布料 2025-12-09 02:18:47.718541+00 2025-12-09 02:18:47.718545+00 772 8088摩根丝 8088摩根丝 布料 2025-12-09 02:18:47.719327+00 2025-12-09 02:18:47.719331+00 773 647-1仿麻料 647-1仿麻料 布料 2025-12-09 02:18:47.720993+00 2025-12-09 02:18:47.720997+00 775 高弹新面料 高弹新面料 布料 2025-12-09 02:18:47.721761+00 2025-12-09 02:18:47.721765+00 776 弹力醋酸缎 弹力醋酸缎 布料 2025-12-09 02:18:47.722532+00 2025-12-09 02:18:47.722535+00 777 143棉 143棉 布料 2025-12-09 02:18:47.723319+00 2025-12-09 02:18:47.723323+00 778 87软 87软 布料 2025-12-09 02:18:47.724099+00 2025-12-09 02:18:47.724103+00 779 醋酸金銮缎 醋酸金銮缎 布料 2025-12-09 02:18:47.724893+00 2025-12-09 02:18:47.724896+00 780 白色加厚冰丝皱 白色加厚冰丝皱 布料 2025-12-09 02:18:47.725667+00 2025-12-09 02:18:47.725671+00 781 勾花布 勾花布 布料 2025-12-09 02:18:47.726439+00 2025-12-09 02:18:47.726443+00 782 缎面皱 缎面皱 布料 2025-12-09 02:18:47.727191+00 2025-12-09 02:18:47.727195+00 783 条子四面弹 条子四面弹 布料 2025-12-09 02:18:47.727971+00 2025-12-09 02:18:47.727974+00 784 洞洞布 洞洞布 布料 2025-12-09 02:18:47.728734+00 2025-12-09 02:18:47.728737+00 785 娜比格 娜比格 布料 2025-12-09 02:18:47.729485+00 2025-12-09 02:18:47.729488+00 786 170克双面四面弹 170克双面四面弹 布料 2025-12-09 02:18:47.73025+00 2025-12-09 02:18:47.730253+00 787 本白消光破卡 本白消光破卡 布料 2025-12-09 02:18:47.731014+00 2025-12-09 02:18:47.731018+00 788 180克牛奶丝单面磨毛 180克牛奶丝单面磨毛 布料 2025-12-09 02:18:47.731786+00 2025-12-09 02:18:47.73179+00 789 加厚巴黎珠 加厚巴黎珠 布料 2025-12-09 02:18:47.732532+00 2025-12-09 02:18:47.732535+00 790 丝光小卫衣 丝光小卫衣 布料 2025-12-09 02:18:47.733304+00 2025-12-09 02:18:47.733308+00 791 210克牛奶丝拉架 210克牛奶丝拉架 布料 2025-12-09 02:18:47.734053+00 2025-12-09 02:18:47.734056+00 792 210克坑条大白 210克坑条大白 布料 2025-12-09 02:18:47.734806+00 2025-12-09 02:18:47.734809+00 793 8025斜纹色丁 8025斜纹色丁 布料 2025-12-09 02:18:47.73557+00 2025-12-09 02:18:47.735573+00 794 白色针织底布 白色针织底布 布料 2025-12-09 02:18:47.736335+00 2025-12-09 02:18:47.736338+00 795 250克螺纹小坑条 250克螺纹小坑条 布料 2025-12-09 02:18:47.737106+00 2025-12-09 02:18:47.73711+00 796 240克罗马 240克罗马 布料 2025-12-09 02:18:47.737873+00 2025-12-09 02:18:47.737877+00 797 醋酸缎面 醋酸缎面 布料 2025-12-09 02:18:47.740154+00 2025-12-09 02:18:47.740158+00 800 涤氨网 涤氨网 布料 2025-12-09 02:18:47.740921+00 2025-12-09 02:18:47.740924+00 801 韩国斜 韩国斜 布料 2025-12-09 02:18:47.741702+00 2025-12-09 02:18:47.741709+00 802 140克70D涤氨网 140克70D涤氨网 布料 2025-12-09 02:18:47.742464+00 2025-12-09 02:18:47.742467+00 803 双面毛织布 双面毛织布 布料 2025-12-09 02:18:47.743229+00 2025-12-09 02:18:47.743233+00 804 G9平面料 G9平面料 布料 2025-12-09 02:18:47.744+00 2025-12-09 02:18:47.744003+00 805 底纹压 底纹压 布料 2025-12-09 02:18:47.744751+00 2025-12-09 02:18:47.744755+00 806 鹭皮绒 鹭皮绒 布料 2025-12-09 02:18:47.745515+00 2025-12-09 02:18:47.745518+00 807 加厚芙蓉麻 加厚芙蓉麻 布料 2025-12-09 02:18:47.74628+00 2025-12-09 02:18:47.746283+00 808 双皱 双皱 布料 2025-12-09 02:18:47.747055+00 2025-12-09 02:18:47.747059+00 809 160克T爽棉 160克T爽棉 布料 2025-12-09 02:18:47.747817+00 2025-12-09 02:18:47.747821+00 810 酷丝棉平纹115g 酷丝棉平纹115g 布料 2025-12-09 02:18:47.749355+00 2025-12-09 02:18:47.749358+00 812 高弹巴黎皱 高弹巴黎皱 布料 2025-12-09 02:18:47.750116+00 2025-12-09 02:18:47.750119+00 813 斜纹雪花绒 斜纹雪花绒 布料 2025-12-09 02:18:47.748563+00 2025-12-09 02:18:47.750877+00 811 260克空气层 260克空气层 布料 2025-12-09 02:18:47.751674+00 2025-12-09 02:18:47.751678+00 814 大白牛奶丝双磨 大白牛奶丝双磨 布料 2025-12-09 02:18:47.752463+00 2025-12-09 02:18:47.752466+00 815 150克冰丝皱 150克冰丝皱 布料 2025-12-09 02:18:47.753216+00 2025-12-09 02:18:47.75322+00 816 200克超柔仿棉兰光大白 200克超柔仿棉兰光大白 布料 2025-12-09 02:18:47.754753+00 2025-12-09 02:18:47.754757+00 818 涤贡缎 涤贡缎 布料 2025-12-09 02:18:47.755505+00 2025-12-09 02:18:47.755508+00 819 达丰130克酷丝棉 达丰130克酷丝棉 布料 2025-12-09 02:18:47.756274+00 2025-12-09 02:18:47.756277+00 820 210克本白牛奶丝 210克本白牛奶丝 布料 2025-12-09 02:18:47.757028+00 2025-12-09 02:18:47.757032+00 821 小牛津 小牛津 布料 2025-12-09 02:18:47.757798+00 2025-12-09 02:18:47.757801+00 822 120克本白牛奶丝单磨 120克本白牛奶丝单磨 布料 2025-12-09 02:18:47.758546+00 2025-12-09 02:18:47.758549+00 823 200克本白牛奶丝 200克本白牛奶丝 布料 2025-12-09 02:18:47.759321+00 2025-12-09 02:18:47.759325+00 824 人字斜 人字斜 布料 2025-12-09 02:18:47.760087+00 2025-12-09 02:18:47.76009+00 825 针织弹力色丁 针织弹力色丁 布料 2025-12-09 02:18:47.76084+00 2025-12-09 02:18:47.760844+00 826 银丝雪纺 银丝雪纺 布料 2025-12-09 02:18:47.761621+00 2025-12-09 02:18:47.761624+00 827 85g弹力缎本白 85g弹力缎本白 布料 2025-12-09 02:18:47.762384+00 2025-12-09 02:18:47.762388+00 828 120克冰丝皱 120克冰丝皱 布料 2025-12-09 02:18:47.763132+00 2025-12-09 02:18:47.763135+00 829 纳米格 纳米格 布料 2025-12-09 02:18:47.764182+00 2025-12-09 02:18:47.764185+00 830 200克大白牛奶丝 200克大白牛奶丝 布料 2025-12-09 02:18:47.76521+00 2025-12-09 02:18:47.765213+00 831 8099砂洗细斜仿棉皱 8099砂洗细斜仿棉皱 布料 2025-12-09 02:18:47.766361+00 2025-12-09 02:18:47.766365+00 832 80D乱麻 80D乱麻 布料 2025-12-09 02:18:47.767546+00 2025-12-09 02:18:47.767551+00 833 白底金砖绒 白底金砖绒 布料 2025-12-09 02:18:47.76882+00 2025-12-09 02:18:47.768824+00 834 本白泡泡皱 本白泡泡皱 布料 2025-12-09 02:18:47.770064+00 2025-12-09 02:18:47.770068+00 835 95克芙蓉麻 95克芙蓉麻 布料 2025-12-09 02:18:47.771352+00 2025-12-09 02:18:47.771357+00 836 亿程S647-1 亿程S647-1 布料 2025-12-09 02:18:47.772575+00 2025-12-09 02:18:47.77258+00 837 创新革 创新革 布料 2025-12-09 02:18:47.739388+00 2025-12-09 02:18:48.724469+00 799 亮光弹力缎 亮光弹力缎 布料 2025-12-09 02:18:47.738637+00 2025-12-09 02:18:48.867482+00 798 双面缎 双面缎 布料 2025-12-09 02:18:47.75399+00 2025-12-09 02:18:48.940729+00 817 四面弹 四面弹 布料 2025-12-09 02:18:47.773526+00 2025-12-09 02:18:47.77353+00 838 涤罗马 涤罗马 布料 2025-12-09 02:18:47.774497+00 2025-12-09 02:18:47.774501+00 839 70克本白油丁 70克本白油丁 布料 2025-12-09 02:18:47.77545+00 2025-12-09 02:18:47.775454+00 840 40D涤氨网 40D涤氨网 布料 2025-12-09 02:18:47.776402+00 2025-12-09 02:18:47.776406+00 841 丝绒玫红色 丝绒玫红色 布料 2025-12-09 02:18:47.77734+00 2025-12-09 02:18:47.777344+00 842 95克仿真色丁 95克仿真色丁 布料 2025-12-09 02:18:47.778314+00 2025-12-09 02:18:47.778318+00 843 仿棉皱 仿棉皱 布料 2025-12-09 02:18:47.779286+00 2025-12-09 02:18:47.77929+00 844 提花底 提花底 布料 2025-12-09 02:18:47.780311+00 2025-12-09 02:18:47.780315+00 845 75克舒美绸 75克舒美绸 布料 2025-12-09 02:18:47.781252+00 2025-12-09 02:18:47.781256+00 846 加厚消光破卡 加厚消光破卡 布料 2025-12-09 02:18:47.782208+00 2025-12-09 02:18:47.782213+00 847 230克本白牛奶丝双磨 230克本白牛奶丝双磨 布料 2025-12-09 02:18:47.783154+00 2025-12-09 02:18:47.783159+00 848 230克健康布 230克健康布 布料 2025-12-09 02:18:47.784098+00 2025-12-09 02:18:47.784102+00 849 165克直贡呢 165克直贡呢 布料 2025-12-09 02:18:47.785049+00 2025-12-09 02:18:47.785053+00 850 大白TC 大白TC 布料 2025-12-09 02:18:47.786006+00 2025-12-09 02:18:47.786011+00 851 尼子 尼子 布料 2025-12-09 02:18:47.786932+00 2025-12-09 02:18:47.786936+00 852 180克75D双层四面弹 180克75D双层四面弹 布料 2025-12-09 02:18:47.787753+00 2025-12-09 02:18:47.787757+00 853 200克大白直贡呢 200克大白直贡呢 布料 2025-12-09 02:18:47.788525+00 2025-12-09 02:18:47.788529+00 854 140克本白牛奶丝 140克本白牛奶丝 布料 2025-12-09 02:18:47.789314+00 2025-12-09 02:18:47.789317+00 855 210克牛奶丝双磨 210克牛奶丝双磨 布料 2025-12-09 02:18:47.790072+00 2025-12-09 02:18:47.790076+00 856 100D130克四面弹 100D130克四面弹 布料 2025-12-09 02:18:47.79083+00 2025-12-09 02:18:47.790834+00 857 170克大白直贡呢 170克大白直贡呢 布料 2025-12-09 02:18:47.791606+00 2025-12-09 02:18:47.79161+00 858 170克米白直贡呢 170克米白直贡呢 布料 2025-12-09 02:18:47.792384+00 2025-12-09 02:18:47.792387+00 859 米白牛奶丝 米白牛奶丝 布料 2025-12-09 02:18:47.793251+00 2025-12-09 02:18:47.793256+00 860 杏色底小牛津 杏色底小牛津 布料 2025-12-09 02:18:47.794074+00 2025-12-09 02:18:47.794079+00 861 亿程102-1涤贡缎 亿程102-1涤贡缎 布料 2025-12-09 02:18:47.794883+00 2025-12-09 02:18:47.794887+00 862 反面呢 反面呢 布料 2025-12-09 02:18:47.795666+00 2025-12-09 02:18:47.79567+00 863 250克捻丝乱麻 250克捻丝乱麻 布料 2025-12-09 02:18:47.796491+00 2025-12-09 02:18:47.796494+00 864 100D110克四面弹 100D110克四面弹 布料 2025-12-09 02:18:47.797278+00 2025-12-09 02:18:47.797282+00 865 随心裁大白罗纹 随心裁大白罗纹 布料 2025-12-09 02:18:47.79809+00 2025-12-09 02:18:47.798093+00 866 斜纹磨毛布 斜纹磨毛布 布料 2025-12-09 02:18:47.798885+00 2025-12-09 02:18:47.79889+00 867 180克牛奶丝双磨米白 180克牛奶丝双磨米白 布料 2025-12-09 02:18:47.799682+00 2025-12-09 02:18:47.799686+00 868 毛绒布 毛绒布 布料 2025-12-09 02:18:47.800488+00 2025-12-09 02:18:47.800492+00 869 6#淡黄面料 6#淡黄面料 布料 2025-12-09 02:18:47.801288+00 2025-12-09 02:18:47.801292+00 870 210克宽幅超纤弹力16坑 210克宽幅超纤弹力16坑 布料 2025-12-09 02:18:47.802088+00 2025-12-09 02:18:47.802092+00 871 210克双磨 210克双磨 布料 2025-12-09 02:18:47.802906+00 2025-12-09 02:18:47.802909+00 872 灰色毛绒布 灰色毛绒布 布料 2025-12-09 02:18:47.803721+00 2025-12-09 02:18:47.803725+00 873 天丝棉A68 天丝棉A68 布料 2025-12-09 02:18:47.804511+00 2025-12-09 02:18:47.804515+00 874 75D斜纹缎 75D斜纹缎 布料 2025-12-09 02:18:47.805324+00 2025-12-09 02:18:47.805328+00 875 绣花底布 绣花底布 布料 2025-12-09 02:18:47.806131+00 2025-12-09 02:18:47.806135+00 876 仿天丝印 仿天丝印 布料 2025-12-09 02:18:47.806927+00 2025-12-09 02:18:47.806931+00 877 天盛1号布120克大白四面弹 天盛1号布120克大白四面弹 布料 2025-12-09 02:18:47.807733+00 2025-12-09 02:18:47.807738+00 878 9×5抽条 9×5抽条 布料 2025-12-09 02:18:47.808517+00 2025-12-09 02:18:47.808521+00 879 天盛120克大白四面弹 天盛120克大白四面弹 布料 2025-12-09 02:18:47.809321+00 2025-12-09 02:18:47.809325+00 880 1033#-1本白缎面 1033#-1本白缎面 布料 2025-12-09 02:18:47.810126+00 2025-12-09 02:18:47.81013+00 881 100d雪纺 100d雪纺 布料 2025-12-09 02:18:47.810929+00 2025-12-09 02:18:47.810933+00 882 夹丝竹节 夹丝竹节 布料 2025-12-09 02:18:47.811722+00 2025-12-09 02:18:47.811726+00 883 卡其提花布 卡其提花布 布料 2025-12-09 02:18:47.812533+00 2025-12-09 02:18:47.812537+00 884 大白30D金编 大白30D金编 布料 2025-12-09 02:18:47.813319+00 2025-12-09 02:18:47.813323+00 885 125克本厂消光破卡A 125克本厂消光破卡A 布料 2025-12-09 02:18:47.814117+00 2025-12-09 02:18:47.814121+00 886 50D涤光加厚 50D涤光加厚 布料 2025-12-09 02:18:47.814905+00 2025-12-09 02:18:47.814909+00 887 乐丽丝斜纹四面弹 乐丽丝斜纹四面弹 布料 2025-12-09 02:18:47.815688+00 2025-12-09 02:18:47.815692+00 888 120克本白底四面弹 120克本白底四面弹 布料 2025-12-09 02:18:47.816472+00 2025-12-09 02:18:47.816476+00 889 泡泡珠 泡泡珠 布料 2025-12-09 02:18:47.817297+00 2025-12-09 02:18:47.817301+00 890 白色雪纺 白色雪纺 布料 2025-12-09 02:18:47.818094+00 2025-12-09 02:18:47.818098+00 891 2*2坑条蓝光白 2*2坑条蓝光白 布料 2025-12-09 02:18:47.818894+00 2025-12-09 02:18:47.818897+00 892 平纹酷丝棉 平纹酷丝棉 布料 2025-12-09 02:18:47.81985+00 2025-12-09 02:18:47.819854+00 893 75D里布 75D里布 布料 2025-12-09 02:18:47.820632+00 2025-12-09 02:18:47.820636+00 894 90克纬弹本白 90克纬弹本白 布料 2025-12-09 02:18:47.821437+00 2025-12-09 02:18:47.821441+00 895 灰底呢料 灰底呢料 布料 2025-12-09 02:18:47.822226+00 2025-12-09 02:18:47.822229+00 896 125克弹力竹节 125克弹力竹节 布料 2025-12-09 02:18:47.823073+00 2025-12-09 02:18:47.823077+00 897 大白tc破卡 大白tc破卡 布料 2025-12-09 02:18:47.823878+00 2025-12-09 02:18:47.823882+00 898 皱提花 皱提花 布料 2025-12-09 02:18:47.824678+00 2025-12-09 02:18:47.824682+00 899 蓝色小牛津 蓝色小牛津 布料 2025-12-09 02:18:47.825465+00 2025-12-09 02:18:47.825469+00 900 单面尼 单面尼 布料 2025-12-09 02:18:47.826257+00 2025-12-09 02:18:47.82626+00 901 220克小卫衣拉架 220克小卫衣拉架 布料 2025-12-09 02:18:47.82705+00 2025-12-09 02:18:47.827054+00 902 200克坑条大白 200克坑条大白 布料 2025-12-09 02:18:47.827848+00 2025-12-09 02:18:47.827852+00 903 120克本白牛奶丝 120克本白牛奶丝 布料 2025-12-09 02:18:47.828643+00 2025-12-09 02:18:47.828647+00 904 75D雪纺皱 75D雪纺皱 布料 2025-12-09 02:18:47.829442+00 2025-12-09 02:18:47.829446+00 905 110g四面弹 110g四面弹 布料 2025-12-09 02:18:47.830237+00 2025-12-09 02:18:47.83024+00 906 随心裁 随心裁 布料 2025-12-09 02:18:47.831017+00 2025-12-09 02:18:47.83102+00 907 4*2坑条 4*2坑条 布料 2025-12-09 02:18:47.831808+00 2025-12-09 02:18:47.831811+00 908 170克超柔仿棉 170克超柔仿棉 布料 2025-12-09 02:18:47.832606+00 2025-12-09 02:18:47.832611+00 909 183#21支竹节 183#21支竹节 布料 2025-12-09 02:18:47.8334+00 2025-12-09 02:18:47.833404+00 910 米白泡泡皱 米白泡泡皱 布料 2025-12-09 02:18:47.834199+00 2025-12-09 02:18:47.834203+00 911 170克双层四面弹 170克双层四面弹 布料 2025-12-09 02:18:47.834999+00 2025-12-09 02:18:47.835003+00 912 170克本白直贡呢 170克本白直贡呢 布料 2025-12-09 02:18:47.835796+00 2025-12-09 02:18:47.8358+00 913 牛仔布 牛仔布 布料 2025-12-09 02:18:47.836579+00 2025-12-09 02:18:47.836583+00 914 新港棉 新港棉 布料 2025-12-09 02:18:47.837383+00 2025-12-09 02:18:47.837387+00 915 臻彩125克米白四面弹 臻彩125克米白四面弹 布料 2025-12-09 02:18:47.838173+00 2025-12-09 02:18:47.838176+00 916 200克白色捻丝乱麻 200克白色捻丝乱麻 布料 2025-12-09 02:18:47.838968+00 2025-12-09 02:18:47.838972+00 917 本白珍珠雪纺 本白珍珠雪纺 布料 2025-12-09 02:18:47.83978+00 2025-12-09 02:18:47.839784+00 918 天盛110克米白纬弹 天盛110克米白纬弹 布料 2025-12-09 02:18:47.840565+00 2025-12-09 02:18:47.840569+00 919 200克大白卫衣 200克大白卫衣 布料 2025-12-09 02:18:47.842155+00 2025-12-09 02:18:47.842159+00 921 230克牛奶丝双磨 230克牛奶丝双磨 布料 2025-12-09 02:18:47.842964+00 2025-12-09 02:18:47.842968+00 922 加厚冰丝皱 加厚冰丝皱 布料 2025-12-09 02:18:47.431485+00 2025-12-09 02:18:47.843723+00 438 180克本白牛奶丝 180克本白牛奶丝 布料 2025-12-09 02:18:47.84458+00 2025-12-09 02:18:47.844584+00 923 提花条 提花条 布料 2025-12-09 02:18:47.845392+00 2025-12-09 02:18:47.845396+00 924 格子泡泡皱 格子泡泡皱 布料 2025-12-09 02:18:47.846191+00 2025-12-09 02:18:47.846194+00 925 卡其底金钻绒 卡其底金钻绒 布料 2025-12-09 02:18:47.846996+00 2025-12-09 02:18:47.847+00 926 杏色+蓝色小牛津 杏色+蓝色小牛津 布料 2025-12-09 02:18:47.847801+00 2025-12-09 02:18:47.847805+00 927 杏色小牛津 杏色小牛津 布料 2025-12-09 02:18:47.848588+00 2025-12-09 02:18:47.848592+00 928 纬弹米白 纬弹米白 布料 2025-12-09 02:18:47.849385+00 2025-12-09 02:18:47.849389+00 929 鹿皮绒 鹿皮绒 布料 2025-12-09 02:18:47.850182+00 2025-12-09 02:18:47.850186+00 930 本白亮光弹力缎 本白亮光弹力缎 布料 2025-12-09 02:18:47.850994+00 2025-12-09 02:18:47.850998+00 931 格子提花 格子提花 布料 2025-12-09 02:18:47.851796+00 2025-12-09 02:18:47.851801+00 932 本白弹力色丁 本白弹力色丁 布料 2025-12-09 02:18:47.852639+00 2025-12-09 02:18:47.852642+00 933 320克卫衣 320克卫衣 布料 2025-12-09 02:18:47.853449+00 2025-12-09 02:18:47.853453+00 934 200克大白罗马布 200克大白罗马布 布料 2025-12-09 02:18:47.942816+00 2025-12-09 02:18:47.942821+00 1022 纬弹四面弹 纬弹四面弹 布料 2025-12-09 02:18:47.85425+00 2025-12-09 02:18:47.854253+00 935 本白哑光弹力缎 本白哑光弹力缎 布料 2025-12-09 02:18:47.85504+00 2025-12-09 02:18:47.855044+00 936 200克米白牛奶丝 200克米白牛奶丝 布料 2025-12-09 02:18:47.85584+00 2025-12-09 02:18:47.855843+00 937 白色羚羊绒 白色羚羊绒 布料 2025-12-09 02:18:47.85663+00 2025-12-09 02:18:47.856634+00 938 涤纶有光 涤纶有光 布料 2025-12-09 02:18:47.857426+00 2025-12-09 02:18:47.85743+00 939 特美网布 特美网布 布料 2025-12-09 02:18:47.858229+00 2025-12-09 02:18:47.858234+00 940 牛仔色竖条 牛仔色竖条 布料 2025-12-09 02:18:47.859034+00 2025-12-09 02:18:47.859037+00 941 95克弹力色丁 95克弹力色丁 布料 2025-12-09 02:18:47.859836+00 2025-12-09 02:18:47.859841+00 942 本白牛奶丝 本白牛奶丝 布料 2025-12-09 02:18:47.860634+00 2025-12-09 02:18:47.860637+00 943 220克牛奶丝单磨 220克牛奶丝单磨 布料 2025-12-09 02:18:47.861581+00 2025-12-09 02:18:47.861586+00 944 140克蚂蚁布米白 140克蚂蚁布米白 布料 2025-12-09 02:18:47.862579+00 2025-12-09 02:18:47.862583+00 945 200克罗纹2 x2 200克罗纹2 x2 布料 2025-12-09 02:18:47.8636+00 2025-12-09 02:18:47.863604+00 946 涤氨色布 涤氨色布 布料 2025-12-09 02:18:47.864601+00 2025-12-09 02:18:47.864605+00 947 888#天丝棉 888#天丝棉 布料 2025-12-09 02:18:47.8656+00 2025-12-09 02:18:47.865604+00 948 S476 S476 布料 2025-12-09 02:18:47.866612+00 2025-12-09 02:18:47.866616+00 949 125克海浪皱 125克海浪皱 布料 2025-12-09 02:18:47.867615+00 2025-12-09 02:18:47.86762+00 950 羚羊绒 羚羊绒 布料 2025-12-09 02:18:47.868624+00 2025-12-09 02:18:47.868629+00 951 75D复合丝 75D复合丝 布料 2025-12-09 02:18:47.869622+00 2025-12-09 02:18:47.869627+00 952 大双层 大双层 布料 2025-12-09 02:18:47.87062+00 2025-12-09 02:18:47.870624+00 953 格子雪纺 格子雪纺 布料 2025-12-09 02:18:47.871625+00 2025-12-09 02:18:47.87163+00 954 40D涤氨弹力网 40D涤氨弹力网 布料 2025-12-09 02:18:47.872625+00 2025-12-09 02:18:47.87263+00 955 提花格 提花格 布料 2025-12-09 02:18:47.873619+00 2025-12-09 02:18:47.873624+00 956 针织提花布 针织提花布 布料 2025-12-09 02:18:47.874926+00 2025-12-09 02:18:47.87493+00 957 普通四面弹 普通四面弹 布料 2025-12-09 02:18:47.876237+00 2025-12-09 02:18:47.876241+00 958 70克四面弹米白 70克四面弹米白 布料 2025-12-09 02:18:47.877536+00 2025-12-09 02:18:47.877541+00 959 罗纹面料 罗纹面料 布料 2025-12-09 02:18:47.87886+00 2025-12-09 02:18:47.878864+00 960 欧根纱竹节 欧根纱竹节 布料 2025-12-09 02:18:47.880172+00 2025-12-09 02:18:47.880176+00 961 横条布 横条布 布料 2025-12-09 02:18:47.881484+00 2025-12-09 02:18:47.881488+00 962 日本卫衣抓毛 日本卫衣抓毛 布料 2025-12-09 02:18:47.882806+00 2025-12-09 02:18:47.88281+00 963 200克罗马米白 200克罗马米白 布料 2025-12-09 02:18:47.884103+00 2025-12-09 02:18:47.884108+00 964 190克直贡呢 190克直贡呢 布料 2025-12-09 02:18:47.885113+00 2025-12-09 02:18:47.885117+00 965 蛇骨纹 蛇骨纹 布料 2025-12-09 02:18:47.886132+00 2025-12-09 02:18:47.886136+00 966 达丰110克四面弹 达丰110克四面弹 布料 2025-12-09 02:18:47.887132+00 2025-12-09 02:18:47.887137+00 967 哑光加厚弹力缎 哑光加厚弹力缎 布料 2025-12-09 02:18:47.888194+00 2025-12-09 02:18:47.888199+00 968 330克涤罗马 330克涤罗马 布料 2025-12-09 02:18:47.889199+00 2025-12-09 02:18:47.889203+00 969 高弹力的棉柔棉 高弹力的棉柔棉 布料 2025-12-09 02:18:47.890198+00 2025-12-09 02:18:47.890203+00 970 雪纺缎面皱 雪纺缎面皱 布料 2025-12-09 02:18:47.891216+00 2025-12-09 02:18:47.891221+00 971 180克乐丽丝斜纹四面弹 180克乐丽丝斜纹四面弹 布料 2025-12-09 02:18:47.892214+00 2025-12-09 02:18:47.892218+00 972 180克涤有光 180克涤有光 布料 2025-12-09 02:18:47.893207+00 2025-12-09 02:18:47.893212+00 973 110克米白牛奶丝 110克米白牛奶丝 布料 2025-12-09 02:18:47.894205+00 2025-12-09 02:18:47.89421+00 974 320克韩国绒 320克韩国绒 布料 2025-12-09 02:18:47.89521+00 2025-12-09 02:18:47.895214+00 975 2*2 螺纹坑条 2*2 螺纹坑条 布料 2025-12-09 02:18:47.896212+00 2025-12-09 02:18:47.896217+00 976 卡其色灯芯绒 卡其色灯芯绒 布料 2025-12-09 02:18:47.897223+00 2025-12-09 02:18:47.897228+00 977 丽丝绒 丽丝绒 布料 2025-12-09 02:18:47.898223+00 2025-12-09 02:18:47.898228+00 978 170克超柔仿棉拉架 170克超柔仿棉拉架 布料 2025-12-09 02:18:47.899234+00 2025-12-09 02:18:47.899239+00 979 涤仿棉麻 涤仿棉麻 布料 2025-12-09 02:18:47.900247+00 2025-12-09 02:18:47.900252+00 980 皱布 皱布 布料 2025-12-09 02:18:47.901244+00 2025-12-09 02:18:47.901248+00 981 渐变竹节 渐变竹节 布料 2025-12-09 02:18:47.902259+00 2025-12-09 02:18:47.902263+00 982 仿麻针织 1x1超密罗纹 仿麻针织 1x1超密罗纹 布料 2025-12-09 02:18:47.903279+00 2025-12-09 02:18:47.903284+00 983 200G仿棉拉架 200G仿棉拉架 布料 2025-12-09 02:18:47.904287+00 2025-12-09 02:18:47.904292+00 984 190克牛奶丝 190克牛奶丝 布料 2025-12-09 02:18:47.905282+00 2025-12-09 02:18:47.905286+00 985 横条斜文 横条斜文 布料 2025-12-09 02:18:47.906297+00 2025-12-09 02:18:47.906302+00 986 毛衣布 毛衣布 布料 2025-12-09 02:18:47.907307+00 2025-12-09 02:18:47.907312+00 987 单面呢磨毛 单面呢磨毛 布料 2025-12-09 02:18:47.908395+00 2025-12-09 02:18:47.9084+00 988 双刷双摇面料 双刷双摇面料 布料 2025-12-09 02:18:47.909392+00 2025-12-09 02:18:47.909396+00 989 180克乐丽丝 180克乐丽丝 布料 2025-12-09 02:18:47.911412+00 2025-12-09 02:18:47.911417+00 991 测试123 测试123 布料 2025-12-09 02:18:47.912412+00 2025-12-09 02:18:47.912417+00 992 楼梯布 楼梯布 布料 2025-12-09 02:18:47.913414+00 2025-12-09 02:18:47.913418+00 993 白色锦纶透气孔 白色锦纶透气孔 布料 2025-12-09 02:18:47.914424+00 2025-12-09 02:18:47.914429+00 994 120克酷丝棉 120克酷丝棉 布料 2025-12-09 02:18:47.915448+00 2025-12-09 02:18:47.915453+00 995 130克酷丝棉 130克酷丝棉 布料 2025-12-09 02:18:47.916455+00 2025-12-09 02:18:47.91646+00 996 220克日本卫衣 220克日本卫衣 布料 2025-12-09 02:18:47.917457+00 2025-12-09 02:18:47.917461+00 997 双色斜纹 双色斜纹 布料 2025-12-09 02:18:47.918451+00 2025-12-09 02:18:47.918456+00 998 消光平纹 消光平纹 布料 2025-12-09 02:18:47.919462+00 2025-12-09 02:18:47.919467+00 999 日本卫衣抓毛米白 日本卫衣抓毛米白 布料 2025-12-09 02:18:47.920501+00 2025-12-09 02:18:47.920506+00 1000 250克鸟眼布 250克鸟眼布 布料 2025-12-09 02:18:47.92151+00 2025-12-09 02:18:47.921514+00 1001 弹力四面弹 弹力四面弹 布料 2025-12-09 02:18:47.923547+00 2025-12-09 02:18:47.923551+00 1003 75D直贡呢 75D直贡呢 布料 2025-12-09 02:18:47.924551+00 2025-12-09 02:18:47.924556+00 1004 仿麻针织 仿麻针织 布料 2025-12-09 02:18:47.925568+00 2025-12-09 02:18:47.925572+00 1005 长弹布料 长弹布料 布料 2025-12-09 02:18:47.926569+00 2025-12-09 02:18:47.926574+00 1006 单面呢 单面呢 布料 2025-12-09 02:18:47.927577+00 2025-12-09 02:18:47.927581+00 1007 130克本白酷丝棉 130克本白酷丝棉 布料 2025-12-09 02:18:47.928585+00 2025-12-09 02:18:47.928589+00 1008 微微皱 微微皱 布料 2025-12-09 02:18:47.9296+00 2025-12-09 02:18:47.929604+00 1009 毛线布 毛线布 布料 2025-12-09 02:18:47.930622+00 2025-12-09 02:18:47.930627+00 1010 小方格布 小方格布 布料 2025-12-09 02:18:47.931637+00 2025-12-09 02:18:47.931642+00 1011 弹力珠地 弹力珠地 布料 2025-12-09 02:18:47.932649+00 2025-12-09 02:18:47.932654+00 1012 长城条 长城条 布料 2025-12-09 02:18:47.933672+00 2025-12-09 02:18:47.933676+00 1013 双面呢 双面呢 布料 2025-12-09 02:18:47.934686+00 2025-12-09 02:18:47.93469+00 1014 50D超柔四面弹 50D超柔四面弹 布料 2025-12-09 02:18:47.935701+00 2025-12-09 02:18:47.935709+00 1015 9x5大白坑条 9x5大白坑条 布料 2025-12-09 02:18:47.936733+00 2025-12-09 02:18:47.936738+00 1016 200克牛奶丝双磨 200克牛奶丝双磨 布料 2025-12-09 02:18:47.937746+00 2025-12-09 02:18:47.937751+00 1017 160克牛奶丝拉架 160克牛奶丝拉架 布料 2025-12-09 02:18:47.93875+00 2025-12-09 02:18:47.938755+00 1018 250克日本卫衣抓毛 250克日本卫衣抓毛 布料 2025-12-09 02:18:47.939759+00 2025-12-09 02:18:47.939764+00 1019 200克本白坑条 200克本白坑条 布料 2025-12-09 02:18:47.940754+00 2025-12-09 02:18:47.940758+00 1020 205g蚕丝灯芯绒16坑 205g蚕丝灯芯绒16坑 布料 2025-12-09 02:18:47.941773+00 2025-12-09 02:18:47.941777+00 1021 190克日本卫衣抓绒 190克日本卫衣抓绒 布料 2025-12-09 02:18:47.943823+00 2025-12-09 02:18:47.943828+00 1023 210克牛奶丝单磨 210克牛奶丝单磨 布料 2025-12-09 02:18:48.718964+00 2025-12-09 02:18:48.71897+00 1025 哑光弹力缎 哑光弹力缎 布料 2025-12-09 02:18:48.719908+00 2025-12-09 02:18:48.719912+00 1026 白色弹洞布 白色弹洞布 布料 2025-12-09 02:18:48.720791+00 2025-12-09 02:18:48.720795+00 1027 麂皮空气层 麂皮空气层 布料 2025-12-09 02:18:48.721709+00 2025-12-09 02:18:48.721713+00 1028 麂皮空气 麂皮空气 布料 2025-12-09 02:18:48.722599+00 2025-12-09 02:18:48.722603+00 1029 起华夫格 起华夫格 布料 2025-12-09 02:18:48.723525+00 2025-12-09 02:18:48.723529+00 1030 有光弹力缎 有光弹力缎 布料 2025-12-09 02:18:48.725371+00 2025-12-09 02:18:48.725375+00 1031 3\\3斜纹面料 3\\3斜纹面料 布料 2025-12-09 02:18:48.726234+00 2025-12-09 02:18:48.726237+00 1032 320克仿棉一体绒 320克仿棉一体绒 布料 2025-12-09 02:18:48.727104+00 2025-12-09 02:18:48.727108+00 1033 250克有氨空气层 250克有氨空气层 布料 2025-12-09 02:18:48.727966+00 2025-12-09 02:18:48.72797+00 1034 复合破卡 复合破卡 布料 2025-12-09 02:18:48.72897+00 2025-12-09 02:18:48.728975+00 1035 250克大卫衣 250克大卫衣 布料 2025-12-09 02:18:48.729943+00 2025-12-09 02:18:48.729947+00 1036 160克牛奶丝 160克牛奶丝 布料 2025-12-09 02:18:48.730905+00 2025-12-09 02:18:48.73091+00 1037 针织面料 针织面料 布料 2025-12-09 02:18:48.731871+00 2025-12-09 02:18:48.731875+00 1038 仿棉一体绒 仿棉一体绒 布料 2025-12-09 02:18:48.732832+00 2025-12-09 02:18:48.732837+00 1039 250克酷丝棉 250克酷丝棉 布料 2025-12-09 02:18:48.734736+00 2025-12-09 02:18:48.73474+00 1041 110克泡泡皱 110克泡泡皱 布料 2025-12-09 02:18:48.735701+00 2025-12-09 02:18:48.735709+00 1042 2*2罗纹 2*2罗纹 布料 2025-12-09 02:18:48.736646+00 2025-12-09 02:18:48.73665+00 1043 高弹缎面 高弹缎面 布料 2025-12-09 02:18:48.737596+00 2025-12-09 02:18:48.737601+00 1044 170克加厚双层四面弹 170克加厚双层四面弹 布料 2025-12-09 02:18:48.738554+00 2025-12-09 02:18:48.738558+00 1045 黑底金钻绒银 黑底金钻绒银 布料 2025-12-09 02:18:48.73951+00 2025-12-09 02:18:48.739513+00 1046 棉坑条 棉坑条 布料 2025-12-09 02:18:48.740475+00 2025-12-09 02:18:48.740479+00 1047 250克抓毛卫衣 250克抓毛卫衣 布料 2025-12-09 02:18:48.741426+00 2025-12-09 02:18:48.741431+00 1048 乐丽丝二二斜 乐丽丝二二斜 布料 2025-12-09 02:18:48.742365+00 2025-12-09 02:18:48.742369+00 1049 云朵棉 云朵棉 布料 2025-12-09 02:18:48.743322+00 2025-12-09 02:18:48.743327+00 1050 混纺底 混纺底 布料 2025-12-09 02:18:48.744264+00 2025-12-09 02:18:48.744268+00 1051 230克牛奶丝单磨 230克牛奶丝单磨 布料 2025-12-09 02:18:48.745217+00 2025-12-09 02:18:48.745221+00 1052 90克纬弹四面弹 90克纬弹四面弹 布料 2025-12-09 02:18:48.746173+00 2025-12-09 02:18:48.746177+00 1053 200克白色乱麻 200克白色乱麻 布料 2025-12-09 02:18:48.747173+00 2025-12-09 02:18:48.747177+00 1054 200克本白仿棉拉架 200克本白仿棉拉架 布料 2025-12-09 02:18:48.748181+00 2025-12-09 02:18:48.748186+00 1055 230克蚂蚁布 230克蚂蚁布 布料 2025-12-09 02:18:48.749475+00 2025-12-09 02:18:48.74948+00 1056 16坑灯芯绒 16坑灯芯绒 布料 2025-12-09 02:18:48.752143+00 2025-12-09 02:18:48.752148+00 1058 250克健康布 250克健康布 布料 2025-12-09 02:18:48.753688+00 2025-12-09 02:18:48.753694+00 1059 大白坑条2*2罗纹 大白坑条2*2罗纹 布料 2025-12-09 02:18:48.75493+00 2025-12-09 02:18:48.754936+00 1060 涤竹节麻 涤竹节麻 布料 2025-12-09 02:18:48.756136+00 2025-12-09 02:18:48.756142+00 1061 75D加厚双层四面弹170g 75D加厚双层四面弹170g 布料 2025-12-09 02:18:48.757367+00 2025-12-09 02:18:48.757372+00 1062 150克酷丝棉平纹 150克酷丝棉平纹 布料 2025-12-09 02:18:48.758591+00 2025-12-09 02:18:48.758596+00 1063 双磨 双磨 布料 2025-12-09 02:18:48.760016+00 2025-12-09 02:18:48.760025+00 1064 黑底金钻绒 黑底金钻绒 布料 2025-12-09 02:18:48.761424+00 2025-12-09 02:18:48.761431+00 1065 米白底金钻绒 米白底金钻绒 布料 2025-12-09 02:18:48.762794+00 2025-12-09 02:18:48.762801+00 1066 雪纺丝 雪纺丝 布料 2025-12-09 02:18:48.764101+00 2025-12-09 02:18:48.764108+00 1067 95克仿真丝色丁 95克仿真丝色丁 布料 2025-12-09 02:18:48.765334+00 2025-12-09 02:18:48.76534+00 1068 230克小卫衣拉架 230克小卫衣拉架 布料 2025-12-09 02:18:48.766542+00 2025-12-09 02:18:48.766547+00 1069 粘丝 粘丝 布料 2025-12-09 02:18:48.767945+00 2025-12-09 02:18:48.767952+00 1070 大白金钻绒 大白金钻绒 布料 2025-12-09 02:18:48.770257+00 2025-12-09 02:18:48.770261+00 1071 180克牛奶丝抓毛 180克牛奶丝抓毛 布料 2025-12-09 02:18:48.771394+00 2025-12-09 02:18:48.771399+00 1072 皱面料 皱面料 布料 2025-12-09 02:18:48.772606+00 2025-12-09 02:18:48.772611+00 1073 网眼布 网眼布 布料 2025-12-09 02:18:48.773755+00 2025-12-09 02:18:48.773759+00 1074 50D超柔 50D超柔 布料 2025-12-09 02:18:48.7749+00 2025-12-09 02:18:48.774904+00 1075 韩国丝皱 韩国丝皱 布料 2025-12-09 02:18:48.775995+00 2025-12-09 02:18:48.775998+00 1076 140克牛奶丝单磨 140克牛奶丝单磨 布料 2025-12-09 02:18:48.777078+00 2025-12-09 02:18:48.777083+00 1077 泡泡色丁布 泡泡色丁布 布料 2025-12-09 02:18:48.778149+00 2025-12-09 02:18:48.778152+00 1078 酷丝棉B 酷丝棉B 布料 2025-12-09 02:18:48.779139+00 2025-12-09 02:18:48.779142+00 1079 40支仿天丝涤 40支仿天丝涤 布料 2025-12-09 02:18:48.780156+00 2025-12-09 02:18:48.780159+00 1080 170克本白牛奶丝 170克本白牛奶丝 布料 2025-12-09 02:18:48.781161+00 2025-12-09 02:18:48.781164+00 1081 白色四面弹 白色四面弹 布料 2025-12-09 02:18:48.782816+00 2025-12-09 02:18:48.782821+00 1082 528丝光 528丝光 布料 2025-12-09 02:18:48.784064+00 2025-12-09 02:18:48.784068+00 1083 杏色德绒 杏色德绒 布料 2025-12-09 02:18:48.750847+00 2025-12-09 02:18:49.40158+00 1057 170克牛奶丝双磨 170克牛奶丝双磨 布料 2025-12-09 02:18:48.733786+00 2025-12-09 02:18:50.350732+00 1040 面料待定 面料待定 布料 2025-12-09 02:18:48.717538+00 2025-12-09 02:18:50.357472+00 1024 牛奶丝 牛奶丝 布料 2025-12-09 02:18:48.78654+00 2025-12-09 02:18:48.786544+00 1085 30D高弹牛奶丝拉架 30D高弹牛奶丝拉架 布料 2025-12-09 02:18:48.787785+00 2025-12-09 02:18:48.787789+00 1086 乐丽斜 乐丽斜 布料 2025-12-09 02:18:48.790259+00 2025-12-09 02:18:48.790263+00 1088 150D双层四面弹 150D双层四面弹 布料 2025-12-09 02:18:48.791463+00 2025-12-09 02:18:48.791466+00 1089 220克蚂蚁布 220克蚂蚁布 布料 2025-12-09 02:18:48.7926+00 2025-12-09 02:18:48.792606+00 1090 猫眼绒 猫眼绒 布料 2025-12-09 02:18:48.793655+00 2025-12-09 02:18:48.79366+00 1091 180g双磨牛奶丝米白 180g双磨牛奶丝米白 布料 2025-12-09 02:18:48.794627+00 2025-12-09 02:18:48.794631+00 1092 150克四面弹斜纹 150克四面弹斜纹 布料 2025-12-09 02:18:48.795609+00 2025-12-09 02:18:48.795614+00 1093 2X2罗纹 2X2罗纹 布料 2025-12-09 02:18:48.796569+00 2025-12-09 02:18:48.796573+00 1094 200D单斜 200D单斜 布料 2025-12-09 02:18:48.797529+00 2025-12-09 02:18:48.797533+00 1095 绒雪纺 绒雪纺 布料 2025-12-09 02:18:48.798575+00 2025-12-09 02:18:48.798579+00 1096 170克本白仿棉拉架 170克本白仿棉拉架 布料 2025-12-09 02:18:48.799566+00 2025-12-09 02:18:48.79957+00 1097 2*2坑条螺纹 2*2坑条螺纹 布料 2025-12-09 02:18:48.800652+00 2025-12-09 02:18:48.800656+00 1098 客户专用120克大白四面弹 客户专用120克大白四面弹 布料 2025-12-09 02:18:48.801626+00 2025-12-09 02:18:48.80163+00 1099 斜纹拉架 斜纹拉架 布料 2025-12-09 02:18:48.8026+00 2025-12-09 02:18:48.802604+00 1100 泡泡色丁 泡泡色丁 布料 2025-12-09 02:18:48.803575+00 2025-12-09 02:18:48.803579+00 1101 米白水晶缎 米白水晶缎 布料 2025-12-09 02:18:48.804539+00 2025-12-09 02:18:48.804542+00 1102 达丰140克四面弹 达丰140克四面弹 布料 2025-12-09 02:18:48.805486+00 2025-12-09 02:18:48.80549+00 1103 黑底杏面缎面绒 黑底杏面缎面绒 布料 2025-12-09 02:18:48.80646+00 2025-12-09 02:18:48.806464+00 1104 精品缎面麻 精品缎面麻 布料 2025-12-09 02:18:48.807508+00 2025-12-09 02:18:48.807512+00 1105 波浪皱 波浪皱 布料 2025-12-09 02:18:48.80847+00 2025-12-09 02:18:48.808473+00 1106 180克蚂蚁布 180克蚂蚁布 布料 2025-12-09 02:18:48.810376+00 2025-12-09 02:18:48.81038+00 1108 板布待定 板布待定 布料 2025-12-09 02:18:48.811311+00 2025-12-09 02:18:48.811314+00 1109 坑条180克 坑条180克 布料 2025-12-09 02:18:48.812271+00 2025-12-09 02:18:48.812275+00 1110 小卫衣布 小卫衣布 布料 2025-12-09 02:18:48.813219+00 2025-12-09 02:18:48.813223+00 1111 140g四面弹 140g四面弹 布料 2025-12-09 02:18:48.814158+00 2025-12-09 02:18:48.814161+00 1112 酷丝棉骑兵斜白 酷丝棉骑兵斜白 布料 2025-12-09 02:18:48.815111+00 2025-12-09 02:18:48.815116+00 1113 弹力竹节麻 弹力竹节麻 布料 2025-12-09 02:18:48.816066+00 2025-12-09 02:18:48.816069+00 1114 酷丝棉数码 酷丝棉数码 布料 2025-12-09 02:18:48.817029+00 2025-12-09 02:18:48.817033+00 1115 米白牛奶丝拉架180克 米白牛奶丝拉架180克 布料 2025-12-09 02:18:48.817868+00 2025-12-09 02:18:48.817872+00 1116 180克米白牛奶丝拉架 180克米白牛奶丝拉架 布料 2025-12-09 02:18:48.818657+00 2025-12-09 02:18:48.81866+00 1117 银丝顺纡皱 银丝顺纡皱 布料 2025-12-09 02:18:48.819457+00 2025-12-09 02:18:48.819461+00 1118 140克本白四面弹 140克本白四面弹 布料 2025-12-09 02:18:48.820237+00 2025-12-09 02:18:48.820241+00 1119 酷丝棉斜纹 酷丝棉斜纹 布料 2025-12-09 02:18:48.821028+00 2025-12-09 02:18:48.821032+00 1120 平纹竹节 平纹竹节 布料 2025-12-09 02:18:48.821799+00 2025-12-09 02:18:48.821803+00 1121 230克双磨 230克双磨 布料 2025-12-09 02:18:48.822546+00 2025-12-09 02:18:48.822549+00 1122 250克小坑条 250克小坑条 布料 2025-12-09 02:18:48.823329+00 2025-12-09 02:18:48.823333+00 1123 达丰120克四面弹 达丰120克四面弹 布料 2025-12-09 02:18:48.824093+00 2025-12-09 02:18:48.824096+00 1124 麂皮绒 麂皮绒 布料 2025-12-09 02:18:48.824845+00 2025-12-09 02:18:48.824848+00 1125 弹力仿真丝 弹力仿真丝 布料 2025-12-09 02:18:48.825612+00 2025-12-09 02:18:48.825616+00 1126 德国网 德国网 布料 2025-12-09 02:18:48.82638+00 2025-12-09 02:18:48.826384+00 1127 泡泡皱米白 泡泡皱米白 布料 2025-12-09 02:18:48.827141+00 2025-12-09 02:18:48.827144+00 1128 250G小卫衣 250G小卫衣 布料 2025-12-09 02:18:48.828145+00 2025-12-09 02:18:48.828149+00 1129 四面弹数码印花 四面弹数码印花 布料 2025-12-09 02:18:48.828908+00 2025-12-09 02:18:48.828911+00 1130 罗纹布 罗纹布 布料 2025-12-09 02:18:48.829686+00 2025-12-09 02:18:48.82969+00 1131 醋酸绒手抓花 醋酸绒手抓花 布料 2025-12-09 02:18:48.830464+00 2025-12-09 02:18:48.830467+00 1132 银线雪纺 银线雪纺 布料 2025-12-09 02:18:48.831232+00 2025-12-09 02:18:48.831236+00 1133 醋酸缎面麻 醋酸缎面麻 布料 2025-12-09 02:18:48.832003+00 2025-12-09 02:18:48.832007+00 1134 200克仿棉拉架 200克仿棉拉架 布料 2025-12-09 02:18:48.832775+00 2025-12-09 02:18:48.832779+00 1135 破卡大白 破卡大白 布料 2025-12-09 02:18:48.833541+00 2025-12-09 02:18:48.833544+00 1136 120四面弹印 120四面弹印 布料 2025-12-09 02:18:48.834285+00 2025-12-09 02:18:48.834289+00 1137 直贡呢彩色 直贡呢彩色 布料 2025-12-09 02:18:48.835057+00 2025-12-09 02:18:48.835061+00 1138 消光印 消光印 布料 2025-12-09 02:18:48.83581+00 2025-12-09 02:18:48.835814+00 1139 槟海单磨牛奶丝200g 槟海单磨牛奶丝200g 布料 2025-12-09 02:18:48.838212+00 2025-12-09 02:18:48.838216+00 1141 大斜纹布 大斜纹布 布料 2025-12-09 02:18:48.838997+00 2025-12-09 02:18:48.839001+00 1142 麻布 麻布 布料 2025-12-09 02:18:48.839763+00 2025-12-09 02:18:48.839767+00 1143 140克玲珑麻 140克玲珑麻 布料 2025-12-09 02:18:48.84054+00 2025-12-09 02:18:48.840543+00 1144 大白纱丁 大白纱丁 布料 2025-12-09 02:18:48.841286+00 2025-12-09 02:18:48.841289+00 1145 牙签条泡泡 牙签条泡泡 布料 2025-12-09 02:18:48.842052+00 2025-12-09 02:18:48.842056+00 1146 2X2坑条蓝光白 2X2坑条蓝光白 布料 2025-12-09 02:18:48.842822+00 2025-12-09 02:18:48.842825+00 1147 210克坑条 210克坑条 布料 2025-12-09 02:18:48.843571+00 2025-12-09 02:18:48.843574+00 1148 纬弹四面弹米白 纬弹四面弹米白 布料 2025-12-09 02:18:48.844355+00 2025-12-09 02:18:48.844359+00 1149 杏色健康布 杏色健康布 布料 2025-12-09 02:18:48.845119+00 2025-12-09 02:18:48.845123+00 1150 绒布 绒布 布料 2025-12-09 02:18:48.845868+00 2025-12-09 02:18:48.845871+00 1151 米白珍珠雪纺 米白珍珠雪纺 布料 2025-12-09 02:18:48.846939+00 2025-12-09 02:18:48.846942+00 1152 8047缎 8047缎 布料 2025-12-09 02:18:48.847692+00 2025-12-09 02:18:48.847695+00 1153 210克涤纶有光泳布 210克涤纶有光泳布 布料 2025-12-09 02:18:48.848469+00 2025-12-09 02:18:48.848473+00 1154 220克牛奶丝双磨 220克牛奶丝双磨 布料 2025-12-09 02:18:48.849225+00 2025-12-09 02:18:48.849229+00 1155 高弹冰丝皱 高弹冰丝皱 布料 2025-12-09 02:18:48.850093+00 2025-12-09 02:18:48.850098+00 1156 190克日本卫衣 190克日本卫衣 布料 2025-12-09 02:18:48.850861+00 2025-12-09 02:18:48.850865+00 1157 亮光布 亮光布 布料 2025-12-09 02:18:48.851612+00 2025-12-09 02:18:48.851615+00 1158 180克仿棉拉架磨毛 180克仿棉拉架磨毛 布料 2025-12-09 02:18:48.85238+00 2025-12-09 02:18:48.852384+00 1159 170克加厚双层 170克加厚双层 布料 2025-12-09 02:18:48.853138+00 2025-12-09 02:18:48.853141+00 1160 雪纺绉 雪纺绉 布料 2025-12-09 02:18:48.853891+00 2025-12-09 02:18:48.853895+00 1161 仿棉斜纹 仿棉斜纹 布料 2025-12-09 02:18:48.854665+00 2025-12-09 02:18:48.854669+00 1162 测试 测试 布料 2025-12-09 02:18:48.855422+00 2025-12-09 02:18:48.855426+00 1163 长丝竹节 长丝竹节 布料 2025-12-09 02:18:48.85619+00 2025-12-09 02:18:48.856194+00 1164 金钻绒杏底 金钻绒杏底 布料 2025-12-09 02:18:48.856955+00 2025-12-09 02:18:48.856959+00 1165 缎面绉 缎面绉 布料 2025-12-09 02:18:48.809422+00 2025-12-09 02:18:49.244228+00 1107 120克四面弹 120克四面弹 布料 2025-12-09 02:18:48.789019+00 2025-12-09 02:18:49.539865+00 1087 酷丝棉 酷丝棉 布料 2025-12-09 02:18:48.857715+00 2025-12-09 02:18:48.857719+00 1166 涤氨亮面 涤氨亮面 布料 2025-12-09 02:18:48.858708+00 2025-12-09 02:18:48.858713+00 1167 棉感健康布 棉感健康布 布料 2025-12-09 02:18:48.859522+00 2025-12-09 02:18:48.859526+00 1168 180克坑条 180克坑条 布料 2025-12-09 02:18:48.895627+00 2025-12-09 02:18:49.09924+00 1206 250克牛奶丝双磨 250克牛奶丝双磨 布料 2025-12-09 02:18:48.861895+00 2025-12-09 02:18:48.861899+00 1170 105克四面弹 105克四面弹 布料 2025-12-09 02:18:48.862707+00 2025-12-09 02:18:48.86271+00 1171 150D有光缎 150D有光缎 布料 2025-12-09 02:18:48.863475+00 2025-12-09 02:18:48.863478+00 1172 丝绒 丝绒 布料 2025-12-09 02:18:48.86425+00 2025-12-09 02:18:48.864254+00 1173 客户布待定 客户布待定 布料 2025-12-09 02:18:48.865216+00 2025-12-09 02:18:48.86522+00 1174 平纹锻 平纹锻 布料 2025-12-09 02:18:48.866546+00 2025-12-09 02:18:48.866549+00 1175 15666446 15666446 布料 2025-12-09 02:18:48.86847+00 2025-12-09 02:18:48.868474+00 1176 星光缎 星光缎 布料 2025-12-09 02:18:48.869426+00 2025-12-09 02:18:48.869429+00 1177 200克大白坑条 200克大白坑条 布料 2025-12-09 02:18:48.87039+00 2025-12-09 02:18:48.870393+00 1178 190克蓝光大白卫衣 190克蓝光大白卫衣 布料 2025-12-09 02:18:48.871335+00 2025-12-09 02:18:48.871339+00 1179 夹棉提花 夹棉提花 布料 2025-12-09 02:18:48.872283+00 2025-12-09 02:18:48.872287+00 1180 48支仿麻竹节 48支仿麻竹节 布料 2025-12-09 02:18:48.87324+00 2025-12-09 02:18:48.873244+00 1181 纳米绉 纳米绉 布料 2025-12-09 02:18:48.874203+00 2025-12-09 02:18:48.874206+00 1182 75D尼龙四面弹 75D尼龙四面弹 布料 2025-12-09 02:18:48.875159+00 2025-12-09 02:18:48.875162+00 1183 130克本白四面弹 130克本白四面弹 布料 2025-12-09 02:18:48.876107+00 2025-12-09 02:18:48.87611+00 1184 米白细斜 米白细斜 布料 2025-12-09 02:18:48.878005+00 2025-12-09 02:18:48.878009+00 1186 100D90克纬弹 100D90克纬弹 布料 2025-12-09 02:18:48.878941+00 2025-12-09 02:18:48.878945+00 1187 105克纬弹 105克纬弹 布料 2025-12-09 02:18:48.880089+00 2025-12-09 02:18:48.880093+00 1188 法国绒 法国绒 布料 2025-12-09 02:18:48.881013+00 2025-12-09 02:18:48.881016+00 1189 米兰皱 米兰皱 布料 2025-12-09 02:18:48.8818+00 2025-12-09 02:18:48.881803+00 1190 大白涤棉 大白涤棉 布料 2025-12-09 02:18:48.882584+00 2025-12-09 02:18:48.882588+00 1191 全光 全光 布料 2025-12-09 02:18:48.883365+00 2025-12-09 02:18:48.883368+00 1192 230g金钻绒 230g金钻绒 布料 2025-12-09 02:18:48.884123+00 2025-12-09 02:18:48.884127+00 1193 大白纺棉拉架 大白纺棉拉架 布料 2025-12-09 02:18:48.884911+00 2025-12-09 02:18:48.884914+00 1194 仿棉弹力斜纹 仿棉弹力斜纹 布料 2025-12-09 02:18:48.886431+00 2025-12-09 02:18:48.886435+00 1196 加厚弹力缎 加厚弹力缎 布料 2025-12-09 02:18:48.8872+00 2025-12-09 02:18:48.887204+00 1197 双色金钻绒 双色金钻绒 布料 2025-12-09 02:18:48.887948+00 2025-12-09 02:18:48.887951+00 1198 170克空气层 170克空气层 布料 2025-12-09 02:18:48.889882+00 2025-12-09 02:18:48.889887+00 1200 240T春亚纺 240T春亚纺 布料 2025-12-09 02:18:48.890797+00 2025-12-09 02:18:48.890801+00 1201 客户牛奶丝 客户牛奶丝 布料 2025-12-09 02:18:48.891572+00 2025-12-09 02:18:48.891575+00 1202 法国绒磨毛180克 法国绒磨毛180克 布料 2025-12-09 02:18:48.893122+00 2025-12-09 02:18:48.893125+00 1203 牛奶丝乱花 牛奶丝乱花 布料 2025-12-09 02:18:48.893897+00 2025-12-09 02:18:48.893901+00 1204 加捻乱麻 加捻乱麻 布料 2025-12-09 02:18:48.894665+00 2025-12-09 02:18:48.894668+00 1205 200克牛奶丝乱花 200克牛奶丝乱花 布料 2025-12-09 02:18:48.896602+00 2025-12-09 02:18:48.896606+00 1207 磨毛新料子 磨毛新料子 布料 2025-12-09 02:18:48.897573+00 2025-12-09 02:18:48.897576+00 1208 50D 全光 50D 全光 布料 2025-12-09 02:18:48.898527+00 2025-12-09 02:18:48.898531+00 1209 竹节棉麻 竹节棉麻 布料 2025-12-09 02:18:48.899497+00 2025-12-09 02:18:48.899501+00 1210 170克罗马 170克罗马 布料 2025-12-09 02:18:48.900457+00 2025-12-09 02:18:48.900461+00 1211 白色钻石雪纺 白色钻石雪纺 布料 2025-12-09 02:18:48.901418+00 2025-12-09 02:18:48.901422+00 1212 涤卫衣拉架 涤卫衣拉架 布料 2025-12-09 02:18:48.903138+00 2025-12-09 02:18:48.903876+00 1214 颗粒绒 颗粒绒 布料 2025-12-09 02:18:48.904679+00 2025-12-09 02:18:48.904683+00 1215 本厂110克本白四面弹 本厂110克本白四面弹 布料 2025-12-09 02:18:48.906242+00 2025-12-09 02:18:48.906246+00 1217 有色布色丁 有色布色丁 布料 2025-12-09 02:18:48.907034+00 2025-12-09 02:18:48.907038+00 1218 200克哥弟纹 200克哥弟纹 布料 2025-12-09 02:18:48.907796+00 2025-12-09 02:18:48.907799+00 1219 涤孔布 涤孔布 布料 2025-12-09 02:18:48.908559+00 2025-12-09 02:18:48.908563+00 1220 本厂大白120克四面弹 本厂大白120克四面弹 布料 2025-12-09 02:18:48.909335+00 2025-12-09 02:18:48.909339+00 1221 本厂170克仿棉拉架米白 本厂170克仿棉拉架米白 布料 2025-12-09 02:18:48.910108+00 2025-12-09 02:18:48.910112+00 1222 高密珍珠雪纺 高密珍珠雪纺 布料 2025-12-09 02:18:48.911651+00 2025-12-09 02:18:48.911654+00 1224 170g牛奶丝单面磨毛 170g牛奶丝单面磨毛 布料 2025-12-09 02:18:48.912425+00 2025-12-09 02:18:48.912428+00 1225 弹力缎面 弹力缎面 布料 2025-12-09 02:18:48.91319+00 2025-12-09 02:18:48.913193+00 1226 200克坑条 200克坑条 布料 2025-12-09 02:18:48.913965+00 2025-12-09 02:18:48.913969+00 1227 230克仿棉 230克仿棉 布料 2025-12-09 02:18:48.914735+00 2025-12-09 02:18:48.914739+00 1228 灯心绒 灯心绒 布料 2025-12-09 02:18:48.915499+00 2025-12-09 02:18:48.915503+00 1229 Cvc羊毛绒 220克 Cvc羊毛绒 220克 布料 2025-12-09 02:18:48.916273+00 2025-12-09 02:18:48.916277+00 1230 涤小卫衣 涤小卫衣 布料 2025-12-09 02:18:48.917028+00 2025-12-09 02:18:48.917031+00 1231 杏色雪纺 杏色雪纺 布料 2025-12-09 02:18:48.917791+00 2025-12-09 02:18:48.917794+00 1232 本厂弹力缎 本厂弹力缎 布料 2025-12-09 02:18:48.918567+00 2025-12-09 02:18:48.91857+00 1233 230克牛奶丝米白️ 230克牛奶丝米白️ 布料 2025-12-09 02:18:48.919321+00 2025-12-09 02:18:48.919324+00 1234 喜音条 喜音条 布料 2025-12-09 02:18:48.885668+00 2025-12-09 02:18:48.920066+00 1195 仿麻条 仿麻条 布料 2025-12-09 02:18:48.920852+00 2025-12-09 02:18:48.920856+00 1235 杏色冰丝绉 杏色冰丝绉 布料 2025-12-09 02:18:48.921611+00 2025-12-09 02:18:48.921615+00 1236 140克牛奶丝拉架 140克牛奶丝拉架 布料 2025-12-09 02:18:48.922846+00 2025-12-09 02:18:48.92285+00 1237 卡其孔雀斜 卡其孔雀斜 布料 2025-12-09 02:18:48.923966+00 2025-12-09 02:18:48.92397+00 1238 弹力竹节 弹力竹节 布料 2025-12-09 02:18:48.925077+00 2025-12-09 02:18:48.925081+00 1239 羊毛绒拉架 米白 羊毛绒拉架 米白 布料 2025-12-09 02:18:48.926138+00 2025-12-09 02:18:48.926141+00 1240 200克大白仿棉 200克大白仿棉 布料 2025-12-09 02:18:48.9282+00 2025-12-09 02:18:48.928204+00 1242 250克直贡呢 250克直贡呢 布料 2025-12-09 02:18:48.929198+00 2025-12-09 02:18:48.929202+00 1243 乱麻加捻乱麻 乱麻加捻乱麻 布料 2025-12-09 02:18:48.930165+00 2025-12-09 02:18:48.930168+00 1244 220克仿棉 220克仿棉 布料 2025-12-09 02:18:48.931115+00 2025-12-09 02:18:48.931119+00 1245 加厚佳丽斜 加厚佳丽斜 布料 2025-12-09 02:18:48.93209+00 2025-12-09 02:18:48.932094+00 1246 加厚弹力雪纺 加厚弹力雪纺 布料 2025-12-09 02:18:48.933058+00 2025-12-09 02:18:48.933061+00 1247 浅卡冰丝绉 浅卡冰丝绉 布料 2025-12-09 02:18:48.860316+00 2025-12-09 02:18:50.237009+00 1169 韩国绒 韩国绒 布料 2025-12-09 02:18:48.888713+00 2025-12-09 02:18:50.258695+00 1199 30D真丝皱 30D真丝皱 布料 2025-12-09 02:18:48.87705+00 2025-12-09 02:18:49.2365+00 1185 雪纺 雪纺 布料 2025-12-09 02:18:48.902364+00 2025-12-09 02:18:49.410966+00 1213 180克牛奶丝 180克牛奶丝 布料 2025-12-09 02:18:48.910896+00 2025-12-09 02:18:49.413317+00 1223 160克直贡呢 160克直贡呢 布料 2025-12-09 02:18:48.927175+00 2025-12-09 02:18:49.46646+00 1241 春亚纺 春亚纺 布料 2025-12-09 02:18:48.905457+00 2025-12-09 02:18:50.298582+00 1216 斜纹磨毛 斜纹磨毛 布料 2025-12-09 02:18:48.935025+00 2025-12-09 02:18:48.935029+00 1249 美棉欧根纱 美棉欧根纱 布料 2025-12-09 02:18:48.935971+00 2025-12-09 02:18:48.935974+00 1250 天丝涤 天丝涤 布料 2025-12-09 02:18:48.937888+00 2025-12-09 02:18:48.937892+00 1252 天丝竹节 天丝竹节 布料 2025-12-09 02:18:48.938841+00 2025-12-09 02:18:48.938845+00 1253 230克卫衣拉架米白 230克卫衣拉架米白 布料 2025-12-09 02:18:48.939813+00 2025-12-09 02:18:48.939817+00 1254 180克牛奶丝单磨 180克牛奶丝单磨 布料 2025-12-09 02:18:48.94169+00 2025-12-09 02:18:48.941694+00 1255 230克小卫衣 230克小卫衣 布料 2025-12-09 02:18:48.942646+00 2025-12-09 02:18:48.942649+00 1256 银丝美人条 银丝美人条 布料 2025-12-09 02:18:48.943604+00 2025-12-09 02:18:48.943607+00 1257 弹力真丝缎 弹力真丝缎 布料 2025-12-09 02:18:48.944576+00 2025-12-09 02:18:48.944579+00 1258 40涤安 40涤安 布料 2025-12-09 02:18:48.980595+00 2025-12-09 02:18:49.178781+00 1293 250克大白坑条 250克大白坑条 布料 2025-12-09 02:18:48.947395+00 2025-12-09 02:18:48.947399+00 1260 格子皱 格子皱 布料 2025-12-09 02:18:48.948336+00 2025-12-09 02:18:48.94834+00 1261 150D长丝四面弹米白 150D长丝四面弹米白 布料 2025-12-09 02:18:48.949288+00 2025-12-09 02:18:48.949292+00 1262 亮丝顺宇皱 亮丝顺宇皱 布料 2025-12-09 02:18:48.93403+00 2025-12-09 02:18:48.950206+00 1248 竹节棉 竹节棉 布料 2025-12-09 02:18:48.951144+00 2025-12-09 02:18:48.951147+00 1263 仿真丝大白 仿真丝大白 布料 2025-12-09 02:18:48.952201+00 2025-12-09 02:18:48.952204+00 1264 高温布 高温布 布料 2025-12-09 02:18:48.953145+00 2025-12-09 02:18:48.953148+00 1265 75D加厚四面弹 75D加厚四面弹 布料 2025-12-09 02:18:48.954095+00 2025-12-09 02:18:48.954099+00 1266 加厚纬弹 加厚纬弹 布料 2025-12-09 02:18:48.95506+00 2025-12-09 02:18:48.955063+00 1267 涤棉提花 涤棉提花 布料 2025-12-09 02:18:48.956937+00 2025-12-09 02:18:48.956941+00 1269 高捻雪纺 高捻雪纺 布料 2025-12-09 02:18:48.957894+00 2025-12-09 02:18:48.957897+00 1270 TC竹节 TC竹节 布料 2025-12-09 02:18:48.958845+00 2025-12-09 02:18:48.958848+00 1271 410D涤氨弹力网 410D涤氨弹力网 布料 2025-12-09 02:18:48.9598+00 2025-12-09 02:18:48.959804+00 1272 30D经编 30D经编 布料 2025-12-09 02:18:48.960751+00 2025-12-09 02:18:48.960755+00 1273 仿9088棉 仿9088棉 布料 2025-12-09 02:18:48.961681+00 2025-12-09 02:18:48.961685+00 1274 本厂200g罗马布 本厂200g罗马布 布料 2025-12-09 02:18:48.963899+00 2025-12-09 02:18:48.963903+00 1275 绒缎 绒缎 布料 2025-12-09 02:18:48.964687+00 2025-12-09 02:18:48.96469+00 1276 本厂110克大白四面弹 本厂110克大白四面弹 布料 2025-12-09 02:18:48.966286+00 2025-12-09 02:18:48.966289+00 1278 银狐绒 银狐绒 布料 2025-12-09 02:18:48.967048+00 2025-12-09 02:18:48.967052+00 1279 缎面麻 缎面麻 布料 2025-12-09 02:18:48.967993+00 2025-12-09 02:18:48.967997+00 1280 裂纹皱 裂纹皱 布料 2025-12-09 02:18:48.968964+00 2025-12-09 02:18:48.968968+00 1281 T400 T400 布料 2025-12-09 02:18:48.96991+00 2025-12-09 02:18:48.969915+00 1282 黑底金面弹力缎 黑底金面弹力缎 布料 2025-12-09 02:18:48.970885+00 2025-12-09 02:18:48.970889+00 1283 本白四面弹 本白四面弹 布料 2025-12-09 02:18:48.97183+00 2025-12-09 02:18:48.971834+00 1284 本厂本白四面弹 本厂本白四面弹 布料 2025-12-09 02:18:48.972771+00 2025-12-09 02:18:48.972775+00 1285 醋酸泡泡缎 醋酸泡泡缎 布料 2025-12-09 02:18:48.97372+00 2025-12-09 02:18:48.973724+00 1286 卡其华尔缎 卡其华尔缎 布料 2025-12-09 02:18:48.974831+00 2025-12-09 02:18:48.974836+00 1287 本厂170克直贡呢 本厂170克直贡呢 布料 2025-12-09 02:18:48.975778+00 2025-12-09 02:18:48.975782+00 1288 卡其冰丝绉 卡其冰丝绉 布料 2025-12-09 02:18:48.976758+00 2025-12-09 02:18:48.976763+00 1289 仿天丝 仿天丝 布料 2025-12-09 02:18:48.977728+00 2025-12-09 02:18:48.977733+00 1290 白色哥弟纹 白色哥弟纹 布料 2025-12-09 02:18:48.978688+00 2025-12-09 02:18:48.978693+00 1291 圆点提花 圆点提花 布料 2025-12-09 02:18:48.979649+00 2025-12-09 02:18:48.979653+00 1292 110克四面弹米白 110克四面弹米白 布料 2025-12-09 02:18:48.981557+00 2025-12-09 02:18:48.981561+00 1294 仿9088 仿9088 布料 2025-12-09 02:18:48.982523+00 2025-12-09 02:18:48.982528+00 1295 杏色风衣 杏色风衣 布料 2025-12-09 02:18:48.983868+00 2025-12-09 02:18:48.983872+00 1296 蕾丝布 蕾丝布 布料 2025-12-09 02:18:48.984832+00 2025-12-09 02:18:48.984837+00 1297 毛毛提花 毛毛提花 布料 2025-12-09 02:18:48.985794+00 2025-12-09 02:18:48.985798+00 1298 210克牛奶丝 210克牛奶丝 布料 2025-12-09 02:18:48.986753+00 2025-12-09 02:18:48.986756+00 1299 桑花绉 桑花绉 布料 2025-12-09 02:18:48.987695+00 2025-12-09 02:18:48.9877+00 1300 120克牛奶丝 120克牛奶丝 布料 2025-12-09 02:18:48.988647+00 2025-12-09 02:18:48.988651+00 1301 150克涤单面 150克涤单面 布料 2025-12-09 02:18:48.989601+00 2025-12-09 02:18:48.989605+00 1302 本厂布料 本厂布料 布料 2025-12-09 02:18:48.990552+00 2025-12-09 02:18:48.990557+00 1303 140牛奶丝 140牛奶丝 布料 2025-12-09 02:18:48.991509+00 2025-12-09 02:18:48.991514+00 1304 180克大白坑条 180克大白坑条 布料 2025-12-09 02:18:48.992455+00 2025-12-09 02:18:48.992459+00 1305 加捻罗马 加捻罗马 布料 2025-12-09 02:18:48.993402+00 2025-12-09 02:18:48.993406+00 1306 无弹缎 无弹缎 布料 2025-12-09 02:18:48.994356+00 2025-12-09 02:18:48.994361+00 1307 卡其哥弟纹 卡其哥弟纹 布料 2025-12-09 02:18:48.995306+00 2025-12-09 02:18:48.99531+00 1308 冰丝罗纹 冰丝罗纹 布料 2025-12-09 02:18:48.996252+00 2025-12-09 02:18:48.996256+00 1309 金银丝雪纺 金银丝雪纺 布料 2025-12-09 02:18:48.997192+00 2025-12-09 02:18:48.997196+00 1310 色布 色布 布料 2025-12-09 02:18:48.998308+00 2025-12-09 02:18:48.998313+00 1311 涤安 涤安 布料 2025-12-09 02:18:48.99925+00 2025-12-09 02:18:48.999254+00 1312 绣花纱 绣花纱 布料 2025-12-09 02:18:49.000187+00 2025-12-09 02:18:49.000191+00 1313 风衣布 风衣布 布料 2025-12-09 02:18:49.001142+00 2025-12-09 02:18:49.001146+00 1314 本厂大白坑条 本厂大白坑条 布料 2025-12-09 02:18:49.002092+00 2025-12-09 02:18:49.002096+00 1315 棉感皱 棉感皱 布料 2025-12-09 02:18:49.003036+00 2025-12-09 02:18:49.003041+00 1316 灰色雪纺皱 灰色雪纺皱 布料 2025-12-09 02:18:49.003996+00 2025-12-09 02:18:49.004+00 1317 涤棉 涤棉 布料 2025-12-09 02:18:49.004954+00 2025-12-09 02:18:49.004958+00 1318 金面弹力缎 金面弹力缎 布料 2025-12-09 02:18:49.005916+00 2025-12-09 02:18:49.005921+00 1319 50D荧光里布 50D荧光里布 布料 2025-12-09 02:18:49.006859+00 2025-12-09 02:18:49.006863+00 1320 300D斜纹 300D斜纹 布料 2025-12-09 02:18:49.007831+00 2025-12-09 02:18:49.007835+00 1321 锦双面斜纹 锦双面斜纹 布料 2025-12-09 02:18:49.008802+00 2025-12-09 02:18:49.008807+00 1322 黑底银面金钻绒 黑底银面金钻绒 布料 2025-12-09 02:18:49.010697+00 2025-12-09 02:18:49.010701+00 1324 280克加捻罗马 280克加捻罗马 布料 2025-12-09 02:18:49.011648+00 2025-12-09 02:18:49.011653+00 1325 灰色竹节 灰色竹节 布料 2025-12-09 02:18:49.01259+00 2025-12-09 02:18:49.012594+00 1326 牛奶抓毛 牛奶抓毛 布料 2025-12-09 02:18:49.013551+00 2025-12-09 02:18:49.013556+00 1327 140g牛奶丝磨毛 140g牛奶丝磨毛 布料 2025-12-09 02:18:49.014686+00 2025-12-09 02:18:49.01469+00 1328 情人棉 情人棉 布料 2025-12-09 02:18:49.015845+00 2025-12-09 02:18:49.015849+00 1329 双色竹节 双色竹节 布料 2025-12-09 02:18:49.017015+00 2025-12-09 02:18:49.017019+00 1330 洗水皱 洗水皱 布料 2025-12-09 02:18:49.01816+00 2025-12-09 02:18:49.018164+00 1331 木云纱 木云纱 布料 2025-12-09 02:18:49.019304+00 2025-12-09 02:18:49.019309+00 1332 高捻麻 高捻麻 布料 2025-12-09 02:18:48.936918+00 2025-12-09 02:18:49.022917+00 1251 本厂50D全光 本厂50D全光 布料 2025-12-09 02:18:48.945519+00 2025-12-09 02:18:49.076676+00 1259 水溶提花 水溶提花 布料 2025-12-09 02:18:48.965501+00 2025-12-09 02:18:49.283808+00 1277 彩虹斜 彩虹斜 布料 2025-12-09 02:18:49.009742+00 2025-12-09 02:18:49.452103+00 1323 牛奶丝抓毛 牛奶丝抓毛 布料 2025-12-09 02:18:48.955998+00 2025-12-09 02:18:49.533994+00 1268 色丁 色丁 布料 2025-12-09 02:18:49.02045+00 2025-12-09 02:18:49.020455+00 1333 真丝绉 真丝绉 布料 2025-12-09 02:18:49.025731+00 2025-12-09 02:18:49.025736+00 1337 金编 金编 布料 2025-12-09 02:18:49.026686+00 2025-12-09 02:18:49.02669+00 1338 灯笼皱 灯笼皱 布料 2025-12-09 02:18:49.024763+00 2025-12-09 02:18:49.027596+00 1336 天丝罗纹 天丝罗纹 布料 2025-12-09 02:18:49.028656+00 2025-12-09 02:18:49.028661+00 1339 哑光高弹 哑光高弹 布料 2025-12-09 02:18:49.029855+00 2025-12-09 02:18:49.029859+00 1340 40D涤氨杏色 40D涤氨杏色 布料 2025-12-09 02:18:49.03097+00 2025-12-09 02:18:49.030974+00 1341 250克长丝 250克长丝 布料 2025-12-09 02:18:49.031856+00 2025-12-09 02:18:49.03186+00 1342 加厚阳光麻 加厚阳光麻 布料 2025-12-09 02:18:49.032679+00 2025-12-09 02:18:49.032683+00 1343 仙女条 仙女条 布料 2025-12-09 02:18:49.033504+00 2025-12-09 02:18:49.033508+00 1344 星星缎 星星缎 布料 2025-12-09 02:18:49.034394+00 2025-12-09 02:18:49.034397+00 1345 220克捻丝乱麻 220克捻丝乱麻 布料 2025-12-09 02:18:49.035219+00 2025-12-09 02:18:49.035223+00 1346 75D本白双层四面弹 75D本白双层四面弹 布料 2025-12-09 02:18:49.036031+00 2025-12-09 02:18:49.036035+00 1347 9088全涤 9088全涤 布料 2025-12-09 02:18:49.036843+00 2025-12-09 02:18:49.036847+00 1348 仿丝缎 仿丝缎 布料 2025-12-09 02:18:49.037619+00 2025-12-09 02:18:49.037623+00 1349 色丁弹力缎 色丁弹力缎 布料 2025-12-09 02:18:49.038407+00 2025-12-09 02:18:49.038411+00 1350 新光麻 新光麻 布料 2025-12-09 02:18:49.03918+00 2025-12-09 02:18:49.039183+00 1351 白色孔雀斜 白色孔雀斜 布料 2025-12-09 02:18:49.03996+00 2025-12-09 02:18:49.039964+00 1352 弹力缎杏色 弹力缎杏色 布料 2025-12-09 02:18:49.040744+00 2025-12-09 02:18:49.040748+00 1353 针织螺纹提花 针织螺纹提花 布料 2025-12-09 02:18:49.04151+00 2025-12-09 02:18:49.041513+00 1354 双绉 双绉 布料 2025-12-09 02:18:49.042278+00 2025-12-09 02:18:49.042282+00 1355 大白罗马布 大白罗马布 布料 2025-12-09 02:18:49.043057+00 2025-12-09 02:18:49.043944+00 1356 本厂酷丝棉 本厂酷丝棉 布料 2025-12-09 02:18:49.044769+00 2025-12-09 02:18:49.044773+00 1357 190克小卫衣 190克小卫衣 布料 2025-12-09 02:18:49.046358+00 2025-12-09 02:18:49.046362+00 1359 20D皱 20D皱 布料 2025-12-09 02:18:49.047887+00 2025-12-09 02:18:49.04789+00 1361 钻石雪纺米白 钻石雪纺米白 布料 2025-12-09 02:18:49.048673+00 2025-12-09 02:18:49.048676+00 1362 暮云纱 暮云纱 布料 2025-12-09 02:18:49.049438+00 2025-12-09 02:18:49.049442+00 1363 杏色芙蓉麻 杏色芙蓉麻 布料 2025-12-09 02:18:49.050202+00 2025-12-09 02:18:49.050206+00 1364 TC TC 布料 2025-12-09 02:18:49.050971+00 2025-12-09 02:18:49.050975+00 1365 150D双斜 150D双斜 布料 2025-12-09 02:18:49.051735+00 2025-12-09 02:18:49.051739+00 1366 冰爽棉 冰爽棉 布料 2025-12-09 02:18:49.052509+00 2025-12-09 02:18:49.052513+00 1367 有光蚕丝皱 有光蚕丝皱 布料 2025-12-09 02:18:49.053275+00 2025-12-09 02:18:49.053278+00 1368 冰丝棉 冰丝棉 布料 2025-12-09 02:18:49.054059+00 2025-12-09 02:18:49.054063+00 1369 绣花布 绣花布 布料 2025-12-09 02:18:49.054841+00 2025-12-09 02:18:49.054845+00 1370 芙蓉麻米白 芙蓉麻米白 布料 2025-12-09 02:18:49.055618+00 2025-12-09 02:18:49.055621+00 1371 星星纱 星星纱 布料 2025-12-09 02:18:49.056373+00 2025-12-09 02:18:49.056377+00 1372 纳米丝 纳米丝 布料 2025-12-09 02:18:49.057146+00 2025-12-09 02:18:49.05715+00 1373 平纹 平纹 布料 2025-12-09 02:18:49.05791+00 2025-12-09 02:18:49.057913+00 1374 加密珍珠雪纺 加密珍珠雪纺 布料 2025-12-09 02:18:49.058679+00 2025-12-09 02:18:49.058683+00 1375 110克米白四面弹 110克米白四面弹 布料 2025-12-09 02:18:49.059466+00 2025-12-09 02:18:49.059469+00 1376 醋酸单面麻 醋酸单面麻 布料 2025-12-09 02:18:49.060237+00 2025-12-09 02:18:49.060241+00 1377 泡泡纱 泡泡纱 布料 2025-12-09 02:18:49.061015+00 2025-12-09 02:18:49.061018+00 1378 针织螺纹坑条 针织螺纹坑条 布料 2025-12-09 02:18:49.061779+00 2025-12-09 02:18:49.061782+00 1379 大白珍珠雪纺 大白珍珠雪纺 布料 2025-12-09 02:18:49.062609+00 2025-12-09 02:18:49.062613+00 1380 婚纱缎 婚纱缎 布料 2025-12-09 02:18:49.0634+00 2025-12-09 02:18:49.063404+00 1381 小格子 小格子 布料 2025-12-09 02:18:49.06438+00 2025-12-09 02:18:49.064385+00 1382 全涤 全涤 布料 2025-12-09 02:18:49.06525+00 2025-12-09 02:18:49.065253+00 1383 牛奶丝拉架 牛奶丝拉架 布料 2025-12-09 02:18:49.066158+00 2025-12-09 02:18:49.066162+00 1384 铜氨斜 铜氨斜 布料 2025-12-09 02:18:49.067064+00 2025-12-09 02:18:49.067067+00 1385 斜纹酷丝棉 斜纹酷丝棉 布料 2025-12-09 02:18:49.067895+00 2025-12-09 02:18:49.067899+00 1386 大白色丁 大白色丁 布料 2025-12-09 02:18:49.068714+00 2025-12-09 02:18:49.068717+00 1387 加厚50D全光 加厚50D全光 布料 2025-12-09 02:18:49.069499+00 2025-12-09 02:18:49.069503+00 1388 杏色罗马 杏色罗马 布料 2025-12-09 02:18:49.070321+00 2025-12-09 02:18:49.070324+00 1389 120D弹力四面弹 120D弹力四面弹 布料 2025-12-09 02:18:49.071116+00 2025-12-09 02:18:49.071119+00 1390 大白油丁布 大白油丁布 布料 2025-12-09 02:18:49.071917+00 2025-12-09 02:18:49.071921+00 1391 75D牛奶丝双磨 75D牛奶丝双磨 布料 2025-12-09 02:18:49.072719+00 2025-12-09 02:18:49.072722+00 1392 高弹双绉 高弹双绉 布料 2025-12-09 02:18:49.073498+00 2025-12-09 02:18:49.073502+00 1393 金银线雪纺 金银线雪纺 布料 2025-12-09 02:18:49.074289+00 2025-12-09 02:18:49.074292+00 1394 大白健康布 大白健康布 布料 2025-12-09 02:18:49.07509+00 2025-12-09 02:18:49.075093+00 1395 106真丝皱 106真丝皱 布料 2025-12-09 02:18:49.075897+00 2025-12-09 02:18:49.0759+00 1396 50D雪纺 50D雪纺 布料 2025-12-09 02:18:49.077538+00 2025-12-09 02:18:49.077543+00 1397 弹力洗水皱 弹力洗水皱 布料 2025-12-09 02:18:49.078374+00 2025-12-09 02:18:49.078378+00 1398 复丝网 复丝网 布料 2025-12-09 02:18:49.079974+00 2025-12-09 02:18:49.079977+00 1400 250克哥弟纹 250克哥弟纹 布料 2025-12-09 02:18:49.080768+00 2025-12-09 02:18:49.080771+00 1401 180克仿棉拉架 180克仿棉拉架 布料 2025-12-09 02:18:49.081562+00 2025-12-09 02:18:49.081566+00 1402 高捻乱麻 高捻乱麻 布料 2025-12-09 02:18:49.082853+00 2025-12-09 02:18:49.082857+00 1403 树皮皱 树皮皱 布料 2025-12-09 02:18:49.083636+00 2025-12-09 02:18:49.08364+00 1404 雪纺皱纹 雪纺皱纹 布料 2025-12-09 02:18:49.084448+00 2025-12-09 02:18:49.084452+00 1405 170克大白牛奶丝 170克大白牛奶丝 布料 2025-12-09 02:18:49.08522+00 2025-12-09 02:18:49.085224+00 1406 海岛缎 海岛缎 布料 2025-12-09 02:18:49.08601+00 2025-12-09 02:18:49.086014+00 1407 本厂双层四面弹 本厂双层四面弹 布料 2025-12-09 02:18:49.086809+00 2025-12-09 02:18:49.086812+00 1408 110克本白四面弹 110克本白四面弹 布料 2025-12-09 02:18:49.087586+00 2025-12-09 02:18:49.087589+00 1409 人造丝 人造丝 布料 2025-12-09 02:18:49.088385+00 2025-12-09 02:18:49.088389+00 1410 客人的珍珠雪纺 客人的珍珠雪纺 布料 2025-12-09 02:18:49.089177+00 2025-12-09 02:18:49.089181+00 1411 双色缎面 双色缎面 布料 2025-12-09 02:18:49.090765+00 2025-12-09 02:18:49.090768+00 1413 蚨昕布料四面弹110克 蚨昕布料四面弹110克 布料 2025-12-09 02:18:49.091545+00 2025-12-09 02:18:49.091548+00 1414 美棉斜纹 美棉斜纹 布料 2025-12-09 02:18:49.092343+00 2025-12-09 02:18:49.092347+00 1415 竹节条 竹节条 布料 2025-12-09 02:18:49.093128+00 2025-12-09 02:18:49.093132+00 1416 扬州纱 扬州纱 布料 2025-12-09 02:18:49.093908+00 2025-12-09 02:18:49.093911+00 1417 绒感皱 绒感皱 布料 2025-12-09 02:18:49.094682+00 2025-12-09 02:18:49.094685+00 1418 酷丝棉格子 酷丝棉格子 布料 2025-12-09 02:18:49.079167+00 2025-12-09 02:18:49.152901+00 1399 涤纶 涤纶 布料 2025-12-09 02:18:49.045554+00 2025-12-09 02:18:49.495149+00 1358 泡泡皱 泡泡皱 布料 2025-12-09 02:18:49.047127+00 2025-12-09 02:18:50.206484+00 1360 捻丝乱麻 捻丝乱麻 布料 2025-12-09 02:18:49.021629+00 2025-12-09 02:18:50.291037+00 1334 破卡 破卡 布料 2025-12-09 02:18:49.089955+00 2025-12-09 02:18:50.295252+00 1412 100D四面弹 100D四面弹 布料 2025-12-09 02:18:49.023865+00 2025-12-09 02:18:50.336217+00 1335 消光破卡 消光破卡 布料 2025-12-09 02:18:49.095483+00 2025-12-09 02:18:49.095486+00 1419 鸟眼布 鸟眼布 布料 2025-12-09 02:18:49.097105+00 2025-12-09 02:18:49.097109+00 1420 曲天丝 曲天丝 布料 2025-12-09 02:18:49.09821+00 2025-12-09 02:18:49.098215+00 1421 华丽缎 华丽缎 布料 2025-12-09 02:18:49.100088+00 2025-12-09 02:18:49.100092+00 1422 180克斜纹泡泡 180克斜纹泡泡 布料 2025-12-09 02:18:49.100896+00 2025-12-09 02:18:49.1009+00 1423 酷丝棉平纹 酷丝棉平纹 布料 2025-12-09 02:18:49.10171+00 2025-12-09 02:18:49.101714+00 1424 加厚韩国麻 加厚韩国麻 布料 2025-12-09 02:18:49.102497+00 2025-12-09 02:18:49.1025+00 1425 100D超柔四面弹 100D超柔四面弹 布料 2025-12-09 02:18:49.103292+00 2025-12-09 02:18:49.103296+00 1426 仿麻竹节 仿麻竹节 布料 2025-12-09 02:18:49.104093+00 2025-12-09 02:18:49.104097+00 1427 T400牛津布 T400牛津布 布料 2025-12-09 02:18:49.104944+00 2025-12-09 02:18:49.104948+00 1428 180克大白坑条2*2 180克大白坑条2*2 布料 2025-12-09 02:18:49.105758+00 2025-12-09 02:18:49.105762+00 1429 250g复合破卡 250g复合破卡 布料 2025-12-09 02:18:49.106534+00 2025-12-09 02:18:49.106537+00 1430 半光布 半光布 布料 2025-12-09 02:18:49.107326+00 2025-12-09 02:18:49.107329+00 1431 D153# 韩国丝(加厚) D153# 韩国丝(加厚) 布料 2025-12-09 02:18:49.1081+00 2025-12-09 02:18:49.108103+00 1432 100克纬弹米白 100克纬弹米白 布料 2025-12-09 02:18:49.108877+00 2025-12-09 02:18:49.108881+00 1433 提花 提花 布料 2025-12-09 02:18:49.109639+00 2025-12-09 02:18:49.109643+00 1434 单丝雪纺 单丝雪纺 布料 2025-12-09 02:18:49.110443+00 2025-12-09 02:18:49.110448+00 1435 160克气流高捻麻 160克气流高捻麻 布料 2025-12-09 02:18:49.111323+00 2025-12-09 02:18:49.111327+00 1436 复合消光破卡 复合消光破卡 布料 2025-12-09 02:18:49.112117+00 2025-12-09 02:18:49.112121+00 1437 高弹皱 高弹皱 布料 2025-12-09 02:18:49.112913+00 2025-12-09 02:18:49.112917+00 1438 T400破卡大白色 T400破卡大白色 布料 2025-12-09 02:18:49.113692+00 2025-12-09 02:18:49.113695+00 1439 75D仿记忆 75D仿记忆 布料 2025-12-09 02:18:49.114489+00 2025-12-09 02:18:49.114493+00 1440 本厂仿真丝 本厂仿真丝 布料 2025-12-09 02:18:49.115275+00 2025-12-09 02:18:49.115278+00 1441 30D天丝竹节 30D天丝竹节 布料 2025-12-09 02:18:49.116037+00 2025-12-09 02:18:49.11604+00 1442 顺宇皱 顺宇皱 布料 2025-12-09 02:18:49.116812+00 2025-12-09 02:18:49.116816+00 1443 醋酸双面缎 醋酸双面缎 布料 2025-12-09 02:18:49.117587+00 2025-12-09 02:18:49.117591+00 1444 170克本白牛奶丝单磨 170克本白牛奶丝单磨 布料 2025-12-09 02:18:49.118369+00 2025-12-09 02:18:49.118373+00 1445 新氧棉 新氧棉 布料 2025-12-09 02:18:49.119154+00 2025-12-09 02:18:49.119158+00 1446 格子布 格子布 布料 2025-12-09 02:18:49.119915+00 2025-12-09 02:18:49.119918+00 1447 华尔锻 华尔锻 布料 2025-12-09 02:18:49.120693+00 2025-12-09 02:18:49.120697+00 1448 200克仿棉拉架磨毛 200克仿棉拉架磨毛 布料 2025-12-09 02:18:49.121662+00 2025-12-09 02:18:49.121666+00 1449 乔其纱 乔其纱 布料 2025-12-09 02:18:49.122623+00 2025-12-09 02:18:49.122626+00 1450 百折条 百折条 布料 2025-12-09 02:18:49.123618+00 2025-12-09 02:18:49.123622+00 1451 仿真丝1.51 仿真丝1.51 布料 2025-12-09 02:18:49.124588+00 2025-12-09 02:18:49.124592+00 1452 几何格 几何格 布料 2025-12-09 02:18:49.125557+00 2025-12-09 02:18:49.125561+00 1453 250克超细泰酷丝 250克超细泰酷丝 布料 2025-12-09 02:18:49.126536+00 2025-12-09 02:18:49.12654+00 1454 复合花瑶 复合花瑶 布料 2025-12-09 02:18:49.127488+00 2025-12-09 02:18:49.127491+00 1455 纳米条 纳米条 布料 2025-12-09 02:18:49.129442+00 2025-12-09 02:18:49.129446+00 1457 100D加厚四面弹 100D加厚四面弹 布料 2025-12-09 02:18:49.130229+00 2025-12-09 02:18:49.130233+00 1458 高弹双层 高弹双层 布料 2025-12-09 02:18:49.131014+00 2025-12-09 02:18:49.131017+00 1459 单斜 单斜 布料 2025-12-09 02:18:49.131783+00 2025-12-09 02:18:49.131787+00 1460 加厚珍珠雪纺 加厚珍珠雪纺 布料 2025-12-09 02:18:49.132568+00 2025-12-09 02:18:49.132572+00 1461 75D全光加厚 75D全光加厚 布料 2025-12-09 02:18:49.13334+00 2025-12-09 02:18:49.133344+00 1462 12安帆布 12安帆布 布料 2025-12-09 02:18:49.134098+00 2025-12-09 02:18:49.134101+00 1463 加厚 加密华尔缎 加厚 加密华尔缎 布料 2025-12-09 02:18:49.134885+00 2025-12-09 02:18:49.134888+00 1464 仿竹节麻 仿竹节麻 布料 2025-12-09 02:18:49.135643+00 2025-12-09 02:18:49.135647+00 1465 平雪纺 平雪纺 布料 2025-12-09 02:18:49.136416+00 2025-12-09 02:18:49.13642+00 1466 牡丹提花 牡丹提花 布料 2025-12-09 02:18:49.137193+00 2025-12-09 02:18:49.137197+00 1467 雪纺珠 雪纺珠 布料 2025-12-09 02:18:49.137957+00 2025-12-09 02:18:49.13796+00 1468 乱皱洗水棉 乱皱洗水棉 布料 2025-12-09 02:18:49.139646+00 2025-12-09 02:18:49.13965+00 1470 140克米白四面弹 140克米白四面弹 布料 2025-12-09 02:18:49.14042+00 2025-12-09 02:18:49.140423+00 1471 本厂92克纬弹 本厂92克纬弹 布料 2025-12-09 02:18:49.141193+00 2025-12-09 02:18:49.141196+00 1472 氨纶网 氨纶网 布料 2025-12-09 02:18:49.142151+00 2025-12-09 02:18:49.142154+00 1473 75D牛奶丝 75D牛奶丝 布料 2025-12-09 02:18:49.142934+00 2025-12-09 02:18:49.142938+00 1474 骑兵斜 骑兵斜 布料 2025-12-09 02:18:49.14371+00 2025-12-09 02:18:49.143713+00 1475 200D平纹四面弹 200D平纹四面弹 布料 2025-12-09 02:18:49.144464+00 2025-12-09 02:18:49.144468+00 1476 180克卫衣 180克卫衣 布料 2025-12-09 02:18:49.145249+00 2025-12-09 02:18:49.145252+00 1477 金线雪纺 金线雪纺 布料 2025-12-09 02:18:49.146013+00 2025-12-09 02:18:49.146017+00 1478 如意纱 如意纱 布料 2025-12-09 02:18:49.146801+00 2025-12-09 02:18:49.146805+00 1479 1✖️1坑条 1✖️1坑条 布料 2025-12-09 02:18:49.147565+00 2025-12-09 02:18:49.147568+00 1480 首尔纱 首尔纱 布料 2025-12-09 02:18:49.148332+00 2025-12-09 02:18:49.148336+00 1481 50D米白四面弹 50D米白四面弹 布料 2025-12-09 02:18:49.149086+00 2025-12-09 02:18:49.149089+00 1482 洗水竹节 洗水竹节 布料 2025-12-09 02:18:49.14986+00 2025-12-09 02:18:49.149864+00 1483 仿醋酸 仿醋酸 布料 2025-12-09 02:18:49.15063+00 2025-12-09 02:18:49.150633+00 1484 250克2X2坑条 250克2X2坑条 布料 2025-12-09 02:18:49.151388+00 2025-12-09 02:18:49.151391+00 1485 牛奶丝单磨 牛奶丝单磨 布料 2025-12-09 02:18:49.153724+00 2025-12-09 02:18:49.153728+00 1487 锦涤16坑 锦涤16坑 布料 2025-12-09 02:18:49.154511+00 2025-12-09 02:18:49.154515+00 1488 50单面 50单面 布料 2025-12-09 02:18:49.155274+00 2025-12-09 02:18:49.155277+00 1489 加厚削光破卡 加厚削光破卡 布料 2025-12-09 02:18:49.156052+00 2025-12-09 02:18:49.156056+00 1490 玉米粒 玉米粒 布料 2025-12-09 02:18:49.156824+00 2025-12-09 02:18:49.156827+00 1491 本厂120克本白四面弹 本厂120克本白四面弹 布料 2025-12-09 02:18:49.157588+00 2025-12-09 02:18:49.157591+00 1492 珠地棉 珠地棉 布料 2025-12-09 02:18:49.158371+00 2025-12-09 02:18:49.158375+00 1493 加厚醋酸麻 加厚醋酸麻 布料 2025-12-09 02:18:49.159136+00 2025-12-09 02:18:49.159139+00 1494 250克冰丝螺纹 250克冰丝螺纹 布料 2025-12-09 02:18:49.160678+00 2025-12-09 02:18:49.160681+00 1496 弹力段 弹力段 布料 2025-12-09 02:18:49.161451+00 2025-12-09 02:18:49.161455+00 1497 锦涤 锦涤 布料 2025-12-09 02:18:49.162223+00 2025-12-09 02:18:49.162226+00 1498 玫瑰缎 玫瑰缎 布料 2025-12-09 02:18:49.162978+00 2025-12-09 02:18:49.162981+00 1499 卡其竹节罗纹 卡其竹节罗纹 布料 2025-12-09 02:18:49.163759+00 2025-12-09 02:18:49.163763+00 1500 仿真丝提花 仿真丝提花 布料 2025-12-09 02:18:49.164525+00 2025-12-09 02:18:49.164528+00 1501 牛奶丝. 牛奶丝. 布料 2025-12-09 02:18:49.16614+00 2025-12-09 02:18:49.166145+00 1503 本厂110克四面弹. 本厂110克四面弹. 布料 2025-12-09 02:18:49.138741+00 2025-12-09 02:18:49.265485+00 1469 8安帆布 8安帆布 布料 2025-12-09 02:18:49.152143+00 2025-12-09 02:18:50.332383+00 1486 坑条 坑条 布料 2025-12-09 02:18:49.165279+00 2025-12-09 02:18:49.425799+00 1502 酷丝绵 酷丝绵 布料 2025-12-09 02:18:49.159908+00 2025-12-09 02:18:50.250192+00 1495 涤氨 涤氨 布料 2025-12-09 02:18:49.128472+00 2025-12-09 02:18:49.535028+00 1456 金线提花布 金线提花布 布料 2025-12-09 02:18:49.166936+00 2025-12-09 02:18:50.220906+00 1504 德绒 德绒 布料 2025-12-09 02:18:49.169291+00 2025-12-09 02:18:49.169294+00 1505 龙凤条 龙凤条 布料 2025-12-09 02:18:49.170092+00 2025-12-09 02:18:49.170096+00 1506 密斜 密斜 布料 2025-12-09 02:18:49.171716+00 2025-12-09 02:18:49.17172+00 1508 四面弹大白 四面弹大白 布料 2025-12-09 02:18:49.174054+00 2025-12-09 02:18:49.174058+00 1510 丝光棉 丝光棉 布料 2025-12-09 02:18:49.174838+00 2025-12-09 02:18:49.174842+00 1511 螺纹德绒 螺纹德绒 布料 2025-12-09 02:18:49.175611+00 2025-12-09 02:18:49.176366+00 1512 珠地布 珠地布 布料 2025-12-09 02:18:49.177168+00 2025-12-09 02:18:49.177172+00 1513 卡其德绒 卡其德绒 布料 2025-12-09 02:18:49.180059+00 2025-12-09 02:18:49.180063+00 1515 乐丽丝 乐丽丝 布料 2025-12-09 02:18:49.183613+00 2025-12-09 02:18:49.183617+00 1518 金砖绒 金砖绒 布料 2025-12-09 02:18:49.184417+00 2025-12-09 02:18:49.185173+00 1519 100D单斜 100D单斜 布料 2025-12-09 02:18:49.186011+00 2025-12-09 02:18:49.186014+00 1520 170克蚂蚁布 170克蚂蚁布 布料 2025-12-09 02:18:49.186795+00 2025-12-09 02:18:49.186798+00 1521 天丝雪纺 天丝雪纺 布料 2025-12-09 02:18:49.187585+00 2025-12-09 02:18:49.187589+00 1522 提花面料 提花面料 布料 2025-12-09 02:18:49.188365+00 2025-12-09 02:18:49.188369+00 1523 本厂直贡尼 本厂直贡尼 布料 2025-12-09 02:18:49.18914+00 2025-12-09 02:18:49.189144+00 1524 大白网眼布 大白网眼布 布料 2025-12-09 02:18:49.189921+00 2025-12-09 02:18:49.189925+00 1525 170克双磨 170克双磨 布料 2025-12-09 02:18:49.191466+00 2025-12-09 02:18:49.19147+00 1527 230克卫衣拉架 230克卫衣拉架 布料 2025-12-09 02:18:49.193021+00 2025-12-09 02:18:49.193025+00 1528 杏色金钻绒 杏色金钻绒 布料 2025-12-09 02:18:49.1938+00 2025-12-09 02:18:49.193803+00 1529 大白坑条. 大白坑条. 布料 2025-12-09 02:18:49.194576+00 2025-12-09 02:18:49.194579+00 1530 杏色龙凤缎 杏色龙凤缎 布料 2025-12-09 02:18:49.195367+00 2025-12-09 02:18:49.195371+00 1531 秋香麻 秋香麻 布料 2025-12-09 02:18:49.19614+00 2025-12-09 02:18:49.196144+00 1532 200克加捻罗马 200克加捻罗马 布料 2025-12-09 02:18:49.196924+00 2025-12-09 02:18:49.196928+00 1533 120克米白四面弹. 120克米白四面弹. 布料 2025-12-09 02:18:49.197693+00 2025-12-09 02:18:49.197696+00 1534 260克卫衣 260克卫衣 布料 2025-12-09 02:18:49.198469+00 2025-12-09 02:18:49.198473+00 1535 仿棉平纹 仿棉平纹 布料 2025-12-09 02:18:49.199245+00 2025-12-09 02:18:49.199248+00 1536 本厂180克牛奶丝 本厂180克牛奶丝 布料 2025-12-09 02:18:49.200007+00 2025-12-09 02:18:49.20001+00 1537 卫衣拉架 卫衣拉架 布料 2025-12-09 02:18:49.20079+00 2025-12-09 02:18:49.200794+00 1538 春风格 春风格 布料 2025-12-09 02:18:49.201549+00 2025-12-09 02:18:49.201552+00 1539 220克牛奶丝拉架 220克牛奶丝拉架 布料 2025-12-09 02:18:49.202304+00 2025-12-09 02:18:49.202308+00 1540 150D长丝 150D长丝 布料 2025-12-09 02:18:49.203084+00 2025-12-09 02:18:49.203088+00 1541 240克金钻绒 240克金钻绒 布料 2025-12-09 02:18:49.203873+00 2025-12-09 02:18:49.203876+00 1542 四面弹. 四面弹. 布料 2025-12-09 02:18:49.204667+00 2025-12-09 02:18:49.204671+00 1543 本厂200克直贡呢 本厂200克直贡呢 布料 2025-12-09 02:18:49.205458+00 2025-12-09 02:18:49.205461+00 1544 120克牛奶丝单磨 120克牛奶丝单磨 布料 2025-12-09 02:18:49.20622+00 2025-12-09 02:18:49.206223+00 1545 米白纬弹 米白纬弹 布料 2025-12-09 02:18:49.207005+00 2025-12-09 02:18:49.207009+00 1546 210克牛奶丝. 210克牛奶丝. 布料 2025-12-09 02:18:49.207773+00 2025-12-09 02:18:49.207777+00 1547 160克本白直贡呢 160克本白直贡呢 布料 2025-12-09 02:18:49.208563+00 2025-12-09 02:18:49.208566+00 1548 竹节罗纹 竹节罗纹 布料 2025-12-09 02:18:49.209331+00 2025-12-09 02:18:49.209334+00 1549 冰丝. 冰丝. 布料 2025-12-09 02:18:49.210102+00 2025-12-09 02:18:49.210106+00 1550 100D四面弹120g 100D四面弹120g 布料 2025-12-09 02:18:49.210882+00 2025-12-09 02:18:49.210886+00 1551 250G坑条 250G坑条 布料 2025-12-09 02:18:49.211631+00 2025-12-09 02:18:49.211634+00 1552 120克大白四面弹. 120克大白四面弹. 布料 2025-12-09 02:18:49.212409+00 2025-12-09 02:18:49.212413+00 1553 捻丝乱麻. 捻丝乱麻. 布料 2025-12-09 02:18:49.213191+00 2025-12-09 02:18:49.213195+00 1554 锦消光透气孔 锦消光透气孔 布料 2025-12-09 02:18:49.213964+00 2025-12-09 02:18:49.213968+00 1555 120D精品四面弹 120D精品四面弹 布料 2025-12-09 02:18:49.296366+00 2025-12-09 02:18:49.296371+00 1634 250克日本卫衣 250克日本卫衣 布料 2025-12-09 02:18:49.214738+00 2025-12-09 02:18:49.214742+00 1556 170克牛奶丝双磨. 170克牛奶丝双磨. 布料 2025-12-09 02:18:49.215515+00 2025-12-09 02:18:49.215519+00 1557 竹节纱 竹节纱 布料 2025-12-09 02:18:49.216298+00 2025-12-09 02:18:49.216302+00 1558 小卫衣. 小卫衣. 布料 2025-12-09 02:18:49.21708+00 2025-12-09 02:18:49.217084+00 1559 全光. 全光. 布料 2025-12-09 02:18:49.21785+00 2025-12-09 02:18:49.217854+00 1560 30D天丝米白 30D天丝米白 布料 2025-12-09 02:18:49.218635+00 2025-12-09 02:18:49.218639+00 1561 客人的色丁加厚 客人的色丁加厚 布料 2025-12-09 02:18:49.21955+00 2025-12-09 02:18:49.219554+00 1562 本厂罗马布 本厂罗马布 布料 2025-12-09 02:18:49.220501+00 2025-12-09 02:18:49.220505+00 1563 仿人丝色丁布 仿人丝色丁布 布料 2025-12-09 02:18:49.22145+00 2025-12-09 02:18:49.221455+00 1564 客人的金灵斜 客人的金灵斜 布料 2025-12-09 02:18:49.22241+00 2025-12-09 02:18:49.222415+00 1565 170克牛奶丝. 170克牛奶丝. 布料 2025-12-09 02:18:49.223358+00 2025-12-09 02:18:49.223363+00 1566 杏色小香风 杏色小香风 布料 2025-12-09 02:18:49.224305+00 2025-12-09 02:18:49.224309+00 1567 大白洗水皱 大白洗水皱 布料 2025-12-09 02:18:49.225257+00 2025-12-09 02:18:49.225261+00 1568 110克本白纬弹 110克本白纬弹 布料 2025-12-09 02:18:49.226408+00 2025-12-09 02:18:49.226412+00 1569 千千叶 千千叶 布料 2025-12-09 02:18:49.227555+00 2025-12-09 02:18:49.227559+00 1570 本厂200克牛奶丝 本厂200克牛奶丝 布料 2025-12-09 02:18:49.228721+00 2025-12-09 02:18:49.228725+00 1571 米白消光破卡 米白消光破卡 布料 2025-12-09 02:18:49.229874+00 2025-12-09 02:18:49.229879+00 1572 110克牛奶丝单磨 110克牛奶丝单磨 布料 2025-12-09 02:18:49.231101+00 2025-12-09 02:18:49.231106+00 1573 170克牛奶丝抓毛 170克牛奶丝抓毛 布料 2025-12-09 02:18:49.232326+00 2025-12-09 02:18:49.23233+00 1574 空气层. 空气层. 布料 2025-12-09 02:18:49.233483+00 2025-12-09 02:18:49.233488+00 1575 120克四面弹. 120克四面弹. 布料 2025-12-09 02:18:49.234635+00 2025-12-09 02:18:49.234639+00 1576 本厂120克大白四面弹 本厂120克大白四面弹 布料 2025-12-09 02:18:49.235585+00 2025-12-09 02:18:49.23559+00 1577 本厂50D全光 . 本厂50D全光 . 布料 2025-12-09 02:18:49.237529+00 2025-12-09 02:18:49.237534+00 1578 本厂170克本白仿棉 本厂170克本白仿棉 布料 2025-12-09 02:18:49.238501+00 2025-12-09 02:18:49.238506+00 1579 110克牛奶丝磨毛 110克牛奶丝磨毛 布料 2025-12-09 02:18:49.239468+00 2025-12-09 02:18:49.239473+00 1580 本厂大白四面弹. 本厂大白四面弹. 布料 2025-12-09 02:18:49.240427+00 2025-12-09 02:18:49.240431+00 1581 超柔四面弹 超柔四面弹 布料 2025-12-09 02:18:49.241397+00 2025-12-09 02:18:49.241402+00 1582 180克坑条2X2 180克坑条2X2 布料 2025-12-09 02:18:49.242364+00 2025-12-09 02:18:49.242369+00 1583 泡泡布 泡泡布 布料 2025-12-09 02:18:49.243314+00 2025-12-09 02:18:49.243319+00 1584 170克米白坑条 170克米白坑条 布料 2025-12-09 02:18:49.245223+00 2025-12-09 02:18:49.245227+00 1585 复合鹿皮绒 复合鹿皮绒 布料 2025-12-09 02:18:49.190676+00 2025-12-09 02:18:49.393946+00 1526 250克坑条 250克坑条 布料 2025-12-09 02:18:49.177967+00 2025-12-09 02:18:49.47573+00 1514 羊毛绒 羊毛绒 布料 2025-12-09 02:18:49.173277+00 2025-12-09 02:18:49.488406+00 1509 斜纹卫衣 斜纹卫衣 布料 2025-12-09 02:18:49.17094+00 2025-12-09 02:18:49.526304+00 1507 四面弹大白A 四面弹大白A 布料 2025-12-09 02:18:49.182783+00 2025-12-09 02:18:50.196914+00 1517 纬弹 纬弹 布料 2025-12-09 02:18:47.566059+00 2025-12-09 02:18:50.359389+00 594 大白四面弹 大白四面弹 布料 2025-12-09 02:18:49.180914+00 2025-12-09 02:18:50.367206+00 1516 50D全光 50D全光 布料 2025-12-09 02:18:49.24619+00 2025-12-09 02:18:49.246195+00 1586 仿棉卫衣 仿棉卫衣 布料 2025-12-09 02:18:49.247175+00 2025-12-09 02:18:49.24718+00 1587 本厂170克牛奶丝 本厂170克牛奶丝 布料 2025-12-09 02:18:49.24812+00 2025-12-09 02:18:49.248124+00 1588 本厂牛奶丝 本厂牛奶丝 布料 2025-12-09 02:18:49.249099+00 2025-12-09 02:18:49.249103+00 1589 110克牛奶丝 110克牛奶丝 布料 2025-12-09 02:18:49.250059+00 2025-12-09 02:18:49.250064+00 1590 140克牛奶丝双磨 140克牛奶丝双磨 布料 2025-12-09 02:18:49.251016+00 2025-12-09 02:18:49.251021+00 1591 150克双面 150克双面 布料 2025-12-09 02:18:49.251977+00 2025-12-09 02:18:49.251982+00 1592 柔破卡 柔破卡 布料 2025-12-09 02:18:49.252958+00 2025-12-09 02:18:49.252962+00 1593 200克金钻绒 200克金钻绒 布料 2025-12-09 02:18:49.253955+00 2025-12-09 02:18:49.253959+00 1594 白色德绒 白色德绒 布料 2025-12-09 02:18:49.25492+00 2025-12-09 02:18:49.254924+00 1595 200克韩国绒 200克韩国绒 布料 2025-12-09 02:18:49.255884+00 2025-12-09 02:18:49.255888+00 1596 星光麻 星光麻 布料 2025-12-09 02:18:49.25686+00 2025-12-09 02:18:49.256864+00 1597 230克斜纹卫衣 230克斜纹卫衣 布料 2025-12-09 02:18:49.257816+00 2025-12-09 02:18:49.25782+00 1598 大卫衣 大卫衣 布料 2025-12-09 02:18:49.258773+00 2025-12-09 02:18:49.258777+00 1599 客人的纬弹 客人的纬弹 布料 2025-12-09 02:18:49.259723+00 2025-12-09 02:18:49.259727+00 1600 160克本白有氨直贡呢 160克本白有氨直贡呢 布料 2025-12-09 02:18:49.260689+00 2025-12-09 02:18:49.260693+00 1601 180克捻丝乱麻米白 180克捻丝乱麻米白 布料 2025-12-09 02:18:49.261668+00 2025-12-09 02:18:49.261672+00 1602 金丝雪纺 金丝雪纺 布料 2025-12-09 02:18:49.262627+00 2025-12-09 02:18:49.262632+00 1603 坤兴硬破卡 坤兴硬破卡 布料 2025-12-09 02:18:49.263591+00 2025-12-09 02:18:49.263596+00 1604 260克牛奶丝 260克牛奶丝 布料 2025-12-09 02:18:49.26455+00 2025-12-09 02:18:49.264554+00 1605 新格麻 新格麻 布料 2025-12-09 02:18:49.266496+00 2025-12-09 02:18:49.2665+00 1606 180克单磨 180克单磨 布料 2025-12-09 02:18:49.267466+00 2025-12-09 02:18:49.267471+00 1607 200单磨牛奶丝 200单磨牛奶丝 布料 2025-12-09 02:18:49.268432+00 2025-12-09 02:18:49.268437+00 1608 200克小卫衣拉架 200克小卫衣拉架 布料 2025-12-09 02:18:49.269385+00 2025-12-09 02:18:49.269389+00 1609 170克牛奶丝磨毛 170克牛奶丝磨毛 布料 2025-12-09 02:18:49.270331+00 2025-12-09 02:18:49.270335+00 1610 客人的直贡尼 客人的直贡尼 布料 2025-12-09 02:18:49.271296+00 2025-12-09 02:18:49.271301+00 1611 140克牛奶丝单磨米白 140克牛奶丝单磨米白 布料 2025-12-09 02:18:49.27319+00 2025-12-09 02:18:49.273194+00 1612 灰色卫衣布 灰色卫衣布 布料 2025-12-09 02:18:49.274157+00 2025-12-09 02:18:49.274162+00 1613 210克仿棉 210克仿棉 布料 2025-12-09 02:18:49.275128+00 2025-12-09 02:18:49.275133+00 1614 毛巾布 毛巾布 布料 2025-12-09 02:18:49.276085+00 2025-12-09 02:18:49.27609+00 1615 米白斜纹布 米白斜纹布 布料 2025-12-09 02:18:49.277055+00 2025-12-09 02:18:49.277059+00 1616 120克桃皮绒 120克桃皮绒 布料 2025-12-09 02:18:49.27805+00 2025-12-09 02:18:49.278055+00 1617 单面麻 单面麻 布料 2025-12-09 02:18:49.279024+00 2025-12-09 02:18:49.279029+00 1618 140克四面弹 140克四面弹 布料 2025-12-09 02:18:49.280003+00 2025-12-09 02:18:49.280008+00 1619 230克2x2坑条 230克2x2坑条 布料 2025-12-09 02:18:49.280961+00 2025-12-09 02:18:49.280966+00 1620 日本卫衣 日本卫衣 布料 2025-12-09 02:18:49.281922+00 2025-12-09 02:18:49.281927+00 1621 大白酷丝绵 大白酷丝绵 布料 2025-12-09 02:18:49.282882+00 2025-12-09 02:18:49.282886+00 1622 8867#子母条 8867#子母条 布料 2025-12-09 02:18:49.284806+00 2025-12-09 02:18:49.284811+00 1623 180克大卫衣 180克大卫衣 布料 2025-12-09 02:18:49.285773+00 2025-12-09 02:18:49.286682+00 1624 无弹缎面 无弹缎面 布料 2025-12-09 02:18:49.287687+00 2025-12-09 02:18:49.287691+00 1625 涤单小卫衣 涤单小卫衣 布料 2025-12-09 02:18:49.288652+00 2025-12-09 02:18:49.288657+00 1626 200克涤卫衣 200克涤卫衣 布料 2025-12-09 02:18:49.28962+00 2025-12-09 02:18:49.289625+00 1627 92克大白纬弹 92克大白纬弹 布料 2025-12-09 02:18:49.290582+00 2025-12-09 02:18:49.290587+00 1628 绿色弹力缎 绿色弹力缎 布料 2025-12-09 02:18:49.291531+00 2025-12-09 02:18:49.291535+00 1629 米白直贡呢 米白直贡呢 布料 2025-12-09 02:18:49.292505+00 2025-12-09 02:18:49.29251+00 1630 140牛奶丝双磨 140牛奶丝双磨 布料 2025-12-09 02:18:49.293475+00 2025-12-09 02:18:49.29348+00 1631 米白酷丝绵 米白酷丝绵 布料 2025-12-09 02:18:49.294454+00 2025-12-09 02:18:49.294459+00 1632 92克纬弹 92克纬弹 布料 2025-12-09 02:18:49.295403+00 2025-12-09 02:18:49.295407+00 1633 230克涤卫衣 230克涤卫衣 布料 2025-12-09 02:18:49.297322+00 2025-12-09 02:18:49.297327+00 1635 180克牛奶丝拉架 180克牛奶丝拉架 布料 2025-12-09 02:18:49.298273+00 2025-12-09 02:18:49.298277+00 1636 220克2*2坑条 220克2*2坑条 布料 2025-12-09 02:18:49.300202+00 2025-12-09 02:18:49.300207+00 1638 230克卫衣 230克卫衣 布料 2025-12-09 02:18:49.30115+00 2025-12-09 02:18:49.301154+00 1639 大白仿真丝 大白仿真丝 布料 2025-12-09 02:18:49.303071+00 2025-12-09 02:18:49.303075+00 1641 红色真丝皱 红色真丝皱 布料 2025-12-09 02:18:49.305287+00 2025-12-09 02:18:49.305292+00 1643 200克牛奶丝双面磨毛 200克牛奶丝双面磨毛 布料 2025-12-09 02:18:49.306254+00 2025-12-09 02:18:49.306259+00 1644 250克卫衣 250克卫衣 布料 2025-12-09 02:18:49.307207+00 2025-12-09 02:18:49.307212+00 1645 160克有氨直贡呢 160克有氨直贡呢 布料 2025-12-09 02:18:49.30816+00 2025-12-09 02:18:49.308164+00 1646 雪花绒 雪花绒 布料 2025-12-09 02:18:49.309131+00 2025-12-09 02:18:49.309136+00 1647 方格布 方格布 布料 2025-12-09 02:18:49.3101+00 2025-12-09 02:18:49.310104+00 1648 75D横条 75D横条 布料 2025-12-09 02:18:49.311062+00 2025-12-09 02:18:49.311067+00 1649 230克牛奶丝拉架 230克牛奶丝拉架 布料 2025-12-09 02:18:49.312029+00 2025-12-09 02:18:49.312033+00 1650 客户卫衣 客户卫衣 布料 2025-12-09 02:18:49.313953+00 2025-12-09 02:18:49.313957+00 1651 涤棉竹节 涤棉竹节 布料 2025-12-09 02:18:49.314931+00 2025-12-09 02:18:49.314936+00 1652 200克小坑条 200克小坑条 布料 2025-12-09 02:18:49.315914+00 2025-12-09 02:18:49.315919+00 1653 180克直贡呢 180克直贡呢 布料 2025-12-09 02:18:49.316888+00 2025-12-09 02:18:49.316892+00 1654 日本小卫衣 日本小卫衣 布料 2025-12-09 02:18:49.304321+00 2025-12-09 02:18:49.317816+00 1642 华夫格 华夫格 布料 2025-12-09 02:18:49.318804+00 2025-12-09 02:18:49.318808+00 1655 优质格 优质格 布料 2025-12-09 02:18:49.319763+00 2025-12-09 02:18:49.319768+00 1656 50D银光 50D银光 布料 2025-12-09 02:18:49.320729+00 2025-12-09 02:18:49.320733+00 1657 190克罗马米白 190克罗马米白 布料 2025-12-09 02:18:49.321683+00 2025-12-09 02:18:49.321688+00 1658 防晒服 防晒服 布料 2025-12-09 02:18:49.322642+00 2025-12-09 02:18:49.322647+00 1659 涤棉仿天丝 涤棉仿天丝 布料 2025-12-09 02:18:49.323611+00 2025-12-09 02:18:49.323616+00 1660 皱飘飘 皱飘飘 布料 2025-12-09 02:18:49.324574+00 2025-12-09 02:18:49.324578+00 1661 白色弹力缎 白色弹力缎 布料 2025-12-09 02:18:49.32553+00 2025-12-09 02:18:49.325535+00 1662 客人的布料200克四面弹 客人的布料200克四面弹 布料 2025-12-09 02:18:49.326507+00 2025-12-09 02:18:49.326511+00 1663 180克专用仿棉 180克专用仿棉 布料 2025-12-09 02:18:49.327465+00 2025-12-09 02:18:49.32747+00 1664 210克大白坑条 210克大白坑条 布料 2025-12-09 02:18:49.328418+00 2025-12-09 02:18:49.328423+00 1665 陈小姐 陈小姐 布料 2025-12-09 02:18:49.299238+00 2025-12-09 02:18:50.315912+00 1637 本厂直贡呢 本厂直贡呢 布料 2025-12-09 02:18:49.302107+00 2025-12-09 02:18:50.3459+00 1640 大白坑条 大白坑条 布料 2025-12-09 02:18:49.32937+00 2025-12-09 02:18:49.329375+00 1666 大白消光破卡 大白消光破卡 布料 2025-12-09 02:18:49.330344+00 2025-12-09 02:18:49.330348+00 1667 808 华尔缎 808 华尔缎 布料 2025-12-09 02:18:49.33131+00 2025-12-09 02:18:49.331313+00 1668 170克仿棉拉架米白 170克仿棉拉架米白 布料 2025-12-09 02:18:49.332271+00 2025-12-09 02:18:49.332276+00 1669 韩国皱 韩国皱 布料 2025-12-09 02:18:49.333235+00 2025-12-09 02:18:49.33324+00 1670 客人的Tc棉 客人的Tc棉 布料 2025-12-09 02:18:49.334194+00 2025-12-09 02:18:49.334199+00 1671 110克四面弹本白 110克四面弹本白 布料 2025-12-09 02:18:49.335163+00 2025-12-09 02:18:49.335168+00 1672 200克牛奶丝 200克牛奶丝 布料 2025-12-09 02:18:49.336128+00 2025-12-09 02:18:49.336132+00 1673 75D雪纺 75D雪纺 布料 2025-12-09 02:18:49.337096+00 2025-12-09 02:18:49.337101+00 1674 极品牛奶丝 极品牛奶丝 布料 2025-12-09 02:18:49.339063+00 2025-12-09 02:18:49.339068+00 1676 120克米白四面弹A 120克米白四面弹A 布料 2025-12-09 02:18:49.340021+00 2025-12-09 02:18:49.340026+00 1677 本厂110克纬弹 本厂110克纬弹 布料 2025-12-09 02:18:49.340981+00 2025-12-09 02:18:49.340985+00 1678 200D四面弹 200D四面弹 布料 2025-12-09 02:18:49.341944+00 2025-12-09 02:18:49.341948+00 1679 客人的高密珍珠雪纺 客人的高密珍珠雪纺 布料 2025-12-09 02:18:49.342928+00 2025-12-09 02:18:49.342933+00 1680 星空纱 星空纱 布料 2025-12-09 02:18:49.343897+00 2025-12-09 02:18:49.343902+00 1681 本厂超柔仿棉170克 本厂超柔仿棉170克 布料 2025-12-09 02:18:49.344869+00 2025-12-09 02:18:49.344873+00 1682 本厂180克牛奶丝双磨 本厂180克牛奶丝双磨 布料 2025-12-09 02:18:49.345831+00 2025-12-09 02:18:49.345835+00 1683 大白超细涤 大白超细涤 布料 2025-12-09 02:18:49.347805+00 2025-12-09 02:18:49.34781+00 1685 本厂90克纬弹 本厂90克纬弹 布料 2025-12-09 02:18:49.348776+00 2025-12-09 02:18:49.348781+00 1686 提花雪纺 提花雪纺 布料 2025-12-09 02:18:49.349742+00 2025-12-09 02:18:49.349747+00 1687 9088 9088 布料 2025-12-09 02:18:49.351858+00 2025-12-09 02:18:49.351862+00 1689 大白破卡 大白破卡 布料 2025-12-09 02:18:49.353021+00 2025-12-09 02:18:49.353026+00 1690 5D数码条 5D数码条 布料 2025-12-09 02:18:49.35418+00 2025-12-09 02:18:49.354185+00 1691 本厂120克蓝光大白四面弹 本厂120克蓝光大白四面弹 布料 2025-12-09 02:18:49.356565+00 2025-12-09 02:18:49.356569+00 1692 大白75D双层四面弹 大白75D双层四面弹 布料 2025-12-09 02:18:49.357837+00 2025-12-09 02:18:49.357841+00 1693 条纹布 条纹布 布料 2025-12-09 02:18:49.359011+00 2025-12-09 02:18:49.359016+00 1694 本厂120克四面弹 本厂120克四面弹 布料 2025-12-09 02:18:49.360178+00 2025-12-09 02:18:49.360183+00 1695 厚雪纺 厚雪纺 布料 2025-12-09 02:18:49.362098+00 2025-12-09 02:18:49.362102+00 1697 170克大白坑条 170克大白坑条 布料 2025-12-09 02:18:49.364036+00 2025-12-09 02:18:49.364041+00 1699 缎条萧 缎条萧 布料 2025-12-09 02:18:49.364998+00 2025-12-09 02:18:49.365003+00 1700 2*2坑条 2*2坑条 布料 2025-12-09 02:18:49.36596+00 2025-12-09 02:18:49.365964+00 1701 75D低粘雪纺 75D低粘雪纺 布料 2025-12-09 02:18:49.367899+00 2025-12-09 02:18:49.367903+00 1703 佳丽麻 佳丽麻 布料 2025-12-09 02:18:49.36886+00 2025-12-09 02:18:49.368865+00 1704 150D四面弹 150D四面弹 布料 2025-12-09 02:18:49.369826+00 2025-12-09 02:18:49.369831+00 1705 75D四面弹 75D四面弹 布料 2025-12-09 02:18:49.370803+00 2025-12-09 02:18:49.370807+00 1706 250克斜纹纺棉 250克斜纹纺棉 布料 2025-12-09 02:18:49.372726+00 2025-12-09 02:18:49.37273+00 1708 涤仿天丝 涤仿天丝 布料 2025-12-09 02:18:49.374708+00 2025-12-09 02:18:49.374712+00 1710 110克米白四面弹B 110克米白四面弹B 布料 2025-12-09 02:18:49.375671+00 2025-12-09 02:18:49.375675+00 1711 仿丝麻 仿丝麻 布料 2025-12-09 02:18:49.376634+00 2025-12-09 02:18:49.376639+00 1712 米白四面弹 米白四面弹 布料 2025-12-09 02:18:49.377598+00 2025-12-09 02:18:49.377603+00 1713 飘仙皱 飘仙皱 布料 2025-12-09 02:18:49.378565+00 2025-12-09 02:18:49.37857+00 1714 天丝麻 天丝麻 布料 2025-12-09 02:18:49.379536+00 2025-12-09 02:18:49.379541+00 1715 网鱼布 网鱼布 布料 2025-12-09 02:18:49.380499+00 2025-12-09 02:18:49.380504+00 1716 加密弹力缎 加密弹力缎 布料 2025-12-09 02:18:49.381455+00 2025-12-09 02:18:49.381459+00 1717 韩国磨毛 韩国磨毛 布料 2025-12-09 02:18:49.382428+00 2025-12-09 02:18:49.382432+00 1718 芙蓉缎 芙蓉缎 布料 2025-12-09 02:18:49.383381+00 2025-12-09 02:18:49.383386+00 1719 100克四面弹米白 100克四面弹米白 布料 2025-12-09 02:18:49.384348+00 2025-12-09 02:18:49.384353+00 1720 本厂120克四面弹米白 本厂120克四面弹米白 布料 2025-12-09 02:18:49.385306+00 2025-12-09 02:18:49.38531+00 1721 紫色消光破卡 紫色消光破卡 布料 2025-12-09 02:18:49.386264+00 2025-12-09 02:18:49.386268+00 1722 哑光仿真丝 哑光仿真丝 布料 2025-12-09 02:18:49.387234+00 2025-12-09 02:18:49.387239+00 1723 斜纹四面弹 斜纹四面弹 布料 2025-12-09 02:18:49.388192+00 2025-12-09 02:18:49.388197+00 1724 280克卫衣布料 280克卫衣布料 布料 2025-12-09 02:18:49.389148+00 2025-12-09 02:18:49.389153+00 1725 真丝缎 真丝缎 布料 2025-12-09 02:18:49.390111+00 2025-12-09 02:18:49.390115+00 1726 140克米白单磨毛牛奶丝 140克米白单磨毛牛奶丝 布料 2025-12-09 02:18:49.391079+00 2025-12-09 02:18:49.391084+00 1727 100D斜纹四面弹 100D斜纹四面弹 布料 2025-12-09 02:18:49.392043+00 2025-12-09 02:18:49.392048+00 1728 100D米白四面弹 100D米白四面弹 布料 2025-12-09 02:18:49.393007+00 2025-12-09 02:18:49.393012+00 1729 泡泡缎 泡泡缎 布料 2025-12-09 02:18:49.394946+00 2025-12-09 02:18:49.39495+00 1730 本厂200克坑条 本厂200克坑条 布料 2025-12-09 02:18:49.395982+00 2025-12-09 02:18:49.395987+00 1731 130g四面弹 130g四面弹 布料 2025-12-09 02:18:49.396848+00 2025-12-09 02:18:49.396852+00 1732 70D涤氨 70D涤氨 布料 2025-12-09 02:18:49.397651+00 2025-12-09 02:18:49.397654+00 1733 针织提花条 针织提花条 布料 2025-12-09 02:18:49.398451+00 2025-12-09 02:18:49.398455+00 1734 复合丝 复合丝 布料 2025-12-09 02:18:49.399244+00 2025-12-09 02:18:49.399248+00 1735 真丝缎纹 真丝缎纹 布料 2025-12-09 02:18:49.400043+00 2025-12-09 02:18:49.400047+00 1736 真丝纱 真丝纱 布料 2025-12-09 02:18:49.400837+00 2025-12-09 02:18:49.400841+00 1737 精品巴黎珠 精品巴黎珠 布料 2025-12-09 02:18:49.402402+00 2025-12-09 02:18:49.402406+00 1738 单磨 单磨 布料 2025-12-09 02:18:49.403994+00 2025-12-09 02:18:49.403999+00 1740 160克无氨大白直贡呢 160克无氨大白直贡呢 布料 2025-12-09 02:18:49.4048+00 2025-12-09 02:18:49.404803+00 1741 磨毛 磨毛 布料 2025-12-09 02:18:49.405572+00 2025-12-09 02:18:49.405576+00 1742 170克米白牛奶丝 170克米白牛奶丝 布料 2025-12-09 02:18:49.406362+00 2025-12-09 02:18:49.406365+00 1743 牛奶丝双磨(170-180克) 牛奶丝双磨(170-180克) 布料 2025-12-09 02:18:49.407125+00 2025-12-09 02:18:49.407128+00 1744 竹节 竹节 布料 2025-12-09 02:18:49.407899+00 2025-12-09 02:18:49.407903+00 1745 加厚四面弹 加厚四面弹 布料 2025-12-09 02:18:49.408673+00 2025-12-09 02:18:49.408676+00 1746 客户四面弹 客户四面弹 布料 2025-12-09 02:18:49.338104+00 2025-12-09 02:18:49.410208+00 1675 顺纡皱 顺纡皱 布料 2025-12-09 02:18:49.41175+00 2025-12-09 02:18:49.411754+00 1747 牙签条 牙签条 布料 2025-12-09 02:18:49.412563+00 2025-12-09 02:18:49.412567+00 1748 170-180g大白坑条布 170-180g大白坑条布 布料 2025-12-09 02:18:49.414135+00 2025-12-09 02:18:49.414139+00 1749 涤氨网布 涤氨网布 布料 2025-12-09 02:18:49.403193+00 2025-12-09 02:18:49.421959+00 1739 牛奶丝坑条 牛奶丝坑条 布料 2025-12-09 02:18:49.371766+00 2025-12-09 02:18:49.612794+00 1707 巴黎珠 巴黎珠 布料 2025-12-09 02:18:49.37374+00 2025-12-09 02:18:49.530152+00 1709 卫衣布 卫衣布 布料 2025-12-09 02:18:49.346835+00 2025-12-09 02:18:50.263323+00 1684 金钻绒 金钻绒 布料 2025-12-09 02:18:49.350691+00 2025-12-09 02:18:50.272576+00 1688 网纱 网纱 布料 2025-12-09 02:18:49.363065+00 2025-12-09 02:18:50.302444+00 1698 阳光麻 阳光麻 布料 2025-12-09 02:18:49.361134+00 2025-12-09 02:18:50.316858+00 1696 雪纺皱 雪纺皱 布料 2025-12-09 02:18:49.414919+00 2025-12-09 02:18:49.414923+00 1750 华尔缎 华尔缎 布料 2025-12-09 02:18:49.415723+00 2025-12-09 02:18:49.415727+00 1751 乱麻 乱麻 布料 2025-12-09 02:18:49.416503+00 2025-12-09 02:18:49.416506+00 1752 米白色消光破卡 米白色消光破卡 布料 2025-12-09 02:18:49.417274+00 2025-12-09 02:18:49.417278+00 1753 玲珑麻 玲珑麻 布料 2025-12-09 02:18:49.418067+00 2025-12-09 02:18:49.418071+00 1754 180克大白牛奶丝单磨 180克大白牛奶丝单磨 布料 2025-12-09 02:18:49.418854+00 2025-12-09 02:18:49.418857+00 1755 105克斜挑 105克斜挑 布料 2025-12-09 02:18:49.419637+00 2025-12-09 02:18:49.419641+00 1756 TC布 TC布 布料 2025-12-09 02:18:49.420416+00 2025-12-09 02:18:49.42042+00 1757 250克大白羊毛绒 250克大白羊毛绒 布料 2025-12-09 02:18:49.421206+00 2025-12-09 02:18:49.42121+00 1758 黑底灰金钻绒 黑底灰金钻绒 布料 2025-12-09 02:18:49.422761+00 2025-12-09 02:18:49.422765+00 1759 平纹缎 平纹缎 布料 2025-12-09 02:18:49.423534+00 2025-12-09 02:18:49.423537+00 1760 110克大白四面弹 110克大白四面弹 布料 2025-12-09 02:18:49.424285+00 2025-12-09 02:18:49.424289+00 1761 假捻四面弹 假捻四面弹 布料 2025-12-09 02:18:49.427387+00 2025-12-09 02:18:49.42739+00 1764 220g羊毛绒 220g羊毛绒 布料 2025-12-09 02:18:49.428168+00 2025-12-09 02:18:49.428172+00 1765 40A网布 40A网布 布料 2025-12-09 02:18:49.428943+00 2025-12-09 02:18:49.428947+00 1766 羊毛绒磨毛270克 羊毛绒磨毛270克 布料 2025-12-09 02:18:49.430492+00 2025-12-09 02:18:49.430495+00 1768 本厂消光破卡 本厂消光破卡 布料 2025-12-09 02:18:49.431262+00 2025-12-09 02:18:49.431266+00 1769 涤羊毛绒大概220克(米白色) 涤羊毛绒大概220克(米白色) 布料 2025-12-09 02:18:49.432041+00 2025-12-09 02:18:49.432045+00 1770 法国羊绒200克左右(米白色) 法国羊绒200克左右(米白色) 布料 2025-12-09 02:18:49.432804+00 2025-12-09 02:18:49.432807+00 1771 220极品羊毛绒 220极品羊毛绒 布料 2025-12-09 02:18:49.43358+00 2025-12-09 02:18:49.433584+00 1772 270克大白羊毛绒 270克大白羊毛绒 布料 2025-12-09 02:18:49.434373+00 2025-12-09 02:18:49.434376+00 1773 大白仿棉拉架 大白仿棉拉架 布料 2025-12-09 02:18:49.435148+00 2025-12-09 02:18:49.435152+00 1774 海浪条 海浪条 布料 2025-12-09 02:18:49.435925+00 2025-12-09 02:18:49.435929+00 1775 本厂170克蚂蚁布 本厂170克蚂蚁布 布料 2025-12-09 02:18:49.436694+00 2025-12-09 02:18:49.436698+00 1776 200克直贡呢 200克直贡呢 布料 2025-12-09 02:18:49.437496+00 2025-12-09 02:18:49.4375+00 1777 涤平纹 涤平纹 布料 2025-12-09 02:18:49.438257+00 2025-12-09 02:18:49.43826+00 1778 120克米白四面弹 120克米白四面弹 布料 2025-12-09 02:18:49.439023+00 2025-12-09 02:18:49.439027+00 1779 灯芯绒 灯芯绒 布料 2025-12-09 02:18:49.440557+00 2025-12-09 02:18:49.44056+00 1780 高捻复合丝 高捻复合丝 布料 2025-12-09 02:18:49.441359+00 2025-12-09 02:18:49.441363+00 1781 300克加捻罗马 300克加捻罗马 布料 2025-12-09 02:18:49.442124+00 2025-12-09 02:18:49.442128+00 1782 咖色冰丝麻 咖色冰丝麻 布料 2025-12-09 02:18:49.4429+00 2025-12-09 02:18:49.442904+00 1783 大白网纱 大白网纱 布料 2025-12-09 02:18:49.443678+00 2025-12-09 02:18:49.443682+00 1784 180克双磨 180克双磨 布料 2025-12-09 02:18:49.444452+00 2025-12-09 02:18:49.444455+00 1785 本厂大白纬弹 本厂大白纬弹 布料 2025-12-09 02:18:49.445229+00 2025-12-09 02:18:49.445233+00 1786 150克仿棉拉架 150克仿棉拉架 布料 2025-12-09 02:18:49.446006+00 2025-12-09 02:18:49.44601+00 1787 羊毛绒磨毛 羊毛绒磨毛 布料 2025-12-09 02:18:49.446763+00 2025-12-09 02:18:49.446767+00 1788 极品羊毛绒拉架 极品羊毛绒拉架 布料 2025-12-09 02:18:49.447539+00 2025-12-09 02:18:49.447543+00 1789 牛奶丝双面 牛奶丝双面 布料 2025-12-09 02:18:49.448298+00 2025-12-09 02:18:49.448302+00 1790 180克牛奶丝磨毛 180克牛奶丝磨毛 布料 2025-12-09 02:18:49.449045+00 2025-12-09 02:18:49.449049+00 1791 110克大白四面弹A 110克大白四面弹A 布料 2025-12-09 02:18:49.449832+00 2025-12-09 02:18:49.449836+00 1792 克重230涤拉架卫衣 克重230涤拉架卫衣 布料 2025-12-09 02:18:49.450588+00 2025-12-09 02:18:49.450591+00 1793 弹力色丁 弹力色丁 布料 2025-12-09 02:18:49.451361+00 2025-12-09 02:18:49.451365+00 1794 太空层 太空层 布料 2025-12-09 02:18:49.452904+00 2025-12-09 02:18:49.452907+00 1795 170克米白牛奶丝单磨 170克米白牛奶丝单磨 布料 2025-12-09 02:18:49.453905+00 2025-12-09 02:18:49.45391+00 1796 大白彩棉 大白彩棉 布料 2025-12-09 02:18:49.454891+00 2025-12-09 02:18:49.454896+00 1797 200克牛奶丝磨毛 200克牛奶丝磨毛 布料 2025-12-09 02:18:49.455867+00 2025-12-09 02:18:49.455871+00 1798 本厂170g米白仿棉 本厂170g米白仿棉 布料 2025-12-09 02:18:49.456852+00 2025-12-09 02:18:49.456856+00 1799 孔雀斜 孔雀斜 布料 2025-12-09 02:18:49.459792+00 2025-12-09 02:18:49.459797+00 1801 蕾丝 蕾丝 布料 2025-12-09 02:18:49.460767+00 2025-12-09 02:18:49.460772+00 1802 针织蚂蚁布160克 针织蚂蚁布160克 布料 2025-12-09 02:18:49.461752+00 2025-12-09 02:18:49.461756+00 1803 大卫衣抓毛 大卫衣抓毛 布料 2025-12-09 02:18:49.462725+00 2025-12-09 02:18:49.462729+00 1804 珠片布 珠片布 布料 2025-12-09 02:18:49.463975+00 2025-12-09 02:18:49.463979+00 1805 350g罗马布 350g罗马布 布料 2025-12-09 02:18:49.465237+00 2025-12-09 02:18:49.465241+00 1806 110g四面弹B 110g四面弹B 布料 2025-12-09 02:18:49.46775+00 2025-12-09 02:18:49.467755+00 1807 加厚仿棉麻 加厚仿棉麻 布料 2025-12-09 02:18:49.469013+00 2025-12-09 02:18:49.469018+00 1808 双面德绒 双面德绒 布料 2025-12-09 02:18:49.470263+00 2025-12-09 02:18:49.470268+00 1809 小卫衣 小卫衣 布料 2025-12-09 02:18:49.471519+00 2025-12-09 02:18:49.471524+00 1810 灯蕊棉杏色布 灯蕊棉杏色布 布料 2025-12-09 02:18:49.472783+00 2025-12-09 02:18:49.472787+00 1811 皱皱布 皱皱布 布料 2025-12-09 02:18:49.473754+00 2025-12-09 02:18:49.473758+00 1812 超细涤 超细涤 布料 2025-12-09 02:18:49.474785+00 2025-12-09 02:18:49.474789+00 1813 加密仿真丝 加密仿真丝 布料 2025-12-09 02:18:49.476737+00 2025-12-09 02:18:49.476742+00 1814 200D双层四面弹 200D双层四面弹 布料 2025-12-09 02:18:49.477715+00 2025-12-09 02:18:49.47772+00 1815 摩根丝 摩根丝 布料 2025-12-09 02:18:49.478682+00 2025-12-09 02:18:49.478686+00 1816 水晶缎 水晶缎 布料 2025-12-09 02:18:49.479668+00 2025-12-09 02:18:49.479672+00 1817 四面弹 牙签条 四面弹 牙签条 布料 2025-12-09 02:18:49.480646+00 2025-12-09 02:18:49.48065+00 1818 仿记忆 仿记忆 布料 2025-12-09 02:18:49.481618+00 2025-12-09 02:18:49.481622+00 1819 140克牛奶丝 140克牛奶丝 布料 2025-12-09 02:18:49.482602+00 2025-12-09 02:18:49.482607+00 1820 斜纹纱卡 斜纹纱卡 布料 2025-12-09 02:18:49.483573+00 2025-12-09 02:18:49.483577+00 1821 75D平板布 75D平板布 布料 2025-12-09 02:18:49.484553+00 2025-12-09 02:18:49.484558+00 1822 双面牛奶丝 双面牛奶丝 布料 2025-12-09 02:18:49.485518+00 2025-12-09 02:18:49.485522+00 1823 120克本白四面弹 120克本白四面弹 布料 2025-12-09 02:18:49.425065+00 2025-12-09 02:18:49.537919+00 1762 200克四面弹 200克四面弹 布料 2025-12-09 02:18:49.487473+00 2025-12-09 02:18:49.487478+00 1824 卡其色卫衣 卡其色卫衣 布料 2025-12-09 02:18:49.489378+00 2025-12-09 02:18:49.489382+00 1825 白面罗马 白面罗马 布料 2025-12-09 02:18:49.490356+00 2025-12-09 02:18:49.49036+00 1826 230克牛奶丝40D拉架 230克牛奶丝40D拉架 布料 2025-12-09 02:18:49.491326+00 2025-12-09 02:18:49.491331+00 1827 色丁斜纹 色丁斜纹 布料 2025-12-09 02:18:49.492295+00 2025-12-09 02:18:49.4923+00 1828 法国羊绒 法国羊绒 布料 2025-12-09 02:18:49.493255+00 2025-12-09 02:18:49.49326+00 1829 涤绵竹节 涤绵竹节 布料 2025-12-09 02:18:49.494222+00 2025-12-09 02:18:49.494226+00 1830 银线绉 银线绉 布料 2025-12-09 02:18:49.496148+00 2025-12-09 02:18:49.496153+00 1831 250克空气层 250克空气层 布料 2025-12-09 02:18:49.49712+00 2025-12-09 02:18:49.497125+00 1832 100D大白细斜 100D大白细斜 布料 2025-12-09 02:18:49.426601+00 2025-12-09 02:18:50.307149+00 1763 涤卫衣 涤卫衣 布料 2025-12-09 02:18:49.498083+00 2025-12-09 02:18:49.498087+00 1833 本厂160克直贡呢 本厂160克直贡呢 布料 2025-12-09 02:18:49.49909+00 2025-12-09 02:18:49.499094+00 1834 厚的斜纹沙卡 厚的斜纹沙卡 布料 2025-12-09 02:18:49.501005+00 2025-12-09 02:18:49.501009+00 1835 30D金边 30D金边 布料 2025-12-09 02:18:49.501987+00 2025-12-09 02:18:49.501992+00 1836 细斜 细斜 布料 2025-12-09 02:18:49.502965+00 2025-12-09 02:18:49.502969+00 1837 直贡呢 直贡呢 布料 2025-12-09 02:18:49.503947+00 2025-12-09 02:18:49.503951+00 1838 大白纬弹 大白纬弹 布料 2025-12-09 02:18:49.504943+00 2025-12-09 02:18:49.504948+00 1839 气流冰丝皱 气流冰丝皱 布料 2025-12-09 02:18:49.505919+00 2025-12-09 02:18:49.505923+00 1840 A3-23 A3-23 布料 2025-12-09 02:18:49.506888+00 2025-12-09 02:18:49.506893+00 1841 美人条 美人条 布料 2025-12-09 02:18:49.458801+00 2025-12-09 02:18:49.507831+00 1800 泳衣布 泳衣布 布料 2025-12-09 02:18:49.508831+00 2025-12-09 02:18:49.508836+00 1842 200克卫衣 200克卫衣 布料 2025-12-09 02:18:49.509809+00 2025-12-09 02:18:49.509814+00 1843 本厂180-200g大白坑条 本厂180-200g大白坑条 布料 2025-12-09 02:18:49.510778+00 2025-12-09 02:18:49.510783+00 1844 卫衣料 卫衣料 布料 2025-12-09 02:18:49.511744+00 2025-12-09 02:18:49.511748+00 1845 10GB 10GB 布料 2025-12-09 02:18:49.512716+00 2025-12-09 02:18:49.512721+00 1846 本厂170克牛奶丝单磨 本厂170克牛奶丝单磨 布料 2025-12-09 02:18:49.513694+00 2025-12-09 02:18:49.513698+00 1847 花瑶皱 花瑶皱 布料 2025-12-09 02:18:49.514661+00 2025-12-09 02:18:49.514666+00 1848 复合绒 复合绒 布料 2025-12-09 02:18:49.515634+00 2025-12-09 02:18:49.515638+00 1849 本厂230g大白坑条 本厂230g大白坑条 布料 2025-12-09 02:18:49.516604+00 2025-12-09 02:18:49.516609+00 1850 本厂200g大白卫衣 本厂200g大白卫衣 布料 2025-12-09 02:18:49.517572+00 2025-12-09 02:18:49.517577+00 1851 泡泡皱布 泡泡皱布 布料 2025-12-09 02:18:49.518554+00 2025-12-09 02:18:49.518558+00 1852 龙凤尼 龙凤尼 布料 2025-12-09 02:18:49.519519+00 2025-12-09 02:18:49.519524+00 1853 高跟斜 高跟斜 布料 2025-12-09 02:18:49.520489+00 2025-12-09 02:18:49.520494+00 1854 140克涤单面 140克涤单面 布料 2025-12-09 02:18:49.522467+00 2025-12-09 02:18:49.522471+00 1856 110克大白四面弹B 110克大白四面弹B 布料 2025-12-09 02:18:49.523451+00 2025-12-09 02:18:49.523455+00 1857 150克平板布 150克平板布 布料 2025-12-09 02:18:49.524413+00 2025-12-09 02:18:49.524418+00 1858 220克卫衣 220克卫衣 布料 2025-12-09 02:18:49.525377+00 2025-12-09 02:18:49.525382+00 1859 LMJ-0909布料 LMJ-0909布料 布料 2025-12-09 02:18:49.527287+00 2025-12-09 02:18:49.527292+00 1860 罗马 罗马 布料 2025-12-09 02:18:49.52826+00 2025-12-09 02:18:49.528264+00 1861 75D双层四面弹(180克) 75D双层四面弹(180克) 布料 2025-12-09 02:18:49.529225+00 2025-12-09 02:18:49.52923+00 1862 本厂100克四面弹 本厂100克四面弹 布料 2025-12-09 02:18:49.531131+00 2025-12-09 02:18:49.531136+00 1863 110克四面弹A 110克四面弹A 布料 2025-12-09 02:18:49.532102+00 2025-12-09 02:18:49.532106+00 1864 338底布 338底布 布料 2025-12-09 02:18:49.533072+00 2025-12-09 02:18:49.533077+00 1865 230克罗马 230克罗马 布料 2025-12-09 02:18:49.536022+00 2025-12-09 02:18:49.536027+00 1866 仿棉麻 仿棉麻 布料 2025-12-09 02:18:49.536992+00 2025-12-09 02:18:49.536997+00 1867 加厚弹力皱 加厚弹力皱 布料 2025-12-09 02:18:49.538933+00 2025-12-09 02:18:49.538938+00 1868 200g牛奶丝 200g牛奶丝 布料 2025-12-09 02:18:49.540849+00 2025-12-09 02:18:49.540853+00 1869 75D假念四面弹 75D假念四面弹 布料 2025-12-09 02:18:49.542785+00 2025-12-09 02:18:49.54279+00 1870 斜纹沙卡 斜纹沙卡 布料 2025-12-09 02:18:49.543766+00 2025-12-09 02:18:49.543771+00 1871 170克牛奶丝 170克牛奶丝 布料 2025-12-09 02:18:49.544791+00 2025-12-09 02:18:49.544796+00 1872 厚斜纹 厚斜纹 布料 2025-12-09 02:18:49.545748+00 2025-12-09 02:18:49.545752+00 1873 杏色龙凤呢 杏色龙凤呢 布料 2025-12-09 02:18:49.546732+00 2025-12-09 02:18:49.546736+00 1874 龙凤呢 龙凤呢 布料 2025-12-09 02:18:49.547699+00 2025-12-09 02:18:49.547709+00 1875 数码四面弹 数码四面弹 布料 2025-12-09 02:18:49.548672+00 2025-12-09 02:18:49.548677+00 1876 40D网布 40D网布 布料 2025-12-09 02:18:49.549634+00 2025-12-09 02:18:49.549639+00 1877 本厂秋香麻 本厂秋香麻 布料 2025-12-09 02:18:49.550617+00 2025-12-09 02:18:49.550621+00 1878 乱格麻 乱格麻 布料 2025-12-09 02:18:49.551595+00 2025-12-09 02:18:49.5516+00 1879 125克四面弹 125克四面弹 布料 2025-12-09 02:18:49.552566+00 2025-12-09 02:18:49.552571+00 1880 818仿真丝 818仿真丝 布料 2025-12-09 02:18:49.55354+00 2025-12-09 02:18:49.553544+00 1881 醋酸手抓花色布 醋酸手抓花色布 布料 2025-12-09 02:18:49.554506+00 2025-12-09 02:18:49.554511+00 1882 牛奶丝磨毛色布 牛奶丝磨毛色布 布料 2025-12-09 02:18:49.555474+00 2025-12-09 02:18:49.555478+00 1883 弹力蜂巢 弹力蜂巢 布料 2025-12-09 02:18:49.556441+00 2025-12-09 02:18:49.556446+00 1884 103条纹 103条纹 布料 2025-12-09 02:18:49.557408+00 2025-12-09 02:18:49.557413+00 1885 理想格 理想格 布料 2025-12-09 02:18:49.558373+00 2025-12-09 02:18:49.558378+00 1886 280克大卫衣 280克大卫衣 布料 2025-12-09 02:18:49.559336+00 2025-12-09 02:18:49.559341+00 1887 16安涤棉 16安涤棉 布料 2025-12-09 02:18:49.560305+00 2025-12-09 02:18:49.560309+00 1888 横富条 横富条 布料 2025-12-09 02:18:49.56128+00 2025-12-09 02:18:49.561285+00 1889 加厚双层 加厚双层 布料 2025-12-09 02:18:49.562254+00 2025-12-09 02:18:49.562258+00 1890 仿麻棉 仿麻棉 布料 2025-12-09 02:18:49.563215+00 2025-12-09 02:18:49.563219+00 1891 75D加厚双层 75D加厚双层 布料 2025-12-09 02:18:49.564185+00 2025-12-09 02:18:49.564189+00 1892 双面四面弹 双面四面弹 布料 2025-12-09 02:18:49.565153+00 2025-12-09 02:18:49.565157+00 1893 2X2坑条 2X2坑条 布料 2025-12-09 02:18:49.566123+00 2025-12-09 02:18:49.566127+00 1894 灰色手抓花 灰色手抓花 布料 2025-12-09 02:18:49.567093+00 2025-12-09 02:18:49.567098+00 1895 仿皮绒 仿皮绒 布料 2025-12-09 02:18:49.568077+00 2025-12-09 02:18:49.568082+00 1896 水晶绒 水晶绒 布料 2025-12-09 02:18:49.569052+00 2025-12-09 02:18:49.569057+00 1897 英伦斜 英伦斜 布料 2025-12-09 02:18:49.570025+00 2025-12-09 02:18:49.57003+00 1898 黑底金面缎面绒 黑底金面缎面绒 布料 2025-12-09 02:18:49.570987+00 2025-12-09 02:18:49.570991+00 1899 运动网 运动网 布料 2025-12-09 02:18:49.571964+00 2025-12-09 02:18:49.571969+00 1900 大泡泡布 大泡泡布 布料 2025-12-09 02:18:49.572946+00 2025-12-09 02:18:49.572951+00 1901 长丝四面弹 长丝四面弹 布料 2025-12-09 02:18:49.573921+00 2025-12-09 02:18:49.573926+00 1902 杏色珍珠雪纺 杏色珍珠雪纺 布料 2025-12-09 02:18:49.574891+00 2025-12-09 02:18:49.574896+00 1903 100D精品四面弹 100D精品四面弹 布料 2025-12-09 02:18:49.575865+00 2025-12-09 02:18:49.575869+00 1904 250克蚂蚁布 250克蚂蚁布 布料 2025-12-09 02:18:49.576849+00 2025-12-09 02:18:49.576854+00 1905 针织 针织 布料 2025-12-09 02:18:49.577827+00 2025-12-09 02:18:49.577831+00 1906 808华尔缎 808华尔缎 布料 2025-12-09 02:18:49.5788+00 2025-12-09 02:18:49.578804+00 1907 大白皱花缎 大白皱花缎 布料 2025-12-09 02:18:49.579768+00 2025-12-09 02:18:49.579772+00 1908 珍珠雪纺 珍珠雪纺 布料 2025-12-09 02:18:49.580739+00 2025-12-09 02:18:49.580744+00 1909 涤天丝 涤天丝 布料 2025-12-09 02:18:49.581706+00 2025-12-09 02:18:49.581711+00 1910 蜂窝麻 蜂窝麻 布料 2025-12-09 02:18:49.582671+00 2025-12-09 02:18:49.582676+00 1911 米白雪纺 米白雪纺 布料 2025-12-09 02:18:49.583638+00 2025-12-09 02:18:49.583643+00 1912 冰丝网纹 冰丝网纹 布料 2025-12-09 02:18:49.584614+00 2025-12-09 02:18:49.584619+00 1913 加厚双层四面弹 加厚双层四面弹 布料 2025-12-09 02:18:49.585598+00 2025-12-09 02:18:49.585602+00 1914 160克蚂蚁布 160克蚂蚁布 布料 2025-12-09 02:18:49.586583+00 2025-12-09 02:18:49.586588+00 1915 棉泡纱 棉泡纱 布料 2025-12-09 02:18:49.587553+00 2025-12-09 02:18:49.587558+00 1916 有色冰丝皱 有色冰丝皱 布料 2025-12-09 02:18:49.588516+00 2025-12-09 02:18:49.588521+00 1917 仿真丝米白 仿真丝米白 布料 2025-12-09 02:18:49.589479+00 2025-12-09 02:18:49.589483+00 1918 复合丝花瑶 复合丝花瑶 布料 2025-12-09 02:18:49.590738+00 2025-12-09 02:18:49.590745+00 1919 迪拜皱 迪拜皱 布料 2025-12-09 02:18:49.59201+00 2025-12-09 02:18:49.592015+00 1920 16安帆布 16安帆布 布料 2025-12-09 02:18:49.59326+00 2025-12-09 02:18:49.593264+00 1921 亿隆120克四面弹 亿隆120克四面弹 布料 2025-12-09 02:18:49.594507+00 2025-12-09 02:18:49.594512+00 1922 加厚龙凤缎 加厚龙凤缎 布料 2025-12-09 02:18:49.595781+00 2025-12-09 02:18:49.595786+00 1923 8*5坑条 8*5坑条 布料 2025-12-09 02:18:49.597378+00 2025-12-09 02:18:49.597383+00 1924 手抓花 手抓花 布料 2025-12-09 02:18:49.599168+00 2025-12-09 02:18:49.599173+00 1925 40D尼龙 40D尼龙 布料 2025-12-09 02:18:49.600285+00 2025-12-09 02:18:49.600289+00 1926 三喷格子皱 三喷格子皱 布料 2025-12-09 02:18:49.601081+00 2025-12-09 02:18:49.601085+00 1927 顺纡绉 顺纡绉 布料 2025-12-09 02:18:49.601896+00 2025-12-09 02:18:49.6019+00 1928 110克仿天丝羊毛 110克仿天丝羊毛 布料 2025-12-09 02:18:49.60269+00 2025-12-09 02:18:49.602694+00 1929 仿醋酸单面麻 仿醋酸单面麻 布料 2025-12-09 02:18:49.603465+00 2025-12-09 02:18:49.603469+00 1930 2×2 坑条 2×2 坑条 布料 2025-12-09 02:18:49.604257+00 2025-12-09 02:18:49.604261+00 1931 2×2螺纹布 2×2螺纹布 布料 2025-12-09 02:18:49.605061+00 2025-12-09 02:18:49.605065+00 1932 200D加厚平纹 200D加厚平纹 布料 2025-12-09 02:18:49.605864+00 2025-12-09 02:18:49.605868+00 1933 110克大白高弹丝 110克大白高弹丝 布料 2025-12-09 02:18:49.606634+00 2025-12-09 02:18:49.606638+00 1934 人棉竹节 人棉竹节 布料 2025-12-09 02:18:49.607404+00 2025-12-09 02:18:49.607408+00 1935 莫代尔 莫代尔 布料 2025-12-09 02:18:49.608184+00 2025-12-09 02:18:49.608187+00 1936 CS洗水绉 CS洗水绉 布料 2025-12-09 02:18:49.608945+00 2025-12-09 02:18:49.608948+00 1937 135涤天丝 135涤天丝 布料 2025-12-09 02:18:49.609723+00 2025-12-09 02:18:49.609727+00 1938 807仿麻 807仿麻 布料 2025-12-09 02:18:49.610508+00 2025-12-09 02:18:49.610511+00 1939 巴黎皱 巴黎皱 布料 2025-12-09 02:18:49.611269+00 2025-12-09 02:18:49.611272+00 1940 绉花缎 绉花缎 布料 2025-12-09 02:18:49.61206+00 2025-12-09 02:18:49.612063+00 1941 G34布料 G34布料 布料 2025-12-09 02:18:49.6136+00 2025-12-09 02:18:49.613603+00 1942 仿醋酸缎 仿醋酸缎 布料 2025-12-09 02:18:49.614432+00 2025-12-09 02:18:49.614435+00 1943 美人皱 美人皱 布料 2025-12-09 02:18:49.615195+00 2025-12-09 02:18:49.615198+00 1944 海浪皱 海浪皱 布料 2025-12-09 02:18:49.61598+00 2025-12-09 02:18:49.615984+00 1945 双层 双层 布料 2025-12-09 02:18:49.616762+00 2025-12-09 02:18:49.616765+00 1946 60支涤天丝 60支涤天丝 布料 2025-12-09 02:18:49.617563+00 2025-12-09 02:18:49.617566+00 1947 90克本白纬弹 90克本白纬弹 布料 2025-12-09 02:18:49.618337+00 2025-12-09 02:18:49.61834+00 1948 涤半光杏色底布 涤半光杏色底布 布料 2025-12-09 02:18:49.61911+00 2025-12-09 02:18:49.619114+00 1949 涤竹节 涤竹节 布料 2025-12-09 02:18:49.619885+00 2025-12-09 02:18:49.619889+00 1950 仿真丝色丁 仿真丝色丁 布料 2025-12-09 02:18:49.620663+00 2025-12-09 02:18:49.620666+00 1951 90G纬弹 90G纬弹 布料 2025-12-09 02:18:49.621456+00 2025-12-09 02:18:49.62146+00 1952 京东格 京东格 布料 2025-12-09 02:18:49.622217+00 2025-12-09 02:18:49.62222+00 1953 9088涤 9088涤 布料 2025-12-09 02:18:49.623076+00 2025-12-09 02:18:49.623079+00 1954 75D全光 75D全光 布料 2025-12-09 02:18:49.623875+00 2025-12-09 02:18:49.623878+00 1955 75D高弹牛奶丝 75D高弹牛奶丝 布料 2025-12-09 02:18:49.624666+00 2025-12-09 02:18:49.62467+00 1956 30D雪纺 30D雪纺 布料 2025-12-09 02:18:49.625443+00 2025-12-09 02:18:49.625446+00 1957 慕云纱 慕云纱 布料 2025-12-09 02:18:49.626202+00 2025-12-09 02:18:49.626205+00 1958 亮光顺纡皱 亮光顺纡皱 布料 2025-12-09 02:18:49.627+00 2025-12-09 02:18:49.627003+00 1959 子母条 子母条 布料 2025-12-09 02:18:49.62776+00 2025-12-09 02:18:49.627763+00 1960 麻棉 麻棉 布料 2025-12-09 02:18:49.628534+00 2025-12-09 02:18:49.628538+00 1961 冰雪丝 冰雪丝 布料 2025-12-09 02:18:50.115341+00 2025-12-09 02:18:50.11535+00 1962 20D涤氨 20D涤氨 布料 2025-12-09 02:18:50.116403+00 2025-12-09 02:18:50.116407+00 1963 240克哥弟纹 240克哥弟纹 布料 2025-12-09 02:18:50.117495+00 2025-12-09 02:18:50.117504+00 1964 本白直贡呢 本白直贡呢 布料 2025-12-09 02:18:50.11838+00 2025-12-09 02:18:50.118384+00 1965 高密斜 高密斜 布料 2025-12-09 02:18:50.119191+00 2025-12-09 02:18:50.119196+00 1966 加厚仿棉感索罗娜 加厚仿棉感索罗娜 布料 2025-12-09 02:18:50.120016+00 2025-12-09 02:18:50.12002+00 1967 螺纹布 螺纹布 布料 2025-12-09 02:18:50.120796+00 2025-12-09 02:18:50.1208+00 1968 全涤纺棉布 全涤纺棉布 布料 2025-12-09 02:18:50.121588+00 2025-12-09 02:18:50.121592+00 1969 加密韩国丝 加密韩国丝 布料 2025-12-09 02:18:50.122368+00 2025-12-09 02:18:50.122371+00 1970 双面 双面 布料 2025-12-09 02:18:50.123135+00 2025-12-09 02:18:50.123138+00 1971 仿麻 仿麻 布料 2025-12-09 02:18:50.123932+00 2025-12-09 02:18:50.123936+00 1972 首尔斜 首尔斜 布料 2025-12-09 02:18:50.124685+00 2025-12-09 02:18:50.124688+00 1973 麻料 麻料 布料 2025-12-09 02:18:50.125454+00 2025-12-09 02:18:50.125458+00 1974 天丝皱 天丝皱 布料 2025-12-09 02:18:50.126226+00 2025-12-09 02:18:50.12623+00 1975 大坑条 大坑条 布料 2025-12-09 02:18:50.126988+00 2025-12-09 02:18:50.126992+00 1976 米 米 布料 2025-12-09 02:18:50.127782+00 2025-12-09 02:18:50.127786+00 1977 水溶绣花 水溶绣花 布料 2025-12-09 02:18:50.128552+00 2025-12-09 02:18:50.128555+00 1978 黑底银金钻绒 黑底银金钻绒 布料 2025-12-09 02:18:50.129455+00 2025-12-09 02:18:50.129459+00 1979 涤麻皱 涤麻皱 布料 2025-12-09 02:18:50.130284+00 2025-12-09 02:18:50.130287+00 1980 棉麻 棉麻 布料 2025-12-09 02:18:50.131073+00 2025-12-09 02:18:50.131076+00 1981 达丰四面弹 达丰四面弹 布料 2025-12-09 02:18:50.131883+00 2025-12-09 02:18:50.131886+00 1982 加厚直贡呢 加厚直贡呢 布料 2025-12-09 02:18:50.132658+00 2025-12-09 02:18:50.132661+00 1983 皱底 皱底 布料 2025-12-09 02:18:50.133439+00 2025-12-09 02:18:50.133443+00 1984 针织米线条 针织米线条 布料 2025-12-09 02:18:50.134219+00 2025-12-09 02:18:50.134222+00 1985 100D120克四面弹 100D120克四面弹 布料 2025-12-09 02:18:50.135029+00 2025-12-09 02:18:50.135032+00 1986 130克四面弹 130克四面弹 布料 2025-12-09 02:18:50.135825+00 2025-12-09 02:18:50.135829+00 1987 仿府绸棉 仿府绸棉 布料 2025-12-09 02:18:50.13661+00 2025-12-09 02:18:50.136614+00 1988 涤半光 涤半光 布料 2025-12-09 02:18:50.137378+00 2025-12-09 02:18:50.137381+00 1989 210克牛奶丝磨毛 210克牛奶丝磨毛 布料 2025-12-09 02:18:50.138171+00 2025-12-09 02:18:50.138175+00 1990 黑底杏金钻绒 黑底杏金钻绒 布料 2025-12-09 02:18:50.138952+00 2025-12-09 02:18:50.138955+00 1991 200克蓝光大白卫衣 200克蓝光大白卫衣 布料 2025-12-09 02:18:50.139737+00 2025-12-09 02:18:50.139741+00 1992 仿麻料 仿麻料 布料 2025-12-09 02:18:50.140523+00 2025-12-09 02:18:50.140527+00 1993 100D纬弹米白 100D纬弹米白 布料 2025-12-09 02:18:50.141288+00 2025-12-09 02:18:50.141292+00 1994 醋酸手抓花 醋酸手抓花 布料 2025-12-09 02:18:50.14233+00 2025-12-09 02:18:50.142334+00 1995 丽丝条 丽丝条 布料 2025-12-09 02:18:50.143105+00 2025-12-09 02:18:50.143108+00 1996 大白雪纺 大白雪纺 布料 2025-12-09 02:18:50.14387+00 2025-12-09 02:18:50.143874+00 1997 加厚雪纺 加厚雪纺 布料 2025-12-09 02:18:50.14465+00 2025-12-09 02:18:50.144653+00 1998 200克牛奶丝拉架 200克牛奶丝拉架 布料 2025-12-09 02:18:50.145415+00 2025-12-09 02:18:50.145419+00 1999 蓝光大白仿棉 蓝光大白仿棉 布料 2025-12-09 02:18:50.146195+00 2025-12-09 02:18:50.146199+00 2000 150克牛奶丝 150克牛奶丝 布料 2025-12-09 02:18:50.14697+00 2025-12-09 02:18:50.146973+00 2001 高弹泡格 高弹泡格 布料 2025-12-09 02:18:47.6797+00 2025-12-09 02:18:50.147706+00 723 230克牛奶丝 230克牛奶丝 布料 2025-12-09 02:18:47.910404+00 2025-12-09 02:18:50.148532+00 990 130克破卡 130克破卡 布料 2025-12-09 02:18:50.14934+00 2025-12-09 02:18:50.149343+00 2002 柔美缎 柔美缎 布料 2025-12-09 02:18:50.150132+00 2025-12-09 02:18:50.150136+00 2003 云感冰丝 云感冰丝 布料 2025-12-09 02:18:50.150932+00 2025-12-09 02:18:50.150936+00 2004 180克冰丝罗纹 180克冰丝罗纹 布料 2025-12-09 02:18:50.151794+00 2025-12-09 02:18:50.151798+00 2005 本白坑条 本白坑条 布料 2025-12-09 02:18:50.152593+00 2025-12-09 02:18:50.152597+00 2006 180克涤单面 180克涤单面 布料 2025-12-09 02:18:50.153408+00 2025-12-09 02:18:50.153412+00 2007 250克仿棉 250克仿棉 布料 2025-12-09 02:18:50.154192+00 2025-12-09 02:18:50.154196+00 2008 杏色风衣料 杏色风衣料 布料 2025-12-09 02:18:50.154959+00 2025-12-09 02:18:50.154962+00 2009 五枚缎 五枚缎 布料 2025-12-09 02:18:50.155743+00 2025-12-09 02:18:50.155746+00 2010 龙凤缎 龙凤缎 布料 2025-12-09 02:18:50.156535+00 2025-12-09 02:18:50.156538+00 2011 泡泡格 泡泡格 布料 2025-12-09 02:18:50.157294+00 2025-12-09 02:18:50.157297+00 2012 彩云斜 彩云斜 布料 2025-12-09 02:18:50.158054+00 2025-12-09 02:18:50.158057+00 2013 355号 355号 布料 2025-12-09 02:18:50.158837+00 2025-12-09 02:18:50.158841+00 2014 不倒绒 不倒绒 布料 2025-12-09 02:18:50.15961+00 2025-12-09 02:18:50.159613+00 2015 本厂170克仿棉 本厂170克仿棉 布料 2025-12-09 02:18:50.160394+00 2025-12-09 02:18:50.160398+00 2016 A25水波纹和A148 A25水波纹和A148 布料 2025-12-09 02:18:50.161164+00 2025-12-09 02:18:50.161167+00 2017 仿人棉 仿人棉 布料 2025-12-09 02:18:50.161932+00 2025-12-09 02:18:50.161935+00 2018 客人布料网布 客人布料网布 布料 2025-12-09 02:18:50.162716+00 2025-12-09 02:18:50.16272+00 2019 哥弟纹 哥弟纹 布料 2025-12-09 02:18:50.163483+00 2025-12-09 02:18:50.163486+00 2020 佳丽斜 佳丽斜 布料 2025-12-09 02:18:50.164251+00 2025-12-09 02:18:50.164255+00 2021 油丁 油丁 布料 2025-12-09 02:18:50.165031+00 2025-12-09 02:18:50.165035+00 2022 咖啡色斜纹磨毛 咖啡色斜纹磨毛 布料 2025-12-09 02:18:50.165798+00 2025-12-09 02:18:50.165801+00 2023 雪纺绒 雪纺绒 布料 2025-12-09 02:18:50.166581+00 2025-12-09 02:18:50.166585+00 2024 200克牛奶丝米白 200克牛奶丝米白 布料 2025-12-09 02:18:50.167345+00 2025-12-09 02:18:50.167348+00 2025 缎面 缎面 布料 2025-12-09 02:18:50.168144+00 2025-12-09 02:18:50.168148+00 2026 本厂230克牛奶丝 本厂230克牛奶丝 布料 2025-12-09 02:18:50.168935+00 2025-12-09 02:18:50.168939+00 2027 高弹缎 高弹缎 布料 2025-12-09 02:18:50.169696+00 2025-12-09 02:18:50.169699+00 2028 200克蚂蚁布 200克蚂蚁布 布料 2025-12-09 02:18:50.170487+00 2025-12-09 02:18:50.17049+00 2029 冰丝拉架 冰丝拉架 布料 2025-12-09 02:18:50.171252+00 2025-12-09 02:18:50.171255+00 2030 罗纹 罗纹 布料 2025-12-09 02:18:50.172032+00 2025-12-09 02:18:50.172036+00 2031 优质斜 优质斜 布料 2025-12-09 02:18:50.172812+00 2025-12-09 02:18:50.172816+00 2032 105克韩国丝 105克韩国丝 布料 2025-12-09 02:18:50.173589+00 2025-12-09 02:18:50.173593+00 2033 光亮斜 光亮斜 布料 2025-12-09 02:18:50.174378+00 2025-12-09 02:18:50.174381+00 2034 本厂170克仿棉拉架 本厂170克仿棉拉架 布料 2025-12-09 02:18:50.175137+00 2025-12-09 02:18:50.17514+00 2035 客人面料水晶麻 客人面料水晶麻 布料 2025-12-09 02:18:50.175914+00 2025-12-09 02:18:50.175918+00 2036 大白花瑶绉 大白花瑶绉 布料 2025-12-09 02:18:50.176692+00 2025-12-09 02:18:50.176695+00 2037 本厂100D四面弹 本厂100D四面弹 布料 2025-12-09 02:18:50.179053+00 2025-12-09 02:18:50.179056+00 2039 全涤竹节 全涤竹节 布料 2025-12-09 02:18:50.179858+00 2025-12-09 02:18:50.179862+00 2040 米白坑条 米白坑条 布料 2025-12-09 02:18:50.180627+00 2025-12-09 02:18:50.180631+00 2041 牛奶丝抓毛200克 牛奶丝抓毛200克 布料 2025-12-09 02:18:50.181389+00 2025-12-09 02:18:50.181392+00 2042 天丝 天丝 布料 2025-12-09 02:18:50.182454+00 2025-12-09 02:18:50.182458+00 2043 30D真丝 30D真丝 布料 2025-12-09 02:18:50.183498+00 2025-12-09 02:18:50.184522+00 2044 客供双色罗马 客供双色罗马 布料 2025-12-09 02:18:50.18563+00 2025-12-09 02:18:50.185633+00 2045 220大白坑条 220大白坑条 布料 2025-12-09 02:18:50.186714+00 2025-12-09 02:18:50.186718+00 2046 本厂牛奶丝单磨 本厂牛奶丝单磨 布料 2025-12-09 02:18:50.187811+00 2025-12-09 02:18:50.187815+00 2047 本厂140g牛奶丝 本厂140g牛奶丝 布料 2025-12-09 02:18:50.18887+00 2025-12-09 02:18:50.188873+00 2048 钻石纱 钻石纱 布料 2025-12-09 02:18:50.189938+00 2025-12-09 02:18:50.189941+00 2049 仿奥戴尔 仿奥戴尔 布料 2025-12-09 02:18:50.190702+00 2025-12-09 02:18:50.190708+00 2050 钻石雪纺 钻石雪纺 布料 2025-12-09 02:18:50.191469+00 2025-12-09 02:18:50.191472+00 2051 弹力网布 弹力网布 布料 2025-12-09 02:18:50.192246+00 2025-12-09 02:18:50.19225+00 2052 本厂90克纬弹米白色 本厂90克纬弹米白色 布料 2025-12-09 02:18:50.193025+00 2025-12-09 02:18:50.193028+00 2053 本厂220g大白卫衣 本厂220g大白卫衣 布料 2025-12-09 02:18:50.193794+00 2025-12-09 02:18:50.193797+00 2054 75D双面 75D双面 布料 2025-12-09 02:18:50.194573+00 2025-12-09 02:18:50.194576+00 2055 天鹅绒 天鹅绒 布料 2025-12-09 02:18:50.195339+00 2025-12-09 02:18:50.195342+00 2056 蚂蚁布 蚂蚁布 布料 2025-12-09 02:18:50.196107+00 2025-12-09 02:18:50.196111+00 2057 658 658 布料 2025-12-09 02:18:50.198513+00 2025-12-09 02:18:50.198517+00 2059 680 680 布料 2025-12-09 02:18:50.199297+00 2025-12-09 02:18:50.1993+00 2060 100克四面弹 100克四面弹 布料 2025-12-09 02:18:50.200078+00 2025-12-09 02:18:50.200082+00 2061 星空纹 星空纹 布料 2025-12-09 02:18:50.200864+00 2025-12-09 02:18:50.200867+00 2062 欧洲棉 欧洲棉 布料 2025-12-09 02:18:50.201626+00 2025-12-09 02:18:50.201629+00 2063 350克罗马 350克罗马 布料 2025-12-09 02:18:50.202618+00 2025-12-09 02:18:50.202623+00 2064 230克米白罗马 230克米白罗马 布料 2025-12-09 02:18:50.203601+00 2025-12-09 02:18:50.203605+00 2065 奥代尔布 奥代尔布 布料 2025-12-09 02:18:50.204569+00 2025-12-09 02:18:50.204573+00 2066 200克磨毛 200克磨毛 布料 2025-12-09 02:18:50.205555+00 2025-12-09 02:18:50.205559+00 2067 米兰麻 米兰麻 布料 2025-12-09 02:18:50.207466+00 2025-12-09 02:18:50.207471+00 2068 浅卡其消光破卡 浅卡其消光破卡 布料 2025-12-09 02:18:50.208427+00 2025-12-09 02:18:50.208431+00 2069 杏色欧洲棉 杏色欧洲棉 布料 2025-12-09 02:18:50.2094+00 2025-12-09 02:18:50.209404+00 2070 180克牛奶丝双磨 180克牛奶丝双磨 布料 2025-12-09 02:18:50.211283+00 2025-12-09 02:18:50.211288+00 2071 本厂大白四面弹 本厂大白四面弹 布料 2025-12-09 02:18:50.21226+00 2025-12-09 02:18:50.212264+00 2072 星空罗纹 星空罗纹 布料 2025-12-09 02:18:50.213224+00 2025-12-09 02:18:50.213228+00 2073 50D四面弹 50D四面弹 布料 2025-12-09 02:18:50.214194+00 2025-12-09 02:18:50.214199+00 2074 涤卫衣布 涤卫衣布 布料 2025-12-09 02:18:49.36693+00 2025-12-09 02:18:50.215116+00 1702 T400破卡 T400破卡 布料 2025-12-09 02:18:50.216111+00 2025-12-09 02:18:50.216116+00 2075 剪花雪纺 剪花雪纺 布料 2025-12-09 02:18:50.217076+00 2025-12-09 02:18:50.21708+00 2076 大白细斜 大白细斜 布料 2025-12-09 02:18:50.21805+00 2025-12-09 02:18:50.218055+00 2077 本厂雪纺 本厂雪纺 布料 2025-12-09 02:18:50.219016+00 2025-12-09 02:18:50.219021+00 2078 170g牛奶丝 170g牛奶丝 布料 2025-12-09 02:18:50.219988+00 2025-12-09 02:18:50.219992+00 2079 大白绉花缎 大白绉花缎 布料 2025-12-09 02:18:50.2219+00 2025-12-09 02:18:50.221905+00 2080 柔美呢 柔美呢 布料 2025-12-09 02:18:50.222866+00 2025-12-09 02:18:50.222871+00 2081 本厂240克罗马布 本厂240克罗马布 布料 2025-12-09 02:18:50.223832+00 2025-12-09 02:18:50.223836+00 2082 150克仿棉 150克仿棉 布料 2025-12-09 02:18:50.224788+00 2025-12-09 02:18:50.224793+00 2083 罗纹坑条 罗纹坑条 布料 2025-12-09 02:18:50.22576+00 2025-12-09 02:18:50.225764+00 2084 雪纺复合丝 雪纺复合丝 布料 2025-12-09 02:18:50.226786+00 2025-12-09 02:18:50.226791+00 2085 40D涤氨网布 40D涤氨网布 布料 2025-12-09 02:18:50.227644+00 2025-12-09 02:18:50.227648+00 2086 605底布 605底布 布料 2025-12-09 02:18:50.228467+00 2025-12-09 02:18:50.22847+00 2087 200克空气层 200克空气层 布料 2025-12-09 02:18:50.229268+00 2025-12-09 02:18:50.229272+00 2088 小鱼纹 小鱼纹 布料 2025-12-09 02:18:50.230058+00 2025-12-09 02:18:50.230061+00 2089 本厂巴黎珠 本厂巴黎珠 布料 2025-12-09 02:18:50.230837+00 2025-12-09 02:18:50.230841+00 2090 120D雪纺 120D雪纺 布料 2025-12-09 02:18:50.197708+00 2025-12-09 02:18:50.274123+00 2058 水波纹 水波纹 布料 2025-12-09 02:18:50.178262+00 2025-12-09 02:18:50.287846+00 2038 金丝绒 金丝绒 布料 2025-12-09 02:18:50.231633+00 2025-12-09 02:18:50.231636+00 2091 小坑条 小坑条 布料 2025-12-09 02:18:50.232412+00 2025-12-09 02:18:50.232415+00 2092 网纱布 网纱布 布料 2025-12-09 02:18:50.233179+00 2025-12-09 02:18:50.233183+00 2093 本厂110克四面弹 本厂110克四面弹 布料 2025-12-09 02:18:50.233959+00 2025-12-09 02:18:50.233962+00 2094 160g牛奶丝 160g牛奶丝 布料 2025-12-09 02:18:50.234718+00 2025-12-09 02:18:50.234721+00 2095 帆布 帆布 布料 2025-12-09 02:18:50.235496+00 2025-12-09 02:18:50.2355+00 2096 黑灰金钻绒 黑灰金钻绒 布料 2025-12-09 02:18:50.236264+00 2025-12-09 02:18:50.236267+00 2097 空气层 空气层 布料 2025-12-09 02:18:50.237846+00 2025-12-09 02:18:50.23785+00 2098 珠地空气层 珠地空气层 布料 2025-12-09 02:18:50.23863+00 2025-12-09 02:18:50.238633+00 2099 30D天丝 30D天丝 布料 2025-12-09 02:18:50.239421+00 2025-12-09 02:18:50.239425+00 2100 200克牛奶丝单磨 200克牛奶丝单磨 布料 2025-12-09 02:18:50.240186+00 2025-12-09 02:18:50.24019+00 2101 冰丝 冰丝 布料 2025-12-09 02:18:50.240951+00 2025-12-09 02:18:50.240955+00 2102 精品四面弹 精品四面弹 布料 2025-12-09 02:18:50.241733+00 2025-12-09 02:18:50.241736+00 2103 波浪纹 波浪纹 布料 2025-12-09 02:18:50.24249+00 2025-12-09 02:18:50.242494+00 2104 170克仿棉 170克仿棉 布料 2025-12-09 02:18:50.243268+00 2025-12-09 02:18:50.243272+00 2105 200克仿棉 200克仿棉 布料 2025-12-09 02:18:50.244038+00 2025-12-09 02:18:50.244042+00 2106 卫衣230克 卫衣230克 布料 2025-12-09 02:18:50.244814+00 2025-12-09 02:18:50.244818+00 2107 本厂大白坑条布 本厂大白坑条布 布料 2025-12-09 02:18:50.245577+00 2025-12-09 02:18:50.245581+00 2108 涤斜纹仿天丝 涤斜纹仿天丝 布料 2025-12-09 02:18:50.246333+00 2025-12-09 02:18:50.246336+00 2109 网布 网布 布料 2025-12-09 02:18:50.24712+00 2025-12-09 02:18:50.247123+00 2110 人棉 人棉 布料 2025-12-09 02:18:50.247895+00 2025-12-09 02:18:50.247898+00 2111 醋酸缎 醋酸缎 布料 2025-12-09 02:18:50.249447+00 2025-12-09 02:18:50.249451+00 2112 双层四面弹 双层四面弹 布料 2025-12-09 02:18:50.251003+00 2025-12-09 02:18:50.251007+00 2113 200g罗马 200g罗马 布料 2025-12-09 02:18:50.251793+00 2025-12-09 02:18:50.251797+00 2114 618底布 618底布 布料 2025-12-09 02:18:50.252564+00 2025-12-09 02:18:50.252568+00 2115 75D双层 75D双层 布料 2025-12-09 02:18:50.25332+00 2025-12-09 02:18:50.253323+00 2116 斜纹布 斜纹布 布料 2025-12-09 02:18:50.254102+00 2025-12-09 02:18:50.254105+00 2117 本厂色丁布 本厂色丁布 布料 2025-12-09 02:18:50.254865+00 2025-12-09 02:18:50.254868+00 2118 卫衣 卫衣 布料 2025-12-09 02:18:50.255622+00 2025-12-09 02:18:50.255626+00 2119 200g双磨 200g双磨 布料 2025-12-09 02:18:50.256418+00 2025-12-09 02:18:50.256422+00 2120 170克牛奶丝单磨 170克牛奶丝单磨 布料 2025-12-09 02:18:50.257173+00 2025-12-09 02:18:50.257176+00 2121 618喷气 618喷气 布料 2025-12-09 02:18:50.257951+00 2025-12-09 02:18:50.257954+00 2122 氨纶直贡呢 氨纶直贡呢 布料 2025-12-09 02:18:50.259501+00 2025-12-09 02:18:50.259505+00 2123 40D涤氨 40D涤氨 布料 2025-12-09 02:18:50.260264+00 2025-12-09 02:18:50.260268+00 2124 韩国麻 韩国麻 布料 2025-12-09 02:18:50.261048+00 2025-12-09 02:18:50.261051+00 2125 涤仿棉 大白180克 涤仿棉 大白180克 布料 2025-12-09 02:18:50.26181+00 2025-12-09 02:18:50.261813+00 2126 风衣料 风衣料 布料 2025-12-09 02:18:50.262577+00 2025-12-09 02:18:50.262581+00 2127 本厂170g牛奶丝 本厂170g牛奶丝 布料 2025-12-09 02:18:50.264097+00 2025-12-09 02:18:50.2641+00 2128 大白牛奶丝单磨 大白牛奶丝单磨 布料 2025-12-09 02:18:50.26486+00 2025-12-09 02:18:50.264863+00 2129 本厂牛奶丝160克 本厂牛奶丝160克 布料 2025-12-09 02:18:50.265629+00 2025-12-09 02:18:50.265632+00 2130 小卫衣拉架230克 小卫衣拉架230克 布料 2025-12-09 02:18:50.266407+00 2025-12-09 02:18:50.26641+00 2131 牛奶丝双磨 牛奶丝双磨 布料 2025-12-09 02:18:50.2672+00 2025-12-09 02:18:50.267203+00 2132 280克罗马 280克罗马 布料 2025-12-09 02:18:50.267978+00 2025-12-09 02:18:50.267981+00 2133 健康布 健康布 布料 2025-12-09 02:18:50.268762+00 2025-12-09 02:18:50.268765+00 2134 180克仿棉 180克仿棉 布料 2025-12-09 02:18:50.269516+00 2025-12-09 02:18:50.269519+00 2135 100D细斜 100D细斜 布料 2025-12-09 02:18:50.270282+00 2025-12-09 02:18:50.270286+00 2136 涤仿棉 涤仿棉 布料 2025-12-09 02:18:50.271054+00 2025-12-09 02:18:50.271058+00 2137 250克罗马 250克罗马 布料 2025-12-09 02:18:50.271833+00 2025-12-09 02:18:50.271837+00 2138 斜纹缎 斜纹缎 布料 2025-12-09 02:18:50.273361+00 2025-12-09 02:18:50.273364+00 2139 牛奶丝双磨白色 牛奶丝双磨白色 布料 2025-12-09 02:18:50.274906+00 2025-12-09 02:18:50.274909+00 2140 本厂90g纬弹 本厂90g纬弹 布料 2025-12-09 02:18:50.275685+00 2025-12-09 02:18:50.275689+00 2141 条纹底布 条纹底布 布料 2025-12-09 02:18:50.276459+00 2025-12-09 02:18:50.276463+00 2142 230克大白罗马 230克大白罗马 布料 2025-12-09 02:18:50.27721+00 2025-12-09 02:18:50.277213+00 2143 本厂大白直贡呢 本厂大白直贡呢 布料 2025-12-09 02:18:50.277984+00 2025-12-09 02:18:50.277988+00 2144 百合缎 百合缎 布料 2025-12-09 02:18:50.278742+00 2025-12-09 02:18:50.278745+00 2145 天丝棉 天丝棉 布料 2025-12-09 02:18:50.279524+00 2025-12-09 02:18:50.279527+00 2146 170克直贡呢 170克直贡呢 布料 2025-12-09 02:18:50.280279+00 2025-12-09 02:18:50.280283+00 2147 165克牛奶丝抓毛 165克牛奶丝抓毛 布料 2025-12-09 02:18:50.281036+00 2025-12-09 02:18:50.28104+00 2148 醋酸绒 醋酸绒 布料 2025-12-09 02:18:50.2818+00 2025-12-09 02:18:50.281803+00 2149 100D大白 100D大白 布料 2025-12-09 02:18:50.282546+00 2025-12-09 02:18:50.282549+00 2150 提花布 提花布 布料 2025-12-09 02:18:50.283315+00 2025-12-09 02:18:50.283319+00 2151 120克大白四面弹 120克大白四面弹 布料 2025-12-09 02:18:50.284078+00 2025-12-09 02:18:50.284081+00 2152 真丝绒 真丝绒 布料 2025-12-09 02:18:50.284823+00 2025-12-09 02:18:50.284826+00 2153 本厂珍珠雪纺 本厂珍珠雪纺 布料 2025-12-09 02:18:50.28559+00 2025-12-09 02:18:50.285594+00 2154 消光缎 消光缎 布料 2025-12-09 02:18:50.286351+00 2025-12-09 02:18:50.286354+00 2155 本厂仿棉 本厂仿棉 布料 2025-12-09 02:18:50.28711+00 2025-12-09 02:18:50.287113+00 2156 本厂200克仿棉 本厂200克仿棉 布料 2025-12-09 02:18:50.288927+00 2025-12-09 02:18:50.28893+00 2157 牛奶丝磨毛 牛奶丝磨毛 布料 2025-12-09 02:18:50.290007+00 2025-12-09 02:18:50.290011+00 2158 真丝皱 真丝皱 布料 2025-12-09 02:18:50.292125+00 2025-12-09 02:18:50.292129+00 2159 高密雪纺 高密雪纺 布料 2025-12-09 02:18:50.293178+00 2025-12-09 02:18:50.293181+00 2160 迪奥条 迪奥条 布料 2025-12-09 02:18:50.294236+00 2025-12-09 02:18:50.29424+00 2161 弹力雪纺 弹力雪纺 布料 2025-12-09 02:18:50.296305+00 2025-12-09 02:18:50.296309+00 2162 弹力皱 弹力皱 布料 2025-12-09 02:18:50.297079+00 2025-12-09 02:18:50.297083+00 2163 弹力色丁或者缎面 弹力色丁或者缎面 布料 2025-12-09 02:18:50.297838+00 2025-12-09 02:18:50.297842+00 2164 蚕丝皱 蚕丝皱 布料 2025-12-09 02:18:50.299372+00 2025-12-09 02:18:50.299376+00 2165 120D四面弹 120D四面弹 布料 2025-12-09 02:18:49.521499+00 2025-12-09 02:18:50.300106+00 1855 双色罗马 双色罗马 布料 2025-12-09 02:18:50.300923+00 2025-12-09 02:18:50.300926+00 2166 雪纺提花 雪纺提花 布料 2025-12-09 02:18:50.301696+00 2025-12-09 02:18:50.301699+00 2167 200克罗马 200克罗马 布料 2025-12-09 02:18:50.303218+00 2025-12-09 02:18:50.303221+00 2168 110克纬弹 110克纬弹 布料 2025-12-09 02:18:50.303988+00 2025-12-09 02:18:50.303992+00 2169 提花格子布 提花格子布 布料 2025-12-09 02:18:47.496685+00 2025-12-09 02:18:50.304737+00 511 弹力缎 弹力缎 布料 2025-12-09 02:18:50.305529+00 2025-12-09 02:18:50.305533+00 2170 牛奶丝140克 牛奶丝140克 布料 2025-12-09 02:18:50.306306+00 2025-12-09 02:18:50.306309+00 2171 弹力网 弹力网 布料 2025-12-09 02:18:50.308161+00 2025-12-09 02:18:50.308165+00 2172 蚕丝绉 蚕丝绉 布料 2025-12-09 02:18:50.309141+00 2025-12-09 02:18:50.309145+00 2173 黑底银面弹力缎 黑底银面弹力缎 布料 2025-12-09 02:18:50.310114+00 2025-12-09 02:18:50.310119+00 2174 冰丝皱 冰丝皱 布料 2025-12-09 02:18:50.311097+00 2025-12-09 02:18:50.311101+00 2175 色丁雪花绒 色丁雪花绒 布料 2025-12-09 02:18:50.312067+00 2025-12-09 02:18:50.312071+00 2176 牛奶丝170克 牛奶丝170克 布料 2025-12-09 02:18:50.313046+00 2025-12-09 02:18:50.313051+00 2177 卡其消光破卡 卡其消光破卡 布料 2025-12-09 02:18:50.314011+00 2025-12-09 02:18:50.314015+00 2178 180G牛奶丝 180G牛奶丝 布料 2025-12-09 02:18:50.317833+00 2025-12-09 02:18:50.317837+00 2180 300g罗马 300g罗马 布料 2025-12-09 02:18:50.318808+00 2025-12-09 02:18:50.318812+00 2181 180g大白罗马 180g大白罗马 布料 2025-12-09 02:18:50.319777+00 2025-12-09 02:18:50.319781+00 2182 220克牛奶丝 220克牛奶丝 布料 2025-12-09 02:18:50.320754+00 2025-12-09 02:18:50.320758+00 2183 100D超柔 100D超柔 布料 2025-12-09 02:18:50.321725+00 2025-12-09 02:18:50.321729+00 2184 韩国丝 韩国丝 布料 2025-12-09 02:18:50.32269+00 2025-12-09 02:18:50.322694+00 2185 仿真丝 仿真丝 布料 2025-12-09 02:18:50.323656+00 2025-12-09 02:18:50.32366+00 2186 全涤9088 全涤9088 布料 2025-12-09 02:18:50.324633+00 2025-12-09 02:18:50.324637+00 2187 仿醋酸弹力 仿醋酸弹力 布料 2025-12-09 02:18:50.325601+00 2025-12-09 02:18:50.325605+00 2188 190克 牛奶丝单磨 190克 牛奶丝单磨 布料 2025-12-09 02:18:50.326577+00 2025-12-09 02:18:50.326581+00 2189 坑条布 坑条布 布料 2025-12-09 02:18:50.327549+00 2025-12-09 02:18:50.327554+00 2190 仿棉 仿棉 布料 2025-12-09 02:18:50.328511+00 2025-12-09 02:18:50.328516+00 2191 白色消光破卡 白色消光破卡 布料 2025-12-09 02:18:50.329483+00 2025-12-09 02:18:50.329487+00 2192 百花绒 百花绒 布料 2025-12-09 02:18:50.330473+00 2025-12-09 02:18:50.330478+00 2193 TC棉 TC棉 布料 2025-12-09 02:18:50.331451+00 2025-12-09 02:18:50.331455+00 2194 本厂纬弹 本厂纬弹 布料 2025-12-09 02:18:50.333373+00 2025-12-09 02:18:50.333378+00 2195 300克罗马 300克罗马 布料 2025-12-09 02:18:50.334342+00 2025-12-09 02:18:50.334347+00 2196 尼龙 尼龙 布料 2025-12-09 02:18:50.335295+00 2025-12-09 02:18:50.3353+00 2197 大白坑条布 大白坑条布 布料 2025-12-09 02:18:50.337225+00 2025-12-09 02:18:50.337229+00 2198 色丁布 色丁布 布料 2025-12-09 02:18:50.338197+00 2025-12-09 02:18:50.338201+00 2199 大白仿棉 大白仿棉 布料 2025-12-09 02:18:50.339159+00 2025-12-09 02:18:50.339163+00 2200 36A网眼布 36A网眼布 布料 2025-12-09 02:18:50.340125+00 2025-12-09 02:18:50.34013+00 2201 欧根纱 欧根纱 布料 2025-12-09 02:18:50.341088+00 2025-12-09 02:18:50.341092+00 2202 菱形麻 菱形麻 布料 2025-12-09 02:18:50.342063+00 2025-12-09 02:18:50.342067+00 2203 浅卡其 消光破卡 浅卡其 消光破卡 布料 2025-12-09 02:18:50.343033+00 2025-12-09 02:18:50.343037+00 2204 客户布 客户布 布料 2025-12-09 02:18:50.344004+00 2025-12-09 02:18:50.344008+00 2205 芙蓉麻 芙蓉麻 布料 2025-12-09 02:18:50.344962+00 2025-12-09 02:18:50.344966+00 2206 竹节麻 竹节麻 布料 2025-12-09 02:18:50.346898+00 2025-12-09 02:18:50.346902+00 2207 数码印100D 四面弹 数码印100D 四面弹 布料 2025-12-09 02:18:50.347861+00 2025-12-09 02:18:50.347866+00 2208 平纹四面弹 平纹四面弹 布料 2025-12-09 02:18:50.348824+00 2025-12-09 02:18:50.348828+00 2209 75D双层四面弹 75D双层四面弹 布料 2025-12-09 02:18:50.349795+00 2025-12-09 02:18:50.349799+00 2210 客人的100d四面弹 客人的100d四面弹 布料 2025-12-09 02:18:50.351725+00 2025-12-09 02:18:50.35173+00 2211 罗马布 罗马布 布料 2025-12-09 02:18:50.352691+00 2025-12-09 02:18:50.352695+00 2212 无弹竹节 无弹竹节 布料 2025-12-09 02:18:50.353655+00 2025-12-09 02:18:50.35366+00 2213 大白卫衣 大白卫衣 布料 2025-12-09 02:18:50.354615+00 2025-12-09 02:18:50.354619+00 2214 大白直贡呢 大白直贡呢 布料 2025-12-09 02:18:50.35558+00 2025-12-09 02:18:50.355584+00 2215 大白缎花皱 大白缎花皱 布料 2025-12-09 02:18:50.356548+00 2025-12-09 02:18:50.356553+00 2216 仿棉拉架 仿棉拉架 布料 2025-12-09 02:18:50.358445+00 2025-12-09 02:18:50.35845+00 2217 110克加厚纬弹 110克加厚纬弹 布料 2025-12-09 02:18:50.360405+00 2025-12-09 02:18:50.360409+00 2218 纯涤仿棉 纯涤仿棉 布料 2025-12-09 02:18:50.361388+00 2025-12-09 02:18:50.361393+00 2219 本厂加厚米兰皱 本厂加厚米兰皱 布料 2025-12-09 02:18:50.362366+00 2025-12-09 02:18:50.36237+00 2220 本厂四面弹 本厂四面弹 布料 2025-12-09 02:18:50.363363+00 2025-12-09 02:18:50.363368+00 2221 165克牛奶丝单磨 165克牛奶丝单磨 布料 2025-12-09 02:18:50.36434+00 2025-12-09 02:18:50.364345+00 2222 本厂170g牛奶丝大白 本厂170g牛奶丝大白 布料 2025-12-09 02:18:50.365309+00 2025-12-09 02:18:50.365313+00 2223 170克仿棉拉架 170克仿棉拉架 布料 2025-12-09 02:18:50.366276+00 2025-12-09 02:18:50.366281+00 2224 170克牛奶丝拉架 170克牛奶丝拉架 布料 2025-12-09 02:18:50.368227+00 2025-12-09 02:18:50.368232+00 2225 锦棉皱 锦棉皱 布料 2025-12-09 02:18:50.369198+00 2025-12-09 02:18:50.369202+00 2226 190克罗马布 190克罗马布 布料 2025-12-09 02:18:50.370165+00 2025-12-09 02:18:50.37017+00 2227 110克四面弹 110克四面弹 布料 2025-12-09 02:18:50.371133+00 2025-12-09 02:18:50.371137+00 2228 95克纬弹 95克纬弹 布料 \. -- -- Data for Name: basic_info_supplier; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_supplier (created_at, updated_at, id, name, area, email, mobile, contact, description, merchant_id) FROM stdin; 2025-11-26 03:14:51.868499+00 2025-11-26 03:14:51.868508+00 1 测试 123 \N \N \N \N 1 2025-12-01 09:04:05.64032+00 2025-12-01 09:04:05.640329+00 2 123 \N \N \N \N \N 1 \. -- -- Data for Name: basic_info_userprofile; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_userprofile (created_at, updated_at, id, description, merchant_id, user_id) FROM stdin; 2025-11-24 03:12:45.2506+00 2025-11-24 03:12:45.250611+00 1 1 2 2025-11-24 05:45:22.720006+00 2025-11-24 05:45:22.720012+00 3 测试用户资料 1 5 2025-11-24 06:08:19.191142+00 2025-11-24 06:08:19.191149+00 4 supersuper111 1 6 2025-11-24 06:16:49.714832+00 2025-11-24 06:16:49.714838+00 5 supersuper111 1 7 \. -- -- Data for Name: basic_info_vehicletransportrecord; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_vehicletransportrecord (created_at, updated_at, id, driver_name, contact_number, license_plate, delivery_date, merchant_id, vehicle_type_id) FROM stdin; \. -- -- Data for Name: basic_info_vehicletype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_vehicletype (created_at, updated_at, id, name, description, merchant_id) FROM stdin; \. -- -- Data for Name: basic_info_warehouse; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.basic_info_warehouse (created_at, updated_at, id, name, location, contact, mobile, area, description, merchant_id, mode, type) FROM stdin; 2025-11-20 06:43:01.759659+00 2025-11-20 06:43:01.75967+00 3 中大(散) 中大2号 老铁 13310001999 \N 1 1 2 2025-11-25 09:11:29.252782+00 2025-11-25 09:11:29.252792+00 4 测试 \N \N \N \N \N 1 2 1 2025-11-20 06:42:36.740923+00 2025-11-25 10:18:01.333513+00 2 中大 中大1号 老铁 13310001999 \N 1 2 1 2025-12-01 09:17:21.481482+00 2025-12-01 09:17:21.481491+00 5 宽出 \N \N \N \N \N 1 3 1 \. -- -- Data for Name: business_balancechangerecord; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_balancechangerecord (id, created_at, updated_at, target_type, source_type, source_id, delta, direction, balance_before, balance_after, request_id, remarks, extra_meta, offset_to, offset_at, offset_id, cancelled, cancelled_at, customer_id, merchant_id, supplier_id) FROM stdin; 1 2025-12-01 07:14:23.861513+00 2025-12-01 07:14:23.861518+00 2 2 2 500.00 1 -44.00 456.00 \N {} \N \N \N f \N 3 1 \N 2 2025-12-01 09:18:06.954809+00 2025-12-01 09:18:06.954817+00 1 5 1 -100.00 2 -50.00 -150.00 \N {} \N \N \N f \N \N 1 1 3 2025-12-01 09:32:33.706005+00 2025-12-01 09:32:33.70601+00 1 5 3 -200.00 2 -150.00 -350.00 \N {} \N \N \N f \N \N 1 1 4 2025-12-01 09:42:14.235539+00 2025-12-01 09:42:14.235547+00 2 6 1 -624.00 2 456.00 -168.00 \N {} \N \N \N f \N 3 1 \N 5 2025-12-01 09:43:48.630763+00 2025-12-01 09:43:48.630768+00 2 6 2 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N 6 2025-12-01 09:44:17.41201+00 2025-12-01 09:44:17.412015+00 2 6 3 0.00 1 -168.00 -168.00 \N {} \N \N \N f \N 3 1 \N 7 2025-12-01 09:45:03.243761+00 2025-12-01 09:45:03.243765+00 1 5 4 0.00 1 0.00 0.00 \N {} \N \N \N f \N \N 1 2 8 2025-12-01 09:48:45.339355+00 2025-12-01 09:48:45.339359+00 2 6 4 -390.00 2 -168.00 -558.00 \N {} \N \N \N f \N 3 1 \N 9 2025-12-01 09:57:08.746485+00 2025-12-01 09:57:08.746489+00 2 6 5 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N 10 2025-12-01 09:59:47.267842+00 2025-12-01 09:59:47.267846+00 2 6 6 0.00 1 -558.00 -558.00 \N {} \N \N \N f \N 3 1 \N 11 2025-12-01 10:11:13.484938+00 2025-12-01 10:11:13.484943+00 2 6 7 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N 12 2025-12-01 10:12:21.017421+00 2025-12-01 10:12:21.017426+00 2 6 8 0.00 1 0.00 0.00 \N {} \N \N \N f \N 6 1 \N 13 2025-12-03 09:49:17.730177+00 2025-12-03 09:49:17.730183+00 2 4 2 -558.00 2 -558.00 -1116.00 \N {} \N \N \N f \N 3 1 \N \. -- -- Data for Name: business_customerbalance; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_customerbalance (id, created_at, updated_at, balance, customer_id, merchant_id) FROM stdin; 2 2025-12-01 10:11:13.484115+00 2025-12-01 10:12:21.017087+00 0.00 6 1 1 2025-12-01 05:16:19.216069+00 2025-12-03 09:49:17.729699+00 -1116.00 3 1 \. -- -- Data for Name: business_object; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_object (id, created_at, updated_at, name, description, process_id, content_type_id, object_id) FROM stdin; 1 2025-11-18 09:55:35.336835+00 2025-11-18 09:55:35.336842+00 1 \N \N 2 2025-11-18 09:58:01.451306+00 2025-11-18 09:58:01.451311+00 1 \N \N 3 2025-11-18 09:58:20.381316+00 2025-11-18 09:58:20.38132+00 1 \N \N 4 2025-11-18 10:03:03.629943+00 2025-11-18 10:03:03.629948+00 PrintingJob-1 印染任务 1 的流程实例 1 \N \N 5 2025-11-18 10:09:47.339798+00 2025-11-18 10:09:47.339803+00 2 \N \N 6 2025-11-18 10:10:04.823874+00 2025-11-18 10:10:04.823879+00 2 \N \N 7 2025-11-18 10:10:55.526526+00 2025-11-18 10:10:55.526533+00 2 \N \N 8 2025-11-18 10:15:58.290203+00 2025-11-18 10:15:58.290207+00 PrintingJob-2 印染任务 2 的流程实例 1 \N \N 9 2025-11-18 10:35:25.880305+00 2025-11-18 10:35:25.880312+00 2 \N \N 10 2025-11-18 10:42:48.817571+00 2025-11-18 10:42:48.817579+00 PrintingJob-3 印染任务 3 的流程实例 1 \N \N 11 2025-11-18 10:42:48.848235+00 2025-11-18 10:42:48.84824+00 PrintingJob-4 印染任务 4 的流程实例 1 \N \N 12 2025-11-19 01:44:43.687468+00 2025-11-19 01:44:43.687472+00 2 \N \N 13 2025-11-19 02:00:49.486776+00 2025-11-19 02:00:49.486782+00 2 \N \N 14 2025-11-19 02:00:59.586971+00 2025-11-19 02:00:59.586976+00 2 \N \N 15 2025-11-19 02:04:48.934697+00 2025-11-19 02:04:48.934703+00 2 \N \N 16 2025-11-19 05:10:28.186858+00 2025-11-19 05:10:28.186863+00 PrintingJob-5 印染任务 5 的流程实例 1 \N \N 17 2025-11-19 06:16:00.259932+00 2025-11-19 06:16:00.259937+00 PrintingJob-6 印染任务 6 的流程实例 1 \N \N 18 2025-11-19 08:21:50.459601+00 2025-11-19 08:21:50.459608+00 PrintingJob-7 印染任务 7 的流程实例 1 \N \N 19 2025-11-19 09:28:09.461746+00 2025-11-19 09:28:09.461752+00 2 \N \N 20 2025-11-19 09:28:40.842389+00 2025-11-19 09:28:40.842394+00 2 \N \N 21 2025-11-20 01:52:49.286921+00 2025-11-20 01:52:49.286927+00 2 \N \N 22 2025-11-20 03:48:01.385016+00 2025-11-20 03:48:01.385022+00 2 \N \N 23 2025-11-20 03:49:28.254688+00 2025-11-20 03:49:28.254694+00 2 \N \N 24 2025-11-20 03:49:37.951494+00 2025-11-20 03:49:37.951499+00 1 \N \N 25 2025-11-20 06:55:48.528541+00 2025-11-20 06:55:48.528548+00 2 \N \N 26 2025-11-21 03:10:15.020199+00 2025-11-21 03:10:15.020203+00 PrintingJob-8 印染任务 8 的流程实例 1 \N \N 27 2025-11-21 08:45:33.732267+00 2025-11-21 08:45:33.732274+00 2 \N \N 28 2025-11-22 02:39:05.939841+00 2025-11-22 02:39:05.939847+00 2 \N \N 29 2025-11-23 13:11:03.642075+00 2025-11-23 13:11:03.642082+00 2 \N \N 30 2025-11-24 11:33:15.711916+00 2025-11-24 11:33:15.711922+00 2 \N \N 31 2025-11-27 07:23:06.022961+00 2025-11-27 07:23:06.022966+00 2 \N \N 32 2025-11-27 08:08:49.410063+00 2025-11-27 08:08:49.41007+00 2 \N \N 33 2025-11-27 08:09:00.364914+00 2025-11-27 08:09:00.364921+00 2 \N \N 34 2025-11-27 09:01:25.14368+00 2025-11-27 09:01:25.143685+00 2 \N \N 35 2025-11-27 09:04:52.038687+00 2025-11-27 09:04:52.038695+00 2 \N \N 36 2025-11-28 01:32:58.420878+00 2025-11-28 01:32:58.420883+00 2 \N \N 37 2025-11-28 01:33:14.216478+00 2025-11-28 01:33:14.216483+00 2 \N \N 38 2025-11-28 01:43:59.359293+00 2025-11-28 01:43:59.359298+00 2 \N \N 39 2025-11-28 02:39:41.390748+00 2025-11-28 02:39:41.390755+00 2 \N \N 40 2025-11-28 02:57:18.735261+00 2025-11-28 02:57:18.735268+00 2 \N \N 41 2025-11-28 02:58:57.702444+00 2025-11-28 02:58:57.70245+00 2 \N \N 42 2025-11-28 07:03:43.810301+00 2025-11-28 07:03:43.810307+00 PrintingJob-9 印染任务 9 的流程实例 1 \N \N 43 2025-11-28 07:03:53.866789+00 2025-11-28 07:03:53.866794+00 PrintingJob-10 印染任务 10 的流程实例 1 \N \N 44 2025-12-01 02:54:14.237815+00 2025-12-01 02:54:14.23782+00 PrintingJob-11 印染任务 11 的流程实例 1 \N \N 45 2025-12-03 03:52:58.983019+00 2025-12-03 03:52:58.983023+00 2 \N \N 46 2025-12-03 05:27:06.576434+00 2025-12-03 05:27:06.576439+00 2 \N \N 47 2025-12-04 05:45:26.825263+00 2025-12-04 05:45:26.825268+00 1 \N \N 48 2025-12-04 06:58:03.927422+00 2025-12-04 06:58:03.927427+00 2 \N \N 49 2025-12-04 09:22:03.034241+00 2025-12-04 09:22:03.034245+00 2 \N \N 50 2025-12-05 08:10:13.513895+00 2025-12-05 08:10:13.513899+00 2 \N \N 51 2025-12-05 08:58:42.07426+00 2025-12-05 08:58:42.074264+00 2 \N \N 52 2025-12-05 09:08:57.211508+00 2025-12-05 09:08:57.211515+00 PrintingJob-12 印染任务 12 的流程实例 1 \N \N 53 2025-12-05 09:13:01.435639+00 2025-12-05 09:13:01.435645+00 2 \N \N 54 2025-12-05 10:36:45.72919+00 2025-12-05 10:36:45.729194+00 2 \N \N 55 2025-12-06 02:51:26.682163+00 2025-12-06 02:51:26.682171+00 PrintingJob-13 印染任务 13 的流程实例 1 \N \N 56 2025-12-06 07:41:26.895247+00 2025-12-06 07:41:26.895251+00 9 \N \N 57 2025-12-08 05:02:11.853092+00 2025-12-08 05:02:11.853098+00 9 \N \N 58 2025-12-08 05:25:59.941691+00 2025-12-08 05:25:59.941695+00 2 \N \N 59 2025-12-08 05:29:21.259039+00 2025-12-08 05:29:21.259044+00 PrintingJob-14 印染任务 14 的流程实例 1 \N \N 60 2025-12-08 06:18:14.446528+00 2025-12-08 06:18:14.446534+00 2 \N \N 61 2025-12-08 06:47:33.624101+00 2025-12-08 06:47:33.624106+00 2 \N \N 62 2025-12-08 06:51:25.850485+00 2025-12-08 06:51:25.850489+00 7 \N \N 63 2025-12-08 09:47:29.905244+00 2025-12-08 09:47:29.905252+00 2 \N \N 64 2025-12-09 06:56:38.561974+00 2025-12-09 06:56:38.56198+00 2 \N \N 65 2025-12-09 07:04:50.761741+00 2025-12-09 07:04:50.761748+00 PrintingJob-15 印染任务 15 的流程实例 1 \N \N \. -- -- Data for Name: business_paymentorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_paymentorder (created_at, updated_at, id, payment_date, amount, status, remarks, merchant_id, operator_id, supplier_id, bank_account_id, markup, discount_amount) FROM stdin; 2025-12-01 01:55:13.639087+00 2025-12-01 01:55:25.06472+00 1 2025-12-01 50.00 2 1 1 1 \N \N 0.00 \. -- -- Data for Name: business_purchaseorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_purchaseorder (created_at, updated_at, id, remarks, merchant_id, supplier_id, kind, operator_id, purchase_date, status, warehouse_id) FROM stdin; 2025-11-27 08:13:33.430682+00 2025-11-27 08:13:33.430691+00 4 1 1 1 1 2025-11-27 2 2 2025-11-27 08:32:59.523809+00 2025-11-27 08:32:59.523816+00 5 1 1 1 1 2025-11-27 1 4 2025-11-28 03:45:15.401776+00 2025-11-28 03:45:15.401787+00 6 1 1 1 1 2025-11-28 1 2 2025-11-28 03:47:11.102159+00 2025-11-28 03:47:11.102166+00 7 1 1 1 1 2025-11-28 1 3 2025-11-28 03:48:02.675851+00 2025-11-28 03:48:02.675859+00 8 oooo 1 1 1 1 2025-11-28 1 4 2025-11-28 03:49:04.580215+00 2025-11-28 03:49:04.580224+00 9 1 1 1 1 2025-11-28 1 2 2025-11-28 06:18:30.813402+00 2025-11-28 06:18:30.813413+00 10 1 1 1 1 2025-11-28 1 3 2025-11-28 06:18:54.718044+00 2025-11-28 06:18:54.718052+00 11 1 1 1 1 2025-11-28 1 4 2025-11-28 06:20:58.855488+00 2025-11-28 06:20:58.855501+00 12 1 1 1 1 2025-11-28 1 2 2025-11-28 09:36:44.065913+00 2025-11-28 09:36:44.065931+00 13 1 1 1 1 2025-11-28 1 3 2025-11-28 09:46:59.206833+00 2025-11-28 10:01:26.242631+00 16 321 1 1 1 1 2025-11-28 2 2 2025-11-28 09:46:58.480885+00 2025-11-28 10:01:33.033156+00 15 321 1 1 1 1 2025-11-28 3 2 2025-11-28 09:43:18.385595+00 2025-11-28 10:01:37.03266+00 14 1 1 1 1 2025-11-28 2 3 2025-11-28 10:04:13.493174+00 2025-11-28 10:04:16.4849+00 17 1 1 1 1 2025-11-28 2 2 2025-11-28 10:07:18.063985+00 2025-11-28 10:07:47.233846+00 18 1 1 1 1 2025-11-28 3 3 2025-11-28 10:13:43.146475+00 2025-11-28 10:13:49.907567+00 19 1 1 1 1 2025-11-28 2 3 2025-11-29 03:45:48.453773+00 2025-11-29 03:45:48.453783+00 20 1 1 1 1 2025-11-29 1 2 2025-12-02 12:36:48.126532+00 2025-12-02 12:36:48.126543+00 21 1 1 1 1 2025-12-02 1 2 2025-12-03 03:56:11.087112+00 2025-12-03 03:56:11.087125+00 54 1 1 1 1 2025-12-03 1 2 2025-12-03 03:56:19.690904+00 2025-12-03 03:56:19.690918+00 55 1 1 1 1 2025-12-03 1 2 2025-12-03 03:56:28.601528+00 2025-12-03 03:56:28.601541+00 56 1 1 1 1 2025-12-03 1 2 2025-12-03 03:56:30.867937+00 2025-12-03 03:56:30.867946+00 57 1 1 1 1 2025-12-03 1 2 2025-12-03 06:13:55.769266+00 2025-12-03 06:13:55.769275+00 58 1 2 1 1 2025-12-03 1 2 \. -- -- Data for Name: business_purchaseorderitem; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_purchaseorderitem (created_at, updated_at, id, price, color, quantity, unit, empty_diff_percent, quantity_of_rolls, num_of_rolls, batch_number, remarks, product_id, purchase_order_id, spec) FROM stdin; 2025-11-27 08:14:29.091796+00 2025-11-27 08:14:29.091805+00 1 555.00 红色 25.00 米 3.34 200 1 1 1 4 \N 2025-11-27 08:35:24.029424+00 2025-11-27 08:48:57.608408+00 2 25.00 \N 100.00 米 5.00 \N 1 WWOODDP1 1 5 \N 2025-11-28 03:45:15.402492+00 2025-11-28 03:45:15.402496+00 3 0.00 \N 195.00 米 0.00 97,98 2 \N \N 1 6 \N 2025-11-28 03:47:11.102785+00 2025-11-28 03:47:11.10279+00 4 0.00 \N 195.00 米 0.00 97,98 2 \N \N 1 7 \N 2025-11-28 03:49:04.580819+00 2025-11-28 03:49:04.580824+00 5 0.00 \N 195.00 米 0.00 97,98 2 \N \N 1 9 \N 2025-11-28 06:18:30.814105+00 2025-11-28 06:18:30.814109+00 6 0.00 \N 195.00 米 0.00 97,98 2 \N \N 1 10 \N 2025-11-28 06:18:54.718646+00 2025-11-28 06:18:54.71865+00 7 0.00 \N 386.00 米 0.00 97,98,97,94 4 \N \N 1 11 \N 2025-11-28 06:20:58.85678+00 2025-11-28 06:20:58.856787+00 8 0.00 \N 195.00 米 0.00 97,98 2 \N \N 2 12 \N 2025-11-28 09:36:44.067188+00 2025-11-28 09:36:44.067196+00 9 0.50 123 195.00 米 123.00 97,98 2 123 123 1 13 \N 2025-11-28 09:43:18.386305+00 2025-11-28 09:43:18.386309+00 10 123.00 12312 123.00 123 3123.00 123 1 123 \N 1 14 \N 2025-11-28 09:46:58.48212+00 2025-11-28 09:46:58.482127+00 11 1.00 123 195.00 米 123.00 97,98 2 123 \N 1 15 \N 2025-11-28 09:46:59.207447+00 2025-11-28 09:46:59.207451+00 12 1.00 123 195.00 米 123.00 97,98 2 123 \N 1 16 \N 2025-11-28 10:04:13.493873+00 2025-11-28 10:04:13.493876+00 13 0.50 123 195.00 米 0.00 97,98 2 001 \N 3 17 123 2025-11-28 10:07:18.065014+00 2025-11-28 10:07:18.065022+00 14 0.50 123 390.00 米 0.00 97,98,97,98 4 123 \N 3 18 123 2025-11-28 10:13:43.147164+00 2025-11-28 10:13:43.147168+00 15 5.00 7 100.00 米 5.00 100 1 10 \N 3 19 123 2025-11-29 03:45:48.45446+00 2025-11-29 03:45:48.454465+00 16 123.00 123 195.00 米 3.00 97,98 2 3 \N 3 20 123 2025-12-02 12:36:48.127342+00 2025-12-02 12:36:48.127348+00 17 2.00 8 100.00 米 10.00 100 1 \N \N 3 21 \N 2025-12-03 03:56:11.089051+00 2025-12-03 03:56:11.089058+00 50 0.00 400.00 米 0.00 400 1 3 54 2025-12-03 03:56:19.692096+00 2025-12-03 03:56:19.692103+00 51 0.00 400.00 米 0.00 400 1 3 55 2025-12-03 03:56:28.602647+00 2025-12-03 03:56:28.602655+00 52 5.00 400.00 米 0.00 400 1 3 56 2025-12-03 03:56:30.86854+00 2025-12-03 03:56:30.868544+00 53 5.00 400.00 米 0.00 400 1 3 57 2025-12-03 06:13:55.769947+00 2025-12-03 06:13:55.769951+00 54 0.00 456.00 米 0.00 456 1 3 58 \. -- -- Data for Name: business_purchasereturnorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_purchasereturnorder (created_at, updated_at, id, return_date, status, remarks, merchant_id, operator_id, purchase_order_id, supplier_id, warehouse_id) FROM stdin; 2025-12-01 09:20:04.438924+00 2025-12-01 09:20:04.438931+00 2 2025-12-01 1 1 1 \N 1 5 2025-12-01 09:32:27.47594+00 2025-12-01 09:32:33.704544+00 3 2025-12-01 2 1 1 \N 1 5 2025-12-01 09:44:59.206254+00 2025-12-01 09:45:03.241983+00 4 2025-12-01 2 1 1 \N 2 5 \. -- -- Data for Name: business_purchasereturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_purchasereturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, purchase_return_order_id) FROM stdin; 2025-12-01 09:20:04.439567+00 2025-12-01 09:20:04.439571+00 2 2.00 \N 97.00 米 87 0.00 \N 78 \N \N \N 1 2 2025-12-01 09:32:27.476649+00 2025-12-01 09:32:27.476654+00 3 5.00 \N 40.00 5 5 0.00 \N 4 \N \N \N 3 3 2025-12-01 09:44:59.207496+00 2025-12-01 09:44:59.207503+00 4 0.00 \N 100.00 米 \N 0.00 \N 7 \N \N \N 3 4 \. -- -- Data for Name: business_receiptorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_receiptorder (created_at, updated_at, id, receipt_date, amount, status, remarks, customer_id, merchant_id, operator_id, bank_account_id, markup, discount_amount) FROM stdin; 2025-12-01 05:25:23.458021+00 2025-12-01 05:25:28.550379+00 1 2025-12-01 50.00 2 3 1 1 \N \N 0.00 2025-12-03 09:49:12.497967+00 2025-12-03 09:49:17.728628+00 2 2025-12-03 500.00 2 3 1 1 \N \N 58.00 \. -- -- Data for Name: business_salesorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_salesorder (created_at, updated_at, id, sales_date, kind, status, remarks, customer_id, merchant_id, operator_id, warehouse_id) FROM stdin; 2025-12-01 05:16:10.813394+00 2025-12-01 05:16:19.214771+00 1 2025-12-01 1 2 3 1 1 2 2025-12-01 07:14:19.694409+00 2025-12-01 07:14:23.860083+00 2 2025-12-01 1 2 3 1 1 2 \. -- -- Data for Name: business_salesorderitem; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_salesorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_order_id) FROM stdin; 2025-12-01 05:16:10.814184+00 2025-12-01 05:16:10.814191+00 1 2.00 \N 3.00 2 \N 0.00 \N 1 32 \N \N 1 1 2025-12-01 07:14:19.695088+00 2025-12-01 07:14:19.695092+00 2 500.00 \N 1.00 米 \N 0.00 \N 1 32 \N \N 3 2 \. -- -- Data for Name: business_salesreturnorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_salesreturnorder (created_at, updated_at, id, return_date, status, remarks, customer_id, merchant_id, operator_id, sales_order_id, warehouse_id) FROM stdin; 2025-12-01 09:42:09.295062+00 2025-12-01 09:42:14.233208+00 1 2025-12-01 2 3 1 1 \N 5 2025-12-01 09:43:44.526305+00 2025-12-01 09:43:48.629461+00 2 2025-12-01 2 3 1 1 \N 5 2025-12-01 09:44:14.505321+00 2025-12-01 09:44:17.410631+00 3 2025-12-01 2 3 1 1 \N 5 2025-12-01 09:48:42.289556+00 2025-12-01 09:48:45.337907+00 4 2025-12-01 2 3 1 1 \N 4 2025-12-01 09:57:05.046178+00 2025-12-01 09:57:08.745026+00 5 2025-12-01 2 3 1 1 \N 5 2025-12-01 09:59:42.737084+00 2025-12-01 09:59:47.266487+00 6 2025-12-01 2 3 1 1 \N 5 2025-12-01 10:11:10.400379+00 2025-12-01 10:11:13.482943+00 7 2025-12-01 2 6 1 1 \N 5 2025-12-01 10:12:18.232395+00 2025-12-01 10:12:21.016059+00 8 2025-12-01 2 6 1 1 \N 5 \. -- -- Data for Name: business_salesreturnorderitem; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_salesreturnorderitem (created_at, updated_at, id, price, color, quantity, unit, spec, empty_diff_percent, quantity_of_rolls, num_of_rolls, consume_detail_ids, batch_number, remarks, product_id, sales_return_order_id) FROM stdin; 2025-12-01 09:42:09.295958+00 2025-12-01 09:42:09.295963+00 1 8.00 \N 78.00 78 8 0.00 \N 1 \N \N \N 1 1 2025-12-01 09:43:44.526941+00 2025-12-01 09:43:44.526945+00 2 0.00 \N 78.00 米 \N 0.00 \N 1 \N \N \N 3 2 2025-12-01 09:44:14.505971+00 2025-12-01 09:44:14.505975+00 3 0.00 \N 100.00 米 \N 0.00 \N 1 \N \N \N 3 3 2025-12-01 09:48:42.290288+00 2025-12-01 09:48:42.290294+00 4 2.00 \N 195.00 米 \N 0.00 97,98 2 \N \N \N 3 4 2025-12-01 09:57:05.046891+00 2025-12-01 09:57:05.046896+00 5 0.00 \N 100.00 米 \N 0.00 \N 3 \N \N \N 3 5 2025-12-01 09:59:42.737733+00 2025-12-01 09:59:42.737738+00 6 0.00 \N 100.00 米 \N 0.00 \N 1 \N \N \N 3 6 2025-12-01 10:11:10.401108+00 2025-12-01 10:11:10.401113+00 7 0.00 \N 100.00 米 \N 0.00 \N 3 \N \N \N 2 7 2025-12-01 10:12:18.233066+00 2025-12-01 10:12:18.23307+00 8 0.00 \N 100.00 米 \N 0.00 \N 3 \N \N \N 3 8 \. -- -- Data for Name: business_supplierbalance; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.business_supplierbalance (id, created_at, updated_at, balance, merchant_id, supplier_id) FROM stdin; 1 2025-12-01 01:55:25.065867+00 2025-12-01 09:32:33.705617+00 -350.00 1 1 2 2025-12-01 09:45:03.243057+00 2025-12-01 09:45:03.243439+00 0.00 1 2 \. -- -- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; 1 2025-11-18 05:59:33.764516+00 2 jimi 1 [{"added": {}}] 4 1 2 2025-11-18 05:59:53.386691+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1 3 2025-11-18 06:00:31.466055+00 1 瑞彩印花 1 [{"added": {}}] 7 1 4 2025-11-18 06:00:44.202936+00 1 左威 1 [{"added": {}}] 8 1 5 2025-11-18 06:15:00.809879+00 1 (印染厂生产)生产记录 1 [{"added": {}}] 31 1 6 2025-11-18 06:17:56.054095+00 2 (印染厂生产)生产订单详情 1 [{"added": {}}] 31 1 7 2025-11-18 06:18:26.252531+00 3 (印染厂生产)打印米数 1 [{"added": {}}] 31 1 8 2025-11-18 06:18:36.506619+00 4 (印染厂生产)设备 1 [{"added": {}}] 31 1 9 2025-11-18 06:18:51.697773+00 5 (印染厂生产)日期 1 [{"added": {}}] 31 1 10 2025-11-18 06:36:14.719914+00 6 (印染厂生产)提交人 1 [{"added": {}}] 31 1 11 2025-11-18 06:37:41.608909+00 7 (印染厂滚筒)生产记录 1 [{"added": {}}] 31 1 12 2025-11-18 06:37:53.386955+00 8 (印染厂滚筒)生产记录明细 1 [{"added": {}}] 31 1 13 2025-11-18 06:38:45.857424+00 9 (印染厂滚筒)生产单上传 1 [{"added": {}}] 31 1 14 2025-11-18 06:39:07.772669+00 10 (印染厂滚筒)温度转速 1 [{"added": {}}] 31 1 15 2025-11-18 06:41:38.316225+00 11 (印染厂滚筒)设备 1 [{"added": {}}] 31 1 16 2025-11-18 06:41:46.718822+00 12 (印染厂滚筒)日期 1 [{"added": {}}] 31 1 17 2025-11-18 06:41:52.441714+00 13 (印染厂滚筒)提交人 1 [{"added": {}}] 31 1 18 2025-11-18 06:42:24.13544+00 1 待打纸 1 [{"added": {}}] 29 1 19 2025-11-18 06:42:40.876823+00 2 待滚筒 1 [{"added": {}}] 29 1 20 2025-11-18 06:42:51.439077+00 3 待送货 1 [{"added": {}}] 29 1 21 2025-11-18 06:43:03.132987+00 4 送货完成 1 [{"added": {}}] 29 1 22 2025-11-18 06:43:09.832876+00 5 待开单 1 [{"added": {}}] 29 1 23 2025-11-18 06:43:24.578356+00 6 订单完结 1 [{"added": {}}] 29 1 24 2025-11-18 06:44:18.308781+00 1 工厂印染 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6253\\u7eb8 (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u6eda\\u7b52 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u9001\\u8d27 (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u9001\\u8d27\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u5f85\\u5f00\\u5355 (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5de5\\u5382\\u5370\\u67d3 -> \\u8ba2\\u5355\\u5b8c\\u7ed3 (6)"}}] 30 1 25 2025-11-18 07:03:18.962392+00 14 (印染厂开版画图)开版编号 1 [{"added": {}}] 31 1 26 2025-11-18 07:04:21.326366+00 15 (印染厂开版画图)时间 1 [{"added": {}}] 31 1 27 2025-11-18 07:04:40.367528+00 16 (印染厂开版画图)状态 1 [{"added": {}}] 31 1 28 2025-11-18 07:04:50.258605+00 17 设计师名称 1 [{"added": {}}] 31 1 29 2025-11-18 07:05:16.159648+00 17 (印染厂开版画图)设计师名称 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1 30 2025-11-18 07:06:26.838863+00 18 (印染厂开版画图)电脑位置 1 [{"added": {}}] 31 1 31 2025-11-18 07:06:40.088982+00 19 (印染厂开版画图)描述 1 [{"added": {}}] 31 1 32 2025-11-18 07:07:20.127062+00 20 (印染厂开版画图)附件 1 [{"added": {}}] 31 1 33 2025-11-18 07:07:31.519147+00 21 (印染厂开版画图)完成时间 1 [{"added": {}}] 31 1 34 2025-11-18 07:09:18.686085+00 15 (印染厂开版画图)开始时间 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u952e", "\\u53c2\\u6570\\u503c"]}}] 31 1 35 2025-11-18 07:10:11.825565+00 22 (印染厂开版画图)完成数量 1 [{"added": {}}] 31 1 36 2025-11-18 07:33:51.375829+00 23 test_param_001 3 31 1 37 2025-11-18 07:58:28.856338+00 24 test_param_002 3 31 1 38 2025-11-18 08:05:17.209889+00 51 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)开版编号 3 31 1 39 2025-11-18 08:05:17.20991+00 50 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)开始时间 3 31 1 40 2025-11-18 08:05:17.209918+00 49 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)状态 3 31 1 41 2025-11-18 08:05:17.209925+00 48 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)设计师名称 3 31 1 42 2025-11-18 08:05:17.209931+00 47 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)电脑位置 3 31 1 43 2025-11-18 08:05:17.209937+00 46 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)描述 3 31 1 44 2025-11-18 08:05:17.209943+00 45 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)附件 3 31 1 45 2025-11-18 08:05:17.209949+00 44 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)完成时间 3 31 1 46 2025-11-18 08:05:17.209955+00 43 (印染厂开版套样, 印染厂开版改图, 印染厂开版配色)完成数量 3 31 1 47 2025-11-18 08:08:01.156317+00 27 (印染厂开版调色)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 48 2025-11-18 08:08:06.425919+00 36 (印染厂开版找图)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 49 2025-11-18 08:08:10.055754+00 54 (印染厂开版套样)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 50 2025-11-18 08:08:14.833679+00 63 (印染厂开版配色)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 51 2025-11-18 08:08:18.605846+00 72 (印染厂开版改图)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 52 2025-11-18 08:08:51.909492+00 81 (印染厂开版P图)附件 2 [{"changed": {"fields": ["\\u662f\\u5426\\u56fe\\u7247\\u8def\\u5f84"]}}] 31 1 53 2025-11-18 08:12:38.122506+00 7 画图 1 [{"added": {}}] 29 1 54 2025-11-18 08:12:47.851618+00 8 调色 1 [{"added": {}}] 29 1 55 2025-11-18 08:13:08.01894+00 9 套样 1 [{"added": {}}] 29 1 56 2025-11-18 08:13:23.681664+00 10 改图 1 [{"added": {}}] 29 1 57 2025-11-18 08:13:31.884636+00 11 P图 1 [{"added": {}}] 29 1 58 2025-11-18 08:13:40.578384+00 12 配色 1 [{"added": {}}] 29 1 59 2025-11-18 08:13:49.183222+00 13 找图 1 [{"added": {}}] 29 1 60 2025-11-18 08:14:45.362321+00 12 配色 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 61 2025-11-18 08:15:12.813968+00 13 找图 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 62 2025-11-18 10:09:07.215232+00 2 开版 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u753b\\u56fe (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u8c03\\u8272 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u5957\\u6837 (3)"}}] 30 1 63 2025-11-18 10:13:04.721271+00 2 开版 2 [] 30 1 64 2025-11-18 10:13:23.903652+00 2 开版 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u627e\\u56fe (4)"}}] 30 1 65 2025-11-19 01:45:36.045179+00 8 待调色 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1 66 2025-11-19 01:45:39.684091+00 2 开版 2 [] 30 1 67 2025-11-19 02:13:50.033205+00 14 任务完成 1 [{"added": {}}] 29 1 68 2025-11-19 02:14:21.623907+00 2 开版 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248 -> \\u4efb\\u52a1\\u5b8c\\u6210 (5)"}}] 30 1 69 2025-11-19 08:12:47.374521+00 3 映雪 1 [{"added": {}}] 4 1 70 2025-11-19 08:14:04.719762+00 3 映雪 2 [{"changed": {"fields": ["User permissions"]}}] 4 1 71 2025-11-19 08:14:37.879969+00 2 映雪 1 [{"added": {}}] 8 1 72 2025-11-20 05:39:43.3355+00 1 设计师 1 [{"added": {}}] 3 1 73 2025-11-20 06:06:12.752762+00 1 设计师 3 3 1 74 2025-11-20 06:10:02.468122+00 2 设计师 1 [{"added": {}}] 36 1 75 2025-11-20 06:10:09.964149+00 1 左威 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1 76 2025-11-20 06:10:14.372307+00 2 映雪 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1 77 2025-11-20 06:42:36.741573+00 2 中大 1 [{"added": {}}] 17 1 78 2025-11-20 06:43:01.760474+00 3 中大(散) 1 [{"added": {}}] 17 1 79 2025-11-20 07:53:27.081642+00 1 出入库记录 1 - 仓库:中大 1 [{"added": {}}] 20 1 80 2025-11-20 07:53:51.401153+00 1 出入库记录 1 - 仓库:中大 3 20 1 81 2025-11-20 07:54:03.431107+00 2 出入库记录 2 - 仓库:中大 1 [{"added": {}}] 20 1 82 2025-11-20 07:54:28.235099+00 1 库存变动明细 1 - 记录ID: 2 1 [{"added": {}}] 21 1 83 2025-11-20 08:00:58.976268+00 3 出入库记录 3 - 仓库:中大 1 [{"added": {}}] 20 1 84 2025-11-20 08:01:23.823488+00 2 库存变动明细 2 - 记录ID: 3 1 [{"added": {}}] 21 1 85 2025-11-20 08:02:18.095284+00 4 出入库记录 4 - 仓库:中大(散) 1 [{"added": {}}] 20 1 86 2025-11-20 08:02:47.394849+00 3 库存变动明细 3 - 记录ID: 4 1 [{"added": {}}] 21 1 87 2025-11-24 03:12:45.251366+00 1 jimi's Profile 1 [{"added": {}}] 37 1 88 2025-11-24 03:13:33.181153+00 2 映雪's Profile 1 [{"added": {}}] 37 1 89 2025-11-24 03:16:35.368619+00 2 映雪's Profile 3 37 1 90 2025-11-24 06:15:31.40043+00 2 jimi 2 [{"changed": {"fields": ["User permissions", "Last login"]}}] 4 1 91 2025-11-24 09:16:10.732374+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1 92 2025-11-25 06:12:23.660069+00 2 jimi 2 [{"changed": {"fields": ["User permissions"]}}] 4 1 93 2025-11-25 09:20:41.470473+00 9 出入库记录 9 - 仓库:中大 1 [{"added": {}}] 20 1 94 2025-11-25 09:21:02.981897+00 25 库存变动明细 25 - 记录ID: 9 1 [{"added": {}}] 21 1 95 2025-11-25 09:28:40.652361+00 10 出入库记录 10 - 仓库:中大 1 [{"added": {}}] 20 1 96 2025-11-25 09:28:55.964661+00 26 库存变动明细 26 - 记录ID: 10 1 [{"added": {}}] 21 1 97 2025-11-25 10:12:01.371549+00 11 出入库记录 11 - 仓库:中大 1 [{"added": {}}] 20 1 98 2025-11-25 10:12:41.75256+00 27 库存变动明细 27 - 记录ID: 11 1 [{"added": {}}] 21 1 99 2025-11-25 10:12:59.643169+00 27 库存变动明细 27 - 记录ID: 11 2 [{"changed": {"fields": ["\\u6240\\u6d88\\u8017\\u7684\\u5165\\u5e93\\u660e\\u7ec6"]}}] 21 1 100 2025-11-27 08:08:36.5688+00 13 出入库记录 13 - 仓库:中大 3 20 1 101 2025-11-27 08:09:43.222937+00 3 采购订单 3 - 测试 3 38 1 102 2025-11-27 08:09:43.222962+00 2 采购订单 2 - 测试 3 38 1 103 2025-11-27 08:09:43.222973+00 1 采购订单 1 - 测试 3 38 1 104 2025-11-27 08:13:33.431382+00 4 采购订单 4 - 测试 1 [{"added": {}}] 38 1 105 2025-11-27 08:14:29.09261+00 1 PurchaseOrderItem object (1) 1 [{"added": {}}] 39 1 106 2025-11-27 08:32:59.524449+00 5 采购订单 5 - 测试 1 [{"added": {}}] 38 1 107 2025-11-27 08:35:24.030068+00 2 PurchaseOrderItem object (2) 1 [{"added": {}}] 39 1 108 2025-11-27 08:35:32.980517+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u7a7a\\u5dee\\u767e\\u5206\\u6bd4"]}}] 39 1 109 2025-11-27 08:48:57.608904+00 2 PurchaseOrderItem object (2) 2 [{"changed": {"fields": ["\\u6279\\u6b21\\u53f7"]}}] 39 1 110 2025-11-28 03:48:02.676475+00 8 采购订单 8 - 测试 1 [{"added": {}}] 38 1 111 2025-11-28 06:03:02.925051+00 1 瑞彩印花 - auto_create_stock_tasks 1 [{"added": {}}] 40 1 112 2025-11-28 06:03:10.044445+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c"]}}] 40 1 113 2025-11-28 06:04:43.402849+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1 114 2025-11-28 06:09:27.417148+00 1 瑞彩印花 - auto_create_stock_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u7c7b\\u578b"]}}] 40 1 115 2025-11-28 06:12:01.751881+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u9879"]}}] 40 1 116 2025-11-28 06:20:38.986097+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1 117 2025-11-28 08:30:04.435918+00 1 瑞彩印花 - auto_create_stock_change_tasks 2 [{"changed": {"fields": ["\\u8bbe\\u7f6e\\u503c(\\u5e03\\u5c14\\u503c)"]}}] 40 1 118 2025-12-01 09:19:58.758174+00 1 采购退货 1 - 测试 3 48 1 119 2025-12-03 05:16:57.767071+00 80019 PlateOrder-80019 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1 120 2025-12-03 05:17:18.085335+00 80018 PlateOrder-80018 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u8981\\u6c42\\u5b8c\\u6210\\u65f6\\u95f4", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1 121 2025-12-03 05:17:32.438309+00 80017 PlateOrder-80017 2 [{"changed": {"fields": ["\\u4e0b\\u7248\\u65f6\\u95f4", "\\u5f00\\u7248\\u56fe", "\\u5b8c\\u6210\\u65f6\\u95f4"]}}] 28 1 122 2025-12-03 05:17:47.71918+00 80014 PlateOrder-80014 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1 123 2025-12-03 05:18:07.777373+00 80013 PlateOrder-80013 2 [{"changed": {"fields": ["\\u5f00\\u7248\\u56fe"]}}] 28 1 124 2025-12-04 05:58:04.805118+00 14 StateFlowRecord object (14) 3 34 1 125 2025-12-04 05:58:04.805141+00 15 StateFlowRecord object (15) 3 34 1 126 2025-12-04 05:58:04.805155+00 16 StateFlowRecord object (16) 3 34 1 127 2025-12-04 05:58:04.805164+00 17 StateFlowRecord object (17) 3 34 1 128 2025-12-04 05:58:04.805173+00 18 StateFlowRecord object (18) 3 34 1 129 2025-12-04 05:58:04.805181+00 19 StateFlowRecord object (19) 3 34 1 130 2025-12-04 05:58:04.805189+00 20 StateFlowRecord object (20) 3 34 1 131 2025-12-04 05:58:51.397979+00 27 StateFlowRecord object (27) 3 34 1 132 2025-12-04 05:58:51.398+00 29 StateFlowRecord object (29) 3 34 1 133 2025-12-04 05:58:51.39801+00 30 StateFlowRecord object (30) 3 34 1 134 2025-12-04 05:58:51.398019+00 31 StateFlowRecord object (31) 3 34 1 135 2025-12-04 05:58:51.398028+00 32 StateFlowRecord object (32) 3 34 1 136 2025-12-04 05:58:51.398036+00 33 StateFlowRecord object (33) 3 34 1 137 2025-12-04 05:58:51.398044+00 34 StateFlowRecord object (34) 3 34 1 138 2025-12-04 05:58:51.398052+00 35 StateFlowRecord object (35) 3 34 1 139 2025-12-04 05:58:51.398059+00 36 StateFlowRecord object (36) 3 34 1 140 2025-12-04 05:58:51.398067+00 37 StateFlowRecord object (37) 3 34 1 141 2025-12-04 05:59:00.98459+00 43 StateFlowRecord object (43) 3 34 1 142 2025-12-04 05:59:00.984609+00 44 StateFlowRecord object (44) 3 34 1 143 2025-12-04 05:59:00.984619+00 45 StateFlowRecord object (45) 3 34 1 144 2025-12-04 05:59:00.984627+00 46 StateFlowRecord object (46) 3 34 1 145 2025-12-04 05:59:00.984635+00 47 StateFlowRecord object (47) 3 34 1 146 2025-12-04 05:59:00.984643+00 48 StateFlowRecord object (48) 3 34 1 147 2025-12-04 05:59:00.984651+00 49 StateFlowRecord object (49) 3 34 1 148 2025-12-04 05:59:00.984659+00 50 StateFlowRecord object (50) 3 34 1 149 2025-12-04 05:59:00.984668+00 51 StateFlowRecord object (51) 3 34 1 150 2025-12-04 05:59:00.984677+00 52 StateFlowRecord object (52) 3 34 1 151 2025-12-04 05:59:00.984685+00 53 StateFlowRecord object (53) 3 34 1 152 2025-12-04 05:59:00.984692+00 54 StateFlowRecord object (54) 3 34 1 153 2025-12-04 05:59:08.461159+00 13 StateFlowRecord object (13) 3 34 1 154 2025-12-04 06:00:00.766402+00 14 PlateOrder-14 3 28 1 155 2025-12-04 06:00:00.766438+00 13 PlateOrder-13 3 28 1 156 2025-12-04 06:00:00.766459+00 12 PlateOrder-12 3 28 1 157 2025-12-04 06:00:00.766478+00 11 PlateOrder-11 3 28 1 158 2025-12-04 06:00:00.766495+00 10 PlateOrder-10 3 28 1 159 2025-12-04 06:00:00.766512+00 9 PlateOrder-9 3 28 1 160 2025-12-04 06:00:00.766528+00 8 PlateOrder-8 3 28 1 161 2025-12-04 06:00:00.766545+00 7 PlateOrder-7 3 28 1 162 2025-12-04 06:00:00.766561+00 6 PlateOrder-6 3 28 1 163 2025-12-04 06:00:00.766577+00 5 PlateOrder-5 3 28 1 164 2025-12-04 06:00:00.766594+00 4 PlateOrder-4 3 28 1 165 2025-12-04 06:00:00.76661+00 3 PlateOrder-3 3 28 1 166 2025-12-04 06:00:00.766626+00 2 PlateOrder-2 3 28 1 167 2025-12-04 06:00:00.766642+00 1 PlateOrder-1 3 28 1 168 2025-12-04 06:00:07.792671+00 80021 PlateOrder-80021 3 28 1 169 2025-12-04 06:00:07.792692+00 80020 PlateOrder-80020 3 28 1 170 2025-12-04 06:00:07.792702+00 80019 PlateOrder-80019 3 28 1 171 2025-12-04 06:00:07.792711+00 80018 PlateOrder-80018 3 28 1 172 2025-12-04 06:00:07.792719+00 80017 PlateOrder-80017 3 28 1 173 2025-12-04 06:00:07.792727+00 80016 PlateOrder-80016 3 28 1 174 2025-12-04 06:00:07.792734+00 80015 PlateOrder-80015 3 28 1 175 2025-12-04 06:00:07.792742+00 80014 PlateOrder-80014 3 28 1 176 2025-12-04 06:00:07.792753+00 80013 PlateOrder-80013 3 28 1 177 2025-12-04 06:00:07.792761+00 80012 PlateOrder-80012 3 28 1 178 2025-12-04 06:00:07.792768+00 80011 PlateOrder-80011 3 28 1 179 2025-12-04 06:00:07.792777+00 80010 PlateOrder-80010 3 28 1 180 2025-12-04 06:00:07.792784+00 80009 PlateOrder-80009 3 28 1 181 2025-12-04 06:00:07.792794+00 80008 PlateOrder-80008 3 28 1 182 2025-12-04 06:00:07.792801+00 80007 PlateOrder-80007 3 28 1 183 2025-12-04 06:00:07.792808+00 80006 PlateOrder-80006 3 28 1 184 2025-12-04 06:00:07.792815+00 80005 PlateOrder-80005 3 28 1 185 2025-12-04 06:00:07.792823+00 80004 PlateOrder-80004 3 28 1 186 2025-12-04 06:00:07.79283+00 80003 PlateOrder-80003 3 28 1 187 2025-12-04 06:00:07.792838+00 80002 PlateOrder-80002 3 28 1 188 2025-12-04 06:00:07.792845+00 80001 PlateOrder-80001 3 28 1 189 2025-12-04 06:00:07.792852+00 80000 PlateOrder-80000 3 28 1 190 2025-12-04 06:03:10.813607+00 8 文华 1 [{"added": {}}] 4 1 191 2025-12-04 06:04:24.664673+00 2 跟单组 1 [{"added": {}}] 3 1 192 2025-12-04 06:04:46.38668+00 8 文华 2 [{"changed": {"fields": ["password"]}}] 4 1 193 2025-12-04 06:05:00.947287+00 8 文华 2 [{"changed": {"fields": ["Groups"]}}] 4 1 194 2025-12-04 06:05:26.803499+00 9 丹红 1 [{"added": {}}] 4 1 195 2025-12-04 06:06:13.059226+00 10 杨淑滢 1 [{"added": {}}] 4 1 196 2025-12-04 06:09:42.479841+00 11 翟中灿 1 [{"added": {}}] 4 1 197 2025-12-04 06:10:36.946745+00 12 赖晖怡 1 [{"added": {}}] 4 1 198 2025-12-04 06:11:08.588869+00 13 陈珍 1 [{"added": {}}] 4 1 199 2025-12-04 06:11:40.986802+00 14 陈紫莹 1 [{"added": {}}] 4 1 200 2025-12-04 06:12:00.816439+00 15 静云 1 [{"added": {}}] 4 1 201 2025-12-04 06:12:32.529988+00 3 下单组 1 [{"added": {}}] 3 1 202 2025-12-04 06:13:02.471908+00 16 蕙婷 1 [{"added": {}}] 4 1 203 2025-12-04 06:13:30.205956+00 17 丽容 1 [{"added": {}}] 4 1 204 2025-12-04 06:13:48.637582+00 18 春香 1 [{"added": {}}] 4 1 205 2025-12-04 06:14:51.277542+00 9 丹红 2 [{"changed": {"fields": ["Groups"]}}] 4 1 206 2025-12-04 06:15:27.905908+00 17 丽容 2 [{"changed": {"fields": ["Groups"]}}] 4 1 207 2025-12-04 06:15:54.180065+00 3 映雪 2 [{"changed": {"fields": ["Groups", "Last login"]}}] 4 1 208 2025-12-04 06:16:02.790159+00 18 春香 2 [{"changed": {"fields": ["Groups"]}}] 4 1 209 2025-12-04 06:16:10.327917+00 3 映雪 2 [{"changed": {"fields": ["Groups"]}}] 4 1 210 2025-12-04 06:16:24.469866+00 10 杨淑滢 2 [{"changed": {"fields": ["Groups"]}}] 4 1 211 2025-12-04 06:16:36.368117+00 11 翟中灿 2 [{"changed": {"fields": ["Groups"]}}] 4 1 212 2025-12-04 06:16:45.469882+00 16 蕙婷 2 [{"changed": {"fields": ["Groups"]}}] 4 1 213 2025-12-04 06:16:52.139717+00 12 赖晖怡 2 [{"changed": {"fields": ["Groups"]}}] 4 1 214 2025-12-04 06:17:06.104218+00 13 陈珍 2 [{"changed": {"fields": ["Groups"]}}] 4 1 215 2025-12-04 06:17:33.163198+00 14 陈紫莹 2 [{"changed": {"fields": ["Groups"]}}] 4 1 216 2025-12-04 06:17:53.370956+00 15 静云 2 [{"changed": {"fields": ["Groups"]}}] 4 1 217 2025-12-04 06:20:29.465374+00 7 丹红 1 [{"added": {}}] 8 1 218 2025-12-04 06:20:54.860085+00 8 丽容 1 [{"added": {}}] 8 1 219 2025-12-04 06:21:06.867101+00 8 下单员 1 [{"added": {}}] 36 1 220 2025-12-04 06:22:16.679552+00 8 丽容 2 [{"changed": {"fields": ["\\u804c\\u4f4d"]}}] 8 1 221 2025-12-04 06:22:59.122471+00 9 文华 1 [{"added": {}}] 8 1 222 2025-12-04 06:23:18.893544+00 10 春香 1 [{"added": {}}] 8 1 223 2025-12-04 06:27:04.006256+00 11 杨淑滢 1 [{"added": {}}] 8 1 224 2025-12-04 06:27:36.45504+00 12 翟中灿 1 [{"added": {}}] 8 1 225 2025-12-04 06:28:11.770886+00 13 蕙婷 1 [{"added": {}}] 8 1 226 2025-12-04 06:28:36.096217+00 14 赖晖怡 1 [{"added": {}}] 8 1 227 2025-12-04 06:28:57.226881+00 15 陈珍 1 [{"added": {}}] 8 1 228 2025-12-04 06:29:22.663647+00 16 陈紫莹 1 [{"added": {}}] 8 1 229 2025-12-04 06:29:45.849846+00 17 静云 1 [{"added": {}}] 8 1 230 2025-12-04 06:54:45.095545+00 7 画图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1 231 2025-12-04 06:55:42.049402+00 15 画图中 1 [{"added": {}}] 29 1 232 2025-12-04 06:55:54.341624+00 7 画图完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 233 2025-12-04 06:56:14.655015+00 8 调色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 234 2025-12-04 06:56:50.978761+00 16 调色中 1 [{"added": {}}] 29 1 235 2025-12-04 06:57:31.013443+00 2 开版() 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u4e2d (1)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u753b\\u56fe\\u5b8c\\u6210 (2)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u4e2d (3)", "fields": ["\\u8282\\u70b9"]}}, {"changed": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248() -> \\u8c03\\u8272\\u5b8c\\u6210 (4)", "fields": ["\\u8282\\u70b9"]}}] 30 1 236 2025-12-04 06:57:43.402147+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1 237 2025-12-04 07:02:16.913261+00 9 套样完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 238 2025-12-04 07:02:44.451281+00 17 套样中 1 [{"added": {}}] 29 1 239 2025-12-04 07:03:57.280047+00 3 开版(画图调色套样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u753b\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u4e2d (3)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u8c03\\u8272\\u5b8c\\u6210 (4)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u4e2d (5)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (6)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u753b\\u56fe\\u8c03\\u8272\\u5957\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (7)"}}] 30 1 240 2025-12-04 07:04:19.375715+00 2 开版(画图调色) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u63cf\\u8ff0"]}}] 30 1 241 2025-12-04 07:06:31.844288+00 4 套大货 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5957\\u5927\\u8d27 -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}] 30 1 242 2025-12-04 07:06:50.509983+00 4 开版(套大货) 2 [{"changed": {"fields": ["\\u6d41\\u7a0b\\u540d\\u79f0"]}}] 30 1 243 2025-12-04 07:07:54.028581+00 12 配色完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 244 2025-12-04 07:08:06.629038+00 18 配色中 1 [{"added": {}}] 29 1 245 2025-12-04 07:08:56.169378+00 5 开版(配色) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u914d\\u8272\\u5b8c\\u6210 (2)"}}] 30 1 246 2025-12-04 07:09:50.710113+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1 247 2025-12-04 07:10:17.792083+00 19 找图开发中 1 [{"added": {}}] 29 1 248 2025-12-04 07:10:26.257681+00 13 找图开发完成 2 [{"changed": {"fields": ["\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 249 2025-12-04 07:11:36.335277+00 6 开版(找图开发) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u627e\\u56fe\\u5f00\\u53d1\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u627e\\u56fe\\u5f00\\u53d1) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 250 2025-12-04 07:12:17.228521+00 11 P图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 251 2025-12-04 07:12:27.675944+00 20 P图中 1 [{"added": {}}] 29 1 252 2025-12-04 07:12:48.401405+00 7 开版(P图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> P\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(P\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 253 2025-12-04 07:13:02.229634+00 5 开版(配色) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u914d\\u8272) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 254 2025-12-04 07:13:14.232849+00 4 开版(套大货) 2 [{"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u5927\\u8d27) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 255 2025-12-04 07:14:24.47286+00 10 改图完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u5173\\u8054\\u53c2\\u6570"]}}] 29 1 256 2025-12-04 07:14:41.009372+00 21 改图中 1 [{"added": {}}] 29 1 257 2025-12-04 07:14:54.109794+00 7 开版(P图) 2 [] 30 1 258 2025-12-04 07:15:22.636805+00 8 开版(改图) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u6539\\u56fe\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u6539\\u56fe) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 259 2025-12-04 07:16:27.533182+00 9 开版(套米样) 1 [{"added": {}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u4e2d (1)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u5957\\u6837\\u5b8c\\u6210 (2)"}}, {"added": {"name": "\\u6d41\\u7a0b\\u8282\\u70b9\\u5173\\u8054", "object": "\\u5f00\\u7248(\\u5957\\u7c73\\u6837) -> \\u4efb\\u52a1\\u5b8c\\u6210 (3)"}}] 30 1 260 2025-12-04 07:17:26.866112+00 80022 PlateOrder-80022 3 28 1 261 2025-12-06 06:54:04.877873+00 1 打纸完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0", "\\u72b6\\u6001\\u63cf\\u8ff0"]}}] 29 1 262 2025-12-06 06:54:12.772317+00 2 滚筒完成 2 [{"changed": {"fields": ["\\u72b6\\u6001\\u540d\\u79f0"]}}] 29 1 263 2025-12-06 06:55:31.851207+00 4 (印染厂生产)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1 264 2025-12-06 06:55:51.373601+00 11 (印染厂滚筒)设备 2 [{"changed": {"fields": ["\\u53c2\\u6570\\u503c"]}}] 31 1 265 2025-12-08 13:28:06.193584+00 1 product @ 2025-12-08 13:15:03 3 54 1 266 2025-12-08 13:32:25.927941+00 3 product @ 2025-12-08 13:32:03 3 54 1 267 2025-12-08 13:32:25.927977+00 2 product @ 2025-12-08 13:30:03 3 54 1 268 2025-12-08 14:15:42.813801+00 51 customer @ 2025-12-08 14:12:01 3 54 1 269 2025-12-08 14:15:42.813831+00 50 product @ 2025-12-08 14:12:00 3 54 1 270 2025-12-08 14:15:42.813845+00 49 product @ 2025-12-08 14:11:01 3 54 1 271 2025-12-08 14:15:42.813857+00 48 customer @ 2025-12-08 14:11:00 3 54 1 272 2025-12-08 14:15:42.813868+00 47 customer @ 2025-12-08 14:10:01 3 54 1 273 2025-12-08 14:15:42.813878+00 46 product @ 2025-12-08 14:10:00 3 54 1 274 2025-12-08 14:15:42.813888+00 45 product @ 2025-12-08 14:09:01 3 54 1 275 2025-12-08 14:15:42.813897+00 44 customer @ 2025-12-08 14:09:00 3 54 1 276 2025-12-08 14:15:42.813906+00 43 customer @ 2025-12-08 14:08:01 3 54 1 277 2025-12-08 14:15:42.813915+00 42 product @ 2025-12-08 14:08:00 3 54 1 278 2025-12-08 14:15:42.813924+00 41 product @ 2025-12-08 14:07:01 3 54 1 279 2025-12-08 14:15:42.813933+00 40 customer @ 2025-12-08 14:07:00 3 54 1 280 2025-12-08 14:15:42.813942+00 39 customer @ 2025-12-08 14:06:01 3 54 1 281 2025-12-08 14:15:42.81395+00 38 product @ 2025-12-08 14:06:00 3 54 1 282 2025-12-08 14:15:42.81396+00 37 product @ 2025-12-08 14:05:01 3 54 1 283 2025-12-08 14:15:42.813973+00 36 customer @ 2025-12-08 14:05:01 3 54 1 284 2025-12-08 14:15:42.813981+00 35 product @ 2025-12-08 14:04:01 3 54 1 285 2025-12-08 14:15:42.81399+00 34 product @ 2025-12-08 14:03:00 3 54 1 286 2025-12-08 14:15:42.813999+00 33 product @ 2025-12-08 14:02:00 3 54 1 287 2025-12-08 14:15:42.814008+00 32 product @ 2025-12-08 14:01:00 3 54 1 288 2025-12-08 14:15:42.81402+00 31 product @ 2025-12-08 14:00:00 3 54 1 289 2025-12-08 14:15:42.814028+00 30 product @ 2025-12-08 13:59:00 3 54 1 290 2025-12-08 14:15:42.814037+00 29 product @ 2025-12-08 13:58:00 3 54 1 291 2025-12-08 14:15:42.814045+00 28 product @ 2025-12-08 13:57:00 3 54 1 292 2025-12-08 14:15:42.814054+00 27 product @ 2025-12-08 13:56:00 3 54 1 293 2025-12-08 14:15:42.814062+00 26 product @ 2025-12-08 13:55:00 3 54 1 294 2025-12-08 14:15:42.814073+00 25 product @ 2025-12-08 13:54:00 3 54 1 295 2025-12-08 14:15:42.814082+00 24 product @ 2025-12-08 13:53:00 3 54 1 296 2025-12-08 14:15:42.814091+00 23 product @ 2025-12-08 13:52:00 3 54 1 297 2025-12-08 14:15:42.8141+00 22 product @ 2025-12-08 13:51:00 3 54 1 298 2025-12-08 14:15:42.814108+00 21 product @ 2025-12-08 13:50:00 3 54 1 299 2025-12-08 14:15:42.814117+00 20 product @ 2025-12-08 13:49:00 3 54 1 300 2025-12-08 14:15:42.814126+00 19 product @ 2025-12-08 13:48:00 3 54 1 301 2025-12-08 14:15:42.814134+00 18 product @ 2025-12-08 13:47:00 3 54 1 302 2025-12-08 14:15:42.814143+00 17 product @ 2025-12-08 13:46:00 3 54 1 303 2025-12-08 14:15:42.814152+00 16 product @ 2025-12-08 13:45:00 3 54 1 304 2025-12-08 14:15:42.814162+00 15 product @ 2025-12-08 13:44:00 3 54 1 305 2025-12-08 14:15:42.814171+00 14 product @ 2025-12-08 13:43:00 3 54 1 306 2025-12-08 14:15:42.814179+00 13 product @ 2025-12-08 13:42:00 3 54 1 307 2025-12-08 14:15:42.814188+00 12 product @ 2025-12-08 13:41:00 3 54 1 308 2025-12-08 14:15:42.814197+00 11 product @ 2025-12-08 13:40:00 3 54 1 309 2025-12-08 14:15:42.814205+00 10 product @ 2025-12-08 13:39:00 3 54 1 310 2025-12-08 14:15:42.814214+00 9 product @ 2025-12-08 13:38:00 3 54 1 311 2025-12-08 14:15:42.814223+00 8 product @ 2025-12-08 13:37:00 3 54 1 312 2025-12-08 14:15:42.814231+00 7 product @ 2025-12-08 13:36:00 3 54 1 313 2025-12-08 14:15:42.81424+00 6 product @ 2025-12-08 13:35:00 3 54 1 314 2025-12-08 14:15:42.814248+00 5 product @ 2025-12-08 13:34:00 3 54 1 315 2025-12-08 14:15:42.814257+00 4 product @ 2025-12-08 13:33:01 3 54 1 316 2025-12-08 14:20:31.584043+00 67 product @ 2025-12-08 14:20:01 3 54 1 317 2025-12-08 14:20:31.584072+00 66 customer @ 2025-12-08 14:20:00 3 54 1 318 2025-12-08 14:20:31.584086+00 65 customer @ 2025-12-08 14:19:01 3 54 1 319 2025-12-08 14:20:31.584097+00 64 product @ 2025-12-08 14:19:00 3 54 1 320 2025-12-08 14:20:31.584109+00 63 product @ 2025-12-08 14:18:02 3 54 1 321 2025-12-08 14:20:31.584119+00 62 customer @ 2025-12-08 14:18:01 3 54 1 322 2025-12-08 14:20:31.584129+00 61 product @ 2025-12-08 14:17:00 3 54 1 323 2025-12-08 14:20:31.584139+00 60 customer @ 2025-12-08 14:17:00 3 54 1 324 2025-12-08 14:20:31.584148+00 59 customer @ 2025-12-08 14:16:00 3 54 1 325 2025-12-08 14:20:31.584158+00 58 product @ 2025-12-08 14:16:00 3 54 1 326 2025-12-08 14:20:31.584167+00 57 product @ 2025-12-08 14:15:01 3 54 1 327 2025-12-08 14:20:31.584177+00 56 customer @ 2025-12-08 14:15:01 3 54 1 328 2025-12-08 14:20:31.584186+00 55 customer @ 2025-12-08 14:14:01 3 54 1 329 2025-12-08 14:20:31.584195+00 54 product @ 2025-12-08 14:14:00 3 54 1 330 2025-12-08 14:20:31.584204+00 53 product @ 2025-12-08 14:13:01 3 54 1 331 2025-12-08 14:20:31.584214+00 52 customer @ 2025-12-08 14:13:00 3 54 1 332 2025-12-09 02:28:21.654948+00 1 布料-四面弹 3 18 1 333 2025-12-09 02:28:38.728497+00 3 布料-牛奶丝 3 18 1 334 2025-12-09 02:28:58.28926+00 9 布料-测试 3 18 1 335 2025-12-09 06:09:36.885337+00 99 customer @ 2025-12-09 06:00:01 3 54 1 336 2025-12-09 06:09:36.885367+00 98 product @ 2025-12-09 06:00:00 3 54 1 337 2025-12-09 06:09:36.885381+00 97 product @ 2025-12-09 05:00:01 3 54 1 338 2025-12-09 06:09:36.885392+00 96 customer @ 2025-12-09 05:00:00 3 54 1 339 2025-12-09 06:09:36.885404+00 95 customer @ 2025-12-09 04:00:01 3 54 1 340 2025-12-09 06:09:36.885415+00 94 product @ 2025-12-09 04:00:01 3 54 1 341 2025-12-09 06:09:36.885424+00 93 product @ 2025-12-09 03:00:01 3 54 1 342 2025-12-09 06:09:36.885434+00 92 customer @ 2025-12-09 03:00:00 3 54 1 343 2025-12-09 06:09:36.885444+00 91 customer @ 2025-12-09 02:00:01 3 54 1 344 2025-12-09 06:09:36.885454+00 90 product @ 2025-12-09 02:00:00 3 54 1 345 2025-12-09 06:09:36.885464+00 89 product @ 2025-12-09 01:00:01 3 54 1 346 2025-12-09 06:09:36.885474+00 88 customer @ 2025-12-09 01:00:00 3 54 1 347 2025-12-09 06:09:36.885483+00 87 customer @ 2025-12-09 00:00:01 3 54 1 348 2025-12-09 06:09:36.885493+00 86 product @ 2025-12-09 00:00:00 3 54 1 349 2025-12-09 06:09:36.885502+00 85 product @ 2025-12-08 23:00:01 3 54 1 350 2025-12-09 06:09:36.885511+00 84 customer @ 2025-12-08 23:00:00 3 54 1 351 2025-12-09 06:09:36.88552+00 83 customer @ 2025-12-08 22:00:01 3 54 1 352 2025-12-09 06:09:36.885529+00 82 product @ 2025-12-08 22:00:00 3 54 1 353 2025-12-09 06:09:36.885538+00 81 product @ 2025-12-08 21:00:01 3 54 1 354 2025-12-09 06:09:36.885548+00 80 customer @ 2025-12-08 21:00:00 3 54 1 355 2025-12-09 06:09:36.885557+00 79 customer @ 2025-12-08 20:00:02 3 54 1 356 2025-12-09 06:09:36.885566+00 78 product @ 2025-12-08 20:00:01 3 54 1 357 2025-12-09 06:09:36.885574+00 77 product @ 2025-12-08 19:00:01 3 54 1 358 2025-12-09 06:09:36.885584+00 76 customer @ 2025-12-08 19:00:00 3 54 1 359 2025-12-09 06:09:36.885593+00 75 customer @ 2025-12-08 18:00:01 3 54 1 360 2025-12-09 06:09:36.885602+00 74 product @ 2025-12-08 18:00:00 3 54 1 361 2025-12-09 06:09:36.885611+00 73 product @ 2025-12-08 17:00:01 3 54 1 362 2025-12-09 06:09:36.88562+00 72 customer @ 2025-12-08 17:00:00 3 54 1 363 2025-12-09 06:09:36.885629+00 71 customer @ 2025-12-08 16:00:02 3 54 1 364 2025-12-09 06:09:36.885638+00 70 product @ 2025-12-08 16:00:01 3 54 1 365 2025-12-09 06:09:36.885646+00 69 product @ 2025-12-08 15:00:02 3 54 1 366 2025-12-09 06:09:36.88566+00 68 customer @ 2025-12-08 15:00:01 3 54 1 367 2025-12-09 08:16:09.958074+00 103 customer @ 2025-12-09 08:00:01 3 54 1 368 2025-12-09 08:16:09.958107+00 102 product @ 2025-12-09 08:00:00 3 54 1 369 2025-12-09 08:16:09.95812+00 101 product @ 2025-12-09 07:00:02 3 54 1 370 2025-12-09 08:16:09.958131+00 100 customer @ 2025-12-09 07:00:00 3 54 1 371 2025-12-09 08:23:16.419138+00 1 StateFlowRecord object (21) - 6 个参数 (2025-11-18 10:14:30.398822+00:00) 3 35 1 372 2025-12-09 08:23:16.419162+00 2 StateFlowRecord object (25) - 1 个参数 (2025-11-18 10:24:33.487439+00:00) 3 35 1 373 2025-12-09 08:23:16.419175+00 3 StateFlowRecord object (39) - 6 个参数 (2025-11-18 15:34:46.837366+00:00) 3 35 1 374 2025-12-09 08:23:16.419185+00 4 StateFlowRecord object (40) - 2 个参数 (2025-11-18 15:35:08.178013+00:00) 3 35 1 375 2025-12-09 08:23:16.419195+00 5 StateFlowRecord object (42) - 6 个参数 (2025-11-19 01:43:35.226252+00:00) 3 35 1 376 2025-12-09 08:23:16.419204+00 13 StateFlowRecord object (55) - 2 个参数 (2025-12-05 08:56:58.295611+00:00) 3 35 1 377 2025-12-09 08:23:16.419214+00 14 StateFlowRecord object (56) - 2 个参数 (2025-12-05 08:57:36.374859+00:00) 3 35 1 378 2025-12-09 08:23:16.419223+00 15 StateFlowRecord object (57) - 2 个参数 (2025-12-05 09:03:19.150563+00:00) 3 35 1 379 2025-12-09 08:23:16.419232+00 16 StateFlowRecord object (58) - 2 个参数 (2025-12-05 09:03:35.002555+00:00) 3 35 1 380 2025-12-09 08:23:16.419241+00 17 StateFlowRecord object (59) - 2 个参数 (2025-12-05 09:04:11.512787+00:00) 3 35 1 381 2025-12-09 08:23:16.419251+00 18 StateFlowRecord object (60) - 1 个参数 (2025-12-05 09:04:26.358712+00:00) 3 35 1 382 2025-12-09 08:23:16.41926+00 19 StateFlowRecord object (61) - 2 个参数 (2025-12-05 09:04:40.449255+00:00) 3 35 1 383 2025-12-09 08:23:16.419269+00 20 StateFlowRecord object (62) - 5 个参数 (2025-12-05 09:05:22.256594+00:00) 3 35 1 384 2025-12-09 08:23:16.419278+00 21 StateFlowRecord object (63) - 6 个参数 (2025-12-05 09:31:42.686942+00:00) 3 35 1 385 2025-12-09 08:23:16.419287+00 22 StateFlowRecord object (64) - 1 个参数 (2025-12-05 10:26:54.877702+00:00) 3 35 1 386 2025-12-09 08:23:16.419295+00 23 StateFlowRecord object (67) - 2 个参数 (2025-12-05 10:34:49.203883+00:00) 3 35 1 387 2025-12-09 08:23:16.419304+00 24 StateFlowRecord object (68) - 2 个参数 (2025-12-08 03:51:02.319158+00:00) 3 35 1 388 2025-12-09 08:23:16.419313+00 25 StateFlowRecord object (69) - 2 个参数 (2025-12-08 03:52:08.830258+00:00) 3 35 1 389 2025-12-09 08:23:16.419322+00 26 StateFlowRecord object (70) - 1 个参数 (2025-12-08 03:52:23.456653+00:00) 3 35 1 390 2025-12-09 08:23:16.419331+00 27 StateFlowRecord object (73) - 2 个参数 (2025-12-08 05:26:55.955282+00:00) 3 35 1 391 2025-12-09 08:23:16.41934+00 28 StateFlowRecord object (74) - 1 个参数 (2025-12-08 05:29:38.153245+00:00) 3 35 1 392 2025-12-09 08:23:16.419349+00 29 StateFlowRecord object (75) - 2 个参数 (2025-12-08 06:41:47.910500+00:00) 3 35 1 393 2025-12-09 08:23:16.419359+00 30 StateFlowRecord object (76) - 2 个参数 (2025-12-08 06:43:50.475055+00:00) 3 35 1 394 2025-12-09 08:23:16.419368+00 31 StateFlowRecord object (77) - 3 个参数 (2025-12-08 06:46:51.421915+00:00) 3 35 1 395 2025-12-09 08:23:16.419377+00 32 StateFlowRecord object (78) - 2 个参数 (2025-12-08 06:46:56.534156+00:00) 3 35 1 396 2025-12-09 08:23:16.419386+00 33 StateFlowRecord object (79) - 2 个参数 (2025-12-08 06:51:06.112247+00:00) 3 35 1 397 2025-12-09 08:23:16.419395+00 34 StateFlowRecord object (80) - 2 个参数 (2025-12-08 06:51:39.575310+00:00) 3 35 1 398 2025-12-09 08:23:16.419404+00 35 StateFlowRecord object (81) - 1 个参数 (2025-12-08 06:54:28.918639+00:00) 3 35 1 399 2025-12-09 08:23:16.419412+00 36 StateFlowRecord object (82) - 2 个参数 (2025-12-08 06:55:02.476710+00:00) 3 35 1 400 2025-12-09 08:23:16.419421+00 37 StateFlowRecord object (83) - 1 个参数 (2025-12-08 06:55:07.370408+00:00) 3 35 1 401 2025-12-09 08:23:16.41943+00 38 StateFlowRecord object (84) - 2 个参数 (2025-12-08 06:55:12.160907+00:00) 3 35 1 402 2025-12-09 08:23:16.419439+00 39 StateFlowRecord object (85) - 1 个参数 (2025-12-08 06:55:15.541374+00:00) 3 35 1 403 2025-12-09 08:23:16.419447+00 40 StateFlowRecord object (87) - 2 个参数 (2025-12-08 09:00:32.460872+00:00) 3 35 1 404 2025-12-09 08:23:16.419456+00 41 StateFlowRecord object (88) - 2 个参数 (2025-12-08 09:31:51.845092+00:00) 3 35 1 405 2025-12-09 08:23:16.419465+00 42 StateFlowRecord object (89) - 1 个参数 (2025-12-08 09:32:10.617212+00:00) 3 35 1 406 2025-12-09 08:23:16.419474+00 43 StateFlowRecord object (90) - 2 个参数 (2025-12-09 06:56:48.322722+00:00) 3 35 1 407 2025-12-09 08:23:16.419483+00 44 StateFlowRecord object (91) - 2 个参数 (2025-12-09 06:56:57.852352+00:00) 3 35 1 408 2025-12-09 08:23:22.920443+00 1 StateFlowRecord object (1) 3 34 1 409 2025-12-09 08:23:22.920463+00 2 StateFlowRecord object (2) 3 34 1 410 2025-12-09 08:23:22.920473+00 3 StateFlowRecord object (3) 3 34 1 411 2025-12-09 08:23:22.920481+00 4 StateFlowRecord object (4) 3 34 1 412 2025-12-09 08:23:22.920489+00 5 StateFlowRecord object (5) 3 34 1 413 2025-12-09 08:23:22.920497+00 6 StateFlowRecord object (6) 3 34 1 414 2025-12-09 08:23:22.920504+00 7 StateFlowRecord object (7) 3 34 1 415 2025-12-09 08:23:22.920512+00 8 StateFlowRecord object (8) 3 34 1 416 2025-12-09 08:23:22.920519+00 9 StateFlowRecord object (9) 3 34 1 417 2025-12-09 08:23:22.920527+00 10 StateFlowRecord object (10) 3 34 1 418 2025-12-09 08:23:22.920534+00 11 StateFlowRecord object (11) 3 34 1 419 2025-12-09 08:23:22.920542+00 12 StateFlowRecord object (12) 3 34 1 420 2025-12-09 08:23:22.92055+00 21 StateFlowRecord object (21) 3 34 1 421 2025-12-09 08:23:22.920557+00 22 StateFlowRecord object (22) 3 34 1 422 2025-12-09 08:23:22.920565+00 23 StateFlowRecord object (23) 3 34 1 423 2025-12-09 08:23:22.920573+00 24 StateFlowRecord object (24) 3 34 1 424 2025-12-09 08:23:22.920581+00 25 StateFlowRecord object (25) 3 34 1 425 2025-12-09 08:23:22.920589+00 26 StateFlowRecord object (26) 3 34 1 426 2025-12-09 08:23:22.920596+00 28 StateFlowRecord object (28) 3 34 1 427 2025-12-09 08:23:22.920604+00 38 StateFlowRecord object (38) 3 34 1 428 2025-12-09 08:23:22.920612+00 39 StateFlowRecord object (39) 3 34 1 429 2025-12-09 08:23:22.92062+00 40 StateFlowRecord object (40) 3 34 1 430 2025-12-09 08:23:22.920627+00 41 StateFlowRecord object (41) 3 34 1 431 2025-12-09 08:23:22.920634+00 42 StateFlowRecord object (42) 3 34 1 432 2025-12-09 08:23:22.920642+00 55 StateFlowRecord object (55) 3 34 1 433 2025-12-09 08:23:22.920649+00 56 StateFlowRecord object (56) 3 34 1 434 2025-12-09 08:23:22.920657+00 57 StateFlowRecord object (57) 3 34 1 435 2025-12-09 08:23:22.920664+00 58 StateFlowRecord object (58) 3 34 1 436 2025-12-09 08:23:22.920671+00 59 StateFlowRecord object (59) 3 34 1 437 2025-12-09 08:23:22.920679+00 60 StateFlowRecord object (60) 3 34 1 438 2025-12-09 08:23:22.920686+00 61 StateFlowRecord object (61) 3 34 1 439 2025-12-09 08:23:22.920693+00 62 StateFlowRecord object (62) 3 34 1 440 2025-12-09 08:23:22.9207+00 63 StateFlowRecord object (63) 3 34 1 441 2025-12-09 08:23:22.92071+00 64 StateFlowRecord object (64) 3 34 1 442 2025-12-09 08:23:22.920718+00 65 StateFlowRecord object (65) 3 34 1 443 2025-12-09 08:23:22.92073+00 66 StateFlowRecord object (66) 3 34 1 444 2025-12-09 08:23:22.920737+00 67 StateFlowRecord object (67) 3 34 1 445 2025-12-09 08:23:22.920745+00 68 StateFlowRecord object (68) 3 34 1 446 2025-12-09 08:23:22.920752+00 69 StateFlowRecord object (69) 3 34 1 447 2025-12-09 08:23:22.92076+00 70 StateFlowRecord object (70) 3 34 1 448 2025-12-09 08:23:22.920767+00 71 StateFlowRecord object (71) 3 34 1 449 2025-12-09 08:23:22.920775+00 72 StateFlowRecord object (72) 3 34 1 450 2025-12-09 08:23:22.920783+00 73 StateFlowRecord object (73) 3 34 1 451 2025-12-09 08:23:22.920791+00 74 StateFlowRecord object (74) 3 34 1 452 2025-12-09 08:23:22.920798+00 75 StateFlowRecord object (75) 3 34 1 453 2025-12-09 08:23:22.920806+00 76 StateFlowRecord object (76) 3 34 1 454 2025-12-09 08:23:22.920814+00 77 StateFlowRecord object (77) 3 34 1 455 2025-12-09 08:23:22.920821+00 78 StateFlowRecord object (78) 3 34 1 456 2025-12-09 08:23:22.920829+00 79 StateFlowRecord object (79) 3 34 1 457 2025-12-09 08:23:22.920836+00 80 StateFlowRecord object (80) 3 34 1 458 2025-12-09 08:23:22.920843+00 81 StateFlowRecord object (81) 3 34 1 459 2025-12-09 08:23:22.920851+00 82 StateFlowRecord object (82) 3 34 1 460 2025-12-09 08:23:22.920858+00 83 StateFlowRecord object (83) 3 34 1 461 2025-12-09 08:23:22.920866+00 84 StateFlowRecord object (84) 3 34 1 462 2025-12-09 08:23:22.920873+00 85 StateFlowRecord object (85) 3 34 1 463 2025-12-09 08:23:22.92088+00 86 StateFlowRecord object (86) 3 34 1 464 2025-12-09 08:23:22.920888+00 87 StateFlowRecord object (87) 3 34 1 465 2025-12-09 08:23:22.920895+00 88 StateFlowRecord object (88) 3 34 1 466 2025-12-09 08:23:22.920902+00 89 StateFlowRecord object (89) 3 34 1 467 2025-12-09 08:23:22.92091+00 90 StateFlowRecord object (90) 3 34 1 468 2025-12-09 08:23:22.920917+00 91 StateFlowRecord object (91) 3 34 1 \. -- -- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.django_content_type (id, app_label, model) FROM stdin; 1 admin logentry 2 auth permission 3 auth group 4 auth user 5 contenttypes contenttype 6 sessions session 7 basic_info merchant 8 basic_info employee 9 basic_info deviceinfo 10 basic_info customer 11 basic_info bankaccount 12 basic_info productcategory 13 basic_info product 14 basic_info supplier 15 basic_info vehicletype 16 basic_info vehicletransportrecord 17 basic_info warehouse 18 basic_info quickinput 19 stock purchaseorder 20 stock stockchangerecord 21 stock stockchangedetail 22 stock stocksnapshot 23 stock inventory 24 stock stockfreeze 25 api_v1 uploadedfile 26 printing printingorder 27 printing printingjob 28 printing plateorder 29 stateflow state 30 stateflow process 31 stateflow stateparameter 32 stateflow processnode 33 stateflow businessobject 34 stateflow stateflowrecord 35 stateflow statelogparameterrecord 36 basic_info employeetype 37 basic_info userprofile 38 business purchaseorder 39 business purchaseorderitem 40 basic_info merchantsetting 41 business salesorder 42 business supplierbalance 43 business receiptorder 44 business customerbalance 45 business paymentorder 46 business salesorderitem 47 business balancechangerecord 48 business purchasereturnorder 49 business purchasereturnorderitem 50 business salesreturnorder 51 business salesreturnorderitem 52 stock transferorder 53 stock transferorderitem 54 api_v1 datasync \. -- -- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.django_migrations (id, app, name, applied) FROM stdin; 1 contenttypes 0001_initial 2025-11-18 05:57:57.606096+00 2 auth 0001_initial 2025-11-18 05:57:57.649887+00 3 admin 0001_initial 2025-11-18 05:57:57.661912+00 4 admin 0002_logentry_remove_auto_add 2025-11-18 05:57:57.665247+00 5 admin 0003_logentry_add_action_flag_choices 2025-11-18 05:57:57.668422+00 6 api_v1 0001_initial 2025-11-18 05:57:57.678425+00 7 contenttypes 0002_remove_content_type_name 2025-11-18 05:57:57.685116+00 8 auth 0002_alter_permission_name_max_length 2025-11-18 05:57:57.688996+00 9 auth 0003_alter_user_email_max_length 2025-11-18 05:57:57.692915+00 10 auth 0004_alter_user_username_opts 2025-11-18 05:57:57.696222+00 11 auth 0005_alter_user_last_login_null 2025-11-18 05:57:57.700191+00 12 auth 0006_require_contenttypes_0002 2025-11-18 05:57:57.701563+00 13 auth 0007_alter_validators_add_error_messages 2025-11-18 05:57:57.705386+00 14 auth 0008_alter_user_username_max_length 2025-11-18 05:57:57.713231+00 15 auth 0009_alter_user_last_name_max_length 2025-11-18 05:57:57.718913+00 16 auth 0010_alter_group_name_max_length 2025-11-18 05:57:57.724371+00 17 auth 0011_update_proxy_permissions 2025-11-18 05:57:57.728075+00 18 auth 0012_alter_user_first_name_max_length 2025-11-18 05:57:57.731791+00 19 basic_info 0001_initial 2025-11-18 05:57:57.853129+00 20 basic_info 0002_quickinput 2025-11-18 05:57:57.858206+00 21 basic_info 0003_alter_quickinput_unique_together 2025-11-18 05:57:57.861506+00 22 basic_info 0004_customer_visible_employees 2025-11-18 05:57:57.878024+00 23 basic_info 0005_customer_created_by 2025-11-18 05:57:57.887911+00 24 basic_info 0006_alter_product_merchant 2025-11-18 05:57:57.895034+00 25 basic_info 0007_warehouse_mode 2025-11-18 05:57:57.901277+00 26 basic_info 0008_merchant_auto_complete_stock_change 2025-11-18 05:57:57.90704+00 27 basic_info 0009_product_minimum_quantity 2025-11-18 05:57:57.912464+00 28 stateflow 0001_initial 2025-11-18 05:57:57.926089+00 29 stateflow 0002_remove_state_data_stateparameter 2025-11-18 05:57:57.9356+00 30 stateflow 0003_alter_process_options_alter_state_options_and_more 2025-11-18 05:57:57.951752+00 31 stateflow 0004_remove_state_previous 2025-11-18 05:57:57.9565+00 32 stateflow 0005_alter_state_description_and_more 2025-11-18 05:57:57.967543+00 33 stateflow 0006_remove_process_state_nodes_processnode_and_more 2025-11-18 05:57:57.983497+00 34 stateflow 0007_alter_process_current_state 2025-11-18 05:57:57.989058+00 35 stateflow 0008_remove_process_current_state_order 2025-11-18 05:57:58.005641+00 36 stateflow 0009_remove_order_current_state_orderstatelog 2025-11-18 05:57:58.032921+00 37 stateflow 0010_remove_orderstatelog_notes_and_more 2025-11-18 05:57:58.069827+00 38 stateflow 0011_rename_order_to_business_object 2025-11-18 05:57:58.150215+00 39 stateflow 0012_alter_businessobject_content_type_and_more 2025-11-18 05:57:58.17801+00 40 stateflow 0013_alter_stateflowrecord_unique_together 2025-11-18 05:57:58.187343+00 41 stateflow 0014_alter_process_options 2025-11-18 05:57:58.190803+00 42 stateflow 0015_stateparameter_attachment 2025-11-18 05:57:58.193874+00 43 printing 0001_initial 2025-11-18 05:57:58.231485+00 44 printing 0002_alter_printingorder_craft_and_more 2025-11-18 05:57:58.237799+00 45 printing 0003_remove_printingjob_status 2025-11-18 05:57:58.248458+00 46 printing 0004_printingorder_is_invalid 2025-11-18 05:57:58.252566+00 47 printing 0005_alter_printingorder_options 2025-11-18 05:57:58.256683+00 48 printing 0006_printingjob_business_object_printingorder_process 2025-11-18 05:57:58.282396+00 49 printing 0007_alter_printingjob_description_and_more 2025-11-18 05:57:58.295621+00 50 printing 0008_plateorder 2025-11-18 05:57:58.324365+00 51 printing 0009_remove_plateorder_development_status 2025-11-18 05:57:58.331238+00 52 printing 0010_remove_plateorder_plate_code 2025-11-18 05:57:58.338116+00 53 printing 0011_alter_plateorder_options_plateorder_is_invalid 2025-11-18 05:57:58.350452+00 54 printing 0012_plateorder_process 2025-11-18 05:57:58.357239+00 55 sessions 0001_initial 2025-11-18 05:57:58.365556+00 56 stateflow 0016_alter_stateparameter_key_alter_stateparameter_value 2025-11-18 05:57:58.370806+00 57 stateflow 0017_state_parameter_many_to_many 2025-11-18 05:57:58.427689+00 58 stateflow 0018_remove_stateparameter_name 2025-11-18 05:57:58.430207+00 59 stateflow 0019_stateparameter_is_required 2025-11-18 05:57:58.433063+00 60 stateflow 0020_stateparameter_is_image_path 2025-11-18 05:57:58.435565+00 61 stateflow 0021_statelogparameterrecord 2025-11-18 05:57:58.454384+00 62 stock 0001_initial 2025-11-18 05:57:58.565539+00 63 stock 0002_stockfreeze 2025-11-18 05:57:58.605245+00 64 stock 0003_remove_inventory_minimum_quantity 2025-11-18 05:57:58.614748+00 65 printing 0013_plateorder_fabric_source_alter_plateorder_process 2025-11-20 03:24:40.935777+00 66 printing 0014_auto_20251120_1144 2025-11-20 03:47:32.344205+00 67 basic_info 0010_warehouse_type 2025-11-20 05:11:33.321558+00 68 basic_info 0011_remove_employee_job_type_employeetype_and_more 2025-11-20 05:56:35.088569+00 69 printing 0015_plateorder_designer 2025-11-20 06:48:57.234756+00 70 api_v1 0002_alter_uploadedfile_path 2025-11-24 03:07:15.613802+00 71 basic_info 0012_userprofile 2025-11-24 03:07:15.640816+00 72 stock 0004_alter_stockchangerecord_source_type 2025-11-24 03:07:15.658993+00 73 basic_info 0013_alter_customer_options 2025-11-24 09:06:44.27194+00 74 stock 0005_stockchangedetail_consume_fields 2025-11-24 09:06:44.307805+00 75 business 0001_initial 2025-11-25 06:08:12.742536+00 76 stock 0006_remove_purchaseorder 2025-11-25 06:08:12.745336+00 77 printing 0016_plateorder_image_name 2025-11-27 06:53:13.195655+00 78 business 0002_remove_purchaseorder_order_date_purchaseorder_kind_and_more 2025-11-27 07:29:19.575686+00 79 printing 0017_alter_plateorder_image_name 2025-11-27 07:29:19.582348+00 80 business 0003_purchaseorder_status 2025-11-27 07:34:05.728213+00 81 business 0004_remove_purchaseorder_total_amount_and_more 2025-11-27 08:08:14.545561+00 82 business 0005_alter_purchaseorder_operator_and_more 2025-11-27 08:10:45.002847+00 83 business 0006_remove_purchaseorderitem_total_amount 2025-11-27 08:18:28.948263+00 84 business 0007_alter_purchaseorderitem_batch_number 2025-11-27 08:45:44.548428+00 85 printing 0018_plateorder_plate_image_to_jsonfield 2025-11-28 01:31:22.225727+00 86 printing 0019_alter_plateorder_plate_image 2025-11-28 01:31:22.259774+00 87 printing 0020_alter_plateorder_required_completion_date 2025-11-28 02:57:43.677396+00 88 printing 0021_plateorder_print_count_printingorder_print_count 2025-11-28 03:29:26.824386+00 89 basic_info 0014_merchantsetting 2025-11-28 06:00:48.6332+00 90 basic_info 0015_remove_merchantsetting_val_merchantsetting_val_bool_and_more 2025-11-28 06:04:30.020931+00 91 basic_info 0016_merchantsetting_type 2025-11-28 06:06:20.05325+00 92 business 0008_alter_purchaseorderitem_quantity 2025-11-28 09:27:18.505876+00 93 business 0009_purchaseorderitem_spec 2025-11-28 09:32:22.794473+00 94 business 0010_salesorder_salesorderitem 2025-11-30 14:17:50.013527+00 95 business 0011_paymentorder_receiptorder 2025-11-30 14:17:50.058623+00 96 business 0012_customerbalance_supplierbalance 2025-11-30 14:17:50.100554+00 97 business 0013_balancechangerecord 2025-12-01 06:49:56.024129+00 98 business 0014_alter_balancechangerecord_source_type_and_more 2025-12-01 09:15:19.861344+00 99 business 0015_payment_receipt_bank_and_markup 2025-12-03 06:43:26.49912+00 100 stock 0007_transferorder 2025-12-03 06:43:26.593432+00 101 business 0016_payment_receipt_discount 2025-12-03 08:05:46.351422+00 102 basic_info 0017_alter_customer_mobile 2025-12-08 10:35:53.761423+00 103 stock 0008_alter_stockchangerecord_source_type 2025-12-08 10:35:53.776033+00 104 api_v1 0003_datasync 2025-12-08 13:01:15.59395+00 105 basic_info 0018_product_from_mdy 2025-12-08 13:01:15.609827+00 106 basic_info 0019_customer_mdy_fields 2025-12-08 14:04:35.885183+00 107 basic_info 0020_product_mdy_image_url 2025-12-09 06:34:08.937873+00 108 basic_info 0021_alter_product_unit 2025-12-09 07:51:47.175277+00 109 stock 0009_alter_stockchangedetail_unit_alter_stockfreeze_unit_and_more 2025-12-09 07:51:47.238667+00 110 basic_info 0022_product_pieces_product_segment_size 2025-12-09 07:56:00.952585+00 \. -- -- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.django_session (session_key, session_data, expire_date) FROM stdin; pbsoimfkt3qhp2caalbpzzfmnoia4ary .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLuTn:9mpos00LpzQqh1_HZUVfRUBLxHwEHsQ2fAFkpQ7KweM 2025-12-04 02:33:03.066594+00 8gc0uchw3x0wjvymx47gub7tzic41m65 .eJzNnEtzozgQx7_KlM8zCS89mOPe97inzVZKCClmgoHlkans1nz3RcJ2QGnbQrCFL4Njt1ro16KlvyTm390z69r9c9eI-jlLd993_u7r-LuE8VdRqB_SH6x4KR94WbR1ljwok4fjr83D72Uq8t-OthMHe9bs-9KCYo4pTrDAPMYkpQkjYYSkCDH3YxmEMSIhRRyHSRCT_ipEGHoxw9QTqR8g5fQgiq7pff3579OuYAfxtPv-5Wn39NRFwmf9BQXM7y-YBeqCCCJPu6-9Rdbf82ArWf1Fsm88q3kuhh8P6s4b9TPgNqXKXxIK5S9EyMJfV-fDb48sPWTFY9I1WSGa5rFi730D2rJORf042LI0_cPKvDc8FklqwVJed4fk0j27ofj19cvi5v_6S_0sslT96nteADmVKO4vMY1T7VRX0d-tutAk8dRfchnohOWs4ILv-_4qasF7hBa8oVLbYF-FkBmLEKwpTpQ3EUfqgiJsVL8gCE1XVXkm6iNWiwCYJTaCvwiJST0CqkAJC9RtBiFZDzfvmrY8zMFtltgEtysLkzMCfGMU4vWyd58RRFZZZ--J-SZoZzffZIoBp7HPVaBoGqRrjIhd3afbRlgPiRP7TajOBmBSJXZO-9vEngocERyvxjhrxWEuZ13mXljPwWKSpzeriD3PG_4iK_buWrRdXczt4-NSd0B_NhqTfjyzipW7_wjnzIfALHl3wXB-InwPqglp3wgFa4yaDctFY9v1R8bbQJ7bdJOnb-d0tc79AcyyTxsF7oXykj4MacxpFetmdY1wXkr_VOQOuC_N5z6kJ69VsWaXn5_MwWJ3Fwb3pyAyh1soFUVCJqNWpJG6EOYlS1fJxnBQIpWGoxz7DnFuWtYKmZc_z6Erkx-Ct5dDfLHEnOi6cQERu7Ew4wlpL5QKlSppQHQVIdfKGRFvEWf9qWJ1X1N7LZtdLLEJZ1cWJmdIjY1vrL9IX8voMA4Wca7qkqtMZAH4ZLoJWdfWm2QhtTX1TQOqoka8JF7eg6077j1QtW-5SRVSUZd99_fuk1B96aFojd5b9KPAjB6sze-M9xwmBv0A0kskSPQT0g-5H_VSibmRl5bubhjdOC9fzin41hbH7aKbxOj_IGdGDJoGXat31RipTzNjMypydzFxj0JgpjFouR6FOtaYpOrpJIluDIk8G7lwZXY6dXtaDZeeXKxJqjor2qx4OX_4USaXAw1a28fYlc5N0K5EzBiDO12Tmuiw1-MowD_xu6G-L9jfAXF7DiZj8LGRWkGSIKIrMs77XGQN-MN4G7qOBEy62PwCWuJARCrFQWg06PYo0sNUbDOFvaqhmV6HibjmwMmQ0AMbaf5prYQ1GX_OClmqeVja8Zb3Aer7__uVhZLLZWbE1JENqKPdeJghhFTI1Pe8EN5mPYfxPbCd4cpgC2mRSOjnGYk4XJPtT1aLfdk11841QNYb8XVjYPANIbUBHE9ZBPZ05saK69l4G6xzm27yhLQACqU-4kZCNkx0hyMTgcva5YjUm9hnvV1bs6Kpyrq9eQjtZtFNkLvSMclDezQoQvpc23Ehz4u4jnGUjvI9oQvHP3Go8vJdiPa9sksdkwLbMF-FixkBcCozrWmtXH1COIv3XbB2ztSg9hmODh5PtvXaWesqicUyugehTiUUbSNaPfm2gWyW2Ya1Iw-TNaiBpr7X6sknbrMg3wVd554M7jtNzmiuRvd0_tSK7tl4G7qOBEy60G4TkkLldBwS7VvqSSPysdMhhQ9gf3cZf82KqrPrvSPzbQg7UjAJQ3qPoIDC0VNfYr0lwN0OhXwAVK-69KpOZrndwDe234T4OlRM_pAmPOZ6FHur5o9UvGVc6I82wEfmm_B2pWAQjiBVeJyZU0nxmrPnkxSxnTyP7bdh7MjBZAye44uk9k31hJymwXm8XcQ4YcUr47zsLKcZY_tNGLtyMBmbe0IBODgOaygo0fN0grUc1fu3y_aEfI1Djy8fCzULt_5K_jr8a_fe2aUCM4LqCAfivAyIGVtQD43u1hVvVrzpNyKvLGSbhtvgtG6rSQ5UN5MbQ36iD-aoRcZF3VTWQvxz9TSHabo5yzmtN8mCymbqe_Km5bK94U9PdypaluUz0sGxwD0wd-RiRuB2gj-qAOJjl1F1hLApWNXsy89DatHl-bYwrZto4qPmF9CaHk1YpC96bwdFlGtVRYdl3Ai4_UbV2ewzkaffWN7eHDvHugFugJI2cITUfwqglc_l5-DDxL7nr9DoGwLpWkONsCDwkJjgwFmz5uSk-cbLlyvIXuqyq24wG2w2h2bVUBOZb3ZtUEZKioY0pLVpEKvzKtSTNq9NX91599TUJ5KBPo-AqH4RWUiXrM-q7PnNf-yqvGSpSK8vBkDGM8LnSAPcr3QjYEYRykfHA3w4xFr8Rp7uZYmeZi6bcB_xpaxlzXvBb3I-G27CeB0OJnHzrQ_Ui6rdr_8AMtsFIg:1vSukV:MekZma-lHogpxX4Nwl2aFlnfDpMUNmXWFWvlkFldMgg 2025-12-23 10:15:15.12487+00 7yutj5xzsu9xicbn3bi2ziy5zzoamenm .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vR2cF:ALiU6I7qk7sa_bZ2x4j_a1UrNTFVr0u4Sud5wJYQB1M 2025-12-18 06:14:59.242571+00 busil84fm9qlr5gqtynnzy9dwm9wwyke .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vRmAj:ZVsbUx7fYZAk8tZnV3X1zfGnquZAf9k6Sg3Nz4s-vHI 2025-12-20 06:53:37.989407+00 0qv1nnfydmil7knzisuz8cbfc9a92fqv .eJzNnE1zozgQhv_KlM8zCV9CYo573-OeNlspIaSYCQaWj0xlt-a_ryTsGJS2LQRb-DI4ptVCT4uWXkmef3fPtO_2z33Lm-c8233f-buv4-9Syl55qW5kP2j5Uj2wquyaPH1QJg_Hu-3D71XGi9-OthMHe9ruZWlOYhaTOI15zJIYZySlOIyQ4GHM_EQEYYJwSBCLwzRIsLxyHoZeQmPi8cwPkHJ64GXfSl9__vu0K-mBP-2-f3naPT31EfepvKCA-vIS00BdEEb4afdVWuTymQdbQZsvgn5jecMKPtw8qCdv1W3AbUaUvzTkyl-IkIW_vimGe480O-TlY9q3ecnb9rGm77IBXdVkvHkcbGmW_WFlLg2PRdKG04w1_SG99MxuKH59_bK4-b_-Urd5nqm7vucFkFOBEnlJSJJpp7oK-bTqQtLUU3-JZaBTWtCScbaX_ZU3nEmEFryhUttgX4WQGYsQrClJlTeeROqCotiofkEQ2r6ui5w3R6wWATBLbAR_ERKTegRUgVIaqMcMQrwebta3XXWYg9sssQluVxYmZwT4jlEYr5e9ZUbgeW2dvSfmm6Cd3XyTaQw4TXymAkWyIFtjROwbmW5bbj0kTuw3oTobgEkV2zmVjxl7KnCYs3g1xnnHD3M56zL3wnoOFpM8uVlF4nne8BdesXc3vOubcm4fH5e6A_qz0Zj0k5lVrNz9RzhnvgRmybsLhvMb4XtQTUj7RihYY9RsacFb264_Mt4G8tymmzx9O6erde4zMMs-bRS4F8pL-jCkMadVrJvVNcJ5Kf1TkTvgvjSf-5CevFbFml1-fjIHi91dGNzfgsgcbqFUFHGRjlqRReqCqZcuXSUbw0GpUBqOsNh3iHPb0Y6Lovr5Eboq_cFZdznEF0vMia4bFxCxGwsznpD2QhlXqZIEWFcRMq2cEfYWcdafatrImrpr2exiiU04u7IwOUNqbPxg8iJ8LaPDJFjEuW4qpjKRBeCT6SZkXVtvkoXU1tQ3CYiKGvbSZHkPtu6490DVvuUmVUhFXfYtn93HofrSQ9EavbeUo8CMHqzN74z3HCYG_QDSSzhI9Rsih9xzvUTEzMhLS3c3jG5cVC8fKfjWFsftopvE6P8gZ0YMmgZdq3fVGKlPM2MzKnJ3MXGPQmCmMWi5HoU61jHO1NuJU90YHHk2cuHK7HTq9rQaLjyxWJPUTV52efny8eFHlV4ONGhtH2NXOjdBuxIxYwzudE1qIsNej6MA_8Tvhvq-YH8HxO05mIzB10ZoBYmDiKzIuJC5yBrw2Xgbuo4ETLqx-QW0xIGwUIoDk2jQ7VGkh6nEZgp7VUNTvQ4TMc2B4SGhBzbS_NNaCW1z9pyXolLzsKxnHZMBkv3__cpCyeUyM2LqyAbU0W48zBBCKmTqe14Ib7Oew_ge2M5wZbCFtEjE9fuMeBKuyfYnbfi-6ttr5xog6434ujEw-IaQ2gCOpywCezpzY8X1w3gbrHObbvKEtAAKhT7ihkM6THSHIxOBy9rliNQb3-fSrmto2dZV0908hHaz6CbIXemY5KE9GhQhfa7tuJDnRUzHOMpG-R6TheMfP9RF9c55917bpY5JgW2Yr8LFjAA4lZnWtFauPiGcxfsuWDtnalD7DEcHjyfbpHbWukrEfBndA1enEsqu5Z2efNtANstsw9qRh8ka1EBT32v15BO3WZDvgq5zTwb3nSZnNFejezp_akX3w3gbuo4ETLrQbhMSXOX0OMTat9CTRuTHTocUzsD-7nP2mpd1b9d7R-bbEHakYBKG9B5GAYGjp76M9ZYAczsUcgaofuoiVZ3IC7uBb2y_CfF1qJj8IU14zPUo8VbNHxl_yxnXH22Aj8w34e1KwSAcQarwODMngsRrzp5PUsR28jy234axIweTMXiOLxLaN9ETcpIFH-PtIsYpLV8pY1VvOc0Y22_C2JWDydjcEwrAwXFYQ0GpnqfjWMtRvX-7bE_I1zj0-HJeqFm49Vex1-Ffu9-dXSowI6iOcCDOy4CYsQX10OhpXfHm5Zv-ReSVhWzTcBuc1m01yYHqZvJgyE_1wRy1yLiom4qG83-unuYwTTdnOaf1JllQ2Ux9T35puWxv-NPbnfGO5sWMdHAscA_MHbmYEbid4I8qAPuxy6g6QtiWtG731echteyLYluY1k008RHzC2hNj6Q00he9t4MiwrSqIsMybgQ8fqvqbPc5L7JvtOhujp1j3QA3QEkbOELqPwXQyufye3A2se_5KzT6hkC61lAjLAg8JMYZcNasPTlpv7Hq5Qqyl6bq6xvMBpvNoVk11ETmm10blJGCoCENaW0aJOq8CvGEzc-mr-68e2rqE4lAn0dARP8QmQuXrE_r_PnNf-zroqIZz64vBkDGM8LnSAPcr3QjYEYxNL-QU_zdr_8AQkCSCw:1vS5CT:Zz_ECducG7SE_Qz-wWsiMLrCEfmabVWzkYIq-LvG3Es 2025-12-21 03:12:41.40412+00 nie1ws9ihz1c2tlxhfbz47rmvgtv4p6c .eJzNmklz6ygQgP9KyucsWkCgd5z7HOc0mUqxxkpkSaMlrzKv8t8HUBaZYBshv5IvwUFNA1-Lphv0a_NAhn77MHSifSj45scm3lxP6yhhz6LSD_gTqR7rW1ZXfVvQWy1y-_60u_2z5qL84112T8GWdFvVWuCMZTijmchYniGOKUEpgFKkGYtzmaQ5RCmGLEtpkiNVCpGmUU4yHAkeJ1Ar3Ylq6JSuv3_dbyqyE_ebH1f3m_v7AYiYqAImJFZFRhJdQATR_eZaSRRqzKOsJO2VJDesaFkpxoc7PfJOP_6mNo8ZUgXmCdf6Ugg99A1tOT67I3xXVHd06IpKdN1dM7RMwRB1y0V7NwoTzv_yk1eS721oKwhn7bCj7lGHwni7vloM4O0f_VgUXD-NoyixK2JHL0BIOhkwB7pAJKLLrLfPAVKZ66mwLA4wYteTXsiy_vlpnpo-CdYfNuPBFnMMGcbFiTiMhW0-4NANuYBaW4JMFylL9GghihZxNr8a0qqe-mPL5WCLVTiHsrA5Q4fu6cBUIeNMV6Z5sohz09ZMexsPwB-iq5ANnb1NNjupGydYWw1FNF_-Bnu_uJdA1X_mNlU0S7cae4xSXRlBcI63t1K7wIw32IhfGO85TGz62NETSqhZIWrL_eoXy4xZfklVUqoLKIPCG-s1LuvHTxfcCqZiF-8V4Gi6io1-BznbYvnMfs9qI_1rpm0mTS7OJsFWiCPbLKlrS0-NrVXKolcnomYyCETZsuh0X21GU2HmEEn9Xxbp_5BgPp3Y1m7aouqL6vHzx1NNDxvaKe1v41A6J0GHErFtnJzsSWWiiV9240X7RHp3QP4CiPtzsBk7l42MIrNwAT4j41L5Im_AX8Lr0A0kYNMFdoUrh4ZI6owDYWA2Jg6A2aZynxD2aA5N9AEABMxwYGh06IlPav7tIIR0BXsoKlnrOIwPrGfKQOr9fz1yGHK4zQybBrJx5tFhPGwTurKQfd3zTHia9RzGl8B2hiqLrSsXAcKsZyjy9Jxsf5JWbOuhO5J8OKVX4hvGwObryjaAzOmoWyuFEIQELhNU3dA0ZXH0mNQhvA7WuVO3ebpyAZhKbLahlIyBrol-aRJydjkh9SK2hZLrW1J1Td32p7KA001XQR5KxyKfRC7dAGrdHwd5EWDGxoBP_D3CC_c_sWvK-lWI_rXxcx17DdZhfhYutgWcocx-T-fy1R8IZ_G-CNahnjpx5j7aQSltSYrOSXcn9GVV5RdmfAqvQzeQgE3XmfWMUf656bKh6-ud53b4KbwO3UACNl3nTZMU2s9kKTK6pQlkYJwFXct-Aft3KNhzUTWD39s7EV-HcCAFm7DrjgnBBLutpyszc0zNwq7BvwDqzwJUpiGL0s8ZT-VXIX4eKjZ_Vw6IKTWnXnl0Vv_BxUvBhPnpA3wivgrvUAo2YVcm-B4tYomzc0Z0H-Gxb0A3lV-HcSAHm7ErG8yBNLqxCRIxTz7320WMKameCWP14BlmTOVXYRzKwWac2ymjy3W_5_WQmtgRZSZFMneKy-4pYoPD7C9fhwcLr6Nq9jz-1WHgozh9GeVuMMOogXBcnJcBsUyZOjOgyWhD8RbVi6j6o4ertuA6OL3napNzZjd7A4MxNR-L6IOvRa-pbIX47-gXBrbo6iznzN4m68xs9nWn3BQJMYHRovvKb6ubi54U5Qx38N7gEpgHcrEt4Mx-9nsaswAUZyG76gRhV5Gm29bft9RqKMt1YXpP0cYH7QrXSR-mBJjC3DdAgJnJqvB4tAgcw-90n922ECW_IWV_cu-c5g3uCejUxm0h_QG1yXwOr4MvEf83_wyTPpEgHZuobRZXgK5Wi-P7p-5DSXfD6scjyB7bemhOMBtlVofmNVEbGbYrnGmkxHB0QyY3TXL9DQWOJF8WCwIR6dAHyMTckUOMTKUM8fqkKR5e4ruhKWvCBT9-GOASnmG-QBrOO7QwApbRgP3lUapC_M3b_4NBlrY:1vNnsc:A97uezglXSc0c9SooQ51Ya2whoGFmD_LkLGlbrTqyKk 2025-12-09 07:54:30.634534+00 ntf30dd3of18gsyba1risn3yscoj0t6y .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLId5:n8_xdalAfSPyiCi7SJPZLr1CI1IGxTC-WpvvN_z9NHQ 2025-12-02 10:08:07.630045+00 8g6qqs5ssg2zi3dlvoj8dmvskek2nues .eJzNmktz4ygQgP9Kyuck1guB5rj3Pe5pPZXiaSuRJa0emcpO5b8vIMeRCbER8pZ8CQ40DXzNoxv0e_WE-2731Le8ecrZ6scqXN2P8wimL7xUBewZl9vqkVZl1-TkUYk8Hkrbxz8rxos_DrInCna43cnaHKU0RSlJeUqzFDJEMIwTIHic0jATUZwBGCNA05hEGZQp53EcZDhFAWdhBJTSPS_7Vur6-_dmVeI936x-3G1Wm02fcEFkAiIcyiRliUogDshmdS8lctnnQVbg5k7gB5o3tOBD4V71vFXFFrUh_lQLiMhkgmgaOqjtm2IoW2O2z8t12-GOi6L6tSZ9m5e8bSvyzGm3HsQxY3-51pCyh1qk4ZjRpt-T7wbgx-X9_u5aLN5_qmKeM1UaBkFk0Q0YB0pbBHUTMY1UbwEMZnHWv2rcyJY63rhwNmoswtmXhck5tuged0wmIkxVZpxFszjXTUXl5HQB_CG6CFnf0Ztkk4u6UYSU1WBAsvkz2Hni3gJV95GbVMEk3bLvIYxVZgCSa8zeUp4CE2awFr8x3lOYmPRTS0swInqFBMGo00ik1NiXZCYhKgECgPnzvai2xy244bRqmPMKsFRdxEb_BznTYnBiu1e1kfo10TajKjdnE38rIDMjtB3psba1dHrV6oREDwYmQTrPOz1Vm5KY6zEEQv2XBuo_yKlLI6a16yYvu7zcHn88V-R7Q1ul3W3sS-ciaF8ihknD4GJLMpaJdKbX2vrCT66Rc_7qN_I3QNydg8nYumxEEOiFm6ArMi7kXuQM-FN4GbqeBEy6kblLZbbGoFARB0SJPphYkuhjKnNxYc_G0Bgq7QnVHCgcNvTIJTQ3rUhwm9OnvBSV8sNYTzsqDSTn_9v3xjxTZ4JNPdlY42g_HqZNbVHIqe5pJrzMegrjW2A7QZXB1haLJFyvZ8Cz-Jpsf-GG76q-PRN8WKUX4uvHwORrizYSkZFBt1IKQOLjuIxQtX1dF_m5bd4mvAzWqUM3edpiARALpI-hGA-OrvZ-SeRzdzki9cp3uZTrGly2ddV0l6KAy1UXQe5LxySPbLoToHR_XORda6fg-7qo3rjbRnEUXoauJwGTrtVNUctDaotieE26e97QHS7dDrmj8DJ0PQkYdCNrXDP4mNemS_u2q_aOm_FReBm6ngRMuvaIhquNPo2h1i30MQrC1CeiGQH7p8_pS17WvdvsHYkvQ9iTgknY9pKECNExfxZcdf4y_ppTrn-6EB6JL0LYl4JJ2PaGdDgrkUDpKH6BaGY89-EcvNVuB9xYfhnGnhxMxrY4LkuE1o0SfTvJouN-P4sxweULprTqHY-5sfwijH05mIyB6VjYJvYhqgFE-y4w1Q6iflGZd0sbahx6f_sMnWZexlf0Zfir3JAtv3wVb68wwaiecGyc5wExbWuNfUa99cWbl6-87M5eLZmCy-B0HqtJzhq7nHQMhEQ_lauwf9Y0FQ3n_559XzVFF2c5ZfQmWWvccqo7ZjqJsA5DZ73WfFndjHc4LyZsB4cKt8Dck4thgdga25y2NHihMEx9TtURwrbEdburvh6pZV8Uy8J0HqKJzxa8ZCEdvMmIbbzfYQZuda_i5_bSO4xNeJE5OnnoJk_zASay3YAighOd6NtrkCCqoyQ0XFQlln63qs12l_OCPeCiu-iLQBCh8x6U-mLTbjn1QedaFX9vr08RdytdYdC2x37HgZp2sjnjcvexfE3TfihpH2i1PYNs21R9fYHZILM4NKeBmshM3zq2B40IDNu6_kwpytSLPAoEm_u2GChXMhGRfnEFCOpM4XOK4jp_eg3XfV1UmHEm8uKMv2ITnmA-TxrWFxk_AqbRoJmRvv9cvf8He7uCiw:1vLYyA:AD0u5F-mNfMwOsOq-xELhPG46cKCAbcOeMXQfrwkvng 2025-12-03 03:34:58.965151+00 \. -- -- Data for Name: printing_plateorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.printing_plateorder (id, created_at, updated_at, design_code, plate_type, plate_date, plate_method, plate_image, plate_notes, reprint_reason, urgency_level, area, default_address, is_mark_frame, drawing_rating, color_matching_rating, sample_rating, difficulty_rating, required_completion_date, completion_date, fabric, width, style_name, production_method, sample_meter, required_sample_meters, approval_result, is_ordered, customer_feedback, business_object_id, customer_id, merchandiser_id, salesperson_id, is_invalid, process, fabric_source, designer_id, image_name, print_count) FROM stdin; \. -- -- Data for Name: printing_printingjob; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.printing_printingjob (id, created_at, updated_at, quantity, unit, size, pieces, description, product_id, printing_order_id, business_object_id) FROM stdin; \. -- -- Data for Name: printing_printingorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.printing_printingorder (id, created_at, updated_at, fabric, width, is_urgent, area, address, fabric_source, is_fabric_received, craft, description, outgoing_date, curve, new_curve, "position", printing_warn, rolling_warn, production_warn, customer_id, is_invalid, process_id, print_count) FROM stdin; \. -- -- Data for Name: state_flow_record; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.state_flow_record (id, created_at, updated_at, completed_at, completed_by_id, business_object_id, state_id, cancelled_at, is_cancelled) FROM stdin; \. -- -- Data for Name: state_log_parameter_record; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.state_log_parameter_record (id, updated_at, parameters, created_at, remark, state_log_id) FROM stdin; \. -- -- Data for Name: stateflow_process; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stateflow_process (id, created_at, updated_at, name, description) FROM stdin; 1 2025-11-18 06:44:18.307114+00 2025-11-18 06:44:18.307121+00 工厂印染 工厂印染 3 2025-12-04 07:03:57.272169+00 2025-12-04 07:03:57.272177+00 开版(画图调色套样) 2 2025-11-18 10:09:07.214001+00 2025-12-04 07:04:19.375345+00 开版(画图调色) 6 2025-12-04 07:11:36.334139+00 2025-12-04 07:11:36.334145+00 开版(找图开发) 5 2025-12-04 07:08:56.16833+00 2025-12-04 07:13:02.228385+00 开版(配色) 4 2025-12-04 07:06:31.843279+00 2025-12-04 07:13:14.232075+00 开版(套大货) 7 2025-12-04 07:12:48.400253+00 2025-12-04 07:14:54.109411+00 开版(P图) 8 2025-12-04 07:15:22.63566+00 2025-12-04 07:15:22.635666+00 开版(改图) 9 2025-12-04 07:16:27.532064+00 2025-12-04 07:16:27.532071+00 开版(套米样) \. -- -- Data for Name: stateflow_processnode; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stateflow_processnode (id, created_at, updated_at, "order", process_id, state_id) FROM stdin; 1 2025-11-18 06:44:18.3076+00 2025-11-18 06:44:18.307604+00 1 1 1 2 2025-11-18 06:44:18.308102+00 2025-11-18 06:44:18.308105+00 2 1 2 3 2025-11-18 06:44:18.308263+00 2025-11-18 06:44:18.308265+00 3 1 3 4 2025-11-18 06:44:18.308391+00 2025-11-18 06:44:18.308393+00 4 1 4 5 2025-11-18 06:44:18.308509+00 2025-11-18 06:44:18.308511+00 5 1 5 6 2025-11-18 06:44:18.308622+00 2025-11-18 06:44:18.308624+00 6 1 6 11 2025-11-19 02:14:21.623562+00 2025-11-19 02:14:21.623566+00 5 2 14 7 2025-11-18 10:09:07.214444+00 2025-12-04 06:57:31.012523+00 1 2 15 8 2025-11-18 10:09:07.214896+00 2025-12-04 06:57:31.012822+00 2 2 7 9 2025-11-18 10:09:07.215051+00 2025-12-04 06:57:31.013023+00 3 2 16 10 2025-11-18 10:13:23.903321+00 2025-12-04 06:57:31.013206+00 4 2 8 12 2025-12-04 07:03:57.278537+00 2025-12-04 07:03:57.278541+00 1 3 15 13 2025-12-04 07:03:57.279177+00 2025-12-04 07:03:57.27918+00 2 3 7 14 2025-12-04 07:03:57.279345+00 2025-12-04 07:03:57.279349+00 3 3 16 15 2025-12-04 07:03:57.279488+00 2025-12-04 07:03:57.279491+00 4 3 8 16 2025-12-04 07:03:57.279616+00 2025-12-04 07:03:57.279619+00 5 3 17 17 2025-12-04 07:03:57.27975+00 2025-12-04 07:03:57.279754+00 6 3 9 18 2025-12-04 07:03:57.279875+00 2025-12-04 07:03:57.279878+00 7 3 14 19 2025-12-04 07:06:31.84368+00 2025-12-04 07:06:31.843683+00 1 4 17 20 2025-12-04 07:06:31.844099+00 2025-12-04 07:06:31.844102+00 2 4 9 21 2025-12-04 07:08:56.168732+00 2025-12-04 07:08:56.168736+00 1 5 18 22 2025-12-04 07:08:56.169178+00 2025-12-04 07:08:56.169182+00 2 5 12 23 2025-12-04 07:11:36.334536+00 2025-12-04 07:11:36.334539+00 1 6 19 24 2025-12-04 07:11:36.334954+00 2025-12-04 07:11:36.334957+00 2 6 13 25 2025-12-04 07:11:36.335098+00 2025-12-04 07:11:36.335101+00 3 6 14 26 2025-12-04 07:12:48.400679+00 2025-12-04 07:12:48.400682+00 1 7 20 27 2025-12-04 07:12:48.401098+00 2025-12-04 07:12:48.401101+00 2 7 11 28 2025-12-04 07:12:48.401242+00 2025-12-04 07:12:48.401245+00 3 7 14 29 2025-12-04 07:13:02.229032+00 2025-12-04 07:13:02.22904+00 3 5 14 30 2025-12-04 07:13:14.232479+00 2025-12-04 07:13:14.232483+00 3 4 14 31 2025-12-04 07:15:22.636063+00 2025-12-04 07:15:22.636067+00 1 8 21 32 2025-12-04 07:15:22.636478+00 2025-12-04 07:15:22.636481+00 2 8 10 33 2025-12-04 07:15:22.63662+00 2025-12-04 07:15:22.636623+00 3 8 14 34 2025-12-04 07:16:27.532452+00 2025-12-04 07:16:27.532455+00 1 9 17 35 2025-12-04 07:16:27.53287+00 2025-12-04 07:16:27.532873+00 2 9 9 36 2025-12-04 07:16:27.533013+00 2025-12-04 07:16:27.533016+00 3 9 14 \. -- -- Data for Name: stateflow_state; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stateflow_state (id, created_at, updated_at, name, description) FROM stdin; 3 2025-11-18 06:42:51.437497+00 2025-11-18 06:42:51.437505+00 待送货 待送货 4 2025-11-18 06:43:03.131203+00 2025-11-18 06:43:03.13121+00 送货完成 送货完成 5 2025-11-18 06:43:09.83042+00 2025-11-18 06:43:09.830426+00 待开单 待开单 6 2025-11-18 06:43:24.576632+00 2025-11-18 06:43:24.576639+00 订单完结 14 2025-11-19 02:13:50.031495+00 2025-11-19 02:13:50.031504+00 任务完成 15 2025-12-04 06:55:42.047003+00 2025-12-04 06:55:42.04701+00 画图中 画图中 7 2025-11-18 08:12:38.120754+00 2025-12-04 06:55:54.340464+00 画图完成 画图完成 8 2025-11-18 08:12:47.849927+00 2025-12-04 06:56:14.65389+00 调色完成 16 2025-12-04 06:56:50.977125+00 2025-12-04 06:56:50.977133+00 调色中 9 2025-11-18 08:13:08.015847+00 2025-12-04 07:02:16.911443+00 套样完成 套样完成 17 2025-12-04 07:02:44.449707+00 2025-12-04 07:02:44.449715+00 套样中 套样中 12 2025-11-18 08:13:40.576658+00 2025-12-04 07:07:54.027461+00 配色完成 18 2025-12-04 07:08:06.62627+00 2025-12-04 07:08:06.626281+00 配色中 19 2025-12-04 07:10:17.79009+00 2025-12-04 07:10:17.790099+00 找图开发中 13 2025-11-18 08:13:49.180348+00 2025-12-04 07:10:26.256494+00 找图开发完成 11 2025-11-18 08:13:31.882922+00 2025-12-04 07:12:17.227441+00 P图完成 20 2025-12-04 07:12:27.674282+00 2025-12-04 07:12:27.67429+00 P图中 10 2025-11-18 08:13:23.679914+00 2025-12-04 07:14:24.471758+00 改图完成 21 2025-12-04 07:14:41.007709+00 2025-12-04 07:14:41.007716+00 改图中 1 2025-11-18 06:42:24.133555+00 2025-12-06 06:54:04.877023+00 打纸完成 2 2025-11-18 06:42:40.875192+00 2025-12-06 06:54:12.771525+00 滚筒完成 \. -- -- Data for Name: stateflow_state_parameters; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stateflow_state_parameters (id, state_id, stateparameter_id) FROM stdin; 1 1 1 2 1 2 3 1 3 4 1 4 5 1 5 6 1 6 7 2 7 8 2 8 9 2 9 10 2 10 11 2 11 12 2 12 13 2 13 14 7 14 16 7 16 17 7 17 18 7 18 19 7 19 20 7 20 21 7 21 22 7 22 24 8 33 25 8 25 26 8 26 27 8 27 28 8 28 29 8 29 30 8 30 31 8 31 32 9 52 33 9 53 34 9 54 35 9 55 36 9 56 37 9 57 38 9 58 40 9 60 41 10 70 42 10 71 43 10 72 44 10 73 45 10 74 46 10 75 47 10 76 49 10 78 50 11 79 51 11 80 52 11 81 53 11 82 54 11 83 55 11 84 56 11 85 58 11 87 59 12 64 60 12 65 61 12 66 62 12 67 64 12 69 65 12 61 66 12 62 67 12 63 68 13 34 69 13 35 70 13 36 71 13 37 72 13 38 73 13 39 74 13 40 76 13 42 77 15 17 78 15 15 79 16 32 80 16 30 81 17 57 82 17 59 83 18 66 84 18 68 85 19 41 86 19 39 87 20 84 88 20 86 89 21 75 90 21 77 \. -- -- Data for Name: stateflow_stateparameter; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stateflow_stateparameter (id, created_at, updated_at, key, value, description, attachment, is_required, is_image_path) FROM stdin; 1 2025-11-18 06:15:00.809393+00 2025-11-18 06:15:00.8094+00 (印染厂生产)生产记录 (印染厂生产)生产记录 f f 2 2025-11-18 06:17:56.053737+00 2025-11-18 06:17:56.053743+00 (印染厂生产)生产订单详情 (印染厂生产)生产订单详情 f f 3 2025-11-18 06:18:26.25185+00 2025-11-18 06:18:26.251858+00 (印染厂生产)打印米数 (印染厂生产)打印米数 f f 5 2025-11-18 06:18:51.697164+00 2025-11-18 06:18:51.697173+00 (印染厂生产)日期 (印染厂生产)日期 f f 6 2025-11-18 06:36:14.719497+00 2025-11-18 06:36:14.719504+00 (印染厂生产)提交人 (印染厂生产)提交人 f f 7 2025-11-18 06:37:41.608509+00 2025-11-18 06:37:41.608516+00 (印染厂滚筒)生产记录 (印染厂滚筒)生产记录 f f 8 2025-11-18 06:37:53.386596+00 2025-11-18 06:37:53.386602+00 (印染厂滚筒)生产记录明细 (印染厂滚筒)生产记录明细 f f 9 2025-11-18 06:38:45.85707+00 2025-11-18 06:38:45.857077+00 (印染厂滚筒)生产单上传 (印染厂滚筒)生产单上传 f t 10 2025-11-18 06:39:07.772314+00 2025-11-18 06:39:07.772321+00 (印染厂滚筒)温度转速 (印染厂滚筒)温度转速 f f 12 2025-11-18 06:41:46.718423+00 2025-11-18 06:41:46.71843+00 (印染厂滚筒)日期 (印染厂滚筒)日期 f f 13 2025-11-18 06:41:52.441374+00 2025-11-18 06:41:52.44138+00 (印染厂滚筒)提交人 (印染厂滚筒)提交人 f f 14 2025-11-18 07:03:18.962028+00 2025-11-18 07:03:18.962034+00 (印染厂开版画图)开版编号 (印染厂开版画图)开版编号 f f 16 2025-11-18 07:04:40.367137+00 2025-11-18 07:04:40.367144+00 (印染厂开版画图)状态 (印染厂开版画图)状态 f f 17 2025-11-18 07:04:50.258244+00 2025-11-18 07:05:16.15894+00 (印染厂开版画图)设计师名称 (印染厂开版画图)设计师名称 f f 18 2025-11-18 07:06:26.838519+00 2025-11-18 07:06:26.838526+00 (印染厂开版画图)电脑位置 (印染厂开版画图)电脑位置 f f 19 2025-11-18 07:06:40.088596+00 2025-11-18 07:06:40.088602+00 (印染厂开版画图)描述 (印染厂开版画图)描述 f f 20 2025-11-18 07:07:20.126468+00 2025-11-18 07:07:20.126479+00 (印染厂开版画图)附件 (印染厂开版画图)附件 f t 21 2025-11-18 07:07:31.518786+00 2025-11-18 07:07:31.518792+00 (印染厂开版画图)完成时间 (印染厂开版画图)完成时间 f f 15 2025-11-18 07:04:21.325932+00 2025-11-18 07:09:18.685697+00 (印染厂开版画图)开始时间 (印染厂开版画图)开始时间 f f 22 2025-11-18 07:10:11.825216+00 2025-11-18 07:10:11.825223+00 (印染厂开版画图)完成数量 (印染厂开版画图)完成数量 f f 25 2025-11-18 08:04:06.826847+00 2025-11-18 08:04:06.826855+00 (印染厂开版调色)完成数量 \N (印染厂开版调色)完成数量 f f 26 2025-11-18 08:04:06.893984+00 2025-11-18 08:04:06.893993+00 (印染厂开版调色)完成时间 \N (印染厂开版调色)完成时间 f f 28 2025-11-18 08:04:07.043351+00 2025-11-18 08:04:07.043359+00 (印染厂开版调色)描述 \N (印染厂开版调色)描述 f f 29 2025-11-18 08:04:07.123119+00 2025-11-18 08:04:07.123127+00 (印染厂开版调色)电脑位置 \N (印染厂开版调色)电脑位置 f f 30 2025-11-18 08:04:07.200354+00 2025-11-18 08:04:07.200362+00 (印染厂开版调色)设计师名称 \N (印染厂开版调色)设计师名称 f f 31 2025-11-18 08:04:07.27682+00 2025-11-18 08:04:07.276829+00 (印染厂开版调色)状态 \N (印染厂开版调色)状态 f f 32 2025-11-18 08:04:07.351926+00 2025-11-18 08:04:07.351933+00 (印染厂开版调色)开始时间 \N (印染厂开版调色)开始时间 f f 33 2025-11-18 08:04:07.431118+00 2025-11-18 08:04:07.431127+00 (印染厂开版调色)开版编号 \N (印染厂开版调色)开版编号 f f 34 2025-11-18 08:04:07.758474+00 2025-11-18 08:04:07.758484+00 (印染厂开版找图)完成数量 \N (印染厂开版找图)完成数量 f f 35 2025-11-18 08:04:07.836584+00 2025-11-18 08:04:07.836593+00 (印染厂开版找图)完成时间 \N (印染厂开版找图)完成时间 f f 37 2025-11-18 08:04:07.988476+00 2025-11-18 08:04:07.988484+00 (印染厂开版找图)描述 \N (印染厂开版找图)描述 f f 38 2025-11-18 08:04:08.070932+00 2025-11-18 08:04:08.070943+00 (印染厂开版找图)电脑位置 \N (印染厂开版找图)电脑位置 f f 39 2025-11-18 08:04:08.14465+00 2025-11-18 08:04:08.14466+00 (印染厂开版找图)设计师名称 \N (印染厂开版找图)设计师名称 f f 40 2025-11-18 08:04:08.227005+00 2025-11-18 08:04:08.227019+00 (印染厂开版找图)状态 \N (印染厂开版找图)状态 f f 41 2025-11-18 08:04:08.301492+00 2025-11-18 08:04:08.301503+00 (印染厂开版找图)开始时间 \N (印染厂开版找图)开始时间 f f 42 2025-11-18 08:04:08.378264+00 2025-11-18 08:04:08.378271+00 (印染厂开版找图)开版编号 \N (印染厂开版找图)开版编号 f f 52 2025-11-18 08:06:23.545251+00 2025-11-18 08:06:23.545259+00 (印染厂开版套样)完成数量 \N (印染厂开版套样)完成数量 f f 53 2025-11-18 08:06:23.622055+00 2025-11-18 08:06:23.622062+00 (印染厂开版套样)完成时间 \N (印染厂开版套样)完成时间 f f 55 2025-11-18 08:06:23.775737+00 2025-11-18 08:06:23.775748+00 (印染厂开版套样)描述 \N (印染厂开版套样)描述 f f 56 2025-11-18 08:06:23.848947+00 2025-11-18 08:06:23.848956+00 (印染厂开版套样)电脑位置 \N (印染厂开版套样)电脑位置 f f 57 2025-11-18 08:06:23.929306+00 2025-11-18 08:06:23.929317+00 (印染厂开版套样)设计师名称 \N (印染厂开版套样)设计师名称 f f 58 2025-11-18 08:06:24.004115+00 2025-11-18 08:06:24.004123+00 (印染厂开版套样)状态 \N (印染厂开版套样)状态 f f 59 2025-11-18 08:06:24.078659+00 2025-11-18 08:06:24.078666+00 (印染厂开版套样)开始时间 \N (印染厂开版套样)开始时间 f f 60 2025-11-18 08:06:24.157041+00 2025-11-18 08:06:24.15705+00 (印染厂开版套样)开版编号 \N (印染厂开版套样)开版编号 f f 61 2025-11-18 08:07:09.998372+00 2025-11-18 08:07:09.99838+00 (印染厂开版配色)完成数量 \N (印染厂开版配色)完成数量 f f 62 2025-11-18 08:07:10.083424+00 2025-11-18 08:07:10.083434+00 (印染厂开版配色)完成时间 \N (印染厂开版配色)完成时间 f f 64 2025-11-18 08:07:10.232919+00 2025-11-18 08:07:10.232927+00 (印染厂开版配色)描述 \N (印染厂开版配色)描述 f f 65 2025-11-18 08:07:10.311549+00 2025-11-18 08:07:10.311561+00 (印染厂开版配色)电脑位置 \N (印染厂开版配色)电脑位置 f f 66 2025-11-18 08:07:10.387778+00 2025-11-18 08:07:10.387787+00 (印染厂开版配色)设计师名称 \N (印染厂开版配色)设计师名称 f f 67 2025-11-18 08:07:10.462353+00 2025-11-18 08:07:10.462361+00 (印染厂开版配色)状态 \N (印染厂开版配色)状态 f f 68 2025-11-18 08:07:10.541327+00 2025-11-18 08:07:10.541337+00 (印染厂开版配色)开始时间 \N (印染厂开版配色)开始时间 f f 69 2025-11-18 08:07:10.614664+00 2025-11-18 08:07:10.614671+00 (印染厂开版配色)开版编号 \N (印染厂开版配色)开版编号 f f 70 2025-11-18 08:07:24.736408+00 2025-11-18 08:07:24.736416+00 (印染厂开版改图)完成数量 \N (印染厂开版改图)完成数量 f f 71 2025-11-18 08:07:24.814028+00 2025-11-18 08:07:24.814036+00 (印染厂开版改图)完成时间 \N (印染厂开版改图)完成时间 f f 36 2025-11-18 08:04:07.913709+00 2025-11-18 08:08:06.425557+00 (印染厂开版找图)附件 \N (印染厂开版找图)附件 f t 54 2025-11-18 08:06:23.6976+00 2025-11-18 08:08:10.055142+00 (印染厂开版套样)附件 \N (印染厂开版套样)附件 f t 63 2025-11-18 08:07:10.156413+00 2025-11-18 08:08:14.833088+00 (印染厂开版配色)附件 \N (印染厂开版配色)附件 f t 4 2025-11-18 06:18:36.506182+00 2025-12-06 06:55:31.850734+00 (印染厂生产)设备 (印染厂生产)打印设备 f f 11 2025-11-18 06:41:38.315857+00 2025-12-06 06:55:51.373212+00 (印染厂滚筒)设备 (印染厂滚筒)滚筒设备 f f 73 2025-11-18 08:07:24.970837+00 2025-11-18 08:07:24.970848+00 (印染厂开版改图)描述 \N (印染厂开版改图)描述 f f 74 2025-11-18 08:07:25.045797+00 2025-11-18 08:07:25.045806+00 (印染厂开版改图)电脑位置 \N (印染厂开版改图)电脑位置 f f 75 2025-11-18 08:07:25.119207+00 2025-11-18 08:07:25.119215+00 (印染厂开版改图)设计师名称 \N (印染厂开版改图)设计师名称 f f 76 2025-11-18 08:07:25.197472+00 2025-11-18 08:07:25.197481+00 (印染厂开版改图)状态 \N (印染厂开版改图)状态 f f 77 2025-11-18 08:07:25.280098+00 2025-11-18 08:07:25.280106+00 (印染厂开版改图)开始时间 \N (印染厂开版改图)开始时间 f f 78 2025-11-18 08:07:25.350011+00 2025-11-18 08:07:25.350018+00 (印染厂开版改图)开版编号 \N (印染厂开版改图)开版编号 f f 27 2025-11-18 08:04:06.967852+00 2025-11-18 08:08:01.155911+00 (印染厂开版调色)附件 \N (印染厂开版调色)附件 f t 72 2025-11-18 08:07:24.892672+00 2025-11-18 08:08:18.605401+00 (印染厂开版改图)附件 \N (印染厂开版改图)附件 f t 79 2025-11-18 08:08:38.664863+00 2025-11-18 08:08:38.664879+00 (印染厂开版P图)完成数量 \N (印染厂开版P图)完成数量 f f 80 2025-11-18 08:08:38.743771+00 2025-11-18 08:08:38.74378+00 (印染厂开版P图)完成时间 \N (印染厂开版P图)完成时间 f f 82 2025-11-18 08:08:38.902216+00 2025-11-18 08:08:38.902227+00 (印染厂开版P图)描述 \N (印染厂开版P图)描述 f f 83 2025-11-18 08:08:38.972609+00 2025-11-18 08:08:38.972615+00 (印染厂开版P图)电脑位置 \N (印染厂开版P图)电脑位置 f f 84 2025-11-18 08:08:39.047021+00 2025-11-18 08:08:39.047034+00 (印染厂开版P图)设计师名称 \N (印染厂开版P图)设计师名称 f f 85 2025-11-18 08:08:39.122499+00 2025-11-18 08:08:39.122507+00 (印染厂开版P图)状态 \N (印染厂开版P图)状态 f f 86 2025-11-18 08:08:39.191187+00 2025-11-18 08:08:39.191194+00 (印染厂开版P图)开始时间 \N (印染厂开版P图)开始时间 f f 87 2025-11-18 08:08:39.267321+00 2025-11-18 08:08:39.267329+00 (印染厂开版P图)开版编号 \N (印染厂开版P图)开版编号 f f 81 2025-11-18 08:08:38.820486+00 2025-11-18 08:08:51.9089+00 (印染厂开版P图)附件 \N (印染厂开版P图)附件 f t \. -- -- Data for Name: stock_inventory; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_inventory (created_at, updated_at, id, quantity, num_of_rolls, spec, description, merchant_id, product_id, warehouse_id) FROM stdin; 2025-11-25 10:10:50.074909+00 2025-11-25 10:10:52.768415+00 3 -1602.00 -12 \N \N 1 2 2 2025-11-20 07:54:45.864074+00 2025-11-28 04:16:58.098231+00 1 1907.00 12 \N \N 1 1 2 2025-11-28 10:05:17.989717+00 2025-11-28 10:05:17.992175+00 4 195.00 2 \N \N 1 3 2 2025-11-20 08:03:02.167396+00 2025-11-29 02:07:05.960679+00 2 220.00 3 \N \N 1 1 3 2025-12-01 09:13:19.364669+00 2025-12-01 09:13:19.364676+00 5 100.00 1 \N \N 1 3 3 2025-12-01 09:52:19.036894+00 2025-12-01 09:52:19.039535+00 6 195.00 2 \N \N 1 3 4 2025-12-01 09:59:59.531357+00 2025-12-01 09:59:59.531365+00 7 100.00 1 \N \N 1 3 5 \. -- -- Data for Name: stock_stockchangedetail; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_stockchangedetail (created_at, updated_at, id, quantity, unit, merchant_id, product_id, stock_change_record_id, is_consumed, consume_with_id) FROM stdin; 2025-11-20 07:54:28.234159+00 2025-11-20 07:54:28.234167+00 1 50.00 1 1 1 2 f \N 2025-11-20 08:01:23.822874+00 2025-11-20 08:01:23.822882+00 2 25.00 1 1 1 3 f \N 2025-11-20 08:02:47.394261+00 2025-11-20 08:02:47.394267+00 3 25.00 1 1 1 4 f \N 2025-11-25 08:23:25.704772+00 2025-11-25 08:23:25.704776+00 4 45.00 1 1 1 5 f \N 2025-11-25 08:23:25.706869+00 2025-11-25 08:23:25.706873+00 5 45.00 1 1 1 5 f \N 2025-11-25 08:23:25.707105+00 2025-11-25 08:23:25.707108+00 6 54.00 1 1 1 5 f \N 2025-11-25 08:23:25.707312+00 2025-11-25 08:23:25.707315+00 7 46.00 1 1 1 5 f \N 2025-11-25 08:23:25.707497+00 2025-11-25 08:23:25.7075+00 8 64.00 1 1 1 5 f \N 2025-11-25 08:23:25.70768+00 2025-11-25 08:23:25.707683+00 9 46.00 1 1 1 5 f \N 2025-11-25 08:49:42.447165+00 2025-11-25 08:49:42.44717+00 10 45.00 1 1 2 6 f \N 2025-11-25 08:49:42.447659+00 2025-11-25 08:49:42.447663+00 11 456.00 1 1 2 6 f \N 2025-11-25 08:49:42.447844+00 2025-11-25 08:49:42.447848+00 12 57.00 1 1 2 6 f \N 2025-11-25 08:49:42.448005+00 2025-11-25 08:49:42.448008+00 13 78.00 1 1 2 6 f \N 2025-11-25 08:49:42.448169+00 2025-11-25 08:49:42.448173+00 14 78.00 1 1 2 6 f \N 2025-11-25 08:49:42.448333+00 2025-11-25 08:49:42.448336+00 15 87.00 1 1 2 6 f \N 2025-11-25 08:49:45.15512+00 2025-11-25 08:49:45.155124+00 16 45.00 1 1 2 7 f \N 2025-11-25 08:49:45.155571+00 2025-11-25 08:49:45.155574+00 17 456.00 1 1 2 7 f \N 2025-11-25 08:49:45.155746+00 2025-11-25 08:49:45.15575+00 18 57.00 1 1 2 7 f \N 2025-11-25 08:49:45.155905+00 2025-11-25 08:49:45.155908+00 19 78.00 1 1 2 7 f \N 2025-11-25 08:49:45.156062+00 2025-11-25 08:49:45.156065+00 20 78.00 1 1 2 7 f \N 2025-11-25 08:49:45.156227+00 2025-11-25 08:49:45.15623+00 21 87.00 1 1 2 7 f \N 2025-11-25 09:10:28.070164+00 2025-11-25 09:10:28.070168+00 22 465.00 1 1 1 8 f \N 2025-11-25 09:10:28.070615+00 2025-11-25 09:10:28.070619+00 23 78.00 1 1 1 8 f \N 2025-11-25 09:10:28.070802+00 2025-11-25 09:10:28.070806+00 24 789.00 1 1 1 8 f \N 2025-11-25 09:21:02.981242+00 2025-11-25 09:21:02.981252+00 25 55.00 1 1 1 9 f \N 2025-11-25 09:28:55.964056+00 2025-11-25 09:28:55.964062+00 26 22.00 1 1 1 10 f \N 2025-11-25 10:12:41.752146+00 2025-11-25 10:12:59.642704+00 27 22.00 1 1 1 11 f 26 2025-11-28 03:49:04.600109+00 2025-11-28 03:49:04.600114+00 30 97.00 1 1 1 14 f \N 2025-11-28 03:49:04.600598+00 2025-11-28 03:49:04.600602+00 31 98.00 1 1 1 14 f \N 2025-11-28 06:18:30.986094+00 2025-11-28 06:18:30.9861+00 32 97.00 1 1 1 15 f \N 2025-11-28 06:18:30.986555+00 2025-11-28 06:18:30.986558+00 33 98.00 1 1 1 15 f \N 2025-11-28 06:18:54.739337+00 2025-11-28 06:18:54.739342+00 34 97.00 1 1 1 16 f \N 2025-11-28 06:18:54.739784+00 2025-11-28 06:18:54.739787+00 35 98.00 1 1 1 16 f \N 2025-11-28 06:18:54.739967+00 2025-11-28 06:18:54.73997+00 36 97.00 1 1 1 16 f \N 2025-11-28 06:18:54.740122+00 2025-11-28 06:18:54.740125+00 37 94.00 1 1 1 16 f \N 2025-11-28 10:01:26.418543+00 2025-11-28 10:01:26.418548+00 38 97.00 1 1 1 17 f \N 2025-11-28 10:01:26.419008+00 2025-11-28 10:01:26.419011+00 39 98.00 1 1 1 17 f \N 2025-11-28 10:01:37.047859+00 2025-11-28 10:01:37.047865+00 40 123.00 1 1 1 18 f \N 2025-11-28 10:04:16.501398+00 2025-11-28 10:04:16.501403+00 41 97.00 1 1 3 19 f \N 2025-11-28 10:04:16.501845+00 2025-11-28 10:04:16.501848+00 42 98.00 1 1 3 19 f \N 2025-11-28 10:13:50.084323+00 2025-11-28 10:13:50.08433+00 43 100.00 1 1 3 20 f \N 2025-12-01 09:32:33.889135+00 2025-12-01 09:32:33.88914+00 44 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.889656+00 2025-12-01 09:32:33.88966+00 45 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.88985+00 2025-12-01 09:32:33.889853+00 46 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.890075+00 2025-12-01 09:32:33.890081+00 47 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.890349+00 2025-12-01 09:32:33.890353+00 48 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.890537+00 2025-12-01 09:32:33.89054+00 49 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.890701+00 2025-12-01 09:32:33.890704+00 50 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.89086+00 2025-12-01 09:32:33.890863+00 51 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.891011+00 2025-12-01 09:32:33.891014+00 52 4.00 1 1 3 23 f \N 2025-12-01 09:32:33.891166+00 2025-12-01 09:32:33.891169+00 53 4.00 1 1 3 23 f \N 2025-12-01 09:42:14.252311+00 2025-12-01 09:42:14.252315+00 54 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.252745+00 2025-12-01 09:42:14.252749+00 55 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.252952+00 2025-12-01 09:42:14.252956+00 56 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253161+00 2025-12-01 09:42:14.253164+00 57 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253327+00 2025-12-01 09:42:14.25333+00 58 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253484+00 2025-12-01 09:42:14.253487+00 59 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253641+00 2025-12-01 09:42:14.253644+00 60 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253789+00 2025-12-01 09:42:14.253792+00 61 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.253932+00 2025-12-01 09:42:14.253935+00 62 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254077+00 2025-12-01 09:42:14.25408+00 63 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254223+00 2025-12-01 09:42:14.254226+00 64 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254361+00 2025-12-01 09:42:14.254364+00 65 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254495+00 2025-12-01 09:42:14.254498+00 66 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254687+00 2025-12-01 09:42:14.254691+00 67 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.254878+00 2025-12-01 09:42:14.254881+00 68 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255039+00 2025-12-01 09:42:14.255043+00 69 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255186+00 2025-12-01 09:42:14.255188+00 70 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255325+00 2025-12-01 09:42:14.255328+00 71 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255468+00 2025-12-01 09:42:14.255471+00 72 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255621+00 2025-12-01 09:42:14.255624+00 73 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255765+00 2025-12-01 09:42:14.255768+00 74 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.255908+00 2025-12-01 09:42:14.255911+00 75 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.256052+00 2025-12-01 09:42:14.256055+00 76 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.256283+00 2025-12-01 09:42:14.256286+00 77 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.256433+00 2025-12-01 09:42:14.256436+00 78 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.256588+00 2025-12-01 09:42:14.256591+00 79 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.25675+00 2025-12-01 09:42:14.256753+00 80 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.256902+00 2025-12-01 09:42:14.256905+00 81 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257044+00 2025-12-01 09:42:14.257047+00 82 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257184+00 2025-12-01 09:42:14.257186+00 83 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257321+00 2025-12-01 09:42:14.257324+00 84 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257461+00 2025-12-01 09:42:14.257464+00 85 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.2576+00 2025-12-01 09:42:14.257603+00 86 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257746+00 2025-12-01 09:42:14.257749+00 87 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.257887+00 2025-12-01 09:42:14.25789+00 88 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.25802+00 2025-12-01 09:42:14.258023+00 89 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258154+00 2025-12-01 09:42:14.258156+00 90 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258293+00 2025-12-01 09:42:14.258296+00 91 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258426+00 2025-12-01 09:42:14.258428+00 92 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258554+00 2025-12-01 09:42:14.258557+00 93 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258684+00 2025-12-01 09:42:14.258687+00 94 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258818+00 2025-12-01 09:42:14.258821+00 95 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.258966+00 2025-12-01 09:42:14.258969+00 96 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259111+00 2025-12-01 09:42:14.259113+00 97 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259243+00 2025-12-01 09:42:14.259245+00 98 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259376+00 2025-12-01 09:42:14.259379+00 99 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259523+00 2025-12-01 09:42:14.259526+00 100 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.25966+00 2025-12-01 09:42:14.259662+00 101 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259792+00 2025-12-01 09:42:14.259794+00 102 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.259931+00 2025-12-01 09:42:14.259934+00 103 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.26007+00 2025-12-01 09:42:14.260073+00 104 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260208+00 2025-12-01 09:42:14.260211+00 105 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260341+00 2025-12-01 09:42:14.260344+00 106 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260474+00 2025-12-01 09:42:14.260477+00 107 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260604+00 2025-12-01 09:42:14.260607+00 108 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260746+00 2025-12-01 09:42:14.26075+00 109 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.260898+00 2025-12-01 09:42:14.260901+00 110 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.261043+00 2025-12-01 09:42:14.261046+00 111 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.26118+00 2025-12-01 09:42:14.261183+00 112 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.261312+00 2025-12-01 09:42:14.261315+00 113 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.26144+00 2025-12-01 09:42:14.261443+00 114 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.261588+00 2025-12-01 09:42:14.261591+00 115 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.261729+00 2025-12-01 09:42:14.261732+00 116 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.26187+00 2025-12-01 09:42:14.261873+00 117 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262006+00 2025-12-01 09:42:14.262009+00 118 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262142+00 2025-12-01 09:42:14.262145+00 119 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262279+00 2025-12-01 09:42:14.262282+00 120 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262414+00 2025-12-01 09:42:14.262417+00 121 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262543+00 2025-12-01 09:42:14.262545+00 122 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.26267+00 2025-12-01 09:42:14.262673+00 123 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.262799+00 2025-12-01 09:42:14.262801+00 124 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263021+00 2025-12-01 09:42:14.263028+00 125 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263226+00 2025-12-01 09:42:14.26323+00 126 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263396+00 2025-12-01 09:42:14.263399+00 127 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263559+00 2025-12-01 09:42:14.263562+00 128 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263713+00 2025-12-01 09:42:14.263717+00 129 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.263879+00 2025-12-01 09:42:14.263882+00 130 1.00 1 1 1 24 f \N 2025-12-01 09:42:14.264032+00 2025-12-01 09:42:14.264035+00 131 1.00 1 1 1 24 f \N 2025-12-01 09:43:48.645112+00 2025-12-01 09:43:48.645117+00 132 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.645565+00 2025-12-01 09:43:48.645569+00 133 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.645737+00 2025-12-01 09:43:48.64574+00 134 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.645892+00 2025-12-01 09:43:48.645895+00 135 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646043+00 2025-12-01 09:43:48.646046+00 136 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646184+00 2025-12-01 09:43:48.646186+00 137 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646329+00 2025-12-01 09:43:48.646332+00 138 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646484+00 2025-12-01 09:43:48.646488+00 139 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646629+00 2025-12-01 09:43:48.646632+00 140 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646773+00 2025-12-01 09:43:48.646776+00 141 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.646919+00 2025-12-01 09:43:48.646922+00 142 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647056+00 2025-12-01 09:43:48.647059+00 143 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647196+00 2025-12-01 09:43:48.6472+00 144 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.64734+00 2025-12-01 09:43:48.647343+00 145 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647482+00 2025-12-01 09:43:48.647485+00 146 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647618+00 2025-12-01 09:43:48.647621+00 147 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647754+00 2025-12-01 09:43:48.647756+00 148 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.647901+00 2025-12-01 09:43:48.647905+00 149 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648045+00 2025-12-01 09:43:48.648048+00 150 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648183+00 2025-12-01 09:43:48.648185+00 151 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648344+00 2025-12-01 09:43:48.648347+00 152 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648477+00 2025-12-01 09:43:48.64848+00 153 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.64861+00 2025-12-01 09:43:48.648613+00 154 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648749+00 2025-12-01 09:43:48.648751+00 155 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.648962+00 2025-12-01 09:43:48.648969+00 156 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649176+00 2025-12-01 09:43:48.649179+00 157 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649344+00 2025-12-01 09:43:48.649348+00 158 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649506+00 2025-12-01 09:43:48.64951+00 159 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649671+00 2025-12-01 09:43:48.649674+00 160 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649823+00 2025-12-01 09:43:48.649826+00 161 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.649972+00 2025-12-01 09:43:48.649975+00 162 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650116+00 2025-12-01 09:43:48.650119+00 163 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65025+00 2025-12-01 09:43:48.650253+00 164 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650394+00 2025-12-01 09:43:48.650398+00 165 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650541+00 2025-12-01 09:43:48.650544+00 166 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650677+00 2025-12-01 09:43:48.65068+00 167 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650822+00 2025-12-01 09:43:48.650824+00 168 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.650965+00 2025-12-01 09:43:48.650967+00 169 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.651098+00 2025-12-01 09:43:48.651101+00 170 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65123+00 2025-12-01 09:43:48.651232+00 171 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.651372+00 2025-12-01 09:43:48.651375+00 172 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65151+00 2025-12-01 09:43:48.651513+00 173 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.651649+00 2025-12-01 09:43:48.651652+00 174 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65178+00 2025-12-01 09:43:48.651782+00 175 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.651916+00 2025-12-01 09:43:48.651919+00 176 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652065+00 2025-12-01 09:43:48.652067+00 177 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.6522+00 2025-12-01 09:43:48.652203+00 178 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652333+00 2025-12-01 09:43:48.652336+00 179 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652465+00 2025-12-01 09:43:48.652467+00 180 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652597+00 2025-12-01 09:43:48.6526+00 181 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652726+00 2025-12-01 09:43:48.652728+00 182 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.652869+00 2025-12-01 09:43:48.652872+00 183 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653008+00 2025-12-01 09:43:48.653011+00 184 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653143+00 2025-12-01 09:43:48.653146+00 185 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653277+00 2025-12-01 09:43:48.653279+00 186 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653406+00 2025-12-01 09:43:48.653409+00 187 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653533+00 2025-12-01 09:43:48.653536+00 188 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653661+00 2025-12-01 09:43:48.653664+00 189 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653797+00 2025-12-01 09:43:48.6538+00 190 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.653946+00 2025-12-01 09:43:48.653948+00 191 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65408+00 2025-12-01 09:43:48.654083+00 192 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.654207+00 2025-12-01 09:43:48.654209+00 193 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.654339+00 2025-12-01 09:43:48.654342+00 194 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.654477+00 2025-12-01 09:43:48.654479+00 195 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.654611+00 2025-12-01 09:43:48.654614+00 196 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.654744+00 2025-12-01 09:43:48.654747+00 197 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.65489+00 2025-12-01 09:43:48.654893+00 198 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655031+00 2025-12-01 09:43:48.655033+00 199 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655163+00 2025-12-01 09:43:48.655166+00 200 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655293+00 2025-12-01 09:43:48.655295+00 201 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655425+00 2025-12-01 09:43:48.655428+00 202 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655562+00 2025-12-01 09:43:48.655565+00 203 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655692+00 2025-12-01 09:43:48.655695+00 204 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655824+00 2025-12-01 09:43:48.655827+00 205 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.655962+00 2025-12-01 09:43:48.655965+00 206 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.656103+00 2025-12-01 09:43:48.656105+00 207 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.656237+00 2025-12-01 09:43:48.65624+00 208 1.00 1 1 3 25 f \N 2025-12-01 09:43:48.656371+00 2025-12-01 09:43:48.656374+00 209 1.00 1 1 3 25 f \N 2025-12-01 09:44:17.427163+00 2025-12-01 09:44:17.427167+00 210 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.427594+00 2025-12-01 09:44:17.427597+00 211 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.427765+00 2025-12-01 09:44:17.427769+00 212 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.427931+00 2025-12-01 09:44:17.427934+00 213 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.428081+00 2025-12-01 09:44:17.428083+00 214 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.42823+00 2025-12-01 09:44:17.428233+00 215 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.42837+00 2025-12-01 09:44:17.428373+00 216 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.428519+00 2025-12-01 09:44:17.428521+00 217 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.428663+00 2025-12-01 09:44:17.428665+00 218 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.428799+00 2025-12-01 09:44:17.428802+00 219 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.428941+00 2025-12-01 09:44:17.428944+00 220 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429088+00 2025-12-01 09:44:17.429091+00 221 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429225+00 2025-12-01 09:44:17.429228+00 222 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429358+00 2025-12-01 09:44:17.429361+00 223 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.4295+00 2025-12-01 09:44:17.429503+00 224 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429637+00 2025-12-01 09:44:17.42964+00 225 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429778+00 2025-12-01 09:44:17.429781+00 226 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.429953+00 2025-12-01 09:44:17.429956+00 227 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430095+00 2025-12-01 09:44:17.430098+00 228 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43023+00 2025-12-01 09:44:17.430232+00 229 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430367+00 2025-12-01 09:44:17.430369+00 230 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430515+00 2025-12-01 09:44:17.430518+00 231 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430652+00 2025-12-01 09:44:17.430654+00 232 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430781+00 2025-12-01 09:44:17.430784+00 233 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.430913+00 2025-12-01 09:44:17.430915+00 234 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431046+00 2025-12-01 09:44:17.431049+00 235 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431185+00 2025-12-01 09:44:17.431188+00 236 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431318+00 2025-12-01 09:44:17.43132+00 237 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431446+00 2025-12-01 09:44:17.431449+00 238 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431581+00 2025-12-01 09:44:17.431584+00 239 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431722+00 2025-12-01 09:44:17.431725+00 240 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.431858+00 2025-12-01 09:44:17.431861+00 241 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432023+00 2025-12-01 09:44:17.432026+00 242 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432154+00 2025-12-01 09:44:17.432156+00 243 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432281+00 2025-12-01 09:44:17.432284+00 244 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432422+00 2025-12-01 09:44:17.432425+00 245 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432562+00 2025-12-01 09:44:17.432565+00 246 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432692+00 2025-12-01 09:44:17.432694+00 247 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432825+00 2025-12-01 09:44:17.432827+00 248 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.432963+00 2025-12-01 09:44:17.432966+00 249 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433105+00 2025-12-01 09:44:17.433108+00 250 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433241+00 2025-12-01 09:44:17.433243+00 251 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433371+00 2025-12-01 09:44:17.433374+00 252 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433502+00 2025-12-01 09:44:17.433504+00 253 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433632+00 2025-12-01 09:44:17.433635+00 254 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433771+00 2025-12-01 09:44:17.433774+00 255 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.433905+00 2025-12-01 09:44:17.433908+00 256 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434035+00 2025-12-01 09:44:17.434037+00 257 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434164+00 2025-12-01 09:44:17.434167+00 258 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434291+00 2025-12-01 09:44:17.434294+00 259 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43443+00 2025-12-01 09:44:17.434433+00 260 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434564+00 2025-12-01 09:44:17.434567+00 261 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434692+00 2025-12-01 09:44:17.434695+00 262 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434818+00 2025-12-01 09:44:17.434821+00 263 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.434953+00 2025-12-01 09:44:17.434956+00 264 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435098+00 2025-12-01 09:44:17.4351+00 265 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435233+00 2025-12-01 09:44:17.435235+00 266 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435362+00 2025-12-01 09:44:17.435365+00 267 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43549+00 2025-12-01 09:44:17.435492+00 268 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435629+00 2025-12-01 09:44:17.435632+00 269 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435759+00 2025-12-01 09:44:17.435762+00 270 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.435891+00 2025-12-01 09:44:17.435893+00 271 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436027+00 2025-12-01 09:44:17.43603+00 272 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436154+00 2025-12-01 09:44:17.436156+00 273 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436281+00 2025-12-01 09:44:17.436284+00 274 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436424+00 2025-12-01 09:44:17.436427+00 275 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436557+00 2025-12-01 09:44:17.43656+00 276 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436695+00 2025-12-01 09:44:17.436698+00 277 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436839+00 2025-12-01 09:44:17.436841+00 278 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.436975+00 2025-12-01 09:44:17.436977+00 279 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437113+00 2025-12-01 09:44:17.437115+00 280 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43724+00 2025-12-01 09:44:17.437243+00 281 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437377+00 2025-12-01 09:44:17.43738+00 282 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437511+00 2025-12-01 09:44:17.437514+00 283 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437642+00 2025-12-01 09:44:17.437645+00 284 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437776+00 2025-12-01 09:44:17.437779+00 285 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.437924+00 2025-12-01 09:44:17.437927+00 286 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438065+00 2025-12-01 09:44:17.438068+00 287 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.4382+00 2025-12-01 09:44:17.438203+00 288 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438335+00 2025-12-01 09:44:17.438338+00 289 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438474+00 2025-12-01 09:44:17.438477+00 290 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438615+00 2025-12-01 09:44:17.438618+00 291 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438748+00 2025-12-01 09:44:17.438751+00 292 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.438879+00 2025-12-01 09:44:17.438881+00 293 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43901+00 2025-12-01 09:44:17.439013+00 294 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439147+00 2025-12-01 09:44:17.439149+00 295 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439278+00 2025-12-01 09:44:17.439281+00 296 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439421+00 2025-12-01 09:44:17.439424+00 297 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.43955+00 2025-12-01 09:44:17.439552+00 298 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439681+00 2025-12-01 09:44:17.439685+00 299 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439826+00 2025-12-01 09:44:17.439829+00 300 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.439972+00 2025-12-01 09:44:17.439975+00 301 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.44013+00 2025-12-01 09:44:17.440133+00 302 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440274+00 2025-12-01 09:44:17.440276+00 303 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440407+00 2025-12-01 09:44:17.44041+00 304 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440546+00 2025-12-01 09:44:17.440549+00 305 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440678+00 2025-12-01 09:44:17.440681+00 306 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440806+00 2025-12-01 09:44:17.440809+00 307 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.440939+00 2025-12-01 09:44:17.440942+00 308 1.00 1 1 3 26 f \N 2025-12-01 09:44:17.44107+00 2025-12-01 09:44:17.441072+00 309 1.00 1 1 3 26 f \N 2025-12-01 09:45:03.258729+00 2025-12-01 09:45:03.258734+00 310 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.259181+00 2025-12-01 09:45:03.259184+00 311 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.259353+00 2025-12-01 09:45:03.259356+00 312 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.259506+00 2025-12-01 09:45:03.259509+00 313 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.25966+00 2025-12-01 09:45:03.259663+00 314 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.259801+00 2025-12-01 09:45:03.259804+00 315 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.260111+00 2025-12-01 09:45:03.260117+00 316 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.260341+00 2025-12-01 09:45:03.260344+00 317 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.260518+00 2025-12-01 09:45:03.260522+00 318 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.260679+00 2025-12-01 09:45:03.260682+00 319 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.260826+00 2025-12-01 09:45:03.260829+00 320 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.26098+00 2025-12-01 09:45:03.260983+00 321 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.261122+00 2025-12-01 09:45:03.261125+00 322 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.261261+00 2025-12-01 09:45:03.261264+00 323 7.00 1 1 3 27 f \N 2025-12-01 09:45:03.261414+00 2025-12-01 09:45:03.261417+00 324 2.00 1 1 3 27 f \N 2025-12-01 09:48:45.353244+00 2025-12-01 09:48:45.353249+00 325 97.00 1 1 3 28 f \N 2025-12-01 09:48:45.353701+00 2025-12-01 09:48:45.353705+00 326 98.00 1 1 3 28 f \N 2025-12-01 09:57:08.942356+00 2025-12-01 09:57:08.94236+00 327 33.33 1 1 3 29 f \N 2025-12-01 09:57:08.942815+00 2025-12-01 09:57:08.942818+00 328 33.33 1 1 3 29 f \N 2025-12-01 09:57:08.942995+00 2025-12-01 09:57:08.942999+00 329 33.33 1 1 3 29 f \N 2025-12-01 09:57:08.943151+00 2025-12-01 09:57:08.943154+00 330 0.00 1 1 3 29 f \N 2025-12-01 09:59:47.284853+00 2025-12-01 09:59:47.284859+00 331 100.00 1 1 3 30 f \N 2025-12-01 10:11:13.667459+00 2025-12-01 10:11:13.667464+00 332 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.667911+00 2025-12-01 10:11:13.667914+00 333 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668095+00 2025-12-01 10:11:13.668098+00 334 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668255+00 2025-12-01 10:11:13.668258+00 335 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668403+00 2025-12-01 10:11:13.668406+00 336 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668544+00 2025-12-01 10:11:13.668547+00 337 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668683+00 2025-12-01 10:11:13.668685+00 338 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668822+00 2025-12-01 10:11:13.668826+00 339 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.668979+00 2025-12-01 10:11:13.668982+00 340 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669126+00 2025-12-01 10:11:13.669129+00 341 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669266+00 2025-12-01 10:11:13.669268+00 342 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669408+00 2025-12-01 10:11:13.669411+00 343 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669556+00 2025-12-01 10:11:13.669559+00 344 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669701+00 2025-12-01 10:11:13.669704+00 345 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669842+00 2025-12-01 10:11:13.669845+00 346 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.669979+00 2025-12-01 10:11:13.669982+00 347 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.670113+00 2025-12-01 10:11:13.670116+00 348 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.670256+00 2025-12-01 10:11:13.670258+00 349 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.670391+00 2025-12-01 10:11:13.670394+00 350 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.670526+00 2025-12-01 10:11:13.670528+00 351 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.670669+00 2025-12-01 10:11:13.670672+00 352 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.67081+00 2025-12-01 10:11:13.670813+00 353 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.67095+00 2025-12-01 10:11:13.670953+00 354 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671082+00 2025-12-01 10:11:13.671085+00 355 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671212+00 2025-12-01 10:11:13.671215+00 356 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.67135+00 2025-12-01 10:11:13.671353+00 357 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671486+00 2025-12-01 10:11:13.671489+00 358 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671617+00 2025-12-01 10:11:13.67162+00 359 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671746+00 2025-12-01 10:11:13.671749+00 360 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.671881+00 2025-12-01 10:11:13.671884+00 361 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.672023+00 2025-12-01 10:11:13.672026+00 362 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.672185+00 2025-12-01 10:11:13.672188+00 363 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.672324+00 2025-12-01 10:11:13.672327+00 364 3.00 1 1 2 31 f \N 2025-12-01 10:11:13.672454+00 2025-12-01 10:11:13.672456+00 365 1.00 1 1 2 31 f \N 2025-12-01 10:12:21.034928+00 2025-12-01 10:12:21.034932+00 366 33.34 1 1 3 32 f \N 2025-12-01 10:12:21.035422+00 2025-12-01 10:12:21.035426+00 367 33.33 1 1 3 32 f \N 2025-12-01 10:12:21.035603+00 2025-12-01 10:12:21.035606+00 368 33.33 1 1 3 32 f \N \. -- -- Data for Name: stock_stockchangerecord; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_stockchangerecord (created_at, updated_at, id, type, source_type, source_id, is_finished, finished_at, remarks, created_by_id, merchant_id, warehouse_id) FROM stdin; 2025-11-20 07:54:03.430455+00 2025-11-20 07:54:45.867681+00 2 1 4 \N t 2025-11-20 07:54:45.866469+00 1 1 2 2025-11-20 08:00:58.975687+00 2025-11-20 08:02:59.822363+00 3 2 10 \N t 2025-11-20 08:02:59.82082+00 1 1 2 2025-11-20 08:02:18.094174+00 2025-11-20 08:03:02.172741+00 4 1 3 \N t 2025-11-20 08:03:02.171627+00 1 1 3 2025-11-25 08:23:25.703137+00 2025-11-25 08:26:59.598906+00 5 1 1 \N t 2025-11-25 08:26:59.598104+00 \N 2 1 2 2025-11-25 09:28:40.651817+00 2025-11-25 10:10:43.514322+00 10 1 3 \N t 2025-11-25 10:10:43.513447+00 1 1 2 2025-11-25 09:20:41.469745+00 2025-11-25 10:10:46.644773+00 9 1 4 \N t 2025-11-25 10:10:46.643786+00 1 1 2 2025-11-25 09:10:28.069309+00 2025-11-25 10:10:48.427132+00 8 1 1 \N t 2025-11-25 10:10:48.426187+00 \N 2 1 2 2025-11-25 08:49:45.154243+00 2025-11-25 10:10:50.088642+00 7 2 6 \N t 2025-11-25 10:10:50.087782+00 \N 2 1 2 2025-11-25 08:49:42.446213+00 2025-11-25 10:10:52.770383+00 6 2 6 \N t 2025-11-25 10:10:52.769618+00 \N 2 1 2 2025-11-25 10:12:01.37053+00 2025-11-25 10:13:09.76617+00 11 2 9 \N t 2025-11-25 10:13:09.765158+00 1 1 2 2025-11-28 03:49:04.598896+00 2025-11-28 04:16:58.100963+00 14 1 1 9 t 2025-11-28 04:16:58.099857+00 \N 2 1 2 2025-11-28 06:18:54.73818+00 2025-11-28 06:18:54.73819+00 16 1 1 11 f \N \N 2 1 4 2025-11-28 10:01:26.417334+00 2025-11-28 10:01:26.417345+00 17 1 1 16 f \N \N 2 1 2 2025-11-28 10:01:37.046717+00 2025-11-28 10:01:37.046725+00 18 1 1 14 f \N \N 2 1 3 2025-11-28 10:04:16.500326+00 2025-11-28 10:05:17.994251+00 19 1 1 17 t 2025-11-28 10:05:17.993378+00 \N 2 1 2 2025-11-28 06:18:30.984995+00 2025-11-29 02:07:05.962873+00 15 1 1 10 t 2025-11-29 02:07:05.961912+00 \N 2 1 3 2025-11-28 10:13:50.08242+00 2025-12-01 09:13:19.367796+00 20 1 1 19 t 2025-12-01 09:13:19.366794+00 \N 2 1 3 2025-12-01 09:32:33.887738+00 2025-12-01 09:32:33.88775+00 23 2 7 3 f \N \N 2 1 5 2025-12-01 09:42:14.251174+00 2025-12-01 09:42:14.251182+00 24 1 2 1 f \N \N 2 1 5 2025-12-01 09:43:48.643982+00 2025-12-01 09:43:48.643991+00 25 1 2 2 f \N \N 2 1 5 2025-12-01 09:44:17.426016+00 2025-12-01 09:44:17.426025+00 26 1 2 3 f \N \N 2 1 5 2025-12-01 09:45:03.25759+00 2025-12-01 09:45:03.257598+00 27 2 7 4 f \N \N 2 1 5 2025-12-01 09:48:45.352096+00 2025-12-01 09:52:19.041514+00 28 1 2 4 t 2025-12-01 09:52:19.040714+00 \N 2 1 4 2025-12-01 09:57:08.94116+00 2025-12-01 09:57:08.941169+00 29 1 2 5 f \N \N 2 1 5 2025-12-01 09:59:47.283764+00 2025-12-01 09:59:59.534321+00 30 1 2 6 t 2025-12-01 09:59:59.533528+00 \N 2 1 5 2025-12-01 10:11:13.66633+00 2025-12-01 10:11:13.666338+00 31 1 2 7 f \N \N 2 1 5 2025-12-01 10:12:21.033643+00 2025-12-01 10:12:21.033653+00 32 1 2 8 f \N \N 2 1 5 \. -- -- Data for Name: stock_stockfreeze; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_stockfreeze (created_at, updated_at, id, quantity, unit, status, frozen_with, completed_at, completed_with, cancelled_at, reason, cancelled_by_id, completed_by_id, frozen_by_id, merchant_id, product_id, stock_detail_id, warehouse_id) FROM stdin; \. -- -- Data for Name: stock_stocksnapshot; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_stocksnapshot (created_at, updated_at, id, delta, quantity_before, quantity_after, unit, num_of_rolls, offset_to, offset_at, cancelled, cancelled_at, offset_id, merchant_id, product_id, stock_change_record_id, warehouse_id) FROM stdin; 2025-11-20 07:54:45.865438+00 2025-11-20 07:54:45.865443+00 1 50.00 0.00 50.00 1 2 \N \N f \N \N 1 1 2 2 2025-11-20 08:02:59.81919+00 2025-11-20 08:02:59.819199+00 2 -25.00 50.00 25.00 1 -1 \N \N f \N \N 1 1 3 2 2025-11-20 08:03:02.170296+00 2025-11-20 08:03:02.170306+00 3 25.00 0.00 25.00 1 2 \N \N f \N \N 1 1 4 3 2025-11-25 08:26:59.585488+00 2025-11-25 08:26:59.585496+00 4 45.00 25.00 70.00 1 2 \N \N f \N \N 1 1 5 2 2025-11-25 08:26:59.589092+00 2025-11-25 08:26:59.589097+00 5 45.00 70.00 115.00 1 3 \N \N f \N \N 1 1 5 2 2025-11-25 08:26:59.59076+00 2025-11-25 08:26:59.590764+00 6 54.00 115.00 169.00 1 4 \N \N f \N \N 1 1 5 2 2025-11-25 08:26:59.592872+00 2025-11-25 08:26:59.592876+00 7 46.00 169.00 215.00 1 5 \N \N f \N \N 1 1 5 2 2025-11-25 08:26:59.595099+00 2025-11-25 08:26:59.595104+00 8 64.00 215.00 279.00 1 6 \N \N f \N \N 1 1 5 2 2025-11-25 08:26:59.597258+00 2025-11-25 08:26:59.597262+00 9 46.00 279.00 325.00 1 7 \N \N f \N \N 1 1 5 2 2025-11-25 10:10:43.512086+00 2025-11-25 10:10:43.512093+00 10 22.00 325.00 347.00 1 8 \N \N f \N \N 1 1 10 2 2025-11-25 10:10:46.642532+00 2025-11-25 10:10:46.642538+00 11 55.00 347.00 402.00 1 9 \N \N f \N \N 1 1 9 2 2025-11-25 10:10:48.421374+00 2025-11-25 10:10:48.421379+00 12 465.00 402.00 867.00 1 10 \N \N f \N \N 1 1 8 2 2025-11-25 10:10:48.423686+00 2025-11-25 10:10:48.42369+00 13 78.00 867.00 945.00 1 11 \N \N f \N \N 1 1 8 2 2025-11-25 10:10:48.425271+00 2025-11-25 10:10:48.425277+00 14 789.00 945.00 1734.00 1 12 \N \N f \N \N 1 1 8 2 2025-11-25 10:10:50.076648+00 2025-11-25 10:10:50.076654+00 15 -45.00 0.00 -45.00 1 -2 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:50.079262+00 2025-11-25 10:10:50.079266+00 16 -456.00 -45.00 -501.00 1 -3 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:50.081387+00 2025-11-25 10:10:50.081391+00 17 -57.00 -501.00 -558.00 1 -4 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:50.083463+00 2025-11-25 10:10:50.083469+00 18 -78.00 -558.00 -636.00 1 -5 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:50.085389+00 2025-11-25 10:10:50.085393+00 19 -78.00 -636.00 -714.00 1 -6 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:50.087157+00 2025-11-25 10:10:50.087163+00 20 -87.00 -714.00 -801.00 1 -7 \N \N f \N \N 1 2 7 2 2025-11-25 10:10:52.760974+00 2025-11-25 10:10:52.760978+00 21 -45.00 -801.00 -846.00 1 -8 \N \N f \N \N 1 2 6 2 2025-11-25 10:10:52.763084+00 2025-11-25 10:10:52.763088+00 22 -456.00 -846.00 -1302.00 1 -9 \N \N f \N \N 1 2 6 2 2025-11-25 10:10:52.764538+00 2025-11-25 10:10:52.764542+00 23 -57.00 -1302.00 -1359.00 1 -10 \N \N f \N \N 1 2 6 2 2025-11-25 10:10:52.765994+00 2025-11-25 10:10:52.765998+00 24 -78.00 -1359.00 -1437.00 1 -11 \N \N f \N \N 1 2 6 2 2025-11-25 10:10:52.76742+00 2025-11-25 10:10:52.767424+00 25 -78.00 -1437.00 -1515.00 1 -12 \N \N f \N \N 1 2 6 2 2025-11-25 10:10:52.769042+00 2025-11-25 10:10:52.769047+00 26 -87.00 -1515.00 -1602.00 1 -13 \N \N f \N \N 1 2 6 2 2025-11-25 10:13:09.763497+00 2025-11-25 10:13:09.763502+00 27 -22.00 1734.00 1712.00 1 9 \N \N f \N \N 1 1 11 2 2025-11-28 04:16:58.096138+00 2025-11-28 04:16:58.096144+00 28 97.00 1712.00 1809.00 1 12 \N \N f \N \N 1 1 14 2 2025-11-28 04:16:58.099209+00 2025-11-28 04:16:58.099214+00 29 98.00 1809.00 1907.00 1 13 \N \N f \N \N 1 1 14 2 2025-11-28 10:05:17.990897+00 2025-11-28 10:05:17.990901+00 30 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 19 2 2025-11-28 10:05:17.992816+00 2025-11-28 10:05:17.99282+00 31 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 19 2 2025-11-29 02:07:05.958964+00 2025-11-29 02:07:05.95897+00 32 97.00 25.00 122.00 1 3 \N \N f \N \N 1 1 15 3 2025-11-29 02:07:05.961355+00 2025-11-29 02:07:05.961359+00 33 98.00 122.00 220.00 1 4 \N \N f \N \N 1 1 15 3 2025-12-01 09:13:19.365892+00 2025-12-01 09:13:19.365896+00 34 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 20 3 2025-12-01 09:52:19.03822+00 2025-12-01 09:52:19.038224+00 35 97.00 0.00 97.00 1 2 \N \N f \N \N 1 3 28 4 2025-12-01 09:52:19.040185+00 2025-12-01 09:52:19.040189+00 36 98.00 97.00 195.00 1 3 \N \N f \N \N 1 3 28 4 2025-12-01 09:59:59.532665+00 2025-12-01 09:59:59.532669+00 37 100.00 0.00 100.00 1 2 \N \N f \N \N 1 3 30 5 \. -- -- Data for Name: stock_transferorder; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_transferorder (created_at, updated_at, id, mode, transfer_date, status, remarks, request_id, created_by_id, from_warehouse_id, incoming_record_id, merchant_id, operator_id, outgoing_record_id, to_warehouse_id) FROM stdin; \. -- -- Data for Name: stock_transferorderitem; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_transferorderitem (created_at, updated_at, id, unit, total_quantity, num_of_rolls, product_id, transfer_order_id) FROM stdin; \. -- -- Name: api_data_sync_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.api_data_sync_id_seq', 113, true); -- -- Name: api_uploaded_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.api_uploaded_file_id_seq', 63, true); -- -- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_group_id_seq', 3, true); -- -- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 434, true); -- -- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_permission_id_seq', 221, true); -- -- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 13, true); -- -- Name: auth_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_user_id_seq', 26, true); -- -- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 39, true); -- -- Name: basic_info_bankaccount_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_bankaccount_id_seq', 1, true); -- -- Name: basic_info_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_customer_id_seq', 809, true); -- -- Name: basic_info_customer_visible_employees_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_customer_visible_employees_id_seq', 6, true); -- -- Name: basic_info_deviceinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_deviceinfo_id_seq', 2, true); -- -- Name: basic_info_employee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_employee_id_seq', 25, true); -- -- Name: basic_info_employeetype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_employeetype_id_seq', 8, true); -- -- Name: basic_info_merchant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_merchant_id_seq', 3, true); -- -- Name: basic_info_merchantsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_merchantsetting_id_seq', 1, true); -- -- Name: basic_info_product_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_product_id_seq', 22680, true); -- -- Name: basic_info_productcategory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_productcategory_id_seq', 1, true); -- -- Name: basic_info_quickinput_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_quickinput_id_seq', 2228, true); -- -- Name: basic_info_supplier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_supplier_id_seq', 2, true); -- -- Name: basic_info_userprofile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_userprofile_id_seq', 5, true); -- -- Name: basic_info_vehicletransportrecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_vehicletransportrecord_id_seq', 1, false); -- -- Name: basic_info_vehicletype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_vehicletype_id_seq', 1, false); -- -- Name: basic_info_warehouse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.basic_info_warehouse_id_seq', 5, true); -- -- Name: business_balancechangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_balancechangerecord_id_seq', 13, true); -- -- Name: business_customerbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_customerbalance_id_seq', 2, true); -- -- Name: business_paymentorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_paymentorder_id_seq', 1, true); -- -- Name: business_purchaseorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_purchaseorderitem_id_seq', 54, true); -- -- Name: business_purchasereturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_purchasereturnorder_id_seq', 4, true); -- -- Name: business_purchasereturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_purchasereturnorderitem_id_seq', 4, true); -- -- Name: business_receiptorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_receiptorder_id_seq', 2, true); -- -- Name: business_salesorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_salesorder_id_seq', 2, true); -- -- Name: business_salesorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_salesorderitem_id_seq', 2, true); -- -- Name: business_salesreturnorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_salesreturnorder_id_seq', 8, true); -- -- Name: business_salesreturnorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_salesreturnorderitem_id_seq', 8, true); -- -- Name: business_supplierbalance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.business_supplierbalance_id_seq', 2, true); -- -- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.django_admin_log_id_seq', 468, true); -- -- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.django_content_type_id_seq', 54, true); -- -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.django_migrations_id_seq', 110, true); -- -- Name: printing_plateorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.printing_plateorder_id_seq', 80035, true); -- -- Name: printing_printingjob_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.printing_printingjob_id_seq', 15, true); -- -- Name: printing_printingorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.printing_printingorder_id_seq', 19, true); -- -- Name: state_log_parameter_record_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.state_log_parameter_record_id_seq', 44, true); -- -- Name: stateflow_order_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_order_id_seq', 65, true); -- -- Name: stateflow_orderstatelog_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_orderstatelog_id_seq', 91, true); -- -- Name: stateflow_process_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_process_id_seq', 9, true); -- -- Name: stateflow_processnode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_processnode_id_seq', 36, true); -- -- Name: stateflow_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_state_id_seq', 21, true); -- -- Name: stateflow_state_parameters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_state_parameters_id_seq', 90, true); -- -- Name: stateflow_stateparameter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stateflow_stateparameter_id_seq', 87, true); -- -- Name: stock_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_inventory_id_seq', 7, true); -- -- Name: stock_purchaseorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_purchaseorder_id_seq', 58, true); -- -- Name: stock_stockchangedetail_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_stockchangedetail_id_seq', 368, true); -- -- Name: stock_stockchangerecord_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_stockchangerecord_id_seq', 32, true); -- -- Name: stock_stockfreeze_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_stockfreeze_id_seq', 1, false); -- -- Name: stock_stocksnapshot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_stocksnapshot_id_seq', 37, true); -- -- Name: stock_transferorder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_transferorder_id_seq', 1, false); -- -- Name: stock_transferorderitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_transferorderitem_id_seq', 1, false); -- -- Name: api_data_sync api_data_sync_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.api_data_sync ADD CONSTRAINT api_data_sync_pkey PRIMARY KEY (id); -- -- Name: api_uploaded_file api_uploaded_file_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.api_uploaded_file ADD CONSTRAINT api_uploaded_file_pkey PRIMARY KEY (id); -- -- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group ADD CONSTRAINT auth_group_name_key UNIQUE (name); -- -- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id); -- -- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); -- -- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); -- -- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename); -- -- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); -- -- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); -- -- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id); -- -- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); -- -- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); -- -- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id); -- -- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user ADD CONSTRAINT auth_user_username_key UNIQUE (username); -- -- Name: basic_info_bankaccount basic_info_bankaccount_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_bankaccount ADD CONSTRAINT basic_info_bankaccount_pkey PRIMARY KEY (id); -- -- Name: basic_info_customer basic_info_customer_mdy_uid_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer ADD CONSTRAINT basic_info_customer_mdy_uid_key UNIQUE (mdy_uid); -- -- Name: basic_info_customer basic_info_customer_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer ADD CONSTRAINT basic_info_customer_pkey PRIMARY KEY (id); -- -- Name: basic_info_customer_visible_employees basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer_visible_employees ADD CONSTRAINT basic_info_customer_visi_customer_id_employee_id_7be5046b_uniq UNIQUE (customer_id, employee_id); -- -- Name: basic_info_customer_visible_employees basic_info_customer_visible_employees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer_visible_employees ADD CONSTRAINT basic_info_customer_visible_employees_pkey PRIMARY KEY (id); -- -- Name: basic_info_deviceinfo basic_info_deviceinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_deviceinfo ADD CONSTRAINT basic_info_deviceinfo_pkey PRIMARY KEY (id); -- -- Name: basic_info_employee basic_info_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employee ADD CONSTRAINT basic_info_employee_pkey PRIMARY KEY (id); -- -- Name: basic_info_employee basic_info_employee_sys_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employee ADD CONSTRAINT basic_info_employee_sys_user_id_key UNIQUE (sys_user_id); -- -- Name: basic_info_employeetype basic_info_employeetype_merchant_id_title_cdb313e8_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employeetype ADD CONSTRAINT basic_info_employeetype_merchant_id_title_cdb313e8_uniq UNIQUE (merchant_id, title); -- -- Name: basic_info_employeetype basic_info_employeetype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employeetype ADD CONSTRAINT basic_info_employeetype_pkey PRIMARY KEY (id); -- -- Name: basic_info_merchant basic_info_merchant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_merchant ADD CONSTRAINT basic_info_merchant_pkey PRIMARY KEY (id); -- -- Name: basic_info_merchantsetting basic_info_merchantsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_merchantsetting ADD CONSTRAINT basic_info_merchantsetting_pkey PRIMARY KEY (id); -- -- Name: basic_info_product basic_info_product_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_product ADD CONSTRAINT basic_info_product_pkey PRIMARY KEY (id); -- -- Name: basic_info_productcategory basic_info_productcategory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_productcategory ADD CONSTRAINT basic_info_productcategory_pkey PRIMARY KEY (id); -- -- Name: basic_info_quickinput basic_info_quickinput_name_group_68f4787a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_quickinput ADD CONSTRAINT basic_info_quickinput_name_group_68f4787a_uniq UNIQUE (name, "group"); -- -- Name: basic_info_quickinput basic_info_quickinput_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_quickinput ADD CONSTRAINT basic_info_quickinput_pkey PRIMARY KEY (id); -- -- Name: basic_info_supplier basic_info_supplier_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_supplier ADD CONSTRAINT basic_info_supplier_pkey PRIMARY KEY (id); -- -- Name: basic_info_userprofile basic_info_userprofile_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_userprofile ADD CONSTRAINT basic_info_userprofile_pkey PRIMARY KEY (id); -- -- Name: basic_info_userprofile basic_info_userprofile_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_userprofile ADD CONSTRAINT basic_info_userprofile_user_id_key UNIQUE (user_id); -- -- Name: basic_info_vehicletransportrecord basic_info_vehicletransportrecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_vehicletransportrecord ADD CONSTRAINT basic_info_vehicletransportrecord_pkey PRIMARY KEY (id); -- -- Name: basic_info_vehicletype basic_info_vehicletype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_vehicletype ADD CONSTRAINT basic_info_vehicletype_pkey PRIMARY KEY (id); -- -- Name: basic_info_warehouse basic_info_warehouse_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_warehouse ADD CONSTRAINT basic_info_warehouse_pkey PRIMARY KEY (id); -- -- Name: business_balancechangerecord business_balancechangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_balancechangerecord ADD CONSTRAINT business_balancechangerecord_pkey PRIMARY KEY (id); -- -- Name: business_customerbalance business_customerbalance_merchant_id_customer_id_2a8343f7_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_customerbalance ADD CONSTRAINT business_customerbalance_merchant_id_customer_id_2a8343f7_uniq UNIQUE (merchant_id, customer_id); -- -- Name: business_customerbalance business_customerbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_customerbalance ADD CONSTRAINT business_customerbalance_pkey PRIMARY KEY (id); -- -- Name: business_paymentorder business_paymentorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_paymentorder ADD CONSTRAINT business_paymentorder_pkey PRIMARY KEY (id); -- -- Name: business_purchaseorderitem business_purchaseorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorderitem ADD CONSTRAINT business_purchaseorderitem_pkey PRIMARY KEY (id); -- -- Name: business_purchasereturnorder business_purchasereturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchasereturnorder_pkey PRIMARY KEY (id); -- -- Name: business_purchasereturnorderitem business_purchasereturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorderitem ADD CONSTRAINT business_purchasereturnorderitem_pkey PRIMARY KEY (id); -- -- Name: business_receiptorder business_receiptorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_receiptorder ADD CONSTRAINT business_receiptorder_pkey PRIMARY KEY (id); -- -- Name: business_salesorder business_salesorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorder ADD CONSTRAINT business_salesorder_pkey PRIMARY KEY (id); -- -- Name: business_salesorderitem business_salesorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorderitem ADD CONSTRAINT business_salesorderitem_pkey PRIMARY KEY (id); -- -- Name: business_salesreturnorder business_salesreturnorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturnorder_pkey PRIMARY KEY (id); -- -- Name: business_salesreturnorderitem business_salesreturnorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorderitem ADD CONSTRAINT business_salesreturnorderitem_pkey PRIMARY KEY (id); -- -- Name: business_supplierbalance business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_supplierbalance ADD CONSTRAINT business_supplierbalance_merchant_id_supplier_id_2d9400c1_uniq UNIQUE (merchant_id, supplier_id); -- -- Name: business_supplierbalance business_supplierbalance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_supplierbalance ADD CONSTRAINT business_supplierbalance_pkey PRIMARY KEY (id); -- -- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); -- -- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_content_type ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model); -- -- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_content_type ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); -- -- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_migrations ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); -- -- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_session ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); -- -- Name: printing_plateorder printing_plateorder_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_business_object_id_key UNIQUE (business_object_id); -- -- Name: printing_plateorder printing_plateorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_pkey PRIMARY KEY (id); -- -- Name: printing_printingjob printing_printingjob_business_object_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingjob ADD CONSTRAINT printing_printingjob_business_object_id_key UNIQUE (business_object_id); -- -- Name: printing_printingjob printing_printingjob_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingjob ADD CONSTRAINT printing_printingjob_pkey PRIMARY KEY (id); -- -- Name: printing_printingorder printing_printingorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingorder ADD CONSTRAINT printing_printingorder_pkey PRIMARY KEY (id); -- -- Name: state_log_parameter_record state_log_parameter_record_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_log_parameter_record ADD CONSTRAINT state_log_parameter_record_pkey PRIMARY KEY (id); -- -- Name: business_object stateflow_order_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_object ADD CONSTRAINT stateflow_order_pkey PRIMARY KEY (id); -- -- Name: state_flow_record stateflow_orderstatelog_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_flow_record ADD CONSTRAINT stateflow_orderstatelog_pkey PRIMARY KEY (id); -- -- Name: stateflow_process stateflow_process_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_process ADD CONSTRAINT stateflow_process_pkey PRIMARY KEY (id); -- -- Name: stateflow_processnode stateflow_processnode_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_processnode ADD CONSTRAINT stateflow_processnode_pkey PRIMARY KEY (id); -- -- Name: stateflow_processnode stateflow_processnode_process_id_order_d27bc733_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_processnode ADD CONSTRAINT stateflow_processnode_process_id_order_d27bc733_uniq UNIQUE (process_id, "order"); -- -- Name: stateflow_state_parameters stateflow_state_paramete_state_id_stateparameter__91e23688_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_state_parameters ADD CONSTRAINT stateflow_state_paramete_state_id_stateparameter__91e23688_uniq UNIQUE (state_id, stateparameter_id); -- -- Name: stateflow_state_parameters stateflow_state_parameters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_state_parameters ADD CONSTRAINT stateflow_state_parameters_pkey PRIMARY KEY (id); -- -- Name: stateflow_state stateflow_state_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_state ADD CONSTRAINT stateflow_state_pkey PRIMARY KEY (id); -- -- Name: stateflow_stateparameter stateflow_stateparameter_key_2174542b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_stateparameter ADD CONSTRAINT stateflow_stateparameter_key_2174542b_uniq UNIQUE (key); -- -- Name: stateflow_stateparameter stateflow_stateparameter_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_stateparameter ADD CONSTRAINT stateflow_stateparameter_pkey PRIMARY KEY (id); -- -- Name: stock_inventory stock_inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_inventory ADD CONSTRAINT stock_inventory_pkey PRIMARY KEY (id); -- -- Name: stock_inventory stock_inventory_product_id_warehouse_id_b146267d_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_inventory ADD CONSTRAINT stock_inventory_product_id_warehouse_id_b146267d_uniq UNIQUE (product_id, warehouse_id); -- -- Name: business_purchaseorder stock_purchaseorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorder ADD CONSTRAINT stock_purchaseorder_pkey PRIMARY KEY (id); -- -- Name: stock_stockchangedetail stock_stockchangedetail_consume_with_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedetail_consume_with_id_key UNIQUE (consume_with_id); -- -- Name: stock_stockchangedetail stock_stockchangedetail_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedetail_pkey PRIMARY KEY (id); -- -- Name: stock_stockchangerecord stock_stockchangerecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangerecord ADD CONSTRAINT stock_stockchangerecord_pkey PRIMARY KEY (id); -- -- Name: stock_stockfreeze stock_stockfreeze_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_pkey PRIMARY KEY (id); -- -- Name: stock_stocksnapshot stock_stocksnapshot_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stocksnapshot ADD CONSTRAINT stock_stocksnapshot_pkey PRIMARY KEY (id); -- -- Name: stock_transferorder stock_transferorder_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_pkey PRIMARY KEY (id); -- -- Name: stock_transferorderitem stock_transferorderitem_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorderitem ADD CONSTRAINT stock_transferorderitem_pkey PRIMARY KEY (id); -- -- Name: api_uploaded_file_owner_id_f2e6fe5c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX api_uploaded_file_owner_id_f2e6fe5c ON public.api_uploaded_file USING btree (owner_id); -- -- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops); -- -- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id); -- -- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id); -- -- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); -- -- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id); -- -- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id); -- -- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id); -- -- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id); -- -- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops); -- -- Name: balance_change_source_idx; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX balance_change_source_idx ON public.business_balancechangerecord USING btree (merchant_id, source_type, source_id); -- -- Name: basic_info_bankaccount_merchant_id_0dc91094; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_bankaccount_merchant_id_0dc91094 ON public.basic_info_bankaccount USING btree (merchant_id); -- -- Name: basic_info_customer_created_by_id_e4898d6a; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_customer_created_by_id_e4898d6a ON public.basic_info_customer USING btree (created_by_id); -- -- Name: basic_info_customer_mdy_uid_6364401c_like; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_customer_mdy_uid_6364401c_like ON public.basic_info_customer USING btree (mdy_uid varchar_pattern_ops); -- -- Name: basic_info_customer_merchant_id_c342572c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_customer_merchant_id_c342572c ON public.basic_info_customer USING btree (merchant_id); -- -- Name: basic_info_customer_visible_employees_customer_id_a05ec7e2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_customer_visible_employees_customer_id_a05ec7e2 ON public.basic_info_customer_visible_employees USING btree (customer_id); -- -- Name: basic_info_customer_visible_employees_employee_id_fb51a1e0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_customer_visible_employees_employee_id_fb51a1e0 ON public.basic_info_customer_visible_employees USING btree (employee_id); -- -- Name: basic_info_deviceinfo_merchant_id_8ba16bd2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_deviceinfo_merchant_id_8ba16bd2 ON public.basic_info_deviceinfo USING btree (merchant_id); -- -- Name: basic_info_employee_merchant_id_508e9a14; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_employee_merchant_id_508e9a14 ON public.basic_info_employee USING btree (merchant_id); -- -- Name: basic_info_employee_position_id_0f790d25; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_employee_position_id_0f790d25 ON public.basic_info_employee USING btree (position_id); -- -- Name: basic_info_employeetype_merchant_id_cf26fc93; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_employeetype_merchant_id_cf26fc93 ON public.basic_info_employeetype USING btree (merchant_id); -- -- Name: basic_info_merchantsetting_merchant_id_4ec5ec48; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_merchantsetting_merchant_id_4ec5ec48 ON public.basic_info_merchantsetting USING btree (merchant_id); -- -- Name: basic_info_product_category_id_2bbbe6be; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_product_category_id_2bbbe6be ON public.basic_info_product USING btree (category_id); -- -- Name: basic_info_product_merchant_id_16465f25; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_product_merchant_id_16465f25 ON public.basic_info_product USING btree (merchant_id); -- -- Name: basic_info_productcategory_merchant_id_026ead5b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_productcategory_merchant_id_026ead5b ON public.basic_info_productcategory USING btree (merchant_id); -- -- Name: basic_info_supplier_merchant_id_7b0fafc0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_supplier_merchant_id_7b0fafc0 ON public.basic_info_supplier USING btree (merchant_id); -- -- Name: basic_info_userprofile_merchant_id_4c25789b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_userprofile_merchant_id_4c25789b ON public.basic_info_userprofile USING btree (merchant_id); -- -- Name: basic_info_vehicletransportrecord_merchant_id_da543289; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_vehicletransportrecord_merchant_id_da543289 ON public.basic_info_vehicletransportrecord USING btree (merchant_id); -- -- Name: basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_vehicletransportrecord_vehicle_type_id_ca9c2c9a ON public.basic_info_vehicletransportrecord USING btree (vehicle_type_id); -- -- Name: basic_info_vehicletype_merchant_id_834e9500; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_vehicletype_merchant_id_834e9500 ON public.basic_info_vehicletype USING btree (merchant_id); -- -- Name: basic_info_warehouse_merchant_id_d5bb4b76; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX basic_info_warehouse_merchant_id_d5bb4b76 ON public.basic_info_warehouse USING btree (merchant_id); -- -- Name: business_balancechangerecord_customer_id_72613c19; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_balancechangerecord_customer_id_72613c19 ON public.business_balancechangerecord USING btree (customer_id); -- -- Name: business_balancechangerecord_merchant_id_94bc6397; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_balancechangerecord_merchant_id_94bc6397 ON public.business_balancechangerecord USING btree (merchant_id); -- -- Name: business_balancechangerecord_supplier_id_08930ba0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_balancechangerecord_supplier_id_08930ba0 ON public.business_balancechangerecord USING btree (supplier_id); -- -- Name: business_customerbalance_customer_id_f5b3fbca; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_customerbalance_customer_id_f5b3fbca ON public.business_customerbalance USING btree (customer_id); -- -- Name: business_customerbalance_merchant_id_d6252af9; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_customerbalance_merchant_id_d6252af9 ON public.business_customerbalance USING btree (merchant_id); -- -- Name: business_object_content_type_id_94dccf29; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_object_content_type_id_94dccf29 ON public.business_object USING btree (content_type_id); -- -- Name: business_paymentorder_bank_account_id_0de1edcc; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_paymentorder_bank_account_id_0de1edcc ON public.business_paymentorder USING btree (bank_account_id); -- -- Name: business_paymentorder_merchant_id_d161c5be; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_paymentorder_merchant_id_d161c5be ON public.business_paymentorder USING btree (merchant_id); -- -- Name: business_paymentorder_operator_id_6922977f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_paymentorder_operator_id_6922977f ON public.business_paymentorder USING btree (operator_id); -- -- Name: business_paymentorder_supplier_id_1e5a469f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_paymentorder_supplier_id_1e5a469f ON public.business_paymentorder USING btree (supplier_id); -- -- Name: business_purchaseorder_operator_id_759fe141; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchaseorder_operator_id_759fe141 ON public.business_purchaseorder USING btree (operator_id); -- -- Name: business_purchaseorder_warehouse_id_7aad4bbe; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchaseorder_warehouse_id_7aad4bbe ON public.business_purchaseorder USING btree (warehouse_id); -- -- Name: business_purchaseorderitem_product_id_1cd637ce; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchaseorderitem_product_id_1cd637ce ON public.business_purchaseorderitem USING btree (product_id); -- -- Name: business_purchaseorderitem_purchase_order_id_329d998b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchaseorderitem_purchase_order_id_329d998b ON public.business_purchaseorderitem USING btree (purchase_order_id); -- -- Name: business_purchasereturnord_purchase_return_order_id_7d64b30f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnord_purchase_return_order_id_7d64b30f ON public.business_purchasereturnorderitem USING btree (purchase_return_order_id); -- -- Name: business_purchasereturnorder_merchant_id_374baf57; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorder_merchant_id_374baf57 ON public.business_purchasereturnorder USING btree (merchant_id); -- -- Name: business_purchasereturnorder_operator_id_6f839c67; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorder_operator_id_6f839c67 ON public.business_purchasereturnorder USING btree (operator_id); -- -- Name: business_purchasereturnorder_purchase_order_id_b6f00a8d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorder_purchase_order_id_b6f00a8d ON public.business_purchasereturnorder USING btree (purchase_order_id); -- -- Name: business_purchasereturnorder_supplier_id_985ce5d0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorder_supplier_id_985ce5d0 ON public.business_purchasereturnorder USING btree (supplier_id); -- -- Name: business_purchasereturnorder_warehouse_id_c8edb73b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorder_warehouse_id_c8edb73b ON public.business_purchasereturnorder USING btree (warehouse_id); -- -- Name: business_purchasereturnorderitem_product_id_66b5322d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_purchasereturnorderitem_product_id_66b5322d ON public.business_purchasereturnorderitem USING btree (product_id); -- -- Name: business_receiptorder_bank_account_id_c29219be; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_receiptorder_bank_account_id_c29219be ON public.business_receiptorder USING btree (bank_account_id); -- -- Name: business_receiptorder_customer_id_666323a6; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_receiptorder_customer_id_666323a6 ON public.business_receiptorder USING btree (customer_id); -- -- Name: business_receiptorder_merchant_id_1e7920b7; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_receiptorder_merchant_id_1e7920b7 ON public.business_receiptorder USING btree (merchant_id); -- -- Name: business_receiptorder_operator_id_72eaad52; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_receiptorder_operator_id_72eaad52 ON public.business_receiptorder USING btree (operator_id); -- -- Name: business_salesorder_customer_id_165d7e5d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorder_customer_id_165d7e5d ON public.business_salesorder USING btree (customer_id); -- -- Name: business_salesorder_merchant_id_ecffa78c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorder_merchant_id_ecffa78c ON public.business_salesorder USING btree (merchant_id); -- -- Name: business_salesorder_operator_id_cc3385ec; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorder_operator_id_cc3385ec ON public.business_salesorder USING btree (operator_id); -- -- Name: business_salesorder_warehouse_id_4a77caf8; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorder_warehouse_id_4a77caf8 ON public.business_salesorder USING btree (warehouse_id); -- -- Name: business_salesorderitem_product_id_d843ccd4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorderitem_product_id_d843ccd4 ON public.business_salesorderitem USING btree (product_id); -- -- Name: business_salesorderitem_sales_order_id_931d0c9f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesorderitem_sales_order_id_931d0c9f ON public.business_salesorderitem USING btree (sales_order_id); -- -- Name: business_salesreturnorder_customer_id_ce2116fa; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorder_customer_id_ce2116fa ON public.business_salesreturnorder USING btree (customer_id); -- -- Name: business_salesreturnorder_merchant_id_4b9f39b4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorder_merchant_id_4b9f39b4 ON public.business_salesreturnorder USING btree (merchant_id); -- -- Name: business_salesreturnorder_operator_id_bc265b54; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorder_operator_id_bc265b54 ON public.business_salesreturnorder USING btree (operator_id); -- -- Name: business_salesreturnorder_sales_order_id_7b362aab; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorder_sales_order_id_7b362aab ON public.business_salesreturnorder USING btree (sales_order_id); -- -- Name: business_salesreturnorder_warehouse_id_eca0b2ba; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorder_warehouse_id_eca0b2ba ON public.business_salesreturnorder USING btree (warehouse_id); -- -- Name: business_salesreturnorderitem_product_id_c5b969ba; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorderitem_product_id_c5b969ba ON public.business_salesreturnorderitem USING btree (product_id); -- -- Name: business_salesreturnorderitem_sales_return_order_id_820a6954; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_salesreturnorderitem_sales_return_order_id_820a6954 ON public.business_salesreturnorderitem USING btree (sales_return_order_id); -- -- Name: business_supplierbalance_merchant_id_8ffc61a3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_supplierbalance_merchant_id_8ffc61a3 ON public.business_supplierbalance USING btree (merchant_id); -- -- Name: business_supplierbalance_supplier_id_084f585e; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX business_supplierbalance_supplier_id_084f585e ON public.business_supplierbalance USING btree (supplier_id); -- -- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id); -- -- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id); -- -- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date); -- -- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); -- -- Name: printing_plateorder_customer_id_920c92fc; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_plateorder_customer_id_920c92fc ON public.printing_plateorder USING btree (customer_id); -- -- Name: printing_plateorder_designer_id_4f94e8c1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_plateorder_designer_id_4f94e8c1 ON public.printing_plateorder USING btree (designer_id); -- -- Name: printing_plateorder_merchandiser_id_f85f2095; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_plateorder_merchandiser_id_f85f2095 ON public.printing_plateorder USING btree (merchandiser_id); -- -- Name: printing_plateorder_salesperson_id_0d75b741; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_plateorder_salesperson_id_0d75b741 ON public.printing_plateorder USING btree (salesperson_id); -- -- Name: printing_printingjob_printing_order_id_ca5569e7; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_printingjob_printing_order_id_ca5569e7 ON public.printing_printingjob USING btree (printing_order_id); -- -- Name: printing_printingjob_product_id_6c4bda82; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_printingjob_product_id_6c4bda82 ON public.printing_printingjob USING btree (product_id); -- -- Name: printing_printingorder_customer_id_2f5affa4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_printingorder_customer_id_2f5affa4 ON public.printing_printingorder USING btree (customer_id); -- -- Name: printing_printingorder_process_id_087e5007; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX printing_printingorder_process_id_087e5007 ON public.printing_printingorder USING btree (process_id); -- -- Name: state_log_p_state_l_8cc99f_idx; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX state_log_p_state_l_8cc99f_idx ON public.state_log_parameter_record USING btree (state_log_id, created_at); -- -- Name: state_log_parameter_record_state_log_id_f233799b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX state_log_parameter_record_state_log_id_f233799b ON public.state_log_parameter_record USING btree (state_log_id); -- -- Name: stateflow_order_process_id_8c0bb6c0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_order_process_id_8c0bb6c0 ON public.business_object USING btree (process_id); -- -- Name: stateflow_orderstatelog_completed_by_id_2f822f5b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_orderstatelog_completed_by_id_2f822f5b ON public.state_flow_record USING btree (completed_by_id); -- -- Name: stateflow_orderstatelog_order_id_4d729f58; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_orderstatelog_order_id_4d729f58 ON public.state_flow_record USING btree (business_object_id); -- -- Name: stateflow_orderstatelog_state_id_70d1101d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_orderstatelog_state_id_70d1101d ON public.state_flow_record USING btree (state_id); -- -- Name: stateflow_processnode_process_id_146d7cc7; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_processnode_process_id_146d7cc7 ON public.stateflow_processnode USING btree (process_id); -- -- Name: stateflow_processnode_state_id_18e2868e; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_processnode_state_id_18e2868e ON public.stateflow_processnode USING btree (state_id); -- -- Name: stateflow_state_parameters_state_id_1888c236; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_state_parameters_state_id_1888c236 ON public.stateflow_state_parameters USING btree (state_id); -- -- Name: stateflow_state_parameters_stateparameter_id_2a4745a3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_state_parameters_stateparameter_id_2a4745a3 ON public.stateflow_state_parameters USING btree (stateparameter_id); -- -- Name: stateflow_stateparameter_key_2174542b_like; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stateflow_stateparameter_key_2174542b_like ON public.stateflow_stateparameter USING btree (key varchar_pattern_ops); -- -- Name: stock_inventory_merchant_id_474e786a; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_inventory_merchant_id_474e786a ON public.stock_inventory USING btree (merchant_id); -- -- Name: stock_inventory_product_id_87e1d4a4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_inventory_product_id_87e1d4a4 ON public.stock_inventory USING btree (product_id); -- -- Name: stock_inventory_warehouse_id_38e88ef3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_inventory_warehouse_id_38e88ef3 ON public.stock_inventory USING btree (warehouse_id); -- -- Name: stock_purchaseorder_merchant_id_5175381b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_purchaseorder_merchant_id_5175381b ON public.business_purchaseorder USING btree (merchant_id); -- -- Name: stock_purchaseorder_supplier_id_bc7a300c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_purchaseorder_supplier_id_bc7a300c ON public.business_purchaseorder USING btree (supplier_id); -- -- Name: stock_stockchangedetail_merchant_id_222521fc; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangedetail_merchant_id_222521fc ON public.stock_stockchangedetail USING btree (merchant_id); -- -- Name: stock_stockchangedetail_product_id_a013d432; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangedetail_product_id_a013d432 ON public.stock_stockchangedetail USING btree (product_id); -- -- Name: stock_stockchangedetail_stock_change_record_id_b388d2f0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangedetail_stock_change_record_id_b388d2f0 ON public.stock_stockchangedetail USING btree (stock_change_record_id); -- -- Name: stock_stockchangerecord_created_by_id_7317d383; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangerecord_created_by_id_7317d383 ON public.stock_stockchangerecord USING btree (created_by_id); -- -- Name: stock_stockchangerecord_merchant_id_777ab07d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangerecord_merchant_id_777ab07d ON public.stock_stockchangerecord USING btree (merchant_id); -- -- Name: stock_stockchangerecord_warehouse_id_c7a706de; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockchangerecord_warehouse_id_c7a706de ON public.stock_stockchangerecord USING btree (warehouse_id); -- -- Name: stock_stockfreeze_cancelled_by_id_f36ed57b; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_cancelled_by_id_f36ed57b ON public.stock_stockfreeze USING btree (cancelled_by_id); -- -- Name: stock_stockfreeze_completed_by_id_feb5742a; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_completed_by_id_feb5742a ON public.stock_stockfreeze USING btree (completed_by_id); -- -- Name: stock_stockfreeze_frozen_by_id_747bed1c; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_frozen_by_id_747bed1c ON public.stock_stockfreeze USING btree (frozen_by_id); -- -- Name: stock_stockfreeze_merchant_id_778ecada; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_merchant_id_778ecada ON public.stock_stockfreeze USING btree (merchant_id); -- -- Name: stock_stockfreeze_product_id_0915f126; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_product_id_0915f126 ON public.stock_stockfreeze USING btree (product_id); -- -- Name: stock_stockfreeze_stock_detail_id_3c1f49b0; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_stock_detail_id_3c1f49b0 ON public.stock_stockfreeze USING btree (stock_detail_id); -- -- Name: stock_stockfreeze_warehouse_id_7cd7f629; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stockfreeze_warehouse_id_7cd7f629 ON public.stock_stockfreeze USING btree (warehouse_id); -- -- Name: stock_stocksnapshot_merchant_id_345af02e; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stocksnapshot_merchant_id_345af02e ON public.stock_stocksnapshot USING btree (merchant_id); -- -- Name: stock_stocksnapshot_product_id_f6e948d7; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stocksnapshot_product_id_f6e948d7 ON public.stock_stocksnapshot USING btree (product_id); -- -- Name: stock_stocksnapshot_stock_change_record_id_a12e8dc3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stocksnapshot_stock_change_record_id_a12e8dc3 ON public.stock_stocksnapshot USING btree (stock_change_record_id); -- -- Name: stock_stocksnapshot_warehouse_id_469ad069; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_stocksnapshot_warehouse_id_469ad069 ON public.stock_stocksnapshot USING btree (warehouse_id); -- -- Name: stock_transferorder_created_by_id_8426a804; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_created_by_id_8426a804 ON public.stock_transferorder USING btree (created_by_id); -- -- Name: stock_transferorder_from_warehouse_id_38b8aba4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_from_warehouse_id_38b8aba4 ON public.stock_transferorder USING btree (from_warehouse_id); -- -- Name: stock_transferorder_incoming_record_id_289d0a0f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_incoming_record_id_289d0a0f ON public.stock_transferorder USING btree (incoming_record_id); -- -- Name: stock_transferorder_merchant_id_34312a0d; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_merchant_id_34312a0d ON public.stock_transferorder USING btree (merchant_id); -- -- Name: stock_transferorder_operator_id_4e3824e2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_operator_id_4e3824e2 ON public.stock_transferorder USING btree (operator_id); -- -- Name: stock_transferorder_outgoing_record_id_a6a0dd28; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_outgoing_record_id_a6a0dd28 ON public.stock_transferorder USING btree (outgoing_record_id); -- -- Name: stock_transferorder_to_warehouse_id_e597030e; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorder_to_warehouse_id_e597030e ON public.stock_transferorder USING btree (to_warehouse_id); -- -- Name: stock_transferorderitem_product_id_7bb0508f; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorderitem_product_id_7bb0508f ON public.stock_transferorderitem USING btree (product_id); -- -- Name: stock_transferorderitem_transfer_order_id_333e8fab; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_transferorderitem_transfer_order_id_333e8fab ON public.stock_transferorderitem USING btree (transfer_order_id); -- -- Name: unique_transfer_request_per_merchant; Type: INDEX; Schema: public; Owner: postgres -- CREATE UNIQUE INDEX unique_transfer_request_per_merchant ON public.stock_transferorder USING btree (merchant_id, request_id) WHERE (request_id IS NOT NULL); -- -- Name: api_uploaded_file api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.api_uploaded_file ADD CONSTRAINT api_uploaded_file_owner_id_f2e6fe5c_fk_auth_user_id FOREIGN KEY (owner_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_group_permissions ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_permission ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_groups ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.auth_user_user_permissions ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_bankaccount basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_bankaccount ADD CONSTRAINT basic_info_bankaccou_merchant_id_0dc91094_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_customer_visible_employees basic_info_customer__customer_id_a05ec7e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer_visible_employees ADD CONSTRAINT basic_info_customer__customer_id_a05ec7e2_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_customer_visible_employees basic_info_customer__employee_id_fb51a1e0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer_visible_employees ADD CONSTRAINT basic_info_customer__employee_id_fb51a1e0_fk_basic_inf FOREIGN KEY (employee_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_customer basic_info_customer_created_by_id_e4898d6a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer ADD CONSTRAINT basic_info_customer_created_by_id_e4898d6a_fk_basic_inf FOREIGN KEY (created_by_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_customer basic_info_customer_merchant_id_c342572c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_customer ADD CONSTRAINT basic_info_customer_merchant_id_c342572c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_deviceinfo basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_deviceinfo ADD CONSTRAINT basic_info_deviceinf_merchant_id_8ba16bd2_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_employee basic_info_employee_merchant_id_508e9a14_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employee ADD CONSTRAINT basic_info_employee_merchant_id_508e9a14_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_employee basic_info_employee_position_id_0f790d25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employee ADD CONSTRAINT basic_info_employee_position_id_0f790d25_fk_basic_inf FOREIGN KEY (position_id) REFERENCES public.basic_info_employeetype(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_employee basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employee ADD CONSTRAINT basic_info_employee_sys_user_id_ea7739c5_fk_auth_user_id FOREIGN KEY (sys_user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_employeetype basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_employeetype ADD CONSTRAINT basic_info_employeet_merchant_id_cf26fc93_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_merchantsetting basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_merchantsetting ADD CONSTRAINT basic_info_merchants_merchant_id_4ec5ec48_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_product basic_info_product_category_id_2bbbe6be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_product ADD CONSTRAINT basic_info_product_category_id_2bbbe6be_fk_basic_inf FOREIGN KEY (category_id) REFERENCES public.basic_info_productcategory(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_product basic_info_product_merchant_id_16465f25_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_product ADD CONSTRAINT basic_info_product_merchant_id_16465f25_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_productcategory basic_info_productca_merchant_id_026ead5b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_productcategory ADD CONSTRAINT basic_info_productca_merchant_id_026ead5b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_supplier basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_supplier ADD CONSTRAINT basic_info_supplier_merchant_id_7b0fafc0_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_userprofile basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_userprofile ADD CONSTRAINT basic_info_userprofi_merchant_id_4c25789b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_userprofile basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_userprofile ADD CONSTRAINT basic_info_userprofile_user_id_ed5ab8a5_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_vehicletransportrecord basic_info_vehicletr_merchant_id_da543289_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_vehicletransportrecord ADD CONSTRAINT basic_info_vehicletr_merchant_id_da543289_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_vehicletransportrecord basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_vehicletransportrecord ADD CONSTRAINT basic_info_vehicletr_vehicle_type_id_ca9c2c9a_fk_basic_inf FOREIGN KEY (vehicle_type_id) REFERENCES public.basic_info_vehicletype(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_vehicletype basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_vehicletype ADD CONSTRAINT basic_info_vehiclety_merchant_id_834e9500_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: basic_info_warehouse basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.basic_info_warehouse ADD CONSTRAINT basic_info_warehouse_merchant_id_d5bb4b76_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_balancechangerecord business_balancechan_customer_id_72613c19_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_balancechangerecord ADD CONSTRAINT business_balancechan_customer_id_72613c19_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_balancechangerecord business_balancechan_merchant_id_94bc6397_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_balancechangerecord ADD CONSTRAINT business_balancechan_merchant_id_94bc6397_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_balancechangerecord business_balancechan_supplier_id_08930ba0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_balancechangerecord ADD CONSTRAINT business_balancechan_supplier_id_08930ba0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_customerbalance business_customerbal_customer_id_f5b3fbca_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_customerbalance ADD CONSTRAINT business_customerbal_customer_id_f5b3fbca_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_customerbalance business_customerbal_merchant_id_d6252af9_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_customerbalance ADD CONSTRAINT business_customerbal_merchant_id_d6252af9_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_object business_object_content_type_id_94dccf29_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_object ADD CONSTRAINT business_object_content_type_id_94dccf29_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_paymentorder business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_paymentorder ADD CONSTRAINT business_paymentorde_bank_account_id_0de1edcc_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_paymentorder business_paymentorde_merchant_id_d161c5be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_paymentorder ADD CONSTRAINT business_paymentorde_merchant_id_d161c5be_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_paymentorder business_paymentorde_operator_id_6922977f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_paymentorder ADD CONSTRAINT business_paymentorde_operator_id_6922977f_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_paymentorder business_paymentorde_supplier_id_1e5a469f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_paymentorder ADD CONSTRAINT business_paymentorde_supplier_id_1e5a469f_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorder business_purchaseord_operator_id_759fe141_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorder ADD CONSTRAINT business_purchaseord_operator_id_759fe141_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorderitem business_purchaseord_product_id_1cd637ce_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorderitem ADD CONSTRAINT business_purchaseord_product_id_1cd637ce_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorderitem business_purchaseord_purchase_order_id_329d998b_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorderitem ADD CONSTRAINT business_purchaseord_purchase_order_id_329d998b_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorder business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorder ADD CONSTRAINT business_purchaseord_warehouse_id_7aad4bbe_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorder business_purchaseret_merchant_id_374baf57_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchaseret_merchant_id_374baf57_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorder business_purchaseret_operator_id_6f839c67_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchaseret_operator_id_6f839c67_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorderitem business_purchaseret_product_id_66b5322d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorderitem ADD CONSTRAINT business_purchaseret_product_id_66b5322d_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorder business_purchaseret_purchase_order_id_b6f00a8d_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchaseret_purchase_order_id_b6f00a8d_fk_business_ FOREIGN KEY (purchase_order_id) REFERENCES public.business_purchaseorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorderitem business_purchaseret_purchase_return_orde_7d64b30f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorderitem ADD CONSTRAINT business_purchaseret_purchase_return_orde_7d64b30f_fk_business_ FOREIGN KEY (purchase_return_order_id) REFERENCES public.business_purchasereturnorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorder business_purchaseret_supplier_id_985ce5d0_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchaseret_supplier_id_985ce5d0_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchasereturnorder business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchasereturnorder ADD CONSTRAINT business_purchaseret_warehouse_id_c8edb73b_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_receiptorder business_receiptorde_bank_account_id_c29219be_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_receiptorder ADD CONSTRAINT business_receiptorde_bank_account_id_c29219be_fk_basic_inf FOREIGN KEY (bank_account_id) REFERENCES public.basic_info_bankaccount(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_receiptorder business_receiptorde_customer_id_666323a6_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_receiptorder ADD CONSTRAINT business_receiptorde_customer_id_666323a6_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_receiptorder business_receiptorde_merchant_id_1e7920b7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_receiptorder ADD CONSTRAINT business_receiptorde_merchant_id_1e7920b7_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_receiptorder business_receiptorde_operator_id_72eaad52_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_receiptorder ADD CONSTRAINT business_receiptorde_operator_id_72eaad52_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorder business_salesorder_customer_id_165d7e5d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorder ADD CONSTRAINT business_salesorder_customer_id_165d7e5d_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorder business_salesorder_merchant_id_ecffa78c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorder ADD CONSTRAINT business_salesorder_merchant_id_ecffa78c_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorder business_salesorder_operator_id_cc3385ec_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorder ADD CONSTRAINT business_salesorder_operator_id_cc3385ec_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorder business_salesorder_warehouse_id_4a77caf8_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorder ADD CONSTRAINT business_salesorder_warehouse_id_4a77caf8_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorderitem business_salesorderi_product_id_d843ccd4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorderitem ADD CONSTRAINT business_salesorderi_product_id_d843ccd4_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesorderitem business_salesorderi_sales_order_id_931d0c9f_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesorderitem ADD CONSTRAINT business_salesorderi_sales_order_id_931d0c9f_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorder business_salesreturn_customer_id_ce2116fa_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturn_customer_id_ce2116fa_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorder business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturn_merchant_id_4b9f39b4_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorder business_salesreturn_operator_id_bc265b54_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturn_operator_id_bc265b54_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorderitem business_salesreturn_product_id_c5b969ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorderitem ADD CONSTRAINT business_salesreturn_product_id_c5b969ba_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorder business_salesreturn_sales_order_id_7b362aab_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturn_sales_order_id_7b362aab_fk_business_ FOREIGN KEY (sales_order_id) REFERENCES public.business_salesorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorderitem business_salesreturn_sales_return_order_i_820a6954_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorderitem ADD CONSTRAINT business_salesreturn_sales_return_order_i_820a6954_fk_business_ FOREIGN KEY (sales_return_order_id) REFERENCES public.business_salesreturnorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_salesreturnorder business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_salesreturnorder ADD CONSTRAINT business_salesreturn_warehouse_id_eca0b2ba_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_supplierbalance business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_supplierbalance ADD CONSTRAINT business_supplierbal_merchant_id_8ffc61a3_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_supplierbalance business_supplierbal_supplier_id_084f585e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_supplierbalance ADD CONSTRAINT business_supplierbal_supplier_id_084f585e_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.django_admin_log ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: state_flow_record order_state_log_business_object_id_f642bfbd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_flow_record ADD CONSTRAINT order_state_log_business_object_id_f642bfbd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_plateorder printing_plateorder_business_object_id_303b8c81_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_business_object_id_303b8c81_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_plateorder printing_plateorder_customer_id_920c92fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_customer_id_920c92fc_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_plateorder printing_plateorder_designer_id_4f94e8c1_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_designer_id_4f94e8c1_fk_basic_inf FOREIGN KEY (designer_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_plateorder printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_merchandiser_id_f85f2095_fk_basic_inf FOREIGN KEY (merchandiser_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_plateorder printing_plateorder_salesperson_id_0d75b741_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_plateorder ADD CONSTRAINT printing_plateorder_salesperson_id_0d75b741_fk_basic_inf FOREIGN KEY (salesperson_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_printingjob printing_printingjob_business_object_id_76a7d2fd_fk_business_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingjob ADD CONSTRAINT printing_printingjob_business_object_id_76a7d2fd_fk_business_ FOREIGN KEY (business_object_id) REFERENCES public.business_object(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_printingjob printing_printingjob_printing_order_id_ca5569e7_fk_printing_; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingjob ADD CONSTRAINT printing_printingjob_printing_order_id_ca5569e7_fk_printing_ FOREIGN KEY (printing_order_id) REFERENCES public.printing_printingorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_printingjob printing_printingjob_product_id_6c4bda82_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingjob ADD CONSTRAINT printing_printingjob_product_id_6c4bda82_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_printingorder printing_printingord_customer_id_2f5affa4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingorder ADD CONSTRAINT printing_printingord_customer_id_2f5affa4_fk_basic_inf FOREIGN KEY (customer_id) REFERENCES public.basic_info_customer(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: printing_printingorder printing_printingord_process_id_087e5007_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.printing_printingorder ADD CONSTRAINT printing_printingord_process_id_087e5007_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: state_log_parameter_record state_log_parameter__state_log_id_f233799b_fk_state_flo; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_log_parameter_record ADD CONSTRAINT state_log_parameter__state_log_id_f233799b_fk_state_flo FOREIGN KEY (state_log_id) REFERENCES public.state_flow_record(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_object stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_object ADD CONSTRAINT stateflow_order_process_id_8c0bb6c0_fk_stateflow_process_id FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: state_flow_record stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_flow_record ADD CONSTRAINT stateflow_orderstate_completed_by_id_2f822f5b_fk_auth_user FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: state_flow_record stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.state_flow_record ADD CONSTRAINT stateflow_orderstatelog_state_id_70d1101d_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stateflow_processnode stateflow_processnod_process_id_146d7cc7_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_processnode ADD CONSTRAINT stateflow_processnod_process_id_146d7cc7_fk_stateflow FOREIGN KEY (process_id) REFERENCES public.stateflow_process(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stateflow_processnode stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_processnode ADD CONSTRAINT stateflow_processnode_state_id_18e2868e_fk_stateflow_state_id FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stateflow_state_parameters stateflow_state_para_state_id_1888c236_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_state_parameters ADD CONSTRAINT stateflow_state_para_state_id_1888c236_fk_stateflow FOREIGN KEY (state_id) REFERENCES public.stateflow_state(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stateflow_state_parameters stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stateflow_state_parameters ADD CONSTRAINT stateflow_state_para_stateparameter_id_2a4745a3_fk_stateflow FOREIGN KEY (stateparameter_id) REFERENCES public.stateflow_stateparameter(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_inventory stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_inventory ADD CONSTRAINT stock_inventory_merchant_id_474e786a_fk_basic_info_merchant_id FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_inventory stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_inventory ADD CONSTRAINT stock_inventory_product_id_87e1d4a4_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_inventory stock_inventory_warehouse_id_38e88ef3_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_inventory ADD CONSTRAINT stock_inventory_warehouse_id_38e88ef3_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorder stock_purchaseorder_merchant_id_5175381b_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorder ADD CONSTRAINT stock_purchaseorder_merchant_id_5175381b_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: business_purchaseorder stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.business_purchaseorder ADD CONSTRAINT stock_purchaseorder_supplier_id_bc7a300c_fk_basic_inf FOREIGN KEY (supplier_id) REFERENCES public.basic_info_supplier(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangedetail stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedet_consume_with_id_3844510b_fk_stock_sto FOREIGN KEY (consume_with_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangedetail stock_stockchangedet_merchant_id_222521fc_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedet_merchant_id_222521fc_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangedetail stock_stockchangedet_product_id_a013d432_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedet_product_id_a013d432_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangedetail stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangedetail ADD CONSTRAINT stock_stockchangedet_stock_change_record__b388d2f0_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangerecord stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangerecord ADD CONSTRAINT stock_stockchangerec_merchant_id_777ab07d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangerecord stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangerecord ADD CONSTRAINT stock_stockchangerec_warehouse_id_c7a706de_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockchangerecord stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockchangerecord ADD CONSTRAINT stock_stockchangerecord_created_by_id_7317d383_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_cancelled_by_id_f36ed57b_fk_auth_user_id FOREIGN KEY (cancelled_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_completed_by_id_feb5742a_fk_auth_user_id FOREIGN KEY (completed_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_frozen_by_id_747bed1c_fk_auth_user_id FOREIGN KEY (frozen_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_merchant_id_778ecada_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_merchant_id_778ecada_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_product_id_0915f126_fk_basic_info_product_id FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_stock_detail_id_3c1f49b0_fk_stock_sto FOREIGN KEY (stock_detail_id) REFERENCES public.stock_stockchangedetail(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stockfreeze stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stockfreeze ADD CONSTRAINT stock_stockfreeze_warehouse_id_7cd7f629_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stocksnapshot stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stocksnapshot ADD CONSTRAINT stock_stocksnapshot_merchant_id_345af02e_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stocksnapshot stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stocksnapshot ADD CONSTRAINT stock_stocksnapshot_product_id_f6e948d7_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stocksnapshot stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stocksnapshot ADD CONSTRAINT stock_stocksnapshot_stock_change_record__a12e8dc3_fk_stock_sto FOREIGN KEY (stock_change_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_stocksnapshot stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_stocksnapshot ADD CONSTRAINT stock_stocksnapshot_warehouse_id_469ad069_fk_basic_inf FOREIGN KEY (warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_created_by_id_8426a804_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_created_by_id_8426a804_fk_auth_user_id FOREIGN KEY (created_by_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_from_warehouse_id_38b8aba4_fk_basic_inf FOREIGN KEY (from_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_incoming_record_id_289d0a0f_fk_stock_sto FOREIGN KEY (incoming_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_merchant_id_34312a0d_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_merchant_id_34312a0d_fk_basic_inf FOREIGN KEY (merchant_id) REFERENCES public.basic_info_merchant(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_operator_id_4e3824e2_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_operator_id_4e3824e2_fk_basic_inf FOREIGN KEY (operator_id) REFERENCES public.basic_info_employee(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_outgoing_record_id_a6a0dd28_fk_stock_sto FOREIGN KEY (outgoing_record_id) REFERENCES public.stock_stockchangerecord(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorder stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorder ADD CONSTRAINT stock_transferorder_to_warehouse_id_e597030e_fk_basic_inf FOREIGN KEY (to_warehouse_id) REFERENCES public.basic_info_warehouse(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorderitem stock_transferorderi_product_id_7bb0508f_fk_basic_inf; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorderitem ADD CONSTRAINT stock_transferorderi_product_id_7bb0508f_fk_basic_inf FOREIGN KEY (product_id) REFERENCES public.basic_info_product(id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_transferorderitem stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_transferorderitem ADD CONSTRAINT stock_transferorderi_transfer_order_id_333e8fab_fk_stock_tra FOREIGN KEY (transfer_order_id) REFERENCES public.stock_transferorder(id) DEFERRABLE INITIALLY DEFERRED; -- -- PostgreSQL database dump complete -- \unrestrict xLz4YISeOc59s9IHoAhbmz5cPsM2F18ZTroUoXnGale69RBiUDyiW4LQqvtmuxm